diff --git a/1_6.h12_dev/libmpdclient/.gitignore b/1_6.h12_dev/libmpdclient/.gitignore new file mode 100644 index 0000000..a96652e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/.gitignore @@ -0,0 +1,33 @@ +*.cache +aclocal.m4 +config.* +configure +build +*.la +*.lo +*.loT +*.o +example +libtool +stamp-* +Makefile +Makefile.in +.libs +.deps +.dirstamp +.stgit* +*~ +/m4/libtool.m4 +/m4/ltoptions.m4 +/m4/ltsugar.m4 +/m4/ltversion.m4 +/m4/lt~obsolete.m4 +test/test +/*.pc +doc/doxygen.conf +doc/api +*.exe +*.tar.* +include/mpd/version.h + +test/t_iso8601 diff --git a/1_6.h12_dev/libmpdclient/AUTHORS b/1_6.h12_dev/libmpdclient/AUTHORS new file mode 100644 index 0000000..995dd5b --- /dev/null +++ b/1_6.h12_dev/libmpdclient/AUTHORS @@ -0,0 +1,20 @@ +libmpdclient authors +==================== + +libmpdclient was developed by many people, including: + +Max Kellermann +Marc Pavot +Martijn Koedam +Avuton Olrich +Andrzej Rybczak +Roman Nuritdinov +Romain Bignon + + +Former libmpdclient developers +------------------------------ + +J. Alexander Treuman +Warren Dukes +Eric Wong diff --git a/1_6.h12_dev/libmpdclient/COPYING b/1_6.h12_dev/libmpdclient/COPYING new file mode 100644 index 0000000..ab18465 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/COPYING @@ -0,0 +1,26 @@ +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of the Music Player Daemon nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/1_6.h12_dev/libmpdclient/INSTALL b/1_6.h12_dev/libmpdclient/INSTALL new file mode 100644 index 0000000..f4407f2 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/INSTALL @@ -0,0 +1,41 @@ +libmpdclient INSTALL +==================== + +Requirements +------------ + + * a C99 compliant compiler (e.g. gcc) + * make + + +Compiling libmpdclient +---------------------- + +Download and unpack the source code. In the libmpdclient directory, +type: + + ./configure + +The configure option "--help" lists all available compile time +options. + +Compile and install: + + make + sudo make install + + +Compiling with dietlibc +----------------------- + +Use the "diet" wrapper as your C compiler: + + CC="diet -Os gcc -nostdinc" ./configure --disable-shared + + +Compiling for Windows +--------------------- + +With mingw32, you can easily cross-compile libmpdclient for Windows: + + ./configure --host=i586-mingw32msvc && make diff --git a/1_6.h12_dev/libmpdclient/Makefile.am b/1_6.h12_dev/libmpdclient/Makefile.am new file mode 100644 index 0000000..8d77c95 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/Makefile.am @@ -0,0 +1,182 @@ +ACLOCAL_AMFLAGS = -I m4 +AUTOMAKE_OPTIONS = foreign 1.11 dist-xz subdir-objects + +mpdincludedir = $(includedir)/mpd +mpdinclude_HEADERS = \ + include/mpd/async.h \ + include/mpd/audio_format.h \ + include/mpd/client.h \ + include/mpd/capabilities.h \ + include/mpd/compiler.h \ + include/mpd/connection.h \ + include/mpd/database.h \ + include/mpd/directory.h \ + include/mpd/entity.h \ + include/mpd/error.h \ + include/mpd/idle.h \ + include/mpd/list.h \ + include/mpd/mixer.h \ + include/mpd/parser.h \ + include/mpd/password.h \ + include/mpd/player.h \ + include/mpd/playlist.h \ + include/mpd/protocol.h \ + include/mpd/queue.h \ + include/mpd/recv.h \ + include/mpd/response.h \ + include/mpd/send.h \ + include/mpd/status.h \ + include/mpd/stats.h \ + include/mpd/tag.h \ + include/mpd/output.h \ + include/mpd/pair.h \ + include/mpd/search.h \ + include/mpd/song.h \ + include/mpd/sticker.h \ + include/mpd/settings.h \ + include/mpd/message.h \ + include/mpd/version.h + +AM_CPPFLAGS += -I$(srcdir)/include -Iinclude + +lib_LTLIBRARIES = src/libmpdclient.la + +src_libmpdclient_la_SOURCES = \ + src/async.c src/iasync.h \ + src/buffer.h \ + src/internal.h \ + src/ierror.c src/ierror.h \ + src/resolver.c src/resolver.h \ + src/capabilities.c \ + src/connection.c \ + src/database.c \ + src/directory.c \ + src/rdirectory.c \ + src/error.c \ + src/fd_util.c src/fd_util.h \ + src/output.c \ + src/coutput.c \ + src/entity.c \ + src/idle.c \ + src/iso8601.h \ + src/iso8601.c \ + src/list.c \ + src/mixer.c \ + src/parser.c \ + src/password.c \ + src/player.c \ + src/playlist.c \ + src/rplaylist.c \ + src/cplaylist.c \ + src/queue.c \ + src/quote.c src/quote.h \ + src/recv.c \ + src/response.c \ + src/run.c src/run.h \ + src/search.c \ + src/send.c src/isend.h \ + src/socket.c src/socket.h \ + src/song.c \ + src/status.c \ + src/cstatus.c \ + src/stats.c \ + src/cstats.c \ + src/sync.c src/sync.h \ + src/tag.c \ + src/sticker.c \ + src/settings.c \ + src/message.c \ + src/cmessage.c \ + src/uri.h + +src_libmpdclient_la_LDFLAGS = -version-info @LIBMPDCLIENT_LIBTOOL_VERSION@ \ + -no-undefined + +if HAVE_GNU_LD +src_libmpdclient_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libmpdclient.ld +endif + +noinst_PROGRAMS = src/example test/test + +src_example_SOURCES = src/example.c +src_example_LDADD = src/libmpdclient.la + +test_test_SOURCES = test/main.c +test_test_LDADD = src/libmpdclient.la + + +# +# Test suite +# + +TESTS = test/t_iso8601 +check_PROGRAMS = $(TESTS) + +test_t_iso8601_SOURCES = test/t_iso8601.c src/iso8601.c +test_t_iso8601_CPPFLAGS = -I$(srcdir)/src $(AM_CPPFLAGS) + +# +# sparse +# + +SPARSE = sparse +SPARSE_FLAGS = +SPARSE_CPPFLAGS = $(DEFAULT_INCLUDES) \ + -D__CHAR_BIT__=8 + -I$(shell $(CC) -print-file-name=include) \ + -I$(shell $(CC) -print-file-name=include-fixed) +sparse-check: + $(SPARSE) -I. $(CFLAGS) $(AM_CPPFLAGS) $(SPARSE_FLAGS) $(SPARSE_CPPFLAGS) $(addprefix $(srcdir)/,$(src_libmpdclient_la_SOURCES)) + +# +# Documentation +# + +doc_DATA = README COPYING NEWS + +if DOXYGEN + +doc/api/html/index.html: doc/doxygen.conf + @mkdir -p $(@D) + $(DOXYGEN) $< + +all-local: doc/api/html/index.html + +mostlyclean-local: + rm -rf doc/api + +install-data-local: doc/api/html/index.html + $(mkinstalldirs) $(DESTDIR)$(docdir)/html + $(INSTALL_DATA) -c -m 644 doc/api/html/*.* \ + $(DESTDIR)$(docdir)/html + +uninstall-local: + rm -f $(DESTDIR)$(docdir)/html/*.* + +upload: doc/api/html/index.html + rsync -vpruz --delete doc/api/html/ \ + max@www.musicpd.org:/var/www/mpd/doc/libmpdclient/ \ + --chmod=Dug+rwx,Do+rx,Fug+rw,Fo+r + +endif + +# +# Installation +# + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = libmpdclient.pc + +vapidir = $(datadir)/vala/vapi +vapi_DATA = vapi/libmpdclient.vapi + +# +# Distribution +# + +EXTRA_DIST = \ + libmpdclient.ld \ + libmpdclient.pc.in \ + autogen.sh \ + vapi/libmpdclient.vapi \ + $(doc_DATA) diff --git a/1_6.h12_dev/libmpdclient/NEWS b/1_6.h12_dev/libmpdclient/NEWS new file mode 100644 index 0000000..db07f0a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/NEWS @@ -0,0 +1,85 @@ +libmpdclient 2.11 (not yet released) +* add space before "window" search argument +* detect getaddrinfo() at configure time +* add support for ArtistSort and AlbumArtistSort tags + +libmpdclient 2.10 (2015/02/23) +* support abstract sockets with "@" prefix +* support tag "MUSICBRAINZ_RELEASETRACKID" +* add TCP keepalive internal and external APIs +* support MPD protocol 0.19 + - status: support sample formats "float" and "dsd" + - song: report duration with milliseconds precision + - search: support constraint "modified-since" +* support MPD protocol 0.20 + - the "window" parameter for commands "find"/"search" + +libmpdclient 2.9 (2013/10/29) +* directory: support attribute "Last-Modified" +* support MPD protocol 0.18 + - command "readcomments" + - command "toggleoutput" + - command "volume" + - the "base" constraint for commands "find"/"search" + +libmpdclient 2.8 (2013/04/09) +* song: support attribute "Prio" +* queue: fix the ranged "prio" command +* queue: support open ranges + +libmpdclient 2.7 (2012/02/04) +* status: add nextsong/nextsongid support + +libmpdclient 2.6 (2011/10/23) +* mpd/client.h: include message.h +* queue: support song priorities + +libmpdclient 2.5 (2011/07/06) +* playlist: implement the command "listplaylists" +* idle: support event "sticker" +* support the client-to-client protocol (MPD 0.17) + +libmpdclient 2.4 (2011/01/03) +* configure.ac, resolver: implement flag --disable-tcp +* resolver: fix IPv4/IPv6 on the loopback device +* player: support the command "clearerror" +* connection: add function mpd_connection_get_server_error_location() +* settings: expose connection settings +* iso8601, send: format string workarounds for WIN32 +* Makefile.am: fix doxygen in out-of-tree build + +libmpdclient 2.3 (2010/05/25) +* get default timeout from environment variable MPD_TIMEOUT +* fix assertion failures on malformed URI +* song: support attribute "Range" + +libmpdclient 2.2 (2010/04/25) +* MixRamp support +* fix the LIBMPDCLIENT_CHECK_VERSION() macro + +libmpdclient 2.1 (2009/12/06) +* status: added mpd_status_get_elapsed_ms() +* sticker: added sticker support +* song: copy last_modified value in mpd_song_dup() +* socket, async: use WSAGetLastError() instead of errno on WIN32 +* socket: connect in non-blocking mode +* socket: set the close-on-exec flag +* tag: support C++ +* sync: optimistic write, reduce select() calls +* Makefile.am: use --version-script only with GNU ld +* added library version compile-time checks + +libmpdclient 2.0 (2009/10/03) +* complete rewrite and API redesign +* shared library with a documented stable API +* asynchronous API +* too many minor changes to list here + +libmpdclient 0.13 (2007/05/28) +libmpdclient 0.12.1 (2007/03/21) +libmpdclient 0.12 (2006/09/22) +libmpdclient 0.11.1 (2004/06/18) +libmpdclient 0.11 (2004/06/17) +libmpdclient 0.10 (2004/03/03) +* these versions were never actually released; its sources were copied + into the C/C++ clients diff --git a/1_6.h12_dev/libmpdclient/README b/1_6.h12_dev/libmpdclient/README new file mode 100644 index 0000000..1bd1907 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/README @@ -0,0 +1,13 @@ + + libmpdclient + http://www.musicpd.org + +This is a library for interfacing Music Player Daemon (MPD). + +The API documentation is generated during the build if you have +doxygen. You may browse it online: + + http://www.musicpd.org/doc/libmpdclient/ + +libmpdclient is released under the revised BSD License. +For the full license, see COPYING. diff --git a/1_6.h12_dev/libmpdclient/autogen.sh b/1_6.h12_dev/libmpdclient/autogen.sh new file mode 100755 index 0000000..9c55a8a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/autogen.sh @@ -0,0 +1,14 @@ +#!/bin/sh -e + +rm -rf config.cache build +mkdir build +libtoolize --force $LIBTOOLIZE_FLAGS +aclocal -I m4 +autoconf +autoheader +automake --add-missing $AUTOMAKE_FLAGS + +if test x$NOCONFIGURE = x; then + echo "./configure $*" + ./configure $* +fi diff --git a/1_6.h12_dev/libmpdclient/configure.ac b/1_6.h12_dev/libmpdclient/configure.ac new file mode 100644 index 0000000..718ecda --- /dev/null +++ b/1_6.h12_dev/libmpdclient/configure.ac @@ -0,0 +1,161 @@ +AC_PREREQ(2.60) +AC_INIT(libmpdclient, 2.11, musicpd-dev-team@lists.sourceforge.net) +AC_CONFIG_SRCDIR([src/connection.c]) +AC_CONFIG_AUX_DIR(build) +AM_INIT_AUTOMAKE([foreign 1.11 dist-xz subdir-objects silent-rules]) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIR([m4]) + +AC_SUBST(MAJOR_VERSION,2) +AC_SUBST(MINOR_VERSION,11) +AC_SUBST(PATCH_VERSION,0) + +LIBMPDCLIENT_LIBTOOL_VERSION=2:11:0 +AC_SUBST(LIBMPDCLIENT_LIBTOOL_VERSION) + +# Remove the check for c++ and fortran compiler +m4_defun([_LT_AC_LANG_CXX_CONFIG], [:]) +m4_defun([_LT_AC_LANG_F77_CONFIG], [:]) + +dnl Check for programs +AC_PROG_CC_C99 +AC_PROG_INSTALL + +AC_PROG_LD +AM_CONDITIONAL(HAVE_GNU_LD, test x$with_gnu_ld = xyes) + +AC_LIBTOOL_WIN32_DLL +AC_PROG_LIBTOOL + + +dnl +dnl initialize variables +dnl + +set -- $CFLAGS + + +dnl +dnl OS specific defaults +dnl + +AC_CANONICAL_HOST + +case "$host_os" in +mingw32* | windows*) + LIBS="$LIBS -lws2_32" + ;; +esac + + +dnl +dnl Check for libraries +dnl + +AC_SEARCH_LIBS([socket], [network socket]) + + +dnl +dnl build options +dnl + +AC_ARG_ENABLE(documentation, + AS_HELP_STRING([--disable-documentation], + [Disable API doc generation @<:@default=enabled@:>@]),, + [enable_documentation=yes]) + +if test "x$enable_documentation" = xyes; then + AC_PATH_PROG(DOXYGEN, doxygen) + if test x$DOXYGEN = x; then + AC_MSG_ERROR([doxygen not found]) + fi + + AC_SUBST(DOXYGEN) +fi +AM_CONDITIONAL(DOXYGEN, test x$enable_documentation = xyes) + +AC_ARG_ENABLE(tcp, + AS_HELP_STRING([--disable-tcp], + [Disable TCP support @<:@default=enabled@:>@]),, + [enable_tcp=yes]) +if test "x$enable_tcp" = xyes; then + AC_DEFINE([ENABLE_TCP], 1, [Define to enable TCP support]) + AC_SEARCH_LIBS([gethostbyname], [nsl]) + AC_CHECK_FUNCS([getaddrinfo]) +fi + +AC_ARG_ENABLE(werror, + AS_HELP_STRING([--enable-werror], + [Treat warnings as errors @<:@default=disabled@:>@]), + enable_werror=no) + +if test "x$enable_werror" = xyes; then + AM_CFLAGS="$AM_CFLAGS -Werror -pedantic-errors" +fi + +AC_ARG_ENABLE(debug, + AS_HELP_STRING([--enable-debug], + [Enable debugging @<:@default=disabled@:>@]), + enable_debug=no) + +if test "x$enable_debug" = xno; then + AM_CFLAGS="$AM_CFLAGS -DNDEBUG" +fi + + +dnl +dnl CFLAGS +dnl + +AC_SUBST(AM_CFLAGS) +AC_SUBST(AM_CPPFLAGS) + +WANTED_CFLAGS="-Wall -W -Wextra -Wno-deprecated-declarations -Wmissing-prototypes -Wshadow -Wpointer-arith -Wstrict-prototypes -Wcast-qual -Wwrite-strings" +for flag in $WANTED_CFLAGS ; do + AX_CHECK_COMPILER_FLAGS([$flag], [CFLAGS="$CFLAGS $flag"],) +done + +dnl +dnl Compile-time options +dnl + +AC_ARG_WITH([default-socket], + AC_HELP_STRING([--with-default-socket=PATH], + [default path of the socket file @<:@/var/run/mpd/socket@:>@]),, + [with_default_socket=auto]) + +if test x$with_default_socket = xauto; then + case "$host_os" in + mingw32* | windows*) + # no UNIX domain sockets on WIN32 + with_default_socket=no + ;; + *) + with_default_socket=/var/run/mpd/socket + ;; + esac +fi + +if test x$with_default_socket != xno; then + AC_DEFINE_UNQUOTED([DEFAULT_SOCKET], ["$with_default_socket"], + [Default UNIX socket path]) +fi + +AC_ARG_WITH([default-host], + AC_HELP_STRING([--with-default-host=ARG], + [default MPD host @<:@localhost@:>@]),, + [with_default_host=localhost]) +AC_DEFINE_UNQUOTED([DEFAULT_HOST], ["$with_default_host"], [Default MPD host]) + +AC_ARG_WITH([default-port], + AC_HELP_STRING([--with-default-port=ARG], + [default MPD port @<:@6600@:>@]),, + [with_default_port=6600]) +AC_DEFINE_UNQUOTED([DEFAULT_PORT], [$with_default_port], [Default MPD port]) + + +dnl +dnl Done +dnl + +AC_OUTPUT([Makefile include/mpd/version.h libmpdclient.pc doc/doxygen.conf]) diff --git a/1_6.h12_dev/libmpdclient/doc/doxygen.conf.in b/1_6.h12_dev/libmpdclient/doc/doxygen.conf.in new file mode 100644 index 0000000..37a7f2b --- /dev/null +++ b/1_6.h12_dev/libmpdclient/doc/doxygen.conf.in @@ -0,0 +1,110 @@ +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +DOXYFILE_ENCODING = UTF-8 + +PROJECT_NAME = libmpdclient +PROJECT_NUMBER = @VERSION@ + +OUTPUT_DIRECTORY = doc/api + +FULL_PATH_NAMES = YES +STRIP_FROM_PATH = include/ + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +EXTRACT_ALL = YES +EXTRACT_STATIC = YES + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +QUIET = YES +WARNINGS = YES +WARN_IF_UNDOCUMENTED = YES +WARN_IF_DOC_ERROR = YES +WARN_NO_PARAMDOC = NO + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +INPUT = @abs_top_srcdir@/include/mpd +FILE_PATTERNS = *.h + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +SOURCE_BROWSER = YES + +# setting this to NO prevents doxygen from sorting functions alphabetically, +# which would destroy their "natural" order +SORT_MEMBER_DOCS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +GENERATE_HTML = YES +HTML_OUTPUT = html +HTML_FILE_EXTENSION = .html +DOCSET_FEEDNAME = "The Music Player Daemon Project" + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +GENERATE_LATEX = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +GENERATE_RTF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +GENERATE_MAN = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +GENERATE_XML = NO + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +GENERATE_PERLMOD = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +ENABLE_PREPROCESSING = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +CLASS_DIAGRAMS = NO + +#--------------------------------------------------------------------------- +# Configuration::additions related to the search engine +#--------------------------------------------------------------------------- + +SEARCHENGINE = NO diff --git a/1_6.h12_dev/libmpdclient/include/mpd/async.h b/1_6.h12_dev/libmpdclient/include/mpd/async.h new file mode 100644 index 0000000..9f6d24c --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/async.h @@ -0,0 +1,215 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief Asynchronous MPD connections + * + * This class provides a very basic interface to MPD connections. It + * does not know much about the MPD protocol, it does not know any + * specific MPD command. + * + * The constructor expects a socket descriptor which is already + * connected to MPD. The first thing it does is read the server's + * handshake code ("OK MPD 0.15.0"). + */ + +#ifndef MPD_ASYNC_H +#define MPD_ASYNC_H + +#include +#include + +#include +#include + +/** + * Event bit mask for polling. + */ +enum mpd_async_event { + /** ready to read from the file descriptor */ + MPD_ASYNC_EVENT_READ = 1, + + /** ready to write to the file descriptor */ + MPD_ASYNC_EVENT_WRITE = 2, + + /** hangup detected */ + MPD_ASYNC_EVENT_HUP = 4, + + /** I/O error */ + MPD_ASYNC_EVENT_ERROR = 8, +}; + +/** + * \struct mpd_async + * + * This opaque object represents an asynchronous connection to a MPD + * server. Call mpd_async_new() to create a new instance. + */ +struct mpd_async; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Creates a new asynchronous MPD connection, based on a stream socket + * connected with MPD. + * + * @param fd the socket file descriptor of the stream connection to MPD + * @return a mpd_async object, or NULL on out of memory + */ +mpd_malloc +struct mpd_async * +mpd_async_new(int fd); + +/** + * Closes the socket and frees memory. + */ +void +mpd_async_free(struct mpd_async *async); + +/** + * After an error has occurred, this function returns the error code. + * If no error has occurred, it returns #MPD_ERROR_SUCCESS. + */ +mpd_pure +enum mpd_error +mpd_async_get_error(const struct mpd_async *async); + +/** + * If mpd_async_is_alive() returns false, this function returns the + * human readable error message which caused this. This message is + * optional, and may be NULL. The pointer is invalidated by + * mpd_async_free(). + * + * For #MPD_ERROR_SERVER, the error message is encoded in UTF-8. + * #MPD_ERROR_SYSTEM obtains its error message from the operating + * system, and thus the locale's character set (and probably language) + * is used. Keep that in mind when you print error messages. + */ +mpd_pure +const char * +mpd_async_get_error_message(const struct mpd_async *async); + +/** + * Returns the error code from the operating system; on most operating + * systems, this is the errno value. Calling this function is only + * valid if mpd_async_get_error() returned #MPD_ERROR_SYSTEM. + * + * May be 0 if the operating system did not specify an error code. + */ +mpd_pure +int +mpd_async_get_system_error(const struct mpd_async *async); + +/** + * Returns the file descriptor which should be polled by the caller. + * Do not use the file descriptor for anything except polling! The + * file descriptor never changes during the lifetime of this + * #mpd_async object. + */ +mpd_pure +int +mpd_async_get_fd(const struct mpd_async *async); + +/** + * Enables (or disables) TCP keepalives. + * + * Keepalives are enabled using the SO_KEEPALIVE socket option. They may be + * required for long-idled connections to persist on some networks that + * would otherwise terminate inactive TCP sessions. + * + * The default value is false. + * + * @param async the #mpd_async object + * @param keepalive whether TCP keepalives should be enabled + * + * @since libmpdclient 2.10 + */ +void mpd_async_set_keepalive(struct mpd_async *async, + bool keepalive); + +/** + * Returns a bit mask of events which should be polled for. + */ +mpd_pure +enum mpd_async_event +mpd_async_events(const struct mpd_async *async); + +/** + * Call this function when poll() has returned events for this + * object's file descriptor. libmpdclient will attempt to perform I/O + * operations. + * + * @return false if the connection was closed due to an error + */ +bool +mpd_async_io(struct mpd_async *async, enum mpd_async_event events); + +/** + * Appends a command to the output buffer. + * + * @param async the connection + * @param command the command name, followed by arguments, terminated by + * NULL + * @param args the argument list + * @return true on success, false if the buffer is full + */ +bool +mpd_async_send_command_v(struct mpd_async *async, const char *command, + va_list args); + +/** + * Appends a command to the output buffer. + * + * @param async the connection + * @param command the command name, followed by arguments, terminated by + * NULL + * @return true on success, false if the buffer is full + */ +mpd_sentinel +bool +mpd_async_send_command(struct mpd_async *async, const char *command, ...); + +/** + * Receives a line from the input buffer. The result will be + * null-terminated, without the newline character. The pointer is + * only valid until the next async function is called. + * + * @param async the connection + * @return a line on success, NULL otherwise + */ +mpd_malloc +char * +mpd_async_recv_line(struct mpd_async *async); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/audio_format.h b/1_6.h12_dev/libmpdclient/include/mpd/audio_format.h new file mode 100644 index 0000000..f9d0936 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/audio_format.h @@ -0,0 +1,87 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_AUDIO_FORMAT_H +#define MPD_AUDIO_FORMAT_H + +#include + +enum { + /** + * 32 bit floating point samples. + */ + MPD_SAMPLE_FORMAT_FLOAT = 0xe0, + + /** + * DSD samples. + */ + MPD_SAMPLE_FORMAT_DSD = 0xe1, +}; + +/** + * This structure describes the format of a raw PCM stream. + */ +struct mpd_audio_format { + /** + * The sample rate in Hz. A better name for this attribute is + * "frame rate", because technically, you have two samples per + * frame in stereo sound. + */ + uint32_t sample_rate; + + /** + * The number of significant bits per sample. Samples are + * currently always signed. Supported values are 8, 16, 24, + * 32 and the special values #MPD_SAMPLE_FORMAT_FLOAT, + * #MPD_SAMPLE_FORMAT_DSD. + * + * @since libmpdclient 2.10 added support for #MPD_SAMPLE_FORMAT_FLOAT and + * #MPD_SAMPLE_FORMAT_DSD. + */ + uint8_t bits; + + /** + * The number of channels. Only mono (1) and stereo (2) are + * fully supported currently. + */ + uint8_t channels; + + /** reserved for future use */ + uint16_t reserved0; + + /** reserved for future use */ + uint32_t reserved1; +}; + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/capabilities.h b/1_6.h12_dev/libmpdclient/include/mpd/capabilities.h new file mode 100644 index 0000000..093b95d --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/capabilities.h @@ -0,0 +1,145 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_CAPABILITIES_H +#define MPD_CAPABILITIES_H + +#include +#include + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Requests a list of supported and allowed. Use + * mpd_recv_pair_named() to obtain the list of "command" pairs. + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_allowed_commands(struct mpd_connection *connection); + +/** + * Requests a list of supported commands which are not allowed for + * this connection. Use mpd_recv_pair_named() to obtain the list of + * "command" pairs. + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_disallowed_commands(struct mpd_connection *connection); + +/** + * Receives the next supported command. Call this in a loop after + * mpd_send_commands() or mpd_send_notcommands(). + * + * Free the return value with mpd_return_pair(). + * + * @param connection a #mpd_connection + * @returns a "command" pair, or NULL on error or if the end of the + * response is reached + */ +mpd_malloc +static inline struct mpd_pair * +mpd_recv_command_pair(struct mpd_connection *connection) +{ + return mpd_recv_pair_named(connection, "command"); +} + +/** + * Requests a list of supported URL handlers in the form "scheme://", + * example: "http://". Use mpd_recv_pair_named() to obtain the list + * of "handler" pairs. + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_list_url_schemes(struct mpd_connection *connection); + +/** + * Receives one line of the mpd_send_urlhandlers() response. + * + * Free the return value with mpd_return_pair(). + * + * @param connection a #mpd_connection + * @returns a "handler" pair, or NULL on error or if the end of the + * response is reached + */ +mpd_malloc +static inline struct mpd_pair * +mpd_recv_url_scheme_pair(struct mpd_connection *connection) +{ + return mpd_recv_pair_named(connection, "handler"); +} + +/** + * Requests a list of supported tag types. Use mpd_recv_pair_named() + * to obtain the list of "tagtype" pairs. + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_list_tag_types(struct mpd_connection *connection); + +/** + * Receives the next tag type name. Call this in a loop after + * mpd_send_tagtypes(). + * + * Free the return value with mpd_return_pair(). + * + * @param connection a #mpd_connection + * @returns a "tagtype" pair, or NULL on error or if the end of the + * response is reached + */ +mpd_malloc +static inline struct mpd_pair * +mpd_recv_tag_type_pair(struct mpd_connection *connection) +{ + return mpd_recv_pair_named(connection, "tagtype"); +} + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/client.h b/1_6.h12_dev/libmpdclient/include/mpd/client.h new file mode 100644 index 0000000..46239b3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/client.h @@ -0,0 +1,75 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * This is a client library for the Music Player Daemon, written in C. + * + * You can choose one of several APIs, depending on your requirements: + * + * - struct mpd_async: a very low-level asynchronous API which knows + * the protocol syntax, but no specific commands + * + * - struct mpd_connection: a basic synchronous API which knows all + * MPD commands and parses all responses + * + * \author Max Kellermann (max@duempel.org) + */ + +#ifndef MPD_CLIENT_H +#define MPD_CLIENT_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/compiler.h b/1_6.h12_dev/libmpdclient/include/mpd/compiler.h new file mode 100644 index 0000000..50f4437 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/compiler.h @@ -0,0 +1,64 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief Compiler specific definitions + * + * This file is not part of the official libmpdclient2 API. It + * provides access to gcc specific extensions. + * + */ + +#ifndef MPD_COMPILER_H +#define MPD_COMPILER_H + +#if !defined(SPARSE) && defined(__GNUC__) && __GNUC__ >= 3 + +/* GCC 4.x */ + +#define mpd_unused __attribute__((unused)) +#define mpd_malloc __attribute__((malloc)) +#define mpd_pure __attribute__((pure)) +#define mpd_const __attribute__((const)) +#define mpd_sentinel __attribute__((sentinel)) +#define mpd_printf(a,b) __attribute__((format(printf, a, b))) + +#else + +/* generic C compiler */ + +#define mpd_unused +#define mpd_malloc +#define mpd_pure +#define mpd_const +#define mpd_sentinel +#define mpd_printf(a,b) + +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/connection.h b/1_6.h12_dev/libmpdclient/include/mpd/connection.h new file mode 100644 index 0000000..e1f1211 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/connection.h @@ -0,0 +1,283 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_CONNECTION_H +#define MPD_CONNECTION_H + +#include +#include +#include + +#include + +struct mpd_async; + +/** + * \struct mpd_connection + * + * This opaque object represents a connection to a MPD server. Call + * mpd_connection_new() to create a new instance. To free an + * instance, call mpd_connection_free(). + * + * Error handling: most functions return a "bool" indicating success + * or failure. In this case, you may query the nature of the error + * with the functions mpd_connection_get_error(), + * mpd_connection_get_error_message(), + * mpd_connection_get_server_error(). + * + * Some errors can be cleared by calling mpd_connection_clear_error(), + * like #MPD_ERROR_SERVER, #MPD_ERROR_ARGUMENT. Most others are + * fatal, and cannot be recovered, like #MPD_ERROR_CLOSED - + * mpd_connection_clear_error() returns false. + * + * Some functions like mpd_recv_pair() cannot differentiate between + * "end of response" and "error". If this function returns NULL, you + * have to check mpd_connection_get_error(). + */ +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Opens a new connection to a MPD server. Both the name server + * lookup and the connect() call are done synchronously. After this + * function has returned, you should check if the connection was + * successful with mpd_connection_get_error(). + * + * @param host the server's host name, IP address or Unix socket path. + * If the resolver returns more than one IP address for a host name, + * this functions tries all of them until one accepts the connection. + * NULL is allowed here, which will connect to the default host + * (using the MPD_HOST environment variable if present). + * @param port the TCP port to connect to, 0 for default port (using + * the MPD_PORT environment variable if present). If "host" is a Unix + * socket path, this parameter is ignored. + * @param timeout_ms the timeout in milliseconds, 0 for the default + * timeout (the environment variable MPD_TIMEOUT may specify a timeout + * in seconds); you may modify it later with + * mpd_connection_set_timeout() + * @return a mpd_connection object (which may have failed to connect), + * or NULL on out-of-memory + * + * @since libmpdclient 2.3 added support for #MPD_HOST, #MPD_PORT and + * #MPD_TIMEOUT. + */ +mpd_malloc +struct mpd_connection * +mpd_connection_new(const char *host, unsigned port, unsigned timeout_ms); + +/** + * Creates a #mpd_connection object based on an existing asynchronous + * MPD connection. You should not continue to use the #mpd_async + * object. Note that mpd_connection_free() also frees your #mpd_async + * object! + * + * This function does not block at all, which is why you have to pass + * the welcome message to it. + * + * @param async a #mpd_async instance + * @param welcome the first line sent by MPD (the welcome message) + * @return a mpd_connection object, or NULL on out-of-memory + */ +mpd_malloc +struct mpd_connection * +mpd_connection_new_async(struct mpd_async *async, const char *welcome); + +/** + * Close the connection and free all memory. + * + * @param connection the connection to MPD + */ +void mpd_connection_free(struct mpd_connection *connection); + +/** + * Returns the settings which were used to connect to the server. May + * be NULL if the settings are not known. + * + * @since libmpdclient 2.4 + */ +const struct mpd_settings * +mpd_connection_get_settings(const struct mpd_connection *connection); + +/** + * Enables (or disables) TCP keepalives. + * + * Keepalives are enabled using the SO_KEEPALIVE socket option. They may be + * required for long-idled connections to persist on some networks that + * would otherwise terminate inactive TCP sessions. + * + * The default value is false. + * + * @param connection the connection to MPD + * @param keepalive whether TCP keepalives should be enabled + * + * @since libmpdclient 2.10 + */ +void mpd_connection_set_keepalive(struct mpd_connection *connection, + bool keepalive); + +/** + * Sets the timeout for synchronous operations. If the MPD server + * does not send a response during this time span, the operation is + * aborted by libmpdclient. + * + * The initial value is the one passed to mpd_connection_new(). If + * you have used mpd_connection_new_async(), then the default value is + * 30 seconds. + * + * @param connection the connection to MPD + * @param timeout_ms the desired timeout in milliseconds; must not be 0 + */ +void mpd_connection_set_timeout(struct mpd_connection *connection, + unsigned timeout_ms); + +/** + * Returns the file descriptor which should be polled by the caller. + * Do not use the file descriptor for anything except polling! The + * file descriptor never changes during the lifetime of this + * #mpd_connection object. + */ +mpd_pure +int +mpd_connection_get_fd(const struct mpd_connection *connection); + +/** + * Returns the underlying #mpd_async object. This can be used to send + * commands asynchronously. During an asynchronous command, you must + * not use synchronous #mpd_connection functions until the + * asynchronous response has been finished. + * + * If an error occurs while using #mpd_async, you must close the + * #mpd_connection. + */ +mpd_pure +struct mpd_async * +mpd_connection_get_async(struct mpd_connection *connection); + +/** + * Returns the libmpdclient error code. MPD_ERROR_SUCCESS means no + * error occurred. + */ +mpd_pure +enum mpd_error +mpd_connection_get_error(const struct mpd_connection *connection); + +/** + * Returns the human-readable (English) libmpdclient error message. + * Calling this function is only valid if an error really occurred. + * Check with mpd_connection_get_error(). + * + * For #MPD_ERROR_SERVER, the error message is encoded in UTF-8. + * #MPD_ERROR_SYSTEM obtains its error message from the operating + * system, and thus the locale's character set (and probably language) + * is used. Keep that in mind when you print error messages. + */ +mpd_pure +const char * +mpd_connection_get_error_message(const struct mpd_connection *connection); + +/** + * Returns the error code returned from the server. Calling this + * function is only valid if mpd_connection_get_error() returned + * #MPD_ERROR_SERVER. + */ +mpd_pure +enum mpd_server_error +mpd_connection_get_server_error(const struct mpd_connection *connection); + +/** + * Returns the location of the server error, i.e. an index within the + * command list. Calling this function is only valid in a command + * list response, and if mpd_connection_get_error() returned + * #MPD_ERROR_SERVER. + * + * @since libmpdclient 2.4 + */ +mpd_pure +unsigned +mpd_connection_get_server_error_location(const struct mpd_connection *connection); + +/** + * Returns the error code from the operating system; on most operating + * systems, this is the errno value. Calling this function is only + * valid if mpd_connection_get_error() returned #MPD_ERROR_SYSTEM. + * + * May be 0 if the operating system did not specify an error code. + */ +mpd_pure +int +mpd_connection_get_system_error(const struct mpd_connection *connection); + +/** + * Attempts to recover from an error condition. This function must be + * called after a non-fatal error before you can continue using this + * object. + * + * @return true on success, false if the error is fatal and cannot be + * recovered + */ +bool +mpd_connection_clear_error(struct mpd_connection *connection); + +/** + * Returns a three-tuple containing the major, minor and patch version + * of the MPD protocol. + */ +mpd_pure +const unsigned * +mpd_connection_get_server_version(const struct mpd_connection *connection); + +/** + * Compares the MPD protocol version with the specified triple. + * + * @return -1 if the server is older, 1 if it is newer, 0 if it is + * equal + */ +mpd_pure +int +mpd_connection_cmp_server_version(const struct mpd_connection *connection, + unsigned major, unsigned minor, + unsigned patch); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/database.h b/1_6.h12_dev/libmpdclient/include/mpd/database.h new file mode 100644 index 0000000..c80c50a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/database.h @@ -0,0 +1,163 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief Database + * + * This file declares functions which query or update MPD's music + * database. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_DATABASE_H +#define MPD_DATABASE_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get a recursive list of all directories, songs and playlist from + * MPD. They are returned without metadata. This is a rather + * expensive operation, because the response may be large. + * + * @param connection the connection to MPD + * @param path an optional base path for the query + * @return true on success, false on error + */ +bool +mpd_send_list_all(struct mpd_connection *connection, const char *path); + +/** + * Like #mpd_send_list_all(), but return metadata. This operation is + * even more expensive, because the response is larger. If it is + * larger than a configurable server-side limit, MPD may disconnect + * you. + * + * To read the response, you may use mpd_recv_entity(). + * + * @param connection the connection to MPD + * @param path an optional base path for the query + * @return true on success, false on error + */ +bool +mpd_send_list_all_meta(struct mpd_connection *connection, const char *path); + + +/** + * Get a list of all directories, songs and playlist in a directory + * from MPD, including metadata. + * + * To read the response, you may use mpd_recv_entity(). + * + * @param connection the connection to MPD + * @param path the directory to be listed + * @return true on success, false on error + */ +bool +mpd_send_list_meta(struct mpd_connection *connection, const char *path); + +/** + * Send "readcomments". Read the "comments" of a song file. This + * returns key/value pairs which can be read using mpd_recv_pair(). + * + * @param connection the connection to MPD + * @param path the relative path of the song file within the music + * directory or an arbitrary file path starting with file:/// + * @return true on success, false on error + * + * @since libmpdclient 2.9 + */ +bool +mpd_send_read_comments(struct mpd_connection *connection, const char *path); + +/** + * Instructs MPD to update the music database: find new files, remove + * deleted files, update modified files. + * + * @param connection the connection to MPD + * @param path optional path to update; if NULL, then all of the music + * directory is updated + * @return true on success, false on error + */ +bool +mpd_send_update(struct mpd_connection *connection, const char *path); + +/** + * Like mpd_send_update(), but also rescans unmodified files. + * + * @param connection the connection to MPD + * @param path optional path to update; if NULL, then all of the music + * directory is updated + * @return true on success, false on error + */ +bool +mpd_send_rescan(struct mpd_connection *connection, const char *path); + +/** + * Receives the id the of the update job which was submitted by + * mpd_send_update(). + * + * @param connection the connection to MPD + * @return a positive job id on success, 0 on error + */ +unsigned +mpd_recv_update_id(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_update() and mpd_recv_update_id(). + * + * @param connection the connection to MPD + * @param path optional path to update; if NULL, then all of the music + * directory is updated + * @return a positive job id on success, 0 on error + */ +unsigned +mpd_run_update(struct mpd_connection *connection, const char *path); + +/** + * Like mpd_run_update(), but also rescans unmodified files. + * + * @param connection the connection to MPD + * @param path optional path to update; if NULL, then all of the music + * directory is updated + * @return a positive job id on success, 0 on error + */ +unsigned +mpd_run_rescan(struct mpd_connection *connection, const char *path); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/directory.h b/1_6.h12_dev/libmpdclient/include/mpd/directory.h new file mode 100644 index 0000000..1d93ff2 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/directory.h @@ -0,0 +1,131 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_DIRECTORY_H +#define MPD_DIRECTORY_H + +#include + +#include +#include + +struct mpd_pair; +struct mpd_connection; + +/** + * \struct mpd_directory + * + * An opaque directory object. This is a container for more songs, + * directories or playlists. + */ +struct mpd_directory; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Duplicates a #mpd_directory object. + * + * @return the new object, or NULL on out of memory + */ +mpd_malloc +struct mpd_directory * +mpd_directory_dup(const struct mpd_directory *directory); + +/** + * Free memory allocated by the #mpd_directory object. + */ +void mpd_directory_free(struct mpd_directory *directory); + +/** + * Returns the path of this directory, relative to the MPD music + * directory. It does not begin with a slash. + */ +mpd_pure +const char * +mpd_directory_get_path(const struct mpd_directory *directory); + +/** + * @return the POSIX UTC time stamp of the last modification, or 0 if + * that is unknown + * + * @since libmpdclient 2.9 + */ +mpd_pure +time_t +mpd_directory_get_last_modified(const struct mpd_directory *directory); + +/** + * Begins parsing a new directory. + * + * @param pair the first pair in this directory (name must be "directory") + * @return the new #mpd_entity object, or NULL on error (out of + * memory, or pair name is not "directory") + */ +mpd_malloc +struct mpd_directory * +mpd_directory_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_directory object. + * + * @return true if the pair was parsed and added to the directory (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next directory + */ +bool +mpd_directory_feed(struct mpd_directory *directory, + const struct mpd_pair *pair); + +/** + * Receives the next directory from the MPD server. + * + * @return a #mpd_directory object, or NULL on error or if the directory list is + * finished + */ +mpd_malloc +struct mpd_directory * +mpd_recv_directory(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/entity.h b/1_6.h12_dev/libmpdclient/include/mpd/entity.h new file mode 100644 index 0000000..1f06e81 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/entity.h @@ -0,0 +1,168 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_ENTITY_H +#define MPD_ENTITY_H + +#include +#include +#include +#include + +struct mpd_pair; + +/** + * The type of a #mpd_entity object. + */ +enum mpd_entity_type { + /** + * The type of the entity received from MPD is not implemented + * in this version of libmpdclient. + */ + MPD_ENTITY_TYPE_UNKNOWN, + + /** + * A directory (#mpd_directory) containing more entities. + */ + MPD_ENTITY_TYPE_DIRECTORY, + + /** + * A song file (#mpd_song) which can be added to the playlist. + */ + MPD_ENTITY_TYPE_SONG, + + /** + * A stored playlist (#mpd_playlist). + */ + MPD_ENTITY_TYPE_PLAYLIST, +}; + +/** + * \struct mpd_entity + * + * An "entity" is an object returned by commands like "lsinfo". It is + * an object wrapping all possible entity types. + */ +struct mpd_entity; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Releases an entity. This also frees the wrapped object. + */ +void +mpd_entity_free(struct mpd_entity *entity); + +/** + * @return the type of this entity. + */ +mpd_pure +enum mpd_entity_type +mpd_entity_get_type(const struct mpd_entity *entity); + +/** + * Obtains a pointer to the #mpd_directory object enclosed by this + * #mpd_entity. Calling this function is only allowed of + * mpd_entity_get_type() has returned #MPD_ENTITY_TYPE_DIRECTORY. + * + * @return the directory object + */ +mpd_pure +const struct mpd_directory * +mpd_entity_get_directory(const struct mpd_entity *entity); + +/** + * Obtains a pointer to the #mpd_song object enclosed by this + * #mpd_entity. Calling this function is only allowed of + * mpd_entity_get_type() has returned #MPD_ENTITY_TYPE_SONG. + * + * @return the song object + */ +mpd_pure +const struct mpd_song * +mpd_entity_get_song(const struct mpd_entity *entity); + +/** + * Obtains a pointer to the #mpd_playlist object enclosed by + * this #mpd_entity. Calling this function is only allowed of + * mpd_entity_get_type() has returned #MPD_ENTITY_TYPE_PLAYLIST. + * + * @return the directory object + */ +mpd_pure +const struct mpd_playlist * +mpd_entity_get_playlist(const struct mpd_entity *entity); + +/** + * Begins parsing a new entity. + * + * @param pair the first pair in this entity + * @return the new #mpd_entity object, or NULL on error (out of memory) + */ +mpd_malloc +struct mpd_entity * +mpd_entity_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_entity object. + * + * @return true if the pair was parsed and added to the entity (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next entity + */ +bool +mpd_entity_feed(struct mpd_entity *entity, const struct mpd_pair *pair); + +/** + * Receives the next entity from the MPD server. + * + * @return an entity object, or NULL on error or if the entity list is + * finished + */ +mpd_malloc +struct mpd_entity * +mpd_recv_entity(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/error.h b/1_6.h12_dev/libmpdclient/include/mpd/error.h new file mode 100644 index 0000000..9918e09 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/error.h @@ -0,0 +1,76 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h or + * mpd/async.h instead. + */ + +#ifndef MPD_ERROR_H +#define MPD_ERROR_H + +enum mpd_error { + /** no error */ + MPD_ERROR_SUCCESS = 0, + + /** out of memory */ + MPD_ERROR_OOM, + + /** a function was called with an unrecognized or invalid + argument */ + MPD_ERROR_ARGUMENT, + + /** a function was called which is not available in the + current state of libmpdclient */ + MPD_ERROR_STATE, + + /** timeout trying to talk to mpd */ + MPD_ERROR_TIMEOUT, + + /** system error */ + MPD_ERROR_SYSTEM, + + /** unknown host */ + MPD_ERROR_RESOLVER, + + /** malformed response received from MPD */ + MPD_ERROR_MALFORMED, + + /** connection closed by mpd */ + MPD_ERROR_CLOSED, + + /** + * The server has returned an error code, which can be queried + * with mpd_connection_get_server_error(). + */ + MPD_ERROR_SERVER, +}; + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/idle.h b/1_6.h12_dev/libmpdclient/include/mpd/idle.h new file mode 100644 index 0000000..3a1aedf --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/idle.h @@ -0,0 +1,206 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_IDLE_H +#define MPD_IDLE_H + +#include + +#include + +struct mpd_pair; +struct mpd_connection; + +/** + * This enum contains bit masks for all idle events. + * + * @since libmpdclient 2.5 added support for #MPD_IDLE_STICKER, + * #MPD_IDLE_SUBSCRIPTION and #MPD_IDLE_MESSAGE. + */ +enum mpd_idle { + /** song database has been updated*/ + MPD_IDLE_DATABASE = 0x1, + + /** a stored playlist has been modified, created, deleted or + renamed */ + MPD_IDLE_STORED_PLAYLIST = 0x2, + + /** the queue has been modified */ + MPD_IDLE_QUEUE = 0x4, + + /** deprecated, don't use */ + MPD_IDLE_PLAYLIST = MPD_IDLE_QUEUE, + + /** the player state has changed: play, stop, pause, seek, ... */ + MPD_IDLE_PLAYER = 0x8, + + /** the volume has been modified */ + MPD_IDLE_MIXER = 0x10, + + /** an audio output device has been enabled or disabled */ + MPD_IDLE_OUTPUT = 0x20, + + /** options have changed: crossfade, random, repeat, ... */ + MPD_IDLE_OPTIONS = 0x40, + + /** a database update has started or finished. */ + MPD_IDLE_UPDATE = 0x80, + + /** a sticker has been modified. */ + MPD_IDLE_STICKER = 0x100, + + /** a client has subscribed to or unsubscribed from a channel */ + MPD_IDLE_SUBSCRIPTION = 0x200, + + /** a message on a subscribed channel was received */ + MPD_IDLE_MESSAGE = 0x400, +}; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Returns the name of the specified idle event. + * + * @param idle an idle event id + * @return the name, or NULL if that event is not known + */ +mpd_const +const char * +mpd_idle_name(enum mpd_idle idle); + +/** + * Parses the name of an idle event. + * + * @param name an idle event name + * @return the id, or 0 if that event is not known + */ +mpd_pure +enum mpd_idle +mpd_idle_name_parse(const char *name); + +/** + * Enters "idle" mode: MPD will stall the response until an event has + * occurred. Call mpd_send_noidle() to abort the idle mode, or + * mpd_recv_idle() to read the event mask (or synchronously wait for + * events). + */ +bool +mpd_send_idle(struct mpd_connection *connection); + +/** + * Same as mpd_send_idle(), but listen only on specific events. + * + * @param connection the connection to MPD + * @param mask a bit mask of idle events; must not be 0 + * @return a positive job id on success, 0 on error + */ +bool +mpd_send_idle_mask(struct mpd_connection *connection, enum mpd_idle mask); + +/** + * Tells MPD to leave the "idle" mode. MPD will then respond with a + * list of events which have occurred (which may be empty). Call + * mpd_recv_idle() after that. + */ +bool +mpd_send_noidle(struct mpd_connection *connection); + +/** + * Parses a "changed" pair, which is part of MPD's response to the + * "idle" command. + * + * @return an idle code, or 0 if the pair was not understood + */ +mpd_pure +enum mpd_idle +mpd_idle_parse_pair(const struct mpd_pair *pair); + +/** + * Waits until MPD sends the list of idle events and returns it in a + * bit mask. + * + * @param connection the connection to MPD + * @param disable_timeout if true, then libmpdclients temporarily + * disables the configured timeout (see mpd_connection_set_timeout()): + * this function blocks forever, until either MPD sends a response, or + * an error occurs. + * @return the event bit mask, or 0 on error or if there were no + * events + */ +enum mpd_idle +mpd_recv_idle(struct mpd_connection *connection, bool disable_timeout); + +/** + * Shortcut for mpd_send_idle() and mpd_recv_idle(). During + * mpd_recv_idle(), the configured timeout is disabled. + * + * @param connection the connection to MPD + * @return the event bit mask, or 0 on error + */ +enum mpd_idle +mpd_run_idle(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_idle_mask() and mpd_recv_idle(). During + * mpd_recv_idle(), the configured timeout is disabled. + * + * @param connection the connection to MPD + * @param mask a bit mask of idle events; must not be 0 + * @return the event bit mask, or 0 on error + */ +enum mpd_idle +mpd_run_idle_mask(struct mpd_connection *connection, enum mpd_idle mask); + +/** + * Shortcut for mpd_send_noidle() and mpd_recv_idle(). During + * mpd_recv_idle(), the configured timeout is not disabled. + * + * @param connection the connection to MPD + * @return the event bit mask, or 0 on error or if there were no + * events + */ +enum mpd_idle +mpd_run_noidle(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/list.h b/1_6.h12_dev/libmpdclient/include/mpd/list.h new file mode 100644 index 0000000..da57a16 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/list.h @@ -0,0 +1,84 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Functions for sending command lists. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_LIST_H +#define MPD_LIST_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Starts a command list, i.e. a group of pipelined commands which are + * transferred in one block. If one command fails, the rest of the + * command list is canceled. + * + * Note that there is no guarantee on atomicity. + * + * @param connection the connection to MPD + * @param discrete_ok tells MPD whether to acknowledge every list + * command with an "list_OK" response + * @return true on success + */ +bool +mpd_command_list_begin(struct mpd_connection *connection, bool discrete_ok); + +/** + * Commits the command list, i.e. makes MPD execute all commands which + * were queued. + * + * Note: there is no way to cancel a command list once it is started. + * You may however close the socket connection. + * + * @param connection the connection to MPD + * @return true on success + */ +bool +mpd_command_list_end(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/message.h b/1_6.h12_dev/libmpdclient/include/mpd/message.h new file mode 100644 index 0000000..645998f --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/message.h @@ -0,0 +1,241 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_MESSAGE_H +#define MPD_MESSAGE_H + +#include +#include + +#include + +struct mpd_pair; +/** + * \struct mpd_message + */ +struct mpd_message; +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Begins parsing a new message. + * + * @param pair the first pair in this message (name must be "channel") + * @return the new #mpd_entity object, or NULL on error (out of + * memory, or pair name is not "channel") + * + * @since libmpdclient 2.5 + */ +mpd_malloc +struct mpd_message * +mpd_message_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_message object. + * + * @return true if the pair was parsed and added to the message (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next message + * + * @since libmpdclient 2.5 + */ +bool +mpd_message_feed(struct mpd_message *output, const struct mpd_pair *pair); + +/** + * Frees a #mpd_message object. + * + * @since libmpdclient 2.5 + */ +void +mpd_message_free(struct mpd_message *message); + +/** + * Returns the channel name. + * + * @since libmpdclient 2.5 + */ +mpd_pure +const char * +mpd_message_get_channel(const struct mpd_message *message); + +/** + * Returns the message text. + * + * @since libmpdclient 2.5 + */ +mpd_pure +const char * +mpd_message_get_text(const struct mpd_message *message); + +/** + * Sends the "subscribe" command: subscribe to a message channel. + * + * @param connection the connection to MPD + * @param channel the channel name + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_subscribe(struct mpd_connection *connection, const char *channel); + +/** + * Shortcut for mpd_send_subscribe() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param channel the channel name + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_run_subscribe(struct mpd_connection *connection, const char *channel); + +/** + * Sends the "unsubscribe" command: unsubscribe from a message + * channel. + * + * @param connection the connection to MPD + * @param channel the channel name + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_unsubscribe(struct mpd_connection *connection, const char *channel); + +/** + * Shortcut for mpd_send_unsubscribe() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param channel the channel name + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_run_unsubscribe(struct mpd_connection *connection, const char *channel); + +/** + * Sends the "sendmessage" command: send a message to a channel. + * + * @param connection the connection to MPD + * @param channel the channel name + * @param text the message text + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_send_message(struct mpd_connection *connection, + const char *channel, const char *text); + +/** + * Shortcut for mpd_send_send_message() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param channel the channel name + * @param text the message text + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_run_send_message(struct mpd_connection *connection, + const char *channel, const char *text); + +/** + * Sends the "readmessages" command: send a message to a channel. + * + * @param connection the connection to MPD + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_read_messages(struct mpd_connection *connection); + +/** + * Reads the next mpd_message from the MPD response. Free the return + * value with mpd_message_free(). + * + * @return a mpd_message object on success, NULL on error or + * end-of-response + * + * @since libmpdclient 2.5 + */ +mpd_malloc +struct mpd_message * +mpd_recv_message(struct mpd_connection *connection); + +/** + * Sends the "channels" command: get a list of all channels. + * + * @param connection the connection to MPD + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_channels(struct mpd_connection *connection); + +/** + * Receives the next channel name. Call this in a loop after + * mpd_send_channels(). + * + * Free the return value with mpd_return_pair(). + * + * @param connection a #mpd_connection + * @returns a "channel" pair, or NULL on error or if the end of the + * response is reached + * + * @since libmpdclient 2.5 + */ +mpd_malloc +static inline struct mpd_pair * +mpd_recv_channel_pair(struct mpd_connection *connection) +{ + return mpd_recv_pair_named(connection, "channel"); +} + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/mixer.h b/1_6.h12_dev/libmpdclient/include/mpd/mixer.h new file mode 100644 index 0000000..49521af --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/mixer.h @@ -0,0 +1,96 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Functions for manipulating MPD's mixer controls. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_MIXER_H +#define MPD_MIXER_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Sets the volume of all output devices. + * + * @param connection the connection to MPD + * @param volume the volume, an integer between 0 and 100 + * @return true on success, false on error + */ +bool +mpd_send_set_volume(struct mpd_connection *connection, unsigned volume); + +/** + * Shortcut for mpd_send_set_volume() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param volume the volume, an integer between 0 and 100 + * @return true on success, false on error + */ +bool +mpd_run_set_volume(struct mpd_connection *connection, unsigned volume); + +/** + * Changes the volume of all output devices. + * + * @param connection the connection to MPD + * @param relative_volume the relative volume, an integer between -100 and 100 + * @return true on success, false on error + * + * @since libmpdclient 2.9 + */ +bool +mpd_send_change_volume(struct mpd_connection *connection, int relative_volume); + +/** + * Shortcut for mpd_send_change_volume() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param relative_volume the relative volume, an integer between -100 and 100 + * @return true on success, false on error + * + * @since libmpdclient 2.9 + */ +bool +mpd_run_change_volume(struct mpd_connection *connection, int relative_volume); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/output.h b/1_6.h12_dev/libmpdclient/include/mpd/output.h new file mode 100644 index 0000000..7dae7e6 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/output.h @@ -0,0 +1,204 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_OUTPUT_H +#define MPD_OUTPUT_H + +#include + +#include + +struct mpd_connection; +struct mpd_pair; + +/** + * \struct mpd_output + * + * This type represents an audio output device on the MPD server. + */ +struct mpd_output; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Begins parsing a new #mpd_output. + * + * @param pair the first pair in this output (name is "outputid") + * @return the new #mpd_output object, or NULL on error (out of + * memory, or wrong pair name) + */ +mpd_malloc +struct mpd_output * +mpd_output_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_output object. + * + * @return true if the pair was parsed and added to the output (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next output + */ +bool +mpd_output_feed(struct mpd_output *output, const struct mpd_pair *pair); + +/** + * Frees a mpd_output object returned from mpd_recv_output(). + */ +void +mpd_output_free(struct mpd_output *output); + +/** + * @return the id of the specified #mpd_output object + */ +mpd_pure +unsigned +mpd_output_get_id(const struct mpd_output *output); + +/** + * @return the configured name of the specified #mpd_output object + */ +mpd_pure +const char * +mpd_output_get_name(const struct mpd_output *output); + +/** + * @return true if this output is enabled + */ +mpd_pure +bool +mpd_output_get_enabled(const struct mpd_output *output); + +/** + * Sends the "outputs" command to MPD. Call mpd_recv_output() to + * read the response. + * + * @param connection A valid and connected mpd_connection. + * @return true on success + */ +bool +mpd_send_outputs(struct mpd_connection *connection); + +/** + * Reads the next mpd_output from the MPD response. Free the return + * value with mpd_output_free(). + * + * @return a mpd_output object on success, NULL on error or + * end-of-response + */ +mpd_malloc +struct mpd_output * +mpd_recv_output(struct mpd_connection *connection); + +/** + * Sends the "enableoutput" command to MPD. + * + * @param connection A valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + */ +bool +mpd_send_enable_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Shortcut for mpd_send_enable_output() and mpd_response_finish(). + * + * @param connection A valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + */ +bool +mpd_run_enable_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Sends the "disableoutput" command to MPD. + * + * @param connection A valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + */ +bool +mpd_send_disable_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Shortcut for mpd_send_disable_output() and mpd_response_finish(). + * + * @param connection A valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + */ +bool +mpd_run_disable_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Sends the "toggleoutput" command to MPD. + * + * @param connection a valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + * + * @since libmpdclient 2.9 + */ +bool +mpd_send_toggle_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Shortcut for mpd_send_toggle_output() and mpd_response_finish(). + * + * @param connection a valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + * + * @since libmpdclient 2.9 + */ +bool +mpd_run_toggle_output(struct mpd_connection *connection, unsigned output_id); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/pair.h b/1_6.h12_dev/libmpdclient/include/mpd/pair.h new file mode 100644 index 0000000..791627e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/pair.h @@ -0,0 +1,49 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef LIBMPDCLIENT_PAIR_H +#define LIBMPDCLIENT_PAIR_H + +/** + * A name-value pair received from the MPD server. + */ +struct mpd_pair { + /** the name of the element */ + const char *name; + + /** the value of the element */ + const char *value; +}; + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/parser.h b/1_6.h12_dev/libmpdclient/include/mpd/parser.h new file mode 100644 index 0000000..048b918 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/parser.h @@ -0,0 +1,181 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef LIBMPDCLIENT_PARSER_H +#define LIBMPDCLIENT_PARSER_H + +#include +#include + +#include + +enum mpd_parser_result { + /** + * Response line was not understood. + */ + MPD_PARSER_MALFORMED, + + /** + * MPD has returned "OK" or "list_OK" (check with + * mpd_parser_is_discrete()). + */ + MPD_PARSER_SUCCESS, + + /** + * MPD has returned "ACK" with an error code. Call + * mpd_parser_get_server_error() to get the error code. + */ + MPD_PARSER_ERROR, + + /** + * MPD has returned a name-value pair. Call + * mpd_parser_get_name() and mpd_parser_get_value(). + */ + MPD_PARSER_PAIR, +}; + +/** + * \struct mpd_parser + * + * This opaque object is a low-level parser for the MPD protocol. You + * feed it with input lines, and it provides parsed representations. + */ +struct mpd_parser; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Allocates a new mpd_parser object. Returns NULL on error (out of + * memory). + */ +mpd_malloc +struct mpd_parser * +mpd_parser_new(void); + +/** + * Frees a mpd_parser object. + */ +void +mpd_parser_free(struct mpd_parser *parser); + +/** + * Feeds a line (without the trailing newline character) received from + * MPD / mpd_async_recv_line() into the parser. + * + * Note that the line parameter is writable, because the parser will + * modify it. The functions mpd_parser_get_name() and + * mpd_parser_get_value() will return pointers inside this buffer. + * This means that after passing the line to this function, you must + * not modify or free it, until the name and value pointers are not + * used anymore. + * + * @param parser the #mpd_parser object + * @param line a line received from the MPD server + * @return a result code indicating the type of line, or error + */ +enum mpd_parser_result +mpd_parser_feed(struct mpd_parser *parser, char *line); + +/** + * Call this when mpd_parser_feed() has returned #MPD_PARSER_SUCCESS + * to find out whether this is an "OK" (false) or a "list_OK" (true) + * response. + * + * @param parser the #mpd_parser object + */ +mpd_pure +bool +mpd_parser_is_discrete(const struct mpd_parser *parser); + +/** + * Call this when mpd_parser_feed() has returned #MPD_PARSER_ERROR to + * obtain the reason for the error. + * + * @param parser the #mpd_parser object + */ +mpd_pure +enum mpd_server_error +mpd_parser_get_server_error(const struct mpd_parser *parser); + +/** + * On #MPD_PARSER_ERROR, this returns the number of the list command + * which failed. Don't call this outside of a command list. + * + * @param parser the #mpd_parser object + */ +mpd_pure +unsigned +mpd_parser_get_at(const struct mpd_parser *parser); + +/** + * On #MPD_PARSER_ERROR, this returns the human readable error message + * returned by MPD (UTF-8). + * + * This returns a pointer into the line buffer passed to + * mpd_parser_feed(). It is valid as long as the buffer is not + * freed/modified. + * + * @param parser the #mpd_parser object + */ +mpd_pure +const char * +mpd_parser_get_message(const struct mpd_parser *parser); + +/** + * On #MPD_PARSER_PAIR, this returns the name. + * + * This returns a pointer into the line buffer passed to + * mpd_parser_feed(). It is valid as long as the buffer is not + * freed/modified. + * + * @param parser the #mpd_parser object + */ +mpd_pure +const char * +mpd_parser_get_name(const struct mpd_parser *parser); + +/** + * On #MPD_PARSER_PAIR, this returns the value. + * + * This returns a pointer into the line buffer passed to + * mpd_parser_feed(). It is valid as long as the buffer is not + * freed/modified. + * + * @param parser the #mpd_parser object + */ +mpd_pure +const char * +mpd_parser_get_value(const struct mpd_parser *parser); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/password.h b/1_6.h12_dev/libmpdclient/include/mpd/password.h new file mode 100644 index 0000000..a85246e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/password.h @@ -0,0 +1,66 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Password authentication. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_PASSWORD_H +#define MPD_PASSWORD_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Sends the password to MPD, to gain more privileges. + */ +bool +mpd_send_password(struct mpd_connection *connection, const char *password); + +/** + * Sends the password to MPD and receives its response. + * + * @return true on success, false on failure + */ +bool +mpd_run_password(struct mpd_connection *connection, const char *password); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/player.h b/1_6.h12_dev/libmpdclient/include/mpd/player.h new file mode 100644 index 0000000..70b2eae --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/player.h @@ -0,0 +1,242 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Controlling playback. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_PLAYER_H +#define MPD_PLAYER_H + +#include + +#include + +struct mpd_connection; +struct mpd_song; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Fetches the currently selected song (the song referenced by + * status->song and status->songid). + */ +bool +mpd_send_current_song(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_currentsong() and mpd_recv_song(). + * + * @param connection the connection to MPD + * @return the current song, or NULL on error or if there is no + * current song + */ +mpd_malloc +struct mpd_song * +mpd_run_current_song(struct mpd_connection *connection); + +/** + * Starts playing the current song from the beginning. + * + * @param connection the connection to MPD + */ +bool +mpd_send_play(struct mpd_connection *connection); + +bool +mpd_run_play(struct mpd_connection *connection); + +/** + * Starts playing the specified song from the beginning. + * + * @param song_pos the position of the song in the queue + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_play_pos(struct mpd_connection *connection, unsigned song_pos); + +bool +mpd_run_play_pos(struct mpd_connection *connection, unsigned song_pos); + +/** + * Starts playing the specified song from the beginning. + * + * @param connection the connection to MPD + * @param id the id of the song + * @return true on success, false on error + */ +bool +mpd_send_play_id(struct mpd_connection *connection, unsigned id); + +bool +mpd_run_play_id(struct mpd_connection *connection, unsigned song_id); + +bool +mpd_send_stop(struct mpd_connection *connection); + +bool +mpd_run_stop(struct mpd_connection *connection); + +/** + * Toggles the pause mode by sending "pause" without arguments. + * + * @param connection the connection to MPD + */ +bool +mpd_send_toggle_pause(struct mpd_connection *connection); + +bool +mpd_run_toggle_pause(struct mpd_connection *connection); + +bool +mpd_send_pause(struct mpd_connection *connection, bool mode); + +bool +mpd_run_pause(struct mpd_connection *connection, bool mode); + +bool +mpd_send_next(struct mpd_connection *connection); + +bool +mpd_run_next(struct mpd_connection *connection); + +bool +mpd_send_previous(struct mpd_connection *connection); + +bool +mpd_run_previous(struct mpd_connection *connection); + +/** + * Seeks the specified song. + * + * @param connection the connection to MPD + * @param song_pos the position of the song in the queue + * @param t the position within the song, in seconds + * @return true on success, false on error + */ +bool +mpd_send_seek_pos(struct mpd_connection *connection, + unsigned song_pos, unsigned t); + +bool +mpd_run_seek_pos(struct mpd_connection *connection, + unsigned song_pos, unsigned t); + +/** + * Seeks the specified song. + * + * @param connection the connection to MPD + * @param id the id of the song + * @param t the position within the song, in seconds + * @return true on success, false on error + */ +bool +mpd_send_seek_id(struct mpd_connection *connection, unsigned id, unsigned t); + +bool +mpd_run_seek_id(struct mpd_connection *connection, + unsigned song_id, unsigned t); + +bool +mpd_send_repeat(struct mpd_connection *connection, bool mode); + +bool +mpd_run_repeat(struct mpd_connection *connection, bool mode); + +bool +mpd_send_random(struct mpd_connection *connection, bool mode); + +bool +mpd_run_random(struct mpd_connection *connection, bool mode); + +bool +mpd_send_single(struct mpd_connection *connection, bool mode); + +bool +mpd_run_single(struct mpd_connection *connection, bool mode); + +bool +mpd_send_consume(struct mpd_connection *connection, bool mode); + +bool +mpd_run_consume(struct mpd_connection *connection, bool mode); + +bool +mpd_send_crossfade(struct mpd_connection *connection, unsigned seconds); + +bool +mpd_run_crossfade(struct mpd_connection *connection, unsigned seconds); + +/** + * @since libmpdclient 2.2 + */ +bool +mpd_send_mixrampdb(struct mpd_connection *connection, float db); + +/** + * @since libmpdclient 2.2 + */ +bool +mpd_run_mixrampdb(struct mpd_connection *connection, float db); + +/** + * @since libmpdclient 2.2 + */ +bool +mpd_send_mixrampdelay(struct mpd_connection *connection, float seconds); + +/** + * @since libmpdclient 2.2 + */ +bool +mpd_run_mixrampdelay(struct mpd_connection *connection, float seconds); + +/** + * @since libmpdclient 2.4 + */ +bool +mpd_send_clearerror(struct mpd_connection *connection); + +/** + * @since libmpdclient 2.4 + */ +bool +mpd_run_clearerror(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/playlist.h b/1_6.h12_dev/libmpdclient/include/mpd/playlist.h new file mode 100644 index 0000000..07bb737 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/playlist.h @@ -0,0 +1,216 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Manipulate stored playlists. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef LIBMPDCLIENT_PLAYLIST_H +#define LIBMPDCLIENT_PLAYLIST_H + +#include + +#include +#include + +struct mpd_pair; +struct mpd_connection; + +/** + * \struct mpd_playlist + * + * An opaque representation for a playlist stored in MPD's + * playlist directory. Use the functions provided by this header to + * access the object's attributes. + */ +struct mpd_playlist; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Free memory allocated by the #mpd_playlist object. + */ +void +mpd_playlist_free(struct mpd_playlist *playlist); + +/** + * Duplicates a #mpd_playlist object. + * + * @return the new object, or NULL on out of memory + */ +mpd_malloc +struct mpd_playlist * +mpd_playlist_dup(const struct mpd_playlist *playlist); + +/** + * Returns the path name of this playlist file. It does not begin + * with a slash. + */ +mpd_pure +const char * +mpd_playlist_get_path(const struct mpd_playlist *playlist); + +/** + * @return the POSIX UTC time stamp of the last modification, or 0 if + * that is unknown + */ +mpd_pure +time_t +mpd_playlist_get_last_modified(const struct mpd_playlist *playlist); + +/** + * Begins parsing a new playlist. + * + * @param pair the first pair in this playlist (name must be + * "playlist") + * @return the new #mpd_entity object, or NULL on error (out of + * memory, or pair name is not "playlist") + */ +mpd_malloc +struct mpd_playlist * +mpd_playlist_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_playlist object. + * + * @return true if the pair was parsed and added to the playlist (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next playlist + */ +bool +mpd_playlist_feed(struct mpd_playlist *playlist, const struct mpd_pair *pair); + +/** + * Obtain a list of stored playlists. + * + * @param connection the connection to MPD + * @return true on success, false on error + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_list_playlists(struct mpd_connection *connection); + +/** + * Receives the next playlist from the MPD server. + * + * @return a #mpd_playlist object, or NULL on error or if the playlist list is + * finished + */ +mpd_malloc +struct mpd_playlist * +mpd_recv_playlist(struct mpd_connection *connection); + +/** + * List the content of a stored playlist. + * + * @param connection the connection to MPD + * @param name the name of the playlist + * @return true on success, false on error + */ +bool +mpd_send_list_playlist(struct mpd_connection *connection, const char *name); + +/** + * List the content, with full metadata, of a stored playlist. + * + * @param connection the connection to MPD + * @param name the name of the playlist + * @return true on success, false on error + */ +bool +mpd_send_list_playlist_meta(struct mpd_connection *connection, const char *name); + +bool +mpd_send_playlist_clear(struct mpd_connection *connection, const char *name); + +bool +mpd_run_playlist_clear(struct mpd_connection *connection, const char *name); + +bool +mpd_send_playlist_add(struct mpd_connection *connection, const char *name, + const char *path); + +bool +mpd_run_playlist_add(struct mpd_connection *connection, + const char *name, const char *path); + +bool +mpd_send_playlist_move(struct mpd_connection *connection, const char *name, + unsigned from, unsigned to); + +bool +mpd_send_playlist_delete(struct mpd_connection *connection, const char *name, + unsigned pos); + +bool +mpd_run_playlist_delete(struct mpd_connection *connection, + const char *name, unsigned pos); + +bool +mpd_send_save(struct mpd_connection *connection, const char *name); + +bool +mpd_run_save(struct mpd_connection *connection, const char *name); + +bool +mpd_send_load(struct mpd_connection *connection, const char *name); + +bool +mpd_run_load(struct mpd_connection *connection, const char *name); + +bool +mpd_send_rename(struct mpd_connection *connection, + const char *from, const char *to); + +bool +mpd_run_rename(struct mpd_connection *connection, + const char *from, const char *to); + +bool +mpd_send_rm(struct mpd_connection *connection, const char *name); + +bool +mpd_run_rm(struct mpd_connection *connection, const char *name); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/protocol.h b/1_6.h12_dev/libmpdclient/include/mpd/protocol.h new file mode 100644 index 0000000..6585d19 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/protocol.h @@ -0,0 +1,57 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h or + * mpd/parser.h instead. + */ + +#ifndef MPD_PROTOCOL_H +#define MPD_PROTOCOL_H + +enum mpd_server_error { + MPD_SERVER_ERROR_UNK = -1, + + MPD_SERVER_ERROR_NOT_LIST = 1, + MPD_SERVER_ERROR_ARG = 2, + MPD_SERVER_ERROR_PASSWORD = 3, + MPD_SERVER_ERROR_PERMISSION = 4, + MPD_SERVER_ERROR_UNKNOWN_CMD = 5, + + MPD_SERVER_ERROR_NO_EXIST = 50, + MPD_SERVER_ERROR_PLAYLIST_MAX = 51, + MPD_SERVER_ERROR_SYSTEM = 52, + MPD_SERVER_ERROR_PLAYLIST_LOAD = 53, + MPD_SERVER_ERROR_UPDATE_ALREADY = 54, + MPD_SERVER_ERROR_PLAYER_SYNC = 55, + MPD_SERVER_ERROR_EXIST = 56, +}; + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/queue.h b/1_6.h12_dev/libmpdclient/include/mpd/queue.h new file mode 100644 index 0000000..357a8e0 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/queue.h @@ -0,0 +1,542 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Manipulate the queue (current playlist). + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_QUEUE_H +#define MPD_QUEUE_H + +#include + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Sends the "playlistinfo" command: list all songs in the queue + * including meta information. + */ +bool +mpd_send_list_queue_meta(struct mpd_connection *connection); + +/** + * Like mpd_send_list_queue_meta(), but specifies a (position) range. + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_list_queue_range_meta(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Requests information (including tags) about one song in the + * playlist (command "playlistid"). + * + * @param connection the connection to MPD + * @param pos the position of the requested song + */ +bool +mpd_send_get_queue_song_pos(struct mpd_connection *connection, unsigned pos); + +/** + * Shortcut for mpd_send_get_queue_song_pos() and mpd_recv_song(). + * + * @param connection the connection to MPD + * @param pos the position of the requested song + * @return the song at the specified position, or NULL on error + */ +mpd_malloc +struct mpd_song * +mpd_run_get_queue_song_pos(struct mpd_connection *connection, unsigned pos); + +/** + * Requests information (including tags) about one song in the + * playlist (command "playlistid"). + * + * @param connection the connection to MPD + * @param id the id of the requested song + */ +bool +mpd_send_get_queue_song_id(struct mpd_connection *connection, unsigned id); + +/** + * Shortcut for mpd_send_get_queue_song_id() and mpd_recv_song(). + * + * @param connection the connection to MPD + * @param id the id of the requested song + * @return the song at the specified id, or NULL on error + */ +mpd_malloc +struct mpd_song * +mpd_run_get_queue_song_id(struct mpd_connection *connection, unsigned id); + +/** + * Request the queue changes from MPD since the specified version, + * including tags. The MPD command is called "plchanges". + * + * @param connection the connection to MPD + * @param version The playlist version you want the diff with. + * @return true on success, false on error + */ +bool +mpd_send_queue_changes_meta(struct mpd_connection *connection, + unsigned version); + +/** + * A more bandwidth efficient version of the + * mpd_send_queue_changes_meta(). It only returns the position and id + * of changed songs. The MPD command is called "plchangesposid". + * + * @param connection A valid and connected mpd_connection. + * @param version The playlist version you want the diff with. + * @return true on success, false on error + */ +bool +mpd_send_queue_changes_brief(struct mpd_connection *connection, + unsigned version); + +/** + * Receives a response element of mpd_send_queue_changes_brief(). + * + * @param connection A valid and connected mpd_connection. + * @param position_r reference to the position of the changed song + * @param id_r reference to the id of the changed song + * @return true on success, false on error or if there are no more + * changes in this response + */ +bool +mpd_recv_queue_change_brief(struct mpd_connection *connection, + unsigned *position_r, unsigned *id_r); + +/** + * Appends a song to the playlist. + */ +bool +mpd_send_add(struct mpd_connection *connection, const char *file); + +/** + * Shortcut for mpd_send_add() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param uri the URI of the song to be added + * @return true on success, false on error + */ +bool +mpd_run_add(struct mpd_connection *connection, const char *uri); + +/** + * Appends a song to the playlist, and returns its id. + */ +bool +mpd_send_add_id(struct mpd_connection *connection, const char *file); + +/** + * Inserts a song into the playlist, and returns its id. + * + * @param connection the connection to MPD + * @param uri the URI of the song to be added + * @param to the desired position of the song + * @return true on success, false on error + */ +bool +mpd_send_add_id_to(struct mpd_connection *connection, const char *uri, + unsigned to); + +/** + * Returns the id of the new song in the playlist. To be called after + * mpd_send_add_id(). + * + * @return the new song id, -1 on error or if MPD did not send an id + */ +int +mpd_recv_song_id(struct mpd_connection *connection); + +/** + * Executes the "addid" command and reads the response. + * + * @return the new song id, -1 on error or if MPD did not send an id + */ +int +mpd_run_add_id(struct mpd_connection *connection, const char *file); + +/** + * Executes the "addid" command and reads the response. + * + * @param connection the connection to MPD + * @param uri the URI of the song to be added + * @param to the desired position of the song + * @return the new song id, -1 on error or if MPD did not send an id + */ +int +mpd_run_add_id_to(struct mpd_connection *connection, const char *uri, + unsigned to); + +/** + * Deletes a song from the queue. + * + * @param connection the connection to MPD + * @param pos the position of the song to be deleted + */ +bool +mpd_send_delete(struct mpd_connection *connection, unsigned pos); + +/** + * Shortcut for mpd_send_delete() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param pos the position of the song to be deleted + * @return true on success, false on error + */ +bool +mpd_run_delete(struct mpd_connection *connection, unsigned pos); + +/** + * Deletes songs from the queue. + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_delete_range(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Shortcut for mpd_send_delete_range() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_run_delete_range(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Deletes a song from the queue. + * + * @param connection the connection to MPD + * @param id the id of the song to be deleted + */ +bool +mpd_send_delete_id(struct mpd_connection *connection, unsigned id); + +/** + * Shortcut for mpd_send_delete_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param id the id of the song to be deleted + * @return true on success, false on error + */ +bool +mpd_run_delete_id(struct mpd_connection *connection, unsigned id); + +/** + * Shuffles the queue. + * + * @param connection the connection to MPD + */ +bool +mpd_send_shuffle(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_shuffle() and mpd_response_finish(). + * + * @param connection the connection to MPD + */ +bool +mpd_run_shuffle(struct mpd_connection *connection); + +/** + * Shuffles a range within the queue. + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_shuffle_range(struct mpd_connection *connection, unsigned start, unsigned end); + +/** + * Shortcut for mpd_send_shuffle_range() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_run_shuffle_range(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Clear the queue. + * + * @param connection the connection to MPD + */ +bool +mpd_send_clear(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_clear() and mpd_response_finish(). + * + * @param connection the connection to MPD + */ +bool +mpd_run_clear(struct mpd_connection *connection); + +/** + * Moves a song within the queue. + * + * @param connection the connection to MPD + * @param from the source song position + * @param to the new position of the song + */ +bool +mpd_send_move(struct mpd_connection *connection, unsigned from, unsigned to); + +/** + * Shortcut for mpd_send_move() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param from the source song position + * @param to the new position of the song + */ +bool +mpd_run_move(struct mpd_connection *connection, unsigned from, unsigned to); + +/** + * Moves a song within the queue. + * + * @param connection the connection to MPD + * @param from the source song id + * @param to the new position of the song (not an id!) + */ +bool +mpd_send_move_id(struct mpd_connection *connection, unsigned from, unsigned to); + +/** + * Shortcut for mpd_send_move_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param from the source song id + * @param to the new position of the song (not an id!) + */ +bool +mpd_run_move_id(struct mpd_connection *connection, unsigned from, unsigned to); + +/** + * Moves a range of songs within the queue. + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @param to the new position of the song range + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_move_range(struct mpd_connection *connection, + unsigned start, unsigned end, unsigned to); + +/** + * Shortcut for mpd_send_move_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @param to the new position of the song range + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_run_move_range(struct mpd_connection *connection, + unsigned start, unsigned end, unsigned to); + +/** + * Swap the position of two songs in the queue. + * + * @param connection the connection to MPD + * @param pos1 the position of one song + * @param pos2 the position of the other song + */ +bool +mpd_send_swap(struct mpd_connection *connection, unsigned pos1, unsigned pos2); + +/** + * Shortcut for mpd_send_swap() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param pos1 the position of one song + * @param pos2 the position of the other song + */ +bool +mpd_run_swap(struct mpd_connection *connection, unsigned pos1, unsigned pos2); + +/** + * Swap the position of two songs in the queue. + * + * @param connection the connection to MPD + * @param id1 the id of one song + * @param id2 the id of the other song + */ +bool +mpd_send_swap_id(struct mpd_connection *connection, unsigned id1, unsigned id2); + +/** + * Shortcut for mpd_send_swap_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param id1 the id of one song + * @param id2 the id of the other song + */ +bool +mpd_run_swap_id(struct mpd_connection *connection, unsigned id1, unsigned id2); + +/** + * Change the priority of the specified song. + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param position the position of the song + * + * @since libmpdclient 2.6 + */ +bool +mpd_send_prio(struct mpd_connection *connection, int priority, + unsigned position); + +/** + * Shortcut for mpd_send_prio() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param position the position of the song + * + * @since libmpdclient 2.6 + */ +bool +mpd_run_prio(struct mpd_connection *connection, int priority, + unsigned position); + +/** + * Change the priority of a song range. + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * + * @since libmpdclient 2.6 + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_prio_range(struct mpd_connection *connection, int priority, + unsigned start, unsigned end); + +/** + * Shortcut for mpd_send_prio_range() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * + * @since libmpdclient 2.6 + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_run_prio_range(struct mpd_connection *connection, int priority, + unsigned start, unsigned end); + +/** + * Change the priority of the specified song. + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param id the id of the song + * + * @since libmpdclient 2.6 + */ +bool +mpd_send_prio_id(struct mpd_connection *connection, int priority, + unsigned id); + +/** + * Shortcut for mpd_send_prio_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param id the id of the song + * + * @since libmpdclient 2.6 + */ +bool +mpd_run_prio_id(struct mpd_connection *connection, int priority, + unsigned id); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/recv.h b/1_6.h12_dev/libmpdclient/include/mpd/recv.h new file mode 100644 index 0000000..a078162 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/recv.h @@ -0,0 +1,88 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Receiving response lines from MPD. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_RECV_H +#define MPD_RECV_H + +#include + +struct mpd_pair; +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Reads the next #mpd_pair from the server. Returns NULL if there + * are no more pairs. + * + * The caller must dispose the pair with either mpd_return_pair() or + * mpd_enqueue_pair(). + */ +mpd_malloc +struct mpd_pair * +mpd_recv_pair(struct mpd_connection *connection); + +/** + * Same as mpd_recv_pair(), but discards all pairs not matching the + * specified name. + */ +mpd_malloc +struct mpd_pair * +mpd_recv_pair_named(struct mpd_connection *connection, const char *name); + +/** + * Indicates that the pair object is not needed anymore, and can be + * freed. You must free the previous #mpd_pair object before calling + * mpd_recv_pair() again. + */ +void +mpd_return_pair(struct mpd_connection *connection, struct mpd_pair *pair); + +/** + * Unreads a #mpd_pair. You may unread only the one pair you just got + * from mpd_recv_pair(). Unreading the "NULL" pair is allowed, to + * allow you to call mpd_recv_pair() again at the end of a response. + */ +void +mpd_enqueue_pair(struct mpd_connection *connection, struct mpd_pair *pair); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/response.h b/1_6.h12_dev/libmpdclient/include/mpd/response.h new file mode 100644 index 0000000..9627da8 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/response.h @@ -0,0 +1,72 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_RESPONSE_H +#define MPD_RESPONSE_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Finishes the response and checks if the command was successful. If + * there are data pairs left, they are discarded. + * + * @return true on success, false on error + */ +bool +mpd_response_finish(struct mpd_connection *connection); + +/** + * Finishes the response of the current list command. If there are + * data pairs left, they are discarded. + * + * @return true on success, false on error + */ +bool +mpd_response_next(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/search.h b/1_6.h12_dev/libmpdclient/include/mpd/search.h new file mode 100644 index 0000000..bb137d2 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/search.h @@ -0,0 +1,254 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Search songs in the database or the queue. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_DB_H +#define MPD_DB_H + +#include +#include +#include + +#include +#include + +/** + * This type is not yet used, it is reserved for a future protocol + * extension which will allow us to specify a comparison operator for + * constraints. + */ +enum mpd_operator { + /** + * The default search operator. If "exact" was passed as + * "true", then it means "full string comparison"; if false, + * then it means "search for substring". + */ + MPD_OPERATOR_DEFAULT, +}; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Search for songs in the database. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the search command with mpd_search_commit(), and read the + * response items with mpd_recv_song(). + * + * @param connection the connection to MPD + * @param exact if to match exact + * @return true on success, false on error + */ +bool +mpd_search_db_songs(struct mpd_connection *connection, bool exact); + +/** + * Search for songs in the database and adds the result to the queue. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the search command with mpd_search_commit(). + * + * @param connection the connection to MPD + * @param exact if to match exact (only "true" supported by MPD 0.16) + * @return true on success, false on error + */ +bool +mpd_search_add_db_songs(struct mpd_connection *connection, bool exact); + +/** + * Search for songs in the queue. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the search command with mpd_search_commit(), and read the + * response items with mpd_recv_song(). + * + * @param connection the connection to MPD + * @param exact if to match exact + * @return true on success, false on error + */ +bool +mpd_search_queue_songs(struct mpd_connection *connection, bool exact); + +/** + * Obtains a list of unique tag values from the database. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the search command with mpd_search_commit(), and read the + * response items with mpd_recv_pair_tag(). + * + * @param connection the connection to MPD + * @param type The type of the tags to search for + * @return true on success, false on error + */ +bool +mpd_search_db_tags(struct mpd_connection *connection, enum mpd_tag_type type); + +/** + * Gathers statistics on a set of songs in the database. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the command with mpd_search_commit(), and read the response + * with mpd_recv_stats(). + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool mpd_count_db_songs(struct mpd_connection *connection); + +/** + * Limit the search to a certain directory. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param value the URI relative to the music directory + * @return true on success, false on error + * + * @since libmpdclient 2.9 + */ +bool +mpd_search_add_base_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value); + +/** + * Add a constraint on the song's URI. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param value The value of the constraint + * @return true on success, false on error + */ +bool +mpd_search_add_uri_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value); + +/** + * Add a constraint to a search limiting the value of a tag. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param type The tag type of the constraint + * @param value The value of the constraint + * @return true on success, false on error + */ +bool +mpd_search_add_tag_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + enum mpd_tag_type type, + const char *value); + +/** + * Add a constraint to a search, search for a value in any tag. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param value The value of the constraint + * @return true on success, false on error + */ +bool +mpd_search_add_any_tag_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value); + +/** + * Limit the search to files modified after the given time stamp. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param value the reference time stamp + * @return true on success, false on error + * + * @since libmpdclient 2.10 + */ +bool +mpd_search_add_modified_since_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + time_t value); + +/** + * Request only a portion of the result set. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param type The tag type of the constraint + * @param value The value of the constraint + * @return true on success, false on error + * + * @since libmpdclient 2.10 + */ +bool +mpd_search_add_window(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Starts the real search with constraints added with + * mpd_search_add_constraint(). + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_search_commit(struct mpd_connection *connection); + +/** + * Cancels the search request before you have called + * mpd_search_commit(). Call this to clear the current search + * request. + * + * @param connection the connection to MPD + */ +void +mpd_search_cancel(struct mpd_connection *connection); + +/** + * Same as mpd_recv_pair_named(), but the pair name is specified as + * #mpd_tag_type. + * + * @param connection the connection to MPD + * @param type the tag type you are looking for + * @return a pair, or NULL on error or if there are no more matching + * pairs in this response + */ +mpd_malloc +struct mpd_pair * +mpd_recv_pair_tag(struct mpd_connection *connection, enum mpd_tag_type type); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/send.h b/1_6.h12_dev/libmpdclient/include/mpd/send.h new file mode 100644 index 0000000..35977b1 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/send.h @@ -0,0 +1,64 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef LIBMPDCLIENT_SEND_H +#define LIBMPDCLIENT_SEND_H + +#include + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Sends a command with arguments to the MPD server. The argument + * list must be terminated with a NULL. + * + * @param connection the connection to the MPD server + * @param command the command to be sent + * @return true on success + */ +mpd_sentinel +bool +mpd_send_command(struct mpd_connection *connection, const char *command, ...); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/settings.h b/1_6.h12_dev/libmpdclient/include/mpd/settings.h new file mode 100644 index 0000000..10a2825 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/settings.h @@ -0,0 +1,123 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Library to determine connection settings prior to calling + * mpd_connection_new(). + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_SETTINGS_H +#define MPD_SETTINGS_H + +#include + +/** + * \struct mpd_settings + * + * An object which describes configurable connection settings. + */ +struct mpd_settings; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Creates a new #mpd_settings object. The values which are not + * passed by the caller are taken from environment variables. + * + * @param host the server's host name, IP address or Unix socket path. + * An address starting with '@' denotes an "abstract socket". + * NULL is allowed here, which will connect to the default host + * (using the MPD_HOST environment variable if present). + * @param port the TCP port to connect to, 0 for default port (using + * the MPD_PORT environment variable if present). If "host" is a Unix + * socket path, this parameter is ignored. + * @param timeout_ms the timeout in milliseconds, 0 for the default + * timeout (the environment variable MPD_TIMEOUT may specify a timeout + * in seconds) + * @param reserved reserved for future use, pass NULL + * @param password the password, or NULL to use the default (MPD_HOST + * before "@") + * @return a #mpd_settings object or NULL if out of memory + * + * @since libmpdclient 2.4 + */ +struct mpd_settings * +mpd_settings_new(const char *host, unsigned port, unsigned timeout_ms, + const char *reserved, const char *password); + +/** + * Releases a #mpd_settings object. + * + * @since libmpdclient 2.4 + */ +void +mpd_settings_free(struct mpd_settings *settings); + +/** + * Returns the host name (without password/port), or NULL if unknown. + * + * @since libmpdclient 2.4 + */ +const char * +mpd_settings_get_host(const struct mpd_settings *settings); + +/** + * Returns the port number, or 0 if not applicable. + * + * @since libmpdclient 2.4 + */ +unsigned +mpd_settings_get_port(const struct mpd_settings *settings); + +/** + * Returns the timeout in milliseconds, or 0 if unknown. + * + * @since libmpdclient 2.4 + */ +unsigned +mpd_settings_get_timeout_ms(const struct mpd_settings *settings); + +/** + * Returns the password, or NULL if none was configured. + * + * @since libmpdclient 2.4 + */ +const char * +mpd_settings_get_password(const struct mpd_settings *settings); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/song.h b/1_6.h12_dev/libmpdclient/include/mpd/song.h new file mode 100644 index 0000000..bc9f377 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/song.h @@ -0,0 +1,222 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_SONG_H +#define MPD_SONG_H + +#include +#include + +#include +#include + +struct mpd_pair; +struct mpd_connection; + +/** + * \struct mpd_song + * + * An opaque representation for a song in MPD's database or playlist. + * Use the functions provided by this header to access the object's + * attributes. + */ +struct mpd_song; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Free memory allocated by the #mpd_song object. + */ +void mpd_song_free(struct mpd_song *song); + +/** + * Duplicates the specified #mpd_song object. + * + * @returns the copy, or NULL if out of memory + */ +mpd_malloc +struct mpd_song * +mpd_song_dup(const struct mpd_song *song); + +/** + * Returns the URI of the song. This is either a path relative to the + * MPD music directory (without leading slash), or an URL with a + * scheme, e.g. a HTTP URL for a radio stream. + */ +mpd_pure +const char * +mpd_song_get_uri(const struct mpd_song *song); + +/** + * Queries a tag value. + * + * @param song the song object + * @param type the tag type + * @param idx pass 0 to get the first value for this tag type. This + * argument may be used to iterate all values, until this function + * returns NULL + * @return the tag value, or NULL if this tag type (or this index) + * does not exist + */ +mpd_pure +const char * +mpd_song_get_tag(const struct mpd_song *song, + enum mpd_tag_type type, unsigned idx); + +/** + * Returns the duration of this song in seconds. 0 means the duration + * is unknown. + */ +mpd_pure +unsigned +mpd_song_get_duration(const struct mpd_song *song); + +/** + * Returns the duration of this song in milliseconds. 0 means the + * duration is unknown. + * + * @since libmpdclient 2.10 + */ +mpd_pure +unsigned +mpd_song_get_duration_ms(const struct mpd_song *song); + +/** + * Returns the start of the virtual song within the physical file in + * seconds. + * + * @since libmpdclient 2.3 + */ +mpd_pure +unsigned +mpd_song_get_start(const struct mpd_song *song); + +/** + * Returns the end of the virtual song within the physical file in + * seconds. Zero means that the physical song file is played to the + * end. + * + * @since libmpdclient 2.3 + */ +mpd_pure +unsigned +mpd_song_get_end(const struct mpd_song *song); + +/** + * @return the POSIX UTC time stamp of the last modification, or 0 if + * that is unknown + */ +mpd_pure +time_t +mpd_song_get_last_modified(const struct mpd_song *song); + +/** + * Sets the position within the queue. This value is not used for + * songs which are not in the queue. + * + * This function is useful when applying the values returned by + * mpd_recv_queue_change_brief(). + */ +void +mpd_song_set_pos(struct mpd_song *song, unsigned pos); + +/** + * Returns the position of this song in the queue. The value is + * undefined if you did not obtain this song from the queue. + */ +mpd_pure +unsigned +mpd_song_get_pos(const struct mpd_song *song); + +/** + * Returns the id of this song in the playlist. The value is + * undefined if you did not obtain this song from the queue. + */ +mpd_pure +unsigned +mpd_song_get_id(const struct mpd_song *song); + +/** + * Returns the priority of this song in the playlist. The value is + * undefined if you did not obtain this song from the queue. + * + * @since libmpdclient 2.8 + */ +mpd_pure +unsigned +mpd_song_get_prio(const struct mpd_song *song); + +/** + * Begins parsing a new song. + * + * @param pair the first pair in this song (name must be "file") + * @return the new #mpd_entity object, or NULL on error (out of + * memory, or pair name is not "file") + */ +mpd_malloc +struct mpd_song * +mpd_song_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_song object. + * + * @return true if the pair was parsed and added to the song (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next song + */ +bool +mpd_song_feed(struct mpd_song *song, const struct mpd_pair *pair); + +/** + * Receives the next song from the MPD server. + * + * @return a #mpd_song object, or NULL on error or if the song list is + * finished + */ +mpd_malloc +struct mpd_song * +mpd_recv_song(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/stats.h b/1_6.h12_dev/libmpdclient/include/mpd/stats.h new file mode 100644 index 0000000..a8a1fc3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/stats.h @@ -0,0 +1,163 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_STATS_H +#define MPD_STATS_H + +#include + +#include + +struct mpd_connection; +struct mpd_pair; + +/** + * \struct mpd_stats + * + * An opaque object representing MPD's response to the "stats" + * command. To release this object, call mpd_stats_free(). + */ +struct mpd_stats; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Send the "stats" command to MPD. + * + * @return true on success + */ +bool +mpd_send_stats(struct mpd_connection *connection); + +/** + * Begins parsing server stats: creates a new empty #mpd_stats object. + * Free it with mpd_stats_free(). + * + * @return the newly allocated #mpd_stats object, or NULL if out of + * memory + */ +mpd_malloc +struct mpd_stats * +mpd_stats_begin(void); + +/** + * Parses the pair, adding its information to the specified #mpd_stats + * object. + */ +void +mpd_stats_feed(struct mpd_stats *status, const struct mpd_pair *pair); + +/** + * Reads the "stats" response from MPD. + * + * @return a #mpd_stats object, or NULL on error + */ +mpd_malloc +struct mpd_stats * +mpd_recv_stats(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_stats() and mpd_recv_stats(). + */ +mpd_malloc +struct mpd_stats * +mpd_run_stats(struct mpd_connection *connection); + +/** + * Frees a #mpd_stats object. + */ +void mpd_stats_free(struct mpd_stats * stats); + +/** + * @return the number of distinct artists in MPD's database, or 0 if + * unknown + */ +mpd_pure +unsigned +mpd_stats_get_number_of_artists(const struct mpd_stats * stats); + +/** + * @return the number of distinct album names in MPD's database, or 0 + * if unknown + */ +mpd_pure +unsigned +mpd_stats_get_number_of_albums(const struct mpd_stats * stats); + +/** + * @return the total number of song files in MPD's database, or 0 if + * unknown + */ +mpd_pure +unsigned +mpd_stats_get_number_of_songs(const struct mpd_stats * stats); + +/** + * @return the uptime of MPD in seconds, or 0 if unknown + */ +mpd_pure +unsigned long mpd_stats_get_uptime(const struct mpd_stats * stats); + +/** + * @return the UNIX time stamp of the last database update, or 0 if + * unknown + */ +mpd_pure +unsigned long mpd_stats_get_db_update_time(const struct mpd_stats * stats); + +/** + * @return the accumulated time MPD was playing music since the + * process was started, or 0 if unknown + */ +mpd_pure +unsigned long mpd_stats_get_play_time(const struct mpd_stats * stats); + +/** + * @return the accumulated duration of all songs in the database, or 0 + * if unknown + */ +mpd_pure +unsigned long mpd_stats_get_db_play_time(const struct mpd_stats * stats); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/status.h b/1_6.h12_dev/libmpdclient/include/mpd/status.h new file mode 100644 index 0000000..24b3ad9 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/status.h @@ -0,0 +1,309 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_STATUS_H +#define MPD_STATUS_H + +#include + +#include + +/** + * MPD's playback state. + */ +enum mpd_state { + /** no information available */ + MPD_STATE_UNKNOWN = 0, + + /** not playing */ + MPD_STATE_STOP = 1, + + /** playing */ + MPD_STATE_PLAY = 2, + + /** playing, but paused */ + MPD_STATE_PAUSE = 3, +}; + +struct mpd_connection; +struct mpd_pair; +struct mpd_audio_format; + +/** + * \struct mpd_status + * + * Holds information about MPD's status. + */ +struct mpd_status; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Begins parsing the server status: creates a new empty #mpd_status + * object. Free it with mpd_status_free(). + * + * @return the newly allocated #mpd_status object, or NULL if out of + * memory + */ +mpd_malloc +struct mpd_status * +mpd_status_begin(void); + +/** + * Parses the pair, adding its information to the specified + * #mpd_status object. + */ +void +mpd_status_feed(struct mpd_status *status, const struct mpd_pair *pair); + +/** + * Sends the "status" command to MPD. Call mpd_recv_status() to read + * the response. + * + * @return true on success + */ +bool +mpd_send_status(struct mpd_connection *connection); + +/** + * Receives a #mpd_status object from the server. + * + * @return the received #mpd_status object, or NULL on error + */ +mpd_malloc +struct mpd_status * +mpd_recv_status(struct mpd_connection *connection); + +/** + * Executes the "status" command and reads the response. + * + * @return the #mpd_status object returned by the server, or NULL on + * error + */ +mpd_malloc +struct mpd_status * +mpd_run_status(struct mpd_connection *connection); + +/** + * Releases a #mpd_status object. + */ +void mpd_status_free(struct mpd_status * status); + +/** + * Returns the current volume: 0-100, or -1 when there is no volume + * support. + */ +mpd_pure +int mpd_status_get_volume(const struct mpd_status *status); + +/** + * Returns true if repeat mode is on. + */ +mpd_pure +bool +mpd_status_get_repeat(const struct mpd_status *status); + +/** + * Returns true if random mode is on. + */ +mpd_pure +bool +mpd_status_get_random(const struct mpd_status *status); + +/** + * Returns true if single mode is on. + */ +mpd_pure +bool +mpd_status_get_single(const struct mpd_status *status); + +/** + * Returns true if consume mode is on. + */ +mpd_pure +bool +mpd_status_get_consume(const struct mpd_status *status); + +/** + * Returns the number of songs in the queue. If MPD did not + * specify that, this function returns 0. + */ +mpd_pure +unsigned +mpd_status_get_queue_length(const struct mpd_status *status); + +/** + * Returns queue version number. You may use this to determine + * when the queue has changed since you have last queried it. + */ +mpd_pure +unsigned +mpd_status_get_queue_version(const struct mpd_status *status); + +/** + * Returns the state of the player: either stopped, playing or paused. + */ +mpd_pure +enum mpd_state +mpd_status_get_state(const struct mpd_status *status); + +/** + * Returns crossfade setting in seconds. 0 means crossfading is + * disabled. + */ +mpd_pure +unsigned +mpd_status_get_crossfade(const struct mpd_status *status); + +/** + * Returns mixrampdb setting in db. + * + * @since libmpdclient 2.2 + */ +mpd_pure +float +mpd_status_get_mixrampdb(const struct mpd_status *status); + +/** + * Returns mixrampdelay setting in seconds. Negative means mixramp is + * disabled. + * + * @since libmpdclient 2.2 + */ +mpd_pure +float +mpd_status_get_mixrampdelay(const struct mpd_status *status); + +/** + * Returns the position of the currently playing song in the queue + * (beginning with 0) if a song is currently selected (always the case when + * state is PLAY or PAUSE). If there is no current song, -1 is returned. + */ +mpd_pure +int +mpd_status_get_song_pos(const struct mpd_status *status); + +/** + * Returns the id of the current song. If there is no current song, + * -1 is returned. + */ +mpd_pure +int +mpd_status_get_song_id(const struct mpd_status *status); + +/** + * The same as mpd_status_get_next_song_pos, but for the next song to be + * played. + * + * @since libmpdclient 2.7 + */ +mpd_pure +int +mpd_status_get_next_song_pos(const struct mpd_status *status); + +/** + * Returns the id of the next song to be played. If it is not known, -1 is + * returned. + * + * @since libmpdclient 2.7 + */ +mpd_pure +int +mpd_status_get_next_song_id(const struct mpd_status *status); + +/** + * Returns time in seconds that have elapsed in the currently playing/paused + * song + */ +mpd_pure +unsigned +mpd_status_get_elapsed_time(const struct mpd_status *status); + +/** + * Returns time in milliseconds that have elapsed in the currently + * playing/paused song. + * + * @since libmpdclient 2.1 + */ +mpd_pure +unsigned +mpd_status_get_elapsed_ms(const struct mpd_status *status); + +/** + * Returns the length in seconds of the currently playing/paused song + */ +mpd_pure +unsigned +mpd_status_get_total_time(const struct mpd_status *status); + +/** + * Returns current bit rate in kbps. 0 means unknown. + */ +mpd_pure +unsigned +mpd_status_get_kbit_rate(const struct mpd_status *status); + +/** + * Returns audio format which MPD is currently playing. May return + * NULL if MPD is not playing or if the audio format is unknown. + */ +mpd_pure +const struct mpd_audio_format * +mpd_status_get_audio_format(const struct mpd_status *status); + +/** + * Returns 1 if mpd is updating, 0 otherwise + */ +mpd_pure +unsigned +mpd_status_get_update_id(const struct mpd_status *status); + +/** + * Returns the error message + */ +mpd_pure +const char * +mpd_status_get_error(const struct mpd_status *status); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/sticker.h b/1_6.h12_dev/libmpdclient/include/mpd/sticker.h new file mode 100644 index 0000000..b11966f --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/sticker.h @@ -0,0 +1,200 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Manipulate stickers. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_STICKER_H +#define MPD_STICKER_H + +#include + +#include +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Adds or replaces a sticker value. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @param value the value of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_set(struct mpd_connection *connection, const char *type, + const char *uri, const char *name, const char *value); + +/** + * Shortcut for mpd_send_sticker_set() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @param value the value of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_run_sticker_set(struct mpd_connection *connection, const char *type, + const char *uri, const char *name, const char *value); + +/** + * Deletes a sticker value. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_delete(struct mpd_connection *connection, const char *type, + const char *uri, const char *name); + +/** + * Shortcut for mpd_send_sticker_delete() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_run_sticker_delete(struct mpd_connection *connection, const char *type, + const char *uri, const char *name); + +/** + * Queries a sticker value. Call mpd_recv_sticker() to receive the response. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_get(struct mpd_connection *connection, const char *type, + const char *uri, const char *name); + +/** + * Obtains a list of all stickers of the specified object. Call + * mpd_recv_sticker() to receive each response item. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_list(struct mpd_connection *connection, const char *type, + const char *uri); + +/** + * Searches for stickers with the specified name. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param base_uri the base URI to start the search, e.g. a directory; + * NULL to search for all objects of the specified type + * @param name the name of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_find(struct mpd_connection *connection, const char *type, + const char *base_uri, const char *name); + +/** + * Parse a sticker input line in the form "name=value". + * + * @param input the input value, the value from a received pair named + * "sticker" + * @param name_length_r the length of the name (starting at the + * beginning of the input string) is returned here + * @return a pointer to the sticker value, or NULL on error + * + * @since libmpdclient 2.1 + */ +const char * +mpd_parse_sticker(const char *input, size_t *name_length_r); + +/** + * Receives the next sticker. You have to free the return value with + * mpd_return_sticker(). + * + * @param connection the connection to MPD + * @return a #mpd_pair object on success, NULL on end of response or + * error + * + * @since libmpdclient 2.1 + */ +mpd_malloc +struct mpd_pair * +mpd_recv_sticker(struct mpd_connection *connection); + +/** + * Free the pair returned by mpd_recv_sticker(). + * + * @since libmpdclient 2.1 + */ +void +mpd_return_sticker(struct mpd_connection *connection, struct mpd_pair *pair); + +#ifdef __cplusplus +} +#endif + +#endif /* MPD_STICKER_H */ + diff --git a/1_6.h12_dev/libmpdclient/include/mpd/tag.h b/1_6.h12_dev/libmpdclient/include/mpd/tag.h new file mode 100644 index 0000000..181cfc5 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/tag.h @@ -0,0 +1,106 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef LIBMPDCLIENT_TAG_H +#define LIBMPDCLIENT_TAG_H + +/** + * @since libmpdclient 2.10 added support for #MPD_TAG_MUSICBRAINZ_RELEASETRACKID. + * @since libmpdclient 2.11 added support for #MPD_TAG_ARTIST_SORT and #MPD_TAG_ALBUM_ARTIST_SORT. + */ +enum mpd_tag_type +{ + /** + * Special value returned by mpd_tag_name_parse() when an + * unknown name was passed. + */ + MPD_TAG_UNKNOWN = -1, + + MPD_TAG_ARTIST, + MPD_TAG_ARTIST_SORT, + MPD_TAG_ALBUM, + MPD_TAG_ALBUM_ARTIST, + MPD_TAG_ALBUM_ARTIST_SORT, + MPD_TAG_TITLE, + MPD_TAG_TRACK, + MPD_TAG_NAME, + MPD_TAG_GENRE, + MPD_TAG_DATE, + MPD_TAG_COMPOSER, + MPD_TAG_PERFORMER, + MPD_TAG_COMMENT, + MPD_TAG_DISC, + + MPD_TAG_MUSICBRAINZ_ARTISTID, + MPD_TAG_MUSICBRAINZ_ALBUMID, + MPD_TAG_MUSICBRAINZ_ALBUMARTISTID, + MPD_TAG_MUSICBRAINZ_TRACKID, + MPD_TAG_MUSICBRAINZ_RELEASETRACKID, + + MPD_TAG_COUNT +}; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Looks up the name of the specified tag. + * + * @return the name, or NULL if the tag type is not valid + */ +const char * +mpd_tag_name(enum mpd_tag_type type); + +/** + * Parses a tag name, and returns its #mpd_tag_type value. + * + * @return a #mpd_tag_type value, or MPD_TAG_UNKNOWN if the name was + * not recognized + */ +enum mpd_tag_type +mpd_tag_name_parse(const char *name); + +/** + * Same as mpd_tag_name_parse(), but ignores case. + * + * @return a #mpd_tag_type value, or MPD_TAG_UNKNOWN if the name was + * not recognized + */ +enum mpd_tag_type +mpd_tag_name_iparse(const char *name); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/include/mpd/version.h.in b/1_6.h12_dev/libmpdclient/include/mpd/version.h.in new file mode 100644 index 0000000..9a34c1a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/include/mpd/version.h.in @@ -0,0 +1,58 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_VERSION_H +#define MPD_VERSION_H + +#define LIBMPDCLIENT_MAJOR_VERSION @MAJOR_VERSION@ +#define LIBMPDCLIENT_MINOR_VERSION @MINOR_VERSION@ +#define LIBMPDCLIENT_PATCH_VERSION @PATCH_VERSION@ + +/** + * Preprocessor macro which allows you to check which version of + * libmpdclient you are compiling with. It can be used in + * preprocessor directives. + * + * @return true if this libmpdclient version equals or is newer than + * the specified version number + * @since libmpdclient 2.1 + */ +#define LIBMPDCLIENT_CHECK_VERSION(major, minor, patch) \ + ((major) < LIBMPDCLIENT_MAJOR_VERSION || \ + ((major) == LIBMPDCLIENT_MAJOR_VERSION && \ + ((minor) < LIBMPDCLIENT_MINOR_VERSION || \ + ((minor) == LIBMPDCLIENT_MINOR_VERSION && \ + (patch) <= LIBMPDCLIENT_PATCH_VERSION)))) + +#endif diff --git a/1_6.h12_dev/libmpdclient/libmpdclient.ld b/1_6.h12_dev/libmpdclient/libmpdclient.ld new file mode 100644 index 0000000..c16071b --- /dev/null +++ b/1_6.h12_dev/libmpdclient/libmpdclient.ld @@ -0,0 +1,372 @@ +libmpdclient2 { +global: + /* mpd/async.h */ + mpd_async_new; + mpd_async_free; + mpd_async_get_error; + mpd_async_get_error_message; + mpd_async_get_system_error; + mpd_async_get_fd; + mpd_async_set_keepalive; + mpd_async_events; + mpd_async_io; + mpd_async_send_command_v; + mpd_async_send_command; + mpd_async_recv_line; + + /* mpd/capabilities.h */ + mpd_send_allowed_commands; + mpd_send_disallowed_commands; + mpd_send_list_url_schemes; + mpd_send_list_tag_types; + + /* mpd/connection.h */ + mpd_connection_new; + mpd_connection_new_async; + mpd_connection_free; + mpd_connection_set_keepalive; + mpd_connection_get_settings; + mpd_connection_set_timeout; + mpd_connection_get_fd; + mpd_connection_get_async; + mpd_connection_get_error; + mpd_connection_get_error_message; + mpd_connection_get_server_error; + mpd_connection_get_server_error_location; + mpd_connection_get_system_error; + mpd_connection_clear_error; + mpd_connection_get_server_version; + mpd_connection_cmp_server_version; + + /* mpd/database.h */ + mpd_send_list_all; + mpd_send_list_all_meta; + mpd_send_list_meta; + mpd_send_read_comments; + mpd_send_update; + mpd_send_rescan; + mpd_recv_update_id; + mpd_run_update; + mpd_run_rescan; + + /* mpd/directory.h */ + mpd_directory_dup; + mpd_directory_free; + mpd_directory_get_path; + mpd_directory_get_last_modified; + mpd_directory_begin; + mpd_directory_feed; + mpd_recv_directory; + + /* mpd/entity.h */ + mpd_entity_free; + mpd_entity_get_type; + mpd_entity_get_directory; + mpd_entity_get_song; + mpd_entity_get_playlist; + mpd_entity_begin; + mpd_entity_feed; + mpd_recv_entity; + + /* mpd/idle.h */ + mpd_idle_name; + mpd_idle_name_parse; + mpd_send_idle; + mpd_send_idle_mask; + mpd_send_noidle; + mpd_idle_parse_pair; + mpd_recv_idle; + mpd_run_idle; + mpd_run_idle_mask; + mpd_run_noidle; + + /* mpd/list.h */ + mpd_command_list_begin; + mpd_command_list_end; + + /* mpd/message.h */ + mpd_message_begin; + mpd_message_feed; + mpd_message_free; + mpd_message_get_channel; + mpd_message_get_text; + mpd_send_subscribe; + mpd_run_subscribe; + mpd_send_unsubscribe; + mpd_run_unsubscribe; + mpd_send_send_message; + mpd_run_send_message; + mpd_send_read_messages; + mpd_recv_message; + mpd_send_channels; + + /* mpd/mixer.h */ + mpd_send_set_volume; + mpd_run_set_volume; + mpd_send_change_volume; + mpd_run_change_volume; + + /* mpd/output.h */ + mpd_output_begin; + mpd_output_feed; + mpd_output_free; + mpd_output_get_id; + mpd_output_get_name; + mpd_output_get_enabled; + mpd_send_outputs; + mpd_recv_output; + mpd_send_enable_output; + mpd_run_enable_output; + mpd_send_disable_output; + mpd_run_disable_output; + mpd_send_toggle_output; + mpd_run_toggle_output; + + /* mpd/parser.h */ + mpd_parser_new; + mpd_parser_free; + mpd_parser_feed; + mpd_parser_is_discrete; + mpd_parser_get_server_error; + mpd_parser_get_at; + mpd_parser_get_message; + mpd_parser_get_name; + mpd_parser_get_value; + + /* mpd/password.h */ + mpd_send_password; + mpd_run_password; + + /* mpd/player.h */ + mpd_send_current_song; + mpd_run_current_song; + mpd_send_play; + mpd_run_play; + mpd_send_play_pos; + mpd_run_play_pos; + mpd_send_play_id; + mpd_run_play_id; + mpd_send_stop; + mpd_run_stop; + mpd_send_toggle_pause; + mpd_run_toggle_pause; + mpd_send_pause; + mpd_run_pause; + mpd_send_next; + mpd_run_next; + mpd_send_previous; + mpd_run_previous; + mpd_send_seek_pos; + mpd_run_seek_pos; + mpd_send_seek_id; + mpd_run_seek_id; + mpd_send_repeat; + mpd_run_repeat; + mpd_send_random; + mpd_run_random; + mpd_send_single; + mpd_run_single; + mpd_send_consume; + mpd_run_consume; + mpd_send_crossfade; + mpd_run_crossfade; + mpd_send_mixrampdb; + mpd_run_mixrampdb; + mpd_send_mixrampdelay; + mpd_run_mixrampdelay; + mpd_send_clearerror; + mpd_run_clearerror; + + /* mpd/playlist.h */ + mpd_playlist_free; + mpd_playlist_dup; + mpd_playlist_get_path; + mpd_playlist_get_last_modified; + mpd_playlist_begin; + mpd_playlist_feed; + mpd_send_list_playlists; + mpd_recv_playlist; + mpd_send_list_playlist; + mpd_send_list_playlist_meta; + mpd_send_playlist_clear; + mpd_run_playlist_clear; + mpd_send_playlist_add; + mpd_run_playlist_add; + mpd_send_playlist_move; + mpd_send_playlist_delete; + mpd_run_playlist_delete; + mpd_send_save; + mpd_run_save; + mpd_send_load; + mpd_run_load; + mpd_send_rename; + mpd_run_rename; + mpd_send_rm; + mpd_run_rm; + + /* mpd/queue.h */ + mpd_send_list_queue_meta; + mpd_send_list_queue_range_meta; + mpd_send_get_queue_song_pos; + mpd_run_get_queue_song_pos; + mpd_send_get_queue_song_id; + mpd_run_get_queue_song_id; + mpd_send_queue_changes_meta; + mpd_send_queue_changes_brief; + mpd_recv_queue_change_brief; + mpd_send_add; + mpd_run_add; + mpd_send_add_id; + mpd_send_add_id_to; + mpd_recv_song_id; + mpd_run_add_id; + mpd_run_add_id_to; + mpd_send_delete; + mpd_run_delete; + mpd_send_delete_range; + mpd_run_delete_range; + mpd_send_delete_id; + mpd_run_delete_id; + mpd_send_shuffle; + mpd_run_shuffle; + mpd_send_shuffle_range; + mpd_run_shuffle_range; + mpd_send_clear; + mpd_run_clear; + mpd_send_move; + mpd_run_move; + mpd_send_move_id; + mpd_run_move_id; + mpd_send_move_range; + mpd_run_move_range; + mpd_send_swap; + mpd_run_swap; + mpd_send_swap_id; + mpd_run_swap_id; + mpd_send_prio; + mpd_run_prio; + mpd_send_prio_range; + mpd_run_prio_range; + mpd_send_prio_id; + mpd_run_prio_id; + + /* mpd/recv.h */ + mpd_recv_pair; + mpd_recv_pair_named; + mpd_return_pair; + mpd_enqueue_pair; + + /* mpd/response.h */ + mpd_response_finish; + mpd_response_next; + + /* mpd/search.h */ + mpd_search_db_songs; + mpd_search_add_db_songs; + mpd_search_queue_songs; + mpd_search_db_tags; + mpd_count_db_songs; + mpd_search_add_base_constraint; + mpd_search_add_uri_constraint; + mpd_search_add_tag_constraint; + mpd_search_add_any_tag_constraint; + mpd_search_add_modified_since_constraint; + mpd_search_add_window; + mpd_search_commit; + mpd_search_cancel; + mpd_recv_pair_tag; + + /* mpd/send.h */ + mpd_send_command; + + /* mpd/song.h */ + mpd_song_free; + mpd_song_dup; + mpd_song_get_uri; + mpd_song_get_tag; + mpd_song_get_duration; + mpd_song_get_duration_ms; + mpd_song_get_start; + mpd_song_get_end; + mpd_song_get_last_modified; + mpd_song_set_pos; + mpd_song_get_pos; + mpd_song_get_id; + mpd_song_get_prio; + mpd_song_begin; + mpd_song_feed; + mpd_recv_song; + + /* mpd/stats.h */ + mpd_send_stats; + mpd_stats_begin; + mpd_stats_feed; + mpd_recv_stats; + mpd_run_stats; + mpd_stats_free; + mpd_stats_get_number_of_artists; + mpd_stats_get_number_of_albums; + mpd_stats_get_number_of_songs; + mpd_stats_get_uptime; + mpd_stats_get_db_update_time; + mpd_stats_get_play_time; + mpd_stats_get_db_play_time; + + /* mpd/status.h */ + mpd_status_begin; + mpd_status_feed; + mpd_status_free; + mpd_send_status; + mpd_recv_status; + mpd_run_status; + mpd_status_get_volume; + mpd_status_get_repeat; + mpd_status_get_random; + mpd_status_get_single; + mpd_status_get_consume; + mpd_status_get_queue_length; + mpd_status_get_queue_version; + mpd_status_get_state; + mpd_status_get_crossfade; + mpd_status_get_mixrampdb; + mpd_status_get_mixrampdelay; + mpd_status_get_song_pos; + mpd_status_get_song_id; + mpd_status_get_next_song_pos; + mpd_status_get_next_song_id; + mpd_status_get_elapsed_time; + mpd_status_get_elapsed_ms; + mpd_status_get_total_time; + mpd_status_get_kbit_rate; + mpd_status_get_audio_format; + mpd_status_get_update_id; + mpd_status_get_error; + + /* mpd/tag.h */ + mpd_tag_name; + mpd_tag_name_parse; + mpd_tag_name_iparse; + + /* mpd/sticker.h */ + mpd_send_sticker_set; + mpd_run_sticker_set; + mpd_send_sticker_delete; + mpd_run_sticker_delete; + mpd_send_sticker_get; + mpd_send_sticker_list; + mpd_send_sticker_find; + mpd_parse_sticker; + mpd_recv_sticker; + mpd_return_sticker; + + /* mpd/settings.h */ + mpd_settings_new; + mpd_settings_free; + mpd_settings_get_host; + mpd_settings_get_port; + mpd_settings_get_timeout_ms; + mpd_settings_get_password; + +local: + *; +}; diff --git a/1_6.h12_dev/libmpdclient/libmpdclient.pc.in b/1_6.h12_dev/libmpdclient/libmpdclient.pc.in new file mode 100644 index 0000000..94a11b8 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/libmpdclient.pc.in @@ -0,0 +1,10 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libmpdclient +Description: Music Player Daemon client library +Version: @VERSION@ +Libs: -L${libdir} -lmpdclient +Cflags: -I${includedir} diff --git a/1_6.h12_dev/libmpdclient/m4/ax_check_compiler_flags.m4 b/1_6.h12_dev/libmpdclient/m4/ax_check_compiler_flags.m4 new file mode 100644 index 0000000..7da8324 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/m4/ax_check_compiler_flags.m4 @@ -0,0 +1,74 @@ +# =========================================================================== +# http://www.nongnu.org/autoconf-archive/ax_check_compiler_flags.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_CHECK_COMPILER_FLAGS(FLAGS, [ACTION-SUCCESS], [ACTION-FAILURE]) +# +# DESCRIPTION +# +# Check whether the given compiler FLAGS work with the current language's +# compiler, or whether they give an error. (Warnings, however, are +# ignored.) +# +# ACTION-SUCCESS/ACTION-FAILURE are shell commands to execute on +# success/failure. +# +# LICENSE +# +# Copyright (c) 2009 Steven G. Johnson +# Copyright (c) 2009 Matteo Frigo +# +# 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 . +# +# As a special exception, the respective Autoconf Macro's copyright owner +# gives unlimited permission to copy, distribute and modify the configure +# scripts that are the output of Autoconf when processing the Macro. You +# need not follow the terms of the GNU General Public License when using +# or distributing such scripts, even though portions of the text of the +# Macro appear in them. The GNU General Public License (GPL) does govern +# all other use of the material that constitutes the Autoconf Macro. +# +# This special exception to the GPL applies to versions of the Autoconf +# Macro released by the Autoconf Archive. When you make and distribute a +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + +AC_DEFUN([AX_CHECK_COMPILER_FLAGS], +[AC_PREREQ(2.59) dnl for _AC_LANG_PREFIX +AC_MSG_CHECKING([whether _AC_LANG compiler accepts $1]) +dnl Some hackery here since AC_CACHE_VAL can't handle a non-literal varname: +AS_LITERAL_IF([$1], + [AC_CACHE_VAL(AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1]), [ + ax_save_FLAGS=$[]_AC_LANG_PREFIX[]FLAGS + _AC_LANG_PREFIX[]FLAGS="$1" + AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], + AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=yes, + AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=no) + _AC_LANG_PREFIX[]FLAGS=$ax_save_FLAGS])], + [ax_save_FLAGS=$[]_AC_LANG_PREFIX[]FLAGS + _AC_LANG_PREFIX[]FLAGS="$1" + AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], + eval AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=yes, + eval AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=no) + _AC_LANG_PREFIX[]FLAGS=$ax_save_FLAGS]) +eval ax_check_compiler_flags=$AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1]) +AC_MSG_RESULT($ax_check_compiler_flags) +if test "x$ax_check_compiler_flags" = xyes; then + m4_default([$2], :) +else + m4_default([$3], :) +fi +])dnl AX_CHECK_COMPILER_FLAGS diff --git a/1_6.h12_dev/libmpdclient/src/async.c b/1_6.h12_dev/libmpdclient/src/async.c new file mode 100644 index 0000000..c1f675a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/async.c @@ -0,0 +1,391 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "iasync.h" +#include "buffer.h" +#include "ierror.h" +#include "quote.h" +#include "socket.h" + +#include +#include +#include +#include +#include +#include +#include + +#ifndef WIN32 +#include + +static inline int +closesocket(int fd) +{ + return close(fd); +} +#endif + +#ifndef MSG_DONTWAIT +#define MSG_DONTWAIT 0 +#endif + +struct mpd_async { + int fd; + + struct mpd_error_info error; + + struct mpd_buffer input; + + struct mpd_buffer output; +}; + +struct mpd_async * +mpd_async_new(int fd) +{ + struct mpd_async *async; + + assert(fd >= 0); + + async = malloc(sizeof(*async)); + if (async == NULL) + return NULL; + + async->fd = fd; + mpd_error_init(&async->error); + + mpd_buffer_init(&async->input); + mpd_buffer_init(&async->output); + + return async; +} + +void +mpd_async_free(struct mpd_async *async) +{ + assert(async != NULL); + + closesocket(async->fd); + mpd_error_deinit(&async->error); + free(async); +} + +enum mpd_error +mpd_async_get_error(const struct mpd_async *async) +{ + assert(async != NULL); + + return async->error.code; +} + +const char * +mpd_async_get_error_message(const struct mpd_async *async) +{ + assert(async != NULL); + + return mpd_error_get_message(&async->error); +} + +int +mpd_async_get_system_error(const struct mpd_async *async) +{ + assert(async != NULL); + assert(async->error.code == MPD_ERROR_SYSTEM); + + return async->error.system; +} + +bool +mpd_async_copy_error(const struct mpd_async *async, + struct mpd_error_info *dest) +{ + assert(async != NULL); + + return mpd_error_copy(dest, &async->error); +} + +int +mpd_async_get_fd(const struct mpd_async *async) +{ + assert(async != NULL); + assert(async->fd >= 0); + + return async->fd; +} + +void +mpd_async_set_keepalive(struct mpd_async *async, + bool keepalive) +{ + assert(async != NULL); + assert(async->fd >= 0); + + mpd_socket_keepalive(async->fd, keepalive); +} + +enum mpd_async_event +mpd_async_events(const struct mpd_async *async) +{ + enum mpd_async_event events; + + assert(async != NULL); + + if (mpd_error_is_defined(&async->error)) + return 0; + + /* always listen to hangups and errors */ + events = MPD_ASYNC_EVENT_HUP | MPD_ASYNC_EVENT_ERROR; + + if (mpd_buffer_room(&async->input) > 0) + /* there's room left in the input buffer: attempt to + read */ + events |= MPD_ASYNC_EVENT_READ; + + if (mpd_buffer_size(&async->output) > 0) + /* there's data in the output buffer: attempt to + write */ + events |= MPD_ASYNC_EVENT_WRITE; + + return events; +} + +static bool +ignore_errno(int e) +{ +#ifdef WIN32 + return e == WSAEINTR || e == WSAEINPROGRESS; +#else + return e == EINTR || e == EAGAIN; +#endif +} + +static bool +mpd_async_read(struct mpd_async *async) +{ + size_t room; + ssize_t nbytes; + + assert(async != NULL); + assert(async->fd >= 0); + assert(!mpd_error_is_defined(&async->error)); + + room = mpd_buffer_room(&async->input); + if (room == 0) + return true; + + nbytes = recv(async->fd, mpd_buffer_write(&async->input), room, + MSG_DONTWAIT); + if (nbytes < 0) { + /* I/O error */ + + if (ignore_errno(mpd_socket_errno())) + return true; + + mpd_error_errno(&async->error); + return false; + } + + if (nbytes == 0) { + mpd_error_code(&async->error, MPD_ERROR_CLOSED); + mpd_error_message(&async->error, + "Connection closed by the server"); + return false; + } + + mpd_buffer_expand(&async->input, (size_t)nbytes); + return true; +} + +static bool +mpd_async_write(struct mpd_async *async) +{ + size_t size; + ssize_t nbytes; + + assert(async != NULL); + assert(async->fd >= 0); + assert(!mpd_error_is_defined(&async->error)); + + size = mpd_buffer_size(&async->output); + if (size == 0) + return true; + + nbytes = send(async->fd, mpd_buffer_read(&async->output), size, + MSG_DONTWAIT); + if (nbytes < 0) { + /* I/O error */ + + if (ignore_errno(mpd_socket_errno())) + return true; + + mpd_error_errno(&async->error); + return false; + } + + mpd_buffer_consume(&async->output, (size_t)nbytes); + return true; +} + +bool +mpd_async_io(struct mpd_async *async, enum mpd_async_event events) +{ + bool success; + + assert(async != NULL); + + if (mpd_error_is_defined(&async->error)) + return false; + + if ((events & (MPD_ASYNC_EVENT_HUP|MPD_ASYNC_EVENT_ERROR)) != 0) { + mpd_error_code(&async->error, MPD_ERROR_CLOSED); + mpd_error_message(&async->error, "Socket connection aborted"); + return false; + } + + if (events & MPD_ASYNC_EVENT_READ) { + success = mpd_async_read(async); + if (!success) + return false; + } + + assert(!mpd_error_is_defined(&async->error)); + + if (events & MPD_ASYNC_EVENT_WRITE) { + success = mpd_async_write(async); + if (!success) + return false; + } + + assert(!mpd_error_is_defined(&async->error)); + + return true; +} + +bool +mpd_async_send_command_v(struct mpd_async *async, const char *command, + va_list args) +{ + size_t room, length; + char *dest, *end, *p; + const char *arg; + + assert(async != NULL); + assert(command != NULL); + + if (mpd_error_is_defined(&async->error)) + return false; + + room = mpd_buffer_room(&async->output); + length = strlen(command); + if (room <= length) + return false; + + dest = mpd_buffer_write(&async->output); + /* -1 because we reserve space for the \n character */ + end = dest + room - 1; + + /* copy the command (no quoting, we asumme it is "clean") */ + + memcpy(dest, command, length); + p = dest + length; + + /* now append all arguments (quoted) */ + + while ((arg = va_arg(args, const char *)) != NULL) { + /* append a space separator */ + + if (p >= end) + return false; + + *p++ = ' '; + + /* quote the argument into the destination buffer */ + + p = quote(p, end, arg); + assert(p == NULL || (p >= dest && p <= end)); + if (p == NULL) + return false; + } + + + /* append the newline to finish this command */ + + *p++ = '\n'; + + mpd_buffer_expand(&async->output, p - dest); + return true; +} + +bool +mpd_async_send_command(struct mpd_async *async, const char *command, ...) +{ + va_list args; + bool success; + + assert(async != NULL); + assert(command != NULL); + + va_start(args, command); + success = mpd_async_send_command_v(async, command, args); + va_end(args); + + return success; +} + +char * +mpd_async_recv_line(struct mpd_async *async) +{ + size_t size; + char *src, *newline; + + assert(async != NULL); + + size = mpd_buffer_size(&async->input); + if (size == 0) + return NULL; + + src = mpd_buffer_read(&async->input); + assert(src != NULL); + newline = memchr(src, '\n', size); + if (newline == NULL) { + /* line is not finished yet */ + if (mpd_buffer_full(&async->input)) { + /* .. but the buffer is full - line is too + long, abort connection and bail out */ + mpd_error_code(&async->error, MPD_ERROR_MALFORMED); + mpd_error_message(&async->error, + "Response line too large"); + } + + return NULL; + } + + *newline = 0; + mpd_buffer_consume(&async->input, newline + 1 - src); + + return src; +} diff --git a/1_6.h12_dev/libmpdclient/src/buffer.h b/1_6.h12_dev/libmpdclient/src/buffer.h new file mode 100644 index 0000000..3b928e7 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/buffer.h @@ -0,0 +1,157 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_BUFFER_H +#define MPD_BUFFER_H + +#include +#include +#include + +/** + * A fixed 4kB buffer which can be appended at the end, and consumed + * at the beginning. + */ +struct mpd_buffer { + /** the next buffer position to write to */ + unsigned write; + + /** the next buffer position to read from */ + unsigned read; + + /** the actual buffer */ + unsigned char data[4096]; +}; + +/** + * Initialize an empty buffer. + */ +static inline void +mpd_buffer_init(struct mpd_buffer *buffer) +{ + buffer->read = 0; + buffer->write = 0; +} + +/** + * Move the start of the valid data to the beginning of the allocated + * buffer. + */ +static inline void +mpd_buffer_move(struct mpd_buffer *buffer) +{ + memmove(buffer->data, buffer->data + buffer->read, + buffer->write - buffer->read); + + buffer->write -= buffer->read; + buffer->read = 0; +} + +/** + * Determines how many bytes can be written to the buffer returned by + * mpd_buffer_write(). + */ +static inline size_t +mpd_buffer_room(const struct mpd_buffer *buffer) +{ + assert(buffer->write <= sizeof(buffer->data)); + assert(buffer->read <= buffer->write); + + return sizeof(buffer->data) - (buffer->write - buffer->read); +} + +/** + * Checks if the buffer is full, i.e. nothing can be written. + */ +static inline bool +mpd_buffer_full(const struct mpd_buffer *buffer) +{ + return mpd_buffer_room(buffer) == 0; +} + +/** + * Returns a pointer to write new data into. After you have done + * that, call mpd_buffer_expand(). + */ +static inline void * +mpd_buffer_write(struct mpd_buffer *buffer) +{ + assert(mpd_buffer_room(buffer) > 0); + + mpd_buffer_move(buffer); + return buffer->data + buffer->write; +} + +/** + * Moves the "write" pointer. + */ +static inline void +mpd_buffer_expand(struct mpd_buffer *buffer, size_t nbytes) +{ + assert(mpd_buffer_room(buffer) >= nbytes); + + buffer->write += nbytes; +} + +/** + * Determines how many bytes can be read from the pointer returned by + * mpd_buffer_read(). + */ +static inline size_t +mpd_buffer_size(const struct mpd_buffer *buffer) +{ + assert(buffer->write <= sizeof(buffer->data)); + assert(buffer->read <= buffer->write); + + return buffer->write - buffer->read; +} + +/** + * Returns a pointer to the head of the filled buffer. It is legal to + * modify the returned buffer, for zero-copy parsing. + */ +static inline void * +mpd_buffer_read(struct mpd_buffer *buffer) +{ + assert(mpd_buffer_size(buffer) > 0); + + return buffer->data + buffer->read; +} + +/** + * Marks bytes at the beginning of the buffer as "consumed". + */ +static inline void +mpd_buffer_consume(struct mpd_buffer *buffer, size_t nbytes) +{ + assert(nbytes <= mpd_buffer_size(buffer)); + + buffer->read += nbytes; +} + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/capabilities.c b/1_6.h12_dev/libmpdclient/src/capabilities.c new file mode 100644 index 0000000..67ab825 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/capabilities.c @@ -0,0 +1,57 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include + +#include + +bool +mpd_send_allowed_commands(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "commands", NULL); +} + +bool +mpd_send_disallowed_commands(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "notcommands", NULL); +} + +bool +mpd_send_list_url_schemes(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "urlhandlers", NULL); +} + +bool +mpd_send_list_tag_types(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "tagtypes", NULL); +} diff --git a/1_6.h12_dev/libmpdclient/src/cmessage.c b/1_6.h12_dev/libmpdclient/src/cmessage.c new file mode 100644 index 0000000..5038ad5 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/cmessage.c @@ -0,0 +1,134 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include "internal.h" +#include "run.h" + +#include +#include + +bool +mpd_send_subscribe(struct mpd_connection *connection, const char *channel) +{ + return mpd_send_command(connection, "subscribe", channel, NULL); +} + +bool +mpd_run_subscribe(struct mpd_connection *connection, const char *channel) +{ + return mpd_run_check(connection) && + mpd_send_subscribe(connection, channel) && + mpd_response_finish(connection); +} + +bool +mpd_send_unsubscribe(struct mpd_connection *connection, const char *channel) +{ + return mpd_send_command(connection, "unsubscribe", channel, NULL); +} + +bool +mpd_run_unsubscribe(struct mpd_connection *connection, const char *channel) +{ + return mpd_run_check(connection) && + mpd_send_unsubscribe(connection, channel) && + mpd_response_finish(connection); +} + +bool +mpd_send_send_message(struct mpd_connection *connection, + const char *channel, const char *text) +{ + return mpd_send_command(connection, "sendmessage", channel, text, + NULL); +} + +bool +mpd_run_send_message(struct mpd_connection *connection, + const char *channel, const char *text) +{ + return mpd_run_check(connection) && + mpd_send_send_message(connection, channel, text) && + mpd_response_finish(connection); +} + +bool +mpd_send_read_messages(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "readmessages", NULL); +} + +struct mpd_message * +mpd_recv_message(struct mpd_connection *connection) +{ + struct mpd_message *message; + struct mpd_pair *pair; + + pair = mpd_recv_pair_named(connection, "channel"); + if (pair == NULL) + return NULL; + + message = mpd_message_begin(pair); + mpd_return_pair(connection, pair); + if (message == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return NULL; + } + + while ((pair = mpd_recv_pair(connection)) != NULL && + mpd_message_feed(message, pair)) + mpd_return_pair(connection, pair); + + if (mpd_error_is_defined(&connection->error)) { + assert(pair == NULL); + + mpd_message_free(message); + return NULL; + } + + mpd_enqueue_pair(connection, pair); + + if (mpd_message_get_text(message) == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_MALFORMED); + mpd_error_message(&connection->error, + "No 'message' line received"); + mpd_message_free(message); + return NULL; + } + + return message; +} + +bool +mpd_send_channels(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "channels", NULL); +} diff --git a/1_6.h12_dev/libmpdclient/src/connection.c b/1_6.h12_dev/libmpdclient/src/connection.c new file mode 100644 index 0000000..ff379e0 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/connection.c @@ -0,0 +1,301 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include +#include +#include "resolver.h" +#include "sync.h" +#include "socket.h" +#include "internal.h" +#include "iasync.h" +#include "config.h" + +#include +#include +#include + +#define MPD_WELCOME_MESSAGE "OK MPD " + +static bool +mpd_parse_welcome(struct mpd_connection *connection, const char *output) +{ + const char *tmp; + char * test; + + if (strncmp(output,MPD_WELCOME_MESSAGE,strlen(MPD_WELCOME_MESSAGE))) { + mpd_error_code(&connection->error, MPD_ERROR_MALFORMED); + mpd_error_message(&connection->error, + "Malformed connect message received"); + return false; + } + + tmp = &output[strlen(MPD_WELCOME_MESSAGE)]; + connection->version[0] = strtoul(tmp, &test, 10); + if (test == tmp) { + mpd_error_code(&connection->error, MPD_ERROR_MALFORMED); + mpd_error_message(&connection->error, + "Malformed version number in connect message"); + return false; + } + + if (*test == '.') { + connection->version[1] = strtoul(test + 1, &test, 10); + if (*test == '.') + connection->version[2] = strtoul(test + 1, &test, 10); + else + connection->version[2] = 0; + } else { + connection->version[1] = 0; + connection->version[2] = 0; + } + + return true; +} + +void +mpd_connection_sync_error(struct mpd_connection *connection) +{ + if (mpd_async_copy_error(connection->async, &connection->error)) { + /* no error noticed by async: must be a timeout in the + sync.c code */ + mpd_error_code(&connection->error, MPD_ERROR_TIMEOUT); + mpd_error_message(&connection->error, "Timeout"); + } +} + +struct mpd_connection * +mpd_connection_new(const char *host, unsigned port, unsigned timeout_ms) +{ + struct mpd_settings *settings = + mpd_settings_new(host, port, timeout_ms, NULL, NULL); + if (settings == NULL) + return NULL; + + struct mpd_connection *connection = malloc(sizeof(*connection)); + if (connection == NULL) { + mpd_settings_free(settings); + return NULL; + } + + connection->settings = settings; + + bool success; + int fd; + const char *line; + + mpd_error_init(&connection->error); + connection->async = NULL; + connection->parser = NULL; + connection->receiving = false; + connection->sending_command_list = false; + connection->pair_state = PAIR_STATE_NONE; + connection->request = NULL; + + if (!mpd_socket_global_init(&connection->error)) + return connection; + + mpd_connection_set_timeout(connection, + mpd_settings_get_timeout_ms(settings)); + + host = mpd_settings_get_host(settings); + fd = mpd_socket_connect(host, mpd_settings_get_port(settings), + &connection->timeout, &connection->error); + if (fd < 0) { +#if defined(DEFAULT_SOCKET) && defined(ENABLE_TCP) + if (host == NULL || strcmp(host, DEFAULT_SOCKET) == 0) { + /* special case: try the default host if the + default socket failed */ + mpd_settings_free(settings); + settings = mpd_settings_new(DEFAULT_HOST, DEFAULT_PORT, + timeout_ms, NULL, NULL); + connection->settings = settings; + + mpd_error_clear(&connection->error); + fd = mpd_socket_connect(DEFAULT_HOST, DEFAULT_PORT, + &connection->timeout, + &connection->error); + } +#endif + + if (fd < 0) + return connection; + } + + connection->async = mpd_async_new(fd); + if (connection->async == NULL) { + mpd_socket_close(fd); + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return connection; + } + + connection->parser = mpd_parser_new(); + if (connection->parser == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return connection; + } + + line = mpd_sync_recv_line(connection->async, &connection->timeout); + if (line == NULL) { + mpd_connection_sync_error(connection); + return connection; + } + + success = mpd_parse_welcome(connection, line); + + if (success) { + const char *password = mpd_settings_get_password(settings); + if (password != NULL) + mpd_run_password(connection, password); + } + + return connection; +} + +struct mpd_connection * +mpd_connection_new_async(struct mpd_async *async, const char *welcome) +{ + struct mpd_connection *connection = malloc(sizeof(*connection)); + + assert(async != NULL); + assert(welcome != NULL); + + if (connection == NULL) + return NULL; + + mpd_error_init(&connection->error); + connection->async = async; + connection->timeout.tv_sec = 30; + connection->timeout.tv_usec = 0; + connection->parser = NULL; + connection->receiving = false; + connection->sending_command_list = false; + connection->pair_state = PAIR_STATE_NONE; + connection->request = NULL; + + if (!mpd_socket_global_init(&connection->error)) + return connection; + + connection->parser = mpd_parser_new(); + if (connection->parser == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return connection; + } + + mpd_parse_welcome(connection, welcome); + + return connection; +} + +void mpd_connection_free(struct mpd_connection *connection) +{ + assert(connection->pair_state != PAIR_STATE_FLOATING); + + if (connection->parser != NULL) + mpd_parser_free(connection->parser); + + if (connection->async != NULL) + mpd_async_free(connection->async); + + if (connection->request) free(connection->request); + + mpd_error_deinit(&connection->error); + + if (connection->settings != NULL) + mpd_settings_free(connection->settings); + + free(connection); +} + +void +mpd_connection_set_keepalive(struct mpd_connection *connection, + bool keepalive) +{ + assert(connection != NULL); + + mpd_async_set_keepalive(connection->async, keepalive); +} + +const struct mpd_settings * +mpd_connection_get_settings(const struct mpd_connection *connection) +{ + assert(connection != NULL); + + return connection->settings; +} + +void +mpd_connection_set_timeout(struct mpd_connection *connection, + unsigned timeout_ms) +{ + assert(timeout_ms > 0); + + connection->timeout.tv_sec = timeout_ms / 1000; + connection->timeout.tv_usec = timeout_ms % 1000; +} + +int +mpd_connection_get_fd(const struct mpd_connection *connection) +{ + return mpd_async_get_fd(connection->async); +} + +struct mpd_async * +mpd_connection_get_async(struct mpd_connection *connection) +{ + return connection->async; +} + +const unsigned * +mpd_connection_get_server_version(const struct mpd_connection *connection) +{ + return connection->version; +} + +int +mpd_connection_cmp_server_version(const struct mpd_connection *connection, + unsigned major, unsigned minor, + unsigned patch) +{ + const unsigned *v = connection->version; + + if (v[0] > major || (v[0] == major && + (v[1] > minor || (v[1] == minor && + v[2] > patch)))) + return 1; + else if (v[0] == major && v[1] == minor && v[2] == patch) + return 0; + else + return -1; +} diff --git a/1_6.h12_dev/libmpdclient/src/coutput.c b/1_6.h12_dev/libmpdclient/src/coutput.c new file mode 100644 index 0000000..b4ca58b --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/coutput.c @@ -0,0 +1,115 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include +#include "internal.h" +#include "isend.h" +#include "run.h" + +bool +mpd_send_outputs(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "outputs", NULL); +} + +struct mpd_output * +mpd_recv_output(struct mpd_connection *connection) +{ + struct mpd_output *output; + struct mpd_pair *pair; + + pair = mpd_recv_pair_named(connection, "outputid"); + if (pair == NULL) + return NULL; + + output = mpd_output_begin(pair); + mpd_return_pair(connection, pair); + if (output == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return NULL; + } + + while ((pair = mpd_recv_pair(connection)) != NULL && + mpd_output_feed(output, pair)) + mpd_return_pair(connection, pair); + + if (mpd_error_is_defined(&connection->error)) { + assert(pair == NULL); + + mpd_output_free(output); + return NULL; + } + + mpd_enqueue_pair(connection, pair); + return output; +} + +bool +mpd_send_enable_output(struct mpd_connection *connection, unsigned output_id) +{ + return mpd_send_int_command(connection, "enableoutput", output_id); +} + +bool +mpd_run_enable_output(struct mpd_connection *connection, unsigned output_id) +{ + return mpd_run_check(connection) && + mpd_send_enable_output(connection, output_id) && + mpd_response_finish(connection); +} + +bool +mpd_send_disable_output(struct mpd_connection *connection, unsigned output_id) +{ + return mpd_send_int_command(connection, "disableoutput", output_id); +} + +bool +mpd_run_disable_output(struct mpd_connection *connection, unsigned output_id) +{ + return mpd_run_check(connection) && + mpd_send_disable_output(connection, output_id) && + mpd_response_finish(connection); +} + +bool +mpd_send_toggle_output(struct mpd_connection *connection, unsigned output_id) +{ + return mpd_send_int_command(connection, "toggleoutput", output_id); +} + +bool +mpd_run_toggle_output(struct mpd_connection *connection, unsigned output_id) +{ + return mpd_run_check(connection) && + mpd_send_toggle_output(connection, output_id) && + mpd_response_finish(connection); +} diff --git a/1_6.h12_dev/libmpdclient/src/cplaylist.c b/1_6.h12_dev/libmpdclient/src/cplaylist.c new file mode 100644 index 0000000..ff9739f --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/cplaylist.c @@ -0,0 +1,179 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include "run.h" + +#include +#include + +/* (bits+1)/3 (plus the sign character) */ +enum { + UNSIGNEDLEN = (sizeof(unsigned) * CHAR_BIT + 1) / 3 + 1, +}; + +bool +mpd_send_list_playlists(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "listplaylists", NULL); +} + +bool +mpd_send_list_playlist(struct mpd_connection *connection, const char *name) +{ + return mpd_send_command(connection, "listplaylist", name, NULL); +} + +bool +mpd_send_list_playlist_meta(struct mpd_connection *connection, const char *name) +{ + return mpd_send_command(connection, "listplaylistinfo", name, NULL); +} + +bool +mpd_send_playlist_clear(struct mpd_connection *connection, const char *name) +{ + return mpd_send_command(connection, "playlistclear", name, NULL); +} + +bool +mpd_run_playlist_clear(struct mpd_connection *connection, const char *name) +{ + return mpd_run_check(connection) && + mpd_send_playlist_clear(connection, name) && + mpd_response_finish(connection); +} + +bool +mpd_send_playlist_add(struct mpd_connection *connection, const char *name, + const char *path) +{ + return mpd_send_command(connection, "playlistadd", name, path, NULL); +} + +bool +mpd_run_playlist_add(struct mpd_connection *connection, + const char *name, const char *path) +{ + return mpd_run_check(connection) && + mpd_send_playlist_add(connection, name, path) && + mpd_response_finish(connection); +} + +bool +mpd_send_playlist_move(struct mpd_connection *connection, const char *name, + unsigned from, unsigned to) +{ + char from_string[UNSIGNEDLEN], to_string[UNSIGNEDLEN]; + + snprintf(from_string, sizeof(from_string), "%u", from); + snprintf(to_string, sizeof(to_string), "%u", to); + + return mpd_send_command(connection, "playlistmove", name, + from_string, to_string, NULL); +} + +bool +mpd_send_playlist_delete(struct mpd_connection *connection, const char *name, + unsigned pos) +{ + char pos_string[UNSIGNEDLEN]; + + snprintf(pos_string, sizeof(pos_string), "%u", pos); + + return mpd_send_command(connection, "playlistdelete", name, pos_string, NULL); +} + +bool +mpd_run_playlist_delete(struct mpd_connection *connection, + const char *name, unsigned pos) +{ + return mpd_run_check(connection) && + mpd_send_playlist_delete(connection, name, pos) && + mpd_response_finish(connection); +} + +bool +mpd_send_save(struct mpd_connection *connection, const char *name) +{ + return mpd_send_command(connection, "save", name, NULL); +} + +bool +mpd_run_save(struct mpd_connection *connection, const char *name) +{ + return mpd_run_check(connection) && + mpd_send_save(connection, name) && + mpd_response_finish(connection); +} + +bool +mpd_send_load(struct mpd_connection *connection, const char *name) +{ + return mpd_send_command(connection, "load", name, NULL); +} + +bool +mpd_run_load(struct mpd_connection *connection, const char *name) +{ + return mpd_run_check(connection) && + mpd_send_load(connection, name) && + mpd_response_finish(connection); +} + +bool +mpd_send_rename(struct mpd_connection *connection, + const char *from, const char *to) +{ + return mpd_send_command(connection, "rename", from, to, NULL); +} + +bool +mpd_run_rename(struct mpd_connection *connection, + const char *from, const char *to) +{ + return mpd_run_check(connection) && + mpd_send_rename(connection, from, to) && + mpd_response_finish(connection); +} + +bool +mpd_send_rm(struct mpd_connection *connection, const char *name) +{ + return mpd_send_command(connection, "rm", name, NULL); +} + +bool +mpd_run_rm(struct mpd_connection *connection, const char *name) +{ + return mpd_run_check(connection) && + mpd_send_rm(connection, name) && + mpd_response_finish(connection); +} diff --git a/1_6.h12_dev/libmpdclient/src/cstats.c b/1_6.h12_dev/libmpdclient/src/cstats.c new file mode 100644 index 0000000..c93c07c --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/cstats.c @@ -0,0 +1,88 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* + * mpd_connection specific functions declared in mpd/stats.h. + * + */ + +#include +#include +#include +#include "internal.h" + +#include + +bool +mpd_send_stats(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "stats", NULL); +} + +struct mpd_stats * +mpd_recv_stats(struct mpd_connection *connection) +{ + struct mpd_stats * stats; + struct mpd_pair *pair; + + assert(connection != NULL); + + if (mpd_error_is_defined(&connection->error)) + /* refuse to receive a response if the connection's + state is not clean */ + return NULL; + + stats = mpd_stats_begin(); + if (stats == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return NULL; + } + + /* read and parse all response lines */ + while ((pair = mpd_recv_pair(connection)) != NULL) { + mpd_stats_feed(stats, pair); + mpd_return_pair(connection, pair); + } + + if (mpd_error_is_defined(&connection->error)) { + /* an error has occurred; roll back */ + mpd_stats_free(stats); + return NULL; + } + + return stats; +} + + +struct mpd_stats * +mpd_run_stats(struct mpd_connection *connection) +{ + return mpd_send_stats(connection) + ? mpd_recv_stats(connection) + : NULL; +} diff --git a/1_6.h12_dev/libmpdclient/src/cstatus.c b/1_6.h12_dev/libmpdclient/src/cstatus.c new file mode 100644 index 0000000..9800dd6 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/cstatus.c @@ -0,0 +1,80 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* + * mpd_connection specific functions declared in mpd/status.h. + * + */ + +#include +#include +#include +#include "internal.h" +#include "run.h" + +bool +mpd_send_status(struct mpd_connection * connection) +{ + return mpd_send_command(connection, "status", NULL); +} + +struct mpd_status * +mpd_recv_status(struct mpd_connection * connection) +{ + struct mpd_status * status; + struct mpd_pair *pair; + + if (mpd_error_is_defined(&connection->error)) + return NULL; + + status = mpd_status_begin(); + if (status == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return NULL; + } + + while ((pair = mpd_recv_pair(connection)) != NULL) { + mpd_status_feed(status, pair); + mpd_return_pair(connection, pair); + } + + if (mpd_error_is_defined(&connection->error)) { + mpd_status_free(status); + return NULL; + } + + return status; +} + +struct mpd_status * +mpd_run_status(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && mpd_send_status(connection) + ? mpd_recv_status(connection) + : NULL; +} diff --git a/1_6.h12_dev/libmpdclient/src/database.c b/1_6.h12_dev/libmpdclient/src/database.c new file mode 100644 index 0000000..fb48bc3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/database.c @@ -0,0 +1,114 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include +#include +#include "run.h" + +#include +#include + +bool +mpd_send_list_all(struct mpd_connection *connection, const char *dir) +{ + return mpd_send_command(connection, "listall", dir, NULL); +} + +bool +mpd_send_list_all_meta(struct mpd_connection *connection, const char *dir) +{ + return mpd_send_command(connection, "listallinfo", dir, NULL); +} + +bool +mpd_send_list_meta(struct mpd_connection *connection, const char *dir) +{ + return mpd_send_command(connection, "lsinfo", dir, NULL); +} + +bool +mpd_send_read_comments(struct mpd_connection *connection, const char *path) +{ + return mpd_send_command(connection, "readcomments", path, NULL); +} + +bool +mpd_send_update(struct mpd_connection *connection, const char *path) +{ + return mpd_send_command(connection, "update", path, NULL); +} + +bool +mpd_send_rescan(struct mpd_connection *connection, const char *path) +{ + return mpd_send_command(connection, "rescan", path, NULL); +} + +unsigned +mpd_recv_update_id(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + int ret = 0; + + pair = mpd_recv_pair_named(connection, "updating_db"); + if (pair != NULL) { + ret = atoi(pair->value); + mpd_return_pair(connection, pair); + } + + return ret; +} + +unsigned +mpd_run_update(struct mpd_connection *connection, const char *path) +{ + unsigned id; + + if (!mpd_run_check(connection) || !mpd_send_update(connection, path)) + return 0; + + id = mpd_recv_update_id(connection); + return id != 0 && mpd_response_finish(connection) + ? id : 0; +} + +unsigned +mpd_run_rescan(struct mpd_connection *connection, const char *path) +{ + unsigned id; + + if (!mpd_run_check(connection) || !mpd_send_rescan(connection, path)) + return 0; + + id = mpd_recv_update_id(connection); + return id != 0 && mpd_response_finish(connection) + ? id : 0; +} diff --git a/1_6.h12_dev/libmpdclient/src/directory.c b/1_6.h12_dev/libmpdclient/src/directory.c new file mode 100644 index 0000000..7b783fc --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/directory.c @@ -0,0 +1,152 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include "uri.h" +#include "iso8601.h" + +#include +#include +#include +#include + +struct mpd_directory { + /** + * The full path of this directory. It does not begin with a + * slash. + */ + char *path; + + /** + * The POSIX UTC time stamp of the last modification, or 0 if + * that is unknown. + */ + time_t last_modified; +}; + +mpd_malloc +static struct mpd_directory * +mpd_directory_new(const char *path) +{ + struct mpd_directory *directory; + + assert(path != NULL); + assert(mpd_verify_local_uri(path)); + + directory = malloc(sizeof(*directory)); + if (directory == NULL) + /* out of memory */ + return NULL; + + directory->path = strdup(path); + if (directory->path == NULL) { + /* out of memory */ + free(directory); + return NULL; + } + + directory->last_modified = 0; + + return directory; +} + +void mpd_directory_free(struct mpd_directory *directory) +{ + assert(directory != NULL); + assert(directory->path != NULL); + + free(directory->path); + free(directory); +} + +struct mpd_directory * +mpd_directory_dup(const struct mpd_directory *directory) +{ + assert(directory != NULL); + assert(directory->path != NULL); + + struct mpd_directory *copy = mpd_directory_new(directory->path); + copy->last_modified = directory->last_modified; + return copy; +} + +const char * +mpd_directory_get_path(const struct mpd_directory *directory) +{ + assert(directory != NULL); + assert(directory->path != NULL); + + return directory->path; +} + +time_t +mpd_directory_get_last_modified(const struct mpd_directory *directory) +{ + assert(directory != NULL); + + return directory->last_modified; +} + +struct mpd_directory * +mpd_directory_begin(const struct mpd_pair *pair) +{ + assert(pair != NULL); + assert(pair->name != NULL); + assert(pair->value != NULL); + + if (strcmp(pair->name, "directory") != 0 || + !mpd_verify_local_uri(pair->value)) { + errno = EINVAL; + return NULL; + } + + return mpd_directory_new(pair->value); +} + +bool +mpd_directory_feed(struct mpd_directory *directory, + const struct mpd_pair *pair) +{ + assert(pair != NULL); + assert(pair->name != NULL); + assert(pair->value != NULL); + + if (strcmp(pair->name, "directory") == 0) + return false; + + if (strcmp(pair->name, "Last-Modified") == 0) + directory->last_modified = + iso8601_datetime_parse(pair->value); + + return true; +} diff --git a/1_6.h12_dev/libmpdclient/src/entity.c b/1_6.h12_dev/libmpdclient/src/entity.c new file mode 100644 index 0000000..fe5bdc4 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/entity.c @@ -0,0 +1,237 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include "internal.h" + +#include +#include +#include + +struct mpd_entity { + /** + * The type of this entity. + */ + enum mpd_entity_type type; + + /** + * This union contains type-safe pointers to the real object. + * Check the entity type before attempting to obtain the + * object! + */ + union { + /** + * Only valid if type==#MPD_ENTITY_TYPE_DIRECTORY. + */ + struct mpd_directory *directory; + + /** + * Only valid if type==#MPD_ENTITY_TYPE_SONG. + */ + struct mpd_song *song; + + /** + * Only valid if type==#MPD_ENTITY_TYPE_PLAYLIST. + */ + struct mpd_playlist *playlistFile; + } info; +}; + +void +mpd_entity_free(struct mpd_entity *entity) { + assert(entity != NULL); + + switch (entity->type) { + case MPD_ENTITY_TYPE_UNKNOWN: + /* nothing to free */ + break; + + case MPD_ENTITY_TYPE_DIRECTORY: + mpd_directory_free(entity->info.directory); + break; + + case MPD_ENTITY_TYPE_SONG: + mpd_song_free(entity->info.song); + break; + + case MPD_ENTITY_TYPE_PLAYLIST: + mpd_playlist_free(entity->info.playlistFile); + break; + } + + free(entity); +} + +enum mpd_entity_type +mpd_entity_get_type(const struct mpd_entity *entity) +{ + assert(entity != NULL); + + return entity->type; +} + +const struct mpd_directory * +mpd_entity_get_directory(const struct mpd_entity *entity) +{ + assert(entity != NULL); + assert(entity->type == MPD_ENTITY_TYPE_DIRECTORY); + + return entity->info.directory; +} + +const struct mpd_song * +mpd_entity_get_song(const struct mpd_entity *entity) +{ + assert(entity != NULL); + assert(entity->type == MPD_ENTITY_TYPE_SONG); + + return entity->info.song; +} + +const struct mpd_playlist * +mpd_entity_get_playlist(const struct mpd_entity *entity) +{ + assert(entity != NULL); + assert(entity->type == MPD_ENTITY_TYPE_PLAYLIST); + + return entity->info.playlistFile; +} + +static bool +mpd_entity_feed_first(struct mpd_entity *entity, const struct mpd_pair *pair) +{ + if (strcmp(pair->name, "file") == 0) { + entity->type = MPD_ENTITY_TYPE_SONG; + entity->info.song = mpd_song_begin(pair); + if (entity->info.song == NULL) + return false; + } else if (strcmp(pair->name, "directory") == 0) { + entity->type = MPD_ENTITY_TYPE_DIRECTORY; + entity->info.directory = mpd_directory_begin(pair); + if (entity->info.directory == NULL) + return false; + } else if (strcmp(pair->name, "playlist") == 0) { + entity->type = MPD_ENTITY_TYPE_PLAYLIST; + entity->info.playlistFile = mpd_playlist_begin(pair); + if (entity->info.playlistFile == NULL) + return false; + } else { + entity->type = MPD_ENTITY_TYPE_UNKNOWN; + } + + return true; +} + +struct mpd_entity * +mpd_entity_begin(const struct mpd_pair *pair) +{ + struct mpd_entity *entity; + bool success; + + entity = malloc(sizeof(*entity)); + if (entity == NULL) + /* out of memory */ + return NULL; + + success = mpd_entity_feed_first(entity, pair); + if (!success) { + free(entity); + return NULL; + } + + return entity; +} + +bool +mpd_entity_feed(struct mpd_entity *entity, const struct mpd_pair *pair) +{ + assert(pair != NULL); + assert(pair->name != NULL); + assert(pair->value != NULL); + + if (strcmp(pair->name, "file") == 0 || + strcmp(pair->name, "directory") == 0 || + strcmp(pair->name, "playlist") == 0) + return false; + + switch (entity->type) { + case MPD_ENTITY_TYPE_UNKNOWN: + break; + + case MPD_ENTITY_TYPE_DIRECTORY: + mpd_directory_feed(entity->info.directory, pair); + break; + + case MPD_ENTITY_TYPE_SONG: + mpd_song_feed(entity->info.song, pair); + break; + + case MPD_ENTITY_TYPE_PLAYLIST: + mpd_playlist_feed(entity->info.playlistFile, pair); + break; + } + + return true; +} + +struct mpd_entity * +mpd_recv_entity(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + struct mpd_entity *entity; + + pair = mpd_recv_pair(connection); + if (pair == NULL) + return NULL; + + entity = mpd_entity_begin(pair); + mpd_return_pair(connection, pair); + if (entity == NULL) { + mpd_error_entity(&connection->error); + return NULL; + } + + while ((pair = mpd_recv_pair(connection)) != NULL && + mpd_entity_feed(entity, pair)) + mpd_return_pair(connection, pair); + + if (mpd_error_is_defined(&connection->error)) { + mpd_entity_free(entity); + return NULL; + } + + /* unread this pair for the next mpd_recv_entity() call */ + mpd_enqueue_pair(connection, pair); + + return entity; +} diff --git a/1_6.h12_dev/libmpdclient/src/error.c b/1_6.h12_dev/libmpdclient/src/error.c new file mode 100644 index 0000000..bdd2303 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/error.c @@ -0,0 +1,79 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include "internal.h" + +#include + +enum mpd_error +mpd_connection_get_error(const struct mpd_connection *connection) +{ + return connection->error.code; +} + +const char * +mpd_connection_get_error_message(const struct mpd_connection *connection) +{ + return mpd_error_get_message(&connection->error); +} + +enum mpd_server_error +mpd_connection_get_server_error(const struct mpd_connection *connection) +{ + assert(connection->error.code == MPD_ERROR_SERVER); + + return connection->error.server; +} + +unsigned +mpd_connection_get_server_error_location(const struct mpd_connection *connection) +{ + assert(connection->error.code == MPD_ERROR_SERVER); + + return connection->error.at; +} + +int +mpd_connection_get_system_error(const struct mpd_connection *connection) +{ + assert(connection->error.code == MPD_ERROR_SYSTEM); + + return connection->error.system; +} + +bool +mpd_connection_clear_error(struct mpd_connection *connection) +{ + if (mpd_error_is_fatal(&connection->error)) + /* impossible to recover */ + return false; + + mpd_error_clear(&connection->error); + return true; +} diff --git a/1_6.h12_dev/libmpdclient/src/example.c b/1_6.h12_dev/libmpdclient/src/example.c new file mode 100644 index 0000000..b57145d --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/example.c @@ -0,0 +1,285 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +static int +handle_error(struct mpd_connection *c) +{ + assert(mpd_connection_get_error(c) != MPD_ERROR_SUCCESS); + + fprintf(stderr, "%s\n", mpd_connection_get_error_message(c)); + mpd_connection_free(c); + return EXIT_FAILURE; +} + +static void +print_tag(const struct mpd_song *song, enum mpd_tag_type type, + const char *label) +{ + unsigned i = 0; + const char *value; + + while ((value = mpd_song_get_tag(song, type, i++)) != NULL) + printf("%s: %s\n", label, value); +} + +int main(int argc, char ** argv) { + struct mpd_connection *conn; + + conn = mpd_connection_new(NULL, 0, 30000); + + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS) + return handle_error(conn); + + { + int i; + for(i=0;i<3;i++) { + printf("version[%i]: %i\n",i, + mpd_connection_get_server_version(conn)[i]); + } + } + + if(argc==1) { + struct mpd_status * status; + struct mpd_song *song; + const struct mpd_audio_format *audio_format; + + mpd_command_list_begin(conn, true); + mpd_send_status(conn); + mpd_send_current_song(conn); + mpd_command_list_end(conn); + + status = mpd_recv_status(conn); + if (status == NULL) + return handle_error(conn); + + printf("volume: %i\n", mpd_status_get_volume(status)); + printf("repeat: %i\n", mpd_status_get_repeat(status)); + printf("queue version: %u\n", mpd_status_get_queue_version(status)); + printf("queue length: %i\n", mpd_status_get_queue_length(status)); + if (mpd_status_get_error(status) != NULL) + printf("error: %s\n", mpd_status_get_error(status)); + + if (mpd_status_get_state(status) == MPD_STATE_PLAY || + mpd_status_get_state(status) == MPD_STATE_PAUSE) { + printf("song: %i\n", mpd_status_get_song_pos(status)); + printf("elaspedTime: %i\n",mpd_status_get_elapsed_time(status)); + printf("elasped_ms: %u\n", mpd_status_get_elapsed_ms(status)); + printf("totalTime: %i\n", mpd_status_get_total_time(status)); + printf("bitRate: %i\n", mpd_status_get_kbit_rate(status)); + } + + audio_format = mpd_status_get_audio_format(status); + if (audio_format != NULL) { + printf("sampleRate: %i\n", audio_format->sample_rate); + printf("bits: %i\n", audio_format->bits); + printf("channels: %i\n", audio_format->channels); + } + + mpd_status_free(status); + + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS) + return handle_error(conn); + + mpd_response_next(conn); + + while ((song = mpd_recv_song(conn)) != NULL) { + printf("uri: %s\n", mpd_song_get_uri(song)); + print_tag(song, MPD_TAG_ARTIST, "artist"); + print_tag(song, MPD_TAG_ALBUM, "album"); + print_tag(song, MPD_TAG_TITLE, "title"); + print_tag(song, MPD_TAG_TRACK, "track"); + print_tag(song, MPD_TAG_NAME, "name"); + print_tag(song, MPD_TAG_DATE, "date"); + + if (mpd_song_get_duration(song) > 0) { + printf("time: %u\n", mpd_song_get_duration(song)); + } + + printf("pos: %u\n", mpd_song_get_pos(song)); + + mpd_song_free(song); + } + + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS || + !mpd_response_finish(conn)) + return handle_error(conn); + } + else if(argc==3 && strcmp(argv[1],"lsinfo")==0) { + struct mpd_entity * entity; + + if (!mpd_send_list_meta(conn, argv[2])) + return handle_error(conn); + + while ((entity = mpd_recv_entity(conn)) != NULL) { + const struct mpd_song *song; + const struct mpd_directory *dir; + const struct mpd_playlist *pl; + + switch (mpd_entity_get_type(entity)) { + case MPD_ENTITY_TYPE_UNKNOWN: + break; + + case MPD_ENTITY_TYPE_SONG: + song = mpd_entity_get_song(entity); + printf("uri: %s\n", mpd_song_get_uri(song)); + print_tag(song, MPD_TAG_ARTIST, "artist"); + print_tag(song, MPD_TAG_ALBUM, "album"); + print_tag(song, MPD_TAG_TITLE, "title"); + print_tag(song, MPD_TAG_TRACK, "track"); + break; + + case MPD_ENTITY_TYPE_DIRECTORY: + dir = mpd_entity_get_directory(entity); + printf("directory: %s\n", mpd_directory_get_path(dir)); + break; + + case MPD_ENTITY_TYPE_PLAYLIST: + pl = mpd_entity_get_playlist(entity); + printf("playlist: %s\n", + mpd_playlist_get_path(pl)); + break; + } + + mpd_entity_free(entity); + } + + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS || + !mpd_response_finish(conn)) + return handle_error(conn); + } + else if(argc==2 && strcmp(argv[1],"artists")==0) { + struct mpd_pair *pair; + + if (!mpd_search_db_tags(conn, MPD_TAG_ARTIST) || + !mpd_search_commit(conn)) + return handle_error(conn); + + while ((pair = mpd_recv_pair_tag(conn, + MPD_TAG_ARTIST)) != NULL) { + printf("%s\n", pair->value); + mpd_return_pair(conn, pair); + } + + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS || + !mpd_response_finish(conn)) + return handle_error(conn); + } else if (argc == 2 && strcmp(argv[1], "playlists") == 0) { + if (!mpd_send_list_playlists(conn)) + return handle_error(conn); + + struct mpd_playlist *playlist; + while ((playlist = mpd_recv_playlist(conn)) != NULL) { + printf("%s\n", + mpd_playlist_get_path(playlist)); + mpd_playlist_free(playlist); + } + + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS || + !mpd_response_finish(conn)) + return handle_error(conn); + } else if (argc == 2 && strcmp(argv[1], "idle") == 0) { + enum mpd_idle idle = mpd_run_idle(conn); + if (idle == 0 && + mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS) + return handle_error(conn); + + for (unsigned j = 0;; ++j) { + enum mpd_idle i = 1 << j; + const char *name = mpd_idle_name(i); + + if (name == NULL) + break; + + if (idle & i) + printf("%s\n", name); + } + } else if (argc == 3 && strcmp(argv[1], "subscribe") == 0) { + /* subscribe to a channel and print all messages */ + + if (!mpd_run_subscribe(conn, argv[2])) + return handle_error(conn); + + while (mpd_run_idle_mask(conn, MPD_IDLE_MESSAGE) != 0) { + if (!mpd_send_read_messages(conn)) + return handle_error(conn); + + struct mpd_message *msg; + while ((msg = mpd_recv_message(conn)) != NULL) { + printf("%s\n", mpd_message_get_text(msg)); + mpd_message_free(msg); + } + + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS || + !mpd_response_finish(conn)) + return handle_error(conn); + } + + return handle_error(conn); + } else if (argc == 2 && strcmp(argv[1], "channels") == 0) { + /* print a list of channels */ + + if (!mpd_send_channels(conn)) + return handle_error(conn); + + struct mpd_pair *pair; + while ((pair = mpd_recv_channel_pair(conn)) != NULL) { + printf("%s\n", pair->value); + mpd_return_pair(conn, pair); + } + + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS || + !mpd_response_finish(conn)) + return handle_error(conn); + } else if (argc == 4 && strcmp(argv[1], "message") == 0) { + /* send a message to a channel */ + + if (!mpd_run_send_message(conn, argv[2], argv[3])) + return handle_error(conn); + } + + mpd_connection_free(conn); + + return 0; +} diff --git a/1_6.h12_dev/libmpdclient/src/fd_util.c b/1_6.h12_dev/libmpdclient/src/fd_util.c new file mode 100644 index 0000000..906aca6 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/fd_util.c @@ -0,0 +1,119 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* + * This code is copied from MPD. It is a subset of the original + * library (we don't need pipes and regular files in libmpdclient). + * + */ + +#include "fd_util.h" + +#include +#include +#include +#include + +#ifdef WIN32 +#include +#else +#include +#endif + +#ifndef WIN32 + +static int +fd_mask_flags(int fd, int and_mask, int xor_mask) +{ + int ret; + + assert(fd >= 0); + + ret = fcntl(fd, F_GETFD, 0); + if (ret < 0) + return ret; + + return fcntl(fd, F_SETFD, (ret & and_mask) ^ xor_mask); +} + +#endif /* !WIN32 */ + +static int +fd_set_cloexec(int fd, bool enable) +{ +#ifndef WIN32 + return fd_mask_flags(fd, ~FD_CLOEXEC, enable ? FD_CLOEXEC : 0); +#else + (void)fd; + (void)enable; + return 0; +#endif +} + +/** + * Enables non-blocking mode for the specified file descriptor. On + * WIN32, this function only works for sockets. + */ +static int +fd_set_nonblock(int fd) +{ +#ifdef WIN32 + u_long val = 1; + return ioctlsocket(fd, FIONBIO, &val); +#else + int flags; + + assert(fd >= 0); + + flags = fcntl(fd, F_GETFL); + if (flags < 0) + return flags; + + return fcntl(fd, F_SETFL, flags | O_NONBLOCK); +#endif +} + +int +socket_cloexec_nonblock(int domain, int type, int protocol) +{ + int fd; + +#if defined(SOCK_CLOEXEC) && defined(SOCK_NONBLOCK) + fd = socket(domain, type | SOCK_CLOEXEC | SOCK_NONBLOCK, protocol); + if (fd >= 0 || errno != EINVAL) + return fd; +#endif + + fd = socket(domain, type, protocol); + if (fd >= 0) { + fd_set_cloexec(fd, true); + fd_set_nonblock(fd); + } + + return fd; +} diff --git a/1_6.h12_dev/libmpdclient/src/fd_util.h b/1_6.h12_dev/libmpdclient/src/fd_util.h new file mode 100644 index 0000000..965bef5 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/fd_util.h @@ -0,0 +1,46 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* + * This library provides easy helper functions for working with file + * descriptors. It has wrappers for taking advantage of Linux 2.6 + * specific features like O_CLOEXEC. + * + */ + +#ifndef FD_UTIL_H +#define FD_UTIL_H + +/** + * Wrapper for socket(), which sets the CLOEXEC and the NONBLOCK flag + * (atomically if supported by the OS). + */ +int +socket_cloexec_nonblock(int domain, int type, int protocol); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/iasync.h b/1_6.h12_dev/libmpdclient/src/iasync.h new file mode 100644 index 0000000..27feb55 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/iasync.h @@ -0,0 +1,47 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_IASYNC_H +#define MPD_IASYNC_H + +#include + +struct mpd_error_info; + +/** + * Creates a copy of that object's error condition. + * + * @return true if there was no error in #async, false if an error + * condition is stored in #async (in both cases, the information is + * copied) + */ +bool +mpd_async_copy_error(const struct mpd_async *async, + struct mpd_error_info *dest); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/idle.c b/1_6.h12_dev/libmpdclient/src/idle.c new file mode 100644 index 0000000..219ebc3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/idle.c @@ -0,0 +1,230 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include +#include +#include +#include "internal.h" +#include "isend.h" +#include "run.h" + +#include + +static const char *const idle_names[] = { + "database", + "stored_playlist", + "playlist", + "player", + "mixer", + "output", + "options", + "update", + "sticker", + "subscription", + "message", + NULL +}; + +const char * +mpd_idle_name(enum mpd_idle idle) +{ + for (unsigned i = 0; idle_names[i] != NULL; ++i) + if (idle == (enum mpd_idle)(1 << i)) + return idle_names[i]; + + return NULL; +} + +enum mpd_idle +mpd_idle_name_parse(const char *name) +{ + assert(name != NULL); + + for (unsigned i = 0; idle_names[i] != NULL; ++i) + if (strcmp(name, idle_names[i]) == 0) + return 1 << i; + + return 0; +} + +enum mpd_idle +mpd_idle_parse_pair(const struct mpd_pair *pair) +{ + assert(pair != NULL); + + if (strcmp(pair->name, "changed") != 0) + return 0; + + return mpd_idle_name_parse(pair->value); +} + +enum mpd_idle +mpd_recv_idle(struct mpd_connection *connection, bool disable_timeout) +{ + enum mpd_idle flags = 0; + struct mpd_pair *pair; + struct timeval old_timeout; + + assert(connection != NULL); + + /* temporarily disable the connection timeout */ + if (disable_timeout) { + /* make sure that the output buffer is empty before we + turn off the timeout - this is important because we + want to detect a send failure more quickly */ + if (!mpd_flush(connection)) + return 0; + + old_timeout = connection->timeout; + connection->timeout = (struct timeval){ + .tv_sec = 0, + .tv_usec = 0, + }; + } else { + /* work around bogus gcc warning "may be used + uninitialized"; gcc is too dumb to see that we're + accessing old_timeout only if it was initialized */ + old_timeout = (struct timeval){ + .tv_sec = 0, + .tv_usec = 0, + }; + } + + while ((pair = mpd_recv_pair(connection)) != NULL) { + flags |= mpd_idle_parse_pair(pair); + + mpd_return_pair(connection, pair); + } + + /* re-enable timeout */ + if (disable_timeout) + connection->timeout = old_timeout; + + return flags; +} + +bool +mpd_send_idle(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "idle", NULL); +} + +bool +mpd_send_idle_mask(struct mpd_connection *connection, enum mpd_idle mask) +{ + /* this buffer is large enough even for the full mask */ + char buffer[128] = "idle"; + + assert(mask != 0); + + if (mpd_error_is_defined(&connection->error)) + return false; + + for (unsigned i = 0; idle_names[i] != NULL; ++i) { + if (mask & (1 << i)) { + mask &= ~(1 << i); + strcat(buffer, " "); + strcat(buffer, idle_names[i]); + } + } + + if (mask != 0) { + /* the client expects that all flags are supported, + because he might block forever if an event is not + delivered as expected */ + mpd_error_code(&connection->error, MPD_ERROR_ARGUMENT); + mpd_error_printf(&connection->error, + "Unsupported idle flags: 0x%x", mask); + return false; + } + + return mpd_send_command(connection, buffer, NULL); +} + +bool +mpd_send_noidle(struct mpd_connection *connection) +{ + /* we need this workaround, because "noidle" may be sent while + the "idle" response is being received */ + connection->receiving = false; + + return mpd_send_command(connection, "noidle", NULL); +} + +enum mpd_idle +mpd_run_idle(struct mpd_connection *connection) +{ + enum mpd_idle flags; + + if (!mpd_run_check(connection) || !mpd_send_idle(connection)) + return 0; + + flags = mpd_recv_idle(connection, true); + if (!mpd_response_finish(connection)) + return 0; + + return flags; +} + +enum mpd_idle +mpd_run_idle_mask(struct mpd_connection *connection, enum mpd_idle mask) +{ + enum mpd_idle flags; + + if (!mpd_run_check(connection) || + !mpd_send_idle_mask(connection, mask)) + return 0; + + flags = mpd_recv_idle(connection, true); + if (!mpd_response_finish(connection)) + return 0; + + return flags; +} + +enum mpd_idle +mpd_run_noidle(struct mpd_connection *connection) +{ + enum mpd_idle flags; + + if (!mpd_run_check(connection) || !mpd_send_noidle(connection)) + return 0; + + flags = mpd_recv_idle(connection, false); + if (!mpd_response_finish(connection)) + return 0; + + return flags; +} diff --git a/1_6.h12_dev/libmpdclient/src/ierror.c b/1_6.h12_dev/libmpdclient/src/ierror.c new file mode 100644 index 0000000..7519a49 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/ierror.c @@ -0,0 +1,152 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in so and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "ierror.h" +#include "socket.h" + +#include +#include +#include +#include +#include + +void +mpd_error_deinit(struct mpd_error_info *error) +{ + assert(error != NULL); + + if (error->code != MPD_ERROR_SUCCESS && error->message != NULL) + free(error->message); +} + +void +mpd_error_message(struct mpd_error_info *error, const char *message) +{ + assert(error != NULL); + assert(message != NULL); + assert(mpd_error_is_defined(error)); + assert(error->message == NULL); + + error->message = strdup(message); + if (error->message == NULL) + error->code = MPD_ERROR_OOM; +} + +void +mpd_error_message_n(struct mpd_error_info *error, + const char *message, size_t length) +{ + assert(error != NULL); + assert(message != NULL); + assert(mpd_error_is_defined(error)); + assert(error->message == NULL); + + error->message = malloc(length + 1); + if (error->message != NULL) { + memcpy(error->message, message, length); + error->message[length] = 0; + } else + error->code = MPD_ERROR_OOM; +} + +void +mpd_error_printf(struct mpd_error_info *error, const char *fmt, ...) +{ + char buffer[1024]; + va_list ap; + + assert(error != NULL); + assert(fmt != NULL); + + va_start(ap, fmt); + vsnprintf(buffer, sizeof(buffer), fmt, ap); + va_end(ap); + + mpd_error_message(error, buffer); +} + +void +mpd_error_system_message(struct mpd_error_info *error, int code) +{ +#ifdef WIN32 + char buffer[1024]; + DWORD nbytes; +#endif + + assert(error != NULL); + + mpd_error_system(error, code); + +#ifdef WIN32 + nbytes = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | + FORMAT_MESSAGE_IGNORE_INSERTS | + FORMAT_MESSAGE_MAX_WIDTH_MASK, NULL, code, 0, + (LPSTR)buffer, sizeof(buffer), NULL); + mpd_error_message(error, nbytes > 0 ? buffer : "Unknown error"); +#else + mpd_error_message(error, strerror(code)); +#endif +} + +void +mpd_error_errno(struct mpd_error_info *error) +{ + assert(error != NULL); + + mpd_error_system_message(error, mpd_socket_errno()); +} + +void +mpd_error_entity(struct mpd_error_info *error) +{ + if (errno == EINVAL) { + mpd_error_code(error, MPD_ERROR_MALFORMED); + mpd_error_message(error, "Malformed entity response line"); + } else + mpd_error_code(error, MPD_ERROR_OOM); +} + +bool +mpd_error_copy(struct mpd_error_info *dest, const struct mpd_error_info *src) +{ + assert(dest != NULL); + assert(src != NULL); + + dest->code = src->code; + if (src->code == MPD_ERROR_SUCCESS) + return true; + + if (src->code == MPD_ERROR_SERVER) { + dest->server = src->server; + dest->at = src->at; + } else if (src->code == MPD_ERROR_SYSTEM) + dest->system = src->system; + + dest->message = src->message != NULL ? strdup(src->message) : NULL; + return false; +} diff --git a/1_6.h12_dev/libmpdclient/src/ierror.h b/1_6.h12_dev/libmpdclient/src/ierror.h new file mode 100644 index 0000000..ee3629a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/ierror.h @@ -0,0 +1,225 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_IERROR_H +#define MPD_IERROR_H + +#include +#include +#include + +#include +#include +#include + +/** + * Structure which holds detailed information about an error, both + * machine and human readable. + */ +struct mpd_error_info { + /** + * The error code of this error. None of the variables below + * are valid if this is set to MPD_ERROR_SUCCESS. + */ + enum mpd_error code; + + /** + * An ACK code returned by MPD. This field is only valid if + * #code is MPD_ERROR_SERVER. + */ + enum mpd_server_error server; + + /** + * The command list index of the command which emitted this + * error. Zero if no command list was used. + */ + int at; + + /** + * The operating system's error code (i.e. errno or WSAGetLastError()). + */ + int system; + + /** + * Human readable error message; may be NULL if not available. + * This pointer is allocated on the heap, and must be freed by + * calling mpd_error_clear() or mpd_error_deinit(). + */ + char *message; +}; + +/** + * Initialize a new mpd_error_info struct. + */ +static inline void +mpd_error_init(struct mpd_error_info *error) +{ + assert(error != NULL); + + error->code = MPD_ERROR_SUCCESS; +} + +/** + * Free memory allocated by an mpd_error_info struct. + */ +void +mpd_error_deinit(struct mpd_error_info *error); + +/** + * Clear the error (if any), and free its memory. + */ +static inline void +mpd_error_clear(struct mpd_error_info *error) +{ + mpd_error_deinit(error); + + error->code = MPD_ERROR_SUCCESS; +} + +/** + * Returns true if an error has occurred. + */ +static inline bool +mpd_error_is_defined(const struct mpd_error_info *error) +{ + return error->code != MPD_ERROR_SUCCESS; +} + +/** + * Returns true if the error is not recoverable + */ +static inline bool +mpd_error_is_fatal(const struct mpd_error_info *error) +{ + return error->code != MPD_ERROR_SUCCESS && + error->code != MPD_ERROR_ARGUMENT && + error->code != MPD_ERROR_STATE && + error->code != MPD_ERROR_SERVER; +} + +static inline const char * +mpd_error_get_message(const struct mpd_error_info *error) +{ + assert(error != NULL); + assert(error->code != MPD_ERROR_SUCCESS); + assert(error->message != NULL || error->code == MPD_ERROR_OOM); + + if (error->message == NULL) + return "Out of memory"; + + return error->message; +} + +/** + * Sets an error code. + */ +static inline void +mpd_error_code(struct mpd_error_info *error, enum mpd_error code) +{ + assert(!mpd_error_is_defined(error)); + + error->code = code; + error->message = NULL; +} + +/** + * Sets an ACK error code. + */ +static inline void +mpd_error_server(struct mpd_error_info *error, + enum mpd_server_error server, int at) +{ + mpd_error_code(error, MPD_ERROR_SERVER); + error->server = server; + error->at = at; +} + +/** + * Sets an system error code. + */ +static inline void +mpd_error_system(struct mpd_error_info *error, int system_error_code) +{ + mpd_error_code(error, MPD_ERROR_SYSTEM); + error->system = system_error_code; +} + +/** + * Sets an error message. Prior to that, an error code must have been + * set. + */ +void +mpd_error_message(struct mpd_error_info *error, const char *message); + +/** + * Sets an error message (non-terminated string with specified + * length). Prior to that, an error code must have been set. + */ +void +mpd_error_message_n(struct mpd_error_info *error, + const char *message, size_t length); + +/** + * Sets an error message (printf() like format). Prior to that, an + * error code must have been set. + */ +mpd_printf(2, 3) +void +mpd_error_printf(struct mpd_error_info *error, const char *fmt, ...); + +/** + * Sets MPD_ERROR_SYSTEM and a message provided by the OS. + */ +void +mpd_error_system_message(struct mpd_error_info *error, int code); + +/** + * Sets MPD_ERROR_SYSTEM and strerror(errno). + */ +void +mpd_error_errno(struct mpd_error_info *error); + +/** + * An entity parser has failed. The error is set depending on the + * value of errno (ENOMEM or EINVAL). + */ +void +mpd_error_entity(struct mpd_error_info *error); + +/** + * Copies a #mpd_error_info onto another one. Duplicates the error + * message. + * + * @return true if there was no error in #src, false if an error + * condition is stored in #src (in both cases, the information is + * copied) + */ +bool +mpd_error_copy(struct mpd_error_info *dest, const struct mpd_error_info *src); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/internal.h b/1_6.h12_dev/libmpdclient/src/internal.h new file mode 100644 index 0000000..726630e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/internal.h @@ -0,0 +1,164 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_INTERNAL_H +#define MPD_INTERNAL_H + +#include + +#include "ierror.h" + +#include + +/** + * This opaque object represents a connection to a MPD server. Call + * mpd_connection_new() to create a new instance. + */ +struct mpd_connection { + /** + * The connection settings. + */ + struct mpd_settings *settings; + + /** + * The version number received by the MPD server. + */ + unsigned version[3]; + + /** + * The last error which occurred. This attribute must be + * cleared with mpd_connection_clear_error() before another + * command may be executed. + */ + struct mpd_error_info error; + + /** + * The backend of the MPD connection. + */ + struct mpd_async *async; + + /** + * The timeout for all commands. If the MPD server does not + * respond within this time span, the connection is assumed to + * be dead. + */ + struct timeval timeout; + + /** + * The parser object used to parse response lines received + * from the MPD server. + */ + struct mpd_parser *parser; + + /** + * Are we currently receiving the response of a command? + */ + bool receiving; + + /** + * Sending a command list right now? + */ + bool sending_command_list; + + /** + * Sending a command list with "command_list_ok"? + */ + bool sending_command_list_ok; + + /** + * Did the caller finish reading one sub response? + * (i.e. list_OK was received, and mpd_recv_pair() has + * returned NULL) + */ + bool discrete_finished; + + /** + * The number of list_OK responses remaining in the command + * list response. + */ + int command_list_remaining; + + /** + * Declare the validity of the #pair attribute. + */ + enum { + /** + * There is no pair currently. + */ + PAIR_STATE_NONE, + + /** + * The NULL pair has been enqueued with + * mpd_enqueue_pair(). + */ + PAIR_STATE_NULL, + + /** + * A pair has been enqueued with mpd_enqueue_pair(). + */ + PAIR_STATE_QUEUED, + + /** + * There is a pair, and it has been delivered to the + * caller via mpd_recv_pair(). We're waiting for him + * to call mpd_return_pair(). + */ + PAIR_STATE_FLOATING, + } pair_state; + + /** + * The name-value pair which was "unread" with + * mpd_enqueue_pair(). The special value #PAIR_NONE denotes + * that this value is empty, while NULL means that somebody + * "unread" the NULL pointer. + */ + struct mpd_pair pair; + + /** + * The search request which is being built, committed by + * mpd_search_commit(). + */ + char *request; +}; + +/** + * Copies the error state from connection->sync to connection->error. + */ +void +mpd_connection_sync_error(struct mpd_connection *connection); + +static inline const struct timeval * +mpd_connection_timeout(const struct mpd_connection *connection) +{ + return connection->timeout.tv_sec != 0 || + connection->timeout.tv_usec != 0 + ? &connection->timeout + : NULL; +} + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/isend.h b/1_6.h12_dev/libmpdclient/src/isend.h new file mode 100644 index 0000000..c401a9d --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/isend.h @@ -0,0 +1,91 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_ISEND_H +#define MPD_ISEND_H + +#include + +struct mpd_connection; + +/** + * Sends a command without arguments to the server, but does not + * update the "receiving" flag nor the "listOks" counter. This is + * used internally by the command_list functions. + */ +bool +mpd_send_command2(struct mpd_connection *connection, const char *command); + +bool +mpd_send_int_command(struct mpd_connection *connection, const char *command, + int arg); + +bool +mpd_send_int2_command(struct mpd_connection *connection, const char *command, + int arg1, int arg2); + +bool +mpd_send_int3_command(struct mpd_connection *connection, const char *command, + int arg1, int arg2, int arg3); + +bool +mpd_send_float_command(struct mpd_connection *connection, const char *command, + float arg); + +bool +mpd_send_s_u_command(struct mpd_connection *connection, const char *command, + const char *arg1, unsigned arg2); + +bool +mpd_send_range_command(struct mpd_connection *connection, const char *command, + unsigned arg1, unsigned arg2); + +/** + * Send command with one integer argument followed by a range argument. + */ +bool +mpd_send_i_range_command(struct mpd_connection *connection, + const char *command, int arg1, + unsigned start, unsigned end); + +bool +mpd_send_range_u_command(struct mpd_connection *connection, + const char *command, + unsigned start, unsigned end, unsigned arg2); + +bool +mpd_send_ll_command(struct mpd_connection *connection, const char *command, + long long arg); + +/** + * Sends all pending data from the output buffer to MPD. + */ +bool +mpd_flush(struct mpd_connection *connection); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/iso8601.c b/1_6.h12_dev/libmpdclient/src/iso8601.c new file mode 100644 index 0000000..0eb0249 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/iso8601.c @@ -0,0 +1,154 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "iso8601.h" + +#include +#include + +#ifdef WIN32 +static inline struct tm * +gmtime_r(const time_t *timep, struct tm *result) +{ + (void)result; + + /* Windows does not have thread-safe functions. That + sucks. */ + return gmtime(timep); +} +#endif /* WIN32 */ + +/** + * @return the current time zone offset in seconds + */ +static time_t +timezone_offset(void) +{ + const time_t t0 = 1234567890; + time_t t = t0; + struct tm tm_buffer, *tm; + + tm = gmtime_r(&t, &tm_buffer); + if (tm == NULL) + return 0; + + /* force the daylight saving time to be off; gmtime_r() should + have set this already */ + tm->tm_isdst = 0; + + t = mktime(tm); + if (t == -1) + return 0; + + return t0 - t; +} + +/** + * Unfortunately, the useful timegm() function is a GNU extension, and + * mktime() returns a stamp relative to the current time zone. This + * function emulates timegm() by subtracting the time zone offset, see + * timezone_offset(). + */ +static time_t +timegm_emulation(struct tm *tm) +{ + time_t t = mktime(tm); + if (t == -1) + return 0; + + return t + timezone_offset(); +} + +time_t +iso8601_datetime_parse(const char *input) +{ + char *endptr; + unsigned year, month, day, hour, minute, second; + struct tm tm; + + year = strtoul(input, &endptr, 10); + if (year < 1970 || year >= 3000 || *endptr != '-') + /* beware of the Y3K problem! */ + return 0; + + input = endptr + 1; + month = strtoul(input, &endptr, 10); + if (month < 1 || month > 12 || *endptr != '-') + return 0; + + input = endptr + 1; + day = strtoul(input, &endptr, 10); + if (day < 1 || day > 31 || *endptr != 'T') + return 0; + + input = endptr + 1; + hour = strtoul(input, &endptr, 10); + if (endptr == input || hour >= 24 || *endptr != ':') + return 0; + + input = endptr + 1; + minute = strtoul(input, &endptr, 10); + if (endptr == input || minute >= 60 || *endptr != ':') + return 0; + + input = endptr + 1; + second = strtoul(input, &endptr, 10); + if (endptr == input || second >= 60 || + (*endptr != 0 && *endptr != 'Z')) + return 0; + + tm.tm_year = year - 1900; + tm.tm_mon = month - 1; + tm.tm_mday = day; + tm.tm_hour = hour; + tm.tm_min = minute; + tm.tm_sec = second; + + /* force the daylight saving time to be off, same as in + timezone_offset() */ + tm.tm_isdst = 0; + + return timegm_emulation(&tm); +} + +bool +iso8601_datetime_format(char *buffer, size_t size, time_t t) +{ + struct tm tm_buffer, *tm; + + tm = gmtime_r(&t, &tm_buffer); + if (tm == NULL) + return false; + +#ifdef WIN32 + strftime(buffer, size, "%Y-%m-%dT%H:%M:%SZ", tm); +#else + strftime(buffer, size, "%FT%TZ", tm); +#endif + return true; +} diff --git a/1_6.h12_dev/libmpdclient/src/iso8601.h b/1_6.h12_dev/libmpdclient/src/iso8601.h new file mode 100644 index 0000000..d13fc0e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/iso8601.h @@ -0,0 +1,56 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_ISO8601_H +#define MPD_ISO8601_H + +#include +#include + +/** + * Parses an ISO8601 time stamp to a #time_t POSIX UTC time stamp. + * + * @param input the ISO8601 time stamp in the form + * "YYYY-MM-DDTHH:MM:SS"; it is silently assumed that the time zone is + * UTC ("Z") + * @return the POSIX UTC time stamp, or 0 on error + */ +time_t +iso8601_datetime_parse(const char *input); + +/** + * Formats a POSIX UTC time stamp into an ISO8601 string. + * + * @param buffer the destination string buffer + * @param size the size of the buffer, including the null terminator + * @return true on success, false on failure + */ +bool +iso8601_datetime_format(char *buffer, size_t size, time_t t); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/list.c b/1_6.h12_dev/libmpdclient/src/list.c new file mode 100644 index 0000000..4f9eeb6 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/list.c @@ -0,0 +1,91 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include "internal.h" +#include "isend.h" + +#include + +bool +mpd_command_list_begin(struct mpd_connection *connection, bool discrete_ok) +{ + bool success; + + assert(connection != NULL); + + if (connection->sending_command_list) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "already in command list mode"); + return false; + } + + success = mpd_send_command2(connection, + discrete_ok + ? "command_list_ok_begin" + : "command_list_begin"); + if (!success) + return false; + + connection->sending_command_list = true; + connection->sending_command_list_ok = discrete_ok; + connection->command_list_remaining = 0; + connection->discrete_finished = false; + + return true; +} + +bool +mpd_command_list_end(struct mpd_connection *connection) +{ + bool success; + + assert(connection != NULL); + + if (!connection->sending_command_list) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "not in command list mode"); + return false; + } + + connection->sending_command_list = false; + success = mpd_send_command(connection, "command_list_end", NULL); + connection->sending_command_list = true; + if (!success) + return false; + + assert(connection->receiving); + return true; +} diff --git a/1_6.h12_dev/libmpdclient/src/message.c b/1_6.h12_dev/libmpdclient/src/message.c new file mode 100644 index 0000000..361aba7 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/message.c @@ -0,0 +1,103 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include + +#include +#include +#include +#include + +struct mpd_message { + char *channel; + + char *text; +}; + +struct mpd_message * +mpd_message_begin(const struct mpd_pair *pair) +{ + struct mpd_message *output; + + assert(pair != NULL); + + if (strcmp(pair->name, "channel") != 0) + return NULL; + + output = malloc(sizeof(*output)); + if (output == NULL) + return NULL; + + output->channel = strdup(pair->value); + output->text = NULL; + + return output; +} + +bool +mpd_message_feed(struct mpd_message *output, const struct mpd_pair *pair) +{ + if (strcmp(pair->name, "channel") == 0) + return false; + + if (strcmp(pair->name, "message") == 0) { + if (output->text != NULL) + free(output->text); + + output->text = strdup(pair->value); + } + + return true; +} + +void +mpd_message_free(struct mpd_message *message) +{ + assert(message != NULL); + + free(message->channel); + free(message->text); + free(message); +} + +const char * +mpd_message_get_channel(const struct mpd_message *message) +{ + assert(message != NULL); + + return message->channel; +} + +const char * +mpd_message_get_text(const struct mpd_message *message) +{ + assert(message != NULL); + + return message->text; +} diff --git a/1_6.h12_dev/libmpdclient/src/mixer.c b/1_6.h12_dev/libmpdclient/src/mixer.c new file mode 100644 index 0000000..8cfd9e7 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/mixer.c @@ -0,0 +1,62 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include "isend.h" +#include "run.h" + +bool +mpd_send_set_volume(struct mpd_connection *connection, unsigned volume) +{ + return mpd_send_int_command(connection, "setvol", volume); +} + +bool +mpd_run_set_volume(struct mpd_connection *connection, unsigned volume) +{ + return mpd_run_check(connection) && + mpd_send_set_volume(connection, volume) && + mpd_response_finish(connection); +} + +bool +mpd_send_change_volume(struct mpd_connection *connection, int relative_volume) +{ + return mpd_send_int_command(connection, "volume", relative_volume); +} + +bool +mpd_run_change_volume(struct mpd_connection *connection, int relative_volume) +{ + return mpd_run_check(connection) && + mpd_send_change_volume(connection, relative_volume) && + mpd_response_finish(connection); +} + diff --git a/1_6.h12_dev/libmpdclient/src/output.c b/1_6.h12_dev/libmpdclient/src/output.c new file mode 100644 index 0000000..7f7686e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/output.c @@ -0,0 +1,117 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include + +#include +#include +#include + +struct mpd_output { + unsigned id; + char *name; + bool enabled; +}; + +struct mpd_output * +mpd_output_begin(const struct mpd_pair *pair) +{ + struct mpd_output *output; + + assert(pair != NULL); + + if (strcmp(pair->name, "outputid") != 0) + return NULL; + + output = malloc(sizeof(*output)); + if (output == NULL) + return NULL; + + output->id = atoi(pair->value); + + output->name = NULL; + output->enabled = false; + + return output; +} + +bool +mpd_output_feed(struct mpd_output *output, const struct mpd_pair *pair) +{ + if (strcmp(pair->name, "outputid") == 0) + return false; + + if (strcmp(pair->name, "outputname") == 0) { + if (output->name != NULL) + free(output->name); + + output->name = strdup(pair->value); + } else if (strcmp(pair->name, "outputenabled") == 0) + output->enabled = atoi(pair->value) != 0; + + return true; +} + +void +mpd_output_free(struct mpd_output *output) +{ + assert(output != NULL); + + if (output->name != NULL) + free(output->name); + free(output); +} + +unsigned +mpd_output_get_id(const struct mpd_output *output) +{ + assert(output != NULL); + + return output->id; +} + +const char * +mpd_output_get_name(const struct mpd_output *output) +{ + assert(output != NULL); + + return output->name; +} + +bool +mpd_output_get_enabled(const struct mpd_output *output) +{ + assert(output != NULL); + + return output->enabled; +} diff --git a/1_6.h12_dev/libmpdclient/src/parser.c b/1_6.h12_dev/libmpdclient/src/parser.c new file mode 100644 index 0000000..8faba71 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/parser.c @@ -0,0 +1,207 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include + +#include +#include +#include + +struct mpd_parser { +#ifndef NDEBUG + /** + * This is used by assertions in the "get" functions below. + */ + enum mpd_parser_result result; +#endif + + union { + bool discrete; + + struct { + enum mpd_server_error server; + unsigned at; + const char *message; + } error; + + struct { + const char *name, *value; + } pair; + } u; +}; + +struct mpd_parser * +mpd_parser_new(void) +{ + struct mpd_parser *parser = malloc(sizeof(*parser)); + if (parser == NULL) + return NULL; + +#ifndef NDEBUG + parser->result = MPD_PARSER_MALFORMED; +#endif + + return parser; +} + +void +mpd_parser_free(struct mpd_parser *parser) +{ + free(parser); +} + +static inline enum mpd_parser_result +set_result(struct mpd_parser *parser, enum mpd_parser_result result) +{ +#ifndef NDEBUG + /* this value exists only in the debug build, and is used by + assertions in the "get" functions below */ + parser->result = result; +#else + /* suppress "unused" warning */ + (void)parser; +#endif + + return result; +} + +enum mpd_parser_result +mpd_parser_feed(struct mpd_parser *parser, char *line) +{ + if (strcmp(line, "OK") == 0) { + parser->u.discrete = false; + return set_result(parser, MPD_PARSER_SUCCESS); + } else if (strcmp(line, "list_OK") == 0) { + parser->u.discrete = true; + return set_result(parser, MPD_PARSER_SUCCESS); + } else if (memcmp(line, "ACK", 3) == 0) { + char *p, *q; + + parser->u.error.server = MPD_SERVER_ERROR_UNK; + parser->u.error.at = 0; + parser->u.error.message = NULL; + + /* parse [ACK@AT] */ + + p = strchr(line + 3, '['); + if (p == NULL) + return set_result(parser, MPD_PARSER_ERROR); + + parser->u.error.server = strtol(p + 1, &p, 10); + if (*p == '@') + parser->u.error.at = strtol(p + 1, &p, 10); + + q = strchr(p, ']'); + if (q == NULL) + return set_result(parser, MPD_PARSER_MALFORMED); + + /* skip the {COMMAND} */ + + p = q + 1; + q = strchr(p, '{'); + if (q != NULL) { + q = strchr(p, '}'); + if (q != NULL) + p = q + 1; + } + + /* obtain error message */ + + while (*p == ' ') + ++p; + + if (*p != 0) + parser->u.error.message = p; + + return set_result(parser, MPD_PARSER_ERROR); + } else { + /* so this must be a name-value pair */ + + char *p; + + p = strchr(line, ':'); + if (p == NULL || p[1] != ' ') + return set_result(parser, MPD_PARSER_MALFORMED); + + *p = 0; + + parser->u.pair.name = line; + parser->u.pair.value = p + 2; + + return set_result(parser, MPD_PARSER_PAIR); + } +} + +bool +mpd_parser_is_discrete(const struct mpd_parser *parser) +{ + assert(parser->result == MPD_PARSER_SUCCESS); + + return parser->u.discrete; +} + +enum mpd_server_error +mpd_parser_get_server_error(const struct mpd_parser *parser) +{ + assert(parser->result == MPD_PARSER_ERROR); + + return parser->u.error.server; +} + +unsigned +mpd_parser_get_at(const struct mpd_parser *parser) +{ + assert(parser->result == MPD_PARSER_ERROR); + + return parser->u.error.at; +} + +const char * +mpd_parser_get_message(const struct mpd_parser *parser) +{ + assert(parser->result == MPD_PARSER_ERROR); + + return parser->u.error.message; +} + +const char * +mpd_parser_get_name(const struct mpd_parser *parser) +{ + assert(parser->result == MPD_PARSER_PAIR); + + return parser->u.pair.name; +} + +const char * +mpd_parser_get_value(const struct mpd_parser *parser) +{ + assert(parser->result == MPD_PARSER_PAIR); + + return parser->u.pair.value; +} diff --git a/1_6.h12_dev/libmpdclient/src/password.c b/1_6.h12_dev/libmpdclient/src/password.c new file mode 100644 index 0000000..7748cc8 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/password.c @@ -0,0 +1,49 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include "run.h" + +#include + +bool +mpd_send_password(struct mpd_connection *connection, const char *password) +{ + return mpd_send_command(connection, "password", password, NULL); +} + +bool +mpd_run_password(struct mpd_connection *connection, const char *password) +{ + return mpd_run_check(connection) && + mpd_send_password(connection, password) && + mpd_response_finish(connection); +} + diff --git a/1_6.h12_dev/libmpdclient/src/player.c b/1_6.h12_dev/libmpdclient/src/player.c new file mode 100644 index 0000000..f39b30e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/player.c @@ -0,0 +1,312 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include +#include "isend.h" +#include "run.h" + +#include +#include + +bool +mpd_send_current_song(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "currentsong", NULL); +} + +struct mpd_song * +mpd_run_current_song(struct mpd_connection *connection) +{ + struct mpd_song *song; + + if (!mpd_run_check(connection) || !mpd_send_current_song(connection)) + return NULL; + + song = mpd_recv_song(connection); + if (song == NULL) + return NULL; + + if (!mpd_response_finish(connection)) { + mpd_song_free(song); + return NULL; + } + + return song; +} + +bool +mpd_send_play(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "play", NULL); +} + +bool +mpd_run_play(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && mpd_send_play(connection) && + mpd_response_finish(connection); +} + +bool +mpd_send_play_pos(struct mpd_connection *connection, unsigned song_pos) +{ + return mpd_send_int_command(connection, "play", song_pos); +} + +bool +mpd_run_play_pos(struct mpd_connection *connection, unsigned song_pos) +{ + return mpd_run_check(connection) && + mpd_send_play_pos(connection, song_pos) && + mpd_response_finish(connection); +} + +bool +mpd_send_play_id(struct mpd_connection *connection, unsigned id) +{ + return mpd_send_int_command(connection, "playid", id); +} + +bool +mpd_run_play_id(struct mpd_connection *connection, unsigned song_id) +{ + return mpd_run_check(connection) && + mpd_send_play_id(connection, song_id) && + mpd_response_finish(connection); +} + +bool +mpd_send_stop(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "stop", NULL); +} + +bool +mpd_run_stop(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && mpd_send_stop(connection) && + mpd_response_finish(connection); +} + +bool +mpd_send_toggle_pause(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "pause", NULL); +} + +bool +mpd_run_toggle_pause(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && + mpd_send_toggle_pause(connection) && + mpd_response_finish(connection); +} + +bool +mpd_send_pause(struct mpd_connection *connection, bool mode) +{ + return mpd_send_int_command(connection, "pause", mode); +} + +bool +mpd_run_pause(struct mpd_connection *connection, bool mode) +{ + return mpd_run_check(connection) && mpd_send_pause(connection, mode) && + mpd_response_finish(connection); +} + +bool +mpd_send_next(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "next", NULL); +} + +bool +mpd_run_next(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && mpd_send_next(connection) && + mpd_response_finish(connection); +} + +bool +mpd_send_previous(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "previous", NULL); +} + +bool +mpd_run_previous(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && mpd_send_previous(connection) && + mpd_response_finish(connection); +} + +bool +mpd_send_seek_pos(struct mpd_connection *connection, + unsigned song_pos, unsigned t) +{ + return mpd_send_int2_command(connection, "seek", song_pos, t); +} + +bool +mpd_run_seek_pos(struct mpd_connection *connection, + unsigned song_pos, unsigned t) +{ + return mpd_run_check(connection) && + mpd_send_seek_pos(connection, song_pos, t) && + mpd_response_finish(connection); +} + +bool +mpd_send_seek_id(struct mpd_connection *connection, unsigned id, unsigned t) +{ + return mpd_send_int2_command(connection, "seekid", id, t); +} + +bool +mpd_run_seek_id(struct mpd_connection *connection, + unsigned song_id, unsigned t) +{ + return mpd_run_check(connection) && + mpd_send_seek_id(connection, song_id, t) && + mpd_response_finish(connection); +} + +bool +mpd_send_repeat(struct mpd_connection *connection, bool mode) +{ + return mpd_send_int_command(connection, "repeat", mode); +} + +bool +mpd_run_repeat(struct mpd_connection *connection, bool mode) +{ + return mpd_run_check(connection) && + mpd_send_repeat(connection, mode) && + mpd_response_finish(connection); +} + +bool +mpd_send_random(struct mpd_connection *connection, bool mode) +{ + return mpd_send_int_command(connection, "random", mode); +} + +bool +mpd_run_random(struct mpd_connection *connection, bool mode) +{ + return mpd_run_check(connection) && + mpd_send_random(connection, mode) && + mpd_response_finish(connection); +} + +bool +mpd_send_single(struct mpd_connection *connection, bool mode) +{ + return mpd_send_int_command(connection, "single", mode); +} + +bool +mpd_run_single(struct mpd_connection *connection, bool mode) +{ + return mpd_run_check(connection) && + mpd_send_single(connection, mode) && + mpd_response_finish(connection); +} + +bool +mpd_send_consume(struct mpd_connection *connection, bool mode) +{ + return mpd_send_int_command(connection, "consume", mode); +} + +bool +mpd_run_consume(struct mpd_connection *connection, bool mode) +{ + return mpd_run_check(connection) && + mpd_send_consume(connection, mode) && + mpd_response_finish(connection); +} + +bool +mpd_send_crossfade(struct mpd_connection *connection, unsigned seconds) +{ + return mpd_send_int_command(connection, "crossfade", seconds); +} + +bool +mpd_run_crossfade(struct mpd_connection *connection, unsigned seconds) +{ + return mpd_run_check(connection) && + mpd_send_crossfade(connection, seconds) && + mpd_response_finish(connection); +} + +bool +mpd_send_mixrampdb(struct mpd_connection *connection, float db) +{ + return mpd_send_float_command(connection, "mixrampdb", db); +} + +bool +mpd_run_mixrampdb(struct mpd_connection *connection, float db) +{ + return mpd_run_check(connection) && + mpd_send_mixrampdb(connection, db) && + mpd_response_finish(connection); +} + +bool +mpd_send_mixrampdelay(struct mpd_connection *connection, float seconds) +{ + return mpd_send_float_command(connection, "mixrampdelay", seconds); +} + +bool +mpd_run_mixrampdelay(struct mpd_connection *connection, float seconds) +{ + return mpd_run_check(connection) && + mpd_send_mixrampdelay(connection, seconds) && + mpd_response_finish(connection); +} + +bool +mpd_send_clearerror(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "clearerror", NULL); +} + +bool +mpd_run_clearerror(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && mpd_send_clearerror(connection) && + mpd_response_finish(connection); +} diff --git a/1_6.h12_dev/libmpdclient/src/playlist.c b/1_6.h12_dev/libmpdclient/src/playlist.c new file mode 100644 index 0000000..aca283d --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/playlist.c @@ -0,0 +1,144 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include "iso8601.h" +#include "uri.h" + +#include +#include +#include +#include + +struct mpd_playlist { + char *path; + + /** + * The POSIX UTC time stamp of the last modification, or 0 if + * that is unknown. + */ + time_t last_modified; +}; + +static struct mpd_playlist * +mpd_playlist_new(const char *path) +{ + struct mpd_playlist *playlist; + + assert(path != NULL); + assert(mpd_verify_local_uri(path)); + + playlist = malloc(sizeof(*playlist)); + if (playlist == NULL) + /* out of memory */ + return NULL; + + playlist->path = strdup(path); + if (playlist->path == NULL) { + /* out of memory */ + free(playlist); + return NULL; + } + + playlist->last_modified = 0; + + return playlist; +} + +void +mpd_playlist_free(struct mpd_playlist *playlist) +{ + assert(playlist != NULL); + assert(playlist->path != NULL); + + free(playlist->path); + free(playlist); +} + +struct mpd_playlist * +mpd_playlist_dup(const struct mpd_playlist *playlist) +{ + assert(playlist != NULL); + assert(playlist->path != NULL); + + struct mpd_playlist *copy = mpd_playlist_new(playlist->path); + copy->last_modified = playlist->last_modified; + return copy; +} + +const char * +mpd_playlist_get_path(const struct mpd_playlist *playlist) +{ + assert(playlist != NULL); + + return playlist->path; +} + +time_t +mpd_playlist_get_last_modified(const struct mpd_playlist *playlist) +{ + return playlist->last_modified; +} + +struct mpd_playlist * +mpd_playlist_begin(const struct mpd_pair *pair) +{ + assert(pair != NULL); + assert(pair->name != NULL); + assert(pair->value != NULL); + + if (strcmp(pair->name, "playlist") != 0 || + !mpd_verify_local_uri(pair->value)) { + errno = EINVAL; + return NULL; + } + + return mpd_playlist_new(pair->value); +} + +bool +mpd_playlist_feed(struct mpd_playlist *playlist, const struct mpd_pair *pair) +{ + assert(pair != NULL); + assert(pair->name != NULL); + assert(pair->value != NULL); + + if (strcmp(pair->name, "playlist") == 0) + return false; + + if (strcmp(pair->name, "Last-Modified") == 0) + playlist->last_modified = + iso8601_datetime_parse(pair->value); + + return true; +} diff --git a/1_6.h12_dev/libmpdclient/src/queue.c b/1_6.h12_dev/libmpdclient/src/queue.c new file mode 100644 index 0000000..0bf37e3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/queue.c @@ -0,0 +1,436 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include +#include +#include +#include "internal.h" +#include "isend.h" +#include "run.h" + +#include +#include +#include + +bool +mpd_send_list_queue_meta(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "playlistinfo", NULL); +} + +bool +mpd_send_list_queue_range_meta(struct mpd_connection *connection, + unsigned start, unsigned end) +{ + return mpd_send_range_command(connection, "playlistinfo", start, end); +} + +bool +mpd_send_get_queue_song_pos(struct mpd_connection *connection, unsigned pos) +{ + return mpd_send_int_command(connection, "playlistinfo", pos); +} + +struct mpd_song * +mpd_run_get_queue_song_pos(struct mpd_connection *connection, unsigned pos) +{ + struct mpd_song *song; + + if (!mpd_run_check(connection) || + !mpd_send_get_queue_song_pos(connection, pos)) + return NULL; + + song = mpd_recv_song(connection); + if (!mpd_response_finish(connection) && song != NULL) { + mpd_song_free(song); + return NULL; + } + + return song; + +} + +bool +mpd_send_get_queue_song_id(struct mpd_connection *connection, unsigned id) +{ + return mpd_send_int_command(connection, "playlistid", id); +} + +struct mpd_song * +mpd_run_get_queue_song_id(struct mpd_connection *connection, unsigned id) +{ + struct mpd_song *song; + + if (!mpd_run_check(connection) || + !mpd_send_get_queue_song_id(connection, id)) + return NULL; + + song = mpd_recv_song(connection); + if (!mpd_response_finish(connection) && song != NULL) { + mpd_song_free(song); + return NULL; + } + + return song; + +} + +bool +mpd_send_queue_changes_meta(struct mpd_connection *connection, + unsigned version) +{ + return mpd_send_ll_command(connection, "plchanges", version); +} + +bool +mpd_send_queue_changes_brief(struct mpd_connection *connection, + unsigned version) +{ + return mpd_send_ll_command(connection, "plchangesposid", version); +} + +bool +mpd_recv_queue_change_brief(struct mpd_connection *connection, + unsigned *position_r, unsigned *id_r) +{ + struct mpd_pair *pair; + + pair = mpd_recv_pair_named(connection, "cpos"); + if (pair == NULL) + return false; + + *position_r = atoi(pair->value); + mpd_return_pair(connection, pair); + + pair = mpd_recv_pair_named(connection, "Id"); + if (pair == NULL) { + mpd_return_pair(connection, pair); + + if (!mpd_error_is_defined(&connection->error)) { + mpd_error_code(&connection->error, + MPD_ERROR_MALFORMED); + mpd_error_message(&connection->error, + "No id received"); + } + + return false; + } + + *id_r = atoi(pair->value); + mpd_return_pair(connection, pair); + + return !mpd_error_is_defined(&connection->error); +} + +bool +mpd_send_add(struct mpd_connection *connection, const char *file) +{ + return mpd_send_command(connection, "add", file, NULL); +} + +bool +mpd_run_add(struct mpd_connection *connection, const char *uri) +{ + return mpd_run_check(connection) && + mpd_send_add(connection, uri) && + mpd_response_finish(connection); +} + +bool +mpd_send_add_id(struct mpd_connection *connection, const char *file) +{ + return mpd_send_command(connection, "addid", file, NULL); +} + +bool +mpd_send_add_id_to(struct mpd_connection *connection, const char *uri, + unsigned to) +{ + return mpd_send_s_u_command(connection, "addid", uri, to); +} + +int +mpd_recv_song_id(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + int id = -1; + + pair = mpd_recv_pair_named(connection, "Id"); + if (pair != NULL) { + id = atoi(pair->value); + mpd_return_pair(connection, pair); + } + + return id; +} + +int +mpd_run_add_id(struct mpd_connection *connection, const char *file) +{ + int id; + + if (!mpd_run_check(connection) || + !mpd_send_add_id(connection, file)) + return -1; + + id = mpd_recv_song_id(connection); + + if (!mpd_response_finish(connection)) + id = -1; + + return id; +} + +int +mpd_run_add_id_to(struct mpd_connection *connection, const char *uri, + unsigned to) +{ + int id; + + if (!mpd_run_check(connection) || + !mpd_send_add_id_to(connection, uri, to)) + return -1; + + id = mpd_recv_song_id(connection); + + if (!mpd_response_finish(connection)) + id = -1; + + return id; +} + +bool +mpd_send_delete(struct mpd_connection *connection, unsigned pos) +{ + return mpd_send_int_command(connection, "delete", pos); +} + +bool +mpd_run_delete(struct mpd_connection *connection, unsigned pos) +{ + return mpd_run_check(connection) && + mpd_send_delete(connection, pos) && + mpd_response_finish(connection); +} + +bool +mpd_send_delete_range(struct mpd_connection *connection, + unsigned start, unsigned end) +{ + return mpd_send_range_command(connection, "delete", start, end); +} + +bool +mpd_run_delete_range(struct mpd_connection *connection, + unsigned start, unsigned end) +{ + return mpd_run_check(connection) && + mpd_send_delete_range(connection, start, end) && + mpd_response_finish(connection); +} + +bool +mpd_send_delete_id(struct mpd_connection *connection, unsigned id) +{ + return mpd_send_int_command(connection, "deleteid", id); +} + +bool +mpd_run_delete_id(struct mpd_connection *connection, unsigned id) +{ + return mpd_run_check(connection) && + mpd_send_delete_id(connection, id) && + mpd_response_finish(connection); +} + +bool +mpd_send_shuffle(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "shuffle", NULL); +} + +bool +mpd_run_shuffle(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && + mpd_send_shuffle(connection) && + mpd_response_finish(connection); +} + +bool +mpd_send_shuffle_range(struct mpd_connection *connection, unsigned start, unsigned end) +{ + return mpd_send_range_command(connection, "shuffle", start, end); +} + +bool +mpd_run_shuffle_range(struct mpd_connection *connection, + unsigned start, unsigned end) +{ + return mpd_run_check(connection) && + mpd_send_shuffle_range(connection, start, end) && + mpd_response_finish(connection); +} + +bool +mpd_send_clear(struct mpd_connection *connection) +{ + return mpd_send_command(connection, "clear", NULL); +} + +bool +mpd_run_clear(struct mpd_connection *connection) +{ + return mpd_run_check(connection) && + mpd_send_clear(connection) && + mpd_response_finish(connection); +} + +bool +mpd_send_move(struct mpd_connection *connection, unsigned from, unsigned to) +{ + return mpd_send_int2_command(connection, "move", from, to); +} + +bool +mpd_run_move(struct mpd_connection *connection, unsigned from, unsigned to) +{ + return mpd_run_check(connection) && + mpd_send_move(connection, from, to) && + mpd_response_finish(connection); +} + +bool +mpd_send_move_id(struct mpd_connection *connection, unsigned from, unsigned to) +{ + return mpd_send_int2_command(connection, "moveid", from, to); +} + +bool +mpd_run_move_id(struct mpd_connection *connection, unsigned from, unsigned to) +{ + return mpd_run_check(connection) && + mpd_send_move_id(connection, from, to) && + mpd_response_finish(connection); +} + +bool +mpd_send_move_range(struct mpd_connection *connection, + unsigned start, unsigned end, unsigned to) +{ + return mpd_send_range_u_command(connection, "move", start, end, to); +} + +bool +mpd_run_move_range(struct mpd_connection *connection, + unsigned start, unsigned end, unsigned to) +{ + return mpd_run_check(connection) && + mpd_send_move_range(connection, start, end, to) && + mpd_response_finish(connection); +} + +bool +mpd_send_swap(struct mpd_connection *connection, unsigned pos1, unsigned pos2) +{ + return mpd_send_int2_command(connection, "swap", pos1, pos2); +} + +bool +mpd_run_swap(struct mpd_connection *connection, unsigned pos1, unsigned pos2) +{ + return mpd_run_check(connection) && + mpd_send_swap(connection, pos1, pos2) && + mpd_response_finish(connection); +} + +bool +mpd_send_swap_id(struct mpd_connection *connection, unsigned id1, unsigned id2) +{ + return mpd_send_int2_command(connection, "swapid", id1, id2); +} + +bool +mpd_run_swap_id(struct mpd_connection *connection, unsigned id1, unsigned id2) +{ + return mpd_run_check(connection) && + mpd_send_swap_id(connection, id1, id2) && + mpd_response_finish(connection); +} + +bool +mpd_send_prio(struct mpd_connection *connection, int priority, + unsigned position) +{ + return mpd_send_int2_command(connection, "prio", priority, position); +} + +bool +mpd_run_prio(struct mpd_connection *connection, int priority, + unsigned position) +{ + return mpd_run_check(connection) && + mpd_send_prio(connection, priority, position) && + mpd_response_finish(connection); +} + +bool +mpd_send_prio_range(struct mpd_connection *connection, int priority, + unsigned start, unsigned end) +{ + return mpd_send_i_range_command(connection, "prio", priority, + start, end); +} + +bool +mpd_run_prio_range(struct mpd_connection *connection, int priority, + unsigned start, unsigned end) +{ + return mpd_run_check(connection) && + mpd_send_prio_range(connection, priority, start, end) && + mpd_response_finish(connection); +} + +bool +mpd_send_prio_id(struct mpd_connection *connection, int priority, + unsigned id) +{ + return mpd_send_int2_command(connection, "prioid", priority, id); +} + +bool +mpd_run_prio_id(struct mpd_connection *connection, int priority, + unsigned id) +{ + return mpd_run_check(connection) && + mpd_send_prio_id(connection, priority, id) && + mpd_response_finish(connection); +} diff --git a/1_6.h12_dev/libmpdclient/src/quote.c b/1_6.h12_dev/libmpdclient/src/quote.c new file mode 100644 index 0000000..0e2e4b1 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/quote.c @@ -0,0 +1,74 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "quote.h" + +#include + +/** + * Append a string to the buffer, and escape special characters. + */ +static char * +escape(char *dest, char *end, const char *value) +{ + while (*value != 0) { + char ch = *value++; + + if (dest >= end) + return NULL; + + if (ch == '"' || ch == '\\') { + *dest++ = '\\'; + + if (dest >= end) + return NULL; + } + + *dest++ = ch; + } + + return dest; +} + +char * +quote(char *dest, char *end, const char *value) +{ + if (dest >= end) + return NULL; + + *dest++ = '"'; + + dest = escape(dest, end, value); + + if (dest == NULL || dest >= end) + return NULL; + + *dest++ = '"'; + + return dest; +} diff --git a/1_6.h12_dev/libmpdclient/src/quote.h b/1_6.h12_dev/libmpdclient/src/quote.h new file mode 100644 index 0000000..39681fd --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/quote.h @@ -0,0 +1,44 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_QUOTE_H +#define MPD_QUOTE_H + +/** + * Enclose a string in double quotes, and escape special characters. + * + * @param dest the destination buffer + * @param end the end of the destination buffer (pointer to the first + * invalid byte) + * @param value the string to quote + * @return a pointer to the end of the quoted string + */ +char * +quote(char *dest, char *end, const char *value); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/rdirectory.c b/1_6.h12_dev/libmpdclient/src/rdirectory.c new file mode 100644 index 0000000..6a0e154 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/rdirectory.c @@ -0,0 +1,67 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include "internal.h" + +#include + +struct mpd_directory * +mpd_recv_directory(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + struct mpd_directory *directory; + + pair = mpd_recv_pair_named(connection, "directory"); + if (pair == NULL) + return NULL; + + directory = mpd_directory_begin(pair); + mpd_return_pair(connection, pair); + if (directory == NULL) { + mpd_error_entity(&connection->error); + return NULL; + } + + while ((pair = mpd_recv_pair(connection)) != NULL && + mpd_directory_feed(directory, pair)) + mpd_return_pair(connection, pair); + + if (mpd_error_is_defined(&connection->error)) { + assert(pair == NULL); + + mpd_directory_free(directory); + return NULL; + } + + /* unread this pair for the next mpd_recv_directory() call */ + mpd_enqueue_pair(connection, pair); + + return directory; +} diff --git a/1_6.h12_dev/libmpdclient/src/recv.c b/1_6.h12_dev/libmpdclient/src/recv.c new file mode 100644 index 0000000..0470758 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/recv.c @@ -0,0 +1,200 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include "internal.h" +#include "iasync.h" +#include "sync.h" + +#include +#include + +struct mpd_pair * +mpd_recv_pair(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + char *line; + enum mpd_parser_result result; + const char *msg; + + assert(connection != NULL); + + if (mpd_error_is_defined(&connection->error)) + return NULL; + + /* check if the caller has returned the previous pair */ + assert(connection->pair_state != PAIR_STATE_FLOATING); + + if (connection->pair_state == PAIR_STATE_NULL) { + /* return the enqueued NULL pair */ + connection->pair_state = PAIR_STATE_NONE; + return NULL; + } + + if (connection->pair_state == PAIR_STATE_QUEUED) { + /* dequeue the pair from mpd_enqueue_pair() */ + pair = &connection->pair; + connection->pair_state = PAIR_STATE_FLOATING; + return pair; + } + + assert(connection->pair_state == PAIR_STATE_NONE); + + if (!connection->receiving || + (connection->sending_command_list && + connection->command_list_remaining > 0 && + connection->discrete_finished)) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "already done processing current command"); + return NULL; + } + + line = mpd_sync_recv_line(connection->async, + mpd_connection_timeout(connection)); + if (line == NULL) { + connection->receiving = false; + connection->sending_command_list = false; + + mpd_connection_sync_error(connection); + return NULL; + } + + result = mpd_parser_feed(connection->parser, line); + switch (result) { + case MPD_PARSER_MALFORMED: + mpd_error_code(&connection->error, MPD_ERROR_MALFORMED); + mpd_error_message(&connection->error, + "Failed to parse MPD response"); + connection->receiving = false; + return NULL; + + case MPD_PARSER_SUCCESS: + if (!mpd_parser_is_discrete(connection->parser)) { + if (connection->sending_command_list && + connection->command_list_remaining > 0) { + mpd_error_code(&connection->error, + MPD_ERROR_MALFORMED); + mpd_error_message(&connection->error, + "expected more list_OK's"); + connection->command_list_remaining = 0; + } + + connection->receiving = false; + connection->sending_command_list = false; + connection->discrete_finished = false; + } else { + if (!connection->sending_command_list || + connection->command_list_remaining == 0) { + mpd_error_code(&connection->error, + MPD_ERROR_MALFORMED); + mpd_error_message(&connection->error, + "got an unexpected list_OK"); + } else { + connection->discrete_finished = true; + --connection->command_list_remaining; + } + } + + return NULL; + + case MPD_PARSER_ERROR: + connection->receiving = false; + connection->sending_command_list = false; + mpd_error_server(&connection->error, + mpd_parser_get_server_error(connection->parser), + mpd_parser_get_at(connection->parser)); + msg = mpd_parser_get_message(connection->parser); + if (msg == NULL) + msg = "Unspecified MPD error"; + mpd_error_message(&connection->error, msg); + return NULL; + + case MPD_PARSER_PAIR: + pair = &connection->pair; + pair->name = mpd_parser_get_name(connection->parser); + pair->value = mpd_parser_get_value(connection->parser); + + connection->pair_state = PAIR_STATE_FLOATING; + return pair; + } + + /* unreachable */ + assert(false); + return NULL; +} + +struct mpd_pair * +mpd_recv_pair_named(struct mpd_connection *connection, const char *name) +{ + struct mpd_pair *pair; + + while ((pair = mpd_recv_pair(connection)) != NULL) { + if (strcmp(pair->name, name) == 0) + return pair; + + mpd_return_pair(connection, pair); + } + + return NULL; +} + +void +mpd_return_pair(struct mpd_connection *connection, + mpd_unused struct mpd_pair *pair) +{ + assert(connection != NULL); + assert(pair != NULL); + assert(connection->pair_state == PAIR_STATE_FLOATING); + assert(pair == &connection->pair); + + connection->pair_state = PAIR_STATE_NONE; +} + +void +mpd_enqueue_pair(struct mpd_connection *connection, struct mpd_pair *pair) +{ + assert(connection != NULL); + + if (pair != NULL) { + /* enqueue the pair which was returned by + mpd_recv_pair() */ + assert(connection->pair_state == PAIR_STATE_FLOATING); + assert(pair == &connection->pair); + assert(pair->name != NULL && pair->value != NULL); + + connection->pair_state = PAIR_STATE_QUEUED; + } else { + /* enqueue the NULL pair */ + assert(connection->pair_state == PAIR_STATE_NONE); + + connection->pair_state = PAIR_STATE_NULL; + } +} diff --git a/1_6.h12_dev/libmpdclient/src/resolver.c b/1_6.h12_dev/libmpdclient/src/resolver.c new file mode 100644 index 0000000..f347687 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/resolver.c @@ -0,0 +1,200 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "resolver.h" +#include "config.h" + +#include +#include +#include + +#ifdef WIN32 +# include +# include +#else +# include +# include +#ifdef ENABLE_TCP +# include +# include +# include +#endif +#endif + +struct resolver { + enum { + TYPE_ZERO, TYPE_ONE, TYPE_ANY + } type; + +#ifdef ENABLE_TCP +#ifdef HAVE_GETADDRINFO + struct addrinfo *ai; + const struct addrinfo *next; +#else + struct sockaddr_in sin; +#endif +#endif + + struct resolver_address current; + +#ifndef WIN32 + struct sockaddr_un saun; +#endif +}; + +struct resolver * +resolver_new(const char *host, unsigned port) +{ + struct resolver *resolver; + + resolver = malloc(sizeof(*resolver)); + if (resolver == NULL) + return NULL; + + if (host[0] == '/' || host[0] == '@') { +#ifndef WIN32 + size_t path_length = strlen(host); + if (path_length >= sizeof(resolver->saun.sun_path)) { + free(resolver); + return NULL; + } + + resolver->saun.sun_family = AF_UNIX; + memcpy(resolver->saun.sun_path, host, path_length + 1); + + if (host[0] == '@') + /* abstract socket */ + resolver->saun.sun_path[0] = 0; + + resolver->current.family = PF_UNIX; + resolver->current.protocol = 0; + resolver->current.addrlen = sizeof(resolver->saun); + resolver->current.addr = (const struct sockaddr *)&resolver->saun; + resolver->type = TYPE_ONE; +#else /* WIN32 */ + /* there are no UNIX domain sockets on Windows */ + free(resolver); + return NULL; +#endif /* WIN32 */ + } else { +#ifdef ENABLE_TCP +#ifdef HAVE_GETADDRINFO + struct addrinfo hints; + char service[20]; + int ret; + + memset(&hints, 0, sizeof(hints)); + hints.ai_family = PF_UNSPEC; + hints.ai_socktype = SOCK_STREAM; + hints.ai_protocol = IPPROTO_TCP; + + snprintf(service, sizeof(service), "%d", port); + + ret = getaddrinfo(host, service, &hints, &resolver->ai); + if (ret != 0) { + free(resolver); + return NULL; + } + + resolver->next = resolver->ai; + resolver->type = TYPE_ANY; +#else + const struct hostent *he; + + he = gethostbyname(host); + if (he == NULL) { + free(resolver); + return NULL; + } + + if (he->h_addrtype != AF_INET) { + free(resolver); + return NULL; + } + + + memset(&resolver->sin, 0, sizeof(resolver->sin)); + resolver->sin.sin_family = AF_INET; + resolver->sin.sin_port = htons(port); + memcpy((char *)&resolver->sin.sin_addr.s_addr, + (char *)he->h_addr, he->h_length); + + resolver->current.family = PF_INET; + resolver->current.protocol = 0; + resolver->current.addrlen = sizeof(resolver->sin); + resolver->current.addr = (const struct sockaddr *)&resolver->sin; + + resolver->type = TYPE_ONE; +#endif +#else /* !ENABLE_TCP */ + (void)port; + free(resolver); + return NULL; +#endif + } + + return resolver; +} + +void +resolver_free(struct resolver *resolver) +{ +#if defined(ENABLE_TCP) && defined(HAVE_GETADDRINFO) + if (resolver->type == TYPE_ANY) + freeaddrinfo(resolver->ai); +#endif + free(resolver); +} + +const struct resolver_address * +resolver_next(struct resolver *resolver) +{ + if (resolver->type == TYPE_ZERO) + return NULL; + + if (resolver->type == TYPE_ONE) { + resolver->type = TYPE_ZERO; + return &resolver->current; + } + +#if defined(ENABLE_TCP) && defined(HAVE_GETADDRINFO) + if (resolver->next == NULL) + return NULL; + + resolver->current.family = resolver->next->ai_family; + resolver->current.protocol = resolver->next->ai_protocol; + resolver->current.addrlen = resolver->next->ai_addrlen; + resolver->current.addr = resolver->next->ai_addr; + + resolver->next = resolver->next->ai_next; + + return &resolver->current; +#else + return NULL; +#endif +} diff --git a/1_6.h12_dev/libmpdclient/src/resolver.h b/1_6.h12_dev/libmpdclient/src/resolver.h new file mode 100644 index 0000000..8759359 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/resolver.h @@ -0,0 +1,52 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef LIBMPDCLIENT_RESOLVER_H +#define LIBMPDCLIENT_RESOLVER_H + +#include + +struct resolver; + +struct resolver_address { + int family; + int protocol; + size_t addrlen; + const struct sockaddr *addr; +}; + +struct resolver * +resolver_new(const char *host, unsigned port); + +void +resolver_free(struct resolver *resolver); + +const struct resolver_address * +resolver_next(struct resolver *resolver); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/response.c b/1_6.h12_dev/libmpdclient/src/response.c new file mode 100644 index 0000000..d3a4c67 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/response.c @@ -0,0 +1,111 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include "internal.h" + +#include + +bool +mpd_response_finish(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + + if (mpd_error_is_defined(&connection->error)) + return false; + + if (connection->pair_state == PAIR_STATE_NULL) + /* reset the stored NULL pair because it will conflict + with an assertion within the loop */ + connection->pair_state = PAIR_STATE_NONE; + + while (connection->receiving) { + assert(!mpd_error_is_defined(&connection->error)); + + connection->discrete_finished = false; + + pair = mpd_recv_pair(connection); + assert(pair != NULL || !connection->receiving || + (connection->sending_command_list && + connection->discrete_finished) || + mpd_error_is_defined(&connection->error)); + + if (pair != NULL) + mpd_return_pair(connection, pair); + } + + return !mpd_error_is_defined(&connection->error); +} + +bool +mpd_response_next(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + + if (mpd_error_is_defined(&connection->error)) + return false; + + if (!connection->receiving) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "Response is already finished"); + return false; + } + + if (!connection->sending_command_list_ok) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "Not in command list mode"); + return false; + } + + while (!connection->discrete_finished) { + if (connection->command_list_remaining == 0 || + !connection->receiving) { + mpd_error_code(&connection->error, + MPD_ERROR_MALFORMED); + mpd_error_message(&connection->error, + "No list_OK found"); + return false; + } + + pair = mpd_recv_pair(connection); + if (pair != NULL) + mpd_return_pair(connection, pair); + else if (mpd_error_is_defined(&connection->error)) + return false; + } + + connection->discrete_finished = false; + return true; +} diff --git a/1_6.h12_dev/libmpdclient/src/rplaylist.c b/1_6.h12_dev/libmpdclient/src/rplaylist.c new file mode 100644 index 0000000..fff9572 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/rplaylist.c @@ -0,0 +1,67 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include "internal.h" + +#include + +struct mpd_playlist * +mpd_recv_playlist(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + struct mpd_playlist *playlist; + + pair = mpd_recv_pair_named(connection, "playlist"); + if (pair == NULL) + return NULL; + + playlist = mpd_playlist_begin(pair); + mpd_return_pair(connection, pair); + if (playlist == NULL) { + mpd_error_entity(&connection->error); + return NULL; + } + + while ((pair = mpd_recv_pair(connection)) != NULL && + mpd_playlist_feed(playlist, pair)) + mpd_return_pair(connection, pair); + + if (mpd_error_is_defined(&connection->error)) { + assert(pair == NULL); + + mpd_playlist_free(playlist); + return NULL; + } + + /* unread this pair for the next mpd_recv_playlist() call */ + mpd_enqueue_pair(connection, pair); + + return playlist; +} diff --git a/1_6.h12_dev/libmpdclient/src/run.c b/1_6.h12_dev/libmpdclient/src/run.c new file mode 100644 index 0000000..914efeb --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/run.c @@ -0,0 +1,53 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "run.h" +#include +#include +#include "internal.h" + +/** + * Checks whether it is possible to run a command now. + */ +bool +mpd_run_check(struct mpd_connection *connection) +{ + assert(connection != NULL); + + if (mpd_error_is_defined(&connection->error)) + return false; + + if (connection->sending_command_list) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "Not possible in command list mode"); + return false; + } + + return true; +} diff --git a/1_6.h12_dev/libmpdclient/src/run.h b/1_6.h12_dev/libmpdclient/src/run.h new file mode 100644 index 0000000..1cb41cd --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/run.h @@ -0,0 +1,47 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_RUN_H +#define MPD_RUN_H + +#include + +struct mpd_connection; + +/** + * Check if it's possible to run a single command via mpd_run_X(). + * This is not possible if the connection is currently sending a + * command list. + * + * @return true if that's possible, and false if not (error set + * accordingly) + */ +bool +mpd_run_check(struct mpd_connection *connection); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/search.c b/1_6.h12_dev/libmpdclient/src/search.c new file mode 100644 index 0000000..e348cc2 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/search.c @@ -0,0 +1,352 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include +#include +#include +#include "internal.h" +#include "iso8601.h" + +#include +#include +#include +#include + +static bool +mpd_search_init(struct mpd_connection *connection, const char *cmd) +{ + assert(connection != NULL); + assert(cmd != NULL); + + if (mpd_error_is_defined(&connection->error)) + return false; + + if (connection->request) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "search already in progress"); + return false; + } + + connection->request = strdup(cmd); + if (connection->request == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return false; + } + + return true; +} + +bool +mpd_search_db_songs(struct mpd_connection *connection, bool exact) +{ + return mpd_search_init(connection, + exact ? "find" : "search"); +} + +bool +mpd_search_add_db_songs(struct mpd_connection *connection, bool exact) +{ + return mpd_search_init(connection, + exact ? "findadd" : "searchadd"); +} + +bool +mpd_search_queue_songs(struct mpd_connection *connection, bool exact) +{ + return mpd_search_init(connection, + exact ? "playlistfind" : "playlistsearch"); +} + +bool +mpd_search_db_tags(struct mpd_connection *connection, enum mpd_tag_type type) +{ + assert(connection != NULL); + + if (mpd_error_is_defined(&connection->error)) + return false; + + if (connection->request) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "search already in progress"); + return false; + } + + const char *strtype = mpd_tag_name(type); + if (strtype == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_ARGUMENT); + mpd_error_message(&connection->error, + "invalid type specified"); + return false; + } + + const size_t len = 5 + strlen(strtype) + 1; + connection->request = malloc(len); + if (connection->request == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return false; + } + + snprintf(connection->request, len, "list %s", strtype); + + return true; +} + +bool +mpd_count_db_songs(struct mpd_connection *connection) +{ + assert(connection != NULL); + + if (mpd_error_is_defined(&connection->error)) + return false; + + if (connection->request) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "search already in progress"); + return false; + } + + connection->request = strdup("count"); + if (connection->request == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return false; + } + + return true; +} + +static char * +mpd_search_prepare_append(struct mpd_connection *connection, + size_t add_length) +{ + assert(connection != NULL); + + if (mpd_error_is_defined(&connection->error)) + return NULL; + + if (connection->request == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "no search in progress"); + return NULL; + } + + const size_t old_length = strlen(connection->request); + char *new_request = realloc(connection->request, + old_length + add_length + 1); + if (new_request == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return NULL; + } + + connection->request = new_request; + return new_request + old_length; +} + +static char * +mpd_sanitize_arg(const char *src) +{ + assert(src != NULL); + + /* instead of counting in that loop above, just + * use a bit more memory and half running time + */ + char *result = malloc(strlen(src) * 2 + 1); + if (result == NULL) + return NULL; + + char *dest = result; + char ch; + do { + ch = *src++; + if (ch == '"' || ch == '\\') + *dest++ = '\\'; + *dest++ = ch; + } while (ch != 0); + + return result; +} + +static bool +mpd_search_add_constraint(struct mpd_connection *connection, + mpd_unused enum mpd_operator oper, + const char *name, + const char *value) +{ + assert(connection != NULL); + assert(name != NULL); + assert(value != NULL); + + char *arg = mpd_sanitize_arg(value); + if (arg == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_OOM); + return false; + } + + const size_t add_length = 1 + strlen(name) + 2 + strlen(arg) + 1; + + char *dest = mpd_search_prepare_append(connection, add_length); + if (dest == NULL) { + free(arg); + return false; + } + + sprintf(dest, " %s \"%s\"", name, arg); + + free(arg); + return true; +} +bool +mpd_search_add_base_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value) +{ + return mpd_search_add_constraint(connection, oper, "base", value); +} + +bool +mpd_search_add_uri_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value) +{ + return mpd_search_add_constraint(connection, oper, "file", value); +} + +bool +mpd_search_add_tag_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + enum mpd_tag_type type, const char *value) +{ + assert(connection != NULL); + assert(value != NULL); + + const char *strtype = mpd_tag_name(type); + if (strtype == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_ARGUMENT); + mpd_error_message(&connection->error, + "invalid type specified"); + return false; + } + + return mpd_search_add_constraint(connection, oper, strtype, value); +} + +bool +mpd_search_add_any_tag_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value) +{ + return mpd_search_add_constraint(connection, oper, "any", value); +} + +bool +mpd_search_add_modified_since_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + time_t value) +{ + char buffer[64]; + if (!iso8601_datetime_format(buffer, sizeof(buffer), value)) { + mpd_error_code(&connection->error, MPD_ERROR_ARGUMENT); + mpd_error_message(&connection->error, + "failed to format time stamp"); + return false; + } + + return mpd_search_add_constraint(connection, oper, + "modified-since", buffer); +} + +bool +mpd_search_add_window(struct mpd_connection *connection, + unsigned start, unsigned end) +{ + assert(connection != NULL); + assert(start <= end); + + const size_t size = 64; + char *dest = mpd_search_prepare_append(connection, size); + if (dest == NULL) + return false; + + snprintf(dest, size, " window %u:%u", start, end); + return true; +} + +bool +mpd_search_commit(struct mpd_connection *connection) +{ + assert(connection != NULL); + + if (mpd_error_is_defined(&connection->error)) { + mpd_search_cancel(connection); + return false; + } + + if (connection->request == NULL) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "no search in progress"); + return false; + } + + bool success = mpd_send_command(connection, connection->request, NULL); + free(connection->request); + connection->request = NULL; + + return success; +} + +void +mpd_search_cancel(struct mpd_connection *connection) +{ + assert(connection != NULL); + + if (connection->request != NULL) { + free(connection->request); + connection->request = NULL; + } +} + +struct mpd_pair * +mpd_recv_pair_tag(struct mpd_connection *connection, enum mpd_tag_type type) +{ + assert(connection != NULL); + + const char *name = mpd_tag_name(type); + if (name == NULL) + return NULL; + + return mpd_recv_pair_named(connection, name); +} diff --git a/1_6.h12_dev/libmpdclient/src/send.c b/1_6.h12_dev/libmpdclient/src/send.c new file mode 100644 index 0000000..5f0b9e3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/send.c @@ -0,0 +1,247 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include + +#include "isend.h" +#include "internal.h" +#include "sync.h" + +#include +#include +#include + +/* (bits+1)/3 (plus the sign character) */ +enum { + INTLEN = (sizeof(int) * CHAR_BIT + 1) / 3 + 1, + LONGLONGLEN = (sizeof(long long) * CHAR_BIT + 1) / 3 + 1, +}; + +static void +format_range(char *buffer, size_t size, unsigned start, unsigned end) +{ + if (end == (unsigned)-1) + /* the special value -1 means "open end" */ + snprintf(buffer, size, "%u:", start); + else + snprintf(buffer, size, "%u:%u", start, end); +} + +/** + * Checks whether it is possible to send a command now. + */ +static bool +send_check(struct mpd_connection *connection) +{ + assert(connection != NULL); + + if (mpd_error_is_defined(&connection->error)) + return false; + + if (connection->receiving) { + mpd_error_code(&connection->error, MPD_ERROR_STATE); + mpd_error_message(&connection->error, + "Cannot send a new command while " + "receiving another response"); + return false; + } + + return true; +} + +bool +mpd_send_command(struct mpd_connection *connection, const char *command, ...) +{ + va_list ap; + bool success; + + if (!send_check(connection)) + return false; + + va_start(ap, command); + + success = mpd_sync_send_command_v(connection->async, + mpd_connection_timeout(connection), + command, ap); + + va_end(ap); + + if (!success) { + mpd_connection_sync_error(connection); + return false; + } + + if (!connection->sending_command_list) { + /* the caller might expect that we have flushed the + output buffer when this function returns */ + if (!mpd_flush(connection)) + return false; + + connection->receiving = true; + } else if (connection->sending_command_list_ok) + ++connection->command_list_remaining; + + return true; +} + +bool +mpd_send_command2(struct mpd_connection *connection, const char *command) +{ + bool success; + + if (!send_check(connection)) + return false; + + success = mpd_sync_send_command(connection->async, + mpd_connection_timeout(connection), + command, NULL); + if (!success) { + mpd_connection_sync_error(connection); + return false; + } + + return true; +} + +bool +mpd_send_int_command(struct mpd_connection *connection, const char *command, + int arg) +{ + char arg_string[INTLEN]; + + snprintf(arg_string, sizeof(arg_string), "%i", arg); + return mpd_send_command(connection, command, arg_string, NULL); +} + +bool +mpd_send_int2_command(struct mpd_connection *connection, const char *command, + int arg1, int arg2) +{ + char arg1_string[INTLEN], arg2_string[INTLEN]; + + snprintf(arg1_string, sizeof(arg1_string), "%i", arg1); + snprintf(arg2_string, sizeof(arg2_string), "%i", arg2); + return mpd_send_command(connection, command, + arg1_string, arg2_string, NULL); +} + +bool +mpd_send_int3_command(struct mpd_connection *connection, const char *command, + int arg1, int arg2, int arg3) +{ + char arg1_string[INTLEN], arg2_string[INTLEN], arg3_string[INTLEN]; + + snprintf(arg1_string, sizeof(arg1_string), "%i", arg1); + snprintf(arg2_string, sizeof(arg2_string), "%i", arg2); + snprintf(arg3_string, sizeof(arg3_string), "%i", arg3); + return mpd_send_command(connection, command, + arg1_string, arg2_string, arg3_string, NULL); +} + +bool +mpd_send_float_command(struct mpd_connection *connection, const char *command, + float arg) +{ + char arg_string[INTLEN]; + + snprintf(arg_string, sizeof(arg_string), "%f", arg); + return mpd_send_command(connection, command, arg_string, NULL); +} + +bool +mpd_send_s_u_command(struct mpd_connection *connection, const char *command, + const char *arg1, unsigned arg2) +{ + char arg2_string[INTLEN]; + + snprintf(arg2_string, sizeof(arg2_string), "%u", arg2); + return mpd_send_command(connection, command, + arg1, arg2_string, NULL); +} + +bool +mpd_send_range_command(struct mpd_connection *connection, const char *command, + unsigned arg1, unsigned arg2) +{ + char arg_string[INTLEN*2+1]; + + format_range(arg_string, sizeof(arg_string), arg1, arg2); + return mpd_send_command(connection, command, arg_string, NULL); +} + +bool +mpd_send_i_range_command(struct mpd_connection *connection, + const char *command, int arg1, + unsigned start, unsigned end) +{ + char arg1_string[INTLEN + 1], arg2_string[INTLEN * 2 + 1]; + + snprintf(arg1_string, sizeof(arg1_string), "%i", arg1); + format_range(arg2_string, sizeof(arg2_string), start, end); + return mpd_send_command(connection, command, + arg1_string, arg2_string, NULL); +} + +bool +mpd_send_range_u_command(struct mpd_connection *connection, + const char *command, + unsigned start, unsigned end, unsigned arg2) +{ + char arg1_string[INTLEN*2+1], arg2_string[INTLEN]; + + format_range(arg1_string, sizeof(arg1_string), start, end); + snprintf(arg2_string, sizeof(arg2_string), "%i", arg2); + return mpd_send_command(connection, command, + arg1_string, arg2_string, NULL); +} + +bool +mpd_send_ll_command(struct mpd_connection *connection, const char *command, + long long arg) +{ + char arg_string[LONGLONGLEN]; + +#ifdef WIN32 + snprintf(arg_string, sizeof(arg_string), "%ld", (long)arg); +#else + snprintf(arg_string, sizeof(arg_string), "%lld", arg); +#endif + return mpd_send_command(connection, command, arg_string, NULL); +} + +bool +mpd_flush(struct mpd_connection *connection) +{ + if (!mpd_sync_flush(connection->async, + mpd_connection_timeout(connection))) { + mpd_connection_sync_error(connection); + return false; + } + + return true; +} diff --git a/1_6.h12_dev/libmpdclient/src/settings.c b/1_6.h12_dev/libmpdclient/src/settings.c new file mode 100644 index 0000000..2fbbf81 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/settings.c @@ -0,0 +1,204 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include "config.h" + +#include +#include +#include + +struct mpd_settings { + char *host; + + unsigned port, timeout_ms; + + char *password; +}; + +/** + * Parses the password from the host specification in the form + * "password@hostname". + * + * @param host_p a pointer to the "host" variable, which may be + * modified by this function + * @return an allocated password string, or NULL if there was no + * password + */ +static const char * +mpd_parse_host_password(const char *host, char **password_r) +{ + const char *at; + char *password; + + assert(password_r != NULL); + assert(*password_r == NULL); + + if (host == NULL || + /* if the MPD_HOST begins with a '@' then it's not an + empty password but an abstract socket */ + *host == '@') + return host; + + at = strchr(host, '@'); + if (at == NULL) + return host; + + password = malloc(at - host + 1); + if (password != NULL) { + /* silently ignoring out-of-memory */ + memcpy(password, host, at - host); + password[at - host] = 0; + *password_r = password; + } + + return at + 1; +} + +/** + * Parses the host specification. If not specified, it attempts to + * load it from the environment variable MPD_HOST. + */ +static const char * +mpd_check_host(const char *host, char **password_r) +{ + assert(password_r != NULL); + assert(*password_r == NULL); + + if (host == NULL) + host = getenv("MPD_HOST"); + + if (host != NULL) + host = mpd_parse_host_password(host, password_r); + + return host; +} + +/** + * Parses the port specification. If not specified (0), it attempts + * to load it from the environment variable MPD_PORT. + */ +static unsigned +mpd_check_port(unsigned port) +{ + if (port == 0) { + const char *env_port = getenv("MPD_PORT"); + if (env_port != NULL) + port = atoi(env_port); + } + + return port; +} + +static unsigned +mpd_default_timeout_ms(void) +{ + const char *timeout_string = getenv("MPD_TIMEOUT"); + if (timeout_string != NULL) { + int timeout_s = atoi(timeout_string); + if (timeout_s > 0) + return timeout_s * 1000; + } + + /* 30s is the default */ + return 30000; +} + +struct mpd_settings * +mpd_settings_new(const char *host, unsigned port, unsigned timeout_ms, + const char *reserved, const char *password) +{ + (void)reserved; + + struct mpd_settings *settings = malloc(sizeof(*settings)); + if (settings == NULL) + return settings; + + settings->password = NULL; + + port = mpd_check_port(port); + + host = mpd_check_host(host, &settings->password); + if (settings->password == NULL && password != NULL) + settings->password = strdup(password); + + if (host == NULL) { +#ifdef DEFAULT_SOCKET + if (port == 0) + /* default to local socket only if no port was + explicitly configured */ + host = DEFAULT_SOCKET; + else +#endif + host = DEFAULT_HOST; + } + + settings->host = strdup(host); + + settings->timeout_ms = timeout_ms != 0 + ? timeout_ms + : mpd_default_timeout_ms(); + + settings->port = host[0] == '/' + ? 0 /* no port for local socket */ + : (port != 0 ? port : DEFAULT_PORT); + + return settings; +} + +void +mpd_settings_free(struct mpd_settings *settings) +{ + free(settings->host); + free(settings->password); + free(settings); +} + +const char * +mpd_settings_get_host(const struct mpd_settings *settings) +{ + return settings->host; +} + +unsigned +mpd_settings_get_port(const struct mpd_settings *settings) +{ + return settings->port; +} + +unsigned +mpd_settings_get_timeout_ms(const struct mpd_settings *settings) +{ + return settings->timeout_ms; +} + +const char * +mpd_settings_get_password(const struct mpd_settings *settings) +{ + return settings->password; +} diff --git a/1_6.h12_dev/libmpdclient/src/socket.c b/1_6.h12_dev/libmpdclient/src/socket.c new file mode 100644 index 0000000..4a1161c --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/socket.c @@ -0,0 +1,219 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "socket.h" +#include "fd_util.h" +#include "resolver.h" +#include "ierror.h" + +#include +#include +#include +#include +#include + +#ifdef WIN32 +# include +# include +#else +# include +# include +# include +# include +# include +# include +# include +#endif + +#ifndef MSG_DONTWAIT +# define MSG_DONTWAIT 0 +#endif + +static bool +ignore_errno(int e) +{ +#ifdef WIN32 + return e == WSAEINTR || e == WSAEINPROGRESS || e == WSAEWOULDBLOCK; +#else + return e == EINTR || e == EINPROGRESS; +#endif +} + +#ifdef WIN32 + +bool +mpd_socket_global_init(struct mpd_error_info *error) +{ + WSADATA wsaData; + + if ((WSAStartup(MAKEWORD(2, 2), &wsaData)) != 0 || + LOBYTE(wsaData.wVersion) != 2 || + HIBYTE(wsaData.wVersion) != 2 ) { + mpd_error_system(error, 0); + mpd_error_message(error, + "Could not find usable WinSock DLL"); + return false; + } + + return true; +} + +#endif + +/** + * Wait for the socket to become readable. + */ +static int +mpd_socket_wait(unsigned fd, struct timeval *tv) +{ + fd_set fds; + int ret; + + while (1) { + FD_ZERO(&fds); + FD_SET(fd, &fds); + + ret = select(fd + 1, NULL, &fds, &fds, tv); + if (ret > 0) + return 0; + + if (ret == 0 || !ignore_errno(mpd_socket_errno())) + return -1; + } +} + +/** + * Wait until the socket is connected and check its result. Returns 1 + * on success, 0 on timeout, -errno on error. + */ +static int +mpd_socket_wait_connected(int fd, struct timeval *tv) +{ + int ret; + int s_err = 0; + socklen_t s_err_size = sizeof(s_err); + + ret = mpd_socket_wait(fd, tv); + if (ret < 0) + return 0; + + ret = getsockopt(fd, SOL_SOCKET, SO_ERROR, + (char*)&s_err, &s_err_size); + if (ret < 0) + return -mpd_socket_errno(); + + if (s_err != 0) + return -s_err; + + return 1; +} + +int +mpd_socket_connect(const char *host, unsigned port, const struct timeval *tv0, + struct mpd_error_info *error) +{ + struct timeval tv = *tv0; + struct resolver *resolver; + const struct resolver_address *address; + int fd, ret; + + resolver = resolver_new(host, port); + if (resolver == NULL) { + mpd_error_code(error, MPD_ERROR_RESOLVER); + mpd_error_message(error, "Failed to resolve host name"); + return -1; + } + + assert(!mpd_error_is_defined(error)); + + while ((address = resolver_next(resolver)) != NULL) { + fd = socket_cloexec_nonblock(address->family, SOCK_STREAM, + address->protocol); + if (fd < 0) { + mpd_error_clear(error); + mpd_error_errno(error); + continue; + } + + ret = connect(fd, address->addr, address->addrlen); + if (ret == 0) { + resolver_free(resolver); + mpd_error_clear(error); + return fd; + } + + if (!ignore_errno(mpd_socket_errno())) { + mpd_error_clear(error); + mpd_error_errno(error); + + mpd_socket_close(fd); + continue; + } + + ret = mpd_socket_wait_connected(fd, &tv); + if (ret > 0) { + resolver_free(resolver); + mpd_error_clear(error); + return fd; + } + + if (ret == 0) { + mpd_error_clear(error); + mpd_error_code(error, MPD_ERROR_TIMEOUT); + mpd_error_message(error, "Timeout while connecting"); + } else if (ret < 0) { + mpd_error_clear(error); + mpd_error_system_message(error, -ret); + } + + mpd_socket_close(fd); + } + + resolver_free(resolver); + return -1; +} + +int +mpd_socket_close(int fd) +{ +#ifndef WIN32 + return close(fd); +#else + return closesocket(fd); +#endif +} + +void +mpd_socket_keepalive(int fd, bool keepalive) +{ + int keepalive_i = keepalive; + + + (void) setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, + (const char *) &keepalive_i, sizeof keepalive_i); +} diff --git a/1_6.h12_dev/libmpdclient/src/socket.h b/1_6.h12_dev/libmpdclient/src/socket.h new file mode 100644 index 0000000..fd755fe --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/socket.h @@ -0,0 +1,87 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_SOCKET_H +#define MPD_SOCKET_H + +#include + +#ifdef WIN32 +# include +#else +# include +#endif + +struct timeval; +struct mpd_error_info; + +#ifdef WIN32 +bool +mpd_socket_global_init(struct mpd_error_info *error); +#else +static inline bool +mpd_socket_global_init(struct mpd_error_info *error) +{ + (void)error; + return true; +} +#endif + +static inline int +mpd_socket_errno(void) +{ +#ifdef WIN32 + return WSAGetLastError(); +#else + return errno; +#endif +} + +/** + * Connects the socket to the specified host and port. + * + * @return the socket file descriptor, or -1 on failure + */ +int +mpd_socket_connect(const char *host, unsigned port, const struct timeval *tv, + struct mpd_error_info *error); + +/** + * Closes a socket descriptor. This is a wrapper for close() or + * closesocket(), depending on the OS. + */ +int +mpd_socket_close(int fd); + +/** + * Sets (or unsets) keepalive on a socket descriptor. + */ +void +mpd_socket_keepalive(int fd, bool keepalive); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/song.c b/1_6.h12_dev/libmpdclient/src/song.c new file mode 100644 index 0000000..66528e5 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/song.c @@ -0,0 +1,533 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include "internal.h" +#include "iso8601.h" +#include "uri.h" + +#include +#include +#include +#include + +struct mpd_tag_value { + struct mpd_tag_value *next; + + char *value; +}; + +struct mpd_song { + char *uri; + + struct mpd_tag_value tags[MPD_TAG_COUNT]; + + /** + * Duration of the song in seconds, or 0 for unknown. + */ + unsigned duration; + + /** + * Duration of the song in milliseconds, or 0 for unknown. + */ + unsigned duration_ms; + + /** + * Start of the virtual song within the physical file in + * seconds. + */ + unsigned start; + + /** + * End of the virtual song within the physical file in + * seconds. Zero means that the physical song file is + * played to the end. + */ + unsigned end; + + /** + * The POSIX UTC time stamp of the last modification, or 0 if + * that is unknown. + */ + time_t last_modified; + + /** + * The position of this song within the queue. + */ + unsigned pos; + + /** + * The id of this song within the queue. + */ + unsigned id; + + /** + * The priority of this song within the queue. + */ + unsigned prio; + +#ifndef NDEBUG + /** + * This flag is used in an assertion: when it is set, you must + * not call mpd_song_feed() again. It is a safeguard for + * buggy callers. + */ + bool finished; +#endif +}; + +static struct mpd_song * +mpd_song_new(const char *uri) +{ + struct mpd_song *song; + + assert(uri != NULL); + assert(mpd_verify_uri(uri)); + + song = malloc(sizeof(*song)); + if (song == NULL) + /* out of memory */ + return NULL; + + song->uri = strdup(uri); + if (song->uri == NULL) { + free(song); + return NULL; + } + + for (unsigned i = 0; i < MPD_TAG_COUNT; ++i) + song->tags[i].value = NULL; + + song->duration = 0; + song->duration_ms = 0; + song->start = 0; + song->end = 0; + song->last_modified = 0; + song->pos = 0; + song->id = 0; + song->prio = 0; + +#ifndef NDEBUG + song->finished = false; +#endif + + return song; +} + +void mpd_song_free(struct mpd_song *song) { + assert(song != NULL); + + free(song->uri); + + for (unsigned i = 0; i < MPD_TAG_COUNT; ++i) { + struct mpd_tag_value *tag = &song->tags[i], *next; + + if (tag->value == NULL) + continue; + + free(tag->value); + + tag = tag->next; + + while (tag != NULL) { + assert(tag->value != NULL); + free(tag->value); + + next = tag->next; + free(tag); + tag = next; + } + } + + free(song); +} + +static bool +mpd_song_add_tag(struct mpd_song *song, + enum mpd_tag_type type, const char *value); + +struct mpd_song * +mpd_song_dup(const struct mpd_song *song) +{ + struct mpd_song *ret; + bool success; + + assert(song != NULL); + + ret = mpd_song_new(song->uri); + if (ret == NULL) + /* out of memory */ + return NULL; + + for (unsigned i = 0; i < MPD_TAG_COUNT; ++i) { + const struct mpd_tag_value *src_tag = &song->tags[i]; + + if (src_tag->value == NULL) + continue; + + do { + success = mpd_song_add_tag(ret, i, src_tag->value); + if (!success) { + mpd_song_free(ret); + return NULL; + } + + src_tag = src_tag->next; + } while (src_tag != NULL); + } + + ret->duration = song->duration; + ret->duration_ms = song->duration_ms; + ret->start = song->start; + ret->end = song->end; + ret->last_modified = song->last_modified; + ret->pos = song->pos; + ret->id = song->id; + ret->prio = song->prio; + +#ifndef NDEBUG + ret->finished = true; +#endif + + return ret; +} + +const char * +mpd_song_get_uri(const struct mpd_song *song) +{ + return song->uri; +} + + +/** + * Adds a tag value to the song. + * + * @return true on success, false if the tag is not supported or if no + * memory could be allocated + */ +static bool +mpd_song_add_tag(struct mpd_song *song, + enum mpd_tag_type type, const char *value) +{ + struct mpd_tag_value *tag = &song->tags[type], *prev; + + if ((int)type < 0 || type >= MPD_TAG_COUNT) + return false; + + if (tag->value == NULL) { + tag->next = NULL; + tag->value = strdup(value); + if (tag->value == NULL) + return false; + } else { + while (tag->next != NULL) + tag = tag->next; + + prev = tag; + tag = malloc(sizeof(*tag)); + if (tag == NULL) + return NULL; + + tag->value = strdup(value); + if (tag->value == NULL) { + free(tag); + return false; + } + + tag->next = NULL; + prev->next = tag; + } + + return true; +} + +#ifdef UNUSED_CODE +/** + * Removes all values of the specified tag. + */ +static void +mpd_song_clear_tag(struct mpd_song *song, enum mpd_tag_type type) +{ + struct mpd_tag_value *tag = &song->tags[type]; + + if ((unsigned)type >= MPD_TAG_COUNT) + return; + + if (tag->value == NULL) + /* this tag type is empty */ + return; + + /* free and clear the first value */ + free(tag->value); + tag->value = NULL; + + /* free all other values; no need to clear the "next" pointer, + because it is "undefined" as long as value==NULL */ + while ((tag = tag->next) != NULL) + free(tag->value); +} +#endif + +const char * +mpd_song_get_tag(const struct mpd_song *song, + enum mpd_tag_type type, unsigned idx) +{ + const struct mpd_tag_value *tag = &song->tags[type]; + + if ((int)type < 0) + return NULL; + + if (tag->value == NULL) + return NULL; + + while (idx-- > 0) { + tag = tag->next; + if (tag == NULL) + return NULL; + } + + return tag->value; +} + +static void +mpd_song_set_duration(struct mpd_song *song, unsigned duration) +{ + song->duration = duration; +} + +unsigned +mpd_song_get_duration(const struct mpd_song *song) +{ + return song->duration > 0 + ? song->duration + : (song->duration_ms + 500u) / 1000u; +} + +static void +mpd_song_set_duration_ms(struct mpd_song *song, unsigned duration_ms) +{ + song->duration_ms = duration_ms; +} + +unsigned +mpd_song_get_duration_ms(const struct mpd_song *song) +{ + return song->duration_ms > 0 + ? song->duration_ms + : (song->duration * 1000u); +} + +unsigned +mpd_song_get_start(const struct mpd_song *song) +{ + return song->start; +} + +unsigned +mpd_song_get_end(const struct mpd_song *song) +{ + return song->end; +} + +static void +mpd_song_set_last_modified(struct mpd_song *song, time_t mtime) +{ + song->last_modified = mtime; +} + +time_t +mpd_song_get_last_modified(const struct mpd_song *song) +{ + return song->last_modified; +} + +void +mpd_song_set_pos(struct mpd_song *song, unsigned pos) +{ + song->pos = pos; +} + +unsigned +mpd_song_get_pos(const struct mpd_song *song) +{ + return song->pos; +} + +static void +mpd_song_set_id(struct mpd_song *song, unsigned id) +{ + song->id = id; +} + +unsigned +mpd_song_get_id(const struct mpd_song *song) +{ + return song->id; +} + +static void +mpd_song_set_prio(struct mpd_song *song, unsigned prio) +{ + song->prio = prio; +} + +unsigned +mpd_song_get_prio(const struct mpd_song *song) +{ + return song->prio; +} + +struct mpd_song * +mpd_song_begin(const struct mpd_pair *pair) +{ + assert(pair != NULL); + assert(pair->name != NULL); + assert(pair->value != NULL); + + if (strcmp(pair->name, "file") != 0 || !mpd_verify_uri(pair->value)) { + errno = EINVAL; + return NULL; + } + + return mpd_song_new(pair->value); +} + +static void +mpd_song_parse_range(struct mpd_song *song, const char *value) +{ + assert(song != NULL); + assert(value != NULL); + + char *endptr; + double start, end; + + if (*value == '-') { + start = 0.0; + end = strtod(value + 1, NULL); + } else { + start = strtod(value, &endptr); + if (*endptr != '-') + return; + + end = strtod(endptr + 1, NULL); + } + + song->start = start > 0.0 ? (unsigned)start : 0; + + if (end > 0.0) { + song->end = (unsigned)end; + if (song->end == 0) + /* round up, because the caller must sees that + there's an upper limit */ + song->end = 1; + } else + song->end = 0; +} + +bool +mpd_song_feed(struct mpd_song *song, const struct mpd_pair *pair) +{ + enum mpd_tag_type tag_type; + + assert(song != NULL); + assert(!song->finished); + assert(pair != NULL); + assert(pair->name != NULL); + assert(pair->value != NULL); + + if (strcmp(pair->name, "file") == 0) { +#ifndef NDEBUG + song->finished = true; +#endif + return false; + } + + if (*pair->value == 0) + return true; + + tag_type = mpd_tag_name_parse(pair->name); + if (tag_type != MPD_TAG_UNKNOWN) { + mpd_song_add_tag(song, tag_type, pair->value); + return true; + } + + if (strcmp(pair->name, "Time") == 0) + mpd_song_set_duration(song, atoi(pair->value)); + else if (strcmp(pair->name, "duration") == 0) + mpd_song_set_duration_ms(song, 1000 * atof(pair->value)); + else if (strcmp(pair->name, "Range") == 0) + mpd_song_parse_range(song, pair->value); + else if (strcmp(pair->name, "Last-Modified") == 0) + mpd_song_set_last_modified(song, iso8601_datetime_parse(pair->value)); + else if (strcmp(pair->name, "Pos") == 0) + mpd_song_set_pos(song, atoi(pair->value)); + else if (strcmp(pair->name, "Id") == 0) + mpd_song_set_id(song, atoi(pair->value)); + else if (strcmp(pair->name, "Prio") == 0) + mpd_song_set_prio(song, atoi(pair->value)); + + return true; +} + +struct mpd_song * +mpd_recv_song(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + struct mpd_song *song; + + pair = mpd_recv_pair_named(connection, "file"); + if (pair == NULL) + return NULL; + + song = mpd_song_begin(pair); + mpd_return_pair(connection, pair); + if (song == NULL) { + mpd_error_entity(&connection->error); + return NULL; + } + + while ((pair = mpd_recv_pair(connection)) != NULL && + mpd_song_feed(song, pair)) + mpd_return_pair(connection, pair); + + if (mpd_error_is_defined(&connection->error)) { + mpd_song_free(song); + return NULL; + } + + /* unread this pair for the next mpd_recv_song() call */ + mpd_enqueue_pair(connection, pair); + + return song; +} diff --git a/1_6.h12_dev/libmpdclient/src/stats.c b/1_6.h12_dev/libmpdclient/src/stats.c new file mode 100644 index 0000000..ecf64c5 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/stats.c @@ -0,0 +1,143 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include + +#include +#include +#include + +struct mpd_stats { + unsigned number_of_artists; + unsigned number_of_albums; + unsigned number_of_songs; + unsigned long uptime; + unsigned long db_update_time; + unsigned long play_time; + unsigned long db_play_time; +}; + +struct mpd_stats * +mpd_stats_begin(void) +{ + struct mpd_stats *stats = malloc(sizeof(struct mpd_stats)); + if (stats == NULL) + return NULL; + + stats->number_of_artists = 0; + stats->number_of_albums = 0; + stats->number_of_songs = 0; + stats->uptime = 0; + stats->db_update_time = 0; + stats->play_time = 0; + stats->db_play_time = 0; + + return stats; +} + +void +mpd_stats_feed(struct mpd_stats *stats, const struct mpd_pair *pair) +{ + if (strcmp(pair->name, "artists") == 0) + stats->number_of_artists = atoi(pair->value); + else if (strcmp(pair->name, "albums") == 0) + stats->number_of_albums = atoi(pair->value); + else if (strcmp(pair->name, "songs") == 0) + stats->number_of_songs = atoi(pair->value); + else if (strcmp(pair->name, "uptime") == 0) + stats->uptime = strtoul(pair->value,NULL,10); + else if (strcmp(pair->name, "db_update") == 0) + stats->db_update_time = strtoul(pair->value,NULL,10); + else if (strcmp(pair->name, "playtime") == 0) + stats->play_time = strtoul(pair->value,NULL,10); + else if (strcmp(pair->name, "db_playtime") == 0) + stats->db_play_time = strtoul(pair->value,NULL,10); +} + +void mpd_stats_free(struct mpd_stats * stats) { + assert(stats != NULL); + + free(stats); +} + +unsigned +mpd_stats_get_number_of_artists(const struct mpd_stats * stats) +{ + assert(stats != NULL); + + return stats->number_of_artists; +} + +unsigned +mpd_stats_get_number_of_albums(const struct mpd_stats * stats) +{ + assert(stats != NULL); + + return stats->number_of_albums; +} + +unsigned +mpd_stats_get_number_of_songs(const struct mpd_stats * stats) +{ + assert(stats != NULL); + + return stats->number_of_songs; +} + +unsigned long mpd_stats_get_uptime(const struct mpd_stats * stats) +{ + assert(stats != NULL); + + return stats->uptime; +} + +unsigned long mpd_stats_get_db_update_time(const struct mpd_stats * stats) +{ + assert(stats != NULL); + + return stats->db_update_time; +} + +unsigned long mpd_stats_get_play_time(const struct mpd_stats * stats) +{ + assert(stats != NULL); + + return stats->play_time; +} + +unsigned long mpd_stats_get_db_play_time(const struct mpd_stats * stats) +{ + assert(stats != NULL); + + return stats->db_play_time; +} diff --git a/1_6.h12_dev/libmpdclient/src/status.c b/1_6.h12_dev/libmpdclient/src/status.c new file mode 100644 index 0000000..791aceb --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/status.c @@ -0,0 +1,427 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include + +#include +#include + +/** + * Information about MPD's current status. + */ +struct mpd_status { + /** 0-100, or MPD_STATUS_NO_VOLUME when there is no volume support */ + int volume; + + /** Queue repeat mode enabled? */ + bool repeat; + + /** Random mode enabled? */ + bool random; + + /** Single song mode enabled? */ + bool single; + + /** Song consume mode enabled? */ + bool consume; + + /** Number of songs in the queue */ + unsigned queue_length; + + /** + * Queue version, use this to determine when the playlist has + * changed. + */ + unsigned queue_version; + + /** MPD's current playback state */ + enum mpd_state state; + + /** crossfade setting in seconds */ + unsigned crossfade; + + /** Mixramp threshold in dB */ + float mixrampdb; + + /** Mixramp extra delay in seconds */ + float mixrampdelay; + + /** + * If a song is currently selected (always the case when state + * is PLAY or PAUSE), this is the position of the currently + * playing song in the queue, beginning with 0. + */ + int song_pos; + + /** Song ID of the currently selected song */ + int song_id; + + /** The same as song_pos, but for the next song to be played */ + int next_song_pos; + + /** Song ID of the next song to be played */ + int next_song_id; + + /** + * Time in seconds that have elapsed in the currently + * playing/paused song. + */ + unsigned elapsed_time; + + /** + * Time in milliseconds that have elapsed in the currently + * playing/paused song. + */ + unsigned elapsed_ms; + + /** length in seconds of the currently playing/paused song */ + unsigned total_time; + + /** current bit rate in kbps */ + unsigned kbit_rate; + + /** the current audio format */ + struct mpd_audio_format audio_format; + + /** non-zero if MPD is updating, 0 otherwise */ + unsigned update_id; + + /** error message */ + char *error; +}; + +struct mpd_status * +mpd_status_begin(void) +{ + struct mpd_status *status = malloc(sizeof(*status)); + if (status == NULL) + return NULL; + + status->volume = -1; + status->repeat = false; + status->random = false; + status->single = false; + status->consume = false; + status->queue_version = 0; + status->queue_length = 0; + status->state = MPD_STATE_UNKNOWN; + status->song_pos = -1; + status->song_id = -1; + status->next_song_pos = -1; + status->next_song_id = -1; + status->elapsed_time = 0; + status->elapsed_ms = 0; + status->total_time = 0; + status->kbit_rate = 0; + memset(&status->audio_format, 0, sizeof(status->audio_format)); + status->crossfade = 0; + status->mixrampdb = 100.0; + status->mixrampdelay = -1.0; + status->error = NULL; + status->update_id = 0; + + return status; +} + +/** + * Parses the fractional part of the "elapsed" response line. Up to + * three digits are parsed. + */ +static unsigned +parse_ms(const char *p) +{ + unsigned ms; + + if (*p >= '0' && *p <= '9') + ms = 100 * (*p++ - '0'); + else + return 0; + + if (*p >= '0' && *p <= '9') + ms += 10 * (*p - '0'); + else + return ms; + + if (*p >= '0' && *p <= '9') + ms += *p - '0'; + + return ms; +} + +static enum mpd_state +parse_mpd_state(const char *p) +{ + if (strcmp(p, "play") == 0) + return MPD_STATE_PLAY; + else if (strcmp(p, "stop") == 0) + return MPD_STATE_STOP; + else if (strcmp(p, "pause") == 0) + return MPD_STATE_PAUSE; + else + return MPD_STATE_UNKNOWN; +} + +static void +parse_audio_format(struct mpd_audio_format *audio_format, const char *p) +{ + char *endptr; + + audio_format->sample_rate = strtoul(p, &endptr, 10); + if (*endptr == ':') { + p = endptr + 1; + + if (p[0] == 'f' && p[1] == ':') { + audio_format->bits = MPD_SAMPLE_FORMAT_FLOAT; + p += 2; + } else if (p[0] == 'd' && p[1] == 's' && + p[2] == 'd' && p[3] == ':') { + audio_format->bits = MPD_SAMPLE_FORMAT_DSD; + p += 4; + } else { + audio_format->bits = strtoul(p, &endptr, 10); + p = *endptr == ':' ? endptr + 1 : NULL; + } + + audio_format->channels = p != NULL + ? strtoul(p, NULL, 10) + : 0; + } else { + audio_format->bits = 0; + audio_format->channels = 0; + } +} + +void +mpd_status_feed(struct mpd_status *status, const struct mpd_pair *pair) +{ + if (strcmp(pair->name, "volume") == 0) + status->volume = atoi(pair->value); + else if (strcmp(pair->name, "repeat") == 0) + status->repeat = !!atoi(pair->value); + else if (strcmp(pair->name, "random") == 0) + status->random = !!atoi(pair->value); + else if (strcmp(pair->name, "single") == 0) + status->single = !!atoi(pair->value); + else if (strcmp(pair->name, "consume") == 0) + status->consume = !!atoi(pair->value); + else if (strcmp(pair->name, "playlist") == 0) + status->queue_version = strtoul(pair->value, NULL, 10); + else if (strcmp(pair->name, "playlistlength") == 0) + status->queue_length = atoi(pair->value); + else if (strcmp(pair->name, "bitrate") == 0) + status->kbit_rate = atoi(pair->value); + else if (strcmp(pair->name, "state") == 0) + status->state = parse_mpd_state(pair->value); + else if (strcmp(pair->name, "song") == 0) + status->song_pos = atoi(pair->value); + else if (strcmp(pair->name, "songid") == 0) + status->song_id = atoi(pair->value); + else if (strcmp(pair->name, "nextsong") == 0) + status->next_song_pos = atoi(pair->value); + else if (strcmp(pair->name, "nextsongid") == 0) + status->next_song_id = atoi(pair->value); + else if (strcmp(pair->name, "time") == 0) { + char *endptr; + + status->elapsed_time = strtoul(pair->value, &endptr, 10); + if (*endptr == ':') + status->total_time = strtoul(endptr + 1, NULL, 10); + + if (status->elapsed_ms == 0) + status->elapsed_ms = status->elapsed_time * 1000; + } else if (strcmp(pair->name, "elapsed") == 0) { + char *endptr; + + status->elapsed_ms = strtoul(pair->value, &endptr, 10) * 1000; + if (*endptr == '.') + status->elapsed_ms += parse_ms(endptr + 1); + + if (status->elapsed_time == 0) + status->elapsed_time = status->elapsed_ms / 1000; + } else if (strcmp(pair->name, "error") == 0) { + if (status->error != NULL) + free(status->error); + + status->error = strdup(pair->value); + } else if (strcmp(pair->name, "xfade") == 0) + status->crossfade = atoi(pair->value); + else if (strcmp(pair->name, "mixrampdb") == 0) + status->mixrampdb = atof(pair->value); + else if (strcmp(pair->name, "mixrampdelay") == 0) + status->mixrampdelay = atof(pair->value); + else if (strcmp(pair->name, "updating_db") == 0) + status->update_id = atoi(pair->value); + else if (strcmp(pair->name, "audio") == 0) + parse_audio_format(&status->audio_format, pair->value); +} + +void mpd_status_free(struct mpd_status * status) { + if (status->error) free(status->error); + free(status); +} + +int mpd_status_get_volume(const struct mpd_status *status) +{ + return status->volume; +} + +bool +mpd_status_get_repeat(const struct mpd_status *status) +{ + return status->repeat; +} + +bool +mpd_status_get_random(const struct mpd_status *status) +{ + return status->random; +} + +bool +mpd_status_get_single(const struct mpd_status *status) +{ + return status->single; +} + +bool +mpd_status_get_consume(const struct mpd_status *status) +{ + return status->consume; +} + +unsigned +mpd_status_get_queue_length(const struct mpd_status *status) +{ + return status->queue_length; +} + +unsigned +mpd_status_get_queue_version(const struct mpd_status *status) +{ + return status->queue_version; +} + +enum mpd_state +mpd_status_get_state(const struct mpd_status *status) +{ + return status->state; +} + +unsigned +mpd_status_get_crossfade(const struct mpd_status *status) +{ + return status->crossfade; +} + +float +mpd_status_get_mixrampdb(const struct mpd_status *status) +{ + return status->mixrampdb; +} + +float +mpd_status_get_mixrampdelay(const struct mpd_status *status) +{ + return status->mixrampdelay; +} + +int +mpd_status_get_song_pos(const struct mpd_status *status) +{ + return status->song_pos; +} + +int +mpd_status_get_song_id(const struct mpd_status *status) +{ + return status->song_id; +} + +int +mpd_status_get_next_song_pos(const struct mpd_status *status) +{ + return status->next_song_pos; +} + +int +mpd_status_get_next_song_id(const struct mpd_status *status) +{ + return status->next_song_id; +} + +unsigned +mpd_status_get_elapsed_time(const struct mpd_status *status) +{ + return status->elapsed_time; +} + +unsigned +mpd_status_get_elapsed_ms(const struct mpd_status *status) +{ + return status->elapsed_ms; +} + +unsigned +mpd_status_get_total_time(const struct mpd_status *status) +{ + return status->total_time; +} + +unsigned +mpd_status_get_kbit_rate(const struct mpd_status *status) +{ + return status->kbit_rate; +} + +const struct mpd_audio_format * +mpd_status_get_audio_format(const struct mpd_status *status) +{ + return status->audio_format.sample_rate > 0 || + status->audio_format.bits > 0 || + status->audio_format.channels > 0 + ? &status->audio_format + : NULL; +} + +unsigned +mpd_status_get_update_id(const struct mpd_status *status) +{ + return status->update_id; +} + +const char * +mpd_status_get_error(const struct mpd_status *status) +{ + return status->error; +} diff --git a/1_6.h12_dev/libmpdclient/src/sticker.c b/1_6.h12_dev/libmpdclient/src/sticker.c new file mode 100644 index 0000000..1d50996 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/sticker.c @@ -0,0 +1,162 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include +#include +#include +#include +#include +#include "run.h" + +#include +#include + +bool +mpd_send_sticker_set(struct mpd_connection *connection, const char *type, + const char *uri, const char *name, const char *value) +{ + return mpd_send_command(connection, "sticker", "set", + type, uri, name, value, NULL); +} + +bool +mpd_run_sticker_set(struct mpd_connection *connection, const char *type, + const char *uri, const char *name, const char *value) +{ + return mpd_run_check(connection) && + mpd_send_sticker_set(connection, type, uri, name, value) && + mpd_response_finish(connection); +} + +bool +mpd_send_sticker_delete(struct mpd_connection *connection, const char *type, + const char *uri, const char *name) +{ + assert(connection != NULL); + assert(type != NULL); + assert(uri != NULL); + assert(name != NULL); + + return mpd_send_command(connection, "sticker", "delete", + type, uri, name, NULL); +} + +bool +mpd_run_sticker_delete(struct mpd_connection *connection, const char *type, + const char *uri, const char *name) +{ + return mpd_run_check(connection) && + mpd_send_sticker_delete(connection, type, uri, name) && + mpd_response_finish(connection); +} + +bool +mpd_send_sticker_get(struct mpd_connection *connection, const char *type, + const char *uri, const char *name) +{ + assert(connection != NULL); + assert(type != NULL); + assert(uri != NULL); + assert(name != NULL); + + return mpd_send_command(connection, "sticker", "get", + type, uri, name, NULL); +} + +bool +mpd_send_sticker_list(struct mpd_connection *connection, const char *type, const char *uri) +{ + assert(connection != NULL); + assert(type != NULL); + assert(uri != NULL); + + return mpd_send_command(connection, "sticker", "list", + type, uri, NULL); +} + +bool +mpd_send_sticker_find(struct mpd_connection *connection, const char *type, + const char *base_uri, const char *name) +{ + assert(connection != NULL); + assert(type != NULL); + assert(name != NULL); + + if (base_uri == NULL) + base_uri = ""; + + return mpd_send_command(connection, "sticker", "find", + type, base_uri, name, NULL); +} + +const char * +mpd_parse_sticker(const char *input, size_t *name_length_r) +{ + const char *eq; + + eq = strchr(input, '='); + if (eq == NULL || eq == input) + return NULL; + + *name_length_r = eq - input; + return eq + 1; +} + +struct mpd_pair * +mpd_recv_sticker(struct mpd_connection *connection) +{ + struct mpd_pair *pair; + char *eq; + + pair = mpd_recv_pair_named(connection, "sticker"); + if (pair == NULL) + return NULL; + + pair->name = pair->value; + + eq = strchr(pair->value, '='); + if (eq != NULL) { + /* we shouldn't modify a const string, but in this + case, we know that this points to the writable + input buffer */ + *eq = 0; + pair->value = eq + 1; + } else + /* malformed response? what to do now? pretend + nothing has happened... */ + pair->value = ""; + + return pair; +} + +void +mpd_return_sticker(struct mpd_connection *connection, struct mpd_pair *pair) +{ + mpd_return_pair(connection, pair); +} diff --git a/1_6.h12_dev/libmpdclient/src/sync.c b/1_6.h12_dev/libmpdclient/src/sync.c new file mode 100644 index 0000000..1fff546 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/sync.c @@ -0,0 +1,193 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "sync.h" +#include "socket.h" +#include + +#include +#include +#include +#ifndef WIN32 +#include +#endif +#include +#include + +static bool +ignore_errno(int e) +{ +#ifdef WIN32 + return e == WSAEINTR || e == WSAEINPROGRESS; +#else + return e == EINTR; +#endif +} + +static enum mpd_async_event +mpd_sync_poll(struct mpd_async *async, struct timeval *tv) +{ + unsigned fd; + fd_set rfds, wfds, efds; + int ret; + enum mpd_async_event events; + + fd = mpd_async_get_fd(async); + + while (1) { + events = mpd_async_events(async); + if (events == 0) + return 0; + + FD_ZERO(&rfds); + FD_ZERO(&wfds); + FD_ZERO(&efds); + + if (events & MPD_ASYNC_EVENT_READ) + FD_SET(fd, &rfds); + if (events & MPD_ASYNC_EVENT_WRITE) + FD_SET(fd, &wfds); + if (events & (MPD_ASYNC_EVENT_HUP|MPD_ASYNC_EVENT_ERROR)) + FD_SET(fd, &efds); + + ret = select(fd + 1, &rfds, &wfds, &efds, tv); + if (ret > 0) { + if (!FD_ISSET(fd, &rfds)) + events &= ~MPD_ASYNC_EVENT_READ; + if (!FD_ISSET(fd, &wfds)) + events &= ~MPD_ASYNC_EVENT_WRITE; + if (!FD_ISSET(fd, &efds)) + events &= ~(MPD_ASYNC_EVENT_HUP| + MPD_ASYNC_EVENT_ERROR); + + return events; + } + + if (ret == 0 || !ignore_errno(mpd_socket_errno())) + return 0; + } +} + +static bool +mpd_sync_io(struct mpd_async *async, struct timeval *tv) +{ + enum mpd_async_event events = mpd_sync_poll(async, tv); + + if (events) + return mpd_async_io(async, events); + else + return false; +} + +bool +mpd_sync_send_command_v(struct mpd_async *async, const struct timeval *tv0, + const char *command, va_list args) +{ + struct timeval tv, *tvp; + va_list copy; + bool success; + + if (tv0 != NULL) { + tv = *tv0; + tvp = &tv; + } else + tvp = NULL; + + while (true) { + va_copy(copy, args); + success = mpd_async_send_command_v(async, command, copy); + va_end(copy); + + if (success) + return true; + + if (!mpd_sync_io(async, tvp)) + return false; + } +} + +bool +mpd_sync_send_command(struct mpd_async *async, const struct timeval *tv, + const char *command, ...) +{ + va_list args; + bool success; + + va_start(args, command); + success = mpd_sync_send_command_v(async, tv, command, args); + va_end(args); + + return success; +} + +bool +mpd_sync_flush(struct mpd_async *async, const struct timeval *tv0) +{ + struct timeval tv, *tvp; + + if (tv0 != NULL) { + tv = *tv0; + tvp = &tv; + } else + tvp = NULL; + + if (!mpd_async_io(async, MPD_ASYNC_EVENT_WRITE)) + return false; + + while (true) { + enum mpd_async_event events = mpd_async_events(async); + if ((events & MPD_ASYNC_EVENT_WRITE) == 0) + /* no more pending writes */ + return true; + + if (!mpd_sync_io(async, tvp)) + return false; + } +} + +char * +mpd_sync_recv_line(struct mpd_async *async, const struct timeval *tv0) +{ + struct timeval tv, *tvp; + char *line; + + if (tv0 != NULL) { + tv = *tv0; + tvp = &tv; + } else + tvp = NULL; + + while (true) { + line = mpd_async_recv_line(async); + if (line != NULL) + return line; + + if (!mpd_sync_io(async, tvp)) + return NULL; + } +} diff --git a/1_6.h12_dev/libmpdclient/src/sync.h b/1_6.h12_dev/libmpdclient/src/sync.h new file mode 100644 index 0000000..1e88350 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/sync.h @@ -0,0 +1,74 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief Synchronous MPD connections + * + * This library provides synchronous access to a mpd_async object. + * For all operations, you may provide a timeout. + */ + +#ifndef MPD_SYNC_H +#define MPD_SYNC_H + +#include + +#include +#include + +struct timeval; +struct mpd_async; + +/** + * Synchronous wrapper for mpd_async_send_command_v(). + */ +bool +mpd_sync_send_command_v(struct mpd_async *async, const struct timeval *tv, + const char *command, va_list args); + +/** + * Synchronous wrapper for mpd_async_send_command(). + */ +mpd_sentinel +bool +mpd_sync_send_command(struct mpd_async *async, const struct timeval *tv, + const char *command, ...); + +/** + * Sends all pending data from the output buffer to MPD. + */ +bool +mpd_sync_flush(struct mpd_async *async, const struct timeval *tv); + +/** + * Synchronous wrapper for mpd_async_recv_line(). + */ +char * +mpd_sync_recv_line(struct mpd_async *async, const struct timeval *tv); + +#endif diff --git a/1_6.h12_dev/libmpdclient/src/tag.c b/1_6.h12_dev/libmpdclient/src/tag.c new file mode 100644 index 0000000..1ec6dba --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/tag.c @@ -0,0 +1,121 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include + +#include +#include +#include + +static const char *const mpd_tag_type_names[MPD_TAG_COUNT] = +{ + "Artist", + "ArtistSort", + "Album", + "AlbumArtist", + "AlbumArtistSort", + "Title", + "Track", + "Name", + "Genre", + "Date", + "Composer", + "Performer", + "Comment", + "Disc", + + [MPD_TAG_MUSICBRAINZ_ARTISTID] = "MUSICBRAINZ_ARTISTID", + [MPD_TAG_MUSICBRAINZ_ALBUMID] = "MUSICBRAINZ_ALBUMID", + [MPD_TAG_MUSICBRAINZ_ALBUMARTISTID] = "MUSICBRAINZ_ALBUMARTISTID", + [MPD_TAG_MUSICBRAINZ_TRACKID] = "MUSICBRAINZ_TRACKID", + [MPD_TAG_MUSICBRAINZ_RELEASETRACKID] = "MUSICBRAINZ_RELEASETRACKID" +}; + +const char * +mpd_tag_name(enum mpd_tag_type type) +{ + if ((unsigned)type >= MPD_TAG_COUNT) + return NULL; + + return mpd_tag_type_names[type]; +} + +enum mpd_tag_type +mpd_tag_name_parse(const char *name) +{ + assert(name != NULL); + + for (unsigned i = 0; i < MPD_TAG_COUNT; ++i) + if (strcmp(name, mpd_tag_type_names[i]) == 0) + return (enum mpd_tag_type)i; + + return MPD_TAG_UNKNOWN; +} + +/** + * This implementation is limited to ASCII letters. Cheap, and good + * enough for us: all valid tag names are hard-coded above. + */ +static inline bool +ignore_case_char_equals(const char a, const char b) +{ + return (a & ~0x20) == (b & ~0x20); +} + +static bool +ignore_case_string_equals(const char *a, const char *b) +{ + assert(a != NULL); + assert(b != NULL); + + while (*a != 0) { + if (!ignore_case_char_equals(*a, *b)) + return false; + + ++a; + ++b; + } + + return *b == 0; +} + +enum mpd_tag_type +mpd_tag_name_iparse(const char *name) +{ + assert(name != NULL); + + for (unsigned i = 0; i < MPD_TAG_COUNT; ++i) + if (ignore_case_string_equals(name, mpd_tag_type_names[i])) + return (enum mpd_tag_type)i; + + return MPD_TAG_UNKNOWN; +} diff --git a/1_6.h12_dev/libmpdclient/src/uri.h b/1_6.h12_dev/libmpdclient/src/uri.h new file mode 100644 index 0000000..725c047 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/src/uri.h @@ -0,0 +1,52 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef MPD_URI_H +#define MPD_URI_H + +#include +#include + +static inline bool +mpd_verify_uri(const char *uri) +{ + assert(uri != NULL); + + return *uri != 0; +} + +static inline bool +mpd_verify_local_uri(const char *uri) +{ + assert(uri != NULL); + + return mpd_verify_uri(uri) && *uri != '/' && + uri[strlen(uri) - 1] != '/'; +} + +#endif diff --git a/1_6.h12_dev/libmpdclient/tags b/1_6.h12_dev/libmpdclient/tags new file mode 100644 index 0000000..53f6e5b --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tags @@ -0,0 +1,1487 @@ +!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ +!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ +!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/ +!_TAG_PROGRAM_NAME Exuberant Ctags // +!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ +!_TAG_PROGRAM_VERSION 5.9~svn20110310 // +ACLOCAL Makefile /^ACLOCAL = ${SHELL} \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient\/build\/missing aclocal-1.14$/;" m +ACLOCAL_AMFLAGS Makefile /^ACLOCAL_AMFLAGS = -I m4$/;" m +ACLOCAL_M4 Makefile /^ACLOCAL_M4 = $(top_srcdir)\/aclocal.m4$/;" m +AMTAR Makefile /^AMTAR = $${TAR-tar}$/;" m +AM_CFLAGS Makefile /^AM_CFLAGS = $/;" m +AM_CPPFLAGS Makefile /^AM_CPPFLAGS = -I$(srcdir)\/include -Iinclude$/;" m +AM_DEFAULT_VERBOSITY Makefile /^AM_DEFAULT_VERBOSITY = 1$/;" m +AM_RECURSIVE_TARGETS Makefile /^AM_RECURSIVE_TARGETS = cscope check recheck$/;" m +AM_V_CC Makefile /^AM_V_CC = $(am__v_CC_$(V))$/;" m +AM_V_CCLD Makefile /^AM_V_CCLD = $(am__v_CCLD_$(V))$/;" m +AM_V_GEN Makefile /^AM_V_GEN = $(am__v_GEN_$(V))$/;" m +AM_V_P Makefile /^AM_V_P = $(am__v_P_$(V))$/;" m +AM_V_at Makefile /^AM_V_at = $(am__v_at_$(V))$/;" m +AM_V_lt Makefile /^AM_V_lt = $(am__v_lt_$(V))$/;" m +AR Makefile /^AR = ar$/;" m +AS Makefile /^AS = as$/;" m +AUTOCONF Makefile /^AUTOCONF = ${SHELL} \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient\/build\/missing autoconf$/;" m +AUTOHEADER Makefile /^AUTOHEADER = ${SHELL} \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient\/build\/missing autoheader$/;" m +AUTOMAKE Makefile /^AUTOMAKE = ${SHELL} \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient\/build\/missing automake-1.14$/;" m +AUTOMAKE_OPTIONS Makefile /^AUTOMAKE_OPTIONS = foreign 1.11 dist-xz subdir-objects$/;" m +AWK Makefile /^AWK = gawk$/;" m +BG_BLACK test/main.c 49;" d file: +BRIGHT test/main.c 45;" d file: +CC Makefile /^CC = gcc -std=gnu99$/;" m +CCDEPMODE Makefile /^CCDEPMODE = depmode=gcc3$/;" m +CCLD Makefile /^CCLD = $(CC)$/;" m +CFLAGS Makefile /^CFLAGS = -g -O2 -Wall -W -Wextra -Wno-deprecated-declarations -Wmissing-prototypes -Wshadow -Wpointer-arith -Wstrict-prototypes -Wcast-qual -Wwrite-strings$/;" m +CHECK_CONNECTION test/main.c 75;" d file: +COLOR_CODE test/main.c 50;" d file: +COMPILE Makefile /^COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \\$/;" m +CONFIG_CLEAN_FILES Makefile /^CONFIG_CLEAN_FILES = include\/mpd\/version.h libmpdclient.pc \\$/;" m +CONFIG_CLEAN_VPATH_FILES Makefile /^CONFIG_CLEAN_VPATH_FILES =$/;" m +CONFIG_HEADER Makefile /^CONFIG_HEADER = config.h$/;" m +CPP Makefile /^CPP = gcc -std=gnu99 -E$/;" m +CPPFLAGS Makefile /^CPPFLAGS = $/;" m +CSCOPE Makefile /^CSCOPE = cscope$/;" m +CTAGS Makefile /^CTAGS = ctags$/;" m +CYGPATH_W Makefile /^CYGPATH_W = echo$/;" m +CreateProcess build/ltmain.sh /^ CreateProcess(). We must quote the arguments since Win32 CreateProcess()$/;" f +CreateProcess libtool /^ CreateProcess(). We must quote the arguments since Win32 CreateProcess()$/;" f +DATA Makefile /^DATA = $(doc_DATA) $(pkgconfig_DATA) $(vapi_DATA)$/;" m +DEFAULT_HOST config.h 5;" d +DEFAULT_INCLUDES Makefile /^DEFAULT_INCLUDES = -I.$/;" m +DEFAULT_PORT config.h 8;" d +DEFAULT_SOCKET config.h 11;" d +DEFS Makefile /^DEFS = -DHAVE_CONFIG_H$/;" m +DEPDIR Makefile /^DEPDIR = .deps$/;" m +DISTFILES Makefile /^DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)$/;" m +DIST_ARCHIVES Makefile /^DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz$/;" m +DIST_COMMON Makefile /^DIST_COMMON = $(srcdir)\/Makefile.in $(srcdir)\/Makefile.am \\$/;" m +DIST_SOURCES Makefile /^DIST_SOURCES = $(src_libmpdclient_la_SOURCES) $(src_example_SOURCES) \\$/;" m +DIST_TARGETS Makefile /^DIST_TARGETS = dist-xz dist-gzip$/;" m +DLLTOOL Makefile /^DLLTOOL = dlltool$/;" m +DOXYGEN Makefile /^DOXYGEN = $/;" m +DSYMUTIL Makefile /^DSYMUTIL = $/;" m +DUMPBIN Makefile /^DUMPBIN = $/;" m +ECHO_C Makefile /^ECHO_C = $/;" m +ECHO_N Makefile /^ECHO_N = -n$/;" m +ECHO_T Makefile /^ECHO_T = $/;" m +EGREP Makefile /^EGREP = \/bin\/grep -E$/;" m +ENABLE_TCP config.h 14;" d +ETAGS Makefile /^ETAGS = etags$/;" m +EXEEXT Makefile /^EXEEXT = $/;" m +EXTRA_DIST Makefile /^EXTRA_DIST = \\$/;" m +FD_UTIL_H src/fd_util.h 37;" d +FGREP Makefile /^FGREP = \/bin\/grep -F$/;" m +GREEN test/main.c 47;" d file: +GREP Makefile /^GREP = \/bin\/grep$/;" m +GZIP_ENV Makefile /^GZIP_ENV = --best$/;" m +HAVE_DLFCN_H config.h 17;" d +HAVE_GETADDRINFO config.h 20;" d +HAVE_INTTYPES_H config.h 23;" d +HAVE_MEMORY_H config.h 26;" d +HAVE_STDINT_H config.h 29;" d +HAVE_STDLIB_H config.h 32;" d +HAVE_STRINGS_H config.h 35;" d +HAVE_STRING_H config.h 38;" d +HAVE_SYS_STAT_H config.h 41;" d +HAVE_SYS_TYPES_H config.h 44;" d +HAVE_UNISTD_H config.h 47;" d +HEADERS Makefile /^HEADERS = $(mpdinclude_HEADERS)$/;" m +INSTALL Makefile /^INSTALL = \/usr\/bin\/install -c$/;" m +INSTALL_DATA Makefile /^INSTALL_DATA = ${INSTALL} -m 644$/;" m +INSTALL_HEADER Makefile /^INSTALL_HEADER = $(INSTALL_DATA)$/;" m +INSTALL_PROGRAM Makefile /^INSTALL_PROGRAM = ${INSTALL}$/;" m +INSTALL_SCRIPT Makefile /^INSTALL_SCRIPT = ${INSTALL}$/;" m +INSTALL_STRIP_PROGRAM Makefile /^INSTALL_STRIP_PROGRAM = $(install_sh) -c -s$/;" m +INTLEN src/send.c /^ INTLEN = (sizeof(int) * CHAR_BIT + 1) \/ 3 + 1,$/;" e enum:__anon6 file: +LD Makefile /^LD = \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/upmpdcli_demo\/my_android_toolchain\/bin\/ld -m elf_x86_64$/;" m +LDFLAGS Makefile /^LDFLAGS = $/;" m +LIBMPDCLIENT_CHECK_VERSION include/mpd/version.h 51;" d +LIBMPDCLIENT_CHECK_VERSION tmp/include/mpd/version.h 51;" d +LIBMPDCLIENT_LIBTOOL_VERSION Makefile /^LIBMPDCLIENT_LIBTOOL_VERSION = 2:11:0$/;" m +LIBMPDCLIENT_MAJOR_VERSION include/mpd/version.h 38;" d +LIBMPDCLIENT_MAJOR_VERSION tmp/include/mpd/version.h 38;" d +LIBMPDCLIENT_MINOR_VERSION include/mpd/version.h 39;" d +LIBMPDCLIENT_MINOR_VERSION tmp/include/mpd/version.h 39;" d +LIBMPDCLIENT_PAIR_H include/mpd/pair.h 36;" d +LIBMPDCLIENT_PAIR_H tmp/include/mpd/pair.h 36;" d +LIBMPDCLIENT_PARSER_H include/mpd/parser.h 30;" d +LIBMPDCLIENT_PARSER_H tmp/include/mpd/parser.h 30;" d +LIBMPDCLIENT_PATCH_VERSION include/mpd/version.h 40;" d +LIBMPDCLIENT_PATCH_VERSION tmp/include/mpd/version.h 40;" d +LIBMPDCLIENT_PLAYLIST_H include/mpd/playlist.h 42;" d +LIBMPDCLIENT_PLAYLIST_H tmp/include/mpd/playlist.h 42;" d +LIBMPDCLIENT_RESOLVER_H src/resolver.h 30;" d +LIBMPDCLIENT_SEND_H include/mpd/send.h 36;" d +LIBMPDCLIENT_SEND_H tmp/include/mpd/send.h 36;" d +LIBMPDCLIENT_TAG_H include/mpd/tag.h 34;" d +LIBMPDCLIENT_TAG_H tmp/include/mpd/tag.h 34;" d +LIBOBJS Makefile /^LIBOBJS = $/;" m +LIBS Makefile /^LIBS = $/;" m +LIBTOOL Makefile /^LIBTOOL = $(SHELL) $(top_builddir)\/libtool$/;" m +LINK Makefile /^LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \\$/;" m +LIPO Makefile /^LIPO = $/;" m +LN_S Makefile /^LN_S = ln -s$/;" m +LOG_COMPILE Makefile /^LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)$/;" m +LOG_DRIVER Makefile /^LOG_DRIVER = $(SHELL) $(top_srcdir)\/build\/test-driver$/;" m +LOG_ERROR test/main.c 59;" d file: +LOG_INFO test/main.c 52;" d file: +LOG_WARNING test/main.c 53;" d file: +LONGLONGLEN src/send.c /^ LONGLONGLEN = (sizeof(long long) * CHAR_BIT + 1) \/ 3 + 1,$/;" e enum:__anon6 file: +LTCOMPILE Makefile /^LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \\$/;" m +LTLIBOBJS Makefile /^LTLIBOBJS = $/;" m +LTLIBRARIES Makefile /^LTLIBRARIES = $(lib_LTLIBRARIES)$/;" m +LT_OBJDIR config.h 51;" d +MAJOR_VERSION Makefile /^MAJOR_VERSION = 2$/;" m +MAKEINFO Makefile /^MAKEINFO = ${SHELL} \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient\/build\/missing makeinfo$/;" m +MANIFEST_TOOL Makefile /^MANIFEST_TOOL = :$/;" m +MINOR_VERSION Makefile /^MINOR_VERSION = 11$/;" m +MKDIR_P Makefile /^MKDIR_P = \/bin\/mkdir -p$/;" m +MPD_ASYNC_EVENT_ERROR include/mpd/async.h /^ MPD_ASYNC_EVENT_ERROR = 8,$/;" e enum:mpd_async_event +MPD_ASYNC_EVENT_ERROR tmp/include/mpd/async.h /^ MPD_ASYNC_EVENT_ERROR = 8,$/;" e enum:mpd_async_event +MPD_ASYNC_EVENT_HUP include/mpd/async.h /^ MPD_ASYNC_EVENT_HUP = 4,$/;" e enum:mpd_async_event +MPD_ASYNC_EVENT_HUP tmp/include/mpd/async.h /^ MPD_ASYNC_EVENT_HUP = 4,$/;" e enum:mpd_async_event +MPD_ASYNC_EVENT_READ include/mpd/async.h /^ MPD_ASYNC_EVENT_READ = 1,$/;" e enum:mpd_async_event +MPD_ASYNC_EVENT_READ tmp/include/mpd/async.h /^ MPD_ASYNC_EVENT_READ = 1,$/;" e enum:mpd_async_event +MPD_ASYNC_EVENT_WRITE include/mpd/async.h /^ MPD_ASYNC_EVENT_WRITE = 2,$/;" e enum:mpd_async_event +MPD_ASYNC_EVENT_WRITE tmp/include/mpd/async.h /^ MPD_ASYNC_EVENT_WRITE = 2,$/;" e enum:mpd_async_event +MPD_ASYNC_H include/mpd/async.h 42;" d +MPD_ASYNC_H tmp/include/mpd/async.h 42;" d +MPD_AUDIO_FORMAT_H include/mpd/audio_format.h 36;" d +MPD_AUDIO_FORMAT_H tmp/include/mpd/audio_format.h 36;" d +MPD_BUFFER_H src/buffer.h 30;" d +MPD_CAPABILITIES_H include/mpd/capabilities.h 36;" d +MPD_CAPABILITIES_H tmp/include/mpd/capabilities.h 36;" d +MPD_CLIENT_H include/mpd/client.h 46;" d +MPD_CLIENT_H tmp/include/mpd/client.h 46;" d +MPD_COMPILER_H include/mpd/compiler.h 38;" d +MPD_COMPILER_H tmp/include/mpd/compiler.h 38;" d +MPD_CONNECTION_H include/mpd/connection.h 40;" d +MPD_CONNECTION_H tmp/include/mpd/connection.h 40;" d +MPD_DATABASE_H include/mpd/database.h 39;" d +MPD_DATABASE_H tmp/include/mpd/database.h 39;" d +MPD_DB_H include/mpd/search.h 42;" d +MPD_DB_H tmp/include/mpd/search.h 42;" d +MPD_DIRECTORY_H include/mpd/directory.h 40;" d +MPD_DIRECTORY_H tmp/include/mpd/directory.h 40;" d +MPD_ENTITY_H include/mpd/entity.h 40;" d +MPD_ENTITY_H tmp/include/mpd/entity.h 40;" d +MPD_ENTITY_TYPE_DIRECTORY include/mpd/entity.h /^ MPD_ENTITY_TYPE_DIRECTORY,$/;" e enum:mpd_entity_type +MPD_ENTITY_TYPE_DIRECTORY tmp/include/mpd/entity.h /^ MPD_ENTITY_TYPE_DIRECTORY,$/;" e enum:mpd_entity_type +MPD_ENTITY_TYPE_PLAYLIST include/mpd/entity.h /^ MPD_ENTITY_TYPE_PLAYLIST,$/;" e enum:mpd_entity_type +MPD_ENTITY_TYPE_PLAYLIST tmp/include/mpd/entity.h /^ MPD_ENTITY_TYPE_PLAYLIST,$/;" e enum:mpd_entity_type +MPD_ENTITY_TYPE_SONG include/mpd/entity.h /^ MPD_ENTITY_TYPE_SONG,$/;" e enum:mpd_entity_type +MPD_ENTITY_TYPE_SONG tmp/include/mpd/entity.h /^ MPD_ENTITY_TYPE_SONG,$/;" e enum:mpd_entity_type +MPD_ENTITY_TYPE_UNKNOWN include/mpd/entity.h /^ MPD_ENTITY_TYPE_UNKNOWN,$/;" e enum:mpd_entity_type +MPD_ENTITY_TYPE_UNKNOWN tmp/include/mpd/entity.h /^ MPD_ENTITY_TYPE_UNKNOWN,$/;" e enum:mpd_entity_type +MPD_ERROR_ARGUMENT include/mpd/error.h /^ MPD_ERROR_ARGUMENT,$/;" e enum:mpd_error +MPD_ERROR_ARGUMENT tmp/include/mpd/error.h /^ MPD_ERROR_ARGUMENT,$/;" e enum:mpd_error +MPD_ERROR_CLOSED include/mpd/error.h /^ MPD_ERROR_CLOSED,$/;" e enum:mpd_error +MPD_ERROR_CLOSED tmp/include/mpd/error.h /^ MPD_ERROR_CLOSED,$/;" e enum:mpd_error +MPD_ERROR_H include/mpd/error.h 37;" d +MPD_ERROR_H tmp/include/mpd/error.h 37;" d +MPD_ERROR_MALFORMED include/mpd/error.h /^ MPD_ERROR_MALFORMED,$/;" e enum:mpd_error +MPD_ERROR_MALFORMED tmp/include/mpd/error.h /^ MPD_ERROR_MALFORMED,$/;" e enum:mpd_error +MPD_ERROR_OOM include/mpd/error.h /^ MPD_ERROR_OOM,$/;" e enum:mpd_error +MPD_ERROR_OOM tmp/include/mpd/error.h /^ MPD_ERROR_OOM,$/;" e enum:mpd_error +MPD_ERROR_RESOLVER include/mpd/error.h /^ MPD_ERROR_RESOLVER,$/;" e enum:mpd_error +MPD_ERROR_RESOLVER tmp/include/mpd/error.h /^ MPD_ERROR_RESOLVER,$/;" e enum:mpd_error +MPD_ERROR_SERVER include/mpd/error.h /^ MPD_ERROR_SERVER,$/;" e enum:mpd_error +MPD_ERROR_SERVER tmp/include/mpd/error.h /^ MPD_ERROR_SERVER,$/;" e enum:mpd_error +MPD_ERROR_STATE include/mpd/error.h /^ MPD_ERROR_STATE,$/;" e enum:mpd_error +MPD_ERROR_STATE tmp/include/mpd/error.h /^ MPD_ERROR_STATE,$/;" e enum:mpd_error +MPD_ERROR_SUCCESS include/mpd/error.h /^ MPD_ERROR_SUCCESS = 0,$/;" e enum:mpd_error +MPD_ERROR_SUCCESS tmp/include/mpd/error.h /^ MPD_ERROR_SUCCESS = 0,$/;" e enum:mpd_error +MPD_ERROR_SYSTEM include/mpd/error.h /^ MPD_ERROR_SYSTEM,$/;" e enum:mpd_error +MPD_ERROR_SYSTEM tmp/include/mpd/error.h /^ MPD_ERROR_SYSTEM,$/;" e enum:mpd_error +MPD_ERROR_TIMEOUT include/mpd/error.h /^ MPD_ERROR_TIMEOUT,$/;" e enum:mpd_error +MPD_ERROR_TIMEOUT tmp/include/mpd/error.h /^ MPD_ERROR_TIMEOUT,$/;" e enum:mpd_error +MPD_IASYNC_H src/iasync.h 30;" d +MPD_IDLE_DATABASE include/mpd/idle.h /^ MPD_IDLE_DATABASE = 0x1,$/;" e enum:mpd_idle +MPD_IDLE_DATABASE tmp/include/mpd/idle.h /^ MPD_IDLE_DATABASE = 0x1,$/;" e enum:mpd_idle +MPD_IDLE_H include/mpd/idle.h 40;" d +MPD_IDLE_H tmp/include/mpd/idle.h 40;" d +MPD_IDLE_MESSAGE include/mpd/idle.h /^ MPD_IDLE_MESSAGE = 0x400,$/;" e enum:mpd_idle +MPD_IDLE_MESSAGE tmp/include/mpd/idle.h /^ MPD_IDLE_MESSAGE = 0x400,$/;" e enum:mpd_idle +MPD_IDLE_MIXER include/mpd/idle.h /^ MPD_IDLE_MIXER = 0x10,$/;" e enum:mpd_idle +MPD_IDLE_MIXER tmp/include/mpd/idle.h /^ MPD_IDLE_MIXER = 0x10,$/;" e enum:mpd_idle +MPD_IDLE_OPTIONS include/mpd/idle.h /^ MPD_IDLE_OPTIONS = 0x40,$/;" e enum:mpd_idle +MPD_IDLE_OPTIONS tmp/include/mpd/idle.h /^ MPD_IDLE_OPTIONS = 0x40,$/;" e enum:mpd_idle +MPD_IDLE_OUTPUT include/mpd/idle.h /^ MPD_IDLE_OUTPUT = 0x20,$/;" e enum:mpd_idle +MPD_IDLE_OUTPUT tmp/include/mpd/idle.h /^ MPD_IDLE_OUTPUT = 0x20,$/;" e enum:mpd_idle +MPD_IDLE_PLAYER include/mpd/idle.h /^ MPD_IDLE_PLAYER = 0x8,$/;" e enum:mpd_idle +MPD_IDLE_PLAYER tmp/include/mpd/idle.h /^ MPD_IDLE_PLAYER = 0x8,$/;" e enum:mpd_idle +MPD_IDLE_PLAYLIST include/mpd/idle.h /^ MPD_IDLE_PLAYLIST = MPD_IDLE_QUEUE,$/;" e enum:mpd_idle +MPD_IDLE_PLAYLIST tmp/include/mpd/idle.h /^ MPD_IDLE_PLAYLIST = MPD_IDLE_QUEUE,$/;" e enum:mpd_idle +MPD_IDLE_QUEUE include/mpd/idle.h /^ MPD_IDLE_QUEUE = 0x4,$/;" e enum:mpd_idle +MPD_IDLE_QUEUE tmp/include/mpd/idle.h /^ MPD_IDLE_QUEUE = 0x4,$/;" e enum:mpd_idle +MPD_IDLE_STICKER include/mpd/idle.h /^ MPD_IDLE_STICKER = 0x100,$/;" e enum:mpd_idle +MPD_IDLE_STICKER tmp/include/mpd/idle.h /^ MPD_IDLE_STICKER = 0x100,$/;" e enum:mpd_idle +MPD_IDLE_STORED_PLAYLIST include/mpd/idle.h /^ MPD_IDLE_STORED_PLAYLIST = 0x2,$/;" e enum:mpd_idle +MPD_IDLE_STORED_PLAYLIST tmp/include/mpd/idle.h /^ MPD_IDLE_STORED_PLAYLIST = 0x2,$/;" e enum:mpd_idle +MPD_IDLE_SUBSCRIPTION include/mpd/idle.h /^ MPD_IDLE_SUBSCRIPTION = 0x200,$/;" e enum:mpd_idle +MPD_IDLE_SUBSCRIPTION tmp/include/mpd/idle.h /^ MPD_IDLE_SUBSCRIPTION = 0x200,$/;" e enum:mpd_idle +MPD_IDLE_UPDATE include/mpd/idle.h /^ MPD_IDLE_UPDATE = 0x80,$/;" e enum:mpd_idle +MPD_IDLE_UPDATE tmp/include/mpd/idle.h /^ MPD_IDLE_UPDATE = 0x80,$/;" e enum:mpd_idle +MPD_IERROR_H src/ierror.h 30;" d +MPD_INTERNAL_H src/internal.h 30;" d +MPD_ISEND_H src/isend.h 30;" d +MPD_ISO8601_H src/iso8601.h 30;" d +MPD_LIST_H include/mpd/list.h 42;" d +MPD_LIST_H tmp/include/mpd/list.h 42;" d +MPD_MESSAGE_H include/mpd/message.h 36;" d +MPD_MESSAGE_H tmp/include/mpd/message.h 36;" d +MPD_MIXER_H include/mpd/mixer.h 38;" d +MPD_MIXER_H tmp/include/mpd/mixer.h 38;" d +MPD_OPERATOR_DEFAULT include/mpd/search.h /^ MPD_OPERATOR_DEFAULT,$/;" e enum:mpd_operator +MPD_OPERATOR_DEFAULT tmp/include/mpd/search.h /^ MPD_OPERATOR_DEFAULT,$/;" e enum:mpd_operator +MPD_OUTPUT_H include/mpd/output.h 40;" d +MPD_OUTPUT_H tmp/include/mpd/output.h 40;" d +MPD_PARSER_ERROR include/mpd/parser.h /^ MPD_PARSER_ERROR,$/;" e enum:mpd_parser_result +MPD_PARSER_ERROR tmp/include/mpd/parser.h /^ MPD_PARSER_ERROR,$/;" e enum:mpd_parser_result +MPD_PARSER_MALFORMED include/mpd/parser.h /^ MPD_PARSER_MALFORMED,$/;" e enum:mpd_parser_result +MPD_PARSER_MALFORMED tmp/include/mpd/parser.h /^ MPD_PARSER_MALFORMED,$/;" e enum:mpd_parser_result +MPD_PARSER_PAIR include/mpd/parser.h /^ MPD_PARSER_PAIR,$/;" e enum:mpd_parser_result +MPD_PARSER_PAIR tmp/include/mpd/parser.h /^ MPD_PARSER_PAIR,$/;" e enum:mpd_parser_result +MPD_PARSER_SUCCESS include/mpd/parser.h /^ MPD_PARSER_SUCCESS,$/;" e enum:mpd_parser_result +MPD_PARSER_SUCCESS tmp/include/mpd/parser.h /^ MPD_PARSER_SUCCESS,$/;" e enum:mpd_parser_result +MPD_PASSWORD_H include/mpd/password.h 38;" d +MPD_PASSWORD_H tmp/include/mpd/password.h 38;" d +MPD_PLAYER_H include/mpd/player.h 38;" d +MPD_PLAYER_H tmp/include/mpd/player.h 38;" d +MPD_PROTOCOL_H include/mpd/protocol.h 37;" d +MPD_PROTOCOL_H tmp/include/mpd/protocol.h 37;" d +MPD_QUEUE_H include/mpd/queue.h 38;" d +MPD_QUEUE_H tmp/include/mpd/queue.h 38;" d +MPD_QUOTE_H src/quote.h 30;" d +MPD_RECV_H include/mpd/recv.h 38;" d +MPD_RECV_H tmp/include/mpd/recv.h 38;" d +MPD_RESPONSE_H include/mpd/response.h 40;" d +MPD_RESPONSE_H tmp/include/mpd/response.h 40;" d +MPD_RUN_H src/run.h 30;" d +MPD_SAMPLE_FORMAT_DSD include/mpd/audio_format.h /^ MPD_SAMPLE_FORMAT_DSD = 0xe1,$/;" e enum:__anon10 +MPD_SAMPLE_FORMAT_DSD tmp/include/mpd/audio_format.h /^ MPD_SAMPLE_FORMAT_DSD = 0xe1,$/;" e enum:__anon9 +MPD_SAMPLE_FORMAT_FLOAT include/mpd/audio_format.h /^ MPD_SAMPLE_FORMAT_FLOAT = 0xe0,$/;" e enum:__anon10 +MPD_SAMPLE_FORMAT_FLOAT tmp/include/mpd/audio_format.h /^ MPD_SAMPLE_FORMAT_FLOAT = 0xe0,$/;" e enum:__anon9 +MPD_SERVER_ERROR_ARG include/mpd/protocol.h /^ MPD_SERVER_ERROR_ARG = 2,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_ARG tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_ARG = 2,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_EXIST include/mpd/protocol.h /^ MPD_SERVER_ERROR_EXIST = 56,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_EXIST tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_EXIST = 56,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_NOT_LIST include/mpd/protocol.h /^ MPD_SERVER_ERROR_NOT_LIST = 1,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_NOT_LIST tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_NOT_LIST = 1,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_NO_EXIST include/mpd/protocol.h /^ MPD_SERVER_ERROR_NO_EXIST = 50,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_NO_EXIST tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_NO_EXIST = 50,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PASSWORD include/mpd/protocol.h /^ MPD_SERVER_ERROR_PASSWORD = 3,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PASSWORD tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_PASSWORD = 3,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PERMISSION include/mpd/protocol.h /^ MPD_SERVER_ERROR_PERMISSION = 4,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PERMISSION tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_PERMISSION = 4,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PLAYER_SYNC include/mpd/protocol.h /^ MPD_SERVER_ERROR_PLAYER_SYNC = 55,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PLAYER_SYNC tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_PLAYER_SYNC = 55,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PLAYLIST_LOAD include/mpd/protocol.h /^ MPD_SERVER_ERROR_PLAYLIST_LOAD = 53,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PLAYLIST_LOAD tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_PLAYLIST_LOAD = 53,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PLAYLIST_MAX include/mpd/protocol.h /^ MPD_SERVER_ERROR_PLAYLIST_MAX = 51,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_PLAYLIST_MAX tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_PLAYLIST_MAX = 51,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_SYSTEM include/mpd/protocol.h /^ MPD_SERVER_ERROR_SYSTEM = 52,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_SYSTEM tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_SYSTEM = 52,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_UNK include/mpd/protocol.h /^ MPD_SERVER_ERROR_UNK = -1,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_UNK tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_UNK = -1,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_UNKNOWN_CMD include/mpd/protocol.h /^ MPD_SERVER_ERROR_UNKNOWN_CMD = 5,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_UNKNOWN_CMD tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_UNKNOWN_CMD = 5,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_UPDATE_ALREADY include/mpd/protocol.h /^ MPD_SERVER_ERROR_UPDATE_ALREADY = 54,$/;" e enum:mpd_server_error +MPD_SERVER_ERROR_UPDATE_ALREADY tmp/include/mpd/protocol.h /^ MPD_SERVER_ERROR_UPDATE_ALREADY = 54,$/;" e enum:mpd_server_error +MPD_SETTINGS_H include/mpd/settings.h 39;" d +MPD_SETTINGS_H tmp/include/mpd/settings.h 39;" d +MPD_SOCKET_H src/socket.h 30;" d +MPD_SONG_H include/mpd/song.h 40;" d +MPD_SONG_H tmp/include/mpd/song.h 40;" d +MPD_STATE_PAUSE include/mpd/status.h /^ MPD_STATE_PAUSE = 3,$/;" e enum:mpd_state +MPD_STATE_PAUSE tmp/include/mpd/status.h /^ MPD_STATE_PAUSE = 3,$/;" e enum:mpd_state +MPD_STATE_PLAY include/mpd/status.h /^ MPD_STATE_PLAY = 2,$/;" e enum:mpd_state +MPD_STATE_PLAY tmp/include/mpd/status.h /^ MPD_STATE_PLAY = 2,$/;" e enum:mpd_state +MPD_STATE_STOP include/mpd/status.h /^ MPD_STATE_STOP = 1,$/;" e enum:mpd_state +MPD_STATE_STOP tmp/include/mpd/status.h /^ MPD_STATE_STOP = 1,$/;" e enum:mpd_state +MPD_STATE_UNKNOWN include/mpd/status.h /^ MPD_STATE_UNKNOWN = 0,$/;" e enum:mpd_state +MPD_STATE_UNKNOWN tmp/include/mpd/status.h /^ MPD_STATE_UNKNOWN = 0,$/;" e enum:mpd_state +MPD_STATS_H include/mpd/stats.h 40;" d +MPD_STATS_H tmp/include/mpd/stats.h 40;" d +MPD_STATUS_H include/mpd/status.h 40;" d +MPD_STATUS_H tmp/include/mpd/status.h 40;" d +MPD_STICKER_H include/mpd/sticker.h 38;" d +MPD_STICKER_H tmp/include/mpd/sticker.h 38;" d +MPD_SYNC_H src/sync.h 37;" d +MPD_TAG_ALBUM include/mpd/tag.h /^ MPD_TAG_ALBUM,$/;" e enum:mpd_tag_type +MPD_TAG_ALBUM tmp/include/mpd/tag.h /^ MPD_TAG_ALBUM,$/;" e enum:mpd_tag_type +MPD_TAG_ALBUM_ARTIST include/mpd/tag.h /^ MPD_TAG_ALBUM_ARTIST,$/;" e enum:mpd_tag_type +MPD_TAG_ALBUM_ARTIST tmp/include/mpd/tag.h /^ MPD_TAG_ALBUM_ARTIST,$/;" e enum:mpd_tag_type +MPD_TAG_ALBUM_ARTIST_SORT include/mpd/tag.h /^ MPD_TAG_ALBUM_ARTIST_SORT,$/;" e enum:mpd_tag_type +MPD_TAG_ALBUM_ARTIST_SORT tmp/include/mpd/tag.h /^ MPD_TAG_ALBUM_ARTIST_SORT,$/;" e enum:mpd_tag_type +MPD_TAG_ARTIST include/mpd/tag.h /^ MPD_TAG_ARTIST,$/;" e enum:mpd_tag_type +MPD_TAG_ARTIST tmp/include/mpd/tag.h /^ MPD_TAG_ARTIST,$/;" e enum:mpd_tag_type +MPD_TAG_ARTIST_SORT include/mpd/tag.h /^ MPD_TAG_ARTIST_SORT,$/;" e enum:mpd_tag_type +MPD_TAG_ARTIST_SORT tmp/include/mpd/tag.h /^ MPD_TAG_ARTIST_SORT,$/;" e enum:mpd_tag_type +MPD_TAG_COMMENT include/mpd/tag.h /^ MPD_TAG_COMMENT,$/;" e enum:mpd_tag_type +MPD_TAG_COMMENT tmp/include/mpd/tag.h /^ MPD_TAG_COMMENT,$/;" e enum:mpd_tag_type +MPD_TAG_COMPOSER include/mpd/tag.h /^ MPD_TAG_COMPOSER,$/;" e enum:mpd_tag_type +MPD_TAG_COMPOSER tmp/include/mpd/tag.h /^ MPD_TAG_COMPOSER,$/;" e enum:mpd_tag_type +MPD_TAG_COUNT include/mpd/tag.h /^ MPD_TAG_COUNT$/;" e enum:mpd_tag_type +MPD_TAG_COUNT tmp/include/mpd/tag.h /^ MPD_TAG_COUNT$/;" e enum:mpd_tag_type +MPD_TAG_DATE include/mpd/tag.h /^ MPD_TAG_DATE,$/;" e enum:mpd_tag_type +MPD_TAG_DATE tmp/include/mpd/tag.h /^ MPD_TAG_DATE,$/;" e enum:mpd_tag_type +MPD_TAG_DISC include/mpd/tag.h /^ MPD_TAG_DISC,$/;" e enum:mpd_tag_type +MPD_TAG_DISC tmp/include/mpd/tag.h /^ MPD_TAG_DISC,$/;" e enum:mpd_tag_type +MPD_TAG_GENRE include/mpd/tag.h /^ MPD_TAG_GENRE,$/;" e enum:mpd_tag_type +MPD_TAG_GENRE tmp/include/mpd/tag.h /^ MPD_TAG_GENRE,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_ALBUMARTISTID include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_ALBUMARTISTID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_ALBUMARTISTID tmp/include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_ALBUMARTISTID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_ALBUMID include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_ALBUMID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_ALBUMID tmp/include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_ALBUMID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_ARTISTID include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_ARTISTID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_ARTISTID tmp/include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_ARTISTID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_RELEASETRACKID include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_RELEASETRACKID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_RELEASETRACKID tmp/include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_RELEASETRACKID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_TRACKID include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_TRACKID,$/;" e enum:mpd_tag_type +MPD_TAG_MUSICBRAINZ_TRACKID tmp/include/mpd/tag.h /^ MPD_TAG_MUSICBRAINZ_TRACKID,$/;" e enum:mpd_tag_type +MPD_TAG_NAME include/mpd/tag.h /^ MPD_TAG_NAME,$/;" e enum:mpd_tag_type +MPD_TAG_NAME tmp/include/mpd/tag.h /^ MPD_TAG_NAME,$/;" e enum:mpd_tag_type +MPD_TAG_PERFORMER include/mpd/tag.h /^ MPD_TAG_PERFORMER,$/;" e enum:mpd_tag_type +MPD_TAG_PERFORMER tmp/include/mpd/tag.h /^ MPD_TAG_PERFORMER,$/;" e enum:mpd_tag_type +MPD_TAG_TITLE include/mpd/tag.h /^ MPD_TAG_TITLE,$/;" e enum:mpd_tag_type +MPD_TAG_TITLE tmp/include/mpd/tag.h /^ MPD_TAG_TITLE,$/;" e enum:mpd_tag_type +MPD_TAG_TRACK include/mpd/tag.h /^ MPD_TAG_TRACK,$/;" e enum:mpd_tag_type +MPD_TAG_TRACK tmp/include/mpd/tag.h /^ MPD_TAG_TRACK,$/;" e enum:mpd_tag_type +MPD_TAG_UNKNOWN include/mpd/tag.h /^ MPD_TAG_UNKNOWN = -1,$/;" e enum:mpd_tag_type +MPD_TAG_UNKNOWN tmp/include/mpd/tag.h /^ MPD_TAG_UNKNOWN = -1,$/;" e enum:mpd_tag_type +MPD_URI_H src/uri.h 30;" d +MPD_VERSION_H include/mpd/version.h 36;" d +MPD_VERSION_H tmp/include/mpd/version.h 36;" d +MPD_WELCOME_MESSAGE src/connection.c 49;" d file: +MSG_DONTWAIT src/async.c 54;" d file: +MSG_DONTWAIT src/socket.c 54;" d file: +NM Makefile /^NM = \/usr\/bin\/nm -B$/;" m +NMEDIT Makefile /^NMEDIT = $/;" m +NORMAL_INSTALL Makefile /^NORMAL_INSTALL = :$/;" m +NORMAL_UNINSTALL Makefile /^NORMAL_UNINSTALL = :$/;" m +OBJDUMP Makefile /^OBJDUMP = objdump$/;" m +OBJEXT Makefile /^OBJEXT = o$/;" m +OTOOL Makefile /^OTOOL = $/;" m +OTOOL64 Makefile /^OTOOL64 = $/;" m +PACKAGE Makefile /^PACKAGE = libmpdclient$/;" m +PACKAGE config.h 54;" d +PACKAGE_BUGREPORT Makefile /^PACKAGE_BUGREPORT = musicpd-dev-team@lists.sourceforge.net$/;" m +PACKAGE_BUGREPORT config.h 57;" d +PACKAGE_NAME Makefile /^PACKAGE_NAME = libmpdclient$/;" m +PACKAGE_NAME config.h 60;" d +PACKAGE_STRING Makefile /^PACKAGE_STRING = libmpdclient 2.11$/;" m +PACKAGE_STRING config.h 63;" d +PACKAGE_TARNAME Makefile /^PACKAGE_TARNAME = libmpdclient$/;" m +PACKAGE_TARNAME config.h 66;" d +PACKAGE_URL Makefile /^PACKAGE_URL = $/;" m +PACKAGE_URL config.h 69;" d +PACKAGE_VERSION Makefile /^PACKAGE_VERSION = 2.11$/;" m +PACKAGE_VERSION config.h 72;" d +PAIR_STATE_FLOATING src/internal.h /^ PAIR_STATE_FLOATING,$/;" e enum:mpd_connection::__anon5 +PAIR_STATE_NONE src/internal.h /^ PAIR_STATE_NONE,$/;" e enum:mpd_connection::__anon5 +PAIR_STATE_NULL src/internal.h /^ PAIR_STATE_NULL,$/;" e enum:mpd_connection::__anon5 +PAIR_STATE_QUEUED src/internal.h /^ PAIR_STATE_QUEUED,$/;" e enum:mpd_connection::__anon5 +PATCH_VERSION Makefile /^PATCH_VERSION = 0$/;" m +PATH_SEPARATOR Makefile /^PATH_SEPARATOR = :$/;" m +POST_INSTALL Makefile /^POST_INSTALL = :$/;" m +POST_UNINSTALL Makefile /^POST_UNINSTALL = :$/;" m +PRE_INSTALL Makefile /^PRE_INSTALL = :$/;" m +PRE_UNINSTALL Makefile /^PRE_UNINSTALL = :$/;" m +PROGRAMS Makefile /^PROGRAMS = $(noinst_PROGRAMS)$/;" m +RANLIB Makefile /^RANLIB = ranlib$/;" m +RECHECK_LOGS Makefile /^RECHECK_LOGS = $(TEST_LOGS)$/;" m +RED test/main.c 46;" d file: +SED Makefile /^SED = \/bin\/sed$/;" m +SET_MAKE Makefile /^SET_MAKE = $/;" m +SHELL Makefile /^SHELL = \/bin\/bash$/;" m +SOURCES Makefile /^SOURCES = $(src_libmpdclient_la_SOURCES) $(src_example_SOURCES) \\$/;" m +SPARSE Makefile /^SPARSE = sparse$/;" m +SPARSE_CPPFLAGS Makefile /^SPARSE_CPPFLAGS = $(DEFAULT_INCLUDES) \\$/;" m +SPARSE_FLAGS Makefile /^SPARSE_FLAGS = $/;" m +START_TEST test/main.c 65;" d file: +STDC_HEADERS config.h 75;" d +STRIP Makefile /^STRIP = strip$/;" m +TESTS Makefile /^TESTS = test\/t_iso8601$(EXEEXT)$/;" m +TEST_EXTENSIONS Makefile /^TEST_EXTENSIONS = .test$/;" m +TEST_LOGS Makefile /^TEST_LOGS = $(am__test_logs2:.test.log=.log)$/;" m +TEST_LOG_COMPILE Makefile /^TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \\$/;" m +TEST_LOG_DRIVER Makefile /^TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)\/build\/test-driver$/;" m +TEST_SUITE_LOG Makefile /^TEST_SUITE_LOG = test-suite.log$/;" m +TYPE_ANY src/resolver.c /^ TYPE_ZERO, TYPE_ONE, TYPE_ANY$/;" e enum:resolver::__anon8 file: +TYPE_ONE src/resolver.c /^ TYPE_ZERO, TYPE_ONE, TYPE_ANY$/;" e enum:resolver::__anon8 file: +TYPE_ZERO src/resolver.c /^ TYPE_ZERO, TYPE_ONE, TYPE_ANY$/;" e enum:resolver::__anon8 file: +UNSIGNEDLEN src/cplaylist.c /^ UNSIGNEDLEN = (sizeof(unsigned) * CHAR_BIT + 1) \/ 3 + 1,$/;" e enum:__anon7 file: +VERSION Makefile /^VERSION = 2.11$/;" m +VERSION config.h 78;" d +YELLOW test/main.c 48;" d file: +abs_builddir Makefile /^abs_builddir = \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient$/;" m +abs_srcdir Makefile /^abs_srcdir = \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient$/;" m +abs_top_builddir Makefile /^abs_top_builddir = \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient$/;" m +abs_top_srcdir Makefile /^abs_top_srcdir = \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient$/;" m +ac_ct_AR Makefile /^ac_ct_AR = ar$/;" m +ac_ct_CC Makefile /^ac_ct_CC = gcc$/;" m +ac_ct_DUMPBIN Makefile /^ac_ct_DUMPBIN = $/;" m +ac_fn_c_check_func configure /^ac_fn_c_check_func ()$/;" f +ac_fn_c_check_header_compile configure /^ac_fn_c_check_header_compile ()$/;" f +ac_fn_c_try_compile configure /^ac_fn_c_try_compile ()$/;" f +ac_fn_c_try_cpp configure /^ac_fn_c_try_cpp ()$/;" f +ac_fn_c_try_link configure /^ac_fn_c_try_link ()$/;" f +ac_fn_c_try_run configure /^ac_fn_c_try_run ()$/;" f +addr src/resolver.h /^ const struct sockaddr *addr;$/;" m struct:resolver_address typeref:struct:resolver_address::sockaddr +addrlen src/resolver.h /^ size_t addrlen;$/;" m struct:resolver_address +ai src/resolver.c /^ struct addrinfo *ai;$/;" m struct:resolver typeref:struct:resolver::addrinfo file: +aix_post_process_depfile build/depcomp /^aix_post_process_depfile ()$/;" f +am__CONFIG_DISTCLEAN_FILES Makefile /^am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \\$/;" m +am__EXEEXT_1 Makefile /^am__EXEEXT_1 = test\/t_iso8601$(EXEEXT)$/;" m +am__aclocal_m4_deps Makefile /^am__aclocal_m4_deps = $(top_srcdir)\/m4\/ax_check_compiler_flags.m4 \\$/;" m +am__append_1 Makefile /^am__append_1 = -Wl,--version-script=$(srcdir)\/libmpdclient.ld$/;" m +am__base_list Makefile /^am__base_list = \\$/;" m +am__can_run_installinfo Makefile /^am__can_run_installinfo = \\$/;" m +am__cd Makefile /^am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd$/;" m +am__check_pre Makefile /^am__check_pre = \\$/;" m +am__common_driver_flags Makefile /^am__common_driver_flags = \\$/;" m +am__configure_deps Makefile /^am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \\$/;" m +am__copy_in_global_log_rx Makefile /^am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*$/;" m +am__create_global_log Makefile /^am__create_global_log = $(AWK) ' \\$/;" m +am__define_uniq_tagged_files Makefile /^am__define_uniq_tagged_files = \\$/;" m +am__depfiles_maybe Makefile /^am__depfiles_maybe = depfiles$/;" m +am__dirstamp Makefile /^am__dirstamp = $(am__leading_dot)dirstamp$/;" m +am__distuninstallcheck_listfiles Makefile /^am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \\$/;" m +am__global_test_result_rx Makefile /^am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*$/;" m +am__include Makefile /^am__include = include$/;" m +am__install_max Makefile /^am__install_max = 40$/;" m +am__installdirs Makefile /^am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(docdir)" \\$/;" m +am__is_gnu_make Makefile /^am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'$/;" m +am__leading_dot Makefile /^am__leading_dot = .$/;" m +am__list_recheck_tests Makefile /^am__list_recheck_tests = $(AWK) '{ \\$/;" m +am__make_dryrun Makefile /^am__make_dryrun = (target_option=n; $(am__make_running_with_option))$/;" m +am__make_keepgoing Makefile /^am__make_keepgoing = (target_option=k; $(am__make_running_with_option))$/;" m +am__make_running_with_option Makefile /^am__make_running_with_option = \\$/;" m +am__mv Makefile /^am__mv = mv -f$/;" m +am__nobase_list Makefile /^am__nobase_list = $(am__nobase_strip_setup); \\$/;" m +am__nobase_strip Makefile /^am__nobase_strip = \\$/;" m +am__nobase_strip_setup Makefile /^am__nobase_strip_setup = \\$/;" m +am__post_remove_distdir Makefile /^am__post_remove_distdir = $(am__remove_distdir)$/;" m +am__quote Makefile /^am__quote = $/;" m +am__recheck_rx Makefile /^am__recheck_rx = ^[ ]*:recheck:[ ]*$/;" m +am__remove_distdir Makefile /^am__remove_distdir = \\$/;" m +am__rst_title Makefile /^am__rst_title = { sed 's\/.*\/ & \/;h;s\/.\/=\/g;p;x;s\/ *$$\/\/;p;g' && echo; }$/;" m +am__set_TESTS_bases Makefile /^am__set_TESTS_bases = \\$/;" m +am__set_b Makefile /^am__set_b = \\$/;" m +am__sh_e_setup Makefile /^am__sh_e_setup = case $$- in *e*) set +e;; esac$/;" m +am__strip_dir Makefile /^am__strip_dir = f=`echo $$p | sed -e 's|^.*\/||'`;$/;" m +am__tagged_files Makefile /^am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \\$/;" m +am__tar Makefile /^am__tar = $${TAR-tar} chof - "$$tardir"$/;" m +am__test_logs1 Makefile /^am__test_logs1 = $(TESTS:=.log)$/;" m +am__test_logs2 Makefile /^am__test_logs2 = $(am__test_logs1:.log=.log)$/;" m +am__tty_colors Makefile /^am__tty_colors = { \\$/;" m +am__tty_colors_dummy Makefile /^am__tty_colors_dummy = \\$/;" m +am__uninstall_files_from_dir Makefile /^am__uninstall_files_from_dir = { \\$/;" m +am__uniquify_input Makefile /^am__uniquify_input = $(AWK) '\\$/;" m +am__untar Makefile /^am__untar = $${TAR-tar} xf -$/;" m +am__v_CCLD_ Makefile /^am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))$/;" m +am__v_CCLD_0 Makefile /^am__v_CCLD_0 = @echo " CCLD " $@;$/;" m +am__v_CCLD_1 Makefile /^am__v_CCLD_1 = $/;" m +am__v_CC_ Makefile /^am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))$/;" m +am__v_CC_0 Makefile /^am__v_CC_0 = @echo " CC " $@;$/;" m +am__v_CC_1 Makefile /^am__v_CC_1 = $/;" m +am__v_GEN_ Makefile /^am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))$/;" m +am__v_GEN_0 Makefile /^am__v_GEN_0 = @echo " GEN " $@;$/;" m +am__v_GEN_1 Makefile /^am__v_GEN_1 = $/;" m +am__v_P_ Makefile /^am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))$/;" m +am__v_P_0 Makefile /^am__v_P_0 = false$/;" m +am__v_P_1 Makefile /^am__v_P_1 = :$/;" m +am__v_at_ Makefile /^am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))$/;" m +am__v_at_0 Makefile /^am__v_at_0 = @$/;" m +am__v_at_1 Makefile /^am__v_at_1 = $/;" m +am__v_lt_ Makefile /^am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))$/;" m +am__v_lt_0 Makefile /^am__v_lt_0 = --silent$/;" m +am__v_lt_1 Makefile /^am__v_lt_1 = $/;" m +am__vpath_adj Makefile /^am__vpath_adj = case $$p in \\$/;" m +am__vpath_adj_setup Makefile /^am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;$/;" m +am_src_example_OBJECTS Makefile /^am_src_example_OBJECTS = src\/example.$(OBJEXT)$/;" m +am_src_libmpdclient_la_OBJECTS Makefile /^am_src_libmpdclient_la_OBJECTS = src\/async.lo src\/ierror.lo \\$/;" m +am_test_t_iso8601_OBJECTS Makefile /^am_test_t_iso8601_OBJECTS = test\/test_t_iso8601-t_iso8601.$(OBJEXT) \\$/;" m +am_test_test_OBJECTS Makefile /^am_test_test_OBJECTS = test\/main.$(OBJEXT)$/;" m +as_fn_append config.status /^ as_fn_append ()$/;" f +as_fn_append configure /^ as_fn_append ()$/;" f +as_fn_arith config.status /^ as_fn_arith ()$/;" f +as_fn_arith configure /^ as_fn_arith ()$/;" f +as_fn_error config.status /^as_fn_error ()$/;" f +as_fn_error configure /^as_fn_error ()$/;" f +as_fn_executable_p config.status /^as_fn_executable_p ()$/;" f +as_fn_executable_p configure /^as_fn_executable_p ()$/;" f +as_fn_exit config.status /^as_fn_exit ()$/;" f +as_fn_exit configure /^as_fn_exit ()$/;" f +as_fn_failure configure /^as_fn_failure () { as_fn_return 1; }$/;" f +as_fn_mkdir_p config.status /^as_fn_mkdir_p ()$/;" f +as_fn_mkdir_p configure /^as_fn_mkdir_p ()$/;" f +as_fn_ret_failure configure /^as_fn_ret_failure () { return 1; }$/;" f +as_fn_ret_success configure /^as_fn_ret_success () { return 0; }$/;" f +as_fn_set_status config.status /^as_fn_set_status ()$/;" f +as_fn_set_status configure /^as_fn_set_status ()$/;" f +as_fn_success configure /^as_fn_success () { as_fn_return 0; }$/;" f +as_fn_unset config.status /^as_fn_unset ()$/;" f +as_fn_unset configure /^as_fn_unset ()$/;" f +async src/internal.h /^ struct mpd_async *async;$/;" m struct:mpd_connection typeref:struct:mpd_connection::mpd_async +at src/ierror.h /^ int at;$/;" m struct:mpd_error_info +at src/parser.c /^ unsigned at;$/;" m struct:mpd_parser::__anon2::__anon3 file: +audio_format src/status.c /^ struct mpd_audio_format audio_format;$/;" m struct:mpd_status typeref:struct:mpd_status::mpd_audio_format file: +bindir Makefile /^bindir = ${exec_prefix}\/bin$/;" m +bits include/mpd/audio_format.h /^ uint8_t bits;$/;" m struct:mpd_audio_format +bits tmp/include/mpd/audio_format.h /^ uint8_t bits;$/;" m struct:mpd_audio_format +build Makefile /^build = x86_64-pc-linux-gnu$/;" m +build_alias Makefile /^build_alias = $/;" m +build_cpu Makefile /^build_cpu = x86_64$/;" m +build_os Makefile /^build_os = linux-gnu$/;" m +build_triplet Makefile /^build_triplet = x86_64-pc-linux-gnu$/;" m +build_vendor Makefile /^build_vendor = pc$/;" m +builddir Makefile /^builddir = .$/;" m +channel src/message.c /^ char *channel;$/;" m struct:mpd_message file: +channels include/mpd/audio_format.h /^ uint8_t channels;$/;" m struct:mpd_audio_format +channels tmp/include/mpd/audio_format.h /^ uint8_t channels;$/;" m struct:mpd_audio_format +check_PROGRAMS Makefile /^check_PROGRAMS = $(am__EXEEXT_1)$/;" m +closesocket src/async.c /^closesocket(int fd)$/;" f file: +code src/ierror.h /^ enum mpd_error code;$/;" m struct:mpd_error_info typeref:enum:mpd_error_info::mpd_error +command_list_remaining src/internal.h /^ int command_list_remaining;$/;" m struct:mpd_connection +consume src/status.c /^ bool consume;$/;" m struct:mpd_status file: +crossfade src/status.c /^ unsigned crossfade;$/;" m struct:mpd_status file: +current src/resolver.c /^ struct resolver_address current;$/;" m struct:resolver typeref:struct:resolver::resolver_address file: +data src/buffer.h /^ unsigned char data[4096];$/;" m struct:mpd_buffer +datadir Makefile /^datadir = ${datarootdir}$/;" m +datarootdir Makefile /^datarootdir = ${prefix}\/share$/;" m +db_play_time src/stats.c /^ unsigned long db_play_time;$/;" m struct:mpd_stats file: +db_update_time src/stats.c /^ unsigned long db_update_time;$/;" m struct:mpd_stats file: +depcomp Makefile /^depcomp = $(SHELL) $(top_srcdir)\/build\/depcomp$/;" m +directory src/entity.c /^ struct mpd_directory *directory;$/;" m union:mpd_entity::__anon1 typeref:struct:mpd_entity::__anon1::mpd_directory file: +discrete src/parser.c /^ bool discrete;$/;" m union:mpd_parser::__anon2 file: +discrete_finished src/internal.h /^ bool discrete_finished;$/;" m struct:mpd_connection +distcleancheck_listfiles Makefile /^distcleancheck_listfiles = find . -type f -print$/;" m +distdir Makefile /^distdir = $(PACKAGE)-$(VERSION)$/;" m +distuninstallcheck_listfiles Makefile /^distuninstallcheck_listfiles = find . -type f -print$/;" m +doc_DATA Makefile /^doc_DATA = README COPYING NEWS$/;" m +docdir Makefile /^docdir = ${datarootdir}\/doc\/${PACKAGE_TARNAME}$/;" m +duration src/song.c /^ unsigned duration;$/;" m struct:mpd_song file: +duration_ms src/song.c /^ unsigned duration_ms;$/;" m struct:mpd_song file: +dvidir Makefile /^dvidir = ${docdir}$/;" m +elapsed_ms src/status.c /^ unsigned elapsed_ms;$/;" m struct:mpd_status file: +elapsed_time src/status.c /^ unsigned elapsed_time;$/;" m struct:mpd_status file: +enabled src/output.c /^ bool enabled;$/;" m struct:mpd_output file: +end src/song.c /^ unsigned end;$/;" m struct:mpd_song file: +error src/async.c /^ struct mpd_error_info error;$/;" m struct:mpd_async typeref:struct:mpd_async::mpd_error_info file: +error src/internal.h /^ struct mpd_error_info error;$/;" m struct:mpd_connection typeref:struct:mpd_connection::mpd_error_info +error src/parser.c /^ } error;$/;" m union:mpd_parser::__anon2 typeref:struct:mpd_parser::__anon2::__anon3 file: +error src/status.c /^ char *error;$/;" m struct:mpd_status file: +escape src/quote.c /^escape(char *dest, char *end, const char *value)$/;" f file: +exec_prefix Makefile /^exec_prefix = ${prefix}$/;" m +family src/resolver.h /^ int family;$/;" m struct:resolver_address +fd src/async.c /^ int fd;$/;" m struct:mpd_async file: +fd_mask_flags src/fd_util.c /^fd_mask_flags(int fd, int and_mask, int xor_mask)$/;" f file: +fd_set_cloexec src/fd_util.c /^fd_set_cloexec(int fd, bool enable)$/;" f file: +fd_set_nonblock src/fd_util.c /^fd_set_nonblock(int fd)$/;" f file: +finished src/song.c /^ bool finished;$/;" m struct:mpd_song file: +format_range src/send.c /^format_range(char *buffer, size_t size, unsigned start, unsigned end)$/;" f file: +func_append build/ltmain.sh /^func_append ()$/;" f +func_append config.status /^func_append ()\\$/;" f +func_append configure /^func_append ()\\$/;" f +func_append libtool /^func_append ()$/;" f +func_append_quoted build/ltmain.sh /^func_append_quoted ()$/;" f +func_append_quoted config.status /^func_append_quoted ()\\$/;" f +func_append_quoted configure /^func_append_quoted ()\\$/;" f +func_append_quoted libtool /^func_append_quoted ()$/;" f +func_arith build/ltmain.sh /^func_arith ()$/;" f +func_arith config.status /^func_arith ()\\$/;" f +func_arith configure /^func_arith ()\\$/;" f +func_arith libtool /^func_arith ()$/;" f +func_basename build/ltmain.sh /^func_basename ()$/;" f +func_basename config.status /^func_basename ()\\$/;" f +func_basename configure /^func_basename ()\\$/;" f +func_basename libtool /^func_basename ()$/;" f +func_check_version_match build/ltmain.sh /^func_check_version_match ()$/;" f +func_check_version_match libtool /^func_check_version_match ()$/;" f +func_cl_dashL build/compile /^func_cl_dashL ()$/;" f +func_cl_dashl build/compile /^func_cl_dashl ()$/;" f +func_cl_wrapper build/compile /^func_cl_wrapper ()$/;" f +func_config build/ltmain.sh /^func_config ()$/;" f +func_config libtool /^func_config ()$/;" f +func_convert_core_file_wine_to_w32 build/ltmain.sh /^func_convert_core_file_wine_to_w32 ()$/;" f +func_convert_core_file_wine_to_w32 libtool /^func_convert_core_file_wine_to_w32 ()$/;" f +func_convert_core_msys_to_w32 build/ltmain.sh /^func_convert_core_msys_to_w32 ()$/;" f +func_convert_core_msys_to_w32 libtool /^func_convert_core_msys_to_w32 ()$/;" f +func_convert_core_path_wine_to_w32 build/ltmain.sh /^func_convert_core_path_wine_to_w32 ()$/;" f +func_convert_core_path_wine_to_w32 libtool /^func_convert_core_path_wine_to_w32 ()$/;" f +func_convert_file_check build/ltmain.sh /^func_convert_file_check ()$/;" f +func_convert_file_check libtool /^func_convert_file_check ()$/;" f +func_convert_file_cygwin_to_w32 build/ltmain.sh /^func_convert_file_cygwin_to_w32 ()$/;" f +func_convert_file_cygwin_to_w32 libtool /^func_convert_file_cygwin_to_w32 ()$/;" f +func_convert_file_msys_to_cygwin build/ltmain.sh /^func_convert_file_msys_to_cygwin ()$/;" f +func_convert_file_msys_to_cygwin libtool /^func_convert_file_msys_to_cygwin ()$/;" f +func_convert_file_msys_to_w32 build/ltmain.sh /^func_convert_file_msys_to_w32 ()$/;" f +func_convert_file_msys_to_w32 libtool /^func_convert_file_msys_to_w32 ()$/;" f +func_convert_file_nix_to_cygwin build/ltmain.sh /^func_convert_file_nix_to_cygwin ()$/;" f +func_convert_file_nix_to_cygwin libtool /^func_convert_file_nix_to_cygwin ()$/;" f +func_convert_file_nix_to_w32 build/ltmain.sh /^func_convert_file_nix_to_w32 ()$/;" f +func_convert_file_nix_to_w32 libtool /^func_convert_file_nix_to_w32 ()$/;" f +func_convert_file_noop build/ltmain.sh /^func_convert_file_noop ()$/;" f +func_convert_file_noop libtool /^func_convert_file_noop ()$/;" f +func_convert_path_check build/ltmain.sh /^func_convert_path_check ()$/;" f +func_convert_path_check libtool /^func_convert_path_check ()$/;" f +func_convert_path_cygwin_to_w32 build/ltmain.sh /^func_convert_path_cygwin_to_w32 ()$/;" f +func_convert_path_cygwin_to_w32 libtool /^func_convert_path_cygwin_to_w32 ()$/;" f +func_convert_path_front_back_pathsep build/ltmain.sh /^func_convert_path_front_back_pathsep ()$/;" f +func_convert_path_front_back_pathsep libtool /^func_convert_path_front_back_pathsep ()$/;" f +func_convert_path_msys_to_cygwin build/ltmain.sh /^func_convert_path_msys_to_cygwin ()$/;" f +func_convert_path_msys_to_cygwin libtool /^func_convert_path_msys_to_cygwin ()$/;" f +func_convert_path_msys_to_w32 build/ltmain.sh /^func_convert_path_msys_to_w32 ()$/;" f +func_convert_path_msys_to_w32 libtool /^func_convert_path_msys_to_w32 ()$/;" f +func_convert_path_nix_to_cygwin build/ltmain.sh /^func_convert_path_nix_to_cygwin ()$/;" f +func_convert_path_nix_to_cygwin libtool /^func_convert_path_nix_to_cygwin ()$/;" f +func_convert_path_nix_to_w32 build/ltmain.sh /^func_convert_path_nix_to_w32 ()$/;" f +func_convert_path_nix_to_w32 libtool /^func_convert_path_nix_to_w32 ()$/;" f +func_convert_path_noop build/ltmain.sh /^func_convert_path_noop ()$/;" f +func_convert_path_noop libtool /^func_convert_path_noop ()$/;" f +func_cygming_dll_for_implib build/ltmain.sh /^func_cygming_dll_for_implib ()$/;" f +func_cygming_dll_for_implib libtool /^func_cygming_dll_for_implib ()$/;" f +func_cygming_dll_for_implib_fallback build/ltmain.sh /^func_cygming_dll_for_implib_fallback ()$/;" f +func_cygming_dll_for_implib_fallback libtool /^func_cygming_dll_for_implib_fallback ()$/;" f +func_cygming_dll_for_implib_fallback_core build/ltmain.sh /^func_cygming_dll_for_implib_fallback_core ()$/;" f +func_cygming_dll_for_implib_fallback_core libtool /^func_cygming_dll_for_implib_fallback_core ()$/;" f +func_cygming_gnu_implib_p build/ltmain.sh /^func_cygming_gnu_implib_p ()$/;" f +func_cygming_gnu_implib_p libtool /^func_cygming_gnu_implib_p ()$/;" f +func_cygming_ms_implib_p build/ltmain.sh /^func_cygming_ms_implib_p ()$/;" f +func_cygming_ms_implib_p libtool /^func_cygming_ms_implib_p ()$/;" f +func_cygpath build/ltmain.sh /^func_cygpath ()$/;" f +func_cygpath libtool /^func_cygpath ()$/;" f +func_dirname build/ltmain.sh /^func_dirname ()$/;" f +func_dirname config.status /^func_dirname ()\\$/;" f +func_dirname configure /^func_dirname ()\\$/;" f +func_dirname libtool /^func_dirname ()$/;" f +func_dirname_and_basename build/ltmain.sh /^func_dirname_and_basename ()$/;" f +func_dirname_and_basename config.status /^func_dirname_and_basename ()\\$/;" f +func_dirname_and_basename configure /^func_dirname_and_basename ()\\$/;" f +func_dirname_and_basename libtool /^func_dirname_and_basename ()$/;" f +func_echo build/ltmain.sh /^func_echo ()$/;" f +func_echo libtool /^func_echo ()$/;" f +func_echo_all build/ltmain.sh /^func_echo_all ()$/;" f +func_echo_all configure /^func_echo_all ()$/;" f +func_echo_all libtool /^func_echo_all ()$/;" f +func_emit_cwrapperexe_src build/ltmain.sh /^func_emit_cwrapperexe_src ()$/;" f +func_emit_cwrapperexe_src libtool /^func_emit_cwrapperexe_src ()$/;" f +func_emit_wrapper build/ltmain.sh /^func_emit_wrapper ()$/;" f +func_emit_wrapper libtool /^func_emit_wrapper ()$/;" f +func_enable_tag build/ltmain.sh /^func_enable_tag ()$/;" f +func_enable_tag libtool /^func_enable_tag ()$/;" f +func_error build/ltmain.sh /^func_error ()$/;" f +func_error libtool /^func_error ()$/;" f +func_exec_program build/ltmain.sh /^func_exec_program ()$/;" f +func_exec_program libtool /^func_exec_program ()$/;" f +func_exec_program src/example /^func_exec_program ()$/;" f +func_exec_program test/test /^func_exec_program ()$/;" f +func_exec_program_core build/ltmain.sh /^func_exec_program_core ()$/;" f +func_exec_program_core libtool /^func_exec_program_core ()$/;" f +func_exec_program_core src/example /^func_exec_program_core ()$/;" f +func_exec_program_core test/test /^func_exec_program_core ()$/;" f +func_execute_cmds build/ltmain.sh /^func_execute_cmds ()$/;" f +func_execute_cmds libtool /^func_execute_cmds ()$/;" f +func_extract_an_archive build/ltmain.sh /^func_extract_an_archive ()$/;" f +func_extract_an_archive libtool /^func_extract_an_archive ()$/;" f +func_extract_archives build/ltmain.sh /^func_extract_archives ()$/;" f +func_extract_archives libtool /^func_extract_archives ()$/;" f +func_fallback_echo build/ltmain.sh /^func_fallback_echo ()$/;" f +func_fallback_echo config.status /^func_fallback_echo ()$/;" f +func_fallback_echo configure /^ func_fallback_echo ()$/;" f +func_fallback_echo configure /^func_fallback_echo ()$/;" f +func_fallback_echo libtool /^func_fallback_echo ()$/;" f +func_fallback_echo src/example /^func_fallback_echo ()$/;" f +func_fallback_echo test/test /^func_fallback_echo ()$/;" f +func_fatal_configuration build/ltmain.sh /^func_fatal_configuration ()$/;" f +func_fatal_configuration libtool /^func_fatal_configuration ()$/;" f +func_fatal_error build/ltmain.sh /^func_fatal_error ()$/;" f +func_fatal_error libtool /^func_fatal_error ()$/;" f +func_fatal_help build/ltmain.sh /^func_fatal_help ()$/;" f +func_fatal_help libtool /^func_fatal_help ()$/;" f +func_features build/ltmain.sh /^func_features ()$/;" f +func_features libtool /^func_features ()$/;" f +func_file_conv build/compile /^func_file_conv ()$/;" f +func_generate_dlsyms build/ltmain.sh /^func_generate_dlsyms ()$/;" f +func_generate_dlsyms libtool /^func_generate_dlsyms ()$/;" f +func_grep build/ltmain.sh /^func_grep ()$/;" f +func_grep libtool /^func_grep ()$/;" f +func_help build/ltmain.sh /^func_help ()$/;" f +func_help libtool /^func_help ()$/;" f +func_infer_tag build/ltmain.sh /^func_infer_tag ()$/;" f +func_infer_tag libtool /^func_infer_tag ()$/;" f +func_init_to_host_path_cmd build/ltmain.sh /^func_init_to_host_path_cmd ()$/;" f +func_init_to_host_path_cmd libtool /^func_init_to_host_path_cmd ()$/;" f +func_lalib_p build/ltmain.sh /^func_lalib_p ()$/;" f +func_lalib_p libtool /^func_lalib_p ()$/;" f +func_lalib_unsafe_p build/ltmain.sh /^func_lalib_unsafe_p ()$/;" f +func_lalib_unsafe_p libtool /^func_lalib_unsafe_p ()$/;" f +func_len build/ltmain.sh /^func_len ()$/;" f +func_len config.status /^func_len ()\\$/;" f +func_len configure /^func_len ()\\$/;" f +func_len libtool /^func_len ()$/;" f +func_lo2o build/ltmain.sh /^func_lo2o ()$/;" f +func_lo2o config.status /^func_lo2o ()\\$/;" f +func_lo2o configure /^func_lo2o ()\\$/;" f +func_lo2o libtool /^func_lo2o ()$/;" f +func_lt_dump_args build/ltmain.sh /^func_lt_dump_args ()$/;" f +func_lt_dump_args libtool /^func_lt_dump_args ()$/;" f +func_lt_dump_args src/example /^func_lt_dump_args ()$/;" f +func_lt_dump_args test/test /^func_lt_dump_args ()$/;" f +func_ltwrapper_executable_p build/ltmain.sh /^func_ltwrapper_executable_p ()$/;" f +func_ltwrapper_executable_p libtool /^func_ltwrapper_executable_p ()$/;" f +func_ltwrapper_p build/ltmain.sh /^func_ltwrapper_p ()$/;" f +func_ltwrapper_p libtool /^func_ltwrapper_p ()$/;" f +func_ltwrapper_script_p build/ltmain.sh /^func_ltwrapper_script_p ()$/;" f +func_ltwrapper_script_p libtool /^func_ltwrapper_script_p ()$/;" f +func_ltwrapper_scriptname build/ltmain.sh /^func_ltwrapper_scriptname ()$/;" f +func_ltwrapper_scriptname libtool /^func_ltwrapper_scriptname ()$/;" f +func_missing_arg build/ltmain.sh /^func_missing_arg ()$/;" f +func_missing_arg libtool /^func_missing_arg ()$/;" f +func_mkdir_p build/ltmain.sh /^func_mkdir_p ()$/;" f +func_mkdir_p libtool /^func_mkdir_p ()$/;" f +func_mktempdir build/ltmain.sh /^func_mktempdir ()$/;" f +func_mktempdir libtool /^func_mktempdir ()$/;" f +func_mode_compile build/ltmain.sh /^func_mode_compile ()$/;" f +func_mode_compile libtool /^func_mode_compile ()$/;" f +func_mode_execute build/ltmain.sh /^func_mode_execute ()$/;" f +func_mode_execute libtool /^func_mode_execute ()$/;" f +func_mode_finish build/ltmain.sh /^func_mode_finish ()$/;" f +func_mode_finish libtool /^func_mode_finish ()$/;" f +func_mode_help build/ltmain.sh /^func_mode_help ()$/;" f +func_mode_help libtool /^func_mode_help ()$/;" f +func_mode_install build/ltmain.sh /^func_mode_install ()$/;" f +func_mode_install libtool /^func_mode_install ()$/;" f +func_mode_link build/ltmain.sh /^func_mode_link ()$/;" f +func_mode_link libtool /^func_mode_link ()$/;" f +func_mode_uninstall build/ltmain.sh /^func_mode_uninstall ()$/;" f +func_mode_uninstall libtool /^func_mode_uninstall ()$/;" f +func_normal_abspath build/ltmain.sh /^func_normal_abspath ()$/;" f +func_normal_abspath libtool /^func_normal_abspath ()$/;" f +func_parse_lt_options build/ltmain.sh /^func_parse_lt_options ()$/;" f +func_parse_lt_options libtool /^func_parse_lt_options ()$/;" f +func_parse_lt_options src/example /^func_parse_lt_options ()$/;" f +func_parse_lt_options test/test /^func_parse_lt_options ()$/;" f +func_quote_for_eval build/ltmain.sh /^func_quote_for_eval ()$/;" f +func_quote_for_eval libtool /^func_quote_for_eval ()$/;" f +func_quote_for_expand build/ltmain.sh /^func_quote_for_expand ()$/;" f +func_quote_for_expand libtool /^func_quote_for_expand ()$/;" f +func_relative_path build/ltmain.sh /^func_relative_path ()$/;" f +func_relative_path libtool /^func_relative_path ()$/;" f +func_replace_sysroot build/ltmain.sh /^func_replace_sysroot ()$/;" f +func_replace_sysroot libtool /^func_replace_sysroot ()$/;" f +func_resolve_sysroot build/ltmain.sh /^func_resolve_sysroot ()$/;" f +func_resolve_sysroot libtool /^func_resolve_sysroot ()$/;" f +func_show_eval build/ltmain.sh /^func_show_eval ()$/;" f +func_show_eval libtool /^func_show_eval ()$/;" f +func_show_eval_locale build/ltmain.sh /^func_show_eval_locale ()$/;" f +func_show_eval_locale libtool /^func_show_eval_locale ()$/;" f +func_source build/ltmain.sh /^func_source ()$/;" f +func_source libtool /^func_source ()$/;" f +func_split_long_opt build/ltmain.sh /^func_split_long_opt ()$/;" f +func_split_long_opt config.status /^func_split_long_opt ()\\$/;" f +func_split_long_opt configure /^func_split_long_opt ()\\$/;" f +func_split_long_opt libtool /^func_split_long_opt ()$/;" f +func_split_short_opt build/ltmain.sh /^func_split_short_opt ()$/;" f +func_split_short_opt config.status /^func_split_short_opt ()\\$/;" f +func_split_short_opt configure /^func_split_short_opt ()\\$/;" f +func_split_short_opt libtool /^func_split_short_opt ()$/;" f +func_stripname build/ltmain.sh /^func_stripname ()$/;" f +func_stripname config.status /^func_stripname ()\\$/;" f +func_stripname configure /^func_stripname ()\\$/;" f +func_stripname libtool /^func_stripname ()$/;" f +func_to_host_file build/ltmain.sh /^func_to_host_file ()$/;" f +func_to_host_file libtool /^func_to_host_file ()$/;" f +func_to_host_path build/ltmain.sh /^func_to_host_path ()$/;" f +func_to_host_path libtool /^func_to_host_path ()$/;" f +func_to_tool_file build/ltmain.sh /^func_to_tool_file ()$/;" f +func_to_tool_file libtool /^func_to_tool_file ()$/;" f +func_tr_sh build/ltmain.sh /^func_tr_sh ()$/;" f +func_tr_sh libtool /^func_tr_sh ()$/;" f +func_usage build/ltmain.sh /^func_usage ()$/;" f +func_usage libtool /^func_usage ()$/;" f +func_verbose build/ltmain.sh /^func_verbose ()$/;" f +func_verbose libtool /^func_verbose ()$/;" f +func_version build/ltmain.sh /^func_version ()$/;" f +func_version libtool /^func_version ()$/;" f +func_warning build/ltmain.sh /^func_warning ()$/;" f +func_warning libtool /^func_warning ()$/;" f +func_win32_import_lib_p build/ltmain.sh /^func_win32_import_lib_p ()$/;" f +func_win32_import_lib_p libtool /^func_win32_import_lib_p ()$/;" f +func_win32_libid build/ltmain.sh /^func_win32_libid ()$/;" f +func_win32_libid libtool /^func_win32_libid ()$/;" f +func_write_libtool_object build/ltmain.sh /^func_write_libtool_object ()$/;" f +func_write_libtool_object libtool /^func_write_libtool_object ()$/;" f +func_xform build/ltmain.sh /^func_xform ()$/;" f +func_xform config.status /^func_xform ()\\$/;" f +func_xform configure /^func_xform ()\\$/;" f +func_xform libtool /^func_xform ()$/;" f +give_advice build/missing /^give_advice ()$/;" f +gmtime_r src/iso8601.c /^gmtime_r(const time_t *timep, struct tm *result)$/;" f file: +handle_error src/example.c /^handle_error(struct mpd_connection *c)$/;" f file: +host Makefile /^host = x86_64-pc-linux-gnu$/;" m +host src/settings.c /^ char *host;$/;" m struct:mpd_settings file: +host_alias Makefile /^host_alias = $/;" m +host_cpu Makefile /^host_cpu = x86_64$/;" m +host_os Makefile /^host_os = linux-gnu$/;" m +host_triplet Makefile /^host_triplet = x86_64-pc-linux-gnu$/;" m +host_vendor Makefile /^host_vendor = pc$/;" m +htmldir Makefile /^htmldir = ${docdir}$/;" m +id src/output.c /^ unsigned id;$/;" m struct:mpd_output file: +id src/song.c /^ unsigned id;$/;" m struct:mpd_song file: +idle_names src/idle.c /^static const char *const idle_names[] = {$/;" v file: +ignore_case_char_equals src/tag.c /^ignore_case_char_equals(const char a, const char b)$/;" f file: +ignore_case_string_equals src/tag.c /^ignore_case_string_equals(const char *a, const char *b)$/;" f file: +ignore_errno src/async.c /^ignore_errno(int e)$/;" f file: +ignore_errno src/socket.c /^ignore_errno(int e)$/;" f file: +ignore_errno src/sync.c /^ignore_errno(int e)$/;" f file: +includedir Makefile /^includedir = ${prefix}\/include$/;" m +info src/entity.c /^ } info;$/;" m struct:mpd_entity typeref:union:mpd_entity::__anon1 file: +infodir Makefile /^infodir = ${datarootdir}\/info$/;" m +input src/async.c /^ struct mpd_buffer input;$/;" m struct:mpd_async typeref:struct:mpd_async::mpd_buffer file: +install_sh Makefile /^install_sh = ${SHELL} \/home\/rh\/my_code\/OpenWrt_Luci_Lua\/1_6.h12_dev\/libmpdclient\/build\/install-sh$/;" m +install_sh_DATA Makefile /^install_sh_DATA = $(install_sh) -c -m 644$/;" m +install_sh_PROGRAM Makefile /^install_sh_PROGRAM = $(install_sh) -c$/;" m +install_sh_SCRIPT Makefile /^install_sh_SCRIPT = $(install_sh) -c$/;" m +iso8601_datetime_format src/iso8601.c /^iso8601_datetime_format(char *buffer, size_t size, time_t t)$/;" f +iso8601_datetime_parse src/iso8601.c /^iso8601_datetime_parse(const char *input)$/;" f +kbit_rate src/status.c /^ unsigned kbit_rate;$/;" m struct:mpd_status file: +last_modified src/directory.c /^ time_t last_modified;$/;" m struct:mpd_directory file: +last_modified src/playlist.c /^ time_t last_modified;$/;" m struct:mpd_playlist file: +last_modified src/song.c /^ time_t last_modified;$/;" m struct:mpd_song file: +lib_LTLIBRARIES Makefile /^lib_LTLIBRARIES = src\/libmpdclient.la$/;" m +libdir Makefile /^libdir = ${exec_prefix}\/lib$/;" m +libexecdir Makefile /^libexecdir = ${exec_prefix}\/libexec$/;" m +localedir Makefile /^localedir = ${datarootdir}\/locale$/;" m +localstatedir Makefile /^localstatedir = ${prefix}\/var$/;" m +main build/config.guess /^ main()$/;" f +main build/config.guess /^ main ()$/;" f +main src/example.c /^int main(int argc, char ** argv) {$/;" f +main test/main.c /^main(int argc, char ** argv)$/;" f +main test/t_iso8601.c /^int main(mpd_unused int argc, mpd_unused char **argv)$/;" f +make_dummy_depfile build/depcomp /^make_dummy_depfile ()$/;" f +mandir Makefile /^mandir = ${datarootdir}\/man$/;" m +message src/ierror.h /^ char *message;$/;" m struct:mpd_error_info +message src/parser.c /^ const char *message;$/;" m struct:mpd_parser::__anon2::__anon3 file: +mixrampdb src/status.c /^ float mixrampdb;$/;" m struct:mpd_status file: +mixrampdelay src/status.c /^ float mixrampdelay;$/;" m struct:mpd_status file: +mkdir_p Makefile /^mkdir_p = $(MKDIR_P)$/;" m +mkinstalldirs Makefile /^mkinstalldirs = $(install_sh) -d$/;" m +mpd_async src/async.c /^struct mpd_async {$/;" s file: +mpd_async_copy_error src/async.c /^mpd_async_copy_error(const struct mpd_async *async,$/;" f +mpd_async_event include/mpd/async.h /^enum mpd_async_event {$/;" g +mpd_async_event tmp/include/mpd/async.h /^enum mpd_async_event {$/;" g +mpd_async_events src/async.c /^mpd_async_events(const struct mpd_async *async)$/;" f +mpd_async_free src/async.c /^mpd_async_free(struct mpd_async *async)$/;" f +mpd_async_get_error src/async.c /^mpd_async_get_error(const struct mpd_async *async)$/;" f +mpd_async_get_error_message src/async.c /^mpd_async_get_error_message(const struct mpd_async *async)$/;" f +mpd_async_get_fd src/async.c /^mpd_async_get_fd(const struct mpd_async *async)$/;" f +mpd_async_get_system_error src/async.c /^mpd_async_get_system_error(const struct mpd_async *async)$/;" f +mpd_async_io src/async.c /^mpd_async_io(struct mpd_async *async, enum mpd_async_event events)$/;" f +mpd_async_new src/async.c /^mpd_async_new(int fd)$/;" f +mpd_async_read src/async.c /^mpd_async_read(struct mpd_async *async)$/;" f file: +mpd_async_recv_line src/async.c /^mpd_async_recv_line(struct mpd_async *async)$/;" f +mpd_async_send_command src/async.c /^mpd_async_send_command(struct mpd_async *async, const char *command, ...)$/;" f +mpd_async_send_command_v src/async.c /^mpd_async_send_command_v(struct mpd_async *async, const char *command,$/;" f +mpd_async_set_keepalive src/async.c /^mpd_async_set_keepalive(struct mpd_async *async,$/;" f +mpd_async_write src/async.c /^mpd_async_write(struct mpd_async *async)$/;" f file: +mpd_audio_format include/mpd/audio_format.h /^struct mpd_audio_format {$/;" s +mpd_audio_format tmp/include/mpd/audio_format.h /^struct mpd_audio_format {$/;" s +mpd_buffer src/buffer.h /^struct mpd_buffer {$/;" s +mpd_buffer_consume src/buffer.h /^mpd_buffer_consume(struct mpd_buffer *buffer, size_t nbytes)$/;" f +mpd_buffer_expand src/buffer.h /^mpd_buffer_expand(struct mpd_buffer *buffer, size_t nbytes)$/;" f +mpd_buffer_full src/buffer.h /^mpd_buffer_full(const struct mpd_buffer *buffer)$/;" f +mpd_buffer_init src/buffer.h /^mpd_buffer_init(struct mpd_buffer *buffer)$/;" f +mpd_buffer_move src/buffer.h /^mpd_buffer_move(struct mpd_buffer *buffer)$/;" f +mpd_buffer_read src/buffer.h /^mpd_buffer_read(struct mpd_buffer *buffer)$/;" f +mpd_buffer_room src/buffer.h /^mpd_buffer_room(const struct mpd_buffer *buffer)$/;" f +mpd_buffer_size src/buffer.h /^mpd_buffer_size(const struct mpd_buffer *buffer)$/;" f +mpd_buffer_write src/buffer.h /^mpd_buffer_write(struct mpd_buffer *buffer)$/;" f +mpd_check_host src/settings.c /^mpd_check_host(const char *host, char **password_r)$/;" f file: +mpd_check_port src/settings.c /^mpd_check_port(unsigned port)$/;" f file: +mpd_command_list_begin src/list.c /^mpd_command_list_begin(struct mpd_connection *connection, bool discrete_ok)$/;" f +mpd_command_list_end src/list.c /^mpd_command_list_end(struct mpd_connection *connection)$/;" f +mpd_connection src/internal.h /^struct mpd_connection {$/;" s +mpd_connection_clear_error src/error.c /^mpd_connection_clear_error(struct mpd_connection *connection)$/;" f +mpd_connection_cmp_server_version src/connection.c /^mpd_connection_cmp_server_version(const struct mpd_connection *connection,$/;" f +mpd_connection_free src/connection.c /^void mpd_connection_free(struct mpd_connection *connection)$/;" f +mpd_connection_get_async src/connection.c /^mpd_connection_get_async(struct mpd_connection *connection)$/;" f +mpd_connection_get_error src/error.c /^mpd_connection_get_error(const struct mpd_connection *connection)$/;" f +mpd_connection_get_error_message src/error.c /^mpd_connection_get_error_message(const struct mpd_connection *connection)$/;" f +mpd_connection_get_fd src/connection.c /^mpd_connection_get_fd(const struct mpd_connection *connection)$/;" f +mpd_connection_get_server_error src/error.c /^mpd_connection_get_server_error(const struct mpd_connection *connection)$/;" f +mpd_connection_get_server_error_location src/error.c /^mpd_connection_get_server_error_location(const struct mpd_connection *connection)$/;" f +mpd_connection_get_server_version src/connection.c /^mpd_connection_get_server_version(const struct mpd_connection *connection)$/;" f +mpd_connection_get_settings src/connection.c /^mpd_connection_get_settings(const struct mpd_connection *connection)$/;" f +mpd_connection_get_system_error src/error.c /^mpd_connection_get_system_error(const struct mpd_connection *connection)$/;" f +mpd_connection_new src/connection.c /^mpd_connection_new(const char *host, unsigned port, unsigned timeout_ms)$/;" f +mpd_connection_new_async src/connection.c /^mpd_connection_new_async(struct mpd_async *async, const char *welcome)$/;" f +mpd_connection_set_keepalive src/connection.c /^mpd_connection_set_keepalive(struct mpd_connection *connection,$/;" f +mpd_connection_set_timeout src/connection.c /^mpd_connection_set_timeout(struct mpd_connection *connection,$/;" f +mpd_connection_sync_error src/connection.c /^mpd_connection_sync_error(struct mpd_connection *connection)$/;" f +mpd_connection_timeout src/internal.h /^mpd_connection_timeout(const struct mpd_connection *connection)$/;" f +mpd_const include/mpd/compiler.h 47;" d +mpd_const include/mpd/compiler.h 58;" d +mpd_const tmp/include/mpd/compiler.h 47;" d +mpd_const tmp/include/mpd/compiler.h 58;" d +mpd_count_db_songs src/search.c /^mpd_count_db_songs(struct mpd_connection *connection)$/;" f +mpd_default_timeout_ms src/settings.c /^mpd_default_timeout_ms(void)$/;" f file: +mpd_directory src/directory.c /^struct mpd_directory {$/;" s file: +mpd_directory_begin src/directory.c /^mpd_directory_begin(const struct mpd_pair *pair)$/;" f +mpd_directory_dup src/directory.c /^mpd_directory_dup(const struct mpd_directory *directory)$/;" f +mpd_directory_feed src/directory.c /^mpd_directory_feed(struct mpd_directory *directory,$/;" f +mpd_directory_free src/directory.c /^void mpd_directory_free(struct mpd_directory *directory)$/;" f +mpd_directory_get_last_modified src/directory.c /^mpd_directory_get_last_modified(const struct mpd_directory *directory)$/;" f +mpd_directory_get_path src/directory.c /^mpd_directory_get_path(const struct mpd_directory *directory)$/;" f +mpd_directory_new src/directory.c /^mpd_directory_new(const char *path)$/;" f file: +mpd_enqueue_pair src/recv.c /^mpd_enqueue_pair(struct mpd_connection *connection, struct mpd_pair *pair)$/;" f +mpd_entity src/entity.c /^struct mpd_entity {$/;" s file: +mpd_entity_begin src/entity.c /^mpd_entity_begin(const struct mpd_pair *pair)$/;" f +mpd_entity_feed src/entity.c /^mpd_entity_feed(struct mpd_entity *entity, const struct mpd_pair *pair)$/;" f +mpd_entity_feed_first src/entity.c /^mpd_entity_feed_first(struct mpd_entity *entity, const struct mpd_pair *pair)$/;" f file: +mpd_entity_free src/entity.c /^mpd_entity_free(struct mpd_entity *entity) {$/;" f +mpd_entity_get_directory src/entity.c /^mpd_entity_get_directory(const struct mpd_entity *entity)$/;" f +mpd_entity_get_playlist src/entity.c /^mpd_entity_get_playlist(const struct mpd_entity *entity)$/;" f +mpd_entity_get_song src/entity.c /^mpd_entity_get_song(const struct mpd_entity *entity)$/;" f +mpd_entity_get_type src/entity.c /^mpd_entity_get_type(const struct mpd_entity *entity)$/;" f +mpd_entity_type include/mpd/entity.h /^enum mpd_entity_type {$/;" g +mpd_entity_type tmp/include/mpd/entity.h /^enum mpd_entity_type {$/;" g +mpd_error include/mpd/error.h /^enum mpd_error {$/;" g +mpd_error tmp/include/mpd/error.h /^enum mpd_error {$/;" g +mpd_error_clear src/ierror.h /^mpd_error_clear(struct mpd_error_info *error)$/;" f +mpd_error_code src/ierror.h /^mpd_error_code(struct mpd_error_info *error, enum mpd_error code)$/;" f +mpd_error_copy src/ierror.c /^mpd_error_copy(struct mpd_error_info *dest, const struct mpd_error_info *src)$/;" f +mpd_error_deinit src/ierror.c /^mpd_error_deinit(struct mpd_error_info *error)$/;" f +mpd_error_entity src/ierror.c /^mpd_error_entity(struct mpd_error_info *error)$/;" f +mpd_error_errno src/ierror.c /^mpd_error_errno(struct mpd_error_info *error)$/;" f +mpd_error_get_message src/ierror.h /^mpd_error_get_message(const struct mpd_error_info *error)$/;" f +mpd_error_info src/ierror.h /^struct mpd_error_info {$/;" s +mpd_error_init src/ierror.h /^mpd_error_init(struct mpd_error_info *error)$/;" f +mpd_error_is_defined src/ierror.h /^mpd_error_is_defined(const struct mpd_error_info *error)$/;" f +mpd_error_is_fatal src/ierror.h /^mpd_error_is_fatal(const struct mpd_error_info *error)$/;" f +mpd_error_message src/ierror.c /^mpd_error_message(struct mpd_error_info *error, const char *message)$/;" f +mpd_error_message_n src/ierror.c /^mpd_error_message_n(struct mpd_error_info *error,$/;" f +mpd_error_printf src/ierror.c /^mpd_error_printf(struct mpd_error_info *error, const char *fmt, ...)$/;" f +mpd_error_server src/ierror.h /^mpd_error_server(struct mpd_error_info *error,$/;" f +mpd_error_system src/ierror.h /^mpd_error_system(struct mpd_error_info *error, int system_error_code)$/;" f +mpd_error_system_message src/ierror.c /^mpd_error_system_message(struct mpd_error_info *error, int code)$/;" f +mpd_flush src/send.c /^mpd_flush(struct mpd_connection *connection)$/;" f +mpd_idle include/mpd/idle.h /^enum mpd_idle {$/;" g +mpd_idle tmp/include/mpd/idle.h /^enum mpd_idle {$/;" g +mpd_idle_name src/idle.c /^mpd_idle_name(enum mpd_idle idle)$/;" f +mpd_idle_name_parse src/idle.c /^mpd_idle_name_parse(const char *name)$/;" f +mpd_idle_parse_pair src/idle.c /^mpd_idle_parse_pair(const struct mpd_pair *pair)$/;" f +mpd_malloc include/mpd/compiler.h 45;" d +mpd_malloc include/mpd/compiler.h 56;" d +mpd_malloc tmp/include/mpd/compiler.h 45;" d +mpd_malloc tmp/include/mpd/compiler.h 56;" d +mpd_message src/message.c /^struct mpd_message {$/;" s file: +mpd_message_begin src/message.c /^mpd_message_begin(const struct mpd_pair *pair)$/;" f +mpd_message_feed src/message.c /^mpd_message_feed(struct mpd_message *output, const struct mpd_pair *pair)$/;" f +mpd_message_free src/message.c /^mpd_message_free(struct mpd_message *message)$/;" f +mpd_message_get_channel src/message.c /^mpd_message_get_channel(const struct mpd_message *message)$/;" f +mpd_message_get_text src/message.c /^mpd_message_get_text(const struct mpd_message *message)$/;" f +mpd_operator include/mpd/search.h /^enum mpd_operator {$/;" g +mpd_operator tmp/include/mpd/search.h /^enum mpd_operator {$/;" g +mpd_output src/output.c /^struct mpd_output {$/;" s file: +mpd_output_begin src/output.c /^mpd_output_begin(const struct mpd_pair *pair)$/;" f +mpd_output_feed src/output.c /^mpd_output_feed(struct mpd_output *output, const struct mpd_pair *pair)$/;" f +mpd_output_free src/output.c /^mpd_output_free(struct mpd_output *output)$/;" f +mpd_output_get_enabled src/output.c /^mpd_output_get_enabled(const struct mpd_output *output)$/;" f +mpd_output_get_id src/output.c /^mpd_output_get_id(const struct mpd_output *output)$/;" f +mpd_output_get_name src/output.c /^mpd_output_get_name(const struct mpd_output *output)$/;" f +mpd_pair include/mpd/pair.h /^struct mpd_pair {$/;" s +mpd_pair tmp/include/mpd/pair.h /^struct mpd_pair {$/;" s +mpd_parse_host_password src/settings.c /^mpd_parse_host_password(const char *host, char **password_r)$/;" f file: +mpd_parse_sticker src/sticker.c /^mpd_parse_sticker(const char *input, size_t *name_length_r)$/;" f +mpd_parse_welcome src/connection.c /^mpd_parse_welcome(struct mpd_connection *connection, const char *output)$/;" f file: +mpd_parser src/parser.c /^struct mpd_parser {$/;" s file: +mpd_parser_feed src/parser.c /^mpd_parser_feed(struct mpd_parser *parser, char *line)$/;" f +mpd_parser_free src/parser.c /^mpd_parser_free(struct mpd_parser *parser)$/;" f +mpd_parser_get_at src/parser.c /^mpd_parser_get_at(const struct mpd_parser *parser)$/;" f +mpd_parser_get_message src/parser.c /^mpd_parser_get_message(const struct mpd_parser *parser)$/;" f +mpd_parser_get_name src/parser.c /^mpd_parser_get_name(const struct mpd_parser *parser)$/;" f +mpd_parser_get_server_error src/parser.c /^mpd_parser_get_server_error(const struct mpd_parser *parser)$/;" f +mpd_parser_get_value src/parser.c /^mpd_parser_get_value(const struct mpd_parser *parser)$/;" f +mpd_parser_is_discrete src/parser.c /^mpd_parser_is_discrete(const struct mpd_parser *parser)$/;" f +mpd_parser_new src/parser.c /^mpd_parser_new(void)$/;" f +mpd_parser_result include/mpd/parser.h /^enum mpd_parser_result {$/;" g +mpd_parser_result tmp/include/mpd/parser.h /^enum mpd_parser_result {$/;" g +mpd_playlist src/playlist.c /^struct mpd_playlist {$/;" s file: +mpd_playlist_begin src/playlist.c /^mpd_playlist_begin(const struct mpd_pair *pair)$/;" f +mpd_playlist_dup src/playlist.c /^mpd_playlist_dup(const struct mpd_playlist *playlist)$/;" f +mpd_playlist_feed src/playlist.c /^mpd_playlist_feed(struct mpd_playlist *playlist, const struct mpd_pair *pair)$/;" f +mpd_playlist_free src/playlist.c /^mpd_playlist_free(struct mpd_playlist *playlist)$/;" f +mpd_playlist_get_last_modified src/playlist.c /^mpd_playlist_get_last_modified(const struct mpd_playlist *playlist)$/;" f +mpd_playlist_get_path src/playlist.c /^mpd_playlist_get_path(const struct mpd_playlist *playlist)$/;" f +mpd_playlist_new src/playlist.c /^mpd_playlist_new(const char *path)$/;" f file: +mpd_printf include/mpd/compiler.h 49;" d +mpd_printf include/mpd/compiler.h 60;" d +mpd_printf tmp/include/mpd/compiler.h 49;" d +mpd_printf tmp/include/mpd/compiler.h 60;" d +mpd_pure include/mpd/compiler.h 46;" d +mpd_pure include/mpd/compiler.h 57;" d +mpd_pure tmp/include/mpd/compiler.h 46;" d +mpd_pure tmp/include/mpd/compiler.h 57;" d +mpd_recv_channel_pair include/mpd/message.h /^mpd_recv_channel_pair(struct mpd_connection *connection)$/;" f +mpd_recv_channel_pair tmp/include/mpd/message.h /^mpd_recv_channel_pair(struct mpd_connection *connection)$/;" f +mpd_recv_command_pair include/mpd/capabilities.h /^mpd_recv_command_pair(struct mpd_connection *connection)$/;" f +mpd_recv_command_pair tmp/include/mpd/capabilities.h /^mpd_recv_command_pair(struct mpd_connection *connection)$/;" f +mpd_recv_directory src/rdirectory.c /^mpd_recv_directory(struct mpd_connection *connection)$/;" f +mpd_recv_entity src/entity.c /^mpd_recv_entity(struct mpd_connection *connection)$/;" f +mpd_recv_idle src/idle.c /^mpd_recv_idle(struct mpd_connection *connection, bool disable_timeout)$/;" f +mpd_recv_message src/cmessage.c /^mpd_recv_message(struct mpd_connection *connection)$/;" f +mpd_recv_output src/coutput.c /^mpd_recv_output(struct mpd_connection *connection)$/;" f +mpd_recv_pair src/recv.c /^mpd_recv_pair(struct mpd_connection *connection)$/;" f +mpd_recv_pair_named src/recv.c /^mpd_recv_pair_named(struct mpd_connection *connection, const char *name)$/;" f +mpd_recv_pair_tag src/search.c /^mpd_recv_pair_tag(struct mpd_connection *connection, enum mpd_tag_type type)$/;" f +mpd_recv_playlist src/rplaylist.c /^mpd_recv_playlist(struct mpd_connection *connection)$/;" f +mpd_recv_queue_change_brief src/queue.c /^mpd_recv_queue_change_brief(struct mpd_connection *connection,$/;" f +mpd_recv_song src/song.c /^mpd_recv_song(struct mpd_connection *connection)$/;" f +mpd_recv_song_id src/queue.c /^mpd_recv_song_id(struct mpd_connection *connection)$/;" f +mpd_recv_stats src/cstats.c /^mpd_recv_stats(struct mpd_connection *connection)$/;" f +mpd_recv_status src/cstatus.c /^mpd_recv_status(struct mpd_connection * connection)$/;" f +mpd_recv_sticker src/sticker.c /^mpd_recv_sticker(struct mpd_connection *connection)$/;" f +mpd_recv_tag_type_pair include/mpd/capabilities.h /^mpd_recv_tag_type_pair(struct mpd_connection *connection)$/;" f +mpd_recv_tag_type_pair tmp/include/mpd/capabilities.h /^mpd_recv_tag_type_pair(struct mpd_connection *connection)$/;" f +mpd_recv_update_id src/database.c /^mpd_recv_update_id(struct mpd_connection *connection)$/;" f +mpd_recv_url_scheme_pair include/mpd/capabilities.h /^mpd_recv_url_scheme_pair(struct mpd_connection *connection)$/;" f +mpd_recv_url_scheme_pair tmp/include/mpd/capabilities.h /^mpd_recv_url_scheme_pair(struct mpd_connection *connection)$/;" f +mpd_response_finish src/response.c /^mpd_response_finish(struct mpd_connection *connection)$/;" f +mpd_response_next src/response.c /^mpd_response_next(struct mpd_connection *connection)$/;" f +mpd_return_pair src/recv.c /^mpd_return_pair(struct mpd_connection *connection,$/;" f +mpd_return_sticker src/sticker.c /^mpd_return_sticker(struct mpd_connection *connection, struct mpd_pair *pair)$/;" f +mpd_run_add src/queue.c /^mpd_run_add(struct mpd_connection *connection, const char *uri)$/;" f +mpd_run_add_id src/queue.c /^mpd_run_add_id(struct mpd_connection *connection, const char *file)$/;" f +mpd_run_add_id_to src/queue.c /^mpd_run_add_id_to(struct mpd_connection *connection, const char *uri,$/;" f +mpd_run_change_volume src/mixer.c /^mpd_run_change_volume(struct mpd_connection *connection, int relative_volume)$/;" f +mpd_run_check src/run.c /^mpd_run_check(struct mpd_connection *connection)$/;" f +mpd_run_clear src/queue.c /^mpd_run_clear(struct mpd_connection *connection)$/;" f +mpd_run_clearerror src/player.c /^mpd_run_clearerror(struct mpd_connection *connection)$/;" f +mpd_run_consume src/player.c /^mpd_run_consume(struct mpd_connection *connection, bool mode)$/;" f +mpd_run_crossfade src/player.c /^mpd_run_crossfade(struct mpd_connection *connection, unsigned seconds)$/;" f +mpd_run_current_song src/player.c /^mpd_run_current_song(struct mpd_connection *connection)$/;" f +mpd_run_delete src/queue.c /^mpd_run_delete(struct mpd_connection *connection, unsigned pos)$/;" f +mpd_run_delete_id src/queue.c /^mpd_run_delete_id(struct mpd_connection *connection, unsigned id)$/;" f +mpd_run_delete_range src/queue.c /^mpd_run_delete_range(struct mpd_connection *connection,$/;" f +mpd_run_disable_output src/coutput.c /^mpd_run_disable_output(struct mpd_connection *connection, unsigned output_id)$/;" f +mpd_run_enable_output src/coutput.c /^mpd_run_enable_output(struct mpd_connection *connection, unsigned output_id)$/;" f +mpd_run_get_queue_song_id src/queue.c /^mpd_run_get_queue_song_id(struct mpd_connection *connection, unsigned id)$/;" f +mpd_run_get_queue_song_pos src/queue.c /^mpd_run_get_queue_song_pos(struct mpd_connection *connection, unsigned pos)$/;" f +mpd_run_idle src/idle.c /^mpd_run_idle(struct mpd_connection *connection)$/;" f +mpd_run_idle_mask src/idle.c /^mpd_run_idle_mask(struct mpd_connection *connection, enum mpd_idle mask)$/;" f +mpd_run_load src/cplaylist.c /^mpd_run_load(struct mpd_connection *connection, const char *name)$/;" f +mpd_run_mixrampdb src/player.c /^mpd_run_mixrampdb(struct mpd_connection *connection, float db)$/;" f +mpd_run_mixrampdelay src/player.c /^mpd_run_mixrampdelay(struct mpd_connection *connection, float seconds)$/;" f +mpd_run_move src/queue.c /^mpd_run_move(struct mpd_connection *connection, unsigned from, unsigned to)$/;" f +mpd_run_move_id src/queue.c /^mpd_run_move_id(struct mpd_connection *connection, unsigned from, unsigned to)$/;" f +mpd_run_move_range src/queue.c /^mpd_run_move_range(struct mpd_connection *connection,$/;" f +mpd_run_next src/player.c /^mpd_run_next(struct mpd_connection *connection)$/;" f +mpd_run_noidle src/idle.c /^mpd_run_noidle(struct mpd_connection *connection)$/;" f +mpd_run_password src/password.c /^mpd_run_password(struct mpd_connection *connection, const char *password)$/;" f +mpd_run_pause src/player.c /^mpd_run_pause(struct mpd_connection *connection, bool mode)$/;" f +mpd_run_play src/player.c /^mpd_run_play(struct mpd_connection *connection)$/;" f +mpd_run_play_id src/player.c /^mpd_run_play_id(struct mpd_connection *connection, unsigned song_id)$/;" f +mpd_run_play_pos src/player.c /^mpd_run_play_pos(struct mpd_connection *connection, unsigned song_pos)$/;" f +mpd_run_playlist_add src/cplaylist.c /^mpd_run_playlist_add(struct mpd_connection *connection,$/;" f +mpd_run_playlist_clear src/cplaylist.c /^mpd_run_playlist_clear(struct mpd_connection *connection, const char *name)$/;" f +mpd_run_playlist_delete src/cplaylist.c /^mpd_run_playlist_delete(struct mpd_connection *connection,$/;" f +mpd_run_previous src/player.c /^mpd_run_previous(struct mpd_connection *connection)$/;" f +mpd_run_prio src/queue.c /^mpd_run_prio(struct mpd_connection *connection, int priority,$/;" f +mpd_run_prio_id src/queue.c /^mpd_run_prio_id(struct mpd_connection *connection, int priority,$/;" f +mpd_run_prio_range src/queue.c /^mpd_run_prio_range(struct mpd_connection *connection, int priority,$/;" f +mpd_run_random src/player.c /^mpd_run_random(struct mpd_connection *connection, bool mode)$/;" f +mpd_run_rename src/cplaylist.c /^mpd_run_rename(struct mpd_connection *connection,$/;" f +mpd_run_repeat src/player.c /^mpd_run_repeat(struct mpd_connection *connection, bool mode)$/;" f +mpd_run_rescan src/database.c /^mpd_run_rescan(struct mpd_connection *connection, const char *path)$/;" f +mpd_run_rm src/cplaylist.c /^mpd_run_rm(struct mpd_connection *connection, const char *name)$/;" f +mpd_run_save src/cplaylist.c /^mpd_run_save(struct mpd_connection *connection, const char *name)$/;" f +mpd_run_seek_id src/player.c /^mpd_run_seek_id(struct mpd_connection *connection,$/;" f +mpd_run_seek_pos src/player.c /^mpd_run_seek_pos(struct mpd_connection *connection,$/;" f +mpd_run_send_message src/cmessage.c /^mpd_run_send_message(struct mpd_connection *connection,$/;" f +mpd_run_set_volume src/mixer.c /^mpd_run_set_volume(struct mpd_connection *connection, unsigned volume)$/;" f +mpd_run_shuffle src/queue.c /^mpd_run_shuffle(struct mpd_connection *connection)$/;" f +mpd_run_shuffle_range src/queue.c /^mpd_run_shuffle_range(struct mpd_connection *connection,$/;" f +mpd_run_single src/player.c /^mpd_run_single(struct mpd_connection *connection, bool mode)$/;" f +mpd_run_stats src/cstats.c /^mpd_run_stats(struct mpd_connection *connection)$/;" f +mpd_run_status src/cstatus.c /^mpd_run_status(struct mpd_connection *connection)$/;" f +mpd_run_sticker_delete src/sticker.c /^mpd_run_sticker_delete(struct mpd_connection *connection, const char *type,$/;" f +mpd_run_sticker_set src/sticker.c /^mpd_run_sticker_set(struct mpd_connection *connection, const char *type,$/;" f +mpd_run_stop src/player.c /^mpd_run_stop(struct mpd_connection *connection)$/;" f +mpd_run_subscribe src/cmessage.c /^mpd_run_subscribe(struct mpd_connection *connection, const char *channel)$/;" f +mpd_run_swap src/queue.c /^mpd_run_swap(struct mpd_connection *connection, unsigned pos1, unsigned pos2)$/;" f +mpd_run_swap_id src/queue.c /^mpd_run_swap_id(struct mpd_connection *connection, unsigned id1, unsigned id2)$/;" f +mpd_run_toggle_output src/coutput.c /^mpd_run_toggle_output(struct mpd_connection *connection, unsigned output_id)$/;" f +mpd_run_toggle_pause src/player.c /^mpd_run_toggle_pause(struct mpd_connection *connection)$/;" f +mpd_run_unsubscribe src/cmessage.c /^mpd_run_unsubscribe(struct mpd_connection *connection, const char *channel)$/;" f +mpd_run_update src/database.c /^mpd_run_update(struct mpd_connection *connection, const char *path)$/;" f +mpd_sanitize_arg src/search.c /^mpd_sanitize_arg(const char *src)$/;" f file: +mpd_search_add_any_tag_constraint src/search.c /^mpd_search_add_any_tag_constraint(struct mpd_connection *connection,$/;" f +mpd_search_add_base_constraint src/search.c /^mpd_search_add_base_constraint(struct mpd_connection *connection,$/;" f +mpd_search_add_constraint src/search.c /^mpd_search_add_constraint(struct mpd_connection *connection,$/;" f file: +mpd_search_add_db_songs src/search.c /^mpd_search_add_db_songs(struct mpd_connection *connection, bool exact)$/;" f +mpd_search_add_modified_since_constraint src/search.c /^mpd_search_add_modified_since_constraint(struct mpd_connection *connection,$/;" f +mpd_search_add_tag_constraint src/search.c /^mpd_search_add_tag_constraint(struct mpd_connection *connection,$/;" f +mpd_search_add_uri_constraint src/search.c /^mpd_search_add_uri_constraint(struct mpd_connection *connection,$/;" f +mpd_search_add_window src/search.c /^mpd_search_add_window(struct mpd_connection *connection,$/;" f +mpd_search_cancel src/search.c /^mpd_search_cancel(struct mpd_connection *connection)$/;" f +mpd_search_commit src/search.c /^mpd_search_commit(struct mpd_connection *connection)$/;" f +mpd_search_db_songs src/search.c /^mpd_search_db_songs(struct mpd_connection *connection, bool exact)$/;" f +mpd_search_db_tags src/search.c /^mpd_search_db_tags(struct mpd_connection *connection, enum mpd_tag_type type)$/;" f +mpd_search_init src/search.c /^mpd_search_init(struct mpd_connection *connection, const char *cmd)$/;" f file: +mpd_search_prepare_append src/search.c /^mpd_search_prepare_append(struct mpd_connection *connection,$/;" f file: +mpd_search_queue_songs src/search.c /^mpd_search_queue_songs(struct mpd_connection *connection, bool exact)$/;" f +mpd_send_add src/queue.c /^mpd_send_add(struct mpd_connection *connection, const char *file)$/;" f +mpd_send_add_id src/queue.c /^mpd_send_add_id(struct mpd_connection *connection, const char *file)$/;" f +mpd_send_add_id_to src/queue.c /^mpd_send_add_id_to(struct mpd_connection *connection, const char *uri,$/;" f +mpd_send_allowed_commands src/capabilities.c /^mpd_send_allowed_commands(struct mpd_connection *connection)$/;" f +mpd_send_change_volume src/mixer.c /^mpd_send_change_volume(struct mpd_connection *connection, int relative_volume)$/;" f +mpd_send_channels src/cmessage.c /^mpd_send_channels(struct mpd_connection *connection)$/;" f +mpd_send_clear src/queue.c /^mpd_send_clear(struct mpd_connection *connection)$/;" f +mpd_send_clearerror src/player.c /^mpd_send_clearerror(struct mpd_connection *connection)$/;" f +mpd_send_command src/send.c /^mpd_send_command(struct mpd_connection *connection, const char *command, ...)$/;" f +mpd_send_command2 src/send.c /^mpd_send_command2(struct mpd_connection *connection, const char *command)$/;" f +mpd_send_consume src/player.c /^mpd_send_consume(struct mpd_connection *connection, bool mode)$/;" f +mpd_send_crossfade src/player.c /^mpd_send_crossfade(struct mpd_connection *connection, unsigned seconds)$/;" f +mpd_send_current_song src/player.c /^mpd_send_current_song(struct mpd_connection *connection)$/;" f +mpd_send_delete src/queue.c /^mpd_send_delete(struct mpd_connection *connection, unsigned pos)$/;" f +mpd_send_delete_id src/queue.c /^mpd_send_delete_id(struct mpd_connection *connection, unsigned id)$/;" f +mpd_send_delete_range src/queue.c /^mpd_send_delete_range(struct mpd_connection *connection,$/;" f +mpd_send_disable_output src/coutput.c /^mpd_send_disable_output(struct mpd_connection *connection, unsigned output_id)$/;" f +mpd_send_disallowed_commands src/capabilities.c /^mpd_send_disallowed_commands(struct mpd_connection *connection)$/;" f +mpd_send_enable_output src/coutput.c /^mpd_send_enable_output(struct mpd_connection *connection, unsigned output_id)$/;" f +mpd_send_float_command src/send.c /^mpd_send_float_command(struct mpd_connection *connection, const char *command,$/;" f +mpd_send_get_queue_song_id src/queue.c /^mpd_send_get_queue_song_id(struct mpd_connection *connection, unsigned id)$/;" f +mpd_send_get_queue_song_pos src/queue.c /^mpd_send_get_queue_song_pos(struct mpd_connection *connection, unsigned pos)$/;" f +mpd_send_i_range_command src/send.c /^mpd_send_i_range_command(struct mpd_connection *connection,$/;" f +mpd_send_idle src/idle.c /^mpd_send_idle(struct mpd_connection *connection)$/;" f +mpd_send_idle_mask src/idle.c /^mpd_send_idle_mask(struct mpd_connection *connection, enum mpd_idle mask)$/;" f +mpd_send_int2_command src/send.c /^mpd_send_int2_command(struct mpd_connection *connection, const char *command,$/;" f +mpd_send_int3_command src/send.c /^mpd_send_int3_command(struct mpd_connection *connection, const char *command,$/;" f +mpd_send_int_command src/send.c /^mpd_send_int_command(struct mpd_connection *connection, const char *command,$/;" f +mpd_send_list_all src/database.c /^mpd_send_list_all(struct mpd_connection *connection, const char *dir)$/;" f +mpd_send_list_all_meta src/database.c /^mpd_send_list_all_meta(struct mpd_connection *connection, const char *dir)$/;" f +mpd_send_list_meta src/database.c /^mpd_send_list_meta(struct mpd_connection *connection, const char *dir)$/;" f +mpd_send_list_playlist src/cplaylist.c /^mpd_send_list_playlist(struct mpd_connection *connection, const char *name)$/;" f +mpd_send_list_playlist_meta src/cplaylist.c /^mpd_send_list_playlist_meta(struct mpd_connection *connection, const char *name)$/;" f +mpd_send_list_playlists src/cplaylist.c /^mpd_send_list_playlists(struct mpd_connection *connection)$/;" f +mpd_send_list_queue_meta src/queue.c /^mpd_send_list_queue_meta(struct mpd_connection *connection)$/;" f +mpd_send_list_queue_range_meta src/queue.c /^mpd_send_list_queue_range_meta(struct mpd_connection *connection,$/;" f +mpd_send_list_tag_types src/capabilities.c /^mpd_send_list_tag_types(struct mpd_connection *connection)$/;" f +mpd_send_list_url_schemes src/capabilities.c /^mpd_send_list_url_schemes(struct mpd_connection *connection)$/;" f +mpd_send_ll_command src/send.c /^mpd_send_ll_command(struct mpd_connection *connection, const char *command,$/;" f +mpd_send_load src/cplaylist.c /^mpd_send_load(struct mpd_connection *connection, const char *name)$/;" f +mpd_send_mixrampdb src/player.c /^mpd_send_mixrampdb(struct mpd_connection *connection, float db)$/;" f +mpd_send_mixrampdelay src/player.c /^mpd_send_mixrampdelay(struct mpd_connection *connection, float seconds)$/;" f +mpd_send_move src/queue.c /^mpd_send_move(struct mpd_connection *connection, unsigned from, unsigned to)$/;" f +mpd_send_move_id src/queue.c /^mpd_send_move_id(struct mpd_connection *connection, unsigned from, unsigned to)$/;" f +mpd_send_move_range src/queue.c /^mpd_send_move_range(struct mpd_connection *connection,$/;" f +mpd_send_next src/player.c /^mpd_send_next(struct mpd_connection *connection)$/;" f +mpd_send_noidle src/idle.c /^mpd_send_noidle(struct mpd_connection *connection)$/;" f +mpd_send_outputs src/coutput.c /^mpd_send_outputs(struct mpd_connection *connection)$/;" f +mpd_send_password src/password.c /^mpd_send_password(struct mpd_connection *connection, const char *password)$/;" f +mpd_send_pause src/player.c /^mpd_send_pause(struct mpd_connection *connection, bool mode)$/;" f +mpd_send_play src/player.c /^mpd_send_play(struct mpd_connection *connection)$/;" f +mpd_send_play_id src/player.c /^mpd_send_play_id(struct mpd_connection *connection, unsigned id)$/;" f +mpd_send_play_pos src/player.c /^mpd_send_play_pos(struct mpd_connection *connection, unsigned song_pos)$/;" f +mpd_send_playlist_add src/cplaylist.c /^mpd_send_playlist_add(struct mpd_connection *connection, const char *name,$/;" f +mpd_send_playlist_clear src/cplaylist.c /^mpd_send_playlist_clear(struct mpd_connection *connection, const char *name)$/;" f +mpd_send_playlist_delete src/cplaylist.c /^mpd_send_playlist_delete(struct mpd_connection *connection, const char *name,$/;" f +mpd_send_playlist_move src/cplaylist.c /^mpd_send_playlist_move(struct mpd_connection *connection, const char *name,$/;" f +mpd_send_previous src/player.c /^mpd_send_previous(struct mpd_connection *connection)$/;" f +mpd_send_prio src/queue.c /^mpd_send_prio(struct mpd_connection *connection, int priority,$/;" f +mpd_send_prio_id src/queue.c /^mpd_send_prio_id(struct mpd_connection *connection, int priority,$/;" f +mpd_send_prio_range src/queue.c /^mpd_send_prio_range(struct mpd_connection *connection, int priority,$/;" f +mpd_send_queue_changes_brief src/queue.c /^mpd_send_queue_changes_brief(struct mpd_connection *connection,$/;" f +mpd_send_queue_changes_meta src/queue.c /^mpd_send_queue_changes_meta(struct mpd_connection *connection,$/;" f +mpd_send_random src/player.c /^mpd_send_random(struct mpd_connection *connection, bool mode)$/;" f +mpd_send_range_command src/send.c /^mpd_send_range_command(struct mpd_connection *connection, const char *command,$/;" f +mpd_send_range_u_command src/send.c /^mpd_send_range_u_command(struct mpd_connection *connection,$/;" f +mpd_send_read_comments src/database.c /^mpd_send_read_comments(struct mpd_connection *connection, const char *path)$/;" f +mpd_send_read_messages src/cmessage.c /^mpd_send_read_messages(struct mpd_connection *connection)$/;" f +mpd_send_rename src/cplaylist.c /^mpd_send_rename(struct mpd_connection *connection,$/;" f +mpd_send_repeat src/player.c /^mpd_send_repeat(struct mpd_connection *connection, bool mode)$/;" f +mpd_send_rescan src/database.c /^mpd_send_rescan(struct mpd_connection *connection, const char *path)$/;" f +mpd_send_rm src/cplaylist.c /^mpd_send_rm(struct mpd_connection *connection, const char *name)$/;" f +mpd_send_s_u_command src/send.c /^mpd_send_s_u_command(struct mpd_connection *connection, const char *command,$/;" f +mpd_send_save src/cplaylist.c /^mpd_send_save(struct mpd_connection *connection, const char *name)$/;" f +mpd_send_seek_id src/player.c /^mpd_send_seek_id(struct mpd_connection *connection, unsigned id, unsigned t)$/;" f +mpd_send_seek_pos src/player.c /^mpd_send_seek_pos(struct mpd_connection *connection,$/;" f +mpd_send_send_message src/cmessage.c /^mpd_send_send_message(struct mpd_connection *connection,$/;" f +mpd_send_set_volume src/mixer.c /^mpd_send_set_volume(struct mpd_connection *connection, unsigned volume)$/;" f +mpd_send_shuffle src/queue.c /^mpd_send_shuffle(struct mpd_connection *connection)$/;" f +mpd_send_shuffle_range src/queue.c /^mpd_send_shuffle_range(struct mpd_connection *connection, unsigned start, unsigned end)$/;" f +mpd_send_single src/player.c /^mpd_send_single(struct mpd_connection *connection, bool mode)$/;" f +mpd_send_stats src/cstats.c /^mpd_send_stats(struct mpd_connection *connection)$/;" f +mpd_send_status src/cstatus.c /^mpd_send_status(struct mpd_connection * connection)$/;" f +mpd_send_sticker_delete src/sticker.c /^mpd_send_sticker_delete(struct mpd_connection *connection, const char *type,$/;" f +mpd_send_sticker_find src/sticker.c /^mpd_send_sticker_find(struct mpd_connection *connection, const char *type,$/;" f +mpd_send_sticker_get src/sticker.c /^mpd_send_sticker_get(struct mpd_connection *connection, const char *type,$/;" f +mpd_send_sticker_list src/sticker.c /^mpd_send_sticker_list(struct mpd_connection *connection, const char *type, const char *uri)$/;" f +mpd_send_sticker_set src/sticker.c /^mpd_send_sticker_set(struct mpd_connection *connection, const char *type,$/;" f +mpd_send_stop src/player.c /^mpd_send_stop(struct mpd_connection *connection)$/;" f +mpd_send_subscribe src/cmessage.c /^mpd_send_subscribe(struct mpd_connection *connection, const char *channel)$/;" f +mpd_send_swap src/queue.c /^mpd_send_swap(struct mpd_connection *connection, unsigned pos1, unsigned pos2)$/;" f +mpd_send_swap_id src/queue.c /^mpd_send_swap_id(struct mpd_connection *connection, unsigned id1, unsigned id2)$/;" f +mpd_send_toggle_output src/coutput.c /^mpd_send_toggle_output(struct mpd_connection *connection, unsigned output_id)$/;" f +mpd_send_toggle_pause src/player.c /^mpd_send_toggle_pause(struct mpd_connection *connection)$/;" f +mpd_send_unsubscribe src/cmessage.c /^mpd_send_unsubscribe(struct mpd_connection *connection, const char *channel)$/;" f +mpd_send_update src/database.c /^mpd_send_update(struct mpd_connection *connection, const char *path)$/;" f +mpd_sentinel include/mpd/compiler.h 48;" d +mpd_sentinel include/mpd/compiler.h 59;" d +mpd_sentinel tmp/include/mpd/compiler.h 48;" d +mpd_sentinel tmp/include/mpd/compiler.h 59;" d +mpd_server_error include/mpd/protocol.h /^enum mpd_server_error {$/;" g +mpd_server_error tmp/include/mpd/protocol.h /^enum mpd_server_error {$/;" g +mpd_settings src/settings.c /^struct mpd_settings {$/;" s file: +mpd_settings_free src/settings.c /^mpd_settings_free(struct mpd_settings *settings)$/;" f +mpd_settings_get_host src/settings.c /^mpd_settings_get_host(const struct mpd_settings *settings)$/;" f +mpd_settings_get_password src/settings.c /^mpd_settings_get_password(const struct mpd_settings *settings)$/;" f +mpd_settings_get_port src/settings.c /^mpd_settings_get_port(const struct mpd_settings *settings)$/;" f +mpd_settings_get_timeout_ms src/settings.c /^mpd_settings_get_timeout_ms(const struct mpd_settings *settings)$/;" f +mpd_settings_new src/settings.c /^mpd_settings_new(const char *host, unsigned port, unsigned timeout_ms,$/;" f +mpd_socket_close src/socket.c /^mpd_socket_close(int fd)$/;" f +mpd_socket_connect src/socket.c /^mpd_socket_connect(const char *host, unsigned port, const struct timeval *tv0,$/;" f +mpd_socket_errno src/socket.h /^mpd_socket_errno(void)$/;" f +mpd_socket_global_init src/socket.c /^mpd_socket_global_init(struct mpd_error_info *error)$/;" f +mpd_socket_global_init src/socket.h /^mpd_socket_global_init(struct mpd_error_info *error)$/;" f +mpd_socket_keepalive src/socket.c /^mpd_socket_keepalive(int fd, bool keepalive)$/;" f +mpd_socket_wait src/socket.c /^mpd_socket_wait(unsigned fd, struct timeval *tv)$/;" f file: +mpd_socket_wait_connected src/socket.c /^mpd_socket_wait_connected(int fd, struct timeval *tv)$/;" f file: +mpd_song src/song.c /^struct mpd_song {$/;" s file: +mpd_song_add_tag src/song.c /^mpd_song_add_tag(struct mpd_song *song,$/;" f file: +mpd_song_begin src/song.c /^mpd_song_begin(const struct mpd_pair *pair)$/;" f +mpd_song_clear_tag src/song.c /^mpd_song_clear_tag(struct mpd_song *song, enum mpd_tag_type type)$/;" f file: +mpd_song_dup src/song.c /^mpd_song_dup(const struct mpd_song *song)$/;" f +mpd_song_feed src/song.c /^mpd_song_feed(struct mpd_song *song, const struct mpd_pair *pair)$/;" f +mpd_song_free src/song.c /^void mpd_song_free(struct mpd_song *song) {$/;" f +mpd_song_get_duration src/song.c /^mpd_song_get_duration(const struct mpd_song *song)$/;" f +mpd_song_get_duration_ms src/song.c /^mpd_song_get_duration_ms(const struct mpd_song *song)$/;" f +mpd_song_get_end src/song.c /^mpd_song_get_end(const struct mpd_song *song)$/;" f +mpd_song_get_id src/song.c /^mpd_song_get_id(const struct mpd_song *song)$/;" f +mpd_song_get_last_modified src/song.c /^mpd_song_get_last_modified(const struct mpd_song *song)$/;" f +mpd_song_get_pos src/song.c /^mpd_song_get_pos(const struct mpd_song *song)$/;" f +mpd_song_get_prio src/song.c /^mpd_song_get_prio(const struct mpd_song *song)$/;" f +mpd_song_get_start src/song.c /^mpd_song_get_start(const struct mpd_song *song)$/;" f +mpd_song_get_tag src/song.c /^mpd_song_get_tag(const struct mpd_song *song,$/;" f +mpd_song_get_uri src/song.c /^mpd_song_get_uri(const struct mpd_song *song)$/;" f +mpd_song_new src/song.c /^mpd_song_new(const char *uri)$/;" f file: +mpd_song_parse_range src/song.c /^mpd_song_parse_range(struct mpd_song *song, const char *value)$/;" f file: +mpd_song_set_duration src/song.c /^mpd_song_set_duration(struct mpd_song *song, unsigned duration)$/;" f file: +mpd_song_set_duration_ms src/song.c /^mpd_song_set_duration_ms(struct mpd_song *song, unsigned duration_ms)$/;" f file: +mpd_song_set_id src/song.c /^mpd_song_set_id(struct mpd_song *song, unsigned id)$/;" f file: +mpd_song_set_last_modified src/song.c /^mpd_song_set_last_modified(struct mpd_song *song, time_t mtime)$/;" f file: +mpd_song_set_pos src/song.c /^mpd_song_set_pos(struct mpd_song *song, unsigned pos)$/;" f +mpd_song_set_prio src/song.c /^mpd_song_set_prio(struct mpd_song *song, unsigned prio)$/;" f file: +mpd_state include/mpd/status.h /^enum mpd_state {$/;" g +mpd_state tmp/include/mpd/status.h /^enum mpd_state {$/;" g +mpd_stats src/stats.c /^struct mpd_stats {$/;" s file: +mpd_stats_begin src/stats.c /^mpd_stats_begin(void)$/;" f +mpd_stats_feed src/stats.c /^mpd_stats_feed(struct mpd_stats *stats, const struct mpd_pair *pair)$/;" f +mpd_stats_free src/stats.c /^void mpd_stats_free(struct mpd_stats * stats) {$/;" f +mpd_stats_get_db_play_time src/stats.c /^unsigned long mpd_stats_get_db_play_time(const struct mpd_stats * stats)$/;" f +mpd_stats_get_db_update_time src/stats.c /^unsigned long mpd_stats_get_db_update_time(const struct mpd_stats * stats)$/;" f +mpd_stats_get_number_of_albums src/stats.c /^mpd_stats_get_number_of_albums(const struct mpd_stats * stats)$/;" f +mpd_stats_get_number_of_artists src/stats.c /^mpd_stats_get_number_of_artists(const struct mpd_stats * stats)$/;" f +mpd_stats_get_number_of_songs src/stats.c /^mpd_stats_get_number_of_songs(const struct mpd_stats * stats)$/;" f +mpd_stats_get_play_time src/stats.c /^unsigned long mpd_stats_get_play_time(const struct mpd_stats * stats)$/;" f +mpd_stats_get_uptime src/stats.c /^unsigned long mpd_stats_get_uptime(const struct mpd_stats * stats)$/;" f +mpd_status src/status.c /^struct mpd_status {$/;" s file: +mpd_status_begin src/status.c /^mpd_status_begin(void)$/;" f +mpd_status_feed src/status.c /^mpd_status_feed(struct mpd_status *status, const struct mpd_pair *pair)$/;" f +mpd_status_free src/status.c /^void mpd_status_free(struct mpd_status * status) {$/;" f +mpd_status_get_audio_format src/status.c /^mpd_status_get_audio_format(const struct mpd_status *status)$/;" f +mpd_status_get_consume src/status.c /^mpd_status_get_consume(const struct mpd_status *status)$/;" f +mpd_status_get_crossfade src/status.c /^mpd_status_get_crossfade(const struct mpd_status *status)$/;" f +mpd_status_get_elapsed_ms src/status.c /^mpd_status_get_elapsed_ms(const struct mpd_status *status)$/;" f +mpd_status_get_elapsed_time src/status.c /^mpd_status_get_elapsed_time(const struct mpd_status *status)$/;" f +mpd_status_get_error src/status.c /^mpd_status_get_error(const struct mpd_status *status)$/;" f +mpd_status_get_kbit_rate src/status.c /^mpd_status_get_kbit_rate(const struct mpd_status *status)$/;" f +mpd_status_get_mixrampdb src/status.c /^mpd_status_get_mixrampdb(const struct mpd_status *status)$/;" f +mpd_status_get_mixrampdelay src/status.c /^mpd_status_get_mixrampdelay(const struct mpd_status *status)$/;" f +mpd_status_get_next_song_id src/status.c /^mpd_status_get_next_song_id(const struct mpd_status *status)$/;" f +mpd_status_get_next_song_pos src/status.c /^mpd_status_get_next_song_pos(const struct mpd_status *status)$/;" f +mpd_status_get_queue_length src/status.c /^mpd_status_get_queue_length(const struct mpd_status *status)$/;" f +mpd_status_get_queue_version src/status.c /^mpd_status_get_queue_version(const struct mpd_status *status)$/;" f +mpd_status_get_random src/status.c /^mpd_status_get_random(const struct mpd_status *status)$/;" f +mpd_status_get_repeat src/status.c /^mpd_status_get_repeat(const struct mpd_status *status)$/;" f +mpd_status_get_single src/status.c /^mpd_status_get_single(const struct mpd_status *status)$/;" f +mpd_status_get_song_id src/status.c /^mpd_status_get_song_id(const struct mpd_status *status)$/;" f +mpd_status_get_song_pos src/status.c /^mpd_status_get_song_pos(const struct mpd_status *status)$/;" f +mpd_status_get_state src/status.c /^mpd_status_get_state(const struct mpd_status *status)$/;" f +mpd_status_get_total_time src/status.c /^mpd_status_get_total_time(const struct mpd_status *status)$/;" f +mpd_status_get_update_id src/status.c /^mpd_status_get_update_id(const struct mpd_status *status)$/;" f +mpd_status_get_volume src/status.c /^int mpd_status_get_volume(const struct mpd_status *status)$/;" f +mpd_sync_flush src/sync.c /^mpd_sync_flush(struct mpd_async *async, const struct timeval *tv0)$/;" f +mpd_sync_io src/sync.c /^mpd_sync_io(struct mpd_async *async, struct timeval *tv)$/;" f file: +mpd_sync_poll src/sync.c /^mpd_sync_poll(struct mpd_async *async, struct timeval *tv)$/;" f file: +mpd_sync_recv_line src/sync.c /^mpd_sync_recv_line(struct mpd_async *async, const struct timeval *tv0)$/;" f +mpd_sync_send_command src/sync.c /^mpd_sync_send_command(struct mpd_async *async, const struct timeval *tv,$/;" f +mpd_sync_send_command_v src/sync.c /^mpd_sync_send_command_v(struct mpd_async *async, const struct timeval *tv0,$/;" f +mpd_tag_name src/tag.c /^mpd_tag_name(enum mpd_tag_type type)$/;" f +mpd_tag_name_iparse src/tag.c /^mpd_tag_name_iparse(const char *name)$/;" f +mpd_tag_name_parse src/tag.c /^mpd_tag_name_parse(const char *name)$/;" f +mpd_tag_type include/mpd/tag.h /^enum mpd_tag_type$/;" g +mpd_tag_type tmp/include/mpd/tag.h /^enum mpd_tag_type$/;" g +mpd_tag_type_names src/tag.c /^static const char *const mpd_tag_type_names[MPD_TAG_COUNT] =$/;" v file: +mpd_tag_value src/song.c /^struct mpd_tag_value {$/;" s file: +mpd_unused include/mpd/compiler.h 44;" d +mpd_unused include/mpd/compiler.h 55;" d +mpd_unused tmp/include/mpd/compiler.h 44;" d +mpd_unused tmp/include/mpd/compiler.h 55;" d +mpd_verify_local_uri src/uri.h /^mpd_verify_local_uri(const char *uri)$/;" f +mpd_verify_uri src/uri.h /^mpd_verify_uri(const char *uri)$/;" f +mpdinclude_HEADERS Makefile /^mpdinclude_HEADERS = \\$/;" m +mpdincludedir Makefile /^mpdincludedir = $(includedir)\/mpd$/;" m +name include/mpd/pair.h /^ const char *name;$/;" m struct:mpd_pair +name src/output.c /^ char *name;$/;" m struct:mpd_output file: +name src/parser.c /^ const char *name, *value;$/;" m struct:mpd_parser::__anon2::__anon4 file: +name tmp/include/mpd/pair.h /^ const char *name;$/;" m struct:mpd_pair +next src/resolver.c /^ const struct addrinfo *next;$/;" m struct:resolver typeref:struct:resolver::addrinfo file: +next src/song.c /^ struct mpd_tag_value *next;$/;" m struct:mpd_tag_value typeref:struct:mpd_tag_value::mpd_tag_value file: +next_song_id src/status.c /^ int next_song_id;$/;" m struct:mpd_status file: +next_song_pos src/status.c /^ int next_song_pos;$/;" m struct:mpd_status file: +noinst_PROGRAMS Makefile /^noinst_PROGRAMS = src\/example$(EXEEXT) test\/test$(EXEEXT)$/;" m +number_of_albums src/stats.c /^ unsigned number_of_albums;$/;" m struct:mpd_stats file: +number_of_artists src/stats.c /^ unsigned number_of_artists;$/;" m struct:mpd_stats file: +number_of_songs src/stats.c /^ unsigned number_of_songs;$/;" m struct:mpd_stats file: +oldincludedir Makefile /^oldincludedir = \/usr\/include$/;" m +output src/async.c /^ struct mpd_buffer output;$/;" m struct:mpd_async typeref:struct:mpd_async::mpd_buffer file: +pair src/internal.h /^ struct mpd_pair pair;$/;" m struct:mpd_connection typeref:struct:mpd_connection::mpd_pair +pair src/parser.c /^ } pair;$/;" m union:mpd_parser::__anon2 typeref:struct:mpd_parser::__anon2::__anon4 file: +pair_state src/internal.h /^ } pair_state;$/;" m struct:mpd_connection typeref:enum:mpd_connection::__anon5 +parse_audio_format src/status.c /^parse_audio_format(struct mpd_audio_format *audio_format, const char *p)$/;" f file: +parse_mpd_state src/status.c /^parse_mpd_state(const char *p)$/;" f file: +parse_ms src/status.c /^parse_ms(const char *p)$/;" f file: +parser src/internal.h /^ struct mpd_parser *parser;$/;" m struct:mpd_connection typeref:struct:mpd_connection::mpd_parser +password src/settings.c /^ char *password;$/;" m struct:mpd_settings file: +path src/directory.c /^ char *path;$/;" m struct:mpd_directory file: +path src/playlist.c /^ char *path;$/;" m struct:mpd_playlist file: +pdfdir Makefile /^pdfdir = ${docdir}$/;" m +pkgconfig_DATA Makefile /^pkgconfig_DATA = libmpdclient.pc$/;" m +pkgconfigdir Makefile /^pkgconfigdir = $(libdir)\/pkgconfig$/;" m +pkgdatadir Makefile /^pkgdatadir = $(datadir)\/libmpdclient$/;" m +pkgincludedir Makefile /^pkgincludedir = $(includedir)\/libmpdclient$/;" m +pkglibdir Makefile /^pkglibdir = $(libdir)\/libmpdclient$/;" m +pkglibexecdir Makefile /^pkglibexecdir = $(libexecdir)\/libmpdclient$/;" m +play_time src/stats.c /^ unsigned long play_time;$/;" m struct:mpd_stats file: +playlistFile src/entity.c /^ struct mpd_playlist *playlistFile;$/;" m union:mpd_entity::__anon1 typeref:struct:mpd_entity::__anon1::mpd_playlist file: +port src/settings.c /^ unsigned port, timeout_ms;$/;" m struct:mpd_settings file: +pos src/song.c /^ unsigned pos;$/;" m struct:mpd_song file: +prefix Makefile /^prefix = \/usr\/local$/;" m +print_song test/main.c /^print_song(const struct mpd_song *song)$/;" f file: +print_status test/main.c /^print_status(struct mpd_status *status)$/;" f file: +print_tag src/example.c /^print_tag(const struct mpd_song *song, enum mpd_tag_type type,$/;" f file: +print_tag test/main.c /^print_tag(const struct mpd_song *song, enum mpd_tag_type type,$/;" f file: +print_usage build/test-driver /^print_usage ()$/;" f +prio src/song.c /^ unsigned prio;$/;" m struct:mpd_song file: +program_details build/missing /^program_details ()$/;" f +program_transform_name Makefile /^program_transform_name = s,x,x,$/;" m +protocol src/resolver.h /^ int protocol;$/;" m struct:resolver_address +prototypes configure /^ function prototypes and stuff, but not '\\xHH' hex character constants.$/;" f +psdir Makefile /^psdir = ${docdir}$/;" m +queue_length src/status.c /^ unsigned queue_length;$/;" m struct:mpd_status file: +queue_version src/status.c /^ unsigned queue_version;$/;" m struct:mpd_status file: +quote src/quote.c /^quote(char *dest, char *end, const char *value)$/;" f +random src/status.c /^ bool random;$/;" m struct:mpd_status file: +read src/buffer.h /^ unsigned read;$/;" m struct:mpd_buffer +receiving src/internal.h /^ bool receiving;$/;" m struct:mpd_connection +repeat src/status.c /^ bool repeat;$/;" m struct:mpd_status file: +request src/internal.h /^ char *request;$/;" m struct:mpd_connection +reserved0 include/mpd/audio_format.h /^ uint16_t reserved0;$/;" m struct:mpd_audio_format +reserved0 tmp/include/mpd/audio_format.h /^ uint16_t reserved0;$/;" m struct:mpd_audio_format +reserved1 include/mpd/audio_format.h /^ uint32_t reserved1;$/;" m struct:mpd_audio_format +reserved1 tmp/include/mpd/audio_format.h /^ uint32_t reserved1;$/;" m struct:mpd_audio_format +resolver src/resolver.c /^struct resolver {$/;" s file: +resolver_address src/resolver.h /^struct resolver_address {$/;" s +resolver_free src/resolver.c /^resolver_free(struct resolver *resolver)$/;" f +resolver_new src/resolver.c /^resolver_new(const char *host, unsigned port)$/;" f +resolver_next src/resolver.c /^resolver_next(struct resolver *resolver)$/;" f +result src/parser.c /^ enum mpd_parser_result result;$/;" m struct:mpd_parser typeref:enum:mpd_parser::mpd_parser_result file: +sample_rate include/mpd/audio_format.h /^ uint32_t sample_rate;$/;" m struct:mpd_audio_format +sample_rate tmp/include/mpd/audio_format.h /^ uint32_t sample_rate;$/;" m struct:mpd_audio_format +saun src/resolver.c /^ struct sockaddr_un saun;$/;" m struct:resolver typeref:struct:resolver::sockaddr_un file: +sbindir Makefile /^sbindir = ${exec_prefix}\/sbin$/;" m +send_check src/send.c /^send_check(struct mpd_connection *connection)$/;" f file: +sending_command_list src/internal.h /^ bool sending_command_list;$/;" m struct:mpd_connection +sending_command_list_ok src/internal.h /^ bool sending_command_list_ok;$/;" m struct:mpd_connection +server src/ierror.h /^ enum mpd_server_error server;$/;" m struct:mpd_error_info typeref:enum:mpd_error_info::mpd_server_error +server src/parser.c /^ enum mpd_server_error server;$/;" m struct:mpd_parser::__anon2::__anon3 typeref:enum:mpd_parser::__anon2::__anon3::mpd_server_error file: +set_base_from build/depcomp /^set_base_from ()$/;" f +set_dir_from build/depcomp /^set_dir_from ()$/;" f +set_result src/parser.c /^set_result(struct mpd_parser *parser, enum mpd_parser_result result)$/;" f file: +settings src/internal.h /^ struct mpd_settings *settings;$/;" m struct:mpd_connection typeref:struct:mpd_connection::mpd_settings +sharedstatedir Makefile /^sharedstatedir = ${prefix}\/com$/;" m +sin src/resolver.c /^ struct sockaddr_in sin;$/;" m struct:resolver typeref:struct:resolver::sockaddr_in file: +single src/status.c /^ bool single;$/;" m struct:mpd_status file: +socket_cloexec_nonblock src/fd_util.c /^socket_cloexec_nonblock(int domain, int type, int protocol)$/;" f +song src/entity.c /^ struct mpd_song *song;$/;" m union:mpd_entity::__anon1 typeref:struct:mpd_entity::__anon1::mpd_song file: +song_id src/status.c /^ int song_id;$/;" m struct:mpd_status file: +song_pos src/status.c /^ int song_pos;$/;" m struct:mpd_status file: +src_example_DEPENDENCIES Makefile /^src_example_DEPENDENCIES = src\/libmpdclient.la$/;" m +src_example_LDADD Makefile /^src_example_LDADD = src\/libmpdclient.la$/;" m +src_example_OBJECTS Makefile /^src_example_OBJECTS = $(am_src_example_OBJECTS)$/;" m +src_example_SOURCES Makefile /^src_example_SOURCES = src\/example.c$/;" m +src_libmpdclient_la_LDFLAGS Makefile /^src_libmpdclient_la_LDFLAGS = -version-info \\$/;" m +src_libmpdclient_la_LIBADD Makefile /^src_libmpdclient_la_LIBADD =$/;" m +src_libmpdclient_la_LINK Makefile /^src_libmpdclient_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \\$/;" m +src_libmpdclient_la_OBJECTS Makefile /^src_libmpdclient_la_OBJECTS = $(am_src_libmpdclient_la_OBJECTS)$/;" m +src_libmpdclient_la_SOURCES Makefile /^src_libmpdclient_la_SOURCES = \\$/;" m +srcdir Makefile /^srcdir = .$/;" m +start src/song.c /^ unsigned start;$/;" m struct:mpd_song file: +state src/status.c /^ enum mpd_state state;$/;" m struct:mpd_status typeref:enum:mpd_status::mpd_state file: +subdir Makefile /^subdir = .$/;" m +sysconfdir Makefile /^sysconfdir = ${prefix}\/etc$/;" m +system src/ierror.h /^ int system;$/;" m struct:mpd_error_info +tags src/song.c /^ struct mpd_tag_value tags[MPD_TAG_COUNT];$/;" m struct:mpd_song typeref:struct:mpd_song::mpd_tag_value file: +tardir Makefile /^ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2$/;" m +tardir Makefile /^ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz$/;" m +tardir Makefile /^ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz$/;" m +tardir Makefile /^ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z$/;" m +tardir Makefile /^ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz$/;" m +target_alias Makefile /^target_alias = $/;" m +test_close_connection test/main.c /^test_close_connection(struct mpd_connection *conn)$/;" f file: +test_currentsong test/main.c /^test_currentsong(struct mpd_connection *conn)$/;" f file: +test_list_artists test/main.c /^test_list_artists(struct mpd_connection *conn)$/;" f file: +test_list_status_currentsong test/main.c /^test_list_status_currentsong(struct mpd_connection *conn)$/;" f file: +test_lsinfo test/main.c /^test_lsinfo(struct mpd_connection *conn, const char *path)$/;" f file: +test_new_connection test/main.c /^test_new_connection(struct mpd_connection **conn)$/;" f file: +test_status test/main.c /^test_status(struct mpd_connection *conn)$/;" f file: +test_t_iso8601_CPPFLAGS Makefile /^test_t_iso8601_CPPFLAGS = -I$(srcdir)\/src $(AM_CPPFLAGS)$/;" m +test_t_iso8601_LDADD Makefile /^test_t_iso8601_LDADD = $(LDADD)$/;" m +test_t_iso8601_OBJECTS Makefile /^test_t_iso8601_OBJECTS = $(am_test_t_iso8601_OBJECTS)$/;" m +test_t_iso8601_SOURCES Makefile /^test_t_iso8601_SOURCES = test\/t_iso8601.c src\/iso8601.c$/;" m +test_test_DEPENDENCIES Makefile /^test_test_DEPENDENCIES = src\/libmpdclient.la$/;" m +test_test_LDADD Makefile /^test_test_LDADD = src\/libmpdclient.la$/;" m +test_test_OBJECTS Makefile /^test_test_OBJECTS = $(am_test_test_OBJECTS)$/;" m +test_test_SOURCES Makefile /^test_test_SOURCES = test\/main.c$/;" m +test_varargs_macros configure /^ test_varargs_macros ();$/;" f +test_version test/main.c /^test_version(struct mpd_connection *conn)$/;" f file: +text src/message.c /^ char *text;$/;" m struct:mpd_message file: +timegm_emulation src/iso8601.c /^timegm_emulation(struct tm *tm)$/;" f file: +timeout src/internal.h /^ struct timeval timeout;$/;" m struct:mpd_connection typeref:struct:mpd_connection::timeval +timeout_ms src/settings.c /^ unsigned port, timeout_ms;$/;" m struct:mpd_settings file: +timezone_offset src/iso8601.c /^timezone_offset(void)$/;" f file: +top_build_prefix Makefile /^top_build_prefix = $/;" m +top_builddir Makefile /^top_builddir = .$/;" m +top_distdir Makefile /^top_distdir = $(distdir)$/;" m +top_srcdir Makefile /^top_srcdir = .$/;" m +total_time src/status.c /^ unsigned total_time;$/;" m struct:mpd_status file: +transform Makefile /^transform = $(program_transform_name)$/;" m +type src/entity.c /^ enum mpd_entity_type type;$/;" m struct:mpd_entity typeref:enum:mpd_entity::mpd_entity_type file: +type src/resolver.c /^ } type;$/;" m struct:resolver typeref:enum:resolver::__anon8 file: +u src/parser.c /^ } u;$/;" m struct:mpd_parser typeref:union:mpd_parser::__anon2 file: +update_id src/status.c /^ unsigned update_id;$/;" m struct:mpd_status file: +uptime src/stats.c /^ unsigned long uptime;$/;" m struct:mpd_stats file: +uri src/song.c /^ char *uri;$/;" m struct:mpd_song file: +usage_error build/test-driver /^usage_error ()$/;" f +value include/mpd/pair.h /^ const char *value;$/;" m struct:mpd_pair +value src/parser.c /^ const char *name, *value;$/;" m struct:mpd_parser::__anon2::__anon4 file: +value src/song.c /^ char *value;$/;" m struct:mpd_tag_value file: +value tmp/include/mpd/pair.h /^ const char *value;$/;" m struct:mpd_pair +vapi_DATA Makefile /^vapi_DATA = vapi\/libmpdclient.vapi$/;" m +vapidir Makefile /^vapidir = $(datadir)\/vala\/vapi$/;" m +version src/internal.h /^ unsigned version[3];$/;" m struct:mpd_connection +volume src/status.c /^ int volume;$/;" m struct:mpd_status file: +write src/buffer.h /^ unsigned write;$/;" m struct:mpd_buffer diff --git a/1_6.h12_dev/libmpdclient/test.sh b/1_6.h12_dev/libmpdclient/test.sh new file mode 100755 index 0000000..eb68750 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/test.sh @@ -0,0 +1,44 @@ +#!/bin/sh -e +# +# This shell script tests the build of libmpdclient with various +# compile-time options. +# +# Author: Max Kellermann + +MAKE="make -j4" +PREFIX=/tmp/libmpdclient +rm -rf $PREFIX + +export CFLAGS="-O3" + +test -x configure || NOCONFIGURE=1 ./autogen.sh + +# debug build +CFLAGS="-O0 -ggdb" ./configure --prefix=$PREFIX/debug --enable-debug --enable-werror +$MAKE clean +$MAKE install + +# no TCP +CFLAGS="-O0 -ggdb" ./configure --prefix=$PREFIX/notcp --enable-debug --enable-werror --disable-tcp +$MAKE clean +$MAKE install + +# release build +CFLAGS="-O3" ./configure --prefix=$PREFIX/release --disable-debug --enable-werror +$MAKE clean +$MAKE install + +# dietlibc build +CC="diet -Os gcc -nostdinc" ./configure --prefix=$PREFIX/diet --disable-debug --disable-shared +$MAKE clean +$MAKE install + +# dietlibc build, no TCP +CC="diet -Os gcc -nostdinc" ./configure --prefix=$PREFIX/diet-notcp --disable-debug --disable-shared --disable-tcp +$MAKE clean +$MAKE install + +# WIN32 +CFLAGS="-O3" ./configure --prefix=$PREFIX/win32 --host=i586-mingw32msvc --disable-debug --enable-werror +$MAKE clean +$MAKE install diff --git a/1_6.h12_dev/libmpdclient/test/main.c b/1_6.h12_dev/libmpdclient/test/main.c new file mode 100644 index 0000000..d437e47 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/test/main.c @@ -0,0 +1,362 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#define BRIGHT 1 +#define RED 31 +#define GREEN 32 +#define YELLOW 33 +#define BG_BLACK 40 +#define COLOR_CODE 0x1B + +#define LOG_INFO(x, ...) {printf(" [info]" x "\n", __VA_ARGS__);} +#define LOG_WARNING(x, ...) \ +{\ + fprintf(stderr, "%c[%d;%d;%dm[WARNING](%s:%d) %s : " x "\n", COLOR_CODE, BRIGHT, YELLOW, BG_BLACK, __FILE__, __LINE__, __FUNCTION__, __VA_ARGS__);\ + printf("%c[%dm", 0x1B, 0);\ +} + +#define LOG_ERROR(x, ...) \ +{\ + fprintf(stderr, "%c[%d;%d;%dm[ERROR](%s:%d) %s : " x "\n", COLOR_CODE, BRIGHT, RED, BG_BLACK, __FILE__, __LINE__, __FUNCTION__, __VA_ARGS__);\ + printf("%c[%dm", 0x1B, 0);\ +} + +#define START_TEST(description, method, ...) \ +{\ + printf("[Start Test] " description "\n");\ + if (method(__VA_ARGS__) < 0)\ + printf("%c[%d;%d;%dm[End Test: ERROR]\n", COLOR_CODE, BRIGHT, RED, BG_BLACK);\ + else\ + printf("%c[%d;%d;%dm[End Test: OK]\n", COLOR_CODE, BRIGHT, GREEN, BG_BLACK);\ + printf("%c[%dm", 0x1B, 0);\ +} + +#define CHECK_CONNECTION(conn) \ + if (mpd_connection_get_error(conn) != MPD_ERROR_SUCCESS) { \ + LOG_ERROR("%s", mpd_connection_get_error_message(conn)); \ + return -1; \ + } + +static int +test_new_connection(struct mpd_connection **conn) +{ + *conn = mpd_connection_new(NULL, 0, 30000); + if (*conn == NULL) { + LOG_ERROR("%s", "Out of memory"); + return -1; + } + + if (mpd_connection_get_error(*conn) != MPD_ERROR_SUCCESS) { + LOG_ERROR("%s", mpd_connection_get_error_message(*conn)); + mpd_connection_free(*conn); + *conn = NULL; + return -1; + } + return 0; +} + +static int +test_version(struct mpd_connection *conn) +{ + int i, total = -1; + for (i=0; i<3; ++i) { + LOG_INFO("version[%i]: %i", i, + mpd_connection_get_server_version(conn)[i]); + total += mpd_connection_get_server_version(conn)[i]; + } + /* Check if at least one of the three number is positive */ + return total; +} + +static void +print_status(struct mpd_status *status) +{ + const struct mpd_audio_format *audio_format; + + LOG_INFO("volume: %i", mpd_status_get_volume(status)); + LOG_INFO("repeat: %i", mpd_status_get_repeat(status)); + LOG_INFO("single: %i", mpd_status_get_single(status)); + LOG_INFO("consume: %i", mpd_status_get_consume(status)); + LOG_INFO("random: %i", mpd_status_get_random(status)); + LOG_INFO("queue version: %u", mpd_status_get_queue_version(status)); + LOG_INFO("queue length: %i", mpd_status_get_queue_length(status)); + + if (mpd_status_get_state(status) == MPD_STATE_PLAY || + mpd_status_get_state(status) == MPD_STATE_PAUSE) { + LOG_INFO("song: %i", mpd_status_get_song_pos(status)); + LOG_INFO("elaspedTime: %i", mpd_status_get_elapsed_time(status)); + LOG_INFO("elasped_ms: %u\n", mpd_status_get_elapsed_ms(status)); + LOG_INFO("totalTime: %i", mpd_status_get_total_time(status)); + LOG_INFO("bitRate: %i", mpd_status_get_kbit_rate(status)); + } + + audio_format = mpd_status_get_audio_format(status); + if (audio_format != NULL) { + printf("sampleRate: %i\n", audio_format->sample_rate); + printf("bits: %i\n", audio_format->bits); + printf("channels: %i\n", audio_format->channels); + } +} + +static void +print_tag(const struct mpd_song *song, enum mpd_tag_type type, + const char *label) +{ + unsigned i = 0; + const char *value; + + while ((value = mpd_song_get_tag(song, type, i++)) != NULL) + LOG_INFO("%s: %s", label, value); +} + +static void +print_song(const struct mpd_song *song) +{ + LOG_INFO("uri: %s\n", mpd_song_get_uri(song)); + print_tag(song, MPD_TAG_ARTIST, "artist"); + print_tag(song, MPD_TAG_ALBUM, "album"); + print_tag(song, MPD_TAG_TITLE, "title"); + print_tag(song, MPD_TAG_TRACK, "track"); + print_tag(song, MPD_TAG_NAME, "name"); + print_tag(song, MPD_TAG_DATE, "date"); + + if (mpd_song_get_duration(song) > 0) + LOG_INFO("time: %i", mpd_song_get_duration(song)); + + if (mpd_song_get_duration_ms(song) > 0) + LOG_INFO("duration: %i", mpd_song_get_duration_ms(song)); + + LOG_INFO("pos: %u", mpd_song_get_pos(song)); +} + +static int +test_status(struct mpd_connection *conn) +{ + struct mpd_status *status; + + status = mpd_run_status(conn); + if (!status) { + LOG_ERROR("%s", mpd_connection_get_error_message(conn)); + return -1; + } + + print_status(status); + mpd_status_free(status); + + mpd_response_finish(conn); + CHECK_CONNECTION(conn); + + return 0; +} + +static int +test_currentsong(struct mpd_connection *conn) +{ + struct mpd_song *song; + + song = mpd_run_current_song(conn); + if (song != NULL) { + print_song(song); + + mpd_song_free(song); + } + + mpd_response_finish(conn); + CHECK_CONNECTION(conn); + + return 0; +} + + +static int +test_list_status_currentsong(struct mpd_connection *conn) +{ + struct mpd_status *status; + const struct mpd_song *song; + struct mpd_entity *entity; + + mpd_command_list_begin(conn, true); + mpd_send_status(conn); + mpd_send_current_song(conn); + mpd_command_list_end(conn); + + CHECK_CONNECTION(conn); + + status = mpd_recv_status(conn); + if (!status) { + LOG_ERROR("%s", mpd_connection_get_error_message(conn)); + return -1; + } + if (mpd_status_get_error(status)) { + LOG_WARNING("status error: %s", mpd_status_get_error(status)); + } + + print_status(status); + mpd_status_free(status); + + mpd_response_next(conn); + + entity = mpd_recv_entity(conn); + if (entity) { + if (mpd_entity_get_type(entity) != MPD_ENTITY_TYPE_SONG) { + LOG_ERROR("entity doesn't have the expected type (song)i :%d", + mpd_entity_get_type(entity)); + mpd_entity_free(entity); + return -1; + } + + song = mpd_entity_get_song(entity); + + print_song(song); + + mpd_entity_free(entity); + } + + mpd_response_finish(conn); + CHECK_CONNECTION(conn); + + return 0; +} + +static int +test_lsinfo(struct mpd_connection *conn, const char *path) +{ + struct mpd_entity *entity; + + mpd_send_list_meta(conn, path); + CHECK_CONNECTION(conn); + + while ((entity = mpd_recv_entity(conn)) != NULL) { + const struct mpd_song *song; + const struct mpd_directory *dir; + const struct mpd_playlist *pl; + + switch (mpd_entity_get_type(entity)) { + case MPD_ENTITY_TYPE_UNKNOWN: + printf("Unknown type\n"); + break; + + case MPD_ENTITY_TYPE_SONG: + song = mpd_entity_get_song(entity); + print_song (song); + break; + + case MPD_ENTITY_TYPE_DIRECTORY: + dir = mpd_entity_get_directory(entity); + printf("directory: %s\n", mpd_directory_get_path(dir)); + break; + + case MPD_ENTITY_TYPE_PLAYLIST: + pl = mpd_entity_get_playlist(entity); + LOG_INFO("playlist: %s", mpd_playlist_get_path(pl)); + break; + } + + mpd_entity_free(entity); + } + + mpd_response_finish(conn); + CHECK_CONNECTION(conn); + + return 0; +} + +static int +test_list_artists(struct mpd_connection *conn) +{ + struct mpd_pair *pair; + int first = 1; + + mpd_search_db_tags(conn, MPD_TAG_ARTIST); + mpd_search_commit(conn); + CHECK_CONNECTION(conn); + + LOG_INFO("%s: ", "Artists list"); + while ((pair = mpd_recv_pair_tag(conn, MPD_TAG_ARTIST)) != NULL) { + if (first) { + printf(" %s", pair->value); + first = 0; + } else { + printf(", %s", pair->value); + } + mpd_return_pair(conn, pair); + } + printf("\n"); + + mpd_response_finish(conn); + CHECK_CONNECTION(conn); + + return 0; +} + +static int +test_close_connection(struct mpd_connection *conn) +{ + mpd_connection_free(conn); + return 0; +} + +int +main(int argc, char ** argv) +{ + struct mpd_connection *conn = NULL; + const char *lsinfo_path = "/"; + + if (argc==2) + lsinfo_path = argv[1]; + + START_TEST("Test connection to MPD server", test_new_connection, &conn); + if (!conn) + return -1; + + START_TEST("Check MPD versions", test_version, conn); + START_TEST("'status' command", test_status, conn); + START_TEST("'currentsong' command", test_currentsong, conn); + START_TEST("List commands: 'status' and 'currentsong'", test_list_status_currentsong, conn); + START_TEST("'lsinfo' command", test_lsinfo, conn, lsinfo_path); + START_TEST("'list artist' command", test_list_artists, conn); + START_TEST("Test connection closing", test_close_connection, conn); + + return 0; +} diff --git a/1_6.h12_dev/libmpdclient/test/t_iso8601.c b/1_6.h12_dev/libmpdclient/test/t_iso8601.c new file mode 100644 index 0000000..1507ec3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/test/t_iso8601.c @@ -0,0 +1,19 @@ +#include "iso8601.h" +#include + +#include +#include + +int main(mpd_unused int argc, mpd_unused char **argv) +{ + char buffer[64]; + time_t t, now; + bool success; + + now = time(NULL); + success = iso8601_datetime_format(buffer, sizeof(buffer), now); + assert(success); + + t = iso8601_datetime_parse(buffer); + assert(t == now); +} diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/async.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/async.h new file mode 100644 index 0000000..9f6d24c --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/async.h @@ -0,0 +1,215 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief Asynchronous MPD connections + * + * This class provides a very basic interface to MPD connections. It + * does not know much about the MPD protocol, it does not know any + * specific MPD command. + * + * The constructor expects a socket descriptor which is already + * connected to MPD. The first thing it does is read the server's + * handshake code ("OK MPD 0.15.0"). + */ + +#ifndef MPD_ASYNC_H +#define MPD_ASYNC_H + +#include +#include + +#include +#include + +/** + * Event bit mask for polling. + */ +enum mpd_async_event { + /** ready to read from the file descriptor */ + MPD_ASYNC_EVENT_READ = 1, + + /** ready to write to the file descriptor */ + MPD_ASYNC_EVENT_WRITE = 2, + + /** hangup detected */ + MPD_ASYNC_EVENT_HUP = 4, + + /** I/O error */ + MPD_ASYNC_EVENT_ERROR = 8, +}; + +/** + * \struct mpd_async + * + * This opaque object represents an asynchronous connection to a MPD + * server. Call mpd_async_new() to create a new instance. + */ +struct mpd_async; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Creates a new asynchronous MPD connection, based on a stream socket + * connected with MPD. + * + * @param fd the socket file descriptor of the stream connection to MPD + * @return a mpd_async object, or NULL on out of memory + */ +mpd_malloc +struct mpd_async * +mpd_async_new(int fd); + +/** + * Closes the socket and frees memory. + */ +void +mpd_async_free(struct mpd_async *async); + +/** + * After an error has occurred, this function returns the error code. + * If no error has occurred, it returns #MPD_ERROR_SUCCESS. + */ +mpd_pure +enum mpd_error +mpd_async_get_error(const struct mpd_async *async); + +/** + * If mpd_async_is_alive() returns false, this function returns the + * human readable error message which caused this. This message is + * optional, and may be NULL. The pointer is invalidated by + * mpd_async_free(). + * + * For #MPD_ERROR_SERVER, the error message is encoded in UTF-8. + * #MPD_ERROR_SYSTEM obtains its error message from the operating + * system, and thus the locale's character set (and probably language) + * is used. Keep that in mind when you print error messages. + */ +mpd_pure +const char * +mpd_async_get_error_message(const struct mpd_async *async); + +/** + * Returns the error code from the operating system; on most operating + * systems, this is the errno value. Calling this function is only + * valid if mpd_async_get_error() returned #MPD_ERROR_SYSTEM. + * + * May be 0 if the operating system did not specify an error code. + */ +mpd_pure +int +mpd_async_get_system_error(const struct mpd_async *async); + +/** + * Returns the file descriptor which should be polled by the caller. + * Do not use the file descriptor for anything except polling! The + * file descriptor never changes during the lifetime of this + * #mpd_async object. + */ +mpd_pure +int +mpd_async_get_fd(const struct mpd_async *async); + +/** + * Enables (or disables) TCP keepalives. + * + * Keepalives are enabled using the SO_KEEPALIVE socket option. They may be + * required for long-idled connections to persist on some networks that + * would otherwise terminate inactive TCP sessions. + * + * The default value is false. + * + * @param async the #mpd_async object + * @param keepalive whether TCP keepalives should be enabled + * + * @since libmpdclient 2.10 + */ +void mpd_async_set_keepalive(struct mpd_async *async, + bool keepalive); + +/** + * Returns a bit mask of events which should be polled for. + */ +mpd_pure +enum mpd_async_event +mpd_async_events(const struct mpd_async *async); + +/** + * Call this function when poll() has returned events for this + * object's file descriptor. libmpdclient will attempt to perform I/O + * operations. + * + * @return false if the connection was closed due to an error + */ +bool +mpd_async_io(struct mpd_async *async, enum mpd_async_event events); + +/** + * Appends a command to the output buffer. + * + * @param async the connection + * @param command the command name, followed by arguments, terminated by + * NULL + * @param args the argument list + * @return true on success, false if the buffer is full + */ +bool +mpd_async_send_command_v(struct mpd_async *async, const char *command, + va_list args); + +/** + * Appends a command to the output buffer. + * + * @param async the connection + * @param command the command name, followed by arguments, terminated by + * NULL + * @return true on success, false if the buffer is full + */ +mpd_sentinel +bool +mpd_async_send_command(struct mpd_async *async, const char *command, ...); + +/** + * Receives a line from the input buffer. The result will be + * null-terminated, without the newline character. The pointer is + * only valid until the next async function is called. + * + * @param async the connection + * @return a line on success, NULL otherwise + */ +mpd_malloc +char * +mpd_async_recv_line(struct mpd_async *async); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/audio_format.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/audio_format.h new file mode 100644 index 0000000..f9d0936 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/audio_format.h @@ -0,0 +1,87 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_AUDIO_FORMAT_H +#define MPD_AUDIO_FORMAT_H + +#include + +enum { + /** + * 32 bit floating point samples. + */ + MPD_SAMPLE_FORMAT_FLOAT = 0xe0, + + /** + * DSD samples. + */ + MPD_SAMPLE_FORMAT_DSD = 0xe1, +}; + +/** + * This structure describes the format of a raw PCM stream. + */ +struct mpd_audio_format { + /** + * The sample rate in Hz. A better name for this attribute is + * "frame rate", because technically, you have two samples per + * frame in stereo sound. + */ + uint32_t sample_rate; + + /** + * The number of significant bits per sample. Samples are + * currently always signed. Supported values are 8, 16, 24, + * 32 and the special values #MPD_SAMPLE_FORMAT_FLOAT, + * #MPD_SAMPLE_FORMAT_DSD. + * + * @since libmpdclient 2.10 added support for #MPD_SAMPLE_FORMAT_FLOAT and + * #MPD_SAMPLE_FORMAT_DSD. + */ + uint8_t bits; + + /** + * The number of channels. Only mono (1) and stereo (2) are + * fully supported currently. + */ + uint8_t channels; + + /** reserved for future use */ + uint16_t reserved0; + + /** reserved for future use */ + uint32_t reserved1; +}; + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/capabilities.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/capabilities.h new file mode 100644 index 0000000..093b95d --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/capabilities.h @@ -0,0 +1,145 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_CAPABILITIES_H +#define MPD_CAPABILITIES_H + +#include +#include + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Requests a list of supported and allowed. Use + * mpd_recv_pair_named() to obtain the list of "command" pairs. + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_allowed_commands(struct mpd_connection *connection); + +/** + * Requests a list of supported commands which are not allowed for + * this connection. Use mpd_recv_pair_named() to obtain the list of + * "command" pairs. + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_disallowed_commands(struct mpd_connection *connection); + +/** + * Receives the next supported command. Call this in a loop after + * mpd_send_commands() or mpd_send_notcommands(). + * + * Free the return value with mpd_return_pair(). + * + * @param connection a #mpd_connection + * @returns a "command" pair, or NULL on error or if the end of the + * response is reached + */ +mpd_malloc +static inline struct mpd_pair * +mpd_recv_command_pair(struct mpd_connection *connection) +{ + return mpd_recv_pair_named(connection, "command"); +} + +/** + * Requests a list of supported URL handlers in the form "scheme://", + * example: "http://". Use mpd_recv_pair_named() to obtain the list + * of "handler" pairs. + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_list_url_schemes(struct mpd_connection *connection); + +/** + * Receives one line of the mpd_send_urlhandlers() response. + * + * Free the return value with mpd_return_pair(). + * + * @param connection a #mpd_connection + * @returns a "handler" pair, or NULL on error or if the end of the + * response is reached + */ +mpd_malloc +static inline struct mpd_pair * +mpd_recv_url_scheme_pair(struct mpd_connection *connection) +{ + return mpd_recv_pair_named(connection, "handler"); +} + +/** + * Requests a list of supported tag types. Use mpd_recv_pair_named() + * to obtain the list of "tagtype" pairs. + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_list_tag_types(struct mpd_connection *connection); + +/** + * Receives the next tag type name. Call this in a loop after + * mpd_send_tagtypes(). + * + * Free the return value with mpd_return_pair(). + * + * @param connection a #mpd_connection + * @returns a "tagtype" pair, or NULL on error or if the end of the + * response is reached + */ +mpd_malloc +static inline struct mpd_pair * +mpd_recv_tag_type_pair(struct mpd_connection *connection) +{ + return mpd_recv_pair_named(connection, "tagtype"); +} + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/client.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/client.h new file mode 100644 index 0000000..46239b3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/client.h @@ -0,0 +1,75 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * This is a client library for the Music Player Daemon, written in C. + * + * You can choose one of several APIs, depending on your requirements: + * + * - struct mpd_async: a very low-level asynchronous API which knows + * the protocol syntax, but no specific commands + * + * - struct mpd_connection: a basic synchronous API which knows all + * MPD commands and parses all responses + * + * \author Max Kellermann (max@duempel.org) + */ + +#ifndef MPD_CLIENT_H +#define MPD_CLIENT_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/compiler.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/compiler.h new file mode 100644 index 0000000..50f4437 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/compiler.h @@ -0,0 +1,64 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief Compiler specific definitions + * + * This file is not part of the official libmpdclient2 API. It + * provides access to gcc specific extensions. + * + */ + +#ifndef MPD_COMPILER_H +#define MPD_COMPILER_H + +#if !defined(SPARSE) && defined(__GNUC__) && __GNUC__ >= 3 + +/* GCC 4.x */ + +#define mpd_unused __attribute__((unused)) +#define mpd_malloc __attribute__((malloc)) +#define mpd_pure __attribute__((pure)) +#define mpd_const __attribute__((const)) +#define mpd_sentinel __attribute__((sentinel)) +#define mpd_printf(a,b) __attribute__((format(printf, a, b))) + +#else + +/* generic C compiler */ + +#define mpd_unused +#define mpd_malloc +#define mpd_pure +#define mpd_const +#define mpd_sentinel +#define mpd_printf(a,b) + +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/connection.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/connection.h new file mode 100644 index 0000000..e1f1211 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/connection.h @@ -0,0 +1,283 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_CONNECTION_H +#define MPD_CONNECTION_H + +#include +#include +#include + +#include + +struct mpd_async; + +/** + * \struct mpd_connection + * + * This opaque object represents a connection to a MPD server. Call + * mpd_connection_new() to create a new instance. To free an + * instance, call mpd_connection_free(). + * + * Error handling: most functions return a "bool" indicating success + * or failure. In this case, you may query the nature of the error + * with the functions mpd_connection_get_error(), + * mpd_connection_get_error_message(), + * mpd_connection_get_server_error(). + * + * Some errors can be cleared by calling mpd_connection_clear_error(), + * like #MPD_ERROR_SERVER, #MPD_ERROR_ARGUMENT. Most others are + * fatal, and cannot be recovered, like #MPD_ERROR_CLOSED - + * mpd_connection_clear_error() returns false. + * + * Some functions like mpd_recv_pair() cannot differentiate between + * "end of response" and "error". If this function returns NULL, you + * have to check mpd_connection_get_error(). + */ +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Opens a new connection to a MPD server. Both the name server + * lookup and the connect() call are done synchronously. After this + * function has returned, you should check if the connection was + * successful with mpd_connection_get_error(). + * + * @param host the server's host name, IP address or Unix socket path. + * If the resolver returns more than one IP address for a host name, + * this functions tries all of them until one accepts the connection. + * NULL is allowed here, which will connect to the default host + * (using the MPD_HOST environment variable if present). + * @param port the TCP port to connect to, 0 for default port (using + * the MPD_PORT environment variable if present). If "host" is a Unix + * socket path, this parameter is ignored. + * @param timeout_ms the timeout in milliseconds, 0 for the default + * timeout (the environment variable MPD_TIMEOUT may specify a timeout + * in seconds); you may modify it later with + * mpd_connection_set_timeout() + * @return a mpd_connection object (which may have failed to connect), + * or NULL on out-of-memory + * + * @since libmpdclient 2.3 added support for #MPD_HOST, #MPD_PORT and + * #MPD_TIMEOUT. + */ +mpd_malloc +struct mpd_connection * +mpd_connection_new(const char *host, unsigned port, unsigned timeout_ms); + +/** + * Creates a #mpd_connection object based on an existing asynchronous + * MPD connection. You should not continue to use the #mpd_async + * object. Note that mpd_connection_free() also frees your #mpd_async + * object! + * + * This function does not block at all, which is why you have to pass + * the welcome message to it. + * + * @param async a #mpd_async instance + * @param welcome the first line sent by MPD (the welcome message) + * @return a mpd_connection object, or NULL on out-of-memory + */ +mpd_malloc +struct mpd_connection * +mpd_connection_new_async(struct mpd_async *async, const char *welcome); + +/** + * Close the connection and free all memory. + * + * @param connection the connection to MPD + */ +void mpd_connection_free(struct mpd_connection *connection); + +/** + * Returns the settings which were used to connect to the server. May + * be NULL if the settings are not known. + * + * @since libmpdclient 2.4 + */ +const struct mpd_settings * +mpd_connection_get_settings(const struct mpd_connection *connection); + +/** + * Enables (or disables) TCP keepalives. + * + * Keepalives are enabled using the SO_KEEPALIVE socket option. They may be + * required for long-idled connections to persist on some networks that + * would otherwise terminate inactive TCP sessions. + * + * The default value is false. + * + * @param connection the connection to MPD + * @param keepalive whether TCP keepalives should be enabled + * + * @since libmpdclient 2.10 + */ +void mpd_connection_set_keepalive(struct mpd_connection *connection, + bool keepalive); + +/** + * Sets the timeout for synchronous operations. If the MPD server + * does not send a response during this time span, the operation is + * aborted by libmpdclient. + * + * The initial value is the one passed to mpd_connection_new(). If + * you have used mpd_connection_new_async(), then the default value is + * 30 seconds. + * + * @param connection the connection to MPD + * @param timeout_ms the desired timeout in milliseconds; must not be 0 + */ +void mpd_connection_set_timeout(struct mpd_connection *connection, + unsigned timeout_ms); + +/** + * Returns the file descriptor which should be polled by the caller. + * Do not use the file descriptor for anything except polling! The + * file descriptor never changes during the lifetime of this + * #mpd_connection object. + */ +mpd_pure +int +mpd_connection_get_fd(const struct mpd_connection *connection); + +/** + * Returns the underlying #mpd_async object. This can be used to send + * commands asynchronously. During an asynchronous command, you must + * not use synchronous #mpd_connection functions until the + * asynchronous response has been finished. + * + * If an error occurs while using #mpd_async, you must close the + * #mpd_connection. + */ +mpd_pure +struct mpd_async * +mpd_connection_get_async(struct mpd_connection *connection); + +/** + * Returns the libmpdclient error code. MPD_ERROR_SUCCESS means no + * error occurred. + */ +mpd_pure +enum mpd_error +mpd_connection_get_error(const struct mpd_connection *connection); + +/** + * Returns the human-readable (English) libmpdclient error message. + * Calling this function is only valid if an error really occurred. + * Check with mpd_connection_get_error(). + * + * For #MPD_ERROR_SERVER, the error message is encoded in UTF-8. + * #MPD_ERROR_SYSTEM obtains its error message from the operating + * system, and thus the locale's character set (and probably language) + * is used. Keep that in mind when you print error messages. + */ +mpd_pure +const char * +mpd_connection_get_error_message(const struct mpd_connection *connection); + +/** + * Returns the error code returned from the server. Calling this + * function is only valid if mpd_connection_get_error() returned + * #MPD_ERROR_SERVER. + */ +mpd_pure +enum mpd_server_error +mpd_connection_get_server_error(const struct mpd_connection *connection); + +/** + * Returns the location of the server error, i.e. an index within the + * command list. Calling this function is only valid in a command + * list response, and if mpd_connection_get_error() returned + * #MPD_ERROR_SERVER. + * + * @since libmpdclient 2.4 + */ +mpd_pure +unsigned +mpd_connection_get_server_error_location(const struct mpd_connection *connection); + +/** + * Returns the error code from the operating system; on most operating + * systems, this is the errno value. Calling this function is only + * valid if mpd_connection_get_error() returned #MPD_ERROR_SYSTEM. + * + * May be 0 if the operating system did not specify an error code. + */ +mpd_pure +int +mpd_connection_get_system_error(const struct mpd_connection *connection); + +/** + * Attempts to recover from an error condition. This function must be + * called after a non-fatal error before you can continue using this + * object. + * + * @return true on success, false if the error is fatal and cannot be + * recovered + */ +bool +mpd_connection_clear_error(struct mpd_connection *connection); + +/** + * Returns a three-tuple containing the major, minor and patch version + * of the MPD protocol. + */ +mpd_pure +const unsigned * +mpd_connection_get_server_version(const struct mpd_connection *connection); + +/** + * Compares the MPD protocol version with the specified triple. + * + * @return -1 if the server is older, 1 if it is newer, 0 if it is + * equal + */ +mpd_pure +int +mpd_connection_cmp_server_version(const struct mpd_connection *connection, + unsigned major, unsigned minor, + unsigned patch); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/database.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/database.h new file mode 100644 index 0000000..c80c50a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/database.h @@ -0,0 +1,163 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief Database + * + * This file declares functions which query or update MPD's music + * database. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_DATABASE_H +#define MPD_DATABASE_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Get a recursive list of all directories, songs and playlist from + * MPD. They are returned without metadata. This is a rather + * expensive operation, because the response may be large. + * + * @param connection the connection to MPD + * @param path an optional base path for the query + * @return true on success, false on error + */ +bool +mpd_send_list_all(struct mpd_connection *connection, const char *path); + +/** + * Like #mpd_send_list_all(), but return metadata. This operation is + * even more expensive, because the response is larger. If it is + * larger than a configurable server-side limit, MPD may disconnect + * you. + * + * To read the response, you may use mpd_recv_entity(). + * + * @param connection the connection to MPD + * @param path an optional base path for the query + * @return true on success, false on error + */ +bool +mpd_send_list_all_meta(struct mpd_connection *connection, const char *path); + + +/** + * Get a list of all directories, songs and playlist in a directory + * from MPD, including metadata. + * + * To read the response, you may use mpd_recv_entity(). + * + * @param connection the connection to MPD + * @param path the directory to be listed + * @return true on success, false on error + */ +bool +mpd_send_list_meta(struct mpd_connection *connection, const char *path); + +/** + * Send "readcomments". Read the "comments" of a song file. This + * returns key/value pairs which can be read using mpd_recv_pair(). + * + * @param connection the connection to MPD + * @param path the relative path of the song file within the music + * directory or an arbitrary file path starting with file:/// + * @return true on success, false on error + * + * @since libmpdclient 2.9 + */ +bool +mpd_send_read_comments(struct mpd_connection *connection, const char *path); + +/** + * Instructs MPD to update the music database: find new files, remove + * deleted files, update modified files. + * + * @param connection the connection to MPD + * @param path optional path to update; if NULL, then all of the music + * directory is updated + * @return true on success, false on error + */ +bool +mpd_send_update(struct mpd_connection *connection, const char *path); + +/** + * Like mpd_send_update(), but also rescans unmodified files. + * + * @param connection the connection to MPD + * @param path optional path to update; if NULL, then all of the music + * directory is updated + * @return true on success, false on error + */ +bool +mpd_send_rescan(struct mpd_connection *connection, const char *path); + +/** + * Receives the id the of the update job which was submitted by + * mpd_send_update(). + * + * @param connection the connection to MPD + * @return a positive job id on success, 0 on error + */ +unsigned +mpd_recv_update_id(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_update() and mpd_recv_update_id(). + * + * @param connection the connection to MPD + * @param path optional path to update; if NULL, then all of the music + * directory is updated + * @return a positive job id on success, 0 on error + */ +unsigned +mpd_run_update(struct mpd_connection *connection, const char *path); + +/** + * Like mpd_run_update(), but also rescans unmodified files. + * + * @param connection the connection to MPD + * @param path optional path to update; if NULL, then all of the music + * directory is updated + * @return a positive job id on success, 0 on error + */ +unsigned +mpd_run_rescan(struct mpd_connection *connection, const char *path); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/directory.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/directory.h new file mode 100644 index 0000000..1d93ff2 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/directory.h @@ -0,0 +1,131 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_DIRECTORY_H +#define MPD_DIRECTORY_H + +#include + +#include +#include + +struct mpd_pair; +struct mpd_connection; + +/** + * \struct mpd_directory + * + * An opaque directory object. This is a container for more songs, + * directories or playlists. + */ +struct mpd_directory; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Duplicates a #mpd_directory object. + * + * @return the new object, or NULL on out of memory + */ +mpd_malloc +struct mpd_directory * +mpd_directory_dup(const struct mpd_directory *directory); + +/** + * Free memory allocated by the #mpd_directory object. + */ +void mpd_directory_free(struct mpd_directory *directory); + +/** + * Returns the path of this directory, relative to the MPD music + * directory. It does not begin with a slash. + */ +mpd_pure +const char * +mpd_directory_get_path(const struct mpd_directory *directory); + +/** + * @return the POSIX UTC time stamp of the last modification, or 0 if + * that is unknown + * + * @since libmpdclient 2.9 + */ +mpd_pure +time_t +mpd_directory_get_last_modified(const struct mpd_directory *directory); + +/** + * Begins parsing a new directory. + * + * @param pair the first pair in this directory (name must be "directory") + * @return the new #mpd_entity object, or NULL on error (out of + * memory, or pair name is not "directory") + */ +mpd_malloc +struct mpd_directory * +mpd_directory_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_directory object. + * + * @return true if the pair was parsed and added to the directory (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next directory + */ +bool +mpd_directory_feed(struct mpd_directory *directory, + const struct mpd_pair *pair); + +/** + * Receives the next directory from the MPD server. + * + * @return a #mpd_directory object, or NULL on error or if the directory list is + * finished + */ +mpd_malloc +struct mpd_directory * +mpd_recv_directory(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/entity.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/entity.h new file mode 100644 index 0000000..1f06e81 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/entity.h @@ -0,0 +1,168 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_ENTITY_H +#define MPD_ENTITY_H + +#include +#include +#include +#include + +struct mpd_pair; + +/** + * The type of a #mpd_entity object. + */ +enum mpd_entity_type { + /** + * The type of the entity received from MPD is not implemented + * in this version of libmpdclient. + */ + MPD_ENTITY_TYPE_UNKNOWN, + + /** + * A directory (#mpd_directory) containing more entities. + */ + MPD_ENTITY_TYPE_DIRECTORY, + + /** + * A song file (#mpd_song) which can be added to the playlist. + */ + MPD_ENTITY_TYPE_SONG, + + /** + * A stored playlist (#mpd_playlist). + */ + MPD_ENTITY_TYPE_PLAYLIST, +}; + +/** + * \struct mpd_entity + * + * An "entity" is an object returned by commands like "lsinfo". It is + * an object wrapping all possible entity types. + */ +struct mpd_entity; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Releases an entity. This also frees the wrapped object. + */ +void +mpd_entity_free(struct mpd_entity *entity); + +/** + * @return the type of this entity. + */ +mpd_pure +enum mpd_entity_type +mpd_entity_get_type(const struct mpd_entity *entity); + +/** + * Obtains a pointer to the #mpd_directory object enclosed by this + * #mpd_entity. Calling this function is only allowed of + * mpd_entity_get_type() has returned #MPD_ENTITY_TYPE_DIRECTORY. + * + * @return the directory object + */ +mpd_pure +const struct mpd_directory * +mpd_entity_get_directory(const struct mpd_entity *entity); + +/** + * Obtains a pointer to the #mpd_song object enclosed by this + * #mpd_entity. Calling this function is only allowed of + * mpd_entity_get_type() has returned #MPD_ENTITY_TYPE_SONG. + * + * @return the song object + */ +mpd_pure +const struct mpd_song * +mpd_entity_get_song(const struct mpd_entity *entity); + +/** + * Obtains a pointer to the #mpd_playlist object enclosed by + * this #mpd_entity. Calling this function is only allowed of + * mpd_entity_get_type() has returned #MPD_ENTITY_TYPE_PLAYLIST. + * + * @return the directory object + */ +mpd_pure +const struct mpd_playlist * +mpd_entity_get_playlist(const struct mpd_entity *entity); + +/** + * Begins parsing a new entity. + * + * @param pair the first pair in this entity + * @return the new #mpd_entity object, or NULL on error (out of memory) + */ +mpd_malloc +struct mpd_entity * +mpd_entity_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_entity object. + * + * @return true if the pair was parsed and added to the entity (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next entity + */ +bool +mpd_entity_feed(struct mpd_entity *entity, const struct mpd_pair *pair); + +/** + * Receives the next entity from the MPD server. + * + * @return an entity object, or NULL on error or if the entity list is + * finished + */ +mpd_malloc +struct mpd_entity * +mpd_recv_entity(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/error.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/error.h new file mode 100644 index 0000000..9918e09 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/error.h @@ -0,0 +1,76 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h or + * mpd/async.h instead. + */ + +#ifndef MPD_ERROR_H +#define MPD_ERROR_H + +enum mpd_error { + /** no error */ + MPD_ERROR_SUCCESS = 0, + + /** out of memory */ + MPD_ERROR_OOM, + + /** a function was called with an unrecognized or invalid + argument */ + MPD_ERROR_ARGUMENT, + + /** a function was called which is not available in the + current state of libmpdclient */ + MPD_ERROR_STATE, + + /** timeout trying to talk to mpd */ + MPD_ERROR_TIMEOUT, + + /** system error */ + MPD_ERROR_SYSTEM, + + /** unknown host */ + MPD_ERROR_RESOLVER, + + /** malformed response received from MPD */ + MPD_ERROR_MALFORMED, + + /** connection closed by mpd */ + MPD_ERROR_CLOSED, + + /** + * The server has returned an error code, which can be queried + * with mpd_connection_get_server_error(). + */ + MPD_ERROR_SERVER, +}; + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/idle.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/idle.h new file mode 100644 index 0000000..3a1aedf --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/idle.h @@ -0,0 +1,206 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_IDLE_H +#define MPD_IDLE_H + +#include + +#include + +struct mpd_pair; +struct mpd_connection; + +/** + * This enum contains bit masks for all idle events. + * + * @since libmpdclient 2.5 added support for #MPD_IDLE_STICKER, + * #MPD_IDLE_SUBSCRIPTION and #MPD_IDLE_MESSAGE. + */ +enum mpd_idle { + /** song database has been updated*/ + MPD_IDLE_DATABASE = 0x1, + + /** a stored playlist has been modified, created, deleted or + renamed */ + MPD_IDLE_STORED_PLAYLIST = 0x2, + + /** the queue has been modified */ + MPD_IDLE_QUEUE = 0x4, + + /** deprecated, don't use */ + MPD_IDLE_PLAYLIST = MPD_IDLE_QUEUE, + + /** the player state has changed: play, stop, pause, seek, ... */ + MPD_IDLE_PLAYER = 0x8, + + /** the volume has been modified */ + MPD_IDLE_MIXER = 0x10, + + /** an audio output device has been enabled or disabled */ + MPD_IDLE_OUTPUT = 0x20, + + /** options have changed: crossfade, random, repeat, ... */ + MPD_IDLE_OPTIONS = 0x40, + + /** a database update has started or finished. */ + MPD_IDLE_UPDATE = 0x80, + + /** a sticker has been modified. */ + MPD_IDLE_STICKER = 0x100, + + /** a client has subscribed to or unsubscribed from a channel */ + MPD_IDLE_SUBSCRIPTION = 0x200, + + /** a message on a subscribed channel was received */ + MPD_IDLE_MESSAGE = 0x400, +}; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Returns the name of the specified idle event. + * + * @param idle an idle event id + * @return the name, or NULL if that event is not known + */ +mpd_const +const char * +mpd_idle_name(enum mpd_idle idle); + +/** + * Parses the name of an idle event. + * + * @param name an idle event name + * @return the id, or 0 if that event is not known + */ +mpd_pure +enum mpd_idle +mpd_idle_name_parse(const char *name); + +/** + * Enters "idle" mode: MPD will stall the response until an event has + * occurred. Call mpd_send_noidle() to abort the idle mode, or + * mpd_recv_idle() to read the event mask (or synchronously wait for + * events). + */ +bool +mpd_send_idle(struct mpd_connection *connection); + +/** + * Same as mpd_send_idle(), but listen only on specific events. + * + * @param connection the connection to MPD + * @param mask a bit mask of idle events; must not be 0 + * @return a positive job id on success, 0 on error + */ +bool +mpd_send_idle_mask(struct mpd_connection *connection, enum mpd_idle mask); + +/** + * Tells MPD to leave the "idle" mode. MPD will then respond with a + * list of events which have occurred (which may be empty). Call + * mpd_recv_idle() after that. + */ +bool +mpd_send_noidle(struct mpd_connection *connection); + +/** + * Parses a "changed" pair, which is part of MPD's response to the + * "idle" command. + * + * @return an idle code, or 0 if the pair was not understood + */ +mpd_pure +enum mpd_idle +mpd_idle_parse_pair(const struct mpd_pair *pair); + +/** + * Waits until MPD sends the list of idle events and returns it in a + * bit mask. + * + * @param connection the connection to MPD + * @param disable_timeout if true, then libmpdclients temporarily + * disables the configured timeout (see mpd_connection_set_timeout()): + * this function blocks forever, until either MPD sends a response, or + * an error occurs. + * @return the event bit mask, or 0 on error or if there were no + * events + */ +enum mpd_idle +mpd_recv_idle(struct mpd_connection *connection, bool disable_timeout); + +/** + * Shortcut for mpd_send_idle() and mpd_recv_idle(). During + * mpd_recv_idle(), the configured timeout is disabled. + * + * @param connection the connection to MPD + * @return the event bit mask, or 0 on error + */ +enum mpd_idle +mpd_run_idle(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_idle_mask() and mpd_recv_idle(). During + * mpd_recv_idle(), the configured timeout is disabled. + * + * @param connection the connection to MPD + * @param mask a bit mask of idle events; must not be 0 + * @return the event bit mask, or 0 on error + */ +enum mpd_idle +mpd_run_idle_mask(struct mpd_connection *connection, enum mpd_idle mask); + +/** + * Shortcut for mpd_send_noidle() and mpd_recv_idle(). During + * mpd_recv_idle(), the configured timeout is not disabled. + * + * @param connection the connection to MPD + * @return the event bit mask, or 0 on error or if there were no + * events + */ +enum mpd_idle +mpd_run_noidle(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/list.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/list.h new file mode 100644 index 0000000..da57a16 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/list.h @@ -0,0 +1,84 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Functions for sending command lists. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_LIST_H +#define MPD_LIST_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Starts a command list, i.e. a group of pipelined commands which are + * transferred in one block. If one command fails, the rest of the + * command list is canceled. + * + * Note that there is no guarantee on atomicity. + * + * @param connection the connection to MPD + * @param discrete_ok tells MPD whether to acknowledge every list + * command with an "list_OK" response + * @return true on success + */ +bool +mpd_command_list_begin(struct mpd_connection *connection, bool discrete_ok); + +/** + * Commits the command list, i.e. makes MPD execute all commands which + * were queued. + * + * Note: there is no way to cancel a command list once it is started. + * You may however close the socket connection. + * + * @param connection the connection to MPD + * @return true on success + */ +bool +mpd_command_list_end(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/message.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/message.h new file mode 100644 index 0000000..645998f --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/message.h @@ -0,0 +1,241 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_MESSAGE_H +#define MPD_MESSAGE_H + +#include +#include + +#include + +struct mpd_pair; +/** + * \struct mpd_message + */ +struct mpd_message; +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Begins parsing a new message. + * + * @param pair the first pair in this message (name must be "channel") + * @return the new #mpd_entity object, or NULL on error (out of + * memory, or pair name is not "channel") + * + * @since libmpdclient 2.5 + */ +mpd_malloc +struct mpd_message * +mpd_message_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_message object. + * + * @return true if the pair was parsed and added to the message (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next message + * + * @since libmpdclient 2.5 + */ +bool +mpd_message_feed(struct mpd_message *output, const struct mpd_pair *pair); + +/** + * Frees a #mpd_message object. + * + * @since libmpdclient 2.5 + */ +void +mpd_message_free(struct mpd_message *message); + +/** + * Returns the channel name. + * + * @since libmpdclient 2.5 + */ +mpd_pure +const char * +mpd_message_get_channel(const struct mpd_message *message); + +/** + * Returns the message text. + * + * @since libmpdclient 2.5 + */ +mpd_pure +const char * +mpd_message_get_text(const struct mpd_message *message); + +/** + * Sends the "subscribe" command: subscribe to a message channel. + * + * @param connection the connection to MPD + * @param channel the channel name + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_subscribe(struct mpd_connection *connection, const char *channel); + +/** + * Shortcut for mpd_send_subscribe() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param channel the channel name + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_run_subscribe(struct mpd_connection *connection, const char *channel); + +/** + * Sends the "unsubscribe" command: unsubscribe from a message + * channel. + * + * @param connection the connection to MPD + * @param channel the channel name + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_unsubscribe(struct mpd_connection *connection, const char *channel); + +/** + * Shortcut for mpd_send_unsubscribe() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param channel the channel name + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_run_unsubscribe(struct mpd_connection *connection, const char *channel); + +/** + * Sends the "sendmessage" command: send a message to a channel. + * + * @param connection the connection to MPD + * @param channel the channel name + * @param text the message text + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_send_message(struct mpd_connection *connection, + const char *channel, const char *text); + +/** + * Shortcut for mpd_send_send_message() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param channel the channel name + * @param text the message text + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_run_send_message(struct mpd_connection *connection, + const char *channel, const char *text); + +/** + * Sends the "readmessages" command: send a message to a channel. + * + * @param connection the connection to MPD + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_read_messages(struct mpd_connection *connection); + +/** + * Reads the next mpd_message from the MPD response. Free the return + * value with mpd_message_free(). + * + * @return a mpd_message object on success, NULL on error or + * end-of-response + * + * @since libmpdclient 2.5 + */ +mpd_malloc +struct mpd_message * +mpd_recv_message(struct mpd_connection *connection); + +/** + * Sends the "channels" command: get a list of all channels. + * + * @param connection the connection to MPD + * @return true on success + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_channels(struct mpd_connection *connection); + +/** + * Receives the next channel name. Call this in a loop after + * mpd_send_channels(). + * + * Free the return value with mpd_return_pair(). + * + * @param connection a #mpd_connection + * @returns a "channel" pair, or NULL on error or if the end of the + * response is reached + * + * @since libmpdclient 2.5 + */ +mpd_malloc +static inline struct mpd_pair * +mpd_recv_channel_pair(struct mpd_connection *connection) +{ + return mpd_recv_pair_named(connection, "channel"); +} + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/mixer.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/mixer.h new file mode 100644 index 0000000..49521af --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/mixer.h @@ -0,0 +1,96 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Functions for manipulating MPD's mixer controls. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_MIXER_H +#define MPD_MIXER_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Sets the volume of all output devices. + * + * @param connection the connection to MPD + * @param volume the volume, an integer between 0 and 100 + * @return true on success, false on error + */ +bool +mpd_send_set_volume(struct mpd_connection *connection, unsigned volume); + +/** + * Shortcut for mpd_send_set_volume() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param volume the volume, an integer between 0 and 100 + * @return true on success, false on error + */ +bool +mpd_run_set_volume(struct mpd_connection *connection, unsigned volume); + +/** + * Changes the volume of all output devices. + * + * @param connection the connection to MPD + * @param relative_volume the relative volume, an integer between -100 and 100 + * @return true on success, false on error + * + * @since libmpdclient 2.9 + */ +bool +mpd_send_change_volume(struct mpd_connection *connection, int relative_volume); + +/** + * Shortcut for mpd_send_change_volume() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param relative_volume the relative volume, an integer between -100 and 100 + * @return true on success, false on error + * + * @since libmpdclient 2.9 + */ +bool +mpd_run_change_volume(struct mpd_connection *connection, int relative_volume); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/output.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/output.h new file mode 100644 index 0000000..7dae7e6 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/output.h @@ -0,0 +1,204 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_OUTPUT_H +#define MPD_OUTPUT_H + +#include + +#include + +struct mpd_connection; +struct mpd_pair; + +/** + * \struct mpd_output + * + * This type represents an audio output device on the MPD server. + */ +struct mpd_output; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Begins parsing a new #mpd_output. + * + * @param pair the first pair in this output (name is "outputid") + * @return the new #mpd_output object, or NULL on error (out of + * memory, or wrong pair name) + */ +mpd_malloc +struct mpd_output * +mpd_output_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_output object. + * + * @return true if the pair was parsed and added to the output (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next output + */ +bool +mpd_output_feed(struct mpd_output *output, const struct mpd_pair *pair); + +/** + * Frees a mpd_output object returned from mpd_recv_output(). + */ +void +mpd_output_free(struct mpd_output *output); + +/** + * @return the id of the specified #mpd_output object + */ +mpd_pure +unsigned +mpd_output_get_id(const struct mpd_output *output); + +/** + * @return the configured name of the specified #mpd_output object + */ +mpd_pure +const char * +mpd_output_get_name(const struct mpd_output *output); + +/** + * @return true if this output is enabled + */ +mpd_pure +bool +mpd_output_get_enabled(const struct mpd_output *output); + +/** + * Sends the "outputs" command to MPD. Call mpd_recv_output() to + * read the response. + * + * @param connection A valid and connected mpd_connection. + * @return true on success + */ +bool +mpd_send_outputs(struct mpd_connection *connection); + +/** + * Reads the next mpd_output from the MPD response. Free the return + * value with mpd_output_free(). + * + * @return a mpd_output object on success, NULL on error or + * end-of-response + */ +mpd_malloc +struct mpd_output * +mpd_recv_output(struct mpd_connection *connection); + +/** + * Sends the "enableoutput" command to MPD. + * + * @param connection A valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + */ +bool +mpd_send_enable_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Shortcut for mpd_send_enable_output() and mpd_response_finish(). + * + * @param connection A valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + */ +bool +mpd_run_enable_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Sends the "disableoutput" command to MPD. + * + * @param connection A valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + */ +bool +mpd_send_disable_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Shortcut for mpd_send_disable_output() and mpd_response_finish(). + * + * @param connection A valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + */ +bool +mpd_run_disable_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Sends the "toggleoutput" command to MPD. + * + * @param connection a valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + * + * @since libmpdclient 2.9 + */ +bool +mpd_send_toggle_output(struct mpd_connection *connection, unsigned output_id); + +/** + * Shortcut for mpd_send_toggle_output() and mpd_response_finish(). + * + * @param connection a valid and connected mpd_connection. + * @param output_id an identifier for the output device (see + * mpd_recv_output()) + * @return true on success + * + * @since libmpdclient 2.9 + */ +bool +mpd_run_toggle_output(struct mpd_connection *connection, unsigned output_id); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/pair.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/pair.h new file mode 100644 index 0000000..791627e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/pair.h @@ -0,0 +1,49 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef LIBMPDCLIENT_PAIR_H +#define LIBMPDCLIENT_PAIR_H + +/** + * A name-value pair received from the MPD server. + */ +struct mpd_pair { + /** the name of the element */ + const char *name; + + /** the value of the element */ + const char *value; +}; + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/parser.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/parser.h new file mode 100644 index 0000000..048b918 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/parser.h @@ -0,0 +1,181 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef LIBMPDCLIENT_PARSER_H +#define LIBMPDCLIENT_PARSER_H + +#include +#include + +#include + +enum mpd_parser_result { + /** + * Response line was not understood. + */ + MPD_PARSER_MALFORMED, + + /** + * MPD has returned "OK" or "list_OK" (check with + * mpd_parser_is_discrete()). + */ + MPD_PARSER_SUCCESS, + + /** + * MPD has returned "ACK" with an error code. Call + * mpd_parser_get_server_error() to get the error code. + */ + MPD_PARSER_ERROR, + + /** + * MPD has returned a name-value pair. Call + * mpd_parser_get_name() and mpd_parser_get_value(). + */ + MPD_PARSER_PAIR, +}; + +/** + * \struct mpd_parser + * + * This opaque object is a low-level parser for the MPD protocol. You + * feed it with input lines, and it provides parsed representations. + */ +struct mpd_parser; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Allocates a new mpd_parser object. Returns NULL on error (out of + * memory). + */ +mpd_malloc +struct mpd_parser * +mpd_parser_new(void); + +/** + * Frees a mpd_parser object. + */ +void +mpd_parser_free(struct mpd_parser *parser); + +/** + * Feeds a line (without the trailing newline character) received from + * MPD / mpd_async_recv_line() into the parser. + * + * Note that the line parameter is writable, because the parser will + * modify it. The functions mpd_parser_get_name() and + * mpd_parser_get_value() will return pointers inside this buffer. + * This means that after passing the line to this function, you must + * not modify or free it, until the name and value pointers are not + * used anymore. + * + * @param parser the #mpd_parser object + * @param line a line received from the MPD server + * @return a result code indicating the type of line, or error + */ +enum mpd_parser_result +mpd_parser_feed(struct mpd_parser *parser, char *line); + +/** + * Call this when mpd_parser_feed() has returned #MPD_PARSER_SUCCESS + * to find out whether this is an "OK" (false) or a "list_OK" (true) + * response. + * + * @param parser the #mpd_parser object + */ +mpd_pure +bool +mpd_parser_is_discrete(const struct mpd_parser *parser); + +/** + * Call this when mpd_parser_feed() has returned #MPD_PARSER_ERROR to + * obtain the reason for the error. + * + * @param parser the #mpd_parser object + */ +mpd_pure +enum mpd_server_error +mpd_parser_get_server_error(const struct mpd_parser *parser); + +/** + * On #MPD_PARSER_ERROR, this returns the number of the list command + * which failed. Don't call this outside of a command list. + * + * @param parser the #mpd_parser object + */ +mpd_pure +unsigned +mpd_parser_get_at(const struct mpd_parser *parser); + +/** + * On #MPD_PARSER_ERROR, this returns the human readable error message + * returned by MPD (UTF-8). + * + * This returns a pointer into the line buffer passed to + * mpd_parser_feed(). It is valid as long as the buffer is not + * freed/modified. + * + * @param parser the #mpd_parser object + */ +mpd_pure +const char * +mpd_parser_get_message(const struct mpd_parser *parser); + +/** + * On #MPD_PARSER_PAIR, this returns the name. + * + * This returns a pointer into the line buffer passed to + * mpd_parser_feed(). It is valid as long as the buffer is not + * freed/modified. + * + * @param parser the #mpd_parser object + */ +mpd_pure +const char * +mpd_parser_get_name(const struct mpd_parser *parser); + +/** + * On #MPD_PARSER_PAIR, this returns the value. + * + * This returns a pointer into the line buffer passed to + * mpd_parser_feed(). It is valid as long as the buffer is not + * freed/modified. + * + * @param parser the #mpd_parser object + */ +mpd_pure +const char * +mpd_parser_get_value(const struct mpd_parser *parser); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/password.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/password.h new file mode 100644 index 0000000..a85246e --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/password.h @@ -0,0 +1,66 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Password authentication. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_PASSWORD_H +#define MPD_PASSWORD_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Sends the password to MPD, to gain more privileges. + */ +bool +mpd_send_password(struct mpd_connection *connection, const char *password); + +/** + * Sends the password to MPD and receives its response. + * + * @return true on success, false on failure + */ +bool +mpd_run_password(struct mpd_connection *connection, const char *password); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/player.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/player.h new file mode 100644 index 0000000..70b2eae --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/player.h @@ -0,0 +1,242 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Controlling playback. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_PLAYER_H +#define MPD_PLAYER_H + +#include + +#include + +struct mpd_connection; +struct mpd_song; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Fetches the currently selected song (the song referenced by + * status->song and status->songid). + */ +bool +mpd_send_current_song(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_currentsong() and mpd_recv_song(). + * + * @param connection the connection to MPD + * @return the current song, or NULL on error or if there is no + * current song + */ +mpd_malloc +struct mpd_song * +mpd_run_current_song(struct mpd_connection *connection); + +/** + * Starts playing the current song from the beginning. + * + * @param connection the connection to MPD + */ +bool +mpd_send_play(struct mpd_connection *connection); + +bool +mpd_run_play(struct mpd_connection *connection); + +/** + * Starts playing the specified song from the beginning. + * + * @param song_pos the position of the song in the queue + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_send_play_pos(struct mpd_connection *connection, unsigned song_pos); + +bool +mpd_run_play_pos(struct mpd_connection *connection, unsigned song_pos); + +/** + * Starts playing the specified song from the beginning. + * + * @param connection the connection to MPD + * @param id the id of the song + * @return true on success, false on error + */ +bool +mpd_send_play_id(struct mpd_connection *connection, unsigned id); + +bool +mpd_run_play_id(struct mpd_connection *connection, unsigned song_id); + +bool +mpd_send_stop(struct mpd_connection *connection); + +bool +mpd_run_stop(struct mpd_connection *connection); + +/** + * Toggles the pause mode by sending "pause" without arguments. + * + * @param connection the connection to MPD + */ +bool +mpd_send_toggle_pause(struct mpd_connection *connection); + +bool +mpd_run_toggle_pause(struct mpd_connection *connection); + +bool +mpd_send_pause(struct mpd_connection *connection, bool mode); + +bool +mpd_run_pause(struct mpd_connection *connection, bool mode); + +bool +mpd_send_next(struct mpd_connection *connection); + +bool +mpd_run_next(struct mpd_connection *connection); + +bool +mpd_send_previous(struct mpd_connection *connection); + +bool +mpd_run_previous(struct mpd_connection *connection); + +/** + * Seeks the specified song. + * + * @param connection the connection to MPD + * @param song_pos the position of the song in the queue + * @param t the position within the song, in seconds + * @return true on success, false on error + */ +bool +mpd_send_seek_pos(struct mpd_connection *connection, + unsigned song_pos, unsigned t); + +bool +mpd_run_seek_pos(struct mpd_connection *connection, + unsigned song_pos, unsigned t); + +/** + * Seeks the specified song. + * + * @param connection the connection to MPD + * @param id the id of the song + * @param t the position within the song, in seconds + * @return true on success, false on error + */ +bool +mpd_send_seek_id(struct mpd_connection *connection, unsigned id, unsigned t); + +bool +mpd_run_seek_id(struct mpd_connection *connection, + unsigned song_id, unsigned t); + +bool +mpd_send_repeat(struct mpd_connection *connection, bool mode); + +bool +mpd_run_repeat(struct mpd_connection *connection, bool mode); + +bool +mpd_send_random(struct mpd_connection *connection, bool mode); + +bool +mpd_run_random(struct mpd_connection *connection, bool mode); + +bool +mpd_send_single(struct mpd_connection *connection, bool mode); + +bool +mpd_run_single(struct mpd_connection *connection, bool mode); + +bool +mpd_send_consume(struct mpd_connection *connection, bool mode); + +bool +mpd_run_consume(struct mpd_connection *connection, bool mode); + +bool +mpd_send_crossfade(struct mpd_connection *connection, unsigned seconds); + +bool +mpd_run_crossfade(struct mpd_connection *connection, unsigned seconds); + +/** + * @since libmpdclient 2.2 + */ +bool +mpd_send_mixrampdb(struct mpd_connection *connection, float db); + +/** + * @since libmpdclient 2.2 + */ +bool +mpd_run_mixrampdb(struct mpd_connection *connection, float db); + +/** + * @since libmpdclient 2.2 + */ +bool +mpd_send_mixrampdelay(struct mpd_connection *connection, float seconds); + +/** + * @since libmpdclient 2.2 + */ +bool +mpd_run_mixrampdelay(struct mpd_connection *connection, float seconds); + +/** + * @since libmpdclient 2.4 + */ +bool +mpd_send_clearerror(struct mpd_connection *connection); + +/** + * @since libmpdclient 2.4 + */ +bool +mpd_run_clearerror(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/playlist.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/playlist.h new file mode 100644 index 0000000..07bb737 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/playlist.h @@ -0,0 +1,216 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Manipulate stored playlists. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef LIBMPDCLIENT_PLAYLIST_H +#define LIBMPDCLIENT_PLAYLIST_H + +#include + +#include +#include + +struct mpd_pair; +struct mpd_connection; + +/** + * \struct mpd_playlist + * + * An opaque representation for a playlist stored in MPD's + * playlist directory. Use the functions provided by this header to + * access the object's attributes. + */ +struct mpd_playlist; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Free memory allocated by the #mpd_playlist object. + */ +void +mpd_playlist_free(struct mpd_playlist *playlist); + +/** + * Duplicates a #mpd_playlist object. + * + * @return the new object, or NULL on out of memory + */ +mpd_malloc +struct mpd_playlist * +mpd_playlist_dup(const struct mpd_playlist *playlist); + +/** + * Returns the path name of this playlist file. It does not begin + * with a slash. + */ +mpd_pure +const char * +mpd_playlist_get_path(const struct mpd_playlist *playlist); + +/** + * @return the POSIX UTC time stamp of the last modification, or 0 if + * that is unknown + */ +mpd_pure +time_t +mpd_playlist_get_last_modified(const struct mpd_playlist *playlist); + +/** + * Begins parsing a new playlist. + * + * @param pair the first pair in this playlist (name must be + * "playlist") + * @return the new #mpd_entity object, or NULL on error (out of + * memory, or pair name is not "playlist") + */ +mpd_malloc +struct mpd_playlist * +mpd_playlist_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_playlist object. + * + * @return true if the pair was parsed and added to the playlist (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next playlist + */ +bool +mpd_playlist_feed(struct mpd_playlist *playlist, const struct mpd_pair *pair); + +/** + * Obtain a list of stored playlists. + * + * @param connection the connection to MPD + * @return true on success, false on error + * + * @since libmpdclient 2.5 + */ +bool +mpd_send_list_playlists(struct mpd_connection *connection); + +/** + * Receives the next playlist from the MPD server. + * + * @return a #mpd_playlist object, or NULL on error or if the playlist list is + * finished + */ +mpd_malloc +struct mpd_playlist * +mpd_recv_playlist(struct mpd_connection *connection); + +/** + * List the content of a stored playlist. + * + * @param connection the connection to MPD + * @param name the name of the playlist + * @return true on success, false on error + */ +bool +mpd_send_list_playlist(struct mpd_connection *connection, const char *name); + +/** + * List the content, with full metadata, of a stored playlist. + * + * @param connection the connection to MPD + * @param name the name of the playlist + * @return true on success, false on error + */ +bool +mpd_send_list_playlist_meta(struct mpd_connection *connection, const char *name); + +bool +mpd_send_playlist_clear(struct mpd_connection *connection, const char *name); + +bool +mpd_run_playlist_clear(struct mpd_connection *connection, const char *name); + +bool +mpd_send_playlist_add(struct mpd_connection *connection, const char *name, + const char *path); + +bool +mpd_run_playlist_add(struct mpd_connection *connection, + const char *name, const char *path); + +bool +mpd_send_playlist_move(struct mpd_connection *connection, const char *name, + unsigned from, unsigned to); + +bool +mpd_send_playlist_delete(struct mpd_connection *connection, const char *name, + unsigned pos); + +bool +mpd_run_playlist_delete(struct mpd_connection *connection, + const char *name, unsigned pos); + +bool +mpd_send_save(struct mpd_connection *connection, const char *name); + +bool +mpd_run_save(struct mpd_connection *connection, const char *name); + +bool +mpd_send_load(struct mpd_connection *connection, const char *name); + +bool +mpd_run_load(struct mpd_connection *connection, const char *name); + +bool +mpd_send_rename(struct mpd_connection *connection, + const char *from, const char *to); + +bool +mpd_run_rename(struct mpd_connection *connection, + const char *from, const char *to); + +bool +mpd_send_rm(struct mpd_connection *connection, const char *name); + +bool +mpd_run_rm(struct mpd_connection *connection, const char *name); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/protocol.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/protocol.h new file mode 100644 index 0000000..6585d19 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/protocol.h @@ -0,0 +1,57 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h or + * mpd/parser.h instead. + */ + +#ifndef MPD_PROTOCOL_H +#define MPD_PROTOCOL_H + +enum mpd_server_error { + MPD_SERVER_ERROR_UNK = -1, + + MPD_SERVER_ERROR_NOT_LIST = 1, + MPD_SERVER_ERROR_ARG = 2, + MPD_SERVER_ERROR_PASSWORD = 3, + MPD_SERVER_ERROR_PERMISSION = 4, + MPD_SERVER_ERROR_UNKNOWN_CMD = 5, + + MPD_SERVER_ERROR_NO_EXIST = 50, + MPD_SERVER_ERROR_PLAYLIST_MAX = 51, + MPD_SERVER_ERROR_SYSTEM = 52, + MPD_SERVER_ERROR_PLAYLIST_LOAD = 53, + MPD_SERVER_ERROR_UPDATE_ALREADY = 54, + MPD_SERVER_ERROR_PLAYER_SYNC = 55, + MPD_SERVER_ERROR_EXIST = 56, +}; + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/queue.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/queue.h new file mode 100644 index 0000000..357a8e0 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/queue.h @@ -0,0 +1,542 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Manipulate the queue (current playlist). + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_QUEUE_H +#define MPD_QUEUE_H + +#include + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Sends the "playlistinfo" command: list all songs in the queue + * including meta information. + */ +bool +mpd_send_list_queue_meta(struct mpd_connection *connection); + +/** + * Like mpd_send_list_queue_meta(), but specifies a (position) range. + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_list_queue_range_meta(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Requests information (including tags) about one song in the + * playlist (command "playlistid"). + * + * @param connection the connection to MPD + * @param pos the position of the requested song + */ +bool +mpd_send_get_queue_song_pos(struct mpd_connection *connection, unsigned pos); + +/** + * Shortcut for mpd_send_get_queue_song_pos() and mpd_recv_song(). + * + * @param connection the connection to MPD + * @param pos the position of the requested song + * @return the song at the specified position, or NULL on error + */ +mpd_malloc +struct mpd_song * +mpd_run_get_queue_song_pos(struct mpd_connection *connection, unsigned pos); + +/** + * Requests information (including tags) about one song in the + * playlist (command "playlistid"). + * + * @param connection the connection to MPD + * @param id the id of the requested song + */ +bool +mpd_send_get_queue_song_id(struct mpd_connection *connection, unsigned id); + +/** + * Shortcut for mpd_send_get_queue_song_id() and mpd_recv_song(). + * + * @param connection the connection to MPD + * @param id the id of the requested song + * @return the song at the specified id, or NULL on error + */ +mpd_malloc +struct mpd_song * +mpd_run_get_queue_song_id(struct mpd_connection *connection, unsigned id); + +/** + * Request the queue changes from MPD since the specified version, + * including tags. The MPD command is called "plchanges". + * + * @param connection the connection to MPD + * @param version The playlist version you want the diff with. + * @return true on success, false on error + */ +bool +mpd_send_queue_changes_meta(struct mpd_connection *connection, + unsigned version); + +/** + * A more bandwidth efficient version of the + * mpd_send_queue_changes_meta(). It only returns the position and id + * of changed songs. The MPD command is called "plchangesposid". + * + * @param connection A valid and connected mpd_connection. + * @param version The playlist version you want the diff with. + * @return true on success, false on error + */ +bool +mpd_send_queue_changes_brief(struct mpd_connection *connection, + unsigned version); + +/** + * Receives a response element of mpd_send_queue_changes_brief(). + * + * @param connection A valid and connected mpd_connection. + * @param position_r reference to the position of the changed song + * @param id_r reference to the id of the changed song + * @return true on success, false on error or if there are no more + * changes in this response + */ +bool +mpd_recv_queue_change_brief(struct mpd_connection *connection, + unsigned *position_r, unsigned *id_r); + +/** + * Appends a song to the playlist. + */ +bool +mpd_send_add(struct mpd_connection *connection, const char *file); + +/** + * Shortcut for mpd_send_add() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param uri the URI of the song to be added + * @return true on success, false on error + */ +bool +mpd_run_add(struct mpd_connection *connection, const char *uri); + +/** + * Appends a song to the playlist, and returns its id. + */ +bool +mpd_send_add_id(struct mpd_connection *connection, const char *file); + +/** + * Inserts a song into the playlist, and returns its id. + * + * @param connection the connection to MPD + * @param uri the URI of the song to be added + * @param to the desired position of the song + * @return true on success, false on error + */ +bool +mpd_send_add_id_to(struct mpd_connection *connection, const char *uri, + unsigned to); + +/** + * Returns the id of the new song in the playlist. To be called after + * mpd_send_add_id(). + * + * @return the new song id, -1 on error or if MPD did not send an id + */ +int +mpd_recv_song_id(struct mpd_connection *connection); + +/** + * Executes the "addid" command and reads the response. + * + * @return the new song id, -1 on error or if MPD did not send an id + */ +int +mpd_run_add_id(struct mpd_connection *connection, const char *file); + +/** + * Executes the "addid" command and reads the response. + * + * @param connection the connection to MPD + * @param uri the URI of the song to be added + * @param to the desired position of the song + * @return the new song id, -1 on error or if MPD did not send an id + */ +int +mpd_run_add_id_to(struct mpd_connection *connection, const char *uri, + unsigned to); + +/** + * Deletes a song from the queue. + * + * @param connection the connection to MPD + * @param pos the position of the song to be deleted + */ +bool +mpd_send_delete(struct mpd_connection *connection, unsigned pos); + +/** + * Shortcut for mpd_send_delete() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param pos the position of the song to be deleted + * @return true on success, false on error + */ +bool +mpd_run_delete(struct mpd_connection *connection, unsigned pos); + +/** + * Deletes songs from the queue. + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_delete_range(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Shortcut for mpd_send_delete_range() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_run_delete_range(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Deletes a song from the queue. + * + * @param connection the connection to MPD + * @param id the id of the song to be deleted + */ +bool +mpd_send_delete_id(struct mpd_connection *connection, unsigned id); + +/** + * Shortcut for mpd_send_delete_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param id the id of the song to be deleted + * @return true on success, false on error + */ +bool +mpd_run_delete_id(struct mpd_connection *connection, unsigned id); + +/** + * Shuffles the queue. + * + * @param connection the connection to MPD + */ +bool +mpd_send_shuffle(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_shuffle() and mpd_response_finish(). + * + * @param connection the connection to MPD + */ +bool +mpd_run_shuffle(struct mpd_connection *connection); + +/** + * Shuffles a range within the queue. + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_shuffle_range(struct mpd_connection *connection, unsigned start, unsigned end); + +/** + * Shortcut for mpd_send_shuffle_range() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_run_shuffle_range(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Clear the queue. + * + * @param connection the connection to MPD + */ +bool +mpd_send_clear(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_clear() and mpd_response_finish(). + * + * @param connection the connection to MPD + */ +bool +mpd_run_clear(struct mpd_connection *connection); + +/** + * Moves a song within the queue. + * + * @param connection the connection to MPD + * @param from the source song position + * @param to the new position of the song + */ +bool +mpd_send_move(struct mpd_connection *connection, unsigned from, unsigned to); + +/** + * Shortcut for mpd_send_move() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param from the source song position + * @param to the new position of the song + */ +bool +mpd_run_move(struct mpd_connection *connection, unsigned from, unsigned to); + +/** + * Moves a song within the queue. + * + * @param connection the connection to MPD + * @param from the source song id + * @param to the new position of the song (not an id!) + */ +bool +mpd_send_move_id(struct mpd_connection *connection, unsigned from, unsigned to); + +/** + * Shortcut for mpd_send_move_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param from the source song id + * @param to the new position of the song (not an id!) + */ +bool +mpd_run_move_id(struct mpd_connection *connection, unsigned from, unsigned to); + +/** + * Moves a range of songs within the queue. + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @param to the new position of the song range + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_move_range(struct mpd_connection *connection, + unsigned start, unsigned end, unsigned to); + +/** + * Shortcut for mpd_send_move_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * @param to the new position of the song range + * @return true on success, false on error + * + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_run_move_range(struct mpd_connection *connection, + unsigned start, unsigned end, unsigned to); + +/** + * Swap the position of two songs in the queue. + * + * @param connection the connection to MPD + * @param pos1 the position of one song + * @param pos2 the position of the other song + */ +bool +mpd_send_swap(struct mpd_connection *connection, unsigned pos1, unsigned pos2); + +/** + * Shortcut for mpd_send_swap() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param pos1 the position of one song + * @param pos2 the position of the other song + */ +bool +mpd_run_swap(struct mpd_connection *connection, unsigned pos1, unsigned pos2); + +/** + * Swap the position of two songs in the queue. + * + * @param connection the connection to MPD + * @param id1 the id of one song + * @param id2 the id of the other song + */ +bool +mpd_send_swap_id(struct mpd_connection *connection, unsigned id1, unsigned id2); + +/** + * Shortcut for mpd_send_swap_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param id1 the id of one song + * @param id2 the id of the other song + */ +bool +mpd_run_swap_id(struct mpd_connection *connection, unsigned id1, unsigned id2); + +/** + * Change the priority of the specified song. + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param position the position of the song + * + * @since libmpdclient 2.6 + */ +bool +mpd_send_prio(struct mpd_connection *connection, int priority, + unsigned position); + +/** + * Shortcut for mpd_send_prio() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param position the position of the song + * + * @since libmpdclient 2.6 + */ +bool +mpd_run_prio(struct mpd_connection *connection, int priority, + unsigned position); + +/** + * Change the priority of a song range. + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * + * @since libmpdclient 2.6 + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_send_prio_range(struct mpd_connection *connection, int priority, + unsigned start, unsigned end); + +/** + * Shortcut for mpd_send_prio_range() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param start the start position of the range (including) + * @param end the end position of the range (excluding); the special + * value "(unsigned)-1" makes the end of the range open + * + * @since libmpdclient 2.6 + * @since libmpdclient 2.8 added support for "(unsigned)-1" + */ +bool +mpd_run_prio_range(struct mpd_connection *connection, int priority, + unsigned start, unsigned end); + +/** + * Change the priority of the specified song. + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param id the id of the song + * + * @since libmpdclient 2.6 + */ +bool +mpd_send_prio_id(struct mpd_connection *connection, int priority, + unsigned id); + +/** + * Shortcut for mpd_send_prio_id() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param priority a number between 0 and 255 + * @param id the id of the song + * + * @since libmpdclient 2.6 + */ +bool +mpd_run_prio_id(struct mpd_connection *connection, int priority, + unsigned id); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/recv.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/recv.h new file mode 100644 index 0000000..a078162 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/recv.h @@ -0,0 +1,88 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Receiving response lines from MPD. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_RECV_H +#define MPD_RECV_H + +#include + +struct mpd_pair; +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Reads the next #mpd_pair from the server. Returns NULL if there + * are no more pairs. + * + * The caller must dispose the pair with either mpd_return_pair() or + * mpd_enqueue_pair(). + */ +mpd_malloc +struct mpd_pair * +mpd_recv_pair(struct mpd_connection *connection); + +/** + * Same as mpd_recv_pair(), but discards all pairs not matching the + * specified name. + */ +mpd_malloc +struct mpd_pair * +mpd_recv_pair_named(struct mpd_connection *connection, const char *name); + +/** + * Indicates that the pair object is not needed anymore, and can be + * freed. You must free the previous #mpd_pair object before calling + * mpd_recv_pair() again. + */ +void +mpd_return_pair(struct mpd_connection *connection, struct mpd_pair *pair); + +/** + * Unreads a #mpd_pair. You may unread only the one pair you just got + * from mpd_recv_pair(). Unreading the "NULL" pair is allowed, to + * allow you to call mpd_recv_pair() again at the end of a response. + */ +void +mpd_enqueue_pair(struct mpd_connection *connection, struct mpd_pair *pair); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/response.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/response.h new file mode 100644 index 0000000..9627da8 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/response.h @@ -0,0 +1,72 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_RESPONSE_H +#define MPD_RESPONSE_H + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Finishes the response and checks if the command was successful. If + * there are data pairs left, they are discarded. + * + * @return true on success, false on error + */ +bool +mpd_response_finish(struct mpd_connection *connection); + +/** + * Finishes the response of the current list command. If there are + * data pairs left, they are discarded. + * + * @return true on success, false on error + */ +bool +mpd_response_next(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/search.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/search.h new file mode 100644 index 0000000..bb137d2 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/search.h @@ -0,0 +1,254 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Search songs in the database or the queue. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_DB_H +#define MPD_DB_H + +#include +#include +#include + +#include +#include + +/** + * This type is not yet used, it is reserved for a future protocol + * extension which will allow us to specify a comparison operator for + * constraints. + */ +enum mpd_operator { + /** + * The default search operator. If "exact" was passed as + * "true", then it means "full string comparison"; if false, + * then it means "search for substring". + */ + MPD_OPERATOR_DEFAULT, +}; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Search for songs in the database. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the search command with mpd_search_commit(), and read the + * response items with mpd_recv_song(). + * + * @param connection the connection to MPD + * @param exact if to match exact + * @return true on success, false on error + */ +bool +mpd_search_db_songs(struct mpd_connection *connection, bool exact); + +/** + * Search for songs in the database and adds the result to the queue. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the search command with mpd_search_commit(). + * + * @param connection the connection to MPD + * @param exact if to match exact (only "true" supported by MPD 0.16) + * @return true on success, false on error + */ +bool +mpd_search_add_db_songs(struct mpd_connection *connection, bool exact); + +/** + * Search for songs in the queue. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the search command with mpd_search_commit(), and read the + * response items with mpd_recv_song(). + * + * @param connection the connection to MPD + * @param exact if to match exact + * @return true on success, false on error + */ +bool +mpd_search_queue_songs(struct mpd_connection *connection, bool exact); + +/** + * Obtains a list of unique tag values from the database. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the search command with mpd_search_commit(), and read the + * response items with mpd_recv_pair_tag(). + * + * @param connection the connection to MPD + * @param type The type of the tags to search for + * @return true on success, false on error + */ +bool +mpd_search_db_tags(struct mpd_connection *connection, enum mpd_tag_type type); + +/** + * Gathers statistics on a set of songs in the database. + * Constraints may be specified with mpd_search_add_tag_constraint(). + * Send the command with mpd_search_commit(), and read the response + * with mpd_recv_stats(). + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool mpd_count_db_songs(struct mpd_connection *connection); + +/** + * Limit the search to a certain directory. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param value the URI relative to the music directory + * @return true on success, false on error + * + * @since libmpdclient 2.9 + */ +bool +mpd_search_add_base_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value); + +/** + * Add a constraint on the song's URI. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param value The value of the constraint + * @return true on success, false on error + */ +bool +mpd_search_add_uri_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value); + +/** + * Add a constraint to a search limiting the value of a tag. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param type The tag type of the constraint + * @param value The value of the constraint + * @return true on success, false on error + */ +bool +mpd_search_add_tag_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + enum mpd_tag_type type, + const char *value); + +/** + * Add a constraint to a search, search for a value in any tag. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param value The value of the constraint + * @return true on success, false on error + */ +bool +mpd_search_add_any_tag_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + const char *value); + +/** + * Limit the search to files modified after the given time stamp. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param value the reference time stamp + * @return true on success, false on error + * + * @since libmpdclient 2.10 + */ +bool +mpd_search_add_modified_since_constraint(struct mpd_connection *connection, + enum mpd_operator oper, + time_t value); + +/** + * Request only a portion of the result set. + * + * @param connection a #mpd_connection + * @param oper reserved, pass #MPD_OPERATOR_DEFAULT + * @param type The tag type of the constraint + * @param value The value of the constraint + * @return true on success, false on error + * + * @since libmpdclient 2.10 + */ +bool +mpd_search_add_window(struct mpd_connection *connection, + unsigned start, unsigned end); + +/** + * Starts the real search with constraints added with + * mpd_search_add_constraint(). + * + * @param connection the connection to MPD + * @return true on success, false on error + */ +bool +mpd_search_commit(struct mpd_connection *connection); + +/** + * Cancels the search request before you have called + * mpd_search_commit(). Call this to clear the current search + * request. + * + * @param connection the connection to MPD + */ +void +mpd_search_cancel(struct mpd_connection *connection); + +/** + * Same as mpd_recv_pair_named(), but the pair name is specified as + * #mpd_tag_type. + * + * @param connection the connection to MPD + * @param type the tag type you are looking for + * @return a pair, or NULL on error or if there are no more matching + * pairs in this response + */ +mpd_malloc +struct mpd_pair * +mpd_recv_pair_tag(struct mpd_connection *connection, enum mpd_tag_type type); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/send.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/send.h new file mode 100644 index 0000000..35977b1 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/send.h @@ -0,0 +1,64 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef LIBMPDCLIENT_SEND_H +#define LIBMPDCLIENT_SEND_H + +#include + +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Sends a command with arguments to the MPD server. The argument + * list must be terminated with a NULL. + * + * @param connection the connection to the MPD server + * @param command the command to be sent + * @return true on success + */ +mpd_sentinel +bool +mpd_send_command(struct mpd_connection *connection, const char *command, ...); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/settings.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/settings.h new file mode 100644 index 0000000..10a2825 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/settings.h @@ -0,0 +1,123 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Library to determine connection settings prior to calling + * mpd_connection_new(). + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_SETTINGS_H +#define MPD_SETTINGS_H + +#include + +/** + * \struct mpd_settings + * + * An object which describes configurable connection settings. + */ +struct mpd_settings; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Creates a new #mpd_settings object. The values which are not + * passed by the caller are taken from environment variables. + * + * @param host the server's host name, IP address or Unix socket path. + * An address starting with '@' denotes an "abstract socket". + * NULL is allowed here, which will connect to the default host + * (using the MPD_HOST environment variable if present). + * @param port the TCP port to connect to, 0 for default port (using + * the MPD_PORT environment variable if present). If "host" is a Unix + * socket path, this parameter is ignored. + * @param timeout_ms the timeout in milliseconds, 0 for the default + * timeout (the environment variable MPD_TIMEOUT may specify a timeout + * in seconds) + * @param reserved reserved for future use, pass NULL + * @param password the password, or NULL to use the default (MPD_HOST + * before "@") + * @return a #mpd_settings object or NULL if out of memory + * + * @since libmpdclient 2.4 + */ +struct mpd_settings * +mpd_settings_new(const char *host, unsigned port, unsigned timeout_ms, + const char *reserved, const char *password); + +/** + * Releases a #mpd_settings object. + * + * @since libmpdclient 2.4 + */ +void +mpd_settings_free(struct mpd_settings *settings); + +/** + * Returns the host name (without password/port), or NULL if unknown. + * + * @since libmpdclient 2.4 + */ +const char * +mpd_settings_get_host(const struct mpd_settings *settings); + +/** + * Returns the port number, or 0 if not applicable. + * + * @since libmpdclient 2.4 + */ +unsigned +mpd_settings_get_port(const struct mpd_settings *settings); + +/** + * Returns the timeout in milliseconds, or 0 if unknown. + * + * @since libmpdclient 2.4 + */ +unsigned +mpd_settings_get_timeout_ms(const struct mpd_settings *settings); + +/** + * Returns the password, or NULL if none was configured. + * + * @since libmpdclient 2.4 + */ +const char * +mpd_settings_get_password(const struct mpd_settings *settings); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/song.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/song.h new file mode 100644 index 0000000..bc9f377 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/song.h @@ -0,0 +1,222 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_SONG_H +#define MPD_SONG_H + +#include +#include + +#include +#include + +struct mpd_pair; +struct mpd_connection; + +/** + * \struct mpd_song + * + * An opaque representation for a song in MPD's database or playlist. + * Use the functions provided by this header to access the object's + * attributes. + */ +struct mpd_song; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Free memory allocated by the #mpd_song object. + */ +void mpd_song_free(struct mpd_song *song); + +/** + * Duplicates the specified #mpd_song object. + * + * @returns the copy, or NULL if out of memory + */ +mpd_malloc +struct mpd_song * +mpd_song_dup(const struct mpd_song *song); + +/** + * Returns the URI of the song. This is either a path relative to the + * MPD music directory (without leading slash), or an URL with a + * scheme, e.g. a HTTP URL for a radio stream. + */ +mpd_pure +const char * +mpd_song_get_uri(const struct mpd_song *song); + +/** + * Queries a tag value. + * + * @param song the song object + * @param type the tag type + * @param idx pass 0 to get the first value for this tag type. This + * argument may be used to iterate all values, until this function + * returns NULL + * @return the tag value, or NULL if this tag type (or this index) + * does not exist + */ +mpd_pure +const char * +mpd_song_get_tag(const struct mpd_song *song, + enum mpd_tag_type type, unsigned idx); + +/** + * Returns the duration of this song in seconds. 0 means the duration + * is unknown. + */ +mpd_pure +unsigned +mpd_song_get_duration(const struct mpd_song *song); + +/** + * Returns the duration of this song in milliseconds. 0 means the + * duration is unknown. + * + * @since libmpdclient 2.10 + */ +mpd_pure +unsigned +mpd_song_get_duration_ms(const struct mpd_song *song); + +/** + * Returns the start of the virtual song within the physical file in + * seconds. + * + * @since libmpdclient 2.3 + */ +mpd_pure +unsigned +mpd_song_get_start(const struct mpd_song *song); + +/** + * Returns the end of the virtual song within the physical file in + * seconds. Zero means that the physical song file is played to the + * end. + * + * @since libmpdclient 2.3 + */ +mpd_pure +unsigned +mpd_song_get_end(const struct mpd_song *song); + +/** + * @return the POSIX UTC time stamp of the last modification, or 0 if + * that is unknown + */ +mpd_pure +time_t +mpd_song_get_last_modified(const struct mpd_song *song); + +/** + * Sets the position within the queue. This value is not used for + * songs which are not in the queue. + * + * This function is useful when applying the values returned by + * mpd_recv_queue_change_brief(). + */ +void +mpd_song_set_pos(struct mpd_song *song, unsigned pos); + +/** + * Returns the position of this song in the queue. The value is + * undefined if you did not obtain this song from the queue. + */ +mpd_pure +unsigned +mpd_song_get_pos(const struct mpd_song *song); + +/** + * Returns the id of this song in the playlist. The value is + * undefined if you did not obtain this song from the queue. + */ +mpd_pure +unsigned +mpd_song_get_id(const struct mpd_song *song); + +/** + * Returns the priority of this song in the playlist. The value is + * undefined if you did not obtain this song from the queue. + * + * @since libmpdclient 2.8 + */ +mpd_pure +unsigned +mpd_song_get_prio(const struct mpd_song *song); + +/** + * Begins parsing a new song. + * + * @param pair the first pair in this song (name must be "file") + * @return the new #mpd_entity object, or NULL on error (out of + * memory, or pair name is not "file") + */ +mpd_malloc +struct mpd_song * +mpd_song_begin(const struct mpd_pair *pair); + +/** + * Parses the pair, adding its information to the specified + * #mpd_song object. + * + * @return true if the pair was parsed and added to the song (or if + * the pair was not understood and ignored), false if this pair is the + * beginning of the next song + */ +bool +mpd_song_feed(struct mpd_song *song, const struct mpd_pair *pair); + +/** + * Receives the next song from the MPD server. + * + * @return a #mpd_song object, or NULL on error or if the song list is + * finished + */ +mpd_malloc +struct mpd_song * +mpd_recv_song(struct mpd_connection *connection); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/stats.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/stats.h new file mode 100644 index 0000000..a8a1fc3 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/stats.h @@ -0,0 +1,163 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_STATS_H +#define MPD_STATS_H + +#include + +#include + +struct mpd_connection; +struct mpd_pair; + +/** + * \struct mpd_stats + * + * An opaque object representing MPD's response to the "stats" + * command. To release this object, call mpd_stats_free(). + */ +struct mpd_stats; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Send the "stats" command to MPD. + * + * @return true on success + */ +bool +mpd_send_stats(struct mpd_connection *connection); + +/** + * Begins parsing server stats: creates a new empty #mpd_stats object. + * Free it with mpd_stats_free(). + * + * @return the newly allocated #mpd_stats object, or NULL if out of + * memory + */ +mpd_malloc +struct mpd_stats * +mpd_stats_begin(void); + +/** + * Parses the pair, adding its information to the specified #mpd_stats + * object. + */ +void +mpd_stats_feed(struct mpd_stats *status, const struct mpd_pair *pair); + +/** + * Reads the "stats" response from MPD. + * + * @return a #mpd_stats object, or NULL on error + */ +mpd_malloc +struct mpd_stats * +mpd_recv_stats(struct mpd_connection *connection); + +/** + * Shortcut for mpd_send_stats() and mpd_recv_stats(). + */ +mpd_malloc +struct mpd_stats * +mpd_run_stats(struct mpd_connection *connection); + +/** + * Frees a #mpd_stats object. + */ +void mpd_stats_free(struct mpd_stats * stats); + +/** + * @return the number of distinct artists in MPD's database, or 0 if + * unknown + */ +mpd_pure +unsigned +mpd_stats_get_number_of_artists(const struct mpd_stats * stats); + +/** + * @return the number of distinct album names in MPD's database, or 0 + * if unknown + */ +mpd_pure +unsigned +mpd_stats_get_number_of_albums(const struct mpd_stats * stats); + +/** + * @return the total number of song files in MPD's database, or 0 if + * unknown + */ +mpd_pure +unsigned +mpd_stats_get_number_of_songs(const struct mpd_stats * stats); + +/** + * @return the uptime of MPD in seconds, or 0 if unknown + */ +mpd_pure +unsigned long mpd_stats_get_uptime(const struct mpd_stats * stats); + +/** + * @return the UNIX time stamp of the last database update, or 0 if + * unknown + */ +mpd_pure +unsigned long mpd_stats_get_db_update_time(const struct mpd_stats * stats); + +/** + * @return the accumulated time MPD was playing music since the + * process was started, or 0 if unknown + */ +mpd_pure +unsigned long mpd_stats_get_play_time(const struct mpd_stats * stats); + +/** + * @return the accumulated duration of all songs in the database, or 0 + * if unknown + */ +mpd_pure +unsigned long mpd_stats_get_db_play_time(const struct mpd_stats * stats); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/status.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/status.h new file mode 100644 index 0000000..24b3ad9 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/status.h @@ -0,0 +1,309 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_STATUS_H +#define MPD_STATUS_H + +#include + +#include + +/** + * MPD's playback state. + */ +enum mpd_state { + /** no information available */ + MPD_STATE_UNKNOWN = 0, + + /** not playing */ + MPD_STATE_STOP = 1, + + /** playing */ + MPD_STATE_PLAY = 2, + + /** playing, but paused */ + MPD_STATE_PAUSE = 3, +}; + +struct mpd_connection; +struct mpd_pair; +struct mpd_audio_format; + +/** + * \struct mpd_status + * + * Holds information about MPD's status. + */ +struct mpd_status; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Begins parsing the server status: creates a new empty #mpd_status + * object. Free it with mpd_status_free(). + * + * @return the newly allocated #mpd_status object, or NULL if out of + * memory + */ +mpd_malloc +struct mpd_status * +mpd_status_begin(void); + +/** + * Parses the pair, adding its information to the specified + * #mpd_status object. + */ +void +mpd_status_feed(struct mpd_status *status, const struct mpd_pair *pair); + +/** + * Sends the "status" command to MPD. Call mpd_recv_status() to read + * the response. + * + * @return true on success + */ +bool +mpd_send_status(struct mpd_connection *connection); + +/** + * Receives a #mpd_status object from the server. + * + * @return the received #mpd_status object, or NULL on error + */ +mpd_malloc +struct mpd_status * +mpd_recv_status(struct mpd_connection *connection); + +/** + * Executes the "status" command and reads the response. + * + * @return the #mpd_status object returned by the server, or NULL on + * error + */ +mpd_malloc +struct mpd_status * +mpd_run_status(struct mpd_connection *connection); + +/** + * Releases a #mpd_status object. + */ +void mpd_status_free(struct mpd_status * status); + +/** + * Returns the current volume: 0-100, or -1 when there is no volume + * support. + */ +mpd_pure +int mpd_status_get_volume(const struct mpd_status *status); + +/** + * Returns true if repeat mode is on. + */ +mpd_pure +bool +mpd_status_get_repeat(const struct mpd_status *status); + +/** + * Returns true if random mode is on. + */ +mpd_pure +bool +mpd_status_get_random(const struct mpd_status *status); + +/** + * Returns true if single mode is on. + */ +mpd_pure +bool +mpd_status_get_single(const struct mpd_status *status); + +/** + * Returns true if consume mode is on. + */ +mpd_pure +bool +mpd_status_get_consume(const struct mpd_status *status); + +/** + * Returns the number of songs in the queue. If MPD did not + * specify that, this function returns 0. + */ +mpd_pure +unsigned +mpd_status_get_queue_length(const struct mpd_status *status); + +/** + * Returns queue version number. You may use this to determine + * when the queue has changed since you have last queried it. + */ +mpd_pure +unsigned +mpd_status_get_queue_version(const struct mpd_status *status); + +/** + * Returns the state of the player: either stopped, playing or paused. + */ +mpd_pure +enum mpd_state +mpd_status_get_state(const struct mpd_status *status); + +/** + * Returns crossfade setting in seconds. 0 means crossfading is + * disabled. + */ +mpd_pure +unsigned +mpd_status_get_crossfade(const struct mpd_status *status); + +/** + * Returns mixrampdb setting in db. + * + * @since libmpdclient 2.2 + */ +mpd_pure +float +mpd_status_get_mixrampdb(const struct mpd_status *status); + +/** + * Returns mixrampdelay setting in seconds. Negative means mixramp is + * disabled. + * + * @since libmpdclient 2.2 + */ +mpd_pure +float +mpd_status_get_mixrampdelay(const struct mpd_status *status); + +/** + * Returns the position of the currently playing song in the queue + * (beginning with 0) if a song is currently selected (always the case when + * state is PLAY or PAUSE). If there is no current song, -1 is returned. + */ +mpd_pure +int +mpd_status_get_song_pos(const struct mpd_status *status); + +/** + * Returns the id of the current song. If there is no current song, + * -1 is returned. + */ +mpd_pure +int +mpd_status_get_song_id(const struct mpd_status *status); + +/** + * The same as mpd_status_get_next_song_pos, but for the next song to be + * played. + * + * @since libmpdclient 2.7 + */ +mpd_pure +int +mpd_status_get_next_song_pos(const struct mpd_status *status); + +/** + * Returns the id of the next song to be played. If it is not known, -1 is + * returned. + * + * @since libmpdclient 2.7 + */ +mpd_pure +int +mpd_status_get_next_song_id(const struct mpd_status *status); + +/** + * Returns time in seconds that have elapsed in the currently playing/paused + * song + */ +mpd_pure +unsigned +mpd_status_get_elapsed_time(const struct mpd_status *status); + +/** + * Returns time in milliseconds that have elapsed in the currently + * playing/paused song. + * + * @since libmpdclient 2.1 + */ +mpd_pure +unsigned +mpd_status_get_elapsed_ms(const struct mpd_status *status); + +/** + * Returns the length in seconds of the currently playing/paused song + */ +mpd_pure +unsigned +mpd_status_get_total_time(const struct mpd_status *status); + +/** + * Returns current bit rate in kbps. 0 means unknown. + */ +mpd_pure +unsigned +mpd_status_get_kbit_rate(const struct mpd_status *status); + +/** + * Returns audio format which MPD is currently playing. May return + * NULL if MPD is not playing or if the audio format is unknown. + */ +mpd_pure +const struct mpd_audio_format * +mpd_status_get_audio_format(const struct mpd_status *status); + +/** + * Returns 1 if mpd is updating, 0 otherwise + */ +mpd_pure +unsigned +mpd_status_get_update_id(const struct mpd_status *status); + +/** + * Returns the error message + */ +mpd_pure +const char * +mpd_status_get_error(const struct mpd_status *status); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/sticker.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/sticker.h new file mode 100644 index 0000000..b11966f --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/sticker.h @@ -0,0 +1,200 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Manipulate stickers. + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_STICKER_H +#define MPD_STICKER_H + +#include + +#include +#include + +struct mpd_connection; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Adds or replaces a sticker value. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @param value the value of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_set(struct mpd_connection *connection, const char *type, + const char *uri, const char *name, const char *value); + +/** + * Shortcut for mpd_send_sticker_set() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @param value the value of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_run_sticker_set(struct mpd_connection *connection, const char *type, + const char *uri, const char *name, const char *value); + +/** + * Deletes a sticker value. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_delete(struct mpd_connection *connection, const char *type, + const char *uri, const char *name); + +/** + * Shortcut for mpd_send_sticker_delete() and mpd_response_finish(). + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_run_sticker_delete(struct mpd_connection *connection, const char *type, + const char *uri, const char *name); + +/** + * Queries a sticker value. Call mpd_recv_sticker() to receive the response. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @param name the name of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_get(struct mpd_connection *connection, const char *type, + const char *uri, const char *name); + +/** + * Obtains a list of all stickers of the specified object. Call + * mpd_recv_sticker() to receive each response item. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param uri the URI of the object + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_list(struct mpd_connection *connection, const char *type, + const char *uri); + +/** + * Searches for stickers with the specified name. + * + * @param connection the connection to MPD + * @param type the object type, e.g. "song" + * @param base_uri the base URI to start the search, e.g. a directory; + * NULL to search for all objects of the specified type + * @param name the name of the sticker + * @return true on success, false on error + * + * @since libmpdclient 2.1 + */ +bool +mpd_send_sticker_find(struct mpd_connection *connection, const char *type, + const char *base_uri, const char *name); + +/** + * Parse a sticker input line in the form "name=value". + * + * @param input the input value, the value from a received pair named + * "sticker" + * @param name_length_r the length of the name (starting at the + * beginning of the input string) is returned here + * @return a pointer to the sticker value, or NULL on error + * + * @since libmpdclient 2.1 + */ +const char * +mpd_parse_sticker(const char *input, size_t *name_length_r); + +/** + * Receives the next sticker. You have to free the return value with + * mpd_return_sticker(). + * + * @param connection the connection to MPD + * @return a #mpd_pair object on success, NULL on end of response or + * error + * + * @since libmpdclient 2.1 + */ +mpd_malloc +struct mpd_pair * +mpd_recv_sticker(struct mpd_connection *connection); + +/** + * Free the pair returned by mpd_recv_sticker(). + * + * @since libmpdclient 2.1 + */ +void +mpd_return_sticker(struct mpd_connection *connection, struct mpd_pair *pair); + +#ifdef __cplusplus +} +#endif + +#endif /* MPD_STICKER_H */ + diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/tag.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/tag.h new file mode 100644 index 0000000..181cfc5 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/tag.h @@ -0,0 +1,106 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + - Neither the name of the Music Player Daemon nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef LIBMPDCLIENT_TAG_H +#define LIBMPDCLIENT_TAG_H + +/** + * @since libmpdclient 2.10 added support for #MPD_TAG_MUSICBRAINZ_RELEASETRACKID. + * @since libmpdclient 2.11 added support for #MPD_TAG_ARTIST_SORT and #MPD_TAG_ALBUM_ARTIST_SORT. + */ +enum mpd_tag_type +{ + /** + * Special value returned by mpd_tag_name_parse() when an + * unknown name was passed. + */ + MPD_TAG_UNKNOWN = -1, + + MPD_TAG_ARTIST, + MPD_TAG_ARTIST_SORT, + MPD_TAG_ALBUM, + MPD_TAG_ALBUM_ARTIST, + MPD_TAG_ALBUM_ARTIST_SORT, + MPD_TAG_TITLE, + MPD_TAG_TRACK, + MPD_TAG_NAME, + MPD_TAG_GENRE, + MPD_TAG_DATE, + MPD_TAG_COMPOSER, + MPD_TAG_PERFORMER, + MPD_TAG_COMMENT, + MPD_TAG_DISC, + + MPD_TAG_MUSICBRAINZ_ARTISTID, + MPD_TAG_MUSICBRAINZ_ALBUMID, + MPD_TAG_MUSICBRAINZ_ALBUMARTISTID, + MPD_TAG_MUSICBRAINZ_TRACKID, + MPD_TAG_MUSICBRAINZ_RELEASETRACKID, + + MPD_TAG_COUNT +}; + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * Looks up the name of the specified tag. + * + * @return the name, or NULL if the tag type is not valid + */ +const char * +mpd_tag_name(enum mpd_tag_type type); + +/** + * Parses a tag name, and returns its #mpd_tag_type value. + * + * @return a #mpd_tag_type value, or MPD_TAG_UNKNOWN if the name was + * not recognized + */ +enum mpd_tag_type +mpd_tag_name_parse(const char *name); + +/** + * Same as mpd_tag_name_parse(), but ignores case. + * + * @return a #mpd_tag_type value, or MPD_TAG_UNKNOWN if the name was + * not recognized + */ +enum mpd_tag_type +mpd_tag_name_iparse(const char *name); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/include/mpd/version.h b/1_6.h12_dev/libmpdclient/tmp/include/mpd/version.h new file mode 100644 index 0000000..6d7661d --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/include/mpd/version.h @@ -0,0 +1,58 @@ +/* libmpdclient + (c) 2003-2015 The Music Player Daemon Project + This project's homepage is: http://www.musicpd.org + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + - Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/*! \file + * \brief MPD client library + * + * Do not include this header directly. Use mpd/client.h instead. + */ + +#ifndef MPD_VERSION_H +#define MPD_VERSION_H + +#define LIBMPDCLIENT_MAJOR_VERSION 2 +#define LIBMPDCLIENT_MINOR_VERSION 11 +#define LIBMPDCLIENT_PATCH_VERSION 0 + +/** + * Preprocessor macro which allows you to check which version of + * libmpdclient you are compiling with. It can be used in + * preprocessor directives. + * + * @return true if this libmpdclient version equals or is newer than + * the specified version number + * @since libmpdclient 2.1 + */ +#define LIBMPDCLIENT_CHECK_VERSION(major, minor, patch) \ + ((major) < LIBMPDCLIENT_MAJOR_VERSION || \ + ((major) == LIBMPDCLIENT_MAJOR_VERSION && \ + ((minor) < LIBMPDCLIENT_MINOR_VERSION || \ + ((minor) == LIBMPDCLIENT_MINOR_VERSION && \ + (patch) <= LIBMPDCLIENT_PATCH_VERSION)))) + +#endif diff --git a/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.a b/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.a new file mode 100644 index 0000000..e5d9124 Binary files /dev/null and b/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.a differ diff --git a/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so b/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so new file mode 120000 index 0000000..a9a16fb --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so @@ -0,0 +1 @@ +libmpdclient.so.2.0.11 \ No newline at end of file diff --git a/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so.2 b/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so.2 new file mode 120000 index 0000000..a9a16fb --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so.2 @@ -0,0 +1 @@ +libmpdclient.so.2.0.11 \ No newline at end of file diff --git a/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so.2.0.11 b/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so.2.0.11 new file mode 100755 index 0000000..93f50d7 Binary files /dev/null and b/1_6.h12_dev/libmpdclient/tmp/lib/libmpdclient.so.2.0.11 differ diff --git a/1_6.h12_dev/libmpdclient/tmp/lib/pkgconfig/libmpdclient.pc b/1_6.h12_dev/libmpdclient/tmp/lib/pkgconfig/libmpdclient.pc new file mode 100644 index 0000000..0491e4a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/lib/pkgconfig/libmpdclient.pc @@ -0,0 +1,10 @@ +prefix=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/libmpdclient/tmp +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: libmpdclient +Description: Music Player Daemon client library +Version: 2.11 +Libs: -L${libdir} -lmpdclient +Cflags: -I${includedir} diff --git a/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/COPYING b/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/COPYING new file mode 100644 index 0000000..ab18465 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/COPYING @@ -0,0 +1,26 @@ +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of the Music Player Daemon nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/NEWS b/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/NEWS new file mode 100644 index 0000000..db07f0a --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/NEWS @@ -0,0 +1,85 @@ +libmpdclient 2.11 (not yet released) +* add space before "window" search argument +* detect getaddrinfo() at configure time +* add support for ArtistSort and AlbumArtistSort tags + +libmpdclient 2.10 (2015/02/23) +* support abstract sockets with "@" prefix +* support tag "MUSICBRAINZ_RELEASETRACKID" +* add TCP keepalive internal and external APIs +* support MPD protocol 0.19 + - status: support sample formats "float" and "dsd" + - song: report duration with milliseconds precision + - search: support constraint "modified-since" +* support MPD protocol 0.20 + - the "window" parameter for commands "find"/"search" + +libmpdclient 2.9 (2013/10/29) +* directory: support attribute "Last-Modified" +* support MPD protocol 0.18 + - command "readcomments" + - command "toggleoutput" + - command "volume" + - the "base" constraint for commands "find"/"search" + +libmpdclient 2.8 (2013/04/09) +* song: support attribute "Prio" +* queue: fix the ranged "prio" command +* queue: support open ranges + +libmpdclient 2.7 (2012/02/04) +* status: add nextsong/nextsongid support + +libmpdclient 2.6 (2011/10/23) +* mpd/client.h: include message.h +* queue: support song priorities + +libmpdclient 2.5 (2011/07/06) +* playlist: implement the command "listplaylists" +* idle: support event "sticker" +* support the client-to-client protocol (MPD 0.17) + +libmpdclient 2.4 (2011/01/03) +* configure.ac, resolver: implement flag --disable-tcp +* resolver: fix IPv4/IPv6 on the loopback device +* player: support the command "clearerror" +* connection: add function mpd_connection_get_server_error_location() +* settings: expose connection settings +* iso8601, send: format string workarounds for WIN32 +* Makefile.am: fix doxygen in out-of-tree build + +libmpdclient 2.3 (2010/05/25) +* get default timeout from environment variable MPD_TIMEOUT +* fix assertion failures on malformed URI +* song: support attribute "Range" + +libmpdclient 2.2 (2010/04/25) +* MixRamp support +* fix the LIBMPDCLIENT_CHECK_VERSION() macro + +libmpdclient 2.1 (2009/12/06) +* status: added mpd_status_get_elapsed_ms() +* sticker: added sticker support +* song: copy last_modified value in mpd_song_dup() +* socket, async: use WSAGetLastError() instead of errno on WIN32 +* socket: connect in non-blocking mode +* socket: set the close-on-exec flag +* tag: support C++ +* sync: optimistic write, reduce select() calls +* Makefile.am: use --version-script only with GNU ld +* added library version compile-time checks + +libmpdclient 2.0 (2009/10/03) +* complete rewrite and API redesign +* shared library with a documented stable API +* asynchronous API +* too many minor changes to list here + +libmpdclient 0.13 (2007/05/28) +libmpdclient 0.12.1 (2007/03/21) +libmpdclient 0.12 (2006/09/22) +libmpdclient 0.11.1 (2004/06/18) +libmpdclient 0.11 (2004/06/17) +libmpdclient 0.10 (2004/03/03) +* these versions were never actually released; its sources were copied + into the C/C++ clients diff --git a/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/README b/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/README new file mode 100644 index 0000000..1bd1907 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/share/doc/libmpdclient/README @@ -0,0 +1,13 @@ + + libmpdclient + http://www.musicpd.org + +This is a library for interfacing Music Player Daemon (MPD). + +The API documentation is generated during the build if you have +doxygen. You may browse it online: + + http://www.musicpd.org/doc/libmpdclient/ + +libmpdclient is released under the revised BSD License. +For the full license, see COPYING. diff --git a/1_6.h12_dev/libmpdclient/tmp/share/vala/vapi/libmpdclient.vapi b/1_6.h12_dev/libmpdclient/tmp/share/vala/vapi/libmpdclient.vapi new file mode 100644 index 0000000..08dd1a8 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/tmp/share/vala/vapi/libmpdclient.vapi @@ -0,0 +1,759 @@ +[CCode (cprefix = "mpd_", cheader_filename = "mpd/client.h")] + +namespace Mpd { + [CCode (cname = "enum mpd_error")] + public enum Error { + SUCCESS = 0, + OOM, + ARGUMENT, + STATE, + TIMEOUT, + SYSTEM, + RESOLVER, + MALFORMED, + CLOSED, + SERVER + } + + [CCode (cname = "enum mpd_async_event")] + public enum AsyncEvent { + READ = 1, + WRITE = 2, + HUP = 4, + ERROR = 8 + } + + [CCode (cname = "enum mpd_server_error")] + public enum ServerError { + UNK = -1, + NOT_LIST = 1, + ARG = 2, + PASSWORD = 3, + PERMISSION = 4, + UNKNOWN_CMD = 5, + NO_EXIST = 50, + PLAYLIST_MAX = 51, + SYSTEM = 52, + PLAYLIST_LOAD = 53, + UPDATE_ALREADY = 54, + PLAYER_SYNC = 55, + ERROR_EXIST = 56 + } + + [CCode (cname = "enum mpd_entity_type")] + public enum EntityType { + UNKNOWN, + DIRECTORY, + SONG, + PLAYLIST + } + + [CCode (cname = "enum mpd_idle")] + public enum Idle { + DATABASE = 0x1, + STORED_PLAYLIST = 0x2, + QUEUE = 0x4, + PLAYLIST = QUEUE, + PLAYER = 0x8, + MIXER = 0x10, + OUTPUT = 0x20, + OPTIONS = 0x40, + UPDATE = 0x80, + STICKER = 0x100, + SUBSCRIPTION = 0x200, + MESSAGE = 0x400 + } + + [CCode (cname = "enum mpd_parser_result")] + public enum ParserResult { + MALFORMED, + SUCCESS, + ERROR, + PAIR + } + + [CCode (cname = "enum mpd_operator")] + public enum Operator { + DEFAULT + } + + [CCode (cname = "enum mpd_tag_type", + cprefix = "MPD_TAG_")] + public enum TagType { + UNKNOWN = -1, + ARTIST, + ALBUM, + ALBUM_ARTIST, + TITLE, + TRACK, + NAME, + GENRE, + DATE, + COMPOSER, + PERFORMER, + COMMENT, + DISC, + MUSICBRAINZ_ARTISTID, + MUSICBRAINZ_ALBUMID, + MUSICBRAINZ_ALBUMARTISTID, + MUSICBRAINZ_TRACKID, + MUSICBRAINZ_RELEASETRACKID, + COUNT + } + + [CCode (cname = "enum mpd_state")] + public enum State { + UNKNOWN = 0, + STOP = 1, + PLAY = 2, + PAUSE = 3 + } + + [CCode (cname = "struct mpd_async", + free_function = "mpd_async_free")] + [Compact] + public class Async { + public Mpd.Error error { get; } + public string? error_message { get; } + public int system_error { get; } + public int fd { get; } + + public Async(int fd); + public Mpd.Error get_error(); + public unowned string? get_error_message(); + public int get_system_error(); + public int get_fd(); + public Mpd.AsyncEvent events(); + public bool async_io(Mpd.AsyncEvent events); + public bool send_command_v(string command, va_list args); + public bool send_command(string command, ...); + public string? recv_line(); + } + + [CCode (cname = "struct mpd_audio_format")] + [Compact] + public class AudioFormat { + public uint8 bits; + public uint8 channels; + public uint32 sample_rate; + } + + [CCode (cname = "struct mpd_connection", + free_function="mpd_connection_free")] + [Compact] + public class Connection { + public int fd { get; } + public Mpd.Async async { get; } + public Mpd.Error error { get; } + public string error_message { get; } + public Mpd.ServerError server_error { get; } + public int system_error { get; } + public uint[] server_version { get; } + public uint server_error_location { get; } + public uint timeout { set; } + public Settings settings { get; } + + public Connection(string? host = null, uint port = 0, uint timeout_ms = 0); + [CCode (cname = "mpd_connection_new_async")] + public Connection.from_async(Mpd.Async async, string welcome); + public void set_timeout(uint timeout_ms); + public int get_fd(); + public Mpd.Async get_async(); + public Mpd.Error get_error(); + public unowned string get_error_message(); + public Mpd.ServerError get_server_error(); + public uint get_server_error_location(); + public int get_system_error(); + public bool clear_error(); + public uint[] get_server_version(); + public int cmp_server_version(uint major, uint minor, uint patch); + public Settings get_settings(); + [CCode (cname = "mpd_recv_directory")] + public Directory? recv_directory(); + [CCode (cname = "mpd_recv_entity")] + public Entity? recv_entity(); + [CCode (cname = "mpd_command_list_begin")] + public bool command_list_begin(bool discrete_ok = false); + [CCode (cname = "mpd_command_list_end")] + public bool command_list_end(); + [CCode (cname = "mpd_send_set_volume")] + public bool send_set_volume(uint volume); + [CCode (cname = "mpd_run_set_volume")] + public bool run_set_volume(uint volume); + [CCode (cname = "mpd_send_outputs")] + public bool send_outputs(); + [CCode (cname = "mpd_recv_output")] + public Output recv_output(); + [CCode (cname = "mpd_send_enable_output")] + public bool send_enable_output(uint output_id); + [CCode (cname = "mpd_run_enable_output")] + public bool run_enable_output(uint output_id); + [CCode (cname = "mpd_send_disable_output")] + public bool send_disable_output(uint output_id); + [CCode (cname = "mpd_run_disable_output")] + public bool run_disable_output(uint output_id); + [CCode (cname = "mpd_send_password")] + public bool send_password(string password); + [CCode (cname = "mpd_run_password")] + public bool run_password(string password); + [CCode (cname = "mpd_recv_playlist")] + public Playlist recv_playlist(); + [CCode (cname = "mpd_send_list_playlist")] + public bool send_list_playlist(string name); + [CCode (cname = "mpd_send_list_playlist_meta")] + public bool send_list_playlist_meta(string name); + [CCode (cname = "mpd_send_playlist_clear")] + public bool send_playlist_clear(string name); + [CCode (cname = "mpd_run_playlist_clear")] + public bool run_playlist_clear(string name); + [CCode (cname = "mpd_send_playlist_add")] + public bool send_playlist_add(string name, string path); + [CCode (cname = "mpd_run_playlist_add")] + public bool run_playlist_add(string name, string path); + [CCode (cname = "mpd_send_playlist_move")] + public bool send_playlist_move(string name, uint from, uint to); + [CCode (cname = "mpd_send_playlist_delete")] + public bool send_playlist_delete(string name, uint pos); + [CCode (cname = "mpd_run_playlist_delete")] + public bool run_playlist_delete(string name, uint pos); + [CCode (cname = "mpd_send_save")] + public bool send_save(string name); + [CCode (cname = "mpd_run_save")] + public bool run_save(string name); + [CCode (cname = "mpd_send_load")] + public bool send_load(string name); + [CCode (cname = "mpd_run_load")] + public bool run_load(string name); + [CCode (cname = "mpd_send_rename")] + public bool send_rename(string from, string to); + [CCode (cname = "mpd_run_rename")] + public bool run_rename(string from, string to); + [CCode (cname = "mpd_send_rm")] + public bool send_rm(string name); + [CCode (cname = "mpd_run_rm")] + public bool run_rm(string name); + [CCode (cname = "mpd_recv_pair")] + public Pair recv_pair(); + [CCode (cname = "mpd_recv_pair_named")] + public Pair recv_pair_named(string name); + [CCode (cname = "mpd_return_pair")] + public void return_pair(Pair pair); + [CCode (cname = "mpd_enqueue_pair")] + public void enqueue_pair(Pair pair); + [CCode (cname = "mpd_response_finish")] + public bool response_finish(); + [CCode (cname = "mpd_response_next")] + public bool response_next(); + [CCode (cname = "mpd_search_db_songs")] + public bool search_db_songs(bool exact); + [CCode (cname = "mpd_search_add_db_songs")] + public bool search_add_db_songs(bool exact); + [CCode (cname = "mpd_search_queue_songs")] + public bool search_queue_songs(bool exact); + [CCode (cname = "mpd_search_db_tags")] + public bool search_db_tags(TagType type); + [CCode (cname = "mpd_count_db_songs")] + public bool count_db_songs(); + [CCode (cname = "mpd_search_add_uri_constraint")] + public bool search_add_uri_constraint(Operator oper, string value); + [CCode (cname = "mpd_search_add_tag_constraint")] + public bool search_add_tag_constraint(Operator oper, TagType type, string value); + [CCode (cname = "mpd_search_add_any_tag_constraint")] + public bool search_add_any_tag_constraint(Operator oper, string value); + [CCode (cname = "mpd_search_commit")] + public bool search_commit(); + [CCode (cname = "mpd_search_cancel")] + public bool search_cancel(); + [CCode (cname = "mpd_recv_pair_tag")] + public Pair recv_pair_tag(TagType type); + [CCode (cname = "mpd_send_command")] + public bool send_command(string command, ...); + [CCode (cname = "mpd_recv_song")] + public Song recv_song(); + [CCode (cname = "mpd_send_status")] + public bool send_status(); + [CCode (cname = "mpd_recv_status")] + public Status recv_status(); + [CCode (cname = "mpd_run_status")] + public Status run_status(); + [CCode (cname = "mpd_send_allowed_commands")] + public bool send_allowed_commands(); + [CCode (cname = "mpd_send_disallowed_commands")] + public bool send_disallowed_commands(); + [CCode (cname = "mpd_recv_command_pair")] + public Pair? recv_command_pair(); + [CCode (cname = "mpd_send_list_url_schemes")] + public bool send_list_url_schemas(); + [CCode (cname = "mpd_recv_url_scheme_pair")] + public Pair? recv_url_scheme_pair(); + [CCode (cname = "mpd_send_list_tag_types")] + public bool send_list_tag_types(); + [CCode (cname = "mpd_recv_tag_type_pair")] + public Pair? recv_tag_type_pair(); + [CCode (cname = "mpd_send_list_all")] + public bool send_list_all(string path); + [CCode (cname = "mpd_send_list_all_meta")] + public bool send_list_all_meta(string path); + [CCode (cname = "mpd_send_list_meta")] + public bool send_list_meta(string path); + [CCode (cname = "mpd_send_update")] + public bool send_update(string? path = null); + [CCode (cname = "mpd_send_rescan")] + public bool send_rescan(string? path = null); + [CCode (cname = "mpd_recv_update_id")] + public uint recv_update_id(); + [CCode (cname = "mpd_run_update")] + public uint run_update(string? path = null); + [CCode (cname = "mpd_run_rescan")] + public uint run_rescan(string? path = null); + [CCode (cname = "mpd_send_idle")] + public bool send_idle(); + [CCode (cname = "mpd_send_idle_mask")] + public bool send_idle_mask(Idle mask); + [CCode (cname = "mpd_send_noidle")] + public bool send_noidle(); + [CCode (cname = "mpd_recv_idle")] + public Idle recv_idle(bool disable_timeout); + [CCode (cname = "mpd_run_idle")] + public Idle run_idle(); + [CCode (cname = "mpd_run_idle_mask")] + public Idle run_idle_mask(Idle mask); + [CCode (cname = "mpd_run_noidle")] + public Idle run_noidle(); + [CCode (cname = "mpd_send_stats")] + public bool send_stats(); + [CCode (cname = "mpd_recv_stats")] + public Stats recv_stats(); + [CCode (cname = "mpd_run_stats")] + public Stats run_stats(); + [CCode (cname = "mpd_send_sticker_set")] + public bool send_sticker_set(string type, string uri, string name, string value); + [CCode (cname = "mpd_run_sticker_set")] + public bool run_sticker_set(string type, string uri, string name, string value); + [CCode (cname = "mpd_send_sticker_delete")] + public bool send_sticker_delete(string type, string uri, string name); + [CCode (cname = "mpd_run_sticker_delete")] + public bool run_sticker_delete(string type, string uri, string name); + [CCode (cname = "mpd_send_sticker_get")] + public bool send_sticker_get(string type, string uri, string name); + [CCode (cname = "mpd_send_sticker_list")] + public bool send_sticker_list(string type, string uri); + [CCode (cname = "mpd_send_sticker_find")] + public bool send_sticker_find(string type, string base_uri, string name); + [CCode (cname = "mpd_recv_sticker")] + public Pair recv_sticker(); + [CCode (cname = "mpd_return_sticker")] + public void return_sticker(Pair pair); + [CCode (cname = "mpd_send_list_queue_meta")] + public bool send_list_queue_meta(); + [CCode (cname = "mpd_send_list_queue_range_meta")] + public bool send_list_queue_range_meta(uint start, uint end); + [CCode (cname = "mpd_send_get_queue_song_pos")] + public bool send_get_queue_song_pos(uint pos); + [CCode (cname = "mpd_run_get_queue_song_pos")] + public Song run_get_queue_song_pos(uint pos); + [CCode (cname = "mpd_send_get_queue_song_id")] + public bool send_get_queue_song_id(uint id); + [CCode (cname = "mpd_run_get_queue_song_id")] + public Song run_get_queue_song_id(uint id); + [CCode (cname = "mpd_send_queue_changes_meta")] + public bool send_queue_changes_meta(uint version); + [CCode (cname = "mpd_send_queue_changes_brief")] + public bool send_queue_changes_brief(uint version); + [CCode (cname = "mpd_recv_queue_change_brief")] + public bool recv_queue_change_brief(out uint position_r, out uint id_r); + [CCode (cname = "mpd_send_add")] + public bool send_add(string file); + [CCode (cname = "mpd_run_add")] + public bool run_add(string uri); + [CCode (cname = "mpd_send_add_id")] + public bool send_add_id(string file); + [CCode (cname = "mpd_send_add_id_to")] + public bool send_add_id_to(string uri, uint to); + [CCode (cname = "mpd_recv_song_id")] + public int recv_song_id(); + [CCode (cname = "mpd_run_add_id")] + public int run_add_id(string file); + [CCode (cname = "mpd_run_add_id_to")] + public int run_add_id_to(string uri, uint to); + [CCode (cname = "mpd_send_delete")] + public bool send_delete(uint pos); + [CCode (cname = "mpd_run_delete")] + public bool run_delete(uint pos); + [CCode (cname = "mpd_send_delete_range")] + public bool send_delete_range(uint start, uint end); + [CCode (cname = "mpd_run_delete_range")] + public bool run_delete_range(uint start, uint end); + [CCode (cname = "mpd_send_delete_id")] + public bool send_delete_id(uint id); + [CCode (cname = "mpd_run_delete_id")] + public bool run_delete_id(uint id); + [CCode (cname = "mpd_send_shuffle")] + public bool send_shuffle(); + [CCode (cname = "mpd_run_shuffle")] + public bool run_shuffle(); + [CCode (cname = "mpd_send_shuffle_range")] + public bool send_shuffle_range(uint start, uint end); + [CCode (cname = "mpd_run_shuffle_range")] + public bool run_shuffle_range(uint start, uint end); + [CCode (cname = "mpd_send_clear")] + public bool send_clear(); + [CCode (cname = "mpd_run_clear")] + public bool run_clear(); + [CCode (cname = "mpd_send_move")] + public bool send_move(uint from, uint to); + [CCode (cname = "mpd_run_move")] + public bool run_move(uint from, uint to); + [CCode (cname = "mpd_send_move_id")] + public bool send_move_id(uint from, uint to); + [CCode (cname = "mpd_run_move_id")] + public bool run_move_id(uint from, uint to); + [CCode (cname = "mpd_send_move_range")] + public bool send_move_range(uint start, uint end, uint to); + [CCode (cname = "mpd_run_move_range")] + public bool run_move_range(uint start, uint end, uint to); + [CCode (cname = "mpd_send_swap")] + public bool send_swap(uint pos1, uint pos2); + [CCode (cname = "mpd_run_swap")] + public bool run_swap(uint pos1, uint pos2); + [CCode (cname = "mpd_send_swap_id")] + public bool send_swap_id(uint id1, uint id2); + [CCode (cname = "mpd_run_swap_id")] + public bool run_swap_id(uint id1, uint id2); + [CCode (cname = "mpd_send_prio")] + public bool send_prio(int priority, uint position); + [CCode (cname = "mpd_run_prio")] + public bool run_prio(int priority, uint position); + [CCode (cname = "mpd_send_prio_range")] + public bool send_prio_range(int priority, uint start, uint end); + [CCode (cname = "mpd_run_prio_range")] + public bool run_prio_range(int priority, uint start, uint end); + [CCode (cname = "mpd_send_prio_id")] + public bool send_prio_id(int priority, uint id); + [CCode (cname = "mpd_run_prio_id")] + public bool run_prio_id(int priority, uint id); + [CCode (cname = "mpd_send_current_song")] + public bool send_current_song(); + [CCode (cname = "mpd_run_current_song")] + public Song run_current_song(); + [CCode (cname = "mpd_send_play")] + public bool send_play(); + [CCode (cname = "mpd_run_play")] + public bool run_play(); + [CCode (cname = "mpd_send_play_pos")] + public bool send_play_pos(uint song_pos); + [CCode (cname = "mpd_run_play_pos")] + public bool run_play_pos(uint song_pos); + [CCode (cname = "mpd_send_play_id")] + public bool send_play_id(uint id); + [CCode (cname = "mpd_run_play_id")] + public bool run_play_id(uint song_id); + [CCode (cname = "mpd_send_stop")] + public bool send_stop(); + [CCode (cname = "mpd_run_stop")] + public bool run_stop(); + [CCode (cname = "mpd_send_toggle_pause")] + public bool send_toggle_pause(); + [CCode (cname = "mpd_run_toggle_pause")] + public bool run_toggle_pause(); + [CCode (cname = "mpd_send_pause")] + public bool send_pause(bool mode); + [CCode (cname = "mpd_run_pause")] + public bool run_pause(bool mode); + [CCode (cname = "mpd_send_next")] + public bool send_next(); + [CCode (cname = "mpd_run_next")] + public bool run_next(); + [CCode (cname = "mpd_send_previous")] + public bool send_previous(); + [CCode (cname = "mpd_run_previous")] + public bool run_previous(); + [CCode (cname = "mpd_send_seek_pos")] + public bool send_seek_pos(uint song_pos, uint t); + [CCode (cname = "mpd_run_seek_pos")] + public bool run_seek_pos(uint song_pos, uint t); + [CCode (cname = "mpd_send_seek_id")] + public bool send_seek_id(uint id, uint t); + [CCode (cname = "mpd_run_seek_id")] + public bool run_seek_id(uint song_id, uint t); + [CCode (cname = "mpd_send_repeat")] + public bool send_repeat(bool mode); + [CCode (cname = "mpd_run_repeat")] + public bool run_repeat(bool mode); + [CCode (cname = "mpd_send_random")] + public bool send_random(bool mode); + [CCode (cname = "mpd_run_random")] + public bool run_random(bool mode); + [CCode (cname = "mpd_send_single")] + public bool send_single(bool mode); + [CCode (cname = "mpd_run_single")] + public bool run_single(bool mode); + [CCode (cname = "mpd_send_consume")] + public bool send_consume(bool mode); + [CCode (cname = "mpd_run_consume")] + public bool run_consume(bool mode); + [CCode (cname = "mpd_send_crossfade")] + public bool send_crossfade(uint seconds); + [CCode (cname = "mpd_run_crossfade")] + public bool run_crossfade(uint seconds); + [CCode (cname = "mpd_send_mixrampdb")] + public bool send_mixrampdb(float db); + [CCode (cname = "mpd_run_mixrampdb")] + public bool run_mixrampdb(float db); + [CCode (cname = "mpd_send_mixrampdelay")] + public bool send_mixrampdelay(float seconds); + [CCode (cname = "mpd_run_mixrampdelay")] + public bool run_mixrampdelay(float seconds); + [CCode (cname = "mpd_send_clearerror")] + public bool send_clearerror(); + [CCode (cname = "mpd_run_clearerror")] + public bool run_clearerror(); + [CCode (cname = "mpd_send_list_playlists")] + public bool send_list_playlists(); + [CCode (cname = "mpd_send_subscribe")] + public bool send_subscribe(string channel); + [CCode (cname = "mpd_run_subscribe")] + public bool run_subscribe(string channel); + [CCode (cname = "mpd_send_unsubscribe")] + public bool send_unsubscribe(string channel); + [CCode (cname = "mpd_run_unsubscribe")] + public bool run_unsubscribe(string channel); + [CCode (cname = "mpd_send_send_message")] + public bool send_send_message(string channel, string text); + [CCode (cname = "mpd_run_send_message")] + public bool run_send_message(string channel, string text); + [CCode (cname = "mpd_send_read_messages")] + public bool send_read_messages(); + [CCode (cname = "mpd_recv_message")] + public Message recv_message(); + [CCode (cname = "mpd_send_channels")] + public bool send_channels(); + [CCode (cname = "mpd_recv_channel_pair")] + public Pair recv_channel_pair(); + } + + [CCode (cname = "struct mpd_directory", + copy_function = "mpd_directory_dup", + free_function = "mpd_directory_free")] + [Compact] + public class Directory { + public string path { get; } + + public unowned string get_path(); + public bool feed(Mpd.Pair pair); + public Entity? entity_begin(); + } + + [CCode (cname = "struct mpd_entity", + free_function = "mpd_entity_free")] + [Compact] + public class Entity { + public EntityType type { get; } + public Directory directory { get; } + public Song song { get; } + public Playlist playlist { get; } + + public EntityType get_type(); + public Directory get_directory(); + public Song get_song(); + public Playlist get_playlist(); + public bool feed(Pair pair); + } + + [CCode (cname = "struct mpd_output", + free_function = "mpd_output_free")] + [Compact] + public class Output { + public uint id { get; } + public string name { get; } + public bool enabled { get; } + + public bool feed(Pair pair); + public uint get_id(); + public unowned string get_name(); + public bool get_enabled(); + } + + [CCode (cname = "struct mpd_pair", + free_function = "")] + [Compact] + public class Pair { + public unowned string name; + public unowned string value; + [CCode (cname = "mpd_directory_begin")] + public Directory? directory_begin(); + [CCode (cname = "mpd_output_begin")] + public Output output_begin(); + [CCode (cname = "mpd_playlist_begin")] + public Playlist playlist_begin(); + [CCode (cname = "mpd_song_begin")] + public Song song_begin(); + [CCode (cname = "mpd_idle_parse_pair")] + public Idle idle_parse_pair(); + } + + [CCode (cname = "struct mpd_parser", + free_function = "mpd_parser_free")] + [Compact] + public class Parser { + public ServerError server_error { get; } + public uint at { get; } + public string message { get; } + public string name { get; } + public string value { get; } + + public ParserResult feed(string line); + public bool is_discrete(); + public ServerError get_server_error(); + public uint get_at(); + public unowned string get_message(); + public unowned string get_name(); + public unowned string get_value(); + } + + [CCode (cname = "struct mpd_playlist", + copy_function = "mpd_playlist_dup", + free_function = "mpd_playlist_free")] + [Compact] + public class Playlist { + public string path { get; } + public int64 last_modified { get; } + + public string get_path(); + public int64 get_last_modified(); + public bool feed(Pair pair); + } + + [CCode (cname = "struct mpd_song", + copy_function = "mpd_song_dup", + free_function = "mpd_song_free")] + [Compact] + public class Song { + public string uri { get; } + public uint duration { get; } + public int64 last_modified { get; } + public uint pos { get; set; } + public uint id { get; } + + public unowned string get_uri(); + public unowned string get_tag(TagType type, uint idx = 0); + public uint get_duration(); + public int64 get_last_modified(); + public void set_pos(uint pos); + public uint get_pos(); + public uint get_id(); + public bool feed(Pair pair); + } + + [CCode (cname = "struct mpd_stats", + free_function = "mpd_stats_free")] + [Compact] + public class Stats { + public uint number_of_artist { get; } + public uint number_of_albums { get; } + public uint number_of_songs { get; } + public ulong uptime { get; } + public ulong db_update_time { get; } + public ulong play_time { get; } + public ulong db_play_time { get; } + + public void feed(Pair pair); + public uint get_number_of_artists(); + public uint get_number_of_albums(); + public uint get_number_of_songs(); + public ulong get_uptime(); + public ulong get_db_update_time(); + public ulong get_play_time(); + public ulong get_db_play_time(); + } + + [CCode (cname = "struct mpd_status", + free_function = "mpd_status_free")] + [Compact] + public class Status { + public int volume { get; } + public bool repeat { get; } + public bool random { get; } + public bool single { get; } + public bool consume { get; } + public uint queue_length { get; } + public uint queue_version { get; } + public State state { get; } + public uint crossfade { get; } + public float mixrampdb { get; } + public float mixrampdelay { get; } + public int song_pos { get; } + public int song_id { get; } + public uint elapsed_time { get; } + public uint elapsed_ms { get; } + public uint total_time { get; } + public uint kbit_rate { get; } + public AudioFormat audio_format { get; } + public uint update_id { get; } + public string error { get; } + + public int get_volume(); + public bool get_repeat(); + public bool get_random(); + public bool get_single(); + public bool get_consume(); + public uint get_queue_length(); + public uint get_queue_version(); + public State get_state(); + public uint get_crossfade(); + public float get_mixrampdb(); + public float get_mixrampdelay(); + public int get_song_pos(); + public int get_song_id(); + public int get_next_song_pos(); + public int get_next_song_id(); + public uint get_elapsed_time(); + public uint get_elapsed_ms(); + public uint get_total_time(); + public uint get_kbit_rate(); + public AudioFormat get_audio_format(); + public uint get_update_id(); + public unowned string get_error(); + } + + [CCode (cname = "struct mpd_settings", + free_function = "mpd_settings_free")] + [Compact] + public class Settings { + public string? host { get; } + public uint port { get; } + public uint timeout_ms { get; } + public string? password { get; } + + public Settings(string? host = null, uint port = 0, uint timeout_ms = 0, string? reserved = null, string? password = null); + public string? get_host(); + public uint get_port(); + public uint get_timeout_ms(); + public string? get_password(); + } + + [CCode (cname = "struct mpd_message", + free_function = "mpd_message_free")] + [Compact] + public class Message { + public string channel { get; } + public string text { get; } + + public bool feed(Pair pair); + public unowned string get_channel(); + public unowned string get_text(); + } + + public Status status_begin(); + public unowned string tag_name(TagType type); + public TagType tag_name_parse(string name); + public TagType tag_name_iparse(string name); + public unowned string? idle_name(Idle idle); + public Idle idle_name_parse(string name); + public Stats stats_begin(); + public unowned string parse_sticker(string input, out int64 name_length_r); + + public const string LIBMPDCLIENT_MAJOR_VERSION; + public const string LIBMPDCLIENT_MINOR_VERSION; + public const string LIBMPDCLIENT_PATCH_VERSION; +} diff --git a/1_6.h12_dev/libmpdclient/vapi/libmpdclient.vapi b/1_6.h12_dev/libmpdclient/vapi/libmpdclient.vapi new file mode 100644 index 0000000..08dd1a8 --- /dev/null +++ b/1_6.h12_dev/libmpdclient/vapi/libmpdclient.vapi @@ -0,0 +1,759 @@ +[CCode (cprefix = "mpd_", cheader_filename = "mpd/client.h")] + +namespace Mpd { + [CCode (cname = "enum mpd_error")] + public enum Error { + SUCCESS = 0, + OOM, + ARGUMENT, + STATE, + TIMEOUT, + SYSTEM, + RESOLVER, + MALFORMED, + CLOSED, + SERVER + } + + [CCode (cname = "enum mpd_async_event")] + public enum AsyncEvent { + READ = 1, + WRITE = 2, + HUP = 4, + ERROR = 8 + } + + [CCode (cname = "enum mpd_server_error")] + public enum ServerError { + UNK = -1, + NOT_LIST = 1, + ARG = 2, + PASSWORD = 3, + PERMISSION = 4, + UNKNOWN_CMD = 5, + NO_EXIST = 50, + PLAYLIST_MAX = 51, + SYSTEM = 52, + PLAYLIST_LOAD = 53, + UPDATE_ALREADY = 54, + PLAYER_SYNC = 55, + ERROR_EXIST = 56 + } + + [CCode (cname = "enum mpd_entity_type")] + public enum EntityType { + UNKNOWN, + DIRECTORY, + SONG, + PLAYLIST + } + + [CCode (cname = "enum mpd_idle")] + public enum Idle { + DATABASE = 0x1, + STORED_PLAYLIST = 0x2, + QUEUE = 0x4, + PLAYLIST = QUEUE, + PLAYER = 0x8, + MIXER = 0x10, + OUTPUT = 0x20, + OPTIONS = 0x40, + UPDATE = 0x80, + STICKER = 0x100, + SUBSCRIPTION = 0x200, + MESSAGE = 0x400 + } + + [CCode (cname = "enum mpd_parser_result")] + public enum ParserResult { + MALFORMED, + SUCCESS, + ERROR, + PAIR + } + + [CCode (cname = "enum mpd_operator")] + public enum Operator { + DEFAULT + } + + [CCode (cname = "enum mpd_tag_type", + cprefix = "MPD_TAG_")] + public enum TagType { + UNKNOWN = -1, + ARTIST, + ALBUM, + ALBUM_ARTIST, + TITLE, + TRACK, + NAME, + GENRE, + DATE, + COMPOSER, + PERFORMER, + COMMENT, + DISC, + MUSICBRAINZ_ARTISTID, + MUSICBRAINZ_ALBUMID, + MUSICBRAINZ_ALBUMARTISTID, + MUSICBRAINZ_TRACKID, + MUSICBRAINZ_RELEASETRACKID, + COUNT + } + + [CCode (cname = "enum mpd_state")] + public enum State { + UNKNOWN = 0, + STOP = 1, + PLAY = 2, + PAUSE = 3 + } + + [CCode (cname = "struct mpd_async", + free_function = "mpd_async_free")] + [Compact] + public class Async { + public Mpd.Error error { get; } + public string? error_message { get; } + public int system_error { get; } + public int fd { get; } + + public Async(int fd); + public Mpd.Error get_error(); + public unowned string? get_error_message(); + public int get_system_error(); + public int get_fd(); + public Mpd.AsyncEvent events(); + public bool async_io(Mpd.AsyncEvent events); + public bool send_command_v(string command, va_list args); + public bool send_command(string command, ...); + public string? recv_line(); + } + + [CCode (cname = "struct mpd_audio_format")] + [Compact] + public class AudioFormat { + public uint8 bits; + public uint8 channels; + public uint32 sample_rate; + } + + [CCode (cname = "struct mpd_connection", + free_function="mpd_connection_free")] + [Compact] + public class Connection { + public int fd { get; } + public Mpd.Async async { get; } + public Mpd.Error error { get; } + public string error_message { get; } + public Mpd.ServerError server_error { get; } + public int system_error { get; } + public uint[] server_version { get; } + public uint server_error_location { get; } + public uint timeout { set; } + public Settings settings { get; } + + public Connection(string? host = null, uint port = 0, uint timeout_ms = 0); + [CCode (cname = "mpd_connection_new_async")] + public Connection.from_async(Mpd.Async async, string welcome); + public void set_timeout(uint timeout_ms); + public int get_fd(); + public Mpd.Async get_async(); + public Mpd.Error get_error(); + public unowned string get_error_message(); + public Mpd.ServerError get_server_error(); + public uint get_server_error_location(); + public int get_system_error(); + public bool clear_error(); + public uint[] get_server_version(); + public int cmp_server_version(uint major, uint minor, uint patch); + public Settings get_settings(); + [CCode (cname = "mpd_recv_directory")] + public Directory? recv_directory(); + [CCode (cname = "mpd_recv_entity")] + public Entity? recv_entity(); + [CCode (cname = "mpd_command_list_begin")] + public bool command_list_begin(bool discrete_ok = false); + [CCode (cname = "mpd_command_list_end")] + public bool command_list_end(); + [CCode (cname = "mpd_send_set_volume")] + public bool send_set_volume(uint volume); + [CCode (cname = "mpd_run_set_volume")] + public bool run_set_volume(uint volume); + [CCode (cname = "mpd_send_outputs")] + public bool send_outputs(); + [CCode (cname = "mpd_recv_output")] + public Output recv_output(); + [CCode (cname = "mpd_send_enable_output")] + public bool send_enable_output(uint output_id); + [CCode (cname = "mpd_run_enable_output")] + public bool run_enable_output(uint output_id); + [CCode (cname = "mpd_send_disable_output")] + public bool send_disable_output(uint output_id); + [CCode (cname = "mpd_run_disable_output")] + public bool run_disable_output(uint output_id); + [CCode (cname = "mpd_send_password")] + public bool send_password(string password); + [CCode (cname = "mpd_run_password")] + public bool run_password(string password); + [CCode (cname = "mpd_recv_playlist")] + public Playlist recv_playlist(); + [CCode (cname = "mpd_send_list_playlist")] + public bool send_list_playlist(string name); + [CCode (cname = "mpd_send_list_playlist_meta")] + public bool send_list_playlist_meta(string name); + [CCode (cname = "mpd_send_playlist_clear")] + public bool send_playlist_clear(string name); + [CCode (cname = "mpd_run_playlist_clear")] + public bool run_playlist_clear(string name); + [CCode (cname = "mpd_send_playlist_add")] + public bool send_playlist_add(string name, string path); + [CCode (cname = "mpd_run_playlist_add")] + public bool run_playlist_add(string name, string path); + [CCode (cname = "mpd_send_playlist_move")] + public bool send_playlist_move(string name, uint from, uint to); + [CCode (cname = "mpd_send_playlist_delete")] + public bool send_playlist_delete(string name, uint pos); + [CCode (cname = "mpd_run_playlist_delete")] + public bool run_playlist_delete(string name, uint pos); + [CCode (cname = "mpd_send_save")] + public bool send_save(string name); + [CCode (cname = "mpd_run_save")] + public bool run_save(string name); + [CCode (cname = "mpd_send_load")] + public bool send_load(string name); + [CCode (cname = "mpd_run_load")] + public bool run_load(string name); + [CCode (cname = "mpd_send_rename")] + public bool send_rename(string from, string to); + [CCode (cname = "mpd_run_rename")] + public bool run_rename(string from, string to); + [CCode (cname = "mpd_send_rm")] + public bool send_rm(string name); + [CCode (cname = "mpd_run_rm")] + public bool run_rm(string name); + [CCode (cname = "mpd_recv_pair")] + public Pair recv_pair(); + [CCode (cname = "mpd_recv_pair_named")] + public Pair recv_pair_named(string name); + [CCode (cname = "mpd_return_pair")] + public void return_pair(Pair pair); + [CCode (cname = "mpd_enqueue_pair")] + public void enqueue_pair(Pair pair); + [CCode (cname = "mpd_response_finish")] + public bool response_finish(); + [CCode (cname = "mpd_response_next")] + public bool response_next(); + [CCode (cname = "mpd_search_db_songs")] + public bool search_db_songs(bool exact); + [CCode (cname = "mpd_search_add_db_songs")] + public bool search_add_db_songs(bool exact); + [CCode (cname = "mpd_search_queue_songs")] + public bool search_queue_songs(bool exact); + [CCode (cname = "mpd_search_db_tags")] + public bool search_db_tags(TagType type); + [CCode (cname = "mpd_count_db_songs")] + public bool count_db_songs(); + [CCode (cname = "mpd_search_add_uri_constraint")] + public bool search_add_uri_constraint(Operator oper, string value); + [CCode (cname = "mpd_search_add_tag_constraint")] + public bool search_add_tag_constraint(Operator oper, TagType type, string value); + [CCode (cname = "mpd_search_add_any_tag_constraint")] + public bool search_add_any_tag_constraint(Operator oper, string value); + [CCode (cname = "mpd_search_commit")] + public bool search_commit(); + [CCode (cname = "mpd_search_cancel")] + public bool search_cancel(); + [CCode (cname = "mpd_recv_pair_tag")] + public Pair recv_pair_tag(TagType type); + [CCode (cname = "mpd_send_command")] + public bool send_command(string command, ...); + [CCode (cname = "mpd_recv_song")] + public Song recv_song(); + [CCode (cname = "mpd_send_status")] + public bool send_status(); + [CCode (cname = "mpd_recv_status")] + public Status recv_status(); + [CCode (cname = "mpd_run_status")] + public Status run_status(); + [CCode (cname = "mpd_send_allowed_commands")] + public bool send_allowed_commands(); + [CCode (cname = "mpd_send_disallowed_commands")] + public bool send_disallowed_commands(); + [CCode (cname = "mpd_recv_command_pair")] + public Pair? recv_command_pair(); + [CCode (cname = "mpd_send_list_url_schemes")] + public bool send_list_url_schemas(); + [CCode (cname = "mpd_recv_url_scheme_pair")] + public Pair? recv_url_scheme_pair(); + [CCode (cname = "mpd_send_list_tag_types")] + public bool send_list_tag_types(); + [CCode (cname = "mpd_recv_tag_type_pair")] + public Pair? recv_tag_type_pair(); + [CCode (cname = "mpd_send_list_all")] + public bool send_list_all(string path); + [CCode (cname = "mpd_send_list_all_meta")] + public bool send_list_all_meta(string path); + [CCode (cname = "mpd_send_list_meta")] + public bool send_list_meta(string path); + [CCode (cname = "mpd_send_update")] + public bool send_update(string? path = null); + [CCode (cname = "mpd_send_rescan")] + public bool send_rescan(string? path = null); + [CCode (cname = "mpd_recv_update_id")] + public uint recv_update_id(); + [CCode (cname = "mpd_run_update")] + public uint run_update(string? path = null); + [CCode (cname = "mpd_run_rescan")] + public uint run_rescan(string? path = null); + [CCode (cname = "mpd_send_idle")] + public bool send_idle(); + [CCode (cname = "mpd_send_idle_mask")] + public bool send_idle_mask(Idle mask); + [CCode (cname = "mpd_send_noidle")] + public bool send_noidle(); + [CCode (cname = "mpd_recv_idle")] + public Idle recv_idle(bool disable_timeout); + [CCode (cname = "mpd_run_idle")] + public Idle run_idle(); + [CCode (cname = "mpd_run_idle_mask")] + public Idle run_idle_mask(Idle mask); + [CCode (cname = "mpd_run_noidle")] + public Idle run_noidle(); + [CCode (cname = "mpd_send_stats")] + public bool send_stats(); + [CCode (cname = "mpd_recv_stats")] + public Stats recv_stats(); + [CCode (cname = "mpd_run_stats")] + public Stats run_stats(); + [CCode (cname = "mpd_send_sticker_set")] + public bool send_sticker_set(string type, string uri, string name, string value); + [CCode (cname = "mpd_run_sticker_set")] + public bool run_sticker_set(string type, string uri, string name, string value); + [CCode (cname = "mpd_send_sticker_delete")] + public bool send_sticker_delete(string type, string uri, string name); + [CCode (cname = "mpd_run_sticker_delete")] + public bool run_sticker_delete(string type, string uri, string name); + [CCode (cname = "mpd_send_sticker_get")] + public bool send_sticker_get(string type, string uri, string name); + [CCode (cname = "mpd_send_sticker_list")] + public bool send_sticker_list(string type, string uri); + [CCode (cname = "mpd_send_sticker_find")] + public bool send_sticker_find(string type, string base_uri, string name); + [CCode (cname = "mpd_recv_sticker")] + public Pair recv_sticker(); + [CCode (cname = "mpd_return_sticker")] + public void return_sticker(Pair pair); + [CCode (cname = "mpd_send_list_queue_meta")] + public bool send_list_queue_meta(); + [CCode (cname = "mpd_send_list_queue_range_meta")] + public bool send_list_queue_range_meta(uint start, uint end); + [CCode (cname = "mpd_send_get_queue_song_pos")] + public bool send_get_queue_song_pos(uint pos); + [CCode (cname = "mpd_run_get_queue_song_pos")] + public Song run_get_queue_song_pos(uint pos); + [CCode (cname = "mpd_send_get_queue_song_id")] + public bool send_get_queue_song_id(uint id); + [CCode (cname = "mpd_run_get_queue_song_id")] + public Song run_get_queue_song_id(uint id); + [CCode (cname = "mpd_send_queue_changes_meta")] + public bool send_queue_changes_meta(uint version); + [CCode (cname = "mpd_send_queue_changes_brief")] + public bool send_queue_changes_brief(uint version); + [CCode (cname = "mpd_recv_queue_change_brief")] + public bool recv_queue_change_brief(out uint position_r, out uint id_r); + [CCode (cname = "mpd_send_add")] + public bool send_add(string file); + [CCode (cname = "mpd_run_add")] + public bool run_add(string uri); + [CCode (cname = "mpd_send_add_id")] + public bool send_add_id(string file); + [CCode (cname = "mpd_send_add_id_to")] + public bool send_add_id_to(string uri, uint to); + [CCode (cname = "mpd_recv_song_id")] + public int recv_song_id(); + [CCode (cname = "mpd_run_add_id")] + public int run_add_id(string file); + [CCode (cname = "mpd_run_add_id_to")] + public int run_add_id_to(string uri, uint to); + [CCode (cname = "mpd_send_delete")] + public bool send_delete(uint pos); + [CCode (cname = "mpd_run_delete")] + public bool run_delete(uint pos); + [CCode (cname = "mpd_send_delete_range")] + public bool send_delete_range(uint start, uint end); + [CCode (cname = "mpd_run_delete_range")] + public bool run_delete_range(uint start, uint end); + [CCode (cname = "mpd_send_delete_id")] + public bool send_delete_id(uint id); + [CCode (cname = "mpd_run_delete_id")] + public bool run_delete_id(uint id); + [CCode (cname = "mpd_send_shuffle")] + public bool send_shuffle(); + [CCode (cname = "mpd_run_shuffle")] + public bool run_shuffle(); + [CCode (cname = "mpd_send_shuffle_range")] + public bool send_shuffle_range(uint start, uint end); + [CCode (cname = "mpd_run_shuffle_range")] + public bool run_shuffle_range(uint start, uint end); + [CCode (cname = "mpd_send_clear")] + public bool send_clear(); + [CCode (cname = "mpd_run_clear")] + public bool run_clear(); + [CCode (cname = "mpd_send_move")] + public bool send_move(uint from, uint to); + [CCode (cname = "mpd_run_move")] + public bool run_move(uint from, uint to); + [CCode (cname = "mpd_send_move_id")] + public bool send_move_id(uint from, uint to); + [CCode (cname = "mpd_run_move_id")] + public bool run_move_id(uint from, uint to); + [CCode (cname = "mpd_send_move_range")] + public bool send_move_range(uint start, uint end, uint to); + [CCode (cname = "mpd_run_move_range")] + public bool run_move_range(uint start, uint end, uint to); + [CCode (cname = "mpd_send_swap")] + public bool send_swap(uint pos1, uint pos2); + [CCode (cname = "mpd_run_swap")] + public bool run_swap(uint pos1, uint pos2); + [CCode (cname = "mpd_send_swap_id")] + public bool send_swap_id(uint id1, uint id2); + [CCode (cname = "mpd_run_swap_id")] + public bool run_swap_id(uint id1, uint id2); + [CCode (cname = "mpd_send_prio")] + public bool send_prio(int priority, uint position); + [CCode (cname = "mpd_run_prio")] + public bool run_prio(int priority, uint position); + [CCode (cname = "mpd_send_prio_range")] + public bool send_prio_range(int priority, uint start, uint end); + [CCode (cname = "mpd_run_prio_range")] + public bool run_prio_range(int priority, uint start, uint end); + [CCode (cname = "mpd_send_prio_id")] + public bool send_prio_id(int priority, uint id); + [CCode (cname = "mpd_run_prio_id")] + public bool run_prio_id(int priority, uint id); + [CCode (cname = "mpd_send_current_song")] + public bool send_current_song(); + [CCode (cname = "mpd_run_current_song")] + public Song run_current_song(); + [CCode (cname = "mpd_send_play")] + public bool send_play(); + [CCode (cname = "mpd_run_play")] + public bool run_play(); + [CCode (cname = "mpd_send_play_pos")] + public bool send_play_pos(uint song_pos); + [CCode (cname = "mpd_run_play_pos")] + public bool run_play_pos(uint song_pos); + [CCode (cname = "mpd_send_play_id")] + public bool send_play_id(uint id); + [CCode (cname = "mpd_run_play_id")] + public bool run_play_id(uint song_id); + [CCode (cname = "mpd_send_stop")] + public bool send_stop(); + [CCode (cname = "mpd_run_stop")] + public bool run_stop(); + [CCode (cname = "mpd_send_toggle_pause")] + public bool send_toggle_pause(); + [CCode (cname = "mpd_run_toggle_pause")] + public bool run_toggle_pause(); + [CCode (cname = "mpd_send_pause")] + public bool send_pause(bool mode); + [CCode (cname = "mpd_run_pause")] + public bool run_pause(bool mode); + [CCode (cname = "mpd_send_next")] + public bool send_next(); + [CCode (cname = "mpd_run_next")] + public bool run_next(); + [CCode (cname = "mpd_send_previous")] + public bool send_previous(); + [CCode (cname = "mpd_run_previous")] + public bool run_previous(); + [CCode (cname = "mpd_send_seek_pos")] + public bool send_seek_pos(uint song_pos, uint t); + [CCode (cname = "mpd_run_seek_pos")] + public bool run_seek_pos(uint song_pos, uint t); + [CCode (cname = "mpd_send_seek_id")] + public bool send_seek_id(uint id, uint t); + [CCode (cname = "mpd_run_seek_id")] + public bool run_seek_id(uint song_id, uint t); + [CCode (cname = "mpd_send_repeat")] + public bool send_repeat(bool mode); + [CCode (cname = "mpd_run_repeat")] + public bool run_repeat(bool mode); + [CCode (cname = "mpd_send_random")] + public bool send_random(bool mode); + [CCode (cname = "mpd_run_random")] + public bool run_random(bool mode); + [CCode (cname = "mpd_send_single")] + public bool send_single(bool mode); + [CCode (cname = "mpd_run_single")] + public bool run_single(bool mode); + [CCode (cname = "mpd_send_consume")] + public bool send_consume(bool mode); + [CCode (cname = "mpd_run_consume")] + public bool run_consume(bool mode); + [CCode (cname = "mpd_send_crossfade")] + public bool send_crossfade(uint seconds); + [CCode (cname = "mpd_run_crossfade")] + public bool run_crossfade(uint seconds); + [CCode (cname = "mpd_send_mixrampdb")] + public bool send_mixrampdb(float db); + [CCode (cname = "mpd_run_mixrampdb")] + public bool run_mixrampdb(float db); + [CCode (cname = "mpd_send_mixrampdelay")] + public bool send_mixrampdelay(float seconds); + [CCode (cname = "mpd_run_mixrampdelay")] + public bool run_mixrampdelay(float seconds); + [CCode (cname = "mpd_send_clearerror")] + public bool send_clearerror(); + [CCode (cname = "mpd_run_clearerror")] + public bool run_clearerror(); + [CCode (cname = "mpd_send_list_playlists")] + public bool send_list_playlists(); + [CCode (cname = "mpd_send_subscribe")] + public bool send_subscribe(string channel); + [CCode (cname = "mpd_run_subscribe")] + public bool run_subscribe(string channel); + [CCode (cname = "mpd_send_unsubscribe")] + public bool send_unsubscribe(string channel); + [CCode (cname = "mpd_run_unsubscribe")] + public bool run_unsubscribe(string channel); + [CCode (cname = "mpd_send_send_message")] + public bool send_send_message(string channel, string text); + [CCode (cname = "mpd_run_send_message")] + public bool run_send_message(string channel, string text); + [CCode (cname = "mpd_send_read_messages")] + public bool send_read_messages(); + [CCode (cname = "mpd_recv_message")] + public Message recv_message(); + [CCode (cname = "mpd_send_channels")] + public bool send_channels(); + [CCode (cname = "mpd_recv_channel_pair")] + public Pair recv_channel_pair(); + } + + [CCode (cname = "struct mpd_directory", + copy_function = "mpd_directory_dup", + free_function = "mpd_directory_free")] + [Compact] + public class Directory { + public string path { get; } + + public unowned string get_path(); + public bool feed(Mpd.Pair pair); + public Entity? entity_begin(); + } + + [CCode (cname = "struct mpd_entity", + free_function = "mpd_entity_free")] + [Compact] + public class Entity { + public EntityType type { get; } + public Directory directory { get; } + public Song song { get; } + public Playlist playlist { get; } + + public EntityType get_type(); + public Directory get_directory(); + public Song get_song(); + public Playlist get_playlist(); + public bool feed(Pair pair); + } + + [CCode (cname = "struct mpd_output", + free_function = "mpd_output_free")] + [Compact] + public class Output { + public uint id { get; } + public string name { get; } + public bool enabled { get; } + + public bool feed(Pair pair); + public uint get_id(); + public unowned string get_name(); + public bool get_enabled(); + } + + [CCode (cname = "struct mpd_pair", + free_function = "")] + [Compact] + public class Pair { + public unowned string name; + public unowned string value; + [CCode (cname = "mpd_directory_begin")] + public Directory? directory_begin(); + [CCode (cname = "mpd_output_begin")] + public Output output_begin(); + [CCode (cname = "mpd_playlist_begin")] + public Playlist playlist_begin(); + [CCode (cname = "mpd_song_begin")] + public Song song_begin(); + [CCode (cname = "mpd_idle_parse_pair")] + public Idle idle_parse_pair(); + } + + [CCode (cname = "struct mpd_parser", + free_function = "mpd_parser_free")] + [Compact] + public class Parser { + public ServerError server_error { get; } + public uint at { get; } + public string message { get; } + public string name { get; } + public string value { get; } + + public ParserResult feed(string line); + public bool is_discrete(); + public ServerError get_server_error(); + public uint get_at(); + public unowned string get_message(); + public unowned string get_name(); + public unowned string get_value(); + } + + [CCode (cname = "struct mpd_playlist", + copy_function = "mpd_playlist_dup", + free_function = "mpd_playlist_free")] + [Compact] + public class Playlist { + public string path { get; } + public int64 last_modified { get; } + + public string get_path(); + public int64 get_last_modified(); + public bool feed(Pair pair); + } + + [CCode (cname = "struct mpd_song", + copy_function = "mpd_song_dup", + free_function = "mpd_song_free")] + [Compact] + public class Song { + public string uri { get; } + public uint duration { get; } + public int64 last_modified { get; } + public uint pos { get; set; } + public uint id { get; } + + public unowned string get_uri(); + public unowned string get_tag(TagType type, uint idx = 0); + public uint get_duration(); + public int64 get_last_modified(); + public void set_pos(uint pos); + public uint get_pos(); + public uint get_id(); + public bool feed(Pair pair); + } + + [CCode (cname = "struct mpd_stats", + free_function = "mpd_stats_free")] + [Compact] + public class Stats { + public uint number_of_artist { get; } + public uint number_of_albums { get; } + public uint number_of_songs { get; } + public ulong uptime { get; } + public ulong db_update_time { get; } + public ulong play_time { get; } + public ulong db_play_time { get; } + + public void feed(Pair pair); + public uint get_number_of_artists(); + public uint get_number_of_albums(); + public uint get_number_of_songs(); + public ulong get_uptime(); + public ulong get_db_update_time(); + public ulong get_play_time(); + public ulong get_db_play_time(); + } + + [CCode (cname = "struct mpd_status", + free_function = "mpd_status_free")] + [Compact] + public class Status { + public int volume { get; } + public bool repeat { get; } + public bool random { get; } + public bool single { get; } + public bool consume { get; } + public uint queue_length { get; } + public uint queue_version { get; } + public State state { get; } + public uint crossfade { get; } + public float mixrampdb { get; } + public float mixrampdelay { get; } + public int song_pos { get; } + public int song_id { get; } + public uint elapsed_time { get; } + public uint elapsed_ms { get; } + public uint total_time { get; } + public uint kbit_rate { get; } + public AudioFormat audio_format { get; } + public uint update_id { get; } + public string error { get; } + + public int get_volume(); + public bool get_repeat(); + public bool get_random(); + public bool get_single(); + public bool get_consume(); + public uint get_queue_length(); + public uint get_queue_version(); + public State get_state(); + public uint get_crossfade(); + public float get_mixrampdb(); + public float get_mixrampdelay(); + public int get_song_pos(); + public int get_song_id(); + public int get_next_song_pos(); + public int get_next_song_id(); + public uint get_elapsed_time(); + public uint get_elapsed_ms(); + public uint get_total_time(); + public uint get_kbit_rate(); + public AudioFormat get_audio_format(); + public uint get_update_id(); + public unowned string get_error(); + } + + [CCode (cname = "struct mpd_settings", + free_function = "mpd_settings_free")] + [Compact] + public class Settings { + public string? host { get; } + public uint port { get; } + public uint timeout_ms { get; } + public string? password { get; } + + public Settings(string? host = null, uint port = 0, uint timeout_ms = 0, string? reserved = null, string? password = null); + public string? get_host(); + public uint get_port(); + public uint get_timeout_ms(); + public string? get_password(); + } + + [CCode (cname = "struct mpd_message", + free_function = "mpd_message_free")] + [Compact] + public class Message { + public string channel { get; } + public string text { get; } + + public bool feed(Pair pair); + public unowned string get_channel(); + public unowned string get_text(); + } + + public Status status_begin(); + public unowned string tag_name(TagType type); + public TagType tag_name_parse(string name); + public TagType tag_name_iparse(string name); + public unowned string? idle_name(Idle idle); + public Idle idle_name_parse(string name); + public Stats stats_begin(); + public unowned string parse_sticker(string input, out int64 name_length_r); + + public const string LIBMPDCLIENT_MAJOR_VERSION; + public const string LIBMPDCLIENT_MINOR_VERSION; + public const string LIBMPDCLIENT_PATCH_VERSION; +} diff --git a/1_6.h12_dev/render/arm_renderer b/1_6.h12_dev/render/arm_renderer new file mode 160000 index 0000000..20fd332 --- /dev/null +++ b/1_6.h12_dev/render/arm_renderer @@ -0,0 +1 @@ +Subproject commit 20fd332f3de200f49950c69af09cb72ae9ac6fb1 diff --git a/1_6.h12_dev/render/arm_renderer_tmp b/1_6.h12_dev/render/arm_renderer_tmp new file mode 160000 index 0000000..20fd332 --- /dev/null +++ b/1_6.h12_dev/render/arm_renderer_tmp @@ -0,0 +1 @@ +Subproject commit 20fd332f3de200f49950c69af09cb72ae9ac6fb1 diff --git a/1_6.h12_dev/render/hdmibsp b/1_6.h12_dev/render/hdmibsp new file mode 160000 index 0000000..fc4b53e --- /dev/null +++ b/1_6.h12_dev/render/hdmibsp @@ -0,0 +1 @@ +Subproject commit fc4b53e36a3bb4107e526b70de4c601b19f96d1e diff --git a/1_6.h12_dev/render/include/Makefile b/1_6.h12_dev/render/include/Makefile new file mode 100644 index 0000000..627f0a7 --- /dev/null +++ b/1_6.h12_dev/render/include/Makefile @@ -0,0 +1,367 @@ +# Makefile.in generated by automake 1.9.6 from Makefile.am. +# include/Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + +srcdir = . +top_srcdir = .. + +pkgdatadir = $(datadir)/renderer +pkglibdir = $(libdir)/renderer +pkgincludedir = $(includedir)/renderer +top_builddir = .. +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = /usr/bin/install -c +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-pc-linux-gnu +host_triplet = arm-unknown-linux-androideabi +subdir = include +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(renderer_includedir)" +renderer_includeDATA_INSTALL = $(INSTALL_DATA) +DATA = $(renderer_include_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/missing --run aclocal-1.9 +AMDEP_FALSE = # +AMDEP_TRUE = +AMTAR = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/missing --run tar +AR = arm-linux-androideabi-ar +AUTOCONF = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/missing --run autoconf +AUTOHEADER = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/missing --run autoheader +AUTOMAKE = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/missing --run automake-1.9 +AWK = gawk +CC = arm-linux-androideabi-gcc +CCDEPMODE = depmode=gcc3 +CFLAGS = -g -O2 +CPP = arm-linux-androideabi-gcc -E +CPPFLAGS = +CXX = arm-linux-androideabi-g++ +CXXCPP = arm-linux-androideabi-g++ -E +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = -g -O2 +CYGPATH_W = echo +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +ECHO = echo +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /bin/grep -E +EXEEXT = +F77 = +FFLAGS = +GREP = /bin/grep +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s +LDFLAGS = +LIBOBJS = +LIBS = +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LN_S = ln -s +LTLIBOBJS = +MAINT = # +MAINTAINER_MODE_FALSE = +MAINTAINER_MODE_TRUE = # +MAKEINFO = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/missing --run makeinfo +NO_PREFIX_PACKAGE_DATA_DIR = share +NO_PREFIX_PACKAGE_DOC_DIR = doc/renderer +NO_PREFIX_PACKAGE_HELP_DIR = share/help +NO_PREFIX_PACKAGE_MENU_DIR = share +NO_PREFIX_PACKAGE_PIXMAPS_DIR = share/pixmaps +OBJEXT = o +PACKAGE = renderer +PACKAGE_BUGREPORT = +PACKAGE_DATA_DIR = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/tmp/share +PACKAGE_DOC_DIR = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/tmp/doc/renderer +PACKAGE_HELP_DIR = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/tmp/share/help +PACKAGE_MENU_DIR = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/tmp/share +PACKAGE_NAME = +PACKAGE_PIXMAPS_DIR = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/tmp/share/pixmaps +PACKAGE_STRING = +PACKAGE_TARNAME = +PACKAGE_VERSION = +PATH_SEPARATOR = : +RANLIB = arm-linux-androideabi-ranlib +SET_MAKE = +SHELL = /bin/bash +STRIP = arm-linux-androideabi-strip +VERSION = 0.1.1 +ac_ct_CC = +ac_ct_CXX = +ac_ct_F77 = +am__fastdepCC_FALSE = # +am__fastdepCC_TRUE = +am__fastdepCXX_FALSE = # +am__fastdepCXX_TRUE = +am__include = include +am__leading_dot = . +am__quote = +am__tar = ${AMTAR} chof - "$$tardir" +am__untar = ${AMTAR} xf - +bindir = ${exec_prefix}/bin +build = x86_64-pc-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = pc +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = arm-unknown-linux-androideabi +host_alias = arm-linux-androideabi +host_cpu = arm +host_os = linux-androideabi +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = mkdir -p -- +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/arm_renderer/tmp +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +sysconfdir = ${prefix}/etc +target_alias = +renderer_includedir = $(pkgincludedir) +renderer_include_DATA = \ + cService.h\ + cRenderingControl.h\ + cRenderer.h\ + cConnectionManager.h\ + cAVTransport.h + +EXTRA_DIST = $(renderer_include_DATA) +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu include/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: # $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): # $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: +install-renderer_includeDATA: $(renderer_include_DATA) + @$(NORMAL_INSTALL) + test -z "$(renderer_includedir)" || $(mkdir_p) "$(DESTDIR)$(renderer_includedir)" + @list='$(renderer_include_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(renderer_includeDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(renderer_includedir)/$$f'"; \ + $(renderer_includeDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(renderer_includedir)/$$f"; \ + done + +uninstall-renderer_includeDATA: + @$(NORMAL_UNINSTALL) + @list='$(renderer_include_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(renderer_includedir)/$$f'"; \ + rm -f "$(DESTDIR)$(renderer_includedir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(renderer_includedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-libtool + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-renderer_includeDATA + +install-exec-am: + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am uninstall-renderer_includeDATA + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man \ + install-renderer_includeDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am uninstall-renderer_includeDATA + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/1_6.h12_dev/render/include/Makefile.am b/1_6.h12_dev/render/include/Makefile.am new file mode 100644 index 0000000..fedcba8 --- /dev/null +++ b/1_6.h12_dev/render/include/Makefile.am @@ -0,0 +1,16 @@ +## Process this file with automake to produce Makefile.in + +## Created by Anjuta - will be overwritten +## If you don't want it to overwrite it, +## Please disable it in the Anjuta project configuration + +renderer_includedir = $(pkgincludedir) + +renderer_include_DATA = \ + cService.h\ + cRenderingControl.h\ + cRenderer.h\ + cConnectionManager.h\ + cAVTransport.h + +EXTRA_DIST = $(renderer_include_DATA) diff --git a/1_6.h12_dev/render/include/Makefile.in b/1_6.h12_dev/render/include/Makefile.in new file mode 100644 index 0000000..8df348b --- /dev/null +++ b/1_6.h12_dev/render/include/Makefile.in @@ -0,0 +1,367 @@ +# Makefile.in generated by automake 1.9.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +top_builddir = .. +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = include +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(renderer_includedir)" +renderer_includeDATA_INSTALL = $(INSTALL_DATA) +DATA = $(renderer_include_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +GREP = @GREP@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ +MAKEINFO = @MAKEINFO@ +NO_PREFIX_PACKAGE_DATA_DIR = @NO_PREFIX_PACKAGE_DATA_DIR@ +NO_PREFIX_PACKAGE_DOC_DIR = @NO_PREFIX_PACKAGE_DOC_DIR@ +NO_PREFIX_PACKAGE_HELP_DIR = @NO_PREFIX_PACKAGE_HELP_DIR@ +NO_PREFIX_PACKAGE_MENU_DIR = @NO_PREFIX_PACKAGE_MENU_DIR@ +NO_PREFIX_PACKAGE_PIXMAPS_DIR = @NO_PREFIX_PACKAGE_PIXMAPS_DIR@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_DATA_DIR = @PACKAGE_DATA_DIR@ +PACKAGE_DOC_DIR = @PACKAGE_DOC_DIR@ +PACKAGE_HELP_DIR = @PACKAGE_HELP_DIR@ +PACKAGE_MENU_DIR = @PACKAGE_MENU_DIR@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_PIXMAPS_DIR = @PACKAGE_PIXMAPS_DIR@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +renderer_includedir = $(pkgincludedir) +renderer_include_DATA = \ + cService.h\ + cRenderingControl.h\ + cRenderer.h\ + cConnectionManager.h\ + cAVTransport.h + +EXTRA_DIST = $(renderer_include_DATA) +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu include/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: +install-renderer_includeDATA: $(renderer_include_DATA) + @$(NORMAL_INSTALL) + test -z "$(renderer_includedir)" || $(mkdir_p) "$(DESTDIR)$(renderer_includedir)" + @list='$(renderer_include_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(renderer_includeDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(renderer_includedir)/$$f'"; \ + $(renderer_includeDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(renderer_includedir)/$$f"; \ + done + +uninstall-renderer_includeDATA: + @$(NORMAL_UNINSTALL) + @list='$(renderer_include_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(renderer_includedir)/$$f'"; \ + rm -f "$(DESTDIR)$(renderer_includedir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(renderer_includedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-libtool + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-renderer_includeDATA + +install-exec-am: + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am uninstall-renderer_includeDATA + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man \ + install-renderer_includeDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am uninstall-renderer_includeDATA + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/1_6.h12_dev/render/include/UpnpGlobal.h b/1_6.h12_dev/render/include/UpnpGlobal.h new file mode 100644 index 0000000..a2872f3 --- /dev/null +++ b/1_6.h12_dev/render/include/UpnpGlobal.h @@ -0,0 +1,122 @@ +#ifndef UPNPGLOBAL_H +#define UPNPGLOBAL_H + +/*! + * \file + * + * \brief Defines constants that for some reason are not defined on some systems. + */ + +#if defined MYLIB_LARGEFILE_SENSITIVE && _FILE_OFFSET_BITS+0 != 64 + #if defined __GNUC__ + #warning libupnp requires largefile mode - use AC_SYS_LARGEFILE + #else + #error libupnp requires largefile mode - use AC_SYS_LARGEFILE + #endif +#endif + +#ifdef WIN32 + /* + * EXPORT_SPEC + */ + #ifdef UPNP_STATIC_LIB + #define EXPORT_SPEC + #else /* UPNP_STATIC_LIB */ + #ifdef LIBUPNP_EXPORTS + /*! set up declspec for dll export to make functions + * visible to library users */ + #define EXPORT_SPEC __declspec(dllexport) + #else /* LIBUPNP_EXPORTS */ + #define EXPORT_SPEC __declspec(dllimport) + #endif /* LIBUPNP_EXPORTS */ + #endif /* UPNP_STATIC_LIB */ + + /* + * UPNP_INLINE + * PRId64 + * PRIzd + * PRIzu + * PRIzx + */ + #ifdef UPNP_USE_MSVCPP + /* define some things the M$ VC++ doesn't know */ + #define UPNP_INLINE _inline + typedef __int64 int64_t; + #define PRId64 "I64d" + #define PRIzd "ld" + #define PRIzu "lu" + #define PRIzx "lx" + #endif /* UPNP_USE_MSVCPP */ + + #ifdef UPNP_USE_BCBPP + /* define some things Borland Builder doesn't know */ + #define UPNP_INLINE inline + typedef __int64 int64_t; + #warning The Borland C compiler is probably broken on PRId64, + #warning please someone provide a proper fix here + #define PRId64 "I64d" + #define PRIzd "zd" + #define PRIzu "zu" + #define PRIzx "zx" + #endif /* UPNP_USE_BCBPP */ + + #ifdef __GNUC__ + #define UPNP_INLINE inline + /* Note with PRIzu that in the case of Mingw32, it's the MS C + * runtime printf which ends up getting called, not the glibc + * printf, so it genuinely doesn't have "zu" + */ + #define PRIzd "ld" + #define PRIzu "lu" + #define PRIzx "lx" + #endif /* __GNUC__ */ +#else + /*! + * \brief Export functions on WIN32 DLLs. + * + * Every funtion that belongs to the library API must use this + * definition upon declaration or it will not be exported on WIN32 + * DLLs. + */ + #define EXPORT_SPEC + + /*! + * \brief Declares an inline function. + * + * Surprisingly, there are some compilers that do not understand the + * inline keyword. This definition makes the use of this keyword + * portable to these systems. + */ + #ifdef __STRICT_ANSI__ + #define UPNP_INLINE __inline__ + #else + #define UPNP_INLINE inline + #endif + + /*! + * \brief Supply the PRId64 printf() macro. + * + * MSVC still does not know about this. + */ + /* #define PRId64 PRId64 */ + + /*! + * \brief Supply the PRIz* printf() macros. + * + * These macros were invented so that we can live a little longer with + * MSVC lack of C99. "z" is the correct printf() size specifier for + * the size_t type. + */ + #define PRIzd "zd" + #define PRIzu "zu" + #define PRIzx "zx" +#endif + +/* + * Defining this macro here gives some interesting information about unused + * functions in the code. Of course, this should never go uncommented on a + * release. + */ +/*#define inline*/ + +#endif /* UPNPGLOBAL_H */ diff --git a/1_6.h12_dev/render/include/UpnpInet.h b/1_6.h12_dev/render/include/UpnpInet.h new file mode 100644 index 0000000..ad00a7d --- /dev/null +++ b/1_6.h12_dev/render/include/UpnpInet.h @@ -0,0 +1,67 @@ +#ifndef UPNPINET_H +#define UPNPINET_H + +/*! + * \addtogroup Sock + * + * @{ + * + * \file + * + * \brief Provides a platform independent way to include TCP/IP types and functions. + */ + +#include "UpnpUniStd.h" /* for close() */ + +#ifdef WIN32 + #include + #ifndef UPNP_USE_MSVCPP + /* Removed: not required (and cause compilation issues) */ + #include + #include + #endif + #include + #include + #include + + #define UpnpCloseSocket closesocket + + #if(_WIN32_WINNT < 0x0600) + typedef short sa_family_t; + #else + typedef ADDRESS_FAMILY sa_family_t; + #endif + +#else /* WIN32 */ + #include + #if defined(__sun) + #include + #include + #elif (defined(BSD) && BSD >= 199306) || defined (__FreeBSD_kernel__) + #include + /* Do not move or remove the include below for "sys/socket"! + * Will break FreeBSD builds. */ + #include + #endif + #include /* for inet_pton() */ + #include + #include + + /*! This typedef makes the code slightly more WIN32 tolerant. + * On WIN32 systems, SOCKET is unsigned and is not a file + * descriptor. */ + typedef int SOCKET; + + /*! INVALID_SOCKET is unsigned on win32. */ + #define INVALID_SOCKET (-1) + + /*! select() returns SOCKET_ERROR on win32. */ + #define SOCKET_ERROR (-1) + + /*! Alias to close() to make code more WIN32 tolerant. */ + #define UpnpCloseSocket close +#endif /* WIN32 */ + +/* @} Sock */ + +#endif /* UPNPINET_H */ diff --git a/1_6.h12_dev/render/include/UpnpIntTypes.h b/1_6.h12_dev/render/include/UpnpIntTypes.h new file mode 100644 index 0000000..4575960 --- /dev/null +++ b/1_6.h12_dev/render/include/UpnpIntTypes.h @@ -0,0 +1,11 @@ +#ifndef UPNPINTTYPES_H +#define UPNPINTTYPES_H + +#if !defined(UPNP_USE_BCBPP) + +/* Printf format for integers. */ +#include + +#endif /* !defined(UPNP_USE_BCBPP) */ + +#endif /* UPNPINTTYPES_H */ diff --git a/1_6.h12_dev/render/include/UpnpStdInt.h b/1_6.h12_dev/render/include/UpnpStdInt.h new file mode 100644 index 0000000..9256f57 --- /dev/null +++ b/1_6.h12_dev/render/include/UpnpStdInt.h @@ -0,0 +1,20 @@ +#ifndef UPNPSTDINT_H +#define UPNPSTDINT_H + +#if !defined(UPNP_USE_BCBPP) + +/* Sized integer types. */ +#include + +#ifdef UPNP_USE_MSVCPP + /* no ssize_t defined for VC */ + #ifdef _WIN64 + typedef int64_t ssize_t; + #else + typedef int32_t ssize_t; + #endif +#endif + +#endif /* !defined(UPNP_USE_BCBPP) */ + +#endif /* UPNPSTDINT_H */ diff --git a/1_6.h12_dev/render/include/UpnpString.h b/1_6.h12_dev/render/include/UpnpString.h new file mode 100644 index 0000000..dfa5cbe --- /dev/null +++ b/1_6.h12_dev/render/include/UpnpString.h @@ -0,0 +1,171 @@ + + +#ifndef STRING_H +#define STRING_H + + +/*! + * \defgroup UpnpString The UpnpString Class + * + * \brief Implements string operations in the UPnP library. + * + * \author Marcelo Roberto Jimenez + * + * \version 1.0 + * + * @{ + * + * \file + * + * \brief UpnpString object declaration. + */ + + +#include "UpnpGlobal.h" /* for EXPORT_SPEC */ + + +#include /* for size_t */ + + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + + +/*! + * \brief Type of the string objects inside libupnp. + */ +typedef struct s_UpnpString UpnpString; + + +/*! + * \brief Constructor. + * + * \return A pointer to a new allocated object. + */ +EXPORT_SPEC UpnpString *UpnpString_new(); + + +/*! + * \brief Destructor. + */ +EXPORT_SPEC void UpnpString_delete( + /*! [in] The \em \b this pointer. */ + UpnpString *p); + + +/*! + * \brief Copy Constructor. + * + * \return A pointer to a new allocated copy of the original object. + */ +EXPORT_SPEC UpnpString *UpnpString_dup( + /*! [in] The \em \b this pointer. */ + const UpnpString *p); + + +/*! + * \brief Assignment operator. + */ +EXPORT_SPEC void UpnpString_assign( + /*! [in] The \em \b this pointer. */ + UpnpString *p, + /*! [in] The \em \b that pointer. */ + const UpnpString *q); + + +/*! + * \brief Returns the length of the string. + * + * \return The length of the string. + * */ +EXPORT_SPEC size_t UpnpString_get_Length( + /*! [in] The \em \b this pointer. */ + const UpnpString *p); + + +/*! + * \brief Truncates the string to the specified lenght, or does nothing + * if the current lenght is less than or equal to the requested length. + * */ +EXPORT_SPEC void UpnpString_set_Length( + /*! [in] The \em \b this pointer. */ + UpnpString *p, + /*! [in] The requested length. */ + size_t n); + + +/*! + * \brief Returns the pointer to char. + * + * \return The pointer to char. + */ +EXPORT_SPEC const char *UpnpString_get_String( + /*! [in] The \em \b this pointer. */ + const UpnpString *p); + + +/*! + * \brief Sets the string from a pointer to char. + */ +EXPORT_SPEC int UpnpString_set_String( + /*! [in] The \em \b this pointer. */ + UpnpString *p, + /*! [in] (char *) to copy from. */ + const char *s); + + +/*! + * \brief Sets the string from a pointer to char using a maximum of N chars. + */ +EXPORT_SPEC int UpnpString_set_StringN( + /*! [in] The \em \b this pointer. */ + UpnpString *p, + /*! [in] (char *) to copy from. */ + const char *s, + /*! Maximum number of chars to copy.*/ + size_t n); + + +/*! + * \brief Clears the string, sets its size to zero. + */ +EXPORT_SPEC void UpnpString_clear( + /*! [in] The \em \b this pointer. */ + UpnpString *p); + + +/*! + * \brief Compares two strings for equality. Case matters. + * + * \return The result of strcmp(). + */ +EXPORT_SPEC int UpnpString_cmp( + /*! [in] The \em \b the first string. */ + UpnpString *p, + /*! [in] The \em \b the second string. */ + UpnpString *q); + + +/*! + * \brief Compares two strings for equality. Case does not matter. + * + * \return The result of strcasecmp(). + */ +EXPORT_SPEC int UpnpString_casecmp( + /*! [in] The \em \b the first string. */ + UpnpString *p, + /*! [in] The \em \b the second string. */ + UpnpString *q); + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + + +/* @} UpnpString The UpnpString API */ + + +#endif /* STRING_H */ + diff --git a/1_6.h12_dev/render/include/UpnpUniStd.h b/1_6.h12_dev/render/include/UpnpUniStd.h new file mode 100644 index 0000000..ee10e3a --- /dev/null +++ b/1_6.h12_dev/render/include/UpnpUniStd.h @@ -0,0 +1,10 @@ +#ifndef UPNPUNISTD_H +#define UPNPUNISTD_H + +#ifdef WIN32 + /* Do not #include on WIN32. */ +#else /* WIN32 */ + #include /* for close() */ +#endif /* WIN32 */ + +#endif /* UPNPUNISTD_H */ diff --git a/1_6.h12_dev/render/include/cAVTransport.h b/1_6.h12_dev/render/include/cAVTransport.h new file mode 100644 index 0000000..2077f76 --- /dev/null +++ b/1_6.h12_dev/render/include/cAVTransport.h @@ -0,0 +1,100 @@ +/* + * Copyright (C) 2006 by: + * Da He + * Julian Flake + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + + +#ifndef _CAVTRANSPORT_H_ +#define _CAVTRANSPORT_H_ +#include "cService.h" + + +class cAVTransport : public cService +{ + public: + cAVTransport(void* lnkcRenderer); + ~cAVTransport(); + enum vars { + AV_CurrentPlayMode, + AV_RecordStorageMedium, + AV_LastChange, + AV_RelativeTimePosition, + AV_CurrentTrackURI, + + AV_CurrentTrackDuration, + AV_CurrentRecordQualityMode, + AV_CurrentMediaDuration, + AV_AbsoluteCounterPosition, + AV_RelativeCounterPosition, + + AV_A_ARG_TYPE_InstanceID, + AV_AVTransportURI, + AV_TransportState, + AV_CurrentTrackMetaData, + AV_NextAVTransportURI, + + AV_PossibleRecordQualityModes, + AV_AbsoluteTimePosition, + AV_CurrentTrack, + AV_NextAVTransportURIMetaData, + AV_PlaybackStorageMedium, + + AV_CurrentTransportActions, + AV_RecordMediumWriteStatus, + AV_PossiblePlaybackStorageMedia, + AV_AVTransportURIMetaData, + AV_NumberOfTracks, + + AV_A_ARG_TYPE_SeekMode, + AV_A_ARG_TYPE_SeekTarget, + AV_PossibleRecordStorageMedia, + AV_TransportStatus, + AV_TransportPlaySpeed + }; + // Action-Functions + typedef int (cAVTransport::*ptr2fct)(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + ptr2fct actions[17]; + int callAction(int i,IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + + int SetAVTransportURI(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int SetNextAVTransportURI(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int GetMediaInfo(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int GetTransportInfo(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int GetPositionInfo(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int GetDeviceCapabilities(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int GetTransportSettings(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int Stop(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int Play(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int Pause(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int Record(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int Seek(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int Next(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int Previous(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int SetPlayMode(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int SetRecordQualityMode(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int GetCurrentTransportActions(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + + + + + protected: + +}; + + +#endif //_CAVTRANSPORT_H_ diff --git a/1_6.h12_dev/render/include/cConnectionManager.h b/1_6.h12_dev/render/include/cConnectionManager.h new file mode 100644 index 0000000..f0da238 --- /dev/null +++ b/1_6.h12_dev/render/include/cConnectionManager.h @@ -0,0 +1,61 @@ +/* + * Copyright (C) 2006 by: + * Da He + * Julian Flake + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + + +#ifndef _CCONNECTIONMANAGER_H_ +#define _CCONNECTIONMANAGER_H_ +#include "cService.h" +using namespace std; + +class cConnectionManager : public cService +{ + public: + cConnectionManager(void* lnkcRenderer); + ~cConnectionManager(); + enum vars{ + CM_A_ARG_TYPE_ProtocolInfo, + CM_A_ARG_TYPE_ConnectionStatus, + CM_A_ARG_TYPE_AVTransportID, + CM_A_ARG_TYPE_RcsID, + CM_A_ARG_TYPE_ConnectionID, + CM_A_ARG_TYPE_ConnectionManager, + CM_SourceProtocolInfo, + CM_SinkProtocolInfo, + CM_A_ARG_TYPE_Direction, + CM_CurrentConnectionIDs + }; + // Action-Functions + typedef int(cConnectionManager::*ptr2fct)(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + ptr2fct actions[5]; + int callAction(int i, IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + + int GetProtocolInfo(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int PrepareForConnection(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int ConnectionComplete(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int GetCurrentConnectionIDs(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + int GetCurrentConnectionInfo(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + + + protected: + +}; + + +#endif //_CCONNECTIONMANAGER_H_ diff --git a/1_6.h12_dev/render/include/cRenderer.h b/1_6.h12_dev/render/include/cRenderer.h new file mode 100644 index 0000000..fc2061b --- /dev/null +++ b/1_6.h12_dev/render/include/cRenderer.h @@ -0,0 +1,137 @@ +/* + * Copyright (C) 2006 by: + * Da He + * Julian Flake + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + + +#ifndef _CRENDERER_H +#define _CRENDERER_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +//#include + +#include +#include +#include +#include + +#include +#include "cService.h" +#include "cConnectionManager.h" +#include "cAVTransport.h" +#include "cRenderingControl.h" + +#define DEBUG +//#define DEFAULT_WEB_DIR "/etc/renderer" +#define DESC_URL_SIZE 200 +#define DUP2CLOSE(oldfd, newfd) (dup2(oldfd, newfd) == 0 && close(oldfd) == 0) + +using namespace std; + +class cRenderer { +private: + + char* web_root; + enum { + ConnectionManager, + AVTransport, + RenderingControl + }; + cService *services[3] ; + + // thread + pthread_t thread; + int iret; + #define PARENT_READ readpipe[0] + #define CHILD_WRITE readpipe[1] + #define CHILD_READ writepipe[0] + #define PARENT_WRITE writepipe[1] + FILE* readfp; + //pipe file + int writepipe[2], /* parent -> child */ + readpipe [2], /* child -> parent */ + errpipe[2]; + pid_t childpid; + // mutex + ithread_mutex_t rendererMutex; + ithread_mutex_t outputMutex; + + // methods + static void wakeup(int in); + IXML_Document* getDescriptionDoc(); + + void parseConfigFile(); + void trim(string& str); + void str_replace(string needle, string replacement, string& haystack); + void getVarName(string& varName, string& haystack); + void getValue(string& value, string& haystack); + char* get_uuid(); + char* generate_uuid(); + void handleOptions(int argc,char* argv[]); + void initVar(); + + void handleActionRequest(Upnp_Action_Request* Event); + void handleGetVarRequest(Upnp_State_Var_Request* Event); + void handleSubscriptionRequest(Upnp_Subscription_Request* Event); + +public: + + // global variables + char* udn; + char friendlyName[100]; + char xmlIcon[100]; + char* ip_addr; + char* mplayer_bin; + char* fullscreen; + + + UpnpDevice_Handle renderer_hdl; + cRenderer(int argc,char* argv[]); + ~cRenderer(); + static int callbackEventHandler (Upnp_EventType EventType, void *Event, void *Cookie); + int mypopen(char* uri); + static void* threadCreate( void *ptr ); + string showOutput(); + char* getXMLValue(IXML_Document *doc, char tagName[]); + //void setVar(Upnp_Action_Request *Event,int service, int var, char* val); + char* mplayer_cmd(char command[],bool output); + void mplayer_start(); + void seconds2tstamp(char* out, char* in); + int time2seconds(char* in); + bool mplayer_is_running; + int positionToSeek; + + static void* PositionPercentThreadMethod(void *ptr); + static void* PositionTimeThreadMethod(void *ptr); +}; + + + +#endif /* _CRENDERER_H */ diff --git a/1_6.h12_dev/render/include/cRenderingControl.h b/1_6.h12_dev/render/include/cRenderingControl.h new file mode 100644 index 0000000..76ad71b --- /dev/null +++ b/1_6.h12_dev/render/include/cRenderingControl.h @@ -0,0 +1,91 @@ +/* + * Copyright (C) 2006 by: + * Da He + * Julian Flake + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + + +#ifndef _CRENDERINGCONTROL_H_ +#define _CRENDERINGCONTROL_H_ +#include "cService.h" + + +class cRenderingControl : public cService +{ + public: + cRenderingControl(void* lnkcRenderer); + ~cRenderingControl(); + enum vars{ + RC_Mute, + RC_LastChange, + RC_A_ARG_TYPE_InstanceID, + RC_A_ARG_TYPE_PresetName, + RC_PresetNameList, + RC_Volume, + RC_A_ARG_TYPE_Channel + }; + // Action-Functions + typedef int(cRenderingControl::*ptr2fct)(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + ptr2fct actions[36]; + int callAction(int i, IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + + int ListPresets(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SelectPreset(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetBrightness(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetBrightness(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetContrast(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetContrast(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetSharpness(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int Setsharpness(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetRedVideoGain(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetRedVideoGain(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetGreenVideoGain(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetGreenVideoGain(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetBlueVideoGain(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetBlueVideoGain(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetRedVideoBlackLevel(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetRedVideoBlackLevel(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetGreenVideoBlackLevel(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetGreenVideoBlackLevel(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetBlueVideoBlackLevel(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetBlueVideoBlackLevel(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetColorTemperature(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetColorTemperature(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetHorizontalKeystone(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetHorizontalKeystone(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetVerticalKeystone(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetVerticalKeystone(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetMute(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetMute(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetVolume(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetVolume(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetVolumeDB(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetVolumeDB(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetVolumeDBRange(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int GetLoudness(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetLoudness(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + int SetPlayMode(IXML_Document * in, IXML_Document ** out,Upnp_Action_Request *Event); + + + protected: + int notificator(); + + +}; + + +#endif //_CRENDERINGCONTROL_H_ diff --git a/1_6.h12_dev/render/include/cService.h b/1_6.h12_dev/render/include/cService.h new file mode 100644 index 0000000..3f57764 --- /dev/null +++ b/1_6.h12_dev/render/include/cService.h @@ -0,0 +1,74 @@ +/* + * Copyright (C) 2006 by: + * Da He + * Julian Flake + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + + +#ifndef _CSERVICE_H_ +#define _CSERVICE_H_ + +#include +#include +#include +#include +#include +#include + +using namespace std; +class cService +{ + public: + cService(void* lnkcRenderer); + virtual ~cService(); + + char* service_id; + + int retForpositionPercent; + int retForpositionTime; + pthread_t positionPercentThread; + pthread_t positionTimeThread; + + enum{ + CM_id, + AV_id, + RC_id + }; + void* lnkcRenderer; + + // Variables + int var_count; + char* name[50]; + char* value[50]; + + // Actions + typedef int (cService::*ptr2fct)(IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + ptr2fct actions[5]; + int action_count; + char* action_name[50]; + virtual int callAction(int i, IXML_Document* in, IXML_Document** out, Upnp_Action_Request* Event); + char* getXMLValue(IXML_Document *doc, char tagName[]); + void setVar(int service, int count, ...); + + char* getTrackLength(); + + protected: + +}; + + +#endif //_CSERVICE_H_ diff --git a/1_6.h12_dev/render/include/ixml.h b/1_6.h12_dev/render/include/ixml.h new file mode 100644 index 0000000..d58255d --- /dev/null +++ b/1_6.h12_dev/render/include/ixml.h @@ -0,0 +1,1835 @@ +/************************************************************************** + * + * Copyright (c) 2000-2003 Intel Corporation + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * - Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * - Neither name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + **************************************************************************/ + + +#ifndef IXML_H +#define IXML_H + + +/*! + * \file + * + * \defgroup XMLAPI XML API + * + * @{ + */ + + +#include "UpnpGlobal.h" /* For EXPORT_SPEC */ + +/* Define BOOL. */ +#ifndef __OBJC__ + typedef int BOOL; +#else + /* For Objective C compilers, include objc.h which defines BOOL. */ + #include +#endif + +/*! + * \brief The type of DOM strings. + */ +#define DOMString char * +/*typedef char *DOMString;*/ + + +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef IN +#define IN +#endif + +#ifndef OUT +#define OUT +#endif + +#ifndef INOUT +#define INOUT +#endif + + +/*! + * \name DOM Interfaces + * + * The Document Object Model consists of a set of objects and interfaces + * for accessing and manipulating documents. IXML does not implement all + * the interfaces documented in the DOM2-Core recommendation but defines + * a subset of the most useful interfaces. A description of the supported + * interfaces and methods is presented in this section. + * + * For a complete discussion on the object model, the object hierarchy, + * etc., refer to section 1.1 of the DOM2-Core recommendation. + * + * @{ + */ + + +/*! + * \brief The type of the DOM node + */ +typedef enum { + eINVALID_NODE = 0, + eELEMENT_NODE = 1, + eATTRIBUTE_NODE = 2, + eTEXT_NODE = 3, + eCDATA_SECTION_NODE = 4, + eENTITY_REFERENCE_NODE = 5, + eENTITY_NODE = 6, + ePROCESSING_INSTRUCTION_NODE = 7, + eCOMMENT_NODE = 8, + eDOCUMENT_NODE = 9, + eDOCUMENT_TYPE_NODE = 10, + eDOCUMENT_FRAGMENT_NODE = 11, + eNOTATION_NODE = 12, +} IXML_NODE_TYPE; + + +/*! + * \brief Error codes returned by the XML API, see the DOM spec + */ +typedef enum { + IXML_SUCCESS = 0, + + IXML_INDEX_SIZE_ERR = 1, + IXML_DOMSTRING_SIZE_ERR = 2, + IXML_HIERARCHY_REQUEST_ERR = 3, + IXML_WRONG_DOCUMENT_ERR = 4, + IXML_INVALID_CHARACTER_ERR = 5, + IXML_NO_DATA_ALLOWED_ERR = 6, + IXML_NO_MODIFICATION_ALLOWED_ERR = 7, + IXML_NOT_FOUND_ERR = 8, + IXML_NOT_SUPPORTED_ERR = 9, + IXML_INUSE_ATTRIBUTE_ERR = 10, + IXML_INVALID_STATE_ERR = 11, + IXML_SYNTAX_ERR = 12, + IXML_INVALID_MODIFICATION_ERR = 13, + IXML_NAMESPACE_ERR = 14, + IXML_INVALID_ACCESS_ERR = 15, + + IXML_NO_SUCH_FILE = 101, + IXML_INSUFFICIENT_MEMORY = 102, + IXML_FILE_DONE = 104, + IXML_INVALID_PARAMETER = 105, + IXML_FAILED = 106, + IXML_INVALID_ITEM_NUMBER = 107, +} IXML_ERRORCODE; + + +#define DOCUMENTNODENAME "#document" +#define TEXTNODENAME "#text" +#define CDATANODENAME "#cdata-section" + + +typedef struct _IXML_Document *Docptr; + + +typedef struct _IXML_Node *Nodeptr; + + +/*! + * \brief Data structure common to all types of nodes. + */ +typedef struct _IXML_Node +{ + DOMString nodeName; + DOMString nodeValue; + IXML_NODE_TYPE nodeType; + DOMString namespaceURI; + DOMString prefix; + DOMString localName; + BOOL readOnly; + + Nodeptr parentNode; + Nodeptr firstChild; + Nodeptr prevSibling; + Nodeptr nextSibling; + Nodeptr firstAttr; + Docptr ownerDocument; +} IXML_Node; + + +/*! + * \brief Data structure representing the DOM Document. + */ +typedef struct _IXML_Document +{ + IXML_Node n; +} IXML_Document; + + +/*! + * \brief Data structure representing a CDATA section node. + */ +typedef struct _IXML_CDATASection +{ + IXML_Node n; +} IXML_CDATASection; + + +/*! + * \brief Data structure representing an Element node. + */ +typedef struct _IXML_Element +{ + IXML_Node n; + DOMString tagName; +} IXML_Element; + + +/*! + * \brief Data structure representing an Attribute node. + */ +typedef struct _IXML_ATTR +{ + IXML_Node n; + BOOL specified; + IXML_Element *ownerElement; +} IXML_Attr; + + +/*! + * \brief Data structure representing a Text node. + */ +typedef struct _IXML_Text +{ + IXML_Node n; +} IXML_Text; + + +/*! + * \brief Data structure representing a list of nodes. + */ +typedef struct _IXML_NodeList +{ + IXML_Node *nodeItem; + struct _IXML_NodeList *next; +} IXML_NodeList; + + +/*! + * \brief Data structure representing a list of named nodes. + */ +typedef struct _IXML_NamedNodeMap +{ + IXML_Node *nodeItem; + struct _IXML_NamedNodeMap *next; +} IXML_NamedNodeMap; + +/* @} DOM Interfaces */ + + + +#ifdef __cplusplus +extern "C" { +#endif + + +/*! + * \name Interface Node + * + * The \b Node interface forms the primary datatype for all other DOM + * objects. Every other interface is derived from this interface, inheriting + * its functionality. For more information, refer to DOM2-Core page 34. + * + * @{ + */ + +/*! + * \brief Returns the name of the \b Node, depending on what type of + * \b Node it is, in a read-only string. + * + * Refer to the table in the + * DOM2-Core for a description of the node names for various interfaces. + * + * \return A constant \b DOMString of the node name. + */ +EXPORT_SPEC const DOMString ixmlNode_getNodeName( + /*! [in] Pointer to the node to retrieve the name. */ + IXML_Node *nodeptr); + + +/*! + * \brief Returns the value of the \b Node as a string. + * + * Note that this string is not a copy and modifying it will modify the value + * of the \b Node. + * + * \return A \b DOMString of the \b Node value. + */ +EXPORT_SPEC const DOMString ixmlNode_getNodeValue( + /*! [in] Pointer to the \b Node to retrieve the value. */ + IXML_Node *nodeptr); + + +/*! + * \brief Assigns a new value to a \b Node. + * + * The \b newNodeValue string is duplicated and stored in the \b Node so that + * the original does not have to persist past this call. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: The Node * is not a valid pointer. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists to + * complete this operation. + */ +EXPORT_SPEC int ixmlNode_setNodeValue( + /*! [in] The \b Node to which to assign a new value. */ + IXML_Node *nodeptr, + /*! [in] The new value of the \b Node. */ + const char *newNodeValue); + + +/*! + * \brief Retrieves the type of a \b Node. + * + * \return An enum IXML_NODE_TYPE representing the type of the \b Node. + */ +EXPORT_SPEC unsigned short ixmlNode_getNodeType( + /*! [in] The \b Node from which to retrieve the type. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the parent \b Node for a \b Node. + * + * \return A pointer to the parent \b Node or \c NULL if the \b Node has no + * parent. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getParentNode( + /*! [in] The \b Node from which to retrieve the parent. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the list of children of a \b Node in a \b NodeList + * structure. + * + * If a \b Node has no children, \b ixmlNode_getChildNodes + * returns a \b NodeList structure that contains no \b Nodes. + * + * \return A \b NodeList of the children of the \b Node. + */ +EXPORT_SPEC IXML_NodeList *ixmlNode_getChildNodes( + /*! [in] The \b Node from which to retrieve the children. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the first child \b Node of a \b Node. + * + * \return A pointer to the first child \b Node or \c NULL if the \b Node does + * not have any children. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getFirstChild( + /*! [in] The \b Node from which to retrieve the first child. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the last child \b Node of a \b Node. + * + * \return A pointer to the last child \b Node or \c NULL if the \b Node does + * not have any children. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getLastChild( + /*! [in] The \b Node from which to retrieve the last child. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the sibling \b Node immediately preceding this \b Node. + * + * \return A pointer to the previous sibling \b Node or \c NULL if no such + * \b Node exists. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getPreviousSibling( + /*! [in] The \b Node for which to retrieve the previous sibling. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the sibling \b Node immediately following this \b Node. + * + * \return A pointer to the next sibling \b Node or \c NULL if no such + * \b Node exists. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getNextSibling( + /*! [in] The \b Node from which to retrieve the next sibling. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the attributes of a \b Node, if it is an \b Element node, + * in a \b NamedNodeMap structure. + * + * \return A \b NamedNodeMap of the attributes or \c NULL. + */ +EXPORT_SPEC IXML_NamedNodeMap *ixmlNode_getAttributes( + /*! [in] The \b Node from which to retrieve the attributes. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the document object associated with this \b Node. + * + * This owner document \b Node allows other \b Nodes to be created in the + * context of this document. Note that \b Document nodes do not have an + * owner document. + * + * \return A pointer to the owning \b Document or \c NULL, if the \b Node + * does not have an owner. + */ +EXPORT_SPEC IXML_Document *ixmlNode_getOwnerDocument( + /*! [in] The \b Node from which to retrieve the owner document. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the namespace URI for a \b Node as a \b DOMString. + * + * Only \b Nodes of type \c eELEMENT_NODE or \c eATTRIBUTE_NODE can have a + * namespace URI. \b Nodes created through the \b Document interface will + * only contain a namespace if created using \b ixmlDocument_createElementNS. + * + * \return A \b DOMString representing the URI of the namespace or \c NULL. + */ +EXPORT_SPEC const DOMString ixmlNode_getNamespaceURI( + /*! [in] The \b Node for which to retrieve the namespace. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the namespace prefix, if present. + * + * The prefix is the name used as an alias for the namespace URI for this + * element. Only \b Nodes of type \c eELEMENT_NODE or \c eATTRIBUTE_NODE can + * have a prefix. \b Nodes created through the \b Document interface will only + * contain a prefix if created using \b ixmlDocument_createElementNS. + * + * \return A \b DOMString representing the namespace prefix or \c NULL. + */ +EXPORT_SPEC const DOMString +ixmlNode_getPrefix( + /*! The \b Node from which to retrieve the prefix. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the local name of a \b Node, if present. + * + * The local name is the tag name without the namespace prefix. Only \b Nodes + * of type \c eELEMENT_NODE or \c eATTRIBUTE_NODE can have a local name. + * \b Nodes created through the \b Document interface will only contain a local + * name if created using \b ixmlDocument_createElementNS. + * + * \return A \b DOMString representing the local name of the \b Element or + * \c NULL. + */ +EXPORT_SPEC const DOMString ixmlNode_getLocalName( + /*! [in] The \b Node from which to retrieve the local name. */ + IXML_Node *nodeptr); + +/*! + * \brief Inserts a new child \b Node before the existing child \b Node. + * + * \b refChild can be \c NULL, which inserts \b newChild at the + * end of the list of children. Note that the \b Node (or \b Nodes) + * in \b newChild must already be owned by the owner document (or have no + * owner at all) of \b nodeptr for insertion. If not, the \b Node + * (or \b Nodes) must be imported into the document using + * \b ixmlDocument_importNode. If \b newChild is already in the tree, + * it is removed first. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b nodeptr or + * \b newChild is \c NULL. + * \li \c IXML_HIERARCHY_REQUEST_ERR: The type of the \b Node + * does not allow children of the type of \b newChild. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newChild has an owner + * document that does not match the owner of \b nodeptr. + * \li \c IXML_NO_MODIFICATION_ALLOWED_ERR: \b nodeptr is + * read-only or the parent of the \b Node being inserted is + * read-only. + * \li \c IXML_NOT_FOUND_ERR: \b refChild is not a child of + * \b nodeptr. + */ +EXPORT_SPEC int ixmlNode_insertBefore( + /*! [in] The parent of the \b Node before which to insert the new child. */ + IXML_Node *nodeptr, + /*! [in] The \b Node to insert into the tree. */ + IXML_Node * newChild, + /*! [in] The reference child where the new \b Node should be inserted. + * The new \b Node will appear directly before the reference child. */ + IXML_Node * refChild); + + +/*! + * \brief Replaces an existing child \b Node with a new child \b Node in the + * list of children of a \b Node. + * + * If \b newChild is already in the tree, it will first be removed. + * \b returnNode will contain the \b oldChild \b Node, appropriately removed + * from the tree (i.e. it will no longer have an owner document). + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMTER: Either \b nodeptr, \b newChild, + * or \b oldChild is \c NULL. + * \li \c IXML_HIERARCHY_REQUEST_ERR: The \b newChild is not + * a type of \b Node that can be inserted into this tree or + * \b newChild is an ancestor of \b nodePtr. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newChild was created from + * a different document than \b nodeptr. + * \li \c IXML_NO_MODIFICATION_ALLOWED_ERR: \b nodeptr or + * its parent is read-only. + * \li \c IXML_NOT_FOUND_ERR: \b oldChild is not a child of + * \b nodeptr. + */ +EXPORT_SPEC int ixmlNode_replaceChild( + /*! [in] The parent of the \b Node which contains the child to replace. */ + IXML_Node *nodeptr, + /*! [in] The child with which to replace \b oldChild. */ + IXML_Node *newChild, + /*! [in] The child to replace with \b newChild. */ + IXML_Node *oldChild, + /*! [out] Pointer to a \b Node to place the removed \b oldChild \b Node. */ + IXML_Node **returnNode); + + +/*! + * \brief Removes a child from the list of children of a \b Node. + * + * \b returnNode will contain the \b oldChild \b Node, + * appropriately removed from the tree (i.e. it will no longer have an + * owner document). + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b nodeptr or + * \b oldChild is \c NULL. + * \li \c IXML_NO_MODIFICATION_ALLOWED_ERR: \b nodeptr or its + * parent is read-only. + * \li \c IXML_NOT_FOUND_ERR: \b oldChild is not among the + * children of \b nodeptr. + */ +EXPORT_SPEC int ixmlNode_removeChild( + /*! [in] The parent of the child to remove. */ + IXML_Node *nodeptr, + /*! [in] The child \b Node to remove. */ + IXML_Node *oldChild, + /*! [out] Pointer to a \b Node to place the removed \b oldChild \b Node. */ + IXML_Node **returnNode); + + +/*! + * \brief Appends a child \b Node to the list of children of a \b Node. + * + * If \b newChild is already in the tree, it is removed first. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b nodeptr or + * \b newChild is \c NULL. + * \li \c IXML_HIERARCHY_REQUEST_ERR: \b newChild is of a type + * that cannot be added as a child of \b nodeptr or + * \b newChild is an ancestor of \b nodeptr. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newChild was created from + * a different document than \b nodeptr. + * \li \c IXML_NO_MODIFICATION_ALLOWED_ERR: \b nodeptr is a + * read-only \b Node. + */ +EXPORT_SPEC int ixmlNode_appendChild( + /*! [in] The \b Node in which to append the new child. */ + IXML_Node *nodeptr, + /*! [in] The new child to append. */ + IXML_Node * newChild); + + +/*! + * \brief Queries whether or not a \b Node has children. + * + * \return \c TRUE if the \b Node has one or more children otherwise \c FALSE. + */ +EXPORT_SPEC BOOL ixmlNode_hasChildNodes( + /*! [in] The \b Node to query for children. */ + IXML_Node *nodeptr); + + +/*! + * \brief Clones a \b Node. + * + * The new \b Node does not have a parent. The \b deep parameter controls + * whether the subtree of the \b Node is also cloned. + * + * For details on cloning specific types of \b Nodes, refer to the + * DOM2-Core recommendation. + * + * \return A clone of \b nodeptr or \c NULL. + */ +EXPORT_SPEC IXML_Node *ixmlNode_cloneNode( + /*! [in] The \b Node to clone. */ + IXML_Node *nodeptr, + /*! [in] \c TRUE to clone the subtree also or \c FALSE to clone only + * \b nodeptr. */ + BOOL deep); + + +/*! + * \brief Queries whether this \b Node has attributes. + * + * Note that only \b Element nodes have attributes. + * + * \return \c TRUE if the \b Node has attributes otherwise \c FALSE. + */ +EXPORT_SPEC BOOL ixmlNode_hasAttributes( + /*! [in] The \b Node to query for attributes. */ + IXML_Node *nodeptr); + + +/*! + * \brief Frees a \b Node and all \b Nodes in its subtree. + */ +EXPORT_SPEC void ixmlNode_free( + /*! [in] The \b Node tree to free. */ + IXML_Node *nodeptr); + +/* @} Interface Node */ + + + +/*! + * \name Interface Attr + * + * The \b Attr interface represents an attribute of an \b Element. The document + * type definition (DTD) or schema usually dictate the allowable attributes and + * values for a particular element. + * + * For more information, refer to the Interface Attr section in the + * DOM2-Core. + * + * @{ + */ + + +/*! + * \brief Frees an \b Attr node. + */ +EXPORT_SPEC void ixmlAttr_free( + /*! The \b Attr node to free. */ + IXML_Attr *attrNode); + + +/* @} Interface Attr */ + + + +/*! + * \name Interface CDATASection + * + * The \b CDATASection is used to escape blocks of text containing + * characters that would otherwise be regarded as markup. CDATA sections + * cannot be nested. Their primary purpose is for including material such + * XML fragments, without needing to escape all the delimiters. + * + * For more information, refer to the Interface CDATASection section + * in the DOM2-Core. + * + * @{ + */ + + +/*! + * \brief Initializes a \b CDATASection node. + */ +EXPORT_SPEC void ixmlCDATASection_init( + /*! [in] The CDATA Section Node to iniatialize. */ + IXML_CDATASection *nodeptr); + + +/*! + * \brief Frees a \b CDATASection node. + */ +EXPORT_SPEC void ixmlCDATASection_free( + /*! The \b CDATASection node to free. */ + IXML_CDATASection *nodeptr); + + +/* @} Interface CDATASection */ + + + +/*! + * \name Interface Document + * + * The \b Document interface represents the entire XML document. In essence, it + * is the root of the document tree and provides the primary interface to the + * elements of the document. + * + * For more information, refer to the Interface Document section in + * the DOM2Core. + * + * @{ + */ + + +/*! + * \brief Initializes a \b Document node. + */ +EXPORT_SPEC void ixmlDocument_init( + /*! [in] The \b Document node to initialize. */ + IXML_Document *nodeptr); + + +/*! + * \brief Creates a new empty \b Document node. + * + * The \b ixmlDocument_createDocumentEx API differs from the + * \b ixmlDocument_createDocument API in that it returns an error code + * describing the reason for the failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createDocumentEx( + /*! [out] Pointer to a \b Document where the new object will be stored. */ + IXML_Document **doc); + + +/*! + * \brief Creates a new empty \b Document node. + * + * \return A pointer to the new \b Document object with the nodeName set to + * "#document" or \c NULL on failure. + */ +EXPORT_SPEC IXML_Document *ixmlDocument_createDocument(void); + + +/*! + * \brief Creates a new \b Element node with the given tag name. + * + * The new \b Element node has a \c nodeName of \b tagName and the + * \c localName, \c prefix, and \c namespaceURI set to \c NULL. To create an + * \b Element with a namespace, see \b ixmlDocument_createElementNS. + * + * The \b ixmlDocument_createElementEx API differs from the \b + * ixmlDocument_createElement API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or + * \b tagName is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createElementEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The tag name of the new \b Element node. */ + const DOMString tagName, + /*! [out] Pointer to an \b Element where the new object will be stored. */ + IXML_Element **rtElement); + + +/*! + * \brief Creates a new \b Element node with the given tag name. + * + * The new \b Element node has a \c nodeName of \b tagName and the + * \c localName, \c prefix, and \c namespaceURI set to \c NULL. To create an + * \b Element with a namespace, see \b ixmlDocument_createElementNS. + * + * \return A pointer to the new \b Element object with the node name set to + * tagName, and localName, prefix and namespaceURI set to \c NULL, or \c NULL + * on failure. + */ +EXPORT_SPEC IXML_Element *ixmlDocument_createElement( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The tag name of the new \b Element node (case-sensitive). */ + const DOMString tagName); + + +/*! + * \brief Creates a new \b Text node with the given data. + * + * The \b ixmlDocument_createTextNodeEx() API differs from the + * \b ixmlDocument_createTextNode API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or \b data + * is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createTextNodeEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The data to associate with the new \b Text node. + * It is stored in nodeValue field.*/ + const DOMString data, + /*! [out] A pointer to a \b Node where the new object will be stored. */ + IXML_Node **textNode); + + +/*! + * \brief Creates a new \b Text node with the given data. + * + * \return A pointer to the new \b Node or \c NULL on failure. + */ +EXPORT_SPEC IXML_Node *ixmlDocument_createTextNode( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The data to associate with the new \b Text node. It is stored in + * the nodeValue field. */ + const DOMString data); + + +/*! + * \brief Creates a new \b CDATASection node with given data. + * + * The \b ixmlDocument_createCDATASectionEx API differs from the \b + * ixmlDocument_createCDATASection API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or \b data + * is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createCDATASectionEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The data to associate with the new \b CDATASection node. */ + const DOMString data, + /*! [out] A pointer to a \b Node where the new object will be stored. */ + IXML_CDATASection** cdNode); + + +/*! + * \brief Creates a new \b CDATASection node with given data. + * + * \return A pointer to the new \b CDATASection or \c NULL on failure. + */ +EXPORT_SPEC IXML_CDATASection *ixmlDocument_createCDATASection( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The data to associate with the new \b CDATASection node. */ + const DOMString data); + + +/*! + * \brief Creates a new \b Attr node with the given name. + * + * \return A pointer to the new \b Attr object with the nodeName attribute + * set to the given name, and the localName, prefix and namespaceURI set + * to NULL or \c NULL on failure. + * + * The value of the attribute is the empty string. + */ +EXPORT_SPEC IXML_Attr *ixmlDocument_createAttribute( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The name of the new attribute. */ + const char *name); + + +/*! + * \brief Creates a new \b Attr node with the given name. + * + * The \b ixmlDocument_createAttributeEx API differs from the \b + * ixmlDocument_createAttribute API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or \b name + * is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createAttributeEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The name of the new attribute. */ + const char *name, + /*! [out] A pointer to a \b Attr where the new object will be stored. */ + IXML_Attr **attrNode); + + +/*! + * \brief Returns a \b NodeList of all \b Elements that match the given + * tag name in the order in which they were encountered in a preorder + * traversal of the \b Document tree. + * + * \return A pointer to a \b NodeList containing the matching items or \c NULL + * on an error. + */ +EXPORT_SPEC IXML_NodeList *ixmlDocument_getElementsByTagName( + /*! [in] The \b Document to search. */ + IXML_Document *doc, + /*! [in] The tag name to find. The special value "*" matches all tags.*/ + const DOMString tagName); + + +/* + * introduced in DOM level 2 + */ + + +/*! + * \brief Creates a new \b Element node in the given qualified name and + * namespace URI. + * + * The \b ixmlDocument_createElementNSEx API differs from the \b + * ixmlDocument_createElementNS API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc, + * \b namespaceURI, or \b qualifiedName is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createElementNSEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The namespace URI for the new \b Element. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the new \b Element. */ + const DOMString qualifiedName, + /*! [out] A pointer to an \b Element where the new object will be stored. */ + IXML_Element **rtElement); + + +/*! + * \brief Creates a new \b Element node in the given qualified name and + * namespace URI. + * + * \return A pointer to the new \b Element object with tagName qualifiedName, + * prefix and localName extraced from qualfiedName, nodeName of qualfiedName, + * namespaceURI of namespaceURI or \c NULL on failure. + */ +EXPORT_SPEC IXML_Element *ixmlDocument_createElementNS( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The namespace URI for the new \b Element. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the new \b Element. */ + const DOMString qualifiedName); + + +/*! + * \brief Creates a new \b Attr node with the given qualified name and + * namespace URI. + * + * The \b ixmlDocument_createAttributeNSEx API differs from the \b + * ixmlDocument_createAttributeNS API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc, + * \b namespaceURI, or \b qualifiedName is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createAttributeNSEx( + /*! [in] The owner \b Document of the new \b Attr. */ + IXML_Document *doc, + /*! [in] The namespace URI for the attribute. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the attribute. */ + const DOMString qualifiedName, + /*! [out] A pointer to an \b Attr where the new object will be stored. */ + IXML_Attr **attrNode); + + +/*! + * \brief Creates a new \b Attribute node with the given qualified name and + * namespace URI. + * + * \return A pointer to the new \b Attr node with the given namespaceURI and + * qualifiedName. The prefix and localname are extracted from + * the qualifiedName. The node value is empty. Or \c NULL on failure. + */ +EXPORT_SPEC IXML_Attr *ixmlDocument_createAttributeNS( + /*! [in] The owner \b Document of the new \b Attribute. */ + IXML_Document *doc, + /*! [in] The namespace URI for the attribute. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the attribute. */ + const DOMString qualifiedName); + + +/*! + * \brief Returns a \b NodeList of \b Elements that match the given + * local name and namespace URI in the order they are encountered + * in a preorder traversal of the \b Document tree. + * + * Either \b namespaceURI or \b localName can be the special "*" + * character, which matches any namespace or any local name respectively. + * + * \return A pointer to a \b NodeList containing the matching items or \c NULL + * on an error. + */ +EXPORT_SPEC IXML_NodeList *ixmlDocument_getElementsByTagNameNS( + /*! [in] The \b Document to search. */ + IXML_Document *doc, + /*! [in] The namespace of the elements to find or "*" to match any + * namespace. */ + const DOMString namespaceURI, + /*! [in] The local name of the elements to find or "*" to match any + * local name. */ + const DOMString localName); + + +/*! + * \brief Returns the \b Element whose \c ID matches that given id. + * + * \return A pointer to the matching \b Element or \c NULL on an error. + */ +EXPORT_SPEC IXML_Element *ixmlDocument_getElementById( + /*! [in] The owner \b Document of the \b Element. */ + IXML_Document *doc, + /*! [in] The name of the \b Element.*/ + const DOMString tagName); + + +/*! + * \brief Frees a \b Document object and all \b Nodes associated with it. + * + * Any \b Nodes extracted via any other interface function, e.g. + * \b ixmlDocument_GetElementById, become invalid after this call unless + * explicitly cloned. + */ +EXPORT_SPEC void ixmlDocument_free( + /*! [in] The \b Document to free. */ + IXML_Document *doc); + + +/*! + * \brief Imports a \b Node from another \b Document into this \b Document. + * + * The returned new \b Node does not a have parent node (parentNode is null): + * it is a clone of the original \b Node with the \c ownerDocument set to + * \b doc. The source node is not altered or removed from the original + * document. + * + * For all nodes, importing a node creates a node object owned by the + * importing document, with attribute values identical to the source + * node's nodeName and nodeType, plus the attributes related to namespaces + * (prefix, localName, and namespaceURI). + * + * As in the cloneNode operation on a node, the source node is not altered. + * + * The \b deep parameter controls whether all the children of the \b Node are + * imported. + * + * Refer to the DOM2-Core recommendation for details on importing specific + * node types. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or + * \b importNode is not a valid pointer. + * \li \c IXML_NOT_SUPPORTED_ERR: \b importNode is a + * \b Document, which cannot be imported. + * \li \c IXML_FAILED: The import operation failed because the + * \b Node to be imported could not be cloned. + */ +EXPORT_SPEC int ixmlDocument_importNode( + /*! [in] The \b Document into which to import. */ + IXML_Document *doc, + /*! [in] The \b Node to import. */ + IXML_Node * importNode, + /*! [in] \c TRUE to import all children of \b importNode or \c FALSE to + * import only the root node. */ + BOOL deep, + /*! [out] A pointer to a new \b Node owned by \b doc. */ + IXML_Node **rtNode); + + +/* @} Interface Document */ + + + + +/*! + * \name Interface Element + * + * The \b Element interface represents an element in an XML document. + * Only \b Elements are allowed to have attributes, which are stored in the + * \c attributes member of a \b Node. The \b Element interface + * extends the \b Node interface and adds more operations to manipulate + * attributes. + * + * @{ + */ + + +/*! + * \brief Initializes a \b IXML_Element node. + */ +EXPORT_SPEC void ixmlElement_init( + /*! [in] The \b Element to initialize.*/ + IXML_Element *element); + + +/*! + * \brief Returns the name of the tag as a constant string. + * + * \return The name of the \b Element. + */ +EXPORT_SPEC const DOMString ixmlElement_getTagName( + /*! [in] The \b Element from which to retrieve the name. */ + IXML_Element *element); + + +/*! + * \brief Retrieves an attribute of an \b Element by name. + * + * \return The value of the attribute, or \b NULL if that attribute +* does not have a specified value. + */ +EXPORT_SPEC const DOMString ixmlElement_getAttribute( + /*! [in] The \b Element from which to retrieve the attribute. */ + IXML_Element* element, + /*! [in] The name of the attribute to retrieve. */ + const DOMString name); + + +/*! + * \brief Adds a new attribute to an \b Element. + * + * If an attribute with the same name already exists in the element, the + * attribute value will be updated with the new value parameter. Otherwise, + * a new attribute is inserted into the element. + * + * \return An integer representing of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element, + * \b name, or \b value is \c NULL. + * \li \c IXML_INVALID_CHARACTER_ERR: \b name contains an + * illegal character. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete the operation. + */ +EXPORT_SPEC int ixmlElement_setAttribute( + /*! [in] The \b Element on which to set the attribute. */ + IXML_Element *element, + /*! [in] The name of the attribute. */ + const DOMString name, + /*! [in] The value of the attribute. Note that this is a non-parsed string + * and any markup must be escaped. */ + const DOMString value); + + +/*! + * \brief Removes an attribute value by name. The attribute node is not removed. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element or + * \b name is \c NULL. + */ +EXPORT_SPEC int ixmlElement_removeAttribute( + /*! [in] The \b Element from which to remove the attribute. */ + IXML_Element *element, + /*! [in] The name of the attribute to remove. */ + const DOMString name); + + +/*! + * \brief Retrieves an attribute node by name. + * See \b ixmlElement_getAttributeNodeNS to retrieve an attribute node using + * a qualified name or namespace URI. + * + * \return A pointer to the attribute matching \b name or \c NULL on if there + * is no such attribute. + */ +EXPORT_SPEC IXML_Attr *ixmlElement_getAttributeNode( + /*! [in] The \b Element from which to get the attribute node. */ + IXML_Element *element, + /*! [in] The name of the attribute node to find. */ + const DOMString name); + + +/*! + * \brief Adds a new attribute node to an \b Element. + * + * If an attribute already exists with \b newAttr as a name, it will be + * replaced with the new one and the old one will be returned in \b rtAttr. + * + * \return If successfull, the replaced attribute node is returned in rtAttr, + * otherwise, \b NULL is returned in this pointer. The function return value + * is an integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element or + * \b newAttr is \c NULL. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newAttr does not belong + * to the same one as \b element. + * \li \c IXML_INUSE_ATTRIBUTE_ERR: \b newAttr is already + * an attribute of another \b Element. + */ +EXPORT_SPEC int ixmlElement_setAttributeNode( + /*! [in] The \b Element in which to add the new attribute. */ + IXML_Element *element, + /*! [in] The new \b Attr to add. */ + IXML_Attr* newAttr, + /*! [out] A pointer to an \b Attr where the old \b Attr will be stored. + * This will have a \c NULL if no prior node existed. */ + IXML_Attr** rtAttr); + + +/*! + * \brief Removes the specified attribute node from an \b Element. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element or + * \b oldAttr is \c NULL. + * \li \c IXML_NOT_FOUND_ERR: \b oldAttr is not among the list + * attributes of \b element. + */ +EXPORT_SPEC int ixmlElement_removeAttributeNode( + /*! [in] The \b Element from which to remove the attribute. */ + IXML_Element *element, + /*! [in] The attribute to remove from the \b Element. */ + IXML_Attr* oldAttr, + /*! [out] A pointer to an attribute in which to place the removed attribute. */ + IXML_Attr** rtAttr); + + +/*! + * \brief Returns a \b NodeList of all \em descendant \b Elements with + * a given tag name, in the order in which they are encountered in a + * pre-order traversal of this \b Element tree. + * + * \return A \b NodeList of the matching \b Elements or \c NULL on an error. + */ +EXPORT_SPEC IXML_NodeList *ixmlElement_getElementsByTagName( + /*! [in] The \b Element from which to start the search. */ + IXML_Element *element, + /*! [in] The name of the tag for which to search. */ + const DOMString tagName); + + +/* + * Introduced in DOM 2 + */ + + +/*! + * \brief Retrieves an attribute value using the local name and namespace URI. + * + * \return A \b DOMString representing the value of the matching attribute, or + * \b NULL if that attribute does not have the specified value. + */ +EXPORT_SPEC const DOMString ixmlElement_getAttributeNS( + /*! [in] The \b Element from which to get the attribute value. */ + IXML_Element *element, + /*! [in] The namespace URI of the attribute. */ + const DOMString namespaceURI, + /*! [in] The local name of the attribute. */ + const DOMString localname); + + +/*! + * \brief Adds a new attribute to an \b Element using the local name and + * namespace URI. + * + * If another attribute matches the same local name and namespace, the prefix + * is changed to be the prefix part of the \c qualifiedName and the value is + * changed to \b value. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element, + * \b namespaceURI, \b qualifiedName, or \b value is + * \c NULL. + * \li \c IXML_INVALID_CHARACTER_ERR: \b qualifiedName contains + * an invalid character. + * \li \c IXML_NAMESPACE_ERR: Either the \b qualifiedName or + * \b namespaceURI is malformed. Refer to the DOM2-Core for + * possible reasons. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exist + * to complete the operation. + * \li \c IXML_FAILED: The operation could not be completed. + */ +EXPORT_SPEC int ixmlElement_setAttributeNS( + /*! [in] The \b Element on which to set the attribute. */ + IXML_Element *element, + /*! [in] The namespace URI of the new attribute. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the attribute. */ + const DOMString qualifiedName, + /*! [in] The new value for the attribute. */ + const DOMString value); + + +/*! + * \brief Removes an attribute using the namespace URI and local name. + * + * The replacing attribute has the same namespace URI and local name, as well + * as the original prefix. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element, + * \b namespaceURI, or \b localName is \c NULL. + */ +EXPORT_SPEC int ixmlElement_removeAttributeNS( + /*! [in] The \b Element from which to remove the the attribute. */ + IXML_Element *element, + /*! [in] The namespace URI of the attribute. */ + const DOMString namespaceURI, + /*! [in] The local name of the attribute.*/ + const DOMString localName); + + +/*! + * \brief Retrieves an \b Attr node by local name and namespace URI. + * + * \return A pointer to an \b Attribute node with the specified attribute + * local name and namespace URI or \c NULL if there is no such attribute. + */ +EXPORT_SPEC IXML_Attr *ixmlElement_getAttributeNodeNS( + /*! [in] The \b Element from which to get the attribute. */ + IXML_Element *element, + /*! [in] The namespace URI of the attribute. */ + const DOMString namespaceURI, + /*! [in] The local name of the attribute. */ + const DOMString localName); + + +/*! + * \brief Adds a new attribute node to the element node specified. + * + * If an attribute with the same local name and namespace URI already exists in + * the \b Element, the existing attribute node is replaced with \b newAttr and + * the old returned in \b rcAttr. + * + * \return The output parameter rcAttr receives the replaced attribute node if + * the newAttr attribute replaces an existing attribute with the same local name + * and namespace, otherwise rcAttr receives \b NULL. + * + * The function return value is an integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element or + * \b newAttr is \c NULL. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newAttr does not belong + * to the same document as \b element. + * \li \c IXML_INUSE_ATTRIBUTE_ERR: \b newAttr already is an + * attribute of another \b Element. + */ +EXPORT_SPEC int ixmlElement_setAttributeNodeNS( + /*! [in] The \b Element in which to add the attribute node. */ + IXML_Element *element, + /*! [in] The new \b Attr to add. */ + IXML_Attr *newAttr, + /*! [out] A pointer to the replaced \b Attr, if it exists. */ + IXML_Attr **rcAttr); + + +/*! + * \brief Returns a \b NodeList of all \em descendant \b Elements with a + * given local name and namespace in the order in which they are encountered in + * the pre-order traversal of the \b Element tree. + * + * \return A \b NodeList of matching \b Elements or \c NULL on an error. + */ +EXPORT_SPEC IXML_NodeList *ixmlElement_getElementsByTagNameNS( + /*! [in] The \b Element from which to start the search. */ + IXML_Element *element, + /*! [in] The namespace URI of the \b Elements to find. The special value + * "*" matches all namespaces. */ + const DOMString namespaceURI, + /*! [in] The local name of the \b Elements to find. The special value "*" + * matches all local names. */ + const DOMString localName); + + +/*! + * \brief Queries whether the \b Element has an attribute with the given name + * or a default value. + * + * \return \c TRUE if the \b Element has an attribute with this name or has a + * default value for that attribute, otherwise \c FALSE. + */ +EXPORT_SPEC BOOL ixmlElement_hasAttribute( + /*! [in] The \b Element on which to check for an attribute. */ + IXML_Element *element, + /*! [in] The name of the attribute for which to check. */ + const DOMString name); + + +/*! + * \brief Queries whether the \b Element has an attribute with the given + * local name and namespace URI or has a default value for that attribute. + * + * \return \c TRUE if the \b Element has an attribute with the given namespace + * and local name or has a default value for that attribute, otherwise \c FALSE. + */ +EXPORT_SPEC BOOL ixmlElement_hasAttributeNS( + /*! [in] The \b Element on which to check for the attribute. */ + IXML_Element *element, + /*! [in] The namespace URI of the attribute. */ + const DOMString namespaceURI, + /*! [in] The local name of the attribute. */ + const DOMString localName); + + +/*! + * \brief Frees the given \b Element and any subtree of the \b Element. + */ +EXPORT_SPEC void ixmlElement_free( + /*! [in] The \b Element to free. */ + IXML_Element *element); + + +/* @} Interface Element */ + + + +/*! + * \name Interface NamedNodeMap + * + * A \b NamedNodeMap object represents a list of objects that can be + * accessed by name. A \b NamedNodeMap maintains the objects in + * no particular order. The \b Node interface uses a \b NamedNodeMap + * to maintain the attributes of a node. + * + * @{ + */ + + +/*! + * \brief Returns the number of items contained in this \b NamedNodeMap. + * + * \return The number of nodes in this map. + */ +EXPORT_SPEC unsigned long ixmlNamedNodeMap_getLength( + /*! [in] The \b NamedNodeMap from which to retrieve the size. */ + IXML_NamedNodeMap *nnMap); + + +/*! + * \brief Retrieves a \b Node from the \b NamedNodeMap by name. + * + * \return A Node with the specified nodeName, or \b NULL if it + * does not identify any node in this map. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_getNamedItem( + /*! [in] The \b NamedNodeMap to search. */ + IXML_NamedNodeMap *nnMap, + /*! [in] The name of the \b Node to find. */ + const DOMString name); + + +/*! + * \brief Adds a new \b Node to the \b NamedNodeMap using the \b Node name + * attribute. + * + * \return The old \b Node if the new \b Node replaces it or \c NULL if the + * \b Node was not in the \b NamedNodeMap before. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_setNamedItem( + /*! The \b NamedNodeMap in which to add the new \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! The new \b Node to add to the \b NamedNodeMap. */ + IXML_Node *arg); + + +/*! + * \brief Removes a \b Node from a \b NamedNodeMap specified by name. + * + * \return A pointer to the \b Node, if found, or \c NULL if it wasn't. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_removeNamedItem( + /*! The \b NamedNodeMap from which to remove the item. */ + IXML_NamedNodeMap *nnMap, + /*! The name of the item to remove. */ + const DOMString name); + + +/*! + * \brief Retrieves the indexth item in the map. If index is greater than or + * equal to the number of nodes in this map, this returns \b NULL. + * + * \return The node at the indexth position in the map, or \b NULL if that is + * not a valid index. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_item( + /*! [in] The \b NamedNodeMap from which to remove the \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! [in] The index into the map to remove. */ + unsigned long index); + + +/* + * Introduced in DOM level 2 + */ + + +/*! + * \brief Retrieves a \b Node from a \b NamedNodeMap specified by namespace + * URI and local name. + * + * \return A pointer to the \b Node, if found, or \c NULL if it wasn't + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_getNamedItemNS( + /*! The \b NamedNodeMap from which to remove the \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! The namespace URI of the \b Node to remove. */ + const DOMString *namespaceURI, + /*! The local name of the \b Node to remove. */ + const DOMString localName); + + +/*! + * \brief Adds a new \b Node to the \b NamedNodeMap using the \b Node + * local name and namespace URI attributes. + * + * \return The old \b Node if the new \b Node replaces it or \c NULL if the + * \b Node was not in the \b NamedNodeMap before. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_setNamedItemNS( + /*! The \b NamedNodeMap in which to add the \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! The \b Node to add to the map. */ + IXML_Node *arg); + + +/*! + * \brief Removes a \b Node from a \b NamedNodeMap specified by + * namespace URI and local name. + * + * \return A pointer to the \b Node, if found, or \c NULL if it wasn't. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_removeNamedItemNS( + /*! The \b NamedNodeMap from which to remove the \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! The namespace URI of the \b Node to remove. */ + const DOMString namespaceURI, + /*! The local name of the \b Node to remove. */ + const DOMString localName); + + +/*! \brief Frees a \b NamedNodeMap. + * + * The \b Nodes inside the map are not freed, just the \b NamedNodeMap object. + */ +EXPORT_SPEC void ixmlNamedNodeMap_free( + /*! [in] The \b NamedNodeMap to free. */ + IXML_NamedNodeMap *nnMap); + + +/* @} Interface NodeMap */ + + + +/*! + * \name Interface NodeList + * + * The \b NodeList interface abstracts an ordered collection of + * nodes. Note that changes to the underlying nodes will change + * the nodes contained in a \b NodeList. The DOM2-Core refers to + * this as being \em live. + * + * @{ + */ + + +/*! + * \brief Retrieves a \b Node from a \b NodeList specified by a + * numerical index. + * + * \return A pointer to a \b Node or \c NULL if there was an error. + */ +EXPORT_SPEC IXML_Node *ixmlNodeList_item( + /*! [in] The \b NodeList from which to retrieve the \b Node. */ + IXML_NodeList *nList, + /*! [in] The index into the \b NodeList to retrieve. */ + unsigned long index); + + +/*! + * \brief Returns the number of \b Nodes in a \b NodeList. + * + * \return The number of \b Nodes in the \b NodeList. + */ +EXPORT_SPEC unsigned long ixmlNodeList_length( + /*! [in] The \b NodeList for which to retrieve the number of \b Nodes. */ + IXML_NodeList *nList); + + +/*! + * \brief Frees a \b NodeList object. + * + * Since the underlying \b Nodes are references, they are not freed using this + * operation. This only frees the \b NodeList object. + */ +EXPORT_SPEC void ixmlNodeList_free( + /*! [in] The \b NodeList to free. */ + IXML_NodeList *nList); + + +/* @} Interface NodeList */ + + + +/*! + * \name IXML API + * + * The IXML API contains utility functions that are not part of the standard + * DOM interfaces. They include functions to create a DOM structure from a + * file or buffer, create an XML file from a DOM structure, and manipulate + * DOMString objects. + * + * @{ + */ + + +/*! + * \brief Renders a \b Node and all sub-elements into an XML document + * representation. + * + * The caller is required to free the \b DOMString + * returned from this function using \b ixmlFreeDOMString when it + * is no longer required. + * + * Note that this function can be used for any \b Node-derived + * interface. The difference between \b ixmlPrintDocument and + * \b ixmlPrintNode is \b ixmlPrintDocument includes the XML prolog + * while \b ixmlPrintNode only produces XML elements. An XML + * document is not well formed unless it includes the prolog + * and at least one element. + * + * This function introduces lots of white space to print the + * \b DOMString in readable format. + * + * \return A \b DOMString with the XML document representation + * of the DOM tree or \c NULL on an error. + */ +EXPORT_SPEC DOMString ixmlPrintDocument( + /*! [in] The document node to print. */ + IXML_Document *doc); + + +/*! + * \brief Renders a \b Node and all sub-elements into an XML text + * representation. + * + * The caller is required to free the \b DOMString + * returned from this function using \b ixmlFreeDOMString when it + * is no longer required. + * + * Note that this function can be used for any \b Node-derived + * interface. A similar \b ixmlPrintDocument function is defined + * to avoid casting when printing whole documents. This function + * introduces lots of white space to print the \b DOMString in readable + * format. + * + * \return A \b DOMString with the XML text representation of the DOM tree or + * \c NULL on an error. + */ +EXPORT_SPEC DOMString ixmlPrintNode( + /*! [in] The root of the \b Node tree to render to XML text. */ + IXML_Node *doc +); + + +/*! + * \brief Renders a \b Node and all sub-elements into an XML document + * representation. + * + * The caller is required to free the \b DOMString + * returned from this function using \b ixmlFreeDOMString when it + * is no longer required. + * + * Note that this function can be used for any \b Node-derived + * interface. The difference between \b ixmlDocumenttoString and + * \b ixmlNodetoString is \b ixmlDocumenttoString includes the XML + * prolog while \b ixmlNodetoString only produces XML elements. An XML + * document is not well formed unless it includes the prolog + * and at least one element. + * + * \return A \b DOMString with the XML text representation of the DOM tree or + * \c NULL on an error. + */ +EXPORT_SPEC DOMString ixmlDocumenttoString( + /*! [in] The root of the \b Node tree to render to XML text. */ + IXML_Document *doc); + + +/*! + * \brief Renders a \b Node and all sub-elements into an XML text + * representation. The caller is required to free the \b DOMString + * returned from this function using \b ixmlFreeDOMString when it + * is no longer required. + * + * Note that this function can be used for any \b Node-derived + * interface. The difference between \b ixmlNodetoString and + * \b ixmlDocumenttoString is \b ixmlNodetoString does not include + * the XML prolog, it only produces XML elements. + * + * \return A \b DOMString with the XML text representation of the DOM tree or + * \c NULL on an error. + */ +EXPORT_SPEC DOMString ixmlNodetoString( + /*! [in] The root of the \b Node tree to render to XML text. */ + IXML_Node *doc); + + +/*! + * \brief Makes the XML parser more tolerant to malformed text. + */ +EXPORT_SPEC void ixmlRelaxParser( + /*! [in] If \b errorChar is 0 (default), the parser is strict about XML + * encoding : invalid UTF-8 sequences or "&" entities are rejected, and + * the parsing aborts. + * + * If \b errorChar is not 0, the parser is relaxed: invalid UTF-8 + * characters are replaced by the \b errorChar, and invalid "&" entities + * are left untranslated. The parsing is then allowed to continue. + */ + char errorChar); + + +/*! + * \brief Parses an XML text buffer converting it into an IXML DOM representation. + * + * \return A \b Document if the buffer correctly parses or \c NULL on an error. + */ +EXPORT_SPEC IXML_Document *ixmlParseBuffer( + /*! [in] The buffer that contains the XML text to convert to a \b Document. */ + const char *buffer); + + +/*! + * \brief Parses an XML text buffer converting it into an IXML DOM representation. + * + * The \b ixmlParseBufferEx API differs from the \b ixmlParseBuffer + * API in that it returns an error code representing the actual failure + * rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: The \b buffer is not a valid + * pointer. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlParseBufferEx( + /*! [in] The buffer that contains the XML text to convert to a \b Document. */ + const char *buffer, + /*! [out] A point to store the \b Document if file correctly parses or \b NULL on an error. */ + IXML_Document** doc); + + +/*! + * \brief Parses an XML text file converting it into an IXML DOM representation. + * + * \return A \b Document if the file correctly parses or \c NULL on an error. + */ +EXPORT_SPEC IXML_Document *ixmlLoadDocument( + /*! [in] The filename of the XML text to convert to a \b Document. */ + const char* xmlFile); + + +/*! + * \brief Parses an XML text file converting it into an IXML DOM representation. + * + * The \b ixmlLoadDocumentEx API differs from the \b ixmlLoadDocument + * API in that it returns a an error code representing the actual failure + * rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: The \b xmlFile is not a valid + * pointer. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlLoadDocumentEx( + /*! [in] The filename of the XML text to convert to a \b Document. */ + const char *xmlFile, + /*! [out] A pointer to the \b Document if file correctly parses or \b NULL + * on an error. */ + IXML_Document **doc); + + +/*! + * \brief Clones an existing \b DOMString. + * + * \return A new \b DOMString that is a duplicate of the original or \c NULL + * if the operation could not be completed. + */ +EXPORT_SPEC DOMString ixmlCloneDOMString( + /*! [in] The source \b DOMString to clone. */ + const DOMString src); + + +/*! + * \brief Frees a \b DOMString. + */ +EXPORT_SPEC void ixmlFreeDOMString( + /*! [in] The \b DOMString to free. */ + DOMString buf); + + +/* @} IXML API */ + + +#ifdef __cplusplus +} +#endif + + +/* @} XMLAPI XML API */ + + +#endif /* IXML_H */ + diff --git a/1_6.h12_dev/render/include/upnp/UpnpGlobal.h b/1_6.h12_dev/render/include/upnp/UpnpGlobal.h new file mode 100644 index 0000000..a2872f3 --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/UpnpGlobal.h @@ -0,0 +1,122 @@ +#ifndef UPNPGLOBAL_H +#define UPNPGLOBAL_H + +/*! + * \file + * + * \brief Defines constants that for some reason are not defined on some systems. + */ + +#if defined MYLIB_LARGEFILE_SENSITIVE && _FILE_OFFSET_BITS+0 != 64 + #if defined __GNUC__ + #warning libupnp requires largefile mode - use AC_SYS_LARGEFILE + #else + #error libupnp requires largefile mode - use AC_SYS_LARGEFILE + #endif +#endif + +#ifdef WIN32 + /* + * EXPORT_SPEC + */ + #ifdef UPNP_STATIC_LIB + #define EXPORT_SPEC + #else /* UPNP_STATIC_LIB */ + #ifdef LIBUPNP_EXPORTS + /*! set up declspec for dll export to make functions + * visible to library users */ + #define EXPORT_SPEC __declspec(dllexport) + #else /* LIBUPNP_EXPORTS */ + #define EXPORT_SPEC __declspec(dllimport) + #endif /* LIBUPNP_EXPORTS */ + #endif /* UPNP_STATIC_LIB */ + + /* + * UPNP_INLINE + * PRId64 + * PRIzd + * PRIzu + * PRIzx + */ + #ifdef UPNP_USE_MSVCPP + /* define some things the M$ VC++ doesn't know */ + #define UPNP_INLINE _inline + typedef __int64 int64_t; + #define PRId64 "I64d" + #define PRIzd "ld" + #define PRIzu "lu" + #define PRIzx "lx" + #endif /* UPNP_USE_MSVCPP */ + + #ifdef UPNP_USE_BCBPP + /* define some things Borland Builder doesn't know */ + #define UPNP_INLINE inline + typedef __int64 int64_t; + #warning The Borland C compiler is probably broken on PRId64, + #warning please someone provide a proper fix here + #define PRId64 "I64d" + #define PRIzd "zd" + #define PRIzu "zu" + #define PRIzx "zx" + #endif /* UPNP_USE_BCBPP */ + + #ifdef __GNUC__ + #define UPNP_INLINE inline + /* Note with PRIzu that in the case of Mingw32, it's the MS C + * runtime printf which ends up getting called, not the glibc + * printf, so it genuinely doesn't have "zu" + */ + #define PRIzd "ld" + #define PRIzu "lu" + #define PRIzx "lx" + #endif /* __GNUC__ */ +#else + /*! + * \brief Export functions on WIN32 DLLs. + * + * Every funtion that belongs to the library API must use this + * definition upon declaration or it will not be exported on WIN32 + * DLLs. + */ + #define EXPORT_SPEC + + /*! + * \brief Declares an inline function. + * + * Surprisingly, there are some compilers that do not understand the + * inline keyword. This definition makes the use of this keyword + * portable to these systems. + */ + #ifdef __STRICT_ANSI__ + #define UPNP_INLINE __inline__ + #else + #define UPNP_INLINE inline + #endif + + /*! + * \brief Supply the PRId64 printf() macro. + * + * MSVC still does not know about this. + */ + /* #define PRId64 PRId64 */ + + /*! + * \brief Supply the PRIz* printf() macros. + * + * These macros were invented so that we can live a little longer with + * MSVC lack of C99. "z" is the correct printf() size specifier for + * the size_t type. + */ + #define PRIzd "zd" + #define PRIzu "zu" + #define PRIzx "zx" +#endif + +/* + * Defining this macro here gives some interesting information about unused + * functions in the code. Of course, this should never go uncommented on a + * release. + */ +/*#define inline*/ + +#endif /* UPNPGLOBAL_H */ diff --git a/1_6.h12_dev/render/include/upnp/UpnpInet.h b/1_6.h12_dev/render/include/upnp/UpnpInet.h new file mode 100644 index 0000000..ad00a7d --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/UpnpInet.h @@ -0,0 +1,67 @@ +#ifndef UPNPINET_H +#define UPNPINET_H + +/*! + * \addtogroup Sock + * + * @{ + * + * \file + * + * \brief Provides a platform independent way to include TCP/IP types and functions. + */ + +#include "UpnpUniStd.h" /* for close() */ + +#ifdef WIN32 + #include + #ifndef UPNP_USE_MSVCPP + /* Removed: not required (and cause compilation issues) */ + #include + #include + #endif + #include + #include + #include + + #define UpnpCloseSocket closesocket + + #if(_WIN32_WINNT < 0x0600) + typedef short sa_family_t; + #else + typedef ADDRESS_FAMILY sa_family_t; + #endif + +#else /* WIN32 */ + #include + #if defined(__sun) + #include + #include + #elif (defined(BSD) && BSD >= 199306) || defined (__FreeBSD_kernel__) + #include + /* Do not move or remove the include below for "sys/socket"! + * Will break FreeBSD builds. */ + #include + #endif + #include /* for inet_pton() */ + #include + #include + + /*! This typedef makes the code slightly more WIN32 tolerant. + * On WIN32 systems, SOCKET is unsigned and is not a file + * descriptor. */ + typedef int SOCKET; + + /*! INVALID_SOCKET is unsigned on win32. */ + #define INVALID_SOCKET (-1) + + /*! select() returns SOCKET_ERROR on win32. */ + #define SOCKET_ERROR (-1) + + /*! Alias to close() to make code more WIN32 tolerant. */ + #define UpnpCloseSocket close +#endif /* WIN32 */ + +/* @} Sock */ + +#endif /* UPNPINET_H */ diff --git a/1_6.h12_dev/render/include/upnp/UpnpIntTypes.h b/1_6.h12_dev/render/include/upnp/UpnpIntTypes.h new file mode 100644 index 0000000..4575960 --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/UpnpIntTypes.h @@ -0,0 +1,11 @@ +#ifndef UPNPINTTYPES_H +#define UPNPINTTYPES_H + +#if !defined(UPNP_USE_BCBPP) + +/* Printf format for integers. */ +#include + +#endif /* !defined(UPNP_USE_BCBPP) */ + +#endif /* UPNPINTTYPES_H */ diff --git a/1_6.h12_dev/render/include/upnp/UpnpStdInt.h b/1_6.h12_dev/render/include/upnp/UpnpStdInt.h new file mode 100644 index 0000000..9256f57 --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/UpnpStdInt.h @@ -0,0 +1,20 @@ +#ifndef UPNPSTDINT_H +#define UPNPSTDINT_H + +#if !defined(UPNP_USE_BCBPP) + +/* Sized integer types. */ +#include + +#ifdef UPNP_USE_MSVCPP + /* no ssize_t defined for VC */ + #ifdef _WIN64 + typedef int64_t ssize_t; + #else + typedef int32_t ssize_t; + #endif +#endif + +#endif /* !defined(UPNP_USE_BCBPP) */ + +#endif /* UPNPSTDINT_H */ diff --git a/1_6.h12_dev/render/include/upnp/UpnpString.h b/1_6.h12_dev/render/include/upnp/UpnpString.h new file mode 100644 index 0000000..dfa5cbe --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/UpnpString.h @@ -0,0 +1,171 @@ + + +#ifndef STRING_H +#define STRING_H + + +/*! + * \defgroup UpnpString The UpnpString Class + * + * \brief Implements string operations in the UPnP library. + * + * \author Marcelo Roberto Jimenez + * + * \version 1.0 + * + * @{ + * + * \file + * + * \brief UpnpString object declaration. + */ + + +#include "UpnpGlobal.h" /* for EXPORT_SPEC */ + + +#include /* for size_t */ + + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + + +/*! + * \brief Type of the string objects inside libupnp. + */ +typedef struct s_UpnpString UpnpString; + + +/*! + * \brief Constructor. + * + * \return A pointer to a new allocated object. + */ +EXPORT_SPEC UpnpString *UpnpString_new(); + + +/*! + * \brief Destructor. + */ +EXPORT_SPEC void UpnpString_delete( + /*! [in] The \em \b this pointer. */ + UpnpString *p); + + +/*! + * \brief Copy Constructor. + * + * \return A pointer to a new allocated copy of the original object. + */ +EXPORT_SPEC UpnpString *UpnpString_dup( + /*! [in] The \em \b this pointer. */ + const UpnpString *p); + + +/*! + * \brief Assignment operator. + */ +EXPORT_SPEC void UpnpString_assign( + /*! [in] The \em \b this pointer. */ + UpnpString *p, + /*! [in] The \em \b that pointer. */ + const UpnpString *q); + + +/*! + * \brief Returns the length of the string. + * + * \return The length of the string. + * */ +EXPORT_SPEC size_t UpnpString_get_Length( + /*! [in] The \em \b this pointer. */ + const UpnpString *p); + + +/*! + * \brief Truncates the string to the specified lenght, or does nothing + * if the current lenght is less than or equal to the requested length. + * */ +EXPORT_SPEC void UpnpString_set_Length( + /*! [in] The \em \b this pointer. */ + UpnpString *p, + /*! [in] The requested length. */ + size_t n); + + +/*! + * \brief Returns the pointer to char. + * + * \return The pointer to char. + */ +EXPORT_SPEC const char *UpnpString_get_String( + /*! [in] The \em \b this pointer. */ + const UpnpString *p); + + +/*! + * \brief Sets the string from a pointer to char. + */ +EXPORT_SPEC int UpnpString_set_String( + /*! [in] The \em \b this pointer. */ + UpnpString *p, + /*! [in] (char *) to copy from. */ + const char *s); + + +/*! + * \brief Sets the string from a pointer to char using a maximum of N chars. + */ +EXPORT_SPEC int UpnpString_set_StringN( + /*! [in] The \em \b this pointer. */ + UpnpString *p, + /*! [in] (char *) to copy from. */ + const char *s, + /*! Maximum number of chars to copy.*/ + size_t n); + + +/*! + * \brief Clears the string, sets its size to zero. + */ +EXPORT_SPEC void UpnpString_clear( + /*! [in] The \em \b this pointer. */ + UpnpString *p); + + +/*! + * \brief Compares two strings for equality. Case matters. + * + * \return The result of strcmp(). + */ +EXPORT_SPEC int UpnpString_cmp( + /*! [in] The \em \b the first string. */ + UpnpString *p, + /*! [in] The \em \b the second string. */ + UpnpString *q); + + +/*! + * \brief Compares two strings for equality. Case does not matter. + * + * \return The result of strcasecmp(). + */ +EXPORT_SPEC int UpnpString_casecmp( + /*! [in] The \em \b the first string. */ + UpnpString *p, + /*! [in] The \em \b the second string. */ + UpnpString *q); + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + + +/* @} UpnpString The UpnpString API */ + + +#endif /* STRING_H */ + diff --git a/1_6.h12_dev/render/include/upnp/UpnpUniStd.h b/1_6.h12_dev/render/include/upnp/UpnpUniStd.h new file mode 100644 index 0000000..ee10e3a --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/UpnpUniStd.h @@ -0,0 +1,10 @@ +#ifndef UPNPUNISTD_H +#define UPNPUNISTD_H + +#ifdef WIN32 + /* Do not #include on WIN32. */ +#else /* WIN32 */ + #include /* for close() */ +#endif /* WIN32 */ + +#endif /* UPNPUNISTD_H */ diff --git a/1_6.h12_dev/render/include/upnp/ithread.h b/1_6.h12_dev/render/include/upnp/ithread.h new file mode 100644 index 0000000..9e09091 --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/ithread.h @@ -0,0 +1,948 @@ +#ifndef ITHREAD_H +#define ITHREAD_H + +/******************************************************************************* + * + * Copyright (c) 2000-2003 Intel Corporation + * All rights reserved. + * Copyright (c) 2012 France Telecom All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * * Neither name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ******************************************************************************/ + +/*! + * \file + */ + +#if !defined(WIN32) + #include +#endif + +#include "UpnpGlobal.h" /* For UPNP_INLINE, EXPORT_SPEC */ +#include "UpnpUniStd.h" /* for close() */ + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +#if defined(BSD) && !defined(__GNU__) + #define PTHREAD_MUTEX_RECURSIVE_NP PTHREAD_MUTEX_RECURSIVE +#endif + + +#if defined(PTHREAD_MUTEX_RECURSIVE) || defined(__DragonFly__) + /* This system has SuS2-compliant mutex attributes. + * E.g. on Cygwin, where we don't have the old nonportable (NP) symbols + */ + #define ITHREAD_MUTEX_FAST_NP PTHREAD_MUTEX_NORMAL + #define ITHREAD_MUTEX_RECURSIVE_NP PTHREAD_MUTEX_RECURSIVE + #define ITHREAD_MUTEX_ERRORCHECK_NP PTHREAD_MUTEX_ERRORCHECK +#else /* PTHREAD_MUTEX_RECURSIVE */ + #define ITHREAD_MUTEX_FAST_NP PTHREAD_MUTEX_FAST_NP + #define ITHREAD_MUTEX_RECURSIVE_NP PTHREAD_MUTEX_RECURSIVE_NP + #define ITHREAD_MUTEX_ERRORCHECK_NP PTHREAD_MUTEX_ERRORCHECK_NP +#endif /* PTHREAD_MUTEX_RECURSIVE */ + + +#define ITHREAD_PROCESS_PRIVATE PTHREAD_PROCESS_PRIVATE +#define ITHREAD_PROCESS_SHARED PTHREAD_PROCESS_SHARED + + +#define ITHREAD_CANCELED PTHREAD_CANCELED + + +#define ITHREAD_STACK_MIN PTHREAD_STACK_MIN +#define ITHREAD_CREATE_DETACHED PTHREAD_CREATE_DETACHED +#define ITHREAD_CREATE_JOINABLE PTHREAD_CREATE_JOINABLE + +/*************************************************************************** + * Name: ithread_t + * + * Description: + * Thread handle. + * typedef to pthread_t. + * Internal Use Only. + ***************************************************************************/ +typedef pthread_t ithread_t; + + +/**************************************************************************** + * Name: ithread_attr_t + * + * Description: + * Thread attribute. + * typedef to pthread_attr_t + * Internal Use Only + ***************************************************************************/ +typedef pthread_attr_t ithread_attr_t; + + +/**************************************************************************** + * Name: start_routine + * + * Description: + * Thread start routine + * Internal Use Only. + ***************************************************************************/ +typedef void *(*start_routine)(void *arg); + + +/**************************************************************************** + * Name: ithread_cond_t + * + * Description: + * condition variable. + * typedef to pthread_cond_t + * Internal Use Only. + ***************************************************************************/ +typedef pthread_cond_t ithread_cond_t; + + +/**************************************************************************** + * Name: ithread_mutexattr_t + * + * Description: + * Mutex attribute. + * typedef to pthread_mutexattr_t + * Internal Use Only + ***************************************************************************/ +typedef pthread_mutexattr_t ithread_mutexattr_t; + + +/**************************************************************************** + * Name: ithread_mutex_t + * + * Description: + * Mutex. + * typedef to pthread_mutex_t + * Internal Use Only. + ***************************************************************************/ +typedef pthread_mutex_t ithread_mutex_t; + + +/**************************************************************************** + * Name: ithread_condattr_t + * + * Description: + * Condition attribute. + * typedef to pthread_condattr_t + * NOT USED + * Internal Use Only + ***************************************************************************/ +typedef pthread_condattr_t ithread_condattr_t; + + +/**************************************************************************** + * Name: ithread_rwlockattr_t + * + * Description: + * Mutex attribute. + * typedef to pthread_rwlockattr_t + * Internal Use Only + ***************************************************************************/ +#if UPNP_USE_RWLOCK +typedef pthread_rwlockattr_t ithread_rwlockattr_t; +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Name: ithread_rwlock_t + * + * Description: + * Condition attribute. + * typedef to pthread_rwlock_t + * Internal Use Only + ***************************************************************************/ +#if UPNP_USE_RWLOCK + typedef pthread_rwlock_t ithread_rwlock_t; +#else + /* Read-write locks aren't available: use mutex instead. */ + typedef ithread_mutex_t ithread_rwlock_t; +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_initialize_library + * + * Description: + * Initializes the library. Does nothing in all implementations, except + * when statically linked for WIN32. + * Parameters: + * none. + * Returns: + * 0 on success, Nonzero on failure. + ***************************************************************************/ +static UPNP_INLINE int ithread_initialize_library(void) { + int ret = 0; + + return ret; +} + + +/**************************************************************************** + * Function: ithread_cleanup_library + * + * Description: + * Clean up library resources. Does nothing in all implementations, except + * when statically linked for WIN32. + * Parameters: + * none. + * Returns: + * 0 on success, Nonzero on failure. + ***************************************************************************/ +static UPNP_INLINE int ithread_cleanup_library(void) { + int ret = 0; + + return ret; +} + + +/**************************************************************************** + * Function: ithread_initialize_thread + * + * Description: + * Initializes the thread. Does nothing in all implementations, except + * when statically linked for WIN32. + * Parameters: + * none. + * Returns: + * 0 on success, Nonzero on failure. + ***************************************************************************/ +static UPNP_INLINE int ithread_initialize_thread(void) { + int ret = 0; + +#if defined(WIN32) && defined(PTW32_STATIC_LIB) + ret = !pthread_win32_thread_attach_np(); +#endif + + return ret; +} + + +/**************************************************************************** + * Function: ithread_cleanup_thread + * + * Description: + * Clean up thread resources. Does nothing in all implementations, except + * when statically linked for WIN32. + * Parameters: + * none. + * Returns: + * 0 on success, Nonzero on failure. + ***************************************************************************/ +static UPNP_INLINE int ithread_cleanup_thread(void) { + int ret = 0; + +#if defined(WIN32) && defined(PTW32_STATIC_LIB) + ret = !pthread_win32_thread_detach_np(); +#endif + + return ret; +} + + +/**************************************************************************** + * Function: ithread_mutexattr_init + * + * Description: + * Initializes a mutex attribute variable. + * Used to set the type of the mutex. + * Parameters: + * ithread_mutexattr_init * attr (must be valid non NULL pointer to + * pthread_mutexattr_t) + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_mutexattr_init + ***************************************************************************/ +#define ithread_mutexattr_init pthread_mutexattr_init + + +/**************************************************************************** + * Function: ithread_mutexattr_destroy + * + * Description: + * Releases any resources held by the mutex attribute. + * Currently there are no resources associated with the attribute + * Parameters: + * ithread_mutexattr_t * attr (must be valid non NULL pointer to + * pthread_mutexattr_t) + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_mutexattr_destroy + ***************************************************************************/ +#define ithread_mutexattr_destroy pthread_mutexattr_destroy + + +/**************************************************************************** + * Function: ithread_mutexattr_setkind_np + * + * Description: + * Sets the mutex type in the attribute. + * Valid types are: ITHREAD_MUTEX_FAST_NP + * ITHREAD_MUTEX_RECURSIVE_NP + * ITHREAD_MUTEX_ERRORCHECK_NP + * + * Parameters: + * ithread_mutexattr_t * attr (must be valid non NULL pointer to + * ithread_mutexattr_t) + * int kind (one of ITHREAD_MUTEX_FAST_NP or ITHREAD_MUTEX_RECURSIVE_NP + * or ITHREAD_MUTEX_ERRORCHECK_NP) + * Returns: + * 0 on success. Nonzero on failure. + * Returns EINVAL if the kind is not supported. + * See man page for pthread_mutexattr_setkind_np + *****************************************************************************/ +#if defined(PTHREAD_MUTEX_RECURSIVE) || defined(__DragonFly__) + #define ithread_mutexattr_setkind_np pthread_mutexattr_settype +#else + #define ithread_mutexattr_setkind_np pthread_mutexattr_setkind_np +#endif /* UPNP_USE_RWLOCK */ + +/**************************************************************************** + * Function: ithread_mutexattr_getkind_np + * + * Description: + * Gets the mutex type in the attribute. + * Valid types are: ITHREAD_MUTEX_FAST_NP + * ITHREAD_MUTEX_RECURSIVE_NP + * ITHREAD_MUTEX_ERRORCHECK_NP + * + * Parameters: + * ithread_mutexattr_t * attr (must be valid non NULL pointer to + * pthread_mutexattr_t) + * int *kind (one of ITHREAD_MUTEX_FAST_NP or ITHREAD_MUTEX_RECURSIVE_NP + * or ITHREAD_MUTEX_ERRORCHECK_NP) + * Returns: + * 0 on success. Nonzero on failure. + * Always returns 0. + * See man page for pthread_mutexattr_getkind_np + *****************************************************************************/ +#if defined(PTHREAD_MUTEX_RECURSIVE) || defined(__DragonFly__) + #define ithread_mutexattr_getkind_np pthread_mutexattr_gettype +#else + #define ithread_mutexattr_getkind_np pthread_mutexattr_getkind_np +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_mutex_init + * + * Description: + * Initializes mutex. + * Must be called before use. + * + * Parameters: + * ithread_mutex_t * mutex (must be valid non NULL pointer to pthread_mutex_t) + * const ithread_mutexattr_t * mutex_attr + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_mutex_init + *****************************************************************************/ +#define ithread_mutex_init pthread_mutex_init + + +/**************************************************************************** + * Function: ithread_mutex_lock + * + * Description: + * Locks mutex. + * Parameters: + * ithread_mutex_t * mutex (must be valid non NULL pointer to pthread_mutex_t) + * mutex must be initialized. + * + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_mutex_lock + *****************************************************************************/ +#define ithread_mutex_lock pthread_mutex_lock + + +/**************************************************************************** + * Function: ithread_mutex_unlock + * + * Description: + * Unlocks mutex. + * + * Parameters: + * ithread_mutex_t * mutex (must be valid non NULL pointer to pthread_mutex_t) + * mutex must be initialized. + * + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_mutex_unlock + *****************************************************************************/ +#define ithread_mutex_unlock pthread_mutex_unlock + + +/**************************************************************************** + * Function: ithread_mutex_destroy + * + * Description: + * Releases any resources held by the mutex. + * Mutex can no longer be used after this call. + * Mutex is only destroyed when there are no longer any threads waiting on it. + * Mutex cannot be destroyed if it is locked. + * Parameters: + * ithread_mutex_t * mutex (must be valid non NULL pointer to pthread_mutex_t) + * mutex must be initialized. + * Returns: + * 0 on success. Nonzero on failure. + * Always returns 0. + * See man page for pthread_mutex_destroy + *****************************************************************************/ +#define ithread_mutex_destroy pthread_mutex_destroy + + +/**************************************************************************** + * Function: ithread_rwlockattr_init + * + * Description: + * Initializes a rwlock attribute variable to default values. + * Parameters: + * const ithread_rwlockattr_init *attr (must be valid non NULL pointer to + * pthread_rwlockattr_t) + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_rwlockattr_init + ***************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlockattr_init pthread_rwlockattr_init +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_rwlockattr_destroy + * + * Description: + * Releases any resources held by the rwlock attribute. + * Parameters: + * ithread_rwlockattr_t *attr (must be valid non NULL pointer to + * pthread_rwlockattr_t) + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_rwlockattr_destroy + ***************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlockattr_destroy pthread_rwlockattr_destroy +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_rwlockatttr_setpshared + * + * Description: + * Sets the rwlock type in the attribute. + * Valid types are: ITHREAD_PROCESS_PRIVATE + * ITHREAD_PROCESS_SHARED + * + * Parameters: + * ithread_rwlockattr_t * attr (must be valid non NULL pointer to + * ithread_rwlockattr_t) + * int kind (one of ITHREAD_PROCESS_PRIVATE or ITHREAD_PROCESS_SHARED) + * + * Returns: + * 0 on success. Nonzero on failure. + * Returns EINVAL if the kind is not supported. + * See man page for pthread_rwlockattr_setkind_np + *****************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlockatttr_setpshared pthread_rwlockatttr_setpshared +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_rwlockatttr_getpshared + * + * Description: + * Gets the rwlock type in the attribute. + * Valid types are: ITHREAD_PROCESS_PRIVATE + * ITHREAD_PROCESS_SHARED + * + * Parameters: + * ithread_rwlockattr_t * attr (must be valid non NULL pointer to + * pthread_rwlockattr_t) + * int *kind (one of ITHREAD_PROCESS_PRIVATE or ITHREAD_PROCESS_SHARED) + * + * Returns: + * 0 on success. Nonzero on failure. + * Always returns 0. + * See man page for pthread_rwlockatttr_getpshared + *****************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlockatttr_getpshared pthread_rwlockatttr_getpshared +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_rwlock_init + * + * Description: + * Initializes rwlock. + * Must be called before use. + * + * Parameters: + * ithread_rwlock_t *rwlock (must be valid non NULL pointer to pthread_rwlock_t) + * const ithread_rwlockattr_t *rwlock_attr + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_rwlock_init + *****************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlock_init pthread_rwlock_init +#else + /* Read-write locks aren't available: use mutex instead. */ + #define ithread_rwlock_init ithread_mutex_init +#endif + +/**************************************************************************** + * Function: ithread_rwlock_rdlock + * + * Description: + * Locks rwlock for reading. + * Parameters: + * ithread_rwlock_t *rwlock (must be valid non NULL pointer to pthread_rwlock_t) + * rwlock must be initialized. + * + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_rwlock_rdlock + *****************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlock_rdlock pthread_rwlock_rdlock +#else + /* Read-write locks aren't available: use mutex instead. */ + #define ithread_rwlock_rdlock ithread_mutex_lock +#endif /* UPNP_USE_RWLOCK */ + +/**************************************************************************** + * Function: ithread_rwlock_wrlock + * + * Description: + * Locks rwlock for writting. + * Parameters: + * ithread_rwlock_t *rwlock (must be valid non NULL pointer to pthread_rwlock_t) + * rwlock must be initialized. + * + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_rwlock_wrlock + *****************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlock_wrlock pthread_rwlock_wrlock +#else + /* Read-write locks aren't available: use mutex instead. */ + #define ithread_rwlock_wrlock ithread_mutex_lock +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_rwlock_unlock + * + * Description: + * Unlocks rwlock. + * + * Parameters: + * ithread_rwlock_t *rwlock (must be valid non NULL pointer to pthread_rwlock_t) + * rwlock must be initialized. + * + * Returns: + * 0 on success, Nonzero on failure. + * Always returns 0. + * See man page for pthread_rwlock_unlock + *****************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlock_unlock pthread_rwlock_unlock +#else + /* Read-write locks aren't available: use mutex instead. */ + #define ithread_rwlock_unlock ithread_mutex_unlock +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_rwlock_destroy + * + * Description: + * Releases any resources held by the rwlock. + * rwlock can no longer be used after this call. + * rwlock is only destroyed when there are no longer any threads waiting on it. + * rwlock cannot be destroyed if it is locked. + * Parameters: + * ithread_rwlock_t *rwlock (must be valid non NULL pointer to pthread_rwlock_t) + * rwlock must be initialized. + * Returns: + * 0 on success. Nonzero on failure. + * Always returns 0. + * See man page for pthread_rwlock_destroy + *****************************************************************************/ +#if UPNP_USE_RWLOCK + #define ithread_rwlock_destroy pthread_rwlock_destroy +#else + /* Read-write locks aren't available: use mutex instead. */ + #define ithread_rwlock_destroy ithread_mutex_destroy +#endif /* UPNP_USE_RWLOCK */ + + +/**************************************************************************** + * Function: ithread_cond_init + * + * Description: + * Initializes condition variable. + * Must be called before use. + * Parameters: + * ithread_cond_t *cond (must be valid non NULL pointer to pthread_cond_t) + * const ithread_condattr_t *cond_attr (ignored) + * Returns: + * 0 on success, Nonzero on failure. + * See man page for pthread_cond_init + *****************************************************************************/ +#define ithread_cond_init pthread_cond_init + + +/**************************************************************************** + * Function: ithread_cond_signal + * + * Description: + * Wakes up exactly one thread waiting on condition. + * Associated mutex MUST be locked by thread before entering this call. + * Parameters: + * ithread_cond_t *cond (must be valid non NULL pointer to + * ithread_cond_t) + * cond must be initialized + * Returns: + * 0 on success, Nonzero on failure. + * See man page for pthread_cond_signal + *****************************************************************************/ +#define ithread_cond_signal pthread_cond_signal + + +/**************************************************************************** + * Function: ithread_cond_broadcast + * + * Description: + * Wakes up all threads waiting on condition. + * Associated mutex MUST be locked by thread before entering this call. + * Parameters: + * ithread_cond_t *cond (must be valid non NULL pointer to + * ithread_cond_t) + * cond must be initialized + * Returns: + * 0 on success, Nonzero on failure. + * See man page for pthread_cond_broadcast + *****************************************************************************/ +#define ithread_cond_broadcast pthread_cond_broadcast + + +/**************************************************************************** + * Function: ithread_cond_wait + * + * Description: + * Atomically releases mutex and waits on condition. + * Associated mutex MUST be locked by thread before entering this call. + * Mutex is reacquired when call returns. + * Parameters: + * ithread_cond_t *cond (must be valid non NULL pointer to + * ithread_cond_t) + * cond must be initialized + * ithread_mutex_t *mutex (must be valid non NULL pointer to + * ithread_mutex_t) + * Mutex must be locked. + * Returns: + * 0 on success, Nonzero on failure. + * See man page for pthread_cond_wait + *****************************************************************************/ +#define ithread_cond_wait pthread_cond_wait + + + /**************************************************************************** + * Function: pthread_cond_timedwait + * + * Description: + * Atomically releases the associated mutex and waits on the + * condition. + * If the condition is not signaled in the specified time than the + * call times out and returns. + * Associated mutex MUST be locked by thread before entering this call. + * Mutex is reacquired when call returns. + * Parameters: + * ithread_cond_t *cond (must be valid non NULL pointer to ithread_cond_t) + * cond must be initialized + * ithread_mutex_t *mutex (must be valid non NULL pointer to ithread_mutex_t) + * Mutex must be locked. + * const struct timespec *abstime (absolute time, measured from Jan 1, 1970) + * Returns: + * 0 on success. ETIMEDOUT on timeout. Nonzero on failure. + * See man page for pthread_cond_timedwait + ***************************************************************************/ + +#define ithread_cond_timedwait pthread_cond_timedwait + + + /**************************************************************************** + * Function: ithread_cond_destroy + * + * Description: + * Releases any resources held by the condition variable. + * Condition variable can no longer be used after this call. + * Parameters: + * ithread_cond_t *cond (must be valid non NULL pointer to + * ithread_cond_t) + * cond must be initialized. + * Returns: + * 0 on success. Nonzero on failure. + * See man page for pthread_cond_destroy + ***************************************************************************/ +#define ithread_cond_destroy pthread_cond_destroy + + /**************************************************************************** + * Function: ithread_attr_init + * + * Description: + * Initialises thread attribute object. + * Parameters: + * ithread_attr_t *attr (must be valid non NULL pointer to + * ithread_attr_t) + * Returns: + * 0 on success. Nonzero on failure. + * See man page for pthread_attr_init + ***************************************************************************/ +#define ithread_attr_init pthread_attr_init + + /**************************************************************************** + * Function: ithread_attr_destroy + * + * Description: + * Destroys thread attribute object. + * Parameters: + * ithread_attr_t *attr (must be valid non NULL pointer to + * ithread_attr_t) + * Returns: + * 0 on success. Nonzero on failure. + * See man page for pthread_attr_destroy + ***************************************************************************/ +#define ithread_attr_destroy pthread_attr_destroy + + /**************************************************************************** + * Function: ithread_attr_setstacksize + * + * Description: + * Sets stack size of a thread attribute object. + * Parameters: + * ithread_attr_t *attr (must be valid non NULL pointer to + * ithread_attr_t) + * size_t stacksize (value of stacksize must be greater than + * ITHREAD_STACK_MIN and lower than system-imposed limits + * Returns: + * 0 on success. Nonzero on failure. + * See man page for pthread_attr_setstacksize + ***************************************************************************/ +#define ithread_attr_setstacksize pthread_attr_setstacksize + + /**************************************************************************** + * Function: ithread_attr_setdetachstate + * + * Description: + * Sets detach state of a thread attribute object. + * Parameters: + * ithread_attr_t *attr (must be valid non NULL pointer to + * ithread_attr_t) + * int detachstate (value of detachstate must be ITHREAD_CREATE_DETACHED + * or ITHREAD_CREATE_JOINABLE) + * Returns: + * 0 on success. Nonzero on failure. + * See man page for pthread_attr_setdetachstate + ***************************************************************************/ +#define ithread_attr_setdetachstate pthread_attr_setdetachstate + + /**************************************************************************** + * Function: ithread_create + * + * Description: + * Creates a thread with the given start routine + * and argument. + * Parameters: + * ithread_t * thread (must be valid non NULL pointer to pthread_t) + * ithread_attr_t *attr + * void * (start_routine) (void *arg) (start routine) + * void * arg - argument. + * Returns: + * 0 on success. Nonzero on failure. + * Returns EAGAIN if a new thread can not be created. + * Returns EINVAL if there is a problem with the arguments. + * See man page fore pthread_create + ***************************************************************************/ +#define ithread_create pthread_create + + + /**************************************************************************** + * Function: ithread_cancel + * + * Description: + * Cancels a thread. + * Parameters: + * ithread_t * thread (must be valid non NULL pointer to ithread_t) + * Returns: + * 0 on success. Nonzero on failure. + * See man page for pthread_cancel + ***************************************************************************/ +#define ithread_cancel pthread_cancel + + + /**************************************************************************** + * Function: ithread_exit + * + * Description: + * Returns a return code from a thread. + * Implicitly called when the start routine returns. + * Parameters: + * void * return_code return code to return + * See man page for pthread_exit + ***************************************************************************/ +#define ithread_exit pthread_exit + + +/**************************************************************************** + * Function: ithread_get_current_thread_id + * + * Description: + * Returns the handle of the currently running thread. + * Returns: + * The handle of the currently running thread. + * See man page for pthread_self + ***************************************************************************/ +#define ithread_get_current_thread_id pthread_self + + + /**************************************************************************** + * Function: ithread_self + * + * Description: + * Returns the handle of the currently running thread. + * Returns: + * The handle of the currently running thread. + * See man page for pthread_self + ***************************************************************************/ +#define ithread_self pthread_self + + + /**************************************************************************** + * Function: ithread_detach + * + * Description: + * Makes a thread's resources reclaimed immediately + * after it finishes + * execution. + * Returns: + * 0 on success, Nonzero on failure. + * See man page for pthread_detach + ***************************************************************************/ +#define ithread_detach pthread_detach + + + /**************************************************************************** + * Function: ithread_join + * + * Description: + * Suspends the currently running thread until the + * specified thread + * has finished. + * Returns the return code of the thread, or ITHREAD_CANCELED + * if the thread has been canceled. + * Parameters: + * ithread_t *thread (valid non null thread identifier) + * void ** return (space for return code) + * Returns: + * 0 on success, Nonzero on failure. + * See man page for pthread_join + ***************************************************************************/ +#define ithread_join pthread_join + + +/**************************************************************************** + * Function: isleep + * + * Description: + * Suspends the currently running thread for the specified number + * of seconds + * Always returns 0. + * Parameters: + * unsigned int seconds - number of seconds to sleep. + * Returns: + * 0 on success, Nonzero on failure. + * See man page for sleep (man 3 sleep) + *****************************************************************************/ +#ifdef WIN32 + #define isleep(x) Sleep((x)*1000) +#else + #define isleep sleep +#endif + + +/**************************************************************************** + * Function: isleep + * + * Description: + * Suspends the currently running thread for the specified number + * of milliseconds + * Always returns 0. + * Parameters: + * unsigned int milliseconds - number of milliseconds to sleep. + * Returns: + * 0 on success, Nonzero on failure. + * See man page for sleep (man 3 sleep) + *****************************************************************************/ +#ifdef WIN32 + #define imillisleep Sleep +#else + #define imillisleep(x) usleep(1000*x) +#endif + + +#if !defined(PTHREAD_MUTEX_RECURSIVE) && !defined(__DragonFly__) && !defined(UPNP_USE_MSVCPP) +/* !defined(UPNP_USE_MSVCPP) should probably also have pthreads version check - but it's not clear if that is possible */ +/* NK: Added for satisfying the gcc compiler */ +EXPORT_SPEC int pthread_mutexattr_setkind_np(pthread_mutexattr_t *attr, int kind); +#endif + + +#ifdef __cplusplus +} +#endif + + +#endif /* ITHREAD_H */ + diff --git a/1_6.h12_dev/render/include/upnp/ixml.h b/1_6.h12_dev/render/include/upnp/ixml.h new file mode 100644 index 0000000..d58255d --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/ixml.h @@ -0,0 +1,1835 @@ +/************************************************************************** + * + * Copyright (c) 2000-2003 Intel Corporation + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * - Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * - Neither name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + **************************************************************************/ + + +#ifndef IXML_H +#define IXML_H + + +/*! + * \file + * + * \defgroup XMLAPI XML API + * + * @{ + */ + + +#include "UpnpGlobal.h" /* For EXPORT_SPEC */ + +/* Define BOOL. */ +#ifndef __OBJC__ + typedef int BOOL; +#else + /* For Objective C compilers, include objc.h which defines BOOL. */ + #include +#endif + +/*! + * \brief The type of DOM strings. + */ +#define DOMString char * +/*typedef char *DOMString;*/ + + +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef IN +#define IN +#endif + +#ifndef OUT +#define OUT +#endif + +#ifndef INOUT +#define INOUT +#endif + + +/*! + * \name DOM Interfaces + * + * The Document Object Model consists of a set of objects and interfaces + * for accessing and manipulating documents. IXML does not implement all + * the interfaces documented in the DOM2-Core recommendation but defines + * a subset of the most useful interfaces. A description of the supported + * interfaces and methods is presented in this section. + * + * For a complete discussion on the object model, the object hierarchy, + * etc., refer to section 1.1 of the DOM2-Core recommendation. + * + * @{ + */ + + +/*! + * \brief The type of the DOM node + */ +typedef enum { + eINVALID_NODE = 0, + eELEMENT_NODE = 1, + eATTRIBUTE_NODE = 2, + eTEXT_NODE = 3, + eCDATA_SECTION_NODE = 4, + eENTITY_REFERENCE_NODE = 5, + eENTITY_NODE = 6, + ePROCESSING_INSTRUCTION_NODE = 7, + eCOMMENT_NODE = 8, + eDOCUMENT_NODE = 9, + eDOCUMENT_TYPE_NODE = 10, + eDOCUMENT_FRAGMENT_NODE = 11, + eNOTATION_NODE = 12, +} IXML_NODE_TYPE; + + +/*! + * \brief Error codes returned by the XML API, see the DOM spec + */ +typedef enum { + IXML_SUCCESS = 0, + + IXML_INDEX_SIZE_ERR = 1, + IXML_DOMSTRING_SIZE_ERR = 2, + IXML_HIERARCHY_REQUEST_ERR = 3, + IXML_WRONG_DOCUMENT_ERR = 4, + IXML_INVALID_CHARACTER_ERR = 5, + IXML_NO_DATA_ALLOWED_ERR = 6, + IXML_NO_MODIFICATION_ALLOWED_ERR = 7, + IXML_NOT_FOUND_ERR = 8, + IXML_NOT_SUPPORTED_ERR = 9, + IXML_INUSE_ATTRIBUTE_ERR = 10, + IXML_INVALID_STATE_ERR = 11, + IXML_SYNTAX_ERR = 12, + IXML_INVALID_MODIFICATION_ERR = 13, + IXML_NAMESPACE_ERR = 14, + IXML_INVALID_ACCESS_ERR = 15, + + IXML_NO_SUCH_FILE = 101, + IXML_INSUFFICIENT_MEMORY = 102, + IXML_FILE_DONE = 104, + IXML_INVALID_PARAMETER = 105, + IXML_FAILED = 106, + IXML_INVALID_ITEM_NUMBER = 107, +} IXML_ERRORCODE; + + +#define DOCUMENTNODENAME "#document" +#define TEXTNODENAME "#text" +#define CDATANODENAME "#cdata-section" + + +typedef struct _IXML_Document *Docptr; + + +typedef struct _IXML_Node *Nodeptr; + + +/*! + * \brief Data structure common to all types of nodes. + */ +typedef struct _IXML_Node +{ + DOMString nodeName; + DOMString nodeValue; + IXML_NODE_TYPE nodeType; + DOMString namespaceURI; + DOMString prefix; + DOMString localName; + BOOL readOnly; + + Nodeptr parentNode; + Nodeptr firstChild; + Nodeptr prevSibling; + Nodeptr nextSibling; + Nodeptr firstAttr; + Docptr ownerDocument; +} IXML_Node; + + +/*! + * \brief Data structure representing the DOM Document. + */ +typedef struct _IXML_Document +{ + IXML_Node n; +} IXML_Document; + + +/*! + * \brief Data structure representing a CDATA section node. + */ +typedef struct _IXML_CDATASection +{ + IXML_Node n; +} IXML_CDATASection; + + +/*! + * \brief Data structure representing an Element node. + */ +typedef struct _IXML_Element +{ + IXML_Node n; + DOMString tagName; +} IXML_Element; + + +/*! + * \brief Data structure representing an Attribute node. + */ +typedef struct _IXML_ATTR +{ + IXML_Node n; + BOOL specified; + IXML_Element *ownerElement; +} IXML_Attr; + + +/*! + * \brief Data structure representing a Text node. + */ +typedef struct _IXML_Text +{ + IXML_Node n; +} IXML_Text; + + +/*! + * \brief Data structure representing a list of nodes. + */ +typedef struct _IXML_NodeList +{ + IXML_Node *nodeItem; + struct _IXML_NodeList *next; +} IXML_NodeList; + + +/*! + * \brief Data structure representing a list of named nodes. + */ +typedef struct _IXML_NamedNodeMap +{ + IXML_Node *nodeItem; + struct _IXML_NamedNodeMap *next; +} IXML_NamedNodeMap; + +/* @} DOM Interfaces */ + + + +#ifdef __cplusplus +extern "C" { +#endif + + +/*! + * \name Interface Node + * + * The \b Node interface forms the primary datatype for all other DOM + * objects. Every other interface is derived from this interface, inheriting + * its functionality. For more information, refer to DOM2-Core page 34. + * + * @{ + */ + +/*! + * \brief Returns the name of the \b Node, depending on what type of + * \b Node it is, in a read-only string. + * + * Refer to the table in the + * DOM2-Core for a description of the node names for various interfaces. + * + * \return A constant \b DOMString of the node name. + */ +EXPORT_SPEC const DOMString ixmlNode_getNodeName( + /*! [in] Pointer to the node to retrieve the name. */ + IXML_Node *nodeptr); + + +/*! + * \brief Returns the value of the \b Node as a string. + * + * Note that this string is not a copy and modifying it will modify the value + * of the \b Node. + * + * \return A \b DOMString of the \b Node value. + */ +EXPORT_SPEC const DOMString ixmlNode_getNodeValue( + /*! [in] Pointer to the \b Node to retrieve the value. */ + IXML_Node *nodeptr); + + +/*! + * \brief Assigns a new value to a \b Node. + * + * The \b newNodeValue string is duplicated and stored in the \b Node so that + * the original does not have to persist past this call. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: The Node * is not a valid pointer. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists to + * complete this operation. + */ +EXPORT_SPEC int ixmlNode_setNodeValue( + /*! [in] The \b Node to which to assign a new value. */ + IXML_Node *nodeptr, + /*! [in] The new value of the \b Node. */ + const char *newNodeValue); + + +/*! + * \brief Retrieves the type of a \b Node. + * + * \return An enum IXML_NODE_TYPE representing the type of the \b Node. + */ +EXPORT_SPEC unsigned short ixmlNode_getNodeType( + /*! [in] The \b Node from which to retrieve the type. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the parent \b Node for a \b Node. + * + * \return A pointer to the parent \b Node or \c NULL if the \b Node has no + * parent. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getParentNode( + /*! [in] The \b Node from which to retrieve the parent. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the list of children of a \b Node in a \b NodeList + * structure. + * + * If a \b Node has no children, \b ixmlNode_getChildNodes + * returns a \b NodeList structure that contains no \b Nodes. + * + * \return A \b NodeList of the children of the \b Node. + */ +EXPORT_SPEC IXML_NodeList *ixmlNode_getChildNodes( + /*! [in] The \b Node from which to retrieve the children. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the first child \b Node of a \b Node. + * + * \return A pointer to the first child \b Node or \c NULL if the \b Node does + * not have any children. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getFirstChild( + /*! [in] The \b Node from which to retrieve the first child. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the last child \b Node of a \b Node. + * + * \return A pointer to the last child \b Node or \c NULL if the \b Node does + * not have any children. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getLastChild( + /*! [in] The \b Node from which to retrieve the last child. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the sibling \b Node immediately preceding this \b Node. + * + * \return A pointer to the previous sibling \b Node or \c NULL if no such + * \b Node exists. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getPreviousSibling( + /*! [in] The \b Node for which to retrieve the previous sibling. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the sibling \b Node immediately following this \b Node. + * + * \return A pointer to the next sibling \b Node or \c NULL if no such + * \b Node exists. + */ +EXPORT_SPEC IXML_Node *ixmlNode_getNextSibling( + /*! [in] The \b Node from which to retrieve the next sibling. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the attributes of a \b Node, if it is an \b Element node, + * in a \b NamedNodeMap structure. + * + * \return A \b NamedNodeMap of the attributes or \c NULL. + */ +EXPORT_SPEC IXML_NamedNodeMap *ixmlNode_getAttributes( + /*! [in] The \b Node from which to retrieve the attributes. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the document object associated with this \b Node. + * + * This owner document \b Node allows other \b Nodes to be created in the + * context of this document. Note that \b Document nodes do not have an + * owner document. + * + * \return A pointer to the owning \b Document or \c NULL, if the \b Node + * does not have an owner. + */ +EXPORT_SPEC IXML_Document *ixmlNode_getOwnerDocument( + /*! [in] The \b Node from which to retrieve the owner document. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the namespace URI for a \b Node as a \b DOMString. + * + * Only \b Nodes of type \c eELEMENT_NODE or \c eATTRIBUTE_NODE can have a + * namespace URI. \b Nodes created through the \b Document interface will + * only contain a namespace if created using \b ixmlDocument_createElementNS. + * + * \return A \b DOMString representing the URI of the namespace or \c NULL. + */ +EXPORT_SPEC const DOMString ixmlNode_getNamespaceURI( + /*! [in] The \b Node for which to retrieve the namespace. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the namespace prefix, if present. + * + * The prefix is the name used as an alias for the namespace URI for this + * element. Only \b Nodes of type \c eELEMENT_NODE or \c eATTRIBUTE_NODE can + * have a prefix. \b Nodes created through the \b Document interface will only + * contain a prefix if created using \b ixmlDocument_createElementNS. + * + * \return A \b DOMString representing the namespace prefix or \c NULL. + */ +EXPORT_SPEC const DOMString +ixmlNode_getPrefix( + /*! The \b Node from which to retrieve the prefix. */ + IXML_Node *nodeptr); + + +/*! + * \brief Retrieves the local name of a \b Node, if present. + * + * The local name is the tag name without the namespace prefix. Only \b Nodes + * of type \c eELEMENT_NODE or \c eATTRIBUTE_NODE can have a local name. + * \b Nodes created through the \b Document interface will only contain a local + * name if created using \b ixmlDocument_createElementNS. + * + * \return A \b DOMString representing the local name of the \b Element or + * \c NULL. + */ +EXPORT_SPEC const DOMString ixmlNode_getLocalName( + /*! [in] The \b Node from which to retrieve the local name. */ + IXML_Node *nodeptr); + +/*! + * \brief Inserts a new child \b Node before the existing child \b Node. + * + * \b refChild can be \c NULL, which inserts \b newChild at the + * end of the list of children. Note that the \b Node (or \b Nodes) + * in \b newChild must already be owned by the owner document (or have no + * owner at all) of \b nodeptr for insertion. If not, the \b Node + * (or \b Nodes) must be imported into the document using + * \b ixmlDocument_importNode. If \b newChild is already in the tree, + * it is removed first. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b nodeptr or + * \b newChild is \c NULL. + * \li \c IXML_HIERARCHY_REQUEST_ERR: The type of the \b Node + * does not allow children of the type of \b newChild. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newChild has an owner + * document that does not match the owner of \b nodeptr. + * \li \c IXML_NO_MODIFICATION_ALLOWED_ERR: \b nodeptr is + * read-only or the parent of the \b Node being inserted is + * read-only. + * \li \c IXML_NOT_FOUND_ERR: \b refChild is not a child of + * \b nodeptr. + */ +EXPORT_SPEC int ixmlNode_insertBefore( + /*! [in] The parent of the \b Node before which to insert the new child. */ + IXML_Node *nodeptr, + /*! [in] The \b Node to insert into the tree. */ + IXML_Node * newChild, + /*! [in] The reference child where the new \b Node should be inserted. + * The new \b Node will appear directly before the reference child. */ + IXML_Node * refChild); + + +/*! + * \brief Replaces an existing child \b Node with a new child \b Node in the + * list of children of a \b Node. + * + * If \b newChild is already in the tree, it will first be removed. + * \b returnNode will contain the \b oldChild \b Node, appropriately removed + * from the tree (i.e. it will no longer have an owner document). + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMTER: Either \b nodeptr, \b newChild, + * or \b oldChild is \c NULL. + * \li \c IXML_HIERARCHY_REQUEST_ERR: The \b newChild is not + * a type of \b Node that can be inserted into this tree or + * \b newChild is an ancestor of \b nodePtr. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newChild was created from + * a different document than \b nodeptr. + * \li \c IXML_NO_MODIFICATION_ALLOWED_ERR: \b nodeptr or + * its parent is read-only. + * \li \c IXML_NOT_FOUND_ERR: \b oldChild is not a child of + * \b nodeptr. + */ +EXPORT_SPEC int ixmlNode_replaceChild( + /*! [in] The parent of the \b Node which contains the child to replace. */ + IXML_Node *nodeptr, + /*! [in] The child with which to replace \b oldChild. */ + IXML_Node *newChild, + /*! [in] The child to replace with \b newChild. */ + IXML_Node *oldChild, + /*! [out] Pointer to a \b Node to place the removed \b oldChild \b Node. */ + IXML_Node **returnNode); + + +/*! + * \brief Removes a child from the list of children of a \b Node. + * + * \b returnNode will contain the \b oldChild \b Node, + * appropriately removed from the tree (i.e. it will no longer have an + * owner document). + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b nodeptr or + * \b oldChild is \c NULL. + * \li \c IXML_NO_MODIFICATION_ALLOWED_ERR: \b nodeptr or its + * parent is read-only. + * \li \c IXML_NOT_FOUND_ERR: \b oldChild is not among the + * children of \b nodeptr. + */ +EXPORT_SPEC int ixmlNode_removeChild( + /*! [in] The parent of the child to remove. */ + IXML_Node *nodeptr, + /*! [in] The child \b Node to remove. */ + IXML_Node *oldChild, + /*! [out] Pointer to a \b Node to place the removed \b oldChild \b Node. */ + IXML_Node **returnNode); + + +/*! + * \brief Appends a child \b Node to the list of children of a \b Node. + * + * If \b newChild is already in the tree, it is removed first. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b nodeptr or + * \b newChild is \c NULL. + * \li \c IXML_HIERARCHY_REQUEST_ERR: \b newChild is of a type + * that cannot be added as a child of \b nodeptr or + * \b newChild is an ancestor of \b nodeptr. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newChild was created from + * a different document than \b nodeptr. + * \li \c IXML_NO_MODIFICATION_ALLOWED_ERR: \b nodeptr is a + * read-only \b Node. + */ +EXPORT_SPEC int ixmlNode_appendChild( + /*! [in] The \b Node in which to append the new child. */ + IXML_Node *nodeptr, + /*! [in] The new child to append. */ + IXML_Node * newChild); + + +/*! + * \brief Queries whether or not a \b Node has children. + * + * \return \c TRUE if the \b Node has one or more children otherwise \c FALSE. + */ +EXPORT_SPEC BOOL ixmlNode_hasChildNodes( + /*! [in] The \b Node to query for children. */ + IXML_Node *nodeptr); + + +/*! + * \brief Clones a \b Node. + * + * The new \b Node does not have a parent. The \b deep parameter controls + * whether the subtree of the \b Node is also cloned. + * + * For details on cloning specific types of \b Nodes, refer to the + * DOM2-Core recommendation. + * + * \return A clone of \b nodeptr or \c NULL. + */ +EXPORT_SPEC IXML_Node *ixmlNode_cloneNode( + /*! [in] The \b Node to clone. */ + IXML_Node *nodeptr, + /*! [in] \c TRUE to clone the subtree also or \c FALSE to clone only + * \b nodeptr. */ + BOOL deep); + + +/*! + * \brief Queries whether this \b Node has attributes. + * + * Note that only \b Element nodes have attributes. + * + * \return \c TRUE if the \b Node has attributes otherwise \c FALSE. + */ +EXPORT_SPEC BOOL ixmlNode_hasAttributes( + /*! [in] The \b Node to query for attributes. */ + IXML_Node *nodeptr); + + +/*! + * \brief Frees a \b Node and all \b Nodes in its subtree. + */ +EXPORT_SPEC void ixmlNode_free( + /*! [in] The \b Node tree to free. */ + IXML_Node *nodeptr); + +/* @} Interface Node */ + + + +/*! + * \name Interface Attr + * + * The \b Attr interface represents an attribute of an \b Element. The document + * type definition (DTD) or schema usually dictate the allowable attributes and + * values for a particular element. + * + * For more information, refer to the Interface Attr section in the + * DOM2-Core. + * + * @{ + */ + + +/*! + * \brief Frees an \b Attr node. + */ +EXPORT_SPEC void ixmlAttr_free( + /*! The \b Attr node to free. */ + IXML_Attr *attrNode); + + +/* @} Interface Attr */ + + + +/*! + * \name Interface CDATASection + * + * The \b CDATASection is used to escape blocks of text containing + * characters that would otherwise be regarded as markup. CDATA sections + * cannot be nested. Their primary purpose is for including material such + * XML fragments, without needing to escape all the delimiters. + * + * For more information, refer to the Interface CDATASection section + * in the DOM2-Core. + * + * @{ + */ + + +/*! + * \brief Initializes a \b CDATASection node. + */ +EXPORT_SPEC void ixmlCDATASection_init( + /*! [in] The CDATA Section Node to iniatialize. */ + IXML_CDATASection *nodeptr); + + +/*! + * \brief Frees a \b CDATASection node. + */ +EXPORT_SPEC void ixmlCDATASection_free( + /*! The \b CDATASection node to free. */ + IXML_CDATASection *nodeptr); + + +/* @} Interface CDATASection */ + + + +/*! + * \name Interface Document + * + * The \b Document interface represents the entire XML document. In essence, it + * is the root of the document tree and provides the primary interface to the + * elements of the document. + * + * For more information, refer to the Interface Document section in + * the DOM2Core. + * + * @{ + */ + + +/*! + * \brief Initializes a \b Document node. + */ +EXPORT_SPEC void ixmlDocument_init( + /*! [in] The \b Document node to initialize. */ + IXML_Document *nodeptr); + + +/*! + * \brief Creates a new empty \b Document node. + * + * The \b ixmlDocument_createDocumentEx API differs from the + * \b ixmlDocument_createDocument API in that it returns an error code + * describing the reason for the failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createDocumentEx( + /*! [out] Pointer to a \b Document where the new object will be stored. */ + IXML_Document **doc); + + +/*! + * \brief Creates a new empty \b Document node. + * + * \return A pointer to the new \b Document object with the nodeName set to + * "#document" or \c NULL on failure. + */ +EXPORT_SPEC IXML_Document *ixmlDocument_createDocument(void); + + +/*! + * \brief Creates a new \b Element node with the given tag name. + * + * The new \b Element node has a \c nodeName of \b tagName and the + * \c localName, \c prefix, and \c namespaceURI set to \c NULL. To create an + * \b Element with a namespace, see \b ixmlDocument_createElementNS. + * + * The \b ixmlDocument_createElementEx API differs from the \b + * ixmlDocument_createElement API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or + * \b tagName is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createElementEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The tag name of the new \b Element node. */ + const DOMString tagName, + /*! [out] Pointer to an \b Element where the new object will be stored. */ + IXML_Element **rtElement); + + +/*! + * \brief Creates a new \b Element node with the given tag name. + * + * The new \b Element node has a \c nodeName of \b tagName and the + * \c localName, \c prefix, and \c namespaceURI set to \c NULL. To create an + * \b Element with a namespace, see \b ixmlDocument_createElementNS. + * + * \return A pointer to the new \b Element object with the node name set to + * tagName, and localName, prefix and namespaceURI set to \c NULL, or \c NULL + * on failure. + */ +EXPORT_SPEC IXML_Element *ixmlDocument_createElement( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The tag name of the new \b Element node (case-sensitive). */ + const DOMString tagName); + + +/*! + * \brief Creates a new \b Text node with the given data. + * + * The \b ixmlDocument_createTextNodeEx() API differs from the + * \b ixmlDocument_createTextNode API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or \b data + * is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createTextNodeEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The data to associate with the new \b Text node. + * It is stored in nodeValue field.*/ + const DOMString data, + /*! [out] A pointer to a \b Node where the new object will be stored. */ + IXML_Node **textNode); + + +/*! + * \brief Creates a new \b Text node with the given data. + * + * \return A pointer to the new \b Node or \c NULL on failure. + */ +EXPORT_SPEC IXML_Node *ixmlDocument_createTextNode( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The data to associate with the new \b Text node. It is stored in + * the nodeValue field. */ + const DOMString data); + + +/*! + * \brief Creates a new \b CDATASection node with given data. + * + * The \b ixmlDocument_createCDATASectionEx API differs from the \b + * ixmlDocument_createCDATASection API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or \b data + * is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createCDATASectionEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The data to associate with the new \b CDATASection node. */ + const DOMString data, + /*! [out] A pointer to a \b Node where the new object will be stored. */ + IXML_CDATASection** cdNode); + + +/*! + * \brief Creates a new \b CDATASection node with given data. + * + * \return A pointer to the new \b CDATASection or \c NULL on failure. + */ +EXPORT_SPEC IXML_CDATASection *ixmlDocument_createCDATASection( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The data to associate with the new \b CDATASection node. */ + const DOMString data); + + +/*! + * \brief Creates a new \b Attr node with the given name. + * + * \return A pointer to the new \b Attr object with the nodeName attribute + * set to the given name, and the localName, prefix and namespaceURI set + * to NULL or \c NULL on failure. + * + * The value of the attribute is the empty string. + */ +EXPORT_SPEC IXML_Attr *ixmlDocument_createAttribute( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The name of the new attribute. */ + const char *name); + + +/*! + * \brief Creates a new \b Attr node with the given name. + * + * The \b ixmlDocument_createAttributeEx API differs from the \b + * ixmlDocument_createAttribute API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or \b name + * is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createAttributeEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The name of the new attribute. */ + const char *name, + /*! [out] A pointer to a \b Attr where the new object will be stored. */ + IXML_Attr **attrNode); + + +/*! + * \brief Returns a \b NodeList of all \b Elements that match the given + * tag name in the order in which they were encountered in a preorder + * traversal of the \b Document tree. + * + * \return A pointer to a \b NodeList containing the matching items or \c NULL + * on an error. + */ +EXPORT_SPEC IXML_NodeList *ixmlDocument_getElementsByTagName( + /*! [in] The \b Document to search. */ + IXML_Document *doc, + /*! [in] The tag name to find. The special value "*" matches all tags.*/ + const DOMString tagName); + + +/* + * introduced in DOM level 2 + */ + + +/*! + * \brief Creates a new \b Element node in the given qualified name and + * namespace URI. + * + * The \b ixmlDocument_createElementNSEx API differs from the \b + * ixmlDocument_createElementNS API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc, + * \b namespaceURI, or \b qualifiedName is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createElementNSEx( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The namespace URI for the new \b Element. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the new \b Element. */ + const DOMString qualifiedName, + /*! [out] A pointer to an \b Element where the new object will be stored. */ + IXML_Element **rtElement); + + +/*! + * \brief Creates a new \b Element node in the given qualified name and + * namespace URI. + * + * \return A pointer to the new \b Element object with tagName qualifiedName, + * prefix and localName extraced from qualfiedName, nodeName of qualfiedName, + * namespaceURI of namespaceURI or \c NULL on failure. + */ +EXPORT_SPEC IXML_Element *ixmlDocument_createElementNS( + /*! [in] The owner \b Document of the new node. */ + IXML_Document *doc, + /*! [in] The namespace URI for the new \b Element. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the new \b Element. */ + const DOMString qualifiedName); + + +/*! + * \brief Creates a new \b Attr node with the given qualified name and + * namespace URI. + * + * The \b ixmlDocument_createAttributeNSEx API differs from the \b + * ixmlDocument_createAttributeNS API in that it returns an error code + * describing the reason for failure rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc, + * \b namespaceURI, or \b qualifiedName is \c NULL. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlDocument_createAttributeNSEx( + /*! [in] The owner \b Document of the new \b Attr. */ + IXML_Document *doc, + /*! [in] The namespace URI for the attribute. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the attribute. */ + const DOMString qualifiedName, + /*! [out] A pointer to an \b Attr where the new object will be stored. */ + IXML_Attr **attrNode); + + +/*! + * \brief Creates a new \b Attribute node with the given qualified name and + * namespace URI. + * + * \return A pointer to the new \b Attr node with the given namespaceURI and + * qualifiedName. The prefix and localname are extracted from + * the qualifiedName. The node value is empty. Or \c NULL on failure. + */ +EXPORT_SPEC IXML_Attr *ixmlDocument_createAttributeNS( + /*! [in] The owner \b Document of the new \b Attribute. */ + IXML_Document *doc, + /*! [in] The namespace URI for the attribute. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the attribute. */ + const DOMString qualifiedName); + + +/*! + * \brief Returns a \b NodeList of \b Elements that match the given + * local name and namespace URI in the order they are encountered + * in a preorder traversal of the \b Document tree. + * + * Either \b namespaceURI or \b localName can be the special "*" + * character, which matches any namespace or any local name respectively. + * + * \return A pointer to a \b NodeList containing the matching items or \c NULL + * on an error. + */ +EXPORT_SPEC IXML_NodeList *ixmlDocument_getElementsByTagNameNS( + /*! [in] The \b Document to search. */ + IXML_Document *doc, + /*! [in] The namespace of the elements to find or "*" to match any + * namespace. */ + const DOMString namespaceURI, + /*! [in] The local name of the elements to find or "*" to match any + * local name. */ + const DOMString localName); + + +/*! + * \brief Returns the \b Element whose \c ID matches that given id. + * + * \return A pointer to the matching \b Element or \c NULL on an error. + */ +EXPORT_SPEC IXML_Element *ixmlDocument_getElementById( + /*! [in] The owner \b Document of the \b Element. */ + IXML_Document *doc, + /*! [in] The name of the \b Element.*/ + const DOMString tagName); + + +/*! + * \brief Frees a \b Document object and all \b Nodes associated with it. + * + * Any \b Nodes extracted via any other interface function, e.g. + * \b ixmlDocument_GetElementById, become invalid after this call unless + * explicitly cloned. + */ +EXPORT_SPEC void ixmlDocument_free( + /*! [in] The \b Document to free. */ + IXML_Document *doc); + + +/*! + * \brief Imports a \b Node from another \b Document into this \b Document. + * + * The returned new \b Node does not a have parent node (parentNode is null): + * it is a clone of the original \b Node with the \c ownerDocument set to + * \b doc. The source node is not altered or removed from the original + * document. + * + * For all nodes, importing a node creates a node object owned by the + * importing document, with attribute values identical to the source + * node's nodeName and nodeType, plus the attributes related to namespaces + * (prefix, localName, and namespaceURI). + * + * As in the cloneNode operation on a node, the source node is not altered. + * + * The \b deep parameter controls whether all the children of the \b Node are + * imported. + * + * Refer to the DOM2-Core recommendation for details on importing specific + * node types. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b doc or + * \b importNode is not a valid pointer. + * \li \c IXML_NOT_SUPPORTED_ERR: \b importNode is a + * \b Document, which cannot be imported. + * \li \c IXML_FAILED: The import operation failed because the + * \b Node to be imported could not be cloned. + */ +EXPORT_SPEC int ixmlDocument_importNode( + /*! [in] The \b Document into which to import. */ + IXML_Document *doc, + /*! [in] The \b Node to import. */ + IXML_Node * importNode, + /*! [in] \c TRUE to import all children of \b importNode or \c FALSE to + * import only the root node. */ + BOOL deep, + /*! [out] A pointer to a new \b Node owned by \b doc. */ + IXML_Node **rtNode); + + +/* @} Interface Document */ + + + + +/*! + * \name Interface Element + * + * The \b Element interface represents an element in an XML document. + * Only \b Elements are allowed to have attributes, which are stored in the + * \c attributes member of a \b Node. The \b Element interface + * extends the \b Node interface and adds more operations to manipulate + * attributes. + * + * @{ + */ + + +/*! + * \brief Initializes a \b IXML_Element node. + */ +EXPORT_SPEC void ixmlElement_init( + /*! [in] The \b Element to initialize.*/ + IXML_Element *element); + + +/*! + * \brief Returns the name of the tag as a constant string. + * + * \return The name of the \b Element. + */ +EXPORT_SPEC const DOMString ixmlElement_getTagName( + /*! [in] The \b Element from which to retrieve the name. */ + IXML_Element *element); + + +/*! + * \brief Retrieves an attribute of an \b Element by name. + * + * \return The value of the attribute, or \b NULL if that attribute +* does not have a specified value. + */ +EXPORT_SPEC const DOMString ixmlElement_getAttribute( + /*! [in] The \b Element from which to retrieve the attribute. */ + IXML_Element* element, + /*! [in] The name of the attribute to retrieve. */ + const DOMString name); + + +/*! + * \brief Adds a new attribute to an \b Element. + * + * If an attribute with the same name already exists in the element, the + * attribute value will be updated with the new value parameter. Otherwise, + * a new attribute is inserted into the element. + * + * \return An integer representing of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element, + * \b name, or \b value is \c NULL. + * \li \c IXML_INVALID_CHARACTER_ERR: \b name contains an + * illegal character. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete the operation. + */ +EXPORT_SPEC int ixmlElement_setAttribute( + /*! [in] The \b Element on which to set the attribute. */ + IXML_Element *element, + /*! [in] The name of the attribute. */ + const DOMString name, + /*! [in] The value of the attribute. Note that this is a non-parsed string + * and any markup must be escaped. */ + const DOMString value); + + +/*! + * \brief Removes an attribute value by name. The attribute node is not removed. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element or + * \b name is \c NULL. + */ +EXPORT_SPEC int ixmlElement_removeAttribute( + /*! [in] The \b Element from which to remove the attribute. */ + IXML_Element *element, + /*! [in] The name of the attribute to remove. */ + const DOMString name); + + +/*! + * \brief Retrieves an attribute node by name. + * See \b ixmlElement_getAttributeNodeNS to retrieve an attribute node using + * a qualified name or namespace URI. + * + * \return A pointer to the attribute matching \b name or \c NULL on if there + * is no such attribute. + */ +EXPORT_SPEC IXML_Attr *ixmlElement_getAttributeNode( + /*! [in] The \b Element from which to get the attribute node. */ + IXML_Element *element, + /*! [in] The name of the attribute node to find. */ + const DOMString name); + + +/*! + * \brief Adds a new attribute node to an \b Element. + * + * If an attribute already exists with \b newAttr as a name, it will be + * replaced with the new one and the old one will be returned in \b rtAttr. + * + * \return If successfull, the replaced attribute node is returned in rtAttr, + * otherwise, \b NULL is returned in this pointer. The function return value + * is an integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element or + * \b newAttr is \c NULL. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newAttr does not belong + * to the same one as \b element. + * \li \c IXML_INUSE_ATTRIBUTE_ERR: \b newAttr is already + * an attribute of another \b Element. + */ +EXPORT_SPEC int ixmlElement_setAttributeNode( + /*! [in] The \b Element in which to add the new attribute. */ + IXML_Element *element, + /*! [in] The new \b Attr to add. */ + IXML_Attr* newAttr, + /*! [out] A pointer to an \b Attr where the old \b Attr will be stored. + * This will have a \c NULL if no prior node existed. */ + IXML_Attr** rtAttr); + + +/*! + * \brief Removes the specified attribute node from an \b Element. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element or + * \b oldAttr is \c NULL. + * \li \c IXML_NOT_FOUND_ERR: \b oldAttr is not among the list + * attributes of \b element. + */ +EXPORT_SPEC int ixmlElement_removeAttributeNode( + /*! [in] The \b Element from which to remove the attribute. */ + IXML_Element *element, + /*! [in] The attribute to remove from the \b Element. */ + IXML_Attr* oldAttr, + /*! [out] A pointer to an attribute in which to place the removed attribute. */ + IXML_Attr** rtAttr); + + +/*! + * \brief Returns a \b NodeList of all \em descendant \b Elements with + * a given tag name, in the order in which they are encountered in a + * pre-order traversal of this \b Element tree. + * + * \return A \b NodeList of the matching \b Elements or \c NULL on an error. + */ +EXPORT_SPEC IXML_NodeList *ixmlElement_getElementsByTagName( + /*! [in] The \b Element from which to start the search. */ + IXML_Element *element, + /*! [in] The name of the tag for which to search. */ + const DOMString tagName); + + +/* + * Introduced in DOM 2 + */ + + +/*! + * \brief Retrieves an attribute value using the local name and namespace URI. + * + * \return A \b DOMString representing the value of the matching attribute, or + * \b NULL if that attribute does not have the specified value. + */ +EXPORT_SPEC const DOMString ixmlElement_getAttributeNS( + /*! [in] The \b Element from which to get the attribute value. */ + IXML_Element *element, + /*! [in] The namespace URI of the attribute. */ + const DOMString namespaceURI, + /*! [in] The local name of the attribute. */ + const DOMString localname); + + +/*! + * \brief Adds a new attribute to an \b Element using the local name and + * namespace URI. + * + * If another attribute matches the same local name and namespace, the prefix + * is changed to be the prefix part of the \c qualifiedName and the value is + * changed to \b value. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element, + * \b namespaceURI, \b qualifiedName, or \b value is + * \c NULL. + * \li \c IXML_INVALID_CHARACTER_ERR: \b qualifiedName contains + * an invalid character. + * \li \c IXML_NAMESPACE_ERR: Either the \b qualifiedName or + * \b namespaceURI is malformed. Refer to the DOM2-Core for + * possible reasons. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exist + * to complete the operation. + * \li \c IXML_FAILED: The operation could not be completed. + */ +EXPORT_SPEC int ixmlElement_setAttributeNS( + /*! [in] The \b Element on which to set the attribute. */ + IXML_Element *element, + /*! [in] The namespace URI of the new attribute. */ + const DOMString namespaceURI, + /*! [in] The qualified name of the attribute. */ + const DOMString qualifiedName, + /*! [in] The new value for the attribute. */ + const DOMString value); + + +/*! + * \brief Removes an attribute using the namespace URI and local name. + * + * The replacing attribute has the same namespace URI and local name, as well + * as the original prefix. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element, + * \b namespaceURI, or \b localName is \c NULL. + */ +EXPORT_SPEC int ixmlElement_removeAttributeNS( + /*! [in] The \b Element from which to remove the the attribute. */ + IXML_Element *element, + /*! [in] The namespace URI of the attribute. */ + const DOMString namespaceURI, + /*! [in] The local name of the attribute.*/ + const DOMString localName); + + +/*! + * \brief Retrieves an \b Attr node by local name and namespace URI. + * + * \return A pointer to an \b Attribute node with the specified attribute + * local name and namespace URI or \c NULL if there is no such attribute. + */ +EXPORT_SPEC IXML_Attr *ixmlElement_getAttributeNodeNS( + /*! [in] The \b Element from which to get the attribute. */ + IXML_Element *element, + /*! [in] The namespace URI of the attribute. */ + const DOMString namespaceURI, + /*! [in] The local name of the attribute. */ + const DOMString localName); + + +/*! + * \brief Adds a new attribute node to the element node specified. + * + * If an attribute with the same local name and namespace URI already exists in + * the \b Element, the existing attribute node is replaced with \b newAttr and + * the old returned in \b rcAttr. + * + * \return The output parameter rcAttr receives the replaced attribute node if + * the newAttr attribute replaces an existing attribute with the same local name + * and namespace, otherwise rcAttr receives \b NULL. + * + * The function return value is an integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: Either \b element or + * \b newAttr is \c NULL. + * \li \c IXML_WRONG_DOCUMENT_ERR: \b newAttr does not belong + * to the same document as \b element. + * \li \c IXML_INUSE_ATTRIBUTE_ERR: \b newAttr already is an + * attribute of another \b Element. + */ +EXPORT_SPEC int ixmlElement_setAttributeNodeNS( + /*! [in] The \b Element in which to add the attribute node. */ + IXML_Element *element, + /*! [in] The new \b Attr to add. */ + IXML_Attr *newAttr, + /*! [out] A pointer to the replaced \b Attr, if it exists. */ + IXML_Attr **rcAttr); + + +/*! + * \brief Returns a \b NodeList of all \em descendant \b Elements with a + * given local name and namespace in the order in which they are encountered in + * the pre-order traversal of the \b Element tree. + * + * \return A \b NodeList of matching \b Elements or \c NULL on an error. + */ +EXPORT_SPEC IXML_NodeList *ixmlElement_getElementsByTagNameNS( + /*! [in] The \b Element from which to start the search. */ + IXML_Element *element, + /*! [in] The namespace URI of the \b Elements to find. The special value + * "*" matches all namespaces. */ + const DOMString namespaceURI, + /*! [in] The local name of the \b Elements to find. The special value "*" + * matches all local names. */ + const DOMString localName); + + +/*! + * \brief Queries whether the \b Element has an attribute with the given name + * or a default value. + * + * \return \c TRUE if the \b Element has an attribute with this name or has a + * default value for that attribute, otherwise \c FALSE. + */ +EXPORT_SPEC BOOL ixmlElement_hasAttribute( + /*! [in] The \b Element on which to check for an attribute. */ + IXML_Element *element, + /*! [in] The name of the attribute for which to check. */ + const DOMString name); + + +/*! + * \brief Queries whether the \b Element has an attribute with the given + * local name and namespace URI or has a default value for that attribute. + * + * \return \c TRUE if the \b Element has an attribute with the given namespace + * and local name or has a default value for that attribute, otherwise \c FALSE. + */ +EXPORT_SPEC BOOL ixmlElement_hasAttributeNS( + /*! [in] The \b Element on which to check for the attribute. */ + IXML_Element *element, + /*! [in] The namespace URI of the attribute. */ + const DOMString namespaceURI, + /*! [in] The local name of the attribute. */ + const DOMString localName); + + +/*! + * \brief Frees the given \b Element and any subtree of the \b Element. + */ +EXPORT_SPEC void ixmlElement_free( + /*! [in] The \b Element to free. */ + IXML_Element *element); + + +/* @} Interface Element */ + + + +/*! + * \name Interface NamedNodeMap + * + * A \b NamedNodeMap object represents a list of objects that can be + * accessed by name. A \b NamedNodeMap maintains the objects in + * no particular order. The \b Node interface uses a \b NamedNodeMap + * to maintain the attributes of a node. + * + * @{ + */ + + +/*! + * \brief Returns the number of items contained in this \b NamedNodeMap. + * + * \return The number of nodes in this map. + */ +EXPORT_SPEC unsigned long ixmlNamedNodeMap_getLength( + /*! [in] The \b NamedNodeMap from which to retrieve the size. */ + IXML_NamedNodeMap *nnMap); + + +/*! + * \brief Retrieves a \b Node from the \b NamedNodeMap by name. + * + * \return A Node with the specified nodeName, or \b NULL if it + * does not identify any node in this map. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_getNamedItem( + /*! [in] The \b NamedNodeMap to search. */ + IXML_NamedNodeMap *nnMap, + /*! [in] The name of the \b Node to find. */ + const DOMString name); + + +/*! + * \brief Adds a new \b Node to the \b NamedNodeMap using the \b Node name + * attribute. + * + * \return The old \b Node if the new \b Node replaces it or \c NULL if the + * \b Node was not in the \b NamedNodeMap before. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_setNamedItem( + /*! The \b NamedNodeMap in which to add the new \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! The new \b Node to add to the \b NamedNodeMap. */ + IXML_Node *arg); + + +/*! + * \brief Removes a \b Node from a \b NamedNodeMap specified by name. + * + * \return A pointer to the \b Node, if found, or \c NULL if it wasn't. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_removeNamedItem( + /*! The \b NamedNodeMap from which to remove the item. */ + IXML_NamedNodeMap *nnMap, + /*! The name of the item to remove. */ + const DOMString name); + + +/*! + * \brief Retrieves the indexth item in the map. If index is greater than or + * equal to the number of nodes in this map, this returns \b NULL. + * + * \return The node at the indexth position in the map, or \b NULL if that is + * not a valid index. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_item( + /*! [in] The \b NamedNodeMap from which to remove the \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! [in] The index into the map to remove. */ + unsigned long index); + + +/* + * Introduced in DOM level 2 + */ + + +/*! + * \brief Retrieves a \b Node from a \b NamedNodeMap specified by namespace + * URI and local name. + * + * \return A pointer to the \b Node, if found, or \c NULL if it wasn't + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_getNamedItemNS( + /*! The \b NamedNodeMap from which to remove the \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! The namespace URI of the \b Node to remove. */ + const DOMString *namespaceURI, + /*! The local name of the \b Node to remove. */ + const DOMString localName); + + +/*! + * \brief Adds a new \b Node to the \b NamedNodeMap using the \b Node + * local name and namespace URI attributes. + * + * \return The old \b Node if the new \b Node replaces it or \c NULL if the + * \b Node was not in the \b NamedNodeMap before. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_setNamedItemNS( + /*! The \b NamedNodeMap in which to add the \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! The \b Node to add to the map. */ + IXML_Node *arg); + + +/*! + * \brief Removes a \b Node from a \b NamedNodeMap specified by + * namespace URI and local name. + * + * \return A pointer to the \b Node, if found, or \c NULL if it wasn't. + */ +EXPORT_SPEC IXML_Node *ixmlNamedNodeMap_removeNamedItemNS( + /*! The \b NamedNodeMap from which to remove the \b Node. */ + IXML_NamedNodeMap *nnMap, + /*! The namespace URI of the \b Node to remove. */ + const DOMString namespaceURI, + /*! The local name of the \b Node to remove. */ + const DOMString localName); + + +/*! \brief Frees a \b NamedNodeMap. + * + * The \b Nodes inside the map are not freed, just the \b NamedNodeMap object. + */ +EXPORT_SPEC void ixmlNamedNodeMap_free( + /*! [in] The \b NamedNodeMap to free. */ + IXML_NamedNodeMap *nnMap); + + +/* @} Interface NodeMap */ + + + +/*! + * \name Interface NodeList + * + * The \b NodeList interface abstracts an ordered collection of + * nodes. Note that changes to the underlying nodes will change + * the nodes contained in a \b NodeList. The DOM2-Core refers to + * this as being \em live. + * + * @{ + */ + + +/*! + * \brief Retrieves a \b Node from a \b NodeList specified by a + * numerical index. + * + * \return A pointer to a \b Node or \c NULL if there was an error. + */ +EXPORT_SPEC IXML_Node *ixmlNodeList_item( + /*! [in] The \b NodeList from which to retrieve the \b Node. */ + IXML_NodeList *nList, + /*! [in] The index into the \b NodeList to retrieve. */ + unsigned long index); + + +/*! + * \brief Returns the number of \b Nodes in a \b NodeList. + * + * \return The number of \b Nodes in the \b NodeList. + */ +EXPORT_SPEC unsigned long ixmlNodeList_length( + /*! [in] The \b NodeList for which to retrieve the number of \b Nodes. */ + IXML_NodeList *nList); + + +/*! + * \brief Frees a \b NodeList object. + * + * Since the underlying \b Nodes are references, they are not freed using this + * operation. This only frees the \b NodeList object. + */ +EXPORT_SPEC void ixmlNodeList_free( + /*! [in] The \b NodeList to free. */ + IXML_NodeList *nList); + + +/* @} Interface NodeList */ + + + +/*! + * \name IXML API + * + * The IXML API contains utility functions that are not part of the standard + * DOM interfaces. They include functions to create a DOM structure from a + * file or buffer, create an XML file from a DOM structure, and manipulate + * DOMString objects. + * + * @{ + */ + + +/*! + * \brief Renders a \b Node and all sub-elements into an XML document + * representation. + * + * The caller is required to free the \b DOMString + * returned from this function using \b ixmlFreeDOMString when it + * is no longer required. + * + * Note that this function can be used for any \b Node-derived + * interface. The difference between \b ixmlPrintDocument and + * \b ixmlPrintNode is \b ixmlPrintDocument includes the XML prolog + * while \b ixmlPrintNode only produces XML elements. An XML + * document is not well formed unless it includes the prolog + * and at least one element. + * + * This function introduces lots of white space to print the + * \b DOMString in readable format. + * + * \return A \b DOMString with the XML document representation + * of the DOM tree or \c NULL on an error. + */ +EXPORT_SPEC DOMString ixmlPrintDocument( + /*! [in] The document node to print. */ + IXML_Document *doc); + + +/*! + * \brief Renders a \b Node and all sub-elements into an XML text + * representation. + * + * The caller is required to free the \b DOMString + * returned from this function using \b ixmlFreeDOMString when it + * is no longer required. + * + * Note that this function can be used for any \b Node-derived + * interface. A similar \b ixmlPrintDocument function is defined + * to avoid casting when printing whole documents. This function + * introduces lots of white space to print the \b DOMString in readable + * format. + * + * \return A \b DOMString with the XML text representation of the DOM tree or + * \c NULL on an error. + */ +EXPORT_SPEC DOMString ixmlPrintNode( + /*! [in] The root of the \b Node tree to render to XML text. */ + IXML_Node *doc +); + + +/*! + * \brief Renders a \b Node and all sub-elements into an XML document + * representation. + * + * The caller is required to free the \b DOMString + * returned from this function using \b ixmlFreeDOMString when it + * is no longer required. + * + * Note that this function can be used for any \b Node-derived + * interface. The difference between \b ixmlDocumenttoString and + * \b ixmlNodetoString is \b ixmlDocumenttoString includes the XML + * prolog while \b ixmlNodetoString only produces XML elements. An XML + * document is not well formed unless it includes the prolog + * and at least one element. + * + * \return A \b DOMString with the XML text representation of the DOM tree or + * \c NULL on an error. + */ +EXPORT_SPEC DOMString ixmlDocumenttoString( + /*! [in] The root of the \b Node tree to render to XML text. */ + IXML_Document *doc); + + +/*! + * \brief Renders a \b Node and all sub-elements into an XML text + * representation. The caller is required to free the \b DOMString + * returned from this function using \b ixmlFreeDOMString when it + * is no longer required. + * + * Note that this function can be used for any \b Node-derived + * interface. The difference between \b ixmlNodetoString and + * \b ixmlDocumenttoString is \b ixmlNodetoString does not include + * the XML prolog, it only produces XML elements. + * + * \return A \b DOMString with the XML text representation of the DOM tree or + * \c NULL on an error. + */ +EXPORT_SPEC DOMString ixmlNodetoString( + /*! [in] The root of the \b Node tree to render to XML text. */ + IXML_Node *doc); + + +/*! + * \brief Makes the XML parser more tolerant to malformed text. + */ +EXPORT_SPEC void ixmlRelaxParser( + /*! [in] If \b errorChar is 0 (default), the parser is strict about XML + * encoding : invalid UTF-8 sequences or "&" entities are rejected, and + * the parsing aborts. + * + * If \b errorChar is not 0, the parser is relaxed: invalid UTF-8 + * characters are replaced by the \b errorChar, and invalid "&" entities + * are left untranslated. The parsing is then allowed to continue. + */ + char errorChar); + + +/*! + * \brief Parses an XML text buffer converting it into an IXML DOM representation. + * + * \return A \b Document if the buffer correctly parses or \c NULL on an error. + */ +EXPORT_SPEC IXML_Document *ixmlParseBuffer( + /*! [in] The buffer that contains the XML text to convert to a \b Document. */ + const char *buffer); + + +/*! + * \brief Parses an XML text buffer converting it into an IXML DOM representation. + * + * The \b ixmlParseBufferEx API differs from the \b ixmlParseBuffer + * API in that it returns an error code representing the actual failure + * rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: The \b buffer is not a valid + * pointer. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlParseBufferEx( + /*! [in] The buffer that contains the XML text to convert to a \b Document. */ + const char *buffer, + /*! [out] A point to store the \b Document if file correctly parses or \b NULL on an error. */ + IXML_Document** doc); + + +/*! + * \brief Parses an XML text file converting it into an IXML DOM representation. + * + * \return A \b Document if the file correctly parses or \c NULL on an error. + */ +EXPORT_SPEC IXML_Document *ixmlLoadDocument( + /*! [in] The filename of the XML text to convert to a \b Document. */ + const char* xmlFile); + + +/*! + * \brief Parses an XML text file converting it into an IXML DOM representation. + * + * The \b ixmlLoadDocumentEx API differs from the \b ixmlLoadDocument + * API in that it returns a an error code representing the actual failure + * rather than just \c NULL. + * + * \return An integer representing one of the following: + * \li \c IXML_SUCCESS: The operation completed successfully. + * \li \c IXML_INVALID_PARAMETER: The \b xmlFile is not a valid + * pointer. + * \li \c IXML_INSUFFICIENT_MEMORY: Not enough free memory exists + * to complete this operation. + */ +EXPORT_SPEC int ixmlLoadDocumentEx( + /*! [in] The filename of the XML text to convert to a \b Document. */ + const char *xmlFile, + /*! [out] A pointer to the \b Document if file correctly parses or \b NULL + * on an error. */ + IXML_Document **doc); + + +/*! + * \brief Clones an existing \b DOMString. + * + * \return A new \b DOMString that is a duplicate of the original or \c NULL + * if the operation could not be completed. + */ +EXPORT_SPEC DOMString ixmlCloneDOMString( + /*! [in] The source \b DOMString to clone. */ + const DOMString src); + + +/*! + * \brief Frees a \b DOMString. + */ +EXPORT_SPEC void ixmlFreeDOMString( + /*! [in] The \b DOMString to free. */ + DOMString buf); + + +/* @} IXML API */ + + +#ifdef __cplusplus +} +#endif + + +/* @} XMLAPI XML API */ + + +#endif /* IXML_H */ + diff --git a/1_6.h12_dev/render/include/upnp/upnp.h b/1_6.h12_dev/render/include/upnp/upnp.h new file mode 100644 index 0000000..17fdcf3 --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/upnp.h @@ -0,0 +1,2881 @@ +#ifndef UPNP_H +#define UPNP_H + +/******************************************************************************* + * + * Copyright (c) 2000-2003 Intel Corporation + * All rights reserved. + * Copyright (C) 2011-2012 France Telecom All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * * Neither name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ******************************************************************************/ + +/*! + * \defgroup UPnPAPI UPnP API + * + * @{ + * + * \file + */ + +#include "ixml.h" +#include "upnpconfig.h" +#include "UpnpGlobal.h" +#include "UpnpInet.h" + +/* + * \todo Document the exact reason of these include files and solve this + * include mess in an include file like UpnpTime.h + */ +#ifdef WIN32 + #include + #ifdef UPNP_USE_MSVCPP + #include /* needed for off_t */ + #endif +#elif (defined(BSD) && BSD >= 199306) + #include +#else + /* Other systems ??? */ +#endif + +#define LINE_SIZE (size_t)180 +#define NAME_SIZE (size_t)256 +#define MNFT_NAME_SIZE 64 +#define MODL_NAME_SIZE 32 +#define SERL_NUMR_SIZE 64 +#define MODL_DESC_SIZE 64 +#define UPNP_INFINITE -1 +#define UPNP_USING_CHUNKED -3 +#define UPNP_UNTIL_CLOSE -4 + +/*! + * \name Error codes + * + * The functions in the SDK API can return a variety of error + * codes to describe problems encountered during execution. This section + * lists the error codes and provides a brief description of what each error + * code means. Refer to the documentation for each function for a + * description of what an error code means in that context. + * + * @{ + */ + +/*! + * \brief The operation completed successfully. + * + * For asynchronous functions, this only means that the packet generated by + * the operation was successfully transmitted on the network. The result of + * the entire operation comes as part of the callback for that operation. + */ +#define UPNP_E_SUCCESS 0 + +/*! + * \brief The handle passed to a function is not a recognized as a valid handle. + */ +#define UPNP_E_INVALID_HANDLE -100 + +/*! + * \brief One or more of the parameters passed to the function is not valid. + * + * Refer to the documentation for each function for more information on the + * valid ranges of the parameters. + */ +#define UPNP_E_INVALID_PARAM -101 + +/*! + * \brief The SDK does not have any more space for additional handles. + * + * The SDK allocates space for only a few handles in order to conserve memory. + */ +#define UPNP_E_OUTOF_HANDLE -102 + +#define UPNP_E_OUTOF_CONTEXT -103 + +/*! + * \brief Not enough resources are currently available to complete the operation. + * + * Most operations require some free memory in order to complete their work. + */ +#define UPNP_E_OUTOF_MEMORY -104 + +/*! + * \brief The SDK has already been initialized. + * + * The SDK needs to be initialied only once per process. Any additional + * initialization attempts simply return this error with no other ill effects. + */ +#define UPNP_E_INIT -105 + +#define UPNP_E_BUFFER_TOO_SMALL -106 + +/*! + * \brief The description document passed to \b UpnpRegisterRootDevice, + * \b UpnpRegisterRootDevice2 \b UpnpRegisterRootDevice3 or + * \b UpnpRegisterRootDevice4 is invalid. + */ +#define UPNP_E_INVALID_DESC -107 + +/*! + * \brief An URL passed into the function is invalid. + * + * The actual cause is function specific, but in general, the URL itself + * might be malformed (e.g. have invalid characters in it) or the host might + * be unreachable. + */ +#define UPNP_E_INVALID_URL -108 + +#define UPNP_E_INVALID_SID -109 + +#define UPNP_E_INVALID_DEVICE -110 + +/*! + * \brief The device ID/service ID pair does not refer to a valid service. + * + * Returned only by \b UpnpNotify, \b UpnpNotifyExt, \b UpnpAcceptSubscription, + * and \b UpnpAcceptSubscriptionExt. + */ +#define UPNP_E_INVALID_SERVICE -111 + +/*! + * \brief The response received from the remote side of a connection is not correct + * for the protocol. + * + * This applies to the GENA, SOAP, and HTTP protocols. + */ +#define UPNP_E_BAD_RESPONSE -113 + +#define UPNP_E_BAD_REQUEST -114 + +/*! + * \brief The SOAP action message is invalid. + * + * This can be because the DOM document passed to the function was malformed or + * the action message is not correct for the given action. + */ +#define UPNP_E_INVALID_ACTION -115 + +/*! + * \brief \b UpnpInit has not been called, or \b UpnpFinish has already been called. + * + * None of the API functions operate until \b UpnpInit successfully completes. + */ +#define UPNP_E_FINISH -116 + +/*! + * \brief \b UpnpInit cannot complete. + * + * The typical reason is failure to allocate sufficient resources. + */ +#define UPNP_E_INIT_FAILED -117 + +/*! + * \brief The URL passed into a function is too long. + * + * The SDK limits URLs to 180 characters in length. + */ +#define UPNP_E_URL_TOO_BIG -118 + +/*! + * \brief The HTTP message contains invalid message headers. + * + * The error always refers to the HTTP message header received from the remote + * host. The main areas where this occurs are in SOAP control messages (e.g. + * \b UpnpSendAction), GENA subscription message (e.g. \b UpnpSubscribe), + * GENA event notifications (e.g. \b UpnpNotify), and HTTP transfers (e.g. + * \b UpnpDownloadXmlDoc). + */ +#define UPNP_E_BAD_HTTPMSG -119 + +/*! + * \brief A client or a device is already registered. + * + * The SDK currently has a limit of one registered client and one registered + * device per process. + */ +#define UPNP_E_ALREADY_REGISTERED -120 + +/*! + * \brief The interface provided to \b UpnpInit2 is unknown or does not have a valid + * IPv4 or IPv6 address configured. + */ +#define UPNP_E_INVALID_INTERFACE -121 + +/*! + * \brief A network error occurred. + * + * It is the generic error code for network problems that are not covered under + * one of the more specific error codes. The typical meaning is the SDK failed + * to read the local IP address or had problems configuring one of the sockets. + */ +#define UPNP_E_NETWORK_ERROR -200 + +/*! + * \brief An error happened while writing to a socket. + * + * This occurs in any function that makes network connections, such as discovery + * (e.g. \b UpnpSearchAsync or \b UpnpSendAdvertisement), control (e.g. + * \b UpnpSendAction), eventing (e.g. \b UpnpNotify), and HTTP functions (e.g. + * \b UpnpDownloadXmlDoc). + */ +#define UPNP_E_SOCKET_WRITE -201 + +/*! + * \brief An error happened while reading from a socket. + * + * This occurs in any function that makes network connections, such as discovery + * (e.g. \b UpnpSearchAsync or \b UpnpSendAdvertisement), control (e.g. + * \b UpnpSendAction), eventing (e.g. \b UpnpNotify), and HTTP functions (e.g. + * \b UpnpDownloadXmlDoc). + */ +#define UPNP_E_SOCKET_READ -202 + +/*! + * \brief The SDK had a problem binding a socket to a network interface. + * + * This occurs in any function that makes network connections, such as discovery + * (e.g. \b UpnpSearchAsync or \b UpnpSendAdvertisement), control (e.g. + * \b UpnpSendAction), eventing (e.g. \b UpnpNotify), and HTTP functions (e.g. + * \b UpnpDownloadXmlDoc). + */ +#define UPNP_E_SOCKET_BIND -203 + +/*! + * \brief The SDK had a problem connecting to a remote host. + * + * This occurs in any function that makes network connections, such as discovery + * (e.g. \b UpnpSearchAsync or \b UpnpSendAdvertisement), control (e.g. + * \b UpnpSendAction), eventing (e.g. \b UpnpNotify), and HTTP functions (e.g. + * \b UpnpDownloadXmlDoc). + */ +#define UPNP_E_SOCKET_CONNECT -204 + +/*! + * \brief The SDK cannot create any more sockets. + * + * This occurs in any function that makes network connections, such as discovery + * (e.g. \b UpnpSearchAsync or \b UpnpSendAdvertisement), control (e.g. + * \b UpnpSendAction), eventing (e.g. \b UpnpNotify), and HTTP functions (e.g. + * \b UpnpDownloadXmlDoc). + */ +#define UPNP_E_OUTOF_SOCKET -205 + +/*! + * \brief The SDK had a problem setting the socket to listen for incoming + * connections. + * + * This error only happens during initialization (i.e. \b UpnpInit). + */ +#define UPNP_E_LISTEN -206 + +/*! + * \brief Too much time elapsed before the required number of bytes were sent + * or received over a socket. + * + * This error can be returned by any function that performs network operations. + */ +#define UPNP_E_TIMEDOUT -207 + +/*! + * \brief Generic socket error code for conditions not covered by other error + * codes. + * + * This error can be returned by any function that performs network operations. + */ +#define UPNP_E_SOCKET_ERROR -208 + +#define UPNP_E_FILE_WRITE_ERROR -209 + +/*! \brief The operation was canceled. + * + * This error can be returned by any function that allows for external cancelation. + */ +#define UPNP_E_CANCELED -210 + +#define UPNP_E_EVENT_PROTOCOL -300 + +/*! + * \brief A subscription request was rejected from the remote side. + */ +#define UPNP_E_SUBSCRIBE_UNACCEPTED -301 + +/*! + * \brief An unsubscribe request was rejected from the remote side. + */ +#define UPNP_E_UNSUBSCRIBE_UNACCEPTED -302 + +/*! + * \brief The remote host did not accept the notify sent from the local device. + */ +#define UPNP_E_NOTIFY_UNACCEPTED -303 + +/*! + * \brief One or more of the parameters passed to a function is invalid. + * + * Refer to the individual function descriptions for the acceptable ranges for + * parameters. + */ +#define UPNP_E_INVALID_ARGUMENT -501 + +/*! + * \brief The filename passed to one of the device registration functions was + * not found or was not accessible. + */ +#define UPNP_E_FILE_NOT_FOUND -502 + +/*! + * \brief An error happened while reading a file. + */ +#define UPNP_E_FILE_READ_ERROR -503 + +/*! + * \brief The file name of the description document passed to + * \b UpnpRegisterRootDevice2 does not end in ".xml". + */ +#define UPNP_E_EXT_NOT_XML -504 + +#define UPNP_E_NO_WEB_SERVER -505 +#define UPNP_E_OUTOF_BOUNDS -506 + +/*! + * \brief The response to a SOAP request did not contain the required XML + * constructs. + */ +#define UPNP_E_NOT_FOUND -507 + +/*! + * \brief Generic error code for internal conditions not covered by other + * error codes. + */ +#define UPNP_E_INTERNAL_ERROR -911 + +/* SOAP-related error codes */ +#define UPNP_SOAP_E_INVALID_ACTION 401 +#define UPNP_SOAP_E_INVALID_ARGS 402 +#define UPNP_SOAP_E_OUT_OF_SYNC 403 +#define UPNP_SOAP_E_INVALID_VAR 404 +#define UPNP_SOAP_E_ACTION_FAILED 501 + +/* @} ErrorCodes */ + +#if UPNP_VERSION >= 10800 +/* + * Opaque data structures. The following includes are data structures that + * must be externally visible. Since version 1.8.0, only an opaque typedef + * is visible from the outside world. Any operation on these data types + * must be done using the appropriate interface functions. + * + * This policy has the great advantage that it is now possible to change + * the internal implementation of these data structures without breaking + * the API. + */ +#include "ActionComplete.h" +#include "ActionRequest.h" +#include "Discovery.h" +#include "Event.h" +#include "EventSubscribe.h" +#include "FileInfo.h" +#include "StateVarComplete.h" +#include "StateVarRequest.h" +#include "SubscriptionRequest.h" +#endif /* UPNP_VERSION >= 10800 */ + +/*! + * \name Constants and Types + * + * @{ + */ + +enum UpnpOpenFileMode +{ + UPNP_READ, + UPNP_WRITE +}; + +/*! + * \brief Returned when a control point application registers with + * \b UpnpRegisterClient. + * + * Client handles can only be used with functions that operate with a client + * handle. + */ +typedef int UpnpClient_Handle; + +/*! + * \brief Returned when a device application registers with + * \b UpnpRegisterRootDevice, \b UpnpRegisterRootDevice2, + * \b UpnpRegisterRootDevice3 or \b UpnpRegisterRootDevice4. + * + * Device handles can only be used with functions that operate with a device + * handle. + */ +typedef int UpnpDevice_Handle; + +/*! + * \brief The reason code for an event callback. + * + * The \b Event parameter will be different depending on the reason for the + * callback. The descriptions for each event type describe the contents of the + * \b Event parameter. + */ +enum Upnp_EventType_e { + /* + * Control callbacks + */ + + /*! Received by a device when a control point issues a control + * request. The \b Event parameter contains a pointer to a \b + * UpnpActionRequest structure containing the action. The application + * stores the results of the action in this structure. */ + UPNP_CONTROL_ACTION_REQUEST, + + /*! A \b UpnpSendActionAsync call completed. The \b Event + * parameter contains a pointer to a \b UpnpActionComplete structure + * with the results of the action. */ + UPNP_CONTROL_ACTION_COMPLETE, + + /*! Received by a device when a query for a single service variable + * arrives. The \b Event parameter contains a pointer to a \b + * UpnpStateVarRequest structure containing the name of the variable + * and value. */ + UPNP_CONTROL_GET_VAR_REQUEST, + + /*! A \b UpnpGetServiceVarStatus call completed. The \b Event + * parameter contains a pointer to a \b UpnpStateVarComplete structure + * containing the value for the variable. */ + UPNP_CONTROL_GET_VAR_COMPLETE, + + /* + * Discovery callbacks + */ + + /*! Received by a control point when a new device or service is available. + * The \b Event parameter contains a pointer to a \b + * UpnpDiscovery structure with the information about the device + * or service. */ + UPNP_DISCOVERY_ADVERTISEMENT_ALIVE, + + /*! Received by a control point when a device or service shuts down. The \b + * Event parameter contains a pointer to a \b UpnpDiscovery + * structure containing the information about the device or + * service. */ + UPNP_DISCOVERY_ADVERTISEMENT_BYEBYE, + + /*! Received by a control point when a matching device or service responds. + * The \b Event parameter contains a pointer to a \b + * UpnpDiscovery structure containing the information about + * the reply to the search request. */ + UPNP_DISCOVERY_SEARCH_RESULT, + + /*! Received by a control point when the search timeout expires. The + * SDK generates no more callbacks for this search after this + * event. The \b Event parameter is \c NULL. */ + UPNP_DISCOVERY_SEARCH_TIMEOUT, + + /* + * Eventing callbacks + */ + + /*! Received by a device when a subscription arrives. + * The \b Event parameter contains a pointer to a \b + * UpnpSubscriptionRequest structure. At this point, the + * subscription has already been accepted. \b UpnpAcceptSubscription + * needs to be called to confirm the subscription and transmit the + * initial state table. This can be done during this callback. The SDK + * generates no events for a subscription unless the device + * application calls \b UpnpAcceptSubscription. + */ + UPNP_EVENT_SUBSCRIPTION_REQUEST, + + /*! Received by a control point when an event arrives. The \b + * Event parameter contains a \b UpnpEvent structure + * with the information about the event. */ + UPNP_EVENT_RECEIVED, + + /*! A \b UpnpRenewSubscriptionAsync call completed. The status of + * the renewal is in the \b Event parameter as a \b + * Upnp_Event_Subscription structure. */ + UPNP_EVENT_RENEWAL_COMPLETE, + + /*! A \b UpnpSubscribeAsync call completed. The status of the + * subscription is in the \b Event parameter as a \b + * Upnp_Event_Subscription structure. */ + UPNP_EVENT_SUBSCRIBE_COMPLETE, + + /*! A \b UpnpUnSubscribeAsync call completed. The status of the + * subscription is in the \b Event parameter as a \b + * UpnpEventSubscribe structure. */ + UPNP_EVENT_UNSUBSCRIBE_COMPLETE, + + /*! The auto-renewal of a client subscription failed. + * The \b Event parameter is a \b UpnpEventSubscribe structure + * with the error code set appropriately. The subscription is no longer + * valid. */ + UPNP_EVENT_AUTORENEWAL_FAILED, + + /*! A client subscription has expired. This will only occur + * if auto-renewal of subscriptions is disabled. + * The \b Event parameter is a \b UpnpEventSubscribe + * structure. The subscription is no longer valid. */ + UPNP_EVENT_SUBSCRIPTION_EXPIRED +}; + +typedef enum Upnp_EventType_e Upnp_EventType; + +/*! + * \brief Holds the subscription identifier for a subscription between a + * client and a device. + * + * The SID is a string representation of a globally unique id (GUID) and should + * not be modified. + */ +typedef char Upnp_SID[44]; + +/*! + * \brief Represents the different types of searches that can be performed + * using the SDK for UPnP Devices API. + * + * By specifying these different values to \b UpnpSearchAsync, the control + * point application can control the scope of the search from all devices + * to specific devices or services. + */ +enum Upnp_SType_e { + /*! Search for all devices and services on the network. */ + UPNP_S_ALL, + + /*! Search for all root devices on the network. */ + UPNP_S_ROOT, + + /*! Search for a particular device type or a particular device instance. */ + UPNP_S_DEVICE, + + /*! Search for a particular service type, possibly on a particular + * device type or device instance. */ + UPNP_S_SERVICE +}; + +typedef enum Upnp_SType_e Upnp_SType; + +/*! + * \brief Specifies the type of description in \b UpnpRegisterRootDevice2. + * + * These values control how \b UpnpRegisterRootDevice2 interprets the + * \b description parameter. + */ +enum Upnp_DescType_e { + /*! The description is the URL to the description document. */ + UPNPREG_URL_DESC, + + /*! The description is a file name on the local file system + containing the description of the device. */ + UPNPREG_FILENAME_DESC, + + /*! The description is a pointer to a character array containing + the XML description document. */ + UPNPREG_BUF_DESC +}; + +typedef enum Upnp_DescType_e Upnp_DescType; + +#if UPNP_VERSION < 10800 +/** Returned as part of a {\bf UPNP_CONTROL_ACTION_COMPLETE} callback. */ + +struct Upnp_Action_Request +{ + /** The result of the operation. */ + int ErrCode; + + /** The socket number of the connection to the requestor. */ + int Socket; + + /** The error string in case of error. */ + char ErrStr[LINE_SIZE]; + + /** The Action Name. */ + char ActionName[NAME_SIZE]; + + /** The unique device ID. */ + char DevUDN[NAME_SIZE]; + + /** The service ID. */ + char ServiceID[NAME_SIZE]; + + /** The DOM document describing the action. */ + IXML_Document *ActionRequest; + + /** The DOM document describing the result of the action. */ + IXML_Document *ActionResult; + + /** IP address of the control point requesting this action. */ + struct sockaddr_storage CtrlPtIPAddr; + + /** The DOM document containing the information from the + the SOAP header. */ + IXML_Document *SoapHeader; +}; + +struct Upnp_Action_Complete +{ + /** The result of the operation. */ + int ErrCode; + + /** The control URL for service. */ + char CtrlUrl[NAME_SIZE]; + + /** The DOM document describing the action. */ + IXML_Document *ActionRequest; + + /** The DOM document describing the result of the action. */ + IXML_Document *ActionResult; + +}; + +/** Represents the request for current value of a state variable in a service + * state table. */ + +struct Upnp_State_Var_Request +{ + /** The result of the operation. */ + int ErrCode; + + /** The socket number of the connection to the requestor. */ + int Socket; + + /** The error string in case of error. */ + char ErrStr[LINE_SIZE]; + + /** The unique device ID. */ + char DevUDN[NAME_SIZE]; + + /** The service ID. */ + char ServiceID[NAME_SIZE]; + + /** The name of the variable. */ + char StateVarName[NAME_SIZE]; + + /** IP address of sender requesting the state variable. */ + struct sockaddr_storage CtrlPtIPAddr; + + /** The current value of the variable. This needs to be allocated by + * the caller. When finished with it, the SDK frees this {\bf DOMString}. */ + DOMString CurrentVal; +}; + +/** Represents the reply for the current value of a state variable in an + asynchronous call. */ + +struct Upnp_State_Var_Complete +{ + /** The result of the operation. */ + int ErrCode; + + /** The control URL for the service. */ + char CtrlUrl[NAME_SIZE]; + + /** The name of the variable. */ + char StateVarName[NAME_SIZE]; + + /** The current value of the variable or error string in case of error. */ + DOMString CurrentVal; +}; + +/** Returned along with a {\bf UPNP_EVENT_RECEIVED} callback. */ + +struct Upnp_Event +{ + /** The subscription ID for this subscription. */ + Upnp_SID Sid; + + /** The event sequence number. */ + int EventKey; + + /** The DOM tree representing the changes generating the event. */ + IXML_Document *ChangedVariables; + +}; + +/* + * This typedef is required by Doc++ to parse the last entry of the + * Upnp_Discovery structure correctly. + */ + + +/** Returned in a {\bf UPNP_DISCOVERY_RESULT} callback. */ +struct Upnp_Discovery +{ + /** The result code of the {\bf UpnpSearchAsync} call. */ + int ErrCode; + + /** The expiration time of the advertisement. */ + int Expires; + + /** The unique device identifier. */ + char DeviceId[LINE_SIZE]; + + /** The device type. */ + char DeviceType[LINE_SIZE]; + + /** The service type. */ + char ServiceType[LINE_SIZE]; + + /** The service version. */ + char ServiceVer[LINE_SIZE]; + + /** The URL to the UPnP description document for the device. */ + char Location[LINE_SIZE]; + + /** The operating system the device is running. */ + char Os[LINE_SIZE]; + + /** Date when the response was generated. */ + char Date[LINE_SIZE]; + + /** Confirmation that the MAN header was understood by the device. */ + char Ext[LINE_SIZE]; + + /** The host address of the device responding to the search. */ + struct sockaddr_storage DestAddr; +}; + +/** Returned along with a {\bf UPNP_EVENT_SUBSCRIBE_COMPLETE} or {\bf + * UPNP_EVENT_UNSUBSCRIBE_COMPLETE} callback. */ + +struct Upnp_Event_Subscribe { + + /** The SID for this subscription. For subscriptions, this only + * contains a valid SID if the {\bf Upnp_EventSubscribe.result} field + * contains a {\tt UPNP_E_SUCCESS} result code. For unsubscriptions, + * this contains the SID from which the subscription is being + * unsubscribed. */ + + Upnp_SID Sid; + + /** The result of the operation. */ + int ErrCode; + + /** The event URL being subscribed to or removed from. */ + char PublisherUrl[NAME_SIZE]; + + /** The actual subscription time (for subscriptions only). */ + int TimeOut; + +}; + +/** Returned along with a {\bf UPNP_EVENT_SUBSCRIPTION_REQUEST} + * callback. */ + +struct Upnp_Subscription_Request +{ + /** The identifier for the service being subscribed to. */ + char *ServiceId; + + /** Universal device name. */ + char *UDN; + + /** The assigned subscription ID for this subscription. */ + Upnp_SID Sid; + +}; + +struct File_Info +{ + /** The length of the file. A length less than 0 indicates the size + * is unknown, and data will be sent until 0 bytes are returned from + * a read call. */ + off_t file_length; + + /** The time at which the contents of the file was modified; + * The time system is always local (not GMT). */ + time_t last_modified; + + /** If the file is a directory, {\bf is_directory} contains + * a non-zero value. For a regular file, it should be 0. */ + int is_directory; + + /** If the file or directory is readable, this contains + * a non-zero value. If unreadable, it should be set to 0. */ + int is_readable; + + /** The content type of the file. This string needs to be allocated + * by the caller using {\bf ixmlCloneDOMString}. When finished + * with it, the SDK frees the {\bf DOMString}. */ + DOMString content_type; +}; +#endif /* UPNP_VERSION < 10800 */ + +/*! + * All callback functions share the same prototype, documented below. + * Note that any memory passed to the callback function + * is valid only during the callback and should be copied if it + * needs to persist. This callback function needs to be thread + * safe. The context of the callback is always on a valid thread + * context and standard synchronization methods can be used. Note, + * however, because of this the callback cannot call SDK functions + * unless explicitly noted. + * + * \verbatim + int CallbackFxn(Upnp_EventType EventType, void *Event, void *Cookie); + \endverbatim + * + * where \b EventType is the event that triggered the callback, + * \b Event is a structure that denotes event-specific information for that + * event, and \b Cookie is the user data passed when the callback was + * registered. + * + * See \b Upnp_EventType for more information on the callback values and + * the associated \b Event parameter. + * + * The return value of the callback is currently ignored. It may be used + * in the future to communicate results back to the SDK. + */ +typedef int (*Upnp_FunPtr)( + /*! [in] .*/ + Upnp_EventType EventType, + /*! [in] .*/ + void *Event, + /*! [in] .*/ + void *Cookie); + +/* @} Constants and Types */ + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/*! + * \name Initialization and Registration + * + * @{ + */ + +/*! + * \brief Initializes the Linux SDK for UPnP Devices (IPv4 only). + * + * \deprecated Kept for backwards compatibility. Use UpnpInit2 for new + * implementations or where IPv6 is required. + * + * This function must be called before any other API function can be called. + * It should be called only once. Subsequent calls to this API return a + * \c UPNP_E_INIT error code. + * + * Optionally, the application can specify a host IPv4 address (in the + * case of a multi-homed configuration) and a port number to use for + * all UPnP operations. Since a port number can be used only by one + * process, multiple processes using the SDK must specify + * different port numbers. + * + * If unspecified, the SDK will use the first IPv4-capable adapter's IP address + * and an arbitrary port. + * + * This call is synchronous. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist + * to initialize the SDK. + * \li \c UPNP_E_INIT: The SDK is already initialized. + * \li \c UPNP_E_INIT_FAILED: The SDK initialization + * failed for an unknown reason. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_LISTEN: An error occurred listening to a socket. + * \li \c UPNP_E_OUTOF_SOCKET: An error ocurred creating a socket. + * \li \c UPNP_E_INTERNAL_ERROR: An internal error ocurred. + */ +EXPORT_SPEC int UpnpInit( + /*! The host local IPv4 address to use, in string format, for example + * "192.168.0.1", or \c NULL to use the first IPv4 adapter's IP address. */ + const char *HostIP, + /*! Local Port to listen for incoming connections + * \c NULL will pick an arbitrary free port. */ + unsigned short DestPort); + +/*! + * \brief Initializes the Linux SDK for UPnP Devices (IPv4 or IPv6). + * + * This function must be called before any other API function can be called. + * It should be called only once. Subsequent calls to this API return a + * \c UPNP_E_INIT error code. + * + * Optionally, the application can specify an interface name (in the + * case of a multi-homed configuration) and a port number to use for + * all UPnP operations. Since a port number can be used only by one + * process, multiple processes using the SDK must specify + * different port numbers. + * + * If unspecified, the SDK will use the first suitable interface and an + * arbitrary port. + * + * This call is synchronous. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist + * to initialize the SDK. + * \li \c UPNP_E_INIT: The SDK is already initialized. + * \li \c UPNP_E_INIT_FAILED: The SDK initialization + * failed for an unknown reason. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_LISTEN: An error occurred listening to a socket. + * \li \c UPNP_E_OUTOF_SOCKET: An error ocurred creating a socket. + * \li \c UPNP_E_INTERNAL_ERROR: An internal error ocurred. + * \li \c UPNP_E_INVALID_INTERFACE: IfName is invalid or does not + * have a valid IPv4 or IPv6 addresss configured. + */ +#ifdef UPNP_ENABLE_IPV6 +EXPORT_SPEC int UpnpInit2( + /*! The interface name to use by the UPnP SDK operations. + * Examples: "eth0", "xl0", "Local Area Connection", \c NULL to + * use the first suitable interface. */ + const char *IfName, + /*! Local Port to listen for incoming connections. + * \c NULL will pick an arbitrary free port. */ + unsigned short DestPort); +#endif + +/*! + * \brief Terminates the Linux SDK for UPnP Devices. + * + * \li Checks for pending jobs and threads + * \li Unregisters either the client or device + * \li Shuts down the Timer Thread + * \li Stops the Mini Server + * \li Uninitializes the Thread Pool + * \li For Win32 cleans up Winsock Interface + * \li Cleans up mutex objects + * + * This function must be the last API function called. It should be called only + * once. Subsequent calls to this API return a \c UPNP_E_FINISH error code. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_FINISH: The SDK is already terminated or + * it is not initialized. + */ +EXPORT_SPEC int UpnpFinish(void); + +/*! + * \brief Returns the internal server IPv4 UPnP listening port. + * + * If '0' is used as the port number in \b UpnpInit, then this function can be + * used to retrieve the actual port allocated to the SDK. + * + * \return + * \li On success: The port on which an internal server is listening for IPv4 UPnP + * related requests. + * \li On error: 0 is returned if \b UpnpInit has not succeeded. + */ +EXPORT_SPEC unsigned short UpnpGetServerPort(void); + +/*! + * \brief Returns the internal server IPv6 UPnP listening port. + * + * If '0' is used as the port number in \b UpnpInit, then this function can be + * used to retrieve the actual port allocated to the SDK. + * + * \return + * \li On success: The port on which an internal server is listening for IPv6 UPnP + * related requests. + * \li On error: 0 is returned if \b UpnpInit has not succeeded. + */ +#ifdef UPNP_ENABLE_IPV6 +EXPORT_SPEC unsigned short UpnpGetServerPort6(void); +#endif +/*! + * \brief Returns the local IPv4 listening ip address. + * + * If \c NULL is used as the IPv4 address in \b UpnpInit, then this function can + * be used to retrieve the actual interface address on which device is running. + * + * \return + * \li On success: The IPv4 address on which an internal server is + * listening for UPnP related requests. + * \li On error: \c NULL is returned if \b UpnpInit has not succeeded. + */ +EXPORT_SPEC char *UpnpGetServerIpAddress(void); + +/*! + * \brief Returns the local IPv6 listening ip address. + * + * If \c NULL is used as the IPv6 address in \b UpnpInit, then this function can + * be used to retrieve the actual interface address on which device is running. + * + * \return + * \li On success: The IPv6 address on which an internal server is + * listening for UPnP related requests. + * \li On error: \c NULL is returned if \b UpnpInit has not succeeded. + */ +#ifdef UPNP_ENABLE_IPV6 +EXPORT_SPEC char *UpnpGetServerIp6Address(void); + +EXPORT_SPEC char *UpnpGetServerUlaGuaIp6Address(void); +#endif +/*! + * \brief Registers a device application with the UPnP Library. + * + * A device application cannot make any other API calls until it registers + * using this function. + * + * Device applications can also register as control points (see + * \b UpnpRegisterClient to get a control point handle to perform control + * point functionality). + * + * This is a synchronous call and does not generate any callbacks. Callbacks + * can occur as soon as this function returns. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_FINISH: The SDK is already terminated or is not + * initialized. + * \li \c UPNP_E_INVALID_DESC: The description document was not + * a valid device description. + * \li \c UPNP_E_INVALID_URL: The URL for the description document + * is not valid. + * \li \c UPNP_E_INVALID_PARAM: Either \b Callback or \b Hnd + * is not a valid pointer or \b DescURL is \c NULL. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting the + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + * \li \c UPNP_E_OUTOF_MEMORY: There are insufficient resources to + * register this root device. + */ +EXPORT_SPEC int UpnpRegisterRootDevice( + /*! [in] Pointer to a string containing the description URL for this root device + * instance. */ + const char *DescUrl, + /*! [in] Pointer to the callback function for receiving asynchronous events. */ + Upnp_FunPtr Callback, + /*! [in] Pointer to user data returned with the callback function when invoked. */ + const void *Cookie, + /*! [out] Pointer to a variable to store the new device handle. */ + UpnpDevice_Handle *Hnd); + +/*! + * \brief Registers a device application with the UPnP Library. Similar to + * \b UpnpRegisterRootDevice, except that it also allows the description + * document to be specified as a file or a memory buffer. + * + * The description can also be configured to have the correct IP and port + * address. + * + * NOTE: For the configuration to be functional, the internal web server + * MUST be present. In addition, the web server MUST be activated + * (using \b UpnpSetWebServerRootDir) before calling this function. + * The only condition where the web server can be absent is if the + * description document is specified as a URL and no configuration is + * required (i.e. config_baseURL = 0.) + * + * This is a synchronous call and does not generate any callbacks. Callbacks + * can occur as soon as this function returns. + * + * Examples of using different types of description documents: + * \verbatim + 1) Description specified as a URL: + descriptionType == UPNPREG_URL_DESC + description is the URL + bufferLen = 0 (ignored) + 2) Description specified as a file: + descriptionType == UPNPREG_FILENAME_DESC + description is a filename + bufferLen = 0 (ignored) + 3) Description specified as a memory buffer: + descriptionType == UPNPREG_BUF_DESC + description is pointer to a memory buffer + bufferLen == length of memory buffer + \endverbatim + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_FINISH: The SDK is already terminated or + * is not initialized. + * \li \c UPNP_E_INVALID_DESC: The description document is not + * a valid device description. + * \li \c UPNP_E_INVALID_PARAM: Either \b Callback or \b Hnd + * is not a valid pointer or \b DescURL is \c NULL. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting the + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + * \li \c UPNP_E_OUTOF_MEMORY: There are insufficient resources to + * register this root device. + * \li \c UPNP_E_URL_TOO_BIG: Length of the URL is bigger than the + * internal buffer. + * \li \c UPNP_E_FILE_NOT_FOUND: The description file could not + * be found. + * \li \c UPNP_E_FILE_READ_ERROR: An error occurred reading the + * description file. + * \li \c UPNP_E_INVALID_URL: The URL to the description document + * is invalid. + * \li \c UPNP_E_EXT_NOT_XML: The URL to the description document + * or file should have a .xml extension. + * \li \c UPNP_E_NO_WEB_SERVER: The internal web server has been + * compiled out; the SDK cannot configure itself from the + * description document. + */ +EXPORT_SPEC int UpnpRegisterRootDevice2( + /*! [in] The type of the description document. */ + Upnp_DescType descriptionType, + /*! [in] Treated as a URL, file name or memory buffer depending on + * description type. */ + const char* description, + /*! [in] The length of memory buffer if passing a description in a buffer, + * otherwise it is ignored. */ + size_t bufferLen, + /*! [in] If nonzero, \c URLBase of description document is configured and + * the description is served using the internal web server. */ + int config_baseURL, + /*! [in] Pointer to the callback function for receiving asynchronous events. */ + Upnp_FunPtr Fun, + /*! [in] Pointer to user data returned with the callback function when + * invoked. */ + const void* Cookie, + /*! [out] Pointer to a variable to store the new device handle. */ + UpnpDevice_Handle* Hnd); + +/*! + * \brief Registers a device application for a specific address family with + * the UPnP library. + * + * A device application cannot make any other API calls until it registers + * using this function. Device applications can also register as control + * points (see \b UpnpRegisterClient to get a control point handle to perform + * control point functionality). + * + * This is synchronous and does not generate any callbacks. Callbacks can occur + * as soon as this function returns. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_FINISH: The SDK is already terminated or + * is not initialized. + * \li \c UPNP_E_INVALID_DESC: The description document was not + * a valid device description. + * \li \c UPNP_E_INVALID_URL: The URL for the description document + * is not valid. + * \li \c UPNP_E_INVALID_PARAM: Either \b Callback or \b Hnd + * is not a valid pointer or \b DescURL is \c NULL. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting the + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + * \li \c UPNP_E_OUTOF_MEMORY: There are insufficient resources to + * register this root device. + */ +EXPORT_SPEC int UpnpRegisterRootDevice3( + /*! [in] Pointer to a string containing the description URL for this root + * device instance. */ + const char *DescUrl, + /*! [in] Pointer to the callback function for receiving asynchronous events. */ + Upnp_FunPtr Callback, + /*! [in] Pointer to user data returned with the callback function when invoked. */ + const void *Cookie, + /*! [out] Pointer to a variable to store the new device handle. */ + UpnpDevice_Handle *Hnd, + /*! [in] Address family of this device. Can be AF_INET for an IPv4 device, or + * AF_INET6 for an IPv6 device. Defaults to AF_INET. */ + int AddressFamily); + +/*! + * \brief Registers a device application for a specific address family with + * the UPnP library. This function can also be used to specify a dedicated + * description URL to be returned for legacy CPs. + * + * A device application cannot make any other API calls until it registers + * using this function. Device applications can also register as control + * points (see \b UpnpRegisterClient to get a control point handle to perform + * control point functionality). + * + * This is synchronous and does not generate any callbacks. Callbacks can occur + * as soon as this function returns. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_FINISH: The SDK is already terminated or + * is not initialized. + * \li \c UPNP_E_INVALID_DESC: The description document was not + * a valid device description. + * \li \c UPNP_E_INVALID_URL: The URL for the description document + * is not valid. + * \li \c UPNP_E_INVALID_PARAM: Either \b Callback or \b Hnd + * is not a valid pointer or \b DescURL is \c NULL. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting the + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + * \li \c UPNP_E_OUTOF_MEMORY: There are insufficient resources to + * register this root device. + */ +EXPORT_SPEC int UpnpRegisterRootDevice4( + /*! [in] Pointer to a string containing the description URL for this root + * device instance. */ + const char *DescUrl, + /*! [in] Pointer to the callback function for receiving asynchronous events. */ + Upnp_FunPtr Callback, + /*! [in] Pointer to user data returned with the callback function when invoked. */ + const void *Cookie, + /*! [out] Pointer to a variable to store the new device handle. */ + UpnpDevice_Handle *Hnd, + /*! [in] Address family of this device. Can be AF_INET for an IPv4 device, or + * AF_INET6 for an IPv6 device. Defaults to AF_INET. */ + int AddressFamily, + /*! [in] Pointer to a string containing the description URL to be returned for + * legacy CPs for this root device instance. */ + const char *LowerDescUrl); + +/*! + * \brief Unregisters a root device registered with \b UpnpRegisterRootDevice, + * \b UpnpRegisterRootDevice2, \b UpnpRegisterRootDevice3 or + * \b UpnpRegisterRootDevice4. + * + * After this call, the \b UpnpDevice_Handle is no longer valid. For all + * advertisements that have not yet expired, the SDK sends a device unavailable + * message automatically. + * + * This is a synchronous call and generates no callbacks. Once this call + * returns, the SDK will no longer generate callbacks to the application. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid device handle. + */ +EXPORT_SPEC int UpnpUnRegisterRootDevice( + /*! [in] The handle of the root device instance to unregister. */ + UpnpDevice_Handle Hnd); + +/*! + * \brief Unregisters a root device registered with \b UpnpRegisterRootDevice, + * \b UpnpRegisterRootDevice2, \b UpnpRegisterRootDevice3 or + * \b UpnpRegisterRootDevice4. + * + * After this call, the \b UpnpDevice_Handle is no longer valid. For all + * advertisements that have not yet expired, the SDK sends a device unavailable + * message automatically. + * + * This is a synchronous call and generates no callbacks. Once this call + * returns, the SDK will no longer generate callbacks to the application. + * + * This function allow a device to specify the SSDP extensions defined by UPnP + * Low Power. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid device handle. + */ +EXPORT_SPEC int UpnpUnRegisterRootDeviceLowPower( + /*! [in] The handle of the root device instance to unregister. */ + UpnpDevice_Handle Hnd, + /*! PowerState as defined by UPnP Low Power. */ + int PowerState, + /*! SleepPeriod as defined by UPnP Low Power. */ + int SleepPeriod, + /*! RegistrationState as defined by UPnP Low Power. */ + int RegistrationState); + +/*! + * \brief Registers a control point application with the UPnP Library. + * + * A control point application cannot make any other API calls until it + * registers using this function. + * + * \b UpnpRegisterClient is a synchronous call and generates no callbacks. + * Callbacks can occur as soon as this function returns. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_FINISH: The SDK is already terminated or + * is not initialized. + * \li \c UPNP_E_INVALID_PARAM: Either \b Callback or \b Hnd + * is not a valid pointer. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * register this control point. + */ +EXPORT_SPEC int UpnpRegisterClient( + /*! [in] Pointer to a function for receiving asynchronous events. */ + Upnp_FunPtr Callback, + /*! [in] Pointer to user data returned with the callback function when invoked. */ + const void *Cookie, + /*! [out] Pointer to a variable to store the new control point handle. */ + UpnpClient_Handle *Hnd); + +/*! + * \brief Unregisters a control point application, unsubscribing all active + * subscriptions. + * + * This function unregisters a client registered with UpnpRegisterclient or + * UpnpRegisterclient2. After this call, the \b UpnpClient_Handle is no longer + * valid. The UPnP Library generates no more callbacks after this function + * returns. + * + * \b UpnpUnRegisterClient is a synchronous call and generates no + * callbacks. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control point handle. + */ +EXPORT_SPEC int UpnpUnRegisterClient( + /*! [in] The handle of the control point instance to unregister. */ + UpnpClient_Handle Hnd); + +/*! + * \deprecated Use \b UpnpSetMaxContentLength instead. + * + * Warning: the Handle argument provided here is not used, so the effect + * of this function is global to the SDK (= same as \b UpnpSetMaxContentLength). + */ +EXPORT_SPEC int UpnpSetContentLength( + /*! [in] The handle of the device instance for which the coincoming content + * length needs to be set. */ + UpnpClient_Handle Hnd, + /*! [in] Permissible content length */ + size_t contentLength); + +/*! + * \brief Sets the maximum content-length that the SDK will process on an + * incoming SOAP requests or responses. + * + * This API allows devices that have memory constraints to exhibit consistent + * behaviour if the size of the incoming SOAP message exceeds the memory that + * device can allocate. + * + * If set to 0 then checking will be disabled. + * + * The default maximum content-length is \c DEFAULT_SOAP_CONTENT_LENGTH + * = 16K bytes. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + */ +EXPORT_SPEC int UpnpSetMaxContentLength( + /*! [in] The maximum permissible content length for incoming SOAP actions, + * in bytes. */ + size_t contentLength); + +/* @} Initialization and Registration */ + +/****************************************************************************** + ****************************************************************************** + * * + * D I S C O V E R Y * + * * + ****************************************************************************** + ******************************************************************************/ + +/*! + * \name Discovery + * + * @{ + */ + +/*! + * \brief Searches for devices matching the given search target. + * + * The function returns immediately and the SDK calls the default callback + * function, registered during the \b UpnpRegisterClient call, for each + * matching root device, device, or service. The application specifies the + * search type by the \b Target parameter. + * + * This function searches for the devices for the provided maximum time. + * It is an asynchronous function. It schedules a search job and returns. + * The client is notified about the search results after search timer. + * + * Note that there is no way for the SDK to distinguish which client + * instance issued a particular search. Therefore, the client can get + * search callbacks that do not match the original criteria of the search. + * Also, the application will receive multiple callbacks for each search. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_PARAM: \b Target is \c NULL. + */ +EXPORT_SPEC int UpnpSearchAsync( + /*! The handle of the client performing the search. */ + UpnpClient_Handle Hnd, + /*! The time, in seconds, to wait for responses. If the time is greater + * than \c MAX_SEARCH_TIME then the time is set to \c MAX_SEARCH_TIME. + * If the time is less than \c MIN_SEARCH_TIME then the time is set to + * \c MIN_SEARCH_TIME. */ + int Mx, + /*! The search target as defined in the UPnP Device Architecture v1.0 + * specification. */ + const char *TTarget_constarget_const, + /*! The user data to pass when the callback function is invoked. */ + const void *Cookie_const); + +/*! + * \brief Sends out the discovery announcements for all devices and services + * for a device. + * + * Each announcement is made with the same expiration time. + * + * This is a synchronous call. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid + * device handle. + * \li \c UPNP_E_OUTOF_MEMORY: There are insufficient resources to + * send future advertisements. + */ +EXPORT_SPEC int UpnpSendAdvertisement( + /*! The device handle for which to send out the announcements. */ + UpnpDevice_Handle Hnd, + /*! The expiration age, in seconds, of the announcements. */ + int Exp); + +/*! + * \brief Sends out the discovery announcements for all devices and services + * for a device. + * + * Each announcement is made with the same expiration time. + * + * This is a synchronous call. + * + * This function allow a device to specify the SSDP extensions defined by UPnP + * Low Power. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid + * device handle. + * \li \c UPNP_E_OUTOF_MEMORY: There are insufficient resources to + * send future advertisements. + */ +EXPORT_SPEC int UpnpSendAdvertisementLowPower( + /*! The device handle for which to send out the announcements. */ + UpnpDevice_Handle Hnd, + /*! The expiration age, in seconds, of the announcements. */ + int Exp, + /*! PowerState as defined by UPnP Low Power. */ + int PowerState, + /*! SleepPeriod as defined by UPnP Low Power. */ + int SleepPeriod, + /*! RegistrationState as defined by UPnP Low Power. */ + int RegistrationState); + +/* @} Discovery */ + +/****************************************************************************** + ****************************************************************************** + * * + * C O N T R O L * + * * + ****************************************************************************** + ******************************************************************************/ + +/*! + * \name Control + * + * @{ + */ + +/*! + * \brief Queries the state of a state variable of a service on another device. + * + * \deprecated + * The use of this function is deprecated by the UPnP Forum. + * + * This is a synchronous call. + * + * A positive return value indicates a SOAP error code, whereas a negative + * return code indicates an SDK error code. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_URL: \b ActionUrl is not a valid URL. + * \li \c UPNP_E_INVALID_DESC: The XML document was not + * found or it does not contain a valid XML description. + * \li \c UPNP_E_INVALID_PARAM: \b StVarVal is not a valid + * pointer or \b VarName or \b ActionUrl is \c NULL. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + * \li \c UPNP_SOAP_E_INVALID_VAR: The given variable is invalid + * according to the device. + */ +EXPORT_SPEC int UpnpGetServiceVarStatus( + /*! [in] The handle of the control point. */ + UpnpClient_Handle Hnd, + /*! [in] The URL of the service. */ + const char *ActionURL, + /*! [in] The name of the variable to query. */ + const char *VarName, + /*! [out] The pointer to store the value for \b VarName. The SDK allocates + * this string and the caller needs to free it using + * \b ixmlFreeDOMString. */ + DOMString *StVarVal); + +/*! + * \brief Queries the state of a variable of a service, generating a callback + * when the operation is complete. + * + * \deprecated + * The use of this function is deprecated by the UPnP Forum. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_URL: The \b ActionUrl is not a valid URL. + * \li \c UPNP_E_INVALID_PARAM: \b VarName, \b Fun or + * \b ActionUrl is not a valid pointer. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpGetServiceVarStatusAsync( + /*! [in] The handle of the control point. */ + UpnpClient_Handle Hnd, + /*! [in] The URL of the service. */ + const char *ActionURL, + /*! [in] The name of the variable to query. */ + const char *VarName, + /*! [in] Pointer to a callback function to be invoked when the operation + * is complete. */ + Upnp_FunPtr Fun, + /*! [in] Pointer to user data to pass to the callback function when invoked. */ + const void *Cookie); + +/*! + * \brief Sends a message to change a state variable in a service. + * + * This is a synchronous call that does not return until the action is complete. + * + * Note that a positive return value indicates a SOAP-protocol error code. + * In this case, the error description can be retrieved from \b RespNode. + * A negative return value indicates an SDK error. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_URL: \b ActionUrl is not a valid URL. + * \li \c UPNP_E_INVALID_ACTION: This action is not valid. + * \li \c UPNP_E_INVALID_DEVICE: \b DevUDN is not a + * valid device. + * \li \c UPNP_E_INVALID_PARAM: \b ServiceType, \b Action, + * \b ActionUrl, or + * \b RespNode is not a valid pointer. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpSendAction( + /*! [in] The handle of the control point sending the action. */ + UpnpClient_Handle Hnd, + /*! [in] The action URL of the service. */ + const char *ActionURL, + /*! [in] The type of the service. */ + const char *ServiceType, + /*! [in] This parameter is ignored and must be \c NULL. */ + const char *DevUDN, + /*! [in] The DOM document for the action. */ + IXML_Document *Action, + /*! [out] The DOM document for the response to the action. The SDK allocates + * this document and the caller needs to free it. */ + IXML_Document **RespNode); + +/*! + * \brief Sends a message to change a state variable in a service. + * + * This is a synchronous call that does not return until the action is complete. + * + * Note that a positive return value indicates a SOAP-protocol error code. + * In this case, the error description can be retrieved from \b RespNode. + * A negative return value indicates an SDK error. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_URL: \b ActionUrl is not a valid URL. + * \li \c UPNP_E_INVALID_ACTION: This action is not valid. + * \li \c UPNP_E_INVALID_DEVICE: \b DevUDN is not a + * valid device. + * \li \c UPNP_E_INVALID_PARAM: \b ServiceType, \b Action, + * \b ActionUrl, or + * \b RespNode is not a valid pointer. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpSendActionEx( + /*! [in] The handle of the control point sending the action. */ + UpnpClient_Handle Hnd, + /*! [in] The action URL of the service. */ + const char *ActionURL, + /*! [in] The type of the service. */ + const char *ServiceType, + /*! [in] This parameter is ignored and must be \c NULL. */ + const char *DevUDN, + /*! [in] The DOM document for the SOAP header. This may be \c NULL if the + * header is not required. */ + IXML_Document *Header, + /*! [in] The DOM document for the action. */ + IXML_Document *Action, + /*! [out] The DOM document for the response to the action. The SDK allocates + * this document and the caller needs to free it. */ + IXML_Document **RespNode); + +/*! + * \brief Sends a message to change a state variable in a service, generating a + * callback when the operation is complete. + * + * See \b UpnpSendAction for comments on positive return values. These + * positive return values are sent in the event struct associated with the + * \c UPNP_CONTROL_ACTION_COMPLETE event. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_URL: \b ActionUrl is an invalid URL. + * \li \c UPNP_E_INVALID_DEVICE: \b DevUDN is an invalid device. + * \li \c UPNP_E_INVALID_PARAM: Either \b Fun is not a valid + * callback function or \b ServiceType, \b Act, or + * \b ActionUrl is \c NULL. + * \li \c UPNP_E_INVALID_ACTION: This action is not valid. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpSendActionAsync( + /*! [in] The handle of the control point sending the action. */ + UpnpClient_Handle Hnd, + /*! [in] The action URL of the service. */ + const char *ActionURL, + /*! [in] The type of the service. */ + const char *ServiceType, + /*! [in] This parameter is ignored and must be \c NULL. */ + const char *DevUDN, + /*! [in] The DOM document for the action to perform on this device. */ + IXML_Document *Action, + /*! [in] Pointer to a callback function to be invoked when the operation + * completes. */ + Upnp_FunPtr Fun, + /*! [in] Pointer to user data that to be passed to the callback when + * invoked. */ + const void *Cookie); + +/*! + * \brief Sends a message to change a state variable in a service, generating a + * callback when the operation is complete. + * + * See \b UpnpSendAction for comments on positive return values. These + * positive return values are sent in the event struct associated with the + * \c UPNP_CONTROL_ACTION_COMPLETE event. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_URL: \b ActionUrl is an invalid URL. + * \li \c UPNP_E_INVALID_DEVICE: \b DevUDN is an invalid device. + * \li \c UPNP_E_INVALID_PARAM: Either \b Fun is not a valid + * callback function or \b ServiceType, \b Act, or + * \b ActionUrl is \c NULL. + * \li \c UPNP_E_INVALID_ACTION: This action is not valid. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpSendActionExAsync( + /*! [in] The handle of the control point sending the action. */ + UpnpClient_Handle Hnd, + /*! [in] The action URL of the service. */ + const char *ActionURL, + /*! [in] The type of the service. */ + const char *ServiceType, + /*! [in] This parameter is ignored and must be \c NULL. */ + const char *DevUDN, + /*! [in] The DOM document for the SOAP header. This may be \c NULL if the + * header is not required. */ + IXML_Document *Header, + /*! [in] The DOM document for the action to perform on this device. */ + IXML_Document *Action, + /*! [in] Pointer to a callback function to be invoked when the operation + * completes. */ + Upnp_FunPtr Fun, + /*! [in] Pointer to user data that to be passed to the callback when + * invoked. */ + const void *Cookie); + +/*! @} Control */ + +/****************************************************************************** + ****************************************************************************** + * * + * E V E N T I N G * + * * + ****************************************************************************** + ******************************************************************************/ + +/*! + * \name Eventing + * + * @{ + */ + +/*! + * \brief Accepts a subscription request and sends out the current state of the + * eventable variables for a service. + * + * The device application should call this function when it receives a + * \c UPNP_EVENT_SUBSCRIPTION_REQUEST callback. + * + * This function is synchronous and generates no callbacks. + * + * This function can be called during the execution of a callback function. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid device + * handle. + * \li \c UPNP_E_INVALID_SERVICE: The \b DevId/\b ServId + * pair refers to an invalid service. + * \li \c UPNP_E_INVALID_SID: The specified subscription ID is not + * valid. + * \li \c UPNP_E_INVALID_PARAM: Either \b VarName, + * \b NewVal, \b DevID, or \b ServID is not a valid + * pointer or \b cVariables is less than zero. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpAcceptSubscription( + /*! [in] The handle of the device. */ + UpnpDevice_Handle Hnd, + /*! [in] The device ID of the subdevice of the service generating the event. */ + const char *DevID, + /*! [in] The unique service identifier of the service generating the event. */ + const char *ServID, + /*! [in] Pointer to an array of event variables. */ + const char **VarName, + /*! [in] Pointer to an array of values for the event variables. */ + const char **NewVal, + /*! [in] The number of event variables in \b VarName. */ + int cVariables, + /*! [in] The subscription ID of the newly registered control point. */ + const Upnp_SID SubsId); + +/*! + * \brief Similar to \b UpnpAcceptSubscription() except that it takes a DOM + * document for the variables to event rather than an array of strings. + * + * This function is sychronous and generates no callbacks. + * + * This function can be called during the execution of a callback function. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid device + * handle. + * \li \c UPNP_E_INVALID_SERVICE: The \b DevId/\b ServId + * pair refers to an invalid service. + * \li \c UPNP_E_INVALID_SID: The specified subscription ID is not + * valid. + * \li \c UPNP_E_INVALID_PARAM: Either \b VarName, + * \b NewVal, \b DevID, \b ServID, or \b PropSet + * is not a valid pointer. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpAcceptSubscriptionExt( + /*! [in] The handle of the device. */ + UpnpDevice_Handle Hnd, + /*! [in] The device ID of the subdevice of the service generating the event. */ + const char *DevID, + /*! [in] The unique service identifier of the service generating the event. */ + const char *ServID, + /*! [in] The DOM document for the property set. Property set documents must + * conform to the XML schema defined in section 4.3 of the Universal + * Plug and Play Device Architecture specification. */ + IXML_Document *PropSet, + /*! [in] The subscription ID of the newly registered control point. */ + Upnp_SID SubsId); + +/*! + * \brief Sends out an event change notification to all control points + * subscribed to a particular service. + * + * This function is synchronous and generates no callbacks. + * + * This function may be called during a callback function to send out a + * notification. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid device + * handle. + * \li \c UPNP_E_INVALID_SERVICE: The \b DevId/\b ServId + * pair refers to an invalid service. + * \li \c UPNP_E_INVALID_PARAM: Either \b VarName, \b NewVal, + * \b DevID, or \b ServID is not a valid pointer or + * \b cVariables is less than zero. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpNotify( + /*! [in] The handle to the device sending the event. */ + UpnpDevice_Handle, + /*! [in] The device ID of the subdevice of the service generating the event. */ + const char *DevID, + /*! [in] The unique identifier of the service generating the event. */ + const char *ServID, + /*! [in] Pointer to an array of variables that have changed. */ + const char **VarName, + /*! [in] Pointer to an array of new values for those variables. */ + const char **NewVal, + /*! [in] The count of variables included in this notification. */ + int cVariables); + +/*! + * \brief Similar to \b UpnpNotify except that it takes a DOM document for the + * event rather than an array of strings. + * + * This function is synchronous and generates no callbacks. + * + * This function may be called during a callback function to send out a + * notification. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid device + * handle. + * \li \c UPNP_E_INVALID_SERVICE: The \b DevId/\b ServId + * pair refers to an invalid service. + * \li \c UPNP_E_INVALID_PARAM: Either \b VarName, \b NewVal, + * \b DevID, \b ServID, or \b PropSet + * is not a valid pointer or \b cVariables is less than zero. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpNotifyExt( + /*! [in] The handle to the device sending the event. */ + UpnpDevice_Handle, + /*! [in] The device ID of the subdevice of the service generating the event. */ + const char *DevID, + /*! [in] The unique identifier of the service generating the event. */ + const char *ServID, + /*! [in] The DOM document for the property set. Property set documents must + * conform to the XML schema defined in section 4.3 of the Universal + * Plug and Play Device Architecture specification. */ + IXML_Document *PropSet); + +/*! + * \brief Renews a subscription that is about to expire. + * + * This function is synchronous. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_PARAM: \b Timeout is not a valid pointer. + * \li \c UPNP_E_INVALID_SID: The SID being passed to this function + * is not a valid subscription ID. + * \li \c UPNP_E_NETWORK_ERROR: A network error occured. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting to + * \b PublisherUrl. + * \li \c UPNP_E_OUTOF_SOCKET: An error occurred creating a socket. + * \li \c UPNP_E_BAD_RESPONSE: An error occurred in response from + * the publisher. + * \li \c UPNP_E_SUBSCRIBE_UNACCEPTED: The publisher refused + * the subscription renew. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpRenewSubscription( + /*! [in] The handle of the control point that is renewing the subscription. */ + UpnpClient_Handle Hnd, + /*! [in,out] Pointer to a variable containing the requested subscription time. + * Upon return, it contains the actual renewal time. */ + int *TimeOut, + /*! [in] The ID for the subscription to renew. */ + const Upnp_SID SubsId); + +/*! + * \brief Renews a subscription that is about to expire, generating a callback + * when the operation is complete. + * + * Note that many of the error codes for this function are returned in + * the \b UpnpEventSubscribe structure. In those cases, the function + * returns \c UPNP_E_SUCCESS and the appropriate error code will + * be in the UpnpEventSubscribe.ErrCode field in the \b Event + * structure passed to the callback. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_SID: The \b SubsId is not a valid + * subscription ID. + * \li \c UPNP_E_INVALID_PARAM: Either \b Fun is not a valid + * callback function pointer or \b Timeout is less than zero + * but is not \c UPNP_INFINITE. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + * \li \c UPNP_E_NETWORK_ERROR: A network error occured (returned in + * the UpnpEventSubscribe.ErrCode field as part of the + * callback). + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket (returned in the UpnpEventSubscribe.ErrCode + * field as part of the callback). + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket (returned in the + * UpnpEventSubscribe.ErrCode field as part of the + * callback). + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding the socket + * (returned in the UpnpEventSubscribe.ErrCode field as + * part of the callback). + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting to + * \b PublisherUrl (returned in the \b + * UpnpEventSubscribe.ErrCode field as part of the callback). + * \li \c UPNP_E_OUTOF_SOCKET: An error occurred creating socket ( + * returned in the UpnpEventSubscribe.ErrCode field as + * part of the callback). + * \li \c UPNP_E_BAD_RESPONSE: An error occurred in response from + * the publisher (returned in the \b + * UpnpEventSubscribe.ErrCode field as part of the callback). + * \li \c UPNP_E_SUBSCRIBE_UNACCEPTED: The publisher refused + * the subscription request (returned in the \b + * UpnpEventSubscribe.ErrCode field as part of the callback). + */ +EXPORT_SPEC int UpnpRenewSubscriptionAsync( + /*! [in] The handle of the control point that is renewing the subscription. */ + UpnpClient_Handle Hnd, + /*! [in] The requested subscription time. The actual timeout value is + * returned when the callback function is called. */ + int TimeOut, + /*! [in] The ID for the subscription to renew. */ + Upnp_SID SubsId, + /*! [in] Pointer to a callback function to be invoked when the renewal is + * complete. */ + Upnp_FunPtr Fun, + /*! [in] Pointer to user data passed to the callback function when invoked. */ + const void *Cookie); + +/*! + * \brief Sets the maximum number of subscriptions accepted per service. + * + * The default value accepts as many as system resources allow. If the number + * of current subscriptions for a service is greater than the requested value, + * the SDK accepts no new subscriptions or renewals, however, the SDK does not + * remove any current subscriptions. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid device + * handle. + */ +EXPORT_SPEC int UpnpSetMaxSubscriptions( + /*! The handle of the device for which the maximum number of + * subscriptions is being set. */ + UpnpDevice_Handle Hnd, + /*! The maximum number of subscriptions to be allowed per service. */ + int MaxSubscriptions); + +/*! + * \brief Sets the maximum time-out accepted for a subscription request or + * renewal. + * + * The default value accepts the time-out set by the control point. + * If a control point requests a subscription time-out less than or equal to + * the maximum, the SDK grants the value requested by the control point. If the + * time-out is greater, the SDK returns the maximum value. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid device + * handle. + */ +EXPORT_SPEC int UpnpSetMaxSubscriptionTimeOut( + /*! The handle of the device for which the maximum subscription + * time-out is being set. */ + UpnpDevice_Handle Hnd, + /*! The maximum subscription time-out to be accepted. */ + int MaxSubscriptionTimeOut); + +/*! + * \brief Registers a control point to receive event notifications from another + * device. + * + * This operation is synchronous. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_URL: \b PublisherUrl is not a valid URL. + * \li \c UPNP_E_INVALID_PARAM: \b Timeout is not a valid pointer + * or \b SubsId or \b PublisherUrl is \c NULL. + * \li \c UPNP_E_NETWORK_ERROR: A network error occured. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting to + * \b PublisherUrl. + * \li \c UPNP_E_OUTOF_SOCKET: An error occurred creating a socket. + * \li \c UPNP_E_BAD_RESPONSE: An error occurred in response from + * the publisher. + * \li \c UPNP_E_SUBSCRIBE_UNACCEPTED: The publisher refused + * the subscription request. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpSubscribe( + /*! [in] The handle of the control point. */ + UpnpClient_Handle Hnd, + /*! [in] The URL of the service to subscribe to. */ + const char *PublisherUrl, + /*! [in,out]Pointer to a variable containing the requested subscription time. + * Upon return, it contains the actual subscription time returned from + * the service. */ + int *TimeOut, + /*! [out] Pointer to a variable to receive the subscription ID (SID). */ + Upnp_SID SubsId); + +/*! + * \brief Performs the same operation as \b UpnpSubscribe, but returns + * immediately and calls the registered callback function when the operation + * is complete. + * + * Note that many of the error codes for this function are returned in + * the \b UpnpEventSubscribe structure. In those cases, the function + * returns \c UPNP_E_SUCCESS and the appropriate error code will + * be in the UpnpEventSubscribe.ErrCode field in the \b Event + * structure passed to the callback. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_URL: The \b PublisherUrl is not a valid + * URL. + * \li \c UPNP_E_INVALID_PARAM: Either \b TimeOut or \b Fun or + * \b PublisherUrl is not a valid pointer. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + * \li \c UPNP_E_NETWORK_ERROR: A network error occured (returned in + * the UpnpEventSubscribe.ErrCode field as part of the + * callback). + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket (returned in the + * UpnpEventSubscribe.ErrCode field as part of the + * callback). + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket (returned in the + * UpnpEventSubscribe.ErrCode field as part of the + * callback). + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding the socket + * (returned in the UpnpEventSubscribe.ErrCode field as + * part of the callback). + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting to + * \b PublisherUrl (returned in the \b + * UpnpEventSubscribe.ErrCode field as part of the callback). + * \li \c UPNP_E_OUTOF_SOCKET: An error occurred creating the + * socket (returned in the UpnpEventSubscribe.ErrCode + * field as part of the callback). + * \li \c UPNP_E_BAD_RESPONSE: An error occurred in response from + * the publisher (returned in the \b + * UpnpEventSubscribe.ErrCode field as part of the callback). + * \li \c UPNP_E_SUBSCRIBE_UNACCEPTED: The publisher refused + * the subscription request (returned in the \b + * UpnpEventSubscribe.ErrCode field as part of the callback). + */ +EXPORT_SPEC int UpnpSubscribeAsync( + /*! The handle of the control point that is subscribing. */ + UpnpClient_Handle Hnd, + /*! The URL of the service to subscribe to. */ + const char *PublisherUrl, + /*! The requested subscription time. Upon return, it contains the actual + * subscription time returned from the service. */ + int TimeOut, + /*! Pointer to the callback function for this subscribe request. */ + Upnp_FunPtr Fun, + /*! A user data value passed to the callback function when invoked. */ + const void *Cookie); + +/*! + * \brief Removes the subscription of a control point from a service previously + * subscribed to using \b UpnpSubscribe or \b UpnpSubscribeAsync. + * + * This is a synchronous call. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_SID: The \b SubsId is not a valid + * subscription ID. + * \li \c UPNP_E_NETWORK_ERROR: A network error occured. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting to + * \b PublisherUrl. + * \li \c UPNP_E_OUTOF_SOCKET: An error ocurred creating a socket. + * \li \c UPNP_E_BAD_RESPONSE: An error occurred in response from + * the publisher. + * \li \c UPNP_E_UNSUBSCRIBE_UNACCEPTED: The publisher refused + * the unsubscribe request (the client is still unsubscribed and + * no longer receives events). + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpUnSubscribe( + /*! [in] The handle of the subscribed control point. */ + UpnpClient_Handle Hnd, + /*! [in] The ID returned when the control point subscribed to the service. */ + const Upnp_SID SubsId); + +/*! + * \brief Removes a subscription of a control point from a service previously + * subscribed to using \b UpnpSubscribe or \b UpnpSubscribeAsync, generating + * a callback when the operation is complete. + * + * Note that many of the error codes for this function are returned in + * the \b UpnpEventSubscribe structure. In those cases, the function + * returns \c UPNP_E_SUCCESS and the appropriate error code will + * be in the UpnpEventSubscribe.ErrCode field in the \b Event + * structure passed to the callback. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_HANDLE: The handle is not a valid control + * point handle. + * \li \c UPNP_E_INVALID_SID: The \b SubsId is not a valid SID. + * \li \c UPNP_E_INVALID_PARAM: \b Fun is not a valid callback + * function pointer. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + * \li \c UPNP_E_NETWORK_ERROR: A network error occured (returned in + * the UpnpEventSubscribe.ErrCode field as part of the + * callback). + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket (returned in the UpnpEventSubscribe.ErrCode + * field as part of the callback). + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket (returned in the + * UpnpEventSubscribe.ErrCode field as part of the + * callback). + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding the socket + * (returned in the UpnpEventSubscribe.ErrCode field as + * part of the callback). + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting to + * \b PublisherUrl (returned in the UpnpEventSubscribe.ErrCode + * field as part of the callback). + * \li \c UPNP_E_OUTOF_SOCKET: An error occurred creating a socket ( + * returned in the UpnpEventSubscribe.ErrCode field as + * part of the callback). + * \li \c UPNP_E_BAD_RESPONSE: An error occurred in response from + * the publisher (returned in the UpnpEventSubscribe.ErrCode + * field as part of the callback). + * \li \c UPNP_E_UNSUBSCRIBE_UNACCEPTED: The publisher refused + * the subscription request (returned in the + * UpnpEventSubscribe.ErrCode field as part of the callback). + */ +EXPORT_SPEC int UpnpUnSubscribeAsync( + /*! [in] The handle of the subscribed control point. */ + UpnpClient_Handle Hnd, + /*! [in] The ID returned when the control point subscribed to the service. */ + Upnp_SID SubsId, + /*! [in] Pointer to a callback function to be called when the operation is + * complete. */ + Upnp_FunPtr Fun, + /*! [in] Pointer to user data to pass to the callback function when invoked. */ + const void *Cookie); + +/*! @} Eventing */ + + +/****************************************************************************** + ****************************************************************************** + * * + * C L I E N T - A P I * + * * + ****************************************************************************** + ******************************************************************************/ + +/*! + * \name Control Point HTTP API + * + * @{ + */ + +/*! + * \brief Downloads a file specified in a URL. + * + * The SDK allocates the memory for \b outBuf and the application is + * responsible for freeing this memory. Note that the item is passed as a + * single buffer. Large items should not be transferred using this function. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b url, \b outBuf + * or \b contentType is not a valid pointer. + * \li \c UPNP_E_INVALID_URL: The \b url is not a valid + * URL. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * download this file. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting a + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + */ +EXPORT_SPEC int UpnpDownloadUrlItem( + /*! [in] URL of an item to download. */ + const char *url, + /*! [out] Buffer to store the downloaded item. */ + char **outBuf, + /*! [out] HTTP header value content type if present. It should be at least + * \c LINE_SIZE bytes in size. */ + char *contentType); + +/*! + * \brief Gets a file specified in a URL. + * + * The SDK allocates the memory for \b handle and \b contentType, the + * application is responsible for freeing this memory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b url, \b handle, + * \b contentType, \b contentLength or \b httpStatus + * is not a valid pointer. + * \li \c UPNP_E_INVALID_URL: The \b url is not a valid + * URL. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * download this file. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting a + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + * \li \c UPNP_E_BAD_RESPONSE: A bad response was received from the + * remote server. + */ +EXPORT_SPEC int UpnpOpenHttpGet( + /*! [in] The URL of an item to get. */ + const char *url, + /*! [in,out] A pointer to store the handle for this connection. */ + void **handle, + /*! [in,out] A buffer to store the media type of the item. */ + char **contentType, + /*! [in,out] A pointer to store the length of the item. */ + int *contentLength, + /*! [in,out] The status returned on receiving a response message. */ + int *httpStatus, + /*! [in] The time out value sent with the request during which a response + * is expected from the server, failing which, an error is reported + * back to the user. */ + int timeout); + +/*! + * \brief Gets a file specified in a URL through the specified proxy. + * + * The SDK allocates the memory for \b handle and \b contentType, the + * application is responsible for freeing this memory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b url, \b handle, + * \b contentType, \b contentLength or \b httpStatus + * is not a valid pointer. + * \li \c UPNP_E_INVALID_URL: The \b url is not a valid + * URL. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * download this file. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting a + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + * \li \c UPNP_E_BAD_RESPONSE: A bad response was received from the + * remote server. + */ +EXPORT_SPEC int UpnpOpenHttpGetProxy( + /*! [in] The URL of an item to get. */ + const char *url, + /*! [in] The URL of the proxy. */ + const char *proxy_str, + /*! [in,out] A pointer to store the handle for this connection. */ + void **handle, + /*! [in,out] A buffer to store the media type of the item. */ + char **contentType, + /*! [in,out] A pointer to store the length of the item. */ + int *contentLength, + /*! [in,out] The status returned on receiving a response message. */ + int *httpStatus, + /*! [in] The time out value sent with the request during which a response + * is expected from the server, failing which, an error is reported + * back to the user. */ + int timeout); + +/*! + * \brief Gets specified number of bytes from a file specified in the URL. + * + * The number of bytes is specified through a low count and a high count which + * are passed as a range of bytes for the request. The SDK allocates the memory + * for \b handle and \b contentType, the application is responsible for freeing + * this memory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b url, \b handle, + * \b contentType, \b contentLength or \b httpStatus + * is not a valid pointer. + * \li \c UPNP_E_INVALID_URL: The \b url is not a valid + * URL. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * download this file. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting a + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + * \li \c UPNP_E_BAD_RESPONSE: A bad response was received from the + * remote server. + */ +EXPORT_SPEC int UpnpOpenHttpGetEx( + /*! [in] The URL of the item to get. */ + const char *url, + /*! [in,out] A pointer to store the handle for this connection. */ + void **handle, + /*! [in,out] A buffer to store the media type of the item. */ + char **contentType, + /*! [in,out] A buffer to store the length of the item. */ + int *contentLength, + /*! [in,out] The status returned on receiving a response message from the remote server. */ + int *httpStatus, + /*! [in] An integer value representing the low end of a range to retrieve. */ + int lowRange, + /*! [in] An integer value representing the high end of a range to retrieve. */ + int highRange, + /*! [in] A time out value sent with the request during which a response is + * expected from the server, failing which, an error is reported back + * to the user. */ + int timeout); + +/*! + * \brief Gets specified number of bytes from a file specified in a URL. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b handle, \b buf + * or \b size is not a valid pointer. + * \li \c UPNP_E_BAD_RESPONSE: A bad response was received from the + * remote server. + * \li \c UPNP_E_BAD_HTTPMSG: Either the request or response was in + * the incorrect format. + * \li \c UPNP_E_CANCELED: another thread called UpnpCancelHttpGet. + * + * Note: In case of return values, the status code parameter of the passed + * in handle value may provide additional information on the return + * value. + */ +EXPORT_SPEC int UpnpReadHttpGet( + /*! [in] The token created by the call to \b UpnpOpenHttpGet. */ + void *handle, + /*! [in,out] The buffer to store the read item. */ + char *buf, + /*! [in,out] The size of the buffer to be read. */ + size_t *size, + /*! [in] The time out value sent with the request during which a response is + * expected from the server, failing which, an error is reported back to + * the user. */ + int timeout); + +/*! + * \brief Retrieve progress information of a http-get transfer. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b handle, \b length + * or \b total is not a valid pointer. + */ +EXPORT_SPEC int UpnpHttpGetProgress( + /*! [in] The token created by the call to \b UpnpOpenHttpGet. */ + void *handle, + /*! [out] The number of bytes received. */ + size_t *length, + /*! [out] The content length. */ + size_t *total); + +/*! + * \brief Set the cancel flag of the \b handle parameter. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: \b handle is not a valid pointer. + */ +EXPORT_SPEC int UpnpCancelHttpGet( + /*! [in] The handle of the connection created by the call to + * \b UpnpOpenHttpGet. */ + void *handle); + +/*! + * \brief Closes the connection and frees memory that was allocated for the + * \b handle parameter. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: \b handle is not a valid pointer. + */ +EXPORT_SPEC int UpnpCloseHttpGet( + /*! [in] The handle of the connection created by the call to + * \b UpnpOpenHttpGet. */ + void *handle); + +/*! + * \brief Makes an HTTP POST request message, opens a connection to the server + * and sends the POST request to the server if the connection to the server + * succeeds. + * + * The SDK allocates the memory for \b handle and \b contentType, the + * application is responsible for freeing this memory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b url, \b handle + * or \b contentType is not a valid pointer. + * \li \c UPNP_E_INVALID_URL: The \b url is not a valid + * URL. + * \li \c UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * download this file. + * \li \c UPNP_E_SOCKET_ERROR: Error occured allocating a socket and + * resources or an error occurred binding a socket. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting a + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + */ +EXPORT_SPEC int UpnpOpenHttpPost( + /*! [in] The URL in which to send the POST request. */ + const char *url, + /*! [in,out] A pointer in which to store the handle for this connection. This + * handle is required for futher operations over this connection. */ + void **handle, + /*! [in] A buffer to store the media type of content being sent. */ + const char *contentType, + /*! [in] The length of the content, in bytes, being posted. */ + int contentLength, + /*! [in] The time out value sent with the request during which a response + * is expected from the receiver, failing which, an error is reported. */ + int timeout); + +/*! + * \brief Sends a request to a server to copy the contents of a buffer to the + * URI specified in the \b UpnpOpenHttpPost call. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b handle, \b buf + * or \b size is not a valid pointer. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + */ +EXPORT_SPEC int UpnpWriteHttpPost( + /*! [in] The handle of the connection created by the call to + * \b UpnpOpenHttpPost. */ + void *handle, + /*! [in] The buffer to be posted. */ + char *buf, + /*! [in] The size, in bytes of \b buf. */ + size_t *size, + /*! [in] A timeout value sent with the request during which a response is + * expected from the server, failing which, an error is reported. */ + int timeout); + +/*! + * \brief Sends and receives any pending data, closes the connection with the + * server, and frees memory allocated during the \b UpnpOpenHttpPost call. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b handle, or + * \b httpStatus is not a valid pointer. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + */ +EXPORT_SPEC int UpnpCloseHttpPost( + /*! [in] The handle of the connection to close, created by the call to + * \b UpnpOpenHttpPost. */ + void *handle, + /*! [in,out] A pointer to a buffer to store the final status of the connection. */ + int *httpStatus, + /*! [in] A time out value sent with the request during which a response is + * expected from the server, failing which, an error is reported. */ + int timeout); + +/*! + * \brief Downloads an XML document specified in a URL. + * + * The SDK parses the document and returns it in the form of a + * DOM document. The application is responsible for freeing the DOM document. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: Either \b url or \b xmlDoc + * is not a valid pointer. + * \li \c UPNP_E_INVALID_DESC: The XML document was not + * found or it does not contain a valid XML description. + * \li \c UPNP_E_INVALID_URL: The \b url is not a valid + * URL. + * \li \c UPNP_E_OUTOF_MEMORY: There are insufficient resources to + * download the XML document. + * \li \c UPNP_E_NETWORK_ERROR: A network error occurred. + * \li \c UPNP_E_SOCKET_WRITE: An error or timeout occurred writing + * to a socket. + * \li \c UPNP_E_SOCKET_READ: An error or timeout occurred reading + * from a socket. + * \li \c UPNP_E_SOCKET_BIND: An error occurred binding a socket. + * \li \c UPNP_E_SOCKET_CONNECT: An error occurred connecting the + * socket. + * \li \c UPNP_E_OUTOF_SOCKET: Too many sockets are currently + * allocated. + */ +EXPORT_SPEC int UpnpDownloadXmlDoc( + /*! [in] URL of the XML document. */ + const char *url, + /*! [out] A pointer in which to store the XML document. */ + IXML_Document **xmlDoc); + +/*! @} Control Point HTTP API */ + +/****************************************************************************** + ****************************************************************************** + * * + * W E B S E R V E R A P I * + * * + ****************************************************************************** + ******************************************************************************/ + +/*! + * \name Web Server API + * + * @{ + */ + +/*! + * \brief Sets the document root directory for the internal web server. + * + * This directory is considered the root directory (i.e. "/") of the web server. + * + * This function also activates or deactivates the web server. To disable the + * web server, pass \c NULL for \b rootDir; to activate, pass a valid directory + * string. + * + * \note This function is not available when the web server is not compiled + * into the UPnP Library. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b rootDir is an invalid directory. + */ +EXPORT_SPEC int UpnpSetWebServerRootDir( + /*! [in] Path of the root directory of the web server. */ + const char *rootDir); + +/*! + * \brief The type of handle returned by the web server for open requests. + */ +typedef void *UpnpWebFileHandle; + +/*! + * \brief Get-info callback function prototype. + */ +typedef int (*VDCallback_GetInfo)( + /*! [in] The name of the file to query. */ + const char *filename, + /*! [out] Pointer to a structure to store the information on the file. */ +#if UPNP_VERSION < 10800 + struct File_Info *info +#else + UpnpFileInfo *info +#endif /* UPNP_VERSION < 10800 */ + ); + +/*! + * \brief Sets the get_info callback function to be used to access a virtual + * directory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b callback is not a valid pointer. + */ +EXPORT_SPEC int UpnpVirtualDir_set_GetInfoCallback(VDCallback_GetInfo callback); + +/*! + * \brief Open callback function prototype. + */ +typedef UpnpWebFileHandle (*VDCallback_Open)( + /*! [in] The name of the file to open. */ + const char *filename, + /*! [in] The mode in which to open the file. + * Valid values are \c UPNP_READ or \c UPNP_WRITE. */ + enum UpnpOpenFileMode Mode); + +/*! + * \brief Sets the open callback function to be used to access a virtual + * directory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b callback is not a valid pointer. + */ +EXPORT_SPEC int UpnpVirtualDir_set_OpenCallback(VDCallback_Open callback); + +/*! + * \brief Read callback function prototype. + */ +typedef int (*VDCallback_Read)( + /*! [in] The handle of the file to read. */ + UpnpWebFileHandle fileHnd, + /*! [out] The buffer in which to place the data. */ + char *buf, + /*! [in] The size of the buffer (i.e. the number of bytes to read). */ + size_t buflen); + +/*! + * \brief Sets the read callback function to be used to access a virtual + * directory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b callback is not a valid pointer. + */ +EXPORT_SPEC int UpnpVirtualDir_set_ReadCallback(VDCallback_Read callback); + +/*! + * \brief Write callback function prototype. + */ +typedef int (*VDCallback_Write)( + /*! [in] The handle of the file to write. */ + UpnpWebFileHandle fileHnd, + /*! [in] The buffer with the bytes to write. */ + char *buf, + /*! [in] The number of bytes to write. */ + size_t buflen); + +/*! + * \brief Sets the write callback function to be used to access a virtual + * directory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b callback is not a valid pointer. + */ +EXPORT_SPEC int UpnpVirtualDir_set_WriteCallback(VDCallback_Write callback); + +/*! + * \brief Seek callback function prototype. + */ +typedef int (*VDCallback_Seek) ( + /*! [in] The handle of the file to move the file pointer. */ + UpnpWebFileHandle fileHnd, + /*! [in] The number of bytes to move in the file. Positive values + * move foward and negative values move backward. Note that + * this must be positive if the \b origin is \c SEEK_SET. */ + off_t offset, + /*! [in] The position to move relative to. It can be \c SEEK_CUR + * to move relative to the current position, \c SEEK_END to + * move relative to the end of the file, or \c SEEK_SET to + * specify an absolute offset. */ + int origin); + +/*! + * \brief Sets the seek callback function to be used to access a virtual + * directory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b callback is not a valid pointer. + */ +EXPORT_SPEC int UpnpVirtualDir_set_SeekCallback(VDCallback_Seek callback); + +/*! + * \brief Close callback function prototype. + */ +typedef int (*VDCallback_Close)( + /*! [in] The handle of the file to close. */ + UpnpWebFileHandle fileHnd); + +/*! + * \brief Sets the close callback function to be used to access a virtual + * directory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b callback is not a valid pointer. + */ +EXPORT_SPEC int UpnpVirtualDir_set_CloseCallback(VDCallback_Close callback); + +/*! + * \brief The {\bf UpnpVirtualDirCallbacks} structure contains the pointers to + * file-related callback functions a device application can register to + * virtualize URLs. + */ +struct UpnpVirtualDirCallbacks +{ + VDCallback_GetInfo get_info; + VDCallback_Open open; + VDCallback_Read read; + VDCallback_Write write; + VDCallback_Seek seek; + VDCallback_Close close; +}; + +/*! + * \brief Enables or disables the webserver. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b enable is not valid. + */ +EXPORT_SPEC int UpnpEnableWebserver( + /*! [in] \c TRUE to enable, \c FALSE to disable. */ + int enable); + +/*! + * \brief Returns \c TRUE if the webserver is enabled, or \c FALSE if it is not. + * + * \return An integer representing one of the following: + * \li \c TRUE: The webserver is enabled. + * \li \c FALSE: The webserver is not enabled + */ +EXPORT_SPEC int UpnpIsWebserverEnabled(void); + +/*! + * \brief Sets the callback functions to be used to access a virtual directory. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_PARAM: one of the callbacks is not valid. + */ +EXPORT_SPEC int UpnpSetVirtualDirCallbacks( + /*! [in] A structure that contains the callback functions. */ + struct UpnpVirtualDirCallbacks *callbacks ); + +/*! + * \brief Adds a virtual directory mapping. + * + * All webserver requests containing the given directory are read using + * functions contained in a \b VirtualDirCallbacks structure registered + * via \b UpnpSetVirtualDirCallbacks. + * + * \note This function is not available when the web server is not + * compiled into the UPnP Library. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b dirName is not valid. + */ +EXPORT_SPEC int UpnpAddVirtualDir( + /*! [in] The name of the new directory mapping to add. */ + const char *dirName); + +/*! + * \brief Removes a virtual directory mapping made with \b UpnpAddVirtualDir. + * + * \return An integer representing one of the following: + * \li \c UPNP_E_SUCCESS: The operation completed successfully. + * \li \c UPNP_E_INVALID_ARGUMENT: \b dirName is not valid. + */ +EXPORT_SPEC int UpnpRemoveVirtualDir( + /*! [in] The name of the virtual directory mapping to remove. */ + const char *dirName); + +/*! + * \brief Removes all virtual directory mappings. + */ +EXPORT_SPEC void UpnpRemoveAllVirtualDirs(void); + +/* @} Web Server API */ + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +/* @} UPnPAPI UPnP API */ + +#endif /* UPNP_H */ diff --git a/1_6.h12_dev/render/include/upnp/upnptools.h b/1_6.h12_dev/render/include/upnp/upnptools.h new file mode 100644 index 0000000..383536f --- /dev/null +++ b/1_6.h12_dev/render/include/upnp/upnptools.h @@ -0,0 +1,290 @@ +/******************************************************************************* + * + * Copyright (c) 2000-2003 Intel Corporation + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * * Neither name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ******************************************************************************/ + + +#ifndef UPNP_TOOLS_H +#define UPNP_TOOLS_H + + +/*! + * \file + * + * \defgroup UPnPTools Optional Tool API + * + * \brief Additional, optional utility API that can be helpful in writing + * applications. + * + * This additional API can be compiled out in order to save code size in the + * library. Refer to the file README for details. + * + * @{ + */ + + +#include "ixml.h" /* for IXML_Document */ +#include "upnpconfig.h" /* for UPNP_HAVE_TOOLS */ + + +/* Function declarations only if tools compiled into the library */ +#if UPNP_HAVE_TOOLS + + +#ifdef __cplusplus +extern "C" { +#endif + + +/*! + * \brief Converts an SDK error code into a string error message suitable for + * display. The memory returned from this function should NOT be freed. + * + * \return An ASCII text string representation of the error message associated + * with the error code or the string "Unknown error code" + */ +EXPORT_SPEC const char *UpnpGetErrorMessage( + /*! [in] The SDK error code to convert. */ + int errorcode); + + +/*! + * \brief Combines a base URL and a relative URL into a single absolute URL. + * + * The memory for \b AbsURL needs to be allocated by the caller and must + * be large enough to hold the \b BaseURL and \b RelURL combined. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: \b RelURL is NULL. + * \li UPNP_E_INVALID_URL: The \b BaseURL / \b RelURL + * combination does not form a valid URL. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpResolveURL( + /*! [in] The base URL to combine. */ + const char *BaseURL, + /*! [in] The relative URL to \b BaseURL. */ + const char *RelURL, + /*! [out] A pointer to a buffer to store the absolute URL. */ + char *AbsURL); + + +/*! + * \brief Combines a base URL and a relative URL into a single absolute URL. + * + * The memory for \b AbsURL becomes owned by the caller and should be freed + * later. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: \b RelURL is NULL. + * \li UPNP_E_INVALID_URL: The \b BaseURL / \b RelURL + * combination does not form a valid URL. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpResolveURL2( + /*! [in] The base URL to combine. */ + const char *BaseURL, + /*! [in] The relative URL to \b BaseURL. */ + const char *RelURL, + /*! [out] A pointer to a pointer to a buffer to store the + * absolute URL. Must be freed later by the caller. */ + char **AbsURL); + + +/*! + * \brief Creates an action request packet based on its input parameters + * (status variable name and value pair). + * + * Any number of input parameters can be passed to this function but every + * input variable name should have a matching value argument. + * + * It is a wrapper function that calls makeAction() function to create the + * action request. + * + * \return The action node of \b Upnp_Document type or NULL if the + * operation failed. + */ +EXPORT_SPEC IXML_Document *UpnpMakeAction( + /*! [in] Name of the action request or response. */ + const char *ActionName, + /*! [in] The service type. */ + const char *ServType, + /*! [in] Number of argument pairs to be passed. */ + int NumArg, + /*! [in] pointer to the first argument. */ + const char *Arg, + /*! [in] Argument list. */ + ...); + + +/*! + * \brief Ceates an action response packet based on its output parameters + * (status variable name and value pair). + * + * Any number of input parameters can be passed to this function but every + * output variable name should have a matching value argument. + * + * It is a wrapper function that calls makeAction() function to create the + * action request. + * + * \return The action node of \b Upnp_Document type or NULL if the + * operation failed. + */ +EXPORT_SPEC IXML_Document *UpnpMakeActionResponse( + /*! [in] The action name. */ + const char *ActionName, + /*! [in] The service type.. */ + const char *ServType, + /*! [in] The number of argument pairs passed. */ + int NumArg, + /*! [in] The status variable name and value pair. */ + const char *Arg, + /*! [in] Other status variable name and value pairs. */ + ...); + + +/*! + * \brief Adds the argument in the action request. + * + * This API is specially suitable inside a loop to add any number input + * parameters into an existing action. If no action document exists in the + * beginning then a Upnp_Document variable initialized with NULL + * should be passed as a parameter. + * + * It is a wrapper function that calls addToAction() function to add the + * argument in the action request. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: One or more of the parameters are invalid. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpAddToAction( + /*! [in,out] A pointer to store the action document node. */ + IXML_Document **ActionDoc, + /*! [in] The action name. */ + const char *ActionName, + /*! [in] The service type. */ + const char *ServType, + /*! [in] The status variable name. */ + const char *ArgName, + /*! [in] The status variable value. */ + const char *ArgVal); + + +/*! + * \brief Creates an action response packet based on its output parameters + * (status variable name and value pair). + * + * This API is especially suitable inside a loop to add any number of input + * parameters into an existing action response. If no action document exists + * in the beginning, a \b Upnp_Document variable initialized with NULL + * should be passed as a parameter. + * + * It is a wrapper function that calls addToAction() function to add the + * argument in the action request. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: One or more of the parameters are invalid. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpAddToActionResponse( + /*! [in,out] Pointer to a document to store the action document node. */ + IXML_Document **ActionResponse, + /*! [in] The action name. */ + const char *ActionName, + /*! [in] The service type. */ + const char *ServType, + /*! [in] The status variable name. */ + const char *ArgName, + /*! [in] The status variable value. */ + const char *ArgVal); + + +/*! + * \brief Creates a property set message packet. + * + * Any number of input parameters can be passed to this function but every + * input variable name should have a matching value input argument. + * + * \return NULL on failure, or the property-set document node. + */ +EXPORT_SPEC IXML_Document *UpnpCreatePropertySet( + /*! [in] The number of argument pairs passed. */ + int NumArg, + /*! [in] The status variable name and value pair. */ + const char *Arg, + /*! [in] Variable sized list with the rest of the parameters. */ + ...); + + +/*! + * \brief Can be used when an application needs to transfer the status of many + * variables at once. + * + * It can be used (inside a loop) to add some extra status variables into an + * existing property set. If the application does not already have a property + * set document, the application should create a variable initialized with + * NULL and pass that as the first parameter. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: One or more of the parameters are invalid. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpAddToPropertySet( + /*! [in,out] A pointer to the document containing the property set document node. */ + IXML_Document **PropSet, + /*! [in] The status variable name. */ + const char *ArgName, + /*! [in] The status variable value. */ + const char *ArgVal); + + +#ifdef __cplusplus +} +#endif + + +/*! @} */ + + +#endif /* UPNP_HAVE_TOOLS */ + + +#endif /* UPNP_TOOLS_H */ + diff --git a/1_6.h12_dev/render/include/upnpconfig.h b/1_6.h12_dev/render/include/upnpconfig.h new file mode 100644 index 0000000..ae5377d --- /dev/null +++ b/1_6.h12_dev/render/include/upnpconfig.h @@ -0,0 +1,136 @@ +/* upnp/inc/upnpconfig.h. Generated from upnpconfig.h.in by configure. */ +/* -*- C -*- */ +/******************************************************************************* + * + * Copyright (c) 2006 R茅mi Turboult + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * * Neither name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ******************************************************************************/ + +#ifndef UPNP_CONFIG_H +#define UPNP_CONFIG_H + + +/*************************************************************************** + * Library version + ***************************************************************************/ + +/** The library version (string) e.g. "1.3.0" */ +#define UPNP_VERSION_STRING "1.6.19" + +/** Major version of the library */ +#define UPNP_VERSION_MAJOR 1 + +/** Minor version of the library */ +#define UPNP_VERSION_MINOR 6 + +/** Patch version of the library */ +#define UPNP_VERSION_PATCH 19 + +/** The library version (numeric) e.g. 10300 means version 1.3.0 */ +#define UPNP_VERSION \ + ((UPNP_VERSION_MAJOR * 100 + UPNP_VERSION_MINOR) * 100 + UPNP_VERSION_PATCH) + + + +/*************************************************************************** + * Large file support + ***************************************************************************/ + +/** File Offset size */ +#define _FILE_OFFSET_BITS 64 + +/** Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ +/* #undef _LARGEFILE_SOURCE */ + +/** Large files support */ +#define _LARGE_FILE_SOURCE /**/ + +/*************************************************************************** + * Library optional features + ***************************************************************************/ + +/* + * The following defines can be tested in order to know which + * optional features have been included in the installed library. + */ + + +/** Defined to 1 if the library has been compiled with DEBUG enabled + * (i.e. configure --enable-debug) : file is available */ +/* #undef UPNP_HAVE_DEBUG */ + + +/** Defined to 1 if the library has been compiled with client API enabled + * (i.e. configure --enable-client) */ +#define UPNP_HAVE_CLIENT 1 + + +/** Defined to 1 if the library has been compiled with device API enabled + * (i.e. configure --enable-device) */ +#define UPNP_HAVE_DEVICE 1 + + +/** Defined to 1 if the library has been compiled with integrated web server + * (i.e. configure --enable-webserver --enable-device) */ +#define UPNP_HAVE_WEBSERVER 1 + + +/** Defined to 1 if the library has been compiled with the SSDP part enabled + * (i.e. configure --enable-ssdp) */ +#define UPNP_HAVE_SSDP 1 + + +/** Defined to 1 if the library has been compiled with optional SSDP headers + * support (i.e. configure --enable-optssdp) */ +#define UPNP_HAVE_OPTSSDP 1 + + +/** Defined to 1 if the library has been compiled with the SOAP part enabled + * (i.e. configure --enable-soap) */ +#define UPNP_HAVE_SOAP 1 + + +/** Defined to 1 if the library has been compiled with the GENA part enabled + * (i.e. configure --enable-gena) */ +#define UPNP_HAVE_GENA 1 + + +/** Defined to 1 if the library has been compiled with helper API + * (i.e. configure --enable-tools) : file is available */ +#define UPNP_HAVE_TOOLS 1 + +/** Defined to 1 if the library has been compiled with ipv6 support + * (i.e. configure --enable-ipv6) */ +/* #undef UPNP_ENABLE_IPV6 */ + +/** Defined to 1 if the library has been compiled with unspecified SERVER + * header (i.e. configure --enable-unspecified_server) */ +/* #undef UPNP_ENABLE_UNSPECIFIED_SERVER */ + +#endif /* UPNP_CONFIG_H */ + diff --git a/1_6.h12_dev/render/include/upnpdebug.h b/1_6.h12_dev/render/include/upnpdebug.h new file mode 100644 index 0000000..45a86bb --- /dev/null +++ b/1_6.h12_dev/render/include/upnpdebug.h @@ -0,0 +1,292 @@ +/******************************************************************************* + * + * Copyright (c) 2000-2003 Intel Corporation + * Copyright (c) 2006 R茅mi Turboult + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * - Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * - Neither name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ******************************************************************************/ + +#ifndef UPNP_DEBUG_H +#define UPNP_DEBUG_H + +/*! + * \file + */ + +#include "ThreadPool.h" +#include "upnpconfig.h" +#include "UpnpGlobal.h" /* for UPNP_INLINE */ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/*! \name Other debugging features + * + * The UPnP SDK contains other features to aid in debugging. + */ +/*@{*/ + +/*! \name Upnp_LogLevel + * The user has the option to select 4 different types of debugging levels, + * see \c UpnpSetLogLevel. + * The critical level will show only those messages + * which can halt the normal processing of the library, like memory + * allocation errors. The remaining three levels are just for debugging + * purposes. Packet level will display all the incoming and outgoing + * packets that are flowing between the control point and the device. + * Info Level displays the other important operational information + * regarding the working of the library. If the user selects All, + * then the library displays all the debugging information that it has. + * \li \c UPNP_CRITICAL [0] + * \li \c UPNP_PACKET [1] + * \li \c UPNP_INFO [2] + * \li \c UPNP_ALL [3] + */ +typedef enum Upnp_Module { + SSDP, + SOAP, + GENA, + TPOOL, + MSERV, + DOM, + API, + HTTP +} Dbg_Module; + +/*@{*/ +typedef enum Upnp_LogLevel_e { + UPNP_CRITICAL, + UPNP_PACKET, + UPNP_INFO, + UPNP_ALL +} Upnp_LogLevel; +/*@}*/ + +/*! + * Default log level : see \c Upnp_LogLevel + */ +#define UPNP_DEFAULT_LOG_LEVEL UPNP_ALL + +/*! + * \brief Initialize the log files. + * + * \return -1 if fails or UPNP_E_SUCCESS if succeeds. + */ +#ifdef DEBUG +int UpnpInitLog(void); +#else +static UPNP_INLINE int UpnpInitLog(void) +{ + return UPNP_E_SUCCESS; +} +#endif +/*! + * \brief Set the log level (see \c Upnp_LogLevel). + */ +#ifdef DEBUG +void UpnpSetLogLevel( + /*! [in] Log level. */ + Upnp_LogLevel log_level); +#else +static UPNP_INLINE void UpnpSetLogLevel(Upnp_LogLevel log_level) +{ + return; + log_level = log_level; +} +#endif + +/*! + * \brief Closes the log files. + */ +#ifdef DEBUG +void UpnpCloseLog(void); +#else +static UPNP_INLINE void UpnpCloseLog(void) +{ +} +#endif + +/*! + * \brief Set the name for error and information files, respectively. + */ +#ifdef DEBUG +void UpnpSetLogFileNames( + /*! [in] Name of the error file. */ + const char *ErrFileName, + /*! [in] Name of the information file. */ + const char *InfoFileName); +#else +static UPNP_INLINE void UpnpSetLogFileNames(const char *ErrFileName, + const char *InfoFileName) +{ + return; + ErrFileName = ErrFileName; + InfoFileName = InfoFileName; +} +#endif + +/*! + * \brief Check if the module is turned on for debug and returns the file + * descriptor corresponding to the debug level + * + * \return NULL if the module is turn off for debug otheriwse returns the + * right file descriptor. + */ +#ifdef DEBUG +FILE *UpnpGetDebugFile( + /*! [in] The level of the debug logging. It will decide whether debug + * statement will go to standard output, or any of the log files. */ + Upnp_LogLevel level, + /*! [in] debug will go in the name of this module. */ + Dbg_Module module); +#else +static UPNP_INLINE FILE *UpnpGetDebugFile(Upnp_LogLevel level, Dbg_Module module) +{ + return NULL; + level = level; + module = module; +} +#endif + +/*! + * \brief Returns true if debug output should be done in this module. + * + * \return Nonzero value if true, zero if false. + */ +#ifdef DEBUG +int DebugAtThisLevel( + /*! [in] The level of the debug logging. It will decide whether debug + * statement will go to standard output, or any of the log files. */ + Upnp_LogLevel DLevel, + /*! [in] Debug will go in the name of this module. */ + Dbg_Module Module); +#else +static UPNP_INLINE int DebugAtThisLevel(Upnp_LogLevel DLevel, Dbg_Module Module) +{ + return 0; + DLevel = DLevel; + Module = Module; +} +#endif + +/*! + * \brief Prints the debug statement either on the standard output or log file + * along with the information from where this debug statement is coming. + */ +#ifdef DEBUG +void UpnpPrintf( + /*! [in] The level of the debug logging. It will decide whether debug + * statement will go to standard output, or any of the log files. */ + Upnp_LogLevel DLevel, + /*! [in] debug will go in the name of this module. */ + Dbg_Module Module, + /*! [in] Name of the file from where debug statement is coming. */ + const char *DbgFileName, + /*! [in] Line number of the file from where debug statement is coming. */ + int DbgLineNo, + /*! [in] Printf like format specification. */ + const char *FmtStr, + /*! [in] Printf like Variable number of arguments that will go in the + * debug statement. */ + ...) +#if (__GNUC__ >= 3) + /* This enables printf like format checking by the compiler. */ + __attribute__ ((format(__printf__, 5, 6))) +#endif + ; +#else /* DEBUG */ +static UPNP_INLINE void UpnpPrintf(Upnp_LogLevel DLevel, Dbg_Module Module, + const char *DbgFileName, int DbgLineNo, const char *FmtStr, ...) +{ + return; + DLevel = DLevel; + Module = Module; + DbgFileName = DbgFileName; + DbgLineNo = DbgLineNo; + FmtStr = FmtStr; +} +#endif /* DEBUG */ + +/*! + * \brief Writes the file name and file number from where debug statement is + * coming to the log file. + */ +#ifdef DEBUG +void UpnpDisplayFileAndLine( + /*! [in] File descriptor where line number and file name will be + * written. */ + FILE * fd, + /*! [in] Name of the file. */ + const char *DbgFileName, + /*! [in] Line number of the file. */ + int DbgLineNo); +#else +static UPNP_INLINE void UpnpDisplayFileAndLine(FILE *fd, + const char *DbgFileName, int DbgLineNo) +{ + return; + fd = fd; + DbgFileName = DbgFileName; + DbgLineNo = DbgLineNo; +} +#endif + +/*! + * \brief Writes the buffer in the file as per the requested banner + */ +#ifdef DEBUG +void UpnpDisplayBanner( + /*! [in] file descriptor where the banner will be written. */ + FILE * fd, + /*! [in] The buffer that will be written. */ + const char **lines, + /*! [in] Size of the buffer. */ + size_t size, + /*! [in] This parameter provides the width of the banner. */ + size_t starlength); +#else +static UPNP_INLINE void UpnpDisplayBanner(FILE *fd, const char **lines, + size_t size, int starlength) +{ + return; + fd = fd; + lines = lines; + size = size; + starlength = starlength; +} +#endif + +/*@}*/ + +#ifdef __cplusplus +} +#endif + +#endif /* UPNP_DEBUG_H */ diff --git a/1_6.h12_dev/render/include/upnptools.h b/1_6.h12_dev/render/include/upnptools.h new file mode 100644 index 0000000..383536f --- /dev/null +++ b/1_6.h12_dev/render/include/upnptools.h @@ -0,0 +1,290 @@ +/******************************************************************************* + * + * Copyright (c) 2000-2003 Intel Corporation + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * * Neither name of Intel Corporation nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + ******************************************************************************/ + + +#ifndef UPNP_TOOLS_H +#define UPNP_TOOLS_H + + +/*! + * \file + * + * \defgroup UPnPTools Optional Tool API + * + * \brief Additional, optional utility API that can be helpful in writing + * applications. + * + * This additional API can be compiled out in order to save code size in the + * library. Refer to the file README for details. + * + * @{ + */ + + +#include "ixml.h" /* for IXML_Document */ +#include "upnpconfig.h" /* for UPNP_HAVE_TOOLS */ + + +/* Function declarations only if tools compiled into the library */ +#if UPNP_HAVE_TOOLS + + +#ifdef __cplusplus +extern "C" { +#endif + + +/*! + * \brief Converts an SDK error code into a string error message suitable for + * display. The memory returned from this function should NOT be freed. + * + * \return An ASCII text string representation of the error message associated + * with the error code or the string "Unknown error code" + */ +EXPORT_SPEC const char *UpnpGetErrorMessage( + /*! [in] The SDK error code to convert. */ + int errorcode); + + +/*! + * \brief Combines a base URL and a relative URL into a single absolute URL. + * + * The memory for \b AbsURL needs to be allocated by the caller and must + * be large enough to hold the \b BaseURL and \b RelURL combined. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: \b RelURL is NULL. + * \li UPNP_E_INVALID_URL: The \b BaseURL / \b RelURL + * combination does not form a valid URL. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpResolveURL( + /*! [in] The base URL to combine. */ + const char *BaseURL, + /*! [in] The relative URL to \b BaseURL. */ + const char *RelURL, + /*! [out] A pointer to a buffer to store the absolute URL. */ + char *AbsURL); + + +/*! + * \brief Combines a base URL and a relative URL into a single absolute URL. + * + * The memory for \b AbsURL becomes owned by the caller and should be freed + * later. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: \b RelURL is NULL. + * \li UPNP_E_INVALID_URL: The \b BaseURL / \b RelURL + * combination does not form a valid URL. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpResolveURL2( + /*! [in] The base URL to combine. */ + const char *BaseURL, + /*! [in] The relative URL to \b BaseURL. */ + const char *RelURL, + /*! [out] A pointer to a pointer to a buffer to store the + * absolute URL. Must be freed later by the caller. */ + char **AbsURL); + + +/*! + * \brief Creates an action request packet based on its input parameters + * (status variable name and value pair). + * + * Any number of input parameters can be passed to this function but every + * input variable name should have a matching value argument. + * + * It is a wrapper function that calls makeAction() function to create the + * action request. + * + * \return The action node of \b Upnp_Document type or NULL if the + * operation failed. + */ +EXPORT_SPEC IXML_Document *UpnpMakeAction( + /*! [in] Name of the action request or response. */ + const char *ActionName, + /*! [in] The service type. */ + const char *ServType, + /*! [in] Number of argument pairs to be passed. */ + int NumArg, + /*! [in] pointer to the first argument. */ + const char *Arg, + /*! [in] Argument list. */ + ...); + + +/*! + * \brief Ceates an action response packet based on its output parameters + * (status variable name and value pair). + * + * Any number of input parameters can be passed to this function but every + * output variable name should have a matching value argument. + * + * It is a wrapper function that calls makeAction() function to create the + * action request. + * + * \return The action node of \b Upnp_Document type or NULL if the + * operation failed. + */ +EXPORT_SPEC IXML_Document *UpnpMakeActionResponse( + /*! [in] The action name. */ + const char *ActionName, + /*! [in] The service type.. */ + const char *ServType, + /*! [in] The number of argument pairs passed. */ + int NumArg, + /*! [in] The status variable name and value pair. */ + const char *Arg, + /*! [in] Other status variable name and value pairs. */ + ...); + + +/*! + * \brief Adds the argument in the action request. + * + * This API is specially suitable inside a loop to add any number input + * parameters into an existing action. If no action document exists in the + * beginning then a Upnp_Document variable initialized with NULL + * should be passed as a parameter. + * + * It is a wrapper function that calls addToAction() function to add the + * argument in the action request. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: One or more of the parameters are invalid. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpAddToAction( + /*! [in,out] A pointer to store the action document node. */ + IXML_Document **ActionDoc, + /*! [in] The action name. */ + const char *ActionName, + /*! [in] The service type. */ + const char *ServType, + /*! [in] The status variable name. */ + const char *ArgName, + /*! [in] The status variable value. */ + const char *ArgVal); + + +/*! + * \brief Creates an action response packet based on its output parameters + * (status variable name and value pair). + * + * This API is especially suitable inside a loop to add any number of input + * parameters into an existing action response. If no action document exists + * in the beginning, a \b Upnp_Document variable initialized with NULL + * should be passed as a parameter. + * + * It is a wrapper function that calls addToAction() function to add the + * argument in the action request. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: One or more of the parameters are invalid. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpAddToActionResponse( + /*! [in,out] Pointer to a document to store the action document node. */ + IXML_Document **ActionResponse, + /*! [in] The action name. */ + const char *ActionName, + /*! [in] The service type. */ + const char *ServType, + /*! [in] The status variable name. */ + const char *ArgName, + /*! [in] The status variable value. */ + const char *ArgVal); + + +/*! + * \brief Creates a property set message packet. + * + * Any number of input parameters can be passed to this function but every + * input variable name should have a matching value input argument. + * + * \return NULL on failure, or the property-set document node. + */ +EXPORT_SPEC IXML_Document *UpnpCreatePropertySet( + /*! [in] The number of argument pairs passed. */ + int NumArg, + /*! [in] The status variable name and value pair. */ + const char *Arg, + /*! [in] Variable sized list with the rest of the parameters. */ + ...); + + +/*! + * \brief Can be used when an application needs to transfer the status of many + * variables at once. + * + * It can be used (inside a loop) to add some extra status variables into an + * existing property set. If the application does not already have a property + * set document, the application should create a variable initialized with + * NULL and pass that as the first parameter. + * + * \return An integer representing one of the following: + * \li UPNP_E_SUCCESS: The operation completed successfully. + * \li UPNP_E_INVALID_PARAM: One or more of the parameters are invalid. + * \li UPNP_E_OUTOF_MEMORY: Insufficient resources exist to + * complete this operation. + */ +EXPORT_SPEC int UpnpAddToPropertySet( + /*! [in,out] A pointer to the document containing the property set document node. */ + IXML_Document **PropSet, + /*! [in] The status variable name. */ + const char *ArgName, + /*! [in] The status variable value. */ + const char *ArgVal); + + +#ifdef __cplusplus +} +#endif + + +/*! @} */ + + +#endif /* UPNP_HAVE_TOOLS */ + + +#endif /* UPNP_TOOLS_H */ + diff --git a/1_6.h12_dev/render/lib/libixml.so b/1_6.h12_dev/render/lib/libixml.so new file mode 120000 index 0000000..cb07c9b --- /dev/null +++ b/1_6.h12_dev/render/lib/libixml.so @@ -0,0 +1 @@ +libixml.so.2.0.8 \ No newline at end of file diff --git a/1_6.h12_dev/render/lib/libixml.so.2 b/1_6.h12_dev/render/lib/libixml.so.2 new file mode 120000 index 0000000..cb07c9b --- /dev/null +++ b/1_6.h12_dev/render/lib/libixml.so.2 @@ -0,0 +1 @@ +libixml.so.2.0.8 \ No newline at end of file diff --git a/1_6.h12_dev/render/lib/libixml.so.2.0.8 b/1_6.h12_dev/render/lib/libixml.so.2.0.8 new file mode 100755 index 0000000..10f960c Binary files /dev/null and b/1_6.h12_dev/render/lib/libixml.so.2.0.8 differ diff --git a/1_6.h12_dev/render/lib/libupnp.so b/1_6.h12_dev/render/lib/libupnp.so new file mode 120000 index 0000000..bcbb20e --- /dev/null +++ b/1_6.h12_dev/render/lib/libupnp.so @@ -0,0 +1 @@ +libupnp.so.6.3.3 \ No newline at end of file diff --git a/1_6.h12_dev/render/lib/libupnp.so.6 b/1_6.h12_dev/render/lib/libupnp.so.6 new file mode 120000 index 0000000..bcbb20e --- /dev/null +++ b/1_6.h12_dev/render/lib/libupnp.so.6 @@ -0,0 +1 @@ +libupnp.so.6.3.3 \ No newline at end of file diff --git a/1_6.h12_dev/render/lib/libupnp.so.6.3.3 b/1_6.h12_dev/render/lib/libupnp.so.6.3.3 new file mode 100755 index 0000000..9c75074 Binary files /dev/null and b/1_6.h12_dev/render/lib/libupnp.so.6.3.3 differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-clear.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-clear.Plo new file mode 100644 index 0000000..346e77c --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-clear.Plo @@ -0,0 +1,85 @@ +libuuid_la-clear.lo: clear.c \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h \ + uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h: + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-compare.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-compare.Plo new file mode 100644 index 0000000..95a1259 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-compare.Plo @@ -0,0 +1,84 @@ +libuuid_la-compare.lo: compare.c uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-copy.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-copy.Plo new file mode 100644 index 0000000..270f726 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-copy.Plo @@ -0,0 +1,78 @@ +libuuid_la-copy.lo: copy.c uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-gen_uuid.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-gen_uuid.Plo new file mode 100644 index 0000000..87ef390 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-gen_uuid.Plo @@ -0,0 +1,217 @@ +libuuid_la-gen_uuid.lo: gen_uuid.c \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/fcntl.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/fcntl.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/fcntl.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/fcntl.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/unistd.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/select.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/signal.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include-fixed/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include-fixed/syslimits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/internal_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/syslimits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/page.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/signal.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/signal.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/sigcontext.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/ucontext.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/user.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysconf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/capability.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/pathconf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/errno.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/errno.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/errno.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/errno.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/errno-base.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/stat.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stat.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/endian.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/endian.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/endian.h \ + all-io.h c.h config.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdlib.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/alloca.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/strings.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/memory.h \ + uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + uuidd.h randutils.h + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/fcntl.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/fcntl.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/fcntl.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/fcntl.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/unistd.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/select.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/signal.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include-fixed/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include-fixed/syslimits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/internal_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/syslimits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/page.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/signal.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/signal.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/sigcontext.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/ucontext.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/user.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysconf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/capability.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/pathconf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/errno.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/errno.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/errno.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/errno.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/errno-base.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/stat.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stat.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/endian.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/endian.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/endian.h: + +all-io.h: + +c.h: + +config.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdlib.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/alloca.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/strings.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/memory.h: + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +uuidd.h: + +randutils.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-isnull.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-isnull.Plo new file mode 100644 index 0000000..0e031f6 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-isnull.Plo @@ -0,0 +1,78 @@ +libuuid_la-isnull.lo: isnull.c uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-pack.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-pack.Plo new file mode 100644 index 0000000..1f0d17e --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-pack.Plo @@ -0,0 +1,85 @@ +libuuid_la-pack.lo: pack.c \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h \ + uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h: + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-parse.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-parse.Plo new file mode 100644 index 0000000..d752998 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-parse.Plo @@ -0,0 +1,106 @@ +libuuid_la-parse.lo: parse.c \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdlib.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/alloca.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/strings.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/memory.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/ctype.h \ + uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdlib.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/alloca.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/strings.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/memory.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/ctype.h: + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-randutils.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-randutils.Plo new file mode 100644 index 0000000..435911f --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-randutils.Plo @@ -0,0 +1,187 @@ +libuuid_la-randutils.lo: randutils.c \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/unistd.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/select.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/signal.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include-fixed/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include-fixed/syslimits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/internal_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/syslimits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/page.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/signal.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/signal.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/sigcontext.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/ucontext.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/user.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysconf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/capability.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/pathconf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/fcntl.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/fcntl.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/fcntl.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/fcntl.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdlib.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/alloca.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/strings.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/memory.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/syscall.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/errno.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/errno.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/errno.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/errno.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/errno-base.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/unistd.h \ + randutils.h + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/unistd.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/select.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/signal.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include-fixed/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include-fixed/syslimits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/internal_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/syslimits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/page.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/signal.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/signal.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/sigcontext.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/ucontext.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/user.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysconf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/capability.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/pathconf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/fcntl.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/fcntl.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/fcntl.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/fcntl.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdlib.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/alloca.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/strings.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/memory.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/syscall.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/errno.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/errno.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/errno.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/errno.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/errno-base.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/unistd.h: + +randutils.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-unpack.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-unpack.Plo new file mode 100644 index 0000000..6f01b72 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-unpack.Plo @@ -0,0 +1,85 @@ +libuuid_la-unpack.lo: unpack.c \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h \ + uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h: + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-unparse.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-unparse.Plo new file mode 100644 index 0000000..4c6d8b0 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-unparse.Plo @@ -0,0 +1,85 @@ +libuuid_la-unparse.lo: unparse.c \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h \ + uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + uuid.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h: + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +uuid.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-uuid_time.Plo b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-uuid_time.Plo new file mode 100644 index 0000000..2039f76 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/libuuid_la-uuid_time.Plo @@ -0,0 +1,103 @@ +libuuid_la-uuid_time.lo: uuid_time.c \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdlib.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/alloca.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/strings.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/memory.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h \ + uuidP.h \ + /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h \ + uuid.h + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdio.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/cdefs_elf.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/android/api-level.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdint.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/_wchar_limits.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/stddef.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/compiler.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/posix_types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/types.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/machine/kernel.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/sysmacros.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9/include/stdarg.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/stdlib.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/string.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/malloc.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/alloca.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/strings.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/memory.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/sys/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/linux/time.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm/siginfo.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/asm-generic/siginfo.h: + +uuidP.h: + +/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/include/inttypes.h: + +uuid.h: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.deps/test_uuid-test_uuid.Po b/1_6.h12_dev/render/libuuid-1.0.3/.deps/test_uuid-test_uuid.Po new file mode 100644 index 0000000..9ce06a8 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.deps/test_uuid-test_uuid.Po @@ -0,0 +1 @@ +# dummy diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.a b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.a new file mode 100644 index 0000000..9fb1e15 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.a differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.la b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.la new file mode 120000 index 0000000..ac02b0e --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.la @@ -0,0 +1 @@ +../libuuid.la \ No newline at end of file diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.lai b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.lai new file mode 100644 index 0000000..dd72753 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.lai @@ -0,0 +1,41 @@ +# libuuid.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libuuid.so.1' + +# Names of this library. +library_names='libuuid.so.1.0.0 libuuid.so.1 libuuid.so' + +# The name of the static archive. +old_library='libuuid.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libuuid. +current=1 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib' diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so new file mode 120000 index 0000000..efee1c0 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so @@ -0,0 +1 @@ +libuuid.so.1.0.0 \ No newline at end of file diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so.1 b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so.1 new file mode 120000 index 0000000..efee1c0 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so.1 @@ -0,0 +1 @@ +libuuid.so.1.0.0 \ No newline at end of file diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so.1.0.0 b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so.1.0.0 new file mode 100755 index 0000000..4c4c07b Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid.so.1.0.0 differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-clear.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-clear.o new file mode 100644 index 0000000..5bab833 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-clear.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-compare.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-compare.o new file mode 100644 index 0000000..76d1c51 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-compare.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-copy.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-copy.o new file mode 100644 index 0000000..cb21b05 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-copy.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-gen_uuid.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-gen_uuid.o new file mode 100644 index 0000000..c633346 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-gen_uuid.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-isnull.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-isnull.o new file mode 100644 index 0000000..1b621e6 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-isnull.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-pack.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-pack.o new file mode 100644 index 0000000..906b681 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-pack.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-parse.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-parse.o new file mode 100644 index 0000000..70d539f Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-parse.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-randutils.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-randutils.o new file mode 100644 index 0000000..32ee693 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-randutils.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-unpack.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-unpack.o new file mode 100644 index 0000000..8bd1214 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-unpack.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-unparse.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-unparse.o new file mode 100644 index 0000000..a33c147 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-unparse.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-uuid_time.o b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-uuid_time.o new file mode 100644 index 0000000..7b0c3ea Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/.libs/libuuid_la-uuid_time.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/COPYING b/1_6.h12_dev/render/libuuid-1.0.3/COPYING new file mode 100644 index 0000000..6935c28 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/COPYING @@ -0,0 +1,5 @@ +This library is free software; you can redistribute it and/or +modify it under the terms of the Modified BSD License. + +The complete text of the license is available at the +Documentation/licenses/COPYING.BSD-3 file. diff --git a/1_6.h12_dev/render/libuuid-1.0.3/Makefile b/1_6.h12_dev/render/libuuid-1.0.3/Makefile new file mode 100644 index 0000000..0b5e0b9 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/Makefile @@ -0,0 +1,1030 @@ +# Makefile.in generated by automake 1.13.4 from Makefile.am. +# Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + + + + + + +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/libuuid +pkgincludedir = $(includedir)/libuuid +pkglibdir = $(libdir)/libuuid +pkglibexecdir = $(libexecdir)/libuuid +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = x86_64-unknown-linux-gnu +host_triplet = arm-unknown-linux-androideabi +check_PROGRAMS = test_uuid$(EXEEXT) +subdir = . +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/configure $(am__configure_deps) \ + $(srcdir)/config.h.in $(srcdir)/uuid.pc.in depcomp \ + $(noinst_HEADERS) $(uuidinc_HEADERS) COPYING config.guess \ + config.sub install-sh missing ltmain.sh +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = uuid.pc +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ + "$(DESTDIR)$(uuidincdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = +libuuid_la_DEPENDENCIES = $(am__DEPENDENCIES_1) +am__objects_1 = +am_libuuid_la_OBJECTS = libuuid_la-clear.lo libuuid_la-compare.lo \ + libuuid_la-copy.lo libuuid_la-gen_uuid.lo libuuid_la-isnull.lo \ + libuuid_la-pack.lo libuuid_la-parse.lo libuuid_la-unpack.lo \ + libuuid_la-unparse.lo libuuid_la-uuid_time.lo \ + libuuid_la-randutils.lo $(am__objects_1) +libuuid_la_OBJECTS = $(am_libuuid_la_OBJECTS) +AM_V_lt = $(am__v_lt_$(V)) +am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) +am__v_lt_0 = --silent +am__v_lt_1 = +libuuid_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libuuid_la_CFLAGS) \ + $(CFLAGS) $(libuuid_la_LDFLAGS) $(LDFLAGS) -o $@ +am_test_uuid_OBJECTS = test_uuid-test_uuid.$(OBJEXT) +test_uuid_OBJECTS = $(am_test_uuid_OBJECTS) +test_uuid_DEPENDENCIES = libuuid.la $(am__DEPENDENCIES_1) +test_uuid_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_uuid_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_$(V)) +am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY)) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_$(V)) +am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_$(V)) +am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I. +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_$(V)) +am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_$(V)) +am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libuuid_la_SOURCES) $(test_uuid_SOURCES) +DIST_SOURCES = $(libuuid_la_SOURCES) $(test_uuid_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(pkgconfig_DATA) +HEADERS = $(noinst_HEADERS) $(uuidinc_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)config.h.in +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +CSCOPE = cscope +AM_RECURSIVE_TARGETS = cscope +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__post_remove_distdir = $(am__remove_distdir) +DIST_ARCHIVES = $(distdir).tar.gz +GZIP_ENV = --best +DIST_TARGETS = dist-gzip +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing aclocal-1.13 +AMTAR = $${TAR-tar} +AM_DEFAULT_VERBOSITY = 1 +AR = arm-linux-androideabi-ar +AUTOCONF = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing autoconf +AUTOHEADER = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing autoheader +AUTOMAKE = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing automake-1.13 +AWK = gawk +CC = arm-linux-androideabi-gcc +CCDEPMODE = depmode=gcc3 +CFLAGS = -g -O2 +CPP = arm-linux-androideabi-gcc -E +CPPFLAGS = +CYGPATH_W = echo +DEFS = -DHAVE_CONFIG_H +DEPDIR = .deps +DLLTOOL = false +DSYMUTIL = +DUMPBIN = +ECHO_C = +ECHO_N = -n +ECHO_T = +EGREP = /bin/grep -E +EXEEXT = +FGREP = /bin/grep -F +GREP = /bin/grep +INSTALL = /usr/bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_PROGRAM = ${INSTALL} +INSTALL_SCRIPT = ${INSTALL} +INSTALL_STRIP_PROGRAM = $(install_sh) -c -s +LD = arm-linux-androideabi-ld +LDFLAGS = +LIBOBJS = +LIBS = +LIBTOOL = $(SHELL) $(top_builddir)/libtool +LIBUUID_VERSION = 1.0.3 +LIBUUID_VERSION_INFO = 1:0:0 +LIPO = +LN_S = ln -s +LTLIBOBJS = +MAKEINFO = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing makeinfo +MANIFEST_TOOL = : +MKDIR_P = /bin/mkdir -p +NM = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B +NMEDIT = +OBJDUMP = arm-linux-androideabi-objdump +OBJEXT = o +OTOOL = +OTOOL64 = +PACKAGE = libuuid +PACKAGE_BUGREPORT = sloowfranklin@gmail.com +PACKAGE_NAME = libuuid +PACKAGE_STRING = libuuid 1.0.3 +PACKAGE_TARNAME = libuuid +PACKAGE_URL = +PACKAGE_VERSION = 1.0.3 +PATH_SEPARATOR = : +RANLIB = arm-linux-androideabi-ranlib +SED = /bin/sed +SET_MAKE = +SHELL = /bin/bash +SOCKET_LIBS = +STRIP = arm-linux-androideabi-strip +VERSION = 1.0.3 +abs_builddir = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3 +abs_srcdir = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3 +abs_top_builddir = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3 +abs_top_srcdir = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3 +ac_ct_AR = +ac_ct_CC = +ac_ct_DUMPBIN = +am__include = include +am__leading_dot = . +am__quote = +am__tar = $${TAR-tar} chof - "$$tardir" +am__untar = $${TAR-tar} xf - +bindir = ${exec_prefix}/bin +build = x86_64-unknown-linux-gnu +build_alias = +build_cpu = x86_64 +build_os = linux-gnu +build_vendor = unknown +builddir = . +datadir = ${datarootdir} +datarootdir = ${prefix}/share +docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} +dvidir = ${docdir} +exec_prefix = ${prefix} +host = arm-unknown-linux-androideabi +host_alias = arm-linux-androideabi +host_cpu = arm +host_os = linux-androideabi +host_vendor = unknown +htmldir = ${docdir} +includedir = ${prefix}/include +infodir = ${datarootdir}/info +install_sh = ${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/install-sh +libdir = ${exec_prefix}/lib +libexecdir = ${exec_prefix}/libexec +localedir = ${datarootdir}/locale +localstatedir = ${prefix}/var +mandir = ${datarootdir}/man +mkdir_p = $(MKDIR_P) +oldincludedir = /usr/include +pdfdir = ${docdir} +prefix = /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp +program_transform_name = s,x,x, +psdir = ${docdir} +sbindir = ${exec_prefix}/sbin +sharedstatedir = ${prefix}/com +srcdir = . +sysconfdir = ${prefix}/etc +target_alias = +top_build_prefix = +top_builddir = . +top_srcdir = . +test_uuid_SOURCES = test_uuid.c +test_uuid_LDADD = libuuid.la $(SOCKET_LIBS) +test_uuid_CFLAGS = -I$(top_srcdir) +EXTRA_DIST = uuid.pc.in +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = uuid.pc + +# includes +uuidincdir = $(includedir)/uuid +uuidinc_HEADERS = uuid.h +lib_LTLIBRARIES = libuuid.la +libuuid_la_SOURCES = \ + clear.c \ + compare.c \ + copy.c \ + gen_uuid.c \ + isnull.c \ + pack.c \ + parse.c \ + unpack.c \ + unparse.c \ + uuidd.h \ + uuidd.h \ + uuidP.h \ + uuid_time.c \ + randutils.c \ + $(uuidinc_HEADERS) + +noinst_HEADERS = \ + all-io.h \ + c.h \ + randutils.h + +libuuid_la_LIBADD = $(SOCKET_LIBS) +libuuid_la_CFLAGS = -I$(top_srcdir) +libuuid_la_LDFLAGS = -version-info $(LIBUUID_VERSION_INFO) +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +config.h: stamp-h1 + @if test ! -f $@; then rm -f stamp-h1; else :; fi + @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 +uuid.pc: $(top_builddir)/config.status $(srcdir)/uuid.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libuuid.la: $(libuuid_la_OBJECTS) $(libuuid_la_DEPENDENCIES) $(EXTRA_libuuid_la_DEPENDENCIES) + $(AM_V_CCLD)$(libuuid_la_LINK) -rpath $(libdir) $(libuuid_la_OBJECTS) $(libuuid_la_LIBADD) $(LIBS) + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +test_uuid$(EXEEXT): $(test_uuid_OBJECTS) $(test_uuid_DEPENDENCIES) $(EXTRA_test_uuid_DEPENDENCIES) + @rm -f test_uuid$(EXEEXT) + $(AM_V_CCLD)$(test_uuid_LINK) $(test_uuid_OBJECTS) $(test_uuid_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +include ./$(DEPDIR)/libuuid_la-clear.Plo +include ./$(DEPDIR)/libuuid_la-compare.Plo +include ./$(DEPDIR)/libuuid_la-copy.Plo +include ./$(DEPDIR)/libuuid_la-gen_uuid.Plo +include ./$(DEPDIR)/libuuid_la-isnull.Plo +include ./$(DEPDIR)/libuuid_la-pack.Plo +include ./$(DEPDIR)/libuuid_la-parse.Plo +include ./$(DEPDIR)/libuuid_la-randutils.Plo +include ./$(DEPDIR)/libuuid_la-unpack.Plo +include ./$(DEPDIR)/libuuid_la-unparse.Plo +include ./$(DEPDIR)/libuuid_la-uuid_time.Plo +include ./$(DEPDIR)/test_uuid-test_uuid.Po + +.c.o: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c $< + +.c.obj: + $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +# $(AM_V_CC)source='$<' object='$@' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: + $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< + $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +# $(AM_V_CC)source='$<' object='$@' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LTCOMPILE) -c -o $@ $< + +libuuid_la-clear.lo: clear.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-clear.lo -MD -MP -MF $(DEPDIR)/libuuid_la-clear.Tpo -c -o libuuid_la-clear.lo `test -f 'clear.c' || echo '$(srcdir)/'`clear.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-clear.Tpo $(DEPDIR)/libuuid_la-clear.Plo +# $(AM_V_CC)source='clear.c' object='libuuid_la-clear.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-clear.lo `test -f 'clear.c' || echo '$(srcdir)/'`clear.c + +libuuid_la-compare.lo: compare.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-compare.lo -MD -MP -MF $(DEPDIR)/libuuid_la-compare.Tpo -c -o libuuid_la-compare.lo `test -f 'compare.c' || echo '$(srcdir)/'`compare.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-compare.Tpo $(DEPDIR)/libuuid_la-compare.Plo +# $(AM_V_CC)source='compare.c' object='libuuid_la-compare.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-compare.lo `test -f 'compare.c' || echo '$(srcdir)/'`compare.c + +libuuid_la-copy.lo: copy.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-copy.lo -MD -MP -MF $(DEPDIR)/libuuid_la-copy.Tpo -c -o libuuid_la-copy.lo `test -f 'copy.c' || echo '$(srcdir)/'`copy.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-copy.Tpo $(DEPDIR)/libuuid_la-copy.Plo +# $(AM_V_CC)source='copy.c' object='libuuid_la-copy.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-copy.lo `test -f 'copy.c' || echo '$(srcdir)/'`copy.c + +libuuid_la-gen_uuid.lo: gen_uuid.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-gen_uuid.lo -MD -MP -MF $(DEPDIR)/libuuid_la-gen_uuid.Tpo -c -o libuuid_la-gen_uuid.lo `test -f 'gen_uuid.c' || echo '$(srcdir)/'`gen_uuid.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-gen_uuid.Tpo $(DEPDIR)/libuuid_la-gen_uuid.Plo +# $(AM_V_CC)source='gen_uuid.c' object='libuuid_la-gen_uuid.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-gen_uuid.lo `test -f 'gen_uuid.c' || echo '$(srcdir)/'`gen_uuid.c + +libuuid_la-isnull.lo: isnull.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-isnull.lo -MD -MP -MF $(DEPDIR)/libuuid_la-isnull.Tpo -c -o libuuid_la-isnull.lo `test -f 'isnull.c' || echo '$(srcdir)/'`isnull.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-isnull.Tpo $(DEPDIR)/libuuid_la-isnull.Plo +# $(AM_V_CC)source='isnull.c' object='libuuid_la-isnull.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-isnull.lo `test -f 'isnull.c' || echo '$(srcdir)/'`isnull.c + +libuuid_la-pack.lo: pack.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-pack.lo -MD -MP -MF $(DEPDIR)/libuuid_la-pack.Tpo -c -o libuuid_la-pack.lo `test -f 'pack.c' || echo '$(srcdir)/'`pack.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-pack.Tpo $(DEPDIR)/libuuid_la-pack.Plo +# $(AM_V_CC)source='pack.c' object='libuuid_la-pack.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-pack.lo `test -f 'pack.c' || echo '$(srcdir)/'`pack.c + +libuuid_la-parse.lo: parse.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-parse.lo -MD -MP -MF $(DEPDIR)/libuuid_la-parse.Tpo -c -o libuuid_la-parse.lo `test -f 'parse.c' || echo '$(srcdir)/'`parse.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-parse.Tpo $(DEPDIR)/libuuid_la-parse.Plo +# $(AM_V_CC)source='parse.c' object='libuuid_la-parse.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-parse.lo `test -f 'parse.c' || echo '$(srcdir)/'`parse.c + +libuuid_la-unpack.lo: unpack.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-unpack.lo -MD -MP -MF $(DEPDIR)/libuuid_la-unpack.Tpo -c -o libuuid_la-unpack.lo `test -f 'unpack.c' || echo '$(srcdir)/'`unpack.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-unpack.Tpo $(DEPDIR)/libuuid_la-unpack.Plo +# $(AM_V_CC)source='unpack.c' object='libuuid_la-unpack.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-unpack.lo `test -f 'unpack.c' || echo '$(srcdir)/'`unpack.c + +libuuid_la-unparse.lo: unparse.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-unparse.lo -MD -MP -MF $(DEPDIR)/libuuid_la-unparse.Tpo -c -o libuuid_la-unparse.lo `test -f 'unparse.c' || echo '$(srcdir)/'`unparse.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-unparse.Tpo $(DEPDIR)/libuuid_la-unparse.Plo +# $(AM_V_CC)source='unparse.c' object='libuuid_la-unparse.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-unparse.lo `test -f 'unparse.c' || echo '$(srcdir)/'`unparse.c + +libuuid_la-uuid_time.lo: uuid_time.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-uuid_time.lo -MD -MP -MF $(DEPDIR)/libuuid_la-uuid_time.Tpo -c -o libuuid_la-uuid_time.lo `test -f 'uuid_time.c' || echo '$(srcdir)/'`uuid_time.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-uuid_time.Tpo $(DEPDIR)/libuuid_la-uuid_time.Plo +# $(AM_V_CC)source='uuid_time.c' object='libuuid_la-uuid_time.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-uuid_time.lo `test -f 'uuid_time.c' || echo '$(srcdir)/'`uuid_time.c + +libuuid_la-randutils.lo: randutils.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-randutils.lo -MD -MP -MF $(DEPDIR)/libuuid_la-randutils.Tpo -c -o libuuid_la-randutils.lo `test -f 'randutils.c' || echo '$(srcdir)/'`randutils.c + $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-randutils.Tpo $(DEPDIR)/libuuid_la-randutils.Plo +# $(AM_V_CC)source='randutils.c' object='libuuid_la-randutils.lo' libtool=yes \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-randutils.lo `test -f 'randutils.c' || echo '$(srcdir)/'`randutils.c + +test_uuid-test_uuid.o: test_uuid.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_uuid_CFLAGS) $(CFLAGS) -MT test_uuid-test_uuid.o -MD -MP -MF $(DEPDIR)/test_uuid-test_uuid.Tpo -c -o test_uuid-test_uuid.o `test -f 'test_uuid.c' || echo '$(srcdir)/'`test_uuid.c + $(AM_V_at)$(am__mv) $(DEPDIR)/test_uuid-test_uuid.Tpo $(DEPDIR)/test_uuid-test_uuid.Po +# $(AM_V_CC)source='test_uuid.c' object='test_uuid-test_uuid.o' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_uuid_CFLAGS) $(CFLAGS) -c -o test_uuid-test_uuid.o `test -f 'test_uuid.c' || echo '$(srcdir)/'`test_uuid.c + +test_uuid-test_uuid.obj: test_uuid.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_uuid_CFLAGS) $(CFLAGS) -MT test_uuid-test_uuid.obj -MD -MP -MF $(DEPDIR)/test_uuid-test_uuid.Tpo -c -o test_uuid-test_uuid.obj `if test -f 'test_uuid.c'; then $(CYGPATH_W) 'test_uuid.c'; else $(CYGPATH_W) '$(srcdir)/test_uuid.c'; fi` + $(AM_V_at)$(am__mv) $(DEPDIR)/test_uuid-test_uuid.Tpo $(DEPDIR)/test_uuid-test_uuid.Po +# $(AM_V_CC)source='test_uuid.c' object='test_uuid-test_uuid.obj' libtool=no \ +# DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) \ +# $(AM_V_CC_no)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_uuid_CFLAGS) $(CFLAGS) -c -o test_uuid-test_uuid.obj `if test -f 'test_uuid.c'; then $(CYGPATH_W) 'test_uuid.c'; else $(CYGPATH_W) '$(srcdir)/test_uuid.c'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt +install-pkgconfigDATA: $(pkgconfig_DATA) + @$(NORMAL_INSTALL) + @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ + done + +uninstall-pkgconfigDATA: + @$(NORMAL_UNINSTALL) + @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) +install-uuidincHEADERS: $(uuidinc_HEADERS) + @$(NORMAL_INSTALL) + @list='$(uuidinc_HEADERS)'; test -n "$(uuidincdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(uuidincdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(uuidincdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(uuidincdir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(uuidincdir)" || exit $$?; \ + done + +uninstall-uuidincHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(uuidinc_HEADERS)'; test -n "$(uuidincdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(uuidincdir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscope: cscope.files + test ! -s cscope.files \ + || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) +clean-cscope: + -rm -f cscope.files +cscope.files: clean-cscope cscopelist +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + -rm -f cscope.out cscope.in.out cscope.po.out cscope.files + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__post_remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__post_remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__post_remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__post_remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__post_remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__post_remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__post_remove_distdir) + +dist dist-all: + $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' + $(am__post_remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir) + chmod u+w $(distdir) + mkdir $(distdir)/_build $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__post_remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) +check: check-am +all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) config.h +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(uuidincdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ + clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-hdr distclean-libtool distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-pkgconfigDATA install-uuidincHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES uninstall-pkgconfigDATA \ + uninstall-uuidincHEADERS + +.MAKE: all check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-am clean \ + clean-checkPROGRAMS clean-cscope clean-generic \ + clean-libLTLIBRARIES clean-libtool cscope cscopelist-am ctags \ + ctags-am dist dist-all dist-bzip2 dist-gzip dist-lzip \ + dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \ + distclean-compile distclean-generic distclean-hdr \ + distclean-libtool distclean-tags distcleancheck distdir \ + distuninstallcheck dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-pkgconfigDATA install-ps install-ps-am install-strip \ + install-uuidincHEADERS installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-libLTLIBRARIES uninstall-pkgconfigDATA \ + uninstall-uuidincHEADERS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/Makefile.am b/1_6.h12_dev/render/libuuid-1.0.3/Makefile.am new file mode 100644 index 0000000..e2a980c --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/Makefile.am @@ -0,0 +1,40 @@ +check_PROGRAMS = test_uuid +test_uuid_SOURCES = test_uuid.c +test_uuid_LDADD = libuuid.la $(SOCKET_LIBS) +test_uuid_CFLAGS = -I$(top_srcdir) + +EXTRA_DIST = uuid.pc.in +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = uuid.pc + +# includes +uuidincdir = $(includedir)/uuid +uuidinc_HEADERS = uuid.h + +lib_LTLIBRARIES = libuuid.la + +libuuid_la_SOURCES = \ + clear.c \ + compare.c \ + copy.c \ + gen_uuid.c \ + isnull.c \ + pack.c \ + parse.c \ + unpack.c \ + unparse.c \ + uuidd.h \ + uuidd.h \ + uuidP.h \ + uuid_time.c \ + randutils.c \ + $(uuidinc_HEADERS) + +noinst_HEADERS = \ + all-io.h \ + c.h \ + randutils.h + +libuuid_la_LIBADD = $(SOCKET_LIBS) +libuuid_la_CFLAGS = -I$(top_srcdir) +libuuid_la_LDFLAGS = -version-info $(LIBUUID_VERSION_INFO) diff --git a/1_6.h12_dev/render/libuuid-1.0.3/Makefile.in b/1_6.h12_dev/render/libuuid-1.0.3/Makefile.in new file mode 100644 index 0000000..403c51f --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/Makefile.in @@ -0,0 +1,1030 @@ +# Makefile.in generated by automake 1.13.4 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2013 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + + +VPATH = @srcdir@ +am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +check_PROGRAMS = test_uuid$(EXEEXT) +subdir = . +DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(top_srcdir)/configure $(am__configure_deps) \ + $(srcdir)/config.h.in $(srcdir)/uuid.pc.in depcomp \ + $(noinst_HEADERS) $(uuidinc_HEADERS) COPYING config.guess \ + config.sub install-sh missing ltmain.sh +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = uuid.pc +CONFIG_CLEAN_VPATH_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ + "$(DESTDIR)$(uuidincdir)" +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = +libuuid_la_DEPENDENCIES = $(am__DEPENDENCIES_1) +am__objects_1 = +am_libuuid_la_OBJECTS = libuuid_la-clear.lo libuuid_la-compare.lo \ + libuuid_la-copy.lo libuuid_la-gen_uuid.lo libuuid_la-isnull.lo \ + libuuid_la-pack.lo libuuid_la-parse.lo libuuid_la-unpack.lo \ + libuuid_la-unparse.lo libuuid_la-uuid_time.lo \ + libuuid_la-randutils.lo $(am__objects_1) +libuuid_la_OBJECTS = $(am_libuuid_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +libuuid_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libuuid_la_CFLAGS) \ + $(CFLAGS) $(libuuid_la_LDFLAGS) $(LDFLAGS) -o $@ +am_test_uuid_OBJECTS = test_uuid-test_uuid.$(OBJEXT) +test_uuid_OBJECTS = $(am_test_uuid_OBJECTS) +test_uuid_DEPENDENCIES = libuuid.la $(am__DEPENDENCIES_1) +test_uuid_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_uuid_CFLAGS) \ + $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(libuuid_la_SOURCES) $(test_uuid_SOURCES) +DIST_SOURCES = $(libuuid_la_SOURCES) $(test_uuid_SOURCES) +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +DATA = $(pkgconfig_DATA) +HEADERS = $(noinst_HEADERS) $(uuidinc_HEADERS) +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)config.h.in +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +CSCOPE = cscope +AM_RECURSIVE_TARGETS = cscope +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__post_remove_distdir = $(am__remove_distdir) +DIST_ARCHIVES = $(distdir).tar.gz +GZIP_ENV = --best +DIST_TARGETS = dist-gzip +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBUUID_VERSION = @LIBUUID_VERSION@ +LIBUUID_VERSION_INFO = @LIBUUID_VERSION_INFO@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SOCKET_LIBS = @SOCKET_LIBS@ +STRIP = @STRIP@ +VERSION = @VERSION@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +test_uuid_SOURCES = test_uuid.c +test_uuid_LDADD = libuuid.la $(SOCKET_LIBS) +test_uuid_CFLAGS = -I$(top_srcdir) +EXTRA_DIST = uuid.pc.in +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = uuid.pc + +# includes +uuidincdir = $(includedir)/uuid +uuidinc_HEADERS = uuid.h +lib_LTLIBRARIES = libuuid.la +libuuid_la_SOURCES = \ + clear.c \ + compare.c \ + copy.c \ + gen_uuid.c \ + isnull.c \ + pack.c \ + parse.c \ + unpack.c \ + unparse.c \ + uuidd.h \ + uuidd.h \ + uuidP.h \ + uuid_time.c \ + randutils.c \ + $(uuidinc_HEADERS) + +noinst_HEADERS = \ + all-io.h \ + c.h \ + randutils.h + +libuuid_la_LIBADD = $(SOCKET_LIBS) +libuuid_la_CFLAGS = -I$(top_srcdir) +libuuid_la_LDFLAGS = -version-info $(LIBUUID_VERSION_INFO) +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .lo .o .obj +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +config.h: stamp-h1 + @if test ! -f $@; then rm -f stamp-h1; else :; fi + @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 +uuid.pc: $(top_builddir)/config.status $(srcdir)/uuid.pc.in + cd $(top_builddir) && $(SHELL) ./config.status $@ + +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + list2=; for p in $$list; do \ + if test -f $$p; then \ + list2="$$list2 $$p"; \ + else :; fi; \ + done; \ + test -z "$$list2" || { \ + echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ + } + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ + for p in $$list; do \ + $(am__strip_dir) \ + echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; \ + locs=`for p in $$list; do echo $$p; done | \ + sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ + sort -u`; \ + test -z "$$locs" || { \ + echo rm -f $${locs}; \ + rm -f $${locs}; \ + } + +libuuid.la: $(libuuid_la_OBJECTS) $(libuuid_la_DEPENDENCIES) $(EXTRA_libuuid_la_DEPENDENCIES) + $(AM_V_CCLD)$(libuuid_la_LINK) -rpath $(libdir) $(libuuid_la_OBJECTS) $(libuuid_la_LIBADD) $(LIBS) + +clean-checkPROGRAMS: + @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \ + echo " rm -f" $$list; \ + rm -f $$list || exit $$?; \ + test -n "$(EXEEXT)" || exit 0; \ + list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f" $$list; \ + rm -f $$list + +test_uuid$(EXEEXT): $(test_uuid_OBJECTS) $(test_uuid_DEPENDENCIES) $(EXTRA_test_uuid_DEPENDENCIES) + @rm -f test_uuid$(EXEEXT) + $(AM_V_CCLD)$(test_uuid_LINK) $(test_uuid_OBJECTS) $(test_uuid_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-clear.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-compare.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-copy.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-gen_uuid.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-isnull.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-pack.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-parse.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-randutils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-unpack.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-unparse.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libuuid_la-uuid_time.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_uuid-test_uuid.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + +libuuid_la-clear.lo: clear.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-clear.lo -MD -MP -MF $(DEPDIR)/libuuid_la-clear.Tpo -c -o libuuid_la-clear.lo `test -f 'clear.c' || echo '$(srcdir)/'`clear.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-clear.Tpo $(DEPDIR)/libuuid_la-clear.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='clear.c' object='libuuid_la-clear.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-clear.lo `test -f 'clear.c' || echo '$(srcdir)/'`clear.c + +libuuid_la-compare.lo: compare.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-compare.lo -MD -MP -MF $(DEPDIR)/libuuid_la-compare.Tpo -c -o libuuid_la-compare.lo `test -f 'compare.c' || echo '$(srcdir)/'`compare.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-compare.Tpo $(DEPDIR)/libuuid_la-compare.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='compare.c' object='libuuid_la-compare.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-compare.lo `test -f 'compare.c' || echo '$(srcdir)/'`compare.c + +libuuid_la-copy.lo: copy.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-copy.lo -MD -MP -MF $(DEPDIR)/libuuid_la-copy.Tpo -c -o libuuid_la-copy.lo `test -f 'copy.c' || echo '$(srcdir)/'`copy.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-copy.Tpo $(DEPDIR)/libuuid_la-copy.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='copy.c' object='libuuid_la-copy.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-copy.lo `test -f 'copy.c' || echo '$(srcdir)/'`copy.c + +libuuid_la-gen_uuid.lo: gen_uuid.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-gen_uuid.lo -MD -MP -MF $(DEPDIR)/libuuid_la-gen_uuid.Tpo -c -o libuuid_la-gen_uuid.lo `test -f 'gen_uuid.c' || echo '$(srcdir)/'`gen_uuid.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-gen_uuid.Tpo $(DEPDIR)/libuuid_la-gen_uuid.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gen_uuid.c' object='libuuid_la-gen_uuid.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-gen_uuid.lo `test -f 'gen_uuid.c' || echo '$(srcdir)/'`gen_uuid.c + +libuuid_la-isnull.lo: isnull.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-isnull.lo -MD -MP -MF $(DEPDIR)/libuuid_la-isnull.Tpo -c -o libuuid_la-isnull.lo `test -f 'isnull.c' || echo '$(srcdir)/'`isnull.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-isnull.Tpo $(DEPDIR)/libuuid_la-isnull.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnull.c' object='libuuid_la-isnull.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-isnull.lo `test -f 'isnull.c' || echo '$(srcdir)/'`isnull.c + +libuuid_la-pack.lo: pack.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-pack.lo -MD -MP -MF $(DEPDIR)/libuuid_la-pack.Tpo -c -o libuuid_la-pack.lo `test -f 'pack.c' || echo '$(srcdir)/'`pack.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-pack.Tpo $(DEPDIR)/libuuid_la-pack.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pack.c' object='libuuid_la-pack.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-pack.lo `test -f 'pack.c' || echo '$(srcdir)/'`pack.c + +libuuid_la-parse.lo: parse.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-parse.lo -MD -MP -MF $(DEPDIR)/libuuid_la-parse.Tpo -c -o libuuid_la-parse.lo `test -f 'parse.c' || echo '$(srcdir)/'`parse.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-parse.Tpo $(DEPDIR)/libuuid_la-parse.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='parse.c' object='libuuid_la-parse.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-parse.lo `test -f 'parse.c' || echo '$(srcdir)/'`parse.c + +libuuid_la-unpack.lo: unpack.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-unpack.lo -MD -MP -MF $(DEPDIR)/libuuid_la-unpack.Tpo -c -o libuuid_la-unpack.lo `test -f 'unpack.c' || echo '$(srcdir)/'`unpack.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-unpack.Tpo $(DEPDIR)/libuuid_la-unpack.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unpack.c' object='libuuid_la-unpack.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-unpack.lo `test -f 'unpack.c' || echo '$(srcdir)/'`unpack.c + +libuuid_la-unparse.lo: unparse.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-unparse.lo -MD -MP -MF $(DEPDIR)/libuuid_la-unparse.Tpo -c -o libuuid_la-unparse.lo `test -f 'unparse.c' || echo '$(srcdir)/'`unparse.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-unparse.Tpo $(DEPDIR)/libuuid_la-unparse.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unparse.c' object='libuuid_la-unparse.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-unparse.lo `test -f 'unparse.c' || echo '$(srcdir)/'`unparse.c + +libuuid_la-uuid_time.lo: uuid_time.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-uuid_time.lo -MD -MP -MF $(DEPDIR)/libuuid_la-uuid_time.Tpo -c -o libuuid_la-uuid_time.lo `test -f 'uuid_time.c' || echo '$(srcdir)/'`uuid_time.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-uuid_time.Tpo $(DEPDIR)/libuuid_la-uuid_time.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='uuid_time.c' object='libuuid_la-uuid_time.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-uuid_time.lo `test -f 'uuid_time.c' || echo '$(srcdir)/'`uuid_time.c + +libuuid_la-randutils.lo: randutils.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -MT libuuid_la-randutils.lo -MD -MP -MF $(DEPDIR)/libuuid_la-randutils.Tpo -c -o libuuid_la-randutils.lo `test -f 'randutils.c' || echo '$(srcdir)/'`randutils.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libuuid_la-randutils.Tpo $(DEPDIR)/libuuid_la-randutils.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randutils.c' object='libuuid_la-randutils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuuid_la_CFLAGS) $(CFLAGS) -c -o libuuid_la-randutils.lo `test -f 'randutils.c' || echo '$(srcdir)/'`randutils.c + +test_uuid-test_uuid.o: test_uuid.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_uuid_CFLAGS) $(CFLAGS) -MT test_uuid-test_uuid.o -MD -MP -MF $(DEPDIR)/test_uuid-test_uuid.Tpo -c -o test_uuid-test_uuid.o `test -f 'test_uuid.c' || echo '$(srcdir)/'`test_uuid.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_uuid-test_uuid.Tpo $(DEPDIR)/test_uuid-test_uuid.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test_uuid.c' object='test_uuid-test_uuid.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_uuid_CFLAGS) $(CFLAGS) -c -o test_uuid-test_uuid.o `test -f 'test_uuid.c' || echo '$(srcdir)/'`test_uuid.c + +test_uuid-test_uuid.obj: test_uuid.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_uuid_CFLAGS) $(CFLAGS) -MT test_uuid-test_uuid.obj -MD -MP -MF $(DEPDIR)/test_uuid-test_uuid.Tpo -c -o test_uuid-test_uuid.obj `if test -f 'test_uuid.c'; then $(CYGPATH_W) 'test_uuid.c'; else $(CYGPATH_W) '$(srcdir)/test_uuid.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_uuid-test_uuid.Tpo $(DEPDIR)/test_uuid-test_uuid.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test_uuid.c' object='test_uuid-test_uuid.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_uuid_CFLAGS) $(CFLAGS) -c -o test_uuid-test_uuid.obj `if test -f 'test_uuid.c'; then $(CYGPATH_W) 'test_uuid.c'; else $(CYGPATH_W) '$(srcdir)/test_uuid.c'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt +install-pkgconfigDATA: $(pkgconfig_DATA) + @$(NORMAL_INSTALL) + @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ + done + +uninstall-pkgconfigDATA: + @$(NORMAL_UNINSTALL) + @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) +install-uuidincHEADERS: $(uuidinc_HEADERS) + @$(NORMAL_INSTALL) + @list='$(uuidinc_HEADERS)'; test -n "$(uuidincdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(uuidincdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(uuidincdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(uuidincdir)'"; \ + $(INSTALL_HEADER) $$files "$(DESTDIR)$(uuidincdir)" || exit $$?; \ + done + +uninstall-uuidincHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(uuidinc_HEADERS)'; test -n "$(uuidincdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(uuidincdir)'; $(am__uninstall_files_from_dir) + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-am +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-am + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscope: cscope.files + test ! -s cscope.files \ + || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) +clean-cscope: + -rm -f cscope.files +cscope.files: clean-cscope cscopelist +cscopelist: cscopelist-am + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + -rm -f cscope.out cscope.in.out cscope.po.out cscope.files + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__post_remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__post_remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__post_remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__post_remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__post_remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__post_remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__post_remove_distdir) + +dist dist-all: + $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' + $(am__post_remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir) + chmod u+w $(distdir) + mkdir $(distdir)/_build $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__post_remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) +check: check-am +all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) config.h +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(uuidincdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ + clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-hdr distclean-libtool distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +html-am: + +info: info-am + +info-am: + +install-data-am: install-pkgconfigDATA install-uuidincHEADERS + +install-dvi: install-dvi-am + +install-dvi-am: + +install-exec-am: install-libLTLIBRARIES + +install-html: install-html-am + +install-html-am: + +install-info: install-info-am + +install-info-am: + +install-man: + +install-pdf: install-pdf-am + +install-pdf-am: + +install-ps: install-ps-am + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-libLTLIBRARIES uninstall-pkgconfigDATA \ + uninstall-uuidincHEADERS + +.MAKE: all check-am install-am install-strip + +.PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-am clean \ + clean-checkPROGRAMS clean-cscope clean-generic \ + clean-libLTLIBRARIES clean-libtool cscope cscopelist-am ctags \ + ctags-am dist dist-all dist-bzip2 dist-gzip dist-lzip \ + dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \ + distclean-compile distclean-generic distclean-hdr \ + distclean-libtool distclean-tags distcleancheck distdir \ + distuninstallcheck dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-man install-pdf install-pdf-am \ + install-pkgconfigDATA install-ps install-ps-am install-strip \ + install-uuidincHEADERS installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-libLTLIBRARIES uninstall-pkgconfigDATA \ + uninstall-uuidincHEADERS + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/aclocal.m4 b/1_6.h12_dev/render/libuuid-1.0.3/aclocal.m4 new file mode 100644 index 0000000..e85e4e5 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/aclocal.m4 @@ -0,0 +1,9636 @@ +# generated automatically by aclocal 1.13.4 -*- Autoconf -*- + +# Copyright (C) 1996-2013 Free Software Foundation, Inc. + +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, +[m4_warning([this file was generated for autoconf 2.69. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically 'autoreconf'.])]) + +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 57 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl + +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_WITH_SYSROOT])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PREPARE_SED_QUOTE_VARS +# -------------------------- +# Define a few sed substitution that help us do robust quoting. +m4_defun([_LT_PREPARE_SED_QUOTE_VARS], +[# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' +]) + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$[]1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +_LT_OUTPUT_LIBTOOL_INIT +]) + +# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) +# ------------------------------------ +# Generate a child script FILE with all initialization necessary to +# reuse the environment learned by the parent script, and make the +# file executable. If COMMENT is supplied, it is inserted after the +# `#!' sequence but before initialization text begins. After this +# macro, additional text can be appended to FILE to form the body of +# the child script. The macro ends with non-zero status if the +# file could not be fully written (such as if the disk is full). +m4_ifdef([AS_INIT_GENERATED], +[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], +[m4_defun([_LT_GENERATED_FILE_INIT], +[m4_require([AS_PREPARE])]dnl +[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl +[lt_write_fail=0 +cat >$1 <<_ASEOF || lt_write_fail=1 +#! $SHELL +# Generated by $as_me. +$2 +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$1 <<\_ASEOF || lt_write_fail=1 +AS_SHELL_SANITIZE +_AS_PREPARE +exec AS_MESSAGE_FD>&1 +_ASEOF +test $lt_write_fail = 0 && chmod +x $1[]dnl +m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], +[# Run this file to recreate a libtool stub with the current configuration.]) + +cat >>"$CONFIG_LT" <<\_LTEOF +lt_cl_silent=false +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +lt_cl_success=: +test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" +exec AS_MESSAGE_LOG_FD>/dev/null +$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false +exec AS_MESSAGE_LOG_FD>>config.log +$lt_cl_success || AS_EXIT(1) +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_REPLACE_SHELLFNS + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +m4_ifndef([AC_PROG_GO], [ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) +dnl AC_DEFUN([AC_LIBTOOL_RC], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], + [lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD + echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD + $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) +# ---------------------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +# Store the results from the different compilers for each TAGNAME. +# Allow to override them for all tags through lt_cv_aix_libpath. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], + [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ + lt_aix_libpath_sed='[ + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }]' + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi],[]) + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + fi + ]) + aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) +fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[m4_divert_text([M4SH-INIT], [$1 +])])# _LT_SHELL_INIT + + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Find how we can fake an echo command that does not interpret backslash. +# In particular, with Autoconf 2.60 or later we add some code to the start +# of the generated configure script which will find a shell with a builtin +# printf (which we can use as an echo command). +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +AC_MSG_CHECKING([how to print strings]) +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$[]1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +case "$ECHO" in + printf*) AC_MSG_RESULT([printf]) ;; + print*) AC_MSG_RESULT([print -r]) ;; + *) AC_MSG_RESULT([cat]) ;; +esac + +m4_ifdef([_AS_DETECT_SUGGESTED], +[_AS_DETECT_SUGGESTED([ + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) + +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_WITH_SYSROOT +# ---------------- +AC_DEFUN([_LT_WITH_SYSROOT], +[AC_MSG_CHECKING([for sysroot]) +AC_ARG_WITH([sysroot], +[ --with-sysroot[=DIR] Search for dependent libraries within DIR + (or the compiler's sysroot if not specified).], +[], [with_sysroot=no]) + +dnl lt_sysroot will always be passed unquoted. We quote it here +dnl in case the user passed a directory name. +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_ERROR([The sysroot must be an absolute path.]) + ;; +esac + + AC_MSG_RESULT([${lt_sysroot:-no}]) +_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl +[dependent libraries, and in which our libraries should be installed.])]) + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_PROG_AR +# ----------- +m4_defun([_LT_PROG_AR], +[AC_CHECK_TOOLS(AR, [ar], false) +: ${AR=ar} +: ${AR_FLAGS=cru} +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], + [lt_cv_ar_at_file=no + AC_COMPILE_IFELSE([AC_LANG_PROGRAM], + [echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + ]) + ]) + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi +_LT_DECL([], [archiver_list_spec], [1], + [How to feed a file listing to the archiver]) +])# _LT_PROG_AR + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[_LT_PROG_AR + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +_LT_DECL([], [lock_old_archive_extraction], [0], + [Whether to use a lock for old archive extraction]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[23]].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[[3-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], + [lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [lt_cv_shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + ]) + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [install_override_mode], [1], + [Permission mode override for installation of shared libraries]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PROG_ECHO_BACKSLASH])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method = "file_magic"]) +_LT_DECL([], [file_magic_glob], [1], + [How to find potential files when deplibs_check_method = "file_magic"]) +_LT_DECL([], [want_nocaseglob], [1], + [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + +# _LT_CHECK_SHAREDLIB_FROM_LINKLIB +# -------------------------------- +# how to determine the name of the shared library +# associated with a specific link library. +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +m4_require([_LT_DECL_DLLTOOL]) +AC_CACHE_CHECK([how to associate runtime and link libraries], +lt_cv_sharedlib_from_linklib_cmd, +[lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac +]) +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + +_LT_DECL([], [sharedlib_from_linklib_cmd], [1], + [Command to associate shared and link libraries]) +])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB + + +# _LT_PATH_MANIFEST_TOOL +# ---------------------- +# locate the manifest tool +m4_defun([_LT_PATH_MANIFEST_TOOL], +[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], + [lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&AS_MESSAGE_LOG_FD + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest*]) +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi +_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl +])# _LT_PATH_MANIFEST_TOOL + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; + *) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; + esac + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT@&t@_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT@&t@_DLSYM_CONST +#else +# define LT@&t@_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT@&t@_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([], [nm_file_list_spec], [1], + [Specify filename containing input files for $NM]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd*) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac + +AC_CACHE_CHECK([for $compiler option to produce PIC], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + ;; + esac + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; + *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + esac + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + m4_if($1, [], [ + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + _LT_LINKER_OPTION([if $CC understands -b], + _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], + [lt_cv_irix_exported_symbol], + [save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE( + [AC_LANG_SOURCE( + [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], + [C++], [[int foo (void) { return 0; }]], + [Fortran 77], [[ + subroutine foo + end]], + [Fortran], [[ + subroutine foo + end]])])], + [lt_cv_irix_exported_symbol=yes], + [lt_cv_irix_exported_symbol=no]) + LDFLAGS="$save_LDFLAGS"]) + if test "$lt_cv_irix_exported_symbol" = yes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_CACHE_CHECK([whether -lc should be explicitly linked in], + [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), + [$RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + ]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [postlink_cmds], [2], + [Commands necessary for finishing linking programs]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + gnu*) + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ + '"$_LT_TAGVAR(old_archive_cmds, $1)" + _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ + '"$_LT_TAGVAR(reload_cmds, $1)" + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_FUNC_STRIPNAME_CNF +# ---------------------- +# func_stripname_cnf prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# +# This function is identical to the (non-XSI) version of func_stripname, +# except this one can be used by m4 code that may be executed by configure, +# rather than the libtool script. +m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl +AC_REQUIRE([_LT_DECL_SED]) +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf +])# _LT_FUNC_STRIPNAME_CNF + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF +]) + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_LANG_PUSH(Fortran 77) +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${F77-"f77"} + CFLAGS=$FFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_LANG_PUSH(Fortran) + +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${FC-"f95"} + CFLAGS=$FCFLAGS + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +CFLAGS=$GCJFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +CFLAGS= +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + +# _LT_DECL_DLLTOOL +# ---------------- +# Ensure DLLTOOL variable is set. +m4_defun([_LT_DECL_DLLTOOL], +[AC_CHECK_TOOL(DLLTOOL, dlltool, false) +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) +AC_SUBST([DLLTOOL]) +]) + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) +# ------------------------------------------------------ +# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and +# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. +m4_defun([_LT_PROG_FUNCTION_REPLACE], +[dnl { +sed -e '/^$1 ()$/,/^} # $1 /c\ +$1 ()\ +{\ +m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) +} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: +]) + + +# _LT_PROG_REPLACE_SHELLFNS +# ------------------------- +# Replace existing portable implementations of several shell functions with +# equivalent extended shell implementations where those features are available.. +m4_defun([_LT_PROG_REPLACE_SHELLFNS], +[if test x"$xsi_shell" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) + + _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) + + _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) + + _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) +fi + +if test x"$lt_shell_append" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) + + _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl + func_quote_for_eval "${2}" +dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ + eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) +fi +]) + +# _LT_PATH_CONVERSION_FUNCTIONS +# ----------------------------- +# Determine which file name conversion functions should be used by +# func_to_host_file (and, implicitly, by func_to_host_path). These are needed +# for certain cross-compile configurations and native mingw. +m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_MSG_CHECKING([how to convert $build file names to $host format]) +AC_CACHE_VAL(lt_cv_to_host_file_cmd, +[case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac +]) +to_host_file_cmd=$lt_cv_to_host_file_cmd +AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) +_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], + [0], [convert $build file names to $host format])dnl + +AC_MSG_CHECKING([how to convert $build file names to toolchain format]) +AC_CACHE_VAL(lt_cv_to_tool_file_cmd, +[#assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac +]) +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) +_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], + [0], [convert $build files to toolchain format])dnl +])# _LT_PATH_CONVERSION_FUNCTIONS + +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 7 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [1], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) + +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) + +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# @configure_input@ + +# serial 3337 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.4.2]) +m4_define([LT_PACKAGE_REVISION], [1.3337]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4.2' +macro_revision='1.3337' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) + +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 5 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) + +# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.13' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.13.4], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.13.4])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to +# '$srcdir', '$srcdir/..', or '$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is '.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ([2.52])dnl + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], + [$1], [CXX], [depcc="$CXX" am_compiler_list=], + [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], + [$1], [UPC], [depcc="$UPC" am_compiler_list=], + [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES. +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE([dependency-tracking], [dnl +AS_HELP_STRING( + [--enable-dependency-tracking], + [do not reject slow dependency extractors]) +AS_HELP_STRING( + [--disable-dependency-tracking], + [speeds up one-time build])]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([am__nodep])dnl +_AM_SUBST_NOTMAKE([am__nodep])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each '.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.65])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[AC_DIAGNOSE([obsolete], + [$0: two- and three-arguments forms are deprecated.]) +m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if( + m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), + [ok:ok],, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) + AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) +AM_MISSING_PROG([AUTOCONF], [autoconf]) +AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) +AM_MISSING_PROG([AUTOHEADER], [autoheader]) +AM_MISSING_PROG([MAKEINFO], [makeinfo]) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# +# +AC_SUBST([mkdir_p], ['$(MKDIR_P)']) +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES([CC])], + [m4_define([AC_PROG_CC], + m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES([CXX])], + [m4_define([AC_PROG_CXX], + m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES([OBJC])], + [m4_define([AC_PROG_OBJC], + m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], + [_AM_DEPENDENCIES([OBJCXX])], + [m4_define([AC_PROG_OBJCXX], + m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl +]) +AC_REQUIRE([AM_SILENT_RULES])dnl +dnl The testsuite driver may need to know about EXEEXT, so add the +dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This +dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +]) + +dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST([install_sh])]) + +# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from 'make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it is modern enough. +# If it is, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + AC_MSG_WARN(['missing' script is too old or missing]) +fi +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), [1])]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken + alias in your environment]) + fi + if test "$[2]" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT([yes]) +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi +AC_CONFIG_COMMANDS_PRE( + [AC_MSG_CHECKING([that generated files are newer than configure]) + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + AC_MSG_RESULT([done])]) +rm -f conftest.file +]) + +# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Enable less verbose build rules; with the default set to DEFAULT +# ("yes" being less verbose, "no" or empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_ARG_ENABLE([silent-rules], [dnl +AS_HELP_STRING( + [--enable-silent-rules], + [less verbose build output (undo: "make V=1")]) +AS_HELP_STRING( + [--disable-silent-rules], + [verbose build output (undo: "make V=0")])dnl +]) +case $enable_silent_rules in @%:@ ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +dnl +dnl A few 'make' implementations (e.g., NonStop OS and NextStep) +dnl do not support nested variable expansions. +dnl See automake bug#9928 and bug#10237. +am_make=${MAKE-make} +AC_CACHE_CHECK([whether $am_make supports nested variables], + [am_cv_make_support_nested_variables], + [if AS_ECHO([['TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi]) +if test $am_cv_make_support_nested_variables = yes; then + dnl Using '$V' instead of '$(V)' breaks IRIX make. + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AC_SUBST([AM_V])dnl +AM_SUBST_NOTMAKE([AM_V])dnl +AC_SUBST([AM_DEFAULT_V])dnl +AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) + +# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor 'install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in "make install-strip", and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of 'v7', 'ustar', or 'pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +# +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' + +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + + [m4_case([$1], + [ustar], + [# The POSIX 1988 'ustar' format is defined with fixed-size fields. + # There is notably a 21 bits limit for the UID and the GID. In fact, + # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 + # and bug#13588). + am_max_uid=2097151 # 2^21 - 1 + am_max_gid=$am_max_uid + # The $UID and $GID variables are not portable, so we need to resort + # to the POSIX-mandated id(1) utility. Errors in the 'id' calls + # below are definitely unexpected, so allow the users to see them + # (that is, avoid stderr redirection). + am_uid=`id -u || echo unknown` + am_gid=`id -g || echo unknown` + AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) + if test $am_uid -le $am_max_uid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi + AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) + if test $am_gid -le $am_max_gid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi], + + [pax], + [], + + [m4_fatal([Unknown tar format])]) + + AC_MSG_CHECKING([how to create a $1 tar archive]) + + # Go ahead even if we have the value already cached. We do so because we + # need to set the values for the 'am__tar' and 'am__untar' variables. + _am_tools=${am_cv_prog_tar_$1-$_am_tools} + + for _am_tool in $_am_tools; do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works. + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi + done + rm -rf conftest.dir + + AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) + AC_MSG_RESULT([$am_cv_prog_tar_$1])]) + +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/all-io.h b/1_6.h12_dev/render/libuuid-1.0.3/all-io.h new file mode 100644 index 0000000..424ab7d --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/all-io.h @@ -0,0 +1,82 @@ +/* + * No copyright is claimed. This code is in the public domain; do with + * it what you wish. + * + * Written by Karel Zak + * Petr Uzel + */ + +#ifndef UTIL_LINUX_ALL_IO_H +#define UTIL_LINUX_ALL_IO_H + +#include +#include +#include + +#include "c.h" + +static inline int write_all(int fd, const void *buf, size_t count) +{ + while (count) { + ssize_t tmp; + + errno = 0; + tmp = write(fd, buf, count); + if (tmp > 0) { + count -= tmp; + if (count) + buf = (void *) ((char *) buf + tmp); + } else if (errno != EINTR && errno != EAGAIN) + return -1; + if (errno == EAGAIN) /* Try later, *sigh* */ + usleep(10000); + } + return 0; +} + +static inline int fwrite_all(const void *ptr, size_t size, + size_t nmemb, FILE *stream) +{ + while (nmemb) { + size_t tmp; + + errno = 0; + tmp = fwrite(ptr, size, nmemb, stream); + if (tmp > 0) { + nmemb -= tmp; + if (nmemb) + ptr = (void *) ((char *) ptr + (tmp * size)); + } else if (errno != EINTR && errno != EAGAIN) + return -1; + if (errno == EAGAIN) /* Try later, *sigh* */ + usleep(10000); + } + return 0; +} + +static inline ssize_t read_all(int fd, char *buf, size_t count) +{ + ssize_t ret; + ssize_t c = 0; + int tries = 0; + + memset(buf, 0, count); + while (count > 0) { + ret = read(fd, buf, count); + if (ret <= 0) { + if ((errno == EAGAIN || errno == EINTR || ret == 0) && + (tries++ < 5)) + continue; + return c ? c : -1; + } + if (ret > 0) + tries = 0; + count -= ret; + buf += ret; + c += ret; + } + return c; +} + + +#endif /* UTIL_LINUX_ALL_IO_H */ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/c.h b/1_6.h12_dev/render/libuuid-1.0.3/c.h new file mode 100644 index 0000000..0814985 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/c.h @@ -0,0 +1,317 @@ +/* + * Fundamental C definitions. + */ + +#ifndef UTIL_LINUX_C_H +#define UTIL_LINUX_C_H + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include + +#ifdef HAVE_STDINT_H +#include +#else +# ifdef HAVE_INTTYPES_H +# include +# endif +#endif + +#include +#include +#include +#include +#include +#include + +#ifdef HAVE_ERR_H +# include +#endif + +#ifndef HAVE_USLEEP +# include +#endif + +/* + * Compiler specific stuff + */ +#ifndef __GNUC_PREREQ +# if defined __GNUC__ && defined __GNUC_MINOR__ +# define __GNUC_PREREQ(maj, min) \ + ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) +# else +# define __GNUC_PREREQ(maj, min) 0 +# endif +#endif + +#ifdef __GNUC__ + +/* &a[0] degrades to a pointer: a different type from an array */ +# define __must_be_array(a) \ + UL_BUILD_BUG_ON_ZERO(__builtin_types_compatible_p(__typeof__(a), __typeof__(&a[0]))) + +# define ignore_result(x) ({ \ + __typeof__(x) __dummy __attribute__((__unused__)) = (x); (void) __dummy; \ +}) + +#else /* !__GNUC__ */ +# define __must_be_array(a) 0 +# define __attribute__(_arg_) +# define ignore_result(x) ((void) (x)) +#endif /* !__GNUC__ */ + +/* + * Function attributes + */ +#ifndef __ul_alloc_size +# if __GNUC_PREREQ (4, 3) +# define __ul_alloc_size(s) __attribute__((alloc_size(s))) +# else +# define __ul_alloc_size(s) +# endif +#endif + +#ifndef __ul_calloc_size +# if __GNUC_PREREQ (4, 3) +# define __ul_calloc_size(n, s) __attribute__((alloc_size(n, s))) +# else +# define __ul_calloc_size(n, s) +# endif +#endif + +/* Force a compilation error if condition is true, but also produce a + * result (of value 0 and type size_t), so the expression can be used + * e.g. in a structure initializer (or where-ever else comma expressions + * aren't permitted). + */ +#define UL_BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); })) +#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); })) + +#ifndef ARRAY_SIZE +# define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr)) +#endif + +#ifndef PATH_MAX +# define PATH_MAX 4096 +#endif + +#ifndef TRUE +# define TRUE 1 +#endif + +#ifndef FALSE +# define FALSE 0 +#endif + +#ifndef min +# define min(x, y) ({ \ + __typeof__(x) _min1 = (x); \ + __typeof__(y) _min2 = (y); \ + (void) (&_min1 == &_min2); \ + _min1 < _min2 ? _min1 : _min2; }) +#endif + +#ifndef max +# define max(x, y) ({ \ + __typeof__(x) _max1 = (x); \ + __typeof__(y) _max2 = (y); \ + (void) (&_max1 == &_max2); \ + _max1 > _max2 ? _max1 : _max2; }) +#endif + +#ifndef offsetof +#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) +#endif + +#ifndef container_of +#define container_of(ptr, type, member) ({ \ + const __typeof__( ((type *)0)->member ) *__mptr = (ptr); \ + (type *)( (char *)__mptr - offsetof(type,member) );}) +#endif + +#ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME +# ifdef HAVE___PROGNAME +extern char *__progname; +# define program_invocation_short_name __progname +# else +# ifdef HAVE_GETEXECNAME +# define program_invocation_short_name \ + prog_inv_sh_nm_from_file(getexecname(), 0) +# else +# define program_invocation_short_name \ + prog_inv_sh_nm_from_file(__FILE__, 1) +# endif +static char prog_inv_sh_nm_buf[256]; +static inline char * +prog_inv_sh_nm_from_file(char *f, char stripext) +{ + char *t; + + if ((t = strrchr(f, '/')) != NULL) + t++; + else + t = f; + + strncpy(prog_inv_sh_nm_buf, t, sizeof(prog_inv_sh_nm_buf) - 1); + prog_inv_sh_nm_buf[sizeof(prog_inv_sh_nm_buf) - 1] = '\0'; + + if (stripext && (t = strrchr(prog_inv_sh_nm_buf, '.')) != NULL) + *t = '\0'; + + return prog_inv_sh_nm_buf; +} +# endif +#endif + + +#ifndef HAVE_ERR_H +static inline void +errmsg(char doexit, int excode, char adderr, const char *fmt, ...) +{ + fprintf(stderr, "%s: ", program_invocation_short_name); + if (fmt != NULL) { + va_list argp; + va_start(argp, fmt); + vfprintf(stderr, fmt, argp); + va_end(argp); + if (adderr) + fprintf(stderr, ": "); + } + if (adderr) + fprintf(stderr, "%m"); + fprintf(stderr, "\n"); + if (doexit) + exit(excode); +} + +#ifndef HAVE_ERR +# define err(E, FMT...) errmsg(1, E, 1, FMT) +#endif + +#ifndef HAVE_ERRX +# define errx(E, FMT...) errmsg(1, E, 0, FMT) +#endif + +#ifndef HAVE_WARN +# define warn(FMT...) errmsg(0, 0, 1, FMT) +#endif + +#ifndef HAVE_WARNX +# define warnx(FMT...) errmsg(0, 0, 0, FMT) +#endif +#endif /* !HAVE_ERR_H */ + + +static inline __attribute__((const)) int is_power_of_2(unsigned long num) +{ + return (num != 0 && ((num & (num - 1)) == 0)); +} + +#ifndef HAVE_LOFF_T +typedef int64_t loff_t; +#endif + +#if !defined(HAVE_DIRFD) && (!defined(HAVE_DECL_DIRFD) || HAVE_DECL_DIRFD == 0) && defined(HAVE_DIR_DD_FD) +#include +#include +static inline int dirfd(DIR *d) +{ + return d->dd_fd; +} +#endif + +/* + * Fallback defines for old versions of glibc + */ +#include + +#ifdef O_CLOEXEC +#define UL_CLOEXECSTR "e" +#else +#define UL_CLOEXECSTR "" +#endif + +#ifndef O_CLOEXEC +#define O_CLOEXEC 0 +#endif + + +#ifndef AI_ADDRCONFIG +#define AI_ADDRCONFIG 0x0020 +#endif + +#ifndef IUTF8 +#define IUTF8 0040000 +#endif + +/* + * MAXHOSTNAMELEN replacement + */ +static inline size_t get_hostname_max(void) +{ +#if HAVE_DECL__SC_HOST_NAME_MAX + long len = sysconf(_SC_HOST_NAME_MAX); + + if (0 < len) + return len; +#endif + +#ifdef MAXHOSTNAMELEN + return MAXHOSTNAMELEN; +#elif HOST_NAME_MAX + return HOST_NAME_MAX; +#endif + return 64; +} + +#ifndef HAVE_USLEEP +/* + * This function is marked obsolete in POSIX.1-2001 and removed in + * POSIX.1-2008. It is replaced with nanosleep(). + */ +static inline int usleep(useconds_t usec) +{ + struct timespec waittime = { + .tv_sec = usec / 1000000L, + .tv_nsec = (usec % 1000000L) * 1000 + }; + return nanosleep(&waittime, NULL); +} +#endif + +/* + * Constant strings for usage() functions. For more info see + * Documentation/howto-usage-function.txt and disk-utils/delpart.c + */ +#define USAGE_HEADER _("\nUsage:\n") +#define USAGE_OPTIONS _("\nOptions:\n") +#define USAGE_SEPARATOR _("\n") +#define USAGE_HELP _(" -h, --help display this help and exit\n") +#define USAGE_VERSION _(" -V, --version output version information and exit\n") +#define USAGE_MAN_TAIL(_man) _("\nFor more details see %s.\n"), _man + +#define UTIL_LINUX_VERSION _("%s from %s\n"), program_invocation_short_name, PACKAGE_STRING + +/* + * scanf modifiers for "strings allocation" + */ +#ifdef HAVE_SCANF_MS_MODIFIER +#define UL_SCNsA "%ms" +#elif defined(HAVE_SCANF_AS_MODIFIER) +#define UL_SCNsA "%as" +#endif + +/* + * seek stuff + */ +#ifndef SEEK_DATA +# define SEEK_DATA 3 +#endif +#ifndef SEEK_HOLE +# define SEEK_HOLE 4 +#endif + +#endif /* UTIL_LINUX_C_H */ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/clear.c b/1_6.h12_dev/render/libuuid-1.0.3/clear.c new file mode 100644 index 0000000..2d91fee --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/clear.c @@ -0,0 +1,43 @@ +/* + * clear.c -- Clear a UUID + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include "string.h" + +#include "uuidP.h" + +void uuid_clear(uuid_t uu) +{ + memset(uu, 0, 16); +} + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/compare.c b/1_6.h12_dev/render/libuuid-1.0.3/compare.c new file mode 100644 index 0000000..8f3437a --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/compare.c @@ -0,0 +1,55 @@ +/* + * compare.c --- compare whether or not two UUIDs are the same + * + * Returns 0 if the two UUIDs are different, and 1 if they are the same. + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include "uuidP.h" +#include + +#define UUCMP(u1,u2) if (u1 != u2) return((u1 < u2) ? -1 : 1); + +int uuid_compare(const uuid_t uu1, const uuid_t uu2) +{ + struct uuid uuid1, uuid2; + + uuid_unpack(uu1, &uuid1); + uuid_unpack(uu2, &uuid2); + + UUCMP(uuid1.time_low, uuid2.time_low); + UUCMP(uuid1.time_mid, uuid2.time_mid); + UUCMP(uuid1.time_hi_and_version, uuid2.time_hi_and_version); + UUCMP(uuid1.clock_seq, uuid2.clock_seq); + return memcmp(uuid1.node, uuid2.node, 6); +} + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/config.guess b/1_6.h12_dev/render/libuuid-1.0.3/config.guess new file mode 100755 index 0000000..1804e9f --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/config.guess @@ -0,0 +1,1535 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011, 2012, 2013 Free Software Foundation, Inc. + +timestamp='2012-12-29' + +# This file 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 . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). +# +# Originally written by Per Bothner. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +# +# Please send patches with a ChangeLog entry to config-patches@gnu.org. + + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, +2012, 2013 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:Bitrig:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm*:riscos:*:*|arm*:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW64*:*) + echo ${UNAME_MACHINE}-pc-mingw64 + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:MSYS*:*) + echo ${UNAME_MACHINE}-pc-msys + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + hexagon:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + x86_64:Haiku:*:*) + echo x86_64-unknown-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-*:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; +esac + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/config.h b/1_6.h12_dev/render/libuuid-1.0.3/config.h new file mode 100644 index 0000000..42e8f56 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/config.h @@ -0,0 +1,153 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the declaration of `_SC_HOST_NAME_MAX', and to 0 if + you don't. */ +#define HAVE_DECL__SC_HOST_NAME_MAX 0 + +/* Define to 1 if you have the header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_FCNTL_H 1 + +/* Define to 1 if you have the `ftruncate' function. */ +#define HAVE_FTRUNCATE 1 + +/* Define to 1 if you have the `gettimeofday' function. */ +#define HAVE_GETTIMEOFDAY 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_LIMITS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the `memset' function. */ +#define HAVE_MEMSET 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_NETINET_IN_H 1 + +/* Define to 1 if you have the `socket' function. */ +#define HAVE_SOCKET 1 + +/* Define to 1 if you have the `srandom' function. */ +/* #undef HAVE_SRANDOM */ + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the `strtoul' function. */ +#define HAVE_STRTOUL 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_FILE_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_IOCTL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_SOCKET_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TIME_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `usleep' function. */ +#define HAVE_USLEEP 1 + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LT_OBJDIR ".libs/" + +/* Name of package */ +#define PACKAGE "libuuid" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "libuuid" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "libuuid 1.0.3" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "libuuid" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.0.3" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Version number of package */ +#define VERSION "1.0.3" + +/* Define for Solaris 2.5.1 so the uint32_t typedef from , + , or is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +/* #undef _UINT32_T */ + +/* Define for Solaris 2.5.1 so the uint64_t typedef from , + , or is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +/* #undef _UINT64_T */ + +/* Define for Solaris 2.5.1 so the uint8_t typedef from , + , or is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +/* #undef _UINT8_T */ + +/* Define to the type of a signed integer type of width exactly 32 bits if + such a type exists and the standard includes do not define it. */ +/* #undef int32_t */ + +/* Define to `int' if does not define. */ +/* #undef mode_t */ + +/* Define to `unsigned int' if does not define. */ +/* #undef size_t */ + +/* Define to `int' if does not define. */ +/* #undef ssize_t */ + +/* Define to the type of an unsigned integer type of width exactly 16 bits if + such a type exists and the standard includes do not define it. */ +/* #undef uint16_t */ + +/* Define to the type of an unsigned integer type of width exactly 32 bits if + such a type exists and the standard includes do not define it. */ +/* #undef uint32_t */ + +/* Define to the type of an unsigned integer type of width exactly 64 bits if + such a type exists and the standard includes do not define it. */ +/* #undef uint64_t */ + +/* Define to the type of an unsigned integer type of width exactly 8 bits if + such a type exists and the standard includes do not define it. */ +/* #undef uint8_t */ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/config.h.in b/1_6.h12_dev/render/libuuid-1.0.3/config.h.in new file mode 100644 index 0000000..8eb0959 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/config.h.in @@ -0,0 +1,152 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the declaration of `_SC_HOST_NAME_MAX', and to 0 if + you don't. */ +#undef HAVE_DECL__SC_HOST_NAME_MAX + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_FCNTL_H + +/* Define to 1 if you have the `ftruncate' function. */ +#undef HAVE_FTRUNCATE + +/* Define to 1 if you have the `gettimeofday' function. */ +#undef HAVE_GETTIMEOFDAY + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_LIMITS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the `memset' function. */ +#undef HAVE_MEMSET + +/* Define to 1 if you have the header file. */ +#undef HAVE_NETINET_IN_H + +/* Define to 1 if you have the `socket' function. */ +#undef HAVE_SOCKET + +/* Define to 1 if you have the `srandom' function. */ +#undef HAVE_SRANDOM + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the `strtoul' function. */ +#undef HAVE_STRTOUL + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_FILE_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_IOCTL_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_SOCKET_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TIME_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to 1 if you have the `usleep' function. */ +#undef HAVE_USLEEP + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Version number of package */ +#undef VERSION + +/* Define for Solaris 2.5.1 so the uint32_t typedef from , + , or is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +#undef _UINT32_T + +/* Define for Solaris 2.5.1 so the uint64_t typedef from , + , or is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +#undef _UINT64_T + +/* Define for Solaris 2.5.1 so the uint8_t typedef from , + , or is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +#undef _UINT8_T + +/* Define to the type of a signed integer type of width exactly 32 bits if + such a type exists and the standard includes do not define it. */ +#undef int32_t + +/* Define to `int' if does not define. */ +#undef mode_t + +/* Define to `unsigned int' if does not define. */ +#undef size_t + +/* Define to `int' if does not define. */ +#undef ssize_t + +/* Define to the type of an unsigned integer type of width exactly 16 bits if + such a type exists and the standard includes do not define it. */ +#undef uint16_t + +/* Define to the type of an unsigned integer type of width exactly 32 bits if + such a type exists and the standard includes do not define it. */ +#undef uint32_t + +/* Define to the type of an unsigned integer type of width exactly 64 bits if + such a type exists and the standard includes do not define it. */ +#undef uint64_t + +/* Define to the type of an unsigned integer type of width exactly 8 bits if + such a type exists and the standard includes do not define it. */ +#undef uint8_t diff --git a/1_6.h12_dev/render/libuuid-1.0.3/config.log b/1_6.h12_dev/render/libuuid-1.0.3/config.log new file mode 100644 index 0000000..4a67355 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/config.log @@ -0,0 +1,1340 @@ +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by libuuid configure 1.0.3, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ ./configure --host=arm-linux-androideabi --prefix=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp + +## --------- ## +## Platform. ## +## --------- ## + +hostname = rh-precision-t1700 +uname -m = x86_64 +uname -r = 3.19.0-28-generic +uname -s = Linux +uname -v = #30-Ubuntu SMP Mon Aug 31 15:52:51 UTC 2015 + +/usr/bin/uname -p = unknown +/bin/uname -X = unknown + +/bin/arch = unknown +/usr/bin/arch -k = unknown +/usr/convex/getsysinfo = unknown +/usr/bin/hostinfo = unknown +/bin/machine = unknown +/usr/bin/oslevel = unknown +/bin/universe = unknown + +PATH: /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin +PATH: /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/mips_dlna/mipsel-gcc472-glibc216-mips32/bin +PATH: /opt/bin +PATH: /opt/bin +PATH: /home/rh/Android/Sdk/platform-tools +PATH: /home/rh/my_soft/ndk +PATH: /usr/lib/jvm/java-7-openjdk-amd64/bin +PATH: /home/rh/bin +PATH: /usr/local/sbin +PATH: /usr/local/bin +PATH: /usr/sbin +PATH: /usr/bin +PATH: /sbin +PATH: /bin +PATH: /usr/games +PATH: /usr/local/games# + + +## ----------- ## +## Core tests. ## +## ----------- ## + +configure:2486: checking for a BSD-compatible install +configure:2554: result: /usr/bin/install -c +configure:2565: checking whether build environment is sane +configure:2620: result: yes +configure:2679: checking for arm-linux-androideabi-strip +configure:2695: found /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-strip +configure:2706: result: arm-linux-androideabi-strip +configure:2771: checking for a thread-safe mkdir -p +configure:2810: result: /bin/mkdir -p +configure:2817: checking for gawk +configure:2833: found /usr/bin/gawk +configure:2844: result: gawk +configure:2855: checking whether make sets $(MAKE) +configure:2877: result: yes +configure:2906: checking whether make supports nested variables +configure:2923: result: yes +configure:3036: checking build system type +configure:3050: result: x86_64-unknown-linux-gnu +configure:3070: checking host system type +configure:3083: result: arm-unknown-linux-androideabi +configure:3124: checking how to print strings +configure:3151: result: printf +configure:3184: checking for style of include used by make +configure:3212: result: GNU +configure:3243: checking for arm-linux-androideabi-gcc +configure:3259: found /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-gcc +configure:3270: result: arm-linux-androideabi-gcc +configure:3539: checking for C compiler version +configure:3548: arm-linux-androideabi-gcc --version >&5 +arm-linux-androideabi-gcc (GCC) 4.9 20140827 (prerelease) +Copyright (C) 2014 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:3559: $? = 0 +configure:3548: arm-linux-androideabi-gcc -v >&5 +Using built-in specs. +COLLECT_GCC=arm-linux-androideabi-gcc +COLLECT_LTO_WRAPPER=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/../libexec/gcc/arm-linux-androideabi/4.9/lto-wrapper +Target: arm-linux-androideabi +Configured with: /s/ndk-toolchain/src/build/../gcc/gcc-4.9/configure --prefix=/tmp/ndk-andrewhsieh/build/toolchain/prefix --target=arm-linux-androideabi --host=x86_64-linux-gnu --build=x86_64-linux-gnu --with-gnu-as --with-gnu-ld --enable-languages=c,c++ --with-gmp=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-mpfr=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-mpc=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-cloog=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-isl=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-ppl=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --disable-ppl-version-check --disable-cloog-version-check --disable-isl-version-check --enable-cloog-backend=isl --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --disable-libssp --enable-threads --disable-nls --disable-libmudflap --disable-libgomp --disable-libstdc__-v3 --disable-sjlj-exceptions --disable-shared --disable-tls --disable-libitm --with-float=soft --with-fpu=vfp --with-arch=armv5te --enable-target-optspace --enable-initfini-array --disable-nls --prefix=/tmp/ndk-andrewhsieh/build/toolchain/prefix --with-sysroot=/tmp/ndk-andrewhsieh/build/toolchain/prefix/sysroot --with-binutils-version=2.25 --with-mpfr-version=3.1.1 --with-mpc-version=1.0.1 --with-gmp-version=5.0.5 --with-gcc-version=4.9 --with-gdb-version=7.7 --with-python=/usr/local/google/home/andrewhsieh/mydroid/ndk/prebuilt/linux-x86_64/bin/python-config.sh --with-gxx-include-dir=/tmp/ndk-andrewhsieh/build/toolchain/prefix/include/c++/4.9 --with-bugurl=http://source.android.com/source/report-bugs.html --enable-languages=c,c++ --disable-bootstrap --enable-plugins --enable-libgomp --enable-gnu-indirect-function --disable-libsanitizer --enable-gold --enable-threads --enable-graphite=yes --with-cloog-version=0.18.0 --with-isl-version=0.11.1 --enable-eh-frame-hdr-for-static --with-arch=armv5te --program-transform-name='s&^&arm-linux-androideabi-&' --enable-gold=default +Thread model: posix +gcc version 4.9 20140827 (prerelease) (GCC) +configure:3559: $? = 0 +configure:3548: arm-linux-androideabi-gcc -V >&5 +arm-linux-androideabi-gcc: error: unrecognized command line option '-V' +arm-linux-androideabi-gcc: fatal error: no input files +compilation terminated. +configure:3559: $? = 1 +configure:3548: arm-linux-androideabi-gcc -qversion >&5 +arm-linux-androideabi-gcc: error: unrecognized command line option '-qversion' +arm-linux-androideabi-gcc: fatal error: no input files +compilation terminated. +configure:3559: $? = 1 +configure:3579: checking whether the C compiler works +configure:3601: arm-linux-androideabi-gcc conftest.c >&5 +configure:3605: $? = 0 +configure:3653: result: yes +configure:3656: checking for C compiler default output file name +configure:3658: result: a.out +configure:3664: checking for suffix of executables +configure:3671: arm-linux-androideabi-gcc -o conftest conftest.c >&5 +configure:3675: $? = 0 +configure:3697: result: +configure:3719: checking whether we are cross compiling +configure:3727: arm-linux-androideabi-gcc -o conftest conftest.c >&5 +configure:3731: $? = 0 +configure:3738: ./conftest +./configure: line 3740: ./conftest: cannot execute binary file: Exec format error +configure:3742: $? = 126 +configure:3757: result: yes +configure:3762: checking for suffix of object files +configure:3784: arm-linux-androideabi-gcc -c conftest.c >&5 +configure:3788: $? = 0 +configure:3809: result: o +configure:3813: checking whether we are using the GNU C compiler +configure:3832: arm-linux-androideabi-gcc -c conftest.c >&5 +configure:3832: $? = 0 +configure:3841: result: yes +configure:3850: checking whether arm-linux-androideabi-gcc accepts -g +configure:3870: arm-linux-androideabi-gcc -c -g conftest.c >&5 +configure:3870: $? = 0 +configure:3911: result: yes +configure:3928: checking for arm-linux-androideabi-gcc option to accept ISO C89 +configure:3991: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:3991: $? = 0 +configure:4004: result: none needed +configure:4026: checking dependency style of arm-linux-androideabi-gcc +configure:4137: result: gcc3 +configure:4152: checking for a sed that does not truncate output +configure:4216: result: /bin/sed +configure:4234: checking for grep that handles long lines and -e +configure:4292: result: /bin/grep +configure:4297: checking for egrep +configure:4359: result: /bin/grep -E +configure:4364: checking for fgrep +configure:4426: result: /bin/grep -F +configure:4461: checking for ld used by arm-linux-androideabi-gcc +configure:4528: result: /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld +configure:4535: checking if the linker (/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld) is GNU ld +configure:4550: result: yes +configure:4562: checking for BSD- or MS-compatible name lister (nm) +configure:4611: result: /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B +configure:4741: checking the name lister (/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B) interface +configure:4748: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:4751: /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B "conftest.o" +configure:4754: output +00000000 B some_variable +configure:4761: result: BSD nm +configure:4764: checking whether ln -s works +configure:4768: result: yes +configure:4776: checking the maximum length of command line arguments +configure:4906: result: 1572864 +configure:4923: checking whether the shell understands some XSI constructs +configure:4933: result: yes +configure:4937: checking whether the shell understands "+=" +configure:4943: result: yes +configure:4978: checking how to convert x86_64-unknown-linux-gnu file names to arm-unknown-linux-androideabi format +configure:5018: result: func_convert_file_noop +configure:5025: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format +configure:5045: result: func_convert_file_noop +configure:5052: checking for /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld option to reload object files +configure:5059: result: -r +configure:5093: checking for arm-linux-androideabi-objdump +configure:5109: found /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-objdump +configure:5120: result: arm-linux-androideabi-objdump +configure:5192: checking how to recognize dependent libraries +configure:5394: result: pass_all +configure:5439: checking for arm-linux-androideabi-dlltool +configure:5469: result: no +configure:5479: checking for dlltool +configure:5509: result: no +configure:5539: checking how to associate runtime and link libraries +configure:5566: result: printf %s\n +configure:5583: checking for arm-linux-androideabi-ar +configure:5599: found /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-ar +configure:5610: result: arm-linux-androideabi-ar +configure:5691: checking for archiver @FILE support +configure:5708: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:5708: $? = 0 +configure:5711: arm-linux-androideabi-ar cru libconftest.a @conftest.lst >&5 +configure:5714: $? = 0 +configure:5719: arm-linux-androideabi-ar cru libconftest.a @conftest.lst >&5 +arm-linux-androideabi-ar: conftest.o: No such file or directory +configure:5722: $? = 1 +configure:5734: result: @ +configure:5752: checking for arm-linux-androideabi-strip +configure:5779: result: arm-linux-androideabi-strip +configure:5851: checking for arm-linux-androideabi-ranlib +configure:5867: found /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-ranlib +configure:5878: result: arm-linux-androideabi-ranlib +configure:6020: checking command to parse /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B output from arm-linux-androideabi-gcc object +configure:6140: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:6143: $? = 0 +configure:6147: /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm +configure:6150: $? = 0 +configure:6216: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c conftstm.o >&5 +configure:6219: $? = 0 +configure:6257: result: ok +configure:6294: checking for sysroot +configure:6324: result: no +configure:6546: checking for arm-linux-androideabi-mt +configure:6576: result: no +configure:6586: checking for mt +configure:6602: found /bin/mt +configure:6613: result: mt +configure:6625: WARNING: using cross tools not prefixed with host triplet +configure:6636: checking if mt is a manifest tool +configure:6642: mt '-?' +configure:6650: result: no +configure:7292: checking how to run the C preprocessor +configure:7323: arm-linux-androideabi-gcc -E conftest.c +configure:7323: $? = 0 +configure:7337: arm-linux-androideabi-gcc -E conftest.c +conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory + #include + ^ +compilation terminated. +configure:7337: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "libuuid" +| #define PACKAGE_TARNAME "libuuid" +| #define PACKAGE_VERSION "1.0.3" +| #define PACKAGE_STRING "libuuid 1.0.3" +| #define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +| #define PACKAGE_URL "" +| #define PACKAGE "libuuid" +| #define VERSION "1.0.3" +| /* end confdefs.h. */ +| #include +configure:7362: result: arm-linux-androideabi-gcc -E +configure:7382: arm-linux-androideabi-gcc -E conftest.c +configure:7382: $? = 0 +configure:7396: arm-linux-androideabi-gcc -E conftest.c +conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory + #include + ^ +compilation terminated. +configure:7396: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "libuuid" +| #define PACKAGE_TARNAME "libuuid" +| #define PACKAGE_VERSION "1.0.3" +| #define PACKAGE_STRING "libuuid 1.0.3" +| #define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +| #define PACKAGE_URL "" +| #define PACKAGE "libuuid" +| #define VERSION "1.0.3" +| /* end confdefs.h. */ +| #include +configure:7425: checking for ANSI C header files +configure:7445: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7445: $? = 0 +configure:7529: result: yes +configure:7542: checking for sys/types.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7542: checking for sys/stat.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7542: checking for stdlib.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7542: checking for string.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7542: checking for memory.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7542: checking for strings.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7542: checking for inttypes.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7542: checking for stdint.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7542: checking for unistd.h +configure:7542: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7542: $? = 0 +configure:7542: result: yes +configure:7556: checking for dlfcn.h +configure:7556: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:7556: $? = 0 +configure:7556: result: yes +configure:7762: checking for objdir +configure:7777: result: .libs +configure:8044: checking if arm-linux-androideabi-gcc supports -fno-rtti -fno-exceptions +configure:8062: arm-linux-androideabi-gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 +cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C +configure:8066: $? = 0 +configure:8079: result: no +configure:8406: checking for arm-linux-androideabi-gcc option to produce PIC +configure:8413: result: -fPIC -DPIC +configure:8421: checking if arm-linux-androideabi-gcc PIC flag -fPIC -DPIC works +configure:8439: arm-linux-androideabi-gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 +configure:8443: $? = 0 +configure:8456: result: yes +configure:8485: checking if arm-linux-androideabi-gcc static flag -static works +configure:8513: result: yes +configure:8528: checking if arm-linux-androideabi-gcc supports -c -o file.o +configure:8549: arm-linux-androideabi-gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 +configure:8553: $? = 0 +configure:8575: result: yes +configure:8583: checking if arm-linux-androideabi-gcc supports -c -o file.o +configure:8630: result: yes +configure:8663: checking whether the arm-linux-androideabi-gcc linker (/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld) supports shared libraries +configure:9816: result: yes +configure:9853: checking whether -lc should be explicitly linked in +configure:9861: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:9864: $? = 0 +configure:9879: arm-linux-androideabi-gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 +configure:9882: $? = 0 +configure:9896: result: no +configure:10056: checking dynamic linker characteristics +configure:10567: arm-linux-androideabi-gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 +configure:10567: $? = 0 +configure:10793: result: GNU/Linux ld.so +configure:10900: checking how to hardcode library paths into programs +configure:10925: result: immediate +configure:11465: checking whether stripping libraries is possible +configure:11470: result: yes +configure:11505: checking if libtool supports shared libraries +configure:11507: result: yes +configure:11510: checking whether to build shared libraries +configure:11531: result: yes +configure:11534: checking whether to build static libraries +configure:11538: result: yes +configure:11585: checking for arm-linux-androideabi-gcc +configure:11612: result: arm-linux-androideabi-gcc +configure:11881: checking for C compiler version +configure:11890: arm-linux-androideabi-gcc --version >&5 +arm-linux-androideabi-gcc (GCC) 4.9 20140827 (prerelease) +Copyright (C) 2014 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:11901: $? = 0 +configure:11890: arm-linux-androideabi-gcc -v >&5 +Using built-in specs. +COLLECT_GCC=arm-linux-androideabi-gcc +COLLECT_LTO_WRAPPER=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/../libexec/gcc/arm-linux-androideabi/4.9/lto-wrapper +Target: arm-linux-androideabi +Configured with: /s/ndk-toolchain/src/build/../gcc/gcc-4.9/configure --prefix=/tmp/ndk-andrewhsieh/build/toolchain/prefix --target=arm-linux-androideabi --host=x86_64-linux-gnu --build=x86_64-linux-gnu --with-gnu-as --with-gnu-ld --enable-languages=c,c++ --with-gmp=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-mpfr=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-mpc=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-cloog=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-isl=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --with-ppl=/tmp/ndk-andrewhsieh/build/toolchain/temp-install --disable-ppl-version-check --disable-cloog-version-check --disable-isl-version-check --enable-cloog-backend=isl --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --disable-libssp --enable-threads --disable-nls --disable-libmudflap --disable-libgomp --disable-libstdc__-v3 --disable-sjlj-exceptions --disable-shared --disable-tls --disable-libitm --with-float=soft --with-fpu=vfp --with-arch=armv5te --enable-target-optspace --enable-initfini-array --disable-nls --prefix=/tmp/ndk-andrewhsieh/build/toolchain/prefix --with-sysroot=/tmp/ndk-andrewhsieh/build/toolchain/prefix/sysroot --with-binutils-version=2.25 --with-mpfr-version=3.1.1 --with-mpc-version=1.0.1 --with-gmp-version=5.0.5 --with-gcc-version=4.9 --with-gdb-version=7.7 --with-python=/usr/local/google/home/andrewhsieh/mydroid/ndk/prebuilt/linux-x86_64/bin/python-config.sh --with-gxx-include-dir=/tmp/ndk-andrewhsieh/build/toolchain/prefix/include/c++/4.9 --with-bugurl=http://source.android.com/source/report-bugs.html --enable-languages=c,c++ --disable-bootstrap --enable-plugins --enable-libgomp --enable-gnu-indirect-function --disable-libsanitizer --enable-gold --enable-threads --enable-graphite=yes --with-cloog-version=0.18.0 --with-isl-version=0.11.1 --enable-eh-frame-hdr-for-static --with-arch=armv5te --program-transform-name='s&^&arm-linux-androideabi-&' --enable-gold=default +Thread model: posix +gcc version 4.9 20140827 (prerelease) (GCC) +configure:11901: $? = 0 +configure:11890: arm-linux-androideabi-gcc -V >&5 +arm-linux-androideabi-gcc: error: unrecognized command line option '-V' +arm-linux-androideabi-gcc: fatal error: no input files +compilation terminated. +configure:11901: $? = 1 +configure:11890: arm-linux-androideabi-gcc -qversion >&5 +arm-linux-androideabi-gcc: error: unrecognized command line option '-qversion' +arm-linux-androideabi-gcc: fatal error: no input files +compilation terminated. +configure:11901: $? = 1 +configure:11905: checking whether we are using the GNU C compiler +configure:11933: result: yes +configure:11942: checking whether arm-linux-androideabi-gcc accepts -g +configure:12003: result: yes +configure:12020: checking for arm-linux-androideabi-gcc option to accept ISO C89 +configure:12096: result: none needed +configure:12118: checking dependency style of arm-linux-androideabi-gcc +configure:12229: result: gcc3 +configure:12248: checking for library containing socket +configure:12279: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c >&5 +configure:12279: $? = 0 +configure:12296: result: none required +configure:12312: checking fcntl.h usability +configure:12312: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking fcntl.h presence +configure:12312: arm-linux-androideabi-gcc -E conftest.c +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking for fcntl.h +configure:12312: result: yes +configure:12312: checking for inttypes.h +configure:12312: result: yes +configure:12312: checking limits.h usability +configure:12312: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking limits.h presence +configure:12312: arm-linux-androideabi-gcc -E conftest.c +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking for limits.h +configure:12312: result: yes +configure:12312: checking netinet/in.h usability +configure:12312: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking netinet/in.h presence +configure:12312: arm-linux-androideabi-gcc -E conftest.c +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking for netinet/in.h +configure:12312: result: yes +configure:12312: checking for stdlib.h +configure:12312: result: yes +configure:12312: checking for string.h +configure:12312: result: yes +configure:12312: checking sys/file.h usability +configure:12312: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking sys/file.h presence +configure:12312: arm-linux-androideabi-gcc -E conftest.c +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking for sys/file.h +configure:12312: result: yes +configure:12312: checking sys/ioctl.h usability +configure:12312: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking sys/ioctl.h presence +configure:12312: arm-linux-androideabi-gcc -E conftest.c +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking for sys/ioctl.h +configure:12312: result: yes +configure:12312: checking sys/socket.h usability +configure:12312: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking sys/socket.h presence +configure:12312: arm-linux-androideabi-gcc -E conftest.c +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking for sys/socket.h +configure:12312: result: yes +configure:12312: checking sys/time.h usability +configure:12312: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking sys/time.h presence +configure:12312: arm-linux-androideabi-gcc -E conftest.c +configure:12312: $? = 0 +configure:12312: result: yes +configure:12312: checking for sys/time.h +configure:12312: result: yes +configure:12312: checking for unistd.h +configure:12312: result: yes +configure:12322: checking whether _SC_HOST_NAME_MAX is declared +configure:12322: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:74:10: error: '_SC_HOST_NAME_MAX' undeclared (first use in this function) + (void) _SC_HOST_NAME_MAX; + ^ +conftest.c:74:10: note: each undeclared identifier is reported only once for each function it appears in +configure:12322: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "libuuid" +| #define PACKAGE_TARNAME "libuuid" +| #define PACKAGE_VERSION "1.0.3" +| #define PACKAGE_STRING "libuuid 1.0.3" +| #define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +| #define PACKAGE_URL "" +| #define PACKAGE "libuuid" +| #define VERSION "1.0.3" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_FCNTL_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| int +| main () +| { +| #ifndef _SC_HOST_NAME_MAX +| #ifdef __cplusplus +| (void) _SC_HOST_NAME_MAX; +| #else +| (void) _SC_HOST_NAME_MAX; +| #endif +| #endif +| +| ; +| return 0; +| } +configure:12322: result: no +configure:12335: checking for int32_t +configure:12335: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12335: $? = 0 +configure:12335: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:73:53: warning: integer overflow in expression [-Woverflow] + < (int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 2))]; + ^ +conftest.c:72:12: error: storage size of 'test_array' isn't constant + static int test_array [1 - 2 * !((int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 1) + ^ +configure:12335: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "libuuid" +| #define PACKAGE_TARNAME "libuuid" +| #define PACKAGE_VERSION "1.0.3" +| #define PACKAGE_STRING "libuuid 1.0.3" +| #define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +| #define PACKAGE_URL "" +| #define PACKAGE "libuuid" +| #define VERSION "1.0.3" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_FCNTL_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DECL__SC_HOST_NAME_MAX 0 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| enum { N = 32 / 2 - 1 }; +| int +| main () +| { +| static int test_array [1 - 2 * !((int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 1) +| < (int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 2))]; +| test_array [0] = 0; +| return test_array [0]; +| +| ; +| return 0; +| } +configure:12335: result: yes +configure:12346: checking for mode_t +configure:12346: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12346: $? = 0 +configure:12346: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:71:21: error: expected expression before ')' token + if (sizeof ((mode_t))) + ^ +configure:12346: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "libuuid" +| #define PACKAGE_TARNAME "libuuid" +| #define PACKAGE_VERSION "1.0.3" +| #define PACKAGE_STRING "libuuid 1.0.3" +| #define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +| #define PACKAGE_URL "" +| #define PACKAGE "libuuid" +| #define VERSION "1.0.3" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_FCNTL_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DECL__SC_HOST_NAME_MAX 0 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| int +| main () +| { +| if (sizeof ((mode_t))) +| return 0; +| ; +| return 0; +| } +configure:12346: result: yes +configure:12357: checking for size_t +configure:12357: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12357: $? = 0 +configure:12357: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:71:21: error: expected expression before ')' token + if (sizeof ((size_t))) + ^ +configure:12357: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "libuuid" +| #define PACKAGE_TARNAME "libuuid" +| #define PACKAGE_VERSION "1.0.3" +| #define PACKAGE_STRING "libuuid 1.0.3" +| #define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +| #define PACKAGE_URL "" +| #define PACKAGE "libuuid" +| #define VERSION "1.0.3" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_FCNTL_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DECL__SC_HOST_NAME_MAX 0 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| int +| main () +| { +| if (sizeof ((size_t))) +| return 0; +| ; +| return 0; +| } +configure:12357: result: yes +configure:12368: checking for ssize_t +configure:12368: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12368: $? = 0 +configure:12368: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:71:22: error: expected expression before ')' token + if (sizeof ((ssize_t))) + ^ +configure:12368: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "libuuid" +| #define PACKAGE_TARNAME "libuuid" +| #define PACKAGE_VERSION "1.0.3" +| #define PACKAGE_STRING "libuuid 1.0.3" +| #define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +| #define PACKAGE_URL "" +| #define PACKAGE "libuuid" +| #define VERSION "1.0.3" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_FCNTL_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DECL__SC_HOST_NAME_MAX 0 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| int +| main () +| { +| if (sizeof ((ssize_t))) +| return 0; +| ; +| return 0; +| } +configure:12368: result: yes +configure:12379: checking for uint16_t +configure:12379: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12379: $? = 0 +configure:12379: result: yes +configure:12391: checking for uint32_t +configure:12391: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12391: $? = 0 +configure:12391: result: yes +configure:12405: checking for uint64_t +configure:12405: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12405: $? = 0 +configure:12405: result: yes +configure:12419: checking for uint8_t +configure:12419: arm-linux-androideabi-gcc -c -g -O2 conftest.c >&5 +configure:12419: $? = 0 +configure:12419: result: yes +configure:12438: checking for ftruncate +configure:12438: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c >&5 +configure:12438: $? = 0 +configure:12438: result: yes +configure:12438: checking for gettimeofday +configure:12438: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c >&5 +configure:12438: $? = 0 +configure:12438: result: yes +configure:12438: checking for memset +configure:12438: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c >&5 +conftest.c:60:6: warning: conflicting types for built-in function 'memset' + char memset (); + ^ +configure:12438: $? = 0 +configure:12438: result: yes +configure:12438: checking for socket +configure:12438: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c >&5 +configure:12438: $? = 0 +configure:12438: result: yes +configure:12438: checking for strtoul +configure:12438: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c >&5 +configure:12438: $? = 0 +configure:12438: result: yes +configure:12438: checking for usleep +configure:12438: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c >&5 +configure:12438: $? = 0 +configure:12438: result: yes +configure:12438: checking for srandom +configure:12438: arm-linux-androideabi-gcc -o conftest -g -O2 conftest.c >&5 +conftest.c:75: error: undefined reference to 'srandom' +collect2: error: ld returned 1 exit status +configure:12438: $? = 1 +configure: failed program was: +| /* confdefs.h */ +| #define PACKAGE_NAME "libuuid" +| #define PACKAGE_TARNAME "libuuid" +| #define PACKAGE_VERSION "1.0.3" +| #define PACKAGE_STRING "libuuid 1.0.3" +| #define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +| #define PACKAGE_URL "" +| #define PACKAGE "libuuid" +| #define VERSION "1.0.3" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DLFCN_H 1 +| #define LT_OBJDIR ".libs/" +| #define HAVE_FCNTL_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_SYS_IOCTL_H 1 +| #define HAVE_SYS_SOCKET_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_DECL__SC_HOST_NAME_MAX 0 +| #define HAVE_FTRUNCATE 1 +| #define HAVE_GETTIMEOFDAY 1 +| #define HAVE_MEMSET 1 +| #define HAVE_SOCKET 1 +| #define HAVE_STRTOUL 1 +| #define HAVE_USLEEP 1 +| /* end confdefs.h. */ +| /* Define srandom to an innocuous variant, in case declares srandom. +| For example, HP-UX 11i declares gettimeofday. */ +| #define srandom innocuous_srandom +| +| /* System header to define __stub macros and hopefully few prototypes, +| which can conflict with char srandom (); below. +| Prefer to if __STDC__ is defined, since +| exists even on freestanding compilers. */ +| +| #ifdef __STDC__ +| # include +| #else +| # include +| #endif +| +| #undef srandom +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char srandom (); +| /* The GNU C library defines this for functions which it implements +| to always fail with ENOSYS. Some functions are actually named +| something starting with __ and the normal name is an alias. */ +| #if defined __stub_srandom || defined __stub___srandom +| choke me +| #endif +| +| int +| main () +| { +| return srandom (); +| ; +| return 0; +| } +configure:12438: result: no +configure:12571: checking that generated files are newer than configure +configure:12577: result: done +configure:12604: creating ./config.status + +## ---------------------- ## +## Running config.status. ## +## ---------------------- ## + +This file was extended by libuuid config.status 1.0.3, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = + CONFIG_HEADERS = + CONFIG_LINKS = + CONFIG_COMMANDS = + $ ./config.status + +on rh-precision-t1700 + +config.status:1102: creating Makefile +config.status:1102: creating uuid.pc +config.status:1102: creating config.h +config.status:1283: config.h is unchanged +config.status:1331: executing depfiles commands +config.status:1331: executing libtool commands + +## ---------------- ## +## Cache variables. ## +## ---------------- ## + +ac_cv_build=x86_64-unknown-linux-gnu +ac_cv_c_compiler_gnu=yes +ac_cv_c_int32_t=yes +ac_cv_c_uint16_t=yes +ac_cv_c_uint32_t=yes +ac_cv_c_uint64_t=yes +ac_cv_c_uint8_t=yes +ac_cv_env_CC_set= +ac_cv_env_CC_value= +ac_cv_env_CFLAGS_set= +ac_cv_env_CFLAGS_value= +ac_cv_env_CPPFLAGS_set= +ac_cv_env_CPPFLAGS_value= +ac_cv_env_CPP_set= +ac_cv_env_CPP_value= +ac_cv_env_LDFLAGS_set= +ac_cv_env_LDFLAGS_value= +ac_cv_env_LIBS_set= +ac_cv_env_LIBS_value= +ac_cv_env_build_alias_set= +ac_cv_env_build_alias_value= +ac_cv_env_host_alias_set=set +ac_cv_env_host_alias_value=arm-linux-androideabi +ac_cv_env_target_alias_set= +ac_cv_env_target_alias_value= +ac_cv_func_ftruncate=yes +ac_cv_func_gettimeofday=yes +ac_cv_func_memset=yes +ac_cv_func_socket=yes +ac_cv_func_srandom=no +ac_cv_func_strtoul=yes +ac_cv_func_usleep=yes +ac_cv_have_decl__SC_HOST_NAME_MAX=no +ac_cv_header_dlfcn_h=yes +ac_cv_header_fcntl_h=yes +ac_cv_header_inttypes_h=yes +ac_cv_header_limits_h=yes +ac_cv_header_memory_h=yes +ac_cv_header_netinet_in_h=yes +ac_cv_header_stdc=yes +ac_cv_header_stdint_h=yes +ac_cv_header_stdlib_h=yes +ac_cv_header_string_h=yes +ac_cv_header_strings_h=yes +ac_cv_header_sys_file_h=yes +ac_cv_header_sys_ioctl_h=yes +ac_cv_header_sys_socket_h=yes +ac_cv_header_sys_stat_h=yes +ac_cv_header_sys_time_h=yes +ac_cv_header_sys_types_h=yes +ac_cv_header_unistd_h=yes +ac_cv_host=arm-unknown-linux-androideabi +ac_cv_objext=o +ac_cv_path_EGREP='/bin/grep -E' +ac_cv_path_FGREP='/bin/grep -F' +ac_cv_path_GREP=/bin/grep +ac_cv_path_SED=/bin/sed +ac_cv_path_install='/usr/bin/install -c' +ac_cv_path_mkdir=/bin/mkdir +ac_cv_prog_AR=arm-linux-androideabi-ar +ac_cv_prog_AWK=gawk +ac_cv_prog_CC=arm-linux-androideabi-gcc +ac_cv_prog_CPP='arm-linux-androideabi-gcc -E' +ac_cv_prog_OBJDUMP=arm-linux-androideabi-objdump +ac_cv_prog_RANLIB=arm-linux-androideabi-ranlib +ac_cv_prog_STRIP=arm-linux-androideabi-strip +ac_cv_prog_ac_ct_MANIFEST_TOOL=mt +ac_cv_prog_cc_c89= +ac_cv_prog_cc_g=yes +ac_cv_prog_make_make_set=yes +ac_cv_search_socket='none required' +ac_cv_type_mode_t=yes +ac_cv_type_size_t=yes +ac_cv_type_ssize_t=yes +am_cv_CC_dependencies_compiler_type=gcc3 +am_cv_make_support_nested_variables=yes +lt_cv_ar_at_file=@ +lt_cv_archive_cmds_need_lc=no +lt_cv_deplibs_check_method=pass_all +lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_ld_reload_flag=-r +lt_cv_nm_interface='BSD nm' +lt_cv_objdir=.libs +lt_cv_path_LD=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld +lt_cv_path_NM='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B' +lt_cv_path_mainfest_tool=no +lt_cv_prog_compiler_c_o=yes +lt_cv_prog_compiler_pic='-fPIC -DPIC' +lt_cv_prog_compiler_pic_works=yes +lt_cv_prog_compiler_rtti_exceptions=no +lt_cv_prog_compiler_static_works=yes +lt_cv_prog_gnu_ld=yes +lt_cv_sharedlib_from_linklib_cmd='printf %s\n' +lt_cv_shlibpath_overrides_runpath=yes +lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_max_cmd_len=1572864 +lt_cv_to_host_file_cmd=func_convert_file_noop +lt_cv_to_tool_file_cmd=func_convert_file_noop + +## ----------------- ## +## Output variables. ## +## ----------------- ## + +ACLOCAL='${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing aclocal-1.13' +AMDEPBACKSLASH='\' +AMDEP_FALSE='#' +AMDEP_TRUE='' +AMTAR='$${TAR-tar}' +AM_BACKSLASH='\' +AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +AM_DEFAULT_VERBOSITY='1' +AM_V='$(V)' +AR='arm-linux-androideabi-ar' +AUTOCONF='${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing autoconf' +AUTOHEADER='${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing autoheader' +AUTOMAKE='${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing automake-1.13' +AWK='gawk' +CC='arm-linux-androideabi-gcc' +CCDEPMODE='depmode=gcc3' +CFLAGS='-g -O2' +CPP='arm-linux-androideabi-gcc -E' +CPPFLAGS='' +CYGPATH_W='echo' +DEFS='-DHAVE_CONFIG_H' +DEPDIR='.deps' +DLLTOOL='false' +DSYMUTIL='' +DUMPBIN='' +ECHO_C='' +ECHO_N='-n' +ECHO_T='' +EGREP='/bin/grep -E' +EXEEXT='' +FGREP='/bin/grep -F' +GREP='/bin/grep' +INSTALL_DATA='${INSTALL} -m 644' +INSTALL_PROGRAM='${INSTALL}' +INSTALL_SCRIPT='${INSTALL}' +INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' +LD='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld' +LDFLAGS='' +LIBOBJS='' +LIBS='' +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +LIBUUID_VERSION='1.0.3' +LIBUUID_VERSION_INFO='1:0:0' +LIPO='' +LN_S='ln -s' +LTLIBOBJS='' +MAKEINFO='${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing makeinfo' +MANIFEST_TOOL=':' +MKDIR_P='/bin/mkdir -p' +NM='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B' +NMEDIT='' +OBJDUMP='arm-linux-androideabi-objdump' +OBJEXT='o' +OTOOL64='' +OTOOL='' +PACKAGE='libuuid' +PACKAGE_BUGREPORT='sloowfranklin@gmail.com' +PACKAGE_NAME='libuuid' +PACKAGE_STRING='libuuid 1.0.3' +PACKAGE_TARNAME='libuuid' +PACKAGE_URL='' +PACKAGE_VERSION='1.0.3' +PATH_SEPARATOR=':' +RANLIB='arm-linux-androideabi-ranlib' +SED='/bin/sed' +SET_MAKE='' +SHELL='/bin/bash' +SOCKET_LIBS='' +STRIP='arm-linux-androideabi-strip' +VERSION='1.0.3' +ac_ct_AR='' +ac_ct_CC='' +ac_ct_DUMPBIN='' +am__EXEEXT_FALSE='' +am__EXEEXT_TRUE='#' +am__fastdepCC_FALSE='#' +am__fastdepCC_TRUE='' +am__include='include' +am__isrc='' +am__leading_dot='.' +am__nodep='_no' +am__quote='' +am__tar='$${TAR-tar} chof - "$$tardir"' +am__untar='$${TAR-tar} xf -' +bindir='${exec_prefix}/bin' +build='x86_64-unknown-linux-gnu' +build_alias='' +build_cpu='x86_64' +build_os='linux-gnu' +build_vendor='unknown' +datadir='${datarootdir}' +datarootdir='${prefix}/share' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +dvidir='${docdir}' +exec_prefix='${prefix}' +host='arm-unknown-linux-androideabi' +host_alias='arm-linux-androideabi' +host_cpu='arm' +host_os='linux-androideabi' +host_vendor='unknown' +htmldir='${docdir}' +includedir='${prefix}/include' +infodir='${datarootdir}/info' +install_sh='${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/install-sh' +libdir='${exec_prefix}/lib' +libexecdir='${exec_prefix}/libexec' +localedir='${datarootdir}/locale' +localstatedir='${prefix}/var' +mandir='${datarootdir}/man' +mkdir_p='$(MKDIR_P)' +oldincludedir='/usr/include' +pdfdir='${docdir}' +prefix='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp' +program_transform_name='s,x,x,' +psdir='${docdir}' +sbindir='${exec_prefix}/sbin' +sharedstatedir='${prefix}/com' +sysconfdir='${prefix}/etc' +target_alias='' + +## ----------- ## +## confdefs.h. ## +## ----------- ## + +/* confdefs.h */ +#define PACKAGE_NAME "libuuid" +#define PACKAGE_TARNAME "libuuid" +#define PACKAGE_VERSION "1.0.3" +#define PACKAGE_STRING "libuuid 1.0.3" +#define PACKAGE_BUGREPORT "sloowfranklin@gmail.com" +#define PACKAGE_URL "" +#define PACKAGE "libuuid" +#define VERSION "1.0.3" +#define STDC_HEADERS 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRING_H 1 +#define HAVE_MEMORY_H 1 +#define HAVE_STRINGS_H 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_STDINT_H 1 +#define HAVE_UNISTD_H 1 +#define HAVE_DLFCN_H 1 +#define LT_OBJDIR ".libs/" +#define HAVE_FCNTL_H 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_LIMITS_H 1 +#define HAVE_NETINET_IN_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRING_H 1 +#define HAVE_SYS_FILE_H 1 +#define HAVE_SYS_IOCTL_H 1 +#define HAVE_SYS_SOCKET_H 1 +#define HAVE_SYS_TIME_H 1 +#define HAVE_UNISTD_H 1 +#define HAVE_DECL__SC_HOST_NAME_MAX 0 +#define HAVE_FTRUNCATE 1 +#define HAVE_GETTIMEOFDAY 1 +#define HAVE_MEMSET 1 +#define HAVE_SOCKET 1 +#define HAVE_STRTOUL 1 +#define HAVE_USLEEP 1 + +configure: exit 0 diff --git a/1_6.h12_dev/render/libuuid-1.0.3/config.status b/1_6.h12_dev/render/libuuid-1.0.3/config.status new file mode 100755 index 0000000..321e5c5 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/config.status @@ -0,0 +1,2066 @@ +#! /bin/bash +# Generated by configure. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=${CONFIG_SHELL-/bin/bash} +export SHELL +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by libuuid $as_me 1.0.3, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +# Files that config.status was made for. +config_files=" Makefile uuid.pc" +config_headers=" config.h" +config_commands=" depfiles libtool" + +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +ac_cs_config="'--host=arm-linux-androideabi' '--prefix=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp' 'host_alias=arm-linux-androideabi'" +ac_cs_version="\ +libuuid config.status 1.0.3 +configured by ./configure, generated by GNU Autoconf 2.69, + with options \"$ac_cs_config\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3' +srcdir='.' +INSTALL='/usr/bin/install -c' +MKDIR_P='/bin/mkdir -p' +AWK='gawk' +test -n "$AWK" || AWK=awk +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +if $ac_cs_recheck; then + set X /bin/bash './configure' '--host=arm-linux-androideabi' '--prefix=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp' 'host_alias=arm-linux-androideabi' $ac_configure_extra_args --no-create --no-recursion + shift + $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6 + CONFIG_SHELL='/bin/bash' + export CONFIG_SHELL + exec "$@" +fi + +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +# +# INIT-COMMANDS +# +AMDEP_TRUE="" ac_aux_dir="." + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' +double_quote_subst='s/\(["`\\]\)/\\\1/g' +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' +macro_version='2.4.2' +macro_revision='1.3337' +enable_shared='yes' +enable_static='yes' +pic_mode='default' +enable_fast_install='needless' +SHELL='/bin/bash' +ECHO='printf %s\n' +PATH_SEPARATOR=':' +host_alias='arm-linux-androideabi' +host='arm-unknown-linux-androideabi' +host_os='linux-androideabi' +build_alias='' +build='x86_64-unknown-linux-gnu' +build_os='linux-gnu' +SED='/bin/sed' +Xsed='/bin/sed -e 1s/^X//' +GREP='/bin/grep' +EGREP='/bin/grep -E' +FGREP='/bin/grep -F' +LD='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld' +NM='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B' +LN_S='ln -s' +max_cmd_len='1572864' +ac_objext='o' +exeext='' +lt_unset='unset' +lt_SP2NL='tr \040 \012' +lt_NL2SP='tr \015\012 \040\040' +lt_cv_to_host_file_cmd='func_convert_file_noop' +lt_cv_to_tool_file_cmd='func_convert_file_noop' +reload_flag=' -r' +reload_cmds='$LD$reload_flag -o $output$reload_objs' +OBJDUMP='arm-linux-androideabi-objdump' +deplibs_check_method='pass_all' +file_magic_cmd='$MAGIC_CMD' +file_magic_glob='' +want_nocaseglob='no' +DLLTOOL='false' +sharedlib_from_linklib_cmd='printf %s\n' +AR='arm-linux-androideabi-ar' +AR_FLAGS='cru' +archiver_list_spec='@' +STRIP='arm-linux-androideabi-strip' +RANLIB='arm-linux-androideabi-ranlib' +old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib' +old_postuninstall_cmds='' +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib' +lock_old_archive_extraction='no' +CC='arm-linux-androideabi-gcc' +CFLAGS='-g -O2' +compiler='arm-linux-androideabi-gcc' +GCC='yes' +lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' +nm_file_list_spec='@' +lt_sysroot='' +objdir='.libs' +MAGIC_CMD='file' +lt_prog_compiler_no_builtin_flag=' -fno-builtin' +lt_prog_compiler_pic=' -fPIC -DPIC' +lt_prog_compiler_wl='-Wl,' +lt_prog_compiler_static='-static' +lt_cv_prog_compiler_c_o='yes' +need_locks='no' +MANIFEST_TOOL=':' +DSYMUTIL='' +NMEDIT='' +LIPO='' +OTOOL='' +OTOOL64='' +libext='a' +shrext_cmds='.so' +extract_expsyms_cmds='' +archive_cmds_need_lc='no' +enable_shared_with_static_runtimes='no' +export_dynamic_flag_spec='${wl}--export-dynamic' +whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' +compiler_needs_object='no' +old_archive_from_new_cmds='' +old_archive_from_expsyms_cmds='' +archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' +archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' +module_cmds='' +module_expsym_cmds='' +with_gnu_ld='yes' +allow_undefined_flag='' +no_undefined_flag='' +hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' +hardcode_libdir_separator='' +hardcode_direct='no' +hardcode_direct_absolute='no' +hardcode_minus_L='no' +hardcode_shlibpath_var='unsupported' +hardcode_automatic='no' +inherit_rpath='no' +link_all_deplibs='unknown' +always_export_symbols='no' +export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' +exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' +include_expsyms='' +prelink_cmds='' +postlink_cmds='' +file_list_spec='' +variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH' +need_lib_prefix='no' +need_version='no' +version_type='linux' +runpath_var='LD_RUN_PATH' +shlibpath_var='LD_LIBRARY_PATH' +shlibpath_overrides_runpath='yes' +libname_spec='lib$name' +library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' +soname_spec='${libname}${release}${shared_ext}$major' +install_override_mode='' +postinstall_cmds='' +postuninstall_cmds='' +finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' +finish_eval='' +hardcode_into_libs='yes' +sys_lib_search_path_spec='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9 /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/lib /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/lib ' +sys_lib_dlsearch_path_spec='/lib64 /usr/lib64 /lib /usr/lib /usr/lib/x86_64-linux-gnu/libfakeroot /lib/i386-linux-gnu /usr/lib/i386-linux-gnu /lib/i686-linux-gnu /usr/lib/i686-linux-gnu /usr/lib/i386-linux-gnu/mesa /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/mesa-egl /usr/lib/x86_64-linux-gnu/mesa /lib32 /usr/lib32 /libx32 /usr/libx32 ' +hardcode_action='immediate' +enable_dlopen='unknown' +enable_dlopen_self='unknown' +enable_dlopen_self_static='unknown' +old_striplib='arm-linux-androideabi-strip --strip-debug' +striplib='arm-linux-androideabi-strip --strip-unneeded' + +LTCC='arm-linux-androideabi-gcc' +LTCFLAGS='-g -O2' +compiler='arm-linux-androideabi-gcc' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix nm_file_list_spec lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib; do + case `eval \\$ECHO \\""\\$$var"\\"` in + *[\\\`\"\$]*) + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" + ;; + *) + eval "lt_$var=\\\"\$$var\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec sys_lib_dlsearch_path_spec; do + case `eval \\$ECHO \\""\\$$var"\\"` in + *[\\\`\"\$]*) + eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" + ;; + *) + eval "lt_$var=\\\"\$$var\\\"" + ;; + esac +done + +ac_aux_dir='.' +xsi_shell='yes' +lt_shell_append='yes' + +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='libuuid' + VERSION='1.0.3' + TIMESTAMP='' + RM='rm -f' + ofile='libtool' + + + + + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "uuid.pc") CONFIG_FILES="$CONFIG_FILES uuid.pc" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +cat >>"$ac_tmp/subs1.awk" <<\_ACAWK && +S["am__EXEEXT_FALSE"]="" +S["am__EXEEXT_TRUE"]="#" +S["LTLIBOBJS"]="" +S["LIBOBJS"]="" +S["LIBUUID_VERSION_INFO"]="1:0:0" +S["LIBUUID_VERSION"]="1.0.3" +S["SOCKET_LIBS"]="" +S["CPP"]="arm-linux-androideabi-gcc -E" +S["OTOOL64"]="" +S["OTOOL"]="" +S["LIPO"]="" +S["NMEDIT"]="" +S["DSYMUTIL"]="" +S["MANIFEST_TOOL"]=":" +S["RANLIB"]="arm-linux-androideabi-ranlib" +S["ac_ct_AR"]="" +S["AR"]="arm-linux-androideabi-ar" +S["DLLTOOL"]="false" +S["OBJDUMP"]="arm-linux-androideabi-objdump" +S["LN_S"]="ln -s" +S["NM"]="/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B" +S["ac_ct_DUMPBIN"]="" +S["DUMPBIN"]="" +S["LD"]="/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld" +S["FGREP"]="/bin/grep -F" +S["EGREP"]="/bin/grep -E" +S["GREP"]="/bin/grep" +S["SED"]="/bin/sed" +S["am__fastdepCC_FALSE"]="#" +S["am__fastdepCC_TRUE"]="" +S["CCDEPMODE"]="depmode=gcc3" +S["am__nodep"]="_no" +S["AMDEPBACKSLASH"]="\\" +S["AMDEP_FALSE"]="#" +S["AMDEP_TRUE"]="" +S["am__quote"]="" +S["am__include"]="include" +S["DEPDIR"]=".deps" +S["OBJEXT"]="o" +S["EXEEXT"]="" +S["ac_ct_CC"]="" +S["CPPFLAGS"]="" +S["LDFLAGS"]="" +S["CFLAGS"]="-g -O2" +S["CC"]="arm-linux-androideabi-gcc" +S["host_os"]="linux-androideabi" +S["host_vendor"]="unknown" +S["host_cpu"]="arm" +S["host"]="arm-unknown-linux-androideabi" +S["build_os"]="linux-gnu" +S["build_vendor"]="unknown" +S["build_cpu"]="x86_64" +S["build"]="x86_64-unknown-linux-gnu" +S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool" +S["AM_BACKSLASH"]="\\" +S["AM_DEFAULT_VERBOSITY"]="1" +S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)" +S["AM_V"]="$(V)" +S["am__untar"]="$${TAR-tar} xf -" +S["am__tar"]="$${TAR-tar} chof - \"$$tardir\"" +S["AMTAR"]="$${TAR-tar}" +S["am__leading_dot"]="." +S["SET_MAKE"]="" +S["AWK"]="gawk" +S["mkdir_p"]="$(MKDIR_P)" +S["MKDIR_P"]="/bin/mkdir -p" +S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s" +S["STRIP"]="arm-linux-androideabi-strip" +S["install_sh"]="${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/install-sh" +S["MAKEINFO"]="${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing makeinfo" +S["AUTOHEADER"]="${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing autoheader" +S["AUTOMAKE"]="${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing automake-1.13" +S["AUTOCONF"]="${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing autoconf" +S["ACLOCAL"]="${SHELL} /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/missing aclocal-1.13" +S["VERSION"]="1.0.3" +S["PACKAGE"]="libuuid" +S["CYGPATH_W"]="echo" +S["am__isrc"]="" +S["INSTALL_DATA"]="${INSTALL} -m 644" +S["INSTALL_SCRIPT"]="${INSTALL}" +S["INSTALL_PROGRAM"]="${INSTALL}" +S["target_alias"]="" +S["host_alias"]="arm-linux-androideabi" +S["build_alias"]="" +S["LIBS"]="" +S["ECHO_T"]="" +S["ECHO_N"]="-n" +S["ECHO_C"]="" +S["DEFS"]="-DHAVE_CONFIG_H" +S["mandir"]="${datarootdir}/man" +S["localedir"]="${datarootdir}/locale" +S["libdir"]="${exec_prefix}/lib" +S["psdir"]="${docdir}" +S["pdfdir"]="${docdir}" +S["dvidir"]="${docdir}" +S["htmldir"]="${docdir}" +S["infodir"]="${datarootdir}/info" +S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}" +S["oldincludedir"]="/usr/include" +S["includedir"]="${prefix}/include" +S["localstatedir"]="${prefix}/var" +S["sharedstatedir"]="${prefix}/com" +S["sysconfdir"]="${prefix}/etc" +S["datadir"]="${datarootdir}" +S["datarootdir"]="${prefix}/share" +S["libexecdir"]="${exec_prefix}/libexec" +S["sbindir"]="${exec_prefix}/sbin" +S["bindir"]="${exec_prefix}/bin" +S["program_transform_name"]="s,x,x," +S["prefix"]="/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp" +S["exec_prefix"]="${prefix}" +S["PACKAGE_URL"]="" +S["PACKAGE_BUGREPORT"]="sloowfranklin@gmail.com" +S["PACKAGE_STRING"]="libuuid 1.0.3" +S["PACKAGE_VERSION"]="1.0.3" +S["PACKAGE_TARNAME"]="libuuid" +S["PACKAGE_NAME"]="libuuid" +S["PATH_SEPARATOR"]=":" +S["SHELL"]="/bin/bash" +_ACAWK +cat >>"$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +D["PACKAGE_NAME"]=" \"libuuid\"" +D["PACKAGE_TARNAME"]=" \"libuuid\"" +D["PACKAGE_VERSION"]=" \"1.0.3\"" +D["PACKAGE_STRING"]=" \"libuuid 1.0.3\"" +D["PACKAGE_BUGREPORT"]=" \"sloowfranklin@gmail.com\"" +D["PACKAGE_URL"]=" \"\"" +D["PACKAGE"]=" \"libuuid\"" +D["VERSION"]=" \"1.0.3\"" +D["STDC_HEADERS"]=" 1" +D["HAVE_SYS_TYPES_H"]=" 1" +D["HAVE_SYS_STAT_H"]=" 1" +D["HAVE_STDLIB_H"]=" 1" +D["HAVE_STRING_H"]=" 1" +D["HAVE_MEMORY_H"]=" 1" +D["HAVE_STRINGS_H"]=" 1" +D["HAVE_INTTYPES_H"]=" 1" +D["HAVE_STDINT_H"]=" 1" +D["HAVE_UNISTD_H"]=" 1" +D["HAVE_DLFCN_H"]=" 1" +D["LT_OBJDIR"]=" \".libs/\"" +D["HAVE_FCNTL_H"]=" 1" +D["HAVE_INTTYPES_H"]=" 1" +D["HAVE_LIMITS_H"]=" 1" +D["HAVE_NETINET_IN_H"]=" 1" +D["HAVE_STDLIB_H"]=" 1" +D["HAVE_STRING_H"]=" 1" +D["HAVE_SYS_FILE_H"]=" 1" +D["HAVE_SYS_IOCTL_H"]=" 1" +D["HAVE_SYS_SOCKET_H"]=" 1" +D["HAVE_SYS_TIME_H"]=" 1" +D["HAVE_UNISTD_H"]=" 1" +D["HAVE_DECL__SC_HOST_NAME_MAX"]=" 0" +D["HAVE_FTRUNCATE"]=" 1" +D["HAVE_GETTIMEOFDAY"]=" 1" +D["HAVE_MEMSET"]=" 1" +D["HAVE_SOCKET"]=" 1" +D["HAVE_STRTOUL"]=" 1" +D["HAVE_USLEEP"]=" 1" + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ { + line = $ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + ac_datarootdir_hack=' + s&@datadir@&${datarootdir}&g + s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g + s&@infodir@&${datarootdir}/info&g + s&@localedir@&${datarootdir}/locale&g + s&@mandir@&${datarootdir}/man&g + s&\${datarootdir}&${prefix}/share&g' ;; +esac +ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +} + +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="" + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and in which our libraries should be installed. +lt_sysroot=$lt_sysroot + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain="$ac_aux_dir/ltmain.sh" + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + if test x"$xsi_shell" = xyes; then + sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ +func_dirname ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_basename ()$/,/^} # func_basename /c\ +func_basename ()\ +{\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ +func_dirname_and_basename ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ +func_stripname ()\ +{\ +\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ +\ # positional parameters, so assign one to ordinary parameter first.\ +\ func_stripname_result=${3}\ +\ func_stripname_result=${func_stripname_result#"${1}"}\ +\ func_stripname_result=${func_stripname_result%"${2}"}\ +} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ +func_split_long_opt ()\ +{\ +\ func_split_long_opt_name=${1%%=*}\ +\ func_split_long_opt_arg=${1#*=}\ +} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ +func_split_short_opt ()\ +{\ +\ func_split_short_opt_arg=${1#??}\ +\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ +} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ +func_lo2o ()\ +{\ +\ case ${1} in\ +\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ +\ *) func_lo2o_result=${1} ;;\ +\ esac\ +} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_xform ()$/,/^} # func_xform /c\ +func_xform ()\ +{\ + func_xform_result=${1%.*}.lo\ +} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_arith ()$/,/^} # func_arith /c\ +func_arith ()\ +{\ + func_arith_result=$(( $* ))\ +} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_len ()$/,/^} # func_len /c\ +func_len ()\ +{\ + func_len_result=${#1}\ +} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + +fi + +if test x"$lt_shell_append" = xyes; then + sed -e '/^func_append ()$/,/^} # func_append /c\ +func_append ()\ +{\ + eval "${1}+=\\${2}"\ +} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ +func_append_quoted ()\ +{\ +\ func_quote_for_eval "${2}"\ +\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ +} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 +$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} +fi + + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 diff --git a/1_6.h12_dev/render/libuuid-1.0.3/config.sub b/1_6.h12_dev/render/libuuid-1.0.3/config.sub new file mode 100755 index 0000000..52f04bc --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/config.sub @@ -0,0 +1,1790 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011, 2012, 2013 Free Software Foundation, Inc. + +timestamp='2012-12-29' + +# This file 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 . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). + + +# Please send patches with a ChangeLog entry to config-patches@gnu.org. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, +2012, 2013 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + android-linux) + os=-linux-android + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze*) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*178) + os=-lynxos178 + ;; + -lynx*5) + os=-lynxos5 + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc \ + | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ + | avr | avr32 \ + | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | epiphany \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ + | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | microblaze-* | microblazeel-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze*) + basic_machine=microblaze-xilinx + ;; + mingw64) + basic_machine=x86_64-pc + os=-mingw64 + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + msys) + basic_machine=i386-pc + os=-msys + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos | rdos64) + basic_machine=x86_64-pc + os=-rdos + ;; + rdos32) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -bitrig* | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-musl* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + hexagon-*) + os=-elf + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/configure b/1_6.h12_dev/render/libuuid-1.0.3/configure new file mode 100755 index 0000000..f73a9ea --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/configure @@ -0,0 +1,14828 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.69 for libuuid 1.0.3. +# +# Report bugs to . +# +# +# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Use a proper internal environment variable to ensure we don't fall + # into an infinite loop, continuously re-executing ourselves. + if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then + _as_can_reexec=no; export _as_can_reexec; + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +as_fn_exit 255 + fi + # We don't want this to propagate to other subprocesses. + { _as_can_reexec=; unset _as_can_reexec;} +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1 +test -x / || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 + + test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ + || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + export CONFIG_SHELL + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: sloowfranklin@gmail.com about your system, including +$0: any error possibly output before this message. Then +$0: install a modern shell, or manually run the script +$0: under such a shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +SHELL=${CONFIG_SHELL-/bin/sh} + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='libuuid' +PACKAGE_TARNAME='libuuid' +PACKAGE_VERSION='1.0.3' +PACKAGE_STRING='libuuid 1.0.3' +PACKAGE_BUGREPORT='sloowfranklin@gmail.com' +PACKAGE_URL='' + +ac_unique_file="compare.c" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +LIBUUID_VERSION_INFO +LIBUUID_VERSION +SOCKET_LIBS +CPP +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +MANIFEST_TOOL +RANLIB +ac_ct_AR +AR +DLLTOOL +OBJDUMP +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +EGREP +GREP +SED +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +am__nodep +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CC +CPPFLAGS +LDFLAGS +CFLAGS +CC +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +LIBTOOL +AM_BACKSLASH +AM_DEFAULT_VERBOSITY +AM_DEFAULT_V +AM_V +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_silent_rules +enable_shared +enable_static +with_pic +enable_fast_install +enable_dependency_tracking +with_gnu_ld +with_sysroot +enable_libtool_lock +' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CPP' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error $? "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error $? "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error $? "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures libuuid 1.0.3 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/libuuid] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of libuuid 1.0.3:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-silent-rules less verbose build output (undo: "make V=1") + --disable-silent-rules verbose build output (undo: "make V=0") + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-static[=PKGS] build static libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --enable-dependency-tracking + do not reject slow dependency extractors + --disable-dependency-tracking + speeds up one-time build + --disable-libtool-lock avoid locking (might break parallel builds) + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use + both] + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-sysroot=DIR Search for dependent libraries within DIR + (or the compiler's sysroot if not specified). + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CPP C preprocessor + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +libuuid configure 1.0.3 +generated by GNU Autoconf 2.69 + +Copyright (C) 2012 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + test -x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_func + +# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists, giving a warning if it cannot be compiled using +# the include files in INCLUDES and setting the cache variable VAR +# accordingly. +ac_fn_c_check_header_mongrel () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if eval \${$3+:} false; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +else + # Is the header compilable? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 +$as_echo_n "checking $2 usability... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_header_compiler=yes +else + ac_header_compiler=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 +$as_echo "$ac_header_compiler" >&6; } + +# Is the header present? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 +$as_echo_n "checking $2 presence... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <$2> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + ac_header_preproc=yes +else + ac_header_preproc=no +fi +rm -f conftest.err conftest.i conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 +$as_echo "$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( + yes:no: ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; + no:yes:* ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} +( $as_echo "## -------------------------------------- ## +## Report this to sloowfranklin@gmail.com ## +## -------------------------------------- ##" + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=\$ac_header_compiler" +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_mongrel + +# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES +# --------------------------------------------- +# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR +# accordingly. +ac_fn_c_check_decl () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + as_decl_name=`echo $2|sed 's/ *(.*//'` + as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 +$as_echo_n "checking whether $as_decl_name is declared... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +#ifndef $as_decl_name +#ifdef __cplusplus + (void) $as_decl_use; +#else + (void) $as_decl_name; +#endif +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_decl + +# ac_fn_c_find_intX_t LINENO BITS VAR +# ----------------------------------- +# Finds a signed integer type with width BITS, setting cache variable VAR +# accordingly. +ac_fn_c_find_intX_t () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for int$2_t" >&5 +$as_echo_n "checking for int$2_t... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + # Order is important - never check a type that is potentially smaller + # than half of the expected target width. + for ac_type in int$2_t 'int' 'long int' \ + 'long long int' 'short int' 'signed char'; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_includes_default + enum { N = $2 / 2 - 1 }; +int +main () +{ +static int test_array [1 - 2 * !(0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))]; +test_array [0] = 0; +return test_array [0]; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_includes_default + enum { N = $2 / 2 - 1 }; +int +main () +{ +static int test_array [1 - 2 * !(($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1) + < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2))]; +test_array [0] = 0; +return test_array [0]; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + case $ac_type in #( + int$2_t) : + eval "$3=yes" ;; #( + *) : + eval "$3=\$ac_type" ;; +esac +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + if eval test \"x\$"$3"\" = x"no"; then : + +else + break +fi + done +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_find_intX_t + +# ac_fn_c_check_type LINENO TYPE VAR INCLUDES +# ------------------------------------------- +# Tests whether TYPE exists after having included INCLUDES, setting cache +# variable VAR accordingly. +ac_fn_c_check_type () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof ($2)) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof (($2))) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + eval "$3=yes" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_type + +# ac_fn_c_find_uintX_t LINENO BITS VAR +# ------------------------------------ +# Finds an unsigned integer type with width BITS, setting cache variable VAR +# accordingly. +ac_fn_c_find_uintX_t () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint$2_t" >&5 +$as_echo_n "checking for uint$2_t... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + # Order is important - never check a type that is potentially smaller + # than half of the expected target width. + for ac_type in uint$2_t 'unsigned int' 'unsigned long int' \ + 'unsigned long long int' 'unsigned short int' 'unsigned char'; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ +static int test_array [1 - 2 * !((($ac_type) -1 >> ($2 / 2 - 1)) >> ($2 / 2 - 1) == 3)]; +test_array [0] = 0; +return test_array [0]; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + case $ac_type in #( + uint$2_t) : + eval "$3=yes" ;; #( + *) : + eval "$3=\$ac_type" ;; +esac +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + if eval test \"x\$"$3"\" = x"no"; then : + +else + break +fi + done +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_find_uintX_t +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by libuuid $as_me 1.0.3, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + $as_echo "## ---------------- ## +## Cache variables. ## +## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + $as_echo "## ----------------- ## +## Output variables. ## +## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + $as_echo "## ------------------- ## +## File substitutions. ## +## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + $as_echo "## ----------- ## +## confdefs.h. ## +## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + +ac_config_headers="$ac_config_headers config.h" + +am__api_version='1.13' + +ac_aux_dir= +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if ${ac_cv_path_install+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken + alias in your environment" "$LINENO" 5 + fi + if test "$2" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error $? "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi + +rm -f conftest.file + +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if ${ac_cv_path_mkdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +# Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in # ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=1;; +esac +am_make=${MAKE-make} +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 +$as_echo_n "checking whether $am_make supports nested variables... " >&6; } +if ${am_cv_make_support_nested_variables+:} false; then : + $as_echo_n "(cached) " >&6 +else + if $as_echo 'TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 +$as_echo "$am_cv_make_support_nested_variables" >&6; } +if test $am_cv_make_support_nested_variables = yes; then + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AM_BACKSLASH='\' + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='libuuid' + VERSION='1.0.3' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# +# +mkdir_p='$(MKDIR_P)' + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' + + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar pax cpio none' + +am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' + + + + + + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.4.2' +macro_revision='1.3337' + + + + + + + + + + + + + +ltmain="$ac_aux_dir/ltmain.sh" + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if ${ac_cv_build+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if ${ac_cv_host+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 +$as_echo_n "checking how to print strings... " >&6; } +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "" +} + +case "$ECHO" in + printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 +$as_echo "printf" >&6; } ;; + print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 +$as_echo "print -r" >&6; } ;; + *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 +$as_echo "cat" >&6; } ;; +esac + + + + + + + + + + + + + + +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from 'make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details" "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if ${ac_cv_objext+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +struct stat; +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_SED" || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi +else + ac_cv_path_SED=$SED +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if ${ac_cv_path_GREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_GREP" || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if ${ac_cv_path_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_EGREP" || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if ${ac_cv_path_FGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_FGREP" || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_FGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_FGREP=$FGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 +$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } +if ${lt_cv_path_NM+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 +$as_echo "$lt_cv_path_NM" >&6; } +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + if test -n "$ac_tool_prefix"; then + for ac_prog in dumpbin "link -dump" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 +$as_echo "$DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in dumpbin "link -dump" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 +$as_echo "$ac_ct_DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 +$as_echo_n "checking the name lister ($NM) interface... " >&6; } +if ${lt_cv_nm_interface+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 +$as_echo "$lt_cv_nm_interface" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 +$as_echo_n "checking the maximum length of command line arguments... " >&6; } +if ${lt_cv_sys_max_cmd_len+:} false; then : + $as_echo_n "(cached) " >&6 +else + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n $lt_cv_sys_max_cmd_len ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 +$as_echo "$lt_cv_sys_max_cmd_len" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 +$as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 +$as_echo "$xsi_shell" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 +$as_echo_n "checking whether the shell understands \"+=\"... " >&6; } +lt_shell_append=no +( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 +$as_echo "$lt_shell_append" >&6; } + + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 +$as_echo_n "checking how to convert $build file names to $host format... " >&6; } +if ${lt_cv_to_host_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac + +fi + +to_host_file_cmd=$lt_cv_to_host_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 +$as_echo "$lt_cv_to_host_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 +$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } +if ${lt_cv_to_tool_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + #assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac + +fi + +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 +$as_echo "$lt_cv_to_tool_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 +$as_echo_n "checking for $LD option to reload object files... " >&6; } +if ${lt_cv_ld_reload_flag+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 +$as_echo "$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + if test "$GCC" != yes; then + reload_cmds=false + fi + ;; + darwin*) + if test "$GCC" = yes; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 +$as_echo_n "checking how to recognize dependent libraries... " >&6; } +if ${lt_cv_deplibs_check_method+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# `unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# which responds to the $file_magic_cmd with a given extended regex. +# If you have `file' or equivalent on your system and you're not sure +# whether `pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. + if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 +$as_echo "$lt_cv_deplibs_check_method" >&6; } + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 +$as_echo_n "checking how to associate runtime and link libraries... " >&6; } +if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 +$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + + + + + + + + +if test -n "$ac_tool_prefix"; then + for ac_prog in ar + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AR="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AR" && break + done +fi +if test -z "$AR"; then + ac_ct_AR=$AR + for ac_prog in ar +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AR="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_AR" && break +done + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +fi + +: ${AR=ar} +: ${AR_FLAGS=cru} + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 +$as_echo_n "checking for archiver @FILE support... " >&6; } +if ${lt_cv_ar_at_file+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ar_at_file=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 +$as_echo "$lt_cv_ar_at_file" >&6; } + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +$as_echo "$RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +$as_echo "$ac_ct_RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 +$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } +if ${lt_cv_sys_global_symbol_pipe+:} false; then : + $as_echo_n "(cached) " >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 + (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 +$as_echo "failed" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 +$as_echo_n "checking for sysroot... " >&6; } + +# Check whether --with-sysroot was given. +if test "${with_sysroot+set}" = set; then : + withval=$with_sysroot; +else + with_sysroot=no +fi + + +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 +$as_echo "${with_sysroot}" >&6; } + as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 + ;; +esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 +$as_echo "${lt_sysroot:-no}" >&6; } + + + + + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; +fi + +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 +$as_echo_n "checking whether the C compiler needs -belf... " >&6; } +if ${lt_cv_cc_needs_belf+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes +else + lt_cv_cc_needs_belf=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 +$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. +set dummy ${ac_tool_prefix}mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$MANIFEST_TOOL"; then + ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL +if test -n "$MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 +$as_echo "$MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_MANIFEST_TOOL"; then + ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL + # Extract the first word of "mt", so it can be a program name with args. +set dummy mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_MANIFEST_TOOL"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL +if test -n "$ac_ct_MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 +$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_MANIFEST_TOOL" = x; then + MANIFEST_TOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL + fi +else + MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" +fi + +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 +$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } +if ${lt_cv_path_mainfest_tool+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&5 + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 +$as_echo "$lt_cv_path_mainfest_tool" >&6; } +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi + + + + + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 +$as_echo "$DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 +$as_echo "$ac_ct_DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 +$as_echo "$NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 +$as_echo "$ac_ct_NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 +$as_echo "$LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_LIPO="lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 +$as_echo "$ac_ct_LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +$as_echo "$OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL="otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +$as_echo "$ac_ct_OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 +$as_echo "$OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 +$as_echo "$ac_ct_OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 +$as_echo_n "checking for -single_module linker flag... " >&6; } +if ${lt_cv_apple_cc_single_mod+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&5 + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 +$as_echo "$lt_cv_apple_cc_single_mod" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 +$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } +if ${lt_cv_ld_exported_symbols_list+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes +else + lt_cv_ld_exported_symbols_list=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 +$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 +$as_echo_n "checking for -force_load linker flag... " >&6; } +if ${lt_cv_ld_force_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 + echo "$AR cru libconftest.a conftest.o" >&5 + $AR cru libconftest.a conftest.o 2>&5 + echo "$RANLIB libconftest.a" >&5 + $RANLIB libconftest.a 2>&5 + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&5 + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&5 + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 +$as_echo "$lt_cv_ld_force_load" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[012]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if ${ac_cv_prog_CPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 +_ACEOF + +fi + +done + + + + + +# Set options + + + + enable_dlopen=no + + + enable_win32_dll=no + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + # Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_static=yes +fi + + + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then : + withval=$with_pic; lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + pic_mode=default +fi + + +test -z "$pic_mode" && pic_mode=default + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 +$as_echo_n "checking for objdir... " >&6; } +if ${lt_cv_objdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 +$as_echo "$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 +$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/${ac_tool_prefix}file; then + lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + + +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 +$as_echo_n "checking for file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/file; then + lt_cv_path_MAGIC_CMD="$ac_dir/file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac +fi + +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC="$CC" +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; + *) + lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + + + if test "$GCC" = yes; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + lt_prog_compiler_wl='-Xlinker ' + if test -n "$lt_prog_compiler_pic"; then + lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='--shared' + lt_prog_compiler_static='--static' + ;; + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + *Sun\ F* | *Sun*Fortran*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Intel*\ [CF]*Compiler*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + *Portland\ Group*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic=$lt_prog_compiler_pic +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 +$as_echo "$lt_cv_prog_compiler_pic" >&6; } +lt_prog_compiler_pic=$lt_cv_prog_compiler_pic + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } +if ${lt_cv_prog_compiler_pic_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works" = xyes; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 +$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + +if test x"$lt_cv_prog_compiler_static_works" = xyes; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test "$hard_links" = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + esac + + ld_shlibs=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; + *\ \(GNU\ Binutils\)\ [3-9]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + export_dynamic_flag_spec='${wl}--export-all-symbols' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + haiku*) + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs=yes + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec= + tmp_sharedflag='--shared' ;; + xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test "$ld_shlibs" = no; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + export_dynamic_flag_spec='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' ${wl}-bernotok' + allow_undefined_flag=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + fi + archive_cmds_need_lc=yes + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + always_export_symbols=yes + file_list_spec='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, )='true' + enable_shared_with_static_runtimes=yes + exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + old_postinstall_cmds='chmod 644 $oldlib' + postlink_cmds='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + enable_shared_with_static_runtimes=yes + ;; + esac + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec='' + fi + link_all_deplibs=yes + allow_undefined_flag="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test "$GCC" = yes; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 +$as_echo_n "checking if $CC understands -b... " >&6; } +if ${lt_cv_prog_compiler__b+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler__b=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -b" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler__b=yes + fi + else + lt_cv_prog_compiler__b=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 +$as_echo "$lt_cv_prog_compiler__b" >&6; } + +if test x"$lt_cv_prog_compiler__b" = xyes; then + archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' +fi + + ;; + esac + fi + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 +$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } +if ${lt_cv_irix_exported_symbol+:} false; then : + $as_echo_n "(cached) " >&6 +else + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int foo (void) { return 0; } +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_irix_exported_symbol=yes +else + lt_cv_irix_exported_symbol=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS="$save_LDFLAGS" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 +$as_echo "$lt_cv_irix_exported_symbol" >&6; } + if test "$lt_cv_irix_exported_symbol" = yes; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + export_dynamic_flag_spec='${wl}-E' + else + case $host_os in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='${wl}-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='${wl}-z,text' + allow_undefined_flag='${wl}-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='${wl}-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='${wl}-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 +$as_echo "$ld_shlibs" >&6; } +test "$ld_shlibs" = no && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc=no + else + lt_cv_archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } + archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([A-Za-z]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[89] | openbsd2.[89].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test "X$hardcode_automatic" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && + test "$hardcode_minus_L" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 +$as_echo "$hardcode_action" >&6; } + +if test "$hardcode_action" = relink || + test "$inherit_rpath" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + *) + ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" +if test "x$ac_cv_func_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 +$as_echo_n "checking for shl_load in -ldld... " >&6; } +if ${ac_cv_lib_dld_shl_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes +else + ac_cv_lib_dld_shl_load=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 +$as_echo "$ac_cv_lib_dld_shl_load" >&6; } +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : + lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" +else + ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" +if test "x$ac_cv_func_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 +$as_echo_n "checking for dlopen in -lsvld... " >&6; } +if ${ac_cv_lib_svld_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes +else + ac_cv_lib_svld_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 +$as_echo "$ac_cv_lib_svld_dlopen" >&6; } +if test "x$ac_cv_lib_svld_dlopen" = xyes; then : + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 +$as_echo_n "checking for dld_link in -ldld... " >&6; } +if ${ac_cv_lib_dld_dld_link+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes +else + ac_cv_lib_dld_dld_link=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 +$as_echo "$ac_cv_lib_dld_dld_link" >&6; } +if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 +$as_echo_n "checking whether a program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 +$as_echo "$lt_cv_dlopen_self" >&6; } + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 +$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self_static+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 +$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 +$as_echo_n "checking whether stripping libraries is possible... " >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report which library types will actually be built + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + + + +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +CC="$lt_save_CC" + + + + + + + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + + +# Checks for programs. +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +struct stat; +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + + + +# Checks for libraries. +SOCKET_LIBS= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5 +$as_echo_n "checking for library containing socket... " >&6; } +if ${ac_cv_search_socket+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_func_search_save_LIBS=$LIBS +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char socket (); +int +main () +{ +return socket (); + ; + return 0; +} +_ACEOF +for ac_lib in '' socket; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + if ac_fn_c_try_link "$LINENO"; then : + ac_cv_search_socket=$ac_res +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext + if ${ac_cv_search_socket+:} false; then : + break +fi +done +if ${ac_cv_search_socket+:} false; then : + +else + ac_cv_search_socket=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_socket" >&5 +$as_echo "$ac_cv_search_socket" >&6; } +ac_res=$ac_cv_search_socket +if test "$ac_res" != no; then : + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + if test x"$ac_cv_search_socket" != x"none required"; then + SOCKET_LIBS="$SOCKET_LIBS -lsocket"; + fi +fi + + + +# Checks for header files. +for ac_header in fcntl.h inttypes.h limits.h netinet/in.h stdlib.h string.h sys/file.h sys/ioctl.h sys/socket.h sys/time.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + +ac_fn_c_check_decl "$LINENO" "_SC_HOST_NAME_MAX" "ac_cv_have_decl__SC_HOST_NAME_MAX" "$ac_includes_default" +if test "x$ac_cv_have_decl__SC_HOST_NAME_MAX" = xyes; then : + ac_have_decl=1 +else + ac_have_decl=0 +fi + +cat >>confdefs.h <<_ACEOF +#define HAVE_DECL__SC_HOST_NAME_MAX $ac_have_decl +_ACEOF + + +# Checks for typedefs, structures, and compiler characteristics. +ac_fn_c_find_intX_t "$LINENO" "32" "ac_cv_c_int32_t" +case $ac_cv_c_int32_t in #( + no|yes) ;; #( + *) + +cat >>confdefs.h <<_ACEOF +#define int32_t $ac_cv_c_int32_t +_ACEOF +;; +esac + +ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default" +if test "x$ac_cv_type_mode_t" = xyes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define mode_t int +_ACEOF + +fi + +ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" +if test "x$ac_cv_type_size_t" = xyes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define size_t unsigned int +_ACEOF + +fi + +ac_fn_c_check_type "$LINENO" "ssize_t" "ac_cv_type_ssize_t" "$ac_includes_default" +if test "x$ac_cv_type_ssize_t" = xyes; then : + +else + +cat >>confdefs.h <<_ACEOF +#define ssize_t int +_ACEOF + +fi + +ac_fn_c_find_uintX_t "$LINENO" "16" "ac_cv_c_uint16_t" +case $ac_cv_c_uint16_t in #( + no|yes) ;; #( + *) + + +cat >>confdefs.h <<_ACEOF +#define uint16_t $ac_cv_c_uint16_t +_ACEOF +;; + esac + +ac_fn_c_find_uintX_t "$LINENO" "32" "ac_cv_c_uint32_t" +case $ac_cv_c_uint32_t in #( + no|yes) ;; #( + *) + +$as_echo "#define _UINT32_T 1" >>confdefs.h + + +cat >>confdefs.h <<_ACEOF +#define uint32_t $ac_cv_c_uint32_t +_ACEOF +;; + esac + +ac_fn_c_find_uintX_t "$LINENO" "64" "ac_cv_c_uint64_t" +case $ac_cv_c_uint64_t in #( + no|yes) ;; #( + *) + +$as_echo "#define _UINT64_T 1" >>confdefs.h + + +cat >>confdefs.h <<_ACEOF +#define uint64_t $ac_cv_c_uint64_t +_ACEOF +;; + esac + +ac_fn_c_find_uintX_t "$LINENO" "8" "ac_cv_c_uint8_t" +case $ac_cv_c_uint8_t in #( + no|yes) ;; #( + *) + +$as_echo "#define _UINT8_T 1" >>confdefs.h + + +cat >>confdefs.h <<_ACEOF +#define uint8_t $ac_cv_c_uint8_t +_ACEOF +;; + esac + + +# Checks for library functions. +for ac_func in ftruncate gettimeofday memset socket strtoul usleep srandom +do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +if eval test \"x\$"$as_ac_var"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + +PACKAGE_VERSION_MAJOR=$(echo $PACKAGE_VERSION | awk -F. '{print $1}') +PACKAGE_VERSION_MINOR=$(echo $PACKAGE_VERSION | awk -F. '{print $2}') +PACKAGE_VERSION_RELEASE=$(echo $PACKAGE_VERSION | awk -F. '{print $3}') + +LIBUUID_VERSION="$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_RELEASE" +LIBUUID_LT_MAJOR=1 +LIBUUID_LT_MINOR=0 +LIBUUID_LT_MICRO=0 +LIBUUID_VERSION_INFO=`expr $LIBUUID_LT_MAJOR + $LIBUUID_LT_MINOR`:$LIBUUID_LT_MICRO:$LIBUUID_LT_MINOR + + + +ac_config_files="$ac_config_files Makefile uuid.pc" + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + if test "x$cache_file" != "x/dev/null"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +U= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 +$as_echo_n "checking that generated files are newer than configure... " >&6; } + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 +$as_echo "done" >&6; } + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error $? "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by libuuid $as_me 1.0.3, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +libuuid config.status 1.0.3 +configured by $0, generated by GNU Autoconf 2.69, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' +macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' +enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' +enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' +pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' +ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' +PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' +host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' +host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' +host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' +build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' +build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' +build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' +SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' +Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' +GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' +EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' +FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' +LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' +NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' +LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' +ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' +exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' +lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' +lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' +lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' +reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' +file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' +want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' +DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' +sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' +AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' +archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' +STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' +RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' +lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' +CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' +compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' +GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' +lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' +need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' +MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' +LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' +OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' +libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' +module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' +postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' +need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' +version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' +runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' +libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' +soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' +install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' +finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' +sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' +old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' +striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in SHELL \ +ECHO \ +PATH_SEPARATOR \ +SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +OBJDUMP \ +deplibs_check_method \ +file_magic_cmd \ +file_magic_glob \ +want_nocaseglob \ +DLLTOOL \ +sharedlib_from_linklib_cmd \ +AR \ +AR_FLAGS \ +archiver_list_spec \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +nm_file_list_spec \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_pic \ +lt_prog_compiler_wl \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +MANIFEST_TOOL \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_separator \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +install_override_mode \ +finish_eval \ +old_striplib \ +striplib; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postlink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +sys_lib_dlsearch_path_spec; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +ac_aux_dir='$ac_aux_dir' +xsi_shell='$xsi_shell' +lt_shell_append='$lt_shell_append' + +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile' + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "uuid.pc") CONFIG_FILES="$CONFIG_FILES uuid.pc" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named 'Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running 'make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "$am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="" + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# An object symbol dumper. +OBJDUMP=$lt_OBJDUMP + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and in which our libraries should be installed. +lt_sysroot=$lt_sysroot + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain="$ac_aux_dir/ltmain.sh" + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + if test x"$xsi_shell" = xyes; then + sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ +func_dirname ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +} # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_basename ()$/,/^} # func_basename /c\ +func_basename ()\ +{\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ +func_dirname_and_basename ()\ +{\ +\ case ${1} in\ +\ */*) func_dirname_result="${1%/*}${2}" ;;\ +\ * ) func_dirname_result="${3}" ;;\ +\ esac\ +\ func_basename_result="${1##*/}"\ +} # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ +func_stripname ()\ +{\ +\ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ +\ # positional parameters, so assign one to ordinary parameter first.\ +\ func_stripname_result=${3}\ +\ func_stripname_result=${func_stripname_result#"${1}"}\ +\ func_stripname_result=${func_stripname_result%"${2}"}\ +} # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ +func_split_long_opt ()\ +{\ +\ func_split_long_opt_name=${1%%=*}\ +\ func_split_long_opt_arg=${1#*=}\ +} # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ +func_split_short_opt ()\ +{\ +\ func_split_short_opt_arg=${1#??}\ +\ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ +} # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ +func_lo2o ()\ +{\ +\ case ${1} in\ +\ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ +\ *) func_lo2o_result=${1} ;;\ +\ esac\ +} # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_xform ()$/,/^} # func_xform /c\ +func_xform ()\ +{\ + func_xform_result=${1%.*}.lo\ +} # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_arith ()$/,/^} # func_arith /c\ +func_arith ()\ +{\ + func_arith_result=$(( $* ))\ +} # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_len ()$/,/^} # func_len /c\ +func_len ()\ +{\ + func_len_result=${#1}\ +} # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + +fi + +if test x"$lt_shell_append" = xyes; then + sed -e '/^func_append ()$/,/^} # func_append /c\ +func_append ()\ +{\ + eval "${1}+=\\${2}"\ +} # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ +func_append_quoted ()\ +{\ +\ func_quote_for_eval "${2}"\ +\ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ +} # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: + + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 +$as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} +fi + + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit 1 +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/configure.ac b/1_6.h12_dev/render/libuuid-1.0.3/configure.ac new file mode 100644 index 0000000..be62aa0 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/configure.ac @@ -0,0 +1,56 @@ +# Process this file with autoconf to produce a configure script. + +AC_PREREQ([2.69]) +AC_INIT([libuuid], [1.0.3], [sloowfranklin@gmail.com]) +AC_CONFIG_SRCDIR([compare.c]) +AC_CONFIG_HEADERS([config.h]) +AM_INIT_AUTOMAKE([foreign]) +LT_INIT + +# Checks for programs. +AC_PROG_CC + + +# Checks for libraries. +SOCKET_LIBS= +AC_SEARCH_LIBS([socket], [socket], + [if test x"$ac_cv_search_socket" != x"none required"; then + SOCKET_LIBS="$SOCKET_LIBS -lsocket"; + fi]) +AC_SUBST([SOCKET_LIBS]) + +# Checks for header files. +AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h netinet/in.h stdlib.h string.h sys/file.h sys/ioctl.h sys/socket.h sys/time.h unistd.h]) +AC_CHECK_DECLS([_SC_HOST_NAME_MAX]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_TYPE_INT32_T +AC_TYPE_MODE_T +AC_TYPE_SIZE_T +AC_TYPE_SSIZE_T +AC_TYPE_UINT16_T +AC_TYPE_UINT32_T +AC_TYPE_UINT64_T +AC_TYPE_UINT8_T + +# Checks for library functions. +AC_CHECK_FUNCS([ftruncate gettimeofday memset socket strtoul usleep srandom]) + +dnl version details from .. +PACKAGE_VERSION_MAJOR=$(echo $PACKAGE_VERSION | awk -F. '{print $1}') +PACKAGE_VERSION_MINOR=$(echo $PACKAGE_VERSION | awk -F. '{print $2}') +PACKAGE_VERSION_RELEASE=$(echo $PACKAGE_VERSION | awk -F. '{print $3}') + +LIBUUID_VERSION="$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR.$PACKAGE_VERSION_RELEASE" +LIBUUID_LT_MAJOR=1 +LIBUUID_LT_MINOR=0 +LIBUUID_LT_MICRO=0 +LIBUUID_VERSION_INFO=`expr $LIBUUID_LT_MAJOR + $LIBUUID_LT_MINOR`:$LIBUUID_LT_MICRO:$LIBUUID_LT_MINOR +AC_SUBST([LIBUUID_VERSION]) +AC_SUBST([LIBUUID_VERSION_INFO]) + +AC_CONFIG_FILES( + [Makefile] + [uuid.pc] +) +AC_OUTPUT diff --git a/1_6.h12_dev/render/libuuid-1.0.3/copy.c b/1_6.h12_dev/render/libuuid-1.0.3/copy.c new file mode 100644 index 0000000..ead33aa --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/copy.c @@ -0,0 +1,45 @@ +/* + * copy.c --- copy UUIDs + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include "uuidP.h" + +void uuid_copy(uuid_t dst, const uuid_t src) +{ + unsigned char *cp1; + const unsigned char *cp2; + int i; + + for (i=0, cp1 = dst, cp2 = src; i < 16; i++) + *cp1++ = *cp2++; +} diff --git a/1_6.h12_dev/render/libuuid-1.0.3/depcomp b/1_6.h12_dev/render/libuuid-1.0.3/depcomp new file mode 100755 index 0000000..4ebd5b3 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/depcomp @@ -0,0 +1,791 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2013-05-30.07; # UTC + +# Copyright (C) 1999-2013 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, 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 . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +case $1 in + '') + echo "$0: No command. Try '$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by 'PROGRAMS ARGS'. + object Object file output by 'PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputting dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +# Get the directory component of the given path, and save it in the +# global variables '$dir'. Note that this directory component will +# be either empty or ending with a '/' character. This is deliberate. +set_dir_from () +{ + case $1 in + */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; + *) dir=;; + esac +} + +# Get the suffix-stripped basename of the given path, and save it the +# global variable '$base'. +set_base_from () +{ + base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` +} + +# If no dependency file was actually created by the compiler invocation, +# we still have to create a dummy depfile, to avoid errors with the +# Makefile "include basename.Plo" scheme. +make_dummy_depfile () +{ + echo "#dummy" > "$depfile" +} + +# Factor out some common post-processing of the generated depfile. +# Requires the auxiliary global variable '$tmpdepfile' to be set. +aix_post_process_depfile () +{ + # If the compiler actually managed to produce a dependency file, + # post-process it. + if test -f "$tmpdepfile"; then + # Each line is of the form 'foo.o: dependency.h'. + # Do two passes, one to just change these to + # $object: dependency.h + # and one to simply output + # dependency.h: + # which is needed to avoid the deleted-header problem. + { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" + sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" + } > "$depfile" + rm -f "$tmpdepfile" + else + make_dummy_depfile + fi +} + +# A tabulation character. +tab=' ' +# A newline character. +nl=' +' +# Character ranges might be problematic outside the C locale. +# These definitions help. +upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ +lower=abcdefghijklmnopqrstuvwxyz +digits=0123456789 +alpha=${upper}${lower} + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Avoid interferences from the environment. +gccflag= dashmflag= + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvisualcpp +fi + +if test "$depmode" = msvc7msys; then + # This is just like msvc7 but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvc7 +fi + +if test "$depmode" = xlc; then + # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. + gccflag=-qmakedep=gcc,-MF + depmode=gcc +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. +## Unfortunately, FreeBSD c89 acceptance of flags depends upon +## the command line argument order; so add the flags where they +## appear in depend2.am. Note that the slowdown incurred here +## affects only configure: in makefiles, %FASTDEP% shortcuts this. + for arg + do + case $arg in + -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; + *) set fnord "$@" "$arg" ;; + esac + shift # fnord + shift # $arg + done + "$@" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. +## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. +## (see the conditional assignment to $gccflag above). +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). Also, it might not be +## supported by the other compilers which use the 'gcc' depmode. +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The second -e expression handles DOS-style file names with drive + # letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the "deleted header file" problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. +## Some versions of gcc put a space before the ':'. On the theory +## that the space means something, we add a space to the output as +## well. hp depmode also adds that space, but also prefixes the VPATH +## to the object. Take care to not repeat it in the output. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like '#:fec' to the end of the + # dependency line. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ + | tr "$nl" ' ' >> "$depfile" + echo >> "$depfile" + # The second pass generates a dummy entry for each header file. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> "$depfile" + else + make_dummy_depfile + fi + rm -f "$tmpdepfile" + ;; + +xlc) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts '$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + set_dir_from "$object" + set_base_from "$object" + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u + "$@" -Wc,-M + else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u + "$@" -M + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + aix_post_process_depfile + ;; + +tcc) + # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 + # FIXME: That version still under development at the moment of writing. + # Make that this statement remains true also for stable, released + # versions. + # It will wrap lines (doesn't matter whether long or short) with a + # trailing '\', as in: + # + # foo.o : \ + # foo.c \ + # foo.h \ + # + # It will put a trailing '\' even on the last line, and will use leading + # spaces rather than leading tabs (at least since its commit 0394caf7 + # "Emit spaces for -MD"). + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. + # We have to change lines of the first kind to '$object: \'. + sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" + # And for each line of the second kind, we have to emit a 'dep.h:' + # dummy dependency, to avoid the deleted-header problem. + sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" + rm -f "$tmpdepfile" + ;; + +## The order of this option in the case statement is important, since the +## shell code in configure will try each of these formats in the order +## listed in this file. A plain '-MD' option would be understood by many +## compilers, so we must ensure this comes after the gcc and icc options. +pgcc) + # Portland's C compiler understands '-MD'. + # Will always output deps to 'file.d' where file is the root name of the + # source file under compilation, even if file resides in a subdirectory. + # The object file name does not affect the name of the '.d' file. + # pgcc 10.2 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using '\' : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + set_dir_from "$object" + # Use the source, not the object, to determine the base name, since + # that's sadly what pgcc will do too. + set_base_from "$source" + tmpdepfile=$base.d + + # For projects that build the same source file twice into different object + # files, the pgcc approach of using the *source* file root name can cause + # problems in parallel builds. Use a locking strategy to avoid stomping on + # the same $tmpdepfile. + lockdir=$base.d-lock + trap " + echo '$0: caught signal, cleaning up...' >&2 + rmdir '$lockdir' + exit 1 + " 1 2 13 15 + numtries=100 + i=$numtries + while test $i -gt 0; do + # mkdir is a portable test-and-set. + if mkdir "$lockdir" 2>/dev/null; then + # This process acquired the lock. + "$@" -MD + stat=$? + # Release the lock. + rmdir "$lockdir" + break + else + # If the lock is being held by a different process, wait + # until the winning process is done or we timeout. + while test -d "$lockdir" && test $i -gt 0; do + sleep 1 + i=`expr $i - 1` + done + fi + i=`expr $i - 1` + done + trap - 1 2 13 15 + if test $i -le 0; then + echo "$0: failed to acquire lock after $numtries attempts" >&2 + echo "$0: check lockdir '$lockdir'" >&2 + exit 1 + fi + + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp2) + # The "hp" stanza above does not work with aCC (C++) and HP's ia64 + # compilers, which have integrated preprocessors. The correct option + # to use with these is +Maked; it writes dependencies to a file named + # 'foo.d', which lands next to the object file, wherever that + # happens to be. + # Much of this is similar to the tru64 case; see comments there. + set_dir_from "$object" + set_base_from "$object" + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir.libs/$base.d + "$@" -Wc,+Maked + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + "$@" +Maked + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" + # Add 'dependent.h:' lines. + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" + else + make_dummy_depfile + fi + rm -f "$tmpdepfile" "$tmpdepfile2" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in 'foo.d' instead, so we check for that too. + # Subdirectories are respected. + set_dir_from "$object" + set_base_from "$object" + + if test "$libtool" = yes; then + # Libtool generates 2 separate objects for the 2 libraries. These + # two compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir$base.o.d # libtool 1.5 + tmpdepfile2=$dir.libs/$base.o.d # Likewise. + tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + # Same post-processing that is required for AIX mode. + aix_post_process_depfile + ;; + +msvc7) + if test "$libtool" = yes; then + showIncludes=-Wc,-showIncludes + else + showIncludes=-showIncludes + fi + "$@" $showIncludes > "$tmpdepfile" + stat=$? + grep -v '^Note: including file: ' "$tmpdepfile" + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The first sed program below extracts the file names and escapes + # backslashes for cygpath. The second sed program outputs the file + # name when reading, but also accumulates all include files in the + # hold buffer in order to output them again at the end. This only + # works with sed implementations that can handle large buffers. + sed < "$tmpdepfile" -n ' +/^Note: including file: *\(.*\)/ { + s//\1/ + s/\\/\\\\/g + p +}' | $cygpath_u | sort -u | sed -n ' +s/ /\\ /g +s/\(.*\)/'"$tab"'\1 \\/p +s/.\(.*\) \\/\1:/ +H +$ { + s/.*/'"$tab"'/ + G + p +}' >> "$depfile" + echo >> "$depfile" # make sure the fragment doesn't end with a backslash + rm -f "$tmpdepfile" + ;; + +msvc7msys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove '-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for ':' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. + "$@" $dashmflag | + sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this sed invocation + # correctly. Breaking it into two sed invocations is a workaround. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no eat=no + for arg + do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + if test $eat = yes; then + eat=no + continue + fi + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix=`echo "$object" | sed 's/^.*\././'` + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + # makedepend may prepend the VPATH from the source file name to the object. + # No need to regex-escape $object, excess matching of '.' is harmless. + sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process the last invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed '1,2d' "$tmpdepfile" \ + | tr ' ' "$nl" \ + | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove '-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E \ + | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + | sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + IFS=" " + for arg + do + case "$arg" in + -o) + shift + ;; + $object) + shift + ;; + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" + echo "$tab" >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/gen_uuid.c b/1_6.h12_dev/render/libuuid-1.0.3/gen_uuid.c new file mode 100644 index 0000000..c7b71f2 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/gen_uuid.c @@ -0,0 +1,595 @@ +/* + * gen_uuid.c --- generate a DCE-compatible uuid + * + * Copyright (C) 1996, 1997, 1998, 1999 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +/* + * Force inclusion of SVID stuff since we need it if we're compiling in + * gcc-wall wall mode + */ +#define _SVID_SOURCE + +#ifdef _WIN32 +#define _WIN32_WINNT 0x0500 +#include +#define UUID MYUUID +#endif +#include +#ifdef HAVE_UNISTD_H +#include +#endif +#ifdef HAVE_STDLIB_H +#include +#endif +#include +#include +#include +#include +#include +#ifdef HAVE_SYS_TIME_H +#include +#endif +#include +#ifdef HAVE_SYS_FILE_H +#include +#endif +#ifdef HAVE_SYS_IOCTL_H +#include +#endif +#ifdef HAVE_SYS_SOCKET_H +#include +#endif +#ifdef HAVE_SYS_UN_H +#include +#endif +#ifdef HAVE_SYS_SOCKIO_H +#include +#endif +#ifdef HAVE_NET_IF_H +#include +#endif +#ifdef HAVE_NETINET_IN_H +#include +#endif +#ifdef HAVE_NET_IF_DL_H +#include +#endif +#if defined(__linux__) && defined(HAVE_SYS_SYSCALL_H) +#include +#endif + +#include "all-io.h" +#include "uuidP.h" +#include "uuidd.h" +#include "randutils.h" +#include "c.h" + +#ifdef HAVE_TLS +#define THREAD_LOCAL static __thread +#else +#define THREAD_LOCAL static +#endif + +#ifndef LOCK_EX +/* flock() replacement */ +#define LOCK_EX 1 +#define LOCK_SH 2 +#define LOCK_UN 3 +#define LOCK_NB 4 + +static int flock(int fd, int op) +{ + int rc = 0; + +#if defined(F_SETLK) && defined(F_SETLKW) + struct flock fl = {0}; + + switch (op & (LOCK_EX|LOCK_SH|LOCK_UN)) { + case LOCK_EX: + fl.l_type = F_WRLCK; + break; + + case LOCK_SH: + fl.l_type = F_RDLCK; + break; + + case LOCK_UN: + fl.l_type = F_UNLCK; + break; + + default: + errno = EINVAL; + return -1; + } + + fl.l_whence = SEEK_SET; + rc = fcntl (fd, op & LOCK_NB ? F_SETLK : F_SETLKW, &fl); + + if (rc && (errno == EAGAIN)) + errno = EWOULDBLOCK; +#endif /* defined(F_SETLK) && defined(F_SETLKW) */ + + return rc; +} + +#endif /* LOCK_EX */ + +#ifdef _WIN32 +static void gettimeofday (struct timeval *tv, void *dummy) +{ + FILETIME ftime; + uint64_t n; + + GetSystemTimeAsFileTime (&ftime); + n = (((uint64_t) ftime.dwHighDateTime << 32) + + (uint64_t) ftime.dwLowDateTime); + if (n) { + n /= 10; + n -= ((369 * 365 + 89) * (uint64_t) 86400) * 1000000; + } + + tv->tv_sec = n / 1000000; + tv->tv_usec = n % 1000000; +} + +static int getuid (void) +{ + return 1; +} +#endif + +/* + * Get the ethernet hardware address, if we can find it... + * + * XXX for a windows version, probably should use GetAdaptersInfo: + * http://www.codeguru.com/cpp/i-n/network/networkinformation/article.php/c5451 + * commenting out get_node_id just to get gen_uuid to compile under windows + * is not the right way to go! + */ +static int get_node_id(unsigned char *node_id) +{ +#ifdef HAVE_NET_IF_H + int sd; + struct ifreq ifr, *ifrp; + struct ifconf ifc; + char buf[1024]; + int n, i; + unsigned char *a; +#ifdef HAVE_NET_IF_DL_H + struct sockaddr_dl *sdlp; +#endif + +/* + * BSD 4.4 defines the size of an ifreq to be + * max(sizeof(ifreq), sizeof(ifreq.ifr_name)+ifreq.ifr_addr.sa_len + * However, under earlier systems, sa_len isn't present, so the size is + * just sizeof(struct ifreq) + */ +#ifdef HAVE_SA_LEN +#define ifreq_size(i) max(sizeof(struct ifreq),\ + sizeof((i).ifr_name)+(i).ifr_addr.sa_len) +#else +#define ifreq_size(i) sizeof(struct ifreq) +#endif /* HAVE_SA_LEN */ + + sd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP); + if (sd < 0) { + return -1; + } + memset(buf, 0, sizeof(buf)); + ifc.ifc_len = sizeof(buf); + ifc.ifc_buf = buf; + if (ioctl (sd, SIOCGIFCONF, (char *)&ifc) < 0) { + close(sd); + return -1; + } + n = ifc.ifc_len; + for (i = 0; i < n; i+= ifreq_size(*ifrp) ) { + ifrp = (struct ifreq *)((char *) ifc.ifc_buf+i); + strncpy(ifr.ifr_name, ifrp->ifr_name, IFNAMSIZ); +#ifdef SIOCGIFHWADDR + if (ioctl(sd, SIOCGIFHWADDR, &ifr) < 0) + continue; + a = (unsigned char *) &ifr.ifr_hwaddr.sa_data; +#else +#ifdef SIOCGENADDR + if (ioctl(sd, SIOCGENADDR, &ifr) < 0) + continue; + a = (unsigned char *) ifr.ifr_enaddr; +#else +#ifdef HAVE_NET_IF_DL_H + sdlp = (struct sockaddr_dl *) &ifrp->ifr_addr; + if ((sdlp->sdl_family != AF_LINK) || (sdlp->sdl_alen != 6)) + continue; + a = (unsigned char *) &sdlp->sdl_data[sdlp->sdl_nlen]; +#else + /* + * XXX we don't have a way of getting the hardware + * address + */ + close(sd); + return 0; +#endif /* HAVE_NET_IF_DL_H */ +#endif /* SIOCGENADDR */ +#endif /* SIOCGIFHWADDR */ + if (!a[0] && !a[1] && !a[2] && !a[3] && !a[4] && !a[5]) + continue; + if (node_id) { + memcpy(node_id, a, 6); + close(sd); + return 1; + } + } + close(sd); +#endif + return 0; +} + +/* Assume that the gettimeofday() has microsecond granularity */ +#define MAX_ADJUSTMENT 10 + +/* + * Get clock from global sequence clock counter. + * + * Return -1 if the clock counter could not be opened/locked (in this case + * pseudorandom value is returned in @ret_clock_seq), otherwise return 0. + */ +static int get_clock(uint32_t *clock_high, uint32_t *clock_low, + uint16_t *ret_clock_seq, int *num) +{ + THREAD_LOCAL int adjustment = 0; + THREAD_LOCAL struct timeval last = {0, 0}; + THREAD_LOCAL int state_fd = -2; + THREAD_LOCAL FILE *state_f; + THREAD_LOCAL uint16_t clock_seq; + struct timeval tv; + uint64_t clock_reg; + mode_t save_umask; + int len; + int ret = 0; + + if (state_fd == -2) { + save_umask = umask(0); + state_fd = open(LIBUUID_CLOCK_FILE, O_RDWR|O_CREAT|O_CLOEXEC, 0660); + (void) umask(save_umask); + if (state_fd != -1) { + state_f = fdopen(state_fd, "r+" UL_CLOEXECSTR); + if (!state_f) { + close(state_fd); + state_fd = -1; + ret = -1; + } + } + else + ret = -1; + } + if (state_fd >= 0) { + rewind(state_f); + while (flock(state_fd, LOCK_EX) < 0) { + if ((errno == EAGAIN) || (errno == EINTR)) + continue; + fclose(state_f); + close(state_fd); + state_fd = -1; + ret = -1; + break; + } + } + if (state_fd >= 0) { + unsigned int cl; + unsigned long tv1, tv2; + int a; + + if (fscanf(state_f, "clock: %04x tv: %lu %lu adj: %d\n", + &cl, &tv1, &tv2, &a) == 4) { + clock_seq = cl & 0x3FFF; + last.tv_sec = tv1; + last.tv_usec = tv2; + adjustment = a; + } + } + + if ((last.tv_sec == 0) && (last.tv_usec == 0)) { + random_get_bytes(&clock_seq, sizeof(clock_seq)); + clock_seq &= 0x3FFF; + gettimeofday(&last, 0); + last.tv_sec--; + } + +try_again: + gettimeofday(&tv, 0); + if ((tv.tv_sec < last.tv_sec) || + ((tv.tv_sec == last.tv_sec) && + (tv.tv_usec < last.tv_usec))) { + clock_seq = (clock_seq+1) & 0x3FFF; + adjustment = 0; + last = tv; + } else if ((tv.tv_sec == last.tv_sec) && + (tv.tv_usec == last.tv_usec)) { + if (adjustment >= MAX_ADJUSTMENT) + goto try_again; + adjustment++; + } else { + adjustment = 0; + last = tv; + } + + clock_reg = tv.tv_usec*10 + adjustment; + clock_reg += ((uint64_t) tv.tv_sec)*10000000; + clock_reg += (((uint64_t) 0x01B21DD2) << 32) + 0x13814000; + + if (num && (*num > 1)) { + adjustment += *num - 1; + last.tv_usec += adjustment / 10; + adjustment = adjustment % 10; + last.tv_sec += last.tv_usec / 1000000; + last.tv_usec = last.tv_usec % 1000000; + } + + if (state_fd >= 0) { + rewind(state_f); + len = fprintf(state_f, + "clock: %04x tv: %016lu %08lu adj: %08d\n", + clock_seq, last.tv_sec, last.tv_usec, adjustment); + fflush(state_f); + if (ftruncate(state_fd, len) < 0) { + fprintf(state_f, " \n"); + fflush(state_f); + } + rewind(state_f); + flock(state_fd, LOCK_UN); + } + + *clock_high = clock_reg >> 32; + *clock_low = clock_reg; + *ret_clock_seq = clock_seq; + return ret; +} + +#if defined(HAVE_UUIDD) && defined(HAVE_SYS_UN_H) +/* + * Try using the uuidd daemon to generate the UUID + * + * Returns 0 on success, non-zero on failure. + */ +static int get_uuid_via_daemon(int op, uuid_t out, int *num) +{ + char op_buf[64]; + int op_len; + int s; + ssize_t ret; + int32_t reply_len = 0, expected = 16; + struct sockaddr_un srv_addr; + + if ((s = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) + return -1; + + srv_addr.sun_family = AF_UNIX; + strcpy(srv_addr.sun_path, UUIDD_SOCKET_PATH); + + if (connect(s, (const struct sockaddr *) &srv_addr, + sizeof(struct sockaddr_un)) < 0) + goto fail; + + op_buf[0] = op; + op_len = 1; + if (op == UUIDD_OP_BULK_TIME_UUID) { + memcpy(op_buf+1, num, sizeof(*num)); + op_len += sizeof(*num); + expected += sizeof(*num); + } + + ret = write(s, op_buf, op_len); + if (ret < 1) + goto fail; + + ret = read_all(s, (char *) &reply_len, sizeof(reply_len)); + if (ret < 0) + goto fail; + + if (reply_len != expected) + goto fail; + + ret = read_all(s, op_buf, reply_len); + + if (op == UUIDD_OP_BULK_TIME_UUID) + memcpy(op_buf+16, num, sizeof(int)); + + memcpy(out, op_buf, 16); + + close(s); + return ((ret == expected) ? 0 : -1); + +fail: + close(s); + return -1; +} + +#else /* !defined(HAVE_UUIDD) && defined(HAVE_SYS_UN_H) */ +static int get_uuid_via_daemon(int op, uuid_t out, int *num) +{ + return -1; +} +#endif + +int __uuid_generate_time(uuid_t out, int *num) +{ + static unsigned char node_id[6]; + static int has_init = 0; + struct uuid uu; + uint32_t clock_mid; + int ret; + + if (!has_init) { + if (get_node_id(node_id) <= 0) { + random_get_bytes(node_id, 6); + /* + * Set multicast bit, to prevent conflicts + * with IEEE 802 addresses obtained from + * network cards + */ + node_id[0] |= 0x01; + } + has_init = 1; + } + ret = get_clock(&clock_mid, &uu.time_low, &uu.clock_seq, num); + uu.clock_seq |= 0x8000; + uu.time_mid = (uint16_t) clock_mid; + uu.time_hi_and_version = ((clock_mid >> 16) & 0x0FFF) | 0x1000; + memcpy(uu.node, node_id, 6); + uuid_pack(&uu, out); + return ret; +} + +/* + * Generate time-based UUID and store it to @out + * + * Tries to guarantee uniqueness of the generated UUIDs by obtaining them from the uuidd daemon, + * or, if uuidd is not usable, by using the global clock state counter (see get_clock()). + * If neither of these is possible (e.g. because of insufficient permissions), it generates + * the UUID anyway, but returns -1. Otherwise, returns 0. + */ +static int uuid_generate_time_generic(uuid_t out) { +#ifdef HAVE_TLS + THREAD_LOCAL int num = 0; + THREAD_LOCAL struct uuid uu; + THREAD_LOCAL time_t last_time = 0; + time_t now; + + if (num > 0) { + now = time(0); + if (now > last_time+1) + num = 0; + } + if (num <= 0) { + num = 1000; + if (get_uuid_via_daemon(UUIDD_OP_BULK_TIME_UUID, + out, &num) == 0) { + last_time = time(0); + uuid_unpack(out, &uu); + num--; + return 0; + } + num = 0; + } + if (num > 0) { + uu.time_low++; + if (uu.time_low == 0) { + uu.time_mid++; + if (uu.time_mid == 0) + uu.time_hi_and_version++; + } + num--; + uuid_pack(&uu, out); + return 0; + } +#else + if (get_uuid_via_daemon(UUIDD_OP_TIME_UUID, out, 0) == 0) + return 0; +#endif + + return __uuid_generate_time(out, 0); +} + +/* + * Generate time-based UUID and store it to @out. + * + * Discards return value from uuid_generate_time_generic() + */ +void uuid_generate_time(uuid_t out) +{ + (void)uuid_generate_time_generic(out); +} + + +int uuid_generate_time_safe(uuid_t out) +{ + return uuid_generate_time_generic(out); +} + + +void __uuid_generate_random(uuid_t out, int *num) +{ + uuid_t buf; + struct uuid uu; + int i, n; + + if (!num || !*num) + n = 1; + else + n = *num; + + for (i = 0; i < n; i++) { + random_get_bytes(buf, sizeof(buf)); + uuid_unpack(buf, &uu); + + uu.clock_seq = (uu.clock_seq & 0x3FFF) | 0x8000; + uu.time_hi_and_version = (uu.time_hi_and_version & 0x0FFF) + | 0x4000; + uuid_pack(&uu, out); + out += sizeof(uuid_t); + } +} + +void uuid_generate_random(uuid_t out) +{ + int num = 1; + /* No real reason to use the daemon for random uuid's -- yet */ + + __uuid_generate_random(out, &num); +} + +/* + * Check whether good random source (/dev/random or /dev/urandom) + * is available. + */ +static int have_random_source(void) +{ + struct stat s; + + return (!stat("/dev/random", &s) || !stat("/dev/urandom", &s)); +} + + +/* + * This is the generic front-end to uuid_generate_random and + * uuid_generate_time. It uses uuid_generate_random only if + * /dev/urandom is available, since otherwise we won't have + * high-quality randomness. + */ +void uuid_generate(uuid_t out) +{ + if (have_random_source()) + uuid_generate_random(out); + else + uuid_generate_time(out); +} diff --git a/1_6.h12_dev/render/libuuid-1.0.3/install-sh b/1_6.h12_dev/render/libuuid-1.0.3/install-sh new file mode 100755 index 0000000..377bb86 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/install-sh @@ -0,0 +1,527 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2011-11-20.07; # UTC + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# 'make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +nl=' +' +IFS=" "" $nl" + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit=${DOITPROG-} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +no_target_directory= + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) dst_arg=$2 + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; + + -T) no_target_directory=true;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call 'install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + do_exit='(exit $ret); exit $ret' + trap "ret=129; $do_exit" 1 + trap "ret=130; $do_exit" 2 + trap "ret=141; $do_exit" 13 + trap "ret=143; $do_exit" 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names problematic for 'test' and other utilities. + case $src in + -* | [=\(\)!]) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + dst=$dst_arg + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; + esac + + eval "$initialize_posix_glob" + + oIFS=$IFS + IFS=/ + $posix_glob set -f + set fnord $dstdir + shift + $posix_glob set +f + IFS=$oIFS + + prefixes= + + for d + do + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && + + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/isnull.c b/1_6.h12_dev/render/libuuid-1.0.3/isnull.c new file mode 100644 index 0000000..931e7e7 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/isnull.c @@ -0,0 +1,48 @@ +/* + * isnull.c --- Check whether or not the UUID is null + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include "uuidP.h" + +/* Returns 1 if the uuid is the NULL uuid */ +int uuid_is_null(const uuid_t uu) +{ + const unsigned char *cp; + int i; + + for (i=0, cp = uu; i < 16; i++) + if (*cp++) + return 0; + return 1; +} + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libtool b/1_6.h12_dev/render/libuuid-1.0.3/libtool new file mode 100755 index 0000000..f483b04 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libtool @@ -0,0 +1,10077 @@ +#! /bin/bash + +# libtool - Provide generalized library-building support services. +# Generated automatically by config.status (libuuid) 1.0.3 +# Libtool was configured on host rh-precision-t1700: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +# The names of the tagged configurations supported by this script. +available_tags="" + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=2.4.2 +macro_revision=1.3337 + +# Whether or not to build shared libraries. +build_libtool_libs=yes + +# Whether or not to build static libraries. +build_old_libs=yes + +# What type of objects to build. +pic_mode=default + +# Whether or not to optimize for fast installation. +fast_install=needless + +# Shell to use when invoking shell scripts. +SHELL="/bin/bash" + +# An echo program that protects backslashes. +ECHO="printf %s\\n" + +# The PATH separator for the build system. +PATH_SEPARATOR=":" + +# The host system. +host_alias=arm-linux-androideabi +host=arm-unknown-linux-androideabi +host_os=linux-androideabi + +# The build system. +build_alias= +build=x86_64-unknown-linux-gnu +build_os=linux-gnu + +# A sed program that does not truncate output. +SED="/bin/sed" + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP="/bin/grep" + +# An ERE matcher. +EGREP="/bin/grep -E" + +# A literal string matcher. +FGREP="/bin/grep -F" + +# A BSD- or MS-compatible name lister. +NM="/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/bin/arm-linux-androideabi-nm -B" + +# Whether we need soft or hard links. +LN_S="ln -s" + +# What is the maximum length of a command? +max_cmd_len=1572864 + +# Object file suffix (normally "o"). +objext=o + +# Executable file suffix (normally ""). +exeext= + +# whether the shell understands "unset". +lt_unset=unset + +# turn spaces into newlines. +SP2NL="tr \\040 \\012" + +# turn newlines into spaces. +NL2SP="tr \\015\\012 \\040\\040" + +# convert $build file names to $host format. +to_host_file_cmd=func_convert_file_noop + +# convert $build files to toolchain format. +to_tool_file_cmd=func_convert_file_noop + +# An object symbol dumper. +OBJDUMP="arm-linux-androideabi-objdump" + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method="pass_all" + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd="\$MAGIC_CMD" + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob="" + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob="no" + +# DLL creation program. +DLLTOOL="false" + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd="printf %s\\n" + +# The archiver. +AR="arm-linux-androideabi-ar" + +# Flags to create an archive. +AR_FLAGS="cru" + +# How to feed a file listing to the archiver. +archiver_list_spec="@" + +# A symbol stripping program. +STRIP="arm-linux-androideabi-strip" + +# Commands used to install an old-style archive. +RANLIB="arm-linux-androideabi-ranlib" +old_postinstall_cmds="chmod 644 \$oldlib~\$RANLIB \$tool_oldlib" +old_postuninstall_cmds="" + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=no + +# A C compiler. +LTCC="arm-linux-androideabi-gcc" + +# LTCC compiler flags. +LTCFLAGS="-g -O2" + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p' | sed '/ __gnu_lto/d'" + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl="sed -n -e 's/^T .* \\(.*\\)\$/extern int \\1();/p' -e 's/^[ABCDGIRSTW]* .* \\(.*\\)\$/extern char \\1;/p'" + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\)[ ]*\$/ {\\\"\\1\\\", (void *) 0},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (void *) \\&\\2},/p'" + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \\([^ ]*\\)[ ]*\$/ {\\\"\\1\\\", (void *) 0},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\(lib[^ ]*\\)\$/ {\"\\2\", (void *) \\&\\2},/p' -e 's/^[ABCDGIRSTW]* \\([^ ]*\\) \\([^ ]*\\)\$/ {\"lib\\2\", (void *) \\&\\2},/p'" + +# Specify filename containing input files for $NM. +nm_file_list_spec="@" + +# The root where to search for dependent libraries,and in which our libraries should be installed. +lt_sysroot= + +# The name of the directory that contains temporary libtool files. +objdir=.libs + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=file + +# Must we lock files when doing compilation? +need_locks="no" + +# Manifest tool. +MANIFEST_TOOL=":" + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL="" + +# Tool to change global to local symbols on Mac OS X. +NMEDIT="" + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO="" + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL="" + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64="" + +# Old archive suffix (normally "a"). +libext=a + +# Shared library suffix (normally ".so"). +shrext_cmds=".so" + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds="" + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" + +# Do we need the "lib" prefix for modules? +need_lib_prefix=no + +# Do we need a version for libraries? +need_version=no + +# Library versioning type. +version_type=linux + +# Shared library runtime path variable. +runpath_var=LD_RUN_PATH + +# Shared library path variable. +shlibpath_var=LD_LIBRARY_PATH + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=yes + +# Format of library name prefix. +libname_spec="lib\$name" + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext}\$major \$libname\${shared_ext}" + +# The coded name of the library, if different from the real name. +soname_spec="\${libname}\${release}\${shared_ext}\$major" + +# Permission mode override for installation of shared libraries. +install_override_mode="" + +# Command to use after installation of a shared archive. +postinstall_cmds="" + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds="" + +# Commands used to finish a libtool library installation in a directory. +finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval="" + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=yes + +# Compile-time system search path for libraries. +sys_lib_search_path_spec="/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc/arm-linux-androideabi/4.9 /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/lib/gcc /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/lib /home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/sysroot/usr/lib " + +# Run-time system search path for libraries. +sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib /usr/lib/x86_64-linux-gnu/libfakeroot /lib/i386-linux-gnu /usr/lib/i386-linux-gnu /lib/i686-linux-gnu /usr/lib/i686-linux-gnu /usr/lib/i386-linux-gnu/mesa /usr/local/lib /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/mesa-egl /usr/lib/x86_64-linux-gnu/mesa /lib32 /usr/lib32 /libx32 /usr/libx32 " + +# Whether dlopen is supported. +dlopen_support=unknown + +# Whether dlopen of programs is supported. +dlopen_self=unknown + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=unknown + +# Commands to strip libraries. +old_striplib="arm-linux-androideabi-strip --strip-debug" +striplib="arm-linux-androideabi-strip --strip-unneeded" + + +# The linker used to build libraries. +LD="/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/upmpdcli_demo/my_android_toolchain/arm-linux-androideabi/bin/ld" + +# How to create reloadable object files. +reload_flag=" -r" +reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" + +# Commands used to build an old-style archive. +old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs~\$RANLIB \$tool_oldlib" + +# A language specific compiler. +CC="arm-linux-androideabi-gcc" + +# Is the compiler the GNU compiler? +with_gcc=yes + +# Compiler flag to turn off builtin functions. +no_builtin_flag=" -fno-builtin" + +# Additional compiler flags for building library objects. +pic_flag=" -fPIC -DPIC" + +# How to pass a linker flag through the compiler. +wl="-Wl," + +# Compiler flag to prevent dynamic linking. +link_static_flag="-static" + +# Does compiler simultaneously support -c and -o options? +compiler_c_o="yes" + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=no + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=no + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec="\${wl}--export-dynamic" + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object="no" + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds="" + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds="" + +# Commands used to build a shared archive. +archive_cmds="\$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" +archive_expsym_cmds="echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ + cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ + echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ + \$CC -shared \$pic_flag \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib" + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds="" +module_expsym_cmds="" + +# Whether we are building with GNU ld or not. +with_gnu_ld="yes" + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag="" + +# Flag that enforces no undefined symbols. +no_undefined_flag="" + +# Flag to hardcode $libdir into a binary during linking. +# This must work even if $libdir does not exist +hardcode_libdir_flag_spec="\${wl}-rpath \${wl}\$libdir" + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator="" + +# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=no + +# Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting ${shlibpath_var} if the +# library is relocated. +hardcode_direct_absolute=no + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=no + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=unsupported + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=no + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=no + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=unknown + +# Set to "yes" if exported symbols are required. +always_export_symbols=no + +# The commands to list exported symbols. +export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols" + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms="_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*" + +# Symbols that must always be exported. +include_expsyms="" + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds="" + +# Commands necessary for finishing linking programs. +postlink_cmds="" + +# Specify filename containing input files. +file_list_spec="" + +# How to hardcode a shared library path into an executable. +hardcode_action=immediate + +# ### END LIBTOOL CONFIG + + +# libtool (GNU libtool) 2.4.2 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, +# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --no-quiet, --no-silent +# print informational messages (default) +# --no-warn don't display warning messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print more informational messages than default +# --no-verbose don't print the extra informational messages +# --version print version information +# -h, --help, --help-all print short, long, or detailed help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. When passed as first option, +# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.4.2 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . +# GNU libtool home page: . +# General help using GNU software: . + +PROGRAM=libtool +PACKAGE=libtool +VERSION=2.4.2 +TIMESTAMP="" +package_revision=1.3337 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# NLS nuisances: We save the old values to restore during execute mode. +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done +LC_ALL=C +LANGUAGE=C +export LANGUAGE LC_ALL + +$lt_unset CDPATH + + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath="$0" + + + +: ${CP="cp -f"} +test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac +} # Extended-shell func_dirname implementation + + +# func_basename file +func_basename () +{ + func_basename_result="${1##*/}" +} # Extended-shell func_basename implementation + + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}" +} # Extended-shell func_dirname_and_basename implementation + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"} +} # Extended-shell func_stripname implementation + + +# These SED scripts presuppose an absolute path with a trailing slash. +pathcar='s,^/\([^/]*\).*$,\1,' +pathcdr='s,^/[^/]*,,' +removedotparts=':dotsl + s@/\./@/@g + t dotsl + s,/\.$,/,' +collapseslashes='s@/\{1,\}@/@g' +finalslash='s,/*$,/,' + +# func_normal_abspath PATH +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +# value returned in "$func_normal_abspath_result" +func_normal_abspath () +{ + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` + while :; do + # Processed it all yet? + if test "$func_normal_abspath_tpath" = / ; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result" ; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + +# func_relative_path SRCDIR DSTDIR +# generates a relative path from SRCDIR to DSTDIR, with a trailing +# slash if non-empty, suitable for immediately appending a filename +# without needing to append a separator. +# value returned in "$func_relative_path_result" +func_relative_path () +{ + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=${func_dirname_result} + if test "x$func_relative_path_tlibdir" = x ; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test "x$func_stripname_result" != x ; then + func_relative_path_result=${func_relative_path_result}/${func_stripname_result} + fi + + # Normalisation. If bindir is libdir, return empty string, + # else relative path ending with a slash; either way, target + # file name can be directly appended. + if test ! -z "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result/" + func_relative_path_result=$func_stripname_result + fi +} + +# The name of this program: +func_dirname_and_basename "$progpath" +progname=$func_basename_result + +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' + +# Sed substitution that converts a w32 file name or path +# which contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }$*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + done + my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "$my_tmpdir" +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "$1" | $SED \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + +# func_tr_sh +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $opt_debug + + $SED -n '/(C)/!b go + :more + /\./!{ + N + s/\n# / / + b more + } + :go + /^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $opt_debug + + $SED -n '/^# Usage:/,/^# *.*--help/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + echo + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help [NOEXIT] +# Echo long help message to standard output and exit, +# unless 'noexit' is passed as argument. +func_help () +{ + $opt_debug + + $SED -n '/^# Usage:/,/# Report bugs to/ { + :print + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ + p + d + } + /^# .* home page:/b print + /^# General help using/b print + ' < "$progpath" + ret=$? + if test -z "$1"; then + exit $ret + fi +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $opt_debug + + func_error "missing argument for $1." + exit_cmd=exit +} + + +# func_split_short_opt shortopt +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +func_split_short_opt () +{ + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"} +} # Extended-shell func_split_short_opt implementation + + +# func_split_long_opt longopt +# Set func_split_long_opt_name and func_split_long_opt_arg shell +# variables after splitting LONGOPT at the `=' sign. +func_split_long_opt () +{ + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=} +} # Extended-shell func_split_long_opt implementation + +exit_cmd=: + + + + + +magic="%%%MAGIC variable%%%" +magic_exe="%%%MAGIC EXE variable%%%" + +# Global variables. +nonopt= +preserve_args= +lo2o="s/\\.lo\$/.${objext}/" +o2lo="s/\\.${objext}\$/.lo/" +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "${1}+=\${2}" +} # Extended-shell func_append implementation + +# func_append_quoted var value +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +func_append_quoted () +{ + func_quote_for_eval "${2}" + eval "${1}+=\\ \$func_quote_for_eval_result" +} # Extended-shell func_append_quoted implementation + + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=$(( $* )) +} # Extended-shell func_arith implementation + + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=${#1} +} # Extended-shell func_len implementation + + +# func_lo2o object +func_lo2o () +{ + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac +} # Extended-shell func_lo2o implementation + + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=${1%.*}.lo +} # Extended-shell func_xform implementation + + +# func_fatal_configuration arg... +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func_error ${1+"$@"} + func_error "See the $PACKAGE documentation for more information." + func_fatal_error "Fatal configuration error." +} + + +# func_config +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + +# func_features +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test "$build_libtool_libs" = yes; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test "$build_old_libs" = yes; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + +# func_enable_tag tagname +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname="$1" + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf="/$re_begincf/,/$re_endcf/p" + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# Shorthand for --mode=foo, only valid as the first argument +case $1 in +clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; +compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; +execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; +finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; +install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; +link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; +uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; +esac + + + +# Option defaults: +opt_debug=: +opt_dry_run=false +opt_config=false +opt_preserve_dup_deps=false +opt_features=false +opt_finish=false +opt_help=false +opt_help_all=false +opt_silent=: +opt_warning=: +opt_verbose=: +opt_silent=false +opt_verbose=false + + +# Parse options once, thoroughly. This comes as soon as possible in the +# script to make things like `--version' happen as quickly as we can. +{ + # this just eases exit handling + while test $# -gt 0; do + opt="$1" + shift + case $opt in + --debug|-x) opt_debug='set -x' + func_echo "enabling shell trace mode" + $opt_debug + ;; + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + --config) + opt_config=: +func_config + ;; + --dlopen|-dlopen) + optarg="$1" + opt_dlopen="${opt_dlopen+$opt_dlopen +}$optarg" + shift + ;; + --preserve-dup-deps) + opt_preserve_dup_deps=: + ;; + --features) + opt_features=: +func_features + ;; + --finish) + opt_finish=: +set dummy --mode finish ${1+"$@"}; shift + ;; + --help) + opt_help=: + ;; + --help-all) + opt_help_all=: +opt_help=': help-all' + ;; + --mode) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_mode="$optarg" +case $optarg in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; +esac + shift + ;; + --no-silent|--no-quiet) + opt_silent=false +preserve_args+=" $opt" + ;; + --no-warning|--no-warn) + opt_warning=false +preserve_args+=" $opt" + ;; + --no-verbose) + opt_verbose=false +preserve_args+=" $opt" + ;; + --silent|--quiet) + opt_silent=: +preserve_args+=" $opt" + opt_verbose=false + ;; + --verbose|-v) + opt_verbose=: +preserve_args+=" $opt" +opt_silent=false + ;; + --tag) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_tag="$optarg" +preserve_args+=" $opt $optarg" +func_enable_tag "$optarg" + shift + ;; + + -\?|-h) func_usage ;; + --help) func_help ;; + --version) func_version ;; + + # Separate optargs to long options: + --*=*) + func_split_long_opt "$opt" + set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-n*|-v*) + func_split_short_opt "$opt" + set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognized option \`$opt'" ;; + *) set dummy "$opt" ${1+"$@"}; shift; break ;; + esac + done + + # Validate options: + + # save first non-option argument + if test "$#" -gt 0; then + nonopt="$opt" + shift + fi + + # preserve --debug + test "$opt_debug" = : || preserve_args+=" --debug" + + case $host in + *cygwin* | *mingw* | *pw32* | *cegcc*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test "$opt_mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$opt_mode' for more information." + } + + + # Bail if the options were screwed + $exit_cmd $EXIT_FAILURE +} + + + + +## ----------- ## +## Main. ## +## ----------- ## + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case "$lt_sysroot:$1" in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result="=$func_stripname_result" + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $opt_debug + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=${1} + if test "$build_libtool_libs" = yes; then + write_lobj=\'${2}\' + else + write_lobj=none + fi + + if test "$build_old_libs" = yes; then + write_oldobj=\'${3}\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$lt_sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $opt_debug + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result="" + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $opt_debug + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $opt_debug + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $opt_debug + if test -z "$2" && test -n "$1" ; then + func_error "Could not determine host file name corresponding to" + func_error " \`$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result="$1" + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $opt_debug + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " \`$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result="$3" + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $opt_debug + case $4 in + $1 ) func_to_host_path_result="$3$func_to_host_path_result" + ;; + esac + case $4 in + $2 ) func_to_host_path_result+="$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via `$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $opt_debug + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $opt_debug + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result="$1" +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result="$func_convert_core_msys_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via `$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $opt_debug + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd="func_convert_path_${func_stripname_result}" + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $opt_debug + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result="$1" +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_mode_compile arg... +func_mode_compile () +{ + $opt_debug + # Get the compilation command and the source file. + base_compile= + srcfile="$nonopt" # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg="$arg" + arg_mode=normal + ;; + + target ) + libobj="$arg" + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify \`-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + pie_flag+=" $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + later+=" $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs="$IFS"; IFS=',' + for arg in $args; do + IFS="$save_ifs" + func_append_quoted lastarg "$arg" + done + IFS="$save_ifs" + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + base_compile+=" $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg="$srcfile" + srcfile="$arg" + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with \`-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj="$func_basename_result" + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from \`$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" + lobj=${xdir}$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test "$build_old_libs" = yes; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test "$need_locks" = warn; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + removelist+=" $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + removelist+=" $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test "$build_libtool_libs" = yes; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test "$pic_mode" != no; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + command+=" -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test "$suppress_opt" = yes; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then + if test "$pic_mode" != yes; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test "$compiler_c_o" = yes; then + command+=" -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + command+="$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test "$opt_mode" = compile && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a \`.o' file suitable for static linking + -static only build a \`.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a \`standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix \`.c' with the +library object suffix, \`.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to \`-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the \`--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the \`install' or \`cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE Use a list of object files found in FILE to specify objects + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with \`-') are ignored. + +Every other argument is treated as a filename. Files ending in \`.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in \`.la', then a libtool library is created, +only library objects (\`.lo' files) may be specified, and \`-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created +using \`ar' and \`ranlib', or on Windows using \`lib'. + +If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode \`$opt_mode'" + ;; + esac + + echo + $ECHO "Try \`$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test "$opt_help" = :; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | sed -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + sed '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $opt_debug + # The first argument is the command name. + cmd="$nonopt" + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "\`$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "\`$file' was not linked with \`-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir="$func_dirname_result" + + if test -f "$dir/$objdir/$dlname"; then + dir+="/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir="$func_dirname_result" + ;; + + *) + func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir="$absdir" + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic="$magic" + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file="$progdir/$program" + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file="$progdir/$program" + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if test "X$opt_dry_run" = Xfalse; then + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = execute && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $opt_debug + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + libdirs+=" $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + libs+=" $opt" + else + func_warning "\`$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument \`$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || admincmds+=" + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_silent && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the \`$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test "$opt_mode" = finish && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + install_prog+="$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + files+=" $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test "x$prev" = x-m && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + install_prog+=" $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + install_shared_prog+=" $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + install_shared_prog+=" -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + staticlibs+=" $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) current_libdirs+=" $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) future_libdirs+=" $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + dir+="$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs+=" $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename="" + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname" ; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename="$func_basename_result" + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename" ; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) symtab_cflags+=" $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $opt_debug + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $opt_debug + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive which possess that section. Heuristic: eliminate + # all those which have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $opt_debug + if func_cygming_gnu_implib_p "$1" ; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1" ; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result="" + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + if test "$lock_old_archive_extraction" = yes; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test "$lock_old_archive_extraction" = yes; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ which is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options which match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +/* declarations of non-ANSI functions */ +#if defined(__MINGW32__) +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined(__CYGWIN__) +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined (other platforms) ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined(_MSC_VER) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +# ifndef _INTPTR_T_DEFINED +# define _INTPTR_T_DEFINED +# define intptr_t int +# endif +#elif defined(__MINGW32__) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined(__CYGWIN__) +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined (other platforms) ... */ +#endif + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#if defined(LT_DEBUGWRAPPER) +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + int len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + int orig_value_len = strlen (orig_value); + int add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + int len = strlen (new_value); + while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[len-1] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $opt_debug + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll which has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=no + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module="${wl}-single_module" + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg="$1" + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + libtool_args+=" $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + compile_command+=" @OUTPUT@" + finalize_command+=" @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir="$arg" + prev= + continue + ;; + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. + compile_command+=" @SYMFILE@" + finalize_command+=" @SYMFILE@" + preload=yes + fi + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test "$prev" = dlprefiles; then + dlself=yes + elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test "$prev" = dlfiles; then + dlfiles+=" $arg" + else + dlprefiles+=" $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols="$arg" + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex="$arg" + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) deplibs+=" $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir="$arg" + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# moreargs+=" $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + dlfiles+=" $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + dlprefiles+=" $pic_object" + prev= + fi + + # A PIC object. + libobjs+=" $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + non_pic_objects+=" $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + non_pic_objects+=" $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + libobjs+=" $pic_object" + non_pic_objects+=" $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file \`$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test "$prev" = rpath; then + case "$rpath " in + *" $arg "*) ;; + *) rpath+=" $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) xrpath+=" $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds="$arg" + prev= + continue + ;; + weak) + weak_libs+=" $arg" + prev= + continue + ;; + xcclinker) + linker_flags+=" $qarg" + compiler_flags+=" $qarg" + prev= + compile_command+=" $qarg" + finalize_command+=" $qarg" + continue + ;; + xcompiler) + compiler_flags+=" $qarg" + prev= + compile_command+=" $qarg" + finalize_command+=" $qarg" + continue + ;; + xlinker) + linker_flags+=" $qarg" + compiler_flags+=" $wl$qarg" + prev= + compile_command+=" $wl$qarg" + finalize_command+=" $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg="$arg" + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + compile_command+=" $link_static_flag" + finalize_command+=" $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "\`-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test "X$arg" = "X-export-symbols"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + compile_command+=" $arg" + finalize_command+=" $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between \`-L' and \`$1'" + else + func_fatal_error "need path for \`-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" + dir="$absdir" + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) deplibs+=" $arg" ;; + *) deplibs+=" -L$dir" ;; + esac + lib_search_path+=" $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) dllsearchpath+=":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) dllsearchpath+=":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + deplibs+=" System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test "X$arg" = "X-lc" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + deplibs+=" $arg" + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + compiler_flags+=" $arg" + compile_command+=" $arg" + finalize_command+=" $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + compiler_flags+=" $arg" + compile_command+=" $arg" + finalize_command+=" $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) new_inherited_linker_flags+=" $arg" ;; + esac + continue + ;; + + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) xrpath+=" $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + arg+=" $func_quote_for_eval_result" + compiler_flags+=" $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + arg+=" $wl$func_quote_for_eval_result" + compiler_flags+=" $wl$func_quote_for_eval_result" + linker_flags+=" $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + compile_command+=" $arg" + finalize_command+=" $arg" + compiler_flags+=" $arg" + continue + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + *.$objext) + # A standard object. + objs+=" $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + dlfiles+=" $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + dlprefiles+=" $pic_object" + prev= + fi + + # A PIC object. + libobjs+=" $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + non_pic_objects+=" $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + non_pic_objects+=" $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + libobjs+=" $pic_object" + non_pic_objects+=" $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + deplibs+=" $arg" + old_deplibs+=" $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test "$prev" = dlfiles; then + # This library was specified with -dlopen. + dlfiles+=" $func_resolve_sysroot_result" + prev= + elif test "$prev" = dlprefiles; then + # The library was specified with -dlpreopen. + dlprefiles+=" $func_resolve_sysroot_result" + prev= + else + deplibs+=" $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + compile_command+=" $arg" + finalize_command+=" $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" + + if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + compile_command+=" $arg" + finalize_command+=" $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname="$func_basename_result" + libobjs_save="$libobjs" + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps ; then + case "$libs " in + *" $deplib "*) specialdeplibs+=" $deplib" ;; + esac + fi + libs+=" $deplib" + done + + if test "$linkmode" = lib; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) specialdeplibs+=" $pre_post_deps" ;; + esac + pre_post_deps+=" $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=no + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan"; then + libs="$deplibs" + deplibs= + fi + if test "$linkmode" = prog; then + case $pass in + dlopen) libs="$dlfiles" ;; + dlpreopen) libs="$dlprefiles" ;; + link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; + esac + fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) deplibs+=" $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi + if test "$pass" = dlopen; then + # Collect dlpreopened libraries + save_deplibs="$deplibs" + deplibs= + fi + + for deplib in $libs; do + lib= + found=no + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + compiler_flags+=" $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) new_inherited_linker_flags+=" $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test "$linkmode" != lib && test "$linkmode" != prog; then + func_warning "\`-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then + if test "$search_ext" = ".la"; then + found=yes + else + found=no + fi + break 2 + fi + done + done + if test "$found" != yes; then + # deplib doesn't seem to be a libtool library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + else # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll="$l" + done + if test "X$ll" = "X$old_library" ; then # only static version available + found=no + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + lib=$ladir/$old_library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + fi + ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) new_inherited_linker_flags+=" $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test "$pass" = conv && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + newlib_search_path+=" $func_resolve_sysroot_result" + ;; + prog) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + if test "$pass" = scan; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + newlib_search_path+=" $func_resolve_sysroot_result" + ;; + *) + func_warning "\`-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test "$pass" = link; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) xrpath+=" $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + else + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac + continue + ;; + prog) + if test "$pass" != link; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + elif test "$linkmode" = prog; then + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + newdlprefiles+=" $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + newdlfiles+=" $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=yes + continue + ;; + esac # case $deplib + + if test "$found" = yes || test -f "$lib"; then : + else + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" + fi + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) new_inherited_linker_flags+=" $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan" || + { test "$linkmode" != prog && test "$linkmode" != lib; }; then + test -n "$dlopen" && dlfiles+=" $dlopen" + test -n "$dlpreopen" && dlprefiles+=" $dlpreopen" + fi + + if test "$pass" = conv; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + # It is a libtool convenience library, so add in its objects. + convenience+=" $ladir/$objdir/$old_library" + old_convenience+=" $ladir/$objdir/$old_library" + elif test "$linkmode" != prog && test "$linkmode" != lib; then + func_fatal_error "\`$lib' is not a convenience library" + fi + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) specialdeplibs+=" $deplib" ;; + esac + fi + tmp_libs+=" $deplib" + done + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test "$prefer_static_libs" = yes || + test "$prefer_static_libs,$installed" = "built,no"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib="$l" + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + + # This library was specified with -dlopen. + if test "$pass" = dlopen; then + if test -z "$libdir"; then + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" + fi + if test -z "$dlname" || + test "$dlopen_support" != yes || + test "$build_libtool_libs" = no; then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + dlprefiles+=" $lib $dependency_libs" + else + newdlfiles+=" $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir="$ladir" + fi + ;; + esac + func_basename "$lib" + laname="$func_basename_result" + + # Find the relevant object directory and library name. + if test "X$installed" = Xyes; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library \`$lib' was moved." + dir="$ladir" + absdir="$abs_ladir" + libdir="$abs_ladir" + else + dir="$lt_sysroot$libdir" + absdir="$lt_sysroot$libdir" + fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + notinst_path+=" $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + notinst_path+=" $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test "$pass" = dlpreopen; then + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + fi + case "$host" in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + newdlprefiles+=" $dir/$linklib" + else + newdlprefiles+=" $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + dlpreconveniencelibs+=" $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + newdlprefiles+=" $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + dlpreconveniencelibs+=" $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + newdlprefiles+=" $dir/$dlname" + else + newdlprefiles+=" $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test "$linkmode" = lib; then + deplibs="$dir/$old_library $deplibs" + elif test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test "$linkmode" = prog && test "$pass" != link; then + newlib_search_path+=" $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=no + if test "$link_all_deplibs" != no || test -z "$library_names" || + test "$build_libtool_libs" = no; then + linkalldeplibs=yes + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + newlib_search_path+=" $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if test "$linkalldeplibs" = yes; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) specialdeplibs+=" $deplib" ;; + esac + fi + tmp_libs+=" $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test "$linkmode,$pass" = "prog,link"; then + if test -n "$library_names" && + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + # Make sure the rpath contains only unique directories. + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) temp_rpath+="$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) compile_rpath+=" $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath+=" $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if test "$alldeplibs" = yes && + { test "$deplibs_check_method" = pass_all || + { test "$build_libtool_libs" = yes && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test "$use_static_libs" = built && test "$installed" = yes; then + use_static_libs=no + fi + if test -n "$library_names" && + { test "$use_static_libs" = no || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc*) + # No point in relinking DLLs because paths are not encoded + notinst_deplibs+=" $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + notinst_deplibs+=" $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break + fi + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + echo + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test "$linkmode" = lib && + test "$hardcode_into_libs" = yes; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) compile_rpath+=" $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath+=" $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname="$dlname" + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc*) + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + esac + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot="$soname" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test "$linkmode" = prog || test "$opt_mode" != relink; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test "$hardcode_direct" = no; then + add="$dir/$linklib" + case $host in + *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; + *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir="-L$dir" ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" + fi + fi + esac + elif test "$hardcode_minus_L" = no; then + case $host in + *-*-sunos*) add_shlibpath="$dir" ;; + esac + add_dir="-L$dir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = no; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + relink) + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$dir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$absdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + add_dir+=" -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test "$lib_linked" != yes; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) compile_shlibpath+="$add_shlibpath:" ;; + esac + fi + if test "$linkmode" = prog; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && + test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) finalize_shlibpath+="$libdir:" ;; + esac + fi + fi + fi + + if test "$linkmode" = prog || test "$opt_mode" = relink; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$libdir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$libdir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) finalize_shlibpath+="$libdir:" ;; + esac + add="-l$name" + elif test "$hardcode_automatic" = yes; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib" ; then + add="$inst_prefix_dir$libdir/$linklib" + else + add="$libdir/$linklib" + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + add_dir+=" -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + fi + + if test "$linkmode" = prog; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test "$linkmode" = prog; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test "$hardcode_direct" != unsupported; then + test -n "$old_library" && linklib="$old_library" + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test "$build_libtool_libs" = yes; then + # Not a shared library + if test "$deplibs_check_method" != pass_all; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system can not link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test "$module" = yes; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test "$linkmode" = lib; then + if test -n "$dependency_libs" && + { test "$hardcode_into_libs" != yes || + test "$build_old_libs" = yes || + test "$link_static" = yes; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) xrpath+=" $temp_xrpath";; + esac;; + *) temp_deplibs+=" $libdir";; + esac + done + dependency_libs="$temp_deplibs" + fi + + newlib_search_path+=" $absdir" + # Link against this library + test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + specialdeplibs+=" $func_resolve_sysroot_result" ;; + esac + fi + tmp_libs+=" $func_resolve_sysroot_result" + done + + if test "$link_all_deplibs" != no; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path="$deplib" ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of \`$dir'" + absdir="$dir" + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names" ; then + for tmp in $deplibrary_names ; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + compiler_flags+=" ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + linker_flags+=" -dylib_file ${darwin_install_name}:${depdepl}" + path= + fi + fi + ;; + *) + path="-L$absdir/$objdir" + ;; + esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs="$newdependency_libs" + if test "$pass" = dlpreopen; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test "$pass" != dlopen; then + if test "$pass" != conv; then + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) lib_search_path+=" $dir" ;; + esac + done + newlib_search_path= + fi + + if test "$linkmode,$pass" != "prog,link"; then + vars="deplibs" + else + vars="compile_deplibs finalize_deplibs" + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) tmp_libs+=" $deplib" ;; + esac + ;; + *) tmp_libs+=" $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs ; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i="" + ;; + esac + if test -n "$i" ; then + tmp_libs+=" $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test "$linkmode" = prog; then + dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then + dlprefiles="$newdlprefiles" + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" + objs+="$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form `libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + + if test "$need_lib_prefix" != no; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test "$deplibs_check_method" != pass_all; then + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + libobjs+=" $objs" + fi + fi + + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" + + oldlibs= + if test -z "$rpath"; then + if test "$build_libtool_libs" = yes; then + # Building a libtool convenience library. + # Some compilers have problems with a `.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + shift + IFS="$save_ifs" + + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major="$1" + number_minor="$2" + number_revision="$3" + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # which has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_revision" + ;; + freebsd-aout|freebsd-elf|qnx|sunos) + current="$number_major" + revision="$number_minor" + age="0" + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_minor" + lt_irix_increment=no + ;; + esac + ;; + no) + current="$1" + revision="$2" + age="$3" + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + + freebsd-aout) + major=".$current" + versuffix=".$current.$revision"; + ;; + + freebsd-elf) + major=".$current" + versuffix=".$current" + ;; + + irix | nonstopux) + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test "$loop" -ne 0; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring_prefix$major.$iface:$verstring" + done + + # Before this point, $major must not contain `.'. + major=.$major + versuffix="$major.$revision" + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$age + while test "$loop" -ne 0; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring:${iface}.0" + done + + # Make executables depend on our current version. + verstring+=":${current}.0" + ;; + + qnx) + major=".$current" + versuffix=".$current" + ;; + + sunos) + major=".$current" + versuffix=".$current.$revision" + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + + *) + func_fatal_configuration "unknown library version type \`$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring="0.0" + ;; + esac + if test "$need_version" = no; then + versuffix= + else + versuffix=".0.0" + fi + fi + + # Remove version info from name if versioning should be avoided + if test "$avoid_version" = yes && test "$need_version" = no; then + major= + versuffix= + verstring="" + fi + + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then + func_warning "undefined symbols not allowed in $host shared libraries" + build_libtool_libs=no + build_old_libs=yes + fi + else + # Don't allow undefined symbols. + allow_undefined_flag="$no_undefined_flag" + fi + + fi + + func_generate_dlsyms "$libname" "$libname" "yes" + libobjs+=" $symfileobj" + test "X$libobjs" = "X " && libobjs= + + if test "$opt_mode" != relink; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) + if test "X$precious_files_regex" != "X"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + removelist+=" $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + oldlibs+=" $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + temp_xrpath+=" -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath+=" $libdir" ;; + esac + done + if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles="$dlfiles" + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) dlfiles+=" $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles="$dlprefiles" + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) dlprefiles+=" $lib" ;; + esac + done + + if test "$build_libtool_libs" = yes; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + deplibs+=" System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then + deplibs+=" -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release="" + versuffix="" + major="" + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + newdeplibs+=" $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + newdeplibs+=" $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $a_deplib "*) + newdeplibs+=" $a_deplib" + a_deplib="" + ;; + esac + fi + if test -n "$a_deplib" ; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib="$potent_lib" # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + newdeplibs+=" $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + newdeplibs+=" $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs="" + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + for i in $predeps $postdeps ; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test "X$deplibs_check_method" = "Xnone"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test "$allow_undefined" = no; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + new_libs+=" -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs+=" $deplib" ;; + esac + ;; + *) new_libs+=" $deplib" ;; + esac + done + deplibs="$new_libs" + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then + # Remove ${wl} instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test "$hardcode_into_libs" = yes; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath="$finalize_rpath" + test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + hardcode_libdirs+="$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + dep_rpath+=" $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) perm_rpath+=" $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + rpath+="$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath="$finalize_shlibpath" + test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname="$1" + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib="$output_objdir/$realname" + linknames= + for link + do + linknames+=" $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + delfiles+=" $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs="$IFS"; IFS='~' + for cmd1 in $cmds; do + IFS="$save_ifs" + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test "$try_normal_branch" = yes \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=${output_objdir}/${output_la}.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + delfiles+=" $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS="$save_ifs" + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + delfiles+=" $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + tmp_deplibs+=" $test_deplib" + ;; + esac + done + deplibs="$tmp_deplibs" + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop="$output_objdir/${outputname}x" + generated+=" $gentop" + + func_extract_archives $gentop $convenience + libobjs+=" $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + linker_flags+=" $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test "X$skipped_export" != "X:" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + delfiles+=" $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + delfiles+=" $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + objlist+=" $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + delfiles+=" $output" + + else + output= + fi + + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + delfiles+=" $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + generated+=" $gentop" + + func_extract_archives $gentop $dlprefiles + libobjs+=" $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test "$module" = yes || test "$export_dynamic" = yes; then + # On all known operating systems, these are identical. + dlname="$soname" + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj="$output" + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + else + gentop="$output_objdir/${obj}x" + generated+=" $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + + # Create the old-style object. + reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + fi + + if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" + + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + compile_command+=" ${wl}-bind_at_load" + finalize_command+=" ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + new_libs+=" -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs+=" $deplib" ;; + esac + ;; + *) new_libs+=" $deplib" ;; + esac + done + compile_deplibs="$new_libs" + + + compile_command+=" $compile_deplibs" + finalize_command+=" $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) finalize_rpath+=" $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + hardcode_libdirs+="$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + rpath+=" $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) perm_rpath+=" $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) dllsearchpath+=":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) dllsearchpath+=":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath="$rpath" + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + hardcode_libdirs+="$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + rpath+=" $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) finalize_perm_rpath+=" $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath="$rpath" + + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=yes + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=no + ;; + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + fi + + exit $exit_status + fi + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + rpath+="$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + rpath+="$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test "$no_install" = yes; then + # We don't need to create a wrapper script. + link_command="$compile_var$compile_command$compile_rpath" + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" + else + if test "$fast_install" != no; then + link_command="$finalize_var$compile_command$finalize_rpath" + if test "$fast_install" = yes; then + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + else + # fast_install is set to needless + relink_command= + fi + else + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + fi + fi + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + if test "$build_libtool_libs" = convenience; then + oldobjs="$libobjs_save $symfileobj" + addlibs="$convenience" + build_libtool_libs=no + else + if test "$build_libtool_libs" = module; then + oldobjs="$libobjs_save" + build_libtool_libs=no + else + oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + oldobjs+=" $symfileobj" + fi + fi + addlibs="$old_convenience" + fi + + if test -n "$addlibs"; then + gentop="$output_objdir/${outputname}x" + generated+=" $gentop" + + func_extract_archives $gentop $addlibs + oldobjs+=" $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + generated+=" $gentop" + + func_extract_archives $gentop $dlprefiles + oldobjs+=" $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + generated+=" $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase="$func_basename_result" + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + oldobjs+=" $gentop/$newobj" + ;; + *) oldobjs+=" $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + objlist+=" $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj" ; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test "X$oldobjs" = "X" ; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test "$hardcode_automatic" = yes ; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test "$installed" = yes; then + if test -z "$install_libdir"; then + break + fi + output="$output_objdir/$outputname"i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name="$func_basename_result" + func_resolve_sysroot "$deplib" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + newdependency_libs+=" ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + newdependency_libs+=" -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + newdependency_libs+=" -R$func_replace_sysroot_result" + ;; + *) newdependency_libs+=" $deplib" ;; + esac + done + dependency_libs="$newdependency_libs" + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + newdlfiles+=" ${lt_sysroot:+=}$libdir/$name" + ;; + *) newdlfiles+=" $lib" ;; + esac + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + newdlprefiles+=" ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles="$newdlprefiles" + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + newdlfiles+=" $abs" + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + newdlprefiles+=" $abs" + done + dlprefiles="$newdlprefiles" + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test "x$bindir" != x ; + then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test "$installed" = no && test "$need_relink" = yes; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +{ test "$opt_mode" = link || test "$opt_mode" = relink; } && + func_mode_link ${1+"$@"} + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" + files= + rmforce= + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + for arg + do + case $arg in + -f) RM+=" $arg"; rmforce=yes ;; + -*) RM+=" $arg" ;; + *) files+=" $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then + odir="$objdir" + else + odir="$dir/$objdir" + fi + func_basename "$file" + name="$func_basename_result" + test "$opt_mode" = uninstall && odir="$dir" + + # Remember odir for removal later, being careful to avoid duplicates + if test "$opt_mode" = clean; then + case " $rmdirs " in + *" $odir "*) ;; + *) rmdirs+=" $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif test "$rmforce" = yes; then + continue + fi + + rmfiles="$file" + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + rmfiles+=" $odir/$n" + done + test -n "$old_library" && rmfiles+=" $odir/$old_library" + + case "$opt_mode" in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && rmfiles+=" $odir/$dlname" ;; + esac + test -n "$libdir" && rmfiles+=" $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && + test "$pic_object" != none; then + rmfiles+=" $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then + rmfiles+=" $dir/$non_pic_object" + fi + fi + ;; + + *) + if test "$opt_mode" = clean ; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + rmfiles+=" $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + rmfiles+=" $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + rmfiles+=" $odir/$name $odir/${name}S.${objext}" + if test "$fast_install" = yes && test -n "$relink_command"; then + rmfiles+=" $odir/lt-$name" + fi + if test "X$noexename" != "X$name" ; then + rmfiles+=" $odir/lt-${noexename}.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the ${objdir}s in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && + func_mode_uninstall ${1+"$@"} + +test -z "$opt_mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# in which we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: +# vi:sw=2 + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid.la b/1_6.h12_dev/render/libuuid-1.0.3/libuuid.la new file mode 100644 index 0000000..88dcc73 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid.la @@ -0,0 +1,41 @@ +# libuuid.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libuuid.so.1' + +# Names of this library. +library_names='libuuid.so.1.0.0 libuuid.so.1 libuuid.so' + +# The name of the static archive. +old_library='libuuid.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libuuid. +current=1 +age=0 +revision=0 + +# Is this an already installed library? +installed=no + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib' diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-clear.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-clear.lo new file mode 100644 index 0000000..7642d08 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-clear.lo @@ -0,0 +1,12 @@ +# libuuid_la-clear.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-clear.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-clear.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-clear.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-clear.o new file mode 100644 index 0000000..14d5b7c Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-clear.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-compare.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-compare.lo new file mode 100644 index 0000000..6b7edb8 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-compare.lo @@ -0,0 +1,12 @@ +# libuuid_la-compare.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-compare.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-compare.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-compare.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-compare.o new file mode 100644 index 0000000..418666f Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-compare.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-copy.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-copy.lo new file mode 100644 index 0000000..ab1cf44 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-copy.lo @@ -0,0 +1,12 @@ +# libuuid_la-copy.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-copy.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-copy.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-copy.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-copy.o new file mode 100644 index 0000000..a0916d0 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-copy.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-gen_uuid.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-gen_uuid.lo new file mode 100644 index 0000000..3958b9a --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-gen_uuid.lo @@ -0,0 +1,12 @@ +# libuuid_la-gen_uuid.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-gen_uuid.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-gen_uuid.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-gen_uuid.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-gen_uuid.o new file mode 100644 index 0000000..658cb97 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-gen_uuid.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-isnull.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-isnull.lo new file mode 100644 index 0000000..cc68c86 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-isnull.lo @@ -0,0 +1,12 @@ +# libuuid_la-isnull.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-isnull.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-isnull.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-isnull.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-isnull.o new file mode 100644 index 0000000..1fd9bbf Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-isnull.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-pack.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-pack.lo new file mode 100644 index 0000000..3a7cc49 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-pack.lo @@ -0,0 +1,12 @@ +# libuuid_la-pack.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-pack.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-pack.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-pack.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-pack.o new file mode 100644 index 0000000..7b31f85 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-pack.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-parse.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-parse.lo new file mode 100644 index 0000000..701756f --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-parse.lo @@ -0,0 +1,12 @@ +# libuuid_la-parse.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-parse.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-parse.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-parse.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-parse.o new file mode 100644 index 0000000..9c6c2fb Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-parse.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-randutils.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-randutils.lo new file mode 100644 index 0000000..3aef04c --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-randutils.lo @@ -0,0 +1,12 @@ +# libuuid_la-randutils.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-randutils.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-randutils.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-randutils.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-randutils.o new file mode 100644 index 0000000..2fe582d Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-randutils.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unpack.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unpack.lo new file mode 100644 index 0000000..3f3e98a --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unpack.lo @@ -0,0 +1,12 @@ +# libuuid_la-unpack.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-unpack.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-unpack.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unpack.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unpack.o new file mode 100644 index 0000000..758e214 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unpack.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unparse.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unparse.lo new file mode 100644 index 0000000..4ae9d6e --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unparse.lo @@ -0,0 +1,12 @@ +# libuuid_la-unparse.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-unparse.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-unparse.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unparse.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unparse.o new file mode 100644 index 0000000..ab7b740 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-unparse.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-uuid_time.lo b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-uuid_time.lo new file mode 100644 index 0000000..7a723d4 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-uuid_time.lo @@ -0,0 +1,12 @@ +# libuuid_la-uuid_time.lo - a libtool object file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# Name of the PIC object. +pic_object='.libs/libuuid_la-uuid_time.o' + +# Name of the non-PIC object +non_pic_object='libuuid_la-uuid_time.o' + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-uuid_time.o b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-uuid_time.o new file mode 100644 index 0000000..0727e90 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/libuuid_la-uuid_time.o differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/ltmain.sh b/1_6.h12_dev/render/libuuid-1.0.3/ltmain.sh new file mode 100644 index 0000000..63ae69d --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/ltmain.sh @@ -0,0 +1,9655 @@ + +# libtool (GNU libtool) 2.4.2 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, +# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --no-quiet, --no-silent +# print informational messages (default) +# --no-warn don't display warning messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print more informational messages than default +# --no-verbose don't print the extra informational messages +# --version print version information +# -h, --help, --help-all print short, long, or detailed help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. When passed as first option, +# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.4.2 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . +# GNU libtool home page: . +# General help using GNU software: . + +PROGRAM=libtool +PACKAGE=libtool +VERSION=2.4.2 +TIMESTAMP="" +package_revision=1.3337 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# NLS nuisances: We save the old values to restore during execute mode. +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done +LC_ALL=C +LANGUAGE=C +export LANGUAGE LC_ALL + +$lt_unset CDPATH + + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath="$0" + + + +: ${CP="cp -f"} +test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} # func_dirname may be replaced by extended shell implementation + + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "${1}" | $SED "$basename"` +} # func_basename may be replaced by extended shell implementation + + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi + func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` +} # func_dirname_and_basename may be replaced by extended shell implementation + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname may be replaced by extended shell implementation + + +# These SED scripts presuppose an absolute path with a trailing slash. +pathcar='s,^/\([^/]*\).*$,\1,' +pathcdr='s,^/[^/]*,,' +removedotparts=':dotsl + s@/\./@/@g + t dotsl + s,/\.$,/,' +collapseslashes='s@/\{1,\}@/@g' +finalslash='s,/*$,/,' + +# func_normal_abspath PATH +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +# value returned in "$func_normal_abspath_result" +func_normal_abspath () +{ + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` + while :; do + # Processed it all yet? + if test "$func_normal_abspath_tpath" = / ; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result" ; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + +# func_relative_path SRCDIR DSTDIR +# generates a relative path from SRCDIR to DSTDIR, with a trailing +# slash if non-empty, suitable for immediately appending a filename +# without needing to append a separator. +# value returned in "$func_relative_path_result" +func_relative_path () +{ + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=${func_dirname_result} + if test "x$func_relative_path_tlibdir" = x ; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test "x$func_stripname_result" != x ; then + func_relative_path_result=${func_relative_path_result}/${func_stripname_result} + fi + + # Normalisation. If bindir is libdir, return empty string, + # else relative path ending with a slash; either way, target + # file name can be directly appended. + if test ! -z "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result/" + func_relative_path_result=$func_stripname_result + fi +} + +# The name of this program: +func_dirname_and_basename "$progpath" +progname=$func_basename_result + +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' + +# Sed substitution that converts a w32 file name or path +# which contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }$*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + done + my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "$my_tmpdir" +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "$1" | $SED \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + +# func_tr_sh +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $opt_debug + + $SED -n '/(C)/!b go + :more + /\./!{ + N + s/\n# / / + b more + } + :go + /^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $opt_debug + + $SED -n '/^# Usage:/,/^# *.*--help/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + echo + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help [NOEXIT] +# Echo long help message to standard output and exit, +# unless 'noexit' is passed as argument. +func_help () +{ + $opt_debug + + $SED -n '/^# Usage:/,/# Report bugs to/ { + :print + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ + p + d + } + /^# .* home page:/b print + /^# General help using/b print + ' < "$progpath" + ret=$? + if test -z "$1"; then + exit $ret + fi +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $opt_debug + + func_error "missing argument for $1." + exit_cmd=exit +} + + +# func_split_short_opt shortopt +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +func_split_short_opt () +{ + my_sed_short_opt='1s/^\(..\).*$/\1/;q' + my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + + func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` + func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` +} # func_split_short_opt may be replaced by extended shell implementation + + +# func_split_long_opt longopt +# Set func_split_long_opt_name and func_split_long_opt_arg shell +# variables after splitting LONGOPT at the `=' sign. +func_split_long_opt () +{ + my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' + my_sed_long_arg='1s/^--[^=]*=//' + + func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` + func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` +} # func_split_long_opt may be replaced by extended shell implementation + +exit_cmd=: + + + + + +magic="%%%MAGIC variable%%%" +magic_exe="%%%MAGIC EXE variable%%%" + +# Global variables. +nonopt= +preserve_args= +lo2o="s/\\.lo\$/.${objext}/" +o2lo="s/\\.${objext}\$/.lo/" +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "${1}=\$${1}\${2}" +} # func_append may be replaced by extended shell implementation + +# func_append_quoted var value +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +func_append_quoted () +{ + func_quote_for_eval "${2}" + eval "${1}=\$${1}\\ \$func_quote_for_eval_result" +} # func_append_quoted may be replaced by extended shell implementation + + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "${@}"` +} # func_arith may be replaced by extended shell implementation + + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` +} # func_len may be replaced by extended shell implementation + + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` +} # func_lo2o may be replaced by extended shell implementation + + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` +} # func_xform may be replaced by extended shell implementation + + +# func_fatal_configuration arg... +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func_error ${1+"$@"} + func_error "See the $PACKAGE documentation for more information." + func_fatal_error "Fatal configuration error." +} + + +# func_config +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + +# func_features +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test "$build_libtool_libs" = yes; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test "$build_old_libs" = yes; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + +# func_enable_tag tagname +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname="$1" + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf="/$re_begincf/,/$re_endcf/p" + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# Shorthand for --mode=foo, only valid as the first argument +case $1 in +clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; +compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; +execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; +finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; +install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; +link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; +uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; +esac + + + +# Option defaults: +opt_debug=: +opt_dry_run=false +opt_config=false +opt_preserve_dup_deps=false +opt_features=false +opt_finish=false +opt_help=false +opt_help_all=false +opt_silent=: +opt_warning=: +opt_verbose=: +opt_silent=false +opt_verbose=false + + +# Parse options once, thoroughly. This comes as soon as possible in the +# script to make things like `--version' happen as quickly as we can. +{ + # this just eases exit handling + while test $# -gt 0; do + opt="$1" + shift + case $opt in + --debug|-x) opt_debug='set -x' + func_echo "enabling shell trace mode" + $opt_debug + ;; + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + --config) + opt_config=: +func_config + ;; + --dlopen|-dlopen) + optarg="$1" + opt_dlopen="${opt_dlopen+$opt_dlopen +}$optarg" + shift + ;; + --preserve-dup-deps) + opt_preserve_dup_deps=: + ;; + --features) + opt_features=: +func_features + ;; + --finish) + opt_finish=: +set dummy --mode finish ${1+"$@"}; shift + ;; + --help) + opt_help=: + ;; + --help-all) + opt_help_all=: +opt_help=': help-all' + ;; + --mode) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_mode="$optarg" +case $optarg in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; +esac + shift + ;; + --no-silent|--no-quiet) + opt_silent=false +func_append preserve_args " $opt" + ;; + --no-warning|--no-warn) + opt_warning=false +func_append preserve_args " $opt" + ;; + --no-verbose) + opt_verbose=false +func_append preserve_args " $opt" + ;; + --silent|--quiet) + opt_silent=: +func_append preserve_args " $opt" + opt_verbose=false + ;; + --verbose|-v) + opt_verbose=: +func_append preserve_args " $opt" +opt_silent=false + ;; + --tag) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_tag="$optarg" +func_append preserve_args " $opt $optarg" +func_enable_tag "$optarg" + shift + ;; + + -\?|-h) func_usage ;; + --help) func_help ;; + --version) func_version ;; + + # Separate optargs to long options: + --*=*) + func_split_long_opt "$opt" + set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-n*|-v*) + func_split_short_opt "$opt" + set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognized option \`$opt'" ;; + *) set dummy "$opt" ${1+"$@"}; shift; break ;; + esac + done + + # Validate options: + + # save first non-option argument + if test "$#" -gt 0; then + nonopt="$opt" + shift + fi + + # preserve --debug + test "$opt_debug" = : || func_append preserve_args " --debug" + + case $host in + *cygwin* | *mingw* | *pw32* | *cegcc*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test "$opt_mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$opt_mode' for more information." + } + + + # Bail if the options were screwed + $exit_cmd $EXIT_FAILURE +} + + + + +## ----------- ## +## Main. ## +## ----------- ## + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case "$lt_sysroot:$1" in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result="=$func_stripname_result" + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $opt_debug + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=${1} + if test "$build_libtool_libs" = yes; then + write_lobj=\'${2}\' + else + write_lobj=none + fi + + if test "$build_old_libs" = yes; then + write_oldobj=\'${3}\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$lt_sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $opt_debug + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result="" + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $opt_debug + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $opt_debug + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $opt_debug + if test -z "$2" && test -n "$1" ; then + func_error "Could not determine host file name corresponding to" + func_error " \`$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result="$1" + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $opt_debug + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " \`$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result="$3" + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $opt_debug + case $4 in + $1 ) func_to_host_path_result="$3$func_to_host_path_result" + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via `$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $opt_debug + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $opt_debug + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result="$1" +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result="$func_convert_core_msys_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via `$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $opt_debug + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd="func_convert_path_${func_stripname_result}" + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $opt_debug + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result="$1" +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_mode_compile arg... +func_mode_compile () +{ + $opt_debug + # Get the compilation command and the source file. + base_compile= + srcfile="$nonopt" # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg="$arg" + arg_mode=normal + ;; + + target ) + libobj="$arg" + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify \`-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs="$IFS"; IFS=',' + for arg in $args; do + IFS="$save_ifs" + func_append_quoted lastarg "$arg" + done + IFS="$save_ifs" + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg="$srcfile" + srcfile="$arg" + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with \`-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj="$func_basename_result" + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from \`$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" + lobj=${xdir}$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test "$build_old_libs" = yes; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test "$need_locks" = warn; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test "$build_libtool_libs" = yes; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test "$pic_mode" != no; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test "$suppress_opt" = yes; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then + if test "$pic_mode" != yes; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test "$compiler_c_o" = yes; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test "$opt_mode" = compile && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a \`.o' file suitable for static linking + -static only build a \`.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a \`standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix \`.c' with the +library object suffix, \`.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to \`-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the \`--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the \`install' or \`cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE Use a list of object files found in FILE to specify objects + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with \`-') are ignored. + +Every other argument is treated as a filename. Files ending in \`.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in \`.la', then a libtool library is created, +only library objects (\`.lo' files) may be specified, and \`-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created +using \`ar' and \`ranlib', or on Windows using \`lib'. + +If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode \`$opt_mode'" + ;; + esac + + echo + $ECHO "Try \`$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test "$opt_help" = :; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | sed -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + sed '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $opt_debug + # The first argument is the command name. + cmd="$nonopt" + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "\`$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "\`$file' was not linked with \`-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir="$func_dirname_result" + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir="$func_dirname_result" + ;; + + *) + func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir="$absdir" + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic="$magic" + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file="$progdir/$program" + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file="$progdir/$program" + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if test "X$opt_dry_run" = Xfalse; then + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = execute && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $opt_debug + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "\`$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument \`$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_silent && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the \`$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test "$opt_mode" = finish && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test "x$prev" = x-m && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename="" + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname" ; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename="$func_basename_result" + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename" ; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $opt_debug + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $opt_debug + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive which possess that section. Heuristic: eliminate + # all those which have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $opt_debug + if func_cygming_gnu_implib_p "$1" ; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1" ; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result="" + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + if test "$lock_old_archive_extraction" = yes; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test "$lock_old_archive_extraction" = yes; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ which is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options which match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +/* declarations of non-ANSI functions */ +#if defined(__MINGW32__) +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined(__CYGWIN__) +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined (other platforms) ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined(_MSC_VER) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +# ifndef _INTPTR_T_DEFINED +# define _INTPTR_T_DEFINED +# define intptr_t int +# endif +#elif defined(__MINGW32__) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined(__CYGWIN__) +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined (other platforms) ... */ +#endif + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#if defined(LT_DEBUGWRAPPER) +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + int len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + int orig_value_len = strlen (orig_value); + int add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + int len = strlen (new_value); + while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[len-1] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $opt_debug + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll which has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=no + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module="${wl}-single_module" + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg="$1" + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir="$arg" + prev= + continue + ;; + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=yes + fi + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test "$prev" = dlprefiles; then + dlself=yes + elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test "$prev" = dlfiles; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols="$arg" + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex="$arg" + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir="$arg" + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file \`$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test "$prev" = rpath; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds="$arg" + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg="$arg" + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "\`-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test "X$arg" = "X-export-symbols"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between \`-L' and \`$1'" + else + func_fatal_error "need path for \`-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" + dir="$absdir" + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test "X$arg" = "X-lc" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test "$prev" = dlfiles; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test "$prev" = dlprefiles; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" + + if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname="$func_basename_result" + libobjs_save="$libobjs" + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps ; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test "$linkmode" = lib; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=no + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan"; then + libs="$deplibs" + deplibs= + fi + if test "$linkmode" = prog; then + case $pass in + dlopen) libs="$dlfiles" ;; + dlpreopen) libs="$dlprefiles" ;; + link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; + esac + fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi + if test "$pass" = dlopen; then + # Collect dlpreopened libraries + save_deplibs="$deplibs" + deplibs= + fi + + for deplib in $libs; do + lib= + found=no + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test "$linkmode" != lib && test "$linkmode" != prog; then + func_warning "\`-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then + if test "$search_ext" = ".la"; then + found=yes + else + found=no + fi + break 2 + fi + done + done + if test "$found" != yes; then + # deplib doesn't seem to be a libtool library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + else # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll="$l" + done + if test "X$ll" = "X$old_library" ; then # only static version available + found=no + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + lib=$ladir/$old_library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + fi + ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test "$pass" = conv && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + if test "$pass" = scan; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "\`-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test "$pass" = link; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + else + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac + continue + ;; + prog) + if test "$pass" != link; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + elif test "$linkmode" = prog; then + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=yes + continue + ;; + esac # case $deplib + + if test "$found" = yes || test -f "$lib"; then : + else + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" + fi + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan" || + { test "$linkmode" != prog && test "$linkmode" != lib; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test "$pass" = conv; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + elif test "$linkmode" != prog && test "$linkmode" != lib; then + func_fatal_error "\`$lib' is not a convenience library" + fi + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test "$prefer_static_libs" = yes || + test "$prefer_static_libs,$installed" = "built,no"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib="$l" + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + + # This library was specified with -dlopen. + if test "$pass" = dlopen; then + if test -z "$libdir"; then + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" + fi + if test -z "$dlname" || + test "$dlopen_support" != yes || + test "$build_libtool_libs" = no; then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir="$ladir" + fi + ;; + esac + func_basename "$lib" + laname="$func_basename_result" + + # Find the relevant object directory and library name. + if test "X$installed" = Xyes; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library \`$lib' was moved." + dir="$ladir" + absdir="$abs_ladir" + libdir="$abs_ladir" + else + dir="$lt_sysroot$libdir" + absdir="$lt_sysroot$libdir" + fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test "$pass" = dlpreopen; then + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + fi + case "$host" in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test "$linkmode" = lib; then + deplibs="$dir/$old_library $deplibs" + elif test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test "$linkmode" = prog && test "$pass" != link; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=no + if test "$link_all_deplibs" != no || test -z "$library_names" || + test "$build_libtool_libs" = no; then + linkalldeplibs=yes + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if test "$linkalldeplibs" = yes; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test "$linkmode,$pass" = "prog,link"; then + if test -n "$library_names" && + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + # Make sure the rpath contains only unique directories. + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if test "$alldeplibs" = yes && + { test "$deplibs_check_method" = pass_all || + { test "$build_libtool_libs" = yes && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test "$use_static_libs" = built && test "$installed" = yes; then + use_static_libs=no + fi + if test -n "$library_names" && + { test "$use_static_libs" = no || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break + fi + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + echo + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test "$linkmode" = lib && + test "$hardcode_into_libs" = yes; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname="$dlname" + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc*) + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + esac + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot="$soname" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test "$linkmode" = prog || test "$opt_mode" != relink; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test "$hardcode_direct" = no; then + add="$dir/$linklib" + case $host in + *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; + *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir="-L$dir" ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" + fi + fi + esac + elif test "$hardcode_minus_L" = no; then + case $host in + *-*-sunos*) add_shlibpath="$dir" ;; + esac + add_dir="-L$dir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = no; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + relink) + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$dir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$absdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test "$lib_linked" != yes; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test "$linkmode" = prog; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && + test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test "$linkmode" = prog || test "$opt_mode" = relink; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$libdir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$libdir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add="-l$name" + elif test "$hardcode_automatic" = yes; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib" ; then + add="$inst_prefix_dir$libdir/$linklib" + else + add="$libdir/$linklib" + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + fi + + if test "$linkmode" = prog; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test "$linkmode" = prog; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test "$hardcode_direct" != unsupported; then + test -n "$old_library" && linklib="$old_library" + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test "$build_libtool_libs" = yes; then + # Not a shared library + if test "$deplibs_check_method" != pass_all; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system can not link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test "$module" = yes; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test "$linkmode" = lib; then + if test -n "$dependency_libs" && + { test "$hardcode_into_libs" != yes || + test "$build_old_libs" = yes || + test "$link_static" = yes; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs="$temp_deplibs" + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test "$link_all_deplibs" != no; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path="$deplib" ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of \`$dir'" + absdir="$dir" + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names" ; then + for tmp in $deplibrary_names ; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + path= + fi + fi + ;; + *) + path="-L$absdir/$objdir" + ;; + esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs="$newdependency_libs" + if test "$pass" = dlpreopen; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test "$pass" != dlopen; then + if test "$pass" != conv; then + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + fi + + if test "$linkmode,$pass" != "prog,link"; then + vars="deplibs" + else + vars="compile_deplibs finalize_deplibs" + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs ; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i="" + ;; + esac + if test -n "$i" ; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test "$linkmode" = prog; then + dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then + dlprefiles="$newdlprefiles" + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form `libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + + if test "$need_lib_prefix" != no; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test "$deplibs_check_method" != pass_all; then + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" + + oldlibs= + if test -z "$rpath"; then + if test "$build_libtool_libs" = yes; then + # Building a libtool convenience library. + # Some compilers have problems with a `.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + shift + IFS="$save_ifs" + + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major="$1" + number_minor="$2" + number_revision="$3" + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # which has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_revision" + ;; + freebsd-aout|freebsd-elf|qnx|sunos) + current="$number_major" + revision="$number_minor" + age="0" + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_minor" + lt_irix_increment=no + ;; + esac + ;; + no) + current="$1" + revision="$2" + age="$3" + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + + freebsd-aout) + major=".$current" + versuffix=".$current.$revision"; + ;; + + freebsd-elf) + major=".$current" + versuffix=".$current" + ;; + + irix | nonstopux) + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test "$loop" -ne 0; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring_prefix$major.$iface:$verstring" + done + + # Before this point, $major must not contain `.'. + major=.$major + versuffix="$major.$revision" + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$age + while test "$loop" -ne 0; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring:${iface}.0" + done + + # Make executables depend on our current version. + func_append verstring ":${current}.0" + ;; + + qnx) + major=".$current" + versuffix=".$current" + ;; + + sunos) + major=".$current" + versuffix=".$current.$revision" + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + + *) + func_fatal_configuration "unknown library version type \`$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring="0.0" + ;; + esac + if test "$need_version" = no; then + versuffix= + else + versuffix=".0.0" + fi + fi + + # Remove version info from name if versioning should be avoided + if test "$avoid_version" = yes && test "$need_version" = no; then + major= + versuffix= + verstring="" + fi + + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then + func_warning "undefined symbols not allowed in $host shared libraries" + build_libtool_libs=no + build_old_libs=yes + fi + else + # Don't allow undefined symbols. + allow_undefined_flag="$no_undefined_flag" + fi + + fi + + func_generate_dlsyms "$libname" "$libname" "yes" + func_append libobjs " $symfileobj" + test "X$libobjs" = "X " && libobjs= + + if test "$opt_mode" != relink; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) + if test "X$precious_files_regex" != "X"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles="$dlfiles" + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles="$dlprefiles" + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test "$build_libtool_libs" = yes; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release="" + versuffix="" + major="" + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib="" + ;; + esac + fi + if test -n "$a_deplib" ; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib="$potent_lib" # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs="" + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + for i in $predeps $postdeps ; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test "X$deplibs_check_method" = "Xnone"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test "$allow_undefined" = no; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs="$new_libs" + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then + # Remove ${wl} instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test "$hardcode_into_libs" = yes; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath="$finalize_rpath" + test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath="$finalize_shlibpath" + test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname="$1" + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib="$output_objdir/$realname" + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs="$IFS"; IFS='~' + for cmd1 in $cmds; do + IFS="$save_ifs" + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test "$try_normal_branch" = yes \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=${output_objdir}/${output_la}.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS="$save_ifs" + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs="$tmp_deplibs" + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test "X$skipped_export" != "X:" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test "$module" = yes || test "$export_dynamic" = yes; then + # On all known operating systems, these are identical. + dlname="$soname" + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj="$output" + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + else + gentop="$output_objdir/${obj}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + + # Create the old-style object. + reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + fi + + if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" + + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " ${wl}-bind_at_load" + func_append finalize_command " ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs="$new_libs" + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath="$rpath" + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath="$rpath" + + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=yes + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=no + ;; + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + fi + + exit $exit_status + fi + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test "$no_install" = yes; then + # We don't need to create a wrapper script. + link_command="$compile_var$compile_command$compile_rpath" + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" + else + if test "$fast_install" != no; then + link_command="$finalize_var$compile_command$finalize_rpath" + if test "$fast_install" = yes; then + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + else + # fast_install is set to needless + relink_command= + fi + else + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + fi + fi + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + if test "$build_libtool_libs" = convenience; then + oldobjs="$libobjs_save $symfileobj" + addlibs="$convenience" + build_libtool_libs=no + else + if test "$build_libtool_libs" = module; then + oldobjs="$libobjs_save" + build_libtool_libs=no + else + oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + func_append oldobjs " $symfileobj" + fi + fi + addlibs="$old_convenience" + fi + + if test -n "$addlibs"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase="$func_basename_result" + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj" ; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test "X$oldobjs" = "X" ; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test "$hardcode_automatic" = yes ; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test "$installed" = yes; then + if test -z "$install_libdir"; then + break + fi + output="$output_objdir/$outputname"i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name="$func_basename_result" + func_resolve_sysroot "$deplib" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs="$newdependency_libs" + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles="$newdlprefiles" + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles="$newdlprefiles" + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test "x$bindir" != x ; + then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test "$installed" = no && test "$need_relink" = yes; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +{ test "$opt_mode" = link || test "$opt_mode" = relink; } && + func_mode_link ${1+"$@"} + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" + files= + rmforce= + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=yes ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then + odir="$objdir" + else + odir="$dir/$objdir" + fi + func_basename "$file" + name="$func_basename_result" + test "$opt_mode" = uninstall && odir="$dir" + + # Remember odir for removal later, being careful to avoid duplicates + if test "$opt_mode" = clean; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif test "$rmforce" = yes; then + continue + fi + + rmfiles="$file" + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case "$opt_mode" in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && + test "$pic_object" != none; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test "$opt_mode" = clean ; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.${objext}" + if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name" ; then + func_append rmfiles " $odir/lt-${noexename}.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the ${objdir}s in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && + func_mode_uninstall ${1+"$@"} + +test -z "$opt_mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# in which we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: +# vi:sw=2 + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/missing b/1_6.h12_dev/render/libuuid-1.0.3/missing new file mode 100755 index 0000000..cdea514 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/missing @@ -0,0 +1,215 @@ +#! /bin/sh +# Common wrapper for a few potentially missing GNU programs. + +scriptversion=2012-06-26.16; # UTC + +# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Originally written by Fran,cois Pinard , 1996. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, 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 . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try '$0 --help' for more information" + exit 1 +fi + +case $1 in + + --is-lightweight) + # Used by our autoconf macros to check whether the available missing + # script is modern enough. + exit 0 + ;; + + --run) + # Back-compat with the calling convention used by older automake. + shift + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due +to PROGRAM being missing or too old. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + +Supported PROGRAM values: + aclocal autoconf autoheader autom4te automake makeinfo + bison yacc flex lex help2man + +Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and +'g' are ignored when checking the name. + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: unknown '$1' option" + echo 1>&2 "Try '$0 --help' for more information" + exit 1 + ;; + +esac + +# Run the given program, remember its exit status. +"$@"; st=$? + +# If it succeeded, we are done. +test $st -eq 0 && exit 0 + +# Also exit now if we it failed (or wasn't found), and '--version' was +# passed; such an option is passed most likely to detect whether the +# program is present and works. +case $2 in --version|--help) exit $st;; esac + +# Exit code 63 means version mismatch. This often happens when the user +# tries to use an ancient version of a tool on a file that requires a +# minimum version. +if test $st -eq 63; then + msg="probably too old" +elif test $st -eq 127; then + # Program was missing. + msg="missing on your system" +else + # Program was found and executed, but failed. Give up. + exit $st +fi + +perl_URL=http://www.perl.org/ +flex_URL=http://flex.sourceforge.net/ +gnu_software_URL=http://www.gnu.org/software + +program_details () +{ + case $1 in + aclocal|automake) + echo "The '$1' program is part of the GNU Automake package:" + echo "<$gnu_software_URL/automake>" + echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" + echo "<$gnu_software_URL/autoconf>" + echo "<$gnu_software_URL/m4/>" + echo "<$perl_URL>" + ;; + autoconf|autom4te|autoheader) + echo "The '$1' program is part of the GNU Autoconf package:" + echo "<$gnu_software_URL/autoconf/>" + echo "It also requires GNU m4 and Perl in order to run:" + echo "<$gnu_software_URL/m4/>" + echo "<$perl_URL>" + ;; + esac +} + +give_advice () +{ + # Normalize program name to check for. + normalized_program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + + printf '%s\n' "'$1' is $msg." + + configure_deps="'configure.ac' or m4 files included by 'configure.ac'" + case $normalized_program in + autoconf*) + echo "You should only need it if you modified 'configure.ac'," + echo "or m4 files included by it." + program_details 'autoconf' + ;; + autoheader*) + echo "You should only need it if you modified 'acconfig.h' or" + echo "$configure_deps." + program_details 'autoheader' + ;; + automake*) + echo "You should only need it if you modified 'Makefile.am' or" + echo "$configure_deps." + program_details 'automake' + ;; + aclocal*) + echo "You should only need it if you modified 'acinclude.m4' or" + echo "$configure_deps." + program_details 'aclocal' + ;; + autom4te*) + echo "You might have modified some maintainer files that require" + echo "the 'automa4te' program to be rebuilt." + program_details 'autom4te' + ;; + bison*|yacc*) + echo "You should only need it if you modified a '.y' file." + echo "You may want to install the GNU Bison package:" + echo "<$gnu_software_URL/bison/>" + ;; + lex*|flex*) + echo "You should only need it if you modified a '.l' file." + echo "You may want to install the Fast Lexical Analyzer package:" + echo "<$flex_URL>" + ;; + help2man*) + echo "You should only need it if you modified a dependency" \ + "of a man page." + echo "You may want to install the GNU Help2man package:" + echo "<$gnu_software_URL/help2man/>" + ;; + makeinfo*) + echo "You should only need it if you modified a '.texi' file, or" + echo "any other file indirectly affecting the aspect of the manual." + echo "You might want to install the Texinfo package:" + echo "<$gnu_software_URL/texinfo/>" + echo "The spurious makeinfo call might also be the consequence of" + echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" + echo "want to install GNU make:" + echo "<$gnu_software_URL/make/>" + ;; + *) + echo "You might have modified some files without having the proper" + echo "tools for further handling them. Check the 'README' file, it" + echo "often tells you about the needed prerequisites for installing" + echo "this package. You may also peek at any GNU archive site, in" + echo "case some other package contains this missing '$1' program." + ;; + esac +} + +give_advice "$1" | sed -e '1s/^/WARNING: /' \ + -e '2,$s/^/ /' >&2 + +# Propagate the correct exit status (expected to be 127 for a program +# not found, 63 for a program that failed due to version mismatch). +exit $st + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/1_6.h12_dev/render/libuuid-1.0.3/pack.c b/1_6.h12_dev/render/libuuid-1.0.3/pack.c new file mode 100644 index 0000000..6e12476 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/pack.c @@ -0,0 +1,69 @@ +/* + * Internal routine for packing UUIDs + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include +#include "uuidP.h" + +void uuid_pack(const struct uuid *uu, uuid_t ptr) +{ + uint32_t tmp; + unsigned char *out = ptr; + + tmp = uu->time_low; + out[3] = (unsigned char) tmp; + tmp >>= 8; + out[2] = (unsigned char) tmp; + tmp >>= 8; + out[1] = (unsigned char) tmp; + tmp >>= 8; + out[0] = (unsigned char) tmp; + + tmp = uu->time_mid; + out[5] = (unsigned char) tmp; + tmp >>= 8; + out[4] = (unsigned char) tmp; + + tmp = uu->time_hi_and_version; + out[7] = (unsigned char) tmp; + tmp >>= 8; + out[6] = (unsigned char) tmp; + + tmp = uu->clock_seq; + out[9] = (unsigned char) tmp; + tmp >>= 8; + out[8] = (unsigned char) tmp; + + memcpy(out+10, uu->node, 6); +} + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/parse.c b/1_6.h12_dev/render/libuuid-1.0.3/parse.c new file mode 100644 index 0000000..074383e --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/parse.c @@ -0,0 +1,79 @@ +/* + * parse.c --- UUID parsing + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include +#include +#include +#include + +#include "uuidP.h" + +int uuid_parse(const char *in, uuid_t uu) +{ + struct uuid uuid; + int i; + const char *cp; + char buf[3]; + + if (strlen(in) != 36) + return -1; + for (i=0, cp = in; i <= 36; i++,cp++) { + if ((i == 8) || (i == 13) || (i == 18) || + (i == 23)) { + if (*cp == '-') + continue; + else + return -1; + } + if (i== 36) + if (*cp == 0) + continue; + if (!isxdigit(*cp)) + return -1; + } + uuid.time_low = strtoul(in, NULL, 16); + uuid.time_mid = strtoul(in+9, NULL, 16); + uuid.time_hi_and_version = strtoul(in+14, NULL, 16); + uuid.clock_seq = strtoul(in+19, NULL, 16); + cp = in+24; + buf[2] = 0; + for (i=0; i < 6; i++) { + buf[0] = *cp++; + buf[1] = *cp++; + uuid.node[i] = strtoul(buf, NULL, 16); + } + + uuid_pack(&uuid, uu); + return 0; +} diff --git a/1_6.h12_dev/render/libuuid-1.0.3/randutils.c b/1_6.h12_dev/render/libuuid-1.0.3/randutils.c new file mode 100644 index 0000000..80893d3 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/randutils.c @@ -0,0 +1,125 @@ +/* + * General purpose random utilities + * + * Based on libuuid code. + * + * This file may be redistributed under the terms of the + * GNU Lesser General Public License. + */ +#include +#include +#include +#include +#include +#include + +#include + +#include "randutils.h" + +#ifdef HAVE_TLS +#define THREAD_LOCAL static __thread +#else +#define THREAD_LOCAL static +#endif + +#if defined(__linux__) && defined(__NR_gettid) && defined(HAVE_JRAND48) +#define DO_JRAND_MIX +THREAD_LOCAL unsigned short ul_jrand_seed[3]; +#endif + +int random_get_fd(void) +{ + int i, fd; + struct timeval tv; + + gettimeofday(&tv, 0); + fd = open("/dev/urandom", O_RDONLY); + if (fd == -1) + fd = open("/dev/random", O_RDONLY | O_NONBLOCK); + if (fd >= 0) { + i = fcntl(fd, F_GETFD); + if (i >= 0) + fcntl(fd, F_SETFD, i | FD_CLOEXEC); + } + srand((getpid() << 16) ^ getuid() ^ tv.tv_sec ^ tv.tv_usec); + +#ifdef DO_JRAND_MIX + ul_jrand_seed[0] = getpid() ^ (tv.tv_sec & 0xFFFF); + ul_jrand_seed[1] = getppid() ^ (tv.tv_usec & 0xFFFF); + ul_jrand_seed[2] = (tv.tv_sec ^ tv.tv_usec) >> 16; +#endif + /* Crank the random number generator a few times */ + gettimeofday(&tv, 0); + for (i = (tv.tv_sec ^ tv.tv_usec) & 0x1F; i > 0; i--) + rand(); + return fd; +} + + +/* + * Generate a stream of random nbytes into buf. + * Use /dev/urandom if possible, and if not, + * use glibc pseudo-random functions. + */ +void random_get_bytes(void *buf, size_t nbytes) +{ + size_t i, n = nbytes; + int fd = random_get_fd(); + int lose_counter = 0; + unsigned char *cp = (unsigned char *) buf; + + if (fd >= 0) { + while (n > 0) { + ssize_t x = read(fd, cp, n); + if (x <= 0) { + if (lose_counter++ > 16) + break; + continue; + } + n -= x; + cp += x; + lose_counter = 0; + } + + close(fd); + } + + /* + * We do this all the time, but this is the only source of + * randomness if /dev/random/urandom is out to lunch. + */ + for (cp = buf, i = 0; i < nbytes; i++) + *cp++ ^= (rand() >> 7) & 0xFF; + +#ifdef DO_JRAND_MIX + { + unsigned short tmp_seed[3]; + + memcpy(tmp_seed, ul_jrand_seed, sizeof(tmp_seed)); + ul_jrand_seed[2] = ul_jrand_seed[2] ^ syscall(__NR_gettid); + for (cp = buf, i = 0; i < nbytes; i++) + *cp++ ^= (jrand48(tmp_seed) >> 7) & 0xFF; + memcpy(ul_jrand_seed, tmp_seed, + sizeof(ul_jrand_seed)-sizeof(unsigned short)); + } +#endif + + return; +} + +#ifdef TEST_PROGRAM +int main(int argc __attribute__ ((__unused__)), + char *argv[] __attribute__ ((__unused__))) +{ + unsigned int v, i; + + /* generate and print 10 random numbers */ + for (i = 0; i < 10; i++) { + random_get_bytes(&v, sizeof(v)); + printf("%d\n", v); + } + + return EXIT_SUCCESS; +} +#endif /* TEST_PROGRAM */ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/randutils.h b/1_6.h12_dev/render/libuuid-1.0.3/randutils.h new file mode 100644 index 0000000..dec5e35 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/randutils.h @@ -0,0 +1,12 @@ +#ifndef UTIL_LINUX_RANDUTILS +#define UTIL_LINUX_RANDUTILS + +#ifdef HAVE_SRANDOM +#define srand(x) srandom(x) +#define rand() random() +#endif + +extern int random_get_fd(void); +extern void random_get_bytes(void *buf, size_t nbytes); + +#endif diff --git a/1_6.h12_dev/render/libuuid-1.0.3/stamp-h1 b/1_6.h12_dev/render/libuuid-1.0.3/stamp-h1 new file mode 100644 index 0000000..4547fe1 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/stamp-h1 @@ -0,0 +1 @@ +timestamp for config.h diff --git a/1_6.h12_dev/render/libuuid-1.0.3/test_uuid.c b/1_6.h12_dev/render/libuuid-1.0.3/test_uuid.c new file mode 100644 index 0000000..e03138f --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/test_uuid.c @@ -0,0 +1,180 @@ +/* + * tst_uuid.c --- test program from the UUID library + * + * Copyright (C) 1996, 1997, 1998 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#ifdef _WIN32 +#define _WIN32_WINNT 0x0500 +#include +#define UUID MYUUID +#endif + +#include +#include + +#include "uuid.h" + +static int test_uuid(const char * uuid, int isValid) +{ + static const char * validStr[2] = {"invalid", "valid"}; + uuid_t uuidBits; + int parsedOk; + + parsedOk = uuid_parse(uuid, uuidBits) == 0; + + printf("%s is %s", uuid, validStr[isValid]); + if (parsedOk != isValid) { + printf(" but uuid_parse says %s\n", validStr[parsedOk]); + return 1; + } + printf(", OK\n"); + return 0; +} + +#ifdef __GNUC__ +#define ATTR(x) __attribute__(x) +#else +#define ATTR(x) +#endif + +int +main(int argc ATTR((unused)) , char **argv ATTR((unused))) +{ + uuid_t buf, tst; + char str[100]; + struct timeval tv; + time_t time_reg; + unsigned char *cp; + int i; + int failed = 0; + int type, variant; + + uuid_generate(buf); + uuid_unparse(buf, str); + printf("UUID generate = %s\n", str); + printf("UUID: "); + for (i=0, cp = (unsigned char *) &buf; i < 16; i++) { + printf("%02x", *cp++); + } + printf("\n"); + type = uuid_type(buf); variant = uuid_variant(buf); + printf("UUID type = %d, UUID variant = %d\n", type, variant); + if (variant != UUID_VARIANT_DCE) { + printf("Incorrect UUID Variant; was expecting DCE!\n"); + failed++; + } + printf("\n"); + + uuid_generate_random(buf); + uuid_unparse(buf, str); + printf("UUID random string = %s\n", str); + printf("UUID: "); + for (i=0, cp = (unsigned char *) &buf; i < 16; i++) { + printf("%02x", *cp++); + } + printf("\n"); + type = uuid_type(buf); variant = uuid_variant(buf); + printf("UUID type = %d, UUID variant = %d\n", type, variant); + if (variant != UUID_VARIANT_DCE) { + printf("Incorrect UUID Variant; was expecting DCE!\n"); + failed++; + } + if (type != 4) { + printf("Incorrect UUID type; was expecting " + "4 (random type)!\n"); + failed++; + } + printf("\n"); + + uuid_generate_time(buf); + uuid_unparse(buf, str); + printf("UUID string = %s\n", str); + printf("UUID time: "); + for (i=0, cp = (unsigned char *) &buf; i < 16; i++) { + printf("%02x", *cp++); + } + printf("\n"); + type = uuid_type(buf); variant = uuid_variant(buf); + printf("UUID type = %d, UUID variant = %d\n", type, variant); + if (variant != UUID_VARIANT_DCE) { + printf("Incorrect UUID Variant; was expecting DCE!\n"); + failed++; + } + if (type != 1) { + printf("Incorrect UUID type; was expecting " + "1 (time-based type)!\\n"); + failed++; + } + tv.tv_sec = 0; + tv.tv_usec = 0; + time_reg = uuid_time(buf, &tv); + printf("UUID time is: (%ld, %ld): %s\n", tv.tv_sec, tv.tv_usec, + ctime(&time_reg)); + uuid_parse(str, tst); + if (!uuid_compare(buf, tst)) + printf("UUID parse and compare succeeded.\n"); + else { + printf("UUID parse and compare failed!\n"); + failed++; + } + uuid_clear(tst); + if (uuid_is_null(tst)) + printf("UUID clear and is null succeeded.\n"); + else { + printf("UUID clear and is null failed!\n"); + failed++; + } + uuid_copy(buf, tst); + if (!uuid_compare(buf, tst)) + printf("UUID copy and compare succeeded.\n"); + else { + printf("UUID copy and compare failed!\n"); + failed++; + } + failed += test_uuid("84949cc5-4701-4a84-895b-354c584a981b", 1); + failed += test_uuid("84949CC5-4701-4A84-895B-354C584A981B", 1); + failed += test_uuid("84949cc5-4701-4a84-895b-354c584a981bc", 0); + failed += test_uuid("84949cc5-4701-4a84-895b-354c584a981", 0); + failed += test_uuid("84949cc5x4701-4a84-895b-354c584a981b", 0); + failed += test_uuid("84949cc504701-4a84-895b-354c584a981b", 0); + failed += test_uuid("84949cc5-470104a84-895b-354c584a981b", 0); + failed += test_uuid("84949cc5-4701-4a840895b-354c584a981b", 0); + failed += test_uuid("84949cc5-4701-4a84-895b0354c584a981b", 0); + failed += test_uuid("g4949cc5-4701-4a84-895b-354c584a981b", 0); + failed += test_uuid("84949cc5-4701-4a84-895b-354c584a981g", 0); + + if (failed) { + printf("%d failures.\n", failed); + exit(1); + } + return 0; +} diff --git a/1_6.h12_dev/render/libuuid-1.0.3/tmp/include/uuid/uuid.h b/1_6.h12_dev/render/libuuid-1.0.3/tmp/include/uuid/uuid.h new file mode 100644 index 0000000..874d65a --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/tmp/include/uuid/uuid.h @@ -0,0 +1,104 @@ +/* + * Public include file for the UUID library + * + * Copyright (C) 1996, 1997, 1998 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#ifndef _UUID_UUID_H +#define _UUID_UUID_H + +#include +#ifndef _WIN32 +#include +#endif +#include + +typedef unsigned char uuid_t[16]; + +/* UUID Variant definitions */ +#define UUID_VARIANT_NCS 0 +#define UUID_VARIANT_DCE 1 +#define UUID_VARIANT_MICROSOFT 2 +#define UUID_VARIANT_OTHER 3 + +/* UUID Type definitions */ +#define UUID_TYPE_DCE_TIME 1 +#define UUID_TYPE_DCE_RANDOM 4 + +/* Allow UUID constants to be defined */ +#ifdef __GNUC__ +#define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \ + static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15} +#else +#define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \ + static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15} +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/* clear.c */ +void uuid_clear(uuid_t uu); + +/* compare.c */ +int uuid_compare(const uuid_t uu1, const uuid_t uu2); + +/* copy.c */ +void uuid_copy(uuid_t dst, const uuid_t src); + +/* gen_uuid.c */ +void uuid_generate(uuid_t out); +void uuid_generate_random(uuid_t out); +void uuid_generate_time(uuid_t out); +int uuid_generate_time_safe(uuid_t out); + +/* isnull.c */ +int uuid_is_null(const uuid_t uu); + +/* parse.c */ +int uuid_parse(const char *in, uuid_t uu); + +/* unparse.c */ +void uuid_unparse(const uuid_t uu, char *out); +void uuid_unparse_lower(const uuid_t uu, char *out); +void uuid_unparse_upper(const uuid_t uu, char *out); + +/* uuid_time.c */ +time_t uuid_time(const uuid_t uu, struct timeval *ret_tv); +int uuid_type(const uuid_t uu); +int uuid_variant(const uuid_t uu); + +#ifdef __cplusplus +} +#endif + +#endif /* _UUID_UUID_H */ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.a b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.a new file mode 100644 index 0000000..2ca4bd6 Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.a differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.la b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.la new file mode 100755 index 0000000..dd72753 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.la @@ -0,0 +1,41 @@ +# libuuid.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4.2 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libuuid.so.1' + +# Names of this library. +library_names='libuuid.so.1.0.0 libuuid.so.1 libuuid.so' + +# The name of the static archive. +old_library='libuuid.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libuuid. +current=1 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib' diff --git a/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so new file mode 120000 index 0000000..efee1c0 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so @@ -0,0 +1 @@ +libuuid.so.1.0.0 \ No newline at end of file diff --git a/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so.1 b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so.1 new file mode 120000 index 0000000..efee1c0 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so.1 @@ -0,0 +1 @@ +libuuid.so.1.0.0 \ No newline at end of file diff --git a/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so.1.0.0 b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so.1.0.0 new file mode 100755 index 0000000..4c4c07b Binary files /dev/null and b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/libuuid.so.1.0.0 differ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/pkgconfig/uuid.pc b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/pkgconfig/uuid.pc new file mode 100644 index 0000000..82b7646 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/tmp/lib/pkgconfig/uuid.pc @@ -0,0 +1,11 @@ +prefix=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: uuid +Description: Universally unique id library +Version: 1.0.3 +Requires: +Cflags: -I${includedir}/uuid +Libs: -L${libdir} -luuid diff --git a/1_6.h12_dev/render/libuuid-1.0.3/unpack.c b/1_6.h12_dev/render/libuuid-1.0.3/unpack.c new file mode 100644 index 0000000..beaaff3 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/unpack.c @@ -0,0 +1,63 @@ +/* + * Internal routine for unpacking UUID + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include +#include "uuidP.h" + +void uuid_unpack(const uuid_t in, struct uuid *uu) +{ + const uint8_t *ptr = in; + uint32_t tmp; + + tmp = *ptr++; + tmp = (tmp << 8) | *ptr++; + tmp = (tmp << 8) | *ptr++; + tmp = (tmp << 8) | *ptr++; + uu->time_low = tmp; + + tmp = *ptr++; + tmp = (tmp << 8) | *ptr++; + uu->time_mid = tmp; + + tmp = *ptr++; + tmp = (tmp << 8) | *ptr++; + uu->time_hi_and_version = tmp; + + tmp = *ptr++; + tmp = (tmp << 8) | *ptr++; + uu->clock_seq = tmp; + + memcpy(uu->node, ptr, 6); +} + diff --git a/1_6.h12_dev/render/libuuid-1.0.3/unparse.c b/1_6.h12_dev/render/libuuid-1.0.3/unparse.c new file mode 100644 index 0000000..a95bbb0 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/unparse.c @@ -0,0 +1,76 @@ +/* + * unparse.c -- convert a UUID to string + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include + +#include "uuidP.h" + +static const char *fmt_lower = + "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x"; + +static const char *fmt_upper = + "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X"; + +#ifdef UUID_UNPARSE_DEFAULT_UPPER +#define FMT_DEFAULT fmt_upper +#else +#define FMT_DEFAULT fmt_lower +#endif + +static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) +{ + struct uuid uuid; + + uuid_unpack(uu, &uuid); + sprintf(out, fmt, + uuid.time_low, uuid.time_mid, uuid.time_hi_and_version, + uuid.clock_seq >> 8, uuid.clock_seq & 0xFF, + uuid.node[0], uuid.node[1], uuid.node[2], + uuid.node[3], uuid.node[4], uuid.node[5]); +} + +void uuid_unparse_lower(const uuid_t uu, char *out) +{ + uuid_unparse_x(uu, out, fmt_lower); +} + +void uuid_unparse_upper(const uuid_t uu, char *out) +{ + uuid_unparse_x(uu, out, fmt_upper); +} + +void uuid_unparse(const uuid_t uu, char *out) +{ + uuid_unparse_x(uu, out, FMT_DEFAULT); +} diff --git a/1_6.h12_dev/render/libuuid-1.0.3/uuid.h b/1_6.h12_dev/render/libuuid-1.0.3/uuid.h new file mode 100644 index 0000000..874d65a --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/uuid.h @@ -0,0 +1,104 @@ +/* + * Public include file for the UUID library + * + * Copyright (C) 1996, 1997, 1998 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#ifndef _UUID_UUID_H +#define _UUID_UUID_H + +#include +#ifndef _WIN32 +#include +#endif +#include + +typedef unsigned char uuid_t[16]; + +/* UUID Variant definitions */ +#define UUID_VARIANT_NCS 0 +#define UUID_VARIANT_DCE 1 +#define UUID_VARIANT_MICROSOFT 2 +#define UUID_VARIANT_OTHER 3 + +/* UUID Type definitions */ +#define UUID_TYPE_DCE_TIME 1 +#define UUID_TYPE_DCE_RANDOM 4 + +/* Allow UUID constants to be defined */ +#ifdef __GNUC__ +#define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \ + static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15} +#else +#define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \ + static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15} +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/* clear.c */ +void uuid_clear(uuid_t uu); + +/* compare.c */ +int uuid_compare(const uuid_t uu1, const uuid_t uu2); + +/* copy.c */ +void uuid_copy(uuid_t dst, const uuid_t src); + +/* gen_uuid.c */ +void uuid_generate(uuid_t out); +void uuid_generate_random(uuid_t out); +void uuid_generate_time(uuid_t out); +int uuid_generate_time_safe(uuid_t out); + +/* isnull.c */ +int uuid_is_null(const uuid_t uu); + +/* parse.c */ +int uuid_parse(const char *in, uuid_t uu); + +/* unparse.c */ +void uuid_unparse(const uuid_t uu, char *out); +void uuid_unparse_lower(const uuid_t uu, char *out); +void uuid_unparse_upper(const uuid_t uu, char *out); + +/* uuid_time.c */ +time_t uuid_time(const uuid_t uu, struct timeval *ret_tv); +int uuid_type(const uuid_t uu); +int uuid_variant(const uuid_t uu); + +#ifdef __cplusplus +} +#endif + +#endif /* _UUID_UUID_H */ diff --git a/1_6.h12_dev/render/libuuid-1.0.3/uuid.pc b/1_6.h12_dev/render/libuuid-1.0.3/uuid.pc new file mode 100644 index 0000000..82b7646 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/uuid.pc @@ -0,0 +1,11 @@ +prefix=/home/rh/my_code/OpenWrt_Luci_Lua/1_6.h12_dev/render/libuuid-1.0.3/tmp +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: uuid +Description: Universally unique id library +Version: 1.0.3 +Requires: +Cflags: -I${includedir}/uuid +Libs: -L${libdir} -luuid diff --git a/1_6.h12_dev/render/libuuid-1.0.3/uuid.pc.in b/1_6.h12_dev/render/libuuid-1.0.3/uuid.pc.in new file mode 100644 index 0000000..52edee2 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/uuid.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: uuid +Description: Universally unique id library +Version: @LIBUUID_VERSION@ +Requires: +Cflags: -I${includedir}/uuid +Libs: -L${libdir} -luuid diff --git a/1_6.h12_dev/render/libuuid-1.0.3/uuidP.h b/1_6.h12_dev/render/libuuid-1.0.3/uuidP.h new file mode 100644 index 0000000..86a5e26 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/uuidP.h @@ -0,0 +1,61 @@ +/* + * uuid.h -- private header file for uuids + * + * Copyright (C) 1996, 1997 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#include +#include + +#include "uuid.h" + +#define LIBUUID_CLOCK_FILE "/var/lib/libuuid/clock.txt" + +/* + * Offset between 15-Oct-1582 and 1-Jan-70 + */ +#define TIME_OFFSET_HIGH 0x01B21DD2 +#define TIME_OFFSET_LOW 0x13814000 + +struct uuid { + uint32_t time_low; + uint16_t time_mid; + uint16_t time_hi_and_version; + uint16_t clock_seq; + uint8_t node[6]; +}; + + +/* + * prototypes + */ +void uuid_pack(const struct uuid *uu, uuid_t ptr); +void uuid_unpack(const uuid_t in, struct uuid *uu); diff --git a/1_6.h12_dev/render/libuuid-1.0.3/uuid_time.c b/1_6.h12_dev/render/libuuid-1.0.3/uuid_time.c new file mode 100644 index 0000000..f25f5c9 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/uuid_time.c @@ -0,0 +1,171 @@ +/* + * uuid_time.c --- Interpret the time field from a uuid. This program + * violates the UUID abstraction barrier by reaching into the guts + * of a UUID and interpreting it. + * + * Copyright (C) 1998, 1999 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#ifdef _WIN32 +#define _WIN32_WINNT 0x0500 +#include +#define UUID MYUUID +#endif + +#include +#ifdef HAVE_UNISTD_H +#include +#endif +#include +#include +#ifdef HAVE_SYS_TIME_H +#include +#endif +#include + +#include "uuidP.h" + +time_t uuid_time(const uuid_t uu, struct timeval *ret_tv) +{ + struct timeval tv; + struct uuid uuid; + uint32_t high; + uint64_t clock_reg; + + uuid_unpack(uu, &uuid); + + high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16); + clock_reg = uuid.time_low | ((uint64_t) high << 32); + + clock_reg -= (((uint64_t) 0x01B21DD2) << 32) + 0x13814000; + tv.tv_sec = clock_reg / 10000000; + tv.tv_usec = (clock_reg % 10000000) / 10; + + if (ret_tv) + *ret_tv = tv; + + return tv.tv_sec; +} + +int uuid_type(const uuid_t uu) +{ + struct uuid uuid; + + uuid_unpack(uu, &uuid); + return ((uuid.time_hi_and_version >> 12) & 0xF); +} + +int uuid_variant(const uuid_t uu) +{ + struct uuid uuid; + int var; + + uuid_unpack(uu, &uuid); + var = uuid.clock_seq; + + if ((var & 0x8000) == 0) + return UUID_VARIANT_NCS; + if ((var & 0x4000) == 0) + return UUID_VARIANT_DCE; + if ((var & 0x2000) == 0) + return UUID_VARIANT_MICROSOFT; + return UUID_VARIANT_OTHER; +} + +#ifdef DEBUG +static const char *variant_string(int variant) +{ + switch (variant) { + case UUID_VARIANT_NCS: + return "NCS"; + case UUID_VARIANT_DCE: + return "DCE"; + case UUID_VARIANT_MICROSOFT: + return "Microsoft"; + default: + return "Other"; + } +} + + +int +main(int argc, char **argv) +{ + uuid_t buf; + time_t time_reg; + struct timeval tv; + int type, variant; + + if (argc != 2) { + fprintf(stderr, "Usage: %s uuid\n", argv[0]); + exit(1); + } + if (uuid_parse(argv[1], buf)) { + fprintf(stderr, "Invalid UUID: %s\n", argv[1]); + exit(1); + } + variant = uuid_variant(buf); + type = uuid_type(buf); + time_reg = uuid_time(buf, &tv); + + printf("UUID variant is %d (%s)\n", variant, variant_string(variant)); + if (variant != UUID_VARIANT_DCE) { + printf("Warning: This program only knows how to interpret " + "DCE UUIDs.\n\tThe rest of the output is likely " + "to be incorrect!!\n"); + } + printf("UUID type is %d", type); + switch (type) { + case 1: + printf(" (time based)\n"); + break; + case 2: + printf(" (DCE)\n"); + break; + case 3: + printf(" (name-based)\n"); + break; + case 4: + printf(" (random)\n"); + break; + default: + printf("\n"); + } + if (type != 1) { + printf("Warning: not a time-based UUID, so UUID time " + "decoding will likely not work!\n"); + } + printf("UUID time is: (%ld, %ld): %s\n", tv.tv_sec, tv.tv_usec, + ctime(&time_reg)); + + return 0; +} +#endif diff --git a/1_6.h12_dev/render/libuuid-1.0.3/uuidd.h b/1_6.h12_dev/render/libuuid-1.0.3/uuidd.h new file mode 100644 index 0000000..2f70968 --- /dev/null +++ b/1_6.h12_dev/render/libuuid-1.0.3/uuidd.h @@ -0,0 +1,54 @@ +/* + * Definitions used by the uuidd daemon + * + * Copyright (C) 2007 Theodore Ts'o. + * + * %Begin-Header% + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, and the entire permission notice in its entirety, + * including the disclaimer of warranties. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF + * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT + * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE + * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH + * DAMAGE. + * %End-Header% + */ + +#ifndef _UUID_UUIDD_H +#define _UUID_UUIDD_H + +#define UUIDD_DIR _PATH_LOCALSTATEDIR "/uuidd" +#define UUIDD_SOCKET_PATH UUIDD_DIR "/request" +#define UUIDD_PIDFILE_PATH UUIDD_DIR "/uuidd.pid" +#define UUIDD_PATH "/usr/sbin/uuidd" + +#define UUIDD_OP_GETPID 0 +#define UUIDD_OP_GET_MAXOP 1 +#define UUIDD_OP_TIME_UUID 2 +#define UUIDD_OP_RANDOM_UUID 3 +#define UUIDD_OP_BULK_TIME_UUID 4 +#define UUIDD_OP_BULK_RANDOM_UUID 5 +#define UUIDD_MAX_OP UUIDD_OP_BULK_RANDOM_UUID + +extern int __uuid_generate_time(uuid_t out, int *num); +extern void __uuid_generate_random(uuid_t out, int *num); + +#endif /* _UUID_UUID_H */ diff --git a/1_6.h12_dev/render/tmp/renderer b/1_6.h12_dev/render/tmp/renderer new file mode 160000 index 0000000..20fd332 --- /dev/null +++ b/1_6.h12_dev/render/tmp/renderer @@ -0,0 +1 @@ +Subproject commit 20fd332f3de200f49950c69af09cb72ae9ac6fb1 diff --git a/1_6.h12_dev/render/tmp/tmp_render b/1_6.h12_dev/render/tmp/tmp_render new file mode 160000 index 0000000..20fd332 --- /dev/null +++ b/1_6.h12_dev/render/tmp/tmp_render @@ -0,0 +1 @@ +Subproject commit 20fd332f3de200f49950c69af09cb72ae9ac6fb1 diff --git a/1_9.r18_plugin/ad_plug/ab2p.action b/1_9.r18_plugin/ad_plug/ab2p.action index 1588110..1589687 100644 --- a/1_9.r18_plugin/ad_plug/ab2p.action +++ b/1_9.r18_plugin/ad_plug/ab2p.action @@ -1,286386 +1,31764 @@ #AbBlock generated actions -- don't edit -- #----- source ----- -#Title: EasyList -#Url: https://easylist-downloads.adblockplus.org/easylist.txt -#Last modified: 08 Jan 2016 15:30 UTC +#Title: EasyList China +#Url: https://easylist-downloads.adblockplus.org/easylistchina.txt +#Last modified: 29 Jan 2016 15:51 UTC #Expires: 96 hours -#Version: 201601081530 -#License: https://easylist-downloads.adblockplus.org/COPYING -#Homepage: https://easylist.adblockplus.org/ -#----- source ----- -#Title: RU AdList -#Url: https://easylist-downloads.adblockplus.org/advblock.txt -#Last modified: 08 Jan 2016 15:30 UTC -#Expires: 72 hours -#Version: 201601081530 -#License: http://creativecommons.org/licenses/by/3.0/ -#Homepage: https://forums.lanik.us/viewforum.php?f=102 -#----- source ----- -#Title: EasyList China+EasyList -#Url: https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt -#Last modified: 08 Jan 2016 15:30 UTC -#Expires: 96 hours -#Version: 201601081530 +#Version: 201601291533 #License: https://easylist-downloads.adblockplus.org/COPYING #Homepage: http://abpchina.org/forum/ -#----- source ----- -#Url: my_custom.txt -#Last modified: 17 Nov 1858 00:00 UTC -#Expires: 72 hours (expired) #------- end ------ -#-ab2p-block-request-nX -{-client-header-tagger{ab2p-block-request-nX} \ -} -TAG:^-ab2p-block-request-nX$ - #ab2p-block-dnt {+add-header{DNT: 1} \ } TAG:^ab2p-block-dnt$ -# ||ymages.org/prepop.php$popup (easylistchina+easylist.txt: 47094) -.ymages.org/prepop\.php -# ||r18.com/*utm_source$popup (easylistchina+easylist.txt: 47091) -.r18.com/.*utm_source -# ||publicagent.com/bigzpup.php$popup (easylistchina+easylist.txt: 47090) -.publicagent.com/bigzpup\.php -# ||pornuppz.info/out.php$popup (easylistchina+easylist.txt: 47089) -.pornuppz.info/out\.php -# ||pop.mrstiff.com^$popup (easylistchina+easylist.txt: 47086) -.pop.mrstiff.com -# ||pop.fapxl.com^$popup (easylistchina+easylist.txt: 47085) -.pop.fapxl.com -# ||pinporn.com/popunder/$popup (easylistchina+easylist.txt: 47084) -.pinporn.com/popunder/ -# ||namethatporn.com/ntpoo$popup (easylistchina+easylist.txt: 47083) -.namethatporn.com/ntpoo -# ||movies.askjolene.com/c64?clickid=$popup (easylistchina+easylist.txt: 47082) -.movies.askjolene.com/c64\?clickid= -# ||imagebam.com/redirect_awe.php$popup (easylistchina+easylist.txt: 47081) -.imagebam.com/redirect_awe\.php -# ||heganteens.com/exo.php$popup (easylistchina+easylist.txt: 47080) -.heganteens.com/exo\.php -# ||hegansex.com/exo.php$popup (easylistchina+easylist.txt: 47079) -.hegansex.com/exo\.php -# ||h2porn.com/pu.php$popup (easylistchina+easylist.txt: 47078) -.h2porn.com/pu\.php -# ||fantastube.com/track.php$popup (easylistchina+easylist.txt: 47074) -.fantastube.com/track\.php -# ||fantasti.cc^*?ad=$popup (easylistchina+easylist.txt: 47073) -.fantasti.cc/.*\?ad= -# ||eporner.com/pop.php$popup (easylistchina+easylist.txt: 47072) -.eporner.com/pop\.php -# ||ad.userporn.com^$popup (easylistchina+easylist.txt: 47071) -.ad.userporn.com -# ||zazzybabes.com/misc/virtuagirl-skin.js (easylistchina+easylist.txt: 47066) -.zazzybabes.com/misc/virtuagirl-skin\.js -# ||yuvutu.com^*/banners/ (easylistchina+easylist.txt: 47065) -.yuvutu.com/.*/banners/ -# ||yumymilf.com^*/banners/ (easylistchina+easylist.txt: 47064) -.yumymilf.com/.*/banners/ -# ||yporn.tv/uploads/flv_player/midroll_images/ (easylistchina+easylist.txt: 47063) -.yporn.tv/uploads/flv_player/midroll_images/ -# ||yporn.tv/uploads/flv_player/commercials/ (easylistchina+easylist.txt: 47062) -.yporn.tv/uploads/flv_player/commercials/ -# ||youx.xxx/thumb_top/ (easylistchina+easylist.txt: 47061) -.youx.xxx/thumb_top/ -# ||youtubelike.com/ftt2/toplists/ (easylistchina+easylist.txt: 47060) -.youtubelike.com/ftt2/toplists/ -# ||yourlust.com/im/postroll.html (easylistchina+easylist.txt: 47059) -.yourlust.com/im/postroll\.html -# ||yourlust.com/im/onpause.html (easylistchina+easylist.txt: 47058) -.yourlust.com/im/onpause\.html -# ||yourdarkdesires.com/3.html (easylistchina+easylist.txt: 47057) -.yourdarkdesires.com/3\.html -# ||yourdarkdesires.com/2.html (easylistchina+easylist.txt: 47056) -.yourdarkdesires.com/2\.html -# ||yourdarkdesires.com/1.html (easylistchina+easylist.txt: 47055) -.yourdarkdesires.com/1\.html -# ||yourdailygirls.com/vanilla/process.php (easylistchina+easylist.txt: 47054) -.yourdailygirls.com/vanilla/process\.php -# ||youporn.com^$subdocument,~third-party (easylistchina+easylist.txt: 47053) -.youporn.com -# ||youporn.com/watch_postroll/ (easylistchina+easylist.txt: 47050) -.youporn.com/watch_postroll/ -# ||youporn.com/capedorset/ (easylistchina+easylist.txt: 47049) -.youporn.com/capedorset/ -# ||youporn-hub.com/newlcd.js (easylistchina+easylist.txt: 47048) -.youporn-hub.com/newlcd\.js -# ||youporn-hub.com/lcdscript.js (easylistchina+easylist.txt: 47047) -.youporn-hub.com/lcdscript\.js -# ||youngpornvideos.com/images/wmasterthecoolporn/ (easylistchina+easylist.txt: 47046) -.youngpornvideos.com/images/wmasterthecoolporn/ -# ||youngpornvideos.com/images/webmasterdelightlinks/ (easylistchina+easylist.txt: 47045) -.youngpornvideos.com/images/webmasterdelightlinks/ -# ||youngpornvideos.com/images/teencash/ (easylistchina+easylist.txt: 47044) -.youngpornvideos.com/images/teencash/ -# ||youngpornvideos.com/images/mofoscash/ (easylistchina+easylist.txt: 47043) -.youngpornvideos.com/images/mofoscash/ -# ||youngpornvideos.com/images/glamglam/ (easylistchina+easylist.txt: 47042) -.youngpornvideos.com/images/glamglam/ -# ||youngpornvideos.com/images/bangbros/ (easylistchina+easylist.txt: 47041) -.youngpornvideos.com/images/bangbros/ -# ||youjizz.com^$~third-party,xmlhttprequest (easylistchina+easylist.txt: 47040) -.youjizz.com -# ||youjizz.com^$subdocument,~third-party (easylistchina+easylist.txt: 47039) -.youjizz.com -# ||youjizz.com/vivid/ (easylistchina+easylist.txt: 47038) -.youjizz.com/vivid/ -# ||youaresogay.com/*.html (easylistchina+easylist.txt: 47037) -.youaresogay.com/.*\.html -# ||yobt.tv/rec/ (easylistchina+easylist.txt: 47036) -.yobt.tv/rec/ -# ||yobt.tv/js/ttu.js (easylistchina+easylist.txt: 47035) -.yobt.tv/js/ttu\.js -# ||yobt.com/rec/ (easylistchina+easylist.txt: 47034) -.yobt.com/rec/ -# ||yea.xxx/img/creatives/ (easylistchina+easylist.txt: 47033) -.yea.xxx/img/creatives/ -# ||xxxymovies.com/js/win.js (easylistchina+easylist.txt: 47032) -.xxxymovies.com/js/win\.js -# ||xxxxsextube.com/*.html$subdocument (easylistchina+easylist.txt: 47031) -.xxxxsextube.com/.*\.html -# ||xxxporntalk.com/images/ (easylistchina+easylist.txt: 47030) -.xxxporntalk.com/images/ -# ||xxxlinks.es/xvideos.js (easylistchina+easylist.txt: 47029) -.xxxlinks.es/xvideos\.js -# ||xxxkinky.com/pap.js (easylistchina+easylist.txt: 47028) -.xxxkinky.com/pap\.js -# ||xxxhost.me/xpw.gif (easylistchina+easylist.txt: 47027) -.xxxhost.me/xpw\.gif -# ||xxxgames.biz^*/sponsors/ (easylistchina+easylist.txt: 47026) -.xxxgames.biz/.*/sponsors/ -# ||xxxfile.net^*/netload_premium.gif (easylistchina+easylist.txt: 47025) -.xxxfile.net/.*/netload_premium\.gif -# ||xxxblink.com/rec/ (easylistchina+easylist.txt: 47024) -.xxxblink.com/rec/ -# ||xxxblink.com/js/pops. (easylistchina+easylist.txt: 47023) -.xxxblink.com/js/pops\. -# ||xxvideo.us/playertext.html (easylistchina+easylist.txt: 47022) -.xxvideo.us/playertext\.html -# ||xxvideo.us/bnr.js (easylistchina+easylist.txt: 47021) -.xxvideo.us/bnr\.js -# ||xxvideo.us/ad728x15 (easylistchina+easylist.txt: 47020) -.xxvideo.us/ad728x15 -# ||xxnxx.eu/index.php?xyz_lbx= (easylistchina+easylist.txt: 47019) -.xxnxx.eu/index\.php\?xyz_lbx= -# ||xvideohost.com/hor_banner.php (easylistchina+easylist.txt: 47018) -.xvideohost.com/hor_banner\.php -# ||xtravids.com/pop.php (easylistchina+easylist.txt: 47017) -.xtravids.com/pop\.php -# ||xogogo.com/images/latestpt.gif (easylistchina+easylist.txt: 47016) -.xogogo.com/images/latestpt\.gif -# ||xhcdn.com^*/ads_ (easylistchina+easylist.txt: 47015) -.xhcdn.com/.*/ads_ -# ||xhamsterpremiumpass.com/premium_scenes.html (easylistchina+easylist.txt: 47014) -.xhamsterpremiumpass.com/premium_scenes\.html -# ||xhamster.com/js/xpu.js (easylistchina+easylist.txt: 47013) -.xhamster.com/js/xpu\.js -# ||xhamster.com/ads/ (easylistchina+easylist.txt: 47012) -.xhamster.com/ads/ -# ||xfanz.com^*_banner_ (easylistchina+easylist.txt: 47011) -.xfanz.com/.*_banner_ -# ||xcritic.com/img/200x150_ (easylistchina+easylist.txt: 47010) -.xcritic.com/img/200x150_ -# ||xcritic.com/images/watch- (easylistchina+easylist.txt: 47009) -.xcritic.com/images/watch- -# ||xcritic.com/images/rent- (easylistchina+easylist.txt: 47008) -.xcritic.com/images/rent- -# ||xcritic.com/images/buy- (easylistchina+easylist.txt: 47007) -.xcritic.com/images/buy- -# ||xbutter.com/js/pop-er.js (easylistchina+easylist.txt: 47006) -.xbutter.com/js/pop-er\.js -# ||xbutter.com/geturl.php/ (easylistchina+easylist.txt: 47005) -.xbutter.com/geturl\.php/ -# ||xbutter.com/adz.html (easylistchina+easylist.txt: 47004) -.xbutter.com/adz\.html -# ||xbooru.com/block/adblocks.js (easylistchina+easylist.txt: 47003) -.xbooru.com/block/adblocks\.js -# ||xbabe.com/iframes/ (easylistchina+easylist.txt: 47002) -.xbabe.com/iframes/ -# ||x3xtube.com/banner_rotating_ (easylistchina+easylist.txt: 47001) -.x3xtube.com/banner_rotating_ -# ||x.vipergirls.to^ (easylistchina+easylist.txt: 47000) -.x.vipergirls.to -# ||x.eroticity.net^ (easylistchina+easylist.txt: 46999) -.x.eroticity.net -# ||wunbuck.com/iframes/aaw_leaderboard.html (easylistchina+easylist.txt: 46998) -.wunbuck.com/iframes/aaw_leaderboard\.html -# ||wunbuck.com/_odd_images/banners/ (easylistchina+easylist.txt: 46997) -.wunbuck.com/_odd_images/banners/ -# ||wrenchtube.com/poppt.js (easylistchina+easylist.txt: 46996) -.wrenchtube.com/poppt\.js -# ||wowomg.com/*.html (easylistchina+easylist.txt: 46995) -.wowomg.com/.*\.html -# ||worldsex.com/c/ (easylistchina+easylist.txt: 46994) -.worldsex.com/c/ -# ||wikiporno.org/header21.html (easylistchina+easylist.txt: 46993) -.wikiporno.org/header21\.html -# ||wikiporno.org/header2.html (easylistchina+easylist.txt: 46992) -.wikiporno.org/header2\.html -# ||wiki-stars.com/trade/ (easylistchina+easylist.txt: 46991) -.wiki-stars.com/trade/ -# ||wiki-stars.com/thumb_if.php? (easylistchina+easylist.txt: 46990) -.wiki-stars.com/thumb_if\.php\? -# ||whozacunt.com/images/banner_ (easylistchina+easylist.txt: 46989) -.whozacunt.com/images/banner_ -# ||whozacunt.com/images/*_300x200_ (easylistchina+easylist.txt: 46988) -.whozacunt.com/images/.*_300x200_ -# ||whozacunt.com/images/*-300x250. (easylistchina+easylist.txt: 46987) -.whozacunt.com/images/.*-300x250\. -# ||whitedolly.com/wcf/images/redbar/logo_neu.gif (easylistchina+easylist.txt: 46986) -.whitedolly.com/wcf/images/redbar/logo_neu\.gif -# ||wetpussygames.com/images/promo/ (easylistchina+easylist.txt: 46985) -.wetpussygames.com/images/promo/ -# ||wetplace.com/wetplace_html/ (easylistchina+easylist.txt: 46984) -.wetplace.com/wetplace_html/ -# ||wetplace.com/js/adpwetplace (easylistchina+easylist.txt: 46983) -.wetplace.com/js/adpwetplace -# ||wetplace.com/iframes/$subdocument (easylistchina+easylist.txt: 46982) -.wetplace.com/iframes/ -# ||wegcash.com/click/ (easylistchina+easylist.txt: 46981) -.wegcash.com/click/ -# ||weberotic.net/banners/ (easylistchina+easylist.txt: 46980) -.weberotic.net/banners/ -# ||watchindianporn.net/js/pu.js (easylistchina+easylist.txt: 46979) -.watchindianporn.net/js/pu\.js -# ||watch2porn.net/pads2.js (easylistchina+easylist.txt: 46978) -.watch2porn.net/pads2\.js -# ||wankspider.com/js/wankspider.js (easylistchina+easylist.txt: 46977) -.wankspider.com/js/wankspider\.js -# ||wank.to/partner/ (easylistchina+easylist.txt: 46976) -.wank.to/partner/ -# ||vstreamcdn.com^*/ads/ (easylistchina+easylist.txt: 46975) -.vstreamcdn.com/.*/ads/ -# ||voyeurhit.com/related/voyeurhit.php?t_sid= (easylistchina+easylist.txt: 46974) -.voyeurhit.com/related/voyeurhit\.php\?t_sid= -# ||voyeurhit.com/contents/content_sources/ (easylistchina+easylist.txt: 46973) -.voyeurhit.com/contents/content_sources/ -# ||vivatube.com/upload/banners/ (easylistchina+easylist.txt: 46972) -.vivatube.com/upload/banners/ -# ||viralporn.com^*/popnew.js (easylistchina+easylist.txt: 46971) -.viralporn.com/.*/popnew\.js -# ||vidgrab.net/pads2.js (easylistchina+easylist.txt: 46970) -.vidgrab.net/pads2\.js -# ||vidgrab.net/images/adsbar (easylistchina+easylist.txt: 46969) -.vidgrab.net/images/adsbar -# ||vidgrab.net/bnr.js (easylistchina+easylist.txt: 46968) -.vidgrab.net/bnr\.js -# ||vidgrab.net/adsbar.png (easylistchina+easylist.txt: 46967) -.vidgrab.net/adsbar\.png -# ||videos.com^*/jsp.js (easylistchina+easylist.txt: 46966) -.videos.com/.*/jsp\.js -# ||videarn.com/vibrate.js (easylistchina+easylist.txt: 46965) -.videarn.com/vibrate\.js -# ||vid2c.com/pp.js (easylistchina+easylist.txt: 46964) -.vid2c.com/pp\.js -# ||vid2c.com/pap.js (easylistchina+easylist.txt: 46963) -.vid2c.com/pap\.js -# ||vid2c.com/js/pp.js (easylistchina+easylist.txt: 46962) -.vid2c.com/js/pp\.js -# ||vid2c.com/js/atxpp.js? (easylistchina+easylist.txt: 46961) -.vid2c.com/js/atxpp\.js\? -# ||vibraporn.com/vg/ (easylistchina+easylist.txt: 46960) -.vibraporn.com/vg/ -# ||upornia.com/contents/content_sources/ (easylistchina+easylist.txt: 46959) -.upornia.com/contents/content_sources/ -# ||updatetube.com/js/adpupdatetube (easylistchina+easylist.txt: 46958) -.updatetube.com/js/adpupdatetube -# ||unoxxx.com/pages/en_player_video_right.html (easylistchina+easylist.txt: 46957) -.unoxxx.com/pages/en_player_video_right\.html -# ||unblockedpiratebay.com/static/img/bar.gif (easylistchina+easylist.txt: 46956) -.unblockedpiratebay.com/static/img/bar\.gif -# ||ukrainamateurs.com/images/banners/ (easylistchina+easylist.txt: 46955) -.ukrainamateurs.com/images/banners/ -# ||uflash.tv^*/affiliates/ (easylistchina+easylist.txt: 46954) -.uflash.tv/.*/affiliates/ -# ||twofuckers.com/brazzers (easylistchina+easylist.txt: 46953) -.twofuckers.com/brazzers -# ||twinsporn.net/images/free-penis-pills.png (easylistchina+easylist.txt: 46952) -.twinsporn.net/images/free-penis-pills\.png -# ||twinsporn.net/images/delay.gif (easylistchina+easylist.txt: 46951) -.twinsporn.net/images/delay\.gif -# ||turboimagehost.com/p1.js (easylistchina+easylist.txt: 46950) -.turboimagehost.com/p1\.js -# ||tubedupe.com/side_two.html (easylistchina+easylist.txt: 46949) -.tubedupe.com/side_two\.html -# ||tubedupe.com/footer_four.html (easylistchina+easylist.txt: 46948) -.tubedupe.com/footer_four\.html -# ||tubecup.org/?t_sid= (easylistchina+easylist.txt: 46947) -.tubecup.org/\?t_sid= -# ||tubecup.com/js/1.js (easylistchina+easylist.txt: 46946) -.tubecup.com/js/1\.js -# ||tubecup.com/contents/content_sources/ (easylistchina+easylist.txt: 46945) -.tubecup.com/contents/content_sources/ -# ||tube8.com^$subdocument,~third-party (easylistchina+easylist.txt: 46944) -.tube8.com -# ||tube8.com/sugarcrush/ (easylistchina+easylist.txt: 46943) -.tube8.com/sugarcrush/ -# ||tube8.com/penthouse/ (easylistchina+easylist.txt: 46942) -.tube8.com/penthouse/ -# ||trovaporno.com/image/incontri$image (easylistchina+easylist.txt: 46941) -.trovaporno.com/image/incontri -# ||tnaflix.com^*_promo.jpg (easylistchina+easylist.txt: 46940) -.tnaflix.com/.*_promo\.jpg -# ||tnaflix.com/flixPlayerImages/ (easylistchina+easylist.txt: 46939) -.tnaflix.com/flixPlayerImages/ -# ||tnaflix.com/banner/ (easylistchina+easylist.txt: 46938) -.tnaflix.com/banner/ -# ||tjoob.com/kellyban.gif (easylistchina+easylist.txt: 46937) -.tjoob.com/kellyban\.gif -# ||tjoob.com/bgbb.jpg (easylistchina+easylist.txt: 46936) -.tjoob.com/bgbb\.jpg -# ||titsintops.com/rotate/ (easylistchina+easylist.txt: 46935) -.titsintops.com/rotate/ -# ||titsintops.com/intersitial/ (easylistchina+easylist.txt: 46934) -.titsintops.com/intersitial/ -# ||timtube.com/traffic.js (easylistchina+easylist.txt: 46933) -.timtube.com/traffic\.js -# ||thumblogger.com/thumblog/top_banner_silver.js (easylistchina+easylist.txt: 46932) -.thumblogger.com/thumblog/top_banner_silver\.js -# ||thisav.com/js/thisav_pop.js (easylistchina+easylist.txt: 46931) -.thisav.com/js/thisav_pop\.js -# ||thisav.com/js/pu.js (easylistchina+easylist.txt: 46930) -.thisav.com/js/pu\.js -# ||thinkexist.com/images/afm.js (easylistchina+easylist.txt: 46929) -.thinkexist.com/images/afm\.js -# ||thepornomatrix.com/images/1- (easylistchina+easylist.txt: 46928) -.thepornomatrix.com/images/1- -# ||theporncore.com/contents/content_sources/ (easylistchina+easylist.txt: 46927) -.theporncore.com/contents/content_sources/ -# ||thenipslip.com/mfcbanner.gif (easylistchina+easylist.txt: 46926) -.thenipslip.com/mfcbanner\.gif -# ||thenipslip.com/GGWDrunkenAd.jpg (easylistchina+easylist.txt: 46925) -.thenipslip.com/GGWDrunkenAd\.jpg -# ||thenewporn.com/js/adpthenewporn (easylistchina+easylist.txt: 46924) -.thenewporn.com/js/adpthenewporn -# ||thehun.net^*/banners/ (easylistchina+easylist.txt: 46923) -.thehun.net/.*/banners/ -# ||the-feeding-tube.com^*/Topbanner.php (easylistchina+easylist.txt: 46921) -.the-feeding-tube.com/.*/Topbanner\.php -# ||the-analist.info^*150x150 (easylistchina+easylist.txt: 46920) -.the-analist.info/.*150x150 -# ||the-analist.info^*150sq (easylistchina+easylist.txt: 46919) -.the-analist.info/.*150sq -# ||the-analist.info^*150-150 (easylistchina+easylist.txt: 46918) -.the-analist.info/.*150-150 -# ||temptingangels.org/media/banners/ (easylistchina+easylist.txt: 46917) -.temptingangels.org/media/banners/ -# ||temptingangels.org/banner/ (easylistchina+easylist.txt: 46916) -.temptingangels.org/banner/ -# ||teentube18.com/js/realamateurtube.js (easylistchina+easylist.txt: 46915) -.teentube18.com/js/realamateurtube\.js -# ||teensexcraze.com/awesome/leader.html (easylistchina+easylist.txt: 46914) -.teensexcraze.com/awesome/leader\.html -# ||teensanalfactor.com/best/ (easylistchina+easylist.txt: 46913) -.teensanalfactor.com/best/ -# ||taxidrivermovie.com/mrskin_runner/ (easylistchina+easylist.txt: 46912) -.taxidrivermovie.com/mrskin_runner/ -# ||tabletporn.com/images/pinkvisualpad- (easylistchina+easylist.txt: 46911) -.tabletporn.com/images/pinkvisualpad- -# ||sxx.com/js/lj.js (easylistchina+easylist.txt: 46909) -.sxx.com/js/lj\.js -# ||svscomics.com^*/dtrotator.js (easylistchina+easylist.txt: 46908) -.svscomics.com/.*/dtrotator\.js -# ||sunporno.com/js/flirt/serve.js (easylistchina+easylist.txt: 46907) -.sunporno.com/js/flirt/serve\.js -# ||submityourflicks.com/banner/ (easylistchina+easylist.txt: 46906) -.submityourflicks.com/banner/ -# ||stolenvideos.net/stolen.js (easylistchina+easylist.txt: 46905) -.stolenvideos.net/stolen\.js -# ||stockingstv.com/partners/ (easylistchina+easylist.txt: 46904) -.stockingstv.com/partners/ -# ||static.kinghost.com^ (easylistchina+easylist.txt: 46903) -.static.kinghost.com -# ||static.flabber.net^*background (easylistchina+easylist.txt: 46902) -.static.flabber.net/.*background -# ||starcelebs.com/logos/$image (easylistchina+easylist.txt: 46901) -.starcelebs.com/logos/ -# ||springbreaktubegirls.com/js/springpop.js (easylistchina+easylist.txt: 46900) -.springbreaktubegirls.com/js/springpop\.js -# ||spankbang.com/gateway/ (easylistchina+easylist.txt: 46899) -.spankbang.com/gateway/ -# ||songs.pk/ie/ietext.html (easylistchina+easylist.txt: 46898) -.songs.pk/ie/ietext\.html -# ||socaseiras.com.br/banners.php? (easylistchina+easylist.txt: 46897) -.socaseiras.com.br/banners\.php\? -# ||socaseiras.com.br/banner_ (easylistchina+easylist.txt: 46896) -.socaseiras.com.br/banner_ -# ||socaseiras.com.br/arquivos/banners/ (easylistchina+easylist.txt: 46895) -.socaseiras.com.br/arquivos/banners/ -# ||smutmodels.com/sponsors/ (easylistchina+easylist.txt: 46894) -.smutmodels.com/sponsors/ -# ||slinky.com.au/banners/ (easylistchina+easylist.txt: 46893) -.slinky.com.au/banners/ -# ||skimtube.com/kellyban.gif (easylistchina+easylist.txt: 46892) -.skimtube.com/kellyban\.gif -# ||site.img.4tube.com^ (easylistchina+easylist.txt: 46891) -.site.img.4tube.com -# ||sillusions.ws^*/vpn-banner.gif (easylistchina+easylist.txt: 46890) -.sillusions.ws/.*/vpn-banner\.gif -# ||sillusions.ws^*/pr0pop.js (easylistchina+easylist.txt: 46889) -.sillusions.ws/.*/pr0pop\.js -# ||signbucksdaily.com/data/promo/ (easylistchina+easylist.txt: 46888) -.signbucksdaily.com/data/promo/ -# ||signbucks.com/s/bns/ (easylistchina+easylist.txt: 46887) -.signbucks.com/s/bns/ -# ||shy-cams.com/tube.js (easylistchina+easylist.txt: 46886) -.shy-cams.com/tube\.js -# ||shooshtimeinc.com/under.php (easylistchina+easylist.txt: 46885) -.shooshtimeinc.com/under\.php -# ||shooshtime.com/images/chosenplugs/ (easylistchina+easylist.txt: 46884) -.shooshtime.com/images/chosenplugs/ -# ||shooshtime.com/ads/ (easylistchina+easylist.txt: 46883) -.shooshtime.com/ads/ -# ||sharew.org/modalfiles/ (easylistchina+easylist.txt: 46882) -.sharew.org/modalfiles/ -# ||shanbara.jp/okusamadx.gif (easylistchina+easylist.txt: 46881) -.shanbara.jp/okusamadx\.gif -# ||shanbara.jp/300_200plus.jpg (easylistchina+easylist.txt: 46880) -.shanbara.jp/300_200plus\.jpg -# ||sexytime.com/img/sexytime_anima.gif (easylistchina+easylist.txt: 46879) -.sexytime.com/img/sexytime_anima\.gif -# ||sexyshare.net//banners/ (easylistchina+easylist.txt: 46878) -# ||sexyfuckgames.com/images/promo/ (easylistchina+easylist.txt: 46877) -.sexyfuckgames.com/images/promo/ -# ||sexyclips.org/i/130x500.gif (easylistchina+easylist.txt: 46876) -.sexyclips.org/i/130x500\.gif -# ||sexyclips.org/banners/ (easylistchina+easylist.txt: 46875) -.sexyclips.org/banners/ -# ||sexyandshocking.com/mzpop.js (easylistchina+easylist.txt: 46874) -.sexyandshocking.com/mzpop\.js -# ||sexyandfunny.com/images/totem (easylistchina+easylist.txt: 46873) -.sexyandfunny.com/images/totem -# ||sexy-toons.org/interface/pub/ (easylistchina+easylist.txt: 46872) -.sexy-toons.org/interface/pub/ -# ||sexy-toons.org/interface/partenariat/ (easylistchina+easylist.txt: 46871) -.sexy-toons.org/interface/partenariat/ -# ||sexvines.co/images/cp (easylistchina+easylist.txt: 46870) -.sexvines.co/images/cp -# ||sexuhot.com/splayer.js (easylistchina+easylist.txt: 46869) -.sexuhot.com/splayer\.js -# ||sexuhot.com/images/xbanner (easylistchina+easylist.txt: 46868) -.sexuhot.com/images/xbanner -# ||sextubebox.com/ab2.shtml (easylistchina+easylist.txt: 46867) -.sextubebox.com/ab2\.shtml -# ||sextubebox.com/ab1.shtml (easylistchina+easylist.txt: 46866) -.sextubebox.com/ab1\.shtml -# ||sextube.com/lj.js (easylistchina+easylist.txt: 46865) -.sextube.com/lj\.js -# ||sexseeimage.com^*/banner.gif (easylistchina+easylist.txt: 46864) -.sexseeimage.com/.*/banner\.gif -# ||sexmummy.com/footer.htm (easylistchina+easylist.txt: 46863) -.sexmummy.com/footer\.htm -# ||sexmummy.com/float.htm (easylistchina+easylist.txt: 46862) -.sexmummy.com/float\.htm -# ||sexilation.com/wp-content/uploads/2013/01/Untitled-1.jpg (easylistchina+easylist.txt: 46861) -.sexilation.com/wp-content/uploads/2013/01/Untitled-1\.jpg -# ||sex3dtoons.com/im/ (easylistchina+easylist.txt: 46860) -.sex3dtoons.com/im/ -# ||sex3.com/if/ (easylistchina+easylist.txt: 46859) -.sex3.com/if/ -# ||sex.com/images/*/banner_ (easylistchina+easylist.txt: 46858) -.sex.com/images/.*/banner_ -# ||sex-techniques-and-positions.com/banners (easylistchina+easylist.txt: 46857) -.sex-techniques-and-positions.com/banners -# ||sex-techniques-and-positions.com/123ima/ (easylistchina+easylist.txt: 46856) -.sex-techniques-and-positions.com/123ima/ -# ||serveporn.com/images/plug-in.jpg (easylistchina+easylist.txt: 46855) -.serveporn.com/images/plug-in\.jpg -# ||serveporn.com/images/a-en.jpg (easylistchina+easylist.txt: 46854) -.serveporn.com/images/a-en\.jpg -# ||sensualgirls.org/media/banners/ (easylistchina+easylist.txt: 46853) -.sensualgirls.org/media/banners/ -# ||sensualgirls.org/banner/ (easylistchina+easylist.txt: 46852) -.sensualgirls.org/banner/ -# ||seemygf.com/webmasters/ (easylistchina+easylist.txt: 46851) -.seemygf.com/webmasters/ -# ||seaporn.org/scripts/life.js (easylistchina+easylist.txt: 46850) -.seaporn.org/scripts/life\.js -# ||scorevideos.com/banner/ (easylistchina+easylist.txt: 46849) -.scorevideos.com/banner/ -# ||scorehd.com/banner/ (easylistchina+easylist.txt: 46848) -.scorehd.com/banner/ -# ||s.xvideos.com^$subdocument (easylistchina+easylist.txt: 46847) -.s.xvideos.com -# ||rusdosug.com/Fotos/Banners/ (easylistchina+easylist.txt: 46846) -.rusdosug.com/Fotos/Banners/ -# ||rude.com/js/PopupWindow.js (easylistchina+easylist.txt: 46845) -.rude.com/js/PopupWindow\.js -# ||rikotachibana.org/wp-content/banner/ (easylistchina+easylist.txt: 46844) -.rikotachibana.org/wp-content/banner/ -# ||rextube.com/plug/iframe.asp? (easylistchina+easylist.txt: 46843) -.rextube.com/plug/iframe\.asp\? -# ||rev.fapdu.com^ (easylistchina+easylist.txt: 46842) -.rev.fapdu.com -# ||redtubefiles.com^*/skins/ (easylistchina+easylist.txt: 46841) -.redtubefiles.com/.*/skins/ -# ||redtubefiles.com^*/banner/ (easylistchina+easylist.txt: 46840) -.redtubefiles.com/.*/banner/ -# ||redtube.com^*/banner/ (easylistchina+easylist.txt: 46839) -.redtube.com/.*/banner/ -# ||redtube.com^$subdocument,~third-party (easylistchina+easylist.txt: 46838) -.redtube.com -# ||redtube.com/wierd/ (easylistchina+easylist.txt: 46837) -.redtube.com/wierd/ -# ||redtube.com/sexychicks/ (easylistchina+easylist.txt: 46836) -.redtube.com/sexychicks/ -# ||redtube.com/nymphos/ (easylistchina+easylist.txt: 46835) -.redtube.com/nymphos/ -# ||redtube.com/bestporn/ (easylistchina+easylist.txt: 46834) -.redtube.com/bestporn/ -# ||redtube.com/barelylegal/ (easylistchina+easylist.txt: 46833) -.redtube.com/barelylegal/ -# ||redtube.cc/images/bongacams.png (easylistchina+easylist.txt: 46832) -.redtube.cc/images/bongacams\.png -# ||realhomesex.net/pop/ (easylistchina+easylist.txt: 46831) -.realhomesex.net/pop/ -# ||realhomesex.net/floater.js (easylistchina+easylist.txt: 46830) -.realhomesex.net/floater\.js -# ||realhomesex.net/ae/$subdocument (easylistchina+easylist.txt: 46829) -.realhomesex.net/ae/ -# ||realhomesex.net/*.html$subdocument (easylistchina+easylist.txt: 46828) -.realhomesex.net/.*\.html -# ||realgfporn.com/js/realgfporn.js (easylistchina+easylist.txt: 46827) -.realgfporn.com/js/realgfporn\.js -# ||realgfporn.com/js/popall.js (easylistchina+easylist.txt: 46826) -.realgfporn.com/js/popall\.js -# ||rampant.tv/images/sexypics/ (easylistchina+easylist.txt: 46825) -.rampant.tv/images/sexypics/ -# ||raincoatreviews.com/images/banners/ (easylistchina+easylist.txt: 46824) -.raincoatreviews.com/images/banners/ -# ||r.radikal.ru^ (easylistchina+easylist.txt: 46822) -.r.radikal.ru -# ||pwpwpoker.com/images/banners/ (easylistchina+easylist.txt: 46821) -.pwpwpoker.com/images/banners/ -# ||pwpwpoker.com/images/*/strip_poker_ (easylistchina+easylist.txt: 46820) -.pwpwpoker.com/images/.*/strip_poker_ -# ||puteros.com/publisecciones/ (easylistchina+easylist.txt: 46819) -.puteros.com/publisecciones/ -# ||putascaseiras.com/botao/ (easylistchina+easylist.txt: 46818) -.putascaseiras.com/botao/ -# ||purpleporno.com/pop*.js (easylistchina+easylist.txt: 46817) -.purpleporno.com/pop.*\.js -# ||purepornvids.com/randomadseb. (easylistchina+easylist.txt: 46816) -.purepornvids.com/randomadseb\. -# ||purelynsfw.com^*/banners/ (easylistchina+easylist.txt: 46815) -.purelynsfw.com/.*/banners/ -# ||pureandsexy.org/banner/ (easylistchina+easylist.txt: 46814) -.pureandsexy.org/banner/ -# ||pr-static.tnaflix.com^ (easylistchina+easylist.txt: 46813) -.pr-static.tnaflix.com -# ||pr-static.empflix.com^ (easylistchina+easylist.txt: 46812) -.pr-static.empflix.com -# ||pornxs.com/js/files/jasminNew (easylistchina+easylist.txt: 46811) -.pornxs.com/js/files/jasminNew -# ||pornwikileaks.com/adultdvd.com.jpg (easylistchina+easylist.txt: 46810) -.pornwikileaks.com/adultdvd\.com\.jpg -# ||pornvideoxo.com^$subdocument,~third-party (easylistchina+easylist.txt: 46809) -.pornvideoxo.com -# ||pornup.me/js/pp.js (easylistchina+easylist.txt: 46808) -.pornup.me/js/pp\.js -# ||porntube.com/ads| (easylistchina+easylist.txt: 46807) -.porntube.com/ads$ -# ||porntalk.com/rec/ (easylistchina+easylist.txt: 46806) -.porntalk.com/rec/ -# ||porntalk.com/img/banners/ (easylistchina+easylist.txt: 46805) -.porntalk.com/img/banners/ -# ||pornstreet.com/siteunder.js (easylistchina+easylist.txt: 46804) -.pornstreet.com/siteunder\.js -# ||pornstarterritory.com^*/alsbanner (easylistchina+easylist.txt: 46803) -.pornstarterritory.com/.*/alsbanner -# ||pornstarterritory.com//images/bannernew.jpg (easylistchina+easylist.txt: 46802) -# ||pornstarlabs.com/spons/ (easylistchina+easylist.txt: 46801) -.pornstarlabs.com/spons/ -# ||pornslash.com/images/pr.jpg (easylistchina+easylist.txt: 46800) -.pornslash.com/images/pr\.jpg -# ||pornslash.com/images/downicon.png (easylistchina+easylist.txt: 46799) -.pornslash.com/images/downicon\.png -# ||pornslash.com/images/cbt.gif (easylistchina+easylist.txt: 46798) -.pornslash.com/images/cbt\.gif -# ||pornslash.com/images/cbside.gif (easylistchina+easylist.txt: 46797) -.pornslash.com/images/cbside\.gif -# ||pornslash.com/images/a.gif (easylistchina+easylist.txt: 46796) -.pornslash.com/images/a\.gif -# ||pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia*.js (easylistchina+easylist.txt: 46795) -.pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharingnew/$subdocument,~third-party (easylistchina+easylist.txt: 46794) -.pornsharing.com/App_Themes/pornsharingnew/ -# ||pornsharing.com/App_Themes/pornsharianew/js/adppornsharia*.js (easylistchina+easylist.txt: 46793) -.pornsharing.com/App_Themes/pornsharianew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharianew/$subdocument,~third-party (easylistchina+easylist.txt: 46792) -.pornsharing.com/App_Themes/pornsharianew/ -# ||pornsharia.com^*/js/pcin.js (easylistchina+easylist.txt: 46791) -.pornsharia.com/.*/js/pcin\.js -# ||pornsharia.com^*/exo- (easylistchina+easylist.txt: 46790) -.pornsharia.com/.*/exo- -# ||pornsharia.com^*/adppornsharia.js (easylistchina+easylist.txt: 46789) -.pornsharia.com/.*/adppornsharia\.js -# ||pornsharia.com/Images/Sponsors/ (easylistchina+easylist.txt: 46788) -.pornsharia.com/Images/Sponsors/ -# ||pornshare.biz/2.js (easylistchina+easylist.txt: 46787) -.pornshare.biz/2\.js -# ||pornshare.biz/1.js (easylistchina+easylist.txt: 46786) -.pornshare.biz/1\.js -# ||pornreleasez.com/prpop.js (easylistchina+easylist.txt: 46785) -.pornreleasez.com/prpop\.js -# ||pornper.com^*/pp.js (easylistchina+easylist.txt: 46784) -.pornper.com/.*/pp\.js -# ||pornper.com/mlr/ (easylistchina+easylist.txt: 46783) -.pornper.com/mlr/ -# ||pornoxo.com/tradethumbs/ (easylistchina+easylist.txt: 46782) -.pornoxo.com/tradethumbs/ -# ||pornoxo.com/pxo/$subdocument (easylistchina+easylist.txt: 46781) -.pornoxo.com/pxo/ -# ||pornosexxxtits.com/rec/ (easylistchina+easylist.txt: 46780) -.pornosexxxtits.com/rec/ -# ||pornorips.com^*/rotate*.php (easylistchina+easylist.txt: 46779) -.pornorips.com/.*/rotate.*\.php -# ||pornorips.com^*/rda.js (easylistchina+easylist.txt: 46778) -.pornorips.com/.*/rda\.js -# ||pornorips.com/hwpop.js (easylistchina+easylist.txt: 46777) -.pornorips.com/hwpop\.js -# ||pornomovies.com/pop/ (easylistchina+easylist.txt: 46776) -.pornomovies.com/pop/ -# ||pornomovies.com/js/1/login_bonus (easylistchina+easylist.txt: 46775) -.pornomovies.com/js/1/login_bonus -# ||pornoinside.com/efpop.js (easylistchina+easylist.txt: 46774) -.pornoinside.com/efpop\.js -# ||pornoid.com/pornoid_html/ (easylistchina+easylist.txt: 46773) -.pornoid.com/pornoid_html/ -# ||pornoid.com/js/adppornoid (easylistchina+easylist.txt: 46772) -.pornoid.com/js/adppornoid -# ||pornoid.com/iframes/bottom (easylistchina+easylist.txt: 46771) -.pornoid.com/iframes/bottom -# ||pornoid.com/contents/content_sources/ (easylistchina+easylist.txt: 46770) -.pornoid.com/contents/content_sources/ -# ||pornnavigate.com/feeds/delivery.php? (easylistchina+easylist.txt: 46769) -.pornnavigate.com/feeds/delivery\.php\? -# ||pornmade.com/images/cb (easylistchina+easylist.txt: 46768) -.pornmade.com/images/cb -# ||pornmade.com/images/az.gif (easylistchina+easylist.txt: 46767) -.pornmade.com/images/az\.gif -# ||pornmade.com/images/404vz.gif (easylistchina+easylist.txt: 46766) -.pornmade.com/images/404vz\.gif -# ||pornizer.com/_Themes/javascript/cts.js? (easylistchina+easylist.txt: 46765) -.pornizer.com/_Themes/javascript/cts\.js\? -# ||pornhub.phncdn.com/misc/xml/preroll.xml (easylistchina+easylist.txt: 46764) -.pornhub.phncdn.com/misc/xml/preroll\.xml -# ||pornhub.phncdn.com/images/campaign-backgrounds/ (easylistchina+easylist.txt: 46763) -.pornhub.phncdn.com/images/campaign-backgrounds/ -# ||pornhub.com/pics/latest/$xmlhttprequest (easylistchina+easylist.txt: 46762) -.pornhub.com/pics/latest/ -# ||pornhub.com/jpg/ (easylistchina+easylist.txt: 46761) -.pornhub.com/jpg/ -# ||pornhub.com/front/alternative/ (easylistchina+easylist.txt: 46760) -.pornhub.com/front/alternative/ -# ||pornhub.com/channels/pay/ (easylistchina+easylist.txt: 46759) -.pornhub.com/channels/pay/ -# ||pornhub.com/catagories/costume/ (easylistchina+easylist.txt: 46758) -.pornhub.com/catagories/costume/ -# ||pornfanplace.com/rec/ (easylistchina+easylist.txt: 46757) -.pornfanplace.com/rec/ -# ||pornfanplace.com/js/pops. (easylistchina+easylist.txt: 46756) -.pornfanplace.com/js/pops\. -# ||pornerbros.com/rec/$subdocument (easylistchina+easylist.txt: 46755) -.pornerbros.com/rec/ -# ||pornerbros.com/p_bnrs/ (easylistchina+easylist.txt: 46754) -.pornerbros.com/p_bnrs/ -# ||porncor.com/sitelist.php (easylistchina+easylist.txt: 46753) -.porncor.com/sitelist\.php -# ||pornbus.org/includes/js/layer.js (easylistchina+easylist.txt: 46752) -.pornbus.org/includes/js/layer\.js -# ||pornbus.org/includes/js/exa.js (easylistchina+easylist.txt: 46751) -.pornbus.org/includes/js/exa\.js -# ||pornbus.org/includes/js/ex.js (easylistchina+easylist.txt: 46750) -.pornbus.org/includes/js/ex\.js -# ||pornbus.org/includes/js/cat.js (easylistchina+easylist.txt: 46749) -.pornbus.org/includes/js/cat\.js -# ||pornbus.org/includes/js/bgcont.js (easylistchina+easylist.txt: 46748) -.pornbus.org/includes/js/bgcont\.js -# ||pornbb.org/images/rotation/$image (easylistchina+easylist.txt: 46747) -.pornbb.org/images/rotation/ -# ||pornbb.org/adsnov. (easylistchina+easylist.txt: 46746) -.pornbb.org/adsnov\. -# ||pornbay.org/popup.js (easylistchina+easylist.txt: 46745) -.pornbay.org/popup\.js -# ||pornbanana.com/pornbanana/deals/ (easylistchina+easylist.txt: 46744) -.pornbanana.com/pornbanana/deals/ -# ||pornarchive.net/images/cb (easylistchina+easylist.txt: 46743) -.pornarchive.net/images/cb -# ||pornalized.com/pornalized_html/closetoplay_ (easylistchina+easylist.txt: 46742) -.pornalized.com/pornalized_html/closetoplay_ -# ||pornalized.com/js/adppornalized5.js (easylistchina+easylist.txt: 46741) -.pornalized.com/js/adppornalized5\.js -# ||pornalized.com/contents/content_sources/ (easylistchina+easylist.txt: 46740) -.pornalized.com/contents/content_sources/ -# ||porn8x.net/js/popup.js (easylistchina+easylist.txt: 46739) -.porn8x.net/js/popup\.js -# ||porn8x.net/js/outtrade.js (easylistchina+easylist.txt: 46738) -.porn8x.net/js/outtrade\.js -# ||porn4down.com^*/ryuvuong.gif (easylistchina+easylist.txt: 46737) -.porn4down.com/.*/ryuvuong\.gif -# ||porn.com/js/pu.js (easylistchina+easylist.txt: 46736) -.porn.com/js/pu\.js -# ||porn.com/assets/partner_ (easylistchina+easylist.txt: 46735) -.porn.com/assets/partner_ -# ||porn-w.org/images/zevera.png (easylistchina+easylist.txt: 46734) -.porn-w.org/images/zevera\.png -# ||porn-w.org/images/cosy/ (easylistchina+easylist.txt: 46733) -.porn-w.org/images/cosy/ -# ||porn-w.org/images/chs.gif (easylistchina+easylist.txt: 46732) -.porn-w.org/images/chs\.gif -# ||pontoperdido.com/js/webmessenger.js (easylistchina+easylist.txt: 46731) -.pontoperdido.com/js/webmessenger\.js -# ||poguide.com/cdn/images/ad*.gif (easylistchina+easylist.txt: 46730) -.poguide.com/cdn/images/ad.*\.gif -# ||pnet.co.za/jobsearch_iframe_ (easylistchina+easylist.txt: 46729) -.pnet.co.za/jobsearch_iframe_ -# ||plumper6.com/images/ban_pp.jpg (easylistchina+easylist.txt: 46728) -.plumper6.com/images/ban_pp\.jpg -# ||playgirl.com/pg/media/prolong_ad.png (easylistchina+easylist.txt: 46727) -.playgirl.com/pg/media/prolong_ad\.png -# ||planetsuzy.org/kakiframe/ (easylistchina+easylist.txt: 46726) -.planetsuzy.org/kakiframe/ -# ||placepictures.com/Frame.aspx? (easylistchina+easylist.txt: 46725) -.placepictures.com/Frame\.aspx\? -# ||pixroute.com/spl.js (easylistchina+easylist.txt: 46724) -.pixroute.com/spl\.js -# ||pixhost.org/js/jquery_show2.js (easylistchina+easylist.txt: 46723) -.pixhost.org/js/jquery_show2\.js -# ||pixhost.org/image/rotate/ (easylistchina+easylist.txt: 46722) -.pixhost.org/image/rotate/ -# ||pixhost.org/image/cu/ (easylistchina+easylist.txt: 46721) -.pixhost.org/image/cu/ -# ||pinkrod.com/pinkrod_html/ (easylistchina+easylist.txt: 46720) -.pinkrod.com/pinkrod_html/ -# ||pinkrod.com/js/adppinkrod (easylistchina+easylist.txt: 46719) -.pinkrod.com/js/adppinkrod -# ||pinkrod.com/iframes/ (easylistchina+easylist.txt: 46718) -.pinkrod.com/iframes/ -# ||pinkems.com/images/buttons/ (easylistchina+easylist.txt: 46717) -.pinkems.com/images/buttons/ -# ||pink-o-rama.com/Teendreams (easylistchina+easylist.txt: 46716) -.pink-o-rama.com/Teendreams -# ||pink-o-rama.com/Royalcash/ (easylistchina+easylist.txt: 46715) -.pink-o-rama.com/Royalcash/ -# ||pink-o-rama.com/Privatecash (easylistchina+easylist.txt: 46714) -.pink-o-rama.com/Privatecash -# ||pink-o-rama.com/Pimproll/ (easylistchina+easylist.txt: 46713) -.pink-o-rama.com/Pimproll/ -# ||pink-o-rama.com/Nscash (easylistchina+easylist.txt: 46712) -.pink-o-rama.com/Nscash -# ||pink-o-rama.com/Longbucks/ (easylistchina+easylist.txt: 46711) -.pink-o-rama.com/Longbucks/ -# ||pink-o-rama.com/Karups (easylistchina+easylist.txt: 46710) -.pink-o-rama.com/Karups -# ||pink-o-rama.com/Gammae (easylistchina+easylist.txt: 46709) -.pink-o-rama.com/Gammae -# ||pink-o-rama.com/Fuckyou (easylistchina+easylist.txt: 46708) -.pink-o-rama.com/Fuckyou -# ||pink-o-rama.com/Fetishhits (easylistchina+easylist.txt: 46707) -.pink-o-rama.com/Fetishhits -# ||pink-o-rama.com/Brothersincash (easylistchina+easylist.txt: 46706) -.pink-o-rama.com/Brothersincash -# ||pink-o-rama.com/Blazingbucks (easylistchina+easylist.txt: 46705) -.pink-o-rama.com/Blazingbucks -# ||pimpandhost.com/static/i/*-pah.jpg (easylistchina+easylist.txt: 46704) -.pimpandhost.com/static/i/.*-pah\.jpg -# ||pimpandhost.com/static/html/iframe.html (easylistchina+easylist.txt: 46703) -.pimpandhost.com/static/html/iframe\.html -# ||pimpandhost.com/images/pah-download.gif (easylistchina+easylist.txt: 46702) -.pimpandhost.com/images/pah-download\.gif -# ||picxme.com/rec/ (easylistchina+easylist.txt: 46701) -.picxme.com/rec/ -# ||picxme.com/js/pops. (easylistchina+easylist.txt: 46700) -.picxme.com/js/pops\. -# ||picturevip.com/imagehost/top_banners.html (easylistchina+easylist.txt: 46699) -.picturevip.com/imagehost/top_banners\.html -# ||picturescream.com/top_banners.html (easylistchina+easylist.txt: 46698) -.picturescream.com/top_banners\.html -# ||picturescream.com/porn_movies.gif (easylistchina+easylist.txt: 46697) -.picturescream.com/porn_movies\.gif -# ||picturedip.com/windowfiles/dhtmlwindow.css (easylistchina+easylist.txt: 46696) -.picturedip.com/windowfiles/dhtmlwindow\.css -# ||picturedip.com/modalfiles/modal.js (easylistchina+easylist.txt: 46695) -.picturedip.com/modalfiles/modal\.js -# ||picsexhub.com/rec/ (easylistchina+easylist.txt: 46694) -.picsexhub.com/rec/ -# ||picsexhub.com/js/pops2. (easylistchina+easylist.txt: 46693) -.picsexhub.com/js/pops2\. -# ||picsexhub.com/js/pops. (easylistchina+easylist.txt: 46692) -.picsexhub.com/js/pops\. -# ||picp2.com/img/putv (easylistchina+easylist.txt: 46691) -.picp2.com/img/putv -# ||picleet.com/inter_picleet.js (easylistchina+easylist.txt: 46690) -.picleet.com/inter_picleet\.js -# ||pichunter.com/deals/ (easylistchina+easylist.txt: 46689) -.pichunter.com/deals/ -# ||pichunter.com/creatives/ (easylistchina+easylist.txt: 46688) -.pichunter.com/creatives/ -# ||phun.org/phun/gfx/banner/ (easylistchina+easylist.txt: 46687) -.phun.org/phun/gfx/banner/ -# ||phncdn.com/mobile/js/interstitial-min.js? (easylistchina+easylist.txt: 46686) -.phncdn.com/mobile/js/interstitial-min\.js\? -# ||phncdn.com/images/skin/ (easylistchina+easylist.txt: 46685) -.phncdn.com/images/skin/ -# ||phncdn.com/images/premium_ (easylistchina+easylist.txt: 46684) -.phncdn.com/images/premium_ -# ||phncdn.com/images/premium/ (easylistchina+easylist.txt: 46683) -.phncdn.com/images/premium/ -# ||phncdn.com/images/banners/ (easylistchina+easylist.txt: 46682) -.phncdn.com/images/banners/ -# ||phncdn.com/images/*_skin_ (easylistchina+easylist.txt: 46681) -.phncdn.com/images/.*_skin_ -# ||phncdn.com/images/*_skin. (easylistchina+easylist.txt: 46680) -.phncdn.com/images/.*_skin\. -# ||phncdn.com/iframe (easylistchina+easylist.txt: 46679) -.phncdn.com/iframe -# ||perfectgirls.net/b/ (easylistchina+easylist.txt: 46675) -.perfectgirls.net/b/ -# ||pastime.biz^*/personalad*.jpg (easylistchina+easylist.txt: 46674) -.pastime.biz/.*/personalad.*\.jpg -# ||pastime.biz/images/interracial-porn.gif (easylistchina+easylist.txt: 46673) -.pastime.biz/images/interracial-porn\.gif -# ||pastime.biz/images/iloveint.gif (easylistchina+easylist.txt: 46672) -.pastime.biz/images/iloveint\.gif -# ||partners.xhamster.com^ (easylistchina+easylist.txt: 46671) -.partners.xhamster.com -# ||oporn.com/js/wspop.js (easylistchina+easylist.txt: 46670) -.oporn.com/js/wspop\.js -# ||openjavascript.com/jtools/jads. (easylistchina+easylist.txt: 46669) -.openjavascript.com/jtools/jads\. -# ||onlinestars.net/br/ (easylistchina+easylist.txt: 46668) -.onlinestars.net/br/ -# ||onlinestars.net/ban/ (easylistchina+easylist.txt: 46667) -.onlinestars.net/ban/ -# ||onhercam.tv^*/banners/ (easylistchina+easylist.txt: 46666) -.onhercam.tv/.*/banners/ -# ||olderhill.com^*.html| (easylistchina+easylist.txt: 46665) -.olderhill.com/.*\.html$ -# ||olderhill.com/ubr.js (easylistchina+easylist.txt: 46664) -.olderhill.com/ubr\.js -# ||oasisactive.com^*/oasis-widget.html (easylistchina+easylist.txt: 46663) -.oasisactive.com/.*/oasis-widget\.html -# ||nuvid.com/videos_banner.html (easylistchina+easylist.txt: 46662) -.nuvid.com/videos_banner\.html -# ||nudography.com/photos/banners/ (easylistchina+easylist.txt: 46661) -.nudography.com/photos/banners/ -# ||nudevista.com^*/nv-com.min.js (easylistchina+easylist.txt: 46660) -.nudevista.com/.*/nv-com\.min\.js -# ||nudevista.com/_/teasernet (easylistchina+easylist.txt: 46659) -.nudevista.com/_/teasernet -# ||nudevista.com/_/pp. (easylistchina+easylist.txt: 46658) -.nudevista.com/_/pp\. -# ||nudevista.com/_/exo_ (easylistchina+easylist.txt: 46657) -.nudevista.com/_/exo_ -# ||nudebabes.ws/galleries/banners/ (easylistchina+easylist.txt: 46656) -.nudebabes.ws/galleries/banners/ -# ||nude.hu/banners/ (easylistchina+easylist.txt: 46655) -.nude.hu/banners/ -# ||ns4w.org/images/vod_ (easylistchina+easylist.txt: 46654) -.ns4w.org/images/vod_ -# ||ns4w.org/images/promo/ (easylistchina+easylist.txt: 46653) -.ns4w.org/images/promo/ -# ||ns4w.org/gsm.js (easylistchina+easylist.txt: 46652) -.ns4w.org/gsm\.js -# ||novoporn.com/imagelinks/ (easylistchina+easylist.txt: 46651) -.novoporn.com/imagelinks/ -# ||nonktube.com/popembed.js (easylistchina+easylist.txt: 46650) -.nonktube.com/popembed\.js -# ||nonktube.com/nuevox/midroll.php? (easylistchina+easylist.txt: 46649) -.nonktube.com/nuevox/midroll\.php\? -# ||nonktube.com/brazzers/ (easylistchina+easylist.txt: 46648) -.nonktube.com/brazzers/ -# ||niceyoungteens.com/mct.js (easylistchina+easylist.txt: 46647) -.niceyoungteens.com/mct\.js -# ||niceyoungteens.com/ero-advertising (easylistchina+easylist.txt: 46646) -.niceyoungteens.com/ero-advertising -# ||newcelebnipslips.com/nipslipop.js (easylistchina+easylist.txt: 46645) -.newcelebnipslips.com/nipslipop\.js -# ||netronline.com/Include/burst.js (easylistchina+easylist.txt: 46644) -.netronline.com/Include/burst\.js -# ||netasdesalim.com/js/netas (easylistchina+easylist.txt: 46643) -.netasdesalim.com/js/netas -# ||naughtyblog.org/pr1pop.js (easylistchina+easylist.txt: 46642) -.naughtyblog.org/pr1pop\.js -# ||naughty.com/js/popJava.js (easylistchina+easylist.txt: 46641) -.naughty.com/js/popJava\.js -# ||namethatpornstar.com/topphotos/ (easylistchina+easylist.txt: 46640) -.namethatpornstar.com/topphotos/ -# ||naked-sluts.us/prpop.js (easylistchina+easylist.txt: 46639) -.naked-sluts.us/prpop\.js -# ||myslavegirl.org/follow/go.js (easylistchina+easylist.txt: 46638) -.myslavegirl.org/follow/go\.js -# ||myhentai.tv/popsstuff. (easylistchina+easylist.txt: 46637) -.myhentai.tv/popsstuff\. -# ||mygirlfriendvids.net/js/popall1.js (easylistchina+easylist.txt: 46636) -.mygirlfriendvids.net/js/popall1\.js -# ||mydailytube.com/nothing/ (easylistchina+easylist.txt: 46635) -.mydailytube.com/nothing/ -# ||my-pornbase.com/banner/ (easylistchina+easylist.txt: 46634) -.my-pornbase.com/banner/ -# ||mrstiff.com/view/movie/finished/ (easylistchina+easylist.txt: 46633) -.mrstiff.com/view/movie/finished/ -# ||mrstiff.com/view/movie/bar/ (easylistchina+easylist.txt: 46632) -.mrstiff.com/view/movie/bar/ -# ||mrstiff.com/view/context/ (easylistchina+easylist.txt: 46631) -.mrstiff.com/view/context/ -# ||mrstiff.com/uploads/paysite/ (easylistchina+easylist.txt: 46630) -.mrstiff.com/uploads/paysite/ -# ||mrskin.com/data/mrskincash/$third-party (easylistchina+easylist.txt: 46629) -.mrskin.com/data/mrskincash/ -# ||mp3musicengine.com/images/freewatchtv1. (easylistchina+easylist.txt: 46628) -.mp3musicengine.com/images/freewatchtv1\. -# ||mp3musicengine.com/bearshare_logo. (easylistchina+easylist.txt: 46627) -.mp3musicengine.com/bearshare_logo\. -# ||motherman.com/*.html (easylistchina+easylist.txt: 46626) -.motherman.com/.*\.html -# ||motherless.com/images/banners/ (easylistchina+easylist.txt: 46625) -.motherless.com/images/banners/ -# ||morebabes.to/morebabes.js (easylistchina+easylist.txt: 46624) -.morebabes.to/morebabes\.js -# ||morazzia.com^*/banners/ (easylistchina+easylist.txt: 46623) -.morazzia.com/.*/banners/ -# ||monstertube.com/images/vjoin_ (easylistchina+easylist.txt: 46622) -.monstertube.com/images/vjoin_ -# ||monstertube.com/images/vjoin. (easylistchina+easylist.txt: 46621) -.monstertube.com/images/vjoin\. -# ||monstertube.com/images/bottom-features.jpg (easylistchina+easylist.txt: 46620) -.monstertube.com/images/bottom-features\.jpg -# ||monstertube.com/images/access_ (easylistchina+easylist.txt: 46619) -.monstertube.com/images/access_ -# ||monstercockz.com/eds/ (easylistchina+easylist.txt: 46618) -.monstercockz.com/eds/ -# ||monstercockz.com/cont/ (easylistchina+easylist.txt: 46617) -.monstercockz.com/cont/ -# ||mobilepornmovies.com/images/banners/ (easylistchina+easylist.txt: 46616) -.mobilepornmovies.com/images/banners/ -# ||miragepics.com/images/11361497289209202613.jpg (easylistchina+easylist.txt: 46615) -.miragepics.com/images/11361497289209202613\.jpg -# ||milkmanbook.com/dat/promo/ (easylistchina+easylist.txt: 46614) -.milkmanbook.com/dat/promo/ -# ||merb.ca/banner/ (easylistchina+easylist.txt: 46613) -.merb.ca/banner/ -# ||meendo.com/promos/ (easylistchina+easylist.txt: 46612) -.meendo.com/promos/ -# ||media1.realgfporn.com^$subdocument (easylistchina+easylist.txt: 46611) -.media1.realgfporn.com -# ||meatspin.com/images/fl.gif (easylistchina+easylist.txt: 46610) -.meatspin.com/images/fl\.gif -# ||meatspin.com/facebookchatlist.php (easylistchina+easylist.txt: 46609) -.meatspin.com/facebookchatlist\.php -# ||maxjizztube.com/downloadfreemovies.php (easylistchina+easylist.txt: 46608) -.maxjizztube.com/downloadfreemovies\.php -# ||matureworld.ws/images/banners/ (easylistchina+easylist.txt: 46607) -.matureworld.ws/images/banners/ -# ||mallandrinhas.net/flutuante (easylistchina+easylist.txt: 46606) -.mallandrinhas.net/flutuante -# ||madthumbs.com/madthumbs/sponsor/ (easylistchina+easylist.txt: 46605) -.madthumbs.com/madthumbs/sponsor/ -# ||madmovs.com/rec/ (easylistchina+easylist.txt: 46604) -.madmovs.com/rec/ -# ||m2.xhamster.com^ (easylistchina+easylist.txt: 46603) -.m2.xhamster.com -# ||lw1.cdmediaworld.com^ (easylistchina+easylist.txt: 46602) -.lw1.cdmediaworld.com -# ||lukeisback.com^*/250.gif (easylistchina+easylist.txt: 46601) -.lukeisback.com/.*/250\.gif -# ||lukeisback.com/images/boxes/ (easylistchina+easylist.txt: 46600) -.lukeisback.com/images/boxes/ -# ||lucidsponge.pl/pop_ (easylistchina+easylist.txt: 46599) -.lucidsponge.pl/pop_ -# ||lubetube.com/js/cspop.js (easylistchina+easylist.txt: 46598) -.lubetube.com/js/cspop\.js -# ||livedoor.jp^*/bnr/bnr- (easylistchina+easylist.txt: 46597) -.livedoor.jp/.*/bnr/bnr- -# ||liveandchat.tv/bana-/ (easylistchina+easylist.txt: 46596) -.liveandchat.tv/bana-/ -# ||live-porn.tv/adds/ (easylistchina+easylist.txt: 46595) -.live-porn.tv/adds/ -# ||literotica.com/images/lit_banners/ (easylistchina+easylist.txt: 46594) -.literotica.com/images/lit_banners/ -# ||literotica.com/images/banners/ (easylistchina+easylist.txt: 46593) -.literotica.com/images/banners/ -# ||linksave.in/fopen.html (easylistchina+easylist.txt: 46592) -.linksave.in/fopen\.html -# ||lesbian.hu/banners/ (easylistchina+easylist.txt: 46591) -.lesbian.hu/banners/ -# ||laxtime.com/rotation/ (easylistchina+easylist.txt: 46590) -.laxtime.com/rotation/ -# ||kyte.tv/flash/MarbachAdvertsDartInstream. (easylistchina+easylist.txt: 46589) -.kyte.tv/flash/MarbachAdvertsDartInstream\. -# ||kuntfutube.com/kellyban.gif (easylistchina+easylist.txt: 46588) -.kuntfutube.com/kellyban\.gif -# ||kuiken.co/inc/ex.js (easylistchina+easylist.txt: 46587) -.kuiken.co/inc/ex\.js -# ||krasview.ru/resource/a.php (easylistchina+easylist.txt: 46586) -.krasview.ru/resource/a\.php -# ||krasview.ru/content/$object (easylistchina+easylist.txt: 46585) -.krasview.ru/content/ -# ||konachan.com/images/bam/ (easylistchina+easylist.txt: 46584) -.konachan.com/images/bam/ -# ||kindgirls.com/banners2/ (easylistchina+easylist.txt: 46583) -.kindgirls.com/banners2/ -# ||keezmovies.com/iframe.html? (easylistchina+easylist.txt: 46582) -.keezmovies.com/iframe\.html\? -# ||kaotic.com^*/popnew.js (easylistchina+easylist.txt: 46581) -.kaotic.com/.*/popnew\.js -# ||justporno.tv/ad/ (easylistchina+easylist.txt: 46580) -.justporno.tv/ad/ -# ||julesjordanvideo.com/flash/$object (easylistchina+easylist.txt: 46579) -.julesjordanvideo.com/flash/ -# ||javsin.com/vip.html (easylistchina+easylist.txt: 46578) -.javsin.com/vip\.html -# ||javporn.in/clicunder.js (easylistchina+easylist.txt: 46577) -.javporn.in/clicunder\.js -# ||jav-porn.net/js/popup.js (easylistchina+easylist.txt: 46576) -.jav-porn.net/js/popup\.js -# ||jav-porn.net/js/popout.js (easylistchina+easylist.txt: 46575) -.jav-porn.net/js/popout\.js -# ||jailbaitgallery.com/banners300/ (easylistchina+easylist.txt: 46574) -.jailbaitgallery.com/banners300/ -# ||iseekgirls.com^*/banners/ (easylistchina+easylist.txt: 46573) -.iseekgirls.com/.*/banners/ -# ||iseekgirls.com/rotating_ (easylistchina+easylist.txt: 46572) -.iseekgirls.com/rotating_ -# ||iseekgirls.com/js/fabulous.js (easylistchina+easylist.txt: 46571) -.iseekgirls.com/js/fabulous\.js -# ||iseekgirls.com/g/pandoracash/ (easylistchina+easylist.txt: 46570) -.iseekgirls.com/g/pandoracash/ -# ||intporn.org/scripts/asma.js (easylistchina+easylist.txt: 46569) -.intporn.org/scripts/asma\.js -# ||intporn.com^*/asma.js (easylistchina+easylist.txt: 46568) -.intporn.com/.*/asma\.js -# ||intporn.com^*/21s.js (easylistchina+easylist.txt: 46567) -.intporn.com/.*/21s\.js -# ||indexxx.com^*/banners/ (easylistchina+easylist.txt: 46566) -.indexxx.com/.*/banners/ -# ||imperia-of-hentai.net/banner/ (easylistchina+easylist.txt: 46565) -.imperia-of-hentai.net/banner/ -# ||imgwet.com/aa/ (easylistchina+easylist.txt: 46564) -.imgwet.com/aa/ -# ||imghost.us.to/xxx/content/system/js/iframe.html (easylistchina+easylist.txt: 46563) -.imghost.us.to/xxx/content/system/js/iframe\.html -# ||imgflare.com^*/splash.php (easylistchina+easylist.txt: 46562) -.imgflare.com/.*/splash\.php -# ||imgflare.com/exo.html (easylistchina+easylist.txt: 46561) -.imgflare.com/exo\.html -# ||imgbabes.com^*/splash.php (easylistchina+easylist.txt: 46560) -.imgbabes.com/.*/splash\.php -# ||imgbabes.com/ja.html (easylistchina+easylist.txt: 46559) -.imgbabes.com/ja\.html -# ||imgbabes.com/ero-foo.html (easylistchina+easylist.txt: 46558) -.imgbabes.com/ero-foo\.html -# ||imgbabes.com/element.js (easylistchina+easylist.txt: 46557) -.imgbabes.com/element\.js -# ||imagetwist.com/lj.js (easylistchina+easylist.txt: 46556) -.imagetwist.com/lj\.js -# ||imagetwist.com/imagetwist*.js (easylistchina+easylist.txt: 46555) -.imagetwist.com/imagetwist.*\.js -# ||imagesnake.com/includes/js/pops.js (easylistchina+easylist.txt: 46554) -.imagesnake.com/includes/js/pops\.js -# ||imagesnake.com/includes/js/layer.js (easylistchina+easylist.txt: 46553) -.imagesnake.com/includes/js/layer\.js -# ||imagesnake.com/includes/js/cat.js (easylistchina+easylist.txt: 46552) -.imagesnake.com/includes/js/cat\.js -# ||imageshack.us^*/bannng.jpg (easylistchina+easylist.txt: 46551) -.imageshack.us/.*/bannng\.jpg -# ||imagepost.com/stuff/ (easylistchina+easylist.txt: 46550) -.imagepost.com/stuff/ -# ||imagepost.com/includes/dating/ (easylistchina+easylist.txt: 46549) -.imagepost.com/includes/dating/ -# ||imageporter.com/smate.html (easylistchina+easylist.txt: 46548) -.imageporter.com/smate\.html -# ||imageporter.com/ro-7bgsd.html (easylistchina+easylist.txt: 46547) -.imageporter.com/ro-7bgsd\.html -# ||imagehyper.com/prom/ (easylistchina+easylist.txt: 46546) -.imagehyper.com/prom/ -# ||imagefruit.com^*/pops.js (easylistchina+easylist.txt: 46545) -.imagefruit.com/.*/pops\.js -# ||imagedunk.com^*_imagedunk.js (easylistchina+easylist.txt: 46544) -.imagedunk.com/.*_imagedunk\.js -# ||imagecarry.com/top (easylistchina+easylist.txt: 46543) -.imagecarry.com/top -# ||imagecarry.com/down (easylistchina+easylist.txt: 46542) -.imagecarry.com/down -# ||imagearn.com/img/picBanner.swf (easylistchina+easylist.txt: 46541) -.imagearn.com/img/picBanner\.swf -# ||hustler.com/backout-script/ (easylistchina+easylist.txt: 46540) -.hustler.com/backout-script/ -# ||hungangels.com/vboard/friends/ (easylistchina+easylist.txt: 46539) -.hungangels.com/vboard/friends/ -# ||hottubeclips.com/stxt/banners/ (easylistchina+easylist.txt: 46538) -.hottubeclips.com/stxt/banners/ -# ||hottestgirlsofmyspace.net/smallpics/fb-150x150.gif (easylistchina+easylist.txt: 46537) -.hottestgirlsofmyspace.net/smallpics/fb-150x150\.gif -# ||hottestgirlsofmyspace.net/smallpics/300x200b.gif (easylistchina+easylist.txt: 46536) -.hottestgirlsofmyspace.net/smallpics/300x200b\.gif -# ||hotshame.com/js/adphotshame (easylistchina+easylist.txt: 46535) -.hotshame.com/js/adphotshame -# ||hotshame.com/iframes/ (easylistchina+easylist.txt: 46534) -.hotshame.com/iframes/ -# ||hotshame.com/hotshame_html/ (easylistchina+easylist.txt: 46533) -.hotshame.com/hotshame_html/ -# ||hotsashagrey.com^*/throated.jpg (easylistchina+easylist.txt: 46532) -.hotsashagrey.com/.*/throated\.jpg -# ||hotsashagrey.com^*/squ-fantasygirlsasha-001.gif (easylistchina+easylist.txt: 46531) -.hotsashagrey.com/.*/squ-fantasygirlsasha-001\.gif -# ||hotsashagrey.com^*/PeterNorth-800x350.jpg (easylistchina+easylist.txt: 46530) -.hotsashagrey.com/.*/PeterNorth-800x350\.jpg -# ||hotsashagrey.com^*/New_Sensations-1091.gif (easylistchina+easylist.txt: 46529) -.hotsashagrey.com/.*/New_Sensations-1091\.gif -# ||hotsashagrey.com^*/Anabolic.jpg (easylistchina+easylist.txt: 46528) -.hotsashagrey.com/.*/Anabolic\.jpg -# ||hotkellymadison.com^*/pf_640x100.jpg (easylistchina+easylist.txt: 46527) -.hotkellymadison.com/.*/pf_640x100\.jpg -# ||hotkellymadison.com^*/km_300x300.gif (easylistchina+easylist.txt: 46526) -.hotkellymadison.com/.*/km_300x300\.gif -# ||hotkellymadison.com^*/kelly4.jpg (easylistchina+easylist.txt: 46525) -.hotkellymadison.com/.*/kelly4\.jpg -# ||hotkellymadison.com^*/kelly1.jpg (easylistchina+easylist.txt: 46524) -.hotkellymadison.com/.*/kelly1\.jpg -# ||hotdylanryder.com^*/wicked.gif (easylistchina+easylist.txt: 46523) -.hotdylanryder.com/.*/wicked\.gif -# ||hotdylanryder.com^*/pf_640x100.jpg (easylistchina+easylist.txt: 46522) -.hotdylanryder.com/.*/pf_640x100\.jpg -# ||hotdylanryder.com^*/iframes_174.jpg (easylistchina+easylist.txt: 46521) -.hotdylanryder.com/.*/iframes_174\.jpg -# ||hotdylanryder.com^*/dylan_350x250_01.jpg (easylistchina+easylist.txt: 46520) -.hotdylanryder.com/.*/dylan_350x250_01\.jpg -# ||hotdylanryder.com^*/Big-Tits-Like-Big-Dicks.jpg (easylistchina+easylist.txt: 46519) -.hotdylanryder.com/.*/Big-Tits-Like-Big-Dicks\.jpg -# ||hotdevonmichaels.com^*/wicked.gif (easylistchina+easylist.txt: 46518) -.hotdevonmichaels.com/.*/wicked\.gif -# ||hotdevonmichaels.com^*/streamate2.jpg (easylistchina+easylist.txt: 46517) -.hotdevonmichaels.com/.*/streamate2\.jpg -# ||hotdevonmichaels.com^*/pf_640x1001.jpg (easylistchina+easylist.txt: 46516) -.hotdevonmichaels.com/.*/pf_640x1001\.jpg -# ||hornywhores.net/img/zevera_rec.jpg (easylistchina+easylist.txt: 46515) -.hornywhores.net/img/zevera_rec\.jpg -# ||hornywhores.net/img/double.jpg (easylistchina+easylist.txt: 46514) -.hornywhores.net/img/double\.jpg -# ||hornywhores.net/hw$script (easylistchina+easylist.txt: 46513) -.hornywhores.net/hw -# ||hornygamer.com/images/promo/ (easylistchina+easylist.txt: 46512) -.hornygamer.com/images/promo/ -# ||homeprivatevids.com/banners.shtml (easylistchina+easylist.txt: 46511) -.homeprivatevids.com/banners\.shtml -# ||homeprivatevids.com/banner2.shtml (easylistchina+easylist.txt: 46510) -.homeprivatevids.com/banner2\.shtml -# ||homemademoviez.com^$subdocument (easylistchina+easylist.txt: 46509) -.homemademoviez.com -# ||homegrownfreaks.net/homegfreaks.js (easylistchina+easylist.txt: 46508) -.homegrownfreaks.net/homegfreaks\.js -# ||hollywoodoops.com/img/*banner (easylistchina+easylist.txt: 46507) -.hollywoodoops.com/img/.*banner -# ||hollyscoop.com/sites/*/skins/ (easylistchina+easylist.txt: 46506) -.hollyscoop.com/sites/.*/skins/ -# ||hidefporn.ws/nitro.png (easylistchina+easylist.txt: 46505) -.hidefporn.ws/nitro\.png -# ||hidefporn.ws/img.png (easylistchina+easylist.txt: 46504) -.hidefporn.ws/img\.png -# ||hidefporn.ws/client (easylistchina+easylist.txt: 46503) -.hidefporn.ws/client -# ||hidefporn.ws/055.jpg (easylistchina+easylist.txt: 46502) -.hidefporn.ws/055\.jpg -# ||hidefporn.ws/05.jpg (easylistchina+easylist.txt: 46501) -.hidefporn.ws/05\.jpg -# ||hidefporn.ws/04.jpg (easylistchina+easylist.txt: 46500) -.hidefporn.ws/04\.jpg -# ||hgimg.com/js/beacon. (easylistchina+easylist.txt: 46499) -.hgimg.com/js/beacon\. -# ||heraldnetdailydeal.com/widgets/DailyDealWidget300x250 (easylistchina+easylist.txt: 46498) -.heraldnetdailydeal.com/widgets/DailyDealWidget300x250 -# ||heraldnet.com/section/iFrame_AutosInternetSpecials? (easylistchina+easylist.txt: 46497) -.heraldnet.com/section/iFrame_AutosInternetSpecials\? -# ||hentaistream.com/wp-includes/images/mofos/webcams_ (easylistchina+easylist.txt: 46496) -.hentaistream.com/wp-includes/images/mofos/webcams_ -# ||hentaistream.com/wp-includes/images/bg- (easylistchina+easylist.txt: 46495) -.hentaistream.com/wp-includes/images/bg- -# ||hentaistream.com/out/ (easylistchina+easylist.txt: 46494) -.hentaistream.com/out/ -# ||hentairules.net/pop_$script (easylistchina+easylist.txt: 46493) -.hentairules.net/pop_ -# ||hentai-foundry.com/themes/Hentai/images/hu/hu.jpg (easylistchina+easylist.txt: 46492) -.hentai-foundry.com/themes/Hentai/images/hu/hu\.jpg -# ||hentai-foundry.com/themes/*Banner (easylistchina+easylist.txt: 46491) -.hentai-foundry.com/themes/.*Banner -# ||hentai-foundry.com/themes/*/add$image (easylistchina+easylist.txt: 46490) -.hentai-foundry.com/themes/.*/add -# ||hellporno.com/iframes/ (easylistchina+easylist.txt: 46489) -.hellporno.com/iframes/ -# ||hebus.com/p/hebusx/ (easylistchina+easylist.txt: 46488) -.hebus.com/p/hebusx/ -# ||heavy-r.com/js/imbox.js (easylistchina+easylist.txt: 46487) -.heavy-r.com/js/imbox\.js -# ||heavy-r.com/a/ (easylistchina+easylist.txt: 46486) -.heavy-r.com/a/ -# ||hdzog.com/hdzog.php?t_sid= (easylistchina+easylist.txt: 46485) -.hdzog.com/hdzog\.php\?t_sid= -# ||hdzog.com/contents/cst/ (easylistchina+easylist.txt: 46484) -.hdzog.com/contents/cst/ -# ||hdzog.com/contents/content_sources/ (easylistchina+easylist.txt: 46483) -.hdzog.com/contents/content_sources/ -# ||hdporn.net/images/hd-porn-banner.gif (easylistchina+easylist.txt: 46482) -.hdporn.net/images/hd-porn-banner\.gif -# ||hdporn.in/rec/$subdocument (easylistchina+easylist.txt: 46481) -.hdporn.in/rec/ -# ||hdporn.in/js/pops2. (easylistchina+easylist.txt: 46480) -.hdporn.in/js/pops2\. -# ||hdporn.in/js/focus.*.js (easylistchina+easylist.txt: 46479) -.hdporn.in/js/focus\..*\.js -# ||hdporn.in/images/rec/ (easylistchina+easylist.txt: 46478) -.hdporn.in/images/rec/ -# ||hcomicbook.com^*_banner1.gif (easylistchina+easylist.txt: 46477) -.hcomicbook.com/.*_banner1\.gif -# ||hcomicbook.com/js/hcb-$script (easylistchina+easylist.txt: 46476) -.hcomicbook.com/js/hcb- -# ||hcomicbook.com/banner/ (easylistchina+easylist.txt: 46475) -.hcomicbook.com/banner/ -# ||hclips.com/js/m.js (easylistchina+easylist.txt: 46474) -.hclips.com/js/m\.js -# ||hawaiipornblog.com/post_images/ (easylistchina+easylist.txt: 46473) -.hawaiipornblog.com/post_images/ -# ||hardsextube.com/zone.php (easylistchina+easylist.txt: 46472) -.hardsextube.com/zone\.php -# ||hardsextube.com/testxml.php (easylistchina+easylist.txt: 46471) -.hardsextube.com/testxml\.php -# ||hardsextube.com/preroll/getiton/ (easylistchina+easylist.txt: 46470) -.hardsextube.com/preroll/getiton/ -# ||hardsextube.com/pornstars/$xmlhttprequest (easylistchina+easylist.txt: 46469) -.hardsextube.com/pornstars/ -# ||hardcoresexgif.com/wp-content/msn.js (easylistchina+easylist.txt: 46468) -.hardcoresexgif.com/wp-content/msn\.js -# ||hanksgalleries.com/vg_ad_ (easylistchina+easylist.txt: 46467) -.hanksgalleries.com/vg_ad_ -# ||hanksgalleries.com/stxt_ (easylistchina+easylist.txt: 46466) -.hanksgalleries.com/stxt_ -# ||hanksgalleries.com/galleryimgs/ (easylistchina+easylist.txt: 46465) -.hanksgalleries.com/galleryimgs/ -# ||hanksgalleries.com/gallery- (easylistchina+easylist.txt: 46464) -.hanksgalleries.com/gallery- -# ||hanksgalleries.com/aff- (easylistchina+easylist.txt: 46463) -.hanksgalleries.com/aff- -# ||h2porn.com/contents/content_sources/ (easylistchina+easylist.txt: 46462) -.h2porn.com/contents/content_sources/ -# ||gspcdn.com^*/banners/ (easylistchina+easylist.txt: 46461) -.gspcdn.com/.*/banners/ -# ||grannysexforum.com/filter.php (easylistchina+easylist.txt: 46460) -.grannysexforum.com/filter\.php -# ||gotgayporn.com/Watermarks/ (easylistchina+easylist.txt: 46459) -.gotgayporn.com/Watermarks/ -# ||goldporntube.com/iframes/ (easylistchina+easylist.txt: 46458) -.goldporntube.com/iframes/ -# ||gloryholegirlz.com/images/banners/ (easylistchina+easylist.txt: 46457) -.gloryholegirlz.com/images/banners/ -# ||glamour.cz/banners/ (easylistchina+easylist.txt: 46456) -.glamour.cz/banners/ -# ||girlsofdesire.org/media/banners/ (easylistchina+easylist.txt: 46455) -.girlsofdesire.org/media/banners/ -# ||girlsofdesire.org/banner/ (easylistchina+easylist.txt: 46454) -.girlsofdesire.org/banner/ -# ||girlsnaked.net/gallery/banners/ (easylistchina+easylist.txt: 46453) -.girlsnaked.net/gallery/banners/ -# ||girlsintube.com/images/get-free-server.jpg (easylistchina+easylist.txt: 46452) -.girlsintube.com/images/get-free-server\.jpg -# ||girlsfromprague.eu^*468x (easylistchina+easylist.txt: 46451) -.girlsfromprague.eu/.*468x -# ||girlsfromprague.eu/banners/ (easylistchina+easylist.txt: 46450) -.girlsfromprague.eu/banners/ -# ||girlsfrombudapest.eu/banners/ (easylistchina+easylist.txt: 46449) -.girlsfrombudapest.eu/banners/ -# ||girlfriendvideos.com/pcode.js (easylistchina+easylist.txt: 46448) -.girlfriendvideos.com/pcode\.js -# ||gina-lynn.net/pr4.html (easylistchina+easylist.txt: 46447) -.gina-lynn.net/pr4\.html -# ||ghettotube.com/images/banners/ (easylistchina+easylist.txt: 46446) -.ghettotube.com/images/banners/ -# ||gggtube.com/images/banners/ (easylistchina+easylist.txt: 46445) -.gggtube.com/images/banners/ -# ||gaytube.com/chacha/ (easylistchina+easylist.txt: 46444) -.gaytube.com/chacha/ -# ||gayporntimes.com^*/CockyBoys-July-2012.jpg (easylistchina+easylist.txt: 46443) -.gayporntimes.com/.*/CockyBoys-July-2012\.jpg -# ||gayporntimes.com^*/Bel-Ami-Mick-Lovell-July-2012.jpeg (easylistchina+easylist.txt: 46442) -.gayporntimes.com/.*/Bel-Ami-Mick-Lovell-July-2012\.jpeg -# ||gayporntimes.com/img/GP_Heroes.jpg (easylistchina+easylist.txt: 46441) -.gayporntimes.com/img/GP_Heroes\.jpg -# ||gapeandfist.com/uploads/thumbs/ (easylistchina+easylist.txt: 46440) -.gapeandfist.com/uploads/thumbs/ -# ||gamesofdesire.com/images/banners/ (easylistchina+easylist.txt: 46439) -.gamesofdesire.com/images/banners/ -# ||gals4free.net/images/banners/ (easylistchina+easylist.txt: 46438) -.gals4free.net/images/banners/ -# ||galleries-pornstar.com/thumb_top/ (easylistchina+easylist.txt: 46437) -.galleries-pornstar.com/thumb_top/ -# ||funny-games.biz/banners/ (easylistchina+easylist.txt: 46436) -.funny-games.biz/banners/ -# ||fuckuh.com/pr_ad.swf (easylistchina+easylist.txt: 46435) -.fuckuh.com/pr_ad\.swf -# ||freepornvs.com/im.js (easylistchina+easylist.txt: 46433) -.freepornvs.com/im\.js -# ||freeporninhd.com/images/cbzide. (easylistchina+easylist.txt: 46432) -.freeporninhd.com/images/cbzide\. -# ||freeporninhd.com/images/cbside. (easylistchina+easylist.txt: 46431) -.freeporninhd.com/images/cbside\. -# ||freeporn.to/wpbanner/ (easylistchina+easylist.txt: 46430) -.freeporn.to/wpbanner/ -# ||freeones.com/images/freeones/sidewidget/$image (easylistchina+easylist.txt: 46429) -.freeones.com/images/freeones/sidewidget/ -# ||freeimgup.com/xxx/content/system/js/iframe.html (easylistchina+easylist.txt: 46428) -.freeimgup.com/xxx/content/system/js/iframe\.html -# ||freebunker.com^*/raw.js (easylistchina+easylist.txt: 46427) -.freebunker.com/.*/raw\.js -# ||freebunker.com^*/pops.js (easylistchina+easylist.txt: 46426) -.freebunker.com/.*/pops\.js -# ||freebunker.com^*/oc.js (easylistchina+easylist.txt: 46425) -.freebunker.com/.*/oc\.js -# ||freebunker.com^*/layer.js (easylistchina+easylist.txt: 46424) -.freebunker.com/.*/layer\.js -# ||freebunker.com^*/exa.js (easylistchina+easylist.txt: 46423) -.freebunker.com/.*/exa\.js -# ||freebunker.com^*/ex.js (easylistchina+easylist.txt: 46422) -.freebunker.com/.*/ex\.js -# ||freebunker.com/includes/js/cat.js (easylistchina+easylist.txt: 46421) -.freebunker.com/includes/js/cat\.js -# ||free-celebrity-tube.com/js/freeceleb.js (easylistchina+easylist.txt: 46420) -.free-celebrity-tube.com/js/freeceleb\.js -# ||floppy-tits.com/iframes/ (easylistchina+easylist.txt: 46419) -.floppy-tits.com/iframes/ -# ||fleshbot.com/wp-content/themes/fbdesktop_aff/images/af (easylistchina+easylist.txt: 46418) -.fleshbot.com/wp-content/themes/fbdesktop_aff/images/af -# ||fingerslam.com/*.html (easylistchina+easylist.txt: 46417) -.fingerslam.com/.*\.html -# ||finehub.com/p3.js (easylistchina+easylist.txt: 46416) -.finehub.com/p3\.js -# ||filthyrx.com/rx.js (easylistchina+easylist.txt: 46415) -.filthyrx.com/rx\.js -# ||filthyrx.com/inline.php? (easylistchina+easylist.txt: 46414) -.filthyrx.com/inline\.php\? -# ||filthyrx.com/images/porno/ (easylistchina+easylist.txt: 46413) -.filthyrx.com/images/porno/ -# ||fileshare.ro^*/dhtmlwindow.js (easylistchina+easylist.txt: 46412) -.fileshare.ro/.*/dhtmlwindow\.js -# ||fetishok.com/rec/$subdocument (easylistchina+easylist.txt: 46411) -.fetishok.com/rec/ -# ||fetishok.com/js/focus.$script (easylistchina+easylist.txt: 46410) -.fetishok.com/js/focus\. -# ||femdom-fetish-tube.com/popfemdom.js (easylistchina+easylist.txt: 46409) -.femdom-fetish-tube.com/popfemdom\.js -# ||fastpic.ru/js_h2.jpg (easylistchina+easylist.txt: 46408) -.fastpic.ru/js_h2\.jpg -# ||fastpic.ru/js_f2.jpg (easylistchina+easylist.txt: 46407) -.fastpic.ru/js_f2\.jpg -# ||fapdick.com/uploads/fap_ (easylistchina+easylist.txt: 46406) -.fapdick.com/uploads/fap_ -# ||fapdick.com/uploads/1fap_ (easylistchina+easylist.txt: 46405) -.fapdick.com/uploads/1fap_ -# ||fantasti.cc/_special/ (easylistchina+easylist.txt: 46404) -.fantasti.cc/_special/ -# ||extremetube.com/player_related? (easylistchina+easylist.txt: 46403) -.extremetube.com/player_related\? -# ||extreme-board.com/bannrs/ (easylistchina+easylist.txt: 46402) -.extreme-board.com/bannrs/ -# ||exit.macandbumble.com^ (easylistchina+easylist.txt: 46401) -.exit.macandbumble.com -# ||exhentai.net/img/aaf1.gif (easylistchina+easylist.txt: 46400) -.exhentai.net/img/aaf1\.gif -# ||eskimotube.com/kellyban.gif (easylistchina+easylist.txt: 46399) -.eskimotube.com/kellyban\.gif -# ||eroprofile.com/js/pu*.js (easylistchina+easylist.txt: 46398) -.eroprofile.com/js/pu.*\.js -# ||eporner.com^$subdocument,~third-party (easylistchina+easylist.txt: 46397) -.eporner.com -# ||eporner.com/pjsall-*.js (easylistchina+easylist.txt: 46396) -.eporner.com/pjsall-.*\.js -# ||eporner.com/dot/$script (easylistchina+easylist.txt: 46395) -.eporner.com/dot/ -# ||eporner.com/cppb/ (easylistchina+easylist.txt: 46394) -.eporner.com/cppb/ -# ||epicwank.com/social/jquery.stp.min.js (easylistchina+easylist.txt: 46393) -.epicwank.com/social/jquery\.stp\.min\.js -# ||entensity.net/crap/ (easylistchina+easylist.txt: 46392) -.entensity.net/crap/ -# ||empireamateurs.com/images/*banner (easylistchina+easylist.txt: 46391) -.empireamateurs.com/images/.*banner -# ||empflix.com/embedding_player/600x474_ (easylistchina+easylist.txt: 46390) -.empflix.com/embedding_player/600x474_ -# ||egoporn.com/videotop.gif (easylistchina+easylist.txt: 46389) -.egoporn.com/videotop\.gif -# ||egoporn.com/themagic.js (easylistchina+easylist.txt: 46388) -.egoporn.com/themagic\.js -# ||efukt.com^*.php$subdocument (easylistchina+easylist.txt: 46387) -.efukt.com/.*\.php -# ||eccie.net/eros/ (easylistchina+easylist.txt: 46386) -.eccie.net/eros/ -# ||eccie.net/buploads/ (easylistchina+easylist.txt: 46385) -.eccie.net/buploads/ -# ||easypic.com/js/easypicads.js (easylistchina+easylist.txt: 46384) -.easypic.com/js/easypicads\.js -# ||dusttube.com/pop*.js (easylistchina+easylist.txt: 46383) -.dusttube.com/pop.*\.js -# ||drtuber.com^*/aff_banner.swf (easylistchina+easylist.txt: 46382) -.drtuber.com/.*/aff_banner\.swf -# ||drtuber.com/templates/frontend/white/js/embed.js? (easylistchina+easylist.txt: 46381) -.drtuber.com/templates/frontend/white/js/embed\.js\? -# ||drtuber.com/promo/banners/ (easylistchina+easylist.txt: 46380) -.drtuber.com/promo/banners/ -# ||dronporn.com/tizer.html (easylistchina+easylist.txt: 46379) -.dronporn.com/tizer\.html -# ||dronporn.com/main-video-place.html (easylistchina+easylist.txt: 46378) -.dronporn.com/main-video-place\.html -# ||dot2.eporner.com^ (easylistchina+easylist.txt: 46377) -.dot2.eporner.com -# ||dot.eporner.com^ (easylistchina+easylist.txt: 46376) -.dot.eporner.com -# ||dominationtube.com/exit.js (easylistchina+easylist.txt: 46375) -.dominationtube.com/exit\.js -# ||dixyporn.com/include/ (easylistchina+easylist.txt: 46374) -.dixyporn.com/include/ -# ||dirtypriest.com/sexpics/ (easylistchina+easylist.txt: 46373) -.dirtypriest.com/sexpics/ -# ||dickbig.net/scr/ (easylistchina+easylist.txt: 46372) -.dickbig.net/scr/ -# ||diamond-tgp.com/fp.js (easylistchina+easylist.txt: 46371) -.diamond-tgp.com/fp\.js -# ||devatube.com/img/partners/ (easylistchina+easylist.txt: 46370) -.devatube.com/img/partners/ -# ||destroymilf.com/popup%20floater.js (easylistchina+easylist.txt: 46369) -.destroymilf.com/popup%20floater\.js -# ||depic.me/banners/ (easylistchina+easylist.txt: 46368) -.depic.me/banners/ -# ||deliciousbabes.org/media/banners/ (easylistchina+easylist.txt: 46367) -.deliciousbabes.org/media/banners/ -# ||deliciousbabes.org/banner/ (easylistchina+easylist.txt: 46366) -.deliciousbabes.org/banner/ -# ||definefetish.com/df/js/dpcm.js (easylistchina+easylist.txt: 46365) -.definefetish.com/df/js/dpcm\.js -# ||definebabe.com/sponsor/ (easylistchina+easylist.txt: 46364) -.definebabe.com/sponsor/ -# ||definebabe.com/db/js/pcme.js (easylistchina+easylist.txt: 46363) -.definebabe.com/db/js/pcme\.js -# ||definebabe.com/db/images/leftnav/webcams2.png (easylistchina+easylist.txt: 46362) -.definebabe.com/db/images/leftnav/webcams2\.png -# ||data18.com^*/banners/ (easylistchina+easylist.txt: 46361) -.data18.com/.*/banners/ -# ||damimage.com^*/DocaWedrOJPPx.png (easylistchina+easylist.txt: 46360) -.damimage.com/.*/DocaWedrOJPPx\.png -# ||creepshots.com^*/250x250_ (easylistchina+easylist.txt: 46359) -.creepshots.com/.*/250x250_ -# ||creatives.pichunter.com^ (easylistchina+easylist.txt: 46358) -.creatives.pichunter.com -# ||creatives.cliphunter.com^ (easylistchina+easylist.txt: 46357) -.creatives.cliphunter.com -# ||creampietubeporn.com/porn.html (easylistchina+easylist.txt: 46356) -.creampietubeporn.com/porn\.html -# ||creampietubeporn.com/ctp.html (easylistchina+easylist.txt: 46355) -.creampietubeporn.com/ctp\.html -# ||crazyshit.com/p0pzIn.js (easylistchina+easylist.txt: 46354) -.crazyshit.com/p0pzIn\.js -# ||crackwhoreconfessions.com/images/banners/ (easylistchina+easylist.txt: 46353) -.crackwhoreconfessions.com/images/banners/ -# ||coolmovs.com/rec/$subdocument (easylistchina+easylist.txt: 46352) -.coolmovs.com/rec/ -# ||coolmovs.com/js/focus.*.js (easylistchina+easylist.txt: 46351) -.coolmovs.com/js/focus\..*\.js -# ||comdotgame.com/vgirl/ (easylistchina+easylist.txt: 46350) -.comdotgame.com/vgirl/ -# ||clips-and-pics.org/clipsandpics.js (easylistchina+easylist.txt: 46349) -.clips-and-pics.org/clipsandpics\.js -# ||chubby-ocean.com/banner/ (easylistchina+easylist.txt: 46348) -.chubby-ocean.com/banner/ -# ||chanweb.info/en/adult/hc/local_include/ (easylistchina+easylist.txt: 46347) -.chanweb.info/en/adult/hc/local_include/ -# ||cfake.com/images/a/ (easylistchina+easylist.txt: 46346) -.cfake.com/images/a/ -# ||celebritypink.com/bannedcelebs- (easylistchina+easylist.txt: 46345) -.celebritypink.com/bannedcelebs- -# ||celeb.gate.cc/misc/event_*.js (easylistchina+easylist.txt: 46344) -.celeb.gate.cc/misc/event_.*\.js -# ||celeb.gate.cc/banner/ (easylistchina+easylist.txt: 46343) -.celeb.gate.cc/banner/ -# ||canadianhottie.ca/images/banners/ (easylistchina+easylist.txt: 46342) -.canadianhottie.ca/images/banners/ -# ||cameltoe.com^*/banners/ (easylistchina+easylist.txt: 46341) -.cameltoe.com/.*/banners/ -# ||bustnow.com^*/sponsors/ (easylistchina+easylist.txt: 46340) -.bustnow.com/.*/sponsors/ -# ||bustnow.com^*/999.js.php (easylistchina+easylist.txt: 46339) -.bustnow.com/.*/999\.js\.php -# ||bustnow.com/xv/x/002.php (easylistchina+easylist.txt: 46338) -.bustnow.com/xv/x/002\.php -# ||bustnow.com/xv/ad/ (easylistchina+easylist.txt: 46337) -.bustnow.com/xv/ad/ -# ||bunnylust.com/sponsors/ (easylistchina+easylist.txt: 46336) -.bunnylust.com/sponsors/ -# ||brcache.madthumbs.com^ (easylistchina+easylist.txt: 46335) -.brcache.madthumbs.com -# ||bravotube.net/if/$subdocument (easylistchina+easylist.txt: 46334) -.bravotube.net/if/ -# ||bravotube.net/dp.html (easylistchina+easylist.txt: 46333) -.bravotube.net/dp\.html -# ||bravotube.net/dd$subdocument (easylistchina+easylist.txt: 46332) -.bravotube.net/dd -# ||bralesscelebs.com/320x240ps.gif (easylistchina+easylist.txt: 46331) -.bralesscelebs.com/320x240ps\.gif -# ||bralesscelebs.com/160x600ps.gif (easylistchina+easylist.txt: 46330) -.bralesscelebs.com/160x600ps\.gif -# ||bralesscelebs.com/160x600hcp.gif (easylistchina+easylist.txt: 46329) -.bralesscelebs.com/160x600hcp\.gif -# ||bralesscelebs.com/*banner (easylistchina+easylist.txt: 46328) -.bralesscelebs.com/.*banner -# ||boobieblog.com/TilaTequilaBackdoorBanner2.jpg (easylistchina+easylist.txt: 46327) -.boobieblog.com/TilaTequilaBackdoorBanner2\.jpg -# ||boobieblog.com/submityourbitchbanner3.jpg (easylistchina+easylist.txt: 46326) -.boobieblog.com/submityourbitchbanner3\.jpg -# ||boneprone.com/premium.html (easylistchina+easylist.txt: 46325) -.boneprone.com/premium\.html -# ||bonbonsex.com/js/workhome.js (easylistchina+easylist.txt: 46324) -.bonbonsex.com/js/workhome\.js -# ||bonbonsex.com/js/dl/bottom.js (easylistchina+easylist.txt: 46323) -.bonbonsex.com/js/dl/bottom\.js -# ||bonbonme.com/js/rightbanner.js (easylistchina+easylist.txt: 46322) -.bonbonme.com/js/rightbanner\.js -# ||bonbonme.com/js/dticash/ (easylistchina+easylist.txt: 46321) -.bonbonme.com/js/dticash/ -# ||bonbonme.com/js/cams.js (easylistchina+easylist.txt: 46320) -.bonbonme.com/js/cams\.js -# ||bob.crazyshit.com^ (easylistchina+easylist.txt: 46319) -.bob.crazyshit.com -# ||blackredtube.com/fadebox2.js (easylistchina+easylist.txt: 46318) -.blackredtube.com/fadebox2\.js -# ||blackonasianblog.com/uploads/banners/ (easylistchina+easylist.txt: 46317) -.blackonasianblog.com/uploads/banners/ -# ||bigxvideos.com/rec/ (easylistchina+easylist.txt: 46316) -.bigxvideos.com/rec/ -# ||bigxvideos.com/js/popu. (easylistchina+easylist.txt: 46315) -.bigxvideos.com/js/popu\. -# ||bigxvideos.com/js/pops2. (easylistchina+easylist.txt: 46314) -.bigxvideos.com/js/pops2\. -# ||bigxvideos.com/js/focus.*.js (easylistchina+easylist.txt: 46313) -.bigxvideos.com/js/focus\..*\.js -# ||bigboobs.hu/banners/ (easylistchina+easylist.txt: 46312) -.bigboobs.hu/banners/ -# ||bellyboner.com/facebookchatlist.php (easylistchina+easylist.txt: 46311) -.bellyboner.com/facebookchatlist\.php -# ||befuck.com/js/adpbefuck (easylistchina+easylist.txt: 46310) -.befuck.com/js/adpbefuck -# ||befuck.com/befuck_html/ (easylistchina+easylist.txt: 46309) -.befuck.com/befuck_html/ -# ||banners.cams.com^ (easylistchina+easylist.txt: 46308) -.banners.cams.com -# ||banner1.pornhost.com^ (easylistchina+easylist.txt: 46307) -.banner1.pornhost.com -# ||bangyoulater.com/pages/aff.php (easylistchina+easylist.txt: 46306) -.bangyoulater.com/pages/aff\.php -# ||bangyoulater.com/images/banners_ (easylistchina+easylist.txt: 46305) -.bangyoulater.com/images/banners_ -# ||bagslap.com/*.html (easylistchina+easylist.txt: 46304) -.bagslap.com/.*\.html -# ||badjojo.com/js/scripts- (easylistchina+easylist.txt: 46303) -.badjojo.com/js/scripts- -# ||badjojo.com/b2s.php (easylistchina+easylist.txt: 46302) -.badjojo.com/b2s\.php -# ||babesmachine.com/html/ (easylistchina+easylist.txt: 46301) -.babesmachine.com/html/ -# ||babeshows.co.uk^*banner (easylistchina+easylist.txt: 46300) -.babeshows.co.uk/.*banner -# ||babeshows.co.uk/fvn53.jpg (easylistchina+easylist.txt: 46299) -.babeshows.co.uk/fvn53\.jpg -# ||babesandstars.com/thumbs/paysites/ (easylistchina+easylist.txt: 46298) -.babesandstars.com/thumbs/paysites/ -# ||babesandstars.com/images/a/ (easylistchina+easylist.txt: 46297) -.babesandstars.com/images/a/ -# ||babepicture.co.uk^*banner (easylistchina+easylist.txt: 46296) -.babepicture.co.uk/.*banner -# ||babedrop.com/babelogger_images/ (easylistchina+easylist.txt: 46295) -.babedrop.com/babelogger_images/ -# ||babblesex.com/js/misc.js (easylistchina+easylist.txt: 46294) -.babblesex.com/js/misc\.js -# ||axatube.com/dos.html (easylistchina+easylist.txt: 46293) -.axatube.com/dos\.html -# ||avn.com/templates/avnav/skins/ (easylistchina+easylist.txt: 46292) -.avn.com/templates/avnav/skins/ -# ||asspoint.com/images/banners/ (easylistchina+easylist.txt: 46291) -.asspoint.com/images/banners/ -# ||asianpornmovies.com/images/banners/ (easylistchina+easylist.txt: 46290) -.asianpornmovies.com/images/banners/ -# ||asgayas.com/popin.js (easylistchina+easylist.txt: 46289) -.asgayas.com/popin\.js -# ||asgayas.com/floater/ (easylistchina+easylist.txt: 46288) -.asgayas.com/floater/ -# ||asexstories.com/010ads/ (easylistchina+easylist.txt: 46287) -.asexstories.com/010ads/ -# ||arionmovies.com/*/popup.php (easylistchina+easylist.txt: 46286) -.arionmovies.com/.*/popup\.php -# ||anysex.com/content_sources/ (easylistchina+easylist.txt: 46285) -.anysex.com/content_sources/ -# ||anysex.com/b/ (easylistchina+easylist.txt: 46284) -.anysex.com/b/ -# ||angelshack.com/images/under-video.png (easylistchina+easylist.txt: 46283) -.angelshack.com/images/under-video\.png -# ||andtube.com/ban_ (easylistchina+easylist.txt: 46282) -.andtube.com/ban_ -# ||analtubegirls.com/js/realamateurtube.js (easylistchina+easylist.txt: 46281) -.analtubegirls.com/js/realamateurtube\.js -# ||analpornpix.com/agent.php? (easylistchina+easylist.txt: 46280) -.analpornpix.com/agent\.php\? -# ||amateurfarm.net/layer.js (easylistchina+easylist.txt: 46279) -.amateurfarm.net/layer\.js -# ||amateuralbum.net/affb.html (easylistchina+easylist.txt: 46278) -.amateuralbum.net/affb\.html -# ||amateur-streams.com^*/popup.js (easylistchina+easylist.txt: 46277) -.amateur-streams.com/.*/popup\.js -# ||amateur-desire.com/pics/sm_ (easylistchina+easylist.txt: 46276) -.amateur-desire.com/pics/sm_ -# ||amateur-desire.com/pics/724x90d.jpg (easylistchina+easylist.txt: 46275) -.amateur-desire.com/pics/724x90d\.jpg -# ||amadorastube.com^*/banner_ (easylistchina+easylist.txt: 46274) -.amadorastube.com/.*/banner_ -# ||alotporn.com^*/js/oopopw.js (easylistchina+easylist.txt: 46273) -.alotporn.com/.*/js/oopopw\.js -# ||alotporn.com/media/banners/ (easylistchina+easylist.txt: 46272) -.alotporn.com/media/banners/ -# ||alladultnetwork.tv/main/videoadroll.xml (easylistchina+easylist.txt: 46271) -.alladultnetwork.tv/main/videoadroll\.xml -# ||affiliates.goodvibes.com^ (easylistchina+easylist.txt: 46270) -.affiliates.goodvibes.com -# ||adultwork.com/images/AWBanners/ (easylistchina+easylist.txt: 46269) -.adultwork.com/images/AWBanners/ -# ||adultfyi.com/images/banners/ (easylistchina+easylist.txt: 46268) -.adultfyi.com/images/banners/ -# ||adultfilmdatabase.com/graphics/banners/ (easylistchina+easylist.txt: 46267) -.adultfilmdatabase.com/graphics/banners/ -# ||adultdvdtalk.com/studios/ (easylistchina+easylist.txt: 46266) -.adultdvdtalk.com/studios/ -# ||adult-sex-games.com/images/promo/ (easylistchina+easylist.txt: 46265) -.adult-sex-games.com/images/promo/ -# ||adult-profit-files.com/banner (easylistchina+easylist.txt: 46264) -.adult-profit-files.com/banner -# ||ads.xxxbunker.com^ (easylistchina+easylist.txt: 46263) -.ads.xxxbunker.com -# ||adrive.com/images/fc_banner.jpg (easylistchina+easylist.txt: 46262) -.adrive.com/images/fc_banner\.jpg -# ||ad.userporn.com^ (easylistchina+easylist.txt: 46261) -.ad.userporn.com -# ||ad.thisav.com^ (easylistchina+easylist.txt: 46260) -.ad.thisav.com -# ||ad.slutload.com^ (easylistchina+easylist.txt: 46259) -.ad.slutload.com -# ||ad.eporner.com^ (easylistchina+easylist.txt: 46258) -.ad.eporner.com -# ||absoluporn.com/code/pub/ (easylistchina+easylist.txt: 46257) -.absoluporn.com/code/pub/ -# ||abc-celebs.com/spons/ (easylistchina+easylist.txt: 46256) -.abc-celebs.com/spons/ -# ||a.killergram-girls.com^ (easylistchina+easylist.txt: 46255) -.a.killergram-girls.com -# ||a.heavy-r.com^ (easylistchina+easylist.txt: 46254) -.a.heavy-r.com -# ||a.eporner.com^ (easylistchina+easylist.txt: 46253) -.a.eporner.com -# ||64.62.202.124^*/cumlouder.jpg (easylistchina+easylist.txt: 46252) -.64.62.202.124/.*/cumlouder\.jpg -# ||5ilthy.com/porn.php (easylistchina+easylist.txt: 46251) -.5ilthy.com/porn\.php -# ||4ufrom.me/xpw.gif (easylistchina+easylist.txt: 46250) -.4ufrom.me/xpw\.gif -# ||3yen.com/wfn_ (easylistchina+easylist.txt: 46249) -.3yen.com/wfn_ -# ||3xupdate.com^*/ryusharepremium.gif (easylistchina+easylist.txt: 46248) -.3xupdate.com/.*/ryusharepremium\.gif -# ||3xupdate.com^*/ryushare2.gif (easylistchina+easylist.txt: 46247) -.3xupdate.com/.*/ryushare2\.gif -# ||3xupdate.com^*/ryushare.gif (easylistchina+easylist.txt: 46246) -.3xupdate.com/.*/ryushare\.gif -# ||3movs.com/contents/content_sources/ (easylistchina+easylist.txt: 46245) -.3movs.com/contents/content_sources/ -# ||2adultflashgames.com/teaser/teaser.swf (easylistchina+easylist.txt: 46244) -.2adultflashgames.com/teaser/teaser\.swf -# ||2adultflashgames.com/img/ (easylistchina+easylist.txt: 46243) -.2adultflashgames.com/img/ -# ||2adultflashgames.com/images/v12.gif (easylistchina+easylist.txt: 46242) -.2adultflashgames.com/images/v12\.gif -# ||24porn7.com/toonad/ (easylistchina+easylist.txt: 46241) -.24porn7.com/toonad/ -# ||24porn7.com/right3.php (easylistchina+easylist.txt: 46240) -.24porn7.com/right3\.php -# ||24porn7.com/odd.php (easylistchina+easylist.txt: 46239) -.24porn7.com/odd\.php -# ||24porn7.com/imads/ (easylistchina+easylist.txt: 46238) -.24porn7.com/imads/ -# ||24porn7.com/float/float_adplib.js (easylistchina+easylist.txt: 46237) -.24porn7.com/float/float_adplib\.js -# ||24porn7.com/ebanners/ (easylistchina+easylist.txt: 46236) -.24porn7.com/ebanners/ -# ||24porn7.com/banned/ (easylistchina+easylist.txt: 46235) -.24porn7.com/banned/ -# ||24porn7.com/300.php (easylistchina+easylist.txt: 46234) -.24porn7.com/300\.php -# ||24porn7.com/24roll.html (easylistchina+easylist.txt: 46233) -.24porn7.com/24roll\.html -# ||244pix.com/webop.jpg (easylistchina+easylist.txt: 46232) -.244pix.com/webop\.jpg -# ||213.174.140.38/bftv/js/msn- (easylistchina+easylist.txt: 46230) -.213.174.140.38/bftv/js/msn- -# ||ziddu.com/onclickpop.php$popup (easylistchina+easylist.txt: 46218) -.ziddu.com/onclickpop\.php -# ||youwatch.org^*^crr^$popup (easylistchina+easylist.txt: 46216) -.youwatch.org/.*[^\w%.-]crr[^\w%.-] -# ||youwatch.org^*^ban^$popup (easylistchina+easylist.txt: 46215) -.youwatch.org/.*[^\w%.-]ban[^\w%.-] -# ||youwatch.org/vids*.html$popup (easylistchina+easylist.txt: 46214) -.youwatch.org/vids.*\.html -# ||yasni.ca/ad_pop.php$popup (easylistchina+easylist.txt: 46213) -.yasni.ca/ad_pop\.php -# ||whies.info^$popup (easylistchina+easylist.txt: 46212) -.whies.info -# ||watch-movies.net.in/popup.php$popup (easylistchina+easylist.txt: 46209) -.watch-movies.net.in/popup\.php -# ||vodu.ch/play_video.php$popup (easylistchina+easylist.txt: 46208) -.vodu.ch/play_video\.php -# ||virtualtourist.com/commerce/popunder/$popup (easylistchina+easylist.txt: 46207) -.virtualtourist.com/commerce/popunder/ -# ||vidspot.net^*http$popup (easylistchina+easylist.txt: 46206) -.vidspot.net/.*http -# ||vidhog.com/ilivid-redirect.php$popup (easylistchina+easylist.txt: 46205) -.vidhog.com/ilivid-redirect\.php -# ||tripadvisor.*/SimilarHotelsPopunder?$popup (easylistchina+easylist.txt: 46203) -.tripadvisor.*./(.*/)?SimilarHotelsPopunder\? -# ||tripadvisor.*/rulebasedpopunder?$popup (easylistchina+easylist.txt: 46202) -.tripadvisor.*./(.*/)?rulebasedpopunder\? -# ||trans.youwatch.org^$popup (easylistchina+easylist.txt: 46201) -.trans.youwatch.org -# ||tozer.youwatch.org^$popup (easylistchina+easylist.txt: 46200) -.tozer.youwatch.org -# ||torrentz.eu/p/$popup (easylistchina+easylist.txt: 46199) -.torrentz.eu/p/ -# ||torrentz.*/wgmpop/$popup (easylistchina+easylist.txt: 46198) -.torrentz.*./(.*/)?wgmpop/ -# ||torrentz.*/mgidpop/$popup (easylistchina+easylist.txt: 46197) -.torrentz.*./(.*/)?mgidpop/ -# ||tny.cz/red/first.php$popup (easylistchina+easylist.txt: 46195) -.tny.cz/red/first\.php -# ||titanshare.to/download-extern.php?type=*&n=$popup (easylistchina+easylist.txt: 46194) -.titanshare.to/download-extern\.php\?type=.*&n= -# ||thevideo.me/script/$popup (easylistchina+easylist.txt: 46192) -.thevideo.me/script/ -# ||thesource.com/magicshave/$popup (easylistchina+easylist.txt: 46191) -.thesource.com/magicshave/ -# ||subs4free.com/_pop_link.php$popup (easylistchina+easylist.txt: 46189) -.subs4free.com/_pop_link\.php -# ||streamtunerhd.com/signup?$popup,third-party (easylistchina+easylist.txt: 46188) -.streamtunerhd.com/signup\? -# ||streamcloud.eu/deliver.php$popup (easylistchina+easylist.txt: 46187) -.streamcloud.eu/deliver\.php -# ||sponsorselect.com/Common/LandingPage.aspx?eu=$popup (easylistchina+easylist.txt: 46186) -.sponsorselect.com/Common/LandingPage\.aspx\?eu= -# ||songspk.cc/pop*.html$popup (easylistchina+easylist.txt: 46184) -.songspk.cc/pop.*\.html -# ||rediff.com/uim/ads/$popup (easylistchina+easylist.txt: 46179) -.rediff.com/uim/ads/ -# ||pop.billionuploads.com^$popup (easylistchina+easylist.txt: 46177) -.pop.billionuploads.com -# ||playhd.eu/test$popup (easylistchina+easylist.txt: 46176) -.playhd.eu/test -# ||plarium.com/play/*adCampaign=$popup (easylistchina+easylist.txt: 46175) -.plarium.com/play/.*adCampaign= -# ||park.above.com^$popup (easylistchina+easylist.txt: 46173) -.park.above.com -# ||oddschecker.com/clickout.htm?type=takeover-$popup (easylistchina+easylist.txt: 46171) -.oddschecker.com/clickout\.htm\?type=takeover- -# ||nosteam.ro/pma/$popup (easylistchina+easylist.txt: 46170) -.nosteam.ro/pma/ -# ||multiupload.nl/popunder/$popup (easylistchina+easylist.txt: 46167) -.multiupload.nl/popunder/ -# ||miniurls.co^*?ref=$popup (easylistchina+easylist.txt: 46166) -.miniurls.co/.*\?ref= -# ||military.com/data/popup/new_education_popunder.htm$popup (easylistchina+easylist.txt: 46165) -.military.com/data/popup/new_education_popunder\.htm -# ||linkbucks.com^*/?*=$popup (easylistchina+easylist.txt: 46164) -.linkbucks.com/.*/\?.*= -# ||itv.com/itv/adclick/$popup (easylistchina+easylist.txt: 46158) -.itv.com/itv/adclick/ -# ||intradayfun.com/news_intradayfun.com.html$popup (easylistchina+easylist.txt: 46157) -.intradayfun.com/news_intradayfun\.com\.html -# ||imageshack.us/newuploader_ad.php$popup (easylistchina+easylist.txt: 46156) -.imageshack.us/newuploader_ad\.php -# ||imageshack.us/ads/$popup (easylistchina+easylist.txt: 46155) -.imageshack.us/ads/ -# ||ifly.com/trip-plan/ifly-trip?*&ad=$popup (easylistchina+easylist.txt: 46154) -.ifly.com/trip-plan/ifly-trip\?.*&ad= -# ||houndmirror.com/out.php$popup (easylistchina+easylist.txt: 46152) -.houndmirror.com/out\.php -# ||homets.info/queen_file?$popup (easylistchina+easylist.txt: 46151) -.homets.info/queen_file\? -# ||homerun.re/adServe/$popup (easylistchina+easylist.txt: 46150) -.homerun.re/adServe/ -# ||gamezadvisor.com/popup.php$popup (easylistchina+easylist.txt: 46145) -.gamezadvisor.com/popup\.php -# ||fullonsms.com/sid.html$popup (easylistchina+easylist.txt: 46144) -.fullonsms.com/sid\.html -# ||fullonsms.com/quikrad.html$popup (easylistchina+easylist.txt: 46143) -.fullonsms.com/quikrad\.html -# ||fullonsms.com/quikr.html$popup (easylistchina+easylist.txt: 46142) -.fullonsms.com/quikr\.html -# ||fullonsms.com/mixpop.html$popup (easylistchina+easylist.txt: 46141) -.fullonsms.com/mixpop\.html -# ||fullonsms.com/blank.php$popup (easylistchina+easylist.txt: 46140) -.fullonsms.com/blank\.php -# ||freean.us^*?ref=$popup (easylistchina+easylist.txt: 46139) -.freean.us/.*\?ref= -# ||free-filehost.net/pop/$popup (easylistchina+easylist.txt: 46137) -.free-filehost.net/pop/ -# ||flashx.tv/frame/$popup (easylistchina+easylist.txt: 46136) -.flashx.tv/frame/ -# ||flashx.tv/ads/$popup (easylistchina+easylist.txt: 46135) -.flashx.tv/ads/ -# ||firedrive.com/tools/$popup (easylistchina+easylist.txt: 46134) -.firedrive.com/tools/ -# ||firedrive.com/appresources/$popup (easylistchina+easylist.txt: 46133) -.firedrive.com/appresources/ -# ||filmon.com^*&adn=$popup (easylistchina+easylist.txt: 46130) -.filmon.com/.*&adn= -# ||filepost.com/default_popup.html$popup (easylistchina+easylist.txt: 46129) -.filepost.com/default_popup\.html -# ||f-picture.net/Misc/JumpClick?$popup (easylistchina+easylist.txt: 46127) -.f-picture.net/Misc/JumpClick\? -# ||exashare.com^*&h=$popup,~third-party (easylistchina+easylist.txt: 46126) -.exashare.com/.*&h= -# ||edomz.com/re.php?mid=$popup (easylistchina+easylist.txt: 46125) -.edomz.com/re\.php\?mid= -# ||eafyfsuh.net^*/?name=$popup (easylistchina+easylist.txt: 46124) -.eafyfsuh.net/.*/\?name= -# ||deb.gs^*?ref=$popup (easylistchina+easylist.txt: 46123) -.deb.gs/.*\?ref= -# ||damoh.muzu.tv^$popup (easylistchina+easylist.txt: 46122) -.damoh.muzu.tv -# ||conservativepost.com/pu/$popup (easylistchina+easylist.txt: 46121) -.conservativepost.com/pu/ -# ||comicbookmovie.com/plugins/ads/$popup (easylistchina+easylist.txt: 46120) -.comicbookmovie.com/plugins/ads/ -# ||cloudzilla.to/cam/wpop.php$popup (easylistchina+easylist.txt: 46119) -.cloudzilla.to/cam/wpop\.php -# ||channel4.com/ad/$popup (easylistchina+easylist.txt: 46117) -.channel4.com/ad/ -# ||casino-x.com^*&promo$popup (easylistchina+easylist.txt: 46116) -.casino-x.com/.*&promo -# ||avalanchers.com/out/$popup (easylistchina+easylist.txt: 46112) -.avalanchers.com/out/ -# ||allmyvideos.net^*?p=$popup (easylistchina+easylist.txt: 46111) -.allmyvideos.net/.*\?p= -# ||adyou.me/bug/adcash$popup (easylistchina+easylist.txt: 46109) -.adyou.me/bug/adcash -# ||adx.kat.ph^$popup (easylistchina+easylist.txt: 46108) -.adx.kat.ph -# ||4fuckr.com/api.php$popup (easylistchina+easylist.txt: 46106) -.4fuckr.com/api\.php -# ||104.239.139.5/display/$popup (easylistchina+easylist.txt: 46105) -.104.239.139.5/display/ -# ||ytconv.net/site/adblock_detect (easylistchina+easylist.txt: 46096) -.ytconv.net/site/adblock_detect -# ||watchfreeinhd.com/js/adblocker.js (easylistchina+easylist.txt: 46095) -.watchfreeinhd.com/js/adblocker\.js -# ||vapingunderground.com/js/vapingunderground/fucking_adblock.js (easylistchina+easylist.txt: 46094) -.vapingunderground.com/js/vapingunderground/fucking_adblock\.js -# ||sportspyder.com/assets/application-$script (easylistchina+easylist.txt: 46092) -.sportspyder.com/assets/application- -# ||nintendolife.com^*/adblock.jpg (easylistchina+easylist.txt: 46085) -.nintendolife.com/.*/adblock\.jpg -# ||joindota.com/img/*MR_$image (easylistchina+easylist.txt: 46084) -.joindota.com/img/.*MR_ -# ||joindota.com/img/*LB_$image (easylistchina+easylist.txt: 46083) -.joindota.com/img/.*LB_ -# ||http.anno.channel4.com*_*_*_ (easylistchina+easylist.txt: 46082) -.http.anno.channel4.com*./.*_.*_.*_ -# ||http.anno.channel4.com*- (easylistchina+easylist.txt: 46081) -.http.anno.channel4.com*./.*- -.http.anno.channel4.com*-*. -# ||getdebrid.com/blocker.js (easylistchina+easylist.txt: 46079) -.getdebrid.com/blocker\.js -# ||channel4.com^*.tidaltv.com$object-subrequest (easylistchina+easylist.txt: 46078) -.channel4.com/.*\.tidaltv\.com -# ||channel4.com^*.innovid.com$object-subrequest (easylistchina+easylist.txt: 46077) -.channel4.com/.*\.innovid\.com -# ||www.infowars.com/*.png$image (easylistchina+easylist.txt: 46067) -.www.infowars.com/.*\.png -# ||thegatewaypundit.com^*.png$image (easylistchina+easylist.txt: 46066) -.thegatewaypundit.com/.*\.png -# ||supercheats.com/js/yavli.js (easylistchina+easylist.txt: 46065) -.supercheats.com/js/yavli\.js -# ||cheatsheet.com^$image,~third-party (easylistchina+easylist.txt: 46064) -.cheatsheet.com -# /\.sharesix\.com/.*[a-zA-Z0-9]{4}/$script (easylistchina+easylist.txt: 45928) -/(.*/)?\\\.sharesix\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.sharesix\.com/.*[a-zA-Z0-9]{4} -# /\.filenuke\.com/.*[a-zA-Z0-9]{4}/$script (easylistchina+easylist.txt: 45927) -/(.*/)?\\\.filenuke\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.filenuke\.com/.*[a-zA-Z0-9]{4} -# ||zurrieqfc.com/images/banners/ (easylistchina+easylist.txt: 45833) -.zurrieqfc.com/images/banners/ -# ||zshares.net/fm.html (easylistchina+easylist.txt: 45832) -.zshares.net/fm\.html -# ||zpag.es/b/ (easylistchina+easylist.txt: 45831) -.zpag.es/b/ -# ||zorrovpn.com/static/img/promo/ (easylistchina+easylist.txt: 45830) -.zorrovpn.com/static/img/promo/ -# ||zophar.net/files/tf_ (easylistchina+easylist.txt: 45829) -.zophar.net/files/tf_ -# ||zoozle.org/if.php?q= (easylistchina+easylist.txt: 45828) -.zoozle.org/if\.php\?q= -# ||zoover.*/shared/bannerpages/darttagsbanner.aspx? (easylistchina+easylist.txt: 45827) -.zoover.*./(.*/)?shared/bannerpages/darttagsbanner\.aspx\? -# ||zootoday.com/pub/21publish/Zoo-navtop-poker.gif (easylistchina+easylist.txt: 45826) -.zootoday.com/pub/21publish/Zoo-navtop-poker\.gif -# ||zootoday.com/pub/21publish/Zoo-navtop-casino_ (easylistchina+easylist.txt: 45825) -.zootoday.com/pub/21publish/Zoo-navtop-casino_ -# ||zoomin.tv/decagonhandler/ (easylistchina+easylist.txt: 45824) -.zoomin.tv/decagonhandler/ -# ||zoneradio.co.za/img/banners/ (easylistchina+easylist.txt: 45823) -.zoneradio.co.za/img/banners/ -# ||zonein.tv/add$subdocument (easylistchina+easylist.txt: 45822) -.zonein.tv/add -# ||zomobo.net/images/removeads.png (easylistchina+easylist.txt: 45821) -.zomobo.net/images/removeads\.png -# ||zombiegamer.co.za/wp-content/uploads/*-skin- (easylistchina+easylist.txt: 45820) -.zombiegamer.co.za/wp-content/uploads/.*-skin- -# ||zipcode.org/site_images/flash/zip_v.swf (easylistchina+easylist.txt: 45819) -.zipcode.org/site_images/flash/zip_v\.swf -# ||zigzag.co.za/images/oww- (easylistchina+easylist.txt: 45818) -.zigzag.co.za/images/oww- -# ||ziddu.com/images/wxdfast/ (easylistchina+easylist.txt: 45817) -.ziddu.com/images/wxdfast/ -# ||ziddu.com/images/globe7.gif (easylistchina+easylist.txt: 45816) -.ziddu.com/images/globe7\.gif -# ||ziddu.com/images/140x150_egglad.gif (easylistchina+easylist.txt: 45815) -.ziddu.com/images/140x150_egglad\.gif -# ||zeropaid.com^*/94.jpg (easylistchina+easylist.txt: 45814) -.zeropaid.com/.*/94\.jpg -# ||zeropaid.com/images/ (easylistchina+easylist.txt: 45813) -.zeropaid.com/images/ -# ||zerochan.net/skyscraper.html (easylistchina+easylist.txt: 45812) -.zerochan.net/skyscraper\.html -# ||zeetvusa.com/images/SevaWeb.gif (easylistchina+easylist.txt: 45811) -.zeetvusa.com/images/SevaWeb\.gif -# ||zeetvusa.com/images/hightlow.jpg (easylistchina+easylist.txt: 45810) -.zeetvusa.com/images/hightlow\.jpg -# ||zeetvusa.com/images/CARIBBEN.jpg (easylistchina+easylist.txt: 45809) -.zeetvusa.com/images/CARIBBEN\.jpg -# ||zbc.co.zw^*/banners/ (easylistchina+easylist.txt: 45808) -.zbc.co.zw/.*/banners/ -# ||zawya.com/brands/ (easylistchina+easylist.txt: 45807) -.zawya.com/brands/ -# ||zawya.com/ads/ (easylistchina+easylist.txt: 45806) -.zawya.com/ads/ -# ||zattoo.com/ads/ (easylistchina+easylist.txt: 45805) -.zattoo.com/ads/ -# ||zap2it.com/wp-content/themes/overmind/js/zcode- (easylistchina+easylist.txt: 45804) -.zap2it.com/wp-content/themes/overmind/js/zcode- -# ||zanews.co.za^*/banners/ (easylistchina+easylist.txt: 45803) -.zanews.co.za/.*/banners/ -# ||zamimg.com/shared/minifeatures/ (easylistchina+easylist.txt: 45802) -.zamimg.com/shared/minifeatures/ -# ||zamimg.com/images/skins/ (easylistchina+easylist.txt: 45801) -.zamimg.com/images/skins/ -# ||zambiz.co.zm/banners/ (easylistchina+easylist.txt: 45800) -.zambiz.co.zm/banners/ -# ||zam.com/i/promos/*-skin. (easylistchina+easylist.txt: 45799) -.zam.com/i/promos/.*-skin\. -# ||zads.care2.com^ (easylistchina+easylist.txt: 45798) -.zads.care2.com -# ||zabasearch.com/search_box.php?*&adword= (easylistchina+easylist.txt: 45797) -.zabasearch.com/search_box\.php\?.*&adword= -# ||yudu.com^*_intro_ads (easylistchina+easylist.txt: 45796) -.yudu.com/.*_intro_ads -# ||ytmnd.com/ugh (easylistchina+easylist.txt: 45795) -.ytmnd.com/ugh -# ||ysm.yahoo.com^ (easylistchina+easylist.txt: 45791) -.ysm.yahoo.com -# ||yrt7dgkf.exashare.com^ (easylistchina+easylist.txt: 45790) -.yrt7dgkf.exashare.com -# ||yp.mo^*/ads/ (easylistchina+easylist.txt: 45789) -.yp.mo/.*/ads/ -# ||youwatch.org/vod-str.html (easylistchina+easylist.txt: 45788) -.youwatch.org/vod-str\.html -# ||youwatch.org/iframe1.html (easylistchina+easylist.txt: 45787) -.youwatch.org/iframe1\.html -# ||youwatch.org/driba.html (easylistchina+easylist.txt: 45786) -.youwatch.org/driba\.html -# ||youwatch.org/9elawi.html (easylistchina+easylist.txt: 45785) -.youwatch.org/9elawi\.html -# ||youtubeproxy.pk/images/lahore.jpg (easylistchina+easylist.txt: 45784) -.youtubeproxy.pk/images/lahore\.jpg -# ||youtubeproxy.pk/images/Lahore.fm.jpg (easylistchina+easylist.txt: 45783) -.youtubeproxy.pk/images/Lahore\.fm\.jpg -# ||youtubeproxy.pk/images/Indiansongs.pk.jpg (easylistchina+easylist.txt: 45782) -.youtubeproxy.pk/images/Indiansongs\.pk\.jpg -# ||youtube-mp3.org/acode/ (easylistchina+easylist.txt: 45780) -.youtube-mp3.org/acode/ -# ||youserials.com/i/banner_pos.jpg (easylistchina+easylist.txt: 45779) -.youserials.com/i/banner_pos\.jpg -# ||yourwire.net/images/refssder.gif (easylistchina+easylist.txt: 45778) -.yourwire.net/images/refssder\.gif -# ||yourradioplace.com/images/banners/ (easylistchina+easylist.txt: 45777) -.yourradioplace.com/images/banners/ -# ||yourradioplace.com//images/banners/ (easylistchina+easylist.txt: 45776) -# ||yourmuze.fm/images/banner_ym.png (easylistchina+easylist.txt: 45775) -.yourmuze.fm/images/banner_ym\.png -# ||yourmuze.fm/images/audionow.png (easylistchina+easylist.txt: 45774) -.yourmuze.fm/images/audionow\.png -# ||yourmovies.com.au^*/side_panels_ (easylistchina+easylist.txt: 45773) -.yourmovies.com.au/.*/side_panels_ -# ||yourindustrynews.com/ads/ (easylistchina+easylist.txt: 45772) -.yourindustrynews.com/ads/ -# ||yourfilehost.com/ads/ (easylistchina+easylist.txt: 45771) -.yourfilehost.com/ads/ -# ||yourepeat.com^*/skins/ (easylistchina+easylist.txt: 45770) -.yourepeat.com/.*/skins/ -# ||yourepeat.com/revive_wrapper? (easylistchina+easylist.txt: 45769) -.yourepeat.com/revive_wrapper\? -# ||yourbittorrent.com/images/lumovies.js (easylistchina+easylist.txt: 45768) -.yourbittorrent.com/images/lumovies\.js -# ||yourbittorrent.com/downloadnow.png (easylistchina+easylist.txt: 45767) -.yourbittorrent.com/downloadnow\.png -# ||youngrider.com/images/sponsorships/ (easylistchina+easylist.txt: 45766) -.youngrider.com/images/sponsorships/ -# ||youconvertit.com/_images/*ad.png (easylistchina+easylist.txt: 45765) -.youconvertit.com/_images/.*ad\.png -# ||yorkshirecoastradio.com/resources/creative/ (easylistchina+easylist.txt: 45764) -.yorkshirecoastradio.com/resources/creative/ -# ||yopmail.com/fbd.js (easylistchina+easylist.txt: 45763) -.yopmail.com/fbd\.js -# ||yomzansi.com^*-300x250. (easylistchina+easylist.txt: 45762) -.yomzansi.com/.*-300x250\. -# ||ynaija.com^*300X300 (easylistchina+easylist.txt: 45760) -.ynaija.com/.*300X300 -# ||ynaija.com^*300x250 (easylistchina+easylist.txt: 45759) -.ynaija.com/.*300x250 -# ||ynaija.com^*/ad. (easylistchina+easylist.txt: 45758) -.ynaija.com/.*/ad\. -# ||yimg.com^*/yad.html (easylistchina+easylist.txt: 45753) -.yimg.com/.*/yad\.html -# ||yimg.com^*/flash/promotions/ (easylistchina+easylist.txt: 45750) -.yimg.com/.*/flash/promotions/ -# ||yimg.com^*/fairfax/$image (easylistchina+easylist.txt: 45749) -.yimg.com/.*/fairfax/ -# ||yimg.com/a/1-$~stylesheet (easylistchina+easylist.txt: 45734) -.yimg.com/a/1- -# ||yimg.com/*300x250$image,object (easylistchina+easylist.txt: 45733) -.yimg.com/.*300x250 -# ||yfrog.com/ym.php? (easylistchina+easylist.txt: 45732) -.yfrog.com/ym\.php\? -# ||yfrog.com/images/weezer-bloggie-bg.png (easylistchina+easylist.txt: 45731) -.yfrog.com/images/weezer-bloggie-bg\.png -# ||yfrog.com/images/contests/ (easylistchina+easylist.txt: 45730) -.yfrog.com/images/contests/ -# ||yfmghana.com/images/banners/ (easylistchina+easylist.txt: 45729) -.yfmghana.com/images/banners/ -# ||yesbeby.whies.info^ (easylistchina+easylist.txt: 45728) -.yesbeby.whies.info -# ||yellowpageskenya.com/sponsored/ (easylistchina+easylist.txt: 45727) -.yellowpageskenya.com/sponsored/ -# ||yellowpages.ly^*/sponsors/ (easylistchina+easylist.txt: 45726) -.yellowpages.ly/.*/sponsors/ -# ||yellowpages.ly/user_media/banner/ (easylistchina+easylist.txt: 45725) -.yellowpages.ly/user_media/banner/ -# ||yellowpages.com.lb/uploaded/banners/ (easylistchina+easylist.txt: 45724) -.yellowpages.com.lb/uploaded/banners/ -# ||yellowpages.com.jo/banners/ (easylistchina+easylist.txt: 45723) -.yellowpages.com.jo/banners/ -# ||yellowpages.ae/UI/WM/ (easylistchina+easylist.txt: 45722) -.yellowpages.ae/UI/WM/ -# ||yellowpages.ae/UI/WA/ (easylistchina+easylist.txt: 45721) -.yellowpages.ae/UI/WA/ -# ||yellowpages.ae/UI/ST/ (easylistchina+easylist.txt: 45720) -.yellowpages.ae/UI/ST/ -# ||yellowpages.ae/UI/SR/ (easylistchina+easylist.txt: 45719) -.yellowpages.ae/UI/SR/ -# ||yellowpages.ae/UI/MR/ (easylistchina+easylist.txt: 45718) -.yellowpages.ae/UI/MR/ -# ||yellowpages.ae/UI/LB/ (easylistchina+easylist.txt: 45717) -.yellowpages.ae/UI/LB/ -# ||yellowpages.ae/UI/FC/ (easylistchina+easylist.txt: 45716) -.yellowpages.ae/UI/FC/ -# ||yellowpage-jp.com/images/banners/ (easylistchina+easylist.txt: 45715) -.yellowpage-jp.com/images/banners/ -# ||yellow.co.ke/img/top_banner/ (easylistchina+easylist.txt: 45714) -.yellow.co.ke/img/top_banner/ -# ||yellow.co.ke/img/right_side/ (easylistchina+easylist.txt: 45713) -.yellow.co.ke/img/right_side/ -# ||yellow.co.ke/img/left_side/ (easylistchina+easylist.txt: 45712) -.yellow.co.ke/img/left_side/ -# ||yea.uploadimagex.com^ (easylistchina+easylist.txt: 45711) -.yea.uploadimagex.com -# ||yavideo.tv/ajaxlog.txt? (easylistchina+easylist.txt: 45710) -.yavideo.tv/ajaxlog\.txt\? -# ||yasni.*/design/relaunch/gfx/elitepartner_ (easylistchina+easylist.txt: 45709) -.yasni.*./(.*/)?design/relaunch/gfx/elitepartner_ -# ||yarisworld.com^*/banners/ (easylistchina+easylist.txt: 45708) -.yarisworld.com/.*/banners/ -# ||yardbarker.com/asset/asset_source/*?ord=$subdocument (easylistchina+easylist.txt: 45707) -.yardbarker.com/asset/asset_source/.*\?ord= -# ||yamivideo.com^*/download_video.jpg (easylistchina+easylist.txt: 45706) -.yamivideo.com/.*/download_video\.jpg -# ||yamgo.mobi/images/banner/ (easylistchina+easylist.txt: 45705) -.yamgo.mobi/images/banner/ -# ||yahoo.com^*/eyc-themis? (easylistchina+easylist.txt: 45704) -.yahoo.com/.*/eyc-themis\? -# ||yahoo.com/ysmload.html? (easylistchina+easylist.txt: 45703) -.yahoo.com/ysmload\.html\? -# ||yahoo.com/sdarla/ (easylistchina+easylist.txt: 45702) -.yahoo.com/sdarla/ -# ||yahoo.com/neo/darla/ (easylistchina+easylist.txt: 45701) -.yahoo.com/neo/darla/ -# ||yahoo.com/livewords/ (easylistchina+easylist.txt: 45700) -.yahoo.com/livewords/ -# ||yahoo.com/darla/ (easylistchina+easylist.txt: 45699) -.yahoo.com/darla/ -# ||yahoo.com/contextual-shortcuts (easylistchina+easylist.txt: 45698) -.yahoo.com/contextual-shortcuts -# ||yahoo.com/__darla/ (easylistchina+easylist.txt: 45697) -.yahoo.com/__darla/ -# ||yahoo.*/serv?s= (easylistchina+easylist.txt: 45696) -.yahoo.*./(.*/)?serv\?s= -# ||xup.in/layer.php (easylistchina+easylist.txt: 45695) -.xup.in/layer\.php -# ||xtremesystems.org/forums/brotator/ (easylistchina+easylist.txt: 45694) -.xtremesystems.org/forums/brotator/ -# ||xsreviews.co.uk/style/bgg2.jpg (easylistchina+easylist.txt: 45693) -.xsreviews.co.uk/style/bgg2\.jpg -# ||xscores.com/livescore/banners/ (easylistchina+easylist.txt: 45692) -.xscores.com/livescore/banners/ -# ||xoops-theme.com/images/banners/ (easylistchina+easylist.txt: 45691) -.xoops-theme.com/images/banners/ -# ||xomreviews.com/sponsors/ (easylistchina+easylist.txt: 45690) -.xomreviews.com/sponsors/ -# ||xiaopan.co/Reaver.png (easylistchina+easylist.txt: 45689) -.xiaopan.co/Reaver\.png -# ||xboxgaming.co.za^*/images/background/ (easylistchina+easylist.txt: 45688) -.xboxgaming.co.za/.*/images/background/ -# ||xbox-scene.com/crave/logo_on_white_s160.jpg (easylistchina+easylist.txt: 45687) -.xbox-scene.com/crave/logo_on_white_s160\.jpg -# ||xbox-hq.com/html/images/banners/ (easylistchina+easylist.txt: 45686) -.xbox-hq.com/html/images/banners/ -# ||xbitlabs.com/images/banners/ (easylistchina+easylist.txt: 45685) -.xbitlabs.com/images/banners/ -# ||xbitlabs.com/cms/module_banners/ (easylistchina+easylist.txt: 45684) -.xbitlabs.com/cms/module_banners/ -# ||x.castanet.net^ (easylistchina+easylist.txt: 45683) -.x.castanet.net -# ||www2.sys-con.com^*.cfm (easylistchina+easylist.txt: 45682) -.www2.sys-con.com/.*\.cfm -# ||wwbf.com/b/topbanner.htm (easylistchina+easylist.txt: 45681) -.wwbf.com/b/topbanner\.htm -# ||wwaytv3.com^*/curlypage.js (easylistchina+easylist.txt: 45680) -.wwaytv3.com/.*/curlypage\.js -# ||wvbr.com/images/banner/ (easylistchina+easylist.txt: 45679) -.wvbr.com/images/banner/ -# ||wunderground.com^*/wuss_300ad2.php? (easylistchina+easylist.txt: 45678) -.wunderground.com/.*/wuss_300ad2\.php\? -# ||wunderground.com/geo/swfad/ (easylistchina+easylist.txt: 45677) -.wunderground.com/geo/swfad/ -# ||wttrend.com/images/hs.jpg (easylistchina+easylist.txt: 45676) -.wttrend.com/images/hs\.jpg -# ||wsj.net/internal/krux.js (easylistchina+easylist.txt: 45675) -.wsj.net/internal/krux\.js -# ||wshh.me/vast/ (easylistchina+easylist.txt: 45674) -.wshh.me/vast/ -# ||wrmf.com/upload/*_Webskin_ (easylistchina+easylist.txt: 45673) -.wrmf.com/upload/.*_Webskin_ -# ||wrlr.fm/images/banners/ (easylistchina+easylist.txt: 45672) -.wrlr.fm/images/banners/ -# ||wrko.com^*/sponsors/ (easylistchina+easylist.txt: 45671) -.wrko.com/.*/sponsors/ -# ||wrko.com/sites/wrko.com/files/poll/*_285x95.jpg (easylistchina+easylist.txt: 45670) -.wrko.com/sites/wrko\.com/files/poll/.*_285x95\.jpg -# ||wrcjfm.org/images/banners/ (easylistchina+easylist.txt: 45669) -.wrcjfm.org/images/banners/ -# ||wrc.com/swf/homeclock_edox_hori.swf (easylistchina+easylist.txt: 45668) -.wrc.com/swf/homeclock_edox_hori\.swf -# ||wrc.com/img/sponsors- (easylistchina+easylist.txt: 45667) -.wrc.com/img/sponsors- -# ||wranglerforum.com/images/sponsor/ (easylistchina+easylist.txt: 45666) -.wranglerforum.com/images/sponsor/ -# ||wqxe.com/images/sponsors/ (easylistchina+easylist.txt: 45665) -.wqxe.com/images/sponsors/ -# ||wqam.com/partners/ (easylistchina+easylist.txt: 45664) -.wqam.com/partners/ -# ||wqah.com/images/banners/ (easylistchina+easylist.txt: 45663) -.wqah.com/images/banners/ -# ||wptmag.com/promo/ (easylistchina+easylist.txt: 45662) -.wptmag.com/promo/ -# ||wpdaddy.com^*/banners/ (easylistchina+easylist.txt: 45661) -.wpdaddy.com/.*/banners/ -# ||wpcv.com/includes/header_banner.htm (easylistchina+easylist.txt: 45660) -.wpcv.com/includes/header_banner\.htm -# ||wp.com/wp-content/themes/vip/tctechcrunch/images/tc_*_skin.jpg (easylistchina+easylist.txt: 45654) -.wp.com/wp-content/themes/vip/tctechcrunch/images/tc_.*_skin\.jpg -# ||wowwiki.com/__varnish_ (easylistchina+easylist.txt: 45653) -.wowwiki.com/__varnish_ -# ||wowhead.com/uploads/skins/$image (easylistchina+easylist.txt: 45652) -.wowhead.com/uploads/skins/ -# ||worthofweb.com/images/wow-ad- (easylistchina+easylist.txt: 45651) -.worthofweb.com/images/wow-ad- -# ||worldstagegroup.com/worldstagenew/banner/ (easylistchina+easylist.txt: 45650) -.worldstagegroup.com/worldstagenew/banner/ -# ||worldstagegroup.com/banner/ (easylistchina+easylist.txt: 45649) -.worldstagegroup.com/banner/ -# ||worldstadiums.com/world_stadiums/bugarrishoes/ (easylistchina+easylist.txt: 45648) -.worldstadiums.com/world_stadiums/bugarrishoes/ -# ||worldometers.info/L728.html (easylistchina+easylist.txt: 45647) -.worldometers.info/L728\.html -# ||worldometers.info/L300R.html (easylistchina+easylist.txt: 45646) -.worldometers.info/L300R\.html -# ||worldometers.info/L300L.html (easylistchina+easylist.txt: 45645) -.worldometers.info/L300L\.html -# ||worldarchitecturenews.com/flash_banners/ (easylistchina+easylist.txt: 45644) -.worldarchitecturenews.com/flash_banners/ -# ||worldarchitecturenews.com/banner/ (easylistchina+easylist.txt: 45643) -.worldarchitecturenews.com/banner/ -# ||workingdays.us/pub_ (easylistchina+easylist.txt: 45642) -.workingdays.us/pub_ -# ||workingdays.org/pub_ (easylistchina+easylist.txt: 45641) -.workingdays.org/pub_ -# ||workingdays.ca/pub_ (easylistchina+easylist.txt: 45640) -.workingdays.ca/pub_ -# ||work-day.co.uk/pub_ (easylistchina+easylist.txt: 45639) -.work-day.co.uk/pub_ -# ||wordwebonline.com/img/122x36ccbanner.png (easylistchina+easylist.txt: 45638) -.wordwebonline.com/img/122x36ccbanner\.png -# ||wordreference.com/*/publ/ (easylistchina+easylist.txt: 45637) -.wordreference.com/.*/publ/ -# ||worddictionary.co.uk/static//inpage-affinity/ (easylistchina+easylist.txt: 45630) -.worddictionary.co.uk/static//inpage-affinity/ -# ||wolf-howl.com/wp-content/banners/ (easylistchina+easylist.txt: 45629) -.wolf-howl.com/wp-content/banners/ -# ||wnst.net/img/coupon/ (easylistchina+easylist.txt: 45628) -.wnst.net/img/coupon/ -# ||wnpv1440.com/images/banners/ (easylistchina+easylist.txt: 45627) -.wnpv1440.com/images/banners/ -# ||wned.org/underwriting/sponsors/ (easylistchina+easylist.txt: 45626) -.wned.org/underwriting/sponsors/ -# ||wlrfm.com/images/banners/ (easylistchina+easylist.txt: 45625) -.wlrfm.com/images/banners/ -# ||wlcr.org/banners/ (easylistchina+easylist.txt: 45624) -.wlcr.org/banners/ -# ||wksu.org/graphics/banners/ (easylistchina+easylist.txt: 45623) -.wksu.org/graphics/banners/ -# ||wjunction.com/images/rectangle (easylistchina+easylist.txt: 45622) -.wjunction.com/images/rectangle -# ||wjunction.com/images/constant/ (easylistchina+easylist.txt: 45621) -.wjunction.com/images/constant/ -# ||wjunction.com/images/468x60 (easylistchina+easylist.txt: 45620) -.wjunction.com/images/468x60 -# ||wjie.org/media/img/sponsers/ (easylistchina+easylist.txt: 45619) -.wjie.org/media/img/sponsers/ -# ||witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ (easylistchina+easylist.txt: 45618) -.witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ -# ||witbankspurs.co.za/layout_images/sponsor.jpg (easylistchina+easylist.txt: 45617) -.witbankspurs.co.za/layout_images/sponsor\.jpg -# ||wiretarget.com/a_$subdocument (easylistchina+easylist.txt: 45615) -.wiretarget.com/a_ -# ||wirenh.com/images/banners/ (easylistchina+easylist.txt: 45614) -.wirenh.com/images/banners/ -# ||wired.com/images/xrail/*/samsung_layar_ (easylistchina+easylist.txt: 45613) -.wired.com/images/xrail/.*/samsung_layar_ -# ||wipfilms.net^*/instant-video.png (easylistchina+easylist.txt: 45612) -.wipfilms.net/.*/instant-video\.png -# ||wipfilms.net^*/amazon.png (easylistchina+easylist.txt: 45611) -.wipfilms.net/.*/amazon\.png -# ||winsupersite.com^*/roadblock. (easylistchina+easylist.txt: 45610) -.winsupersite.com/.*/roadblock\. -# ||winpcap.org/assets/image/banner_ (easylistchina+easylist.txt: 45609) -.winpcap.org/assets/image/banner_ -# ||winnfm.com/grfx/banners/ (easylistchina+easylist.txt: 45608) -.winnfm.com/grfx/banners/ -# ||windowsitpro.com^*/roadblock. (easylistchina+easylist.txt: 45607) -.windowsitpro.com/.*/roadblock\. -# ||wildtangent.com/leaderboard? (easylistchina+easylist.txt: 45605) -.wildtangent.com/leaderboard\? -# ||wikinvest.com/wikinvest/images/zap_trade_ (easylistchina+easylist.txt: 45604) -.wikinvest.com/wikinvest/images/zap_trade_ -# ||wikinvest.com/wikinvest/ads/ (easylistchina+easylist.txt: 45603) -.wikinvest.com/wikinvest/ads/ -# ||wikia.com/__varnish_ (easylistchina+easylist.txt: 45602) -.wikia.com/__varnish_ -# ||wiilovemario.com/images/fc-twin-play-nes-snes-cartridges.png (easylistchina+easylist.txt: 45601) -.wiilovemario.com/images/fc-twin-play-nes-snes-cartridges\.png -# ||widih.org/banners/ (easylistchina+easylist.txt: 45600) -.widih.org/banners/ -# ||widget.directory.dailycommercial.com^ (easylistchina+easylist.txt: 45599) -.widget.directory.dailycommercial.com -# ||whoownsfacebook.com/images/topbanner.gif (easylistchina+easylist.txt: 45597) -.whoownsfacebook.com/images/topbanner\.gif -# ||whois.net/images/banners/ (easylistchina+easylist.txt: 45596) -.whois.net/images/banners/ -# ||whois.net/dombot.php? (easylistchina+easylist.txt: 45595) -.whois.net/dombot\.php\? -# ||whoer.net/images/vpnlab20_ (easylistchina+easylist.txt: 45594) -.whoer.net/images/vpnlab20_ -# ||whoer.net/images/vlab50_ (easylistchina+easylist.txt: 45593) -.whoer.net/images/vlab50_ -# ||whoer.net/images/pb/ (easylistchina+easylist.txt: 45592) -.whoer.net/images/pb/ -# ||who.is/images/domain-transfer2.jpg (easylistchina+easylist.txt: 45591) -.who.is/images/domain-transfer2\.jpg -# ||whitepages.ae/images/UI/WS/ (easylistchina+easylist.txt: 45590) -.whitepages.ae/images/UI/WS/ -# ||whitepages.ae/images/UI/SRB/ (easylistchina+easylist.txt: 45589) -.whitepages.ae/images/UI/SRB/ -# ||whitepages.ae/images/UI/SRA/ (easylistchina+easylist.txt: 45588) -.whitepages.ae/images/UI/SRA/ -# ||whitepages.ae/images/UI/SR/ (easylistchina+easylist.txt: 45587) -.whitepages.ae/images/UI/SR/ -# ||whitepages.ae/images/UI/MR/ (easylistchina+easylist.txt: 45586) -.whitepages.ae/images/UI/MR/ -# ||whitepages.ae/images/UI/LB/ (easylistchina+easylist.txt: 45585) -.whitepages.ae/images/UI/LB/ -# ||whitepages.ae/images/UI/FC/ (easylistchina+easylist.txt: 45584) -.whitepages.ae/images/UI/FC/ -# ||whistleout.com.au/imagelibrary/ads/wo_skin_ (easylistchina+easylist.txt: 45583) -.whistleout.com.au/imagelibrary/ads/wo_skin_ -# ||whispersinthecorridors.com/banner (easylistchina+easylist.txt: 45582) -.whispersinthecorridors.com/banner -# ||wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system.png (easylistchina+easylist.txt: 45581) -.wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system\.png -# ||wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100.gif (easylistchina+easylist.txt: 45580) -.wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100\.gif -# ||wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila.jpg (easylistchina+easylist.txt: 45579) -.wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila\.jpg -# ||wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup.gif (easylistchina+easylist.txt: 45578) -.wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup\.gif -# ||whdh.com/images/promotions/ (easylistchina+easylist.txt: 45577) -.whdh.com/images/promotions/ -# ||whatsthescore.com/logos/icons/bookmakers/ (easylistchina+easylist.txt: 45576) -.whatsthescore.com/logos/icons/bookmakers/ -# ||whatsontv.co.uk^*/promo/ (easylistchina+easylist.txt: 45575) -.whatsontv.co.uk/.*/promo/ -# ||whatsonstage.com/images/sitetakeover/ (easylistchina+easylist.txt: 45574) -.whatsonstage.com/images/sitetakeover/ -# ||whatsonnamibia.com/images/banners/ (easylistchina+easylist.txt: 45573) -.whatsonnamibia.com/images/banners/ -# ||whatson.co.za/img/hp.png (easylistchina+easylist.txt: 45572) -.whatson.co.za/img/hp\.png -# ||whatsnewonnetflix.com/assets/blockless-ad- (easylistchina+easylist.txt: 45571) -.whatsnewonnetflix.com/assets/blockless-ad- -# ||whatsabyte.com/images/Acronis_Banners/ (easylistchina+easylist.txt: 45570) -.whatsabyte.com/images/Acronis_Banners/ -# ||whatreallyhappened.com/webpageimages/banners/uwslogosm.jpg (easylistchina+easylist.txt: 45569) -.whatreallyhappened.com/webpageimages/banners/uwslogosm\.jpg -# ||whatmyip.co/images/speedcoin_ (easylistchina+easylist.txt: 45568) -.whatmyip.co/images/speedcoin_ -# ||whatmobile.com.pk/banners/ (easylistchina+easylist.txt: 45567) -.whatmobile.com.pk/banners/ -# ||whatismyip.org/ez_display_au_fillslot.js (easylistchina+easylist.txt: 45566) -.whatismyip.org/ez_display_au_fillslot\.js -# ||whatismyip.com/images/vyprvpn_ (easylistchina+easylist.txt: 45565) -.whatismyip.com/images/vyprvpn_ -# ||whatismyip.com/images/VYPR__125x125.png (easylistchina+easylist.txt: 45564) -.whatismyip.com/images/VYPR__125x125\.png -# ||wgfaradio.com/images/banners/ (easylistchina+easylist.txt: 45563) -.wgfaradio.com/images/banners/ -# ||werlv.com^*banner (easylistchina+easylist.txt: 45562) -.werlv.com/.*banner -# ||weknowmemes.com/sidesky. (easylistchina+easylist.txt: 45561) -.weknowmemes.com/sidesky\. -# ||wegoted.com/uploads/sponsors/ (easylistchina+easylist.txt: 45560) -.wegoted.com/uploads/sponsors/ -# ||wegoted.com/uploads/memsponsor/ (easylistchina+easylist.txt: 45559) -.wegoted.com/uploads/memsponsor/ -# ||wegoted.com/includes/biogreen.swf (easylistchina+easylist.txt: 45558) -.wegoted.com/includes/biogreen\.swf -# ||weei.com^*_banner.jpg (easylistchina+easylist.txt: 45557) -.weei.com/.*_banner\.jpg -# ||weei.com^*/sponsors/ (easylistchina+easylist.txt: 45556) -.weei.com/.*/sponsors/ -# ||weddingtv.com/src/baners/ (easylistchina+easylist.txt: 45555) -.weddingtv.com/src/baners/ -# ||webstatschecker.com/links/ (easylistchina+easylist.txt: 45554) -.webstatschecker.com/links/ -# ||websitehome.co.uk/seoheap/cheap-web-hosting.gif (easylistchina+easylist.txt: 45553) -.websitehome.co.uk/seoheap/cheap-web-hosting\.gif -# ||webnewswire.com/images/banner (easylistchina+easylist.txt: 45552) -.webnewswire.com/images/banner -# ||webmastercrunch.com^*/hostgator300x30.gif (easylistchina+easylist.txt: 45551) -.webmastercrunch.com/.*/hostgator300x30\.gif -# ||webmaster.extabit.com^ (easylistchina+easylist.txt: 45550) -.webmaster.extabit.com -# ||webmailnotifier.mozdev.org/etc/af/ (easylistchina+easylist.txt: 45549) -.webmailnotifier.mozdev.org/etc/af/ -# ||webhostranking.com/images/bluehost-coupon-banner-1.gif (easylistchina+easylist.txt: 45548) -.webhostranking.com/images/bluehost-coupon-banner-1\.gif -# ||webhostingtalk.com/images/style/lw-header.png (easylistchina+easylist.txt: 45547) -.webhostingtalk.com/images/style/lw-header\.png -# ||webhostingtalk.com/images/style/lw-160x400.jpg (easylistchina+easylist.txt: 45546) -.webhostingtalk.com/images/style/lw-160x400\.jpg -# ||webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ (easylistchina+easylist.txt: 45545) -.webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ -# ||webdesignerdepot.com/wp-content/plugins/md-popup/ (easylistchina+easylist.txt: 45544) -.webdesignerdepot.com/wp-content/plugins/md-popup/ -# ||weatheroffice.gc.ca/banner/ (easylistchina+easylist.txt: 45543) -.weatheroffice.gc.ca/banner/ -# ||weatherbug.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 45542) -.weatherbug.com/.*/ova-jw\.swf -# ||weather365.net/images/banners/ (easylistchina+easylist.txt: 45541) -.weather365.net/images/banners/ -# ||wearetennis.com/img/common/logo_bnp_ (easylistchina+easylist.txt: 45540) -.wearetennis.com/img/common/logo_bnp_ -# ||wearetennis.com/img/common/bnp-logo.png (easylistchina+easylist.txt: 45539) -.wearetennis.com/img/common/bnp-logo\.png -# ||wearetennis.com/img/common/bnp-logo- (easylistchina+easylist.txt: 45538) -.wearetennis.com/img/common/bnp-logo- -# ||wealthycashmagnet.com/upload/banners/ (easylistchina+easylist.txt: 45537) -.wealthycashmagnet.com/upload/banners/ -# ||wdwinfo.com/js/swap.js (easylistchina+easylist.txt: 45536) -.wdwinfo.com/js/swap\.js -# ||wctk.com/banner_rotator.php (easylistchina+easylist.txt: 45535) -.wctk.com/banner_rotator\.php -# ||wcbm.com/includes/clientgraphics/ (easylistchina+easylist.txt: 45534) -.wcbm.com/includes/clientgraphics/ -# ||wbj.pl/im/partners.gif (easylistchina+easylist.txt: 45533) -.wbj.pl/im/partners\.gif -# ||wbgo.org^*/banners/ (easylistchina+easylist.txt: 45532) -.wbgo.org/.*/banners/ -# ||wbal.com/absolutebm/banners/ (easylistchina+easylist.txt: 45531) -.wbal.com/absolutebm/banners/ -# ||way2sms.com/w2sv5/js/fo_ (easylistchina+easylist.txt: 45530) -.way2sms.com/w2sv5/js/fo_ -# ||wavelengthcalculator.com/banner (easylistchina+easylist.txt: 45529) -.wavelengthcalculator.com/banner -# ||waterford-today.ie^*/banners/ (easylistchina+easylist.txt: 45528) -.waterford-today.ie/.*/banners/ -# ||watchwwelive.net^*/long_ban2.jpg (easylistchina+easylist.txt: 45527) -.watchwwelive.net/.*/long_ban2\.jpg -# ||watchwwelive.net^*/big_ban.gif (easylistchina+easylist.txt: 45526) -.watchwwelive.net/.*/big_ban\.gif -# ||watchuseek.com/site/forabar/zixenflashwatch.swf (easylistchina+easylist.txt: 45525) -.watchuseek.com/site/forabar/zixenflashwatch\.swf -# ||watchuseek.com/media/wus-image.jpg (easylistchina+easylist.txt: 45524) -.watchuseek.com/media/wus-image\.jpg -# ||watchuseek.com/media/longines_legenddiver.gif (easylistchina+easylist.txt: 45523) -.watchuseek.com/media/longines_legenddiver\.gif -# ||watchuseek.com/media/clerc-final.jpg (easylistchina+easylist.txt: 45522) -.watchuseek.com/media/clerc-final\.jpg -# ||watchuseek.com/media/banner_ (easylistchina+easylist.txt: 45521) -.watchuseek.com/media/banner_ -# ||watchuseek.com/media/1900x220_ (easylistchina+easylist.txt: 45520) -.watchuseek.com/media/1900x220_ -# ||watchuseek.com/media/*_250x250 (easylistchina+easylist.txt: 45519) -.watchuseek.com/media/.*_250x250 -# ||watchuseek.com/media/*-banner- (easylistchina+easylist.txt: 45518) -.watchuseek.com/media/.*-banner- -# ||watchuseek.com/flashwatchwus.swf (easylistchina+easylist.txt: 45517) -.watchuseek.com/flashwatchwus\.swf -# ||watchseries.eu/js/csspopup.js (easylistchina+easylist.txt: 45516) -.watchseries.eu/js/csspopup\.js -# ||watchseries.eu/images/download.png (easylistchina+easylist.txt: 45515) -.watchseries.eu/images/download\.png -# ||watchseries.eu/images/affiliate_buzz.gif (easylistchina+easylist.txt: 45514) -.watchseries.eu/images/affiliate_buzz\.gif -# ||watchop.com/player/watchonepiece-gao-gamebox.swf (easylistchina+easylist.txt: 45513) -.watchop.com/player/watchonepiece-gao-gamebox\.swf -# ||watchfreemovies.ch/js/lmst.js (easylistchina+easylist.txt: 45512) -.watchfreemovies.ch/js/lmst\.js -# ||watchcartoononline.com^*/530x90. (easylistchina+easylist.txt: 45511) -.watchcartoononline.com/.*/530x90\. -# ||watchcartoononline.com/inc/siteskin. (easylistchina+easylist.txt: 45510) -.watchcartoononline.com/inc/siteskin\. -# ||washtimes.net/banners/ (easylistchina+easylist.txt: 45509) -.washtimes.net/banners/ -# ||washtimes.com/static/images/SelectAutoWeather_v2.gif (easylistchina+easylist.txt: 45508) -.washtimes.com/static/images/SelectAutoWeather_v2\.gif -# ||washtimes.com/js/dart. (easylistchina+easylist.txt: 45507) -.washtimes.com/js/dart\. -# ||washpost.com^*/cmag_sponsor3.php? (easylistchina+easylist.txt: 45506) -.washpost.com/.*/cmag_sponsor3\.php\? -# ||washingtonpost.com/wp-srv/javascript/piggy-back-on-ads.js (easylistchina+easylist.txt: 45505) -.washingtonpost.com/wp-srv/javascript/piggy-back-on-ads\.js -# ||warriorforum.com/vbppb/ (easylistchina+easylist.txt: 45504) -.warriorforum.com/vbppb/ -# ||wardsauto.com^*/pm_doubleclick/ (easylistchina+easylist.txt: 45503) -.wardsauto.com/.*/pm_doubleclick/ -# ||waoanime.tv/playerimg.jpg (easylistchina+easylist.txt: 45502) -.waoanime.tv/playerimg\.jpg -# ||wantitall.co.za/images/banners/ (easylistchina+easylist.txt: 45501) -.wantitall.co.za/images/banners/ -# ||wantedinmilan.com/images/banner/ (easylistchina+easylist.txt: 45500) -.wantedinmilan.com/images/banner/ -# ||walshfreedom.com^*/liberty-luxury.png (easylistchina+easylist.txt: 45498) -.walshfreedom.com/.*/liberty-luxury\.png -# ||walshfreedom.com^*-300x250. (easylistchina+easylist.txt: 45497) -.walshfreedom.com/.*-300x250\. -# ||wallpaper.com/themes/takeovers/$image (easylistchina+easylist.txt: 45496) -.wallpaper.com/themes/takeovers/ -# ||wadldetroit.com/images/banners/ (easylistchina+easylist.txt: 45495) -.wadldetroit.com/images/banners/ -# ||waamradio.com/images/sponsors/ (easylistchina+easylist.txt: 45494) -.waamradio.com/images/sponsors/ -# ||w.homes.yahoo.net^ (easylistchina+easylist.txt: 45493) -.w.homes.yahoo.net -# ||vpsboard.com/display/ (easylistchina+easylist.txt: 45492) -.vpsboard.com/display/ -# ||vox-cdn.com/campaigns_images/ (easylistchina+easylist.txt: 45491) -.vox-cdn.com/campaigns_images/ -# ||vosizneias.com/perms/ (easylistchina+easylist.txt: 45490) -.vosizneias.com/perms/ -# ||vortez.co.uk^*skyscraper.jpg (easylistchina+easylist.txt: 45489) -.vortez.co.uk/.*skyscraper\.jpg -# ||vortez.co.uk^*120x600.swf (easylistchina+easylist.txt: 45488) -.vortez.co.uk/.*120x600\.swf -# ||vonradio.com/grfx/banners/ (easylistchina+easylist.txt: 45487) -.vonradio.com/grfx/banners/ -# ||vondroid.com/site-img/*-adv-ex- (easylistchina+easylist.txt: 45486) -.vondroid.com/site-img/.*-adv-ex- -# ||voicesvancouver.com/images/stories/banners/ (easylistchina+easylist.txt: 45485) -.voicesvancouver.com/images/stories/banners/ -# ||voicesvancouver.com/images/leaderBoards/ (easylistchina+easylist.txt: 45484) -.voicesvancouver.com/images/leaderBoards/ -# ||voicestoronto.com/images/stories/banners/ (easylistchina+easylist.txt: 45483) -.voicestoronto.com/images/stories/banners/ -# ||voicestoronto.com/images/leaderBoards/ (easylistchina+easylist.txt: 45482) -.voicestoronto.com/images/leaderBoards/ -# ||voicesottawa.com/images/stories/banners/ (easylistchina+easylist.txt: 45481) -.voicesottawa.com/images/stories/banners/ -# ||voicesottawa.com/images/leaderBoards/ (easylistchina+easylist.txt: 45480) -.voicesottawa.com/images/leaderBoards/ -# ||voicesedmonton.com/images/stories/banners/ (easylistchina+easylist.txt: 45479) -.voicesedmonton.com/images/stories/banners/ -# ||voicesedmonton.com/images/leaderBoards/ (easylistchina+easylist.txt: 45478) -.voicesedmonton.com/images/leaderBoards/ -# ||voicescalgary.com/images/stories/banners/ (easylistchina+easylist.txt: 45477) -.voicescalgary.com/images/stories/banners/ -# ||voicescalgary.com/images/leaderBoards/ (easylistchina+easylist.txt: 45476) -.voicescalgary.com/images/leaderBoards/ -# ||vogue.in/node/*?section= (easylistchina+easylist.txt: 45475) -.vogue.in/node/.*\?section= -# ||vodo.net/static/images/promotion/utorrent_plus_buy.png (easylistchina+easylist.txt: 45474) -.vodo.net/static/images/promotion/utorrent_plus_buy\.png -# ||vodlocker.com/images/acenter.png (easylistchina+easylist.txt: 45473) -.vodlocker.com/images/acenter\.png -# ||vnbitcoin.org/gawminers.png (easylistchina+easylist.txt: 45472) -.vnbitcoin.org/gawminers\.png -# ||vnbitcoin.org/140_350.jpg (easylistchina+easylist.txt: 45471) -.vnbitcoin.org/140_350\.jpg -# ||vitalmtb.com/assets/vital.aba- (easylistchina+easylist.txt: 45470) -.vitalmtb.com/assets/vital\.aba- -# ||vitalmtb.com/assets/ablock- (easylistchina+easylist.txt: 45469) -.vitalmtb.com/assets/ablock- -# ||vitalmtb.com/api/ (easylistchina+easylist.txt: 45468) -.vitalmtb.com/api/ -# ||vitalfootball.co.uk^*/partners/ (easylistchina+easylist.txt: 45467) -.vitalfootball.co.uk/.*/partners/ -# ||vitalfootball.co.uk/app-interstitial/ (easylistchina+easylist.txt: 45466) -.vitalfootball.co.uk/app-interstitial/ -# ||vistandpoint.com/images/banners/ (easylistchina+easylist.txt: 45465) -.vistandpoint.com/images/banners/ -# ||virtualtourist.com/adp/ (easylistchina+easylist.txt: 45464) -.virtualtourist.com/adp/ -# ||virtual-hideout.net/banner (easylistchina+easylist.txt: 45463) -.virtual-hideout.net/banner -# ||virginislandsthisweek.com/images/728- (easylistchina+easylist.txt: 45462) -.virginislandsthisweek.com/images/728- -# ||virginislandsthisweek.com/images/336- (easylistchina+easylist.txt: 45461) -.virginislandsthisweek.com/images/336- -# ||vipleague.se/js/vip.js (easylistchina+easylist.txt: 45460) -.vipleague.se/js/vip\.js -# ||vipleague.me/blackwhite/ (easylistchina+easylist.txt: 45459) -.vipleague.me/blackwhite/ -# ||vipi.tv/ad.php (easylistchina+easylist.txt: 45458) -.vipi.tv/ad\.php -# ||vipbox.tv/js/layer.js (easylistchina+easylist.txt: 45457) -.vipbox.tv/js/layer\.js -# ||vipbox.tv/js/layer- (easylistchina+easylist.txt: 45456) -.vipbox.tv/js/layer- -# ||vipbox.tv/blackwhite/ (easylistchina+easylist.txt: 45455) -.vipbox.tv/blackwhite/ -# ||vipbox.sx/blackwhite/ (easylistchina+easylist.txt: 45454) -.vipbox.sx/blackwhite/ -# ||vipbox.eu/pu/ (easylistchina+easylist.txt: 45453) -.vipbox.eu/pu/ -# ||vipbox.co^*/pu.js (easylistchina+easylist.txt: 45452) -.vipbox.co/.*/pu\.js -# ||vipbox.co/js/bn.js (easylistchina+easylist.txt: 45451) -.vipbox.co/js/bn\.js -# ||vinaora.com/xmedia/hosting/ (easylistchina+easylist.txt: 45450) -.vinaora.com/xmedia/hosting/ -# ||villagevoice.com/img/VDotDFallback-large.gif (easylistchina+easylist.txt: 45449) -.villagevoice.com/img/VDotDFallback-large\.gif -# ||viewdocsonline.com/images/banners/ (easylistchina+easylist.txt: 45448) -.viewdocsonline.com/images/banners/ -# ||vidvib.com/vidvibpopb. (easylistchina+easylist.txt: 45447) -.vidvib.com/vidvibpopb\. -# ||vidvib.com/vidvibpopa. (easylistchina+easylist.txt: 45446) -.vidvib.com/vidvibpopa\. -# ||vidspot.net^*/pu.js (easylistchina+easylist.txt: 45445) -.vidspot.net/.*/pu\.js -# ||vidspot.net/s/xfs.min.js? (easylistchina+easylist.txt: 45443) -.vidspot.net/s/xfs\.min\.js\? -# ||vidspot.net/player/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 45442) -.vidspot.net/player/ova-jw\.swf -# ||vidhog.com/images/download_banner_ (easylistchina+easylist.txt: 45440) -.vidhog.com/images/download_banner_ -# ||videowood.tv/pop2 (easylistchina+easylist.txt: 45439) -.videowood.tv/pop2 -# ||videowood.tv/assets/js/popup.js (easylistchina+easylist.txt: 45438) -.videowood.tv/assets/js/popup\.js -# ||videowood.tv/ads (easylistchina+easylist.txt: 45437) -.videowood.tv/ads -# ||videositeprofits.com^*/banner.jpg (easylistchina+easylist.txt: 45436) -.videositeprofits.com/.*/banner\.jpg -# ||videos.mediaite.com/decor/live/white_alpha_60. (easylistchina+easylist.txt: 45435) -.videos.mediaite.com/decor/live/white_alpha_60\. -# ||videos.com/click? (easylistchina+easylist.txt: 45434) -.videos.com/click\? -# ||videopediaworld.com/nuevo/plugins/midroll. (easylistchina+easylist.txt: 45433) -.videopediaworld.com/nuevo/plugins/midroll\. -# ||videolan.org/images/events/animated_packliberte.gif (easylistchina+easylist.txt: 45432) -.videolan.org/images/events/animated_packliberte\.gif -# ||videogamesblogger.com^*/scripts/takeover.js (easylistchina+easylist.txt: 45431) -.videogamesblogger.com/.*/scripts/takeover\.js -# ||videogamesblogger.com/takeover.html (easylistchina+easylist.txt: 45430) -.videogamesblogger.com/takeover\.html -# ||videogamer.com^*/css/skins/$stylesheet (easylistchina+easylist.txt: 45429) -.videogamer.com/.*/css/skins/ -# ||videogamer.com/videogamer*/skins/ (easylistchina+easylist.txt: 45428) -.videogamer.com/videogamer.*/skins/ -# ||videodownloadtoolbar.com/fancybox/ (easylistchina+easylist.txt: 45427) -.videodownloadtoolbar.com/fancybox/ -# ||videodorm.org/player/yume-h.swf$object-subrequest (easylistchina+easylist.txt: 45426) -.videodorm.org/player/yume-h\.swf -# ||videobull.to/wp-content/themes/videozoom/images/stream-hd-button.gif (easylistchina+easylist.txt: 45425) -.videobull.to/wp-content/themes/videozoom/images/stream-hd-button\.gif -# ||videobull.to/wp-content/themes/videozoom/images/gotowatchnow.png (easylistchina+easylist.txt: 45424) -.videobull.to/wp-content/themes/videozoom/images/gotowatchnow\.png -# ||videobull.com^*/amazon_ico.png (easylistchina+easylist.txt: 45423) -.videobull.com/.*/amazon_ico\.png -# ||videobull.com/wp-content/themes/*/watch-now.jpg (easylistchina+easylist.txt: 45422) -.videobull.com/wp-content/themes/.*/watch-now\.jpg -# ||videobash.com/images/playboy/ (easylistchina+easylist.txt: 45421) -.videobash.com/images/playboy/ -# ||videobam.com/this-pays-for-bandwidth/ (easylistchina+easylist.txt: 45420) -.videobam.com/this-pays-for-bandwidth/ -# ||videobam.com/images/banners/ (easylistchina+easylist.txt: 45419) -.videobam.com/images/banners/ -# ||video44.net/gogo/yume-h.swf$object-subrequest (easylistchina+easylist.txt: 45418) -.video44.net/gogo/yume-h\.swf -# ||video44.net/gogo/qc.js (easylistchina+easylist.txt: 45417) -.video44.net/gogo/qc\.js -# ||video44.net/gogo/a_d_s. (easylistchina+easylist.txt: 45416) -.video44.net/gogo/a_d_s\. -# ||video2mp3.net/images/download_button.png (easylistchina+easylist.txt: 45415) -.video2mp3.net/images/download_button\.png -# ||video.abc.com^*/promos/$object-subrequest (easylistchina+easylist.txt: 45413) -.video.abc.com/.*/promos/ -# ||video.abc.com^*/ads/ (easylistchina+easylist.txt: 45412) -.video.abc.com/.*/ads/ -# ||video-cdn.abcnews.com/ad_$object-subrequest (easylistchina+easylist.txt: 45410) -.video-cdn.abcnews.com/ad_ -# ||vidds.net/pads*.js (easylistchina+easylist.txt: 45409) -.vidds.net/pads.*\.js -# ||vidbull.com/tags/vidbull_bnr.png (easylistchina+easylist.txt: 45408) -.vidbull.com/tags/vidbull_bnr\.png -# ||vice-ads-cdn.vice.com^ (easylistchina+easylist.txt: 45407) -.vice-ads-cdn.vice.com -# ||viator.com/analytics/percent_mobile_hash.js (easylistchina+easylist.txt: 45406) -.viator.com/analytics/percent_mobile_hash\.js -# ||viamichelin.co.uk/htm/cmn/afs*.htm? (easylistchina+easylist.txt: 45405) -.viamichelin.co.uk/htm/cmn/afs.*\.htm\? -# ||viadeo.com/pub/ (easylistchina+easylist.txt: 45404) -.viadeo.com/pub/ -# ||vhd.me/custom/interstitial (easylistchina+easylist.txt: 45403) -.vhd.me/custom/interstitial -# ||vfs-uk-in.com/images/webbanner- (easylistchina+easylist.txt: 45402) -.vfs-uk-in.com/images/webbanner- -# ||verzing.com/popup (easylistchina+easylist.txt: 45401) -.verzing.com/popup -# ||verzend.be/images/download.png (easylistchina+easylist.txt: 45400) -.verzend.be/images/download\.png -# ||verizon.com/ads/ (easylistchina+easylist.txt: 45399) -.verizon.com/ads/ -# ||verdict.abc.go.com^ (easylistchina+easylist.txt: 45398) -.verdict.abc.go.com -# ||vehix.com/tags/default.imu?$subdocument (easylistchina+easylist.txt: 45397) -.vehix.com/tags/default\.imu\? -# ||vcdq.com^*/ad.html (easylistchina+easylist.txt: 45396) -.vcdq.com/.*/ad\.html -# ||vcdq.com/tag.html (easylistchina+easylist.txt: 45395) -.vcdq.com/tag\.html -# ||vault.starproperty.my/widget/ (easylistchina+easylist.txt: 45394) -.vault.starproperty.my/widget/ -# ||vasco.co.za/images/banners/ (easylistchina+easylist.txt: 45393) -.vasco.co.za/images/banners/ -# ||vanityfair.com/custom/ebook-ad-bookbiz (easylistchina+easylist.txt: 45392) -.vanityfair.com/custom/ebook-ad-bookbiz -# ||valuewalk.com//?$script (easylistchina+easylist.txt: 45391) -# ||valleyplanet.com/images/banners/ (easylistchina+easylist.txt: 45390) -.valleyplanet.com/images/banners/ -# ||val.fm/images/banners/ (easylistchina+easylist.txt: 45389) -.val.fm/images/banners/ -# ||uvnc.com/img/housecall. (easylistchina+easylist.txt: 45388) -.uvnc.com/img/housecall\. -# ||ustream.tv/takeover/ (easylistchina+easylist.txt: 45387) -.ustream.tv/takeover/ -# ||usforacle.com^*-300x250.gif (easylistchina+easylist.txt: 45384) -.usforacle.com/.*-300x250\.gif -# ||usenet-crawler.com/purevpn.png (easylistchina+easylist.txt: 45383) -.usenet-crawler.com/purevpn\.png -# ||usenet-crawler.com/astraweb.png (easylistchina+easylist.txt: 45382) -.usenet-crawler.com/astraweb\.png -# ||uschess.org/images/banners/ (easylistchina+easylist.txt: 45381) -.uschess.org/images/banners/ -# ||usatodayhss.com/images/*skin (easylistchina+easylist.txt: 45380) -.usatodayhss.com/images/.*skin -# ||usatoday.net^*/lb-agate.png (easylistchina+easylist.txt: 45379) -.usatoday.net/.*/lb-agate\.png -# ||usanetwork.com/_js/ad.js (easylistchina+easylist.txt: 45378) -.usanetwork.com/_js/ad\.js -# ||urlgone.com^*/banners/ (easylistchina+easylist.txt: 45377) -.urlgone.com/.*/banners/ -# ||urlcash.org/newpop.js (easylistchina+easylist.txt: 45376) -.urlcash.org/newpop\.js -# ||urlcash.org/banners/ (easylistchina+easylist.txt: 45375) -.urlcash.org/banners/ -# ||urlcash.org/abp/ (easylistchina+easylist.txt: 45374) -.urlcash.org/abp/ -# ||urlcash.net/random*.php (easylistchina+easylist.txt: 45373) -.urlcash.net/random.*\.php -# ||urlcash.net/newpop.js (easylistchina+easylist.txt: 45372) -.urlcash.net/newpop\.js -# ||urethanes-technology-international.com^*/banners/ (easylistchina+easylist.txt: 45371) -.urethanes-technology-international.com/.*/banners/ -# ||urbanvelo.org/sidebarbanner/ (easylistchina+easylist.txt: 45370) -.urbanvelo.org/sidebarbanner/ -# ||urbanfonts.com/images/fonts_com/ (easylistchina+easylist.txt: 45369) -.urbanfonts.com/images/fonts_com/ -# ||urbanchristiannews.com/ucn/sidebar- (easylistchina+easylist.txt: 45368) -.urbanchristiannews.com/ucn/sidebar- -# ||uptobox.com/images/downloaden.gif (easylistchina+easylist.txt: 45367) -.uptobox.com/images/downloaden\.gif -# ||uptobox.com/images/download.png (easylistchina+easylist.txt: 45366) -.uptobox.com/images/download\.png -# ||uptobox.com/ayl.js (easylistchina+easylist.txt: 45365) -.uptobox.com/ayl\.js -# ||uploadlw.com^*/download_button.gif (easylistchina+easylist.txt: 45364) -.uploadlw.com/.*/download_button\.gif -# ||uploadlw.com^*/download-now (easylistchina+easylist.txt: 45363) -.uploadlw.com/.*/download-now -# ||uploadlw.com/js/cash.js (easylistchina+easylist.txt: 45362) -.uploadlw.com/js/cash\.js -# ||uploading.com/static/banners/ (easylistchina+easylist.txt: 45361) -.uploading.com/static/banners/ -# ||uploadedtrend.com/turboflirt.gif (easylistchina+easylist.txt: 45360) -.uploadedtrend.com/turboflirt\.gif -# ||uploaded.to/img/e/ad/ (easylistchina+easylist.txt: 45359) -.uploaded.to/img/e/ad/ -# ||uploaded.net/js2/downloadam.js (easylistchina+easylist.txt: 45358) -.uploaded.net/js2/downloadam\.js -# ||uploadcore.com/images/*-Rad.png (easylistchina+easylist.txt: 45357) -.uploadcore.com/images/.*-Rad\.png -# ||uploadcore.com/images/*-mad.jpg (easylistchina+easylist.txt: 45356) -.uploadcore.com/images/.*-mad\.jpg -# ||uploadcore.com/images/*-Lad.jpg (easylistchina+easylist.txt: 45355) -.uploadcore.com/images/.*-Lad\.jpg -# ||uploadbaz.com^*-728-$object (easylistchina+easylist.txt: 45354) -.uploadbaz.com/.*-728- -# ||upload.ee/image/*/B_descarga_tipo12.gif (easylistchina+easylist.txt: 45353) -.upload.ee/image/.*/B_descarga_tipo12\.gif -# ||universalhub.com/bban/ (easylistchina+easylist.txt: 45352) -.universalhub.com/bban/ -# ||uniquefm.gm/images/banners/ (easylistchina+easylist.txt: 45351) -.uniquefm.gm/images/banners/ -# ||uniindia.net/eng/banners/ (easylistchina+easylist.txt: 45350) -.uniindia.net/eng/banners/ -# ||uniindia.com/eng/bannertopright.php (easylistchina+easylist.txt: 45349) -.uniindia.com/eng/bannertopright\.php -# ||uniindia.com/eng/banners/ (easylistchina+easylist.txt: 45348) -.uniindia.com/eng/banners/ -# ||uniindia.com/eng/bannerrightside.php (easylistchina+easylist.txt: 45347) -.uniindia.com/eng/bannerrightside\.php -# ||uniindia.com/eng/bannerheader.php (easylistchina+easylist.txt: 45346) -.uniindia.com/eng/bannerheader\.php -# ||uniindia.com/eng/bannerbottom.php (easylistchina+easylist.txt: 45345) -.uniindia.com/eng/bannerbottom\.php -# ||unicast.msn.com^ (easylistchina+easylist.txt: 45344) -.unicast.msn.com -# ||unicast.ign.com^ (easylistchina+easylist.txt: 45343) -.unicast.ign.com -# ||uncoached.com/smallpics/ashley (easylistchina+easylist.txt: 45342) -.uncoached.com/smallpics/ashley -# ||unblockt.com/scrape_if.php (easylistchina+easylist.txt: 45341) -.unblockt.com/scrape_if\.php -# ||unblockedpiratebay.com/external/$image (easylistchina+easylist.txt: 45340) -.unblockedpiratebay.com/external/ -# ||unawave.de/templates/unawave/a/$image (easylistchina+easylist.txt: 45339) -.unawave.de/templates/unawave/a/ -# ||unawave.de/medien/wbwso-$image (easylistchina+easylist.txt: 45338) -.unawave.de/medien/wbwso- -# ||unawave.de/medien/ama/$image (easylistchina+easylist.txt: 45337) -.unawave.de/medien/ama/ -# ||unawave.de/medien/a/w-ama-$image (easylistchina+easylist.txt: 45336) -.unawave.de/medien/a/w-ama- -# ||umbrelladetective.com/uploaded_files/banners/ (easylistchina+easylist.txt: 45335) -.umbrelladetective.com/uploaded_files/banners/ -# ||ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners.swf (easylistchina+easylist.txt: 45334) -.ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners\.swf -# ||ultimatewindowssecurity.com/images/spale.swf (easylistchina+easylist.txt: 45333) -.ultimatewindowssecurity.com/images/spale\.swf -# ||ultimatewindowssecurity.com/images/patchzone-resource-80x490.jpg (easylistchina+easylist.txt: 45332) -.ultimatewindowssecurity.com/images/patchzone-resource-80x490\.jpg -# ||ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool.jpg (easylistchina+easylist.txt: 45331) -.ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool\.jpg -# ||ultimatehandyman.org/bh1.gif (easylistchina+easylist.txt: 45330) -.ultimatehandyman.org/bh1\.gif -# ||ultimatehandyman.co.uk/ban.txt (easylistchina+easylist.txt: 45329) -.ultimatehandyman.co.uk/ban\.txt -# ||ultimate-guitar.com^*/takeover/ (easylistchina+easylist.txt: 45328) -.ultimate-guitar.com/.*/takeover/ -# ||ultimate-guitar.com/bgd/main_$image (easylistchina+easylist.txt: 45327) -.ultimate-guitar.com/bgd/main_ -# ||ultimate-guitar.com/_img/promo/takeovers/ (easylistchina+easylist.txt: 45326) -.ultimate-guitar.com/_img/promo/takeovers/ -# ||ultimate-guitar.com/_img/bgd/bgd_main_ (easylistchina+easylist.txt: 45325) -.ultimate-guitar.com/_img/bgd/bgd_main_ -# ||ukradioplayer.kerrangradio.co.uk^*/icon_apple.png (easylistchina+easylist.txt: 45324) -.ukradioplayer.kerrangradio.co.uk/.*/icon_apple\.png -# ||ukradioplayer.kerrangradio.co.uk^*/icon_amazon.png (easylistchina+easylist.txt: 45323) -.ukradioplayer.kerrangradio.co.uk/.*/icon_amazon\.png -# ||ukfindit.com/wipedebtclean.png (easylistchina+easylist.txt: 45322) -.ukfindit.com/wipedebtclean\.png -# ||ukfindit.com/images/*_125x125.gif (easylistchina+easylist.txt: 45321) -.ukfindit.com/images/.*_125x125\.gif -# ||ukcast.co/rbt728.php (easylistchina+easylist.txt: 45320) -.ukcast.co/rbt728\.php -# ||ukcast.co/pubfit.php (easylistchina+easylist.txt: 45319) -.ukcast.co/pubfit\.php -# ||ukcampsite.co.uk/banners/ (easylistchina+easylist.txt: 45318) -.ukcampsite.co.uk/banners/ -# ||ukbusinessforums.co.uk/adblock/ (easylistchina+easylist.txt: 45317) -.ukbusinessforums.co.uk/adblock/ -# ||uk-mkivs.net/uploads/banners/ (easylistchina+easylist.txt: 45316) -.uk-mkivs.net/uploads/banners/ -# ||ujfm.co.za/images/banners/ (easylistchina+easylist.txt: 45315) -.ujfm.co.za/images/banners/ -# ||uimserv.net^ (easylistchina+easylist.txt: 45314) -.uimserv.net -# ||ugo.com/takeover/ (easylistchina+easylist.txt: 45313) -.ugo.com/takeover/ -# ||ufonts.com/gfx/uFonts_Banner5.png (easylistchina+easylist.txt: 45312) -.ufonts.com/gfx/uFonts_Banner5\.png -# ||ubuntugeek.com^*/rocket.js (easylistchina+easylist.txt: 45311) -.ubuntugeek.com/.*/rocket\.js -# ||ubuntugeek.com/images/ubuntu1.png (easylistchina+easylist.txt: 45310) -.ubuntugeek.com/images/ubuntu1\.png -# ||ubuntugeek.com/images/od.jpg (easylistchina+easylist.txt: 45309) -.ubuntugeek.com/images/od\.jpg -# ||ubuntugeek.com/images/dnsstock.png (easylistchina+easylist.txt: 45308) -.ubuntugeek.com/images/dnsstock\.png -# ||uberhumor.com/iframe$subdocument (easylistchina+easylist.txt: 45307) -.uberhumor.com/iframe -# ||uberhumor.com/*btf.html$subdocument (easylistchina+easylist.txt: 45306) -.uberhumor.com/.*btf\.html -# ||ua.badongo.com^ (easylistchina+easylist.txt: 45305) -.ua.badongo.com -# ||u.tv/utvplayer/jwplayer/ova.swf (easylistchina+easylist.txt: 45304) -.u.tv/utvplayer/jwplayer/ova\.swf -# ||u.tv/images/sponsors/ (easylistchina+easylist.txt: 45303) -.u.tv/images/sponsors/ -# ||u.tv/images/misc/progressive.png (easylistchina+easylist.txt: 45302) -.u.tv/images/misc/progressive\.png -# ||txfm.ie^*/itunes-16x16.png (easylistchina+easylist.txt: 45301) -.txfm.ie/.*/itunes-16x16\.png -# ||txfm.ie^*/amazon-16x16.png (easylistchina+easylist.txt: 45300) -.txfm.ie/.*/amazon-16x16\.png -# ||twnmm.com^*/sponsored_logo. (easylistchina+easylist.txt: 45299) -.twnmm.com/.*/sponsored_logo\. -# ||twitch.tv/ad/*=preroll (easylistchina+easylist.txt: 45297) -.twitch.tv/ad/.*=preroll -# ||twentyfour7football.com^*/gpprint.jpg (easylistchina+easylist.txt: 45296) -.twentyfour7football.com/.*/gpprint\.jpg -# ||tweaktown.com/cms/includes/i*.php (easylistchina+easylist.txt: 45295) -.tweaktown.com/cms/includes/i.*\.php -# ||tvsubtitles.net/banners/ (easylistchina+easylist.txt: 45294) -.tvsubtitles.net/banners/ -# ||tvguide.com^*/ecommerce/ (easylistchina+easylist.txt: 45293) -.tvguide.com/.*/ecommerce/ -# ||tvducky.com/imgs/graboid. (easylistchina+easylist.txt: 45292) -.tvducky.com/imgs/graboid\. -# ||tvcatchup.com/wowee/ (easylistchina+easylist.txt: 45291) -.tvcatchup.com/wowee/ -# ||tvbrowser.org/logo_df_tvsponsor_ (easylistchina+easylist.txt: 45290) -.tvbrowser.org/logo_df_tvsponsor_ -# ||tv4chan.com/iframes/ (easylistchina+easylist.txt: 45289) -.tv4chan.com/iframes/ -# ||tv3.ie^*/sponsor. (easylistchina+easylist.txt: 45288) -.tv3.ie/.*/sponsor\. -# ||tuspics.net/onlyPopupOnce.js (easylistchina+easylist.txt: 45287) -.tuspics.net/onlyPopupOnce\.js -# ||tusfiles.net/images/tusfilesb.gif (easylistchina+easylist.txt: 45286) -.tusfiles.net/images/tusfilesb\.gif -# ||tusfiles.net/i/dll.png (easylistchina+easylist.txt: 45285) -.tusfiles.net/i/dll\.png -# ||turnstylenews.com^*/sponsors.png (easylistchina+easylist.txt: 45284) -.turnstylenews.com/.*/sponsors\.png -# ||turboyourpc.com/images/affiliates/ (easylistchina+easylist.txt: 45283) -.turboyourpc.com/images/affiliates/ -# ||turboimagehost.com/p.js (easylistchina+easylist.txt: 45282) -.turboimagehost.com/p\.js -# ||turboimagehost.com/b728_ (easylistchina+easylist.txt: 45281) -.turboimagehost.com/b728_ -# ||turboimagehost.com/b728. (easylistchina+easylist.txt: 45280) -.turboimagehost.com/b728\. -# ||turboimagehost.com/b300_ (easylistchina+easylist.txt: 45279) -.turboimagehost.com/b300_ -# ||turboimagehost.com/b300. (easylistchina+easylist.txt: 45278) -.turboimagehost.com/b300\. -# ||turboimagehost.com/728*.html^ (easylistchina+easylist.txt: 45277) -.turboimagehost.com/728.*\.html[^\w%.-] -# ||turboimagehost.com/300*.html^ (easylistchina+easylist.txt: 45276) -.turboimagehost.com/300.*\.html[^\w%.-] -# ||turbobit.net/pics/7z1xla23ay_ (easylistchina+easylist.txt: 45275) -.turbobit.net/pics/7z1xla23ay_ -# ||turbobit.net/oexktl/muzebra_ (easylistchina+easylist.txt: 45274) -.turbobit.net/oexktl/muzebra_ -# ||turbobit.net/js/acontrol.js? (easylistchina+easylist.txt: 45273) -.turbobit.net/js/acontrol\.js\? -# ||tune.pk/plugins/cb_tunepk/ads/ (easylistchina+easylist.txt: 45272) -.tune.pk/plugins/cb_tunepk/ads/ -# ||tullahomanews.com/news/tn-popup.js (easylistchina+easylist.txt: 45271) -.tullahomanews.com/news/tn-popup\.js -# ||tullahomanews.com/news/banners/ (easylistchina+easylist.txt: 45270) -.tullahomanews.com/news/banners/ -# ||tubeplus.me/resources/js/codec.js (easylistchina+easylist.txt: 45269) -.tubeplus.me/resources/js/codec\.js -# ||tubehome.com/imgs/undressme (easylistchina+easylist.txt: 45268) -.tubehome.com/imgs/undressme -# ||tsn.ca^*_sponsor. (easylistchina+easylist.txt: 45267) -.tsn.ca/.*_sponsor\. -# ||tsdmemphis.com/images/banners/ (easylistchina+easylist.txt: 45266) -.tsdmemphis.com/images/banners/ -# ||tsatic-cdn.net/takeovers/$image (easylistchina+easylist.txt: 45265) -.tsatic-cdn.net/takeovers/ -# ||trutv.com/includes/mods/iframes/mgid-blog.php (easylistchina+easylist.txt: 45264) -.trutv.com/includes/mods/iframes/mgid-blog\.php -# ||trustedreviews.com/mobile/widgets/html/promoted-phones? (easylistchina+easylist.txt: 45263) -.trustedreviews.com/mobile/widgets/html/promoted-phones\? -# ||trunews.com^*/Webbanner.jpg (easylistchina+easylist.txt: 45262) -.trunews.com/.*/Webbanner\.jpg -# ||trucktrend.com^*_160x200_ (easylistchina+easylist.txt: 45261) -.trucktrend.com/.*_160x200_ -# ||trucknetuk.com^*/sponsors/ (easylistchina+easylist.txt: 45260) -.trucknetuk.com/.*/sponsors/ -# ||truck1.eu/_BANNERS_/ (easylistchina+easylist.txt: 45259) -.truck1.eu/_BANNERS_/ -# ||triplehfm.com.au/images/banners/ (easylistchina+easylist.txt: 45258) -.triplehfm.com.au/images/banners/ -# ||tripadvisor.com^*/skyscraper.jpg (easylistchina+easylist.txt: 45257) -.tripadvisor.com/.*/skyscraper\.jpg -# ||tripadvisor.com/adp/ (easylistchina+easylist.txt: 45256) -.tripadvisor.com/adp/ -# ||tripadvisor.*/adp/adp-$subdocument (easylistchina+easylist.txt: 45255) -.tripadvisor.*./(.*/)?adp/adp- -# ||tribune242.com/pubfiles/ (easylistchina+easylist.txt: 45254) -.tribune242.com/pubfiles/ -# ||tribune.com.ng/images/banners/ (easylistchina+easylist.txt: 45253) -.tribune.com.ng/images/banners/ -# ||trgoals.es/adk.html (easylistchina+easylist.txt: 45252) -.trgoals.es/adk\.html -# ||trailrunnermag.com/images/takeovers/ (easylistchina+easylist.txt: 45251) -.trailrunnermag.com/images/takeovers/ -# ||traduguide.com/banner/ (easylistchina+easylist.txt: 45250) -.traduguide.com/banner/ -# ||tradewinds.vi/images/banners/ (easylistchina+easylist.txt: 45249) -.tradewinds.vi/images/banners/ -# ||tracksat.com^*/banners/ (easylistchina+easylist.txt: 45248) -.tracksat.com/.*/banners/ -# ||trackitdown.net/skins/*_campaign/ (easylistchina+easylist.txt: 45247) -.trackitdown.net/skins/.*_campaign/ -# ||tracking.hostgator.com^ (easylistchina+easylist.txt: 45246) -.tracking.hostgator.com -# ||tpb.piraten.lu/static/img/bar.gif (easylistchina+easylist.txt: 45243) -.tpb.piraten.lu/static/img/bar\.gif -# ||toywiz.com/lower-caption-global.html (easylistchina+easylist.txt: 45242) -.toywiz.com/lower-caption-global\.html -# ||toynewsi.com/a/ (easylistchina+easylist.txt: 45241) -.toynewsi.com/a/ -# ||toynews-online.biz/media/banners/ (easylistchina+easylist.txt: 45240) -.toynews-online.biz/media/banners/ -# ||townhall.com^*/ads/ (easylistchina+easylist.txt: 45239) -.townhall.com/.*/ads/ -# ||toucharcade.com/wp-content/uploads/skins/ (easylistchina+easylist.txt: 45238) -.toucharcade.com/wp-content/uploads/skins/ -# ||toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin.jpg (easylistchina+easylist.txt: 45237) -.toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin\.jpg -# ||toucharcade.com/wp-content/themes/*_background_*.jpg (easylistchina+easylist.txt: 45236) -.toucharcade.com/wp-content/themes/.*_background_.*\.jpg -# ||totalguitar.net/images/tgMagazineBanner.gif (easylistchina+easylist.txt: 45235) -.totalguitar.net/images/tgMagazineBanner\.gif -# ||totalguitar.net/images/*_125X125.jpg (easylistchina+easylist.txt: 45234) -.totalguitar.net/images/.*_125X125\.jpg -# ||totalcmd.pl/img/olszak. (easylistchina+easylist.txt: 45233) -.totalcmd.pl/img/olszak\. -# ||totalcmd.pl/img/nucom. (easylistchina+easylist.txt: 45232) -.totalcmd.pl/img/nucom\. -# ||totalcmd.pl/img/billboard_ (easylistchina+easylist.txt: 45231) -.totalcmd.pl/img/billboard_ -# ||total-croatia-news.com/images/banners/ (easylistchina+easylist.txt: 45230) -.total-croatia-news.com/images/banners/ -# ||toshiba.com^*/toshibapromowidget/ (easylistchina+easylist.txt: 45229) -.toshiba.com/.*/toshibapromowidget/ -# ||toshiba.com^*/bookingpromowidget/ (easylistchina+easylist.txt: 45228) -.toshiba.com/.*/bookingpromowidget/ -# ||torrentz.*/mgid/ (easylistchina+easylist.txt: 45227) -.torrentz.*./(.*/)?mgid/ -# ||torrentv.org/images/tsdls.jpg (easylistchina+easylist.txt: 45226) -.torrentv.org/images/tsdls\.jpg -# ||torrentv.org/images/tsdd.jpg (easylistchina+easylist.txt: 45225) -.torrentv.org/images/tsdd\.jpg -# ||torrents.net/wiget.js (easylistchina+easylist.txt: 45224) -.torrents.net/wiget\.js -# ||torrents.net/btguard.gif (easylistchina+easylist.txt: 45223) -.torrents.net/btguard\.gif -# ||torrentroom.com/js/torrents.js (easylistchina+easylist.txt: 45222) -.torrentroom.com/js/torrents\.js -# ||torrentproject.org/out/ (easylistchina+easylist.txt: 45221) -.torrentproject.org/out/ -# ||torrentfusion.com/FastDownload.html (easylistchina+easylist.txt: 45220) -.torrentfusion.com/FastDownload\.html -# ||torrentfunk.com/affprofslider.js (easylistchina+easylist.txt: 45219) -.torrentfunk.com/affprofslider\.js -# ||torrentfreak.com/images/vuze.png (easylistchina+easylist.txt: 45218) -.torrentfreak.com/images/vuze\.png -# ||torrentfreak.com/images/torguard.gif (easylistchina+easylist.txt: 45217) -.torrentfreak.com/images/torguard\.gif -# ||torrenteditor.com/img/graphical-network-monitor.gif (easylistchina+easylist.txt: 45216) -.torrenteditor.com/img/graphical-network-monitor\.gif -# ||torrentcrazy.com/pnd.js (easylistchina+easylist.txt: 45215) -.torrentcrazy.com/pnd\.js -# ||torrentcrazy.com/img/wx.png (easylistchina+easylist.txt: 45214) -.torrentcrazy.com/img/wx\.png -# ||torrentbox.sx/img/download_direct.png (easylistchina+easylist.txt: 45213) -.torrentbox.sx/img/download_direct\.png -# ||torrentbit.net/images/1click/button-long.png (easylistchina+easylist.txt: 45212) -.torrentbit.net/images/1click/button-long\.png -# ||torrent.cd/images/sp/ (easylistchina+easylist.txt: 45211) -.torrent.cd/images/sp/ -# ||torrent.cd/images/main_big_msoft.jpg (easylistchina+easylist.txt: 45210) -.torrent.cd/images/main_big_msoft\.jpg -# ||torrent.cd/images/big_use.gif (easylistchina+easylist.txt: 45209) -.torrent.cd/images/big_use\.gif -# ||torrent.cd/images/banner- (easylistchina+easylist.txt: 45208) -.torrent.cd/images/banner- -# ||torrent-finder.info/cont.php (easylistchina+easylist.txt: 45207) -.torrent-finder.info/cont\.php -# ||torrent-finder.info/cont.html (easylistchina+easylist.txt: 45206) -.torrent-finder.info/cont\.html -# ||toptenreviews.com/flash/ (easylistchina+easylist.txt: 45205) -.toptenreviews.com/flash/ -# ||topix.com/ajax/krillion/ (easylistchina+easylist.txt: 45204) -.topix.com/ajax/krillion/ -# ||topfriv.com/popup.js (easylistchina+easylist.txt: 45203) -.topfriv.com/popup\.js -# ||topalternate.com/assets/sponsored_links- (easylistchina+easylist.txt: 45202) -.topalternate.com/assets/sponsored_links- -# ||toonzone.net^*/placements.php? (easylistchina+easylist.txt: 45201) -.toonzone.net/.*/placements\.php\? -# ||toonova.com/images/site/front/xgift- (easylistchina+easylist.txt: 45200) -.toonova.com/images/site/front/xgift- -# ||toomuchnews.com/dropin/ (easylistchina+easylist.txt: 45199) -.toomuchnews.com/dropin/ -# ||toolslib.net/assets/img/a_dvt/ (easylistchina+easylist.txt: 45198) -.toolslib.net/assets/img/a_dvt/ -# ||tomshardware.com/price/widget/?$xmlhttprequest (easylistchina+easylist.txt: 45197) -.tomshardware.com/price/widget/\? -# ||tomshardware.com/indexAjax.php?ctrl=ajax_pricegrabber$xmlhttprequest (easylistchina+easylist.txt: 45196) -.tomshardware.com/indexAjax\.php\?ctrl=ajax_pricegrabber -# ||tom.itv.com^ (easylistchina+easylist.txt: 45195) -.tom.itv.com -# ||tny.cz/oo/ (easylistchina+easylist.txt: 45194) -.tny.cz/oo/ -# ||tnij.org/rotator (easylistchina+easylist.txt: 45193) -.tnij.org/rotator -# ||tmz.vo.llnwd.net^*/images/*skin (easylistchina+easylist.txt: 45191) -.tmz.vo.llnwd.net/.*/images/.*skin -# ||tmcs.net^ (easylistchina+easylist.txt: 45190) -.tmcs.net -# ||titantv.com/gravity.ashx (easylistchina+easylist.txt: 45189) -.titantv.com/gravity\.ashx -# ||titantorrent.to^*/buttons/download.gif (easylistchina+easylist.txt: 45188) -.titantorrent.to/.*/buttons/download\.gif -# ||titanshare.to/images/buttons/download.gif (easylistchina+easylist.txt: 45187) -.titanshare.to/images/buttons/download\.gif -# ||tinyurl.com/firefox_banner_ (easylistchina+easylist.txt: 45186) -.tinyurl.com/firefox_banner_ -# ||tinypaste.com/public/images/480.png (easylistchina+easylist.txt: 45185) -.tinypaste.com/public/images/480\.png -# ||tindleradio.net/banners/ (easylistchina+easylist.txt: 45183) -.tindleradio.net/banners/ -# ||timestalks.com/images/sponsor- (easylistchina+easylist.txt: 45182) -.timestalks.com/images/sponsor- -# ||timesofoman.com^*/banner/ (easylistchina+easylist.txt: 45181) -.timesofoman.com/.*/banner/ -# ||timesofoman.com/siteImages/MyBannerImages/ (easylistchina+easylist.txt: 45180) -.timesofoman.com/siteImages/MyBannerImages/ -# ||timesofoman.com/FrontInc/top.aspx (easylistchina+easylist.txt: 45179) -.timesofoman.com/FrontInc/top\.aspx -# ||timesnow.tv/googlehome.cms (easylistchina+easylist.txt: 45178) -.timesnow.tv/googlehome\.cms -# ||times.co.sz/files/banners/ (easylistchina+easylist.txt: 45177) -.times.co.sz/files/banners/ -# ||times-herald.com/pubfiles/ (easylistchina+easylist.txt: 45176) -.times-herald.com/pubfiles/ -# ||timeinc.net^*/recirc.js (easylistchina+easylist.txt: 45175) -.timeinc.net/.*/recirc\.js -# ||timeinc.net/*/i/oba-compliance.png (easylistchina+easylist.txt: 45174) -.timeinc.net/.*/i/oba-compliance\.png -# ||time4tv.com/tlv. (easylistchina+easylist.txt: 45173) -.time4tv.com/tlv\. -# ||tigerdroppings.com^*&adcode= (easylistchina+easylist.txt: 45172) -.tigerdroppings.com/.*&adcode= -# ||ticketnetwork.com/images/affiliates/ (easylistchina+easylist.txt: 45171) -.ticketnetwork.com/images/affiliates/ -# ||thunder106.com//wp-content/banners/ (easylistchina+easylist.txt: 45170) -# ||thisisanfield.com^*takeover (easylistchina+easylist.txt: 45169) -.thisisanfield.com/.*takeover -# ||thirdage.com^*_banner.php (easylistchina+easylist.txt: 45168) -.thirdage.com/.*_banner\.php -# ||thinkingwithportals.com^*-skyscraper.swf (easylistchina+easylist.txt: 45167) -.thinkingwithportals.com/.*-skyscraper\.swf -# ||thinkingwithportals.com/images/*-skyscraper. (easylistchina+easylist.txt: 45166) -.thinkingwithportals.com/images/.*-skyscraper\. -# ||thinkbroadband.com/uploads/banners/ (easylistchina+easylist.txt: 45165) -.thinkbroadband.com/uploads/banners/ -# ||theyeshivaworld.com/yw/ (easylistchina+easylist.txt: 45164) -.theyeshivaworld.com/yw/ -# ||thewindowsclub.com^*/banner_ (easylistchina+easylist.txt: 45163) -.thewindowsclub.com/.*/banner_ -# ||thewb.com/thewb/swf/tmz-adblock/ (easylistchina+easylist.txt: 45162) -.thewb.com/thewb/swf/tmz-adblock/ -# ||thevoicebw.com^*325x290.jpg (easylistchina+easylist.txt: 45161) -.thevoicebw.com/.*325x290\.jpg -# ||thevideo.me/js/popup.min.js (easylistchina+easylist.txt: 45160) -.thevideo.me/js/popup\.min\.js -# ||thevideo.me/js/jspc.js (easylistchina+easylist.txt: 45159) -.thevideo.me/js/jspc\.js -# ||thevideo.me/js/jsmpc.js (easylistchina+easylist.txt: 45158) -.thevideo.me/js/jsmpc\.js -# ||thevideo.me/creatives/ (easylistchina+easylist.txt: 45157) -.thevideo.me/creatives/ -# ||thevideo.me/cgi-bin/get_creatives.cgi? (easylistchina+easylist.txt: 45156) -.thevideo.me/cgi-bin/get_creatives\.cgi\? -# ||thetvdb.com/images/jriver_banner.png (easylistchina+easylist.txt: 45155) -.thetvdb.com/images/jriver_banner\.png -# ||thetvdb.com/images/frugal.gif (easylistchina+easylist.txt: 45154) -.thetvdb.com/images/frugal\.gif -# ||thetimes.co.uk/public/encounters/ (easylistchina+easylist.txt: 45153) -.thetimes.co.uk/public/encounters/ -# ||theticketmiami.com/Pics/listenlive/*-Right.jpg (easylistchina+easylist.txt: 45152) -.theticketmiami.com/Pics/listenlive/.*-Right\.jpg -# ||theticketmiami.com/Pics/listenlive/*-Left.jpg (easylistchina+easylist.txt: 45151) -.theticketmiami.com/Pics/listenlive/.*-Left\.jpg -# ||thesweetscience.com/images/banners/ (easylistchina+easylist.txt: 45150) -.thesweetscience.com/images/banners/ -# ||thesurvivalistblog.net^*-banner- (easylistchina+easylist.txt: 45149) -.thesurvivalistblog.net/.*-banner- -# ||thesundaily.my/sites/default/files/twinskyscrapers (easylistchina+easylist.txt: 45148) -.thesundaily.my/sites/default/files/twinskyscrapers -# ||thesuburban.com/universe/addsspace/ (easylistchina+easylist.txt: 45147) -.thesuburban.com/universe/addsspace/ -# ||thesuburban.com/universe/adds/ (easylistchina+easylist.txt: 45146) -.thesuburban.com/universe/adds/ -# ||thestkittsnevisobserver.com/images/banners/ (easylistchina+easylist.txt: 45145) -.thestkittsnevisobserver.com/images/banners/ -# ||thestandard.com.ph^*/banner/ (easylistchina+easylist.txt: 45144) -.thestandard.com.ph/.*/banner/ -# ||thestandard.com.hk/rotate_ (easylistchina+easylist.txt: 45143) -.thestandard.com.hk/rotate_ -# ||thestandard.com.hk/banners/ (easylistchina+easylist.txt: 45142) -.thestandard.com.hk/banners/ -# ||thessdreview.com^*/owc-new-gif1.gif (easylistchina+easylist.txt: 45141) -.thessdreview.com/.*/owc-new-gif1\.gif -# ||thessdreview.com^*/owc-full-banner.jpg (easylistchina+easylist.txt: 45140) -.thessdreview.com/.*/owc-full-banner\.jpg -# ||thessdreview.com^*/amazon-buy (easylistchina+easylist.txt: 45139) -.thessdreview.com/.*/amazon-buy -# ||thessdreview.com^*-bg.jpg (easylistchina+easylist.txt: 45138) -.thessdreview.com/.*-bg\.jpg -# ||thessdreview.com^*-bg-banner- (easylistchina+easylist.txt: 45137) -.thessdreview.com/.*-bg-banner- -# ||thessdreview.com/wp-content/uploads/*/930x64_ (easylistchina+easylist.txt: 45136) -.thessdreview.com/wp-content/uploads/.*/930x64_ -# ||thespiritsbusiness.com^*/Banner150 (easylistchina+easylist.txt: 45135) -.thespiritsbusiness.com/.*/Banner150 -# ||thesource.com/magicshave/ (easylistchina+easylist.txt: 45134) -.thesource.com/magicshave/ -# ||thesentinel.com^*/banners/ (easylistchina+easylist.txt: 45133) -.thesentinel.com/.*/banners/ -# ||therugbyforum.com/trf-images/sponsors/ (easylistchina+easylist.txt: 45132) -.therugbyforum.com/trf-images/sponsors/ -# ||theradiomagazine.co.uk/images/bionics.jpg (easylistchina+easylist.txt: 45131) -.theradiomagazine.co.uk/images/bionics\.jpg -# ||theradiomagazine.co.uk/banners/ (easylistchina+easylist.txt: 45130) -.theradiomagazine.co.uk/banners/ -# ||thepreparednessreview.com/wp-content/uploads/*_185x185.jpg (easylistchina+easylist.txt: 45129) -.thepreparednessreview.com/wp-content/uploads/.*_185x185\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*_175x175.jpg (easylistchina+easylist.txt: 45128) -.thepreparednessreview.com/wp-content/uploads/.*_175x175\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*/250x125- (easylistchina+easylist.txt: 45127) -.thepreparednessreview.com/wp-content/uploads/.*/250x125- -# ||theportugalnews.com/uploads/banner/ (easylistchina+easylist.txt: 45126) -.theportugalnews.com/uploads/banner/ -# ||theplanetweekly.com/images/banners/ (easylistchina+easylist.txt: 45125) -.theplanetweekly.com/images/banners/ -# ||thephuketnews.com/photo/banner/ (easylistchina+easylist.txt: 45124) -.thephuketnews.com/photo/banner/ -# ||thepeninsulaqatar.com^*/banners/ (easylistchina+easylist.txt: 45123) -.thepeninsulaqatar.com/.*/banners/ -# ||thepeak.fm/images/banners/ (easylistchina+easylist.txt: 45122) -.thepeak.fm/images/banners/ -# ||thepaper24-7.com/SiteImages/Tile/ (easylistchina+easylist.txt: 45121) -.thepaper24-7.com/SiteImages/Tile/ -# ||thepaper24-7.com/SiteImages/Banner/ (easylistchina+easylist.txt: 45120) -.thepaper24-7.com/SiteImages/Banner/ -# ||theorganicprepper.ca/images/banners/ (easylistchina+easylist.txt: 45119) -.theorganicprepper.ca/images/banners/ -# ||theonion.com/ads/ (easylistchina+easylist.txt: 45118) -.theonion.com/ads/ -# ||theolympian.com/static/images/weathersponsor/ (easylistchina+easylist.txt: 45117) -.theolympian.com/static/images/weathersponsor/ -# ||theoldie.co.uk/Banners/ (easylistchina+easylist.txt: 45116) -.theoldie.co.uk/Banners/ -# ||thenonleaguefootballpaper.com^*/Lovell-Soccer.jpg (easylistchina+easylist.txt: 45115) -.thenonleaguefootballpaper.com/.*/Lovell-Soccer\.jpg -# ||thenonleaguefootballpaper.com^*/J4K-new-range-pictures.jpg (easylistchina+easylist.txt: 45114) -.thenonleaguefootballpaper.com/.*/J4K-new-range-pictures\.jpg -# ||thenonleaguefootballpaper.com^*/image-non-league.jpeg (easylistchina+easylist.txt: 45113) -.thenonleaguefootballpaper.com/.*/image-non-league\.jpeg -# ||thenonleaguefootballpaper.com^*/Budweiser.jpg (easylistchina+easylist.txt: 45112) -.thenonleaguefootballpaper.com/.*/Budweiser\.jpg -# ||thenonleaguefootballpaper.com^*/ADIDAS_11PRO_WHITEOUT.jpg (easylistchina+easylist.txt: 45111) -.thenonleaguefootballpaper.com/.*/ADIDAS_11PRO_WHITEOUT\.jpg -# ||thenonleaguefootballpaper.com^*/140x140_ (easylistchina+easylist.txt: 45110) -.thenonleaguefootballpaper.com/.*/140x140_ -# ||thenonleaguefootballpaper.com^*-140x300- (easylistchina+easylist.txt: 45109) -.thenonleaguefootballpaper.com/.*-140x300- -# ||thenextweb.com^*/canvas.php?$xmlhttprequest (easylistchina+easylist.txt: 45108) -.thenextweb.com/.*/canvas\.php\? -# ||thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ (easylistchina+easylist.txt: 45107) -.thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ -# ||thenewjournalandguide.com/images/banners/ (easylistchina+easylist.txt: 45106) -.thenewjournalandguide.com/images/banners/ -# ||thenewage.co.za/Image/kingprice.gif (easylistchina+easylist.txt: 45105) -.thenewage.co.za/Image/kingprice\.gif -# ||thenationonlineng.net^*/banners/ (easylistchina+easylist.txt: 45104) -.thenationonlineng.net/.*/banners/ -# ||thenassauguardian.com/images/banners/ (easylistchina+easylist.txt: 45103) -.thenassauguardian.com/images/banners/ -# ||themittani.com/sites/*-skin (easylistchina+easylist.txt: 45102) -.themittani.com/sites/.*-skin -# ||themiscellany.org/images/banners/ (easylistchina+easylist.txt: 45101) -.themiscellany.org/images/banners/ -# ||themis.yahoo.com^ (easylistchina+easylist.txt: 45100) -.themis.yahoo.com -# ||themis-media.com/media/global/images/cskins/ (easylistchina+easylist.txt: 45099) -.themis-media.com/media/global/images/cskins/ -# ||theminiforum.co.uk/images/banners/ (easylistchina+easylist.txt: 45098) -.theminiforum.co.uk/images/banners/ -# ||themidweeksun.co.bw/images/banners/ (easylistchina+easylist.txt: 45097) -.themidweeksun.co.bw/images/banners/ -# ||themag.co.uk/assets/BV200x90TOPBANNER.png (easylistchina+easylist.txt: 45096) -.themag.co.uk/assets/BV200x90TOPBANNER\.png -# ||thelyricarchive.com/new/view/ (easylistchina+easylist.txt: 45095) -.thelyricarchive.com/new/view/ -# ||thelodownny.com/leslog/ads/ (easylistchina+easylist.txt: 45094) -.thelodownny.com/leslog/ads/ -# ||thelocal.com/scripts/fancybox/ (easylistchina+easylist.txt: 45093) -.thelocal.com/scripts/fancybox/ -# ||theliberianjournal.com/flash/banner (easylistchina+easylist.txt: 45092) -.theliberianjournal.com/flash/banner -# ||theleader.info/banner (easylistchina+easylist.txt: 45091) -.theleader.info/banner -# ||thelakewoodscoop.com^*banner (easylistchina+easylist.txt: 45090) -.thelakewoodscoop.com/.*banner -# ||thejournal.ie/media/hpto/ (easylistchina+easylist.txt: 45089) -.thejournal.ie/media/hpto/ -# ||thejointblog.com^*/dablab.gif (easylistchina+easylist.txt: 45088) -.thejointblog.com/.*/dablab\.gif -# ||thejointblog.com/wp-content/uploads/*-235x (easylistchina+easylist.txt: 45087) -.thejointblog.com/wp-content/uploads/.*-235x -# ||thejesperbay.com^ (easylistchina+easylist.txt: 45086) -.thejesperbay.com -# ||theispguide.com/topbanner.asp? (easylistchina+easylist.txt: 45085) -.theispguide.com/topbanner\.asp\? -# ||theispguide.com/premiumisp.html (easylistchina+easylist.txt: 45084) -.theispguide.com/premiumisp\.html -# ||theindependentbd.com^*/banner/ (easylistchina+easylist.txt: 45083) -.theindependentbd.com/.*/banner/ -# ||thehubsa.co.za^*/sponsor_ (easylistchina+easylist.txt: 45082) -.thehubsa.co.za/.*/sponsor_ -# ||thehindu.com/multimedia/*/sivananda_sponsorch_ (easylistchina+easylist.txt: 45081) -.thehindu.com/multimedia/.*/sivananda_sponsorch_ -# ||thehighstreetweb.com^*/banners/ (easylistchina+easylist.txt: 45080) -.thehighstreetweb.com/.*/banners/ -# ||thehealthcareblog.com/files/*/THCB-Validic-jpg-opt.jpg (easylistchina+easylist.txt: 45079) -.thehealthcareblog.com/files/.*/THCB-Validic-jpg-opt\.jpg -# ||thehealthcareblog.com/files/*/athena-300.jpg (easylistchina+easylist.txt: 45078) -.thehealthcareblog.com/files/.*/athena-300\.jpg -# ||thehealthcareblog.com/files/*/American-Resident-Project-Logo- (easylistchina+easylist.txt: 45077) -.thehealthcareblog.com/files/.*/American-Resident-Project-Logo- -# ||thefrontierpost.com/media/banner/ (easylistchina+easylist.txt: 45076) -.thefrontierpost.com/media/banner/ -# ||thefile.me^*.php?*zoneid (easylistchina+easylist.txt: 45075) -.thefile.me/.*\.php\?.*zoneid -# ||theenglishgarden.co.uk^*/bannerImage. (easylistchina+easylist.txt: 45074) -.theenglishgarden.co.uk/.*/bannerImage\. -# ||theedinburghreporter.co.uk/hmbanner/ (easylistchina+easylist.txt: 45073) -.theedinburghreporter.co.uk/hmbanner/ -# ||thedomainstat.com/filemanager/userfiles/banners/ (easylistchina+easylist.txt: 45072) -.thedomainstat.com/filemanager/userfiles/banners/ -# ||thedirectory.co.zw/banners/ (easylistchina+easylist.txt: 45071) -.thedirectory.co.zw/banners/ -# ||theday.com/assets/images/sponsorlogos/ (easylistchina+easylist.txt: 45070) -.theday.com/assets/images/sponsorlogos/ -# ||thedailystar.net^*/scbbd.gif (easylistchina+easylist.txt: 45069) -.thedailystar.net/.*/scbbd\.gif -# ||thedailystar.net^*/footer-sticky-add/ (easylistchina+easylist.txt: 45068) -.thedailystar.net/.*/footer-sticky-add/ -# ||thedailystar.net^*/aritel-logo.jpg (easylistchina+easylist.txt: 45067) -.thedailystar.net/.*/aritel-logo\.jpg -# ||thedailystar.net^*/Animation-200-X-30.gif (easylistchina+easylist.txt: 45066) -.thedailystar.net/.*/Animation-200-X-30\.gif -# ||thedailystar.net^*/400-x-120-pixel.jpg (easylistchina+easylist.txt: 45065) -.thedailystar.net/.*/400-x-120-pixel\.jpg -# ||thedailysheeple.com/images/banners/ (easylistchina+easylist.txt: 45064) -.thedailysheeple.com/images/banners/ -# ||thedailypaul.com/images/amzn- (easylistchina+easylist.txt: 45063) -.thedailypaul.com/images/amzn- -# ||thedailymeal.net^*/featured_partners/ (easylistchina+easylist.txt: 45062) -.thedailymeal.net/.*/featured_partners/ -# ||thedailymeal.com^*_sponsoredby.png (easylistchina+easylist.txt: 45061) -.thedailymeal.com/.*_sponsoredby\.png -# ||thedailymash.co.uk/templates/mashtastic/gutters/ (easylistchina+easylist.txt: 45060) -.thedailymash.co.uk/templates/mashtastic/gutters/ -# ||thedailyherald.com/images/banners/ (easylistchina+easylist.txt: 45059) -.thedailyherald.com/images/banners/ -# ||thecsuite.co.uk^*/banners/ (easylistchina+easylist.txt: 45058) -.thecsuite.co.uk/.*/banners/ -# ||thecorrsmisc.com/msb_banner.jpg (easylistchina+easylist.txt: 45057) -.thecorrsmisc.com/msb_banner\.jpg -# ||thecorrsmisc.com/brokenthread.jpg (easylistchina+easylist.txt: 45056) -.thecorrsmisc.com/brokenthread\.jpg -# ||thecorrsmisc.com/10feet_banner.gif (easylistchina+easylist.txt: 45055) -.thecorrsmisc.com/10feet_banner\.gif -# ||thecnj.com/images/hotel-banner.jpg (easylistchina+easylist.txt: 45054) -.thecnj.com/images/hotel-banner\.jpg -# ||thecitizen.co.tz^*/banners/ (easylistchina+easylist.txt: 45053) -.thecitizen.co.tz/.*/banners/ -# ||thechive.files.wordpress.com^*-wallpaper- (easylistchina+easylist.txt: 45052) -.thechive.files.wordpress.com/.*-wallpaper- -# ||thecharlottepost.com/cache/sql/fba/ (easylistchina+easylist.txt: 45051) -.thecharlottepost.com/cache/sql/fba/ -# ||thecenturion.co.za^*/banners/ (easylistchina+easylist.txt: 45050) -.thecenturion.co.za/.*/banners/ -# ||thecatholicuniverse.com^*-banner- (easylistchina+easylist.txt: 45049) -.thecatholicuniverse.com/.*-banner- -# ||thecatholicuniverse.com^*-advert- (easylistchina+easylist.txt: 45048) -.thecatholicuniverse.com/.*-advert- -# ||thecatholicuniverse.com^*-ad. (easylistchina+easylist.txt: 45047) -.thecatholicuniverse.com/.*-ad\. -# ||thebusinessdesk.com/assets/_files/banners/ (easylistchina+easylist.txt: 45046) -.thebusinessdesk.com/assets/_files/banners/ -# ||theburningplatform.com/wp-content/uploads/*_180x150.gif (easylistchina+easylist.txt: 45045) -.theburningplatform.com/wp-content/uploads/.*_180x150\.gif -# ||thebulls.co.za^*/sponsors/ (easylistchina+easylist.txt: 45044) -.thebulls.co.za/.*/sponsors/ -# ||thebull.com.au/admin/uploads/banners/ (easylistchina+easylist.txt: 45043) -.thebull.com.au/admin/uploads/banners/ -# ||theblaze.com^*_background_ (easylistchina+easylist.txt: 45042) -.theblaze.com/.*_background_ -# ||theblaze.com^*-interstitial- (easylistchina+easylist.txt: 45041) -.theblaze.com/.*-interstitial- -# ||theblaze.com^*-backgroundwide- (easylistchina+easylist.txt: 45040) -.theblaze.com/.*-backgroundwide- -# ||theblaze.com^*-background2- (easylistchina+easylist.txt: 45039) -.theblaze.com/.*-background2- -# ||theblaze.com^*-background- (easylistchina+easylist.txt: 45038) -.theblaze.com/.*-background- -# ||thebeat99.com/cmsadmin/banner/ (easylistchina+easylist.txt: 45037) -.thebeat99.com/cmsadmin/banner/ -# ||thebay.co.uk/banners/ (easylistchina+easylist.txt: 45036) -.thebay.co.uk/banners/ -# ||theattractionforums.com/images/rbsbanners/ (easylistchina+easylist.txt: 45035) -.theattractionforums.com/images/rbsbanners/ -# ||theasiantoday.com/image/banners/ (easylistchina+easylist.txt: 45034) -.theasiantoday.com/image/banners/ -# ||theartnewspaper.com/aads/ (easylistchina+easylist.txt: 45033) -.theartnewspaper.com/aads/ -# ||theaquarian.com^*/banners/ (easylistchina+easylist.txt: 45032) -.theaquarian.com/.*/banners/ -# ||theafricachannel.com^*/promos/ (easylistchina+easylist.txt: 45031) -.theafricachannel.com/.*/promos/ -# ||theactivetimes.net^*/featured_partners/ (easylistchina+easylist.txt: 45030) -.theactivetimes.net/.*/featured_partners/ -# ||the-numbers.com^*/allposters/ (easylistchina+easylist.txt: 45029) -.the-numbers.com/.*/allposters/ -# ||thaivisa.com/promotions/banners/ (easylistchina+easylist.txt: 45028) -.thaivisa.com/promotions/banners/ -# ||tfd.com^*/grammarly/ (easylistchina+easylist.txt: 45027) -.tfd.com/.*/grammarly/ -# ||textpattern.com/images/117.gif (easylistchina+easylist.txt: 45026) -.textpattern.com/images/117\.gif -# ||testseek.com/price_pricegrabber_ (easylistchina+easylist.txt: 45025) -.testseek.com/price_pricegrabber_ -# ||terafile.co/i/banners/ (easylistchina+easylist.txt: 45024) -.terafile.co/i/banners/ -# ||tentonhammer.com^*/takeovers/ (easylistchina+easylist.txt: 45023) -.tentonhammer.com/.*/takeovers/ -# ||tennisworldusa.org/banners/ (easylistchina+easylist.txt: 45022) -.tennisworldusa.org/banners/ -# ||tennischannel.com/tc-button-gif.gif (easylistchina+easylist.txt: 45021) -.tennischannel.com/tc-button-gif\.gif -# ||tennischannel.com/prud.jpg (easylistchina+easylist.txt: 45020) -.tennischannel.com/prud\.jpg -# ||tenmanga.com/files/js/site_skin.js (easylistchina+easylist.txt: 45019) -.tenmanga.com/files/js/site_skin\.js -# ||tenmanga.com/files/js/manga_$subdocument (easylistchina+easylist.txt: 45018) -.tenmanga.com/files/js/manga_ -# ||ten-tenths.com/sidebar.html (easylistchina+easylist.txt: 45017) -.ten-tenths.com/sidebar\.html -# ||templatesbox.com^*/banners/ (easylistchina+easylist.txt: 45016) -.templatesbox.com/.*/banners/ -# ||telegraphindia.com^*/hoabanner. (easylistchina+easylist.txt: 45015) -.telegraphindia.com/.*/hoabanner\. -# ||telegraphindia.com^*/banners/ (easylistchina+easylist.txt: 45014) -.telegraphindia.com/.*/banners/ -# ||telegraph.co.uk/sponsored/ (easylistchina+easylist.txt: 45013) -.telegraph.co.uk/sponsored/ -# ||telegraph.co.uk/international/$subdocument (easylistchina+easylist.txt: 45012) -.telegraph.co.uk/international/ -# ||telecomtiger.com^*_640x480_ (easylistchina+easylist.txt: 45011) -.telecomtiger.com/.*_640x480_ -# ||telecomtiger.com^*_250x250_ (easylistchina+easylist.txt: 45010) -.telecomtiger.com/.*_250x250_ -# ||tehrantimes.com/images/banners/ (easylistchina+easylist.txt: 45009) -.tehrantimes.com/images/banners/ -# ||teesupport.com/wp-content/themes/ts-blog/images/cp- (easylistchina+easylist.txt: 45008) -.teesupport.com/wp-content/themes/ts-blog/images/cp- -# ||teesoft.info/images/uniblue.png (easylistchina+easylist.txt: 45007) -.teesoft.info/images/uniblue\.png -# ||techtree.com^*/jquery.catfish.js (easylistchina+easylist.txt: 45006) -.techtree.com/.*/jquery\.catfish\.js -# ||techtarget.com^*/leaderboard.html (easylistchina+easylist.txt: 45005) -.techtarget.com/.*/leaderboard\.html -# ||techsupportforum.com^*/banners/ (easylistchina+easylist.txt: 45004) -.techsupportforum.com/.*/banners/ -# ||techradar.com^*/img/*_takeover_ (easylistchina+easylist.txt: 45003) -.techradar.com/.*/img/.*_takeover_ -# ||techpowerup.com/images/bnnrs/ (easylistchina+easylist.txt: 45002) -.techpowerup.com/images/bnnrs/ -# ||technomag.co.zw^*/TakeOverCampaign. (easylistchina+easylist.txt: 45001) -.technomag.co.zw/.*/TakeOverCampaign\. -# ||technewsworld.com/images/sda/ (easylistchina+easylist.txt: 45000) -.technewsworld.com/images/sda/ -# ||technewsdaily.com/crime-stats/local_crime_stats.php (easylistchina+easylist.txt: 44999) -.technewsdaily.com/crime-stats/local_crime_stats\.php -# ||techhive.com/ads/ (easylistchina+easylist.txt: 44998) -.techhive.com/ads/ -# ||techexams.net/banners/ (easylistchina+easylist.txt: 44997) -.techexams.net/banners/ -# ||techcentral.co.za^*/wallpaper- (easylistchina+easylist.txt: 44996) -.techcentral.co.za/.*/wallpaper- -# ||techcentral.co.za^*/background-manager/ (easylistchina+easylist.txt: 44995) -.techcentral.co.za/.*/background-manager/ -# ||techcentral.co.za^*-wallpaper- (easylistchina+easylist.txt: 44994) -.techcentral.co.za/.*-wallpaper- -# ||teamfourstar.com/img/918thefan.jpg (easylistchina+easylist.txt: 44993) -.teamfourstar.com/img/918thefan\.jpg -# ||tdfimg.com/go/*.html (easylistchina+easylist.txt: 44992) -.tdfimg.com/go/.*\.html -# ||tbib.org/kona/ (easylistchina+easylist.txt: 44990) -.tbib.org/kona/ -# ||taxsutra.com^*/banner/ (easylistchina+easylist.txt: 44989) -.taxsutra.com/.*/banner/ -# ||taxidrivermovie.com/style/sk-p.js (easylistchina+easylist.txt: 44988) -.taxidrivermovie.com/style/sk-p\.js -# ||tastro.org/x/ads*.php (easylistchina+easylist.txt: 44987) -.tastro.org/x/ads.*\.php -# ||targetedtopic.com^ (easylistchina+easylist.txt: 44986) -.targetedtopic.com -# ||targetedinfo.com^ (easylistchina+easylist.txt: 44985) -.targetedinfo.com -# ||tanzanite.infomine.com^ (easylistchina+easylist.txt: 44984) -.tanzanite.infomine.com -# ||tampermonkey.net^*.*.$subdocument (easylistchina+easylist.txt: 44983) -.tampermonkey.net/.*\..*\. -# ||tampermonkey.net/bner/ (easylistchina+easylist.txt: 44982) -.tampermonkey.net/bner/ -# ||talksport.co.uk^*/ts_takeover/ (easylistchina+easylist.txt: 44981) -.talksport.co.uk/.*/ts_takeover/ -# ||talkradioeurope.net/images/banners/ (easylistchina+easylist.txt: 44980) -.talkradioeurope.net/images/banners/ -# ||talkradioeurope.com/images/banners/ (easylistchina+easylist.txt: 44979) -.talkradioeurope.com/images/banners/ -# ||talkphotography.co.uk/images/externallogos/banners/ (easylistchina+easylist.txt: 44978) -.talkphotography.co.uk/images/externallogos/banners/ -# ||talkgold.com/bans/ (easylistchina+easylist.txt: 44977) -.talkgold.com/bans/ -# ||talkers.com/images/banners/ (easylistchina+easylist.txt: 44976) -.talkers.com/images/banners/ -# ||talkers.com/imagebase/ (easylistchina+easylist.txt: 44975) -.talkers.com/imagebase/ -# ||take40.com/images/takeover/ (easylistchina+easylist.txt: 44974) -.take40.com/images/takeover/ -# ||take40.com/css/takeover.css (easylistchina+easylist.txt: 44973) -.take40.com/css/takeover\.css -# ||taiwannews.com.tw/etn/images/banner_ (easylistchina+easylist.txt: 44972) -.taiwannews.com.tw/etn/images/banner_ -# ||taipeitimes.com/js/gad.js? (easylistchina+easylist.txt: 44971) -.taipeitimes.com/js/gad\.js\? -# ||tabloidmedia.co.za/images/signs2.swf (easylistchina+easylist.txt: 44970) -.tabloidmedia.co.za/images/signs2\.swf -# ||tabla.com.sg/SIA.jpg (easylistchina+easylist.txt: 44969) -.tabla.com.sg/SIA\.jpg -# ||sythe.org/clientscript/agold.png (easylistchina+easylist.txt: 44968) -.sythe.org/clientscript/agold\.png -# ||sythe.org/bnrs/ (easylistchina+easylist.txt: 44967) -.sythe.org/bnrs/ -# ||systemexplorer.net/sessg.php (easylistchina+easylist.txt: 44966) -.systemexplorer.net/sessg\.php -# ||sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/$image (easylistchina+easylist.txt: 44965) -.sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/ -# ||sxc.hu/img/banner (easylistchina+easylist.txt: 44964) -.sxc.hu/img/banner -# ||swoknews.com/images/banners/ (easylistchina+easylist.txt: 44963) -.swoknews.com/images/banners/ -# ||swimnewslibrary.com^*_960x120.jpg (easylistchina+easylist.txt: 44962) -.swimnewslibrary.com/.*_960x120\.jpg -# ||swimnews.com^*/banner_ (easylistchina+easylist.txt: 44961) -.swimnews.com/.*/banner_ -# ||swiftco.net/banner/ (easylistchina+easylist.txt: 44960) -.swiftco.net/banner/ -# ||sweepsadvantage.com/336x230-2.php (easylistchina+easylist.txt: 44959) -.sweepsadvantage.com/336x230-2\.php -# ||swedishwire.com/images/banners/ (easylistchina+easylist.txt: 44958) -.swedishwire.com/images/banners/ -# ||swampbuggy.com/media/images/banners/ (easylistchina+easylist.txt: 44957) -.swampbuggy.com/media/images/banners/ -# ||swagmp3.com/cdn-cgi/pe/ (easylistchina+easylist.txt: 44956) -.swagmp3.com/cdn-cgi/pe/ -# ||surfthechannel.com/promo/ (easylistchina+easylist.txt: 44955) -.surfthechannel.com/promo/ -# ||superplatyna.com/automater.swf (easylistchina+easylist.txt: 44954) -.superplatyna.com/automater\.swf -# ||supermonitoring.com/images/banners/ (easylistchina+easylist.txt: 44953) -.supermonitoring.com/images/banners/ -# ||supermarket.co.za/images/advetising/ (easylistchina+easylist.txt: 44952) -.supermarket.co.za/images/advetising/ -# ||superbike-news.co.uk/absolutebm/banners/ (easylistchina+easylist.txt: 44951) -.superbike-news.co.uk/absolutebm/banners/ -# ||suntimes.com^*/banners/ (easylistchina+easylist.txt: 44950) -.suntimes.com/.*/banners/ -# ||sunshineradio.ie/images/banners/ (easylistchina+easylist.txt: 44949) -.sunshineradio.ie/images/banners/ -# ||sunriseradio.com/js/rbanners.js (easylistchina+easylist.txt: 44948) -.sunriseradio.com/js/rbanners\.js -# ||sun-fm.com/resources/creative/ (easylistchina+easylist.txt: 44947) -.sun-fm.com/resources/creative/ -# ||sulekha.com^*/sulekhabanner.aspx (easylistchina+easylist.txt: 44946) -.sulekha.com/.*/sulekhabanner\.aspx -# ||sulekha.com^*/bannerhelper.html (easylistchina+easylist.txt: 44945) -.sulekha.com/.*/bannerhelper\.html -# ||succeed.co.za^*/banner_ (easylistchina+easylist.txt: 44944) -.succeed.co.za/.*/banner_ -# ||subs4free.com^*/wh4_s4f_$script (easylistchina+easylist.txt: 44943) -.subs4free.com/.*/wh4_s4f_ -# ||submarinecablemap.com^*-sponsored.png (easylistchina+easylist.txt: 44942) -.submarinecablemap.com/.*-sponsored\.png -# ||stv.tv/img/player/stvplayer-sponsorstrip- (easylistchina+easylist.txt: 44941) -.stv.tv/img/player/stvplayer-sponsorstrip- -# ||stuff.tv/client/skinning/ (easylistchina+easylist.txt: 44940) -.stuff.tv/client/skinning/ -# ||stuff.co.nz/stuff/widgets/lifedirect/ (easylistchina+easylist.txt: 44938) -.stuff.co.nz/stuff/widgets/lifedirect/ -# ||stuff.co.nz/stuff/tom/mags-widget/ (easylistchina+easylist.txt: 44937) -.stuff.co.nz/stuff/tom/mags-widget/ -# ||stuff.co.nz/stuff/misc/flying-flowers/ (easylistchina+easylist.txt: 44936) -.stuff.co.nz/stuff/misc/flying-flowers/ -# ||stuff.co.nz/stuff/*banner (easylistchina+easylist.txt: 44935) -.stuff.co.nz/stuff/.*banner -# ||stuff.co.nz/interactives/stuff-bayleys/ (easylistchina+easylist.txt: 44934) -.stuff.co.nz/interactives/stuff-bayleys/ -# ||stuff.co.nz/files/NZBoatM4Gwidget.html (easylistchina+easylist.txt: 44933) -.stuff.co.nz/files/NZBoatM4Gwidget\.html -# ||stuff.co.nz/clientdev/production/iframes/ (easylistchina+easylist.txt: 44932) -.stuff.co.nz/clientdev/production/iframes/ -# ||stuff.co.nz/1361239022/107/8323107.jpg (easylistchina+easylist.txt: 44931) -.stuff.co.nz/1361239022/107/8323107\.jpg -# ||stuff.co.nz/1319769787/395/5871395.jpg (easylistchina+easylist.txt: 44930) -.stuff.co.nz/1319769787/395/5871395\.jpg -# ||student-jobs.co.uk/banner. (easylistchina+easylist.txt: 44929) -.student-jobs.co.uk/banner\. -# ||streams.tv/js/slidingbanner.js (easylistchina+easylist.txt: 44928) -.streams.tv/js/slidingbanner\.js -# ||streams.tv/js/pu.js (easylistchina+easylist.txt: 44927) -.streams.tv/js/pu\.js -# ||streams.tv/js/bn5.js (easylistchina+easylist.txt: 44926) -.streams.tv/js/bn5\.js -# ||streamguys.com^*/amazon.png (easylistchina+easylist.txt: 44925) -.streamguys.com/.*/amazon\.png -# ||streamcloud.eu/deliver.php (easylistchina+easylist.txt: 44924) -.streamcloud.eu/deliver\.php -# ||stream2watch.me/yield.html (easylistchina+easylist.txt: 44923) -.stream2watch.me/yield\.html -# ||stream2watch.me/Los_Br.png (easylistchina+easylist.txt: 44922) -.stream2watch.me/Los_Br\.png -# ||stream2watch.me/images/hd1.png (easylistchina+easylist.txt: 44921) -.stream2watch.me/images/hd1\.png -# ||stream2watch.me/ed (easylistchina+easylist.txt: 44920) -.stream2watch.me/ed -# ||stream2watch.me/eadt.php (easylistchina+easylist.txt: 44919) -.stream2watch.me/eadt\.php -# ||stream2watch.me/eadb.php (easylistchina+easylist.txt: 44918) -.stream2watch.me/eadb\.php -# ||stream2watch.me/chat1.html (easylistchina+easylist.txt: 44917) -.stream2watch.me/chat1\.html -# ||stream2watch.me/ad10.html (easylistchina+easylist.txt: 44916) -.stream2watch.me/ad10\.html -# ||stream2watch.me/ad.html (easylistchina+easylist.txt: 44915) -.stream2watch.me/ad\.html -# ||stream2watch.me/_$subdocument (easylistchina+easylist.txt: 44914) -.stream2watch.me/_ -# ||stream2watch.me/900yahoo.html (easylistchina+easylist.txt: 44913) -.stream2watch.me/900yahoo\.html -# ||stream2watch.me/900rev.html (easylistchina+easylist.txt: 44912) -.stream2watch.me/900rev\.html -# ||stream2watch.me/600pick.png (easylistchina+easylist.txt: 44911) -.stream2watch.me/600pick\.png -# ||stream2watch.co/images/hd1.png (easylistchina+easylist.txt: 44910) -.stream2watch.co/images/hd1\.png -# ||stream2watch.co/frames/ (easylistchina+easylist.txt: 44909) -.stream2watch.co/frames/ -# ||stream.heavenmedia.net^ (easylistchina+easylist.txt: 44908) -.stream.heavenmedia.net -# ||strategypage.com^*_banner (easylistchina+easylist.txt: 44907) -.strategypage.com/.*_banner -# ||storewidget.pcauthority.com.au^ (easylistchina+easylist.txt: 44906) -.storewidget.pcauthority.com.au -# ||stopstream.com/ads/ (easylistchina+easylist.txt: 44905) -.stopstream.com/ads/ -# ||stopforumspam.com/img/snelserver.swf (easylistchina+easylist.txt: 44904) -.stopforumspam.com/img/snelserver\.swf -# ||stockhouse.com^*-300x75.gif (easylistchina+easylist.txt: 44903) -.stockhouse.com/.*-300x75\.gif -# ||stlyrics.com^*_st.js (easylistchina+easylist.txt: 44902) -.stlyrics.com/.*_st\.js -# ||stlyrics.com^*_az.js (easylistchina+easylist.txt: 44901) -.stlyrics.com/.*_az\.js -# ||stltoday.com^*_sponsor.gif (easylistchina+easylist.txt: 44900) -.stltoday.com/.*_sponsor\.gif -# ||stjohntradewindsnews.com/images/banners/ (easylistchina+easylist.txt: 44899) -.stjohntradewindsnews.com/images/banners/ -# ||sticker.yadro.ru/ad/ (easylistchina+easylist.txt: 44898) -.sticker.yadro.ru/ad/ -# ||steroid.com/dsoct09.swf (easylistchina+easylist.txt: 44897) -.steroid.com/dsoct09\.swf -# ||steroid.com/banner/ (easylistchina+easylist.txt: 44896) -.steroid.com/banner/ -# ||sternfannetwork.com/forum/images/banners/ (easylistchina+easylist.txt: 44895) -.sternfannetwork.com/forum/images/banners/ -# ||steambuy.com/steambuy.gif (easylistchina+easylist.txt: 44894) -.steambuy.com/steambuy\.gif -# ||steamanalyst.com/a/www/ (easylistchina+easylist.txt: 44893) -.steamanalyst.com/a/www/ -# ||staticworld.net/images/*_pcwskin_ (easylistchina+easylist.txt: 44892) -.staticworld.net/images/.*_pcwskin_ -# ||staticneo.com/neoassets/iframes/leaderboard_bottom. (easylistchina+easylist.txt: 44891) -.staticneo.com/neoassets/iframes/leaderboard_bottom\. -# ||static.nfl.com^*-background- (easylistchina+easylist.txt: 44889) -.static.nfl.com/.*-background- -# ||static.hltv.org//images/gofastbg.png (easylistchina+easylist.txt: 44888) -# ||static.hd-trailers.net/js/javascript_*.js| (easylistchina+easylist.txt: 44887) -.static.hd-trailers.net/js/javascript_.*\.js$ -# ||static-economist.com^*/timekeeper-by-rolex-medium.png (easylistchina+easylist.txt: 44886) -.static-economist.com/.*/timekeeper-by-rolex-medium\.png -# ||startxchange.com/bnr.php (easylistchina+easylist.txt: 44885) -.startxchange.com/bnr\.php -# ||star883.org^*/sponsors. (easylistchina+easylist.txt: 44884) -.star883.org/.*/sponsors\. -# ||standardmedia.co.ke/flash/ (easylistchina+easylist.txt: 44883) -.standardmedia.co.ke/flash/ -# ||standard.net/sites/default/files/images/wallpapers/ (easylistchina+easylist.txt: 44882) -.standard.net/sites/default/files/images/wallpapers/ -# ||stagnitomedia.com/view-banner- (easylistchina+easylist.txt: 44881) -.stagnitomedia.com/view-banner- -# ||stad.com/googlefoot2.php? (easylistchina+easylist.txt: 44880) -.stad.com/googlefoot2\.php\? -# ||st701.com/stomp/banners/ (easylistchina+easylist.txt: 44879) -.st701.com/stomp/banners/ -# ||ssl-images-amazon.com/images/*/browser-scripts/da- (easylistchina+easylist.txt: 44878) -.ssl-images-amazon.com/images/.*/browser-scripts/da- -# ||srv.thespacereporter.com^ (easylistchina+easylist.txt: 44877) -.srv.thespacereporter.com -# ||squadedit.com/img/peanuts/ (easylistchina+easylist.txt: 44876) -.squadedit.com/img/peanuts/ -# ||spycss.com/images/hostgator.gif (easylistchina+easylist.txt: 44874) -.spycss.com/images/hostgator\.gif -# ||spreaker.net/spots/ (easylistchina+easylist.txt: 44873) -.spreaker.net/spots/ -# ||spotflux.com/service/partner.php (easylistchina+easylist.txt: 44872) -.spotflux.com/service/partner\.php -# ||sportcategory.org/pu/ (easylistchina+easylist.txt: 44871) -.sportcategory.org/pu/ -# ||sportcategory.com/ads/ (easylistchina+easylist.txt: 44870) -.sportcategory.com/ads/ -# ||sporcle.com/adn/yak.php? (easylistchina+easylist.txt: 44869) -.sporcle.com/adn/yak\.php\? -# ||sponsors.webosroundup.com^ (easylistchina+easylist.txt: 44868) -.sponsors.webosroundup.com -# ||sponsors.s2ki.com^ (easylistchina+easylist.txt: 44867) -.sponsors.s2ki.com -# ||spicegrenada.com/images/banners/ (easylistchina+easylist.txt: 44866) -.spicegrenada.com/images/banners/ -# ||speroforum.com/images/sponsor_ (easylistchina+easylist.txt: 44865) -.speroforum.com/images/sponsor_ -# ||speedvideo.net/img/playerFk.gif (easylistchina+easylist.txt: 44864) -.speedvideo.net/img/playerFk\.gif -# ||speedvid.net/ad.htm (easylistchina+easylist.txt: 44863) -.speedvid.net/ad\.htm -# ||speedtv.com^*/tissot-logo.png (easylistchina+easylist.txt: 44862) -.speedtv.com/.*/tissot-logo\.png -# ||speedtv.com/js/interstitial.js (easylistchina+easylist.txt: 44861) -.speedtv.com/js/interstitial\.js -# ||speedtv.com.edgesuite.net/img/monthly/takeovers/ (easylistchina+easylist.txt: 44860) -.speedtv.com.edgesuite.net/img/monthly/takeovers/ -# ||speedtest.net/flash/60speedify$object-subrequest (easylistchina+easylist.txt: 44859) -.speedtest.net/flash/60speedify -# ||speedtest.net/flash/59rvvrpc-$object-subrequest (easylistchina+easylist.txt: 44858) -.speedtest.net/flash/59rvvrpc- -# ||spartoo.eu/footer_tag_iframe_ (easylistchina+easylist.txt: 44856) -.spartoo.eu/footer_tag_iframe_ -# ||spaceweather.com/abdfeeter/$image (easylistchina+easylist.txt: 44855) -.spaceweather.com/abdfeeter/ -# ||space.com/promo/ (easylistchina+easylist.txt: 44854) -.space.com/promo/ -# ||sowetanlive.co.za/banners/ (easylistchina+easylist.txt: 44853) -.sowetanlive.co.za/banners/ -# ||southafricab2b.co.za/banners/ (easylistchina+easylist.txt: 44852) -.southafricab2b.co.za/banners/ -# ||sourceforge.net/images/ban/ (easylistchina+easylist.txt: 44851) -.sourceforge.net/images/ban/ -# ||sourcefed.com/wp-content/uploads/*/netflix4.jpg (easylistchina+easylist.txt: 44850) -.sourcefed.com/wp-content/uploads/.*/netflix4\.jpg -# ||soundtracklyrics.net^*_az.js (easylistchina+easylist.txt: 44849) -.soundtracklyrics.net/.*_az\.js -# ||soundspheremag.com/images/banners/ (easylistchina+easylist.txt: 44848) -.soundspheremag.com/images/banners/ -# ||soundcloud.com/promoted/ (easylistchina+easylist.txt: 44847) -.soundcloud.com/promoted/ -# ||soundcloud.com/audio-ad? (easylistchina+easylist.txt: 44846) -.soundcloud.com/audio-ad\? -# ||sorcerers.net/images/aff/ (easylistchina+easylist.txt: 44845) -.sorcerers.net/images/aff/ -# ||sootoday.com/uploads/banners/ (easylistchina+easylist.txt: 44844) -.sootoday.com/uploads/banners/ -# ||songspk.name/textlinks/ (easylistchina+easylist.txt: 44843) -.songspk.name/textlinks/ -# ||songspk.name/imagepk.gif (easylistchina+easylist.txt: 44842) -.songspk.name/imagepk\.gif -# ||songspk.link/textlinks/ (easylistchina+easylist.txt: 44840) -.songspk.link/textlinks/ -# ||songs.pk/textlinks/ (easylistchina+easylist.txt: 44839) -.songs.pk/textlinks/ -# ||someecards.com^*/images/skin/ (easylistchina+easylist.txt: 44838) -.someecards.com/.*/images/skin/ -# ||solvater.com/images/hd.jpg (easylistchina+easylist.txt: 44837) -.solvater.com/images/hd\.jpg -# ||solomonstarnews.com/images/banners/ (easylistchina+easylist.txt: 44836) -.solomonstarnews.com/images/banners/ -# ||soldierx.com/system/files/images/sx-mini-1.jpg (easylistchina+easylist.txt: 44835) -.soldierx.com/system/files/images/sx-mini-1\.jpg -# ||softpedia.com/*_square. (easylistchina+easylist.txt: 44834) -.softpedia.com/.*_square\. -# ||softpedia.com/*_rect. (easylistchina+easylist.txt: 44833) -.softpedia.com/.*_rect\. -# ||softpedia.com/*_longrect. (easylistchina+easylist.txt: 44832) -.softpedia.com/.*_longrect\. -# ||softpedia-static.com/images/afg/ (easylistchina+easylist.txt: 44830) -.softpedia-static.com/images/afg/ -# ||softpedia-static.com/images/aff/ (easylistchina+easylist.txt: 44829) -.softpedia-static.com/images/aff/ -# ||softpedia-static.com/images/*.png?v (easylistchina+easylist.txt: 44828) -.softpedia-static.com/images/.*\.png\?v -# ||softpedia-static.com/images/*.jpg?v (easylistchina+easylist.txt: 44827) -.softpedia-static.com/images/.*\.jpg\?v -# ||softonic.com/specials_leaderboard/ (easylistchina+easylist.txt: 44826) -.softonic.com/specials_leaderboard/ -# ||softcab.com/google.php? (easylistchina+easylist.txt: 44825) -.softcab.com/google\.php\? -# ||socsa.org.za/images/banners/ (easylistchina+easylist.txt: 44824) -.socsa.org.za/images/banners/ -# ||sockshare.com^*_728.php (easylistchina+easylist.txt: 44823) -.sockshare.com/.*_728\.php -# ||sockshare.com^*.php?*title$subdocument (easylistchina+easylist.txt: 44822) -.sockshare.com/.*\.php\?.*title -# ||sockshare.com/rev/ (easylistchina+easylist.txt: 44821) -.sockshare.com/rev/ -# ||sockshare.com/moo.php (easylistchina+easylist.txt: 44820) -.sockshare.com/moo\.php -# ||sockshare.com/*.php?embed*type=$subdocument (easylistchina+easylist.txt: 44819) -.sockshare.com/.*\.php\?embed.*type= -# ||socialstreamingplayer.crystalmedianetworks.com//async/banner/ (easylistchina+easylist.txt: 44818) -# ||soccerway.com/img/betting/ (easylistchina+easylist.txt: 44817) -.soccerway.com/img/betting/ -# ||soccerway.com/buttons/120x90_ (easylistchina+easylist.txt: 44816) -.soccerway.com/buttons/120x90_ -# ||soccervista.com/sporting.gif (easylistchina+easylist.txt: 44815) -.soccervista.com/sporting\.gif -# ||soccervista.com/bonus.html (easylistchina+easylist.txt: 44814) -.soccervista.com/bonus\.html -# ||soccervista.com/bahforgif.gif (easylistchina+easylist.txt: 44813) -.soccervista.com/bahforgif\.gif -# ||soccerlens.com/files1/ (easylistchina+easylist.txt: 44812) -.soccerlens.com/files1/ -# ||snopes.com^*/tribalbox.asp (easylistchina+easylist.txt: 44811) -.snopes.com/.*/tribalbox\.asp -# ||snopes.com^*/casalesky.asp (easylistchina+easylist.txt: 44810) -.snopes.com/.*/casalesky\.asp -# ||snopes.com^*/casalebox.asp (easylistchina+easylist.txt: 44809) -.snopes.com/.*/casalebox\.asp -# ||snopes.com^*/casalebanner.asp (easylistchina+easylist.txt: 44808) -.snopes.com/.*/casalebanner\.asp -# ||snopes.com/common/include/$subdocument (easylistchina+easylist.txt: 44807) -.snopes.com/common/include/ -# ||snimg.com/image/sponsors/ (easylistchina+easylist.txt: 44806) -.snimg.com/image/sponsors/ -# ||smwcentral.net/html/$image (easylistchina+easylist.txt: 44805) -.smwcentral.net/html/ -# ||smotrisport.com/ads/ (easylistchina+easylist.txt: 44804) -.smotrisport.com/ads/ -# ||smoothjazznetwork.com/images/buyicon.jpg (easylistchina+easylist.txt: 44803) -.smoothjazznetwork.com/images/buyicon\.jpg -# ||smn-news.com/images/flash/ (easylistchina+easylist.txt: 44802) -.smn-news.com/images/flash/ -# ||smn-news.com/images/banners/ (easylistchina+easylist.txt: 44801) -.smn-news.com/images/banners/ -# ||smile904.fm/images/banners/ (easylistchina+easylist.txt: 44800) -.smile904.fm/images/banners/ -# ||smh.com.au/images/promo/ (easylistchina+easylist.txt: 44799) -.smh.com.au/images/promo/ -# ||smh.com.au/compareandsave/ (easylistchina+easylist.txt: 44798) -.smh.com.au/compareandsave/ -# ||smashingapps.com/banner/ (easylistchina+easylist.txt: 44797) -.smashingapps.com/banner/ -# ||smartname.com/scripts/google_afd_v2.js (easylistchina+easylist.txt: 44796) -.smartname.com/scripts/google_afd_v2\.js -# ||smartmoney.net^*-sponsor- (easylistchina+easylist.txt: 44795) -.smartmoney.net/.*-sponsor- -# ||smartearningsecrets.com^*/FameThemes.png (easylistchina+easylist.txt: 44794) -.smartearningsecrets.com/.*/FameThemes\.png -# ||smartcompany.com.au/images/stories/sponsored-posts/ (easylistchina+easylist.txt: 44793) -.smartcompany.com.au/images/stories/sponsored-posts/ -# ||slyck.com/pics/*304x83_ (easylistchina+easylist.txt: 44792) -.slyck.com/pics/.*304x83_ -# ||slickvid.com/js/fun2.js (easylistchina+easylist.txt: 44791) -.slickvid.com/js/fun2\.js -# ||slickvid.com/js/fun.js (easylistchina+easylist.txt: 44790) -.slickvid.com/js/fun\.js -# ||slayradio.org/images/c64audio.com.gif (easylistchina+easylist.txt: 44789) -.slayradio.org/images/c64audio\.com\.gif -# ||slashgear.com/static/banners/ (easylistchina+easylist.txt: 44788) -.slashgear.com/static/banners/ -# ||slader.com/amazon-modal/ (easylistchina+easylist.txt: 44787) -.slader.com/amazon-modal/ -# ||slacker.com^*/getspot/?spotid= (easylistchina+easylist.txt: 44786) -.slacker.com/.*/getspot/\?spotid= -# ||slacker.com^*/ads.js (easylistchina+easylist.txt: 44785) -.slacker.com/.*/ads\.js -# ||slacker.com^*/adnetworks.swf (easylistchina+easylist.txt: 44784) -.slacker.com/.*/adnetworks\.swf -# ||slacker.com/wsv1/getspot/?$object-subrequest (easylistchina+easylist.txt: 44783) -.slacker.com/wsv1/getspot/\? -# ||skyvalleychronicle.com/999/images/ban (easylistchina+easylist.txt: 44782) -.skyvalleychronicle.com/999/images/ban -# ||skysports.com/images/skybet.png (easylistchina+easylist.txt: 44781) -.skysports.com/images/skybet\.png -# ||skynews.com.au/elements/img/sponsor/ (easylistchina+easylist.txt: 44780) -.skynews.com.au/elements/img/sponsor/ -# ||skilouise.com/images/sponsors/ (easylistchina+easylist.txt: 44779) -.skilouise.com/images/sponsors/ -# ||sk-gaming.com/www/skdelivery/ (easylistchina+easylist.txt: 44778) -.sk-gaming.com/www/skdelivery/ -# ||sk-gaming.com/image/takeover_ (easylistchina+easylist.txt: 44777) -.sk-gaming.com/image/takeover_ -# ||sk-gaming.com/image/pts/ (easylistchina+easylist.txt: 44776) -.sk-gaming.com/image/pts/ -# ||sk-gaming.com/image/acersocialw.gif (easylistchina+easylist.txt: 44775) -.sk-gaming.com/image/acersocialw\.gif -# ||siteslike.com/js/fpa.js (easylistchina+easylist.txt: 44774) -.siteslike.com/js/fpa\.js -# ||siteslike.com/images/celeb (easylistchina+easylist.txt: 44773) -.siteslike.com/images/celeb -# ||sitesfrog.com/images/banner/ (easylistchina+easylist.txt: 44772) -.sitesfrog.com/images/banner/ -# ||sitedata.info/doctor/ (easylistchina+easylist.txt: 44771) -.sitedata.info/doctor/ -# ||sisters-magazine.com^*/Banners/ (easylistchina+easylist.txt: 44770) -.sisters-magazine.com/.*/Banners/ -# ||silverdoctors.com^*/Silver-Shield-2015.jpg (easylistchina+easylist.txt: 44769) -.silverdoctors.com/.*/Silver-Shield-2015\.jpg -# ||siliconrepublic.com/fs/img/partners/ (easylistchina+easylist.txt: 44768) -.siliconrepublic.com/fs/img/partners/ -# ||sigalert.com/getunit.asp?$subdocument (easylistchina+easylist.txt: 44767) -.sigalert.com/getunit\.asp\? -# ||sify.com^*/gads_ (easylistchina+easylist.txt: 44766) -.sify.com/.*/gads_ -# ||sify.com/images/games/gadvt/ (easylistchina+easylist.txt: 44765) -.sify.com/images/games/gadvt/ -# ||sickipedia.org/static/images/banners/ (easylistchina+easylist.txt: 44764) -.sickipedia.org/static/images/banners/ -# ||sicilianelmondo.com/banner/ (easylistchina+easylist.txt: 44763) -.sicilianelmondo.com/banner/ -# ||siberiantimes.com/upload/banners/ (easylistchina+easylist.txt: 44762) -.siberiantimes.com/upload/banners/ -# ||shtfplan.com/images/banners/ (easylistchina+easylist.txt: 44761) -.shtfplan.com/images/banners/ -# ||shroomery.org/images/www.shroomery.org.please.png (easylistchina+easylist.txt: 44760) -.shroomery.org/images/www\.shroomery\.org\.please\.png -# ||shroomery.org/images/shroomery.please.png (easylistchina+easylist.txt: 44759) -.shroomery.org/images/shroomery\.please\.png -# ||shroomery.org/bnr/ (easylistchina+easylist.txt: 44758) -.shroomery.org/bnr/ -# ||shroomery.org/bimg/ (easylistchina+easylist.txt: 44757) -.shroomery.org/bimg/ -# ||showstreet.com/banner. (easylistchina+easylist.txt: 44756) -.showstreet.com/banner\. -# ||showsport-tv.com/images/xtreamfile.jpg (easylistchina+easylist.txt: 44755) -.showsport-tv.com/images/xtreamfile\.jpg -# ||showbusinessweekly.com/imgs/hed/ (easylistchina+easylist.txt: 44754) -.showbusinessweekly.com/imgs/hed/ -# ||show-links.tv/layer.php (easylistchina+easylist.txt: 44753) -.show-links.tv/layer\.php -# ||shoutmeloud.com^*/hostgator- (easylistchina+easylist.txt: 44752) -.shoutmeloud.com/.*/hostgator- -# ||shortlist.com^*-takeover. (easylistchina+easylist.txt: 44751) -.shortlist.com/.*-takeover\. -# ||shortlist.com/resource/cache/*skin (easylistchina+easylist.txt: 44750) -.shortlist.com/resource/cache/.*skin -# ||shortcuts.search.yahoo.com^*&callback=yahoo.shortcuts.utils.setdittoadcontents& (easylistchina+easylist.txt: 44749) -.shortcuts.search.yahoo.com/.*&callback=yahoo\.shortcuts\.utils\.setdittoadcontents& -# ||shopwiki.com/banner_iframe/ (easylistchina+easylist.txt: 44748) -.shopwiki.com/banner_iframe/ -# ||shops.tgdaily.com^*&widget= (easylistchina+easylist.txt: 44747) -.shops.tgdaily.com/.*&widget= -# ||shoppingpartners2.futurenet.com^ (easylistchina+easylist.txt: 44746) -.shoppingpartners2.futurenet.com -# ||shopping.stylelist.com/widget? (easylistchina+easylist.txt: 44745) -.shopping.stylelist.com/widget\? -# ||shop.sportsmole.co.uk/pages/deeplink/ (easylistchina+easylist.txt: 44744) -.shop.sportsmole.co.uk/pages/deeplink/ -# ||shop.com/cc.class/dfp? (easylistchina+easylist.txt: 44743) -.shop.com/cc\.class/dfp\? -# ||shodanhq.com/images/s/acehackware-obscured.jpg (easylistchina+easylist.txt: 44742) -.shodanhq.com/images/s/acehackware-obscured\.jpg -# ||sherdog.com/index/load-banner? (easylistchina+easylist.txt: 44741) -.sherdog.com/index/load-banner\? -# ||shazam.com^*/stores/ (easylistchina+easylist.txt: 44740) -.shazam.com/.*/stores/ -# ||sharkscope.com/images/verts/$image (easylistchina+easylist.txt: 44739) -.sharkscope.com/images/verts/ -# ||sharetera.com/promo.php? (easylistchina+easylist.txt: 44738) -.sharetera.com/promo\.php\? -# ||sharetera.com/images/icon_download.png (easylistchina+easylist.txt: 44737) -.sharetera.com/images/icon_download\.png -# ||sharesix.com/a/images/watch-bnr.gif (easylistchina+easylist.txt: 44736) -.sharesix.com/a/images/watch-bnr\.gif -# ||sharephile.com/js/pw.js (easylistchina+easylist.txt: 44735) -.sharephile.com/js/pw\.js -# ||sharebeast.com/topbar.js (easylistchina+easylist.txt: 44734) -.sharebeast.com/topbar\.js -# ||share-links.biz^*/hs.gif (easylistchina+easylist.txt: 44733) -.share-links.biz/.*/hs\.gif -# ||share-links.biz^*/hisp.gif (easylistchina+easylist.txt: 44732) -.share-links.biz/.*/hisp\.gif -# ||share-links.biz/get/cmm/ (easylistchina+easylist.txt: 44731) -.share-links.biz/get/cmm/ -# ||shanghaiexpat.com^*/wallpaper_ (easylistchina+easylist.txt: 44730) -.shanghaiexpat.com/.*/wallpaper_ -# ||shanghaidaily.com/include/bettertraffic.asp (easylistchina+easylist.txt: 44729) -.shanghaidaily.com/include/bettertraffic\.asp -# ||shadowpool.info/images/banner- (easylistchina+easylist.txt: 44728) -.shadowpool.info/images/banner- -# ||sfx.ms/AppInsights-$script (easylistchina+easylist.txt: 44727) -.sfx.ms/AppInsights- -# ||sfltimes.com/images/banners/ (easylistchina+easylist.txt: 44726) -.sfltimes.com/images/banners/ -# ||sfbaytimes.com/img-cont/banners (easylistchina+easylist.txt: 44725) -.sfbaytimes.com/img-cont/banners -# ||sexmummy.com/avnadsbanner. (easylistchina+easylist.txt: 44724) -.sexmummy.com/avnadsbanner\. -# ||sermonaudio.com/images/sponsors/ (easylistchina+easylist.txt: 44723) -.sermonaudio.com/images/sponsors/ -# ||serialzz.us/ad.js (easylistchina+easylist.txt: 44722) -.serialzz.us/ad\.js -# ||serials.ws^*/logo.gif (easylistchina+easylist.txt: 44721) -.serials.ws/.*/logo\.gif -# ||serial.sw.cracks.me.uk/img/logo.gif (easylistchina+easylist.txt: 44720) -.serial.sw.cracks.me.uk/img/logo\.gif -# ||sensongs.com/nfls/ (easylistchina+easylist.txt: 44719) -.sensongs.com/nfls/ -# ||sendspace.com^*?zone= (easylistchina+easylist.txt: 44718) -.sendspace.com/.*\?zone= -# ||sendspace.com/images/shutter.png (easylistchina+easylist.txt: 44717) -.sendspace.com/images/shutter\.png -# ||sendspace.com/defaults/framer.html?z= (easylistchina+easylist.txt: 44716) -.sendspace.com/defaults/framer\.html\?z= -# ||segmentnext.com/javascripts/interstitial.client.js (easylistchina+easylist.txt: 44715) -.segmentnext.com/javascripts/interstitial\.client\.js -# ||seeingwithsound.com/noad.gif (easylistchina+easylist.txt: 44714) -.seeingwithsound.com/noad\.gif -# ||seedboxes.cc/images/seedad.jpg (easylistchina+easylist.txt: 44713) -.seedboxes.cc/images/seedad\.jpg -# ||sedoparking.com/registrar/dopark.js (easylistchina+easylist.txt: 44712) -.sedoparking.com/registrar/dopark\.js -# ||sedoparking.com/jspartner/ (easylistchina+easylist.txt: 44711) -.sedoparking.com/jspartner/ -# ||sedoparking.com/images/js_preloader.gif (easylistchina+easylist.txt: 44710) -.sedoparking.com/images/js_preloader\.gif -# ||securitywonks.net/promotions/ (easylistchina+easylist.txt: 44708) -.securitywonks.net/promotions/ -# ||securitymattersmag.com/scripts/popup.js (easylistchina+easylist.txt: 44707) -.securitymattersmag.com/scripts/popup\.js -# ||secureupload.eu/js/poad.js (easylistchina+easylist.txt: 44706) -.secureupload.eu/js/poad\.js -# ||secureupload.eu/gfx/freedl.png (easylistchina+easylist.txt: 44705) -.secureupload.eu/gfx/freedl\.png -# ||secureupload.eu/gfx/dlbtn.png (easylistchina+easylist.txt: 44704) -.secureupload.eu/gfx/dlbtn\.png -# ||sectools.org/shared/images/p/$image (easylistchina+easylist.txt: 44703) -.sectools.org/shared/images/p/ -# ||seclists.org/shared/images/p/$image (easylistchina+easylist.txt: 44702) -.seclists.org/shared/images/p/ -# ||sebar.thand.info^ (easylistchina+easylist.txt: 44701) -.sebar.thand.info -# ||seatguru.com/deals? (easylistchina+easylist.txt: 44700) -.seatguru.com/deals\? -# ||searchtempest.com/clhimages/aocbanner.jpg (easylistchina+easylist.txt: 44699) -.searchtempest.com/clhimages/aocbanner\.jpg -# ||searchignited.com^ (easylistchina+easylist.txt: 44698) -.searchignited.com -# ||searchenginejournal.com^*/sponsored- (easylistchina+easylist.txt: 44697) -.searchenginejournal.com/.*/sponsored- -# ||searchenginejournal.com^*/sej-bg-takeover/ (easylistchina+easylist.txt: 44696) -.searchenginejournal.com/.*/sej-bg-takeover/ -# ||searchenginejournal.com^*-takeover- (easylistchina+easylist.txt: 44695) -.searchenginejournal.com/.*-takeover- -# ||search.triadcars.news-record.com/autos/widgets/featuredautos.php (easylistchina+easylist.txt: 44694) -.search.triadcars.news-record.com/autos/widgets/featuredautos\.php -# ||search.triadcareers.news-record.com/jobs/search/results?*&isfeatured=y& (easylistchina+easylist.txt: 44693) -.search.triadcareers.news-record.com/jobs/search/results\?.*&isfeatured=y& -# ||search.ch/htmlbanner.html (easylistchina+easylist.txt: 44692) -.search.ch/htmlbanner\.html -# ||search.ch/acs/ (easylistchina+easylist.txt: 44691) -.search.ch/acs/ -# ||search-torrent.com/images/videox/ (easylistchina+easylist.txt: 44690) -.search-torrent.com/images/videox/ -# ||sdancelive.com/images/banners/ (easylistchina+easylist.txt: 44689) -.sdancelive.com/images/banners/ -# ||scriptmafia.org/banner.gif (easylistchina+easylist.txt: 44688) -.scriptmafia.org/banner\.gif -# ||scriptcopy.com/tpl/phplb/search.jpg (easylistchina+easylist.txt: 44687) -.scriptcopy.com/tpl/phplb/search\.jpg -# ||scribol.com/broadspring.js (easylistchina+easylist.txt: 44686) -.scribol.com/broadspring\.js -# ||screenlist.ru/porevo.js (easylistchina+easylist.txt: 44685) -.screenlist.ru/porevo\.js -# ||screenlist.ru/dodopo.js (easylistchina+easylist.txt: 44684) -.screenlist.ru/dodopo\.js -# ||screencrave.com/show/ (easylistchina+easylist.txt: 44683) -.screencrave.com/show/ -# ||screenafrica.com/jquery.jcarousel.min.js (easylistchina+easylist.txt: 44682) -.screenafrica.com/jquery\.jcarousel\.min\.js -# ||screen4u.net/templates/banner.html (easylistchina+easylist.txt: 44681) -.screen4u.net/templates/banner\.html -# ||scoot.co.uk/delivery.php (easylistchina+easylist.txt: 44680) -.scoot.co.uk/delivery\.php -# ||scoop.co.nz/xl?c$subdocument (easylistchina+easylist.txt: 44679) -.scoop.co.nz/xl\?c -# ||scmagazine.com.au/Utils/SkinCSS.ashx?skinID= (easylistchina+easylist.txt: 44678) -.scmagazine.com.au/Utils/SkinCSS\.ashx\?skinID= -# ||scientopia.org/public_html/clr_lympholyte_banner.gif (easylistchina+easylist.txt: 44677) -.scientopia.org/public_html/clr_lympholyte_banner\.gif -# ||sceper.eu/wp-content/banners.min.js (easylistchina+easylist.txt: 44675) -.sceper.eu/wp-content/banners\.min\.js -# ||scenicreflections.com/dhtmlpopup/ (easylistchina+easylist.txt: 44674) -.scenicreflections.com/dhtmlpopup/ -# ||sbnation.com/campaigns_images/ (easylistchina+easylist.txt: 44673) -.sbnation.com/campaigns_images/ -# ||saysuncle.com^*ad.jpg (easylistchina+easylist.txt: 44672) -.saysuncle.com/.*ad\.jpg -# ||sayellow.com/Clients/Banners/ (easylistchina+easylist.txt: 44671) -.sayellow.com/Clients/Banners/ -# ||sawlive.tv/ad (easylistchina+easylist.txt: 44670) -.sawlive.tv/ad -# ||saveondish.com/banner3.jpg (easylistchina+easylist.txt: 44669) -.saveondish.com/banner3\.jpg -# ||saveondish.com/banner2.jpg (easylistchina+easylist.txt: 44668) -.saveondish.com/banner2\.jpg -# ||savefrom.net/img/a1d/ (easylistchina+easylist.txt: 44667) -.savefrom.net/img/a1d/ -# ||satopsites.com^*/banners/ (easylistchina+easylist.txt: 44666) -.satopsites.com/.*/banners/ -# ||satnews.com/images/MSMPromoSubSky.jpg (easylistchina+easylist.txt: 44665) -.satnews.com/images/MSMPromoSubSky\.jpg -# ||satnews.com/images/MITEQ_sky.jpg (easylistchina+easylist.txt: 44664) -.satnews.com/images/MITEQ_sky\.jpg -# ||satellites.co.uk/images/sponsors/ (easylistchina+easylist.txt: 44663) -.satellites.co.uk/images/sponsors/ -# ||satelliteguys.us/pulsepoint_ (easylistchina+easylist.txt: 44662) -.satelliteguys.us/pulsepoint_ -# ||satelliteguys.us/burst_ (easylistchina+easylist.txt: 44661) -.satelliteguys.us/burst_ -# ||sat24.com/bannerdetails.aspx? (easylistchina+easylist.txt: 44660) -.sat24.com/bannerdetails\.aspx\? -# ||sarugbymag.co.za^*-wallpaper2. (easylistchina+easylist.txt: 44659) -.sarugbymag.co.za/.*-wallpaper2\. -# ||sarasotatalkradio.com^*-200x200.jpg (easylistchina+easylist.txt: 44658) -.sarasotatalkradio.com/.*-200x200\.jpg -# ||sapeople.com/wp-content/uploads/wp-banners/ (easylistchina+easylist.txt: 44657) -.sapeople.com/wp-content/uploads/wp-banners/ -# ||samsung.com/ph/nextisnow/files/javascript.js (easylistchina+easylist.txt: 44656) -.samsung.com/ph/nextisnow/files/javascript\.js -# ||samoatimes.co.nz^*/banner468x60/ (easylistchina+easylist.txt: 44655) -.samoatimes.co.nz/.*/banner468x60/ -# ||samoaobserver.ws^*/banner/ (easylistchina+easylist.txt: 44654) -.samoaobserver.ws/.*/banner/ -# ||sameip.org/images/froghost.gif (easylistchina+easylist.txt: 44653) -.sameip.org/images/froghost\.gif -# ||salfordonline.com/sponsors2/ (easylistchina+easylist.txt: 44652) -.salfordonline.com/sponsors2/ -# ||salfordonline.com/sponsors/ (easylistchina+easylist.txt: 44651) -.salfordonline.com/sponsors/ -# ||sail-world.com/rotate/ (easylistchina+easylist.txt: 44650) -.sail-world.com/rotate/ -# ||sagoodnews.co.za/templates/ubuntu-deals/ (easylistchina+easylist.txt: 44649) -.sagoodnews.co.za/templates/ubuntu-deals/ -# ||safelinks.eu/open.js (easylistchina+easylist.txt: 44648) -.safelinks.eu/open\.js -# ||saf.org/wp-content/uploads/*/women_guns192x50.png (easylistchina+easylist.txt: 44647) -.saf.org/wp-content/uploads/.*/women_guns192x50\.png -# ||saf.org/wp-content/uploads/*/theGunMagbanner.png (easylistchina+easylist.txt: 44646) -.saf.org/wp-content/uploads/.*/theGunMagbanner\.png -# ||sacommercialpropnews.co.za/files/banners/ (easylistchina+easylist.txt: 44645) -.sacommercialpropnews.co.za/files/banners/ -# ||sacbee.com/static/dealsaver/ (easylistchina+easylist.txt: 44644) -.sacbee.com/static/dealsaver/ -# ||saabsunited.com/wp-content/uploads/werbung- (easylistchina+easylist.txt: 44643) -.saabsunited.com/wp-content/uploads/werbung- -# ||saabsunited.com/wp-content/uploads/USACANADA.jpg (easylistchina+easylist.txt: 44642) -.saabsunited.com/wp-content/uploads/USACANADA\.jpg -# ||saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC.gif (easylistchina+easylist.txt: 44641) -.saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC\.gif -# ||saabsunited.com/wp-content/uploads/rbm21.jpg (easylistchina+easylist.txt: 44640) -.saabsunited.com/wp-content/uploads/rbm21\.jpg -# ||saabsunited.com/wp-content/uploads/ban- (easylistchina+easylist.txt: 44639) -.saabsunited.com/wp-content/uploads/ban- -# ||saabsunited.com/wp-content/uploads/180x460_ (easylistchina+easylist.txt: 44638) -.saabsunited.com/wp-content/uploads/180x460_ -# ||saabsunited.com/wp-content/uploads/*_banner_ (easylistchina+easylist.txt: 44637) -.saabsunited.com/wp-content/uploads/.*_banner_ -# ||saabsunited.com/wp-content/uploads/*-banner. (easylistchina+easylist.txt: 44636) -.saabsunited.com/wp-content/uploads/.*-banner\. -# ||saabsunited.com/wp-content/uploads/*-banner- (easylistchina+easylist.txt: 44635) -.saabsunited.com/wp-content/uploads/.*-banner- -# ||s.yimg.com^*/audience/ (easylistchina+easylist.txt: 44634) -.s.yimg.com/.*/audience/ -# ||s.imwx.com^*/wx-a21-plugthis.js (easylistchina+easylist.txt: 44633) -.s.imwx.com/.*/wx-a21-plugthis\.js -# ||rustourismnews.com/images/banners/ (easylistchina+easylist.txt: 44632) -.rustourismnews.com/images/banners/ -# ||russianireland.com/images/banners/ (easylistchina+easylist.txt: 44631) -.russianireland.com/images/banners/ -# ||runt-of-the-web.com/wrap1.jpg (easylistchina+easylist.txt: 44630) -.runt-of-the-web.com/wrap1\.jpg -# ||rugbyweek.com^*/sponsors/ (easylistchina+easylist.txt: 44629) -.rugbyweek.com/.*/sponsors/ -# ||rtcc.org/systems/sponsors/ (easylistchina+easylist.txt: 44627) -.rtcc.org/systems/sponsors/ -# ||rt.com/static/img/banners/ (easylistchina+easylist.txt: 44626) -.rt.com/static/img/banners/ -# ||rt.com/banner/ (easylistchina+easylist.txt: 44625) -.rt.com/banner/ -# ||rss2search.com/delivery/ (easylistchina+easylist.txt: 44624) -.rss2search.com/delivery/ -# ||rsbuddy.com/campaign/ (easylistchina+easylist.txt: 44623) -.rsbuddy.com/campaign/ -# ||rpt.anchorfree.net^ (easylistchina+easylist.txt: 44622) -.rpt.anchorfree.net -# ||rpgwatch.com^*/banner/ (easylistchina+easylist.txt: 44621) -.rpgwatch.com/.*/banner/ -# ||routesonline.com/banner/ (easylistchina+easylist.txt: 44620) -.routesonline.com/banner/ -# ||routes-news.com/images/banners/ (easylistchina+easylist.txt: 44619) -.routes-news.com/images/banners/ -# ||routerpasswords.com/routers.jpg (easylistchina+easylist.txt: 44618) -.routerpasswords.com/routers\.jpg -# ||rough-polished.com/upload/bx/ (easylistchina+easylist.txt: 44617) -.rough-polished.com/upload/bx/ -# ||rotoworld.com^*&sponsor=$subdocument (easylistchina+easylist.txt: 44616) -.rotoworld.com/.*&sponsor= -# ||roseindia.net^*/banners/ (easylistchina+easylist.txt: 44615) -.roseindia.net/.*/banners/ -# ||rootsweb.com/js/o*.js (easylistchina+easylist.txt: 44614) -.rootsweb.com/js/o.*\.js -# ||romhustler.net/square.js (easylistchina+easylist.txt: 44613) -.romhustler.net/square\.js -# ||rom-freaks.net/popup.php (easylistchina+easylist.txt: 44612) -.rom-freaks.net/popup\.php -# ||rollingstone.co.za/images/banners/ (easylistchina+easylist.txt: 44611) -.rollingstone.co.za/images/banners/ -# ||rok.com.com/rok-get? (easylistchina+easylist.txt: 44610) -.rok.com.com/rok-get\? -# ||rojadirecta.ge^*/pu.js (easylistchina+easylist.txt: 44609) -.rojadirecta.ge/.*/pu\.js -# ||roia.com^ (easylistchina+easylist.txt: 44608) -.roia.com -# ||rodfile.com/images/esr.gif (easylistchina+easylist.txt: 44607) -.rodfile.com/images/esr\.gif -# ||rocvideo.tv/pu/$subdocument (easylistchina+easylist.txt: 44606) -.rocvideo.tv/pu/ -# ||rockthebells.net/images/bot_banner_ (easylistchina+easylist.txt: 44605) -.rockthebells.net/images/bot_banner_ -# ||rockthebells.net/images/banners/ (easylistchina+easylist.txt: 44604) -.rockthebells.net/images/banners/ -# ||rocktelevision.com^*_banner_ (easylistchina+easylist.txt: 44603) -.rocktelevision.com/.*_banner_ -# ||rocksound.tv/images/uploads/*-rocksound-1920x1000_ (easylistchina+easylist.txt: 44602) -.rocksound.tv/images/uploads/.*-rocksound-1920x1000_ -# ||rockettheme.com/aff/ (easylistchina+easylist.txt: 44601) -.rockettheme.com/aff/ -# ||robhasawebsite.com^*/shop-amazon. (easylistchina+easylist.txt: 44600) -.robhasawebsite.com/.*/shop-amazon\. -# ||robhasawebsite.com^*/amazon- (easylistchina+easylist.txt: 44599) -.robhasawebsite.com/.*/amazon- -# ||rlsbb.com/wp-content/uploads/smoke.jpg (easylistchina+easylist.txt: 44598) -.rlsbb.com/wp-content/uploads/smoke\.jpg -# ||rlsbb.com/wp-content/uploads/izilol.gif (easylistchina+easylist.txt: 44597) -.rlsbb.com/wp-content/uploads/izilol\.gif -# ||rislivetv.com/ad*.php (easylistchina+easylist.txt: 44596) -.rislivetv.com/ad.*\.php -# ||ringostrack.com^*/amazon-buy.gif (easylistchina+easylist.txt: 44595) -.ringostrack.com/.*/amazon-buy\.gif -# ||rightsidenews.com/images/banners/ (easylistchina+easylist.txt: 44594) -.rightsidenews.com/images/banners/ -# ||riderfans.com/other/ (easylistchina+easylist.txt: 44593) -.riderfans.com/other/ -# ||richmedia.yimg.com^ (easylistchina+easylist.txt: 44592) -.richmedia.yimg.com -# ||richardroeper.com/assets/banner/ (easylistchina+easylist.txt: 44591) -.richardroeper.com/assets/banner/ -# ||rghost.ru/download/a/*/banner_download_ (easylistchina+easylist.txt: 44590) -.rghost.ru/download/a/.*/banner_download_ -# ||rfu.com/js/jquery.jcarousel.js (easylistchina+easylist.txt: 44589) -.rfu.com/js/jquery\.jcarousel\.js -# ||revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2.gif (easylistchina+easylist.txt: 44588) -.revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2\.gif -# ||reviewcentre.com/cinergy-adv.php (easylistchina+easylist.txt: 44587) -.reviewcentre.com/cinergy-adv\.php -# ||reuters.com/reuters_gpt_bootstrap*.js (easylistchina+easylist.txt: 44586) -.reuters.com/reuters_gpt_bootstrap.*\.js -# ||reuters.com/reuters_bootstrap.js (easylistchina+easylist.txt: 44585) -.reuters.com/reuters_bootstrap\.js -# ||retrevo.com^*/pcwframe.jsp? (easylistchina+easylist.txt: 44584) -.retrevo.com/.*/pcwframe\.jsp\? -# ||retrevo.com/m/google?q= (easylistchina+easylist.txt: 44583) -.retrevo.com/m/google\?q= -# ||replacementdocs.com^*/popup.js (easylistchina+easylist.txt: 44582) -.replacementdocs.com/.*/popup\.js -# ||relink.us/js/ibunkerslide.js (easylistchina+easylist.txt: 44581) -.relink.us/js/ibunkerslide\.js -# ||releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40.jpg (easylistchina+easylist.txt: 44580) -.releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40\.jpg -# ||releaselog.net/468.htm (easylistchina+easylist.txt: 44579) -.releaselog.net/468\.htm -# ||rejournal.com^*/images/homepage/ (easylistchina+easylist.txt: 44578) -.rejournal.com/.*/images/homepage/ -# ||rejournal.com/users/blinks/ (easylistchina+easylist.txt: 44577) -.rejournal.com/users/blinks/ -# ||rejournal.com/images/banners/ (easylistchina+easylist.txt: 44576) -.rejournal.com/images/banners/ -# ||regnow.img.digitalriver.com/vendor/37587/ud_box$third-party (easylistchina+easylist.txt: 44575) -.regnow.img.digitalriver.com/vendor/37587/ud_box -# ||regmender.com^*/banner336x280. (easylistchina+easylist.txt: 44574) -.regmender.com/.*/banner336x280\. -# ||reelzchannel.com^*-skin- (easylistchina+easylist.txt: 44573) -.reelzchannel.com/.*-skin- -# ||redvase.bravenet.com^ (easylistchina+easylist.txt: 44572) -.redvase.bravenet.com -# ||redpepper.org.uk/ad- (easylistchina+easylist.txt: 44571) -.redpepper.org.uk/ad- -# ||rednationonline.ca/Portals/0/derbystar_leaderboard.jpg (easylistchina+easylist.txt: 44570) -.rednationonline.ca/Portals/0/derbystar_leaderboard\.jpg -# ||rediff.com/worldrediff/pix/$subdocument (easylistchina+easylist.txt: 44569) -.rediff.com/worldrediff/pix/ -# ||reddit.com^*_sponsor.png? (easylistchina+easylist.txt: 44568) -.reddit.com/.*_sponsor\.png\? -# ||red.bayimg.net^ (easylistchina+easylist.txt: 44567) -.red.bayimg.net -# ||reason.org/UserFiles/web-fin1.gif (easylistchina+easylist.txt: 44566) -.reason.org/UserFiles/web-fin1\.gif -# ||realitytvworld.com/includes/rtvw-jscript.js (easylistchina+easylist.txt: 44565) -.realitytvworld.com/includes/rtvw-jscript\.js -# ||realitytvworld.com/burst.js (easylistchina+easylist.txt: 44564) -.realitytvworld.com/burst\.js -# ||readingeagle.com/lib/dailysponser.js (easylistchina+easylist.txt: 44563) -.readingeagle.com/lib/dailysponser\.js -# ||rc.feedsportal.com/r/*/rc.img (easylistchina+easylist.txt: 44562) -.rc.feedsportal.com/r/.*/rc\.img -# ||raysindex.com/wp-content/uploads/*/dolmansept2012flash.swf (easylistchina+easylist.txt: 44561) -.raysindex.com/wp-content/uploads/.*/dolmansept2012flash\.swf -# ||rawstory.com^*/ads/ (easylistchina+easylist.txt: 44560) -.rawstory.com/.*/ads/ -# ||rawstory.com^*.php?code=bottom (easylistchina+easylist.txt: 44559) -.rawstory.com/.*\.php\?code=bottom -# ||rawstory.com/givememyrawjuggler.php (easylistchina+easylist.txt: 44558) -.rawstory.com/givememyrawjuggler\.php -# ||rawstory.com/givememyrawgfpdirect.php? (easylistchina+easylist.txt: 44557) -.rawstory.com/givememyrawgfpdirect\.php\? -# ||rawstory.com/givememyrawgfp.php? (easylistchina+easylist.txt: 44556) -.rawstory.com/givememyrawgfp\.php\? -# ||ravchat.com/img/reversephone.gif (easylistchina+easylist.txt: 44555) -.ravchat.com/img/reversephone\.gif -# ||ratio-magazine.com/images/banners/ (easylistchina+easylist.txt: 44554) -.ratio-magazine.com/images/banners/ -# ||rapidvideo.tv/images/pl.jpg (easylistchina+easylist.txt: 44553) -.rapidvideo.tv/images/pl\.jpg -# ||rapidvideo.org/images/pl_box_rapid.jpg (easylistchina+easylist.txt: 44552) -.rapidvideo.org/images/pl_box_rapid\.jpg -# ||rapidtvnews.com^*BannerAd. (easylistchina+easylist.txt: 44551) -.rapidtvnews.com/.*BannerAd\. -# ||rapidshare.com/promo/$image (easylistchina+easylist.txt: 44550) -.rapidshare.com/promo/ -# ||rapidsafe.de/eislogo.gif (easylistchina+easylist.txt: 44549) -.rapidsafe.de/eislogo\.gif -# ||rapidlibrary.com/banner_*.png (easylistchina+easylist.txt: 44548) -.rapidlibrary.com/banner_.*\.png -# ||rapidlibrary.com/baner*.png (easylistchina+easylist.txt: 44547) -.rapidlibrary.com/baner.*\.png -# ||rapidgator.net/images/pics/button.png (easylistchina+easylist.txt: 44546) -.rapidgator.net/images/pics/button\.png -# ||rapidgator.net/images/banners/ (easylistchina+easylist.txt: 44545) -.rapidgator.net/images/banners/ -# ||rapidgamez.com/images/ (easylistchina+easylist.txt: 44544) -.rapidgamez.com/images/ -# ||rapidfiledownload.com^*/btn-input-download.png (easylistchina+easylist.txt: 44543) -.rapidfiledownload.com/.*/btn-input-download\.png -# ||rainbowpages.lk/images/banners/ (easylistchina+easylist.txt: 44542) -.rainbowpages.lk/images/banners/ -# ||ragezone.com/output.php/ (easylistchina+easylist.txt: 44541) -.ragezone.com/output\.php/ -# ||ragezone.com/index.php/$subdocument (easylistchina+easylist.txt: 44540) -.ragezone.com/index\.php/ -# ||radiozindagi.com/sponsors/ (easylistchina+easylist.txt: 44539) -.radiozindagi.com/sponsors/ -# ||radiowavesforum.com/rw/radioapp.gif (easylistchina+easylist.txt: 44538) -.radiowavesforum.com/rw/radioapp\.gif -# ||radiowave.com.na/images/banners/ (easylistchina+easylist.txt: 44537) -.radiowave.com.na/images/banners/ -# ||radiotoday.co.uk/a/ (easylistchina+easylist.txt: 44536) -.radiotoday.co.uk/a/ -# ||radioreference.com^*_banner_ (easylistchina+easylist.txt: 44535) -.radioreference.com/.*_banner_ -# ||radioreference.com/i/p4/tp/smPortalBanner.gif (easylistchina+easylist.txt: 44534) -.radioreference.com/i/p4/tp/smPortalBanner\.gif -# ||radioloyalty.com/newPlayer/loadbanner.html? (easylistchina+easylist.txt: 44533) -.radioloyalty.com/newPlayer/loadbanner\.html\? -# ||radioinfo.com^*/575x112- (easylistchina+easylist.txt: 44532) -.radioinfo.com/.*/575x112- -# ||radioinfo.com/270x270/ (easylistchina+easylist.txt: 44531) -.radioinfo.com/270x270/ -# ||radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg.swf (easylistchina+easylist.txt: 44530) -.radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg\.swf -# ||radioasiafm.com^*-300x250. (easylistchina+easylist.txt: 44529) -.radioasiafm.com/.*-300x250\. -# ||radio786.co.za/images/banners/ (easylistchina+easylist.txt: 44528) -.radio786.co.za/images/banners/ -# ||radio4fm.com/promotion/ (easylistchina+easylist.txt: 44527) -.radio4fm.com/promotion/ -# ||radio4fm.com/images/background/ (easylistchina+easylist.txt: 44526) -.radio4fm.com/images/background/ -# ||radio.com/rotatable? (easylistchina+easylist.txt: 44525) -.radio.com/rotatable\? -# ||radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr.swf? (easylistchina+easylist.txt: 44524) -.radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr\.swf\? -# ||rad.msn.com^ (easylistchina+easylist.txt: 44523) -.rad.msn.com -# ||rad.microsoft.com^ (easylistchina+easylist.txt: 44522) -.rad.microsoft.com -# ||racinguk.com/images/site/foot_ (easylistchina+easylist.txt: 44519) -.racinguk.com/images/site/foot_ -# ||racingpost.com^*_607x30.2.0.gif (easylistchina+easylist.txt: 44518) -.racingpost.com/.*_607x30\.2\.0\.gif -# ||racingpost.com/ads/ (easylistchina+easylist.txt: 44517) -.racingpost.com/ads/ -# ||race-dezert.com^*/sponsor- (easylistchina+easylist.txt: 44516) -.race-dezert.com/.*/sponsor- -# ||race-dezert.com/images/wrap- (easylistchina+easylist.txt: 44515) -.race-dezert.com/images/wrap- -# ||quoteland.com/images/banner2.swf (easylistchina+easylist.txt: 44514) -.quoteland.com/images/banner2\.swf -# ||quicksilverscreen.com/img/moviesforfree.jpg (easylistchina+easylist.txt: 44513) -.quicksilverscreen.com/img/moviesforfree\.jpg -# ||quickpwn.com^$subdocument (easylistchina+easylist.txt: 44512) -.quickpwn.com -# ||quickmeme.com/media/rostile (easylistchina+easylist.txt: 44511) -.quickmeme.com/media/rostile -# ||queenshare.com/popx.js (easylistchina+easylist.txt: 44510) -.queenshare.com/popx\.js -# ||qualityhealth.com^*/banner.jsp? (easylistchina+easylist.txt: 44509) -.qualityhealth.com/.*/banner\.jsp\? -# ||qrz.com/pix/*.gif (easylistchina+easylist.txt: 44508) -.qrz.com/pix/.*\.gif -# ||qiksilver.net^*/banners/ (easylistchina+easylist.txt: 44507) -.qiksilver.net/.*/banners/ -# ||qatar-tribune.com/images/banners/ (easylistchina+easylist.txt: 44506) -.qatar-tribune.com/images/banners/ -# ||q1075.com/images/banners/ (easylistchina+easylist.txt: 44505) -.q1075.com/images/banners/ -# ||pv-tech.org/images/suntech_m2fbblew.png (easylistchina+easylist.txt: 44504) -.pv-tech.org/images/suntech_m2fbblew\.png -# ||pv-tech.org/images/footer_logos/ (easylistchina+easylist.txt: 44503) -.pv-tech.org/images/footer_logos/ -# ||putlocker.mn^*/stream-hd.gif (easylistchina+easylist.txt: 44502) -.putlocker.mn/.*/stream-hd\.gif -# ||putlocker.mn^*/download.gif (easylistchina+easylist.txt: 44501) -.putlocker.mn/.*/download\.gif -# ||putlocker.is/images/banner (easylistchina+easylist.txt: 44500) -.putlocker.is/images/banner -# ||pushsquare.com/wp-content/themes/pushsquare/skins/ (easylistchina+easylist.txt: 44499) -.pushsquare.com/wp-content/themes/pushsquare/skins/ -# ||punksbusted.com^*/clanwarz-portal.jpg (easylistchina+easylist.txt: 44498) -.punksbusted.com/.*/clanwarz-portal\.jpg -# ||punksbusted.com/images/ventrilo/ (easylistchina+easylist.txt: 44497) -.punksbusted.com/images/ventrilo/ -# ||punchng.com^*/wp-banners/ (easylistchina+easylist.txt: 44496) -.punchng.com/.*/wp-banners/ -# ||punch.cdn.ng^*/wp-banners/ (easylistchina+easylist.txt: 44495) -.punch.cdn.ng/.*/wp-banners/ -# ||pumasrugbyunion.com/images/sponsors/ (easylistchina+easylist.txt: 44494) -.pumasrugbyunion.com/images/sponsors/ -# ||pulsetv.com/banner/ (easylistchina+easylist.txt: 44493) -.pulsetv.com/banner/ -# ||publicservice.co.uk^*/spons_ (easylistchina+easylist.txt: 44492) -.publicservice.co.uk/.*/spons_ -# ||publicradio.org^*/banners/ (easylistchina+easylist.txt: 44491) -.publicradio.org/.*/banners/ -# ||publicityupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 44490) -.publicityupdate.co.za/temp/banner_ -# ||publichd.eu/images/directdownload.png (easylistchina+easylist.txt: 44489) -.publichd.eu/images/directdownload\.png -# ||publichd.eu/images/direct.download.ico (easylistchina+easylist.txt: 44488) -.publichd.eu/images/direct\.download\.ico -# ||ptf.com/js/rc_banner.js (easylistchina+easylist.txt: 44487) -.ptf.com/js/rc_banner\.js -# ||ptf.com/js/ptf_rc_*.js (easylistchina+easylist.txt: 44486) -.ptf.com/js/ptf_rc_.*\.js -# ||ptf.com/js/fdm_banner.js (easylistchina+easylist.txt: 44485) -.ptf.com/js/fdm_banner\.js -# ||ptf.com/fdm_frame_ (easylistchina+easylist.txt: 44484) -.ptf.com/fdm_frame_ -# ||psgroove.com/images/*.jpg| (easylistchina+easylist.txt: 44483) -.psgroove.com/images/.*\.jpg$ -# ||ps3crunch.net/forum/images/gamers/ (easylistchina+easylist.txt: 44482) -.ps3crunch.net/forum/images/gamers/ -# ||proxycape.com/blah.js (easylistchina+easylist.txt: 44481) -.proxycape.com/blah\.js -# ||proxy.org/ah.html (easylistchina+easylist.txt: 44480) -.proxy.org/ah\.html -# ||proxy.org/af.html (easylistchina+easylist.txt: 44479) -.proxy.org/af\.html -# ||proxy-list.org/img/isellsite.gif (easylistchina+easylist.txt: 44478) -.proxy-list.org/img/isellsite\.gif -# ||propertyeu.info/peu_storage_banners/ (easylistchina+easylist.txt: 44477) -.propertyeu.info/peu_storage_banners/ -# ||propakistani.pk/wp-content/themes/propakistani/images/776.jpg (easylistchina+easylist.txt: 44476) -.propakistani.pk/wp-content/themes/propakistani/images/776\.jpg -# ||propakistani.pk/wp-content/*/warid.jpg (easylistchina+easylist.txt: 44475) -.propakistani.pk/wp-content/.*/warid\.jpg -# ||propakistani.pk/data/zong.html (easylistchina+easylist.txt: 44474) -.propakistani.pk/data/zong\.html -# ||propakistani.pk/data/warid_top1.html (easylistchina+easylist.txt: 44473) -.propakistani.pk/data/warid_top1\.html -# ||promo.fileforum.com^ (easylistchina+easylist.txt: 44472) -.promo.fileforum.com -# ||projectorcentral.com/bblaster.cfm?$image (easylistchina+easylist.txt: 44471) -.projectorcentral.com/bblaster\.cfm\? -# ||projectfreetv.ch/adblock/ (easylistchina+easylist.txt: 44470) -.projectfreetv.ch/adblock/ -# ||project-for-sell.com/_google.php (easylistchina+easylist.txt: 44469) -.project-for-sell.com/_google\.php -# ||professionalmuscle.com/PL2.gif (easylistchina+easylist.txt: 44468) -.professionalmuscle.com/PL2\.gif -# ||professionalmuscle.com/phil1.jpg (easylistchina+easylist.txt: 44467) -.professionalmuscle.com/phil1\.jpg -# ||professionalmuscle.com/featured-concreter.jpg (easylistchina+easylist.txt: 44466) -.professionalmuscle.com/featured-concreter\.jpg -# ||professionalmuscle.com/220x105%20ver2.gif (easylistchina+easylist.txt: 44465) -.professionalmuscle.com/220x105%20ver2\.gif -# ||professionalmuscle.com/*banner (easylistchina+easylist.txt: 44464) -.professionalmuscle.com/.*banner -# ||pro-clockers.com/images/banners/ (easylistchina+easylist.txt: 44463) -.pro-clockers.com/images/banners/ -# ||privateproperty.co.za^*/siteTakeover/ (easylistchina+easylist.txt: 44462) -.privateproperty.co.za/.*/siteTakeover/ -# ||prisonplanet.com^*banner (easylistchina+easylist.txt: 44461) -.prisonplanet.com/.*banner -# ||printfriendly.com/a/lijit/ (easylistchina+easylist.txt: 44460) -.printfriendly.com/a/lijit/ -# ||primewire.in/load_link.php? (easylistchina+easylist.txt: 44459) -.primewire.in/load_link\.php\? -# ||primewire.guru/pagetop.php (easylistchina+easylist.txt: 44458) -.primewire.guru/pagetop\.php -# ||primewire.guru/load_link.php? (easylistchina+easylist.txt: 44457) -.primewire.guru/load_link\.php\? -# ||primewire.ag/load_link.php? (easylistchina+easylist.txt: 44456) -.primewire.ag/load_link\.php\? -# ||primewire.ag/js/jquery*.js (easylistchina+easylist.txt: 44455) -.primewire.ag/js/jquery.*\.js -# ||primewire.ag/frame_header.php?$subdocument (easylistchina+easylist.txt: 44454) -.primewire.ag/frame_header\.php\? -# ||primenews.com.bd/add/ (easylistchina+easylist.txt: 44453) -.primenews.com.bd/add/ -# ||pressrepublican.com/wallpaper/ (easylistchina+easylist.txt: 44452) -.pressrepublican.com/wallpaper/ -# ||prerollads.ign.com^ (easylistchina+easylist.txt: 44451) -.prerollads.ign.com -# ||prepperwebsite.com/wp-content/uploads/*_250x250.jpg (easylistchina+easylist.txt: 44450) -.prepperwebsite.com/wp-content/uploads/.*_250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*_250x150.png (easylistchina+easylist.txt: 44449) -.prepperwebsite.com/wp-content/uploads/.*_250x150\.png -# ||prepperwebsite.com/wp-content/uploads/*/tsepulveda-1.jpg (easylistchina+easylist.txt: 44448) -.prepperwebsite.com/wp-content/uploads/.*/tsepulveda-1\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/PW-Ad.jpg (easylistchina+easylist.txt: 44447) -.prepperwebsite.com/wp-content/uploads/.*/PW-Ad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/jihad.jpg (easylistchina+easylist.txt: 44446) -.prepperwebsite.com/wp-content/uploads/.*/jihad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/FME-Red-CAP.jpg (easylistchina+easylist.txt: 44445) -.prepperwebsite.com/wp-content/uploads/.*/FME-Red-CAP\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/DeadwoodStove-PW.gif (easylistchina+easylist.txt: 44444) -.prepperwebsite.com/wp-content/uploads/.*/DeadwoodStove-PW\.gif -# ||prepperwebsite.com/wp-content/uploads/*/apmgoldmembership250x250.jpg (easylistchina+easylist.txt: 44443) -.prepperwebsite.com/wp-content/uploads/.*/apmgoldmembership250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/250x250- (easylistchina+easylist.txt: 44442) -.prepperwebsite.com/wp-content/uploads/.*/250x250- -# ||prepperwebsite.com/wp-content/uploads/*-250x250.jpg (easylistchina+easylist.txt: 44441) -.prepperwebsite.com/wp-content/uploads/.*-250x250\.jpg -# ||preppersmallbiz.com/wp-content/uploads/*/PSB-Support.jpg (easylistchina+easylist.txt: 44440) -.preppersmallbiz.com/wp-content/uploads/.*/PSB-Support\.jpg -# ||premierleague.com^*/sponsor_ (easylistchina+easylist.txt: 44439) -.premierleague.com/.*/sponsor_ -# ||prehackshub.com/js/popup-wide.js (easylistchina+easylist.txt: 44438) -.prehackshub.com/js/popup-wide\.js -# ||preev.com/ad| (easylistchina+easylist.txt: 44437) -.preev.com/ad$ -# ||preev.com/ads| (easylistchina+easylist.txt: 44436) -.preev.com/ads$ -# ||praguepost.com/images/banners/ (easylistchina+easylist.txt: 44435) -.praguepost.com/images/banners/ -# ||pr0gramm.com/wm/ (easylistchina+easylist.txt: 44434) -.pr0gramm.com/wm/ -# ||pqarchiver.com^*/utilstextlinksxml.js (easylistchina+easylist.txt: 44433) -.pqarchiver.com/.*/utilstextlinksxml\.js -# ||powvideo.net/ban/ (easylistchina+easylist.txt: 44432) -.powvideo.net/ban/ -# ||powerbot.org^*/ads/ (easylistchina+easylist.txt: 44431) -.powerbot.org/.*/ads/ -# ||power977.com/images/banners/ (easylistchina+easylist.txt: 44430) -.power977.com/images/banners/ -# ||power1035fm.com^*/banners/ (easylistchina+easylist.txt: 44429) -.power1035fm.com/.*/banners/ -# ||poststar.com^*/promos/ (easylistchina+easylist.txt: 44428) -.poststar.com/.*/promos/ -# ||poststar.com^*/dealwidget.php? (easylistchina+easylist.txt: 44427) -.poststar.com/.*/dealwidget\.php\? -# ||poststar.com^*/ad_ (easylistchina+easylist.txt: 44426) -.poststar.com/.*/ad_ -# ||postcrescent.com^*/promos/ (easylistchina+easylist.txt: 44424) -.postcrescent.com/.*/promos/ -# ||postadsnow.com/panbanners/ (easylistchina+easylist.txt: 44423) -.postadsnow.com/panbanners/ -# ||positivehealth.com^*/TopicbannerAvatar/ (easylistchina+easylist.txt: 44422) -.positivehealth.com/.*/TopicbannerAvatar/ -# ||positivehealth.com^*/BannerAvatar/ (easylistchina+easylist.txt: 44421) -.positivehealth.com/.*/BannerAvatar/ -# ||porttechnology.org/images/partners/ (easylistchina+easylist.txt: 44420) -.porttechnology.org/images/partners/ -# ||portmiamiwebcam.com/images/sling_ (easylistchina+easylist.txt: 44419) -.portmiamiwebcam.com/images/sling_ -# ||portlanddailysun.me/images/banners/ (easylistchina+easylist.txt: 44418) -.portlanddailysun.me/images/banners/ -# ||portevergladeswebcam.com^*-WebCamBannerFall_ (easylistchina+easylist.txt: 44417) -.portevergladeswebcam.com/.*-WebCamBannerFall_ -# ||portevergladeswebcam.com^*-Ad.jpg (easylistchina+easylist.txt: 44416) -.portevergladeswebcam.com/.*-Ad\.jpg -# ||portcanaveralwebcam.com/images/ad_ (easylistchina+easylist.txt: 44415) -.portcanaveralwebcam.com/images/ad_ -# ||pornevo.com/events_ (easylistchina+easylist.txt: 44414) -.pornevo.com/events_ -# ||pop-over.powered-by.justplayzone.com^ (easylistchina+easylist.txt: 44413) -.pop-over.powered-by.justplayzone.com -# ||pons.eu^*/lingeniobanner.swf (easylistchina+easylist.txt: 44412) -.pons.eu/.*/lingeniobanner\.swf -# ||politicususa.com/psa/ (easylistchina+easylist.txt: 44410) -.politicususa.com/psa/ -# ||politico.com^*_skin_ (easylistchina+easylist.txt: 44409) -.politico.com/.*_skin_ -# ||politicalwire.com/images/*-sponsor.jpg (easylistchina+easylist.txt: 44408) -.politicalwire.com/images/.*-sponsor\.jpg -# ||policeprofessional.com/files/pictures- (easylistchina+easylist.txt: 44407) -.policeprofessional.com/files/pictures- -# ||policeprofessional.com/files/banners- (easylistchina+easylist.txt: 44406) -.policeprofessional.com/files/banners- -# ||police-car-photos.com/pictures/sponsors/ (easylistchina+easylist.txt: 44405) -.police-car-photos.com/pictures/sponsors/ -# ||pokernews.com/preroll.php? (easylistchina+easylist.txt: 44404) -.pokernews.com/preroll\.php\? -# ||pokernews.com/b/ (easylistchina+easylist.txt: 44403) -.pokernews.com/b/ -# ||pogo.com/v/*/js/ad.js (easylistchina+easylist.txt: 44402) -.pogo.com/v/.*/js/ad\.js -# ||pocketpcaddict.com/forums/images/banners/ (easylistchina+easylist.txt: 44401) -.pocketpcaddict.com/forums/images/banners/ -# ||pocket-lint.com/images/bytemarkad. (easylistchina+easylist.txt: 44400) -.pocket-lint.com/images/bytemarkad\. -# ||pmm.people.com.cn^ (easylistchina+easylist.txt: 44399) -.pmm.people.com.cn -# ||plundermedia.com*rectangle- (easylistchina+easylist.txt: 44398) -.plundermedia.com*./.*rectangle- -.plundermedia.com*rectangle-*. -# ||plunderguide.com/rectangle2.html (easylistchina+easylist.txt: 44397) -.plunderguide.com/rectangle2\.html -# ||plunderguide.com/leaderboard-gor.html (easylistchina+easylist.txt: 44396) -.plunderguide.com/leaderboard-gor\.html -# ||plsn.com/images/PLSN-Bg1.jpg (easylistchina+easylist.txt: 44395) -.plsn.com/images/PLSN-Bg1\.jpg -# ||playtowerdefensegames.com/ptdg-gao-gamebox-homepage.swf (easylistchina+easylist.txt: 44394) -.playtowerdefensegames.com/ptdg-gao-gamebox-homepage\.swf -# ||playhub.com/js/popup-wide.js (easylistchina+easylist.txt: 44392) -.playhub.com/js/popup-wide\.js -# ||playhd.eu^*.html|$subdocument (easylistchina+easylist.txt: 44391) -.playhd.eu/.*\.html$ -# ||playgroundmag.net^*/wallpaperpgesp_$image (easylistchina+easylist.txt: 44390) -.playgroundmag.net/.*/wallpaperpgesp_ -# ||playgames2.com/rand100x100.php (easylistchina+easylist.txt: 44389) -.playgames2.com/rand100x100\.php -# ||playgames2.com/mmoout.php (easylistchina+easylist.txt: 44388) -.playgames2.com/mmoout\.php -# ||playgames2.com/default160x160.php (easylistchina+easylist.txt: 44387) -.playgames2.com/default160x160\.php -# ||playgames2.com/ban300- (easylistchina+easylist.txt: 44386) -.playgames2.com/ban300- -# ||player.insuranceandhealth.com^ (easylistchina+easylist.txt: 44385) -.player.insuranceandhealth.com -# ||player.alloutwedding.com^ (easylistchina+easylist.txt: 44384) -.player.alloutwedding.com -# ||player.accoona.com^ (easylistchina+easylist.txt: 44383) -.player.accoona.com -# ||player.800directories.com^ (easylistchina+easylist.txt: 44382) -.player.800directories.com -# ||player.1stcreditrepairs.com^ (easylistchina+easylist.txt: 44381) -.player.1stcreditrepairs.com -# ||player.1800coupon.com^ (easylistchina+easylist.txt: 44380) -.player.1800coupon.com -# ||play4movie.com/banner/ (easylistchina+easylist.txt: 44379) -.play4movie.com/banner/ -# ||planetlotus.org/images/partners/ (easylistchina+easylist.txt: 44378) -.planetlotus.org/images/partners/ -# ||planecrashinfo.com/images/advertize1.gif (easylistchina+easylist.txt: 44377) -.planecrashinfo.com/images/advertize1\.gif -# ||pixhost.org/image/fik1.jpg (easylistchina+easylist.txt: 44376) -.pixhost.org/image/fik1\.jpg -# ||pittnews.com/modules/mod_novarp/ (easylistchina+easylist.txt: 44375) -.pittnews.com/modules/mod_novarp/ -# ||pitchero.com^*/toolstation.gif (easylistchina+easylist.txt: 44374) -.pitchero.com/.*/toolstation\.gif -# ||pirateproxy.nl/inc/ex.js (easylistchina+easylist.txt: 44373) -.pirateproxy.nl/inc/ex\.js -# ||piratefm.co.uk/resources/creative/ (easylistchina+easylist.txt: 44372) -.piratefm.co.uk/resources/creative/ -# ||pinknews.co.uk/newweb/ (easylistchina+easylist.txt: 44371) -.pinknews.co.uk/newweb/ -# ||pinknews.co.uk/gsky. (easylistchina+easylist.txt: 44370) -.pinknews.co.uk/gsky\. -# ||pinkbike.org^*/skins/ (easylistchina+easylist.txt: 44369) -.pinkbike.org/.*/skins/ -# ||picsee.net/clk.js (easylistchina+easylist.txt: 44368) -.picsee.net/clk\.js -# ||pickmeupnews.com/cfopop.js (easylistchina+easylist.txt: 44367) -.pickmeupnews.com/cfopop\.js -# ||physorg.com^*/addetect.js (easylistchina+easylist.txt: 44366) -.physorg.com/.*/addetect\.js -# ||phuketwan.com/img/b/ (easylistchina+easylist.txt: 44365) -.phuketwan.com/img/b/ -# ||phuketgazette.net^*/banners/ (easylistchina+easylist.txt: 44364) -.phuketgazette.net/.*/banners/ -# ||phuketgazette.net/banners/ (easylistchina+easylist.txt: 44363) -.phuketgazette.net/banners/ -# ||phuket-post.com/img/a/ (easylistchina+easylist.txt: 44362) -.phuket-post.com/img/a/ -# ||phpmotion.com/images/banners-webhosts/ (easylistchina+easylist.txt: 44361) -.phpmotion.com/images/banners-webhosts/ -# ||phpbb.com/theme/images/hosting/hostmonster-downloads.gif (easylistchina+easylist.txt: 44360) -.phpbb.com/theme/images/hosting/hostmonster-downloads\.gif -# ||phpbb.com/theme/images/bg_forumatic_front_page.png (easylistchina+easylist.txt: 44359) -.phpbb.com/theme/images/bg_forumatic_front_page\.png -# ||photosupload.net/photosupload.js (easylistchina+easylist.txt: 44358) -.photosupload.net/photosupload\.js -# ||photo.net/equipment/pg-160^ (easylistchina+easylist.txt: 44356) -.photo.net/equipment/pg-160[^\w%.-] -# ||phoronix.com/phxforums-thread-show.php (easylistchina+easylist.txt: 44355) -.phoronix.com/phxforums-thread-show\.php -# ||phonescoop.com^*/a_tab.gif (easylistchina+easylist.txt: 44354) -.phonescoop.com/.*/a_tab\.gif -# ||phonebunch.com/images/flipkart_offers_alt.jpg (easylistchina+easylist.txt: 44353) -.phonebunch.com/images/flipkart_offers_alt\.jpg -# ||phonearena.com/images/banners/ (easylistchina+easylist.txt: 44352) -.phonearena.com/images/banners/ -# ||phnompenhpost.com^*/banner_ (easylistchina+easylist.txt: 44351) -.phnompenhpost.com/.*/banner_ -# ||phnompenhpost.com/images/stories/banner/ (easylistchina+easylist.txt: 44350) -.phnompenhpost.com/images/stories/banner/ -# ||phillytrib.com/images/banners/ (easylistchina+easylist.txt: 44349) -.phillytrib.com/images/banners/ -# ||phantom.ie^*/banners/ (easylistchina+easylist.txt: 44348) -.phantom.ie/.*/banners/ -# ||pghcitypaper.com/general/modalbox/modalbox.js (easylistchina+easylist.txt: 44347) -.pghcitypaper.com/general/modalbox/modalbox\.js -# ||pgatour.com^*/featurebillboard_ (easylistchina+easylist.txt: 44346) -.pgatour.com/.*/featurebillboard_ -# ||pettube.com/images/*-partner. (easylistchina+easylist.txt: 44345) -.pettube.com/images/.*-partner\. -# ||petri.co.il/wp-content/uploads/banner700x475_ (easylistchina+easylist.txt: 44344) -.petri.co.il/wp-content/uploads/banner700x475_ -# ||petri.co.il/wp-content/uploads/banner1000x75_ (easylistchina+easylist.txt: 44343) -.petri.co.il/wp-content/uploads/banner1000x75_ -# ||petri.co.il/media/$image (easylistchina+easylist.txt: 44342) -.petri.co.il/media/ -# ||peruthisweek.com/uploads/sponsor_image/ (easylistchina+easylist.txt: 44341) -.peruthisweek.com/uploads/sponsor_image/ -# ||perezhilton.com/images/ask/ (easylistchina+easylist.txt: 44340) -.perezhilton.com/images/ask/ -# ||penguin-news.com/images/banners/ (easylistchina+easylist.txt: 44339) -.penguin-news.com/images/banners/ -# ||pedestrian.tv/_crunk/wp-content/files_flutter/ (easylistchina+easylist.txt: 44338) -.pedestrian.tv/_crunk/wp-content/files_flutter/ -# ||pechextreme.com^*/banners/ (easylistchina+easylist.txt: 44337) -.pechextreme.com/.*/banners/ -# ||pechextreme.com^*/banner. (easylistchina+easylist.txt: 44336) -.pechextreme.com/.*/banner\. -# ||pe.com^*/biice2scripts.js (easylistchina+easylist.txt: 44335) -.pe.com/.*/biice2scripts\.js -# ||pcworld.com/templates/video/popup.jsp?*&flv=/pcw/ads/ (easylistchina+easylist.txt: 44334) -.pcworld.com/templates/video/popup\.jsp\?.*&flv=/pcw/ads/ -# ||pcworld.com/images/*_vidmod_316x202_ (easylistchina+easylist.txt: 44333) -.pcworld.com/images/.*_vidmod_316x202_ -# ||pcworld.com/ads/ (easylistchina+easylist.txt: 44332) -.pcworld.com/ads/ -# ||pcworld.co.nz^*_siteskin_ (easylistchina+easylist.txt: 44331) -.pcworld.co.nz/.*_siteskin_ -# ||pcr-online.biz/static/banners/ (easylistchina+easylist.txt: 44330) -.pcr-online.biz/static/banners/ -# ||pcpro.co.uk^*skin_wide. (easylistchina+easylist.txt: 44329) -.pcpro.co.uk/.*skin_wide\. -# ||pcpro.co.uk^*/pcprositeskin (easylistchina+easylist.txt: 44328) -.pcpro.co.uk/.*/pcprositeskin -# ||pcpro.co.uk/images/skins/ (easylistchina+easylist.txt: 44327) -.pcpro.co.uk/images/skins/ -# ||pcpro.co.uk/images/*_siteskin (easylistchina+easylist.txt: 44326) -.pcpro.co.uk/images/.*_siteskin -# ||pcmag.com/blogshome/logicbuy.js (easylistchina+easylist.txt: 44325) -.pcmag.com/blogshome/logicbuy\.js -# ||pcauthority.com.au^*/skins/ (easylistchina+easylist.txt: 44324) -.pcauthority.com.au/.*/skins/ -# ||pcadvisor.co.uk/graphics/sponsored/ (easylistchina+easylist.txt: 44323) -.pcadvisor.co.uk/graphics/sponsored/ -# ||pbsrc.com^*/sponsor/ (easylistchina+easylist.txt: 44322) -.pbsrc.com/.*/sponsor/ -# ||pbsrc.com/sponsor/ (easylistchina+easylist.txt: 44321) -.pbsrc.com/sponsor/ -# ||pbs.org^*/sponsors/ (easylistchina+easylist.txt: 44320) -.pbs.org/.*/sponsors/ -# ||payplay.fm^*/mastercs.js (easylistchina+easylist.txt: 44319) -.payplay.fm/.*/mastercs\.js -# ||pasadenajournal.com/images/banners/ (easylistchina+easylist.txt: 44317) -.pasadenajournal.com/images/banners/ -# ||partners-z.com^ (easylistchina+easylist.txt: 44316) -.partners-z.com -# ||parlemagazine.com/images/banners/ (easylistchina+easylist.txt: 44315) -.parlemagazine.com/images/banners/ -# ||pardaphash.com/direct/tracker/add/ (easylistchina+easylist.txt: 44314) -.pardaphash.com/direct/tracker/add/ -# ||paradoxwikis.com/Sidebar.jpg (easylistchina+easylist.txt: 44313) -.paradoxwikis.com/Sidebar\.jpg -# ||parade.com/images/skins/ (easylistchina+easylist.txt: 44312) -.parade.com/images/skins/ -# ||pandora.com^*/mediaserverPublicRedirect.jsp (easylistchina+easylist.txt: 44311) -.pandora.com/.*/mediaserverPublicRedirect\.jsp -# ||pan2.ephotozine.com^$image (easylistchina+easylist.txt: 44310) -.pan2.ephotozine.com -# ||paktribune.com^*/banner (easylistchina+easylist.txt: 44309) -.paktribune.com/.*/banner -# ||pakistantoday.com.pk^*/karachi_houston_PakistanToday.jpg (easylistchina+easylist.txt: 44308) -.pakistantoday.com.pk/.*/karachi_houston_PakistanToday\.jpg -# ||paisalive.com/include/popup.js (easylistchina+easylist.txt: 44307) -.paisalive.com/include/popup\.js -# ||pagesinventory.com/_data/img/*_125x400_ (easylistchina+easylist.txt: 44306) -.pagesinventory.com/_data/img/.*_125x400_ -# ||pacificnewscenter.com/images/banners/ (easylistchina+easylist.txt: 44305) -.pacificnewscenter.com/images/banners/ -# ||p2pnet.net/images/$image (easylistchina+easylist.txt: 44304) -.p2pnet.net/images/ -# ||ozy.com^*/interstitial/ (easylistchina+easylist.txt: 44303) -.ozy.com/.*/interstitial/ -# ||ozy.com/modules/_common/ozy/pushdown/ (easylistchina+easylist.txt: 44302) -.ozy.com/modules/_common/ozy/pushdown/ -# ||ozy.com/modules/_common/ozy/full_width/ (easylistchina+easylist.txt: 44301) -.ozy.com/modules/_common/ozy/full_width/ -# ||ozy.com/modules/_common/ozy/blade/ (easylistchina+easylist.txt: 44300) -.ozy.com/modules/_common/ozy/blade/ -# ||ozqul.com^*/webbanners.png (easylistchina+easylist.txt: 44299) -.ozqul.com/.*/webbanners\.png -# ||oyetimes.com/join/advertisers.html (easylistchina+easylist.txt: 44298) -.oyetimes.com/join/advertisers\.html -# ||ox.furaffinity.net^ (easylistchina+easylist.txt: 44297) -.ox.furaffinity.net -# ||ox-d.wetransfer.com^ (easylistchina+easylist.txt: 44296) -.ox-d.wetransfer.com -# ||ox-d.sbnation.com^ (easylistchina+easylist.txt: 44295) -.ox-d.sbnation.com -# ||ox-d.rantsports.com^ (easylistchina+easylist.txt: 44294) -.ox-d.rantsports.com -# ||ow.ly^*/hootsuite_promo.jpg (easylistchina+easylist.txt: 44293) -.ow.ly/.*/hootsuite_promo\.jpg -# ||ovfile.com/player/jwadplugin.swf$object-subrequest (easylistchina+easylist.txt: 44292) -.ovfile.com/player/jwadplugin\.swf -# ||overclockers.co.uk^*/background/ (easylistchina+easylist.txt: 44291) -.overclockers.co.uk/.*/background/ -# ||overclock3d.net/img/pcp.jpg (easylistchina+easylist.txt: 44290) -.overclock3d.net/img/pcp\.jpg -# ||outofaces.com/*.html$subdocument (easylistchina+easylist.txt: 44289) -.outofaces.com/.*\.html -# ||outlookmoney.com/sharekhan_ad.jpg (easylistchina+easylist.txt: 44288) -.outlookmoney.com/sharekhan_ad\.jpg -# ||outlookindia.com/image/banner_ (easylistchina+easylist.txt: 44287) -.outlookindia.com/image/banner_ -# ||ourmanga.com/funklicks (easylistchina+easylist.txt: 44286) -.ourmanga.com/funklicks -# ||oteupload.com/images/iLivid-download- (easylistchina+easylist.txt: 44285) -.oteupload.com/images/iLivid-download- -# ||osdir.com/ml/$subdocument (easylistchina+easylist.txt: 44284) -.osdir.com/ml/ -# ||orlandosentinel2.com^*-sponsorship- (easylistchina+easylist.txt: 44283) -.orlandosentinel2.com/.*-sponsorship- -# ||orkut.gmodules.com^/promote.xml (easylistchina+easylist.txt: 44282) -.orkut.gmodules.com//promote\.xml -# ||orissadiary.com/img/*-banner.gif (easylistchina+easylist.txt: 44281) -.orissadiary.com/img/.*-banner\.gif -# ||originalfm.com/images/hotspots/ (easylistchina+easylist.txt: 44280) -.originalfm.com/images/hotspots/ -# ||oraclebroadcasting.com/images/hempusa_330.gif (easylistchina+easylist.txt: 44279) -.oraclebroadcasting.com/images/hempusa_330\.gif -# ||oraclebroadcasting.com/images/extendovite300.gif (easylistchina+easylist.txt: 44278) -.oraclebroadcasting.com/images/extendovite300\.gif -# ||oraclebroadcasting.com/images/enerfood-300x90.gif (easylistchina+easylist.txt: 44277) -.oraclebroadcasting.com/images/enerfood-300x90\.gif -# ||optimum.net/utilities/doubleclicktargeting (easylistchina+easylist.txt: 44276) -.optimum.net/utilities/doubleclicktargeting -# ||optics.org/banners/ (easylistchina+easylist.txt: 44275) -.optics.org/banners/ -# ||oprah.com^*-300x335.jpg (easylistchina+easylist.txt: 44274) -.oprah.com/.*-300x335\.jpg -# ||opensubtitles.org/gfx/banners_campaigns/ (easylistchina+easylist.txt: 44273) -.opensubtitles.org/gfx/banners_campaigns/ -# ||opencurrency.com/wp-content/uploads/*-aocs-sidebar-commodity-bank.png (easylistchina+easylist.txt: 44272) -.opencurrency.com/wp-content/uploads/.*-aocs-sidebar-commodity-bank\.png -# ||opednews.com^*/iframe.php? (easylistchina+easylist.txt: 44271) -.opednews.com/.*/iframe\.php\? -# ||onvasortir.com/maximemo-pense-bete-ovs.png (easylistchina+easylist.txt: 44270) -.onvasortir.com/maximemo-pense-bete-ovs\.png -# ||onrpg.com^*.php?$xmlhttprequest (easylistchina+easylist.txt: 44269) -.onrpg.com/.*\.php\? -# ||onlygoodmovies.com/netflix.gif (easylistchina+easylist.txt: 44268) -.onlygoodmovies.com/netflix\.gif -# ||onlineshopping.co.za/expop/ (easylistchina+easylist.txt: 44267) -.onlineshopping.co.za/expop/ -# ||onlinerealgames.com/google$subdocument (easylistchina+easylist.txt: 44266) -.onlinerealgames.com/google -# ||onlinenews.com.pk/onlinenews-admin/banners/ (easylistchina+easylist.txt: 44265) -.onlinenews.com.pk/onlinenews-admin/banners/ -# ||onlinemarketnews.org^*/silver72890.gif (easylistchina+easylist.txt: 44264) -.onlinemarketnews.org/.*/silver72890\.gif -# ||onlinemarketnews.org^*/silver300600.gif (easylistchina+easylist.txt: 44263) -.onlinemarketnews.org/.*/silver300600\.gif -# ||onlinekeystore.com/skin1/images/side- (easylistchina+easylist.txt: 44262) -.onlinekeystore.com/skin1/images/side- -# ||onionstatic.com/sponsored/ (easylistchina+easylist.txt: 44261) -.onionstatic.com/sponsored/ -# ||onepieceofbleach.com/onepieceofbleach-gao- (easylistchina+easylist.txt: 44260) -.onepieceofbleach.com/onepieceofbleach-gao- -# ||one-delivery.co.uk^*/sensitivedating.png (easylistchina+easylist.txt: 44259) -.one-delivery.co.uk/.*/sensitivedating\.png -# ||oncyprus.com^*/banners/ (easylistchina+easylist.txt: 44258) -.oncyprus.com/.*/banners/ -# ||on.net/images/gon_nodestore.jpg (easylistchina+easylist.txt: 44257) -.on.net/images/gon_nodestore\.jpg -# ||omgpop.com/dc? (easylistchina+easylist.txt: 44256) -.omgpop.com/dc\? -# ||oldgames.sk/images/topbar/ (easylistchina+easylist.txt: 44255) -.oldgames.sk/images/topbar/ -# ||okcupid.com/daisy?$subdocument (easylistchina+easylist.txt: 44254) -.okcupid.com/daisy\? -# ||okccdn.com/media/img/takeovers/ (easylistchina+easylist.txt: 44253) -.okccdn.com/media/img/takeovers/ -# ||oilprice.com/oiopub/ (easylistchina+easylist.txt: 44252) -.oilprice.com/oiopub/ -# ||oilprice.com/images/sponsors/ (easylistchina+easylist.txt: 44251) -.oilprice.com/images/sponsors/ -# ||oilprice.com/images/banners/ (easylistchina+easylist.txt: 44250) -.oilprice.com/images/banners/ -# ||ohmygore.com/ef_pub*.php (easylistchina+easylist.txt: 44249) -.ohmygore.com/ef_pub.*\.php -# ||oddschecker.com^*/takeover/ (easylistchina+easylist.txt: 44248) -.oddschecker.com/.*/takeover/ -# ||ocp.cbssports.com/pacific/request.jsp? (easylistchina+easylist.txt: 44247) -.ocp.cbssports.com/pacific/request\.jsp\? -# ||ocforums.com/adj/ (easylistchina+easylist.txt: 44246) -.ocforums.com/adj/ -# ||observer.ug/images/banners/ (easylistchina+easylist.txt: 44245) -.observer.ug/images/banners/ -# ||observer.org.sz/files/banners/ (easylistchina+easylist.txt: 44244) -.observer.org.sz/files/banners/ -# ||observer.com.na/images/banners/ (easylistchina+easylist.txt: 44243) -.observer.com.na/images/banners/ -# ||oascentral.newsmax.com^ (easylistchina+easylist.txt: 44240) -.oascentral.newsmax.com -# ||oascentral.hosted.ap.org^ (easylistchina+easylist.txt: 44239) -.oascentral.hosted.ap.org -# ||oascentral.chron.com^ (easylistchina+easylist.txt: 44238) -.oascentral.chron.com -# ||oasc07.citywire.co.uk^ (easylistchina+easylist.txt: 44237) -.oasc07.citywire.co.uk -# ||oas.skyscanner.net^ (easylistchina+easylist.txt: 44236) -.oas.skyscanner.net -# ||oas.autotrader.co.uk^ (easylistchina+easylist.txt: 44235) -.oas.autotrader.co.uk -# ||oanda.com/wandacache/wf-banner- (easylistchina+easylist.txt: 44234) -.oanda.com/wandacache/wf-banner- -# ||nznewsuk.co.uk/banners/ (easylistchina+easylist.txt: 44233) -.nznewsuk.co.uk/banners/ -# ||nzbking.com/static/nzbdrive_banner.swf (easylistchina+easylist.txt: 44232) -.nzbking.com/static/nzbdrive_banner\.swf -# ||nzbindex.nl/images/banners/ (easylistchina+easylist.txt: 44231) -.nzbindex.nl/images/banners/ -# ||nytimes.com^*-sponsor- (easylistchina+easylist.txt: 44230) -.nytimes.com/.*-sponsor- -# ||nytimes.com/ads/ (easylistchina+easylist.txt: 44229) -.nytimes.com/ads/ -# ||nyt.com^*-sponsor- (easylistchina+easylist.txt: 44228) -.nyt.com/.*-sponsor- -# ||nyrej.com/c/ (easylistchina+easylist.txt: 44227) -.nyrej.com/c/ -# ||nypost.com^*/takeovers/ (easylistchina+easylist.txt: 44226) -.nypost.com/.*/takeovers/ -# ||nymag.com^*/metrony_ (easylistchina+easylist.txt: 44225) -.nymag.com/.*/metrony_ -# ||nymag.com/scripts/skintakeover.js (easylistchina+easylist.txt: 44224) -.nymag.com/scripts/skintakeover\.js -# ||nymag.com/partners/ (easylistchina+easylist.txt: 44223) -.nymag.com/partners/ -# ||nydailynews.com^*-reskin- (easylistchina+easylist.txt: 44222) -.nydailynews.com/.*-reskin- -# ||nydailynews.com/PCRichards/ (easylistchina+easylist.txt: 44221) -.nydailynews.com/PCRichards/ -# ||nydailynews.com/img/sponsor/ (easylistchina+easylist.txt: 44220) -.nydailynews.com/img/sponsor/ -# ||nyaa.se/al (easylistchina+easylist.txt: 44219) -.nyaa.se/al -# ||nyaa.se/aj (easylistchina+easylist.txt: 44218) -.nyaa.se/aj -# ||nyaa.se/ai (easylistchina+easylist.txt: 44217) -.nyaa.se/ai -# ||nyaa.se/ah (easylistchina+easylist.txt: 44216) -.nyaa.se/ah -# ||nyaa.se/ag (easylistchina+easylist.txt: 44215) -.nyaa.se/ag -# ||nuvo.net^*/FooterPromoButtons.html (easylistchina+easylist.txt: 44214) -.nuvo.net/.*/FooterPromoButtons\.html -# ||nuttynewstoday.com/images/percento-banner.jpg (easylistchina+easylist.txt: 44213) -.nuttynewstoday.com/images/percento-banner\.jpg -# ||nuttynewstoday.com/images/hostwink.jpg (easylistchina+easylist.txt: 44212) -.nuttynewstoday.com/images/hostwink\.jpg -# ||nutritionhorizon.com/content/flash_loaders/$object (easylistchina+easylist.txt: 44211) -.nutritionhorizon.com/content/flash_loaders/ -# ||nutritionhorizon.com/content/banners/ (easylistchina+easylist.txt: 44210) -.nutritionhorizon.com/content/banners/ -# ||numberempire.com/images/b/ (easylistchina+easylist.txt: 44209) -.numberempire.com/images/b/ -# ||nufc.com^*_360x120.gif (easylistchina+easylist.txt: 44208) -.nufc.com/.*_360x120\.gif -# ||nufc.com^*/The%20Gate_NUFC.com%20banner_%2016.8.13.gif (easylistchina+easylist.txt: 44207) -.nufc.com/.*/The%20Gate_NUFC\.com%20banner_%2016\.8\.13\.gif -# ||nufc.com^*/skyscraper.gif (easylistchina+easylist.txt: 44206) -.nufc.com/.*/skyscraper\.gif -# ||nufc.com^*/mjs-2013-11.png (easylistchina+easylist.txt: 44205) -.nufc.com/.*/mjs-2013-11\.png -# ||nufc.com^*/altoonative_Cardiff.gif (easylistchina+easylist.txt: 44204) -.nufc.com/.*/altoonative_Cardiff\.gif -# ||nufc.com/forddirectbanner.js (easylistchina+easylist.txt: 44203) -.nufc.com/forddirectbanner\.js -# ||nu2.nu^*_banner. (easylistchina+easylist.txt: 44202) -.nu2.nu/.*_banner\. -# ||nu2.nu^*/sponsor/ (easylistchina+easylist.txt: 44201) -.nu2.nu/.*/sponsor/ -# ||ntdtv.com^*/adv/ (easylistchina+easylist.txt: 44200) -.ntdtv.com/.*/adv/ -# ||nowwatchtvlive.com/revenuehits.html (easylistchina+easylist.txt: 44199) -.nowwatchtvlive.com/revenuehits\.html -# ||nowwatchtvlive.com/matomyads.php (easylistchina+easylist.txt: 44198) -.nowwatchtvlive.com/matomyads\.php -# ||nowgoal.com/images/foreign/ (easylistchina+easylist.txt: 44197) -.nowgoal.com/images/foreign/ -# ||novamov.com/images/download_video.jpg (easylistchina+easylist.txt: 44196) -.novamov.com/images/download_video\.jpg -# ||notebook-driver.com/wp-content/images/banner_ (easylistchina+easylist.txt: 44195) -.notebook-driver.com/wp-content/images/banner_ -# ||notdoppler.com^*-promo-siteskin. (easylistchina+easylist.txt: 44194) -.notdoppler.com/.*-promo-siteskin\. -# ||notdoppler.com^*-promo-homepageskin.png (easylistchina+easylist.txt: 44193) -.notdoppler.com/.*-promo-homepageskin\.png -# ||notalwaysromantic.com/images/banner- (easylistchina+easylist.txt: 44192) -.notalwaysromantic.com/images/banner- -# ||nosteam.ro^*/messagesprop.js (easylistchina+easylist.txt: 44191) -.nosteam.ro/.*/messagesprop\.js -# ||nosteam.ro^*/messages.js (easylistchina+easylist.txt: 44190) -.nosteam.ro/.*/messages\.js -# ||nosteam.ro^*/gamedvprop.js (easylistchina+easylist.txt: 44189) -.nosteam.ro/.*/gamedvprop\.js -# ||nosteam.ro^*/compressed.ggotab36.js (easylistchina+easylist.txt: 44188) -.nosteam.ro/.*/compressed\.ggotab36\.js -# ||norwaypost.no/images/banners/ (easylistchina+easylist.txt: 44187) -.norwaypost.no/images/banners/ -# ||northjersey.com^*_Sponsor. (easylistchina+easylist.txt: 44186) -.northjersey.com/.*_Sponsor\. -# ||noram.srv.ysm.yahoo.com^ (easylistchina+easylist.txt: 44185) -.noram.srv.ysm.yahoo.com -# ||nodevice.com/images/banners/ (easylistchina+easylist.txt: 44184) -.nodevice.com/images/banners/ -# ||nmimg.net/css/takeover_ (easylistchina+easylist.txt: 44183) -.nmimg.net/css/takeover_ -# ||nme.com/themes/takeovers/ (easylistchina+easylist.txt: 44182) -.nme.com/themes/takeovers/ -# ||nme.com/js/takeoverlay.js (easylistchina+easylist.txt: 44181) -.nme.com/js/takeoverlay\.js -# ||nmap.org/shared/images/p/$image (easylistchina+easylist.txt: 44180) -.nmap.org/shared/images/p/ -# ||nitrobahn.com.s3.amazonaws.com/theme/getclickybadge.gif (easylistchina+easylist.txt: 44179) -.nitrobahn.com.s3.amazonaws.com/theme/getclickybadge\.gif -# ||nirsoft.net/banners/ (easylistchina+easylist.txt: 44178) -.nirsoft.net/banners/ -# ||nijobfinder.co.uk/affiliates/ (easylistchina+easylist.txt: 44176) -.nijobfinder.co.uk/affiliates/ -# ||niggasbelike.com/wp-content/themes/zeecorporate/images/b.jpg (easylistchina+easylist.txt: 44175) -.niggasbelike.com/wp-content/themes/zeecorporate/images/b\.jpg -# ||nigerianyellowpages.com/images/banners/ (easylistchina+easylist.txt: 44174) -.nigerianyellowpages.com/images/banners/ -# ||nigerianbulletin.com^*/Siropu/ (easylistchina+easylist.txt: 44173) -.nigerianbulletin.com/.*/Siropu/ -# ||nigeriamasterweb.com/Masterweb/banners_pic/ (easylistchina+easylist.txt: 44172) -.nigeriamasterweb.com/Masterweb/banners_pic/ -# ||nigeriafootball.com/img/affiliate_ (easylistchina+easylist.txt: 44171) -.nigeriafootball.com/img/affiliate_ -# ||nichepursuits.com/wp-content/uploads/*/long-tail-pro-banner.gif (easylistchina+easylist.txt: 44170) -.nichepursuits.com/wp-content/uploads/.*/long-tail-pro-banner\.gif -# ||ngrguardiannews.com/images/banners/ (easylistchina+easylist.txt: 44169) -.ngrguardiannews.com/images/banners/ -# ||ngohq.com/images/ad.jpg$~collapse (easylistchina+easylist.txt: 44168) -.ngohq.com/images/ad\.jpg -# ||nflcdn.com^*/partner-type/$~stylesheet (easylistchina+easylist.txt: 44166) -.nflcdn.com/.*/partner-type/ -# ||nfl.com^*/page-background-image.jpg (easylistchina+easylist.txt: 44165) -.nfl.com/.*/page-background-image\.jpg -# ||nfl.com/assets/images/hp-poweredby- (easylistchina+easylist.txt: 44164) -.nfl.com/assets/images/hp-poweredby- -# ||nextstl.com/images/banners/ (easylistchina+easylist.txt: 44163) -.nextstl.com/images/banners/ -# ||nextbigwhat.com/wp-content/uploads/*ccavenue (easylistchina+easylist.txt: 44162) -.nextbigwhat.com/wp-content/uploads/.*ccavenue -# ||nextag.com^*/NextagSponsoredProducts.jsp? (easylistchina+easylist.txt: 44161) -.nextag.com/.*/NextagSponsoredProducts\.jsp\? -# ||newvision.co.ug/rightsidepopup/ (easylistchina+easylist.txt: 44160) -.newvision.co.ug/rightsidepopup/ -# ||newvision.co.ug/banners/ (easylistchina+easylist.txt: 44159) -.newvision.co.ug/banners/ -# ||newverhost.com/css/pp.js (easylistchina+easylist.txt: 44158) -.newverhost.com/css/pp\.js -# ||newverhost.com/css/onload.js (easylistchina+easylist.txt: 44157) -.newverhost.com/css/onload\.js -# ||newsweek.com^*interstitial.js (easylistchina+easylist.txt: 44156) -.newsweek.com/.*interstitial\.js -# ||newsvine.com/jenga/widget/ (easylistchina+easylist.txt: 44155) -.newsvine.com/jenga/widget/ -# ||newsvine.com//jenga/widget/ (easylistchina+easylist.txt: 44154) -# ||newsudanvision.com/images/Carjunctionadvert.gif (easylistchina+easylist.txt: 44153) -.newsudanvision.com/images/Carjunctionadvert\.gif -# ||newsudanvision.com/images/banners/ (easylistchina+easylist.txt: 44152) -.newsudanvision.com/images/banners/ -# ||newstrackindia.com/images/hairfallguru728x90.jpg (easylistchina+easylist.txt: 44151) -.newstrackindia.com/images/hairfallguru728x90\.jpg -# ||newstatesman.com/sites/all/themes/*_1280x2000.$image (easylistchina+easylist.txt: 44150) -.newstatesman.com/sites/all/themes/.*_1280x2000\. -# ||newsreview.com/images/promo.gif (easylistchina+easylist.txt: 44149) -.newsreview.com/images/promo\.gif -# ||newsonjapan.com^*/banner/ (easylistchina+easylist.txt: 44148) -.newsonjapan.com/.*/banner/ -# ||newsday.co.tt/banner/ (easylistchina+easylist.txt: 44147) -.newsday.co.tt/banner/ -# ||newscdn.com.au^*/aldi/ (easylistchina+easylist.txt: 44145) -.newscdn.com.au/.*/aldi/ -# ||newsbusters.org^*/banners/ (easylistchina+easylist.txt: 44144) -.newsbusters.org/.*/banners/ -# ||news.com.au^*/public/img/p/$image (easylistchina+easylist.txt: 44143) -.news.com.au/.*/public/img/p/ -# ||news.com.au^*/promotions/ (easylistchina+easylist.txt: 44142) -.news.com.au/.*/promotions/ -# ||news.com.au^*/promos/ (easylistchina+easylist.txt: 44141) -.news.com.au/.*/promos/ -# ||news.com.au^*/images/*-bg.jpg (easylistchina+easylist.txt: 44140) -.news.com.au/.*/images/.*-bg\.jpg -# ||news.com.au^*-promo$image (easylistchina+easylist.txt: 44139) -.news.com.au/.*-promo -# ||news.com.au/news/vodafone/$object (easylistchina+easylist.txt: 44138) -.news.com.au/news/vodafone/ -# ||news.com.au/cs/*/bg-body.jpg (easylistchina+easylist.txt: 44137) -.news.com.au/cs/.*/bg-body\.jpg -# ||news.am/pic/bnr/ (easylistchina+easylist.txt: 44136) -.news.am/pic/bnr/ -# ||news-record.com/app/deal/ (easylistchina+easylist.txt: 44135) -.news-record.com/app/deal/ -# ||news-leader.com^*/banner.js (easylistchina+easylist.txt: 44134) -.news-leader.com/.*/banner\.js -# ||newpct.com/soporte/ (easylistchina+easylist.txt: 44133) -.newpct.com/soporte/ -# ||newoxfordreview.org/banners/ad- (easylistchina+easylist.txt: 44132) -.newoxfordreview.org/banners/ad- -# ||newipnow.com/ad-js.php (easylistchina+easylist.txt: 44131) -.newipnow.com/ad-js\.php -# ||newburytoday.co.uk^*-WillisAinsworth1.gif (easylistchina+easylist.txt: 44130) -.newburytoday.co.uk/.*-WillisAinsworth1\.gif -# ||newalbumreleases.net/banners/ (easylistchina+easylist.txt: 44129) -.newalbumreleases.net/banners/ -# ||newafricanmagazine.com/images/banners/ (easylistchina+easylist.txt: 44128) -.newafricanmagazine.com/images/banners/ -# ||networx.com/widget.php?aff_id=$script (easylistchina+easylist.txt: 44127) -.networx.com/widget\.php\?aff_id= -# ||networkwestvirginia.com/uploads/user_banners/ (easylistchina+easylist.txt: 44126) -.networkwestvirginia.com/uploads/user_banners/ -# ||network.sofeminine.co.uk^ (easylistchina+easylist.txt: 44125) -.network.sofeminine.co.uk -# ||netupd8.com^*/ads/ (easylistchina+easylist.txt: 44124) -.netupd8.com/.*/ads/ -# ||netsplit.de/links/rootado.gif (easylistchina+easylist.txt: 44123) -.netsplit.de/links/rootado\.gif -# ||netspidermm.indiatimes.com^ (easylistchina+easylist.txt: 44122) -.netspidermm.indiatimes.com -# ||netindian.in/frontsquare*.php (easylistchina+easylist.txt: 44121) -.netindian.in/frontsquare.*\.php -# ||nest.youwatch.org^ (easylistchina+easylist.txt: 44118) -.nest.youwatch.org -# ||nesn.com/img/sponsors/ (easylistchina+easylist.txt: 44117) -.nesn.com/img/sponsors/ -# ||nesn.com/img/nesn-nation/header-dunkin.jpg (easylistchina+easylist.txt: 44116) -.nesn.com/img/nesn-nation/header-dunkin\.jpg -# ||nesn.com/img/nesn-nation/bg- (easylistchina+easylist.txt: 44115) -.nesn.com/img/nesn-nation/bg- -# ||nerej.com/c/ (easylistchina+easylist.txt: 44114) -.nerej.com/c/ -# ||neowin.net/images/atlas/aww (easylistchina+easylist.txt: 44113) -.neowin.net/images/atlas/aww -# ||neoseeker.com/a_pane.php (easylistchina+easylist.txt: 44112) -.neoseeker.com/a_pane\.php -# ||nemesistv.info/jQuery.NagAds1.min.js (easylistchina+easylist.txt: 44111) -.nemesistv.info/jQuery\.NagAds1\.min\.js -# ||nearlygood.com^*/_aff.php? (easylistchina+easylist.txt: 44110) -.nearlygood.com/.*/_aff\.php\? -# ||ndtv.com^*/sponsors/ (easylistchina+easylist.txt: 44109) -.ndtv.com/.*/sponsors/ -# ||ndtv.com^*/banner/ (easylistchina+easylist.txt: 44108) -.ndtv.com/.*/banner/ -# ||ncrypt.in^*/layer.$script (easylistchina+easylist.txt: 44107) -.ncrypt.in/.*/layer\. -# ||ncrypt.in/javascript/jquery.msgbox.min.js (easylistchina+easylist.txt: 44106) -.ncrypt.in/javascript/jquery\.msgbox\.min\.js -# ||ncrypt.in/images/useful/ (easylistchina+easylist.txt: 44105) -.ncrypt.in/images/useful/ -# ||ncrypt.in/images/banner (easylistchina+easylist.txt: 44104) -.ncrypt.in/images/banner -# ||ncrypt.in/images/a/ (easylistchina+easylist.txt: 44103) -.ncrypt.in/images/a/ -# ||ncrypt.in/images/1.gif (easylistchina+easylist.txt: 44102) -.ncrypt.in/images/1\.gif -# ||nciku.com^*banner (easylistchina+easylist.txt: 44101) -.nciku.com/.*banner -# ||nbr.co.nz^*-WingBanner_ (easylistchina+easylist.txt: 44100) -.nbr.co.nz/.*-WingBanner_ -# ||naukimg.com/banner/ (easylistchina+easylist.txt: 44099) -.naukimg.com/banner/ -# ||naturalnews.com/sba/ (easylistchina+easylist.txt: 44098) -.naturalnews.com/sba/ -# ||nativetimes.com/images/banners/ (easylistchina+easylist.txt: 44097) -.nativetimes.com/images/banners/ -# ||nationmultimedia.com/new/js/nation_popup.js (easylistchina+easylist.txt: 44096) -.nationmultimedia.com/new/js/nation_popup\.js -# ||nationmultimedia.com/home/banner/ (easylistchina+easylist.txt: 44095) -.nationmultimedia.com/home/banner/ -# ||nationalturk.com^*/banner (easylistchina+easylist.txt: 44094) -.nationalturk.com/.*/banner -# ||nationalreview.com/images/display_300x600- (easylistchina+easylist.txt: 44093) -.nationalreview.com/images/display_300x600- -# ||nationaljournal.com/js/njg.js (easylistchina+easylist.txt: 44092) -.nationaljournal.com/js/njg\.js -# ||nation.sc/images/pub (easylistchina+easylist.txt: 44091) -.nation.sc/images/pub -# ||nation.sc/images/banners/ (easylistchina+easylist.txt: 44090) -.nation.sc/images/banners/ -# ||nation.lk^*/banners/ (easylistchina+easylist.txt: 44089) -.nation.lk/.*/banners/ -# ||nation.co.ke^*_bg.png (easylistchina+easylist.txt: 44088) -.nation.co.ke/.*_bg\.png -# ||nairaland.com/dynamic/$image (easylistchina+easylist.txt: 44087) -.nairaland.com/dynamic/ -# ||nairaland.com/contents/$image (easylistchina+easylist.txt: 44086) -.nairaland.com/contents/ -# ||naij.com^*/branding/ (easylistchina+easylist.txt: 44085) -.naij.com/.*/branding/ -# ||mywot.net/files/wotcert/vipre.png (easylistchina+easylist.txt: 44084) -.mywot.net/files/wotcert/vipre\.png -# ||myway.com/gca_iframe.html (easylistchina+easylist.txt: 44083) -.myway.com/gca_iframe\.html -# ||mysuncoast.com^*/sponsors/ (easylistchina+easylist.txt: 44082) -.mysuncoast.com/.*/sponsors/ -# ||mysuncoast.com/app/wallpaper/ (easylistchina+easylist.txt: 44081) -.mysuncoast.com/app/wallpaper/ -# ||mysubtitles.com^*_banner.jpg (easylistchina+easylist.txt: 44080) -.mysubtitles.com/.*_banner\.jpg -# ||myspacecdn.com/cms/*_skin_ (easylistchina+easylist.txt: 44079) -.myspacecdn.com/cms/.*_skin_ -# ||myshadibridalexpo.com/banner/ (easylistchina+easylist.txt: 44078) -.myshadibridalexpo.com/banner/ -# ||mysafesearch.co.uk/adds/ (easylistchina+easylist.txt: 44077) -.mysafesearch.co.uk/adds/ -# ||myrls.me/open.js (easylistchina+easylist.txt: 44076) -.myrls.me/open\.js -# ||myretrotv.com^*_vertbnr.jpg (easylistchina+easylist.txt: 44075) -.myretrotv.com/.*_vertbnr\.jpg -# ||myretrotv.com^*_horbnr.jpg (easylistchina+easylist.txt: 44074) -.myretrotv.com/.*_horbnr\.jpg -# ||myproperty.co.za/banners/ (easylistchina+easylist.txt: 44073) -.myproperty.co.za/banners/ -# ||mypremium.tv^*/bpad.htm (easylistchina+easylist.txt: 44072) -.mypremium.tv/.*/bpad\.htm -# ||mypiratebay.cl^$subdocument (easylistchina+easylist.txt: 44071) -.mypiratebay.cl -# ||mypbrand.com/wp-content/uploads/*banner (easylistchina+easylist.txt: 44070) -.mypbrand.com/wp-content/uploads/.*banner -# ||myiplayer.eu/ad (easylistchina+easylist.txt: 44069) -.myiplayer.eu/ad -# ||mygaming.co.za/news/wp-content/wallpapers/ (easylistchina+easylist.txt: 44068) -.mygaming.co.za/news/wp-content/wallpapers/ -# ||myfpscheats.com/bannerimg.jpg (easylistchina+easylist.txt: 44067) -.myfpscheats.com/bannerimg\.jpg -# ||myfax.com/free/images/sendfax/cp_coffee_660x80.swf (easylistchina+easylist.txt: 44066) -.myfax.com/free/images/sendfax/cp_coffee_660x80\.swf -# ||mycentraljersey.com^*/sponsor_ (easylistchina+easylist.txt: 44065) -.mycentraljersey.com/.*/sponsor_ -# ||mybroadband.co.za/news/wp-content/wallpapers/ (easylistchina+easylist.txt: 44064) -.mybroadband.co.za/news/wp-content/wallpapers/ -# ||myam1230.com/images/banners/ (easylistchina+easylist.txt: 44063) -.myam1230.com/images/banners/ -# ||my-link.pro/rotatingBanner.js (easylistchina+easylist.txt: 44062) -.my-link.pro/rotatingBanner\.js -# ||muthafm.com^*/partners.png (easylistchina+easylist.txt: 44061) -.muthafm.com/.*/partners\.png -# ||mustangevolution.com^*/banners/ (easylistchina+easylist.txt: 44060) -.mustangevolution.com/.*/banners/ -# ||mustangevolution.com^*/banner/ (easylistchina+easylist.txt: 44059) -.mustangevolution.com/.*/banner/ -# ||mustangevolution.com/images/300x100_ (easylistchina+easylist.txt: 44058) -.mustangevolution.com/images/300x100_ -# ||musictarget.com*/! (easylistchina+easylist.txt: 44057) -.musictarget.com*./(.*/)?! -# ||musicremedy.com/banner/ (easylistchina+easylist.txt: 44056) -.musicremedy.com/banner/ -# ||musicplayon.com/banner? (easylistchina+easylist.txt: 44055) -.musicplayon.com/banner\? -# ||musicmaza.com/bannerdyn (easylistchina+easylist.txt: 44054) -.musicmaza.com/bannerdyn -# ||music.yahoo.com/get-free-html (easylistchina+easylist.txt: 44053) -.music.yahoo.com/get-free-html -# ||murdermysteries.com/banners-murder/ (easylistchina+easylist.txt: 44052) -.murdermysteries.com/banners-murder/ -# ||multiupload.biz/r_ads2 (easylistchina+easylist.txt: 44051) -.multiupload.biz/r_ads2 -# ||multiup.org/img/sonyoutube_long.gif (easylistchina+easylist.txt: 44050) -.multiup.org/img/sonyoutube_long\.gif -# ||muchmusic.com^*/leaderboard_frame_obiwan.html (easylistchina+easylist.txt: 44049) -.muchmusic.com/.*/leaderboard_frame_obiwan\.html -# ||muchmusic.com^*/bigbox_frame_resizer.html (easylistchina+easylist.txt: 44048) -.muchmusic.com/.*/bigbox_frame_resizer\.html -# ||muchmusic.com/images/*-skin.png (easylistchina+easylist.txt: 44047) -.muchmusic.com/images/.*-skin\.png -# ||mtvnimages.com/images/skins/$image (easylistchina+easylist.txt: 44046) -.mtvnimages.com/images/skins/ -# ||mtv.co.uk^*/btn_itunes.png (easylistchina+easylist.txt: 44045) -.mtv.co.uk/.*/btn_itunes\.png -# ||mtbr.com/ajax/hotdeals/ (easylistchina+easylist.txt: 44044) -.mtbr.com/ajax/hotdeals/ -# ||msw.ms^*/jquery.MSWPagePeel- (easylistchina+easylist.txt: 44043) -.msw.ms/.*/jquery\.MSWPagePeel- -# ||msn.com/?adunitid (easylistchina+easylist.txt: 44042) -.msn.com/\?adunitid -# ||mp3skull.com/call_banner_exec_new. (easylistchina+easylist.txt: 44040) -.mp3skull.com/call_banner_exec_new\. -# ||mp3s.su/uploads/___/djz_to.png (easylistchina+easylist.txt: 44039) -.mp3s.su/uploads/___/djz_to\.png -# ||mp3mediaworld.com*/! (easylistchina+easylist.txt: 44038) -.mp3mediaworld.com*./(.*/)?! -# ||mp3li.net^*banner (easylistchina+easylist.txt: 44037) -.mp3li.net/.*banner -# ||mp3.li/images/md_banner_ (easylistchina+easylist.txt: 44036) -.mp3.li/images/md_banner_ -# ||mp.adverts.itv.com/priority/*.mp4$object-subrequest (easylistchina+easylist.txt: 44035) -.mp.adverts.itv.com/priority/.*\.mp4 -# ||movzap.com/zad.html (easylistchina+easylist.txt: 44034) -.movzap.com/zad\.html -# ||movzap.com/aad.html (easylistchina+easylist.txt: 44033) -.movzap.com/aad\.html -# ||movstreaming.com/images/edhim.jpg (easylistchina+easylist.txt: 44032) -.movstreaming.com/images/edhim\.jpg -# ||movizland.com/images/banners/ (easylistchina+easylist.txt: 44031) -.movizland.com/images/banners/ -# ||moviewallpaper.net/js/mwpopunder.js (easylistchina+easylist.txt: 44030) -.moviewallpaper.net/js/mwpopunder\.js -# ||movie4k.tv/e.js (easylistchina+easylist.txt: 44029) -.movie4k.tv/e\.js -# ||movie4k.to/*.js (easylistchina+easylist.txt: 44028) -.movie4k.to/.*\.js -# ||movie2kto.ws/popup (easylistchina+easylist.txt: 44027) -.movie2kto.ws/popup -# ||movie2k.tl/serve.php (easylistchina+easylist.txt: 44026) -.movie2k.tl/serve\.php -# ||movie2k.tl/layers/ (easylistchina+easylist.txt: 44025) -.movie2k.tl/layers/ -# ||mouthshut.com^*/zedo.aspx (easylistchina+easylist.txt: 44024) -.mouthshut.com/.*/zedo\.aspx -# ||mousesteps.com/images/banners/ (easylistchina+easylist.txt: 44023) -.mousesteps.com/images/banners/ -# ||mountainbuzz.com/attachments/banners/ (easylistchina+easylist.txt: 44022) -.mountainbuzz.com/attachments/banners/ -# ||motorweek.org^*/sponsor_logos/ (easylistchina+easylist.txt: 44021) -.motorweek.org/.*/sponsor_logos/ -# ||motortrader.com.my/skinner/ (easylistchina+easylist.txt: 44020) -.motortrader.com.my/skinner/ -# ||motorhomefacts.com/images/banners/ (easylistchina+easylist.txt: 44019) -.motorhomefacts.com/images/banners/ -# ||motorcycles-motorbikes.com/pictures/sponsors/ (easylistchina+easylist.txt: 44018) -.motorcycles-motorbikes.com/pictures/sponsors/ -# ||morningstaronline.co.uk/offsite/progressive-listings/ (easylistchina+easylist.txt: 44017) -.morningstaronline.co.uk/offsite/progressive-listings/ -# ||morefree.net/wp-content/uploads/*/mauritanie.gif (easylistchina+easylist.txt: 44016) -.morefree.net/wp-content/uploads/.*/mauritanie\.gif -# ||morefmphilly.com^*/sponsors/ (easylistchina+easylist.txt: 44015) -.morefmphilly.com/.*/sponsors/ -# ||monster.com/null&pp (easylistchina+easylist.txt: 44014) -.monster.com/null&pp -# ||monkeygamesworld.com/images/banners/ (easylistchina+easylist.txt: 44013) -.monkeygamesworld.com/images/banners/ -# ||monitor.co.ug/image/view/*/468/ (easylistchina+easylist.txt: 44012) -.monitor.co.ug/image/view/.*/468/ -# ||monitor.co.ug/image/view/*/120/ (easylistchina+easylist.txt: 44011) -.monitor.co.ug/image/view/.*/120/ -# ||moneymedics.biz/upload/banners/ (easylistchina+easylist.txt: 44010) -.moneymedics.biz/upload/banners/ -# ||moneymakerdiscussion.com/mmd-banners/ (easylistchina+easylist.txt: 44009) -.moneymakerdiscussion.com/mmd-banners/ -# ||mochiads.com/srv/ (easylistchina+easylist.txt: 44007) -.mochiads.com/srv/ -# ||mobilephonetalk.com/eurovps.swf (easylistchina+easylist.txt: 44006) -.mobilephonetalk.com/eurovps\.swf -# ||mob.org/banner/ (easylistchina+easylist.txt: 44005) -.mob.org/banner/ -# ||mnn.com^*/120x60/ (easylistchina+easylist.txt: 44004) -.mnn.com/.*/120x60/ -# ||mnn.com/sites/*/popups/AllstatePopup$script (easylistchina+easylist.txt: 44003) -.mnn.com/sites/.*/popups/AllstatePopup -# ||mmosite.com/sponsor/ (easylistchina+easylist.txt: 44002) -.mmosite.com/sponsor/ -# ||mmorpg.com/images/skins/ (easylistchina+easylist.txt: 44001) -.mmorpg.com/images/skins/ -# ||mmorpg.com/images/mr_ss_ (easylistchina+easylist.txt: 44000) -.mmorpg.com/images/mr_ss_ -# ||mmorpg.com/images/*_hots_r0.jpg (easylistchina+easylist.txt: 43999) -.mmorpg.com/images/.*_hots_r0\.jpg -# ||mmoculture.com/wp-content/uploads/*-background- (easylistchina+easylist.txt: 43998) -.mmoculture.com/wp-content/uploads/.*-background- -# ||mlb.com^*/sponsorship/ (easylistchina+easylist.txt: 43996) -.mlb.com/.*/sponsorship/ -# ||mlb.com/images/*_videoskin_*.jpg (easylistchina+easylist.txt: 43995) -.mlb.com/images/.*_videoskin_.*\.jpg -# ||mizzima.com/images/banners/ (easylistchina+easylist.txt: 43994) -.mizzima.com/images/banners/ -# ||mixx96.com/images/banners/ (easylistchina+easylist.txt: 43993) -.mixx96.com/images/banners/ -# ||mixfm.co.za^*/tallspon (easylistchina+easylist.txt: 43992) -.mixfm.co.za/.*/tallspon -# ||mixfm.co.za/images/banner (easylistchina+easylist.txt: 43991) -.mixfm.co.za/images/banner -# ||misterwhat.co.uk/business-company-300/ (easylistchina+easylist.txt: 43990) -.misterwhat.co.uk/business-company-300/ -# ||mirrorstack.com/?q=r_ads (easylistchina+easylist.txt: 43989) -.mirrorstack.com/\?q=r_ads -# ||mirrorcreator.com/js/pu_ad.js (easylistchina+easylist.txt: 43988) -.mirrorcreator.com/js/pu_ad\.js -# ||mirrorcreator.com/js/mpop.js (easylistchina+easylist.txt: 43987) -.mirrorcreator.com/js/mpop\.js -# ||mirror.co.uk^*_promos_ (easylistchina+easylist.txt: 43986) -.mirror.co.uk/.*_promos_ -# ||mirror.co.uk^*/sponsors/ (easylistchina+easylist.txt: 43985) -.mirror.co.uk/.*/sponsors/ -# ||mirror.co.uk^*/gutters/ (easylistchina+easylist.txt: 43984) -.mirror.co.uk/.*/gutters/ -# ||minnpost.com^*/sponsor/ (easylistchina+easylist.txt: 43983) -.minnpost.com/.*/sponsor/ -# ||mininova.org/js/vidukilayer.js (easylistchina+easylist.txt: 43982) -.mininova.org/js/vidukilayer\.js -# ||miniclipcdn.com/images/takeovers/ (easylistchina+easylist.txt: 43981) -.miniclipcdn.com/images/takeovers/ -# ||mindfood.com/upload/images/wallpaper_images/ (easylistchina+easylist.txt: 43980) -.mindfood.com/upload/images/wallpaper_images/ -# ||milanounited.co.za/images/sponsor_ (easylistchina+easylist.txt: 43979) -.milanounited.co.za/images/sponsor_ -# ||mikejung.biz/images/*/728x90xLiquidWeb_ (easylistchina+easylist.txt: 43978) -.mikejung.biz/images/.*/728x90xLiquidWeb_ -# ||mightyupload.com/popuu.js (easylistchina+easylist.txt: 43977) -.mightyupload.com/popuu\.js -# ||midlandsradio.fm/bms/ (easylistchina+easylist.txt: 43976) -.midlandsradio.fm/bms/ -# ||middle-east-online.com^*/meoadv/ (easylistchina+easylist.txt: 43975) -.middle-east-online.com/.*/meoadv/ -# ||michronicleonline.com/images/banners/ (easylistchina+easylist.txt: 43974) -.michronicleonline.com/images/banners/ -# ||micast.tv/clean.php (easylistchina+easylist.txt: 43973) -.micast.tv/clean\.php -# ||miamiherald.com^*/teamfanshop/ (easylistchina+easylist.txt: 43972) -.miamiherald.com/.*/teamfanshop/ -# ||miamiherald.com^*/dealsaver/ (easylistchina+easylist.txt: 43971) -.miamiherald.com/.*/dealsaver/ -# ||mi-pro.co.uk/banners/ (easylistchina+easylist.txt: 43970) -.mi-pro.co.uk/banners/ -# ||mhvillage.com/ppc.php? (easylistchina+easylist.txt: 43969) -.mhvillage.com/ppc\.php\? -# ||mgnetwork.com/dealtaker/ (easylistchina+easylist.txt: 43968) -.mgnetwork.com/dealtaker/ -# ||mgid.com/ban/ (easylistchina+easylist.txt: 43967) -.mgid.com/ban/ -# ||mg.co.za^*/wallpaper (easylistchina+easylist.txt: 43966) -.mg.co.za/.*/wallpaper -# ||mfcdn.net/media/game321/$image (easylistchina+easylist.txt: 43964) -.mfcdn.net/media/game321/ -# ||mfcdn.net/media/*right (easylistchina+easylist.txt: 43963) -.mfcdn.net/media/.*right -# ||mfcdn.net/media/*left (easylistchina+easylist.txt: 43962) -.mfcdn.net/media/.*left -# ||metromedia.co.za/bannersys/banners/ (easylistchina+easylist.txt: 43961) -.metromedia.co.za/bannersys/banners/ -# ||metrolyrics.com/js/min/tonefuse.js (easylistchina+easylist.txt: 43960) -.metrolyrics.com/js/min/tonefuse\.js -# ||metradar.ch^*/banner_ (easylistchina+easylist.txt: 43959) -.metradar.ch/.*/banner_ -# ||meteox.com/bannerdetails.aspx? (easylistchina+easylist.txt: 43958) -.meteox.com/bannerdetails\.aspx\? -# ||meteox.co.uk/bannerdetails.aspx? (easylistchina+easylist.txt: 43957) -.meteox.co.uk/bannerdetails\.aspx\? -# ||meteovista.co.uk/go/banner/ (easylistchina+easylist.txt: 43956) -.meteovista.co.uk/go/banner/ -# ||meteomedia.com^*&placement (easylistchina+easylist.txt: 43955) -.meteomedia.com/.*&placement -# ||messianictimes.com/images/Word%20of%20Messiah%20Ministries1.png (easylistchina+easylist.txt: 43954) -.messianictimes.com/images/Word%20of%20Messiah%20Ministries1\.png -# ||messianictimes.com/images/MJBI.org.gif (easylistchina+easylist.txt: 43953) -.messianictimes.com/images/MJBI\.org\.gif -# ||messianictimes.com/images/Jews%20for%20Jesus%20Banner.png (easylistchina+easylist.txt: 43952) -.messianictimes.com/images/Jews%20for%20Jesus%20Banner\.png -# ||messianictimes.com/images/Israel%20Today%20Logo.png (easylistchina+easylist.txt: 43951) -.messianictimes.com/images/Israel%20Today%20Logo\.png -# ||messianictimes.com/images/banners/ (easylistchina+easylist.txt: 43950) -.messianictimes.com/images/banners/ -# ||messianictimes.com/images/4-13/reach.jpg (easylistchina+easylist.txt: 43949) -.messianictimes.com/images/4-13/reach\.jpg -# ||messianictimes.com/images/1-13/ba_mhfinal_ (easylistchina+easylist.txt: 43948) -.messianictimes.com/images/1-13/ba_mhfinal_ -# ||merriam-webster.com^*/accipiter.js (easylistchina+easylist.txt: 43947) -.merriam-webster.com/.*/accipiter\.js -# ||merriam-webster.com/creative.php? (easylistchina+easylist.txt: 43946) -.merriam-webster.com/creative\.php\? -# ||mentalfloss.com^*-skin- (easylistchina+easylist.txt: 43945) -.mentalfloss.com/.*-skin- -# ||menafn.com^*/banner_ (easylistchina+easylist.txt: 43944) -.menafn.com/.*/banner_ -# ||memory-alpha.org/__varnish_liftium/ (easylistchina+easylist.txt: 43942) -.memory-alpha.org/__varnish_liftium/ -# ||meizufans.eu/vifocal.gif (easylistchina+easylist.txt: 43941) -.meizufans.eu/vifocal\.gif -# ||meizufans.eu/merimobiles.gif (easylistchina+easylist.txt: 43940) -.meizufans.eu/merimobiles\.gif -# ||meizufans.eu/efox.gif (easylistchina+easylist.txt: 43939) -.meizufans.eu/efox\.gif -# ||megauploadtrend.com/iframe/if.php? (easylistchina+easylist.txt: 43937) -.megauploadtrend.com/iframe/if\.php\? -# ||megashares.com/cache_program_banner.html (easylistchina+easylist.txt: 43935) -.megashares.com/cache_program_banner\.html -# ||megasearch.us/turboflirt.gif (easylistchina+easylist.txt: 43934) -.megasearch.us/turboflirt\.gif -# ||megasearch.us/ifx/ifx.php? (easylistchina+easylist.txt: 43933) -.megasearch.us/ifx/ifx\.php\? -# ||meetic.com/js/*/site_under_ (easylistchina+easylist.txt: 43932) -.meetic.com/js/.*/site_under_ -# ||medicaldaily.com/views/images/banners/ (easylistchina+easylist.txt: 43931) -.medicaldaily.com/views/images/banners/ -# ||mediaweek.com.au/storage/*_234x234.jpg? (easylistchina+easylist.txt: 43930) -.mediaweek.com.au/storage/.*_234x234\.jpg\? -# ||mediaupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 43929) -.mediaupdate.co.za/temp/banner_ -# ||mediaticks.com/images/genx.jpg (easylistchina+easylist.txt: 43928) -.mediaticks.com/images/genx\.jpg -# ||mediaticks.com/images/genx-infotech.jpg (easylistchina+easylist.txt: 43927) -.mediaticks.com/images/genx-infotech\.jpg -# ||mediaticks.com/bollywood.jpg (easylistchina+easylist.txt: 43926) -.mediaticks.com/bollywood\.jpg -# ||mediaspanonline.com/inc.php?uri=/&bannerPositions= (easylistchina+easylist.txt: 43923) -.mediaspanonline.com/inc\.php\?uri=/&bannerPositions= -# ||mediaspanonline.com/images/buy-itunes.png (easylistchina+easylist.txt: 43922) -.mediaspanonline.com/images/buy-itunes\.png -# ||mediamgr.ugo.com^ (easylistchina+easylist.txt: 43921) -.mediamgr.ugo.com -# ||mediafiretrend.com/turboflirt.gif (easylistchina+easylist.txt: 43920) -.mediafiretrend.com/turboflirt\.gif -# ||mediafiretrend.com/ifx/ifx.php? (easylistchina+easylist.txt: 43919) -.mediafiretrend.com/ifx/ifx\.php\? -# ||mediafire.re/popup.js (easylistchina+easylist.txt: 43918) -.mediafire.re/popup\.js -# ||mediafire.com^*/rockmelt_tabcontent.jpg (easylistchina+easylist.txt: 43917) -.mediafire.com/.*/rockmelt_tabcontent\.jpg -# ||mediafire.com^*/linkto/default-$subdocument (easylistchina+easylist.txt: 43916) -.mediafire.com/.*/linkto/default- -# ||mediafire.com/templates/linkto/ (easylistchina+easylist.txt: 43915) -.mediafire.com/templates/linkto/ -# ||mediafire.com/images/rockmelt/ (easylistchina+easylist.txt: 43914) -.mediafire.com/images/rockmelt/ -# ||media.abc.go.com^*/callouts/ (easylistchina+easylist.txt: 43912) -.media.abc.go.com/.*/callouts/ -# ||media-mgmt.armorgames.com^ (easylistchina+easylist.txt: 43911) -.media-mgmt.armorgames.com -# ||media-imdb.com^*/clicktale-$script (easylistchina+easylist.txt: 43910) -.media-imdb.com/.*/clicktale- -# ||media-imdb.com^*/affiliates/ (easylistchina+easylist.txt: 43909) -.media-imdb.com/.*/affiliates/ -# ||media-imdb.com/images/*/mptv_banner_ (easylistchina+easylist.txt: 43908) -.media-imdb.com/images/.*/mptv_banner_ -# ||media-delivery.armorgames.com^ (easylistchina+easylist.txt: 43907) -.media-delivery.armorgames.com -# ||medhelp.org/hserver/ (easylistchina+easylist.txt: 43906) -.medhelp.org/hserver/ -# ||mechodownload.com/forum/images/affiliates/ (easylistchina+easylist.txt: 43905) -.mechodownload.com/forum/images/affiliates/ -# ||meanjin.com.au/static/images/sponsors.jpg (easylistchina+easylist.txt: 43904) -.meanjin.com.au/static/images/sponsors\.jpg -# ||mealsandsteals.sandiego6.com^ (easylistchina+easylist.txt: 43903) -.mealsandsteals.sandiego6.com -# ||mcvuk.com/static/banners/ (easylistchina+easylist.txt: 43902) -.mcvuk.com/static/banners/ -# ||mcstatic.com^*/billboard_ (easylistchina+easylist.txt: 43901) -.mcstatic.com/.*/billboard_ -# ||mcsesports.com/images/sponsors/ (easylistchina+easylist.txt: 43900) -.mcsesports.com/images/sponsors/ -# ||mcnews.com.au/banners/ (easylistchina+easylist.txt: 43899) -.mcnews.com.au/banners/ -# ||mcjonline.com/filemanager/userfiles/banners/ (easylistchina+easylist.txt: 43898) -.mcjonline.com/filemanager/userfiles/banners/ -# ||mccont.com/takeover/ (easylistchina+easylist.txt: 43897) -.mccont.com/takeover/ -# ||mccont.com/sda/ (easylistchina+easylist.txt: 43896) -.mccont.com/sda/ -# ||mccont.com/campaign%20management/ (easylistchina+easylist.txt: 43895) -.mccont.com/campaign%20management/ -# ||mbl.is/mm/augl/ (easylistchina+easylist.txt: 43894) -.mbl.is/mm/augl/ -# ||mbl.is/augl/ (easylistchina+easylist.txt: 43893) -.mbl.is/augl/ -# ||mb.hockeybuzz.com^ (easylistchina+easylist.txt: 43892) -.mb.hockeybuzz.com -# ||mb.com.ph^*/skyscraper- (easylistchina+easylist.txt: 43891) -.mb.com.ph/.*/skyscraper- -# ||maxgames.com^*/sponsor_ (easylistchina+easylist.txt: 43890) -.maxgames.com/.*/sponsor_ -# ||maxconsole.com/maxconsole/banners/ (easylistchina+easylist.txt: 43889) -.maxconsole.com/maxconsole/banners/ -# ||mauritiusnews.co.uk/images/banners/ (easylistchina+easylist.txt: 43888) -.mauritiusnews.co.uk/images/banners/ -# ||mathforum.org/images/tutor.gif (easylistchina+easylist.txt: 43887) -.mathforum.org/images/tutor\.gif -# ||mashable.com/tripleclick.html (easylistchina+easylist.txt: 43886) -.mashable.com/tripleclick\.html -# ||mary.com/728_header.php (easylistchina+easylist.txt: 43885) -.mary.com/728_header\.php -# ||marketplace.org^*/support_block/ (easylistchina+easylist.txt: 43884) -.marketplace.org/.*/support_block/ -# ||marketnewsvideo.com/mnvport160.gif (easylistchina+easylist.txt: 43883) -.marketnewsvideo.com/mnvport160\.gif -# ||marketnewsvideo.com/etfchannel/evfad1.gif (easylistchina+easylist.txt: 43882) -.marketnewsvideo.com/etfchannel/evfad1\.gif -# ||marketintelligencecenter.com/images/brokers/ (easylistchina+easylist.txt: 43881) -.marketintelligencecenter.com/images/brokers/ -# ||marketingupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 43880) -.marketingupdate.co.za/temp/banner_ -# ||marketingsolutions.yahoo.com^ (easylistchina+easylist.txt: 43879) -.marketingsolutions.yahoo.com -# ||marketingpilgrim.com/wp-content/uploads/*/trackur.com- (easylistchina+easylist.txt: 43878) -.marketingpilgrim.com/wp-content/uploads/.*/trackur\.com- -# ||marineterms.com/images/banners/ (easylistchina+easylist.txt: 43877) -.marineterms.com/images/banners/ -# ||marengo-uniontimes.com/images/banners/ (easylistchina+easylist.txt: 43876) -.marengo-uniontimes.com/images/banners/ -# ||maravipost.com/images/banners/ (easylistchina+easylist.txt: 43875) -.maravipost.com/images/banners/ -# ||mapsofindia.com/widgets/tribalfusionboxadd.html (easylistchina+easylist.txt: 43874) -.mapsofindia.com/widgets/tribalfusionboxadd\.html -# ||manxradio.com^*/banners_ (easylistchina+easylist.txt: 43873) -.manxradio.com/.*/banners_ -# ||manutd.com^*/Sponsors/ (easylistchina+easylist.txt: 43872) -.manutd.com/.*/Sponsors/ -# ||manilatimes.net/images/banners/ (easylistchina+easylist.txt: 43871) -.manilatimes.net/images/banners/ -# ||manicapost.com^*/banners/ (easylistchina+easylist.txt: 43870) -.manicapost.com/.*/banners/ -# ||maniastreaming.com/pp2/ (easylistchina+easylist.txt: 43869) -.maniastreaming.com/pp2/ -# ||mani-admin-plugin.com^*/banners/ (easylistchina+easylist.txt: 43868) -.mani-admin-plugin.com/.*/banners/ -# ||manhattantimesnews.com/images/banners/ (easylistchina+easylist.txt: 43867) -.manhattantimesnews.com/images/banners/ -# ||mangaupdates.com/affiliates/ (easylistchina+easylist.txt: 43866) -.mangaupdates.com/affiliates/ -# ||mangarush.com/xtend.php (easylistchina+easylist.txt: 43865) -.mangarush.com/xtend\.php -# ||mangareader.net/images/800-x-100 (easylistchina+easylist.txt: 43864) -.mangareader.net/images/800-x-100 -# ||mangafox.com/media/game321/ (easylistchina+easylist.txt: 43863) -.mangafox.com/media/game321/ -# ||malwaredomains.com/ra.jpg (easylistchina+easylist.txt: 43862) -.malwaredomains.com/ra\.jpg -# ||maltatoday.com.mt/ui_frontend/display_external_module/ (easylistchina+easylist.txt: 43861) -.maltatoday.com.mt/ui_frontend/display_external_module/ -# ||malaysiakini.com/misc/banners/ (easylistchina+easylist.txt: 43860) -.malaysiakini.com/misc/banners/ -# ||malaysiabay.org^*creatives.php? (easylistchina+easylist.txt: 43859) -.malaysiabay.org/.*creatives\.php\? -# ||malaysiabay.org^*/creative.js (easylistchina+easylist.txt: 43858) -.malaysiabay.org/.*/creative\.js -# ||makeagif.com/parts/fiframe.php (easylistchina+easylist.txt: 43857) -.makeagif.com/parts/fiframe\.php -# ||majorgeeks.com^*/banners/ (easylistchina+easylist.txt: 43856) -.majorgeeks.com/.*/banners/ -# ||majorgeeks.com/images/mg120.jpg (easylistchina+easylist.txt: 43855) -.majorgeeks.com/images/mg120\.jpg -# ||majorgeeks.com/images/mb-hb-2.jpg (easylistchina+easylist.txt: 43854) -.majorgeeks.com/images/mb-hb-2\.jpg -# ||majorgeeks.com/images/download_sd_ (easylistchina+easylist.txt: 43853) -.majorgeeks.com/images/download_sd_ -# ||majorgeeks.com/images/*_336x280.jpg (easylistchina+easylist.txt: 43852) -.majorgeeks.com/images/.*_336x280\.jpg -# ||majorgeeks.com/aff/ (easylistchina+easylist.txt: 43851) -.majorgeeks.com/aff/ -# ||mailinator.com^*/clickbanner.jpg (easylistchina+easylist.txt: 43850) -.mailinator.com/.*/clickbanner\.jpg -# ||mailinator.com/images/abine/leaderboard- (easylistchina+easylist.txt: 43849) -.mailinator.com/images/abine/leaderboard- -# ||mail.yahoo.com/neo/mbimg?av/curveball/ds/ (easylistchina+easylist.txt: 43848) -.mail.yahoo.com/neo/mbimg\?av/curveball/ds/ -# ||mail.yahoo.com/mc/md.php? (easylistchina+easylist.txt: 43847) -.mail.yahoo.com/mc/md\.php\? -# ||madville.com/afs.php (easylistchina+easylist.txt: 43846) -.madville.com/afs\.php -# ||madskristensen.net/discount2.js (easylistchina+easylist.txt: 43845) -.madskristensen.net/discount2\.js -# ||mads.dailymail.co.uk^ (easylistchina+easylist.txt: 43844) -.mads.dailymail.co.uk -# ||madamenoire.com/wp-content/*_Reskin-$image (easylistchina+easylist.txt: 43843) -.madamenoire.com/wp-content/.*_Reskin- -# ||macworld.com/ads/ (easylistchina+easylist.txt: 43842) -.macworld.com/ads/ -# ||macworld.co.uk^*/textdeals/ (easylistchina+easylist.txt: 43841) -.macworld.co.uk/.*/textdeals/ -# ||macworld.co.uk/promo/ (easylistchina+easylist.txt: 43840) -.macworld.co.uk/promo/ -# ||macupdate.com/js/google_service.js (easylistchina+easylist.txt: 43839) -.macupdate.com/js/google_service\.js -# ||macobserver.com^*/deal_brothers/ (easylistchina+easylist.txt: 43838) -.macobserver.com/.*/deal_brothers/ -# ||macobserver.com/js/givetotmo.js (easylistchina+easylist.txt: 43837) -.macobserver.com/js/givetotmo\.js -# ||macmillandictionary.com/info/frame.html?zone= (easylistchina+easylist.txt: 43836) -.macmillandictionary.com/info/frame\.html\?zone= -# ||maciverse.mangoco.netdna-cdn.com^*banner (easylistchina+easylist.txt: 43835) -.maciverse.mangoco.netdna-cdn.com/.*banner -# ||macintouch.com/images/owc_ (easylistchina+easylist.txt: 43834) -.macintouch.com/images/owc_ -# ||macintouch.com/images/amaz_ (easylistchina+easylist.txt: 43833) -.macintouch.com/images/amaz_ -# ||machovideo.com/img/site/postimg2/rotate.php (easylistchina+easylist.txt: 43832) -.machovideo.com/img/site/postimg2/rotate\.php -# ||macblurayplayer.com/image/amazon- (easylistchina+easylist.txt: 43831) -.macblurayplayer.com/image/amazon- -# ||macaunews.com.mo/images/stories/banners/ (easylistchina+easylist.txt: 43830) -.macaunews.com.mo/images/stories/banners/ -# ||macaudailytimes.com.mo/files/banners/ (easylistchina+easylist.txt: 43829) -.macaudailytimes.com.mo/files/banners/ -# ||m4carbine.net/tabs/ (easylistchina+easylist.txt: 43828) -.m4carbine.net/tabs/ -# ||m-w.com/creative.php (easylistchina+easylist.txt: 43827) -.m-w.com/creative\.php -# ||lyricsfreak.com^*/overlay.js (easylistchina+easylist.txt: 43826) -.lyricsfreak.com/.*/overlay\.js -# ||lyrics5ab.com/wp-content/add$subdocument (easylistchina+easylist.txt: 43825) -.lyrics5ab.com/wp-content/add -# ||lygo.com/scripts/catman/ (easylistchina+easylist.txt: 43824) -.lygo.com/scripts/catman/ -# ||lycos.com/catman/ (easylistchina+easylist.txt: 43823) -.lycos.com/catman/ -# ||lw2.gamecopyworld.com^ (easylistchina+easylist.txt: 43822) -.lw2.gamecopyworld.com -# ||lw1.lnkworld.com^$subdocument (easylistchina+easylist.txt: 43821) -.lw1.lnkworld.com -# ||lw1.gamecopyworld.com^$subdocument (easylistchina+easylist.txt: 43820) -.lw1.gamecopyworld.com -# ||luxury4play.com^*/ads/ (easylistchina+easylist.txt: 43819) -.luxury4play.com/.*/ads/ -# ||luckyshare.net/images/sda/ (easylistchina+easylist.txt: 43818) -.luckyshare.net/images/sda/ -# ||luckyshare.net/images/2top.png (easylistchina+easylist.txt: 43817) -.luckyshare.net/images/2top\.png -# ||luckyshare.net/images/1gotlucky.png (easylistchina+easylist.txt: 43816) -.luckyshare.net/images/1gotlucky\.png -# ||lucianne.com^*_*.html (easylistchina+easylist.txt: 43815) -.lucianne.com/.*_.*\.html -# ||lshunter.tv^*&task=getbets$xmlhttprequest (easylistchina+easylist.txt: 43814) -.lshunter.tv/.*&task=getbets -# ||lshunter.tv/images/bets/ (easylistchina+easylist.txt: 43813) -.lshunter.tv/images/bets/ -# ||lowyat.net/mainpage/background.jpg (easylistchina+easylist.txt: 43812) -.lowyat.net/mainpage/background\.jpg -# ||lowyat.net/lowyat/lowyat-bg.jpg (easylistchina+easylist.txt: 43811) -.lowyat.net/lowyat/lowyat-bg\.jpg -# ||lowendbox.com/wp-content/themes/leb/banners/ (easylistchina+easylist.txt: 43810) -.lowendbox.com/wp-content/themes/leb/banners/ -# ||lowellsun.com/litebanner/ (easylistchina+easylist.txt: 43809) -.lowellsun.com/litebanner/ -# ||lowbird.com/lbpun.php (easylistchina+easylist.txt: 43808) -.lowbird.com/lbpun\.php -# ||lowbird.com/lbpu.php (easylistchina+easylist.txt: 43807) -.lowbird.com/lbpu\.php -# ||lostrabbitmedia.com/images/banners/ (easylistchina+easylist.txt: 43806) -.lostrabbitmedia.com/images/banners/ -# ||looky.hyves.org^ (easylistchina+easylist.txt: 43805) -.looky.hyves.org -# ||lookbook.nu^*.html?$subdocument (easylistchina+easylist.txt: 43804) -.lookbook.nu/.*\.html\? -# ||lookbook.nu/show_skyscraper.html (easylistchina+easylist.txt: 43803) -.lookbook.nu/show_skyscraper\.html -# ||lookbook.nu/show_leaderboard.html (easylistchina+easylist.txt: 43802) -.lookbook.nu/show_leaderboard\.html -# ||londonstockexchange.com^*/fx.gif (easylistchina+easylist.txt: 43801) -.londonstockexchange.com/.*/fx\.gif -# ||londonprivaterentals.standard.co.uk^ (easylistchina+easylist.txt: 43800) -.londonprivaterentals.standard.co.uk -# ||london2012.com/imgml/partners/footer/ (easylistchina+easylist.txt: 43799) -.london2012.com/imgml/partners/footer/ -# ||london2012.com/img/sponsors/ (easylistchina+easylist.txt: 43798) -.london2012.com/img/sponsors/ -# ||lolzbook.com/test/ (easylistchina+easylist.txt: 43797) -.lolzbook.com/test/ -# ||loleasy.com^*/adsmanager.js (easylistchina+easylist.txt: 43796) -.loleasy.com/.*/adsmanager\.js -# ||loleasy.com/promo/ (easylistchina+easylist.txt: 43795) -.loleasy.com/promo/ -# ||logotv.com/content/skins/ (easylistchina+easylist.txt: 43794) -.logotv.com/content/skins/ -# ||logoopenstock.com/img/banners/ (easylistchina+easylist.txt: 43793) -.logoopenstock.com/img/banners/ -# ||locanto.co.za/run/afcbackfill/ (easylistchina+easylist.txt: 43792) -.locanto.co.za/run/afcbackfill/ -# ||localvictory.com^*/Trailblazer-Ad.png (easylistchina+easylist.txt: 43791) -.localvictory.com/.*/Trailblazer-Ad\.png -# ||localdirectories.com.au^*/bannerimages/ (easylistchina+easylist.txt: 43790) -.localdirectories.com.au/.*/bannerimages/ -# ||lmgtfy.com/s/images/ls_ (easylistchina+easylist.txt: 43789) -.lmgtfy.com/s/images/ls_ -# ||ll.a.hulu.com^ (easylistchina+easylist.txt: 43788) -.ll.a.hulu.com -# ||livingscoop.com/vastload.php (easylistchina+easylist.txt: 43787) -.livingscoop.com/vastload\.php -# ||livetvcenter.com/satellitedirect_ (easylistchina+easylist.txt: 43786) -.livetvcenter.com/satellitedirect_ -# ||livetv.ru/mb/ (easylistchina+easylist.txt: 43785) -.livetv.ru/mb/ -# ||livetradingnews.com/wp-content/uploads/vamp_cigarettes.png (easylistchina+easylist.txt: 43784) -.livetradingnews.com/wp-content/uploads/vamp_cigarettes\.png -# ||livestream.com^*/overlay/ (easylistchina+easylist.txt: 43783) -.livestream.com/.*/overlay/ -# ||livesearch.ninemsn.com.au^$subdocument (easylistchina+easylist.txt: 43782) -.livesearch.ninemsn.com.au -# ||livescore.in/res/image/bookmaker-list.png (easylistchina+easylist.txt: 43781) -.livescore.in/res/image/bookmaker-list\.png -# ||liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn.gif (easylistchina+easylist.txt: 43780) -.liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn\.gif -# ||livejasmin.com/freechat.php (easylistchina+easylist.txt: 43779) -.livejasmin.com/freechat\.php -# ||live-proxy.com/vectrotunnel-logo.jpg (easylistchina+easylist.txt: 43778) -.live-proxy.com/vectrotunnel-logo\.jpg -# ||live-proxy.com/hide-my-ass.gif (easylistchina+easylist.txt: 43777) -.live-proxy.com/hide-my-ass\.gif -# ||littleindia.com/files/banners/ (easylistchina+easylist.txt: 43776) -.littleindia.com/files/banners/ -# ||liquidcompass.net^*/purchase_ (easylistchina+easylist.txt: 43775) -.liquidcompass.net/.*/purchase_ -# ||liquidcompass.net/playerapi/redirect/ (easylistchina+easylist.txt: 43774) -.liquidcompass.net/playerapi/redirect/ -# ||lionsrugby.co.za^*/sponsors. (easylistchina+easylist.txt: 43773) -.lionsrugby.co.za/.*/sponsors\. -# ||linuxtopia.org/includes/$subdocument (easylistchina+easylist.txt: 43772) -.linuxtopia.org/includes/ -# ||linuxsat-support.com/vsa_banners/ (easylistchina+easylist.txt: 43771) -.linuxsat-support.com/vsa_banners/ -# ||linuxmint.com/pictures/sponsors/ (easylistchina+easylist.txt: 43770) -.linuxmint.com/pictures/sponsors/ -# ||linuxmint.com/img/sponsor/ (easylistchina+easylist.txt: 43769) -.linuxmint.com/img/sponsor/ -# ||linuxinsider.com/images/sda/ (easylistchina+easylist.txt: 43768) -.linuxinsider.com/images/sda/ -# ||linksrank.com/links/ (easylistchina+easylist.txt: 43767) -.linksrank.com/links/ -# ||linksave.in^*/downloadbutton_highspeed.png (easylistchina+easylist.txt: 43766) -.linksave.in/.*/downloadbutton_highspeed\.png -# ||linksave.in/img/downloadbutton_sh.png (easylistchina+easylist.txt: 43765) -.linksave.in/img/downloadbutton_sh\.png -# ||linksave.in/img/downloadbutton_hs.png (easylistchina+easylist.txt: 43764) -.linksave.in/img/downloadbutton_hs\.png -# ||linksave.in/img/downloadbutton_alt.png (easylistchina+easylist.txt: 43763) -.linksave.in/img/downloadbutton_alt\.png -# ||linksafe.info^*/mirror.png (easylistchina+easylist.txt: 43762) -.linksafe.info/.*/mirror\.png -# ||linkmoon.net/banners/ (easylistchina+easylist.txt: 43761) -.linkmoon.net/banners/ -# ||linkfm.co.za/images/banners/ (easylistchina+easylist.txt: 43760) -.linkfm.co.za/images/banners/ -# ||linkcentre.com/top_fp.php (easylistchina+easylist.txt: 43759) -.linkcentre.com/top_fp\.php -# ||linguee.com/banner/ (easylistchina+easylist.txt: 43758) -.linguee.com/banner/ -# ||limetorrentlinkmix.com/rd18/dop.js (easylistchina+easylist.txt: 43757) -.limetorrentlinkmix.com/rd18/dop\.js -# ||limesurvey.org/images/banners/ (easylistchina+easylist.txt: 43756) -.limesurvey.org/images/banners/ -# ||lifetips.com/sponsors/ (easylistchina+easylist.txt: 43755) -.lifetips.com/sponsors/ -# ||lifeinqueensland.com/images/156x183a_ (easylistchina+easylist.txt: 43754) -.lifeinqueensland.com/images/156x183a_ -# ||life.imagepix.org^ (easylistchina+easylist.txt: 43753) -.life.imagepix.org -# ||licensing.biz/media/banners/ (easylistchina+easylist.txt: 43752) -.licensing.biz/media/banners/ -# ||libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300.gif? (easylistchina+easylist.txt: 43751) -.libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300\.gif\? -# ||lfgcomic.com/wp-content/uploads/*/PageSkin_ (easylistchina+easylist.txt: 43750) -.lfgcomic.com/wp-content/uploads/.*/PageSkin_ -# ||lfcimages.com^*/sponsor- (easylistchina+easylist.txt: 43749) -.lfcimages.com/.*/sponsor- -# ||lfcimages.com^*/partner- (easylistchina+easylist.txt: 43748) -.lfcimages.com/.*/partner- -# ||letswatchsomething.com/images/filestreet_banner.jpg (easylistchina+easylist.txt: 43747) -.letswatchsomething.com/images/filestreet_banner\.jpg -# ||letour.fr/img/v6/sprite_partners_2x.png (easylistchina+easylist.txt: 43746) -.letour.fr/img/v6/sprite_partners_2x\.png -# ||letitbit.net/images/other/inst_forex_ (easylistchina+easylist.txt: 43745) -.letitbit.net/images/other/inst_forex_ -# ||lespagesjaunesafrique.com/bandeaux/ (easylistchina+easylist.txt: 43744) -.lespagesjaunesafrique.com/bandeaux/ -# ||lens101.com/images/banner.jpg (easylistchina+easylist.txt: 43743) -.lens101.com/images/banner\.jpg -# ||legalbusinessonline.com/popup/albpartners.aspx (easylistchina+easylist.txt: 43742) -.legalbusinessonline.com/popup/albpartners\.aspx -# ||lecydre.com/proxy.png (easylistchina+easylist.txt: 43741) -.lecydre.com/proxy\.png -# ||learnspanishtoday.com/aff/img/banners/ (easylistchina+easylist.txt: 43740) -.learnspanishtoday.com/aff/img/banners/ -# ||learnphotoediting.net/banners/ (easylistchina+easylist.txt: 43739) -.learnphotoediting.net/banners/ -# ||leagueunlimited.com/images/rooty/ (easylistchina+easylist.txt: 43738) -.leagueunlimited.com/images/rooty/ -# ||leadership.ng/cheki- (easylistchina+easylist.txt: 43737) -.leadership.ng/cheki- -# ||leader.co.za/leadership/banners/ (easylistchina+easylist.txt: 43736) -.leader.co.za/leadership/banners/ -# ||lazygirls.info/click.php (easylistchina+easylist.txt: 43735) -.lazygirls.info/click\.php -# ||lazygamer.net/kalahari.gif (easylistchina+easylist.txt: 43734) -.lazygamer.net/kalahari\.gif -# ||latex-community.org/images/banners/ (easylistchina+easylist.txt: 43733) -.latex-community.org/images/banners/ -# ||lasttorrents.org/pcmadd.swf (easylistchina+easylist.txt: 43732) -.lasttorrents.org/pcmadd\.swf -# ||lastminute.com^*/universal.html? (easylistchina+easylist.txt: 43731) -.lastminute.com/.*/universal\.html\? -# ||laredodaily.com/images/banners/ (easylistchina+easylist.txt: 43730) -.laredodaily.com/images/banners/ -# ||laptopmag.com/images/sponsorships/ (easylistchina+easylist.txt: 43729) -.laptopmag.com/images/sponsorships/ -# ||laobserved.com/tch-ad.jpg (easylistchina+easylist.txt: 43728) -.laobserved.com/tch-ad\.jpg -# ||lankabusinessonline.com/images/banners/ (easylistchina+easylist.txt: 43727) -.lankabusinessonline.com/images/banners/ -# ||lancasteronline.com^*/weather_sponsor.gif (easylistchina+easylist.txt: 43726) -.lancasteronline.com/.*/weather_sponsor\.gif -# ||lancasteronline.com^*/done_deal/ (easylistchina+easylist.txt: 43725) -.lancasteronline.com/.*/done_deal/ -# ||laliga.es/img/patrocinadores- (easylistchina+easylist.txt: 43724) -.laliga.es/img/patrocinadores- -# ||lake-link.com/images/sponsorLogos/ (easylistchina+easylist.txt: 43723) -.lake-link.com/images/sponsorLogos/ -# ||lagacetanewspaper.com^*/banners/ (easylistchina+easylist.txt: 43722) -.lagacetanewspaper.com/.*/banners/ -# ||labx.com/web/banners/ (easylistchina+easylist.txt: 43721) -.labx.com/web/banners/ -# ||labtimes.org/banner/ (easylistchina+easylist.txt: 43720) -.labtimes.org/banner/ -# ||l4dmaps.com/img/right_gameservers.gif (easylistchina+easylist.txt: 43719) -.l4dmaps.com/img/right_gameservers\.gif -# ||l4dmaps.com/i/right_dllme.gif (easylistchina+easylist.txt: 43718) -.l4dmaps.com/i/right_dllme\.gif -# ||l.yimg.com/mq/a/ (easylistchina+easylist.txt: 43717) -.l.yimg.com/mq/a/ -# ||l.yimg.com/ao/i/ad/ (easylistchina+easylist.txt: 43716) -.l.yimg.com/ao/i/ad/ -# ||l.yimg.com/a/i/*_wallpaper$image (easylistchina+easylist.txt: 43715) -.l.yimg.com/a/i/.*_wallpaper -# ||kyivpost.com/media/banners/ (easylistchina+easylist.txt: 43714) -.kyivpost.com/media/banners/ -# ||kxlh.com/images/banner/ (easylistchina+easylist.txt: 43713) -.kxlh.com/images/banner/ -# ||kwikupload.com/images/dlbtn.png (easylistchina+easylist.txt: 43710) -.kwikupload.com/images/dlbtn\.png -# ||kwanalu.co.za/upload/ad/ (easylistchina+easylist.txt: 43709) -.kwanalu.co.za/upload/ad/ -# ||kvcr.org^*/sponsors/ (easylistchina+easylist.txt: 43708) -.kvcr.org/.*/sponsors/ -# ||kuwaittimes.net/banners/ (easylistchina+easylist.txt: 43707) -.kuwaittimes.net/banners/ -# ||kukuplay.com/upload/*.swf (easylistchina+easylist.txt: 43706) -.kukuplay.com/upload/.*\.swf -# ||kuiken.co/static/w.js (easylistchina+easylist.txt: 43705) -.kuiken.co/static/w\.js -# ||ktradionetwork.com^*/banners/ (easylistchina+easylist.txt: 43704) -.ktradionetwork.com/.*/banners/ -# ||kstp.com^*/flexhousepromotions/ (easylistchina+easylist.txt: 43703) -.kstp.com/.*/flexhousepromotions/ -# ||ksstradio.com/wp-content/banners/ (easylistchina+easylist.txt: 43702) -.ksstradio.com/wp-content/banners/ -# ||krzk.com/uploads/banners/ (easylistchina+easylist.txt: 43701) -.krzk.com/uploads/banners/ -# ||kron.com/uploads/*-ad-$image (easylistchina+easylist.txt: 43700) -.kron.com/uploads/.*-ad- -# ||krebsonsecurity.com/b-kb/ (easylistchina+easylist.txt: 43699) -.krebsonsecurity.com/b-kb/ -# ||krebsonsecurity.com/b-ga/ (easylistchina+easylist.txt: 43698) -.krebsonsecurity.com/b-ga/ -# ||krapps.com^*-banner- (easylistchina+easylist.txt: 43697) -.krapps.com/.*-banner- -# ||kovideo.net^*.php?user_ (easylistchina+easylist.txt: 43696) -.kovideo.net/.*\.php\?user_ -# ||koreatimes.co.kr/www/images/bn/ (easylistchina+easylist.txt: 43695) -.koreatimes.co.kr/www/images/bn/ -# ||koreatimes.co.kr/upload/ad/ (easylistchina+easylist.txt: 43694) -.koreatimes.co.kr/upload/ad/ -# ||koreatimes.co.kr/images/bn/ (easylistchina+easylist.txt: 43693) -.koreatimes.co.kr/images/bn/ -# ||koreatimes.co.kr/ad/ (easylistchina+easylist.txt: 43692) -.koreatimes.co.kr/ad/ -# ||koreanmovie.com/img/banner/banner.jpg (easylistchina+easylist.txt: 43691) -.koreanmovie.com/img/banner/banner\.jpg -# ||koraliga.com/open.js (easylistchina+easylist.txt: 43690) -.koraliga.com/open\.js -# ||kontraband.com/media/takeovers/ (easylistchina+easylist.txt: 43689) -.kontraband.com/media/takeovers/ -# ||kongregate.com/images/help_devs_*.png (easylistchina+easylist.txt: 43688) -.kongregate.com/images/help_devs_.*\.png -# ||kompas.com/js_kompasads.php (easylistchina+easylist.txt: 43687) -.kompas.com/js_kompasads\.php -# ||komando.com^*/k2-interstitial.min.js? (easylistchina+easylist.txt: 43686) -.komando.com/.*/k2-interstitial\.min\.js\? -# ||kob.com/kobtvimages/flexhousepromotions/ (easylistchina+easylist.txt: 43685) -.kob.com/kobtvimages/flexhousepromotions/ -# ||knpr.org/common/sponsors/ (easylistchina+easylist.txt: 43684) -.knpr.org/common/sponsors/ -# ||knowthecause.com/images/banners/ (easylistchina+easylist.txt: 43683) -.knowthecause.com/images/banners/ -# ||knowledgespeak.com/images/banner/ (easylistchina+easylist.txt: 43682) -.knowledgespeak.com/images/banner/ -# ||knowfree.net^*/ezm125x125.gif (easylistchina+easylist.txt: 43681) -.knowfree.net/.*/ezm125x125\.gif -# ||knco.com/wp-content/uploads/wpt/ (easylistchina+easylist.txt: 43680) -.knco.com/wp-content/uploads/wpt/ -# ||kncminer.com/userfiles/image/250_240.jpg (easylistchina+easylist.txt: 43679) -.kncminer.com/userfiles/image/250_240\.jpg -# ||knbr.com^*/banners/ (easylistchina+easylist.txt: 43678) -.knbr.com/.*/banners/ -# ||klm.com^*/fls_redirect.html (easylistchina+easylist.txt: 43677) -.klm.com/.*/fls_redirect\.html -# ||klkdccs.net/pjs/yavli-tools.js (easylistchina+easylist.txt: 43676) -.klkdccs.net/pjs/yavli-tools\.js -# ||klfm967.co.uk/resources/creative/ (easylistchina+easylist.txt: 43675) -.klfm967.co.uk/resources/creative/ -# ||kleisauke.nl/static/img/bar.gif (easylistchina+easylist.txt: 43674) -.kleisauke.nl/static/img/bar\.gif -# ||klav1230am.com^*/banners/ (easylistchina+easylist.txt: 43673) -.klav1230am.com/.*/banners/ -# ||kjul1047.com^*/clientgraphics/ (easylistchina+easylist.txt: 43672) -.kjul1047.com/.*/clientgraphics/ -# ||kjlhradio.com^*/banners/ (easylistchina+easylist.txt: 43671) -.kjlhradio.com/.*/banners/ -# ||kjlhradio.com^*-300x250. (easylistchina+easylist.txt: 43670) -.kjlhradio.com/.*-300x250\. -# ||kitz.co.uk/files/jump2/ (easylistchina+easylist.txt: 43669) -.kitz.co.uk/files/jump2/ -# ||kitguru.net/wp-content/wrap.jpg (easylistchina+easylist.txt: 43668) -.kitguru.net/wp-content/wrap\.jpg -# ||kitguru.net/wp-content/banners/ (easylistchina+easylist.txt: 43667) -.kitguru.net/wp-content/banners/ -# ||kitguru.net/?kitguru_wrapjs=1&ver= (easylistchina+easylist.txt: 43666) -.kitguru.net/\?kitguru_wrapjs=1&ver= -# ||kitco.com^*/banners/ (easylistchina+easylist.txt: 43665) -.kitco.com/.*/banners/ -# ||kitco.com/ssi/market_ox_deanmg.stm (easylistchina+easylist.txt: 43664) -.kitco.com/ssi/market_ox_deanmg\.stm -# ||kitco.com/ssi/home_ox_deanmg.stm (easylistchina+easylist.txt: 43663) -.kitco.com/ssi/home_ox_deanmg\.stm -# ||kitco.com/ssi/dmg_banner_001.stm (easylistchina+easylist.txt: 43662) -.kitco.com/ssi/dmg_banner_001\.stm -# ||kirupa.com/supporter/ (easylistchina+easylist.txt: 43661) -.kirupa.com/supporter/ -# ||kinox.tv/g.js (easylistchina+easylist.txt: 43660) -.kinox.tv/g\.js -# ||kinox.to/com/ (easylistchina+easylist.txt: 43659) -.kinox.to/com/ -# ||kinox.to/392i921321.js (easylistchina+easylist.txt: 43658) -.kinox.to/392i921321\.js -# ||kingofsat.net/pub/ (easylistchina+easylist.txt: 43657) -.kingofsat.net/pub/ -# ||kingfiles.net/images/bt.png (easylistchina+easylist.txt: 43656) -.kingfiles.net/images/bt\.png -# ||kickoff.com/images/sleeves/ (easylistchina+easylist.txt: 43655) -.kickoff.com/images/sleeves/ -# ||kickasstorrent.ph/kat_adplib.js (easylistchina+easylist.txt: 43654) -.kickasstorrent.ph/kat_adplib\.js -# ||khon2.com^*/sponsors/ (easylistchina+easylist.txt: 43653) -.khon2.com/.*/sponsors/ -# ||khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N.jpg (easylistchina+easylist.txt: 43652) -.khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N\.jpg -# ||khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN.jpg (easylistchina+easylist.txt: 43651) -.khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN\.jpg -# ||kfog.com^*/banners/ (easylistchina+easylist.txt: 43650) -.kfog.com/.*/banners/ -# ||keygen-fm.ru/images/*.swf (easylistchina+easylist.txt: 43649) -.keygen-fm.ru/images/.*\.swf -# ||kexp.org^*/sponsoredby. (easylistchina+easylist.txt: 43648) -.kexp.org/.*/sponsoredby\. -# ||kexp.org^*/sponsor- (easylistchina+easylist.txt: 43647) -.kexp.org/.*/sponsor- -# ||kewlshare.com/reward.html (easylistchina+easylist.txt: 43646) -.kewlshare.com/reward\.html -# ||kermit.macnn.com^ (easylistchina+easylist.txt: 43645) -.kermit.macnn.com -# ||kephyr.com/spywarescanner/banner1.gif (easylistchina+easylist.txt: 43644) -.kephyr.com/spywarescanner/banner1\.gif -# ||kentonline.co.uk/weatherimages/sponsor_ (easylistchina+easylist.txt: 43643) -.kentonline.co.uk/weatherimages/sponsor_ -# ||kentonline.co.uk/weatherimages/SEW.jpg (easylistchina+easylist.txt: 43642) -.kentonline.co.uk/weatherimages/SEW\.jpg -# ||kentonline.co.uk/weatherimages/Britelite.gif (easylistchina+easylist.txt: 43641) -.kentonline.co.uk/weatherimages/Britelite\.gif -# ||kendrickcoleman.com/images/banners/ (easylistchina+easylist.txt: 43640) -.kendrickcoleman.com/images/banners/ -# ||keepvid.com/images/winxdvd- (easylistchina+easylist.txt: 43639) -.keepvid.com/images/winxdvd- -# ||keepvid.com/images/ilivid- (easylistchina+easylist.txt: 43638) -.keepvid.com/images/ilivid- -# ||keepthelighton.vpsboard.com^ (easylistchina+easylist.txt: 43637) -.keepthelighton.vpsboard.com -# ||keenspot.com/images/headerbar- (easylistchina+easylist.txt: 43636) -.keenspot.com/images/headerbar- -# ||kdoctv.net/images/banners/ (easylistchina+easylist.txt: 43635) -.kdoctv.net/images/banners/ -# ||kdnuggets.com/aps/ (easylistchina+easylist.txt: 43634) -.kdnuggets.com/aps/ -# ||kcrw.com/collage-images/itunes.gif (easylistchina+easylist.txt: 43633) -.kcrw.com/collage-images/itunes\.gif -# ||kcrw.com/collage-images/amazon.gif (easylistchina+easylist.txt: 43632) -.kcrw.com/collage-images/amazon\.gif -# ||kblx.com/upload/takeover_ (easylistchina+easylist.txt: 43631) -.kblx.com/upload/takeover_ -# ||kbcradio.eu/img/banner/ (easylistchina+easylist.txt: 43630) -.kbcradio.eu/img/banner/ -# ||kavkisfile.com/images/ly.gif (easylistchina+easylist.txt: 43629) -.kavkisfile.com/images/ly\.gif -# ||kavkisfile.com/images/ly-mini.gif (easylistchina+easylist.txt: 43628) -.kavkisfile.com/images/ly-mini\.gif -# ||kat-ads.torrenticity.com^ (easylistchina+easylist.txt: 43627) -.kat-ads.torrenticity.com -# ||kassfm.co.ke/images/moneygram.gif (easylistchina+easylist.txt: 43626) -.kassfm.co.ke/images/moneygram\.gif -# ||kansascity.com/images/touts/ds_ (easylistchina+easylist.txt: 43625) -.kansascity.com/images/touts/ds_ -# ||kamcity.com/menu/banners/ (easylistchina+easylist.txt: 43624) -.kamcity.com/menu/banners/ -# ||kamcity.com/banager/banners/ (easylistchina+easylist.txt: 43623) -.kamcity.com/banager/banners/ -# ||kaieteurnewsonline.com/revenue/ (easylistchina+easylist.txt: 43622) -.kaieteurnewsonline.com/revenue/ -# ||juventus.com/pics/sponsors/ (easylistchina+easylist.txt: 43621) -.juventus.com/pics/sponsors/ -# ||justsomething.co/wp-content/uploads/*-250x250. (easylistchina+easylist.txt: 43620) -.justsomething.co/wp-content/uploads/.*-250x250\. -# ||just-download.com/banner/ (easylistchina+easylist.txt: 43619) -.just-download.com/banner/ -# ||junocloud.me/promos/ (easylistchina+easylist.txt: 43618) -.junocloud.me/promos/ -# ||jumptags.com/joozit/presentation/images/banners/ (easylistchina+easylist.txt: 43617) -.jumptags.com/joozit/presentation/images/banners/ -# ||jozikids.co.za/uploadimages/140x140_ (easylistchina+easylist.txt: 43616) -.jozikids.co.za/uploadimages/140x140_ -# ||jozikids.co.za/uploadimages/*_140x140_ (easylistchina+easylist.txt: 43615) -.jozikids.co.za/uploadimages/.*_140x140_ -# ||joursouvres.fr^*/pub_ (easylistchina+easylist.txt: 43614) -.joursouvres.fr/.*/pub_ -# ||journeychristiannews.com/images/banners/ (easylistchina+easylist.txt: 43613) -.journeychristiannews.com/images/banners/ -# ||journal-news.net/annoyingpopup/ (easylistchina+easylist.txt: 43612) -.journal-news.net/annoyingpopup/ -# ||joomladigger.com/images/banners/ (easylistchina+easylist.txt: 43611) -.joomladigger.com/images/banners/ -# ||joindota.com/wp-content/*.png$image (easylistchina+easylist.txt: 43609) -.joindota.com/wp-content/.*\.png -# ||johngaltfla.com/wordpress/wp-content/uploads/*/TB2K_LOGO.jpg (easylistchina+easylist.txt: 43608) -.johngaltfla.com/wordpress/wp-content/uploads/.*/TB2K_LOGO\.jpg -# ||johngaltfla.com/wordpress/wp-content/uploads/*/jmcs_specaialbanner.jpg (easylistchina+easylist.txt: 43607) -.johngaltfla.com/wordpress/wp-content/uploads/.*/jmcs_specaialbanner\.jpg -# ||johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions.png (easylistchina+easylist.txt: 43606) -.johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions\.png -# ||johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge.jpg (easylistchina+easylist.txt: 43605) -.johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge\.jpg -# ||johnbridge.com/vbulletin/banner_rotate.js (easylistchina+easylist.txt: 43604) -.johnbridge.com/vbulletin/banner_rotate\.js -# ||jillianmichaels.com/images/publicsite/advertisingslug.gif (easylistchina+easylist.txt: 43603) -.jillianmichaels.com/images/publicsite/advertisingslug\.gif -# ||jheberg.net/img/mp.png (easylistchina+easylist.txt: 43602) -.jheberg.net/img/mp\.png -# ||jewishyellow.com/pics/banners/ (easylistchina+easylist.txt: 43601) -.jewishyellow.com/pics/banners/ -# ||jewishvoiceny.com/ban2/ (easylistchina+easylist.txt: 43600) -.jewishvoiceny.com/ban2/ -# ||jewishtribune.ca^*/banners/ (easylistchina+easylist.txt: 43599) -.jewishtribune.ca/.*/banners/ -# ||jewishtimes-sj.com/rop/ (easylistchina+easylist.txt: 43598) -.jewishtimes-sj.com/rop/ -# ||jewishnews.co.uk^*banner (easylistchina+easylist.txt: 43597) -.jewishnews.co.uk/.*banner -# ||jewishexponent.com^*/banners/ (easylistchina+easylist.txt: 43596) -.jewishexponent.com/.*/banners/ -# ||jebril.com/sites/default/files/images/top-banners/ (easylistchina+easylist.txt: 43595) -.jebril.com/sites/default/files/images/top-banners/ -# ||jdownloader.org^*/smbanner.png (easylistchina+easylist.txt: 43594) -.jdownloader.org/.*/smbanner\.png -# ||jdownloader.org/_media/screenshots/banner.png (easylistchina+easylist.txt: 43593) -.jdownloader.org/_media/screenshots/banner\.png -# ||jazzandblues.org^*/iTunes_ (easylistchina+easylist.txt: 43592) -.jazzandblues.org/.*/iTunes_ -# ||jayisgames.com/maxcdn_160x250.png (easylistchina+easylist.txt: 43591) -.jayisgames.com/maxcdn_160x250\.png -# ||javascript-coder.com^*/make-form-without-coding.png (easylistchina+easylist.txt: 43590) -.javascript-coder.com/.*/make-form-without-coding\.png -# ||javascript-coder.com^*/form-submit-larger.jpg (easylistchina+easylist.txt: 43589) -.javascript-coder.com/.*/form-submit-larger\.jpg -# ||javamex.com/images/AdFrenchVocabGamesAnim.gif (easylistchina+easylist.txt: 43588) -.javamex.com/images/AdFrenchVocabGamesAnim\.gif -# ||jango.com/assets/promo/1600x1000- (easylistchina+easylist.txt: 43587) -.jango.com/assets/promo/1600x1000- -# ||jame-world.com^*/adv/ (easylistchina+easylist.txt: 43586) -.jame-world.com/.*/adv/ -# ||jamaica-gleaner.com/images/promo/ (easylistchina+easylist.txt: 43585) -.jamaica-gleaner.com/images/promo/ -# ||ixquick.nl/graphics/banner_ (easylistchina+easylist.txt: 43584) -.ixquick.nl/graphics/banner_ -# ||iwebtool.com^*/bannerview.php (easylistchina+easylist.txt: 43583) -.iwebtool.com/.*/bannerview\.php -# ||iurfm.com/images/sponsors/ (easylistchina+easylist.txt: 43582) -.iurfm.com/images/sponsors/ -# ||itworld.com/slideshow/iframe/topimu/ (easylistchina+easylist.txt: 43581) -.itworld.com/slideshow/iframe/topimu/ -# ||itwebafrica.com/images/logos/ (easylistchina+easylist.txt: 43580) -.itwebafrica.com/images/logos/ -# ||itweb.co.za^*sponsoredby (easylistchina+easylist.txt: 43579) -.itweb.co.za/.*sponsoredby -# ||itweb.co.za/sidelogos/ (easylistchina+easylist.txt: 43578) -.itweb.co.za/sidelogos/ -# ||itweb.co.za/logos/ (easylistchina+easylist.txt: 43577) -.itweb.co.za/logos/ -# ||itweb.co.za/banners/ (easylistchina+easylist.txt: 43576) -.itweb.co.za/banners/ -# ||itv.com/adexplore/*/config.xml (easylistchina+easylist.txt: 43574) -.itv.com/adexplore/.*/config\.xml -# ||itpro.co.uk/images/skins/ (easylistchina+easylist.txt: 43573) -.itpro.co.uk/images/skins/ -# ||italiangenealogy.com/images/banners/ (easylistchina+easylist.txt: 43572) -.italiangenealogy.com/images/banners/ -# ||isxdead.com/images/showbox.png (easylistchina+easylist.txt: 43571) -.isxdead.com/images/showbox\.png -# ||isup.me/images/dotbiz_banner.jpg (easylistchina+easylist.txt: 43570) -.isup.me/images/dotbiz_banner\.jpg -# ||israeltoday.co.il^*/promo/ (easylistchina+easylist.txt: 43569) -.israeltoday.co.il/.*/promo/ -# ||israelidiamond.co.il^*/bannerdisplay.aspx? (easylistchina+easylist.txt: 43568) -.israelidiamond.co.il/.*/bannerdisplay\.aspx\? -# ||israeldefense.com/_Uploads/dbsBanners/ (easylistchina+easylist.txt: 43567) -.israeldefense.com/_Uploads/dbsBanners/ -# ||isportconnect.com//images/banners/ (easylistchina+easylist.txt: 43566) -# ||island.lk/userfiles/image/danweem/ (easylistchina+easylist.txt: 43565) -.island.lk/userfiles/image/danweem/ -# ||islamicfocus.co.za/images/banners/ (easylistchina+easylist.txt: 43564) -.islamicfocus.co.za/images/banners/ -# ||islamicfinder.org/cimage/ (easylistchina+easylist.txt: 43563) -.islamicfinder.org/cimage/ -# ||isitnormal.com/img/iphone_hp_promo_wide.png (easylistchina+easylist.txt: 43562) -.isitnormal.com/img/iphone_hp_promo_wide\.png -# ||isitdownrightnow.com/graphics/speedupmypc*.png (easylistchina+easylist.txt: 43561) -.isitdownrightnow.com/graphics/speedupmypc.*\.png -# ||irv2.com/images/sponsors/ (easylistchina+easylist.txt: 43560) -.irv2.com/images/sponsors/ -# ||irv2.com/forums/*show_banner (easylistchina+easylist.txt: 43559) -.irv2.com/forums/.*show_banner -# ||irv2.com/attachments/banners/ (easylistchina+easylist.txt: 43558) -.irv2.com/attachments/banners/ -# ||ironsquid.tv/data/uploads/sponsors/ (easylistchina+easylist.txt: 43557) -.ironsquid.tv/data/uploads/sponsors/ -# ||ironspider.ca/pics/hostgator_green120x600.gif (easylistchina+easylist.txt: 43556) -.ironspider.ca/pics/hostgator_green120x600\.gif -# ||ironmagazine.com^*/banners.php (easylistchina+easylist.txt: 43555) -.ironmagazine.com/.*/banners\.php -# ||irishracing.com/graphics/books (easylistchina+easylist.txt: 43554) -.irishracing.com/graphics/books -# ||irishdictionary.ie/view/images/ispaces-makes-any-computer.jpg (easylistchina+easylist.txt: 43553) -.irishdictionary.ie/view/images/ispaces-makes-any-computer\.jpg -# ||irishdev.com/files/banners/ (easylistchina+easylist.txt: 43552) -.irishdev.com/files/banners/ -# ||irishamericannews.com/images/banners/ (easylistchina+easylist.txt: 43551) -.irishamericannews.com/images/banners/ -# ||irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/*DealsBanner_ (easylistchina+easylist.txt: 43550) -.irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/.*DealsBanner_ -# ||iptools.com/sky.php (easylistchina+easylist.txt: 43549) -.iptools.com/sky\.php -# ||ipinfodb.com/img/adds/ (easylistchina+easylist.txt: 43548) -.ipinfodb.com/img/adds/ -# ||ipaddress.com/banner/ (easylistchina+easylist.txt: 43547) -.ipaddress.com/banner/ -# ||ip-adress.com/superb/ (easylistchina+easylist.txt: 43545) -.ip-adress.com/superb/ -# ||ip-adress.com/i/ewa/ (easylistchina+easylist.txt: 43544) -.ip-adress.com/i/ewa/ -# ||intoday.in/btstryad.html (easylistchina+easylist.txt: 43543) -.intoday.in/btstryad\.html -# ||internationalmeetingsreview.com//uploads/banner/ (easylistchina+easylist.txt: 43542) -# ||international.to/link_unit.html (easylistchina+easylist.txt: 43541) -.international.to/link_unit\.html -# ||international.to/large.html (easylistchina+easylist.txt: 43540) -.international.to/large\.html -# ||international.to/600.html (easylistchina+easylist.txt: 43539) -.international.to/600\.html -# ||interfacelift.com^*/artistsvalley_160x90_ (easylistchina+easylist.txt: 43538) -.interfacelift.com/.*/artistsvalley_160x90_ -# ||interfacelift.com/inc_new/$subdocument (easylistchina+easylist.txt: 43537) -.interfacelift.com/inc_new/ -# ||interest.co.nz^*_skin_ (easylistchina+easylist.txt: 43536) -.interest.co.nz/.*_skin_ -# ||interest.co.nz^*_skin. (easylistchina+easylist.txt: 43535) -.interest.co.nz/.*_skin\. -# ||interest.co.nz/banners/ (easylistchina+easylist.txt: 43534) -.interest.co.nz/banners/ -# ||intelseek.com/intelseekads/ (easylistchina+easylist.txt: 43533) -.intelseek.com/intelseekads/ -# ||intellicast.com/travel/cheapflightswidget.htm (easylistchina+easylist.txt: 43532) -.intellicast.com/travel/cheapflightswidget\.htm -# ||intellicast.com/outsidein.js (easylistchina+easylist.txt: 43531) -.intellicast.com/outsidein\.js -# ||intel.com/sites/wap/global/wap.js (easylistchina+easylist.txt: 43530) -.intel.com/sites/wap/global/wap\.js -# ||inspirefirst.com^*/banners/ (easylistchina+easylist.txt: 43529) -.inspirefirst.com/.*/banners/ -# ||insideyork.co.uk/assets/images/sponsors/ (easylistchina+easylist.txt: 43528) -.insideyork.co.uk/assets/images/sponsors/ -# ||insidethe.agency^*-300x250. (easylistchina+easylist.txt: 43527) -.insidethe.agency/.*-300x250\. -# ||insidehw.com/images/banners/ (easylistchina+easylist.txt: 43526) -.insidehw.com/images/banners/ -# ||insidedp.com/images/banners/ (easylistchina+easylist.txt: 43525) -.insidedp.com/images/banners/ -# ||insidebutlercounty.com/images/468- (easylistchina+easylist.txt: 43524) -.insidebutlercounty.com/images/468- -# ||insidebutlercounty.com/images/300- (easylistchina+easylist.txt: 43523) -.insidebutlercounty.com/images/300- -# ||insidebutlercounty.com/images/200- (easylistchina+easylist.txt: 43522) -.insidebutlercounty.com/images/200- -# ||insidebutlercounty.com/images/180- (easylistchina+easylist.txt: 43521) -.insidebutlercounty.com/images/180- -# ||insidebutlercounty.com/images/160- (easylistchina+easylist.txt: 43520) -.insidebutlercounty.com/images/160- -# ||insidebutlercounty.com/images/100- (easylistchina+easylist.txt: 43519) -.insidebutlercounty.com/images/100- -# ||inquirer.net/wp-content/themes/news/images/wallpaper_ (easylistchina+easylist.txt: 43518) -.inquirer.net/wp-content/themes/news/images/wallpaper_ -# ||inkscapeforum.com/images/banners/ (easylistchina+easylist.txt: 43517) -.inkscapeforum.com/images/banners/ -# ||injpn.net/images/banners/ (easylistchina+easylist.txt: 43516) -.injpn.net/images/banners/ -# ||ingdirect.com^*/adwizard/ (easylistchina+easylist.txt: 43515) -.ingdirect.com/.*/adwizard/ -# ||infoseek.co.jp/isweb/clip.html (easylistchina+easylist.txt: 43514) -.infoseek.co.jp/isweb/clip\.html -# ||infosecisland.com/ajax/viewbanner/ (easylistchina+easylist.txt: 43513) -.infosecisland.com/ajax/viewbanner/ -# ||informer.com/js/onexit*.js (easylistchina+easylist.txt: 43512) -.informer.com/js/onexit.*\.js -# ||informe.com/img/banner_ (easylistchina+easylist.txt: 43511) -.informe.com/img/banner_ -# ||infoq.com^*/banners/ (easylistchina+easylist.txt: 43510) -.infoq.com/.*/banners/ -# ||infobetting.com/bookmaker/ (easylistchina+easylist.txt: 43509) -.infobetting.com/bookmaker/ -# ||infobetting.com/b/ (easylistchina+easylist.txt: 43508) -.infobetting.com/b/ -# ||info.sciencedaily.com/api/ (easylistchina+easylist.txt: 43507) -.info.sciencedaily.com/api/ -# ||info.break.com^*/sponsors/ (easylistchina+easylist.txt: 43506) -.info.break.com/.*/sponsors/ -# ||industryabout.com/images/banners/ (easylistchina+easylist.txt: 43505) -.industryabout.com/images/banners/ -# ||indiatimes.com/google$subdocument (easylistchina+easylist.txt: 43504) -.indiatimes.com/google -# ||indiatimes.com/articleshow_google_$subdocument (easylistchina+easylist.txt: 43503) -.indiatimes.com/articleshow_google_ -# ||indiantelevision.com/banner/ (easylistchina+easylist.txt: 43502) -.indiantelevision.com/banner/ -# ||indianexpress.com^*/banner/ (easylistchina+easylist.txt: 43501) -.indianexpress.com/.*/banner/ -# ||indiainfoline.com/wc/ads/ (easylistchina+easylist.txt: 43500) -.indiainfoline.com/wc/ads/ -# ||india.com^*-sponsor. (easylistchina+easylist.txt: 43499) -.india.com/.*-sponsor\. -# ||india.com/zeenews_head2n.jpg (easylistchina+easylist.txt: 43498) -.india.com/zeenews_head2n\.jpg -# ||india.com/ads/jw/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 43497) -.india.com/ads/jw/ova-jw\.swf -# ||indepthafrica.com^*/Banner-canreach.gif (easylistchina+easylist.txt: 43496) -.indepthafrica.com/.*/Banner-canreach\.gif -# ||independent.co.uk^*/partners/ (easylistchina+easylist.txt: 43495) -.independent.co.uk/.*/partners/ -# ||independent.co.uk^*/300unit/ (easylistchina+easylist.txt: 43494) -.independent.co.uk/.*/300unit/ -# ||independent.co.uk/multimedia/archive/$subdocument (easylistchina+easylist.txt: 43493) -.independent.co.uk/multimedia/archive/ -# ||independent.co.uk/kelkoo/ (easylistchina+easylist.txt: 43492) -.independent.co.uk/kelkoo/ -# ||independent.co.ug/images/banners/ (easylistchina+easylist.txt: 43491) -.independent.co.ug/images/banners/ -# ||indeed.com/ads/ (easylistchina+easylist.txt: 43490) -.indeed.com/ads/ -# ||incentivetravel.co.uk/images/banners/ (easylistchina+easylist.txt: 43489) -.incentivetravel.co.uk/images/banners/ -# ||inanyevent.ch/images/banners/ (easylistchina+easylist.txt: 43488) -.inanyevent.ch/images/banners/ -# ||in.com^*/170x50_ (easylistchina+easylist.txt: 43487) -.in.com/.*/170x50_ -# ||in.com/addIframe/ (easylistchina+easylist.txt: 43486) -.in.com/addIframe/ -# ||impulsedriven.com/app_images/wallpaper/ (easylistchina+easylist.txt: 43485) -.impulsedriven.com/app_images/wallpaper/ -# ||impactradio.co.za^*/banners/ (easylistchina+easylist.txt: 43484) -.impactradio.co.za/.*/banners/ -# ||imouto.org/images/mangagamer/ (easylistchina+easylist.txt: 43483) -.imouto.org/images/mangagamer/ -# ||imouto.org/images/jlist/ (easylistchina+easylist.txt: 43482) -.imouto.org/images/jlist/ -# ||imgur.com/include/zedoinviewstub1621.html (easylistchina+easylist.txt: 43481) -.imgur.com/include/zedoinviewstub1621\.html -# ||imgshots.com/includes/js/layer.js (easylistchina+easylist.txt: 43479) -.imgshots.com/includes/js/layer\.js -# ||imgchili.net/lj.js (easylistchina+easylist.txt: 43478) -.imgchili.net/lj\.js -# ||imgchili.net/js/showa.js (easylistchina+easylist.txt: 43477) -.imgchili.net/js/showa\.js -# ||imgcarry.com^*/oc.js (easylistchina+easylist.txt: 43476) -.imgcarry.com/.*/oc\.js -# ||imgburn.com/images/your3gift.gif (easylistchina+easylist.txt: 43475) -.imgburn.com/images/your3gift\.gif -# ||imgburn.com/images/ddigest_ (easylistchina+easylist.txt: 43474) -.imgburn.com/images/ddigest_ -# ||imgah.com/traffic$subdocument (easylistchina+easylist.txt: 43473) -.imgah.com/traffic -# ||img*.i-comers.com^ (easylistchina+easylist.txt: 43472) -.img*./.*\.i-comers\.com[^\w%.-] -.img*.i-comers.com -# ||imfdb.org^*/FoG-300x250.jpg (easylistchina+easylist.txt: 43471) -.imfdb.org/.*/FoG-300x250\.jpg -# ||imdb.com/images/*/scriptloader.$subdocument (easylistchina+easylist.txt: 43470) -.imdb.com/images/.*/scriptloader\. -# ||imcdb.org/res/cth_ (easylistchina+easylist.txt: 43469) -.imcdb.org/res/cth_ -# ||imagevenue.com/interstitial. (easylistchina+easylist.txt: 43468) -.imagevenue.com/interstitial\. -# ||imagetoupload.com/images/87633952425570896161.jpg (easylistchina+easylist.txt: 43467) -.imagetoupload.com/images/87633952425570896161\.jpg -# ||imagesnake.com^*/oc.js (easylistchina+easylist.txt: 43466) -.imagesnake.com/.*/oc\.js -# ||imageshack.us/ym.php? (easylistchina+easylist.txt: 43465) -.imageshack.us/ym\.php\? -# ||imageshack.us/images/contests/*/lp-bg.jpg (easylistchina+easylist.txt: 43464) -.imageshack.us/images/contests/.*/lp-bg\.jpg -# ||images.sharkscope.com/everest/twister.jpg (easylistchina+easylist.txt: 43463) -.images.sharkscope.com/everest/twister\.jpg -# ||images.sharkscope.com/acr/*_Ad- (easylistchina+easylist.txt: 43462) -.images.sharkscope.com/acr/.*_Ad- -# ||images.mmorpg.com/images/*skin (easylistchina+easylist.txt: 43461) -.images.mmorpg.com/images/.*skin -# ||images.globes.co.il^*/fixedpromoright. (easylistchina+easylist.txt: 43460) -.images.globes.co.il/.*/fixedpromoright\. -# ||images.bitreactor.to/designs/ (easylistchina+easylist.txt: 43459) -.images.bitreactor.to/designs/ -# ||images-amazon.com^*/marqueepushdown/ (easylistchina+easylist.txt: 43458) -.images-amazon.com/.*/marqueepushdown/ -# ||images-amazon.com/images/*/da-us/da-$script (easylistchina+easylist.txt: 43457) -.images-amazon.com/images/.*/da-us/da- -# ||images-amazon.com/images/*/browser-scripts/dae- (easylistchina+easylist.txt: 43456) -.images-amazon.com/images/.*/browser-scripts/dae- -# ||images-amazon.com/images/*/browser-scripts/da- (easylistchina+easylist.txt: 43455) -.images-amazon.com/images/.*/browser-scripts/da- -# ||imagerise.com/ir2.js (easylistchina+easylist.txt: 43454) -.imagerise.com/ir2\.js -# ||imagerise.com/ir.js (easylistchina+easylist.txt: 43453) -.imagerise.com/ir\.js -# ||imageporter.com/someo.html (easylistchina+easylist.txt: 43452) -.imageporter.com/someo\.html -# ||imageporter.com/micromoo.html (easylistchina+easylist.txt: 43451) -.imageporter.com/micromoo\.html -# ||imageporter.com/hiokax.js (easylistchina+easylist.txt: 43450) -.imageporter.com/hiokax\.js -# ||imagepix.org/Images/imageput.jpg (easylistchina+easylist.txt: 43449) -.imagepix.org/Images/imageput\.jpg -# ||imagefruit.com/includes/js/layer.js (easylistchina+easylist.txt: 43448) -.imagefruit.com/includes/js/layer\.js -# ||imagefruit.com/includes/js/ex.js (easylistchina+easylist.txt: 43447) -.imagefruit.com/includes/js/ex\.js -# ||imagefruit.com/includes/js/bgcont.js (easylistchina+easylist.txt: 43446) -.imagefruit.com/includes/js/bgcont\.js -# ||imagebam.com/img/coolstuffbro.jpg (easylistchina+easylist.txt: 43445) -.imagebam.com/img/coolstuffbro\.jpg -# ||imagebam.com/download_button.png (easylistchina+easylist.txt: 43444) -.imagebam.com/download_button\.png -# ||imads.rediff.com^ (easylistchina+easylist.txt: 43442) -.imads.rediff.com -# ||iloveim.com/cadv (easylistchina+easylist.txt: 43441) -.iloveim.com/cadv -# ||iload.to/img/ul/impopi.js (easylistchina+easylist.txt: 43440) -.iload.to/img/ul/impopi\.js -# ||ilcorsaronero.info/home.gif (easylistchina+easylist.txt: 43438) -.ilcorsaronero.info/home\.gif -# ||ijoomla.com/aff/banners/ (easylistchina+easylist.txt: 43437) -.ijoomla.com/aff/banners/ -# ||ijn.com/images/banners/ (easylistchina+easylist.txt: 43436) -.ijn.com/images/banners/ -# ||iftn.ie/images/data/banners/ (easylistchina+easylist.txt: 43435) -.iftn.ie/images/data/banners/ -# ||iframe.travel.yahoo.com^ (easylistchina+easylist.txt: 43434) -.iframe.travel.yahoo.com -# ||ifilm.com/website/*-skin- (easylistchina+easylist.txt: 43433) -.ifilm.com/website/.*-skin- -# ||idg.com.au^*_skin.jpg (easylistchina+easylist.txt: 43431) -.idg.com.au/.*_skin\.jpg -# ||idg.com.au/images/*_promo$image (easylistchina+easylist.txt: 43430) -.idg.com.au/images/.*_promo -# ||idg.com.au/files/skins/ (easylistchina+easylist.txt: 43429) -.idg.com.au/files/skins/ -# ||idesitv.com^*/loadbanners. (easylistchina+easylist.txt: 43428) -.idesitv.com/.*/loadbanners\. -# ||iddin.com/img/chatwing_banner_ (easylistchina+easylist.txt: 43427) -.iddin.com/img/chatwing_banner_ -# ||iddin.com/img/chatwing_banner. (easylistchina+easylist.txt: 43426) -.iddin.com/img/chatwing_banner\. -# ||icydk.com^*/title_visit_sponsors. (easylistchina+easylist.txt: 43425) -.icydk.com/.*/title_visit_sponsors\. -# ||icrt.com.tw/downloads/banner/ (easylistchina+easylist.txt: 43423) -.icrt.com.tw/downloads/banner/ -# ||iconeye.com/images/banners/ (easylistchina+easylist.txt: 43422) -.iconeye.com/images/banners/ -# ||icelandreview.com^*/auglysingar/ (easylistchina+easylist.txt: 43421) -.icelandreview.com/.*/auglysingar/ -# ||iceinspace.com.au/iisads/ (easylistchina+easylist.txt: 43420) -.iceinspace.com.au/iisads/ -# ||ibtimes.com^*/sponsor_ (easylistchina+easylist.txt: 43419) -.ibtimes.com/.*/sponsor_ -# ||ibtimes.com^*&popunder (easylistchina+easylist.txt: 43418) -.ibtimes.com/.*&popunder -# ||ibtimes.com/banner/ (easylistchina+easylist.txt: 43417) -.ibtimes.com/banner/ -# ||ibsrv.net/sponsors/ (easylistchina+easylist.txt: 43416) -.ibsrv.net/sponsors/ -# ||ibsrv.net/*_215x30_ (easylistchina+easylist.txt: 43413) -.ibsrv.net/.*_215x30_ -# ||ibsrv.net/*_215x30. (easylistchina+easylist.txt: 43412) -.ibsrv.net/.*_215x30\. -# ||ibsrv.net/*214x30. (easylistchina+easylist.txt: 43411) -.ibsrv.net/.*214x30\. -# ||ibrod.tv/ib.php (easylistchina+easylist.txt: 43410) -.ibrod.tv/ib\.php -# ||ibnlive.in.com^*/ibn_*_banner_ (easylistchina+easylist.txt: 43409) -.ibnlive.in.com/.*/ibn_.*_banner_ -# ||ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ (easylistchina+easylist.txt: 43408) -.ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ -# ||ibanners.empoweredcomms.com.au^ (easylistchina+easylist.txt: 43407) -.ibanners.empoweredcomms.com.au -# ||ians.in/iansad/ (easylistchina+easylist.txt: 43406) -.ians.in/iansad/ -# ||i3investor.com^*/partner/ (easylistchina+easylist.txt: 43405) -.i3investor.com/.*/partner/ -# ||i3investor.com^*/offer_ (easylistchina+easylist.txt: 43404) -.i3investor.com/.*/offer_ -# ||i.neoseeker.com/d/$subdocument (easylistchina+easylist.txt: 43403) -.i.neoseeker.com/d/ -# ||i.i.com.com/cnwk.1d/*/tt_post_dl.jpg (easylistchina+easylist.txt: 43402) -.i.i.com.com/cnwk\.1d/.*/tt_post_dl\.jpg -# ||i.com.com^*/vendor_bg_ (easylistchina+easylist.txt: 43401) -.i.com.com/.*/vendor_bg_ -# ||i-tech.com.au^*/banner/ (easylistchina+easylist.txt: 43400) -.i-tech.com.au/.*/banner/ -# ||i-sgcm.com/pagetakeover/ (easylistchina+easylist.txt: 43399) -.i-sgcm.com/pagetakeover/ -# ||hypemagazine.co.za/assets/bg/ (easylistchina+easylist.txt: 43398) -.hypemagazine.co.za/assets/bg/ -# ||hwinfo.com/images/se2banner.png (easylistchina+easylist.txt: 43397) -.hwinfo.com/images/se2banner\.png -# ||hwinfo.com/images/lansweeper.jpg (easylistchina+easylist.txt: 43396) -.hwinfo.com/images/lansweeper\.jpg -# ||hwbot.org/banner.img (easylistchina+easylist.txt: 43395) -.hwbot.org/banner\.img -# ||hurriyetdailynews.com/images/*_100x250_ (easylistchina+easylist.txt: 43394) -.hurriyetdailynews.com/images/.*_100x250_ -# ||hummy.org.uk^*/brotator/ (easylistchina+easylist.txt: 43393) -.hummy.org.uk/.*/brotator/ -# ||hulu.com/v3/revenue/ (easylistchina+easylist.txt: 43392) -.hulu.com/v3/revenue/ -# ||hulu.com/beacon/*=adauditerror (easylistchina+easylist.txt: 43391) -.hulu.com/beacon/.*=adauditerror -# ||hulkshare.oncdn.com^*/removeads. (easylistchina+easylist.txt: 43390) -.hulkshare.oncdn.com/.*/removeads\. -# ||hulkshare.com^*/adsmanager.js (easylistchina+easylist.txt: 43389) -.hulkshare.com/.*/adsmanager\.js -# ||hulkshare.com/promo/ (easylistchina+easylist.txt: 43388) -.hulkshare.com/promo/ -# ||hulkload.com/recommended/ (easylistchina+easylist.txt: 43387) -.hulkload.com/recommended/ -# ||hulkload.com/b/ (easylistchina+easylist.txt: 43386) -.hulkload.com/b/ -# ||hulkfile.eu/images/africa.gif (easylistchina+easylist.txt: 43385) -.hulkfile.eu/images/africa\.gif -# ||htmldog.com/r10/flowers/ (easylistchina+easylist.txt: 43383) -.htmldog.com/r10/flowers/ -# ||hqfooty.tv/ad (easylistchina+easylist.txt: 43382) -.hqfooty.tv/ad -# ||hpfanficarchive.com/freecoins2.jpg (easylistchina+easylist.txt: 43381) -.hpfanficarchive.com/freecoins2\.jpg -# ||howwemadeitinafrica.com^*/dhl-hdr.gif (easylistchina+easylist.txt: 43380) -.howwemadeitinafrica.com/.*/dhl-hdr\.gif -# ||howtogermany.com/banner/ (easylistchina+easylist.txt: 43379) -.howtogermany.com/banner/ -# ||howtogeek.com/go/ (easylistchina+easylist.txt: 43378) -.howtogeek.com/go/ -# ||houseoftravel.co.nz/flash/banner/ (easylistchina+easylist.txt: 43377) -.houseoftravel.co.nz/flash/banner/ -# ||houndmirror.com/images/XmkuP.gif (easylistchina+easylist.txt: 43376) -.houndmirror.com/images/XmkuP\.gif -# ||hothardware.com^*_staticbanner_*.jpg (easylistchina+easylist.txt: 43375) -.hothardware.com/.*_staticbanner_.*\.jpg -# ||hothardware.com/pgmerchanttable.aspx? (easylistchina+easylist.txt: 43374) -.hothardware.com/pgmerchanttable\.aspx\? -# ||hotgamesforgirls.com/html/$subdocument (easylistchina+easylist.txt: 43373) -.hotgamesforgirls.com/html/ -# ||hotfiletrend.com/dlp.gif (easylistchina+easylist.txt: 43372) -.hotfiletrend.com/dlp\.gif -# ||hotfilesearch.com/includes/images/mov_ (easylistchina+easylist.txt: 43371) -.hotfilesearch.com/includes/images/mov_ -# ||hotfile.com^*/banners/ (easylistchina+easylist.txt: 43370) -.hotfile.com/.*/banners/ -# ||hotbollywoodactress.net/freedatingindia.gif (easylistchina+easylist.txt: 43369) -.hotbollywoodactress.net/freedatingindia\.gif -# ||hotbollywoodactress.net/ff2.gif (easylistchina+easylist.txt: 43368) -.hotbollywoodactress.net/ff2\.gif -# ||hot-scene.com/cpop.js (easylistchina+easylist.txt: 43367) -.hot-scene.com/cpop\.js -# ||hostsearch.com/creative/ (easylistchina+easylist.txt: 43366) -.hostsearch.com/creative/ -# ||hostratings.co.uk/zeepeel. (easylistchina+easylist.txt: 43365) -.hostratings.co.uk/zeepeel\. -# ||hostingdedi.com/wp-content/uploads/add$subdocument (easylistchina+easylist.txt: 43364) -.hostingdedi.com/wp-content/uploads/add -# ||hostingbulk.com/zad.html (easylistchina+easylist.txt: 43363) -.hostingbulk.com/zad\.html -# ||hostingbulk.com/aad.html (easylistchina+easylist.txt: 43362) -.hostingbulk.com/aad\.html -# ||horriblesubs.info/playasia (easylistchina+easylist.txt: 43361) -.horriblesubs.info/playasia -# ||horizonsunlimited.com/alogos/ (easylistchina+easylist.txt: 43360) -.horizonsunlimited.com/alogos/ -# ||hongkongindians.com/advimages/ (easylistchina+easylist.txt: 43359) -.hongkongindians.com/advimages/ -# ||hongfire.com/banner/ (easylistchina+easylist.txt: 43358) -.hongfire.com/banner/ -# ||honda-tech.com/*-140x90.gif (easylistchina+easylist.txt: 43357) -.honda-tech.com/.*-140x90\.gif -# ||homeschoolmath.net/a/ (easylistchina+easylist.txt: 43356) -.homeschoolmath.net/a/ -# ||holyfragger.com/images/skins/ (easylistchina+easylist.txt: 43355) -.holyfragger.com/images/skins/ -# ||holyfamilyradio.org/banners/ (easylistchina+easylist.txt: 43354) -.holyfamilyradio.org/banners/ -# ||hollywoodbackwash.com/glam/ (easylistchina+easylist.txt: 43353) -.hollywoodbackwash.com/glam/ -# ||hockeybuzz.com/mb/b? (easylistchina+easylist.txt: 43352) -.hockeybuzz.com/mb/b\? -# ||hltv.org/images/csLucky.swf (easylistchina+easylist.txt: 43351) -.hltv.org/images/csLucky\.swf -# ||hltv.org//images/csgofastsky.png (easylistchina+easylist.txt: 43350) -# ||hkclubbing.com/images/banners/ (easylistchina+easylist.txt: 43349) -.hkclubbing.com/images/banners/ -# ||hitechlegion.com/images/banners/ (easylistchina+easylist.txt: 43348) -.hitechlegion.com/images/banners/ -# ||hipforums.com/newforums/calendarcolumn.php?cquery=bush (easylistchina+easylist.txt: 43347) -.hipforums.com/newforums/calendarcolumn\.php\?cquery=bush -# ||hipforums.com/images/banners/ (easylistchina+easylist.txt: 43346) -.hipforums.com/images/banners/ -# ||highdefjunkies.com^*/sponsor.jpg (easylistchina+easylist.txt: 43345) -.highdefjunkies.com/.*/sponsor\.jpg -# ||highdefjunkies.com^*/monoprice.jpg (easylistchina+easylist.txt: 43344) -.highdefjunkies.com/.*/monoprice\.jpg -# ||highdefjunkies.com^*/cp.gif (easylistchina+easylist.txt: 43343) -.highdefjunkies.com/.*/cp\.gif -# ||highdefjunkies.com/images/misc/kindlejoin.jpg (easylistchina+easylist.txt: 43342) -.highdefjunkies.com/images/misc/kindlejoin\.jpg -# ||hickoryrecord.com/app/deal/ (easylistchina+easylist.txt: 43341) -.hickoryrecord.com/app/deal/ -# ||herzeleid.com/files/images/banners/ (easylistchina+easylist.txt: 43339) -.herzeleid.com/files/images/banners/ -# ||herold.at^*.swf?*&linktarget=_blank (easylistchina+easylist.txt: 43338) -.herold.at/.*\.swf\?.*&linktarget=_blank -# ||herold.at/images/dealofday.swf (easylistchina+easylist.txt: 43337) -.herold.at/images/dealofday\.swf -# ||herold.at/fs/orgimg/*.swf?baseurl=http%3a%2f%2fwww.*&linktarget=_blank$object (easylistchina+easylist.txt: 43336) -.herold.at/fs/orgimg/.*\.swf\?baseurl=http%3a%2f%2fwww\..*&linktarget=_blank -# ||heraldsun.com.au^*/images/sideskins- (easylistchina+easylist.txt: 43335) -.heraldsun.com.au/.*/images/sideskins- -# ||heraldm.com^*/banner/ (easylistchina+easylist.txt: 43334) -.heraldm.com/.*/banner/ -# ||heraldm.com/iframe/ (easylistchina+easylist.txt: 43333) -.heraldm.com/iframe/ -# ||heraldm.com/hb/imad/ (easylistchina+easylist.txt: 43332) -.heraldm.com/hb/imad/ -# ||hentaistream.com/wp-includes/images/$object (easylistchina+easylist.txt: 43331) -.hentaistream.com/wp-includes/images/ -# ||hentaihaven.org/wp-content/banners/ (easylistchina+easylist.txt: 43330) -.hentaihaven.org/wp-content/banners/ -# ||hentai2read.com/ios/swf/ (easylistchina+easylist.txt: 43329) -.hentai2read.com/ios/swf/ -# ||helsinkitimes.fi^*/banners/ (easylistchina+easylist.txt: 43328) -.helsinkitimes.fi/.*/banners/ -# ||hejban.youwatch.org^ (easylistchina+easylist.txt: 43327) -.hejban.youwatch.org -# ||heatworld.com^*_300x160.jpg (easylistchina+easylist.txt: 43326) -.heatworld.com/.*_300x160\.jpg -# ||heatworld.com/upload/takeovers/ (easylistchina+easylist.txt: 43325) -.heatworld.com/upload/takeovers/ -# ||heatworld.com/images/*_83x76_ (easylistchina+easylist.txt: 43324) -.heatworld.com/images/.*_83x76_ -# ||hearse.com^*/billboards/ (easylistchina+easylist.txt: 43323) -.hearse.com/.*/billboards/ -# ||healthfreedoms.org/assets/swf/320x320_ (easylistchina+easylist.txt: 43322) -.healthfreedoms.org/assets/swf/320x320_ -# ||headlineplanet.com/home/burstbox.html (easylistchina+easylist.txt: 43321) -.headlineplanet.com/home/burstbox\.html -# ||headlineplanet.com/home/box.html (easylistchina+easylist.txt: 43320) -.headlineplanet.com/home/box\.html -# ||hdtvtest.co.uk^*/pricerunner.php (easylistchina+easylist.txt: 43319) -.hdtvtest.co.uk/.*/pricerunner\.php -# ||hdtvtest.co.uk/image/partner/$image (easylistchina+easylist.txt: 43318) -.hdtvtest.co.uk/image/partner/ -# ||hd-bb.org^*/dl4fbanner.gif (easylistchina+easylist.txt: 43317) -.hd-bb.org/.*/dl4fbanner\.gif -# ||hawkesbaytoday.co.nz/nz_regionals/marketplace/ (easylistchina+easylist.txt: 43315) -.hawkesbaytoday.co.nz/nz_regionals/marketplace/ -# ||hawkesbay.co.nz/images/banners/ (easylistchina+easylist.txt: 43314) -.hawkesbay.co.nz/images/banners/ -# ||hawaiireporter.com^*_300x400.jpg (easylistchina+easylist.txt: 43313) -.hawaiireporter.com/.*_300x400\.jpg -# ||hawaiireporter.com^*/winnerscampad.jpg (easylistchina+easylist.txt: 43312) -.hawaiireporter.com/.*/winnerscampad\.jpg -# ||hawaiireporter.com^*/upandruningy.jpg (easylistchina+easylist.txt: 43311) -.hawaiireporter.com/.*/upandruningy\.jpg -# ||hawaiireporter.com^*/js.jpg (easylistchina+easylist.txt: 43310) -.hawaiireporter.com/.*/js\.jpg -# ||hawaiireporter.com^*/463%C3%9757-Kamaaina.jpg (easylistchina+easylist.txt: 43309) -.hawaiireporter.com/.*/463%C3%9757-Kamaaina\.jpg -# ||hawaiireporter.com^*-300x250.jpg (easylistchina+easylist.txt: 43308) -.hawaiireporter.com/.*-300x250\.jpg -# ||hardwareheaven.com/wp-content/*_skin_ (easylistchina+easylist.txt: 43307) -.hardwareheaven.com/wp-content/.*_skin_ -# ||hardwareheaven.com/styles/*/frontpage/backdrop.jpg (easylistchina+easylist.txt: 43306) -.hardwareheaven.com/styles/.*/frontpage/backdrop\.jpg -# ||happierabroad.com/Images/banner (easylistchina+easylist.txt: 43305) -.happierabroad.com/Images/banner -# ||hancinema.net/images/watch-now (easylistchina+easylist.txt: 43304) -.hancinema.net/images/watch-now -# ||hancinema.net/images/banner_ (easylistchina+easylist.txt: 43303) -.hancinema.net/images/banner_ -# ||hahasport.com/ads/ (easylistchina+easylist.txt: 43302) -.hahasport.com/ads/ -# ||hackingchinese.com/media/skritter5.jpg (easylistchina+easylist.txt: 43301) -.hackingchinese.com/media/skritter5\.jpg -# ||hackingchinese.com/media/pleco.png (easylistchina+easylist.txt: 43300) -.hackingchinese.com/media/pleco\.png -# ||hackingchinese.com/media/hellochinese.jpg (easylistchina+easylist.txt: 43299) -.hackingchinese.com/media/hellochinese\.jpg -# ||hackingchinese.com/media/hcw4.png (easylistchina+easylist.txt: 43298) -.hackingchinese.com/media/hcw4\.png -# ||ha.ckers.org/images/sectheory-bot.png (easylistchina+easylist.txt: 43297) -.ha.ckers.org/images/sectheory-bot\.png -# ||ha.ckers.org/images/nto_top.png (easylistchina+easylist.txt: 43296) -.ha.ckers.org/images/nto_top\.png -# ||ha.ckers.org/images/fallingrock-bot.png (easylistchina+easylist.txt: 43295) -.ha.ckers.org/images/fallingrock-bot\.png -# ||h33t.to/images/button_direct.png (easylistchina+easylist.txt: 43294) -.h33t.to/images/button_direct\.png -# ||gwinnettdailypost.com/1.iframe.asp? (easylistchina+easylist.txt: 43293) -.gwinnettdailypost.com/1\.iframe\.asp\? -# ||guru99.com/images/adblocker/ (easylistchina+easylist.txt: 43292) -.guru99.com/images/adblocker/ -# ||gurgle.com/modules/mod_m10banners/ (easylistchina+easylist.txt: 43291) -.gurgle.com/modules/mod_m10banners/ -# ||guns.ru^*/banners/ (easylistchina+easylist.txt: 43290) -.guns.ru/.*/banners/ -# ||guns.ru^*/banner/ (easylistchina+easylist.txt: 43289) -.guns.ru/.*/banner/ -# ||gunfreezone.net^*_ad.jpg (easylistchina+easylist.txt: 43288) -.gunfreezone.net/.*_ad\.jpg -# ||gumtree.com^*/dart_wrapper_ (easylistchina+easylist.txt: 43287) -.gumtree.com/.*/dart_wrapper_ -# ||gulfnews.com^*/channelSponsorImage/ (easylistchina+easylist.txt: 43286) -.gulfnews.com/.*/channelSponsorImage/ -# ||gulf-daily-news.com/180x150.htm (easylistchina+easylist.txt: 43285) -.gulf-daily-news.com/180x150\.htm -# ||guardian.bz/images/banners/ (easylistchina+easylist.txt: 43284) -.guardian.bz/images/banners/ -# ||gtweekly.com/images/banners/ (easylistchina+easylist.txt: 43283) -.gtweekly.com/images/banners/ -# ||gtsplus.net*/pantop.html (easylistchina+easylist.txt: 43282) -.gtsplus.net*./(.*/)?pantop\.html -# ||gtsplus.net*/panbottom.html (easylistchina+easylist.txt: 43281) -.gtsplus.net*./(.*/)?panbottom\.html -# ||gtop100.com/a_images/show-a.php? (easylistchina+easylist.txt: 43280) -.gtop100.com/a_images/show-a\.php\? -# ||gsprating.com/gap/image.php? (easylistchina+easylist.txt: 43279) -.gsprating.com/gap/image\.php\? -# ||greyorgray.com/images/hdtv-genie-gog.jpg (easylistchina+easylist.txt: 43277) -.greyorgray.com/images/hdtv-genie-gog\.jpg -# ||greyorgray.com/images/Fast%20Business%20Loans%20Ad.jpg (easylistchina+easylist.txt: 43276) -.greyorgray.com/images/Fast%20Business%20Loans%20Ad\.jpg -# ||greenoptimistic.com/images/electrician2.png (easylistchina+easylist.txt: 43275) -.greenoptimistic.com/images/electrician2\.png -# ||green.virtual-nights.com^ (easylistchina+easylist.txt: 43274) -.green.virtual-nights.com -# ||greatgirlsgames.com/a/skyscraper.php (easylistchina+easylist.txt: 43273) -.greatgirlsgames.com/a/skyscraper\.php -# ||greatgirlsgames.com/100x100.php (easylistchina+easylist.txt: 43272) -.greatgirlsgames.com/100x100\.php -# ||greaterkashmir.com/adds_ (easylistchina+easylist.txt: 43271) -.greaterkashmir.com/adds_ -# ||greatdeals.co.ke/images/banners/ (easylistchina+easylist.txt: 43270) -.greatdeals.co.ke/images/banners/ -# ||greatandhra.com/images/*_ga_ (easylistchina+easylist.txt: 43269) -.greatandhra.com/images/.*_ga_ -# ||graphic.com.gh/images/banners/ (easylistchina+easylist.txt: 43268) -.graphic.com.gh/images/banners/ -# ||grapevine.is/media/flash/*.swf (easylistchina+easylist.txt: 43267) -.grapevine.is/media/flash/.*\.swf -# ||grammar-monster.com/scripts/$subdocument (easylistchina+easylist.txt: 43266) -.grammar-monster.com/scripts/ -# ||gq.co.za^*/sitetakeover/ (easylistchina+easylist.txt: 43265) -.gq.co.za/.*/sitetakeover/ -# ||gp3series.com^*/Partners/ (easylistchina+easylist.txt: 43264) -.gp3series.com/.*/Partners/ -# ||gowilkes.com/other/ (easylistchina+easylist.txt: 43263) -.gowilkes.com/other/ -# ||gowilkes.com/cj/ (easylistchina+easylist.txt: 43262) -.gowilkes.com/cj/ -# ||gov-auctions.org^*/banner/ (easylistchina+easylist.txt: 43261) -.gov-auctions.org/.*/banner/ -# ||gospel1190.net/rotatorimages/ (easylistchina+easylist.txt: 43259) -.gospel1190.net/rotatorimages/ -# ||gopride.com^*/banners/ (easylistchina+easylist.txt: 43258) -.gopride.com/.*/banners/ -# ||gooster.co.uk/js/ov.js.php (easylistchina+easylist.txt: 43257) -.gooster.co.uk/js/ov\.js\.php -# ||goodgearguide.com.au/files/skins/ (easylistchina+easylist.txt: 43252) -.goodgearguide.com.au/files/skins/ -# ||goodanime.net/images/crazy*.jpg (easylistchina+easylist.txt: 43251) -.goodanime.net/images/crazy.*\.jpg -# ||gonzagamer.com/uci/popover.js (easylistchina+easylist.txt: 43250) -.gonzagamer.com/uci/popover\.js -# ||gomlab.com/img/banner/ (easylistchina+easylist.txt: 43249) -.gomlab.com/img/banner/ -# ||golf365.com^*/site-bg- (easylistchina+easylist.txt: 43248) -.golf365.com/.*/site-bg- -# ||golf365.co.za^*/site-bg- (easylistchina+easylist.txt: 43247) -.golf365.co.za/.*/site-bg- -# ||goldenskate.com/sponsors/ (easylistchina+easylist.txt: 43246) -.goldenskate.com/sponsors/ -# ||gold1013fm.com/promotion/ (easylistchina+easylist.txt: 43245) -.gold1013fm.com/promotion/ -# ||gold1013fm.com/images/background/ (easylistchina+easylist.txt: 43244) -.gold1013fm.com/images/background/ -# ||gold-prices.biz^*_400x300.gif (easylistchina+easylist.txt: 43243) -.gold-prices.biz/.*_400x300\.gif -# ||gold-prices.biz/gold_trading_leader.gif (easylistchina+easylist.txt: 43242) -.gold-prices.biz/gold_trading_leader\.gif -# ||gokunming.com/images/prom/ (easylistchina+easylist.txt: 43241) -.gokunming.com/images/prom/ -# ||godisageek.com/amazon.png (easylistchina+easylist.txt: 43240) -.godisageek.com/amazon\.png -# ||goauto.com.au/mellor/mellor.nsf/toy$subdocument (easylistchina+easylist.txt: 43239) -.goauto.com.au/mellor/mellor\.nsf/toy -# ||goal.com^*/branding/ (easylistchina+easylist.txt: 43238) -.goal.com/.*/branding/ -# ||goal.com^*/betting/$~stylesheet (easylistchina+easylist.txt: 43237) -.goal.com/.*/betting/ -# ||go4up.com/assets/img/download-button.png (easylistchina+easylist.txt: 43236) -.go4up.com/assets/img/download-button\.png -# ||go4up.com/assets/img/d0.png (easylistchina+easylist.txt: 43235) -.go4up.com/assets/img/d0\.png -# ||glocktalk.com/forums/images/banners/ (easylistchina+easylist.txt: 43234) -.glocktalk.com/forums/images/banners/ -# ||globaltimes.cn/desktopmodules/bannerdisplay/ (easylistchina+easylist.txt: 43233) -.globaltimes.cn/desktopmodules/bannerdisplay/ -# ||globalsecurity.org/_inc/frames/ (easylistchina+easylist.txt: 43232) -.globalsecurity.org/_inc/frames/ -# ||gledaisport.com/ads/ (easylistchina+easylist.txt: 43231) -.gledaisport.com/ads/ -# ||glassdoor.com/getAdSlotContentsAjax.htm? (easylistchina+easylist.txt: 43230) -.glassdoor.com/getAdSlotContentsAjax\.htm\? -# ||glamourviews.com/home/zones? (easylistchina+easylist.txt: 43229) -.glamourviews.com/home/zones\? -# ||glam.com^*/affiliate/ (easylistchina+easylist.txt: 43228) -.glam.com/.*/affiliate/ -# ||gizmochina.com^*/landvo-l600-pro-feature.jpg (easylistchina+easylist.txt: 43227) -.gizmochina.com/.*/landvo-l600-pro-feature\.jpg -# ||gizmochina.com^*/kingsing-t8-advert.jpg (easylistchina+easylist.txt: 43226) -.gizmochina.com/.*/kingsing-t8-advert\.jpg -# ||gizmochina.com^*/100002648432985.gif (easylistchina+easylist.txt: 43225) -.gizmochina.com/.*/100002648432985\.gif -# ||gizmochina.com/images/blackview.jpg (easylistchina+easylist.txt: 43224) -.gizmochina.com/images/blackview\.jpg -# ||girlsgames.biz/games/partner*.php (easylistchina+easylist.txt: 43223) -.girlsgames.biz/games/partner.*\.php -# ||girlguides.co.za/images/banners/ (easylistchina+easylist.txt: 43222) -.girlguides.co.za/images/banners/ -# ||gigaom2.files.wordpress.com^*-center-top$image (easylistchina+easylist.txt: 43221) -.gigaom2.files.wordpress.com/.*-center-top -# ||giftguide.savannahnow.com/giftguide/widgets/ (easylistchina+easylist.txt: 43220) -.giftguide.savannahnow.com/giftguide/widgets/ -# ||ghananewsagency.org/assets/banners/ (easylistchina+easylist.txt: 43219) -.ghananewsagency.org/assets/banners/ -# ||ghafla.co.ke/images/bgmax/ (easylistchina+easylist.txt: 43218) -.ghafla.co.ke/images/bgmax/ -# ||ghafla.co.ke/images/banners/ (easylistchina+easylist.txt: 43217) -.ghafla.co.ke/images/banners/ -# ||ghacks.net/skin- (easylistchina+easylist.txt: 43216) -.ghacks.net/skin- -# ||gfx.infomine.com^ (easylistchina+easylist.txt: 43215) -.gfx.infomine.com -# ||gfi.com/blog/wp-content/uploads/*-BlogBanner (easylistchina+easylist.txt: 43214) -.gfi.com/blog/wp-content/uploads/.*-BlogBanner -# ||getthekick.eu^*/banners/ (easylistchina+easylist.txt: 43213) -.getthekick.eu/.*/banners/ -# ||getsurrey.co.uk^*/bg_takeover_ (easylistchina+easylist.txt: 43212) -.getsurrey.co.uk/.*/bg_takeover_ -# ||getrichslowly.org/blog/img/banner/ (easylistchina+easylist.txt: 43211) -.getrichslowly.org/blog/img/banner/ -# ||getreading.co.uk/static/img/bg_takeover_ (easylistchina+easylist.txt: 43209) -.getreading.co.uk/static/img/bg_takeover_ -# ||getprice.com.au/searchwidget.aspx?$subdocument (easylistchina+easylist.txt: 43208) -.getprice.com.au/searchwidget\.aspx\? -# ||getfoxyproxy.org/images/abine/ (easylistchina+easylist.txt: 43207) -.getfoxyproxy.org/images/abine/ -# ||get.thefile.me^ (easylistchina+easylist.txt: 43206) -.get.thefile.me -# ||get-bitcoins-free.eu/img/blackred728smallsize.gif (easylistchina+easylist.txt: 43205) -.get-bitcoins-free.eu/img/blackred728smallsize\.gif -# ||gestetnerupdates.com^*/perfect-auto-collision_banner.gif (easylistchina+easylist.txt: 43204) -.gestetnerupdates.com/.*/perfect-auto-collision_banner\.gif -# ||gestetnerupdates.com^*/Gestetner-Miles.gif (easylistchina+easylist.txt: 43203) -.gestetnerupdates.com/.*/Gestetner-Miles\.gif -# ||gestetnerupdates.com^*/eagle-sewer.gif (easylistchina+easylist.txt: 43202) -.gestetnerupdates.com/.*/eagle-sewer\.gif -# ||gestetnerupdates.com^*/chesed-shel-emes-600x75.gif (easylistchina+easylist.txt: 43201) -.gestetnerupdates.com/.*/chesed-shel-emes-600x75\.gif -# ||geoshopping.nzherald.co.nz^ (easylistchina+easylist.txt: 43200) -.geoshopping.nzherald.co.nz -# ||geometria.tv/banners/ (easylistchina+easylist.txt: 43199) -.geometria.tv/banners/ -# ||geocities.yahoo.*/js/sq. (easylistchina+easylist.txt: 43198) -.geocities.yahoo.*./(.*/)?js/sq\. -# ||geocities.com/js_source/ (easylistchina+easylist.txt: 43197) -.geocities.com/js_source/ -# ||gentoo.org/images/sponsors/ (easylistchina+easylist.txt: 43196) -.gentoo.org/images/sponsors/ -# ||generalfiles.me^*/download_sponsored. (easylistchina+easylist.txt: 43195) -.generalfiles.me/.*/download_sponsored\. -# ||gelbooru.com/protech.php$subdocument (easylistchina+easylist.txt: 43194) -.gelbooru.com/protech\.php -# ||gelbooru.com/poll.php$subdocument (easylistchina+easylist.txt: 43193) -.gelbooru.com/poll\.php -# ||gelbooru.com/lk.php$subdocument (easylistchina+easylist.txt: 43192) -.gelbooru.com/lk\.php -# ||geeklab.info^*/billy.png (easylistchina+easylist.txt: 43191) -.geeklab.info/.*/billy\.png -# ||geckoforums.net/banners/ (easylistchina+easylist.txt: 43190) -.geckoforums.net/banners/ -# ||gcnlive.com/assets/sponsorsPlayer/ (easylistchina+easylist.txt: 43189) -.gcnlive.com/assets/sponsorsPlayer/ -# ||gcnlive.com/assets/sponsors/ (easylistchina+easylist.txt: 43188) -.gcnlive.com/assets/sponsors/ -# ||gbrej.com/c/ (easylistchina+easylist.txt: 43187) -.gbrej.com/c/ -# ||gbatemp.net/images/ab/ (easylistchina+easylist.txt: 43186) -.gbatemp.net/images/ab/ -# ||gaynz.gen.nz/mysa/banners/ (easylistchina+easylist.txt: 43185) -.gaynz.gen.nz/mysa/banners/ -# ||gaynz.com/mysa/banners/ (easylistchina+easylist.txt: 43184) -.gaynz.com/mysa/banners/ -# ||gaydarradio.com/userportal/miva/ (easylistchina+easylist.txt: 43183) -.gaydarradio.com/userportal/miva/ -# ||gawkerassets.com^*/background.jpg (easylistchina+easylist.txt: 43182) -.gawkerassets.com/.*/background\.jpg -# ||gateprep.com/templates/default/images/promo/ (easylistchina+easylist.txt: 43181) -.gateprep.com/templates/default/images/promo/ -# ||gasgoo.com/promo/ (easylistchina+easylist.txt: 43180) -.gasgoo.com/promo/ -# ||garrysmod.org/img/sad/ (easylistchina+easylist.txt: 43179) -.garrysmod.org/img/sad/ -# ||gappon.com/images/hot2.gif (easylistchina+easylist.txt: 43178) -.gappon.com/images/hot2\.gif -# ||ganool.com/wp-content/uploads/*/matrix303.gif (easylistchina+easylist.txt: 43177) -.ganool.com/wp-content/uploads/.*/matrix303\.gif -# ||ganool.com/wp-content/uploads/*/Javtoys300250..gif (easylistchina+easylist.txt: 43176) -.ganool.com/wp-content/uploads/.*/Javtoys300250\.\.gif -# ||ganool.com/pup.js (easylistchina+easylist.txt: 43175) -.ganool.com/pup\.js -# ||gamingsquid.com/wp-content/banners/ (easylistchina+easylist.txt: 43174) -.gamingsquid.com/wp-content/banners/ -# ||gamevid.com/13/ads/ (easylistchina+easylist.txt: 43173) -.gamevid.com/13/ads/ -# ||gametrailers.com^*/webskin_ (easylistchina+easylist.txt: 43172) -.gametrailers.com/.*/webskin_ -# ||gameshark.com^*/pageskin- (easylistchina+easylist.txt: 43171) -.gameshark.com/.*/pageskin- -# ||gamesgames.com/vda/ (easylistchina+easylist.txt: 43170) -.gamesgames.com/vda/ -# ||gamesfreez.com/banner/ (easylistchina+easylist.txt: 43169) -.gamesfreez.com/banner/ -# ||gamesforwork.com^*/dropalink_small.gif (easylistchina+easylist.txt: 43168) -.gamesforwork.com/.*/dropalink_small\.gif -# ||gameserpent.com/vc*.php (easylistchina+easylist.txt: 43167) -.gameserpent.com/vc.*\.php -# ||gameserpent.com/kit*.php (easylistchina+easylist.txt: 43166) -.gameserpent.com/kit.*\.php -# ||gamersbook.com^*/banners/ (easylistchina+easylist.txt: 43165) -.gamersbook.com/.*/banners/ -# ||gamerant.com/ads/ (easylistchina+easylist.txt: 43164) -.gamerant.com/ads/ -# ||gamepressure.com/ajax/f2p.asp (easylistchina+easylist.txt: 43163) -.gamepressure.com/ajax/f2p\.asp -# ||gameplanet.co.nz^*-takeover.jpg (easylistchina+easylist.txt: 43162) -.gameplanet.co.nz/.*-takeover\.jpg -# ||gamemakerblog.com/gma/gatob.php (easylistchina+easylist.txt: 43161) -.gamemakerblog.com/gma/gatob\.php -# ||gameknot.com/amaster.pl?j= (easylistchina+easylist.txt: 43160) -.gameknot.com/amaster\.pl\?j= -# ||gamecopyworld.eu*/! (easylistchina+easylist.txt: 43159) -.gamecopyworld.eu*./(.*/)?! -# ||gamecopyworld.com^*/vg_160x120_ (easylistchina+easylist.txt: 43158) -.gamecopyworld.com/.*/vg_160x120_ -# ||gamecopyworld.com/games/js/abd.js (easylistchina+easylist.txt: 43157) -.gamecopyworld.com/games/js/abd\.js -# ||gamecopyworld.com/games/i/if6.gif (easylistchina+easylist.txt: 43156) -.gamecopyworld.com/games/i/if6\.gif -# ||gamecopyworld.com*/! (easylistchina+easylist.txt: 43155) -.gamecopyworld.com*./(.*/)?! -# ||gameads.digyourowngrave.com^ (easylistchina+easylist.txt: 43154) -.gameads.digyourowngrave.com -# ||game1games.com/exchange/ (easylistchina+easylist.txt: 43153) -.game1games.com/exchange/ -# ||gamblinginsider.com^*/partner_events.php (easylistchina+easylist.txt: 43152) -.gamblinginsider.com/.*/partner_events\.php -# ||gallerysense.se/site/getBannerCode (easylistchina+easylist.txt: 43151) -.gallerysense.se/site/getBannerCode -# ||gallerynova.se^*/jquery.bpopup.min.js (easylistchina+easylist.txt: 43150) -.gallerynova.se/.*/jquery\.bpopup\.min\.js -# ||galatta.com^*/banners/ (easylistchina+easylist.txt: 43149) -.galatta.com/.*/banners/ -# ||galatta.com^*/bannerimages/ (easylistchina+easylist.txt: 43148) -.galatta.com/.*/bannerimages/ -# ||gaeatimes.com/ctad/ (easylistchina+easylist.txt: 43147) -.gaeatimes.com/ctad/ -# ||gadgetshowlive.net^*/banners/ (easylistchina+easylist.txt: 43146) -.gadgetshowlive.net/.*/banners/ -# ||gadgetmac.com^*/sponsors/ (easylistchina+easylist.txt: 43145) -.gadgetmac.com/.*/sponsors/ -# ||gadget.co.za/siteimages/banners/ (easylistchina+easylist.txt: 43144) -.gadget.co.za/siteimages/banners/ -# ||gaccwest.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43143) -.gaccwest.com/uploads/tx_bannermanagement/ -# ||gaccsouth.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43142) -.gaccsouth.com/uploads/tx_bannermanagement/ -# ||gaccny.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43141) -.gaccny.com/uploads/tx_bannermanagement/ -# ||gaccmidwest.org/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43140) -.gaccmidwest.org/uploads/tx_bannermanagement/ -# ||gabzfm.com/images/banners/ (easylistchina+easylist.txt: 43139) -.gabzfm.com/images/banners/ -# ||g.brothersoft.com^ (easylistchina+easylist.txt: 43138) -.g.brothersoft.com -# ||f谋rstrowsports.eu/pu/ (easylistchina+easylist.txt: 43137) -.f谋rstrowsports.eu/pu/ -# ||futbol24.com/f24/rek/$~xmlhttprequest (easylistchina+easylist.txt: 43135) -.futbol24.com/f24/rek/ -# ||fuse.tv/images/sponsor/ (easylistchina+easylist.txt: 43134) -.fuse.tv/images/sponsor/ -# ||funpic.org/layer.php? (easylistchina+easylist.txt: 43133) -.funpic.org/layer\.php\? -# ||funpic.de/layer.php? (easylistchina+easylist.txt: 43132) -.funpic.de/layer\.php\? -# ||fulltv.tv/pub_ (easylistchina+easylist.txt: 43131) -.fulltv.tv/pub_ -# ||fullrip.net/images/download- (easylistchina+easylist.txt: 43130) -.fullrip.net/images/download- -# ||fulhamfc.com/i/partner/ (easylistchina+easylist.txt: 43129) -.fulhamfc.com/i/partner/ -# ||fugitive.com^*-468x60web. (easylistchina+easylist.txt: 43128) -.fugitive.com/.*-468x60web\. -# ||fudzilla.com^*/banners/ (easylistchina+easylist.txt: 43127) -.fudzilla.com/.*/banners/ -# ||ftlauderdalewebcam.com^*-WebCamBannerFall_ (easylistchina+easylist.txt: 43126) -.ftlauderdalewebcam.com/.*-WebCamBannerFall_ -# ||ftlauderdalewebcam.com/images/*webcambanner (easylistchina+easylist.txt: 43125) -.ftlauderdalewebcam.com/images/.*webcambanner -# ||ftdworld.net/images/banners/ (easylistchina+easylist.txt: 43124) -.ftdworld.net/images/banners/ -# ||fscheetahs.co.za/images/Sponsers/ (easylistchina+easylist.txt: 43123) -.fscheetahs.co.za/images/Sponsers/ -# ||frozen-roms.me/popup.php (easylistchina+easylist.txt: 43122) -.frozen-roms.me/popup\.php -# ||frozen-roms.in/popup.php (easylistchina+easylist.txt: 43121) -.frozen-roms.in/popup\.php -# ||frombar.com/ads/ (easylistchina+easylist.txt: 43120) -.frombar.com/ads/ -# ||friday-ad.co.uk/endeca/afccontainer.aspx (easylistchina+easylist.txt: 43119) -.friday-ad.co.uk/endeca/afccontainer\.aspx -# ||friday-ad.co.uk/banner.js? (easylistchina+easylist.txt: 43118) -.friday-ad.co.uk/banner\.js\? -# ||freshremix.ru/images/ffdownloader1.jpg (easylistchina+easylist.txt: 43117) -.freshremix.ru/images/ffdownloader1\.jpg -# ||freshremix.org/templates/freshremix_eng/images/300.gif (easylistchina+easylist.txt: 43116) -.freshremix.org/templates/freshremix_eng/images/300\.gif -# ||freshplaza.com/b/ (easylistchina+easylist.txt: 43115) -.freshplaza.com/b/ -# ||fresh-weather.com/popup1.gif (easylistchina+easylist.txt: 43114) -.fresh-weather.com/popup1\.gif -# ||frenchradiolondon.com/data/carousel/ (easylistchina+easylist.txt: 43113) -.frenchradiolondon.com/data/carousel/ -# ||freeworldgroup.com/banner (easylistchina+easylist.txt: 43112) -.freeworldgroup.com/banner -# ||freevermontradio.org/pictures/lauren_Stagnitti.jpg (easylistchina+easylist.txt: 43111) -.freevermontradio.org/pictures/lauren_Stagnitti\.jpg -# ||freetypinggame.net/burst720.asp (easylistchina+easylist.txt: 43110) -.freetypinggame.net/burst720\.asp -# ||freetv-video.ca^*/popover-load-js.php? (easylistchina+easylist.txt: 43109) -.freetv-video.ca/.*/popover-load-js\.php\? -# ||freestockcharts.com/symbolhit.aspx$subdocument (easylistchina+easylist.txt: 43108) -.freestockcharts.com/symbolhit\.aspx -# ||freesoftwaremagazine.com/extras/ (easylistchina+easylist.txt: 43107) -.freesoftwaremagazine.com/extras/ -# ||freeroms.com/skyscraper_ (easylistchina+easylist.txt: 43106) -.freeroms.com/skyscraper_ -# ||freeroms.com/bigbox_ (easylistchina+easylist.txt: 43105) -.freeroms.com/bigbox_ -# ||freeroms.com/bigbox.html (easylistchina+easylist.txt: 43104) -.freeroms.com/bigbox\.html -# ||freepornsubmits.com/ads/ (easylistchina+easylist.txt: 43103) -.freepornsubmits.com/ads/ -# ||freenode.net/images/freenode_osuosl.png (easylistchina+easylist.txt: 43102) -.freenode.net/images/freenode_osuosl\.png -# ||freenode.net/images/ack_privateinternetaccess-freenode.png (easylistchina+easylist.txt: 43101) -.freenode.net/images/ack_privateinternetaccess-freenode\.png -# ||freeminecraft.me/mw3.png (easylistchina+easylist.txt: 43100) -.freeminecraft.me/mw3\.png -# ||freemediatv.com/images/inmemoryofmichael.jpg (easylistchina+easylist.txt: 43099) -.freemediatv.com/images/inmemoryofmichael\.jpg -# ||freeappaday.com/nimgs/bb/ (easylistchina+easylist.txt: 43098) -.freeappaday.com/nimgs/bb/ -# ||freeads.co.uk/ctx.php? (easylistchina+easylist.txt: 43097) -.freeads.co.uk/ctx\.php\? -# ||free-webhosts.com/images/a/ (easylistchina+easylist.txt: 43096) -.free-webhosts.com/images/a/ -# ||free-tv-video-online.me/season-side- (easylistchina+easylist.txt: 43095) -.free-tv-video-online.me/season-side- -# ||free-tv-video-online.me/episode-buttom- (easylistchina+easylist.txt: 43094) -.free-tv-video-online.me/episode-buttom- -# ||free-tv-video-online.me/300s.html (easylistchina+easylist.txt: 43093) -.free-tv-video-online.me/300s\.html -# ||free-torrents.org^*/banners/ (easylistchina+easylist.txt: 43092) -.free-torrents.org/.*/banners/ -# ||free-times.com/image/pool/ (easylistchina+easylist.txt: 43091) -.free-times.com/image/pool/ -# ||fredmiranda.com/buzz/canondble-600x90.jpg (easylistchina+easylist.txt: 43090) -.fredmiranda.com/buzz/canondble-600x90\.jpg -# ||freakshare.com/yild.js (easylistchina+easylist.txt: 43089) -.freakshare.com/yild\.js -# ||fpscheats.com/fpsbanner.jpg (easylistchina+easylist.txt: 43088) -.fpscheats.com/fpsbanner\.jpg -# ||fpscheats.com/banner-img.jpg (easylistchina+easylist.txt: 43087) -.fpscheats.com/banner-img\.jpg -# ||foxsportsradio.com/pages/second300x250iframe.html (easylistchina+easylist.txt: 43086) -.foxsportsradio.com/pages/second300x250iframe\.html -# ||foxsports540.com/images/banner2.png (easylistchina+easylist.txt: 43085) -.foxsports540.com/images/banner2\.png -# ||foxsports540.com/images/banner1.png (easylistchina+easylist.txt: 43084) -.foxsports540.com/images/banner1\.png -# ||foxsports.com^*_skin_ (easylistchina+easylist.txt: 43083) -.foxsports.com/.*_skin_ -# ||foxsports.com^*/Sponsors/ (easylistchina+easylist.txt: 43082) -.foxsports.com/.*/Sponsors/ -# ||foxsports.com^*-skin_ (easylistchina+easylist.txt: 43081) -.foxsports.com/.*-skin_ -# ||foxsports.com^*-Skin- (easylistchina+easylist.txt: 43080) -.foxsports.com/.*-Skin- -# ||foxsports.com/component/xml/SBMarketingTakeOverPromos (easylistchina+easylist.txt: 43079) -.foxsports.com/component/xml/SBMarketingTakeOverPromos -# ||foxsports.com/component/*_wallpaper_$image (easylistchina+easylist.txt: 43078) -.foxsports.com/component/.*_wallpaper_ -# ||foxsports.com.au^*/sponsor/ (easylistchina+easylist.txt: 43077) -.foxsports.com.au/.*/sponsor/ -# ||foxsoccer2go.com/namedImage/*/backgroundSkin.jpg (easylistchina+easylist.txt: 43076) -.foxsoccer2go.com/namedImage/.*/backgroundSkin\.jpg -# ||foxbusiness.com/html/google_homepage_promo (easylistchina+easylist.txt: 43075) -.foxbusiness.com/html/google_homepage_promo -# ||forward.com/workspace/assets/newimages/amazon.png (easylistchina+easylist.txt: 43074) -.forward.com/workspace/assets/newimages/amazon\.png -# ||forumw.org/images/uploading.gif (easylistchina+easylist.txt: 43073) -.forumw.org/images/uploading\.gif -# ||forumimg.ipmart.com/swf/ipmart_forum/banner (easylistchina+easylist.txt: 43072) -.forumimg.ipmart.com/swf/ipmart_forum/banner -# ||forexpeacearmy.com/images/banners/ (easylistchina+easylist.txt: 43071) -.forexpeacearmy.com/images/banners/ -# ||foreignersinuk.co.uk^*/banner/ (easylistchina+easylist.txt: 43070) -.foreignersinuk.co.uk/.*/banner/ -# ||fordforums.com.au/logos/ (easylistchina+easylist.txt: 43069) -.fordforums.com.au/logos/ -# ||footballtradedirectory.com^*banner (easylistchina+easylist.txt: 43068) -.footballtradedirectory.com/.*banner -# ||footballshirtculture.com/images/e12b.jpg (easylistchina+easylist.txt: 43067) -.footballshirtculture.com/images/e12b\.jpg -# ||football-italia.net/imgs/moveyourmouse.gif (easylistchina+easylist.txt: 43066) -.football-italia.net/imgs/moveyourmouse\.gif -# ||foodingredientsfirst.com/content/flash_loaders/loadskyscraper.swf (easylistchina+easylist.txt: 43065) -.foodingredientsfirst.com/content/flash_loaders/loadskyscraper\.swf -# ||foodingredientsfirst.com/content/flash_loaders/loadlargetile.swf (easylistchina+easylist.txt: 43064) -.foodingredientsfirst.com/content/flash_loaders/loadlargetile\.swf -# ||foodingredientsfirst.com/content/banners/ (easylistchina+easylist.txt: 43063) -.foodingredientsfirst.com/content/banners/ -# ||fncstatic.com^*/sponsored-by.gif (easylistchina+easylist.txt: 43062) -.fncstatic.com/.*/sponsored-by\.gif -# ||fmr.co.za^*/banners/ (easylistchina+easylist.txt: 43061) -.fmr.co.za/.*/banners/ -# ||flyordie.com/games/online/ca.html (easylistchina+easylist.txt: 43060) -.flyordie.com/games/online/ca\.html -# ||flyordie.com/games/free/b/ (easylistchina+easylist.txt: 43059) -.flyordie.com/games/free/b/ -# ||flvto.biz/scripts/banners.php? (easylistchina+easylist.txt: 43058) -.flvto.biz/scripts/banners\.php\? -# ||flopturnriver.com*/banners/ (easylistchina+easylist.txt: 43056) -.flopturnriver.com*./(.*/)?banners/ -# ||flightradar24.com/_includes/sections/airportAd.php (easylistchina+easylist.txt: 43055) -.flightradar24.com/_includes/sections/airportAd\.php -# ||flicks.co.nz/takeovercss/ (easylistchina+easylist.txt: 43054) -.flicks.co.nz/takeovercss/ -# ||flicks.co.nz/images/takeovers/ (easylistchina+easylist.txt: 43053) -.flicks.co.nz/images/takeovers/ -# ||fleetwatch.co.za/images/banners/ (easylistchina+easylist.txt: 43052) -.fleetwatch.co.za/images/banners/ -# ||flatpanelshd.com/pictures/*banner (easylistchina+easylist.txt: 43051) -.flatpanelshd.com/pictures/.*banner -# ||flashy8.com/banner/ (easylistchina+easylist.txt: 43050) -.flashy8.com/banner/ -# ||flashx.tv^*/counterck.html (easylistchina+easylist.txt: 43049) -.flashx.tv/.*/counterck\.html -# ||flashx.tv/nuevo/player/js/anya.js (easylistchina+easylist.txt: 43048) -.flashx.tv/nuevo/player/js/anya\.js -# ||flashx.tv/img/download_ (easylistchina+easylist.txt: 43047) -.flashx.tv/img/download_ -# ||flashtv.co/class/adjsxxs.js (easylistchina+easylist.txt: 43046) -.flashtv.co/class/adjsxxs\.js -# ||flashtv.co/adds/ (easylistchina+easylist.txt: 43045) -.flashtv.co/adds/ -# ||flashscore.com/res/image/bookmaker-list.png (easylistchina+easylist.txt: 43044) -.flashscore.com/res/image/bookmaker-list\.png -# ||flameload.com/onvertise. (easylistchina+easylist.txt: 43043) -.flameload.com/onvertise\. -# ||fiverr.com/javascripts/conversion.js (easylistchina+easylist.txt: 43042) -.fiverr.com/javascripts/conversion\.js -# ||fishchannel.com/images/sponsors/ (easylistchina+easylist.txt: 43041) -.fishchannel.com/images/sponsors/ -# ||firsttoknow.com^*/page-criteo- (easylistchina+easylist.txt: 43040) -.firsttoknow.com/.*/page-criteo- -# ||firstrowusa.eu/js/pu.js (easylistchina+easylist.txt: 43039) -.firstrowusa.eu/js/pu\.js -# ||firstrowusa.eu/js/bn.js (easylistchina+easylist.txt: 43038) -.firstrowusa.eu/js/bn\.js -# ||firstrowsports.li/frame/ (easylistchina+easylist.txt: 43037) -.firstrowsports.li/frame/ -# ||firstrows.biz/js/pu.js (easylistchina+easylist.txt: 43036) -.firstrows.biz/js/pu\.js -# ||firstrows.biz/js/bn.js (easylistchina+easylist.txt: 43035) -.firstrows.biz/js/bn\.js -# ||firstpost.in^*/promo/ (easylistchina+easylist.txt: 43034) -.firstpost.in/.*/promo/ -# ||firstpost.com^*_sponsored. (easylistchina+easylist.txt: 43033) -.firstpost.com/.*_sponsored\. -# ||firstpost.com^*_skin_ (easylistchina+easylist.txt: 43032) -.firstpost.com/.*_skin_ -# ||firstpost.com^*/sponsered- (easylistchina+easylist.txt: 43031) -.firstpost.com/.*/sponsered- -# ||firstpost.com/promo/ (easylistchina+easylist.txt: 43030) -.firstpost.com/promo/ -# ||firstnationsvoice.com/images/weblinks.swf (easylistchina+easylist.txt: 43029) -.firstnationsvoice.com/images/weblinks\.swf -# ||firingsquad.com^*/sponsor_row.gif (easylistchina+easylist.txt: 43028) -.firingsquad.com/.*/sponsor_row\.gif -# ||firedrive.com/appresources/ (easylistchina+easylist.txt: 43027) -.firedrive.com/appresources/ -# ||firedrive.com/appdata/ (easylistchina+easylist.txt: 43026) -.firedrive.com/appdata/ -# ||finextra.com^*/pantiles/ (easylistchina+easylist.txt: 43025) -.finextra.com/.*/pantiles/ -# ||finextra.com^*/leaderboards/ (easylistchina+easylist.txt: 43024) -.finextra.com/.*/leaderboards/ -# ||findthebest-sw.com/sponsor_event? (easylistchina+easylist.txt: 43023) -.findthebest-sw.com/sponsor_event\? -# ||findnsave.idahostatesman.com^ (easylistchina+easylist.txt: 43022) -.findnsave.idahostatesman.com -# ||findit.com.mt/viewer/ (easylistchina+easylist.txt: 43021) -.findit.com.mt/viewer/ -# ||findit.com.mt/dynimage/boxbanner/ (easylistchina+easylist.txt: 43020) -.findit.com.mt/dynimage/boxbanner/ -# ||findicons.com^*/125x125/ (easylistchina+easylist.txt: 43019) -.findicons.com/.*/125x125/ -# ||findfreegraphics.com/underp.js (easylistchina+easylist.txt: 43018) -.findfreegraphics.com/underp\.js -# ||findfiles.com/images/knife-dancing-1.gif (easylistchina+easylist.txt: 43017) -.findfiles.com/images/knife-dancing-1\.gif -# ||findfiles.com/images/icatchallfree.png (easylistchina+easylist.txt: 43016) -.findfiles.com/images/icatchallfree\.png -# ||financialsamurai.com/wp-content/uploads/*/sliced-alternative-10000.jpg (easylistchina+easylist.txt: 43015) -.financialsamurai.com/wp-content/uploads/.*/sliced-alternative-10000\.jpg -# ||financialnewsandtalk.com/scripts/slideshow-sponsors.js (easylistchina+easylist.txt: 43014) -.financialnewsandtalk.com/scripts/slideshow-sponsors\.js -# ||fimserve.ign.com^ (easylistchina+easylist.txt: 43013) -.fimserve.ign.com -# ||filmsite.org/dart-zones.js (easylistchina+easylist.txt: 43012) -.filmsite.org/dart-zones\.js -# ||filmovizija.com/Images/photo4sell.jpg (easylistchina+easylist.txt: 43011) -.filmovizija.com/Images/photo4sell\.jpg -# ||filmovizija.com/Images/ludovanjeaffilate.jpg (easylistchina+easylist.txt: 43010) -.filmovizija.com/Images/ludovanjeaffilate\.jpg -# ||filmey.com/Filmey.Ad.js (easylistchina+easylist.txt: 43009) -.filmey.com/Filmey\.Ad\.js -# ||filipinojournal.com/images/banners/ (easylistchina+easylist.txt: 43008) -.filipinojournal.com/images/banners/ -# ||filestream.me/requirements/images/ed.gif (easylistchina+easylist.txt: 43007) -.filestream.me/requirements/images/ed\.gif -# ||filestream.me/requirements/images/cialis_generic.gif (easylistchina+easylist.txt: 43006) -.filestream.me/requirements/images/cialis_generic\.gif -# ||filespazz.com^*/copyartwork_side_banner.gif (easylistchina+easylist.txt: 43005) -.filespazz.com/.*/copyartwork_side_banner\.gif -# ||filespazz.com/imx/template_r2_c3.jpg (easylistchina+easylist.txt: 43004) -.filespazz.com/imx/template_r2_c3\.jpg -# ||filespart.com/ot/fast.aspx? (easylistchina+easylist.txt: 43003) -.filespart.com/ot/fast\.aspx\? -# ||fileshut.com/etc/links.php?q= (easylistchina+easylist.txt: 43002) -.fileshut.com/etc/links\.php\?q= -# ||filesharingtalk.com/fst/8242/ (easylistchina+easylist.txt: 43001) -.filesharingtalk.com/fst/8242/ -# ||files.wordpress.com/*-reskin. (easylistchina+easylist.txt: 43000) -.files.wordpress.com/.*-reskin\. -# ||filerio.in^*/jquery.interstitial. (easylistchina+easylist.txt: 42999) -.filerio.in/.*/jquery\.interstitial\. -# ||fileplanet.com/fileblog/sub-no-ad.shtml (easylistchina+easylist.txt: 42998) -.fileplanet.com/fileblog/sub-no-ad\.shtml -# ||fileom.com/img/instadownload2.png (easylistchina+easylist.txt: 42997) -.fileom.com/img/instadownload2\.png -# ||fileom.com/img/downloadnow.png (easylistchina+easylist.txt: 42996) -.fileom.com/img/downloadnow\.png -# ||filegaga.com/ot/fast.php? (easylistchina+easylist.txt: 42995) -.filegaga.com/ot/fast\.php\? -# ||fileflyer.com/img/dap_banner_ (easylistchina+easylist.txt: 42994) -.fileflyer.com/img/dap_banner_ -# ||filedino.com/imagesn/downloadgif.gif (easylistchina+easylist.txt: 42993) -.filedino.com/imagesn/downloadgif\.gif -# ||file2hd.com/sweet.jpg (easylistchina+easylist.txt: 42992) -.file2hd.com/sweet\.jpg -# ||file.org^*/images/promo/ (easylistchina+easylist.txt: 42991) -.file.org/.*/images/promo/ -# ||file.org/fo/scripts/download_helpopt.js (easylistchina+easylist.txt: 42990) -.file.org/fo/scripts/download_helpopt\.js -# ||fijitimes.com/images/bspxchange.gif (easylistchina+easylist.txt: 42989) -.fijitimes.com/images/bspxchange\.gif -# ||fightersonlymag.com/images/banners/ (easylistchina+easylist.txt: 42988) -.fightersonlymag.com/images/banners/ -# ||fiberupload.org/300en.png (easylistchina+easylist.txt: 42987) -.fiberupload.org/300en\.png -# ||fiba.com/Content/Sponsors/ (easylistchina+easylist.txt: 42986) -.fiba.com/Content/Sponsors/ -# ||fhm.com^*_banner.png (easylistchina+easylist.txt: 42985) -.fhm.com/.*_banner\.png -# ||fhm.com^*_background.jpg (easylistchina+easylist.txt: 42984) -.fhm.com/.*_background\.jpg -# ||fhm.com/images/sportsbutton.gif (easylistchina+easylist.txt: 42983) -.fhm.com/images/sportsbutton\.gif -# ||fhm.com/images/casinobutton.gif (easylistchina+easylist.txt: 42982) -.fhm.com/images/casinobutton\.gif -# ||fgfx.co.uk/banner.js? (easylistchina+easylist.txt: 42981) -.fgfx.co.uk/banner\.js\? -# ||ffiles.com/counters.js (easylistchina+easylist.txt: 42980) -.ffiles.com/counters\.js -# ||fever.fm^*/sposor- (easylistchina+easylist.txt: 42979) -.fever.fm/.*/sposor- -# ||fever.fm^*/campaigns/ (easylistchina+easylist.txt: 42978) -.fever.fm/.*/campaigns/ -# ||feiwei.tv^*/sandbox.html (easylistchina+easylist.txt: 42977) -.feiwei.tv/.*/sandbox\.html -# ||feedsportal.com/videoserve/ (easylistchina+easylist.txt: 42976) -.feedsportal.com/videoserve/ -# ||feedsportal.com/creative/ (easylistchina+easylist.txt: 42975) -.feedsportal.com/creative/ -# ||feeds.feedburner.com/*.gif (easylistchina+easylist.txt: 42974) -.feeds.feedburner.com/.*\.gif -# ||feedly.com/amazon.$xmlhttprequest (easylistchina+easylist.txt: 42973) -.feedly.com/amazon\. -# ||feed-the-beast.com^*/gamevox.png (easylistchina+easylist.txt: 42972) -.feed-the-beast.com/.*/gamevox\.png -# ||fastvideo.eu/images/pl_box_rapid.jpg (easylistchina+easylist.txt: 42970) -.fastvideo.eu/images/pl_box_rapid\.jpg -# ||fastvideo.eu/images/down.png (easylistchina+easylist.txt: 42969) -.fastvideo.eu/images/down\.png -# ||fastpic.ru/dox (easylistchina+easylist.txt: 42968) -.fastpic.ru/dox -# ||fastcompany.com/sites/*/interstitial.js (easylistchina+easylist.txt: 42967) -.fastcompany.com/sites/.*/interstitial\.js -# ||farmville.com/promo_bar.php (easylistchina+easylist.txt: 42966) -.farmville.com/promo_bar\.php -# ||fark.com/cgi/buzzfeed_link.pl (easylistchina+easylist.txt: 42965) -.fark.com/cgi/buzzfeed_link\.pl -# ||fansshare.com/va/?$subdocument (easylistchina+easylist.txt: 42964) -.fansshare.com/va/\? -# ||fanfusion.org/as.js (easylistchina+easylist.txt: 42963) -.fanfusion.org/as\.js -# ||fancystreems.com/300x2503.php (easylistchina+easylist.txt: 42962) -.fancystreems.com/300x2503\.php -# ||fan.twitch.tv^ (easylistchina+easylist.txt: 42961) -.fan.twitch.tv -# ||famouspornstarstube.com/images/sponsors/ (easylistchina+easylist.txt: 42960) -.famouspornstarstube.com/images/sponsors/ -# ||familylawweek.co.uk/bin_1/ (easylistchina+easylist.txt: 42959) -.familylawweek.co.uk/bin_1/ -# ||fallout3nexus.com^*/300x600.php (easylistchina+easylist.txt: 42958) -.fallout3nexus.com/.*/300x600\.php -# ||fakku.net/static/seele-$subdocument (easylistchina+easylist.txt: 42957) -.fakku.net/static/seele- -# ||facenfacts.com^*/ads/ (easylistchina+easylist.txt: 42956) -.facenfacts.com/.*/ads/ -# ||faadooengineers.com/ads/ (easylistchina+easylist.txt: 42955) -.faadooengineers.com/ads/ -# ||f1today.net^*/sponsors/ (easylistchina+easylist.txt: 42954) -.f1today.net/.*/sponsors/ -# ||eztv.ag/js/openback*.js (easylistchina+easylist.txt: 42953) -.eztv.ag/js/openback.*\.js -# ||ezmoviestv.com^*/ad-for-ezmovies.png (easylistchina+easylist.txt: 42952) -.ezmoviestv.com/.*/ad-for-ezmovies\.png -# ||extremeoverclocking.com/template_images/it120x240.gif (easylistchina+easylist.txt: 42951) -.extremeoverclocking.com/template_images/it120x240\.gif -# ||extratorrent.cc/tz (easylistchina+easylist.txt: 42950) -.extratorrent.cc/tz -# ||extratorrent.cc/scripts/pp_ (easylistchina+easylist.txt: 42949) -.extratorrent.cc/scripts/pp_ -# ||extratorrent.cc/scripts/bo1o.js (easylistchina+easylist.txt: 42948) -.extratorrent.cc/scripts/bo1o\.js -# ||extratorrent.cc/images/wintoolspro.gif (easylistchina+easylist.txt: 42947) -.extratorrent.cc/images/wintoolspro\.gif -# ||expreview.com/exp2/ (easylistchina+easylist.txt: 42946) -.expreview.com/exp2/ -# ||expressmilwaukee.com/engines/backgrounds/js/backgrounds.js (easylistchina+easylist.txt: 42945) -.expressmilwaukee.com/engines/backgrounds/js/backgrounds\.js -# ||express.co.uk^*/sponsored/ (easylistchina+easylist.txt: 42944) -.express.co.uk/.*/sponsored/ -# ||expertreviews.co.uk^*/skins/ (easylistchina+easylist.txt: 42943) -.expertreviews.co.uk/.*/skins/ -# ||expertreviews.co.uk/?act=widgets. (easylistchina+easylist.txt: 42942) -.expertreviews.co.uk/\?act=widgets\. -# ||expatwomen.com/expat-women-sponsors/ (easylistchina+easylist.txt: 42941) -.expatwomen.com/expat-women-sponsors/ -# ||expatexchange.com/banner/ (easylistchina+easylist.txt: 42940) -.expatexchange.com/banner/ -# ||excite.com/gca_iframe.html (easylistchina+easylist.txt: 42939) -.excite.com/gca_iframe\.html -# ||exchangerates.org.uk/images/200x200_ (easylistchina+easylist.txt: 42938) -.exchangerates.org.uk/images/200x200_ -# ||exchangerates.org.uk/images/150_60_ (easylistchina+easylist.txt: 42937) -.exchangerates.org.uk/images/150_60_ -# ||exchangerates.org.uk/images-NEW/tor.gif (easylistchina+easylist.txt: 42936) -.exchangerates.org.uk/images-NEW/tor\.gif -# ||exceluser.com^*/pub/rotate_ (easylistchina+easylist.txt: 42935) -.exceluser.com/.*/pub/rotate_ -# ||exashare.com^*?*cbrandom=$script (easylistchina+easylist.txt: 42934) -.exashare.com/.*\?.*cbrandom= -# ||exashare.com/vod_stream.html (easylistchina+easylist.txt: 42933) -.exashare.com/vod_stream\.html -# ||exashare.com/playerexa.jpg (easylistchina+easylist.txt: 42932) -.exashare.com/playerexa\.jpg -# ||exashare.com/player_file.jpg (easylistchina+easylist.txt: 42931) -.exashare.com/player_file\.jpg -# ||exashare.com/player_begin.jpg (easylistchina+easylist.txt: 42930) -.exashare.com/player_begin\.jpg -# ||exashare.com/hq_stream.html (easylistchina+easylist.txt: 42929) -.exashare.com/hq_stream\.html -# ||ex1.gamecopyworld.com^$subdocument (easylistchina+easylist.txt: 42928) -.ex1.gamecopyworld.com -# ||ewrc-results.com/images/horni_ewrc_result_banner3.jpg (easylistchina+easylist.txt: 42927) -.ewrc-results.com/images/horni_ewrc_result_banner3\.jpg -# ||eweek.com^*/sponsored- (easylistchina+easylist.txt: 42926) -.eweek.com/.*/sponsored- -# ||eweek.com/widgets/ibmtco/ (easylistchina+easylist.txt: 42925) -.eweek.com/widgets/ibmtco/ -# ||eweek.com/images/stories/marketing/ (easylistchina+easylist.txt: 42924) -.eweek.com/images/stories/marketing/ -# ||evony.com/sevonyadvs2. (easylistchina+easylist.txt: 42923) -.evony.com/sevonyadvs2\. -# ||evolutionm.net/SponsorLogos/ (easylistchina+easylist.txt: 42922) -.evolutionm.net/SponsorLogos/ -# ||everythingsysadmin.com^*_sw_banner120x600_ (easylistchina+easylist.txt: 42921) -.everythingsysadmin.com/.*_sw_banner120x600_ -# ||evernote.com/prom/img/ (easylistchina+easylist.txt: 42920) -.evernote.com/prom/img/ -# ||eventful.com/tools/click/url? (easylistchina+easylist.txt: 42919) -.eventful.com/tools/click/url\? -# ||eve-search.com/gge.gif (easylistchina+easylist.txt: 42918) -.eve-search.com/gge\.gif -# ||eva.ucas.com^ (easylistchina+easylist.txt: 42917) -.eva.ucas.com -# ||euroweb.com^*/banner/ (easylistchina+easylist.txt: 42916) -.euroweb.com/.*/banner/ -# ||europeonline-magazine.eu/nuroa/ (easylistchina+easylist.txt: 42915) -.europeonline-magazine.eu/nuroa/ -# ||europeonline-magazine.eu/banner/ (easylistchina+easylist.txt: 42914) -.europeonline-magazine.eu/banner/ -# ||european-rubber-journal.com/160x600px_ (easylistchina+easylist.txt: 42913) -.european-rubber-journal.com/160x600px_ -# ||euronews.com/media/farnborough/farnborough_wp.jpg (easylistchina+easylist.txt: 42912) -.euronews.com/media/farnborough/farnborough_wp\.jpg -# ||euroleague.net^*/sponsors- (easylistchina+easylist.txt: 42911) -.euroleague.net/.*/sponsors- -# ||eurogamer.net^*/takeovers/ (easylistchina+easylist.txt: 42910) -.eurogamer.net/.*/takeovers/ -# ||eurogamer.net/quad.php (easylistchina+easylist.txt: 42909) -.eurogamer.net/quad\.php -# ||eurodict.com/images/banner_ (easylistchina+easylist.txt: 42908) -.eurodict.com/images/banner_ -# ||eurocupbasketball.com^*/sponsors- (easylistchina+easylist.txt: 42907) -.eurocupbasketball.com/.*/sponsors- -# ||eurochannel.com/images/banners/ (easylistchina+easylist.txt: 42906) -.eurochannel.com/images/banners/ -# ||euphonik.dj/img/sponsors- (easylistchina+easylist.txt: 42905) -.euphonik.dj/img/sponsors- -# ||etidbits.com/300x250news.php (easylistchina+easylist.txt: 42904) -.etidbits.com/300x250news\.php -# ||eteknix.com/wp-content/uploads/*Takeover (easylistchina+easylist.txt: 42903) -.eteknix.com/wp-content/uploads/.*Takeover -# ||eteknix.com/wp-content/uploads/*skin (easylistchina+easylist.txt: 42902) -.eteknix.com/wp-content/uploads/.*skin -# ||esus.com/images/regiochat_logo.png (easylistchina+easylist.txt: 42901) -.esus.com/images/regiochat_logo\.png -# ||essayscam.org^*/ads.js (easylistchina+easylist.txt: 42900) -.essayscam.org/.*/ads\.js -# ||essayinfo.com/img/125x125_ (easylistchina+easylist.txt: 42899) -.essayinfo.com/img/125x125_ -# ||espn1320.net/get_preroll.php? (easylistchina+easylist.txt: 42898) -.espn1320.net/get_preroll\.php\? -# ||espn.go.com/ads/ (easylistchina+easylist.txt: 42896) -.espn.go.com/ads/ -# ||espn.co.uk^*/viagogo_sports.html (easylistchina+easylist.txt: 42895) -.espn.co.uk/.*/viagogo_sports\.html -# ||espn.co.uk/espnuk/williamhill_ (easylistchina+easylist.txt: 42894) -.espn.co.uk/espnuk/williamhill_ -# ||espn.co.uk/espnuk/williamhill/ (easylistchina+easylist.txt: 42893) -.espn.co.uk/espnuk/williamhill/ -# ||escapementmagazine.com/wp-content/banners/ (easylistchina+easylist.txt: 42892) -.escapementmagazine.com/wp-content/banners/ -# ||eq2flames.com/images/styles/eq2/images/banner (easylistchina+easylist.txt: 42891) -.eq2flames.com/images/styles/eq2/images/banner -# ||eprop.co.za/images/banners/ (easylistchina+easylist.txt: 42890) -.eprop.co.za/images/banners/ -# ||episodic.com^*/logos/player- (easylistchina+easylist.txt: 42889) -.episodic.com/.*/logos/player- -# ||epictv.com/sites/default/files/290x400_ (easylistchina+easylist.txt: 42888) -.epictv.com/sites/default/files/290x400_ -# ||epicshare.net/p1.js (easylistchina+easylist.txt: 42887) -.epicshare.net/p1\.js -# ||environmental-finance.com^*rotate.gif (easylistchina+easylist.txt: 42886) -.environmental-finance.com/.*rotate\.gif -# ||environmental-finance.com^*banner (easylistchina+easylist.txt: 42885) -.environmental-finance.com/.*banner -# ||enigmagroup.org/clients/privatetunnels.swf (easylistchina+easylist.txt: 42884) -.enigmagroup.org/clients/privatetunnels\.swf -# ||englishtips.org/b/ (easylistchina+easylist.txt: 42883) -.englishtips.org/b/ -# ||england.fm/i/ducksunited120x60english.gif (easylistchina+easylist.txt: 42882) -.england.fm/i/ducksunited120x60english\.gif -# ||energytribune.com/res/banner/ (easylistchina+easylist.txt: 42881) -.energytribune.com/res/banner/ -# ||encyclopediadramatica.es/spon/ (easylistchina+easylist.txt: 42879) -.encyclopediadramatica.es/spon/ -# ||encyclopediadramatica.es/lanhell.js (easylistchina+easylist.txt: 42878) -.encyclopediadramatica.es/lanhell\.js -# ||emuleday.com/cpxt_$subdocument (easylistchina+easylist.txt: 42876) -.emuleday.com/cpxt_ -# ||emule-top50.com/extras/$subdocument (easylistchina+easylist.txt: 42875) -.emule-top50.com/extras/ -# ||empirestatenews.net/Banners/ (easylistchina+easylist.txt: 42872) -.empirestatenews.net/Banners/ -# ||emoneyspace.com/b.php (easylistchina+easylist.txt: 42871) -.emoneyspace.com/b\.php -# ||emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy.gif (easylistchina+easylist.txt: 42870) -.emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy\.gif -# ||elocallink.tv^*/showgif.php? (easylistchina+easylist.txt: 42869) -.elocallink.tv/.*/showgif\.php\? -# ||elivetv.in/pop/ (easylistchina+easylist.txt: 42868) -.elivetv.in/pop/ -# ||elgg.org/images/hostupon_banner.gif (easylistchina+easylist.txt: 42867) -.elgg.org/images/hostupon_banner\.gif -# ||elevenmyanmar.com/images/banners/ (easylistchina+easylist.txt: 42866) -.elevenmyanmar.com/images/banners/ -# ||electronicsfeed.com/bximg/ (easylistchina+easylist.txt: 42865) -.electronicsfeed.com/bximg/ -# ||electricenergyonline.com^*/bannieres/ (easylistchina+easylist.txt: 42864) -.electricenergyonline.com/.*/bannieres/ -# ||ekantipur.com/uploads/banner/ (easylistchina+easylist.txt: 42863) -.ekantipur.com/uploads/banner/ -# ||ejpress.org/img/banners/ (easylistchina+easylist.txt: 42862) -.ejpress.org/img/banners/ -# ||ejpress.org/images/banners/ (easylistchina+easylist.txt: 42861) -.ejpress.org/images/banners/ -# ||ejb.com/300_250 (easylistchina+easylist.txt: 42860) -.ejb.com/300_250 -# ||ehow.com/media/ad.html^ (easylistchina+easylist.txt: 42859) -.ehow.com/media/ad\.html[^\w%.-] -# ||ehow.com/marketing/ (easylistchina+easylist.txt: 42858) -.ehow.com/marketing/ -# ||ehow.com/images/brands/ (easylistchina+easylist.txt: 42857) -.ehow.com/images/brands/ -# ||ehow.co.uk/frames/directas_ (easylistchina+easylist.txt: 42856) -.ehow.co.uk/frames/directas_ -# ||egamer.co.za^*-background- (easylistchina+easylist.txt: 42855) -.egamer.co.za/.*-background- -# ||educationbusinessuk.net/images/stage.gif (easylistchina+easylist.txt: 42854) -.educationbusinessuk.net/images/stage\.gif -# ||edmunds.com/api/savesegment? (easylistchina+easylist.txt: 42853) -.edmunds.com/api/savesegment\? -# ||ed2k.2x4u.de/mfc/ (easylistchina+easylist.txt: 42851) -.ed2k.2x4u.de/mfc/ -# ||ecostream.tv/js/pu.js (easylistchina+easylist.txt: 42850) -.ecostream.tv/js/pu\.js -# ||ecostream.tv/assets/js/pu.min.js (easylistchina+easylist.txt: 42849) -.ecostream.tv/assets/js/pu\.min\.js -# ||economist.com^*/timekeeper-by-rolex-medium.png (easylistchina+easylist.txt: 42848) -.economist.com/.*/timekeeper-by-rolex-medium\.png -# ||economist.com.na^*/banners/ (easylistchina+easylist.txt: 42847) -.economist.com.na/.*/banners/ -# ||ecommerce-journal.com/specdata.php? (easylistchina+easylist.txt: 42846) -.ecommerce-journal.com/specdata\.php\? -# ||eclipse.org/membership/promo/images/ (easylistchina+easylist.txt: 42845) -.eclipse.org/membership/promo/images/ -# ||ebuddy.com/web_banners_ (easylistchina+easylist.txt: 42844) -.ebuddy.com/web_banners_ -# ||ebuddy.com/web_banners/ (easylistchina+easylist.txt: 42843) -.ebuddy.com/web_banners/ -# ||ebuddy.com/textlink.php? (easylistchina+easylist.txt: 42842) -.ebuddy.com/textlink\.php\? -# ||ebookshare.net^*/streamdirect160x600_ (easylistchina+easylist.txt: 42841) -.ebookshare.net/.*/streamdirect160x600_ -# ||ebookshare.net/pages/lt.html (easylistchina+easylist.txt: 42840) -.ebookshare.net/pages/lt\.html -# ||ebizmbainc.netdna-cdn.com/images/tab_sponsors.gif (easylistchina+easylist.txt: 42839) -.ebizmbainc.netdna-cdn.com/images/tab_sponsors\.gif -# ||ebizblitz.co.za/upload/ad/ (easylistchina+easylist.txt: 42838) -.ebizblitz.co.za/upload/ad/ -# ||ebaystatic.com/aw/signin/*_wallpaper_$image (easylistchina+easylist.txt: 42837) -.ebaystatic.com/aw/signin/.*_wallpaper_ -# ||ebaystatic.com/aw/pics/signin/*_signInSkin_ (easylistchina+easylist.txt: 42836) -.ebaystatic.com/aw/pics/signin/.*_signInSkin_ -# ||ebayrtm.com/rtm?RtmIt (easylistchina+easylist.txt: 42835) -.ebayrtm.com/rtm\?RtmIt -# ||ebayrtm.com/rtm?RtmCmd*&enc= (easylistchina+easylist.txt: 42834) -.ebayrtm.com/rtm\?RtmCmd.*&enc= -# ||eatsleepsport.com/images/manorgaming1.jpg (easylistchina+easylist.txt: 42833) -.eatsleepsport.com/images/manorgaming1\.jpg -# ||easybytez.com/pop3.js (easylistchina+easylist.txt: 42832) -.easybytez.com/pop3\.js -# ||eastonline.eu/images/eng_banner_ (easylistchina+easylist.txt: 42831) -.eastonline.eu/images/eng_banner_ -# ||eastonline.eu/images/banners/ (easylistchina+easylist.txt: 42830) -.eastonline.eu/images/banners/ -# ||earthmoversmagazine.co.uk/nimg/ (easylistchina+easylist.txt: 42829) -.earthmoversmagazine.co.uk/nimg/ -# ||earthlink.net^*/promos/ (easylistchina+easylist.txt: 42828) -.earthlink.net/.*/promos/ -# ||e90post.com/forums/images/banners/ (easylistchina+easylist.txt: 42827) -.e90post.com/forums/images/banners/ -# ||dyncdn.celebuzz.com/assets/ (easylistchina+easylist.txt: 42825) -.dyncdn.celebuzz.com/assets/ -# ||dwarfgames.com/pub/728_top. (easylistchina+easylist.txt: 42824) -.dwarfgames.com/pub/728_top\. -# ||dvdvideosoft.com^*/banners/ (easylistchina+easylist.txt: 42823) -.dvdvideosoft.com/.*/banners/ -# ||dustcoin.com^*/image/ad- (easylistchina+easylist.txt: 42822) -.dustcoin.com/.*/image/ad- -# ||durbannews.co.za^*_new728x60.gif (easylistchina+easylist.txt: 42821) -.durbannews.co.za/.*_new728x60\.gif -# ||dump8.com/wget_2leep_bottom.php (easylistchina+easylist.txt: 42820) -.dump8.com/wget_2leep_bottom\.php -# ||dump8.com/wget.php (easylistchina+easylist.txt: 42819) -.dump8.com/wget\.php -# ||dump8.com/tiz/ (easylistchina+easylist.txt: 42818) -.dump8.com/tiz/ -# ||duckload.com/js/abp.php? (easylistchina+easylist.txt: 42817) -.duckload.com/js/abp\.php\? -# ||duckduckgo.com/y.js (easylistchina+easylist.txt: 42816) -.duckduckgo.com/y\.js -# ||duckduckgo.com/m.js?*&o=a (easylistchina+easylist.txt: 42815) -.duckduckgo.com/m\.js\?.*&o=a -# ||duckduckgo.com/i.js?o=a& (easylistchina+easylist.txt: 42814) -.duckduckgo.com/i\.js\?o=a& -# ||dubcnm.com/Adon/ (easylistchina+easylist.txt: 42813) -.dubcnm.com/Adon/ -# ||dsogaming.com/interstitial/ (easylistchina+easylist.txt: 42812) -.dsogaming.com/interstitial/ -# ||droidgamers.com/images/banners/ (easylistchina+easylist.txt: 42811) -.droidgamers.com/images/banners/ -# ||driverdb.com^*/banners/ (easylistchina+easylist.txt: 42810) -.driverdb.com/.*/banners/ -# ||drivearchive.co.uk/images/amazon. (easylistchina+easylist.txt: 42809) -.drivearchive.co.uk/images/amazon\. -# ||drivearchive.co.uk/amazon/ (easylistchina+easylist.txt: 42808) -.drivearchive.co.uk/amazon/ -# ||drhinternet.net/mwimgsent/ (easylistchina+easylist.txt: 42807) -.drhinternet.net/mwimgsent/ -# ||dreamscene.org^*_Banner. (easylistchina+easylist.txt: 42806) -.dreamscene.org/.*_Banner\. -# ||dramabay.com/y/$subdocument (easylistchina+easylist.txt: 42805) -.dramabay.com/y/ -# ||dpstatic.com/s/ad.js (easylistchina+easylist.txt: 42804) -.dpstatic.com/s/ad\.js -# ||dpstatic.com/banner.png? (easylistchina+easylist.txt: 42803) -.dpstatic.com/banner\.png\? -# ||dprogram.net^*/rightsprites.png (easylistchina+easylist.txt: 42802) -.dprogram.net/.*/rightsprites\.png -# ||downloadian.com/assets/banner.jpg (easylistchina+easylist.txt: 42801) -.downloadian.com/assets/banner\.jpg -# ||downloadbox.to/Leadertop.html (easylistchina+easylist.txt: 42800) -.downloadbox.to/Leadertop\.html -# ||downforeveryoneorjustme.com/images/dotbiz_banner.jpg (easylistchina+easylist.txt: 42799) -.downforeveryoneorjustme.com/images/dotbiz_banner\.jpg -# ||doubleviking.com/ss.html (easylistchina+easylist.txt: 42798) -.doubleviking.com/ss\.html -# ||dota-trade.com/img/branding_ (easylistchina+easylist.txt: 42796) -.dota-trade.com/img/branding_ -# ||dontblockme.modaco.com^ (easylistchina+easylist.txt: 42795) -.dontblockme.modaco.com -# ||dominicantoday.com/stor/banners/ (easylistchina+easylist.txt: 42794) -.dominicantoday.com/stor/banners/ -# ||domaintools.com/partners/ (easylistchina+easylist.txt: 42793) -.domaintools.com/partners/ -# ||domaintools.com/marketing/ (easylistchina+easylist.txt: 42792) -.domaintools.com/marketing/ -# ||domaintools.com/eurodns_ (easylistchina+easylist.txt: 42791) -.domaintools.com/eurodns_ -# ||domainmarket.com/mm/ (easylistchina+easylist.txt: 42790) -.domainmarket.com/mm/ -# ||dogechain.info/content/img/a (easylistchina+easylist.txt: 42789) -.dogechain.info/content/img/a -# ||doge-dice.com/images/outpost.png (easylistchina+easylist.txt: 42788) -.doge-dice.com/images/outpost\.png -# ||doge-dice.com/images/faucet.jpg (easylistchina+easylist.txt: 42787) -.doge-dice.com/images/faucet\.jpg -# ||dnsstuff.com/dnsmedia/images/ft.banner. (easylistchina+easylist.txt: 42786) -.dnsstuff.com/dnsmedia/images/ft\.banner\. -# ||dnsstuff.com/dnsmedia/images/*_banner.jpg (easylistchina+easylist.txt: 42785) -.dnsstuff.com/dnsmedia/images/.*_banner\.jpg -# ||dl4all.com^*/hotfile.gif (easylistchina+easylist.txt: 42784) -.dl4all.com/.*/hotfile\.gif -# ||dl4all.com/img/download.jpg (easylistchina+easylist.txt: 42783) -.dl4all.com/img/download\.jpg -# ||dl4all.com/data4.files/dpopupwindow.js (easylistchina+easylist.txt: 42782) -.dl4all.com/data4\.files/dpopupwindow\.js -# ||dl-protect.com/pop.js (easylistchina+easylist.txt: 42781) -.dl-protect.com/pop\.js -# ||djtunes.com^*/adbg/ (easylistchina+easylist.txt: 42780) -.djtunes.com/.*/adbg/ -# ||djmag.com/sites/default/files/takeover/ (easylistchina+easylist.txt: 42779) -.djmag.com/sites/default/files/takeover/ -# ||djmag.co.uk/sites/default/files/takeover/ (easylistchina+easylist.txt: 42778) -.djmag.co.uk/sites/default/files/takeover/ -# ||djluv.in/android.gif (easylistchina+easylist.txt: 42777) -.djluv.in/android\.gif -# ||diytrade.com/diyep/dir?page=common/ppadv& (easylistchina+easylist.txt: 42776) -.diytrade.com/diyep/dir\?page=common/ppadv& -# ||divxstage.eu/images/download.png (easylistchina+easylist.txt: 42775) -.divxstage.eu/images/download\.png -# ||divxme.com/images/play.png (easylistchina+easylist.txt: 42774) -.divxme.com/images/play\.png -# ||dividendchannel.com/toprankedsm.gif (easylistchina+easylist.txt: 42773) -.dividendchannel.com/toprankedsm\.gif -# ||distrowatch.com^*/advanced-admin. (easylistchina+easylist.txt: 42772) -.distrowatch.com/.*/advanced-admin\. -# ||distrowatch.com^*/3cx.png (easylistchina+easylist.txt: 42771) -.distrowatch.com/.*/3cx\.png -# ||distrowatch.com^*-*.gif (easylistchina+easylist.txt: 42770) -.distrowatch.com/.*-.*\.gif -# ||distrowatch.com/images/kokoku/ (easylistchina+easylist.txt: 42769) -.distrowatch.com/images/kokoku/ -# ||distrogeeks.com/images/sponsors/ (easylistchina+easylist.txt: 42768) -.distrogeeks.com/images/sponsors/ -# ||display.superbay.net^ (easylistchina+easylist.txt: 42767) -.display.superbay.net -# ||dispatch.com^*/dpcpopunder.js (easylistchina+easylist.txt: 42766) -.dispatch.com/.*/dpcpopunder\.js -# ||dishusa.net/templates/flero/images/book_sprava.gif (easylistchina+easylist.txt: 42765) -.dishusa.net/templates/flero/images/book_sprava\.gif -# ||dippic.com/images/banner (easylistchina+easylist.txt: 42764) -.dippic.com/images/banner -# ||diplodocs.com/shopping/sol.js (easylistchina+easylist.txt: 42763) -.diplodocs.com/shopping/sol\.js -# ||digzip.com^*baner.swf (easylistchina+easylist.txt: 42762) -.digzip.com/.*baner\.swf -# ||digitizor.com/wp-content/digimages/xsoftspyse.png (easylistchina+easylist.txt: 42761) -.digitizor.com/wp-content/digimages/xsoftspyse\.png -# ||digitalreality.co.nz^*/360_hacks_banner.gif (easylistchina+easylist.txt: 42760) -.digitalreality.co.nz/.*/360_hacks_banner\.gif -# ||digitaljournal.com/promo/ (easylistchina+easylist.txt: 42759) -.digitaljournal.com/promo/ -# ||digdug.divxnetworks.com^ (easylistchina+easylist.txt: 42758) -.digdug.divxnetworks.com -# ||dictionary.com^*/serp_to/ (easylistchina+easylist.txt: 42757) -.dictionary.com/.*/serp_to/ -# ||dictionary.cambridge.org/info/frame.html?zone= (easylistchina+easylist.txt: 42756) -.dictionary.cambridge.org/info/frame\.html\?zone= -# ||diamondworld.net/admin/getresource.aspx? (easylistchina+easylist.txt: 42755) -.diamondworld.net/admin/getresource\.aspx\? -# ||di.fm^*/ads/webplayer (easylistchina+easylist.txt: 42754) -.di.fm/.*/ads/webplayer -# ||dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ (easylistchina+easylist.txt: 42753) -.dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ -# ||devx.com/devx/3174.gif (easylistchina+easylist.txt: 42752) -.devx.com/devx/3174\.gif -# ||devshed.com/images/backgrounds/$image (easylistchina+easylist.txt: 42750) -.devshed.com/images/backgrounds/ -# ||devour.com/*skin (easylistchina+easylist.txt: 42749) -.devour.com/.*skin -# ||devicemag.com^$subdocument,~third-party (easylistchina+easylist.txt: 42748) -.devicemag.com -# ||develop-online.net/static/banners/ (easylistchina+easylist.txt: 42747) -.develop-online.net/static/banners/ -# ||detroitindependent.net/images/ad_ (easylistchina+easylist.txt: 42746) -.detroitindependent.net/images/ad_ -# ||detnews.com^*/sponsor/ (easylistchina+easylist.txt: 42745) -.detnews.com/.*/sponsor/ -# ||desixpress.co.uk/image/banners/ (easylistchina+easylist.txt: 42744) -.desixpress.co.uk/image/banners/ -# ||desiretoinspire.net^*125x125 (easylistchina+easylist.txt: 42743) -.desiretoinspire.net/.*125x125 -# ||desiretoinspire.net^*/mgbanner.gif (easylistchina+easylist.txt: 42742) -.desiretoinspire.net/.*/mgbanner\.gif -# ||desiretoinspire.net/storage/layout/royalcountessad.gif (easylistchina+easylist.txt: 42741) -.desiretoinspire.net/storage/layout/royalcountessad\.gif -# ||desiretoinspire.net/storage/layout/modmaxbanner.gif (easylistchina+easylist.txt: 42740) -.desiretoinspire.net/storage/layout/modmaxbanner\.gif -# ||deshvidesh.com/banner/ (easylistchina+easylist.txt: 42739) -.deshvidesh.com/banner/ -# ||deseretnews.com/img/sponsors/ (easylistchina+easylist.txt: 42738) -.deseretnews.com/img/sponsors/ -# ||depositphotos.com^$subdocument,third-party (easylistchina+easylist.txt: 42737) -.depositphotos.com -# ||depic.me/bann/ (easylistchina+easylist.txt: 42736) -.depic.me/bann/ -# ||demonoid.unblockt.com/cached/$subdocument (easylistchina+easylist.txt: 42735) -.demonoid.unblockt.com/cached/ -# ||demerarawaves.com/images/banners/ (easylistchina+easylist.txt: 42734) -.demerarawaves.com/images/banners/ -# ||delvenetworks.com^*/acudeo.swf$object-subrequest,~third-party (easylistchina+easylist.txt: 42733) -.delvenetworks.com/.*/acudeo\.swf -# ||defensereview.com^*_banner_ (easylistchina+easylist.txt: 42732) -.defensereview.com/.*_banner_ -# ||defenceweb.co.za/logos/ (easylistchina+easylist.txt: 42731) -.defenceweb.co.za/logos/ -# ||defenceweb.co.za/images/sponsorlogos/ (easylistchina+easylist.txt: 42730) -.defenceweb.co.za/images/sponsorlogos/ -# ||decryptedtech.com/images/banners/ (easylistchina+easylist.txt: 42729) -.decryptedtech.com/images/banners/ -# ||deccanchronicle.com^*/shaadi.com/ (easylistchina+easylist.txt: 42728) -.deccanchronicle.com/.*/shaadi\.com/ -# ||deccanchronicle.com^*-searchquad-300100.swf (easylistchina+easylist.txt: 42727) -.deccanchronicle.com/.*-searchquad-300100\.swf -# ||deccanchronicle.com^*-banner- (easylistchina+easylist.txt: 42726) -.deccanchronicle.com/.*-banner- -# ||decadeforum.com/images/misc/download2.png (easylistchina+easylist.txt: 42725) -.decadeforum.com/images/misc/download2\.png -# ||deborah-bickel.de/banners/ (easylistchina+easylist.txt: 42724) -.deborah-bickel.de/banners/ -# ||deals.ledgertranscript.com^ (easylistchina+easylist.txt: 42723) -.deals.ledgertranscript.com -# ||deals.iphonehacks.com^$subdocument (easylistchina+easylist.txt: 42722) -.deals.iphonehacks.com -# ||deals.cultofmac.com^$subdocument (easylistchina+easylist.txt: 42721) -.deals.cultofmac.com -# ||ddl2.com/header.php? (easylistchina+easylist.txt: 42720) -.ddl2.com/header\.php\? -# ||ddccdn.com/js/google_ (easylistchina+easylist.txt: 42719) -.ddccdn.com/js/google_ -# ||dcourier.com/SiteImages/Banner/ (easylistchina+easylist.txt: 42718) -.dcourier.com/SiteImages/Banner/ -# ||dcad.watersoul.com^ (easylistchina+easylist.txt: 42717) -.dcad.watersoul.com -# ||dbstalk.com/sponsors/ (easylistchina+easylist.txt: 42716) -.dbstalk.com/sponsors/ -# ||dayport.com/ads/ (easylistchina+easylist.txt: 42715) -.dayport.com/ads/ -# ||davesite.com^*/aff/ (easylistchina+easylist.txt: 42714) -.davesite.com/.*/aff/ -# ||datpiff.com/skins/misc/ (easylistchina+easylist.txt: 42713) -.datpiff.com/skins/misc/ -# ||darknet.org.uk^*/do468. (easylistchina+easylist.txt: 42712) -.darknet.org.uk/.*/do468\. -# ||darknet.org.uk^*-250x250. (easylistchina+easylist.txt: 42711) -.darknet.org.uk/.*-250x250\. -# ||darknet.org.uk/images/acunetix_ (easylistchina+easylist.txt: 42710) -.darknet.org.uk/images/acunetix_ -# ||damnlol.com/damnlol.com.*.js (easylistchina+easylist.txt: 42709) -.damnlol.com/damnlol\.com\..*\.js -# ||damnlol.com/a/leaderboard.php (easylistchina+easylist.txt: 42708) -.damnlol.com/a/leaderboard\.php -# ||dailywritingtips.com^*/publisher2.gif (easylistchina+easylist.txt: 42707) -.dailywritingtips.com/.*/publisher2\.gif -# ||dailytrust.info/images/dangote.swf (easylistchina+easylist.txt: 42706) -.dailytrust.info/images/dangote\.swf -# ||dailytrust.info/images/banners/ (easylistchina+easylist.txt: 42705) -.dailytrust.info/images/banners/ -# ||dailytimes.com.pk/banners/ (easylistchina+easylist.txt: 42704) -.dailytimes.com.pk/banners/ -# ||dailysabah.com/banner/ (easylistchina+easylist.txt: 42703) -.dailysabah.com/banner/ -# ||dailypuppy.com/images/livestrong/ls_diet_120x90_1.gif (easylistchina+easylist.txt: 42702) -.dailypuppy.com/images/livestrong/ls_diet_120x90_1\.gif -# ||dailypioneer.com/images/banners/ (easylistchina+easylist.txt: 42701) -.dailypioneer.com/images/banners/ -# ||dailynews.lk^*/webadz/ (easylistchina+easylist.txt: 42700) -.dailynews.lk/.*/webadz/ -# ||dailynews.gov.bw^*/banner_ (easylistchina+easylist.txt: 42699) -.dailynews.gov.bw/.*/banner_ -# ||dailynews.co.zw^*-takeover. (easylistchina+easylist.txt: 42698) -.dailynews.co.zw/.*-takeover\. -# ||dailynews.co.tz/images/banners/ (easylistchina+easylist.txt: 42697) -.dailynews.co.tz/images/banners/ -# ||dailymotion.com/skin/data/default/partner/$~stylesheet (easylistchina+easylist.txt: 42696) -.dailymotion.com/skin/data/default/partner/ -# ||dailymotion.com/images/ie.png (easylistchina+easylist.txt: 42695) -.dailymotion.com/images/ie\.png -# ||dailymirror.lk/media/images/Nawaloka- (easylistchina+easylist.txt: 42694) -.dailymirror.lk/media/images/Nawaloka- -# ||dailymail.co.uk^*/promoboxes/ (easylistchina+easylist.txt: 42693) -.dailymail.co.uk/.*/promoboxes/ -# ||dailymail.co.uk/modules/commercial/ (easylistchina+easylist.txt: 42692) -.dailymail.co.uk/modules/commercial/ -# ||dailymail.co.uk/i/pix/ebay/ (easylistchina+easylist.txt: 42691) -.dailymail.co.uk/i/pix/ebay/ -# ||dailyhome.com/leaderboard_banner (easylistchina+easylist.txt: 42690) -.dailyhome.com/leaderboard_banner -# ||dailyherald.com^*/contextual.js (easylistchina+easylist.txt: 42689) -.dailyherald.com/.*/contextual\.js -# ||dailyfreegames.com/js/partners.html (easylistchina+easylist.txt: 42688) -.dailyfreegames.com/js/partners\.html -# ||dailyexpress.com.my/image/banner/ (easylistchina+easylist.txt: 42687) -.dailyexpress.com.my/image/banner/ -# ||dailyexpress.com.my/banners/ (easylistchina+easylist.txt: 42686) -.dailyexpress.com.my/banners/ -# ||dailydeals.sfgate.com/widget/ (easylistchina+easylist.txt: 42685) -.dailydeals.sfgate.com/widget/ -# ||dailydeals.savannahnow.com^ (easylistchina+easylist.txt: 42684) -.dailydeals.savannahnow.com -# ||dailydeals.onlineathens.com^ (easylistchina+easylist.txt: 42683) -.dailydeals.onlineathens.com -# ||dailydeals.lubbockonline.com^ (easylistchina+easylist.txt: 42682) -.dailydeals.lubbockonline.com -# ||dailydeals.brainerddispatch.com^ (easylistchina+easylist.txt: 42681) -.dailydeals.brainerddispatch.com -# ||dailydeals.augustachronicle.com^ (easylistchina+easylist.txt: 42680) -.dailydeals.augustachronicle.com -# ||dailydeals.amarillo.com^ (easylistchina+easylist.txt: 42679) -.dailydeals.amarillo.com -# ||dailydeal.news-record.com/widgets/ (easylistchina+easylist.txt: 42678) -.dailydeal.news-record.com/widgets/ -# ||dailycommercial.com/inc.php? (easylistchina+easylist.txt: 42677) -.dailycommercial.com/inc\.php\? -# ||dailyblogtips.com/wp-content/uploads/*.gif (easylistchina+easylist.txt: 42676) -.dailyblogtips.com/wp-content/uploads/.*\.gif -# ||dailybitcoins.org/banners/ (easylistchina+easylist.txt: 42675) -.dailybitcoins.org/banners/ -# ||daily-sun.com^*/banner/ (easylistchina+easylist.txt: 42674) -.daily-sun.com/.*/banner/ -# ||daily-mail.co.zm^*_banner. (easylistchina+easylist.txt: 42673) -.daily-mail.co.zm/.*_banner\. -# ||daily-mail.co.zm^*_270x312. (easylistchina+easylist.txt: 42672) -.daily-mail.co.zm/.*_270x312\. -# ||daily-mail.co.zm^*_1170x120. (easylistchina+easylist.txt: 42671) -.daily-mail.co.zm/.*_1170x120\. -# ||daily-mail.co.zm^*/singapore_auto. (easylistchina+easylist.txt: 42670) -.daily-mail.co.zm/.*/singapore_auto\. -# ||daily-mail.co.zm^*/side_strip. (easylistchina+easylist.txt: 42669) -.daily-mail.co.zm/.*/side_strip\. -# ||daily-mail.co.zm^*/sbt.gif (easylistchina+easylist.txt: 42668) -.daily-mail.co.zm/.*/sbt\.gif -# ||daily-mail.co.zm/images/banners/ (easylistchina+easylist.txt: 42667) -.daily-mail.co.zm/images/banners/ -# ||dads.new.digg.com^ (easylistchina+easylist.txt: 42666) -.dads.new.digg.com -# ||dabs.com/images/page-backgrounds/ (easylistchina+easylist.txt: 42665) -.dabs.com/images/page-backgrounds/ -# ||da.feedsportal.com^$~subdocument (easylistchina+easylist.txt: 42664) -.da.feedsportal.com -# ||d5e.info/2.png (easylistchina+easylist.txt: 42662) -.d5e.info/2\.png -# ||d5e.info/1.gif (easylistchina+easylist.txt: 42661) -.d5e.info/1\.gif -# ||d.thelocal.com^ (easylistchina+easylist.txt: 42660) -.d.thelocal.com -# ||d.imwx.com/js/wx-a21-plugthis- (easylistchina+easylist.txt: 42659) -.d.imwx.com/js/wx-a21-plugthis- -# ||d.gossipcenter.com^ (easylistchina+easylist.txt: 42658) -.d.gossipcenter.com -# ||d.businessinsider.com^ (easylistchina+easylist.txt: 42657) -.d.businessinsider.com -# ||d.annarbor.com^ (easylistchina+easylist.txt: 42656) -.d.annarbor.com -# ||d-h.st/assets/img/download1.png (easylistchina+easylist.txt: 42655) -.d-h.st/assets/img/download1\.png -# ||d-addicts.com^*/banner/ (easylistchina+easylist.txt: 42654) -.d-addicts.com/.*/banner/ -# ||cybergamer.com/skins/ (easylistchina+easylist.txt: 42653) -.cybergamer.com/skins/ -# ||cyanogenmod.com/static/tdr_skyscraper.png (easylistchina+easylist.txt: 42652) -.cyanogenmod.com/static/tdr_skyscraper\.png -# ||cur.lv/nbottom.php? (easylistchina+easylist.txt: 42651) -.cur.lv/nbottom\.php\? -# ||cur.lv/bootstrap/js/bootstrapx-clickover.js (easylistchina+easylist.txt: 42650) -.cur.lv/bootstrap/js/bootstrapx-clickover\.js -# ||ctv.ca/Sites/Ctv/assets/js/ctvDfpAd.js (easylistchina+easylist.txt: 42649) -.ctv.ca/Sites/Ctv/assets/js/ctvDfpAd\.js -# ||ctv.ca/ctvresources/js/ctvad.js (easylistchina+easylist.txt: 42648) -.ctv.ca/ctvresources/js/ctvad\.js -# ||ctmirror.org/randomsupporter/ (easylistchina+easylist.txt: 42647) -.ctmirror.org/randomsupporter/ -# ||cship.org/w/skins/monobook/uns.gif (easylistchina+easylist.txt: 42646) -.cship.org/w/skins/monobook/uns\.gif -# ||csgobackpack.net/653x50. (easylistchina+easylist.txt: 42645) -.csgobackpack.net/653x50\. -# ||crystalmedianetworks.com^*-180x150.jpg (easylistchina+easylist.txt: 42644) -.crystalmedianetworks.com/.*-180x150\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt.jpg (easylistchina+easylist.txt: 42643) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt-social.png (easylistchina+easylist.txt: 42642) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt-social\.png -# ||cryptocoinsnews.com/wp-content/uploads/*/cloudbet_ (easylistchina+easylist.txt: 42641) -.cryptocoinsnews.com/wp-content/uploads/.*/cloudbet_ -# ||cryptocoinsnews.com/wp-content/uploads/*/ccn.png (easylistchina+easylist.txt: 42640) -.cryptocoinsnews.com/wp-content/uploads/.*/ccn\.png -# ||cruzine.com^*/banners/ (easylistchina+easylist.txt: 42639) -.cruzine.com/.*/banners/ -# ||crushorflush.com/html/promoframe.html (easylistchina+easylist.txt: 42638) -.crushorflush.com/html/promoframe\.html -# ||crunchyroll.*/vast? (easylistchina+easylist.txt: 42637) -.crunchyroll.*./(.*/)?vast\? -# ||crimeaware.co.za/files-upload/banner/ (easylistchina+easylist.txt: 42636) -.crimeaware.co.za/files-upload/banner/ -# ||cricruns.com/images/hioxindia- (easylistchina+easylist.txt: 42635) -.cricruns.com/images/hioxindia- -# ||cricbuzz.com/js/banners/ (easylistchina+easylist.txt: 42634) -.cricbuzz.com/js/banners/ -# ||creattor.net/flashxmlbanners/ (easylistchina+easylist.txt: 42633) -.creattor.net/flashxmlbanners/ -# ||creatives.livejasmin.com^ (easylistchina+easylist.txt: 42632) -.creatives.livejasmin.com -# ||createtv.com/CreateProgram.nsf/vShowcaseFeaturedSideContentByLinkTitle/ (easylistchina+easylist.txt: 42631) -.createtv.com/CreateProgram\.nsf/vShowcaseFeaturedSideContentByLinkTitle/ -# ||crazymotion.net/video_*.php?key= (easylistchina+easylist.txt: 42630) -.crazymotion.net/video_.*\.php\?key= -# ||crazy-torrent.com/web/banner/online.jpg (easylistchina+easylist.txt: 42629) -.crazy-torrent.com/web/banner/online\.jpg -# ||crazy-torrent.com/web/banner/0xxx0.net.jpg (easylistchina+easylist.txt: 42628) -.crazy-torrent.com/web/banner/0xxx0\.net\.jpg -# ||craveonline.com/gnads/ (easylistchina+easylist.txt: 42627) -.craveonline.com/gnads/ -# ||cramdodge.com/mg- (easylistchina+easylist.txt: 42626) -.cramdodge.com/mg- -# ||crackdb.com/img/vpn.png (easylistchina+easylist.txt: 42625) -.crackdb.com/img/vpn\.png -# ||crackdb.cd/cd.swf (easylistchina+easylist.txt: 42624) -.crackdb.cd/cd\.swf -# ||cpub.co.uk/a? (easylistchina+easylist.txt: 42623) -.cpub.co.uk/a\? -# ||cphpost.dk^*/banners/ (easylistchina+easylist.txt: 42622) -.cphpost.dk/.*/banners/ -# ||countrychannel.tv/telvos_banners/ (easylistchina+easylist.txt: 42621) -.countrychannel.tv/telvos_banners/ -# ||cosplay.com/1lensvillage.gif (easylistchina+easylist.txt: 42620) -.cosplay.com/1lensvillage\.gif -# ||coryarcangel.com/images/banners/ (easylistchina+easylist.txt: 42619) -.coryarcangel.com/images/banners/ -# ||cops.com^*/copbanner_ (easylistchina+easylist.txt: 42618) -.cops.com/.*/copbanner_ -# ||copblock.org/wp-content/uploads/*/covert-handcuff-key-AD- (easylistchina+easylist.txt: 42617) -.copblock.org/wp-content/uploads/.*/covert-handcuff-key-AD- -# ||coolsport.tv/lshadd. (easylistchina+easylist.txt: 42616) -.coolsport.tv/lshadd\. -# ||coolsport.tv/adtadd. (easylistchina+easylist.txt: 42615) -.coolsport.tv/adtadd\. -# ||coolmath.net/*-medrect.html (easylistchina+easylist.txt: 42614) -.coolmath.net/.*-medrect\.html -# ||coolmath-games.com/images/160-notice.gif (easylistchina+easylist.txt: 42613) -.coolmath-games.com/images/160-notice\.gif -# ||coolfm.us/lagos969/images/banners/ (easylistchina+easylist.txt: 42612) -.coolfm.us/lagos969/images/banners/ -# ||conwaydailysun.com/images/Tiles_Skyscrapers/ (easylistchina+easylist.txt: 42611) -.conwaydailysun.com/images/Tiles_Skyscrapers/ -# ||conwaydailysun.com/images/banners/ (easylistchina+easylist.txt: 42610) -.conwaydailysun.com/images/banners/ -# ||convertmyimage.com/images/banner-square.png (easylistchina+easylist.txt: 42609) -.convertmyimage.com/images/banner-square\.png -# ||consumerreports.org^*/sx.js (easylistchina+easylist.txt: 42608) -.consumerreports.org/.*/sx\.js -# ||constructionreviewonline.com^*banner (easylistchina+easylist.txt: 42607) -.constructionreviewonline.com/.*banner -# ||constructionreviewonline.com^*730x90 (easylistchina+easylist.txt: 42606) -.constructionreviewonline.com/.*730x90 -# ||console-spot.com^*.swf (easylistchina+easylist.txt: 42605) -.console-spot.com/.*\.swf -# ||conscioustalk.net/images/sponsors/ (easylistchina+easylist.txt: 42604) -.conscioustalk.net/images/sponsors/ -# ||connectionstrings.com/csas/public/a.ashx? (easylistchina+easylist.txt: 42603) -.connectionstrings.com/csas/public/a\.ashx\? -# ||concrete.tv/images/banners/ (easylistchina+easylist.txt: 42602) -.concrete.tv/images/banners/ -# ||con-telegraph.ie/images/banners/ (easylistchina+easylist.txt: 42601) -.con-telegraph.ie/images/banners/ -# ||computerworld.com^*/jobroll/ (easylistchina+easylist.txt: 42600) -.computerworld.com/.*/jobroll/ -# ||computerhelp.com/temp/banners/ (easylistchina+easylist.txt: 42599) -.computerhelp.com/temp/banners/ -# ||computerandvideogames.com^*/promos/ (easylistchina+easylist.txt: 42598) -.computerandvideogames.com/.*/promos/ -# ||complexmedianetwork.com^*/toolbarlogo.png (easylistchina+easylist.txt: 42597) -.complexmedianetwork.com/.*/toolbarlogo\.png -# ||complexmedianetwork.com^*/takeovers/ (easylistchina+easylist.txt: 42596) -.complexmedianetwork.com/.*/takeovers/ -# ||complaintsboard.com/img/banner- (easylistchina+easylist.txt: 42595) -.complaintsboard.com/img/banner- -# ||complaintsboard.com/img/202x202.gif (easylistchina+easylist.txt: 42594) -.complaintsboard.com/img/202x202\.gif -# ||compassnewspaper.com/images/banners/ (easylistchina+easylist.txt: 42593) -.compassnewspaper.com/images/banners/ -# ||comparestoreprices.co.uk/images/promotions/ (easylistchina+easylist.txt: 42592) -.comparestoreprices.co.uk/images/promotions/ -# ||comicgenesis.com/tcontent.php?out= (easylistchina+easylist.txt: 42591) -.comicgenesis.com/tcontent\.php\?out= -# ||comicbookresources.com/assets/images/skins/ (easylistchina+easylist.txt: 42590) -.comicbookresources.com/assets/images/skins/ -# ||com.com/cnwk.1d/aud/ (easylistchina+easylist.txt: 42589) -.com.com/cnwk\.1d/aud/ -# ||com-a.in/images/banners/ (easylistchina+easylist.txt: 42588) -.com-a.in/images/banners/ -# ||collector.viki.io^ (easylistchina+easylist.txt: 42587) -.collector.viki.io -# ||collarme.com/zone_alt.asp (easylistchina+easylist.txt: 42586) -.collarme.com/zone_alt\.asp -# ||collarme.com/anv/ (easylistchina+easylist.txt: 42585) -.collarme.com/anv/ -# ||coinurl.com/nbottom.php? (easylistchina+easylist.txt: 42584) -.coinurl.com/nbottom\.php\? -# ||coinurl.com/get.php? (easylistchina+easylist.txt: 42583) -.coinurl.com/get\.php\? -# ||coinurl.com/bottom.php (easylistchina+easylist.txt: 42582) -.coinurl.com/bottom\.php -# ||coinurl.com/bootstrap/js/bootstrapx-clickover.js (easylistchina+easylist.txt: 42581) -.coinurl.com/bootstrap/js/bootstrapx-clickover\.js -# ||coinad.com/op.php? (easylistchina+easylist.txt: 42580) -.coinad.com/op\.php\? -# ||coderanch.com/shingles/ (easylistchina+easylist.txt: 42579) -.coderanch.com/shingles/ -# ||codecguide.com/driverscantop1.gif (easylistchina+easylist.txt: 42578) -.codecguide.com/driverscantop1\.gif -# ||codecguide.com/driverscan2.gif (easylistchina+easylist.txt: 42577) -.codecguide.com/driverscan2\.gif -# ||codecguide.com/beforedl2.gif (easylistchina+easylist.txt: 42576) -.codecguide.com/beforedl2\.gif -# ||codeasily.com^*/codeasily.js (easylistchina+easylist.txt: 42575) -.codeasily.com/.*/codeasily\.js -# ||cocomment.com/banner? (easylistchina+easylist.txt: 42574) -.cocomment.com/banner\? -# ||coastweek.com/graffix/ (easylistchina+easylist.txt: 42573) -.coastweek.com/graffix/ -# ||coastweek.com/banner_ (easylistchina+easylist.txt: 42572) -.coastweek.com/banner_ -# ||coastfm.ae/promotion/ (easylistchina+easylist.txt: 42571) -.coastfm.ae/promotion/ -# ||coastfm.ae/images/background/ (easylistchina+easylist.txt: 42570) -.coastfm.ae/images/background/ -# ||cnx-software.com/pic/technexion/ (easylistchina+easylist.txt: 42569) -.cnx-software.com/pic/technexion/ -# ||cnx-software.com/pic/gateworks/ (easylistchina+easylist.txt: 42568) -.cnx-software.com/pic/gateworks/ -# ||cntv.cn/Library/js/js_ad_gb.js (easylistchina+easylist.txt: 42567) -.cntv.cn/Library/js/js_ad_gb\.js -# ||cnn.net^*/lawyers.com/ (easylistchina+easylist.txt: 42566) -.cnn.net/.*/lawyers\.com/ -# ||cnn.com^*/banner.html?&csiid= (easylistchina+easylist.txt: 42565) -.cnn.com/.*/banner\.html\?&csiid= -# ||cnn.com/cnn_adspaces/ (easylistchina+easylist.txt: 42563) -.cnn.com/cnn_adspaces/ -# ||cnn.com/ad- (easylistchina+easylist.txt: 42562) -.cnn.com/ad- -# ||cnetwidget.creativemark.co.uk^ (easylistchina+easylist.txt: 42561) -.cnetwidget.creativemark.co.uk -# ||cnettv.com.edgesuite.net^*/ads/ (easylistchina+easylist.txt: 42560) -.cnettv.com.edgesuite.net/.*/ads/ -# ||cnet.com/imp? (easylistchina+easylist.txt: 42559) -.cnet.com/imp\? -# ||cms.myspacecdn.com^*/splash_assets/ (easylistchina+easylist.txt: 42558) -.cms.myspacecdn.com/.*/splash_assets/ -# ||cmpnet.com/ads/ (easylistchina+easylist.txt: 42557) -.cmpnet.com/ads/ -# ||clubplanet.com^*/wallpaper/ (easylistchina+easylist.txt: 42555) -.clubplanet.com/.*/wallpaper/ -# ||clubhyper.com/images/hannantsbanner_ (easylistchina+easylist.txt: 42554) -.clubhyper.com/images/hannantsbanner_ -# ||cloudyvideos.com/banner/ (easylistchina+easylist.txt: 42553) -.cloudyvideos.com/banner/ -# ||clicks.superpages.com^ (easylistchina+easylist.txt: 42547) -.clicks.superpages.com -# ||click.livedoor.com^ (easylistchina+easylist.txt: 42546) -.click.livedoor.com -# ||clgaming.net/interface/img/sponsor/ (easylistchina+easylist.txt: 42545) -.clgaming.net/interface/img/sponsor/ -# ||classicsdujour.com/artistbanners/ (easylistchina+easylist.txt: 42544) -.classicsdujour.com/artistbanners/ -# ||classicfeel.co.za^*/banners/ (easylistchina+easylist.txt: 42543) -.classicfeel.co.za/.*/banners/ -# ||classical897.org/common/sponsors/ (easylistchina+easylist.txt: 42542) -.classical897.org/common/sponsors/ -# ||classic97.net^*/banner/ (easylistchina+easylist.txt: 42541) -.classic97.net/.*/banner/ -# ||classic-tv.com/pubaccess.html (easylistchina+easylist.txt: 42540) -.classic-tv.com/pubaccess\.html -# ||classic-tv.com/burst$subdocument (easylistchina+easylist.txt: 42539) -.classic-tv.com/burst -# ||clarksvilleonline.com/cols/ (easylistchina+easylist.txt: 42538) -.clarksvilleonline.com/cols/ -# ||cjr.org/interstitial_ (easylistchina+easylist.txt: 42537) -.cjr.org/interstitial_ -# ||citywirecontent.co.uk^*/cw.oas.dx.js (easylistchina+easylist.txt: 42536) -.citywirecontent.co.uk/.*/cw\.oas\.dx\.js -# ||citywire.co.uk/wealth-manager/marketingcampaign? (easylistchina+easylist.txt: 42535) -.citywire.co.uk/wealth-manager/marketingcampaign\? -# ||citybeat.co.uk^*/ads/ (easylistchina+easylist.txt: 42534) -.citybeat.co.uk/.*/ads/ -# ||cityam.com^*/pageskin/ (easylistchina+easylist.txt: 42533) -.cityam.com/.*/pageskin/ -# ||citizen-usa.com/images/banners/ (easylistchina+easylist.txt: 42532) -.citizen-usa.com/images/banners/ -# ||citeulike.org/static/campaigns/ (easylistchina+easylist.txt: 42531) -.citeulike.org/static/campaigns/ -# ||citationmachine.net/images/grammarly/ (easylistchina+easylist.txt: 42530) -.citationmachine.net/images/grammarly/ -# ||ciol.com/zedotags/ (easylistchina+easylist.txt: 42529) -.ciol.com/zedotags/ -# ||cineplex.com/skins/ (easylistchina+easylist.txt: 42528) -.cineplex.com/skins/ -# ||cinemablend.com/templates/tpl/reskin/$image (easylistchina+easylist.txt: 42527) -.cinemablend.com/templates/tpl/reskin/ -# ||ciao.com^*/price_link/ (easylistchina+easylist.txt: 42526) -.ciao.com/.*/price_link/ -# ||ciao.co.uk/load_file.php? (easylistchina+easylist.txt: 42525) -.ciao.co.uk/load_file\.php\? -# ||churchnewssite.com^*/bannercard- (easylistchina+easylist.txt: 42524) -.churchnewssite.com/.*/bannercard- -# ||churchnewssite.com^*/banner- (easylistchina+easylist.txt: 42523) -.churchnewssite.com/.*/banner- -# ||churchnewssite.com^*-banner1. (easylistchina+easylist.txt: 42522) -.churchnewssite.com/.*-banner1\. -# ||chronicle.lu/images/Sponsor_ (easylistchina+easylist.txt: 42521) -.chronicle.lu/images/Sponsor_ -# ||chronicle.lu/images/banners/ (easylistchina+easylist.txt: 42520) -.chronicle.lu/images/banners/ -# ||chinanews.com/gg/ (easylistchina+easylist.txt: 42519) -.chinanews.com/gg/ -# ||chicagodefender.com/images/banners/ (easylistchina+easylist.txt: 42518) -.chicagodefender.com/images/banners/ -# ||chelsey.co.nz/uploads/Takeovers/ (easylistchina+easylist.txt: 42517) -.chelsey.co.nz/uploads/Takeovers/ -# ||checkwebsiteprice.com/images/bitcoin.jpg (easylistchina+easylist.txt: 42516) -.checkwebsiteprice.com/images/bitcoin\.jpg -# ||checkpagerank.net/banners/ (easylistchina+easylist.txt: 42515) -.checkpagerank.net/banners/ -# ||chapala.com/wwwboard/webboardtop.htm (easylistchina+easylist.txt: 42514) -.chapala.com/wwwboard/webboardtop\.htm -# ||channelonline.tv/channelonline_advantage/ (easylistchina+easylist.txt: 42513) -.channelonline.tv/channelonline_advantage/ -# ||channel5.com/assets/takeovers/ (easylistchina+easylist.txt: 42512) -.channel5.com/assets/takeovers/ -# ||channel4fm.com/promotion/ (easylistchina+easylist.txt: 42511) -.channel4fm.com/promotion/ -# ||channel4fm.com/images/background/ (easylistchina+easylist.txt: 42510) -.channel4fm.com/images/background/ -# ||channel4.com/bips/*/brand/$image (easylistchina+easylist.txt: 42509) -.channel4.com/bips/.*/brand/ -# ||channel4.com/assets/programmes/images/originals/$image (easylistchina+easylist.txt: 42508) -.channel4.com/assets/programmes/images/originals/ -# ||chaklyrics.com/add$subdocument (easylistchina+easylist.txt: 42507) -.chaklyrics.com/add -# ||ch131.so/images/2etio.gif (easylistchina+easylist.txt: 42506) -.ch131.so/images/2etio\.gif -# ||cghub.com/files/CampaignCode/ (easylistchina+easylist.txt: 42505) -.cghub.com/files/CampaignCode/ -# ||ceylontoday.lk^*/banner/ (easylistchina+easylist.txt: 42504) -.ceylontoday.lk/.*/banner/ -# ||ceoexpress.com/inc/ads (easylistchina+easylist.txt: 42503) -.ceoexpress.com/inc/ads -# ||centralfm.co.uk/images/banners/ (easylistchina+easylist.txt: 42502) -.centralfm.co.uk/images/banners/ -# ||centos.org/donors/ (easylistchina+easylist.txt: 42501) -.centos.org/donors/ -# ||ceforum.co.uk/images/misc/PartnerLinks (easylistchina+easylist.txt: 42499) -.ceforum.co.uk/images/misc/PartnerLinks -# ||cdn.turner.com^*/groupon/ (easylistchina+easylist.txt: 42497) -.cdn.turner.com/.*/groupon/ -# ||cdn-surfline.com/home/billabong-xxl.png (easylistchina+easylist.txt: 42496) -.cdn-surfline.com/home/billabong-xxl\.png -# ||cdmediaworld.com*/! (easylistchina+easylist.txt: 42495) -.cdmediaworld.com*./(.*/)?! -# ||cdmagurus.com/img/kcpf2.swf (easylistchina+easylist.txt: 42494) -.cdmagurus.com/img/kcpf2\.swf -# ||cdmagurus.com/img/*.gif (easylistchina+easylist.txt: 42493) -.cdmagurus.com/img/.*\.gif -# ||cdmagurus.com/forum/cyberflashing.swf (easylistchina+easylist.txt: 42492) -.cdmagurus.com/forum/cyberflashing\.swf -# ||cdcovers.cc/images/external/toolbar (easylistchina+easylist.txt: 42491) -.cdcovers.cc/images/external/toolbar -# ||cd1025.com/www/img/btn- (easylistchina+easylist.txt: 42490) -.cd1025.com/www/img/btn- -# ||cd1025.com/www/assets/a/ (easylistchina+easylist.txt: 42489) -.cd1025.com/www/assets/a/ -# ||ccfm.org.za^*/sads/ (easylistchina+easylist.txt: 42488) -.ccfm.org.za/.*/sads/ -# ||cbslocal.com/rotatable? (easylistchina+easylist.txt: 42487) -.cbslocal.com/rotatable\? -# ||cbslocal.com/deals/widget/ (easylistchina+easylist.txt: 42486) -.cbslocal.com/deals/widget/ -# ||cbsinteractive.co.uk/cbsi/ads/ (easylistchina+easylist.txt: 42485) -.cbsinteractive.co.uk/cbsi/ads/ -# ||cbn.co.za/images/banners/ (easylistchina+easylist.txt: 42484) -.cbn.co.za/images/banners/ -# ||cbfsms.com^*-banner.gif (easylistchina+easylist.txt: 42483) -.cbfsms.com/.*-banner\.gif -# ||cbc.ca/video/bigbox.html (easylistchina+easylist.txt: 42482) -.cbc.ca/video/bigbox\.html -# ||cbc.ca/deals/ (easylistchina+easylist.txt: 42481) -.cbc.ca/deals/ -# ||catholicculture.org/images/banners/ (easylistchina+easylist.txt: 42480) -.catholicculture.org/images/banners/ -# ||catalystmagazine.net/images/banners/ (easylistchina+easylist.txt: 42479) -.catalystmagazine.net/images/banners/ -# ||casualgaming.biz/banners/ (easylistchina+easylist.txt: 42478) -.casualgaming.biz/banners/ -# ||castanet.net/clients/ (easylistchina+easylist.txt: 42477) -.castanet.net/clients/ -# ||cash9.org/assets/img/banner2.gif (easylistchina+easylist.txt: 42476) -.cash9.org/assets/img/banner2\.gif -# ||carsuk.net/directory/panel-promo- (easylistchina+easylist.txt: 42475) -.carsuk.net/directory/panel-promo- -# ||carsguide.com.au^*/marketing/ (easylistchina+easylist.txt: 42474) -.carsguide.com.au/.*/marketing/ -# ||carsguide.com.au/images/uploads/*_bg. (easylistchina+easylist.txt: 42473) -.carsguide.com.au/images/uploads/.*_bg\. -# ||carsales.com.au^*/backgrounds/ (easylistchina+easylist.txt: 42472) -.carsales.com.au/.*/backgrounds/ -# ||cars.com/js/cars/catretargeting.js (easylistchina+easylist.txt: 42471) -.cars.com/js/cars/catretargeting\.js -# ||cars.com/go/includes/targeting/ (easylistchina+easylist.txt: 42470) -.cars.com/go/includes/targeting/ -# ||cargonewsasia.com/promotion/ (easylistchina+easylist.txt: 42469) -.cargonewsasia.com/promotion/ -# ||cardsharing.info/wp-content/uploads/*/ALLS.jpg (easylistchina+easylist.txt: 42468) -.cardsharing.info/wp-content/uploads/.*/ALLS\.jpg -# ||cardschat.com/pkimg/banners/ (easylistchina+easylist.txt: 42467) -.cardschat.com/pkimg/banners/ -# ||cardomain.com/empty_pg.htm (easylistchina+easylist.txt: 42466) -.cardomain.com/empty_pg\.htm -# ||card-sharing.net/umbrella.png (easylistchina+easylist.txt: 42465) -.card-sharing.net/umbrella\.png -# ||card-sharing.net/topsharingserver.jpg (easylistchina+easylist.txt: 42464) -.card-sharing.net/topsharingserver\.jpg -# ||card-sharing.net/cccamcorner.gif (easylistchina+easylist.txt: 42463) -.card-sharing.net/cccamcorner\.gif -# ||capitolfax.com/wp-content/*Ad_ (easylistchina+easylist.txt: 42461) -.capitolfax.com/wp-content/.*Ad_ -# ||capitolfax.com/wp-content/*ad. (easylistchina+easylist.txt: 42460) -.capitolfax.com/wp-content/.*ad\. -# ||capitalfm.co.ke^*/830x460-iv.jpg (easylistchina+easylist.txt: 42459) -.capitalfm.co.ke/.*/830x460-iv\.jpg -# ||capitalethiopia.com/images/banners/ (easylistchina+easylist.txt: 42458) -.capitalethiopia.com/images/banners/ -# ||capetownetc.com^*/wallpapers/ (easylistchina+easylist.txt: 42456) -.capetownetc.com/.*/wallpapers/ -# ||canvas.thenextweb.com^ (easylistchina+easylist.txt: 42455) -.canvas.thenextweb.com -# ||canindia.com^*_banner.png (easylistchina+easylist.txt: 42454) -.canindia.com/.*_banner\.png -# ||candystand.com/game-track.do? (easylistchina+easylist.txt: 42453) -.candystand.com/game-track\.do\? -# ||cancomuk.com/campaigns/ (easylistchina+easylist.txt: 42452) -.cancomuk.com/campaigns/ -# ||cananewsonline.com/files/banners/ (easylistchina+easylist.txt: 42451) -.cananewsonline.com/files/banners/ -# ||canalboat.co.uk^*/Banners/ (easylistchina+easylist.txt: 42450) -.canalboat.co.uk/.*/Banners/ -# ||canalboat.co.uk^*/bannerImage. (easylistchina+easylist.txt: 42449) -.canalboat.co.uk/.*/bannerImage\. -# ||cameroon-concord.com/images/banners/ (easylistchina+easylist.txt: 42448) -.cameroon-concord.com/images/banners/ -# ||calguns.net/images/ads (easylistchina+easylist.txt: 42447) -.calguns.net/images/ads -# ||calgaryherald.com/images/storysponsor/ (easylistchina+easylist.txt: 42446) -.calgaryherald.com/images/storysponsor/ -# ||calgaryherald.com/images/sponsor/ (easylistchina+easylist.txt: 42445) -.calgaryherald.com/images/sponsor/ -# ||caledonianrecord.com/SiteImages/Tile/ (easylistchina+easylist.txt: 42444) -.caledonianrecord.com/SiteImages/Tile/ -# ||caledonianrecord.com/SiteImages/HomePageTiles/ (easylistchina+easylist.txt: 42443) -.caledonianrecord.com/SiteImages/HomePageTiles/ -# ||caledonianrecord.com/iFrame_ (easylistchina+easylist.txt: 42442) -.caledonianrecord.com/iFrame_ -# ||caladvocate.com/images/banner- (easylistchina+easylist.txt: 42441) -.caladvocate.com/images/banner- -# ||cafonline.com^*/sponsors/ (easylistchina+easylist.txt: 42440) -.cafonline.com/.*/sponsors/ -# ||cafimg.com/images/other/ (easylistchina+easylist.txt: 42439) -.cafimg.com/images/other/ -# ||cafemomstatic.com/images/background/$image (easylistchina+easylist.txt: 42438) -.cafemomstatic.com/images/background/ -# ||cadvv.koreaherald.com^ (easylistchina+easylist.txt: 42437) -.cadvv.koreaherald.com -# ||cadvv.heraldm.com^ (easylistchina+easylist.txt: 42436) -.cadvv.heraldm.com -# ||cadplace.co.uk/banner/ (easylistchina+easylist.txt: 42435) -.cadplace.co.uk/banner/ -# ||caclubindia.com/campaign/ (easylistchina+easylist.txt: 42434) -.caclubindia.com/campaign/ -# ||c9tk.com/images/banner/ (easylistchina+easylist.txt: 42433) -.c9tk.com/images/banner/ -# ||c21media.net/wp-content/plugins/sam-images/ (easylistchina+easylist.txt: 42432) -.c21media.net/wp-content/plugins/sam-images/ -# ||c-ville.com/image/pool/ (easylistchina+easylist.txt: 42431) -.c-ville.com/image/pool/ -# ||c-sharpcorner.com^*/banners/ (easylistchina+easylist.txt: 42430) -.c-sharpcorner.com/.*/banners/ -# ||bypassoxy.com/vectrotunnel-banner.gif (easylistchina+easylist.txt: 42429) -.bypassoxy.com/vectrotunnel-banner\.gif -# ||bwp.theinsider.com.com^ (easylistchina+easylist.txt: 42428) -.bwp.theinsider.com.com -# ||bvibeacon.com^*/banners/ (easylistchina+easylist.txt: 42427) -.bvibeacon.com/.*/banners/ -# ||buzznet.com/topscript.js.php? (easylistchina+easylist.txt: 42426) -.buzznet.com/topscript\.js\.php\? -# ||buzzintown.com/show_bnr.php? (easylistchina+easylist.txt: 42425) -.buzzintown.com/show_bnr\.php\? -# ||buyselltrade.ca/banners/ (easylistchina+easylist.txt: 42424) -.buyselltrade.ca/banners/ -# ||buy.com/*/textlinks.aspx (easylistchina+easylist.txt: 42423) -.buy.com/.*/textlinks\.aspx -# ||buy-n-shoot.com/images/banners/banner- (easylistchina+easylist.txt: 42422) -.buy-n-shoot.com/images/banners/banner- -# ||busiweek.com^*/banners/ (easylistchina+easylist.txt: 42421) -.busiweek.com/.*/banners/ -# ||bundesliga.com^*/_partner/ (easylistchina+easylist.txt: 42420) -.bundesliga.com/.*/_partner/ -# ||btmon.com/da/$subdocument (easylistchina+easylist.txt: 42419) -.btmon.com/da/ -# ||btkitty.org/static/images/880X60.gif (easylistchina+easylist.txt: 42418) -.btkitty.org/static/images/880X60\.gif -# ||btkitty.com/static/images/880X60.gif (easylistchina+easylist.txt: 42417) -.btkitty.com/static/images/880X60\.gif -# ||btdigg.org/images/btguard (easylistchina+easylist.txt: 42416) -.btdigg.org/images/btguard -# ||bt.am/banners/ (easylistchina+easylist.txt: 42415) -.bt.am/banners/ -# ||bt-chat.com/images/affiliates/ (easylistchina+easylist.txt: 42414) -.bt-chat.com/images/affiliates/ -# ||bsvc.ebuddy.com/bannerservice/tabsaww (easylistchina+easylist.txt: 42413) -.bsvc.ebuddy.com/bannerservice/tabsaww -# ||bsmphilly.com/files/banners/ (easylistchina+easylist.txt: 42412) -.bsmphilly.com/files/banners/ -# ||brudirect.com/images/banners/ (easylistchina+easylist.txt: 42411) -.brudirect.com/images/banners/ -# ||browsershots.org/static/images/creative/ (easylistchina+easylist.txt: 42410) -.browsershots.org/static/images/creative/ -# ||brownfieldonline.com^*/banners/ (easylistchina+easylist.txt: 42409) -.brownfieldonline.com/.*/banners/ -# ||brothersoft.com^*/softsale/ (easylistchina+easylist.txt: 42408) -.brothersoft.com/.*/softsale/ -# ||brothersoft.com^*/homepage_ppd.html (easylistchina+easylist.txt: 42407) -.brothersoft.com/.*/homepage_ppd\.html -# ||brothersoft.com^*/float.js (easylistchina+easylist.txt: 42406) -.brothersoft.com/.*/float\.js -# ||brothersoft.com/softsale/ (easylistchina+easylist.txt: 42405) -.brothersoft.com/softsale/ -# ||brothersoft.com/gg/top.js (easylistchina+easylist.txt: 42404) -.brothersoft.com/gg/top\.js -# ||brothersoft.com/gg/soft_down.js (easylistchina+easylist.txt: 42403) -.brothersoft.com/gg/soft_down\.js -# ||brothersoft.com/gg/kontera_com.js (easylistchina+easylist.txt: 42402) -.brothersoft.com/gg/kontera_com\.js -# ||brothersoft.com/gg/g.js (easylistchina+easylist.txt: 42401) -.brothersoft.com/gg/g\.js -# ||brothersoft.com/gg/center_gg.js (easylistchina+easylist.txt: 42400) -.brothersoft.com/gg/center_gg\.js -# ||brobible.com/files/uploads/images/takeovers/ (easylistchina+easylist.txt: 42399) -.brobible.com/files/uploads/images/takeovers/ -# ||broadcastingworld.net/marquee- (easylistchina+easylist.txt: 42398) -.broadcastingworld.net/marquee- -# ||broadcastingworld.net/*-promo.jpg (easylistchina+easylist.txt: 42397) -.broadcastingworld.net/.*-promo\.jpg -# ||broadcastify.com/sm/ (easylistchina+easylist.txt: 42396) -.broadcastify.com/sm/ -# ||broadbandgenie.co.uk/img/talktalk/$image (easylistchina+easylist.txt: 42395) -.broadbandgenie.co.uk/img/talktalk/ -# ||broadbandgenie.co.uk/images/takeover/ (easylistchina+easylist.txt: 42394) -.broadbandgenie.co.uk/images/takeover/ -# ||broadbandforum.co/stock/ (easylistchina+easylist.txt: 42393) -.broadbandforum.co/stock/ -# ||broadbandchoices.co.uk/aff.js (easylistchina+easylist.txt: 42392) -.broadbandchoices.co.uk/aff\.js -# ||britishcolumbia.com/sys/ban.asp (easylistchina+easylist.txt: 42391) -.britishcolumbia.com/sys/ban\.asp -# ||brenz.net/img/bannerrss.gif (easylistchina+easylist.txt: 42389) -.brenz.net/img/bannerrss\.gif -# ||breitlingsource.com/images/pflogo.jpg (easylistchina+easylist.txt: 42388) -.breitlingsource.com/images/pflogo\.jpg -# ||breitlingsource.com/images/govberg*.jpg (easylistchina+easylist.txt: 42387) -.breitlingsource.com/images/govberg.*\.jpg -# ||brecorder.com^*/banners/ (easylistchina+easylist.txt: 42386) -.brecorder.com/.*/banners/ -# ||break.com^*/marketguide- (easylistchina+easylist.txt: 42385) -.break.com/.*/marketguide- -# ||brandchannel.com/images/educationconference/ (easylistchina+easylist.txt: 42384) -.brandchannel.com/images/educationconference/ -# ||boxlotto.com/banrotate. (easylistchina+easylist.txt: 42380) -.boxlotto.com/banrotate\. -# ||boulderjewishnews.org^*/JFSatHome-3.gif (easylistchina+easylist.txt: 42379) -.boulderjewishnews.org/.*/JFSatHome-3\.gif -# ||botswanaguardian.co.bw/images/banners/ (easylistchina+easylist.txt: 42378) -.botswanaguardian.co.bw/images/banners/ -# ||bom.gov.au/includes/marketing2.php? (easylistchina+easylist.txt: 42376) -.bom.gov.au/includes/marketing2\.php\? -# ||bolandrugby.com/images/sponsors. (easylistchina+easylist.txt: 42375) -.bolandrugby.com/images/sponsors\. -# ||bnrs.ilm.ee^ (easylistchina+easylist.txt: 42374) -.bnrs.ilm.ee -# ||bn0.com/4v4.js (easylistchina+easylist.txt: 42373) -.bn0.com/4v4\.js -# ||bloomberg.com^*/banner.js (easylistchina+easylist.txt: 42372) -.bloomberg.com/.*/banner\.js -# ||blogspider.net/images/promo/ (easylistchina+easylist.txt: 42371) -.blogspider.net/images/promo/ -# ||blogsmithmedia.com^*_skin_ (easylistchina+easylist.txt: 42369) -.blogsmithmedia.com/.*_skin_ -# ||blogsmithmedia.com^*_skin. (easylistchina+easylist.txt: 42368) -.blogsmithmedia.com/.*_skin\. -# ||blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments.png (easylistchina+easylist.txt: 42367) -.blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments\.png -# ||blogorama.com/images/banners/ (easylistchina+easylist.txt: 42366) -.blogorama.com/images/banners/ -# ||blogevaluation.com/templates/userfiles/banners/ (easylistchina+easylist.txt: 42365) -.blogevaluation.com/templates/userfiles/banners/ -# ||blog.co.uk/script/blogs/afc.js (easylistchina+easylist.txt: 42364) -.blog.co.uk/script/blogs/afc\.js -# ||blitzdownloads.com/promo/ (easylistchina+easylist.txt: 42363) -.blitzdownloads.com/promo/ -# ||blip.fm/ad/ (easylistchina+easylist.txt: 42362) -.blip.fm/ad/ -# ||blinkx.com/adhocnetwork/ (easylistchina+easylist.txt: 42361) -.blinkx.com/adhocnetwork/ -# ||bleacherreport.net^*_redesign_skin_ (easylistchina+easylist.txt: 42360) -.bleacherreport.net/.*_redesign_skin_ -# ||bleacherreport.net/images/skins/ (easylistchina+easylist.txt: 42359) -.bleacherreport.net/images/skins/ -# ||blbclassic.org/assets/images/*banners/ (easylistchina+easylist.txt: 42358) -.blbclassic.org/assets/images/.*banners/ -# ||blasternation.com/images/hearthstone.jpg (easylistchina+easylist.txt: 42357) -.blasternation.com/images/hearthstone\.jpg -# ||blackpressusa.com^*300x250. (easylistchina+easylist.txt: 42356) -.blackpressusa.com/.*300x250\. -# ||blackpressusa.com^*300by250. (easylistchina+easylist.txt: 42355) -.blackpressusa.com/.*300by250\. -# ||blackpressusa.com^*250by300. (easylistchina+easylist.txt: 42354) -.blackpressusa.com/.*250by300\. -# ||blackpressusa.com^*/Ford.jpg (easylistchina+easylist.txt: 42353) -.blackpressusa.com/.*/Ford\.jpg -# ||blacklistednews.com/images/*banner (easylistchina+easylist.txt: 42352) -.blacklistednews.com/images/.*banner -# ||blackhatlibrary.net/hacktalk.png (easylistchina+easylist.txt: 42351) -.blackhatlibrary.net/hacktalk\.png -# ||blackchronicle.com/images/Banners- (easylistchina+easylist.txt: 42350) -.blackchronicle.com/images/Banners- -# ||blackberryforums.net/banners/ (easylistchina+easylist.txt: 42349) -.blackberryforums.net/banners/ -# ||bkmag.com/binary/*/1380x800_ (easylistchina+easylist.txt: 42348) -.bkmag.com/binary/.*/1380x800_ -# ||bizhub.vn^*/agoda-for-bizhub.jpg (easylistchina+easylist.txt: 42347) -.bizhub.vn/.*/agoda-for-bizhub\.jpg -# ||bizarremag.com/images/skin_ (easylistchina+easylist.txt: 42346) -.bizarremag.com/images/skin_ -# ||bizanti.youwatch.org^ (easylistchina+easylist.txt: 42345) -.bizanti.youwatch.org -# ||bittorrent.am/banners/ (easylistchina+easylist.txt: 42344) -.bittorrent.am/banners/ -# ||bitreactor.to/static/subpage$subdocument (easylistchina+easylist.txt: 42343) -.bitreactor.to/static/subpage -# ||bitreactor.to/sponsor/ (easylistchina+easylist.txt: 42342) -.bitreactor.to/sponsor/ -# ||bitminter.com/images/info/spondoolies (easylistchina+easylist.txt: 42341) -.bitminter.com/images/info/spondoolies -# ||bitcoinreviewer.com/wp-content/uploads/*/banner-luckybit.jpg (easylistchina+easylist.txt: 42340) -.bitcoinreviewer.com/wp-content/uploads/.*/banner-luckybit\.jpg -# ||bitcoinist.net/wp-content/uploads/*_250x250_ (easylistchina+easylist.txt: 42339) -.bitcoinist.net/wp-content/uploads/.*_250x250_ -# ||bitcoinist.net/wp-content/*/630x80-bitcoinist.gif (easylistchina+easylist.txt: 42338) -.bitcoinist.net/wp-content/.*/630x80-bitcoinist\.gif -# ||bit-tech.net/images/backgrounds/skin/ (easylistchina+easylist.txt: 42337) -.bit-tech.net/images/backgrounds/skin/ -# ||binsearch.info/iframe.php (easylistchina+easylist.txt: 42335) -.binsearch.info/iframe\.php -# ||bikeradar.com/media/img/commercial/ (easylistchina+easylist.txt: 42333) -.bikeradar.com/media/img/commercial/ -# ||bikeforums.net/images/sponsors/ (easylistchina+easylist.txt: 42332) -.bikeforums.net/images/sponsors/ -# ||bigsports.tv/live/ado.php (easylistchina+easylist.txt: 42331) -.bigsports.tv/live/ado\.php -# ||bigpoint.com/xml/recommender.swf? (easylistchina+easylist.txt: 42330) -.bigpoint.com/xml/recommender\.swf\? -# ||bigeddieradio.com/uploads/sponsors/ (easylistchina+easylist.txt: 42329) -.bigeddieradio.com/uploads/sponsors/ -# ||bibme.org/images/grammarly/ (easylistchina+easylist.txt: 42328) -.bibme.org/images/grammarly/ -# ||bettyconfidential.com/media/fmads/ (easylistchina+easylist.txt: 42326) -.bettyconfidential.com/media/fmads/ -# ||bettingsports.com/where_to_bet (easylistchina+easylist.txt: 42325) -.bettingsports.com/where_to_bet -# ||bettingsports.com/top_bonuses (easylistchina+easylist.txt: 42324) -.bettingsports.com/top_bonuses -# ||better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend.png (easylistchina+easylist.txt: 42323) -.better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend\.png -# ||better-explorer.com/wp-content/uploads/2013/07/hf.5.png (easylistchina+easylist.txt: 42322) -.better-explorer.com/wp-content/uploads/2013/07/hf\.5\.png -# ||better-explorer.com/wp-content/uploads/2012/09/credits.png (easylistchina+easylist.txt: 42321) -.better-explorer.com/wp-content/uploads/2012/09/credits\.png -# ||bets4free.co.uk/content/5481b452d9ce40.09507031.jpg (easylistchina+easylist.txt: 42320) -.bets4free.co.uk/content/5481b452d9ce40\.09507031\.jpg -# ||bestvpn.com/wp-content/uploads/*/mosttrustedname_260x300_ (easylistchina+easylist.txt: 42319) -.bestvpn.com/wp-content/uploads/.*/mosttrustedname_260x300_ -# ||bestlistonline.info/link/ad.js (easylistchina+easylist.txt: 42318) -.bestlistonline.info/link/ad\.js -# ||bestblackhatforum.com/images/my_compas/ (easylistchina+easylist.txt: 42317) -.bestblackhatforum.com/images/my_compas/ -# ||bernama.com/banner/ (easylistchina+easylist.txt: 42316) -.bernama.com/banner/ -# ||benchmarkreviews.com^*/banners/ (easylistchina+easylist.txt: 42315) -.benchmarkreviews.com/.*/banners/ -# ||bellevision.com/belle/adds/ (easylistchina+easylist.txt: 42314) -.bellevision.com/belle/adds/ -# ||bellanaija.com^*/wp-banners/ (easylistchina+easylist.txt: 42313) -.bellanaija.com/.*/wp-banners/ -# ||belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img.js (easylistchina+easylist.txt: 42312) -.belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img\.js -# ||beingpc.com^*/banners/ (easylistchina+easylist.txt: 42311) -.beingpc.com/.*/banners/ -# ||beforeitsnews.com/static/iframe/ (easylistchina+easylist.txt: 42310) -.beforeitsnews.com/static/iframe/ -# ||beforeitsnews.com/static/data/story-stripmall-new.html (easylistchina+easylist.txt: 42309) -.beforeitsnews.com/static/data/story-stripmall-new\.html -# ||beap.gemini.yahoo.com^ (easylistchina+easylist.txt: 42308) -.beap.gemini.yahoo.com -# ||bdnews24.com^*/Ads/ (easylistchina+easylist.txt: 42307) -.bdnews24.com/.*/Ads/ -# ||bcdb.com^*/banners.pl? (easylistchina+easylist.txt: 42306) -.bcdb.com/.*/banners\.pl\? -# ||bbc.com^*/logoDupontSmall.png (easylistchina+easylist.txt: 42305) -.bbc.com/.*/logoDupontSmall\.png -# ||bbc.co.uk^*/bbccom.js? (easylistchina+easylist.txt: 42304) -.bbc.co.uk/.*/bbccom\.js\? -# ||bazaraki.com/bannerImage.php? (easylistchina+easylist.txt: 42303) -.bazaraki.com/bannerImage\.php\? -# ||baymirror.com/static/js/4728ba74bc.js (easylistchina+easylist.txt: 42302) -.baymirror.com/static/js/4728ba74bc\.js -# ||baymirror.com/static/img/bar.gif (easylistchina+easylist.txt: 42301) -.baymirror.com/static/img/bar\.gif -# ||bayfiles.net/img/download-button-orange.png (easylistchina+easylist.txt: 42300) -.bayfiles.net/img/download-button-orange\.png -# ||bay.com.mt/modules/mod_novarp/ (easylistchina+easylist.txt: 42299) -.bay.com.mt/modules/mod_novarp/ -# ||bay.com.mt/images/banners/ (easylistchina+easylist.txt: 42298) -.bay.com.mt/images/banners/ -# ||bassmaster.com^*/premier_sponsor_logo/ (easylistchina+easylist.txt: 42297) -.bassmaster.com/.*/premier_sponsor_logo/ -# ||basinsradio.com/images/banners/ (easylistchina+easylist.txt: 42296) -.basinsradio.com/images/banners/ -# ||bashandslash.com/images/banners/ (easylistchina+easylist.txt: 42295) -.bashandslash.com/images/banners/ -# ||baseballamerica.com/plugs/ (easylistchina+easylist.txt: 42294) -.baseballamerica.com/plugs/ -# ||barnesandnoble.com/promo/ (easylistchina+easylist.txt: 42293) -.barnesandnoble.com/promo/ -# ||banners.playocio.com^ (easylistchina+easylist.txt: 42292) -.banners.playocio.com -# ||banners.itweb.co.za^ (easylistchina+easylist.txt: 42291) -.banners.itweb.co.za -# ||banners.i-comers.com^ (easylistchina+easylist.txt: 42290) -.banners.i-comers.com -# ||banners.friday-ad.co.uk/hpbanneruploads/$image (easylistchina+easylist.txt: 42289) -.banners.friday-ad.co.uk/hpbanneruploads/ -# ||banners.expressindia.com^ (easylistchina+easylist.txt: 42288) -.banners.expressindia.com -# ||banners.clubworldgroup.com^ (easylistchina+easylist.txt: 42287) -.banners.clubworldgroup.com -# ||banners.beted.com^ (easylistchina+easylist.txt: 42286) -.banners.beted.com -# ||banners.beevpn.com^ (easylistchina+easylist.txt: 42285) -.banners.beevpn.com -# ||banner.itweb.co.za^ (easylistchina+easylist.txt: 42284) -.banner.itweb.co.za -# ||banner.automotiveworld.com^ (easylistchina+easylist.txt: 42283) -.banner.automotiveworld.com -# ||ballz.co.za^*/CLIENTS/ (easylistchina+easylist.txt: 42282) -.ballz.co.za/.*/CLIENTS/ -# ||ballz.co.za/system-files/banners/ (easylistchina+easylist.txt: 42281) -.ballz.co.za/system-files/banners/ -# ||ballislife.com^*/ova-player.swf$object-subrequest (easylistchina+easylist.txt: 42280) -.ballislife.com/.*/ova-player\.swf -# ||ballerarcade.com/ispark/ (easylistchina+easylist.txt: 42279) -.ballerarcade.com/ispark/ -# ||baku2015.com/imgml/sponsor/ (easylistchina+easylist.txt: 42278) -.baku2015.com/imgml/sponsor/ -# ||bakercountypress.com/images/banners/ (easylistchina+easylist.txt: 42277) -.bakercountypress.com/images/banners/ -# ||baixartv.com/img/bonsdescontos. (easylistchina+easylist.txt: 42276) -.baixartv.com/img/bonsdescontos\. -# ||bahamaslocal.com/img/banners/ (easylistchina+easylist.txt: 42275) -.bahamaslocal.com/img/banners/ -# ||badongo.com^*_banner_ (easylistchina+easylist.txt: 42274) -.badongo.com/.*_banner_ -# ||backpagelead.com.au/images/banners/ (easylistchina+easylist.txt: 42273) -.backpagelead.com.au/images/banners/ -# ||backin.net/s/promo/ (easylistchina+easylist.txt: 42272) -.backin.net/s/promo/ -# ||babycenter.com/viewadvertorialpoll.htm (easylistchina+easylist.txt: 42271) -.babycenter.com/viewadvertorialpoll\.htm -# ||babelzilla.org/images/banners/babelzilla-powerfox.png (easylistchina+easylist.txt: 42270) -.babelzilla.org/images/banners/babelzilla-powerfox\.png -# ||babelzilla.org/forum/images/powerfox-top.png (easylistchina+easylist.txt: 42269) -.babelzilla.org/forum/images/powerfox-top\.png -# ||ba.kioskea.net^ (easylistchina+easylist.txt: 42268) -.ba.kioskea.net -# ||ba.ccm2.net^ (easylistchina+easylist.txt: 42267) -.ba.ccm2.net -# ||b92.net/images/banners/ (easylistchina+easylist.txt: 42266) -.b92.net/images/banners/ -# ||b.thefile.me^ (easylistchina+easylist.txt: 42265) -.b.thefile.me -# ||b.localpages.com^ (easylistchina+easylist.txt: 42264) -.b.localpages.com -# ||azlyrics.com^*_az.js (easylistchina+easylist.txt: 42263) -.azlyrics.com/.*_az\.js -# ||azcs.co.uk^*/backgrounds/rotate.php (easylistchina+easylist.txt: 42262) -.azcs.co.uk/.*/backgrounds/rotate\.php -# ||azcentral.com/incs/dfp-refresh.php.inc? (easylistchina+easylist.txt: 42261) -.azcentral.com/incs/dfp-refresh\.php\.inc\? -# ||awkwardfamilyphotos.com*/?ad= (easylistchina+easylist.txt: 42260) -.awkwardfamilyphotos.com*./(.*/)?\?ad= -# ||avstop.com/avbanner/ (easylistchina+easylist.txt: 42259) -.avstop.com/avbanner/ -# ||avsforum.com/alliance/ (easylistchina+easylist.txt: 42258) -.avsforum.com/alliance/ -# ||avpa.dzone.com^ (easylistchina+easylist.txt: 42257) -.avpa.dzone.com -# ||avn.com/delivery/ (easylistchina+easylist.txt: 42256) -.avn.com/delivery/ -# ||avitop.com/image/mig.gif (easylistchina+easylist.txt: 42255) -.avitop.com/image/mig\.gif -# ||avitop.com/image/mig-anim.gif (easylistchina+easylist.txt: 42254) -.avitop.com/image/mig-anim\.gif -# ||avitop.com/image/amazon/ (easylistchina+easylist.txt: 42253) -.avitop.com/image/amazon/ -# ||aviationweek.com^*/leader_board.htm (easylistchina+easylist.txt: 42252) -.aviationweek.com/.*/leader_board\.htm -# ||avforums.com/images/skins/ (easylistchina+easylist.txt: 42251) -.avforums.com/images/skins/ -# ||aveherald.com/images/banners/ (easylistchina+easylist.txt: 42250) -.aveherald.com/images/banners/ -# ||autoworld.co.za^*/ads/ (easylistchina+easylist.txt: 42248) -.autoworld.co.za/.*/ads/ -# ||autosport.com/skinning/ (easylistchina+easylist.txt: 42247) -.autosport.com/skinning/ -# ||autoline.info/atlads/ (easylistchina+easylist.txt: 42246) -.autoline.info/atlads/ -# ||autoline-eu.ie/atlads/ (easylistchina+easylist.txt: 42245) -.autoline-eu.ie/atlads/ -# ||autoline-eu.co.za/atlads/ (easylistchina+easylist.txt: 42244) -.autoline-eu.co.za/atlads/ -# ||autoline-eu.co.uk/atlads/ (easylistchina+easylist.txt: 42243) -.autoline-eu.co.uk/atlads/ -# ||auto123.com/sasserve.spy (easylistchina+easylist.txt: 42242) -.auto123.com/sasserve\.spy -# ||at膽he.net/pu/ (easylistchina+easylist.txt: 42240) -.at膽he.net/pu/ -# ||attitude.co.uk/images/Music_Ticket_Button_ (easylistchina+easylist.txt: 42239) -.attitude.co.uk/images/Music_Ticket_Button_ -# ||atimes.com^*/ahm728x90.swf (easylistchina+easylist.txt: 42238) -.atimes.com/.*/ahm728x90\.swf -# ||atimes.com/banner/ (easylistchina+easylist.txt: 42237) -.atimes.com/banner/ -# ||atdhe.ws/pp.js (easylistchina+easylist.txt: 42236) -.atdhe.ws/pp\.js -# ||astronomynow.com/wp-content/promos/ (easylistchina+easylist.txt: 42235) -.astronomynow.com/wp-content/promos/ -# ||astronomy.com/sitefiles/overlays/overlaygenerator.aspx? (easylistchina+easylist.txt: 42234) -.astronomy.com/sitefiles/overlays/overlaygenerator\.aspx\? -# ||astalavista.com^*/sponsor- (easylistchina+easylist.txt: 42233) -.astalavista.com/.*/sponsor- -# ||astalavista.com/avtng/ (easylistchina+easylist.txt: 42232) -.astalavista.com/avtng/ -# ||askbobrankin.com/awpopup*.js (easylistchina+easylist.txt: 42231) -.askbobrankin.com/awpopup.*\.js -# ||askandyaboutclothes.com/images/$~third-party (easylistchina+easylist.txt: 42230) -.askandyaboutclothes.com/images/ -# ||ask.com/fifdart? (easylistchina+easylist.txt: 42229) -.ask.com/fifdart\? -# ||ask.com/display.html? (easylistchina+easylist.txt: 42228) -.ask.com/display\.html\? -# ||asianewsnet.net/banner/ (easylistchina+easylist.txt: 42227) -.asianewsnet.net/banner/ -# ||asd.projectfreetv.so^ (easylistchina+easylist.txt: 42226) -.asd.projectfreetv.so -# ||as.inbox.com^ (easylistchina+easylist.txt: 42225) -.as.inbox.com -# ||artima.com/zcr/ (easylistchina+easylist.txt: 42224) -.artima.com/zcr/ -# ||arstechnica.net^*/sponsor- (easylistchina+easylist.txt: 42223) -.arstechnica.net/.*/sponsor- -# ||arstechnica.net/public/shared/scripts/da- (easylistchina+easylist.txt: 42222) -.arstechnica.net/public/shared/scripts/da- -# ||arsenal-mania.com/images/backsplash_ (easylistchina+easylist.txt: 42221) -.arsenal-mania.com/images/backsplash_ -# ||aroundosceola.com/banner- (easylistchina+easylist.txt: 42220) -.aroundosceola.com/banner- -# ||arnnet.com.au/files/skins/ (easylistchina+easylist.txt: 42219) -.arnnet.com.au/files/skins/ -# ||armyrecognition.com^*/customer/ (easylistchina+easylist.txt: 42218) -.armyrecognition.com/.*/customer/ -# ||armslist.com/images/sponsors/ (easylistchina+easylist.txt: 42217) -.armslist.com/images/sponsors/ -# ||armorgames.com^*/siteskin.css (easylistchina+easylist.txt: 42216) -.armorgames.com/.*/siteskin\.css -# ||armorgames.com^*/site-skins/ (easylistchina+easylist.txt: 42215) -.armorgames.com/.*/site-skins/ -# ||armorgames.com^*/banners/ (easylistchina+easylist.txt: 42214) -.armorgames.com/.*/banners/ -# ||armorgames.com/backup_ (easylistchina+easylist.txt: 42213) -.armorgames.com/backup_ -# ||armorgames.com/assets/*_skin_ (easylistchina+easylist.txt: 42212) -.armorgames.com/assets/.*_skin_ -# ||arenadb.net^*/banners/ (easylistchina+easylist.txt: 42211) -.arenadb.net/.*/banners/ -# ||arenabg.com^*/banners/ (easylistchina+easylist.txt: 42210) -.arenabg.com/.*/banners/ -# ||archeagedatabase.net/images/okaygoods.gif (easylistchina+easylist.txt: 42209) -.archeagedatabase.net/images/okaygoods\.gif -# ||aravot.am/banner/ (easylistchina+easylist.txt: 42208) -.aravot.am/banner/ -# ||ar15.com^*_60x180.jpg (easylistchina+easylist.txt: 42207) -.ar15.com/.*_60x180\.jpg -# ||ar15.com/images/highlight/ (easylistchina+easylist.txt: 42206) -.ar15.com/images/highlight/ -# ||ar15.com/biz/ (easylistchina+easylist.txt: 42205) -.ar15.com/biz/ -# ||aps.dz^*/banners/ (easylistchina+easylist.txt: 42204) -.aps.dz/.*/banners/ -# ||appwork.org/a_d_s/ (easylistchina+easylist.txt: 42203) -.appwork.org/a_d_s/ -# ||appspot.com/adop/ (easylistchina+easylist.txt: 42202) -.appspot.com/adop/ -# ||applifier.com/bar.htm? (easylistchina+easylist.txt: 42201) -.applifier.com/bar\.htm\? -# ||appleserialnumberinfo.com/desktop/sdas/$subdocument (easylistchina+easylist.txt: 42200) -.appleserialnumberinfo.com/desktop/sdas/ -# ||appleinsider.com^*/ai_front_page_google_premium.js (easylistchina+easylist.txt: 42199) -.appleinsider.com/.*/ai_front_page_google_premium\.js -# ||appleinsider.com/macmall (easylistchina+easylist.txt: 42198) -.appleinsider.com/macmall -# ||api.toptenreviews.com^*/request.php (easylistchina+easylist.txt: 42197) -.api.toptenreviews.com/.*/request\.php -# ||apcointl.org/images/corporate_partners/ (easylistchina+easylist.txt: 42196) -.apcointl.org/images/corporate_partners/ -# ||apanews.net/pub/ (easylistchina+easylist.txt: 42195) -.apanews.net/pub/ -# ||apa.az^*/rebans/ (easylistchina+easylist.txt: 42194) -.apa.az/.*/rebans/ -# ||aolcdn.com/os/moat/$script (easylistchina+easylist.txt: 42192) -.aolcdn.com/os/moat/ -# ||aol.co.uk/images/skybet-logo.gif (easylistchina+easylist.txt: 42191) -.aol.co.uk/images/skybet-logo\.gif -# ||anvisoft.com^*/anviad.jpg (easylistchina+easylist.txt: 42190) -.anvisoft.com/.*/anviad\.jpg -# ||anti-scam.org/abanners/ (easylistchina+easylist.txt: 42189) -.anti-scam.org/abanners/ -# ||anti-leech.com/al.php? (easylistchina+easylist.txt: 42188) -.anti-leech.com/al\.php\? -# ||antag.co.uk/js/ov.js.php? (easylistchina+easylist.txt: 42187) -.antag.co.uk/js/ov\.js\.php\? -# ||answerology.com/index.aspx?*=ads.ascx (easylistchina+easylist.txt: 42186) -.answerology.com/index\.aspx\?.*=ads\.ascx -# ||anonytext.tk/re.php (easylistchina+easylist.txt: 42185) -.anonytext.tk/re\.php -# ||anonytext.tk/img/paste-sponsor.png (easylistchina+easylist.txt: 42184) -.anonytext.tk/img/paste-sponsor\.png -# ||anonytext.tk/img/paste-eb.png (easylistchina+easylist.txt: 42183) -.anonytext.tk/img/paste-eb\.png -# ||anonib.com/zimages/ (easylistchina+easylist.txt: 42182) -.anonib.com/zimages/ -# ||annistonstar.com/leaderboard_banner (easylistchina+easylist.txt: 42181) -.annistonstar.com/leaderboard_banner -# ||aniscartujo.com^*/layer.js (easylistchina+easylist.txt: 42180) -.aniscartujo.com/.*/layer\.js -# ||animeshippuuden.com/square.php (easylistchina+easylist.txt: 42179) -.animeshippuuden.com/square\.php -# ||animeshippuuden.com/adcpm.js (easylistchina+easylist.txt: 42178) -.animeshippuuden.com/adcpm\.js -# ||animenewsnetwork.com^*.aframe? (easylistchina+easylist.txt: 42177) -.animenewsnetwork.com/.*\.aframe\? -# ||animenewsnetwork.com/stylesheets/*skin$image (easylistchina+easylist.txt: 42176) -.animenewsnetwork.com/stylesheets/.*skin -# ||animehaven.org/wp-content/banners/ (easylistchina+easylist.txt: 42175) -.animehaven.org/wp-content/banners/ -# ||animefushigi.com/boxes/ (easylistchina+easylist.txt: 42174) -.animefushigi.com/boxes/ -# ||animeflv.net/cpm.html (easylistchina+easylist.txt: 42173) -.animeflv.net/cpm\.html -# ||animeflavor.com/animeflavor-gao-gamebox.swf (easylistchina+easylist.txt: 42172) -.animeflavor.com/animeflavor-gao-gamebox\.swf -# ||animea.net/do/ (easylistchina+easylist.txt: 42171) -.animea.net/do/ -# ||anime44.com/images/videobb2.png (easylistchina+easylist.txt: 42170) -.anime44.com/images/videobb2\.png -# ||anime44.com/anime44box.jpg (easylistchina+easylist.txt: 42169) -.anime44.com/anime44box\.jpg -# ||anime1.com/service/joyfun/ (easylistchina+easylist.txt: 42168) -.anime1.com/service/joyfun/ -# ||anime-source.com/banzai/banner.$subdocument (easylistchina+easylist.txt: 42167) -.anime-source.com/banzai/banner\. -# ||animationxpress.com/anex/solutions/ (easylistchina+easylist.txt: 42166) -.animationxpress.com/anex/solutions/ -# ||animationxpress.com/anex/crosspromotions/ (easylistchina+easylist.txt: 42165) -.animationxpress.com/anex/crosspromotions/ -# ||anilinkz.tv/kwarta- (easylistchina+easylist.txt: 42164) -.anilinkz.tv/kwarta- -# ||anilinkz.com/img/rightsponsors (easylistchina+easylist.txt: 42163) -.anilinkz.com/img/rightsponsors -# ||anilinkz.com/img/leftsponsors. (easylistchina+easylist.txt: 42162) -.anilinkz.com/img/leftsponsors\. -# ||anhits.com/files/banners/ (easylistchina+easylist.txt: 42161) -.anhits.com/files/banners/ -# ||androidpolice.com/wp-content/*/images/das/ (easylistchina+easylist.txt: 42160) -.androidpolice.com/wp-content/.*/images/das/ -# ||androidcommunity.com/external_marketing/$subdocument (easylistchina+easylist.txt: 42159) -.androidcommunity.com/external_marketing/ -# ||andr.net/banners/ (easylistchina+easylist.txt: 42158) -.andr.net/banners/ -# ||anchorfree.net^*/?tm=$subdocument (easylistchina+easylist.txt: 42157) -.anchorfree.net/.*/\?tm= -# ||anchorfree.net/?tm=$subdocument (easylistchina+easylist.txt: 42156) -.anchorfree.net/\?tm= -# ||anchorfree.com/delivery/ (easylistchina+easylist.txt: 42155) -.anchorfree.com/delivery/ -# ||anamera.com/DesktopModules/BannerDisplay/ (easylistchina+easylist.txt: 42154) -.anamera.com/DesktopModules/BannerDisplay/ -# ||analytics.mmosite.com^ (easylistchina+easylist.txt: 42153) -.analytics.mmosite.com -# ||amz.steamprices.com^ (easylistchina+easylist.txt: 42152) -.amz.steamprices.com -# ||amnesty.ca/images/banners/ (easylistchina+easylist.txt: 42151) -.amnesty.ca/images/banners/ -# ||americanfreepress.net/assets/images/Banner_ (easylistchina+easylist.txt: 42150) -.americanfreepress.net/assets/images/Banner_ -# ||americanangler.com/images/banners/ (easylistchina+easylist.txt: 42149) -.americanangler.com/images/banners/ -# ||amd.com/publishingimages/*/master_ (easylistchina+easylist.txt: 42148) -.amd.com/publishingimages/.*/master_ -# ||ambriefonline.com^*/banners/ (easylistchina+easylist.txt: 42147) -.ambriefonline.com/.*/banners/ -# ||amazonaws.com/files.bannersnack.com/ (easylistchina+easylist.txt: 42140) -.amazonaws.com/files\.bannersnack\.com/ -# ||amazonaws.com/cdn.megacpm.com/ (easylistchina+easylist.txt: 42137) -.amazonaws.com/cdn\.megacpm\.com/ -# ||amazon.com/aan/$subdocument (easylistchina+easylist.txt: 42136) -.amazon.com/aan/ -# ||amazingmoneymagnet.com//upload/banners/ (easylistchina+easylist.txt: 42135) -# ||alternet.org/givememygfp. (easylistchina+easylist.txt: 42134) -.alternet.org/givememygfp\. -# ||altdaily.com/images/banners/ (easylistchina+easylist.txt: 42133) -.altdaily.com/images/banners/ -# ||allthelyrics.com^*/popup.js (easylistchina+easylist.txt: 42132) -.allthelyrics.com/.*/popup\.js -# ||allsp.ch/feeder.php (easylistchina+easylist.txt: 42131) -.allsp.ch/feeder\.php -# ||allmyvideos.net^*/pu.js (easylistchina+easylist.txt: 42130) -.allmyvideos.net/.*/pu\.js -# ||allmyvideos.net/player/ova-jw.swf (easylistchina+easylist.txt: 42129) -.allmyvideos.net/player/ova-jw\.swf -# ||allmyvideos.net/js/ad_ (easylistchina+easylist.txt: 42128) -.allmyvideos.net/js/ad_ -# ||allmusic.com^*_affiliate_ (easylistchina+easylist.txt: 42127) -.allmusic.com/.*_affiliate_ -# ||allmovieportal.com/dynbanner. (easylistchina+easylist.txt: 42126) -.allmovieportal.com/dynbanner\. -# ||allmovie.com^*/affiliate_ (easylistchina+easylist.txt: 42125) -.allmovie.com/.*/affiliate_ -# ||allkpop.com^*/takeover/ (easylistchina+easylist.txt: 42124) -.allkpop.com/.*/takeover/ -# ||allhiphop.com/site_resources/ui-images/*-conduit-banner.gif (easylistchina+easylist.txt: 42123) -.allhiphop.com/site_resources/ui-images/.*-conduit-banner\.gif -# ||allghananews.com/images/banners/ (easylistchina+easylist.txt: 42122) -.allghananews.com/images/banners/ -# ||all4divx.com/js/jscode2.js (easylistchina+easylist.txt: 42121) -.all4divx.com/js/jscode2\.js -# ||alatest.com/banner/ (easylistchina+easylist.txt: 42120) -.alatest.com/banner/ -# ||alatest.co.uk/banner/ (easylistchina+easylist.txt: 42119) -.alatest.co.uk/banner/ -# ||alaska-native-news.com/files/banners/ (easylistchina+easylist.txt: 42118) -.alaska-native-news.com/files/banners/ -# ||alarabiya.net/dms/takeover/ (easylistchina+easylist.txt: 42117) -.alarabiya.net/dms/takeover/ -# ||alachuacountytoday.com/images/banners/ (easylistchina+easylist.txt: 42116) -.alachuacountytoday.com/images/banners/ -# ||akipress.org/bimages/ (easylistchina+easylist.txt: 42115) -.akipress.org/bimages/ -# ||akipress.org/ban/ (easylistchina+easylist.txt: 42114) -.akipress.org/ban/ -# ||akipress.com/_ban/ (easylistchina+easylist.txt: 42113) -.akipress.com/_ban/ -# ||akinator.com/publicite_ (easylistchina+easylist.txt: 42112) -.akinator.com/publicite_ -# ||akiba-online.com/forum/images/bs.gif (easylistchina+easylist.txt: 42110) -.akiba-online.com/forum/images/bs\.gif -# ||akamaihd.net/zbar/takeovers/ (easylistchina+easylist.txt: 42108) -.akamaihd.net/zbar/takeovers/ -# ||akamai.net/*/Prerolls/Campaigns/ (easylistchina+easylist.txt: 42107) -.akamai.net/.*/Prerolls/Campaigns/ -# ||ajnad.aljazeera.net^ (easylistchina+easylist.txt: 42106) -.ajnad.aljazeera.net -# ||ahk-usa.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 42105) -.ahk-usa.com/uploads/tx_bannermanagement/ -# ||ahashare.com/cpxt_ (easylistchina+easylist.txt: 42104) -.ahashare.com/cpxt_ -# ||agriculturalreviewonline.com/images/banners/ (easylistchina+easylist.txt: 42103) -.agriculturalreviewonline.com/images/banners/ -# ||afternoondc.in/banners/ (easylistchina+easylist.txt: 42102) -.afternoondc.in/banners/ -# ||africaonline.com.na^*/banners/ (easylistchina+easylist.txt: 42101) -.africaonline.com.na/.*/banners/ -# ||africanbusinessmagazine.com/images/banners/ (easylistchina+easylist.txt: 42100) -.africanbusinessmagazine.com/images/banners/ -# ||afmradio.co.za/images/slider/ (easylistchina+easylist.txt: 42099) -.afmradio.co.za/images/slider/ -# ||afloat.ie^*/banners/ (easylistchina+easylist.txt: 42098) -.afloat.ie/.*/banners/ -# ||affiliatesynergy.com^*/banner_ (easylistchina+easylist.txt: 42097) -.affiliatesynergy.com/.*/banner_ -# ||aff.lmgtfy.com^ (easylistchina+easylist.txt: 42096) -.aff.lmgtfy.com -# ||aetv.com/includes/dart/ (easylistchina+easylist.txt: 42095) -.aetv.com/includes/dart/ -# ||adz.lk^*_ad. (easylistchina+easylist.txt: 42094) -.adz.lk/.*_ad\. -# ||adx.kat.ph^ (easylistchina+easylist.txt: 42093) -.adx.kat.ph -# ||advpc.net/site_img/banner/ (easylistchina+easylist.txt: 42092) -.advpc.net/site_img/banner/ -# ||advice-ads-cdn.vice.com^ (easylistchina+easylist.txt: 42091) -.advice-ads-cdn.vice.com -# ||advfn.com/tf_ (easylistchina+easylist.txt: 42090) -.advfn.com/tf_ -# ||adverts.itv.com^$image (easylistchina+easylist.txt: 42089) -.adverts.itv.com -# ||advertise.twitpic.com^ (easylistchina+easylist.txt: 42088) -.advertise.twitpic.com -# ||advanced-television.com^*/banners/ (easylistchina+easylist.txt: 42087) -.advanced-television.com/.*/banners/ -# ||adv.li/ads/ (easylistchina+easylist.txt: 42086) -.adv.li/ads/ -# ||adtest.theonion.com^ (easylistchina+easylist.txt: 42085) -.adtest.theonion.com -# ||adswikia.com^*display300x250 (easylistchina+easylist.txt: 42084) -.adswikia.com/.*display300x250 -# ||adswikia.com^*banner (easylistchina+easylist.txt: 42083) -.adswikia.com/.*banner -# ||adstil.indiatimes.com^ (easylistchina+easylist.txt: 42082) -.adstil.indiatimes.com -# ||adss.yahoo.com^ (easylistchina+easylist.txt: 42081) -.adss.yahoo.com -# ||adsor.openrunner.com^ (easylistchina+easylist.txt: 42080) -.adsor.openrunner.com -# ||adsl2exchanges.com.au/images/spintel (easylistchina+easylist.txt: 42079) -.adsl2exchanges.com.au/images/spintel -# ||adshare.freedocast.com^ (easylistchina+easylist.txt: 42078) -.adshare.freedocast.com -# ||adsatt.espn.starwave.com^ (easylistchina+easylist.txt: 42077) -.adsatt.espn.starwave.com -# ||adsatt.abcnews.starwave.com^ (easylistchina+easylist.txt: 42076) -.adsatt.abcnews.starwave.com -# ||ads.zynga.com^ (easylistchina+easylist.txt: 42075) -.ads.zynga.com -# ||ads.yahoo.com^ (easylistchina+easylist.txt: 42074) -.ads.yahoo.com -# ||ads.pof.com^ (easylistchina+easylist.txt: 42073) -.ads.pof.com -# ||ads-rolandgarros.com^ (easylistchina+easylist.txt: 42072) -.ads-rolandgarros.com -# ||ads-*.hulu.com^ (easylistchina+easylist.txt: 42071) -.ads-*./.*\.hulu\.com[^\w%.-] -.ads-*.hulu.com -# ||adpost.com^*.g.html (easylistchina+easylist.txt: 42070) -.adpost.com/.*\.g\.html -# ||adpost.com/skyserver.g. (easylistchina+easylist.txt: 42069) -.adpost.com/skyserver\.g\. -# ||adpost.com/rectserver.g. (easylistchina+easylist.txt: 42068) -.adpost.com/rectserver\.g\. -# ||adpost.com/bannerserver.g. (easylistchina+easylist.txt: 42067) -.adpost.com/bannerserver\.g\. -# ||adpaths.com/_aspx/cpcinclude.aspx? (easylistchina+easylist.txt: 42066) -.adpaths.com/_aspx/cpcinclude\.aspx\? -# ||admeta.vo.llnwd.net^ (easylistchina+easylist.txt: 42065) -.admeta.vo.llnwd.net -# ||adlink.shopsafe.co.nz^ (easylistchina+easylist.txt: 42064) -.adlink.shopsafe.co.nz -# ||adirondackmtnclub.com/images/banner/ (easylistchina+easylist.txt: 42063) -.adirondackmtnclub.com/images/banner/ -# ||adifferentleague.co.uk^*/mcad.png (easylistchina+easylist.txt: 42062) -.adifferentleague.co.uk/.*/mcad\.png -# ||adf.ly/networks/ (easylistchina+easylist.txt: 42061) -.adf.ly/networks/ -# ||adf.ly/external/*/int.php (easylistchina+easylist.txt: 42060) -.adf.ly/external/.*/int\.php -# ||adelaidecityfc.com.au/oak.swf (easylistchina+easylist.txt: 42059) -.adelaidecityfc.com.au/oak\.swf -# ||adds.weatherology.com^ (easylistchina+easylist.txt: 42058) -.adds.weatherology.com -# ||addirector.vindicosuite.com^ (easylistchina+easylist.txt: 42057) -.addirector.vindicosuite.com -# ||adcitrus.com^ (easylistchina+easylist.txt: 42056) -.adcitrus.com -# ||adamvstheman.com/wp-content/uploads/*/AVTM_banner.jpg (easylistchina+easylist.txt: 42055) -.adamvstheman.com/wp-content/uploads/.*/AVTM_banner\.jpg -# ||ad.services.distractify.com^ (easylistchina+easylist.txt: 42054) -.ad.services.distractify.com -# ||ad.search.ch^ (easylistchina+easylist.txt: 42053) -.ad.search.ch -# ||ad.reachlocal.com^ (easylistchina+easylist.txt: 42052) -.ad.reachlocal.com -# ||ad.pandora.tv^ (easylistchina+easylist.txt: 42051) -.ad.pandora.tv -# ||ad.newegg.com^ (easylistchina+easylist.txt: 42050) -.ad.newegg.com -# ||ad.mangareader.net^ (easylistchina+easylist.txt: 42049) -.ad.mangareader.net -# ||ad.lyricswire.com^ (easylistchina+easylist.txt: 42048) -.ad.lyricswire.com -# ||ad.jamster.com^ (easylistchina+easylist.txt: 42047) -.ad.jamster.com -# ||ad.fnnews.com^ (easylistchina+easylist.txt: 42046) -.ad.fnnews.com -# ||ad.evozi.com^ (easylistchina+easylist.txt: 42045) -.ad.evozi.com -# ||ad.download.cnet.com^ (easylistchina+easylist.txt: 42044) -.ad.download.cnet.com -# ||ad.directmirror.com^ (easylistchina+easylist.txt: 42043) -.ad.directmirror.com -# ||ad.digitimes.com.tw^ (easylistchina+easylist.txt: 42042) -.ad.digitimes.com.tw -# ||ad.cooks.com^ (easylistchina+easylist.txt: 42041) -.ad.cooks.com -# ||actressarchives.com/takeover/ (easylistchina+easylist.txt: 42040) -.actressarchives.com/takeover/ -# ||activewin.com^*/blaze_static2.gif (easylistchina+easylist.txt: 42039) -.activewin.com/.*/blaze_static2\.gif -# ||activewin.com/images/*_ad.gif (easylistchina+easylist.txt: 42038) -.activewin.com/images/.*_ad\.gif -# ||acs86.com/a.htm? (easylistchina+easylist.txt: 42037) -.acs86.com/a\.htm\? -# ||acidcow.com/banners.php? (easylistchina+easylist.txt: 42036) -.acidcow.com/banners\.php\? -# ||accesshollywood.com/aife?$subdocument (easylistchina+easylist.txt: 42035) -.accesshollywood.com/aife\? -# ||access.njherald.com^ (easylistchina+easylist.txt: 42034) -.access.njherald.com -# ||ac2.msn.com^ (easylistchina+easylist.txt: 42033) -.ac2.msn.com -# ||absolutewrite.com^*_ad.jpg (easylistchina+easylist.txt: 42032) -.absolutewrite.com/.*_ad\.jpg -# ||absolutewrite.com^*_468x60banner. (easylistchina+easylist.txt: 42031) -.absolutewrite.com/.*_468x60banner\. -# ||absolutewrite.com^*/Scrivener-11-thumbnail-cover_160x136.gif (easylistchina+easylist.txt: 42030) -.absolutewrite.com/.*/Scrivener-11-thumbnail-cover_160x136\.gif -# ||absolutewrite.com^*/doyle_editorial.jpg (easylistchina+easylist.txt: 42029) -.absolutewrite.com/.*/doyle_editorial\.jpg -# ||absolutewrite.com^*/48HrBooks4.jpg (easylistchina+easylist.txt: 42028) -.absolutewrite.com/.*/48HrBooks4\.jpg -# ||absolutcheats.com/images/changemy*.gif (easylistchina+easylist.txt: 42027) -.absolutcheats.com/images/changemy.*\.gif -# ||abovetopsecret.com/images/plexidigest-300x300.jpg (easylistchina+easylist.txt: 42026) -.abovetopsecret.com/images/plexidigest-300x300\.jpg -# ||abovetopsecret.com/728_ (easylistchina+easylist.txt: 42025) -.abovetopsecret.com/728_ -# ||abovetopsecret.com/300_ (easylistchina+easylist.txt: 42024) -.abovetopsecret.com/300_ -# ||abovetopsecret.com/160_ (easylistchina+easylist.txt: 42023) -.abovetopsecret.com/160_ -# ||aboutmyip.com/images/SynaManBanner.gif (easylistchina+easylist.txt: 42022) -.aboutmyip.com/images/SynaManBanner\.gif -# ||aboutmyip.com/images/Ad0 (easylistchina+easylist.txt: 42021) -.aboutmyip.com/images/Ad0 -# ||aboutmyarea.co.uk/images/imgstore/ (easylistchina+easylist.txt: 42020) -.aboutmyarea.co.uk/images/imgstore/ -# ||about.com/0g/$subdocument (easylistchina+easylist.txt: 42019) -.about.com/0g/ -# ||abook.ws/th_mydl.gif (easylistchina+easylist.txt: 42018) -.abook.ws/th_mydl\.gif -# ||abook.ws/pyload.png (easylistchina+easylist.txt: 42017) -.abook.ws/pyload\.png -# ||abook.ws/banner6.png (easylistchina+easylist.txt: 42016) -.abook.ws/banner6\.png -# ||abduzeedo.com^*/mt-banner.jpg (easylistchina+easylist.txt: 42015) -.abduzeedo.com/.*/mt-banner\.jpg -# ||aaugh.com/images/dreamhostad.gif (easylistchina+easylist.txt: 42013) -.aaugh.com/images/dreamhostad\.gif -# ||a7.org/info/ (easylistchina+easylist.txt: 42012) -.a7.org/info/ -# ||a.lolwot.com^ (easylistchina+easylist.txt: 42011) -.a.lolwot.com -# ||a.kickass.to^ (easylistchina+easylist.txt: 42010) -.a.kickass.to -# ||a.kat.cr^ (easylistchina+easylist.txt: 42009) -.a.kat.cr -# ||a.i-sgcm.com^ (easylistchina+easylist.txt: 42008) -.a.i-sgcm.com -# ||a.giantrealm.com^ (easylistchina+easylist.txt: 42007) -.a.giantrealm.com -# ||a.clipconverter.cc^ (easylistchina+easylist.txt: 42006) -.a.clipconverter.cc -# ||a.cdngeek.net^ (easylistchina+easylist.txt: 42005) -.a.cdngeek.net -# ||9news.com/promo/ (easylistchina+easylist.txt: 42004) -.9news.com/promo/ -# ||980wcap.com/sponsorlogos/ (easylistchina+easylist.txt: 42003) -.980wcap.com/sponsorlogos/ -# ||977rocks.com/images/300- (easylistchina+easylist.txt: 42002) -.977rocks.com/images/300- -# ||977music.com/index.php?p=get_loading_banner (easylistchina+easylist.txt: 42001) -.977music.com/index\.php\?p=get_loading_banner -# ||947fm.bb/images/banners/ (easylistchina+easylist.txt: 42000) -.947fm.bb/images/banners/ -# ||947.co.za^*-branding. (easylistchina+easylist.txt: 41999) -.947.co.za/.*-branding\. -# ||911tabs.com^*/ringtones_overlay.js (easylistchina+easylist.txt: 41998) -.911tabs.com/.*/ringtones_overlay\.js -# ||911tabs.com/img/takeover_app_ (easylistchina+easylist.txt: 41997) -.911tabs.com/img/takeover_app_ -# ||911tabs.com/img/bgd_911tabs_ (easylistchina+easylist.txt: 41996) -.911tabs.com/img/bgd_911tabs_ -# ||8ch.net/proxy.php? (easylistchina+easylist.txt: 41995) -.8ch.net/proxy\.php\? -# ||8a.nu/sponsors/ (easylistchina+easylist.txt: 41994) -.8a.nu/sponsors/ -# ||8a.nu/site2/sponsors/ (easylistchina+easylist.txt: 41993) -.8a.nu/site2/sponsors/ -# ||88.80.16.183/streams/counters/ (easylistchina+easylist.txt: 41992) -.88.80.16.183/streams/counters/ -# ||810varsity.com^*/background- (easylistchina+easylist.txt: 41989) -.810varsity.com/.*/background- -# ||6waves.com/aff.php? (easylistchina+easylist.txt: 41987) -.6waves.com/aff\.php\? -# ||64.245.1.134/search/v2/jsp/pcwframe.jsp?provider= (easylistchina+easylist.txt: 41986) -.64.245.1.134/search/v2/jsp/pcwframe\.jsp\?provider= -# ||610kvnu.com*^/sponsors/ (easylistchina+easylist.txt: 41985) -.610kvnu.com*./(.*[^\w%.-])?/sponsors/ -# ||5star-shareware.com/scripts/5starads.js (easylistchina+easylist.txt: 41984) -.5star-shareware.com/scripts/5starads\.js -# ||5min.com^*/banners/ (easylistchina+easylist.txt: 41983) -.5min.com/.*/banners/ -# ||560theanswer.com/upload/sponsor- (easylistchina+easylist.txt: 41982) -.560theanswer.com/upload/sponsor- -# ||50statesclassifieds.com/image.php?size_id=$subdocument (easylistchina+easylist.txt: 41981) -.50statesclassifieds.com/image\.php\?size_id= -# ||4sysops.com^*.php?unit=main$xmlhttprequest (easylistchina+easylist.txt: 41979) -.4sysops.com/.*\.php\?unit=main -# ||4sharedtrend.com/ifx/ifx.php? (easylistchina+easylist.txt: 41978) -.4sharedtrend.com/ifx/ifx\.php\? -# ||4shared.com/images/label1.gif (easylistchina+easylist.txt: 41977) -.4shared.com/images/label1\.gif -# ||4fuckr.com/static/*-banner. (easylistchina+easylist.txt: 41976) -.4fuckr.com/static/.*-banner\. -# ||4fuckr.com/g/$image (easylistchina+easylist.txt: 41975) -.4fuckr.com/g/ -# ||4fastfile.com/afiliat.png (easylistchina+easylist.txt: 41974) -.4fastfile.com/afiliat\.png -# ||4downfiles.com/open1.js (easylistchina+easylist.txt: 41973) -.4downfiles.com/open1\.js -# ||4chan.org/support/ (easylistchina+easylist.txt: 41972) -.4chan.org/support/ -# ||3pmpickup.com.au/images/kmart_v2.jpg (easylistchina+easylist.txt: 41971) -.3pmpickup.com.au/images/kmart_v2\.jpg -# ||3g.co.uk/fad/ (easylistchina+easylist.txt: 41970) -.3g.co.uk/fad/ -# ||3dwallpaperstudio.com/hd_wallpapers.png (easylistchina+easylist.txt: 41969) -.3dwallpaperstudio.com/hd_wallpapers\.png -# ||3dsemulator.org/img/download.png (easylistchina+easylist.txt: 41968) -.3dsemulator.org/img/download\.png -# ||360haven.com/forums/*.advertising.com/ (easylistchina+easylist.txt: 41967) -.360haven.com/forums/.*\.advertising\.com/ -# ||2pass.co.uk/img/avanquest2013.gif (easylistchina+easylist.txt: 41966) -.2pass.co.uk/img/avanquest2013\.gif -# ||2oceansvibe.com/?custom=takeover (easylistchina+easylist.txt: 41965) -.2oceansvibe.com/\?custom=takeover -# ||2mfm.org/images/banners/ (easylistchina+easylist.txt: 41964) -.2mfm.org/images/banners/ -# ||2merkato.com/images/banners/ (easylistchina+easylist.txt: 41963) -.2merkato.com/images/banners/ -# ||2gb.com^*/backgrounds/ (easylistchina+easylist.txt: 41962) -.2gb.com/.*/backgrounds/ -# ||2flashgames.com/img/nfs.gif (easylistchina+easylist.txt: 41961) -.2flashgames.com/img/nfs\.gif -# ||24hourwristbands.com/*.googleadservices.com/ (easylistchina+easylist.txt: 41960) -.24hourwristbands.com/.*\.googleadservices\.com/ -# ||22lottery.com/images/lm468 (easylistchina+easylist.txt: 41959) -.22lottery.com/images/lm468 -# ||1up.com^*/promos/ (easylistchina+easylist.txt: 41954) -.1up.com/.*/promos/ -# ||1up.com/vip/vip_games.html (easylistchina+easylist.txt: 41953) -.1up.com/vip/vip_games\.html -# ||1up.com/scripts/takeover.js (easylistchina+easylist.txt: 41952) -.1up.com/scripts/takeover\.js -# ||180upload.com/pir/729.js (easylistchina+easylist.txt: 41949) -.180upload.com/pir/729\.js -# ||180upload.com/p1.js (easylistchina+easylist.txt: 41948) -.180upload.com/p1\.js -# ||1776coalition.com/wp-content/plugins/sam-images/ (easylistchina+easylist.txt: 41946) -.1776coalition.com/wp-content/plugins/sam-images/ -# ||1590wcgo.com/images/banners/ (easylistchina+easylist.txt: 41944) -.1590wcgo.com/images/banners/ -# ||1430wnav.com/images/468- (easylistchina+easylist.txt: 41943) -.1430wnav.com/images/468- -# ||1430wnav.com/images/300- (easylistchina+easylist.txt: 41942) -.1430wnav.com/images/300- -# ||1340wcmi.com/images/banners/ (easylistchina+easylist.txt: 41941) -.1340wcmi.com/images/banners/ -# ||1320wils.com/assets/images/promo%20banner/ (easylistchina+easylist.txt: 41940) -.1320wils.com/assets/images/promo%20banner/ -# ||11points.com/images/slack100.jpg (easylistchina+easylist.txt: 41939) -.11points.com/images/slack100\.jpg -# ||1077thebone.com^*/banners/ (easylistchina+easylist.txt: 41937) -.1077thebone.com/.*/banners/ -# ||1071thepeak.com/right/ (easylistchina+easylist.txt: 41936) -.1071thepeak.com/right/ -# ||1071radio.com//wp-content/banners/ (easylistchina+easylist.txt: 41935) -# ||1043thefan.com^*_Sponsors/ (easylistchina+easylist.txt: 41934) -.1043thefan.com/.*_Sponsors/ -# ||104.239.139.5/display/ (easylistchina+easylist.txt: 41933) -.104.239.139.5/display/ -# ||1023xlc.com/upload/*_background_ (easylistchina+easylist.txt: 41932) -.1023xlc.com/upload/.*_background_ -# ||100jamz.com^*/insurance-management (easylistchina+easylist.txt: 41931) -.100jamz.com/.*/insurance-management -# ||100jamz.com^*-wallpaper-ad- (easylistchina+easylist.txt: 41930) -.100jamz.com/.*-wallpaper-ad- -# ||100best-free-web-space.com/images/ipage.gif (easylistchina+easylist.txt: 41929) -.100best-free-web-space.com/images/ipage\.gif -# ||10-fast-fingers.com/quotebattle-ad.png (easylistchina+easylist.txt: 41928) -.10-fast-fingers.com/quotebattle-ad\.png -# ||04stream.com/podddpo.js (easylistchina+easylist.txt: 41927) -.04stream.com/podddpo\.js -# ||04stream.com/NEWAD11.php? (easylistchina+easylist.txt: 41926) -.04stream.com/NEWAD11\.php\? -# ||0-60mag.com/js/takeover-2.0/ (easylistchina+easylist.txt: 41925) -.0-60mag.com/js/takeover-2\.0/ -# |http://p.pw^$subdocument (easylistchina+easylist.txt: 41923) -p.pw -# |http://j.gs/omnigy*.swf (easylistchina+easylist.txt: 41922) -j.gs/omnigy.*\.swf -# |http://creative.*/smart.js$script,third-party (easylistchina+easylist.txt: 41921) -creative.*./(.*/)?smart\.js -# /get/path/.banners.$image,third-party (easylistchina+easylist.txt: 41910) -/(.*/)?get/path/\.banners\. -# /af.php?$subdocument (easylistchina+easylist.txt: 41905) -/(.*/)?af\.php\? -# .net/director/?$subdocument,third-party (easylistchina+easylist.txt: 41900) -/.*\.net/director/\? -.*.net/director/\? -# .info/*.js?guid=$script,third-party (easylistchina+easylist.txt: 41898) -/.*\.info/.*\.js\?guid= -.*.info/.*\.js\?guid= -# .com/jquery/*.js?_t=$script,third-party (easylistchina+easylist.txt: 41897) -/.*\.com/jquery/.*\.js\?_t= -.*.com/jquery/.*\.js\?_t= -# ||yuvutu.com^$popup,third-party (easylistchina+easylist.txt: 41893) -.yuvutu.com -# ||xvideoslive.com/landing/$popup,third-party (easylistchina+easylist.txt: 41892) -.xvideoslive.com/landing/ -# ||xvideoslive.com/?AFNO$popup,third-party (easylistchina+easylist.txt: 41891) -.xvideoslive.com/\?AFNO -# ||xrounds.com/?lmid=$popup,third-party (easylistchina+easylist.txt: 41890) -.xrounds.com/\?lmid= -# ||xdating.com/search/$popup,third-party (easylistchina+easylist.txt: 41889) -.xdating.com/search/ -# ||webcams.com^$popup,third-party (easylistchina+easylist.txt: 41888) -.webcams.com -# ||wantlive.com/landing/$popup (easylistchina+easylist.txt: 41887) -.wantlive.com/landing/ -# ||vs3.com^$popup,third-party (easylistchina+easylist.txt: 41886) -.vs3.com -# ||visit-x.net/cams/*.html?*&s=*&ws=$popup,third-party (easylistchina+easylist.txt: 41885) -.visit-x.net/cams/.*\.html\?.*&s=.*&ws= -# ||videosz.com^*&tracker_id=$popup,third-party (easylistchina+easylist.txt: 41884) -.videosz.com/.*&tracker_id= -# ||videosz.com/search.php$popup,third-party (easylistchina+easylist.txt: 41883) -.videosz.com/search\.php -# ||videobox.com/tour/$popup (easylistchina+easylist.txt: 41882) -.videobox.com/tour/ -# ||videobox.com/?tid=$popup (easylistchina+easylist.txt: 41881) -.videobox.com/\?tid= -# ||upforit.com/ext.php$popup (easylistchina+easylist.txt: 41880) -.upforit.com/ext\.php -# ||twistys.com/track/$popup,third-party (easylistchina+easylist.txt: 41879) -.twistys.com/track/ -# ||tube911.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylistchina+easylist.txt: 41878) -.tube911.com/scj/cgi/out\.php\?scheme_id= -# ||tour.mrskin.com^$popup,third-party (easylistchina+easylist.txt: 41877) -.tour.mrskin.com -# ||topbucks.com/popunder/$popup (easylistchina+easylist.txt: 41876) -.topbucks.com/popunder/ -# ||textad.sexsearch.com^$popup (easylistchina+easylist.txt: 41875) -.textad.sexsearch.com -# ||teenslikeitbig.com/track/$popup,third-party (easylistchina+easylist.txt: 41874) -.teenslikeitbig.com/track/ -# ||streamate.com/landing/$popup (easylistchina+easylist.txt: 41873) -.streamate.com/landing/ -# ||socialflirt.com/go/$popup,third-party (easylistchina+easylist.txt: 41872) -.socialflirt.com/go/ -# ||sexsearchcom.com^$popup,third-party (easylistchina+easylist.txt: 41871) -.sexsearchcom.com -# ||sexier.com^*_popunder&$popup (easylistchina+easylist.txt: 41870) -.sexier.com/.*_popunder& -# ||sexier.com/services/adsredirect.ashx?$popup,third-party (easylistchina+easylist.txt: 41869) -.sexier.com/services/adsredirect\.ashx\? -# ||sex.com/popunder/$popup (easylistchina+easylist.txt: 41868) -.sex.com/popunder/ -# ||seeme.com^*?aid=*&art=$popup (easylistchina+easylist.txt: 41867) -.seeme.com/.*\?aid=.*&art= -# ||seekbang.com/cs/rotator/$popup (easylistchina+easylist.txt: 41866) -.seekbang.com/cs/rotator/ -# ||rudefinder.com/?$popup,third-party (easylistchina+easylist.txt: 41865) -.rudefinder.com/\? -# ||redtube.com/bid/$popup (easylistchina+easylist.txt: 41864) -.redtube.com/bid/ -# ||redlightcenter.com/?trq=$popup,third-party (easylistchina+easylist.txt: 41863) -.redlightcenter.com/\?trq= -# ||postselfies.com^*?nats=$popup,third-party (easylistchina+easylist.txt: 41862) -.postselfies.com/.*\?nats= -# ||pornslash.com/cbp.php$popup (easylistchina+easylist.txt: 41861) -.pornslash.com/cbp\.php -# ||pornoh.info^$popup (easylistchina+easylist.txt: 41860) -.pornoh.info -# ||porno-onlain.info/top.php$popup (easylistchina+easylist.txt: 41859) -.porno-onlain.info/top\.php -# ||pornme.com^*.php?ref=$popup,third-party (easylistchina+easylist.txt: 41858) -.pornme.com/.*\.php\?ref= -# ||pornhub.com^*&utm_campaign=*-pop|$popup (easylistchina+easylist.txt: 41857) -.pornhub.com/.*&utm_campaign=.*-pop$ -# ||pomnach.ru^$popup (easylistchina+easylist.txt: 41856) -.pomnach.ru -# ||online.mydirtyhobby.com^*?naff=$popup,third-party (easylistchina+easylist.txt: 41855) -.online.mydirtyhobby.com/.*\?naff= -# ||myfreecams.com/?co_id=$popup (easylistchina+easylist.txt: 41854) -.myfreecams.com/\?co_id= -# ||mydirtyhobby.com/?$popup,third-party (easylistchina+easylist.txt: 41853) -.mydirtyhobby.com/\? -# ||mjtlive.com/exports/golive/?lp=*&afno=$popup,third-party (easylistchina+easylist.txt: 41852) -.mjtlive.com/exports/golive/\?lp=.*&afno= -# ||meetlocals.com^*popunder$popup (easylistchina+easylist.txt: 41851) -.meetlocals.com/.*popunder -# ||media.campartner.com^*?cp=$popup,third-party (easylistchina+easylist.txt: 41850) -.media.campartner.com/.*\?cp= -# ||media.campartner.com/index.php?cpID=*&cpMID=$popup,third-party (easylistchina+easylist.txt: 41849) -.media.campartner.com/index\.php\?cpID=.*&cpMID= -# ||livejasmin.com^$popup,third-party (easylistchina+easylist.txt: 41848) -.livejasmin.com -# ||livecams.com^$popup (easylistchina+easylist.txt: 41847) -.livecams.com -# ||linkfame.com^*/go.php?$popup,third-party (easylistchina+easylist.txt: 41846) -.linkfame.com/.*/go\.php\? -# ||letstryanal.com/track/$popup,third-party (easylistchina+easylist.txt: 41845) -.letstryanal.com/track/ -# ||judgeporn.com/video_pop.php?$popup (easylistchina+easylist.txt: 41844) -.judgeporn.com/video_pop\.php\? -# ||join.whitegfs.com^$popup (easylistchina+easylist.txt: 41843) -.join.whitegfs.com -# ||join.teamskeet.com/track/$popup,third-party (easylistchina+easylist.txt: 41842) -.join.teamskeet.com/track/ -# ||join.filthydatez.com^$popup,third-party (easylistchina+easylist.txt: 41841) -.join.filthydatez.com -# ||jasmin.com^$popup,third-party (easylistchina+easylist.txt: 41840) -.jasmin.com -# ||ipornia.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylistchina+easylist.txt: 41839) -.ipornia.com/scj/cgi/out\.php\?scheme_id= -# ||imlive.com/wmaster.ashx?$popup,third-party (easylistchina+easylist.txt: 41838) -.imlive.com/wmaster\.ashx\? -# ||icgirls.com^$popup (easylistchina+easylist.txt: 41837) -.icgirls.com -# ||hqtubevideos.com/play.html$popup,third-party (easylistchina+easylist.txt: 41836) -.hqtubevideos.com/play\.html -# ||hazeher.com/t1/pps$popup (easylistchina+easylist.txt: 41835) -.hazeher.com/t1/pps -# ||get-a-fuck-tonight.com^$popup (easylistchina+easylist.txt: 41834) -.get-a-fuck-tonight.com -# ||fucktapes.org/fucktube.htm$popup (easylistchina+easylist.txt: 41833) -.fucktapes.org/fucktube\.htm -# ||fuckshow.org^*&adr=$popup (easylistchina+easylist.txt: 41832) -.fuckshow.org/.*&adr= -# ||fuckbooknet.net/dating/$popup,third-party (easylistchina+easylist.txt: 41831) -.fuckbooknet.net/dating/ -# ||fuckbookhookups.com/go/$popup (easylistchina+easylist.txt: 41830) -.fuckbookhookups.com/go/ -# ||flirt4free.com/_special/pops/$popup,third-party (easylistchina+easylist.txt: 41829) -.flirt4free.com/_special/pops/ -# ||fling.com/enter.php?$popup (easylistchina+easylist.txt: 41828) -.fling.com/enter\.php\? -# ||fleshlight-international.eu^*?link=$popup,third-party (easylistchina+easylist.txt: 41827) -.fleshlight-international.eu/.*\?link= -# ||fantasti.cc/ajax/gw.php?$popup (easylistchina+easylist.txt: 41826) -.fantasti.cc/ajax/gw\.php\? -# ||extremefuse.com/out.php?$popup (easylistchina+easylist.txt: 41825) -.extremefuse.com/out\.php\? -# ||ext.affaire.com^$popup (easylistchina+easylist.txt: 41824) -.ext.affaire.com -# ||exposedwebcams.com/?token=$popup,third-party (easylistchina+easylist.txt: 41823) -.exposedwebcams.com/\?token= -# ||epornerlive.com/index.php?*=punder$popup (easylistchina+easylist.txt: 41822) -.epornerlive.com/index\.php\?.*=punder -# ||devilsfilm.com/track/go.php?$popup,third-party (easylistchina+easylist.txt: 41821) -.devilsfilm.com/track/go\.php\? -# ||cpm.amateurcommunity.*?cp=$popup,third-party (easylistchina+easylist.txt: 41820) -.cpm.amateurcommunity.*./.*\?cp= -# ||chaturbate.com/sitestats/openwindow/$popup (easylistchina+easylist.txt: 41819) -.chaturbate.com/sitestats/openwindow/ -# ||chaturbate.com/*/?join_overlay=$popup (easylistchina+easylist.txt: 41818) -.chaturbate.com/.*/\?join_overlay= -# ||candidvoyeurism.com/ads/$popup (easylistchina+easylist.txt: 41817) -.candidvoyeurism.com/ads/ -# ||camcity.com/rtr.php?aid=$popup (easylistchina+easylist.txt: 41816) -.camcity.com/rtr\.php\?aid= -# ||cam4.com/?$popup (easylistchina+easylist.txt: 41815) -.cam4.com/\? -# ||benaughty.com/aff.php?$popup,third-party (easylistchina+easylist.txt: 41814) -.benaughty.com/aff\.php\? -# ||babecams.net/landing/$popup,third-party (easylistchina+easylist.txt: 41812) -.babecams.net/landing/ -# ||amarotic.com^*?wmid=$popup,third-party (easylistchina+easylist.txt: 41811) -.amarotic.com/.*\?wmid= -# ||amarotic.com/?$popup,third-party (easylistchina+easylist.txt: 41810) -.amarotic.com/\? -# ||adultfriendfinder.com/go/$popup,third-party (easylistchina+easylist.txt: 41809) -.adultfriendfinder.com/go/ -# ||adultfriendfinder.com/banners/$popup,third-party (easylistchina+easylist.txt: 41808) -.adultfriendfinder.com/banners/ -# ||777livecams.com/?id=$popup,third-party (easylistchina+easylist.txt: 41807) -.777livecams.com/\?id= -# ||21sextury.com^$popup (easylistchina+easylist.txt: 41806) -.21sextury.com -# ||1800freecams.com^$popup,third-party (easylistchina+easylist.txt: 41805) -.1800freecams.com -# ||zubehost.com/*?zoneid= (easylistchina+easylist.txt: 41803) -.zubehost.com/.*\?zoneid= -# ||ztod.com/iframe/third/$subdocument (easylistchina+easylist.txt: 41802) -.ztod.com/iframe/third/ -# ||ztod.com/flash/wall*.swf (easylistchina+easylist.txt: 41801) -.ztod.com/flash/wall.*\.swf -# ||yplf.com/ram/files/sponsors/ (easylistchina+easylist.txt: 41800) -.yplf.com/ram/files/sponsors/ -# ||youfck.com^*/adawe.swf (easylistchina+easylist.txt: 41799) -.youfck.com/.*/adawe\.swf -# ||xxxoh.com/number/$third-party (easylistchina+easylist.txt: 41798) -.xxxoh.com/number/ -# ||xxtu.be^$subdocument,third-party (easylistchina+easylist.txt: 41797) -.xxtu.be -# ||xtrasize.pl/banner/ (easylistchina+easylist.txt: 41796) -.xtrasize.pl/banner/ -# ||xnxx.com^$third-party (easylistchina+easylist.txt: 41795) -.xnxx.com -# ||xlgirls.com/banner/$third-party (easylistchina+easylist.txt: 41794) -.xlgirls.com/banner/ -# ||xcabin.net/b/$third-party (easylistchina+easylist.txt: 41793) -.xcabin.net/b/ -# ||winkit.info/wink2.js (easylistchina+easylist.txt: 41792) -.winkit.info/wink2\.js -# ||widgetssec.cam-content.com^ (easylistchina+easylist.txt: 41791) -.widgetssec.cam-content.com -# ||widgets.comcontent.net^ (easylistchina+easylist.txt: 41790) -.widgets.comcontent.net -# ||wetandpuffy.com/galleries/banners/ (easylistchina+easylist.txt: 41789) -.wetandpuffy.com/galleries/banners/ -# ||wendi.com/ipt/$third-party (easylistchina+easylist.txt: 41788) -.wendi.com/ipt/ -# ||webmaster.erotik.com^$third-party (easylistchina+easylist.txt: 41787) -.webmaster.erotik.com -# ||webcams.com/misc/iframes_new/ (easylistchina+easylist.txt: 41786) -.webcams.com/misc/iframes_new/ -# ||webcams.com/js/im_popup.php? (easylistchina+easylist.txt: 41785) -.webcams.com/js/im_popup\.php\? -# ||watchmygf.com/preview/$third-party (easylistchina+easylist.txt: 41784) -.watchmygf.com/preview/ -# ||wafflegirl.com/galleries/banner/ (easylistchina+easylist.txt: 41783) -.wafflegirl.com/galleries/banner/ -# ||vzzk.com/uploads/banners/$third-party (easylistchina+easylist.txt: 41782) -.vzzk.com/uploads/banners/ -# ||vserv.bc.cdn.bitgravity.com^$third-party (easylistchina+easylist.txt: 41781) -.vserv.bc.cdn.bitgravity.com -# ||vs3.com/_special/banners/ (easylistchina+easylist.txt: 41780) -.vs3.com/_special/banners/ -# ||vodconcepts.com^*/banners/ (easylistchina+easylist.txt: 41779) -.vodconcepts.com/.*/banners/ -# ||visit-x.net/promo/$third-party (easylistchina+easylist.txt: 41778) -.visit-x.net/promo/ -# ||virtualhottie2.com/cash/tools/banners/ (easylistchina+easylist.txt: 41777) -.virtualhottie2.com/cash/tools/banners/ -# ||viorotica.com^*/banners/ (easylistchina+easylist.txt: 41776) -.viorotica.com/.*/banners/ -# ||vigrax.pl/banner/ (easylistchina+easylist.txt: 41775) -.vigrax.pl/banner/ -# ||vidz.com/promo_banner/$third-party (easylistchina+easylist.txt: 41774) -.vidz.com/promo_banner/ -# ||vectorpastel.com^$third-party (easylistchina+easylist.txt: 41773) -.vectorpastel.com -# ||uramov.info/wav/wavideo.html (easylistchina+easylist.txt: 41771) -.uramov.info/wav/wavideo\.html -# ||upsellit.com/custom/$third-party (easylistchina+easylist.txt: 41770) -.upsellit.com/custom/ -# ||updatetube.com/updatetube_html/ (easylistchina+easylist.txt: 41769) -.updatetube.com/updatetube_html/ -# ||updatetube.com/iframes/ (easylistchina+easylist.txt: 41768) -.updatetube.com/iframes/ -# ||twilightsex.com^$subdocument,third-party (easylistchina+easylist.txt: 41767) -.twilightsex.com -# ||twiant.com/img/banners/ (easylistchina+easylist.txt: 41766) -.twiant.com/img/banners/ -# ||turbolovervidz.com/fling/ (easylistchina+easylist.txt: 41765) -.turbolovervidz.com/fling/ -# ||tubefck.com^*/adawe.swf (easylistchina+easylist.txt: 41763) -.tubefck.com/.*/adawe\.swf -# ||ts.videosz.com/iframes/ (easylistchina+easylist.txt: 41762) -.ts.videosz.com/iframes/ -# ||trader.erosdlz.com^$third-party (easylistchina+easylist.txt: 41761) -.trader.erosdlz.com -# ||track.xtrasize.nl^$third-party (easylistchina+easylist.txt: 41760) -.track.xtrasize.nl -# ||tours.imlive.com^$third-party (easylistchina+easylist.txt: 41759) -.tours.imlive.com -# ||tour.cum-covered-gfs.com^$third-party (easylistchina+easylist.txt: 41758) -.tour.cum-covered-gfs.com -# ||tools.gfcash.com^$third-party (easylistchina+easylist.txt: 41757) -.tools.gfcash.com -# ||tools.bongacams.com^$third-party (easylistchina+easylist.txt: 41756) -.tools.bongacams.com -# ||tlavideo.com/affiliates/$third-party (easylistchina+easylist.txt: 41755) -.tlavideo.com/affiliates/ -# ||thumbs.vstreamcdn.com^*/slider.html (easylistchina+easylist.txt: 41754) -.thumbs.vstreamcdn.com/.*/slider\.html -# ||thumbs.sunporno.com^$third-party (easylistchina+easylist.txt: 41753) -.thumbs.sunporno.com -# ||thrixxx.com/scripts/show_banner.php? (easylistchina+easylist.txt: 41752) -.thrixxx.com/scripts/show_banner\.php\? -# ||thrixxx.com/affiliates/$image (easylistchina+easylist.txt: 41751) -.thrixxx.com/affiliates/ -# ||teendaporn.com/rk.js (easylistchina+easylist.txt: 41750) -.teendaporn.com/rk\.js -# ||target.vivid.com^$third-party (easylistchina+easylist.txt: 41749) -.target.vivid.com -# ||swurve.com/affiliates/ (easylistchina+easylist.txt: 41748) -.swurve.com/affiliates/ -# ||sweet.game-rust.ru^ (easylistchina+easylist.txt: 41747) -.sweet.game-rust.ru -# ||surv.xbizmedia.com^ (easylistchina+easylist.txt: 41746) -.surv.xbizmedia.com -# ||streamray.com/images/cams/flash/cams_live.swf (easylistchina+easylist.txt: 41745) -.streamray.com/images/cams/flash/cams_live\.swf -# ||streamen.com/exports/$third-party (easylistchina+easylist.txt: 41744) -.streamen.com/exports/ -# ||steadybucks.com^*/banners/ (easylistchina+easylist.txt: 41743) -.steadybucks.com/.*/banners/ -# ||sponsor4cash.de/script/ (easylistchina+easylist.txt: 41742) -.sponsor4cash.de/script/ -# ||spacash.com/tools/peel/ (easylistchina+easylist.txt: 41741) -.spacash.com/tools/peel/ -# ||spacash.com/popup/$third-party (easylistchina+easylist.txt: 41740) -.spacash.com/popup/ -# ||spacash.com//v2bannerview.php? (easylistchina+easylist.txt: 41739) -# ||snrcash.com/profilerotator/$third-party (easylistchina+easylist.txt: 41738) -.snrcash.com/profilerotator/ -# ||smyw.org/smyw_anima_1.gif (easylistchina+easylist.txt: 41737) -.smyw.org/smyw_anima_1\.gif -# ||smartmovies.net/promo_$third-party (easylistchina+easylist.txt: 41736) -.smartmovies.net/promo_ -# ||slickcash.com/flash/subtitles_$third-party (easylistchina+easylist.txt: 41735) -.slickcash.com/flash/subtitles_ -# ||sleepgalleries.com/recips/$third-party (easylistchina+easylist.txt: 41734) -.sleepgalleries.com/recips/ -# ||simonscans.com/banner/ (easylistchina+easylist.txt: 41733) -.simonscans.com/banner/ -# ||shinypics.com/blogbanner/$third-party (easylistchina+easylist.txt: 41732) -.shinypics.com/blogbanner/ -# ||shemalenova.com/smn/banners/ (easylistchina+easylist.txt: 41731) -.shemalenova.com/smn/banners/ -# ||shemale.asia/sma/banners/ (easylistchina+easylist.txt: 41730) -.shemale.asia/sma/banners/ -# ||shared.juicybucks.com^$third-party (easylistchina+easylist.txt: 41729) -.shared.juicybucks.com -# ||share-image.com/borky/ (easylistchina+easylist.txt: 41728) -.share-image.com/borky/ -# ||sexycams.com/exports/$third-party (easylistchina+easylist.txt: 41727) -.sexycams.com/exports/ -# ||sexy.fling.com^$third-party (easylistchina+easylist.txt: 41726) -.sexy.fling.com -# ||sextubepromo.com/ubr/ (easylistchina+easylist.txt: 41725) -.sextubepromo.com/ubr/ -# ||sextronix.com/images/$third-party (easylistchina+easylist.txt: 41724) -.sextronix.com/images/ -# ||sextronix.com/b/$third-party (easylistchina+easylist.txt: 41723) -.sextronix.com/b/ -# ||sextronix.*.cdnaccess.com^ (easylistchina+easylist.txt: 41722) -.sextronix.*./.*\.cdnaccess\.com[^\w%.-] -.sextronix.*.cdnaccess.com -# ||sexgangsters.com/sg-banners/ (easylistchina+easylist.txt: 41721) -.sexgangsters.com/sg-banners/ -# ||server140.com^$third-party (easylistchina+easylist.txt: 41720) -.server140.com -# ||screencapturewidget.aebn.net^$third-party (easylistchina+easylist.txt: 41719) -.screencapturewidget.aebn.net -# ||scoreland.com/banner/ (easylistchina+easylist.txt: 41718) -.scoreland.com/banner/ -# ||sakuralive.com/dynamicbanner/ (easylistchina+easylist.txt: 41717) -.sakuralive.com/dynamicbanner/ -# ||sadtube.com/chat/$script (easylistchina+easylist.txt: 41716) -.sadtube.com/chat/ -# ||saboom.com.pccdn.com^*/banner/ (easylistchina+easylist.txt: 41715) -.saboom.com.pccdn.com/.*/banner/ -# ||sabin.free.fr^$third-party (easylistchina+easylist.txt: 41714) -.sabin.free.fr -# ||s1magnettvcom.maynemyltf.netdna-cdn.com^ (easylistchina+easylist.txt: 41713) -.s1magnettvcom.maynemyltf.netdna-cdn.com -# ||russkoexxx.com/ban/$third-party (easylistchina+easylist.txt: 41712) -.russkoexxx.com/ban/ -# ||ruscams.com/promo/ (easylistchina+easylist.txt: 41711) -.ruscams.com/promo/ -# ||ruleclaim.web.fc2.com^$third-party (easylistchina+easylist.txt: 41710) -.ruleclaim.web.fc2.com -# ||rss.dtiserv.com^$third-party (easylistchina+easylist.txt: 41709) -.rss.dtiserv.com -# ||rough-sex-in-russia.com^*/webmaster/$third-party (easylistchina+easylist.txt: 41708) -.rough-sex-in-russia.com/.*/webmaster/ -# ||rotci.com/images/rotcibanner.png (easylistchina+easylist.txt: 41707) -.rotci.com/images/rotcibanner\.png -# ||rexcams.com/misc/iframes_new/ (easylistchina+easylist.txt: 41706) -.rexcams.com/misc/iframes_new/ -# ||resimler.randevum.com^$third-party (easylistchina+easylist.txt: 41705) -.resimler.randevum.com -# ||red-tube.com/dynbanner.php? (easylistchina+easylist.txt: 41704) -.red-tube.com/dynbanner\.php\? -# ||realitykings.com/vbanners/ (easylistchina+easylist.txt: 41703) -.realitykings.com/vbanners/ -# ||rawtubelive.com/exports/$third-party (easylistchina+easylist.txt: 41702) -.rawtubelive.com/exports/ -# ||rabbitporno.com/iframes/$third-party (easylistchina+easylist.txt: 41701) -.rabbitporno.com/iframes/ -# ||rabbitporno.com/friends/ (easylistchina+easylist.txt: 41700) -.rabbitporno.com/friends/ -# ||putana.cz/banners/ (easylistchina+easylist.txt: 41699) -.putana.cz/banners/ -# ||pussycash.com/content/banners/$third-party (easylistchina+easylist.txt: 41698) -.pussycash.com/content/banners/ -# ||punterlink.co.uk/images/storage/siteban$third-party (easylistchina+easylist.txt: 41697) -.punterlink.co.uk/images/storage/siteban -# ||ptcdn.mbicash.nl^$third-party (easylistchina+easylist.txt: 41696) -.ptcdn.mbicash.nl -# ||propbn.com/bonga/ (easylistchina+easylist.txt: 41695) -.propbn.com/bonga/ -# ||promos.wealthymen.com^$third-party (easylistchina+easylist.txt: 41694) -.promos.wealthymen.com -# ||promos.meetlocals.com^$third-party (easylistchina+easylist.txt: 41693) -.promos.meetlocals.com -# ||promos.gpniches.com^$third-party (easylistchina+easylist.txt: 41692) -.promos.gpniches.com -# ||promo1.webcams.nl^$third-party (easylistchina+easylist.txt: 41691) -.promo1.webcams.nl -# ||promo.pegcweb.com^$third-party (easylistchina+easylist.txt: 41690) -.promo.pegcweb.com -# ||promo.cams.com^$third-party (easylistchina+easylist.txt: 41689) -.promo.cams.com -# ||promo.blackcrush.com^$third-party (easylistchina+easylist.txt: 41688) -.promo.blackcrush.com -# ||profile.bharatmatrimony.com^$third-party (easylistchina+easylist.txt: 41687) -.profile.bharatmatrimony.com -# ||privatehomeclips.com/privatehomeclips.php?t_sid= (easylistchina+easylist.txt: 41686) -.privatehomeclips.com/privatehomeclips\.php\?t_sid= -# ||private.com/banner/ (easylistchina+easylist.txt: 41685) -.private.com/banner/ -# ||private.camz.$third-party (easylistchina+easylist.txt: 41684) -.private.camz.*. -# ||privatamateure.com/promotion/ (easylistchina+easylist.txt: 41683) -.privatamateure.com/promotion/ -# ||prettyincash.com/premade/$third-party (easylistchina+easylist.txt: 41681) -.prettyincash.com/premade/ -# ||potd.onlytease.com^$third-party (easylistchina+easylist.txt: 41680) -.potd.onlytease.com -# ||pornturbo.com^*.php?*&cmp=$subdocument,third-party (easylistchina+easylist.txt: 41679) -.pornturbo.com/.*\.php\?.*&cmp= -# ||pornturbo.com/*.php?g=$subdocument,third-party (easylistchina+easylist.txt: 41678) -.pornturbo.com/.*\.php\?g= -# ||pornstarnetwork.com^*_660x70.jpg (easylistchina+easylist.txt: 41677) -.pornstarnetwork.com/.*_660x70\.jpg -# ||pornravage.com/notification/$third-party (easylistchina+easylist.txt: 41676) -.pornravage.com/notification/ -# ||pornoh.info^$image,third-party (easylistchina+easylist.txt: 41675) -.pornoh.info -# ||pornhubpremium.com/relatedpremium/$subdocument,third-party (easylistchina+easylist.txt: 41674) -.pornhubpremium.com/relatedpremium/ -# ||porndeals.com^$subdocument,third-party (easylistchina+easylist.txt: 41673) -.porndeals.com -# ||porn2blog.com/wp-content/banners/ (easylistchina+easylist.txt: 41672) -.porn2blog.com/wp-content/banners/ -# ||pop6.com/javascript/im_box-*.js (easylistchina+easylist.txt: 41671) -.pop6.com/javascript/im_box-.*\.js -# ||pop6.com/banners/$third-party (easylistchina+easylist.txt: 41670) -.pop6.com/banners/ -# ||pop6.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41669) -.pop6.adultfriendfinder.com -# ||pod.xpress.com^$third-party (easylistchina+easylist.txt: 41668) -.pod.xpress.com -# ||pod.manplay.com^$third-party (easylistchina+easylist.txt: 41667) -.pod.manplay.com -# ||plugin-x.com/rotaban/ (easylistchina+easylist.txt: 41666) -.plugin-x.com/rotaban/ -# ||pinkvisualgames.com/?revid=$third-party (easylistchina+easylist.txt: 41665) -.pinkvisualgames.com/\?revid= -# ||pcash.globalmailer5.com^$third-party (easylistchina+easylist.txt: 41664) -.pcash.globalmailer5.com -# ||paydir.com/images/bnr (easylistchina+easylist.txt: 41663) -.paydir.com/images/bnr -# ||partners.yobt.tv^$third-party (easylistchina+easylist.txt: 41662) -.partners.yobt.tv -# ||partners.yobt.com^$third-party (easylistchina+easylist.txt: 41661) -.partners.yobt.com -# ||partners.pornerbros.com^ (easylistchina+easylist.txt: 41660) -.partners.pornerbros.com -# ||partners.heart2heartnetwork.$third-party (easylistchina+easylist.txt: 41659) -.partners.heart2heartnetwork.*. -# ||partner.loveplanet.ru^$third-party (easylistchina+easylist.txt: 41658) -.partner.loveplanet.ru -# ||outils.f5biz.com^$third-party (easylistchina+easylist.txt: 41657) -.outils.f5biz.com -# ||otcash.com/images/$third-party (easylistchina+easylist.txt: 41656) -.otcash.com/images/ -# ||orgasmtube.com/js/superP/ (easylistchina+easylist.txt: 41655) -.orgasmtube.com/js/superP/ -# ||openadultdirectory.com/banner-$third-party (easylistchina+easylist.txt: 41654) -.openadultdirectory.com/banner- -# ||odnidoma.com/ban/$third-party (easylistchina+easylist.txt: 41653) -.odnidoma.com/ban/ -# ||nuvidp.com^$third-party (easylistchina+easylist.txt: 41652) -.nuvidp.com -# ||nudemix.com/widget/ (easylistchina+easylist.txt: 41651) -.nudemix.com/widget/ -# ||nude.hu/html/$third-party (easylistchina+easylist.txt: 41650) -.nude.hu/html/ -# ||nubiles.net/webmasters/promo/$third-party (easylistchina+easylist.txt: 41649) -.nubiles.net/webmasters/promo/ -# ||netvideogirls.com/adultfyi.jpg (easylistchina+easylist.txt: 41648) -.netvideogirls.com/adultfyi\.jpg -# ||naughtycdn.com/public/iframes/$third-party (easylistchina+easylist.txt: 41647) -.naughtycdn.com/public/iframes/ -# ||natuko-miracle.com/banner/$third-party (easylistchina+easylist.txt: 41646) -.natuko-miracle.com/banner/ -# ||nakedshygirls.com/bannerimg/ (easylistchina+easylist.txt: 41645) -.nakedshygirls.com/bannerimg/ -# ||naked.com/promos/$third-party (easylistchina+easylist.txt: 41644) -.naked.com/promos/ -# ||mysexjourney.com/revenue/$third-party (easylistchina+easylist.txt: 41643) -.mysexjourney.com/revenue/ -# ||mykocam.com/js/feeds.js$third-party (easylistchina+easylist.txt: 41642) -.mykocam.com/js/feeds\.js -# ||myfreakygf.com/www/click/$third-party (easylistchina+easylist.txt: 41641) -.myfreakygf.com/www/click/ -# ||myexposedgirlfriendz.com/pop/popuprk.js (easylistchina+easylist.txt: 41640) -.myexposedgirlfriendz.com/pop/popuprk\.js -# ||myexposedgirlfriendz.com/pop/popuppp.js (easylistchina+easylist.txt: 41639) -.myexposedgirlfriendz.com/pop/popuppp\.js -# ||mycams.com/freechat.php?$third-party (easylistchina+easylist.txt: 41638) -.mycams.com/freechat\.php\? -# ||my-dirty-hobby.com/?sub=$third-party (easylistchina+easylist.txt: 41637) -.my-dirty-hobby.com/\?sub= -# ||ms.wsex.com^$third-party (easylistchina+easylist.txt: 41636) -.ms.wsex.com -# ||mrvids.com/network/$third-party (easylistchina+easylist.txt: 41635) -.mrvids.com/network/ -# ||mrskincdn.com^*/flash/aff/$third-party (easylistchina+easylist.txt: 41634) -.mrskincdn.com/.*/flash/aff/ -# ||mrskin.com/affiliateframe/ (easylistchina+easylist.txt: 41633) -.mrskin.com/affiliateframe/ -# ||movies.spacash.com^*&th=180x135$script (easylistchina+easylist.txt: 41632) -.movies.spacash.com/.*&th=180x135 -# ||mofomedia.nl/pop-*.js (easylistchina+easylist.txt: 41631) -.mofomedia.nl/pop-.*\.js -# ||metartmoney.met-art.com^$third-party (easylistchina+easylist.txt: 41630) -.metartmoney.met-art.com -# ||metartmoney.com^$third-party (easylistchina+easylist.txt: 41629) -.metartmoney.com -# ||megacash.warpnet.com.br^$third-party (easylistchina+easylist.txt: 41628) -.megacash.warpnet.com.br -# ||media.pussycash.com^$third-party (easylistchina+easylist.txt: 41627) -.media.pussycash.com -# ||media.mykodial.com^$third-party (easylistchina+easylist.txt: 41626) -.media.mykodial.com -# ||media.mykocam.com^$third-party (easylistchina+easylist.txt: 41625) -.media.mykocam.com -# ||media.match.com^$third-party (easylistchina+easylist.txt: 41624) -.media.match.com -# ||media.eurolive.com^$third-party (easylistchina+easylist.txt: 41623) -.media.eurolive.com -# ||match.com/landing/$third-party (easylistchina+easylist.txt: 41622) -.match.com/landing/ -# ||map.pop6.com^$third-party (easylistchina+easylist.txt: 41621) -.map.pop6.com -# ||manhunt.net/?dm=$third-party (easylistchina+easylist.txt: 41620) -.manhunt.net/\?dm= -# ||manager.koocash.fr^$third-party (easylistchina+easylist.txt: 41619) -.manager.koocash.fr -# ||magazine-empire.com/images/pornstarad.jpg (easylistchina+easylist.txt: 41618) -.magazine-empire.com/images/pornstarad\.jpg -# ||loveme.com^$third-party (easylistchina+easylist.txt: 41617) -.loveme.com -# ||longmint.com/lm/banners/ (easylistchina+easylist.txt: 41616) -.longmint.com/lm/banners/ -# ||llnwd.net^*/takeover_ (easylistchina+easylist.txt: 41615) -.llnwd.net/.*/takeover_ -# ||livesexasian.com^$subdocument,third-party (easylistchina+easylist.txt: 41614) -.livesexasian.com -# ||links.freeones.com^$third-party (easylistchina+easylist.txt: 41612) -.links.freeones.com -# ||lb-69.com/pics/ (easylistchina+easylist.txt: 41611) -.lb-69.com/pics/ -# ||layers.spacash.com^$third-party (easylistchina+easylist.txt: 41610) -.layers.spacash.com -# ||latinteencash.com/potd/$third-party (easylistchina+easylist.txt: 41609) -.latinteencash.com/potd/ -# ||ladyboygoo.com/lbg/banners/ (easylistchina+easylist.txt: 41608) -.ladyboygoo.com/lbg/banners/ -# ||lacyx.com/images/banners/ (easylistchina+easylist.txt: 41607) -.lacyx.com/images/banners/ -# ||kuntfutube.com/bgbb.gif (easylistchina+easylist.txt: 41606) -.kuntfutube.com/bgbb\.gif -# ||kenny-glenn.net^*/longbanner_$third-party (easylistchina+easylist.txt: 41605) -.kenny-glenn.net/.*/longbanner_ -# ||kau.li/yad.js (easylistchina+easylist.txt: 41604) -.kau.li/yad\.js -# ||justcutegirls.com/banners/$third-party (easylistchina+easylist.txt: 41603) -.justcutegirls.com/banners/ -# ||just-nude.com/images/ban_$third-party (easylistchina+easylist.txt: 41602) -.just-nude.com/images/ban_ -# ||js.picsomania.info^$third-party (easylistchina+easylist.txt: 41601) -.js.picsomania.info -# ||ivitrine.buscape.com^$third-party (easylistchina+easylist.txt: 41600) -.ivitrine.buscape.com -# ||interracialbangblog.info^*-ban.png (easylistchina+easylist.txt: 41599) -.interracialbangblog.info/.*-ban\.png -# ||interracialbangblog.info/banner.jpg (easylistchina+easylist.txt: 41598) -.interracialbangblog.info/banner\.jpg -# ||imageteam.org/upload/big/2014/06/22/53a7181b378cb.png (easylistchina+easylist.txt: 41597) -.imageteam.org/upload/big/2014/06/22/53a7181b378cb\.png -# ||images.elenasmodels.com/Upload/$third-party (easylistchina+easylist.txt: 41596) -.images.elenasmodels.com/Upload/ -# ||image.nsk-sys.com^$third-party (easylistchina+easylist.txt: 41595) -.image.nsk-sys.com -# ||image.cecash.com^$third-party (easylistchina+easylist.txt: 41594) -.image.cecash.com -# ||ihookup.com/configcreatives/ (easylistchina+easylist.txt: 41593) -.ihookup.com/configcreatives/ -# ||ifriends.net^$subdocument,third-party (easylistchina+easylist.txt: 41592) -.ifriends.net -# ||iframes.hustler.com^$third-party (easylistchina+easylist.txt: 41591) -.iframes.hustler.com -# ||iframe.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41590) -.iframe.adultfriendfinder.com -# ||hotsocialz.com^$third-party (easylistchina+easylist.txt: 41589) -.hotsocialz.com -# ||hotmovies.com/custom_videos.php? (easylistchina+easylist.txt: 41588) -.hotmovies.com/custom_videos\.php\? -# ||hotkinkyjo.xxx/resseler/banners/ (easylistchina+easylist.txt: 41587) -.hotkinkyjo.xxx/resseler/banners/ -# ||hotcaracum.com/banner/ (easylistchina+easylist.txt: 41586) -.hotcaracum.com/banner/ -# ||hosting24.com/images/banners/$third-party (easylistchina+easylist.txt: 41585) -.hosting24.com/images/banners/ -# ||hosted.x-art.com/potd$third-party (easylistchina+easylist.txt: 41584) -.hosted.x-art.com/potd -# ||hostave3.net/hvw/banners/ (easylistchina+easylist.txt: 41583) -.hostave3.net/hvw/banners/ -# ||hornypharaoh.com/banner_$third-party (easylistchina+easylist.txt: 41582) -.hornypharaoh.com/banner_ -# ||hornybirds.com^$subdocument,third-party (easylistchina+easylist.txt: 41581) -.hornybirds.com -# ||homoactive.tv/banner/ (easylistchina+easylist.txt: 41580) -.homoactive.tv/banner/ -# ||hodun.ru/files/promo/ (easylistchina+easylist.txt: 41579) -.hodun.ru/files/promo/ -# ||highrollercams.com/widgets/$third-party (easylistchina+easylist.txt: 41578) -.highrollercams.com/widgets/ -# ||hentaikey.com/images/banners/ (easylistchina+easylist.txt: 41577) -.hentaikey.com/images/banners/ -# ||hentaijunkie.com^*/banners/ (easylistchina+easylist.txt: 41576) -.hentaijunkie.com/.*/banners/ -# ||hdpornphotos.com/images/banner_ (easylistchina+easylist.txt: 41575) -.hdpornphotos.com/images/banner_ -# ||hdpornphotos.com/images/728x180_ (easylistchina+easylist.txt: 41574) -.hdpornphotos.com/images/728x180_ -# ||hardcoresexnow.com^$subdocument,third-party (easylistchina+easylist.txt: 41573) -.hardcoresexnow.com -# ||hardbritlads.com/banner/ (easylistchina+easylist.txt: 41572) -.hardbritlads.com/banner/ -# ||graphics.streamray.com^*/cams_live.swf$third-party (easylistchina+easylist.txt: 41571) -.graphics.streamray.com/.*/cams_live\.swf -# ||go2cdn.org/brand/$third-party (easylistchina+easylist.txt: 41569) -.go2cdn.org/brand/ -# ||girls-home-alone.com/dating/ (easylistchina+easylist.txt: 41568) -.girls-home-alone.com/dating/ -# ||gfrevenge.com/vbanners/ (easylistchina+easylist.txt: 41567) -.gfrevenge.com/vbanners/ -# ||geobanner.socialflirt.com^ (easylistchina+easylist.txt: 41566) -.geobanner.socialflirt.com -# ||geobanner.sexfinder.com^$third-party (easylistchina+easylist.txt: 41565) -.geobanner.sexfinder.com -# ||geobanner.fuckbookhookups.com^$third-party (easylistchina+easylist.txt: 41564) -.geobanner.fuckbookhookups.com -# ||geobanner.blacksexmatch.com^$third-party (easylistchina+easylist.txt: 41563) -.geobanner.blacksexmatch.com -# ||geobanner.alt.com^ (easylistchina+easylist.txt: 41562) -.geobanner.alt.com -# ||geobanner.adultfriendfinder.com^ (easylistchina+easylist.txt: 41561) -.geobanner.adultfriendfinder.com -# ||geo.frtya.com^ (easylistchina+easylist.txt: 41560) -.geo.frtya.com -# ||geo.cliphunter.com^ (easylistchina+easylist.txt: 41559) -.geo.cliphunter.com -# ||geo.camazon.com^$third-party (easylistchina+easylist.txt: 41558) -.geo.camazon.com -# ||gateway-banner.eravage.com^$third-party (easylistchina+easylist.txt: 41557) -.gateway-banner.eravage.com -# ||gammasites.com/pornication/pc_browsable.php? (easylistchina+easylist.txt: 41556) -.gammasites.com/pornication/pc_browsable\.php\? -# ||gallery.deskbabes.com^*.php?dir=*&ids=$third-party (easylistchina+easylist.txt: 41555) -.gallery.deskbabes.com/.*\.php\?dir=.*&ids= -# ||galleries.videosz.com^$object,third-party (easylistchina+easylist.txt: 41554) -.galleries.videosz.com -# ||galeriaseroticas.xpg.com.br^$third-party (easylistchina+easylist.txt: 41553) -.galeriaseroticas.xpg.com.br -# ||gagthebitch.com/track/$third-party (easylistchina+easylist.txt: 41552) -.gagthebitch.com/track/ -# ||fuckhub.net^*?pid=$third-party (easylistchina+easylist.txt: 41551) -.fuckhub.net/.*\?pid= -# ||freshnews.su/get_tizers.php? (easylistchina+easylist.txt: 41550) -.freshnews.su/get_tizers\.php\? -# ||freexxxvideoclip.aebn.net^ (easylistchina+easylist.txt: 41549) -.freexxxvideoclip.aebn.net -# ||freeporn.hu/banners/ (easylistchina+easylist.txt: 41548) -.freeporn.hu/banners/ -# ||freeonescams.com^$subdocument,third-party (easylistchina+easylist.txt: 41547) -.freeonescams.com -# ||freebbw.com/webcams.html$third-party (easylistchina+easylist.txt: 41546) -.freebbw.com/webcams\.html -# ||fleshlight.com/images/peel/ (easylistchina+easylist.txt: 41545) -.fleshlight.com/images/peel/ -# ||fleshlight.com/images/banners/ (easylistchina+easylist.txt: 41544) -.fleshlight.com/images/banners/ -# ||firestormmedia.tv^*?affid= (easylistchina+easylist.txt: 41543) -.firestormmedia.tv/.*\?affid= -# ||fgn.me^*/skins/ (easylistchina+easylist.txt: 41542) -.fgn.me/.*/skins/ -# ||ff.nsg.org.ua^ (easylistchina+easylist.txt: 41541) -.ff.nsg.org.ua -# ||femjoy.com/bnrs/$third-party (easylistchina+easylist.txt: 41540) -.femjoy.com/bnrs/ -# ||feeds.videosz.com^ (easylistchina+easylist.txt: 41539) -.feeds.videosz.com -# ||fckya.com/lj.js (easylistchina+easylist.txt: 41538) -.fckya.com/lj\.js -# ||fbooksluts.com^$subdocument,third-party (easylistchina+easylist.txt: 41537) -.fbooksluts.com -# ||fastcdn.me/mlr/ (easylistchina+easylist.txt: 41536) -.fastcdn.me/mlr/ -# ||fastcdn.me/js/snpp/ (easylistchina+easylist.txt: 41535) -.fastcdn.me/js/snpp/ -# ||fansign.streamray.com^$third-party (easylistchina+easylist.txt: 41534) -.fansign.streamray.com -# ||f5porn.com/porn.gif (easylistchina+easylist.txt: 41533) -.f5porn.com/porn\.gif -# ||extremeladyboys.com/elb/banners/ (easylistchina+easylist.txt: 41532) -.extremeladyboys.com/elb/banners/ -# ||exposedteencelebs.com/banner/$third-party (easylistchina+easylist.txt: 41531) -.exposedteencelebs.com/banner/ -# ||exposedemos.com/track/$third-party (easylistchina+easylist.txt: 41530) -.exposedemos.com/track/ -# ||evilangel.com/static/$third-party (easylistchina+easylist.txt: 41529) -.evilangel.com/static/ -# ||eurolive.com/index.php?module=public_eurolive_onlinetool& (easylistchina+easylist.txt: 41528) -.eurolive.com/index\.php\?module=public_eurolive_onlinetool& -# ||eurolive.com/?module=public_eurolive_onlinehostess& (easylistchina+easylist.txt: 41527) -.eurolive.com/\?module=public_eurolive_onlinehostess& -# ||escortforum.net/images/banners/$third-party (easylistchina+easylist.txt: 41526) -.escortforum.net/images/banners/ -# ||escortbook.com/banner_ (easylistchina+easylist.txt: 41525) -.escortbook.com/banner_ -# ||erotikdeal.com/?ref=$third-party (easylistchina+easylist.txt: 41524) -.erotikdeal.com/\?ref= -# ||eliterotica.com/images/banners/ (easylistchina+easylist.txt: 41523) -.eliterotica.com/images/banners/ -# ||dvdbox.com/promo/$third-party (easylistchina+easylist.txt: 41522) -.dvdbox.com/promo/ -# ||dump1.no-ip.biz^$third-party (easylistchina+easylist.txt: 41521) -.dump1.no-ip.biz -# ||downloadsmais.com/imagens/download-direto.gif (easylistchina+easylist.txt: 41520) -.downloadsmais.com/imagens/download-direto\.gif -# ||dom2xxx.com/ban/$third-party (easylistchina+easylist.txt: 41519) -.dom2xxx.com/ban/ -# ||devilgirls.co/pop.js (easylistchina+easylist.txt: 41518) -.devilgirls.co/pop\.js -# ||devilgirls.co/images/devil.gif (easylistchina+easylist.txt: 41517) -.devilgirls.co/images/devil\.gif -# ||desk.cmix.org^ (easylistchina+easylist.txt: 41516) -.desk.cmix.org -# ||ddstatic.com^*/banners/ (easylistchina+easylist.txt: 41515) -.ddstatic.com/.*/banners/ -# ||ddfcash.com/promo/banners/ (easylistchina+easylist.txt: 41514) -.ddfcash.com/promo/banners/ -# ||ddfcash.com/iframes/$third-party (easylistchina+easylist.txt: 41513) -.ddfcash.com/iframes/ -# ||datefree.com^$third-party (easylistchina+easylist.txt: 41512) -.datefree.com -# ||daredorm.com^$subdocument,third-party (easylistchina+easylist.txt: 41511) -.daredorm.com -# ||dailyvideo.securejoin.com^ (easylistchina+easylist.txt: 41510) -.dailyvideo.securejoin.com -# ||cs.exposedontape.com^$third-party (easylistchina+easylist.txt: 41509) -.cs.exposedontape.com -# ||cs.celebbusters.com^$third-party (easylistchina+easylist.txt: 41508) -.cs.celebbusters.com -# ||crocogirls.com/croco-new.js (easylistchina+easylist.txt: 41507) -.crocogirls.com/croco-new\.js -# ||creamgoodies.com/potd/ (easylistchina+easylist.txt: 41506) -.creamgoodies.com/potd/ -# ||cpm.amateurcommunity.com^ (easylistchina+easylist.txt: 41505) -.cpm.amateurcommunity.com -# ||cp.intl.match.com^$third-party (easylistchina+easylist.txt: 41504) -.cp.intl.match.com -# ||core.queerclick.com^$third-party (easylistchina+easylist.txt: 41503) -.core.queerclick.com -# ||contentcache-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 41502) -.contentcache-a.akamaihd.net -# ||content.liveuniverse.com^$third-party (easylistchina+easylist.txt: 41501) -.content.liveuniverse.com -# ||cockfortwo.com/track/$third-party (easylistchina+easylist.txt: 41500) -.cockfortwo.com/track/ -# ||cmix.org/teasers/? (easylistchina+easylist.txt: 41499) -.cmix.org/teasers/\? -# ||closepics.com/media/banners/ (easylistchina+easylist.txt: 41498) -.closepics.com/media/banners/ -# ||clipjunkie.com/sftopbanner$third-party (easylistchina+easylist.txt: 41497) -.clipjunkie.com/sftopbanner -# ||clickz.lonelycheatingwives.com^$third-party (easylistchina+easylist.txt: 41496) -.clickz.lonelycheatingwives.com -# ||click.kink.com^$third-party (easylistchina+easylist.txt: 41495) -.click.kink.com -# ||click.absoluteagency.com^$third-party (easylistchina+easylist.txt: 41494) -.click.absoluteagency.com -# ||chaturbate.com/creative/ (easylistchina+easylist.txt: 41493) -.chaturbate.com/creative/ -# ||chaturbate.com/affiliates/ (easylistchina+easylist.txt: 41492) -.chaturbate.com/affiliates/ -# ||cdnjke.com^$third-party (easylistchina+easylist.txt: 41491) -.cdnjke.com -# ||cdncache2-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 41490) -.cdncache2-a.akamaihd.net -# ||cdn.epom.com^*/940_250.gif (easylistchina+easylist.txt: 41489) -.cdn.epom.com/.*/940_250\.gif -# ||cash.femjoy.com^$third-party (easylistchina+easylist.txt: 41488) -.cash.femjoy.com -# ||cartoontube.com^$subdocument,third-party (easylistchina+easylist.txt: 41487) -.cartoontube.com -# ||camsrule.com/exports/$third-party (easylistchina+easylist.txt: 41486) -.camsrule.com/exports/ -# ||cams.spacash.com^$third-party (easylistchina+easylist.txt: 41485) -.cams.spacash.com -# ||cams.enjoy.be^$third-party (easylistchina+easylist.txt: 41484) -.cams.enjoy.be -# ||cams.com/p/cams/cpcs/streaminfo.cgi?$third-party (easylistchina+easylist.txt: 41483) -.cams.com/p/cams/cpcs/streaminfo\.cgi\? -# ||cams.com/go/$third-party (easylistchina+easylist.txt: 41482) -.cams.com/go/ -# ||camelmedia.net/thumbs/$third-party (easylistchina+easylist.txt: 41481) -.camelmedia.net/thumbs/ -# ||cache.worldfriends.tv^$third-party (easylistchina+easylist.txt: 41480) -.cache.worldfriends.tv -# ||bullz-eye.com/pictureofday/$third-party (easylistchina+easylist.txt: 41479) -.bullz-eye.com/pictureofday/ -# ||brazzers.com/ads/ (easylistchina+easylist.txt: 41478) -.brazzers.com/ads/ -# ||brasileirinhas.com.br/banners/ (easylistchina+easylist.txt: 41477) -.brasileirinhas.com.br/banners/ -# ||br.realitykings.com^ (easylistchina+easylist.txt: 41476) -.br.realitykings.com -# ||br.fling.com^ (easylistchina+easylist.txt: 41475) -.br.fling.com -# ||br.blackfling.com^ (easylistchina+easylist.txt: 41474) -.br.blackfling.com -# ||bongacash.com/tools/promo.php$third-party (easylistchina+easylist.txt: 41473) -.bongacash.com/tools/promo\.php -# ||bongacash.com/promo.php (easylistchina+easylist.txt: 41472) -.bongacash.com/promo\.php -# ||bongacash.com/dynamic_banner/ (easylistchina+easylist.txt: 41471) -.bongacash.com/dynamic_banner/ -# ||blogspot.com^*/ad.jpg (easylistchina+easylist.txt: 41470) -.blogspot.com/.*/ad\.jpg -# ||blackbrazilianshemales.com/bbs/banners/ (easylistchina+easylist.txt: 41469) -.blackbrazilianshemales.com/bbs/banners/ -# ||blaaaa12.googlecode.com^ (easylistchina+easylist.txt: 41468) -.blaaaa12.googlecode.com -# ||bigmovies.com/images/banners/ (easylistchina+easylist.txt: 41467) -.bigmovies.com/images/banners/ -# ||bbp.brazzers.com^$third-party (easylistchina+easylist.txt: 41466) -.bbp.brazzers.com -# ||bans.bride.ru^$third-party (easylistchina+easylist.txt: 41465) -.bans.bride.ru -# ||bannershotlink.perfectgonzo.com^ (easylistchina+easylist.txt: 41464) -.bannershotlink.perfectgonzo.com -# ||banners.webcams.com^$third-party (easylistchina+easylist.txt: 41463) -.banners.webcams.com -# ||banners.videosecrets.com^$third-party (easylistchina+easylist.txt: 41462) -.banners.videosecrets.com -# ||banners.rushcommerce.com^$third-party (easylistchina+easylist.txt: 41461) -.banners.rushcommerce.com -# ||banners.rude.com^$third-party (easylistchina+easylist.txt: 41460) -.banners.rude.com -# ||banners.penthouse.com^$third-party (easylistchina+easylist.txt: 41459) -.banners.penthouse.com -# ||banners.payserve.com^$third-party (easylistchina+easylist.txt: 41458) -.banners.payserve.com -# ||banners.passiondollars.com^$third-party (easylistchina+easylist.txt: 41457) -.banners.passiondollars.com -# ||banners.passion.com^$third-party (easylistchina+easylist.txt: 41456) -.banners.passion.com -# ||banners.outpersonals.com^$third-party (easylistchina+easylist.txt: 41455) -.banners.outpersonals.com -# ||banners.nostringsattached.com^$third-party (easylistchina+easylist.txt: 41454) -.banners.nostringsattached.com -# ||banners.fuckbookhookups.com^$third-party (easylistchina+easylist.txt: 41453) -.banners.fuckbookhookups.com -# ||banners.fastcupid.com^$third-party (easylistchina+easylist.txt: 41452) -.banners.fastcupid.com -# ||banners.blacksexmatch.com^$third-party (easylistchina+easylist.txt: 41451) -.banners.blacksexmatch.com -# ||banners.amigos.com^$third-party (easylistchina+easylist.txt: 41450) -.banners.amigos.com -# ||banners.alt.com^$third-party (easylistchina+easylist.txt: 41449) -.banners.alt.com -# ||banners.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41448) -.banners.adultfriendfinder.com -# ||banners*.spacash.com^$third-party (easylistchina+easylist.txt: 41447) -.banners*./.*\.spacash\.com[^\w%.-] -.banners*.spacash.com -# ||banner.themediaplanets.com^$third-party (easylistchina+easylist.txt: 41446) -.banner.themediaplanets.com -# ||banner.resulthost.org^$third-party (easylistchina+easylist.txt: 41445) -.banner.resulthost.org -# ||banner.gasuki.com^$third-party (easylistchina+easylist.txt: 41444) -.banner.gasuki.com -# ||banner.69stream.com^$third-party (easylistchina+easylist.txt: 41443) -.banner.69stream.com -# ||babes.picrush.com^$third-party (easylistchina+easylist.txt: 41442) -.babes.picrush.com -# ||b.turbo.az^$third-party (easylistchina+easylist.txt: 41441) -.b.turbo.az -# ||avatraffic.com/b/ (easylistchina+easylist.txt: 41440) -.avatraffic.com/b/ -# ||atlasfiles.com^*/sp3_ep.js$third-party (easylistchina+easylist.txt: 41439) -.atlasfiles.com/.*/sp3_ep\.js -# ||assinclusive.com/linkstxt2.html (easylistchina+easylist.txt: 41438) -.assinclusive.com/linkstxt2\.html -# ||assinclusive.com/cyonix.html (easylistchina+easylist.txt: 41437) -.assinclusive.com/cyonix\.html -# ||asktiava.com/promotion/ (easylistchina+easylist.txt: 41436) -.asktiava.com/promotion/ -# ||asianbutterflies.com/potd/ (easylistchina+easylist.txt: 41435) -.asianbutterflies.com/potd/ -# ||ard.sweetdiscreet.com^ (easylistchina+easylist.txt: 41434) -.ard.sweetdiscreet.com -# ||animalsexfun.com/baner/ (easylistchina+easylist.txt: 41433) -.animalsexfun.com/baner/ -# ||ambya.com/potdc/ (easylistchina+easylist.txt: 41432) -.ambya.com/potdc/ -# ||amateurseite.com/banner/$third-party (easylistchina+easylist.txt: 41431) -.amateurseite.com/banner/ -# ||amateur.amarotic.com^$third-party (easylistchina+easylist.txt: 41430) -.amateur.amarotic.com -# ||amarotic.com^*?wmid=*&kamid=*&wsid=$third-party (easylistchina+easylist.txt: 41429) -.amarotic.com/.*\?wmid=.*&kamid=.*&wsid= -# ||amarotic.com/rotation/layer/chatpage/$third-party (easylistchina+easylist.txt: 41428) -.amarotic.com/rotation/layer/chatpage/ -# ||amarotic.com/Banner/$third-party (easylistchina+easylist.txt: 41427) -.amarotic.com/Banner/ -# ||alt.com/go/$third-party (easylistchina+easylist.txt: 41426) -.alt.com/go/ -# ||allanalpass.com/visitScript/ (easylistchina+easylist.txt: 41425) -.allanalpass.com/visitScript/ -# ||affiliates.thrixxx.com^ (easylistchina+easylist.txt: 41424) -.affiliates.thrixxx.com -# ||affiliates.franchisegator.com^$third-party (easylistchina+easylist.txt: 41423) -.affiliates.franchisegator.com -# ||affiliates.easydate.biz^$third-party (easylistchina+easylist.txt: 41422) -.affiliates.easydate.biz -# ||affiliates.cupidplc.com^$third-party (easylistchina+easylist.txt: 41421) -.affiliates.cupidplc.com -# ||affiliate.godaddy.com^$third-party (easylistchina+easylist.txt: 41420) -.affiliate.godaddy.com -# ||affiliate.dtiserv.com^$third-party (easylistchina+easylist.txt: 41419) -.affiliate.dtiserv.com -# ||affiliate.burn-out.tv^$third-party (easylistchina+easylist.txt: 41418) -.affiliate.burn-out.tv -# ||aff-jp.exshot.com^$third-party (easylistchina+easylist.txt: 41417) -.aff-jp.exshot.com -# ||aff-jp.dxlive.com^$third-party (easylistchina+easylist.txt: 41416) -.aff-jp.dxlive.com -# ||aebn.net/feed/$third-party (easylistchina+easylist.txt: 41415) -.aebn.net/feed/ -# ||aebn.net/banners/ (easylistchina+easylist.txt: 41414) -.aebn.net/banners/ -# ||adultporntubemovies.com/images/banners/ (easylistchina+easylist.txt: 41413) -.adultporntubemovies.com/images/banners/ -# ||adultfriendfinder.com/piclist?$third-party (easylistchina+easylist.txt: 41412) -.adultfriendfinder.com/piclist\? -# ||adultfriendfinder.com/javascript/$third-party (easylistchina+easylist.txt: 41411) -.adultfriendfinder.com/javascript/ -# ||adultfriendfinder.com/images/banners/$third-party (easylistchina+easylist.txt: 41410) -.adultfriendfinder.com/images/banners/ -# ||adultfriendfinder.com/go/$third-party (easylistchina+easylist.txt: 41409) -.adultfriendfinder.com/go/ -# ||adultfax.com/service/vsab.php? (easylistchina+easylist.txt: 41408) -.adultfax.com/service/vsab\.php\? -# ||adultdvd.com/plugins/*/store.html$third-party (easylistchina+easylist.txt: 41407) -.adultdvd.com/plugins/.*/store\.html -# ||adtools2.amakings.com^$third-party (easylistchina+easylist.txt: 41406) -.adtools2.amakings.com -# ||adtools.gossipkings.com^$third-party (easylistchina+easylist.txt: 41405) -.adtools.gossipkings.com -# ||adsrv.bangbros.com^$third-party (easylistchina+easylist.txt: 41404) -.adsrv.bangbros.com -# ||ads.videosz.com^ (easylistchina+easylist.txt: 41403) -.ads.videosz.com -# ||ads.contentabc.com^$third-party (easylistchina+easylist.txt: 41402) -.ads.contentabc.com -# ||adb.fling.com^$third-party (easylistchina+easylist.txt: 41401) -.adb.fling.com -# ||ad.traffmonster.info^$third-party (easylistchina+easylist.txt: 41400) -.ad.traffmonster.info -# ||ad.iloveinterracial.com^ (easylistchina+easylist.txt: 41399) -.ad.iloveinterracial.com -# ||ad.favod.net^$third-party (easylistchina+easylist.txt: 41398) -.ad.favod.net -# ||ad.duga.jp^ (easylistchina+easylist.txt: 41397) -.ad.duga.jp -# ||a.sucksex.com^$third-party (easylistchina+easylist.txt: 41396) -.a.sucksex.com -# ||91.83.237.41^*/banners/ (easylistchina+easylist.txt: 41395) -.91.83.237.41/.*/banners/ -# ||88.85.77.94/rotation/$third-party (easylistchina+easylist.txt: 41394) -.88.85.77.94/rotation/ -# ||79.120.183.166^*/banners/ (easylistchina+easylist.txt: 41392) -.79.120.183.166/.*/banners/ -# ||4tube.com/iframe/$third-party (easylistchina+easylist.txt: 41391) -.4tube.com/iframe/ -# ||213.174.140.76^*/js/msn.js (easylistchina+easylist.txt: 41390) -.213.174.140.76/.*/js/msn\.js -# ||213.174.140.76^*/js/msn-$script (easylistchina+easylist.txt: 41389) -.213.174.140.76/.*/js/msn- -# ||213.174.140.76^*/ads/ (easylistchina+easylist.txt: 41388) -.213.174.140.76/.*/ads/ -# ||213.174.140.76/js/showbanner4.js (easylistchina+easylist.txt: 41387) -.213.174.140.76/js/showbanner4\.js -# ||213.174.130.9/banners/ (easylistchina+easylist.txt: 41386) -.213.174.130.9/banners/ -# ||213.174.130.8/banners/ (easylistchina+easylist.txt: 41385) -.213.174.130.8/banners/ -# ||213.174.130.10/banners/ (easylistchina+easylist.txt: 41384) -.213.174.130.10/banners/ -# ||204.140.25.247/ads/ (easylistchina+easylist.txt: 41383) -.204.140.25.247/ads/ -# ||193.34.134.74^*/banners/ (easylistchina+easylist.txt: 41382) -.193.34.134.74/.*/banners/ -# ||193.34.134.18^*/banners/ (easylistchina+easylist.txt: 41381) -.193.34.134.18/.*/banners/ -# /exports/livemodel/?$subdocument (easylistchina+easylist.txt: 41380) -/(.*/)?exports/livemodel/\? -# .php?pub=*&trw_adblocker=$subdocument (easylistchina+easylist.txt: 41379) -/.*\.php\?pub=.*&trw_adblocker= -# ||wptpoker.com^$popup (easylistchina+easylist.txt: 41377) -.wptpoker.com -# ||withbinaryoptions.com^$popup,third-party (easylistchina+easylist.txt: 41376) -.withbinaryoptions.com -# ||with-binaryoption.com^$popup,third-party (easylistchina+easylist.txt: 41375) -.with-binaryoption.com -# ||widget.yavli.com^$popup,third-party (easylistchina+easylist.txt: 41374) -.widget.yavli.com -# ||weeklyprizewinner.com-net.info^$popup (easylistchina+easylist.txt: 41373) -.weeklyprizewinner.com-net.info -# ||wealth-at-home-millions.com^$popup,third-party (easylistchina+easylist.txt: 41372) -.wealth-at-home-millions.com -# ||virtuagirl.com/landing/$popup,third-party (easylistchina+easylist.txt: 41371) -.virtuagirl.com/landing/ -# ||vidds.net/?s=promo$popup,third-party (easylistchina+easylist.txt: 41370) -.vidds.net/\?s=promo -# ||usenet.nl^$popup (easylistchina+easylist.txt: 41369) -.usenet.nl -# ||urmediazone.com/play?ref=$popup,third-party (easylistchina+easylist.txt: 41368) -.urmediazone.com/play\?ref= -# ||urlcash.net/random*.php$popup (easylistchina+easylist.txt: 41367) -.urlcash.net/random.*\.php -# ||uploaded.net/ref/$popup (easylistchina+easylist.txt: 41366) -.uploaded.net/ref/ -# ||upbcd.info/vuze/$popup (easylistchina+easylist.txt: 41365) -.upbcd.info/vuze/ -# ||ul.to/ref/$popup (easylistchina+easylist.txt: 41364) -.ul.to/ref/ -# ||tripadvisor.*/HotelLander?$popup,third-party (easylistchina+easylist.txt: 41362) -.tripadvisor.*./(.*/)?HotelLander\? -# ||track.xtrasize.nl^$popup,third-party (easylistchina+easylist.txt: 41361) -.track.xtrasize.nl -# ||track.mypcbackup.com^$popup,third-party (easylistchina+easylist.txt: 41360) -.track.mypcbackup.com -# ||torntv-tvv.org^$popup,third-party (easylistchina+easylist.txt: 41359) -.torntv-tvv.org -# ||tipico.com^*?affiliateid=$popup,third-party (easylistchina+easylist.txt: 41358) -.tipico.com/.*\?affiliateid= -# ||thetraderinpajamas.com^$popup,third-party (easylistchina+easylist.txt: 41357) -.thetraderinpajamas.com -# ||theseforums.com^*/?ref=$popup (easylistchina+easylist.txt: 41356) -.theseforums.com/.*/\?ref= -# ||thebestbookies.com^$popup,third-party (easylistchina+easylist.txt: 41355) -.thebestbookies.com -# ||sunmaker.com^*^a_aid^$popup,third-party (easylistchina+easylist.txt: 41354) -.sunmaker.com/.*[^\w%.-]a_aid[^\w%.-] -# ||stargames.com/web/*&cid=*&pid=$popup,third-party (easylistchina+easylist.txt: 41353) -.stargames.com/web/.*&cid=.*&pid= -# ||stargames.com/bridge.asp?idr=$popup (easylistchina+easylist.txt: 41352) -.stargames.com/bridge\.asp\?idr= -# ||stake7.com^*?a_aid=$popup,third-party (easylistchina+easylist.txt: 41351) -.stake7.com/.*\?a_aid= -# ||softingo.com/clp/$popup (easylistchina+easylist.txt: 41350) -.softingo.com/clp/ -# ||sharecash.org^$popup,third-party (easylistchina+easylist.txt: 41349) -.sharecash.org -# ||settlecruise.org^$popup (easylistchina+easylist.txt: 41348) -.settlecruise.org -# ||serve.williamhillcasino.com^$popup,third-party (easylistchina+easylist.txt: 41347) -.serve.williamhillcasino.com -# ||serve.prestigecasino.com^$popup,third-party (easylistchina+easylist.txt: 41346) -.serve.prestigecasino.com -# ||secure.komli.com^$popup,third-party (easylistchina+easylist.txt: 41345) -.secure.komli.com -# ||roomkey.com/referrals?$popup,third-party (easylistchina+easylist.txt: 41344) -.roomkey.com/referrals\? -# ||rocketgames.com^$popup,third-party (easylistchina+easylist.txt: 41343) -.rocketgames.com -# ||red-tube.com/popunder/$popup (easylistchina+easylist.txt: 41342) -.red-tube.com/popunder/ -# ||record.sportsbetaffiliates.com.au^$popup,third-party (easylistchina+easylist.txt: 41341) -.record.sportsbetaffiliates.com.au -# ||rackcorp.com^$popup (easylistchina+easylist.txt: 41340) -.rackcorp.com -# ||pub.ezanga.com/rv2.php?$popup (easylistchina+easylist.txt: 41339) -.pub.ezanga.com/rv2\.php\? -# ||promo.xcasino.com/?$popup,third-party (easylistchina+easylist.txt: 41338) -.promo.xcasino.com/\? -# ||promo.galabingo.com^$popup,third-party (easylistchina+easylist.txt: 41337) -.promo.galabingo.com -# ||priceinfo.comuv.com^$popup (easylistchina+easylist.txt: 41336) -.priceinfo.comuv.com -# ||pokerstars.eu^*/?source=$popup,third-party (easylistchina+easylist.txt: 41335) -.pokerstars.eu/.*/\?source= -# ||platinumdown.com^$popup (easylistchina+easylist.txt: 41334) -.platinumdown.com -# ||planet49.com/cgi-bin/wingame.pl?$popup (easylistchina+easylist.txt: 41333) -.planet49.com/cgi-bin/wingame\.pl\? -# ||pc.thevideo.me^$popup,third-party (easylistchina+easylist.txt: 41332) -.pc.thevideo.me -# ||paid.outbrain.com/network/redir?$popup,third-party (easylistchina+easylist.txt: 41331) -.paid.outbrain.com/network/redir\? -# ||otvetus.com^$popup,third-party (easylistchina+easylist.txt: 41330) -.otvetus.com -# ||opendownloadmanager.com^$popup,third-party (easylistchina+easylist.txt: 41329) -.opendownloadmanager.com -# ||noowmedia.com^$popup (easylistchina+easylist.txt: 41328) -.noowmedia.com -# ||mypromocenter.com^$popup (easylistchina+easylist.txt: 41327) -.mypromocenter.com -# ||mp3ger.com^$popup,third-party (easylistchina+easylist.txt: 41326) -.mp3ger.com -# ||mgid.com^$popup,third-party (easylistchina+easylist.txt: 41325) -.mgid.com -# ||meme.smhlmao.com^$popup,third-party (easylistchina+easylist.txt: 41324) -.meme.smhlmao.com -# ||megacloud.com/signup?$popup,third-party (easylistchina+easylist.txt: 41323) -.megacloud.com/signup\? -# ||media.mybet.com/redirect.aspx?pid=*&bid=$popup,third-party (easylistchina+easylist.txt: 41322) -.media.mybet.com/redirect\.aspx\?pid=.*&bid= -# ||mcars.org/landing/$popup,third-party (easylistchina+easylist.txt: 41321) -.mcars.org/landing/ -# ||maxedtube.com/video_play?*&utm_campaign=$popup,third-party (easylistchina+easylist.txt: 41320) -.maxedtube.com/video_play\?.*&utm_campaign= -# ||makemoneyonline.2yu.in^$popup (easylistchina+easylist.txt: 41319) -.makemoneyonline.2yu.in -# ||lyricsbogie.com/?$popup,third-party (easylistchina+easylist.txt: 41318) -.lyricsbogie.com/\? -# ||lumosity.com/landing_pages/$popup (easylistchina+easylist.txt: 41317) -.lumosity.com/landing_pages/ -# ||lsbet.com/bonus/$popup,third-party (easylistchina+easylist.txt: 41316) -.lsbet.com/bonus/ -# ||lp.titanpoker.com^$popup,third-party (easylistchina+easylist.txt: 41315) -.lp.titanpoker.com -# ||lp.musicboxnewtab.com^$popup,third-party (easylistchina+easylist.txt: 41314) -.lp.musicboxnewtab.com -# ||lp.imesh.com/?$popup,third-party (easylistchina+easylist.txt: 41313) -.lp.imesh.com/\? -# ||lp.ilivid.com/?$popup,third-party (easylistchina+easylist.txt: 41312) -.lp.ilivid.com/\? -# ||lovepoker.de^*/?pid=$popup (easylistchina+easylist.txt: 41311) -.lovepoker.de/.*/\?pid= -# ||lovefilm.com/partners/$popup,third-party (easylistchina+easylist.txt: 41310) -.lovefilm.com/partners/ -# ||liutilities.com^*/affiliate/$popup (easylistchina+easylist.txt: 41309) -.liutilities.com/.*/affiliate/ -# ||i2casting.com^$popup,third-party (easylistchina+easylist.txt: 41307) -.i2casting.com -# ||hyperlinksecure.com/go/$popup (easylistchina+easylist.txt: 41306) -.hyperlinksecure.com/go/ -# ||hyperlinksecure.com/back?token=$popup (easylistchina+easylist.txt: 41305) -.hyperlinksecure.com/back\?token= -# ||house-rent.us^$popup,third-party (easylistchina+easylist.txt: 41304) -.house-rent.us -# ||homemadecelebrityporn.com/track/$popup,third-party (easylistchina+easylist.txt: 41303) -.homemadecelebrityporn.com/track/ -# ||hmn-net.com^*/xdirect/$popup,third-party (easylistchina+easylist.txt: 41302) -.hmn-net.com/.*/xdirect/ -# ||hetu.in^$popup,third-party (easylistchina+easylist.txt: 41301) -.hetu.in -# ||hdvidcodecs.com^$popup (easylistchina+easylist.txt: 41300) -.hdvidcodecs.com -# ||hdvid-codec.com^$popup (easylistchina+easylist.txt: 41299) -.hdvid-codec.com -# ||getsecuredfiles.com^$popup,third-party (easylistchina+easylist.txt: 41298) -.getsecuredfiles.com -# ||generic4all.com^*.dhtml?refid=$popup,third-party (easylistchina+easylist.txt: 41297) -.generic4all.com/.*\.dhtml\?refid= -# ||fwmrm.net/ad/$popup (easylistchina+easylist.txt: 41296) -.fwmrm.net/ad/ -# ||fulltiltpoker.com/affiliates/$popup,third-party (easylistchina+easylist.txt: 41295) -.fulltiltpoker.com/affiliates/ -# ||fulltiltpoker.com/?key=$popup,third-party (easylistchina+easylist.txt: 41294) -.fulltiltpoker.com/\?key= -# ||fsoft4down.com^$popup (easylistchina+easylist.txt: 41293) -.fsoft4down.com -# ||free-rewards.com-s.tv^$popup (easylistchina+easylist.txt: 41292) -.free-rewards.com-s.tv -# ||fleshlight.com/?link=$popup,third-party (easylistchina+easylist.txt: 41291) -.fleshlight.com/\?link= -# ||flashplayer-updates.com^$popup (easylistchina+easylist.txt: 41290) -.flashplayer-updates.com -# ||firstload.de^$popup (easylistchina+easylist.txt: 41289) -.firstload.de -# ||firstload.com^$popup (easylistchina+easylist.txt: 41288) -.firstload.com -# ||fastclick.net^$popup (easylistchina+easylist.txt: 41287) -.fastclick.net -# ||facebookcoverx.com^$popup,third-party (easylistchina+easylist.txt: 41286) -.facebookcoverx.com -# ||evanetwork.com^$popup (easylistchina+easylist.txt: 41285) -.evanetwork.com -# ||europacasino.com^$popup,third-party (easylistchina+easylist.txt: 41284) -.europacasino.com -# ||eurogrand.com^$popup (easylistchina+easylist.txt: 41283) -.eurogrand.com -# ||erotikdeal.com/advertising.html$popup,third-party (easylistchina+easylist.txt: 41282) -.erotikdeal.com/advertising\.html -# ||erotikdeal.com/?ref=$popup,third-party (easylistchina+easylist.txt: 41281) -.erotikdeal.com/\?ref= -# ||eroticmix.blogspot.$popup (easylistchina+easylist.txt: 41280) -.eroticmix.blogspot.*. -# ||dateoffer.net/?s=*&subid=$popup,third-party (easylistchina+easylist.txt: 41279) -.dateoffer.net/\?s=.*&subid= -# ||d1110e4.se^$popup (easylistchina+easylist.txt: 41278) -.d1110e4.se -# ||ctcautobody.com^$popup,third-party (easylistchina+easylist.txt: 41277) -.ctcautobody.com -# ||coolguruji.com/l.php?$popup (easylistchina+easylist.txt: 41276) -.coolguruji.com/l\.php\? -# ||clickansave.net^$popup,third-party (easylistchina+easylist.txt: 41275) -.clickansave.net -# ||click.scour.com^$popup,third-party (easylistchina+easylist.txt: 41274) -.click.scour.com -# ||chaturbate.com/affiliates/$popup,third-party (easylistchina+easylist.txt: 41273) -.chaturbate.com/affiliates/ -# ||chatulfetelor.net/$popup (easylistchina+easylist.txt: 41272) -.chatulfetelor.net -# ||chatlivejasmin.net^$popup (easylistchina+easylist.txt: 41271) -.chatlivejasmin.net -# ||cdnfarm18.com^$popup,third-party (easylistchina+easylist.txt: 41270) -.cdnfarm18.com -# ||cdn.optmd.com^$popup,third-party (easylistchina+easylist.txt: 41269) -.cdn.optmd.com -# ||casinoadviser.net^$popup (easylistchina+easylist.txt: 41268) -.casinoadviser.net -# ||casino.com^*?*=$popup,third-party (easylistchina+easylist.txt: 41267) -.casino.com/.*\?.*= -# ||casino-x.com^*?partner=$popup,third-party (easylistchina+easylist.txt: 41266) -.casino-x.com/.*\?partner= -# ||bovada.lv^$popup,third-party (easylistchina+easylist.txt: 41265) -.bovada.lv -# ||binaryoptions24h.com^$popup,third-party (easylistchina+easylist.txt: 41264) -.binaryoptions24h.com -# ||bet365.com^*affiliate=$popup (easylistchina+easylist.txt: 41263) -.bet365.com/.*affiliate= -# ||banner.galabingo.com^$popup,third-party (easylistchina+easylist.txt: 41262) -.banner.galabingo.com -# ||babylon.com/welcome/index.html?affID=$popup,third-party (easylistchina+easylist.txt: 41261) -.babylon.com/welcome/index\.html\?affID= -# ||babylon.com/redirects/$popup,third-party (easylistchina+easylist.txt: 41260) -.babylon.com/redirects/ -# ||amazing-offers.co.il^$popup,third-party (easylistchina+easylist.txt: 41259) -.amazing-offers.co.il -# ||aliexpress.com/?af=$popup,third-party (easylistchina+easylist.txt: 41258) -.aliexpress.com/\?af= -# ||affportal-lb.bevomedia.com^$popup,third-party (easylistchina+easylist.txt: 41257) -.affportal-lb.bevomedia.com -# ||affiliates.galapartners.co.uk^$popup,third-party (easylistchina+easylist.txt: 41256) -.affiliates.galapartners.co.uk -# ||adserving.unibet.com^$popup,third-party (easylistchina+easylist.txt: 41255) -.adserving.unibet.com -# ||adrotator.se^$popup (easylistchina+easylist.txt: 41254) -.adrotator.se -# ||admngronline.com^$popup,third-party (easylistchina+easylist.txt: 41253) -.admngronline.com -# ||adfoc.us/serve/$popup,third-party (easylistchina+easylist.txt: 41252) -.adfoc.us/serve/ -# ||6angebot.ch/?ref=$popup,third-party (easylistchina+easylist.txt: 41251) -.6angebot.ch/\?ref= -# ||5.39.67.191/promo.php?$popup (easylistchina+easylist.txt: 41250) -.5.39.67.191/promo\.php\? -# ||4utro.ru^$popup (easylistchina+easylist.txt: 41249) -.4utro.ru -# ||d1nmk7iw7hajjn.cloudfront.net^ (easylistchina+easylist.txt: 41247) -.d1nmk7iw7hajjn.cloudfront.net -# ||chronophotographie.science^$third-party (easylistchina+easylist.txt: 41246) -.chronophotographie.science -# ||iadc.qwapi.com^ (easylistchina+easylist.txt: 41244) -.iadc.qwapi.com -# ||zmh.zope.net^$third-party (easylistchina+easylist.txt: 41241) -.zmh.zope.net -# ||zip2save.com/widget.php? (easylistchina+easylist.txt: 41240) -.zip2save.com/widget\.php\? -# ||ziffstatic.com/jst/zdvtools. (easylistchina+easylist.txt: 41239) -.ziffstatic.com/jst/zdvtools\. -# ||ziffstatic.com/jst/zdsticky. (easylistchina+easylist.txt: 41238) -.ziffstatic.com/jst/zdsticky\. -# ||ziffprod.com/CSE/BestPrice? (easylistchina+easylist.txt: 41237) -.ziffprod.com/CSE/BestPrice\? -# ||ziffdavisenterprise.com/contextclicks/ (easylistchina+easylist.txt: 41236) -.ziffdavisenterprise.com/contextclicks/ -# ||zeusfiles.com/promo/ (easylistchina+easylist.txt: 41235) -.zeusfiles.com/promo/ -# ||zeus.qj.net^ (easylistchina+easylist.txt: 41234) -.zeus.qj.net -# ||zergnet.com^$third-party (easylistchina+easylist.txt: 41233) -.zergnet.com -# ||zazzle.com^*?rf$third-party (easylistchina+easylist.txt: 41232) -.zazzle.com/.*\?rf -# ||zazzle.com/utl/getpanel$third-party (easylistchina+easylist.txt: 41231) -.zazzle.com/utl/getpanel -# ||zapads.zapak.com^ (easylistchina+easylist.txt: 41230) -.zapads.zapak.com -# ||youinsure.co.za/frame/$third-party (easylistchina+easylist.txt: 41229) -.youinsure.co.za/frame/ -# ||you-cubez.com/images/banners/ (easylistchina+easylist.txt: 41228) -.you-cubez.com/images/banners/ -# ||yooclick.com^$subdocument,third-party (easylistchina+easylist.txt: 41227) -.yooclick.com -# ||yontoo.com^$subdocument,third-party (easylistchina+easylist.txt: 41226) -.yontoo.com -# ||ynet.co.il^*/ynetbanneradmin/ (easylistchina+easylist.txt: 41225) -.ynet.co.il/.*/ynetbanneradmin/ -# ||yimg.com^*/sponsored.js (easylistchina+easylist.txt: 41223) -.yimg.com/.*/sponsored\.js -# ||yimg.com^*/quickplay_maxwellhouse.png (easylistchina+easylist.txt: 41222) -.yimg.com/.*/quickplay_maxwellhouse\.png -# ||yimg.com/gs/apex/mediastore/ (easylistchina+easylist.txt: 41220) -.yimg.com/gs/apex/mediastore/ -# ||yieldmanager.edgesuite.net^$third-party (easylistchina+easylist.txt: 41219) -.yieldmanager.edgesuite.net -# ||yeas.yahoo.co.jp^ (easylistchina+easylist.txt: 41218) -.yeas.yahoo.co.jp -# ||yb.torchbrowser.com^ (easylistchina+easylist.txt: 41217) -.yb.torchbrowser.com -# ||yahoo.net^*/ads/ (easylistchina+easylist.txt: 41216) -.yahoo.net/.*/ads/ -# ||yachting.org^*/banner/ (easylistchina+easylist.txt: 41215) -.yachting.org/.*/banner/ -# ||xproxyhost.com/images/banners/ (easylistchina+easylist.txt: 41214) -.xproxyhost.com/images/banners/ -# ||xml.exactseek.com/cgi-bin/js-feed.cgi?$third-party (easylistchina+easylist.txt: 41213) -.xml.exactseek.com/cgi-bin/js-feed\.cgi\? -# ||xingcloud.com^*/uid_ (easylistchina+easylist.txt: 41212) -.xingcloud.com/.*/uid_ -# ||xigen.co.uk^*/Affiliate/ (easylistchina+easylist.txt: 41211) -.xigen.co.uk/.*/Affiliate/ -# ||xgaming.com/rotate*.php?$third-party (easylistchina+easylist.txt: 41210) -.xgaming.com/rotate.*\.php\? -# ||xcams.com/livecams/pub_collante/script.php?$third-party (easylistchina+easylist.txt: 41209) -.xcams.com/livecams/pub_collante/script\.php\? -# ||x3cms.com/ads/ (easylistchina+easylist.txt: 41208) -.x3cms.com/ads/ -# ||wupload.com/referral/$third-party (easylistchina+easylist.txt: 41207) -.wupload.com/referral/ -# ||wupload.com/images/banners/ (easylistchina+easylist.txt: 41206) -.wupload.com/images/banners/ -# ||wtprn.com/sponsors/ (easylistchina+easylist.txt: 41205) -.wtprn.com/sponsors/ -# ||wtpn.twenga.de^ (easylistchina+easylist.txt: 41203) -.wtpn.twenga.de -# ||wtpn.twenga.co.uk^ (easylistchina+easylist.txt: 41202) -.wtpn.twenga.co.uk -# ||wsockd.com^$third-party (easylistchina+easylist.txt: 41201) -.wsockd.com -# ||ws.amazon.*/widgets/$third-party (easylistchina+easylist.txt: 41200) -.ws.amazon.*./(.*/)?widgets/ -# ||wrapper.ign.com^$third-party (easylistchina+easylist.txt: 41199) -.wrapper.ign.com -# ||worldofjudaica.com/static/show/external/ (easylistchina+easylist.txt: 41197) -.worldofjudaica.com/static/show/external/ -# ||worldofjudaica.com/products/dynamic_banner/ (easylistchina+easylist.txt: 41196) -.worldofjudaica.com/products/dynamic_banner/ -# ||worldnow.com/images/incoming/RTJ/rtj201303fall.jpg (easylistchina+easylist.txt: 41195) -.worldnow.com/images/incoming/RTJ/rtj201303fall\.jpg -# ||worldcdn.net^*/banners/ (easylistchina+easylist.txt: 41194) -.worldcdn.net/.*/banners/ -# ||wonderlabs.com/affiliate_pro/banners/ (easylistchina+easylist.txt: 41193) -.wonderlabs.com/affiliate_pro/banners/ -# ||wm.co.za/wmjs.php? (easylistchina+easylist.txt: 41192) -.wm.co.za/wmjs\.php\? -# ||wm.co.za/24com.php? (easylistchina+easylist.txt: 41191) -.wm.co.za/24com\.php\? -# ||wishlistproducts.com/affiliatetools/$third-party (easylistchina+easylist.txt: 41190) -.wishlistproducts.com/affiliatetools/ -# ||winsms.co.za/banner/ (easylistchina+easylist.txt: 41189) -.winsms.co.za/banner/ -# ||winpalace.com/?affid= (easylistchina+easylist.txt: 41188) -.winpalace.com/\?affid= -# ||wildamaginations.com/mdm/banner/ (easylistchina+easylist.txt: 41187) -.wildamaginations.com/mdm/banner/ -# ||widgets.solaramerica.org^$third-party (easylistchina+easylist.txt: 41186) -.widgets.solaramerica.org -# ||widgets.realestate.com.au^ (easylistchina+easylist.txt: 41185) -.widgets.realestate.com.au -# ||widgets.progrids.com^$third-party (easylistchina+easylist.txt: 41184) -.widgets.progrids.com -# ||widgets.privateproperty.com.ng^$third-party (easylistchina+easylist.txt: 41183) -.widgets.privateproperty.com.ng -# ||widgets.mozo.com.au^$third-party (easylistchina+easylist.txt: 41182) -.widgets.mozo.com.au -# ||widgets.mobilelocalnews.com^$third-party (easylistchina+easylist.txt: 41181) -.widgets.mobilelocalnews.com -# ||widgets.itunes.apple.com^*&affiliate_id=$third-party (easylistchina+easylist.txt: 41180) -.widgets.itunes.apple.com/.*&affiliate_id= -# ||widgets.fie.futurecdn.net^$script (easylistchina+easylist.txt: 41179) -.widgets.fie.futurecdn.net -# ||widgets.adviceiq.com^$third-party (easylistchina+easylist.txt: 41178) -.widgets.adviceiq.com -# ||widgetcf.adviceiq.com^$third-party (easylistchina+easylist.txt: 41177) -.widgetcf.adviceiq.com -# ||widget.solarquotes.com.au^ (easylistchina+easylist.txt: 41176) -.widget.solarquotes.com.au -# ||widget.shopstyle.com/widget?pid=$subdocument,third-party (easylistchina+easylist.txt: 41175) -.widget.shopstyle.com/widget\?pid= -# ||widget.shopstyle.com.au^ (easylistchina+easylist.txt: 41174) -.widget.shopstyle.com.au -# ||widget.searchschoolsnetwork.com^ (easylistchina+easylist.txt: 41173) -.widget.searchschoolsnetwork.com -# ||widget.scoutpa.com^$third-party (easylistchina+easylist.txt: 41172) -.widget.scoutpa.com -# ||widget.raaze.com^ (easylistchina+easylist.txt: 41171) -.widget.raaze.com -# ||widget.kelkoo.com^ (easylistchina+easylist.txt: 41170) -.widget.kelkoo.com -# ||widget.jobberman.com^$third-party (easylistchina+easylist.txt: 41169) -.widget.jobberman.com -# ||widget.imshopping.com^$third-party (easylistchina+easylist.txt: 41168) -.widget.imshopping.com -# ||widget.crowdignite.com^ (easylistchina+easylist.txt: 41167) -.widget.crowdignite.com -# ||widget.cheki.com.ng^$third-party (easylistchina+easylist.txt: 41166) -.widget.cheki.com.ng -# ||widgeo.net/popup.js (easylistchina+easylist.txt: 41165) -.widgeo.net/popup\.js -# ||whistleout.s3.amazonaws.com^ (easylistchina+easylist.txt: 41164) -.whistleout.s3.amazonaws.com -# ||website.ws^*/banners/ (easylistchina+easylist.txt: 41163) -.website.ws/.*/banners/ -# ||webmasterrock.com/cpxt_pab (easylistchina+easylist.txt: 41162) -.webmasterrock.com/cpxt_pab -# ||webdev.co.zw/images/banners/$third-party (easylistchina+easylist.txt: 41161) -.webdev.co.zw/images/banners/ -# ||web2feel.com/images/$third-party (easylistchina+easylist.txt: 41160) -.web2feel.com/images/ -# ||web-jp.ad-v.jp^ (easylistchina+easylist.txt: 41159) -.web-jp.ad-v.jp -# ||weatherthreat.com^*/app_add.png (easylistchina+easylist.txt: 41158) -.weatherthreat.com/.*/app_add\.png -# ||wealthyrush.com^*/banners/$third-party (easylistchina+easylist.txt: 41157) -.wealthyrush.com/.*/banners/ -# ||watersoul.com^$subdocument,third-party (easylistchina+easylist.txt: 41156) -.watersoul.com -# ||watchme.com/track/$subdocument,third-party (easylistchina+easylist.txt: 41155) -.watchme.com/track/ -# ||watch-naruto.tv/images/$third-party (easylistchina+easylist.txt: 41154) -.watch-naruto.tv/images/ -# ||watch-free-movie-online.net/adds- (easylistchina+easylist.txt: 41153) -.watch-free-movie-online.net/adds- -# ||washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie.html (easylistchina+easylist.txt: 41152) -.washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie\.html -# ||warrantydirect.co.uk/widgets/ (easylistchina+easylist.txt: 41151) -.warrantydirect.co.uk/widgets/ -# ||warezhaven.org/warezhavenbann.jpg (easylistchina+easylist.txt: 41150) -.warezhaven.org/warezhavenbann\.jpg -# ||walmartimages.com^*/HealthPartner_ (easylistchina+easylist.txt: 41149) -.walmartimages.com/.*/HealthPartner_ -# ||wagital.com/Wagital-Ads.html (easylistchina+easylist.txt: 41148) -.wagital.com/Wagital-Ads\.html -# ||vxite.com/banner/ (easylistchina+easylist.txt: 41146) -.vxite.com/banner/ -# ||vuvuplaza.com^$subdocument,third-party (easylistchina+easylist.txt: 41145) -.vuvuplaza.com -# ||vrvm.com/t? (easylistchina+easylist.txt: 41144) -.vrvm.com/t\? -# ||vpnxs.nl/images/vpnxs_banner (easylistchina+easylist.txt: 41143) -.vpnxs.nl/images/vpnxs_banner -# ||vpntunnel.se/aff/$third-party (easylistchina+easylist.txt: 41142) -.vpntunnel.se/aff/ -# ||vpn4all.com^*/banner/ (easylistchina+easylist.txt: 41141) -.vpn4all.com/.*/banner/ -# ||voodoo.com^$third-party (easylistchina+easylist.txt: 41140) -.voodoo.com -# ||vittgam.net/images/b/ (easylistchina+easylist.txt: 41139) -.vittgam.net/images/b/ -# ||vitabase.com/images/relationships/$third-party (easylistchina+easylist.txt: 41138) -.vitabase.com/images/relationships/ -# ||visitorboost.com/images/$third-party (easylistchina+easylist.txt: 41137) -.visitorboost.com/images/ -# ||visit.homepagle.com^$third-party (easylistchina+easylist.txt: 41136) -.visit.homepagle.com -# ||virtuaguyhd.com/ref.php? (easylistchina+easylist.txt: 41135) -.virtuaguyhd.com/ref\.php\? -# ||virtuagirl.com/ref.php? (easylistchina+easylist.txt: 41134) -.virtuagirl.com/ref\.php\? -# ||virool.com/widgets/$third-party (easylistchina+easylist.txt: 41133) -.virool.com/widgets/ -# ||viglink.com/api/products^$third-party (easylistchina+easylist.txt: 41132) -.viglink.com/api/products[^\w%.-] -# ||viglink.com/api/optimize^$third-party (easylistchina+easylist.txt: 41131) -.viglink.com/api/optimize[^\w%.-] -# ||viglink.com/api/insert^$third-party (easylistchina+easylist.txt: 41130) -.viglink.com/api/insert[^\w%.-] -# ||viglink.com/api/batch^$third-party (easylistchina+easylist.txt: 41129) -.viglink.com/api/batch[^\w%.-] -# ||vidyoda.com/fambaa/chnls/ADSgmts.ashx? (easylistchina+easylist.txt: 41128) -.vidyoda.com/fambaa/chnls/ADSgmts\.ashx\? -# ||vidible.tv/prod/tags/ (easylistchina+easylist.txt: 41127) -.vidible.tv/prod/tags/ -# ||vidible.tv/placement/vast/ (easylistchina+easylist.txt: 41126) -.vidible.tv/placement/vast/ -# ||videozr.com^$third-party (easylistchina+easylist.txt: 41125) -.videozr.com -# ||videoweed.es/js/aff.js (easylistchina+easylist.txt: 41124) -.videoweed.es/js/aff\.js -# ||viagogo.co.uk/feeds/widget.ashx? (easylistchina+easylist.txt: 41123) -.viagogo.co.uk/feeds/widget\.ashx\? -# ||veospot.com^*.html (easylistchina+easylist.txt: 41122) -.veospot.com/.*\.html -# ||vendor1.fitschigogerl.com^ (easylistchina+easylist.txt: 41121) -.vendor1.fitschigogerl.com -# ||vdownloader.com/pages/$subdocument,third-party (easylistchina+easylist.txt: 41120) -.vdownloader.com/pages/ -# ||vcnewsdaily.com/images/vcnews_right_banner.gif (easylistchina+easylist.txt: 41119) -.vcnewsdaily.com/images/vcnews_right_banner\.gif -# ||vast.videe.tv/vast-proxy/ (easylistchina+easylist.txt: 41118) -.vast.videe.tv/vast-proxy/ -# ||valuechecker.co.uk/banners/$third-party (easylistchina+easylist.txt: 41117) -.valuechecker.co.uk/banners/ -# ||ussearch.com/preview/banner/ (easylistchina+easylist.txt: 41116) -.ussearch.com/preview/banner/ -# ||usfine.com/images/sty_img/usfine.gif (easylistchina+easylist.txt: 41115) -.usfine.com/images/sty_img/usfine\.gif -# ||usersfiles.com/images/72890UF.png (easylistchina+easylist.txt: 41114) -.usersfiles.com/images/72890UF\.png -# ||usenetbucket.com^*-banner/ (easylistchina+easylist.txt: 41113) -.usenetbucket.com/.*-banner/ -# ||usenet.pw^$third-party (easylistchina+easylist.txt: 41112) -.usenet.pw -# ||urtig.net/scripts/js3caf.js (easylistchina+easylist.txt: 41111) -.urtig.net/scripts/js3caf\.js -# ||uploadstation.com/images/banners/ (easylistchina+easylist.txt: 41110) -.uploadstation.com/images/banners/ -# ||uploaded.to/js/layer.js (easylistchina+easylist.txt: 41109) -.uploaded.to/js/layer\.js -# ||uploaded.to/img/public/$third-party (easylistchina+easylist.txt: 41108) -.uploaded.to/img/public/ -# ||uploaded.net/img/public/$third-party (easylistchina+easylist.txt: 41107) -.uploaded.net/img/public/ -# ||upload2.com/upload2.html (easylistchina+easylist.txt: 41106) -.upload2.com/upload2\.html -# ||upickem.net^*/affiliates/$third-party (easylistchina+easylist.txt: 41105) -.upickem.net/.*/affiliates/ -# ||unsereuni.at/resources/img/$third-party (easylistchina+easylist.txt: 41104) -.unsereuni.at/resources/img/ -# ||united-domains.de^*/parking/ (easylistchina+easylist.txt: 41103) -.united-domains.de/.*/parking/ -# ||united-domains.de/parking/ (easylistchina+easylist.txt: 41102) -.united-domains.de/parking/ -# ||uniblue.com^*/affiliates/ (easylistchina+easylist.txt: 41101) -.uniblue.com/.*/affiliates/ -# ||ultimatewebtraffic.info/images/fbautocash (easylistchina+easylist.txt: 41100) -.ultimatewebtraffic.info/images/fbautocash -# ||ukrd.com/images/icons/itunes.png (easylistchina+easylist.txt: 41099) -.ukrd.com/images/icons/itunes\.png -# ||ukrd.com/images/icons/amazon.png (easylistchina+easylist.txt: 41098) -.ukrd.com/images/icons/amazon\.png -# ||ukrd.com/image/*-160x160.png (easylistchina+easylist.txt: 41097) -.ukrd.com/image/.*-160x160\.png -# ||ukrd.com/image/*-160x133.jpg (easylistchina+easylist.txt: 41096) -.ukrd.com/image/.*-160x133\.jpg -# ||ukcast.tv/adds/ (easylistchina+easylist.txt: 41095) -.ukcast.tv/adds/ -# ||ubuntudeal.co.za^$subdocument,third-party (easylistchina+easylist.txt: 41094) -.ubuntudeal.co.za -# ||u-loader.com/image/hotspot_ (easylistchina+easylist.txt: 41093) -.u-loader.com/image/hotspot_ -# ||twivert.com/external/banner234x60. (easylistchina+easylist.txt: 41092) -.twivert.com/external/banner234x60\. -# ||twinplan.com^ (easylistchina+easylist.txt: 41091) -.twinplan.com -# ||turner.com^*/promos/ (easylistchina+easylist.txt: 41090) -.turner.com/.*/promos/ -# ||turbotrafficsystem.com^*/banners/ (easylistchina+easylist.txt: 41089) -.turbotrafficsystem.com/.*/banners/ -# ||turbobit.net/refers/$third-party (easylistchina+easylist.txt: 41088) -.turbobit.net/refers/ -# ||turbobit.net/ref/$third-party (easylistchina+easylist.txt: 41087) -.turbobit.net/ref/ -# ||ttt.co.uk/TMConverter/$third-party (easylistchina+easylist.txt: 41086) -.ttt.co.uk/TMConverter/ -# ||tshirthell.com/img/affiliate_section/$third-party (easylistchina+easylist.txt: 41085) -.tshirthell.com/img/affiliate_section/ -# ||trivago.co.uk/uk/srv/$third-party (easylistchina+easylist.txt: 41084) -.trivago.co.uk/uk/srv/ -# ||tritondigital.com/ltflash.php? (easylistchina+easylist.txt: 41083) -.tritondigital.com/ltflash\.php\? -# ||tritondigital.com/lt?sid*&hasads= (easylistchina+easylist.txt: 41082) -.tritondigital.com/lt\?sid.*&hasads= -# ||tribwgnam.files.wordpress.com^*reskin2. (easylistchina+easylist.txt: 41080) -.tribwgnam.files.wordpress.com/.*reskin2\. -# ||tribktla.files.wordpress.com/*-639x125-sponsorship.jpg? (easylistchina+easylist.txt: 41079) -.tribktla.files.wordpress.com/.*-639x125-sponsorship\.jpg\? -# ||trialpay.com^*&dw-ptid=$third-party (easylistchina+easylist.txt: 41078) -.trialpay.com/.*&dw-ptid= -# ||trialfunder.com/banner/ (easylistchina+easylist.txt: 41077) -.trialfunder.com/banner/ -# ||trhnt.com/sx.tr.js (easylistchina+easylist.txt: 41076) -.trhnt.com/sx\.tr\.js -# ||tremormedia.com^*_preroll_ (easylistchina+easylist.txt: 41075) -.tremormedia.com/.*_preroll_ -# ||tremormedia.com^*/tpacudeoplugin46.swf (easylistchina+easylist.txt: 41074) -.tremormedia.com/.*/tpacudeoplugin46\.swf -# ||tremormedia.com/embed/js/*_ads.js (easylistchina+easylist.txt: 41073) -.tremormedia.com/embed/js/.*_ads\.js -# ||treatme.co.nz/Affiliates/ (easylistchina+easylist.txt: 41072) -.treatme.co.nz/Affiliates/ -# ||travelmail.traveltek.net^$third-party (easylistchina+easylist.txt: 41070) -.travelmail.traveltek.net -# ||tradeboss.com/1/banners/ (easylistchina+easylist.txt: 41069) -.tradeboss.com/1/banners/ -# ||track.bcvcmedia.com^ (easylistchina+easylist.txt: 41068) -.track.bcvcmedia.com -# ||traceybell.co.uk^$subdocument,third-party (easylistchina+easylist.txt: 41067) -.traceybell.co.uk -# ||toysrus.com/graphics/promo/ (easylistchina+easylist.txt: 41066) -.toysrus.com/graphics/promo/ -# ||townsquareblogs.com^*=sponsor& (easylistchina+easylist.txt: 41065) -.townsquareblogs.com/.*=sponsor& -# ||townnews.com^*/upickem-deals.js? (easylistchina+easylist.txt: 41064) -.townnews.com/.*/upickem-deals\.js\? -# ||townnews.com^*/dealwidget.css? (easylistchina+easylist.txt: 41063) -.townnews.com/.*/dealwidget\.css\? -# ||tosol.co.uk/international.php?$third-party (easylistchina+easylist.txt: 41062) -.tosol.co.uk/international\.php\? -# ||torguard.net/images/aff/ (easylistchina+easylist.txt: 41061) -.torguard.net/images/aff/ -# ||toptenreviews.com/w/af_widget.js$third-party (easylistchina+easylist.txt: 41060) -.toptenreviews.com/w/af_widget\.js -# ||toptenreviews.com/r/c/ (easylistchina+easylist.txt: 41059) -.toptenreviews.com/r/c/ -# ||topmedia.com/external/ (easylistchina+easylist.txt: 41057) -.topmedia.com/external/ -# ||topbinaryaffiliates.ck-cdn.com^$third-party (easylistchina+easylist.txt: 41056) -.topbinaryaffiliates.ck-cdn.com -# ||top5result.com/promo/ (easylistchina+easylist.txt: 41055) -.top5result.com/promo/ -# ||tonefuse.s3.amazonaws.com/clientjs/ (easylistchina+easylist.txt: 41054) -.tonefuse.s3.amazonaws.com/clientjs/ -# ||todaysfinder.com^$subdocument,third-party (easylistchina+easylist.txt: 41053) -.todaysfinder.com -# ||tmz.vo.llnwd.net^*_rightrail_200x987.swf (easylistchina+easylist.txt: 41052) -.tmz.vo.llnwd.net/.*_rightrail_200x987\.swf -# ||tmbattle.com/images/promo_ (easylistchina+easylist.txt: 41051) -.tmbattle.com/images/promo_ -# ||tiqiq.com/Tiqiq/WidgetInactiveIFrame.aspx?WidgetID=*&PublisherID=$subdocument,third-party (easylistchina+easylist.txt: 41050) -.tiqiq.com/Tiqiq/WidgetInactiveIFrame\.aspx\?WidgetID=.*&PublisherID= -# ||tipico.*?affiliateId=$third-party (easylistchina+easylist.txt: 41049) -.tipico.*./.*\?affiliateId= -# ||tipico.*/affiliate/$third-party (easylistchina+easylist.txt: 41048) -.tipico.*./(.*/)?affiliate/ -# ||tinyurl.com/4x848hd$subdocument (easylistchina+easylist.txt: 41047) -.tinyurl.com/4x848hd -# ||timesinternet.in/ad/ (easylistchina+easylist.txt: 41046) -.timesinternet.in/ad/ -# ||tigerdirect.com^*/affiliate_ (easylistchina+easylist.txt: 41045) -.tigerdirect.com/.*/affiliate_ -# ||tickles.ie^$subdocument,third-party (easylistchina+easylist.txt: 41044) -.tickles.ie -# ||tickles.co.uk^$subdocument,third-party (easylistchina+easylist.txt: 41043) -.tickles.co.uk -# ||ticketmaster.com/promotionalcontent/ (easylistchina+easylist.txt: 41042) -.ticketmaster.com/promotionalcontent/ -# ||ticketkai.com/banner/ (easylistchina+easylist.txt: 41041) -.ticketkai.com/banner/ -# ||ti.tradetracker.net^ (easylistchina+easylist.txt: 41040) -.ti.tradetracker.net -# ||thirdpartycdn.lumovies.com^$third-party (easylistchina+easylist.txt: 41039) -.thirdpartycdn.lumovies.com -# ||thetechnologyblog.net^*/bp_internet/ (easylistchina+easylist.txt: 41038) -.thetechnologyblog.net/.*/bp_internet/ -# ||theselfdefenseco.com/?affid=$third-party (easylistchina+easylist.txt: 41037) -.theselfdefenseco.com/\?affid= -# ||theseforums.com/visitScript/ (easylistchina+easylist.txt: 41036) -.theseforums.com/visitScript/ -# ||theseblogs.com/visitScript/ (easylistchina+easylist.txt: 41035) -.theseblogs.com/visitScript/ -# ||thereadystore.com/affiliate/ (easylistchina+easylist.txt: 41034) -.thereadystore.com/affiliate/ -# ||themis-media.com^*/sponsorships/ (easylistchina+easylist.txt: 41033) -.themis-media.com/.*/sponsorships/ -# ||themify.me/banners/$third-party (easylistchina+easylist.txt: 41032) -.themify.me/banners/ -# ||themes420.com/bnrsbtns/ (easylistchina+easylist.txt: 41031) -.themes420.com/bnrsbtns/ -# ||thebigchair.com.au^$subdocument,third-party (easylistchina+easylist.txt: 41030) -.thebigchair.com.au -# ||theatm.info/images/$third-party (easylistchina+easylist.txt: 41029) -.theatm.info/images/ -# ||thatfreething.com/images/banners/ (easylistchina+easylist.txt: 41028) -.thatfreething.com/images/banners/ -# ||thaiforlove.com/userfiles/affb- (easylistchina+easylist.txt: 41027) -.thaiforlove.com/userfiles/affb- -# ||textlinks.com/images/banners/ (easylistchina+easylist.txt: 41026) -.textlinks.com/images/banners/ -# ||tedswoodworking.com/images/banners/ (easylistchina+easylist.txt: 41025) -.tedswoodworking.com/images/banners/ -# ||techbargains.com/scripts/banner.js$third-party (easylistchina+easylist.txt: 41024) -.techbargains.com/scripts/banner\.js -# ||techbargains.com/inc_iframe_deals_feed.cfm?$third-party (easylistchina+easylist.txt: 41023) -.techbargains.com/inc_iframe_deals_feed\.cfm\? -# ||tcmwebcorp.com/dtm/tc_global_dtm_delivery.js (easylistchina+easylist.txt: 41022) -.tcmwebcorp.com/dtm/tc_global_dtm_delivery\.js -# ||tap.more-results.net^ (easylistchina+easylist.txt: 41021) -.tap.more-results.net -# ||tankionline.com/tankiref.swf (easylistchina+easylist.txt: 41020) -.tankionline.com/tankiref\.swf -# ||talkfusion.com^*/banners/ (easylistchina+easylist.txt: 41019) -.talkfusion.com/.*/banners/ -# ||takeover.bauermedia.co.uk^$~stylesheet (easylistchina+easylist.txt: 41018) -.takeover.bauermedia.co.uk -# ||take2.co.za/misc/bannerscript.php? (easylistchina+easylist.txt: 41017) -.take2.co.za/misc/bannerscript\.php\? -# ||tag.regieci.com^$third-party (easylistchina+easylist.txt: 41016) -.tag.regieci.com -# ||syndication1.viraladnetwork.net^ (easylistchina+easylist.txt: 41015) -.syndication1.viraladnetwork.net -# ||syndication.visualthesaurus.com/std/vtad.js (easylistchina+easylist.txt: 41014) -.syndication.visualthesaurus.com/std/vtad\.js -# ||syndication.jsadapi.com^ (easylistchina+easylist.txt: 41013) -.syndication.jsadapi.com -# ||syndicate.payloadz.com^$third-party (easylistchina+easylist.txt: 41012) -.syndicate.payloadz.com -# ||swimg.net^*/banners/ (easylistchina+easylist.txt: 41011) -.swimg.net/.*/banners/ -# ||sweeva.com/widget.php?w=$third-party (easylistchina+easylist.txt: 41010) -.sweeva.com/widget\.php\?w= -# ||sweetwater.com/feature/$third-party (easylistchina+easylist.txt: 41009) -.sweetwater.com/feature/ -# ||sweed.to/affiliates/ (easylistchina+easylist.txt: 41008) -.sweed.to/affiliates/ -# ||sweed.to/?pid=$third-party (easylistchina+easylist.txt: 41007) -.sweed.to/\?pid= -# ||swarmjam.com^$script,third-party (easylistchina+easylist.txt: 41006) -.swarmjam.com -# ||svcs.ebay.com/services/search/FindingService/*^affiliate.tracking$third-party (easylistchina+easylist.txt: 41005) -.svcs.ebay.com/services/search/FindingService/.*[^\w%.-]affiliate\.tracking -# ||survivaltop50.com/wp-content/uploads/*/Survival215x150Link.png (easylistchina+easylist.txt: 41004) -.survivaltop50.com/wp-content/uploads/.*/Survival215x150Link\.png -# ||surveywriter.net^$script,third-party (easylistchina+easylist.txt: 41003) -.surveywriter.net -# ||surveymonkey.com/jspop.aspx?$third-party (easylistchina+easylist.txt: 41002) -.surveymonkey.com/jspop\.aspx\? -# ||survey.g.doubleclick.net^ (easylistchina+easylist.txt: 41001) -.survey.g.doubleclick.net -# ||surf100sites.com/images/banner_ (easylistchina+easylist.txt: 41000) -.surf100sites.com/images/banner_ -# ||supply.upjers.com^$third-party (easylistchina+easylist.txt: 40999) -.supply.upjers.com -# ||supersport.com/content/Sponsors (easylistchina+easylist.txt: 40998) -.supersport.com/content/Sponsors -# ||supersport.com/content/2014_Sponsor (easylistchina+easylist.txt: 40997) -.supersport.com/content/2014_Sponsor -# ||supersport.co.za^*180x254 (easylistchina+easylist.txt: 40996) -.supersport.co.za/.*180x254 -# ||superherostuff.com/pages/cbmpage.aspx?*&cbmid=$subdocument,third-party (easylistchina+easylist.txt: 40995) -.superherostuff.com/pages/cbmpage\.aspx\?.*&cbmid= -# ||subliminalmp3s.com^*/banners/ (easylistchina+easylist.txt: 40994) -.subliminalmp3s.com/.*/banners/ -# ||stylefind.com^*?campaign=$subdocument,third-party (easylistchina+easylist.txt: 40993) -.stylefind.com/.*\?campaign= -# ||stuff-nzwhistleout.s3.amazonaws.com^ (easylistchina+easylist.txt: 40992) -.stuff-nzwhistleout.s3.amazonaws.com -# ||structuredchannel.com/sw/swchannel/images/MarketingAssets/*/BannerAd (easylistchina+easylist.txt: 40991) -.structuredchannel.com/sw/swchannel/images/MarketingAssets/.*/BannerAd -# ||strikeadcdn.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 40990) -.strikeadcdn.s3.amazonaws.com -# ||streamtheworld.com/ondemand/creative? (easylistchina+easylist.txt: 40989) -.streamtheworld.com/ondemand/creative\? -# ||streamtheworld.com/ondemand/ars?type=preroll$object-subrequest (easylistchina+easylist.txt: 40988) -.streamtheworld.com/ondemand/ars\?type=preroll -# ||storage.to/affiliate/ (easylistchina+easylist.txt: 40987) -.storage.to/affiliate/ -# ||stats.sitesuite.org^ (easylistchina+easylist.txt: 40986) -.stats.sitesuite.org -# ||stats.hosting24.com^ (easylistchina+easylist.txt: 40985) -.stats.hosting24.com -# ||staticworld.net/images/*_skin_ (easylistchina+easylist.txt: 40984) -.staticworld.net/images/.*_skin_ -# ||static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2.jpg (easylistchina+easylist.txt: 40983) -.static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2\.jpg -# ||static.tradetracker.net^$third-party (easylistchina+easylist.txt: 40982) -.static.tradetracker.net -# ||static.multiplayuk.com/images/w/w- (easylistchina+easylist.txt: 40981) -.static.multiplayuk.com/images/w/w- -# ||static.criteo.net/js/duplo^$third-party (easylistchina+easylist.txt: 40980) -.static.criteo.net/js/duplo[^\w%.-] -# ||static.criteo.net/images^$third-party (easylistchina+easylist.txt: 40979) -.static.criteo.net/images[^\w%.-] -# ||static.criteo.net/flash^$third-party (easylistchina+easylist.txt: 40978) -.static.criteo.net/flash[^\w%.-] -# ||static.criteo.net/design^$third-party (easylistchina+easylist.txt: 40977) -.static.criteo.net/design[^\w%.-] -# ||static.criteo.com/js/duplo^$third-party (easylistchina+easylist.txt: 40976) -.static.criteo.com/js/duplo[^\w%.-] -# ||static.criteo.com/images^$third-party (easylistchina+easylist.txt: 40975) -.static.criteo.com/images[^\w%.-] -# ||static.criteo.com/flash^$third-party (easylistchina+easylist.txt: 40974) -.static.criteo.com/flash[^\w%.-] -# ||static.criteo.com/design^$third-party (easylistchina+easylist.txt: 40973) -.static.criteo.com/design[^\w%.-] -# ||static.*.criteo.net/js/duplo^$third-party (easylistchina+easylist.txt: 40972) -.static.*./.*\.criteo\.net/js/duplo[^\w%.-] -.static.*.criteo.net/js/duplo[^\w%.-] -# ||static.*.criteo.net/images^$third-party (easylistchina+easylist.txt: 40971) -.static.*./.*\.criteo\.net/images[^\w%.-] -.static.*.criteo.net/images[^\w%.-] -# ||static.*.criteo.net/flash^$third-party (easylistchina+easylist.txt: 40970) -.static.*./.*\.criteo\.net/flash[^\w%.-] -.static.*.criteo.net/flash[^\w%.-] -# ||static.*.criteo.net/design^$third-party (easylistchina+easylist.txt: 40969) -.static.*./.*\.criteo\.net/design[^\w%.-] -.static.*.criteo.net/design[^\w%.-] -# ||stargames.com/bridge.asp?$third-party (easylistchina+easylist.txt: 40968) -.stargames.com/bridge\.asp\? -# ||stalliongold.com/images/*x$third-party (easylistchina+easylist.txt: 40967) -.stalliongold.com/images/.*x -# ||stacksocial.com^*?aid=$third-party (easylistchina+easylist.txt: 40966) -.stacksocial.com/.*\?aid= -# ||stacksocial.com/bundles/$third-party (easylistchina+easylist.txt: 40965) -.stacksocial.com/bundles/ -# ||ssshoesss.ro/banners/ (easylistchina+easylist.txt: 40964) -.ssshoesss.ro/banners/ -# ||ssl-images-amazon.com/images/*/banner/$third-party (easylistchina+easylist.txt: 40963) -.ssl-images-amazon.com/images/.*/banner/ -# ||srwww1.com^*/affiliate/ (easylistchina+easylist.txt: 40962) -.srwww1.com/.*/affiliate/ -# ||srv.dynamicyield.com^$third-party (easylistchina+easylist.txt: 40960) -.srv.dynamicyield.com -# ||squarespace.evyy.net^ (easylistchina+easylist.txt: 40959) -.squarespace.evyy.net -# ||sproutnova.com/serve.php$third-party (easylistchina+easylist.txt: 40958) -.sproutnova.com/serve\.php -# ||sportsdigitalcontent.com/betting/ (easylistchina+easylist.txt: 40957) -.sportsdigitalcontent.com/betting/ -# ||sportsbetaffiliates.com.au^$third-party (easylistchina+easylist.txt: 40956) -.sportsbetaffiliates.com.au -# ||sportingbet.com.au/sbacontent/puntersparadise.html (easylistchina+easylist.txt: 40955) -.sportingbet.com.au/sbacontent/puntersparadise\.html -# ||sponsorandwin.com/images/banner- (easylistchina+easylist.txt: 40954) -.sponsorandwin.com/images/banner- -# ||splashpagemaker.com/images/$third-party (easylistchina+easylist.txt: 40953) -.splashpagemaker.com/images/ -# ||spilcdn.com/vda/vendor/flowplayer/ova.swf (easylistchina+easylist.txt: 40952) -.spilcdn.com/vda/vendor/flowplayer/ova\.swf -# ||spilcdn.com/vda/css/sgadfamily2.css (easylistchina+easylist.txt: 40951) -.spilcdn.com/vda/css/sgadfamily2\.css -# ||spilcdn.com/vda/css/sgadfamily.css (easylistchina+easylist.txt: 40950) -.spilcdn.com/vda/css/sgadfamily\.css -# ||speedtv.com.edgesuite.net/img/static/takeovers/ (easylistchina+easylist.txt: 40949) -.speedtv.com.edgesuite.net/img/static/takeovers/ -# ||speedppc.com^*/banners/ (easylistchina+easylist.txt: 40948) -.speedppc.com/.*/banners/ -# ||speedbit.com^*-banner1- (easylistchina+easylist.txt: 40947) -.speedbit.com/.*-banner1- -# ||softneo.com/popup.js (easylistchina+easylist.txt: 40946) -.softneo.com/popup\.js -# ||socialorganicleads.com/interstitial/ (easylistchina+easylist.txt: 40945) -.socialorganicleads.com/interstitial/ -# ||socialmonkee.com/images/$third-party (easylistchina+easylist.txt: 40944) -.socialmonkee.com/images/ -# ||sndkorea.nowcdn.co.kr^$third-party (easylistchina+easylist.txt: 40943) -.sndkorea.nowcdn.co.kr -# ||snapdeal.com^*.php$third-party (easylistchina+easylist.txt: 40942) -.snapdeal.com/.*\.php -# ||snacktools.net/bannersnack/ (easylistchina+easylist.txt: 40940) -.snacktools.net/bannersnack/ -# ||smilepk.com/bnrsbtns/ (easylistchina+easylist.txt: 40939) -.smilepk.com/bnrsbtns/ -# ||smartlinks.dianomi.com^$third-party (easylistchina+easylist.txt: 40938) -.smartlinks.dianomi.com -# ||smartdestinations.com/ai/$third-party (easylistchina+easylist.txt: 40937) -.smartdestinations.com/ai/ -# ||smart.styria-digital.com^ (easylistchina+easylist.txt: 40936) -.smart.styria-digital.com -# ||slysoft.com/img/banner/$third-party (easylistchina+easylist.txt: 40935) -.slysoft.com/img/banner/ -# ||slot.union.ucweb.com^ (easylistchina+easylist.txt: 40934) -.slot.union.ucweb.com -# ||slickdeals.meritline.com^$third-party (easylistchina+easylist.txt: 40933) -.slickdeals.meritline.com -# ||skydsl.eu/banner/$third-party (easylistchina+easylist.txt: 40932) -.skydsl.eu/banner/ -# ||sitescout-video-cdn.edgesuite.net^ (easylistchina+easylist.txt: 40931) -.sitescout-video-cdn.edgesuite.net -# ||sitegrip.com^*/swagbucks- (easylistchina+easylist.txt: 40930) -.sitegrip.com/.*/swagbucks- -# ||sitegiant.my/affiliate/$third-party (easylistchina+easylist.txt: 40929) -.sitegiant.my/affiliate/ -# ||site5.com/creative/*/234x60.gif (easylistchina+easylist.txt: 40928) -.site5.com/creative/.*/234x60\.gif -# ||site5.com/creative/$third-party (easylistchina+easylist.txt: 40927) -.site5.com/creative/ -# ||sisters-magazine.com/iframebanners/$third-party (easylistchina+easylist.txt: 40926) -.sisters-magazine.com/iframebanners/ -# ||sis.amazon.com/iu?$third-party (easylistchina+easylist.txt: 40925) -.sis.amazon.com/iu\? -# ||singlemuslim.com/affiliates/ (easylistchina+easylist.txt: 40924) -.singlemuslim.com/affiliates/ -# ||singlehop.com/affiliates/$third-party (easylistchina+easylist.txt: 40923) -.singlehop.com/affiliates/ -# ||simplyfwd.com/?dn=*&pid=$subdocument (easylistchina+easylist.txt: 40922) -.simplyfwd.com/\?dn=.*&pid= -# ||simplifydigital.co.uk^*/widget_premium_bb.htm (easylistchina+easylist.txt: 40921) -.simplifydigital.co.uk/.*/widget_premium_bb\.htm -# ||sidekickunlock.net/banner/ (easylistchina+easylist.txt: 40920) -.sidekickunlock.net/banner/ -# ||shragle.com^*?ref= (easylistchina+easylist.txt: 40919) -.shragle.com/.*\?ref= -# ||shows-tv.net/codepopup.js (easylistchina+easylist.txt: 40918) -.shows-tv.net/codepopup\.js -# ||shorte.st^*/referral_banners/ (easylistchina+easylist.txt: 40917) -.shorte.st/.*/referral_banners/ -# ||shorte.st/link-converter.min.js (easylistchina+easylist.txt: 40916) -.shorte.st/link-converter\.min\.js -# ||shopping.com/sc/pac/sdc_widget_v2.0_proxy.js$third-party (easylistchina+easylist.txt: 40915) -.shopping.com/sc/pac/sdc_widget_v2\.0_proxy\.js -# ||shopilize.com^$third-party (easylistchina+easylist.txt: 40914) -.shopilize.com -# ||shopbrazos.com/widgets/ (easylistchina+easylist.txt: 40913) -.shopbrazos.com/widgets/ -# ||shop4tech.com^*/banner/ (easylistchina+easylist.txt: 40912) -.shop4tech.com/.*/banner/ -# ||shop-top1000.com/images/ (easylistchina+easylist.txt: 40911) -.shop-top1000.com/images/ -# ||sharingzone.net/images/banner$third-party (easylistchina+easylist.txt: 40910) -.sharingzone.net/images/banner -# ||shariahprogram.ca/banners/ (easylistchina+easylist.txt: 40909) -.shariahprogram.ca/banners/ -# ||shareflare.net/images/$third-party (easylistchina+easylist.txt: 40908) -.shareflare.net/images/ -# ||shaadi.com^*/get-html-banner.php? (easylistchina+easylist.txt: 40907) -.shaadi.com/.*/get-html-banner\.php\? -# ||shaadi.com^*/get-banner.php? (easylistchina+easylist.txt: 40906) -.shaadi.com/.*/get-banner\.php\? -# ||sfstatic.com^*/js/fl.js$third-party (easylistchina+easylist.txt: 40905) -.sfstatic.com/.*/js/fl\.js -# ||sfm-offshore.com/images/banners/ (easylistchina+easylist.txt: 40904) -.sfm-offshore.com/images/banners/ -# ||sfimg.com/SFIBanners/ (easylistchina+easylist.txt: 40903) -.sfimg.com/SFIBanners/ -# ||sfimg.com/images/banners/ (easylistchina+easylist.txt: 40902) -.sfimg.com/images/banners/ -# ||sfcdn.in/sailfish/$script (easylistchina+easylist.txt: 40901) -.sfcdn.in/sailfish/ -# ||settleships.com^$third-party (easylistchina+easylist.txt: 40900) -.settleships.com -# ||service.smscoin.com/js/sendpic.js (easylistchina+easylist.txt: 40898) -.service.smscoin.com/js/sendpic\.js -# ||server4.pro/images/banner.jpg (easylistchina+easylist.txt: 40897) -.server4.pro/images/banner\.jpg -# ||server.freegamesall.com^$third-party (easylistchina+easylist.txt: 40896) -.server.freegamesall.com -# ||servedby.yell.com^$third-party (easylistchina+easylist.txt: 40895) -.servedby.yell.com -# ||servedby.keygamesnetwork.com^ (easylistchina+easylist.txt: 40894) -.servedby.keygamesnetwork.com -# ||selectperformers.com/images/elements/bannercolours/ (easylistchina+easylist.txt: 40893) -.selectperformers.com/images/elements/bannercolours/ -# ||selectperformers.com/images/a/ (easylistchina+easylist.txt: 40892) -.selectperformers.com/images/a/ -# ||seedsman.com/affiliate/$third-party (easylistchina+easylist.txt: 40891) -.seedsman.com/affiliate/ -# ||seedboxco.net/*.swf$third-party (easylistchina+easylist.txt: 40890) -.seedboxco.net/.*\.swf -# ||secureupload.eu/banners/ (easylistchina+easylist.txt: 40889) -.secureupload.eu/banners/ -# ||secureserver.net^*/event? (easylistchina+easylist.txt: 40888) -.secureserver.net/.*/event\? -# ||securep2p.com^$subdocument,third-party (easylistchina+easylist.txt: 40887) -.securep2p.com -# ||secretmedia.s3.amazonaws.com^ (easylistchina+easylist.txt: 40886) -.secretmedia.s3.amazonaws.com -# ||secondspin.com/twcontent/ (easylistchina+easylist.txt: 40885) -.secondspin.com/twcontent/ -# ||searchportal.information.com/?$third-party (easylistchina+easylist.txt: 40884) -.searchportal.information.com/\? -# ||scribol.com/txwidget$third-party (easylistchina+easylist.txt: 40883) -.scribol.com/txwidget -# ||screenconnect.com/miscellaneous/ScreenConnect-$image,third-party (easylistchina+easylist.txt: 40882) -.screenconnect.com/miscellaneous/ScreenConnect- -# ||scoopdragon.com/images/Goodgame-Empire-MPU.jpg (easylistchina+easylist.txt: 40881) -.scoopdragon.com/images/Goodgame-Empire-MPU\.jpg -# ||sciremedia.tv/images/banners/ (easylistchina+easylist.txt: 40880) -.sciremedia.tv/images/banners/ -# ||sciencecareers.org/widget/$third-party (easylistchina+easylist.txt: 40879) -.sciencecareers.org/widget/ -# ||schurzdigital.com/deals/widget/ (easylistchina+easylist.txt: 40878) -.schurzdigital.com/deals/widget/ -# ||schenkelklopfer.org^*pop.js (easylistchina+easylist.txt: 40877) -.schenkelklopfer.org/.*pop\.js -# ||satshop.tv/images/banner/$third-party (easylistchina+easylist.txt: 40876) -.satshop.tv/images/banner/ -# ||sat-shop.co.uk/images/$third-party (easylistchina+easylist.txt: 40875) -.sat-shop.co.uk/images/ -# ||salemwebnetwork.com/Stations/images/SiteWrapper/ (easylistchina+easylist.txt: 40874) -.salemwebnetwork.com/Stations/images/SiteWrapper/ -# ||salefile.googlecode.com^$third-party (easylistchina+easylist.txt: 40873) -.salefile.googlecode.com -# ||sailthru.com^*/horizon.js (easylistchina+easylist.txt: 40872) -.sailthru.com/.*/horizon\.js -# ||safarinow.com/affiliate-zone/ (easylistchina+easylist.txt: 40871) -.safarinow.com/affiliate-zone/ -# ||s3.amazonaws.com/draftset/banners/ (easylistchina+easylist.txt: 40870) -.s3.amazonaws.com/draftset/banners/ -# ||s1now.com^*/takeovers/ (easylistchina+easylist.txt: 40869) -.s1now.com/.*/takeovers/ -# ||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com^$third-party (easylistchina+easylist.txt: 40868) -.s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com -# ||s1.wp.com^$subdocument,third-party (easylistchina+easylist.txt: 40867) -.s1.wp.com -# ||s.cxt.ms^$third-party (easylistchina+easylist.txt: 40866) -.s.cxt.ms -# ||s-yoolk-billboard-assets.yoolk.com^ (easylistchina+easylist.txt: 40865) -.s-yoolk-billboard-assets.yoolk.com -# ||s-yoolk-banner-assets.yoolk.com^ (easylistchina+easylist.txt: 40864) -.s-yoolk-banner-assets.yoolk.com -# ||s-assets.tp-cdn.com/widgets/*/vwid/*.html? (easylistchina+easylist.txt: 40863) -.s-assets.tp-cdn.com/widgets/.*/vwid/.*\.html\? -# ||rya.rockyou.com^$third-party (easylistchina+easylist.txt: 40862) -.rya.rockyou.com -# ||russian-dreams.net/static/js/$third-party (easylistchina+easylist.txt: 40861) -.russian-dreams.net/static/js/ -# ||runerich.com/images/sty_img/runerich.gif (easylistchina+easylist.txt: 40859) -.runerich.com/images/sty_img/runerich\.gif -# ||rover.ebay.com^*&adtype=$third-party (easylistchina+easylist.txt: 40858) -.rover.ebay.com/.*&adtype= -# ||rotator.tradetracker.net^ (easylistchina+easylist.txt: 40857) -.rotator.tradetracker.net -# ||rotabanner.kulichki.net^ (easylistchina+easylist.txt: 40856) -.rotabanner.kulichki.net -# ||roshantv.com/adad. (easylistchina+easylist.txt: 40855) -.roshantv.com/adad\. -# ||roshansports.com/iframe.php (easylistchina+easylist.txt: 40854) -.roshansports.com/iframe\.php -# ||roia.hutchmedia.com^$third-party (easylistchina+easylist.txt: 40853) -.roia.hutchmedia.com -# ||roadrecord.co.uk/widget.js? (easylistchina+easylist.txt: 40852) -.roadrecord.co.uk/widget\.js\? -# ||roadcomponentsdb.com^$subdocument,third-party (easylistchina+easylist.txt: 40851) -.roadcomponentsdb.com -# ||richmedia.yahoo.com^$third-party (easylistchina+easylist.txt: 40850) -.richmedia.yahoo.com -# ||ribbon.india.com^$third-party (easylistchina+easylist.txt: 40849) -.ribbon.india.com -# ||rewards1.com/images/referralbanners/$third-party (easylistchina+easylist.txt: 40848) -.rewards1.com/images/referralbanners/ -# ||revealads.appspot.com^ (easylistchina+easylist.txt: 40847) -.revealads.appspot.com -# ||resources.heavenmedia.net/selection.php? (easylistchina+easylist.txt: 40846) -.resources.heavenmedia.net/selection\.php\? -# ||res3.feedsportal.com^ (easylistchina+easylist.txt: 40845) -.res3.feedsportal.com -# ||relink.us/images/$third-party (easylistchina+easylist.txt: 40843) -.relink.us/images/ -# ||rehost.to/?ref= (easylistchina+easylist.txt: 40842) -.rehost.to/\?ref= -# ||regnow.com/vendor/ (easylistchina+easylist.txt: 40841) -.regnow.com/vendor/ -# ||regmyudid.com^*/index.html$third-party (easylistchina+easylist.txt: 40840) -.regmyudid.com/.*/index\.html -# ||redtram.com^$script,third-party (easylistchina+easylist.txt: 40839) -.redtram.com -# ||redflagdeals.com/dealoftheday/widgets/$third-party (easylistchina+easylist.txt: 40838) -.redflagdeals.com/dealoftheday/widgets/ -# ||redbeacon.com/widget/$third-party (easylistchina+easylist.txt: 40837) -.redbeacon.com/widget/ -# ||red-tube.com^*.php?wmid=*&kamid=*&wsid=$third-party (easylistchina+easylist.txt: 40836) -.red-tube.com/.*\.php\?wmid=.*&kamid=.*&wsid= -# ||realwritingjobs.com^*/banners/ (easylistchina+easylist.txt: 40835) -.realwritingjobs.com/.*/banners/ -# ||readme.ru/informer/$third-party (easylistchina+easylist.txt: 40834) -.readme.ru/informer/ -# ||rdio.com/media/images/affiliate/$third-party (easylistchina+easylist.txt: 40833) -.rdio.com/media/images/affiliate/ -# ||rcm*.amazon.$third-party (easylistchina+easylist.txt: 40832) -.rcm*./.*\.amazon\. -.rcm*.amazon.*. -# ||rbth.ru/widget/$third-party (easylistchina+easylist.txt: 40831) -.rbth.ru/widget/ -# ||ratesupermarket.ca/widgets/ (easylistchina+easylist.txt: 40830) -.ratesupermarket.ca/widgets/ -# ||rapidjazz.com/banner_rotation/ (easylistchina+easylist.txt: 40829) -.rapidjazz.com/banner_rotation/ -# ||rapidgator.net/images/pics/*_300%D1%85250_ (easylistchina+easylist.txt: 40828) -.rapidgator.net/images/pics/.*_300%D1%85250_ -# ||radley.co.uk^*/Affiliate/ (easylistchina+easylist.txt: 40827) -.radley.co.uk/.*/Affiliate/ -# ||radiotown.com/splash/images/*_960x600_ (easylistchina+easylist.txt: 40826) -.radiotown.com/splash/images/.*_960x600_ -# ||radioshack.com^*/promo/ (easylistchina+easylist.txt: 40825) -.radioshack.com/.*/promo/ -# ||radioreference.com/sm/300x75_v3.jpg (easylistchina+easylist.txt: 40824) -.radioreference.com/sm/300x75_v3\.jpg -# ||radiocentre.ca/randomimages/$third-party (easylistchina+easylist.txt: 40823) -.radiocentre.ca/randomimages/ -# ||rack.bauermedia.co.uk^ (easylistchina+easylist.txt: 40818) -.rack.bauermedia.co.uk -# ||racebets.com/media.php? (easylistchina+easylist.txt: 40817) -.racebets.com/media\.php\? -# ||quirk.biz/webtracking/ (easylistchina+easylist.txt: 40816) -.quirk.biz/webtracking/ -# ||quickflix*.gridserver.com^$third-party (easylistchina+easylist.txt: 40815) -.quickflix*./.*\.gridserver\.com[^\w%.-] -.quickflix*.gridserver.com -# ||qualoo.net/now/interstitial/ (easylistchina+easylist.txt: 40814) -.qualoo.net/now/interstitial/ -# ||putlocker.com/images/banners/$third-party (easylistchina+easylist.txt: 40813) -.putlocker.com/images/banners/ -# ||purevpn.com/affiliates/ (easylistchina+easylist.txt: 40812) -.purevpn.com/affiliates/ -# ||puntersparadise.com.au/banners/ (easylistchina+easylist.txt: 40811) -.puntersparadise.com.au/banners/ -# ||pubs.hiddennetwork.com^ (easylistchina+easylist.txt: 40810) -.pubs.hiddennetwork.com -# ||public.porn.fr^$third-party (easylistchina+easylist.txt: 40809) -.public.porn.fr -# ||pub.sapo.pt/vast.php$object-subrequest (easylistchina+easylist.txt: 40808) -.pub.sapo.pt/vast\.php -# ||pub.dreamboxcart.com^$third-party (easylistchina+easylist.txt: 40807) -.pub.dreamboxcart.com -# ||pub.betclick.com^ (easylistchina+easylist.txt: 40806) -.pub.betclick.com -# ||pub.aujourdhui.com^$third-party (easylistchina+easylist.txt: 40805) -.pub.aujourdhui.com -# ||proxysolutions.net/affiliates/ (easylistchina+easylist.txt: 40804) -.proxysolutions.net/affiliates/ -# ||proxyroll.com/proxybanner.php (easylistchina+easylist.txt: 40803) -.proxyroll.com/proxybanner\.php -# ||proxynoid.com/images/referrals/ (easylistchina+easylist.txt: 40802) -.proxynoid.com/images/referrals/ -# ||proxy.org/blasts.gif (easylistchina+easylist.txt: 40801) -.proxy.org/blasts\.gif -# ||proxies2u.com/images/btn/$third-party (easylistchina+easylist.txt: 40800) -.proxies2u.com/images/btn/ -# ||propgoluxury.com/partners/$third-party (easylistchina+easylist.txt: 40799) -.propgoluxury.com/partners/ -# ||promotions.iasbet.com^ (easylistchina+easylist.txt: 40798) -.promotions.iasbet.com -# ||promote.pair.com^ (easylistchina+easylist.txt: 40797) -.promote.pair.com -# ||promos.fling.com^ (easylistchina+easylist.txt: 40796) -.promos.fling.com -# ||promo.musicradio.com^ (easylistchina+easylist.txt: 40795) -.promo.musicradio.com -# ||pro-gmedia.com^*/skins/ (easylistchina+easylist.txt: 40793) -.pro-gmedia.com/.*/skins/ -# ||prizerebel.com/images/banner$third-party (easylistchina+easylist.txt: 40792) -.prizerebel.com/images/banner -# ||privatewifi.com/swf/banners/ (easylistchina+easylist.txt: 40791) -.privatewifi.com/swf/banners/ -# ||print2webcorp.com/widgetcontent/ (easylistchina+easylist.txt: 40790) -.print2webcorp.com/widgetcontent/ -# ||primeloopstracking.com/affil/ (easylistchina+easylist.txt: 40789) -.primeloopstracking.com/affil/ -# ||priceinfo.comuv.com^ (easylistchina+easylist.txt: 40788) -.priceinfo.comuv.com -# ||pricegrabber.com/mlink3.php?$third-party (easylistchina+easylist.txt: 40787) -.pricegrabber.com/mlink3\.php\? -# ||pricegrabber.com/mlink.php?$third-party (easylistchina+easylist.txt: 40786) -.pricegrabber.com/mlink\.php\? -# ||pricegrabber.com/export_feeds.php?$third-party (easylistchina+easylist.txt: 40785) -.pricegrabber.com/export_feeds\.php\? -# ||pricegrabber.com/cb_table.php$third-party (easylistchina+easylist.txt: 40784) -.pricegrabber.com/cb_table\.php -# ||pricedinfo.com^$third-party (easylistchina+easylist.txt: 40783) -.pricedinfo.com -# ||premium.naturalnews.tv^$third-party (easylistchina+easylist.txt: 40782) -.premium.naturalnews.tv -# ||premium-template.com/banner/$third-party (easylistchina+easylist.txt: 40781) -.premium-template.com/banner/ -# ||ppc-coach.com/jamaffiliates/ (easylistchina+easylist.txt: 40780) -.ppc-coach.com/jamaffiliates/ -# ||postaffiliatepro.com^*/banners/$image (easylistchina+easylist.txt: 40779) -.postaffiliatepro.com/.*/banners/ -# ||post.rmbn.ru^$third-party (easylistchina+easylist.txt: 40778) -.post.rmbn.ru -# ||pornturbo.com/tmarket.php (easylistchina+easylist.txt: 40777) -.pornturbo.com/tmarket\.php -# ||pops.freeze.com^$third-party (easylistchina+easylist.txt: 40776) -.pops.freeze.com -# ||popmog.com^$third-party (easylistchina+easylist.txt: 40775) -.popmog.com -# ||popeoftheplayers.eu/ad (easylistchina+easylist.txt: 40774) -.popeoftheplayers.eu/ad -# ||pokerstars.com/euro_bnrs/ (easylistchina+easylist.txt: 40773) -.pokerstars.com/euro_bnrs/ -# ||pokerstars.com/?source=$subdocument,third-party (easylistchina+easylist.txt: 40772) -.pokerstars.com/\?source= -# ||pokersavvy.com^*/banners/ (easylistchina+easylist.txt: 40771) -.pokersavvy.com/.*/banners/ -# ||pokerroomkings.com^*/banner/$third-party (easylistchina+easylist.txt: 40770) -.pokerroomkings.com/.*/banner/ -# ||pokerjunkie.com/rss/ (easylistchina+easylist.txt: 40769) -.pokerjunkie.com/rss/ -# ||pm.web.com^$third-party (easylistchina+easylist.txt: 40768) -.pm.web.com -# ||plus.net/images/referrals/*_banner_$third-party (easylistchina+easylist.txt: 40767) -.plus.net/images/referrals/.*_banner_ -# ||plexidigest.com/plexidigest-300x300.jpg (easylistchina+easylist.txt: 40765) -.plexidigest.com/plexidigest-300x300\.jpg -# ||playfooty.tv/jojo.html (easylistchina+easylist.txt: 40764) -.playfooty.tv/jojo\.html -# ||player.screenwavemedia.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 40763) -.player.screenwavemedia.com/.*/ova-jw\.swf -# ||playata.myvideo.de^$subdocument,third-party (easylistchina+easylist.txt: 40762) -.playata.myvideo.de -# ||play-asia.com/paos-$third-party (easylistchina+easylist.txt: 40761) -.play-asia.com/paos- -# ||pics.firstload.de^$third-party (easylistchina+easylist.txt: 40760) -.pics.firstload.de -# ||picoasis.net/3xlayer.htm (easylistchina+easylist.txt: 40759) -.picoasis.net/3xlayer\.htm -# ||pic.pbsrc.com/hpto/ (easylistchina+easylist.txt: 40758) -.pic.pbsrc.com/hpto/ -# ||pianoteq.com/images/banners/ (easylistchina+easylist.txt: 40757) -.pianoteq.com/images/banners/ -# ||pianobuyer.com/pianoworld/ (easylistchina+easylist.txt: 40756) -.pianobuyer.com/pianoworld/ -# ||phonephotographytricks.com/images/banners/ (easylistchina+easylist.txt: 40755) -.phonephotographytricks.com/images/banners/ -# ||ph.hillcountrytexas.com/imp.php?$third-party (easylistchina+easylist.txt: 40753) -.ph.hillcountrytexas.com/imp\.php\? -# ||perfectmoney.com/img/banners/$third-party (easylistchina+easylist.txt: 40752) -.perfectmoney.com/img/banners/ -# ||perfectforex.biz/images/*x$third-party (easylistchina+easylist.txt: 40751) -.perfectforex.biz/images/.*x -# ||pearlriverusa.com/images/banner/ (easylistchina+easylist.txt: 40750) -.pearlriverusa.com/images/banner/ -# ||pdl.viaplay.com/commercials/$third-party (easylistchina+easylist.txt: 40749) -.pdl.viaplay.com/commercials/ -# ||pcmall.co.za/affiliates/ (easylistchina+easylist.txt: 40748) -.pcmall.co.za/affiliates/ -# ||pcash.imlive.com^$third-party (easylistchina+easylist.txt: 40747) -.pcash.imlive.com -# ||payza.com/images/banners/ (easylistchina+easylist.txt: 40746) -.payza.com/images/banners/ -# ||paytel.co.za/code/ref (easylistchina+easylist.txt: 40745) -.paytel.co.za/code/ref -# ||partners.xpertmarket.com^ (easylistchina+easylist.txt: 40744) -.partners.xpertmarket.com -# ||partners.vouchedfor.co.uk^ (easylistchina+easylist.txt: 40743) -.partners.vouchedfor.co.uk -# ||partners.sportingbet.com.au^ (easylistchina+easylist.txt: 40742) -.partners.sportingbet.com.au -# ||partners.rochen.com^ (easylistchina+easylist.txt: 40741) -.partners.rochen.com -# ||partners.optiontide.com^ (easylistchina+easylist.txt: 40740) -.partners.optiontide.com -# ||partners.fshealth.com^ (easylistchina+easylist.txt: 40739) -.partners.fshealth.com -# ||partners.dogtime.com/network/ (easylistchina+easylist.txt: 40738) -.partners.dogtime.com/network/ -# ||partners.betus.com^$third-party (easylistchina+easylist.txt: 40737) -.partners.betus.com -# ||partnerads1.ysm.yahoo.com^ (easylistchina+easylist.txt: 40736) -.partnerads1.ysm.yahoo.com -# ||partnerads.ysm.yahoo.com^ (easylistchina+easylist.txt: 40735) -.partnerads.ysm.yahoo.com -# ||partner.premiumdomains.com^ (easylistchina+easylist.txt: 40734) -.partner.premiumdomains.com -# ||partner.e-conomic.com^$third-party (easylistchina+easylist.txt: 40733) -.partner.e-conomic.com -# ||partner.catchy.com^ (easylistchina+easylist.txt: 40732) -.partner.catchy.com -# ||partner.bargaindomains.com^ (easylistchina+easylist.txt: 40731) -.partner.bargaindomains.com -# ||partner.alloy.com^$third-party (easylistchina+easylist.txt: 40730) -.partner.alloy.com -# ||pan.dogster.com^$third-party (easylistchina+easylist.txt: 40729) -.pan.dogster.com -# ||paidinvite.com/promo/ (easylistchina+easylist.txt: 40728) -.paidinvite.com/promo/ -# ||pagerage.com^$subdocument,third-party (easylistchina+easylist.txt: 40727) -.pagerage.com -# ||pagead2.googlesyndication.com^$~object-subrequest (easylistchina+easylist.txt: 40726) -.pagead2.googlesyndication.com -# ||padsdel.com^$third-party (easylistchina+easylist.txt: 40725) -.padsdel.com -# ||p.pw/banners/$third-party (easylistchina+easylist.txt: 40724) -.p.pw/banners/ -# ||oxygenboutique.com/Linkshare/ (easylistchina+easylist.txt: 40723) -.oxygenboutique.com/Linkshare/ -# ||ox-i.cordillera.tv^ (easylistchina+easylist.txt: 40722) -.ox-i.cordillera.tv -# ||ovpn.to/ovpn.to/banner/ (easylistchina+easylist.txt: 40721) -.ovpn.to/ovpn\.to/banner/ -# ||overseasradio.com/affbanner.php? (easylistchina+easylist.txt: 40720) -.overseasradio.com/affbanner\.php\? -# ||outdoorhub.com/js/_bookends.min.js (easylistchina+easylist.txt: 40719) -.outdoorhub.com/js/_bookends\.min\.js -# ||osobnosti.cz/images/casharena_ (easylistchina+easylist.txt: 40718) -.osobnosti.cz/images/casharena_ -# ||oriongadgets.com^*/banners/ (easylistchina+easylist.txt: 40717) -.oriongadgets.com/.*/banners/ -# ||origin.getprice.com.au/widgetnewssmall.aspx (easylistchina+easylist.txt: 40716) -.origin.getprice.com.au/widgetnewssmall\.aspx -# ||origin.getprice.com.au/WidgetNews.aspx (easylistchina+easylist.txt: 40715) -.origin.getprice.com.au/WidgetNews\.aspx -# ||organicprospects.com^*/banners/ (easylistchina+easylist.txt: 40714) -.organicprospects.com/.*/banners/ -# ||optimus-pm.com^*_300-250.jpg (easylistchina+easylist.txt: 40713) -.optimus-pm.com/.*_300-250\.jpg -# ||oovoo.com^*/banners/ (easylistchina+easylist.txt: 40712) -.oovoo.com/.*/banners/ -# ||onegameplace.com/iframe.php$third-party (easylistchina+easylist.txt: 40711) -.onegameplace.com/iframe\.php -# ||onecache.com/banner_ (easylistchina+easylist.txt: 40710) -.onecache.com/banner_ -# ||on.maxspeedcdn.com^ (easylistchina+easylist.txt: 40709) -.on.maxspeedcdn.com -# ||ojooo.com^*/banner_$third-party (easylistchina+easylist.txt: 40708) -.ojooo.com/.*/banner_ -# ||ojooo.com/register_f/$third-party (easylistchina+easylist.txt: 40707) -.ojooo.com/register_f/ -# ||oilofasia.com/images/banners/ (easylistchina+easylist.txt: 40706) -.oilofasia.com/images/banners/ -# ||office.eteachergroup.com/leads/$third-party (easylistchina+easylist.txt: 40705) -.office.eteachergroup.com/leads/ -# ||offerssyndication.appspot.com^$third-party (easylistchina+easylist.txt: 40704) -.offerssyndication.appspot.com -# ||offers-service.cbsinteractive.com^$third-party (easylistchina+easylist.txt: 40703) -.offers-service.cbsinteractive.com -# ||odin.goo.mx^ (easylistchina+easylist.txt: 40702) -.odin.goo.mx -# ||ocp.cbs.com/pacific/request.jsp? (easylistchina+easylist.txt: 40701) -.ocp.cbs.com/pacific/request\.jsp\? -# ||oclasrv.comindex-2.htmlapu.php^ (easylistchina+easylist.txt: 40700) -.oclasrv.comindex-2.htmlapu.php -# ||obox-design.com/affiliate-banners/ (easylistchina+easylist.txt: 40699) -.obox-design.com/affiliate-banners/ -# ||oasap.com/images/affiliate/ (easylistchina+easylist.txt: 40698) -.oasap.com/images/affiliate/ -# ||o2live.com^$third-party (easylistchina+easylist.txt: 40697) -.o2live.com -# ||nzpages.co.nz^*/banners/ (easylistchina+easylist.txt: 40696) -.nzpages.co.nz/.*/banners/ -# ||nwadealpiggy.com/widgets/ (easylistchina+easylist.txt: 40695) -.nwadealpiggy.com/widgets/ -# ||numb.hotshare.biz^$third-party (easylistchina+easylist.txt: 40694) -.numb.hotshare.biz -# ||nude.mk/images/$third-party (easylistchina+easylist.txt: 40693) -.nude.mk/images/ -# ||ntnd.net^*/store-buttons/ (easylistchina+easylist.txt: 40692) -.ntnd.net/.*/store-buttons/ -# ||nster.com/tpl/this/js/popnster.js (easylistchina+easylist.txt: 40691) -.nster.com/tpl/this/js/popnster\.js -# ||novadune.com^$third-party (easylistchina+easylist.txt: 40690) -.novadune.com -# ||nocookie.net^*/wikiasearchads.js (easylistchina+easylist.txt: 40689) -.nocookie.net/.*/wikiasearchads\.js -# ||nlsl.about.com/img?$third-party (easylistchina+easylist.txt: 40688) -.nlsl.about.com/img\? -# ||nitropdf.com/graphics/promo/$third-party (easylistchina+easylist.txt: 40687) -.nitropdf.com/graphics/promo/ -# ||nimblecommerce.com/widget.action? (easylistchina+easylist.txt: 40686) -.nimblecommerce.com/widget\.action\? -# ||newware.net/home/newware-sm.png$third-party (easylistchina+easylist.txt: 40685) -.newware.net/home/newware-sm\.png -# ||newware.net/home/banner$third-party (easylistchina+easylist.txt: 40684) -.newware.net/home/banner -# ||news-whistleout.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 40683) -.news-whistleout.s3.amazonaws.com -# ||networkice.com^$subdocument,third-party (easylistchina+easylist.txt: 40682) -.networkice.com -# ||network.business.com^ (easylistchina+easylist.txt: 40681) -.network.business.com -# ||network.aufeminin.com^ (easylistchina+easylist.txt: 40680) -.network.aufeminin.com -# ||nettvplus.com/images/banner_ (easylistchina+easylist.txt: 40679) -.nettvplus.com/images/banner_ -# ||netdigix.com/google_banners/ (easylistchina+easylist.txt: 40675) -.netdigix.com/google_banners/ -# ||nesgamezone.com/syndicate? (easylistchina+easylist.txt: 40674) -.nesgamezone.com/syndicate\? -# ||neogames-tech.com/resources/genericbanners/ (easylistchina+easylist.txt: 40673) -.neogames-tech.com/resources/genericbanners/ -# ||nanoinvestgroup.com/images/banner*.gif (easylistchina+easylist.txt: 40671) -.nanoinvestgroup.com/images/banner.*\.gif -# ||nanobrokers.com/img/banner_ (easylistchina+easylist.txt: 40670) -.nanobrokers.com/img/banner_ -# ||namecheap.com/graphics/linkus/$third-party (easylistchina+easylist.txt: 40669) -.namecheap.com/graphics/linkus/ -# ||n4g.com^*/IndieMonthSideBarWidget?$third-party (easylistchina+easylist.txt: 40668) -.n4g.com/.*/IndieMonthSideBarWidget\? -# ||n.nu/banner.js (easylistchina+easylist.txt: 40667) -.n.nu/banner\.js -# ||myvi.ru/feed/$object-subrequest (easylistchina+easylist.txt: 40665) -.myvi.ru/feed/ -# ||myusenet.net/promo.cgi? (easylistchina+easylist.txt: 40664) -.myusenet.net/promo\.cgi\? -# ||mytrafficstrategy.com/images/$third-party (easylistchina+easylist.txt: 40663) -.mytrafficstrategy.com/images/ -# ||myspace.com/play/myspace/*&locationId$third-party (easylistchina+easylist.txt: 40662) -.myspace.com/play/myspace/.*&locationId -# ||mylife.com/partner/$third-party (easylistchina+easylist.txt: 40661) -.mylife.com/partner/ -# ||myhpf.co.uk/banners/ (easylistchina+easylist.txt: 40660) -.myhpf.co.uk/banners/ -# ||myfreeshares.com/120x60b.gif (easylistchina+easylist.txt: 40659) -.myfreeshares.com/120x60b\.gif -# ||myfreeresources.com/getimg.php?$third-party (easylistchina+easylist.txt: 40658) -.myfreeresources.com/getimg\.php\? -# ||myfreepaysite.info^*.gif$third-party (easylistchina+easylist.txt: 40657) -.myfreepaysite.info/.*\.gif -# ||myezbz.com/marketplace/widget/$third-party (easylistchina+easylist.txt: 40656) -.myezbz.com/marketplace/widget/ -# ||mydownloader.net/banners/$third-party (easylistchina+easylist.txt: 40655) -.mydownloader.net/banners/ -# ||mybdhost.com/imgv2/$third-party (easylistchina+easylist.txt: 40653) -.mybdhost.com/imgv2/ -# ||myalter1tv.altervista.org^$subdocument,third-party (easylistchina+easylist.txt: 40652) -.myalter1tv.altervista.org -# ||my-dirty-hobby.com/track/$subdocument,third-party (easylistchina+easylist.txt: 40651) -.my-dirty-hobby.com/track/ -# ||my-best-jobs.com^$subdocument,third-party (easylistchina+easylist.txt: 40650) -.my-best-jobs.com -# ||musik-a-z.com^$subdocument,third-party (easylistchina+easylist.txt: 40649) -.musik-a-z.com -# ||musicmemorization.com/images/$third-party (easylistchina+easylist.txt: 40648) -.musicmemorization.com/images/ -# ||multivizyon.tv^*/flysatbanner.swf (easylistchina+easylist.txt: 40647) -.multivizyon.tv/.*/flysatbanner\.swf -# ||multisitelive.com^*/banner_ (easylistchina+easylist.txt: 40646) -.multisitelive.com/.*/banner_ -# ||mto.mediatakeout.com^$third-party (easylistchina+easylist.txt: 40645) -.mto.mediatakeout.com -# ||mt.sellingrealestatemalta.com^$third-party (easylistchina+easylist.txt: 40644) -.mt.sellingrealestatemalta.com -# ||msnbcmedia.msn.com^*/sponsors/ (easylistchina+easylist.txt: 40643) -.msnbcmedia.msn.com/.*/sponsors/ -# ||msm.mysavings.com^*.asp?afid=$third-party (easylistchina+easylist.txt: 40642) -.msm.mysavings.com/.*\.asp\?afid= -# ||msecnd.net/scripts/*.pop.$script (easylistchina+easylist.txt: 40641) -.msecnd.net/scripts/.*\.pop\. -# ||mrskincdn.com/data/uploader/affiliate/$script (easylistchina+easylist.txt: 40640) -.mrskincdn.com/data/uploader/affiliate/ -# ||mrc.org^*/take-over-charlotte300x250.gif (easylistchina+easylist.txt: 40639) -.mrc.org/.*/take-over-charlotte300x250\.gif -# ||mrc.org^*/Collusion_Banner300x250.jpg (easylistchina+easylist.txt: 40638) -.mrc.org/.*/Collusion_Banner300x250\.jpg -# ||mrc.org/sites/default/files/uploads/images/Collusion_Banner (easylistchina+easylist.txt: 40637) -.mrc.org/sites/default/files/uploads/images/Collusion_Banner -# ||mp3ix.com^$third-party (easylistchina+easylist.txt: 40636) -.mp3ix.com -# ||mozo-widgets.f2.com.au^ (easylistchina+easylist.txt: 40635) -.mozo-widgets.f2.com.au -# ||mosso.com^*/banners/ (easylistchina+easylist.txt: 40634) -.mosso.com/.*/banners/ -# ||moosify.com/widgets/explorer/?partner= (easylistchina+easylist.txt: 40633) -.moosify.com/widgets/explorer/\?partner= -# ||moneywise.co.uk/affiliate/ (easylistchina+easylist.txt: 40632) -.moneywise.co.uk/affiliate/ -# ||moneycontrol.com/share-market-game/$third-party (easylistchina+easylist.txt: 40631) -.moneycontrol.com/share-market-game/ -# ||moneycontrol.co.in^*PopUnder.js (easylistchina+easylist.txt: 40630) -.moneycontrol.co.in/.*PopUnder\.js -# ||mol.im/i/pix/ebay/ (easylistchina+easylist.txt: 40629) -.mol.im/i/pix/ebay/ -# ||mobyler.com/img/banner/ (easylistchina+easylist.txt: 40628) -.mobyler.com/img/banner/ -# ||mobilemetrics.appspot.com^$third-party (easylistchina+easylist.txt: 40627) -.mobilemetrics.appspot.com -# ||mnginteractive.com^*/dartinclude.js (easylistchina+easylist.txt: 40626) -.mnginteractive.com/.*/dartinclude\.js -# ||mmwebhandler.888.com^$third-party (easylistchina+easylist.txt: 40625) -.mmwebhandler.888.com -# ||mmosale.com/baner_images/$third-party (easylistchina+easylist.txt: 40624) -.mmosale.com/baner_images/ -# ||mmo4rpg.com^*.gif|$third-party (easylistchina+easylist.txt: 40623) -.mmo4rpg.com/.*\.gif$ -# ||mmdcash.com/mmdcash01.gif (easylistchina+easylist.txt: 40622) -.mmdcash.com/mmdcash01\.gif -# ||mlive.com/js/oas/ (easylistchina+easylist.txt: 40621) -.mlive.com/js/oas/ -# ||mkini.net/banners/ (easylistchina+easylist.txt: 40620) -.mkini.net/banners/ -# ||missnowmrs.com/images/banners/ (easylistchina+easylist.txt: 40619) -.missnowmrs.com/images/banners/ -# ||millionaires-club-international.com/banner/ (easylistchina+easylist.txt: 40618) -.millionaires-club-international.com/banner/ -# ||mightydeals.s3.amazonaws.com/md_adv/ (easylistchina+easylist.txt: 40616) -.mightydeals.s3.amazonaws.com/md_adv/ -# ||mightydeals.com/widgets/$third-party (easylistchina+easylist.txt: 40615) -.mightydeals.com/widgets/ -# ||mightydeals.com/widget?$third-party (easylistchina+easylist.txt: 40614) -.mightydeals.com/widget\? -# ||mightyape.co.nz/stuff/$third-party (easylistchina+easylist.txt: 40613) -.mightyape.co.nz/stuff/ -# ||microsoft.com^*/community/images/windowsintune/$third-party (easylistchina+easylist.txt: 40612) -.microsoft.com/.*/community/images/windowsintune/ -# ||microsoft.com^*/bannerrotator/$third-party (easylistchina+easylist.txt: 40611) -.microsoft.com/.*/bannerrotator/ -# ||mgprofit.com/images/*x$third-party (easylistchina+easylist.txt: 40610) -.mgprofit.com/images/.*x -# ||mgm.com/www/$third-party (easylistchina+easylist.txt: 40609) -.mgm.com/www/ -# ||mfeed.newzfind.com^$third-party (easylistchina+easylist.txt: 40608) -.mfeed.newzfind.com -# ||mfcdn.net/store/spotlight/ (easylistchina+easylist.txt: 40607) -.mfcdn.net/store/spotlight/ -# ||metroland.com/wagjag/ (easylistchina+easylist.txt: 40606) -.metroland.com/wagjag/ -# ||metaboli.fr^*/adgude_$third-party (easylistchina+easylist.txt: 40605) -.metaboli.fr/.*/adgude_ -# ||merdb.org/js/$script,third-party (easylistchina+easylist.txt: 40604) -.merdb.org/js/ -# ||meraad2.blogspot.com^$third-party (easylistchina+easylist.txt: 40603) -.meraad2.blogspot.com -# ||memepix.com/spark.php? (easylistchina+easylist.txt: 40602) -.memepix.com/spark\.php\? -# ||megalivestream.net/pub.js (easylistchina+easylist.txt: 40601) -.megalivestream.net/pub\.js -# ||mediaspanonline.com^*-Takeover_ (easylistchina+easylist.txt: 40600) -.mediaspanonline.com/.*-Takeover_ -# ||mediaspanonline.com^*-Takeover- (easylistchina+easylist.txt: 40599) -.mediaspanonline.com/.*-Takeover- -# ||mediaserver.digitec.ch^$subdocument,third-party (easylistchina+easylist.txt: 40598) -.mediaserver.digitec.ch -# ||mediaplex.com/ad/js/$third-party (easylistchina+easylist.txt: 40597) -.mediaplex.com/ad/js/ -# ||mediaplex.com/ad/fm/$third-party (easylistchina+easylist.txt: 40596) -.mediaplex.com/ad/fm/ -# ||mediaplex.com/ad/bn/$third-party (easylistchina+easylist.txt: 40595) -.mediaplex.com/ad/bn/ -# ||mediaon.com/moneymoney/ (easylistchina+easylist.txt: 40594) -.mediaon.com/moneymoney/ -# ||media.onlineteachers.co.in^$third-party (easylistchina+easylist.txt: 40593) -.media.onlineteachers.co.in -# ||media.netrefer.com^$third-party (easylistchina+easylist.txt: 40592) -.media.netrefer.com -# ||media.myspace.com/play/*/featured-videos-$third-party (easylistchina+easylist.txt: 40591) -.media.myspace.com/play/.*/featured-videos- -# ||media.enimgs.net/brand/files/escalatenetwork/ (easylistchina+easylist.txt: 40590) -.media.enimgs.net/brand/files/escalatenetwork/ -# ||media.domainking.ng/media/$third-party (easylistchina+easylist.txt: 40589) -.media.domainking.ng/media/ -# ||media.complex.com/videos/prerolls/ (easylistchina+easylist.txt: 40588) -.media.complex.com/videos/prerolls/ -# ||media-toolbar.com^$third-party (easylistchina+easylist.txt: 40587) -.media-toolbar.com -# ||mdpcdn.com^*/gpt/ (easylistchina+easylist.txt: 40586) -.mdpcdn.com/.*/gpt/ -# ||mcclatchyinteractive.com/creative/ (easylistchina+easylist.txt: 40585) -.mcclatchyinteractive.com/creative/ -# ||mcc.godaddy.com/park/$subdocument,third-party (easylistchina+easylist.txt: 40584) -.mcc.godaddy.com/park/ -# ||mb.zam.com^ (easylistchina+easylist.txt: 40583) -.mb.zam.com -# ||mb.marathonbet.com^$third-party (easylistchina+easylist.txt: 40582) -.mb.marathonbet.com -# ||mb-hostservice.de/banner_ (easylistchina+easylist.txt: 40581) -.mb-hostservice.de/banner_ -# ||mazda.com.au/banners/ (easylistchina+easylist.txt: 40580) -.mazda.com.au/banners/ -# ||maximainvest.net^$image,third-party (easylistchina+easylist.txt: 40579) -.maximainvest.net -# ||matrixmails.com/images/$third-party (easylistchina+easylist.txt: 40578) -.matrixmails.com/images/ -# ||matchbin.com/javascripts/remote_widget.js (easylistchina+easylist.txt: 40577) -.matchbin.com/javascripts/remote_widget\.js -# ||match.com^*/prm/$third-party (easylistchina+easylist.txt: 40576) -.match.com/.*/prm/ -# ||mastiway.com/webimages/$third-party (easylistchina+easylist.txt: 40575) -.mastiway.com/webimages/ -# ||marketing.888.com^ (easylistchina+easylist.txt: 40573) -.marketing.888.com -# ||marinejobs.gr/images/marine_adv.gif (easylistchina+easylist.txt: 40572) -.marinejobs.gr/images/marine_adv\.gif -# ||mantra.com.au^*/campaigns/$third-party (easylistchina+easylist.txt: 40571) -.mantra.com.au/.*/campaigns/ -# ||mahndi.com/images/banner/ (easylistchina+easylist.txt: 40570) -.mahndi.com/images/banner/ -# ||magniwork.com/banner/ (easylistchina+easylist.txt: 40569) -.magniwork.com/banner/ -# ||magicmembers.com/img/mgm-125x125 (easylistchina+easylist.txt: 40568) -.magicmembers.com/img/mgm-125x125 -# ||magicaffiliateplugin.com/img/mga-125x125.gif (easylistchina+easylist.txt: 40567) -.magicaffiliateplugin.com/img/mga-125x125\.gif -# ||mads.aol.com^ (easylistchina+easylist.txt: 40566) -.mads.aol.com -# ||madisonlogic.com^$third-party (easylistchina+easylist.txt: 40565) -.madisonlogic.com -# ||lynku.com/partners/$third-party (easylistchina+easylist.txt: 40562) -.lynku.com/partners/ -# ||lygo.com/d/toolbar/sponsors/ (easylistchina+easylist.txt: 40560) -.lygo.com/d/toolbar/sponsors/ -# ||lumfile.com/lumimage/ourbanner/$third-party (easylistchina+easylist.txt: 40559) -.lumfile.com/lumimage/ourbanner/ -# ||luckyshare.net/images/banners/ (easylistchina+easylist.txt: 40558) -.luckyshare.net/images/banners/ -# ||luckygunner.com^*/banners/ (easylistchina+easylist.txt: 40557) -.luckygunner.com/.*/banners/ -# ||lucky-dating.net/banners/ (easylistchina+easylist.txt: 40556) -.lucky-dating.net/banners/ -# ||lucky-ace-casino.net/banners/ (easylistchina+easylist.txt: 40555) -.lucky-ace-casino.net/banners/ -# ||ltfm.ca/stats.php? (easylistchina+easylist.txt: 40554) -.ltfm.ca/stats\.php\? -# ||lp.ncdownloader.com^$third-party (easylistchina+easylist.txt: 40553) -.lp.ncdownloader.com -# ||lp.longtailvideo.com^*/adaptv*.swf (easylistchina+easylist.txt: 40552) -.lp.longtailvideo.com/.*/adaptv.*\.swf -# ||lowcountrymarketplace.com/widgets/$third-party (easylistchina+easylist.txt: 40551) -.lowcountrymarketplace.com/widgets/ -# ||lowbird.com/random/$third-party (easylistchina+easylist.txt: 40550) -.lowbird.com/random/ -# ||lottoelite.com/banners/$third-party (easylistchina+easylist.txt: 40549) -.lottoelite.com/banners/ -# ||loot.co.za^*/banners/$third-party (easylistchina+easylist.txt: 40548) -.loot.co.za/.*/banners/ -# ||loot.co.za/shop/product.jsp?$third-party (easylistchina+easylist.txt: 40547) -.loot.co.za/shop/product\.jsp\? -# ||loopnet.com^*/searchwidget.htm$third-party (easylistchina+easylist.txt: 40546) -.loopnet.com/.*/searchwidget\.htm -# ||longtailvideo.com^*/yume.swf (easylistchina+easylist.txt: 40545) -.longtailvideo.com/.*/yume\.swf -# ||longtailvideo.com^*/yume-h.swf (easylistchina+easylist.txt: 40544) -.longtailvideo.com/.*/yume-h\.swf -# ||longtailvideo.com^*/ova-$object-subrequest (easylistchina+easylist.txt: 40543) -.longtailvideo.com/.*/ova- -# ||longtailvideo.com^*/ltas-$object-subrequest,third-party (easylistchina+easylist.txt: 40542) -.longtailvideo.com/.*/ltas- -# ||longtailvideo.com^*/googima.swf$object-subrequest,third-party (easylistchina+easylist.txt: 40541) -.longtailvideo.com/.*/googima\.swf -# ||longtailvideo.com^*/googima-$object-subrequest (easylistchina+easylist.txt: 40540) -.longtailvideo.com/.*/googima- -# ||longtailvideo.com^*/adawe-$object-subrequest,third-party (easylistchina+easylist.txt: 40539) -.longtailvideo.com/.*/adawe- -# ||longtailvideo.com^*/adaptvjw5.swf$object-subrequest (easylistchina+easylist.txt: 40538) -.longtailvideo.com/.*/adaptvjw5\.swf -# ||longtailvideo.com^*/adaptvjw5-$object-subrequest (easylistchina+easylist.txt: 40537) -.longtailvideo.com/.*/adaptvjw5- -# ||longtailvideo.com*/ltas.swf (easylistchina+easylist.txt: 40536) -.longtailvideo.com*./(.*/)?ltas\.swf -# ||london24.com^*/mpu/ (easylistchina+easylist.txt: 40535) -.london24.com/.*/mpu/ -# ||localdata.eu/images/banners/ (easylistchina+easylist.txt: 40534) -.localdata.eu/images/banners/ -# ||llnwd.net/o28/assets/*-sponsored- (easylistchina+easylist.txt: 40533) -.llnwd.net/o28/assets/.*-sponsored- -# ||liveshows.com^*/live.js$third-party (easylistchina+easylist.txt: 40532) -.liveshows.com/.*/live\.js -# ||liveperson.com/affiliates/ (easylistchina+easylist.txt: 40531) -.liveperson.com/affiliates/ -# ||liutilities.com^*/affiliate/ (easylistchina+easylist.txt: 40529) -.liutilities.com/.*/affiliate/ -# ||liutilities.com/partners/$third-party (easylistchina+easylist.txt: 40528) -.liutilities.com/partners/ -# ||literatureandlatte.com/gfx/buynowaffiliate.jpg (easylistchina+easylist.txt: 40527) -.literatureandlatte.com/gfx/buynowaffiliate\.jpg -# ||litecoinkamikaze.com/assets/images/banner$third-party (easylistchina+easylist.txt: 40526) -.litecoinkamikaze.com/assets/images/banner -# ||lionheartdms.com^*/walmart_300.jpg (easylistchina+easylist.txt: 40525) -.lionheartdms.com/.*/walmart_300\.jpg -# ||linkedin.com/csp/dtag?$subdocument,third-party (easylistchina+easylist.txt: 40524) -.linkedin.com/csp/dtag\? -# ||linkbird.com/static/upload/*/banner/$third-party (easylistchina+easylist.txt: 40523) -.linkbird.com/static/upload/.*/banner/ -# ||link.link.ru^$third-party (easylistchina+easylist.txt: 40522) -.link.link.ru -# ||lijit.com/delivery/ (easylistchina+easylist.txt: 40521) -.lijit.com/delivery/ -# ||lijit.com/adif_px.php (easylistchina+easylist.txt: 40520) -.lijit.com/adif_px\.php -# ||lifestyle24h.com/reward/$third-party (easylistchina+easylist.txt: 40519) -.lifestyle24h.com/reward/ -# ||lg.com/in/cinema3d.jsp$subdocument,third-party (easylistchina+easylist.txt: 40518) -.lg.com/in/cinema3d\.jsp -# ||letters.coursekey.com/lettertemplates_$third-party (easylistchina+easylist.txt: 40517) -.letters.coursekey.com/lettertemplates_ -# ||letmewatchthis.ru/movies/linkbottom (easylistchina+easylist.txt: 40516) -.letmewatchthis.ru/movies/linkbottom -# ||lessemf.com/images/banner-$third-party (easylistchina+easylist.txt: 40515) -.lessemf.com/images/banner- -# ||lesmeilleurs-jeux.net/images/ban/$third-party (easylistchina+easylist.txt: 40514) -.lesmeilleurs-jeux.net/images/ban/ -# ||lego.com^*/affiliate/ (easylistchina+easylist.txt: 40513) -.lego.com/.*/affiliate/ -# ||legitonlinejobs.com/images/$third-party (easylistchina+easylist.txt: 40512) -.legitonlinejobs.com/images/ -# ||legaljobscentre.com/feed/jobad.aspx (easylistchina+easylist.txt: 40511) -.legaljobscentre.com/feed/jobad\.aspx -# ||leadsleap.com/widget/ (easylistchina+easylist.txt: 40510) -.leadsleap.com/widget/ -# ||leadsleap.com/images/banner_ (easylistchina+easylist.txt: 40509) -.leadsleap.com/images/banner_ -# ||leadintelligence.co.uk/in-text.js$third-party (easylistchina+easylist.txt: 40508) -.leadintelligence.co.uk/in-text\.js -# ||lawdepot.com/affiliate/$third-party (easylistchina+easylist.txt: 40507) -.lawdepot.com/affiliate/ -# ||lastlocation.com/images/banner (easylistchina+easylist.txt: 40506) -.lastlocation.com/images/banner -# ||lapi.ebay.com^$third-party (easylistchina+easylist.txt: 40505) -.lapi.ebay.com -# ||ladbrokes.com^*&aff_id= (easylistchina+easylist.txt: 40504) -.ladbrokes.com/.*&aff_id= -# ||l.yimg.com^*&partner=*&url= (easylistchina+easylist.txt: 40503) -.l.yimg.com/.*&partner=.*&url= -# ||kurtgeiger.com^*/linkshare/ (easylistchina+easylist.txt: 40502) -.kurtgeiger.com/.*/linkshare/ -# ||krillion.com^*/productoffers.js (easylistchina+easylist.txt: 40501) -.krillion.com/.*/productoffers\.js -# ||kraken.giantrealm.com^$third-party (easylistchina+easylist.txt: 40500) -.kraken.giantrealm.com -# ||kozmetikcerrahi.com/banner/ (easylistchina+easylist.txt: 40499) -.kozmetikcerrahi.com/banner/ -# ||kontera.com/javascript/lib/KonaLibInline.js$third-party (easylistchina+easylist.txt: 40498) -.kontera.com/javascript/lib/KonaLibInline\.js -# ||knorex.asia/static-firefly/ (easylistchina+easylist.txt: 40497) -.knorex.asia/static-firefly/ -# ||king.com^*/banners/ (easylistchina+easylist.txt: 40496) -.king.com/.*/banners/ -# ||keyword-winner.com/demo/images/ (easylistchina+easylist.txt: 40495) -.keyword-winner.com/demo/images/ -# ||keep2share.cc/images/i/00468x0060- (easylistchina+easylist.txt: 40494) -.keep2share.cc/images/i/00468x0060- -# ||kaltura.com^*/vastPlugin.swf$third-party (easylistchina+easylist.txt: 40493) -.kaltura.com/.*/vastPlugin\.swf -# ||kallout.com^*.php?id= (easylistchina+easylist.txt: 40492) -.kallout.com/.*\.php\?id= -# ||kaango.com/fecustomwidgetdisplay? (easylistchina+easylist.txt: 40491) -.kaango.com/fecustomwidgetdisplay\? -# ||k2team.kyiv.ua^ (easylistchina+easylist.txt: 40490) -.k2team.kyiv.ua -# ||k.co.il/iefilter.html (easylistchina+easylist.txt: 40489) -.k.co.il/iefilter\.html -# ||k-po.com/img/ebay.png$third-party (easylistchina+easylist.txt: 40488) -.k-po.com/img/ebay\.png -# ||jvzoo.com/assets/widget/$third-party (easylistchina+easylist.txt: 40487) -.jvzoo.com/assets/widget/ -# ||justclicktowatch.to/jstp.js (easylistchina+easylist.txt: 40486) -.justclicktowatch.to/jstp\.js -# ||junction.co.za/widget/$third-party (easylistchina+easylist.txt: 40485) -.junction.co.za/widget/ -# ||jugglu.com/content/widgets/$third-party (easylistchina+easylist.txt: 40484) -.jugglu.com/content/widgets/ -# ||jubimax.com/banner_images/ (easylistchina+easylist.txt: 40483) -.jubimax.com/banner_images/ -# ||jsrdn.com/s/1.js (easylistchina+easylist.txt: 40482) -.jsrdn.com/s/1\.js -# ||jsfeedget.com^$script,third-party (easylistchina+easylist.txt: 40481) -.jsfeedget.com -# ||jrcdev.net/promos/ (easylistchina+easylist.txt: 40480) -.jrcdev.net/promos/ -# ||jocly.com^*.html?click=$subdocument,third-party (easylistchina+easylist.txt: 40479) -.jocly.com/.*\.html\?click= -# ||jobs-affiliates.ws/images/$third-party (easylistchina+easylist.txt: 40478) -.jobs-affiliates.ws/images/ -# ||joblet.jp/javascripts/$third-party (easylistchina+easylist.txt: 40477) -.joblet.jp/javascripts/ -# ||jivox.com/jivox/serverapis/getcampaignbyid.php?$object-subrequest (easylistchina+easylist.txt: 40476) -.jivox.com/jivox/serverapis/getcampaignbyid\.php\? -# ||jinx.com/content/banner/$third-party (easylistchina+easylist.txt: 40475) -.jinx.com/content/banner/ -# ||jeysearch.com^$subdocument,third-party (easylistchina+easylist.txt: 40474) -.jeysearch.com -# ||jenningsforddirect.co.uk/sitewide/extras/$third-party (easylistchina+easylist.txt: 40473) -.jenningsforddirect.co.uk/sitewide/extras/ -# ||jalbum.net/widgetapi/js/dlbutton.js? (easylistchina+easylist.txt: 40472) -.jalbum.net/widgetapi/js/dlbutton\.js\? -# ||iypcdn.com^*/ypbanners/ (easylistchina+easylist.txt: 40471) -.iypcdn.com/.*/ypbanners/ -# ||iypcdn.com^*/otherbanners/ (easylistchina+easylist.txt: 40470) -.iypcdn.com/.*/otherbanners/ -# ||iypcdn.com^*/bgbanners/ (easylistchina+easylist.txt: 40469) -.iypcdn.com/.*/bgbanners/ -# ||iwebzoo.com/banner/ (easylistchina+easylist.txt: 40468) -.iwebzoo.com/banner/ -# ||iselectmedia.com^*/banners/ (easylistchina+easylist.txt: 40467) -.iselectmedia.com/.*/banners/ -# ||ipixs.com/ban/$third-party (easylistchina+easylist.txt: 40466) -.ipixs.com/ban/ -# ||ipercast.net^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 40465) -.ipercast.net/.*/ova-jw\.swf -# ||iobit.com/partner/$third-party (easylistchina+easylist.txt: 40464) -.iobit.com/partner/ -# ||intexchange.ru/Content/banners/ (easylistchina+easylist.txt: 40463) -.intexchange.ru/Content/banners/ -# ||interstitial.glsp.netdna-cdn.com^$third-party (easylistchina+easylist.txt: 40462) -.interstitial.glsp.netdna-cdn.com -# ||interserver.net/logos/vps-$third-party (easylistchina+easylist.txt: 40461) -.interserver.net/logos/vps- -# ||internetbrands.com/partners/$third-party (easylistchina+easylist.txt: 40460) -.internetbrands.com/partners/ -# ||intermrkts.vo.llnwd.net^$third-party (easylistchina+easylist.txt: 40459) -.intermrkts.vo.llnwd.net -# ||integrityvpn.com/img/integrityvpn.jpg (easylistchina+easylist.txt: 40458) -.integrityvpn.com/img/integrityvpn\.jpg -# ||instaprofitgram.com/images/banners/ (easylistchina+easylist.txt: 40457) -.instaprofitgram.com/images/banners/ -# ||instantpaysites.com/banner/ (easylistchina+easylist.txt: 40456) -.instantpaysites.com/banner/ -# ||inskin.vo.llnwd.net^ (easylistchina+easylist.txt: 40455) -.inskin.vo.llnwd.net -# ||inline.playbryte.com^$third-party (easylistchina+easylist.txt: 40454) -.inline.playbryte.com -# ||init.lingospot.com^$third-party (easylistchina+easylist.txt: 40453) -.init.lingospot.com -# ||inisrael-travel.com/jpost/ (easylistchina+easylist.txt: 40452) -.inisrael-travel.com/jpost/ -# ||infomarine.gr^*/images/banners/ (easylistchina+easylist.txt: 40451) -.infomarine.gr/.*/images/banners/ -# ||infomarine.gr/images/banerr.gif (easylistchina+easylist.txt: 40450) -.infomarine.gr/images/banerr\.gif -# ||infochoice.com.au/Handler/WidgetV2Handler.ashx? (easylistchina+easylist.txt: 40449) -.infochoice.com.au/Handler/WidgetV2Handler\.ashx\? -# ||infibeam.com/affiliate/$third-party (easylistchina+easylist.txt: 40448) -.infibeam.com/affiliate/ -# ||indieclick.3janecdn.com^ (easylistchina+easylist.txt: 40447) -.indieclick.3janecdn.com -# ||indian-forex.com^*/banners/$third-party (easylistchina+easylist.txt: 40446) -.indian-forex.com/.*/banners/ -# ||indeed.fr/ads/ (easylistchina+easylist.txt: 40445) -.indeed.fr/ads/ -# ||imptestrm.com/rg-main.php? (easylistchina+easylist.txt: 40444) -.imptestrm.com/rg-main\.php\? -# ||imgpop.googlecode.com^$third-party (easylistchina+easylist.txt: 40442) -.imgpop.googlecode.com -# ||imgehost.com^*/banners/$third-party (easylistchina+easylist.txt: 40441) -.imgehost.com/.*/banners/ -# ||imgdino.com/gsmpop.js (easylistchina+easylist.txt: 40440) -.imgdino.com/gsmpop\.js -# ||img.servint.net^$third-party (easylistchina+easylist.txt: 40439) -.img.servint.net -# ||img.promoddl.com^$third-party (easylistchina+easylist.txt: 40438) -.img.promoddl.com -# ||img.mybet.com^$third-party (easylistchina+easylist.txt: 40437) -.img.mybet.com -# ||img.hostmonster.com^$third-party (easylistchina+easylist.txt: 40436) -.img.hostmonster.com -# ||img.bluehost.com^$third-party (easylistchina+easylist.txt: 40435) -.img.bluehost.com -# ||imagetwist.com/banner/ (easylistchina+easylist.txt: 40434) -.imagetwist.com/banner/ -# ||images.youbuy.it/images/$third-party (easylistchina+easylist.txt: 40433) -.images.youbuy.it/images/ -# ||images.mylot.com^$third-party (easylistchina+easylist.txt: 40432) -.images.mylot.com -# ||images.dreamhost.com^$third-party (easylistchina+easylist.txt: 40431) -.images.dreamhost.com -# ||images.criteo.net^$third-party (easylistchina+easylist.txt: 40430) -.images.criteo.net -# ||images.*.criteo.net^$third-party (easylistchina+easylist.txt: 40429) -.images.*./.*\.criteo\.net[^\w%.-] -.images.*.criteo.net -# ||images-pw.secureserver.net^*_*.$image,third-party (easylistchina+easylist.txt: 40428) -.images-pw.secureserver.net/.*_.*\. -# ||images-pw.secureserver.net/images/100yearsofchevy.gif (easylistchina+easylist.txt: 40427) -.images-pw.secureserver.net/images/100yearsofchevy\.gif -# ||images-amazon.com/images/*/banner/$third-party (easylistchina+easylist.txt: 40425) -.images-amazon.com/images/.*/banner/ -# ||images-amazon.com/images/*/associates/widgets/ (easylistchina+easylist.txt: 40424) -.images-amazon.com/images/.*/associates/widgets/ -# ||image.dhgate.com^*/dhgate-logo-$third-party (easylistchina+easylist.txt: 40423) -.image.dhgate.com/.*/dhgate-logo- -# ||image.com.com^*/skin2.jpg$third-party (easylistchina+easylist.txt: 40422) -.image.com.com/.*/skin2\.jpg -# ||ima3vpaid.appspot.com^ (easylistchina+easylist.txt: 40421) -.ima3vpaid.appspot.com -# ||im.ov.yahoo.co.jp^ (easylistchina+easylist.txt: 40420) -.im.ov.yahoo.co.jp -# ||ilapi.ebay.com^$third-party (easylistchina+easylist.txt: 40419) -.ilapi.ebay.com -# ||ifilm.com/website/*_skin_$third-party (easylistchina+easylist.txt: 40418) -.ifilm.com/website/.*_skin_ -# ||idg.com.au/ggg/images/*_home.jpg$third-party (easylistchina+easylist.txt: 40416) -.idg.com.au/ggg/images/.*_home\.jpg -# ||idealo.co.uk/priceinfo/$third-party (easylistchina+easylist.txt: 40415) -.idealo.co.uk/priceinfo/ -# ||icastcenter.com^*/itunes.jpg (easylistchina+easylist.txt: 40414) -.icastcenter.com/.*/itunes\.jpg -# ||icastcenter.com^*/amazon-buyfrom.gif (easylistchina+easylist.txt: 40413) -.icastcenter.com/.*/amazon-buyfrom\.gif -# ||ibvpn.com/img/banners/ (easylistchina+easylist.txt: 40412) -.ibvpn.com/img/banners/ -# ||ibsys.com/sh/sponsors/ (easylistchina+easylist.txt: 40411) -.ibsys.com/sh/sponsors/ -# ||ibsrv.net/sponsor_images/ (easylistchina+easylist.txt: 40410) -.ibsrv.net/sponsor_images/ -# ||ibsrv.net/sidetiles/125x125/ (easylistchina+easylist.txt: 40409) -.ibsrv.net/sidetiles/125x125/ -# ||i.lsimg.net^*/takeover/ (easylistchina+easylist.txt: 40408) -.i.lsimg.net/.*/takeover/ -# ||i.lsimg.net^*/sides_clickable. (easylistchina+easylist.txt: 40407) -.i.lsimg.net/.*/sides_clickable\. -# ||i.ligatus.com/*-placements/$third-party (easylistchina+easylist.txt: 40406) -.i.ligatus.com/.*-placements/ -# ||hyperscale.com/images/adh_button.jpg (easylistchina+easylist.txt: 40405) -.hyperscale.com/images/adh_button\.jpg -# ||hyperfbtraffic.com/images/graphicsbanners/ (easylistchina+easylist.txt: 40404) -.hyperfbtraffic.com/images/graphicsbanners/ -# ||hyipregulate.com/images/hyipregulatebanner.gif (easylistchina+easylist.txt: 40403) -.hyipregulate.com/images/hyipregulatebanner\.gif -# ||hubbardradio.com^*/my_deals.php (easylistchina+easylist.txt: 40401) -.hubbardradio.com/.*/my_deals\.php -# ||hubbarddeals.com^*/promo/ (easylistchina+easylist.txt: 40400) -.hubbarddeals.com/.*/promo/ -# ||hstpnetwork.com/zeus.php (easylistchina+easylist.txt: 40399) -.hstpnetwork.com/zeus\.php -# ||hstpnetwork.com/ads/ (easylistchina+easylist.txt: 40398) -.hstpnetwork.com/ads/ -# ||hqfootyad4.blogspot.com^$third-party (easylistchina+easylist.txt: 40397) -.hqfootyad4.blogspot.com -# ||hotlinking.dosmil.imap.cc^$third-party (easylistchina+easylist.txt: 40396) -.hotlinking.dosmil.imap.cc -# ||hoteltravel.com/partner/$third-party (easylistchina+easylist.txt: 40395) -.hoteltravel.com/partner/ -# ||hotelsbycity.com^*/bannermtg.php?$third-party (easylistchina+easylist.txt: 40394) -.hotelsbycity.com/.*/bannermtg\.php\? -# ||hostmonster.com/src/js/izahariev/$third-party (easylistchina+easylist.txt: 40393) -.hostmonster.com/src/js/izahariev/ -# ||hostinger.nl/banners/ (easylistchina+easylist.txt: 40392) -.hostinger.nl/banners/ -# ||hosting.conduit.com^$third-party (easylistchina+easylist.txt: 40391) -.hosting.conduit.com -# ||hostgator.com/~affiliat/cgi-bin/affiliates/$third-party (easylistchina+easylist.txt: 40390) -.hostgator.com/~affiliat/cgi-bin/affiliates/ -# ||hostdime.com/images/affiliate/$third-party (easylistchina+easylist.txt: 40389) -.hostdime.com/images/affiliate/ -# ||homad-global-configs.schneevonmorgen.com^ (easylistchina+easylist.txt: 40388) -.homad-global-configs.schneevonmorgen.com -# ||hm-sat.de/b.php (easylistchina+easylist.txt: 40387) -.hm-sat.de/b\.php -# ||hitleap.com/assets/banner.png (easylistchina+easylist.txt: 40386) -.hitleap.com/assets/banner\.png -# ||hitleap.com/assets/banner- (easylistchina+easylist.txt: 40385) -.hitleap.com/assets/banner- -# ||highepcoffer.com/images/banners/ (easylistchina+easylist.txt: 40384) -.highepcoffer.com/images/banners/ -# ||hide-my-ip.com/promo/ (easylistchina+easylist.txt: 40383) -.hide-my-ip.com/promo/ -# ||hexero.com/images/banner.gif (easylistchina+easylist.txt: 40382) -.hexero.com/images/banner\.gif -# ||heidiklein.com/media/banners/ (easylistchina+easylist.txt: 40381) -.heidiklein.com/media/banners/ -# ||healthtrader.com/banner-$third-party (easylistchina+easylist.txt: 40380) -.healthtrader.com/banner- -# ||hdvid-codecs.com^$third-party (easylistchina+easylist.txt: 40379) -.hdvid-codecs.com -# ||haymarket.net.au/Skins/ (easylistchina+easylist.txt: 40378) -.haymarket.net.au/Skins/ -# ||haymarket-whistleout.s3.amazonaws.com/*_ad.html (easylistchina+easylist.txt: 40377) -.haymarket-whistleout.s3.amazonaws.com/.*_ad\.html -# ||handango.com/marketing/affiliate/ (easylistchina+easylist.txt: 40376) -.handango.com/marketing/affiliate/ -# ||halllakeland.com/banner/ (easylistchina+easylist.txt: 40375) -.halllakeland.com/banner/ -# ||guzzle.co.za/media/banners/ (easylistchina+easylist.txt: 40374) -.guzzle.co.za/media/banners/ -# ||guim.co.uk/guardian/thirdparty/tv-site/side.html (easylistchina+easylist.txt: 40373) -.guim.co.uk/guardian/thirdparty/tv-site/side\.html -# ||gsniper.com/images/$third-party (easylistchina+easylist.txt: 40372) -.gsniper.com/images/ -# ||grouponcdn.com^*/affiliate_widget/$third-party (easylistchina+easylist.txt: 40371) -.grouponcdn.com/.*/affiliate_widget/ -# ||groupon.com/javascripts/common/affiliate_widget/$third-party (easylistchina+easylist.txt: 40370) -.groupon.com/javascripts/common/affiliate_widget/ -# ||grindabuck.com/img/skyscraper.jpg (easylistchina+easylist.txt: 40369) -.grindabuck.com/img/skyscraper\.jpg -# ||grammar.coursekey.com/inter/$third-party (easylistchina+easylist.txt: 40368) -.grammar.coursekey.com/inter/ -# ||graduateinjapan.com/affiliates/ (easylistchina+easylist.txt: 40367) -.graduateinjapan.com/affiliates/ -# ||graboid.com/affiliates/ (easylistchina+easylist.txt: 40366) -.graboid.com/affiliates/ -# ||govids.net/adss/ (easylistchina+easylist.txt: 40364) -.govids.net/adss/ -# ||gotraffic.net^*/sponsors/ (easylistchina+easylist.txt: 40363) -.gotraffic.net/.*/sponsors/ -# ||gorgonprojectinvest.com/images/banners/ (easylistchina+easylist.txt: 40362) -.gorgonprojectinvest.com/images/banners/ -# ||googlesyndication.com^*/simgad/$third-party (easylistchina+easylist.txt: 40361) -.googlesyndication.com/.*/simgad/ -# ||googlesyndication.com^*/googlevideoadslibraryas3.swf$object-subrequest,third-party (easylistchina+easylist.txt: 40360) -.googlesyndication.com/.*/googlevideoadslibraryas3\.swf -# ||googlesyndication.com^*/domainpark.cgi? (easylistchina+easylist.txt: 40359) -.googlesyndication.com/.*/domainpark\.cgi\? -# ||googlesyndication.com^*/click_to_buy/$object-subrequest,third-party (easylistchina+easylist.txt: 40358) -.googlesyndication.com/.*/click_to_buy/ -# ||googlesyndication.com/simgad/$third-party (easylistchina+easylist.txt: 40357) -.googlesyndication.com/simgad/ -# ||googlesyndication.com/safeframe/$third-party (easylistchina+easylist.txt: 40356) -.googlesyndication.com/safeframe/ -# ||googlesyndication.com/pagead/$third-party (easylistchina+easylist.txt: 40355) -.googlesyndication.com/pagead/ -# ||google.com/uds/afs?*adsense$subdocument (easylistchina+easylist.txt: 40354) -.google.com/uds/afs\?.*adsense -# ||google.com/pagead/ (easylistchina+easylist.txt: 40353) -.google.com/pagead/ -# ||goldmoney.com/~/media/Images/Banners/$third-party (easylistchina+easylist.txt: 40350) -.goldmoney.com/~/media/Images/Banners/ -# ||gold4rs.com/images/$third-party (easylistchina+easylist.txt: 40349) -.gold4rs.com/images/ -# ||gogousenet.com^*/promo2.cgi (easylistchina+easylist.txt: 40348) -.gogousenet.com/.*/promo2\.cgi -# ||gogousenet.com^*/promo.cgi (easylistchina+easylist.txt: 40347) -.gogousenet.com/.*/promo\.cgi -# ||goadv.com^*/ads.js (easylistchina+easylist.txt: 40346) -.goadv.com/.*/ads\.js -# ||gmstatic.net^*/itunesbadge.png (easylistchina+easylist.txt: 40345) -.gmstatic.net/.*/itunesbadge\.png -# ||gmstatic.net^*/amazonbadge.png (easylistchina+easylist.txt: 40344) -.gmstatic.net/.*/amazonbadge\.png -# ||globalprocash.com/banner125.gif (easylistchina+easylist.txt: 40343) -.globalprocash.com/banner125\.gif -# ||glam.com^*?affiliateid= (easylistchina+easylist.txt: 40342) -.glam.com/.*\?affiliateid= -# ||glam.com/gad/ (easylistchina+easylist.txt: 40341) -.glam.com/gad/ -# ||giffgaff.com/banner/ (easylistchina+easylist.txt: 40340) -.giffgaff.com/banner/ -# ||giantsavings-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 40339) -.giantsavings-a.akamaihd.net -# ||giantrealm.com/saj/ (easylistchina+easylist.txt: 40338) -.giantrealm.com/saj/ -# ||ggmania.com^*.jpg$third-party (easylistchina+easylist.txt: 40337) -.ggmania.com/.*\.jpg -# ||gfxa.sheetmusicplus.com^$third-party (easylistchina+easylist.txt: 40336) -.gfxa.sheetmusicplus.com -# ||gfaf-banners.s3.amazonaws.com^ (easylistchina+easylist.txt: 40335) -.gfaf-banners.s3.amazonaws.com -# ||getpaidforyourtime.org/basic-rotating-banner/ (easylistchina+easylist.txt: 40334) -.getpaidforyourtime.org/basic-rotating-banner/ -# ||getnzb.com/img/partner/banners/$third-party (easylistchina+easylist.txt: 40333) -.getnzb.com/img/partner/banners/ -# ||gethopper.com/tp/$third-party (easylistchina+easylist.txt: 40332) -.gethopper.com/tp/ -# ||getadblock.com/images/adblock_banners/$third-party (easylistchina+easylist.txt: 40331) -.getadblock.com/images/adblock_banners/ -# ||get.thisisvegas.com^$third-party (easylistchina+easylist.txt: 40330) -.get.thisisvegas.com -# ||get.slotocash.com^$third-party (easylistchina+easylist.txt: 40329) -.get.slotocash.com -# ||get.rubyroyal.com^$third-party (easylistchina+easylist.txt: 40328) -.get.rubyroyal.com -# ||get.paradise8.com^$third-party (easylistchina+easylist.txt: 40327) -.get.paradise8.com -# ||get.davincisgold.com^$third-party (easylistchina+easylist.txt: 40326) -.get.davincisgold.com -# ||get.box24casino.com^$third-party (easylistchina+easylist.txt: 40325) -.get.box24casino.com -# ||get.2leep.com^$third-party (easylistchina+easylist.txt: 40324) -.get.2leep.com -# ||get.*.website/static/get-js?stid=$third-party (easylistchina+easylist.txt: 40323) -.get.*./.*\.website/static/get-js\?stid= -.get.*.website/static/get-js\?stid= -# ||geobanner.passion.com^ (easylistchina+easylist.txt: 40322) -.geobanner.passion.com -# ||geobanner.friendfinder.com^ (easylistchina+easylist.txt: 40321) -.geobanner.friendfinder.com -# ||geo.connexionsecure.com^ (easylistchina+easylist.txt: 40320) -.geo.connexionsecure.com -# ||generic4all.com^*?refid=$third-party (easylistchina+easylist.txt: 40319) -.generic4all.com/.*\?refid= -# ||gemini.yahoo.com^*^syndication^ (easylistchina+easylist.txt: 40318) -.gemini.yahoo.com/.*[^\w%.-]syndication[^\w%.-] -# ||gawkerassets.com/assets/marquee/$object,third-party (easylistchina+easylist.txt: 40316) -.gawkerassets.com/assets/marquee/ -# ||gateways.s3.amazonaws.com^ (easylistchina+easylist.txt: 40315) -.gateways.s3.amazonaws.com -# ||gateway.fortunelounge.com^ (easylistchina+easylist.txt: 40314) -.gateway.fortunelounge.com -# ||gamingjobsonline.com/images/banner/ (easylistchina+easylist.txt: 40313) -.gamingjobsonline.com/images/banner/ -# ||gamestop.com^*/aflbanners/ (easylistchina+easylist.txt: 40312) -.gamestop.com/.*/aflbanners/ -# ||gamesports.net/img/betting_campaigns/ (easylistchina+easylist.txt: 40311) -.gamesports.net/img/betting_campaigns/ -# ||gamersaloon.com/images/banners/ (easylistchina+easylist.txt: 40310) -.gamersaloon.com/images/banners/ -# ||gamer-network.net/plugins/dfp/ (easylistchina+easylist.txt: 40309) -.gamer-network.net/plugins/dfp/ -# ||gameorc.net/a.html (easylistchina+easylist.txt: 40308) -.gameorc.net/a\.html -# ||gameduell.com/res/affiliate/ (easylistchina+easylist.txt: 40307) -.gameduell.com/res/affiliate/ -# ||gamblingwages.com/images/$third-party (easylistchina+easylist.txt: 40306) -.gamblingwages.com/images/ -# ||gadgetresearch.net^$subdocument,third-party (easylistchina+easylist.txt: 40305) -.gadgetresearch.net -# ||fyygame.com/images/*.swf$third-party (easylistchina+easylist.txt: 40304) -.fyygame.com/images/.*\.swf -# ||fyiwashtenaw.com/remote_widget? (easylistchina+easylist.txt: 40303) -.fyiwashtenaw.com/remote_widget\? -# ||fyicentralmi.com/remote_widget?$third-party (easylistchina+easylist.txt: 40302) -.fyicentralmi.com/remote_widget\? -# ||fxultima.com/banner/ (easylistchina+easylist.txt: 40301) -.fxultima.com/banner/ -# ||fxcc.com/promo/ (easylistchina+easylist.txt: 40300) -.fxcc.com/promo/ -# ||futuresite.register.com/us?$third-party (easylistchina+easylist.txt: 40299) -.futuresite.register.com/us\? -# ||futuboxhd.com/js/bc.js (easylistchina+easylist.txt: 40298) -.futuboxhd.com/js/bc\.js -# ||furiousteam.com^*/external_banner/ (easylistchina+easylist.txt: 40297) -.furiousteam.com/.*/external_banner/ -# ||fupa.com/aw.aspx?$third-party (easylistchina+easylist.txt: 40296) -.fupa.com/aw\.aspx\? -# ||funtonia.com/promo/ (easylistchina+easylist.txt: 40295) -.funtonia.com/promo/ -# ||fugger.netfirms.com/moa.swf$third-party (easylistchina+easylist.txt: 40294) -.fugger.netfirms.com/moa\.swf -# ||fugger.ipage.com^$third-party (easylistchina+easylist.txt: 40293) -.fugger.ipage.com -# ||ft.pnop.com^ (easylistchina+easylist.txt: 40292) -.ft.pnop.com -# ||frontsight.com^*/banners/ (easylistchina+easylist.txt: 40291) -.frontsight.com/.*/banners/ -# ||frogatto.com/images/$third-party (easylistchina+easylist.txt: 40290) -.frogatto.com/images/ -# ||friedrice.la/widget/$third-party (easylistchina+easylist.txt: 40289) -.friedrice.la/widget/ -# ||freshbooks.com/images/banners/$third-party (easylistchina+easylist.txt: 40288) -.freshbooks.com/images/banners/ -# ||freewheel.mtgx.tv^$~object-subrequest (easylistchina+easylist.txt: 40287) -.freewheel.mtgx.tv -# ||freetricktipss.info^$subdocument,third-party (easylistchina+easylist.txt: 40286) -.freetricktipss.info -# ||freetrafficsystem.com/fts/ban/ (easylistchina+easylist.txt: 40285) -.freetrafficsystem.com/fts/ban/ -# ||freecycle.org^*/sponsors/ (easylistchina+easylist.txt: 40284) -.freecycle.org/.*/sponsors/ -# ||free-football.tv/images/usd/ (easylistchina+easylist.txt: 40283) -.free-football.tv/images/usd/ -# ||freakshare.net/banner/ (easylistchina+easylist.txt: 40282) -.freakshare.net/banner/ -# ||freakshare.com/banner/$third-party (easylistchina+easylist.txt: 40281) -.freakshare.com/banner/ -# ||freakshare.com/?ref= (easylistchina+easylist.txt: 40280) -.freakshare.com/\?ref= -# ||fragfestservers.com/bannerb.gif (easylistchina+easylist.txt: 40279) -.fragfestservers.com/bannerb\.gif -# ||forumimg.ipmart.com/swf/img.php (easylistchina+easylist.txt: 40278) -.forumimg.ipmart.com/swf/img\.php -# ||fortune5minutes.com^*/banner_ (easylistchina+easylist.txt: 40277) -.fortune5minutes.com/.*/banner_ -# ||forms.aweber.com/form/styled_popovers_and_lightboxes.js$third-party (easylistchina+easylist.txt: 40276) -.forms.aweber.com/form/styled_popovers_and_lightboxes\.js -# ||footymad.net/partners/ (easylistchina+easylist.txt: 40275) -.footymad.net/partners/ -# ||followfairy.com/followfairy300x250.jpg (easylistchina+easylist.txt: 40274) -.followfairy.com/followfairy300x250\.jpg -# ||fncstatic.com^*/business-exchange.html (easylistchina+easylist.txt: 40273) -.fncstatic.com/.*/business-exchange\.html -# ||flower.com/img/lsh/ (easylistchina+easylist.txt: 40272) -.flower.com/img/lsh/ -# ||flixcart.com/affiliate/$third-party (easylistchina+easylist.txt: 40271) -.flixcart.com/affiliate/ -# ||flipkart.com/affiliateWidget/$third-party (easylistchina+easylist.txt: 40270) -.flipkart.com/affiliateWidget/ -# ||flipchat.com/index.php?$third-party (easylistchina+easylist.txt: 40269) -.flipchat.com/index\.php\? -# ||flagship.asp-host.co.uk^$third-party (easylistchina+easylist.txt: 40268) -.flagship.asp-host.co.uk -# ||firstclass-download.com^$subdocument,third-party (easylistchina+easylist.txt: 40267) -.firstclass-download.com -# ||firecenter.pl/banners/ (easylistchina+easylist.txt: 40266) -.firecenter.pl/banners/ -# ||fimserve.myspace.com^$third-party (easylistchina+easylist.txt: 40265) -.fimserve.myspace.com -# ||filterforge.com/images/banners/ (easylistchina+easylist.txt: 40264) -.filterforge.com/images/banners/ -# ||filmehd.net/imagini/banner_$third-party (easylistchina+easylist.txt: 40262) -.filmehd.net/imagini/banner_ -# ||fileserver1.net/download (easylistchina+easylist.txt: 40261) -.fileserver1.net/download -# ||fileserve.com/images/banner_$third-party (easylistchina+easylist.txt: 40260) -.fileserve.com/images/banner_ -# ||filepost.com/static/images/bn/ (easylistchina+easylist.txt: 40259) -.filepost.com/static/images/bn/ -# ||fileparadox.com/images/banner/ (easylistchina+easylist.txt: 40258) -.fileparadox.com/images/banner/ -# ||fileloadr.com^$third-party (easylistchina+easylist.txt: 40257) -.fileloadr.com -# ||filejungle.com/images/banner/ (easylistchina+easylist.txt: 40256) -.filejungle.com/images/banner/ -# ||filefactory.com^*/refer.php?hash= (easylistchina+easylist.txt: 40255) -.filefactory.com/.*/refer\.php\?hash= -# ||filedroid.net/af_ta/$third-party (easylistchina+easylist.txt: 40254) -.filedroid.net/af_ta/ -# ||filedownloader.net/design/$third-party (easylistchina+easylist.txt: 40253) -.filedownloader.net/design/ -# ||fenixm.com/actions/*Skin*.$image (easylistchina+easylist.txt: 40252) -.fenixm.com/actions/.*Skin.*\. -# ||feeds.logicbuy.com^ (easylistchina+easylist.txt: 40251) -.feeds.logicbuy.com -# ||feedburner.com/~a/ (easylistchina+easylist.txt: 40250) -.feedburner.com/~a/ -# ||fcgadgets.blogspot.com^$third-party (easylistchina+easylist.txt: 40249) -.fcgadgets.blogspot.com -# ||fatburningfurnace.com^*/fbf-banner- (easylistchina+easylist.txt: 40248) -.fatburningfurnace.com/.*/fbf-banner- -# ||fatads.toldya.com^$third-party (easylistchina+easylist.txt: 40247) -.fatads.toldya.com -# ||fastcccam.com/images/fcbanner2.gif (easylistchina+easylist.txt: 40246) -.fastcccam.com/images/fcbanner2\.gif -# ||farmholidays.is/iframeallfarmsearch.aspx?$third-party (easylistchina+easylist.txt: 40245) -.farmholidays.is/iframeallfarmsearch\.aspx\? -# ||fapturbo.com/testoid/ (easylistchina+easylist.txt: 40244) -.fapturbo.com/testoid/ -# ||fantaz.com^*/banners/$third-party (easylistchina+easylist.txt: 40243) -.fantaz.com/.*/banners/ -# ||fantasyplayers.com/templates/banner_code. (easylistchina+easylist.txt: 40242) -.fantasyplayers.com/templates/banner_code\. -# ||fancybar.net/ac/fancybar.js?zoneid$third-party (easylistchina+easylist.txt: 40241) -.fancybar.net/ac/fancybar\.js\?zoneid -# ||familytreedna.com/img/affiliates/ (easylistchina+easylist.txt: 40240) -.familytreedna.com/img/affiliates/ -# ||fairfaxregional.com.au/proxy/commercial-partner-solar/ (easylistchina+easylist.txt: 40239) -.fairfaxregional.com.au/proxy/commercial-partner-solar/ -# ||eyetopics.com/content_images/$third-party (easylistchina+easylist.txt: 40238) -.eyetopics.com/content_images/ -# ||exwp.org/partners/ (easylistchina+easylist.txt: 40237) -.exwp.org/partners/ -# ||extras.mnginteractive.com^*/todaysdeals.gif (easylistchina+easylist.txt: 40236) -.extras.mnginteractive.com/.*/todaysdeals\.gif -# ||extras.mercurynews.com/tapin_directory/ (easylistchina+easylist.txt: 40235) -.extras.mercurynews.com/tapin_directory/ -# ||extensoft.com/artisteer/banners/ (easylistchina+easylist.txt: 40234) -.extensoft.com/artisteer/banners/ -# ||extabit.com/s/$third-party (easylistchina+easylist.txt: 40233) -.extabit.com/s/ -# ||ext.theglobalweb.com^ (easylistchina+easylist.txt: 40232) -.ext.theglobalweb.com -# ||explorer.sheknows.com^$third-party (easylistchina+easylist.txt: 40231) -.explorer.sheknows.com -# ||expekt.com/affiliates/ (easylistchina+easylist.txt: 40230) -.expekt.com/affiliates/ -# ||exoplanetwar.com/l/landing.php? (easylistchina+easylist.txt: 40229) -.exoplanetwar.com/l/landing\.php\? -# ||everestpoker.com^*/?adv= (easylistchina+easylist.txt: 40228) -.everestpoker.com/.*/\?adv= -# ||events.kalooga.com^ (easylistchina+easylist.txt: 40227) -.events.kalooga.com -# ||euwidget.imshopping.com^ (easylistchina+easylist.txt: 40226) -.euwidget.imshopping.com -# ||europolitique.info^*/pub/ (easylistchina+easylist.txt: 40225) -.europolitique.info/.*/pub/ -# ||etrader.kalahari.net^$third-party (easylistchina+easylist.txt: 40224) -.etrader.kalahari.net -# ||etrader.kalahari.com^$third-party (easylistchina+easylist.txt: 40223) -.etrader.kalahari.com -# ||etoro.com/B*_A*_TGet.aspx$third-party (easylistchina+easylist.txt: 40222) -.etoro.com/B.*_A.*_TGet\.aspx -# ||etoolkit.com/banner/$third-party (easylistchina+easylist.txt: 40221) -.etoolkit.com/banner/ -# ||esport-betting.com^*/betbanner/ (easylistchina+easylist.txt: 40220) -.esport-betting.com/.*/betbanner/ -# ||escape.insites.eu^$third-party (easylistchina+easylist.txt: 40219) -.escape.insites.eu -# ||epowernetworktrackerimages.s3.amazonaws.com^ (easylistchina+easylist.txt: 40218) -.epowernetworktrackerimages.s3.amazonaws.com -# ||eplreplays.com/wl/ (easylistchina+easylist.txt: 40217) -.eplreplays.com/wl/ -# ||epimg.net/js/pbs/ (easylistchina+easylist.txt: 40216) -.epimg.net/js/pbs/ -# ||enticelabs.com/el/ (easylistchina+easylist.txt: 40215) -.enticelabs.com/el/ -# ||engine.gamerati.net^$third-party (easylistchina+easylist.txt: 40214) -.engine.gamerati.net -# ||emsisoft.com/bnr/ (easylistchina+easylist.txt: 40213) -.emsisoft.com/bnr/ -# ||emailcashpro.com/images/$third-party (easylistchina+easylist.txt: 40212) -.emailcashpro.com/images/ -# ||eltexonline.com/contentrotator/$third-party (easylistchina+easylist.txt: 40211) -.eltexonline.com/contentrotator/ -# ||elliottwave.com/fw/regular_leaderboard.js (easylistchina+easylist.txt: 40210) -.elliottwave.com/fw/regular_leaderboard\.js -# ||elitsearch.com^$subdocument,third-party (easylistchina+easylist.txt: 40209) -.elitsearch.com -# ||elenasmodels.com/cache/cb_$third-party (easylistchina+easylist.txt: 40208) -.elenasmodels.com/cache/cb_ -# ||eholidayfinder.com/images/logo.gif$third-party (easylistchina+easylist.txt: 40207) -.eholidayfinder.com/images/logo\.gif -# ||edgecastcdn.net^*.barstoolsports.com/wp-content/banners/ (easylistchina+easylist.txt: 40206) -.edgecastcdn.net/.*\.barstoolsports\.com/wp-content/banners/ -# ||edge.viagogo.co.uk^*/widget.ashx?$third-party (easylistchina+easylist.txt: 40205) -.edge.viagogo.co.uk/.*/widget\.ashx\? -# ||ectaco-store.com^*/promo.jsp? (easylistchina+easylist.txt: 40204) -.ectaco-store.com/.*/promo\.jsp\? -# ||echineselearning.com^*/banner.jpg (easylistchina+easylist.txt: 40203) -.echineselearning.com/.*/banner\.jpg -# ||eblastengine.upickem.net^$third-party (easylistchina+easylist.txt: 40202) -.eblastengine.upickem.net -# ||ebladestore.com^*/banners/ (easylistchina+easylist.txt: 40201) -.ebladestore.com/.*/banners/ -# ||ebaystatic.com/aw/signin/ebay-signin-toyota- (easylistchina+easylist.txt: 40200) -.ebaystatic.com/aw/signin/ebay-signin-toyota- -# ||ebaycommercenetwork.com/publisher/$third-party (easylistchina+easylist.txt: 40199) -.ebaycommercenetwork.com/publisher/ -# ||eattoday.com.mt/widgets/$third-party (easylistchina+easylist.txt: 40198) -.eattoday.com.mt/widgets/ -# ||easyretiredmillionaire.com/img/aff-img/ (easylistchina+easylist.txt: 40197) -.easyretiredmillionaire.com/img/aff-img/ -# ||easy-share.com/images/es20/ (easylistchina+easylist.txt: 40196) -.easy-share.com/images/es20/ -# ||e-webcorp.com/images/$third-party (easylistchina+easylist.txt: 40195) -.e-webcorp.com/images/ -# ||e-tailwebstores.com/accounts/default1/banners/ (easylistchina+easylist.txt: 40194) -.e-tailwebstores.com/accounts/default1/banners/ -# ||dynw.com/banner (easylistchina+easylist.txt: 40193) -.dynw.com/banner -# ||dynamicserving.com^$third-party (easylistchina+easylist.txt: 40192) -.dynamicserving.com -# ||dyl3p6so5yozo.cloudfront.net^ (easylistchina+easylist.txt: 40191) -.dyl3p6so5yozo.cloudfront.net -# ||dycpc40hvg4ki.cloudfront.net^ (easylistchina+easylist.txt: 40190) -.dycpc40hvg4ki.cloudfront.net -# ||dy48bnzanqw0v.cloudfront.net^ (easylistchina+easylist.txt: 40189) -.dy48bnzanqw0v.cloudfront.net -# ||dxqd86uz345mg.cloudfront.net^ (easylistchina+easylist.txt: 40188) -.dxqd86uz345mg.cloudfront.net -# ||dxq6c0tx3v6mm.cloudfront.net^ (easylistchina+easylist.txt: 40187) -.dxq6c0tx3v6mm.cloudfront.net -# ||dx5qvhwg92mjd.cloudfront.net^ (easylistchina+easylist.txt: 40186) -.dx5qvhwg92mjd.cloudfront.net -# ||dx.com/affiliate/$third-party (easylistchina+easylist.txt: 40185) -.dx.com/affiliate/ -# ||dvt4pepo9om3r.cloudfront.net^ (easylistchina+easylist.txt: 40184) -.dvt4pepo9om3r.cloudfront.net -# ||dvf2u7vwmkr5w.cloudfront.net^ (easylistchina+easylist.txt: 40183) -.dvf2u7vwmkr5w.cloudfront.net -# ||dvdfab.com/images/fabnewbanner/$third-party (easylistchina+easylist.txt: 40182) -.dvdfab.com/images/fabnewbanner/ -# ||duct5ntjian71.cloudfront.net^ (easylistchina+easylist.txt: 40181) -.duct5ntjian71.cloudfront.net -# ||dttek.com/sponsors/ (easylistchina+easylist.txt: 40180) -.dttek.com/sponsors/ -# ||droidnetwork.net/img/vendors/ (easylistchina+easylist.txt: 40178) -.droidnetwork.net/img/vendors/ -# ||droidnetwork.net/img/dt-atv160.jpg (easylistchina+easylist.txt: 40177) -.droidnetwork.net/img/dt-atv160\.jpg -# ||dreamstime.com/refbanner- (easylistchina+easylist.txt: 40176) -.dreamstime.com/refbanner- -# ||dreamstime.com/img/badges/banner$third-party (easylistchina+easylist.txt: 40175) -.dreamstime.com/img/badges/banner -# ||dreamstime.com/banner/ (easylistchina+easylist.txt: 40174) -.dreamstime.com/banner/ -# ||dreamhost.com/rewards/$third-party (easylistchina+easylist.txt: 40173) -.dreamhost.com/rewards/ -# ||dreamboxcart.com/earning/$third-party (easylistchina+easylist.txt: 40172) -.dreamboxcart.com/earning/ -# ||dramafeverw2.appspot.com/widget/$third-party (easylistchina+easylist.txt: 40171) -.dramafeverw2.appspot.com/widget/ -# ||dramafever.com/widget/$third-party (easylistchina+easylist.txt: 40170) -.dramafever.com/widget/ -# ||dr8pk6ovub897.cloudfront.net^ (easylistchina+easylist.txt: 40169) -.dr8pk6ovub897.cloudfront.net -# ||dqhi3ea93ztgv.cloudfront.net^ (easylistchina+easylist.txt: 40168) -.dqhi3ea93ztgv.cloudfront.net -# ||dq2tgxnc2knif.cloudfront.net^ (easylistchina+easylist.txt: 40167) -.dq2tgxnc2knif.cloudfront.net -# ||dpsq2uzakdgqz.cloudfront.net^ (easylistchina+easylist.txt: 40166) -.dpsq2uzakdgqz.cloudfront.net -# ||dp51h10v6ggpa.cloudfront.net^ (easylistchina+easylist.txt: 40165) -.dp51h10v6ggpa.cloudfront.net -# ||downloadprovider.me/en/search/*?aff.id=*&iframe=$third-party (easylistchina+easylist.txt: 40164) -.downloadprovider.me/en/search/.*\?aff\.id=.*&iframe= -# ||downloadandsave-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 40163) -.downloadandsave-a.akamaihd.net -# ||download.bitdefender.com/resources/media/$third-party (easylistchina+easylist.txt: 40162) -.download.bitdefender.com/resources/media/ -# ||download-provider.org/?aff.id=$third-party (easylistchina+easylist.txt: 40161) -.download-provider.org/\?aff\.id= -# ||dotz123.com/run.php? (easylistchina+easylist.txt: 40160) -.dotz123.com/run\.php\? -# ||dot.tk/urlfwd/searchbar/bar.html (easylistchina+easylist.txt: 40159) -.dot.tk/urlfwd/searchbar/bar\.html -# ||dorabet.com/banner/ (easylistchina+easylist.txt: 40158) -.dorabet.com/banner/ -# ||domainnamesales.com/return_js.php? (easylistchina+easylist.txt: 40157) -.domainnamesales.com/return_js\.php\? -# ||domaingateway.com/js/redirect-min.js (easylistchina+easylist.txt: 40156) -.domaingateway.com/js/redirect-min\.js -# ||domainapps.com/assets/img/domain-apps.gif$third-party (easylistchina+easylist.txt: 40155) -.domainapps.com/assets/img/domain-apps\.gif -# ||dntrck.com/trax? (easylistchina+easylist.txt: 40154) -.dntrck.com/trax\? -# ||dm8srf206hien.cloudfront.net^ (easylistchina+easylist.txt: 40153) -.dm8srf206hien.cloudfront.net -# ||dm0acvguygm9h.cloudfront.net^ (easylistchina+easylist.txt: 40152) -.dm0acvguygm9h.cloudfront.net -# ||dlupv9uqtjlie.cloudfront.net^ (easylistchina+easylist.txt: 40151) -.dlupv9uqtjlie.cloudfront.net -# ||dl5v5atodo7gn.cloudfront.net^ (easylistchina+easylist.txt: 40150) -.dl5v5atodo7gn.cloudfront.net -# ||dl392qndlveq0.cloudfront.net^ (easylistchina+easylist.txt: 40149) -.dl392qndlveq0.cloudfront.net -# ||dkdwv3lcby5zi.cloudfront.net^ (easylistchina+easylist.txt: 40148) -.dkdwv3lcby5zi.cloudfront.net -# ||dkd69bwkvrht1.cloudfront.net^ (easylistchina+easylist.txt: 40147) -.dkd69bwkvrht1.cloudfront.net -# ||djlf5xdlz7m8m.cloudfront.net^ (easylistchina+easylist.txt: 40146) -.djlf5xdlz7m8m.cloudfront.net -# ||dizixdllzznrf.cloudfront.net^ (easylistchina+easylist.txt: 40145) -.dizixdllzznrf.cloudfront.net -# ||disy2s34euyqm.cloudfront.net^ (easylistchina+easylist.txt: 40144) -.disy2s34euyqm.cloudfront.net -# ||disqus.com/listPromoted? (easylistchina+easylist.txt: 40143) -.disqus.com/listPromoted\? -# ||display.digitalriver.com^ (easylistchina+easylist.txt: 40142) -.display.digitalriver.com -# ||directnicparking.com^$third-party (easylistchina+easylist.txt: 40141) -.directnicparking.com -# ||direct.quasir.info^$third-party (easylistchina+easylist.txt: 40140) -.direct.quasir.info -# ||digitalsatellite.tv/banners/ (easylistchina+easylist.txt: 40139) -.digitalsatellite.tv/banners/ -# ||digitalmediacommunications.com/belleville/employment/ (easylistchina+easylist.txt: 40138) -.digitalmediacommunications.com/belleville/employment/ -# ||dff7tx5c2qbxc.cloudfront.net^ (easylistchina+easylist.txt: 40136) -.dff7tx5c2qbxc.cloudfront.net -# ||dew9ckzjyt2gn.cloudfront.net^ (easylistchina+easylist.txt: 40135) -.dew9ckzjyt2gn.cloudfront.net -# ||devil-bet.com/banner/ (easylistchina+easylist.txt: 40134) -.devil-bet.com/banner/ -# ||developermedia.com/a.min.js (easylistchina+easylist.txt: 40133) -.developermedia.com/a\.min\.js -# ||dev-cms.com^*/promobanners/ (easylistchina+easylist.txt: 40132) -.dev-cms.com/.*/promobanners/ -# ||detroitmedia.com/jfry/ (easylistchina+easylist.txt: 40131) -.detroitmedia.com/jfry/ -# ||desperateseller.co.uk/affiliates/ (easylistchina+easylist.txt: 40130) -.desperateseller.co.uk/affiliates/ -# ||deskbabes.com/ref.php? (easylistchina+easylist.txt: 40129) -.deskbabes.com/ref\.php\? -# ||desi4m.com/desi4m.gif$third-party (easylistchina+easylist.txt: 40128) -.desi4m.com/desi4m\.gif -# ||depositfiles.com^*.php?ref= (easylistchina+easylist.txt: 40127) -.depositfiles.com/.*\.php\?ref= -# ||dennis.co.uk^*/siteskins/ (easylistchina+easylist.txt: 40126) -.dennis.co.uk/.*/siteskins/ -# ||delivery.importantmedia.org^$third-party (easylistchina+easylist.txt: 40125) -.delivery.importantmedia.org -# ||dealzone.co.za^$script,third-party (easylistchina+easylist.txt: 40124) -.dealzone.co.za -# ||dealtoday.com.mt/banners/ (easylistchina+easylist.txt: 40123) -.dealtoday.com.mt/banners/ -# ||dealswarm.com^$subdocument,third-party (easylistchina+easylist.txt: 40122) -.dealswarm.com -# ||deals4thecure.com/widgets/*?affiliateurl= (easylistchina+easylist.txt: 40121) -.deals4thecure.com/widgets/.*\?affiliateurl= -# ||deals.macupdate.com^$third-party (easylistchina+easylist.txt: 40120) -.deals.macupdate.com -# ||deals.buxr.net^$third-party (easylistchina+easylist.txt: 40119) -.deals.buxr.net -# ||dealplatform.com^*/widgets/$third-party (easylistchina+easylist.txt: 40118) -.dealplatform.com/.*/widgets/ -# ||dealextreme.com/affiliate_upload/$third-party (easylistchina+easylist.txt: 40117) -.dealextreme.com/affiliate_upload/ -# ||ddwht76d9jvfl.cloudfront.net^ (easylistchina+easylist.txt: 40116) -.ddwht76d9jvfl.cloudfront.net -# ||dbam.dashbida.com^ (easylistchina+easylist.txt: 40115) -.dbam.dashbida.com -# ||dawanda.com/widget/$third-party (easylistchina+easylist.txt: 40114) -.dawanda.com/widget/ -# ||daterly.com/*.widget.php$third-party (easylistchina+easylist.txt: 40113) -.daterly.com/.*\.widget\.php -# ||datakl.com/banner/ (easylistchina+easylist.txt: 40112) -.datakl.com/banner/ -# ||datafeedfile.com/widget/readywidget/ (easylistchina+easylist.txt: 40111) -.datafeedfile.com/widget/readywidget/ -# ||data.neuroxmedia.com^ (easylistchina+easylist.txt: 40110) -.data.neuroxmedia.com -# ||dasfdasfasdf.no-ip.info^ (easylistchina+easylist.txt: 40109) -.dasfdasfasdf.no-ip.info -# ||dart.clearchannel.com^ (easylistchina+easylist.txt: 40108) -.dart.clearchannel.com -# ||dapatwang.com/images/banner/ (easylistchina+easylist.txt: 40107) -.dapatwang.com/images/banner/ -# ||dal9hkyfi0m0n.cloudfront.net^ (easylistchina+easylist.txt: 40106) -.dal9hkyfi0m0n.cloudfront.net -# ||dailydealstwincities.com/widgets/$subdocument,third-party (easylistchina+easylist.txt: 40105) -.dailydealstwincities.com/widgets/ -# ||d8qy7md4cj3gz.cloudfront.net^ (easylistchina+easylist.txt: 40104) -.d8qy7md4cj3gz.cloudfront.net -# ||d6bdy3eto8fyu.cloudfront.net^ (easylistchina+easylist.txt: 40103) -.d6bdy3eto8fyu.cloudfront.net -# ||d5pvnbpawsaav.cloudfront.net^ (easylistchina+easylist.txt: 40102) -.d5pvnbpawsaav.cloudfront.net -# ||d3vc1nm9xbncz5.cloudfront.net^ (easylistchina+easylist.txt: 40101) -.d3vc1nm9xbncz5.cloudfront.net -# ||d3tdefw8pwfkbk.cloudfront.net^ (easylistchina+easylist.txt: 40100) -.d3tdefw8pwfkbk.cloudfront.net -# ||d3t9ip55bsuxrf.cloudfront.net^ (easylistchina+easylist.txt: 40099) -.d3t9ip55bsuxrf.cloudfront.net -# ||d3t2wca0ou3lqz.cloudfront.net^ (easylistchina+easylist.txt: 40098) -.d3t2wca0ou3lqz.cloudfront.net -# ||d3qszud4qdthr8.cloudfront.net^ (easylistchina+easylist.txt: 40097) -.d3qszud4qdthr8.cloudfront.net -# ||d3q2dpprdsteo.cloudfront.net^ (easylistchina+easylist.txt: 40096) -.d3q2dpprdsteo.cloudfront.net -# ||d3pkae9owd2lcf.cloudfront.net^ (easylistchina+easylist.txt: 40095) -.d3pkae9owd2lcf.cloudfront.net -# ||d3p9ql8flgemg7.cloudfront.net^ (easylistchina+easylist.txt: 40094) -.d3p9ql8flgemg7.cloudfront.net -# ||d3nvrqlo8rj1kw.cloudfront.net^ (easylistchina+easylist.txt: 40093) -.d3nvrqlo8rj1kw.cloudfront.net -# ||d3m41swuqq4sv5.cloudfront.net^ (easylistchina+easylist.txt: 40092) -.d3m41swuqq4sv5.cloudfront.net -# ||d3lzezfa753mqu.cloudfront.net^ (easylistchina+easylist.txt: 40091) -.d3lzezfa753mqu.cloudfront.net -# ||d3lvr7yuk4uaui.cloudfront.net^ (easylistchina+easylist.txt: 40090) -.d3lvr7yuk4uaui.cloudfront.net -# ||d3iwjrnl4m67rd.cloudfront.net^ (easylistchina+easylist.txt: 40089) -.d3iwjrnl4m67rd.cloudfront.net -# ||d3irruagotonpp.cloudfront.net^ (easylistchina+easylist.txt: 40088) -.d3irruagotonpp.cloudfront.net -# ||d3fzrm6pcer44x.cloudfront.net^ (easylistchina+easylist.txt: 40087) -.d3fzrm6pcer44x.cloudfront.net -# ||d3f9mcik999dte.cloudfront.net^ (easylistchina+easylist.txt: 40086) -.d3f9mcik999dte.cloudfront.net -# ||d3dphmosjk9rot.cloudfront.net^ (easylistchina+easylist.txt: 40085) -.d3dphmosjk9rot.cloudfront.net -# ||d3bvcf24wln03d.cloudfront.net^ (easylistchina+easylist.txt: 40084) -.d3bvcf24wln03d.cloudfront.net -# ||d39xqloz8t5a6x.cloudfront.net^ (easylistchina+easylist.txt: 40083) -.d39xqloz8t5a6x.cloudfront.net -# ||d38r21vtgndgb1.cloudfront.net^ (easylistchina+easylist.txt: 40082) -.d38r21vtgndgb1.cloudfront.net -# ||d38pxm3dmrdu6d.cloudfront.net^ (easylistchina+easylist.txt: 40081) -.d38pxm3dmrdu6d.cloudfront.net -# ||d37kzqe5knnh6t.cloudfront.net^ (easylistchina+easylist.txt: 40080) -.d37kzqe5knnh6t.cloudfront.net -# ||d34rdvn2ky3gnm.cloudfront.net^ (easylistchina+easylist.txt: 40079) -.d34rdvn2ky3gnm.cloudfront.net -# ||d34obr29voew8l.cloudfront.net^ (easylistchina+easylist.txt: 40078) -.d34obr29voew8l.cloudfront.net -# ||d33otidwg56k90.cloudfront.net^ (easylistchina+easylist.txt: 40077) -.d33otidwg56k90.cloudfront.net -# ||d33f10u0pfpplc.cloudfront.net^ (easylistchina+easylist.txt: 40076) -.d33f10u0pfpplc.cloudfront.net -# ||d32pxqbknuxsuy.cloudfront.net^ (easylistchina+easylist.txt: 40075) -.d32pxqbknuxsuy.cloudfront.net -# ||d31807xkria1x4.cloudfront.net^ (easylistchina+easylist.txt: 40074) -.d31807xkria1x4.cloudfront.net -# ||d2z1smm3i01tnr.cloudfront.net^ (easylistchina+easylist.txt: 40073) -.d2z1smm3i01tnr.cloudfront.net -# ||d2yhukq7vldf1u.cloudfront.net^ (easylistchina+easylist.txt: 40072) -.d2yhukq7vldf1u.cloudfront.net -# ||d2vt6q0n0iy66w.cloudfront.net^ (easylistchina+easylist.txt: 40071) -.d2vt6q0n0iy66w.cloudfront.net -# ||d2v9ajh2eysdau.cloudfront.net^ (easylistchina+easylist.txt: 40070) -.d2v9ajh2eysdau.cloudfront.net -# ||d2v4glj2m8yzg5.cloudfront.net^ (easylistchina+easylist.txt: 40069) -.d2v4glj2m8yzg5.cloudfront.net -# ||d2ue9k1rhsumed.cloudfront.net^ (easylistchina+easylist.txt: 40068) -.d2ue9k1rhsumed.cloudfront.net -# ||d2ubicnllnnszy.cloudfront.net^ (easylistchina+easylist.txt: 40067) -.d2ubicnllnnszy.cloudfront.net -# ||d2tnimpzlb191i.cloudfront.net^ (easylistchina+easylist.txt: 40066) -.d2tnimpzlb191i.cloudfront.net -# ||d2tgev5wuprbqq.cloudfront.net^ (easylistchina+easylist.txt: 40065) -.d2tgev5wuprbqq.cloudfront.net -# ||d2s64zaa9ua7uv.cloudfront.net^ (easylistchina+easylist.txt: 40064) -.d2s64zaa9ua7uv.cloudfront.net -# ||d2r359adnh3sfn.cloudfront.net^ (easylistchina+easylist.txt: 40063) -.d2r359adnh3sfn.cloudfront.net -# ||d2plxos94peuwp.cloudfront.net^ (easylistchina+easylist.txt: 40062) -.d2plxos94peuwp.cloudfront.net -# ||d2pgy8h4i30on1.cloudfront.net^ (easylistchina+easylist.txt: 40061) -.d2pgy8h4i30on1.cloudfront.net -# ||d2omcicc3a4zlg.cloudfront.net^ (easylistchina+easylist.txt: 40060) -.d2omcicc3a4zlg.cloudfront.net -# ||d2oallm7wrqvmi.cloudfront.net^ (easylistchina+easylist.txt: 40059) -.d2oallm7wrqvmi.cloudfront.net -# ||d2o307dm5mqftz.cloudfront.net^ (easylistchina+easylist.txt: 40058) -.d2o307dm5mqftz.cloudfront.net -# ||d2nlytvx51ywh9.cloudfront.net^ (easylistchina+easylist.txt: 40057) -.d2nlytvx51ywh9.cloudfront.net -# ||d2mq0uzafv8ytp.cloudfront.net^ (easylistchina+easylist.txt: 40056) -.d2mq0uzafv8ytp.cloudfront.net -# ||d2mic0r0bo3i6z.cloudfront.net^ (easylistchina+easylist.txt: 40055) -.d2mic0r0bo3i6z.cloudfront.net -# ||d2ipklohrie3lo.cloudfront.net^ (easylistchina+easylist.txt: 40054) -.d2ipklohrie3lo.cloudfront.net -# ||d2hap2bsh1k9lw.cloudfront.net^ (easylistchina+easylist.txt: 40053) -.d2hap2bsh1k9lw.cloudfront.net -# ||d2gz6iop9uxobu.cloudfront.net^ (easylistchina+easylist.txt: 40052) -.d2gz6iop9uxobu.cloudfront.net -# ||d2gtlljtkeiyzd.cloudfront.net^ (easylistchina+easylist.txt: 40051) -.d2gtlljtkeiyzd.cloudfront.net -# ||d2gpgaupalra1d.cloudfront.net^ (easylistchina+easylist.txt: 40050) -.d2gpgaupalra1d.cloudfront.net -# ||d2dxgm96wvaa5j.cloudfront.net^ (easylistchina+easylist.txt: 40049) -.d2dxgm96wvaa5j.cloudfront.net -# ||d2d2lbvq8xirbs.cloudfront.net^ (easylistchina+easylist.txt: 40048) -.d2d2lbvq8xirbs.cloudfront.net -# ||d2cxkkxhecdzsq.cloudfront.net^ (easylistchina+easylist.txt: 40047) -.d2cxkkxhecdzsq.cloudfront.net -# ||d2bgg7rjywcwsy.cloudfront.net^ (easylistchina+easylist.txt: 40046) -.d2bgg7rjywcwsy.cloudfront.net -# ||d2b65ihpmocv7w.cloudfront.net^ (easylistchina+easylist.txt: 40045) -.d2b65ihpmocv7w.cloudfront.net -# ||d2b2x1ywompm1b.cloudfront.net^ (easylistchina+easylist.txt: 40044) -.d2b2x1ywompm1b.cloudfront.net -# ||d2anfhdgjxf8s1.cloudfront.net^ (easylistchina+easylist.txt: 40043) -.d2anfhdgjxf8s1.cloudfront.net -# ||d29r6igjpnoykg.cloudfront.net^ (easylistchina+easylist.txt: 40041) -.d29r6igjpnoykg.cloudfront.net -# ||d287x05ve9a63s.cloudfront.net^ (easylistchina+easylist.txt: 40040) -.d287x05ve9a63s.cloudfront.net -# ||d27jt7xr4fq3e8.cloudfront.net^ (easylistchina+easylist.txt: 40039) -.d27jt7xr4fq3e8.cloudfront.net -# ||d26wy0pxd3qqpv.cloudfront.net^ (easylistchina+easylist.txt: 40038) -.d26wy0pxd3qqpv.cloudfront.net -# ||d26j9bp9bq4uhd.cloudfront.net^ (easylistchina+easylist.txt: 40037) -.d26j9bp9bq4uhd.cloudfront.net -# ||d26dzd2k67we08.cloudfront.net^ (easylistchina+easylist.txt: 40036) -.d26dzd2k67we08.cloudfront.net -# ||d25xkbr68qqtcn.cloudfront.net^ (easylistchina+easylist.txt: 40035) -.d25xkbr68qqtcn.cloudfront.net -# ||d25ruj6ht8bs1.cloudfront.net^ (easylistchina+easylist.txt: 40034) -.d25ruj6ht8bs1.cloudfront.net -# ||d23nyyb6dc29z6.cloudfront.net^ (easylistchina+easylist.txt: 40033) -.d23nyyb6dc29z6.cloudfront.net -# ||d23guct4biwna6.cloudfront.net^ (easylistchina+easylist.txt: 40032) -.d23guct4biwna6.cloudfront.net -# ||d1zgderxoe1a.cloudfront.net^ (easylistchina+easylist.txt: 40031) -.d1zgderxoe1a.cloudfront.net -# ||d1wa9546y9kg0n.cloudfront.net/index.js (easylistchina+easylist.txt: 40030) -.d1wa9546y9kg0n.cloudfront.net/index\.js -# ||d1vbm0eveofcle.cloudfront.net^ (easylistchina+easylist.txt: 40029) -.d1vbm0eveofcle.cloudfront.net -# ||d1spb7fplenrp4.cloudfront.net^ (easylistchina+easylist.txt: 40028) -.d1spb7fplenrp4.cloudfront.net -# ||d1pdpbxj733bb1.cloudfront.net^ (easylistchina+easylist.txt: 40027) -.d1pdpbxj733bb1.cloudfront.net -# ||d1pcttwib15k25.cloudfront.net^ (easylistchina+easylist.txt: 40026) -.d1pcttwib15k25.cloudfront.net -# ||d1noellhv8fksc.cloudfront.net^ (easylistchina+easylist.txt: 40025) -.d1noellhv8fksc.cloudfront.net -# ||d1k74lgicilrr3.cloudfront.net^ (easylistchina+easylist.txt: 40024) -.d1k74lgicilrr3.cloudfront.net -# ||d1gojtoka5qi10.cloudfront.net^ (easylistchina+easylist.txt: 40023) -.d1gojtoka5qi10.cloudfront.net -# ||d1fo96xm8fci0r.cloudfront.net^ (easylistchina+easylist.txt: 40022) -.d1fo96xm8fci0r.cloudfront.net -# ||d1ey3fksimezm4.cloudfront.net^ (easylistchina+easylist.txt: 40021) -.d1ey3fksimezm4.cloudfront.net -# ||d1ep3cn6qx0l3z.cloudfront.net^ (easylistchina+easylist.txt: 40020) -.d1ep3cn6qx0l3z.cloudfront.net -# ||d1d95giojjkirt.cloudfront.net^ (easylistchina+easylist.txt: 40019) -.d1d95giojjkirt.cloudfront.net -# ||d1cl1sqtf3o420.cloudfront.net^ (easylistchina+easylist.txt: 40018) -.d1cl1sqtf3o420.cloudfront.net -# ||d1ade4ciw4bqyc.cloudfront.net^ (easylistchina+easylist.txt: 40017) -.d1ade4ciw4bqyc.cloudfront.net -# ||d19972r8wdpby8.cloudfront.net^ (easylistchina+easylist.txt: 40016) -.d19972r8wdpby8.cloudfront.net -# ||d17f2fxw547952.cloudfront.net^ (easylistchina+easylist.txt: 40015) -.d17f2fxw547952.cloudfront.net -# ||d15gt9gwxw5wu0.cloudfront.net^ (easylistchina+easylist.txt: 40014) -.d15gt9gwxw5wu0.cloudfront.net -# ||d15565yqt7pv7r.cloudfront.net^ (easylistchina+easylist.txt: 40013) -.d15565yqt7pv7r.cloudfront.net -# ||d140sbu1b1m3h0.cloudfront.net^ (easylistchina+easylist.txt: 40012) -.d140sbu1b1m3h0.cloudfront.net -# ||d13czkep7ax7nj.cloudfront.net^ (easylistchina+easylist.txt: 40011) -.d13czkep7ax7nj.cloudfront.net -# ||d-l-t.com^$subdocument,third-party (easylistchina+easylist.txt: 40010) -.d-l-t.com -# ||cuteonly.com/banners.php$third-party (easylistchina+easylist.txt: 40009) -.cuteonly.com/banners\.php -# ||customer.heartinternet.co.uk^$third-party (easylistchina+easylist.txt: 40008) -.customer.heartinternet.co.uk -# ||customcodebydan.com/images/banner.gif (easylistchina+easylist.txt: 40007) -.customcodebydan.com/images/banner\.gif -# ||cursecdn.com/shared-assets/current/anchor.js?id=$third-party (easylistchina+easylist.txt: 40006) -.cursecdn.com/shared-assets/current/anchor\.js\?id= -# ||cursecdn.com/banner/ (easylistchina+easylist.txt: 40005) -.cursecdn.com/banner/ -# ||cts.tradepub.com/cts4/?ptnr=*&tm=$third-party (easylistchina+easylist.txt: 40004) -.cts.tradepub.com/cts4/\?ptnr=.*&tm= -# ||cstv.com^*/sponsors/ (easylistchina+easylist.txt: 40003) -.cstv.com/.*/sponsors/ -# ||crunchyroll.com/awidget/$third-party (easylistchina+easylist.txt: 40002) -.crunchyroll.com/awidget/ -# ||cruisesalefinder.co.nz/affiliates.html$third-party (easylistchina+easylist.txt: 40001) -.cruisesalefinder.co.nz/affiliates\.html -# ||crowdsavings.com/r/banner/ (easylistchina+easylist.txt: 40000) -.crowdsavings.com/r/banner/ -# ||creatives.summitconnect.co.uk^ (easylistchina+easylist.txt: 39999) -.creatives.summitconnect.co.uk -# ||creatives.inmotionhosting.com^ (easylistchina+easylist.txt: 39998) -.creatives.inmotionhosting.com -# ||cpm.amateurcommunity.de^ (easylistchina+easylist.txt: 39997) -.cpm.amateurcommunity.de -# ||cplayer.blinkx.com^$third-party (easylistchina+easylist.txt: 39996) -.cplayer.blinkx.com -# ||coxnewsweb.com^*/ads/ (easylistchina+easylist.txt: 39995) -.coxnewsweb.com/.*/ads/ -# ||couptopia.com/affiliate/$third-party (easylistchina+easylist.txt: 39994) -.couptopia.com/affiliate/ -# ||couponcp-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 39993) -.couponcp-a.akamaihd.net -# ||conversionplanet.com/published/feeds/$third-party (easylistchina+easylist.txt: 39992) -.conversionplanet.com/published/feeds/ -# ||continent8.com^*/bannerflow/ (easylistchina+easylist.txt: 39991) -.continent8.com/.*/bannerflow/ -# ||contentcastsyndication.com^*&banner (easylistchina+easylist.txt: 39990) -.contentcastsyndication.com/.*&banner -# ||content.secondspace.com^$~image,third-party (easylistchina+easylist.txt: 39989) -.content.secondspace.com -# ||content.livesportmedia.eu^ (easylistchina+easylist.txt: 39988) -.content.livesportmedia.eu -# ||consolpub.com/weatherwindow/ (easylistchina+easylist.txt: 39987) -.consolpub.com/weatherwindow/ -# ||connect.summit.co.uk^ (easylistchina+easylist.txt: 39985) -.connect.summit.co.uk -# ||conduit.com//banners/$third-party (easylistchina+easylist.txt: 39984) -# ||comx-computers.co.za/banners/$third-party (easylistchina+easylist.txt: 39983) -.comx-computers.co.za/banners/ -# ||complexmedianetwork.com/js/cmnUNT.js (easylistchina+easylist.txt: 39982) -.complexmedianetwork.com/js/cmnUNT\.js -# ||colorlabsproject.com^*/banner_ (easylistchina+easylist.txt: 39980) -.colorlabsproject.com/.*/banner_ -# ||colmwynne.com^$image,third-party (easylistchina+easylist.txt: 39979) -.colmwynne.com -# ||code.popup2m.com^$third-party (easylistchina+easylist.txt: 39978) -.code.popup2m.com -# ||cnnewmedia.co.uk/locker/ (easylistchina+easylist.txt: 39977) -.cnnewmedia.co.uk/locker/ -# ||cnhionline.com^*/rtj_ad.jpg (easylistchina+easylist.txt: 39976) -.cnhionline.com/.*/rtj_ad\.jpg -# ||cngroup.co.uk/service/creative/ (easylistchina+easylist.txt: 39975) -.cngroup.co.uk/service/creative/ -# ||cloudzer.net^*/banner/$third-party (easylistchina+easylist.txt: 39974) -.cloudzer.net/.*/banner/ -# ||cloudzer.net/ref/ (easylistchina+easylist.txt: 39973) -.cloudzer.net/ref/ -# ||cloudfront.net/tie.js (easylistchina+easylist.txt: 39969) -.cloudfront.net/tie\.js -# ||cloudfront.net/st.js (easylistchina+easylist.txt: 39968) -.cloudfront.net/st\.js -# ||cloudfront.net/scripts/js3caf.js (easylistchina+easylist.txt: 39967) -.cloudfront.net/scripts/js3caf\.js -# ||cloudfront.net/nimblebuy/ (easylistchina+easylist.txt: 39966) -.cloudfront.net/nimblebuy/ -# ||cloudfront.net/dfpd.js (easylistchina+easylist.txt: 39964) -.cloudfront.net/dfpd\.js -# ||clipdealer.com/?action=widget&*&partner= (easylistchina+easylist.txt: 39963) -.clipdealer.com/\?action=widget&.*&partner= -# ||clicktripz.com/scripts/js/ct.js (easylistchina+easylist.txt: 39962) -.clicktripz.com/scripts/js/ct\.js -# ||clicksure.com/img/resources/banner_ (easylistchina+easylist.txt: 39961) -.clicksure.com/img/resources/banner_ -# ||clickstrip.6wav.es^ (easylistchina+easylist.txt: 39960) -.clickstrip.6wav.es -# ||click.eyk.net^ (easylistchina+easylist.txt: 39959) -.click.eyk.net -# ||clarity.abacast.com^ (easylistchina+easylist.txt: 39958) -.clarity.abacast.com -# ||cjmooter.xcache.kinxcdn.com^ (easylistchina+easylist.txt: 39957) -.cjmooter.xcache.kinxcdn.com -# ||citygridmedia.com/ads/ (easylistchina+easylist.txt: 39956) -.citygridmedia.com/ads/ -# ||circularhub.com^$third-party (easylistchina+easylist.txt: 39955) -.circularhub.com -# ||cimg.in/images/banners/ (easylistchina+easylist.txt: 39954) -.cimg.in/images/banners/ -# ||chriscasconi.com/nostalgia_ad. (easylistchina+easylist.txt: 39953) -.chriscasconi.com/nostalgia_ad\. -# ||choices.truste.com^$third-party (easylistchina+easylist.txt: 39952) -.choices.truste.com -# ||charlestondealstoday.com/aux/ux/_component/ss_dealrail/$subdocument,third-party (easylistchina+easylist.txt: 39951) -.charlestondealstoday.com/aux/ux/_component/ss_dealrail/ -# ||challies.com^*/wtsbooks5.png$third-party (easylistchina+easylist.txt: 39950) -.challies.com/.*/wtsbooks5\.png -# ||chacsystems.com/gk_add.html$third-party (easylistchina+easylist.txt: 39949) -.chacsystems.com/gk_add\.html -# ||cgmlab.com/tools/geotarget/custombanner.js (easylistchina+easylist.txt: 39948) -.cgmlab.com/tools/geotarget/custombanner\.js -# ||cfcdn.com/showcase_sample/search_widget/ (easylistchina+easylist.txt: 39947) -.cfcdn.com/showcase_sample/search_widget/ -# ||cex.io/informer/$third-party (easylistchina+easylist.txt: 39946) -.cex.io/informer/ -# ||cex.io/img/b/ (easylistchina+easylist.txt: 39945) -.cex.io/img/b/ -# ||cerebral.typn.com^ (easylistchina+easylist.txt: 39944) -.cerebral.typn.com -# ||centralscotlandjoinery.co.uk/images/csj-125.gif$third-party (easylistchina+easylist.txt: 39943) -.centralscotlandjoinery.co.uk/images/csj-125\.gif -# ||centralmediaserver.com^*_side_bars.jpg (easylistchina+easylist.txt: 39942) -.centralmediaserver.com/.*_side_bars\.jpg -# ||cdnprk.com/scripts/js3caf.js (easylistchina+easylist.txt: 39941) -.cdnprk.com/scripts/js3caf\.js -# ||cdnprk.com/scripts/js3.js (easylistchina+easylist.txt: 39940) -.cdnprk.com/scripts/js3\.js -# ||cdnpark.com/scripts/js3.js (easylistchina+easylist.txt: 39939) -.cdnpark.com/scripts/js3\.js -# ||cdn.sweeva.com/images/$third-party (easylistchina+easylist.txt: 39937) -.cdn.sweeva.com/images/ -# ||cdn.pubexchange.com/modules/display/$script (easylistchina+easylist.txt: 39936) -.cdn.pubexchange.com/modules/display/ -# ||cdn.offcloud.com^$third-party (easylistchina+easylist.txt: 39935) -.cdn.offcloud.com -# ||cdn.ndparking.com/js/init.min.js (easylistchina+easylist.txt: 39934) -.cdn.ndparking.com/js/init\.min\.js -# ||cdn.cdncomputer.com/js/main.js (easylistchina+easylist.txt: 39933) -.cdn.cdncomputer.com/js/main\.js -# ||cdn.assets.gorillanation.com^$third-party (easylistchina+easylist.txt: 39932) -.cdn.assets.gorillanation.com -# ||cccam.co/banner_big.gif (easylistchina+easylist.txt: 39931) -.cccam.co/banner_big\.gif -# ||cbpirate.com/getimg.php? (easylistchina+easylist.txt: 39930) -.cbpirate.com/getimg\.php\? -# ||caw.criteo.com^$third-party (easylistchina+easylist.txt: 39929) -.caw.criteo.com -# ||caw.*.criteo.com^$third-party (easylistchina+easylist.txt: 39928) -.caw.*./.*\.criteo\.com[^\w%.-] -.caw.*.criteo.com -# ||catholicweb.com^*/banners/ (easylistchina+easylist.txt: 39927) -.catholicweb.com/.*/banners/ -# ||casti.tv/adds/ (easylistchina+easylist.txt: 39926) -.casti.tv/adds/ -# ||castasap.com/publi2.html (easylistchina+easylist.txt: 39925) -.castasap.com/publi2\.html -# ||cashmyvideo.com/images/cashmyvideo_banner.gif (easylistchina+easylist.txt: 39923) -.cashmyvideo.com/images/cashmyvideo_banner\.gif -# ||cashmakingpowersites.com^*/banners/ (easylistchina+easylist.txt: 39922) -.cashmakingpowersites.com/.*/banners/ -# ||cash.neweramediaworks.com^ (easylistchina+easylist.txt: 39921) -.cash.neweramediaworks.com -# ||cas.criteo.com^$third-party (easylistchina+easylist.txt: 39920) -.cas.criteo.com -# ||cas.clickability.com^ (easylistchina+easylist.txt: 39919) -.cas.clickability.com -# ||cas.*.criteo.com^$third-party (easylistchina+easylist.txt: 39918) -.cas.*./.*\.criteo\.com[^\w%.-] -.cas.*.criteo.com -# ||cars.fyidriving.com^$subdocument,third-party (easylistchina+easylist.txt: 39917) -.cars.fyidriving.com -# ||carfax.com/img_myap/$third-party (easylistchina+easylist.txt: 39916) -.carfax.com/img_myap/ -# ||careerjunction.co.za^*/widget?$third-party (easylistchina+easylist.txt: 39915) -.careerjunction.co.za/.*/widget\? -# ||careerjunction.co.za/widgets/$third-party (easylistchina+easylist.txt: 39914) -.careerjunction.co.za/widgets/ -# ||carbiz.in/affiliates-and-partners/ (easylistchina+easylist.txt: 39913) -.carbiz.in/affiliates-and-partners/ -# ||canonresourcecenter.com^$third-party (easylistchina+easylist.txt: 39912) -.canonresourcecenter.com -# ||cancomdigital.com/resourcecenter/$third-party (easylistchina+easylist.txt: 39911) -.cancomdigital.com/resourcecenter/ -# ||camelmedia.net^*/banners/ (easylistchina+easylist.txt: 39910) -.camelmedia.net/.*/banners/ -# ||cal-one.net/ellington/search_form.php? (easylistchina+easylist.txt: 39909) -.cal-one.net/ellington/search_form\.php\? -# ||cal-one.net/ellington/deals_widget.php? (easylistchina+easylist.txt: 39908) -.cal-one.net/ellington/deals_widget\.php\? -# ||cactusvpn.com/images/affiliates/ (easylistchina+easylist.txt: 39907) -.cactusvpn.com/images/affiliates/ -# ||cachefly.net/cricad.html (easylistchina+easylist.txt: 39906) -.cachefly.net/cricad\.html -# ||c.netu.tv^ (easylistchina+easylist.txt: 39905) -.c.netu.tv -# ||byzoo.org/script/tu*.js (easylistchina+easylist.txt: 39904) -.byzoo.org/script/tu.*\.js -# ||buzznet.com^*/showpping-banner-$third-party (easylistchina+easylist.txt: 39903) -.buzznet.com/.*/showpping-banner- -# ||buzina.xyz^$script (easylistchina+easylist.txt: 39902) -.buzina.xyz -# ||buyt.in/api?widgets=$script,third-party (easylistchina+easylist.txt: 39901) -.buyt.in/api\?widgets= -# ||buyhatke.com/widgetBack/ (easylistchina+easylist.txt: 39900) -.buyhatke.com/widgetBack/ -# ||buy.com^*/affiliate/ (easylistchina+easylist.txt: 39899) -.buy.com/.*/affiliate/ -# ||businessnewswatch.ca/images/nnwbanner/ (easylistchina+easylist.txt: 39898) -.businessnewswatch.ca/images/nnwbanner/ -# ||burstnet.akadns.net^$image (easylistchina+easylist.txt: 39897) -.burstnet.akadns.net -# ||burst.net/aff/ (easylistchina+easylist.txt: 39896) -.burst.net/aff/ -# ||bullguard.com^*/banners/ (easylistchina+easylist.txt: 39895) -.bullguard.com/.*/banners/ -# ||bubbles-uk.com/banner/$third-party (easylistchina+easylist.txt: 39894) -.bubbles-uk.com/banner/ -# ||btrd.net/assets/interstitial$script (easylistchina+easylist.txt: 39893) -.btrd.net/assets/interstitial -# ||btr.domywife.com^ (easylistchina+easylist.txt: 39892) -.btr.domywife.com -# ||btguard.com/images/$third-party (easylistchina+easylist.txt: 39891) -.btguard.com/images/ -# ||bruteforcesocialmedia.com/affiliates/ (easylistchina+easylist.txt: 39890) -.bruteforcesocialmedia.com/affiliates/ -# ||bruteforceseo.com/affiliates/ (easylistchina+easylist.txt: 39889) -.bruteforceseo.com/affiliates/ -# ||broadbandgenie.co.uk/widget?$third-party (easylistchina+easylist.txt: 39888) -.broadbandgenie.co.uk/widget\? -# ||brettterpstra.com/wp-content/uploads/$third-party (easylistchina+easylist.txt: 39887) -.brettterpstra.com/wp-content/uploads/ -# ||break.com^*/partnerpublish/ (easylistchina+easylist.txt: 39886) -.break.com/.*/partnerpublish/ -# ||break.com/break/html/$subdocument (easylistchina+easylist.txt: 39885) -.break.com/break/html/ -# ||bravenet.com/cserv.php (easylistchina+easylist.txt: 39884) -.bravenet.com/cserv\.php -# ||bplaced.net/pub/ (easylistchina+easylist.txt: 39883) -.bplaced.net/pub/ -# ||bpath.com/affiliates/ (easylistchina+easylist.txt: 39882) -.bpath.com/affiliates/ -# ||box.anchorfree.net^ (easylistchina+easylist.txt: 39881) -.box.anchorfree.net -# ||bosh.tv/hdplugin. (easylistchina+easylist.txt: 39880) -.bosh.tv/hdplugin\. -# ||borrowlenses.com/affiliate/ (easylistchina+easylist.txt: 39879) -.borrowlenses.com/affiliate/ -# ||bordernode.com/images/$third-party (easylistchina+easylist.txt: 39878) -.bordernode.com/images/ -# ||bookingdragon.com^$subdocument,third-party (easylistchina+easylist.txt: 39877) -.bookingdragon.com -# ||booking.com^*;tmpl=banner_ (easylistchina+easylist.txt: 39876) -.booking.com/.*;tmpl=banner_ -# ||bollyrulez.net/media/adz/ (easylistchina+easylist.txt: 39874) -.bollyrulez.net/media/adz/ -# ||boago.com^*_Takeover_ (easylistchina+easylist.txt: 39873) -.boago.com/.*_Takeover_ -# ||bo-videos.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 39872) -.bo-videos.s3.amazonaws.com -# ||bluhostedbanners.blucigs.com^ (easylistchina+easylist.txt: 39871) -.bluhostedbanners.blucigs.com -# ||bluesattv.net/bluesattvnet.gif (easylistchina+easylist.txt: 39870) -.bluesattv.net/bluesattvnet\.gif -# ||bluesattv.net/bluesat.swf (easylistchina+easylist.txt: 39869) -.bluesattv.net/bluesat\.swf -# ||bluepromocode.com/images/widgets/$third-party (easylistchina+easylist.txt: 39868) -.bluepromocode.com/images/widgets/ -# ||bloodstock.uk.com/affiliates/ (easylistchina+easylist.txt: 39867) -.bloodstock.uk.com/affiliates/ -# ||blocks.ginotrack.com^$third-party (easylistchina+easylist.txt: 39866) -.blocks.ginotrack.com -# ||blissful-sin.com/affiliates/ (easylistchina+easylist.txt: 39865) -.blissful-sin.com/affiliates/ -# ||bliss-systems-api.co.uk^$third-party (easylistchina+easylist.txt: 39864) -.bliss-systems-api.co.uk -# ||blinkx.com/f2/overlays/ (easylistchina+easylist.txt: 39863) -.blinkx.com/f2/overlays/ -# ||blinkx.com/?i=*&adc_pub_id=$script,third-party (easylistchina+easylist.txt: 39862) -.blinkx.com/\?i=.*&adc_pub_id= -# ||blindferret.com/images/*_skin_ (easylistchina+easylist.txt: 39861) -.blindferret.com/images/.*_skin_ -# ||blamads-assets.s3.amazonaws.com^ (easylistchina+easylist.txt: 39860) -.blamads-assets.s3.amazonaws.com -# ||bl.wavecdn.de^ (easylistchina+easylist.txt: 39859) -.bl.wavecdn.de -# ||bittorrent.am/serws.php?$third-party (easylistchina+easylist.txt: 39858) -.bittorrent.am/serws\.php\? -# ||bitshare.com^*/banner/ (easylistchina+easylist.txt: 39857) -.bitshare.com/.*/banner/ -# ||bitcoinwebhosting.net/banners/$third-party (easylistchina+easylist.txt: 39856) -.bitcoinwebhosting.net/banners/ -# ||bitcoindice.com/img/bitcoindice_$third-party (easylistchina+easylist.txt: 39855) -.bitcoindice.com/img/bitcoindice_ -# ||binopt.net/banners/ (easylistchina+easylist.txt: 39853) -.binopt.net/banners/ -# ||binbox.io/public/img/promo/$third-party (easylistchina+easylist.txt: 39852) -.binbox.io/public/img/promo/ -# ||bijk.com^*/banners/ (easylistchina+easylist.txt: 39851) -.bijk.com/.*/banners/ -# ||bigrock.in/affiliate/ (easylistchina+easylist.txt: 39850) -.bigrock.in/affiliate/ -# ||bigpond.com/specials/$subdocument,third-party (easylistchina+easylist.txt: 39849) -.bigpond.com/specials/ -# ||bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview.jsp?$third-party (easylistchina+easylist.txt: 39847) -.bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview\.jsp\? -# ||bidorbuy.co.za/jsp/system/referral.jsp? (easylistchina+easylist.txt: 39846) -.bidorbuy.co.za/jsp/system/referral\.jsp\? -# ||bidgo.ca^$subdocument,third-party (easylistchina+easylist.txt: 39845) -.bidgo.ca -# ||bharatmatrimony.com/matrimoney/matrimoneybanners/$third-party (easylistchina+easylist.txt: 39844) -.bharatmatrimony.com/matrimoney/matrimoneybanners/ -# ||betwaypartners.com/affiliate_media/$third-party (easylistchina+easylist.txt: 39843) -.betwaypartners.com/affiliate_media/ -# ||betting.betfair.com^$third-party (easylistchina+easylist.txt: 39842) -.betting.betfair.com -# ||betterbills.com.au/widgets/ (easylistchina+easylist.txt: 39841) -.betterbills.com.au/widgets/ -# ||beta.down2crazy.com^$third-party (easylistchina+easylist.txt: 39840) -.beta.down2crazy.com -# ||bet-at-home.com/oddbanner.aspx? (easylistchina+easylist.txt: 39839) -.bet-at-home.com/oddbanner\.aspx\? -# ||bestofmedia.com/ws/communicationSpot.php? (easylistchina+easylist.txt: 39838) -.bestofmedia.com/ws/communicationSpot\.php\? -# ||besthosting.ua/banner/ (easylistchina+easylist.txt: 39837) -.besthosting.ua/banner/ -# ||berush.com/images/whorush_120x120_ (easylistchina+easylist.txt: 39836) -.berush.com/images/whorush_120x120_ -# ||berush.com/images/semrush_banner_ (easylistchina+easylist.txt: 39835) -.berush.com/images/semrush_banner_ -# ||berush.com/images/*_semrush_$third-party (easylistchina+easylist.txt: 39834) -.berush.com/images/.*_semrush_ -# ||bergen.com^*/sponsoredby- (easylistchina+easylist.txt: 39833) -.bergen.com/.*/sponsoredby- -# ||bemyapp.com/trk/$third-party (easylistchina+easylist.txt: 39832) -.bemyapp.com/trk/ -# ||bee4.biz/banners/ (easylistchina+easylist.txt: 39831) -.bee4.biz/banners/ -# ||beachcamera.com/assets/banners/ (easylistchina+easylist.txt: 39830) -.beachcamera.com/assets/banners/ -# ||bc.vc/js/link-converter.js$third-party (easylistchina+easylist.txt: 39829) -.bc.vc/js/link-converter\.js -# ||bc.coupons.com^$third-party (easylistchina+easylist.txt: 39828) -.bc.coupons.com -# ||bbcchannels.com/workspace/uploads/ (easylistchina+easylist.txt: 39827) -.bbcchannels.com/workspace/uploads/ -# ||banners.webmasterplan.com^$third-party (easylistchina+easylist.txt: 39826) -.banners.webmasterplan.com -# ||banners.videosz.com^$third-party (easylistchina+easylist.txt: 39825) -.banners.videosz.com -# ||banners.smarttweak.com^$third-party (easylistchina+easylist.txt: 39824) -.banners.smarttweak.com -# ||banners.moreniche.com^$third-party (easylistchina+easylist.txt: 39823) -.banners.moreniche.com -# ||banners.ixitools.com^$third-party (easylistchina+easylist.txt: 39822) -.banners.ixitools.com -# ||banners.cfspm.com.au^$third-party (easylistchina+easylist.txt: 39821) -.banners.cfspm.com.au -# ||bannermaken.nl/banners/$third-party (easylistchina+easylist.txt: 39820) -.bannermaken.nl/banners/ -# ||banner2.casino.com^$third-party (easylistchina+easylist.txt: 39819) -.banner2.casino.com -# ||banner.titanpoker.com^$third-party (easylistchina+easylist.txt: 39818) -.banner.titanpoker.com -# ||banner.titancasino.com^ (easylistchina+easylist.txt: 39817) -.banner.titancasino.com -# ||banner.telefragged.com^ (easylistchina+easylist.txt: 39816) -.banner.telefragged.com -# ||banner.europacasino.com^ (easylistchina+easylist.txt: 39815) -.banner.europacasino.com -# ||banner.3ddownloads.com^ (easylistchina+easylist.txt: 39814) -.banner.3ddownloads.com -# ||banner.101xp.com^ (easylistchina+easylist.txt: 39813) -.banner.101xp.com -# ||banman.isoftmarketing.com^$third-party (easylistchina+easylist.txt: 39812) -.banman.isoftmarketing.com -# ||bankrate.com/jsfeeds/$third-party (easylistchina+easylist.txt: 39810) -.bankrate.com/jsfeeds/ -# ||bamstudent.com/files/banners/ (easylistchina+easylist.txt: 39809) -.bamstudent.com/files/banners/ -# ||ball2win.com/Affiliate/ (easylistchina+easylist.txt: 39808) -.ball2win.com/Affiliate/ -# ||badoo.com/informer/$third-party (easylistchina+easylist.txt: 39807) -.badoo.com/informer/ -# ||babylon.com^*?affid= (easylistchina+easylist.txt: 39806) -.babylon.com/.*\?affid= -# ||babylon.com/trans_box/*&affiliate= (easylistchina+easylist.txt: 39805) -.babylon.com/trans_box/.*&affiliate= -# ||babylon.com/systems/af/landing/$third-party (easylistchina+easylist.txt: 39804) -.babylon.com/systems/af/landing/ -# ||babylon.com/site/images/common.js$third-party (easylistchina+easylist.txt: 39803) -.babylon.com/site/images/common\.js -# ||b92s.net/images/banners/ (easylistchina+easylist.txt: 39802) -.b92s.net/images/banners/ -# ||b92.putniktravel.com^ (easylistchina+easylist.txt: 39801) -.b92.putniktravel.com -# ||b.sell.com^$third-party (easylistchina+easylist.txt: 39799) -.b.sell.com -# ||b.livesport.eu^ (easylistchina+easylist.txt: 39798) -.b.livesport.eu -# ||b.babylon.com^ (easylistchina+easylist.txt: 39797) -.b.babylon.com -# ||axandra.com/affiliates/ (easylistchina+easylist.txt: 39795) -.axandra.com/affiliates/ -# ||award.sitekeuring.net^ (easylistchina+easylist.txt: 39794) -.award.sitekeuring.net -# ||awadhtimes.com^$third-party (easylistchina+easylist.txt: 39793) -.awadhtimes.com -# ||autoprivileges.net/news/ (easylistchina+easylist.txt: 39792) -.autoprivileges.net/news/ -# ||augine.com/widget|$third-party (easylistchina+easylist.txt: 39791) -.augine.com/widget$ -# ||atomicpopularity.com/dfpd.js (easylistchina+easylist.txt: 39790) -.atomicpopularity.com/dfpd\.js -# ||athena-ads.wikia.com^$third-party (easylistchina+easylist.txt: 39789) -.athena-ads.wikia.com -# ||astrology.com/partnerpages/ (easylistchina+easylist.txt: 39788) -.astrology.com/partnerpages/ -# ||astalavista.box.sk/c-astalink2a.jpg (easylistchina+easylist.txt: 39787) -.astalavista.box.sk/c-astalink2a\.jpg -# ||associmg.com^*.gif?tag- (easylistchina+easylist.txt: 39786) -.associmg.com/.*\.gif\?tag- -# ||assets.betterbills.com/widgets/ (easylistchina+easylist.txt: 39785) -.assets.betterbills.com/widgets/ -# ||as.jivox.com/jivox/serverapis/getcampaignbysite.php?$object-subrequest (easylistchina+easylist.txt: 39784) -.as.jivox.com/jivox/serverapis/getcampaignbysite\.php\? -# ||as.devbridge.com^$third-party (easylistchina+easylist.txt: 39783) -.as.devbridge.com -# ||artistdirect.com/partner/ (easylistchina+easylist.txt: 39782) -.artistdirect.com/partner/ -# ||arntrnassets.mediaspanonline.com^*_HP_wings_ (easylistchina+easylist.txt: 39781) -.arntrnassets.mediaspanonline.com/.*_HP_wings_ -# ||ard.ihookup.com^ (easylistchina+easylist.txt: 39780) -.ard.ihookup.com -# ||arcadetown.com/as/show.asp (easylistchina+easylist.txt: 39779) -.arcadetown.com/as/show\.asp -# ||appwork.org/hoster/banner_$third-party (easylistchina+easylist.txt: 39778) -.appwork.org/hoster/banner_ -# ||appsgenius.com/images/$third-party (easylistchina+easylist.txt: 39777) -.appsgenius.com/images/ -# ||apple.com/itunesaffiliates/ (easylistchina+easylist.txt: 39776) -.apple.com/itunesaffiliates/ -# ||appdevsecrets.com/images/nuts/ (easylistchina+easylist.txt: 39775) -.appdevsecrets.com/images/nuts/ -# ||apnonline.com.au/img/marketplace/*_ct50x50.gif (easylistchina+easylist.txt: 39774) -.apnonline.com.au/img/marketplace/.*_ct50x50\.gif -# ||api.ticketnetwork.com/Events/TopSelling/domain=nytimes.com (easylistchina+easylist.txt: 39773) -.api.ticketnetwork.com/Events/TopSelling/domain=nytimes\.com -# ||api.groupon.com/v2/deals/$third-party (easylistchina+easylist.txt: 39772) -.api.groupon.com/v2/deals/ -# ||api.bitp.it^$third-party (easylistchina+easylist.txt: 39771) -.api.bitp.it -# ||api.140proof.com^$third-party (easylistchina+easylist.txt: 39770) -.api.140proof.com -# ||aolcdn.com/os/music/img/*-skin.jpg (easylistchina+easylist.txt: 39769) -.aolcdn.com/os/music/img/.*-skin\.jpg -# ||aolcdn.com/os/mapquest/promo-images/ (easylistchina+easylist.txt: 39768) -.aolcdn.com/os/mapquest/promo-images/ -# ||aolcdn.com/os/mapquest/marketing/promos/ (easylistchina+easylist.txt: 39767) -.aolcdn.com/os/mapquest/marketing/promos/ -# ||aol.co.uk^*/cobrand.js (easylistchina+easylist.txt: 39766) -.aol.co.uk/.*/cobrand\.js -# ||any.gs/visitScript/$third-party (easylistchina+easylist.txt: 39765) -.any.gs/visitScript/ -# ||anonym.to/*findandtry.com (easylistchina+easylist.txt: 39764) -.anonym.to/.*findandtry\.com -# ||anime.jlist.com^$third-party (easylistchina+easylist.txt: 39763) -.anime.jlist.com -# ||angelbc.com/clients/*/banners/$third-party (easylistchina+easylist.txt: 39762) -.angelbc.com/clients/.*/banners/ -# ||analytics.disneyinternational.com^ (easylistchina+easylist.txt: 39760) -.analytics.disneyinternational.com -# ||amazonaws.com/youpop/ (easylistchina+easylist.txt: 39757) -.amazonaws.com/youpop/ -# ||amazonaws.com/widgets.youcompare.com.au/ (easylistchina+easylist.txt: 39756) -.amazonaws.com/widgets\.youcompare\.com\.au/ -# ||amazonaws.com/streetpulse/ads/ (easylistchina+easylist.txt: 39755) -.amazonaws.com/streetpulse/ads/ -# ||amazonaws.com/skyscrpr.js (easylistchina+easylist.txt: 39754) -.amazonaws.com/skyscrpr\.js -# ||amazonaws.com/publishflow/ (easylistchina+easylist.txt: 39753) -.amazonaws.com/publishflow/ -# ||amazonaws.com/pmb-musics/download_itunes.png (easylistchina+easylist.txt: 39752) -.amazonaws.com/pmb-musics/download_itunes\.png -# ||amazonaws.com/photos.offers.analoganalytics.com/ (easylistchina+easylist.txt: 39750) -.amazonaws.com/photos\.offers\.analoganalytics\.com/ -# ||amazonaws.com/lms/sponsors/ (easylistchina+easylist.txt: 39748) -.amazonaws.com/lms/sponsors/ -# ||amazonaws.com/fvefwdds/ (easylistchina+easylist.txt: 39746) -.amazonaws.com/fvefwdds/ -# ||amazonaws.com/btrb-prd-banners/ (easylistchina+easylist.txt: 39743) -.amazonaws.com/btrb-prd-banners/ -# ||amazonaws.com/bo-assets/production/banner_attachments/ (easylistchina+easylist.txt: 39742) -.amazonaws.com/bo-assets/production/banner_attachments/ -# ||amazonaws.com/ad_w_intersitial.html (easylistchina+easylist.txt: 39739) -.amazonaws.com/ad_w_intersitial\.html -# ||amazon.com^*/getaanad?$third-party (easylistchina+easylist.txt: 39738) -.amazon.com/.*/getaanad\? -# ||amazon.com/gp/redirect.html?$subdocument,third-party (easylistchina+easylist.txt: 39737) -.amazon.com/gp/redirect\.html\? -# ||amazon.com/?_encoding*&linkcode$third-party (easylistchina+easylist.txt: 39736) -.amazon.com/\?_encoding.*&linkcode -# ||altushost.com/docs/$third-party (easylistchina+easylist.txt: 39735) -.altushost.com/docs/ -# ||alpsat.com/banner/ (easylistchina+easylist.txt: 39734) -.alpsat.com/banner/ -# ||alluremedia.com.au^*/campaigns/ (easylistchina+easylist.txt: 39733) -.alluremedia.com.au/.*/campaigns/ -# ||allsend.com/public/assets/images/ (easylistchina+easylist.txt: 39732) -.allsend.com/public/assets/images/ -# ||allposters.com^*/banners/ (easylistchina+easylist.txt: 39731) -.allposters.com/.*/banners/ -# ||algovid.com/player/get_player_vasts? (easylistchina+easylist.txt: 39730) -.algovid.com/player/get_player_vasts\? -# ||algart.net*_banner_$third-party (easylistchina+easylist.txt: 39729) -.algart.net*./.*_banner_ -# ||alexa.com^*/promotebuttons/ (easylistchina+easylist.txt: 39728) -.alexa.com/.*/promotebuttons/ -# ||akamaihd.net^*/web/pdk/swf/freewheel.swf?$third-party (easylistchina+easylist.txt: 39727) -.akamaihd.net/.*/web/pdk/swf/freewheel\.swf\? -# ||akamaihd.net/ssa/*?zoneid=$subdocument (easylistchina+easylist.txt: 39726) -.akamaihd.net/ssa/.*\?zoneid= -# ||akamaihd.net/lmedianet.js (easylistchina+easylist.txt: 39724) -.akamaihd.net/lmedianet\.js -# ||akamai.net^*/pics.drugstore.com/prodimg/promo/ (easylistchina+easylist.txt: 39723) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# ||akamai.net^*/espnpreroll/$object-subrequest (easylistchina+easylist.txt: 39722) -.akamai.net/.*/espnpreroll/ -# ||akamai.net^*.247realmedia.com/$third-party (easylistchina+easylist.txt: 39721) -.akamai.net/.*\.247realmedia\.com/ -# ||ak1.imgaft.com^$third-party (easylistchina+easylist.txt: 39720) -.ak1.imgaft.com -# ||ak.imgaft.com^$third-party (easylistchina+easylist.txt: 39719) -.ak.imgaft.com -# ||ais.abacast.com^ (easylistchina+easylist.txt: 39718) -.ais.abacast.com -# ||airvpn.org/images/promotional/ (easylistchina+easylist.txt: 39717) -.airvpn.org/images/promotional/ -# ||airpushmarketing.s3.amazonaws.com^ (easylistchina+easylist.txt: 39716) -.airpushmarketing.s3.amazonaws.com -# ||ahlanlive.com/newsletters/banners/$third-party (easylistchina+easylist.txt: 39715) -.ahlanlive.com/newsletters/banners/ -# ||agoda.net/banners/ (easylistchina+easylist.txt: 39714) -.agoda.net/banners/ -# ||agenda.complex.com^ (easylistchina+easylist.txt: 39713) -.agenda.complex.com -# ||afimg.liveperson.com^$third-party (easylistchina+easylist.txt: 39712) -.afimg.liveperson.com -# ||affutdmedia.com^$third-party (easylistchina+easylist.txt: 39711) -.affutdmedia.com -# ||affiliation.fotovista.com^ (easylistchina+easylist.txt: 39710) -.affiliation.fotovista.com -# ||affiliation.filestube.com^$third-party (easylistchina+easylist.txt: 39709) -.affiliation.filestube.com -# ||affiliatesmedia.sbobet.com^ (easylistchina+easylist.txt: 39708) -.affiliatesmedia.sbobet.com -# ||affiliates.picaboocorp.com^$third-party (easylistchina+easylist.txt: 39707) -.affiliates.picaboocorp.com -# ||affiliates.lynda.com^$third-party (easylistchina+easylist.txt: 39706) -.affiliates.lynda.com -# ||affiliates.homestead.com^$third-party (easylistchina+easylist.txt: 39705) -.affiliates.homestead.com -# ||affiliates.bookdepository.com^$third-party (easylistchina+easylist.txt: 39704) -.affiliates.bookdepository.com -# ||affiliates.bookdepository.co.uk^$third-party (easylistchina+easylist.txt: 39703) -.affiliates.bookdepository.co.uk -# ||affiliates.allposters.com^ (easylistchina+easylist.txt: 39702) -.affiliates.allposters.com -# ||affiliates-cdn.mozilla.org^$third-party (easylistchina+easylist.txt: 39701) -.affiliates-cdn.mozilla.org -# ||affiliateprogram.keywordspy.com^ (easylistchina+easylist.txt: 39700) -.affiliateprogram.keywordspy.com -# ||affiliatehub.skybet.com^$third-party (easylistchina+easylist.txt: 39699) -.affiliatehub.skybet.com -# ||affiliate.mediatemple.net^$third-party (easylistchina+easylist.txt: 39698) -.affiliate.mediatemple.net -# ||affiliate.juno.co.uk^$third-party (easylistchina+easylist.txt: 39697) -.affiliate.juno.co.uk -# ||affil.mupromo.com^ (easylistchina+easylist.txt: 39696) -.affil.mupromo.com -# ||aff.svjump.com^ (easylistchina+easylist.txt: 39695) -.aff.svjump.com -# ||aff.marathonbet.com^ (easylistchina+easylist.txt: 39694) -.aff.marathonbet.com -# ||aff.eteachergroup.com^ (easylistchina+easylist.txt: 39693) -.aff.eteachergroup.com -# ||aff.cupidplc.com^$third-party (easylistchina+easylist.txt: 39692) -.aff.cupidplc.com -# ||afcdn.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 39691) -.afcdn.com/.*/ova-jw\.swf -# ||adziff.com^*/zdcse.min.js (easylistchina+easylist.txt: 39690) -.adziff.com/.*/zdcse\.min\.js -# ||adz.zwee.ly^ (easylistchina+easylist.txt: 39689) -.adz.zwee.ly -# ||advanced-intelligence.com/banner (easylistchina+easylist.txt: 39688) -.advanced-intelligence.com/banner -# ||adstest.zaman.com.tr^$third-party (easylistchina+easylist.txt: 39687) -.adstest.zaman.com.tr -# ||adss.dotdo.net^ (easylistchina+easylist.txt: 39686) -.adss.dotdo.net -# ||adsrv.eacdn.com^$third-party (easylistchina+easylist.txt: 39685) -.adsrv.eacdn.com -# ||adserv.legitreviews.com^$third-party (easylistchina+easylist.txt: 39684) -.adserv.legitreviews.com -# ||adscaspion.appspot.com^ (easylistchina+easylist.txt: 39683) -.adscaspion.appspot.com -# ||ads.tremorhub.com^ (easylistchina+easylist.txt: 39682) -.ads.tremorhub.com -# ||ads.mp.mydas.mobi^ (easylistchina+easylist.txt: 39681) -.ads.mp.mydas.mobi -# ||ads.dynamicyield.com^$third-party (easylistchina+easylist.txt: 39680) -.ads.dynamicyield.com -# ||adr-*.vindicosuite.com^ (easylistchina+easylist.txt: 39679) -.adr-*./.*\.vindicosuite\.com[^\w%.-] -.adr-*.vindicosuite.com -# ||adplus.goo.mx^ (easylistchina+easylist.txt: 39678) -.adplus.goo.mx -# ||adn.ebay.com^ (easylistchina+easylist.txt: 39677) -.adn.ebay.com -# ||adm.shinobi.jp^$third-party (easylistchina+easylist.txt: 39676) -.adm.shinobi.jp -# ||adlandpro.com^$third-party (easylistchina+easylist.txt: 39675) -.adlandpro.com -# ||adingo.jp.eimg.jp^ (easylistchina+easylist.txt: 39674) -.adingo.jp.eimg.jp -# ||adfoc.us/js/$third-party (easylistchina+easylist.txt: 39673) -.adfoc.us/js/ -# ||adf.ly^*/link-converter.js$third-party (easylistchina+easylist.txt: 39672) -.adf.ly/.*/link-converter\.js -# ||adf.ly/images/banners/ (easylistchina+easylist.txt: 39670) -.adf.ly/images/banners/ -# ||addme.com/images/addme_$third-party (easylistchina+easylist.txt: 39668) -.addme.com/images/addme_ -# ||add.bugun.com.tr^ (easylistchina+easylist.txt: 39667) -.add.bugun.com.tr -# ||adap.tv/redir/plugins3/$object-subrequest (easylistchina+easylist.txt: 39666) -.adap.tv/redir/plugins3/ -# ||adap.tv/redir/plugins/$object-subrequest (easylistchina+easylist.txt: 39665) -.adap.tv/redir/plugins/ -# ||adap.tv/redir/client/static/as3adplayer.swf (easylistchina+easylist.txt: 39664) -.adap.tv/redir/client/static/as3adplayer\.swf -# ||ad2links.com/js/$third-party (easylistchina+easylist.txt: 39663) -.ad2links.com/js/ -# ||ad.zaman.com.tr^$third-party (easylistchina+easylist.txt: 39662) -.ad.zaman.com.tr -# ||ad.wsod.com^$third-party (easylistchina+easylist.txt: 39661) -.ad.wsod.com -# ||ad.winningpartner.com^ (easylistchina+easylist.txt: 39660) -.ad.winningpartner.com -# ||ad.vidaroo.com^ (easylistchina+easylist.txt: 39659) -.ad.vidaroo.com -# ||ad.valuecalling.com^$third-party (easylistchina+easylist.txt: 39658) -.ad.valuecalling.com -# ||ad.sponsoreo.com^$third-party (easylistchina+easylist.txt: 39657) -.ad.sponsoreo.com -# ||ad.spielothek.so^ (easylistchina+easylist.txt: 39656) -.ad.spielothek.so -# ||ad.smartclip.net^ (easylistchina+easylist.txt: 39655) -.ad.smartclip.net -# ||ad.sharethis.com^$third-party (easylistchina+easylist.txt: 39654) -.ad.sharethis.com -# ||ad.sensismediasmart.com.au^ (easylistchina+easylist.txt: 39653) -.ad.sensismediasmart.com.au -# ||ad.reklamport.com^ (easylistchina+easylist.txt: 39652) -.ad.reklamport.com -# ||ad.realmcdn.net^$third-party (easylistchina+easylist.txt: 39651) -.ad.realmcdn.net -# ||ad.rambler.ru^ (easylistchina+easylist.txt: 39650) -.ad.rambler.ru -# ||ad.r.worldssl.net^ (easylistchina+easylist.txt: 39649) -.ad.r.worldssl.net -# ||ad.proxy.sh^ (easylistchina+easylist.txt: 39648) -.ad.proxy.sh -# ||ad.premiumonlinemedia.com^$third-party (easylistchina+easylist.txt: 39647) -.ad.premiumonlinemedia.com -# ||ad.pickple.net^ (easylistchina+easylist.txt: 39646) -.ad.pickple.net -# ||ad.outsidehub.com^ (easylistchina+easylist.txt: 39645) -.ad.outsidehub.com -# ||ad.openmultimedia.biz^ (easylistchina+easylist.txt: 39644) -.ad.openmultimedia.biz -# ||ad.netcommunities.com^$third-party (easylistchina+easylist.txt: 39643) -.ad.netcommunities.com -# ||ad.mygamesol.com^$third-party (easylistchina+easylist.txt: 39642) -.ad.mygamesol.com -# ||ad.mesomorphosis.com^ (easylistchina+easylist.txt: 39641) -.ad.mesomorphosis.com -# ||ad.mail.ru^ (easylistchina+easylist.txt: 39640) -.ad.mail.ru -# ||ad.livere.co.kr^ (easylistchina+easylist.txt: 39639) -.ad.livere.co.kr -# ||ad.linkstorms.com^$third-party (easylistchina+easylist.txt: 39638) -.ad.linkstorms.com -# ||ad.lijit.com^$third-party (easylistchina+easylist.txt: 39637) -.ad.lijit.com -# ||ad.jokeroo.com^$third-party (easylistchina+easylist.txt: 39636) -.ad.jokeroo.com -# ||ad.jamba.net^ (easylistchina+easylist.txt: 39635) -.ad.jamba.net -# ||ad.indomp3z.us^$third-party (easylistchina+easylist.txt: 39634) -.ad.indomp3z.us -# ||ad.imad.co.kr^$third-party (easylistchina+easylist.txt: 39633) -.ad.imad.co.kr -# ||ad.idgtn.net^ (easylistchina+easylist.txt: 39632) -.ad.idgtn.net -# ||ad.icasthq.com^ (easylistchina+easylist.txt: 39631) -.ad.icasthq.com -# ||ad.ghfusion.com^$third-party (easylistchina+easylist.txt: 39630) -.ad.ghfusion.com -# ||ad.foxnetworks.com^ (easylistchina+easylist.txt: 39629) -.ad.foxnetworks.com -# ||ad.flux.com^ (easylistchina+easylist.txt: 39628) -.ad.flux.com -# ||ad.e-kolay.net^$third-party (easylistchina+easylist.txt: 39627) -.ad.e-kolay.net -# ||ad.bitmedia.io^ (easylistchina+easylist.txt: 39626) -.ad.bitmedia.io -# ||ad.aquamediadirect.com^$third-party (easylistchina+easylist.txt: 39625) -.ad.aquamediadirect.com -# ||ad.accessmediaproductions.com^ (easylistchina+easylist.txt: 39623) -.ad.accessmediaproductions.com -# ||ad.about.co.kr^ (easylistchina+easylist.txt: 39622) -.ad.about.co.kr -# ||ad.23blogs.com^$third-party (easylistchina+easylist.txt: 39621) -.ad.23blogs.com -# ||ablacrack.com/popup-pvd.js$third-party (easylistchina+easylist.txt: 39620) -.ablacrack.com/popup-pvd\.js -# ||abacast.com/banner/ (easylistchina+easylist.txt: 39619) -.abacast.com/banner/ -# ||aadvertismentt.com^$subdocument (easylistchina+easylist.txt: 39618) -.aadvertismentt.com -# ||a1channel.net/img/watch_now.gif (easylistchina+easylist.txt: 39617) -.a1channel.net/img/watch_now\.gif -# ||a1channel.net/img/downloadbtn2.png (easylistchina+easylist.txt: 39616) -.a1channel.net/img/downloadbtn2\.png -# ||a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com^ (easylistchina+easylist.txt: 39615) -.a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com -# ||a.watershed-publishing.com^ (easylistchina+easylist.txt: 39614) -.a.watershed-publishing.com -# ||a.ucoz.net^ (easylistchina+easylist.txt: 39613) -.a.ucoz.net -# ||a.livesportmedia.eu^ (easylistchina+easylist.txt: 39612) -.a.livesportmedia.eu -# ||96.9.176.245^$third-party (easylistchina+easylist.txt: 39611) -.96.9.176.245 -# ||80.94.76.4/abd.php? (easylistchina+easylist.txt: 39609) -.80.94.76.4/abd\.php\? -# ||770.com/banniere.php? (easylistchina+easylist.txt: 39608) -.770.com/banniere\.php\? -# ||6theory.com/pub/ (easylistchina+easylist.txt: 39607) -.6theory.com/pub/ -# ||4getlikes.com/promo/ (easylistchina+easylist.txt: 39604) -.4getlikes.com/promo/ -# ||3dots.co.il/pop/ (easylistchina+easylist.txt: 39603) -.3dots.co.il/pop/ -# ||360pal.com/ads/$third-party (easylistchina+easylist.txt: 39602) -.360pal.com/ads/ -# ||2yu.in/banner/$third-party (easylistchina+easylist.txt: 39601) -.2yu.in/banner/ -# ||2leep.com/ticker2/$third-party (easylistchina+easylist.txt: 39600) -.2leep.com/ticker2/ -# ||2beon.co.kr/nad/$third-party (easylistchina+easylist.txt: 39599) -.2beon.co.kr/nad/ -# ||24hrlikes.com/images/$third-party (easylistchina+easylist.txt: 39598) -.24hrlikes.com/images/ -# ||24casino.cz/poker300-$third-party (easylistchina+easylist.txt: 39597) -.24casino.cz/poker300- -# ||247hd.net/ad| (easylistchina+easylist.txt: 39596) -.247hd.net/ad$ -# ||24.com//flashplayer/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 39595) -# ||1whois.org/static/popup.js (easylistchina+easylist.txt: 39590) -.1whois.org/static/popup\.js -# ||1stag.com/main/img/banners/ (easylistchina+easylist.txt: 39589) -.1stag.com/main/img/banners/ -# ||1page.co.za/affiliate/ (easylistchina+easylist.txt: 39588) -.1page.co.za/affiliate/ -# ||178.238.233.242/open.js (easylistchina+easylist.txt: 39587) -.178.238.233.242/open\.js -# ||178.17.164.58^$script,third-party (easylistchina+easylist.txt: 39586) -.178.17.164.58 -# ||12dayswidget.com/widgets/ (easylistchina+easylist.txt: 39583) -.12dayswidget.com/widgets/ -# ||110mb.com/images/banners/ (easylistchina+easylist.txt: 39582) -.110mb.com/images/banners/ -# ||110.45.173.103/ad/$third-party (easylistchina+easylist.txt: 39581) -.110.45.173.103/ad/ -# ||1-million-usd.com/images/banners/ (easylistchina+easylist.txt: 39578) -.1-million-usd.com/images/banners/ -# ||04stream.com/pop*.js (easylistchina+easylist.txt: 39577) -.04stream.com/pop.*\.js -# ||000webhost.com/images/banners/ (easylistchina+easylist.txt: 39576) -.000webhost.com/images/banners/ -# -api.adyoulike.com (easylistchina+easylist.txt: 39575) -/.*-api\.adyoulike\.com -.*-api.adyoulike.com*. -# ||y72yuyr9.com^$popup,third-party (easylistchina+easylist.txt: 39572) -.y72yuyr9.com -# ||xxxmatch.com^$popup (easylistchina+easylist.txt: 39571) -.xxxmatch.com -# ||xxxbunker.com^$popup,third-party (easylistchina+easylist.txt: 39570) -.xxxbunker.com -# ||xvika.net^$popup,third-party (easylistchina+easylist.txt: 39569) -.xvika.net -# ||xvika.com^$popup,third-party (easylistchina+easylist.txt: 39568) -.xvika.com -# ||xpeeps.com^$popup,third-party (easylistchina+easylist.txt: 39567) -.xpeeps.com -# ||xmatch.com^$popup (easylistchina+easylist.txt: 39566) -.xmatch.com -# ||xdtraffic.com^$popup,third-party (easylistchina+easylist.txt: 39565) -.xdtraffic.com -# ||x2porn.eu^$popup,third-party (easylistchina+easylist.txt: 39564) -.x2porn.eu -# ||watchmygf.com^$popup (easylistchina+easylist.txt: 39563) -.watchmygf.com -# ||voyeurbase.com^$popup,third-party (easylistchina+easylist.txt: 39562) -.voyeurbase.com -# ||vlexokrako.com^$popup (easylistchina+easylist.txt: 39561) -.vlexokrako.com -# ||turnefo.ru^$popup (easylistchina+easylist.txt: 39560) -.turnefo.ru -# ||trafficstars.com^$popup (easylistchina+easylist.txt: 39559) -.trafficstars.com -# ||trafficholder.com^$popup,third-party (easylistchina+easylist.txt: 39558) -.trafficholder.com -# ||trafficbroker.com^$popup (easylistchina+easylist.txt: 39557) -.trafficbroker.com -# ||trackvoluum.com^$popup (easylistchina+easylist.txt: 39556) -.trackvoluum.com -# ||targetingnow.com^$popup,third-party (easylistchina+easylist.txt: 39555) -.targetingnow.com -# ||socialsex.com^$popup,third-party (easylistchina+easylist.txt: 39554) -.socialsex.com -# ||socialsex.biz^$popup,third-party (easylistchina+easylist.txt: 39553) -.socialsex.biz -# ||sexintheuk.com^$popup,third-party (easylistchina+easylist.txt: 39552) -.sexintheuk.com -# ||sexflirtbook.com^$popup,third-party (easylistchina+easylist.txt: 39551) -.sexflirtbook.com -# ||sexad.net^$popup,third-party (easylistchina+easylist.txt: 39550) -.sexad.net -# ||sex-journey.com^$popup,third-party (easylistchina+easylist.txt: 39549) -.sex-journey.com -# ||setravieso.com^$popup,third-party (easylistchina+easylist.txt: 39548) -.setravieso.com -# ||sascentral.com^$popup,third-party (easylistchina+easylist.txt: 39547) -.sascentral.com -# ||royalads.net^$popup,third-party (easylistchina+easylist.txt: 39546) -.royalads.net -# ||reviewdollars.com^$popup,third-party (easylistchina+easylist.txt: 39545) -.reviewdollars.com -# ||reporo.net^$popup,third-party (easylistchina+easylist.txt: 39544) -.reporo.net -# ||repmbuycurl.com^$popup,third-party (easylistchina+easylist.txt: 39543) -.repmbuycurl.com -# ||prpops.com^$popup,third-party (easylistchina+easylist.txt: 39542) -.prpops.com -# ||prexista.com^$popup,third-party (easylistchina+easylist.txt: 39541) -.prexista.com -# ||pornbus.org^$popup (easylistchina+easylist.txt: 39540) -.pornbus.org -# ||popcash.net^$popup,third-party (easylistchina+easylist.txt: 39539) -.popcash.net -# ||plugrush.com^$popup,third-party (easylistchina+easylist.txt: 39538) -.plugrush.com -# ||plinx.net^$popup,third-party (easylistchina+easylist.txt: 39537) -.plinx.net -# ||playgirl.com^$popup (easylistchina+easylist.txt: 39536) -.playgirl.com -# ||pinkberrytube.com^$popup (easylistchina+easylist.txt: 39535) -.pinkberrytube.com -# ||njmaq.com^$popup,third-party (easylistchina+easylist.txt: 39534) -.njmaq.com -# ||needlive.com^$popup (easylistchina+easylist.txt: 39533) -.needlive.com -# ||naughtyplayful.com^$popup,third-party (easylistchina+easylist.txt: 39532) -.naughtyplayful.com -# ||loltrk.com^$popup,third-party (easylistchina+easylist.txt: 39531) -.loltrk.com -# ||legacyminerals.net^$popup,third-party (easylistchina+easylist.txt: 39530) -.legacyminerals.net -# ||kaizentraffic.com^$popup,third-party (easylistchina+easylist.txt: 39529) -.kaizentraffic.com -# ||juicyads.com^$popup,third-party (easylistchina+easylist.txt: 39528) -.juicyads.com -# ||ipvertising.com^$popup (easylistchina+easylist.txt: 39527) -.ipvertising.com -# ||indianfriendfinder.com^$popup,third-party (easylistchina+easylist.txt: 39526) -.indianfriendfinder.com -# ||imgcarry.com^$popup,third-party (easylistchina+easylist.txt: 39525) -.imgcarry.com -# ||imagesnake.com^$popup,third-party (easylistchina+easylist.txt: 39524) -.imagesnake.com -# ||hornymatches.com^$popup,third-party (easylistchina+easylist.txt: 39523) -.hornymatches.com -# ||hizlireklam.com^$popup,third-party (easylistchina+easylist.txt: 39522) -.hizlireklam.com -# ||herezera.com^$popup (easylistchina+easylist.txt: 39521) -.herezera.com -# ||hapend.biz^$popup,third-party (easylistchina+easylist.txt: 39520) -.hapend.biz -# ||hanaprop.com^$popup,third-party (easylistchina+easylist.txt: 39519) -.hanaprop.com -# ||gothot.org^$popup,third-party (easylistchina+easylist.txt: 39518) -.gothot.org -# ||freewebcams.com^$popup,third-party (easylistchina+easylist.txt: 39517) -.freewebcams.com -# ||freecamsexposed.com^$popup (easylistchina+easylist.txt: 39516) -.freecamsexposed.com -# ||fpctraffic2.com^$popup,third-party (easylistchina+easylist.txt: 39515) -.fpctraffic2.com -# ||fox-forden.ru^$popup,third-party (easylistchina+easylist.txt: 39514) -.fox-forden.ru -# ||foaks.com^$popup,third-party (easylistchina+easylist.txt: 39513) -.foaks.com -# ||flagads.net^$popup (easylistchina+easylist.txt: 39512) -.flagads.net -# ||filthads.com^$popup,third-party (easylistchina+easylist.txt: 39511) -.filthads.com -# ||fbay.tv^$popup (easylistchina+easylist.txt: 39510) -.fbay.tv -# ||exogripper.com^$popup (easylistchina+easylist.txt: 39509) -.exogripper.com -# ||exgfpunished.com^$popup,third-party (easylistchina+easylist.txt: 39508) -.exgfpunished.com -# ||everyporn.net^$popup,third-party (easylistchina+easylist.txt: 39507) -.everyporn.net -# ||ertya.com^$popup (easylistchina+easylist.txt: 39506) -.ertya.com -# ||ero-advertising.com^$popup,third-party (easylistchina+easylist.txt: 39505) -.ero-advertising.com -# ||ekod.info^$popup,third-party (easylistchina+easylist.txt: 39504) -.ekod.info -# ||ebocornac.com^$popup,third-party (easylistchina+easylist.txt: 39503) -.ebocornac.com -# ||easysexdate.com^$popup (easylistchina+easylist.txt: 39502) -.easysexdate.com -# ||dverser.ru^$popup,third-party (easylistchina+easylist.txt: 39501) -.dverser.ru -# ||doublegear.com^$popup,third-party (easylistchina+easylist.txt: 39500) -.doublegear.com -# ||connexionsafe.com^$popup (easylistchina+easylist.txt: 39499) -.connexionsafe.com -# ||chtic.net^$popup,third-party (easylistchina+easylist.txt: 39498) -.chtic.net -# ||chokertraffic.com^$popup,third-party (easylistchina+easylist.txt: 39497) -.chokertraffic.com -# ||c4tracking01.com^$popup,third-party (easylistchina+easylist.txt: 39496) -.c4tracking01.com -# ||buy404s.com^$popup (easylistchina+easylist.txt: 39495) -.buy404s.com -# ||bitterstrawberry.com^$popup (easylistchina+easylist.txt: 39494) -.bitterstrawberry.com -# ||banners.cams.com^$popup,third-party (easylistchina+easylist.txt: 39493) -.banners.cams.com -# ||aquete.com^$popup,third-party (easylistchina+easylist.txt: 39492) -.aquete.com -# ||adxpansion.com^$popup,third-party (easylistchina+easylist.txt: 39491) -.adxpansion.com -# ||adxite.com^$popup,third-party (easylistchina+easylist.txt: 39490) -.adxite.com -# ||adultmoda.com^$popup,third-party (easylistchina+easylist.txt: 39489) -.adultmoda.com -# ||adultadworld.com^$popup,third-party (easylistchina+easylist.txt: 39488) -.adultadworld.com -# ||adultadmedia.com^$popup,third-party (easylistchina+easylist.txt: 39487) -.adultadmedia.com -# ||adtgs.com^$popup (easylistchina+easylist.txt: 39486) -.adtgs.com -# ||adsnero.website^$popup,third-party (easylistchina+easylist.txt: 39485) -.adsnero.website -# ||45i73jv6.com^$popup,third-party (easylistchina+easylist.txt: 39484) -.45i73jv6.com -# ||3questionsgetthegirl.com^$popup (easylistchina+easylist.txt: 39483) -.3questionsgetthegirl.com -# ||3file.info^$popup,third-party (easylistchina+easylist.txt: 39482) -.3file.info -# ||33traffic.com^$popup (easylistchina+easylist.txt: 39481) -.33traffic.com -# ||reporo.net^$third-party (easylistchina+easylist.txt: 39479) -.reporo.net -# ||ziphentai.com^$third-party (easylistchina+easylist.txt: 39477) -.ziphentai.com -# ||zinzimo.info^$third-party (easylistchina+easylist.txt: 39476) -.zinzimo.info -# ||zenkreka.com^$third-party (easylistchina+easylist.txt: 39475) -.zenkreka.com -# ||zboac.com^$third-party (easylistchina+easylist.txt: 39474) -.zboac.com -# ||yx0banners.com^$third-party (easylistchina+easylist.txt: 39473) -.yx0banners.com -# ||yuppads.com^$third-party (easylistchina+easylist.txt: 39472) -.yuppads.com -# ||yu0123456.com^$third-party (easylistchina+easylist.txt: 39471) -.yu0123456.com -# ||ypmadserver.com^$third-party (easylistchina+easylist.txt: 39470) -.ypmadserver.com -# ||yourdatelink.com^$third-party (easylistchina+easylist.txt: 39468) -.yourdatelink.com -# ||your-big.com^$third-party (easylistchina+easylist.txt: 39467) -.your-big.com -# ||yoshatia.com^$third-party (easylistchina+easylist.txt: 39466) -.yoshatia.com -# ||yobihost.com^$third-party (easylistchina+easylist.txt: 39465) -.yobihost.com -# ||yfum.com^$third-party (easylistchina+easylist.txt: 39464) -.yfum.com -# ||yesmessenger.com^$third-party (easylistchina+easylist.txt: 39463) -.yesmessenger.com -# ||yazcash.com^$third-party (easylistchina+easylist.txt: 39462) -.yazcash.com -# ||y72yuyr9.com^$third-party (easylistchina+easylist.txt: 39461) -.y72yuyr9.com -# ||xxxwebtraffic.com^$third-party (easylistchina+easylist.txt: 39460) -.xxxwebtraffic.com -# ||xxxvipporno.com^$third-party (easylistchina+easylist.txt: 39459) -.xxxvipporno.com -# ||xxxmatch.com^$third-party (easylistchina+easylist.txt: 39458) -.xxxmatch.com -# ||xxxlnk.com^$third-party (easylistchina+easylist.txt: 39457) -.xxxlnk.com -# ||xxxex.com^$third-party (easylistchina+easylist.txt: 39456) -.xxxex.com -# ||xxxblackbook.com^$third-party (easylistchina+easylist.txt: 39455) -.xxxblackbook.com -# ||xxxbannerswap.com^$third-party (easylistchina+easylist.txt: 39454) -.xxxbannerswap.com -# ||xxxallaccesspass.com^$third-party (easylistchina+easylist.txt: 39453) -.xxxallaccesspass.com -# ||xxltr.com^$third-party (easylistchina+easylist.txt: 39452) -.xxltr.com -# ||xpop.co^$third-party (easylistchina+easylist.txt: 39451) -.xpop.co -# ||xpollo.com^$third-party (easylistchina+easylist.txt: 39450) -.xpollo.com -# ||xoliter.com^$third-party (easylistchina+easylist.txt: 39449) -.xoliter.com -# ||xmediawebs.net^$third-party (easylistchina+easylist.txt: 39448) -.xmediawebs.net -# ||xlovecam.com^$third-party (easylistchina+easylist.txt: 39447) -.xlovecam.com -# ||xidx.org^$third-party (easylistchina+easylist.txt: 39446) -.xidx.org -# ||xhamstercams.com^$third-party (easylistchina+easylist.txt: 39445) -.xhamstercams.com -# ||xfuckbook.com^$third-party (easylistchina+easylist.txt: 39444) -.xfuckbook.com -# ||xf43506e8.pw^$third-party (easylistchina+easylist.txt: 39443) -.xf43506e8.pw -# ||xclicks.net^$third-party (easylistchina+easylist.txt: 39442) -.xclicks.net -# ||xclickdirect.com^$third-party (easylistchina+easylist.txt: 39441) -.xclickdirect.com -# ||xaxoro.com^^$third-party (easylistchina+easylist.txt: 39440) -.xaxoro.com/[^\w%.-] -# ||x3v66zlz.com^$third-party (easylistchina+easylist.txt: 39439) -.x3v66zlz.com -# ||x-exchanger.co.uk^$third-party (easylistchina+easylist.txt: 39438) -.x-exchanger.co.uk -# ||x-adservice.com^$third-party (easylistchina+easylist.txt: 39437) -.x-adservice.com -# ||wwwmobiroll.com^$third-party (easylistchina+easylist.txt: 39436) -.wwwmobiroll.com -# ||wqlkp.com^$third-party (easylistchina+easylist.txt: 39435) -.wqlkp.com -# ||worldsbestcams.com^$third-party (easylistchina+easylist.txt: 39434) -.worldsbestcams.com -# ||wood-pen.com^$third-party (easylistchina+easylist.txt: 39433) -.wood-pen.com -# ||wma.io^$third-party (easylistchina+easylist.txt: 39432) -.wma.io -# ||wildmatch.com^$third-party (easylistchina+easylist.txt: 39431) -.wildmatch.com -# ||wildhookups.com^$third-party (easylistchina+easylist.txt: 39430) -.wildhookups.com -# ||wifelovers.com^$third-party (easylistchina+easylist.txt: 39429) -.wifelovers.com -# ||whaleads.com^$third-party (easylistchina+easylist.txt: 39428) -.whaleads.com -# ||wetpeachcash.com^$third-party (easylistchina+easylist.txt: 39427) -.wetpeachcash.com -# ||weselltraffic.com^$third-party (easylistchina+easylist.txt: 39426) -.weselltraffic.com -# ||weownthetraffic.com^$third-party (easylistchina+easylist.txt: 39425) -.weownthetraffic.com -# ||webteaser.ru^$third-party (easylistchina+easylist.txt: 39424) -.webteaser.ru -# ||webstats.com.br^$third-party (easylistchina+easylist.txt: 39423) -.webstats.com.br -# ||websitepromoserver.com^$third-party (easylistchina+easylist.txt: 39422) -.websitepromoserver.com -# ||webclickmanager.com^$third-party (easylistchina+easylist.txt: 39421) -.webclickmanager.com -# ||webclickengine.com^$third-party (easylistchina+easylist.txt: 39420) -.webclickengine.com -# ||webcampromotions.com^$third-party (easylistchina+easylist.txt: 39419) -.webcampromotions.com -# ||webcambait.com^$third-party (easylistchina+easylist.txt: 39418) -.webcambait.com -# ||watchmygf.to^$third-party (easylistchina+easylist.txt: 39417) -.watchmygf.to -# ||warsomnet.com^$third-party (easylistchina+easylist.txt: 39416) -.warsomnet.com -# ||wamcash.com^$third-party (easylistchina+easylist.txt: 39415) -.wamcash.com -# ||walprater.com^$third-party (easylistchina+easylist.txt: 39414) -.walprater.com -# ||vsexshop.ru^$third-party (easylistchina+easylist.txt: 39413) -.vsexshop.ru -# ||vrstage.com^$third-party (easylistchina+easylist.txt: 39412) -.vrstage.com -# ||vroll.net^$third-party (easylistchina+easylist.txt: 39411) -.vroll.net -# ||voluumtrk.com^$third-party (easylistchina+easylist.txt: 39410) -.voluumtrk.com -# ||vogozae.ru^$third-party (easylistchina+easylist.txt: 39409) -.vogozae.ru -# ||vogotita.com^$third-party (easylistchina+easylist.txt: 39408) -.vogotita.com -# ||vogorana.ru^$third-party (easylistchina+easylist.txt: 39407) -.vogorana.ru -# ||vogopita.com^$third-party (easylistchina+easylist.txt: 39406) -.vogopita.com -# ||vod-cash.com^$third-party (easylistchina+easylist.txt: 39405) -.vod-cash.com -# ||vlogexpert.com^$third-party (easylistchina+easylist.txt: 39404) -.vlogexpert.com -# ||vlexokrako.com^$third-party (easylistchina+easylist.txt: 39403) -.vlexokrako.com -# ||vktr073.net^$third-party (easylistchina+easylist.txt: 39402) -.vktr073.net -# ||vividcash.com^$third-party (easylistchina+easylist.txt: 39401) -.vividcash.com -# ||virtuagirlhd.com^$third-party (easylistchina+easylist.txt: 39400) -.virtuagirlhd.com -# ||viewrtb.com^$third-party (easylistchina+easylist.txt: 39399) -.viewrtb.com -# ||video-people.com^$third-party (easylistchina+easylist.txt: 39398) -.video-people.com -# ||verticalaffiliation.com^$third-party (easylistchina+easylist.txt: 39397) -.verticalaffiliation.com -# ||ver-pelis.net^$third-party (easylistchina+easylist.txt: 39396) -.ver-pelis.net -# ||uxernab.com^$third-party (easylistchina+easylist.txt: 39395) -.uxernab.com -# ||uuidksinc.net^$third-party (easylistchina+easylist.txt: 39394) -.uuidksinc.net -# ||unlimedia.net^$third-party (easylistchina+easylist.txt: 39393) -.unlimedia.net -# ||unaspajas.com^$third-party (easylistchina+easylist.txt: 39392) -.unaspajas.com -# ||ukreggae.ru^$third-party (easylistchina+easylist.txt: 39391) -.ukreggae.ru -# ||tynyh.com^$third-party (easylistchina+easylist.txt: 39390) -.tynyh.com -# ||txxx.com^$third-party (easylistchina+easylist.txt: 39389) -.txxx.com -# ||twistyscash.com^$third-party (easylistchina+easylist.txt: 39388) -.twistyscash.com -# ||tvzavr.ru^$third-party (easylistchina+easylist.txt: 39387) -.tvzavr.ru -# ||tufosex.com.br^$third-party (easylistchina+easylist.txt: 39386) -.tufosex.com.br -# ||tubedspots.com^$third-party (easylistchina+easylist.txt: 39385) -.tubedspots.com -# ||tubeadnetwork.com^$third-party (easylistchina+easylist.txt: 39384) -.tubeadnetwork.com -# ||ttlmodels.com^$third-party (easylistchina+easylist.txt: 39383) -.ttlmodels.com -# ||try9.com^$third-party (easylistchina+easylist.txt: 39382) -.try9.com -# ||trw12.com^$third-party (easylistchina+easylist.txt: 39381) -.trw12.com -# ||trustedadserver.com^$third-party (easylistchina+easylist.txt: 39380) -.trustedadserver.com -# ||transexy.it^$third-party (easylistchina+easylist.txt: 39379) -.transexy.it -# ||trafogon.net^$third-party (easylistchina+easylist.txt: 39378) -.trafogon.net -# ||traficmax.fr^$third-party (easylistchina+easylist.txt: 39377) -.traficmax.fr -# ||trafficundercontrol.com^$third-party (easylistchina+easylist.txt: 39376) -.trafficundercontrol.com -# ||trafficstars.com^$third-party (easylistchina+easylist.txt: 39375) -.trafficstars.com -# ||trafficshop.com^$third-party (easylistchina+easylist.txt: 39374) -.trafficshop.com -# ||trafficpimps.com^$third-party (easylistchina+easylist.txt: 39373) -.trafficpimps.com -# ||trafficlearn.com^$third-party (easylistchina+easylist.txt: 39372) -.trafficlearn.com -# ||traffichunt.com^$third-party (easylistchina+easylist.txt: 39371) -.traffichunt.com -# ||trafficholder.com^$third-party (easylistchina+easylist.txt: 39370) -.trafficholder.com -# ||traffic.ru^$third-party (easylistchina+easylist.txt: 39369) -.traffic.ru -# ||traffic-in.com^$third-party (easylistchina+easylist.txt: 39368) -.traffic-in.com -# ||traffbiz.ru^$third-party (easylistchina+easylist.txt: 39367) -.traffbiz.ru -# ||trackerodss.eu^$third-party (easylistchina+easylist.txt: 39366) -.trackerodss.eu -# ||tracker2kss.eu^$third-party (easylistchina+easylist.txt: 39365) -.tracker2kss.eu -# ||tracelive.ru^$third-party (easylistchina+easylist.txt: 39364) -.tracelive.ru -# ||tossoffads.com^$third-party (easylistchina+easylist.txt: 39363) -.tossoffads.com -# ||torrent-anime.ru^$third-party (easylistchina+easylist.txt: 39362) -.torrent-anime.ru -# ||topbucks.com^$third-party (easylistchina+easylist.txt: 39361) -.topbucks.com -# ||top-sponsor.com^$third-party (easylistchina+easylist.txt: 39360) -.top-sponsor.com -# ||toget.ru^$third-party (easylistchina+easylist.txt: 39359) -.toget.ru -# ||todayssn.com^$third-party (easylistchina+easylist.txt: 39358) -.todayssn.com -# ||tmserver-2.net^$third-party (easylistchina+easylist.txt: 39357) -.tmserver-2.net -# ||tmserver-1.com^$third-party (easylistchina+easylist.txt: 39356) -.tmserver-1.com -# ||tm-core.net^$third-party (easylistchina+easylist.txt: 39355) -.tm-core.net -# ||tkhigh.com^$third-party (easylistchina+easylist.txt: 39354) -.tkhigh.com -# ||tizernet.com^$third-party (easylistchina+easylist.txt: 39353) -.tizernet.com -# ||titsbro.pw^$third-party (easylistchina+easylist.txt: 39352) -.titsbro.pw -# ||titsbro.org^$third-party (easylistchina+easylist.txt: 39351) -.titsbro.org -# ||titsbro.net^$third-party (easylistchina+easylist.txt: 39350) -.titsbro.net -# ||tinyweene.com^$third-party (easylistchina+easylist.txt: 39349) -.tinyweene.com -# ||tingrinter.com^$third-party (easylistchina+easylist.txt: 39348) -.tingrinter.com -# ||timteen.com^$third-party (easylistchina+easylist.txt: 39347) -.timteen.com -# ||thumbnail-galleries.net^$third-party (easylistchina+easylist.txt: 39346) -.thumbnail-galleries.net -# ||thesocialsexnetwork.com^$third-party (easylistchina+easylist.txt: 39345) -.thesocialsexnetwork.com -# ||thepayporn.com^$third-party (easylistchina+easylist.txt: 39344) -.thepayporn.com -# ||thebunsenburner.com^$third-party (easylistchina+easylist.txt: 39343) -.thebunsenburner.com -# ||the-adult-company.com^$third-party (easylistchina+easylist.txt: 39342) -.the-adult-company.com -# ||teendestruction.com^$third-party (easylistchina+easylist.txt: 39341) -.teendestruction.com -# ||tech-board.com^$third-party (easylistchina+easylist.txt: 39340) -.tech-board.com -# ||teaservizio.com^$third-party (easylistchina+easylist.txt: 39339) -.teaservizio.com -# ||teasernet.ru^$third-party (easylistchina+easylist.txt: 39338) -.teasernet.ru -# ||tarkita.ru^$third-party (easylistchina+easylist.txt: 39337) -.tarkita.ru -# ||targettrafficmarketing.net^$third-party (easylistchina+easylist.txt: 39336) -.targettrafficmarketing.net -# ||targetingnow.com^$third-party (easylistchina+easylist.txt: 39335) -.targetingnow.com -# ||talk-blog.com^$third-party (easylistchina+easylist.txt: 39334) -.talk-blog.com -# ||sweetstudents.com^$third-party (easylistchina+easylist.txt: 39333) -.sweetstudents.com -# ||sweetmedia.org^$third-party (easylistchina+easylist.txt: 39332) -.sweetmedia.org -# ||sv2.biz^$third-party (easylistchina+easylist.txt: 39331) -.sv2.biz -# ||sunnysmedia.com^$third-party (easylistchina+easylist.txt: 39330) -.sunnysmedia.com -# ||stripsaver.com^$third-party (easylistchina+easylist.txt: 39329) -.stripsaver.com -# ||streamateaccess.com^$third-party (easylistchina+easylist.txt: 39328) -.streamateaccess.com -# ||sterrencash.nl^$third-party (easylistchina+easylist.txt: 39327) -.sterrencash.nl -# ||steamtraffic.com^$third-party (easylistchina+easylist.txt: 39326) -.steamtraffic.com -# ||stat-data.net^$third-party (easylistchina+easylist.txt: 39325) -.stat-data.net -# ||startwebpromo.com^$third-party (easylistchina+easylist.txt: 39324) -.startwebpromo.com -# ||startede.com^$third-party (easylistchina+easylist.txt: 39323) -.startede.com -# ||squeeder.com^$third-party (easylistchina+easylist.txt: 39322) -.squeeder.com -# ||spunkycash.com^$third-party (easylistchina+easylist.txt: 39321) -.spunkycash.com -# ||spcwm.com^$third-party (easylistchina+easylist.txt: 39320) -.spcwm.com -# ||sortow.ru^$third-party (easylistchina+easylist.txt: 39319) -.sortow.ru -# ||solutionsadultes.com^$third-party (easylistchina+easylist.txt: 39318) -.solutionsadultes.com -# ||socialsexnetwork.net^$third-party (easylistchina+easylist.txt: 39317) -.socialsexnetwork.net -# ||smutty.com^$third-party (easylistchina+easylist.txt: 39316) -.smutty.com -# ||sms-xxx.com^$third-party (easylistchina+easylist.txt: 39315) -.sms-xxx.com -# ||smartbn.ru^$third-party (easylistchina+easylist.txt: 39314) -.smartbn.ru -# ||slendastic.com^$third-party (easylistchina+easylist.txt: 39313) -.slendastic.com -# ||skeettools.com^$third-party (easylistchina+easylist.txt: 39312) -.skeettools.com -# ||sjosteras.com^$third-party (easylistchina+easylist.txt: 39311) -.sjosteras.com -# ||sixsigmatraffic.com^$third-party (easylistchina+easylist.txt: 39310) -.sixsigmatraffic.com -# ||siccash.com^$third-party (easylistchina+easylist.txt: 39309) -.siccash.com -# ||shopping-centres.org^$third-party (easylistchina+easylist.txt: 39308) -.shopping-centres.org -# ||sexypower.net^$third-party (easylistchina+easylist.txt: 39307) -.sexypower.net -# ||sexy-ch.com^$third-party (easylistchina+easylist.txt: 39306) -.sexy-ch.com -# ||sexvertise.com^$third-party (easylistchina+easylist.txt: 39305) -.sexvertise.com -# ||sextubecash.com^$third-party (easylistchina+easylist.txt: 39304) -.sextubecash.com -# ||sextracker.com^$third-party (easylistchina+easylist.txt: 39303) -.sextracker.com -# ||sexsearch.com^$third-party (easylistchina+easylist.txt: 39302) -.sexsearch.com -# ||sexplaycam.com^$third-party (easylistchina+easylist.txt: 39301) -.sexplaycam.com -# ||sexopages.com^$third-party (easylistchina+easylist.txt: 39300) -.sexopages.com -# ||sexole.com^$third-party (easylistchina+easylist.txt: 39299) -.sexole.com -# ||sexlist.com^$third-party (easylistchina+easylist.txt: 39298) -.sexlist.com -# ||sexdatecash.com^$third-party (easylistchina+easylist.txt: 39297) -.sexdatecash.com -# ||sexad.net^$third-party (easylistchina+easylist.txt: 39296) -.sexad.net -# ||sesxc.com^$third-party (easylistchina+easylist.txt: 39295) -.sesxc.com -# ||senkinar.com^$third-party (easylistchina+easylist.txt: 39294) -.senkinar.com -# ||seitentipp.com^$third-party (easylistchina+easylist.txt: 39293) -.seitentipp.com -# ||seemybucks.com^$third-party (easylistchina+easylist.txt: 39292) -.seemybucks.com -# ||seekbang.com^$third-party (easylistchina+easylist.txt: 39291) -.seekbang.com -# ||secretbehindporn.com^$third-party (easylistchina+easylist.txt: 39290) -.secretbehindporn.com -# ||searchx.eu^$third-party (easylistchina+easylist.txt: 39289) -.searchx.eu -# ||searchpeack.com^$third-party (easylistchina+easylist.txt: 39288) -.searchpeack.com -# ||scenesgirls.com^$third-party (easylistchina+easylist.txt: 39287) -.scenesgirls.com -# ||sbs-ad.com^$third-party (easylistchina+easylist.txt: 39286) -.sbs-ad.com -# ||sascentral.com^$third-party (easylistchina+easylist.txt: 39285) -.sascentral.com -# ||sancdn.net^$third-party (easylistchina+easylist.txt: 39284) -.sancdn.net -# ||safelinktracker.com^$third-party (easylistchina+easylist.txt: 39283) -.safelinktracker.com -# ||russianlovematch.com^$third-party (easylistchina+easylist.txt: 39282) -.russianlovematch.com -# ||runetki.com^$third-party (easylistchina+easylist.txt: 39281) -.runetki.com -# ||runetki.co^$third-party (easylistchina+easylist.txt: 39280) -.runetki.co -# ||rulerclick.ru^$third-party (easylistchina+easylist.txt: 39279) -.rulerclick.ru -# ||rulerclick.com^$third-party (easylistchina+easylist.txt: 39278) -.rulerclick.com -# ||rukplaza.com^$third-party (easylistchina+easylist.txt: 39277) -.rukplaza.com -# ||rubanners.com^$third-party (easylistchina+easylist.txt: 39276) -.rubanners.com -# ||rtbsystem.com^$third-party (easylistchina+easylist.txt: 39275) -.rtbsystem.com -# ||rsdisp.ru^$third-party (easylistchina+easylist.txt: 39274) -.rsdisp.ru -# ||royal-cash.com^$third-party (easylistchina+easylist.txt: 39273) -.royal-cash.com -# ||robotadserver.com^$third-party (easylistchina+easylist.txt: 39272) -.robotadserver.com -# ||rmkflouh.com^$third-party (easylistchina+easylist.txt: 39271) -.rmkflouh.com -# ||rmbn.net^$third-party (easylistchina+easylist.txt: 39270) -.rmbn.net -# ||rlogoro.ru^$third-party (easylistchina+easylist.txt: 39269) -.rlogoro.ru -# ||rivcash.com^$third-party (easylistchina+easylist.txt: 39268) -.rivcash.com -# ||ripbwing.com^$third-party (easylistchina+easylist.txt: 39267) -.ripbwing.com -# ||rexbucks.com^$third-party (easylistchina+easylist.txt: 39266) -.rexbucks.com -# ||retoxo.com^$third-party (easylistchina+easylist.txt: 39265) -.retoxo.com -# ||retargetpro.net^$third-party (easylistchina+easylist.txt: 39264) -.retargetpro.net -# ||reprak.com^$third-party (easylistchina+easylist.txt: 39263) -.reprak.com -# ||reliablebanners.com^$third-party (easylistchina+easylist.txt: 39262) -.reliablebanners.com -# ||redpineapplemedia.com^$third-party (easylistchina+easylist.txt: 39261) -.redpineapplemedia.com -# ||redlightcenter.com^$third-party (easylistchina+easylist.txt: 39260) -.redlightcenter.com -# ||redirectoptimizer.com^$third-party (easylistchina+easylist.txt: 39259) -.redirectoptimizer.com -# ||redcash.net^$third-party (easylistchina+easylist.txt: 39258) -.redcash.net -# ||realitytraffic.com^$third-party (easylistchina+easylist.txt: 39257) -.realitytraffic.com -# ||realitycash.com^$third-party (easylistchina+easylist.txt: 39256) -.realitycash.com -# ||realdatechat.com^$third-party (easylistchina+easylist.txt: 39255) -.realdatechat.com -# ||real2clean.ru^$third-party (easylistchina+easylist.txt: 39254) -.real2clean.ru -# ||reachword.com^$third-party (easylistchina+easylist.txt: 39253) -.reachword.com -# ||rdiul.com^$third-party (easylistchina+easylist.txt: 39252) -.rdiul.com -# ||rareru.ru^$third-party (easylistchina+easylist.txt: 39251) -.rareru.ru -# ||ramctrlgate.com^$third-party (easylistchina+easylist.txt: 39250) -.ramctrlgate.com -# ||ragazzeinvendita.com^$third-party (easylistchina+easylist.txt: 39249) -.ragazzeinvendita.com -# ||rack-media.com^$third-party (easylistchina+easylist.txt: 39248) -.rack-media.com -# ||r7e0zhv8.com^$third-party (easylistchina+easylist.txt: 39247) -.r7e0zhv8.com -# ||quexotac.com^$third-party (easylistchina+easylist.txt: 39246) -.quexotac.com -# ||queronamoro.com^$third-party (easylistchina+easylist.txt: 39245) -.queronamoro.com -# ||quagodex.com^$third-party (easylistchina+easylist.txt: 39244) -.quagodex.com -# ||pyiel2bz.com^$third-party (easylistchina+easylist.txt: 39243) -.pyiel2bz.com -# ||putanapartners.com^$third-party (easylistchina+easylist.txt: 39242) -.putanapartners.com -# ||putags.com^$third-party (easylistchina+easylist.txt: 39241) -.putags.com -# ||pussyeatingclubcams.com^$third-party (easylistchina+easylist.txt: 39240) -.pussyeatingclubcams.com -# ||pussyeatingclub.com^$third-party (easylistchina+easylist.txt: 39239) -.pussyeatingclub.com -# ||publish4.com^$third-party (easylistchina+easylist.txt: 39238) -.publish4.com -# ||ptwebcams.com^$third-party (easylistchina+easylist.txt: 39237) -.ptwebcams.com -# ||ptrfc.com^$third-party (easylistchina+easylist.txt: 39236) -.ptrfc.com -# ||ptclassic.com^$third-party (easylistchina+easylist.txt: 39235) -.ptclassic.com -# ||psma01.com^$third-party (easylistchina+easylist.txt: 39234) -.psma01.com -# ||prscripts.com^$third-party (easylistchina+easylist.txt: 39233) -.prscripts.com -# ||protizer.ru^$third-party (easylistchina+easylist.txt: 39232) -.protizer.ru -# ||protect-x.com^$third-party (easylistchina+easylist.txt: 39231) -.protect-x.com -# ||promowebstar.com^$third-party (easylistchina+easylist.txt: 39230) -.promowebstar.com -# ||promotools.biz^$third-party (easylistchina+easylist.txt: 39229) -.promotools.biz -# ||promotion-campaigns.com^$third-party (easylistchina+easylist.txt: 39228) -.promotion-campaigns.com -# ||promocionesweb.com^$third-party (easylistchina+easylist.txt: 39227) -.promocionesweb.com -# ||promo4partners.com^$third-party (easylistchina+easylist.txt: 39226) -.promo4partners.com -# ||program3.com^$third-party (easylistchina+easylist.txt: 39225) -.program3.com -# ||profitstat.biz^$third-party (easylistchina+easylist.txt: 39224) -.profitstat.biz -# ||profistats.net^$third-party (easylistchina+easylist.txt: 39223) -.profistats.net -# ||privatewebseiten.com^$third-party (easylistchina+easylist.txt: 39222) -.privatewebseiten.com -# ||privateseiten.net^$third-party (easylistchina+easylist.txt: 39221) -.privateseiten.net -# ||private4.com^$third-party (easylistchina+easylist.txt: 39220) -.private4.com -# ||privacyprotector.com^$third-party (easylistchina+easylist.txt: 39219) -.privacyprotector.com -# ||premiumhdv.com^$third-party (easylistchina+easylist.txt: 39218) -.premiumhdv.com -# ||premature-ejaculation-causes.org^$third-party (easylistchina+easylist.txt: 39217) -.premature-ejaculation-causes.org -# ||ppc-direct.com^$third-party (easylistchina+easylist.txt: 39216) -.ppc-direct.com -# ||pourmajeurs.com^$third-party (easylistchina+easylist.txt: 39215) -.pourmajeurs.com -# ||portable-basketball.com^$third-party (easylistchina+easylist.txt: 39214) -.portable-basketball.com -# ||porntrack.com^$third-party (easylistchina+easylist.txt: 39213) -.porntrack.com -# ||pornoow.com^$third-party (easylistchina+easylist.txt: 39212) -.pornoow.com -# ||porno-file.ru^$third-party (easylistchina+easylist.txt: 39211) -.porno-file.ru -# ||pornleep.com^$third-party (easylistchina+easylist.txt: 39210) -.pornleep.com -# ||pornkings.com^$third-party (easylistchina+easylist.txt: 39209) -.pornkings.com -# ||pornearn.com^$third-party (easylistchina+easylist.txt: 39208) -.pornearn.com -# ||pornconversions.com^$third-party (easylistchina+easylist.txt: 39207) -.pornconversions.com -# ||pornattitude.com^$third-party (easylistchina+easylist.txt: 39206) -.pornattitude.com -# ||porn99.net^$third-party (easylistchina+easylist.txt: 39205) -.porn99.net -# ||porn88.net^$third-party (easylistchina+easylist.txt: 39204) -.porn88.net -# ||porn-site-builder.com^$third-party (easylistchina+easylist.txt: 39203) -.porn-site-builder.com -# ||porn-hitz.com^$third-party (easylistchina+easylist.txt: 39202) -.porn-hitz.com -# ||porn-ad.org^$third-party (easylistchina+easylist.txt: 39201) -.porn-ad.org -# ||porkolt.com^$third-party (easylistchina+easylist.txt: 39200) -.porkolt.com -# ||popupclick.ru^$third-party (easylistchina+easylist.txt: 39199) -.popupclick.ru -# ||poppcheck.de^$third-party (easylistchina+easylist.txt: 39198) -.poppcheck.de -# ||popdown.biz^$third-party (easylistchina+easylist.txt: 39197) -.popdown.biz -# ||popander.com^$third-party (easylistchina+easylist.txt: 39196) -.popander.com -# ||popander.biz^$third-party (easylistchina+easylist.txt: 39195) -.popander.biz -# ||pop-bazar.net^$third-party (easylistchina+easylist.txt: 39194) -.pop-bazar.net -# ||poonproscash.com^$third-party (easylistchina+easylist.txt: 39193) -.poonproscash.com -# ||polimantu.com^$third-party (easylistchina+easylist.txt: 39192) -.polimantu.com -# ||pnads.com^$third-party (easylistchina+easylist.txt: 39191) -.pnads.com -# ||plugrush.com^$third-party (easylistchina+easylist.txt: 39190) -.plugrush.com -# ||plantaosexy.com^$third-party (easylistchina+easylist.txt: 39189) -.plantaosexy.com -# ||plachetde.biz^$third-party (easylistchina+easylist.txt: 39188) -.plachetde.biz -# ||pinkhoneypots.com^$third-party (easylistchina+easylist.txt: 39187) -.pinkhoneypots.com -# ||pictureturn.com^$third-party (easylistchina+easylist.txt: 39186) -.pictureturn.com -# ||philstraffic.com^$third-party (easylistchina+easylist.txt: 39185) -.philstraffic.com -# ||pepipo.com^$third-party (easylistchina+easylist.txt: 39184) -.pepipo.com -# ||pecash.com^$third-party (easylistchina+easylist.txt: 39183) -.pecash.com -# ||partnercash.de^$third-party (easylistchina+easylist.txt: 39182) -.partnercash.de -# ||partnercash.com^$third-party (easylistchina+easylist.txt: 39181) -.partnercash.com -# ||parkingpremium.com^$third-party (easylistchina+easylist.txt: 39180) -.parkingpremium.com -# ||panoll.com^$third-party (easylistchina+easylist.txt: 39179) -.panoll.com -# ||paid-to-promote.net^$third-party (easylistchina+easylist.txt: 39178) -.paid-to-promote.net -# ||p51d20aa4.website^$third-party (easylistchina+easylist.txt: 39177) -.p51d20aa4.website -# ||ozonru.eu^$third-party (easylistchina+easylist.txt: 39176) -.ozonru.eu -# ||ozon.ru^$third-party (easylistchina+easylist.txt: 39174) -.ozon.ru -# ||ozelmedikal.com^$third-party (easylistchina+easylist.txt: 39173) -.ozelmedikal.com -# ||owpawuk.ru^$third-party (easylistchina+easylist.txt: 39172) -.owpawuk.ru -# ||owlopadjet.info^$third-party (easylistchina+easylist.txt: 39171) -.owlopadjet.info -# ||outster.com^$third-party (easylistchina+easylist.txt: 39170) -.outster.com -# ||otherprofit.com^$third-party (easylistchina+easylist.txt: 39169) -.otherprofit.com -# ||otaserve.net^$third-party (easylistchina+easylist.txt: 39168) -.otaserve.net -# ||orodi.ru^$third-party (easylistchina+easylist.txt: 39167) -.orodi.ru -# ||ordermc.com^$third-party (easylistchina+easylist.txt: 39166) -.ordermc.com -# ||onyarysh.ru^$third-party (easylistchina+easylist.txt: 39165) -.onyarysh.ru -# ||onhercam.com^$third-party (easylistchina+easylist.txt: 39164) -.onhercam.com -# ||omynews.net^$third-party (easylistchina+easylist.txt: 39163) -.omynews.net -# ||okeo.ru^$third-party (easylistchina+easylist.txt: 39162) -.okeo.ru -# ||odzb5nkp.com^$third-party (easylistchina+easylist.txt: 39161) -.odzb5nkp.com -# ||oddads.net^$third-party (easylistchina+easylist.txt: 39160) -.oddads.net -# ||o333o.com^$third-party (easylistchina+easylist.txt: 39159) -.o333o.com -# ||nvp2auf5.com^$third-party (easylistchina+easylist.txt: 39158) -.nvp2auf5.com -# ||nummobile.com^$third-party (easylistchina+easylist.txt: 39157) -.nummobile.com -# ||nsfwads.com^$third-party (easylistchina+easylist.txt: 39156) -.nsfwads.com -# ||nscash.com^$third-party (easylistchina+easylist.txt: 39155) -.nscash.com -# ||nkk31jjp.com^$third-party (easylistchina+easylist.txt: 39154) -.nkk31jjp.com -# ||njmaq.com^$third-party (easylistchina+easylist.txt: 39153) -.njmaq.com -# ||ningme.ru^$third-party (easylistchina+easylist.txt: 39152) -.ningme.ru -# ||nikkiscash.com^$third-party (easylistchina+easylist.txt: 39151) -.nikkiscash.com -# ||ngbn.net^$third-party (easylistchina+easylist.txt: 39150) -.ngbn.net -# ||newsexbook.com^$third-party (easylistchina+easylist.txt: 39149) -.newsexbook.com -# ||newnudecash.com^$third-party (easylistchina+easylist.txt: 39148) -.newnudecash.com -# ||newagerevenue.com^$third-party (easylistchina+easylist.txt: 39147) -.newagerevenue.com -# ||newads.bangbros.com^$third-party (easylistchina+easylist.txt: 39146) -.newads.bangbros.com -# ||neuesdate.com^$third-party (easylistchina+easylist.txt: 39145) -.neuesdate.com -# ||netosdesalim.info^$third-party (easylistchina+easylist.txt: 39144) -.netosdesalim.info -# ||nature-friend.com^$third-party (easylistchina+easylist.txt: 39143) -.nature-friend.com -# ||nastydollars.com^$third-party (easylistchina+easylist.txt: 39142) -.nastydollars.com -# ||n9nedegrees.com^$third-party (easylistchina+easylist.txt: 39141) -.n9nedegrees.com -# ||mywebclick.net^$third-party (easylistchina+easylist.txt: 39140) -.mywebclick.net -# ||myprecisionads.com^$third-party (easylistchina+easylist.txt: 39139) -.myprecisionads.com -# ||mymirror.biz^$third-party (easylistchina+easylist.txt: 39138) -.mymirror.biz -# ||myadultbanners.com^$third-party (easylistchina+easylist.txt: 39137) -.myadultbanners.com -# ||mtree.com^$third-party (easylistchina+easylist.txt: 39136) -.mtree.com -# ||mtoor.com^$third-party (easylistchina+easylist.txt: 39135) -.mtoor.com -# ||msquaredproductions.com^$third-party (easylistchina+easylist.txt: 39134) -.msquaredproductions.com -# ||mrskincash.com^$third-party (easylistchina+easylist.txt: 39133) -.mrskincash.com -# ||mpmcash.com^$third-party (easylistchina+easylist.txt: 39132) -.mpmcash.com -# ||mp3vicio.com^$third-party (easylistchina+easylist.txt: 39131) -.mp3vicio.com -# ||morehitserver.com^$third-party (easylistchina+easylist.txt: 39130) -.morehitserver.com -# ||mopilod.com^$third-party (easylistchina+easylist.txt: 39129) -.mopilod.com -# ||mobred.net^$third-party (easylistchina+easylist.txt: 39128) -.mobred.net -# ||mobilerevenu.com^$third-party (easylistchina+easylist.txt: 39127) -.mobilerevenu.com -# ||mobbobr.com^$third-party (easylistchina+easylist.txt: 39126) -.mobbobr.com -# ||mobalives.com^$third-party (easylistchina+easylist.txt: 39125) -.mobalives.com -# ||mo8mwxi1.com^$third-party (easylistchina+easylist.txt: 39124) -.mo8mwxi1.com -# ||mmaaxx.com^$third-party (easylistchina+easylist.txt: 39123) -.mmaaxx.com -# ||millioncash.ru^$third-party (easylistchina+easylist.txt: 39122) -.millioncash.ru -# ||might-stay.info^$third-party (easylistchina+easylist.txt: 39121) -.might-stay.info -# ||meubonus.com^$third-party (easylistchina+easylist.txt: 39120) -.meubonus.com -# ||methodcash.com^$third-party (easylistchina+easylist.txt: 39119) -.methodcash.com -# ||meta4-group.com^$third-party (easylistchina+easylist.txt: 39118) -.meta4-group.com -# ||menteret.com^$third-party (easylistchina+easylist.txt: 39117) -.menteret.com -# ||meineserver.com^$third-party (easylistchina+easylist.txt: 39116) -.meineserver.com -# ||megoads.eu^$third-party (easylistchina+easylist.txt: 39115) -.megoads.eu -# ||mediumpimpin.com^$third-party (easylistchina+easylist.txt: 39114) -.mediumpimpin.com -# ||mediagra.com^$third-party (easylistchina+easylist.txt: 39113) -.mediagra.com -# ||media-click.ru^$third-party (easylistchina+easylist.txt: 39112) -.media-click.ru -# ||meccahoo.com^$third-party (easylistchina+easylist.txt: 39111) -.meccahoo.com -# ||mdlsrv.com^$third-party (easylistchina+easylist.txt: 39110) -.mdlsrv.com -# ||mc-nudes.com^$third-party (easylistchina+easylist.txt: 39109) -.mc-nudes.com -# ||mb103.com^$third-party (easylistchina+easylist.txt: 39108) -.mb103.com -# ||mazetin.ru^$third-party (easylistchina+easylist.txt: 39107) -.mazetin.ru -# ||maxiadv.com^$third-party (easylistchina+easylist.txt: 39106) -.maxiadv.com -# ||maxcash.com^$third-party (easylistchina+easylist.txt: 39105) -.maxcash.com -# ||matrix-cash.com^$third-party (easylistchina+easylist.txt: 39104) -.matrix-cash.com -# ||matrimoniale3x.ro^$third-party (easylistchina+easylist.txt: 39103) -.matrimoniale3x.ro -# ||masterwanker.com^$third-party (easylistchina+easylist.txt: 39102) -.masterwanker.com -# ||markswebcams.com^$third-party (easylistchina+easylist.txt: 39101) -.markswebcams.com -# ||manfys.com^$third-party (easylistchina+easylist.txt: 39100) -.manfys.com -# ||mallorcash.com^$third-party (easylistchina+easylist.txt: 39099) -.mallorcash.com -# ||mallcom.com^$third-party (easylistchina+easylist.txt: 39098) -.mallcom.com -# ||mahnatka.ru^$third-party (easylistchina+easylist.txt: 39097) -.mahnatka.ru -# ||magical-sky.com^$third-party (easylistchina+easylist.txt: 39096) -.magical-sky.com -# ||madbanner.com^$third-party (easylistchina+easylist.txt: 39095) -.madbanner.com -# ||lyubnozo.ru^$third-party (easylistchina+easylist.txt: 39094) -.lyubnozo.ru -# ||luvcom.com^$third-party (easylistchina+easylist.txt: 39093) -.luvcom.com -# ||luvcash.com^$third-party (easylistchina+easylist.txt: 39092) -.luvcash.com -# ||lucidcommerce.com^$third-party (easylistchina+easylist.txt: 39091) -.lucidcommerce.com -# ||lsawards.com^$third-party (easylistchina+easylist.txt: 39090) -.lsawards.com -# ||lovercash.com^$third-party (easylistchina+easylist.txt: 39089) -.lovercash.com -# ||lovecam.com.br^$third-party (easylistchina+easylist.txt: 39088) -.lovecam.com.br -# ||loveadverts.com^$third-party (easylistchina+easylist.txt: 39087) -.loveadverts.com -# ||lostun.com^$third-party (easylistchina+easylist.txt: 39086) -.lostun.com -# ||loading-delivery1.com^$third-party (easylistchina+easylist.txt: 39085) -.loading-delivery1.com -# ||loa-traffic.com^$third-party (easylistchina+easylist.txt: 39084) -.loa-traffic.com -# ||lizads.com^$third-party (easylistchina+easylist.txt: 39083) -.lizads.com -# ||livetraf.com^$third-party (easylistchina+easylist.txt: 39082) -.livetraf.com -# ||livepromotools.com^$third-party (easylistchina+easylist.txt: 39081) -.livepromotools.com -# ||liveprivates.com^$third-party (easylistchina+easylist.txt: 39080) -.liveprivates.com -# ||livejasmin.tv^$third-party (easylistchina+easylist.txt: 39079) -.livejasmin.tv -# ||livecam.com^$third-party (easylistchina+easylist.txt: 39078) -.livecam.com -# ||links-and-traffic.com^$third-party (easylistchina+easylist.txt: 39077) -.links-and-traffic.com -# ||limon.biz^$third-party (easylistchina+easylist.txt: 39076) -.limon.biz -# ||lifepromo.biz^$third-party (easylistchina+easylist.txt: 39075) -.lifepromo.biz -# ||lickbylick.com^$third-party (easylistchina+easylist.txt: 39074) -.lickbylick.com -# ||legendarylars.com^$third-party (easylistchina+easylist.txt: 39073) -.legendarylars.com -# ||leche69.com^$third-party (easylistchina+easylist.txt: 39072) -.leche69.com -# ||lavantat.com^$third-party (easylistchina+easylist.txt: 39071) -.lavantat.com -# ||kwot.biz^$third-party (easylistchina+easylist.txt: 39070) -.kwot.biz -# ||kuhnivsemisrazu.ru^$third-party (easylistchina+easylist.txt: 39069) -.kuhnivsemisrazu.ru -# ||kolort.ru^$third-party (easylistchina+easylist.txt: 39068) -.kolort.ru -# ||kolitat.com^$third-party (easylistchina+easylist.txt: 39067) -.kolitat.com -# ||kolestence.com^$third-party (easylistchina+easylist.txt: 39066) -.kolestence.com -# ||kliklink.ru^$third-party (easylistchina+easylist.txt: 39065) -.kliklink.ru -# ||kinopokaz.org^$third-party (easylistchina+easylist.txt: 39064) -.kinopokaz.org -# ||kingpinmedia.net^$third-party (easylistchina+easylist.txt: 39063) -.kingpinmedia.net -# ||kaplay.com^$third-party (easylistchina+easylist.txt: 39062) -.kaplay.com -# ||kadam.ru^$third-party (easylistchina+easylist.txt: 39061) -.kadam.ru -# ||k9x.net^$third-party (easylistchina+easylist.txt: 39060) -.k9x.net -# ||jz9ugaqb.com^$third-party (easylistchina+easylist.txt: 39059) -.jz9ugaqb.com -# ||justresa.com^$third-party (easylistchina+easylist.txt: 39058) -.justresa.com -# ||juicycash.net^$third-party (easylistchina+easylist.txt: 39057) -.juicycash.net -# ||juicyads.com^$third-party (easylistchina+easylist.txt: 39056) -.juicyads.com -# ||joyourself.com^$third-party (easylistchina+easylist.txt: 39055) -.joyourself.com -# ||jowapt.com^$third-party (easylistchina+easylist.txt: 39054) -.jowapt.com -# ||joinnowinstantly.com^$third-party (easylistchina+easylist.txt: 39053) -.joinnowinstantly.com -# ||jfresi.com^$third-party (easylistchina+easylist.txt: 39052) -.jfresi.com -# ||jerrcotch.com^$third-party (easylistchina+easylist.txt: 39051) -.jerrcotch.com -# ||jaymancash.com^$third-party (easylistchina+easylist.txt: 39050) -.jaymancash.com -# ||javbucks.com^$third-party (easylistchina+easylist.txt: 39049) -.javbucks.com -# ||jackao.net^$third-party (easylistchina+easylist.txt: 39048) -.jackao.net -# ||ixspublic.com^$third-party (easylistchina+easylist.txt: 39047) -.ixspublic.com -# ||iwinnersadvantage.com^$third-party (easylistchina+easylist.txt: 39046) -.iwinnersadvantage.com -# ||itw.me^$third-party (easylistchina+easylist.txt: 39045) -.itw.me -# ||itslive.com^$third-party (easylistchina+easylist.txt: 39044) -.itslive.com -# ||itrxx.com^$third-party (easylistchina+easylist.txt: 39043) -.itrxx.com -# ||itmcash.com^$third-party (easylistchina+easylist.txt: 39042) -.itmcash.com -# ||iprofit.cc^$third-party (easylistchina+easylist.txt: 39041) -.iprofit.cc -# ||intrapromotion.com^$third-party (easylistchina+easylist.txt: 39040) -.intrapromotion.com -# ||internebula.net^$third-party (easylistchina+easylist.txt: 39039) -.internebula.net -# ||intellichatadult.com^$third-party (easylistchina+easylist.txt: 39038) -.intellichatadult.com -# ||inheart.ru^$third-party (easylistchina+easylist.txt: 39037) -.inheart.ru -# ||impotencehelp.info^$third-party (easylistchina+easylist.txt: 39036) -.impotencehelp.info -# ||ilovecheating.com^$third-party (easylistchina+easylist.txt: 39035) -.ilovecheating.com -# ||iheartbucks.com^$third-party (easylistchina+easylist.txt: 39034) -.iheartbucks.com -# ||igiplay.net^$third-party (easylistchina+easylist.txt: 39033) -.igiplay.net -# ||idolbucks.com^$third-party (easylistchina+easylist.txt: 39032) -.idolbucks.com -# ||ideal-sexe.com^$third-party (easylistchina+easylist.txt: 39031) -.ideal-sexe.com -# ||ictowaz.ru^$third-party (easylistchina+easylist.txt: 39030) -.ictowaz.ru -# ||icqadvert.org^$third-party (easylistchina+easylist.txt: 39029) -.icqadvert.org -# ||icetraffic.com^$third-party (easylistchina+easylist.txt: 39028) -.icetraffic.com -# ||hubtraffic.com^$third-party (easylistchina+easylist.txt: 39027) -.hubtraffic.com -# ||hsmclick.com^$third-party (easylistchina+easylist.txt: 39026) -.hsmclick.com -# ||hotsocials.com^$third-party (easylistchina+easylist.txt: 39025) -.hotsocials.com -# ||hot-socials.com^$third-party (easylistchina+easylist.txt: 39024) -.hot-socials.com -# ||hot-dances.com^$third-party (easylistchina+easylist.txt: 39023) -.hot-dances.com -# ||hostave4.net^$third-party (easylistchina+easylist.txt: 39022) -.hostave4.net -# ||host-go.info^$third-party (easylistchina+easylist.txt: 39021) -.host-go.info -# ||hornyspots.com^$third-party (easylistchina+easylist.txt: 39020) -.hornyspots.com -# ||hornymatches.com^$third-party (easylistchina+easylist.txt: 39019) -.hornymatches.com -# ||hoptopboy.com^$third-party (easylistchina+easylist.txt: 39018) -.hoptopboy.com -# ||hopilos.com^$third-party (easylistchina+easylist.txt: 39017) -.hopilos.com -# ||hookupbucks.com^$third-party (easylistchina+easylist.txt: 39016) -.hookupbucks.com -# ||home-soon.com^$third-party (easylistchina+easylist.txt: 39015) -.home-soon.com -# ||hizlireklam.com^$third-party (easylistchina+easylist.txt: 39014) -.hizlireklam.com -# ||hipals.com^$third-party (easylistchina+easylist.txt: 39013) -.hipals.com -# ||highnets.com^$third-party (easylistchina+easylist.txt: 39012) -.highnets.com -# ||hiddenbucks.com^$third-party (easylistchina+easylist.txt: 39011) -.hiddenbucks.com -# ||herezera.com^$third-party (easylistchina+easylist.txt: 39010) -.herezera.com -# ||hentaibiz.com^$third-party (easylistchina+easylist.txt: 39009) -.hentaibiz.com -# ||helltraffic.com^$third-party (easylistchina+easylist.txt: 39008) -.helltraffic.com -# ||gzbop.com^$third-party (easylistchina+easylist.txt: 39007) -.gzbop.com -# ||gunzblazingpromo.com^$third-party (easylistchina+easylist.txt: 39006) -.gunzblazingpromo.com -# ||gtsads.com^$third-party (easylistchina+easylist.txt: 39005) -.gtsads.com -# ||gridlockparadise.com^$third-party (easylistchina+easylist.txt: 39004) -.gridlockparadise.com -# ||greatcpm.com^$third-party (easylistchina+easylist.txt: 39003) -.greatcpm.com -# ||govereign.com^$third-party (easylistchina+easylist.txt: 39002) -.govereign.com -# ||golderotica.com^$third-party (easylistchina+easylist.txt: 39001) -.golderotica.com -# ||goklics.ru^$third-party (easylistchina+easylist.txt: 39000) -.goklics.ru -# ||goallurl.ru^$third-party (easylistchina+easylist.txt: 38999) -.goallurl.ru -# ||go2euroshop.com^$third-party (easylistchina+easylist.txt: 38998) -.go2euroshop.com -# ||glbtrk.com^$third-party (easylistchina+easylist.txt: 38997) -.glbtrk.com -# ||gl-cash.com^$third-party (easylistchina+easylist.txt: 38996) -.gl-cash.com -# ||ggwcash.com^$third-party (easylistchina+easylist.txt: 38995) -.ggwcash.com -# ||gfhdkse.com^$third-party (easylistchina+easylist.txt: 38994) -.gfhdkse.com -# ||getiton.com^$third-party (easylistchina+easylist.txt: 38993) -.getiton.com -# ||geoinventory.com^$third-party (easylistchina+easylist.txt: 38992) -.geoinventory.com -# ||geofamily.ru^$third-party (easylistchina+easylist.txt: 38991) -.geofamily.ru -# ||geoaddicted.net^$third-party (easylistchina+easylist.txt: 38990) -.geoaddicted.net -# ||genialradio.com^$third-party (easylistchina+easylist.txt: 38989) -.genialradio.com -# ||gefnaro.com^$third-party (easylistchina+easylist.txt: 38988) -.gefnaro.com -# ||gayxperience.com^$third-party (easylistchina+easylist.txt: 38987) -.gayxperience.com -# ||gayadpros.com^$third-party (easylistchina+easylist.txt: 38986) -.gayadpros.com -# ||ganardineroreal.com^$third-party (easylistchina+easylist.txt: 38985) -.ganardineroreal.com -# ||gamblespot.ru^$third-party (easylistchina+easylist.txt: 38984) -.gamblespot.ru -# ||g726n8cy.com^$third-party (easylistchina+easylist.txt: 38983) -.g726n8cy.com -# ||g6ni40i7.com^$third-party (easylistchina+easylist.txt: 38982) -.g6ni40i7.com -# ||funnypickuplinesforgirls.com^$third-party (easylistchina+easylist.txt: 38981) -.funnypickuplinesforgirls.com -# ||funcel.mobi^$third-party (easylistchina+easylist.txt: 38980) -.funcel.mobi -# ||fuelbuck.com^$third-party (easylistchina+easylist.txt: 38979) -.fuelbuck.com -# ||fuckyoucash.com^$third-party (easylistchina+easylist.txt: 38978) -.fuckyoucash.com -# ||fuckermedia.com^$third-party (easylistchina+easylist.txt: 38977) -.fuckermedia.com -# ||fuckbookdating.com^$third-party (easylistchina+easylist.txt: 38976) -.fuckbookdating.com -# ||fuckbook.cm^$third-party (easylistchina+easylist.txt: 38975) -.fuckbook.cm -# ||frutrun.com^$third-party (easylistchina+easylist.txt: 38974) -.frutrun.com -# ||frivol-ads.com^$third-party (easylistchina+easylist.txt: 38973) -.frivol-ads.com -# ||frestime.com^$third-party (easylistchina+easylist.txt: 38972) -.frestime.com -# ||frestacero.com^$third-party (easylistchina+easylist.txt: 38971) -.frestacero.com -# ||free-porn-vidz.com^$third-party (easylistchina+easylist.txt: 38970) -.free-porn-vidz.com -# ||freakads.com^$third-party (easylistchina+easylist.txt: 38969) -.freakads.com -# ||forgetstore.com^$third-party (easylistchina+easylist.txt: 38968) -.forgetstore.com -# ||fncash.com^$third-party (easylistchina+easylist.txt: 38967) -.fncash.com -# ||fmscash.com^$third-party (easylistchina+easylist.txt: 38966) -.fmscash.com -# ||flirtingsms.com^$third-party (easylistchina+easylist.txt: 38965) -.flirtingsms.com -# ||flirt4free.com^$third-party (easylistchina+easylist.txt: 38964) -.flirt4free.com -# ||flirt4e.com^$third-party (easylistchina+easylist.txt: 38963) -.flirt4e.com -# ||flipflapflo.net^$third-party (easylistchina+easylist.txt: 38962) -.flipflapflo.net -# ||flipflapflo.info^$third-party (easylistchina+easylist.txt: 38961) -.flipflapflo.info -# ||fleshlightgirls.com^$third-party (easylistchina+easylist.txt: 38960) -.fleshlightgirls.com -# ||fleshcash.com^$third-party (easylistchina+easylist.txt: 38959) -.fleshcash.com -# ||flashadtools.com^$third-party (easylistchina+easylist.txt: 38958) -.flashadtools.com -# ||findandtry.com^$third-party (easylistchina+easylist.txt: 38957) -.findandtry.com -# ||filthads.com^$third-party (easylistchina+easylist.txt: 38956) -.filthads.com -# ||fickads.net^$third-party (easylistchina+easylist.txt: 38955) -.fickads.net -# ||felixflow.com^$third-party (easylistchina+easylist.txt: 38954) -.felixflow.com -# ||feeder.xxx^$third-party (easylistchina+easylist.txt: 38953) -.feeder.xxx -# ||fanmalinin.ru^$third-party (easylistchina+easylist.txt: 38952) -.fanmalinin.ru -# ||facetz.net^$third-party (easylistchina+easylist.txt: 38951) -.facetz.net -# ||faceporn.com^$third-party (easylistchina+easylist.txt: 38950) -.faceporn.com -# ||facebookofsex.com^$third-party (easylistchina+easylist.txt: 38949) -.facebookofsex.com -# ||eyemedias.com^$third-party (easylistchina+easylist.txt: 38948) -.eyemedias.com -# ||exsifsi.ru^$third-party (easylistchina+easylist.txt: 38947) -.exsifsi.ru -# ||exoticads.com^$third-party (easylistchina+easylist.txt: 38946) -.exoticads.com -# ||exogripper.com^$third-party (easylistchina+easylist.txt: 38945) -.exogripper.com -# ||exoclickz.com^$third-party (easylistchina+easylist.txt: 38944) -.exoclickz.com -# ||exclusivepussy.com^$third-party (easylistchina+easylist.txt: 38943) -.exclusivepussy.com -# ||exchangecash.de^$third-party (easylistchina+easylist.txt: 38942) -.exchangecash.de -# ||euro4ads.de^$third-party (easylistchina+easylist.txt: 38941) -.euro4ads.de -# ||euro-rx.com^$third-party (easylistchina+easylist.txt: 38940) -.euro-rx.com -# ||eu2xml.com^$third-party (easylistchina+easylist.txt: 38939) -.eu2xml.com -# ||escortso.com^$third-party (easylistchina+easylist.txt: 38938) -.escortso.com -# ||erotizer.info^$third-party (easylistchina+easylist.txt: 38937) -.erotizer.info -# ||erotikdating.com^$third-party (easylistchina+easylist.txt: 38936) -.erotikdating.com -# ||erosadv.com^$third-party (easylistchina+easylist.txt: 38935) -.erosadv.com -# ||eragi.ru^$third-party (easylistchina+easylist.txt: 38934) -.eragi.ru -# ||enoratraffic.com^$third-party (easylistchina+easylist.txt: 38933) -.enoratraffic.com -# ||emediawebs.com^$third-party (easylistchina+easylist.txt: 38932) -.emediawebs.com -# ||eltepo.ru^$third-party (easylistchina+easylist.txt: 38931) -.eltepo.ru -# ||elekted.com^$third-party (easylistchina+easylist.txt: 38930) -.elekted.com -# ||ecortb.com^$third-party (easylistchina+easylist.txt: 38929) -.ecortb.com -# ||ebocornac.com^$third-party (easylistchina+easylist.txt: 38928) -.ebocornac.com -# ||ebdr2.com^$third-party (easylistchina+easylist.txt: 38927) -.ebdr2.com -# ||easyflirt.com^$third-party (easylistchina+easylist.txt: 38926) -.easyflirt.com -# ||easy-dating.org^$third-party (easylistchina+easylist.txt: 38925) -.easy-dating.org -# ||eadulttraffic.com^$third-party (easylistchina+easylist.txt: 38924) -.eadulttraffic.com -# ||dvdkinoteatr.com^$third-party (easylistchina+easylist.txt: 38923) -.dvdkinoteatr.com -# ||dtiserv2.com^$third-party (easylistchina+easylist.txt: 38922) -.dtiserv2.com -# ||dro4icho.ru^$third-party (easylistchina+easylist.txt: 38921) -.dro4icho.ru -# ||drevil.to^$third-party (easylistchina+easylist.txt: 38920) -.drevil.to -# ||doublegear.com^$third-party (easylistchina+easylist.txt: 38919) -.doublegear.com -# ||double-check.com^$third-party (easylistchina+easylist.txt: 38918) -.double-check.com -# ||dosugcz.biz^$third-party (easylistchina+easylist.txt: 38917) -.dosugcz.biz -# ||dofolo.ru^$third-party (easylistchina+easylist.txt: 38916) -.dofolo.ru -# ||divertura.com^$third-party (easylistchina+easylist.txt: 38915) -.divertura.com -# ||divascam.com^$third-party (easylistchina+easylist.txt: 38914) -.divascam.com -# ||discreetlocalgirls.com^$third-party (easylistchina+easylist.txt: 38913) -.discreetlocalgirls.com -# ||direction-x.com^$third-party (easylistchina+easylist.txt: 38912) -.direction-x.com -# ||directchat.tv^$third-party (easylistchina+easylist.txt: 38911) -.directchat.tv -# ||directadvert.ru^$third-party (easylistchina+easylist.txt: 38910) -.directadvert.ru -# ||digitaldesire.com^$third-party (easylistchina+easylist.txt: 38909) -.digitaldesire.com -# ||desiad.net^$third-party (easylistchina+easylist.txt: 38908) -.desiad.net -# ||depravedwhores.com^$third-party (easylistchina+easylist.txt: 38907) -.depravedwhores.com -# ||depilflash.tv^$third-party (easylistchina+easylist.txt: 38906) -.depilflash.tv -# ||denotyro.com^$third-party (easylistchina+easylist.txt: 38905) -.denotyro.com -# ||demanier.com^$third-party (easylistchina+easylist.txt: 38904) -.demanier.com -# ||deecash.com^$third-party (easylistchina+easylist.txt: 38903) -.deecash.com -# ||dblpmp.com^$third-party (easylistchina+easylist.txt: 38902) -.dblpmp.com -# ||datingidol.com^$third-party (easylistchina+easylist.txt: 38901) -.datingidol.com -# ||datingamateurs.com^$third-party (easylistchina+easylist.txt: 38900) -.datingamateurs.com -# ||datingadnetwork.com^$third-party (easylistchina+easylist.txt: 38899) -.datingadnetwork.com -# ||dating-adv.com^$third-party (easylistchina+easylist.txt: 38898) -.dating-adv.com -# ||datexchanges.net^$third-party (easylistchina+easylist.txt: 38897) -.datexchanges.net -# ||datetraders.com^$third-party (easylistchina+easylist.txt: 38896) -.datetraders.com -# ||datefunclub.com^$third-party (easylistchina+easylist.txt: 38895) -.datefunclub.com -# ||data.13dc235d.xyz^$third-party (easylistchina+easylist.txt: 38894) -.data.13dc235d.xyz -# ||data-ero-advertising.com^$third-party (easylistchina+easylist.txt: 38893) -.data-ero-advertising.com -# ||darangi.ru^$third-party (easylistchina+easylist.txt: 38892) -.darangi.ru -# ||danzabucks.com^$third-party (easylistchina+easylist.txt: 38891) -.danzabucks.com -# ||dana123.com^$third-party (easylistchina+easylist.txt: 38890) -.dana123.com -# ||dallavel.com^$third-party (easylistchina+easylist.txt: 38889) -.dallavel.com -# ||daffaite.com^$third-party (easylistchina+easylist.txt: 38888) -.daffaite.com -# ||d3b3e6340.website^$third-party (easylistchina+easylist.txt: 38887) -.d3b3e6340.website -# ||d29gqcij.com^$third-party (easylistchina+easylist.txt: 38886) -.d29gqcij.com -# ||d0main.ru^$third-party (easylistchina+easylist.txt: 38885) -.d0main.ru -# ||d-agency.net^$third-party (easylistchina+easylist.txt: 38884) -.d-agency.net -# ||cybernetentertainment.com^$third-party (easylistchina+easylist.txt: 38883) -.cybernetentertainment.com -# ||cyberbidhost.com^$third-party (easylistchina+easylist.txt: 38882) -.cyberbidhost.com -# ||cwgads.com^$third-party (easylistchina+easylist.txt: 38881) -.cwgads.com -# ||ctyzd.com^$third-party (easylistchina+easylist.txt: 38880) -.ctyzd.com -# ||crtracklink.com^$third-party (easylistchina+easylist.txt: 38879) -.crtracklink.com -# ||crocoads.com^$third-party (easylistchina+easylist.txt: 38878) -.crocoads.com -# ||creoads.com^$third-party (easylistchina+easylist.txt: 38877) -.creoads.com -# ||crakcash.com^$third-party (easylistchina+easylist.txt: 38876) -.crakcash.com -# ||crakbanner.com^$third-party (easylistchina+easylist.txt: 38875) -.crakbanner.com -# ||cpl1.ru^$third-party (easylistchina+easylist.txt: 38874) -.cpl1.ru -# ||cpacoreg.com^$third-party (easylistchina+easylist.txt: 38873) -.cpacoreg.com -# ||comunicazio.com^$third-party (easylistchina+easylist.txt: 38872) -.comunicazio.com -# ||colpory.com^$third-party (easylistchina+easylist.txt: 38871) -.colpory.com -# ||coloredguitar.com^$third-party (easylistchina+easylist.txt: 38870) -.coloredguitar.com -# ||coldhardcash.com^$third-party (easylistchina+easylist.txt: 38869) -.coldhardcash.com -# ||codelnet.com^$third-party (easylistchina+easylist.txt: 38868) -.codelnet.com -# ||cmdfnow.com^$third-party (easylistchina+easylist.txt: 38867) -.cmdfnow.com -# ||clicktrace.info^$third-party (easylistchina+easylist.txt: 38866) -.clicktrace.info -# ||clickthruserver.com^$third-party (easylistchina+easylist.txt: 38865) -.clickthruserver.com -# ||clicksvenue.com^$third-party (easylistchina+easylist.txt: 38864) -.clicksvenue.com -# ||clickpapa.com^$third-party (easylistchina+easylist.txt: 38863) -.clickpapa.com -# ||clickganic.com^$third-party (easylistchina+easylist.txt: 38862) -.clickganic.com -# ||clearac.com^$third-party (easylistchina+easylist.txt: 38861) -.clearac.com -# ||citysex.com^$third-party (easylistchina+easylist.txt: 38860) -.citysex.com -# ||chopstick16.com^$third-party (easylistchina+easylist.txt: 38859) -.chopstick16.com -# ||chestyry.com^$third-party (easylistchina+easylist.txt: 38858) -.chestyry.com -# ||che-ka.com^$third-party (easylistchina+easylist.txt: 38857) -.che-ka.com -# ||chatischat.com^$third-party (easylistchina+easylist.txt: 38856) -.chatischat.com -# ||cervicalknowledge.info^$third-party (easylistchina+easylist.txt: 38855) -.cervicalknowledge.info -# ||certified-apps.com^$third-party (easylistchina+easylist.txt: 38854) -.certified-apps.com -# ||cennter.com^$third-party (easylistchina+easylist.txt: 38853) -.cennter.com -# ||celogera.com^$third-party (easylistchina+easylist.txt: 38852) -.celogera.com -# ||celeb-ads.com^$third-party (easylistchina+easylist.txt: 38851) -.celeb-ads.com -# ||ceepq.com^$third-party (easylistchina+easylist.txt: 38850) -.ceepq.com -# ||cashtraff.com^$third-party (easylistchina+easylist.txt: 38849) -.cashtraff.com -# ||cashthat.com^$third-party (easylistchina+easylist.txt: 38848) -.cashthat.com -# ||cashlayer.com^$third-party (easylistchina+easylist.txt: 38847) -.cashlayer.com -# ||cash4movie.com^$third-party (easylistchina+easylist.txt: 38846) -.cash4movie.com -# ||cash-program.com^$third-party (easylistchina+easylist.txt: 38845) -.cash-program.com -# ||camzap.com^$third-party (easylistchina+easylist.txt: 38844) -.camzap.com -# ||camsitecash.com^$third-party (easylistchina+easylist.txt: 38843) -.camsitecash.com -# ||camsense.com^$third-party (easylistchina+easylist.txt: 38842) -.camsense.com -# ||campromos.nl^$third-party (easylistchina+easylist.txt: 38841) -.campromos.nl -# ||camprime.com^$third-party (easylistchina+easylist.txt: 38840) -.camprime.com -# ||camplacecash.com^$third-party (easylistchina+easylist.txt: 38839) -.camplacecash.com -# ||campartner.com^$third-party (easylistchina+easylist.txt: 38838) -.campartner.com -# ||camduty.com^$third-party (easylistchina+easylist.txt: 38837) -.camduty.com -# ||camdough.com^$third-party (easylistchina+easylist.txt: 38836) -.camdough.com -# ||camcrush.com^$third-party (easylistchina+easylist.txt: 38835) -.camcrush.com -# ||camads.net^$third-party (easylistchina+easylist.txt: 38834) -.camads.net -# ||cam4flat.com^$third-party (easylistchina+easylist.txt: 38833) -.cam4flat.com -# ||cam-lolita.net^$third-party (easylistchina+easylist.txt: 38832) -.cam-lolita.net -# ||bumskontakte.ch^$third-party (easylistchina+easylist.txt: 38831) -.bumskontakte.ch -# ||bumblecash.com^$third-party (easylistchina+easylist.txt: 38830) -.bumblecash.com -# ||brqvld0p.com^$third-party (easylistchina+easylist.txt: 38829) -.brqvld0p.com -# ||brothersincash.com^$third-party (easylistchina+easylist.txt: 38828) -.brothersincash.com -# ||brightcpm.net^$third-party (easylistchina+easylist.txt: 38827) -.brightcpm.net -# ||branzas.com^$third-party (easylistchina+easylist.txt: 38826) -.branzas.com -# ||bposterss.net^$third-party (easylistchina+easylist.txt: 38825) -.bposterss.net -# ||bookofsex.com^$third-party (easylistchina+easylist.txt: 38824) -.bookofsex.com -# ||boinkcash.com^$third-party (easylistchina+easylist.txt: 38823) -.boinkcash.com -# ||board-books.com^$third-party (easylistchina+easylist.txt: 38822) -.board-books.com -# ||blossoms.com^$third-party (easylistchina+easylist.txt: 38821) -.blossoms.com -# ||black-ghettos.info^$third-party (easylistchina+easylist.txt: 38820) -.black-ghettos.info -# ||biksibo.ru^$third-party (easylistchina+easylist.txt: 38819) -.biksibo.ru -# ||bgmtracker.com^$third-party (easylistchina+easylist.txt: 38818) -.bgmtracker.com -# ||betweendigital.com^$third-party (easylistchina+easylist.txt: 38817) -.betweendigital.com -# ||bestssn.com^$third-party (easylistchina+easylist.txt: 38816) -.bestssn.com -# ||bestholly.com^$third-party (easylistchina+easylist.txt: 38815) -.bestholly.com -# ||belasninfetas.org^$third-party (easylistchina+easylist.txt: 38814) -.belasninfetas.org -# ||belamicash.com^$third-party (easylistchina+easylist.txt: 38813) -.belamicash.com -# ||bcash4you.com^$third-party (easylistchina+easylist.txt: 38812) -.bcash4you.com -# ||baskodenta.com^$third-party (easylistchina+easylist.txt: 38811) -.baskodenta.com -# ||basesclick.ru^$third-party (easylistchina+easylist.txt: 38810) -.basesclick.ru -# ||banerator.net^$third-party (easylistchina+easylist.txt: 38809) -.banerator.net -# ||aztecash.com^$third-party (easylistchina+easylist.txt: 38808) -.aztecash.com -# ||azerbazer.com^$third-party (easylistchina+easylist.txt: 38807) -.azerbazer.com -# ||ax47mp-xp-21.com^$third-party (easylistchina+easylist.txt: 38806) -.ax47mp-xp-21.com -# ||awmpartners.com^$third-party (easylistchina+easylist.txt: 38805) -.awmpartners.com -# ||awmcenter.eu^$third-party (easylistchina+easylist.txt: 38804) -.awmcenter.eu -# ||augrenso.com^$third-party (easylistchina+easylist.txt: 38803) -.augrenso.com -# ||asiafriendfinder.com^$third-party (easylistchina+easylist.txt: 38802) -.asiafriendfinder.com -# ||are-ter.com^$third-party (easylistchina+easylist.txt: 38801) -.are-ter.com -# ||apromoweb.com^$third-party (easylistchina+easylist.txt: 38800) -.apromoweb.com -# ||antoball.com^$third-party (easylistchina+easylist.txt: 38799) -.antoball.com -# ||antaraimedia.com^$third-party (easylistchina+easylist.txt: 38798) -.antaraimedia.com -# ||angelpastel.com^$third-party (easylistchina+easylist.txt: 38797) -.angelpastel.com -# ||anastasia-international.com^$third-party (easylistchina+easylist.txt: 38796) -.anastasia-international.com -# ||amvotes.ru^$third-party (easylistchina+easylist.txt: 38795) -.amvotes.ru -# ||amtracking01.com^$third-party (easylistchina+easylist.txt: 38794) -.amtracking01.com -# ||allotraffic.com^$third-party (easylistchina+easylist.txt: 38793) -.allotraffic.com -# ||allosponsor.com^$third-party (easylistchina+easylist.txt: 38792) -.allosponsor.com -# ||alladultcash.com^$third-party (easylistchina+easylist.txt: 38791) -.alladultcash.com -# ||all-about-tech.com^$third-party (easylistchina+easylist.txt: 38790) -.all-about-tech.com -# ||alfatraffic.com^$third-party (easylistchina+easylist.txt: 38789) -.alfatraffic.com -# ||aipmedia.com^$third-party (easylistchina+easylist.txt: 38788) -.aipmedia.com -# ||aipbannerx.com^$third-party (easylistchina+easylist.txt: 38787) -.aipbannerx.com -# ||affiligay.net^$third-party (easylistchina+easylist.txt: 38786) -.affiligay.net -# ||affiliaxe.com^$third-party (easylistchina+easylist.txt: 38785) -.affiliaxe.com -# ||affiliation-int.com^$third-party (easylistchina+easylist.txt: 38784) -.affiliation-int.com -# ||affiliatewindow.com^$third-party (easylistchina+easylist.txt: 38783) -.affiliatewindow.com -# ||aeesy.com^$third-party (easylistchina+easylist.txt: 38782) -.aeesy.com -# ||adzs.com^$third-party (easylistchina+easylist.txt: 38781) -.adzs.com -# ||adxregie.com^$third-party (easylistchina+easylist.txt: 38780) -.adxregie.com -# ||adxpansion.com^$third-party (easylistchina+easylist.txt: 38779) -.adxpansion.com -# ||adxmarket.com^$third-party (easylistchina+easylist.txt: 38778) -.adxmarket.com -# ||adxite.com^$third-party (easylistchina+easylist.txt: 38777) -.adxite.com -# ||advsense.info^$third-party (easylistchina+easylist.txt: 38776) -.advsense.info -# ||advredir.com^$third-party (easylistchina+easylist.txt: 38775) -.advredir.com -# ||advprotraffic.com^$third-party (easylistchina+easylist.txt: 38774) -.advprotraffic.com -# ||advmania.com^$third-party (easylistchina+easylist.txt: 38773) -.advmania.com -# ||advmaker.ru^$third-party (easylistchina+easylist.txt: 38772) -.advmaker.ru -# ||advertrtb.com^$third-party (easylistchina+easylist.txt: 38771) -.advertrtb.com -# ||advertom.com^$third-party (easylistchina+easylist.txt: 38770) -.advertom.com -# ||advertisingsex.com^$third-party (easylistchina+easylist.txt: 38769) -.advertisingsex.com -# ||adventory.com^$third-party (easylistchina+easylist.txt: 38768) -.adventory.com -# ||adv777.com^$third-party (easylistchina+easylist.txt: 38767) -.adv777.com -# ||adv-plus.com^$third-party (easylistchina+easylist.txt: 38766) -.adv-plus.com -# ||adulttubetraffic.com^$third-party (easylistchina+easylist.txt: 38765) -.adulttubetraffic.com -# ||adulttiz.com^$third-party (easylistchina+easylist.txt: 38764) -.adulttiz.com -# ||adultsense.org^$third-party (easylistchina+easylist.txt: 38763) -.adultsense.org -# ||adultsense.com^$third-party (easylistchina+easylist.txt: 38762) -.adultsense.com -# ||adultpopunders.com^$third-party (easylistchina+easylist.txt: 38761) -.adultpopunders.com -# ||adultoafiliados.com.br^$third-party (easylistchina+easylist.txt: 38760) -.adultoafiliados.com.br -# ||adultmoviegroup.com^$third-party (easylistchina+easylist.txt: 38759) -.adultmoviegroup.com -# ||adultmediabuying.com^$third-party (easylistchina+easylist.txt: 38758) -.adultmediabuying.com -# ||adultlinkexchange.com^$third-party (easylistchina+easylist.txt: 38757) -.adultlinkexchange.com -# ||adultdatingtraffic.com^$third-party (easylistchina+easylist.txt: 38756) -.adultdatingtraffic.com -# ||adultcommercial.net^$third-party (easylistchina+easylist.txt: 38755) -.adultcommercial.net -# ||adultadvertising.net^$third-party (easylistchina+easylist.txt: 38754) -.adultadvertising.net -# ||adultadmedia.com^$third-party (easylistchina+easylist.txt: 38753) -.adultadmedia.com -# ||adultaccessnow.com^$third-party (easylistchina+easylist.txt: 38752) -.adultaccessnow.com -# ||adult3dcomics.com^$third-party (easylistchina+easylist.txt: 38751) -.adult3dcomics.com -# ||adsyst.biz^$third-party (easylistchina+easylist.txt: 38750) -.adsyst.biz -# ||adskape.ru^$third-party (easylistchina+easylist.txt: 38749) -.adskape.ru -# ||adshostview.com^$third-party (easylistchina+easylist.txt: 38748) -.adshostview.com -# ||adsgangsta.com^$third-party (easylistchina+easylist.txt: 38747) -.adsgangsta.com -# ||adsbr.info^$third-party (easylistchina+easylist.txt: 38746) -.adsbr.info -# ||adrent.net^$third-party (easylistchina+easylist.txt: 38745) -.adrent.net -# ||adpron.com^$third-party (easylistchina+easylist.txt: 38744) -.adpron.com -# ||adperiun.com^$third-party (easylistchina+easylist.txt: 38743) -.adperiun.com -# ||adparad.net^$third-party (easylistchina+easylist.txt: 38742) -.adparad.net -# ||adnetxchange.com^$third-party (easylistchina+easylist.txt: 38741) -.adnetxchange.com -# ||admez.com^$third-party (easylistchina+easylist.txt: 38740) -.admez.com -# ||adlook.net^$third-party (easylistchina+easylist.txt: 38739) -.adlook.net -# ||adjunky.com^$third-party (easylistchina+easylist.txt: 38738) -.adjunky.com -# ||adfux.com^$third-party (easylistchina+easylist.txt: 38737) -.adfux.com -# ||addbags.com^$third-party (easylistchina+easylist.txt: 38736) -.addbags.com -# ||adcell.de^$third-party (easylistchina+easylist.txt: 38735) -.adcell.de -# ||adbmi.com^$third-party (easylistchina+easylist.txt: 38734) -.adbmi.com -# ||adbars.net^$third-party (easylistchina+easylist.txt: 38733) -.adbars.net -# ||ad4partners.com^$third-party (easylistchina+easylist.txt: 38732) -.ad4partners.com -# ||ad001.ru^$third-party (easylistchina+easylist.txt: 38731) -.ad001.ru -# ||ad-u.com^$third-party (easylistchina+easylist.txt: 38730) -.ad-u.com -# ||ad-411.com^$third-party (easylistchina+easylist.txt: 38729) -.ad-411.com -# ||actionlocker.com^$third-party (easylistchina+easylist.txt: 38728) -.actionlocker.com -# ||acnescarsx.info^$third-party (easylistchina+easylist.txt: 38727) -.acnescarsx.info -# ||acmexxx.com^$third-party (easylistchina+easylist.txt: 38726) -.acmexxx.com -# ||abusedbabysitters.com^$third-party (easylistchina+easylist.txt: 38725) -.abusedbabysitters.com -# ||abgeobalancer.com^$third-party (easylistchina+easylist.txt: 38724) -.abgeobalancer.com -# ||abakys.ru^$third-party (easylistchina+easylist.txt: 38723) -.abakys.ru -# ||ab4tn.com^$third-party (easylistchina+easylist.txt: 38722) -.ab4tn.com -# ||aaovn.info^$third-party (easylistchina+easylist.txt: 38721) -.aaovn.info -# ||8ipztcc1.com^$third-party (easylistchina+easylist.txt: 38720) -.8ipztcc1.com -# ||89.248.172.46^$third-party (easylistchina+easylist.txt: 38719) -.89.248.172.46 -# ||85.17.210.202^$third-party (easylistchina+easylist.txt: 38718) -.85.17.210.202 -# ||80.77.113.200^$third-party (easylistchina+easylist.txt: 38717) -.80.77.113.200 -# ||7vws1j1j.com^$third-party (easylistchina+easylist.txt: 38716) -.7vws1j1j.com -# ||7cxcrejm.com^$third-party (easylistchina+easylist.txt: 38715) -.7cxcrejm.com -# ||777partners.com^$third-party (easylistchina+easylist.txt: 38714) -.777partners.com -# ||777partner.net^$third-party (easylistchina+easylist.txt: 38713) -.777partner.net -# ||777partner.com^$third-party (easylistchina+easylist.txt: 38712) -.777partner.com -# ||777-partners.net^$third-party (easylistchina+easylist.txt: 38711) -.777-partners.net -# ||777-partners.com^$third-party (easylistchina+easylist.txt: 38710) -.777-partners.com -# ||777-partner.net^$third-party (easylistchina+easylist.txt: 38709) -.777-partner.net -# ||777-partner.com^$third-party (easylistchina+easylist.txt: 38708) -.777-partner.com -# ||76.76.5.113^$third-party (easylistchina+easylist.txt: 38707) -.76.76.5.113 -# ||750industries.com^$third-party (easylistchina+easylist.txt: 38706) -.750industries.com -# ||699fy4ne.com^$third-party (easylistchina+easylist.txt: 38705) -.699fy4ne.com -# ||59zs1xei.com^$third-party (easylistchina+easylist.txt: 38704) -.59zs1xei.com -# ||4link.it^$third-party (easylistchina+easylist.txt: 38703) -.4link.it -# ||45i73jv6.com^$third-party (easylistchina+easylist.txt: 38702) -.45i73jv6.com -# ||40xbfzk8.com^$third-party (easylistchina+easylist.txt: 38701) -.40xbfzk8.com -# ||33traffic.com^$third-party (easylistchina+easylist.txt: 38700) -.33traffic.com -# ||24x7adservice.com^$third-party (easylistchina+easylist.txt: 38699) -.24x7adservice.com -# ||24smile.org^$third-party (easylistchina+easylist.txt: 38698) -.24smile.org -# ||247teencash.net^$third-party (easylistchina+easylist.txt: 38697) -.247teencash.net -# ||21sexturycash.com^$third-party (easylistchina+easylist.txt: 38696) -.21sexturycash.com -# ||212.150.34.117^$third-party (easylistchina+easylist.txt: 38695) -.212.150.34.117 -# ||206.217.206.137^$third-party (easylistchina+easylist.txt: 38694) -.206.217.206.137 -# ||1tizer.com^$third-party (easylistchina+easylist.txt: 38693) -.1tizer.com -# ||1loop.com^$third-party (easylistchina+easylist.txt: 38692) -.1loop.com -# ||195.228.74.26^$third-party (easylistchina+easylist.txt: 38691) -.195.228.74.26 -# ||18naked.com^$third-party (easylistchina+easylist.txt: 38690) -.18naked.com -# ||15yomodels.com^$third-party (easylistchina+easylist.txt: 38688) -.15yomodels.com -# ||123advertising.nl^$third-party (easylistchina+easylist.txt: 38687) -.123advertising.nl -# ||10y5gehv.com^$third-party (easylistchina+easylist.txt: 38686) -.10y5gehv.com -# ||100pour.com^$third-party (easylistchina+easylist.txt: 38685) -.100pour.com -# ||0llii0g6.com^$third-party (easylistchina+easylist.txt: 38684) -.0llii0g6.com -# ||zeroredirect1.com^$popup,third-party (easylistchina+easylist.txt: 38682) -.zeroredirect1.com -# ||zedo.com^$popup,third-party (easylistchina+easylist.txt: 38681) -.zedo.com -# ||z5x.net^$popup,third-party (easylistchina+easylist.txt: 38680) -.z5x.net -# ||yupiromo.ru^$popup,third-party (easylistchina+easylist.txt: 38679) -.yupiromo.ru -# ||yieldtraffic.com^$popup,third-party (easylistchina+easylist.txt: 38678) -.yieldtraffic.com -# ||yieldmanager.com^$popup,third-party (easylistchina+easylist.txt: 38677) -.yieldmanager.com -# ||xtendmedia.com^$popup,third-party (easylistchina+easylist.txt: 38676) -.xtendmedia.com -# ||xclicks.net^$popup,third-party (easylistchina+easylist.txt: 38675) -.xclicks.net -# ||xaxoro.com^$popup,third-party (easylistchina+easylist.txt: 38674) -.xaxoro.com -# ||wzus1.ask.com^$popup,third-party (easylistchina+easylist.txt: 38673) -.wzus1.ask.com -# ||wwwpromoter.com^$popup,third-party (easylistchina+easylist.txt: 38672) -.wwwpromoter.com -# ||worldrewardcenter.net^$popup,third-party (easylistchina+easylist.txt: 38671) -.worldrewardcenter.net -# ||wonderlandads.com^$popup,third-party (easylistchina+easylist.txt: 38670) -.wonderlandads.com -# ||wigetmedia.com^$popup,third-party (easylistchina+easylist.txt: 38669) -.wigetmedia.com -# ||whoads.net^$popup,third-party (easylistchina+easylist.txt: 38668) -.whoads.net -# ||weliketofuckstrangers.com^$popup,third-party (easylistchina+easylist.txt: 38667) -.weliketofuckstrangers.com -# ||webtrackerplus.com^$popup,third-party (easylistchina+easylist.txt: 38666) -.webtrackerplus.com -# ||websearchers.net^$popup,third-party (easylistchina+easylist.txt: 38665) -.websearchers.net -# ||weareheard.org^$popup,third-party (easylistchina+easylist.txt: 38664) -.weareheard.org -# ||wbsadsdel2.com^$popup,third-party (easylistchina+easylist.txt: 38663) -.wbsadsdel2.com -# ||wbsadsdel.com^$popup,third-party (easylistchina+easylist.txt: 38662) -.wbsadsdel.com -# ||wahoha.com^$popup,third-party (easylistchina+easylist.txt: 38661) -.wahoha.com -# ||waframedia5.com^$popup,third-party (easylistchina+easylist.txt: 38660) -.waframedia5.com -# ||w4statistics.info^$popup,third-party (easylistchina+easylist.txt: 38659) -.w4statistics.info -# ||vprmnwbskk.com^$popup,third-party (easylistchina+easylist.txt: 38658) -.vprmnwbskk.com -# ||vipcpms.com^$popup,third-party (easylistchina+easylist.txt: 38657) -.vipcpms.com -# ||vgsgaming-ads.com^$popup,third-party (easylistchina+easylist.txt: 38656) -.vgsgaming-ads.com -# ||updater-checker.net^$popup,third-party (easylistchina+easylist.txt: 38655) -.updater-checker.net -# ||twqiqiang.com^$popup,third-party (easylistchina+easylist.txt: 38654) -.twqiqiang.com -# ||tvas-b.pw^$popup,third-party (easylistchina+easylist.txt: 38653) -.tvas-b.pw -# ||tvas-a.pw^$popup,third-party (easylistchina+easylist.txt: 38652) -.tvas-a.pw -# ||tutvp.com^$popup,third-party (easylistchina+easylist.txt: 38651) -.tutvp.com -# ||trw12.com^$popup,third-party (easylistchina+easylist.txt: 38650) -.trw12.com -# ||trklnks.com^$popup,third-party (easylistchina+easylist.txt: 38649) -.trklnks.com -# ||traffichaus.com^$popup,third-party (easylistchina+easylist.txt: 38648) -.traffichaus.com -# ||trafficforce.com^$popup,third-party (easylistchina+easylist.txt: 38647) -.trafficforce.com -# ||tracki112.com^$popup,third-party (easylistchina+easylist.txt: 38646) -.tracki112.com -# ||totrack.ru^$popup,third-party (easylistchina+easylist.txt: 38645) -.totrack.ru -# ||totaladperformance.com^$popup,third-party (easylistchina+easylist.txt: 38644) -.totaladperformance.com -# ||toroadvertisingmedia.com^$popup,third-party (easylistchina+easylist.txt: 38643) -.toroadvertisingmedia.com -# ||topshelftraffic.com^$popup,third-party (easylistchina+easylist.txt: 38642) -.topshelftraffic.com -# ||tonefuse.com^$popup,third-party (easylistchina+easylist.txt: 38641) -.tonefuse.com -# ||tjoomo.com^$popup,third-party (easylistchina+easylist.txt: 38640) -.tjoomo.com -# ||therewardsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38639) -.therewardsurvey.com -# ||thepornsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38638) -.thepornsurvey.com -# ||the-consumer-reporter.org^$popup,third-party (easylistchina+easylist.txt: 38637) -.the-consumer-reporter.org -# ||the-binary-trader.biz^$popup,third-party (easylistchina+easylist.txt: 38636) -.the-binary-trader.biz -# ||textsrv.com^$popup,third-party (easylistchina+easylist.txt: 38635) -.textsrv.com -# ||terraclicks.com^$popup,third-party (easylistchina+easylist.txt: 38634) -.terraclicks.com -# ||technicssurveys.info^$popup,third-party (easylistchina+easylist.txt: 38633) -.technicssurveys.info -# ||techcloudtrk.com^$popup,third-party (easylistchina+easylist.txt: 38632) -.techcloudtrk.com -# ||td563.com^$popup,third-party (easylistchina+easylist.txt: 38631) -.td563.com -# ||syncedvision.com^$popup,third-party (easylistchina+easylist.txt: 38630) -.syncedvision.com -# ||symkashop.ru^$popup,third-party (easylistchina+easylist.txt: 38629) -.symkashop.ru -# ||swadvertising.org^$popup,third-party (easylistchina+easylist.txt: 38628) -.swadvertising.org -# ||surveystope.com^$popup,third-party (easylistchina+easylist.txt: 38627) -.surveystope.com -# ||surveyspaid.com^$popup,third-party (easylistchina+easylist.txt: 38626) -.surveyspaid.com -# ||surveysforgifts.org^$popup,third-party (easylistchina+easylist.txt: 38625) -.surveysforgifts.org -# ||surveyend.com^$popup,third-party (easylistchina+easylist.txt: 38624) -.surveyend.com -# ||statstrackeronline.com^$popup,third-party (easylistchina+easylist.txt: 38623) -.statstrackeronline.com -# ||statsmobi.com^$popup,third-party (easylistchina+easylist.txt: 38622) -.statsmobi.com -# ||stabletrappeddevote.info^$popup,third-party (easylistchina+easylist.txt: 38621) -.stabletrappeddevote.info -# ||srvpub.com^$popup,third-party (easylistchina+easylist.txt: 38620) -.srvpub.com -# ||srv2trking.com^$popup,third-party (easylistchina+easylist.txt: 38619) -.srv2trking.com -# ||srv-ad.com^$popup,third-party (easylistchina+easylist.txt: 38618) -.srv-ad.com -# ||sparkstudios.com^$popup,third-party (easylistchina+easylist.txt: 38617) -.sparkstudios.com -# ||smutty.com^$popup,third-party (easylistchina+easylist.txt: 38616) -.smutty.com -# ||sms-mmm.com^$popup,third-party (easylistchina+easylist.txt: 38615) -.sms-mmm.com -# ||smartwebads.com^$popup,third-party (easylistchina+easylist.txt: 38614) -.smartwebads.com -# ||slimspots.com^$popup,third-party (easylistchina+easylist.txt: 38613) -.slimspots.com -# ||slikslik.com^$popup,third-party (easylistchina+easylist.txt: 38612) -.slikslik.com -# ||singlesexdates.com^$popup,third-party (easylistchina+easylist.txt: 38611) -.singlesexdates.com -# ||simpleinternetupdate.com^$popup,third-party (easylistchina+easylist.txt: 38610) -.simpleinternetupdate.com -# ||silstavo.com^$popup,third-party (easylistchina+easylist.txt: 38609) -.silstavo.com -# ||sexitnow.com^$popup,third-party (easylistchina+easylist.txt: 38608) -.sexitnow.com -# ||servingit.co^$popup,third-party (easylistchina+easylist.txt: 38607) -.servingit.co -# ||serving-sys.com^$popup,third-party (easylistchina+easylist.txt: 38606) -.serving-sys.com -# ||senzapudore.it^$popup,third-party (easylistchina+easylist.txt: 38605) -.senzapudore.it -# ||secureintl.com^$popup,third-party (easylistchina+easylist.txt: 38604) -.secureintl.com -# ||rubikon6.if.ua^$popup,third-party (easylistchina+easylist.txt: 38603) -.rubikon6.if.ua -# ||roulettebotplus.com^$popup,third-party (easylistchina+easylist.txt: 38602) -.roulettebotplus.com -# ||ronetu.ru^$popup,third-party (easylistchina+easylist.txt: 38601) -.ronetu.ru -# ||ringtonepartner.com^$popup,third-party (easylistchina+easylist.txt: 38600) -.ringtonepartner.com -# ||ringtonematcher.com^$popup,third-party (easylistchina+easylist.txt: 38599) -.ringtonematcher.com -# ||rikhov.ru^$popup,third-party (easylistchina+easylist.txt: 38598) -.rikhov.ru -# ||rgadvert.com^$popup,third-party (easylistchina+easylist.txt: 38597) -.rgadvert.com -# ||retkow.com^$popup,third-party (easylistchina+easylist.txt: 38596) -.retkow.com -# ||rehok.km.ua^$popup,third-party (easylistchina+easylist.txt: 38595) -.rehok.km.ua -# ||rdsrv.com^$popup,third-party (easylistchina+easylist.txt: 38594) -.rdsrv.com -# ||ratari.ru^$popup,third-party (easylistchina+easylist.txt: 38593) -.ratari.ru -# ||raoplenort.biz^$popup,third-party (easylistchina+easylist.txt: 38592) -.raoplenort.biz -# ||pwrads.net^$popup,third-party (easylistchina+easylist.txt: 38591) -.pwrads.net -# ||pureadexchange.com^$popup,third-party (easylistchina+easylist.txt: 38590) -.pureadexchange.com -# ||pulse360.com^$popup,third-party (easylistchina+easylist.txt: 38589) -.pulse360.com -# ||pubted.com^$popup,third-party (easylistchina+easylist.txt: 38588) -.pubted.com -# ||pubdirecte.com^$popup,third-party (easylistchina+easylist.txt: 38587) -.pubdirecte.com -# ||pubads.g.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38586) -.pubads.g.doubleclick.net -# ||prowlerz.com^$popup,third-party (easylistchina+easylist.txt: 38585) -.prowlerz.com -# ||propellerpops.com^$popup,third-party (easylistchina+easylist.txt: 38584) -.propellerpops.com -# ||propellerads.com^$popup,third-party (easylistchina+easylist.txt: 38583) -.propellerads.com -# ||promotions.sportsbet.com.au^$popup,third-party (easylistchina+easylist.txt: 38582) -.promotions.sportsbet.com.au -# ||promotions-paradise.org^$popup,third-party (easylistchina+easylist.txt: 38581) -.promotions-paradise.org -# ||prizegiveaway.org^$popup,third-party (easylistchina+easylist.txt: 38580) -.prizegiveaway.org -# ||print3.info^$popup,third-party (easylistchina+easylist.txt: 38579) -.print3.info -# ||poponclick.com^$popup,third-party (easylistchina+easylist.txt: 38578) -.poponclick.com -# ||popmyads.com^$popup,third-party (easylistchina+easylist.txt: 38577) -.popmyads.com -# ||popads.net^$popup,third-party (easylistchina+easylist.txt: 38576) -.popads.net -# ||pomofon.ru^$popup,third-party (easylistchina+easylist.txt: 38575) -.pomofon.ru -# ||pointroll.com^$popup,third-party (easylistchina+easylist.txt: 38574) -.pointroll.com -# ||pointclicktrack.com^$popup,third-party (easylistchina+easylist.txt: 38573) -.pointclicktrack.com -# ||plsdrct2.me^$popup,third-party (easylistchina+easylist.txt: 38572) -.plsdrct2.me -# ||plexop.net^$popup,third-party (easylistchina+easylist.txt: 38571) -.plexop.net -# ||pipaoffers.com^$popup,third-party (easylistchina+easylist.txt: 38570) -.pipaoffers.com -# ||pgmediaserve.com^$popup,third-party (easylistchina+easylist.txt: 38569) -.pgmediaserve.com -# ||pexu.com^$popup,third-party (easylistchina+easylist.txt: 38568) -.pexu.com -# ||perfcreatives.com^$popup,third-party (easylistchina+easylist.txt: 38567) -.perfcreatives.com -# ||pdfcomplete.com^$popup,third-party (easylistchina+easylist.txt: 38566) -.pdfcomplete.com -# ||partypills.org^$popup,third-party (easylistchina+easylist.txt: 38565) -.partypills.org -# ||oxybe.com^$popup,third-party (easylistchina+easylist.txt: 38564) -.oxybe.com -# ||overturs.com^$popup,third-party (easylistchina+easylist.txt: 38563) -.overturs.com -# ||openadserving.com^$popup,third-party (easylistchina+easylist.txt: 38562) -.openadserving.com -# ||open-downloads.net^$popup,third-party (easylistchina+easylist.txt: 38561) -.open-downloads.net -# ||onlinecashmethod.com^$popup,third-party (easylistchina+easylist.txt: 38560) -.onlinecashmethod.com -# ||onlinecareerpackage.com^$popup,third-party (easylistchina+easylist.txt: 38559) -.onlinecareerpackage.com -# ||onhitads.net^$popup,third-party (easylistchina+easylist.txt: 38558) -.onhitads.net -# ||onclickads.net^$popup,third-party (easylistchina+easylist.txt: 38557) -.onclickads.net -# ||onad.eu^$popup,third-party (easylistchina+easylist.txt: 38556) -.onad.eu -# ||o333o.com^$popup,third-party (easylistchina+easylist.txt: 38555) -.o333o.com -# ||nymphdate.com^$popup,third-party (easylistchina+easylist.txt: 38554) -.nymphdate.com -# ||nturveev.com^$popup,third-party (easylistchina+easylist.txt: 38553) -.nturveev.com -# ||netliker.com^$popup,third-party (easylistchina+easylist.txt: 38552) -.netliker.com -# ||n388hkxg.com^$popup,third-party (easylistchina+easylist.txt: 38551) -.n388hkxg.com -# ||my-layer.net^$popup,third-party (easylistchina+easylist.txt: 38550) -.my-layer.net -# ||moneytec.com^$popup,third-party (easylistchina+easylist.txt: 38549) -.moneytec.com -# ||mobileraffles.com^$popup,third-party (easylistchina+easylist.txt: 38548) -.mobileraffles.com -# ||mktmobi.com^$popup,third-party (easylistchina+easylist.txt: 38547) -.mktmobi.com -# ||millionairesurveys.com^$popup,third-party (easylistchina+easylist.txt: 38546) -.millionairesurveys.com -# ||metodoroleta24h.com^$popup,third-party (easylistchina+easylist.txt: 38545) -.metodoroleta24h.com -# ||menepe.com^$popup,third-party (easylistchina+easylist.txt: 38544) -.menepe.com -# ||megapopads.com^$popup,third-party (easylistchina+easylist.txt: 38543) -.megapopads.com -# ||meetsexygirls.org^$popup,third-party (easylistchina+easylist.txt: 38542) -.meetsexygirls.org -# ||meetgoodgirls.com^$popup,third-party (easylistchina+easylist.txt: 38541) -.meetgoodgirls.com -# ||mediaseeding.com^$popup,third-party (easylistchina+easylist.txt: 38540) -.mediaseeding.com -# ||media-servers.net^$popup,third-party (easylistchina+easylist.txt: 38539) -.media-servers.net -# ||media-app.com^$popup,third-party (easylistchina+easylist.txt: 38538) -.media-app.com -# ||mdn2015x1.com^$popup,third-party (easylistchina+easylist.txt: 38537) -.mdn2015x1.com -# ||marketresearchglobal.com^$popup,third-party (easylistchina+easylist.txt: 38536) -.marketresearchglobal.com -# ||maomaotang.com^$popup,third-party (easylistchina+easylist.txt: 38535) -.maomaotang.com -# ||m57ku6sm.com^$popup,third-party (easylistchina+easylist.txt: 38534) -.m57ku6sm.com -# ||lustigbanner.com^$popup,third-party (easylistchina+easylist.txt: 38533) -.lustigbanner.com -# ||lnkgt.com^$popup,third-party (easylistchina+easylist.txt: 38532) -.lnkgt.com -# ||lmebxwbsno.com^$popup,third-party (easylistchina+easylist.txt: 38531) -.lmebxwbsno.com -# ||liversely.net^$popup,third-party (easylistchina+easylist.txt: 38530) -.liversely.net -# ||livepromotools.com^$popup,third-party (easylistchina+easylist.txt: 38529) -.livepromotools.com -# ||livechatflirt.com^$popup,third-party (easylistchina+easylist.txt: 38528) -.livechatflirt.com -# ||ligatus.com^$popup,third-party (easylistchina+easylist.txt: 38527) -.ligatus.com -# ||letshareus.com^$popup,third-party (easylistchina+easylist.txt: 38526) -.letshareus.com -# ||legisland.net^$popup,third-party (easylistchina+easylist.txt: 38525) -.legisland.net -# ||landsraad.cc^$popup,third-party (easylistchina+easylist.txt: 38524) -.landsraad.cc -# ||kanoodle.com^$popup,third-party (easylistchina+easylist.txt: 38523) -.kanoodle.com -# ||junbi-tracker.com^$popup,third-party (easylistchina+easylist.txt: 38522) -.junbi-tracker.com -# ||jujzh9va.com^$popup,third-party (easylistchina+easylist.txt: 38521) -.jujzh9va.com -# ||jdtracker.com^$popup,third-party (easylistchina+easylist.txt: 38520) -.jdtracker.com -# ||integral-marketing.com^$popup,third-party (easylistchina+easylist.txt: 38519) -.integral-marketing.com -# ||instantpaydaynetwork.com^$popup,third-party (easylistchina+easylist.txt: 38518) -.instantpaydaynetwork.com -# ||insta-cash.net^$popup,third-party (easylistchina+easylist.txt: 38517) -.insta-cash.net -# ||indianweeklynews.com^$popup,third-party (easylistchina+easylist.txt: 38516) -.indianweeklynews.com -# ||inbinaryoption.com^$popup,third-party (easylistchina+easylist.txt: 38514) -.inbinaryoption.com -# ||ilividnewtab.com^$popup,third-party (easylistchina+easylist.txt: 38513) -.ilividnewtab.com -# ||iiasdomk1m9812m4z3.com^$popup,third-party (easylistchina+easylist.txt: 38512) -.iiasdomk1m9812m4z3.com -# ||ifilez.org^$popup,third-party (easylistchina+easylist.txt: 38511) -.ifilez.org -# ||hstpnetwork.com^$popup,third-party (easylistchina+easylist.txt: 38510) -.hstpnetwork.com -# ||hotchatdirect.com^$popup,third-party (easylistchina+easylist.txt: 38509) -.hotchatdirect.com -# ||hornygirlsexposed.com^$popup,third-party (easylistchina+easylist.txt: 38508) -.hornygirlsexposed.com -# ||homecareerforyou1.info^$popup,third-party (easylistchina+easylist.txt: 38507) -.homecareerforyou1.info -# ||hilltopads.net^$popup,third-party (easylistchina+easylist.txt: 38506) -.hilltopads.net -# ||highcpms.com^$popup,third-party (easylistchina+easylist.txt: 38505) -.highcpms.com -# ||hd-plugin.com^$popup,third-party (easylistchina+easylist.txt: 38504) -.hd-plugin.com -# ||gsniper2.com^$popup,third-party (easylistchina+easylist.txt: 38503) -.gsniper2.com -# ||greatbranddeals.com^$popup,third-party (easylistchina+easylist.txt: 38502) -.greatbranddeals.com -# ||gotoplaymillion.com^$popup,third-party (easylistchina+easylist.txt: 38501) -.gotoplaymillion.com -# ||googleads.g.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38500) -.googleads.g.doubleclick.net -# ||gofindmedia.net^$popup,third-party (easylistchina+easylist.txt: 38499) -.gofindmedia.net -# ||giveaways.club^$popup,third-party (easylistchina+easylist.txt: 38498) -.giveaways.club -# ||gib-gib-la.com^$popup,third-party (easylistchina+easylist.txt: 38497) -.gib-gib-la.com -# ||ganja.com^$popup,third-party (easylistchina+easylist.txt: 38496) -.ganja.com -# ||g05.info^$popup,third-party (easylistchina+easylist.txt: 38495) -.g05.info -# ||frtya.com^$popup,third-party (easylistchina+easylist.txt: 38494) -.frtya.com -# ||friendlyduck.com^$popup,third-party (easylistchina+easylist.txt: 38493) -.friendlyduck.com -# ||fmdwbsfxf0.com^$popup,third-party (easylistchina+easylist.txt: 38492) -.fmdwbsfxf0.com -# ||firstmediahub.com^$popup,third-party (easylistchina+easylist.txt: 38491) -.firstmediahub.com -# ||firstclass-download.com^$popup,third-party (easylistchina+easylist.txt: 38490) -.firstclass-download.com -# ||findonlinesurveysforcash.com^$popup,third-party (easylistchina+easylist.txt: 38489) -.findonlinesurveysforcash.com -# ||finance-reporting.org^$popup,third-party (easylistchina+easylist.txt: 38488) -.finance-reporting.org -# ||filestube.com^$popup,third-party (easylistchina+easylist.txt: 38487) -.filestube.com -# ||fidel.to^$popup,third-party (easylistchina+easylist.txt: 38486) -.fidel.to -# ||fhserve.com^$popup,third-party (easylistchina+easylist.txt: 38485) -.fhserve.com -# ||f-questionnaire.com^$popup,third-party (easylistchina+easylist.txt: 38484) -.f-questionnaire.com -# ||f-hookups.com^$popup,third-party (easylistchina+easylist.txt: 38483) -.f-hookups.com -# ||ezdownloadpro.info^$popup,third-party (easylistchina+easylist.txt: 38482) -.ezdownloadpro.info -# ||exoclick.com^$popup,third-party (easylistchina+easylist.txt: 38481) -.exoclick.com -# ||ewebse.com^$popup,third-party (easylistchina+easylist.txt: 38480) -.ewebse.com -# ||euromillionairesystem.me^$popup,third-party (easylistchina+easylist.txt: 38479) -.euromillionairesystem.me -# ||eroanalysis.com^$popup,third-party (easylistchina+easylist.txt: 38478) -.eroanalysis.com -# ||epicgameads.com^$popup,third-party (easylistchina+easylist.txt: 38477) -.epicgameads.com -# ||ebzkswbs78.com^$popup,third-party (easylistchina+easylist.txt: 38476) -.ebzkswbs78.com -# ||easykits.org^$popup,third-party (easylistchina+easylist.txt: 38475) -.easykits.org -# ||easydownloadnow.com^$popup,third-party (easylistchina+easylist.txt: 38474) -.easydownloadnow.com -# ||durokuro.com^$popup,third-party (easylistchina+easylist.txt: 38473) -.durokuro.com -# ||downloadthesefile.com^$popup,third-party (easylistchina+easylist.txt: 38472) -.downloadthesefile.com -# ||downloadboutique.com^$popup,third-party (easylistchina+easylist.txt: 38471) -.downloadboutique.com -# ||down1oads.com^$popup,third-party (easylistchina+easylist.txt: 38470) -.down1oads.com -# ||doublepimp.com^$popup,third-party (easylistchina+easylist.txt: 38469) -.doublepimp.com -# ||dojerena.com^$popup,third-party (easylistchina+easylist.txt: 38468) -.dojerena.com -# ||distantstat.com^$popup,third-party (easylistchina+easylist.txt: 38467) -.distantstat.com -# ||distantnews.com^$popup,third-party (easylistchina+easylist.txt: 38466) -.distantnews.com -# ||directrev.com^$popup,third-party (easylistchina+easylist.txt: 38465) -.directrev.com -# ||denza.pro^$popup,third-party (easylistchina+easylist.txt: 38464) -.denza.pro -# ||crazyad.net^$popup,third-party (easylistchina+easylist.txt: 38463) -.crazyad.net -# ||cpvadvertise.com^$popup,third-party (easylistchina+easylist.txt: 38462) -.cpvadvertise.com -# ||cpmterra.com^$popup,third-party (easylistchina+easylist.txt: 38461) -.cpmterra.com -# ||cpmstar.com^$popup,third-party (easylistchina+easylist.txt: 38460) -.cpmstar.com -# ||cpayard.com^$popup,third-party (easylistchina+easylist.txt: 38459) -.cpayard.com -# ||contractallsinstance.info^$popup,third-party (easylistchina+easylist.txt: 38458) -.contractallsinstance.info -# ||contentabc.com^$popup,third-party (easylistchina+easylist.txt: 38457) -.contentabc.com -# ||computersoftwarelive.com^$popup,third-party (easylistchina+easylist.txt: 38456) -.computersoftwarelive.com -# ||cmllk2.info^$popup,third-party (easylistchina+easylist.txt: 38455) -.cmllk2.info -# ||clpremdo.com^$popup,third-party (easylistchina+easylist.txt: 38454) -.clpremdo.com -# ||cloudtracked.com^$popup,third-party (easylistchina+easylist.txt: 38453) -.cloudtracked.com -# ||clkrev.com^$popup,third-party (easylistchina+easylist.txt: 38452) -.clkrev.com -# ||clkmon.com^$popup,third-party (easylistchina+easylist.txt: 38451) -.clkmon.com -# ||clkads.com^$popup,third-party (easylistchina+easylist.txt: 38450) -.clkads.com -# ||clicktripz.com^$popup,third-party (easylistchina+easylist.txt: 38449) -.clicktripz.com -# ||clickter.net^$popup,third-party (easylistchina+easylist.txt: 38448) -.clickter.net -# ||clicksvenue.com^$popup,third-party (easylistchina+easylist.txt: 38447) -.clicksvenue.com -# ||clicksor.com^$popup,third-party (easylistchina+easylist.txt: 38446) -.clicksor.com -# ||clickosmedia.com^$popup,third-party (easylistchina+easylist.txt: 38445) -.clickosmedia.com -# ||clickmngr.com^$popup,third-party (easylistchina+easylist.txt: 38444) -.clickmngr.com -# ||clickfuse.com^$popup,third-party (easylistchina+easylist.txt: 38443) -.clickfuse.com -# ||casino.betsson.com^$popup,third-party (easylistchina+easylist.txt: 38442) -.casino.betsson.com -# ||careerjournalonline.com^$popup (easylistchina+easylist.txt: 38441) -.careerjournalonline.com -# ||callhelpmetaroll.rocks^$popup,third-party (easylistchina+easylist.txt: 38440) -.callhelpmetaroll.rocks -# ||bzrvwbsh5o.com^$popup,third-party (easylistchina+easylist.txt: 38439) -.bzrvwbsh5o.com -# ||brandreachsys.com^$popup,third-party (easylistchina+easylist.txt: 38438) -.brandreachsys.com -# ||bonzuna.com^$popup,third-party (easylistchina+easylist.txt: 38437) -.bonzuna.com -# ||bongacams.com^$popup,third-party (easylistchina+easylist.txt: 38436) -.bongacams.com -# ||blogscash.info^$popup,third-party (easylistchina+easylist.txt: 38435) -.blogscash.info -# ||blockthis.es^$popup,third-party (easylistchina+easylist.txt: 38434) -.blockthis.es -# ||blinkogold.es^$popup,third-party (easylistchina+easylist.txt: 38433) -.blinkogold.es -# ||blinko.es^$popup,third-party (easylistchina+easylist.txt: 38432) -.blinko.es -# ||binaryoptionsgame.com^$popup,third-party (easylistchina+easylist.txt: 38431) -.binaryoptionsgame.com -# ||bighot.ru^$popup,third-party (easylistchina+easylist.txt: 38430) -.bighot.ru -# ||bidvertiser.com^$popup,third-party (easylistchina+easylist.txt: 38429) -.bidvertiser.com -# ||bidsystem.com^$popup,third-party (easylistchina+easylist.txt: 38428) -.bidsystem.com -# ||bestproducttesters.com^$popup,third-party (easylistchina+easylist.txt: 38427) -.bestproducttesters.com -# ||best-zb.com^$popup,third-party (easylistchina+easylist.txt: 38426) -.best-zb.com -# ||bentdownload.com^$popup,third-party (easylistchina+easylist.txt: 38425) -.bentdownload.com -# ||becoquins.net^$popup,third-party (easylistchina+easylist.txt: 38424) -.becoquins.net -# ||becoquin.com^$popup,third-party (easylistchina+easylist.txt: 38423) -.becoquin.com -# ||bbuni.com^$popup,third-party (easylistchina+easylist.txt: 38422) -.bbuni.com -# ||baypops.com^$popup,third-party (easylistchina+easylist.txt: 38421) -.baypops.com -# ||awsclic.com^$popup,third-party (easylistchina+easylist.txt: 38420) -.awsclic.com -# ||awempire.com^$popup,third-party (easylistchina+easylist.txt: 38419) -.awempire.com -# ||avalopaly.com^$popup,third-party (easylistchina+easylist.txt: 38418) -.avalopaly.com -# ||august15download.com^$popup,third-party (easylistchina+easylist.txt: 38417) -.august15download.com -# ||ar.voicefive.com^$popup,third-party (easylistchina+easylist.txt: 38416) -.ar.voicefive.com -# ||answered-questions.com^$popup,third-party (easylistchina+easylist.txt: 38415) -.answered-questions.com -# ||annualinternetsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38414) -.annualinternetsurvey.com -# ||angege.com^$popup,third-party (easylistchina+easylist.txt: 38413) -.angege.com -# ||am10.ru^$popup,third-party (easylistchina+easylist.txt: 38412) -.am10.ru -# ||alternads.info^$popup,third-party (easylistchina+easylist.txt: 38411) -.alternads.info -# ||alpinedrct.com^$popup,third-party (easylistchina+easylist.txt: 38410) -.alpinedrct.com -# ||allsporttv.com^$popup,third-party (easylistchina+easylist.txt: 38409) -.allsporttv.com -# ||allslotscasino.com^$popup,third-party (easylistchina+easylist.txt: 38408) -.allslotscasino.com -# ||aflrm.com^$popup,third-party (easylistchina+easylist.txt: 38407) -.aflrm.com -# ||affbuzzads.com^$popup,third-party (easylistchina+easylist.txt: 38406) -.affbuzzads.com -# ||advmedialtd.com^$popup,third-party (easylistchina+easylist.txt: 38405) -.advmedialtd.com -# ||advertserve.com^$popup,third-party (easylistchina+easylist.txt: 38404) -.advertserve.com -# ||adtraffic.org^$popup,third-party (easylistchina+easylist.txt: 38403) -.adtraffic.org -# ||adtrace.org^$popup,third-party (easylistchina+easylist.txt: 38402) -.adtrace.org -# ||adsurve.com^$popup,third-party (easylistchina+easylist.txt: 38401) -.adsurve.com -# ||adsupplyads.com^$popup,third-party (easylistchina+easylist.txt: 38400) -.adsupplyads.com -# ||adsupply.com^$popup,third-party (easylistchina+easylist.txt: 38399) -.adsupply.com -# ||adsmarket.com^$popup,third-party (easylistchina+easylist.txt: 38398) -.adsmarket.com -# ||adshostnet.com^$popup,third-party (easylistchina+easylist.txt: 38397) -.adshostnet.com -# ||adserverplus.com^$popup,third-party (easylistchina+easylist.txt: 38396) -.adserverplus.com -# ||ads.sexier.com^$popup,third-party (easylistchina+easylist.txt: 38395) -.ads.sexier.com -# ||adplxmd.com^$popup,third-party (easylistchina+easylist.txt: 38394) -.adplxmd.com -# ||adonweb.ru^$popup,third-party (easylistchina+easylist.txt: 38393) -.adonweb.ru -# ||adnxs.com^$popup,third-party (easylistchina+easylist.txt: 38392) -.adnxs.com -# ||adnetworkperformance.com^$popup,third-party (easylistchina+easylist.txt: 38391) -.adnetworkperformance.com -# ||adlure.net^$popup,third-party (easylistchina+easylist.txt: 38390) -.adlure.net -# ||adk2x.com^$popup,third-party (easylistchina+easylist.txt: 38389) -.adk2x.com -# ||adk2.net^$popup,third-party (easylistchina+easylist.txt: 38388) -.adk2.net -# ||adk2.com^$popup,third-party (easylistchina+easylist.txt: 38387) -.adk2.com -# ||adk2.co^$popup,third-party (easylistchina+easylist.txt: 38386) -.adk2.co -# ||adjuggler.net^$popup,third-party (easylistchina+easylist.txt: 38385) -.adjuggler.net -# ||aditor.com^$popup,third-party (easylistchina+easylist.txt: 38384) -.aditor.com -# ||adimps.com^$popup,third-party (easylistchina+easylist.txt: 38383) -.adimps.com -# ||adform.net^$popup,third-party (easylistchina+easylist.txt: 38382) -.adform.net -# ||adfarm.mediaplex.com^$popup,third-party (easylistchina+easylist.txt: 38381) -.adfarm.mediaplex.com -# ||adcdnx.com^$popup,third-party (easylistchina+easylist.txt: 38380) -.adcdnx.com -# ||adcash.com^$popup,third-party (easylistchina+easylist.txt: 38379) -.adcash.com -# ||adbma.com^$popup,third-party (easylistchina+easylist.txt: 38378) -.adbma.com -# ||ad4game.com^$popup,third-party (easylistchina+easylist.txt: 38377) -.ad4game.com -# ||ad2games.com^$popup,third-party (easylistchina+easylist.txt: 38376) -.ad2games.com -# ||ad2387.com^$popup,third-party (easylistchina+easylist.txt: 38375) -.ad2387.com -# ||ad131m.com^$popup,third-party (easylistchina+easylist.txt: 38374) -.ad131m.com -# ||ad.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38373) -.ad.doubleclick.net -# ||ad-feeds.com^$popup,third-party (easylistchina+easylist.txt: 38372) -.ad-feeds.com -# ||ad-emea.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38371) -.ad-emea.doubleclick.net -# ||ad-apac.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38370) -.ad-apac.doubleclick.net -# ||absoluteclickscom.com^$popup,third-party (easylistchina+easylist.txt: 38369) -.absoluteclickscom.com -# ||abbeyblog.me^$popup,third-party (easylistchina+easylist.txt: 38368) -.abbeyblog.me -# ||9newstoday.net^$popup,third-party (easylistchina+easylist.txt: 38367) -.9newstoday.net -# ||888promos.com^$popup,third-party (easylistchina+easylist.txt: 38366) -.888promos.com -# ||888poker.com^$popup,third-party (easylistchina+easylist.txt: 38365) -.888poker.com -# ||888media.net^$popup,third-party (easylistchina+easylist.txt: 38364) -.888media.net -# ||888games.com^$popup,third-party (easylistchina+easylist.txt: 38363) -.888games.com -# ||888casino.com^$popup,third-party (easylistchina+easylist.txt: 38362) -.888casino.com -# ||83nsdjqqo1cau183xz.com^$popup,third-party (easylistchina+easylist.txt: 38361) -.83nsdjqqo1cau183xz.com -# ||5dimes.com^$popup,third-party (easylistchina+easylist.txt: 38360) -.5dimes.com -# ||4dsply.com^$popup,third-party (easylistchina+easylist.txt: 38359) -.4dsply.com -# ||360adstrack.com^$popup,third-party (easylistchina+easylist.txt: 38358) -.360adstrack.com -# ||360adshost.net^$popup,third-party (easylistchina+easylist.txt: 38357) -.360adshost.net -# ||32d1d3b9c.se^$popup,third-party (easylistchina+easylist.txt: 38356) -.32d1d3b9c.se -# ||30daychange.co^$popup,third-party (easylistchina+easylist.txt: 38355) -.30daychange.co -# ||2mdn.info^$popup,third-party (easylistchina+easylist.txt: 38354) -.2mdn.info -# ||1phads.com^$popup,third-party (easylistchina+easylist.txt: 38353) -.1phads.com -# ||1afcfcb2c.ninja^$popup,third-party (easylistchina+easylist.txt: 38352) -.1afcfcb2c.ninja -# ||123vidz.com^$popup,third-party (easylistchina+easylist.txt: 38351) -.123vidz.com -# ||zrfrornn.net^$third-party (easylistchina+easylist.txt: 38349) -.zrfrornn.net -# ||zomri.net^$third-party (easylistchina+easylist.txt: 38348) -.zomri.net -# ||ziccardia.com^$third-party (easylistchina+easylist.txt: 38347) -.ziccardia.com -# ||z4pick.com^$third-party (easylistchina+easylist.txt: 38346) -.z4pick.com -# ||yuasaghn.com^$third-party (easylistchina+easylist.txt: 38345) -.yuasaghn.com -# ||yrrrbn.me^$third-party (easylistchina+easylist.txt: 38344) -.yrrrbn.me -# ||ypprr.com^$third-party (easylistchina+easylist.txt: 38343) -.ypprr.com -# ||ypppdc.com^$third-party (easylistchina+easylist.txt: 38342) -.ypppdc.com -# ||yopdi.com^$third-party (easylistchina+easylist.txt: 38341) -.yopdi.com -# ||yomri.net^$third-party (easylistchina+easylist.txt: 38340) -.yomri.net -# ||yodr.net^$third-party (easylistchina+easylist.txt: 38339) -.yodr.net -# ||yobr.net^$third-party (easylistchina+easylist.txt: 38338) -.yobr.net -# ||yardr.net^$third-party (easylistchina+easylist.txt: 38337) -.yardr.net -# ||xylopologyn.com^$third-party (easylistchina+easylist.txt: 38336) -.xylopologyn.com -# ||xplrer.co^$third-party (easylistchina+easylist.txt: 38335) -.xplrer.co -# ||xcrsqg.com^$third-party (easylistchina+easylist.txt: 38334) -.xcrsqg.com -# ||wudr.net^$third-party (easylistchina+easylist.txt: 38333) -.wudr.net -# ||wuatriser.net^$third-party (easylistchina+easylist.txt: 38332) -.wuatriser.net -# ||wuarnurf.net^$third-party (easylistchina+easylist.txt: 38331) -.wuarnurf.net -# ||wopdi.com^$third-party (easylistchina+easylist.txt: 38330) -.wopdi.com -# ||wensdteuy.com^$third-party (easylistchina+easylist.txt: 38329) -.wensdteuy.com -# ||waddr.com^$third-party (easylistchina+easylist.txt: 38328) -.waddr.com -# ||vuadiolgy.net^$third-party (easylistchina+easylist.txt: 38327) -.vuadiolgy.net -# ||vopdi.com^$third-party (easylistchina+easylist.txt: 38326) -.vopdi.com -# ||virsualr.com^$third-party (easylistchina+easylist.txt: 38325) -.virsualr.com -# ||viewscout.com^$third-party (easylistchina+easylist.txt: 38324) -.viewscout.com -# ||v8bridge.link^$third-party (easylistchina+easylist.txt: 38323) -.v8bridge.link -# ||username1.link^$third-party (easylistchina+easylist.txt: 38322) -.username1.link -# ||uppo.co^$third-party (easylistchina+easylist.txt: 38321) -.uppo.co -# ||unuarvse.net^$third-party (easylistchina+easylist.txt: 38320) -.unuarvse.net -# ||tualipoly.net^$third-party (easylistchina+easylist.txt: 38319) -.tualipoly.net -# ||trndi.net^$third-party (easylistchina+easylist.txt: 38318) -.trndi.net -# ||trllxv.co^$third-party (easylistchina+easylist.txt: 38317) -.trllxv.co -# ||topdi.net^$third-party (easylistchina+easylist.txt: 38316) -.topdi.net -# ||tolosgrey.net^$third-party (easylistchina+easylist.txt: 38315) -.tolosgrey.net -# ||thrilamd.net^$third-party (easylistchina+easylist.txt: 38314) -.thrilamd.net -# ||thiscdn.com^$third-party (easylistchina+easylist.txt: 38313) -.thiscdn.com -# ||th4wwe.net^$third-party (easylistchina+easylist.txt: 38312) -.th4wwe.net -# ||t7row.com^$third-party (easylistchina+easylist.txt: 38311) -.t7row.com -# ||t3sort.com^$third-party (easylistchina+easylist.txt: 38310) -.t3sort.com -# ||sxrrxa.net^$third-party (easylistchina+easylist.txt: 38309) -.sxrrxa.net -# ||spoa-soard.com^$third-party (easylistchina+easylist.txt: 38308) -.spoa-soard.com -# ||splazards.com^$third-party (easylistchina+easylist.txt: 38307) -.splazards.com -# ||spereminf.com^$third-party (easylistchina+easylist.txt: 38306) -.spereminf.com -# ||simusangr.com^$third-party (easylistchina+easylist.txt: 38305) -.simusangr.com -# ||sfesd.net^$third-party (easylistchina+easylist.txt: 38304) -.sfesd.net -# ||selectr.net^$third-party (easylistchina+easylist.txt: 38303) -.selectr.net -# ||rugistratuan.com^$third-party (easylistchina+easylist.txt: 38302) -.rugistratuan.com -# ||rugistoto.net^$third-party (easylistchina+easylist.txt: 38301) -.rugistoto.net -# ||rterdf.me^$third-party (easylistchina+easylist.txt: 38300) -.rterdf.me -# ||rlex.org^$third-party (easylistchina+easylist.txt: 38299) -.rlex.org -# ||rigistrar.net^$third-party (easylistchina+easylist.txt: 38298) -.rigistrar.net -# ||rhgersf.com^$third-party (easylistchina+easylist.txt: 38297) -.rhgersf.com -# ||regersd.net^$third-party (easylistchina+easylist.txt: 38296) -.regersd.net -# ||rdige.com^$third-party (easylistchina+easylist.txt: 38295) -.rdige.com -# ||r3seek.com^$third-party (easylistchina+easylist.txt: 38294) -.r3seek.com -# ||qzsccm.com^$third-party (easylistchina+easylist.txt: 38293) -.qzsccm.com -# ||qewa33a.com^$third-party (easylistchina+easylist.txt: 38292) -.qewa33a.com -# ||q3sift.com^$third-party (easylistchina+easylist.txt: 38291) -.q3sift.com -# ||prndi.net^$third-party (easylistchina+easylist.txt: 38290) -.prndi.net -# ||prfffc.info^$third-party (easylistchina+easylist.txt: 38289) -.prfffc.info -# ||polawrg.com^$third-party (easylistchina+easylist.txt: 38288) -.polawrg.com -# ||pikkr.net^$third-party (easylistchina+easylist.txt: 38287) -.pikkr.net -# ||p7vortex.com^$third-party (easylistchina+easylist.txt: 38286) -.p7vortex.com -# ||opner.co^$third-party (easylistchina+easylist.txt: 38285) -.opner.co -# ||oplo.org^$third-party (easylistchina+easylist.txt: 38284) -.oplo.org -# ||nuaknamg.net^$third-party (easylistchina+easylist.txt: 38283) -.nuaknamg.net -# ||nrfort.com^$third-party (easylistchina+easylist.txt: 38282) -.nrfort.com -# ||maningrs.com^$third-party (easylistchina+easylist.txt: 38281) -.maningrs.com -# ||luadcik.com^$third-party (easylistchina+easylist.txt: 38280) -.luadcik.com -# ||loopr.co^$third-party (easylistchina+easylist.txt: 38279) -.loopr.co -# ||lirte.org^$third-party (easylistchina+easylist.txt: 38278) -.lirte.org -# ||lia-ndr.com^$third-party (easylistchina+easylist.txt: 38277) -.lia-ndr.com -# ||lesuard.com^$third-party (easylistchina+easylist.txt: 38276) -.lesuard.com -# ||leanoisgo.com^$third-party (easylistchina+easylist.txt: 38275) -.leanoisgo.com -# ||kuangard.net^$third-party (easylistchina+easylist.txt: 38274) -.kuangard.net -# ||knoandr.com^$third-party (easylistchina+easylist.txt: 38273) -.knoandr.com -# ||kioshow.com^$third-party (easylistchina+easylist.txt: 38272) -.kioshow.com -# ||kilomonj.net^$third-party (easylistchina+easylist.txt: 38271) -.kilomonj.net -# ||jusukrs.com^$third-party (easylistchina+easylist.txt: 38270) -.jusukrs.com -# ||juruasikr.net^$third-party (easylistchina+easylist.txt: 38269) -.juruasikr.net -# ||jellr.net^$third-party (easylistchina+easylist.txt: 38268) -.jellr.net -# ||jdrm4.com^$third-party (easylistchina+easylist.txt: 38267) -.jdrm4.com -# ||jaspensar.com^$third-party (easylistchina+easylist.txt: 38266) -.jaspensar.com -# ||ivism.org^$third-party (easylistchina+easylist.txt: 38265) -.ivism.org -# ||iunbrudy.net^$third-party (easylistchina+easylist.txt: 38264) -.iunbrudy.net -# ||ignup.com^$third-party (easylistchina+easylist.txt: 38263) -.ignup.com -# ||hoppr.co^$third-party (easylistchina+easylist.txt: 38262) -.hoppr.co -# ||holmgard.link^$third-party (easylistchina+easylist.txt: 38261) -.holmgard.link -# ||hobri.net^$third-party (easylistchina+easylist.txt: 38260) -.hobri.net -# ||heizuanubr.net^$third-party (easylistchina+easylist.txt: 38259) -.heizuanubr.net -# ||havnr.com^$third-party (easylistchina+easylist.txt: 38258) -.havnr.com -# ||hapnr.net^$third-party (easylistchina+easylist.txt: 38257) -.hapnr.net -# ||gusufrs.me^$third-party (easylistchina+easylist.txt: 38256) -.gusufrs.me -# ||gghfncd.net^$third-party (easylistchina+easylist.txt: 38255) -.gghfncd.net -# ||fuandarst.com^$third-party (easylistchina+easylist.txt: 38254) -.fuandarst.com -# ||frxrydv.com^$third-party (easylistchina+easylist.txt: 38253) -.frxrydv.com -# ||frxle.com^$third-party (easylistchina+easylist.txt: 38252) -.frxle.com -# ||fowar.net^$third-party (easylistchina+easylist.txt: 38251) -.fowar.net -# ||foulsomty.com^$third-party (easylistchina+easylist.txt: 38250) -.foulsomty.com -# ||flaurse.net^$third-party (easylistchina+easylist.txt: 38249) -.flaurse.net -# ||flaudnrs.me^$third-party (easylistchina+easylist.txt: 38248) -.flaudnrs.me -# ||faunsts.me^$third-party (easylistchina+easylist.txt: 38247) -.faunsts.me -# ||extonsuan.com^$third-party (easylistchina+easylist.txt: 38246) -.extonsuan.com -# ||exlpor.com^$third-party (easylistchina+easylist.txt: 38245) -.exlpor.com -# ||exernala.com^$third-party (easylistchina+easylist.txt: 38244) -.exernala.com -# ||excolobar.com^$third-party (easylistchina+easylist.txt: 38243) -.excolobar.com -# ||exciliburn.com^$third-party (easylistchina+easylist.txt: 38242) -.exciliburn.com -# ||exactly0r.com^$third-party (easylistchina+easylist.txt: 38241) -.exactly0r.com -# ||esults.net^$third-party (easylistchina+easylist.txt: 38240) -.esults.net -# ||ershgrst.com^$third-party (easylistchina+easylist.txt: 38239) -.ershgrst.com -# ||ergers.net^$third-party (easylistchina+easylist.txt: 38238) -.ergers.net -# ||entru.co^$third-party (easylistchina+easylist.txt: 38237) -.entru.co -# ||elepheny.com^$third-party (easylistchina+easylist.txt: 38236) -.elepheny.com -# ||edabl.net^$third-party (easylistchina+easylist.txt: 38235) -.edabl.net -# ||dutolats.net^$third-party (easylistchina+easylist.txt: 38234) -.dutolats.net -# ||duactinor.net^$third-party (easylistchina+easylist.txt: 38233) -.duactinor.net -# ||drfflt.info^$third-party (easylistchina+easylist.txt: 38232) -.drfflt.info -# ||draugonda.net^$third-party (easylistchina+easylist.txt: 38231) -.draugonda.net -# ||doumantr.com^$third-party (easylistchina+easylist.txt: 38230) -.doumantr.com -# ||domri.net^$third-party (easylistchina+easylist.txt: 38229) -.domri.net -# ||dilpy.org^$third-party (easylistchina+easylist.txt: 38228) -.dilpy.org -# ||diabolicaf.com^$third-party (easylistchina+easylist.txt: 38227) -.diabolicaf.com -# ||deuskex.link^$third-party (easylistchina+easylist.txt: 38226) -.deuskex.link -# ||d3lens.com^$third-party (easylistchina+easylist.txt: 38225) -.d3lens.com -# ||crhikay.me^$third-party (easylistchina+easylist.txt: 38224) -.crhikay.me -# ||cotnr.com^$third-party (easylistchina+easylist.txt: 38223) -.cotnr.com -# ||contentr.net^$third-party (easylistchina+easylist.txt: 38222) -.contentr.net -# ||contentolyze.net^$third-party (easylistchina+easylist.txt: 38221) -.contentolyze.net -# ||compoter.net^$third-party (easylistchina+easylist.txt: 38220) -.compoter.net -# ||coaterhand.net^$third-party (easylistchina+easylist.txt: 38219) -.coaterhand.net -# ||chualangry.com^$third-party (easylistchina+easylist.txt: 38218) -.chualangry.com -# ||chiuawa.net^$third-party (easylistchina+easylist.txt: 38217) -.chiuawa.net -# ||chansiar.net^$third-party (easylistchina+easylist.txt: 38216) -.chansiar.net -# ||casiours.com^$third-party (easylistchina+easylist.txt: 38215) -.casiours.com -# ||c8factor.com^$third-party (easylistchina+easylist.txt: 38214) -.c8factor.com -# ||buoalait.com^$third-party (easylistchina+easylist.txt: 38213) -.buoalait.com -# ||buhafr.net^$third-party (easylistchina+easylist.txt: 38212) -.buhafr.net -# ||buatongz.net^$third-party (easylistchina+easylist.txt: 38211) -.buatongz.net -# ||boafernd.com^$third-party (easylistchina+easylist.txt: 38210) -.boafernd.com -# ||bluazard.net^$third-party (easylistchina+easylist.txt: 38209) -.bluazard.net -# ||blipi.net^$third-party (easylistchina+easylist.txt: 38208) -.blipi.net -# ||bliankerd.net^$third-party (easylistchina+easylist.txt: 38207) -.bliankerd.net -# ||blazwuatr.com^$third-party (easylistchina+easylist.txt: 38206) -.blazwuatr.com -# ||blaundorz.com^$third-party (easylistchina+easylist.txt: 38205) -.blaundorz.com -# ||biastoful.net^$third-party (easylistchina+easylist.txt: 38204) -.biastoful.net -# ||biankord.net^$third-party (easylistchina+easylist.txt: 38203) -.biankord.net -# ||baungarnr.com^$third-party (easylistchina+easylist.txt: 38202) -.baungarnr.com -# ||batarsur.com^$third-party (easylistchina+easylist.txt: 38201) -.batarsur.com -# ||baordrid.com^$third-party (easylistchina+easylist.txt: 38200) -.baordrid.com -# ||artbr.net^$third-party (easylistchina+easylist.txt: 38199) -.artbr.net -# ||appr8.net^$third-party (easylistchina+easylist.txt: 38198) -.appr8.net -# ||anomiely.com^$third-party (easylistchina+easylist.txt: 38197) -.anomiely.com -# ||allianrd.net^$third-party (easylistchina+easylist.txt: 38196) -.allianrd.net -# ||advuatianf.com^$third-party (easylistchina+easylist.txt: 38195) -.advuatianf.com -# ||addo-mnton.com^$third-party (easylistchina+easylist.txt: 38194) -.addo-mnton.com -# ||accmndtion.org^$third-party (easylistchina+easylist.txt: 38193) -.accmndtion.org -# ||atresadvertising.com^$third-party (easylistchina+easylist.txt: 38191) -.atresadvertising.com -# ||adhood.com^$third-party (easylistchina+easylist.txt: 38190) -.adhood.com -# ||yieldmo.com^$third-party (easylistchina+easylist.txt: 38188) -.yieldmo.com -# ||waptrick.com^$third-party (easylistchina+easylist.txt: 38187) -.waptrick.com -# ||wapdollar.in^$third-party (easylistchina+easylist.txt: 38186) -.wapdollar.in -# ||vungle.com^$third-party (easylistchina+easylist.txt: 38185) -.vungle.com -# ||tapjoyads.com^$third-party (easylistchina+easylist.txt: 38184) -.tapjoyads.com -# ||stepkeydo.com^$third-party (easylistchina+easylist.txt: 38183) -.stepkeydo.com -# ||startappexchange.com^$third-party (easylistchina+easylist.txt: 38182) -.startappexchange.com -# ||smaato.net^$third-party (easylistchina+easylist.txt: 38181) -.smaato.net -# ||sascdn.com^$third-party (easylistchina+easylist.txt: 38180) -.sascdn.com -# ||mysearch-online.com^$third-party (easylistchina+easylist.txt: 38179) -.mysearch-online.com -# ||mojiva.com^$third-party (easylistchina+easylist.txt: 38178) -.mojiva.com -# ||mocean.mobi^$third-party (easylistchina+easylist.txt: 38177) -.mocean.mobi -# ||mobpartner.mobi^$third-party (easylistchina+easylist.txt: 38176) -.mobpartner.mobi -# ||mobizme.net^$third-party (easylistchina+easylist.txt: 38175) -.mobizme.net -# ||mobgold.com^$third-party (easylistchina+easylist.txt: 38174) -.mobgold.com -# ||mkhoj.com^$third-party (easylistchina+easylist.txt: 38173) -.mkhoj.com -# ||millennialmedia.com^$third-party (easylistchina+easylist.txt: 38172) -.millennialmedia.com -# ||mad-adz.com^$third-party (easylistchina+easylist.txt: 38171) -.mad-adz.com -# ||kuad.kusogi.com^$third-party (easylistchina+easylist.txt: 38170) -.kuad.kusogi.com -# ||inmobi.com^$third-party (easylistchina+easylist.txt: 38169) -.inmobi.com -# ||greystripe.com^$third-party (easylistchina+easylist.txt: 38168) -.greystripe.com -# ||doubleclick.net^*/pfadx/app.ytpwatch.$third-party (easylistchina+easylist.txt: 38167) -.doubleclick.net/.*/pfadx/app\.ytpwatch\. -# ||dmg-mobile.com^$third-party (easylistchina+easylist.txt: 38166) -.dmg-mobile.com -# ||buxx.mobi^$third-party (easylistchina+easylist.txt: 38165) -.buxx.mobi -# ||appads.com^$third-party (easylistchina+easylist.txt: 38164) -.appads.com -# ||amobee.com^$third-party (easylistchina+easylist.txt: 38163) -.amobee.com -# ||airpush.com^$third-party (easylistchina+easylist.txt: 38162) -.airpush.com -# ||adzmob.com^$third-party (easylistchina+easylist.txt: 38161) -.adzmob.com -# ||adwired.mobi^$third-party (easylistchina+easylist.txt: 38160) -.adwired.mobi -# ||adwhirl.com^$third-party (easylistchina+easylist.txt: 38159) -.adwhirl.com -# ||admob.com^$third-party (easylistchina+easylist.txt: 38158) -.admob.com -# ||adiquity.com^$third-party (easylistchina+easylist.txt: 38157) -.adiquity.com -# ||adcolony.com^$third-party (easylistchina+easylist.txt: 38156) -.adcolony.com -# ||adbuddiz.com^$third-party (easylistchina+easylist.txt: 38155) -.adbuddiz.com -# ||zypenetwork.com^$third-party (easylistchina+easylist.txt: 38153) -.zypenetwork.com -# ||zyiis.net^$third-party (easylistchina+easylist.txt: 38152) -.zyiis.net -# ||zxxds.net^$third-party (easylistchina+easylist.txt: 38151) -.zxxds.net -# ||zwaar.org^$third-party (easylistchina+easylist.txt: 38150) -.zwaar.org -# ||zugo.com^$third-party (easylistchina+easylist.txt: 38149) -.zugo.com -# ||zoomdirect.com.au^$third-party (easylistchina+easylist.txt: 38148) -.zoomdirect.com.au -# ||zonplug.com^$third-party (easylistchina+easylist.txt: 38147) -.zonplug.com -# ||zonealta.com^$third-party (easylistchina+easylist.txt: 38146) -.zonealta.com -# ||zompmedia.com^$third-party (easylistchina+easylist.txt: 38145) -.zompmedia.com -# ||zoglafi.info^$third-party (easylistchina+easylist.txt: 38144) -.zoglafi.info -# ||znaptag.com^$third-party (easylistchina+easylist.txt: 38143) -.znaptag.com -# ||zipropyl.com^$third-party (easylistchina+easylist.txt: 38142) -.zipropyl.com -# ||ziffdavis.com^$third-party (easylistchina+easylist.txt: 38141) -.ziffdavis.com -# ||zidae.com^$third-party (easylistchina+easylist.txt: 38140) -.zidae.com -# ||zferral.com^$third-party (easylistchina+easylist.txt: 38139) -.zferral.com -# ||zeropark.com^$third-party (easylistchina+easylist.txt: 38138) -.zeropark.com -# ||zerezas.com^$third-party (easylistchina+easylist.txt: 38137) -.zerezas.com -# ||zercstas.com^$third-party (easylistchina+easylist.txt: 38136) -.zercstas.com -# ||zenoviagroup.com^$third-party (easylistchina+easylist.txt: 38135) -.zenoviagroup.com -# ||zenoviaexchange.com^$third-party (easylistchina+easylist.txt: 38134) -.zenoviaexchange.com -# ||zeesiti.com^$third-party (easylistchina+easylist.txt: 38133) -.zeesiti.com -# ||zedo.com^$third-party (easylistchina+easylist.txt: 38132) -.zedo.com -# ||zeads.com^$third-party (easylistchina+easylist.txt: 38131) -.zeads.com -# ||zde-engage.com^$third-party (easylistchina+easylist.txt: 38130) -.zde-engage.com -# ||zapunited.com^$third-party (easylistchina+easylist.txt: 38129) -.zapunited.com -# ||zappy.co.za^$third-party (easylistchina+easylist.txt: 38128) -.zappy.co.za -# ||zaparena.com^$third-party (easylistchina+easylist.txt: 38127) -.zaparena.com -# ||zanox.com/ppv/$third-party (easylistchina+easylist.txt: 38126) -.zanox.com/ppv/ -# ||zanox-affiliate.de/ppv/$third-party (easylistchina+easylist.txt: 38125) -.zanox-affiliate.de/ppv/ -# ||zangocash.com^$third-party (easylistchina+easylist.txt: 38124) -.zangocash.com -# ||z5x.net^$third-party (easylistchina+easylist.txt: 38123) -.z5x.net -# ||z-defense.com^$third-party (easylistchina+easylist.txt: 38122) -.z-defense.com -# ||yzus09by.com^$third-party (easylistchina+easylist.txt: 38121) -.yzus09by.com -# ||yzrnur.com^$third-party (easylistchina+easylist.txt: 38120) -.yzrnur.com -# ||yz56lywd.com^$third-party (easylistchina+easylist.txt: 38119) -.yz56lywd.com -# ||yvoria.com^$third-party (easylistchina+easylist.txt: 38118) -.yvoria.com -# ||yupfiles.net^$third-party (easylistchina+easylist.txt: 38117) -.yupfiles.net -# ||yumenetworks.com^$third-party (easylistchina+easylist.txt: 38116) -.yumenetworks.com -# ||yucce.com^$third-party (easylistchina+easylist.txt: 38115) -.yucce.com -# ||yuarth.com^$third-party (easylistchina+easylist.txt: 38114) -.yuarth.com -# ||ytsa.net^$third-party (easylistchina+easylist.txt: 38113) -.ytsa.net -# ||yourquickads.com^$third-party (easylistchina+easylist.txt: 38112) -.yourquickads.com -# ||yourfastpaydayloans.com^$third-party (easylistchina+easylist.txt: 38111) -.yourfastpaydayloans.com -# ||youradexchange.com^$third-party (easylistchina+easylist.txt: 38110) -.youradexchange.com -# ||your-tornado-file.org^$third-party (easylistchina+easylist.txt: 38109) -.your-tornado-file.org -# ||your-tornado-file.com^$third-party (easylistchina+easylist.txt: 38108) -.your-tornado-file.com -# ||youlouk.com^$third-party (easylistchina+easylist.txt: 38107) -.youlouk.com -# ||youlamedia.com^$third-party (easylistchina+easylist.txt: 38106) -.youlamedia.com -# ||youcandoitwithroi.com^$third-party (easylistchina+easylist.txt: 38105) -.youcandoitwithroi.com -# ||yottacash.com^$third-party (easylistchina+easylist.txt: 38104) -.yottacash.com -# ||yoc-adserver.com^$third-party (easylistchina+easylist.txt: 38103) -.yoc-adserver.com -# ||ymads.com^$third-party (easylistchina+easylist.txt: 38102) -.ymads.com -# ||yllix.com^$third-party (easylistchina+easylist.txt: 38101) -.yllix.com -# ||yldmgrimg.net^$third-party (easylistchina+easylist.txt: 38100) -.yldmgrimg.net -# ||yldbt.com^$third-party (easylistchina+easylist.txt: 38099) -.yldbt.com -# ||yieldx.com^$third-party (easylistchina+easylist.txt: 38098) -.yieldx.com -# ||yieldselect.com^$third-party (easylistchina+easylist.txt: 38097) -.yieldselect.com -# ||yieldoptimizer.com^$third-party (easylistchina+easylist.txt: 38096) -.yieldoptimizer.com -# ||yieldmanager.net^$third-party (easylistchina+easylist.txt: 38095) -.yieldmanager.net -# ||yieldmanager.com^$third-party (easylistchina+easylist.txt: 38094) -.yieldmanager.com -# ||yieldlab.net^$third-party (easylistchina+easylist.txt: 38093) -.yieldlab.net -# ||yieldkit.com^$third-party (easylistchina+easylist.txt: 38092) -.yieldkit.com -# ||yieldbuild.com^$third-party (easylistchina+easylist.txt: 38091) -.yieldbuild.com -# ||yieldadvert.com^$third-party (easylistchina+easylist.txt: 38090) -.yieldadvert.com -# ||yieldads.com^$third-party (easylistchina+easylist.txt: 38089) -.yieldads.com -# ||yesnexus.com^$third-party (easylistchina+easylist.txt: 38088) -.yesnexus.com -# ||yesadsrv.com^$third-party (easylistchina+easylist.txt: 38087) -.yesadsrv.com -# ||yes-messenger.com^$third-party (easylistchina+easylist.txt: 38086) -.yes-messenger.com -# ||yellads.com^$third-party (easylistchina+easylist.txt: 38085) -.yellads.com -# ||yeabble.com^$third-party (easylistchina+easylist.txt: 38084) -.yeabble.com -# ||yceml.net^$third-party (easylistchina+easylist.txt: 38083) -.yceml.net -# ||ycasmd.info^$third-party (easylistchina+easylist.txt: 38082) -.ycasmd.info -# ||yb0t.com^$third-party (easylistchina+easylist.txt: 38081) -.yb0t.com -# ||yawnedgtuis.org^$third-party (easylistchina+easylist.txt: 38080) -.yawnedgtuis.org -# ||yashi.com^$third-party (easylistchina+easylist.txt: 38079) -.yashi.com -# ||yambotan.ru^$third-party (easylistchina+easylist.txt: 38078) -.yambotan.ru -# ||yadomedia.com^$third-party (easylistchina+easylist.txt: 38077) -.yadomedia.com -# ||yabuka.com^$third-party (easylistchina+easylist.txt: 38076) -.yabuka.com -# ||ya88s1yk.com^$third-party (easylistchina+easylist.txt: 38075) -.ya88s1yk.com -# ||xxlink.net^$third-party (easylistchina+easylist.txt: 38074) -.xxlink.net -# ||xx00.info^$third-party (easylistchina+easylist.txt: 38073) -.xx00.info -# ||xvika.com^$third-party (easylistchina+easylist.txt: 38072) -.xvika.com -# ||xubob.com^$third-party (easylistchina+easylist.txt: 38071) -.xubob.com -# ||xtendmedia.com^$third-party (easylistchina+easylist.txt: 38070) -.xtendmedia.com -# ||xtendadvert.com^$third-party (easylistchina+easylist.txt: 38069) -.xtendadvert.com -# ||xtcie.com^$third-party (easylistchina+easylist.txt: 38068) -.xtcie.com -# ||xs.mochiads.com^$third-party (easylistchina+easylist.txt: 38067) -.xs.mochiads.com -# ||xmlconfig.ltassrv.com^$third-party (easylistchina+easylist.txt: 38066) -.xmlconfig.ltassrv.com -# ||xmasdom.com^$third-party (easylistchina+easylist.txt: 38065) -.xmasdom.com -# ||xjfjx8hw.com^$third-party (easylistchina+easylist.txt: 38064) -.xjfjx8hw.com -# ||xgraph.net^$third-party (easylistchina+easylist.txt: 38063) -.xgraph.net -# ||xfs5yhr1.com^$third-party (easylistchina+easylist.txt: 38062) -.xfs5yhr1.com -# ||xfileload.com^$third-party (easylistchina+easylist.txt: 38061) -.xfileload.com -# ||xeontopa.com^$third-party (easylistchina+easylist.txt: 38060) -.xeontopa.com -# ||xdirectx.com^$third-party (easylistchina+easylist.txt: 38059) -.xdirectx.com -# ||xdev.info^$third-party (easylistchina+easylist.txt: 38058) -.xdev.info -# ||xchangebanners.com^$third-party (easylistchina+easylist.txt: 38057) -.xchangebanners.com -# ||xcelsiusadserver.com^$third-party (easylistchina+easylist.txt: 38056) -.xcelsiusadserver.com -# ||xcelltech.com^$third-party (easylistchina+easylist.txt: 38055) -.xcelltech.com -# ||xaxoro.com^$third-party (easylistchina+easylist.txt: 38054) -.xaxoro.com -# ||xadcentral.com^$third-party (easylistchina+easylist.txt: 38053) -.xadcentral.com -# ||xad.com^$third-party (easylistchina+easylist.txt: 38052) -.xad.com -# ||x4300tiz.com^$third-party (easylistchina+easylist.txt: 38051) -.x4300tiz.com -# ||x.mochiads.com^$third-party (easylistchina+easylist.txt: 38050) -.x.mochiads.com -# ||wwwpromoter.com^$third-party (easylistchina+easylist.txt: 38049) -.wwwpromoter.com -# ||wwwadcntr.com^$third-party (easylistchina+easylist.txt: 38048) -.wwwadcntr.com -# ||wwv4ez0n.com^$third-party (easylistchina+easylist.txt: 38047) -.wwv4ez0n.com -# ||wwbn.com^$third-party (easylistchina+easylist.txt: 38046) -.wwbn.com -# ||wurea.com^$third-party (easylistchina+easylist.txt: 38045) -.wurea.com -# ||wulium.com^$third-party (easylistchina+easylist.txt: 38044) -.wulium.com -# ||worthyadvertising.com^$third-party (easylistchina+easylist.txt: 38043) -.worthyadvertising.com -# ||worthathousandwords.com^$third-party (easylistchina+easylist.txt: 38042) -.worthathousandwords.com -# ||worldwidemailer.com^$third-party (easylistchina+easylist.txt: 38041) -.worldwidemailer.com -# ||worlddatinghere.com^$third-party (easylistchina+easylist.txt: 38040) -.worlddatinghere.com -# ||wordego.com^$third-party (easylistchina+easylist.txt: 38039) -.wordego.com -# ||wordbankads.com^$third-party (easylistchina+easylist.txt: 38038) -.wordbankads.com -# ||wootmedia.net^$third-party (easylistchina+easylist.txt: 38037) -.wootmedia.net -# ||wonclick.com^$third-party (easylistchina+easylist.txt: 38036) -.wonclick.com -# ||wmmediacorp.com^$third-party (easylistchina+easylist.txt: 38035) -.wmmediacorp.com -# ||wlmarketing.com^$third-party (easylistchina+easylist.txt: 38034) -.wlmarketing.com -# ||winsspeeder.info^$third-party (easylistchina+easylist.txt: 38033) -.winsspeeder.info -# ||wingads.com^$third-party (easylistchina+easylist.txt: 38032) -.wingads.com -# ||winbuyer.com^$third-party (easylistchina+easylist.txt: 38031) -.winbuyer.com -# ||wigetstudios.com^$third-party (easylistchina+easylist.txt: 38030) -.wigetstudios.com -# ||wigetmedia.com^$third-party (easylistchina+easylist.txt: 38029) -.wigetmedia.com -# ||widgetwidget.mobi^$third-party (easylistchina+easylist.txt: 38028) -.widgetwidget.mobi -# ||widgetvalue.net^$third-party (easylistchina+easylist.txt: 38027) -.widgetvalue.net -# ||widgetsurvey.biz^$third-party (easylistchina+easylist.txt: 38026) -.widgetsurvey.biz -# ||widgets.fccinteractive.com^$third-party (easylistchina+easylist.txt: 38025) -.widgets.fccinteractive.com -# ||widgetlead.net^$third-party (easylistchina+easylist.txt: 38024) -.widgetlead.net -# ||widgetbucks.com^$third-party (easylistchina+easylist.txt: 38023) -.widgetbucks.com -# ||widgetbanner.mobi^$third-party (easylistchina+easylist.txt: 38022) -.widgetbanner.mobi -# ||widgetadvertising.biz^$third-party (easylistchina+easylist.txt: 38021) -.widgetadvertising.biz -# ||widget.yavli.com^$third-party (easylistchina+easylist.txt: 38020) -.widget.yavli.com -# ||why-outsource.net^$third-party (easylistchina+easylist.txt: 38019) -.why-outsource.net -# ||whtsrv9.com^$third-party (easylistchina+easylist.txt: 38018) -.whtsrv9.com -# ||whoads.net^$third-party (easylistchina+easylist.txt: 38017) -.whoads.net -# ||where.com^$third-party (easylistchina+easylist.txt: 38016) -.where.com -# ||wh5kb0u4.com^$third-party (easylistchina+easylist.txt: 38015) -.wh5kb0u4.com -# ||wgreatdream.com^$third-party (easylistchina+easylist.txt: 38014) -.wgreatdream.com -# ||wfnetwork.com^$third-party (easylistchina+easylist.txt: 38013) -.wfnetwork.com -# ||werbe-sponsor.de^$third-party (easylistchina+easylist.txt: 38012) -.werbe-sponsor.de -# ||wellturnedpenne.info^$third-party (easylistchina+easylist.txt: 38011) -.wellturnedpenne.info -# ||wegotmedia.com^$third-party (easylistchina+easylist.txt: 38010) -.wegotmedia.com -# ||wegetpaid.net^$third-party (easylistchina+easylist.txt: 38009) -.wegetpaid.net -# ||webusersurvey.com^$third-party (easylistchina+easylist.txt: 38008) -.webusersurvey.com -# ||webtraffic.ttinet.com^$third-party (easylistchina+easylist.txt: 38007) -.webtraffic.ttinet.com -# ||webseeds.com^$third-party (easylistchina+easylist.txt: 38006) -.webseeds.com -# ||weborama.fr^$third-party (easylistchina+easylist.txt: 38005) -.weborama.fr -# ||webmedia.co.il^$third-party (easylistchina+easylist.txt: 38004) -.webmedia.co.il -# ||webgains.com^$third-party (easylistchina+easylist.txt: 38003) -.webgains.com -# ||webadvertise123.com^$third-party (easylistchina+easylist.txt: 38002) -.webadvertise123.com -# ||webads.nl^$third-party (easylistchina+easylist.txt: 38001) -.webads.nl -# ||webads.co.nz^$third-party (easylistchina+easylist.txt: 38000) -.webads.co.nz -# ||web-bird.jp^$third-party (easylistchina+easylist.txt: 37999) -.web-bird.jp -# ||web-adservice.com^$third-party (easylistchina+easylist.txt: 37998) -.web-adservice.com -# ||weadrevenue.com^$third-party (easylistchina+easylist.txt: 37997) -.weadrevenue.com -# ||wcpanalytics.com^$third-party (easylistchina+easylist.txt: 37996) -.wcpanalytics.com -# ||wcmcs.net^$third-party (easylistchina+easylist.txt: 37995) -.wcmcs.net -# ||wbptqzmv.com^$third-party (easylistchina+easylist.txt: 37994) -.wbptqzmv.com -# ||waymp.com^$third-party (easylistchina+easylist.txt: 37993) -.waymp.com -# ||wateristian.com^$third-party (easylistchina+easylist.txt: 37992) -.wateristian.com -# ||watchnowlive.eu^$third-party (easylistchina+easylist.txt: 37991) -.watchnowlive.eu -# ||watchfree.flv.in^$third-party (easylistchina+easylist.txt: 37990) -.watchfree.flv.in -# ||warfacco.com^$third-party (easylistchina+easylist.txt: 37989) -.warfacco.com -# ||warezlayer.to^$third-party (easylistchina+easylist.txt: 37988) -.warezlayer.to -# ||wangfenxi.com^$third-party (easylistchina+easylist.txt: 37987) -.wangfenxi.com -# ||wamnetwork.com^$third-party (easylistchina+easylist.txt: 37986) -.wamnetwork.com -# ||wallacemaloneymindanao.info^$third-party (easylistchina+easylist.txt: 37985) -.wallacemaloneymindanao.info -# ||wahoha.com^$third-party (easylistchina+easylist.txt: 37984) -.wahoha.com -# ||wagershare.com^$third-party (easylistchina+easylist.txt: 37983) -.wagershare.com -# ||waframedia8.com^$third-party (easylistchina+easylist.txt: 37982) -.waframedia8.com -# ||waframedia7.com^$third-party (easylistchina+easylist.txt: 37981) -.waframedia7.com -# ||waframedia5.com^$third-party (easylistchina+easylist.txt: 37980) -.waframedia5.com -# ||waframedia3.com^$third-party (easylistchina+easylist.txt: 37979) -.waframedia3.com -# ||wafmedia6.com^$third-party (easylistchina+easylist.txt: 37978) -.wafmedia6.com -# ||wafmedia5.com^$third-party (easylistchina+easylist.txt: 37977) -.wafmedia5.com -# ||wafmedia3.com^$third-party (easylistchina+easylist.txt: 37976) -.wafmedia3.com -# ||w9statistics.info^$third-party (easylistchina+easylist.txt: 37975) -.w9statistics.info -# ||w5statistics.info^$third-party (easylistchina+easylist.txt: 37974) -.w5statistics.info -# ||w4.com^$third-party (easylistchina+easylist.txt: 37973) -.w4.com -# ||w3exit.com^$third-party (easylistchina+easylist.txt: 37972) -.w3exit.com -# ||w00tmedia.net^$third-party (easylistchina+easylist.txt: 37971) -.w00tmedia.net -# ||w00tads.com^$third-party (easylistchina+easylist.txt: 37970) -.w00tads.com -# ||vuiads.net^$third-party (easylistchina+easylist.txt: 37969) -.vuiads.net -# ||vuiads.info^$third-party (easylistchina+easylist.txt: 37968) -.vuiads.info -# ||vuiads.de^$third-party (easylistchina+easylist.txt: 37967) -.vuiads.de -# ||vth05dse.com^$third-party (easylistchina+easylist.txt: 37966) -.vth05dse.com -# ||vsservers.net^$third-party (easylistchina+easylist.txt: 37965) -.vsservers.net -# ||vs4family.com^$third-party (easylistchina+easylist.txt: 37964) -.vs4family.com -# ||vs4entertainment.com^$third-party (easylistchina+easylist.txt: 37963) -.vs4entertainment.com -# ||vs20060817.com^$third-party (easylistchina+easylist.txt: 37962) -.vs20060817.com -# ||vpico.com^$third-party (easylistchina+easylist.txt: 37961) -.vpico.com -# ||vogozaw.ru^$third-party (easylistchina+easylist.txt: 37960) -.vogozaw.ru -# ||vogosita.com^$third-party (easylistchina+easylist.txt: 37959) -.vogosita.com -# ||vntsm.com^$third-party (easylistchina+easylist.txt: 37958) -.vntsm.com -# ||vixnixxer.com^$third-party (easylistchina+easylist.txt: 37957) -.vixnixxer.com -# ||vivamob.net^$third-party (easylistchina+easylist.txt: 37956) -.vivamob.net -# ||vitalads.net^$third-party (easylistchina+easylist.txt: 37955) -.vitalads.net -# ||visualsteel.net^$third-party (easylistchina+easylist.txt: 37954) -.visualsteel.net -# ||visitweb.com^$third-party (easylistchina+easylist.txt: 37953) -.visitweb.com -# ||visitdetails.com^$third-party (easylistchina+easylist.txt: 37952) -.visitdetails.com -# ||visiblemeasures.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37951) -.visiblemeasures.com -# ||visiblegains.com^$third-party (easylistchina+easylist.txt: 37950) -.visiblegains.com -# ||visiads.com^$third-party (easylistchina+easylist.txt: 37949) -.visiads.com -# ||viralmediatech.com^$third-party (easylistchina+easylist.txt: 37948) -.viralmediatech.com -# ||vipquesting.com^$third-party (easylistchina+easylist.txt: 37947) -.vipquesting.com -# ||vipcpms.com^$third-party (easylistchina+easylist.txt: 37946) -.vipcpms.com -# ||vindicosuite.com^$third-party (easylistchina+easylist.txt: 37945) -.vindicosuite.com -# ||viewivo.com^$third-party (easylistchina+easylist.txt: 37944) -.viewivo.com -# ||viewex.co.uk^$third-party (easylistchina+easylist.txt: 37943) -.viewex.co.uk -# ||viewclc.com^$third-party (easylistchina+easylist.txt: 37942) -.viewclc.com -# ||viewablemedia.net^$third-party (easylistchina+easylist.txt: 37941) -.viewablemedia.net -# ||view.atdmt.com^*/view/$third-party (easylistchina+easylist.txt: 37940) -.view.atdmt.com/.*/view/ -# ||view.atdmt.com^*/iview/$third-party (easylistchina+easylist.txt: 37939) -.view.atdmt.com/.*/iview/ -# ||view.atdmt.com/partner/$third-party (easylistchina+easylist.txt: 37938) -.view.atdmt.com/partner/ -# ||view-ads.de^$third-party (easylistchina+easylist.txt: 37937) -.view-ads.de -# ||viedeo2k.tv^$third-party (easylistchina+easylist.txt: 37936) -.viedeo2k.tv -# ||vidpay.com^$third-party (easylistchina+easylist.txt: 37935) -.vidpay.com -# ||videovfr.com^$third-party (easylistchina+easylist.txt: 37934) -.videovfr.com -# ||videoroll.net^$third-party (easylistchina+easylist.txt: 37933) -.videoroll.net -# ||videoplaza.tv^$~object-subrequest,third-party (easylistchina+easylist.txt: 37932) -.videoplaza.tv -# ||videoplaza.tv/proxy/distributor^$object-subrequest,third-party (easylistchina+easylist.txt: 37930) -.videoplaza.tv/proxy/distributor[^\w%.-] -# ||videoplaza.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37929) -.videoplaza.com -# ||videologygroup.com^$third-party (easylistchina+easylist.txt: 37927) -.videologygroup.com -# ||videoliver.com^$third-party (easylistchina+easylist.txt: 37926) -.videoliver.com -# ||videolansoftware.com^$third-party (easylistchina+easylist.txt: 37925) -.videolansoftware.com -# ||videohube.eu^$third-party (easylistchina+easylist.txt: 37924) -.videohube.eu -# ||videohub.com^$third-party (easylistchina+easylist.txt: 37923) -.videohub.com -# ||videoegg.com^$third-party (easylistchina+easylist.txt: 37922) -.videoegg.com -# ||videodeals.com^$third-party (easylistchina+easylist.txt: 37921) -.videodeals.com -# ||videoclick.ru^$third-party (easylistchina+easylist.txt: 37920) -.videoclick.ru -# ||videoadex.com^$third-party (easylistchina+easylist.txt: 37919) -.videoadex.com -# ||video1404.info^$third-party (easylistchina+easylist.txt: 37918) -.video1404.info -# ||video-loader.com^$third-party (easylistchina+easylist.txt: 37917) -.video-loader.com -# ||vibrantmedia.com^$third-party (easylistchina+easylist.txt: 37916) -.vibrantmedia.com -# ||vibrant.co^$third-party (easylistchina+easylist.txt: 37915) -.vibrant.co -# ||vianadserver.com^$third-party (easylistchina+easylist.txt: 37914) -.vianadserver.com -# ||vhmnetwork.com^$third-party (easylistchina+easylist.txt: 37913) -.vhmnetwork.com -# ||versetime.com^$third-party (easylistchina+easylist.txt: 37912) -.versetime.com -# ||versahq.com^$third-party (easylistchina+easylist.txt: 37911) -.versahq.com -# ||verata.xyz^$third-party (easylistchina+easylist.txt: 37910) -.verata.xyz -# ||veoxa.com^$third-party (easylistchina+easylist.txt: 37909) -.veoxa.com -# ||venusbux.com^$third-party (easylistchina+easylist.txt: 37908) -.venusbux.com -# ||vendexo.com^$third-party (easylistchina+easylist.txt: 37907) -.vendexo.com -# ||vemba.com^$third-party (easylistchina+easylist.txt: 37906) -.vemba.com -# ||velti.com^$third-party (easylistchina+easylist.txt: 37905) -.velti.com -# ||velmedia.net^$third-party (easylistchina+easylist.txt: 37904) -.velmedia.net -# ||vellde.com^$third-party (easylistchina+easylist.txt: 37903) -.vellde.com -# ||vectorstock.com^$third-party (easylistchina+easylist.txt: 37902) -.vectorstock.com -# ||vdopia.com^$third-party (easylistchina+easylist.txt: 37901) -.vdopia.com -# ||vcommission.com^$third-party (easylistchina+easylist.txt: 37900) -.vcommission.com -# ||vcmedia.com^$third-party (easylistchina+easylist.txt: 37899) -.vcmedia.com -# ||vastopped.com^$third-party (easylistchina+easylist.txt: 37898) -.vastopped.com -# ||vapedia.com^$third-party (easylistchina+easylist.txt: 37897) -.vapedia.com -# ||valuecontent.net^$third-party (easylistchina+easylist.txt: 37896) -.valuecontent.net -# ||valuecommerce.com^$third-party (easylistchina+easylist.txt: 37895) -.valuecommerce.com -# ||valueclickmedia.com^$third-party (easylistchina+easylist.txt: 37894) -.valueclickmedia.com -# ||valueclick.net^$third-party (easylistchina+easylist.txt: 37893) -.valueclick.net -# ||valueclick.com^$third-party (easylistchina+easylist.txt: 37892) -.valueclick.com -# ||valueaffiliate.net^$third-party (easylistchina+easylist.txt: 37891) -.valueaffiliate.net -# ||valuead.com^$third-party (easylistchina+easylist.txt: 37890) -.valuead.com -# ||validclick.com^$third-party (easylistchina+easylist.txt: 37889) -.validclick.com -# ||vadpay.com^$third-party (easylistchina+easylist.txt: 37888) -.vadpay.com -# ||v2mlblack.biz^$third-party (easylistchina+easylist.txt: 37887) -.v2mlblack.biz -# ||v2cigs.com^$third-party (easylistchina+easylist.txt: 37886) -.v2cigs.com -# ||v11media.com^$third-party (easylistchina+easylist.txt: 37885) -.v11media.com -# ||v.movad.de^$third-party (easylistchina+easylist.txt: 37884) -.v.movad.de -# ||v.fwmrm.net^$object-subrequest,third-party (easylistchina+easylist.txt: 37883) -.v.fwmrm.net -# ||utubeconverter.com^$third-party (easylistchina+easylist.txt: 37882) -.utubeconverter.com -# ||utokapa.com^$third-party (easylistchina+easylist.txt: 37881) -.utokapa.com -# ||utarget.ru^$third-party (easylistchina+easylist.txt: 37880) -.utarget.ru -# ||utarget.co.uk^$third-party (easylistchina+easylist.txt: 37879) -.utarget.co.uk -# ||usurv.com^$third-party (easylistchina+easylist.txt: 37878) -.usurv.com -# ||usercash.com^$third-party (easylistchina+easylist.txt: 37877) -.usercash.com -# ||usenetpassport.com^$third-party (easylistchina+easylist.txt: 37876) -.usenetpassport.com -# ||usenetjunction.com^$third-party (easylistchina+easylist.txt: 37875) -.usenetjunction.com -# ||usemax.de^$third-party (easylistchina+easylist.txt: 37874) -.usemax.de -# ||usbanners.com^$third-party (easylistchina+easylist.txt: 37873) -.usbanners.com -# ||urlcash.net^$third-party (easylistchina+easylist.txt: 37872) -.urlcash.net -# ||urlads.net^$third-party (easylistchina+easylist.txt: 37871) -.urlads.net -# ||ureace.com^$third-party (easylistchina+easylist.txt: 37870) -.ureace.com -# ||urbation.net^$third-party (easylistchina+easylist.txt: 37869) -.urbation.net -# ||upliftsearch.com^$third-party (easylistchina+easylist.txt: 37868) -.upliftsearch.com -# ||upads.info^$third-party (easylistchina+easylist.txt: 37867) -.upads.info -# ||unterary.com^$third-party (easylistchina+easylist.txt: 37866) -.unterary.com -# ||unrulymedia.com^$third-party (easylistchina+easylist.txt: 37865) -.unrulymedia.com -# ||unlockr.com^$third-party (easylistchina+easylist.txt: 37864) -.unlockr.com -# ||universityofinternetscience.com^$third-party (easylistchina+easylist.txt: 37863) -.universityofinternetscience.com -# ||unitethecows.com^$third-party (easylistchina+easylist.txt: 37862) -.unitethecows.com -# ||unicast.com^$third-party (easylistchina+easylist.txt: 37861) -.unicast.com -# ||undertone.com^$third-party (easylistchina+easylist.txt: 37860) -.undertone.com -# ||underclick.ru^$third-party (easylistchina+easylist.txt: 37859) -.underclick.ru -# ||unanimis.co.uk^$third-party (easylistchina+easylist.txt: 37858) -.unanimis.co.uk -# ||ultimategracelessness.info^$third-party (easylistchina+easylist.txt: 37857) -.ultimategracelessness.info -# ||ukbanners.com^$third-party (easylistchina+easylist.txt: 37856) -.ukbanners.com -# ||uiqatnpooq.com^$third-party (easylistchina+easylist.txt: 37855) -.uiqatnpooq.com -# ||uiadserver.com^$third-party (easylistchina+easylist.txt: 37854) -.uiadserver.com -# ||uglyst.com^$third-party (easylistchina+easylist.txt: 37853) -.uglyst.com -# ||ughus.com^$third-party (easylistchina+easylist.txt: 37852) -.ughus.com -# ||ugaral.com^$third-party (easylistchina+easylist.txt: 37851) -.ugaral.com -# ||udmserve.net^$third-party (easylistchina+easylist.txt: 37850) -.udmserve.net -# ||ubudigital.com^$third-party (easylistchina+easylist.txt: 37849) -.ubudigital.com -# ||u1hw38x0.com^$third-party (easylistchina+easylist.txt: 37848) -.u1hw38x0.com -# ||u-ad.info^$third-party (easylistchina+easylist.txt: 37847) -.u-ad.info -# ||tyroo.com^$third-party (easylistchina+easylist.txt: 37846) -.tyroo.com -# ||twtad.com^$third-party (easylistchina+easylist.txt: 37845) -.twtad.com -# ||twittad.com^$third-party (easylistchina+easylist.txt: 37844) -.twittad.com -# ||twistads.com^$third-party (easylistchina+easylist.txt: 37843) -.twistads.com -# ||twinpinenetwork.com^$third-party (easylistchina+easylist.txt: 37842) -.twinpinenetwork.com -# ||tweard.com^$third-party (easylistchina+easylist.txt: 37841) -.tweard.com -# ||twalm.com^$third-party (easylistchina+easylist.txt: 37840) -.twalm.com -# ||tvprocessing.com^$third-party (easylistchina+easylist.txt: 37839) -.tvprocessing.com -# ||tvas-c.pw^$third-party (easylistchina+easylist.txt: 37838) -.tvas-c.pw -# ||tutvp.com^$third-party (easylistchina+easylist.txt: 37837) -.tutvp.com -# ||tusno.com^$third-party (easylistchina+easylist.txt: 37836) -.tusno.com -# ||turn.com^$third-party (easylistchina+easylist.txt: 37835) -.turn.com -# ||turbotraff.net^$third-party (easylistchina+easylist.txt: 37834) -.turbotraff.net -# ||tumri.net^$third-party (easylistchina+easylist.txt: 37833) -.tumri.net -# ||tubereplay.com^$third-party (easylistchina+easylist.txt: 37832) -.tubereplay.com -# ||tubemogul.com^$third-party (easylistchina+easylist.txt: 37831) -.tubemogul.com -# ||tubberlo.com^$third-party (easylistchina+easylist.txt: 37830) -.tubberlo.com -# ||ttzmedia.com^$third-party (easylistchina+easylist.txt: 37829) -.ttzmedia.com -# ||trygen.co.uk^$third-party (easylistchina+easylist.txt: 37828) -.trygen.co.uk -# ||truex.com^$third-party (easylistchina+easylist.txt: 37827) -.truex.com -# ||truesecurejump.com^$third-party (easylistchina+easylist.txt: 37826) -.truesecurejump.com -# ||trtrccl.com^$third-party (easylistchina+easylist.txt: 37825) -.trtrccl.com -# ||trmit.com^$third-party (easylistchina+easylist.txt: 37824) -.trmit.com -# ||trks.us^$third-party (easylistchina+easylist.txt: 37823) -.trks.us -# ||trklnks.com^$third-party (easylistchina+easylist.txt: 37822) -.trklnks.com -# ||trker.com^$third-party (easylistchina+easylist.txt: 37821) -.trker.com -# ||trkclk.net^$third-party (easylistchina+easylist.txt: 37820) -.trkclk.net -# ||trkalot.com^$third-party (easylistchina+easylist.txt: 37819) -.trkalot.com -# ||trk4.com^$third-party (easylistchina+easylist.txt: 37818) -.trk4.com -# ||trigami.com^$third-party (easylistchina+easylist.txt: 37817) -.trigami.com -# ||tribalfusion.com^$third-party (easylistchina+easylist.txt: 37816) -.tribalfusion.com -# ||triadmedianetwork.com^$third-party (easylistchina+easylist.txt: 37815) -.triadmedianetwork.com -# ||trenpyle.com^$third-party (easylistchina+easylist.txt: 37814) -.trenpyle.com -# ||tredirect.com^$third-party (easylistchina+easylist.txt: 37813) -.tredirect.com -# ||travidia.com^$third-party (easylistchina+easylist.txt: 37812) -.travidia.com -# ||travelscream.com^$third-party (easylistchina+easylist.txt: 37811) -.travelscream.com -# ||traveladvertising.com^$third-party (easylistchina+easylist.txt: 37810) -.traveladvertising.com -# ||trapasol.com^$third-party (easylistchina+easylist.txt: 37809) -.trapasol.com -# ||trahic.ru^$third-party (easylistchina+easylist.txt: 37808) -.trahic.ru -# ||traffirms.com^$third-party (easylistchina+easylist.txt: 37807) -.traffirms.com -# ||trafficzap.com^$third-party (easylistchina+easylist.txt: 37806) -.trafficzap.com -# ||trafficz.com^$third-party (easylistchina+easylist.txt: 37805) -.trafficz.com -# ||trafficwave.net^$third-party (easylistchina+easylist.txt: 37804) -.trafficwave.net -# ||trafficvance.com^$third-party (easylistchina+easylist.txt: 37803) -.trafficvance.com -# ||trafficular.com^$third-party (easylistchina+easylist.txt: 37802) -.trafficular.com -# ||traffictrader.net^$third-party (easylistchina+easylist.txt: 37801) -.traffictrader.net -# ||trafficsynergy.com^$third-party (easylistchina+easylist.txt: 37800) -.trafficsynergy.com -# ||trafficsway.com^$third-party (easylistchina+easylist.txt: 37799) -.trafficsway.com -# ||trafficswarm.com^$third-party (easylistchina+easylist.txt: 37798) -.trafficswarm.com -# ||trafficspaces.net^$third-party (easylistchina+easylist.txt: 37797) -.trafficspaces.net -# ||trafficrevenue.net^$third-party (easylistchina+easylist.txt: 37796) -.trafficrevenue.net -# ||trafficposse.com^$third-party (easylistchina+easylist.txt: 37795) -.trafficposse.com -# ||trafficmp.com^$third-party (easylistchina+easylist.txt: 37794) -.trafficmp.com -# ||trafficmasterz.net^$third-party (easylistchina+easylist.txt: 37793) -.trafficmasterz.net -# ||trafficjunky.net^$third-party (easylistchina+easylist.txt: 37792) -.trafficjunky.net -# ||traffichaus.com^$third-party (easylistchina+easylist.txt: 37791) -.traffichaus.com -# ||trafficforce.com^$third-party (easylistchina+easylist.txt: 37790) -.trafficforce.com -# ||trafficfactory.biz^$third-party (easylistchina+easylist.txt: 37789) -.trafficfactory.biz -# ||trafficbroker.com^$third-party (easylistchina+easylist.txt: 37788) -.trafficbroker.com -# ||trafficbarads.com^$third-party (easylistchina+easylist.txt: 37787) -.trafficbarads.com -# ||traffic-supremacy.com^$third-party (easylistchina+easylist.txt: 37786) -.traffic-supremacy.com -# ||traffboost.net^$third-party (easylistchina+easylist.txt: 37785) -.traffboost.net -# ||traff-advertazer.com^$third-party (easylistchina+easylist.txt: 37784) -.traff-advertazer.com -# ||tradepopups.com^$third-party (easylistchina+easylist.txt: 37783) -.tradepopups.com -# ||tradeexpert.net^$third-party (easylistchina+easylist.txt: 37782) -.tradeexpert.net -# ||tradeadexchange.com^$third-party (easylistchina+easylist.txt: 37781) -.tradeadexchange.com -# ||trackyourlinks.com^$third-party (easylistchina+easylist.txt: 37780) -.trackyourlinks.com -# ||trackword.net^$third-party (easylistchina+easylist.txt: 37779) -.trackword.net -# ||tracktor.co.uk^$third-party (easylistchina+easylist.txt: 37778) -.tracktor.co.uk -# ||trackthatad.com^$third-party (easylistchina+easylist.txt: 37777) -.trackthatad.com -# ||trackstarsengland.net^$third-party (easylistchina+easylist.txt: 37776) -.trackstarsengland.net -# ||trackpromotion.net^$third-party (easylistchina+easylist.txt: 37775) -.trackpromotion.net -# ||trackpath.biz^$third-party (easylistchina+easylist.txt: 37774) -.trackpath.biz -# ||trackingoffer.net^$third-party (easylistchina+easylist.txt: 37773) -.trackingoffer.net -# ||trackingoffer.info^$third-party (easylistchina+easylist.txt: 37772) -.trackingoffer.info -# ||tracking11.com^$third-party (easylistchina+easylist.txt: 37771) -.tracking11.com -# ||tracking101.com^$third-party (easylistchina+easylist.txt: 37770) -.tracking101.com -# ||tracking.to^$third-party (easylistchina+easylist.txt: 37769) -.tracking.to -# ||trackcorner.com^$third-party (easylistchina+easylist.txt: 37768) -.trackcorner.com -# ||trackadvertising.net^$third-party (easylistchina+easylist.txt: 37767) -.trackadvertising.net -# ||traceadmanager.com^$third-party (easylistchina+easylist.txt: 37766) -.traceadmanager.com -# ||tqlkg.net^$third-party (easylistchina+easylist.txt: 37765) -.tqlkg.net -# ||tqlkg.com^$third-party (easylistchina+easylist.txt: 37764) -.tqlkg.com -# ||tpnads.com^$third-party (easylistchina+easylist.txt: 37763) -.tpnads.com -# ||tower-colocation.info^$third-party (easylistchina+easylist.txt: 37762) -.tower-colocation.info -# ||tower-colocation.de^$third-party (easylistchina+easylist.txt: 37761) -.tower-colocation.de -# ||towardstelephone.com^$third-party (easylistchina+easylist.txt: 37760) -.towardstelephone.com -# ||totemcash.com^$third-party (easylistchina+easylist.txt: 37759) -.totemcash.com -# ||totalprofitplan.com^$third-party (easylistchina+easylist.txt: 37758) -.totalprofitplan.com -# ||total-media.net^$third-party (easylistchina+easylist.txt: 37757) -.total-media.net -# ||torrpedoads.net^$third-party (easylistchina+easylist.txt: 37756) -.torrpedoads.net -# ||torrida.net^$third-party (easylistchina+easylist.txt: 37755) -.torrida.net -# ||toroadvertising.com^$third-party (easylistchina+easylist.txt: 37754) -.toroadvertising.com -# ||torerolumiere.net^$third-party (easylistchina+easylist.txt: 37753) -.torerolumiere.net -# ||torconpro.com^$third-party (easylistchina+easylist.txt: 37752) -.torconpro.com -# ||torads.xyz^$third-party (easylistchina+easylist.txt: 37751) -.torads.xyz -# ||torads.me^$third-party (easylistchina+easylist.txt: 37750) -.torads.me -# ||tophotoffers.com^$third-party (easylistchina+easylist.txt: 37749) -.tophotoffers.com -# ||topfox.co.uk^$third-party (easylistchina+easylist.txt: 37748) -.topfox.co.uk -# ||topeuro.biz^$third-party (easylistchina+easylist.txt: 37747) -.topeuro.biz -# ||topcasino10.com^$third-party (easylistchina+easylist.txt: 37746) -.topcasino10.com -# ||topauto10.com^$third-party (easylistchina+easylist.txt: 37745) -.topauto10.com -# ||top26.net^$third-party (easylistchina+easylist.txt: 37744) -.top26.net -# ||tool-site.com^$third-party (easylistchina+easylist.txt: 37743) -.tool-site.com -# ||tonefuse.com^$third-party (easylistchina+easylist.txt: 37742) -.tonefuse.com -# ||tomekas.com^$third-party (easylistchina+easylist.txt: 37741) -.tomekas.com -# ||tollfreeforwarding.com^$third-party (easylistchina+easylist.txt: 37740) -.tollfreeforwarding.com -# ||tokenads.com^$third-party (easylistchina+easylist.txt: 37739) -.tokenads.com -# ||toboads.com^$third-party (easylistchina+easylist.txt: 37738) -.toboads.com -# ||tnyzin.ru^$third-party (easylistchina+easylist.txt: 37737) -.tnyzin.ru -# ||tlvmedia.com^$third-party (easylistchina+easylist.txt: 37736) -.tlvmedia.com -# ||tldadserv.com^$third-party (easylistchina+easylist.txt: 37735) -.tldadserv.com -# ||tkqlhce.com^$third-party (easylistchina+easylist.txt: 37734) -.tkqlhce.com -# ||tissage-extension.com^$third-party (easylistchina+easylist.txt: 37733) -.tissage-extension.com -# ||tiser.com^$third-party (easylistchina+easylist.txt: 37732) -.tiser.com -# ||tisadama.com^$third-party (easylistchina+easylist.txt: 37731) -.tisadama.com -# ||tinbuadserv.com^$third-party (easylistchina+easylist.txt: 37730) -.tinbuadserv.com -# ||tightexact.net^$third-party (easylistchina+easylist.txt: 37729) -.tightexact.net -# ||tidaltv.com^$third-party (easylistchina+easylist.txt: 37728) -.tidaltv.com -# ||thoughtsondance.info^$third-party (easylistchina+easylist.txt: 37727) -.thoughtsondance.info -# ||thoughtleadr.com^$third-party (easylistchina+easylist.txt: 37726) -.thoughtleadr.com -# ||thoseads.com^$third-party (easylistchina+easylist.txt: 37725) -.thoseads.com -# ||thewheelof.com^$third-party (easylistchina+easylist.txt: 37724) -.thewheelof.com -# ||thewebgemnetwork.com^$third-party (easylistchina+easylist.txt: 37723) -.thewebgemnetwork.com -# ||thepiratereactor.net^$third-party (easylistchina+easylist.txt: 37722) -.thepiratereactor.net -# ||themidnightmatulas.com^$third-party (easylistchina+easylist.txt: 37721) -.themidnightmatulas.com -# ||theloungenet.com^$third-party (easylistchina+easylist.txt: 37720) -.theloungenet.com -# ||thelistassassin.com^$third-party (easylistchina+easylist.txt: 37719) -.thelistassassin.com -# ||theequalground.info^$third-party (easylistchina+easylist.txt: 37718) -.theequalground.info -# ||thebflix.info^$third-party (easylistchina+easylist.txt: 37717) -.thebflix.info -# ||thebannerexchange.com^$third-party (easylistchina+easylist.txt: 37716) -.thebannerexchange.com -# ||theads.me^$third-party (easylistchina+easylist.txt: 37715) -.theads.me -# ||theadgateway.com^$third-party (easylistchina+easylist.txt: 37714) -.theadgateway.com -# ||thangasoline.com^$third-party (easylistchina+easylist.txt: 37713) -.thangasoline.com -# ||tgtmedia.com^$third-party (easylistchina+easylist.txt: 37712) -.tgtmedia.com -# ||tfag.de^$third-party (easylistchina+easylist.txt: 37711) -.tfag.de -# ||textsrv.com^$third-party (easylistchina+easylist.txt: 37710) -.textsrv.com -# ||textonlyads.com^$third-party (easylistchina+easylist.txt: 37709) -.textonlyads.com -# ||text-link-ads.com^$third-party (easylistchina+easylist.txt: 37708) -.text-link-ads.com -# ||testnet.nl^$third-party (easylistchina+easylist.txt: 37707) -.testnet.nl -# ||testfilter.com^$third-party (easylistchina+easylist.txt: 37706) -.testfilter.com -# ||terraclicks.com^$third-party (easylistchina+easylist.txt: 37705) -.terraclicks.com -# ||teracreative.com^$third-party (easylistchina+easylist.txt: 37704) -.teracreative.com -# ||teracent.net^$third-party (easylistchina+easylist.txt: 37703) -.teracent.net -# ||teosredic.com^$third-party (easylistchina+easylist.txt: 37702) -.teosredic.com -# ||tennerlist.com^$third-party (easylistchina+easylist.txt: 37701) -.tennerlist.com -# ||telemetryverification.net^$third-party (easylistchina+easylist.txt: 37700) -.telemetryverification.net -# ||technoratimedia.com^$third-party (easylistchina+easylist.txt: 37699) -.technoratimedia.com -# ||techclicks.net^$third-party (easylistchina+easylist.txt: 37698) -.techclicks.net -# ||tec-tec-boom.com^$third-party (easylistchina+easylist.txt: 37697) -.tec-tec-boom.com -# ||teasernet.com^$third-party (easylistchina+easylist.txt: 37696) -.teasernet.com -# ||teambetaffiliates.com^$third-party (easylistchina+easylist.txt: 37695) -.teambetaffiliates.com -# ||teads.tv^$third-party (easylistchina+easylist.txt: 37694) -.teads.tv -# ||td563.com^$third-party (easylistchina+easylist.txt: 37693) -.td563.com -# ||td553.com^$third-party (easylistchina+easylist.txt: 37692) -.td553.com -# ||tcadops.ca^$third-party (easylistchina+easylist.txt: 37691) -.tcadops.ca -# ||tbaffiliate.com^$third-party (easylistchina+easylist.txt: 37690) -.tbaffiliate.com -# ||tattomedia.com^$third-party (easylistchina+easylist.txt: 37689) -.tattomedia.com -# ||targetspot.com^$third-party (easylistchina+easylist.txt: 37688) -.targetspot.com -# ||targetpoint.com^$third-party (easylistchina+easylist.txt: 37687) -.targetpoint.com -# ||targetnet.com^$third-party (easylistchina+easylist.txt: 37686) -.targetnet.com -# ||targetadverts.com^$third-party (easylistchina+easylist.txt: 37685) -.targetadverts.com -# ||tardangro.com^$third-party (easylistchina+easylist.txt: 37684) -.tardangro.com -# ||tapad.com^$third-party (easylistchina+easylist.txt: 37683) -.tapad.com -# ||tangozebra.com^$third-party (easylistchina+easylist.txt: 37682) -.tangozebra.com -# ||talaropa.com^$third-party (easylistchina+easylist.txt: 37681) -.talaropa.com -# ||takensparks.com^$third-party (easylistchina+easylist.txt: 37680) -.takensparks.com -# ||tailsweep.com^$third-party (easylistchina+easylist.txt: 37679) -.tailsweep.com -# ||tagshost.com^$third-party (easylistchina+easylist.txt: 37678) -.tagshost.com -# ||tagjunction.com^$third-party (easylistchina+easylist.txt: 37677) -.tagjunction.com -# ||taggify.net^$third-party (easylistchina+easylist.txt: 37676) -.taggify.net -# ||tafmaster.com^$third-party (easylistchina+easylist.txt: 37675) -.tafmaster.com -# ||tacticalrepublic.com^$third-party (easylistchina+easylist.txt: 37674) -.tacticalrepublic.com -# ||tacoda.net^$third-party (easylistchina+easylist.txt: 37673) -.tacoda.net -# ||tacastas.com^$third-party (easylistchina+easylist.txt: 37672) -.tacastas.com -# ||t3q7af0z.com^$third-party (easylistchina+easylist.txt: 37671) -.t3q7af0z.com -# ||syndicatedsearchresults.com^$third-party (easylistchina+easylist.txt: 37670) -.syndicatedsearchresults.com -# ||synapsys.us^$third-party (easylistchina+easylist.txt: 37669) -.synapsys.us -# ||symbiosting.com^$third-party (easylistchina+easylist.txt: 37668) -.symbiosting.com -# ||swoop.com^$third-party (easylistchina+easylist.txt: 37667) -.swoop.com -# ||switchadhub.com^$third-party (easylistchina+easylist.txt: 37666) -.switchadhub.com -# ||swelen.com^$third-party (easylistchina+easylist.txt: 37665) -.swelen.com -# ||swbdds.com^$third-party (easylistchina+easylist.txt: 37664) -.swbdds.com -# ||swadvertising.org^$third-party (easylistchina+easylist.txt: 37663) -.swadvertising.org -# ||svlu.net^$third-party (easylistchina+easylist.txt: 37662) -.svlu.net -# ||suthome.com^$third-party (easylistchina+easylist.txt: 37661) -.suthome.com -# ||surveywidget.biz^$third-party (easylistchina+easylist.txt: 37660) -.surveywidget.biz -# ||surveyvalue.net^$third-party (easylistchina+easylist.txt: 37659) -.surveyvalue.net -# ||surveyvalue.mobi^$third-party (easylistchina+easylist.txt: 37658) -.surveyvalue.mobi -# ||survey-poll.com^$third-party (easylistchina+easylist.txt: 37657) -.survey-poll.com -# ||surfboarddigital.com.au^$third-party (easylistchina+easylist.txt: 37656) -.surfboarddigital.com.au -# ||surf-bar-traffic.com^$third-party (easylistchina+easylist.txt: 37655) -.surf-bar-traffic.com -# ||supremeadsonline.com^$third-party (easylistchina+easylist.txt: 37654) -.supremeadsonline.com -# ||supplyframe.com^$third-party (easylistchina+easylist.txt: 37653) -.supplyframe.com -# ||supersitetime.com^$third-party (easylistchina+easylist.txt: 37652) -.supersitetime.com -# ||superloofy.com^$third-party (easylistchina+easylist.txt: 37651) -.superloofy.com -# ||super-links.net^$third-party (easylistchina+easylist.txt: 37650) -.super-links.net -# ||suparewards.com^$third-party (easylistchina+easylist.txt: 37649) -.suparewards.com -# ||sunmedia.net^$third-party (easylistchina+easylist.txt: 37648) -.sunmedia.net -# ||sumarketing.co.uk^$third-party (easylistchina+easylist.txt: 37647) -.sumarketing.co.uk -# ||sulvo.co^$third-party (easylistchina+easylist.txt: 37646) -.sulvo.co -# ||suitesmart.com^$third-party (easylistchina+easylist.txt: 37645) -.suitesmart.com -# ||suite6ixty6ix.com^$third-party (easylistchina+easylist.txt: 37644) -.suite6ixty6ix.com -# ||suggesttool.com^$third-party (easylistchina+easylist.txt: 37643) -.suggesttool.com -# ||sugarlistsuggest.info^$third-party (easylistchina+easylist.txt: 37642) -.sugarlistsuggest.info -# ||suffusefacultytsunami.info^$third-party (easylistchina+easylist.txt: 37641) -.suffusefacultytsunami.info -# ||successfultogether.co.uk^$third-party (easylistchina+easylist.txt: 37640) -.successfultogether.co.uk -# ||submitexpress.co.uk^$third-party (easylistchina+easylist.txt: 37639) -.submitexpress.co.uk -# ||sublimemedia.net^$third-party (easylistchina+easylist.txt: 37638) -.sublimemedia.net -# ||style-eyes.eu^$third-party (easylistchina+easylist.txt: 37637) -.style-eyes.eu -# ||struq.com^$third-party (easylistchina+easylist.txt: 37636) -.struq.com -# ||strikead.com^$third-party (easylistchina+easylist.txt: 37635) -.strikead.com -# ||streamdownloadonline.com^$third-party (easylistchina+easylist.txt: 37634) -.streamdownloadonline.com -# ||streamate.com^$third-party (easylistchina+easylist.txt: 37633) -.streamate.com -# ||stocker.bonnint.net^$third-party (easylistchina+easylist.txt: 37632) -.stocker.bonnint.net -# ||stickyadstv.com^$third-party (easylistchina+easylist.txt: 37631) -.stickyadstv.com -# ||stealthlockers.com^$third-party (easylistchina+easylist.txt: 37630) -.stealthlockers.com -# ||statsmobi.com^$third-party (easylistchina+easylist.txt: 37629) -.statsmobi.com -# ||statelead.com^$third-party (easylistchina+easylist.txt: 37628) -.statelead.com -# ||statecannoticed.com^$third-party (easylistchina+easylist.txt: 37627) -.statecannoticed.com -# ||statcamp.net^$third-party (easylistchina+easylist.txt: 37626) -.statcamp.net -# ||startpagea.com^$third-party (easylistchina+easylist.txt: 37625) -.startpagea.com -# ||starlayer.com^$third-party (easylistchina+easylist.txt: 37624) -.starlayer.com -# ||stargamesaffiliate.com^$third-party (easylistchina+easylist.txt: 37623) -.stargamesaffiliate.com -# ||star-advertising.com^$third-party (easylistchina+easylist.txt: 37622) -.star-advertising.com -# ||standartads.com^$third-party (easylistchina+easylist.txt: 37621) -.standartads.com -# ||stalesplit.com^$third-party (easylistchina+easylist.txt: 37620) -.stalesplit.com -# ||stackattacka.com^$third-party (easylistchina+easylist.txt: 37619) -.stackattacka.com -# ||stackadapt.com^$third-party (easylistchina+easylist.txt: 37618) -.stackadapt.com -# ||stabletrappeddevote.info^$third-party (easylistchina+easylist.txt: 37617) -.stabletrappeddevote.info -# ||sta-ads.com^$third-party (easylistchina+easylist.txt: 37616) -.sta-ads.com -# ||srx.com.sg^$third-party (easylistchina+easylist.txt: 37615) -.srx.com.sg -# ||srtk.net^$third-party (easylistchina+easylist.txt: 37614) -.srtk.net -# ||sq2trk2.com^$third-party (easylistchina+easylist.txt: 37613) -.sq2trk2.com -# ||sproose.com^$third-party (easylistchina+easylist.txt: 37612) -.sproose.com -# ||sprintrade.com^$third-party (easylistchina+easylist.txt: 37611) -.sprintrade.com -# ||spoutable.com^$third-party (easylistchina+easylist.txt: 37610) -.spoutable.com -# ||spotxchange.com^$third-party (easylistchina+easylist.txt: 37609) -.spotxchange.com -# ||spottt.com^$third-party (easylistchina+easylist.txt: 37608) -.spottt.com -# ||spotscenered.info^$third-party (easylistchina+easylist.txt: 37607) -.spotscenered.info -# ||spotrails.com^$third-party (easylistchina+easylist.txt: 37606) -.spotrails.com -# ||sportsyndicator.com^$third-party (easylistchina+easylist.txt: 37605) -.sportsyndicator.com -# ||sponsorselect.com^$third-party (easylistchina+easylist.txt: 37604) -.sponsorselect.com -# ||sponsorpay.com^$third-party (easylistchina+easylist.txt: 37603) -.sponsorpay.com -# ||sponsorpalace.com^$third-party (easylistchina+easylist.txt: 37602) -.sponsorpalace.com -# ||sponsormob.com^$third-party (easylistchina+easylist.txt: 37601) -.sponsormob.com -# ||sponsoredtweets.com^$third-party (easylistchina+easylist.txt: 37600) -.sponsoredtweets.com -# ||sponsoredby.me^$third-party (easylistchina+easylist.txt: 37599) -.sponsoredby.me -# ||spongecell.com^$third-party (easylistchina+easylist.txt: 37598) -.spongecell.com -# ||spmxs.com^$third-party (easylistchina+easylist.txt: 37597) -.spmxs.com -# ||splut.com^$third-party (easylistchina+easylist.txt: 37596) -.splut.com -# ||splinky.com^$third-party (easylistchina+easylist.txt: 37595) -.splinky.com -# ||spinbox.net^$third-party (easylistchina+easylist.txt: 37594) -.spinbox.net -# ||spinbox.freedom.com^$third-party (easylistchina+easylist.txt: 37593) -.spinbox.freedom.com -# ||spiderhood.net^$third-party (easylistchina+easylist.txt: 37592) -.spiderhood.net -# ||speedsuccess.net^$third-party (easylistchina+easylist.txt: 37591) -.speedsuccess.net -# ||speedshiftmedia.com^$third-party (easylistchina+easylist.txt: 37590) -.speedshiftmedia.com -# ||speeb.com^$third-party (easylistchina+easylist.txt: 37589) -.speeb.com -# ||spectato.com^$third-party (easylistchina+easylist.txt: 37588) -.spectato.com -# ||specificmedia.com^$third-party (easylistchina+easylist.txt: 37587) -.specificmedia.com -# ||specificclick.net^$third-party (easylistchina+easylist.txt: 37586) -.specificclick.net -# ||sparkstudios.com^$third-party (easylistchina+easylist.txt: 37585) -.sparkstudios.com -# ||sotuktraffic.com^$third-party (easylistchina+easylist.txt: 37584) -.sotuktraffic.com -# ||sophiasearch.com^$third-party (easylistchina+easylist.txt: 37583) -.sophiasearch.com -# ||sonobi.com^$third-party (easylistchina+easylist.txt: 37582) -.sonobi.com -# ||sonnerie.net^$third-party (easylistchina+easylist.txt: 37581) -.sonnerie.net -# ||solutionzip.info^$third-party (easylistchina+easylist.txt: 37580) -.solutionzip.info -# ||solocpm.com^$third-party (easylistchina+easylist.txt: 37579) -.solocpm.com -# ||solarmosa.com^$third-party (easylistchina+easylist.txt: 37578) -.solarmosa.com -# ||solapoka.com^$third-party (easylistchina+easylist.txt: 37577) -.solapoka.com -# ||sokitosa.com^$third-party (easylistchina+easylist.txt: 37576) -.sokitosa.com -# ||softwares2015.com^$third-party (easylistchina+easylist.txt: 37575) -.softwares2015.com -# ||softpopads.com^$third-party (easylistchina+easylist.txt: 37574) -.softpopads.com -# ||softonicads.com^$third-party (easylistchina+easylist.txt: 37573) -.softonicads.com -# ||soft4dle.com^$third-party (easylistchina+easylist.txt: 37572) -.soft4dle.com -# ||sodud.com^$third-party (easylistchina+easylist.txt: 37571) -.sodud.com -# ||sociomantic.com^$third-party (easylistchina+easylist.txt: 37570) -.sociomantic.com -# ||sociocast.com^$third-party (easylistchina+easylist.txt: 37569) -.sociocast.com -# ||society6.com^$third-party (easylistchina+easylist.txt: 37568) -.society6.com -# ||socialspark.com^$third-party (easylistchina+easylist.txt: 37567) -.socialspark.com -# ||socialreach.com^$third-party (easylistchina+easylist.txt: 37566) -.socialreach.com -# ||socialmedia.com^$third-party (easylistchina+easylist.txt: 37565) -.socialmedia.com -# ||sociallypublish.com^$third-party (easylistchina+easylist.txt: 37564) -.sociallypublish.com -# ||socialelective.com^$third-party (easylistchina+easylist.txt: 37563) -.socialelective.com -# ||socialbirth.com^$third-party (easylistchina+easylist.txt: 37562) -.socialbirth.com -# ||sochr.com^$third-party (easylistchina+easylist.txt: 37561) -.sochr.com -# ||so-excited.com^$third-party (easylistchina+easylist.txt: 37560) -.so-excited.com -# ||sndkorea.co.kr^$third-party (easylistchina+easylist.txt: 37559) -.sndkorea.co.kr -# ||snap.com^$third-party (easylistchina+easylist.txt: 37558) -.snap.com -# ||sn00.net^$third-party (easylistchina+easylist.txt: 37557) -.sn00.net -# ||sms-mmm.com^$third-party (easylistchina+easylist.txt: 37556) -.sms-mmm.com -# ||smpgfx.com^$third-party (easylistchina+easylist.txt: 37555) -.smpgfx.com -# ||smowtion.com^$third-party (easylistchina+easylist.txt: 37554) -.smowtion.com -# ||smilyes4u.com^$third-party (easylistchina+easylist.txt: 37553) -.smilyes4u.com -# ||smileycentral.com^$third-party (easylistchina+easylist.txt: 37552) -.smileycentral.com -# ||smartyads.com^$third-party (easylistchina+easylist.txt: 37551) -.smartyads.com -# ||smarttds.ru^$third-party (easylistchina+easylist.txt: 37550) -.smarttds.ru -# ||smarttargetting.net^$third-party (easylistchina+easylist.txt: 37549) -.smarttargetting.net -# ||smarttargetting.com^$third-party (easylistchina+easylist.txt: 37548) -.smarttargetting.com -# ||smarttargetting.co.uk^$third-party (easylistchina+easylist.txt: 37547) -.smarttargetting.co.uk -# ||smarterdownloads.net^$third-party (easylistchina+easylist.txt: 37546) -.smarterdownloads.net -# ||smartdevicemedia.com^$third-party (easylistchina+easylist.txt: 37545) -.smartdevicemedia.com -# ||smartadserver.com^$third-party (easylistchina+easylist.txt: 37544) -.smartadserver.com -# ||smartad.ee^$third-party (easylistchina+easylist.txt: 37543) -.smartad.ee -# ||smart2.allocine.fr^$third-party (easylistchina+easylist.txt: 37542) -.smart2.allocine.fr -# ||smart.allocine.fr^$third-party (easylistchina+easylist.txt: 37541) -.smart.allocine.fr -# ||smart-feed-online.com^$third-party (easylistchina+easylist.txt: 37540) -.smart-feed-online.com -# ||smaclick.com^$third-party (easylistchina+easylist.txt: 37539) -.smaclick.com -# ||slinse.com^$third-party (easylistchina+easylist.txt: 37538) -.slinse.com -# ||slimtrade.com^$third-party (easylistchina+easylist.txt: 37537) -.slimtrade.com -# ||slimspots.com^$third-party (easylistchina+easylist.txt: 37536) -.slimspots.com -# ||slikslik.com^$third-party (easylistchina+easylist.txt: 37535) -.slikslik.com -# ||slfpu.com^$third-party (easylistchina+easylist.txt: 37534) -.slfpu.com -# ||skyscrpr.com^$third-party (easylistchina+easylist.txt: 37533) -.skyscrpr.com -# ||skyactivate.com^$third-party (easylistchina+easylist.txt: 37532) -.skyactivate.com -# ||skoovyads.com^$third-party (easylistchina+easylist.txt: 37531) -.skoovyads.com -# ||skinected.com^$third-party (easylistchina+easylist.txt: 37530) -.skinected.com -# ||skimlinks.com^$third-party (easylistchina+easylist.txt: 37529) -.skimlinks.com -# ||sittiad.com^$third-party (easylistchina+easylist.txt: 37528) -.sittiad.com -# ||sitethree.com^$third-party (easylistchina+easylist.txt: 37527) -.sitethree.com -# ||sitesense-oo.com^$third-party (easylistchina+easylist.txt: 37526) -.sitesense-oo.com -# ||sitescoutadserver.com^$third-party (easylistchina+easylist.txt: 37525) -.sitescoutadserver.com -# ||sitescout.com^$third-party (easylistchina+easylist.txt: 37524) -.sitescout.com -# ||siteencore.com^$third-party (easylistchina+easylist.txt: 37523) -.siteencore.com -# ||sitebrand.com^$third-party (easylistchina+easylist.txt: 37522) -.sitebrand.com -# ||simplyhired.com^$third-party (easylistchina+easylist.txt: 37521) -.simplyhired.com -# ||simply.com^$third-party (easylistchina+easylist.txt: 37520) -.simply.com -# ||simpio.com^$third-party (easylistchina+easylist.txt: 37519) -.simpio.com -# ||silverads.net^$third-party (easylistchina+easylist.txt: 37518) -.silverads.net -# ||silstavo.com^$third-party (easylistchina+easylist.txt: 37517) -.silstavo.com -# ||silence-ads.com^$third-party (easylistchina+easylist.txt: 37516) -.silence-ads.com -# ||siamzone.com^$third-party (easylistchina+easylist.txt: 37515) -.siamzone.com -# ||showyoursite.com^$third-party (easylistchina+easylist.txt: 37514) -.showyoursite.com -# ||shopzyapp.com^$third-party (easylistchina+easylist.txt: 37513) -.shopzyapp.com -# ||shoppingads.com^$third-party (easylistchina+easylist.txt: 37512) -.shoppingads.com -# ||shopalyst.com^$third-party (easylistchina+easylist.txt: 37511) -.shopalyst.com -# ||shoogloonetwork.com^$third-party (easylistchina+easylist.txt: 37510) -.shoogloonetwork.com -# ||sharethrough.com^$third-party (easylistchina+easylist.txt: 37509) -.sharethrough.com -# ||shareresults.com^$third-party (easylistchina+easylist.txt: 37508) -.shareresults.com -# ||sharegods.com^$third-party (easylistchina+easylist.txt: 37507) -.sharegods.com -# ||shareasale.com^$third-party (easylistchina+easylist.txt: 37506) -.shareasale.com -# ||share-server.com^$third-party (easylistchina+easylist.txt: 37505) -.share-server.com -# ||shakamech.com^$third-party (easylistchina+easylist.txt: 37504) -.shakamech.com -# ||sexmoney.com^$third-party (easylistchina+easylist.txt: 37503) -.sexmoney.com -# ||sevendaystart.com^$third-party (easylistchina+easylist.txt: 37502) -.sevendaystart.com -# ||sevenads.net^$third-party (easylistchina+easylist.txt: 37501) -.sevenads.net -# ||sev4ifmxa.com^$third-party (easylistchina+easylist.txt: 37500) -.sev4ifmxa.com -# ||sethads.info^$third-party (easylistchina+easylist.txt: 37499) -.sethads.info -# ||serving-sys.com^$third-party (easylistchina+easylist.txt: 37498) -.serving-sys.com -# ||servemeads.com^$third-party (easylistchina+easylist.txt: 37497) -.servemeads.com -# ||servedbyopenx.com^$third-party (easylistchina+easylist.txt: 37496) -.servedbyopenx.com -# ||servedbyadbutler.com^$third-party (easylistchina+easylist.txt: 37495) -.servedbyadbutler.com -# ||servebom.com^$third-party (easylistchina+easylist.txt: 37494) -.servebom.com -# ||serve-sys.com^$third-party (easylistchina+easylist.txt: 37493) -.serve-sys.com -# ||servali.net^$third-party (easylistchina+easylist.txt: 37492) -.servali.net -# ||seriousfiles.com^$third-party (easylistchina+easylist.txt: 37491) -.seriousfiles.com -# ||serialbay.com^$third-party (easylistchina+easylist.txt: 37490) -.serialbay.com -# ||senzapudore.net^$third-party (easylistchina+easylist.txt: 37489) -.senzapudore.net -# ||sendptp.com^$third-party (easylistchina+easylist.txt: 37488) -.sendptp.com -# ||selsin.net^$third-party (easylistchina+easylist.txt: 37487) -.selsin.net -# ||sellhealth.com^$third-party (easylistchina+easylist.txt: 37486) -.sellhealth.com -# ||sekindo.com^$third-party (easylistchina+easylist.txt: 37485) -.sekindo.com -# ||seekads.net^$third-party (easylistchina+easylist.txt: 37484) -.seekads.net -# ||seductionprofits.com^$third-party (easylistchina+easylist.txt: 37483) -.seductionprofits.com -# ||sedoparking.com^$third-party (easylistchina+easylist.txt: 37482) -.sedoparking.com -# ||securitain.com^$third-party (easylistchina+easylist.txt: 37481) -.securitain.com -# ||securewebsiteaccess.com^$third-party (easylistchina+easylist.txt: 37480) -.securewebsiteaccess.com -# ||securesoft.info^$third-party (easylistchina+easylist.txt: 37479) -.securesoft.info -# ||secure-softwaremanager.com^$third-party (easylistchina+easylist.txt: 37478) -.secure-softwaremanager.com -# ||secondstreetmedia.com^$third-party (easylistchina+easylist.txt: 37477) -.secondstreetmedia.com -# ||seccoads.com^$third-party (easylistchina+easylist.txt: 37476) -.seccoads.com -# ||search123.uk.com^$third-party (easylistchina+easylist.txt: 37475) -.search123.uk.com -# ||scratchaffs.com^$third-party (easylistchina+easylist.txt: 37474) -.scratchaffs.com -# ||scootloor.com^$third-party (easylistchina+easylist.txt: 37473) -.scootloor.com -# ||sceno.ru^$third-party (easylistchina+easylist.txt: 37472) -.sceno.ru -# ||scanscout.com^$third-party (easylistchina+easylist.txt: 37471) -.scanscout.com -# ||scanmedios.com^$third-party (easylistchina+easylist.txt: 37470) -.scanmedios.com -# ||sbcpower.com^$third-party (easylistchina+easylist.txt: 37469) -.sbcpower.com -# ||sbaffiliates.com^$third-party (easylistchina+easylist.txt: 37468) -.sbaffiliates.com -# ||sba.about.co.kr^$third-party (easylistchina+easylist.txt: 37467) -.sba.about.co.kr -# ||saymedia.com^$third-party (easylistchina+easylist.txt: 37466) -.saymedia.com -# ||sayadcoltd.com^$third-party (easylistchina+easylist.txt: 37465) -.sayadcoltd.com -# ||saveads.org^$third-party (easylistchina+easylist.txt: 37464) -.saveads.org -# ||saveads.net^$third-party (easylistchina+easylist.txt: 37463) -.saveads.net -# ||satgreera.com^$third-party (easylistchina+easylist.txt: 37462) -.satgreera.com -# ||saple.net^$third-party (easylistchina+easylist.txt: 37461) -.saple.net -# ||salvador24.com^$third-party (easylistchina+easylist.txt: 37460) -.salvador24.com -# ||saltamendors.com^$third-party (easylistchina+easylist.txt: 37459) -.saltamendors.com -# ||salesnleads.com^$third-party (easylistchina+easylist.txt: 37458) -.salesnleads.com -# ||sakura-traffic.com^$third-party (easylistchina+easylist.txt: 37457) -.sakura-traffic.com -# ||safelistextreme.com^$third-party (easylistchina+easylist.txt: 37456) -.safelistextreme.com -# ||safecllc.com^$third-party (easylistchina+easylist.txt: 37455) -.safecllc.com -# ||safeadnetworkdata.net^$third-party (easylistchina+easylist.txt: 37454) -.safeadnetworkdata.net -# ||sa.entireweb.com^$third-party (easylistchina+easylist.txt: 37453) -.sa.entireweb.com -# ||s2d6.com^$third-party (easylistchina+easylist.txt: 37452) -.s2d6.com -# ||s.adroll.com^$third-party (easylistchina+easylist.txt: 37451) -.s.adroll.com -# ||ryminos.com^$third-party (easylistchina+easylist.txt: 37450) -.ryminos.com -# ||rwpads.com^$third-party (easylistchina+easylist.txt: 37449) -.rwpads.com -# ||runreproducerow.com^$third-party (easylistchina+easylist.txt: 37448) -.runreproducerow.com -# ||runadtag.com^$third-party (easylistchina+easylist.txt: 37447) -.runadtag.com -# ||rummyaffiliates.com^$third-party (easylistchina+easylist.txt: 37446) -.rummyaffiliates.com -# ||rubiconproject.com^$third-party (easylistchina+easylist.txt: 37445) -.rubiconproject.com -# ||rtbpops.com^$third-party (easylistchina+easylist.txt: 37444) -.rtbpops.com -# ||rtbpop.com^$third-party (easylistchina+easylist.txt: 37443) -.rtbpop.com -# ||rtbmedia.org^$third-party (easylistchina+easylist.txt: 37442) -.rtbmedia.org -# ||rtbidder.net^$third-party (easylistchina+easylist.txt: 37441) -.rtbidder.net -# ||roxyaffiliates.com^$third-party (easylistchina+easylist.txt: 37440) -.roxyaffiliates.com -# ||rovion.com^$third-party (easylistchina+easylist.txt: 37439) -.rovion.com -# ||rotorads.com^$third-party (easylistchina+easylist.txt: 37438) -.rotorads.com -# ||rotatingad.com^$third-party (easylistchina+easylist.txt: 37437) -.rotatingad.com -# ||rotaban.ru^$third-party (easylistchina+easylist.txt: 37436) -.rotaban.ru -# ||romance-net.com^$third-party (easylistchina+easylist.txt: 37435) -.romance-net.com -# ||roirocket.com^$third-party (easylistchina+easylist.txt: 37434) -.roirocket.com -# ||roicharger.com^$third-party (easylistchina+easylist.txt: 37433) -.roicharger.com -# ||rogueaffiliatesystem.com^$third-party (easylistchina+easylist.txt: 37432) -.rogueaffiliatesystem.com -# ||rocketier.net^$third-party (easylistchina+easylist.txt: 37431) -.rocketier.net -# ||robocat.me^$third-party (easylistchina+easylist.txt: 37430) -.robocat.me -# ||rnmd.net^$third-party (easylistchina+easylist.txt: 37429) -.rnmd.net -# ||rmxads.com^$third-party (easylistchina+easylist.txt: 37428) -.rmxads.com -# ||rixaka.com^$third-party (easylistchina+easylist.txt: 37427) -.rixaka.com -# ||riverbanksand.com^$third-party (easylistchina+easylist.txt: 37426) -.riverbanksand.com -# ||ripplead.com^$third-party (easylistchina+easylist.txt: 37425) -.ripplead.com -# ||ringtonepartner.com^$third-party (easylistchina+easylist.txt: 37424) -.ringtonepartner.com -# ||ringtonematcher.com^$third-party (easylistchina+easylist.txt: 37423) -.ringtonematcher.com -# ||richwebmedia.com^$third-party (easylistchina+easylist.txt: 37422) -.richwebmedia.com -# ||richmedia247.com^$third-party (easylistchina+easylist.txt: 37421) -.richmedia247.com -# ||ricead.com^$third-party (easylistchina+easylist.txt: 37420) -.ricead.com -# ||rhythmxchange.com^$third-party (easylistchina+easylist.txt: 37419) -.rhythmxchange.com -# ||rhown.com^$third-party (easylistchina+easylist.txt: 37418) -.rhown.com -# ||rfihub.net^$third-party (easylistchina+easylist.txt: 37417) -.rfihub.net -# ||rewardstyle.com^$third-party (easylistchina+easylist.txt: 37416) -.rewardstyle.com -# ||rewardsaffiliates.com^$third-party (easylistchina+easylist.txt: 37415) -.rewardsaffiliates.com -# ||rewardisement.com^$third-party (easylistchina+easylist.txt: 37414) -.rewardisement.com -# ||revsci.net^$third-party (easylistchina+easylist.txt: 37413) -.revsci.net -# ||revresponse.com^$third-party (easylistchina+easylist.txt: 37412) -.revresponse.com -# ||revresda.com^$third-party (easylistchina+easylist.txt: 37411) -.revresda.com -# ||revokinets.com^$third-party (easylistchina+easylist.txt: 37410) -.revokinets.com -# ||revmob.com^$third-party (easylistchina+easylist.txt: 37409) -.revmob.com -# ||revfusion.net^$third-party (easylistchina+easylist.txt: 37408) -.revfusion.net -# ||revenuemax.de^$third-party (easylistchina+easylist.txt: 37407) -.revenuemax.de -# ||revenuemantra.com^$third-party (easylistchina+easylist.txt: 37406) -.revenuemantra.com -# ||revenuehits.com^$third-party (easylistchina+easylist.txt: 37405) -.revenuehits.com -# ||revenuegiants.com^$third-party (easylistchina+easylist.txt: 37404) -.revenuegiants.com -# ||revenue.com^$third-party (easylistchina+easylist.txt: 37403) -.revenue.com -# ||revcontent.com^$third-party (easylistchina+easylist.txt: 37402) -.revcontent.com -# ||rev2pub.com^$third-party (easylistchina+easylist.txt: 37401) -.rev2pub.com -# ||reussissonsensemble.fr^$third-party (easylistchina+easylist.txt: 37400) -.reussissonsensemble.fr -# ||retargeter.com^$third-party (easylistchina+easylist.txt: 37399) -.retargeter.com -# ||resultsz.com^$third-party (easylistchina+easylist.txt: 37398) -.resultsz.com -# ||resultlinks.com^$third-party (easylistchina+easylist.txt: 37397) -.resultlinks.com -# ||respondhq.com^$third-party (easylistchina+easylist.txt: 37396) -.respondhq.com -# ||respond-adserver.cloudapp.net^$third-party (easylistchina+easylist.txt: 37395) -.respond-adserver.cloudapp.net -# ||respecific.net^$third-party (easylistchina+easylist.txt: 37394) -.respecific.net -# ||resideral.com^$third-party (easylistchina+easylist.txt: 37393) -.resideral.com -# ||repaynik.com^$third-party (easylistchina+easylist.txt: 37392) -.repaynik.com -# ||remiroyal.ro^$third-party (easylistchina+easylist.txt: 37391) -.remiroyal.ro -# ||remintrex.com^$third-party (easylistchina+easylist.txt: 37390) -.remintrex.com -# ||relytec.com^$third-party (easylistchina+easylist.txt: 37389) -.relytec.com -# ||relevanti.com^$third-party (easylistchina+easylist.txt: 37388) -.relevanti.com -# ||relestar.com^$third-party (easylistchina+easylist.txt: 37387) -.relestar.com -# ||relatedweboffers.com^$third-party (easylistchina+easylist.txt: 37386) -.relatedweboffers.com -# ||reklamz.com^$third-party (easylistchina+easylist.txt: 37385) -.reklamz.com -# ||regurgical.com^$third-party (easylistchina+easylist.txt: 37384) -.regurgical.com -# ||registry.cw.cm^$third-party (easylistchina+easylist.txt: 37383) -.registry.cw.cm -# ||regdfh.info^$third-party (easylistchina+easylist.txt: 37382) -.regdfh.info -# ||referback.com^$third-party (easylistchina+easylist.txt: 37381) -.referback.com -# ||refban.com^$third-party (easylistchina+easylist.txt: 37380) -.refban.com -# ||reelcentric.com^$third-party (easylistchina+easylist.txt: 37379) -.reelcentric.com -# ||reduxmediagroup.com^$third-party (easylistchina+easylist.txt: 37378) -.reduxmediagroup.com -# ||redpeepers.com^$third-party (easylistchina+easylist.txt: 37377) -.redpeepers.com -# ||redintelligence.net^$third-party (easylistchina+easylist.txt: 37376) -.redintelligence.net -# ||redcourtside.com^$third-party (easylistchina+easylist.txt: 37375) -.redcourtside.com -# ||recomendedsite.com^$third-party (easylistchina+easylist.txt: 37374) -.recomendedsite.com -# ||reate.info^$third-party (easylistchina+easylist.txt: 37373) -.reate.info -# ||realvu.net^$third-party (easylistchina+easylist.txt: 37372) -.realvu.net -# ||realsecuredredirect.com^$third-party (easylistchina+easylist.txt: 37371) -.realsecuredredirect.com -# ||realsecuredredir.com^$third-party (easylistchina+easylist.txt: 37370) -.realsecuredredir.com -# ||realmedia.com^$third-party (easylistchina+easylist.txt: 37369) -.realmedia.com -# ||realmatch.com^$third-party (easylistchina+easylist.txt: 37368) -.realmatch.com -# ||realclick.co.kr^$third-party (easylistchina+easylist.txt: 37367) -.realclick.co.kr -# ||readserver.net^$third-party (easylistchina+easylist.txt: 37366) -.readserver.net -# ||reactx.com^$third-party (easylistchina+easylist.txt: 37365) -.reactx.com -# ||reachmode.com^$third-party (easylistchina+easylist.txt: 37364) -.reachmode.com -# ||reachlocal.com^$third-party (easylistchina+easylist.txt: 37363) -.reachlocal.com -# ||reachjunction.com^$third-party (easylistchina+easylist.txt: 37362) -.reachjunction.com -# ||rddywd.com^$third-party (easylistchina+easylist.txt: 37361) -.rddywd.com -# ||rcurn.com^$third-party (easylistchina+easylist.txt: 37360) -.rcurn.com -# ||rcads.net^$third-party (easylistchina+easylist.txt: 37359) -.rcads.net -# ||rbnt.org^$third-party (easylistchina+easylist.txt: 37358) -.rbnt.org -# ||rawasy.com^$third-party (easylistchina+easylist.txt: 37357) -.rawasy.com -# ||rateaccept.net^$third-party (easylistchina+easylist.txt: 37356) -.rateaccept.net -# ||rapt.com^$third-party (easylistchina+easylist.txt: 37355) -.rapt.com -# ||rampanel.com^$third-party (easylistchina+easylist.txt: 37354) -.rampanel.com -# ||rainwealth.com^$third-party (easylistchina+easylist.txt: 37353) -.rainwealth.com -# ||rainbowtgx.com^$third-party (easylistchina+easylist.txt: 37352) -.rainbowtgx.com -# ||raiggy.com^$third-party (easylistchina+easylist.txt: 37351) -.raiggy.com -# ||ragapa.com^$third-party (easylistchina+easylist.txt: 37350) -.ragapa.com -# ||radiusmarketing.com^$third-party (easylistchina+easylist.txt: 37349) -.radiusmarketing.com -# ||radicalwealthformula.com^$third-party (easylistchina+easylist.txt: 37348) -.radicalwealthformula.com -# ||radeant.com^$third-party (easylistchina+easylist.txt: 37347) -.radeant.com -# ||rabilitan.com^$third-party (easylistchina+easylist.txt: 37346) -.rabilitan.com -# ||qwzmje9w.com^$third-party (easylistchina+easylist.txt: 37345) -.qwzmje9w.com -# ||qwobl.net^$third-party (easylistchina+easylist.txt: 37344) -.qwobl.net -# ||quinstreet.com^$third-party (easylistchina+easylist.txt: 37343) -.quinstreet.com -# ||quickcash500.com^$third-party (easylistchina+easylist.txt: 37342) -.quickcash500.com -# ||questus.com^$third-party (easylistchina+easylist.txt: 37341) -.questus.com -# ||questionmarket.com^$third-party (easylistchina+easylist.txt: 37340) -.questionmarket.com -# ||quensillo.com^$third-party (easylistchina+easylist.txt: 37339) -.quensillo.com -# ||quantumads.com^$third-party (easylistchina+easylist.txt: 37338) -.quantumads.com -# ||qualitypageviews.com^$third-party (easylistchina+easylist.txt: 37337) -.qualitypageviews.com -# ||qservz.com^$third-party (easylistchina+easylist.txt: 37336) -.qservz.com -# ||qnsr.com^$third-party (easylistchina+easylist.txt: 37335) -.qnsr.com -# ||qnrzmapdcc.com^$third-party (easylistchina+easylist.txt: 37334) -.qnrzmapdcc.com -# ||qksz.net^$third-party (easylistchina+easylist.txt: 37333) -.qksz.net -# ||qksrv.net^$third-party (easylistchina+easylist.txt: 37332) -.qksrv.net -# ||qdmil.com^$third-party (easylistchina+easylist.txt: 37331) -.qdmil.com -# ||qadservice.com^$third-party (easylistchina+easylist.txt: 37330) -.qadservice.com -# ||qadserve.com^$third-party (easylistchina+easylist.txt: 37329) -.qadserve.com -# ||q1xyxm89.com^$third-party (easylistchina+easylist.txt: 37328) -.q1xyxm89.com -# ||q1mediahydraplatform.com^$third-party (easylistchina+easylist.txt: 37327) -.q1mediahydraplatform.com -# ||q1media.com^$third-party (easylistchina+easylist.txt: 37326) -.q1media.com -# ||pzuwqncdai.com^$third-party (easylistchina+easylist.txt: 37325) -.pzuwqncdai.com -# ||pzaasocba.com^$third-party (easylistchina+easylist.txt: 37324) -.pzaasocba.com -# ||pxstda.com^$third-party (easylistchina+easylist.txt: 37323) -.pxstda.com -# ||pxl2015x1.com^$third-party (easylistchina+easylist.txt: 37322) -.pxl2015x1.com -# ||pwrads.net^$third-party (easylistchina+easylist.txt: 37321) -.pwrads.net -# ||push2check.com^$third-party (easylistchina+easylist.txt: 37320) -.push2check.com -# ||purpleflag.net^$third-party (easylistchina+easylist.txt: 37319) -.purpleflag.net -# ||pulsemgr.com^$third-party (easylistchina+easylist.txt: 37318) -.pulsemgr.com -# ||pulse360.com^$third-party (easylistchina+easylist.txt: 37317) -.pulse360.com -# ||puhtml.com^$third-party (easylistchina+easylist.txt: 37316) -.puhtml.com -# ||pubted.com^$third-party (easylistchina+easylist.txt: 37315) -.pubted.com -# ||pubserve.net^$third-party (easylistchina+easylist.txt: 37314) -.pubserve.net -# ||pubnation.com^$third-party (easylistchina+easylist.txt: 37313) -.pubnation.com -# ||pubmine.com^$third-party (easylistchina+easylist.txt: 37312) -.pubmine.com -# ||pubmatic.com^$third-party (easylistchina+easylist.txt: 37311) -.pubmatic.com -# ||publisheradnetwork.com^$third-party (easylistchina+easylist.txt: 37310) -.publisheradnetwork.com -# ||publisher.to^$third-party (easylistchina+easylist.txt: 37309) -.publisher.to -# ||publicsunrise.link^$third-party (easylistchina+easylist.txt: 37308) -.publicsunrise.link -# ||publicityclerks.com^$third-party (easylistchina+easylist.txt: 37307) -.publicityclerks.com -# ||publicidees.com^$third-party (easylistchina+easylist.txt: 37306) -.publicidees.com -# ||publicidad.net^$third-party (easylistchina+easylist.txt: 37305) -.publicidad.net -# ||pubgears.com^$third-party (easylistchina+easylist.txt: 37304) -.pubgears.com -# ||pub-fit.com^$third-party (easylistchina+easylist.txt: 37302) -.pub-fit.com -# ||ptp24.com^$third-party (easylistchina+easylist.txt: 37301) -.ptp24.com -# ||ptp22.com^$third-party (easylistchina+easylist.txt: 37300) -.ptp22.com -# ||ptp.lolco.net^$third-party (easylistchina+easylist.txt: 37299) -.ptp.lolco.net -# ||ptmzr.com^$third-party (easylistchina+easylist.txt: 37298) -.ptmzr.com -# ||psma02.com^$third-party (easylistchina+easylist.txt: 37297) -.psma02.com -# ||pseqcs05.com^$third-party (easylistchina+easylist.txt: 37296) -.pseqcs05.com -# ||psclicks.com^$third-party (easylistchina+easylist.txt: 37295) -.psclicks.com -# ||prre.ru^$third-party (easylistchina+easylist.txt: 37294) -.prre.ru -# ||proximic.com^$third-party (easylistchina+easylist.txt: 37293) -.proximic.com -# ||provider-direct.com^$third-party (easylistchina+easylist.txt: 37292) -.provider-direct.com -# ||protally.net^$third-party (easylistchina+easylist.txt: 37291) -.protally.net -# ||prosperent.com^$third-party (easylistchina+easylist.txt: 37290) -.prosperent.com -# ||proper.io^$third-party (easylistchina+easylist.txt: 37289) -.proper.io -# ||propelplus.com^$third-party (easylistchina+easylist.txt: 37288) -.propelplus.com -# ||propellerpops.com^$third-party (easylistchina+easylist.txt: 37287) -.propellerpops.com -# ||propellerads.com^$third-party (easylistchina+easylist.txt: 37286) -.propellerads.com -# ||promotiontrack.mobi^$third-party (easylistchina+easylist.txt: 37285) -.promotiontrack.mobi -# ||promotionoffer.mobi^$third-party (easylistchina+easylist.txt: 37284) -.promotionoffer.mobi -# ||promoted.com^$third-party (easylistchina+easylist.txt: 37283) -.promoted.com -# ||promobenef.com^$third-party (easylistchina+easylist.txt: 37282) -.promobenef.com -# ||promo-reklama.ru^$third-party (easylistchina+easylist.txt: 37281) -.promo-reklama.ru -# ||projectwonderful.com^$third-party (easylistchina+easylist.txt: 37280) -.projectwonderful.com -# ||programresolver.net^$third-party (easylistchina+easylist.txt: 37279) -.programresolver.net -# ||profitpeelers.com^$third-party (easylistchina+easylist.txt: 37278) -.profitpeelers.com -# ||proffigurufast.com^$third-party (easylistchina+easylist.txt: 37277) -.proffigurufast.com -# ||prod.untd.com^$third-party (easylistchina+easylist.txt: 37276) -.prod.untd.com -# ||probannerswap.com^$third-party (easylistchina+easylist.txt: 37275) -.probannerswap.com -# ||proadsdirect.com^$third-party (easylistchina+easylist.txt: 37274) -.proadsdirect.com -# ||pro-market.net^$third-party (easylistchina+easylist.txt: 37273) -.pro-market.net -# ||pro-advertising.com^$third-party (easylistchina+easylist.txt: 37272) -.pro-advertising.com -# ||pro-advert.de^$third-party (easylistchina+easylist.txt: 37271) -.pro-advert.de -# ||primaryads.com^$third-party (easylistchina+easylist.txt: 37270) -.primaryads.com -# ||prickac.com^$third-party (easylistchina+easylist.txt: 37269) -.prickac.com -# ||prf.hn^$third-party (easylistchina+easylist.txt: 37268) -.prf.hn -# ||prexista.com^$third-party (easylistchina+easylist.txt: 37267) -.prexista.com -# ||prestadsng.com^$third-party (easylistchina+easylist.txt: 37266) -.prestadsng.com -# ||predictad.com^$third-party (easylistchina+easylist.txt: 37265) -.predictad.com -# ||precisionclick.com^$third-party (easylistchina+easylist.txt: 37264) -.precisionclick.com -# ||prebid.org^$third-party (easylistchina+easylist.txt: 37263) -.prebid.org -# ||ppsearcher.ru^$third-party (easylistchina+easylist.txt: 37262) -.ppsearcher.ru -# ||ppcwebspy.com^$third-party (easylistchina+easylist.txt: 37261) -.ppcwebspy.com -# ||ppctrck.com^$third-party (easylistchina+easylist.txt: 37260) -.ppctrck.com -# ||ppclinking.com^$third-party (easylistchina+easylist.txt: 37259) -.ppclinking.com -# ||ppcindo.com^$third-party (easylistchina+easylist.txt: 37258) -.ppcindo.com -# ||powerlinks.com^$third-party (easylistchina+easylist.txt: 37257) -.powerlinks.com -# ||powerfulbusiness.net^$third-party (easylistchina+easylist.txt: 37256) -.powerfulbusiness.net -# ||poweradvertising.co.uk^$third-party (easylistchina+easylist.txt: 37255) -.poweradvertising.co.uk -# ||postrelease.com^$third-party (easylistchina+easylist.txt: 37254) -.postrelease.com -# ||posternel.com^$third-party (easylistchina+easylist.txt: 37253) -.posternel.com -# ||pornv.org^$third-party (easylistchina+easylist.txt: 37252) -.pornv.org -# ||popupvia.com^$third-party (easylistchina+easylist.txt: 37251) -.popupvia.com -# ||popuptraffic.com^$third-party (easylistchina+easylist.txt: 37250) -.popuptraffic.com -# ||popunderz.com^$third-party (easylistchina+easylist.txt: 37249) -.popunderz.com -# ||popundertotal.com^$third-party (easylistchina+easylist.txt: 37248) -.popundertotal.com -# ||popunder.ru^$third-party (easylistchina+easylist.txt: 37247) -.popunder.ru -# ||populisengage.com^$third-party (easylistchina+easylist.txt: 37246) -.populisengage.com -# ||populis.com^$third-party (easylistchina+easylist.txt: 37245) -.populis.com -# ||popularmedia.net^$third-party (easylistchina+easylist.txt: 37244) -.popularmedia.net -# ||popularitish.com^$third-party (easylistchina+easylist.txt: 37243) -.popularitish.com -# ||poptarts.me^$third-party (easylistchina+easylist.txt: 37242) -.poptarts.me -# ||popshow.info^$third-party (easylistchina+easylist.txt: 37241) -.popshow.info -# ||popsads.com^$third-party (easylistchina+easylist.txt: 37240) -.popsads.com -# ||poponclick.com^$third-party (easylistchina+easylist.txt: 37239) -.poponclick.com -# ||popmyads.com^$third-party (easylistchina+easylist.txt: 37238) -.popmyads.com -# ||popmyad.com^$third-party (easylistchina+easylist.txt: 37237) -.popmyad.com -# ||popmarker.com^$third-party (easylistchina+easylist.txt: 37236) -.popmarker.com -# ||popmajor.com^$third-party (easylistchina+easylist.txt: 37235) -.popmajor.com -# ||popearn.com^$third-party (easylistchina+easylist.txt: 37234) -.popearn.com -# ||popcpv.com^$third-party (easylistchina+easylist.txt: 37233) -.popcpv.com -# ||popcpm.com^$third-party (easylistchina+easylist.txt: 37232) -.popcpm.com -# ||popcash.net^$third-party (easylistchina+easylist.txt: 37231) -.popcash.net -# ||popadscdn.net^$third-party (easylistchina+easylist.txt: 37230) -.popadscdn.net -# ||popads.net^$third-party (easylistchina+easylist.txt: 37229) -.popads.net -# ||polydarth.com^$third-party (easylistchina+easylist.txt: 37228) -.polydarth.com -# ||polyad.net^$third-party (easylistchina+easylist.txt: 37227) -.polyad.net -# ||polmontventures.com^$third-party (easylistchina+easylist.txt: 37226) -.polmontventures.com -# ||polluxnetwork.com^$third-party (easylistchina+easylist.txt: 37225) -.polluxnetwork.com -# ||points2shop.com^$third-party (easylistchina+easylist.txt: 37224) -.points2shop.com -# ||pointroll.com^$third-party (easylistchina+easylist.txt: 37223) -.pointroll.com -# ||pointclicktrack.com^$third-party (easylistchina+easylist.txt: 37222) -.pointclicktrack.com -# ||pntrs.com^$third-party (easylistchina+easylist.txt: 37221) -.pntrs.com -# ||pntrac.com^$third-party (easylistchina+easylist.txt: 37220) -.pntrac.com -# ||pntra.com^$third-party (easylistchina+easylist.txt: 37219) -.pntra.com -# ||pnoss.com^$third-party (easylistchina+easylist.txt: 37218) -.pnoss.com -# ||pmsrvr.com^$third-party (easylistchina+easylist.txt: 37217) -.pmsrvr.com -# ||plxserve.com^$third-party (easylistchina+easylist.txt: 37216) -.plxserve.com -# ||plusfind.net^$third-party (easylistchina+easylist.txt: 37215) -.plusfind.net -# ||plugerr.com^$third-party (easylistchina+easylist.txt: 37214) -.plugerr.com -# ||plocap.com^$third-party (easylistchina+easylist.txt: 37213) -.plocap.com -# ||pllddc.com^$third-party (easylistchina+easylist.txt: 37212) -.pllddc.com -# ||plexop.net^$third-party (easylistchina+easylist.txt: 37211) -.plexop.net -# ||plenomedia.com^$third-party (easylistchina+easylist.txt: 37210) -.plenomedia.com -# ||pleeko.com^$third-party (easylistchina+easylist.txt: 37209) -.pleeko.com -# ||playukinternet.com^$third-party (easylistchina+easylist.txt: 37208) -.playukinternet.com -# ||playertraffic.com^$third-party (easylistchina+easylist.txt: 37207) -.playertraffic.com -# ||play24.us^$third-party (easylistchina+easylist.txt: 37206) -.play24.us -# ||platinumadvertisement.com^$third-party (easylistchina+easylist.txt: 37205) -.platinumadvertisement.com -# ||plannto.com^$third-party (easylistchina+easylist.txt: 37204) -.plannto.com -# ||pjtra.com^$third-party (easylistchina+easylist.txt: 37203) -.pjtra.com -# ||pjatr.com^$third-party (easylistchina+easylist.txt: 37202) -.pjatr.com -# ||pixxur.com^$third-party (easylistchina+easylist.txt: 37201) -.pixxur.com -# ||pixfuture.net^$third-party (easylistchina+easylist.txt: 37200) -.pixfuture.net -# ||pixeltrack66.com^$third-party (easylistchina+easylist.txt: 37199) -.pixeltrack66.com -# ||pixazza.com^$third-party (easylistchina+easylist.txt: 37198) -.pixazza.com -# ||pivotrunner.com^$third-party (easylistchina+easylist.txt: 37197) -.pivotrunner.com -# ||pivotalmedialabs.com^$third-party (easylistchina+easylist.txt: 37196) -.pivotalmedialabs.com -# ||piticlik.com^$third-party (easylistchina+easylist.txt: 37195) -.piticlik.com -# ||pioneeringad.com^$third-party (easylistchina+easylist.txt: 37194) -.pioneeringad.com -# ||pinballpublishernetwork.com^$third-party (easylistchina+easylist.txt: 37193) -.pinballpublishernetwork.com -# ||pictela.net^$third-party (easylistchina+easylist.txt: 37192) -.pictela.net -# ||picsti.com^$third-party (easylistchina+easylist.txt: 37191) -.picsti.com -# ||picbucks.com^$third-party (easylistchina+easylist.txt: 37190) -.picbucks.com -# ||picadmedia.com^$third-party (easylistchina+easylist.txt: 37189) -.picadmedia.com -# ||pianobuyerdeals.com^$third-party (easylistchina+easylist.txt: 37188) -.pianobuyerdeals.com -# ||phonespybubble.com^$third-party (easylistchina+easylist.txt: 37187) -.phonespybubble.com -# ||philosophere.com^$third-party (easylistchina+easylist.txt: 37186) -.philosophere.com -# ||philipstreehouse.info^$third-party (easylistchina+easylist.txt: 37185) -.philipstreehouse.info -# ||philbardre.com^$third-party (easylistchina+easylist.txt: 37184) -.philbardre.com -# ||pheedo.com^$third-party (easylistchina+easylist.txt: 37183) -.pheedo.com -# ||pharmcash.com^$third-party (easylistchina+easylist.txt: 37182) -.pharmcash.com -# ||pgssl.com^$third-party (easylistchina+easylist.txt: 37181) -.pgssl.com -# ||pgpartner.com^$third-party (easylistchina+easylist.txt: 37180) -.pgpartner.com -# ||pgmediaserve.com^$third-party (easylistchina+easylist.txt: 37179) -.pgmediaserve.com -# ||pezrphjl.com^$third-party (easylistchina+easylist.txt: 37178) -.pezrphjl.com -# ||persevered.com^$third-party (easylistchina+easylist.txt: 37177) -.persevered.com -# ||permutive.com^$third-party (easylistchina+easylist.txt: 37176) -.permutive.com -# ||performancingads.com^$third-party (easylistchina+easylist.txt: 37175) -.performancingads.com -# ||performancetrack.info^$third-party (easylistchina+easylist.txt: 37174) -.performancetrack.info -# ||performanceadvertising.mobi^$third-party (easylistchina+easylist.txt: 37173) -.performanceadvertising.mobi -# ||performance-based.com^$third-party (easylistchina+easylist.txt: 37172) -.performance-based.com -# ||perfoormapp.info^$third-party (easylistchina+easylist.txt: 37171) -.perfoormapp.info -# ||perfcreatives.com^$third-party (easylistchina+easylist.txt: 37170) -.perfcreatives.com -# ||perfb.com^$third-party (easylistchina+easylist.txt: 37169) -.perfb.com -# ||percularity.com^$third-party (easylistchina+easylist.txt: 37168) -.percularity.com -# ||pepperjamnetwork.com^$third-party (easylistchina+easylist.txt: 37167) -.pepperjamnetwork.com -# ||penuma.com^$third-party (easylistchina+easylist.txt: 37166) -.penuma.com -# ||peer39.net^$third-party (easylistchina+easylist.txt: 37165) -.peer39.net -# ||peemee.com^$third-party (easylistchina+easylist.txt: 37164) -.peemee.com -# ||peelawaymaker.com^$third-party (easylistchina+easylist.txt: 37163) -.peelawaymaker.com -# ||peakclick.com^$third-party (easylistchina+easylist.txt: 37162) -.peakclick.com -# ||pe2k2dty.com^$third-party (easylistchina+easylist.txt: 37161) -.pe2k2dty.com -# ||pc-ads.com^$third-party (easylistchina+easylist.txt: 37160) -.pc-ads.com -# ||payperpost.com^$third-party (easylistchina+easylist.txt: 37159) -.payperpost.com -# ||paydotcom.com^$third-party (easylistchina+easylist.txt: 37158) -.paydotcom.com -# ||pay-click.ru^$third-party (easylistchina+easylist.txt: 37157) -.pay-click.ru -# ||pautaspr.com^$third-party (easylistchina+easylist.txt: 37156) -.pautaspr.com -# ||passionfruitads.com^$third-party (easylistchina+easylist.txt: 37155) -.passionfruitads.com -# ||pas-rahav.com^$third-party (easylistchina+easylist.txt: 37154) -.pas-rahav.com -# ||partypoker.com^$third-party (easylistchina+easylist.txt: 37153) -.partypoker.com -# ||partypartners.com^$third-party (easylistchina+easylist.txt: 37152) -.partypartners.com -# ||partycasino.com^$third-party (easylistchina+easylist.txt: 37151) -.partycasino.com -# ||partnermax.de^$third-party (easylistchina+easylist.txt: 37150) -.partnermax.de -# ||partnerearning.com^$third-party (easylistchina+easylist.txt: 37149) -.partnerearning.com -# ||partner.video.syndication.msn.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37148) -.partner.video.syndication.msn.com -# ||partner.googleadservices.com^$third-party (easylistchina+easylist.txt: 37147) -.partner.googleadservices.com -# ||partner-ads.com^$third-party (easylistchina+easylist.txt: 37146) -.partner-ads.com -# ||paradocs.ru^$third-party (easylistchina+easylist.txt: 37145) -.paradocs.ru -# ||paperg.com^$third-party (easylistchina+easylist.txt: 37144) -.paperg.com -# ||pantherads.com^$third-party (easylistchina+easylist.txt: 37143) -.pantherads.com -# ||panachetech.com^$third-party (easylistchina+easylist.txt: 37142) -.panachetech.com -# ||pakbanners.com^$third-party (easylistchina+easylist.txt: 37141) -.pakbanners.com -# ||paidsearchexperts.com^$third-party (easylistchina+easylist.txt: 37140) -.paidsearchexperts.com -# ||paidonresults.net^$third-party (easylistchina+easylist.txt: 37139) -.paidonresults.net -# ||paid4ad.de^$third-party (easylistchina+easylist.txt: 37138) -.paid4ad.de -# ||pagesinxt.com^$third-party (easylistchina+easylist.txt: 37137) -.pagesinxt.com -# ||pagefair.net^$third-party (easylistchina+easylist.txt: 37136) -.pagefair.net -# ||padstm.com^$third-party (easylistchina+easylist.txt: 37135) -.padstm.com -# ||padsdelivery.com^$third-party (easylistchina+easylist.txt: 37134) -.padsdelivery.com -# ||paads.dk^$third-party (easylistchina+easylist.txt: 37133) -.paads.dk -# ||p2ads.com^$third-party (easylistchina+easylist.txt: 37132) -.p2ads.com -# ||p-digital-server.com^$third-party (easylistchina+easylist.txt: 37131) -.p-digital-server.com -# ||p-comme-performance.com^$third-party (easylistchina+easylist.txt: 37130) -.p-comme-performance.com -# ||p-advg.com^$third-party (easylistchina+easylist.txt: 37129) -.p-advg.com -# ||ozonemedia.com^$third-party (easylistchina+easylist.txt: 37128) -.ozonemedia.com -# ||ozertesa.com^$third-party (easylistchina+easylist.txt: 37127) -.ozertesa.com -# ||oxybe.com^$third-party (easylistchina+easylist.txt: 37126) -.oxybe.com -# ||oxtracking.com^$third-party (easylistchina+easylist.txt: 37125) -.oxtracking.com -# ||oxsng.com^$third-party (easylistchina+easylist.txt: 37124) -.oxsng.com -# ||oxado.com^$third-party (easylistchina+easylist.txt: 37123) -.oxado.com -# ||ovtopli.ru^$third-party (easylistchina+easylist.txt: 37122) -.ovtopli.ru -# ||overturs.com^$third-party (easylistchina+easylist.txt: 37121) -.overturs.com -# ||overture.com^$third-party (easylistchina+easylist.txt: 37120) -.overture.com -# ||overhaps.com^$third-party (easylistchina+easylist.txt: 37119) -.overhaps.com -# ||oveld.com^$third-party (easylistchina+easylist.txt: 37118) -.oveld.com -# ||ov8pc.tv^$third-party (easylistchina+easylist.txt: 37117) -.ov8pc.tv -# ||ourunlimitedleads.com^$third-party (easylistchina+easylist.txt: 37116) -.ourunlimitedleads.com -# ||othersonline.com^$third-party (easylistchina+easylist.txt: 37115) -.othersonline.com -# ||ospreymedialp.com^$third-party (easylistchina+easylist.txt: 37114) -.ospreymedialp.com -# ||oskale.ru^$third-party (easylistchina+easylist.txt: 37113) -.oskale.ru -# ||ordingly.com^$third-party (easylistchina+easylist.txt: 37112) -.ordingly.com -# ||orbengine.com^$third-party (easylistchina+easylist.txt: 37111) -.orbengine.com -# ||orarala.com^$third-party (easylistchina+easylist.txt: 37110) -.orarala.com -# ||orangeads.fr^$third-party (easylistchina+easylist.txt: 37109) -.orangeads.fr -# ||optinmonster.com^$third-party (easylistchina+easylist.txt: 37108) -.optinmonster.com -# ||optinemailpro.com^$third-party (easylistchina+easylist.txt: 37107) -.optinemailpro.com -# ||optimizeadvert.biz^$third-party (easylistchina+easylist.txt: 37106) -.optimizeadvert.biz -# ||optimatic.com^$third-party (easylistchina+easylist.txt: 37105) -.optimatic.com -# ||optimalroi.info^$third-party (easylistchina+easylist.txt: 37104) -.optimalroi.info -# ||optiad.net^$third-party (easylistchina+easylist.txt: 37103) -.optiad.net -# ||opteama.com^$third-party (easylistchina+easylist.txt: 37102) -.opteama.com -# ||opt-n.net^$third-party (easylistchina+easylist.txt: 37101) -.opt-n.net -# ||opt-intelligence.com^$third-party (easylistchina+easylist.txt: 37100) -.opt-intelligence.com -# ||operatical.com^$third-party (easylistchina+easylist.txt: 37099) -.operatical.com -# ||openxmarket.asia^$third-party (easylistchina+easylist.txt: 37098) -.openxmarket.asia -# ||openxenterprise.com^$third-party (easylistchina+easylist.txt: 37097) -.openxenterprise.com -# ||openxadexchange.com^$third-party (easylistchina+easylist.txt: 37096) -.openxadexchange.com -# ||opensourceadvertisementnetwork.info^$third-party (easylistchina+easylist.txt: 37095) -.opensourceadvertisementnetwork.info -# ||openetray.com^$third-party (easylistchina+easylist.txt: 37094) -.openetray.com -# ||openbook.net^$third-party (easylistchina+easylist.txt: 37093) -.openbook.net -# ||opap.co.kr^$third-party (easylistchina+easylist.txt: 37092) -.opap.co.kr -# ||oos4l.com^$third-party (easylistchina+easylist.txt: 37091) -.oos4l.com -# ||oofte.com^$third-party (easylistchina+easylist.txt: 37090) -.oofte.com -# ||ooecyaauiz.com^$third-party (easylistchina+easylist.txt: 37089) -.ooecyaauiz.com -# ||oodode.com^$third-party (easylistchina+easylist.txt: 37088) -.oodode.com -# ||onvertise.com^$third-party (easylistchina+easylist.txt: 37087) -.onvertise.com -# ||onsitemarketplace.net^$third-party (easylistchina+easylist.txt: 37086) -.onsitemarketplace.net -# ||onscroll.com^$third-party (easylistchina+easylist.txt: 37085) -.onscroll.com -# ||onrampadvertising.com^$third-party (easylistchina+easylist.txt: 37084) -.onrampadvertising.com -# ||onlyalad.net^$third-party (easylistchina+easylist.txt: 37083) -.onlyalad.net -# ||onlinedl.info^$third-party (easylistchina+easylist.txt: 37082) -.onlinedl.info -# ||onlineadtracker.co.uk^$third-party (easylistchina+easylist.txt: 37081) -.onlineadtracker.co.uk -# ||online-media24.de^$third-party (easylistchina+easylist.txt: 37080) -.online-media24.de -# ||online-adnetwork.com^$third-party (easylistchina+easylist.txt: 37079) -.online-adnetwork.com -# ||onespot.com^$third-party (easylistchina+easylist.txt: 37078) -.onespot.com -# ||onenetworkdirect.net^$third-party (easylistchina+easylist.txt: 37077) -.onenetworkdirect.net -# ||onenetworkdirect.com^$third-party (easylistchina+easylist.txt: 37076) -.onenetworkdirect.com -# ||onedmp.com^$third-party (easylistchina+easylist.txt: 37075) -.onedmp.com -# ||onclickads.net^$third-party (easylistchina+easylist.txt: 37074) -.onclickads.net -# ||onads.com^$third-party (easylistchina+easylist.txt: 37073) -.onads.com -# ||onad.eu^$third-party (easylistchina+easylist.txt: 37072) -.onad.eu -# ||omni-ads.com^$third-party (easylistchina+easylist.txt: 37071) -.omni-ads.com -# ||omg2.com^$third-party (easylistchina+easylist.txt: 37070) -.omg2.com -# ||omclick.com^$third-party (easylistchina+easylist.txt: 37069) -.omclick.com -# ||oldtiger.net^$third-party (easylistchina+easylist.txt: 37068) -.oldtiger.net -# ||oileddaintiessunset.info^$third-party (easylistchina+easylist.txt: 37067) -.oileddaintiessunset.info -# ||ohmcasting.com^$third-party (easylistchina+easylist.txt: 37066) -.ohmcasting.com -# ||oggifinogi.com^$third-party (easylistchina+easylist.txt: 37065) -.oggifinogi.com -# ||ofino.ru^$third-party (easylistchina+easylist.txt: 37064) -.ofino.ru -# ||offersquared.com^$third-party (easylistchina+easylist.txt: 37063) -.offersquared.com -# ||offerserve.com^$third-party (easylistchina+easylist.txt: 37062) -.offerserve.com -# ||offerpalads.com^$third-party (easylistchina+easylist.txt: 37061) -.offerpalads.com -# ||offerforge.com^$third-party (easylistchina+easylist.txt: 37060) -.offerforge.com -# ||offeradvertising.biz^$third-party (easylistchina+easylist.txt: 37059) -.offeradvertising.biz -# ||oehposan.com^$third-party (easylistchina+easylist.txt: 37058) -.oehposan.com -# ||oclus.com^$third-party (easylistchina+easylist.txt: 37057) -.oclus.com -# ||oclsasrv.com^$third-party (easylistchina+easylist.txt: 37056) -.oclsasrv.com -# ||oclasrv.com^$third-party (easylistchina+easylist.txt: 37055) -.oclasrv.com -# ||oceanwebcraft.com^$third-party (easylistchina+easylist.txt: 37054) -.oceanwebcraft.com -# ||objectservers.com^$third-party (easylistchina+easylist.txt: 37053) -.objectservers.com -# ||objects.tremormedia.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37052) -.objects.tremormedia.com -# ||obibanners.com^$third-party (easylistchina+easylist.txt: 37051) -.obibanners.com -# ||obeus.com^$third-party (easylistchina+easylist.txt: 37050) -.obeus.com -# ||obesw.com^$third-party (easylistchina+easylist.txt: 37049) -.obesw.com -# ||oainternetservices.com^$third-party (easylistchina+easylist.txt: 37048) -.oainternetservices.com -# ||oads.co^$third-party (easylistchina+easylist.txt: 37047) -.oads.co -# ||nzphoenix.com^$third-party (easylistchina+easylist.txt: 37046) -.nzphoenix.com -# ||nzads.net.nz^$third-party (easylistchina+easylist.txt: 37045) -.nzads.net.nz -# ||nyadmcncserve-05y06a.com^$third-party (easylistchina+easylist.txt: 37044) -.nyadmcncserve-05y06a.com -# ||nxtck.com^$third-party (easylistchina+easylist.txt: 37043) -.nxtck.com -# ||nwfhalifax.com^$third-party (easylistchina+easylist.txt: 37042) -.nwfhalifax.com -# ||nvero.net^$third-party (easylistchina+easylist.txt: 37041) -.nvero.net -# ||nvadn.com^$third-party (easylistchina+easylist.txt: 37040) -.nvadn.com -# ||nuseek.com^$third-party (easylistchina+easylist.txt: 37039) -.nuseek.com -# ||numbers.md^$third-party (easylistchina+easylist.txt: 37038) -.numbers.md -# ||numberium.com^$third-party (easylistchina+easylist.txt: 37037) -.numberium.com -# ||ntv.io^$third-party (easylistchina+easylist.txt: 37036) -.ntv.io -# ||ntent.com^$third-party (easylistchina+easylist.txt: 37035) -.ntent.com -# ||nspmotion.com^$third-party (easylistchina+easylist.txt: 37033) -.nspmotion.com -# ||nsmartad.com^$third-party (easylistchina+easylist.txt: 37032) -.nsmartad.com -# ||nsdsvc.com^$third-party (easylistchina+easylist.txt: 37031) -.nsdsvc.com -# ||nscontext.com^$third-party (easylistchina+easylist.txt: 37030) -.nscontext.com -# ||nrnma.com^$third-party (easylistchina+easylist.txt: 37029) -.nrnma.com -# ||nquchhfyex.com^$third-party (easylistchina+easylist.txt: 37028) -.nquchhfyex.com -# ||npvos.com^$third-party (easylistchina+easylist.txt: 37027) -.npvos.com -# ||nplexmedia.com^$third-party (easylistchina+easylist.txt: 37026) -.nplexmedia.com -# ||nowspots.com^$third-party (easylistchina+easylist.txt: 37025) -.nowspots.com -# ||nowlooking.net^$third-party (easylistchina+easylist.txt: 37024) -.nowlooking.net -# ||novarevenue.com^$third-party (easylistchina+easylist.txt: 37023) -.novarevenue.com -# ||northmay.com^$third-party (easylistchina+easylist.txt: 37022) -.northmay.com -# ||normkela.com^$third-party (easylistchina+easylist.txt: 37021) -.normkela.com -# ||noretia.com^$third-party (easylistchina+easylist.txt: 37020) -.noretia.com -# ||nonstoppartner.de^$third-party (easylistchina+easylist.txt: 37019) -.nonstoppartner.de -# ||nobsetfinvestor.com^$third-party (easylistchina+easylist.txt: 37018) -.nobsetfinvestor.com -# ||nobleppc.com^$third-party (easylistchina+easylist.txt: 37017) -.nobleppc.com -# ||nmwrdr.net^$third-party (easylistchina+easylist.txt: 37016) -.nmwrdr.net -# ||nmcdn.us^$third-party (easylistchina+easylist.txt: 37015) -.nmcdn.us -# ||nkredir.com^$third-party (easylistchina+easylist.txt: 37014) -.nkredir.com -# ||nighter.club^$third-party (easylistchina+easylist.txt: 37013) -.nighter.club -# ||nicheads.com^$third-party (easylistchina+easylist.txt: 37012) -.nicheads.com -# ||nicheadgenerator.com^$third-party (easylistchina+easylist.txt: 37011) -.nicheadgenerator.com -# ||ngecity.com^$third-party (easylistchina+easylist.txt: 37010) -.ngecity.com -# ||nextmobilecash.com^$third-party (easylistchina+easylist.txt: 37009) -.nextmobilecash.com -# ||nexage.com^$third-party (easylistchina+easylist.txt: 37008) -.nexage.com -# ||nexac.com^$third-party (easylistchina+easylist.txt: 37007) -.nexac.com -# ||newtention.net^$third-party (easylistchina+easylist.txt: 37006) -.newtention.net -# ||newstogram.com^$third-party (easylistchina+easylist.txt: 37005) -.newstogram.com -# ||newsnet.in.ua^$third-party (easylistchina+easylist.txt: 37004) -.newsnet.in.ua -# ||newsadstream.com^$third-party (easylistchina+easylist.txt: 37003) -.newsadstream.com -# ||newideasdaily.com^$third-party (easylistchina+easylist.txt: 37002) -.newideasdaily.com -# ||newgentraffic.com^$third-party (easylistchina+easylist.txt: 37001) -.newgentraffic.com -# ||newdosug.eu^$third-party (easylistchina+easylist.txt: 37000) -.newdosug.eu -# ||neudesicmediagroup.com^$third-party (easylistchina+easylist.txt: 36999) -.neudesicmediagroup.com -# ||networldmedia.net^$third-party (easylistchina+easylist.txt: 36998) -.networldmedia.net -# ||networld.hk^$third-party (easylistchina+easylist.txt: 36997) -.networld.hk -# ||networkxi.com^$third-party (easylistchina+easylist.txt: 36996) -.networkxi.com -# ||networkplay.in^$third-party (easylistchina+easylist.txt: 36995) -.networkplay.in -# ||netsolads.com^$third-party (easylistchina+easylist.txt: 36994) -.netsolads.com -# ||netshelter.net^$third-party (easylistchina+easylist.txt: 36993) -.netshelter.net -# ||netseer.com^$third-party (easylistchina+easylist.txt: 36992) -.netseer.com -# ||netpondads.com^$third-party (easylistchina+easylist.txt: 36991) -.netpondads.com -# ||netloader.cc^$third-party (easylistchina+easylist.txt: 36990) -.netloader.cc -# ||netliker.com^$third-party (easylistchina+easylist.txt: 36989) -.netliker.com -# ||netflixalternative.net^$third-party (easylistchina+easylist.txt: 36988) -.netflixalternative.net -# ||netavenir.com^$third-party (easylistchina+easylist.txt: 36987) -.netavenir.com -# ||netaffiliation.com^$~script,third-party (easylistchina+easylist.txt: 36986) -.netaffiliation.com -# ||net3media.com^$third-party (easylistchina+easylist.txt: 36985) -.net3media.com -# ||net-ad-vantage.com^$third-party (easylistchina+easylist.txt: 36984) -.net-ad-vantage.com -# ||neoffic.com^$third-party (easylistchina+easylist.txt: 36983) -.neoffic.com -# ||neodatagroup.com^$third-party (easylistchina+easylist.txt: 36982) -.neodatagroup.com -# ||neobux.com^$third-party (easylistchina+easylist.txt: 36981) -.neobux.com -# ||negolist.com^$third-party (easylistchina+easylist.txt: 36980) -.negolist.com -# ||neblotech.com^$third-party (easylistchina+easylist.txt: 36979) -.neblotech.com -# ||ncrjsserver.com^$third-party (easylistchina+easylist.txt: 36978) -.ncrjsserver.com -# ||nbstatic.com^$third-party (easylistchina+easylist.txt: 36977) -.nbstatic.com -# ||nbjmp.com^$third-party (easylistchina+easylist.txt: 36976) -.nbjmp.com -# ||nativeads.com^$third-party (easylistchina+easylist.txt: 36975) -.nativeads.com -# ||nativead.co^$third-party (easylistchina+easylist.txt: 36974) -.nativead.co -# ||native-adserver.com^$third-party (easylistchina+easylist.txt: 36973) -.native-adserver.com -# ||nanigans.com^$third-party (easylistchina+easylist.txt: 36972) -.nanigans.com -# ||nagrande.com^$third-party (easylistchina+easylist.txt: 36971) -.nagrande.com -# ||nabbr.com^$third-party (easylistchina+easylist.txt: 36970) -.nabbr.com -# ||n4403ad.doubleclick.net^$third-party (easylistchina+easylist.txt: 36969) -.n4403ad.doubleclick.net -# ||n388hkxg.com^$third-party (easylistchina+easylist.txt: 36968) -.n388hkxg.com -# ||mz28ismn.com^$third-party (easylistchina+easylist.txt: 36967) -.mz28ismn.com -# ||mywidget.mobi^$third-party (easylistchina+easylist.txt: 36966) -.mywidget.mobi -# ||myvads.com^$third-party (easylistchina+easylist.txt: 36965) -.myvads.com -# ||myuniques.ru^$third-party (easylistchina+easylist.txt: 36964) -.myuniques.ru -# ||mythings.com^$third-party (easylistchina+easylist.txt: 36963) -.mythings.com -# ||mysafeurl.com^$third-party (easylistchina+easylist.txt: 36962) -.mysafeurl.com -# ||myplayerhd.net^$third-party (easylistchina+easylist.txt: 36961) -.myplayerhd.net -# ||mynewcarquote.us^$third-party (easylistchina+easylist.txt: 36960) -.mynewcarquote.us -# ||mylinkbox.com^$third-party (easylistchina+easylist.txt: 36959) -.mylinkbox.com -# ||myinfotopia.com^$third-party (easylistchina+easylist.txt: 36958) -.myinfotopia.com -# ||myemailbox.info^$third-party (easylistchina+easylist.txt: 36957) -.myemailbox.info -# ||mydreamads.com^$third-party (easylistchina+easylist.txt: 36956) -.mydreamads.com -# ||mycooliframe.net^$third-party (easylistchina+easylist.txt: 36955) -.mycooliframe.net -# ||myclickbankads.com^$third-party (easylistchina+easylist.txt: 36954) -.myclickbankads.com -# ||myaffiliates.com^$third-party (easylistchina+easylist.txt: 36953) -.myaffiliates.com -# ||my-layer.net^$third-party (easylistchina+easylist.txt: 36952) -.my-layer.net -# ||mxtads.com^$third-party (easylistchina+easylist.txt: 36951) -.mxtads.com -# ||mutary.com^$third-party (easylistchina+easylist.txt: 36950) -.mutary.com -# ||musicnote.info^$third-party (easylistchina+easylist.txt: 36949) -.musicnote.info -# ||music-desktop.com^$third-party (easylistchina+easylist.txt: 36948) -.music-desktop.com -# ||munically.com^$third-party (easylistchina+easylist.txt: 36947) -.munically.com -# ||multiview.com^$third-party (easylistchina+easylist.txt: 36946) -.multiview.com -# ||multiadserv.com^$third-party (easylistchina+easylist.txt: 36945) -.multiadserv.com -# ||mujap.com^$third-party (easylistchina+easylist.txt: 36944) -.mujap.com -# ||mtrcss.com^$third-party (easylistchina+easylist.txt: 36943) -.mtrcss.com -# ||mtagmonetizationb.com^$third-party (easylistchina+easylist.txt: 36942) -.mtagmonetizationb.com -# ||mtagmonetizationa.com^$third-party (easylistchina+easylist.txt: 36941) -.mtagmonetizationa.com -# ||msypr.com^$third-party (easylistchina+easylist.txt: 36940) -.msypr.com -# ||msads.net^$third-party (easylistchina+easylist.txt: 36939) -.msads.net -# ||mprezchc.com^$third-party (easylistchina+easylist.txt: 36938) -.mprezchc.com -# ||mpression.net^$third-party (easylistchina+easylist.txt: 36937) -.mpression.net -# ||mpnrs.com^$third-party (easylistchina+easylist.txt: 36936) -.mpnrs.com -# ||movad.net^$third-party (easylistchina+easylist.txt: 36935) -.movad.net -# ||mottnow.com^$third-party (easylistchina+easylist.txt: 36934) -.mottnow.com -# ||moselats.com^$third-party (easylistchina+easylist.txt: 36933) -.moselats.com -# ||morgdm.ru^$third-party (easylistchina+easylist.txt: 36932) -.morgdm.ru -# ||moreplayerz.com^$third-party (easylistchina+easylist.txt: 36931) -.moreplayerz.com -# ||moregamers.com^$third-party (easylistchina+easylist.txt: 36930) -.moregamers.com -# ||mooxar.com^$third-party (easylistchina+easylist.txt: 36929) -.mooxar.com -# ||mootermedia.com^$third-party (easylistchina+easylist.txt: 36928) -.mootermedia.com -# ||mookie1.com^$third-party (easylistchina+easylist.txt: 36927) -.mookie1.com -# ||monsoonads.com^$third-party (easylistchina+easylist.txt: 36926) -.monsoonads.com -# ||monkeybroker.net^$third-party (easylistchina+easylist.txt: 36925) -.monkeybroker.net -# ||moneywhisper.com^$third-party (easylistchina+easylist.txt: 36924) -.moneywhisper.com -# ||moneycosmos.com^$third-party (easylistchina+easylist.txt: 36923) -.moneycosmos.com -# ||money4ads.com^$third-party (easylistchina+easylist.txt: 36922) -.money4ads.com -# ||money-cpm.fr^$third-party (easylistchina+easylist.txt: 36921) -.money-cpm.fr -# ||mokonocdn.com^$third-party (easylistchina+easylist.txt: 36920) -.mokonocdn.com -# ||mojoaffiliates.com^$third-party (easylistchina+easylist.txt: 36919) -.mojoaffiliates.com -# ||mogointeractive.com^$third-party (easylistchina+easylist.txt: 36918) -.mogointeractive.com -# ||moffsets.com^$third-party (easylistchina+easylist.txt: 36917) -.moffsets.com -# ||modelegating.com^$third-party (easylistchina+easylist.txt: 36916) -.modelegating.com -# ||mobytrks.com^$third-party (easylistchina+easylist.txt: 36915) -.mobytrks.com -# ||mobtrks.com^$third-party (easylistchina+easylist.txt: 36914) -.mobtrks.com -# ||mobstrks.com^$third-party (easylistchina+easylist.txt: 36913) -.mobstrks.com -# ||moborobot.com^$third-party (easylistchina+easylist.txt: 36912) -.moborobot.com -# ||mobiyield.com^$third-party (easylistchina+easylist.txt: 36911) -.mobiyield.com -# ||mobitracker.info^$third-party (easylistchina+easylist.txt: 36910) -.mobitracker.info -# ||mobisla.com^$third-party (easylistchina+easylist.txt: 36909) -.mobisla.com -# ||mobiright.com^$third-party (easylistchina+easylist.txt: 36908) -.mobiright.com -# ||mobile-10.com^$third-party (easylistchina+easylist.txt: 36907) -.mobile-10.com -# ||mobikano.com^$third-party (easylistchina+easylist.txt: 36906) -.mobikano.com -# ||mobifobi.com^$third-party (easylistchina+easylist.txt: 36905) -.mobifobi.com -# ||mobicont.com^$third-party (easylistchina+easylist.txt: 36904) -.mobicont.com -# ||mobfox.com^$third-party (easylistchina+easylist.txt: 36903) -.mobfox.com -# ||mobday.com^$third-party (easylistchina+easylist.txt: 36902) -.mobday.com -# ||mobatory.com^$third-party (easylistchina+easylist.txt: 36901) -.mobatory.com -# ||mobatori.com^$third-party (easylistchina+easylist.txt: 36900) -.mobatori.com -# ||moatads.com^$third-party (easylistchina+easylist.txt: 36899) -.moatads.com -# ||mmotraffic.com^$third-party (easylistchina+easylist.txt: 36898) -.mmotraffic.com -# ||mmoptional.com^$third-party (easylistchina+easylist.txt: 36897) -.mmoptional.com -# ||mmondi.com^$third-party (easylistchina+easylist.txt: 36896) -.mmondi.com -# ||mmngte.net^$third-party (easylistchina+easylist.txt: 36895) -.mmngte.net -# ||mmismm.com^$third-party (easylistchina+easylist.txt: 36894) -.mmismm.com -# ||mmgads.com^$third-party (easylistchina+easylist.txt: 36893) -.mmgads.com -# ||mmadsgadget.com^$third-party (easylistchina+easylist.txt: 36892) -.mmadsgadget.com -# ||mlnadvertising.com^$third-party (easylistchina+easylist.txt: 36891) -.mlnadvertising.com -# ||mktseek.com^$third-party (easylistchina+easylist.txt: 36890) -.mktseek.com -# ||mixpo.com^$third-party (easylistchina+easylist.txt: 36889) -.mixpo.com -# ||mixmarket.biz^$third-party (easylistchina+easylist.txt: 36888) -.mixmarket.biz -# ||miva.com^$third-party (easylistchina+easylist.txt: 36887) -.miva.com -# ||mistands.com^$third-party (easylistchina+easylist.txt: 36886) -.mistands.com -# ||mirrorpersonalinjury.co.uk^$third-party (easylistchina+easylist.txt: 36885) -.mirrorpersonalinjury.co.uk -# ||mirago.com^$third-party (easylistchina+easylist.txt: 36884) -.mirago.com -# ||minimumpay.info^$third-party (easylistchina+easylist.txt: 36883) -.minimumpay.info -# ||mindlytix.com^$third-party (easylistchina+easylist.txt: 36882) -.mindlytix.com -# ||milabra.com^$third-party (easylistchina+easylist.txt: 36881) -.milabra.com -# ||microsoftaffiliates.net^$third-party (easylistchina+easylist.txt: 36880) -.microsoftaffiliates.net -# ||microadinc.com^$third-party (easylistchina+easylist.txt: 36879) -.microadinc.com -# ||microad.jp^$third-party (easylistchina+easylist.txt: 36878) -.microad.jp -# ||mibebu.com^$third-party (easylistchina+easylist.txt: 36877) -.mibebu.com -# ||mgplatform.com^$third-party (easylistchina+easylist.txt: 36876) -.mgplatform.com -# ||mgcashgate.com^$third-party (easylistchina+easylist.txt: 36874) -.mgcashgate.com -# ||mgcash.com^$third-party (easylistchina+easylist.txt: 36873) -.mgcash.com -# ||mezimedia.com^$third-party (easylistchina+easylist.txt: 36872) -.mezimedia.com -# ||meya41w7.com^$third-party (easylistchina+easylist.txt: 36871) -.meya41w7.com -# ||meviodisplayads.com^$third-party (easylistchina+easylist.txt: 36870) -.meviodisplayads.com -# ||metrics.io^$third-party (easylistchina+easylist.txt: 36869) -.metrics.io -# ||metavertizer.com^$third-party (easylistchina+easylist.txt: 36868) -.metavertizer.com -# ||metavertising.com^$third-party (easylistchina+easylist.txt: 36867) -.metavertising.com -# ||metaffiliation.com^*^taff= (easylistchina+easylist.txt: 36866) -.metaffiliation.com/.*[^\w%.-]taff= -# ||metaffiliation.com^*^maff= (easylistchina+easylist.txt: 36865) -.metaffiliation.com/.*[^\w%.-]maff= -# ||metaffiliation.com^$~image,~subdocument,third-party (easylistchina+easylist.txt: 36864) -.metaffiliation.com -# ||messagespaceads.com^$third-party (easylistchina+easylist.txt: 36863) -.messagespaceads.com -# ||mercuras.com^$third-party (easylistchina+easylist.txt: 36862) -.mercuras.com -# ||merchenta.com^$third-party (easylistchina+easylist.txt: 36861) -.merchenta.com -# ||mentalks.ru^$third-party (easylistchina+easylist.txt: 36860) -.mentalks.ru -# ||mentad.com^$third-party (easylistchina+easylist.txt: 36859) -.mentad.com -# ||mengheng.net^$third-party (easylistchina+easylist.txt: 36858) -.mengheng.net -# ||mellowads.com^$third-party (easylistchina+easylist.txt: 36857) -.mellowads.com -# ||meinlist.com^$third-party (easylistchina+easylist.txt: 36856) -.meinlist.com -# ||megbase.com^$third-party (easylistchina+easylist.txt: 36855) -.megbase.com -# ||megatronmailer.com^$third-party (easylistchina+easylist.txt: 36854) -.megatronmailer.com -# ||megapopads.com^$third-party (easylistchina+easylist.txt: 36853) -.megapopads.com -# ||megacpm.com^$third-party (easylistchina+easylist.txt: 36852) -.megacpm.com -# ||megaad.nz^$third-party (easylistchina+easylist.txt: 36851) -.megaad.nz -# ||meetic-partners.com^$third-party (easylistchina+easylist.txt: 36850) -.meetic-partners.com -# ||meendocash.com^$third-party (easylistchina+easylist.txt: 36849) -.meendocash.com -# ||medyanetads.com^$third-party (easylistchina+easylist.txt: 36848) -.medyanetads.com -# ||medyanet.net^$third-party (easylistchina+easylist.txt: 36847) -.medyanet.net -# ||medrx.sensis.com.au^$third-party (easylistchina+easylist.txt: 36846) -.medrx.sensis.com.au -# ||medleyads.com^$third-party (easylistchina+easylist.txt: 36845) -.medleyads.com -# ||mediatraks.com^$third-party (easylistchina+easylist.txt: 36844) -.mediatraks.com -# ||mediatraffic.com^$third-party (easylistchina+easylist.txt: 36843) -.mediatraffic.com -# ||mediative.ca^$third-party (easylistchina+easylist.txt: 36842) -.mediative.ca -# ||mediatarget.com^$third-party (easylistchina+easylist.txt: 36841) -.mediatarget.com -# ||mediapeo.com^$third-party (easylistchina+easylist.txt: 36840) -.mediapeo.com -# ||mediaonpro.com^$third-party (easylistchina+easylist.txt: 36839) -.mediaonpro.com -# ||mediaonenetwork.net^$third-party (easylistchina+easylist.txt: 36838) -.mediaonenetwork.net -# ||medialation.net^$third-party (easylistchina+easylist.txt: 36837) -.medialation.net -# ||medialand.ru^$third-party (easylistchina+easylist.txt: 36836) -.medialand.ru -# ||mediakeywords.com^$third-party (easylistchina+easylist.txt: 36835) -.mediakeywords.com -# ||mediagridwork.com^$third-party (easylistchina+easylist.txt: 36834) -.mediagridwork.com -# ||mediag4.com^$third-party (easylistchina+easylist.txt: 36833) -.mediag4.com -# ||mediaforge.com^$third-party (easylistchina+easylist.txt: 36832) -.mediaforge.com -# ||mediaflire.com^$third-party (easylistchina+easylist.txt: 36831) -.mediaflire.com -# ||mediafilesdownload.com^$third-party (easylistchina+easylist.txt: 36830) -.mediafilesdownload.com -# ||mediaffiliation.com^$third-party (easylistchina+easylist.txt: 36829) -.mediaffiliation.com -# ||mediacpm.com^$third-party (easylistchina+easylist.txt: 36828) -.mediacpm.com -# ||mediaclick.com^$third-party (easylistchina+easylist.txt: 36827) -.mediaclick.com -# ||mediaadserver.org^$third-party (easylistchina+easylist.txt: 36826) -.mediaadserver.org -# ||media970.com^$third-party (easylistchina+easylist.txt: 36825) -.media970.com -# ||media6degrees.com^$third-party (easylistchina+easylist.txt: 36824) -.media6degrees.com -# ||media303.com^$third-party (easylistchina+easylist.txt: 36823) -.media303.com -# ||media.net^$third-party (easylistchina+easylist.txt: 36822) -.media.net -# ||media-servers.net^$third-party (easylistchina+easylist.txt: 36821) -.media-servers.net -# ||media-networks.ru^$third-party (easylistchina+easylist.txt: 36820) -.media-networks.ru -# ||media-ks.net^$third-party (easylistchina+easylist.txt: 36819) -.media-ks.net -# ||media-general.com^$third-party (easylistchina+easylist.txt: 36818) -.media-general.com -# ||meadigital.com^$third-party (easylistchina+easylist.txt: 36817) -.meadigital.com -# ||mdn2015x4.com^$third-party (easylistchina+easylist.txt: 36816) -.mdn2015x4.com -# ||mdn2015x2.com^$third-party (easylistchina+easylist.txt: 36815) -.mdn2015x2.com -# ||mdn2015x1.com^$third-party (easylistchina+easylist.txt: 36814) -.mdn2015x1.com -# ||mdialog.com^$third-party (easylistchina+easylist.txt: 36813) -.mdialog.com -# ||mdadx.com^$third-party (easylistchina+easylist.txt: 36812) -.mdadx.com -# ||mdadvertising.net^$third-party (easylistchina+easylist.txt: 36811) -.mdadvertising.net -# ||mcdstorage.com^$third-party (easylistchina+easylist.txt: 36810) -.mcdstorage.com -# ||mcdomainalot.com^$third-party (easylistchina+easylist.txt: 36809) -.mcdomainalot.com -# ||mbn.com.ua^$third-party (easylistchina+easylist.txt: 36808) -.mbn.com.ua -# ||mb8e17f12.website^$third-party (easylistchina+easylist.txt: 36807) -.mb8e17f12.website -# ||mb57.com^$third-party (easylistchina+easylist.txt: 36806) -.mb57.com -# ||mb38.com^$third-party (easylistchina+easylist.txt: 36805) -.mb38.com -# ||mb104.com^$third-party (easylistchina+easylist.txt: 36804) -.mb104.com -# ||mb102.com^$third-party (easylistchina+easylist.txt: 36803) -.mb102.com -# ||mb01.com^$third-party (easylistchina+easylist.txt: 36802) -.mb01.com -# ||maxserving.com^$third-party (easylistchina+easylist.txt: 36801) -.maxserving.com -# ||maudau.com^$third-party (easylistchina+easylist.txt: 36800) -.maudau.com -# ||matiro.com^$third-party (easylistchina+easylist.txt: 36799) -.matiro.com -# ||mastertraffic.cn^$third-party (easylistchina+easylist.txt: 36798) -.mastertraffic.cn -# ||masternal.com^$third-party (easylistchina+easylist.txt: 36797) -.masternal.com -# ||masterads.org^$third-party (easylistchina+easylist.txt: 36796) -.masterads.org -# ||martiniadnetwork.com^$third-party (easylistchina+easylist.txt: 36795) -.martiniadnetwork.com -# ||marsads.com^$third-party (easylistchina+easylist.txt: 36794) -.marsads.com -# ||marketoring.com^$third-party (easylistchina+easylist.txt: 36793) -.marketoring.com -# ||marketnetwork.com^$third-party (easylistchina+easylist.txt: 36792) -.marketnetwork.com -# ||marketleverage.com^$third-party (easylistchina+easylist.txt: 36791) -.marketleverage.com -# ||marketingenhanced.com^$third-party (easylistchina+easylist.txt: 36790) -.marketingenhanced.com -# ||markethealth.com^$third-party (easylistchina+easylist.txt: 36789) -.markethealth.com -# ||marketgid.com^$third-party (easylistchina+easylist.txt: 36788) -.marketgid.com -# ||marketfly.net^$third-party (easylistchina+easylist.txt: 36787) -.marketfly.net -# ||marketbanker.com^$third-party (easylistchina+easylist.txt: 36786) -.marketbanker.com -# ||marfeel.com^$third-party (easylistchina+easylist.txt: 36785) -.marfeel.com -# ||marbil24.co.za^$third-party (easylistchina+easylist.txt: 36784) -.marbil24.co.za -# ||mangoforex.com^$third-party (easylistchina+easylist.txt: 36783) -.mangoforex.com -# ||mallsponsor.com^$third-party (easylistchina+easylist.txt: 36782) -.mallsponsor.com -# ||makemoneymakemoney.net^$third-party (easylistchina+easylist.txt: 36781) -.makemoneymakemoney.net -# ||makecashtakingsurveys.biz^$third-party (easylistchina+easylist.txt: 36780) -.makecashtakingsurveys.biz -# ||mainroll.com^$third-party (easylistchina+easylist.txt: 36779) -.mainroll.com -# ||mainadv.com^$third-party (easylistchina+easylist.txt: 36778) -.mainadv.com -# ||mailmarketingmachine.com^$third-party (easylistchina+easylist.txt: 36777) -.mailmarketingmachine.com -# ||magnetisemedia.com^$third-party (easylistchina+easylist.txt: 36776) -.magnetisemedia.com -# ||magicalled.info^$third-party (easylistchina+easylist.txt: 36775) -.magicalled.info -# ||madsone.com^$third-party (easylistchina+easylist.txt: 36774) -.madsone.com -# ||madserving.com^$third-party (easylistchina+easylist.txt: 36773) -.madserving.com -# ||madadsmedia.com^$third-party (easylistchina+easylist.txt: 36772) -.madadsmedia.com -# ||machings.com^^$third-party (easylistchina+easylist.txt: 36771) -.machings.com/[^\w%.-] -# ||mabirol.com^$third-party (easylistchina+easylist.txt: 36770) -.mabirol.com -# ||m5prod.net^$third-party (easylistchina+easylist.txt: 36769) -.m5prod.net -# ||m57ku6sm.com^$third-party (easylistchina+easylist.txt: 36768) -.m57ku6sm.com -# ||m4pub.com^$third-party (easylistchina+easylist.txt: 36767) -.m4pub.com -# ||m2pub.com^$third-party (easylistchina+easylist.txt: 36766) -.m2pub.com -# ||m1.fwmrm.net^$object-subrequest,third-party (easylistchina+easylist.txt: 36765) -.m1.fwmrm.net -# ||lzjl.com^$third-party (easylistchina+easylist.txt: 36764) -.lzjl.com -# ||lx2rv.com^$third-party (easylistchina+easylist.txt: 36763) -.lx2rv.com -# ||luxup.ru^$third-party (easylistchina+easylist.txt: 36762) -.luxup.ru -# ||luxbetaffiliates.com.au^$third-party (easylistchina+easylist.txt: 36761) -.luxbetaffiliates.com.au -# ||luxadv.com^$third-party (easylistchina+easylist.txt: 36760) -.luxadv.com -# ||lushcrush.com^$third-party (easylistchina+easylist.txt: 36759) -.lushcrush.com -# ||lucidmedia.com^$third-party (easylistchina+easylist.txt: 36758) -.lucidmedia.com -# ||ltassrv.com/serve/ (easylistchina+easylist.txt: 36757) -.ltassrv.com/serve/ -# ||ltassrv.com/goads.swf (easylistchina+easylist.txt: 36756) -.ltassrv.com/goads\.swf -# ||ltassrv.com.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 36755) -.ltassrv.com.s3.amazonaws.com -# ||lqw.me^$third-party (easylistchina+easylist.txt: 36754) -.lqw.me -# ||lqcdn.com^$third-party (easylistchina+easylist.txt: 36753) -.lqcdn.com -# ||loxtk.com^$third-party (easylistchina+easylist.txt: 36752) -.loxtk.com -# ||love-banner.com^$third-party (easylistchina+easylist.txt: 36751) -.love-banner.com -# ||lotteryaffiliates.com^$third-party (easylistchina+easylist.txt: 36750) -.lotteryaffiliates.com -# ||lostelephants.xyz^$third-party (easylistchina+easylist.txt: 36749) -.lostelephants.xyz -# ||losomy.com^$third-party (easylistchina+easylist.txt: 36748) -.losomy.com -# ||loseads.eu^$third-party (easylistchina+easylist.txt: 36747) -.loseads.eu -# ||lose-ads.de^$third-party (easylistchina+easylist.txt: 36746) -.lose-ads.de -# ||looneynetwork.com^$third-party (easylistchina+easylist.txt: 36745) -.looneynetwork.com -# ||looneyads.com^$third-party (easylistchina+easylist.txt: 36744) -.looneyads.com -# ||looksmart.com^$third-party (easylistchina+easylist.txt: 36743) -.looksmart.com -# ||lookit-quick.com^$third-party (easylistchina+easylist.txt: 36742) -.lookit-quick.com -# ||loodyas.com^$third-party (easylistchina+easylist.txt: 36741) -.loodyas.com -# ||logo-net.co.uk^$third-party (easylistchina+easylist.txt: 36740) -.logo-net.co.uk -# ||lockscalecompare.com^$third-party (easylistchina+easylist.txt: 36739) -.lockscalecompare.com -# ||lockhosts.com^$third-party (easylistchina+easylist.txt: 36738) -.lockhosts.com -# ||lockerdome.com^$third-party (easylistchina+easylist.txt: 36737) -.lockerdome.com -# ||localsearch24.co.uk^$third-party (easylistchina+easylist.txt: 36736) -.localsearch24.co.uk -# ||localedgemedia.com^$third-party (easylistchina+easylist.txt: 36735) -.localedgemedia.com -# ||localadbuy.com^$third-party (easylistchina+easylist.txt: 36734) -.localadbuy.com -# ||loading-resource.com^$third-party (easylistchina+easylist.txt: 36733) -.loading-resource.com -# ||lndjj.com^$third-party (easylistchina+easylist.txt: 36732) -.lndjj.com -# ||liveuniversenetwork.com^$third-party (easylistchina+easylist.txt: 36731) -.liveuniversenetwork.com -# ||liverail.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 36730) -.liverail.com -# ||liveadserver.net^$third-party (easylistchina+easylist.txt: 36729) -.liveadserver.net -# ||liveadoptimizer.com^$third-party (easylistchina+easylist.txt: 36728) -.liveadoptimizer.com -# ||liveadexchanger.com^$third-party (easylistchina+easylist.txt: 36727) -.liveadexchanger.com -# ||listingcafe.com^$third-party (easylistchina+easylist.txt: 36726) -.listingcafe.com -# ||liqwid.net^$third-party (easylistchina+easylist.txt: 36725) -.liqwid.net -# ||linkz.net^$third-party (easylistchina+easylist.txt: 36724) -.linkz.net -# ||linkybank.com^$third-party (easylistchina+easylist.txt: 36723) -.linkybank.com -# ||linkworth.com^$third-party (easylistchina+easylist.txt: 36722) -.linkworth.com -# ||linkwash.de^$third-party (easylistchina+easylist.txt: 36721) -.linkwash.de -# ||linkstorm.net^$third-party (easylistchina+easylist.txt: 36720) -.linkstorm.net -# ||linksmart.com^$third-party (easylistchina+easylist.txt: 36719) -.linksmart.com -# ||linkshowoff.com^$third-party (easylistchina+easylist.txt: 36718) -.linkshowoff.com -# ||links.io^$third-party (easylistchina+easylist.txt: 36717) -.links.io -# ||linkreferral.com^$third-party (easylistchina+easylist.txt: 36716) -.linkreferral.com -# ||linkoffers.net^$third-party (easylistchina+easylist.txt: 36715) -.linkoffers.net -# ||linkmads.com^$third-party (easylistchina+easylist.txt: 36714) -.linkmads.com -# ||linkgrand.com^$third-party (easylistchina+easylist.txt: 36713) -.linkgrand.com -# ||linkexchangers.net^$third-party (easylistchina+easylist.txt: 36712) -.linkexchangers.net -# ||linkexchange.com^$third-party (easylistchina+easylist.txt: 36711) -.linkexchange.com -# ||linkelevator.com^$third-party (easylistchina+easylist.txt: 36710) -.linkelevator.com -# ||linkconnector.com^$third-party (easylistchina+easylist.txt: 36709) -.linkconnector.com -# ||linkclicks.com^$third-party (easylistchina+easylist.txt: 36708) -.linkclicks.com -# ||linkbuddies.com^$third-party (easylistchina+easylist.txt: 36707) -.linkbuddies.com -# ||linicom.co.il^$third-party (easylistchina+easylist.txt: 36706) -.linicom.co.il -# ||lightningcast.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 36705) -.lightningcast.net -# ||lightad.co.kr^$third-party (easylistchina+easylist.txt: 36704) -.lightad.co.kr -# ||ligational.com^$third-party (easylistchina+easylist.txt: 36703) -.ligational.com -# ||liftdna.com^$third-party (easylistchina+easylist.txt: 36702) -.liftdna.com -# ||lgse.com^$third-party (easylistchina+easylist.txt: 36701) -.lgse.com -# ||lfstmedia.com^$third-party (easylistchina+easylist.txt: 36700) -.lfstmedia.com -# ||letsgoshopping.tk^$third-party (easylistchina+easylist.txt: 36699) -.letsgoshopping.tk -# ||letilyadothejob.com^$third-party (easylistchina+easylist.txt: 36698) -.letilyadothejob.com -# ||legisland.net^$third-party (easylistchina+easylist.txt: 36697) -.legisland.net -# ||leetmedia.com^$third-party (easylistchina+easylist.txt: 36696) -.leetmedia.com -# ||leadmediapartners.com^$third-party (easylistchina+easylist.txt: 36695) -.leadmediapartners.com -# ||leaderpub.fr^$third-party (easylistchina+easylist.txt: 36694) -.leaderpub.fr -# ||leadcola.com^$third-party (easylistchina+easylist.txt: 36693) -.leadcola.com -# ||leadbolt.net^$third-party (easylistchina+easylist.txt: 36692) -.leadbolt.net -# ||leadadvert.info^$third-party (easylistchina+easylist.txt: 36691) -.leadadvert.info -# ||leadad.mobi^$third-party (easylistchina+easylist.txt: 36690) -.leadad.mobi -# ||leadacceptor.com^$third-party (easylistchina+easylist.txt: 36689) -.leadacceptor.com -# ||lduhtrp.net^$third-party (easylistchina+easylist.txt: 36688) -.lduhtrp.net -# ||ldgateway.com^$third-party (easylistchina+easylist.txt: 36687) -.ldgateway.com -# ||lcl2adserver.com^$third-party (easylistchina+easylist.txt: 36686) -.lcl2adserver.com -# ||lbm1.com^$third-party (easylistchina+easylist.txt: 36685) -.lbm1.com -# ||lazynerd.info^$third-party (easylistchina+easylist.txt: 36684) -.lazynerd.info -# ||layerwelt.com^$third-party (easylistchina+easylist.txt: 36683) -.layerwelt.com -# ||layerloop.com^$third-party (easylistchina+easylist.txt: 36682) -.layerloop.com -# ||layer-ad.org^$third-party (easylistchina+easylist.txt: 36681) -.layer-ad.org -# ||launchbit.com^$third-party (easylistchina+easylist.txt: 36680) -.launchbit.com -# ||laserhairremovalstore.com^$third-party (easylistchina+easylist.txt: 36679) -.laserhairremovalstore.com -# ||largestable.com^$third-party (easylistchina+easylist.txt: 36678) -.largestable.com -# ||lanistaconcepts.com^$third-party (easylistchina+easylist.txt: 36677) -.lanistaconcepts.com -# ||lakidar.net^$third-party (easylistchina+easylist.txt: 36676) -.lakidar.net -# ||lakequincy.com^$third-party (easylistchina+easylist.txt: 36675) -.lakequincy.com -# ||ladbrokesaffiliates.com.au^$third-party (easylistchina+easylist.txt: 36674) -.ladbrokesaffiliates.com.au -# ||l3op.info^$third-party (easylistchina+easylist.txt: 36673) -.l3op.info -# ||kumpulblogger.com^$third-party (easylistchina+easylist.txt: 36672) -.kumpulblogger.com -# ||kromeleta.ru^$third-party (easylistchina+easylist.txt: 36671) -.kromeleta.ru -# ||kr3vinsx.com^$third-party (easylistchina+easylist.txt: 36670) -.kr3vinsx.com -# ||kqzyfj.com^$third-party (easylistchina+easylist.txt: 36669) -.kqzyfj.com -# ||kovla.com^$third-party (easylistchina+easylist.txt: 36668) -.kovla.com -# ||korrelate.net^$third-party (easylistchina+easylist.txt: 36667) -.korrelate.net -# ||koocash.com^$third-party (easylistchina+easylist.txt: 36666) -.koocash.com -# ||kontextua.com^$third-party (easylistchina+easylist.txt: 36665) -.kontextua.com -# ||komoona.com^$third-party (easylistchina+easylist.txt: 36664) -.komoona.com -# ||kolition.com^$third-party (easylistchina+easylist.txt: 36663) -.kolition.com -# ||knowd.com^$third-party (easylistchina+easylist.txt: 36662) -.knowd.com -# ||knorex.asia^$third-party (easylistchina+easylist.txt: 36661) -.knorex.asia -# ||klonedaset.org^$third-party (easylistchina+easylist.txt: 36660) -.klonedaset.org -# ||kloapers.com^$third-party (easylistchina+easylist.txt: 36659) -.kloapers.com -# ||klixfeed.com^$third-party (easylistchina+easylist.txt: 36658) -.klixfeed.com -# ||klipmart.com^$third-party (easylistchina+easylist.txt: 36657) -.klipmart.com -# ||klikvip.com^$third-party (easylistchina+easylist.txt: 36656) -.klikvip.com -# ||kliksaya.com^$third-party (easylistchina+easylist.txt: 36655) -.kliksaya.com -# ||klikadvertising.com^$third-party (easylistchina+easylist.txt: 36654) -.klikadvertising.com -# ||kjgh5o.com^$third-party (easylistchina+easylist.txt: 36653) -.kjgh5o.com -# ||kitnmedia.com^$third-party (easylistchina+easylist.txt: 36652) -.kitnmedia.com -# ||kiosked.com^$third-party (easylistchina+easylist.txt: 36651) -.kiosked.com -# ||kintokup.com^$third-party (easylistchina+easylist.txt: 36650) -.kintokup.com -# ||kinley.com^$third-party (easylistchina+easylist.txt: 36649) -.kinley.com -# ||kikuzip.com^$third-party (easylistchina+easylist.txt: 36648) -.kikuzip.com -# ||keywordblocks.com^$third-party (easylistchina+easylist.txt: 36647) -.keywordblocks.com -# ||keyrunmodel.com^$third-party (easylistchina+easylist.txt: 36646) -.keyrunmodel.com -# ||ketoo.com^$third-party (easylistchina+easylist.txt: 36645) -.ketoo.com -# ||kerg.net^$third-party (easylistchina+easylist.txt: 36644) -.kerg.net -# ||kehalim.com^$third-party (easylistchina+easylist.txt: 36643) -.kehalim.com -# ||keewurd.com^$third-party (easylistchina+easylist.txt: 36642) -.keewurd.com -# ||kavanga.ru^$third-party (easylistchina+easylist.txt: 36641) -.kavanga.ru -# ||kantarmedia.com^$third-party (easylistchina+easylist.txt: 36640) -.kantarmedia.com -# ||kanoodle.com^$third-party (easylistchina+easylist.txt: 36639) -.kanoodle.com -# ||k0z09okc.com^$third-party (easylistchina+easylist.txt: 36638) -.k0z09okc.com -# ||jyvtidkx.com^$third-party (easylistchina+easylist.txt: 36637) -.jyvtidkx.com -# ||jwaavsze.com^$third-party (easylistchina+easylist.txt: 36636) -.jwaavsze.com -# ||justrelevant.com^$third-party (easylistchina+easylist.txt: 36635) -.justrelevant.com -# ||jursp.com^$third-party (easylistchina+easylist.txt: 36634) -.jursp.com -# ||jumptap.com^$third-party (easylistchina+easylist.txt: 36633) -.jumptap.com -# ||jumpelead.com^$third-party (easylistchina+easylist.txt: 36632) -.jumpelead.com -# ||jumia.com.ng^$third-party (easylistchina+easylist.txt: 36631) -.jumia.com.ng -# ||jumbolt.ru^$third-party (easylistchina+easylist.txt: 36630) -.jumbolt.ru -# ||jumboaffiliates.com^$third-party (easylistchina+easylist.txt: 36629) -.jumboaffiliates.com -# ||jujzh9va.com^$third-party (easylistchina+easylist.txt: 36628) -.jujzh9va.com -# ||jujuads.com^$third-party (easylistchina+easylist.txt: 36627) -.jujuads.com -# ||juiceadv.net^$third-party (easylistchina+easylist.txt: 36626) -.juiceadv.net -# ||juiceadv.com^$third-party (easylistchina+easylist.txt: 36625) -.juiceadv.com -# ||judicated.com^$third-party (easylistchina+easylist.txt: 36624) -.judicated.com -# ||jtrakk.com^$third-party (easylistchina+easylist.txt: 36623) -.jtrakk.com -# ||jssearch.net^$third-party (easylistchina+easylist.txt: 36622) -.jssearch.net -# ||jsretra.com^$third-party (easylistchina+easylist.txt: 36621) -.jsretra.com -# ||jsfeedadsget.com^$third-party (easylistchina+easylist.txt: 36620) -.jsfeedadsget.com -# ||jscount.com^$third-party (easylistchina+easylist.txt: 36619) -.jscount.com -# ||js.cdn.ac^$third-party (easylistchina+easylist.txt: 36618) -.js.cdn.ac -# ||jque.net^$third-party (easylistchina+easylist.txt: 36617) -.jque.net -# ||joytocash.com^$third-party (easylistchina+easylist.txt: 36616) -.joytocash.com -# ||jobtarget.com^$third-party (easylistchina+easylist.txt: 36615) -.jobtarget.com -# ||jobsyndicate.com^$third-party (easylistchina+easylist.txt: 36614) -.jobsyndicate.com -# ||jo7cofh3.com^$third-party (easylistchina+easylist.txt: 36613) -.jo7cofh3.com -# ||jmp9.com^$third-party (easylistchina+easylist.txt: 36612) -.jmp9.com -# ||jizzontoy.com^$third-party (easylistchina+easylist.txt: 36611) -.jizzontoy.com -# ||jiwire.com^$third-party (easylistchina+easylist.txt: 36610) -.jiwire.com -# ||jivox.com^$third-party (easylistchina+easylist.txt: 36609) -.jivox.com -# ||jiawen88.com^$third-party (easylistchina+easylist.txt: 36608) -.jiawen88.com -# ||jemmgroup.com^$third-party (easylistchina+easylist.txt: 36607) -.jemmgroup.com -# ||jeetyetmedia.com^$third-party (easylistchina+easylist.txt: 36606) -.jeetyetmedia.com -# ||jdproject.net^$third-party (easylistchina+easylist.txt: 36605) -.jdproject.net -# ||jdoqocy.com^$third-party (easylistchina+easylist.txt: 36604) -.jdoqocy.com -# ||jbrlsr.com^$third-party (easylistchina+easylist.txt: 36603) -.jbrlsr.com -# ||jangonetwork.com^$third-party (easylistchina+easylist.txt: 36602) -.jangonetwork.com -# ||jango.com^$third-party (easylistchina+easylist.txt: 36601) -.jango.com -# ||jadcenter.com^$third-party (easylistchina+easylist.txt: 36600) -.jadcenter.com -# ||j2ef76da3.website^$third-party (easylistchina+easylist.txt: 36599) -.j2ef76da3.website -# ||izeads.com^$third-party (easylistchina+easylist.txt: 36598) -.izeads.com -# ||ixnp.com^$third-party (easylistchina+easylist.txt: 36597) -.ixnp.com -# ||iwantmoar.net^$third-party (easylistchina+easylist.txt: 36596) -.iwantmoar.net -# ||iv.doubleclick.net^$third-party (easylistchina+easylist.txt: 36595) -.iv.doubleclick.net -# ||iu16wmye.com^$third-party (easylistchina+easylist.txt: 36594) -.iu16wmye.com -# ||itrengia.com^$third-party (easylistchina+easylist.txt: 36593) -.itrengia.com -# ||isparkmedia.com^$third-party (easylistchina+easylist.txt: 36592) -.isparkmedia.com -# ||isohits.com^$third-party (easylistchina+easylist.txt: 36591) -.isohits.com -# ||isapi.solutions^$third-party (easylistchina+easylist.txt: 36590) -.isapi.solutions -# ||ipromote.com^$third-party (easylistchina+easylist.txt: 36589) -.ipromote.com -# ||ipredictive.com^$third-party (easylistchina+easylist.txt: 36588) -.ipredictive.com -# ||ip-adress.com^$third-party (easylistchina+easylist.txt: 36587) -.ip-adress.com -# ||inviziads.com^$third-party (easylistchina+easylist.txt: 36586) -.inviziads.com -# ||investingchannel.com^$third-party (easylistchina+easylist.txt: 36585) -.investingchannel.com -# ||inuxu.co.in^$third-party (easylistchina+easylist.txt: 36584) -.inuxu.co.in -# ||inuxu.biz^$third-party (easylistchina+easylist.txt: 36583) -.inuxu.biz -# ||inuvo.com^$third-party (easylistchina+easylist.txt: 36582) -.inuvo.com -# ||intuneads.com^$third-party (easylistchina+easylist.txt: 36581) -.intuneads.com -# ||inttrax.com^$third-party (easylistchina+easylist.txt: 36580) -.inttrax.com -# ||intopicmedia.com^$third-party (easylistchina+easylist.txt: 36579) -.intopicmedia.com -# ||intgr.net^$third-party (easylistchina+easylist.txt: 36578) -.intgr.net -# ||intextual.net^$third-party (easylistchina+easylist.txt: 36577) -.intextual.net -# ||intextscript.com^$third-party (easylistchina+easylist.txt: 36576) -.intextscript.com -# ||intextdirect.com^$third-party (easylistchina+easylist.txt: 36575) -.intextdirect.com -# ||interworksmedia.co.kr^$third-party (easylistchina+easylist.txt: 36574) -.interworksmedia.co.kr -# ||interpolls.com^$third-party (easylistchina+easylist.txt: 36573) -.interpolls.com -# ||internetadbrokers.com^$third-party (easylistchina+easylist.txt: 36572) -.internetadbrokers.com -# ||intermarkets.net^$third-party (easylistchina+easylist.txt: 36571) -.intermarkets.net -# ||interesting.cc^$third-party (easylistchina+easylist.txt: 36570) -.interesting.cc -# ||interestably.com^$third-party (easylistchina+easylist.txt: 36569) -.interestably.com -# ||interclick.com^$third-party (easylistchina+easylist.txt: 36568) -.interclick.com -# ||interactivespot.net^$third-party (easylistchina+easylist.txt: 36567) -.interactivespot.net -# ||intentmedia.net^$third-party (easylistchina+easylist.txt: 36566) -.intentmedia.net -# ||intenthq.com^$third-party (easylistchina+easylist.txt: 36565) -.intenthq.com -# ||intellitxt.com^$third-party (easylistchina+easylist.txt: 36564) -.intellitxt.com -# ||intellibanners.com^$third-party (easylistchina+easylist.txt: 36563) -.intellibanners.com -# ||integral-marketing.com^$third-party (easylistchina+easylist.txt: 36562) -.integral-marketing.com -# ||instivate.com^$third-party (easylistchina+easylist.txt: 36561) -.instivate.com -# ||instinctiveads.com^$third-party (easylistchina+easylist.txt: 36560) -.instinctiveads.com -# ||instantdollarz.com^$third-party (easylistchina+easylist.txt: 36559) -.instantdollarz.com -# ||instantbannercreator.com^$third-party (easylistchina+easylist.txt: 36558) -.instantbannercreator.com -# ||insta-cash.net^$third-party (easylistchina+easylist.txt: 36557) -.insta-cash.net -# ||inspiringsweater.xyz^$third-party (easylistchina+easylist.txt: 36556) -.inspiringsweater.xyz -# ||inskinmedia.com^$~stylesheet,third-party (easylistchina+easylist.txt: 36555) -.inskinmedia.com -# ||inskinad.com^$third-party (easylistchina+easylist.txt: 36554) -.inskinad.com -# ||insitesystems.com^$third-party (easylistchina+easylist.txt: 36553) -.insitesystems.com -# ||insitepromotion.com^$third-party (easylistchina+easylist.txt: 36552) -.insitepromotion.com -# ||insightexpressai.com^$third-party (easylistchina+easylist.txt: 36551) -.insightexpressai.com -# ||insightexpress.com^$third-party (easylistchina+easylist.txt: 36550) -.insightexpress.com -# ||innovid.com^$third-party (easylistchina+easylist.txt: 36549) -.innovid.com -# ||innity.net^$third-party (easylistchina+easylist.txt: 36548) -.innity.net -# ||innity.com^$third-party (easylistchina+easylist.txt: 36547) -.innity.com -# ||inktad.com^$third-party (easylistchina+easylist.txt: 36546) -.inktad.com -# ||ingame.ad^$third-party (easylistchina+easylist.txt: 36545) -.ingame.ad -# ||infra-ad.com^$third-party (easylistchina+easylist.txt: 36544) -.infra-ad.com -# ||information-sale.com^$third-party (easylistchina+easylist.txt: 36543) -.information-sale.com -# ||infolinks.com^$third-party (easylistchina+easylist.txt: 36542) -.infolinks.com -# ||info4.a7.org^$third-party (easylistchina+easylist.txt: 36541) -.info4.a7.org -# ||influads.com^$third-party (easylistchina+easylist.txt: 36540) -.influads.com -# ||infinityads.com^$third-party (easylistchina+easylist.txt: 36539) -.infinityads.com -# ||infinite-ads.com^$third-party (easylistchina+easylist.txt: 36538) -.infinite-ads.com -# ||infectiousmedia.com^$third-party (easylistchina+easylist.txt: 36537) -.infectiousmedia.com -# ||inetinteractive.com^$third-party (easylistchina+easylist.txt: 36536) -.inetinteractive.com -# ||inentasky.com^$third-party (easylistchina+easylist.txt: 36535) -.inentasky.com -# ||industrybrains.com^$third-party (easylistchina+easylist.txt: 36534) -.industrybrains.com -# ||indofad.com^$third-party (easylistchina+easylist.txt: 36533) -.indofad.com -# ||indieclick.com^$third-party (easylistchina+easylist.txt: 36532) -.indieclick.com -# ||indicate.to^$third-party (easylistchina+easylist.txt: 36531) -.indicate.to -# ||indianlinkexchange.com^$third-party (easylistchina+easylist.txt: 36530) -.indianlinkexchange.com -# ||indianbannerexchange.com^$third-party (easylistchina+easylist.txt: 36529) -.indianbannerexchange.com -# ||indiads.com^$third-party (easylistchina+easylist.txt: 36528) -.indiads.com -# ||indiabanner.com^$third-party (easylistchina+easylist.txt: 36527) -.indiabanner.com -# ||indexww.com^$third-party (easylistchina+easylist.txt: 36526) -.indexww.com -# ||increase-marketing.com^$third-party (easylistchina+easylist.txt: 36525) -.increase-marketing.com -# ||incomeliberation.com^$third-party (easylistchina+easylist.txt: 36524) -.incomeliberation.com -# ||incentaclick.com^$third-party (easylistchina+easylist.txt: 36523) -.incentaclick.com -# ||in-appadvertising.com^$third-party (easylistchina+easylist.txt: 36522) -.in-appadvertising.com -# ||impressionvalue.mobi^$third-party (easylistchina+easylist.txt: 36521) -.impressionvalue.mobi -# ||impressionperformance.biz^$third-party (easylistchina+easylist.txt: 36520) -.impressionperformance.biz -# ||impressiondesk.com^$third-party (easylistchina+easylist.txt: 36519) -.impressiondesk.com -# ||impressioncontent.info^$third-party (easylistchina+easylist.txt: 36518) -.impressioncontent.info -# ||impressionaffiliate.mobi^$third-party (easylistchina+easylist.txt: 36517) -.impressionaffiliate.mobi -# ||impressionaffiliate.com^$third-party (easylistchina+easylist.txt: 36516) -.impressionaffiliate.com -# ||impresionesweb.com^$third-party (easylistchina+easylist.txt: 36515) -.impresionesweb.com -# ||implix.com^$third-party (easylistchina+easylist.txt: 36514) -.implix.com -# ||impactradius.com^$third-party (easylistchina+easylist.txt: 36513) -.impactradius.com -# ||impact-ad.jp^$third-party (easylistchina+easylist.txt: 36512) -.impact-ad.jp -# ||imp*.tradedoubler.com^$third-party (easylistchina+easylist.txt: 36511) -.imp*./.*\.tradedoubler\.com[^\w%.-] -.imp*.tradedoubler.com -# ||imonomy.com^$third-party (easylistchina+easylist.txt: 36510) -.imonomy.com -# ||imiclk.com^$third-party (easylistchina+easylist.txt: 36509) -.imiclk.com -# ||imho.ru^$third-party (easylistchina+easylist.txt: 36508) -.imho.ru -# ||imgwebfeed.com^$third-party (easylistchina+easylist.txt: 36507) -.imgwebfeed.com -# ||imgsniper.com^$third-party (easylistchina+easylist.txt: 36506) -.imgsniper.com -# ||imglt.com^$third-party (easylistchina+easylist.txt: 36505) -.imglt.com -# ||imgfeedget.com^$third-party (easylistchina+easylist.txt: 36504) -.imgfeedget.com -# ||img-giganto.net^$third-party (easylistchina+easylist.txt: 36503) -.img-giganto.net -# ||imediarevenue.com^$third-party (easylistchina+easylist.txt: 36502) -.imediarevenue.com -# ||imediaaudiences.com^$third-party (easylistchina+easylist.txt: 36501) -.imediaaudiences.com -# ||imedia.co.il^$third-party (easylistchina+easylist.txt: 36500) -.imedia.co.il -# ||imasdk.googleapis.com^$third-party (easylistchina+easylist.txt: 36499) -.imasdk.googleapis.com -# ||imageadnet.com^$third-party (easylistchina+easylist.txt: 36498) -.imageadnet.com -# ||ikzikistheking.com^$third-party (easylistchina+easylist.txt: 36497) -.ikzikistheking.com -# ||ignitioninstaller.com^$third-party (easylistchina+easylist.txt: 36496) -.ignitioninstaller.com -# ||igloohq.com^$third-party (easylistchina+easylist.txt: 36495) -.igloohq.com -# ||igameunion.com^$third-party (easylistchina+easylist.txt: 36494) -.igameunion.com -# ||iframe.mediaplazza.com^$third-party (easylistchina+easylist.txt: 36493) -.iframe.mediaplazza.com -# ||idownloadgalore.com^$third-party (easylistchina+easylist.txt: 36492) -.idownloadgalore.com -# ||identads.com^$third-party (easylistchina+easylist.txt: 36491) -.identads.com -# ||idealmedia.com^$third-party (easylistchina+easylist.txt: 36490) -.idealmedia.com -# ||icqadvnew.com^$third-party (easylistchina+easylist.txt: 36489) -.icqadvnew.com -# ||icdirect.com^$third-party (easylistchina+easylist.txt: 36488) -.icdirect.com -# ||ibryte.com^$third-party (easylistchina+easylist.txt: 36487) -.ibryte.com -# ||ibatom.com^$third-party (easylistchina+easylist.txt: 36486) -.ibatom.com -# ||ibannerexchange.com^$third-party (easylistchina+easylist.txt: 36485) -.ibannerexchange.com -# ||iasrv.com^$third-party (easylistchina+easylist.txt: 36484) -.iasrv.com -# ||iasbetaffiliates.com^$third-party (easylistchina+easylist.txt: 36483) -.iasbetaffiliates.com -# ||iamediaserve.com^$third-party (easylistchina+easylist.txt: 36482) -.iamediaserve.com -# ||i.skimresources.com^$third-party (easylistchina+easylist.txt: 36481) -.i.skimresources.com -# ||i-media.co.nz^$third-party (easylistchina+easylist.txt: 36480) -.i-media.co.nz -# ||hyperwebads.com^$third-party (easylistchina+easylist.txt: 36479) -.hyperwebads.com -# ||hypervre.com^$third-party (easylistchina+easylist.txt: 36478) -.hypervre.com -# ||hypertrackeraff.com^$third-party (easylistchina+easylist.txt: 36477) -.hypertrackeraff.com -# ||hyperlinksecure.com^$third-party (easylistchina+easylist.txt: 36476) -.hyperlinksecure.com -# ||hypemakers.net^$third-party (easylistchina+easylist.txt: 36475) -.hypemakers.net -# ||hypeads.org^$third-party (easylistchina+easylist.txt: 36474) -.hypeads.org -# ||hype-ads.com^$third-party (easylistchina+easylist.txt: 36473) -.hype-ads.com -# ||huzonico.com^$third-party (easylistchina+easylist.txt: 36472) -.huzonico.com -# ||httpsecurity.org^$third-party (easylistchina+easylist.txt: 36471) -.httpsecurity.org -# ||httpool.com^$third-party (easylistchina+easylist.txt: 36470) -.httpool.com -# ||htmlhubing.xyz^$third-party (easylistchina+easylist.txt: 36469) -.htmlhubing.xyz -# ||hstpnetwork.com^$third-party (easylistchina+easylist.txt: 36468) -.hstpnetwork.com -# ||hsslx.com^$third-party (easylistchina+easylist.txt: 36467) -.hsslx.com -# ||hplose.de^$third-party (easylistchina+easylist.txt: 36466) -.hplose.de -# ||hover.in^$third-party (easylistchina+easylist.txt: 36465) -.hover.in -# ||hotwords.com^$third-party (easylistchina+easylist.txt: 36464) -.hotwords.com -# ||hotwords.com.mx^$third-party (easylistchina+easylist.txt: 36463) -.hotwords.com.mx -# ||hotwords.com.br^$third-party (easylistchina+easylist.txt: 36462) -.hotwords.com.br -# ||hotptp.com^$third-party (easylistchina+easylist.txt: 36461) -.hotptp.com -# ||hotkeys.com^$third-party (easylistchina+easylist.txt: 36460) -.hotkeys.com -# ||hotfeed.net^$third-party (easylistchina+easylist.txt: 36459) -.hotfeed.net -# ||hotelscombined.com^$third-party (easylistchina+easylist.txt: 36458) -.hotelscombined.com -# ||hotelscombined.com.au^$third-party (easylistchina+easylist.txt: 36457) -.hotelscombined.com.au -# ||hot-hits.us^$third-party (easylistchina+easylist.txt: 36456) -.hot-hits.us -# ||hosticanaffiliate.com^$third-party (easylistchina+easylist.txt: 36455) -.hosticanaffiliate.com -# ||horyzon-media.com^$third-party (easylistchina+easylist.txt: 36454) -.horyzon-media.com -# ||horsered.com^$third-party (easylistchina+easylist.txt: 36453) -.horsered.com -# ||horse-racing-affiliate-program.co.uk^$third-party (easylistchina+easylist.txt: 36452) -.horse-racing-affiliate-program.co.uk -# ||hopfeed.com^$third-party (easylistchina+easylist.txt: 36451) -.hopfeed.com -# ||hoomezip.biz^$third-party (easylistchina+easylist.txt: 36450) -.hoomezip.biz -# ||holidaytravelguide.org^$third-party (easylistchina+easylist.txt: 36449) -.holidaytravelguide.org -# ||holdingprice.net^$third-party (easylistchina+easylist.txt: 36448) -.holdingprice.net -# ||hokaybo.com^$third-party (easylistchina+easylist.txt: 36447) -.hokaybo.com -# ||hlads.com^$third-party (easylistchina+easylist.txt: 36446) -.hlads.com -# ||hitwastedgarden.com^$third-party (easylistchina+easylist.txt: 36445) -.hitwastedgarden.com -# ||hits.sys.lv^$third-party (easylistchina+easylist.txt: 36444) -.hits.sys.lv -# ||hit-now.com^$third-party (easylistchina+easylist.txt: 36443) -.hit-now.com -# ||histians.com^$third-party (easylistchina+easylist.txt: 36442) -.histians.com -# ||hiplair.com^$third-party (easylistchina+easylist.txt: 36441) -.hiplair.com -# ||himediadx.com^$third-party (easylistchina+easylist.txt: 36440) -.himediadx.com -# ||himediads.com^$third-party (easylistchina+easylist.txt: 36439) -.himediads.com -# ||hilltopads.net^$third-party (easylistchina+easylist.txt: 36438) -.hilltopads.net -# ||hijacksystem.com^$third-party (easylistchina+easylist.txt: 36437) -.hijacksystem.com -# ||hiadone.com^$third-party (easylistchina+easylist.txt: 36436) -.hiadone.com -# ||hgdat.com^$third-party (easylistchina+easylist.txt: 36435) -.hgdat.com -# ||hexagram.com^$third-party (easylistchina+easylist.txt: 36434) -.hexagram.com -# ||helloreverb.com^$third-party (easylistchina+easylist.txt: 36433) -.helloreverb.com -# ||hebiichigo.com^$third-party (easylistchina+easylist.txt: 36432) -.hebiichigo.com -# ||healthcarestars.com^$third-party (easylistchina+easylist.txt: 36431) -.healthcarestars.com -# ||healthaffiliatesnetwork.com^$third-party (easylistchina+easylist.txt: 36430) -.healthaffiliatesnetwork.com -# ||headup.com^$third-party (easylistchina+easylist.txt: 36429) -.headup.com -# ||hdvidcodecs.com^$third-party (easylistchina+easylist.txt: 36428) -.hdvidcodecs.com -# ||hdvid-codecs-dl.net^$third-party (easylistchina+easylist.txt: 36427) -.hdvid-codecs-dl.net -# ||hdplayer-download.com^$third-party (easylistchina+easylist.txt: 36426) -.hdplayer-download.com -# ||hd-plugin.com^$third-party (easylistchina+easylist.txt: 36425) -.hd-plugin.com -# ||hb-247.com^$third-party (easylistchina+easylist.txt: 36424) -.hb-247.com -# ||havetohave.com^$third-party (easylistchina+easylist.txt: 36423) -.havetohave.com -# ||havamedia.net^$third-party (easylistchina+easylist.txt: 36422) -.havamedia.net -# ||harrenmedianetwork.com^$third-party (easylistchina+easylist.txt: 36421) -.harrenmedianetwork.com -# ||happilyswitching.net^$third-party (easylistchina+easylist.txt: 36420) -.happilyswitching.net -# ||hanaprop.com^$third-party (easylistchina+easylist.txt: 36419) -.hanaprop.com -# ||halogennetwork.com^$third-party (easylistchina+easylist.txt: 36418) -.halogennetwork.com -# ||halfpriceozarks.com^$third-party (easylistchina+easylist.txt: 36417) -.halfpriceozarks.com -# ||h12-media.com^$third-party (easylistchina+easylist.txt: 36416) -.h12-media.com -# ||h-images.net^$third-party (easylistchina+easylist.txt: 36415) -.h-images.net -# ||gx101.com^$third-party (easylistchina+easylist.txt: 36414) -.gx101.com -# ||gwallet.com^$third-party (easylistchina+easylist.txt: 36413) -.gwallet.com -# ||gururevenue.com^$third-party (easylistchina+easylist.txt: 36412) -.gururevenue.com -# ||gunpartners.com^$third-party (easylistchina+easylist.txt: 36411) -.gunpartners.com -# ||gumgum.com^$third-party (easylistchina+easylist.txt: 36410) -.gumgum.com -# ||guitaralliance.com^$third-party (easylistchina+easylist.txt: 36409) -.guitaralliance.com -# ||guardiandigitalcomparison.co.uk^$third-party (easylistchina+easylist.txt: 36408) -.guardiandigitalcomparison.co.uk -# ||gscsystemwithdarren.com^$third-party (easylistchina+easylist.txt: 36407) -.gscsystemwithdarren.com -# ||gscontxt.net^$third-party (easylistchina+easylist.txt: 36406) -.gscontxt.net -# ||grt03.com^$third-party (easylistchina+easylist.txt: 36405) -.grt03.com -# ||grt02.com^$third-party (easylistchina+easylist.txt: 36404) -.grt02.com -# ||groupcommerce.com^$third-party (easylistchina+easylist.txt: 36403) -.groupcommerce.com -# ||groovinads.com^$third-party (easylistchina+easylist.txt: 36402) -.groovinads.com -# ||grllopa.com^$third-party (easylistchina+easylist.txt: 36401) -.grllopa.com -# ||gripdownload.co^$third-party (easylistchina+easylist.txt: 36400) -.gripdownload.co -# ||gretzalz.com^$third-party (easylistchina+easylist.txt: 36399) -.gretzalz.com -# ||grenstia.com^$third-party (easylistchina+easylist.txt: 36398) -.grenstia.com -# ||greenlabelppc.com^$third-party (easylistchina+easylist.txt: 36397) -.greenlabelppc.com -# ||greenads.org^$third-party (easylistchina+easylist.txt: 36396) -.greenads.org -# ||gratisnetwork.com^$third-party (easylistchina+easylist.txt: 36395) -.gratisnetwork.com -# ||grapeshot.co.uk^$third-party (easylistchina+easylist.txt: 36394) -.grapeshot.co.uk -# ||grafpedia.com^$third-party (easylistchina+easylist.txt: 36393) -.grafpedia.com -# ||grabo.bg^$third-party (easylistchina+easylist.txt: 36392) -.grabo.bg -# ||grabmyads.com^$third-party (easylistchina+easylist.txt: 36391) -.grabmyads.com -# ||gpacalculatorhighschoolfree.com^$third-party (easylistchina+easylist.txt: 36390) -.gpacalculatorhighschoolfree.com -# ||goviral.hs.llnwd.net^$third-party (easylistchina+easylist.txt: 36389) -.goviral.hs.llnwd.net -# ||goviral-content.com^$third-party (easylistchina+easylist.txt: 36388) -.goviral-content.com -# ||governmenttrainingexchange.com^$third-party (easylistchina+easylist.txt: 36387) -.governmenttrainingexchange.com -# ||gourmetads.com^$third-party (easylistchina+easylist.txt: 36386) -.gourmetads.com -# ||gorgonkil.com^$third-party (easylistchina+easylist.txt: 36385) -.gorgonkil.com -# ||gopjn.com^$third-party (easylistchina+easylist.txt: 36384) -.gopjn.com -# ||googletagservices.com/tag/static/$third-party (easylistchina+easylist.txt: 36383) -.googletagservices.com/tag/static/ -# ||googletagservices.com/tag/js/gpt_$third-party (easylistchina+easylist.txt: 36382) -.googletagservices.com/tag/js/gpt_ -# ||googlesyndicatiion.com^$third-party (easylistchina+easylist.txt: 36381) -.googlesyndicatiion.com -# ||googleadservicepixel.com^$third-party (easylistchina+easylist.txt: 36380) -.googleadservicepixel.com -# ||goodadvertising.info^$third-party (easylistchina+easylist.txt: 36379) -.goodadvertising.info -# ||goodadvert.ru^$third-party (easylistchina+easylist.txt: 36378) -.goodadvert.ru -# ||gojoingscnow.com^$third-party (easylistchina+easylist.txt: 36377) -.gojoingscnow.com -# ||gogoplexer.com^$third-party (easylistchina+easylist.txt: 36376) -.gogoplexer.com -# ||goember.com^$third-party (easylistchina+easylist.txt: 36375) -.goember.com -# ||godspeaks.net^$third-party (easylistchina+easylist.txt: 36374) -.godspeaks.net -# ||goclickon.us^$third-party (easylistchina+easylist.txt: 36373) -.goclickon.us -# ||go2speed.org^$third-party (easylistchina+easylist.txt: 36372) -.go2speed.org -# ||go2media.org^$third-party (easylistchina+easylist.txt: 36371) -.go2media.org -# ||go2jump.org^$third-party (easylistchina+easylist.txt: 36370) -.go2jump.org -# ||gmads.net^$third-party (easylistchina+easylist.txt: 36369) -.gmads.net -# ||glowdot.com^$third-party (easylistchina+easylist.txt: 36368) -.glowdot.com -# ||globaltakeoff.net^$third-party (easylistchina+easylist.txt: 36367) -.globaltakeoff.net -# ||globalsuccessclub.com^$third-party (easylistchina+easylist.txt: 36366) -.globalsuccessclub.com -# ||globalinteractive.com^$third-party (easylistchina+easylist.txt: 36365) -.globalinteractive.com -# ||globaladv.net^$third-party (easylistchina+easylist.txt: 36364) -.globaladv.net -# ||globaladsales.com^$third-party (easylistchina+easylist.txt: 36363) -.globaladsales.com -# ||global-success-club.net^$third-party (easylistchina+easylist.txt: 36362) -.global-success-club.net -# ||glical.com^$third-party (easylistchina+easylist.txt: 36361) -.glical.com -# ||gklmedia.com^$third-party (easylistchina+easylist.txt: 36360) -.gklmedia.com -# ||gimiclub.com^$third-party (easylistchina+easylist.txt: 36359) -.gimiclub.com -# ||gigamega.su^$third-party (easylistchina+easylist.txt: 36358) -.gigamega.su -# ||giantaffiliates.com^$third-party (easylistchina+easylist.txt: 36357) -.giantaffiliates.com -# ||ggncpm.com^$third-party (easylistchina+easylist.txt: 36356) -.ggncpm.com -# ||gettipsz.info^$third-party (easylistchina+easylist.txt: 36355) -.gettipsz.info -# ||getthislistbuildingvideo.biz^$third-party (easylistchina+easylist.txt: 36354) -.getthislistbuildingvideo.biz -# ||getscorecash.com^$third-party (easylistchina+easylist.txt: 36353) -.getscorecash.com -# ||getgscfree.com^$third-party (easylistchina+easylist.txt: 36352) -.getgscfree.com -# ||getgamers.eu^$third-party (easylistchina+easylist.txt: 36351) -.getgamers.eu -# ||gestionpub.com^$third-party (easylistchina+easylist.txt: 36350) -.gestionpub.com -# ||geovisite.com^$third-party (easylistchina+easylist.txt: 36349) -.geovisite.com -# ||geopromos.com^$third-party (easylistchina+easylist.txt: 36348) -.geopromos.com -# ||geoipads.com^$third-party (easylistchina+easylist.txt: 36347) -.geoipads.com -# ||geo-idm.fr^$third-party (easylistchina+easylist.txt: 36346) -.geo-idm.fr -# ||genovesetacet.com^$third-party (easylistchina+easylist.txt: 36345) -.genovesetacet.com -# ||genieessp.com^$third-party (easylistchina+easylist.txt: 36344) -.genieessp.com -# ||geniad.net^$third-party (easylistchina+easylist.txt: 36343) -.geniad.net -# ||genesismedia.com^$third-party (easylistchina+easylist.txt: 36342) -.genesismedia.com -# ||genericsteps.com^$third-party (easylistchina+easylist.txt: 36341) -.genericsteps.com -# ||genericlink.com^$third-party (easylistchina+easylist.txt: 36340) -.genericlink.com -# ||gemineering.com^$third-party (easylistchina+easylist.txt: 36339) -.gemineering.com -# ||geld-internet-verdienen.net^$third-party (easylistchina+easylist.txt: 36338) -.geld-internet-verdienen.net -# ||gefhasio.com^$third-party (easylistchina+easylist.txt: 36337) -.gefhasio.com -# ||geek2us.net^$third-party (easylistchina+easylist.txt: 36336) -.geek2us.net -# ||geede.info^$third-party (easylistchina+easylist.txt: 36335) -.geede.info -# ||gdmdigital.com^$third-party (easylistchina+easylist.txt: 36334) -.gdmdigital.com -# ||gayadnetwork.com^$third-party (easylistchina+easylist.txt: 36333) -.gayadnetwork.com -# ||gatikus.com^$third-party (easylistchina+easylist.txt: 36332) -.gatikus.com -# ||gate-ru.com^$third-party (easylistchina+easylist.txt: 36331) -.gate-ru.com -# ||garvmedia.com^$third-party (easylistchina+easylist.txt: 36330) -.garvmedia.com -# ||garristo.com^$third-party (easylistchina+easylist.txt: 36329) -.garristo.com -# ||gannett.gcion.com^$third-party (easylistchina+easylist.txt: 36328) -.gannett.gcion.com -# ||gandrad.org^$third-party (easylistchina+easylist.txt: 36327) -.gandrad.org -# ||gan.doubleclick.net^$third-party (easylistchina+easylist.txt: 36326) -.gan.doubleclick.net -# ||gamesrevenue.com^$third-party (easylistchina+easylist.txt: 36325) -.gamesrevenue.com -# ||gamesbannerexchange.com^$third-party (easylistchina+easylist.txt: 36324) -.gamesbannerexchange.com -# ||gamersbanner.com^$third-party (easylistchina+easylist.txt: 36323) -.gamersbanner.com -# ||gamersad.com^$third-party (easylistchina+easylist.txt: 36322) -.gamersad.com -# ||gamehotus.com^$third-party (easylistchina+easylist.txt: 36321) -.gamehotus.com -# ||gamecetera.com^$third-party (easylistchina+easylist.txt: 36320) -.gamecetera.com -# ||gameads.com^$third-party (easylistchina+easylist.txt: 36319) -.gameads.com -# ||game-clicks.com^$third-party (easylistchina+easylist.txt: 36318) -.game-clicks.com -# ||game-advertising-online.com^$third-party (easylistchina+easylist.txt: 36317) -.game-advertising-online.com -# ||gambling-affiliation.com^$third-party (easylistchina+easylist.txt: 36316) -.gambling-affiliation.com -# ||galleyn.com^$third-party (easylistchina+easylist.txt: 36315) -.galleyn.com -# ||gainmoneyfast.com^$third-party (easylistchina+easylist.txt: 36314) -.gainmoneyfast.com -# ||gagenez.com^$third-party (easylistchina+easylist.txt: 36313) -.gagenez.com -# ||gagacon.com^$third-party (easylistchina+easylist.txt: 36312) -.gagacon.com -# ||g4whisperermedia.com^$third-party (easylistchina+easylist.txt: 36311) -.g4whisperermedia.com -# ||g-cash.biz^$third-party (easylistchina+easylist.txt: 36310) -.g-cash.biz -# ||fxyc0dwa.com^$third-party (easylistchina+easylist.txt: 36309) -.fxyc0dwa.com -# ||fxdepo.com^$third-party (easylistchina+easylist.txt: 36308) -.fxdepo.com -# ||fwmrm.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 36307) -.fwmrm.net -# ||futureus.com^$third-party (easylistchina+easylist.txt: 36306) -.futureus.com -# ||futureresiduals.com^$third-party (easylistchina+easylist.txt: 36305) -.futureresiduals.com -# ||fusionads.net^$third-party (easylistchina+easylist.txt: 36304) -.fusionads.net -# ||funklicks.com^$third-party (easylistchina+easylist.txt: 36303) -.funklicks.com -# ||fulltraffic.net^$third-party (easylistchina+easylist.txt: 36302) -.fulltraffic.net -# ||ftv-publicite.fr^$third-party (easylistchina+easylist.txt: 36301) -.ftv-publicite.fr -# ||ftjcfx.com^$third-party (easylistchina+easylist.txt: 36300) -.ftjcfx.com -# ||fruitkings.com^$third-party (easylistchina+easylist.txt: 36299) -.fruitkings.com -# ||fromfriendswithlove.com^$third-party (easylistchina+easylist.txt: 36298) -.fromfriendswithlove.com -# ||friendlyduck.com^$third-party (easylistchina+easylist.txt: 36297) -.friendlyduck.com -# ||fresh8.co^$third-party (easylistchina+easylist.txt: 36296) -.fresh8.co -# ||freesoftwarelive.com^$third-party (easylistchina+easylist.txt: 36295) -.freesoftwarelive.com -# ||freeskreen.com^$third-party (easylistchina+easylist.txt: 36294) -.freeskreen.com -# ||freerotator.com^$third-party (easylistchina+easylist.txt: 36293) -.freerotator.com -# ||freepaidsurveyz.com^$third-party (easylistchina+easylist.txt: 36292) -.freepaidsurveyz.com -# ||freedownloadsoft.net^$third-party (easylistchina+easylist.txt: 36291) -.freedownloadsoft.net -# ||freecouponbiz.com^$third-party (easylistchina+easylist.txt: 36290) -.freecouponbiz.com -# ||freebiesurveys.com^$third-party (easylistchina+easylist.txt: 36289) -.freebiesurveys.com -# ||freebannerswap.co.uk^$third-party (easylistchina+easylist.txt: 36288) -.freebannerswap.co.uk -# ||frameptp.com^$third-party (easylistchina+easylist.txt: 36287) -.frameptp.com -# ||forrestersurveys.com^$third-party (easylistchina+easylist.txt: 36286) -.forrestersurveys.com -# ||forpyke.com^$third-party (easylistchina+easylist.txt: 36285) -.forpyke.com -# ||forifiha.com^$third-party (easylistchina+easylist.txt: 36284) -.forifiha.com -# ||forexyard.com^$third-party (easylistchina+easylist.txt: 36283) -.forexyard.com -# ||forex-affiliate.net^$third-party (easylistchina+easylist.txt: 36282) -.forex-affiliate.net -# ||forex-affiliate.com^$third-party (easylistchina+easylist.txt: 36281) -.forex-affiliate.com -# ||forcepprofile.com^$third-party (easylistchina+easylist.txt: 36280) -.forcepprofile.com -# ||forced-lose.de^$third-party (easylistchina+easylist.txt: 36279) -.forced-lose.de -# ||footnote.com^$third-party (easylistchina+easylist.txt: 36278) -.footnote.com -# ||footerslideupad.com^$third-party (easylistchina+easylist.txt: 36277) -.footerslideupad.com -# ||footar.com^$third-party (easylistchina+easylist.txt: 36276) -.footar.com -# ||foonad.com^$third-party (easylistchina+easylist.txt: 36275) -.foonad.com -# ||foodieblogroll.com^$third-party (easylistchina+easylist.txt: 36274) -.foodieblogroll.com -# ||focre.info^$third-party (easylistchina+easylist.txt: 36273) -.focre.info -# ||focalex.com^$third-party (easylistchina+easylist.txt: 36272) -.focalex.com -# ||fmsads.com^$third-party (easylistchina+easylist.txt: 36271) -.fmsads.com -# ||fmpub.net^$third-party (easylistchina+easylist.txt: 36270) -.fmpub.net -# ||flymyads.com^$third-party (easylistchina+easylist.txt: 36269) -.flymyads.com -# ||flyertown.ca^$third-party (easylistchina+easylist.txt: 36268) -.flyertown.ca -# ||fluxads.com^$third-party (easylistchina+easylist.txt: 36267) -.fluxads.com -# ||fluidads.co^$third-party (easylistchina+easylist.txt: 36266) -.fluidads.co -# ||flomigo.com^$third-party (easylistchina+easylist.txt: 36265) -.flomigo.com -# ||flodonas.com^$third-party (easylistchina+easylist.txt: 36264) -.flodonas.com -# ||fllwert.net^$third-party (easylistchina+easylist.txt: 36263) -.fllwert.net -# ||flite.com^$third-party (easylistchina+easylist.txt: 36262) -.flite.com -# ||fliionos.co.uk^$third-party (easylistchina+easylist.txt: 36261) -.fliionos.co.uk -# ||flexlinks.com^$third-party (easylistchina+easylist.txt: 36260) -.flexlinks.com -# ||flashtalking.com^$third-party (easylistchina+easylist.txt: 36259) -.flashtalking.com -# ||flashclicks.com^$third-party (easylistchina+easylist.txt: 36258) -.flashclicks.com -# ||flappysquid.net^$third-party (easylistchina+easylist.txt: 36257) -.flappysquid.net -# ||flappyhamster.net^$third-party (easylistchina+easylist.txt: 36256) -.flappyhamster.net -# ||flappybadger.net^$third-party (easylistchina+easylist.txt: 36255) -.flappybadger.net -# ||flagads.net^$third-party (easylistchina+easylist.txt: 36254) -.flagads.net -# ||fl-ads.com^$third-party (easylistchina+easylist.txt: 36253) -.fl-ads.com -# ||fixionmedia.com^$third-party (easylistchina+easylist.txt: 36252) -.fixionmedia.com -# ||fisari.com^$third-party (easylistchina+easylist.txt: 36251) -.fisari.com -# ||firstlightera.com^$third-party (easylistchina+easylist.txt: 36250) -.firstlightera.com -# ||firstimpression.io^$third-party (easylistchina+easylist.txt: 36249) -.firstimpression.io -# ||firstadsolution.com^$third-party (easylistchina+easylist.txt: 36248) -.firstadsolution.com -# ||first-rate.com^$third-party (easylistchina+easylist.txt: 36247) -.first-rate.com -# ||firmharborlinked.com^$third-party (easylistchina+easylist.txt: 36246) -.firmharborlinked.com -# ||firegob.com^$third-party (easylistchina+easylist.txt: 36245) -.firegob.com -# ||firefeeder.com^$third-party (easylistchina+easylist.txt: 36244) -.firefeeder.com -# ||firaxtech.com^$third-party (easylistchina+easylist.txt: 36243) -.firaxtech.com -# ||findsthat.com^$third-party (easylistchina+easylist.txt: 36242) -.findsthat.com -# ||findbestsolution.net^$third-party (easylistchina+easylist.txt: 36241) -.findbestsolution.net -# ||find-cheap-hotels.org^$third-party (easylistchina+easylist.txt: 36240) -.find-cheap-hotels.org -# ||find-abc.com^$third-party (easylistchina+easylist.txt: 36239) -.find-abc.com -# ||finalanypar.link^$third-party (easylistchina+easylist.txt: 36238) -.finalanypar.link -# ||fimserve.com^$third-party (easylistchina+easylist.txt: 36237) -.fimserve.com -# ||filtermomosearch.com^$third-party (easylistchina+easylist.txt: 36236) -.filtermomosearch.com -# ||filetarget.com^$third-party (easylistchina+easylist.txt: 36235) -.filetarget.com -# ||fidel.to^$third-party (easylistchina+easylist.txt: 36234) -.fidel.to -# ||fenixm.com^$third-party (easylistchina+easylist.txt: 36233) -.fenixm.com -# ||feljack.com^$third-party (easylistchina+easylist.txt: 36232) -.feljack.com -# ||feed-ads.com^$third-party (easylistchina+easylist.txt: 36231) -.feed-ads.com -# ||featurelink.com^$third-party (easylistchina+easylist.txt: 36230) -.featurelink.com -# ||featuredusers.com^$third-party (easylistchina+easylist.txt: 36229) -.featuredusers.com -# ||fbsvu.com^$third-party (easylistchina+easylist.txt: 36228) -.fbsvu.com -# ||fbgdc.com^$third-party (easylistchina+easylist.txt: 36227) -.fbgdc.com -# ||fb-plus.com^$third-party (easylistchina+easylist.txt: 36226) -.fb-plus.com -# ||fasttracktech.biz^$third-party (easylistchina+easylist.txt: 36225) -.fasttracktech.biz -# ||fastclick.net^$third-party (easylistchina+easylist.txt: 36224) -.fastclick.net -# ||fastates.net^$third-party (easylistchina+easylist.txt: 36223) -.fastates.net -# ||fastapi.net^$third-party (easylistchina+easylist.txt: 36222) -.fastapi.net -# ||fast2earn.com^$third-party (easylistchina+easylist.txt: 36221) -.fast2earn.com -# ||falkag.net^$third-party (easylistchina+easylist.txt: 36220) -.falkag.net -# ||fairadsnetwork.com^$third-party (easylistchina+easylist.txt: 36219) -.fairadsnetwork.com -# ||faggrim.com^$third-party (easylistchina+easylist.txt: 36218) -.faggrim.com -# ||ezoic.net^$third-party (easylistchina+easylist.txt: 36217) -.ezoic.net -# ||ezmob.com^$third-party (easylistchina+easylist.txt: 36216) -.ezmob.com -# ||ezadserver.net^$third-party (easylistchina+easylist.txt: 36215) -.ezadserver.net -# ||eyewonder.com^$third-party (easylistchina+easylist.txt: 36214) -.eyewonder.com -# ||eyewond.hs.llnwd.net^$third-party (easylistchina+easylist.txt: 36213) -.eyewond.hs.llnwd.net -# ||eyeviewads.com^$third-party (easylistchina+easylist.txt: 36212) -.eyeviewads.com -# ||eyereturn.com^$third-party (easylistchina+easylist.txt: 36211) -.eyereturn.com -# ||eyere.com^$third-party (easylistchina+easylist.txt: 36210) -.eyere.com -# ||extra33.com^$third-party (easylistchina+easylist.txt: 36209) -.extra33.com -# ||expresswebtraffic.com^$third-party (easylistchina+easylist.txt: 36208) -.expresswebtraffic.com -# ||exponential.com^$third-party (easylistchina+easylist.txt: 36207) -.exponential.com -# ||explainidentifycoding.info^$third-party (easylistchina+easylist.txt: 36206) -.explainidentifycoding.info -# ||exoneratedresignation.info^$third-party (easylistchina+easylist.txt: 36205) -.exoneratedresignation.info -# ||exoclick.com^$third-party (easylistchina+easylist.txt: 36204) -.exoclick.com -# ||exitjunction.com^$third-party (easylistchina+easylist.txt: 36203) -.exitjunction.com -# ||exitexplosion.com^$third-party (easylistchina+easylist.txt: 36202) -.exitexplosion.com -# ||exchange4media.com^$third-party (easylistchina+easylist.txt: 36201) -.exchange4media.com -# ||excellenceads.com^$third-party (easylistchina+easylist.txt: 36200) -.excellenceads.com -# ||exactdrive.com^$third-party (easylistchina+easylist.txt: 36199) -.exactdrive.com -# ||evolvenation.com^$third-party (easylistchina+easylist.txt: 36198) -.evolvenation.com -# ||evolvemediallc.com^$third-party (easylistchina+easylist.txt: 36197) -.evolvemediallc.com -# ||euz.net^$third-party (easylistchina+easylist.txt: 36196) -.euz.net -# ||euros4click.de^$third-party (easylistchina+easylist.txt: 36195) -.euros4click.de -# ||europacash.com^$third-party (easylistchina+easylist.txt: 36194) -.europacash.com -# ||euroclick.com^$third-party (easylistchina+easylist.txt: 36193) -.euroclick.com -# ||eurew.com^$third-party (easylistchina+easylist.txt: 36192) -.eurew.com -# ||etology.com^$third-party (easylistchina+easylist.txt: 36191) -.etology.com -# ||etmanly.ru^$third-party (easylistchina+easylist.txt: 36190) -.etmanly.ru -# ||etgdta.com^$third-party (easylistchina+easylist.txt: 36189) -.etgdta.com -# ||etargetnet.com^$third-party (easylistchina+easylist.txt: 36188) -.etargetnet.com -# ||essaycoupons.com^$third-party (easylistchina+easylist.txt: 36187) -.essaycoupons.com -# ||essayads.com^$third-party (easylistchina+easylist.txt: 36186) -.essayads.com -# ||especifican.com^$third-party (easylistchina+easylist.txt: 36185) -.especifican.com -# ||escokuro.com^$third-party (easylistchina+easylist.txt: 36184) -.escokuro.com -# ||escale.to^$third-party (easylistchina+easylist.txt: 36183) -.escale.to -# ||escalatenetwork.com^$third-party (easylistchina+easylist.txt: 36182) -.escalatenetwork.com -# ||erovinmo.com^$third-party (easylistchina+easylist.txt: 36181) -.erovinmo.com -# ||erovation.com^$third-party (easylistchina+easylist.txt: 36180) -.erovation.com -# ||ero-advertising.com^$third-party (easylistchina+easylist.txt: 36179) -.ero-advertising.com -# ||ergoledo.com^$third-party (easylistchina+easylist.txt: 36178) -.ergoledo.com -# ||ergodob.ru^$third-party (easylistchina+easylist.txt: 36177) -.ergodob.ru -# ||ergerww.net^$third-party (easylistchina+easylist.txt: 36176) -.ergerww.net -# ||erendri.com^$third-party (easylistchina+easylist.txt: 36175) -.erendri.com -# ||erado.org^$third-party (easylistchina+easylist.txt: 36174) -.erado.org -# ||eqads.com^$third-party (easylistchina+easylist.txt: 36173) -.eqads.com -# ||eptum.com^$third-party (easylistchina+easylist.txt: 36172) -.eptum.com -# ||eptord.com^$third-party (easylistchina+easylist.txt: 36171) -.eptord.com -# ||epnredirect.ru^$third-party (easylistchina+easylist.txt: 36170) -.epnredirect.ru -# ||epicgameads.com^$third-party (easylistchina+easylist.txt: 36169) -.epicgameads.com -# ||eosads.com^$third-party (easylistchina+easylist.txt: 36168) -.eosads.com -# ||entrecard.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 36167) -.entrecard.s3.amazonaws.com -# ||entrecard.com^$third-party (easylistchina+easylist.txt: 36166) -.entrecard.com -# ||enterads.com^$third-party (easylistchina+easylist.txt: 36165) -.enterads.com -# ||enlnks.com^$third-party (easylistchina+easylist.txt: 36164) -.enlnks.com -# ||engineseeker.com^$third-party (easylistchina+easylist.txt: 36163) -.engineseeker.com -# ||emptyspaceads.com^$third-party (easylistchina+easylist.txt: 36162) -.emptyspaceads.com -# ||employers-freshly.org^$third-party (easylistchina+easylist.txt: 36161) -.employers-freshly.org -# ||empiremoney.com^$third-party (easylistchina+easylist.txt: 36160) -.empiremoney.com -# ||emediate.se^$third-party (easylistchina+easylist.txt: 36159) -.emediate.se -# ||emediate.eu^$third-party (easylistchina+easylist.txt: 36158) -.emediate.eu -# ||emediate.dk^$third-party (easylistchina+easylist.txt: 36157) -.emediate.dk -# ||emediate.ch^$third-party (easylistchina+easylist.txt: 36156) -.emediate.ch -# ||emberads.com^$third-party (easylistchina+easylist.txt: 36155) -.emberads.com -# ||elvate.net^$third-party (easylistchina+easylist.txt: 36154) -.elvate.net -# ||elefantsearch.com^$third-party (easylistchina+easylist.txt: 36153) -.elefantsearch.com -# ||electnext.com^$third-party (easylistchina+easylist.txt: 36152) -.electnext.com -# ||elasticad.net^$third-party (easylistchina+easylist.txt: 36151) -.elasticad.net -# ||ektezis.ru^$third-party (easylistchina+easylist.txt: 36150) -.ektezis.ru -# ||ekmas.com^$third-party (easylistchina+easylist.txt: 36149) -.ekmas.com -# ||egamingonline.com^$third-party (easylistchina+easylist.txt: 36148) -.egamingonline.com -# ||effectivemeasure.net^$third-party (easylistchina+easylist.txt: 36147) -.effectivemeasure.net -# ||eedr.org^$third-party (easylistchina+easylist.txt: 36146) -.eedr.org -# ||edomz.net^$third-party (easylistchina+easylist.txt: 36145) -.edomz.net -# ||edgevertise.com^$third-party (easylistchina+easylist.txt: 36144) -.edgevertise.com -# ||edgeads.org^$third-party (easylistchina+easylist.txt: 36143) -.edgeads.org -# ||ecpmrocks.com^$third-party (easylistchina+easylist.txt: 36142) -.ecpmrocks.com -# ||ebz.io^$third-party (easylistchina+easylist.txt: 36141) -.ebz.io -# ||ebuzzing.com^$third-party (easylistchina+easylist.txt: 36140) -.ebuzzing.com -# ||eblastengine.com^$third-party (easylistchina+easylist.txt: 36139) -.eblastengine.com -# ||ebayobjects.com^$third-party (easylistchina+easylist.txt: 36138) -.ebayobjects.com -# ||ebayobjects.com.au^$third-party (easylistchina+easylist.txt: 36137) -.ebayobjects.com.au -# ||ebannertraffic.com^$third-party (easylistchina+easylist.txt: 36136) -.ebannertraffic.com -# ||easyinline.com^$third-party (easylistchina+easylist.txt: 36135) -.easyinline.com -# ||easyhits4u.com^$third-party (easylistchina+easylist.txt: 36134) -.easyhits4u.com -# ||easyflirt-partners.biz^$third-party (easylistchina+easylist.txt: 36133) -.easyflirt-partners.biz -# ||easydownload4you.com^$third-party (easylistchina+easylist.txt: 36132) -.easydownload4you.com -# ||easyad.com^$third-party (easylistchina+easylist.txt: 36131) -.easyad.com -# ||easy-adserver.com^$third-party (easylistchina+easylist.txt: 36130) -.easy-adserver.com -# ||earnify.com^$third-party (easylistchina+easylist.txt: 36129) -.earnify.com -# ||eads.to^$third-party (easylistchina+easylist.txt: 36128) -.eads.to -# ||eads-adserving.com^$third-party (easylistchina+easylist.txt: 36127) -.eads-adserving.com -# ||e9mlrvy1.com^$third-party (easylistchina+easylist.txt: 36126) -.e9mlrvy1.com -# ||e2yth.tv^$third-party (easylistchina+easylist.txt: 36125) -.e2yth.tv -# ||e-viral.com^$third-party (easylistchina+easylist.txt: 36124) -.e-viral.com -# ||e-planning.net^$third-party (easylistchina+easylist.txt: 36123) -.e-planning.net -# ||e-generator.com^$third-party (easylistchina+easylist.txt: 36122) -.e-generator.com -# ||e-find.co^$third-party (easylistchina+easylist.txt: 36121) -.e-find.co -# ||dynamitedata.com^$third-party (easylistchina+easylist.txt: 36120) -.dynamitedata.com -# ||dynamicoxygen.com^$third-party (easylistchina+easylist.txt: 36119) -.dynamicoxygen.com -# ||dyino.com^$third-party (easylistchina+easylist.txt: 36118) -.dyino.com -# ||dvaminusodin.net^$third-party (easylistchina+easylist.txt: 36117) -.dvaminusodin.net -# ||durtz.com^$third-party (easylistchina+easylist.txt: 36116) -.durtz.com -# ||durokuro.com^$third-party (easylistchina+easylist.txt: 36115) -.durokuro.com -# ||durnowar.com^$third-party (easylistchina+easylist.txt: 36114) -.durnowar.com -# ||dumedia.ru^$third-party (easylistchina+easylist.txt: 36113) -.dumedia.ru -# ||duggiads.com^$third-party (easylistchina+easylist.txt: 36112) -.duggiads.com -# ||duetads.com^$third-party (easylistchina+easylist.txt: 36111) -.duetads.com -# ||dudelsa.com^$third-party (easylistchina+easylist.txt: 36110) -.dudelsa.com -# ||dualmarket.info^$third-party (easylistchina+easylist.txt: 36109) -.dualmarket.info -# ||dtzads.com^$third-party (easylistchina+easylist.txt: 36108) -.dtzads.com -# ||dtmpub.com^$third-party (easylistchina+easylist.txt: 36107) -.dtmpub.com -# ||dsultra.com^$third-party (easylistchina+easylist.txt: 36104) -.dsultra.com -# ||dsnr-affiliates.com^$third-party (easylistchina+easylist.txt: 36103) -.dsnr-affiliates.com -# ||dsnextgen.com^$third-party (easylistchina+easylist.txt: 36102) -.dsnextgen.com -# ||dsero.net^$third-party (easylistchina+easylist.txt: 36101) -.dsero.net -# ||drowle.com^$third-party (easylistchina+easylist.txt: 36100) -.drowle.com -# ||dreamsearch.or.kr^$third-party (easylistchina+easylist.txt: 36099) -.dreamsearch.or.kr -# ||dreamaquarium.com^$third-party (easylistchina+easylist.txt: 36098) -.dreamaquarium.com -# ||dpstack.com^$third-party (easylistchina+easylist.txt: 36097) -.dpstack.com -# ||dpsrexor.com^$third-party (easylistchina+easylist.txt: 36096) -.dpsrexor.com -# ||dpmsrv.com^$third-party (easylistchina+easylist.txt: 36095) -.dpmsrv.com -# ||dpbolvw.net^$third-party (easylistchina+easylist.txt: 36094) -.dpbolvw.net -# ||dp25.kr^$third-party (easylistchina+easylist.txt: 36093) -.dp25.kr -# ||downsonglyrics.com^$third-party (easylistchina+easylist.txt: 36092) -.downsonglyrics.com -# ||downloadboutique.com^$third-party (easylistchina+easylist.txt: 36091) -.downloadboutique.com -# ||down1oads.com^$third-party (easylistchina+easylist.txt: 36090) -.down1oads.com -# ||doubleverify.com^$third-party (easylistchina+easylist.txt: 36089) -.doubleverify.com -# ||doublerecall.com^$third-party (easylistchina+easylist.txt: 36088) -.doublerecall.com -# ||doublerads.com^$third-party (easylistchina+easylist.txt: 36087) -.doublerads.com -# ||doublepimp.com^$third-party (easylistchina+easylist.txt: 36086) -.doublepimp.com -# ||doublemax.net^$third-party (easylistchina+easylist.txt: 36085) -.doublemax.net -# ||doubleclicks.me^$third-party (easylistchina+easylist.txt: 36084) -.doubleclicks.me -# ||doubleclickbygoogle.com^$third-party (easylistchina+easylist.txt: 36083) -.doubleclickbygoogle.com -# ||doubleclick.net^*;afv_flvurl=http://cdn.c.ooyala.com/$third-party (easylistchina+easylist.txt: 36082) -.doubleclick.net/.*;afv_flvurl=http://cdn\.c\.ooyala\.com/ -# ||doubleclick.net^*/pfadx/team.sd/$third-party (easylistchina+easylist.txt: 36081) -.doubleclick.net/.*/pfadx/team\.sd/ -# ||doubleclick.net^*/pfadx/team.dal/$third-party (easylistchina+easylist.txt: 36080) -.doubleclick.net/.*/pfadx/team\.dal/ -# ||doubleclick.net^*/pfadx/team.car/$third-party (easylistchina+easylist.txt: 36079) -.doubleclick.net/.*/pfadx/team\.car/ -# ||doubleclick.net^*/pfadx/ssp.wews/$third-party (easylistchina+easylist.txt: 36078) -.doubleclick.net/.*/pfadx/ssp\.wews/ -# ||doubleclick.net^*/pfadx/muzumain/$third-party (easylistchina+easylist.txt: 36077) -.doubleclick.net/.*/pfadx/muzumain/ -# ||doubleclick.net^*/pfadx/ibs.orl.news/$third-party (easylistchina+easylist.txt: 36076) -.doubleclick.net/.*/pfadx/ibs\.orl\.news/ -# ||doubleclick.net^*/pfadx/embed.ytpwatch.$third-party (easylistchina+easylist.txt: 36075) -.doubleclick.net/.*/pfadx/embed\.ytpwatch\. -# ||doubleclick.net^*/pfadx/com.ytpwatch.$third-party (easylistchina+easylist.txt: 36074) -.doubleclick.net/.*/pfadx/com\.ytpwatch\. -# ||doubleclick.net^*/pfadx/cmn_complextv/$third-party (easylistchina+easylist.txt: 36073) -.doubleclick.net/.*/pfadx/cmn_complextv/ -# ||doubleclick.net^*/pfadx/ccr.newyork.$third-party (easylistchina+easylist.txt: 36072) -.doubleclick.net/.*/pfadx/ccr\.newyork\. -# ||doubleclick.net^*/adj/$~object-subrequest,third-party (easylistchina+easylist.txt: 36071) -.doubleclick.net/.*/adj/ -# ||doubleclick.net^*/adi/$~object-subrequest,third-party (easylistchina+easylist.txt: 36070) -.doubleclick.net/.*/adi/ -# ||doubleclick.net^*/ad/$~object-subrequest,third-party (easylistchina+easylist.txt: 36069) -.doubleclick.net/.*/ad/ -# ||doubleclick.net/xbbe/creative/vast? (easylistchina+easylist.txt: 36067) -.doubleclick.net/xbbe/creative/vast\? -# ||doubleclick.net/pfadx/www.tv3.co.nz$third-party (easylistchina+easylist.txt: 36066) -.doubleclick.net/pfadx/www\.tv3\.co\.nz -# ||doubleclick.net/pfadx/video.wsj.com/$third-party (easylistchina+easylist.txt: 36065) -.doubleclick.net/pfadx/video\.wsj\.com/ -# ||doubleclick.net/pfadx/video.marketwatch.com/$third-party (easylistchina+easylist.txt: 36064) -.doubleclick.net/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/pfadx/ugo.gv.1up/$third-party (easylistchina+easylist.txt: 36063) -.doubleclick.net/pfadx/ugo\.gv\.1up/ -# ||doubleclick.net/pfadx/trb.$third-party (easylistchina+easylist.txt: 36062) -.doubleclick.net/pfadx/trb\. -# ||doubleclick.net/pfadx/tmz.video.wb.dart/$third-party (easylistchina+easylist.txt: 36061) -.doubleclick.net/pfadx/tmz\.video\.wb\.dart/ -# ||doubleclick.net/pfadx/tmg.telegraph.$third-party (easylistchina+easylist.txt: 36060) -.doubleclick.net/pfadx/tmg\.telegraph\. -# ||doubleclick.net/pfadx/sugar.poptv/$third-party (easylistchina+easylist.txt: 36059) -.doubleclick.net/pfadx/sugar\.poptv/ -# ||doubleclick.net/pfadx/storm.no/$third-party (easylistchina+easylist.txt: 36058) -.doubleclick.net/pfadx/storm\.no/ -# ||doubleclick.net/pfadx/ssp.kgtv/$third-party (easylistchina+easylist.txt: 36057) -.doubleclick.net/pfadx/ssp\.kgtv/ -# ||doubleclick.net/pfadx/ng.videoplayer/$third-party (easylistchina+easylist.txt: 36056) -.doubleclick.net/pfadx/ng\.videoplayer/ -# ||doubleclick.net/pfadx/nfl.$third-party (easylistchina+easylist.txt: 36055) -.doubleclick.net/pfadx/nfl\. -# ||doubleclick.net/pfadx/ndm.tcm/$third-party (easylistchina+easylist.txt: 36054) -.doubleclick.net/pfadx/ndm\.tcm/ -# ||doubleclick.net/pfadx/nbcu.nhl/$third-party (easylistchina+easylist.txt: 36053) -.doubleclick.net/pfadx/nbcu\.nhl/ -# ||doubleclick.net/pfadx/nbcu.nhl.$third-party (easylistchina+easylist.txt: 36052) -.doubleclick.net/pfadx/nbcu\.nhl\. -# ||doubleclick.net/pfadx/nbcu.nbc/$third-party (easylistchina+easylist.txt: 36051) -.doubleclick.net/pfadx/nbcu\.nbc/ -# ||doubleclick.net/pfadx/muzuoffsite/$third-party (easylistchina+easylist.txt: 36050) -.doubleclick.net/pfadx/muzuoffsite/ -# ||doubleclick.net/pfadx/muzumain/$third-party (easylistchina+easylist.txt: 36049) -.doubleclick.net/pfadx/muzumain/ -# ||doubleclick.net/pfadx/miniclip.prevideo/$third-party (easylistchina+easylist.txt: 36048) -.doubleclick.net/pfadx/miniclip\.prevideo/ -# ||doubleclick.net/pfadx/miniclip.midvideo/$third-party (easylistchina+easylist.txt: 36047) -.doubleclick.net/pfadx/miniclip\.midvideo/ -# ||doubleclick.net/pfadx/mc.channelnewsasia.com^$third-party (easylistchina+easylist.txt: 36046) -.doubleclick.net/pfadx/mc\.channelnewsasia\.com[^\w%.-] -# ||doubleclick.net/pfadx/ltv.wtvr.video/$third-party (easylistchina+easylist.txt: 36045) -.doubleclick.net/pfadx/ltv\.wtvr\.video/ -# ||doubleclick.net/pfadx/intl.sps.com/$third-party (easylistchina+easylist.txt: 36044) -.doubleclick.net/pfadx/intl\.sps\.com/ -# ||doubleclick.net/pfadx/gn.movieweb.com/$third-party (easylistchina+easylist.txt: 36043) -.doubleclick.net/pfadx/gn\.movieweb\.com/ -# ||doubleclick.net/pfadx/ddm.ksl/$third-party (easylistchina+easylist.txt: 36042) -.doubleclick.net/pfadx/ddm\.ksl/ -# ||doubleclick.net/pfadx/ctv.spacecast/$third-party (easylistchina+easylist.txt: 36041) -.doubleclick.net/pfadx/ctv\.spacecast/ -# ||doubleclick.net/pfadx/ctv.muchmusic.com/$third-party (easylistchina+easylist.txt: 36040) -.doubleclick.net/pfadx/ctv\.muchmusic\.com/ -# ||doubleclick.net/pfadx/ctv.ctvwatch.ca/$third-party (easylistchina+easylist.txt: 36039) -.doubleclick.net/pfadx/ctv\.ctvwatch\.ca/ -# ||doubleclick.net/pfadx/csn.$third-party (easylistchina+easylist.txt: 36038) -.doubleclick.net/pfadx/csn\. -# ||doubleclick.net/pfadx/comedycentral.$third-party (easylistchina+easylist.txt: 36037) -.doubleclick.net/pfadx/comedycentral\. -# ||doubleclick.net/pfadx/ccr.$third-party (easylistchina+easylist.txt: 36036) -.doubleclick.net/pfadx/ccr\. -# ||doubleclick.net/pfadx/CBS.$third-party (easylistchina+easylist.txt: 36035) -.doubleclick.net/pfadx/CBS\. -# ||doubleclick.net/pfadx/cblvsn.nwsd.videogallery/$third-party (easylistchina+easylist.txt: 36034) -.doubleclick.net/pfadx/cblvsn\.nwsd\.videogallery/ -# ||doubleclick.net/pfadx/bzj.bizjournals/$third-party (easylistchina+easylist.txt: 36033) -.doubleclick.net/pfadx/bzj\.bizjournals/ -# ||doubleclick.net/pfadx/blp.video/midroll$third-party (easylistchina+easylist.txt: 36032) -.doubleclick.net/pfadx/blp\.video/midroll -# ||doubleclick.net/pfadx/bet.com/$third-party (easylistchina+easylist.txt: 36031) -.doubleclick.net/pfadx/bet\.com/ -# ||doubleclick.net/pfadx/belo.king5.pre/$third-party (easylistchina+easylist.txt: 36030) -.doubleclick.net/pfadx/belo\.king5\.pre/ -# ||doubleclick.net/pfadx/aetn.aetv.shows/$third-party (easylistchina+easylist.txt: 36029) -.doubleclick.net/pfadx/aetn\.aetv\.shows/ -# ||doubleclick.net/pfadx/*CBSINTERACTIVE/$third-party (easylistchina+easylist.txt: 36028) -.doubleclick.net/pfadx/.*CBSINTERACTIVE/ -# ||doubleclick.net/pfadx/*adcat=$third-party (easylistchina+easylist.txt: 36027) -.doubleclick.net/pfadx/.*adcat= -# ||doubleclick.net/pfadx/*/kidstv/$third-party (easylistchina+easylist.txt: 36026) -.doubleclick.net/pfadx/.*/kidstv/ -# ||doubleclick.net/pfadx/*.WALTDISNEYINTERNETGROU/$third-party (easylistchina+easylist.txt: 36025) -.doubleclick.net/pfadx/.*\.WALTDISNEYINTERNETGROU/ -# ||doubleclick.net/pfadx/*.VIACOMINTERNATIONAL/$third-party (easylistchina+easylist.txt: 36024) -.doubleclick.net/pfadx/.*\.VIACOMINTERNATIONAL/ -# ||doubleclick.net/pfadx/*.sevenload.com_$third-party (easylistchina+easylist.txt: 36023) -.doubleclick.net/pfadx/.*\.sevenload\.com_ -# ||doubleclick.net/pfadx/*.reuters/$third-party (easylistchina+easylist.txt: 36022) -.doubleclick.net/pfadx/.*\.reuters/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL/$third-party (easylistchina+easylist.txt: 36021) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL-CNBC/$third-party (easylistchina+easylist.txt: 36020) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL-CNBC/ -# ||doubleclick.net/pfadx/*.NBCUNI.COM/$third-party (easylistchina+easylist.txt: 36019) -.doubleclick.net/pfadx/.*\.NBCUNI\.COM/ -# ||doubleclick.net/pfadx/*.nbc.com/$third-party (easylistchina+easylist.txt: 36018) -.doubleclick.net/pfadx/.*\.nbc\.com/ -# ||doubleclick.net/pfadx/*.muzu/$third-party (easylistchina+easylist.txt: 36017) -.doubleclick.net/pfadx/.*\.muzu/ -# ||doubleclick.net/pfadx/*.mtvi$third-party (easylistchina+easylist.txt: 36016) -.doubleclick.net/pfadx/.*\.mtvi -# ||doubleclick.net/pfadx/*.MTV-Viacom/$third-party (easylistchina+easylist.txt: 36015) -.doubleclick.net/pfadx/.*\.MTV-Viacom/ -# ||doubleclick.net/pfadx/*.MCNONLINE/$third-party (easylistchina+easylist.txt: 36014) -.doubleclick.net/pfadx/.*\.MCNONLINE/ -# ||doubleclick.net/pfadx/*.ESPN/$third-party (easylistchina+easylist.txt: 36013) -.doubleclick.net/pfadx/.*\.ESPN/ -# ||doubleclick.net/pfadx/*.BLIPTV/$third-party (easylistchina+easylist.txt: 36012) -.doubleclick.net/pfadx/.*\.BLIPTV/ -# ||doubleclick.net/pfadx/*.ABC.com/$third-party (easylistchina+easylist.txt: 36011) -.doubleclick.net/pfadx/.*\.ABC\.com/ -# ||doubleclick.net/N6872/pfadx/shaw.mylifetimetv.ca/$third-party (easylistchina+easylist.txt: 36010) -.doubleclick.net/N6872/pfadx/shaw\.mylifetimetv\.ca/ -# ||doubleclick.net/N6088/pfadx/ssp.kshb/$third-party (easylistchina+easylist.txt: 36009) -.doubleclick.net/N6088/pfadx/ssp\.kshb/ -# ||doubleclick.net/N5479/pfadx/ctv.$third-party (easylistchina+easylist.txt: 36008) -.doubleclick.net/N5479/pfadx/ctv\. -# ||doubleclick.net/N5202/pfadx/cmn_livemixtapes/$third-party (easylistchina+easylist.txt: 36007) -.doubleclick.net/N5202/pfadx/cmn_livemixtapes/ -# ||doubleclick.net/N4526/pfadx/*.muzu/$third-party (easylistchina+easylist.txt: 36006) -.doubleclick.net/N4526/pfadx/.*\.muzu/ -# ||doubleclick.net/N4117/pfadx/*.sbs.com.au/$third-party (easylistchina+easylist.txt: 36005) -.doubleclick.net/N4117/pfadx/.*\.sbs\.com\.au/ -# ||doubleclick.net/N3626/pfadx/thehothits.com.au/$third-party (easylistchina+easylist.txt: 36004) -.doubleclick.net/N3626/pfadx/thehothits\.com\.au/ -# ||doubleclick.net/N2/pfadx/video.wsj.com/$third-party (easylistchina+easylist.txt: 36003) -.doubleclick.net/N2/pfadx/video\.wsj\.com/ -# ||doubleclick.net/N2/pfadx/video.marketwatch.com/ (easylistchina+easylist.txt: 36002) -.doubleclick.net/N2/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/N2/pfadx/video.allthingsd.com/$third-party (easylistchina+easylist.txt: 36001) -.doubleclick.net/N2/pfadx/video\.allthingsd\.com/ -# ||doubleclick.net/N2/pfadx/video.*.wsj.com/$third-party (easylistchina+easylist.txt: 36000) -.doubleclick.net/N2/pfadx/video\..*\.wsj\.com/ -# ||doubleclick.net/adx/wn.nat.$third-party (easylistchina+easylist.txt: 35998) -.doubleclick.net/adx/wn\.nat\. -# ||doubleclick.net/adx/wn.loc.$third-party (easylistchina+easylist.txt: 35997) -.doubleclick.net/adx/wn\.loc\. -# ||doubleclick.net/adx/tsg.$third-party (easylistchina+easylist.txt: 35996) -.doubleclick.net/adx/tsg\. -# ||doubleclick.net/adx/ibs.$third-party (easylistchina+easylist.txt: 35995) -.doubleclick.net/adx/ibs\. -# ||doubleclick.net/adx/CBS.$third-party (easylistchina+easylist.txt: 35994) -.doubleclick.net/adx/CBS\. -# ||doubleclick.net/adx/*.ted/$third-party (easylistchina+easylist.txt: 35993) -.doubleclick.net/adx/.*\.ted/ -# ||doubleclick.net/adx/*.NPR/$third-party (easylistchina+easylist.txt: 35992) -.doubleclick.net/adx/.*\.NPR/ -# ||doubleclick.net/adx/*.NPR.MUSIC/$third-party (easylistchina+easylist.txt: 35991) -.doubleclick.net/adx/.*\.NPR\.MUSIC/ -# ||doubleclick.net/adx/*.collegehumor/$third-party (easylistchina+easylist.txt: 35990) -.doubleclick.net/adx/.*\.collegehumor/ -# ||doubleclick.net/adx/$~object-subrequest,third-party (easylistchina+easylist.txt: 35989) -.doubleclick.net/adx/ -# ||doubleclick.net/adj/*.collegehumor/sec=videos_originalcontent;$third-party (easylistchina+easylist.txt: 35988) -.doubleclick.net/adj/.*\.collegehumor/sec=videos_originalcontent; -# ||doubleclick.net/adj/$~object-subrequest,third-party (easylistchina+easylist.txt: 35987) -.doubleclick.net/adj/ -# ||doubleclick.net/adi/$~object-subrequest,third-party (easylistchina+easylist.txt: 35986) -.doubleclick.net/adi/ -# ||doubleclick.net/ad/$third-party (easylistchina+easylist.txt: 35985) -.doubleclick.net/ad/ -# ||doubleclick.net/*/pfadx/lin.$third-party (easylistchina+easylist.txt: 35984) -.doubleclick.net/.*/pfadx/lin\. -# ||doubleclick.net/*/ch_news.com/$third-party (easylistchina+easylist.txt: 35983) -.doubleclick.net/.*/ch_news\.com/ -# ||doubleclick.com^$third-party (easylistchina+easylist.txt: 35982) -.doubleclick.com -# ||double.net^$third-party (easylistchina+easylist.txt: 35981) -.double.net -# ||dotandad.com^$third-party (easylistchina+easylist.txt: 35980) -.dotandad.com -# ||dorenga.com^$third-party (easylistchina+easylist.txt: 35979) -.dorenga.com -# ||doomail.org^$third-party (easylistchina+easylist.txt: 35978) -.doomail.org -# ||doogleonduty.com^$third-party (easylistchina+easylist.txt: 35977) -.doogleonduty.com -# ||dooc.info^$third-party (easylistchina+easylist.txt: 35976) -.dooc.info -# ||domdex.com^$third-party (easylistchina+easylist.txt: 35975) -.domdex.com -# ||domainsponsor.com^$third-party (easylistchina+easylist.txt: 35974) -.domainsponsor.com -# ||domainbuyingservices.com^$third-party (easylistchina+easylist.txt: 35973) -.domainbuyingservices.com -# ||domainadvertising.com^$third-party (easylistchina+easylist.txt: 35972) -.domainadvertising.com -# ||dollarsponsor.com^$third-party (easylistchina+easylist.txt: 35971) -.dollarsponsor.com -# ||dollarade.com^$third-party (easylistchina+easylist.txt: 35970) -.dollarade.com -# ||document4u.info^$third-party (easylistchina+easylist.txt: 35969) -.document4u.info -# ||dntrck.com^$third-party (easylistchina+easylist.txt: 35968) -.dntrck.com -# ||dmu20vut.com^$third-party (easylistchina+easylist.txt: 35967) -.dmu20vut.com -# ||dl-rms.com^$third-party (easylistchina+easylist.txt: 35966) -.dl-rms.com -# ||dj-updates.com^$third-party (easylistchina+easylist.txt: 35965) -.dj-updates.com -# ||districtm.ca^$third-party (easylistchina+easylist.txt: 35964) -.districtm.ca -# ||distilled.ie^$third-party (easylistchina+easylist.txt: 35963) -.distilled.ie -# ||dispop.com^$third-party (easylistchina+easylist.txt: 35962) -.dispop.com -# ||directtrk.com^$third-party (easylistchina+easylist.txt: 35961) -.directtrk.com -# ||directtrack.com^$third-party (easylistchina+easylist.txt: 35960) -.directtrack.com -# ||directrev.com^$third-party (easylistchina+easylist.txt: 35959) -.directrev.com -# ||directorym.com^$third-party (easylistchina+easylist.txt: 35958) -.directorym.com -# ||directoral.info^$third-party (easylistchina+easylist.txt: 35957) -.directoral.info -# ||directleads.com^$third-party (easylistchina+easylist.txt: 35956) -.directleads.com -# ||directile.net^$third-party (easylistchina+easylist.txt: 35955) -.directile.net -# ||directile.info^$third-party (easylistchina+easylist.txt: 35954) -.directile.info -# ||directaclick.com^$third-party (easylistchina+easylist.txt: 35953) -.directaclick.com -# ||dipads.net^$~image,third-party (easylistchina+easylist.txt: 35952) -.dipads.net -# ||dinclinx.com^$third-party (easylistchina+easylist.txt: 35951) -.dinclinx.com -# ||digitrevenue.com^$third-party (easylistchina+easylist.txt: 35950) -.digitrevenue.com -# ||digipathmedia.com^$third-party (easylistchina+easylist.txt: 35949) -.digipathmedia.com -# ||dianomioffers.co.uk^$third-party (easylistchina+easylist.txt: 35948) -.dianomioffers.co.uk -# ||diamondtraff.com^$third-party (easylistchina+easylist.txt: 35947) -.diamondtraff.com -# ||dhundora.com^$third-party (easylistchina+easylist.txt: 35946) -.dhundora.com -# ||dgmaxinteractive.com^$third-party (easylistchina+easylist.txt: 35945) -.dgmaxinteractive.com -# ||dgmaustralia.com^$third-party (easylistchina+easylist.txt: 35944) -.dgmaustralia.com -# ||dgmatix.com^$third-party (easylistchina+easylist.txt: 35943) -.dgmatix.com -# ||dexplatform.com^$third-party (easylistchina+easylist.txt: 35942) -.dexplatform.com -# ||deximedia.com^$third-party (easylistchina+easylist.txt: 35941) -.deximedia.com -# ||developermedia.com^$third-party (easylistchina+easylist.txt: 35940) -.developermedia.com -# ||detroposal.com^$third-party (easylistchina+easylist.txt: 35939) -.detroposal.com -# ||destinationurl.com^$third-party (easylistchina+easylist.txt: 35938) -.destinationurl.com -# ||derlatas.com^$third-party (easylistchina+easylist.txt: 35937) -.derlatas.com -# ||deriversal.com^$third-party (easylistchina+easylist.txt: 35936) -.deriversal.com -# ||deployads.com^$third-party (easylistchina+easylist.txt: 35935) -.deployads.com -# ||deplayer.net^$third-party (easylistchina+easylist.txt: 35934) -.deplayer.net -# ||delnapb.com^$third-party (easylistchina+easylist.txt: 35933) -.delnapb.com -# ||delivery51.com^$third-party (easylistchina+easylist.txt: 35932) -.delivery51.com -# ||delivery49.com^$third-party (easylistchina+easylist.txt: 35931) -.delivery49.com -# ||delivery47.com^$third-party (easylistchina+easylist.txt: 35930) -.delivery47.com -# ||delivery45.com^$third-party (easylistchina+easylist.txt: 35929) -.delivery45.com -# ||dehtale.ru^$third-party (easylistchina+easylist.txt: 35928) -.dehtale.ru -# ||deguiste.com^$third-party (easylistchina+easylist.txt: 35927) -.deguiste.com -# ||defaultimg.com^$third-party (easylistchina+easylist.txt: 35926) -.defaultimg.com -# ||deepmetrix.com^$third-party (easylistchina+easylist.txt: 35925) -.deepmetrix.com -# ||dedicatednetworks.com^$third-party (easylistchina+easylist.txt: 35924) -.dedicatednetworks.com -# ||dedicatedmedia.com^$third-party (easylistchina+easylist.txt: 35923) -.dedicatedmedia.com -# ||decknetwork.net^$third-party (easylistchina+easylist.txt: 35922) -.decknetwork.net -# ||decisionnews.com^$third-party (easylistchina+easylist.txt: 35921) -.decisionnews.com -# ||decisionmark.com^$third-party (easylistchina+easylist.txt: 35920) -.decisionmark.com -# ||dealcurrent.com^$third-party (easylistchina+easylist.txt: 35919) -.dealcurrent.com -# ||dbclix.com^$third-party (easylistchina+easylist.txt: 35918) -.dbclix.com -# ||dbbsrv.com^$third-party (easylistchina+easylist.txt: 35917) -.dbbsrv.com -# ||dazhantai.com^$third-party (easylistchina+easylist.txt: 35916) -.dazhantai.com -# ||datumreact.com^$third-party (easylistchina+easylist.txt: 35915) -.datumreact.com -# ||datinggold.com^$third-party (easylistchina+easylist.txt: 35914) -.datinggold.com -# ||dating-banners.com^$third-party (easylistchina+easylist.txt: 35913) -.dating-banners.com -# ||data.adroll.com^$third-party (easylistchina+easylist.txt: 35912) -.data.adroll.com -# ||dashboardad.net^$third-party (easylistchina+easylist.txt: 35911) -.dashboardad.net -# ||dashbida.com^$third-party (easylistchina+easylist.txt: 35910) -.dashbida.com -# ||das5ku9q.com^$third-party (easylistchina+easylist.txt: 35909) -.das5ku9q.com -# ||darwarvid.com^$third-party (easylistchina+easylist.txt: 35908) -.darwarvid.com -# ||dapper.net^$third-party (easylistchina+easylist.txt: 35907) -.dapper.net -# ||danitabedtick.net^$third-party (easylistchina+easylist.txt: 35906) -.danitabedtick.net -# ||dadegid.ru^$third-party (easylistchina+easylist.txt: 35905) -.dadegid.ru -# ||da-ads.com^$third-party (easylistchina+easylist.txt: 35904) -.da-ads.com -# ||d2ship.com^$third-party (easylistchina+easylist.txt: 35903) -.d2ship.com -# ||d1110e4.se^$third-party (easylistchina+easylist.txt: 35902) -.d1110e4.se -# ||d03x2011.com^$third-party (easylistchina+easylist.txt: 35901) -.d03x2011.com -# ||d.m3.net^$third-party (easylistchina+easylist.txt: 35900) -.d.m3.net -# ||d.adroll.com^$third-party (easylistchina+easylist.txt: 35899) -.d.adroll.com -# ||czasnaherbate.info^$third-party (easylistchina+easylist.txt: 35898) -.czasnaherbate.info -# ||cygnus.com^$third-party (easylistchina+easylist.txt: 35897) -.cygnus.com -# ||cybmas.com^$third-party (easylistchina+easylist.txt: 35896) -.cybmas.com -# ||curtisfrierson.com^$third-party (easylistchina+easylist.txt: 35895) -.curtisfrierson.com -# ||currentlyobsessed.me^$third-party (easylistchina+easylist.txt: 35894) -.currentlyobsessed.me -# ||curancience.com^$third-party (easylistchina+easylist.txt: 35893) -.curancience.com -# ||cuelinks.com^$third-party (easylistchina+easylist.txt: 35892) -.cuelinks.com -# ||cubics.com^$third-party (easylistchina+easylist.txt: 35891) -.cubics.com -# ||ctrhub.com^$third-party (easylistchina+easylist.txt: 35890) -.ctrhub.com -# ||ctm-media.com^$third-party (easylistchina+easylist.txt: 35889) -.ctm-media.com -# ||ctenetwork.com^$third-party (easylistchina+easylist.txt: 35888) -.ctenetwork.com -# ||ctasnet.com^$third-party (easylistchina+easylist.txt: 35887) -.ctasnet.com -# ||cruiseworldinc.com^$third-party (easylistchina+easylist.txt: 35886) -.cruiseworldinc.com -# ||cruftexcision.xyz^$third-party (easylistchina+easylist.txt: 35885) -.cruftexcision.xyz -# ||crowdgravity.com^$third-party (easylistchina+easylist.txt: 35884) -.crowdgravity.com -# ||crowdgatheradnetwork.com^$third-party (easylistchina+easylist.txt: 35883) -.crowdgatheradnetwork.com -# ||crossrider.com^$third-party (easylistchina+easylist.txt: 35882) -.crossrider.com -# ||crispads.com^$third-party (easylistchina+easylist.txt: 35881) -.crispads.com -# ||creditcards15x.tk^$third-party (easylistchina+easylist.txt: 35880) -.creditcards15x.tk -# ||creative-serving.com^$third-party (easylistchina+easylist.txt: 35879) -.creative-serving.com -# ||crazyvideosempire.com^$third-party (easylistchina+easylist.txt: 35878) -.crazyvideosempire.com -# ||crazylead.com^$third-party (easylistchina+easylist.txt: 35877) -.crazylead.com -# ||crakmedia.com^$third-party (easylistchina+easylist.txt: 35876) -.crakmedia.com -# ||cpxinteractive.com^$third-party (easylistchina+easylist.txt: 35875) -.cpxinteractive.com -# ||cpxadroit.com^$third-party (easylistchina+easylist.txt: 35874) -.cpxadroit.com -# ||cpx24.com^$third-party (easylistchina+easylist.txt: 35873) -.cpx24.com -# ||cpvtgt.com^$third-party (easylistchina+easylist.txt: 35872) -.cpvtgt.com -# ||cpvmarketplace.info^$third-party (easylistchina+easylist.txt: 35871) -.cpvmarketplace.info -# ||cpvadvertise.com^$third-party (easylistchina+easylist.txt: 35870) -.cpvadvertise.com -# ||cpvads.com^$third-party (easylistchina+easylist.txt: 35869) -.cpvads.com -# ||cpulaptop.com^$third-party (easylistchina+easylist.txt: 35868) -.cpulaptop.com -# ||cpuim.com^$third-party (easylistchina+easylist.txt: 35867) -.cpuim.com -# ||cpmtree.com^$third-party (easylistchina+easylist.txt: 35866) -.cpmtree.com -# ||cpmstar.com^$third-party (easylistchina+easylist.txt: 35865) -.cpmstar.com -# ||cpmrocket.com^$third-party (easylistchina+easylist.txt: 35864) -.cpmrocket.com -# ||cpmmedia.net^$third-party (easylistchina+easylist.txt: 35863) -.cpmmedia.net -# ||cpmleader.com^$third-party (easylistchina+easylist.txt: 35862) -.cpmleader.com -# ||cpmaffiliation.com^$third-party (easylistchina+easylist.txt: 35861) -.cpmaffiliation.com -# ||cpmadvisors.com^$third-party (easylistchina+easylist.txt: 35860) -.cpmadvisors.com -# ||cpm.biz^$third-party (easylistchina+easylist.txt: 35859) -.cpm.biz -# ||cpfclassifieds.com^$third-party (easylistchina+easylist.txt: 35858) -.cpfclassifieds.com -# ||cpcadnet.com^$third-party (easylistchina+easylist.txt: 35857) -.cpcadnet.com -# ||cpays.com^$third-party (easylistchina+easylist.txt: 35856) -.cpays.com -# ||cpaway.com^$third-party (easylistchina+easylist.txt: 35855) -.cpaway.com -# ||cpanuk.com^$third-party (easylistchina+easylist.txt: 35854) -.cpanuk.com -# ||cpalock.com^$third-party (easylistchina+easylist.txt: 35853) -.cpalock.com -# ||cpalead.com^$third-party (easylistchina+easylist.txt: 35852) -.cpalead.com -# ||cpagrip.com^$third-party (easylistchina+easylist.txt: 35851) -.cpagrip.com -# ||cpaclickz.com^$third-party (easylistchina+easylist.txt: 35850) -.cpaclickz.com -# ||cpaclicks.com^$third-party (easylistchina+easylist.txt: 35849) -.cpaclicks.com -# ||cpabeyond.com^$third-party (easylistchina+easylist.txt: 35848) -.cpabeyond.com -# ||covertarget.com^*_*.php (easylistchina+easylist.txt: 35847) -.covertarget.com/.*_.*\.php -# ||coupon2buy.com^$third-party (easylistchina+easylist.txt: 35846) -.coupon2buy.com -# ||coull.com^$third-party (easylistchina+easylist.txt: 35845) -.coull.com -# ||cosmjs.com^$third-party (easylistchina+easylist.txt: 35844) -.cosmjs.com -# ||cornflip.com^$third-party (easylistchina+easylist.txt: 35843) -.cornflip.com -# ||coretarget.co.uk^$third-party (easylistchina+easylist.txt: 35842) -.coretarget.co.uk -# ||cor-natty.com^$third-party (easylistchina+easylist.txt: 35841) -.cor-natty.com -# ||copacet.com^$third-party (easylistchina+easylist.txt: 35840) -.copacet.com -# ||coolmirage.com^$third-party (easylistchina+easylist.txt: 35839) -.coolmirage.com -# ||coolerads.com^$third-party (easylistchina+easylist.txt: 35838) -.coolerads.com -# ||contextweb.com^$third-party (easylistchina+easylist.txt: 35837) -.contextweb.com -# ||contextuads.com^$third-party (easylistchina+easylist.txt: 35836) -.contextuads.com -# ||contextads.net^$third-party (easylistchina+easylist.txt: 35835) -.contextads.net -# ||contexlink.se^$third-party (easylistchina+easylist.txt: 35834) -.contexlink.se -# ||contentwidgets.net^$third-party (easylistchina+easylist.txt: 35833) -.contentwidgets.net -# ||contenture.com^$third-party (easylistchina+easylist.txt: 35832) -.contenture.com -# ||contentjs.com^$third-party (easylistchina+easylist.txt: 35831) -.contentjs.com -# ||contentdigital.info^$third-party (easylistchina+easylist.txt: 35830) -.contentdigital.info -# ||contentclick.co.uk^$third-party (easylistchina+easylist.txt: 35829) -.contentclick.co.uk -# ||content.ad^$third-party (easylistchina+easylist.txt: 35828) -.content.ad -# ||content-cooperation.com^$third-party (easylistchina+easylist.txt: 35827) -.content-cooperation.com -# ||contaxe.com^$third-party (easylistchina+easylist.txt: 35826) -.contaxe.com -# ||contadd.com^$third-party (easylistchina+easylist.txt: 35825) -.contadd.com -# ||consumergenepool.com^$third-party (easylistchina+easylist.txt: 35824) -.consumergenepool.com -# ||construment.com^$third-party (easylistchina+easylist.txt: 35823) -.construment.com -# ||connextra.com^$third-party (easylistchina+easylist.txt: 35822) -.connextra.com -# ||connexplace.com^$third-party (easylistchina+easylist.txt: 35821) -.connexplace.com -# ||connexity.net^$third-party (easylistchina+easylist.txt: 35820) -.connexity.net -# ||connectionads.com^$third-party (easylistchina+easylist.txt: 35819) -.connectionads.com -# ||connectedads.net^$third-party (easylistchina+easylist.txt: 35818) -.connectedads.net -# ||connatix.com^$third-party (easylistchina+easylist.txt: 35817) -.connatix.com -# ||conduit-services.com^$third-party (easylistchina+easylist.txt: 35816) -.conduit-services.com -# ||conduit-banners.com^$third-party (easylistchina+easylist.txt: 35815) -.conduit-banners.com -# ||comscore.com^$third-party (easylistchina+easylist.txt: 35814) -.comscore.com -# ||complive.link^$third-party (easylistchina+easylist.txt: 35813) -.complive.link -# ||completecarrd.com^$third-party (easylistchina+easylist.txt: 35812) -.completecarrd.com -# ||commissionmonster.com^$third-party (easylistchina+easylist.txt: 35811) -.commissionmonster.com -# ||commissionlounge.com^$third-party (easylistchina+easylist.txt: 35810) -.commissionlounge.com -# ||commissionfactory.com.au^$third-party (easylistchina+easylist.txt: 35809) -.commissionfactory.com.au -# ||commission.bz^$third-party (easylistchina+easylist.txt: 35808) -.commission.bz -# ||commission-junction.com^$third-party (easylistchina+easylist.txt: 35807) -.commission-junction.com -# ||comclick.com^$third-party (easylistchina+easylist.txt: 35806) -.comclick.com -# ||colliersads.com^$third-party (easylistchina+easylist.txt: 35805) -.colliersads.com -# ||collective-media.net^$third-party (easylistchina+easylist.txt: 35804) -.collective-media.net -# ||collection-day.com^$third-party (easylistchina+easylist.txt: 35803) -.collection-day.com -# ||coinadvert.net^$third-party (easylistchina+easylist.txt: 35802) -.coinadvert.net -# ||coguan.com^$third-party (easylistchina+easylist.txt: 35801) -.coguan.com -# ||cogsdigital.com^$third-party (easylistchina+easylist.txt: 35800) -.cogsdigital.com -# ||cogocast.net^$third-party (easylistchina+easylist.txt: 35799) -.cogocast.net -# ||coedmediagroup.com^$third-party (easylistchina+easylist.txt: 35798) -.coedmediagroup.com -# ||codigobarras.net^$third-party (easylistchina+easylist.txt: 35797) -.codigobarras.net -# ||codezap.com^$third-party (easylistchina+easylist.txt: 35796) -.codezap.com -# ||coadvertise.com^$third-party (easylistchina+easylist.txt: 35795) -.coadvertise.com -# ||cntdy.mobi^$third-party (easylistchina+easylist.txt: 35794) -.cntdy.mobi -# ||cnt.my^$third-party (easylistchina+easylist.txt: 35793) -.cnt.my -# ||cmllk1.info^$third-party (easylistchina+easylist.txt: 35792) -.cmllk1.info -# ||cmfads.com^$third-party (easylistchina+easylist.txt: 35791) -.cmfads.com -# ||clz3.net^$third-party (easylistchina+easylist.txt: 35790) -.clz3.net -# ||cltomedia.info^$third-party (easylistchina+easylist.txt: 35789) -.cltomedia.info -# ||cloudioo.net^$third-party (easylistchina+easylist.txt: 35788) -.cloudioo.net -# ||clnk.me^$third-party (easylistchina+easylist.txt: 35787) -.clnk.me -# ||clkrev.com^ (easylistchina+easylist.txt: 35786) -.clkrev.com -# ||clixtrac.com^$third-party (easylistchina+easylist.txt: 35785) -.clixtrac.com -# ||clixsense.com^$third-party (easylistchina+easylist.txt: 35784) -.clixsense.com -# ||clixgalore.com^$third-party (easylistchina+easylist.txt: 35783) -.clixgalore.com -# ||clickzxc.com^$third-party (easylistchina+easylist.txt: 35782) -.clickzxc.com -# ||clickxchange.com^$third-party (easylistchina+easylist.txt: 35781) -.clickxchange.com -# ||clickwinks.com^$third-party (easylistchina+easylist.txt: 35780) -.clickwinks.com -# ||clickupto.com^$third-party (easylistchina+easylist.txt: 35779) -.clickupto.com -# ||clicktripz.com^$third-party (easylistchina+easylist.txt: 35778) -.clicktripz.com -# ||clicktripz.co^$third-party (easylistchina+easylist.txt: 35777) -.clicktripz.co -# ||clickthrucash.com^$third-party (easylistchina+easylist.txt: 35776) -.clickthrucash.com -# ||clickterra.net^$third-party (easylistchina+easylist.txt: 35775) -.clickterra.net -# ||clicksurvey.mobi^$third-party (easylistchina+easylist.txt: 35774) -.clicksurvey.mobi -# ||clicksor.net^$third-party (easylistchina+easylist.txt: 35773) -.clicksor.net -# ||clicksor.com^$third-party (easylistchina+easylist.txt: 35772) -.clicksor.com -# ||clicks2count.com^$third-party (easylistchina+easylist.txt: 35771) -.clicks2count.com -# ||clickosmedia.com^$third-party (easylistchina+easylist.txt: 35770) -.clickosmedia.com -# ||clicknano.com^$third-party (easylistchina+easylist.txt: 35769) -.clicknano.com -# ||clickmyads.info^$third-party (easylistchina+easylist.txt: 35768) -.clickmyads.info -# ||clickkingdom.net^$third-party (easylistchina+easylist.txt: 35767) -.clickkingdom.net -# ||clickiocdn.com^$third-party (easylistchina+easylist.txt: 35766) -.clickiocdn.com -# ||clickintext.net^$third-party (easylistchina+easylist.txt: 35765) -.clickintext.net -# ||clickintext.com^$third-party (easylistchina+easylist.txt: 35764) -.clickintext.com -# ||clickfuse.com^$third-party (easylistchina+easylist.txt: 35763) -.clickfuse.com -# ||clickexperts.net^$third-party (easylistchina+easylist.txt: 35762) -.clickexperts.net -# ||clickexa.com^$third-party (easylistchina+easylist.txt: 35761) -.clickexa.com -# ||clickequations.net^$third-party (easylistchina+easylist.txt: 35760) -.clickequations.net -# ||clickcertain.com^$third-party (easylistchina+easylist.txt: 35759) -.clickcertain.com -# ||clickcash.com^$third-party (easylistchina+easylist.txt: 35758) -.clickcash.com -# ||clickbubbles.net^$third-party (easylistchina+easylist.txt: 35757) -.clickbubbles.net -# ||clickboothlnk.com^$third-party (easylistchina+easylist.txt: 35756) -.clickboothlnk.com -# ||clickbooth.com^$third-party (easylistchina+easylist.txt: 35755) -.clickbooth.com -# ||clickbet88.com^$third-party (easylistchina+easylist.txt: 35754) -.clickbet88.com -# ||clickagy.com^$third-party (easylistchina+easylist.txt: 35753) -.clickagy.com -# ||clickad.pl^$third-party (easylistchina+easylist.txt: 35752) -.clickad.pl -# ||clickable.com^$third-party (easylistchina+easylist.txt: 35751) -.clickable.com -# ||click4free.info^$third-party (easylistchina+easylist.txt: 35750) -.click4free.info -# ||click2jump.com^$third-party (easylistchina+easylist.txt: 35749) -.click2jump.com -# ||click.scour.com^$third-party (easylistchina+easylist.txt: 35748) -.click.scour.com -# ||clevv.com^$third-party (easylistchina+easylist.txt: 35747) -.clevv.com -# ||clente.com^$third-party (easylistchina+easylist.txt: 35746) -.clente.com -# ||clear-request.com^$third-party (easylistchina+easylist.txt: 35745) -.clear-request.com -# ||cleafs.com^$third-party (easylistchina+easylist.txt: 35744) -.cleafs.com -# ||cldlr.com^$third-party (easylistchina+easylist.txt: 35743) -.cldlr.com -# ||clayaim.com^$third-party (easylistchina+easylist.txt: 35742) -.clayaim.com -# ||claxonmedia.com^$third-party (easylistchina+easylist.txt: 35741) -.claxonmedia.com -# ||clash-media.com^$third-party (easylistchina+easylist.txt: 35740) -.clash-media.com -# ||clarityray.com^$third-party (easylistchina+easylist.txt: 35739) -.clarityray.com -# ||cjt1.net^$third-party (easylistchina+easylist.txt: 35738) -.cjt1.net -# ||citysite.net^$third-party (easylistchina+easylist.txt: 35737) -.citysite.net -# ||city-ads.de^$third-party (easylistchina+easylist.txt: 35736) -.city-ads.de -# ||cibleclick.com^$third-party (easylistchina+easylist.txt: 35735) -.cibleclick.com -# ||chronicads.com^$third-party (easylistchina+easylist.txt: 35734) -.chronicads.com -# ||chitika.net^$third-party (easylistchina+easylist.txt: 35733) -.chitika.net -# ||chitika.com^$third-party (easylistchina+easylist.txt: 35732) -.chitika.com -# ||chipleader.com^$third-party (easylistchina+easylist.txt: 35731) -.chipleader.com -# ||chinagrad.ru^$third-party (easylistchina+easylist.txt: 35730) -.chinagrad.ru -# ||china-netwave.com^$third-party (easylistchina+easylist.txt: 35729) -.china-netwave.com -# ||chicbuy.info^$third-party (easylistchina+easylist.txt: 35728) -.chicbuy.info -# ||cherytso.com^$third-party (easylistchina+easylist.txt: 35727) -.cherytso.com -# ||checkoutfree.com^$third-party (easylistchina+easylist.txt: 35726) -.checkoutfree.com -# ||checkmystats.com.au^$third-party (easylistchina+easylist.txt: 35725) -.checkmystats.com.au -# ||checkm8.com^$third-party (easylistchina+easylist.txt: 35724) -.checkm8.com -# ||charltonmedia.com^$third-party (easylistchina+easylist.txt: 35723) -.charltonmedia.com -# ||chanished.net^$third-party (easylistchina+easylist.txt: 35722) -.chanished.net -# ||chango.com^$third-party (easylistchina+easylist.txt: 35721) -.chango.com -# ||chameleon.ad^$third-party (easylistchina+easylist.txt: 35720) -.chameleon.ad -# ||cgecwm.org^$third-party (easylistchina+easylist.txt: 35719) -.cgecwm.org -# ||cerotop.com^$third-party (easylistchina+easylist.txt: 35718) -.cerotop.com -# ||centralnervous.net^$third-party (easylistchina+easylist.txt: 35717) -.centralnervous.net -# ||cdnservr.com^$third-party (easylistchina+easylist.txt: 35716) -.cdnservr.com -# ||cdnrl.com^$third-party (easylistchina+easylist.txt: 35715) -.cdnrl.com -# ||cdnads.com^$third-party (easylistchina+easylist.txt: 35714) -.cdnads.com -# ||cdna.tremormedia.com^$third-party (easylistchina+easylist.txt: 35713) -.cdna.tremormedia.com -# ||cdn.mobicow.com^$third-party (easylistchina+easylist.txt: 35712) -.cdn.mobicow.com -# ||cdn-image.com^$third-party (easylistchina+easylist.txt: 35711) -.cdn-image.com -# ||cd828.com^$third-party (easylistchina+easylist.txt: 35710) -.cd828.com -# ||cc-dt.com^$third-party (easylistchina+easylist.txt: 35709) -.cc-dt.com -# ||cbn.tbn.ru^$third-party (easylistchina+easylist.txt: 35708) -.cbn.tbn.ru -# ||cbleads.com^$third-party (easylistchina+easylist.txt: 35707) -.cbleads.com -# ||cbclicks.com^$third-party (easylistchina+easylist.txt: 35706) -.cbclicks.com -# ||cbclickbank.com^$third-party (easylistchina+easylist.txt: 35705) -.cbclickbank.com -# ||cbaazars.com^$third-party (easylistchina+easylist.txt: 35704) -.cbaazars.com -# ||cb-content.com^$third-party (easylistchina+easylist.txt: 35703) -.cb-content.com -# ||caygh.com^$third-party (easylistchina+easylist.txt: 35702) -.caygh.com -# ||castplatform.com^$third-party (easylistchina+easylist.txt: 35701) -.castplatform.com -# ||casterpretic.com^$third-party (easylistchina+easylist.txt: 35700) -.casterpretic.com -# ||caspion.com^$third-party (easylistchina+easylist.txt: 35699) -.caspion.com -# ||casino-zilla.com^$third-party (easylistchina+easylist.txt: 35698) -.casino-zilla.com -# ||cashworld.biz^$third-party (easylistchina+easylist.txt: 35697) -.cashworld.biz -# ||cashtrafic.info^$third-party (easylistchina+easylist.txt: 35696) -.cashtrafic.info -# ||cashtrafic.com^$third-party (easylistchina+easylist.txt: 35695) -.cashtrafic.com -# ||cashonvisit.com^$third-party (easylistchina+easylist.txt: 35694) -.cashonvisit.com -# ||cashmylinks.com^$third-party (easylistchina+easylist.txt: 35693) -.cashmylinks.com -# ||cashatgsc.com^$third-party (easylistchina+easylist.txt: 35692) -.cashatgsc.com -# ||cash4members.com^$third-party (easylistchina+easylist.txt: 35691) -.cash4members.com -# ||cash-duck.com^$third-party (easylistchina+easylist.txt: 35690) -.cash-duck.com -# ||casalemedia.com^$third-party (easylistchina+easylist.txt: 35689) -.casalemedia.com -# ||cartorkins.com^$third-party (easylistchina+easylist.txt: 35688) -.cartorkins.com -# ||carrier.bz^$third-party (easylistchina+easylist.txt: 35687) -.carrier.bz -# ||cardincraping.net^$third-party (easylistchina+easylist.txt: 35686) -.cardincraping.net -# ||carbonads.com^$third-party (easylistchina+easylist.txt: 35685) -.carbonads.com -# ||captifymedia.com^$third-party (easylistchina+easylist.txt: 35684) -.captifymedia.com -# ||captainad.com^$third-party (easylistchina+easylist.txt: 35683) -.captainad.com -# ||capitatmarket.com^$third-party (easylistchina+easylist.txt: 35682) -.capitatmarket.com -# ||capacitygrid.com^$third-party (easylistchina+easylist.txt: 35681) -.capacitygrid.com -# ||canoeklix.com^$third-party (easylistchina+easylist.txt: 35680) -.canoeklix.com -# ||campanja.com^$third-party (easylistchina+easylist.txt: 35679) -.campanja.com -# ||camleyads.info^$third-party (easylistchina+easylist.txt: 35678) -.camleyads.info -# ||c8.net.ua^$third-party (easylistchina+easylist.txt: 35677) -.c8.net.ua -# ||c-planet.net^$third-party (easylistchina+easylist.txt: 35676) -.c-planet.net -# ||c-on-text.com^$third-party (easylistchina+easylist.txt: 35675) -.c-on-text.com -# ||byzoo.org^$third-party (easylistchina+easylist.txt: 35674) -.byzoo.org -# ||byspot.com^$third-party (easylistchina+easylist.txt: 35673) -.byspot.com -# ||bwinpartypartners.com^$third-party (easylistchina+easylist.txt: 35672) -.bwinpartypartners.com -# ||buzzparadise.com^$third-party (easylistchina+easylist.txt: 35671) -.buzzparadise.com -# ||buzzcity.net^$third-party (easylistchina+easylist.txt: 35670) -.buzzcity.net -# ||buyt.in^$third-party (easylistchina+easylist.txt: 35669) -.buyt.in -# ||buysellads.com^$third-party (easylistchina+easylist.txt: 35668) -.buysellads.com -# ||buyorselltnhomes.com^$third-party (easylistchina+easylist.txt: 35667) -.buyorselltnhomes.com -# ||buyflood.com^$third-party (easylistchina+easylist.txt: 35666) -.buyflood.com -# ||buxp.org^$third-party (easylistchina+easylist.txt: 35665) -.buxp.org -# ||buxflow.com^$third-party (easylistchina+easylist.txt: 35664) -.buxflow.com -# ||buxept.com^$third-party (easylistchina+easylist.txt: 35663) -.buxept.com -# ||busterzaster.de^$third-party (easylistchina+easylist.txt: 35662) -.busterzaster.de -# ||businessclick.com^$third-party (easylistchina+easylist.txt: 35661) -.businessclick.com -# ||businesscare.com^$third-party (easylistchina+easylist.txt: 35660) -.businesscare.com -# ||burstnet.com^$third-party (easylistchina+easylist.txt: 35659) -.burstnet.com -# ||burnsoftware.info^$third-party (easylistchina+easylist.txt: 35658) -.burnsoftware.info -# ||burjam.com^$third-party (easylistchina+easylist.txt: 35657) -.burjam.com -# ||burbanked.info^$third-party (easylistchina+easylist.txt: 35656) -.burbanked.info -# ||bunny-net.com^$third-party (easylistchina+easylist.txt: 35655) -.bunny-net.com -# ||bunchofads.com^$third-party (easylistchina+easylist.txt: 35654) -.bunchofads.com -# ||bulletproofserving.com^$third-party (easylistchina+easylist.txt: 35653) -.bulletproofserving.com -# ||buildtrafficx.com^$third-party (easylistchina+easylist.txt: 35652) -.buildtrafficx.com -# ||budurl.com^$third-party (easylistchina+easylist.txt: 35651) -.budurl.com -# ||budgetedbauer.com^$third-party (easylistchina+easylist.txt: 35650) -.budgetedbauer.com -# ||bucketsofbanners.com^$third-party (easylistchina+easylist.txt: 35649) -.bucketsofbanners.com -# ||bubblesmedia.ru^$third-party (easylistchina+easylist.txt: 35648) -.bubblesmedia.ru -# ||bu520.com^$third-party (easylistchina+easylist.txt: 35647) -.bu520.com -# ||bttrack.com^$third-party (easylistchina+easylist.txt: 35646) -.bttrack.com -# ||bttbgroup.com^$third-party (easylistchina+easylist.txt: 35645) -.bttbgroup.com -# ||btrll.com^$third-party (easylistchina+easylist.txt: 35644) -.btrll.com -# ||btnibbler.com^$third-party (easylistchina+easylist.txt: 35643) -.btnibbler.com -# ||bstrtb.com^$third-party (easylistchina+easylist.txt: 35642) -.bstrtb.com -# ||brucelead.com^$third-party (easylistchina+easylist.txt: 35641) -.brucelead.com -# ||browsersfeedback.com^$third-party (easylistchina+easylist.txt: 35640) -.browsersfeedback.com -# ||broadstreetads.com^$third-party (easylistchina+easylist.txt: 35639) -.broadstreetads.com -# ||brightshare.com^$third-party (easylistchina+easylist.txt: 35638) -.brightshare.com -# ||brighteroption.com^$third-party (easylistchina+easylist.txt: 35637) -.brighteroption.com -# ||bridgetrack.com^$third-party (easylistchina+easylist.txt: 35636) -.bridgetrack.com -# ||brealtime.com^$third-party (easylistchina+easylist.txt: 35635) -.brealtime.com -# ||breadpro.com^$third-party (easylistchina+easylist.txt: 35634) -.breadpro.com -# ||bravenetmedianetwork.com^$third-party (easylistchina+easylist.txt: 35633) -.bravenetmedianetwork.com -# ||braside.ru^$third-party (easylistchina+easylist.txt: 35632) -.braside.ru -# ||brandreachsys.com^$third-party (easylistchina+easylist.txt: 35631) -.brandreachsys.com -# ||brandclik.com^$third-party (easylistchina+easylist.txt: 35630) -.brandclik.com -# ||brandaffinity.net^$third-party (easylistchina+easylist.txt: 35629) -.brandaffinity.net -# ||brandads.net^$third-party (easylistchina+easylist.txt: 35628) -.brandads.net -# ||brand.net^$third-party (easylistchina+easylist.txt: 35627) -.brand.net -# ||brand-display.com^$third-party (easylistchina+easylist.txt: 35626) -.brand-display.com -# ||branchr.com^$third-party (easylistchina+easylist.txt: 35625) -.branchr.com -# ||brainient.com^$third-party (easylistchina+easylist.txt: 35624) -.brainient.com -# ||br.rk.com^$third-party (easylistchina+easylist.txt: 35623) -.br.rk.com -# ||bptracking.com^$third-party (easylistchina+easylist.txt: 35622) -.bptracking.com -# ||boylesportsreklame.com^$third-party (easylistchina+easylist.txt: 35621) -.boylesportsreklame.com -# ||boydadvertising.co.uk^$third-party (easylistchina+easylist.txt: 35620) -.boydadvertising.co.uk -# ||bororas.com^$third-party (easylistchina+easylist.txt: 35619) -.bororas.com -# ||bormoni.ru^$third-party (easylistchina+easylist.txt: 35618) -.bormoni.ru -# ||boostclic.com^$third-party (easylistchina+easylist.txt: 35617) -.boostclic.com -# ||boostable.com^$third-party (easylistchina+easylist.txt: 35616) -.boostable.com -# ||booklandonline.info^$third-party (easylistchina+easylist.txt: 35615) -.booklandonline.info -# ||boo-box.com^$third-party (easylistchina+easylist.txt: 35614) -.boo-box.com -# ||bonusfapturbo.com^$third-party (easylistchina+easylist.txt: 35613) -.bonusfapturbo.com -# ||bokroet.com^$third-party (easylistchina+easylist.txt: 35612) -.bokroet.com -# ||bogads.com^$third-party (easylistchina+easylist.txt: 35611) -.bogads.com -# ||bnr.sys.lv^$third-party (easylistchina+easylist.txt: 35610) -.bnr.sys.lv -# ||bnmla.com^$third-party (easylistchina+easylist.txt: 35609) -.bnmla.com -# ||bnhtml.com^$third-party (easylistchina+easylist.txt: 35608) -.bnhtml.com -# ||bnetworx.com^$third-party (easylistchina+easylist.txt: 35607) -.bnetworx.com -# ||bmanpn.com^$third-party (easylistchina+easylist.txt: 35606) -.bmanpn.com -# ||blumi.to^$third-party (easylistchina+easylist.txt: 35605) -.blumi.to -# ||bluestreak.com^$third-party (easylistchina+easylist.txt: 35604) -.bluestreak.com -# ||blueadvertise.com^$third-party (easylistchina+easylist.txt: 35603) -.blueadvertise.com -# ||blogohertz.com^$third-party (easylistchina+easylist.txt: 35602) -.blogohertz.com -# ||blogherads.com^$third-party (easylistchina+easylist.txt: 35601) -.blogherads.com -# ||bloggerex.com^$third-party (easylistchina+easylist.txt: 35600) -.bloggerex.com -# ||blogclans.com^$third-party (easylistchina+easylist.txt: 35599) -.blogclans.com -# ||blogbannerexchange.com^$third-party (easylistchina+easylist.txt: 35598) -.blogbannerexchange.com -# ||blogads.com^$third-party (easylistchina+easylist.txt: 35597) -.blogads.com -# ||blinkadr.com^$third-party (easylistchina+easylist.txt: 35596) -.blinkadr.com -# ||blardenso.com^$third-party (easylistchina+easylist.txt: 35595) -.blardenso.com -# ||blamcity.com^$third-party (easylistchina+easylist.txt: 35594) -.blamcity.com -# ||blamads.com^$third-party (easylistchina+easylist.txt: 35593) -.blamads.com -# ||bjjingda.com^$third-party (easylistchina+easylist.txt: 35592) -.bjjingda.com -# ||bizzclick.com^$third-party (easylistchina+easylist.txt: 35591) -.bizzclick.com -# ||bizrotator.com^$third-party (easylistchina+easylist.txt: 35590) -.bizrotator.com -# ||bizographics.com^$third-party (easylistchina+easylist.txt: 35589) -.bizographics.com -# ||bitx.tv^$third-party (easylistchina+easylist.txt: 35588) -.bitx.tv -# ||bittads.com^$third-party (easylistchina+easylist.txt: 35587) -.bittads.com -# ||bitfalcon.tv^$third-party (easylistchina+easylist.txt: 35586) -.bitfalcon.tv -# ||bitcoinadvertisers.com^$third-party (easylistchina+easylist.txt: 35585) -.bitcoinadvertisers.com -# ||bitads.net^$third-party (easylistchina+easylist.txt: 35584) -.bitads.net -# ||binlayer.de^$third-party (easylistchina+easylist.txt: 35583) -.binlayer.de -# ||binlayer.com^$third-party (easylistchina+easylist.txt: 35582) -.binlayer.com -# ||bingo4affiliates.com^$third-party (easylistchina+easylist.txt: 35581) -.bingo4affiliates.com -# ||binaryoptionssystems.org^$third-party (easylistchina+easylist.txt: 35580) -.binaryoptionssystems.org -# ||bin-layer.ru^$third-party (easylistchina+easylist.txt: 35579) -.bin-layer.ru -# ||bin-layer.de^$third-party (easylistchina+easylist.txt: 35578) -.bin-layer.de -# ||bimlocal.com^$third-party (easylistchina+easylist.txt: 35577) -.bimlocal.com -# ||billypub.com^$third-party (easylistchina+easylist.txt: 35576) -.billypub.com -# ||bijscode.com^$third-party (easylistchina+easylist.txt: 35575) -.bijscode.com -# ||bigfineads.com^$third-party (easylistchina+easylist.txt: 35574) -.bigfineads.com -# ||bigadpoint.net^$third-party (easylistchina+easylist.txt: 35573) -.bigadpoint.net -# ||biemedia.com^$third-party (easylistchina+easylist.txt: 35572) -.biemedia.com -# ||bidvertiser.com^$third-party (easylistchina+easylist.txt: 35571) -.bidvertiser.com -# ||bidsystem.com^$third-party (easylistchina+easylist.txt: 35570) -.bidsystem.com -# ||bidgewatr.com^$third-party (easylistchina+easylist.txt: 35569) -.bidgewatr.com -# ||bh3.net^$third-party (easylistchina+easylist.txt: 35568) -.bh3.net -# ||bfast.com^$third-party (easylistchina+easylist.txt: 35567) -.bfast.com -# ||bettingpartners.com^$third-party (easylistchina+easylist.txt: 35566) -.bettingpartners.com -# ||betrad.com^$third-party (easylistchina+easylist.txt: 35565) -.betrad.com -# ||betoga.com^$third-party (easylistchina+easylist.txt: 35564) -.betoga.com -# ||betaffs.com^$third-party (easylistchina+easylist.txt: 35563) -.betaffs.com -# ||bet365affiliates.com^$third-party (easylistchina+easylist.txt: 35562) -.bet365affiliates.com -# ||bet3000partners.com^$third-party (easylistchina+easylist.txt: 35561) -.bet3000partners.com -# ||bestpricewala.com^$third-party (easylistchina+easylist.txt: 35560) -.bestpricewala.com -# ||bestonlinecoupons.com^$third-party (easylistchina+easylist.txt: 35559) -.bestonlinecoupons.com -# ||bestofferdirect.com^$third-party (easylistchina+easylist.txt: 35558) -.bestofferdirect.com -# ||besthitsnow.com^$third-party (easylistchina+easylist.txt: 35557) -.besthitsnow.com -# ||bestgameads.com^$third-party (easylistchina+easylist.txt: 35556) -.bestgameads.com -# ||bestforexpartners.com^$third-party (easylistchina+easylist.txt: 35555) -.bestforexpartners.com -# ||bestfindsite.com^$third-party (easylistchina+easylist.txt: 35554) -.bestfindsite.com -# ||bestdeals.ws^$third-party (easylistchina+easylist.txt: 35553) -.bestdeals.ws -# ||bestcasinopartner.com^$third-party (easylistchina+easylist.txt: 35552) -.bestcasinopartner.com -# ||beringmedia.com^$third-party (easylistchina+easylist.txt: 35551) -.beringmedia.com -# ||bepolite.eu^$third-party (easylistchina+easylist.txt: 35550) -.bepolite.eu -# ||bentdownload.com^$third-party (easylistchina+easylist.txt: 35549) -.bentdownload.com -# ||belvertising.be^$third-party (easylistchina+easylist.txt: 35548) -.belvertising.be -# ||belointeractive.com^$third-party (easylistchina+easylist.txt: 35547) -.belointeractive.com -# ||begun.ru^$third-party (easylistchina+easylist.txt: 35546) -.begun.ru -# ||beforescence.com^$third-party (easylistchina+easylist.txt: 35545) -.beforescence.com -# ||befade.com^$third-party (easylistchina+easylist.txt: 35544) -.befade.com -# ||beead.net^$third-party (easylistchina+easylist.txt: 35543) -.beead.net -# ||beead.co.uk^$third-party (easylistchina+easylist.txt: 35542) -.beead.co.uk -# ||bedorm.com^$third-party (easylistchina+easylist.txt: 35541) -.bedorm.com -# ||bebi.com^$third-party (easylistchina+easylist.txt: 35540) -.bebi.com -# ||beatchucknorris.com^$third-party (easylistchina+easylist.txt: 35539) -.beatchucknorris.com -# ||beaconads.com^$third-party (easylistchina+easylist.txt: 35538) -.beaconads.com -# ||bbuni.com^$third-party (easylistchina+easylist.txt: 35537) -.bbuni.com -# ||bbelements.com^$third-party (easylistchina+easylist.txt: 35536) -.bbelements.com -# ||basebanner.com^$third-party (easylistchina+easylist.txt: 35535) -.basebanner.com -# ||baronsoffers.com^$third-party (easylistchina+easylist.txt: 35534) -.baronsoffers.com -# ||bannerweb.com^$third-party (easylistchina+easylist.txt: 35533) -.bannerweb.com -# ||bannertracker-script.com^$third-party (easylistchina+easylist.txt: 35532) -.bannertracker-script.com -# ||bannertgt.com^$third-party (easylistchina+easylist.txt: 35531) -.bannertgt.com -# ||bannersurvey.biz^$third-party (easylistchina+easylist.txt: 35530) -.bannersurvey.biz -# ||bannersnack.net^$third-party (easylistchina+easylist.txt: 35529) -.bannersnack.net -# ||bannersnack.com^$third-party (easylistchina+easylist.txt: 35528) -.bannersnack.com -# ||bannersmania.com^$third-party (easylistchina+easylist.txt: 35527) -.bannersmania.com -# ||bannerrage.com^$third-party (easylistchina+easylist.txt: 35526) -.bannerrage.com -# ||bannerperformance.net^$third-party (easylistchina+easylist.txt: 35525) -.bannerperformance.net -# ||bannerlot.com^$third-party (easylistchina+easylist.txt: 35524) -.bannerlot.com -# ||bannerjammers.com^$third-party (easylistchina+easylist.txt: 35523) -.bannerjammers.com -# ||bannerignition.co.za^$third-party (easylistchina+easylist.txt: 35522) -.bannerignition.co.za -# ||bannerflux.com^$third-party (easylistchina+easylist.txt: 35521) -.bannerflux.com -# ||bannerflow.com^$third-party (easylistchina+easylist.txt: 35520) -.bannerflow.com -# ||bannerexchange.com.au^$third-party (easylistchina+easylist.txt: 35519) -.bannerexchange.com.au -# ||bannerdealer.com^$third-party (easylistchina+easylist.txt: 35518) -.bannerdealer.com -# ||bannerconnect.net^$third-party (easylistchina+easylist.txt: 35517) -.bannerconnect.net -# ||bannerconnect.com^$third-party (easylistchina+easylist.txt: 35516) -.bannerconnect.com -# ||bannercde.com^$third-party (easylistchina+easylist.txt: 35515) -.bannercde.com -# ||bannerbridge.net^$third-party (easylistchina+easylist.txt: 35514) -.bannerbridge.net -# ||bannerblasters.com^$third-party (easylistchina+easylist.txt: 35513) -.bannerblasters.com -# ||bannerbank.ru^$third-party (easylistchina+easylist.txt: 35512) -.bannerbank.ru -# ||banner-rotation.com^$third-party (easylistchina+easylist.txt: 35511) -.banner-rotation.com -# ||banner-clix.com^$third-party (easylistchina+easylist.txt: 35510) -.banner-clix.com -# ||bananaflippy.com^$third-party (easylistchina+easylist.txt: 35509) -.bananaflippy.com -# ||baldiro.de^$third-party (easylistchina+easylist.txt: 35508) -.baldiro.de -# ||badjocks.com^$third-party (easylistchina+easylist.txt: 35507) -.badjocks.com -# ||backlinks.com^$third-party (easylistchina+easylist.txt: 35506) -.backlinks.com -# ||backbeatmedia.com^$third-party (easylistchina+easylist.txt: 35505) -.backbeatmedia.com -# ||babbnrs.com^$third-party (easylistchina+easylist.txt: 35504) -.babbnrs.com -# ||b6508157d.website^$third-party (easylistchina+easylist.txt: 35503) -.b6508157d.website -# ||b117f8da23446a91387efea0e428392a.pl^$third-party (easylistchina+easylist.txt: 35502) -.b117f8da23446a91387efea0e428392a.pl -# ||azorbe.com^$third-party (easylistchina+easylist.txt: 35501) -.azorbe.com -# ||azoogleads.com^$third-party (easylistchina+easylist.txt: 35500) -.azoogleads.com -# ||azjmp.com^$third-party (easylistchina+easylist.txt: 35499) -.azjmp.com -# ||azads.com^$third-party (easylistchina+easylist.txt: 35498) -.azads.com -# ||ayboll.com^$third-party (easylistchina+easylist.txt: 35497) -.ayboll.com -# ||axill.com^$third-party (easylistchina+easylist.txt: 35496) -.axill.com -# ||awsurveys.com^$third-party (easylistchina+easylist.txt: 35495) -.awsurveys.com -# ||awsmer.com^$third-party (easylistchina+easylist.txt: 35494) -.awsmer.com -# ||awltovhc.com^$third-party (easylistchina+easylist.txt: 35493) -.awltovhc.com -# ||awin1.com^$third-party (easylistchina+easylist.txt: 35492) -.awin1.com -# ||awempire.com^$third-party (easylistchina+easylist.txt: 35491) -.awempire.com -# ||awaps.net^$third-party (easylistchina+easylist.txt: 35490) -.awaps.net -# ||avercarto.com^$third-party (easylistchina+easylist.txt: 35489) -.avercarto.com -# ||avazutracking.net^$third-party (easylistchina+easylist.txt: 35488) -.avazutracking.net -# ||avazu.net^$third-party (easylistchina+easylist.txt: 35487) -.avazu.net -# ||avalopaly.com^$third-party (easylistchina+easylist.txt: 35486) -.avalopaly.com -# ||avalanchers.com^$third-party (easylistchina+easylist.txt: 35485) -.avalanchers.com -# ||avads.co.uk^$third-party (easylistchina+easylist.txt: 35484) -.avads.co.uk -# ||automateyourlist.com^$third-party (easylistchina+easylist.txt: 35483) -.automateyourlist.com -# ||automatedtraffic.com^$third-party (easylistchina+easylist.txt: 35482) -.automatedtraffic.com -# ||auto-insurance-quotes-compare.com^$third-party (easylistchina+easylist.txt: 35481) -.auto-insurance-quotes-compare.com -# ||auto-im.com^$third-party (easylistchina+easylist.txt: 35480) -.auto-im.com -# ||auspipe.com^$third-party (easylistchina+easylist.txt: 35479) -.auspipe.com -# ||aunmdhxrco.com^$third-party (easylistchina+easylist.txt: 35478) -.aunmdhxrco.com -# ||august15download.com^$third-party (easylistchina+easylist.txt: 35477) -.august15download.com -# ||augmentad.net^$third-party (easylistchina+easylist.txt: 35476) -.augmentad.net -# ||auditude.com^$third-party (easylistchina+easylist.txt: 35475) -.auditude.com -# ||auditoire.ph^$third-party (easylistchina+easylist.txt: 35474) -.auditoire.ph -# ||audienceprofiler.com^$third-party (easylistchina+easylist.txt: 35473) -.audienceprofiler.com -# ||audiencefuel.com^$third-party (easylistchina+easylist.txt: 35472) -.audiencefuel.com -# ||audience2media.com^$third-party (easylistchina+easylist.txt: 35471) -.audience2media.com -# ||auctionnudge.com^$third-party (easylistchina+easylist.txt: 35470) -.auctionnudge.com -# ||au2m8.com^$third-party (easylistchina+easylist.txt: 35469) -.au2m8.com -# ||atwola.com^$third-party (easylistchina+easylist.txt: 35468) -.atwola.com -# ||atrinsic.com^$third-party (easylistchina+easylist.txt: 35467) -.atrinsic.com -# ||atomex.net^$third-party (easylistchina+easylist.txt: 35466) -.atomex.net -# ||ato.mx^$third-party (easylistchina+easylist.txt: 35465) -.ato.mx -# ||atmalinks.com^$third-party (easylistchina+easylist.txt: 35464) -.atmalinks.com -# ||atemda.com^$third-party (easylistchina+easylist.txt: 35463) -.atemda.com -# ||atadserver.com^$third-party (easylistchina+easylist.txt: 35462) -.atadserver.com -# ||astree.be^$third-party (easylistchina+easylist.txt: 35461) -.astree.be -# ||asterpix.com^$third-party (easylistchina+easylist.txt: 35460) -.asterpix.com -# ||assoc-amazon.it^$third-party (easylistchina+easylist.txt: 35459) -.assoc-amazon.it -# ||assoc-amazon.fr^$third-party (easylistchina+easylist.txt: 35458) -.assoc-amazon.fr -# ||assoc-amazon.es^$third-party (easylistchina+easylist.txt: 35457) -.assoc-amazon.es -# ||assoc-amazon.de^$third-party (easylistchina+easylist.txt: 35456) -.assoc-amazon.de -# ||assoc-amazon.com^$third-party (easylistchina+easylist.txt: 35455) -.assoc-amazon.com -# ||assoc-amazon.co.uk^$third-party (easylistchina+easylist.txt: 35454) -.assoc-amazon.co.uk -# ||assoc-amazon.ca^$third-party (easylistchina+easylist.txt: 35453) -.assoc-amazon.ca -# ||assetize.com^$third-party (easylistchina+easylist.txt: 35452) -.assetize.com -# ||asrety.com^$third-party (easylistchina+easylist.txt: 35451) -.asrety.com -# ||asooda.com^$third-party (easylistchina+easylist.txt: 35450) -.asooda.com -# ||asklots.com^$third-party (easylistchina+easylist.txt: 35449) -.asklots.com -# ||aseadnet.com^$third-party (easylistchina+easylist.txt: 35448) -.aseadnet.com -# ||asafesite.com^$third-party (easylistchina+easylist.txt: 35447) -.asafesite.com -# ||as5000.com^$third-party (easylistchina+easylist.txt: 35446) -.as5000.com -# ||as-farm.com^$third-party (easylistchina+easylist.txt: 35445) -.as-farm.com -# ||arti-mediagroup.com^$third-party (easylistchina+easylist.txt: 35444) -.arti-mediagroup.com -# ||areasnap.com^$third-party (easylistchina+easylist.txt: 35443) -.areasnap.com -# ||arcadechain.com^$third-party (easylistchina+easylist.txt: 35442) -.arcadechain.com -# ||arcadebe.com^$third-party (easylistchina+easylist.txt: 35441) -.arcadebe.com -# ||arcadebanners.com^$third-party (easylistchina+easylist.txt: 35440) -.arcadebanners.com -# ||arcadebannerexchange.org^$third-party (easylistchina+easylist.txt: 35439) -.arcadebannerexchange.org -# ||arcadebannerexchange.net^$third-party (easylistchina+easylist.txt: 35438) -.arcadebannerexchange.net -# ||arabweb.biz^$third-party (easylistchina+easylist.txt: 35437) -.arabweb.biz -# ||arab4eg.com^$third-party (easylistchina+easylist.txt: 35436) -.arab4eg.com -# ||apxlv.com^$third-party (easylistchina+easylist.txt: 35435) -.apxlv.com -# ||apsmediaagency.com^$third-party (easylistchina+easylist.txt: 35434) -.apsmediaagency.com -# ||april29-disp-download.com^$third-party (easylistchina+easylist.txt: 35433) -.april29-disp-download.com -# ||apptap.com^$third-party (easylistchina+easylist.txt: 35432) -.apptap.com -# ||apportium.com^$third-party (easylistchina+easylist.txt: 35431) -.apportium.com -# ||applebarq.com^$third-party (easylistchina+easylist.txt: 35430) -.applebarq.com -# ||appendad.com^$third-party (easylistchina+easylist.txt: 35429) -.appendad.com -# ||apmebf.com^$third-party (easylistchina+easylist.txt: 35428) -.apmebf.com -# ||apex-ad.com^$third-party (easylistchina+easylist.txt: 35427) -.apex-ad.com -# ||aorpum.com^$third-party (easylistchina+easylist.txt: 35426) -.aorpum.com -# ||aorms.com^$third-party (easylistchina+easylist.txt: 35425) -.aorms.com -# ||aoqneyvmaz.com^$third-party (easylistchina+easylist.txt: 35424) -.aoqneyvmaz.com -# ||anyxp.com^$third-party (easylistchina+easylist.txt: 35423) -.anyxp.com -# ||anymedia.lv^$third-party (easylistchina+easylist.txt: 35422) -.anymedia.lv -# ||anwufkjjja.com^$third-party (easylistchina+easylist.txt: 35421) -.anwufkjjja.com -# ||anrdoezrs.net^$third-party (easylistchina+easylist.txt: 35420) -.anrdoezrs.net -# ||anonymousads.com^$third-party (easylistchina+easylist.txt: 35419) -.anonymousads.com -# ||angege.com^$third-party (easylistchina+easylist.txt: 35418) -.angege.com -# ||anet*.tradedoubler.com^$third-party (easylistchina+easylist.txt: 35417) -.anet*./.*\.tradedoubler\.com[^\w%.-] -.anet*.tradedoubler.com -# ||andomediagroup.com^$third-party (easylistchina+easylist.txt: 35416) -.andomediagroup.com -# ||andomedia.com^$third-party (easylistchina+easylist.txt: 35415) -.andomedia.com -# ||andohs.net^$third-party (easylistchina+easylist.txt: 35414) -.andohs.net -# ||anastasiasaffiliate.com^$third-party (easylistchina+easylist.txt: 35413) -.anastasiasaffiliate.com -# ||ampxchange.com^$third-party (easylistchina+easylist.txt: 35412) -.ampxchange.com -# ||amgdgt.com^$third-party (easylistchina+easylist.txt: 35411) -.amgdgt.com -# ||amertazy.com^$third-party (easylistchina+easylist.txt: 35410) -.amertazy.com -# ||amazonily.com^$third-party (easylistchina+easylist.txt: 35409) -.amazonily.com -# ||amazon-cornerstone.com^$third-party (easylistchina+easylist.txt: 35408) -.amazon-cornerstone.com -# ||amazon-adsystem.com^$third-party (easylistchina+easylist.txt: 35407) -.amazon-adsystem.com -# ||am15.net^$third-party (easylistchina+easylist.txt: 35406) -.am15.net -# ||am11.ru^$third-party (easylistchina+easylist.txt: 35405) -.am11.ru -# ||am10.ru^$third-party (easylistchina+easylist.txt: 35404) -.am10.ru -# ||am-display.com^$third-party (easylistchina+easylist.txt: 35403) -.am-display.com -# ||altitude-arena.com^$third-party (easylistchina+easylist.txt: 35402) -.altitude-arena.com -# ||alternativeadverts.com^$third-party (easylistchina+easylist.txt: 35401) -.alternativeadverts.com -# ||alternads.info^$third-party (easylistchina+easylist.txt: 35400) -.alternads.info -# ||alphagodaddy.com^$third-party (easylistchina+easylist.txt: 35399) -.alphagodaddy.com -# ||alphabirdnetwork.com^$third-party (easylistchina+easylist.txt: 35398) -.alphabirdnetwork.com -# ||alphabird.com^$third-party (easylistchina+easylist.txt: 35397) -.alphabird.com -# ||allyes.com^$third-party (easylistchina+easylist.txt: 35396) -.allyes.com -# ||alloydigital.com^$third-party (easylistchina+easylist.txt: 35395) -.alloydigital.com -# ||allmt.com^$third-party (easylistchina+easylist.txt: 35394) -.allmt.com -# ||alleliteads.com^$third-party (easylistchina+easylist.txt: 35393) -.alleliteads.com -# ||allabc.com^$third-party (easylistchina+easylist.txt: 35392) -.allabc.com -# ||alimama.com^$third-party (easylistchina+easylist.txt: 35391) -.alimama.com -# ||alfynetwork.com^$third-party (easylistchina+easylist.txt: 35390) -.alfynetwork.com -# ||alchemysocial.com^$third-party (easylistchina+easylist.txt: 35389) -.alchemysocial.com -# ||ajansreklam.net^$third-party (easylistchina+easylist.txt: 35388) -.ajansreklam.net -# ||aimatch.com^$third-party (easylistchina+easylist.txt: 35387) -.aimatch.com -# ||aim4media.com^$third-party (easylistchina+easylist.txt: 35386) -.aim4media.com -# ||agvzvwof.com^$third-party (easylistchina+easylist.txt: 35385) -.agvzvwof.com -# ||agomwefq.com^$third-party (easylistchina+easylist.txt: 35384) -.agomwefq.com -# ||agmtrk.com^$third-party (easylistchina+easylist.txt: 35383) -.agmtrk.com -# ||aglocobanners.com^$third-party (easylistchina+easylist.txt: 35382) -.aglocobanners.com -# ||aggregateknowledge.com^$third-party (easylistchina+easylist.txt: 35381) -.aggregateknowledge.com -# ||agentcenters.com^$third-party (easylistchina+easylist.txt: 35380) -.agentcenters.com -# ||agcdn.com^$third-party (easylistchina+easylist.txt: 35379) -.agcdn.com -# ||afy11.net^$third-party (easylistchina+easylist.txt: 35378) -.afy11.net -# ||afterdownloads.com^$third-party (easylistchina+easylist.txt: 35377) -.afterdownloads.com -# ||afterdownload.com^$third-party (easylistchina+easylist.txt: 35376) -.afterdownload.com -# ||africawin.com^$third-party (easylistchina+easylist.txt: 35375) -.africawin.com -# ||aflrm.com^$third-party (easylistchina+easylist.txt: 35374) -.aflrm.com -# ||afftrack.com^$third-party (easylistchina+easylist.txt: 35373) -.afftrack.com -# ||affplanet.com^$third-party (easylistchina+easylist.txt: 35372) -.affplanet.com -# ||affiz.net^$third-party (easylistchina+easylist.txt: 35371) -.affiz.net -# ||affinity.com^$third-party (easylistchina+easylist.txt: 35370) -.affinity.com -# ||affinitad.com^$third-party (easylistchina+easylist.txt: 35369) -.affinitad.com -# ||affimo.de^$third-party (easylistchina+easylist.txt: 35368) -.affimo.de -# ||affiliserve.com^$third-party (easylistchina+easylist.txt: 35367) -.affiliserve.com -# ||affiliproducts.com^$third-party (easylistchina+easylist.txt: 35366) -.affiliproducts.com -# ||affilijack.de^$third-party (easylistchina+easylist.txt: 35365) -.affilijack.de -# ||affiliationzone.com^$third-party (easylistchina+easylist.txt: 35364) -.affiliationzone.com -# ||affiliationworld.com^$third-party (easylistchina+easylist.txt: 35363) -.affiliationworld.com -# ||affiliationcash.com^$third-party (easylistchina+easylist.txt: 35362) -.affiliationcash.com -# ||affiliation-france.com^$third-party (easylistchina+easylist.txt: 35361) -.affiliation-france.com -# ||affiliatesensor.com^$third-party (easylistchina+easylist.txt: 35360) -.affiliatesensor.com -# ||affiliatemembership.com^$third-party (easylistchina+easylist.txt: 35359) -.affiliatemembership.com -# ||affiliatelounge.com^$third-party (easylistchina+easylist.txt: 35358) -.affiliatelounge.com -# ||affiliategroove.com^$third-party (easylistchina+easylist.txt: 35357) -.affiliategroove.com -# ||affiliategateways.co^$third-party (easylistchina+easylist.txt: 35356) -.affiliategateways.co -# ||affiliatefuture.com^$third-party (easylistchina+easylist.txt: 35355) -.affiliatefuture.com -# ||affiliatefuel.com^$third-party (easylistchina+easylist.txt: 35354) -.affiliatefuel.com -# ||affiliateer.com^$third-party (easylistchina+easylist.txt: 35353) -.affiliateer.com -# ||affiliateedge.com^$third-party (easylistchina+easylist.txt: 35352) -.affiliateedge.com -# ||affiliatebannerfarm.com^$third-party (easylistchina+easylist.txt: 35351) -.affiliatebannerfarm.com -# ||affiliate.cx^$third-party (easylistchina+easylist.txt: 35350) -.affiliate.cx -# ||affiliate.com^$third-party (easylistchina+easylist.txt: 35349) -.affiliate.com -# ||affiliate-robot.com^$third-party (easylistchina+easylist.txt: 35348) -.affiliate-robot.com -# ||affiliate-gate.com^$third-party (easylistchina+easylist.txt: 35347) -.affiliate-gate.com -# ||affiliate-b.com^$third-party (easylistchina+easylist.txt: 35346) -.affiliate-b.com -# ||affec.tv^$third-party (easylistchina+easylist.txt: 35345) -.affec.tv -# ||affbuzzads.com^$third-party (easylistchina+easylist.txt: 35344) -.affbuzzads.com -# ||affbot8.com^$third-party (easylistchina+easylist.txt: 35343) -.affbot8.com -# ||affbot7.com^$third-party (easylistchina+easylist.txt: 35342) -.affbot7.com -# ||affbot3.com^$third-party (easylistchina+easylist.txt: 35341) -.affbot3.com -# ||affbot1.com^$third-party (easylistchina+easylist.txt: 35340) -.affbot1.com -# ||aff.biz^$third-party (easylistchina+easylist.txt: 35339) -.aff.biz -# ||aff-online.com^$third-party (easylistchina+easylist.txt: 35338) -.aff-online.com -# ||afdads.com^$third-party (easylistchina+easylist.txt: 35337) -.afdads.com -# ||afcyhf.com^$third-party (easylistchina+easylist.txt: 35336) -.afcyhf.com -# ||adzs.nl^$third-party (easylistchina+easylist.txt: 35335) -.adzs.nl -# ||adzouk.com^$third-party (easylistchina+easylist.txt: 35334) -.adzouk.com -# ||adzonk.com^$third-party (easylistchina+easylist.txt: 35333) -.adzonk.com -# ||adziff.com^$third-party (easylistchina+easylist.txt: 35332) -.adziff.com -# ||adzhub.com^$third-party (easylistchina+easylist.txt: 35331) -.adzhub.com -# ||adzerk.net^$third-party (easylistchina+easylist.txt: 35330) -.adzerk.net -# ||adzbazar.com^$third-party (easylistchina+easylist.txt: 35329) -.adzbazar.com -# ||adz.co.zw^$third-party (easylistchina+easylist.txt: 35328) -.adz.co.zw -# ||adyoz.com^$third-party (easylistchina+easylist.txt: 35327) -.adyoz.com -# ||adyoulike.com^$third-party (easylistchina+easylist.txt: 35326) -.adyoulike.com -# ||adxpower.com^$third-party (easylistchina+easylist.txt: 35325) -.adxpower.com -# ||adxpose.com^$third-party (easylistchina+easylist.txt: 35324) -.adxpose.com -# ||adxion.com^$third-party (easylistchina+easylist.txt: 35323) -.adxion.com -# ||adxcore.com^$third-party (easylistchina+easylist.txt: 35322) -.adxcore.com -# ||adworldmedia.net^$third-party (easylistchina+easylist.txt: 35321) -.adworldmedia.net -# ||adworldmedia.com^$third-party (easylistchina+easylist.txt: 35320) -.adworldmedia.com -# ||adworkmedia.com^$third-party (easylistchina+easylist.txt: 35319) -.adworkmedia.com -# ||adwordsservicapi.com^$third-party (easylistchina+easylist.txt: 35318) -.adwordsservicapi.com -# ||adwires.com^$third-party (easylistchina+easylist.txt: 35317) -.adwires.com -# ||advsnx.net^$third-party (easylistchina+easylist.txt: 35316) -.advsnx.net -# ||advrtice.com^$third-party (easylistchina+easylist.txt: 35315) -.advrtice.com -# ||advpoints.com^$third-party (easylistchina+easylist.txt: 35314) -.advpoints.com -# ||advombat.ru^$third-party (easylistchina+easylist.txt: 35313) -.advombat.ru -# ||advmedialtd.com^$third-party (easylistchina+easylist.txt: 35312) -.advmedialtd.com -# ||advmd.com^$third-party (easylistchina+easylist.txt: 35311) -.advmd.com -# ||adviva.net^$third-party (easylistchina+easylist.txt: 35310) -.adviva.net -# ||advgoogle.com^$third-party (easylistchina+easylist.txt: 35309) -.advgoogle.com -# ||advg.jp^$third-party (easylistchina+easylist.txt: 35308) -.advg.jp -# ||advertxi.com^$third-party (easylistchina+easylist.txt: 35307) -.advertxi.com -# ||advertur.ru^$third-party (easylistchina+easylist.txt: 35306) -.advertur.ru -# ||advertstream.com^$third-party (easylistchina+easylist.txt: 35305) -.advertstream.com -# ||advertstatic.com^$third-party (easylistchina+easylist.txt: 35304) -.advertstatic.com -# ||advertserve.com^$third-party (easylistchina+easylist.txt: 35303) -.advertserve.com -# ||advertrev.com^$third-party (easylistchina+easylist.txt: 35302) -.advertrev.com -# ||advertpay.net^$third-party (easylistchina+easylist.txt: 35301) -.advertpay.net -# ||advertone.ru^$third-party (easylistchina+easylist.txt: 35300) -.advertone.ru -# ||advertmedias.com^$third-party (easylistchina+easylist.txt: 35299) -.advertmedias.com -# ||advertmarketing.com^$third-party (easylistchina+easylist.txt: 35298) -.advertmarketing.com -# ||advertlets.com^$third-party (easylistchina+easylist.txt: 35297) -.advertlets.com -# ||advertlead.net^$third-party (easylistchina+easylist.txt: 35296) -.advertlead.net -# ||advertjunction.com^$third-party (easylistchina+easylist.txt: 35295) -.advertjunction.com -# ||advertisingvalue.info^$third-party (easylistchina+easylist.txt: 35294) -.advertisingvalue.info -# ||advertisingpath.net^$third-party (easylistchina+easylist.txt: 35293) -.advertisingpath.net -# ||advertisingiq.com^$third-party (easylistchina+easylist.txt: 35292) -.advertisingiq.com -# ||advertising365.com^$third-party (easylistchina+easylist.txt: 35291) -.advertising365.com -# ||advertising.com^$third-party (easylistchina+easylist.txt: 35290) -.advertising.com -# ||advertising-department.com^$third-party (easylistchina+easylist.txt: 35289) -.advertising-department.com -# ||advertiseyourgame.com^$third-party (easylistchina+easylist.txt: 35288) -.advertiseyourgame.com -# ||advertisespace.com^$third-party (easylistchina+easylist.txt: 35287) -.advertisespace.com -# ||advertisegame.com^$third-party (easylistchina+easylist.txt: 35286) -.advertisegame.com -# ||advertiseforfree.co.za^$third-party (easylistchina+easylist.txt: 35285) -.advertiseforfree.co.za -# ||advertise.com^$third-party (easylistchina+easylist.txt: 35284) -.advertise.com -# ||adverticum.net^$third-party (easylistchina+easylist.txt: 35283) -.adverticum.net -# ||adverteerdirect.nl^$third-party (easylistchina+easylist.txt: 35282) -.adverteerdirect.nl -# ||advertbox.us^$third-party (easylistchina+easylist.txt: 35281) -.advertbox.us -# ||advertarium.com.ua^$third-party (easylistchina+easylist.txt: 35280) -.advertarium.com.ua -# ||adverserve.net^$third-party (easylistchina+easylist.txt: 35279) -.adverserve.net -# ||adversalservers.com^$third-party (easylistchina+easylist.txt: 35278) -.adversalservers.com -# ||adversaldisplay.com^$third-party (easylistchina+easylist.txt: 35277) -.adversaldisplay.com -# ||adversal.com^$third-party (easylistchina+easylist.txt: 35276) -.adversal.com -# ||adventori.com^$third-party (easylistchina+easylist.txt: 35275) -.adventori.com -# ||advatar.to^$third-party (easylistchina+easylist.txt: 35274) -.advatar.to -# ||advard.com^$third-party (easylistchina+easylist.txt: 35273) -.advard.com -# ||advantageglobalmarketing.com^$third-party (easylistchina+easylist.txt: 35272) -.advantageglobalmarketing.com -# ||advanseads.com^$third-party (easylistchina+easylist.txt: 35271) -.advanseads.com -# ||adv9.net^$third-party (easylistchina+easylist.txt: 35270) -.adv9.net -# ||adv-adserver.com^$third-party (easylistchina+easylist.txt: 35269) -.adv-adserver.com -# ||adurr.com^$third-party (easylistchina+easylist.txt: 35268) -.adurr.com -# ||adulttds.com^$third-party (easylistchina+easylist.txt: 35267) -.adulttds.com -# ||adultimate.net^$third-party (easylistchina+easylist.txt: 35266) -.adultimate.net -# ||adultadworld.com^$third-party (easylistchina+easylist.txt: 35265) -.adultadworld.com -# ||adult-adv.com^$third-party (easylistchina+easylist.txt: 35264) -.adult-adv.com -# ||aduacni.com^$third-party (easylistchina+easylist.txt: 35263) -.aduacni.com -# ||adtwirl.com^$third-party (easylistchina+easylist.txt: 35262) -.adtwirl.com -# ||adtruism.com^$third-party (easylistchina+easylist.txt: 35261) -.adtruism.com -# ||adtrovert.com^$third-party (easylistchina+easylist.txt: 35260) -.adtrovert.com -# ||adtrix.com^$third-party (easylistchina+easylist.txt: 35259) -.adtrix.com -# ||adtrgt.com^$third-party (easylistchina+easylist.txt: 35258) -.adtrgt.com -# ||adtransfer.net^$third-party (easylistchina+easylist.txt: 35257) -.adtransfer.net -# ||adtrace.org^$third-party (easylistchina+easylist.txt: 35256) -.adtrace.org -# ||adtpix.com^$third-party (easylistchina+easylist.txt: 35255) -.adtpix.com -# ||adtotal.pl^$third-party (easylistchina+easylist.txt: 35254) -.adtotal.pl -# ||adtoox.com^$third-party (easylistchina+easylist.txt: 35253) -.adtoox.com -# ||adtomafusion.com^$third-party (easylistchina+easylist.txt: 35252) -.adtomafusion.com -# ||adtoma.com^$third-party (easylistchina+easylist.txt: 35251) -.adtoma.com -# ||adtology3.com^$third-party (easylistchina+easylist.txt: 35250) -.adtology3.com -# ||adtology2.com^$third-party (easylistchina+easylist.txt: 35249) -.adtology2.com -# ||adtology1.com^$third-party (easylistchina+easylist.txt: 35248) -.adtology1.com -# ||adtoll.com^$third-party (easylistchina+easylist.txt: 35247) -.adtoll.com -# ||adtoadd.com^$third-party (easylistchina+easylist.txt: 35246) -.adtoadd.com -# ||adtlgc.com^$third-party (easylistchina+easylist.txt: 35245) -.adtlgc.com -# ||adtgs.com^$third-party (easylistchina+easylist.txt: 35244) -.adtgs.com -# ||adteractive.com^$third-party (easylistchina+easylist.txt: 35243) -.adteractive.com -# ||adtegrity.net^$third-party (easylistchina+easylist.txt: 35242) -.adtegrity.net -# ||adtechus.com^$third-party (easylistchina+easylist.txt: 35241) -.adtechus.com -# ||adtech.de^$third-party (easylistchina+easylist.txt: 35240) -.adtech.de -# ||adtecc.com^$third-party (easylistchina+easylist.txt: 35239) -.adtecc.com -# ||adtdp.com^$third-party (easylistchina+easylist.txt: 35238) -.adtdp.com -# ||adtaily.pl^$third-party (easylistchina+easylist.txt: 35237) -.adtaily.pl -# ||adtaily.eu^$third-party (easylistchina+easylist.txt: 35236) -.adtaily.eu -# ||adtaily.com^$third-party (easylistchina+easylist.txt: 35235) -.adtaily.com -# ||adsymptotic.com^$third-party (easylistchina+easylist.txt: 35234) -.adsymptotic.com -# ||adsxgm.com^$third-party (easylistchina+easylist.txt: 35233) -.adsxgm.com -# ||adswizz.com^$third-party (easylistchina+easylist.txt: 35232) -.adswizz.com -# ||adsvert.com^$third-party (easylistchina+easylist.txt: 35231) -.adsvert.com -# ||adsurve.com^$third-party (easylistchina+easylist.txt: 35230) -.adsurve.com -# ||adsupply.com^$third-party (easylistchina+easylist.txt: 35229) -.adsupply.com -# ||adsupermarket.com^$third-party (easylistchina+easylist.txt: 35228) -.adsupermarket.com -# ||adsummos.net^$third-party (easylistchina+easylist.txt: 35227) -.adsummos.net -# ||adsterra.com^$third-party (easylistchina+easylist.txt: 35226) -.adsterra.com -# ||adstatic.com^$third-party (easylistchina+easylist.txt: 35225) -.adstatic.com -# ||adstargeting.com^$third-party (easylistchina+easylist.txt: 35224) -.adstargeting.com -# ||adssites.net^$third-party (easylistchina+easylist.txt: 35223) -.adssites.net -# ||adssend.net^$third-party (easylistchina+easylist.txt: 35222) -.adssend.net -# ||adsrvr.org^$third-party (easylistchina+easylist.txt: 35221) -.adsrvr.org -# ||adsrvmedia.net^$third-party (easylistchina+easylist.txt: 35220) -.adsrvmedia.net -# ||adsrvmedia.com^$third-party (easylistchina+easylist.txt: 35219) -.adsrvmedia.com -# ||adsrv.us^$third-party (easylistchina+easylist.txt: 35218) -.adsrv.us -# ||adsring.com^$third-party (easylistchina+easylist.txt: 35217) -.adsring.com -# ||adsrevenue.net^$third-party (easylistchina+easylist.txt: 35216) -.adsrevenue.net -# ||adspynet.com^$third-party (easylistchina+easylist.txt: 35215) -.adspynet.com -# ||adspruce.com^$third-party (easylistchina+easylist.txt: 35214) -.adspruce.com -# ||adspring.to^$third-party (easylistchina+easylist.txt: 35213) -.adspring.to -# ||adspirit.de^$third-party (easylistchina+easylist.txt: 35212) -.adspirit.de -# ||adspeed.com^$third-party (easylistchina+easylist.txt: 35211) -.adspeed.com -# ||adspdbl.com^$third-party (easylistchina+easylist.txt: 35210) -.adspdbl.com -# ||adsparc.net^$third-party (easylistchina+easylist.txt: 35209) -.adsparc.net -# ||adspaper.org^$third-party (easylistchina+easylist.txt: 35208) -.adspaper.org -# ||adsovo.com^$third-party (easylistchina+easylist.txt: 35207) -.adsovo.com -# ||adsopx.com^$third-party (easylistchina+easylist.txt: 35206) -.adsopx.com -# ||adsonar.com^$third-party (easylistchina+easylist.txt: 35205) -.adsonar.com -# ||adsniper.ru^$third-party (easylistchina+easylist.txt: 35204) -.adsniper.ru -# ||adsnext.net^$third-party (easylistchina+easylist.txt: 35203) -.adsnext.net -# ||adsnetworkserver.com^$third-party (easylistchina+easylist.txt: 35202) -.adsnetworkserver.com -# ||adsnative.com^$third-party (easylistchina+easylist.txt: 35201) -.adsnative.com -# ||adsmws.cloudapp.net^$third-party (easylistchina+easylist.txt: 35200) -.adsmws.cloudapp.net -# ||adsmoon.com^$third-party (easylistchina+easylist.txt: 35199) -.adsmoon.com -# ||adsmile.biz^$third-party (easylistchina+easylist.txt: 35198) -.adsmile.biz -# ||adsmedia.cc^$third-party (easylistchina+easylist.txt: 35197) -.adsmedia.cc -# ||adsmarket.es^$third-party (easylistchina+easylist.txt: 35196) -.adsmarket.es -# ||adsmarket.com^$third-party (easylistchina+easylist.txt: 35195) -.adsmarket.com -# ||adslot.com^$third-party (easylistchina+easylist.txt: 35194) -.adslot.com -# ||adslingers.com^$third-party (easylistchina+easylist.txt: 35193) -.adslingers.com -# ||adslidango.com^$third-party (easylistchina+easylist.txt: 35192) -.adslidango.com -# ||adskeeper.co.uk^$third-party (easylistchina+easylist.txt: 35191) -.adskeeper.co.uk -# ||adsinimages.com^$third-party (easylistchina+easylist.txt: 35190) -.adsinimages.com -# ||adsimilis.com^$third-party (easylistchina+easylist.txt: 35189) -.adsimilis.com -# ||adsignals.com^$third-party (easylistchina+easylist.txt: 35188) -.adsignals.com -# ||adshuffle.com^$third-party (easylistchina+easylist.txt: 35187) -.adshuffle.com -# ||adshot.de^$third-party (easylistchina+easylist.txt: 35186) -.adshot.de -# ||adshost2.com^$third-party (easylistchina+easylist.txt: 35185) -.adshost2.com -# ||adshost1.com^$third-party (easylistchina+easylist.txt: 35184) -.adshost1.com -# ||adshopping.com^$third-party (easylistchina+easylist.txt: 35183) -.adshopping.com -# ||adshexa.com^$third-party (easylistchina+easylist.txt: 35182) -.adshexa.com -# ||adshack.com^$third-party (easylistchina+easylist.txt: 35181) -.adshack.com -# ||adsfuse.com^$third-party (easylistchina+easylist.txt: 35180) -.adsfuse.com -# ||adsfundi.net^$third-party (easylistchina+easylist.txt: 35179) -.adsfundi.net -# ||adsfundi.com^$third-party (easylistchina+easylist.txt: 35178) -.adsfundi.com -# ||adsforindians.com^$third-party (easylistchina+easylist.txt: 35177) -.adsforindians.com -# ||adsfast.com^$third-party (easylistchina+easylist.txt: 35176) -.adsfast.com -# ||adsfactor.net^$third-party (easylistchina+easylist.txt: 35175) -.adsfactor.net -# ||adsfac.us^$third-party (easylistchina+easylist.txt: 35174) -.adsfac.us -# ||adsfac.net^$third-party (easylistchina+easylist.txt: 35173) -.adsfac.net -# ||adsfac.eu^$third-party (easylistchina+easylist.txt: 35172) -.adsfac.eu -# ||adservr.de^$third-party (easylistchina+easylist.txt: 35171) -.adservr.de -# ||adservpi.com^$third-party (easylistchina+easylist.txt: 35170) -.adservpi.com -# ||adservinginternational.com^$third-party (easylistchina+easylist.txt: 35169) -.adservinginternational.com -# ||adservingfactory.com^$third-party (easylistchina+easylist.txt: 35168) -.adservingfactory.com -# ||adservhere.com^$third-party (easylistchina+easylist.txt: 35167) -.adservhere.com -# ||adserverpub.com^$third-party (easylistchina+easylist.txt: 35166) -.adserverpub.com -# ||adserverplus.com^$third-party (easylistchina+easylist.txt: 35165) -.adserverplus.com -# ||adserver-fx.com^$third-party (easylistchina+easylist.txt: 35164) -.adserver-fx.com -# ||adserve.ph^$third-party (easylistchina+easylist.txt: 35163) -.adserve.ph -# ||adserve.com^$third-party (easylistchina+easylist.txt: 35162) -.adserve.com -# ||adserv8.com^$third-party (easylistchina+easylist.txt: 35161) -.adserv8.com -# ||adsensecamp.com^$third-party (easylistchina+easylist.txt: 35160) -.adsensecamp.com -# ||adsearcher.ru^$third-party (easylistchina+easylist.txt: 35159) -.adsearcher.ru -# ||adsdot.ph^$third-party (easylistchina+easylist.txt: 35158) -.adsdot.ph -# ||adsdk.com^$third-party (easylistchina+easylist.txt: 35157) -.adsdk.com -# ||adsclickingnetwork.com^$third-party (easylistchina+easylist.txt: 35156) -.adsclickingnetwork.com -# ||adscendmedia.com^$third-party (easylistchina+easylist.txt: 35155) -.adscendmedia.com -# ||adscampaign.net^$third-party (easylistchina+easylist.txt: 35154) -.adscampaign.net -# ||adscale.de^$third-party (easylistchina+easylist.txt: 35153) -.adscale.de -# ||adsbrook.com^$third-party (easylistchina+easylist.txt: 35152) -.adsbrook.com -# ||adsbookie.com^$third-party (easylistchina+easylist.txt: 35151) -.adsbookie.com -# ||adsame.com^$third-party (easylistchina+easylist.txt: 35150) -.adsame.com -# ||adsalvo.com^$third-party (easylistchina+easylist.txt: 35149) -.adsalvo.com -# ||adsafeprotected.com^$third-party (easylistchina+easylist.txt: 35148) -.adsafeprotected.com -# ||ads4cheap.com^$third-party (easylistchina+easylist.txt: 35147) -.ads4cheap.com -# ||ads2srv.com^$third-party (easylistchina+easylist.txt: 35146) -.ads2srv.com -# ||ads2ads.net^$third-party (easylistchina+easylist.txt: 35145) -.ads2ads.net -# ||ads01.com^$third-party (easylistchina+easylist.txt: 35144) -.ads01.com -# ||ads.intergi.com^$third-party (easylistchina+easylist.txt: 35143) -.ads.intergi.com -# ||ads-stats.com^$third-party (easylistchina+easylist.txt: 35142) -.ads-stats.com -# ||ads-elsevier.net^$third-party (easylistchina+easylist.txt: 35141) -.ads-elsevier.net -# ||ads-4u.com^$third-party (easylistchina+easylist.txt: 35140) -.ads-4u.com -# ||adrocket.com^$third-party (easylistchina+easylist.txt: 35139) -.adrocket.com -# ||adrise.de^$third-party (easylistchina+easylist.txt: 35138) -.adrise.de -# ||adrich.cash^$third-party (easylistchina+easylist.txt: 35137) -.adrich.cash -# ||adrevolver.com^$third-party (easylistchina+easylist.txt: 35136) -.adrevolver.com -# ||adresellers.com^$third-party (easylistchina+easylist.txt: 35135) -.adresellers.com -# ||adreadytractions.com^$third-party (easylistchina+easylist.txt: 35134) -.adreadytractions.com -# ||adready.com^$third-party (easylistchina+easylist.txt: 35133) -.adready.com -# ||adreactor.com^$third-party (easylistchina+easylist.txt: 35132) -.adreactor.com -# ||adrcdn.com^$third-party (easylistchina+easylist.txt: 35131) -.adrcdn.com -# ||adquest3d.com^$third-party (easylistchina+easylist.txt: 35130) -.adquest3d.com -# ||adquantix.com^$third-party (easylistchina+easylist.txt: 35129) -.adquantix.com -# ||adpushup.com^$third-party (easylistchina+easylist.txt: 35128) -.adpushup.com -# ||adprs.net^$third-party (easylistchina+easylist.txt: 35127) -.adprs.net -# ||adprovi.de^$third-party (easylistchina+easylist.txt: 35126) -.adprovi.de -# ||adprotected.com^$third-party (easylistchina+easylist.txt: 35125) -.adprotected.com -# ||adproper.info^$third-party (easylistchina+easylist.txt: 35124) -.adproper.info -# ||adprofit2share.com^$third-party (easylistchina+easylist.txt: 35123) -.adprofit2share.com -# ||adpremo.com^$third-party (easylistchina+easylist.txt: 35122) -.adpremo.com -# ||adpredictive.com^$third-party (easylistchina+easylist.txt: 35121) -.adpredictive.com -# ||adppv.com^$third-party (easylistchina+easylist.txt: 35120) -.adppv.com -# ||adpoper.com^$third-party (easylistchina+easylist.txt: 35119) -.adpoper.com -# ||adplxmd.com^$third-party (easylistchina+easylist.txt: 35118) -.adplxmd.com -# ||adplugg.com^$third-party (easylistchina+easylist.txt: 35117) -.adplugg.com -# ||adplex.media^$third-party (easylistchina+easylist.txt: 35116) -.adplex.media -# ||adplans.info^$third-party (easylistchina+easylist.txt: 35115) -.adplans.info -# ||adpionier.de^$third-party (easylistchina+easylist.txt: 35114) -.adpionier.de -# ||adpinion.com^$third-party (easylistchina+easylist.txt: 35113) -.adpinion.com -# ||adphreak.com^$third-party (easylistchina+easylist.txt: 35112) -.adphreak.com -# ||adperium.com^$third-party (easylistchina+easylist.txt: 35111) -.adperium.com -# ||adperfect.com^$third-party (easylistchina+easylist.txt: 35110) -.adperfect.com -# ||adpay.com^$third-party (easylistchina+easylist.txt: 35109) -.adpay.com -# ||adpath.mobi^$third-party (easylistchina+easylist.txt: 35108) -.adpath.mobi -# ||adparlor.com^$third-party (easylistchina+easylist.txt: 35107) -.adparlor.com -# ||adpacks.com^$third-party (easylistchina+easylist.txt: 35106) -.adpacks.com -# ||adowner.net^$third-party (easylistchina+easylist.txt: 35105) -.adowner.net -# ||adovida.com^$third-party (easylistchina+easylist.txt: 35104) -.adovida.com -# ||adotube.com^$third-party (easylistchina+easylist.txt: 35103) -.adotube.com -# ||adotomy.com^$third-party (easylistchina+easylist.txt: 35102) -.adotomy.com -# ||adotic.com^$third-party (easylistchina+easylist.txt: 35101) -.adotic.com -# ||adorika.net^$third-party (easylistchina+easylist.txt: 35100) -.adorika.net -# ||adorika.com^$third-party (easylistchina+easylist.txt: 35099) -.adorika.com -# ||adoptim.com^$third-party (easylistchina+easylist.txt: 35098) -.adoptim.com -# ||adoperator.com^$third-party (easylistchina+easylist.txt: 35097) -.adoperator.com -# ||adonweb.ru^$third-party (easylistchina+easylist.txt: 35096) -.adonweb.ru -# ||adonnews.com^$third-party (easylistchina+easylist.txt: 35095) -.adonnews.com -# ||adonly.com^$third-party (easylistchina+easylist.txt: 35094) -.adonly.com -# ||adonion.com^$third-party (easylistchina+easylist.txt: 35093) -.adonion.com -# ||adohana.com^$third-party (easylistchina+easylist.txt: 35092) -.adohana.com -# ||adocean.pl^$third-party (easylistchina+easylist.txt: 35091) -.adocean.pl -# ||adnxs1.com^$third-party (easylistchina+easylist.txt: 35090) -.adnxs1.com -# ||adnxs.net^$third-party (easylistchina+easylist.txt: 35089) -.adnxs.net -# ||adnxs.com^$third-party (easylistchina+easylist.txt: 35088) -.adnxs.com -# ||adnow.com^$third-party (easylistchina+easylist.txt: 35087) -.adnow.com -# ||adnoble.com^$third-party (easylistchina+easylist.txt: 35086) -.adnoble.com -# ||adnmore.co.kr^$third-party (easylistchina+easylist.txt: 35085) -.adnmore.co.kr -# ||adnium.com^$third-party (easylistchina+easylist.txt: 35084) -.adnium.com -# ||adnimation.com^$third-party (easylistchina+easylist.txt: 35083) -.adnimation.com -# ||adngin.com^$third-party (easylistchina+easylist.txt: 35082) -.adngin.com -# ||adnext.fr^$third-party (easylistchina+easylist.txt: 35081) -.adnext.fr -# ||adnetworkperformance.com^$third-party (easylistchina+easylist.txt: 35080) -.adnetworkperformance.com -# ||adnetworkme.com^$third-party (easylistchina+easylist.txt: 35079) -.adnetworkme.com -# ||adnet.vn^$third-party (easylistchina+easylist.txt: 35078) -.adnet.vn -# ||adnet.ru^$third-party (easylistchina+easylist.txt: 35077) -.adnet.ru -# ||adnet.lt^$third-party (easylistchina+easylist.txt: 35076) -.adnet.lt -# ||adnet.de^$third-party (easylistchina+easylist.txt: 35075) -.adnet.de -# ||adnet.com^$third-party (easylistchina+easylist.txt: 35074) -.adnet.com -# ||adnet.biz^$third-party (easylistchina+easylist.txt: 35073) -.adnet.biz -# ||adnet-media.net^$third-party (easylistchina+easylist.txt: 35072) -.adnet-media.net -# ||adnectar.com^$third-party (easylistchina+easylist.txt: 35071) -.adnectar.com -# ||adne.tv^$third-party (easylistchina+easylist.txt: 35070) -.adne.tv -# ||admzn.com^$third-party (easylistchina+easylist.txt: 35069) -.admzn.com -# ||admulti.com^$third-party (easylistchina+easylist.txt: 35068) -.admulti.com -# ||admtpmp127.com^$third-party (easylistchina+easylist.txt: 35067) -.admtpmp127.com -# ||admpads.com^$third-party (easylistchina+easylist.txt: 35066) -.admpads.com -# ||admngronline.com^$third-party (easylistchina+easylist.txt: 35065) -.admngronline.com -# ||admixer.net^$third-party (easylistchina+easylist.txt: 35064) -.admixer.net -# ||admitad.com^$third-party (easylistchina+easylist.txt: 35063) -.admitad.com -# ||admission.net^$third-party (easylistchina+easylist.txt: 35062) -.admission.net -# ||admeta.com^$third-party (easylistchina+easylist.txt: 35061) -.admeta.com -# ||admeld.com^$third-party (easylistchina+easylist.txt: 35060) -.admeld.com -# ||admedo.com^$third-party (easylistchina+easylist.txt: 35059) -.admedo.com -# ||admedias.net^$third-party (easylistchina+easylist.txt: 35058) -.admedias.net -# ||admedia.com^$third-party (easylistchina+easylist.txt: 35057) -.admedia.com -# ||admaya.in^$third-party (easylistchina+easylist.txt: 35056) -.admaya.in -# ||admaxim.com^$third-party (easylistchina+easylist.txt: 35055) -.admaxim.com -# ||admarketplace.net^$third-party (easylistchina+easylist.txt: 35054) -.admarketplace.net -# ||admanmedia.com^$third-party (easylistchina+easylist.txt: 35053) -.admanmedia.com -# ||admanage.com^$third-party (easylistchina+easylist.txt: 35052) -.admanage.com -# ||adman.gr^$third-party (easylistchina+easylist.txt: 35051) -.adman.gr -# ||admamba.com^$third-party (easylistchina+easylist.txt: 35050) -.admamba.com -# ||admailtiser.com^$third-party (easylistchina+easylist.txt: 35049) -.admailtiser.com -# ||admagnet.net^$third-party (easylistchina+easylist.txt: 35048) -.admagnet.net -# ||adm.fwmrm.net/p/mtvn_live/$object-subrequest,third-party (easylistchina+easylist.txt: 35047) -.adm.fwmrm.net/p/mtvn_live/ -# ||adlux.com^$third-party (easylistchina+easylist.txt: 35044) -.adlux.com -# ||adlure.biz^$third-party (easylistchina+easylist.txt: 35043) -.adlure.biz -# ||adlpartner.com^$third-party (easylistchina+easylist.txt: 35042) -.adlpartner.com -# ||adlooxtracking.com^$third-party (easylistchina+easylist.txt: 35041) -.adlooxtracking.com -# ||adloaded.com^$third-party (easylistchina+easylist.txt: 35040) -.adloaded.com -# ||adlisher.com^$third-party (easylistchina+easylist.txt: 35039) -.adlisher.com -# ||adlinx.info^$third-party (easylistchina+easylist.txt: 35038) -.adlinx.info -# ||adlink.net^$third-party (easylistchina+easylist.txt: 35037) -.adlink.net -# ||adlegend.com^$third-party (easylistchina+easylist.txt: 35036) -.adlegend.com -# ||adlayer.net^$third-party (easylistchina+easylist.txt: 35035) -.adlayer.net -# ||adkonekt.com^$third-party (easylistchina+easylist.txt: 35034) -.adkonekt.com -# ||adknowledge.com^$third-party (easylistchina+easylist.txt: 35033) -.adknowledge.com -# ||adklip.com^$third-party (easylistchina+easylist.txt: 35032) -.adklip.com -# ||adkick.net^$third-party (easylistchina+easylist.txt: 35031) -.adkick.net -# ||adkengage.com^$third-party (easylistchina+easylist.txt: 35030) -.adkengage.com -# ||adk2x.com^$third-party (easylistchina+easylist.txt: 35029) -.adk2x.com -# ||adk2.com^$third-party (easylistchina+easylist.txt: 35028) -.adk2.com -# ||adk2.co^$third-party (easylistchina+easylist.txt: 35027) -.adk2.co -# ||adjungle.com^$third-party (easylistchina+easylist.txt: 35026) -.adjungle.com -# ||adjuggler.net^$third-party (easylistchina+easylist.txt: 35025) -.adjuggler.net -# ||adjuggler.com^$third-party (easylistchina+easylist.txt: 35024) -.adjuggler.com -# ||adjug.com^$third-party (easylistchina+easylist.txt: 35023) -.adjug.com -# ||adjector.com^$third-party (easylistchina+easylist.txt: 35022) -.adjector.com -# ||adjal.com^$third-party (easylistchina+easylist.txt: 35021) -.adjal.com -# ||adition.com^$third-party (easylistchina+easylist.txt: 35020) -.adition.com -# ||adit-media.com^$third-party (easylistchina+easylist.txt: 35019) -.adit-media.com -# ||adisn.com^$third-party (easylistchina+easylist.txt: 35018) -.adisn.com -# ||adisfy.com^$third-party (easylistchina+easylist.txt: 35017) -.adisfy.com -# ||adireland.com^$third-party (easylistchina+easylist.txt: 35016) -.adireland.com -# ||adiqglobal.com^$third-party (easylistchina+easylist.txt: 35015) -.adiqglobal.com -# ||adip.ly^$third-party (easylistchina+easylist.txt: 35014) -.adip.ly -# ||adinterax.com^$third-party (easylistchina+easylist.txt: 35013) -.adinterax.com -# ||adintend.com^$third-party (easylistchina+easylist.txt: 35012) -.adintend.com -# ||adinfinity.com.au^$third-party (easylistchina+easylist.txt: 35011) -.adinfinity.com.au -# ||adindigo.com^$third-party (easylistchina+easylist.txt: 35010) -.adindigo.com -# ||adincon.com^$third-party (easylistchina+easylist.txt: 35009) -.adincon.com -# ||adinch.com^$third-party (easylistchina+easylist.txt: 35008) -.adinch.com -# ||adimpression.net^$third-party (easylistchina+easylist.txt: 35007) -.adimpression.net -# ||adimperia.com^$third-party (easylistchina+easylist.txt: 35006) -.adimperia.com -# ||adimpact.com^$third-party (easylistchina+easylist.txt: 35005) -.adimpact.com -# ||adimise.com^$third-party (easylistchina+easylist.txt: 35004) -.adimise.com -# ||adikteev.com^$third-party (easylistchina+easylist.txt: 35003) -.adikteev.com -# ||adigniter.org^$third-party (easylistchina+easylist.txt: 35002) -.adigniter.org -# ||adicate.com^$third-party (easylistchina+easylist.txt: 35001) -.adicate.com -# ||adhub.co.nz^$third-party (easylistchina+easylist.txt: 35000) -.adhub.co.nz -# ||adhostingsolutions.com^$third-party (easylistchina+easylist.txt: 34999) -.adhostingsolutions.com -# ||adhitzads.com^$third-party (easylistchina+easylist.txt: 34998) -.adhitzads.com -# ||adhigh.net^$third-party (easylistchina+easylist.txt: 34997) -.adhigh.net -# ||adhese.net^$third-party (easylistchina+easylist.txt: 34996) -.adhese.net -# ||adhese.com^$third-party (easylistchina+easylist.txt: 34995) -.adhese.com -# ||adhese.be^$third-party (easylistchina+easylist.txt: 34994) -.adhese.be -# ||adgrx.com^$third-party (easylistchina+easylist.txt: 34993) -.adgrx.com -# ||adgroups.com^$third-party (easylistchina+easylist.txt: 34992) -.adgroups.com -# ||adgoto.com^$third-party (easylistchina+easylist.txt: 34991) -.adgoto.com -# ||adgorithms.com^$third-party (easylistchina+easylist.txt: 34990) -.adgorithms.com -# ||adglare.net^$third-party (easylistchina+easylist.txt: 34989) -.adglare.net -# ||adglamour.net^$third-party (easylistchina+easylist.txt: 34988) -.adglamour.net -# ||adgitize.com^$third-party (easylistchina+easylist.txt: 34987) -.adgitize.com -# ||adgine.net^$third-party (easylistchina+easylist.txt: 34986) -.adgine.net -# ||adgila.com^$third-party (easylistchina+easylist.txt: 34985) -.adgila.com -# ||adgent007.com^$third-party (easylistchina+easylist.txt: 34984) -.adgent007.com -# ||adgebra.co.in^$third-party (easylistchina+easylist.txt: 34983) -.adgebra.co.in -# ||adgear.com^$third-party (easylistchina+easylist.txt: 34982) -.adgear.com -# ||adgatemedia.com^$third-party (easylistchina+easylist.txt: 34981) -.adgatemedia.com -# ||adgardener.com^$third-party (easylistchina+easylist.txt: 34980) -.adgardener.com -# ||adgalax.com^$third-party (easylistchina+easylist.txt: 34979) -.adgalax.com -# ||adfusion.com^$third-party (easylistchina+easylist.txt: 34978) -.adfusion.com -# ||adfunkyserver.com^$third-party (easylistchina+easylist.txt: 34977) -.adfunkyserver.com -# ||adfrontiers.com^$third-party (easylistchina+easylist.txt: 34976) -.adfrontiers.com -# ||adfrog.info^$third-party (easylistchina+easylist.txt: 34975) -.adfrog.info -# ||adfrika.com^$third-party (easylistchina+easylist.txt: 34974) -.adfrika.com -# ||adframesrc.com^$third-party (easylistchina+easylist.txt: 34973) -.adframesrc.com -# ||adform.net^$third-party (easylistchina+easylist.txt: 34972) -.adform.net -# ||adforgeinc.com^$third-party (easylistchina+easylist.txt: 34971) -.adforgeinc.com -# ||adforgames.com^$third-party (easylistchina+easylist.txt: 34970) -.adforgames.com -# ||adfootprints.com^$third-party (easylistchina+easylist.txt: 34969) -.adfootprints.com -# ||adfeedstrk.com^$third-party (easylistchina+easylist.txt: 34968) -.adfeedstrk.com -# ||adfactory88.com^$third-party (easylistchina+easylist.txt: 34967) -.adfactory88.com -# ||adf01.net^$third-party (easylistchina+easylist.txt: 34966) -.adf01.net -# ||adextent.com^$third-party (easylistchina+easylist.txt: 34965) -.adextent.com -# ||adexprts.com^$third-party (easylistchina+easylist.txt: 34964) -.adexprts.com -# ||adexprt.com^$third-party (easylistchina+easylist.txt: 34963) -.adexprt.com -# ||adexcite.com^$third-party (easylistchina+easylist.txt: 34962) -.adexcite.com -# ||adespresso.com^$third-party (easylistchina+easylist.txt: 34961) -.adespresso.com -# ||adengage.com^$third-party (easylistchina+easylist.txt: 34960) -.adengage.com -# ||ademails.com^$third-party (easylistchina+easylist.txt: 34959) -.ademails.com -# ||adelement.com^$third-party (easylistchina+easylist.txt: 34958) -.adelement.com -# ||adedy.com^$third-party (easylistchina+easylist.txt: 34957) -.adedy.com -# ||adecn.com^$third-party (easylistchina+easylist.txt: 34956) -.adecn.com -# ||addynamo.net^$third-party (easylistchina+easylist.txt: 34955) -.addynamo.net -# ||addynamix.com^$third-party (easylistchina+easylist.txt: 34954) -.addynamix.com -# ||addynamics.eu^$third-party (easylistchina+easylist.txt: 34953) -.addynamics.eu -# ||addroid.com^$third-party (easylistchina+easylist.txt: 34952) -.addroid.com -# ||addoer.com^$third-party (easylistchina+easylist.txt: 34951) -.addoer.com -# ||addiply.com^$third-party (easylistchina+easylist.txt: 34950) -.addiply.com -# ||addelive.com^$third-party (easylistchina+easylist.txt: 34949) -.addelive.com -# ||addaim.com^$third-party (easylistchina+easylist.txt: 34948) -.addaim.com -# ||adcru.com^$third-party (easylistchina+easylist.txt: 34947) -.adcru.com -# ||adcron.com^$third-party (easylistchina+easylist.txt: 34946) -.adcron.com -# ||adcount.in^$third-party (easylistchina+easylist.txt: 34945) -.adcount.in -# ||adconscious.com^$third-party (easylistchina+easylist.txt: 34944) -.adconscious.com -# ||adcolo.com^$third-party (easylistchina+easylist.txt: 34943) -.adcolo.com -# ||adcloud.net^$third-party (easylistchina+easylist.txt: 34942) -.adcloud.net -# ||adclickmedia.com^$third-party (easylistchina+easylist.txt: 34941) -.adclickmedia.com -# ||adclickafrica.com^$third-party (easylistchina+easylist.txt: 34940) -.adclickafrica.com -# ||adclick.pk^$third-party (easylistchina+easylist.txt: 34939) -.adclick.pk -# ||adclick.lv^$third-party (easylistchina+easylist.txt: 34938) -.adclick.lv -# ||adchoice.co.za^$third-party (easylistchina+easylist.txt: 34937) -.adchoice.co.za -# ||adchemical.com^$third-party (easylistchina+easylist.txt: 34936) -.adchemical.com -# ||adchap.com^$third-party (easylistchina+easylist.txt: 34935) -.adchap.com -# ||adcfrthyo.tk^$third-party (easylistchina+easylist.txt: 34934) -.adcfrthyo.tk -# ||adcentriconline.com^$third-party (easylistchina+easylist.txt: 34933) -.adcentriconline.com -# ||adcdnx.com^$third-party (easylistchina+easylist.txt: 34932) -.adcdnx.com -# ||adcde.com^$third-party (easylistchina+easylist.txt: 34931) -.adcde.com -# ||adcastplus.net^$third-party (easylistchina+easylist.txt: 34930) -.adcastplus.net -# ||adcash.com^$third-party (easylistchina+easylist.txt: 34929) -.adcash.com -# ||adcade.com^$third-party (easylistchina+easylist.txt: 34928) -.adcade.com -# ||adbuyer.com^$third-party (easylistchina+easylist.txt: 34927) -.adbuyer.com -# ||adbutler.com^$third-party (easylistchina+easylist.txt: 34926) -.adbutler.com -# ||adbureau.net^$third-party (easylistchina+easylist.txt: 34925) -.adbureau.net -# ||adbull.com^$third-party (easylistchina+easylist.txt: 34924) -.adbull.com -# ||adbrook.com^$third-party (easylistchina+easylist.txt: 34923) -.adbrook.com -# ||adbroo.com^$third-party (easylistchina+easylist.txt: 34922) -.adbroo.com -# ||adbrite.com^$third-party (easylistchina+easylist.txt: 34921) -.adbrite.com -# ||adbrau.com^$third-party (easylistchina+easylist.txt: 34920) -.adbrau.com -# ||adbooth.net^$third-party (easylistchina+easylist.txt: 34919) -.adbooth.net -# ||adboost.com^$third-party (easylistchina+easylist.txt: 34918) -.adboost.com -# ||adblade.com^$third-party (easylistchina+easylist.txt: 34917) -.adblade.com -# ||adbasket.net^$third-party (easylistchina+easylist.txt: 34916) -.adbasket.net -# ||adbard.net^$third-party (easylistchina+easylist.txt: 34915) -.adbard.net -# ||adapd.com^$third-party (easylistchina+easylist.txt: 34914) -.adapd.com -# ||adap.tv^$~object-subrequest,third-party (easylistchina+easylist.txt: 34913) -.adap.tv -# ||adaos-ads.net^$third-party (easylistchina+easylist.txt: 34912) -.adaos-ads.net -# ||adagora.com^$third-party (easylistchina+easylist.txt: 34911) -.adagora.com -# ||adadvisor.net^$third-party (easylistchina+easylist.txt: 34910) -.adadvisor.net -# ||adaction.se^$third-party (easylistchina+easylist.txt: 34909) -.adaction.se -# ||adacado.com^$third-party (easylistchina+easylist.txt: 34908) -.adacado.com -# ||ad6media.fr^$third-party (easylistchina+easylist.txt: 34907) -.ad6media.fr -# ||ad4game.com^$third-party (easylistchina+easylist.txt: 34906) -.ad4game.com -# ||ad2up.com^$third-party (easylistchina+easylist.txt: 34905) -.ad2up.com -# ||ad2adnetwork.biz^$third-party (easylistchina+easylist.txt: 34903) -.ad2adnetwork.biz -# ||ad2387.com^$third-party (easylistchina+easylist.txt: 34902) -.ad2387.com -# ||ad20.net^$third-party (easylistchina+easylist.txt: 34901) -.ad20.net -# ||ad134m.com^$third-party (easylistchina+easylist.txt: 34900) -.ad134m.com -# ||ad132m.com^$third-party (easylistchina+easylist.txt: 34899) -.ad132m.com -# ||ad131m.com^$third-party (easylistchina+easylist.txt: 34898) -.ad131m.com -# ||ad129m.com^$third-party (easylistchina+easylist.txt: 34897) -.ad129m.com -# ||ad128m.com^$third-party (easylistchina+easylist.txt: 34896) -.ad128m.com -# ||ad127m.com^$third-party (easylistchina+easylist.txt: 34895) -.ad127m.com -# ||ad125m.com^$third-party (easylistchina+easylist.txt: 34894) -.ad125m.com -# ||ad123m.com^$third-party (easylistchina+easylist.txt: 34893) -.ad123m.com -# ||ad122m.com^$third-party (easylistchina+easylist.txt: 34892) -.ad122m.com -# ||ad121m.com^$third-party (easylistchina+easylist.txt: 34891) -.ad121m.com -# ||ad120m.com^$third-party (easylistchina+easylist.txt: 34890) -.ad120m.com -# ||ad.yieldpartners.com^$third-party (easylistchina+easylist.txt: 34889) -.ad.yieldpartners.com -# ||ad.pxlad.io^$third-party (easylistchina+easylist.txt: 34888) -.ad.pxlad.io -# ||ad.mo.doubleclick.net/dartproxy/$third-party (easylistchina+easylist.txt: 34887) -.ad.mo.doubleclick.net/dartproxy/ -# ||ad.linksynergy.com^$third-party (easylistchina+easylist.txt: 34886) -.ad.linksynergy.com -# ||ad.doubleclick.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 34885) -.ad.doubleclick.net -# ||ad.atdmt.com/i/a.js$third-party (easylistchina+easylist.txt: 34884) -.ad.atdmt.com/i/a\.js -# ||ad.atdmt.com/i/a.html$third-party (easylistchina+easylist.txt: 34883) -.ad.atdmt.com/i/a\.html -# ||ad-vice.biz^$third-party (easylistchina+easylist.txt: 34882) -.ad-vice.biz -# ||ad-stir.com^$third-party (easylistchina+easylist.txt: 34881) -.ad-stir.com -# ||ad-srv.net^$third-party (easylistchina+easylist.txt: 34880) -.ad-srv.net -# ||ad-sponsor.com^$third-party (easylistchina+easylist.txt: 34879) -.ad-sponsor.com -# ||ad-serverparc.nl^$third-party (easylistchina+easylist.txt: 34878) -.ad-serverparc.nl -# ||ad-server.co.za^$third-party (easylistchina+easylist.txt: 34877) -.ad-server.co.za -# ||ad-media.org^$third-party (easylistchina+easylist.txt: 34876) -.ad-media.org -# ||ad-maven.com^$third-party (easylistchina+easylist.txt: 34875) -.ad-maven.com -# ||ad-m.asia^$third-party (easylistchina+easylist.txt: 34874) -.ad-m.asia -# ||ad-indicator.com^$third-party (easylistchina+easylist.txt: 34873) -.ad-indicator.com -# ||ad-gbn.com^$third-party (easylistchina+easylist.txt: 34872) -.ad-gbn.com -# ||ad-flow.com^$third-party (easylistchina+easylist.txt: 34871) -.ad-flow.com -# ||ad-delivery.net^$third-party (easylistchina+easylist.txt: 34870) -.ad-delivery.net -# ||ad-clicks.com^$third-party (easylistchina+easylist.txt: 34869) -.ad-clicks.com -# ||ad-bay.com^$third-party (easylistchina+easylist.txt: 34868) -.ad-bay.com -# ||ad-balancer.net^$third-party (easylistchina+easylist.txt: 34867) -.ad-balancer.net -# ||ad-back.net^$third-party (easylistchina+easylist.txt: 34866) -.ad-back.net -# ||activedancer.com^$third-party (easylistchina+easylist.txt: 34865) -.activedancer.com -# ||actiondesk.com^$third-party (easylistchina+easylist.txt: 34864) -.actiondesk.com -# ||acronym.com^$third-party (easylistchina+easylist.txt: 34863) -.acronym.com -# ||acf-webmaster.net^$third-party (easylistchina+easylist.txt: 34862) -.acf-webmaster.net -# ||accuserveadsystem.com^$third-party (easylistchina+easylist.txt: 34861) -.accuserveadsystem.com -# ||accounts.pkr.com^$third-party (easylistchina+easylist.txt: 34860) -.accounts.pkr.com -# ||accmgr.com^$third-party (easylistchina+easylist.txt: 34859) -.accmgr.com -# ||access-mc.com^$third-party (easylistchina+easylist.txt: 34858) -.access-mc.com -# ||accelacomm.com^$third-party (easylistchina+easylist.txt: 34857) -.accelacomm.com -# ||abtracker.us^$third-party (easylistchina+easylist.txt: 34856) -.abtracker.us -# ||aboutads.quantcast.com^$third-party (easylistchina+easylist.txt: 34855) -.aboutads.quantcast.com -# ||abnad.net^$third-party (easylistchina+easylist.txt: 34854) -.abnad.net -# ||abletomeet.com^$third-party (easylistchina+easylist.txt: 34853) -.abletomeet.com -# ||aaa.dv0.info^$third-party (easylistchina+easylist.txt: 34852) -.aaa.dv0.info -# ||aaa.at4.info^$third-party (easylistchina+easylist.txt: 34851) -.aaa.at4.info -# ||aa.voice2page.com^$third-party (easylistchina+easylist.txt: 34850) -.aa.voice2page.com -# ||a5pub.com^$third-party (easylistchina+easylist.txt: 34849) -.a5pub.com -# ||a4dtrk.com^$third-party (easylistchina+easylist.txt: 34848) -.a4dtrk.com -# ||a433.com^$third-party (easylistchina+easylist.txt: 34847) -.a433.com -# ||a3pub.com^$third-party (easylistchina+easylist.txt: 34846) -.a3pub.com -# ||a2pub.com^$third-party (easylistchina+easylist.txt: 34845) -.a2pub.com -# ||a2dfp.net^$third-party (easylistchina+easylist.txt: 34844) -.a2dfp.net -# ||a.raasnet.com^$third-party (easylistchina+easylist.txt: 34843) -.a.raasnet.com -# ||a.ligatus.com^$third-party (easylistchina+easylist.txt: 34842) -.a.ligatus.com -# ||a.adroll.com^$third-party (easylistchina+easylist.txt: 34841) -.a.adroll.com -# ||a-static.com^$third-party (easylistchina+easylist.txt: 34840) -.a-static.com -# ||a-ads.com^$third-party (easylistchina+easylist.txt: 34839) -.a-ads.com -# ||9ts3tpia.com^$third-party (easylistchina+easylist.txt: 34838) -.9ts3tpia.com -# ||9d63c80da.pw^$third-party (easylistchina+easylist.txt: 34837) -.9d63c80da.pw -# ||97d73lsi.com^$third-party (easylistchina+easylist.txt: 34836) -.97d73lsi.com -# ||8yxupue8.com^$third-party (easylistchina+easylist.txt: 34835) -.8yxupue8.com -# ||888promos.com^$third-party (easylistchina+easylist.txt: 34834) -.888promos.com -# ||888medianetwork.com^$third-party (easylistchina+easylist.txt: 34833) -.888medianetwork.com -# ||888media.net^$third-party (easylistchina+easylist.txt: 34832) -.888media.net -# ||82d914.se^$third-party (easylistchina+easylist.txt: 34830) -.82d914.se -# ||7u8a8i88.com^$third-party (easylistchina+easylist.txt: 34829) -.7u8a8i88.com -# ||7search.com^$third-party (easylistchina+easylist.txt: 34828) -.7search.com -# ||7pud.com^$third-party (easylistchina+easylist.txt: 34827) -.7pud.com -# ||7insight.com^$third-party (easylistchina+easylist.txt: 34826) -.7insight.com -# ||78.140.131.214^ (easylistchina+easylist.txt: 34825) -.78.140.131.214 -# ||78.138.126.253^$third-party (easylistchina+easylist.txt: 34824) -.78.138.126.253 -# ||778669.com^$third-party (easylistchina+easylist.txt: 34823) -.778669.com -# ||777seo.com^$third-party (easylistchina+easylist.txt: 34822) -.777seo.com -# ||74.117.182.77^ (easylistchina+easylist.txt: 34821) -.74.117.182.77 -# ||64.20.60.123^$third-party (easylistchina+easylist.txt: 34820) -.64.20.60.123 -# ||63.225.61.4^$third-party (easylistchina+easylist.txt: 34819) -.63.225.61.4 -# ||600z.com^$third-party (easylistchina+easylist.txt: 34817) -.600z.com -# ||5gl1x9qc.com^$third-party (easylistchina+easylist.txt: 34816) -.5gl1x9qc.com -# ||5clickcashsoftware.com^$third-party (easylistchina+easylist.txt: 34815) -.5clickcashsoftware.com -# ||5advertise.com^$third-party (easylistchina+easylist.txt: 34814) -.5advertise.com -# ||5362367e.info^$third-party (easylistchina+easylist.txt: 34813) -.5362367e.info -# ||50.7.243.123^$third-party (easylistchina+easylist.txt: 34812) -.50.7.243.123 -# ||4wnet.com^$third-party (easylistchina+easylist.txt: 34811) -.4wnet.com -# ||4uvjosuc.com^$third-party (easylistchina+easylist.txt: 34810) -.4uvjosuc.com -# ||4e43ac9c.info^$third-party (easylistchina+easylist.txt: 34809) -.4e43ac9c.info -# ||4dsply.com^$third-party (easylistchina+easylist.txt: 34808) -.4dsply.com -# ||4affiliate.net^$third-party (easylistchina+easylist.txt: 34807) -.4affiliate.net -# ||46.165.197.231^ (easylistchina+easylist.txt: 34805) -.46.165.197.231 -# ||46.165.197.153^ (easylistchina+easylist.txt: 34804) -.46.165.197.153 -# ||43plc.com^$third-party (easylistchina+easylist.txt: 34803) -.43plc.com -# ||3t7euflv.com^$third-party (easylistchina+easylist.txt: 34802) -.3t7euflv.com -# ||3redlightfix.com^$third-party (easylistchina+easylist.txt: 34801) -.3redlightfix.com -# ||3rdads.com^$third-party (easylistchina+easylist.txt: 34800) -.3rdads.com -# ||3omb.com^$third-party (easylistchina+easylist.txt: 34799) -.3omb.com -# ||3lr67y45.com^$third-party (easylistchina+easylist.txt: 34798) -.3lr67y45.com -# ||3lift.com^$third-party (easylistchina+easylist.txt: 34797) -.3lift.com -# ||3cnce854.com^$third-party (easylistchina+easylist.txt: 34796) -.3cnce854.com -# ||365sbaffiliates.com^$third-party (easylistchina+easylist.txt: 34795) -.365sbaffiliates.com -# ||360yield.com^$third-party (easylistchina+easylist.txt: 34794) -.360yield.com -# ||360popads.com^$third-party (easylistchina+easylist.txt: 34793) -.360popads.com -# ||360installer.com^$third-party (easylistchina+easylist.txt: 34792) -.360installer.com -# ||360adstrack.com^$third-party (easylistchina+easylist.txt: 34791) -.360adstrack.com -# ||360ads.com^$third-party (easylistchina+easylist.txt: 34790) -.360ads.com -# ||350media.com^$third-party (easylistchina+easylist.txt: 34789) -.350media.com -# ||3393.com^$third-party (easylistchina+easylist.txt: 34788) -.3393.com -# ||32b4oilo.com^$third-party (easylistchina+easylist.txt: 34787) -.32b4oilo.com -# ||2xbpub.com^$third-party (easylistchina+easylist.txt: 34786) -.2xbpub.com -# ||2mdn.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 34785) -.2mdn.net -# ||2mdn.net/dot.gif$object-subrequest,third-party (easylistchina+easylist.txt: 34783) -.2mdn.net/dot\.gif -# ||2mdn.info^$third-party (easylistchina+easylist.txt: 34782) -.2mdn.info -# ||2dpt.com^$third-party (easylistchina+easylist.txt: 34781) -.2dpt.com -# ||2d4c3872.info^$third-party (easylistchina+easylist.txt: 34780) -.2d4c3872.info -# ||2d4c3870.info^$third-party (easylistchina+easylist.txt: 34779) -.2d4c3870.info -# ||254a.com^$third-party (easylistchina+easylist.txt: 34778) -.254a.com -# ||247realmedia.com^$third-party (easylistchina+easylist.txt: 34777) -.247realmedia.com -# ||213.163.70.183^$third-party (easylistchina+easylist.txt: 34776) -.213.163.70.183 -# ||20dollars2surf.com^$third-party (easylistchina+easylist.txt: 34775) -.20dollars2surf.com -# ||206ads.com^$third-party (easylistchina+easylist.txt: 34773) -.206ads.com -# ||1yk851od.com^$third-party (easylistchina+easylist.txt: 34771) -.1yk851od.com -# ||1sadx.net^$third-party (easylistchina+easylist.txt: 34770) -.1sadx.net -# ||1phads.com^$third-party (easylistchina+easylist.txt: 34769) -.1phads.com -# ||1nimo.com^$third-party (easylistchina+easylist.txt: 34768) -.1nimo.com -# ||1empiredirect.com^$third-party (easylistchina+easylist.txt: 34767) -.1empiredirect.com -# ||1e0y.xyz^$third-party (easylistchina+easylist.txt: 34766) -.1e0y.xyz -# ||1clickdownloads.com^$third-party (easylistchina+easylist.txt: 34765) -.1clickdownloads.com -# ||1ccbt.com^$third-party (easylistchina+easylist.txt: 34764) -.1ccbt.com -# ||194.71.107.25^$third-party (easylistchina+easylist.txt: 34762) -.194.71.107.25 -# ||18clicks.com^$third-party (easylistchina+easylist.txt: 34761) -.18clicks.com -# ||188server.com^$third-party (easylistchina+easylist.txt: 34760) -.188server.com -# ||17a898bb.info^$third-party (easylistchina+easylist.txt: 34758) -.17a898bb.info -# ||17a898b9.info^$third-party (easylistchina+easylist.txt: 34757) -.17a898b9.info -# ||174.142.194.177^$third-party (easylistchina+easylist.txt: 34756) -.174.142.194.177 -# ||15f3c01c.info^$third-party (easylistchina+easylist.txt: 34755) -.15f3c01c.info -# ||15f3c01a.info^$third-party (easylistchina+easylist.txt: 34754) -.15f3c01a.info -# ||152media.com^$third-party (easylistchina+easylist.txt: 34753) -.152media.com -# ||12place.com^$third-party (easylistchina+easylist.txt: 34752) -.12place.com -# ||123date.me^$third-party (easylistchina+easylist.txt: 34751) -.123date.me -# ||1100i.com^$third-party (easylistchina+easylist.txt: 34750) -.1100i.com -# ||10pipsaffiliates.com^$third-party (easylistchina+easylist.txt: 34749) -.10pipsaffiliates.com -# ||10fbb07a4b0.se^$third-party (easylistchina+easylist.txt: 34748) -.10fbb07a4b0.se -# ||103092804.com^$third-party (easylistchina+easylist.txt: 34747) -.103092804.com -# ||101m3.com^$third-party (easylistchina+easylist.txt: 34746) -.101m3.com -# ||0icep80f.com^$third-party (easylistchina+easylist.txt: 34745) -.0icep80f.com -# ||007-gateway.com^$third-party (easylistchina+easylist.txt: 34744) -.007-gateway.com -# _popunder+$popup (easylistchina+easylist.txt: 17656) -/.*_popunder\+ -# ?zoneid=*_bannerid=$popup (easylistchina+easylist.txt: 17655) -/.*\?zoneid=.*_bannerid= -# ?iiadext=$popup (easylistchina+easylist.txt: 17654) -/.*\?iiadext= -# ?bannerid=*&punder=$popup (easylistchina+easylist.txt: 17653) -/.*\?bannerid=.*&punder= -# ?AdUrl=$popup (easylistchina+easylist.txt: 17652) -/.*\?AdUrl= -# =popunders&$popup (easylistchina+easylist.txt: 17651) -/.*=popunders& -# =popunder&$popup (easylistchina+easylist.txt: 17650) -/.*=popunder& -# ://adv.$popup (easylistchina+easylist.txt: 17649) -/.*://adv\. -adv.*. -# ://ads.$popup (easylistchina+easylist.txt: 17648) -/.*://ads\. -ads.*. -# /yesbaby.$popup (easylistchina+easylist.txt: 17647) -/(.*/)?yesbaby\. -yesbaby.*. -# /srvclk.php?$popup (easylistchina+easylist.txt: 17646) -/(.*/)?srvclk\.php\? -# /spopunder^$popup (easylistchina+easylist.txt: 17645) -/(.*/)?spopunder[^\w%.-] -# /showads/*$popup (easylistchina+easylist.txt: 17644) -/(.*/)?showads/.* -# /servlet/ajrotator/*$popup (easylistchina+easylist.txt: 17643) -/(.*/)?servlet/ajrotator/.* -# /rotator.php?$popup (easylistchina+easylist.txt: 17642) -/(.*/)?rotator\.php\? -# /redirect.spark?$popup,third-party (easylistchina+easylist.txt: 17641) -/(.*/)?redirect\.spark\? -# /Redirect.engine$popup (easylistchina+easylist.txt: 17640) -/(.*/)?Redirect\.engine -Redirect.engine*. -# /Redirect.eng?$popup (easylistchina+easylist.txt: 17639) -/(.*/)?Redirect\.eng\? -# /realmedia/ads/*$popup (easylistchina+easylist.txt: 17638) -/(.*/)?realmedia/ads/.* -# /punder.php$popup (easylistchina+easylist.txt: 17637) -/(.*/)?punder\.php -punder.php*. -# /promoredirect?*&campaign=*&zone=$popup (easylistchina+easylist.txt: 17636) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /popupads.$popup (easylistchina+easylist.txt: 17635) -/(.*/)?popupads\. -popupads.*. -# /popunder_$popup (easylistchina+easylist.txt: 17634) -/(.*/)?popunder_ -# /popunder.$popup (easylistchina+easylist.txt: 17633) -/(.*/)?popunder\. -popunder.*. -# /popout.$popup (easylistchina+easylist.txt: 17632) -/(.*/)?popout\. -popout.*. -# /lr.php?zoneid=$popup (easylistchina+easylist.txt: 17631) -/(.*/)?lr\.php\?zoneid= -# /fp.engine?$popup,third-party (easylistchina+easylist.txt: 17630) -/(.*/)?fp\.engine\? -# /bani/index.php?id=$popup (easylistchina+easylist.txt: 17629) -/(.*/)?bani/index\.php\?id= -# /afu.php?$popup (easylistchina+easylist.txt: 17628) -/(.*/)?afu\.php\? -# /advlink.$popup (easylistchina+easylist.txt: 17627) -/(.*/)?advlink\. -advlink.*. -# /adsynserveuserid=$popup (easylistchina+easylist.txt: 17626) -/(.*/)?adsynserveuserid= -# /adstream_sx.ads/*$popup (easylistchina+easylist.txt: 17625) -/(.*/)?adstream_sx\.ads/.* -# /adserver.$popup (easylistchina+easylist.txt: 17624) -/(.*/)?adserver\. -adserver.*. -# /adServe/sa?cid=$popup (easylistchina+easylist.txt: 17623) -/(.*/)?adServe/sa\?cid= -# /ads.htm$popup (easylistchina+easylist.txt: 17622) -/(.*/)?ads\.htm -ads.htm*. -# /AdHandler.aspx?$popup (easylistchina+easylist.txt: 17621) -/(.*/)?AdHandler\.aspx\? -# /adclick.$popup (easylistchina+easylist.txt: 17620) -/(.*/)?adclick\. -adclick.*. -# /ad_pop.php?$popup (easylistchina+easylist.txt: 17619) -/(.*/)?ad_pop\.php\? -# /ad132m/*$popup (easylistchina+easylist.txt: 17618) -/(.*/)?ad132m/.* -# /ad/window.php?$popup (easylistchina+easylist.txt: 17617) -/(.*/)?ad/window\.php\? -# /ad/display.php$popup (easylistchina+easylist.txt: 17616) -/(.*/)?ad/display\.php -# /ad.php|$popup (easylistchina+easylist.txt: 17615) -/(.*/)?ad\.php$ -ad.php -# /ad.php?zone$popup (easylistchina+easylist.txt: 17614) -/(.*/)?ad\.php\?zone -# /ad.php?tag=$popup (easylistchina+easylist.txt: 17613) -/(.*/)?ad\.php\?tag= -# /a/display.php?$popup (easylistchina+easylist.txt: 17612) -/(.*/)?a/display\.php\? -# /?reef=$popup (easylistchina+easylist.txt: 17611) -/(.*/)?\?reef= -# /?placement=*&redirect$popup (easylistchina+easylist.txt: 17610) -/(.*/)?\?placement=.*&redirect -# .engine?PlacementId=$popup (easylistchina+easylist.txt: 17609) -/.*\.engine\?PlacementId= -# .com/ads?$popup (easylistchina+easylist.txt: 17608) -/.*\.com/ads\? -.*.com/ads\? -# .com/?adv=$popup (easylistchina+easylist.txt: 17607) -/.*\.com/\?adv= -.*.com/\?adv= -# .co/ads/$popup (easylistchina+easylist.txt: 17606) -/.*\.co/ads/ -.*.co/ads/ -# -ads-campaign/$popup (easylistchina+easylist.txt: 17605) -/.*-ads-campaign/ -.*-ads-campaign -# &program=revshare&$popup (easylistchina+easylist.txt: 17604) -/.*&program=revshare& -# &popunder=$popup (easylistchina+easylist.txt: 17603) -/.*&popunder= -# &link_type=offer$popup,third-party (easylistchina+easylist.txt: 17602) -/.*&link_type=offer -# _a468x60. (easylistchina+easylist.txt: 17600) -/.*_a468x60\. -# _980x100. (easylistchina+easylist.txt: 17599) -/.*_980x100\. -# _970x30_ (easylistchina+easylist.txt: 17598) -/.*_970x30_ -# _960_90. (easylistchina+easylist.txt: 17597) -/.*_960_90\. -# _936x60. (easylistchina+easylist.txt: 17596) -/.*_936x60\. -# _900x350. (easylistchina+easylist.txt: 17595) -/.*_900x350\. -# _80x468. (easylistchina+easylist.txt: 17594) -/.*_80x468\. -# _800x80_ (easylistchina+easylist.txt: 17593) -/.*_800x80_ -# _800x100. (easylistchina+easylist.txt: 17592) -/.*_800x100\. -# _798x99_ (easylistchina+easylist.txt: 17591) -/.*_798x99_ -# _796x110_ (easylistchina+easylist.txt: 17590) -/.*_796x110_ -# _768x90_ (easylistchina+easylist.txt: 17589) -/.*_768x90_ -# _764x70_ (easylistchina+easylist.txt: 17588) -/.*_764x70_ -# _764x70. (easylistchina+easylist.txt: 17587) -/.*_764x70\. -# _760x90_ (easylistchina+easylist.txt: 17586) -/.*_760x90_ -# _760x100. (easylistchina+easylist.txt: 17585) -/.*_760x100\. -# _750x100. (easylistchina+easylist.txt: 17584) -/.*_750x100\. -# _745_90. (easylistchina+easylist.txt: 17583) -/.*_745_90\. -# _745_60. (easylistchina+easylist.txt: 17582) -/.*_745_60\. -# _730x90_ (easylistchina+easylist.txt: 17581) -/.*_730x90_ -# _730x60_ (easylistchina+easylist.txt: 17580) -/.*_730x60_ -# _730_440. (easylistchina+easylist.txt: 17579) -/.*_730_440\. -# _728x90v1. (easylistchina+easylist.txt: 17578) -/.*_728x90v1\. -# _728x90px_ (easylistchina+easylist.txt: 17577) -/.*_728x90px_ -# _728x90px. (easylistchina+easylist.txt: 17576) -/.*_728x90px\. -# _728x90px- (easylistchina+easylist.txt: 17575) -/.*_728x90px- -# _728x90pg_ (easylistchina+easylist.txt: 17574) -/.*_728x90pg_ -# _728x90b_ (easylistchina+easylist.txt: 17573) -/.*_728x90b_ -# _728x90a_ (easylistchina+easylist.txt: 17572) -/.*_728x90a_ -# _728x90a. (easylistchina+easylist.txt: 17571) -/.*_728x90a\. -# _728x90_ (easylistchina+easylist.txt: 17570) -/.*_728x90_ -# _728x901. (easylistchina+easylist.txt: 17569) -/.*_728x901\. -# _728x90/ (easylistchina+easylist.txt: 17568) -/.*_728x90/ -# _728x90. (easylistchina+easylist.txt: 17567) -/.*_728x90\. -# _728x90- (easylistchina+easylist.txt: 17566) -/.*_728x90- -# _728x90& (easylistchina+easylist.txt: 17565) -/.*_728x90& -# _728x60. (easylistchina+easylist.txt: 17564) -/.*_728x60\. -# _728x150. (easylistchina+easylist.txt: 17563) -/.*_728x150\. -# _728x-90. (easylistchina+easylist.txt: 17562) -/.*_728x-90\. -# _728by90_ (easylistchina+easylist.txt: 17561) -/.*_728by90_ -# _728_x_90_ (easylistchina+easylist.txt: 17560) -/.*_728_x_90_ -# _728_90_ (easylistchina+easylist.txt: 17559) -/.*_728_90_ -# _728_90. (easylistchina+easylist.txt: 17558) -/.*_728_90\. -# _728.htm (easylistchina+easylist.txt: 17557) -/.*_728\.htm -# _728-90_ (easylistchina+easylist.txt: 17556) -/.*_728-90_ -# _728-90. (easylistchina+easylist.txt: 17555) -/.*_728-90\. -# _720x90_ (easylistchina+easylist.txt: 17554) -/.*_720x90_ -# _720x90. (easylistchina+easylist.txt: 17553) -/.*_720x90\. -# _720_90. (easylistchina+easylist.txt: 17552) -/.*_720_90\. -# _700x200. (easylistchina+easylist.txt: 17551) -/.*_700x200\. -# _700_200_ (easylistchina+easylist.txt: 17550) -/.*_700_200_ -# _700_150_ (easylistchina+easylist.txt: 17549) -/.*_700_150_ -# _700_100_ (easylistchina+easylist.txt: 17548) -/.*_700_100_ -# _682x90_ (easylistchina+easylist.txt: 17547) -/.*_682x90_ -# _680x93_ (easylistchina+easylist.txt: 17546) -/.*_680x93_ -# _672x120_ (easylistchina+easylist.txt: 17545) -/.*_672x120_ -# _650x80_ (easylistchina+easylist.txt: 17544) -/.*_650x80_ -# _650x350. (easylistchina+easylist.txt: 17543) -/.*_650x350\. -# _638x200_ (easylistchina+easylist.txt: 17542) -/.*_638x200_ -# _620x203_ (easylistchina+easylist.txt: 17541) -/.*_620x203_ -# _600x90. (easylistchina+easylist.txt: 17540) -/.*_600x90\. -# _600x80. (easylistchina+easylist.txt: 17539) -/.*_600x80\. -# _600x180. (easylistchina+easylist.txt: 17538) -/.*_600x180\. -# _600x160. (easylistchina+easylist.txt: 17537) -/.*_600x160\. -# _600x120_ (easylistchina+easylist.txt: 17536) -/.*_600x120_ -# _600-90. (easylistchina+easylist.txt: 17535) -/.*_600-90\. -# _590x105. (easylistchina+easylist.txt: 17534) -/.*_590x105\. -# _585x75_ (easylistchina+easylist.txt: 17533) -/.*_585x75_ -# _585x75- (easylistchina+easylist.txt: 17532) -/.*_585x75- -# _580x100. (easylistchina+easylist.txt: 17531) -/.*_580x100\. -# _555x70. (easylistchina+easylist.txt: 17530) -/.*_555x70\. -# _550x150. (easylistchina+easylist.txt: 17529) -/.*_550x150\. -# _540_70_ (easylistchina+easylist.txt: 17528) -/.*_540_70_ -# _540_70. (easylistchina+easylist.txt: 17527) -/.*_540_70\. -# _500x440. (easylistchina+easylist.txt: 17526) -/.*_500x440\. -# _490-90_ (easylistchina+easylist.txt: 17525) -/.*_490-90_ -# _486x60_ (easylistchina+easylist.txt: 17524) -/.*_486x60_ -# _486x60. (easylistchina+easylist.txt: 17523) -/.*_486x60\. -# _480x60_ (easylistchina+easylist.txt: 17522) -/.*_480x60_ -# _480x60/ (easylistchina+easylist.txt: 17521) -/.*_480x60/ -# _480x60. (easylistchina+easylist.txt: 17520) -/.*_480x60\. -# _480x60- (easylistchina+easylist.txt: 17519) -/.*_480x60- -# _480_80_ (easylistchina+easylist.txt: 17518) -/.*_480_80_ -# _480_60. (easylistchina+easylist.txt: 17517) -/.*_480_60\. -# _468x90_ (easylistchina+easylist.txt: 17516) -/.*_468x90_ -# _468x90. (easylistchina+easylist.txt: 17515) -/.*_468x90\. -# _468x80_ (easylistchina+easylist.txt: 17514) -/.*_468x80_ -# _468x80/ (easylistchina+easylist.txt: 17513) -/.*_468x80/ -# _468x80. (easylistchina+easylist.txt: 17512) -/.*_468x80\. -# _468x80- (easylistchina+easylist.txt: 17511) -/.*_468x80- -# _468x6o_ (easylistchina+easylist.txt: 17510) -/.*_468x6o_ -# _468x60px_ (easylistchina+easylist.txt: 17509) -/.*_468x60px_ -# _468x60b. (easylistchina+easylist.txt: 17508) -/.*_468x60b\. -# _468x60_ (easylistchina+easylist.txt: 17507) -/.*_468x60_ -# _468x60/ (easylistchina+easylist.txt: 17506) -/.*_468x60/ -# _468x60. (easylistchina+easylist.txt: 17505) -/.*_468x60\. -# _468x60- (easylistchina+easylist.txt: 17504) -/.*_468x60- -# _468x120. (easylistchina+easylist.txt: 17503) -/.*_468x120\. -# _468x100_ (easylistchina+easylist.txt: 17502) -/.*_468x100_ -# _468x100. (easylistchina+easylist.txt: 17501) -/.*_468x100\. -# _468x060_ (easylistchina+easylist.txt: 17500) -/.*_468x060_ -# _468x060. (easylistchina+easylist.txt: 17499) -/.*_468x060\. -# _468x060- (easylistchina+easylist.txt: 17498) -/.*_468x060- -# _468_80_ (easylistchina+easylist.txt: 17497) -/.*_468_80_ -# _468_80. (easylistchina+easylist.txt: 17496) -/.*_468_80\. -# _468_60_ (easylistchina+easylist.txt: 17495) -/.*_468_60_ -# _468_60. (easylistchina+easylist.txt: 17494) -/.*_468_60\. -# _468_60- (easylistchina+easylist.txt: 17493) -/.*_468_60- -# _468.htm (easylistchina+easylist.txt: 17492) -/.*_468\.htm -# _468.gif (easylistchina+easylist.txt: 17491) -/.*_468\.gif -# _468-60. (easylistchina+easylist.txt: 17490) -/.*_468-60\. -# _465x110_ (easylistchina+easylist.txt: 17489) -/.*_465x110_ -# _460x60. (easylistchina+easylist.txt: 17488) -/.*_460x60\. -# _460_60. (easylistchina+easylist.txt: 17487) -/.*_460_60\. -# _438x60_ (easylistchina+easylist.txt: 17486) -/.*_438x60_ -# _438x60. (easylistchina+easylist.txt: 17485) -/.*_438x60\. -# _438x50. (easylistchina+easylist.txt: 17484) -/.*_438x50\. -# _420x80_ (easylistchina+easylist.txt: 17483) -/.*_420x80_ -# _420x80. (easylistchina+easylist.txt: 17482) -/.*_420x80\. -# _400x68. (easylistchina+easylist.txt: 17481) -/.*_400x68\. -# _400x60. (easylistchina+easylist.txt: 17480) -/.*_400x60\. -# _400-80. (easylistchina+easylist.txt: 17479) -/.*_400-80\. -# _370x270. (easylistchina+easylist.txt: 17478) -/.*_370x270\. -# _350x100. (easylistchina+easylist.txt: 17477) -/.*_350x100\. -# _350_100_ (easylistchina+easylist.txt: 17476) -/.*_350_100_ -# _350_100. (easylistchina+easylist.txt: 17475) -/.*_350_100\. -# _336x850. (easylistchina+easylist.txt: 17474) -/.*_336x850\. -# _336x280s. (easylistchina+easylist.txt: 17473) -/.*_336x280s\. -# _336x280a. (easylistchina+easylist.txt: 17472) -/.*_336x280a\. -# _336x280_ (easylistchina+easylist.txt: 17471) -/.*_336x280_ -# _336x120. (easylistchina+easylist.txt: 17470) -/.*_336x120\. -# _323x120_ (easylistchina+easylist.txt: 17469) -/.*_323x120_ -# _320x250_ (easylistchina+easylist.txt: 17468) -/.*_320x250_ -# _300x600_ (easylistchina+easylist.txt: 17467) -/.*_300x600_ -# _300x600. (easylistchina+easylist.txt: 17466) -/.*_300x600\. -# _300x250v2. (easylistchina+easylist.txt: 17465) -/.*_300x250v2\. -# _300x250px. (easylistchina+easylist.txt: 17464) -/.*_300x250px\. -# _300x250b. (easylistchina+easylist.txt: 17463) -/.*_300x250b\. -# _300x250a_ (easylistchina+easylist.txt: 17462) -/.*_300x250a_ -# _300x250_ (easylistchina+easylist.txt: 17461) -/.*_300x250_ -# _300x250. (easylistchina+easylist.txt: 17460) -/.*_300x250\. -# _300x250- (easylistchina+easylist.txt: 17459) -/.*_300x250- -# _300x160_ (easylistchina+easylist.txt: 17458) -/.*_300x160_ -# _300_60_ (easylistchina+easylist.txt: 17457) -/.*_300_60_ -# _300_250_ (easylistchina+easylist.txt: 17456) -/.*_300_250_ -# _300_250. (easylistchina+easylist.txt: 17455) -/.*_300_250\. -# _300.htm (easylistchina+easylist.txt: 17454) -/.*_300\.htm -# _300-250- (easylistchina+easylist.txt: 17453) -/.*_300-250- -# _200x600_ (easylistchina+easylist.txt: 17452) -/.*_200x600_ -# _180x450_ (easylistchina+easylist.txt: 17451) -/.*_180x450_ -# _180x300_ (easylistchina+easylist.txt: 17450) -/.*_180x300_ -# _160x600b. (easylistchina+easylist.txt: 17449) -/.*_160x600b\. -# _160x600_ (easylistchina+easylist.txt: 17448) -/.*_160x600_ -# _160x600/ (easylistchina+easylist.txt: 17447) -/.*_160x600/ -# _160x600. (easylistchina+easylist.txt: 17446) -/.*_160x600\. -# _160x600- (easylistchina+easylist.txt: 17445) -/.*_160x600- -# _160x600& (easylistchina+easylist.txt: 17444) -/.*_160x600& -# _160x500. (easylistchina+easylist.txt: 17443) -/.*_160x500\. -# _160x400. (easylistchina+easylist.txt: 17442) -/.*_160x400\. -# _160x350. (easylistchina+easylist.txt: 17441) -/.*_160x350\. -# _160x300_ (easylistchina+easylist.txt: 17440) -/.*_160x300_ -# _160x300. (easylistchina+easylist.txt: 17439) -/.*_160x300\. -# _160x290. (easylistchina+easylist.txt: 17438) -/.*_160x290\. -# _160x1600. (easylistchina+easylist.txt: 17437) -/.*_160x1600\. -# _160by600_ (easylistchina+easylist.txt: 17436) -/.*_160by600_ -# _160_600_ (easylistchina+easylist.txt: 17435) -/.*_160_600_ -# _160_600. (easylistchina+easylist.txt: 17434) -/.*_160_600\. -# _160-600. (easylistchina+easylist.txt: 17433) -/.*_160-600\. -# _150x700_ (easylistchina+easylist.txt: 17432) -/.*_150x700_ -# _140x600_ (easylistchina+easylist.txt: 17431) -/.*_140x600_ -# _140x600. (easylistchina+easylist.txt: 17430) -/.*_140x600\. -# _125x600_ (easylistchina+easylist.txt: 17429) -/.*_125x600_ -# _120x800a. (easylistchina+easylist.txt: 17428) -/.*_120x800a\. -# _120x60_ (easylistchina+easylist.txt: 17427) -/.*_120x60_ -# _120x600px. (easylistchina+easylist.txt: 17426) -/.*_120x600px\. -# _120x600a. (easylistchina+easylist.txt: 17425) -/.*_120x600a\. -# _120x600_ (easylistchina+easylist.txt: 17424) -/.*_120x600_ -# _120x600. (easylistchina+easylist.txt: 17423) -/.*_120x600\. -# _120x600- (easylistchina+easylist.txt: 17422) -/.*_120x600- -# _120x60. (easylistchina+easylist.txt: 17421) -/.*_120x60\. -# _120x500. (easylistchina+easylist.txt: 17420) -/.*_120x500\. -# _120x240_ (easylistchina+easylist.txt: 17419) -/.*_120x240_ -# _120x240. (easylistchina+easylist.txt: 17418) -/.*_120x240\. -# _120h600. (easylistchina+easylist.txt: 17417) -/.*_120h600\. -# _120_x_600. (easylistchina+easylist.txt: 17416) -/.*_120_x_600\. -# _120_600_ (easylistchina+easylist.txt: 17415) -/.*_120_600_ -# _120_600. (easylistchina+easylist.txt: 17414) -/.*_120_600\. -# _120_60. (easylistchina+easylist.txt: 17413) -/.*_120_60\. -# _115x220. (easylistchina+easylist.txt: 17412) -/.*_115x220\. -# _100x480_ (easylistchina+easylist.txt: 17411) -/.*_100x480_ -# =900x60; (easylistchina+easylist.txt: 17410) -/.*=900x60; -# =888x10; (easylistchina+easylist.txt: 17409) -/.*=888x10; -# =760x120& (easylistchina+easylist.txt: 17408) -/.*=760x120& -# =728x90_ (easylistchina+easylist.txt: 17407) -/.*=728x90_ -# =728x90; (easylistchina+easylist.txt: 17406) -/.*=728x90; -# =728x90/ (easylistchina+easylist.txt: 17405) -/.*=728x90/ -# =728x90, (easylistchina+easylist.txt: 17404) -/.*=728x90, -# =728x90& (easylistchina+easylist.txt: 17403) -/.*=728x90& -# =480x60; (easylistchina+easylist.txt: 17402) -/.*=480x60; -# =468x80_ (easylistchina+easylist.txt: 17401) -/.*=468x80_ -# =468x60_ (easylistchina+easylist.txt: 17400) -/.*=468x60_ -# =468x60; (easylistchina+easylist.txt: 17399) -/.*=468x60; -# =468x60/ (easylistchina+easylist.txt: 17398) -/.*=468x60/ -# =468x60, (easylistchina+easylist.txt: 17397) -/.*=468x60, -# =468x60& (easylistchina+easylist.txt: 17396) -/.*=468x60& -# =440x410; (easylistchina+easylist.txt: 17395) -/.*=440x410; -# =336x280; (easylistchina+easylist.txt: 17394) -/.*=336x280; -# =336x280, (easylistchina+easylist.txt: 17393) -/.*=336x280, -# =300x300; (easylistchina+easylist.txt: 17392) -/.*=300x300; -# =300x250_ (easylistchina+easylist.txt: 17391) -/.*=300x250_ -# =300x250; (easylistchina+easylist.txt: 17390) -/.*=300x250; -# =300x250/ (easylistchina+easylist.txt: 17389) -/.*=300x250/ -# =300x250, (easylistchina+easylist.txt: 17388) -/.*=300x250, -# =300x250& (easylistchina+easylist.txt: 17387) -/.*=300x250& -# =234x60_ (easylistchina+easylist.txt: 17386) -/.*=234x60_ -# =234x60; (easylistchina+easylist.txt: 17385) -/.*=234x60; -# =160x600; (easylistchina+easylist.txt: 17384) -/.*=160x600; -# =160x600, (easylistchina+easylist.txt: 17383) -/.*=160x600, -# =160x600& (easylistchina+easylist.txt: 17382) -/.*=160x600& -# =160x160; (easylistchina+easylist.txt: 17381) -/.*=160x160; -# =120x600; (easylistchina+easylist.txt: 17380) -/.*=120x600; -# =120x600, (easylistchina+easylist.txt: 17379) -/.*=120x600, -# 760x90.jpg| (easylistchina+easylist.txt: 17378) -/.*760x90\.jpg$ -.*760x90.jpg -# 750x90.gif| (easylistchina+easylist.txt: 17377) -/.*750x90\.gif$ -.*750x90.gif -# 750x80.swf| (easylistchina+easylist.txt: 17376) -/.*750x80\.swf$ -.*750x80.swf -# 728x90_2.jpg| (easylistchina+easylist.txt: 17375) -/.*728x90_2\.jpg$ -# 728x90.swf| (easylistchina+easylist.txt: 17374) -/.*728x90\.swf$ -.*728x90.swf -# 728x90.swf? (easylistchina+easylist.txt: 17373) -/.*728x90\.swf\? -# 728x90.png| (easylistchina+easylist.txt: 17372) -/.*728x90\.png$ -.*728x90.png -# 728x90.php| (easylistchina+easylist.txt: 17371) -/.*728x90\.php$ -.*728x90.php -# 728x90.php? (easylistchina+easylist.txt: 17370) -/.*728x90\.php\? -# 728x90.jpg| (easylistchina+easylist.txt: 17369) -/.*728x90\.jpg$ -.*728x90.jpg -# 728x90.htm| (easylistchina+easylist.txt: 17368) -/.*728x90\.htm$ -.*728x90.htm -# 728x90.html| (easylistchina+easylist.txt: 17367) -/.*728x90\.html$ -.*728x90.html -# 728x90.gif| (easylistchina+easylist.txt: 17366) -/.*728x90\.gif$ -.*728x90.gif -# 728x290.gif| (easylistchina+easylist.txt: 17365) -/.*728x290\.gif$ -.*728x290.gif -# 700x200.gif| (easylistchina+easylist.txt: 17364) -/.*700x200\.gif$ -.*700x200.gif -# 700_200.jpg| (easylistchina+easylist.txt: 17363) -/.*700_200\.jpg$ -# 700_200.gif| (easylistchina+easylist.txt: 17362) -/.*700_200\.gif$ -# 480x80.jpg| (easylistchina+easylist.txt: 17361) -/.*480x80\.jpg$ -.*480x80.jpg -# 480x60.png| (easylistchina+easylist.txt: 17360) -/.*480x60\.png$ -.*480x60.png -# 470x60.swf| (easylistchina+easylist.txt: 17359) -/.*470x60\.swf$ -.*470x60.swf -# 470x60.swf? (easylistchina+easylist.txt: 17358) -/.*470x60\.swf\? -# 470x60.jpg| (easylistchina+easylist.txt: 17357) -/.*470x60\.jpg$ -.*470x60.jpg -# 470x60.gif| (easylistchina+easylist.txt: 17356) -/.*470x60\.gif$ -.*470x60.gif -# 468x80.gif| (easylistchina+easylist.txt: 17355) -/.*468x80\.gif$ -.*468x80.gif -# 468x60_2.jpg| (easylistchina+easylist.txt: 17354) -/.*468x60_2\.jpg$ -# 468x60_1.gif| (easylistchina+easylist.txt: 17353) -/.*468x60_1\.gif$ -# 468x60.swf| (easylistchina+easylist.txt: 17352) -/.*468x60\.swf$ -.*468x60.swf -# 468x60.swf? (easylistchina+easylist.txt: 17351) -/.*468x60\.swf\? -# 468x60.php| (easylistchina+easylist.txt: 17350) -/.*468x60\.php$ -.*468x60.php -# 468x60.php? (easylistchina+easylist.txt: 17349) -/.*468x60\.php\? -# 468x60.jpg| (easylistchina+easylist.txt: 17348) -/.*468x60\.jpg$ -.*468x60.jpg -# 468x60.htm| (easylistchina+easylist.txt: 17347) -/.*468x60\.htm$ -.*468x60.htm -# 468x60.html| (easylistchina+easylist.txt: 17346) -/.*468x60\.html$ -.*468x60.html -# 468x60.gif| (easylistchina+easylist.txt: 17345) -/.*468x60\.gif$ -.*468x60.gif -# 468_60.gif| (easylistchina+easylist.txt: 17344) -/.*468_60\.gif$ -# 468-60.swf| (easylistchina+easylist.txt: 17343) -/.*468-60\.swf$ -.*468-60.swf -# 468-60.swf? (easylistchina+easylist.txt: 17342) -/.*468-60\.swf\? -# 468-60.gif| (easylistchina+easylist.txt: 17341) -/.*468-60\.gif$ -.*468-60.gif -# 460x70.jpg| (easylistchina+easylist.txt: 17340) -/.*460x70\.jpg$ -.*460x70.jpg -# 450x55.jpg| (easylistchina+easylist.txt: 17339) -/.*450x55\.jpg$ -.*450x55.jpg -# 160x6001.jpg| (easylistchina+easylist.txt: 17338) -/.*160x6001\.jpg$ -.*160x6001.jpg -# 160x600.swf| (easylistchina+easylist.txt: 17337) -/.*160x600\.swf$ -.*160x600.swf -# 160x600.swf? (easylistchina+easylist.txt: 17336) -/.*160x600\.swf\? -# 160x600.png| (easylistchina+easylist.txt: 17335) -/.*160x600\.png$ -.*160x600.png -# 160x600.php| (easylistchina+easylist.txt: 17334) -/.*160x600\.php$ -.*160x600.php -# 160x600.php? (easylistchina+easylist.txt: 17333) -/.*160x600\.php\? -# 160x600.jpg| (easylistchina+easylist.txt: 17332) -/.*160x600\.jpg$ -.*160x600.jpg -# 160x600.htm| (easylistchina+easylist.txt: 17331) -/.*160x600\.htm$ -.*160x600.htm -# 160x600.html| (easylistchina+easylist.txt: 17330) -/.*160x600\.html$ -.*160x600.html -# 160x600.gif| (easylistchina+easylist.txt: 17329) -/.*160x600\.gif$ -.*160x600.gif -# 160x300.gif| (easylistchina+easylist.txt: 17328) -/.*160x300\.gif$ -.*160x300.gif -# 133x394.gif| (easylistchina+easylist.txt: 17327) -/.*133x394\.gif$ -.*133x394.gif -# 125x600.swf| (easylistchina+easylist.txt: 17326) -/.*125x600\.swf$ -.*125x600.swf -# 125x600.swf? (easylistchina+easylist.txt: 17325) -/.*125x600\.swf\? -# 125x600.gif| (easylistchina+easylist.txt: 17324) -/.*125x600\.gif$ -.*125x600.gif -# 120x600.swf| (easylistchina+easylist.txt: 17323) -/.*120x600\.swf$ -.*120x600.swf -# 120x600.swf? (easylistchina+easylist.txt: 17322) -/.*120x600\.swf\? -# 120x600.png| (easylistchina+easylist.txt: 17321) -/.*120x600\.png$ -.*120x600.png -# 120x600.htm| (easylistchina+easylist.txt: 17320) -/.*120x600\.htm$ -.*120x600.htm -# 120x600.html| (easylistchina+easylist.txt: 17319) -/.*120x600\.html$ -.*120x600.html -# 120x600.gif| (easylistchina+easylist.txt: 17318) -/.*120x600\.gif$ -.*120x600.gif -# 120x600.gif? (easylistchina+easylist.txt: 17317) -/.*120x600\.gif\? -# 120x500.gif| (easylistchina+easylist.txt: 17316) -/.*120x500\.gif$ -.*120x500.gif -# 120-600.gif| (easylistchina+easylist.txt: 17315) -/.*120-600\.gif$ -.*120-600.gif -# /top728x90. (easylistchina+easylist.txt: 17314) -/(.*/)?top728x90\. -top728x90.*. -# /top728.html (easylistchina+easylist.txt: 17313) -/(.*/)?top728\.html -top728.html*. -# /top468.html (easylistchina+easylist.txt: 17312) -/(.*/)?top468\.html -top468.html*. -# /new300x250/* (easylistchina+easylist.txt: 17311) -/(.*/)?new300x250/.* -# /new160x600/* (easylistchina+easylist.txt: 17310) -/(.*/)?new160x600/.* -# /lightake728x90. (easylistchina+easylist.txt: 17309) -/(.*/)?lightake728x90\. -lightake728x90.*. -# /L300xH250/* (easylistchina+easylist.txt: 17308) -/(.*/)?L300xH250/.* -# /img/728_90 (easylistchina+easylist.txt: 17307) -/(.*/)?img/728_90 -# /img/468_60 (easylistchina+easylist.txt: 17306) -/(.*/)?img/468_60 -# /head486x60. (easylistchina+easylist.txt: 17305) -/(.*/)?head486x60\. -head486x60.*. -# /bottom728x90. (easylistchina+easylist.txt: 17304) -/(.*/)?bottom728x90\. -bottom728x90.*. -# /bottom728.html (easylistchina+easylist.txt: 17303) -/(.*/)?bottom728\.html -bottom728.html*. -# /ban468. (easylistchina+easylist.txt: 17302) -/(.*/)?ban468\. -ban468.*. -# /_iframe728x90. (easylistchina+easylist.txt: 17301) -/(.*/)?_iframe728x90\. -# /980x90. (easylistchina+easylist.txt: 17300) -/(.*/)?980x90\. -980x90.*. -# /960_60_ (easylistchina+easylist.txt: 17299) -/(.*/)?960_60_ -# /950_250. (easylistchina+easylist.txt: 17298) -/(.*/)?950_250\. -# /900x350_ (easylistchina+easylist.txt: 17297) -/(.*/)?900x350_ -# /900x130_ (easylistchina+easylist.txt: 17296) -/(.*/)?900x130_ -# /80x468_ (easylistchina+easylist.txt: 17295) -/(.*/)?80x468_ -# /800x90. (easylistchina+easylist.txt: 17294) -/(.*/)?800x90\. -800x90.*. -# /780x90. (easylistchina+easylist.txt: 17293) -/(.*/)?780x90\. -780x90.*. -# /768x90. (easylistchina+easylist.txt: 17292) -/(.*/)?768x90\. -768x90.*. -# /768x90- (easylistchina+easylist.txt: 17291) -/(.*/)?768x90- -768x90-*. -# /760x90_ (easylistchina+easylist.txt: 17290) -/(.*/)?760x90_ -# /760x120_ (easylistchina+easylist.txt: 17289) -/(.*/)?760x120_ -# /760x120. (easylistchina+easylist.txt: 17288) -/(.*/)?760x120\. -760x120.*. -# /750x100. (easylistchina+easylist.txt: 17287) -/(.*/)?750x100\. -750x100.*. -# /750-100. (easylistchina+easylist.txt: 17286) -/(.*/)?750-100\. -750-100.*. -# /728x90top. (easylistchina+easylist.txt: 17285) -/(.*/)?728x90top\. -728x90top.*. -# /728x90l. (easylistchina+easylist.txt: 17284) -/(.*/)?728x90l\. -728x90l.*. -# /728x90h. (easylistchina+easylist.txt: 17283) -/(.*/)?728x90h\. -728x90h.*. -# /728x90g. (easylistchina+easylist.txt: 17282) -/(.*/)?728x90g\. -728x90g.*. -# /728x90d. (easylistchina+easylist.txt: 17281) -/(.*/)?728x90d\. -728x90d.*. -# /728x90b/* (easylistchina+easylist.txt: 17280) -/(.*/)?728x90b/.* -# /728x90b. (easylistchina+easylist.txt: 17279) -/(.*/)?728x90b\. -728x90b.*. -# /728x90_ (easylistchina+easylist.txt: 17278) -/(.*/)?728x90_ -# /728x90? (easylistchina+easylist.txt: 17277) -/(.*/)?728x90\? -# /728x901. (easylistchina+easylist.txt: 17276) -/(.*/)?728x901\. -728x901.*. -# /728x90/* (easylistchina+easylist.txt: 17275) -/(.*/)?728x90/.* -# /728x90. (easylistchina+easylist.txt: 17274) -/(.*/)?728x90\. -728x90.*. -# /728x90- (easylistchina+easylist.txt: 17273) -/(.*/)?728x90- -728x90-*. -# /728x79_ (easylistchina+easylist.txt: 17272) -/(.*/)?728x79_ -# /728x180- (easylistchina+easylist.txt: 17271) -/(.*/)?728x180- -728x180-*. -# /728x15. (easylistchina+easylist.txt: 17270) -/(.*/)?728x15\. -728x15.*. -# /728by90_ (easylistchina+easylist.txt: 17269) -/(.*/)?728by90_ -# /728_90n. (easylistchina+easylist.txt: 17268) -/(.*/)?728_90n\. -# /728_90_ (easylistchina+easylist.txt: 17267) -/(.*/)?728_90_ -# /728_90/* (easylistchina+easylist.txt: 17266) -/(.*/)?728_90/.* -# /728_90. (easylistchina+easylist.txt: 17265) -/(.*/)?728_90\. -# /728_200_ (easylistchina+easylist.txt: 17264) -/(.*/)?728_200_ -# /728_200. (easylistchina+easylist.txt: 17263) -/(.*/)?728_200\. -# /728.html$subdocument (easylistchina+easylist.txt: 17262) -/(.*/)?728\.html -728.html*. -# /728-90_ (easylistchina+easylist.txt: 17261) -/(.*/)?728-90_ -# /728-90/* (easylistchina+easylist.txt: 17260) -/(.*/)?728-90/.* -# /728-90. (easylistchina+easylist.txt: 17259) -/(.*/)?728-90\. -728-90.*. -# /728-90- (easylistchina+easylist.txt: 17258) -/(.*/)?728-90- -728-90-*. -# /700x90. (easylistchina+easylist.txt: 17257) -/(.*/)?700x90\. -700x90.*. -# /700x250. (easylistchina+easylist.txt: 17256) -/(.*/)?700x250\. -700x250.*. -# /700x120. (easylistchina+easylist.txt: 17255) -/(.*/)?700x120\. -700x120.*. -# /700x100. (easylistchina+easylist.txt: 17254) -/(.*/)?700x100\. -700x100.*. -# /700_200. (easylistchina+easylist.txt: 17253) -/(.*/)?700_200\. -# /700_100_ (easylistchina+easylist.txt: 17252) -/(.*/)?700_100_ -# /660x60. (easylistchina+easylist.txt: 17251) -/(.*/)?660x60\. -660x60.*. -# /660x120_ (easylistchina+easylist.txt: 17250) -/(.*/)?660x120_ -# /640x80- (easylistchina+easylist.txt: 17249) -/(.*/)?640x80- -640x80-*. -# /640x100/* (easylistchina+easylist.txt: 17248) -/(.*/)?640x100/.* -# /60x468. (easylistchina+easylist.txt: 17247) -/(.*/)?60x468\. -60x468.*. -# /600x90. (easylistchina+easylist.txt: 17246) -/(.*/)?600x90\. -600x90.*. -# /600x75_ (easylistchina+easylist.txt: 17245) -/(.*/)?600x75_ -# /600x160_ (easylistchina+easylist.txt: 17244) -/(.*/)?600x160_ -# /600_90_ (easylistchina+easylist.txt: 17243) -/(.*/)?600_90_ -# /600_120_ (easylistchina+easylist.txt: 17242) -/(.*/)?600_120_ -# /600-90. (easylistchina+easylist.txt: 17241) -/(.*/)?600-90\. -600-90.*. -# /600-60. (easylistchina+easylist.txt: 17240) -/(.*/)?600-60\. -600-60.*. -# /540x80_ (easylistchina+easylist.txt: 17239) -/(.*/)?540x80_ -# /530x60_ (easylistchina+easylist.txt: 17238) -/(.*/)?530x60_ -# /500x90. (easylistchina+easylist.txt: 17237) -/(.*/)?500x90\. -500x90.*. -# /496_98_ (easylistchina+easylist.txt: 17236) -/(.*/)?496_98_ -# /486x60_ (easylistchina+easylist.txt: 17235) -/(.*/)?486x60_ -# /480x70_ (easylistchina+easylist.txt: 17234) -/(.*/)?480x70_ -# /480x60_ (easylistchina+easylist.txt: 17233) -/(.*/)?480x60_ -# /480x60/* (easylistchina+easylist.txt: 17232) -/(.*/)?480x60/.* -# /480x60. (easylistchina+easylist.txt: 17231) -/(.*/)?480x60\. -480x60.*. -# /480x60- (easylistchina+easylist.txt: 17230) -/(.*/)?480x60- -480x60-*. -# /480x030_ (easylistchina+easylist.txt: 17229) -/(.*/)?480x030_ -# /480x030. (easylistchina+easylist.txt: 17228) -/(.*/)?480x030\. -480x030.*. -# /475x150- (easylistchina+easylist.txt: 17227) -/(.*/)?475x150- -475x150-*. -# /470x030_ (easylistchina+easylist.txt: 17226) -/(.*/)?470x030_ -# /468x80g. (easylistchina+easylist.txt: 17225) -/(.*/)?468x80g\. -468x80g.*. -# /468x80b. (easylistchina+easylist.txt: 17224) -/(.*/)?468x80b\. -468x80b.*. -# /468x80_ (easylistchina+easylist.txt: 17223) -/(.*/)?468x80_ -# /468x80/* (easylistchina+easylist.txt: 17222) -/(.*/)?468x80/.* -# /468x80. (easylistchina+easylist.txt: 17221) -/(.*/)?468x80\. -468x80.*. -# /468x80- (easylistchina+easylist.txt: 17220) -/(.*/)?468x80- -468x80-*. -# /468x72_ (easylistchina+easylist.txt: 17219) -/(.*/)?468x72_ -# /468x72. (easylistchina+easylist.txt: 17218) -/(.*/)?468x72\. -468x72.*. -# /468x70- (easylistchina+easylist.txt: 17217) -/(.*/)?468x70- -468x70-*. -# /468x60v1_ (easylistchina+easylist.txt: 17216) -/(.*/)?468x60v1_ -# /468x60b. (easylistchina+easylist.txt: 17215) -/(.*/)?468x60b\. -468x60b.*. -# /468x60a_ (easylistchina+easylist.txt: 17214) -/(.*/)?468x60a_ -# /468x60a. (easylistchina+easylist.txt: 17213) -/(.*/)?468x60a\. -468x60a.*. -# /468x60_ (easylistchina+easylist.txt: 17212) -/(.*/)?468x60_ -# /468x60/* (easylistchina+easylist.txt: 17211) -/(.*/)?468x60/.* -# /468x60. (easylistchina+easylist.txt: 17210) -/(.*/)?468x60\. -468x60.*. -# /468x60- (easylistchina+easylist.txt: 17209) -/(.*/)?468x60- -468x60-*. -# /468x280_ (easylistchina+easylist.txt: 17208) -/(.*/)?468x280_ -# /468x280. (easylistchina+easylist.txt: 17207) -/(.*/)?468x280\. -468x280.*. -# /468x060_ (easylistchina+easylist.txt: 17206) -/(.*/)?468x060_ -# /468x060. (easylistchina+easylist.txt: 17205) -/(.*/)?468x060\. -468x060.*. -# /468_80/* (easylistchina+easylist.txt: 17204) -/(.*/)?468_80/.* -# /468_80. (easylistchina+easylist.txt: 17203) -/(.*/)?468_80\. -# /468_60_ (easylistchina+easylist.txt: 17202) -/(.*/)?468_60_ -# /468_60. (easylistchina+easylist.txt: 17201) -/(.*/)?468_60\. -# /468-60_ (easylistchina+easylist.txt: 17200) -/(.*/)?468-60_ -# /468-60. (easylistchina+easylist.txt: 17199) -/(.*/)?468-60\. -468-60.*. -# /468-60- (easylistchina+easylist.txt: 17198) -/(.*/)?468-60- -468-60-*. -# /468-20. (easylistchina+easylist.txt: 17197) -/(.*/)?468-20\. -468-20.*. -# /460x80_ (easylistchina+easylist.txt: 17196) -/(.*/)?460x80_ -# /460x60. (easylistchina+easylist.txt: 17195) -/(.*/)?460x60\. -460x60.*. -# /428x60. (easylistchina+easylist.txt: 17194) -/(.*/)?428x60\. -428x60.*. -# /400x297. (easylistchina+easylist.txt: 17193) -/(.*/)?400x297\. -400x297.*. -# /4-6-8x60. (easylistchina+easylist.txt: 17192) -/(.*/)?4-6-8x60\. -4-6-8x60.*. -# /340x85_ (easylistchina+easylist.txt: 17191) -/(.*/)?340x85_ -# /336x280_ (easylistchina+easylist.txt: 17190) -/(.*/)?336x280_ -# /336x280. (easylistchina+easylist.txt: 17189) -/(.*/)?336x280\. -336x280.*. -# /336x280- (easylistchina+easylist.txt: 17188) -/(.*/)?336x280- -336x280-*. -# /335x205_ (easylistchina+easylist.txt: 17187) -/(.*/)?335x205_ -# /320x250. (easylistchina+easylist.txt: 17186) -/(.*/)?320x250\. -320x250.*. -# /300x90_ (easylistchina+easylist.txt: 17185) -/(.*/)?300x90_ -# /300x350. (easylistchina+easylist.txt: 17184) -/(.*/)?300x350\. -300x350.*. -# /300x250px_ (easylistchina+easylist.txt: 17183) -/(.*/)?300x250px_ -# /300x250px- (easylistchina+easylist.txt: 17182) -/(.*/)?300x250px- -300x250px-*. -# /300x250b. (easylistchina+easylist.txt: 17181) -/(.*/)?300x250b\. -300x250b.*. -# /300x250_ (easylistchina+easylist.txt: 17180) -/(.*/)?300x250_ -# /300x250/* (easylistchina+easylist.txt: 17179) -/(.*/)?300x250/.* -# /300x250. (easylistchina+easylist.txt: 17178) -/(.*/)?300x250\. -300x250.*. -# /300x250- (easylistchina+easylist.txt: 17177) -/(.*/)?300x250- -300x250-*. -# /300x150_ (easylistchina+easylist.txt: 17176) -/(.*/)?300x150_ -# /300_250_ (easylistchina+easylist.txt: 17175) -/(.*/)?300_250_ -# /300.html$subdocument (easylistchina+easylist.txt: 17174) -/(.*/)?300\.html -300.html*. -# /300-250. (easylistchina+easylist.txt: 17173) -/(.*/)?300-250\. -300-250.*. -# /300-250- (easylistchina+easylist.txt: 17172) -/(.*/)?300-250- -300-250-*. -# /270x90- (easylistchina+easylist.txt: 17171) -/(.*/)?270x90- -270x90-*. -# /234x60/* (easylistchina+easylist.txt: 17170) -/(.*/)?234x60/.* -# /230x90_ (easylistchina+easylist.txt: 17169) -/(.*/)?230x90_ -# /190x600. (easylistchina+easylist.txt: 17168) -/(.*/)?190x600\. -190x600.*. -# /190_900. (easylistchina+easylist.txt: 17167) -/(.*/)?190_900\. -# /180x150- (easylistchina+easylist.txt: 17166) -/(.*/)?180x150- -180x150-*. -# /170x700. (easylistchina+easylist.txt: 17165) -/(.*/)?170x700\. -170x700.*. -# /160x600partner. (easylistchina+easylist.txt: 17164) -/(.*/)?160x600partner\. -160x600partner.*. -# /160x600_ (easylistchina+easylist.txt: 17163) -/(.*/)?160x600_ -# /160x600/* (easylistchina+easylist.txt: 17162) -/(.*/)?160x600/.* -# /160x600. (easylistchina+easylist.txt: 17161) -/(.*/)?160x600\. -160x600.*. -# /160x600- (easylistchina+easylist.txt: 17160) -/(.*/)?160x600- -160x600-*. -# /160x400_ (easylistchina+easylist.txt: 17159) -/(.*/)?160x400_ -# /160x400- (easylistchina+easylist.txt: 17158) -/(.*/)?160x400- -160x400-*. -# /160_600_ (easylistchina+easylist.txt: 17157) -/(.*/)?160_600_ -# /160_600. (easylistchina+easylist.txt: 17156) -/(.*/)?160_600\. -# /160.html$subdocument (easylistchina+easylist.txt: 17155) -/(.*/)?160\.html -160.html*. -# /160-600. (easylistchina+easylist.txt: 17154) -/(.*/)?160-600\. -160-600.*. -# /160-600- (easylistchina+easylist.txt: 17153) -/(.*/)?160-600- -160-600-*. -# /150x600_ (easylistchina+easylist.txt: 17152) -/(.*/)?150x600_ -# /150x300_ (easylistchina+easylist.txt: 17151) -/(.*/)?150x300_ -# /150x200- (easylistchina+easylist.txt: 17150) -/(.*/)?150x200- -150x200-*. -# /150_500. (easylistchina+easylist.txt: 17149) -/(.*/)?150_500\. -# /150-500. (easylistchina+easylist.txt: 17148) -/(.*/)?150-500\. -150-500.*. -# /130x600. (easylistchina+easylist.txt: 17147) -/(.*/)?130x600\. -130x600.*. -# /130x600- (easylistchina+easylist.txt: 17146) -/(.*/)?130x600- -130x600-*. -# /125x600_ (easylistchina+easylist.txt: 17145) -/(.*/)?125x600_ -# /125x600- (easylistchina+easylist.txt: 17144) -/(.*/)?125x600- -125x600-*. -# /125x400/* (easylistchina+easylist.txt: 17143) -/(.*/)?125x400/.* -# /125x300_ (easylistchina+easylist.txt: 17142) -/(.*/)?125x300_ -# /125x240/* (easylistchina+easylist.txt: 17141) -/(.*/)?125x240/.* -# /120x600_ (easylistchina+easylist.txt: 17140) -/(.*/)?120x600_ -# /120x600/* (easylistchina+easylist.txt: 17139) -/(.*/)?120x600/.* -# /120x600. (easylistchina+easylist.txt: 17138) -/(.*/)?120x600\. -120x600.*. -# /120x600- (easylistchina+easylist.txt: 17137) -/(.*/)?120x600- -120x600-*. -# /120x240_ (easylistchina+easylist.txt: 17136) -/(.*/)?120x240_ -# /120_600_ (easylistchina+easylist.txt: 17135) -/(.*/)?120_600_ -# /120_600/* (easylistchina+easylist.txt: 17134) -/(.*/)?120_600/.* -# /120_600. (easylistchina+easylist.txt: 17133) -/(.*/)?120_600\. -# /1200x70_ (easylistchina+easylist.txt: 17132) -/(.*/)?1200x70_ -# /120-600. (easylistchina+easylist.txt: 17131) -/(.*/)?120-600\. -120-600.*. -# /120-600- (easylistchina+easylist.txt: 17130) -/(.*/)?120-600- -120-600-*. -# .900x100. (easylistchina+easylist.txt: 17129) -/.*\.900x100\. -.*.900x100.*. -# .728x90_ (easylistchina+easylist.txt: 17128) -/.*\.728x90_ -# .728x90/ (easylistchina+easylist.txt: 17127) -/.*\.728x90/ -.*.728x90 -# .728x90. (easylistchina+easylist.txt: 17126) -/.*\.728x90\. -.*.728x90.*. -# .728x90- (easylistchina+easylist.txt: 17125) -/.*\.728x90- -.*.728x90-*. -# .650x100. (easylistchina+easylist.txt: 17124) -/.*\.650x100\. -.*.650x100.*. -# .480x60_ (easylistchina+easylist.txt: 17123) -/.*\.480x60_ -# .480x60/ (easylistchina+easylist.txt: 17122) -/.*\.480x60/ -.*.480x60 -# .480x60. (easylistchina+easylist.txt: 17121) -/.*\.480x60\. -.*.480x60.*. -# .480x60- (easylistchina+easylist.txt: 17120) -/.*\.480x60- -.*.480x60-*. -# .468x80_ (easylistchina+easylist.txt: 17119) -/.*\.468x80_ -# .468x80/ (easylistchina+easylist.txt: 17118) -/.*\.468x80/ -.*.468x80 -# .468x80. (easylistchina+easylist.txt: 17117) -/.*\.468x80\. -.*.468x80.*. -# .468x80- (easylistchina+easylist.txt: 17116) -/.*\.468x80- -.*.468x80-*. -# .468x60_ (easylistchina+easylist.txt: 17115) -/.*\.468x60_ -# .468x60/ (easylistchina+easylist.txt: 17114) -/.*\.468x60/ -.*.468x60 -# .468x60. (easylistchina+easylist.txt: 17113) -/.*\.468x60\. -.*.468x60.*. -# .468x60- (easylistchina+easylist.txt: 17112) -/.*\.468x60- -.*.468x60-*. -# .300x250_ (easylistchina+easylist.txt: 17111) -/.*\.300x250_ -# .300x250. (easylistchina+easylist.txt: 17110) -/.*\.300x250\. -.*.300x250.*. -# .160x600_ (easylistchina+easylist.txt: 17109) -/.*\.160x600_ -# .160x600. (easylistchina+easylist.txt: 17108) -/.*\.160x600\. -.*.160x600.*. -# .120x600. (easylistchina+easylist.txt: 17107) -/.*\.120x600\. -.*.120x600.*. -# -988x60. (easylistchina+easylist.txt: 17106) -/.*-988x60\. -.*-988x60.*. -# -980x60- (easylistchina+easylist.txt: 17105) -/.*-980x60- -.*-980x60-*. -# -800x150. (easylistchina+easylist.txt: 17104) -/.*-800x150\. -.*-800x150.*. -# -780x90- (easylistchina+easylist.txt: 17103) -/.*-780x90- -.*-780x90-*. -# -729x91- (easylistchina+easylist.txt: 17102) -/.*-729x91- -.*-729x91-*. -# -728x90px2. (easylistchina+easylist.txt: 17101) -/.*-728x90px2\. -.*-728x90px2.*. -# -728x90a_ (easylistchina+easylist.txt: 17100) -/.*-728x90a_ -# -728x90_ (easylistchina+easylist.txt: 17099) -/.*-728x90_ -# -728x90/ (easylistchina+easylist.txt: 17098) -/.*-728x90/ -.*-728x90 -# -728x90. (easylistchina+easylist.txt: 17097) -/.*-728x90\. -.*-728x90.*. -# -728x90- (easylistchina+easylist.txt: 17096) -/.*-728x90- -.*-728x90-*. -# -728x90& (easylistchina+easylist.txt: 17095) -/.*-728x90& -# -728.90. (easylistchina+easylist.txt: 17094) -/.*-728\.90\. -.*-728.90.*. -# -728-90. (easylistchina+easylist.txt: 17093) -/.*-728-90\. -.*-728-90.*. -# -720x90. (easylistchina+easylist.txt: 17092) -/.*-720x90\. -.*-720x90.*. -# -720x90- (easylistchina+easylist.txt: 17091) -/.*-720x90- -.*-720x90-*. -# -720x120- (easylistchina+easylist.txt: 17090) -/.*-720x120- -.*-720x120-*. -# -700-200. (easylistchina+easylist.txt: 17089) -/.*-700-200\. -.*-700-200.*. -# -600x90- (easylistchina+easylist.txt: 17088) -/.*-600x90- -.*-600x90-*. -# -600x70. (easylistchina+easylist.txt: 17087) -/.*-600x70\. -.*-600x70.*. -# -500x100. (easylistchina+easylist.txt: 17086) -/.*-500x100\. -.*-500x100.*. -# -486x60. (easylistchina+easylist.txt: 17085) -/.*-486x60\. -.*-486x60.*. -# -480x60_ (easylistchina+easylist.txt: 17084) -/.*-480x60_ -# -480x60/ (easylistchina+easylist.txt: 17083) -/.*-480x60/ -.*-480x60 -# -480x60. (easylistchina+easylist.txt: 17082) -/.*-480x60\. -.*-480x60.*. -# -480x60- (easylistchina+easylist.txt: 17081) -/.*-480x60- -.*-480x60-*. -# -480x120. (easylistchina+easylist.txt: 17080) -/.*-480x120\. -.*-480x120.*. -# -468x90. (easylistchina+easylist.txt: 17079) -/.*-468x90\. -.*-468x90.*. -# -468x80_ (easylistchina+easylist.txt: 17078) -/.*-468x80_ -# -468x80/ (easylistchina+easylist.txt: 17077) -/.*-468x80/ -.*-468x80 -# -468x80. (easylistchina+easylist.txt: 17076) -/.*-468x80\. -.*-468x80.*. -# -468x80- (easylistchina+easylist.txt: 17075) -/.*-468x80- -.*-468x80-*. -# -468x70. (easylistchina+easylist.txt: 17074) -/.*-468x70\. -.*-468x70.*. -# -468x60px- (easylistchina+easylist.txt: 17073) -/.*-468x60px- -.*-468x60px-*. -# -468x60_ (easylistchina+easylist.txt: 17072) -/.*-468x60_ -# -468x60/ (easylistchina+easylist.txt: 17071) -/.*-468x60/ -.*-468x60 -# -468x60. (easylistchina+easylist.txt: 17070) -/.*-468x60\. -.*-468x60.*. -# -468x60- (easylistchina+easylist.txt: 17069) -/.*-468x60- -.*-468x60-*. -# -468x060_ (easylistchina+easylist.txt: 17068) -/.*-468x060_ -# -468x060- (easylistchina+easylist.txt: 17067) -/.*-468x060- -.*-468x060-*. -# -468by60. (easylistchina+easylist.txt: 17066) -/.*-468by60\. -.*-468by60.*. -# -468_60. (easylistchina+easylist.txt: 17065) -/.*-468_60\. -# -468-60_ (easylistchina+easylist.txt: 17064) -/.*-468-60_ -# -468-60. (easylistchina+easylist.txt: 17063) -/.*-468-60\. -.*-468-60.*. -# -468-60- (easylistchina+easylist.txt: 17062) -/.*-468-60- -.*-468-60-*. -# -468-100. (easylistchina+easylist.txt: 17061) -/.*-468-100\. -.*-468-100.*. -# -460x68. (easylistchina+easylist.txt: 17060) -/.*-460x68\. -.*-460x68.*. -# -300x600. (easylistchina+easylist.txt: 17059) -/.*-300x600\. -.*-300x600.*. -# -300x250_ (easylistchina+easylist.txt: 17058) -/.*-300x250_ -# -300x250-$~xmlhttprequest (easylistchina+easylist.txt: 17057) -/.*-300x250- -.*-300x250-*. -# -300-250. (easylistchina+easylist.txt: 17056) -/.*-300-250\. -.*-300-250.*. -# -161x601- (easylistchina+easylist.txt: 17055) -/.*-161x601- -.*-161x601-*. -# -160x600b. (easylistchina+easylist.txt: 17054) -/.*-160x600b\. -.*-160x600b.*. -# -160x600_ (easylistchina+easylist.txt: 17053) -/.*-160x600_ -# -160x600. (easylistchina+easylist.txt: 17052) -/.*-160x600\. -.*-160x600.*. -# -160x600- (easylistchina+easylist.txt: 17051) -/.*-160x600- -.*-160x600-*. -# -160x400- (easylistchina+easylist.txt: 17050) -/.*-160x400- -.*-160x400-*. -# -160-600. (easylistchina+easylist.txt: 17049) -/.*-160-600\. -.*-160-600.*. -# -125x40- (easylistchina+easylist.txt: 17048) -/.*-125x40- -.*-125x40-*. -# -120x600c. (easylistchina+easylist.txt: 17047) -/.*-120x600c\. -.*-120x600c.*. -# -120x600_ (easylistchina+easylist.txt: 17046) -/.*-120x600_ -# -120x600. (easylistchina+easylist.txt: 17045) -/.*-120x600\. -.*-120x600.*. -# -120x600- (easylistchina+easylist.txt: 17044) -/.*-120x600- -.*-120x600-*. -# -120x60. (easylistchina+easylist.txt: 17043) -/.*-120x60\. -.*-120x60.*. -# -120x60- (easylistchina+easylist.txt: 17042) -/.*-120x60- -.*-120x60-*. -# -120x400. (easylistchina+easylist.txt: 17041) -/.*-120x400\. -.*-120x400.*. -# -120x300. (easylistchina+easylist.txt: 17040) -/.*-120x300\. -.*-120x300.*. -# -120x240. (easylistchina+easylist.txt: 17039) -/.*-120x240\. -.*-120x240.*. -# -120_600_ (easylistchina+easylist.txt: 17038) -/.*-120_600_ -# -120-600. (easylistchina+easylist.txt: 17037) -/.*-120-600\. -.*-120-600.*. -# ,970x90; (easylistchina+easylist.txt: 17036) -/.*,970x90; -# ,728x90, (easylistchina+easylist.txt: 17035) -/.*,728x90, -# ,468x60; (easylistchina+easylist.txt: 17034) -/.*,468x60; -# ,468x60- (easylistchina+easylist.txt: 17033) -/.*,468x60- -# ,160x600; (easylistchina+easylist.txt: 17032) -/.*,160x600; -# /wp-content/plugins/anti_ad_blocker/* (easylistchina+easylist.txt: 17030) -/(.*/)?wp-content/plugins/anti_ad_blocker/.* -# /wp-content/plugins/anti-block/* (easylistchina+easylist.txt: 17029) -/(.*/)?wp-content/plugins/anti-block/.* -# /no-adblock/* (easylistchina+easylist.txt: 17028) -/(.*/)?no-adblock/.* -# /fuckadblock. (easylistchina+easylist.txt: 17027) -/(.*/)?fuckadblock\. -fuckadblock.*. -# /FuckAdBlock-$script (easylistchina+easylist.txt: 17026) -/(.*/)?FuckAdBlock- -FuckAdBlock-*. -# /fuckadb.js (easylistchina+easylist.txt: 17025) -/(.*/)?fuckadb\.js -fuckadb.js*. -# /Disable%2BAdblock. (easylistchina+easylist.txt: 17024) -/(.*/)?Disable%2BAdblock\. -# /blockblock/blockblock.jquery.js (easylistchina+easylist.txt: 17023) -/(.*/)?blockblock/blockblock\.jquery\.js -# /antiadblock. (easylistchina+easylist.txt: 17021) -/(.*/)?antiadblock\. -antiadblock.*. -# /anti_ab. (easylistchina+easylist.txt: 17020) -/(.*/)?anti_ab\. -# /anti-adblock/*$~stylesheet (easylistchina+easylist.txt: 17019) -/(.*/)?anti-adblock/.* -# /adsblocker. (easylistchina+easylist.txt: 17018) -/(.*/)?adsblocker\. -adsblocker.*. -# /adbuddy. (easylistchina+easylist.txt: 17017) -/(.*/)?adbuddy\. -adbuddy.*. -# /adblockdetection. (easylistchina+easylist.txt: 17016) -/(.*/)?adblockdetection\. -adblockdetection.*. -# /adblockdetect. (easylistchina+easylist.txt: 17015) -/(.*/)?adblockdetect\. -adblockdetect.*. -# /adblock_logger. (easylistchina+easylist.txt: 17014) -/(.*/)?adblock_logger\. -# /adblock_detector2. (easylistchina+easylist.txt: 17013) -/(.*/)?adblock_detector2\. -# /adblock_detector. (easylistchina+easylist.txt: 17012) -/(.*/)?adblock_detector\. -# /adblock.gif? (easylistchina+easylist.txt: 17011) -/(.*/)?adblock\.gif\? -# /adblock-notify-by-bweb/* (easylistchina+easylist.txt: 17010) -/(.*/)?adblock-notify-by-bweb/.* -# /adblock-detect. (easylistchina+easylist.txt: 17009) -/(.*/)?adblock-detect\. -adblock-detect.*. -# /adblock-blocker/* (easylistchina+easylist.txt: 17008) -/(.*/)?adblock-blocker/.* -# /adblock-alerter/* (easylistchina+easylist.txt: 17007) -/(.*/)?adblock-alerter/.* -# /adb_detector. (easylistchina+easylist.txt: 17006) -/(.*/)?adb_detector\. -# /adb.min.js (easylistchina+easylist.txt: 17005) -/(.*/)?adb\.min\.js -adb.min.js*. -# /ad-blocker.js (easylistchina+easylist.txt: 17004) -/(.*/)?ad-blocker\.js -ad-blocker.js*. -# -adblocker-detection/ (easylistchina+easylist.txt: 17003) -/.*-adblocker-detection/ -.*-adblocker-detection -# /jquery.peelback.js (easylistchina+easylist.txt: 17001) -/(.*/)?jquery\.peelback\.js -jquery.peelback.js*. -# /sl/assetlisting/? (easylistchina+easylist.txt: 16999) -/(.*/)?sl/assetlisting/\? -# /Tag.rb$script,third-party (easylistchina+easylist.txt: 16997) -/(.*/)?Tag\.rb -Tag.rb*. -# /Tag.eng$script,third-party (easylistchina+easylist.txt: 16996) -/(.*/)?Tag\.eng -Tag.eng*. -# /mediahosting.engine$script,third-party (easylistchina+easylist.txt: 16995) -/(.*/)?mediahosting\.engine -mediahosting.engine*. -# /cdn-cgi/pe/bag?r[]=*pubads.g.doubleclick.net (easylistchina+easylist.txt: 16993) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*pubads\.g\.doubleclick\.net -# /cdn-cgi/pe/bag?r[]=*cpalead.com (easylistchina+easylist.txt: 16992) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*cpalead\.com -# /cdn-cgi/pe/bag2?r[]=*srvpub.com (easylistchina+easylist.txt: 16991) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*srvpub\.com -# /cdn-cgi/pe/bag2?r[]=*revcontent.com (easylistchina+easylist.txt: 16990) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*revcontent\.com -# /cdn-cgi/pe/bag2?r[]=*popcash.net (easylistchina+easylist.txt: 16989) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popcash\.net -# /cdn-cgi/pe/bag2?r[]=*popads.net (easylistchina+easylist.txt: 16988) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# /cdn-cgi/pe/bag2?r[]=*linksmart.com (easylistchina+easylist.txt: 16987) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*linksmart\.com -# /cdn-cgi/pe/bag2?r[]=*juicyads.com (easylistchina+easylist.txt: 16986) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# /cdn-cgi/pe/bag2?r[]=*intellitxt.com (easylistchina+easylist.txt: 16985) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*intellitxt\.com -# /cdn-cgi/pe/bag2?r[]=*googleadservices.com (easylistchina+easylist.txt: 16984) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*googleadservices\.com -# /cdn-cgi/pe/bag2?r[]=*eclkspsa.com (easylistchina+easylist.txt: 16983) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkspsa\.com -# /cdn-cgi/pe/bag2?r[]=*eclkmpbn.com (easylistchina+easylist.txt: 16982) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkmpbn\.com -# /cdn-cgi/pe/bag2?r[]=*cpx.to (easylistchina+easylist.txt: 16981) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*cpx\.to -# /cdn-cgi/pe/bag2?r[]=*content.ad (easylistchina+easylist.txt: 16980) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*content\.ad -# /cdn-cgi/pe/bag2?r[]=*az708531.vo.msecnd.net (easylistchina+easylist.txt: 16979) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*az708531\.vo\.msecnd\.net -# /cdn-cgi/pe/bag2?r[]=*ads.exoclick.com (easylistchina+easylist.txt: 16978) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# /cdn-cgi/pe/bag2?r[]=*adk2.co (easylistchina+easylist.txt: 16977) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adk2\.co -# /cdn-cgi/pe/bag2?r[]=*adblade.com (easylistchina+easylist.txt: 16976) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adblade\.com -# /webservices/jsparselinks.aspx?$script (easylistchina+easylist.txt: 16974) -/(.*/)?webservices/jsparselinks\.aspx\? -# /jquery.dfp.min.js$script (easylistchina+easylist.txt: 16972) -/(.*/)?jquery\.dfp\.min\.js -jquery.dfp.min.js*. -# /jquery.dfp.js$script (easylistchina+easylist.txt: 16971) -/(.*/)?jquery\.dfp\.js -jquery.dfp.js*. -# ||serve.*/promoload? (easylistchina+easylist.txt: 16969) -.serve.*./(.*/)?promoload\? -# ||ox-d.*^auid= (easylistchina+easylist.txt: 16968) -.ox-d.*./(.*[^\w%.-])?auid= -# ||online.*/promoredirect?key= (easylistchina+easylist.txt: 16967) -.online.*./(.*/)?promoredirect\?key= -# ||com/banners/$image,object,subdocument (easylistchina+easylist.txt: 16966) -# ||cacheserve.*/promodisplay? (easylistchina+easylist.txt: 16965) -.cacheserve.*./(.*/)?promodisplay\? -# ||cacheserve.*/promodisplay/ (easylistchina+easylist.txt: 16964) -.cacheserve.*./(.*/)?promodisplay/ -# takeover_banner_ (easylistchina+easylist.txt: 16963) -/.*takeover_banner_ -# takeover_background. (easylistchina+easylist.txt: 16962) -/.*takeover_background\. -# _zedo. (easylistchina+easylist.txt: 16961) -/.*_zedo\. -# _your_ad. (easylistchina+easylist.txt: 16960) -/.*_your_ad\. -# _yahooads/ (easylistchina+easylist.txt: 16959) -/.*_yahooads/ -# _widget_ad. (easylistchina+easylist.txt: 16958) -/.*_widget_ad\. -# _WebBannerAd_ (easylistchina+easylist.txt: 16957) -/.*_WebBannerAd_ -# _webad_ (easylistchina+easylist.txt: 16956) -/.*_webad_ -# _webad. (easylistchina+easylist.txt: 16955) -/.*_webad\. -# _web_ad_ (easylistchina+easylist.txt: 16954) -/.*_web_ad_ -# _Web_ad. (easylistchina+easylist.txt: 16953) -/.*_Web_ad\. -# _web-advert. (easylistchina+easylist.txt: 16952) -/.*_web-advert\. -# _vodaaffi_ (easylistchina+easylist.txt: 16951) -/.*_vodaaffi_ -# _videoad. (easylistchina+easylist.txt: 16950) -/.*_videoad\. -# _video_ads_ (easylistchina+easylist.txt: 16949) -/.*_video_ads_ -# _video_ads/ (easylistchina+easylist.txt: 16948) -/.*_video_ads/ -# _vertical_ad. (easylistchina+easylist.txt: 16947) -/.*_vertical_ad\. -# _valueclick. (easylistchina+easylist.txt: 16946) -/.*_valueclick\. -# _UIM-Ads_ (easylistchina+easylist.txt: 16945) -/.*_UIM-Ads_ -# _tribalfusion. (easylistchina+easylist.txt: 16944) -/.*_tribalfusion\. -# _topad. (easylistchina+easylist.txt: 16943) -/.*_topad\. -# _top_ad_ (easylistchina+easylist.txt: 16942) -/.*_top_ad_ -# _top_ad. (easylistchina+easylist.txt: 16941) -/.*_top_ad\. -# _tile_ad_ (easylistchina+easylist.txt: 16940) -/.*_tile_ad_ -# _theme/ads/ (easylistchina+easylist.txt: 16939) -/.*_theme/ads/ -# _textads/ (easylistchina+easylist.txt: 16938) -/.*_textads/ -# _textads. (easylistchina+easylist.txt: 16937) -/.*_textads\. -# _textad_ (easylistchina+easylist.txt: 16936) -/.*_textad_ -# _text_ads. (easylistchina+easylist.txt: 16935) -/.*_text_ads\. -# _temp/ad_ (easylistchina+easylist.txt: 16934) -/.*_temp/ad_ -# _tagadvertising. (easylistchina+easylist.txt: 16933) -/.*_tagadvertising\. -# _survey_ad_ (easylistchina+easylist.txt: 16932) -/.*_survey_ad_ -# _StickyAdFunc. (easylistchina+easylist.txt: 16931) -/.*_StickyAdFunc\. -# _StickyAd. (easylistchina+easylist.txt: 16930) -/.*_StickyAd\. -# _sticky_ad. (easylistchina+easylist.txt: 16929) -/.*_sticky_ad\. -# _static_ads. (easylistchina+easylist.txt: 16928) -/.*_static_ads\. -# _static/ads/ (easylistchina+easylist.txt: 16927) -/.*_static/ads/ -# _square_ad. (easylistchina+easylist.txt: 16926) -/.*_square_ad\. -# _Spot-Ad_ (easylistchina+easylist.txt: 16925) -/.*_Spot-Ad_ -# _sponsoredlinks_ (easylistchina+easylist.txt: 16924) -/.*_sponsoredlinks_ -# _sponsor/css/ (easylistchina+easylist.txt: 16923) -/.*_sponsor/css/ -# _smartads_ (easylistchina+easylist.txt: 16922) -/.*_smartads_ -# _small_ad. (easylistchina+easylist.txt: 16921) -/.*_small_ad\. -# _Slot_Adv_ (easylistchina+easylist.txt: 16920) -/.*_Slot_Adv_ -# _skyscraper160x600. (easylistchina+easylist.txt: 16919) -/.*_skyscraper160x600\. -# _skybannerview. (easylistchina+easylist.txt: 16918) -/.*_skybannerview\. -# _skinad. (easylistchina+easylist.txt: 16917) -/.*_skinad\. -# _site_sponsor (easylistchina+easylist.txt: 16916) -/.*_site_sponsor -# _sidebarad_ (easylistchina+easylist.txt: 16915) -/.*_sidebarad_ -# _sidebar_ad_ (easylistchina+easylist.txt: 16914) -/.*_sidebar_ad_ -# _sidebar_ad. (easylistchina+easylist.txt: 16913) -/.*_sidebar_ad\. -# _sidead. (easylistchina+easylist.txt: 16912) -/.*_sidead\. -# _show_ads_ (easylistchina+easylist.txt: 16911) -/.*_show_ads_ -# _show_ads= (easylistchina+easylist.txt: 16910) -/.*_show_ads= -# _show_ads. (easylistchina+easylist.txt: 16909) -/.*_show_ads\. -# _sectionfront_ad. (easylistchina+easylist.txt: 16908) -/.*_sectionfront_ad\. -# _search/ads.js (easylistchina+easylist.txt: 16907) -/.*_search/ads\.js -# _rightmn_ads. (easylistchina+easylist.txt: 16906) -/.*_rightmn_ads\. -# _rightad_ (easylistchina+easylist.txt: 16905) -/.*_rightad_ -# _rightad1. (easylistchina+easylist.txt: 16904) -/.*_rightad1\. -# _rightad. (easylistchina+easylist.txt: 16903) -/.*_rightad\. -# _right_ads_ (easylistchina+easylist.txt: 16902) -/.*_right_ads_ -# _right_ads/ (easylistchina+easylist.txt: 16901) -/.*_right_ads/ -# _right_ads. (easylistchina+easylist.txt: 16900) -/.*_right_ads\. -# _right_ad. (easylistchina+easylist.txt: 16899) -/.*_right_ad\. -# _response_ad. (easylistchina+easylist.txt: 16898) -/.*_response_ad\. -# _request_ad. (easylistchina+easylist.txt: 16897) -/.*_request_ad\. -# _reporting_ads. (easylistchina+easylist.txt: 16896) -/.*_reporting_ads\. -# _rectangle_ads. (easylistchina+easylist.txt: 16894) -/.*_rectangle_ads\. -# _railads. (easylistchina+easylist.txt: 16893) -/.*_railads\. -# _radio_ad_ (easylistchina+easylist.txt: 16892) -/.*_radio_ad_ -# _pushads. (easylistchina+easylist.txt: 16891) -/.*_pushads\. -# _psu_ad. (easylistchina+easylist.txt: 16890) -/.*_psu_ad\. -# _promo_ad/ (easylistchina+easylist.txt: 16889) -/.*_promo_ad/ -# _prime_ad. (easylistchina+easylist.txt: 16888) -/.*_prime_ad\. -# _preorderad. (easylistchina+easylist.txt: 16887) -/.*_preorderad\. -# _post_ads. (easylistchina+easylist.txt: 16886) -/.*_post_ads\. -# _popupunder. (easylistchina+easylist.txt: 16885) -/.*_popupunder\. -# _popunder_ (easylistchina+easylist.txt: 16884) -/.*_popunder_ -# _popunder. (easylistchina+easylist.txt: 16883) -/.*_popunder\. -# _pop_under. (easylistchina+easylist.txt: 16882) -/.*_pop_under\. -# _pop_ad/ (easylistchina+easylist.txt: 16881) -/.*_pop_ad/ -# _pop_ad. (easylistchina+easylist.txt: 16880) -/.*_pop_ad\. -# _plus/ads/ (easylistchina+easylist.txt: 16879) -/.*_plus/ads/ -# _player_ads_ (easylistchina+easylist.txt: 16878) -/.*_player_ads_ -# _platform_ads_ (easylistchina+easylist.txt: 16877) -/.*_platform_ads_ -# _platform_ads. (easylistchina+easylist.txt: 16876) -/.*_platform_ads\. -# _partner_ad. (easylistchina+easylist.txt: 16875) -/.*_partner_ad\. -# _panel_ads. (easylistchina+easylist.txt: 16874) -/.*_panel_ads\. -# _paidadvert_ (easylistchina+easylist.txt: 16873) -/.*_paidadvert_ -# _paid_ads/ (easylistchina+easylist.txt: 16872) -/.*_paid_ads/ -# _overlay_ad. (easylistchina+easylist.txt: 16871) -/.*_overlay_ad\. -# _org_ad. (easylistchina+easylist.txt: 16870) -/.*_org_ad\. -# _openx/ (easylistchina+easylist.txt: 16869) -/.*_openx/ -# _openx. (easylistchina+easylist.txt: 16868) -/.*_openx\. -# _onlinead_ (easylistchina+easylist.txt: 16867) -/.*_onlinead_ -# _online_ad. (easylistchina+easylist.txt: 16866) -/.*_online_ad\. -# _mpu_widget? (easylistchina+easylist.txt: 16865) -/.*_mpu_widget\? -# _Mobile_Ad_ (easylistchina+easylist.txt: 16864) -/.*_Mobile_Ad_ -# _mmsadbanner/ (easylistchina+easylist.txt: 16863) -/.*_mmsadbanner/ -# _mid_ad. (easylistchina+easylist.txt: 16862) -/.*_mid_ad\. -# _media/ads/ (easylistchina+easylist.txt: 16861) -/.*_media/ads/ -# _maxi_ad/ (easylistchina+easylist.txt: 16860) -/.*_maxi_ad/ -# _mainad. (easylistchina+easylist.txt: 16859) -/.*_mainad\. -# _main_ad. (easylistchina+easylist.txt: 16858) -/.*_main_ad\. -# _mailLoginAd. (easylistchina+easylist.txt: 16857) -/.*_mailLoginAd\. -# _longad_ (easylistchina+easylist.txt: 16856) -/.*_longad_ -# _logadslot& (easylistchina+easylist.txt: 16855) -/.*_logadslot& -# _load_ad? (easylistchina+easylist.txt: 16854) -/.*_load_ad\? -# _live/ad/ (easylistchina+easylist.txt: 16853) -/.*_live/ad/ -# _link_ads- (easylistchina+easylist.txt: 16852) -/.*_link_ads- -# _left_ad. (easylistchina+easylist.txt: 16851) -/.*_left_ad\. -# _leaderboard_ad_ (easylistchina+easylist.txt: 16850) -/.*_leaderboard_ad_ -# _layerad. (easylistchina+easylist.txt: 16849) -/.*_layerad\. -# _juicyads. (easylistchina+easylist.txt: 16848) -/.*_juicyads\. -# _juiceadv. (easylistchina+easylist.txt: 16847) -/.*_juiceadv\. -# _jtads/ (easylistchina+easylist.txt: 16846) -/.*_jtads/ -# _js/ads.js (easylistchina+easylist.txt: 16845) -/.*_js/ads\.js -# _inlineads. (easylistchina+easylist.txt: 16844) -/.*_inlineads\. -# _inline_advert& (easylistchina+easylist.txt: 16843) -/.*_inline_advert& -# _index_ad. (easylistchina+easylist.txt: 16842) -/.*_index_ad\. -# _images/ads/ (easylistchina+easylist.txt: 16841) -/.*_images/ads/ -# _images/ad_ (easylistchina+easylist.txt: 16840) -/.*_images/ad_ -# _images/ad. (easylistchina+easylist.txt: 16839) -/.*_images/ad\. -# _iframe_ad_ (easylistchina+easylist.txt: 16838) -/.*_iframe_ad_ -# _iad.html? (easylistchina+easylist.txt: 16837) -/.*_iad\.html\? -# _hr_advt/ (easylistchina+easylist.txt: 16836) -/.*_hr_advt/ -# _house_ad_ (easylistchina+easylist.txt: 16835) -/.*_house_ad_ -# _hosting_ad. (easylistchina+easylist.txt: 16834) -/.*_hosting_ad\. -# _home_ad_ (easylistchina+easylist.txt: 16833) -/.*_home_ad_ -# _home_ad. (easylistchina+easylist.txt: 16832) -/.*_home_ad\. -# _homadconfig. (easylistchina+easylist.txt: 16831) -/.*_homadconfig\. -# _homad. (easylistchina+easylist.txt: 16830) -/.*_homad\. -# _headline_ad. (easylistchina+easylist.txt: 16829) -/.*_headline_ad\. -# _headerad. (easylistchina+easylist.txt: 16828) -/.*_headerad\. -# _header_ad_ (easylistchina+easylist.txt: 16827) -/.*_header_ad_ -# _header_ad. (easylistchina+easylist.txt: 16826) -/.*_header_ad\. -# _grid_ad? (easylistchina+easylist.txt: 16825) -/.*_grid_ad\? -# _googlead. (easylistchina+easylist.txt: 16824) -/.*_googlead\. -# _google_ads_ (easylistchina+easylist.txt: 16823) -/.*_google_ads_ -# _google_ads/ (easylistchina+easylist.txt: 16822) -/.*_google_ads/ -# _google_ads. (easylistchina+easylist.txt: 16821) -/.*_google_ads\. -# _google_ad. (easylistchina+easylist.txt: 16820) -/.*_google_ad\. -# _geobanner. (easylistchina+easylist.txt: 16819) -/.*_geobanner\. -# _generic_ad. (easylistchina+easylist.txt: 16818) -/.*_generic_ad\. -# _genads/ (easylistchina+easylist.txt: 16817) -/.*_genads/ -# _gallery_image_ads_$~stylesheet (easylistchina+easylist.txt: 16816) -/.*_gallery_image_ads_ -# _gallery_ads. (easylistchina+easylist.txt: 16815) -/.*_gallery_ads\. -# _gads_top. (easylistchina+easylist.txt: 16814) -/.*_gads_top\. -# _gads_footer. (easylistchina+easylist.txt: 16813) -/.*_gads_footer\. -# _gads_bottom. (easylistchina+easylist.txt: 16812) -/.*_gads_bottom\. -# _fullscreen_ad. (easylistchina+easylist.txt: 16811) -/.*_fullscreen_ad\. -# _friendlyduck. (easylistchina+easylist.txt: 16810) -/.*_friendlyduck\. -# _framed_ad/ (easylistchina+easylist.txt: 16809) -/.*_framed_ad/ -# _footer_ad_ (easylistchina+easylist.txt: 16808) -/.*_footer_ad_ -# _floatingad_ (easylistchina+easylist.txt: 16807) -/.*_floatingad_ -# _floating_ad_ (easylistchina+easylist.txt: 16806) -/.*_floating_ad_ -# _fixed_ad. (easylistchina+easylist.txt: 16805) -/.*_fixed_ad\. -# _files/ad. (easylistchina+easylist.txt: 16804) -/.*_files/ad\. -# _feast_ad. (easylistchina+easylist.txt: 16803) -/.*_feast_ad\. -# _fbadbookingsystem& (easylistchina+easylist.txt: 16802) -/.*_fbadbookingsystem& -# _fach_ad. (easylistchina+easylist.txt: 16801) -/.*_fach_ad\. -# _externalad. (easylistchina+easylist.txt: 16800) -/.*_externalad\. -# _english/adv/ (easylistchina+easylist.txt: 16799) -/.*_english/adv/ -# _engine_ads_ (easylistchina+easylist.txt: 16798) -/.*_engine_ads_ -# _elements/ads/ (easylistchina+easylist.txt: 16797) -/.*_elements/ads/ -# _dynamicads/ (easylistchina+easylist.txt: 16796) -/.*_dynamicads/ -# _dropdown_ad. (easylistchina+easylist.txt: 16795) -/.*_dropdown_ad\. -# _down_ad_ (easylistchina+easylist.txt: 16794) -/.*_down_ad_ -# _doubleclick_ad. (easylistchina+easylist.txt: 16793) -/.*_doubleclick_ad\. -# _doubleclick. (easylistchina+easylist.txt: 16792) -/.*_doubleclick\. -# _displaytopads. (easylistchina+easylist.txt: 16791) -/.*_displaytopads\. -# _displayad_ (easylistchina+easylist.txt: 16790) -/.*_displayad_ -# _dfp.php? (easylistchina+easylist.txt: 16789) -/.*_dfp\.php\? -# _dashad_ (easylistchina+easylist.txt: 16788) -/.*_dashad_ -# _dart_interstitial. (easylistchina+easylist.txt: 16787) -/.*_dart_interstitial\. -# _dart_ads. (easylistchina+easylist.txt: 16786) -/.*_dart_ads\. -# _custom_ad_ (easylistchina+easylist.txt: 16785) -/.*_custom_ad_ -# _custom_ad. (easylistchina+easylist.txt: 16784) -/.*_custom_ad\. -# _contest_ad_ (easylistchina+easylist.txt: 16783) -/.*_contest_ad_ -# _content_ad_ (easylistchina+easylist.txt: 16782) -/.*_content_ad_ -# _content_ad. (easylistchina+easylist.txt: 16781) -/.*_content_ad\. -# _companionad. (easylistchina+easylist.txt: 16780) -/.*_companionad\. -# _ChatAd_ (easylistchina+easylist.txt: 16779) -/.*_ChatAd_ -# _cgbanners.php? (easylistchina+easylist.txt: 16778) -/.*_cgbanners\.php\? -# _centre_ad. (easylistchina+easylist.txt: 16777) -/.*_centre_ad\. -# _buttonad. (easylistchina+easylist.txt: 16776) -/.*_buttonad\. -# _button_ad_ (easylistchina+easylist.txt: 16775) -/.*_button_ad_ -# _btnad_ (easylistchina+easylist.txt: 16774) -/.*_btnad_ -# _box_ad_ (easylistchina+easylist.txt: 16773) -/.*_box_ad_ -# _bottom_ads_ (easylistchina+easylist.txt: 16772) -/.*_bottom_ads_ -# _bottom_ads. (easylistchina+easylist.txt: 16771) -/.*_bottom_ads\. -# _blogads_ (easylistchina+easylist.txt: 16770) -/.*_blogads_ -# _blogads. (easylistchina+easylist.txt: 16769) -/.*_blogads\. -# _blank_ads. (easylistchina+easylist.txt: 16768) -/.*_blank_ads\. -# _bg_ad_left. (easylistchina+easylist.txt: 16767) -/.*_bg_ad_left\. -# _bannerview.php?*&aid= (easylistchina+easylist.txt: 16766) -/.*_bannerview\.php\?.*&aid= -# _bannerads_ (easylistchina+easylist.txt: 16765) -/.*_bannerads_ -# _BannerAd_ (easylistchina+easylist.txt: 16764) -/.*_BannerAd_ -# _bannerad. (easylistchina+easylist.txt: 16763) -/.*_bannerad\. -# _banner_adv_ (easylistchina+easylist.txt: 16762) -/.*_banner_adv_ -# _banner_adv300x250px. (easylistchina+easylist.txt: 16761) -/.*_banner_adv300x250px\. -# _Banner_Ads_ (easylistchina+easylist.txt: 16760) -/.*_Banner_Ads_ -# _banner_ads. (easylistchina+easylist.txt: 16759) -/.*_banner_ads\. -# _banner_ad_ (easylistchina+easylist.txt: 16758) -/.*_banner_ad_ -# _banner_ad. (easylistchina+easylist.txt: 16757) -/.*_banner_ad\. -# _background_ad/ (easylistchina+easylist.txt: 16756) -/.*_background_ad/ -# _background_ad. (easylistchina+easylist.txt: 16755) -/.*_background_ad\. -# _assets/ads/ (easylistchina+easylist.txt: 16754) -/.*_assets/ads/ -# _argus_ad_ (easylistchina+easylist.txt: 16753) -/.*_argus_ad_ -# _alt/ads/ (easylistchina+easylist.txt: 16752) -/.*_alt/ads/ -# _afs_ads. (easylistchina+easylist.txt: 16751) -/.*_afs_ads\. -# _affiliate_ad. (easylistchina+easylist.txt: 16750) -/.*_affiliate_ad\. -# _affiliate/banners/ (easylistchina+easylist.txt: 16749) -/.*_affiliate/banners/ -# _afd_ads. (easylistchina+easylist.txt: 16748) -/.*_afd_ads\. -# _adwriter. (easylistchina+easylist.txt: 16747) -/.*_adwriter\. -# _adwrap. (easylistchina+easylist.txt: 16746) -/.*_adwrap\. -# _advservices. (easylistchina+easylist.txt: 16745) -/.*_advservices\. -# _adview_ (easylistchina+easylist.txt: 16744) -/.*_adview_ -# _adview? (easylistchina+easylist.txt: 16743) -/.*_adview\? -# _AdvertsImgs/ (easylistchina+easylist.txt: 16742) -/.*_AdvertsImgs/ -# _advertsarea. (easylistchina+easylist.txt: 16741) -/.*_advertsarea\. -# _adverts3. (easylistchina+easylist.txt: 16740) -/.*_adverts3\. -# _adverts/ (easylistchina+easylist.txt: 16739) -/.*_adverts/ -# _adverts.js (easylistchina+easylist.txt: 16738) -/.*_adverts\.js -# _advertphoto. (easylistchina+easylist.txt: 16737) -/.*_advertphoto\. -# _advertorials/ (easylistchina+easylist.txt: 16736) -/.*_advertorials/ -# _advertorial_ (easylistchina+easylist.txt: 16735) -/.*_advertorial_ -# _advertorial3. (easylistchina+easylist.txt: 16734) -/.*_advertorial3\. -# _advertorial. (easylistchina+easylist.txt: 16733) -/.*_advertorial\. -# _advertisment. (easylistchina+easylist.txt: 16732) -/.*_advertisment\. -# _advertising_iframe. (easylistchina+easylist.txt: 16731) -/.*_advertising_iframe\. -# _advertising_header. (easylistchina+easylist.txt: 16730) -/.*_advertising_header\. -# _advertising/ (easylistchina+easylist.txt: 16729) -/.*_advertising/ -# _advertising. (easylistchina+easylist.txt: 16728) -/.*_advertising\. -# _advertisementtxt_ (easylistchina+easylist.txt: 16727) -/.*_advertisementtxt_ -# _advertisements/ (easylistchina+easylist.txt: 16726) -/.*_advertisements/ -# _advertisementbar. (easylistchina+easylist.txt: 16725) -/.*_advertisementbar\. -# _advertisement_ (easylistchina+easylist.txt: 16724) -/.*_advertisement_ -# _advertisement/ (easylistchina+easylist.txt: 16723) -/.*_advertisement/ -# _advertisement. (easylistchina+easylist.txt: 16722) -/.*_advertisement\. -# _advertisement- (easylistchina+easylist.txt: 16721) -/.*_advertisement- -# _advertisehere. (easylistchina+easylist.txt: 16720) -/.*_advertisehere\. -# _advertise180. (easylistchina+easylist.txt: 16719) -/.*_advertise180\. -# _advertise. (easylistchina+easylist.txt: 16718) -/.*_advertise\. -# _advertise- (easylistchina+easylist.txt: 16717) -/.*_advertise- -# _advert_vert (easylistchina+easylist.txt: 16716) -/.*_advert_vert -# _advert_overview. (easylistchina+easylist.txt: 16715) -/.*_advert_overview\. -# _advert_label. (easylistchina+easylist.txt: 16714) -/.*_advert_label\. -# _advert_2. (easylistchina+easylist.txt: 16713) -/.*_advert_2\. -# _advert_1. (easylistchina+easylist.txt: 16712) -/.*_advert_1\. -# _advert1. (easylistchina+easylist.txt: 16711) -/.*_advert1\. -# _advert/ (easylistchina+easylist.txt: 16710) -/.*_advert/ -# _advert. (easylistchina+easylist.txt: 16709) -/.*_advert\. -# _Adv_Banner_ (easylistchina+easylist.txt: 16708) -/.*_Adv_Banner_ -# _adv/overlay/ (easylistchina+easylist.txt: 16707) -/.*_adv/overlay/ -# _adv/leaderboard_ (easylistchina+easylist.txt: 16706) -/.*_adv/leaderboard_ -# _adv/300. (easylistchina+easylist.txt: 16705) -/.*_adv/300\. -# _adunit. (easylistchina+easylist.txt: 16704) -/.*_adunit\. -# _adtxt. (easylistchina+easylist.txt: 16703) -/.*_adtxt\. -# _adtop. (easylistchina+easylist.txt: 16702) -/.*_adtop\. -# _adtoma. (easylistchina+easylist.txt: 16701) -/.*_adtoma\. -# _adtitle. (easylistchina+easylist.txt: 16700) -/.*_adtitle\. -# _adtext_ (easylistchina+easylist.txt: 16699) -/.*_adtext_ -# _adtech_ (easylistchina+easylist.txt: 16698) -/.*_adtech_ -# _adtech/$~stylesheet (easylistchina+easylist.txt: 16697) -/.*_adtech/ -# _adtech. (easylistchina+easylist.txt: 16696) -/.*_adtech\. -# _adtech- (easylistchina+easylist.txt: 16695) -/.*_adtech- -# _adtech& (easylistchina+easylist.txt: 16694) -/.*_adtech& -# _adtags. (easylistchina+easylist.txt: 16693) -/.*_adtags\. -# _adsystem/ (easylistchina+easylist.txt: 16692) -/.*_adsystem/ -# _adsys_ (easylistchina+easylist.txt: 16691) -/.*_adsys_ -# _adsys. (easylistchina+easylist.txt: 16690) -/.*_adsys\. -# _adstat. (easylistchina+easylist.txt: 16689) -/.*_adstat\. -# _adssource. (easylistchina+easylist.txt: 16688) -/.*_adssource\. -# _adsrv? (easylistchina+easylist.txt: 16687) -/.*_adsrv\? -# _adsrv= (easylistchina+easylist.txt: 16686) -/.*_adsrv= -# _adsperfectmarket/ (easylistchina+easylist.txt: 16685) -/.*_adsperfectmarket/ -# _adspace_ (easylistchina+easylist.txt: 16684) -/.*_adspace_ -# _adspace- (easylistchina+easylist.txt: 16683) -/.*_adspace- -# _adsonar. (easylistchina+easylist.txt: 16682) -/.*_adsonar\. -# _adskin_ (easylistchina+easylist.txt: 16681) -/.*_adskin_ -# _adskin. (easylistchina+easylist.txt: 16680) -/.*_adskin\. -# _adsjs. (easylistchina+easylist.txt: 16679) -/.*_adsjs\. -# _adshow. (easylistchina+easylist.txt: 16678) -/.*_adshow\. -# _adshare. (easylistchina+easylist.txt: 16677) -/.*_adshare\. -# _adsframe. (easylistchina+easylist.txt: 16676) -/.*_adsframe\. -# _adsetup. (easylistchina+easylist.txt: 16675) -/.*_adsetup\. -# _adserver/ (easylistchina+easylist.txt: 16674) -/.*_adserver/ -# _adserver. (easylistchina+easylist.txt: 16673) -/.*_adserver\. -# _adserved. (easylistchina+easylist.txt: 16672) -/.*_adserved\. -# _adserve/ (easylistchina+easylist.txt: 16671) -/.*_adserve/ -# _adserve. (easylistchina+easylist.txt: 16670) -/.*_adserve\. -# _adsense_ (easylistchina+easylist.txt: 16669) -/.*_adsense_ -# _adsense. (easylistchina+easylist.txt: 16668) -/.*_adsense\. -# _adsdaq. (easylistchina+easylist.txt: 16667) -/.*_adsdaq\. -# _adscript. (easylistchina+easylist.txt: 16666) -/.*_adscript\. -# _adsbgd. (easylistchina+easylist.txt: 16665) -/.*_adsbgd\. -# _ads_top. (easylistchina+easylist.txt: 16664) -/.*_ads_top\. -# _ads_text. (easylistchina+easylist.txt: 16663) -/.*_ads_text\. -# _ads_targeting. (easylistchina+easylist.txt: 16662) -/.*_ads_targeting\. -# _ads_single_ (easylistchina+easylist.txt: 16661) -/.*_ads_single_ -# _ads_reporting. (easylistchina+easylist.txt: 16660) -/.*_ads_reporting\. -# _ads_only& (easylistchina+easylist.txt: 16659) -/.*_ads_only& -# _ads_new. (easylistchina+easylist.txt: 16658) -/.*_ads_new\. -# _ads_multi. (easylistchina+easylist.txt: 16657) -/.*_ads_multi\. -# _ads_index_ (easylistchina+easylist.txt: 16656) -/.*_ads_index_ -# _ads_iframe_ (easylistchina+easylist.txt: 16655) -/.*_ads_iframe_ -# _ads_iframe. (easylistchina+easylist.txt: 16654) -/.*_ads_iframe\. -# _ads_Home. (easylistchina+easylist.txt: 16653) -/.*_ads_Home\. -# _ads_contextualtargeting_ (easylistchina+easylist.txt: 16652) -/.*_ads_contextualtargeting_ -# _ads_cached. (easylistchina+easylist.txt: 16651) -/.*_ads_cached\. -# _ads_async. (easylistchina+easylist.txt: 16650) -/.*_ads_async\. -# _ads? (easylistchina+easylist.txt: 16649) -/.*_ads\? -# _ads9. (easylistchina+easylist.txt: 16648) -/.*_ads9\. -# _ads8. (easylistchina+easylist.txt: 16647) -/.*_ads8\. -# _ads3. (easylistchina+easylist.txt: 16646) -/.*_ads3\. -# _ads2. (easylistchina+easylist.txt: 16645) -/.*_ads2\. -# _ads12. (easylistchina+easylist.txt: 16644) -/.*_ads12\. -# _ads1. (easylistchina+easylist.txt: 16643) -/.*_ads1\. -# _ads/square/ (easylistchina+easylist.txt: 16642) -/.*_ads/square/ -# _ads/js/ (easylistchina+easylist.txt: 16641) -/.*_ads/js/ -# _ads/ip/ (easylistchina+easylist.txt: 16640) -/.*_ads/ip/ -# _ads/inhouse/ (easylistchina+easylist.txt: 16639) -/.*_ads/inhouse/ -# _ads/iframe. (easylistchina+easylist.txt: 16638) -/.*_ads/iframe\. -# _ads/horiz_ (easylistchina+easylist.txt: 16637) -/.*_ads/horiz_ -# _ads/horiz/ (easylistchina+easylist.txt: 16636) -/.*_ads/horiz/ -# _ads/css/ (easylistchina+easylist.txt: 16635) -/.*_ads/css/ -# _ads.php? (easylistchina+easylist.txt: 16634) -/.*_ads\.php\? -# _ads.js? (easylistchina+easylist.txt: 16633) -/.*_ads\.js\? -# _ads.html (easylistchina+easylist.txt: 16632) -/.*_ads\.html -# _ads.cgi (easylistchina+easylist.txt: 16631) -/.*_ads\.cgi -# _ads-affiliates_ (easylistchina+easylist.txt: 16630) -/.*_ads-affiliates_ -# _adrow- (easylistchina+easylist.txt: 16629) -/.*_adrow- -# _adrotator. (easylistchina+easylist.txt: 16628) -/.*_adrotator\. -# _adright2. (easylistchina+easylist.txt: 16627) -/.*_adright2\. -# _adright. (easylistchina+easylist.txt: 16626) -/.*_adright\. -# _adplugin. (easylistchina+easylist.txt: 16625) -/.*_adplugin\. -# _adpartner. (easylistchina+easylist.txt: 16624) -/.*_adpartner\. -# _adpage= (easylistchina+easylist.txt: 16623) -/.*_adpage= -# _adobjects. (easylistchina+easylist.txt: 16622) -/.*_adobjects\. -# _adnetwork. (easylistchina+easylist.txt: 16621) -/.*_adnetwork\. -# _adminka/ (easylistchina+easylist.txt: 16620) -/.*_adminka/ -# _admin/ads/ (easylistchina+easylist.txt: 16619) -/.*_admin/ads/ -# _admarking_ (easylistchina+easylist.txt: 16618) -/.*_admarking_ -# _admanager/ (easylistchina+easylist.txt: 16617) -/.*_admanager/ -# _adlog. (easylistchina+easylist.txt: 16616) -/.*_adlog\. -# _adlinkbar. (easylistchina+easylist.txt: 16615) -/.*_adlinkbar\. -# _adlib. (easylistchina+easylist.txt: 16614) -/.*_adlib\. -# _adlesse. (easylistchina+easylist.txt: 16613) -/.*_adlesse\. -# _adlabel_ (easylistchina+easylist.txt: 16612) -/.*_adlabel_ -# _adjug. (easylistchina+easylist.txt: 16611) -/.*_adjug\. -# _adify. (easylistchina+easylist.txt: 16610) -/.*_adify\. -# _adhub_ (easylistchina+easylist.txt: 16609) -/.*_adhub_ -# _adhoriz. (easylistchina+easylist.txt: 16608) -/.*_adhoriz\. -# _adhome_ (easylistchina+easylist.txt: 16607) -/.*_adhome_ -# _adhome. (easylistchina+easylist.txt: 16606) -/.*_adhome\. -# _adhoc? (easylistchina+easylist.txt: 16605) -/.*_adhoc\? -# _adfunction. (easylistchina+easylist.txt: 16604) -/.*_adfunction\. -# _adframe_ (easylistchina+easylist.txt: 16603) -/.*_adframe_ -# _adframe/ (easylistchina+easylist.txt: 16602) -/.*_adframe/ -# _adframe. (easylistchina+easylist.txt: 16601) -/.*_adframe\. -# _adengine_ (easylistchina+easylist.txt: 16600) -/.*_adengine_ -# _adengage_ (easylistchina+easylist.txt: 16599) -/.*_adengage_ -# _adengage. (easylistchina+easylist.txt: 16598) -/.*_adengage\. -# _adcount= (easylistchina+easylist.txt: 16597) -/.*_adcount= -# _adcontent/ (easylistchina+easylist.txt: 16596) -/.*_adcontent/ -# _adcom. (easylistchina+easylist.txt: 16595) -/.*_adcom\. -# _adchoices. (easylistchina+easylist.txt: 16594) -/.*_adchoices\. -# _adchoice. (easylistchina+easylist.txt: 16593) -/.*_adchoice\. -# _adcall_ (easylistchina+easylist.txt: 16592) -/.*_adcall_ -# _adcall. (easylistchina+easylist.txt: 16591) -/.*_adcall\. -# _adbreak. (easylistchina+easylist.txt: 16590) -/.*_adbreak\. -# _adbox_ (easylistchina+easylist.txt: 16589) -/.*_adbox_ -# _adbox. (easylistchina+easylist.txt: 16588) -/.*_adbox\. -# _adblue. (easylistchina+easylist.txt: 16587) -/.*_adblue\. -# _adbit. (easylistchina+easylist.txt: 16586) -/.*_adbit\. -# _adbg2a. (easylistchina+easylist.txt: 16585) -/.*_adbg2a\. -# _adbg2. (easylistchina+easylist.txt: 16584) -/.*_adbg2\. -# _adbg1a. (easylistchina+easylist.txt: 16583) -/.*_adbg1a\. -# _adbar. (easylistchina+easylist.txt: 16582) -/.*_adbar\. -# _adbanners. (easylistchina+easylist.txt: 16581) -/.*_adbanners\. -# _adbanner_ (easylistchina+easylist.txt: 16580) -/.*_adbanner_ -# _adbanner/ (easylistchina+easylist.txt: 16579) -/.*_adbanner/ -# _adbanner. (easylistchina+easylist.txt: 16578) -/.*_adbanner\. -# _adaptvad. (easylistchina+easylist.txt: 16577) -/.*_adaptvad\. -# _adagency/ (easylistchina+easylist.txt: 16576) -/.*_adagency/ -# _ad_zone_ (easylistchina+easylist.txt: 16575) -/.*_ad_zone_ -# _ad_yellow. (easylistchina+easylist.txt: 16574) -/.*_ad_yellow\. -# _ad_wrapper. (easylistchina+easylist.txt: 16573) -/.*_ad_wrapper\. -# _ad_widesky. (easylistchina+easylist.txt: 16572) -/.*_ad_widesky\. -# _ad_view= (easylistchina+easylist.txt: 16571) -/.*_ad_view= -# _ad_vertical. (easylistchina+easylist.txt: 16570) -/.*_ad_vertical\. -# _ad_url= (easylistchina+easylist.txt: 16569) -/.*_ad_url= -# _ad_template_ (easylistchina+easylist.txt: 16568) -/.*_ad_template_ -# _ad_tall. (easylistchina+easylist.txt: 16567) -/.*_ad_tall\. -# _ad_square. (easylistchina+easylist.txt: 16566) -/.*_ad_square\. -# _ad_sponsor/ (easylistchina+easylist.txt: 16565) -/.*_ad_sponsor/ -# _ad_small. (easylistchina+easylist.txt: 16564) -/.*_ad_small\. -# _ad_slot= (easylistchina+easylist.txt: 16563) -/.*_ad_slot= -# _ad_skyscraper. (easylistchina+easylist.txt: 16562) -/.*_ad_skyscraper\. -# _ad_sky. (easylistchina+easylist.txt: 16561) -/.*_ad_sky\. -# _ad_size. (easylistchina+easylist.txt: 16560) -/.*_ad_size\. -# _ad_side. (easylistchina+easylist.txt: 16559) -/.*_ad_side\. -# _ad_show& (easylistchina+easylist.txt: 16558) -/.*_ad_show& -# _ad_serving. (easylistchina+easylist.txt: 16557) -/.*_ad_serving\. -# _ad_service. (easylistchina+easylist.txt: 16556) -/.*_ad_service\. -# _ad_run. (easylistchina+easylist.txt: 16555) -/.*_ad_run\. -# _ad_right_ (easylistchina+easylist.txt: 16554) -/.*_ad_right_ -# _ad_right. (easylistchina+easylist.txt: 16553) -/.*_ad_right\. -# _ad_renderer_ (easylistchina+easylist.txt: 16552) -/.*_ad_renderer_ -# _ad_render_ (easylistchina+easylist.txt: 16551) -/.*_ad_render_ -# _ad_promo2. (easylistchina+easylist.txt: 16550) -/.*_ad_promo2\. -# _ad_position_ (easylistchina+easylist.txt: 16549) -/.*_ad_position_ -# _ad_placeholder- (easylistchina+easylist.txt: 16548) -/.*_ad_placeholder- -# _ad_page_ (easylistchina+easylist.txt: 16547) -/.*_ad_page_ -# _ad_over_ (easylistchina+easylist.txt: 16546) -/.*_ad_over_ -# _ad_one. (easylistchina+easylist.txt: 16545) -/.*_ad_one\. -# _ad_number= (easylistchina+easylist.txt: 16544) -/.*_ad_number= -# _ad_new_ (easylistchina+easylist.txt: 16543) -/.*_ad_new_ -# _ad_minileaderboard. (easylistchina+easylist.txt: 16542) -/.*_ad_minileaderboard\. -# _ad_middle_ (easylistchina+easylist.txt: 16541) -/.*_ad_middle_ -# _ad_logo. (easylistchina+easylist.txt: 16540) -/.*_ad_logo\. -# _ad_leaderboard. (easylistchina+easylist.txt: 16539) -/.*_ad_leaderboard\. -# _ad_layer_ (easylistchina+easylist.txt: 16538) -/.*_ad_layer_ -# _ad_label. (easylistchina+easylist.txt: 16537) -/.*_ad_label\. -# _ad_interactive. (easylistchina+easylist.txt: 16536) -/.*_ad_interactive\. -# _ad_integration. (easylistchina+easylist.txt: 16535) -/.*_ad_integration\. -# _ad_init/ (easylistchina+easylist.txt: 16534) -/.*_ad_init/ -# _ad_images/ (easylistchina+easylist.txt: 16533) -/.*_ad_images/ -# _ad_image_ (easylistchina+easylist.txt: 16532) -/.*_ad_image_ -# _ad_iframe. (easylistchina+easylist.txt: 16531) -/.*_ad_iframe\. -# _ad_ids= (easylistchina+easylist.txt: 16530) -/.*_ad_ids= -# _ad_homepage. (easylistchina+easylist.txt: 16529) -/.*_ad_homepage\. -# _ad_heading. (easylistchina+easylist.txt: 16528) -/.*_ad_heading\. -# _ad_header. (easylistchina+easylist.txt: 16527) -/.*_ad_header\. -# _ad_head. (easylistchina+easylist.txt: 16526) -/.*_ad_head\. -# _ad_handler. (easylistchina+easylist.txt: 16525) -/.*_ad_handler\. -# _ad_frame. (easylistchina+easylist.txt: 16524) -/.*_ad_frame\. -# _ad_footer_ (easylistchina+easylist.txt: 16523) -/.*_ad_footer_ -# _ad_footer. (easylistchina+easylist.txt: 16522) -/.*_ad_footer\. -# _ad_feed. (easylistchina+easylist.txt: 16521) -/.*_ad_feed\. -# _ad_expand_ (easylistchina+easylist.txt: 16520) -/.*_ad_expand_ -# _ad_engine/ (easylistchina+easylist.txt: 16519) -/.*_ad_engine/ -# _ad_end_ (easylistchina+easylist.txt: 16518) -/.*_ad_end_ -# _ad_domain_ (easylistchina+easylist.txt: 16517) -/.*_ad_domain_ -# _ad_div= (easylistchina+easylist.txt: 16516) -/.*_ad_div= -# _ad_desktop_ (easylistchina+easylist.txt: 16515) -/.*_ad_desktop_ -# _ad_courier. (easylistchina+easylist.txt: 16514) -/.*_ad_courier\. -# _ad_count= (easylistchina+easylist.txt: 16513) -/.*_ad_count= -# _ad_count. (easylistchina+easylist.txt: 16512) -/.*_ad_count\. -# _ad_controller. (easylistchina+easylist.txt: 16511) -/.*_ad_controller\. -# _ad_content. (easylistchina+easylist.txt: 16510) -/.*_ad_content\. -# _ad_code. (easylistchina+easylist.txt: 16509) -/.*_ad_code\. -# _ad_close. (easylistchina+easylist.txt: 16508) -/.*_ad_close\. -# _ad_choices_ (easylistchina+easylist.txt: 16507) -/.*_ad_choices_ -# _ad_choices. (easylistchina+easylist.txt: 16506) -/.*_ad_choices\. -# _ad_change. (easylistchina+easylist.txt: 16505) -/.*_ad_change\. -# _ad_center. (easylistchina+easylist.txt: 16504) -/.*_ad_center\. -# _ad_bsb. (easylistchina+easylist.txt: 16503) -/.*_ad_bsb\. -# _ad_box. (easylistchina+easylist.txt: 16502) -/.*_ad_box\. -# _ad_bottom. (easylistchina+easylist.txt: 16501) -/.*_ad_bottom\. -# _ad_block& (easylistchina+easylist.txt: 16500) -/.*_ad_block& -# _ad_big. (easylistchina+easylist.txt: 16499) -/.*_ad_big\. -# _ad_banner_ (easylistchina+easylist.txt: 16498) -/.*_ad_banner_ -# _ad_banner. (easylistchina+easylist.txt: 16497) -/.*_ad_banner\. -# _ad_background. (easylistchina+easylist.txt: 16496) -/.*_ad_background\. -# _ad_article_ (easylistchina+easylist.txt: 16495) -/.*_ad_article_ -# _ad_actron. (easylistchina+easylist.txt: 16494) -/.*_ad_actron\. -# _ad_350x250. (easylistchina+easylist.txt: 16493) -/.*_ad_350x250\. -# _ad_300. (easylistchina+easylist.txt: 16492) -/.*_ad_300\. -# _ad_2012. (easylistchina+easylist.txt: 16491) -/.*_ad_2012\. -# _ad_125x125. (easylistchina+easylist.txt: 16490) -/.*_ad_125x125\. -# _ad?size= (easylistchina+easylist.txt: 16489) -/.*_ad\?size= -# _ad?darttag= (easylistchina+easylist.txt: 16488) -/.*_ad\?darttag= -# _ad9. (easylistchina+easylist.txt: 16487) -/.*_ad9\. -# _ad728x90. (easylistchina+easylist.txt: 16486) -/.*_ad728x90\. -# _ad6. (easylistchina+easylist.txt: 16485) -/.*_ad6\. -# _ad300x250. (easylistchina+easylist.txt: 16484) -/.*_ad300x250\. -# _ad300. (easylistchina+easylist.txt: 16483) -/.*_ad300\. -# _ad3. (easylistchina+easylist.txt: 16482) -/.*_ad3\. -# _ad234x90- (easylistchina+easylist.txt: 16481) -/.*_ad234x90- -# _ad2. (easylistchina+easylist.txt: 16480) -/.*_ad2\. -# _ad1b. (easylistchina+easylist.txt: 16479) -/.*_ad1b\. -# _ad1a. (easylistchina+easylist.txt: 16478) -/.*_ad1a\. -# _Ad125. (easylistchina+easylist.txt: 16477) -/.*_Ad125\. -# _ad120x120_ (easylistchina+easylist.txt: 16476) -/.*_ad120x120_ -# _ad103. (easylistchina+easylist.txt: 16475) -/.*_ad103\. -# _ad1.$~stylesheet (easylistchina+easylist.txt: 16474) -/.*_ad1\. -# _ad01_ (easylistchina+easylist.txt: 16473) -/.*_ad01_ -# _ad01. (easylistchina+easylist.txt: 16472) -/.*_ad01\. -# _ad/section_ (easylistchina+easylist.txt: 16471) -/.*_ad/section_ -# _ad/public/ (easylistchina+easylist.txt: 16470) -/.*_ad/public/ -# _AD/jquery. (easylistchina+easylist.txt: 16469) -/.*_AD/jquery\. -# _ad/full_ (easylistchina+easylist.txt: 16468) -/.*_ad/full_ -# _ad/display? (easylistchina+easylist.txt: 16467) -/.*_ad/display\? -# _ad.png? (easylistchina+easylist.txt: 16466) -/.*_ad\.png\? -# _ad.php? (easylistchina+easylist.txt: 16465) -/.*_ad\.php\? -# _ad.jsp? (easylistchina+easylist.txt: 16464) -/.*_ad\.jsp\? -# _ad.gif| (easylistchina+easylist.txt: 16463) -/.*_ad\.gif$ -# _ad-125x125. (easylistchina+easylist.txt: 16462) -/.*_ad-125x125\. -# _ad&zone= (easylistchina+easylist.txt: 16461) -/.*_ad&zone= -# _acorn_ad_ (easylistchina+easylist.txt: 16460) -/.*_acorn_ad_ -# _728x90ad_ (easylistchina+easylist.txt: 16459) -/.*_728x90ad_ -# _468x60ad. (easylistchina+easylist.txt: 16458) -/.*_468x60ad\. -# _300x250Banner_ (easylistchina+easylist.txt: 16457) -/.*_300x250Banner_ -# _160x550. (easylistchina+easylist.txt: 16456) -/.*_160x550\. -# _160_ad_ (easylistchina+easylist.txt: 16455) -/.*_160_ad_ -# _125ad. (easylistchina+easylist.txt: 16454) -/.*_125ad\. -# ^pid=Ads^ (easylistchina+easylist.txt: 16453) -/(.*[^\w%.-])?pid=Ads[^\w%.-] -# ^mod=wms&do=view_*&zone= (easylistchina+easylist.txt: 16452) -/(.*[^\w%.-])?mod=wms&do=view_.*&zone= -# ^fp=*&prvtof= (easylistchina+easylist.txt: 16451) -/(.*[^\w%.-])?fp=.*&prvtof= -# ?ZoneID=*&SiteID=*&PageID= (easylistchina+easylist.txt: 16450) -/.*\?ZoneID=.*&SiteID=.*&PageID= -# ?ZoneID=*&PageID=*&SiteID= (easylistchina+easylist.txt: 16449) -/.*\?ZoneID=.*&PageID=.*&SiteID= -# ?wpproadszoneid= (easylistchina+easylist.txt: 16448) -/.*\?wpproadszoneid= -# ?wm=*&prm=rev& (easylistchina+easylist.txt: 16447) -/.*\?wm=.*&prm=rev& -# ?view=ad& (easylistchina+easylist.txt: 16446) -/.*\?view=ad& -# ?type=oas_pop& (easylistchina+easylist.txt: 16445) -/.*\?type=oas_pop& -# ?type=ad& (easylistchina+easylist.txt: 16444) -/.*\?type=ad& -# ?simple_ad_ (easylistchina+easylist.txt: 16443) -/.*\?simple_ad_ -# ?sid=ads (easylistchina+easylist.txt: 16442) -/.*\?sid=ads -# ?service=ad& (easylistchina+easylist.txt: 16441) -/.*\?service=ad& -# ?phpAds_ (easylistchina+easylist.txt: 16440) -/.*\?phpAds_ -# ?OASTagURL= (easylistchina+easylist.txt: 16439) -/.*\?OASTagURL= -# ?module=ads/ (easylistchina+easylist.txt: 16438) -/.*\?module=ads/ -# ?idaffiliation= (easylistchina+easylist.txt: 16437) -/.*\?idaffiliation= -# ?handler=ads& (easylistchina+easylist.txt: 16436) -/.*\?handler=ads& -# ?goto=ad| (easylistchina+easylist.txt: 16435) -/.*\?goto=ad$ -# ?getad=&$~object-subrequest (easylistchina+easylist.txt: 16434) -/.*\?getad=& -# ?g1t2h=*&t1m2k3= (easylistchina+easylist.txt: 16433) -/.*\?g1t2h=.*&t1m2k3= -# ?file=ads& (easylistchina+easylist.txt: 16432) -/.*\?file=ads& -# ?dfpadname= (easylistchina+easylist.txt: 16431) -/.*\?dfpadname= -# ?bannerXGroupId= (easylistchina+easylist.txt: 16430) -/.*\?bannerXGroupId= -# ?bannerid= (easylistchina+easylist.txt: 16429) -/.*\?bannerid= -# ?banner_id= (easylistchina+easylist.txt: 16428) -/.*\?banner_id= -# ?banner.id= (easylistchina+easylist.txt: 16427) -/.*\?banner\.id= -# ?adzone= (easylistchina+easylist.txt: 16426) -/.*\?adzone= -# ?adx= (easylistchina+easylist.txt: 16425) -/.*\?adx= -# ?advurl= (easylistchina+easylist.txt: 16424) -/.*\?advurl= -# ?advtile= (easylistchina+easylist.txt: 16423) -/.*\?advtile= -# ?advsystem= (easylistchina+easylist.txt: 16422) -/.*\?advsystem= -# ?advideo_ (easylistchina+easylist.txt: 16421) -/.*\?advideo_ -# ?advertising= (easylistchina+easylist.txt: 16420) -/.*\?advertising= -# ?advertiser= (easylistchina+easylist.txt: 16417) -/.*\?advertiser= -# ?advertisement= (easylistchina+easylist.txt: 16416) -/.*\?advertisement= -# ?advert_key= (easylistchina+easylist.txt: 16415) -/.*\?advert_key= -# ?adversion= (easylistchina+easylist.txt: 16414) -/.*\?adversion= -# ?adv_type= (easylistchina+easylist.txt: 16413) -/.*\?adv_type= -# ?adv/id= (easylistchina+easylist.txt: 16412) -/.*\?adv/id= -# ?adunitname= (easylistchina+easylist.txt: 16411) -/.*\?adunitname= -# ?adunitid= (easylistchina+easylist.txt: 16410) -/.*\?adunitid= -# ?adunit_id= (easylistchina+easylist.txt: 16409) -/.*\?adunit_id= -# ?adtype= (easylistchina+easylist.txt: 16408) -/.*\?adtype= -# ?adtechplacementid= (easylistchina+easylist.txt: 16407) -/.*\?adtechplacementid= -# ?adtarget= (easylistchina+easylist.txt: 16406) -/.*\?adtarget= -# ?adTagUrl= (easylistchina+easylist.txt: 16405) -/.*\?adTagUrl= -# ?adtag= (easylistchina+easylist.txt: 16404) -/.*\?adtag= -# ?adslot= (easylistchina+easylist.txt: 16403) -/.*\?adslot= -# ?adsize= (easylistchina+easylist.txt: 16402) -/.*\?adsize= -# ?adsite= (easylistchina+easylist.txt: 16401) -/.*\?adsite= -# ?adsdata= (easylistchina+easylist.txt: 16400) -/.*\?adsdata= -# ?ads= (easylistchina+easylist.txt: 16399) -/.*\?ads= -# ?adpartner= (easylistchina+easylist.txt: 16398) -/.*\?adpartner= -# ?adpage= (easylistchina+easylist.txt: 16397) -/.*\?adpage= -# ?adlocation= (easylistchina+easylist.txt: 16396) -/.*\?adlocation= -# ?adloc= (easylistchina+easylist.txt: 16395) -/.*\?adloc= -# ?adfox_ (easylistchina+easylist.txt: 16394) -/.*\?adfox_ -# ?adformat= (easylistchina+easylist.txt: 16393) -/.*\?adformat= -# ?adflashid= (easylistchina+easylist.txt: 16392) -/.*\?adflashid= -# ?adCount= (easylistchina+easylist.txt: 16391) -/.*\?adCount= -# ?adcontext= (easylistchina+easylist.txt: 16390) -/.*\?adcontext= -# ?adclass= (easylistchina+easylist.txt: 16389) -/.*\?adclass= -# ?adarea= (easylistchina+easylist.txt: 16388) -/.*\?adarea= -# ?ad_width= (easylistchina+easylist.txt: 16387) -/.*\?ad_width= -# ?ad_type= (easylistchina+easylist.txt: 16386) -/.*\?ad_type= -# ?ad_tag= (easylistchina+easylist.txt: 16385) -/.*\?ad_tag= -# ?ad_size= (easylistchina+easylist.txt: 16384) -/.*\?ad_size= -# ?ad_ids= (easylistchina+easylist.txt: 16383) -/.*\?ad_ids= -# ?action=ads& (easylistchina+easylist.txt: 16382) -/.*\?action=ads& -# ?*=x55g%3add4vv4fy. (easylistchina+easylist.txt: 16381) -/.*\?.*=x55g%3add4vv4fy\. -# =webad2& (easylistchina+easylist.txt: 16380) -/.*=webad2& -# =web&ads= (easylistchina+easylist.txt: 16379) -/.*=web&ads= -# =tickerReportAdCallback_ (easylistchina+easylist.txt: 16378) -/.*=tickerReportAdCallback_ -# =textads& (easylistchina+easylist.txt: 16377) -/.*=textads& -# =simpleads/ (easylistchina+easylist.txt: 16376) -/.*=simpleads/ -# =showsearchgoogleads& (easylistchina+easylist.txt: 16375) -/.*=showsearchgoogleads& -# =searchadslider| (easylistchina+easylist.txt: 16374) -/.*=searchadslider$ -# =rightAds_ (easylistchina+easylist.txt: 16373) -/.*=rightAds_ -# =oas_tag. (easylistchina+easylist.txt: 16372) -/.*=oas_tag\. -# =js_ads& (easylistchina+easylist.txt: 16371) -/.*=js_ads& -# =iframe_adv& (easylistchina+easylist.txt: 16370) -/.*=iframe_adv& -# =half-page-ad& (easylistchina+easylist.txt: 16369) -/.*=half-page-ad& -# =GetSponsorAds& (easylistchina+easylist.txt: 16368) -/.*=GetSponsorAds& -# =dynamicwebad& (easylistchina+easylist.txt: 16367) -/.*=dynamicwebad& -# =dynamicads& (easylistchina+easylist.txt: 16366) -/.*=dynamicads& -# =displayAds& (easylistchina+easylist.txt: 16365) -/.*=displayAds& -# =DisplayAd& (easylistchina+easylist.txt: 16364) -/.*=DisplayAd& -# =display_ad& (easylistchina+easylist.txt: 16363) -/.*=display_ad& -# =deliverAdFrame& (easylistchina+easylist.txt: 16362) -/.*=deliverAdFrame& -# =dartad_ (easylistchina+easylist.txt: 16361) -/.*=dartad_ -# =com_ads& (easylistchina+easylist.txt: 16360) -/.*=com_ads& -# =clkads/ (easylistchina+easylist.txt: 16359) -/.*=clkads/ -# =big-ad-switch_ (easylistchina+easylist.txt: 16358) -/.*=big-ad-switch_ -# =banners_ad& (easylistchina+easylist.txt: 16357) -/.*=banners_ad& -# =akiba_ads_ (easylistchina+easylist.txt: 16356) -/.*=akiba_ads_ -# =adView& (easylistchina+easylist.txt: 16355) -/.*=adView& -# =advertorial& (easylistchina+easylist.txt: 16354) -/.*=advertorial& -# =advertiser/ (easylistchina+easylist.txt: 16353) -/.*=advertiser/ -# =advertiser. (easylistchina+easylist.txt: 16352) -/.*=advertiser\. -# =advert/ (easylistchina+easylist.txt: 16351) -/.*=advert/ -# =adunit& (easylistchina+easylist.txt: 16350) -/.*=adunit& -# =adtech_ (easylistchina+easylist.txt: 16349) -/.*=adtech_ -# =adspremiumplacement& (easylistchina+easylist.txt: 16348) -/.*=adspremiumplacement& -# =adslot& (easylistchina+easylist.txt: 16347) -/.*=adslot& -# =adshow& (easylistchina+easylist.txt: 16346) -/.*=adshow& -# =adsfinal. (easylistchina+easylist.txt: 16345) -/.*=adsfinal\. -# =adscripts& (easylistchina+easylist.txt: 16344) -/.*=adscripts& -# =adsCallback& (easylistchina+easylist.txt: 16343) -/.*=adsCallback& -# =adreplacementWrapperReg. (easylistchina+easylist.txt: 16342) -/.*=adreplacementWrapperReg\. -# =admodeliframe& (easylistchina+easylist.txt: 16341) -/.*=admodeliframe& -# =adMenu& (easylistchina+easylist.txt: 16340) -/.*=adMenu& -# =admeld& (easylistchina+easylist.txt: 16339) -/.*=admeld& -# =adlabs& (easylistchina+easylist.txt: 16338) -/.*=adlabs& -# =adexpert& (easylistchina+easylist.txt: 16337) -/.*=adexpert& -# =adcode& (easylistchina+easylist.txt: 16336) -/.*=adcode& -# =adcenter& (easylistchina+easylist.txt: 16335) -/.*=adcenter& -# =adbanner_ (easylistchina+easylist.txt: 16334) -/.*=adbanner_ -# =ad_iframe_ (easylistchina+easylist.txt: 16333) -/.*=ad_iframe_ -# =ad_iframe& (easylistchina+easylist.txt: 16332) -/.*=ad_iframe& -# =ad320x50- (easylistchina+easylist.txt: 16331) -/.*=ad320x50- -# =ad-rectangle- (easylistchina+easylist.txt: 16330) -/.*=ad-rectangle- -# =ad-leaderboard- (easylistchina+easylist.txt: 16329) -/.*=ad-leaderboard- -# ;iframeid=ad_ (easylistchina+easylist.txt: 16328) -/.*;iframeid=ad_ -# ;cue=pre;$object-subrequest (easylistchina+easylist.txt: 16327) -/.*;cue=pre; -# ;adsense_ (easylistchina+easylist.txt: 16326) -/.*;adsense_ -# :8080/ads/ (easylistchina+easylist.txt: 16325) -/.*:8080/ads/ -# ://wrapper.*/a? (easylistchina+easylist.txt: 16324) -/.*://wrapper\..*/a\? -wrapper.*./(.*/)?a\? -# ://synad. (easylistchina+easylist.txt: 16323) -/.*://synad\. -synad.*. -# ://rss.*/~a/ (easylistchina+easylist.txt: 16322) -/.*://rss\..*/~a/ -rss.*./(.*/)?~a/ -# ://promo.$third-party (easylistchina+easylist.txt: 16321) -/.*://promo\. -promo.*. -# ://pop-over. (easylistchina+easylist.txt: 16320) -/.*://pop-over\. -pop-over.*. -# ://ox-*/jstag^ (easylistchina+easylist.txt: 16319) -/.*://ox-.*/jstag[^\w%.-] -ox-*./(.*/)?jstag[^\w%.-] -# ://oas.*@ (easylistchina+easylist.txt: 16318) -/.*://oas\..*@ -oas.*./.*@ -# ://findnsave.*.*/td/portablerop.aspx? (easylistchina+easylist.txt: 16317) -/.*://findnsave\..*\..*/td/portablerop\.aspx\? -findnsave.*./.*\..*/td/portablerop\.aspx\? -findnsave.*.*./(.*/)?td/portablerop\.aspx\? -# ://findnsave.*.*/api/groupon.json? (easylistchina+easylist.txt: 16316) -/.*://findnsave\..*\..*/api/groupon\.json\? -findnsave.*./.*\..*/api/groupon\.json\? -findnsave.*.*./(.*/)?api/groupon\.json\? -# ://feeds.*/~a/ (easylistchina+easylist.txt: 16315) -/.*://feeds\..*/~a/ -feeds.*./(.*/)?~a/ -# ://delivery.*/jstag^ (easylistchina+easylist.txt: 16314) -/.*://delivery\..*/jstag[^\w%.-] -delivery.*./(.*/)?jstag[^\w%.-] -# ://bwp.*/search (easylistchina+easylist.txt: 16313) -/.*://bwp\..*/search -bwp.*./(.*/)?search -# ://banners.$third-party (easylistchina+easylist.txt: 16312) -/.*://banners\. -banners.*. -# ://banner.$third-party (easylistchina+easylist.txt: 16311) -/.*://banner\. -banner.*. -# ://ax-d.*/jstag^ (easylistchina+easylist.txt: 16310) -/.*://ax-d\..*/jstag[^\w%.-] -ax-d.*./(.*/)?jstag[^\w%.-] -# ://affiliates.$third-party (easylistchina+easylist.txt: 16309) -/.*://affiliates\. -affiliates.*. -# ://affiliate.$third-party (easylistchina+easylist.txt: 16308) -/.*://affiliate\. -affiliate.*. -# ://ads. (easylistchina+easylist.txt: 16306) -/.*://ads\. -ads.*. -# ://adcl. (easylistchina+easylist.txt: 16305) -/.*://adcl\. -adcl.*. -# ://ad.*/jstag^ (easylistchina+easylist.txt: 16304) -/.*://ad\..*/jstag[^\w%.-] -ad.*./(.*/)?jstag[^\w%.-] -# ://a.ads. (easylistchina+easylist.txt: 16303) -/.*://a\.ads\. -a.ads.*. -# /~cdn/ads/* (easylistchina+easylist.txt: 16302) -/(.*/)?~cdn/ads/.* -# /zedo_ (easylistchina+easylist.txt: 16301) -/(.*/)?zedo_ -# /zanox_ad/* (easylistchina+easylist.txt: 16300) -/(.*/)?zanox_ad/.* -# /zanox/banner/* (easylistchina+easylist.txt: 16299) -/(.*/)?zanox/banner/.* -# /zalando-ad- (easylistchina+easylist.txt: 16298) -/(.*/)?zalando-ad- -zalando-ad-*. -# /zagcookie_ (easylistchina+easylist.txt: 16297) -/(.*/)?zagcookie_ -# /z/ads/* (easylistchina+easylist.txt: 16296) -/(.*/)?z/ads/.* -# /z-ads. (easylistchina+easylist.txt: 16295) -/(.*/)?z-ads\. -z-ads.*. -# /yume_ad_library_ (easylistchina+easylist.txt: 16294) -/(.*/)?yume_ad_library_ -# /ysmwrapper.js (easylistchina+easylist.txt: 16293) -/(.*/)?ysmwrapper\.js -ysmwrapper.js*. -# /ysmads. (easylistchina+easylist.txt: 16292) -/(.*/)?ysmads\. -ysmads.*. -# /ysc_csc_news (easylistchina+easylist.txt: 16291) -/(.*/)?ysc_csc_news -# /ypad/* (easylistchina+easylist.txt: 16290) -/(.*/)?ypad/.* -# /youradhere_ (easylistchina+easylist.txt: 16289) -/(.*/)?youradhere_ -# /youradhere468- (easylistchina+easylist.txt: 16288) -/(.*/)?youradhere468- -youradhere468-*. -# /youradhere. (easylistchina+easylist.txt: 16287) -/(.*/)?youradhere\. -youradhere.*. -# /yourad1. (easylistchina+easylist.txt: 16286) -/(.*/)?yourad1\. -yourad1.*. -# /your_ad. (easylistchina+easylist.txt: 16285) -/(.*/)?your_ad\. -# /your-ad. (easylistchina+easylist.txt: 16284) -/(.*/)?your-ad\. -your-ad.*. -# /your-ad- (easylistchina+easylist.txt: 16283) -/(.*/)?your-ad- -your-ad-*. -# /yld_mgr/* (easylistchina+easylist.txt: 16282) -/(.*/)?yld_mgr/.* -# /yld/js/* (easylistchina+easylist.txt: 16281) -/(.*/)?yld/js/.* -# /yin-ad/* (easylistchina+easylist.txt: 16280) -/(.*/)?yin-ad/.* -# /yieldmanager/* (easylistchina+easylist.txt: 16279) -/(.*/)?yieldmanager/.* -# /yieldlab. (easylistchina+easylist.txt: 16278) -/(.*/)?yieldlab\. -yieldlab.*. -# /yieldads. (easylistchina+easylist.txt: 16277) -/(.*/)?yieldads\. -yieldads.*. -# /yhs/ads? (easylistchina+easylist.txt: 16276) -/(.*/)?yhs/ads\? -# /yesbaby. (easylistchina+easylist.txt: 16275) -/(.*/)?yesbaby\. -yesbaby.*. -# /yellowpagesads/* (easylistchina+easylist.txt: 16274) -/(.*/)?yellowpagesads/.* -# /yahoofeedproxy. (easylistchina+easylist.txt: 16273) -/(.*/)?yahoofeedproxy\. -yahoofeedproxy.*. -# /yahooadsobject. (easylistchina+easylist.txt: 16272) -/(.*/)?yahooadsobject\. -yahooadsobject.*. -# /yahooadsapi. (easylistchina+easylist.txt: 16271) -/(.*/)?yahooadsapi\. -yahooadsapi.*. -# /yahooads/* (easylistchina+easylist.txt: 16270) -/(.*/)?yahooads/.* -# /yahooads. (easylistchina+easylist.txt: 16269) -/(.*/)?yahooads\. -yahooads.*. -# /YahooAd_ (easylistchina+easylist.txt: 16268) -/(.*/)?YahooAd_ -# /yahoo_overture. (easylistchina+easylist.txt: 16267) -/(.*/)?yahoo_overture\. -# /yahoo/ads. (easylistchina+easylist.txt: 16266) -/(.*/)?yahoo/ads\. -# /yahoo-ads/* (easylistchina+easylist.txt: 16265) -/(.*/)?yahoo-ads/.* -# /yahoo-ad- (easylistchina+easylist.txt: 16264) -/(.*/)?yahoo-ad- -yahoo-ad-*. -# /yads_ (easylistchina+easylist.txt: 16263) -/(.*/)?yads_ -# /yads/* (easylistchina+easylist.txt: 16262) -/(.*/)?yads/.* -# /yads. (easylistchina+easylist.txt: 16261) -/(.*/)?yads\. -yads.*. -# /yads- (easylistchina+easylist.txt: 16260) -/(.*/)?yads- -yads-*. -# /xxxmatch_ (easylistchina+easylist.txt: 16259) -/(.*/)?xxxmatch_ -# /xwords. (easylistchina+easylist.txt: 16258) -/(.*/)?xwords\. -xwords.*. -# /xpiads. (easylistchina+easylist.txt: 16256) -/(.*/)?xpiads\. -xpiads.*. -# /xnxx-ads. (easylistchina+easylist.txt: 16255) -/(.*/)?xnxx-ads\. -xnxx-ads.*. -# /xmladparser. (easylistchina+easylist.txt: 16254) -/(.*/)?xmladparser\. -xmladparser.*. -# /xml/ads_ (easylistchina+easylist.txt: 16253) -/(.*/)?xml/ads_ -# /xml/ad/* (easylistchina+easylist.txt: 16252) -/(.*/)?xml/ad/.* -# /xlayer/layer.php?uid=$script (easylistchina+easylist.txt: 16251) -/(.*/)?xlayer/layer\.php\?uid= -# /xhr/ad/* (easylistchina+easylist.txt: 16250) -/(.*/)?xhr/ad/.* -# /xfiles/ads/* (easylistchina+easylist.txt: 16249) -/(.*/)?xfiles/ads/.* -# /xclicks. (easylistchina+easylist.txt: 16248) -/(.*/)?xclicks\. -xclicks.*. -# /xbanner.php? (easylistchina+easylist.txt: 16247) -/(.*/)?xbanner\.php\? -# /xadvertisement. (easylistchina+easylist.txt: 16246) -/(.*/)?xadvertisement\. -xadvertisement.*. -# /xads.php (easylistchina+easylist.txt: 16245) -/(.*/)?xads\.php -xads.php*. -# /x5advcorner. (easylistchina+easylist.txt: 16244) -/(.*/)?x5advcorner\. -x5advcorner.*. -# /www/js/ad/* (easylistchina+easylist.txt: 16243) -/(.*/)?www/js/ad/.* -# /www/delivery/* (easylistchina+easylist.txt: 16242) -/(.*/)?www/delivery/.* -# /www/deliverx/* (easylistchina+easylist.txt: 16241) -/(.*/)?www/deliverx/.* -# /www/ads/* (easylistchina+easylist.txt: 16240) -/(.*/)?www/ads/.* -# /www/ad/* (easylistchina+easylist.txt: 16239) -/(.*/)?www/ad/.* -# /wwe_ads/* (easylistchina+easylist.txt: 16238) -/(.*/)?wwe_ads/.* -# /wwe_ads. (easylistchina+easylist.txt: 16237) -/(.*/)?wwe_ads\. -# /writelayerad. (easylistchina+easylist.txt: 16236) -/(.*/)?writelayerad\. -writelayerad.*. -# /wrapper/ads/* (easylistchina+easylist.txt: 16235) -/(.*/)?wrapper/ads/.* -# /wpproads. (easylistchina+easylist.txt: 16234) -/(.*/)?wpproads\. -wpproads.*. -# /wpproadds. (easylistchina+easylist.txt: 16233) -/(.*/)?wpproadds\. -wpproadds.*. -# /wpbanners_show.php (easylistchina+easylist.txt: 16232) -/(.*/)?wpbanners_show\.php -# /wpads/iframe. (easylistchina+easylist.txt: 16231) -/(.*/)?wpads/iframe\. -# /wp_pro_ad_system/* (easylistchina+easylist.txt: 16230) -/(.*/)?wp_pro_ad_system/.* -# /wp_ad_250_ (easylistchina+easylist.txt: 16229) -/(.*/)?wp_ad_250_ -# /wp_ad_250. (easylistchina+easylist.txt: 16228) -/(.*/)?wp_ad_250\. -# /wp-srv/ad/* (easylistchina+easylist.txt: 16227) -/(.*/)?wp-srv/ad/.* -# /wp-popup-scheduler/* (easylistchina+easylist.txt: 16226) -/(.*/)?wp-popup-scheduler/.* -# /wp-content/uploads/useful_banner_manager_banners/* (easylistchina+easylist.txt: 16225) -/(.*/)?wp-content/uploads/useful_banner_manager_banners/.* -# /wp-content/plugins/wp-super-popup/*$~stylesheet (easylistchina+easylist.txt: 16224) -/(.*/)?wp-content/plugins/wp-super-popup/.* -# /wp-content/plugins/wp-super-popup-pro/* (easylistchina+easylist.txt: 16223) -/(.*/)?wp-content/plugins/wp-super-popup-pro/.* -# /wp-content/plugins/wp-bannerize/* (easylistchina+easylist.txt: 16222) -/(.*/)?wp-content/plugins/wp-bannerize/.* -# /wp-content/plugins/useful-banner-manager/* (easylistchina+easylist.txt: 16221) -/(.*/)?wp-content/plugins/useful-banner-manager/.* -# /wp-content/plugins/platinumpopup/* (easylistchina+easylist.txt: 16220) -/(.*/)?wp-content/plugins/platinumpopup/.* -# /wp-content/plugins/m-wp-popup/*$~stylesheet (easylistchina+easylist.txt: 16219) -/(.*/)?wp-content/plugins/m-wp-popup/.* -# /wp-content/plugins/fasterim-optin/* (easylistchina+easylist.txt: 16218) -/(.*/)?wp-content/plugins/fasterim-optin/.* -# /wp-content/plugins/bhcb/lock.js (easylistchina+easylist.txt: 16217) -/(.*/)?wp-content/plugins/bhcb/lock\.js -# /wp-content/plugins/banner-manager/* (easylistchina+easylist.txt: 16216) -/(.*/)?wp-content/plugins/banner-manager/.* -# /wp-content/plugins/automatic-social-locker/* (easylistchina+easylist.txt: 16215) -/(.*/)?wp-content/plugins/automatic-social-locker/.* -# /wp-content/plugins/amazon-product-in-a-post-plugin/* (easylistchina+easylist.txt: 16214) -/(.*/)?wp-content/plugins/amazon-product-in-a-post-plugin/.* -# /wp-content/mbp-banner/* (easylistchina+easylist.txt: 16213) -/(.*/)?wp-content/mbp-banner/.* -# /wp-content/ads/* (easylistchina+easylist.txt: 16212) -/(.*/)?wp-content/ads/.* -# /work.php?n=*&size=*&c= (easylistchina+easylist.txt: 16211) -/(.*/)?work\.php\?n=.*&size=.*&c= -# /wordpress-ads-plug-in/* (easylistchina+easylist.txt: 16210) -/(.*/)?wordpress-ads-plug-in/.* -# /wmads. (easylistchina+easylist.txt: 16209) -/(.*/)?wmads\. -wmads.*. -# /wlbetathome/bannerflow/* (easylistchina+easylist.txt: 16208) -/(.*/)?wlbetathome/bannerflow/.* -# /wix-ad. (easylistchina+easylist.txt: 16207) -/(.*/)?wix-ad\. -wix-ad.*. -# /wired/ads/* (easylistchina+easylist.txt: 16206) -/(.*/)?wired/ads/.* -# /wire/ads/* (easylistchina+easylist.txt: 16205) -/(.*/)?wire/ads/.* -# /wipeads/* (easylistchina+easylist.txt: 16204) -/(.*/)?wipeads/.* -# /widgets/sponsored/* (easylistchina+easylist.txt: 16203) -/(.*/)?widgets/sponsored/.* -# /widgets/ads. (easylistchina+easylist.txt: 16202) -/(.*/)?widgets/ads\. -# /widgetadsense. (easylistchina+easylist.txt: 16201) -/(.*/)?widgetadsense\. -widgetadsense.*. -# /widgetad. (easylistchina+easylist.txt: 16200) -/(.*/)?widgetad\. -widgetad.*. -# /widget/ads/* (easylistchina+easylist.txt: 16199) -/(.*/)?widget/ads/.* -# /widget/ads. (easylistchina+easylist.txt: 16198) -/(.*/)?widget/ads\. -# /widget/ad/* (easylistchina+easylist.txt: 16197) -/(.*/)?widget/ad/.* -# /werbebanner/* (easylistchina+easylist.txt: 16196) -/(.*/)?werbebanner/.* -# /welcomeadredirect. (easylistchina+easylist.txt: 16195) -/(.*/)?welcomeadredirect\. -welcomeadredirect.*. -# /welcomead. (easylistchina+easylist.txt: 16194) -/(.*/)?welcomead\. -welcomead.*. -# /welcome_ad. (easylistchina+easylist.txt: 16193) -/(.*/)?welcome_ad\. -# /weeklyAdsLabel. (easylistchina+easylist.txt: 16192) -/(.*/)?weeklyAdsLabel\. -weeklyAdsLabel.*. -# /weborama.js (easylistchina+easylist.txt: 16191) -/(.*/)?weborama\.js -weborama.js*. -# /webmaster_ads/* (easylistchina+easylist.txt: 16190) -/(.*/)?webmaster_ads/.* -# /webmailad. (easylistchina+easylist.txt: 16189) -/(.*/)?webmailad\. -webmailad.*. -# /webadverts/* (easylistchina+easylist.txt: 16188) -/(.*/)?webadverts/.* -# /webadvert3/* (easylistchina+easylist.txt: 16187) -/(.*/)?webadvert3/.* -# /webadvert/* (easylistchina+easylist.txt: 16186) -/(.*/)?webadvert/.* -# /webadvert. (easylistchina+easylist.txt: 16185) -/(.*/)?webadvert\. -webadvert.*. -# /webadserver. (easylistchina+easylist.txt: 16184) -/(.*/)?webadserver\. -webadserver.*. -# /webads_ (easylistchina+easylist.txt: 16183) -/(.*/)?webads_ -# /webads/* (easylistchina+easylist.txt: 16182) -/(.*/)?webads/.* -# /webads. (easylistchina+easylist.txt: 16181) -/(.*/)?webads\. -webads.*. -# /webadimg/* (easylistchina+easylist.txt: 16180) -/(.*/)?webadimg/.* -# /webad? (easylistchina+easylist.txt: 16179) -/(.*/)?webad\? -# /WebAd/* (easylistchina+easylist.txt: 16178) -/(.*/)?WebAd/.* -# /webad. (easylistchina+easylist.txt: 16177) -/(.*/)?webad\. -webad.*. -# /web_ads/* (easylistchina+easylist.txt: 16176) -/(.*/)?web_ads/.* -# /web/ads/* (easylistchina+easylist.txt: 16175) -/(.*/)?web/ads/.* -# /web-ads/* (easylistchina+easylist.txt: 16174) -/(.*/)?web-ads/.* -# /web-ads. (easylistchina+easylist.txt: 16173) -/(.*/)?web-ads\. -web-ads.*. -# /web-ad_ (easylistchina+easylist.txt: 16172) -/(.*/)?web-ad_ -# /weather/ads/* (easylistchina+easylist.txt: 16171) -/(.*/)?weather/ads/.* -# /weather-sponsor/* (easylistchina+easylist.txt: 16170) -/(.*/)?weather-sponsor/.* -# /wbadvert/* (easylistchina+easylist.txt: 16169) -/(.*/)?wbadvert/.* -# /wave-ad- (easylistchina+easylist.txt: 16168) -/(.*/)?wave-ad- -wave-ad-*. -# /watchit_ad. (easylistchina+easylist.txt: 16167) -/(.*/)?watchit_ad\. -# /wallpaperads/* (easylistchina+easylist.txt: 16166) -/(.*/)?wallpaperads/.* -# /wallpaper_ads/* (easylistchina+easylist.txt: 16165) -/(.*/)?wallpaper_ads/.* -# /wahoha. (easylistchina+easylist.txt: 16164) -/(.*/)?wahoha\. -wahoha.*. -# /w/d/capu.php?z=$script,third-party (easylistchina+easylist.txt: 16163) -/(.*/)?w/d/capu\.php\?z= -# /w/ads/* (easylistchina+easylist.txt: 16162) -/(.*/)?w/ads/.* -# /VXLayerAd- (easylistchina+easylist.txt: 16161) -/(.*/)?VXLayerAd- -VXLayerAd-*. -# /vtextads. (easylistchina+easylist.txt: 16160) -/(.*/)?vtextads\. -vtextads.*. -# /vrdinterads- (easylistchina+easylist.txt: 16159) -/(.*/)?vrdinterads- -vrdinterads-*. -# /vplayerad. (easylistchina+easylist.txt: 16158) -/(.*/)?vplayerad\. -vplayerad.*. -# /vpaidadrenderer. (easylistchina+easylist.txt: 16157) -/(.*/)?vpaidadrenderer\. -vpaidadrenderer.*. -# /vpaidad3. (easylistchina+easylist.txt: 16156) -/(.*/)?vpaidad3\. -vpaidad3.*. -# /vogue_ads/* (easylistchina+easylist.txt: 16155) -/(.*/)?vogue_ads/.* -# /vnads/* (easylistchina+easylist.txt: 16154) -/(.*/)?vnads/.* -# /vnads. (easylistchina+easylist.txt: 16153) -/(.*/)?vnads\. -vnads.*. -# /visitoursponsors. (easylistchina+easylist.txt: 16152) -/(.*/)?visitoursponsors\. -visitoursponsors.*. -# /vision/ads/* (easylistchina+easylist.txt: 16151) -/(.*/)?vision/ads/.* -# /virtualgirlhd- (easylistchina+easylist.txt: 16150) -/(.*/)?virtualgirlhd- -virtualgirlhd-*. -# /virtualgirl/* (easylistchina+easylist.txt: 16149) -/(.*/)?virtualgirl/.* -# /virtual_girl_ (easylistchina+easylist.txt: 16148) -/(.*/)?virtual_girl_ -# /virtuagirlhd. (easylistchina+easylist.txt: 16147) -/(.*/)?virtuagirlhd\. -virtuagirlhd.*. -# /virtuagirl3. (easylistchina+easylist.txt: 16146) -/(.*/)?virtuagirl3\. -virtuagirl3.*. -# /virtuagirl/* (easylistchina+easylist.txt: 16145) -/(.*/)?virtuagirl/.* -# /virtuagirl. (easylistchina+easylist.txt: 16144) -/(.*/)?virtuagirl\. -virtuagirl.*. -# /views/ads/* (easylistchina+easylist.txt: 16143) -/(.*/)?views/ads/.* -# /viewid=*/site=*/size= (easylistchina+easylist.txt: 16142) -/(.*/)?viewid=.*/site=.*/size= -# /viewer/rad? (easylistchina+easylist.txt: 16141) -/(.*/)?viewer/rad\? -# /viewbannerad. (easylistchina+easylist.txt: 16140) -/(.*/)?viewbannerad\. -viewbannerad.*. -# /viewad? (easylistchina+easylist.txt: 16139) -/(.*/)?viewad\? -# /viewad/* (easylistchina+easylist.txt: 16138) -/(.*/)?viewad/.* -# /viewad. (easylistchina+easylist.txt: 16137) -/(.*/)?viewad\. -viewad.*. -# /view_banner. (easylistchina+easylist.txt: 16136) -/(.*/)?view_banner\. -# /view/banner/* (easylistchina+easylist.txt: 16135) -/(.*/)?view/banner/.* -# /view/ads/* (easylistchina+easylist.txt: 16134) -/(.*/)?view/ads/.* -# /videowall-ad. (easylistchina+easylist.txt: 16133) -/(.*/)?videowall-ad\. -videowall-ad.*. -# /videostreaming_ads. (easylistchina+easylist.txt: 16132) -/(.*/)?videostreaming_ads\. -# /videojs.ads. (easylistchina+easylist.txt: 16131) -/(.*/)?videojs\.ads\. -videojs.ads.*. -# /VideoAdsServingService/* (easylistchina+easylist.txt: 16130) -/(.*/)?VideoAdsServingService/.* -# /videoads/* (easylistchina+easylist.txt: 16129) -/(.*/)?videoads/.* -# /videoads. (easylistchina+easylist.txt: 16128) -/(.*/)?videoads\. -videoads.*. -# /videoadrenderer. (easylistchina+easylist.txt: 16127) -/(.*/)?videoadrenderer\. -videoadrenderer.*. -# /VideoAdContent? (easylistchina+easylist.txt: 16126) -/(.*/)?VideoAdContent\? -# /videoad_new. (easylistchina+easylist.txt: 16125) -/(.*/)?videoad_new\. -# /VideoAd/* (easylistchina+easylist.txt: 16124) -/(.*/)?VideoAd/.* -# /videoad. (easylistchina+easylist.txt: 16123) -/(.*/)?videoad\. -videoad.*. -# /video_ads/* (easylistchina+easylist.txt: 16122) -/(.*/)?video_ads/.* -# /video_ads. (easylistchina+easylist.txt: 16121) -/(.*/)?video_ads\. -# /video_ad_ (easylistchina+easylist.txt: 16120) -/(.*/)?video_ad_ -# /video_ad. (easylistchina+easylist.txt: 16119) -/(.*/)?video_ad\. -# /video2adrenderer. (easylistchina+easylist.txt: 16118) -/(.*/)?video2adrenderer\. -video2adrenderer.*. -# /video/ads/* (easylistchina+easylist.txt: 16117) -/(.*/)?video/ads/.* -# /video.ads.php? (easylistchina+easylist.txt: 16116) -/(.*/)?video\.ads\.php\? -# /video-ads-player. (easylistchina+easylist.txt: 16115) -/(.*/)?video-ads-player\. -video-ads-player.*. -# /video-ad-overlay. (easylistchina+easylist.txt: 16114) -/(.*/)?video-ad-overlay\. -video-ad-overlay.*. -# /vidadv. (easylistchina+easylist.txt: 16113) -/(.*/)?vidadv\. -vidadv.*. -# /viagogoads. (easylistchina+easylist.txt: 16112) -/(.*/)?viagogoads\. -viagogoads.*. -# /VHDpoppingModels/* (easylistchina+easylist.txt: 16111) -/(.*/)?VHDpoppingModels/.* -# /vghd2.gif (easylistchina+easylist.txt: 16110) -/(.*/)?vghd2\.gif -vghd2.gif*. -# /vghd.swf (easylistchina+easylist.txt: 16109) -/(.*/)?vghd\.swf -vghd.swf*. -# /vghd.gif (easylistchina+easylist.txt: 16108) -/(.*/)?vghd\.gif -vghd.gif*. -# /verticaladrotatorv2. (easylistchina+easylist.txt: 16107) -/(.*/)?verticaladrotatorv2\. -verticaladrotatorv2.*. -# /vert_ad. (easylistchina+easylist.txt: 16106) -/(.*/)?vert_ad\. -# /vert728ad. (easylistchina+easylist.txt: 16105) -/(.*/)?vert728ad\. -vert728ad.*. -# /vericaladtitle. (easylistchina+easylist.txt: 16104) -/(.*/)?vericaladtitle\. -vericaladtitle.*. -# /vendor-ads- (easylistchina+easylist.txt: 16103) -/(.*/)?vendor-ads- -vendor-ads-*. -# /vclkads. (easylistchina+easylist.txt: 16102) -/(.*/)?vclkads\. -vclkads.*. -# /vbvua.js (easylistchina+easylist.txt: 16101) -/(.*/)?vbvua\.js -vbvua.js*. -# /vboard/ads/* (easylistchina+easylist.txt: 16100) -/(.*/)?vboard/ads/.* -# /vb/ads/* (easylistchina+easylist.txt: 16099) -/(.*/)?vb/ads/.* -# /vastads. (easylistchina+easylist.txt: 16098) -/(.*/)?vastads\. -vastads.*. -# /VASTAdPlugin. (easylistchina+easylist.txt: 16097) -/(.*/)?VASTAdPlugin\. -VASTAdPlugin.*. -# /vast_ads_ (easylistchina+easylist.txt: 16096) -/(.*/)?vast_ads_ -# /valueclickvert. (easylistchina+easylist.txt: 16095) -/(.*/)?valueclickvert\. -valueclickvert.*. -# /valueclickbanner. (easylistchina+easylist.txt: 16094) -/(.*/)?valueclickbanner\. -valueclickbanner.*. -# /valueclick. (easylistchina+easylist.txt: 16093) -/(.*/)?valueclick\. -valueclick.*. -# /valueclick-ad. (easylistchina+easylist.txt: 16092) -/(.*/)?valueclick-ad\. -valueclick-ad.*. -# /vads/* (easylistchina+easylist.txt: 16091) -/(.*/)?vads/.* -# /v9/adv/* (easylistchina+easylist.txt: 16090) -/(.*/)?v9/adv/.* -# /v5/ads/* (easylistchina+easylist.txt: 16089) -/(.*/)?v5/ads/.* -# /utep_ad.js (easylistchina+easylist.txt: 16088) -/(.*/)?utep_ad\.js -# /utep/ad/* (easylistchina+easylist.txt: 16087) -/(.*/)?utep/ad/.* -# /usernext. (easylistchina+easylist.txt: 16086) -/(.*/)?usernext\. -usernext.*. -# /userimages/ads/* (easylistchina+easylist.txt: 16085) -/(.*/)?userimages/ads/.* -# /userad/* (easylistchina+easylist.txt: 16084) -/(.*/)?userad/.* -# /userad. (easylistchina+easylist.txt: 16083) -/(.*/)?userad\. -userad.*. -# /user_ads/* (easylistchina+easylist.txt: 16082) -/(.*/)?user_ads/.* -# /user/ads? (easylistchina+easylist.txt: 16081) -/(.*/)?user/ads\? -# /usenext16. (easylistchina+easylist.txt: 16080) -/(.*/)?usenext16\. -usenext16.*. -# /us-ads. (easylistchina+easylist.txt: 16079) -/(.*/)?us-ads\. -us-ads.*. -# /upsellingads/* (easylistchina+easylist.txt: 16078) -/(.*/)?upsellingads/.* -# /uploads/adv_ (easylistchina+easylist.txt: 16077) -/(.*/)?uploads/adv_ -# /uploads/adv/* (easylistchina+easylist.txt: 16076) -/(.*/)?uploads/adv/.* -# /uploads/ads/* (easylistchina+easylist.txt: 16075) -/(.*/)?uploads/ads/.* -# /UploadedAds/* (easylistchina+easylist.txt: 16074) -/(.*/)?UploadedAds/.* -# /uploaded/ads/* (easylistchina+easylist.txt: 16073) -/(.*/)?uploaded/ads/.* -# /upload/ads/* (easylistchina+easylist.txt: 16072) -/(.*/)?upload/ads/.* -# /uplimg/ads/* (easylistchina+easylist.txt: 16071) -/(.*/)?uplimg/ads/.* -# /update_layer/layer_os_new.php (easylistchina+easylist.txt: 16070) -/(.*/)?update_layer/layer_os_new\.php -# /update_ads/* (easylistchina+easylist.txt: 16069) -/(.*/)?update_ads/.* -# /up/ads/* (easylistchina+easylist.txt: 16068) -/(.*/)?up/ads/.* -# /unity/ad/* (easylistchina+easylist.txt: 16067) -/(.*/)?unity/ad/.* -# /unibluead. (easylistchina+easylist.txt: 16066) -/(.*/)?unibluead\. -unibluead.*. -# /ukc-ad. (easylistchina+easylist.txt: 16065) -/(.*/)?ukc-ad\. -ukc-ad.*. -# /uk/ads/* (easylistchina+easylist.txt: 16064) -/(.*/)?uk/ads/.* -# /uk.ads. (easylistchina+easylist.txt: 16063) -/(.*/)?uk\.ads\. -uk.ads.*. -# /ui/adv_ (easylistchina+easylist.txt: 16062) -/(.*/)?ui/adv_ -# /ui/adv. (easylistchina+easylist.txt: 16061) -/(.*/)?ui/adv\. -# /ui/ads/* (easylistchina+easylist.txt: 16060) -/(.*/)?ui/ads/.* -# /ugoads_inner. (easylistchina+easylist.txt: 16059) -/(.*/)?ugoads_inner\. -# /ugoads. (easylistchina+easylist.txt: 16058) -/(.*/)?ugoads\. -ugoads.*. -# /ucstat. (easylistchina+easylist.txt: 16057) -/(.*/)?ucstat\. -ucstat.*. -# /uberlayadrenderer. (easylistchina+easylist.txt: 16056) -/(.*/)?uberlayadrenderer\. -uberlayadrenderer.*. -# /u?pub= (easylistchina+easylist.txt: 16055) -/(.*/)?u\?pub= -# /u/ads/* (easylistchina+easylist.txt: 16054) -/(.*/)?u/ads/.* -# /u-ads. (easylistchina+easylist.txt: 16053) -/(.*/)?u-ads\. -u-ads.*. -# /txtads/* (easylistchina+easylist.txt: 16052) -/(.*/)?txtads/.* -# /txtad. (easylistchina+easylist.txt: 16051) -/(.*/)?txtad\. -txtad.*. -# /txt_adv. (easylistchina+easylist.txt: 16050) -/(.*/)?txt_adv\. -# /txt_ad_ (easylistchina+easylist.txt: 16049) -/(.*/)?txt_ad_ -# /txt_ad. (easylistchina+easylist.txt: 16048) -/(.*/)?txt_ad\. -# /TwtAd_ (easylistchina+easylist.txt: 16047) -/(.*/)?TwtAd_ -# /twgetad3. (easylistchina+easylist.txt: 16046) -/(.*/)?twgetad3\. -twgetad3.*. -# /TWBadbanner. (easylistchina+easylist.txt: 16045) -/(.*/)?TWBadbanner\. -TWBadbanner.*. -# /tvgdartads. (easylistchina+easylist.txt: 16044) -/(.*/)?tvgdartads\. -tvgdartads.*. -# /turbo_ad. (easylistchina+easylist.txt: 16043) -/(.*/)?turbo_ad\. -# /ttz_ad. (easylistchina+easylist.txt: 16042) -/(.*/)?ttz_ad\. -# /tsc.php?*&ses= (easylistchina+easylist.txt: 16041) -/(.*/)?tsc\.php\?.*&ses= -# /tripplead/* (easylistchina+easylist.txt: 16040) -/(.*/)?tripplead/.* -# /tribalad. (easylistchina+easylist.txt: 16039) -/(.*/)?tribalad\. -tribalad.*. -# /triadshow. (easylistchina+easylist.txt: 16038) -/(.*/)?triadshow\. -triadshow.*. -# /tremoradrenderer. (easylistchina+easylist.txt: 16037) -/(.*/)?tremoradrenderer\. -tremoradrenderer.*. -# /travidia/* (easylistchina+easylist.txt: 16036) -/(.*/)?travidia/.* -# /transad. (easylistchina+easylist.txt: 16035) -/(.*/)?transad\. -transad.*. -# /trafficsynergysupportresponse_ (easylistchina+easylist.txt: 16034) -/(.*/)?trafficsynergysupportresponse_ -# /trafficengineads. (easylistchina+easylist.txt: 16033) -/(.*/)?trafficengineads\. -trafficengineads.*. -# /trafficads. (easylistchina+easylist.txt: 16032) -/(.*/)?trafficads\. -trafficads.*. -# /trafficadpdf02. (easylistchina+easylist.txt: 16031) -/(.*/)?trafficadpdf02\. -trafficadpdf02.*. -# /tradedoubler. (easylistchina+easylist.txt: 16030) -/(.*/)?tradedoubler\. -tradedoubler.*. -# /TradeAds/* (easylistchina+easylist.txt: 16029) -/(.*/)?TradeAds/.* -# /tradead_ (easylistchina+easylist.txt: 16028) -/(.*/)?tradead_ -# /trade_punder. (easylistchina+easylist.txt: 16027) -/(.*/)?trade_punder\. -# /tracking/events/* (easylistchina+easylist.txt: 16026) -/(.*/)?tracking/events/.* -# /tracked_ad. (easylistchina+easylist.txt: 16025) -/(.*/)?tracked_ad\. -# /trackads/* (easylistchina+easylist.txt: 16024) -/(.*/)?trackads/.* -# /track_ad_ (easylistchina+easylist.txt: 16023) -/(.*/)?track_ad_ -# /track.php?uid=*.*&d= (easylistchina+easylist.txt: 16022) -/(.*/)?track\.php\?uid=.*\..*&d= -# /track.php?click=*&domain=*&uid=$xmlhttprequest (easylistchina+easylist.txt: 16021) -/(.*/)?track\.php\?click=.*&domain=.*&uid= -# /tr2/ads/* (easylistchina+easylist.txt: 16020) -/(.*/)?tr2/ads/.* -# /towerbannerad/* (easylistchina+easylist.txt: 16019) -/(.*/)?towerbannerad/.* -# /tower_ad_ (easylistchina+easylist.txt: 16018) -/(.*/)?tower_ad_ -# /totemcash1. (easylistchina+easylist.txt: 16017) -/(.*/)?totemcash1\. -totemcash1.*. -# /totemcash/*$image (easylistchina+easylist.txt: 16016) -/(.*/)?totemcash/.* -# /Totem-Cash/* (easylistchina+easylist.txt: 16015) -/(.*/)?Totem-Cash/.* -# /totalmedia/* (easylistchina+easylist.txt: 16014) -/(.*/)?totalmedia/.* -# /torget_ads. (easylistchina+easylist.txt: 16013) -/(.*/)?torget_ads\. -# /tops.ads. (easylistchina+easylist.txt: 16012) -/(.*/)?tops\.ads\. -tops.ads.*. -# /toprightads. (easylistchina+easylist.txt: 16011) -/(.*/)?toprightads\. -toprightads.*. -# /topperad. (easylistchina+easylist.txt: 16010) -/(.*/)?topperad\. -topperad.*. -# /topleftads. (easylistchina+easylist.txt: 16009) -/(.*/)?topleftads\. -topleftads.*. -# /topadvert. (easylistchina+easylist.txt: 16008) -/(.*/)?topadvert\. -topadvert.*. -# /topadv. (easylistchina+easylist.txt: 16007) -/(.*/)?topadv\. -topadv.*. -# /topads| (easylistchina+easylist.txt: 16006) -/(.*/)?topads$ -# /topads_ (easylistchina+easylist.txt: 16005) -/(.*/)?topads_ -# /topads3. (easylistchina+easylist.txt: 16004) -/(.*/)?topads3\. -topads3.*. -# /topads2. (easylistchina+easylist.txt: 16003) -/(.*/)?topads2\. -topads2.*. -# /topads1. (easylistchina+easylist.txt: 16002) -/(.*/)?topads1\. -topads1.*. -# /topads/* (easylistchina+easylist.txt: 16001) -/(.*/)?topads/.* -# /topads. (easylistchina+easylist.txt: 16000) -/(.*/)?topads\. -topads.*. -# /topadheader. (easylistchina+easylist.txt: 15999) -/(.*/)?topadheader\. -topadheader.*. -# /topadfooter. (easylistchina+easylist.txt: 15998) -/(.*/)?topadfooter\. -topadfooter.*. -# /topadbg. (easylistchina+easylist.txt: 15997) -/(.*/)?topadbg\. -topadbg.*. -# /topad_ (easylistchina+easylist.txt: 15996) -/(.*/)?topad_ -# /topad3. (easylistchina+easylist.txt: 15995) -/(.*/)?topad3\. -topad3.*. -# /topad/* (easylistchina+easylist.txt: 15994) -/(.*/)?topad/.* -# /topad. (easylistchina+easylist.txt: 15993) -/(.*/)?topad\. -topad.*. -# /top_adv_ (easylistchina+easylist.txt: 15992) -/(.*/)?top_adv_ -# /top_ads_ (easylistchina+easylist.txt: 15991) -/(.*/)?top_ads_ -# /top_ads/* (easylistchina+easylist.txt: 15990) -/(.*/)?top_ads/.* -# /top_ads. (easylistchina+easylist.txt: 15989) -/(.*/)?top_ads\. -# /top_ad_ (easylistchina+easylist.txt: 15988) -/(.*/)?top_ad_ -# /top_ad/* (easylistchina+easylist.txt: 15987) -/(.*/)?top_ad/.* -# /top_ad. (easylistchina+easylist.txt: 15986) -/(.*/)?top_ad\. -# /top-ads. (easylistchina+easylist.txt: 15985) -/(.*/)?top-ads\. -top-ads.*. -# /top-ad_ (easylistchina+easylist.txt: 15984) -/(.*/)?top-ad_ -# /top-ad. (easylistchina+easylist.txt: 15983) -/(.*/)?top-ad\. -top-ad.*. -# /top-ad- (easylistchina+easylist.txt: 15982) -/(.*/)?top-ad- -top-ad-*. -# /toonad. (easylistchina+easylist.txt: 15981) -/(.*/)?toonad\. -toonad.*. -# /tools/ad. (easylistchina+easylist.txt: 15980) -/(.*/)?tools/ad\. -# /toolkitads. (easylistchina+easylist.txt: 15979) -/(.*/)?toolkitads\. -toolkitads.*. -# /toigoogleads. (easylistchina+easylist.txt: 15978) -/(.*/)?toigoogleads\. -toigoogleads.*. -# /toggleAds. (easylistchina+easylist.txt: 15977) -/(.*/)?toggleAds\. -toggleAds.*. -# /tncms/ads/* (easylistchina+easylist.txt: 15976) -/(.*/)?tncms/ads/.* -# /tmobilead. (easylistchina+easylist.txt: 15975) -/(.*/)?tmobilead\. -tmobilead.*. -# /tmo/ads/* (easylistchina+easylist.txt: 15974) -/(.*/)?tmo/ads/.* -# /tmnadsense. (easylistchina+easylist.txt: 15973) -/(.*/)?tmnadsense\. -tmnadsense.*. -# /tmnadsense- (easylistchina+easylist.txt: 15972) -/(.*/)?tmnadsense- -tmnadsense-*. -# /tl.ads- (easylistchina+easylist.txt: 15971) -/(.*/)?tl\.ads- -tl.ads-*. -# /tizers.php? (easylistchina+easylist.txt: 15970) -/(.*/)?tizers\.php\? -# /title_ad. (easylistchina+easylist.txt: 15969) -/(.*/)?title_ad\. -# /title-ad/* (easylistchina+easylist.txt: 15968) -/(.*/)?title-ad/.* -# /tit-ads. (easylistchina+easylist.txt: 15967) -/(.*/)?tit-ads\. -tit-ads.*. -# /tinyad. (easylistchina+easylist.txt: 15966) -/(.*/)?tinyad\. -tinyad.*. -# /tinlads. (easylistchina+easylist.txt: 15965) -/(.*/)?tinlads\. -tinlads.*. -# /tileads/* (easylistchina+easylist.txt: 15964) -/(.*/)?tileads/.* -# /TILE_ADS/* (easylistchina+easylist.txt: 15963) -/(.*/)?TILE_ADS/.* -# /tikilink? (easylistchina+easylist.txt: 15962) -/(.*/)?tikilink\? -# /tii_ads. (easylistchina+easylist.txt: 15961) -/(.*/)?tii_ads\. -# /tidaladplugin. (easylistchina+easylist.txt: 15960) -/(.*/)?tidaladplugin\. -tidaladplugin.*. -# /tickeradsget. (easylistchina+easylist.txt: 15959) -/(.*/)?tickeradsget\. -tickeradsget.*. -# /thunder/ad. (easylistchina+easylist.txt: 15958) -/(.*/)?thunder/ad\. -# /thumbs/ads/* (easylistchina+easylist.txt: 15957) -/(.*/)?thumbs/ads/.* -# /thirdpartyframedad/* (easylistchina+easylist.txt: 15956) -/(.*/)?thirdpartyframedad/.* -# /thirdpartyads/* (easylistchina+easylist.txt: 15955) -/(.*/)?thirdpartyads/.* -# /thirdparty/ad/* (easylistchina+easylist.txt: 15954) -/(.*/)?thirdparty/ad/.* -# /thebannerserver.net/* (easylistchina+easylist.txt: 15953) -/(.*/)?thebannerserver\.net/.* -thebannerserver.net/.* -# /thdgoogleadsense. (easylistchina+easylist.txt: 15952) -/(.*/)?thdgoogleadsense\. -thdgoogleadsense.*. -# /tg.php?uid= (easylistchina+easylist.txt: 15951) -/(.*/)?tg\.php\?uid= -# /tfs-ad. (easylistchina+easylist.txt: 15950) -/(.*/)?tfs-ad\. -tfs-ad.*. -# /textadspromo_ (easylistchina+easylist.txt: 15949) -/(.*/)?textadspromo_ -# /textads_ (easylistchina+easylist.txt: 15948) -/(.*/)?textads_ -# /textads/* (easylistchina+easylist.txt: 15947) -/(.*/)?textads/.* -# /textads. (easylistchina+easylist.txt: 15946) -/(.*/)?textads\. -textads.*. -# /textads- (easylistchina+easylist.txt: 15945) -/(.*/)?textads- -textads-*. -# /textadrotate. (easylistchina+easylist.txt: 15944) -/(.*/)?textadrotate\. -textadrotate.*. -# /textad_ (easylistchina+easylist.txt: 15943) -/(.*/)?textad_ -# /textad? (easylistchina+easylist.txt: 15942) -/(.*/)?textad\? -# /textad1. (easylistchina+easylist.txt: 15941) -/(.*/)?textad1\. -textad1.*. -# /textad/* (easylistchina+easylist.txt: 15940) -/(.*/)?textad/.* -# /textad. (easylistchina+easylist.txt: 15939) -/(.*/)?textad\. -textad.*. -# /text_ads_ (easylistchina+easylist.txt: 15938) -/(.*/)?text_ads_ -# /text_ads. (easylistchina+easylist.txt: 15937) -/(.*/)?text_ads\. -# /text_ad_ (easylistchina+easylist.txt: 15936) -/(.*/)?text_ad_ -# /text_ad. (easylistchina+easylist.txt: 15935) -/(.*/)?text_ad\. -# /testingad. (easylistchina+easylist.txt: 15934) -/(.*/)?testingad\. -testingad.*. -# /testads/* (easylistchina+easylist.txt: 15933) -/(.*/)?testads/.* -# /templates/adv_ (easylistchina+easylist.txt: 15932) -/(.*/)?templates/adv_ -# /templates/ads/* (easylistchina+easylist.txt: 15931) -/(.*/)?templates/ads/.* -# /templates/ad/* (easylistchina+easylist.txt: 15930) -/(.*/)?templates/ad/.* -# /templates/ad. (easylistchina+easylist.txt: 15929) -/(.*/)?templates/ad\. -# /templateadvimages/* (easylistchina+easylist.txt: 15928) -/(.*/)?templateadvimages/.* -# /template/ad. (easylistchina+easylist.txt: 15927) -/(.*/)?template/ad\. -# /tempads/* (easylistchina+easylist.txt: 15926) -/(.*/)?tempads/.* -# /teletoon_ad. (easylistchina+easylist.txt: 15925) -/(.*/)?teletoon_ad\. -# /technomedia. (easylistchina+easylist.txt: 15924) -/(.*/)?technomedia\. -technomedia.*. -# /teaseimg/ads/* (easylistchina+easylist.txt: 15923) -/(.*/)?teaseimg/ads/.* -# /teamplayer-ads. (easylistchina+easylist.txt: 15922) -/(.*/)?teamplayer-ads\. -teamplayer-ads.*. -# /tdlads/* (easylistchina+easylist.txt: 15921) -/(.*/)?tdlads/.* -# /td_ads/* (easylistchina+easylist.txt: 15920) -/(.*/)?td_ads/.* -# /td-ads- (easylistchina+easylist.txt: 15919) -/(.*/)?td-ads- -td-ads-*. -# /taxonomy-ads. (easylistchina+easylist.txt: 15918) -/(.*/)?taxonomy-ads\. -taxonomy-ads.*. -# /talkads/* (easylistchina+easylist.txt: 15917) -/(.*/)?talkads/.* -# /tagadv_ (easylistchina+easylist.txt: 15916) -/(.*/)?tagadv_ -# /tag_sys. (easylistchina+easylist.txt: 15915) -/(.*/)?tag_sys\. -# /tag_oas. (easylistchina+easylist.txt: 15914) -/(.*/)?tag_oas\. -# /tag_adv/* (easylistchina+easylist.txt: 15913) -/(.*/)?tag_adv/.* -# /tag-adv. (easylistchina+easylist.txt: 15912) -/(.*/)?tag-adv\. -tag-adv.*. -# /tableadnorth. (easylistchina+easylist.txt: 15911) -/(.*/)?tableadnorth\. -tableadnorth.*. -# /tabads/* (easylistchina+easylist.txt: 15910) -/(.*/)?tabads/.* -# /t.php?uid=*.*&src= (easylistchina+easylist.txt: 15909) -/(.*/)?t\.php\?uid=.*\..*&src= -# /t-ads. (easylistchina+easylist.txt: 15908) -/(.*/)?t-ads\. -t-ads.*. -# /systemad_ (easylistchina+easylist.txt: 15907) -/(.*/)?systemad_ -# /systemad. (easylistchina+easylist.txt: 15906) -/(.*/)?systemad\. -systemad.*. -# /system_ad. (easylistchina+easylist.txt: 15905) -/(.*/)?system_ad\. -# /system/ads/* (easylistchina+easylist.txt: 15904) -/(.*/)?system/ads/.* -# /system/ad/* (easylistchina+easylist.txt: 15903) -/(.*/)?system/ad/.* -# /sys/ad/* (easylistchina+easylist.txt: 15902) -/(.*/)?sys/ad/.* -# /syndication/ad. (easylistchina+easylist.txt: 15901) -/(.*/)?syndication/ad\. -# /synad3. (easylistchina+easylist.txt: 15900) -/(.*/)?synad3\. -synad3.*. -# /synad2. (easylistchina+easylist.txt: 15899) -/(.*/)?synad2\. -synad2.*. -# /SWMAdPlayer. (easylistchina+easylist.txt: 15898) -/(.*/)?SWMAdPlayer\. -SWMAdPlayer.*. -# /switchadbanner. (easylistchina+easylist.txt: 15897) -/(.*/)?switchadbanner\. -switchadbanner.*. -# /swfbin/ad3_ (easylistchina+easylist.txt: 15896) -/(.*/)?swfbin/ad3_ -# /swfbin/ad3- (easylistchina+easylist.txt: 15895) -/(.*/)?swfbin/ad3- -# /swfbin/ad- (easylistchina+easylist.txt: 15894) -/(.*/)?swfbin/ad- -# /swf/ads/* (easylistchina+easylist.txt: 15893) -/(.*/)?swf/ads/.* -# /swf/ad- (easylistchina+easylist.txt: 15892) -/(.*/)?swf/ad- -# /svnad/* (easylistchina+easylist.txt: 15891) -/(.*/)?svnad/.* -# /supernorthroomad. (easylistchina+easylist.txt: 15890) -/(.*/)?supernorthroomad\. -supernorthroomad.*. -# /superads_ (easylistchina+easylist.txt: 15889) -/(.*/)?superads_ -# /sugarads- (easylistchina+easylist.txt: 15888) -/(.*/)?sugarads- -sugarads-*. -# /sugar-ads/* (easylistchina+easylist.txt: 15887) -/(.*/)?sugar-ads/.* -# /sugar-ads. (easylistchina+easylist.txt: 15886) -/(.*/)?sugar-ads\. -sugar-ads.*. -# /subs-ads/* (easylistchina+easylist.txt: 15885) -/(.*/)?subs-ads/.* -# /subnavads/* (easylistchina+easylist.txt: 15884) -/(.*/)?subnavads/.* -# /subadz. (easylistchina+easylist.txt: 15883) -/(.*/)?subadz\. -subadz.*. -# /subad2_ (easylistchina+easylist.txt: 15882) -/(.*/)?subad2_ -# /subAd. (easylistchina+easylist.txt: 15881) -/(.*/)?subAd\. -subAd.*. -# /styles/ads/* (easylistchina+easylist.txt: 15880) -/(.*/)?styles/ads/.* -# /styles/ads. (easylistchina+easylist.txt: 15879) -/(.*/)?styles/ads\. -# /style_ad. (easylistchina+easylist.txt: 15878) -/(.*/)?style_ad\. -# /stuff/ad- (easylistchina+easylist.txt: 15877) -/(.*/)?stuff/ad- -# /studioads/* (easylistchina+easylist.txt: 15876) -/(.*/)?studioads/.* -# /streamatepop. (easylistchina+easylist.txt: 15875) -/(.*/)?streamatepop\. -streamatepop.*. -# /streamads. (easylistchina+easylist.txt: 15874) -/(.*/)?streamads\. -streamads.*. -# /stream-ad. (easylistchina+easylist.txt: 15873) -/(.*/)?stream-ad\. -stream-ad.*. -# /storyads. (easylistchina+easylist.txt: 15872) -/(.*/)?storyads\. -storyads.*. -# /storyadcode. (easylistchina+easylist.txt: 15871) -/(.*/)?storyadcode\. -storyadcode.*. -# /story_ads_ (easylistchina+easylist.txt: 15870) -/(.*/)?story_ads_ -# /story_ad. (easylistchina+easylist.txt: 15869) -/(.*/)?story_ad\. -# /stories/ads/* (easylistchina+easylist.txt: 15868) -/(.*/)?stories/ads/.* -# /storage/adv/* (easylistchina+easylist.txt: 15867) -/(.*/)?storage/adv/.* -# /storage/ads/* (easylistchina+easylist.txt: 15866) -/(.*/)?storage/ads/.* -# /stickyad2. (easylistchina+easylist.txt: 15865) -/(.*/)?stickyad2\. -stickyad2.*. -# /stickyad. (easylistchina+easylist.txt: 15864) -/(.*/)?stickyad\. -stickyad.*. -# /sticky_ad. (easylistchina+easylist.txt: 15863) -/(.*/)?sticky_ad\. -# /sticker_ad. (easylistchina+easylist.txt: 15862) -/(.*/)?sticker_ad\. -# /stats/?t_sid= (easylistchina+easylist.txt: 15861) -/(.*/)?stats/\?t_sid= -# /staticadslot. (easylistchina+easylist.txt: 15860) -/(.*/)?staticadslot\. -staticadslot.*. -# /static_ads/* (easylistchina+easylist.txt: 15859) -/(.*/)?static_ads/.* -# /static/js/4728ba74bc.js$~third-party (easylistchina+easylist.txt: 15858) -/(.*/)?static/js/4728ba74bc\.js -# /static/adv/* (easylistchina+easylist.txt: 15857) -/(.*/)?static/adv/.* -# /static/ads/* (easylistchina+easylist.txt: 15856) -/(.*/)?static/ads/.* -# /static/ad_ (easylistchina+easylist.txt: 15855) -/(.*/)?static/ad_ -# /static/ad/* (easylistchina+easylist.txt: 15854) -/(.*/)?static/ad/.* -# /static/ad- (easylistchina+easylist.txt: 15853) -/(.*/)?static/ad- -# /static.ad. (easylistchina+easylist.txt: 15852) -/(.*/)?static\.ad\. -static.ad.*. -# /standard_ads. (easylistchina+easylist.txt: 15851) -/(.*/)?standard_ads\. -# /ssc_ad. (easylistchina+easylist.txt: 15850) -/(.*/)?ssc_ad\. -# /ss3/ads/* (easylistchina+easylist.txt: 15849) -/(.*/)?ss3/ads/.* -# /srv/ad/* (easylistchina+easylist.txt: 15848) -/(.*/)?srv/ad/.* -# /srec_ad_ (easylistchina+easylist.txt: 15847) -/(.*/)?srec_ad_ -# /src/ads_ (easylistchina+easylist.txt: 15846) -/(.*/)?src/ads_ -# /squareads. (easylistchina+easylist.txt: 15845) -/(.*/)?squareads\. -squareads.*. -# /squaread. (easylistchina+easylist.txt: 15844) -/(.*/)?squaread\. -squaread.*. -# /square-ads/* (easylistchina+easylist.txt: 15843) -/(.*/)?square-ads/.* -# /square-ad. (easylistchina+easylist.txt: 15842) -/(.*/)?square-ad\. -square-ad.*. -# /spotxchangevpaid. (easylistchina+easylist.txt: 15841) -/(.*/)?spotxchangevpaid\. -spotxchangevpaid.*. -# /spotxchangeplugin. (easylistchina+easylist.txt: 15840) -/(.*/)?spotxchangeplugin\. -spotxchangeplugin.*. -# /spotx_adapter. (easylistchina+easylist.txt: 15839) -/(.*/)?spotx_adapter\. -# /spotlightads/* (easylistchina+easylist.txt: 15838) -/(.*/)?spotlightads/.* -# /sponsorstrips/* (easylistchina+easylist.txt: 15837) -/(.*/)?sponsorstrips/.* -# /sponsorshipimage- (easylistchina+easylist.txt: 15836) -/(.*/)?sponsorshipimage- -sponsorshipimage-*. -# /sponsorsgif. (easylistchina+easylist.txt: 15835) -/(.*/)?sponsorsgif\. -sponsorsgif.*. -# /sponsors_box. (easylistchina+easylist.txt: 15834) -/(.*/)?sponsors_box\. -# /sponsors/amg.php? (easylistchina+easylist.txt: 15833) -/(.*/)?sponsors/amg\.php\? -# /sponsors/ads/* (easylistchina+easylist.txt: 15832) -/(.*/)?sponsors/ads/.* -# /sponsors.js? (easylistchina+easylist.txt: 15831) -/(.*/)?sponsors\.js\? -# /sponsors-ads/* (easylistchina+easylist.txt: 15830) -/(.*/)?sponsors-ads/.* -# /sponsorpaynetwork. (easylistchina+easylist.txt: 15829) -/(.*/)?sponsorpaynetwork\. -sponsorpaynetwork.*. -# /sponsoringbanner/* (easylistchina+easylist.txt: 15828) -/(.*/)?sponsoringbanner/.* -# /sponsorHeaderDeriv_ (easylistchina+easylist.txt: 15827) -/(.*/)?sponsorHeaderDeriv_ -# /sponsoredlisting. (easylistchina+easylist.txt: 15826) -/(.*/)?sponsoredlisting\. -sponsoredlisting.*. -# /sponsoredlinksiframe. (easylistchina+easylist.txt: 15825) -/(.*/)?sponsoredlinksiframe\. -sponsoredlinksiframe.*. -# /sponsoredlinks? (easylistchina+easylist.txt: 15824) -/(.*/)?sponsoredlinks\? -# /sponsoredlinks/* (easylistchina+easylist.txt: 15823) -/(.*/)?sponsoredlinks/.* -# /sponsoredlinks. (easylistchina+easylist.txt: 15822) -/(.*/)?sponsoredlinks\. -sponsoredlinks.*. -# /sponsoredheadline. (easylistchina+easylist.txt: 15821) -/(.*/)?sponsoredheadline\. -sponsoredheadline.*. -# /sponsoredcontent. (easylistchina+easylist.txt: 15820) -/(.*/)?sponsoredcontent\. -sponsoredcontent.*. -# /sponsoredbanner/* (easylistchina+easylist.txt: 15819) -/(.*/)?sponsoredbanner/.* -# /sponsoredads/* (easylistchina+easylist.txt: 15818) -/(.*/)?sponsoredads/.* -# /sponsored_top. (easylistchina+easylist.txt: 15817) -/(.*/)?sponsored_top\. -# /sponsored_title. (easylistchina+easylist.txt: 15816) -/(.*/)?sponsored_title\. -# /sponsored_text. (easylistchina+easylist.txt: 15815) -/(.*/)?sponsored_text\. -# /sponsored_listings. (easylistchina+easylist.txt: 15814) -/(.*/)?sponsored_listings\. -# /sponsored_links_ (easylistchina+easylist.txt: 15813) -/(.*/)?sponsored_links_ -# /sponsored_links1. (easylistchina+easylist.txt: 15812) -/(.*/)?sponsored_links1\. -# /sponsored_links. (easylistchina+easylist.txt: 15811) -/(.*/)?sponsored_links\. -# /sponsored_link. (easylistchina+easylist.txt: 15810) -/(.*/)?sponsored_link\. -# /sponsored_by. (easylistchina+easylist.txt: 15809) -/(.*/)?sponsored_by\. -# /sponsored_ads/* (easylistchina+easylist.txt: 15808) -/(.*/)?sponsored_ads/.* -# /sponsored_ad_ (easylistchina+easylist.txt: 15807) -/(.*/)?sponsored_ad_ -# /sponsored_ad. (easylistchina+easylist.txt: 15806) -/(.*/)?sponsored_ad\. -# /sponsored-links/* (easylistchina+easylist.txt: 15805) -/(.*/)?sponsored-links/.* -# /sponsored-links- (easylistchina+easylist.txt: 15804) -/(.*/)?sponsored-links- -sponsored-links-*. -# /sponsored-banner- (easylistchina+easylist.txt: 15803) -/(.*/)?sponsored-banner- -sponsored-banner-*. -# /sponsored-backgrounds/* (easylistchina+easylist.txt: 15802) -/(.*/)?sponsored-backgrounds/.* -# /sponsorbg/* (easylistchina+easylist.txt: 15801) -/(.*/)?sponsorbg/.* -# /sponsorbanners/* (easylistchina+easylist.txt: 15800) -/(.*/)?sponsorbanners/.* -# /sponsorads/* (easylistchina+easylist.txt: 15799) -/(.*/)?sponsorads/.* -# /sponsorads. (easylistchina+easylist.txt: 15798) -/(.*/)?sponsorads\. -sponsorads.*. -# /sponsoradds/* (easylistchina+easylist.txt: 15797) -/(.*/)?sponsoradds/.* -# /sponsorad2. (easylistchina+easylist.txt: 15796) -/(.*/)?sponsorad2\. -sponsorad2.*. -# /sponsorad. (easylistchina+easylist.txt: 15795) -/(.*/)?sponsorad\. -sponsorad.*. -# /sponsor_select. (easylistchina+easylist.txt: 15794) -/(.*/)?sponsor_select\. -# /sponsor_ads. (easylistchina+easylist.txt: 15793) -/(.*/)?sponsor_ads\. -# /sponsor/click. (easylistchina+easylist.txt: 15792) -/(.*/)?sponsor/click\. -# /sponsor-links. (easylistchina+easylist.txt: 15791) -/(.*/)?sponsor-links\. -sponsor-links.*. -# /sponsor-box? (easylistchina+easylist.txt: 15790) -/(.*/)?sponsor-box\? -# /sponsor-banner. (easylistchina+easylist.txt: 15789) -/(.*/)?sponsor-banner\. -sponsor-banner.*. -# /sponsor-ad (easylistchina+easylist.txt: 15788) -/(.*/)?sponsor-ad -sponsor-ad*. -# /sponsor%20banners/* (easylistchina+easylist.txt: 15787) -/(.*/)?sponsor%20banners/.* -# /sponslink_ (easylistchina+easylist.txt: 15786) -/(.*/)?sponslink_ -# /sponsimages/* (easylistchina+easylist.txt: 15785) -/(.*/)?sponsimages/.* -# /sponsers.cgi (easylistchina+easylist.txt: 15784) -/(.*/)?sponsers\.cgi -sponsers.cgi*. -# /sponseredlinksros. (easylistchina+easylist.txt: 15783) -/(.*/)?sponseredlinksros\. -sponseredlinksros.*. -# /sponser. (easylistchina+easylist.txt: 15782) -/(.*/)?sponser\. -sponser.*. -# /spons_links_ (easylistchina+easylist.txt: 15781) -/(.*/)?spons_links_ -# /spons/banners/* (easylistchina+easylist.txt: 15780) -/(.*/)?spons/banners/.* -# /sponlink. (easylistchina+easylist.txt: 15779) -/(.*/)?sponlink\. -sponlink.*. -# /spo_show.asp? (easylistchina+easylist.txt: 15778) -/(.*/)?spo_show\.asp\? -# /SplashAd_ (easylistchina+easylist.txt: 15777) -/(.*/)?SplashAd_ -# /splash_ads_ (easylistchina+easylist.txt: 15776) -/(.*/)?splash_ads_ -# /spiderad/* (easylistchina+easylist.txt: 15775) -/(.*/)?spiderad/.* -# /specialfeatureads/* (easylistchina+easylist.txt: 15774) -/(.*/)?specialfeatureads/.* -# /specialads/* (easylistchina+easylist.txt: 15773) -/(.*/)?specialads/.* -# /special_ads/* (easylistchina+easylist.txt: 15772) -/(.*/)?special_ads/.* -# /special_ad. (easylistchina+easylist.txt: 15771) -/(.*/)?special_ad\. -# /special-ads/* (easylistchina+easylist.txt: 15770) -/(.*/)?special-ads/.* -# /spcjs_min. (easylistchina+easylist.txt: 15769) -/(.*/)?spcjs_min\. -# /spcjs.php (easylistchina+easylist.txt: 15768) -/(.*/)?spcjs\.php -spcjs.php*. -# /spc.php (easylistchina+easylist.txt: 15767) -/(.*/)?spc\.php -spc.php*. -# /spark_ad. (easylistchina+easylist.txt: 15766) -/(.*/)?spark_ad\. -# /spacedesc= (easylistchina+easylist.txt: 15765) -/(.*/)?spacedesc= -# /space_ad. (easylistchina+easylist.txt: 15764) -/(.*/)?space_ad\. -# /spac_adx. (easylistchina+easylist.txt: 15763) -/(.*/)?spac_adx\. -# /sp/delivery/* (easylistchina+easylist.txt: 15762) -/(.*/)?sp/delivery/.* -# /someads. (easylistchina+easylist.txt: 15761) -/(.*/)?someads\. -someads.*. -# /some-ad. (easylistchina+easylist.txt: 15760) -/(.*/)?some-ad\. -some-ad.*. -# /somaadscaleskyscraperscript. (easylistchina+easylist.txt: 15759) -/(.*/)?somaadscaleskyscraperscript\. -somaadscaleskyscraperscript.*. -# /socialads/* (easylistchina+easylist.txt: 15758) -/(.*/)?socialads/.* -# /socialads. (easylistchina+easylist.txt: 15757) -/(.*/)?socialads\. -socialads.*. -# /SmpAds. (easylistchina+easylist.txt: 15756) -/(.*/)?SmpAds\. -SmpAds.*. -# /smoozed-ad/* (easylistchina+easylist.txt: 15755) -/(.*/)?smoozed-ad/.* -# /smedia/ad/* (easylistchina+easylist.txt: 15754) -/(.*/)?smedia/ad/.* -# /smeadvertisement/* (easylistchina+easylist.txt: 15753) -/(.*/)?smeadvertisement/.* -# /smb/ads/* (easylistchina+easylist.txt: 15752) -/(.*/)?smb/ads/.* -# /smartlinks.epl? (easylistchina+easylist.txt: 15751) -/(.*/)?smartlinks\.epl\? -# /smartadserver. (easylistchina+easylist.txt: 15750) -/(.*/)?smartadserver\. -smartadserver.*. -# /smartads. (easylistchina+easylist.txt: 15749) -/(.*/)?smartads\. -smartads.*. -# /smartAd? (easylistchina+easylist.txt: 15748) -/(.*/)?smartAd\? -# /smartad. (easylistchina+easylist.txt: 15747) -/(.*/)?smartad\. -smartad.*. -# /smartad- (easylistchina+easylist.txt: 15746) -/(.*/)?smartad- -smartad-*. -# /smart_ad/* (easylistchina+easylist.txt: 15745) -/(.*/)?smart_ad/.* -# /smart-ad-server. (easylistchina+easylist.txt: 15744) -/(.*/)?smart-ad-server\. -smart-ad-server.*. -# /smalltopl. (easylistchina+easylist.txt: 15743) -/(.*/)?smalltopl\. -smalltopl.*. -# /smalladblockbg- (easylistchina+easylist.txt: 15742) -/(.*/)?smalladblockbg- -smalladblockbg-*. -# /smallad- (easylistchina+easylist.txt: 15741) -/(.*/)?smallad- -smallad-*. -# /small_ads/* (easylistchina+easylist.txt: 15740) -/(.*/)?small_ads/.* -# /small_ad_ (easylistchina+easylist.txt: 15739) -/(.*/)?small_ad_ -# /small_ad. (easylistchina+easylist.txt: 15738) -/(.*/)?small_ad\. -# /smalAds. (easylistchina+easylist.txt: 15737) -/(.*/)?smalAds\. -smalAds.*. -# /slidetopad. (easylistchina+easylist.txt: 15736) -/(.*/)?slidetopad\. -slidetopad.*. -# /slideshowintad? (easylistchina+easylist.txt: 15735) -/(.*/)?slideshowintad\? -# /slideshow/ads. (easylistchina+easylist.txt: 15734) -/(.*/)?slideshow/ads\. -# /SliderJobAdList. (easylistchina+easylist.txt: 15733) -/(.*/)?SliderJobAdList\. -SliderJobAdList.*. -# /sliderad3. (easylistchina+easylist.txt: 15732) -/(.*/)?sliderad3\. -sliderad3.*. -# /sliderAd/* (easylistchina+easylist.txt: 15731) -/(.*/)?sliderAd/.* -# /slider_ad. (easylistchina+easylist.txt: 15730) -/(.*/)?slider_ad\. -# /slider.ad. (easylistchina+easylist.txt: 15729) -/(.*/)?slider\.ad\. -slider.ad.*. -# /slider-ad- (easylistchina+easylist.txt: 15728) -/(.*/)?slider-ad- -slider-ad-*. -# /slideinad. (easylistchina+easylist.txt: 15727) -/(.*/)?slideinad\. -slideinad.*. -# /slideadverts/* (easylistchina+easylist.txt: 15726) -/(.*/)?slideadverts/.* -# /slafc.js (easylistchina+easylist.txt: 15725) -/(.*/)?slafc\.js -slafc.js*. -# /skyscraperad. (easylistchina+easylist.txt: 15724) -/(.*/)?skyscraperad\. -skyscraperad.*. -# /skyscraper_ad_ (easylistchina+easylist.txt: 15723) -/(.*/)?skyscraper_ad_ -# /skyscraper-ad. (easylistchina+easylist.txt: 15722) -/(.*/)?skyscraper-ad\. -skyscraper-ad.*. -# /skyframeopenads_ (easylistchina+easylist.txt: 15721) -/(.*/)?skyframeopenads_ -# /skyframeopenads. (easylistchina+easylist.txt: 15720) -/(.*/)?skyframeopenads\. -skyframeopenads.*. -# /skybar_ad. (easylistchina+easylist.txt: 15719) -/(.*/)?skybar_ad\. -# /skybannerview. (easylistchina+easylist.txt: 15718) -/(.*/)?skybannerview\. -skybannerview.*. -# /skyadright. (easylistchina+easylist.txt: 15717) -/(.*/)?skyadright\. -skyadright.*. -# /skyadjs/* (easylistchina+easylist.txt: 15716) -/(.*/)?skyadjs/.* -# /skyad_ (easylistchina+easylist.txt: 15715) -/(.*/)?skyad_ -# /skyad. (easylistchina+easylist.txt: 15714) -/(.*/)?skyad\. -skyad.*. -# /skins/ads/* (easylistchina+easylist.txt: 15713) -/(.*/)?skins/ads/.* -# /skins/ads- (easylistchina+easylist.txt: 15712) -/(.*/)?skins/ads- -# /skinads/* (easylistchina+easylist.txt: 15711) -/(.*/)?skinads/.* -# /skinad. (easylistchina+easylist.txt: 15710) -/(.*/)?skinad\. -skinad.*. -# /skin3/ads/* (easylistchina+easylist.txt: 15709) -/(.*/)?skin3/ads/.* -# /skin/adv/* (easylistchina+easylist.txt: 15708) -/(.*/)?skin/adv/.* -# /skin/ad3/* (easylistchina+easylist.txt: 15707) -/(.*/)?skin/ad3/.* -# /skin/ad/* (easylistchina+easylist.txt: 15706) -/(.*/)?skin/ad/.* -# /size=*/random=*/viewid= (easylistchina+easylist.txt: 15705) -/(.*/)?size=.*/random=.*/viewid= -# /sitewide/ads/* (easylistchina+easylist.txt: 15704) -/(.*/)?sitewide/ads/.* -# /sites/ad_ (easylistchina+easylist.txt: 15703) -/(.*/)?sites/ad_ -# /sitemanagement/ads/* (easylistchina+easylist.txt: 15702) -/(.*/)?sitemanagement/ads/.* -# /siteimages/ads- (easylistchina+easylist.txt: 15701) -/(.*/)?siteimages/ads- -# /siteafs.txt? (easylistchina+easylist.txt: 15700) -/(.*/)?siteafs\.txt\? -# /siteadvert. (easylistchina+easylist.txt: 15699) -/(.*/)?siteadvert\. -siteadvert.*. -# /siteads/* (easylistchina+easylist.txt: 15698) -/(.*/)?siteads/.* -# /siteads. (easylistchina+easylist.txt: 15697) -/(.*/)?siteads\. -siteads.*. -# /site_under. (easylistchina+easylist.txt: 15696) -/(.*/)?site_under\. -# /site_ads/* (easylistchina+easylist.txt: 15695) -/(.*/)?site_ads/.* -# /site_ads. (easylistchina+easylist.txt: 15694) -/(.*/)?site_ads\. -# /site=*/viewid=*/size= (easylistchina+easylist.txt: 15693) -/(.*/)?site=.*/viewid=.*/size= -# /site=*/size=*/viewid= (easylistchina+easylist.txt: 15692) -/(.*/)?site=.*/size=.*/viewid= -# /site/ads? (easylistchina+easylist.txt: 15691) -/(.*/)?site/ads\? -# /site/ads/* (easylistchina+easylist.txt: 15690) -/(.*/)?site/ads/.* -# /site/ad/* (easylistchina+easylist.txt: 15689) -/(.*/)?site/ad/.* -# /site-advert. (easylistchina+easylist.txt: 15688) -/(.*/)?site-advert\. -site-advert.*. -# /site-ads/* (easylistchina+easylist.txt: 15687) -/(.*/)?site-ads/.* -# /sisterads. (easylistchina+easylist.txt: 15686) -/(.*/)?sisterads\. -sisterads.*. -# /singleadextension. (easylistchina+easylist.txt: 15685) -/(.*/)?singleadextension\. -singleadextension.*. -# /simpleadvert/* (easylistchina+easylist.txt: 15684) -/(.*/)?simpleadvert/.* -# /simpleadvert. (easylistchina+easylist.txt: 15683) -/(.*/)?simpleadvert\. -simpleadvert.*. -# /simpleads/* (easylistchina+easylist.txt: 15682) -/(.*/)?simpleads/.* -# /silverads. (easylistchina+easylist.txt: 15681) -/(.*/)?silverads\. -silverads.*. -# /silver/ads/* (easylistchina+easylist.txt: 15680) -/(.*/)?silver/ads/.* -# /siframead. (easylistchina+easylist.txt: 15679) -/(.*/)?siframead\. -siframead.*. -# /sidelinead. (easylistchina+easylist.txt: 15678) -/(.*/)?sidelinead\. -sidelinead.*. -# /sidekickads. (easylistchina+easylist.txt: 15677) -/(.*/)?sidekickads\. -sidekickads.*. -# /sidecol_ad. (easylistchina+easylist.txt: 15676) -/(.*/)?sidecol_ad\. -# /sidebaradvertisement. (easylistchina+easylist.txt: 15675) -/(.*/)?sidebaradvertisement\. -sidebaradvertisement.*. -# /sidebarad/* (easylistchina+easylist.txt: 15674) -/(.*/)?sidebarad/.* -# /sidebar_ads/* (easylistchina+easylist.txt: 15673) -/(.*/)?sidebar_ads/.* -# /sidebar_ad_ (easylistchina+easylist.txt: 15672) -/(.*/)?sidebar_ad_ -# /sidebar_ad. (easylistchina+easylist.txt: 15671) -/(.*/)?sidebar_ad\. -# /sidebar-ads/* (easylistchina+easylist.txt: 15670) -/(.*/)?sidebar-ads/.* -# /sidebar-ad- (easylistchina+easylist.txt: 15669) -/(.*/)?sidebar-ad- -sidebar-ad-*. -# /sideadvtmp. (easylistchina+easylist.txt: 15668) -/(.*/)?sideadvtmp\. -sideadvtmp.*. -# /sideads| (easylistchina+easylist.txt: 15667) -/(.*/)?sideads$ -# /sideads/* (easylistchina+easylist.txt: 15666) -/(.*/)?sideads/.* -# /sideadiframe. (easylistchina+easylist.txt: 15665) -/(.*/)?sideadiframe\. -sideadiframe.*. -# /sidead3. (easylistchina+easylist.txt: 15664) -/(.*/)?sidead3\. -sidead3.*. -# /sidead2. (easylistchina+easylist.txt: 15663) -/(.*/)?sidead2\. -sidead2.*. -# /sidead1. (easylistchina+easylist.txt: 15662) -/(.*/)?sidead1\. -sidead1.*. -# /sidead/* (easylistchina+easylist.txt: 15661) -/(.*/)?sidead/.* -# /sidead. (easylistchina+easylist.txt: 15660) -/(.*/)?sidead\. -sidead.*. -# /side_adverts. (easylistchina+easylist.txt: 15659) -/(.*/)?side_adverts\. -# /side-ads- (easylistchina+easylist.txt: 15658) -/(.*/)?side-ads- -side-ads-*. -# /side-ad. (easylistchina+easylist.txt: 15657) -/(.*/)?side-ad\. -side-ad.*. -# /side-ad- (easylistchina+easylist.txt: 15656) -/(.*/)?side-ad- -side-ad-*. -# /showSp.php? (easylistchina+easylist.txt: 15655) -/(.*/)?showSp\.php\? -# /showsidebar-ad- (easylistchina+easylist.txt: 15654) -/(.*/)?showsidebar-ad- -showsidebar-ad-*. -# /showpost-ad- (easylistchina+easylist.txt: 15653) -/(.*/)?showpost-ad- -showpost-ad-*. -# /showmarketingmaterial. (easylistchina+easylist.txt: 15652) -/(.*/)?showmarketingmaterial\. -showmarketingmaterial.*. -# /showJsAd/* (easylistchina+easylist.txt: 15651) -/(.*/)?showJsAd/.* -# /showindex-ad- (easylistchina+easylist.txt: 15650) -/(.*/)?showindex-ad- -showindex-ad-*. -# /showflashad. (easylistchina+easylist.txt: 15649) -/(.*/)?showflashad\. -showflashad.*. -# /showcasead/* (easylistchina+easylist.txt: 15648) -/(.*/)?showcasead/.* -# /showbanner. (easylistchina+easylist.txt: 15647) -/(.*/)?showbanner\. -showbanner.*. -# /showban.asp? (easylistchina+easylist.txt: 15646) -/(.*/)?showban\.asp\? -# /showadvertising. (easylistchina+easylist.txt: 15645) -/(.*/)?showadvertising\. -showadvertising.*. -# /showadvert. (easylistchina+easylist.txt: 15644) -/(.*/)?showadvert\. -showadvert.*. -# /showads_ (easylistchina+easylist.txt: 15643) -/(.*/)?showads_ -# /showads/* (easylistchina+easylist.txt: 15642) -/(.*/)?showads/.* -# /showads. (easylistchina+easylist.txt: 15641) -/(.*/)?showads\. -showads.*. -# /showadjs. (easylistchina+easylist.txt: 15640) -/(.*/)?showadjs\. -showadjs.*. -# /showadcode. (easylistchina+easylist.txt: 15639) -/(.*/)?showadcode\. -showadcode.*. -# /showad_ (easylistchina+easylist.txt: 15638) -/(.*/)?showad_ -# /showAd300. (easylistchina+easylist.txt: 15637) -/(.*/)?showAd300\. -showAd300.*. -# /showAd300- (easylistchina+easylist.txt: 15636) -/(.*/)?showAd300- -showAd300-*. -# /showad/* (easylistchina+easylist.txt: 15635) -/(.*/)?showad/.* -# /showad. (easylistchina+easylist.txt: 15634) -/(.*/)?showad\. -showad.*. -# /show_ads_ (easylistchina+easylist.txt: 15633) -/(.*/)?show_ads_ -# /show_ads.js (easylistchina+easylist.txt: 15632) -/(.*/)?show_ads\.js -# /show_ad_ (easylistchina+easylist.txt: 15631) -/(.*/)?show_ad_ -# /show_ad. (easylistchina+easylist.txt: 15630) -/(.*/)?show_ad\. -# /show.cgi?adp (easylistchina+easylist.txt: 15629) -/(.*/)?show\.cgi\?adp -# /show.ad? (easylistchina+easylist.txt: 15628) -/(.*/)?show\.ad\? -# /show-ads. (easylistchina+easylist.txt: 15627) -/(.*/)?show-ads\. -show-ads.*. -# /show-ad. (easylistchina+easylist.txt: 15626) -/(.*/)?show-ad\. -show-ad.*. -# /shortmediads/* (easylistchina+easylist.txt: 15625) -/(.*/)?shortmediads/.* -# /shared/ads/* (easylistchina+easylist.txt: 15624) -/(.*/)?shared/ads/.* -# /shared/ads. (easylistchina+easylist.txt: 15623) -/(.*/)?shared/ads\. -# /shared/ad_ (easylistchina+easylist.txt: 15622) -/(.*/)?shared/ad_ -# /share/ads/* (easylistchina+easylist.txt: 15621) -/(.*/)?share/ads/.* -# /sevenl_ad. (easylistchina+easylist.txt: 15620) -/(.*/)?sevenl_ad\. -# /sevenads. (easylistchina+easylist.txt: 15619) -/(.*/)?sevenads\. -sevenads.*. -# /settings/ad. (easylistchina+easylist.txt: 15618) -/(.*/)?settings/ad\. -# /servlet/view/* (easylistchina+easylist.txt: 15617) -/(.*/)?servlet/view/.* -# /services/ads/* (easylistchina+easylist.txt: 15616) -/(.*/)?services/ads/.* -# /service/ads/* (easylistchina+easylist.txt: 15615) -/(.*/)?service/ads/.* -# /servewebads/* (easylistchina+easylist.txt: 15614) -/(.*/)?servewebads/.* -# /server/ads/* (easylistchina+easylist.txt: 15613) -/(.*/)?server/ads/.* -# /Server/AD/* (easylistchina+easylist.txt: 15612) -/(.*/)?Server/AD/.* -# /serveads. (easylistchina+easylist.txt: 15611) -/(.*/)?serveads\. -serveads.*. -# /ServeAd? (easylistchina+easylist.txt: 15610) -/(.*/)?ServeAd\? -# /servead/* (easylistchina+easylist.txt: 15609) -/(.*/)?servead/.* -# /servead. (easylistchina+easylist.txt: 15608) -/(.*/)?servead\. -servead.*. -# /serve.ads. (easylistchina+easylist.txt: 15607) -/(.*/)?serve\.ads\. -serve.ads.*. -# /serv.ads. (easylistchina+easylist.txt: 15606) -/(.*/)?serv\.ads\. -serv.ads.*. -# /seo-ads. (easylistchina+easylist.txt: 15605) -/(.*/)?seo-ads\. -seo-ads.*. -# /securepubads. (easylistchina+easylist.txt: 15604) -/(.*/)?securepubads\. -securepubads.*. -# /secondads_ (easylistchina+easylist.txt: 15603) -/(.*/)?secondads_ -# /secondads. (easylistchina+easylist.txt: 15602) -/(.*/)?secondads\. -secondads.*. -# /searchads/* (easylistchina+easylist.txt: 15601) -/(.*/)?searchads/.* -# /searchad_ (easylistchina+easylist.txt: 15600) -/(.*/)?searchad_ -# /searchad. (easylistchina+easylist.txt: 15599) -/(.*/)?searchad\. -searchad.*. -# /search_ads. (easylistchina+easylist.txt: 15598) -/(.*/)?search_ads\. -# /search/ads_ (easylistchina+easylist.txt: 15597) -/(.*/)?search/ads_ -# /search/ads? (easylistchina+easylist.txt: 15596) -/(.*/)?search/ads\? -# /search/ad/* (easylistchina+easylist.txt: 15595) -/(.*/)?search/ad/.* -# /search.php?uid=*.*&src= (easylistchina+easylist.txt: 15594) -/(.*/)?search\.php\?uid=.*\..*&src= -# /search-ads? (easylistchina+easylist.txt: 15593) -/(.*/)?search-ads\? -# /scrpads. (easylistchina+easylist.txt: 15592) -/(.*/)?scrpads\. -scrpads.*. -# /scrollads/* (easylistchina+easylist.txt: 15591) -/(.*/)?scrollads/.* -# /scripts/zanox- (easylistchina+easylist.txt: 15590) -/(.*/)?scripts/zanox- -# /scripts/feedmeCaf.php?q=*&d=*&ron=$script (easylistchina+easylist.txt: 15589) -/(.*/)?scripts/feedmeCaf\.php\?q=.*&d=.*&ron= -# /scripts/afc/* (easylistchina+easylist.txt: 15588) -/(.*/)?scripts/afc/.* -# /scripts/adv. (easylistchina+easylist.txt: 15587) -/(.*/)?scripts/adv\. -# /scripts/AdService_ (easylistchina+easylist.txt: 15586) -/(.*/)?scripts/AdService_ -# /scripts/ads/* (easylistchina+easylist.txt: 15585) -/(.*/)?scripts/ads/.* -# /scripts/ads. (easylistchina+easylist.txt: 15584) -/(.*/)?scripts/ads\. -# /scripts/ad_ (easylistchina+easylist.txt: 15583) -/(.*/)?scripts/ad_ -# /scripts/ad/* (easylistchina+easylist.txt: 15582) -/(.*/)?scripts/ad/.* -# /scripts/ad. (easylistchina+easylist.txt: 15581) -/(.*/)?scripts/ad\. -# /scripts/ad- (easylistchina+easylist.txt: 15580) -/(.*/)?scripts/ad- -# /script/oas/* (easylistchina+easylist.txt: 15579) -/(.*/)?script/oas/.* -# /script/banniere_*.php?id=*&ref=$script,third-party (easylistchina+easylist.txt: 15578) -/(.*/)?script/banniere_.*\.php\?id=.*&ref= -# /script/ads_ (easylistchina+easylist.txt: 15577) -/(.*/)?script/ads_ -# /script/ads. (easylistchina+easylist.txt: 15576) -/(.*/)?script/ads\. -# /script/ad. (easylistchina+easylist.txt: 15575) -/(.*/)?script/ad\. -# /scaradcontrol. (easylistchina+easylist.txt: 15574) -/(.*/)?scaradcontrol\. -scaradcontrol.*. -# /scanscoutplugin. (easylistchina+easylist.txt: 15573) -/(.*/)?scanscoutplugin\. -scanscoutplugin.*. -# /scanscoutoverlayadrenderer. (easylistchina+easylist.txt: 15572) -/(.*/)?scanscoutoverlayadrenderer\. -scanscoutoverlayadrenderer.*. -# /scanscout. (easylistchina+easylist.txt: 15571) -/(.*/)?scanscout\. -scanscout.*. -# /sb-relevance.js (easylistchina+easylist.txt: 15570) -/(.*/)?sb-relevance\.js -sb-relevance.js*. -# /savvyads. (easylistchina+easylist.txt: 15569) -/(.*/)?savvyads\. -savvyads.*. -# /satnetgoogleads. (easylistchina+easylist.txt: 15568) -/(.*/)?satnetgoogleads\. -satnetgoogleads.*. -# /satnetads. (easylistchina+easylist.txt: 15567) -/(.*/)?satnetads\. -satnetads.*. -# /samsung_ad. (easylistchina+easylist.txt: 15566) -/(.*/)?samsung_ad\. -# /samplead1. (easylistchina+easylist.txt: 15565) -/(.*/)?samplead1\. -samplead1.*. -# /salesad/* (easylistchina+easylist.txt: 15564) -/(.*/)?salesad/.* -# /sailthru.js (easylistchina+easylist.txt: 15563) -/(.*/)?sailthru\.js -sailthru.js*. -# /safead/* (easylistchina+easylist.txt: 15562) -/(.*/)?safead/.* -# /rule34v2/ads/* (easylistchina+easylist.txt: 15561) -/(.*/)?rule34v2/ads/.* -# /rule34/ads/* (easylistchina+easylist.txt: 15560) -/(.*/)?rule34/ads/.* -# /rswebsiteads/* (easylistchina+easylist.txt: 15559) -/(.*/)?rswebsiteads/.* -# /rss2/?np=*&hp=$script,third-party (easylistchina+easylist.txt: 15558) -/(.*/)?rss2/\?np=.*&hp= -# /rss2/?hp=*&np=$script,third-party (easylistchina+easylist.txt: 15557) -/(.*/)?rss2/\?hp=.*&np= -# /rss2/?*&np=*&hp=$script,third-party (easylistchina+easylist.txt: 15556) -/(.*/)?rss2/\?.*&np=.*&hp= -# /rss2/?*&hp=*&np=$script,third-party (easylistchina+easylist.txt: 15555) -/(.*/)?rss2/\?.*&hp=.*&np= -# /rss/ads/* (easylistchina+easylist.txt: 15554) -/(.*/)?rss/ads/.* -# /rsc_ad_ (easylistchina+easylist.txt: 15553) -/(.*/)?rsc_ad_ -# /rsads/* (easylistchina+easylist.txt: 15552) -/(.*/)?rsads/.* -# /rsads.js (easylistchina+easylist.txt: 15551) -/(.*/)?rsads\.js -rsads.js*. -# /rpgetad. (easylistchina+easylist.txt: 15550) -/(.*/)?rpgetad\. -rpgetad.*. -# /rpc/ad/* (easylistchina+easylist.txt: 15549) -/(.*/)?rpc/ad/.* -# /roturl.js (easylistchina+easylist.txt: 15548) -/(.*/)?roturl\.js -roturl.js*. -# /rotatoradbottom. (easylistchina+easylist.txt: 15547) -/(.*/)?rotatoradbottom\. -rotatoradbottom.*. -# /rotatorad300x250. (easylistchina+easylist.txt: 15546) -/(.*/)?rotatorad300x250\. -rotatorad300x250.*. -# /rotationad. (easylistchina+easylist.txt: 15545) -/(.*/)?rotationad\. -rotationad.*. -# /rotation/banner (easylistchina+easylist.txt: 15544) -/(.*/)?rotation/banner -# /rotatingtextad. (easylistchina+easylist.txt: 15543) -/(.*/)?rotatingtextad\. -rotatingtextad.*. -# /rotatingpeels. (easylistchina+easylist.txt: 15542) -/(.*/)?rotatingpeels\. -rotatingpeels.*. -# /rotatingad. (easylistchina+easylist.txt: 15541) -/(.*/)?rotatingad\. -rotatingad.*. -# /rotating_banner.php (easylistchina+easylist.txt: 15540) -/(.*/)?rotating_banner\.php -# /rotatedads2. (easylistchina+easylist.txt: 15539) -/(.*/)?rotatedads2\. -rotatedads2.*. -# /rotatedads13. (easylistchina+easylist.txt: 15538) -/(.*/)?rotatedads13\. -rotatedads13.*. -# /rotatedads1. (easylistchina+easylist.txt: 15537) -/(.*/)?rotatedads1\. -rotatedads1.*. -# /rotateads. (easylistchina+easylist.txt: 15536) -/(.*/)?rotateads\. -rotateads.*. -# /rotads/* (easylistchina+easylist.txt: 15535) -/(.*/)?rotads/.* -# /rotad/* (easylistchina+easylist.txt: 15534) -/(.*/)?rotad/.* -# /root_ad. (easylistchina+easylist.txt: 15533) -/(.*/)?root_ad\. -# /rolloverbannerad. (easylistchina+easylist.txt: 15532) -/(.*/)?rolloverbannerad\. -rolloverbannerad.*. -# /rolloverads/* (easylistchina+easylist.txt: 15531) -/(.*/)?rolloverads/.* -# /rollad. (easylistchina+easylist.txt: 15530) -/(.*/)?rollad\. -rollad.*. -# /righttopads. (easylistchina+easylist.txt: 15529) -/(.*/)?righttopads\. -righttopads.*. -# /rightsideaddisplay. (easylistchina+easylist.txt: 15528) -/(.*/)?rightsideaddisplay\. -rightsideaddisplay.*. -# /rightrailgoogleads. (easylistchina+easylist.txt: 15527) -/(.*/)?rightrailgoogleads\. -rightrailgoogleads.*. -# /rightnavadsanswer. (easylistchina+easylist.txt: 15526) -/(.*/)?rightnavadsanswer\. -rightnavadsanswer.*. -# /rightnavads. (easylistchina+easylist.txt: 15525) -/(.*/)?rightnavads\. -rightnavads.*. -# /rightbanner/* (easylistchina+easylist.txt: 15524) -/(.*/)?rightbanner/.* -# /rightads. (easylistchina+easylist.txt: 15523) -/(.*/)?rightads\. -rightads.*. -# /rightad/* (easylistchina+easylist.txt: 15522) -/(.*/)?rightad/.* -# /rightad. (easylistchina+easylist.txt: 15521) -/(.*/)?rightad\. -rightad.*. -# /right_ads. (easylistchina+easylist.txt: 15520) -/(.*/)?right_ads\. -# /right_ad_ (easylistchina+easylist.txt: 15519) -/(.*/)?right_ad_ -# /right_ad^ (easylistchina+easylist.txt: 15518) -/(.*/)?right_ad[^\w%.-] -# /right_ad. (easylistchina+easylist.txt: 15517) -/(.*/)?right_ad\. -# /right-ad- (easylistchina+easylist.txt: 15516) -/(.*/)?right-ad- -right-ad-*. -# /richoas. (easylistchina+easylist.txt: 15515) -/(.*/)?richoas\. -richoas.*. -# /rhspushads/* (easylistchina+easylist.txt: 15514) -/(.*/)?rhspushads/.* -# /rgads. (easylistchina+easylist.txt: 15513) -/(.*/)?rgads\. -rgads.*. -# /rg-rlog.php$xmlhttprequest (easylistchina+easylist.txt: 15512) -/(.*/)?rg-rlog\.php -rg-rlog.php*. -# /rg-erdr.php$xmlhttprequest (easylistchina+easylist.txt: 15511) -/(.*/)?rg-erdr\.php -rg-erdr.php*. -# /revealads2/* (easylistchina+easylist.txt: 15510) -/(.*/)?revealads2/.* -# /revealads/* (easylistchina+easylist.txt: 15509) -/(.*/)?revealads/.* -# /revealads. (easylistchina+easylist.txt: 15508) -/(.*/)?revealads\. -revealads.*. -# /revealaads/* (easylistchina+easylist.txt: 15507) -/(.*/)?revealaads/.* -# /revealaads. (easylistchina+easylist.txt: 15506) -/(.*/)?revealaads\. -revealaads.*. -# /retrieve-ad. (easylistchina+easylist.txt: 15505) -/(.*/)?retrieve-ad\. -retrieve-ad.*. -# /retrad. (easylistchina+easylist.txt: 15504) -/(.*/)?retrad\. -retrad.*. -# /restorationad- (easylistchina+easylist.txt: 15503) -/(.*/)?restorationad- -restorationad-*. -# /responsive_dfp_ (easylistchina+easylist.txt: 15502) -/(.*/)?responsive_dfp_ -# /responsive_dfp. (easylistchina+easylist.txt: 15501) -/(.*/)?responsive_dfp\. -# /responsive-ads. (easylistchina+easylist.txt: 15500) -/(.*/)?responsive-ads\. -responsive-ads.*. -# /resources/ads_ (easylistchina+easylist.txt: 15499) -/(.*/)?resources/ads_ -# /resources/ads/* (easylistchina+easylist.txt: 15498) -/(.*/)?resources/ads/.* -# /resources/ad. (easylistchina+easylist.txt: 15497) -/(.*/)?resources/ad\. -# /requestmyspacead. (easylistchina+easylist.txt: 15496) -/(.*/)?requestmyspacead\. -requestmyspacead.*. -# /requestadvertisement. (easylistchina+easylist.txt: 15495) -/(.*/)?requestadvertisement\. -requestadvertisement.*. -# /report_ad_ (easylistchina+easylist.txt: 15494) -/(.*/)?report_ad_ -# /report_ad. (easylistchina+easylist.txt: 15493) -/(.*/)?report_ad\. -# /repeat_adv. (easylistchina+easylist.txt: 15492) -/(.*/)?repeat_adv\. -# /renderBanner.do? (easylistchina+easylist.txt: 15491) -/(.*/)?renderBanner\.do\? -# /render-ad/* (easylistchina+easylist.txt: 15490) -/(.*/)?render-ad/.* -# /remove_ads. (easylistchina+easylist.txt: 15489) -/(.*/)?remove_ads\. -# /remove-ads. (easylistchina+easylist.txt: 15488) -/(.*/)?remove-ads\. -remove-ads.*. -# /relevance_ad. (easylistchina+easylist.txt: 15487) -/(.*/)?relevance_ad\. -# /relatedads. (easylistchina+easylist.txt: 15486) -/(.*/)?relatedads\. -relatedads.*. -# /related-ads. (easylistchina+easylist.txt: 15485) -/(.*/)?related-ads\. -related-ads.*. -# /reklame/* (easylistchina+easylist.txt: 15484) -/(.*/)?reklame/.* -# /reklama5. (easylistchina+easylist.txt: 15483) -/(.*/)?reklama5\. -reklama5.*. -# /reklama2. (easylistchina+easylist.txt: 15482) -/(.*/)?reklama2\. -reklama2.*. -# /reklama/* (easylistchina+easylist.txt: 15481) -/(.*/)?reklama/.* -# /reklama.$~stylesheet (easylistchina+easylist.txt: 15480) -/(.*/)?reklama\. -reklama.*. -# /reklam/* (easylistchina+easylist.txt: 15479) -/(.*/)?reklam/.* -# /reklam. (easylistchina+easylist.txt: 15478) -/(.*/)?reklam\. -reklam.*. -# /RefSplDicAdsTopL. (easylistchina+easylist.txt: 15477) -/(.*/)?RefSplDicAdsTopL\. -RefSplDicAdsTopL.*. -# /refreshsyncbannerad? (easylistchina+easylist.txt: 15476) -/(.*/)?refreshsyncbannerad\? -# /refreshads- (easylistchina+easylist.txt: 15475) -/(.*/)?refreshads- -refreshads-*. -# /refads/* (easylistchina+easylist.txt: 15474) -/(.*/)?refads/.* -# /redirect_awe. (easylistchina+easylist.txt: 15473) -/(.*/)?redirect_awe\. -# /rectangle_advertorials_ (easylistchina+easylist.txt: 15472) -/(.*/)?rectangle_advertorials_ -# /rectangle_ad. (easylistchina+easylist.txt: 15471) -/(.*/)?rectangle_ad\. -# /rect_ad. (easylistchina+easylist.txt: 15470) -/(.*/)?rect_ad\. -# /recordadsall. (easylistchina+easylist.txt: 15469) -/(.*/)?recordadsall\. -recordadsall.*. -# /recommendations/ad. (easylistchina+easylist.txt: 15468) -/(.*/)?recommendations/ad\. -# /reclame/* (easylistchina+easylist.txt: 15467) -/(.*/)?reclame/.* -# /reclama/* (easylistchina+easylist.txt: 15466) -/(.*/)?reclama/.* -# /realmedia_mjx_ (easylistchina+easylist.txt: 15465) -/(.*/)?realmedia_mjx_ -# /realmedia_mjx. (easylistchina+easylist.txt: 15464) -/(.*/)?realmedia_mjx\. -# /realmedia_banner_ (easylistchina+easylist.txt: 15463) -/(.*/)?realmedia_banner_ -# /realmedia_banner. (easylistchina+easylist.txt: 15462) -/(.*/)?realmedia_banner\. -# /realmedia/ads/* (easylistchina+easylist.txt: 15461) -/(.*/)?realmedia/ads/.* -# /rcom-video-ads. (easylistchina+easylist.txt: 15460) -/(.*/)?rcom-video-ads\. -rcom-video-ads.*. -# /rcom-ads. (easylistchina+easylist.txt: 15459) -/(.*/)?rcom-ads\. -rcom-ads.*. -# /rcom-ads- (easylistchina+easylist.txt: 15458) -/(.*/)?rcom-ads- -rcom-ads-*. -# /rcolads2. (easylistchina+easylist.txt: 15457) -/(.*/)?rcolads2\. -rcolads2.*. -# /rcolads1. (easylistchina+easylist.txt: 15456) -/(.*/)?rcolads1\. -rcolads1.*. -# /rawtubelivead. (easylistchina+easylist.txt: 15455) -/(.*/)?rawtubelivead\. -rawtubelivead.*. -# /randomads. (easylistchina+easylist.txt: 15454) -/(.*/)?randomads\. -randomads.*. -# /randomad_ (easylistchina+easylist.txt: 15453) -/(.*/)?randomad_ -# /randomad728x90nsfw. (easylistchina+easylist.txt: 15452) -/(.*/)?randomad728x90nsfw\. -randomad728x90nsfw.*. -# /randomad300x250nsfw. (easylistchina+easylist.txt: 15451) -/(.*/)?randomad300x250nsfw\. -randomad300x250nsfw.*. -# /randomad2. (easylistchina+easylist.txt: 15450) -/(.*/)?randomad2\. -randomad2.*. -# /randomad160x600nsfw. (easylistchina+easylist.txt: 15449) -/(.*/)?randomad160x600nsfw\. -randomad160x600nsfw.*. -# /randomad120x600nsfw. (easylistchina+easylist.txt: 15448) -/(.*/)?randomad120x600nsfw\. -randomad120x600nsfw.*. -# /randomad. (easylistchina+easylist.txt: 15447) -/(.*/)?randomad\. -randomad.*. -# /ram/ads/* (easylistchina+easylist.txt: 15446) -/(.*/)?ram/ads/.* -# /RainbowTGXServer/* (easylistchina+easylist.txt: 15445) -/(.*/)?RainbowTGXServer/.* -# /railsad_ (easylistchina+easylist.txt: 15444) -/(.*/)?railsad_ -# /railsad. (easylistchina+easylist.txt: 15443) -/(.*/)?railsad\. -railsad.*. -# /railads. (easylistchina+easylist.txt: 15442) -/(.*/)?railads\. -railads.*. -# /railad. (easylistchina+easylist.txt: 15441) -/(.*/)?railad\. -railad.*. -# /rail_ad_ (easylistchina+easylist.txt: 15440) -/(.*/)?rail_ad_ -# /radopenx? (easylistchina+easylist.txt: 15439) -/(.*/)?radopenx\? -# /radioAdEmbedGPT. (easylistchina+easylist.txt: 15438) -/(.*/)?radioAdEmbedGPT\. -radioAdEmbedGPT.*. -# /radioadembedgenre. (easylistchina+easylist.txt: 15437) -/(.*/)?radioadembedgenre\. -radioadembedgenre.*. -# /radioAdEmbed. (easylistchina+easylist.txt: 15436) -/(.*/)?radioAdEmbed\. -radioAdEmbed.*. -# /r_ads/* (easylistchina+easylist.txt: 15435) -/(.*/)?r_ads/.* -# /quigo_ad (easylistchina+easylist.txt: 15434) -/(.*/)?quigo_ad -# /quick_ads/* (easylistchina+easylist.txt: 15433) -/(.*/)?quick_ads/.* -# /questions/ads/* (easylistchina+easylist.txt: 15432) -/(.*/)?questions/ads/.* -# /quadadvert. (easylistchina+easylist.txt: 15431) -/(.*/)?quadadvert\. -quadadvert.*. -# /qpon_big_ad (easylistchina+easylist.txt: 15430) -/(.*/)?qpon_big_ad -# /qd_ads/* (easylistchina+easylist.txt: 15429) -/(.*/)?qd_ads/.* -# /qandaads/* (easylistchina+easylist.txt: 15428) -/(.*/)?qandaads/.* -# /pushdownAd. (easylistchina+easylist.txt: 15427) -/(.*/)?pushdownAd\. -pushdownAd.*. -# /punder.php (easylistchina+easylist.txt: 15426) -/(.*/)?punder\.php -punder.php*. -# /punder.js (easylistchina+easylist.txt: 15425) -/(.*/)?punder\.js -punder.js*. -# /pullads. (easylistchina+easylist.txt: 15424) -/(.*/)?pullads\. -pullads.*. -# /puff_ad? (easylistchina+easylist.txt: 15423) -/(.*/)?puff_ad\? -# /pubs_aff.asp? (easylistchina+easylist.txt: 15422) -/(.*/)?pubs_aff\.asp\? -# /pubmatic_ (easylistchina+easylist.txt: 15421) -/(.*/)?pubmatic_ -# /publicidade/* (easylistchina+easylist.txt: 15420) -/(.*/)?publicidade/.* -# /publicidade. (easylistchina+easylist.txt: 15419) -/(.*/)?publicidade\. -publicidade.*. -# /publicidad_$~stylesheet (easylistchina+easylist.txt: 15418) -/(.*/)?publicidad_ -# /publicidad/* (easylistchina+easylist.txt: 15417) -/(.*/)?publicidad/.* -# /publicidad.$~object-subrequest,~stylesheet (easylistchina+easylist.txt: 15416) -/(.*/)?publicidad\. -publicidad.*. -# /public/adv/* (easylistchina+easylist.txt: 15415) -/(.*/)?public/adv/.* -# /public/ads/* (easylistchina+easylist.txt: 15414) -/(.*/)?public/ads/.* -# /public/ad? (easylistchina+easylist.txt: 15413) -/(.*/)?public/ad\? -# /public/ad/* (easylistchina+easylist.txt: 15412) -/(.*/)?public/ad/.* -# /pubads_ (easylistchina+easylist.txt: 15411) -/(.*/)?pubads_ -# /pubads. (easylistchina+easylist.txt: 15410) -/(.*/)?pubads\. -pubads.*. -# /pubad. (easylistchina+easylist.txt: 15409) -/(.*/)?pubad\. -pubad.*. -# /pub_images/*$third-party (easylistchina+easylist.txt: 15408) -/(.*/)?pub_images/.* -# /pub/ads/* (easylistchina+easylist.txt: 15407) -/(.*/)?pub/ads/.* -# /pub/ad/* (easylistchina+easylist.txt: 15406) -/(.*/)?pub/ad/.* -# /proxyadcall? (easylistchina+easylist.txt: 15405) -/(.*/)?proxyadcall\? -# /proxxorad. (easylistchina+easylist.txt: 15404) -/(.*/)?proxxorad\. -proxxorad.*. -# /provider_ads/* (easylistchina+easylist.txt: 15403) -/(.*/)?provider_ads/.* -# /provideadcode. (easylistchina+easylist.txt: 15402) -/(.*/)?provideadcode\. -provideadcode.*. -# /protection/ad/* (easylistchina+easylist.txt: 15401) -/(.*/)?protection/ad/.* -# /promotools1. (easylistchina+easylist.txt: 15400) -/(.*/)?promotools1\. -promotools1.*. -# /promotools/* (easylistchina+easylist.txt: 15399) -/(.*/)?promotools/.* -# /promotools. (easylistchina+easylist.txt: 15398) -/(.*/)?promotools\. -promotools.*. -# /promotions/ads? (easylistchina+easylist.txt: 15397) -/(.*/)?promotions/ads\? -# /promotions/ads/* (easylistchina+easylist.txt: 15396) -/(.*/)?promotions/ads/.* -# /promotions/ads. (easylistchina+easylist.txt: 15395) -/(.*/)?promotions/ads\. -# /promotion/geoip/* (easylistchina+easylist.txt: 15394) -/(.*/)?promotion/geoip/.* -# /promoredirect?*&campaign=*&zone= (easylistchina+easylist.txt: 15393) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /promoloaddisplay? (easylistchina+easylist.txt: 15392) -/(.*/)?promoloaddisplay\? -# /promobuttonad. (easylistchina+easylist.txt: 15391) -/(.*/)?promobuttonad\. -promobuttonad.*. -# /promoads/* (easylistchina+easylist.txt: 15390) -/(.*/)?promoads/.* -# /promo300x250. (easylistchina+easylist.txt: 15389) -/(.*/)?promo300x250\. -promo300x250.*. -# /promo300by250. (easylistchina+easylist.txt: 15388) -/(.*/)?promo300by250\. -promo300by250.*. -# /promo/banners/* (easylistchina+easylist.txt: 15387) -/(.*/)?promo/banners/.* -# /promo/affiframe. (easylistchina+easylist.txt: 15386) -/(.*/)?promo/affiframe\. -# /promo/ads/* (easylistchina+easylist.txt: 15385) -/(.*/)?promo/ads/.* -# /promo/ad_ (easylistchina+easylist.txt: 15384) -/(.*/)?promo/ad_ -# /promo-ads/* (easylistchina+easylist.txt: 15383) -/(.*/)?promo-ads/.* -# /projectwonderful_ (easylistchina+easylist.txt: 15382) -/(.*/)?projectwonderful_ -# /prog-sponsor/* (easylistchina+easylist.txt: 15381) -/(.*/)?prog-sponsor/.* -# /production/ads/* (easylistchina+easylist.txt: 15380) -/(.*/)?production/ads/.* -# /product-ads/* (easylistchina+easylist.txt: 15379) -/(.*/)?product-ads/.* -# /product-ad/* (easylistchina+easylist.txt: 15378) -/(.*/)?product-ad/.* -# /processing/impressions.asp? (easylistchina+easylist.txt: 15377) -/(.*/)?processing/impressions\.asp\? -# /processads. (easylistchina+easylist.txt: 15376) -/(.*/)?processads\. -processads.*. -# /processad. (easylistchina+easylist.txt: 15375) -/(.*/)?processad\. -processad.*. -# /proadvertising_ (easylistchina+easylist.txt: 15374) -/(.*/)?proadvertising_ -# /proadvertising. (easylistchina+easylist.txt: 15373) -/(.*/)?proadvertising\. -proadvertising.*. -# /proads/* (easylistchina+easylist.txt: 15372) -/(.*/)?proads/.* -# /PRNAd300x150. (easylistchina+easylist.txt: 15371) -/(.*/)?PRNAd300x150\. -PRNAd300x150.*. -# /printads/* (easylistchina+easylist.txt: 15370) -/(.*/)?printads/.* -# /printad/* (easylistchina+easylist.txt: 15369) -/(.*/)?printad/.* -# /printad. (easylistchina+easylist.txt: 15368) -/(.*/)?printad\. -printad.*. -# /previews/ad/* (easylistchina+easylist.txt: 15367) -/(.*/)?previews/ad/.* -# /prerollads. (easylistchina+easylist.txt: 15366) -/(.*/)?prerollads\. -prerollads.*. -# /prerollad. (easylistchina+easylist.txt: 15365) -/(.*/)?prerollad\. -prerollad.*. -# /premiumadzone. (easylistchina+easylist.txt: 15364) -/(.*/)?premiumadzone\. -premiumadzone.*. -# /premiumads/* (easylistchina+easylist.txt: 15363) -/(.*/)?premiumads/.* -# /premium_ad. (easylistchina+easylist.txt: 15362) -/(.*/)?premium_ad\. -# /premierebtnad/* (easylistchina+easylist.txt: 15361) -/(.*/)?premierebtnad/.* -# /predictad. (easylistchina+easylist.txt: 15360) -/(.*/)?predictad\. -predictad.*. -# /ppd_ads_ (easylistchina+easylist.txt: 15359) -/(.*/)?ppd_ads_ -# /ppd_ads. (easylistchina+easylist.txt: 15358) -/(.*/)?ppd_ads\. -# /pounder-$~image (easylistchina+easylist.txt: 15357) -/(.*/)?pounder- -pounder-*. -# /posts_ad. (easylistchina+easylist.txt: 15356) -/(.*/)?posts_ad\. -# /postprofileverticalad. (easylistchina+easylist.txt: 15355) -/(.*/)?postprofileverticalad\. -postprofileverticalad.*. -# /postprofilehorizontalad. (easylistchina+easylist.txt: 15354) -/(.*/)?postprofilehorizontalad\. -postprofilehorizontalad.*. -# /postprocad. (easylistchina+easylist.txt: 15353) -/(.*/)?postprocad\. -postprocad.*. -# /postad. (easylistchina+easylist.txt: 15352) -/(.*/)?postad\. -postad.*. -# /post_ads_ (easylistchina+easylist.txt: 15351) -/(.*/)?post_ads_ -# /post/ads/* (easylistchina+easylist.txt: 15350) -/(.*/)?post/ads/.* -# /post-ad- (easylistchina+easylist.txt: 15349) -/(.*/)?post-ad- -post-ad-*. -# /popupunder. (easylistchina+easylist.txt: 15348) -/(.*/)?popupunder\. -popupunder.*. -# /popupdfp. (easylistchina+easylist.txt: 15347) -/(.*/)?popupdfp\. -popupdfp.*. -# /popupads. (easylistchina+easylist.txt: 15346) -/(.*/)?popupads\. -popupads.*. -# /popup_code. (easylistchina+easylist.txt: 15345) -/(.*/)?popup_code\. -# /popup_ad. (easylistchina+easylist.txt: 15344) -/(.*/)?popup_ad\. -# /popup3.js (easylistchina+easylist.txt: 15343) -/(.*/)?popup3\.js -popup3.js*. -# /popup2.js (easylistchina+easylist.txt: 15342) -/(.*/)?popup2\.js -popup2.js*. -# /popup-domination/*$~stylesheet (easylistchina+easylist.txt: 15341) -/(.*/)?popup-domination/.* -# /popundr_ (easylistchina+easylist.txt: 15340) -/(.*/)?popundr_ -# /popundr. (easylistchina+easylist.txt: 15339) -/(.*/)?popundr\. -popundr.*. -# /popunders/* (easylistchina+easylist.txt: 15338) -/(.*/)?popunders/.* -# /popunders. (easylistchina+easylist.txt: 15337) -/(.*/)?popunders\. -popunders.*. -# /popunderking. (easylistchina+easylist.txt: 15336) -/(.*/)?popunderking\. -popunderking.*. -# /popundercode. (easylistchina+easylist.txt: 15335) -/(.*/)?popundercode\. -popundercode.*. -# /popunderblogs. (easylistchina+easylist.txt: 15334) -/(.*/)?popunderblogs\. -popunderblogs.*. -# /popunder_ (easylistchina+easylist.txt: 15333) -/(.*/)?popunder_ -# /popunder? (easylistchina+easylist.txt: 15332) -/(.*/)?popunder\? -# /popunder7. (easylistchina+easylist.txt: 15331) -/(.*/)?popunder7\. -popunder7.*. -# /popunder5. (easylistchina+easylist.txt: 15330) -/(.*/)?popunder5\. -popunder5.*. -# /popunder4. (easylistchina+easylist.txt: 15329) -/(.*/)?popunder4\. -popunder4.*. -# /popunder2. (easylistchina+easylist.txt: 15328) -/(.*/)?popunder2\. -popunder2.*. -# /popunder1_ (easylistchina+easylist.txt: 15327) -/(.*/)?popunder1_ -# /popunder1. (easylistchina+easylist.txt: 15326) -/(.*/)?popunder1\. -popunder1.*. -# /popunder/* (easylistchina+easylist.txt: 15325) -/(.*/)?popunder/.* -# /popunder. (easylistchina+easylist.txt: 15324) -/(.*/)?popunder\. -popunder.*. -# /popunder- (easylistchina+easylist.txt: 15323) -/(.*/)?popunder- -popunder-*. -# /popu.js (easylistchina+easylist.txt: 15322) -/(.*/)?popu\.js -popu.js*. -# /popshow.$~stylesheet (easylistchina+easylist.txt: 15321) -/(.*/)?popshow\. -popshow.*. -# /poprotator. (easylistchina+easylist.txt: 15320) -/(.*/)?poprotator\. -poprotator.*. -# /popounder4. (easylistchina+easylist.txt: 15319) -/(.*/)?popounder4\. -popounder4.*. -# /poplivejasmine. (easylistchina+easylist.txt: 15318) -/(.*/)?poplivejasmine\. -poplivejasmine.*. -# /popads_ (easylistchina+easylist.txt: 15317) -/(.*/)?popads_ -# /popads/* (easylistchina+easylist.txt: 15316) -/(.*/)?popads/.* -# /popads. (easylistchina+easylist.txt: 15315) -/(.*/)?popads\. -popads.*. -# /popad. (easylistchina+easylist.txt: 15314) -/(.*/)?popad\. -popad.*. -# /popad- (easylistchina+easylist.txt: 15313) -/(.*/)?popad- -popad-*. -# /pop_under/* (easylistchina+easylist.txt: 15312) -/(.*/)?pop_under/.* -# /pop_under. (easylistchina+easylist.txt: 15311) -/(.*/)?pop_under\. -# /pop_camgirlcity. (easylistchina+easylist.txt: 15310) -/(.*/)?pop_camgirlcity\. -# /pop_adfy. (easylistchina+easylist.txt: 15309) -/(.*/)?pop_adfy\. -# /pop_ad. (easylistchina+easylist.txt: 15308) -/(.*/)?pop_ad\. -# /pop?tid= (easylistchina+easylist.txt: 15307) -/(.*/)?pop\?tid= -# /pop2.js| (easylistchina+easylist.txt: 15306) -/(.*/)?pop2\.js$ -pop2.js -# /pop.js| (easylistchina+easylist.txt: 15305) -/(.*/)?pop\.js$ -pop.js -# /pop-under. (easylistchina+easylist.txt: 15304) -/(.*/)?pop-under\. -pop-under.*. -# /pool/ad/* (easylistchina+easylist.txt: 15303) -/(.*/)?pool/ad/.* -# /pool.ads. (easylistchina+easylist.txt: 15302) -/(.*/)?pool\.ads\. -pool.ads.*. -# /polopoly_fs/ad- (easylistchina+easylist.txt: 15301) -/(.*/)?polopoly_fs/ad- -# /poll-ad- (easylistchina+easylist.txt: 15300) -/(.*/)?poll-ad- -poll-ad-*. -# /poker-ad. (easylistchina+easylist.txt: 15299) -/(.*/)?poker-ad\. -poker-ad.*. -# /plus/ad_ (easylistchina+easylist.txt: 15298) -/(.*/)?plus/ad_ -# /plugins_ads_ (easylistchina+easylist.txt: 15297) -/(.*/)?plugins_ads_ -# /plugins/wp_actionpop/* (easylistchina+easylist.txt: 15296) -/(.*/)?plugins/wp_actionpop/.* -# /plugins/wp125/*$~stylesheet (easylistchina+easylist.txt: 15295) -/(.*/)?plugins/wp125/.* -# /plugins/wp-moreads/*$~stylesheet (easylistchina+easylist.txt: 15294) -/(.*/)?plugins/wp-moreads/.* -# /plugins/page-cornr- (easylistchina+easylist.txt: 15293) -/(.*/)?plugins/page-cornr- -# /plugins/ads/* (easylistchina+easylist.txt: 15292) -/(.*/)?plugins/ads/.* -# /plugins/ad. (easylistchina+easylist.txt: 15291) -/(.*/)?plugins/ad\. -# /plugin/ad/* (easylistchina+easylist.txt: 15290) -/(.*/)?plugin/ad/.* -# /pledgead. (easylistchina+easylist.txt: 15289) -/(.*/)?pledgead\. -pledgead.*. -# /player_ads/* (easylistchina+easylist.txt: 15288) -/(.*/)?player_ads/.* -# /player/ads/* (easylistchina+easylist.txt: 15287) -/(.*/)?player/ads/.* -# /player/ads. (easylistchina+easylist.txt: 15286) -/(.*/)?player/ads\. -# /player/ad/* (easylistchina+easylist.txt: 15285) -/(.*/)?player/ad/.* -# /play/ad/* (easylistchina+easylist.txt: 15284) -/(.*/)?play/ad/.* -# /placements/ad_ (easylistchina+easylist.txt: 15283) -/(.*/)?placements/ad_ -# /placeholder-ad- (easylistchina+easylist.txt: 15282) -/(.*/)?placeholder-ad- -placeholder-ad-*. -# /placead_ (easylistchina+easylist.txt: 15281) -/(.*/)?placead_ -# /place-ads/* (easylistchina+easylist.txt: 15280) -/(.*/)?place-ads/.* -# /pixelads/* (easylistchina+easylist.txt: 15279) -/(.*/)?pixelads/.* -# /pix/ads/* (easylistchina+easylist.txt: 15278) -/(.*/)?pix/ads/.* -# /pitattoad. (easylistchina+easylist.txt: 15277) -/(.*/)?pitattoad\. -pitattoad.*. -# /pilot_ad. (easylistchina+easylist.txt: 15276) -/(.*/)?pilot_ad\. -# /pictures/ads/* (easylistchina+easylist.txt: 15275) -/(.*/)?pictures/ads/.* -# /pictureads/* (easylistchina+easylist.txt: 15274) -/(.*/)?pictureads/.* -# /picture/ad/* (easylistchina+easylist.txt: 15273) -/(.*/)?picture/ad/.* -# /pics/ads/* (easylistchina+easylist.txt: 15272) -/(.*/)?pics/ads/.* -# /pickle-adsystem/* (easylistchina+easylist.txt: 15271) -/(.*/)?pickle-adsystem/.* -# /pic_adv/* (easylistchina+easylist.txt: 15270) -/(.*/)?pic_adv/.* -# /pic/ads/* (easylistchina+easylist.txt: 15269) -/(.*/)?pic/ads/.* -# /phpbanner/banner_ (easylistchina+easylist.txt: 15268) -/(.*/)?phpbanner/banner_ -# /phpadsnew/* (easylistchina+easylist.txt: 15267) -/(.*/)?phpadsnew/.* -# /phpadserver/* (easylistchina+easylist.txt: 15266) -/(.*/)?phpadserver/.* -# /phpads2/* (easylistchina+easylist.txt: 15265) -/(.*/)?phpads2/.* -# /phpads/* (easylistchina+easylist.txt: 15264) -/(.*/)?phpads/.* -# /phpads. (easylistchina+easylist.txt: 15263) -/(.*/)?phpads\. -phpads.*. -# /php/ads/* (easylistchina+easylist.txt: 15262) -/(.*/)?php/ads/.* -# /php/ad/* (easylistchina+easylist.txt: 15261) -/(.*/)?php/ad/.* -# /photogallaryads. (easylistchina+easylist.txt: 15260) -/(.*/)?photogallaryads\. -photogallaryads.*. -# /photoflipper/ads/* (easylistchina+easylist.txt: 15259) -/(.*/)?photoflipper/ads/.* -# /photoads/* (easylistchina+easylist.txt: 15258) -/(.*/)?photoads/.* -# /photoad. (easylistchina+easylist.txt: 15257) -/(.*/)?photoad\. -photoad.*. -# /photo728ad. (easylistchina+easylist.txt: 15256) -/(.*/)?photo728ad\. -photo728ad.*. -# /pgrightsideads. (easylistchina+easylist.txt: 15255) -/(.*/)?pgrightsideads\. -pgrightsideads.*. -# /pgad. (easylistchina+easylist.txt: 15254) -/(.*/)?pgad\. -pgad.*. -# /pfpadv. (easylistchina+easylist.txt: 15253) -/(.*/)?pfpadv\. -pfpadv.*. -# /persadpub/* (easylistchina+easylist.txt: 15252) -/(.*/)?persadpub/.* -# /permanent/ads/* (easylistchina+easylist.txt: 15251) -/(.*/)?permanent/ads/.* -# /performancingads/* (easylistchina+easylist.txt: 15250) -/(.*/)?performancingads/.* -# /performance_ads/* (easylistchina+easylist.txt: 15249) -/(.*/)?performance_ads/.* -# /perfads. (easylistchina+easylist.txt: 15248) -/(.*/)?perfads\. -perfads.*. -# /pencilad. (easylistchina+easylist.txt: 15247) -/(.*/)?pencilad\. -pencilad.*. -# /peeltr. (easylistchina+easylist.txt: 15246) -/(.*/)?peeltr\. -peeltr.*. -# /peeltl. (easylistchina+easylist.txt: 15245) -/(.*/)?peeltl\. -peeltl.*. -# /peeljs.php (easylistchina+easylist.txt: 15244) -/(.*/)?peeljs\.php -peeljs.php*. -# /peelbackscript/ad_ (easylistchina+easylist.txt: 15243) -/(.*/)?peelbackscript/ad_ -# /peelaway_images/* (easylistchina+easylist.txt: 15242) -/(.*/)?peelaway_images/.* -# /peelads/* (easylistchina+easylist.txt: 15241) -/(.*/)?peelads/.* -# /peelad/* (easylistchina+easylist.txt: 15240) -/(.*/)?peelad/.* -# /peelad. (easylistchina+easylist.txt: 15239) -/(.*/)?peelad\. -peelad.*. -# /peel_ads/* (easylistchina+easylist.txt: 15238) -/(.*/)?peel_ads/.* -# /peel1.js (easylistchina+easylist.txt: 15237) -/(.*/)?peel1\.js -peel1.js*. -# /peel/?webscr= (easylistchina+easylist.txt: 15236) -/(.*/)?peel/\?webscr= -# /peel.php? (easylistchina+easylist.txt: 15235) -/(.*/)?peel\.php\? -# /peel.js (easylistchina+easylist.txt: 15234) -/(.*/)?peel\.js -peel.js*. -# /pcad.js? (easylistchina+easylist.txt: 15233) -/(.*/)?pcad\.js\? -# /pc/ads. (easylistchina+easylist.txt: 15232) -/(.*/)?pc/ads\. -# /pb-ads/* (easylistchina+easylist.txt: 15231) -/(.*/)?pb-ads/.* -# /payperpost. (easylistchina+easylist.txt: 15230) -/(.*/)?payperpost\. -payperpost.*. -# /pauseadextension. (easylistchina+easylist.txt: 15229) -/(.*/)?pauseadextension\. -pauseadextension.*. -# /parts/ad/* (easylistchina+easylist.txt: 15228) -/(.*/)?parts/ad/.* -# /partnersadbutler/* (easylistchina+easylist.txt: 15227) -/(.*/)?partnersadbutler/.* -# /partners/get-banner. (easylistchina+easylist.txt: 15226) -/(.*/)?partners/get-banner\. -# /partners/ads/* (easylistchina+easylist.txt: 15225) -/(.*/)?partners/ads/.* -# /partners/ad- (easylistchina+easylist.txt: 15224) -/(.*/)?partners/ad- -# /partnerbanner/* (easylistchina+easylist.txt: 15223) -/(.*/)?partnerbanner/.* -# /partnerbanner. (easylistchina+easylist.txt: 15222) -/(.*/)?partnerbanner\. -partnerbanner.*. -# /partneradwidget. (easylistchina+easylist.txt: 15221) -/(.*/)?partneradwidget\. -partneradwidget.*. -# /partnerads_ (easylistchina+easylist.txt: 15220) -/(.*/)?partnerads_ -# /partnerads/* (easylistchina+easylist.txt: 15219) -/(.*/)?partnerads/.* -# /partnerad. (easylistchina+easylist.txt: 15218) -/(.*/)?partnerad\. -partnerad.*. -# /partner_ads_ (easylistchina+easylist.txt: 15217) -/(.*/)?partner_ads_ -# /partner_ads/* (easylistchina+easylist.txt: 15216) -/(.*/)?partner_ads/.* -# /park_html_functions_general.js (easylistchina+easylist.txt: 15215) -/(.*/)?park_html_functions_general\.js -# /park_html_functions.js (easylistchina+easylist.txt: 15214) -/(.*/)?park_html_functions\.js -# /park_html_functions.*.js (easylistchina+easylist.txt: 15213) -/(.*/)?park_html_functions\..*\.js -# /panelad. (easylistchina+easylist.txt: 15212) -/(.*/)?panelad\. -panelad.*. -# /paidlisting/* (easylistchina+easylist.txt: 15211) -/(.*/)?paidlisting/.* -# /paidads/* (easylistchina+easylist.txt: 15210) -/(.*/)?paidads/.* -# /pages/ads (easylistchina+easylist.txt: 15209) -/(.*/)?pages/ads -# /pagepeelads. (easylistchina+easylist.txt: 15208) -/(.*/)?pagepeelads\. -pagepeelads.*. -# /pagepeel_ (easylistchina+easylist.txt: 15207) -/(.*/)?pagepeel_ -# /pagepeel/* (easylistchina+easylist.txt: 15206) -/(.*/)?pagepeel/.* -# /pagepeel. (easylistchina+easylist.txt: 15205) -/(.*/)?pagepeel\. -pagepeel.*. -# /pagepeel- (easylistchina+easylist.txt: 15204) -/(.*/)?pagepeel- -pagepeel-*. -# /pageear_ (easylistchina+easylist.txt: 15203) -/(.*/)?pageear_ -# /pageear/* (easylistchina+easylist.txt: 15202) -/(.*/)?pageear/.* -# /pageear. (easylistchina+easylist.txt: 15201) -/(.*/)?pageear\. -pageear.*. -# /pagecurl/* (easylistchina+easylist.txt: 15200) -/(.*/)?pagecurl/.* -# /pagecall_dfp_async. (easylistchina+easylist.txt: 15199) -/(.*/)?pagecall_dfp_async\. -# /pageads/* (easylistchina+easylist.txt: 15198) -/(.*/)?pageads/.* -# /pageadimg/* (easylistchina+easylist.txt: 15197) -/(.*/)?pageadimg/.* -# /pagead? (easylistchina+easylist.txt: 15196) -/(.*/)?pagead\? -# /pagead46. (easylistchina+easylist.txt: 15195) -/(.*/)?pagead46\. -pagead46.*. -# /pagead2. (easylistchina+easylist.txt: 15194) -/(.*/)?pagead2\. -pagead2.*. -# /pagead/gen_ (easylistchina+easylist.txt: 15193) -/(.*/)?pagead/gen_ -# /pagead/ads? (easylistchina+easylist.txt: 15192) -/(.*/)?pagead/ads\? -# /page/ad/* (easylistchina+easylist.txt: 15191) -/(.*/)?page/ad/.* -# /page-peel (easylistchina+easylist.txt: 15190) -/(.*/)?page-peel -page-peel*. -# /page-ads. (easylistchina+easylist.txt: 15189) -/(.*/)?page-ads\. -page-ads.*. -# /p8network.js (easylistchina+easylist.txt: 15188) -/(.*/)?p8network\.js -p8network.js*. -# /p2ads/* (easylistchina+easylist.txt: 15187) -/(.*/)?p2ads/.* -# /p2/ads/* (easylistchina+easylist.txt: 15186) -/(.*/)?p2/ads/.* -# /p2-header-ad/* (easylistchina+easylist.txt: 15185) -/(.*/)?p2-header-ad/.* -# /p2-header-ad- (easylistchina+easylist.txt: 15184) -/(.*/)?p2-header-ad- -p2-header-ad-*. -# /ox_ultimate/www/* (easylistchina+easylist.txt: 15183) -/(.*/)?ox_ultimate/www/.* -# /ox/www/* (easylistchina+easylist.txt: 15182) -/(.*/)?ox/www/.* -# /ovt_show.asp? (easylistchina+easylist.txt: 15181) -/(.*/)?ovt_show\.asp\? -# /overture_ (easylistchina+easylist.txt: 15180) -/(.*/)?overture_ -# /overture/*$script,subdocument (easylistchina+easylist.txt: 15179) -/(.*/)?overture/.* -# /overture.$script,stylesheet (easylistchina+easylist.txt: 15178) -/(.*/)?overture\. -overture.*. -# /overlayads. (easylistchina+easylist.txt: 15177) -/(.*/)?overlayads\. -overlayads.*. -# /overlayad. (easylistchina+easylist.txt: 15176) -/(.*/)?overlayad\. -overlayad.*. -# /overlay_ad_ (easylistchina+easylist.txt: 15175) -/(.*/)?overlay_ad_ -# /overlay-ad. (easylistchina+easylist.txt: 15174) -/(.*/)?overlay-ad\. -overlay-ad.*. -# /outbrain-min. (easylistchina+easylist.txt: 15173) -/(.*/)?outbrain-min\. -outbrain-min.*. -# /other/ads/* (easylistchina+easylist.txt: 15172) -/(.*/)?other/ads/.* -# /origin-ad- (easylistchina+easylist.txt: 15171) -/(.*/)?origin-ad- -origin-ad-*. -# /orbitads. (easylistchina+easylist.txt: 15170) -/(.*/)?orbitads\. -orbitads.*. -# /opxads. (easylistchina+easylist.txt: 15169) -/(.*/)?opxads\. -opxads.*. -# /optonlineadcode. (easylistchina+easylist.txt: 15168) -/(.*/)?optonlineadcode\. -optonlineadcode.*. -# /openxtag. (easylistchina+easylist.txt: 15167) -/(.*/)?openxtag\. -openxtag.*. -# /openx_ (easylistchina+easylist.txt: 15166) -/(.*/)?openx_ -# /openx/* (easylistchina+easylist.txt: 15165) -/(.*/)?openx/.* -# /openx. (easylistchina+easylist.txt: 15164) -/(.*/)?openx\. -openx.*. -# /openx- (easylistchina+easylist.txt: 15163) -/(.*/)?openx- -openx-*. -# /openadserver/* (easylistchina+easylist.txt: 15162) -/(.*/)?openadserver/.* -# /openads_ (easylistchina+easylist.txt: 15161) -/(.*/)?openads_ -# /openads2/* (easylistchina+easylist.txt: 15160) -/(.*/)?openads2/.* -# /openads/* (easylistchina+easylist.txt: 15159) -/(.*/)?openads/.* -# /openads. (easylistchina+easylist.txt: 15158) -/(.*/)?openads\. -openads.*. -# /openads- (easylistchina+easylist.txt: 15157) -/(.*/)?openads- -openads-*. -# /openad. (easylistchina+easylist.txt: 15156) -/(.*/)?openad\. -openad.*. -# /ontopadvertising. (easylistchina+easylist.txt: 15155) -/(.*/)?ontopadvertising\. -ontopadvertising.*. -# /onplayerad. (easylistchina+easylist.txt: 15154) -/(.*/)?onplayerad\. -onplayerad.*. -# /onlineads/* (easylistchina+easylist.txt: 15153) -/(.*/)?onlineads/.* -# /online_ads/* (easylistchina+easylist.txt: 15152) -/(.*/)?online_ads/.* -# /online/ads/* (easylistchina+easylist.txt: 15151) -/(.*/)?online/ads/.* -# /onesheet-ad- (easylistchina+easylist.txt: 15150) -/(.*/)?onesheet-ad- -onesheet-ad-*. -# /onecam4ads. (easylistchina+easylist.txt: 15149) -/(.*/)?onecam4ads\. -onecam4ads.*. -# /onead. (easylistchina+easylist.txt: 15148) -/(.*/)?onead\. -onead.*. -# /ome.ads. (easylistchina+easylist.txt: 15147) -/(.*/)?ome\.ads\. -ome.ads.*. -# /omb-ad- (easylistchina+easylist.txt: 15146) -/(.*/)?omb-ad- -omb-ad-*. -# /old/ads- (easylistchina+easylist.txt: 15145) -/(.*/)?old/ads- -# /oiopub-direct/*$~stylesheet (easylistchina+easylist.txt: 15144) -/(.*/)?oiopub-direct/.* -# /oiopub-ads/* (easylistchina+easylist.txt: 15143) -/(.*/)?oiopub-ads/.* -# /oasx/* (easylistchina+easylist.txt: 15142) -/(.*/)?oasx/.* -# /oasisi. (easylistchina+easylist.txt: 15141) -/(.*/)?oasisi\. -oasisi.*. -# /oasisi- (easylistchina+easylist.txt: 15140) -/(.*/)?oasisi- -oasisi-*. -# /oasdefault/* (easylistchina+easylist.txt: 15139) -/(.*/)?oasdefault/.* -# /oascontroller. (easylistchina+easylist.txt: 15138) -/(.*/)?oascontroller\. -oascontroller.*. -# /oasconfig/* (easylistchina+easylist.txt: 15137) -/(.*/)?oasconfig/.* -# /oascentral/* (easylistchina+easylist.txt: 15136) -/(.*/)?oascentral/.* -# /oascentral.$~object-subrequest (easylistchina+easylist.txt: 15135) -/(.*/)?oascentral\. -oascentral.*. -# /oascache/* (easylistchina+easylist.txt: 15134) -/(.*/)?oascache/.* -# /oasbanner_ (easylistchina+easylist.txt: 15133) -/(.*/)?oasbanner_ -# /oasadfunctionlive. (easylistchina+easylist.txt: 15132) -/(.*/)?oasadfunctionlive\. -oasadfunctionlive.*. -# /oasadfunction. (easylistchina+easylist.txt: 15131) -/(.*/)?oasadfunction\. -oasadfunction.*. -# /oasadframe. (easylistchina+easylist.txt: 15130) -/(.*/)?oasadframe\. -oasadframe.*. -# /oasadconnector. (easylistchina+easylist.txt: 15129) -/(.*/)?oasadconnector\. -oasadconnector.*. -# /oas_mjx3. (easylistchina+easylist.txt: 15128) -/(.*/)?oas_mjx3\. -# /oas_mjx2. (easylistchina+easylist.txt: 15127) -/(.*/)?oas_mjx2\. -# /oas_mjx1. (easylistchina+easylist.txt: 15126) -/(.*/)?oas_mjx1\. -# /oas_mjx. (easylistchina+easylist.txt: 15125) -/(.*/)?oas_mjx\. -# /oas_home_ (easylistchina+easylist.txt: 15124) -/(.*/)?oas_home_ -# /oas_handler. (easylistchina+easylist.txt: 15123) -/(.*/)?oas_handler\. -# /oas_ads. (easylistchina+easylist.txt: 15122) -/(.*/)?oas_ads\. -# /oas_ad_ (easylistchina+easylist.txt: 15121) -/(.*/)?oas_ad_ -# /oas_ad/* (easylistchina+easylist.txt: 15120) -/(.*/)?oas_ad/.* -# /oas_ad. (easylistchina+easylist.txt: 15119) -/(.*/)?oas_ad\. -# /OAS/show? (easylistchina+easylist.txt: 15118) -/(.*/)?OAS/show\? -# /oas/oas- (easylistchina+easylist.txt: 15117) -/(.*/)?oas/oas- -# /oas/iframe. (easylistchina+easylist.txt: 15116) -/(.*/)?oas/iframe\. -# /oas/banners/* (easylistchina+easylist.txt: 15115) -/(.*/)?oas/banners/.* -# /oas/ad/* (easylistchina+easylist.txt: 15114) -/(.*/)?oas/ad/.* -# /oas.js (easylistchina+easylist.txt: 15113) -/(.*/)?oas\.js -oas.js*. -# /oas.aspx (easylistchina+easylist.txt: 15112) -/(.*/)?oas\.aspx -oas.aspx*. -# /oas-config. (easylistchina+easylist.txt: 15111) -/(.*/)?oas-config\. -oas-config.*. -# /o2contentad. (easylistchina+easylist.txt: 15110) -/(.*/)?o2contentad\. -o2contentad.*. -# /o2ad. (easylistchina+easylist.txt: 15109) -/(.*/)?o2ad\. -o2ad.*. -# /nymag_ads_ (easylistchina+easylist.txt: 15108) -/(.*/)?nymag_ads_ -# /nymag_ads. (easylistchina+easylist.txt: 15107) -/(.*/)?nymag_ads\. -# /nsfw/sponsors/* (easylistchina+easylist.txt: 15106) -/(.*/)?nsfw/sponsors/.* -# /noticead. (easylistchina+easylist.txt: 15105) -/(.*/)?noticead\. -noticead.*. -# /noodleAdFramed. (easylistchina+easylist.txt: 15104) -/(.*/)?noodleAdFramed\. -noodleAdFramed.*. -# /nonrotatingads/* (easylistchina+easylist.txt: 15103) -/(.*/)?nonrotatingads/.* -# /no_ads. (easylistchina+easylist.txt: 15102) -/(.*/)?no_ads\. -# /nflads. (easylistchina+easylist.txt: 15101) -/(.*/)?nflads\. -nflads.*. -# /nextad/* (easylistchina+easylist.txt: 15100) -/(.*/)?nextad/.* -# /newtopmsgad. (easylistchina+easylist.txt: 15099) -/(.*/)?newtopmsgad\. -newtopmsgad.*. -# /newsmaxadcontrol. (easylistchina+easylist.txt: 15098) -/(.*/)?newsmaxadcontrol\. -newsmaxadcontrol.*. -# /newsletters/ads/* (easylistchina+easylist.txt: 15097) -/(.*/)?newsletters/ads/.* -# /newsletterads/* (easylistchina+easylist.txt: 15096) -/(.*/)?newsletterads/.* -# /newsite/ads/* (easylistchina+easylist.txt: 15095) -/(.*/)?newsite/ads/.* -# /news_ad. (easylistchina+easylist.txt: 15094) -/(.*/)?news_ad\. -# /news/ads/* (easylistchina+easylist.txt: 15093) -/(.*/)?news/ads/.* -# /newrightcolad. (easylistchina+easylist.txt: 15092) -/(.*/)?newrightcolad\. -newrightcolad.*. -# /newimplugs. (easylistchina+easylist.txt: 15091) -/(.*/)?newimplugs\. -newimplugs.*. -# /newimages/ads/* (easylistchina+easylist.txt: 15090) -/(.*/)?newimages/ads/.* -# /newdesign/ad/* (easylistchina+easylist.txt: 15089) -/(.*/)?newdesign/ad/.* -# /newaff/float (easylistchina+easylist.txt: 15088) -/(.*/)?newaff/float -# /newadvert/* (easylistchina+easylist.txt: 15087) -/(.*/)?newadvert/.* -# /newadv/* (easylistchina+easylist.txt: 15086) -/(.*/)?newadv/.* -# /newads/* (easylistchina+easylist.txt: 15085) -/(.*/)?newads/.* -# /newads. (easylistchina+easylist.txt: 15084) -/(.*/)?newads\. -newads.*. -# /newad? (easylistchina+easylist.txt: 15083) -/(.*/)?newad\? -# /newad2? (easylistchina+easylist.txt: 15082) -/(.*/)?newad2\? -# /newad. (easylistchina+easylist.txt: 15081) -/(.*/)?newad\. -newad.*. -# /new_oas. (easylistchina+easylist.txt: 15080) -/(.*/)?new_oas\. -# /new_ads/* (easylistchina+easylist.txt: 15079) -/(.*/)?new_ads/.* -# /new/ads/* (easylistchina+easylist.txt: 15078) -/(.*/)?new/ads/.* -# /new/ad/* (easylistchina+easylist.txt: 15077) -/(.*/)?new/ad/.* -# /new-ads/* (easylistchina+easylist.txt: 15076) -/(.*/)?new-ads/.* -# /neudesicad. (easylistchina+easylist.txt: 15075) -/(.*/)?neudesicad\. -neudesicad.*. -# /network_ad. (easylistchina+easylist.txt: 15074) -/(.*/)?network_ad\. -# /netspiderads3. (easylistchina+easylist.txt: 15073) -/(.*/)?netspiderads3\. -netspiderads3.*. -# /netspiderads2. (easylistchina+easylist.txt: 15072) -/(.*/)?netspiderads2\. -netspiderads2.*. -# /netshelter/* (easylistchina+easylist.txt: 15071) -/(.*/)?netshelter/.* -# /netseerads. (easylistchina+easylist.txt: 15070) -/(.*/)?netseerads\. -netseerads.*. -# /netreachtextads/* (easylistchina+easylist.txt: 15069) -/(.*/)?netreachtextads/.* -# /netads. (easylistchina+easylist.txt: 15068) -/(.*/)?netads\. -netads.*. -# /neoads. (easylistchina+easylist.txt: 15067) -/(.*/)?neoads\. -neoads.*. -# /neo/ads/* (easylistchina+easylist.txt: 15066) -/(.*/)?neo/ads/.* -# /nd_affiliate. (easylistchina+easylist.txt: 15065) -/(.*/)?nd_affiliate\. -# /nbcuadops- (easylistchina+easylist.txt: 15064) -/(.*/)?nbcuadops- -nbcuadops-*. -# /navads/* (easylistchina+easylist.txt: 15063) -/(.*/)?navads/.* -# /navad/* (easylistchina+easylist.txt: 15062) -/(.*/)?navad/.* -# /nativeads/* (easylistchina+easylist.txt: 15061) -/(.*/)?nativeads/.* -# /nativeads- (easylistchina+easylist.txt: 15060) -/(.*/)?nativeads- -nativeads-*. -# /namediaad. (easylistchina+easylist.txt: 15059) -/(.*/)?namediaad\. -namediaad.*. -# /n_ads/* (easylistchina+easylist.txt: 15058) -/(.*/)?n_ads/.* -# /n4403ad. (easylistchina+easylist.txt: 15057) -/(.*/)?n4403ad\. -n4403ad.*. -# /n/adv_ (easylistchina+easylist.txt: 15056) -/(.*/)?n/adv_ -# /mysimpleads/* (easylistchina+easylist.txt: 15055) -/(.*/)?mysimpleads/.* -# /mylayer-ad/* (easylistchina+easylist.txt: 15054) -/(.*/)?mylayer-ad/.* -# /myfreepaysitebanner. (easylistchina+easylist.txt: 15053) -/(.*/)?myfreepaysitebanner\. -myfreepaysitebanner.*. -# /myads/* (easylistchina+easylist.txt: 15051) -/(.*/)?myads/.* -# /my-ad-integration. (easylistchina+easylist.txt: 15050) -/(.*/)?my-ad-integration\. -my-ad-integration.*. -# /my-ad-injector/* (easylistchina+easylist.txt: 15049) -/(.*/)?my-ad-injector/.* -# /multiad/* (easylistchina+easylist.txt: 15048) -/(.*/)?multiad/.* -# /mtvi_ads_ (easylistchina+easylist.txt: 15047) -/(.*/)?mtvi_ads_ -# /MTA-Ad- (easylistchina+easylist.txt: 15046) -/(.*/)?MTA-Ad- -MTA-Ad-*. -# /mstextad? (easylistchina+easylist.txt: 15045) -/(.*/)?mstextad\? -# /msnpopup4. (easylistchina+easylist.txt: 15044) -/(.*/)?msnpopup4\. -msnpopup4.*. -# /msnpopup. (easylistchina+easylist.txt: 15043) -/(.*/)?msnpopup\. -msnpopup.*. -# /msnpopsingle2. (easylistchina+easylist.txt: 15042) -/(.*/)?msnpopsingle2\. -msnpopsingle2.*. -# /msnpop. (easylistchina+easylist.txt: 15041) -/(.*/)?msnpop\. -msnpop.*. -# /msnads1. (easylistchina+easylist.txt: 15040) -/(.*/)?msnads1\. -msnads1.*. -# /msnads/* (easylistchina+easylist.txt: 15039) -/(.*/)?msnads/.* -# /msnadimg. (easylistchina+easylist.txt: 15038) -/(.*/)?msnadimg\. -msnadimg.*. -# /msn-exo- (easylistchina+easylist.txt: 15037) -/(.*/)?msn-exo- -msn-exo-*. -# /msn-1.js (easylistchina+easylist.txt: 15036) -/(.*/)?msn-1\.js -msn-1.js*. -# /msgads. (easylistchina+easylist.txt: 15035) -/(.*/)?msgads\. -msgads.*. -# /mrskinleftside. (easylistchina+easylist.txt: 15034) -/(.*/)?mrskinleftside\. -mrskinleftside.*. -# /mpumessage. (easylistchina+easylist.txt: 15033) -/(.*/)?mpumessage\. -mpumessage.*. -# /mpuguardian. (easylistchina+easylist.txt: 15032) -/(.*/)?mpuguardian\. -mpuguardian.*. -# /mpuad. (easylistchina+easylist.txt: 15031) -/(.*/)?mpuad\. -mpuad.*. -# /mpu-dm.htm (easylistchina+easylist.txt: 15030) -/(.*/)?mpu-dm\.htm -mpu-dm.htm*. -# /mpads/* (easylistchina+easylist.txt: 15029) -/(.*/)?mpads/.* -# /moneyball/ads/* (easylistchina+easylist.txt: 15028) -/(.*/)?moneyball/ads/.* -# /momsads. (easylistchina+easylist.txt: 15027) -/(.*/)?momsads\. -momsads.*. -# /modules_ads. (easylistchina+easylist.txt: 15026) -/(.*/)?modules_ads\. -# /modules/doubleclick/* (easylistchina+easylist.txt: 15025) -/(.*/)?modules/doubleclick/.* -# /modules/adv/* (easylistchina+easylist.txt: 15024) -/(.*/)?modules/adv/.* -# /modules/ads/* (easylistchina+easylist.txt: 15023) -/(.*/)?modules/ads/.* -# /modules/ad_ (easylistchina+easylist.txt: 15022) -/(.*/)?modules/ad_ -# /modules/ad/* (easylistchina+easylist.txt: 15021) -/(.*/)?modules/ad/.* -# /module/ads/* (easylistchina+easylist.txt: 15020) -/(.*/)?module/ads/.* -# /module-ads/* (easylistchina+easylist.txt: 15019) -/(.*/)?module-ads/.* -# /modalad. (easylistchina+easylist.txt: 15018) -/(.*/)?modalad\. -modalad.*. -# /mod_pagepeel_banner/* (easylistchina+easylist.txt: 15017) -/(.*/)?mod_pagepeel_banner/.* -# /mod_ad/* (easylistchina+easylist.txt: 15016) -/(.*/)?mod_ad/.* -# /mobilephonesad/* (easylistchina+easylist.txt: 15015) -/(.*/)?mobilephonesad/.* -# /mobileads/* (easylistchina+easylist.txt: 15014) -/(.*/)?mobileads/.* -# /mobileads. (easylistchina+easylist.txt: 15013) -/(.*/)?mobileads\. -mobileads.*. -# /mobile_ad/* (easylistchina+easylist.txt: 15012) -/(.*/)?mobile_ad/.* -# /mobile_ad. (easylistchina+easylist.txt: 15011) -/(.*/)?mobile_ad\. -# /mobile-ad. (easylistchina+easylist.txt: 15010) -/(.*/)?mobile-ad\. -mobile-ad.*. -# /mnads1. (easylistchina+easylist.txt: 15009) -/(.*/)?mnads1\. -mnads1.*. -# /mmt_ad. (easylistchina+easylist.txt: 15008) -/(.*/)?mmt_ad\. -# /mmsAds. (easylistchina+easylist.txt: 15007) -/(.*/)?mmsAds\. -mmsAds.*. -# /ml9pagepeel. (easylistchina+easylist.txt: 15006) -/(.*/)?ml9pagepeel\. -ml9pagepeel.*. -# /mktad. (easylistchina+easylist.txt: 15005) -/(.*/)?mktad\. -mktad.*. -# /mkadsrv. (easylistchina+easylist.txt: 15004) -/(.*/)?mkadsrv\. -mkadsrv.*. -# /mjx-oas. (easylistchina+easylist.txt: 15003) -/(.*/)?mjx-oas\. -mjx-oas.*. -# /MixBerryAdsProduction/* (easylistchina+easylist.txt: 15002) -/(.*/)?MixBerryAdsProduction/.* -# /miva_ads. (easylistchina+easylist.txt: 15001) -/(.*/)?miva_ads\. -# /misc/ads/* (easylistchina+easylist.txt: 15000) -/(.*/)?misc/ads/.* -# /misc/ads. (easylistchina+easylist.txt: 14999) -/(.*/)?misc/ads\. -# /misc/ad- (easylistchina+easylist.txt: 14998) -/(.*/)?misc/ad- -# /mint/ads/* (easylistchina+easylist.txt: 14997) -/(.*/)?mint/ads/.* -# /minpagead/* (easylistchina+easylist.txt: 14996) -/(.*/)?minpagead/.* -# /minify/ads- (easylistchina+easylist.txt: 14995) -/(.*/)?minify/ads- -# /miniadvert. (easylistchina+easylist.txt: 14994) -/(.*/)?miniadvert\. -miniadvert.*. -# /miniads? (easylistchina+easylist.txt: 14993) -/(.*/)?miniads\? -# /miniadbar/* (easylistchina+easylist.txt: 14992) -/(.*/)?miniadbar/.* -# /mini_ads. (easylistchina+easylist.txt: 14991) -/(.*/)?mini_ads\. -# /mini-ads/* (easylistchina+easylist.txt: 14990) -/(.*/)?mini-ads/.* -# /min/ads/* (easylistchina+easylist.txt: 14989) -/(.*/)?min/ads/.* -# /middleads. (easylistchina+easylist.txt: 14988) -/(.*/)?middleads\. -middleads.*. -# /middle_adv_ (easylistchina+easylist.txt: 14987) -/(.*/)?middle_adv_ -# /microsofttag/* (easylistchina+easylist.txt: 14986) -/(.*/)?microsofttag/.* -# /microads/* (easylistchina+easylist.txt: 14985) -/(.*/)?microads/.* -# /microad. (easylistchina+easylist.txt: 14984) -/(.*/)?microad\. -microad.*. -# /mgid.html (easylistchina+easylist.txt: 14983) -/(.*/)?mgid\.html -mgid.html*. -# /mgid-header. (easylistchina+easylist.txt: 14982) -/(.*/)?mgid-header\. -mgid-header.*. -# /mgid-ad- (easylistchina+easylist.txt: 14981) -/(.*/)?mgid-ad- -mgid-ad-*. -# /metsbanner. (easylistchina+easylist.txt: 14980) -/(.*/)?metsbanner\. -metsbanner.*. -# /metaadserver/* (easylistchina+easylist.txt: 14979) -/(.*/)?metaadserver/.* -# /metaad. (easylistchina+easylist.txt: 14978) -/(.*/)?metaad\. -metaad.*. -# /meme_ad. (easylistchina+easylist.txt: 14977) -/(.*/)?meme_ad\. -# /megaad. (easylistchina+easylist.txt: 14976) -/(.*/)?megaad\. -megaad.*. -# /media_ads/* (easylistchina+easylist.txt: 14975) -/(.*/)?media_ads/.* -# /media/adv/* (easylistchina+easylist.txt: 14974) -/(.*/)?media/adv/.* -# /media/ads/* (easylistchina+easylist.txt: 14973) -/(.*/)?media/ads/.* -# /media/ad/* (easylistchina+easylist.txt: 14972) -/(.*/)?media/ad/.* -# /mDialogAdModule. (easylistchina+easylist.txt: 14971) -/(.*/)?mDialogAdModule\. -mDialogAdModule.*. -# /mda-ads/* (easylistchina+easylist.txt: 14970) -/(.*/)?mda-ads/.* -# /mcad.php (easylistchina+easylist.txt: 14969) -/(.*/)?mcad\.php -mcad.php*. -# /mbn_ad. (easylistchina+easylist.txt: 14968) -/(.*/)?mbn_ad\. -# /mbads? (easylistchina+easylist.txt: 14967) -/(.*/)?mbads\? -# /maxi_ad. (easylistchina+easylist.txt: 14966) -/(.*/)?maxi_ad\. -# /maxadselect. (easylistchina+easylist.txt: 14965) -/(.*/)?maxadselect\. -maxadselect.*. -# /match_ads. (easylistchina+easylist.txt: 14964) -/(.*/)?match_ads\. -# /masterad. (easylistchina+easylist.txt: 14963) -/(.*/)?masterad\. -masterad.*. -# /masonad.gif (easylistchina+easylist.txt: 14962) -/(.*/)?masonad\.gif -masonad.gif*. -# /markpop.js (easylistchina+easylist.txt: 14961) -/(.*/)?markpop\.js -markpop.js*. -# /marketing/banners_ (easylistchina+easylist.txt: 14960) -/(.*/)?marketing/banners_ -# /marketing/banners/* (easylistchina+easylist.txt: 14959) -/(.*/)?marketing/banners/.* -# /marketing-banners/* (easylistchina+easylist.txt: 14958) -/(.*/)?marketing-banners/.* -# /marginaleadservlet? (easylistchina+easylist.txt: 14957) -/(.*/)?marginaleadservlet\? -# /mapquest/Ads/* (easylistchina+easylist.txt: 14956) -/(.*/)?mapquest/Ads/.* -# /mainpagepopupadv1. (easylistchina+easylist.txt: 14955) -/(.*/)?mainpagepopupadv1\. -mainpagepopupadv1.*. -# /mainad. (easylistchina+easylist.txt: 14954) -/(.*/)?mainad\. -mainad.*. -# /main_ad_ (easylistchina+easylist.txt: 14953) -/(.*/)?main_ad_ -# /main_ad/* (easylistchina+easylist.txt: 14952) -/(.*/)?main_ad/.* -# /main_ad. (easylistchina+easylist.txt: 14951) -/(.*/)?main_ad\. -# /main/ads/* (easylistchina+easylist.txt: 14950) -/(.*/)?main/ads/.* -# /main/ad_ (easylistchina+easylist.txt: 14949) -/(.*/)?main/ad_ -# /main/ad/* (easylistchina+easylist.txt: 14948) -/(.*/)?main/ad/.* -# /magic-ads/* (easylistchina+easylist.txt: 14947) -/(.*/)?magic-ads/.* -# /magic-ad/* (easylistchina+easylist.txt: 14946) -/(.*/)?magic-ad/.* -# /magazine/ads. (easylistchina+easylist.txt: 14945) -/(.*/)?magazine/ads\. -# /mad_ad. (easylistchina+easylist.txt: 14944) -/(.*/)?mad_ad\. -# /mad.aspx? (easylistchina+easylist.txt: 14943) -/(.*/)?mad\.aspx\? -# /mac-ad? (easylistchina+easylist.txt: 14942) -/(.*/)?mac-ad\? -# /m0ar_ads. (easylistchina+easylist.txt: 14941) -/(.*/)?m0ar_ads\. -# /lrec_ad. (easylistchina+easylist.txt: 14940) -/(.*/)?lrec_ad\. -# /lotto_ad_ (easylistchina+easylist.txt: 14939) -/(.*/)?lotto_ad_ -# /logoutad. (easylistchina+easylist.txt: 14938) -/(.*/)?logoutad\. -logoutad.*. -# /logoads. (easylistchina+easylist.txt: 14937) -/(.*/)?logoads\. -logoads.*. -# /logo-ads. (easylistchina+easylist.txt: 14936) -/(.*/)?logo-ads\. -logo-ads.*. -# /logad? (easylistchina+easylist.txt: 14935) -/(.*/)?logad\? -# /log_ad_ (easylistchina+easylist.txt: 14934) -/(.*/)?log_ad_ -# /log_ad? (easylistchina+easylist.txt: 14933) -/(.*/)?log_ad\? -# /locker.php?pub=*&gateid=$script (easylistchina+easylist.txt: 14932) -/(.*/)?locker\.php\?pub=.*&gateid= -# /localcom-ad- (easylistchina+easylist.txt: 14931) -/(.*/)?localcom-ad- -localcom-ad-*. -# /localads. (easylistchina+easylist.txt: 14930) -/(.*/)?localads\. -localads.*. -# /LocalAdNet/* (easylistchina+easylist.txt: 14929) -/(.*/)?LocalAdNet/.* -# /localAdData/* (easylistchina+easylist.txt: 14928) -/(.*/)?localAdData/.* -# /LocalAd_ (easylistchina+easylist.txt: 14927) -/(.*/)?LocalAd_ -# /localAd/* (easylistchina+easylist.txt: 14926) -/(.*/)?localAd/.* -# /local_ads_ (easylistchina+easylist.txt: 14925) -/(.*/)?local_ads_ -# /loadTargetUrl? (easylistchina+easylist.txt: 14924) -/(.*/)?loadTargetUrl\? -# /loading_ads. (easylistchina+easylist.txt: 14923) -/(.*/)?loading_ads\. -# /loadadwiz. (easylistchina+easylist.txt: 14922) -/(.*/)?loadadwiz\. -loadadwiz.*. -# /loadadsparam. (easylistchina+easylist.txt: 14921) -/(.*/)?loadadsparam\. -loadadsparam.*. -# /loadadsmainparam. (easylistchina+easylist.txt: 14920) -/(.*/)?loadadsmainparam\. -loadadsmainparam.*. -# /loadadsmain. (easylistchina+easylist.txt: 14919) -/(.*/)?loadadsmain\. -loadadsmain.*. -# /loadads/* (easylistchina+easylist.txt: 14918) -/(.*/)?loadads/.* -# /loadads. (easylistchina+easylist.txt: 14917) -/(.*/)?loadads\. -loadads.*. -# /loadad.aspx? (easylistchina+easylist.txt: 14916) -/(.*/)?loadad\.aspx\? -# /load_ad? (easylistchina+easylist.txt: 14915) -/(.*/)?load_ad\? -# /load-ads| (easylistchina+easylist.txt: 14914) -/(.*/)?load-ads$ -# /livejasmine05. (easylistchina+easylist.txt: 14913) -/(.*/)?livejasmine05\. -livejasmine05.*. -# /livejasmine03. (easylistchina+easylist.txt: 14912) -/(.*/)?livejasmine03\. -livejasmine03.*. -# /livejasmin_ (easylistchina+easylist.txt: 14911) -/(.*/)?livejasmin_ -# /livejasmin2. (easylistchina+easylist.txt: 14910) -/(.*/)?livejasmin2\. -livejasmin2.*. -# /livejasmin/*&id= (easylistchina+easylist.txt: 14909) -/(.*/)?livejasmin/.*&id= -# /livejasmin. (easylistchina+easylist.txt: 14908) -/(.*/)?livejasmin\. -livejasmin.*. -# /liveads. (easylistchina+easylist.txt: 14907) -/(.*/)?liveads\. -liveads.*. -# /livead- (easylistchina+easylist.txt: 14906) -/(.*/)?livead- -livead-*. -# /live_ad. (easylistchina+easylist.txt: 14905) -/(.*/)?live_ad\. -# /links_sponsored_ (easylistchina+easylist.txt: 14904) -/(.*/)?links_sponsored_ -# /linkedads/* (easylistchina+easylist.txt: 14903) -/(.*/)?linkedads/.* -# /linkadv_ (easylistchina+easylist.txt: 14902) -/(.*/)?linkadv_ -# /linkadv. (easylistchina+easylist.txt: 14901) -/(.*/)?linkadv\. -linkadv.*. -# /linkads. (easylistchina+easylist.txt: 14900) -/(.*/)?linkads\. -linkads.*. -# /linkad2. (easylistchina+easylist.txt: 14899) -/(.*/)?linkad2\. -linkad2.*. -# /lijitads. (easylistchina+easylist.txt: 14898) -/(.*/)?lijitads\. -lijitads.*. -# /lijit-ad- (easylistchina+easylist.txt: 14897) -/(.*/)?lijit-ad- -lijit-ad-*. -# /lightboxbannerad^ (easylistchina+easylist.txt: 14896) -/(.*/)?lightboxbannerad[^\w%.-] -# /lightboxad^ (easylistchina+easylist.txt: 14895) -/(.*/)?lightboxad[^\w%.-] -# /lightad. (easylistchina+easylist.txt: 14894) -/(.*/)?lightad\. -lightad.*. -# /lifeshowad/* (easylistchina+easylist.txt: 14893) -/(.*/)?lifeshowad/.* -# /library/ads/* (easylistchina+easylist.txt: 14892) -/(.*/)?library/ads/.* -# /lib/ad.js (easylistchina+easylist.txt: 14891) -/(.*/)?lib/ad\.js -# /lg.php?adid= (easylistchina+easylist.txt: 14890) -/(.*/)?lg\.php\?adid= -# /leftsidebarads. (easylistchina+easylist.txt: 14889) -/(.*/)?leftsidebarads\. -leftsidebarads.*. -# /leftads. (easylistchina+easylist.txt: 14888) -/(.*/)?leftads\. -leftads.*. -# /leftad_ (easylistchina+easylist.txt: 14887) -/(.*/)?leftad_ -# /leftad. (easylistchina+easylist.txt: 14886) -/(.*/)?leftad\. -leftad.*. -# /left_ads. (easylistchina+easylist.txt: 14885) -/(.*/)?left_ads\. -# /left_ad_ (easylistchina+easylist.txt: 14884) -/(.*/)?left_ad_ -# /left-ads. (easylistchina+easylist.txt: 14883) -/(.*/)?left-ads\. -left-ads.*. -# /ledad. (easylistchina+easylist.txt: 14882) -/(.*/)?ledad\. -ledad.*. -# /leaderboardads. (easylistchina+easylist.txt: 14881) -/(.*/)?leaderboardads\. -leaderboardads.*. -# /leaderboardadblock. (easylistchina+easylist.txt: 14880) -/(.*/)?leaderboardadblock\. -leaderboardadblock.*. -# /leaderboardad. (easylistchina+easylist.txt: 14879) -/(.*/)?leaderboardad\. -leaderboardad.*. -# /leaderboard_adv/* (easylistchina+easylist.txt: 14878) -/(.*/)?leaderboard_adv/.* -# /leaderboard_ad/* (easylistchina+easylist.txt: 14877) -/(.*/)?leaderboard_ad/.* -# /leaderboard-advert. (easylistchina+easylist.txt: 14876) -/(.*/)?leaderboard-advert\. -leaderboard-advert.*. -# /leaderad. (easylistchina+easylist.txt: 14875) -/(.*/)?leaderad\. -leaderad.*. -# /leader_ad. (easylistchina+easylist.txt: 14874) -/(.*/)?leader_ad\. -# /leadads/* (easylistchina+easylist.txt: 14873) -/(.*/)?leadads/.* -# /lbl_ad. (easylistchina+easylist.txt: 14872) -/(.*/)?lbl_ad\. -# /lazyad. (easylistchina+easylist.txt: 14871) -/(.*/)?lazyad\. -lazyad.*. -# /layout/ads/* (easylistchina+easylist.txt: 14870) -/(.*/)?layout/ads/.* -# /layout/ad. (easylistchina+easylist.txt: 14869) -/(.*/)?layout/ad\. -# /layout.inc.php?img (easylistchina+easylist.txt: 14868) -/(.*/)?layout\.inc\.php\?img -# /layerads_ (easylistchina+easylist.txt: 14867) -/(.*/)?layerads_ -# /layerads. (easylistchina+easylist.txt: 14866) -/(.*/)?layerads\. -layerads.*. -# /layerads- (easylistchina+easylist.txt: 14865) -/(.*/)?layerads- -layerads-*. -# /LayerAd^ (easylistchina+easylist.txt: 14864) -/(.*/)?LayerAd[^\w%.-] -# /layerad. (easylistchina+easylist.txt: 14863) -/(.*/)?layerad\. -layerad.*. -# /layerad- (easylistchina+easylist.txt: 14862) -/(.*/)?layerad- -layerad-*. -# /layer_ad? (easylistchina+easylist.txt: 14861) -/(.*/)?layer_ad\? -# /layer160x600. (easylistchina+easylist.txt: 14860) -/(.*/)?layer160x600\. -layer160x600.*. -# /layer/ads. (easylistchina+easylist.txt: 14859) -/(.*/)?layer/ads\. -# /layer/ad. (easylistchina+easylist.txt: 14858) -/(.*/)?layer/ad\. -# /layer.php?bid= (easylistchina+easylist.txt: 14857) -/(.*/)?layer\.php\?bid= -# /layer-advert- (easylistchina+easylist.txt: 14856) -/(.*/)?layer-advert- -layer-advert-*. -# /layer-ads. (easylistchina+easylist.txt: 14855) -/(.*/)?layer-ads\. -layer-ads.*. -# /layer-ad. (easylistchina+easylist.txt: 14854) -/(.*/)?layer-ad\. -layer-ad.*. -# /layad. (easylistchina+easylist.txt: 14853) -/(.*/)?layad\. -layad.*. -# /large_ads/* (easylistchina+easylist.txt: 14852) -/(.*/)?large_ads/.* -# /landingadvertisements/* (easylistchina+easylist.txt: 14851) -/(.*/)?landingadvertisements/.* -# /landerbanners/* (easylistchina+easylist.txt: 14850) -/(.*/)?landerbanners/.* -# /kskads. (easylistchina+easylist.txt: 14849) -/(.*/)?kskads\. -kskads.*. -# /kredit-ad. (easylistchina+easylist.txt: 14848) -/(.*/)?kredit-ad\. -kredit-ad.*. -# /kogeePopupAd. (easylistchina+easylist.txt: 14847) -/(.*/)?kogeePopupAd\. -kogeePopupAd.*. -# /keyword_ad. (easylistchina+easylist.txt: 14846) -/(.*/)?keyword_ad\. -# /keyade.js (easylistchina+easylist.txt: 14845) -/(.*/)?keyade\.js -keyade.js*. -# /kantarmedia. (easylistchina+easylist.txt: 14844) -/(.*/)?kantarmedia\. -kantarmedia.*. -# /kampyle.js (easylistchina+easylist.txt: 14843) -/(.*/)?kampyle\.js -kampyle.js*. -# /KalahariAds. (easylistchina+easylist.txt: 14842) -/(.*/)?KalahariAds\. -KalahariAds.*. -# /kaksvpopup. (easylistchina+easylist.txt: 14841) -/(.*/)?kaksvpopup\. -kaksvpopup.*. -# /k_ads/* (easylistchina+easylist.txt: 14840) -/(.*/)?k_ads/.* -# /jumpstartunpaidad. (easylistchina+easylist.txt: 14839) -/(.*/)?jumpstartunpaidad\. -jumpstartunpaidad.*. -# /juicyads_ (easylistchina+easylist.txt: 14838) -/(.*/)?juicyads_ -# /jtcashbanners/* (easylistchina+easylist.txt: 14837) -/(.*/)?jtcashbanners/.* -# /jsVideoPopAd. (easylistchina+easylist.txt: 14836) -/(.*/)?jsVideoPopAd\. -jsVideoPopAd.*. -# /jstextad. (easylistchina+easylist.txt: 14835) -/(.*/)?jstextad\. -jstextad.*. -# /jspopunder. (easylistchina+easylist.txt: 14834) -/(.*/)?jspopunder\. -jspopunder.*. -# /jsplayerads- (easylistchina+easylist.txt: 14833) -/(.*/)?jsplayerads- -jsplayerads-*. -# /json/ad/* (easylistchina+easylist.txt: 14832) -/(.*/)?json/ad/.* -# /jsfiles/ads/* (easylistchina+easylist.txt: 14831) -/(.*/)?jsfiles/ads/.* -# /jsc/ads. (easylistchina+easylist.txt: 14830) -/(.*/)?jsc/ads\. -# /jsadscripts/* (easylistchina+easylist.txt: 14829) -/(.*/)?jsadscripts/.* -# /jsAds/* (easylistchina+easylist.txt: 14828) -/(.*/)?jsAds/.* -# /jsads- (easylistchina+easylist.txt: 14827) -/(.*/)?jsads- -jsads-*. -# /jsad/* (easylistchina+easylist.txt: 14826) -/(.*/)?jsad/.* -# /jsad.php (easylistchina+easylist.txt: 14825) -/(.*/)?jsad\.php -jsad.php*. -# /js_adv_ (easylistchina+easylist.txt: 14824) -/(.*/)?js_adv_ -# /js_ads_ (easylistchina+easylist.txt: 14823) -/(.*/)?js_ads_ -# /js_ads/* (easylistchina+easylist.txt: 14822) -/(.*/)?js_ads/.* -# /js_ad_utf8. (easylistchina+easylist.txt: 14821) -/(.*/)?js_ad_utf8\. -# /js2.ad/size= (easylistchina+easylist.txt: 14820) -/(.*/)?js2\.ad/size= -js2.ad/size= -# /js/youmuffpu.js (easylistchina+easylist.txt: 14819) -/(.*/)?js/youmuffpu\.js -# /js/ppu.$script (easylistchina+easylist.txt: 14818) -/(.*/)?js/ppu\. -# /js/oas. (easylistchina+easylist.txt: 14817) -/(.*/)?js/oas\. -# /js/oas- (easylistchina+easylist.txt: 14816) -/(.*/)?js/oas- -# /js/doubleclick/* (easylistchina+easylist.txt: 14815) -/(.*/)?js/doubleclick/.* -# /js/adv/* (easylistchina+easylist.txt: 14814) -/(.*/)?js/adv/.* -# /js/adv. (easylistchina+easylist.txt: 14813) -/(.*/)?js/adv\. -# /js/ads_ (easylistchina+easylist.txt: 14812) -/(.*/)?js/ads_ -# /js/ads. (easylistchina+easylist.txt: 14811) -/(.*/)?js/ads\. -# /js/ads- (easylistchina+easylist.txt: 14810) -/(.*/)?js/ads- -# /js.ng/size= (easylistchina+easylist.txt: 14809) -/(.*/)?js\.ng/size= -js.ng/size= -# /js.ng/site= (easylistchina+easylist.txt: 14808) -/(.*/)?js\.ng/site= -js.ng/site= -# /js.ng/pagepos= (easylistchina+easylist.txt: 14807) -/(.*/)?js\.ng/pagepos= -js.ng/pagepos= -# /js.ng/channel_ (easylistchina+easylist.txt: 14806) -/(.*/)?js\.ng/channel_ -js.ng/channel_ -# /js.ng/cat= (easylistchina+easylist.txt: 14805) -/(.*/)?js\.ng/cat= -js.ng/cat= -# /js.ad/size= (easylistchina+easylist.txt: 14804) -/(.*/)?js\.ad/size= -js.ad/size= -# /jqueryadvertising. (easylistchina+easylist.txt: 14803) -/(.*/)?jqueryadvertising\. -jqueryadvertising.*. -# /jquery_FOR_AD/* (easylistchina+easylist.txt: 14802) -/(.*/)?jquery_FOR_AD/.* -# /jquery/ad. (easylistchina+easylist.txt: 14801) -/(.*/)?jquery/ad\. -# /jquery.adx. (easylistchina+easylist.txt: 14800) -/(.*/)?jquery\.adx\. -jquery.adx.*. -# /jquery-ads. (easylistchina+easylist.txt: 14799) -/(.*/)?jquery-ads\. -jquery-ads.*. -# /jqads. (easylistchina+easylist.txt: 14798) -/(.*/)?jqads\. -jqads.*. -# /JPlayerAdFoxAdvertisementPlugin. (easylistchina+easylist.txt: 14797) -/(.*/)?JPlayerAdFoxAdvertisementPlugin\. -JPlayerAdFoxAdvertisementPlugin.*. -# /jlist-affiliates/* (easylistchina+easylist.txt: 14796) -/(.*/)?jlist-affiliates/.* -# /jivoxadplayer. (easylistchina+easylist.txt: 14795) -/(.*/)?jivoxadplayer\. -jivoxadplayer.*. -# /jitads. (easylistchina+easylist.txt: 14794) -/(.*/)?jitads\. -jitads.*. -# /jcorner.php?partner= (easylistchina+easylist.txt: 14793) -/(.*/)?jcorner\.php\?partner= -# /javascripts/ads/* (easylistchina+easylist.txt: 14792) -/(.*/)?javascripts/ads/.* -# /javascripts/ads. (easylistchina+easylist.txt: 14791) -/(.*/)?javascripts/ads\. -# /javascript/oas? (easylistchina+easylist.txt: 14790) -/(.*/)?javascript/oas\? -# /javascript/oas. (easylistchina+easylist.txt: 14789) -/(.*/)?javascript/oas\. -# /javascript/ads/* (easylistchina+easylist.txt: 14788) -/(.*/)?javascript/ads/.* -# /javascript/ads. (easylistchina+easylist.txt: 14787) -/(.*/)?javascript/ads\. -# /jamnboad. (easylistchina+easylist.txt: 14786) -/(.*/)?jamnboad\. -jamnboad.*. -# /j/ads.js (easylistchina+easylist.txt: 14785) -/(.*/)?j/ads\.js -# /iwadsense. (easylistchina+easylist.txt: 14784) -/(.*/)?iwadsense\. -iwadsense.*. -# /ispy/ads/* (easylistchina+easylist.txt: 14783) -/(.*/)?ispy/ads/.* -# /isgadvertisement/* (easylistchina+easylist.txt: 14782) -/(.*/)?isgadvertisement/.* -# /iserver/site= (easylistchina+easylist.txt: 14781) -/(.*/)?iserver/site= -# /iserver/ccid= (easylistchina+easylist.txt: 14780) -/(.*/)?iserver/ccid= -# /is.php?ipua_id=*&search_id= (easylistchina+easylist.txt: 14779) -/(.*/)?is\.php\?ipua_id=.*&search_id= -# /ireel/ad*.jpg (easylistchina+easylist.txt: 14778) -/(.*/)?ireel/ad.*\.jpg -# /irc_ad_ (easylistchina+easylist.txt: 14777) -/(.*/)?irc_ad_ -# /iqadcontroller. (easylistchina+easylist.txt: 14776) -/(.*/)?iqadcontroller\. -iqadcontroller.*. -# /iprom-ad/* (easylistchina+easylist.txt: 14775) -/(.*/)?iprom-ad/.* -# /ipadad. (easylistchina+easylist.txt: 14774) -/(.*/)?ipadad\. -ipadad.*. -# /ip-advertising/* (easylistchina+easylist.txt: 14773) -/(.*/)?ip-advertising/.* -# /inx-ad. (easylistchina+easylist.txt: 14772) -/(.*/)?inx-ad\. -inx-ad.*. -# /inviteads/* (easylistchina+easylist.txt: 14771) -/(.*/)?inviteads/.* -# /invideoad. (easylistchina+easylist.txt: 14770) -/(.*/)?invideoad\. -invideoad.*. -# /inventory/ad/* (easylistchina+easylist.txt: 14769) -/(.*/)?inventory/ad/.* -# /inv/ads/* (easylistchina+easylist.txt: 14768) -/(.*/)?inv/ads/.* -# /introduction_ad. (easylistchina+easylist.txt: 14767) -/(.*/)?introduction_ad\. -# /intextads. (easylistchina+easylist.txt: 14766) -/(.*/)?intextads\. -intextads.*. -# /intextadd/* (easylistchina+easylist.txt: 14765) -/(.*/)?intextadd/.* -# /interstitial_ad. (easylistchina+easylist.txt: 14764) -/(.*/)?interstitial_ad\. -# /interstitial-ad? (easylistchina+easylist.txt: 14763) -/(.*/)?interstitial-ad\? -# /interstitial-ad/* (easylistchina+easylist.txt: 14762) -/(.*/)?interstitial-ad/.* -# /interstitial-ad. (easylistchina+easylist.txt: 14761) -/(.*/)?interstitial-ad\. -interstitial-ad.*. -# /internetad/* (easylistchina+easylist.txt: 14760) -/(.*/)?internetad/.* -# /internet_ad_ (easylistchina+easylist.txt: 14759) -/(.*/)?internet_ad_ -# /internal-ad- (easylistchina+easylist.txt: 14758) -/(.*/)?internal-ad- -internal-ad-*. -# /internAds. (easylistchina+easylist.txt: 14757) -/(.*/)?internAds\. -internAds.*. -# /intermediate-ad- (easylistchina+easylist.txt: 14756) -/(.*/)?intermediate-ad- -intermediate-ad-*. -# /interface/ads/* (easylistchina+easylist.txt: 14755) -/(.*/)?interface/ads/.* -# /interad. (easylistchina+easylist.txt: 14754) -/(.*/)?interad\. -interad.*. -# /intellitext. (easylistchina+easylist.txt: 14753) -/(.*/)?intellitext\. -intellitext.*. -# /intelliad. (easylistchina+easylist.txt: 14752) -/(.*/)?intelliad\. -intelliad.*. -# /instreamad/* (easylistchina+easylist.txt: 14751) -/(.*/)?instreamad/.* -# /insertads. (easylistchina+easylist.txt: 14750) -/(.*/)?insertads\. -insertads.*. -# /insertAd. (easylistchina+easylist.txt: 14749) -/(.*/)?insertAd\. -insertAd.*. -# /inquirer/ads/* (easylistchina+easylist.txt: 14748) -/(.*/)?inquirer/ads/.* -# /innerads. (easylistchina+easylist.txt: 14747) -/(.*/)?innerads\. -innerads.*. -# /inner-ads/* (easylistchina+easylist.txt: 14746) -/(.*/)?inner-ads/.* -# /inner-ads- (easylistchina+easylist.txt: 14745) -/(.*/)?inner-ads- -inner-ads-*. -# /inlinetextads? (easylistchina+easylist.txt: 14744) -/(.*/)?inlinetextads\? -# /inlineads/* (easylistchina+easylist.txt: 14743) -/(.*/)?inlineads/.* -# /inline_ads. (easylistchina+easylist.txt: 14742) -/(.*/)?inline_ads\. -# /inline_ad_ (easylistchina+easylist.txt: 14741) -/(.*/)?inline_ad_ -# /inline_ad. (easylistchina+easylist.txt: 14740) -/(.*/)?inline_ad\. -# /INjspopunder. (easylistchina+easylist.txt: 14739) -/(.*/)?INjspopunder\. -INjspopunder.*. -# /injectad. (easylistchina+easylist.txt: 14738) -/(.*/)?injectad\. -injectad.*. -# /initlayeredwelcomead- (easylistchina+easylist.txt: 14737) -/(.*/)?initlayeredwelcomead- -initlayeredwelcomead-*. -# /initdefineads. (easylistchina+easylist.txt: 14736) -/(.*/)?initdefineads\. -initdefineads.*. -# /inhouse_ads/* (easylistchina+easylist.txt: 14735) -/(.*/)?inhouse_ads/.* -# /index_ads. (easylistchina+easylist.txt: 14734) -/(.*/)?index_ads\. -# /index_ad/* (easylistchina+easylist.txt: 14733) -/(.*/)?index_ad/.* -# /index-ad. (easylistchina+easylist.txt: 14732) -/(.*/)?index-ad\. -index-ad.*. -# /index-ad- (easylistchina+easylist.txt: 14731) -/(.*/)?index-ad- -index-ad-*. -# /incmpuad. (easylistchina+easylist.txt: 14730) -/(.*/)?incmpuad\. -incmpuad.*. -# /includes/ads_ (easylistchina+easylist.txt: 14729) -/(.*/)?includes/ads_ -# /includes/ads/* (easylistchina+easylist.txt: 14728) -/(.*/)?includes/ads/.* -# /includes/ad_ (easylistchina+easylist.txt: 14727) -/(.*/)?includes/ad_ -# /includes/ad. (easylistchina+easylist.txt: 14726) -/(.*/)?includes/ad\. -# /included_ads/* (easylistchina+easylist.txt: 14725) -/(.*/)?included_ads/.* -# /include/adsdaq (easylistchina+easylist.txt: 14724) -/(.*/)?include/adsdaq -# /include/ads/* (easylistchina+easylist.txt: 14723) -/(.*/)?include/ads/.* -# /include/ad_ (easylistchina+easylist.txt: 14722) -/(.*/)?include/ad_ -# /include/ad/* (easylistchina+easylist.txt: 14721) -/(.*/)?include/ad/.* -# /inc_v2/ad_ (easylistchina+easylist.txt: 14720) -/(.*/)?inc_v2/ad_ -# /inc_ads. (easylistchina+easylist.txt: 14719) -/(.*/)?inc_ads\. -# /inc_ad_ (easylistchina+easylist.txt: 14718) -/(.*/)?inc_ad_ -# /inc_ad. (easylistchina+easylist.txt: 14717) -/(.*/)?inc_ad\. -# /inc/ads/* (easylistchina+easylist.txt: 14716) -/(.*/)?inc/ads/.* -# /inc/ad. (easylistchina+easylist.txt: 14715) -/(.*/)?inc/ad\. -# /inc/ad- (easylistchina+easylist.txt: 14714) -/(.*/)?inc/ad- -# /inad. (easylistchina+easylist.txt: 14713) -/(.*/)?inad\. -inad.*. -# /impopup/* (easylistchina+easylist.txt: 14712) -/(.*/)?impopup/.* -# /impop. (easylistchina+easylist.txt: 14711) -/(.*/)?impop\. -impop.*. -# /imp.ads/* (easylistchina+easylist.txt: 14710) -/(.*/)?imp\.ads/.* -imp.ads/.* -# /imlive5. (easylistchina+easylist.txt: 14709) -/(.*/)?imlive5\. -imlive5.*. -# /imlive300_ (easylistchina+easylist.txt: 14708) -/(.*/)?imlive300_ -# /imlive.gif (easylistchina+easylist.txt: 14707) -/(.*/)?imlive\.gif -imlive.gif*. -# /imgs/ads/* (easylistchina+easylist.txt: 14706) -/(.*/)?imgs/ads/.* -# /imgs/ad/* (easylistchina+easylist.txt: 14705) -/(.*/)?imgs/ad/.* -# /imgaffl/* (easylistchina+easylist.txt: 14704) -/(.*/)?imgaffl/.* -# /imgads/* (easylistchina+easylist.txt: 14703) -/(.*/)?imgads/.* -# /imgAdITN. (easylistchina+easylist.txt: 14702) -/(.*/)?imgAdITN\. -imgAdITN.*. -# /imgad_ (easylistchina+easylist.txt: 14701) -/(.*/)?imgad_ -# /imgad? (easylistchina+easylist.txt: 14700) -/(.*/)?imgad\? -# /imgad. (easylistchina+easylist.txt: 14699) -/(.*/)?imgad\. -imgad.*. -# /img_adv/* (easylistchina+easylist.txt: 14698) -/(.*/)?img_adv/.* -# /img_ads/* (easylistchina+easylist.txt: 14697) -/(.*/)?img_ads/.* -# /img_ad_ (easylistchina+easylist.txt: 14696) -/(.*/)?img_ad_ -# /img_ad/* (easylistchina+easylist.txt: 14695) -/(.*/)?img_ad/.* -# /img3/ads/* (easylistchina+easylist.txt: 14694) -/(.*/)?img3/ads/.* -# /img2/ad/* (easylistchina+easylist.txt: 14693) -/(.*/)?img2/ad/.* -# /img/aff/* (easylistchina+easylist.txt: 14692) -/(.*/)?img/aff/.* -# /img/adv/* (easylistchina+easylist.txt: 14691) -/(.*/)?img/adv/.* -# /img/adv. (easylistchina+easylist.txt: 14690) -/(.*/)?img/adv\. -# /img/ads/* (easylistchina+easylist.txt: 14689) -/(.*/)?img/ads/.* -# /img/ad_ (easylistchina+easylist.txt: 14688) -/(.*/)?img/ad_ -# /img/ad/* (easylistchina+easylist.txt: 14687) -/(.*/)?img/ad/.* -# /img/ad. (easylistchina+easylist.txt: 14686) -/(.*/)?img/ad\. -# /img/ad- (easylistchina+easylist.txt: 14685) -/(.*/)?img/ad- -# /img/_ad. (easylistchina+easylist.txt: 14684) -/(.*/)?img/_ad\. -# /img.ads. (easylistchina+easylist.txt: 14683) -/(.*/)?img\.ads\. -img.ads.*. -# /img-ads/* (easylistchina+easylist.txt: 14682) -/(.*/)?img-ads/.* -# /imfloat. (easylistchina+easylist.txt: 14681) -/(.*/)?imfloat\. -imfloat.*. -# /imagesadspro/* (easylistchina+easylist.txt: 14680) -/(.*/)?imagesadspro/.* -# /images_ads/* (easylistchina+easylist.txt: 14679) -/(.*/)?images_ads/.* -# /images_ad/* (easylistchina+easylist.txt: 14678) -/(.*/)?images_ad/.* -# /images2/ads/* (easylistchina+easylist.txt: 14677) -/(.*/)?images2/ads/.* -# /images1/ad_ (easylistchina+easylist.txt: 14676) -/(.*/)?images1/ad_ -# /images/vghd (easylistchina+easylist.txt: 14675) -/(.*/)?images/vghd -# /images/sponsored/* (easylistchina+easylist.txt: 14674) -/(.*/)?images/sponsored/.* -# /images/sponsored. (easylistchina+easylist.txt: 14673) -/(.*/)?images/sponsored\. -# /images/livejasmin/* (easylistchina+easylist.txt: 14672) -/(.*/)?images/livejasmin/.* -# /images/gads_ (easylistchina+easylist.txt: 14671) -/(.*/)?images/gads_ -# /images/bg_ad/* (easylistchina+easylist.txt: 14670) -/(.*/)?images/bg_ad/.* -# /images/awebanner (easylistchina+easylist.txt: 14669) -/(.*/)?images/awebanner -# /images/affs/* (easylistchina+easylist.txt: 14668) -/(.*/)?images/affs/.* -# /images/aff- (easylistchina+easylist.txt: 14667) -/(.*/)?images/aff- -# /images/adver- (easylistchina+easylist.txt: 14666) -/(.*/)?images/adver- -# /images/adv_ (easylistchina+easylist.txt: 14665) -/(.*/)?images/adv_ -# /images/adv/* (easylistchina+easylist.txt: 14664) -/(.*/)?images/adv/.* -# /images/adv. (easylistchina+easylist.txt: 14663) -/(.*/)?images/adv\. -# /images/adv- (easylistchina+easylist.txt: 14662) -/(.*/)?images/adv- -# /images/ads_ (easylistchina+easylist.txt: 14661) -/(.*/)?images/ads_ -# /images/ads/* (easylistchina+easylist.txt: 14660) -/(.*/)?images/ads/.* -# /images/ads. (easylistchina+easylist.txt: 14659) -/(.*/)?images/ads\. -# /images/ads- (easylistchina+easylist.txt: 14658) -/(.*/)?images/ads- -# /images/adds/* (easylistchina+easylist.txt: 14657) -/(.*/)?images/adds/.* -# /images/ad2/* (easylistchina+easylist.txt: 14656) -/(.*/)?images/ad2/.* -# /images/ad/* (easylistchina+easylist.txt: 14655) -/(.*/)?images/ad/.* -# /images/ad- (easylistchina+easylist.txt: 14653) -/(.*/)?images/ad- -# /images.adv/* (easylistchina+easylist.txt: 14652) -/(.*/)?images\.adv/.* -images.adv/.* -# /images.ads. (easylistchina+easylist.txt: 14651) -/(.*/)?images\.ads\. -images.ads.*. -# /images-v2/ad_ (easylistchina+easylist.txt: 14650) -/(.*/)?images-v2/ad_ -# /images-ad/* (easylistchina+easylist.txt: 14649) -/(.*/)?images-ad/.* -# /imagecache_ads/* (easylistchina+easylist.txt: 14648) -/(.*/)?imagecache_ads/.* -# /imageads/* (easylistchina+easylist.txt: 14647) -/(.*/)?imageads/.* -# /image_ads/* (easylistchina+easylist.txt: 14646) -/(.*/)?image_ads/.* -# /image/affiliate/* (easylistchina+easylist.txt: 14645) -/(.*/)?image/affiliate/.* -# /image/adv/* (easylistchina+easylist.txt: 14644) -/(.*/)?image/adv/.* -# /image/ads_ (easylistchina+easylist.txt: 14643) -/(.*/)?image/ads_ -# /image/ads/* (easylistchina+easylist.txt: 14642) -/(.*/)?image/ads/.* -# /image/ad/* (easylistchina+easylist.txt: 14641) -/(.*/)?image/ad/.* -# /imads.js (easylistchina+easylist.txt: 14640) -/(.*/)?imads\.js -imads.js*. -# /imaads. (easylistchina+easylist.txt: 14639) -/(.*/)?imaads\. -imaads.*. -# /ima/ads_ (easylistchina+easylist.txt: 14638) -/(.*/)?ima/ads_ -# /im.cams. (easylistchina+easylist.txt: 14637) -/(.*/)?im\.cams\. -im.cams.*. -# /im-popup/* (easylistchina+easylist.txt: 14636) -/(.*/)?im-popup/.* -# /im-ad/im-rotator2. (easylistchina+easylist.txt: 14635) -/(.*/)?im-ad/im-rotator2\. -# /im-ad/im-rotator. (easylistchina+easylist.txt: 14634) -/(.*/)?im-ad/im-rotator\. -# /ilivid-ad- (easylistchina+easylist.txt: 14633) -/(.*/)?ilivid-ad- -ilivid-ad-*. -# /ignitecampaigns.com/* (easylistchina+easylist.txt: 14632) -/(.*/)?ignitecampaigns\.com/.* -ignitecampaigns.com/.* -# /ignite.partnerembed.js (easylistchina+easylist.txt: 14631) -/(.*/)?ignite\.partnerembed\.js -ignite.partnerembed.js*. -# /ifrm_ads/* (easylistchina+easylist.txt: 14630) -/(.*/)?ifrm_ads/.* -# /iframes/ad/* (easylistchina+easylist.txt: 14629) -/(.*/)?iframes/ad/.* -# /iframedartad. (easylistchina+easylist.txt: 14628) -/(.*/)?iframedartad\. -iframedartad.*. -# /iframeadsensewrapper. (easylistchina+easylist.txt: 14627) -/(.*/)?iframeadsensewrapper\. -iframeadsensewrapper.*. -# /iframeadsense. (easylistchina+easylist.txt: 14626) -/(.*/)?iframeadsense\. -iframeadsense.*. -# /iframeads/* (easylistchina+easylist.txt: 14625) -/(.*/)?iframeads/.* -# /iframeads. (easylistchina+easylist.txt: 14624) -/(.*/)?iframeads\. -iframeads.*. -# /iframeadcontent. (easylistchina+easylist.txt: 14623) -/(.*/)?iframeadcontent\. -iframeadcontent.*. -# /iframead_ (easylistchina+easylist.txt: 14622) -/(.*/)?iframead_ -# /iframead/* (easylistchina+easylist.txt: 14621) -/(.*/)?iframead/.* -# /iframead. (easylistchina+easylist.txt: 14620) -/(.*/)?iframead\. -iframead.*. -# /iframe_sponsor_ (easylistchina+easylist.txt: 14619) -/(.*/)?iframe_sponsor_ -# /iframe_chitika_ (easylistchina+easylist.txt: 14618) -/(.*/)?iframe_chitika_ -# /iframe_ads_ (easylistchina+easylist.txt: 14617) -/(.*/)?iframe_ads_ -# /iframe_ads/* (easylistchina+easylist.txt: 14616) -/(.*/)?iframe_ads/.* -# /iframe_ad_ (easylistchina+easylist.txt: 14615) -/(.*/)?iframe_ad_ -# /iframe_ad? (easylistchina+easylist.txt: 14614) -/(.*/)?iframe_ad\? -# /iframe_ad. (easylistchina+easylist.txt: 14613) -/(.*/)?iframe_ad\. -# /iframe/ads/* (easylistchina+easylist.txt: 14612) -/(.*/)?iframe/ads/.* -# /iframe/ad_ (easylistchina+easylist.txt: 14611) -/(.*/)?iframe/ad_ -# /iframe/ad/* (easylistchina+easylist.txt: 14610) -/(.*/)?iframe/ad/.* -# /iframe.ad/* (easylistchina+easylist.txt: 14609) -/(.*/)?iframe\.ad/.* -iframe.ad/.* -# /iframe-mgid- (easylistchina+easylist.txt: 14608) -/(.*/)?iframe-mgid- -iframe-mgid-*. -# /iframe-ads/* (easylistchina+easylist.txt: 14607) -/(.*/)?iframe-ads/.* -# /iframe-ad/* (easylistchina+easylist.txt: 14606) -/(.*/)?iframe-ad/.* -# /iframe-ad. (easylistchina+easylist.txt: 14605) -/(.*/)?iframe-ad\. -iframe-ad.*. -# /ifolder-ads. (easylistchina+easylist.txt: 14604) -/(.*/)?ifolder-ads\. -ifolder-ads.*. -# /idevaffiliate/banners/* (easylistchina+easylist.txt: 14603) -/(.*/)?idevaffiliate/banners/.* -# /icon_advertising_ (easylistchina+easylist.txt: 14602) -/(.*/)?icon_advertising_ -# /icon_ads_ (easylistchina+easylist.txt: 14601) -/(.*/)?icon_ads_ -# /icon_ad. (easylistchina+easylist.txt: 14600) -/(.*/)?icon_ad\. -# /IBNjspopunder. (easylistchina+easylist.txt: 14599) -/(.*/)?IBNjspopunder\. -IBNjspopunder.*. -# /iabadvertisingplugin.swf (easylistchina+easylist.txt: 14598) -/(.*/)?iabadvertisingplugin\.swf -iabadvertisingplugin.swf*. -# /ia/ads/* (easylistchina+easylist.txt: 14597) -/(.*/)?ia/ads/.* -# /i_ads. (easylistchina+easylist.txt: 14596) -/(.*/)?i_ads\. -# /i/adv/* (easylistchina+easylist.txt: 14595) -/(.*/)?i/adv/.* -# /i/ads/* (easylistchina+easylist.txt: 14594) -/(.*/)?i/ads/.* -# /hubxt.*/js/ht.js (easylistchina+easylist.txt: 14593) -/(.*/)?hubxt\..*/js/ht\.js -hubxt.*./(.*/)?js/ht\.js -# /hubxt.*/js/eht.js? (easylistchina+easylist.txt: 14592) -/(.*/)?hubxt\..*/js/eht\.js\? -hubxt.*./(.*/)?js/eht\.js\? -# /httpads/* (easylistchina+easylist.txt: 14591) -/(.*/)?httpads/.* -# /htmlads/* (easylistchina+easylist.txt: 14590) -/(.*/)?htmlads/.* -# /html/sponsors/* (easylistchina+easylist.txt: 14589) -/(.*/)?html/sponsors/.* -# /html/ads_ (easylistchina+easylist.txt: 14588) -/(.*/)?html/ads_ -# /html/ads/* (easylistchina+easylist.txt: 14587) -/(.*/)?html/ads/.* -# /html/ad/* (easylistchina+easylist.txt: 14586) -/(.*/)?html/ad/.* -# /html/ad. (easylistchina+easylist.txt: 14585) -/(.*/)?html/ad\. -# /html.ng/* (easylistchina+easylist.txt: 14584) -/(.*/)?html\.ng/.* -html.ng/.* -# /ht.js?site_ (easylistchina+easylist.txt: 14583) -/(.*/)?ht\.js\?site_ -# /hpcwire/ads/* (easylistchina+easylist.txt: 14582) -/(.*/)?hpcwire/ads/.* -# /hoverad. (easylistchina+easylist.txt: 14581) -/(.*/)?hoverad\. -hoverad.*. -# /houseads? (easylistchina+easylist.txt: 14580) -/(.*/)?houseads\? -# /houseads/* (easylistchina+easylist.txt: 14579) -/(.*/)?houseads/.* -# /houseads. (easylistchina+easylist.txt: 14578) -/(.*/)?houseads\. -houseads.*. -# /housead_ (easylistchina+easylist.txt: 14577) -/(.*/)?housead_ -# /housead/* (easylistchina+easylist.txt: 14576) -/(.*/)?housead/.* -# /housead. (easylistchina+easylist.txt: 14575) -/(.*/)?housead\. -housead.*. -# /house_ads/* (easylistchina+easylist.txt: 14574) -/(.*/)?house_ads/.* -# /house_ad_ (easylistchina+easylist.txt: 14573) -/(.*/)?house_ad_ -# /house_ad- (easylistchina+easylist.txt: 14572) -/(.*/)?house_ad- -# /house-ads/* (easylistchina+easylist.txt: 14571) -/(.*/)?house-ads/.* -# /house-ad/* (easylistchina+easylist.txt: 14570) -/(.*/)?house-ad/.* -# /house-ad. (easylistchina+easylist.txt: 14569) -/(.*/)?house-ad\. -house-ad.*. -# /hostkey-ad. (easylistchina+easylist.txt: 14568) -/(.*/)?hostkey-ad\. -hostkey-ad.*. -# /hosting/ads/* (easylistchina+easylist.txt: 14567) -/(.*/)?hosting/ads/.* -# /hostgator-ad. (easylistchina+easylist.txt: 14566) -/(.*/)?hostgator-ad\. -hostgator-ad.*. -# /hostedbannerads. (easylistchina+easylist.txt: 14565) -/(.*/)?hostedbannerads\. -hostedbannerads.*. -# /hostedads. (easylistchina+easylist.txt: 14564) -/(.*/)?hostedads\. -hostedads.*. -# /horizontalAd. (easylistchina+easylist.txt: 14563) -/(.*/)?horizontalAd\. -horizontalAd.*. -# /horizontal_advert_ (easylistchina+easylist.txt: 14562) -/(.*/)?horizontal_advert_ -# /HompageStickyAd. (easylistchina+easylist.txt: 14561) -/(.*/)?HompageStickyAd\. -HompageStickyAd.*. -# /HomeStaticAds/* (easylistchina+easylist.txt: 14560) -/(.*/)?HomeStaticAds/.* -# /homeslideadtop/* (easylistchina+easylist.txt: 14559) -/(.*/)?homeslideadtop/.* -# /homepageadvertright. (easylistchina+easylist.txt: 14558) -/(.*/)?homepageadvertright\. -homepageadvertright.*. -# /homepage_ad_ (easylistchina+easylist.txt: 14556) -/(.*/)?homepage_ad_ -# /homepage/ads/* (easylistchina+easylist.txt: 14555) -/(.*/)?homepage/ads/.* -# /homepage-ads/* (easylistchina+easylist.txt: 14554) -/(.*/)?homepage-ads/.* -# /homeoutside/ads/* (easylistchina+easylist.txt: 14553) -/(.*/)?homeoutside/ads/.* -# /home_adv. (easylistchina+easylist.txt: 14552) -/(.*/)?home_adv\. -# /home30/ad. (easylistchina+easylist.txt: 14551) -/(.*/)?home30/ad\. -# /home/sponsor_ (easylistchina+easylist.txt: 14550) -/(.*/)?home/sponsor_ -# /home/ads_ (easylistchina+easylist.txt: 14549) -/(.*/)?home/ads_ -# /home/ads/* (easylistchina+easylist.txt: 14548) -/(.*/)?home/ads/.* -# /home/ads- (easylistchina+easylist.txt: 14547) -/(.*/)?home/ads- -# /home/ad_ (easylistchina+easylist.txt: 14546) -/(.*/)?home/ad_ -# /home/_ads (easylistchina+easylist.txt: 14545) -/(.*/)?home/_ads -# /holl_ad. (easylistchina+easylist.txt: 14544) -/(.*/)?holl_ad\. -# /hitbar_ad_ (easylistchina+easylist.txt: 14543) -/(.*/)?hitbar_ad_ -# /hikaku/banner/* (easylistchina+easylist.txt: 14542) -/(.*/)?hikaku/banner/.* -# /hiadone_ (easylistchina+easylist.txt: 14541) -/(.*/)?hiadone_ -# /Heat_Ad. (easylistchina+easylist.txt: 14540) -/(.*/)?Heat_Ad\. -# /headvert. (easylistchina+easylist.txt: 14539) -/(.*/)?headvert\. -headvert.*. -# /headermktgpromoads. (easylistchina+easylist.txt: 14538) -/(.*/)?headermktgpromoads\. -headermktgpromoads.*. -# /headerAdvertismentTab. (easylistchina+easylist.txt: 14537) -/(.*/)?headerAdvertismentTab\. -headerAdvertismentTab.*. -# /headerads1. (easylistchina+easylist.txt: 14536) -/(.*/)?headerads1\. -headerads1.*. -# /headerads. (easylistchina+easylist.txt: 14535) -/(.*/)?headerads\. -headerads.*. -# /headeradd2. (easylistchina+easylist.txt: 14534) -/(.*/)?headeradd2\. -headeradd2.*. -# /headerad. (easylistchina+easylist.txt: 14533) -/(.*/)?headerad\. -headerad.*. -# /header_ads_ (easylistchina+easylist.txt: 14532) -/(.*/)?header_ads_ -# /header_ad_ (easylistchina+easylist.txt: 14531) -/(.*/)?header_ad_ -# /header-ad. (easylistchina+easylist.txt: 14530) -/(.*/)?header-ad\. -header-ad.*. -# /hdadvertisment- (easylistchina+easylist.txt: 14529) -/(.*/)?hdadvertisment- -hdadvertisment-*. -# /hcm_ads/* (easylistchina+easylist.txt: 14528) -/(.*/)?hcm_ads/.* -# /Handlers/Ads. (easylistchina+easylist.txt: 14527) -/(.*/)?Handlers/Ads\. -# /hads- (easylistchina+easylist.txt: 14526) -/(.*/)?hads- -hads-*. -# /gutterAd. (easylistchina+easylist.txt: 14525) -/(.*/)?gutterAd\. -gutterAd.*. -# /GujAd/* (easylistchina+easylist.txt: 14524) -/(.*/)?GujAd/.* -# /gujAd. (easylistchina+easylist.txt: 14523) -/(.*/)?gujAd\. -gujAd.*. -# /guardrailad_ (easylistchina+easylist.txt: 14522) -/(.*/)?guardrailad_ -# /guardianleader. (easylistchina+easylist.txt: 14521) -/(.*/)?guardianleader\. -guardianleader.*. -# /gtv_ads. (easylistchina+easylist.txt: 14520) -/(.*/)?gtv_ads\. -# /gtags/pin_tag. (easylistchina+easylist.txt: 14519) -/(.*/)?gtags/pin_tag\. -# /gt6skyadtop. (easylistchina+easylist.txt: 14518) -/(.*/)?gt6skyadtop\. -gt6skyadtop.*. -# /groupon/ads/* (easylistchina+easylist.txt: 14517) -/(.*/)?groupon/ads/.* -# /grid-ad. (easylistchina+easylist.txt: 14516) -/(.*/)?grid-ad\. -grid-ad.*. -# /graphics/ads/* (easylistchina+easylist.txt: 14515) -/(.*/)?graphics/ads/.* -# /graphics/ad_ (easylistchina+easylist.txt: 14514) -/(.*/)?graphics/ad_ -# /gpt_ads- (easylistchina+easylist.txt: 14513) -/(.*/)?gpt_ads- -# /googlempu. (easylistchina+easylist.txt: 14512) -/(.*/)?googlempu\. -googlempu.*. -# /googleleads. (easylistchina+easylist.txt: 14511) -/(.*/)?googleleads\. -googleleads.*. -# /googleleader. (easylistchina+easylist.txt: 14510) -/(.*/)?googleleader\. -googleleader.*. -# /googleheadad. (easylistchina+easylist.txt: 14509) -/(.*/)?googleheadad\. -googleheadad.*. -# /googlecontextualads. (easylistchina+easylist.txt: 14508) -/(.*/)?googlecontextualads\. -googlecontextualads.*. -# /googleafvadrenderer. (easylistchina+easylist.txt: 14507) -/(.*/)?googleafvadrenderer\. -googleafvadrenderer.*. -# /googleafs. (easylistchina+easylist.txt: 14506) -/(.*/)?googleafs\. -googleafs.*. -# /googleafc. (easylistchina+easylist.txt: 14505) -/(.*/)?googleafc\. -googleafc.*. -# /googleadunit? (easylistchina+easylist.txt: 14504) -/(.*/)?googleadunit\? -# /googleAdTaggingSubSec. (easylistchina+easylist.txt: 14503) -/(.*/)?googleAdTaggingSubSec\. -googleAdTaggingSubSec.*. -# /googleadsense. (easylistchina+easylist.txt: 14502) -/(.*/)?googleadsense\. -googleadsense.*. -# /googleAdScripts. (easylistchina+easylist.txt: 14501) -/(.*/)?googleAdScripts\. -googleAdScripts.*. -# /googleadsafs_ (easylistchina+easylist.txt: 14500) -/(.*/)?googleadsafs_ -# /googleadsafc_ (easylistchina+easylist.txt: 14499) -/(.*/)?googleadsafc_ -# /googleads_ (easylistchina+easylist.txt: 14498) -/(.*/)?googleads_ -# /googleads3widetext. (easylistchina+easylist.txt: 14497) -/(.*/)?googleads3widetext\. -googleads3widetext.*. -# /googleads2. (easylistchina+easylist.txt: 14496) -/(.*/)?googleads2\. -googleads2.*. -# /googleads1. (easylistchina+easylist.txt: 14495) -/(.*/)?googleads1\. -googleads1.*. -# /googleads/* (easylistchina+easylist.txt: 14494) -/(.*/)?googleads/.* -# /googleads. (easylistchina+easylist.txt: 14493) -/(.*/)?googleads\. -googleads.*. -# /googleads- (easylistchina+easylist.txt: 14492) -/(.*/)?googleads- -googleads-*. -# /googleadright. (easylistchina+easylist.txt: 14491) -/(.*/)?googleadright\. -googleadright.*. -# /googleadiframe_ (easylistchina+easylist.txt: 14490) -/(.*/)?googleadiframe_ -# /googleadhtml/* (easylistchina+easylist.txt: 14489) -/(.*/)?googleadhtml/.* -# /googleadhpbot. (easylistchina+easylist.txt: 14488) -/(.*/)?googleadhpbot\. -googleadhpbot.*. -# /googleadhp. (easylistchina+easylist.txt: 14487) -/(.*/)?googleadhp\. -googleadhp.*. -# /googleaddisplayframe. (easylistchina+easylist.txt: 14486) -/(.*/)?googleaddisplayframe\. -googleaddisplayframe.*. -# /googleaddfooter. (easylistchina+easylist.txt: 14485) -/(.*/)?googleaddfooter\. -googleaddfooter.*. -# /googleadcode. (easylistchina+easylist.txt: 14484) -/(.*/)?googleadcode\. -googleadcode.*. -# /GoogleAdBg. (easylistchina+easylist.txt: 14483) -/(.*/)?GoogleAdBg\. -GoogleAdBg.*. -# /googlead_ (easylistchina+easylist.txt: 14482) -/(.*/)?googlead_ -# /googlead336x280. (easylistchina+easylist.txt: 14481) -/(.*/)?googlead336x280\. -googlead336x280.*. -# /GoogleAd300. (easylistchina+easylist.txt: 14480) -/(.*/)?GoogleAd300\. -GoogleAd300.*. -# /googlead160. (easylistchina+easylist.txt: 14479) -/(.*/)?googlead160\. -googlead160.*. -# /googlead1. (easylistchina+easylist.txt: 14478) -/(.*/)?googlead1\. -googlead1.*. -# /googlead. (easylistchina+easylist.txt: 14477) -/(.*/)?googlead\. -googlead.*. -# /googlead- (easylistchina+easylist.txt: 14476) -/(.*/)?googlead- -googlead-*. -# /google_radlinks_ (easylistchina+easylist.txt: 14475) -/(.*/)?google_radlinks_ -# /google_lander2.js (easylistchina+easylist.txt: 14474) -/(.*/)?google_lander2\.js -# /google_caf.js? (easylistchina+easylist.txt: 14473) -/(.*/)?google_caf\.js\? -# /google_afs_widget/* (easylistchina+easylist.txt: 14472) -/(.*/)?google_afs_widget/.* -# /google_afs. (easylistchina+easylist.txt: 14471) -/(.*/)?google_afs\. -# /google_afc_ (easylistchina+easylist.txt: 14470) -/(.*/)?google_afc_ -# /google_afc. (easylistchina+easylist.txt: 14469) -/(.*/)?google_afc\. -# /google_adv/* (easylistchina+easylist.txt: 14468) -/(.*/)?google_adv/.* -# /google_ads_ (easylistchina+easylist.txt: 14467) -/(.*/)?google_ads_ -# /google_ads/* (easylistchina+easylist.txt: 14466) -/(.*/)?google_ads/.* -# /google_ads. (easylistchina+easylist.txt: 14465) -/(.*/)?google_ads\. -# /google_ad_ (easylistchina+easylist.txt: 14464) -/(.*/)?google_ad_ -# /google_ad. (easylistchina+easylist.txt: 14463) -/(.*/)?google_ad\. -# /google728. (easylistchina+easylist.txt: 14462) -/(.*/)?google728\. -google728.*. -# /google160. (easylistchina+easylist.txt: 14461) -/(.*/)?google160\. -google160.*. -# /google/adv. (easylistchina+easylist.txt: 14460) -/(.*/)?google/adv\. -# /google/ad? (easylistchina+easylist.txt: 14459) -/(.*/)?google/ad\? -# /google-afc. (easylistchina+easylist.txt: 14458) -/(.*/)?google-afc\. -google-afc.*. -# /google-afc- (easylistchina+easylist.txt: 14457) -/(.*/)?google-afc- -google-afc-*. -# /google-adwords (easylistchina+easylist.txt: 14456) -/(.*/)?google-adwords -google-adwords*. -# /google-adverts- (easylistchina+easylist.txt: 14455) -/(.*/)?google-adverts- -google-adverts-*. -# /google-adsense. (easylistchina+easylist.txt: 14454) -/(.*/)?google-adsense\. -google-adsense.*. -# /google-adsense- (easylistchina+easylist.txt: 14453) -/(.*/)?google-adsense- -google-adsense-*. -# /google-ads/* (easylistchina+easylist.txt: 14452) -/(.*/)?google-ads/.* -# /google-ads. (easylistchina+easylist.txt: 14451) -/(.*/)?google-ads\. -google-ads.*. -# /google-ad? (easylistchina+easylist.txt: 14450) -/(.*/)?google-ad\? -# /google-ad- (easylistchina+easylist.txt: 14449) -/(.*/)?google-ad- -google-ad-*. -# /googad300by600. (easylistchina+easylist.txt: 14448) -/(.*/)?googad300by600\. -googad300by600.*. -# /globalbannerad. (easylistchina+easylist.txt: 14447) -/(.*/)?globalbannerad\. -globalbannerad.*. -# /globaladprostyles. (easylistchina+easylist.txt: 14446) -/(.*/)?globaladprostyles\. -globaladprostyles.*. -# /globalad. (easylistchina+easylist.txt: 14445) -/(.*/)?globalad\. -globalad.*. -# /global/ads/* (easylistchina+easylist.txt: 14444) -/(.*/)?global/ads/.* -# /global/ads. (easylistchina+easylist.txt: 14443) -/(.*/)?global/ads\. -# /global/ad/* (easylistchina+easylist.txt: 14442) -/(.*/)?global/ad/.* -# /global-ads_ (easylistchina+easylist.txt: 14441) -/(.*/)?global-ads_ -# /glam_ads. (easylistchina+easylist.txt: 14440) -/(.*/)?glam_ads\. -# /glam728. (easylistchina+easylist.txt: 14439) -/(.*/)?glam728\. -glam728.*. -# /glam300. (easylistchina+easylist.txt: 14438) -/(.*/)?glam300\. -glam300.*. -# /glam160. (easylistchina+easylist.txt: 14437) -/(.*/)?glam160\. -glam160.*. -# /gifs/ads/* (easylistchina+easylist.txt: 14436) -/(.*/)?gifs/ads/.* -# /ggadsense. (easylistchina+easylist.txt: 14435) -/(.*/)?ggadsense\. -ggadsense.*. -# /gfx/ads/* (easylistchina+easylist.txt: 14434) -/(.*/)?gfx/ads/.* -# /gfx/ad/* (easylistchina+easylist.txt: 14433) -/(.*/)?gfx/ad/.* -# /gexternalad. (easylistchina+easylist.txt: 14432) -/(.*/)?gexternalad\. -gexternalad.*. -# /getwebsitead/* (easylistchina+easylist.txt: 14431) -/(.*/)?getwebsitead/.* -# /getvideoad. (easylistchina+easylist.txt: 14430) -/(.*/)?getvideoad\. -getvideoad.*. -# /getvdopiaads. (easylistchina+easylist.txt: 14429) -/(.*/)?getvdopiaads\. -getvdopiaads.*. -# /GetVASTAd? (easylistchina+easylist.txt: 14428) -/(.*/)?GetVASTAd\? -# /getTextAD. (easylistchina+easylist.txt: 14427) -/(.*/)?getTextAD\. -getTextAD.*. -# /getsponslinksauto. (easylistchina+easylist.txt: 14426) -/(.*/)?getsponslinksauto\. -getsponslinksauto.*. -# /getsponslinks. (easylistchina+easylist.txt: 14425) -/(.*/)?getsponslinks\. -getsponslinks.*. -# /getsad.php? (easylistchina+easylist.txt: 14424) -/(.*/)?getsad\.php\? -# /getrcmd.js? (easylistchina+easylist.txt: 14423) -/(.*/)?getrcmd\.js\? -# /getmyad/* (easylistchina+easylist.txt: 14422) -/(.*/)?getmyad/.* -# /getmdhlink. (easylistchina+easylist.txt: 14421) -/(.*/)?getmdhlink\. -getmdhlink.*. -# /getmdhlayer. (easylistchina+easylist.txt: 14420) -/(.*/)?getmdhlayer\. -getmdhlayer.*. -# /getmarketplaceads. (easylistchina+easylist.txt: 14419) -/(.*/)?getmarketplaceads\. -getmarketplaceads.*. -# /getJsonAds? (easylistchina+easylist.txt: 14418) -/(.*/)?getJsonAds\? -# /getinlineads/* (easylistchina+easylist.txt: 14417) -/(.*/)?getinlineads/.* -# /gethalfpagead. (easylistchina+easylist.txt: 14416) -/(.*/)?gethalfpagead\. -gethalfpagead.*. -# /getfeaturedadsforshow. (easylistchina+easylist.txt: 14415) -/(.*/)?getfeaturedadsforshow\. -getfeaturedadsforshow.*. -# /getdigitalad/* (easylistchina+easylist.txt: 14414) -/(.*/)?getdigitalad/.* -# /getbanner.php? (easylistchina+easylist.txt: 14413) -/(.*/)?getbanner\.php\? -# /getbanner.cfm? (easylistchina+easylist.txt: 14412) -/(.*/)?getbanner\.cfm\? -# /getban.php? (easylistchina+easylist.txt: 14411) -/(.*/)?getban\.php\? -# /getarticleadvertimageservlet? (easylistchina+easylist.txt: 14410) -/(.*/)?getarticleadvertimageservlet\? -# /GetADVOverlay. (easylistchina+easylist.txt: 14409) -/(.*/)?GetADVOverlay\. -GetADVOverlay.*. -# /getadverts? (easylistchina+easylist.txt: 14408) -/(.*/)?getadverts\? -# /getadvertiserimage. (easylistchina+easylist.txt: 14407) -/(.*/)?getadvertiserimage\. -getadvertiserimage.*. -# /getAdvertisement^ (easylistchina+easylist.txt: 14406) -/(.*/)?getAdvertisement[^\w%.-] -# /getadvertimageservlet? (easylistchina+easylist.txt: 14405) -/(.*/)?getadvertimageservlet\? -# /getads| (easylistchina+easylist.txt: 14404) -/(.*/)?getads$ -# /getAdsForClient? (easylistchina+easylist.txt: 14403) -/(.*/)?getAdsForClient\? -# /getadsettingsjs? (easylistchina+easylist.txt: 14402) -/(.*/)?getadsettingsjs\? -# /getadserver. (easylistchina+easylist.txt: 14401) -/(.*/)?getadserver\. -getadserver.*. -# /getads? (easylistchina+easylist.txt: 14400) -/(.*/)?getads\? -# /getads/* (easylistchina+easylist.txt: 14399) -/(.*/)?getads/.* -# /getads. (easylistchina+easylist.txt: 14398) -/(.*/)?getads\. -getads.*. -# /getads- (easylistchina+easylist.txt: 14397) -/(.*/)?getads- -getads-*. -# /getadframe. (easylistchina+easylist.txt: 14396) -/(.*/)?getadframe\. -getadframe.*. -# /GetAdForCallBack? (easylistchina+easylist.txt: 14395) -/(.*/)?GetAdForCallBack\? -# /getadds. (easylistchina+easylist.txt: 14394) -/(.*/)?getadds\. -getadds.*. -# /getadcontent. (easylistchina+easylist.txt: 14393) -/(.*/)?getadcontent\. -getadcontent.*. -# /getad? (easylistchina+easylist.txt: 14392) -/(.*/)?getad\? -# /getad/* (easylistchina+easylist.txt: 14391) -/(.*/)?getad/.* -# /getad. (easylistchina+easylist.txt: 14390) -/(.*/)?getad\. -getad.*. -# /get_banner.asp? (easylistchina+easylist.txt: 14389) -/(.*/)?get_banner\.asp\? -# /get_ads/* (easylistchina+easylist.txt: 14388) -/(.*/)?get_ads/.* -# /get_ads. (easylistchina+easylist.txt: 14387) -/(.*/)?get_ads\. -# /get_ad_ (easylistchina+easylist.txt: 14386) -/(.*/)?get_ad_ -# /get/ad? (easylistchina+easylist.txt: 14385) -/(.*/)?get/ad\? -# /get/ad/* (easylistchina+easylist.txt: 14384) -/(.*/)?get/ad/.* -# /get/ad. (easylistchina+easylist.txt: 14383) -/(.*/)?get/ad\. -# /get.ad? (easylistchina+easylist.txt: 14382) -/(.*/)?get\.ad\? -# /get.*/get.$script (easylistchina+easylist.txt: 14381) -/(.*/)?get\..*/get\. -get.*./(.*/)?get\. -# /get-advert- (easylistchina+easylist.txt: 14380) -/(.*/)?get-advert- -get-advert-*. -# /get-ad. (easylistchina+easylist.txt: 14379) -/(.*/)?get-ad\. -get-ad.*. -# /ges_ads/* (easylistchina+easylist.txt: 14378) -/(.*/)?ges_ads/.* -# /GeoDynBanner.php?wmid= (easylistchina+easylist.txt: 14377) -/(.*/)?GeoDynBanner\.php\?wmid= -# /geobox.html (easylistchina+easylist.txt: 14376) -/(.*/)?geobox\.html -geobox.html*. -# /geoad/* (easylistchina+easylist.txt: 14375) -/(.*/)?geoad/.* -# /geo_banner.htm? (easylistchina+easylist.txt: 14374) -/(.*/)?geo_banner\.htm\? -# /geo/ads. (easylistchina+easylist.txt: 14373) -/(.*/)?geo/ads\. -# /geo-ads_ (easylistchina+easylist.txt: 14372) -/(.*/)?geo-ads_ -# /genericrichmediabannerad/* (easylistchina+easylist.txt: 14371) -/(.*/)?genericrichmediabannerad/.* -# /generic.ads. (easylistchina+easylist.txt: 14370) -/(.*/)?generic\.ads\. -generic.ads.*. -# /generateplayerads. (easylistchina+easylist.txt: 14369) -/(.*/)?generateplayerads\. -generateplayerads.*. -# /generated/key.js? (easylistchina+easylist.txt: 14368) -/(.*/)?generated/key\.js\? -# /generateadtag. (easylistchina+easylist.txt: 14367) -/(.*/)?generateadtag\. -generateadtag.*. -# /generate_ads. (easylistchina+easylist.txt: 14366) -/(.*/)?generate_ads\. -# /generate_ad. (easylistchina+easylist.txt: 14365) -/(.*/)?generate_ad\. -# /general/ads (easylistchina+easylist.txt: 14364) -/(.*/)?general/ads -# /general-ad- (easylistchina+easylist.txt: 14363) -/(.*/)?general-ad- -general-ad-*. -# /genads/* (easylistchina+easylist.txt: 14362) -/(.*/)?genads/.* -# /gen_ads_ (easylistchina+easylist.txt: 14361) -/(.*/)?gen_ads_ -# /geitonpop. (easylistchina+easylist.txt: 14360) -/(.*/)?geitonpop\. -geitonpop.*. -# /gazette/ads/* (easylistchina+easylist.txt: 14359) -/(.*/)?gazette/ads/.* -# /gatewayAds. (easylistchina+easylist.txt: 14358) -/(.*/)?gatewayAds\. -gatewayAds.*. -# /gate-ad- (easylistchina+easylist.txt: 14357) -/(.*/)?gate-ad- -gate-ad-*. -# /gannett/ads/* (easylistchina+easylist.txt: 14356) -/(.*/)?gannett/ads/.* -# /GAN_Ads/* (easylistchina+easylist.txt: 14355) -/(.*/)?GAN_Ads/.* -# /gamersad. (easylistchina+easylist.txt: 14354) -/(.*/)?gamersad\. -gamersad.*. -# /gameadsync. (easylistchina+easylist.txt: 14353) -/(.*/)?gameadsync\. -gameadsync.*. -# /gamead/* (easylistchina+easylist.txt: 14352) -/(.*/)?gamead/.* -# /game-ads. (easylistchina+easylist.txt: 14351) -/(.*/)?game-ads\. -game-ads.*. -# /gamads/* (easylistchina+easylist.txt: 14350) -/(.*/)?gamads/.* -# /gam_ads. (easylistchina+easylist.txt: 14349) -/(.*/)?gam_ads\. -# /gam_ad_ (easylistchina+easylist.txt: 14348) -/(.*/)?gam_ad_ -# /gam_ad. (easylistchina+easylist.txt: 14347) -/(.*/)?gam_ad\. -# /gam.html? (easylistchina+easylist.txt: 14346) -/(.*/)?gam\.html\? -# /galleryad. (easylistchina+easylist.txt: 14345) -/(.*/)?galleryad\. -galleryad.*. -# /gafv_adapter. (easylistchina+easylist.txt: 14344) -/(.*/)?gafv_adapter\. -# /gafsads? (easylistchina+easylist.txt: 14343) -/(.*/)?gafsads\? -# /gafc.js (easylistchina+easylist.txt: 14342) -/(.*/)?gafc\.js -gafc.js*. -# /gads.js (easylistchina+easylist.txt: 14341) -/(.*/)?gads\.js -gads.js*. -# /gads.html (easylistchina+easylist.txt: 14340) -/(.*/)?gads\.html -gads.html*. -# /gadgets/ad/* (easylistchina+easylist.txt: 14339) -/(.*/)?gadgets/ad/.* -# /fwadmanager. (easylistchina+easylist.txt: 14338) -/(.*/)?fwadmanager\. -fwadmanager.*. -# /fuseads/* (easylistchina+easylist.txt: 14337) -/(.*/)?fuseads/.* -# /fulladbazee. (easylistchina+easylist.txt: 14336) -/(.*/)?fulladbazee\. -fulladbazee.*. -# /fullad. (easylistchina+easylist.txt: 14335) -/(.*/)?fullad\. -fullad.*. -# /full/ads/* (easylistchina+easylist.txt: 14334) -/(.*/)?full/ads/.* -# /ftp/adv/* (easylistchina+easylist.txt: 14333) -/(.*/)?ftp/adv/.* -# /frontpagead/* (easylistchina+easylist.txt: 14332) -/(.*/)?frontpagead/.* -# /frontend/ads/* (easylistchina+easylist.txt: 14331) -/(.*/)?frontend/ads/.* -# /frnads. (easylistchina+easylist.txt: 14330) -/(.*/)?frnads\. -frnads.*. -# /friendfinder_ (easylistchina+easylist.txt: 14329) -/(.*/)?friendfinder_ -# /frequencyads. (easylistchina+easylist.txt: 14328) -/(.*/)?frequencyads\. -frequencyads.*. -# /freead2. (easylistchina+easylist.txt: 14327) -/(.*/)?freead2\. -freead2.*. -# /freead. (easylistchina+easylist.txt: 14326) -/(.*/)?freead\. -freead.*. -# /frameadsz. (easylistchina+easylist.txt: 14325) -/(.*/)?frameadsz\. -frameadsz.*. -# /frameads_ (easylistchina+easylist.txt: 14324) -/(.*/)?frameads_ -# /frameads1. (easylistchina+easylist.txt: 14323) -/(.*/)?frameads1\. -frameads1.*. -# /frameads. (easylistchina+easylist.txt: 14322) -/(.*/)?frameads\. -frameads.*. -# /framead_ (easylistchina+easylist.txt: 14321) -/(.*/)?framead_ -# /framead/* (easylistchina+easylist.txt: 14320) -/(.*/)?framead/.* -# /framead. (easylistchina+easylist.txt: 14319) -/(.*/)?framead\. -framead.*. -# /framead- (easylistchina+easylist.txt: 14318) -/(.*/)?framead- -framead-*. -# /frame_ads_ (easylistchina+easylist.txt: 14317) -/(.*/)?frame_ads_ -# /forums/ad/* (easylistchina+easylist.txt: 14316) -/(.*/)?forums/ad/.* -# /forum/ads/* (easylistchina+easylist.txt: 14315) -/(.*/)?forum/ads/.* -# /forads. (easylistchina+easylist.txt: 14314) -/(.*/)?forads\. -forads.*. -# /footertextads. (easylistchina+easylist.txt: 14313) -/(.*/)?footertextads\. -footertextads.*. -# /footerads/* (easylistchina+easylist.txt: 14312) -/(.*/)?footerads/.* -# /footerads. (easylistchina+easylist.txt: 14311) -/(.*/)?footerads\. -footerads.*. -# /footerad? (easylistchina+easylist.txt: 14310) -/(.*/)?footerad\? -# /footerad. (easylistchina+easylist.txt: 14309) -/(.*/)?footerad\. -footerad.*. -# /footer_ads. (easylistchina+easylist.txt: 14308) -/(.*/)?footer_ads\. -# /footer_ad_ (easylistchina+easylist.txt: 14307) -/(.*/)?footer_ad_ -# /footer_ad. (easylistchina+easylist.txt: 14306) -/(.*/)?footer_ad\. -# /footer-ads/* (easylistchina+easylist.txt: 14305) -/(.*/)?footer-ads/.* -# /footer-ad. (easylistchina+easylist.txt: 14304) -/(.*/)?footer-ad\. -footer-ad.*. -# /footer-ad- (easylistchina+easylist.txt: 14303) -/(.*/)?footer-ad- -footer-ad-*. -# /footad. (easylistchina+easylist.txt: 14302) -/(.*/)?footad\. -footad.*. -# /footad- (easylistchina+easylist.txt: 14301) -/(.*/)?footad- -footad-*. -# /fn_ads. (easylistchina+easylist.txt: 14300) -/(.*/)?fn_ads\. -# /flyers/ads/* (easylistchina+easylist.txt: 14299) -/(.*/)?flyers/ads/.* -# /flyads/* (easylistchina+easylist.txt: 14298) -/(.*/)?flyads/.* -# /flyad/* (easylistchina+easylist.txt: 14297) -/(.*/)?flyad/.* -# /flyad. (easylistchina+easylist.txt: 14296) -/(.*/)?flyad\. -flyad.*. -# /flvads/* (easylistchina+easylist.txt: 14295) -/(.*/)?flvads/.* -# /flvad_ (easylistchina+easylist.txt: 14294) -/(.*/)?flvad_ -# /flv-ad- (easylistchina+easylist.txt: 14293) -/(.*/)?flv-ad- -flv-ad-*. -# /floaty_rotator (easylistchina+easylist.txt: 14292) -/(.*/)?floaty_rotator -# /floatingads. (easylistchina+easylist.txt: 14291) -/(.*/)?floatingads\. -floatingads.*. -# /FloatingAd_ (easylistchina+easylist.txt: 14290) -/(.*/)?FloatingAd_ -# /floatingad. (easylistchina+easylist.txt: 14289) -/(.*/)?floatingad\. -floatingad.*. -# /floater_ad. (easylistchina+easylist.txt: 14288) -/(.*/)?floater_ad\. -# /floatadv. (easylistchina+easylist.txt: 14287) -/(.*/)?floatadv\. -floatadv.*. -# /floatads. (easylistchina+easylist.txt: 14286) -/(.*/)?floatads\. -floatads.*. -# /floatad_ (easylistchina+easylist.txt: 14285) -/(.*/)?floatad_ -# /float_ad. (easylistchina+easylist.txt: 14284) -/(.*/)?float_ad\. -# /float-ads/* (easylistchina+easylist.txt: 14283) -/(.*/)?float-ads/.* -# /flirt4free. (easylistchina+easylist.txt: 14282) -/(.*/)?flirt4free\. -flirt4free.*. -# /fliionosadcapture- (easylistchina+easylist.txt: 14281) -/(.*/)?fliionosadcapture- -fliionosadcapture-*. -# /flexads? (easylistchina+easylist.txt: 14280) -/(.*/)?flexads\? -# /fleshlightcash_ (easylistchina+easylist.txt: 14279) -/(.*/)?fleshlightcash_ -# /fleshlight. (easylistchina+easylist.txt: 14278) -/(.*/)?fleshlight\. -fleshlight.*. -# /flesh_banner (easylistchina+easylist.txt: 14277) -/(.*/)?flesh_banner -# /flatad. (easylistchina+easylist.txt: 14276) -/(.*/)?flatad\. -flatad.*. -# /flashpeelads/* (easylistchina+easylist.txt: 14275) -/(.*/)?flashpeelads/.* -# /flashads/* (easylistchina+easylist.txt: 14274) -/(.*/)?flashads/.* -# /flashads. (easylistchina+easylist.txt: 14273) -/(.*/)?flashads\. -flashads.*. -# /flashad3. (easylistchina+easylist.txt: 14272) -/(.*/)?flashad3\. -flashad3.*. -# /flashad. (easylistchina+easylist.txt: 14271) -/(.*/)?flashad\. -flashad.*. -# /flash_ads. (easylistchina+easylist.txt: 14270) -/(.*/)?flash_ads\. -# /flash/advertis (easylistchina+easylist.txt: 14269) -/(.*/)?flash/advertis -# /flash/ads/* (easylistchina+easylist.txt: 14268) -/(.*/)?flash/ads/.* -# /flash/ad_ (easylistchina+easylist.txt: 14267) -/(.*/)?flash/ad_ -# /flash/ad/* (easylistchina+easylist.txt: 14266) -/(.*/)?flash/ad/.* -# /flash-ads/* (easylistchina+easylist.txt: 14265) -/(.*/)?flash-ads/.* -# /flash-ads. (easylistchina+easylist.txt: 14264) -/(.*/)?flash-ads\. -flash-ads.*. -# /flag_ads. (easylistchina+easylist.txt: 14263) -/(.*/)?flag_ads\. -# /first-ad_ (easylistchina+easylist.txt: 14262) -/(.*/)?first-ad_ -# /finads. (easylistchina+easylist.txt: 14261) -/(.*/)?finads\. -finads.*. -# /fimserve. (easylistchina+easylist.txt: 14260) -/(.*/)?fimserve\. -fimserve.*. -# /filter.php?pro$script (easylistchina+easylist.txt: 14259) -/(.*/)?filter\.php\?pro -# /files/ads/* (easylistchina+easylist.txt: 14258) -/(.*/)?files/ads/.* -# /files/ads- (easylistchina+easylist.txt: 14257) -/(.*/)?files/ads- -# /files/ad/* (easylistchina+easylist.txt: 14256) -/(.*/)?files/ad/.* -# /files/ad- (easylistchina+easylist.txt: 14255) -/(.*/)?files/ad- -# /file/ad. (easylistchina+easylist.txt: 14254) -/(.*/)?file/ad\. -# /feedads. (easylistchina+easylist.txt: 14253) -/(.*/)?feedads\. -feedads.*. -# /featuredadshome. (easylistchina+easylist.txt: 14252) -/(.*/)?featuredadshome\. -featuredadshome.*. -# /fea_ads. (easylistchina+easylist.txt: 14251) -/(.*/)?fea_ads\. -# /fc_ads. (easylistchina+easylist.txt: 14250) -/(.*/)?fc_ads\. -# /fbads/* (easylistchina+easylist.txt: 14249) -/(.*/)?fbads/.* -# /fatads. (easylistchina+easylist.txt: 14248) -/(.*/)?fatads\. -fatads.*. -# /fastclick728. (easylistchina+easylist.txt: 14247) -/(.*/)?fastclick728\. -fastclick728.*. -# /fastclick160. (easylistchina+easylist.txt: 14246) -/(.*/)?fastclick160\. -fastclick160.*. -# /fan-ads.$script (easylistchina+easylist.txt: 14245) -/(.*/)?fan-ads\. -fan-ads.*. -# /facebooksex. (easylistchina+easylist.txt: 14244) -/(.*/)?facebooksex\. -facebooksex.*. -# /facebookaff2/* (easylistchina+easylist.txt: 14243) -/(.*/)?facebookaff2/.* -# /facebookaff/* (easylistchina+easylist.txt: 14242) -/(.*/)?facebookaff/.* -# /eyewondermanagement28. (easylistchina+easylist.txt: 14241) -/(.*/)?eyewondermanagement28\. -eyewondermanagement28.*. -# /eyewondermanagement. (easylistchina+easylist.txt: 14240) -/(.*/)?eyewondermanagement\. -eyewondermanagement.*. -# /externalhtmladrenderer. (easylistchina+easylist.txt: 14239) -/(.*/)?externalhtmladrenderer\. -externalhtmladrenderer.*. -# /externalads/* (easylistchina+easylist.txt: 14238) -/(.*/)?externalads/.* -# /ExternalAdNetworkViewlogLogServlet? (easylistchina+easylist.txt: 14237) -/(.*/)?ExternalAdNetworkViewlogLogServlet\? -# /externalad. (easylistchina+easylist.txt: 14236) -/(.*/)?externalad\. -externalad.*. -# /external_ads. (easylistchina+easylist.txt: 14235) -/(.*/)?external_ads\. -# /external/ads/* (easylistchina+easylist.txt: 14234) -/(.*/)?external/ads/.* -# /external/ad/* (easylistchina+easylist.txt: 14233) -/(.*/)?external/ad/.* -# /external/ad. (easylistchina+easylist.txt: 14232) -/(.*/)?external/ad\. -# /extendedadvert. (easylistchina+easylist.txt: 14231) -/(.*/)?extendedadvert\. -extendedadvert.*. -# /extadv/* (easylistchina+easylist.txt: 14230) -/(.*/)?extadv/.* -# /ext_ads. (easylistchina+easylist.txt: 14229) -/(.*/)?ext_ads\. -# /ext/ads/* (easylistchina+easylist.txt: 14228) -/(.*/)?ext/ads/.* -# /exports/tour_20/* (easylistchina+easylist.txt: 14227) -/(.*/)?exports/tour_20/.* -# /exports/tour/*$third-party (easylistchina+easylist.txt: 14226) -/(.*/)?exports/tour/.* -# /expop.js (easylistchina+easylist.txt: 14225) -/(.*/)?expop\.js -expop.js*. -# /expandy-ads. (easylistchina+easylist.txt: 14224) -/(.*/)?expandy-ads\. -expandy-ads.*. -# /expandingads. (easylistchina+easylist.txt: 14223) -/(.*/)?expandingads\. -expandingads.*. -# /expandable_ad? (easylistchina+easylist.txt: 14222) -/(.*/)?expandable_ad\? -# /expandable_ad.php (easylistchina+easylist.txt: 14221) -/(.*/)?expandable_ad\.php -# /exoclickright3. (easylistchina+easylist.txt: 14220) -/(.*/)?exoclickright3\. -exoclickright3.*. -# /exoclickright2. (easylistchina+easylist.txt: 14219) -/(.*/)?exoclickright2\. -exoclickright2.*. -# /exoclickright1. (easylistchina+easylist.txt: 14218) -/(.*/)?exoclickright1\. -exoclickright1.*. -# /exoclickright. (easylistchina+easylist.txt: 14217) -/(.*/)?exoclickright\. -exoclickright.*. -# /exoclick. (easylistchina+easylist.txt: 14216) -/(.*/)?exoclick\. -exoclick.*. -# /exobanner. (easylistchina+easylist.txt: 14215) -/(.*/)?exobanner\. -exobanner.*. -# /exo120x60. (easylistchina+easylist.txt: 14214) -/(.*/)?exo120x60\. -exo120x60.*. -# /exitsplash. (easylistchina+easylist.txt: 14213) -/(.*/)?exitsplash\. -exitsplash.*. -# /exitpopup. (easylistchina+easylist.txt: 14212) -/(.*/)?exitpopup\. -exitpopup.*. -# /exitpopunder_ (easylistchina+easylist.txt: 14211) -/(.*/)?exitpopunder_ -# /exitpopunder. (easylistchina+easylist.txt: 14210) -/(.*/)?exitpopunder\. -exitpopunder.*. -# /exitpop. (easylistchina+easylist.txt: 14209) -/(.*/)?exitpop\. -exitpop.*. -# /exit_popup (easylistchina+easylist.txt: 14208) -/(.*/)?exit_popup -# /exchange_banner_ (easylistchina+easylist.txt: 14207) -/(.*/)?exchange_banner_ -# /excellence/ads/* (easylistchina+easylist.txt: 14206) -/(.*/)?excellence/ads/.* -# /event.ng/* (easylistchina+easylist.txt: 14205) -/(.*/)?event\.ng/.* -event.ng/.* -# /euads/* (easylistchina+easylist.txt: 14204) -/(.*/)?euads/.* -# /esi/ads/* (easylistchina+easylist.txt: 14202) -/(.*/)?esi/ads/.* -# /eshopoffer. (easylistchina+easylist.txt: 14201) -/(.*/)?eshopoffer\. -eshopoffer.*. -# /eros.htm (easylistchina+easylist.txt: 14200) -/(.*/)?eros\.htm -eros.htm*. -# /erobanner. (easylistchina+easylist.txt: 14199) -/(.*/)?erobanner\. -erobanner.*. -# /eroadvertorial3. (easylistchina+easylist.txt: 14198) -/(.*/)?eroadvertorial3\. -eroadvertorial3.*. -# /eroadvertorial2. (easylistchina+easylist.txt: 14197) -/(.*/)?eroadvertorial2\. -eroadvertorial2.*. -# /eroadvertising. (easylistchina+easylist.txt: 14196) -/(.*/)?eroadvertising\. -eroadvertising.*. -# /eroads. (easylistchina+easylist.txt: 14195) -/(.*/)?eroads\. -eroads.*. -# /eroad2. (easylistchina+easylist.txt: 14194) -/(.*/)?eroad2\. -eroad2.*. -# /eroad.php (easylistchina+easylist.txt: 14193) -/(.*/)?eroad\.php -eroad.php*. -# /ero_line_ (easylistchina+easylist.txt: 14192) -/(.*/)?ero_line_ -# /ero_hosted_ (easylistchina+easylist.txt: 14191) -/(.*/)?ero_hosted_ -# /ero.htm (easylistchina+easylist.txt: 14190) -/(.*/)?ero\.htm -ero.htm*. -# /ero-advertising. (easylistchina+easylist.txt: 14189) -/(.*/)?ero-advertising\. -ero-advertising.*. -# /ero-ads_ (easylistchina+easylist.txt: 14188) -/(.*/)?ero-ads_ -# /ero-ads- (easylistchina+easylist.txt: 14187) -/(.*/)?ero-ads- -ero-ads-*. -# /ero-1. (easylistchina+easylist.txt: 14186) -/(.*/)?ero-1\. -ero-1.*. -# /ept_in.php? (easylistchina+easylist.txt: 14185) -/(.*/)?ept_in\.php\? -# /eporner-banner- (easylistchina+easylist.txt: 14184) -/(.*/)?eporner-banner- -eporner-banner-*. -# /eplanningv4. (easylistchina+easylist.txt: 14183) -/(.*/)?eplanningv4\. -eplanningv4.*. -# /eng/ads/* (easylistchina+easylist.txt: 14182) -/(.*/)?eng/ads/.* -# /en/ads/* (easylistchina+easylist.txt: 14181) -/(.*/)?en/ads/.* -# /ems/ads. (easylistchina+easylist.txt: 14180) -/(.*/)?ems/ads\. -# /EmreAds. (easylistchina+easylist.txt: 14179) -/(.*/)?EmreAds\. -EmreAds.*. -# /emediatead. (easylistchina+easylist.txt: 14178) -/(.*/)?emediatead\. -emediatead.*. -# /embed_ad. (easylistchina+easylist.txt: 14177) -/(.*/)?embed_ad\. -# /emailads/* (easylistchina+easylist.txt: 14176) -/(.*/)?emailads/.* -# /eht.js?site_ (easylistchina+easylist.txt: 14175) -/(.*/)?eht\.js\?site_ -# /editable/ads/* (easylistchina+easylist.txt: 14174) -/(.*/)?editable/ads/.* -# /ecom/magnet. (easylistchina+easylist.txt: 14173) -/(.*/)?ecom/magnet\. -# /eco_ads/* (easylistchina+easylist.txt: 14172) -/(.*/)?eco_ads/.* -# /ebayad. (easylistchina+easylist.txt: 14171) -/(.*/)?ebayad\. -ebayad.*. -# /ebay_ads/* (easylistchina+easylist.txt: 14170) -/(.*/)?ebay_ads/.* -# /easyazon- (easylistchina+easylist.txt: 14169) -/(.*/)?easyazon- -easyazon-*. -# /easyadstrack. (easylistchina+easylist.txt: 14168) -/(.*/)?easyadstrack\. -easyadstrack.*. -# /easyads/* (easylistchina+easylist.txt: 14167) -/(.*/)?easyads/.* -# /easyads. (easylistchina+easylist.txt: 14166) -/(.*/)?easyads\. -easyads.*. -# /eas_tag.1.0.js (easylistchina+easylist.txt: 14165) -/(.*/)?eas_tag\.1\.0\.js -# /eas_fif. (easylistchina+easylist.txt: 14164) -/(.*/)?eas_fif\. -# /eas?cu=*;ord= (easylistchina+easylist.txt: 14163) -/(.*/)?eas\?cu=.*;ord= -# /eas?cu=*;cre= (easylistchina+easylist.txt: 14162) -/(.*/)?eas\?cu=.*;cre= -# /eas?camp=*;cre= (easylistchina+easylist.txt: 14161) -/(.*/)?eas\?camp=.*;cre= -# /eas?*^easformat= (easylistchina+easylist.txt: 14160) -/(.*/)?eas\?.*[^\w%.-]easformat= -# /eas-fif.htm (easylistchina+easylist.txt: 14159) -/(.*/)?eas-fif\.htm -eas-fif.htm*. -# /e-vertising/* (easylistchina+easylist.txt: 14158) -/(.*/)?e-vertising/.* -# /e-advertising/* (easylistchina+easylist.txt: 14157) -/(.*/)?e-advertising/.* -# /dynbanner/flash/* (easylistchina+easylist.txt: 14156) -/(.*/)?dynbanner/flash/.* -# /dynanews/ad- (easylistchina+easylist.txt: 14155) -/(.*/)?dynanews/ad- -# /dynamicvideoad? (easylistchina+easylist.txt: 14154) -/(.*/)?dynamicvideoad\? -# /dynamiccsad? (easylistchina+easylist.txt: 14153) -/(.*/)?dynamiccsad\? -# /dynamicad? (easylistchina+easylist.txt: 14152) -/(.*/)?dynamicad\? -# /DynamicAd/* (easylistchina+easylist.txt: 14151) -/(.*/)?DynamicAd/.* -# /dynamic_ads/* (easylistchina+easylist.txt: 14150) -/(.*/)?dynamic_ads/.* -# /dynamic/ads/* (easylistchina+easylist.txt: 14149) -/(.*/)?dynamic/ads/.* -# /dynamic-ad- (easylistchina+easylist.txt: 14148) -/(.*/)?dynamic-ad- -dynamic-ad-*. -# /dyn_banners_ (easylistchina+easylist.txt: 14147) -/(.*/)?dyn_banners_ -# /dyn_banner. (easylistchina+easylist.txt: 14146) -/(.*/)?dyn_banner\. -# /dxd/ads/* (easylistchina+easylist.txt: 14145) -/(.*/)?dxd/ads/.* -# /dtmads/* (easylistchina+easylist.txt: 14144) -/(.*/)?dtmads/.* -# /dtim300x250.$script (easylistchina+easylist.txt: 14143) -/(.*/)?dtim300x250\. -dtim300x250.*. -# /dtiadvert125x125. (easylistchina+easylist.txt: 14142) -/(.*/)?dtiadvert125x125\. -dtiadvert125x125.*. -# /dspads. (easylistchina+easylist.txt: 14141) -/(.*/)?dspads\. -dspads.*. -# /dsg/bnn/* (easylistchina+easylist.txt: 14140) -/(.*/)?dsg/bnn/.* -# /dropdown_ad. (easylistchina+easylist.txt: 14139) -/(.*/)?dropdown_ad\. -# /droelf.kit/a/* (easylistchina+easylist.txt: 14138) -/(.*/)?droelf\.kit/a/.* -droelf.kit/a/.* -# /drivingrevenue/* (easylistchina+easylist.txt: 14137) -/(.*/)?drivingrevenue/.* -# /driveragentad2. (easylistchina+easylist.txt: 14136) -/(.*/)?driveragentad2\. -driveragentad2.*. -# /driveragentad1. (easylistchina+easylist.txt: 14135) -/(.*/)?driveragentad1\. -driveragentad1.*. -# /drawad. (easylistchina+easylist.txt: 14134) -/(.*/)?drawad\. -drawad.*. -# /download/ads (easylistchina+easylist.txt: 14133) -/(.*/)?download/ads -# /download/ad/* (easylistchina+easylist.txt: 14132) -/(.*/)?download/ad/.* -# /download/ad. (easylistchina+easylist.txt: 14131) -/(.*/)?download/ad\. -# /downads. (easylistchina+easylist.txt: 14130) -/(.*/)?downads\. -downads.*. -# /doublepimp2.js (easylistchina+easylist.txt: 14129) -/(.*/)?doublepimp2\.js -doublepimp2.js*. -# /doubleclicktag. (easylistchina+easylist.txt: 14128) -/(.*/)?doubleclicktag\. -doubleclicktag.*. -# /doubleclickplugin. (easylistchina+easylist.txt: 14127) -/(.*/)?doubleclickplugin\. -doubleclickplugin.*. -# /doubleclickloader. (easylistchina+easylist.txt: 14126) -/(.*/)?doubleclickloader\. -doubleclickloader.*. -# /doubleclickinstreamad. (easylistchina+easylist.txt: 14125) -/(.*/)?doubleclickinstreamad\. -doubleclickinstreamad.*. -# /doubleclickcontainer. (easylistchina+easylist.txt: 14124) -/(.*/)?doubleclickcontainer\. -doubleclickcontainer.*. -# /doubleclickbannerad? (easylistchina+easylist.txt: 14123) -/(.*/)?doubleclickbannerad\? -# /doubleclickads? (easylistchina+easylist.txt: 14122) -/(.*/)?doubleclickads\? -# /doubleclickads/* (easylistchina+easylist.txt: 14121) -/(.*/)?doubleclickads/.* -# /doubleclickad. (easylistchina+easylist.txt: 14120) -/(.*/)?doubleclickad\. -doubleclickad.*. -# /doubleclick_ads/* (easylistchina+easylist.txt: 14119) -/(.*/)?doubleclick_ads/.* -# /doubleclick_ads. (easylistchina+easylist.txt: 14118) -/(.*/)?doubleclick_ads\. -# /doubleclick/iframe. (easylistchina+easylist.txt: 14117) -/(.*/)?doubleclick/iframe\. -# /doubleclick.swf (easylistchina+easylist.txt: 14116) -/(.*/)?doubleclick\.swf -doubleclick.swf*. -# /doubleclick.php (easylistchina+easylist.txt: 14115) -/(.*/)?doubleclick\.php -doubleclick.php*. -# /doubleclick.js (easylistchina+easylist.txt: 14114) -/(.*/)?doubleclick\.js -doubleclick.js*. -# /doubleclick.aspx (easylistchina+easylist.txt: 14113) -/(.*/)?doubleclick\.aspx -doubleclick.aspx*. -# /doors/ads/* (easylistchina+easylist.txt: 14112) -/(.*/)?doors/ads/.* -# /door/ads/* (easylistchina+easylist.txt: 14111) -/(.*/)?door/ads/.* -# /domainads/* (easylistchina+easylist.txt: 14110) -/(.*/)?domainads/.* -# /dnsads. (easylistchina+easylist.txt: 14109) -/(.*/)?dnsads\. -dnsads.*. -# /dns_ad/* (easylistchina+easylist.txt: 14108) -/(.*/)?dns_ad/.* -# /dne_ad. (easylistchina+easylist.txt: 14107) -/(.*/)?dne_ad\. -# /dmn-advert. (easylistchina+easylist.txt: 14106) -/(.*/)?dmn-advert\. -dmn-advert.*. -# /dlfeatads. (easylistchina+easylist.txt: 14105) -/(.*/)?dlfeatads\. -dlfeatads.*. -# /divad/* (easylistchina+easylist.txt: 14104) -/(.*/)?divad/.* -# /div-ads. (easylistchina+easylist.txt: 14103) -/(.*/)?div-ads\. -div-ads.*. -# /displaybanner/* (easylistchina+easylist.txt: 14102) -/(.*/)?displaybanner/.* -# /displayadsiframe. (easylistchina+easylist.txt: 14101) -/(.*/)?displayadsiframe\. -displayadsiframe.*. -# /displayads3. (easylistchina+easylist.txt: 14100) -/(.*/)?displayads3\. -displayads3.*. -# /displayads2. (easylistchina+easylist.txt: 14099) -/(.*/)?displayads2\. -displayads2.*. -# /displayads1. (easylistchina+easylist.txt: 14098) -/(.*/)?displayads1\. -displayads1.*. -# /displayads/* (easylistchina+easylist.txt: 14097) -/(.*/)?displayads/.* -# /displayads. (easylistchina+easylist.txt: 14096) -/(.*/)?displayads\. -displayads.*. -# /displayadleader. (easylistchina+easylist.txt: 14095) -/(.*/)?displayadleader\. -displayadleader.*. -# /displayadiframe. (easylistchina+easylist.txt: 14094) -/(.*/)?displayadiframe\. -displayadiframe.*. -# /displayadbanner_ (easylistchina+easylist.txt: 14093) -/(.*/)?displayadbanner_ -# /displayad? (easylistchina+easylist.txt: 14092) -/(.*/)?displayad\? -# /displayad/* (easylistchina+easylist.txt: 14091) -/(.*/)?displayad/.* -# /displayad. (easylistchina+easylist.txt: 14090) -/(.*/)?displayad\. -displayad.*. -# /display_ad (easylistchina+easylist.txt: 14089) -/(.*/)?display_ad -# /display?ad_ (easylistchina+easylist.txt: 14088) -/(.*/)?display\?ad_ -# /display.ad. (easylistchina+easylist.txt: 14087) -/(.*/)?display\.ad\. -display.ad.*. -# /display-ads/* (easylistchina+easylist.txt: 14086) -/(.*/)?display-ads/.* -# /display-ads- (easylistchina+easylist.txt: 14085) -/(.*/)?display-ads- -display-ads-*. -# /display-ad/* (easylistchina+easylist.txt: 14084) -/(.*/)?display-ad/.* -# /DispAd_ (easylistchina+easylist.txt: 14083) -/(.*/)?DispAd_ -# /discuss_ad/* (easylistchina+easylist.txt: 14082) -/(.*/)?discuss_ad/.* -# /directrev. (easylistchina+easylist.txt: 14081) -/(.*/)?directrev\. -directrev.*. -# /directadvert. (easylistchina+easylist.txt: 14080) -/(.*/)?directadvert\. -directadvert.*. -# /directads. (easylistchina+easylist.txt: 14079) -/(.*/)?directads\. -directads.*. -# /direct_ads. (easylistchina+easylist.txt: 14078) -/(.*/)?direct_ads\. -# /dinclinx.com/* (easylistchina+easylist.txt: 14077) -/(.*/)?dinclinx\.com/.* -dinclinx.com/.* -# /digg_ads_ (easylistchina+easylist.txt: 14076) -/(.*/)?digg_ads_ -# /digg_ads. (easylistchina+easylist.txt: 14075) -/(.*/)?digg_ads\. -# /digest/ads. (easylistchina+easylist.txt: 14074) -/(.*/)?digest/ads\. -# /dig_ad. (easylistchina+easylist.txt: 14073) -/(.*/)?dig_ad\. -# /dif/?cid (easylistchina+easylist.txt: 14072) -/(.*/)?dif/\?cid -# /dictionary/ads/* (easylistchina+easylist.txt: 14071) -/(.*/)?dictionary/ads/.* -# /dfpsearchads. (easylistchina+easylist.txt: 14070) -/(.*/)?dfpsearchads\. -dfpsearchads.*. -# /dfpsds. (easylistchina+easylist.txt: 14069) -/(.*/)?dfpsds\. -dfpsds.*. -# /dfpads. (easylistchina+easylist.txt: 14068) -/(.*/)?dfpads\. -dfpads.*. -# /dfp_delivery.js (easylistchina+easylist.txt: 14067) -/(.*/)?dfp_delivery\.js -# /dfp_ads/* (easylistchina+easylist.txt: 14066) -/(.*/)?dfp_ads/.* -# /dfp/jquery. (easylistchina+easylist.txt: 14065) -/(.*/)?dfp/jquery\. -# /dfp/head/* (easylistchina+easylist.txt: 14064) -/(.*/)?dfp/head/.* -# /dfp/dc.js (easylistchina+easylist.txt: 14063) -/(.*/)?dfp/dc\.js -# /dfp/blocks/* (easylistchina+easylist.txt: 14062) -/(.*/)?dfp/blocks/.* -# /dfp/async. (easylistchina+easylist.txt: 14061) -/(.*/)?dfp/async\. -# /dfp.js (easylistchina+easylist.txt: 14060) -/(.*/)?dfp\.js -dfp.js*. -# /dfp-custom/* (easylistchina+easylist.txt: 14059) -/(.*/)?dfp-custom/.* -# /devicead/* (easylistchina+easylist.txt: 14058) -/(.*/)?devicead/.* -# /develop/ads_ (easylistchina+easylist.txt: 14057) -/(.*/)?develop/ads_ -# /design/ads/* (easylistchina+easylist.txt: 14056) -/(.*/)?design/ads/.* -# /descpopup.js (easylistchina+easylist.txt: 14055) -/(.*/)?descpopup\.js -descpopup.js*. -# /DemoAd. (easylistchina+easylist.txt: 14054) -/(.*/)?DemoAd\. -DemoAd.*. -# /demo/ads/* (easylistchina+easylist.txt: 14053) -/(.*/)?demo/ads/.* -# /delivery_ads/* (easylistchina+easylist.txt: 14052) -/(.*/)?delivery_ads/.* -# /delivery/vbafr.php (easylistchina+easylist.txt: 14051) -/(.*/)?delivery/vbafr\.php -# /delivery/spc. (easylistchina+easylist.txt: 14050) -/(.*/)?delivery/spc\. -# /delivery/lg. (easylistchina+easylist.txt: 14049) -/(.*/)?delivery/lg\. -# /delivery/fl. (easylistchina+easylist.txt: 14048) -/(.*/)?delivery/fl\. -# /delivery/fc. (easylistchina+easylist.txt: 14047) -/(.*/)?delivery/fc\. -# /delivery/avw. (easylistchina+easylist.txt: 14046) -/(.*/)?delivery/avw\. -# /delivery/apu.php (easylistchina+easylist.txt: 14045) -/(.*/)?delivery/apu\.php -# /delivery/al.php (easylistchina+easylist.txt: 14044) -/(.*/)?delivery/al\.php -# /delivery/ag. (easylistchina+easylist.txt: 14043) -/(.*/)?delivery/ag\. -# /delivery/afr. (easylistchina+easylist.txt: 14042) -/(.*/)?delivery/afr\. -# /delivery/*?advplaces= (easylistchina+easylist.txt: 14041) -/(.*/)?delivery/.*\?advplaces= -# /delivery.php?rnd= (easylistchina+easylist.txt: 14040) -/(.*/)?delivery\.php\?rnd= -# /delivery.php?pool_id= (easylistchina+easylist.txt: 14039) -/(.*/)?delivery\.php\?pool_id= -# /delivery.ads. (easylistchina+easylist.txt: 14038) -/(.*/)?delivery\.ads\. -delivery.ads.*. -# /deliversds. (easylistchina+easylist.txt: 14037) -/(.*/)?deliversds\. -deliversds.*. -# /deliversd/* (easylistchina+easylist.txt: 14036) -/(.*/)?deliversd/.* -# /deliverjs.nmi? (easylistchina+easylist.txt: 14035) -/(.*/)?deliverjs\.nmi\? -# /deliverads. (easylistchina+easylist.txt: 14034) -/(.*/)?deliverads\. -deliverads.*. -# /deliverad/* (easylistchina+easylist.txt: 14033) -/(.*/)?deliverad/.* -# /deliver.nmi? (easylistchina+easylist.txt: 14032) -/(.*/)?deliver\.nmi\? -# /deliver.jphp? (easylistchina+easylist.txt: 14031) -/(.*/)?deliver\.jphp\? -# /delayedad. (easylistchina+easylist.txt: 14030) -/(.*/)?delayedad\. -delayedad.*. -# /defersds. (easylistchina+easylist.txt: 14029) -/(.*/)?defersds\. -defersds.*. -# /deferads. (easylistchina+easylist.txt: 14028) -/(.*/)?deferads\. -deferads.*. -# /defer_ads. (easylistchina+easylist.txt: 14027) -/(.*/)?defer_ads\. -# /defaults_ads/* (easylistchina+easylist.txt: 14026) -/(.*/)?defaults_ads/.* -# /defaultad? (easylistchina+easylist.txt: 14025) -/(.*/)?defaultad\? -# /default_oas. (easylistchina+easylist.txt: 14024) -/(.*/)?default_oas\. -# /default_adv. (easylistchina+easylist.txt: 14023) -/(.*/)?default_adv\. -# /default_ads/* (easylistchina+easylist.txt: 14022) -/(.*/)?default_ads/.* -# /default/ads/* (easylistchina+easylist.txt: 14021) -/(.*/)?default/ads/.* -# /default-adv/* (easylistchina+easylist.txt: 14020) -/(.*/)?default-adv/.* -# /de/ads/* (easylistchina+easylist.txt: 14019) -/(.*/)?de/ads/.* -# /ddlads/* (easylistchina+easylist.txt: 14018) -/(.*/)?ddlads/.* -# /dcloadads/* (easylistchina+easylist.txt: 14017) -/(.*/)?dcloadads/.* -# /dclk_ads_ (easylistchina+easylist.txt: 14016) -/(.*/)?dclk_ads_ -# /dclk_ads. (easylistchina+easylist.txt: 14015) -/(.*/)?dclk_ads\. -# /dclk/dfp/* (easylistchina+easylist.txt: 14014) -/(.*/)?dclk/dfp/.* -# /dblclickad. (easylistchina+easylist.txt: 14013) -/(.*/)?dblclickad\. -dblclickad.*. -# /dblclick. (easylistchina+easylist.txt: 14012) -/(.*/)?dblclick\. -dblclick.*. -# /dateads. (easylistchina+easylist.txt: 14011) -/(.*/)?dateads\. -dateads.*. -# /data/init?site_id= (easylistchina+easylist.txt: 14010) -/(.*/)?data/init\?site_id= -# /data/init2?site_id= (easylistchina+easylist.txt: 14009) -/(.*/)?data/init2\?site_id= -# /data/ads/* (easylistchina+easylist.txt: 14008) -/(.*/)?data/ads/.* -# /dartfunctions. (easylistchina+easylist.txt: 14007) -/(.*/)?dartfunctions\. -dartfunctions.*. -# /dartcall. (easylistchina+easylist.txt: 14006) -/(.*/)?dartcall\. -dartcall.*. -# /dartads. (easylistchina+easylist.txt: 14005) -/(.*/)?dartads\. -dartads.*. -# /dartadengine2. (easylistchina+easylist.txt: 14004) -/(.*/)?dartadengine2\. -dartadengine2.*. -# /dartadengine. (easylistchina+easylist.txt: 14003) -/(.*/)?dartadengine\. -dartadengine.*. -# /dartad/* (easylistchina+easylist.txt: 14002) -/(.*/)?dartad/.* -# /dart_enhancements/* (easylistchina+easylist.txt: 14001) -/(.*/)?dart_enhancements/.* -# /dart_ads/* (easylistchina+easylist.txt: 14000) -/(.*/)?dart_ads/.* -# /dart_ads. (easylistchina+easylist.txt: 13999) -/(.*/)?dart_ads\. -# /daily/ads/* (easylistchina+easylist.txt: 13998) -/(.*/)?daily/ads/.* -# /d/ads/* (easylistchina+easylist.txt: 13997) -/(.*/)?d/ads/.* -# /cwggoogleadshow. (easylistchina+easylist.txt: 13996) -/(.*/)?cwggoogleadshow\. -cwggoogleadshow.*. -# /cvs/ads/* (easylistchina+easylist.txt: 13995) -/(.*/)?cvs/ads/.* -# /cutead. (easylistchina+easylist.txt: 13994) -/(.*/)?cutead\. -cutead.*. -# /customerad_ (easylistchina+easylist.txt: 13993) -/(.*/)?customerad_ -# /customcontrols/ads/* (easylistchina+easylist.txt: 13992) -/(.*/)?customcontrols/ads/.* -# /customadsense. (easylistchina+easylist.txt: 13991) -/(.*/)?customadsense\. -customadsense.*. -# /customads/* (easylistchina+easylist.txt: 13990) -/(.*/)?customads/.* -# /customadmode. (easylistchina+easylist.txt: 13989) -/(.*/)?customadmode\. -customadmode.*. -# /customad. (easylistchina+easylist.txt: 13988) -/(.*/)?customad\. -customad.*. -# /custom_ads/* (easylistchina+easylist.txt: 13987) -/(.*/)?custom_ads/.* -# /custom11x5ad. (easylistchina+easylist.txt: 13986) -/(.*/)?custom11x5ad\. -custom11x5ad.*. -# /custom/doubleclick/* (easylistchina+easylist.txt: 13985) -/(.*/)?custom/doubleclick/.* -# /custom/ads (easylistchina+easylist.txt: 13984) -/(.*/)?custom/ads -# /custads/* (easylistchina+easylist.txt: 13983) -/(.*/)?custads/.* -# /curveball/ads/* (easylistchina+easylist.txt: 13982) -/(.*/)?curveball/ads/.* -# /curlad. (easylistchina+easylist.txt: 13981) -/(.*/)?curlad\. -curlad.*. -# /cubeads_ (easylistchina+easylist.txt: 13980) -/(.*/)?cubeads_ -# /cubeads/* (easylistchina+easylist.txt: 13979) -/(.*/)?cubeads/.* -# /cubead. (easylistchina+easylist.txt: 13978) -/(.*/)?cubead\. -cubead.*. -# /cube_ads/* (easylistchina+easylist.txt: 13977) -/(.*/)?cube_ads/.* -# /ctamlive160x160. (easylistchina+easylist.txt: 13976) -/(.*/)?ctamlive160x160\. -ctamlive160x160.*. -# /cssjs/ads/* (easylistchina+easylist.txt: 13975) -/(.*/)?cssjs/ads/.* -# /css/adv. (easylistchina+easylist.txt: 13974) -/(.*/)?css/adv\. -# /css/adsense (easylistchina+easylist.txt: 13973) -/(.*/)?css/adsense -# /css/ads. (easylistchina+easylist.txt: 13972) -/(.*/)?css/ads\. -# /css/ads- (easylistchina+easylist.txt: 13971) -/(.*/)?css/ads- -# /css/ad. (easylistchina+easylist.txt: 13970) -/(.*/)?css/ad\. -# /csp/ads? (easylistchina+easylist.txt: 13969) -/(.*/)?csp/ads\? -# /crossoverad- (easylistchina+easylist.txt: 13968) -/(.*/)?crossoverad- -crossoverad-*. -# /cramitin/ads_ (easylistchina+easylist.txt: 13967) -/(.*/)?cramitin/ads_ -# /cpxads. (easylistchina+easylist.txt: 13966) -/(.*/)?cpxads\. -cpxads.*. -# /cpx_ads. (easylistchina+easylist.txt: 13965) -/(.*/)?cpx_ads\. -# /cpx-ad. (easylistchina+easylist.txt: 13964) -/(.*/)?cpx-ad\. -cpx-ad.*. -# /cpmrect. (easylistchina+easylist.txt: 13963) -/(.*/)?cpmrect\. -cpmrect.*. -# /cpmcampaigns/* (easylistchina+easylist.txt: 13962) -/(.*/)?cpmcampaigns/.* -# /cpmbanner. (easylistchina+easylist.txt: 13961) -/(.*/)?cpmbanner\. -cpmbanner.*. -# /cpm_ad. (easylistchina+easylist.txt: 13960) -/(.*/)?cpm_ad\. -# /cpm728. (easylistchina+easylist.txt: 13959) -/(.*/)?cpm728\. -cpm728.*. -# /cpm160. (easylistchina+easylist.txt: 13958) -/(.*/)?cpm160\. -cpm160.*. -# /coxads/* (easylistchina+easylist.txt: 13957) -/(.*/)?coxads/.* -# /country_ad. (easylistchina+easylist.txt: 13956) -/(.*/)?country_ad\. -# /cornersmall.swf (easylistchina+easylist.txt: 13955) -/(.*/)?cornersmall\.swf -cornersmall.swf*. -# /cornerbig.swf (easylistchina+easylist.txt: 13954) -/(.*/)?cornerbig\.swf -cornerbig.swf*. -# /corner_ads/* (easylistchina+easylist.txt: 13953) -/(.*/)?corner_ads/.* -# /corner-ad. (easylistchina+easylist.txt: 13952) -/(.*/)?corner-ad\. -corner-ad.*. -# /coread/* (easylistchina+easylist.txt: 13951) -/(.*/)?coread/.* -# /core/ads/* (easylistchina+easylist.txt: 13950) -/(.*/)?core/ads/.* -# /core/ad/* (easylistchina+easylist.txt: 13949) -/(.*/)?core/ad/.* -# /core-ads- (easylistchina+easylist.txt: 13948) -/(.*/)?core-ads- -core-ads-*. -# /convertjsontoad. (easylistchina+easylist.txt: 13947) -/(.*/)?convertjsontoad\. -convertjsontoad.*. -# /controllerimg/adv/* (easylistchina+easylist.txt: 13946) -/(.*/)?controllerimg/adv/.* -# /controller/ads/* (easylistchina+easylist.txt: 13945) -/(.*/)?controller/ads/.* -# /contribute_ad. (easylistchina+easylist.txt: 13944) -/(.*/)?contribute_ad\. -# /contpop.js| (easylistchina+easylist.txt: 13943) -/(.*/)?contpop\.js$ -contpop.js -# /contextualad. (easylistchina+easylist.txt: 13942) -/(.*/)?contextualad\. -contextualad.*. -# /contextads. (easylistchina+easylist.txt: 13941) -/(.*/)?contextads\. -contextads.*. -# /contextad. (easylistchina+easylist.txt: 13940) -/(.*/)?contextad\. -contextad.*. -# /context_ads. (easylistchina+easylist.txt: 13939) -/(.*/)?context_ads\. -# /context_ad/* (easylistchina+easylist.txt: 13938) -/(.*/)?context_ad/.* -# /contentad| (easylistchina+easylist.txt: 13937) -/(.*/)?contentad$ -# /contentadxxl. (easylistchina+easylist.txt: 13936) -/(.*/)?contentadxxl\. -contentadxxl.*. -# /contentadvert1. (easylistchina+easylist.txt: 13935) -/(.*/)?contentadvert1\. -contentadvert1.*. -# /contentAdServlet? (easylistchina+easylist.txt: 13934) -/(.*/)?contentAdServlet\? -# /contentad_ (easylistchina+easylist.txt: 13933) -/(.*/)?contentad_ -# /contentad/* (easylistchina+easylist.txt: 13932) -/(.*/)?contentad/.* -# /contentAd. (easylistchina+easylist.txt: 13931) -/(.*/)?contentAd\. -contentAd.*. -# /content_ad_ (easylistchina+easylist.txt: 13930) -/(.*/)?content_ad_ -# /content_ad. (easylistchina+easylist.txt: 13929) -/(.*/)?content_ad\. -# /content/adv/* (easylistchina+easylist.txt: 13928) -/(.*/)?content/adv/.* -# /content/ads/* (easylistchina+easylist.txt: 13927) -/(.*/)?content/ads/.* -# /content/ad_ (easylistchina+easylist.txt: 13926) -/(.*/)?content/ad_ -# /content/ad/* (easylistchina+easylist.txt: 13925) -/(.*/)?content/ad/.* -# /content-ads. (easylistchina+easylist.txt: 13924) -/(.*/)?content-ads\. -content-ads.*. -# /contaxe_ (easylistchina+easylist.txt: 13923) -/(.*/)?contaxe_ -# /contads. (easylistchina+easylist.txt: 13922) -/(.*/)?contads\. -contads.*. -# /cont-adv. (easylistchina+easylist.txt: 13921) -/(.*/)?cont-adv\. -cont-adv.*. -# /configspace/ads/* (easylistchina+easylist.txt: 13920) -/(.*/)?configspace/ads/.* -# /conad_ (easylistchina+easylist.txt: 13919) -/(.*/)?conad_ -# /conad. (easylistchina+easylist.txt: 13918) -/(.*/)?conad\. -conad.*. -# /components/ads_ (easylistchina+easylist.txt: 13917) -/(.*/)?components/ads_ -# /components/ads/* (easylistchina+easylist.txt: 13916) -/(.*/)?components/ads/.* -# /compban.html? (easylistchina+easylist.txt: 13915) -/(.*/)?compban\.html\? -# /companionAdFunc. (easylistchina+easylist.txt: 13914) -/(.*/)?companionAdFunc\. -companionAdFunc.*. -# /companion_ads. (easylistchina+easylist.txt: 13913) -/(.*/)?companion_ads\. -# /companion_ad. (easylistchina+easylist.txt: 13912) -/(.*/)?companion_ad\. -# /commspace_ad. (easylistchina+easylist.txt: 13911) -/(.*/)?commspace_ad\. -# /commons/ad/* (easylistchina+easylist.txt: 13910) -/(.*/)?commons/ad/.* -# /common_ad. (easylistchina+easylist.txt: 13909) -/(.*/)?common_ad\. -# /common/results.htm?block=*[colorAdSeparator]$subdocument,~third-party (easylistchina+easylist.txt: 13908) -/(.*/)?common/results\.htm\?block=.*\[colorAdSeparator\] -# /common/dart_wrapper_ (easylistchina+easylist.txt: 13907) -/(.*/)?common/dart_wrapper_ -# /common/adv_ (easylistchina+easylist.txt: 13906) -/(.*/)?common/adv_ -# /common/ads/* (easylistchina+easylist.txt: 13905) -/(.*/)?common/ads/.* -# /common/ad_ (easylistchina+easylist.txt: 13904) -/(.*/)?common/ad_ -# /common/ad/* (easylistchina+easylist.txt: 13903) -/(.*/)?common/ad/.* -# /common/ad. (easylistchina+easylist.txt: 13902) -/(.*/)?common/ad\. -# /common-ads/* (easylistchina+easylist.txt: 13901) -/(.*/)?common-ads/.* -# /commercial_top. (easylistchina+easylist.txt: 13900) -/(.*/)?commercial_top\. -# /commercial_horizontal. (easylistchina+easylist.txt: 13899) -/(.*/)?commercial_horizontal\. -# /comment-ad. (easylistchina+easylist.txt: 13898) -/(.*/)?comment-ad\. -comment-ad.*. -# /comment-ad- (easylistchina+easylist.txt: 13897) -/(.*/)?comment-ad- -comment-ad-*. -# /combo?darla/* (easylistchina+easylist.txt: 13896) -/(.*/)?combo\?darla/.* -# /com/ads/* (easylistchina+easylist.txt: 13895) -/(.*/)?com/ads/.* -# /columnads/* (easylistchina+easylist.txt: 13894) -/(.*/)?columnads/.* -# /columnadcounter. (easylistchina+easylist.txt: 13893) -/(.*/)?columnadcounter\. -columnadcounter.*. -# /colorscheme/ads/* (easylistchina+easylist.txt: 13892) -/(.*/)?colorscheme/ads/.* -# /collisionadmarker. (easylistchina+easylist.txt: 13891) -/(.*/)?collisionadmarker\. -collisionadmarker.*. -# /coldseal_ad. (easylistchina+easylist.txt: 13890) -/(.*/)?coldseal_ad\. -# /codaadconfig. (easylistchina+easylist.txt: 13889) -/(.*/)?codaadconfig\. -codaadconfig.*. -# /cnxad- (easylistchina+easylist.txt: 13888) -/(.*/)?cnxad- -cnxad-*. -# /cnnslads. (easylistchina+easylist.txt: 13887) -/(.*/)?cnnslads\. -cnnslads.*. -# /cnads.js (easylistchina+easylist.txt: 13886) -/(.*/)?cnads\.js -cnads.js*. -# /cn-advert. (easylistchina+easylist.txt: 13885) -/(.*/)?cn-advert\. -cn-advert.*. -# /cms/js/ad_ (easylistchina+easylist.txt: 13884) -/(.*/)?cms/js/ad_ -# /cms/ads/* (easylistchina+easylist.txt: 13883) -/(.*/)?cms/ads/.* -# /cm/ads/* (easylistchina+easylist.txt: 13882) -/(.*/)?cm/ads/.* -# /clkads. (easylistchina+easylist.txt: 13881) -/(.*/)?clkads\. -clkads.*. -# /clients/ads/* (easylistchina+easylist.txt: 13880) -/(.*/)?clients/ads/.* -# /clickunder. (easylistchina+easylist.txt: 13879) -/(.*/)?clickunder\. -clickunder.*. -# /clicksor. (easylistchina+easylist.txt: 13878) -/(.*/)?clicksor\. -clicksor.*. -# /clickboothad. (easylistchina+easylist.txt: 13877) -/(.*/)?clickboothad\. -clickboothad.*. -# /click/creative/* (easylistchina+easylist.txt: 13876) -/(.*/)?click/creative/.* -# /click/ads_ (easylistchina+easylist.txt: 13875) -/(.*/)?click/ads_ -# /classifieds/banners/* (easylistchina+easylist.txt: 13874) -/(.*/)?classifieds/banners/.* -# /ClassAds/* (easylistchina+easylist.txt: 13873) -/(.*/)?ClassAds/.* -# /clarityray.js (easylistchina+easylist.txt: 13872) -/(.*/)?clarityray\.js -clarityray.js*. -# /ck.php?nids (easylistchina+easylist.txt: 13871) -/(.*/)?ck\.php\?nids -# /cjadsprite. (easylistchina+easylist.txt: 13870) -/(.*/)?cjadsprite\. -cjadsprite.*. -# /circads. (easylistchina+easylist.txt: 13869) -/(.*/)?circads\. -circads.*. -# /ciaad. (easylistchina+easylist.txt: 13868) -/(.*/)?ciaad\. -ciaad.*. -# /chrome-ad. (easylistchina+easylist.txt: 13867) -/(.*/)?chrome-ad\. -chrome-ad.*. -# /chitika-ad? (easylistchina+easylist.txt: 13866) -/(.*/)?chitika-ad\? -# /chinaadclient. (easylistchina+easylist.txt: 13865) -/(.*/)?chinaadclient\. -chinaadclient.*. -# /checkm8header_ (easylistchina+easylist.txt: 13864) -/(.*/)?checkm8header_ -# /checkm8footer_ (easylistchina+easylist.txt: 13863) -/(.*/)?checkm8footer_ -# /channelblockads. (easylistchina+easylist.txt: 13862) -/(.*/)?channelblockads\. -channelblockads.*. -# /cgi/ad_ (easylistchina+easylist.txt: 13861) -/(.*/)?cgi/ad_ -# /cgi-exe/ad. (easylistchina+easylist.txt: 13860) -/(.*/)?cgi-exe/ad\. -# /cgi-bin/ads_ (easylistchina+easylist.txt: 13859) -/(.*/)?cgi-bin/ads_ -# /cgi-bin/ads/* (easylistchina+easylist.txt: 13858) -/(.*/)?cgi-bin/ads/.* -# /cgi-bin/ads. (easylistchina+easylist.txt: 13857) -/(.*/)?cgi-bin/ads\. -# /cgi-bin/ad/* (easylistchina+easylist.txt: 13856) -/(.*/)?cgi-bin/ad/.* -# /ceoads/* (easylistchina+easylist.txt: 13855) -/(.*/)?ceoads/.* -# /centralresource/ad_ (easylistchina+easylist.txt: 13854) -/(.*/)?centralresource/ad_ -# /central/ads/* (easylistchina+easylist.txt: 13853) -/(.*/)?central/ads/.* -# /centerads. (easylistchina+easylist.txt: 13852) -/(.*/)?centerads\. -centerads.*. -# /cdn.ads. (easylistchina+easylist.txt: 13851) -/(.*/)?cdn\.ads\. -cdn.ads.*. -# /cci-ads- (easylistchina+easylist.txt: 13850) -/(.*/)?cci-ads- -cci-ads-*. -# /cb.php?sub$script,third-party (easylistchina+easylist.txt: 13849) -/(.*/)?cb\.php\?sub -# /catfishads/* (easylistchina+easylist.txt: 13848) -/(.*/)?catfishads/.* -# /category-sponsorship/* (easylistchina+easylist.txt: 13847) -/(.*/)?category-sponsorship/.* -# /cashad2. (easylistchina+easylist.txt: 13846) -/(.*/)?cashad2\. -cashad2.*. -# /cashad. (easylistchina+easylist.txt: 13845) -/(.*/)?cashad\. -cashad.*. -# /carsadtaggenerator.js (easylistchina+easylist.txt: 13844) -/(.*/)?carsadtaggenerator\.js -carsadtaggenerator.js*. -# /carbonads/* (easylistchina+easylist.txt: 13843) -/(.*/)?carbonads/.* -# /carbonads- (easylistchina+easylist.txt: 13842) -/(.*/)?carbonads- -carbonads-*. -# /campus/ads/* (easylistchina+easylist.txt: 13841) -/(.*/)?campus/ads/.* -# /campaign/advertiser_ (easylistchina+easylist.txt: 13840) -/(.*/)?campaign/advertiser_ -# /camfuzeads/* (easylistchina+easylist.txt: 13839) -/(.*/)?camfuzeads/.* -# /camaoAdsenseHomepage. (easylistchina+easylist.txt: 13838) -/(.*/)?camaoAdsenseHomepage\. -camaoAdsenseHomepage.*. -# /camaoadsense. (easylistchina+easylist.txt: 13837) -/(.*/)?camaoadsense\. -camaoadsense.*. -# /callAdserver? (easylistchina+easylist.txt: 13836) -/(.*/)?callAdserver\? -# /callads5. (easylistchina+easylist.txt: 13835) -/(.*/)?callads5\. -callads5.*. -# /call_ads/* (easylistchina+easylist.txt: 13834) -/(.*/)?call_ads/.* -# /call/pubj/* (easylistchina+easylist.txt: 13833) -/(.*/)?call/pubj/.* -# /call/pubif/* (easylistchina+easylist.txt: 13832) -/(.*/)?call/pubif/.* -# /calendar-ads/* (easylistchina+easylist.txt: 13831) -/(.*/)?calendar-ads/.* -# /cads-min.js (easylistchina+easylist.txt: 13830) -/(.*/)?cads-min\.js -cads-min.js*. -# /cache/ads_ (easylistchina+easylist.txt: 13829) -/(.*/)?cache/ads_ -# /bytemark_ad. (easylistchina+easylist.txt: 13828) -/(.*/)?bytemark_ad\. -# /buzz/ads/* (easylistchina+easylist.txt: 13827) -/(.*/)?buzz/ads/.* -# /buysellads. (easylistchina+easylist.txt: 13826) -/(.*/)?buysellads\. -buysellads.*. -# /buysellads- (easylistchina+easylist.txt: 13825) -/(.*/)?buysellads- -buysellads-*. -# /buyer/dyad/* (easylistchina+easylist.txt: 13824) -/(.*/)?buyer/dyad/.* -# /buyclicks/* (easylistchina+easylist.txt: 13823) -/(.*/)?buyclicks/.* -# /buyad. (easylistchina+easylist.txt: 13822) -/(.*/)?buyad\. -buyad.*. -# /buttonads/* (easylistchina+easylist.txt: 13821) -/(.*/)?buttonads/.* -# /buttonads. (easylistchina+easylist.txt: 13820) -/(.*/)?buttonads\. -buttonads.*. -# /buttonad/* (easylistchina+easylist.txt: 13819) -/(.*/)?buttonad/.* -# /button_ads/* (easylistchina+easylist.txt: 13818) -/(.*/)?button_ads/.* -# /butler.php?type= (easylistchina+easylist.txt: 13817) -/(.*/)?butler\.php\?type= -# /burt/adv_ (easylistchina+easylist.txt: 13816) -/(.*/)?burt/adv_ -# /buddyw_ad. (easylistchina+easylist.txt: 13815) -/(.*/)?buddyw_ad\. -# /bucketads. (easylistchina+easylist.txt: 13814) -/(.*/)?bucketads\. -bucketads.*. -# /btn_ad_ (easylistchina+easylist.txt: 13813) -/(.*/)?btn_ad_ -# /btmadsx. (easylistchina+easylist.txt: 13812) -/(.*/)?btmadsx\. -btmadsx.*. -# /btmads. (easylistchina+easylist.txt: 13811) -/(.*/)?btmads\. -btmads.*. -# /btbuckets/btb.js (easylistchina+easylist.txt: 13810) -/(.*/)?btbuckets/btb\.js -# /bserver/* (easylistchina+easylist.txt: 13809) -/(.*/)?bserver/.* -# /brightcovead. (easylistchina+easylist.txt: 13808) -/(.*/)?brightcovead\. -brightcovead.*. -# /breakad_ (easylistchina+easylist.txt: 13807) -/(.*/)?breakad_ -# /boxad_ (easylistchina+easylist.txt: 13806) -/(.*/)?boxad_ -# /boxad3. (easylistchina+easylist.txt: 13805) -/(.*/)?boxad3\. -boxad3.*. -# /boxad2. (easylistchina+easylist.txt: 13804) -/(.*/)?boxad2\. -boxad2.*. -# /boxad1. (easylistchina+easylist.txt: 13803) -/(.*/)?boxad1\. -boxad1.*. -# /boxad. (easylistchina+easylist.txt: 13802) -/(.*/)?boxad\. -boxad.*. -# /box_ads_ (easylistchina+easylist.txt: 13801) -/(.*/)?box_ads_ -# /box_ad_ (easylistchina+easylist.txt: 13800) -/(.*/)?box_ad_ -# /bottomsidead/* (easylistchina+easylist.txt: 13799) -/(.*/)?bottomsidead/.* -# /bottomads. (easylistchina+easylist.txt: 13798) -/(.*/)?bottomads\. -bottomads.*. -# /bottomad/* (easylistchina+easylist.txt: 13797) -/(.*/)?bottomad/.* -# /bottomad. (easylistchina+easylist.txt: 13796) -/(.*/)?bottomad\. -bottomad.*. -# /bottom_adv_ (easylistchina+easylist.txt: 13795) -/(.*/)?bottom_adv_ -# /bottom_adv. (easylistchina+easylist.txt: 13794) -/(.*/)?bottom_adv\. -# /bottom_ads. (easylistchina+easylist.txt: 13793) -/(.*/)?bottom_ads\. -# /bottom_ad. (easylistchina+easylist.txt: 13792) -/(.*/)?bottom_ad\. -# /bottom-advert- (easylistchina+easylist.txt: 13791) -/(.*/)?bottom-advert- -bottom-advert-*. -# /bottom-ads. (easylistchina+easylist.txt: 13790) -/(.*/)?bottom-ads\. -bottom-ads.*. -# /bottom-ad- (easylistchina+easylist.txt: 13789) -/(.*/)?bottom-ad- -bottom-ad-*. -# /boomad. (easylistchina+easylist.txt: 13788) -/(.*/)?boomad\. -boomad.*. -# /bookads2. (easylistchina+easylist.txt: 13787) -/(.*/)?bookads2\. -bookads2.*. -# /bookads. (easylistchina+easylist.txt: 13786) -/(.*/)?bookads\. -bookads.*. -# /bookad/* (easylistchina+easylist.txt: 13785) -/(.*/)?bookad/.* -# /BOM/Ads/* (easylistchina+easylist.txt: 13784) -/(.*/)?BOM/Ads/.* -# /bodyads/* (easylistchina+easylist.txt: 13783) -/(.*/)?bodyads/.* -# /bnrsrv. (easylistchina+easylist.txt: 13782) -/(.*/)?bnrsrv\. -bnrsrv.*. -# /bnrimg. (easylistchina+easylist.txt: 13781) -/(.*/)?bnrimg\. -bnrimg.*. -# /bnrad/* (easylistchina+easylist.txt: 13780) -/(.*/)?bnrad/.* -# /bnr_show.php?id=$script (easylistchina+easylist.txt: 13779) -/(.*/)?bnr_show\.php\?id= -# /bnr.php? (easylistchina+easylist.txt: 13778) -/(.*/)?bnr\.php\? -# /bmndoubleclickad. (easylistchina+easylist.txt: 13777) -/(.*/)?bmndoubleclickad\. -bmndoubleclickad.*. -# /blogoas- (easylistchina+easylist.txt: 13776) -/(.*/)?blogoas- -blogoas-*. -# /bloggerex. (easylistchina+easylist.txt: 13775) -/(.*/)?bloggerex\. -bloggerex.*. -# /blogadsbg. (easylistchina+easylist.txt: 13774) -/(.*/)?blogadsbg\. -blogadsbg.*. -# /blogads_ (easylistchina+easylist.txt: 13773) -/(.*/)?blogads_ -# /blogads3/* (easylistchina+easylist.txt: 13772) -/(.*/)?blogads3/.* -# /blogads2_ (easylistchina+easylist.txt: 13771) -/(.*/)?blogads2_ -# /blogads/* (easylistchina+easylist.txt: 13770) -/(.*/)?blogads/.* -# /blogads. (easylistchina+easylist.txt: 13769) -/(.*/)?blogads\. -blogads.*. -# /blogads- (easylistchina+easylist.txt: 13768) -/(.*/)?blogads- -blogads-*. -# /blogad_ (easylistchina+easylist.txt: 13767) -/(.*/)?blogad_ -# /blogad02. (easylistchina+easylist.txt: 13766) -/(.*/)?blogad02\. -blogad02.*. -# /blogad. (easylistchina+easylist.txt: 13765) -/(.*/)?blogad\. -blogad.*. -# /blog_ads/* (easylistchina+easylist.txt: 13764) -/(.*/)?blog_ads/.* -# /blog_ad? (easylistchina+easylist.txt: 13763) -/(.*/)?blog_ad\? -# /blog/ads/* (easylistchina+easylist.txt: 13762) -/(.*/)?blog/ads/.* -# /blog-ad- (easylistchina+easylist.txt: 13761) -/(.*/)?blog-ad- -blog-ad-*. -# /blocks/ads/* (easylistchina+easylist.txt: 13760) -/(.*/)?blocks/ads/.* -# /blockad_ (easylistchina+easylist.txt: 13759) -/(.*/)?blockad_ -# /bkgrndads/* (easylistchina+easylist.txt: 13758) -/(.*/)?bkgrndads/.* -# /bizad. (easylistchina+easylist.txt: 13757) -/(.*/)?bizad\. -bizad.*. -# /binary/ad/* (easylistchina+easylist.txt: 13756) -/(.*/)?binary/ad/.* -# /bin/ads/* (easylistchina+easylist.txt: 13755) -/(.*/)?bin/ads/.* -# /bigtopl.swf (easylistchina+easylist.txt: 13754) -/(.*/)?bigtopl\.swf -bigtopl.swf*. -# /bigboxad. (easylistchina+easylist.txt: 13753) -/(.*/)?bigboxad\. -bigboxad.*. -# /bigads/* (easylistchina+easylist.txt: 13752) -/(.*/)?bigads/.* -# /bigad_ (easylistchina+easylist.txt: 13751) -/(.*/)?bigad_ -# /bigad. (easylistchina+easylist.txt: 13750) -/(.*/)?bigad\. -bigad.*. -# /bi_affiliate.js (easylistchina+easylist.txt: 13749) -/(.*/)?bi_affiliate\.js -# /bgads/* (easylistchina+easylist.txt: 13748) -/(.*/)?bgads/.* -# /bg_ads_ (easylistchina+easylist.txt: 13747) -/(.*/)?bg_ads_ -# /bg/ads/* (easylistchina+easylist.txt: 13746) -/(.*/)?bg/ads/.* -# /bg-advert- (easylistchina+easylist.txt: 13745) -/(.*/)?bg-advert- -bg-advert-*. -# /bftv/ads/* (easylistchina+easylist.txt: 13744) -/(.*/)?bftv/ads/.* -# /betrad.js (easylistchina+easylist.txt: 13743) -/(.*/)?betrad\.js -betrad.js*. -# /beta-ad. (easylistchina+easylist.txt: 13742) -/(.*/)?beta-ad\. -beta-ad.*. -# /behaviorads/* (easylistchina+easylist.txt: 13741) -/(.*/)?behaviorads/.* -# /beacon/ad/* (easylistchina+easylist.txt: 13740) -/(.*/)?beacon/ad/.* -# /bdcustomadsense- (easylistchina+easylist.txt: 13739) -/(.*/)?bdcustomadsense- -bdcustomadsense-*. -# /bckgrnd_ad. (easylistchina+easylist.txt: 13738) -/(.*/)?bckgrnd_ad\. -# /bbad9. (easylistchina+easylist.txt: 13737) -/(.*/)?bbad9\. -bbad9.*. -# /bbad8. (easylistchina+easylist.txt: 13736) -/(.*/)?bbad8\. -bbad8.*. -# /bbad7. (easylistchina+easylist.txt: 13735) -/(.*/)?bbad7\. -bbad7.*. -# /bbad6. (easylistchina+easylist.txt: 13734) -/(.*/)?bbad6\. -bbad6.*. -# /bbad5. (easylistchina+easylist.txt: 13733) -/(.*/)?bbad5\. -bbad5.*. -# /bbad4. (easylistchina+easylist.txt: 13732) -/(.*/)?bbad4\. -bbad4.*. -# /bbad3. (easylistchina+easylist.txt: 13731) -/(.*/)?bbad3\. -bbad3.*. -# /bbad2. (easylistchina+easylist.txt: 13730) -/(.*/)?bbad2\. -bbad2.*. -# /bbad10. (easylistchina+easylist.txt: 13729) -/(.*/)?bbad10\. -bbad10.*. -# /bbad1. (easylistchina+easylist.txt: 13728) -/(.*/)?bbad1\. -bbad1.*. -# /bbad. (easylistchina+easylist.txt: 13727) -/(.*/)?bbad\. -bbad.*. -# /basic/ad/* (easylistchina+easylist.txt: 13726) -/(.*/)?basic/ad/.* -# /baselinead. (easylistchina+easylist.txt: 13725) -/(.*/)?baselinead\. -baselinead.*. -# /baseAd. (easylistchina+easylist.txt: 13724) -/(.*/)?baseAd\. -baseAd.*. -# /bar-ad. (easylistchina+easylist.txt: 13723) -/(.*/)?bar-ad\. -bar-ad.*. -# /bansrc/* (easylistchina+easylist.txt: 13722) -/(.*/)?bansrc/.* -# /bannery/*?banner= (easylistchina+easylist.txt: 13721) -/(.*/)?bannery/.*\?banner= -# /bannerwerbung/* (easylistchina+easylist.txt: 13720) -/(.*/)?bannerwerbung/.* -# /bannerview.*? (easylistchina+easylist.txt: 13719) -/(.*/)?bannerview\..*\? -bannerview.*./.*\? -# /bannersyndication. (easylistchina+easylist.txt: 13718) -/(.*/)?bannersyndication\. -bannersyndication.*. -# /bannerserver? (easylistchina+easylist.txt: 13717) -/(.*/)?bannerserver\? -# /bannerserver3| (easylistchina+easylist.txt: 13716) -/(.*/)?bannerserver3$ -# /bannerserver3/* (easylistchina+easylist.txt: 13715) -/(.*/)?bannerserver3/.* -# /bannerserver/* (easylistchina+easylist.txt: 13714) -/(.*/)?bannerserver/.* -# /bannerserve/* (easylistchina+easylist.txt: 13713) -/(.*/)?bannerserve/.* -# /bannerscript/* (easylistchina+easylist.txt: 13712) -/(.*/)?bannerscript/.* -# /bannersAds_ (easylistchina+easylist.txt: 13711) -/(.*/)?bannersAds_ -# /banners_rotation. (easylistchina+easylist.txt: 13710) -/(.*/)?banners_rotation\. -# /banners/promo/* (easylistchina+easylist.txt: 13709) -/(.*/)?banners/promo/.* -# /banners/googlebanner (easylistchina+easylist.txt: 13708) -/(.*/)?banners/googlebanner -# /banners/ffadult/* (easylistchina+easylist.txt: 13707) -/(.*/)?banners/ffadult/.* -# /banners/affiliate/* (easylistchina+easylist.txt: 13706) -/(.*/)?banners/affiliate/.* -# /banners/affil/* (easylistchina+easylist.txt: 13705) -/(.*/)?banners/affil/.* -# /banners/aff. (easylistchina+easylist.txt: 13704) -/(.*/)?banners/aff\. -# /banners/adv_ (easylistchina+easylist.txt: 13703) -/(.*/)?banners/adv_ -# /banners/adv/* (easylistchina+easylist.txt: 13702) -/(.*/)?banners/adv/.* -# /banners/ads/* (easylistchina+easylist.txt: 13701) -/(.*/)?banners/ads/.* -# /banners/ads. (easylistchina+easylist.txt: 13700) -/(.*/)?banners/ads\. -# /banners/ads- (easylistchina+easylist.txt: 13699) -/(.*/)?banners/ads- -# /banners/ad_ (easylistchina+easylist.txt: 13698) -/(.*/)?banners/ad_ -# /banners/ad11. (easylistchina+easylist.txt: 13697) -/(.*/)?banners/ad11\. -# /banners/ad10. (easylistchina+easylist.txt: 13696) -/(.*/)?banners/ad10\. -# /banners/ad/* (easylistchina+easylist.txt: 13695) -/(.*/)?banners/ad/.* -# /banners/728 (easylistchina+easylist.txt: 13694) -/(.*/)?banners/728 -# /banners/468 (easylistchina+easylist.txt: 13693) -/(.*/)?banners/468 -# /banners/460 (easylistchina+easylist.txt: 13692) -/(.*/)?banners/460 -# /banners/300 (easylistchina+easylist.txt: 13691) -/(.*/)?banners/300 -# /banners/160 (easylistchina+easylist.txt: 13690) -/(.*/)?banners/160 -# /banners.php?id (easylistchina+easylist.txt: 13689) -/(.*/)?banners\.php\?id -# /banners.cgi? (easylistchina+easylist.txt: 13688) -/(.*/)?banners\.cgi\? -# /banners.*&iframe= (easylistchina+easylist.txt: 13687) -/(.*/)?banners\..*&iframe= -banners.*./.*&iframe= -# /bannerrotation/* (easylistchina+easylist.txt: 13686) -/(.*/)?bannerrotation/.* -# /bannerrotation. (easylistchina+easylist.txt: 13685) -/(.*/)?bannerrotation\. -bannerrotation.*. -# /bannerrotater/* (easylistchina+easylist.txt: 13684) -/(.*/)?bannerrotater/.* -# /bannerrotate. (easylistchina+easylist.txt: 13683) -/(.*/)?bannerrotate\. -bannerrotate.*. -# /bannerpump. (easylistchina+easylist.txt: 13682) -/(.*/)?bannerpump\. -bannerpump.*. -# /bannermvt. (easylistchina+easylist.txt: 13681) -/(.*/)?bannermvt\. -bannermvt.*. -# /bannermanager/* (easylistchina+easylist.txt: 13680) -/(.*/)?bannermanager/.* -# /bannermaker/* (easylistchina+easylist.txt: 13679) -/(.*/)?bannermaker/.* -# /bannerjs.php? (easylistchina+easylist.txt: 13678) -/(.*/)?bannerjs\.php\? -# /bannerinc. (easylistchina+easylist.txt: 13677) -/(.*/)?bannerinc\. -bannerinc.*. -# /bannerframeopenads_ (easylistchina+easylist.txt: 13676) -/(.*/)?bannerframeopenads_ -# /bannerframeopenads. (easylistchina+easylist.txt: 13675) -/(.*/)?bannerframeopenads\. -bannerframeopenads.*. -# /bannerframe.*? (easylistchina+easylist.txt: 13674) -/(.*/)?bannerframe\..*\? -bannerframe.*./.*\? -# /bannerfile/ad_ (easylistchina+easylist.txt: 13673) -/(.*/)?bannerfile/ad_ -# /bannerfarm/* (easylistchina+easylist.txt: 13672) -/(.*/)?bannerfarm/.* -# /bannerfarm. (easylistchina+easylist.txt: 13671) -/(.*/)?bannerfarm\. -bannerfarm.*. -# /bannerexchange/* (easylistchina+easylist.txt: 13670) -/(.*/)?bannerexchange/.* -# /bannerdeliver.php (easylistchina+easylist.txt: 13669) -/(.*/)?bannerdeliver\.php -bannerdeliver.php*. -# /bannerconduit. (easylistchina+easylist.txt: 13668) -/(.*/)?bannerconduit\. -bannerconduit.*. -# /bannercode.php (easylistchina+easylist.txt: 13667) -/(.*/)?bannercode\.php -bannercode.php*. -# /banneradviva. (easylistchina+easylist.txt: 13666) -/(.*/)?banneradviva\. -banneradviva.*. -# /banneradverts/* (easylistchina+easylist.txt: 13665) -/(.*/)?banneradverts/.* -# /banneradsgenerator. (easylistchina+easylist.txt: 13664) -/(.*/)?banneradsgenerator\. -banneradsgenerator.*. -# /banneradsajax. (easylistchina+easylist.txt: 13663) -/(.*/)?banneradsajax\. -banneradsajax.*. -# /bannerads/* (easylistchina+easylist.txt: 13662) -/(.*/)?bannerads/.* -# /bannerads. (easylistchina+easylist.txt: 13661) -/(.*/)?bannerads\. -bannerads.*. -# /bannerads- (easylistchina+easylist.txt: 13660) -/(.*/)?bannerads- -bannerads-*. -# /bannerad_ (easylistchina+easylist.txt: 13659) -/(.*/)?bannerad_ -# /bannerad6. (easylistchina+easylist.txt: 13658) -/(.*/)?bannerad6\. -bannerad6.*. -# /bannerad3. (easylistchina+easylist.txt: 13657) -/(.*/)?bannerad3\. -bannerad3.*. -# /bannerad2- (easylistchina+easylist.txt: 13656) -/(.*/)?bannerad2- -bannerad2-*. -# /bannerad1- (easylistchina+easylist.txt: 13655) -/(.*/)?bannerad1- -bannerad1-*. -# /bannerad/* (easylistchina+easylist.txt: 13654) -/(.*/)?bannerad/.* -# /bannerad. (easylistchina+easylist.txt: 13653) -/(.*/)?bannerad\. -bannerad.*. -# /banner_zedo/* (easylistchina+easylist.txt: 13652) -/(.*/)?banner_zedo/.* -# /banner_zanox/* (easylistchina+easylist.txt: 13651) -/(.*/)?banner_zanox/.* -# /banner_view. (easylistchina+easylist.txt: 13650) -/(.*/)?banner_view\. -# /banner_skyscraper. (easylistchina+easylist.txt: 13649) -/(.*/)?banner_skyscraper\. -# /banner_OAS.js (easylistchina+easylist.txt: 13648) -/(.*/)?banner_OAS\.js -# /banner_js.*? (easylistchina+easylist.txt: 13647) -/(.*/)?banner_js\..*\? -# /banner_image.php? (easylistchina+easylist.txt: 13646) -/(.*/)?banner_image\.php\? -# /banner_iframe_ (easylistchina+easylist.txt: 13645) -/(.*/)?banner_iframe_ -# /banner_file.php? (easylistchina+easylist.txt: 13644) -/(.*/)?banner_file\.php\? -# /banner_db.php? (easylistchina+easylist.txt: 13643) -/(.*/)?banner_db\.php\? -# /banner_control.php? (easylistchina+easylist.txt: 13642) -/(.*/)?banner_control\.php\? -# /banner_adv/* (easylistchina+easylist.txt: 13641) -/(.*/)?banner_adv/.* -# /banner_ads_ (easylistchina+easylist.txt: 13640) -/(.*/)?banner_ads_ -# /banner_ads/* (easylistchina+easylist.txt: 13639) -/(.*/)?banner_ads/.* -# /banner_ads. (easylistchina+easylist.txt: 13638) -/(.*/)?banner_ads\. -# /banner_ad_ (easylistchina+easylist.txt: 13637) -/(.*/)?banner_ad_ -# /banner_ad. (easylistchina+easylist.txt: 13636) -/(.*/)?banner_ad\. -# /banner_468x (easylistchina+easylist.txt: 13635) -/(.*/)?banner_468x -# /banner_468. (easylistchina+easylist.txt: 13634) -/(.*/)?banner_468\. -# /banner_125x (easylistchina+easylist.txt: 13633) -/(.*/)?banner_125x -# /banner728x90_ (easylistchina+easylist.txt: 13632) -/(.*/)?banner728x90_ -# /banner468x80. (easylistchina+easylist.txt: 13631) -/(.*/)?banner468x80\. -banner468x80.*. -# /banner468x60. (easylistchina+easylist.txt: 13630) -/(.*/)?banner468x60\. -banner468x60.*. -# /banner468a. (easylistchina+easylist.txt: 13629) -/(.*/)?banner468a\. -banner468a.*. -# /banner468_ (easylistchina+easylist.txt: 13628) -/(.*/)?banner468_ -# /banner468. (easylistchina+easylist.txt: 13627) -/(.*/)?banner468\. -banner468.*. -# /banner460x80. (easylistchina+easylist.txt: 13626) -/(.*/)?banner460x80\. -banner460x80.*. -# /banner20468x60. (easylistchina+easylist.txt: 13625) -/(.*/)?banner20468x60\. -banner20468x60.*. -# /banner160x600- (easylistchina+easylist.txt: 13624) -/(.*/)?banner160x600- -banner160x600-*. -# /banner/virtuagirl (easylistchina+easylist.txt: 13623) -/(.*/)?banner/virtuagirl -# /banner/sponsor_ (easylistchina+easylist.txt: 13622) -/(.*/)?banner/sponsor_ -# /banner/rtads/* (easylistchina+easylist.txt: 13621) -/(.*/)?banner/rtads/.* -# /banner/affiliate/* (easylistchina+easylist.txt: 13620) -/(.*/)?banner/affiliate/.* -# /banner/adv_ (easylistchina+easylist.txt: 13619) -/(.*/)?banner/adv_ -# /banner/adv/* (easylistchina+easylist.txt: 13618) -/(.*/)?banner/adv/.* -# /banner/ad_ (easylistchina+easylist.txt: 13617) -/(.*/)?banner/ad_ -# /banner/ad/* (easylistchina+easylist.txt: 13616) -/(.*/)?banner/ad/.* -# /banner/ad. (easylistchina+easylist.txt: 13615) -/(.*/)?banner/ad\. -# /banner/700 (easylistchina+easylist.txt: 13614) -/(.*/)?banner/700 -# /banner/468 (easylistchina+easylist.txt: 13613) -/(.*/)?banner/468 -# /banner.ws? (easylistchina+easylist.txt: 13612) -/(.*/)?banner\.ws\? -# /banner.php (easylistchina+easylist.txt: 13611) -/(.*/)?banner\.php -banner.php*. -# /banner.htm? (easylistchina+easylist.txt: 13610) -/(.*/)?banner\.htm\? -# /banner.gif? (easylistchina+easylist.txt: 13609) -/(.*/)?banner\.gif\? -# /banner.cgi? (easylistchina+easylist.txt: 13608) -/(.*/)?banner\.cgi\? -# /banner.ca? (easylistchina+easylist.txt: 13607) -/(.*/)?banner\.ca\? -# /banner.asp?$third-party (easylistchina+easylist.txt: 13606) -/(.*/)?banner\.asp\? -# /banner-ads/* (easylistchina+easylist.txt: 13605) -/(.*/)?banner-ads/.* -# /banner-ad_ (easylistchina+easylist.txt: 13604) -/(.*/)?banner-ad_ -# /banner-ad/* (easylistchina+easylist.txt: 13603) -/(.*/)?banner-ad/.* -# /banner-ad. (easylistchina+easylist.txt: 13602) -/(.*/)?banner-ad\. -banner-ad.*. -# /banner-ad- (easylistchina+easylist.txt: 13601) -/(.*/)?banner-ad- -banner-ad-*. -# /Banner-300x250. (easylistchina+easylist.txt: 13600) -/(.*/)?Banner-300x250\. -Banner-300x250.*. -# /banmanpro/* (easylistchina+easylist.txt: 13599) -/(.*/)?banmanpro/.* -# /banman/* (easylistchina+easylist.txt: 13598) -/(.*/)?banman/.* -# /banman.asp? (easylistchina+easylist.txt: 13597) -/(.*/)?banman\.asp\? -# /banimpress. (easylistchina+easylist.txt: 13596) -/(.*/)?banimpress\. -banimpress.*. -# /ban_m.php? (easylistchina+easylist.txt: 13595) -/(.*/)?ban_m\.php\? -# /ban_ad. (easylistchina+easylist.txt: 13594) -/(.*/)?ban_ad\. -# /ban728x90. (easylistchina+easylist.txt: 13593) -/(.*/)?ban728x90\. -ban728x90.*. -# /ban728.php (easylistchina+easylist.txt: 13592) -/(.*/)?ban728\.php -ban728.php*. -# /ban728.html (easylistchina+easylist.txt: 13591) -/(.*/)?ban728\.html -ban728.html*. -# /ban300.php (easylistchina+easylist.txt: 13590) -/(.*/)?ban300\.php -ban300.php*. -# /ban300.html (easylistchina+easylist.txt: 13589) -/(.*/)?ban300\.html -ban300.html*. -# /ban160.php (easylistchina+easylist.txt: 13588) -/(.*/)?ban160\.php -ban160.php*. -# /ban.php? (easylistchina+easylist.txt: 13587) -/(.*/)?ban\.php\? -# /badge_ad_ (easylistchina+easylist.txt: 13586) -/(.*/)?badge_ad_ -# /backlinxxx/js/* (easylistchina+easylist.txt: 13585) -/(.*/)?backlinxxx/js/.* -# /backgroundAdvertising. (easylistchina+easylist.txt: 13584) -/(.*/)?backgroundAdvertising\. -backgroundAdvertising.*. -# /BackgroundAd40. (easylistchina+easylist.txt: 13583) -/(.*/)?BackgroundAd40\. -BackgroundAd40.*. -# /background_ad_ (easylistchina+easylist.txt: 13582) -/(.*/)?background_ad_ -# /back-ad. (easylistchina+easylist.txt: 13581) -/(.*/)?back-ad\. -back-ad.*. -# /b.ads. (easylistchina+easylist.txt: 13580) -/(.*/)?b\.ads\. -b.ads.*. -# /awepop. (easylistchina+easylist.txt: 13579) -/(.*/)?awepop\. -awepop.*. -# /awempire. (easylistchina+easylist.txt: 13578) -/(.*/)?awempire\. -awempire.*. -# /awe2.js (easylistchina+easylist.txt: 13577) -/(.*/)?awe2\.js -awe2.js*. -# /auto_ad_ (easylistchina+easylist.txt: 13576) -/(.*/)?auto_ad_ -# /austria_ad. (easylistchina+easylist.txt: 13575) -/(.*/)?austria_ad\. -# /auditudebanners. (easylistchina+easylist.txt: 13574) -/(.*/)?auditudebanners\. -auditudebanners.*. -# /auditudeadunit. (easylistchina+easylist.txt: 13573) -/(.*/)?auditudeadunit\. -auditudeadunit.*. -# /audioads/* (easylistchina+easylist.txt: 13572) -/(.*/)?audioads/.* -# /audio-ads/* (easylistchina+easylist.txt: 13571) -/(.*/)?audio-ads/.* -# /au2m8_preloader/* (easylistchina+easylist.txt: 13570) -/(.*/)?au2m8_preloader/.* -# /AttractiveAdsCube. (easylistchina+easylist.txt: 13569) -/(.*/)?AttractiveAdsCube\. -AttractiveAdsCube.*. -# /AttractiveAds_ (easylistchina+easylist.txt: 13568) -/(.*/)?AttractiveAds_ -# /AttractiveAds/* (easylistchina+easylist.txt: 13567) -/(.*/)?AttractiveAds/.* -# /atrads. (easylistchina+easylist.txt: 13566) -/(.*/)?atrads\. -atrads.*. -# /atnads/* (easylistchina+easylist.txt: 13565) -/(.*/)?atnads/.* -# /athena/tag/? (easylistchina+easylist.txt: 13564) -/(.*/)?athena/tag/\? -# /asyncspc. (easylistchina+easylist.txt: 13563) -/(.*/)?asyncspc\. -asyncspc.*. -# /asyncadload. (easylistchina+easylist.txt: 13561) -/(.*/)?asyncadload\. -asyncadload.*. -# /ast/ads/* (easylistchina+easylist.txt: 13560) -/(.*/)?ast/ads/.* -# /assets/sponsored/* (easylistchina+easylist.txt: 13559) -/(.*/)?assets/sponsored/.* -# /assets/doubleclick/* (easylistchina+easylist.txt: 13558) -/(.*/)?assets/doubleclick/.* -# /assets/adv/* (easylistchina+easylist.txt: 13557) -/(.*/)?assets/adv/.* -# /assets/ads_ (easylistchina+easylist.txt: 13556) -/(.*/)?assets/ads_ -# /assets/ads/* (easylistchina+easylist.txt: 13555) -/(.*/)?assets/ads/.* -# /assets/ads- (easylistchina+easylist.txt: 13554) -/(.*/)?assets/ads- -# /assets/ad/* (easylistchina+easylist.txt: 13553) -/(.*/)?assets/ad/.* -# /assets/ad- (easylistchina+easylist.txt: 13552) -/(.*/)?assets/ad- -# /asset/adv/* (easylistchina+easylist.txt: 13551) -/(.*/)?asset/adv/.* -# /asset/ad/* (easylistchina+easylist.txt: 13550) -/(.*/)?asset/ad/.* -# /aspbanner_inc.asp? (easylistchina+easylist.txt: 13549) -/(.*/)?aspbanner_inc\.asp\? -# /aseadnshow. (easylistchina+easylist.txt: 13548) -/(.*/)?aseadnshow\. -aseadnshow.*. -# /as_u/ads/* (easylistchina+easylist.txt: 13547) -/(.*/)?as_u/ads/.* -# /as3overstreamplatformadapter. (easylistchina+easylist.txt: 13546) -/(.*/)?as3overstreamplatformadapter\. -as3overstreamplatformadapter.*. -# /as/gb?stid= (easylistchina+easylist.txt: 13545) -/(.*/)?as/gb\?stid= -# /as/gb2?stid= (easylistchina+easylist.txt: 13544) -/(.*/)?as/gb2\?stid= -# /artimediatargetads. (easylistchina+easylist.txt: 13543) -/(.*/)?artimediatargetads\. -artimediatargetads.*. -# /articleSponsorDeriv_ (easylistchina+easylist.txt: 13542) -/(.*/)?articleSponsorDeriv_ -# /article_ad. (easylistchina+easylist.txt: 13541) -/(.*/)?article_ad\. -# /Article-Ad- (easylistchina+easylist.txt: 13540) -/(.*/)?Article-Ad- -Article-Ad-*. -# /aptads/* (easylistchina+easylist.txt: 13539) -/(.*/)?aptads/.* -# /app/ads/* (easylistchina+easylist.txt: 13538) -/(.*/)?app/ads/.* -# /app/ads. (easylistchina+easylist.txt: 13537) -/(.*/)?app/ads\. -# /app.ads. (easylistchina+easylist.txt: 13536) -/(.*/)?app\.ads\. -app.ads.*. -# /app.ads- (easylistchina+easylist.txt: 13535) -/(.*/)?app\.ads- -app.ads-*. -# /apopwin. (easylistchina+easylist.txt: 13534) -/(.*/)?apopwin\. -apopwin.*. -# /api/ads/* (easylistchina+easylist.txt: 13533) -/(.*/)?api/ads/.* -# /api/ad/* (easylistchina+easylist.txt: 13532) -/(.*/)?api/ad/.* -# /api.ad. (easylistchina+easylist.txt: 13531) -/(.*/)?api\.ad\. -api.ad.*. -# /anyad.js (easylistchina+easylist.txt: 13530) -/(.*/)?anyad\.js -anyad.js*. -# /announce/adv/* (easylistchina+easylist.txt: 13529) -/(.*/)?announce/adv/.* -# /annonser/* (easylistchina+easylist.txt: 13528) -/(.*/)?annonser/.* -# /annonser. (easylistchina+easylist.txt: 13527) -/(.*/)?annonser\. -annonser.*. -# /annonse/* (easylistchina+easylist.txt: 13526) -/(.*/)?annonse/.* -# /anchorad. (easylistchina+easylist.txt: 13524) -/(.*/)?anchorad\. -anchorad.*. -# /amzn_omakase. (easylistchina+easylist.txt: 13523) -/(.*/)?amzn_omakase\. -# /amzn_ads. (easylistchina+easylist.txt: 13522) -/(.*/)?amzn_ads\. -# /amazon/widget/* (easylistchina+easylist.txt: 13521) -/(.*/)?amazon/widget/.* -# /amazon/iframeproxy- (easylistchina+easylist.txt: 13520) -/(.*/)?amazon/iframeproxy- -# /am/ads. (easylistchina+easylist.txt: 13519) -/(.*/)?am/ads\. -# /alwebad_ (easylistchina+easylist.txt: 13518) -/(.*/)?alwebad_ -# /alternet.ad? (easylistchina+easylist.txt: 13517) -/(.*/)?alternet\.ad\? -# /all_ads/* (easylistchina+easylist.txt: 13516) -/(.*/)?all_ads/.* -# /all/ad/* (easylistchina+easylist.txt: 13515) -/(.*/)?all/ad/.* -# /ak/ads/* (easylistchina+easylist.txt: 13514) -/(.*/)?ak/ads/.* -# /ak-ads- (easylistchina+easylist.txt: 13513) -/(.*/)?ak-ads- -ak-ads-*. -# /ajs?auid= (easylistchina+easylist.txt: 13512) -/(.*/)?ajs\?auid= -# /ajs.php? (easylistchina+easylist.txt: 13511) -/(.*/)?ajs\.php\? -# /ajrotator/* (easylistchina+easylist.txt: 13510) -/(.*/)?ajrotator/.* -# /ajaxads. (easylistchina+easylist.txt: 13509) -/(.*/)?ajaxads\. -ajaxads.*. -# /ajaxAd? (easylistchina+easylist.txt: 13508) -/(.*/)?ajaxAd\? -# /ajax/ads/* (easylistchina+easylist.txt: 13507) -/(.*/)?ajax/ads/.* -# /ajax/ad/* (easylistchina+easylist.txt: 13506) -/(.*/)?ajax/ad/.* -# /ajax-advert. (easylistchina+easylist.txt: 13505) -/(.*/)?ajax-advert\. -ajax-advert.*. -# /ajax-advert- (easylistchina+easylist.txt: 13504) -/(.*/)?ajax-advert- -ajax-advert-*. -# /ajax-ad/* (easylistchina+easylist.txt: 13503) -/(.*/)?ajax-ad/.* -# /ahmestatic/ads/* (easylistchina+easylist.txt: 13502) -/(.*/)?ahmestatic/ads/.* -# /afr?auid= (easylistchina+easylist.txt: 13501) -/(.*/)?afr\?auid= -# /afr.php? (easylistchina+easylist.txt: 13500) -/(.*/)?afr\.php\? -# /affpic/* (easylistchina+easylist.txt: 13499) -/(.*/)?affpic/.* -# /affliate-banners/* (easylistchina+easylist.txt: 13498) -/(.*/)?affliate-banners/.* -# /affimg/* (easylistchina+easylist.txt: 13497) -/(.*/)?affimg/.* -# /affimages/* (easylistchina+easylist.txt: 13496) -/(.*/)?affimages/.* -# /affilitebanners/* (easylistchina+easylist.txt: 13495) -/(.*/)?affilitebanners/.* -# /affilinet/* (easylistchina+easylist.txt: 13494) -/(.*/)?affilinet/.* -# /affiliationcash. (easylistchina+easylist.txt: 13493) -/(.*/)?affiliationcash\. -affiliationcash.*. -# /affiliation/* (easylistchina+easylist.txt: 13492) -/(.*/)?affiliation/.* -# /affiliatewiz/* (easylistchina+easylist.txt: 13491) -/(.*/)?affiliatewiz/.* -# /affiliatetags/* (easylistchina+easylist.txt: 13490) -/(.*/)?affiliatetags/.* -# /affiliateserver. (easylistchina+easylist.txt: 13489) -/(.*/)?affiliateserver\. -affiliateserver.*. -# /affiliates/contextual. (easylistchina+easylist.txt: 13488) -/(.*/)?affiliates/contextual\. -# /affiliates/ban (easylistchina+easylist.txt: 13487) -/(.*/)?affiliates/ban -# /affiliates/*/show_banner. (easylistchina+easylist.txt: 13486) -/(.*/)?affiliates/.*/show_banner\. -# /affiliates.*.aspx? (easylistchina+easylist.txt: 13485) -/(.*/)?affiliates\..*\.aspx\? -affiliates.*./.*\.aspx\? -# /affiliateimages/* (easylistchina+easylist.txt: 13484) -/(.*/)?affiliateimages/.* -# /affiliatebanners/* (easylistchina+easylist.txt: 13483) -/(.*/)?affiliatebanners/.* -# /affiliatebanner/* (easylistchina+easylist.txt: 13482) -/(.*/)?affiliatebanner/.* -# /affiliateadvertisement. (easylistchina+easylist.txt: 13481) -/(.*/)?affiliateadvertisement\. -affiliateadvertisement.*. -# /affiliateads/* (easylistchina+easylist.txt: 13480) -/(.*/)?affiliateads/.* -# /affiliate_show_iframe. (easylistchina+easylist.txt: 13479) -/(.*/)?affiliate_show_iframe\. -# /affiliate_show_banner. (easylistchina+easylist.txt: 13478) -/(.*/)?affiliate_show_banner\. -# /affiliate_resources/* (easylistchina+easylist.txt: 13477) -/(.*/)?affiliate_resources/.* -# /affiliate_base/banners/* (easylistchina+easylist.txt: 13476) -/(.*/)?affiliate_base/banners/.* -# /affiliate_banners/* (easylistchina+easylist.txt: 13475) -/(.*/)?affiliate_banners/.* -# /affiliate_banner/* (easylistchina+easylist.txt: 13474) -/(.*/)?affiliate_banner/.* -# /affiliate/small_banner/* (easylistchina+easylist.txt: 13473) -/(.*/)?affiliate/small_banner/.* -# /affiliate/script.php? (easylistchina+easylist.txt: 13472) -/(.*/)?affiliate/script\.php\? -# /affiliate/promo/* (easylistchina+easylist.txt: 13471) -/(.*/)?affiliate/promo/.* -# /affiliate/promo- (easylistchina+easylist.txt: 13470) -/(.*/)?affiliate/promo- -# /affiliate/banners/* (easylistchina+easylist.txt: 13469) -/(.*/)?affiliate/banners/.* -# /affiliate/banner/* (easylistchina+easylist.txt: 13468) -/(.*/)?affiliate/banner/.* -# /affiliate/ads/* (easylistchina+easylist.txt: 13467) -/(.*/)?affiliate/ads/.* -# /affiliate/ad/* (easylistchina+easylist.txt: 13466) -/(.*/)?affiliate/ad/.* -# /affiliate-content/* (easylistchina+easylist.txt: 13465) -/(.*/)?affiliate-content/.* -# /Affiliate-Banner- (easylistchina+easylist.txt: 13464) -/(.*/)?Affiliate-Banner- -Affiliate-Banner-*. -# /affilatebanner. (easylistchina+easylist.txt: 13463) -/(.*/)?affilatebanner\. -affilatebanner.*. -# /affclick/* (easylistchina+easylist.txt: 13462) -/(.*/)?affclick/.* -# /affbeat/banners/* (easylistchina+easylist.txt: 13461) -/(.*/)?affbeat/banners/.* -# /affbanners/* (easylistchina+easylist.txt: 13460) -/(.*/)?affbanners/.* -# /affbanner/* (easylistchina+easylist.txt: 13459) -/(.*/)?affbanner/.* -# /affads/* (easylistchina+easylist.txt: 13458) -/(.*/)?affads/.* -# /affad? (easylistchina+easylist.txt: 13457) -/(.*/)?affad\? -# /aff_i?offer_id= (easylistchina+easylist.txt: 13456) -/(.*/)?aff_i\?offer_id= -# /aff_frame. (easylistchina+easylist.txt: 13455) -/(.*/)?aff_frame\. -# /aff_banners/* (easylistchina+easylist.txt: 13454) -/(.*/)?aff_banners/.* -# /aff_ad? (easylistchina+easylist.txt: 13453) -/(.*/)?aff_ad\? -# /aff/images/* (easylistchina+easylist.txt: 13452) -/(.*/)?aff/images/.* -# /aff/ads_ (easylistchina+easylist.txt: 13451) -/(.*/)?aff/ads_ -# /aff.htm (easylistchina+easylist.txt: 13450) -/(.*/)?aff\.htm -aff.htm*. -# /aff-exchange/* (easylistchina+easylist.txt: 13449) -/(.*/)?aff-exchange/.* -# /afdsafads/* (easylistchina+easylist.txt: 13448) -/(.*/)?afdsafads/.* -# /afcsearchads. (easylistchina+easylist.txt: 13447) -/(.*/)?afcsearchads\. -afcsearchads.*. -# /afcads. (easylistchina+easylist.txt: 13446) -/(.*/)?afcads\. -afcads.*. -# /afc-match?q= (easylistchina+easylist.txt: 13445) -/(.*/)?afc-match\?q= -# /adztop. (easylistchina+easylist.txt: 13444) -/(.*/)?adztop\. -adztop.*. -# /adzonetop. (easylistchina+easylist.txt: 13443) -/(.*/)?adzonetop\. -adzonetop.*. -# /adzonesidead. (easylistchina+easylist.txt: 13442) -/(.*/)?adzonesidead\. -adzonesidead.*. -# /adzones/* (easylistchina+easylist.txt: 13441) -/(.*/)?adzones/.* -# /adzoneright. (easylistchina+easylist.txt: 13440) -/(.*/)?adzoneright\. -adzoneright.*. -# /adzoneplayerright. (easylistchina+easylist.txt: 13439) -/(.*/)?adzoneplayerright\. -adzoneplayerright.*. -# /adzonelegend. (easylistchina+easylist.txt: 13438) -/(.*/)?adzonelegend\. -adzonelegend.*. -# /adzoneleft. (easylistchina+easylist.txt: 13437) -/(.*/)?adzoneleft\. -adzoneleft.*. -# /adzonecenteradhomepage. (easylistchina+easylist.txt: 13436) -/(.*/)?adzonecenteradhomepage\. -adzonecenteradhomepage.*. -# /adzonebottom. (easylistchina+easylist.txt: 13435) -/(.*/)?adzonebottom\. -adzonebottom.*. -# /adzonebelowplayer. (easylistchina+easylist.txt: 13434) -/(.*/)?adzonebelowplayer\. -adzonebelowplayer.*. -# /AdZoneAdXp. (easylistchina+easylist.txt: 13433) -/(.*/)?AdZoneAdXp\. -AdZoneAdXp.*. -# /adzone_ (easylistchina+easylist.txt: 13432) -/(.*/)?adzone_ -# /adzone4. (easylistchina+easylist.txt: 13431) -/(.*/)?adzone4\. -adzone4.*. -# /adzone/* (easylistchina+easylist.txt: 13430) -/(.*/)?adzone/.* -# /adzone. (easylistchina+easylist.txt: 13429) -/(.*/)?adzone\. -adzone.*. -# /adzilla/* (easylistchina+easylist.txt: 13428) -/(.*/)?adzilla/.* -# /adzerk2_ (easylistchina+easylist.txt: 13427) -/(.*/)?adzerk2_ -# /adzbotm. (easylistchina+easylist.txt: 13426) -/(.*/)?adzbotm\. -adzbotm.*. -# /adyea. (easylistchina+easylist.txt: 13425) -/(.*/)?adyea\. -adyea.*. -# /adyard300. (easylistchina+easylist.txt: 13424) -/(.*/)?adyard300\. -adyard300.*. -# /adyard. (easylistchina+easylist.txt: 13423) -/(.*/)?adyard\. -adyard.*. -# /adxx.php? (easylistchina+easylist.txt: 13422) -/(.*/)?adxx\.php\? -# /adxsite. (easylistchina+easylist.txt: 13421) -/(.*/)?adxsite\. -adxsite.*. -# /adx_iframe_ (easylistchina+easylist.txt: 13420) -/(.*/)?adx_iframe_ -# /adx_flash. (easylistchina+easylist.txt: 13419) -/(.*/)?adx_flash\. -# /adx_exo_ (easylistchina+easylist.txt: 13418) -/(.*/)?adx_exo_ -# /adx2. (easylistchina+easylist.txt: 13417) -/(.*/)?adx2\. -adx2.*. -# /adx160. (easylistchina+easylist.txt: 13416) -/(.*/)?adx160\. -adx160.*. -# /adx/ads? (easylistchina+easylist.txt: 13415) -/(.*/)?adx/ads\? -# /adwriter2. (easylistchina+easylist.txt: 13413) -/(.*/)?adwriter2\. -adwriter2.*. -# /adwrapperiframe. (easylistchina+easylist.txt: 13412) -/(.*/)?adwrapperiframe\. -adwrapperiframe.*. -# /adwrapper/* (easylistchina+easylist.txt: 13411) -/(.*/)?adwrapper/.* -# /adworx_ (easylistchina+easylist.txt: 13410) -/(.*/)?adworx_ -# /adworx. (easylistchina+easylist.txt: 13409) -/(.*/)?adworx\. -adworx.*. -# /adworldmedia/* (easylistchina+easylist.txt: 13408) -/(.*/)?adworldmedia/.* -# /adworks/* (easylistchina+easylist.txt: 13407) -/(.*/)?adworks/.* -# /adWorking/* (easylistchina+easylist.txt: 13405) -/(.*/)?adWorking/.* -# /adwordstracking.js (easylistchina+easylist.txt: 13404) -/(.*/)?adwordstracking\.js -adwordstracking.js*. -# /adwords/* (easylistchina+easylist.txt: 13403) -/(.*/)?adwords/.* -# /adwolf. (easylistchina+easylist.txt: 13401) -/(.*/)?adwolf\. -adwolf.*. -# /adwizard_ (easylistchina+easylist.txt: 13400) -/(.*/)?adwizard_ -# /adwizard. (easylistchina+easylist.txt: 13399) -/(.*/)?adwizard\. -adwizard.*. -# /adwiz/* (easylistchina+easylist.txt: 13398) -/(.*/)?adwiz/.* -# /adwiz. (easylistchina+easylist.txt: 13397) -/(.*/)?adwiz\. -adwiz.*. -# /adWiseShopPlus1. (easylistchina+easylist.txt: 13396) -/(.*/)?adWiseShopPlus1\. -adWiseShopPlus1.*. -# /adwise/* (easylistchina+easylist.txt: 13395) -/(.*/)?adwise/.* -# /adwidgets/* (easylistchina+easylist.txt: 13394) -/(.*/)?adwidgets/.* -# /adwidget/* (easylistchina+easylist.txt: 13393) -/(.*/)?adwidget/.* -# /adweb33. (easylistchina+easylist.txt: 13392) -/(.*/)?adweb33\. -adweb33.*. -# /adweb2. (easylistchina+easylist.txt: 13391) -/(.*/)?adweb2\. -adweb2.*. -# /adweb. (easylistchina+easylist.txt: 13390) -/(.*/)?adweb\. -adweb.*. -# /adw2.shtml (easylistchina+easylist.txt: 13389) -/(.*/)?adw2\.shtml -adw2.shtml*. -# /adw.shtml (easylistchina+easylist.txt: 13388) -/(.*/)?adw\.shtml -adw.shtml*. -# /advzones/* (easylistchina+easylist.txt: 13387) -/(.*/)?advzones/.* -# /AdvWindow/* (easylistchina+easylist.txt: 13386) -/(.*/)?AdvWindow/.* -# /advweb. (easylistchina+easylist.txt: 13385) -/(.*/)?advweb\. -advweb.*. -# /advtemplate_ (easylistchina+easylist.txt: 13384) -/(.*/)?advtemplate_ -# /advtemplate/* (easylistchina+easylist.txt: 13383) -/(.*/)?advtemplate/.* -# /advtarget/* (easylistchina+easylist.txt: 13382) -/(.*/)?advtarget/.* -# /advt2. (easylistchina+easylist.txt: 13381) -/(.*/)?advt2\. -advt2.*. -# /advt/* (easylistchina+easylist.txt: 13380) -/(.*/)?advt/.* -# /advt. (easylistchina+easylist.txt: 13379) -/(.*/)?advt\. -advt.*. -# /advshow. (easylistchina+easylist.txt: 13378) -/(.*/)?advshow\. -advshow.*. -# /advscripts/* (easylistchina+easylist.txt: 13377) -/(.*/)?advscripts/.* -# /advscript. (easylistchina+easylist.txt: 13376) -/(.*/)?advscript\. -advscript.*. -# /advs/* (easylistchina+easylist.txt: 13375) -/(.*/)?advs/.* -# /advs.ads. (easylistchina+easylist.txt: 13374) -/(.*/)?advs\.ads\. -advs.ads.*. -# /advrotator. (easylistchina+easylist.txt: 13373) -/(.*/)?advrotator\. -advrotator.*. -# /advris/* (easylistchina+easylist.txt: 13372) -/(.*/)?advris/.* -# /advpreload. (easylistchina+easylist.txt: 13371) -/(.*/)?advpreload\. -advpreload.*. -# /advPop. (easylistchina+easylist.txt: 13370) -/(.*/)?advPop\. -advPop.*. -# /advpartnerinit. (easylistchina+easylist.txt: 13369) -/(.*/)?advpartnerinit\. -advpartnerinit.*. -# /advolatility. (easylistchina+easylist.txt: 13368) -/(.*/)?advolatility\. -advolatility.*. -# /advloader. (easylistchina+easylist.txt: 13367) -/(.*/)?advloader\. -advloader.*. -# /advlink300. (easylistchina+easylist.txt: 13366) -/(.*/)?advlink300\. -advlink300.*. -# /adVisit. (easylistchina+easylist.txt: 13365) -/(.*/)?adVisit\. -adVisit.*. -# /advision. (easylistchina+easylist.txt: 13364) -/(.*/)?advision\. -advision.*. -# /advinfo. (easylistchina+easylist.txt: 13363) -/(.*/)?advinfo\. -advinfo.*. -# /adviframe/* (easylistchina+easylist.txt: 13362) -/(.*/)?adviframe/.* -# /adviewer. (easylistchina+easylist.txt: 13361) -/(.*/)?adviewer\. -adviewer.*. -# /adviewed. (easylistchina+easylist.txt: 13360) -/(.*/)?adviewed\. -adviewed.*. -# /adviewas3. (easylistchina+easylist.txt: 13359) -/(.*/)?adviewas3\. -adviewas3.*. -# /adview_ (easylistchina+easylist.txt: 13358) -/(.*/)?adview_ -# /adview? (easylistchina+easylist.txt: 13357) -/(.*/)?adview\? -# /adview/* (easylistchina+easylist.txt: 13356) -/(.*/)?adview/.* -# /adview. (easylistchina+easylist.txt: 13355) -/(.*/)?adview\. -adview.*. -# /advice-ads. (easylistchina+easylist.txt: 13354) -/(.*/)?advice-ads\. -advice-ads.*. -# /advhd. (easylistchina+easylist.txt: 13353) -/(.*/)?advhd\. -advhd.*. -# /advfiles/* (easylistchina+easylist.txt: 13352) -/(.*/)?advfiles/.* -# /advf1. (easylistchina+easylist.txt: 13351) -/(.*/)?advf1\. -advf1.*. -# /advertwebapp. (easylistchina+easylist.txt: 13350) -/(.*/)?advertwebapp\. -advertwebapp.*. -# /advertverticallong. (easylistchina+easylist.txt: 13349) -/(.*/)?advertverticallong\. -advertverticallong.*. -# /adverttop. (easylistchina+easylist.txt: 13348) -/(.*/)?adverttop\. -adverttop.*. -# /advertstub. (easylistchina+easylist.txt: 13347) -/(.*/)?advertstub\. -advertstub.*. -# /advertsquare. (easylistchina+easylist.txt: 13346) -/(.*/)?advertsquare\. -advertsquare.*. -# /advertsky. (easylistchina+easylist.txt: 13345) -/(.*/)?advertsky\. -advertsky.*. -# /advertserve. (easylistchina+easylist.txt: 13344) -/(.*/)?advertserve\. -advertserve.*. -# /adverts_ (easylistchina+easylist.txt: 13343) -/(.*/)?adverts_ -# /adverts/* (easylistchina+easylist.txt: 13342) -/(.*/)?adverts/.* -# /adverts. (easylistchina+easylist.txt: 13341) -/(.*/)?adverts\. -adverts.*. -# /advertright. (easylistchina+easylist.txt: 13340) -/(.*/)?advertright\. -advertright.*. -# /advertrail. (easylistchina+easylist.txt: 13339) -/(.*/)?advertrail\. -advertrail.*. -# /advertpro/* (easylistchina+easylist.txt: 13338) -/(.*/)?advertpro/.* -# /advertpixelmedia1. (easylistchina+easylist.txt: 13337) -/(.*/)?advertpixelmedia1\. -advertpixelmedia1.*. -# /advertphp/* (easylistchina+easylist.txt: 13336) -/(.*/)?advertphp/.* -# /advertorials/* (easylistchina+easylist.txt: 13335) -/(.*/)?advertorials/.* -# /advertorial_ (easylistchina+easylist.txt: 13334) -/(.*/)?advertorial_ -# /advertorial/* (easylistchina+easylist.txt: 13333) -/(.*/)?advertorial/.* -# /advertmsig. (easylistchina+easylist.txt: 13332) -/(.*/)?advertmsig\. -advertmsig.*. -# /advertmedia/* (easylistchina+easylist.txt: 13331) -/(.*/)?advertmedia/.* -# /advertlayer. (easylistchina+easylist.txt: 13330) -/(.*/)?advertlayer\. -advertlayer.*. -# /advertize_ (easylistchina+easylist.txt: 13329) -/(.*/)?advertize_ -# /advertisments/* (easylistchina+easylist.txt: 13328) -/(.*/)?advertisments/.* -# /advertisment_ (easylistchina+easylist.txt: 13327) -/(.*/)?advertisment_ -# /advertisment1- (easylistchina+easylist.txt: 13326) -/(.*/)?advertisment1- -advertisment1-*. -# /advertisment/* (easylistchina+easylist.txt: 13325) -/(.*/)?advertisment/.* -# /advertisment. (easylistchina+easylist.txt: 13324) -/(.*/)?advertisment\. -advertisment.*. -# /advertisment- (easylistchina+easylist.txt: 13323) -/(.*/)?advertisment- -advertisment-*. -# /advertisingwidgets/* (easylistchina+easylist.txt: 13322) -/(.*/)?advertisingwidgets/.* -# /advertisings. (easylistchina+easylist.txt: 13321) -/(.*/)?advertisings\. -advertisings.*. -# /advertisingmodule. (easylistchina+easylist.txt: 13320) -/(.*/)?advertisingmodule\. -advertisingmodule.*. -# /advertisingmanual. (easylistchina+easylist.txt: 13319) -/(.*/)?advertisingmanual\. -advertisingmanual.*. -# /advertisinglinks_ (easylistchina+easylist.txt: 13318) -/(.*/)?advertisinglinks_ -# /AdvertisingIsPresent6? (easylistchina+easylist.txt: 13317) -/(.*/)?AdvertisingIsPresent6\? -# /advertisingimageexte/* (easylistchina+easylist.txt: 13316) -/(.*/)?advertisingimageexte/.* -# /advertisingcontent/* (easylistchina+easylist.txt: 13315) -/(.*/)?advertisingcontent/.* -# /advertisingbutton. (easylistchina+easylist.txt: 13314) -/(.*/)?advertisingbutton\. -advertisingbutton.*. -# /advertisingbanner_ (easylistchina+easylist.txt: 13313) -/(.*/)?advertisingbanner_ -# /advertisingbanner1. (easylistchina+easylist.txt: 13312) -/(.*/)?advertisingbanner1\. -advertisingbanner1.*. -# /advertisingbanner/* (easylistchina+easylist.txt: 13311) -/(.*/)?advertisingbanner/.* -# /advertisingbanner. (easylistchina+easylist.txt: 13310) -/(.*/)?advertisingbanner\. -advertisingbanner.*. -# /advertising_ (easylistchina+easylist.txt: 13309) -/(.*/)?advertising_ -# /advertising? (easylistchina+easylist.txt: 13308) -/(.*/)?advertising\? -# /advertising300x250. (easylistchina+easylist.txt: 13307) -/(.*/)?advertising300x250\. -advertising300x250.*. -# /advertising2. (easylistchina+easylist.txt: 13306) -/(.*/)?advertising2\. -advertising2.*. -# /advertising02. (easylistchina+easylist.txt: 13305) -/(.*/)?advertising02\. -advertising02.*. -# /advertising. (easylistchina+easylist.txt: 13303) -/(.*/)?advertising\. -advertising.*. -# /advertisewithus_ (easylistchina+easylist.txt: 13301) -/(.*/)?advertisewithus_ -# /advertises/* (easylistchina+easylist.txt: 13300) -/(.*/)?advertises/.* -# /advertiserwidget. (easylistchina+easylist.txt: 13299) -/(.*/)?advertiserwidget\. -advertiserwidget.*. -# /advertisementview/* (easylistchina+easylist.txt: 13294) -/(.*/)?advertisementview/.* -# /AdvertisementShare. (easylistchina+easylist.txt: 13293) -/(.*/)?AdvertisementShare\. -AdvertisementShare.*. -# /advertisements_ (easylistchina+easylist.txt: 13292) -/(.*/)?advertisements_ -# /advertisements2. (easylistchina+easylist.txt: 13291) -/(.*/)?advertisements2\. -advertisements2.*. -# /advertisements/* (easylistchina+easylist.txt: 13290) -/(.*/)?advertisements/.* -# /advertisements. (easylistchina+easylist.txt: 13289) -/(.*/)?advertisements\. -advertisements.*. -# /advertisements- (easylistchina+easylist.txt: 13288) -/(.*/)?advertisements- -advertisements-*. -# /advertisementrotation. (easylistchina+easylist.txt: 13287) -/(.*/)?advertisementrotation\. -advertisementrotation.*. -# /advertisementmapping. (easylistchina+easylist.txt: 13286) -/(.*/)?advertisementmapping\. -advertisementmapping.*. -# /advertisementheader. (easylistchina+easylist.txt: 13285) -/(.*/)?advertisementheader\. -advertisementheader.*. -# /advertisementAPI/* (easylistchina+easylist.txt: 13284) -/(.*/)?advertisementAPI/.* -# /advertisement_ (easylistchina+easylist.txt: 13283) -/(.*/)?advertisement_ -# /advertisement3. (easylistchina+easylist.txt: 13282) -/(.*/)?advertisement3\. -advertisement3.*. -# /advertisement2. (easylistchina+easylist.txt: 13281) -/(.*/)?advertisement2\. -advertisement2.*. -# /advertisement160. (easylistchina+easylist.txt: 13280) -/(.*/)?advertisement160\. -advertisement160.*. -# /advertisement1. (easylistchina+easylist.txt: 13279) -/(.*/)?advertisement1\. -advertisement1.*. -# /advertisement/* (easylistchina+easylist.txt: 13278) -/(.*/)?advertisement/.* -# /advertisement. (easylistchina+easylist.txt: 13277) -/(.*/)?advertisement\. -advertisement.*. -# /advertisement- (easylistchina+easylist.txt: 13276) -/(.*/)?advertisement- -advertisement-*. -# /advertisehere. (easylistchina+easylist.txt: 13275) -/(.*/)?advertisehere\. -advertisehere.*. -# /advertise_ (easylistchina+easylist.txt: 13274) -/(.*/)?advertise_ -# /advertise125x125. (easylistchina+easylist.txt: 13273) -/(.*/)?advertise125x125\. -advertise125x125.*. -# /advertise/* (easylistchina+easylist.txt: 13272) -/(.*/)?advertise/.* -# /advertise- (easylistchina+easylist.txt: 13270) -/(.*/)?advertise- -advertise-*. -# /advertical. (easylistchina+easylist.txt: 13269) -/(.*/)?advertical\. -advertical.*. -# /adverthorisontalfullwidth. (easylistchina+easylist.txt: 13268) -/(.*/)?adverthorisontalfullwidth\. -adverthorisontalfullwidth.*. -# /adverth. (easylistchina+easylist.txt: 13267) -/(.*/)?adverth\. -adverth.*. -# /advertguruonline1. (easylistchina+easylist.txt: 13266) -/(.*/)?advertguruonline1\. -advertguruonline1.*. -# /advertbox. (easylistchina+easylist.txt: 13265) -/(.*/)?advertbox\. -advertbox.*. -# /advertbanner2. (easylistchina+easylist.txt: 13264) -/(.*/)?advertbanner2\. -advertbanner2.*. -# /advertbanner. (easylistchina+easylist.txt: 13263) -/(.*/)?advertbanner\. -advertbanner.*. -# /advert_ (easylistchina+easylist.txt: 13262) -/(.*/)?advert_ -# /advert? (easylistchina+easylist.txt: 13261) -/(.*/)?advert\? -# /advert6. (easylistchina+easylist.txt: 13260) -/(.*/)?advert6\. -advert6.*. -# /advert5. (easylistchina+easylist.txt: 13259) -/(.*/)?advert5\. -advert5.*. -# /advert4. (easylistchina+easylist.txt: 13258) -/(.*/)?advert4\. -advert4.*. -# /advert37. (easylistchina+easylist.txt: 13257) -/(.*/)?advert37\. -advert37.*. -# /advert36. (easylistchina+easylist.txt: 13256) -/(.*/)?advert36\. -advert36.*. -# /advert35. (easylistchina+easylist.txt: 13255) -/(.*/)?advert35\. -advert35.*. -# /advert34. (easylistchina+easylist.txt: 13254) -/(.*/)?advert34\. -advert34.*. -# /advert33. (easylistchina+easylist.txt: 13253) -/(.*/)?advert33\. -advert33.*. -# /advert32. (easylistchina+easylist.txt: 13252) -/(.*/)?advert32\. -advert32.*. -# /advert31. (easylistchina+easylist.txt: 13251) -/(.*/)?advert31\. -advert31.*. -# /advert3. (easylistchina+easylist.txt: 13250) -/(.*/)?advert3\. -advert3.*. -# /advert2. (easylistchina+easylist.txt: 13249) -/(.*/)?advert2\. -advert2.*. -# /advert1/* (easylistchina+easylist.txt: 13248) -/(.*/)?advert1/.* -# /advert1. (easylistchina+easylist.txt: 13247) -/(.*/)?advert1\. -advert1.*. -# /advert01. (easylistchina+easylist.txt: 13246) -/(.*/)?advert01\. -advert01.*. -# /advert/* (easylistchina+easylist.txt: 13245) -/(.*/)?advert/.* -# /advert. (easylistchina+easylist.txt: 13244) -/(.*/)?advert\. -advert.*. -# /advert- (easylistchina+easylist.txt: 13243) -/(.*/)?advert- -advert-*. -# /adversting? (easylistchina+easylist.txt: 13242) -/(.*/)?adversting\? -# /adversting/* (easylistchina+easylist.txt: 13241) -/(.*/)?adversting/.* -# /adverserve. (easylistchina+easylist.txt: 13240) -/(.*/)?adverserve\. -adverserve.*. -# /adverfisement2. (easylistchina+easylist.txt: 13239) -/(.*/)?adverfisement2\. -adverfisement2.*. -# /adverfisement. (easylistchina+easylist.txt: 13238) -/(.*/)?adverfisement\. -adverfisement.*. -# /adver_hor. (easylistchina+easylist.txt: 13237) -/(.*/)?adver_hor\. -# /adver. (easylistchina+easylist.txt: 13236) -/(.*/)?adver\. -adver.*. -# /adver-left. (easylistchina+easylist.txt: 13235) -/(.*/)?adver-left\. -adver-left.*. -# /advengine. (easylistchina+easylist.txt: 13234) -/(.*/)?advengine\. -advengine.*. -# /advdoc/* (easylistchina+easylist.txt: 13233) -/(.*/)?advdoc/.* -# /advdl. (easylistchina+easylist.txt: 13232) -/(.*/)?advdl\. -advdl.*. -# /advcounter. (easylistchina+easylist.txt: 13231) -/(.*/)?advcounter\. -advcounter.*. -# /advcontents. (easylistchina+easylist.txt: 13230) -/(.*/)?advcontents\. -advcontents.*. -# /advbanners/* (easylistchina+easylist.txt: 13229) -/(.*/)?advbanners/.* -# /advbanner/* (easylistchina+easylist.txt: 13228) -/(.*/)?advbanner/.* -# /advault. (easylistchina+easylist.txt: 13227) -/(.*/)?advault\. -advault.*. -# /advanced-ads- (easylistchina+easylist.txt: 13226) -/(.*/)?advanced-ads- -advanced-ads-*. -# /advaluewriter. (easylistchina+easylist.txt: 13225) -/(.*/)?advaluewriter\. -advaluewriter.*. -# /advalue_ (easylistchina+easylist.txt: 13224) -/(.*/)?advalue_ -# /advalue/* (easylistchina+easylist.txt: 13223) -/(.*/)?advalue/.* -# /adv_vertical. (easylistchina+easylist.txt: 13222) -/(.*/)?adv_vertical\. -# /adv_vert. (easylistchina+easylist.txt: 13221) -/(.*/)?adv_vert\. -# /adv_top. (easylistchina+easylist.txt: 13220) -/(.*/)?adv_top\. -# /adv_teasers. (easylistchina+easylist.txt: 13219) -/(.*/)?adv_teasers\. -# /adv_server. (easylistchina+easylist.txt: 13218) -/(.*/)?adv_server\. -# /adv_script_ (easylistchina+easylist.txt: 13217) -/(.*/)?adv_script_ -# /adv_player_ (easylistchina+easylist.txt: 13216) -/(.*/)?adv_player_ -# /adv_out. (easylistchina+easylist.txt: 13215) -/(.*/)?adv_out\. -# /adv_manager_ (easylistchina+easylist.txt: 13214) -/(.*/)?adv_manager_ -# /adv_link. (easylistchina+easylist.txt: 13213) -/(.*/)?adv_link\. -# /adv_library3. (easylistchina+easylist.txt: 13212) -/(.*/)?adv_library3\. -# /adv_left_ (easylistchina+easylist.txt: 13211) -/(.*/)?adv_left_ -# /adv_image/* (easylistchina+easylist.txt: 13210) -/(.*/)?adv_image/.* -# /adv_horiz. (easylistchina+easylist.txt: 13209) -/(.*/)?adv_horiz\. -# /adv_frame/* (easylistchina+easylist.txt: 13208) -/(.*/)?adv_frame/.* -# /adv_flash. (easylistchina+easylist.txt: 13207) -/(.*/)?adv_flash\. -# /adv_display. (easylistchina+easylist.txt: 13206) -/(.*/)?adv_display\. -# /adv_burt_ (easylistchina+easylist.txt: 13205) -/(.*/)?adv_burt_ -# /adv_box_ (easylistchina+easylist.txt: 13204) -/(.*/)?adv_box_ -# /adv_banner_ (easylistchina+easylist.txt: 13203) -/(.*/)?adv_banner_ -# /adv_background/* (easylistchina+easylist.txt: 13202) -/(.*/)?adv_background/.* -# /adv_468. (easylistchina+easylist.txt: 13201) -/(.*/)?adv_468\. -# /adv_2. (easylistchina+easylist.txt: 13200) -/(.*/)?adv_2\. -# /adv8. (easylistchina+easylist.txt: 13199) -/(.*/)?adv8\. -adv8.*. -# /adv6. (easylistchina+easylist.txt: 13198) -/(.*/)?adv6\. -adv6.*. -# /adv5. (easylistchina+easylist.txt: 13197) -/(.*/)?adv5\. -adv5.*. -# /Adv468. (easylistchina+easylist.txt: 13196) -/(.*/)?Adv468\. -Adv468.*. -# /adv4. (easylistchina+easylist.txt: 13195) -/(.*/)?adv4\. -adv4.*. -# /adv3. (easylistchina+easylist.txt: 13194) -/(.*/)?adv3\. -adv3.*. -# /adv2. (easylistchina+easylist.txt: 13193) -/(.*/)?adv2\. -adv2.*. -# /adv180x150. (easylistchina+easylist.txt: 13192) -/(.*/)?adv180x150\. -adv180x150.*. -# /Adv150. (easylistchina+easylist.txt: 13191) -/(.*/)?Adv150\. -Adv150.*. -# /adv1. (easylistchina+easylist.txt: 13190) -/(.*/)?adv1\. -adv1.*. -# /adv03. (easylistchina+easylist.txt: 13189) -/(.*/)?adv03\. -adv03.*. -# /adv02. (easylistchina+easylist.txt: 13188) -/(.*/)?adv02\. -adv02.*. -# /adv/topBanners. (easylistchina+easylist.txt: 13187) -/(.*/)?adv/topBanners\. -# /adv/sprintf- (easylistchina+easylist.txt: 13186) -/(.*/)?adv/sprintf- -# /adv/sponsor/* (easylistchina+easylist.txt: 13185) -/(.*/)?adv/sponsor/.* -# /adv/skin_ (easylistchina+easylist.txt: 13184) -/(.*/)?adv/skin_ -# /adv/skin. (easylistchina+easylist.txt: 13183) -/(.*/)?adv/skin\. -# /adv/search. (easylistchina+easylist.txt: 13182) -/(.*/)?adv/search\. -# /adv/script2. (easylistchina+easylist.txt: 13181) -/(.*/)?adv/script2\. -# /adv/script1. (easylistchina+easylist.txt: 13180) -/(.*/)?adv/script1\. -# /adv/rdb. (easylistchina+easylist.txt: 13179) -/(.*/)?adv/rdb\. -# /adv/preroll_ (easylistchina+easylist.txt: 13178) -/(.*/)?adv/preroll_ -# /adv/mobile/* (easylistchina+easylist.txt: 13177) -/(.*/)?adv/mobile/.* -# /adv/mjx. (easylistchina+easylist.txt: 13176) -/(.*/)?adv/mjx\. -# /adv/managers/* (easylistchina+easylist.txt: 13175) -/(.*/)?adv/managers/.* -# /adv/lrec_ (easylistchina+easylist.txt: 13174) -/(.*/)?adv/lrec_ -# /adv/kelkoo_ (easylistchina+easylist.txt: 13173) -/(.*/)?adv/kelkoo_ -# /adv/kelkoo/* (easylistchina+easylist.txt: 13172) -/(.*/)?adv/kelkoo/.* -# /adv/interstitial. (easylistchina+easylist.txt: 13171) -/(.*/)?adv/interstitial\. -# /adv/box- (easylistchina+easylist.txt: 13170) -/(.*/)?adv/box- -# /adv/bottomBanners. (easylistchina+easylist.txt: 13169) -/(.*/)?adv/bottomBanners\. -# /adv/banner1/* (easylistchina+easylist.txt: 13168) -/(.*/)?adv/banner1/.* -# /adv/banner/* (easylistchina+easylist.txt: 13167) -/(.*/)?adv/banner/.* -# /adv/background/* (easylistchina+easylist.txt: 13166) -/(.*/)?adv/background/.* -# /adv/adv_ (easylistchina+easylist.txt: 13165) -/(.*/)?adv/adv_ -# /adv/ads/* (easylistchina+easylist.txt: 13164) -/(.*/)?adv/ads/.* -# /adv/adriver (easylistchina+easylist.txt: 13163) -/(.*/)?adv/adriver -# /adv.png (easylistchina+easylist.txt: 13162) -/(.*/)?adv\.png -adv.png*. -# /adv.php (easylistchina+easylist.txt: 13161) -/(.*/)?adv\.php -adv.php*. -# /adv.jsp (easylistchina+easylist.txt: 13160) -/(.*/)?adv\.jsp -adv.jsp*. -# /adv.html (easylistchina+easylist.txt: 13159) -/(.*/)?adv\.html -adv.html*. -# /adv.css? (easylistchina+easylist.txt: 13158) -/(.*/)?adv\.css\? -# /adv.asp (easylistchina+easylist.txt: 13157) -/(.*/)?adv\.asp -adv.asp*. -# /adv-socialbar- (easylistchina+easylist.txt: 13156) -/(.*/)?adv-socialbar- -adv-socialbar-*. -# /adv-scroll. (easylistchina+easylist.txt: 13155) -/(.*/)?adv-scroll\. -adv-scroll.*. -# /adv-f. (easylistchina+easylist.txt: 13154) -/(.*/)?adv-f\. -adv-f.*. -# /adv-ext- (easylistchina+easylist.txt: 13153) -/(.*/)?adv-ext- -adv-ext-*. -# /adv-expand/* (easylistchina+easylist.txt: 13152) -/(.*/)?adv-expand/.* -# /adv-div- (easylistchina+easylist.txt: 13151) -/(.*/)?adv-div- -adv-div-*. -# /adv-banners/* (easylistchina+easylist.txt: 13150) -/(.*/)?adv-banners/.* -# /adv-bannerize- (easylistchina+easylist.txt: 13149) -/(.*/)?adv-bannerize- -adv-bannerize-*. -# /adv-banner. (easylistchina+easylist.txt: 13148) -/(.*/)?adv-banner\. -adv-banner.*. -# /adv-2. (easylistchina+easylist.txt: 13147) -/(.*/)?adv-2\. -adv-2.*. -# /adv-1. (easylistchina+easylist.txt: 13146) -/(.*/)?adv-1\. -adv-1.*. -# /aduxads/* (easylistchina+easylist.txt: 13145) -/(.*/)?aduxads/.* -# /aduxads. (easylistchina+easylist.txt: 13144) -/(.*/)?aduxads\. -aduxads.*. -# /adutils. (easylistchina+easylist.txt: 13143) -/(.*/)?adutils\. -adutils.*. -# /adutil. (easylistchina+easylist.txt: 13142) -/(.*/)?adutil\. -adutil.*. -# /adunix. (easylistchina+easylist.txt: 13141) -/(.*/)?adunix\. -adunix.*. -# /adunittop| (easylistchina+easylist.txt: 13140) -/(.*/)?adunittop$ -# /adunits? (easylistchina+easylist.txt: 13139) -/(.*/)?adunits\? -# /adunits/* (easylistchina+easylist.txt: 13138) -/(.*/)?adunits/.* -# /adunits. (easylistchina+easylist.txt: 13137) -/(.*/)?adunits\. -adunits.*. -# /adunit/* (easylistchina+easylist.txt: 13136) -/(.*/)?adunit/.* -# /adunit. (easylistchina+easylist.txt: 13135) -/(.*/)?adunit\. -adunit.*. -# /adultimate. (easylistchina+easylist.txt: 13134) -/(.*/)?adultimate\. -adultimate.*. -# /adultadworldpop_ (easylistchina+easylist.txt: 13133) -/(.*/)?adultadworldpop_ -# /adtype= (easylistchina+easylist.txt: 13132) -/(.*/)?adtype= -# /adtype. (easylistchina+easylist.txt: 13131) -/(.*/)?adtype\. -adtype.*. -# /adtxt. (easylistchina+easylist.txt: 13130) -/(.*/)?adtxt\. -adtxt.*. -# /adtvideo. (easylistchina+easylist.txt: 13129) -/(.*/)?adtvideo\. -adtvideo.*. -# /adttext. (easylistchina+easylist.txt: 13128) -/(.*/)?adttext\. -adttext.*. -# /adttext- (easylistchina+easylist.txt: 13127) -/(.*/)?adttext- -adttext-*. -# /adtraff. (easylistchina+easylist.txt: 13126) -/(.*/)?adtraff\. -adtraff.*. -# /adtracking/* (easylistchina+easylist.txt: 13125) -/(.*/)?adtracking/.* -# /adtracking. (easylistchina+easylist.txt: 13124) -/(.*/)?adtracking\. -adtracking.*. -# /adtracker? (easylistchina+easylist.txt: 13123) -/(.*/)?adtracker\? -# /adtracker/* (easylistchina+easylist.txt: 13122) -/(.*/)?adtracker/.* -# /adtracker. (easylistchina+easylist.txt: 13121) -/(.*/)?adtracker\. -adtracker.*. -# /adtrack/* (easylistchina+easylist.txt: 13120) -/(.*/)?adtrack/.* -# /adtrack. (easylistchina+easylist.txt: 13119) -/(.*/)?adtrack\. -adtrack.*. -# /adtopsky. (easylistchina+easylist.txt: 13118) -/(.*/)?adtopsky\. -adtopsky.*. -# /adtopright. (easylistchina+easylist.txt: 13117) -/(.*/)?adtopright\. -adtopright.*. -# /adtopmidsky. (easylistchina+easylist.txt: 13116) -/(.*/)?adtopmidsky\. -adtopmidsky.*. -# /adtopleft. (easylistchina+easylist.txt: 13115) -/(.*/)?adtopleft\. -adtopleft.*. -# /adtopcenter. (easylistchina+easylist.txt: 13114) -/(.*/)?adtopcenter\. -adtopcenter.*. -# /adtop728. (easylistchina+easylist.txt: 13113) -/(.*/)?adtop728\. -adtop728.*. -# /adtop300. (easylistchina+easylist.txt: 13112) -/(.*/)?adtop300\. -adtop300.*. -# /adtop160. (easylistchina+easylist.txt: 13111) -/(.*/)?adtop160\. -adtop160.*. -# /adtop. (easylistchina+easylist.txt: 13110) -/(.*/)?adtop\. -adtop.*. -# /adtooltip/* (easylistchina+easylist.txt: 13109) -/(.*/)?adtooltip/.* -# /adtools2. (easylistchina+easylist.txt: 13108) -/(.*/)?adtools2\. -adtools2.*. -# /adtools/* (easylistchina+easylist.txt: 13107) -/(.*/)?adtools/.* -# /adtool/* (easylistchina+easylist.txt: 13106) -/(.*/)?adtool/.* -# /adtonomy. (easylistchina+easylist.txt: 13105) -/(.*/)?adtonomy\. -adtonomy.*. -# /adtomo/* (easylistchina+easylist.txt: 13104) -/(.*/)?adtomo/.* -# /adtology. (easylistchina+easylist.txt: 13103) -/(.*/)?adtology\. -adtology.*. -# /adtitle. (easylistchina+easylist.txt: 13102) -/(.*/)?adtitle\. -adtitle.*. -# /adtimage. (easylistchina+easylist.txt: 13101) -/(.*/)?adtimage\. -adtimage.*. -# /adtextmpu2. (easylistchina+easylist.txt: 13100) -/(.*/)?adtextmpu2\. -adtextmpu2.*. -# /adtext_ (easylistchina+easylist.txt: 13099) -/(.*/)?adtext_ -# /adtext4. (easylistchina+easylist.txt: 13098) -/(.*/)?adtext4\. -adtext4.*. -# /adtext2. (easylistchina+easylist.txt: 13097) -/(.*/)?adtext2\. -adtext2.*. -# /adtext. (easylistchina+easylist.txt: 13096) -/(.*/)?adtext\. -adtext.*. -# /adtest/* (easylistchina+easylist.txt: 13095) -/(.*/)?adtest/.* -# /adtest. (easylistchina+easylist.txt: 13094) -/(.*/)?adtest\. -adtest.*. -# /adtechscript. (easylistchina+easylist.txt: 13093) -/(.*/)?adtechscript\. -adtechscript.*. -# /adtechHeader. (easylistchina+easylist.txt: 13092) -/(.*/)?adtechHeader\. -adtechHeader.*. -# /adtechglobalsettings.js (easylistchina+easylist.txt: 13091) -/(.*/)?adtechglobalsettings\.js -adtechglobalsettings.js*. -# /adtech_ (easylistchina+easylist.txt: 13090) -/(.*/)?adtech_ -# /adtech; (easylistchina+easylist.txt: 13089) -/(.*/)?adtech; -# /adtech/* (easylistchina+easylist.txt: 13088) -/(.*/)?adtech/.* -# /adtech. (easylistchina+easylist.txt: 13087) -/(.*/)?adtech\. -adtech.*. -# /adtech- (easylistchina+easylist.txt: 13086) -/(.*/)?adtech- -adtech-*. -# /adtaobao. (easylistchina+easylist.txt: 13085) -/(.*/)?adtaobao\. -adtaobao.*. -# /adtaily_ (easylistchina+easylist.txt: 13084) -/(.*/)?adtaily_ -# /adtagtranslator. (easylistchina+easylist.txt: 13083) -/(.*/)?adtagtranslator\. -adtagtranslator.*. -# /adtagtc. (easylistchina+easylist.txt: 13082) -/(.*/)?adtagtc\. -adtagtc.*. -# /adtags/* (easylistchina+easylist.txt: 13081) -/(.*/)?adtags/.* -# /adtags. (easylistchina+easylist.txt: 13080) -/(.*/)?adtags\. -adtags.*. -# /adTagRequest. (easylistchina+easylist.txt: 13079) -/(.*/)?adTagRequest\. -adTagRequest.*. -# /adtago. (easylistchina+easylist.txt: 13078) -/(.*/)?adtago\. -adtago.*. -# /adtaggingsubsec. (easylistchina+easylist.txt: 13077) -/(.*/)?adtaggingsubsec\. -adtaggingsubsec.*. -# /adtagcms. (easylistchina+easylist.txt: 13076) -/(.*/)?adtagcms\. -adtagcms.*. -# /adtag_ (easylistchina+easylist.txt: 13075) -/(.*/)?adtag_ -# /adtag? (easylistchina+easylist.txt: 13074) -/(.*/)?adtag\? -# /adtag/* (easylistchina+easylist.txt: 13073) -/(.*/)?adtag/.* -# /adtag. (easylistchina+easylist.txt: 13072) -/(.*/)?adtag\. -adtag.*. -# /adtadd1. (easylistchina+easylist.txt: 13071) -/(.*/)?adtadd1\. -adtadd1.*. -# /adtabs. (easylistchina+easylist.txt: 13070) -/(.*/)?adtabs\. -adtabs.*. -# /adtable_ (easylistchina+easylist.txt: 13069) -/(.*/)?adtable_ -# /ads~adsize~ (easylistchina+easylist.txt: 13068) -/(.*/)?ads~adsize~ -# /adsystem/* (easylistchina+easylist.txt: 13067) -/(.*/)?adsystem/.* -# /adsystem. (easylistchina+easylist.txt: 13066) -/(.*/)?adsystem\. -adsystem.*. -# /adsys/* (easylistchina+easylist.txt: 13065) -/(.*/)?adsys/.* -# /adsys. (easylistchina+easylist.txt: 13064) -/(.*/)?adsys\. -adsys.*. -# /adsyndication/* (easylistchina+easylist.txt: 13063) -/(.*/)?adsyndication/.* -# /adsyndication. (easylistchina+easylist.txt: 13062) -/(.*/)?adsyndication\. -adsyndication.*. -# /adsync/* (easylistchina+easylist.txt: 13061) -/(.*/)?adsync/.* -# /adsxml/* (easylistchina+easylist.txt: 13060) -/(.*/)?adsxml/.* -# /adsx_728. (easylistchina+easylist.txt: 13059) -/(.*/)?adsx_728\. -# /adsx728. (easylistchina+easylist.txt: 13058) -/(.*/)?adsx728\. -adsx728.*. -# /adsx/* (easylistchina+easylist.txt: 13057) -/(.*/)?adsx/.* -# /adswrapperintl. (easylistchina+easylist.txt: 13056) -/(.*/)?adswrapperintl\. -adswrapperintl.*. -# /adswrapper3. (easylistchina+easylist.txt: 13055) -/(.*/)?adswrapper3\. -adswrapper3.*. -# /adswrapper. (easylistchina+easylist.txt: 13054) -/(.*/)?adswrapper\. -adswrapper.*. -# /adsword. (easylistchina+easylist.txt: 13053) -/(.*/)?adsword\. -adsword.*. -# /adswidejs. (easylistchina+easylist.txt: 13052) -/(.*/)?adswidejs\. -adswidejs.*. -# /adswide. (easylistchina+easylist.txt: 13051) -/(.*/)?adswide\. -adswide.*. -# /adsweb. (easylistchina+easylist.txt: 13050) -/(.*/)?adsweb\. -adsweb.*. -# /adswap/* (easylistchina+easylist.txt: 13049) -/(.*/)?adswap/.* -# /adswap. (easylistchina+easylist.txt: 13048) -/(.*/)?adswap\. -adswap.*. -# /adswap- (easylistchina+easylist.txt: 13047) -/(.*/)?adswap- -adswap-*. -# /adsvr2. (easylistchina+easylist.txt: 13046) -/(.*/)?adsvr2\. -adsvr2.*. -# /adsvr. (easylistchina+easylist.txt: 13045) -/(.*/)?adsvr\. -adsvr.*. -# /adsvo. (easylistchina+easylist.txt: 13044) -/(.*/)?adsvo\. -adsvo.*. -# /adsvariables. (easylistchina+easylist.txt: 13043) -/(.*/)?adsvariables\. -adsvariables.*. -# /adsup. (easylistchina+easylist.txt: 13042) -/(.*/)?adsup\. -adsup.*. -# /adsummos2. (easylistchina+easylist.txt: 13041) -/(.*/)?adsummos2\. -adsummos2.*. -# /adsummos. (easylistchina+easylist.txt: 13040) -/(.*/)?adsummos\. -adsummos.*. -# /adstyle. (easylistchina+easylist.txt: 13039) -/(.*/)?adstyle\. -adstyle.*. -# /adstx. (easylistchina+easylist.txt: 13038) -/(.*/)?adstx\. -adstx.*. -# /adstubs/* (easylistchina+easylist.txt: 13037) -/(.*/)?adstubs/.* -# /adstube/* (easylistchina+easylist.txt: 13036) -/(.*/)?adstube/.* -# /adstub. (easylistchina+easylist.txt: 13035) -/(.*/)?adstub\. -adstub.*. -# /adstrm/* (easylistchina+easylist.txt: 13034) -/(.*/)?adstrm/.* -# /adstrk. (easylistchina+easylist.txt: 13033) -/(.*/)?adstrk\. -adstrk.*. -# /adStrip. (easylistchina+easylist.txt: 13032) -/(.*/)?adStrip\. -adStrip.*. -# /adstreamjscontroller. (easylistchina+easylist.txt: 13031) -/(.*/)?adstreamjscontroller\. -adstreamjscontroller.*. -# /adstream_ (easylistchina+easylist.txt: 13030) -/(.*/)?adstream_ -# /adstream. (easylistchina+easylist.txt: 13029) -/(.*/)?adstream\. -adstream.*. -# /adStrategies/* (easylistchina+easylist.txt: 13028) -/(.*/)?adStrategies/.* -# /adstract/* (easylistchina+easylist.txt: 13027) -/(.*/)?adstract/.* -# /adstracking. (easylistchina+easylist.txt: 13026) -/(.*/)?adstracking\. -adstracking.*. -# /adstorage. (easylistchina+easylist.txt: 13025) -/(.*/)?adstorage\. -adstorage.*. -# /adstop_ (easylistchina+easylist.txt: 13024) -/(.*/)?adstop_ -# /adstop728. (easylistchina+easylist.txt: 13023) -/(.*/)?adstop728\. -adstop728.*. -# /adstop. (easylistchina+easylist.txt: 13022) -/(.*/)?adstop\. -adstop.*. -# /adstitle. (easylistchina+easylist.txt: 13021) -/(.*/)?adstitle\. -adstitle.*. -# /adstemplate/* (easylistchina+easylist.txt: 13020) -/(.*/)?adstemplate/.* -# /adstatic/* (easylistchina+easylist.txt: 13019) -/(.*/)?adstatic/.* -# /adstatic. (easylistchina+easylist.txt: 13018) -/(.*/)?adstatic\. -adstatic.*. -# /adstakeover. (easylistchina+easylist.txt: 13017) -/(.*/)?adstakeover\. -adstakeover.*. -# /adstacodaeu. (easylistchina+easylist.txt: 13016) -/(.*/)?adstacodaeu\. -adstacodaeu.*. -# /adssrv. (easylistchina+easylist.txt: 13015) -/(.*/)?adssrv\. -adssrv.*. -# /adssp. (easylistchina+easylist.txt: 13014) -/(.*/)?adssp\. -adssp.*. -# /adsshow/* (easylistchina+easylist.txt: 13013) -/(.*/)?adsshow/.* -# /AdsShow. (easylistchina+easylist.txt: 13012) -/(.*/)?AdsShow\. -AdsShow.*. -# /adsserver. (easylistchina+easylist.txt: 13011) -/(.*/)?adsserver\. -adsserver.*. -# /adsserv. (easylistchina+easylist.txt: 13010) -/(.*/)?adsserv\. -adsserv.*. -# /adsscript. (easylistchina+easylist.txt: 13009) -/(.*/)?adsscript\. -adsscript.*. -# /adss.asp (easylistchina+easylist.txt: 13008) -/(.*/)?adss\.asp -adss.asp*. -# /adsrv2/* (easylistchina+easylist.txt: 13007) -/(.*/)?adsrv2/.* -# /adsrv/* (easylistchina+easylist.txt: 13006) -/(.*/)?adsrv/.* -# /adsrv. (easylistchina+easylist.txt: 13005) -/(.*/)?adsrv\. -adsrv.*. -# /adsrules/* (easylistchina+easylist.txt: 13004) -/(.*/)?adsrules/.* -# /adsrule. (easylistchina+easylist.txt: 13003) -/(.*/)?adsrule\. -adsrule.*. -# /adsrotator. (easylistchina+easylist.txt: 13002) -/(.*/)?adsrotator\. -adsrotator.*. -# /AdsRotateNEWHeader. (easylistchina+easylist.txt: 13001) -/(.*/)?AdsRotateNEWHeader\. -AdsRotateNEWHeader.*. -# /AdsRotateNEW2right. (easylistchina+easylist.txt: 13000) -/(.*/)?AdsRotateNEW2right\. -AdsRotateNEW2right.*. -# /AdsRotateNEW1right. (easylistchina+easylist.txt: 12999) -/(.*/)?AdsRotateNEW1right\. -AdsRotateNEW1right.*. -# /adsrotateheader. (easylistchina+easylist.txt: 12998) -/(.*/)?adsrotateheader\. -adsrotateheader.*. -# /adsrotate2left. (easylistchina+easylist.txt: 12997) -/(.*/)?adsrotate2left\. -adsrotate2left.*. -# /adsrotate1right. (easylistchina+easylist.txt: 12996) -/(.*/)?adsrotate1right\. -adsrotate1right.*. -# /adsrotate1left. (easylistchina+easylist.txt: 12995) -/(.*/)?adsrotate1left\. -adsrotate1left.*. -# /adsrotate. (easylistchina+easylist.txt: 12994) -/(.*/)?adsrotate\. -adsrotate.*. -# /adsrot2. (easylistchina+easylist.txt: 12993) -/(.*/)?adsrot2\. -adsrot2.*. -# /adsrot. (easylistchina+easylist.txt: 12992) -/(.*/)?adsrot\. -adsrot.*. -# /adsright. (easylistchina+easylist.txt: 12991) -/(.*/)?adsright\. -adsright.*. -# /adsrich. (easylistchina+easylist.txt: 12990) -/(.*/)?adsrich\. -adsrich.*. -# /adsresources/* (easylistchina+easylist.txt: 12989) -/(.*/)?adsresources/.* -# /adsreporting/* (easylistchina+easylist.txt: 12988) -/(.*/)?adsreporting/.* -# /adsremote. (easylistchina+easylist.txt: 12987) -/(.*/)?adsremote\. -adsremote.*. -# /adsrc300. (easylistchina+easylist.txt: 12986) -/(.*/)?adsrc300\. -adsrc300.*. -# /adsrc. (easylistchina+easylist.txt: 12985) -/(.*/)?adsrc\. -adsrc.*. -# /adsquareleft. (easylistchina+easylist.txt: 12984) -/(.*/)?adsquareleft\. -adsquareleft.*. -# /adsquare. (easylistchina+easylist.txt: 12983) -/(.*/)?adsquare\. -adsquare.*. -# /adsq/* (easylistchina+easylist.txt: 12982) -/(.*/)?adsq/.* -# /AdsPublisher. (easylistchina+easylist.txt: 12981) -/(.*/)?AdsPublisher\. -AdsPublisher.*. -# /adspro/* (easylistchina+easylist.txt: 12980) -/(.*/)?adspro/.* -# /adspots/* (easylistchina+easylist.txt: 12979) -/(.*/)?adspots/.* -# /adspot_ (easylistchina+easylist.txt: 12978) -/(.*/)?adspot_ -# /adspot/* (easylistchina+easylist.txt: 12977) -/(.*/)?adspot/.* -# /adspot. (easylistchina+easylist.txt: 12976) -/(.*/)?adspot\. -adspot.*. -# /adsponsor. (easylistchina+easylist.txt: 12975) -/(.*/)?adsponsor\. -adsponsor.*. -# /adsplupu. (easylistchina+easylist.txt: 12974) -/(.*/)?adsplupu\. -adsplupu.*. -# /adsPlugin/* (easylistchina+easylist.txt: 12973) -/(.*/)?adsPlugin/.* -# /AdsPlugin. (easylistchina+easylist.txt: 12972) -/(.*/)?AdsPlugin\. -AdsPlugin.*. -# /Adsplex- (easylistchina+easylist.txt: 12971) -/(.*/)?Adsplex- -Adsplex-*. -# /adsplay. (easylistchina+easylist.txt: 12970) -/(.*/)?adsplay\. -adsplay.*. -# /adspeeler/* (easylistchina+easylist.txt: 12969) -/(.*/)?adspeeler/.* -# /adspan. (easylistchina+easylist.txt: 12968) -/(.*/)?adspan\. -adspan.*. -# /adspacer. (easylistchina+easylist.txt: 12967) -/(.*/)?adspacer\. -adspacer.*. -# /adspace? (easylistchina+easylist.txt: 12966) -/(.*/)?adspace\? -# /adspace2. (easylistchina+easylist.txt: 12965) -/(.*/)?adspace2\. -adspace2.*. -# /AdSpace160x60. (easylistchina+easylist.txt: 12964) -/(.*/)?AdSpace160x60\. -AdSpace160x60.*. -# /adspace1. (easylistchina+easylist.txt: 12963) -/(.*/)?adspace1\. -adspace1.*. -# /adspace/* (easylistchina+easylist.txt: 12962) -/(.*/)?adspace/.* -# /adspace. (easylistchina+easylist.txt: 12961) -/(.*/)?adspace\. -adspace.*. -# /adsp/* (easylistchina+easylist.txt: 12960) -/(.*/)?adsp/.* -# /adsoverlay_ (easylistchina+easylist.txt: 12959) -/(.*/)?adsoverlay_ -# /adsource_ (easylistchina+easylist.txt: 12958) -/(.*/)?adsource_ -# /adsopenx/* (easylistchina+easylist.txt: 12957) -/(.*/)?adsopenx/.* -# /adsonar. (easylistchina+easylist.txt: 12956) -/(.*/)?adsonar\. -adsonar.*. -# /adsniptrack. (easylistchina+easylist.txt: 12955) -/(.*/)?adsniptrack\. -adsniptrack.*. -# /adsnippet. (easylistchina+easylist.txt: 12954) -/(.*/)?adsnippet\. -adsnippet.*. -# /adsnip. (easylistchina+easylist.txt: 12953) -/(.*/)?adsnip\. -adsnip.*. -# /adsnew/* (easylistchina+easylist.txt: 12952) -/(.*/)?adsnew/.* -# /adsnew. (easylistchina+easylist.txt: 12951) -/(.*/)?adsnew\. -adsnew.*. -# /adsmodules/* (easylistchina+easylist.txt: 12950) -/(.*/)?adsmodules/.* -# /adsmm.dll/* (easylistchina+easylist.txt: 12949) -/(.*/)?adsmm\.dll/.* -adsmm.dll/.* -# /adsmedia_ (easylistchina+easylist.txt: 12948) -/(.*/)?adsmedia_ -# /adsManagerV2. (easylistchina+easylist.txt: 12947) -/(.*/)?adsManagerV2\. -adsManagerV2.*. -# /adsmanager/* (easylistchina+easylist.txt: 12946) -/(.*/)?adsmanager/.* -# /adsmanagement/* (easylistchina+easylist.txt: 12945) -/(.*/)?adsmanagement/.* -# /adsm2. (easylistchina+easylist.txt: 12944) -/(.*/)?adsm2\. -adsm2.*. -# /adslugs/* (easylistchina+easylist.txt: 12943) -/(.*/)?adslugs/.* -# /adslug_ (easylistchina+easylist.txt: 12942) -/(.*/)?adslug_ -# /adslug- (easylistchina+easylist.txt: 12941) -/(.*/)?adslug- -adslug-*. -# /adslots. (easylistchina+easylist.txt: 12940) -/(.*/)?adslots\. -adslots.*. -# /adsline. (easylistchina+easylist.txt: 12939) -/(.*/)?adsline\. -adsline.*. -# /adslides. (easylistchina+easylist.txt: 12938) -/(.*/)?adslides\. -adslides.*. -# /adslide. (easylistchina+easylist.txt: 12937) -/(.*/)?adslide\. -adslide.*. -# /adskyscraper. (easylistchina+easylist.txt: 12936) -/(.*/)?adskyscraper\. -adskyscraper.*. -# /adskyright. (easylistchina+easylist.txt: 12935) -/(.*/)?adskyright\. -adskyright.*. -# /adsky. (easylistchina+easylist.txt: 12934) -/(.*/)?adsky\. -adsky.*. -# /adskin/* (easylistchina+easylist.txt: 12933) -/(.*/)?adskin/.* -# /adsjs. (easylistchina+easylist.txt: 12932) -/(.*/)?adsjs\. -adsjs.*. -# /adsites/* (easylistchina+easylist.txt: 12931) -/(.*/)?adsites/.* -# /adsite/* (easylistchina+easylist.txt: 12930) -/(.*/)?adsite/.* -# /adsinsert. (easylistchina+easylist.txt: 12929) -/(.*/)?adsinsert\. -adsinsert.*. -# /adsindie/* (easylistchina+easylist.txt: 12928) -/(.*/)?adsindie/.* -# /adsinclude. (easylistchina+easylist.txt: 12927) -/(.*/)?adsinclude\. -adsinclude.*. -# /adsImg/* (easylistchina+easylist.txt: 12926) -/(.*/)?adsImg/.* -# /adsimages/* (easylistchina+easylist.txt: 12925) -/(.*/)?adsimages/.* -# /adsimage/* (easylistchina+easylist.txt: 12924) -/(.*/)?adsimage/.* -# /adsign. (easylistchina+easylist.txt: 12923) -/(.*/)?adsign\. -adsign.*. -# /adsiframe/* (easylistchina+easylist.txt: 12922) -/(.*/)?adsiframe/.* -# /adsiframe. (easylistchina+easylist.txt: 12921) -/(.*/)?adsiframe\. -adsiframe.*. -# /adsidebarrect. (easylistchina+easylist.txt: 12920) -/(.*/)?adsidebarrect\. -adsidebarrect.*. -# /adsidebar. (easylistchina+easylist.txt: 12919) -/(.*/)?adsidebar\. -adsidebar.*. -# /adsicon/* (easylistchina+easylist.txt: 12918) -/(.*/)?adsicon/.* -# /adsico3. (easylistchina+easylist.txt: 12917) -/(.*/)?adsico3\. -adsico3.*. -# /adsico2. (easylistchina+easylist.txt: 12916) -/(.*/)?adsico2\. -adsico2.*. -# /adsico. (easylistchina+easylist.txt: 12915) -/(.*/)?adsico\. -adsico.*. -# /adsi-j. (easylistchina+easylist.txt: 12914) -/(.*/)?adsi-j\. -adsi-j.*. -# /adshtml2/* (easylistchina+easylist.txt: 12913) -/(.*/)?adshtml2/.* -# /adshow_ (easylistchina+easylist.txt: 12912) -/(.*/)?adshow_ -# /adshow? (easylistchina+easylist.txt: 12911) -/(.*/)?adshow\? -# /adshow/* (easylistchina+easylist.txt: 12910) -/(.*/)?adshow/.* -# /adshow. (easylistchina+easylist.txt: 12909) -/(.*/)?adshow\. -adshow.*. -# /adshow- (easylistchina+easylist.txt: 12908) -/(.*/)?adshow- -adshow-*. -# /adsheader. (easylistchina+easylist.txt: 12907) -/(.*/)?adsheader\. -adsheader.*. -# /adshare3. (easylistchina+easylist.txt: 12906) -/(.*/)?adshare3\. -adshare3.*. -# /adshare/* (easylistchina+easylist.txt: 12905) -/(.*/)?adshare/.* -# /adshare. (easylistchina+easylist.txt: 12904) -/(.*/)?adshare\. -adshare.*. -# /adshandler. (easylistchina+easylist.txt: 12903) -/(.*/)?adshandler\. -adshandler.*. -# /adsGooglePP3. (easylistchina+easylist.txt: 12902) -/(.*/)?adsGooglePP3\. -adsGooglePP3.*. -# /adsgame. (easylistchina+easylist.txt: 12901) -/(.*/)?adsgame\. -adsgame.*. -# /adsfuse- (easylistchina+easylist.txt: 12900) -/(.*/)?adsfuse- -adsfuse-*. -# /adsframe. (easylistchina+easylist.txt: 12899) -/(.*/)?adsframe\. -adsframe.*. -# /adsfolder/* (easylistchina+easylist.txt: 12898) -/(.*/)?adsfolder/.* -# /adsfloat. (easylistchina+easylist.txt: 12897) -/(.*/)?adsfloat\. -adsfloat.*. -# /adsfinal. (easylistchina+easylist.txt: 12896) -/(.*/)?adsfinal\. -adsfinal.*. -# /adsfiles. (easylistchina+easylist.txt: 12895) -/(.*/)?adsfiles\. -adsfiles.*. -# /adsfile. (easylistchina+easylist.txt: 12894) -/(.*/)?adsfile\. -adsfile.*. -# /adsfetch. (easylistchina+easylist.txt: 12893) -/(.*/)?adsfetch\. -adsfetch.*. -# /adsfac. (easylistchina+easylist.txt: 12892) -/(.*/)?adsfac\. -adsfac.*. -# /adsetup_ (easylistchina+easylist.txt: 12891) -/(.*/)?adsetup_ -# /adsetup. (easylistchina+easylist.txt: 12890) -/(.*/)?adsetup\. -adsetup.*. -# /adsession_ (easylistchina+easylist.txt: 12889) -/(.*/)?adsession_ -# /adsession. (easylistchina+easylist.txt: 12888) -/(.*/)?adsession\. -adsession.*. -# /adserv|*|adtech; (easylistchina+easylist.txt: 12887) -/(.*/)?adserv\|.*\|adtech; -# /AdServlet? (easylistchina+easylist.txt: 12886) -/(.*/)?AdServlet\? -# /adserving_ (easylistchina+easylist.txt: 12885) -/(.*/)?adserving_ -# /adserving/* (easylistchina+easylist.txt: 12884) -/(.*/)?adserving/.* -# /adserving. (easylistchina+easylist.txt: 12883) -/(.*/)?adserving\. -adserving.*. -# /adservice| (easylistchina+easylist.txt: 12882) -/(.*/)?adservice$ -# /adservices/* (easylistchina+easylist.txt: 12881) -/(.*/)?adservices/.* -# /adservice/* (easylistchina+easylist.txt: 12880) -/(.*/)?adservice/.* -# /adservice. (easylistchina+easylist.txt: 12879) -/(.*/)?adservice\. -adservice.*. -# /adservice- (easylistchina+easylist.txt: 12878) -/(.*/)?adservice- -adservice-*. -# /adservervastvideovizu. (easylistchina+easylist.txt: 12877) -/(.*/)?adservervastvideovizu\. -adservervastvideovizu.*. -# /adserverstore. (easylistchina+easylist.txt: 12876) -/(.*/)?adserverstore\. -adserverstore.*. -# /adserversolutions/* (easylistchina+easylist.txt: 12875) -/(.*/)?adserversolutions/.* -# /adservers- (easylistchina+easylist.txt: 12874) -/(.*/)?adservers- -adservers-*. -# /adserverpub? (easylistchina+easylist.txt: 12873) -/(.*/)?adserverpub\? -# /adserverdata. (easylistchina+easylist.txt: 12872) -/(.*/)?adserverdata\. -adserverdata.*. -# /adserver_ (easylistchina+easylist.txt: 12871) -/(.*/)?adserver_ -# /adserver? (easylistchina+easylist.txt: 12870) -/(.*/)?adserver\? -# /adserver8strip. (easylistchina+easylist.txt: 12869) -/(.*/)?adserver8strip\. -adserver8strip.*. -# /adserver7/* (easylistchina+easylist.txt: 12868) -/(.*/)?adserver7/.* -# /adserver3. (easylistchina+easylist.txt: 12867) -/(.*/)?adserver3\. -adserver3.*. -# /adserver2/* (easylistchina+easylist.txt: 12866) -/(.*/)?adserver2/.* -# /adserver2. (easylistchina+easylist.txt: 12865) -/(.*/)?adserver2\. -adserver2.*. -# /adserver1. (easylistchina+easylist.txt: 12864) -/(.*/)?adserver1\. -adserver1.*. -# /adserver1- (easylistchina+easylist.txt: 12863) -/(.*/)?adserver1- -adserver1-*. -# /adserver/* (easylistchina+easylist.txt: 12862) -/(.*/)?adserver/.* -# /adserver. (easylistchina+easylist.txt: 12861) -/(.*/)?adserver\. -adserver.*. -# /adserver- (easylistchina+easylist.txt: 12860) -/(.*/)?adserver- -adserver-*. -# /adserve_ (easylistchina+easylist.txt: 12859) -/(.*/)?adserve_ -# /adserve/* (easylistchina+easylist.txt: 12858) -/(.*/)?adserve/.* -# /adserve. (easylistchina+easylist.txt: 12857) -/(.*/)?adserve\. -adserve.*. -# /adserve- (easylistchina+easylist.txt: 12856) -/(.*/)?adserve- -adserve-*. -# /adserv_ (easylistchina+easylist.txt: 12855) -/(.*/)?adserv_ -# /adserv3. (easylistchina+easylist.txt: 12854) -/(.*/)?adserv3\. -adserv3.*. -# /adserv2. (easylistchina+easylist.txt: 12853) -/(.*/)?adserv2\. -adserv2.*. -# /adserv1. (easylistchina+easylist.txt: 12852) -/(.*/)?adserv1\. -adserv1.*. -# /adserv/* (easylistchina+easylist.txt: 12851) -/(.*/)?adserv/.* -# /adserv. (easylistchina+easylist.txt: 12850) -/(.*/)?adserv\. -adserv.*. -# /adser/* (easylistchina+easylist.txt: 12849) -/(.*/)?adser/.* -# /adseperator_ (easylistchina+easylist.txt: 12848) -/(.*/)?adseperator_ -# /adseo/* (easylistchina+easylist.txt: 12847) -/(.*/)?adseo/.* -# /adseo. (easylistchina+easylist.txt: 12846) -/(.*/)?adseo\. -adseo.*. -# /adsenze. (easylistchina+easylist.txt: 12845) -/(.*/)?adsenze\. -adsenze.*. -# /adsensev2. (easylistchina+easylist.txt: 12844) -/(.*/)?adsensev2\. -adsensev2.*. -# /adsensets. (easylistchina+easylist.txt: 12843) -/(.*/)?adsensets\. -adsensets.*. -# /adsensegoogle. (easylistchina+easylist.txt: 12842) -/(.*/)?adsensegoogle\. -adsensegoogle.*. -# /adsensegb. (easylistchina+easylist.txt: 12841) -/(.*/)?adsensegb\. -adsensegb.*. -# /AdsenseBlockView. (easylistchina+easylist.txt: 12840) -/(.*/)?AdsenseBlockView\. -AdsenseBlockView.*. -# /adsense_ (easylistchina+easylist.txt: 12839) -/(.*/)?adsense_ -# /adsense? (easylistchina+easylist.txt: 12838) -/(.*/)?adsense\? -# /adsense5. (easylistchina+easylist.txt: 12837) -/(.*/)?adsense5\. -adsense5.*. -# /adsense4. (easylistchina+easylist.txt: 12836) -/(.*/)?adsense4\. -adsense4.*. -# /adsense3. (easylistchina+easylist.txt: 12835) -/(.*/)?adsense3\. -adsense3.*. -# /adsense250. (easylistchina+easylist.txt: 12834) -/(.*/)?adsense250\. -adsense250.*. -# /adsense24. (easylistchina+easylist.txt: 12833) -/(.*/)?adsense24\. -adsense24.*. -# /adsense23. (easylistchina+easylist.txt: 12832) -/(.*/)?adsense23\. -adsense23.*. -# /adsense2. (easylistchina+easylist.txt: 12831) -/(.*/)?adsense2\. -adsense2.*. -# /adsense1. (easylistchina+easylist.txt: 12830) -/(.*/)?adsense1\. -adsense1.*. -# /adsense/* (easylistchina+easylist.txt: 12829) -/(.*/)?adsense/.* -# /adsense. (easylistchina+easylist.txt: 12828) -/(.*/)?adsense\. -adsense.*. -# /adsense- (easylistchina+easylist.txt: 12827) -/(.*/)?adsense- -adsense-*. -# /adsEnd. (easylistchina+easylist.txt: 12826) -/(.*/)?adsEnd\. -adsEnd.*. -# /adsenceSearchTop. (easylistchina+easylist.txt: 12825) -/(.*/)?adsenceSearchTop\. -adsenceSearchTop.*. -# /adsenceSearch. (easylistchina+easylist.txt: 12824) -/(.*/)?adsenceSearch\. -adsenceSearch.*. -# /adsence. (easylistchina+easylist.txt: 12823) -/(.*/)?adsence\. -adsence.*. -# /adseller/* (easylistchina+easylist.txt: 12822) -/(.*/)?adseller/.* -# /adsegmentation. (easylistchina+easylist.txt: 12821) -/(.*/)?adsegmentation\. -adsegmentation.*. -# /adsecondary. (easylistchina+easylist.txt: 12820) -/(.*/)?adsecondary\. -adsecondary.*. -# /adSearch? (easylistchina+easylist.txt: 12819) -/(.*/)?adSearch\? -# /adsearch. (easylistchina+easylist.txt: 12818) -/(.*/)?adsearch\. -adsearch.*. -# /adsDynLoad/* (easylistchina+easylist.txt: 12817) -/(.*/)?adsDynLoad/.* -# /adsdyn160x160. (easylistchina+easylist.txt: 12816) -/(.*/)?adsdyn160x160\. -adsdyn160x160.*. -# /adsdm. (easylistchina+easylist.txt: 12815) -/(.*/)?adsdm\. -adsdm.*. -# /adsdfp/* (easylistchina+easylist.txt: 12814) -/(.*/)?adsdfp/.* -# /adsdelivery. (easylistchina+easylist.txt: 12813) -/(.*/)?adsdelivery\. -adsdelivery.*. -# /adsDateValidation. (easylistchina+easylist.txt: 12812) -/(.*/)?adsDateValidation\. -adsDateValidation.*. -# /adsdaqsky_ (easylistchina+easylist.txt: 12811) -/(.*/)?adsdaqsky_ -# /adsdaqbox_ (easylistchina+easylist.txt: 12810) -/(.*/)?adsdaqbox_ -# /adsdaqbanner_ (easylistchina+easylist.txt: 12809) -/(.*/)?adsdaqbanner_ -# /adsdaq_ (easylistchina+easylist.txt: 12808) -/(.*/)?adsdaq_ -# /adscroll. (easylistchina+easylist.txt: 12807) -/(.*/)?adscroll\. -adscroll.*. -# /adscripts3. (easylistchina+easylist.txt: 12806) -/(.*/)?adscripts3\. -adscripts3.*. -# /adscripts2. (easylistchina+easylist.txt: 12805) -/(.*/)?adscripts2\. -adscripts2.*. -# /adscripts1. (easylistchina+easylist.txt: 12804) -/(.*/)?adscripts1\. -adscripts1.*. -# /adscripts/* (easylistchina+easylist.txt: 12803) -/(.*/)?adscripts/.* -# /adscript_ (easylistchina+easylist.txt: 12802) -/(.*/)?adscript_ -# /adscript1. (easylistchina+easylist.txt: 12801) -/(.*/)?adscript1\. -adscript1.*. -# /adscript. (easylistchina+easylist.txt: 12800) -/(.*/)?adscript\. -adscript.*. -# /adscpv/* (easylistchina+easylist.txt: 12799) -/(.*/)?adscpv/.* -# /adscontent2. (easylistchina+easylist.txt: 12798) -/(.*/)?adscontent2\. -adscontent2.*. -# /adscontent. (easylistchina+easylist.txt: 12797) -/(.*/)?adscontent\. -adscontent.*. -# /adscluster. (easylistchina+easylist.txt: 12796) -/(.*/)?adscluster\. -adscluster.*. -# /adscloud. (easylistchina+easylist.txt: 12795) -/(.*/)?adscloud\. -adscloud.*. -# /adscaleskyscraper. (easylistchina+easylist.txt: 12794) -/(.*/)?adscaleskyscraper\. -adscaleskyscraper.*. -# /adscalecontentad. (easylistchina+easylist.txt: 12793) -/(.*/)?adscalecontentad\. -adscalecontentad.*. -# /adscalebigsize. (easylistchina+easylist.txt: 12792) -/(.*/)?adscalebigsize\. -adscalebigsize.*. -# /adscale_ (easylistchina+easylist.txt: 12791) -/(.*/)?adscale_ -# /adscale1. (easylistchina+easylist.txt: 12790) -/(.*/)?adscale1\. -adscale1.*. -# /adscale. (easylistchina+easylist.txt: 12789) -/(.*/)?adscale\. -adscale.*. -# /adsbygoogle. (easylistchina+easylist.txt: 12788) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# /adsbycurse. (easylistchina+easylist.txt: 12787) -/(.*/)?adsbycurse\. -adsbycurse.*. -# /adsby. (easylistchina+easylist.txt: 12786) -/(.*/)?adsby\. -adsby.*. -# /adsbox. (easylistchina+easylist.txt: 12785) -/(.*/)?adsbox\. -adsbox.*. -# /adsbannerjs. (easylistchina+easylist.txt: 12784) -/(.*/)?adsbannerjs\. -adsbannerjs.*. -# /adsbanner/* (easylistchina+easylist.txt: 12783) -/(.*/)?adsbanner/.* -# /adsbanner. (easylistchina+easylist.txt: 12782) -/(.*/)?adsbanner\. -adsbanner.*. -# /adsbanner- (easylistchina+easylist.txt: 12781) -/(.*/)?adsbanner- -adsbanner-*. -# /adsatt. (easylistchina+easylist.txt: 12780) -/(.*/)?adsatt\. -adsatt.*. -# /adsAPI. (easylistchina+easylist.txt: 12779) -/(.*/)?adsAPI\. -adsAPI.*. -# /adsandtps/* (easylistchina+easylist.txt: 12778) -/(.*/)?adsandtps/.* -# /adsandbox. (easylistchina+easylist.txt: 12777) -/(.*/)?adsandbox\. -adsandbox.*. -# /adsample. (easylistchina+easylist.txt: 12776) -/(.*/)?adsample\. -adsample.*. -# /adsame. (easylistchina+easylist.txt: 12775) -/(.*/)?adsame\. -adsame.*. -# /adsales/* (easylistchina+easylist.txt: 12774) -/(.*/)?adsales/.* -# /AdsAjaxRefresh. (easylistchina+easylist.txt: 12773) -/(.*/)?AdsAjaxRefresh\. -AdsAjaxRefresh.*. -# /adsadview. (easylistchina+easylist.txt: 12772) -/(.*/)?adsadview\. -adsadview.*. -# /adsadclient31. (easylistchina+easylist.txt: 12771) -/(.*/)?adsadclient31\. -adsadclient31.*. -# /adsa728. (easylistchina+easylist.txt: 12770) -/(.*/)?adsa728\. -adsa728.*. -# /adsa468. (easylistchina+easylist.txt: 12769) -/(.*/)?adsa468\. -adsa468.*. -# /ads_yahoo. (easylistchina+easylist.txt: 12768) -/(.*/)?ads_yahoo\. -# /Ads_WFC. (easylistchina+easylist.txt: 12767) -/(.*/)?Ads_WFC\. -# /ads_view. (easylistchina+easylist.txt: 12766) -/(.*/)?ads_view\. -# /ads_ui. (easylistchina+easylist.txt: 12765) -/(.*/)?ads_ui\. -# /ads_topbar_ (easylistchina+easylist.txt: 12764) -/(.*/)?ads_topbar_ -# /ads_top_ (easylistchina+easylist.txt: 12763) -/(.*/)?ads_top_ -# /ads_text_ (easylistchina+easylist.txt: 12762) -/(.*/)?ads_text_ -# /ads_start. (easylistchina+easylist.txt: 12761) -/(.*/)?ads_start\. -# /ads_sidebar. (easylistchina+easylist.txt: 12760) -/(.*/)?ads_sidebar\. -# /ads_show_ (easylistchina+easylist.txt: 12759) -/(.*/)?ads_show_ -# /ads_server_ (easylistchina+easylist.txt: 12758) -/(.*/)?ads_server_ -# /ads_reporting/* (easylistchina+easylist.txt: 12757) -/(.*/)?ads_reporting/.* -# /ads_redirect. (easylistchina+easylist.txt: 12756) -/(.*/)?ads_redirect\. -# /ads_r. (easylistchina+easylist.txt: 12755) -/(.*/)?ads_r\. -# /ads_pro/* (easylistchina+easylist.txt: 12754) -/(.*/)?ads_pro/.* -# /ads_premium. (easylistchina+easylist.txt: 12753) -/(.*/)?ads_premium\. -# /ads_php/* (easylistchina+easylist.txt: 12752) -/(.*/)?ads_php/.* -# /ads_patron. (easylistchina+easylist.txt: 12751) -/(.*/)?ads_patron\. -# /ads_openx_ (easylistchina+easylist.txt: 12750) -/(.*/)?ads_openx_ -# /ads_new/* (easylistchina+easylist.txt: 12749) -/(.*/)?ads_new/.* -# /ads_new. (easylistchina+easylist.txt: 12748) -/(.*/)?ads_new\. -# /ads_min_ (easylistchina+easylist.txt: 12747) -/(.*/)?ads_min_ -# /ads_medrec_ (easylistchina+easylist.txt: 12746) -/(.*/)?ads_medrec_ -# /ads_manager. (easylistchina+easylist.txt: 12745) -/(.*/)?ads_manager\. -# /ads_loader. (easylistchina+easylist.txt: 12744) -/(.*/)?ads_loader\. -# /ads_load/* (easylistchina+easylist.txt: 12743) -/(.*/)?ads_load/.* -# /ads_left_ (easylistchina+easylist.txt: 12742) -/(.*/)?ads_left_ -# /ads_leaderboard_ (easylistchina+easylist.txt: 12741) -/(.*/)?ads_leaderboard_ -# /ads_images/* (easylistchina+easylist.txt: 12740) -/(.*/)?ads_images/.* -# /ads_image/* (easylistchina+easylist.txt: 12739) -/(.*/)?ads_image/.* -# /ads_iframe. (easylistchina+easylist.txt: 12738) -/(.*/)?ads_iframe\. -# /ads_ifr. (easylistchina+easylist.txt: 12737) -/(.*/)?ads_ifr\. -# /ads_home_ (easylistchina+easylist.txt: 12736) -/(.*/)?ads_home_ -# /ads_google. (easylistchina+easylist.txt: 12735) -/(.*/)?ads_google\. -# /ads_gnm/* (easylistchina+easylist.txt: 12734) -/(.*/)?ads_gnm/.* -# /ads_global. (easylistchina+easylist.txt: 12733) -/(.*/)?ads_global\. -# /ads_gallery/* (easylistchina+easylist.txt: 12732) -/(.*/)?ads_gallery/.* -# /ads_frame. (easylistchina+easylist.txt: 12731) -/(.*/)?ads_frame\. -# /ads_footer. (easylistchina+easylist.txt: 12730) -/(.*/)?ads_footer\. -# /Ads_Fix. (easylistchina+easylist.txt: 12729) -/(.*/)?Ads_Fix\. -# /ads_files/* (easylistchina+easylist.txt: 12728) -/(.*/)?ads_files/.* -# /ads_event. (easylistchina+easylist.txt: 12727) -/(.*/)?ads_event\. -# /ads_display. (easylistchina+easylist.txt: 12726) -/(.*/)?ads_display\. -# /ads_dfp/* (easylistchina+easylist.txt: 12725) -/(.*/)?ads_dfp/.* -# /ads_controller. (easylistchina+easylist.txt: 12724) -/(.*/)?ads_controller\. -# /ads_config. (easylistchina+easylist.txt: 12723) -/(.*/)?ads_config\. -# /ads_codes/* (easylistchina+easylist.txt: 12722) -/(.*/)?ads_codes/.* -# /ads_code_ (easylistchina+easylist.txt: 12721) -/(.*/)?ads_code_ -# /ads_code. (easylistchina+easylist.txt: 12720) -/(.*/)?ads_code\. -# /ads_box_ (easylistchina+easylist.txt: 12719) -/(.*/)?ads_box_ -# /ads_bottom_ (easylistchina+easylist.txt: 12718) -/(.*/)?ads_bottom_ -# /ads_bottom. (easylistchina+easylist.txt: 12717) -/(.*/)?ads_bottom\. -# /ads_bg. (easylistchina+easylist.txt: 12716) -/(.*/)?ads_bg\. -# /ads_banners/* (easylistchina+easylist.txt: 12715) -/(.*/)?ads_banners/.* -# /ads_banner_ (easylistchina+easylist.txt: 12714) -/(.*/)?ads_banner_ -# /ads_ad_ (easylistchina+easylist.txt: 12713) -/(.*/)?ads_ad_ -# /ads_728_ (easylistchina+easylist.txt: 12712) -/(.*/)?ads_728_ -# /ads_6. (easylistchina+easylist.txt: 12711) -/(.*/)?ads_6\. -# /ads_300_ (easylistchina+easylist.txt: 12710) -/(.*/)?ads_300_ -# /ads_300. (easylistchina+easylist.txt: 12709) -/(.*/)?ads_300\. -# /ads_3. (easylistchina+easylist.txt: 12708) -/(.*/)?ads_3\. -# /ads_160_ (easylistchina+easylist.txt: 12707) -/(.*/)?ads_160_ -# /ads_1. (easylistchina+easylist.txt: 12706) -/(.*/)?ads_1\. -# /ads?zone_id= (easylistchina+easylist.txt: 12705) -/(.*/)?ads\?zone_id= -# /ads?zone= (easylistchina+easylist.txt: 12704) -/(.*/)?ads\?zone= -# /ads?spaceid (easylistchina+easylist.txt: 12703) -/(.*/)?ads\?spaceid -# /ads?id= (easylistchina+easylist.txt: 12702) -/(.*/)?ads\?id= -# /ads?callback (easylistchina+easylist.txt: 12701) -/(.*/)?ads\?callback -# /ads?apid (easylistchina+easylist.txt: 12700) -/(.*/)?ads\?apid -# /ads9/* (easylistchina+easylist.txt: 12699) -/(.*/)?ads9/.* -# /ads9. (easylistchina+easylist.txt: 12698) -/(.*/)?ads9\. -ads9.*. -# /ads88. (easylistchina+easylist.txt: 12697) -/(.*/)?ads88\. -ads88.*. -# /ads8/* (easylistchina+easylist.txt: 12696) -/(.*/)?ads8/.* -# /ads8. (easylistchina+easylist.txt: 12695) -/(.*/)?ads8\. -ads8.*. -# /ads790. (easylistchina+easylist.txt: 12694) -/(.*/)?ads790\. -ads790.*. -# /ads728x90a. (easylistchina+easylist.txt: 12693) -/(.*/)?ads728x90a\. -ads728x90a.*. -# /ads728x90_ (easylistchina+easylist.txt: 12692) -/(.*/)?ads728x90_ -# /ads728adn2. (easylistchina+easylist.txt: 12691) -/(.*/)?ads728adn2\. -ads728adn2.*. -# /ads728. (easylistchina+easylist.txt: 12690) -/(.*/)?ads728\. -ads728.*. -# /ads7/* (easylistchina+easylist.txt: 12689) -/(.*/)?ads7/.* -# /ads7. (easylistchina+easylist.txt: 12688) -/(.*/)?ads7\. -ads7.*. -# /ads620x60/* (easylistchina+easylist.txt: 12687) -/(.*/)?ads620x60/.* -# /ads600- (easylistchina+easylist.txt: 12686) -/(.*/)?ads600- -ads600-*. -# /ads6/* (easylistchina+easylist.txt: 12685) -/(.*/)?ads6/.* -# /ads6. (easylistchina+easylist.txt: 12684) -/(.*/)?ads6\. -ads6.*. -# /ads5t. (easylistchina+easylist.txt: 12683) -/(.*/)?ads5t\. -ads5t.*. -# /ads5/* (easylistchina+easylist.txt: 12682) -/(.*/)?ads5/.* -# /ads5. (easylistchina+easylist.txt: 12681) -/(.*/)?ads5\. -ads5.*. -# /ads4n. (easylistchina+easylist.txt: 12680) -/(.*/)?ads4n\. -ads4n.*. -# /ads4j. (easylistchina+easylist.txt: 12679) -/(.*/)?ads4j\. -ads4j.*. -# /ads468x60_ (easylistchina+easylist.txt: 12678) -/(.*/)?ads468x60_ -# /ads468x60. (easylistchina+easylist.txt: 12677) -/(.*/)?ads468x60\. -ads468x60.*. -# /ads468. (easylistchina+easylist.txt: 12676) -/(.*/)?ads468\. -ads468.*. -# /ads4/* (easylistchina+easylist.txt: 12675) -/(.*/)?ads4/.* -# /ads300x250px. (easylistchina+easylist.txt: 12673) -/(.*/)?ads300x250px\. -ads300x250px.*. -# /ads300x250_ (easylistchina+easylist.txt: 12672) -/(.*/)?ads300x250_ -# /ads300X2502. (easylistchina+easylist.txt: 12671) -/(.*/)?ads300X2502\. -ads300X2502.*. -# /ads300x250. (easylistchina+easylist.txt: 12670) -/(.*/)?ads300x250\. -ads300x250.*. -# /ads300adn2. (easylistchina+easylist.txt: 12669) -/(.*/)?ads300adn2\. -ads300adn2.*. -# /ads300. (easylistchina+easylist.txt: 12668) -/(.*/)?ads300\. -ads300.*. -# /ads3/* (easylistchina+easylist.txt: 12667) -/(.*/)?ads3/.* -# /ads3. (easylistchina+easylist.txt: 12666) -/(.*/)?ads3\. -ads3.*. -# /ads2x300new. (easylistchina+easylist.txt: 12665) -/(.*/)?ads2x300new\. -ads2x300new.*. -# /ads2_ (easylistchina+easylist.txt: 12664) -/(.*/)?ads2_ -# /ads210. (easylistchina+easylist.txt: 12663) -/(.*/)?ads210\. -ads210.*. -# /ads2013/* (easylistchina+easylist.txt: 12662) -/(.*/)?ads2013/.* -# /ads2012/* (easylistchina+easylist.txt: 12661) -/(.*/)?ads2012/.* -# /ads2/* (easylistchina+easylist.txt: 12660) -/(.*/)?ads2/.* -# /ads2. (easylistchina+easylist.txt: 12659) -/(.*/)?ads2\. -ads2.*. -# /ads18. (easylistchina+easylist.txt: 12658) -/(.*/)?ads18\. -ads18.*. -# /ads160x600px. (easylistchina+easylist.txt: 12657) -/(.*/)?ads160x600px\. -ads160x600px.*. -# /ads160x600. (easylistchina+easylist.txt: 12656) -/(.*/)?ads160x600\. -ads160x600.*. -# /ads160x600- (easylistchina+easylist.txt: 12655) -/(.*/)?ads160x600- -ads160x600-*. -# /ads160. (easylistchina+easylist.txt: 12654) -/(.*/)?ads160\. -ads160.*. -# /ads125_ (easylistchina+easylist.txt: 12653) -/(.*/)?ads125_ -# /ads125. (easylistchina+easylist.txt: 12652) -/(.*/)?ads125\. -ads125.*. -# /ads12. (easylistchina+easylist.txt: 12651) -/(.*/)?ads12\. -ads12.*. -# /ads11/* (easylistchina+easylist.txt: 12650) -/(.*/)?ads11/.* -# /ads11. (easylistchina+easylist.txt: 12649) -/(.*/)?ads11\. -ads11.*. -# /ads100. (easylistchina+easylist.txt: 12648) -/(.*/)?ads100\. -ads100.*. -# /ads10/* (easylistchina+easylist.txt: 12647) -/(.*/)?ads10/.* -# /ads10. (easylistchina+easylist.txt: 12646) -/(.*/)?ads10\. -ads10.*. -# /ads1/* (easylistchina+easylist.txt: 12645) -/(.*/)?ads1/.* -# /ads1. (easylistchina+easylist.txt: 12644) -/(.*/)?ads1\. -ads1.*. -# /ads09a/* (easylistchina+easylist.txt: 12643) -/(.*/)?ads09a/.* -# /ads05. (easylistchina+easylist.txt: 12642) -/(.*/)?ads05\. -ads05.*. -# /ads01. (easylistchina+easylist.txt: 12641) -/(.*/)?ads01\. -ads01.*. -# /ads0. (easylistchina+easylist.txt: 12640) -/(.*/)?ads0\. -ads0.*. -# /ads/zone/* (easylistchina+easylist.txt: 12639) -/(.*/)?ads/zone/.* -# /ads/yahoo/* (easylistchina+easylist.txt: 12638) -/(.*/)?ads/yahoo/.* -# /ads/xtcore. (easylistchina+easylist.txt: 12637) -/(.*/)?ads/xtcore\. -# /ads/www/* (easylistchina+easylist.txt: 12636) -/(.*/)?ads/www/.* -# /ads/writecapture. (easylistchina+easylist.txt: 12635) -/(.*/)?ads/writecapture\. -# /ads/widget. (easylistchina+easylist.txt: 12634) -/(.*/)?ads/widget\. -# /ads/widebanner. (easylistchina+easylist.txt: 12633) -/(.*/)?ads/widebanner\. -# /ads/welcomescreen. (easylistchina+easylist.txt: 12632) -/(.*/)?ads/welcomescreen\. -# /ads/webplayer. (easylistchina+easylist.txt: 12631) -/(.*/)?ads/webplayer\. -# /ads/web/* (easylistchina+easylist.txt: 12630) -/(.*/)?ads/web/.* -# /ads/vip_ (easylistchina+easylist.txt: 12629) -/(.*/)?ads/vip_ -# /ads/views/* (easylistchina+easylist.txt: 12628) -/(.*/)?ads/views/.* -# /ads/view. (easylistchina+easylist.txt: 12627) -/(.*/)?ads/view\. -# /ads/video_ (easylistchina+easylist.txt: 12626) -/(.*/)?ads/video_ -# /ads/video/* (easylistchina+easylist.txt: 12625) -/(.*/)?ads/video/.* -# /ads/vg/* (easylistchina+easylist.txt: 12624) -/(.*/)?ads/vg/.* -# /ads/vertical/* (easylistchina+easylist.txt: 12623) -/(.*/)?ads/vertical/.* -# /ads/txt_ (easylistchina+easylist.txt: 12622) -/(.*/)?ads/txt_ -# /ads/triggers/* (easylistchina+easylist.txt: 12621) -/(.*/)?ads/triggers/.* -# /ads/tracker/* (easylistchina+easylist.txt: 12620) -/(.*/)?ads/tracker/.* -# /ads/tr_ (easylistchina+easylist.txt: 12619) -/(.*/)?ads/tr_ -# /ads/top. (easylistchina+easylist.txt: 12618) -/(.*/)?ads/top\. -# /ads/top- (easylistchina+easylist.txt: 12617) -/(.*/)?ads/top- -# /ads/tile- (easylistchina+easylist.txt: 12616) -/(.*/)?ads/tile- -# /ads/third- (easylistchina+easylist.txt: 12615) -/(.*/)?ads/third- -# /ads/text/* (easylistchina+easylist.txt: 12614) -/(.*/)?ads/text/.* -# /ads/targeting. (easylistchina+easylist.txt: 12613) -/(.*/)?ads/targeting\. -# /ads/takeovers/* (easylistchina+easylist.txt: 12612) -/(.*/)?ads/takeovers/.* -# /ads/syndicated/* (easylistchina+easylist.txt: 12611) -/(.*/)?ads/syndicated/.* -# /ads/swfobject. (easylistchina+easylist.txt: 12610) -/(.*/)?ads/swfobject\. -# /ads/sub/* (easylistchina+easylist.txt: 12609) -/(.*/)?ads/sub/.* -# /ads/storysponsors/* (easylistchina+easylist.txt: 12608) -/(.*/)?ads/storysponsors/.* -# /ads/square3. (easylistchina+easylist.txt: 12607) -/(.*/)?ads/square3\. -# /ads/square2. (easylistchina+easylist.txt: 12606) -/(.*/)?ads/square2\. -# /ads/square. (easylistchina+easylist.txt: 12605) -/(.*/)?ads/square\. -# /ads/square- (easylistchina+easylist.txt: 12604) -/(.*/)?ads/square- -# /ads/sponsor (easylistchina+easylist.txt: 12603) -/(.*/)?ads/sponsor -# /ads/spacer. (easylistchina+easylist.txt: 12602) -/(.*/)?ads/spacer\. -# /ads/sky_ (easylistchina+easylist.txt: 12601) -/(.*/)?ads/sky_ -# /ads/skins/* (easylistchina+easylist.txt: 12600) -/(.*/)?ads/skins/.* -# /ads/sitewide_ (easylistchina+easylist.txt: 12599) -/(.*/)?ads/sitewide_ -# /ads/sidedoor/* (easylistchina+easylist.txt: 12598) -/(.*/)?ads/sidedoor/.* -# /ads/sidebar- (easylistchina+easylist.txt: 12597) -/(.*/)?ads/sidebar- -# /ads/side- (easylistchina+easylist.txt: 12596) -/(.*/)?ads/side- -# /ads/show/* (easylistchina+easylist.txt: 12595) -/(.*/)?ads/show/.* -# /ads/show. (easylistchina+easylist.txt: 12594) -/(.*/)?ads/show\. -# /ads/serveIt/* (easylistchina+easylist.txt: 12593) -/(.*/)?ads/serveIt/.* -# /ads/select/* (easylistchina+easylist.txt: 12592) -/(.*/)?ads/select/.* -# /ads/scripts/* (easylistchina+easylist.txt: 12591) -/(.*/)?ads/scripts/.* -# /ads/scriptinject. (easylistchina+easylist.txt: 12590) -/(.*/)?ads/scriptinject\. -# /ads/rotate_ (easylistchina+easylist.txt: 12589) -/(.*/)?ads/rotate_ -# /ads/rotate/* (easylistchina+easylist.txt: 12588) -/(.*/)?ads/rotate/.* -# /ads/ringtone_ (easylistchina+easylist.txt: 12587) -/(.*/)?ads/ringtone_ -# /ads/right/* (easylistchina+easylist.txt: 12586) -/(.*/)?ads/right/.* -# /ads/right. (easylistchina+easylist.txt: 12585) -/(.*/)?ads/right\. -# /ads/reskins/* (easylistchina+easylist.txt: 12584) -/(.*/)?ads/reskins/.* -# /ads/request. (easylistchina+easylist.txt: 12583) -/(.*/)?ads/request\. -# /Ads/Refresher. (easylistchina+easylist.txt: 12582) -/(.*/)?Ads/Refresher\. -# /ads/rectangle_ (easylistchina+easylist.txt: 12581) -/(.*/)?ads/rectangle_ -# /ads/rect_ (easylistchina+easylist.txt: 12580) -/(.*/)?ads/rect_ -# /ads/real_ (easylistchina+easylist.txt: 12579) -/(.*/)?ads/real_ -# /ads/rawstory_ (easylistchina+easylist.txt: 12578) -/(.*/)?ads/rawstory_ -# /ads/rail- (easylistchina+easylist.txt: 12577) -/(.*/)?ads/rail- -# /AdS/RAD. (easylistchina+easylist.txt: 12576) -/(.*/)?AdS/RAD\. -# /ads/proxy- (easylistchina+easylist.txt: 12575) -/(.*/)?ads/proxy- -# /ads/proximic. (easylistchina+easylist.txt: 12574) -/(.*/)?ads/proximic\. -# /ads/promo_ (easylistchina+easylist.txt: 12573) -/(.*/)?ads/promo_ -# /ads/profile/* (easylistchina+easylist.txt: 12572) -/(.*/)?ads/profile/.* -# /ads/preroll_ (easylistchina+easylist.txt: 12571) -/(.*/)?ads/preroll_ -# /ads/preroll/* (easylistchina+easylist.txt: 12570) -/(.*/)?ads/preroll/.* -# /ads/preroll- (easylistchina+easylist.txt: 12569) -/(.*/)?ads/preroll- -# /ads/preloader/* (easylistchina+easylist.txt: 12568) -/(.*/)?ads/preloader/.* -# /ads/postscribe. (easylistchina+easylist.txt: 12567) -/(.*/)?ads/postscribe\. -# /ads/post- (easylistchina+easylist.txt: 12566) -/(.*/)?ads/post- -# /ads/popup_ (easylistchina+easylist.txt: 12565) -/(.*/)?ads/popup_ -# /ads/popup. (easylistchina+easylist.txt: 12564) -/(.*/)?ads/popup\. -# /ads/popshow. (easylistchina+easylist.txt: 12563) -/(.*/)?ads/popshow\. -# /ads/popout. (easylistchina+easylist.txt: 12562) -/(.*/)?ads/popout\. -# /ads/pop. (easylistchina+easylist.txt: 12561) -/(.*/)?ads/pop\. -# /ads/plugs/* (easylistchina+easylist.txt: 12560) -/(.*/)?ads/plugs/.* -# /ads/player- (easylistchina+easylist.txt: 12559) -/(.*/)?ads/player- -# /ads/pencil/* (easylistchina+easylist.txt: 12558) -/(.*/)?ads/pencil/.* -# /ads/payload/* (easylistchina+easylist.txt: 12557) -/(.*/)?ads/payload/.* -# /ads/panel. (easylistchina+easylist.txt: 12556) -/(.*/)?ads/panel\. -# /ads/page. (easylistchina+easylist.txt: 12555) -/(.*/)?ads/page\. -# /ads/p/* (easylistchina+easylist.txt: 12554) -/(.*/)?ads/p/.* -# /ads/overlay/* (easylistchina+easylist.txt: 12553) -/(.*/)?ads/overlay/.* -# /ads/overlay- (easylistchina+easylist.txt: 12552) -/(.*/)?ads/overlay- -# /ads/outbrain? (easylistchina+easylist.txt: 12551) -/(.*/)?ads/outbrain\? -# /ads/oscar/* (easylistchina+easylist.txt: 12550) -/(.*/)?ads/oscar/.* -# /ads/original/* (easylistchina+easylist.txt: 12549) -/(.*/)?ads/original/.* -# /ads/oas_ (easylistchina+easylist.txt: 12548) -/(.*/)?ads/oas_ -# /ads/oas/* (easylistchina+easylist.txt: 12547) -/(.*/)?ads/oas/.* -# /ads/oas- (easylistchina+easylist.txt: 12546) -/(.*/)?ads/oas- -# /ads/ninemsn. (easylistchina+easylist.txt: 12545) -/(.*/)?ads/ninemsn\. -# /ads/navbar/* (easylistchina+easylist.txt: 12544) -/(.*/)?ads/navbar/.* -# /ads/mt_ (easylistchina+easylist.txt: 12543) -/(.*/)?ads/mt_ -# /ads/msn/* (easylistchina+easylist.txt: 12542) -/(.*/)?ads/msn/.* -# /ads/mpu? (easylistchina+easylist.txt: 12541) -/(.*/)?ads/mpu\? -# /ads/mpu2? (easylistchina+easylist.txt: 12540) -/(.*/)?ads/mpu2\? -# /ads/mpu/* (easylistchina+easylist.txt: 12539) -/(.*/)?ads/mpu/.* -# /ads/motherless. (easylistchina+easylist.txt: 12538) -/(.*/)?ads/motherless\. -# /ads/middle/* (easylistchina+easylist.txt: 12537) -/(.*/)?ads/middle/.* -# /ads/menu_ (easylistchina+easylist.txt: 12536) -/(.*/)?ads/menu_ -# /ads/masthead_ (easylistchina+easylist.txt: 12535) -/(.*/)?ads/masthead_ -# /ads/marketing/* (easylistchina+easylist.txt: 12534) -/(.*/)?ads/marketing/.* -# /ads/main. (easylistchina+easylist.txt: 12533) -/(.*/)?ads/main\. -# /ads/load. (easylistchina+easylist.txt: 12532) -/(.*/)?ads/load\. -# /ads/leaderbox. (easylistchina+easylist.txt: 12531) -/(.*/)?ads/leaderbox\. -# /ads/leaderboard_ (easylistchina+easylist.txt: 12530) -/(.*/)?ads/leaderboard_ -# /ads/leaderboard? (easylistchina+easylist.txt: 12529) -/(.*/)?ads/leaderboard\? -# /ads/leaderboard/* (easylistchina+easylist.txt: 12528) -/(.*/)?ads/leaderboard/.* -# /ads/leaderboard. (easylistchina+easylist.txt: 12527) -/(.*/)?ads/leaderboard\. -# /ads/leaderboard- (easylistchina+easylist.txt: 12526) -/(.*/)?ads/leaderboard- -# /ads/layer. (easylistchina+easylist.txt: 12525) -/(.*/)?ads/layer\. -# /ads/labels/* (easylistchina+easylist.txt: 12524) -/(.*/)?ads/labels/.* -# /ads/jsbannertext. (easylistchina+easylist.txt: 12523) -/(.*/)?ads/jsbannertext\. -# /ads/js_ (easylistchina+easylist.txt: 12522) -/(.*/)?ads/js_ -# /ads/js/* (easylistchina+easylist.txt: 12521) -/(.*/)?ads/js/.* -# /ads/js. (easylistchina+easylist.txt: 12520) -/(.*/)?ads/js\. -# /ads/interstitial/* (easylistchina+easylist.txt: 12519) -/(.*/)?ads/interstitial/.* -# /ads/interstitial. (easylistchina+easylist.txt: 12518) -/(.*/)?ads/interstitial\. -# /ads/inner_ (easylistchina+easylist.txt: 12517) -/(.*/)?ads/inner_ -# /ads/inline. (easylistchina+easylist.txt: 12516) -/(.*/)?ads/inline\. -# /Ads/InFullScreen. (easylistchina+easylist.txt: 12515) -/(.*/)?Ads/InFullScreen\. -# /ads/indexsponsors/* (easylistchina+easylist.txt: 12514) -/(.*/)?ads/indexsponsors/.* -# /ads/index. (easylistchina+easylist.txt: 12513) -/(.*/)?ads/index\. -# /ads/index- (easylistchina+easylist.txt: 12512) -/(.*/)?ads/index- -# /ads/img/* (easylistchina+easylist.txt: 12511) -/(.*/)?ads/img/.* -# /ads/imbox- (easylistchina+easylist.txt: 12510) -/(.*/)?ads/imbox- -# /ads/images/* (easylistchina+easylist.txt: 12509) -/(.*/)?ads/images/.* -# /ads/image/* (easylistchina+easylist.txt: 12508) -/(.*/)?ads/image/.* -# /ads/im2. (easylistchina+easylist.txt: 12507) -/(.*/)?ads/im2\. -# /ads/iframe (easylistchina+easylist.txt: 12506) -/(.*/)?ads/iframe -# /ads/htmlparser. (easylistchina+easylist.txt: 12505) -/(.*/)?ads/htmlparser\. -# /ads/html/* (easylistchina+easylist.txt: 12504) -/(.*/)?ads/html/.* -# /ads/house_ (easylistchina+easylist.txt: 12503) -/(.*/)?ads/house_ -# /ads/house/* (easylistchina+easylist.txt: 12502) -/(.*/)?ads/house/.* -# /ads/horizontal/* (easylistchina+easylist.txt: 12501) -/(.*/)?ads/horizontal/.* -# /ads/homepage/* (easylistchina+easylist.txt: 12500) -/(.*/)?ads/homepage/.* -# /ads/home/* (easylistchina+easylist.txt: 12499) -/(.*/)?ads/home/.* -# /ads/header_ (easylistchina+easylist.txt: 12498) -/(.*/)?ads/header_ -# /ads/header/* (easylistchina+easylist.txt: 12497) -/(.*/)?ads/header/.* -# /ads/header- (easylistchina+easylist.txt: 12496) -/(.*/)?ads/header- -# /ads/head. (easylistchina+easylist.txt: 12495) -/(.*/)?ads/head\. -# /ads/gray/* (easylistchina+easylist.txt: 12494) -/(.*/)?ads/gray/.* -# /ads/gpt_ (easylistchina+easylist.txt: 12493) -/(.*/)?ads/gpt_ -# /ads/gpt/* (easylistchina+easylist.txt: 12492) -/(.*/)?ads/gpt/.* -# /ads/google_ (easylistchina+easylist.txt: 12491) -/(.*/)?ads/google_ -# /ads/google2. (easylistchina+easylist.txt: 12490) -/(.*/)?ads/google2\. -# /ads/google1. (easylistchina+easylist.txt: 12489) -/(.*/)?ads/google1\. -# /ads/generator/* (easylistchina+easylist.txt: 12488) -/(.*/)?ads/generator/.* -# /ads/generatedHTML/* (easylistchina+easylist.txt: 12487) -/(.*/)?ads/generatedHTML/.* -# /ads/g/* (easylistchina+easylist.txt: 12486) -/(.*/)?ads/g/.* -# /ads/freewheel/* (easylistchina+easylist.txt: 12485) -/(.*/)?ads/freewheel/.* -# /ads/footer_ (easylistchina+easylist.txt: 12484) -/(.*/)?ads/footer_ -# /ads/footer. (easylistchina+easylist.txt: 12483) -/(.*/)?ads/footer\. -# /ads/footer- (easylistchina+easylist.txt: 12482) -/(.*/)?ads/footer- -# /ads/flashbanners/* (easylistchina+easylist.txt: 12481) -/(.*/)?ads/flashbanners/.* -# /ads/flash_ (easylistchina+easylist.txt: 12480) -/(.*/)?ads/flash_ -# /ads/flash/* (easylistchina+easylist.txt: 12479) -/(.*/)?ads/flash/.* -# /ads/fb- (easylistchina+easylist.txt: 12478) -/(.*/)?ads/fb- -# /ads/exit. (easylistchina+easylist.txt: 12477) -/(.*/)?ads/exit\. -# /ads/empty. (easylistchina+easylist.txt: 12476) -/(.*/)?ads/empty\. -# /ads/elementViewability. (easylistchina+easylist.txt: 12475) -/(.*/)?ads/elementViewability\. -# /ads/displaytrust. (easylistchina+easylist.txt: 12474) -/(.*/)?ads/displaytrust\. -# /ads/display/* (easylistchina+easylist.txt: 12473) -/(.*/)?ads/display/.* -# /ads/directory/* (easylistchina+easylist.txt: 12472) -/(.*/)?ads/directory/.* -# /ads/dhtml/* (easylistchina+easylist.txt: 12471) -/(.*/)?ads/dhtml/.* -# /ads/dfp/* (easylistchina+easylist.txt: 12470) -/(.*/)?ads/dfp/.* -# /ads/dfp. (easylistchina+easylist.txt: 12469) -/(.*/)?ads/dfp\. -# /ads/design- (easylistchina+easylist.txt: 12468) -/(.*/)?ads/design- -# /ads/default_ (easylistchina+easylist.txt: 12467) -/(.*/)?ads/default_ -# /ads/dart. (easylistchina+easylist.txt: 12466) -/(.*/)?ads/dart\. -# /ads/daily_ (easylistchina+easylist.txt: 12465) -/(.*/)?ads/daily_ -# /ads/daily. (easylistchina+easylist.txt: 12464) -/(.*/)?ads/daily\. -# /ads/cube- (easylistchina+easylist.txt: 12463) -/(.*/)?ads/cube- -# /ads/creatives/* (easylistchina+easylist.txt: 12462) -/(.*/)?ads/creatives/.* -# /ads/create_ (easylistchina+easylist.txt: 12461) -/(.*/)?ads/create_ -# /ads/contextuallinks/* (easylistchina+easylist.txt: 12460) -/(.*/)?ads/contextuallinks/.* -# /ads/contextual_ (easylistchina+easylist.txt: 12459) -/(.*/)?ads/contextual_ -# /ads/contextual. (easylistchina+easylist.txt: 12458) -/(.*/)?ads/contextual\. -# /ads/configuration/* (easylistchina+easylist.txt: 12457) -/(.*/)?ads/configuration/.* -# /ads/config/* (easylistchina+easylist.txt: 12456) -/(.*/)?ads/config/.* -# /ads/common/* (easylistchina+easylist.txt: 12455) -/(.*/)?ads/common/.* -# /ads/cnvideo/* (easylistchina+easylist.txt: 12454) -/(.*/)?ads/cnvideo/.* -# /ads/click_ (easylistchina+easylist.txt: 12453) -/(.*/)?ads/click_ -# /ads/checkViewport. (easylistchina+easylist.txt: 12452) -/(.*/)?ads/checkViewport\. -# /ads/center. (easylistchina+easylist.txt: 12451) -/(.*/)?ads/center\. -# /ads/center- (easylistchina+easylist.txt: 12450) -/(.*/)?ads/center- -# /ads/cbr. (easylistchina+easylist.txt: 12449) -/(.*/)?ads/cbr\. -# /Ads/Builder. (easylistchina+easylist.txt: 12448) -/(.*/)?Ads/Builder\. -# /ads/btbuckets/* (easylistchina+easylist.txt: 12447) -/(.*/)?ads/btbuckets/.* -# /ads/bt/* (easylistchina+easylist.txt: 12446) -/(.*/)?ads/bt/.* -# /ads/branding/* (easylistchina+easylist.txt: 12445) -/(.*/)?ads/branding/.* -# /ads/box/* (easylistchina+easylist.txt: 12444) -/(.*/)?ads/box/.* -# /ads/bottom/* (easylistchina+easylist.txt: 12443) -/(.*/)?ads/bottom/.* -# /ads/bottom. (easylistchina+easylist.txt: 12442) -/(.*/)?ads/bottom\. -# /ads/blank. (easylistchina+easylist.txt: 12441) -/(.*/)?ads/blank\. -# /Ads/Biz_ (easylistchina+easylist.txt: 12440) -/(.*/)?Ads/Biz_ -# /ads/bilar/* (easylistchina+easylist.txt: 12439) -/(.*/)?ads/bilar/.* -# /ads/behicon. (easylistchina+easylist.txt: 12438) -/(.*/)?ads/behicon\. -# /ads/beacon. (easylistchina+easylist.txt: 12437) -/(.*/)?ads/beacon\. -# /ads/base. (easylistchina+easylist.txt: 12436) -/(.*/)?ads/base\. -# /ads/banners/* (easylistchina+easylist.txt: 12435) -/(.*/)?ads/banners/.* -# /ads/banner_ (easylistchina+easylist.txt: 12434) -/(.*/)?ads/banner_ -# /ads/banner01. (easylistchina+easylist.txt: 12433) -/(.*/)?ads/banner01\. -# /ads/banner/* (easylistchina+easylist.txt: 12432) -/(.*/)?ads/banner/.* -# /ads/banner. (easylistchina+easylist.txt: 12431) -/(.*/)?ads/banner\. -# /ads/banner- (easylistchina+easylist.txt: 12430) -/(.*/)?ads/banner- -# /ads/b/* (easylistchina+easylist.txt: 12429) -/(.*/)?ads/b/.* -# /ads/async/* (easylistchina+easylist.txt: 12428) -/(.*/)?ads/async/.* -# /ads/assets/* (easylistchina+easylist.txt: 12427) -/(.*/)?ads/assets/.* -# /ads/as_header. (easylistchina+easylist.txt: 12426) -/(.*/)?ads/as_header\. -# /ads/aff- (easylistchina+easylist.txt: 12425) -/(.*/)?ads/aff- -# /ads/afc/* (easylistchina+easylist.txt: 12424) -/(.*/)?ads/afc/.* -# /ads/adv/* (easylistchina+easylist.txt: 12423) -/(.*/)?ads/adv/.* -# /ads/ads_ (easylistchina+easylist.txt: 12422) -/(.*/)?ads/ads_ -# /ads/ads/* (easylistchina+easylist.txt: 12421) -/(.*/)?ads/ads/.* -# /ads/ads. (easylistchina+easylist.txt: 12420) -/(.*/)?ads/ads\. -# /ads/ads-$~stylesheet (easylistchina+easylist.txt: 12419) -/(.*/)?ads/ads- -# /Ads/adrp0. (easylistchina+easylist.txt: 12418) -/(.*/)?Ads/adrp0\. -# /ads/adrime/* (easylistchina+easylist.txt: 12417) -/(.*/)?ads/adrime/.* -# /ads/ad_ (easylistchina+easylist.txt: 12416) -/(.*/)?ads/ad_ -# /ads/ad. (easylistchina+easylist.txt: 12415) -/(.*/)?ads/ad\. -# /ads/ad- (easylistchina+easylist.txt: 12414) -/(.*/)?ads/ad- -# /ads/acctid= (easylistchina+easylist.txt: 12413) -/(.*/)?ads/acctid= -# /ads/a. (easylistchina+easylist.txt: 12412) -/(.*/)?ads/a\. -# /ads/?QAPS_ (easylistchina+easylist.txt: 12411) -/(.*/)?ads/\?QAPS_ -# /ads/728b. (easylistchina+easylist.txt: 12410) -/(.*/)?ads/728b\. -# /ads/728. (easylistchina+easylist.txt: 12409) -/(.*/)?ads/728\. -# /ads/468a. (easylistchina+easylist.txt: 12408) -/(.*/)?ads/468a\. -# /ads/468. (easylistchina+easylist.txt: 12407) -/(.*/)?ads/468\. -# /ads/300x120_ (easylistchina+easylist.txt: 12406) -/(.*/)?ads/300x120_ -# /ads/3002. (easylistchina+easylist.txt: 12405) -/(.*/)?ads/3002\. -# /ads/300. (easylistchina+easylist.txt: 12404) -/(.*/)?ads/300\. -# /ads/3.0/* (easylistchina+easylist.txt: 12403) -/(.*/)?ads/3\.0/.* -# /ads/250x120_ (easylistchina+easylist.txt: 12402) -/(.*/)?ads/250x120_ -# /ads/2010/* (easylistchina+easylist.txt: 12401) -/(.*/)?ads/2010/.* -# /ads/2.0/* (easylistchina+easylist.txt: 12400) -/(.*/)?ads/2\.0/.* -# /ads/160/* (easylistchina+easylist.txt: 12399) -/(.*/)?ads/160/.* -# /ads/160. (easylistchina+easylist.txt: 12398) -/(.*/)?ads/160\. -# /ads/125r. (easylistchina+easylist.txt: 12397) -/(.*/)?ads/125r\. -# /ads/125l. (easylistchina+easylist.txt: 12396) -/(.*/)?ads/125l\. -# /ads.w3c. (easylistchina+easylist.txt: 12395) -/(.*/)?ads\.w3c\. -ads.w3c.*. -# /ads.v5.js (easylistchina+easylist.txt: 12394) -/(.*/)?ads\.v5\.js -ads.v5.js*. -# /ads.swf (easylistchina+easylist.txt: 12393) -/(.*/)?ads\.swf -ads.swf*. -# /ads.png (easylistchina+easylist.txt: 12392) -/(.*/)?ads\.png -ads.png*. -# /ads.pl? (easylistchina+easylist.txt: 12391) -/(.*/)?ads\.pl\? -# /ads.php (easylistchina+easylist.txt: 12390) -/(.*/)?ads\.php -ads.php*. -# /ads.pbs (easylistchina+easylist.txt: 12389) -/(.*/)?ads\.pbs -ads.pbs*. -# /ads.jsp (easylistchina+easylist.txt: 12388) -/(.*/)?ads\.jsp -ads.jsp*. -# /ads.json? (easylistchina+easylist.txt: 12387) -/(.*/)?ads\.json\? -# /ads.js? (easylistchina+easylist.txt: 12386) -/(.*/)?ads\.js\? -# /ads.js/* (easylistchina+easylist.txt: 12385) -/(.*/)?ads\.js/.* -ads.js/.* -# /ads.js. (easylistchina+easylist.txt: 12384) -/(.*/)?ads\.js\. -ads.js.*. -# /ads.htm (easylistchina+easylist.txt: 12383) -/(.*/)?ads\.htm -ads.htm*. -# /ads.gif (easylistchina+easylist.txt: 12382) -/(.*/)?ads\.gif -ads.gif*. -# /ads.dll/* (easylistchina+easylist.txt: 12381) -/(.*/)?ads\.dll/.* -ads.dll/.* -# /ads.css (easylistchina+easylist.txt: 12380) -/(.*/)?ads\.css -ads.css*. -# /ads.cfm? (easylistchina+easylist.txt: 12379) -/(.*/)?ads\.cfm\? -# /ads.aspx (easylistchina+easylist.txt: 12378) -/(.*/)?ads\.aspx -ads.aspx*. -# /ads.asp? (easylistchina+easylist.txt: 12377) -/(.*/)?ads\.asp\? -# /Ads.ashx (easylistchina+easylist.txt: 12376) -/(.*/)?Ads\.ashx -Ads.ashx*. -# /ads-top. (easylistchina+easylist.txt: 12375) -/(.*/)?ads-top\. -ads-top.*. -# /ads-sky| (easylistchina+easylist.txt: 12374) -/(.*/)?ads-sky$ -# /ads-skyscraper. (easylistchina+easylist.txt: 12373) -/(.*/)?ads-skyscraper\. -ads-skyscraper.*. -# /ads-service. (easylistchina+easylist.txt: 12372) -/(.*/)?ads-service\. -ads-service.*. -# /ads-segmentjs. (easylistchina+easylist.txt: 12371) -/(.*/)?ads-segmentjs\. -ads-segmentjs.*. -# /ads-scroller- (easylistchina+easylist.txt: 12370) -/(.*/)?ads-scroller- -ads-scroller-*. -# /ads-screen. (easylistchina+easylist.txt: 12369) -/(.*/)?ads-screen\. -ads-screen.*. -# /ads-sa. (easylistchina+easylist.txt: 12368) -/(.*/)?ads-sa\. -ads-sa.*. -# /ads-right. (easylistchina+easylist.txt: 12367) -/(.*/)?ads-right\. -ads-right.*. -# /ads-reviews- (easylistchina+easylist.txt: 12366) -/(.*/)?ads-reviews- -ads-reviews-*. -# /ads-request. (easylistchina+easylist.txt: 12365) -/(.*/)?ads-request\. -ads-request.*. -# /ads-rec| (easylistchina+easylist.txt: 12364) -/(.*/)?ads-rec$ -# /ads-rectangle. (easylistchina+easylist.txt: 12363) -/(.*/)?ads-rectangle\. -ads-rectangle.*. -# /ads-pd. (easylistchina+easylist.txt: 12362) -/(.*/)?ads-pd\. -ads-pd.*. -# /ads-nodep. (easylistchina+easylist.txt: 12361) -/(.*/)?ads-nodep\. -ads-nodep.*. -# /ads-new. (easylistchina+easylist.txt: 12360) -/(.*/)?ads-new\. -ads-new.*. -# /ads-net. (easylistchina+easylist.txt: 12359) -/(.*/)?ads-net\. -ads-net.*. -# /ads-min. (easylistchina+easylist.txt: 12358) -/(.*/)?ads-min\. -ads-min.*. -# /ads-leader| (easylistchina+easylist.txt: 12357) -/(.*/)?ads-leader$ -# /ads-holder. (easylistchina+easylist.txt: 12356) -/(.*/)?ads-holder\. -ads-holder.*. -# /ads-header- (easylistchina+easylist.txt: 12355) -/(.*/)?ads-header- -ads-header-*. -# /ads-gpt. (easylistchina+easylist.txt: 12354) -/(.*/)?ads-gpt\. -ads-gpt.*. -# /ads-footer. (easylistchina+easylist.txt: 12353) -/(.*/)?ads-footer\. -ads-footer.*. -# /ads-foot. (easylistchina+easylist.txt: 12352) -/(.*/)?ads-foot\. -ads-foot.*. -# /ads-common. (easylistchina+easylist.txt: 12351) -/(.*/)?ads-common\. -ads-common.*. -# /ads-blogs- (easylistchina+easylist.txt: 12350) -/(.*/)?ads-blogs- -ads-blogs-*. -# /ads-banner (easylistchina+easylist.txt: 12349) -/(.*/)?ads-banner -ads-banner*. -# /ads-arc. (easylistchina+easylist.txt: 12348) -/(.*/)?ads-arc\. -ads-arc.*. -# /ads-admin. (easylistchina+easylist.txt: 12347) -/(.*/)?ads-admin\. -ads-admin.*. -# /ads-300. (easylistchina+easylist.txt: 12346) -/(.*/)?ads-300\. -ads-300.*. -# /ads-300- (easylistchina+easylist.txt: 12345) -/(.*/)?ads-300- -ads-300-*. -# /ads-250. (easylistchina+easylist.txt: 12344) -/(.*/)?ads-250\. -ads-250.*. -# /ads-2. (easylistchina+easylist.txt: 12343) -/(.*/)?ads-2\. -ads-2.*. -# /ads-1. (easylistchina+easylist.txt: 12342) -/(.*/)?ads-1\. -ads-1.*. -# /ads-07. (easylistchina+easylist.txt: 12341) -/(.*/)?ads-07\. -ads-07.*. -# /ads-06. (easylistchina+easylist.txt: 12340) -/(.*/)?ads-06\. -ads-06.*. -# /ads-05. (easylistchina+easylist.txt: 12339) -/(.*/)?ads-05\. -ads-05.*. -# /ads-04. (easylistchina+easylist.txt: 12338) -/(.*/)?ads-04\. -ads-04.*. -# /ads-03. (easylistchina+easylist.txt: 12337) -/(.*/)?ads-03\. -ads-03.*. -# /ads-02. (easylistchina+easylist.txt: 12336) -/(.*/)?ads-02\. -ads-02.*. -# /ads-01. (easylistchina+easylist.txt: 12335) -/(.*/)?ads-01\. -ads-01.*. -# /adruptive. (easylistchina+easylist.txt: 12334) -/(.*/)?adruptive\. -adruptive.*. -# /adrun. (easylistchina+easylist.txt: 12333) -/(.*/)?adrun\. -adrun.*. -# /adrotv2. (easylistchina+easylist.txt: 12332) -/(.*/)?adrotv2\. -adrotv2.*. -# /adrotator_ (easylistchina+easylist.txt: 12331) -/(.*/)?adrotator_ -# /adrotator2. (easylistchina+easylist.txt: 12330) -/(.*/)?adrotator2\. -adrotator2.*. -# /adrotator/* (easylistchina+easylist.txt: 12329) -/(.*/)?adrotator/.* -# /adrotator. (easylistchina+easylist.txt: 12328) -/(.*/)?adrotator\. -adrotator.*. -# /adrotation. (easylistchina+easylist.txt: 12327) -/(.*/)?adrotation\. -adrotation.*. -# /adrotate/* (easylistchina+easylist.txt: 12326) -/(.*/)?adrotate/.* -# /adrotate. (easylistchina+easylist.txt: 12325) -/(.*/)?adrotate\. -adrotate.*. -# /adrotate- (easylistchina+easylist.txt: 12324) -/(.*/)?adrotate- -adrotate-*. -# /adrotat. (easylistchina+easylist.txt: 12323) -/(.*/)?adrotat\. -adrotat.*. -# /adrot_ (easylistchina+easylist.txt: 12322) -/(.*/)?adrot_ -# /adrot. (easylistchina+easylist.txt: 12321) -/(.*/)?adrot\. -adrot.*. -# /adroot/* (easylistchina+easylist.txt: 12320) -/(.*/)?adroot/.* -# /adrollpixel. (easylistchina+easylist.txt: 12319) -/(.*/)?adrollpixel\. -adrollpixel.*. -# /adroller. (easylistchina+easylist.txt: 12318) -/(.*/)?adroller\. -adroller.*. -# /adRoll. (easylistchina+easylist.txt: 12317) -/(.*/)?adRoll\. -adRoll.*. -# /adrolays. (easylistchina+easylist.txt: 12316) -/(.*/)?adrolays\. -adrolays.*. -# /adrobot. (easylistchina+easylist.txt: 12315) -/(.*/)?adrobot\. -adrobot.*. -# /adriver_$~object-subrequest (easylistchina+easylist.txt: 12314) -/(.*/)?adriver_ -# /adriver/* (easylistchina+easylist.txt: 12313) -/(.*/)?adriver/.* -# /adriver.$~object-subrequest (easylistchina+easylist.txt: 12312) -/(.*/)?adriver\. -adriver.*. -# /adrightcol. (easylistchina+easylist.txt: 12311) -/(.*/)?adrightcol\. -adrightcol.*. -# /adright/* (easylistchina+easylist.txt: 12310) -/(.*/)?adright/.* -# /adright. (easylistchina+easylist.txt: 12309) -/(.*/)?adright\. -adright.*. -# /adrevolver/* (easylistchina+easylist.txt: 12308) -/(.*/)?adrevolver/.* -# /adrevenue/* (easylistchina+easylist.txt: 12307) -/(.*/)?adrevenue/.* -# /adrequisitor- (easylistchina+easylist.txt: 12306) -/(.*/)?adrequisitor- -adrequisitor-*. -# /adrequestvo. (easylistchina+easylist.txt: 12305) -/(.*/)?adrequestvo\. -adrequestvo.*. -# /adrequests. (easylistchina+easylist.txt: 12304) -/(.*/)?adrequests\. -adrequests.*. -# /adrequest. (easylistchina+easylist.txt: 12303) -/(.*/)?adrequest\. -adrequest.*. -# /adreplace728x90. (easylistchina+easylist.txt: 12302) -/(.*/)?adreplace728x90\. -adreplace728x90.*. -# /adreplace160x600. (easylistchina+easylist.txt: 12301) -/(.*/)?adreplace160x600\. -adreplace160x600.*. -# /adreplace/* (easylistchina+easylist.txt: 12300) -/(.*/)?adreplace/.* -# /adrendererfactory. (easylistchina+easylist.txt: 12299) -/(.*/)?adrendererfactory\. -adrendererfactory.*. -# /adremote. (easylistchina+easylist.txt: 12298) -/(.*/)?adremote\. -adremote.*. -# /adreload? (easylistchina+easylist.txt: 12297) -/(.*/)?adreload\? -# /adreload. (easylistchina+easylist.txt: 12296) -/(.*/)?adreload\. -adreload.*. -# /adrelated. (easylistchina+easylist.txt: 12295) -/(.*/)?adrelated\. -adrelated.*. -# /adrefresh. (easylistchina+easylist.txt: 12294) -/(.*/)?adrefresh\. -adrefresh.*. -# /adrefresh- (easylistchina+easylist.txt: 12293) -/(.*/)?adrefresh- -adrefresh-*. -# /adrectanglebanner? (easylistchina+easylist.txt: 12292) -/(.*/)?adrectanglebanner\? -# /adrec. (easylistchina+easylist.txt: 12291) -/(.*/)?adrec\. -adrec.*. -# /adreadytractions. (easylistchina+easylist.txt: 12290) -/(.*/)?adreadytractions\. -adreadytractions.*. -# /adreactor/* (easylistchina+easylist.txt: 12289) -/(.*/)?adreactor/.* -# /adrawdata/* (easylistchina+easylist.txt: 12288) -/(.*/)?adrawdata/.* -# /adratio. (easylistchina+easylist.txt: 12287) -/(.*/)?adratio\. -adratio.*. -# /adquality/* (easylistchina+easylist.txt: 12286) -/(.*/)?adquality/.* -# /AdPub/* (easylistchina+easylist.txt: 12285) -/(.*/)?AdPub/.* -# /adproxy/* (easylistchina+easylist.txt: 12284) -/(.*/)?adproxy/.* -# /adproxy. (easylistchina+easylist.txt: 12283) -/(.*/)?adproxy\. -adproxy.*. -# /adprovider. (easylistchina+easylist.txt: 12282) -/(.*/)?adprovider\. -adprovider.*. -# /adprove_ (easylistchina+easylist.txt: 12281) -/(.*/)?adprove_ -# /adproducts/* (easylistchina+easylist.txt: 12280) -/(.*/)?adproducts/.* -# /adprime. (easylistchina+easylist.txt: 12279) -/(.*/)?adprime\. -adprime.*. -# /AdPreview/* (easylistchina+easylist.txt: 12278) -/(.*/)?AdPreview/.* -# /AdPostInjectAsync. (easylistchina+easylist.txt: 12277) -/(.*/)?AdPostInjectAsync\. -AdPostInjectAsync.*. -# /adpositionsizein- (easylistchina+easylist.txt: 12276) -/(.*/)?adpositionsizein- -adpositionsizein-*. -# /adPositions. (easylistchina+easylist.txt: 12275) -/(.*/)?adPositions\. -adPositions.*. -# /adpopup. (easylistchina+easylist.txt: 12274) -/(.*/)?adpopup\. -adpopup.*. -# /adpop32. (easylistchina+easylist.txt: 12273) -/(.*/)?adpop32\. -adpop32.*. -# /adpop. (easylistchina+easylist.txt: 12272) -/(.*/)?adpop\. -adpop.*. -# /adpool/* (easylistchina+easylist.txt: 12271) -/(.*/)?adpool/.* -# /adpolestar/* (easylistchina+easylist.txt: 12270) -/(.*/)?adpolestar/.* -# /adpoint. (easylistchina+easylist.txt: 12269) -/(.*/)?adpoint\. -adpoint.*. -# /adplugin_ (easylistchina+easylist.txt: 12268) -/(.*/)?adplugin_ -# /adplugin. (easylistchina+easylist.txt: 12267) -/(.*/)?adplugin\. -adplugin.*. -# /adplayer/* (easylistchina+easylist.txt: 12266) -/(.*/)?adplayer/.* -# /adplayer. (easylistchina+easylist.txt: 12265) -/(.*/)?adplayer\. -adplayer.*. -# /adplayer- (easylistchina+easylist.txt: 12264) -/(.*/)?adplayer- -adplayer-*. -# /adplay. (easylistchina+easylist.txt: 12263) -/(.*/)?adplay\. -adplay.*. -# /adplacement. (easylistchina+easylist.txt: 12262) -/(.*/)?adplacement\. -adplacement.*. -# /adplace5_ (easylistchina+easylist.txt: 12261) -/(.*/)?adplace5_ -# /adplace/* (easylistchina+easylist.txt: 12260) -/(.*/)?adplace/.* -# /adpix/* (easylistchina+easylist.txt: 12259) -/(.*/)?adpix/.* -# /adping. (easylistchina+easylist.txt: 12258) -/(.*/)?adping\. -adping.*. -# /adpictures/* (easylistchina+easylist.txt: 12257) -/(.*/)?adpictures/.* -# /adpicture2| (easylistchina+easylist.txt: 12256) -/(.*/)?adpicture2$ -# /adpicture2. (easylistchina+easylist.txt: 12255) -/(.*/)?adpicture2\. -adpicture2.*. -# /adpicture1| (easylistchina+easylist.txt: 12254) -/(.*/)?adpicture1$ -# /adpicture1. (easylistchina+easylist.txt: 12253) -/(.*/)?adpicture1\. -adpicture1.*. -# /adpicture. (easylistchina+easylist.txt: 12252) -/(.*/)?adpicture\. -adpicture.*. -# /adpic/* (easylistchina+easylist.txt: 12251) -/(.*/)?adpic/.* -# /adpic. (easylistchina+easylist.txt: 12250) -/(.*/)?adpic\. -adpic.*. -# /adperfdemo. (easylistchina+easylist.txt: 12248) -/(.*/)?adperfdemo\. -adperfdemo.*. -# /adperf_ (easylistchina+easylist.txt: 12247) -/(.*/)?adperf_ -# /adpeeps/* (easylistchina+easylist.txt: 12246) -/(.*/)?adpeeps/.* -# /adpeeps. (easylistchina+easylist.txt: 12245) -/(.*/)?adpeeps\. -adpeeps.*. -# /adpatch. (easylistchina+easylist.txt: 12244) -/(.*/)?adpatch\. -adpatch.*. -# /adparts/* (easylistchina+easylist.txt: 12243) -/(.*/)?adparts/.* -# /adpartner. (easylistchina+easylist.txt: 12242) -/(.*/)?adpartner\. -adpartner.*. -# /adpanelcontent. (easylistchina+easylist.txt: 12241) -/(.*/)?adpanelcontent\. -adpanelcontent.*. -# /adpanel/* (easylistchina+easylist.txt: 12240) -/(.*/)?adpanel/.* -# /adpan/* (easylistchina+easylist.txt: 12239) -/(.*/)?adpan/.* -# /adpages/* (easylistchina+easylist.txt: 12238) -/(.*/)?adpages/.* -# /adpagem. (easylistchina+easylist.txt: 12237) -/(.*/)?adpagem\. -adpagem.*. -# /adpage/* (easylistchina+easylist.txt: 12236) -/(.*/)?adpage/.* -# /adpage. (easylistchina+easylist.txt: 12235) -/(.*/)?adpage\. -adpage.*. -# /adpage- (easylistchina+easylist.txt: 12234) -/(.*/)?adpage- -adpage-*. -# /adp.htm (easylistchina+easylist.txt: 12233) -/(.*/)?adp\.htm -adp.htm*. -# /adp-pro/* (easylistchina+easylist.txt: 12232) -/(.*/)?adp-pro/.* -# /adoverride. (easylistchina+easylist.txt: 12231) -/(.*/)?adoverride\. -adoverride.*. -# /adoverlayplugin. (easylistchina+easylist.txt: 12230) -/(.*/)?adoverlayplugin\. -adoverlayplugin.*. -# /adoverlay/* (easylistchina+easylist.txt: 12229) -/(.*/)?adoverlay/.* -# /adoverlay. (easylistchina+easylist.txt: 12228) -/(.*/)?adoverlay\. -adoverlay.*. -# /adotubeplugin. (easylistchina+easylist.txt: 12227) -/(.*/)?adotubeplugin\. -adotubeplugin.*. -# /adotube_adapter. (easylistchina+easylist.txt: 12226) -/(.*/)?adotube_adapter\. -# /ados.js (easylistchina+easylist.txt: 12225) -/(.*/)?ados\.js -ados.js*. -# /adorika728. (easylistchina+easylist.txt: 12224) -/(.*/)?adorika728\. -adorika728.*. -# /adorika300. (easylistchina+easylist.txt: 12223) -/(.*/)?adorika300\. -adorika300.*. -# /adoptions. (easylistchina+easylist.txt: 12222) -/(.*/)?adoptions\. -adoptions.*. -# /adoptionicon. (easylistchina+easylist.txt: 12221) -/(.*/)?adoptionicon\. -adoptionicon.*. -# /AdOptimizer. (easylistchina+easylist.txt: 12220) -/(.*/)?AdOptimizer\. -AdOptimizer.*. -# /adops/* (easylistchina+easylist.txt: 12219) -/(.*/)?adops/.* -# /adops. (easylistchina+easylist.txt: 12218) -/(.*/)?adops\. -adops.*. -# /adonly468. (easylistchina+easylist.txt: 12217) -/(.*/)?adonly468\. -adonly468.*. -# /adonline. (easylistchina+easylist.txt: 12216) -/(.*/)?adonline\. -adonline.*. -# /adometry? (easylistchina+easylist.txt: 12215) -/(.*/)?adometry\? -# /adometry. (easylistchina+easylist.txt: 12214) -/(.*/)?adometry\. -adometry.*. -# /adometry- (easylistchina+easylist.txt: 12213) -/(.*/)?adometry- -adometry-*. -# /adocean. (easylistchina+easylist.txt: 12212) -/(.*/)?adocean\. -adocean.*. -# /adobject. (easylistchina+easylist.txt: 12211) -/(.*/)?adobject\. -adobject.*. -# /adnotice. (easylistchina+easylist.txt: 12210) -/(.*/)?adnotice\. -adnotice.*. -# /adnl. (easylistchina+easylist.txt: 12209) -/(.*/)?adnl\. -adnl.*. -# /adng.html (easylistchina+easylist.txt: 12208) -/(.*/)?adng\.html -adng.html*. -# /adnexus- (easylistchina+easylist.txt: 12207) -/(.*/)?adnexus- -adnexus-*. -# /AdNewsclip15. (easylistchina+easylist.txt: 12205) -/(.*/)?AdNewsclip15\. -AdNewsclip15.*. -# /AdNewsclip14. (easylistchina+easylist.txt: 12204) -/(.*/)?AdNewsclip14\. -AdNewsclip14.*. -# /adnews. (easylistchina+easylist.txt: 12203) -/(.*/)?adnews\. -adnews.*. -# /adnew2. (easylistchina+easylist.txt: 12202) -/(.*/)?adnew2\. -adnew2.*. -# /adnetwork_ (easylistchina+easylist.txt: 12201) -/(.*/)?adnetwork_ -# /adnetwork468. (easylistchina+easylist.txt: 12200) -/(.*/)?adnetwork468\. -adnetwork468.*. -# /adnetwork300. (easylistchina+easylist.txt: 12199) -/(.*/)?adnetwork300\. -adnetwork300.*. -# /adnetwork/* (easylistchina+easylist.txt: 12198) -/(.*/)?adnetwork/.* -# /adnetmedia. (easylistchina+easylist.txt: 12196) -/(.*/)?adnetmedia\. -adnetmedia.*. -# /adnet2. (easylistchina+easylist.txt: 12195) -/(.*/)?adnet2\. -adnet2.*. -# /ADNet/* (easylistchina+easylist.txt: 12194) -/(.*/)?ADNet/.* -# /adnet. (easylistchina+easylist.txt: 12193) -/(.*/)?adnet\. -adnet.*. -# /adNdsoft/* (easylistchina+easylist.txt: 12192) -/(.*/)?adNdsoft/.* -# /adnap/* (easylistchina+easylist.txt: 12191) -/(.*/)?adnap/.* -# /admonitor. (easylistchina+easylist.txt: 12190) -/(.*/)?admonitor\. -admonitor.*. -# /admonitor- (easylistchina+easylist.txt: 12189) -/(.*/)?admonitor- -admonitor-*. -# /admob. (easylistchina+easylist.txt: 12188) -/(.*/)?admob\. -admob.*. -# /admixer_ (easylistchina+easylist.txt: 12187) -/(.*/)?admixer_ -# /admixer- (easylistchina+easylist.txt: 12186) -/(.*/)?admixer- -admixer-*. -# /adminibanner2. (easylistchina+easylist.txt: 12185) -/(.*/)?adminibanner2\. -adminibanner2.*. -# /admin/sponsors/* (easylistchina+easylist.txt: 12184) -/(.*/)?admin/sponsors/.* -# /admin/banners/* (easylistchina+easylist.txt: 12183) -/(.*/)?admin/banners/.* -# /admin/ad_ (easylistchina+easylist.txt: 12182) -/(.*/)?admin/ad_ -# /admicro_ (easylistchina+easylist.txt: 12181) -/(.*/)?admicro_ -# /admicro2. (easylistchina+easylist.txt: 12180) -/(.*/)?admicro2\. -admicro2.*. -# /admgr. (easylistchina+easylist.txt: 12179) -/(.*/)?admgr\. -admgr.*. -# /admez/* (easylistchina+easylist.txt: 12178) -/(.*/)?admez/.* -# /admez. (easylistchina+easylist.txt: 12177) -/(.*/)?admez\. -admez.*. -# /admeta. (easylistchina+easylist.txt: 12176) -/(.*/)?admeta\. -admeta.*. -# /admentorserve. (easylistchina+easylist.txt: 12175) -/(.*/)?admentorserve\. -admentorserve.*. -# /admentorasp/* (easylistchina+easylist.txt: 12174) -/(.*/)?admentorasp/.* -# /admentor302/* (easylistchina+easylist.txt: 12173) -/(.*/)?admentor302/.* -# /admentor/* (easylistchina+easylist.txt: 12172) -/(.*/)?admentor/.* -# /admeldscript. (easylistchina+easylist.txt: 12171) -/(.*/)?admeldscript\. -admeldscript.*. -# /admeld_ (easylistchina+easylist.txt: 12170) -/(.*/)?admeld_ -# /admeld/* (easylistchina+easylist.txt: 12169) -/(.*/)?admeld/.* -# /admeld. (easylistchina+easylist.txt: 12168) -/(.*/)?admeld\. -admeld.*. -# /admega. (easylistchina+easylist.txt: 12167) -/(.*/)?admega\. -admega.*. -# /admedia/* (easylistchina+easylist.txt: 12166) -/(.*/)?admedia/.* -# /admedia. (easylistchina+easylist.txt: 12165) -/(.*/)?admedia\. -admedia.*. -# /admeasure. (easylistchina+easylist.txt: 12164) -/(.*/)?admeasure\. -admeasure.*. -# /admaxads. (easylistchina+easylist.txt: 12163) -/(.*/)?admaxads\. -admaxads.*. -# /admax/* (easylistchina+easylist.txt: 12162) -/(.*/)?admax/.* -# /admatik. (easylistchina+easylist.txt: 12160) -/(.*/)?admatik\. -admatik.*. -# /admatcherclient. (easylistchina+easylist.txt: 12159) -/(.*/)?admatcherclient\. -admatcherclient.*. -# /admatcher.$~object-subrequest,~xmlhttprequest (easylistchina+easylist.txt: 12158) -/(.*/)?admatcher\. -admatcher.*. -# /admatch- (easylistchina+easylist.txt: 12157) -/(.*/)?admatch- -admatch-*. -# /admaster? (easylistchina+easylist.txt: 12156) -/(.*/)?admaster\? -# /admaster. (easylistchina+easylist.txt: 12155) -/(.*/)?admaster\. -admaster.*. -# /admarvel. (easylistchina+easylist.txt: 12154) -/(.*/)?admarvel\. -admarvel.*. -# /adMarketplace. (easylistchina+easylist.txt: 12153) -/(.*/)?adMarketplace\. -adMarketplace.*. -# /admarket/* (easylistchina+easylist.txt: 12152) -/(.*/)?admarket/.* -# /admarker_ (easylistchina+easylist.txt: 12151) -/(.*/)?admarker_ -# /admarker. (easylistchina+easylist.txt: 12150) -/(.*/)?admarker\. -admarker.*. -# /admantx/* (easylistchina+easylist.txt: 12149) -/(.*/)?admantx/.* -# /admantx. (easylistchina+easylist.txt: 12148) -/(.*/)?admantx\. -admantx.*. -# /admantx- (easylistchina+easylist.txt: 12147) -/(.*/)?admantx- -admantx-*. -# /admanproxy. (easylistchina+easylist.txt: 12146) -/(.*/)?admanproxy\. -admanproxy.*. -# /admanagerstatus/* (easylistchina+easylist.txt: 12145) -/(.*/)?admanagerstatus/.* -# /admanagers/* (easylistchina+easylist.txt: 12144) -/(.*/)?admanagers/.* -# /admanager_ (easylistchina+easylist.txt: 12143) -/(.*/)?admanager_ -# /admanager3. (easylistchina+easylist.txt: 12142) -/(.*/)?admanager3\. -admanager3.*. -# /admanager/*$~object-subrequest (easylistchina+easylist.txt: 12141) -/(.*/)?admanager/.* -# /admanager.$~object-subrequest (easylistchina+easylist.txt: 12140) -/(.*/)?admanager\. -admanager.*. -# /admanagementadvanced. (easylistchina+easylist.txt: 12139) -/(.*/)?admanagementadvanced\. -admanagementadvanced.*. -# /admanagement/* (easylistchina+easylist.txt: 12138) -/(.*/)?admanagement/.* -# /adman/* (easylistchina+easylist.txt: 12137) -/(.*/)?adman/.* -# /adman. (easylistchina+easylist.txt: 12136) -/(.*/)?adman\. -adman.*. -# /adman- (easylistchina+easylist.txt: 12135) -/(.*/)?adman- -adman-*. -# /admain| (easylistchina+easylist.txt: 12134) -/(.*/)?admain$ -# /admain. (easylistchina+easylist.txt: 12133) -/(.*/)?admain\. -admain.*. -# /adm/ad/* (easylistchina+easylist.txt: 12132) -/(.*/)?adm/ad/.* -# /adlog.php? (easylistchina+easylist.txt: 12131) -/(.*/)?adlog\.php\? -# /adlock300. (easylistchina+easylist.txt: 12130) -/(.*/)?adlock300\. -adlock300.*. -# /adloader. (easylistchina+easylist.txt: 12129) -/(.*/)?adloader\. -adloader.*. -# /adload. (easylistchina+easylist.txt: 12128) -/(.*/)?adload\. -adload.*. -# /adlist_ (easylistchina+easylist.txt: 12127) -/(.*/)?adlist_ -# /adlinks_ (easylistchina+easylist.txt: 12126) -/(.*/)?adlinks_ -# /adlinks2. (easylistchina+easylist.txt: 12125) -/(.*/)?adlinks2\. -adlinks2.*. -# /adlinks. (easylistchina+easylist.txt: 12124) -/(.*/)?adlinks\. -adlinks.*. -# /adlink_ (easylistchina+easylist.txt: 12123) -/(.*/)?adlink_ -# /adLink728. (easylistchina+easylist.txt: 12122) -/(.*/)?adLink728\. -adLink728.*. -# /adlink/* (easylistchina+easylist.txt: 12121) -/(.*/)?adlink/.* -# /adlink. (easylistchina+easylist.txt: 12120) -/(.*/)?adlink\. -adlink.*. -# /adlink- (easylistchina+easylist.txt: 12119) -/(.*/)?adlink- -adlink-*. -# /adlift4_ (easylistchina+easylist.txt: 12117) -/(.*/)?adlift4_ -# /adlift4. (easylistchina+easylist.txt: 12116) -/(.*/)?adlift4\. -adlift4.*. -# /adlib. (easylistchina+easylist.txt: 12115) -/(.*/)?adlib\. -adlib.*. -# /adlesse. (easylistchina+easylist.txt: 12114) -/(.*/)?adlesse\. -adlesse.*. -# /adlens- (easylistchina+easylist.txt: 12113) -/(.*/)?adlens- -adlens-*. -# /adleftsidebar. (easylistchina+easylist.txt: 12112) -/(.*/)?adleftsidebar\. -adleftsidebar.*. -# /adleft/* (easylistchina+easylist.txt: 12111) -/(.*/)?adleft/.* -# /adleft. (easylistchina+easylist.txt: 12110) -/(.*/)?adleft\. -adleft.*. -# /adleaderboardtop. (easylistchina+easylist.txt: 12109) -/(.*/)?adleaderboardtop\. -adleaderboardtop.*. -# /adleader. (easylistchina+easylist.txt: 12108) -/(.*/)?adleader\. -adleader.*. -# /adlead. (easylistchina+easylist.txt: 12107) -/(.*/)?adlead\. -adlead.*. -# /adlayer/* (easylistchina+easylist.txt: 12106) -/(.*/)?adlayer/.* -# /adlayer. (easylistchina+easylist.txt: 12105) -/(.*/)?adlayer\. -adlayer.*. -# /adlargefooter2. (easylistchina+easylist.txt: 12104) -/(.*/)?adlargefooter2\. -adlargefooter2.*. -# /adlargefooter. (easylistchina+easylist.txt: 12103) -/(.*/)?adlargefooter\. -adlargefooter.*. -# /adlantisloader. (easylistchina+easylist.txt: 12102) -/(.*/)?adlantisloader\. -adlantisloader.*. -# /adlantis. (easylistchina+easylist.txt: 12101) -/(.*/)?adlantis\. -adlantis.*. -# /adlandr. (easylistchina+easylist.txt: 12100) -/(.*/)?adlandr\. -adlandr.*. -# /AdLanding. (easylistchina+easylist.txt: 12099) -/(.*/)?AdLanding\. -AdLanding.*. -# /adlabs.js (easylistchina+easylist.txt: 12098) -/(.*/)?adlabs\.js -adlabs.js*. -# /adlabel_ (easylistchina+easylist.txt: 12097) -/(.*/)?adlabel_ -# /adlabel. (easylistchina+easylist.txt: 12096) -/(.*/)?adlabel\. -adlabel.*. -# /adl.php (easylistchina+easylist.txt: 12095) -/(.*/)?adl\.php -adl.php*. -# /adkeys. (easylistchina+easylist.txt: 12094) -/(.*/)?adkeys\. -adkeys.*. -# /adjuggler? (easylistchina+easylist.txt: 12093) -/(.*/)?adjuggler\? -# /adjug. (easylistchina+easylist.txt: 12092) -/(.*/)?adjug\. -adjug.*. -# /adjsmp. (easylistchina+easylist.txt: 12091) -/(.*/)?adjsmp\. -adjsmp.*. -# /adjs_ (easylistchina+easylist.txt: 12090) -/(.*/)?adjs_ -# /adjs? (easylistchina+easylist.txt: 12089) -/(.*/)?adjs\? -# /adjs/* (easylistchina+easylist.txt: 12088) -/(.*/)?adjs/.* -# /adjs. (easylistchina+easylist.txt: 12087) -/(.*/)?adjs\. -adjs.*. -# /adjk. (easylistchina+easylist.txt: 12086) -/(.*/)?adjk\. -adjk.*. -# /adj.php? (easylistchina+easylist.txt: 12085) -/(.*/)?adj\.php\? -# /adixs. (easylistchina+easylist.txt: 12084) -/(.*/)?adixs\. -adixs.*. -# /adition. (easylistchina+easylist.txt: 12083) -/(.*/)?adition\. -adition.*. -# /adiquity. (easylistchina+easylist.txt: 12081) -/(.*/)?adiquity\. -adiquity.*. -# /adinterax. (easylistchina+easylist.txt: 12080) -/(.*/)?adinterax\. -adinterax.*. -# /adinsertjuicy. (easylistchina+easylist.txt: 12079) -/(.*/)?adinsertjuicy\. -adinsertjuicy.*. -# /adinsertionplugin. (easylistchina+easylist.txt: 12078) -/(.*/)?adinsertionplugin\. -adinsertionplugin.*. -# /adinsert. (easylistchina+easylist.txt: 12077) -/(.*/)?adinsert\. -adinsert.*. -# /adinjector_ (easylistchina+easylist.txt: 12076) -/(.*/)?adinjector_ -# /adinjector. (easylistchina+easylist.txt: 12075) -/(.*/)?adinjector\. -adinjector.*. -# /adinject. (easylistchina+easylist.txt: 12074) -/(.*/)?adinject\. -adinject.*. -# /adinit. (easylistchina+easylist.txt: 12073) -/(.*/)?adinit\. -adinit.*. -# /adindicatortext. (easylistchina+easylist.txt: 12072) -/(.*/)?adindicatortext\. -adindicatortext.*. -# /adindex/* (easylistchina+easylist.txt: 12071) -/(.*/)?adindex/.* -# /adinclude/* (easylistchina+easylist.txt: 12070) -/(.*/)?adinclude/.* -# /adinclude. (easylistchina+easylist.txt: 12069) -/(.*/)?adinclude\. -adinclude.*. -# /adinator/* (easylistchina+easylist.txt: 12068) -/(.*/)?adinator/.* -# /adimg/* (easylistchina+easylist.txt: 12067) -/(.*/)?adimg/.* -# /adimg. (easylistchina+easylist.txt: 12066) -/(.*/)?adimg\. -adimg.*. -# /adimages/*$~subdocument (easylistchina+easylist.txt: 12065) -/(.*/)?adimages/.* -# /adimages. (easylistchina+easylist.txt: 12064) -/(.*/)?adimages\. -adimages.*. -# /adimage? (easylistchina+easylist.txt: 12063) -/(.*/)?adimage\? -# /adimage/* (easylistchina+easylist.txt: 12062) -/(.*/)?adimage/.* -# /adimage. (easylistchina+easylist.txt: 12061) -/(.*/)?adimage\. -adimage.*. -# /adim.html?ad (easylistchina+easylist.txt: 12060) -/(.*/)?adim\.html\?ad -# /adifyoverlay. (easylistchina+easylist.txt: 12059) -/(.*/)?adifyoverlay\. -adifyoverlay.*. -# /adifyids. (easylistchina+easylist.txt: 12058) -/(.*/)?adifyids\. -adifyids.*. -# /adifyad. (easylistchina+easylist.txt: 12057) -/(.*/)?adifyad\. -adifyad.*. -# /adify_ (easylistchina+easylist.txt: 12056) -/(.*/)?adify_ -# /adiframe|*|adtech; (easylistchina+easylist.txt: 12055) -/(.*/)?adiframe\|.*\|adtech; -# /adiframetop. (easylistchina+easylist.txt: 12054) -/(.*/)?adiframetop\. -adiframetop.*. -# /adiframem2. (easylistchina+easylist.txt: 12053) -/(.*/)?adiframem2\. -adiframem2.*. -# /adiframem1. (easylistchina+easylist.txt: 12052) -/(.*/)?adiframem1\. -adiframem1.*. -# /adiframeanchor. (easylistchina+easylist.txt: 12051) -/(.*/)?adiframeanchor\. -adiframeanchor.*. -# /adiframe_ (easylistchina+easylist.txt: 12050) -/(.*/)?adiframe_ -# /adiframe? (easylistchina+easylist.txt: 12049) -/(.*/)?adiframe\? -# /adiframe9. (easylistchina+easylist.txt: 12048) -/(.*/)?adiframe9\. -adiframe9.*. -# /adiframe7. (easylistchina+easylist.txt: 12047) -/(.*/)?adiframe7\. -adiframe7.*. -# /adiframe2. (easylistchina+easylist.txt: 12046) -/(.*/)?adiframe2\. -adiframe2.*. -# /adiframe18. (easylistchina+easylist.txt: 12045) -/(.*/)?adiframe18\. -adiframe18.*. -# /adiframe1. (easylistchina+easylist.txt: 12044) -/(.*/)?adiframe1\. -adiframe1.*. -# /adiframe/* (easylistchina+easylist.txt: 12043) -/(.*/)?adiframe/.* -# /adiframe. (easylistchina+easylist.txt: 12042) -/(.*/)?adiframe\. -adiframe.*. -# /adicon_ (easylistchina+easylist.txt: 12041) -/(.*/)?adicon_ -# /adhug_ (easylistchina+easylist.txt: 12040) -/(.*/)?adhug_ -# /adhub. (easylistchina+easylist.txt: 12039) -/(.*/)?adhub\. -adhub.*. -# /adhtml/* (easylistchina+easylist.txt: 12038) -/(.*/)?adhtml/.* -# /adhref. (easylistchina+easylist.txt: 12037) -/(.*/)?adhref\. -adhref.*. -# /adhood. (easylistchina+easylist.txt: 12035) -/(.*/)?adhood\. -adhood.*. -# /adhomepage2. (easylistchina+easylist.txt: 12034) -/(.*/)?adhomepage2\. -adhomepage2.*. -# /adhomepage. (easylistchina+easylist.txt: 12033) -/(.*/)?adhomepage\. -adhomepage.*. -# /adhints/* (easylistchina+easylist.txt: 12032) -/(.*/)?adhints/.* -# /adhese_ (easylistchina+easylist.txt: 12031) -/(.*/)?adhese_ -# /adhese. (easylistchina+easylist.txt: 12030) -/(.*/)?adhese\. -adhese.*. -# /adheading_ (easylistchina+easylist.txt: 12029) -/(.*/)?adheading_ -# /adheadertxt. (easylistchina+easylist.txt: 12028) -/(.*/)?adheadertxt\. -adheadertxt.*. -# /adheader. (easylistchina+easylist.txt: 12027) -/(.*/)?adheader\. -adheader.*. -# /adhandlers2. (easylistchina+easylist.txt: 12026) -/(.*/)?adhandlers2\. -adhandlers2.*. -# /adhandlers- (easylistchina+easylist.txt: 12025) -/(.*/)?adhandlers- -adhandlers-*. -# /adhandler/*$~subdocument (easylistchina+easylist.txt: 12024) -/(.*/)?adhandler/.* -# /adhandler. (easylistchina+easylist.txt: 12023) -/(.*/)?adhandler\. -adhandler.*. -# /adhalfbanner. (easylistchina+easylist.txt: 12022) -/(.*/)?adhalfbanner\. -adhalfbanner.*. -# /adhads. (easylistchina+easylist.txt: 12021) -/(.*/)?adhads\. -adhads.*. -# /adguru. (easylistchina+easylist.txt: 12020) -/(.*/)?adguru\. -adguru.*. -# /adguard. (easylistchina+easylist.txt: 12019) -/(.*/)?adguard\. -adguard.*. -# /adgraphics/* (easylistchina+easylist.txt: 12018) -/(.*/)?adgraphics/.* -# /adgooglefull2. (easylistchina+easylist.txt: 12017) -/(.*/)?adgooglefull2\. -adgooglefull2.*. -# /adgitize- (easylistchina+easylist.txt: 12016) -/(.*/)?adgitize- -adgitize-*. -# /adgetter. (easylistchina+easylist.txt: 12015) -/(.*/)?adgetter\. -adgetter.*. -# /adGet. (easylistchina+easylist.txt: 12014) -/(.*/)?adGet\. -adGet.*. -# /adgeo/* (easylistchina+easylist.txt: 12013) -/(.*/)?adgeo/.* -# /adgenerator. (easylistchina+easylist.txt: 12012) -/(.*/)?adgenerator\. -adgenerator.*. -# /adgearsegmentation. (easylistchina+easylist.txt: 12011) -/(.*/)?adgearsegmentation\. -adgearsegmentation.*. -# /adgear2- (easylistchina+easylist.txt: 12010) -/(.*/)?adgear2- -adgear2-*. -# /adgear1- (easylistchina+easylist.txt: 12009) -/(.*/)?adgear1- -adgear1-*. -# /adgear/* (easylistchina+easylist.txt: 12008) -/(.*/)?adgear/.* -# /adgear.js (easylistchina+easylist.txt: 12007) -/(.*/)?adgear\.js -adgear.js*. -# /adgalleryheader. (easylistchina+easylist.txt: 12006) -/(.*/)?adgalleryheader\. -adgalleryheader.*. -# /adgallery3| (easylistchina+easylist.txt: 12005) -/(.*/)?adgallery3$ -# /adgallery3. (easylistchina+easylist.txt: 12004) -/(.*/)?adgallery3\. -adgallery3.*. -# /adgallery2| (easylistchina+easylist.txt: 12003) -/(.*/)?adgallery2$ -# /adgallery2. (easylistchina+easylist.txt: 12002) -/(.*/)?adgallery2\. -adgallery2.*. -# /adgallery1| (easylistchina+easylist.txt: 12001) -/(.*/)?adgallery1$ -# /adgallery1. (easylistchina+easylist.txt: 12000) -/(.*/)?adgallery1\. -adgallery1.*. -# /adfunctions. (easylistchina+easylist.txt: 11999) -/(.*/)?adfunctions\. -adfunctions.*. -# /adfunction. (easylistchina+easylist.txt: 11998) -/(.*/)?adfunction\. -adfunction.*. -# /adfuncs. (easylistchina+easylist.txt: 11997) -/(.*/)?adfuncs\. -adfuncs.*. -# /adfshow? (easylistchina+easylist.txt: 11996) -/(.*/)?adfshow\? -# /adfrm. (easylistchina+easylist.txt: 11995) -/(.*/)?adfrm\. -adfrm.*. -# /adfrequencycapping. (easylistchina+easylist.txt: 11994) -/(.*/)?adfrequencycapping\. -adfrequencycapping.*. -# /adframewrapper. (easylistchina+easylist.txt: 11993) -/(.*/)?adframewrapper\. -adframewrapper.*. -# /adframetop. (easylistchina+easylist.txt: 11992) -/(.*/)?adframetop\. -adframetop.*. -# /adframemiddle. (easylistchina+easylist.txt: 11991) -/(.*/)?adframemiddle\. -adframemiddle.*. -# /adframecommon. (easylistchina+easylist.txt: 11990) -/(.*/)?adframecommon\. -adframecommon.*. -# /adframebottom. (easylistchina+easylist.txt: 11989) -/(.*/)?adframebottom\. -adframebottom.*. -# /adframe_ (easylistchina+easylist.txt: 11988) -/(.*/)?adframe_ -# /adframe? (easylistchina+easylist.txt: 11987) -/(.*/)?adframe\? -# /adframe728bot. (easylistchina+easylist.txt: 11986) -/(.*/)?adframe728bot\. -adframe728bot.*. -# /adframe728b2. (easylistchina+easylist.txt: 11985) -/(.*/)?adframe728b2\. -adframe728b2.*. -# /adframe728b. (easylistchina+easylist.txt: 11984) -/(.*/)?adframe728b\. -adframe728b.*. -# /adframe728a. (easylistchina+easylist.txt: 11983) -/(.*/)?adframe728a\. -adframe728a.*. -# /adframe468. (easylistchina+easylist.txt: 11982) -/(.*/)?adframe468\. -adframe468.*. -# /adframe2. (easylistchina+easylist.txt: 11981) -/(.*/)?adframe2\. -adframe2.*. -# /adframe120x240. (easylistchina+easylist.txt: 11980) -/(.*/)?adframe120x240\. -adframe120x240.*. -# /adframe120. (easylistchina+easylist.txt: 11979) -/(.*/)?adframe120\. -adframe120.*. -# /adframe/* (easylistchina+easylist.txt: 11978) -/(.*/)?adframe/.* -# /adframe. (easylistchina+easylist.txt: 11977) -/(.*/)?adframe\. -adframe.*. -# /adfr. (easylistchina+easylist.txt: 11976) -/(.*/)?adfr\. -adfr.*. -# /adfox. (easylistchina+easylist.txt: 11975) -/(.*/)?adfox\. -adfox.*. -# /adforums/* (easylistchina+easylist.txt: 11974) -/(.*/)?adforums/.* -# /adformats/* (easylistchina+easylist.txt: 11973) -/(.*/)?adformats/.* -# /adforge. (easylistchina+easylist.txt: 11972) -/(.*/)?adforge\. -adforge.*. -# /adforgame728x90_ (easylistchina+easylist.txt: 11971) -/(.*/)?adforgame728x90_ -# /adforgame728x90. (easylistchina+easylist.txt: 11970) -/(.*/)?adforgame728x90\. -adforgame728x90.*. -# /adforgame160x600. (easylistchina+easylist.txt: 11969) -/(.*/)?adforgame160x600\. -adforgame160x600.*. -# /adfootright. (easylistchina+easylist.txt: 11968) -/(.*/)?adfootright\. -adfootright.*. -# /adfootleft. (easylistchina+easylist.txt: 11967) -/(.*/)?adfootleft\. -adfootleft.*. -# /adFooterBG. (easylistchina+easylist.txt: 11966) -/(.*/)?adFooterBG\. -adFooterBG.*. -# /adfooter. (easylistchina+easylist.txt: 11965) -/(.*/)?adfooter\. -adfooter.*. -# /adfootcenter. (easylistchina+easylist.txt: 11964) -/(.*/)?adfootcenter\. -adfootcenter.*. -# /adfolder/* (easylistchina+easylist.txt: 11963) -/(.*/)?adfolder/.* -# /adfly/* (easylistchina+easylist.txt: 11962) -/(.*/)?adfly/.* -# /adflashes/* (easylistchina+easylist.txt: 11961) -/(.*/)?adflashes/.* -# /adflash. (easylistchina+easylist.txt: 11960) -/(.*/)?adflash\. -adflash.*. -# /adfillers/* (easylistchina+easylist.txt: 11959) -/(.*/)?adfillers/.* -# /adfiles/* (easylistchina+easylist.txt: 11958) -/(.*/)?adfiles/.* -# /adfiles. (easylistchina+easylist.txt: 11957) -/(.*/)?adfiles\. -adfiles.*. -# /adfile/* (easylistchina+easylist.txt: 11956) -/(.*/)?adfile/.* -# /adfile. (easylistchina+easylist.txt: 11955) -/(.*/)?adfile\. -adfile.*. -# /adfever_ (easylistchina+easylist.txt: 11954) -/(.*/)?adfever_ -# /adfetcher? (easylistchina+easylist.txt: 11953) -/(.*/)?adfetcher\? -# /adfetch? (easylistchina+easylist.txt: 11952) -/(.*/)?adfetch\? -# /adfetch. (easylistchina+easylist.txt: 11951) -/(.*/)?adfetch\. -adfetch.*. -# /adfeedtestview. (easylistchina+easylist.txt: 11950) -/(.*/)?adfeedtestview\. -adfeedtestview.*. -# /adfeedback/* (easylistchina+easylist.txt: 11949) -/(.*/)?adfeedback/.* -# /adfeed. (easylistchina+easylist.txt: 11948) -/(.*/)?adfeed\. -adfeed.*. -# /adfarm/* (easylistchina+easylist.txt: 11947) -/(.*/)?adfarm/.* -# /adfactory_ (easylistchina+easylist.txt: 11944) -/(.*/)?adfactory_ -# /adfactory- (easylistchina+easylist.txt: 11942) -/(.*/)?adfactory- -adfactory-*. -# /adfactor_ (easylistchina+easylist.txt: 11941) -/(.*/)?adfactor_ -# /adfactor/* (easylistchina+easylist.txt: 11940) -/(.*/)?adfactor/.* -# /adf.cgi? (easylistchina+easylist.txt: 11939) -/(.*/)?adf\.cgi\? -# /adexternal. (easylistchina+easylist.txt: 11938) -/(.*/)?adexternal\. -adexternal.*. -# /adexclude/* (easylistchina+easylist.txt: 11937) -/(.*/)?adexclude/.* -# /adexample? (easylistchina+easylist.txt: 11936) -/(.*/)?adexample\? -# /adevents. (easylistchina+easylist.txt: 11935) -/(.*/)?adevents\. -adevents.*. -# /adevent. (easylistchina+easylist.txt: 11934) -/(.*/)?adevent\. -adevent.*. -# /adError/* (easylistchina+easylist.txt: 11933) -/(.*/)?adError/.* -# /aderlee_ads. (easylistchina+easylist.txt: 11932) -/(.*/)?aderlee_ads\. -# /adentry. (easylistchina+easylist.txt: 11931) -/(.*/)?adentry\. -adentry.*. -# /adengine_ (easylistchina+easylist.txt: 11930) -/(.*/)?adengine_ -# /adengine/* (easylistchina+easylist.txt: 11929) -/(.*/)?adengine/.* -# /adengage_ (easylistchina+easylist.txt: 11928) -/(.*/)?adengage_ -# /adengage6. (easylistchina+easylist.txt: 11927) -/(.*/)?adengage6\. -adengage6.*. -# /adengage5. (easylistchina+easylist.txt: 11926) -/(.*/)?adengage5\. -adengage5.*. -# /adengage4. (easylistchina+easylist.txt: 11925) -/(.*/)?adengage4\. -adengage4.*. -# /adengage3. (easylistchina+easylist.txt: 11924) -/(.*/)?adengage3\. -adengage3.*. -# /adengage2. (easylistchina+easylist.txt: 11923) -/(.*/)?adengage2\. -adengage2.*. -# /adengage1. (easylistchina+easylist.txt: 11922) -/(.*/)?adengage1\. -adengage1.*. -# /adengage0. (easylistchina+easylist.txt: 11921) -/(.*/)?adengage0\. -adengage0.*. -# /adengage/* (easylistchina+easylist.txt: 11920) -/(.*/)?adengage/.* -# /adengage. (easylistchina+easylist.txt: 11919) -/(.*/)?adengage\. -adengage.*. -# /adengage- (easylistchina+easylist.txt: 11918) -/(.*/)?adengage- -adengage-*. -# /adedge/* (easylistchina+easylist.txt: 11917) -/(.*/)?adedge/.* -# /addyn|*|adtech; (easylistchina+easylist.txt: 11916) -/(.*/)?addyn\|.*\|adtech; -# /addyn|*;adtech; (easylistchina+easylist.txt: 11915) -/(.*/)?addyn\|.*;adtech; -# /addyn/3.0/* (easylistchina+easylist.txt: 11914) -/(.*/)?addyn/3\.0/.* -# /adds_banner/* (easylistchina+easylist.txt: 11913) -/(.*/)?adds_banner/.* -# /addon/ad/* (easylistchina+easylist.txt: 11912) -/(.*/)?addon/ad/.* -# /addisplay. (easylistchina+easylist.txt: 11911) -/(.*/)?addisplay\. -addisplay.*. -# /addeliverymodule/* (easylistchina+easylist.txt: 11910) -/(.*/)?addeliverymodule/.* -# /addelivery/* (easylistchina+easylist.txt: 11909) -/(.*/)?addelivery/.* -# /addefend/* (easylistchina+easylist.txt: 11908) -/(.*/)?addefend/.* -# /addefend. (easylistchina+easylist.txt: 11907) -/(.*/)?addefend\. -addefend.*. -# /addeals/* (easylistchina+easylist.txt: 11906) -/(.*/)?addeals/.* -# /addatasandbox? (easylistchina+easylist.txt: 11905) -/(.*/)?addatasandbox\? -# /addata. (easylistchina+easylist.txt: 11904) -/(.*/)?addata\. -addata.*. -# /add728. (easylistchina+easylist.txt: 11903) -/(.*/)?add728\. -add728.*. -# /adcycle/* (easylistchina+easylist.txt: 11902) -/(.*/)?adcycle/.* -# /adcycle. (easylistchina+easylist.txt: 11901) -/(.*/)?adcycle\. -adcycle.*. -# /adcss/* (easylistchina+easylist.txt: 11900) -/(.*/)?adcss/.* -# /adcreative/* (easylistchina+easylist.txt: 11899) -/(.*/)?adcreative/.* -# /adcreative. (easylistchina+easylist.txt: 11898) -/(.*/)?adcreative\. -adcreative.*. -# /adcounter. (easylistchina+easylist.txt: 11897) -/(.*/)?adcounter\. -adcounter.*. -# /adcount. (easylistchina+easylist.txt: 11896) -/(.*/)?adcount\. -adcount.*. -# /adcore_ (easylistchina+easylist.txt: 11895) -/(.*/)?adcore_ -# /adcore. (easylistchina+easylist.txt: 11894) -/(.*/)?adcore\. -adcore.*. -# /adcontroller. (easylistchina+easylist.txt: 11893) -/(.*/)?adcontroller\. -adcontroller.*. -# /adcontrol/* (easylistchina+easylist.txt: 11892) -/(.*/)?adcontrol/.* -# /adcontrol. (easylistchina+easylist.txt: 11891) -/(.*/)?adcontrol\. -adcontrol.*. -# /adcontents_ (easylistchina+easylist.txt: 11890) -/(.*/)?adcontents_ -# /adcontent/* (easylistchina+easylist.txt: 11889) -/(.*/)?adcontent/.* -# /adcontent.$~object-subrequest (easylistchina+easylist.txt: 11888) -/(.*/)?adcontent\. -adcontent.*. -# /adcontainer? (easylistchina+easylist.txt: 11887) -/(.*/)?adcontainer\? -# /adconfig/* (easylistchina+easylist.txt: 11886) -/(.*/)?adconfig/.* -# /adconfig.xml? (easylistchina+easylist.txt: 11885) -/(.*/)?adconfig\.xml\? -# /adconfig.js (easylistchina+easylist.txt: 11884) -/(.*/)?adconfig\.js -adconfig.js*. -# /adcomponent/* (easylistchina+easylist.txt: 11883) -/(.*/)?adcomponent/.* -# /adcomp. (easylistchina+easylist.txt: 11882) -/(.*/)?adcomp\. -adcomp.*. -# /adcommon? (easylistchina+easylist.txt: 11881) -/(.*/)?adcommon\? -# /adcollector. (easylistchina+easylist.txt: 11880) -/(.*/)?adcollector\. -adcollector.*. -# /adcodes/* (easylistchina+easylist.txt: 11879) -/(.*/)?adcodes/.* -# /adcode_ (easylistchina+easylist.txt: 11878) -/(.*/)?adcode_ -# /adcode/* (easylistchina+easylist.txt: 11877) -/(.*/)?adcode/.* -# /adcode. (easylistchina+easylist.txt: 11876) -/(.*/)?adcode\. -adcode.*. -# /adclutter. (easylistchina+easylist.txt: 11875) -/(.*/)?adclutter\. -adclutter.*. -# /adclixad. (easylistchina+easylist.txt: 11874) -/(.*/)?adclixad\. -adclixad.*. -# /adclix. (easylistchina+easylist.txt: 11873) -/(.*/)?adclix\. -adclix.*. -# /adclient/* (easylistchina+easylist.txt: 11872) -/(.*/)?adclient/.* -# /adclient. (easylistchina+easylist.txt: 11871) -/(.*/)?adclient\. -adclient.*. -# /adclient- (easylistchina+easylist.txt: 11870) -/(.*/)?adclient- -adclient-*. -# /adclick/* (easylistchina+easylist.txt: 11869) -/(.*/)?adclick/.* -# /adclick. (easylistchina+easylist.txt: 11868) -/(.*/)?adclick\. -adclick.*. -# /adcircle. (easylistchina+easylist.txt: 11867) -/(.*/)?adcircle\. -adcircle.*. -# /adchoicesv4. (easylistchina+easylist.txt: 11866) -/(.*/)?adchoicesv4\. -adchoicesv4.*. -# /adchoiceslogo. (easylistchina+easylist.txt: 11865) -/(.*/)?adchoiceslogo\. -adchoiceslogo.*. -# /adchoicesicon. (easylistchina+easylist.txt: 11864) -/(.*/)?adchoicesicon\. -adchoicesicon.*. -# /adchoicesfooter. (easylistchina+easylist.txt: 11863) -/(.*/)?adchoicesfooter\. -adchoicesfooter.*. -# /adchoices_ (easylistchina+easylist.txt: 11862) -/(.*/)?adchoices_ -# /adchoices2. (easylistchina+easylist.txt: 11861) -/(.*/)?adchoices2\. -adchoices2.*. -# /adchoices16. (easylistchina+easylist.txt: 11860) -/(.*/)?adchoices16\. -adchoices16.*. -# /adchoices/* (easylistchina+easylist.txt: 11859) -/(.*/)?adchoices/.* -# /adchoices. (easylistchina+easylist.txt: 11858) -/(.*/)?adchoices\. -adchoices.*. -# /adchoices- (easylistchina+easylist.txt: 11857) -/(.*/)?adchoices- -adchoices-*. -# /adchoice_ (easylistchina+easylist.txt: 11856) -/(.*/)?adchoice_ -# /adchoice/* (easylistchina+easylist.txt: 11855) -/(.*/)?adchoice/.* -# /adchoice. (easylistchina+easylist.txt: 11854) -/(.*/)?adchoice\. -adchoice.*. -# /adcheck? (easylistchina+easylist.txt: 11853) -/(.*/)?adcheck\? -# /adcheck. (easylistchina+easylist.txt: 11852) -/(.*/)?adcheck\. -adcheck.*. -# /adchannel_ (easylistchina+easylist.txt: 11851) -/(.*/)?adchannel_ -# /adchain. (easylistchina+easylist.txt: 11850) -/(.*/)?adchain\. -adchain.*. -# /adchain- (easylistchina+easylist.txt: 11849) -/(.*/)?adchain- -adchain-*. -# /adcgi? (easylistchina+easylist.txt: 11848) -/(.*/)?adcgi\? -# /adcframe. (easylistchina+easylist.txt: 11847) -/(.*/)?adcframe\. -adcframe.*. -# /adcentral. (easylistchina+easylist.txt: 11846) -/(.*/)?adcentral\. -adcentral.*. -# /adcenter.$script (easylistchina+easylist.txt: 11845) -/(.*/)?adcenter\. -adcenter.*. -# /adcell/* (easylistchina+easylist.txt: 11844) -/(.*/)?adcell/.* -# /adcdn. (easylistchina+easylist.txt: 11843) -/(.*/)?adcdn\. -adcdn.*. -# /adcde.js (easylistchina+easylist.txt: 11842) -/(.*/)?adcde\.js -adcde.js*. -# /adcast_ (easylistchina+easylist.txt: 11841) -/(.*/)?adcast_ -# /adcast01_ (easylistchina+easylist.txt: 11840) -/(.*/)?adcast01_ -# /adcash. (easylistchina+easylist.txt: 11839) -/(.*/)?adcash\. -adcash.*. -# /adcash- (easylistchina+easylist.txt: 11838) -/(.*/)?adcash- -adcash-*. -# /adcampaigns/* (easylistchina+easylist.txt: 11837) -/(.*/)?adcampaigns/.* -# /adcalloverride. (easylistchina+easylist.txt: 11836) -/(.*/)?adcalloverride\. -adcalloverride.*. -# /adcall. (easylistchina+easylist.txt: 11835) -/(.*/)?adcall\. -adcall.*. -# /adcache. (easylistchina+easylist.txt: 11834) -/(.*/)?adcache\. -adcache.*. -# /adbytes. (easylistchina+easylist.txt: 11833) -/(.*/)?adbytes\. -adbytes.*. -# /adbutler/* (easylistchina+easylist.txt: 11832) -/(.*/)?adbutler/.* -# /adbureau. (easylistchina+easylist.txt: 11831) -/(.*/)?adbureau\. -adbureau.*. -# /adbug_ (easylistchina+easylist.txt: 11830) -/(.*/)?adbug_ -# /adbucks/* (easylistchina+easylist.txt: 11829) -/(.*/)?adbucks/.* -# /adbriteincright. (easylistchina+easylist.txt: 11828) -/(.*/)?adbriteincright\. -adbriteincright.*. -# /adbriteincleft2. (easylistchina+easylist.txt: 11827) -/(.*/)?adbriteincleft2\. -adbriteincleft2.*. -# /adbriteinc. (easylistchina+easylist.txt: 11826) -/(.*/)?adbriteinc\. -adbriteinc.*. -# /adbrite_ (easylistchina+easylist.txt: 11825) -/(.*/)?adbrite_ -# /adbrite2. (easylistchina+easylist.txt: 11824) -/(.*/)?adbrite2\. -adbrite2.*. -# /adbrite/* (easylistchina+easylist.txt: 11823) -/(.*/)?adbrite/.* -# /adbrite. (easylistchina+easylist.txt: 11822) -/(.*/)?adbrite\. -adbrite.*. -# /adbrite- (easylistchina+easylist.txt: 11821) -/(.*/)?adbrite- -adbrite-*. -# /adboxtable- (easylistchina+easylist.txt: 11820) -/(.*/)?adboxtable- -adboxtable-*. -# /adboxes/* (easylistchina+easylist.txt: 11819) -/(.*/)?adboxes/.* -# /adboxbk. (easylistchina+easylist.txt: 11818) -/(.*/)?adboxbk\. -adboxbk.*. -# /adbox_ (easylistchina+easylist.txt: 11817) -/(.*/)?adbox_ -# /adbox2. (easylistchina+easylist.txt: 11816) -/(.*/)?adbox2\. -adbox2.*. -# /adbox1. (easylistchina+easylist.txt: 11815) -/(.*/)?adbox1\. -adbox1.*. -# /adbox/* (easylistchina+easylist.txt: 11814) -/(.*/)?adbox/.* -# /adbox. (easylistchina+easylist.txt: 11813) -/(.*/)?adbox\. -adbox.*. -# /adbottom. (easylistchina+easylist.txt: 11812) -/(.*/)?adbottom\. -adbottom.*. -# /adbotright. (easylistchina+easylist.txt: 11811) -/(.*/)?adbotright\. -adbotright.*. -# /adbotleft. (easylistchina+easylist.txt: 11810) -/(.*/)?adbotleft\. -adbotleft.*. -# /adbot_ (easylistchina+easylist.txt: 11809) -/(.*/)?adbot_ -# /adbot728. (easylistchina+easylist.txt: 11808) -/(.*/)?adbot728\. -adbot728.*. -# /adbot300. (easylistchina+easylist.txt: 11807) -/(.*/)?adbot300\. -adbot300.*. -# /adbot160. (easylistchina+easylist.txt: 11806) -/(.*/)?adbot160\. -adbot160.*. -# /adborder. (easylistchina+easylist.txt: 11805) -/(.*/)?adborder\. -adborder.*. -# /adboost. (easylistchina+easylist.txt: 11804) -/(.*/)?adboost\. -adboost.*. -# /adbn? (easylistchina+easylist.txt: 11803) -/(.*/)?adbn\? -# /adblockr. (easylistchina+easylist.txt: 11802) -/(.*/)?adblockr\. -adblockr.*. -# /adblockl. (easylistchina+easylist.txt: 11801) -/(.*/)?adblockl\. -adblockl.*. -# /adblock?id= (easylistchina+easylist.txt: 11800) -/(.*/)?adblock\?id= -# /adblock26. (easylistchina+easylist.txt: 11799) -/(.*/)?adblock26\. -adblock26.*. -# /adblock.js (easylistchina+easylist.txt: 11798) -/(.*/)?adblock\.js -adblock.js*. -# /adblock.ash (easylistchina+easylist.txt: 11797) -/(.*/)?adblock\.ash -adblock.ash*. -# /adblob. (easylistchina+easylist.txt: 11796) -/(.*/)?adblob\. -adblob.*. -# /adblade-publisher-tools/* (easylistchina+easylist.txt: 11795) -/(.*/)?adblade-publisher-tools/.* -# /adbg.jpg (easylistchina+easylist.txt: 11794) -/(.*/)?adbg\.jpg -adbg.jpg*. -# /adbetween/* (easylistchina+easylist.txt: 11793) -/(.*/)?adbetween/.* -# /adbebi_ (easylistchina+easylist.txt: 11792) -/(.*/)?adbebi_ -# /adbeacon. (easylistchina+easylist.txt: 11791) -/(.*/)?adbeacon\. -adbeacon.*. -# /adbase. (easylistchina+easylist.txt: 11790) -/(.*/)?adbase\. -adbase.*. -# /adbars. (easylistchina+easylist.txt: 11789) -/(.*/)?adbars\. -adbars.*. -# /adbar_ (easylistchina+easylist.txt: 11788) -/(.*/)?adbar_ -# /adbar2_ (easylistchina+easylist.txt: 11787) -/(.*/)?adbar2_ -# /adbar/* (easylistchina+easylist.txt: 11786) -/(.*/)?adbar/.* -# /adbar. (easylistchina+easylist.txt: 11785) -/(.*/)?adbar\. -adbar.*. -# /adbanners/* (easylistchina+easylist.txt: 11784) -/(.*/)?adbanners/.* -# /adbanner_ (easylistchina+easylist.txt: 11783) -/(.*/)?adbanner_ -# /adbanner2. (easylistchina+easylist.txt: 11782) -/(.*/)?adbanner2\. -adbanner2.*. -# /adbanner/* (easylistchina+easylist.txt: 11781) -/(.*/)?adbanner/.* -# /adbanner. (easylistchina+easylist.txt: 11780) -/(.*/)?adbanner\. -adbanner.*. -# /adban. (easylistchina+easylist.txt: 11779) -/(.*/)?adban\. -adban.*. -# /adback? (easylistchina+easylist.txt: 11778) -/(.*/)?adback\? -# /adback. (easylistchina+easylist.txt: 11777) -/(.*/)?adback\. -adback.*. -# /adb.js?tag= (easylistchina+easylist.txt: 11776) -/(.*/)?adb\.js\?tag= -# /adasset4/* (easylistchina+easylist.txt: 11775) -/(.*/)?adasset4/.* -# /adasset/* (easylistchina+easylist.txt: 11774) -/(.*/)?adasset/.* -# /adarena/* (easylistchina+easylist.txt: 11773) -/(.*/)?adarena/.* -# /adaptvexchangevastvideo. (easylistchina+easylist.txt: 11772) -/(.*/)?adaptvexchangevastvideo\. -adaptvexchangevastvideo.*. -# /adaptvadservervastvideo. (easylistchina+easylist.txt: 11771) -/(.*/)?adaptvadservervastvideo\. -adaptvadservervastvideo.*. -# /adaptvadplayer. (easylistchina+easylist.txt: 11770) -/(.*/)?adaptvadplayer\. -adaptvadplayer.*. -# /adanim/* (easylistchina+easylist.txt: 11769) -/(.*/)?adanim/.* -# /adanalytics. (easylistchina+easylist.txt: 11768) -/(.*/)?adanalytics\. -adanalytics.*. -# /adaffiliate_ (easylistchina+easylist.txt: 11767) -/(.*/)?adaffiliate_ -# /adactions. (easylistchina+easylist.txt: 11766) -/(.*/)?adactions\. -adactions.*. -# /ad_www_ (easylistchina+easylist.txt: 11765) -/(.*/)?ad_www_ -# /ad_wrapper. (easylistchina+easylist.txt: 11764) -/(.*/)?ad_wrapper\. -# /ad_width/* (easylistchina+easylist.txt: 11763) -/(.*/)?ad_width/.* -# /ad_wide_ (easylistchina+easylist.txt: 11762) -/(.*/)?ad_wide_ -# /ad_view_ (easylistchina+easylist.txt: 11761) -/(.*/)?ad_view_ -# /ad_video1. (easylistchina+easylist.txt: 11760) -/(.*/)?ad_video1\. -# /ad_video.htm (easylistchina+easylist.txt: 11759) -/(.*/)?ad_video\.htm -# /ad_vertical. (easylistchina+easylist.txt: 11758) -/(.*/)?ad_vertical\. -# /ad_vert. (easylistchina+easylist.txt: 11757) -/(.*/)?ad_vert\. -# /ad_ver/* (easylistchina+easylist.txt: 11756) -/(.*/)?ad_ver/.* -# /ad_utils/* (easylistchina+easylist.txt: 11755) -/(.*/)?ad_utils/.* -# /ad_utils. (easylistchina+easylist.txt: 11754) -/(.*/)?ad_utils\. -# /ad_util. (easylistchina+easylist.txt: 11753) -/(.*/)?ad_util\. -# /ad_upload/* (easylistchina+easylist.txt: 11752) -/(.*/)?ad_upload/.* -# /ad_units/* (easylistchina+easylist.txt: 11751) -/(.*/)?ad_units/.* -# /ad_units. (easylistchina+easylist.txt: 11750) -/(.*/)?ad_units\. -# /ad_txt. (easylistchina+easylist.txt: 11749) -/(.*/)?ad_txt\. -# /ad_tpl. (easylistchina+easylist.txt: 11748) -/(.*/)?ad_tpl\. -# /ad_tower_ (easylistchina+easylist.txt: 11747) -/(.*/)?ad_tower_ -# /ad_topgray2. (easylistchina+easylist.txt: 11746) -/(.*/)?ad_topgray2\. -# /ad_top_ (easylistchina+easylist.txt: 11745) -/(.*/)?ad_top_ -# /ad_top/* (easylistchina+easylist.txt: 11744) -/(.*/)?ad_top/.* -# /ad_top. (easylistchina+easylist.txt: 11743) -/(.*/)?ad_top\. -# /ad_title_ (easylistchina+easylist.txt: 11742) -/(.*/)?ad_title_ -# /ad_timer. (easylistchina+easylist.txt: 11741) -/(.*/)?ad_timer\. -# /ad_tile/* (easylistchina+easylist.txt: 11740) -/(.*/)?ad_tile/.* -# /ad_tickets. (easylistchina+easylist.txt: 11739) -/(.*/)?ad_tickets\. -# /ad_text_ (easylistchina+easylist.txt: 11738) -/(.*/)?ad_text_ -# /ad_text. (easylistchina+easylist.txt: 11737) -/(.*/)?ad_text\. -# /ad_tags_ (easylistchina+easylist.txt: 11736) -/(.*/)?ad_tags_ -# /ad_tag_ (easylistchina+easylist.txt: 11735) -/(.*/)?ad_tag_ -# /ad_tag. (easylistchina+easylist.txt: 11734) -/(.*/)?ad_tag\. -# /ad_tab. (easylistchina+easylist.txt: 11733) -/(.*/)?ad_tab\. -# /ad_system/* (easylistchina+easylist.txt: 11732) -/(.*/)?ad_system/.* -# /ad_syshome. (easylistchina+easylist.txt: 11731) -/(.*/)?ad_syshome\. -# /ad_sys/* (easylistchina+easylist.txt: 11730) -/(.*/)?ad_sys/.* -# /ad_supertile/* (easylistchina+easylist.txt: 11729) -/(.*/)?ad_supertile/.* -# /ad_styling_ (easylistchina+easylist.txt: 11728) -/(.*/)?ad_styling_ -# /ad_stem/* (easylistchina+easylist.txt: 11727) -/(.*/)?ad_stem/.* -# /ad_status. (easylistchina+easylist.txt: 11726) -/(.*/)?ad_status\. -# /ad_srv. (easylistchina+easylist.txt: 11725) -/(.*/)?ad_srv\. -# /ad_squares. (easylistchina+easylist.txt: 11724) -/(.*/)?ad_squares\. -# /ad_square_ (easylistchina+easylist.txt: 11723) -/(.*/)?ad_square_ -# /ad_square. (easylistchina+easylist.txt: 11722) -/(.*/)?ad_square\. -# /ad_spot. (easylistchina+easylist.txt: 11721) -/(.*/)?ad_spot\. -# /ad_space. (easylistchina+easylist.txt: 11720) -/(.*/)?ad_space\. -# /ad_slideout. (easylistchina+easylist.txt: 11719) -/(.*/)?ad_slideout\. -# /ad_skyscraper. (easylistchina+easylist.txt: 11718) -/(.*/)?ad_skyscraper\. -# /ad_sky. (easylistchina+easylist.txt: 11717) -/(.*/)?ad_sky\. -# /ad_skin_ (easylistchina+easylist.txt: 11716) -/(.*/)?ad_skin_ -# /ad_sizes= (easylistchina+easylist.txt: 11715) -/(.*/)?ad_sizes= -# /ad_sidebar/* (easylistchina+easylist.txt: 11714) -/(.*/)?ad_sidebar/.* -# /ad_side. (easylistchina+easylist.txt: 11713) -/(.*/)?ad_side\. -# /ad_show? (easylistchina+easylist.txt: 11712) -/(.*/)?ad_show\? -# /ad_show. (easylistchina+easylist.txt: 11711) -/(.*/)?ad_show\. -# /ad_shared/* (easylistchina+easylist.txt: 11710) -/(.*/)?ad_shared/.* -# /ad_servlet. (easylistchina+easylist.txt: 11709) -/(.*/)?ad_servlet\. -# /ad_server/* (easylistchina+easylist.txt: 11708) -/(.*/)?ad_server/.* -# /ad_server. (easylistchina+easylist.txt: 11707) -/(.*/)?ad_server\. -# /ad_serve_ (easylistchina+easylist.txt: 11706) -/(.*/)?ad_serve_ -# /ad_serve. (easylistchina+easylist.txt: 11705) -/(.*/)?ad_serve\. -# /ad_serv. (easylistchina+easylist.txt: 11704) -/(.*/)?ad_serv\. -# /ad_scroller. (easylistchina+easylist.txt: 11703) -/(.*/)?ad_scroller\. -# /ad_script_ (easylistchina+easylist.txt: 11702) -/(.*/)?ad_script_ -# /ad_script. (easylistchina+easylist.txt: 11701) -/(.*/)?ad_script\. -# /ad_rotator_ (easylistchina+easylist.txt: 11700) -/(.*/)?ad_rotator_ -# /ad_rotator/* (easylistchina+easylist.txt: 11699) -/(.*/)?ad_rotator/.* -# /ad_rotator. (easylistchina+easylist.txt: 11698) -/(.*/)?ad_rotator\. -# /ad_rotation. (easylistchina+easylist.txt: 11697) -/(.*/)?ad_rotation\. -# /ad_right_ (easylistchina+easylist.txt: 11696) -/(.*/)?ad_right_ -# /ad_right. (easylistchina+easylist.txt: 11695) -/(.*/)?ad_right\. -# /ad_resize. (easylistchina+easylist.txt: 11694) -/(.*/)?ad_resize\. -# /ad_request. (easylistchina+easylist.txt: 11693) -/(.*/)?ad_request\. -# /ad_req. (easylistchina+easylist.txt: 11692) -/(.*/)?ad_req\. -# /ad_rentangle. (easylistchina+easylist.txt: 11691) -/(.*/)?ad_rentangle\. -# /ad_renderv4_ (easylistchina+easylist.txt: 11690) -/(.*/)?ad_renderv4_ -# /ad_render_ (easylistchina+easylist.txt: 11689) -/(.*/)?ad_render_ -# /ad_reloader_ (easylistchina+easylist.txt: 11688) -/(.*/)?ad_reloader_ -# /ad_refresher. (easylistchina+easylist.txt: 11687) -/(.*/)?ad_refresher\. -# /ad_refresh. (easylistchina+easylist.txt: 11686) -/(.*/)?ad_refresh\. -# /ad_rectangle_ (easylistchina+easylist.txt: 11685) -/(.*/)?ad_rectangle_ -# /ad_print. (easylistchina+easylist.txt: 11684) -/(.*/)?ad_print\. -# /ad_preroll- (easylistchina+easylist.txt: 11683) -/(.*/)?ad_preroll- -# /ad_premium_ (easylistchina+easylist.txt: 11682) -/(.*/)?ad_premium_ -# /ad_premium. (easylistchina+easylist.txt: 11681) -/(.*/)?ad_premium\. -# /ad_position_ (easylistchina+easylist.txt: 11680) -/(.*/)?ad_position_ -# /ad_position= (easylistchina+easylist.txt: 11679) -/(.*/)?ad_position= -# /ad_pos= (easylistchina+easylist.txt: 11678) -/(.*/)?ad_pos= -# /ad_popup_ (easylistchina+easylist.txt: 11677) -/(.*/)?ad_popup_ -# /ad_pop1. (easylistchina+easylist.txt: 11676) -/(.*/)?ad_pop1\. -# /ad_pop. (easylistchina+easylist.txt: 11675) -/(.*/)?ad_pop\. -# /ad_pics/* (easylistchina+easylist.txt: 11674) -/(.*/)?ad_pics/.* -# /ad_peel/* (easylistchina+easylist.txt: 11673) -/(.*/)?ad_peel/.* -# /ad_parts. (easylistchina+easylist.txt: 11672) -/(.*/)?ad_parts\. -# /ad_paper_ (easylistchina+easylist.txt: 11671) -/(.*/)?ad_paper_ -# /ad_page_ (easylistchina+easylist.txt: 11670) -/(.*/)?ad_page_ -# /ad_overlay. (easylistchina+easylist.txt: 11669) -/(.*/)?ad_overlay\. -# /ad_option_ (easylistchina+easylist.txt: 11668) -/(.*/)?ad_option_ -# /ad_ops/* (easylistchina+easylist.txt: 11667) -/(.*/)?ad_ops/.* -# /ad_offersmail_ (easylistchina+easylist.txt: 11666) -/(.*/)?ad_offersmail_ -# /ad_oas/* (easylistchina+easylist.txt: 11665) -/(.*/)?ad_oas/.* -# /ad_notice. (easylistchina+easylist.txt: 11664) -/(.*/)?ad_notice\. -# /ad_note. (easylistchina+easylist.txt: 11663) -/(.*/)?ad_note\. -# /ad_news. (easylistchina+easylist.txt: 11662) -/(.*/)?ad_news\. -# /ad_navigbar_ (easylistchina+easylist.txt: 11661) -/(.*/)?ad_navigbar_ -# /ad_multi_ (easylistchina+easylist.txt: 11660) -/(.*/)?ad_multi_ -# /ad_mpu. (easylistchina+easylist.txt: 11659) -/(.*/)?ad_mpu\. -# /ad_mobile. (easylistchina+easylist.txt: 11658) -/(.*/)?ad_mobile\. -# /ad_mini_ (easylistchina+easylist.txt: 11657) -/(.*/)?ad_mini_ -# /ad_medium_ (easylistchina+easylist.txt: 11656) -/(.*/)?ad_medium_ -# /ad_media/* (easylistchina+easylist.txt: 11655) -/(.*/)?ad_media/.* -# /ad_mbox. (easylistchina+easylist.txt: 11654) -/(.*/)?ad_mbox\. -# /ad_master_ (easylistchina+easylist.txt: 11653) -/(.*/)?ad_master_ -# /ad_manager/* (easylistchina+easylist.txt: 11652) -/(.*/)?ad_manager/.* -# /ad_manager. (easylistchina+easylist.txt: 11651) -/(.*/)?ad_manager\. -# /ad_manage. (easylistchina+easylist.txt: 11650) -/(.*/)?ad_manage\. -# /ad_lomadee. (easylistchina+easylist.txt: 11649) -/(.*/)?ad_lomadee\. -# /ad_log_ (easylistchina+easylist.txt: 11648) -/(.*/)?ad_log_ -# /ad_locations/* (easylistchina+easylist.txt: 11647) -/(.*/)?ad_locations/.* -# /ad_loader2. (easylistchina+easylist.txt: 11646) -/(.*/)?ad_loader2\. -# /ad_loader. (easylistchina+easylist.txt: 11645) -/(.*/)?ad_loader\. -# /ad_load. (easylistchina+easylist.txt: 11644) -/(.*/)?ad_load\. -# /ad_listpage. (easylistchina+easylist.txt: 11643) -/(.*/)?ad_listpage\. -# /ad_links/* (easylistchina+easylist.txt: 11642) -/(.*/)?ad_links/.* -# /ad_link. (easylistchina+easylist.txt: 11641) -/(.*/)?ad_link\. -# /ad_legend_ (easylistchina+easylist.txt: 11640) -/(.*/)?ad_legend_ -# /ad_left_ (easylistchina+easylist.txt: 11639) -/(.*/)?ad_left_ -# /ad_left. (easylistchina+easylist.txt: 11638) -/(.*/)?ad_left\. -# /ad_leaderboard/* (easylistchina+easylist.txt: 11637) -/(.*/)?ad_leaderboard/.* -# /ad_leaderboard. (easylistchina+easylist.txt: 11636) -/(.*/)?ad_leaderboard\. -# /ad_leader_ (easylistchina+easylist.txt: 11635) -/(.*/)?ad_leader_ -# /ad_leader. (easylistchina+easylist.txt: 11634) -/(.*/)?ad_leader\. -# /ad_large. (easylistchina+easylist.txt: 11633) -/(.*/)?ad_large\. -# /ad_label_ (easylistchina+easylist.txt: 11632) -/(.*/)?ad_label_ -# /ad_label728. (easylistchina+easylist.txt: 11631) -/(.*/)?ad_label728\. -# /ad_label2_ (easylistchina+easylist.txt: 11630) -/(.*/)?ad_label2_ -# /ad_keywords. (easylistchina+easylist.txt: 11629) -/(.*/)?ad_keywords\. -# /ad_jnaught/* (easylistchina+easylist.txt: 11628) -/(.*/)?ad_jnaught/.* -# /ad_insert. (easylistchina+easylist.txt: 11627) -/(.*/)?ad_insert\. -# /ad_index_ (easylistchina+easylist.txt: 11626) -/(.*/)?ad_index_ -# /ad_include. (easylistchina+easylist.txt: 11625) -/(.*/)?ad_include\. -# /ad_img/* (easylistchina+easylist.txt: 11624) -/(.*/)?ad_img/.* -# /ad_img. (easylistchina+easylist.txt: 11623) -/(.*/)?ad_img\. -# /ad_images/* (easylistchina+easylist.txt: 11622) -/(.*/)?ad_images/.* -# /ad_image2. (easylistchina+easylist.txt: 11621) -/(.*/)?ad_image2\. -# /ad_image. (easylistchina+easylist.txt: 11620) -/(.*/)?ad_image\. -# /ad_iframe_ (easylistchina+easylist.txt: 11619) -/(.*/)?ad_iframe_ -# /ad_iframe. (easylistchina+easylist.txt: 11618) -/(.*/)?ad_iframe\. -# /ad_icons/* (easylistchina+easylist.txt: 11617) -/(.*/)?ad_icons/.* -# /ad_html/* (easylistchina+easylist.txt: 11616) -/(.*/)?ad_html/.* -# /ad_horizontal. (easylistchina+easylist.txt: 11615) -/(.*/)?ad_horizontal\. -# /ad_horiz. (easylistchina+easylist.txt: 11614) -/(.*/)?ad_horiz\. -# /ad_horisontal. (easylistchina+easylist.txt: 11613) -/(.*/)?ad_horisontal\. -# /ad_homepage_ (easylistchina+easylist.txt: 11612) -/(.*/)?ad_homepage_ -# /ad_home_ (easylistchina+easylist.txt: 11611) -/(.*/)?ad_home_ -# /ad_home2011_ (easylistchina+easylist.txt: 11610) -/(.*/)?ad_home2011_ -# /ad_holder/* (easylistchina+easylist.txt: 11609) -/(.*/)?ad_holder/.* -# /ad_height/* (easylistchina+easylist.txt: 11608) -/(.*/)?ad_height/.* -# /ad_header_ (easylistchina+easylist.txt: 11607) -/(.*/)?ad_header_ -# /ad_header. (easylistchina+easylist.txt: 11606) -/(.*/)?ad_header\. -# /ad_head_ (easylistchina+easylist.txt: 11605) -/(.*/)?ad_head_ -# /ad_hcr_ (easylistchina+easylist.txt: 11604) -/(.*/)?ad_hcr_ -# /ad_hcl_ (easylistchina+easylist.txt: 11603) -/(.*/)?ad_hcl_ -# /ad_h.css? (easylistchina+easylist.txt: 11602) -/(.*/)?ad_h\.css\? -# /ad_google. (easylistchina+easylist.txt: 11601) -/(.*/)?ad_google\. -# /ad_gif_ (easylistchina+easylist.txt: 11600) -/(.*/)?ad_gif_ -# /ad_gif/* (easylistchina+easylist.txt: 11599) -/(.*/)?ad_gif/.* -# /ad_generator? (easylistchina+easylist.txt: 11598) -/(.*/)?ad_generator\? -# /ad_generator. (easylistchina+easylist.txt: 11597) -/(.*/)?ad_generator\. -# /ad_function. (easylistchina+easylist.txt: 11596) -/(.*/)?ad_function\. -# /ad_frm. (easylistchina+easylist.txt: 11595) -/(.*/)?ad_frm\. -# /ad_frame? (easylistchina+easylist.txt: 11594) -/(.*/)?ad_frame\? -# /ad_frame. (easylistchina+easylist.txt: 11593) -/(.*/)?ad_frame\. -# /ad_forum_ (easylistchina+easylist.txt: 11592) -/(.*/)?ad_forum_ -# /ad_footer_ (easylistchina+easylist.txt: 11591) -/(.*/)?ad_footer_ -# /ad_footer. (easylistchina+easylist.txt: 11590) -/(.*/)?ad_footer\. -# /ad_folder/* (easylistchina+easylist.txt: 11589) -/(.*/)?ad_folder/.* -# /ad_floater. (easylistchina+easylist.txt: 11588) -/(.*/)?ad_floater\. -# /ad_flat_ (easylistchina+easylist.txt: 11587) -/(.*/)?ad_flat_ -# /ad_flash/* (easylistchina+easylist.txt: 11586) -/(.*/)?ad_flash/.* -# /ad_filmstrip/* (easylistchina+easylist.txt: 11585) -/(.*/)?ad_filmstrip/.* -# /ad_filler. (easylistchina+easylist.txt: 11584) -/(.*/)?ad_filler\. -# /ad_fill. (easylistchina+easylist.txt: 11583) -/(.*/)?ad_fill\. -# /ad_files/* (easylistchina+easylist.txt: 11582) -/(.*/)?ad_files/.* -# /ad_file/* (easylistchina+easylist.txt: 11581) -/(.*/)?ad_file/.* -# /ad_feed. (easylistchina+easylist.txt: 11580) -/(.*/)?ad_feed\. -# /ad_entry_ (easylistchina+easylist.txt: 11579) -/(.*/)?ad_entry_ -# /ad_engine? (easylistchina+easylist.txt: 11578) -/(.*/)?ad_engine\? -# /ad_editorials_ (easylistchina+easylist.txt: 11577) -/(.*/)?ad_editorials_ -# /ad_ebound. (easylistchina+easylist.txt: 11576) -/(.*/)?ad_ebound\. -# /ad_drivers/* (easylistchina+easylist.txt: 11575) -/(.*/)?ad_drivers/.* -# /ad_display_ (easylistchina+easylist.txt: 11574) -/(.*/)?ad_display_ -# /ad_display. (easylistchina+easylist.txt: 11573) -/(.*/)?ad_display\. -# /ad_dir/* (easylistchina+easylist.txt: 11572) -/(.*/)?ad_dir/.* -# /ad_digital. (easylistchina+easylist.txt: 11571) -/(.*/)?ad_digital\. -# /ad_detect. (easylistchina+easylist.txt: 11570) -/(.*/)?ad_detect\. -# /ad_data/* (easylistchina+easylist.txt: 11569) -/(.*/)?ad_data/.* -# /ad_creatives. (easylistchina+easylist.txt: 11568) -/(.*/)?ad_creatives\. -# /ad_counter_ (easylistchina+easylist.txt: 11567) -/(.*/)?ad_counter_ -# /ad_counter. (easylistchina+easylist.txt: 11566) -/(.*/)?ad_counter\. -# /ad_count. (easylistchina+easylist.txt: 11565) -/(.*/)?ad_count\. -# /ad_contents/* (easylistchina+easylist.txt: 11564) -/(.*/)?ad_contents/.* -# /ad_content. (easylistchina+easylist.txt: 11563) -/(.*/)?ad_content\. -# /ad_container_ (easylistchina+easylist.txt: 11562) -/(.*/)?ad_container_ -# /ad_configurations_ (easylistchina+easylist.txt: 11561) -/(.*/)?ad_configurations_ -# /ad_configuration. (easylistchina+easylist.txt: 11560) -/(.*/)?ad_configuration\. -# /ad_commonside_ (easylistchina+easylist.txt: 11559) -/(.*/)?ad_commonside_ -# /ad_commonside. (easylistchina+easylist.txt: 11558) -/(.*/)?ad_commonside\. -# /ad_code. (easylistchina+easylist.txt: 11557) -/(.*/)?ad_code\. -# /ad_choices_ (easylistchina+easylist.txt: 11556) -/(.*/)?ad_choices_ -# /ad_choices. (easylistchina+easylist.txt: 11555) -/(.*/)?ad_choices\. -# /ad_check. (easylistchina+easylist.txt: 11554) -/(.*/)?ad_check\. -# /ad_caption. (easylistchina+easylist.txt: 11553) -/(.*/)?ad_caption\. -# /ad_campaigns/* (easylistchina+easylist.txt: 11552) -/(.*/)?ad_campaigns/.* -# /ad_cache/* (easylistchina+easylist.txt: 11551) -/(.*/)?ad_cache/.* -# /ad_button. (easylistchina+easylist.txt: 11550) -/(.*/)?ad_button\. -# /ad_bsb. (easylistchina+easylist.txt: 11549) -/(.*/)?ad_bsb\. -# /ad_box_ (easylistchina+easylist.txt: 11548) -/(.*/)?ad_box_ -# /ad_box? (easylistchina+easylist.txt: 11547) -/(.*/)?ad_box\? -# /ad_box2. (easylistchina+easylist.txt: 11546) -/(.*/)?ad_box2\. -# /ad_box1. (easylistchina+easylist.txt: 11545) -/(.*/)?ad_box1\. -# /ad_box. (easylistchina+easylist.txt: 11544) -/(.*/)?ad_box\. -# /ad_bottom. (easylistchina+easylist.txt: 11543) -/(.*/)?ad_bottom\. -# /ad_bot. (easylistchina+easylist.txt: 11542) -/(.*/)?ad_bot\. -# /ad_bomb/* (easylistchina+easylist.txt: 11541) -/(.*/)?ad_bomb/.* -# /ad_blog. (easylistchina+easylist.txt: 11540) -/(.*/)?ad_blog\. -# /ad_big_ (easylistchina+easylist.txt: 11539) -/(.*/)?ad_big_ -# /ad_base. (easylistchina+easylist.txt: 11538) -/(.*/)?ad_base\. -# /ad_bar_ (easylistchina+easylist.txt: 11537) -/(.*/)?ad_bar_ -# /ad_banners/* (easylistchina+easylist.txt: 11536) -/(.*/)?ad_banners/.* -# /ad_bannerPool- (easylistchina+easylist.txt: 11535) -/(.*/)?ad_bannerPool- -# /ad_banner_ (easylistchina+easylist.txt: 11534) -/(.*/)?ad_banner_ -# /ad_banner2. (easylistchina+easylist.txt: 11533) -/(.*/)?ad_banner2\. -# /ad_banner1. (easylistchina+easylist.txt: 11532) -/(.*/)?ad_banner1\. -# /ad_banner/* (easylistchina+easylist.txt: 11531) -/(.*/)?ad_banner/.* -# /ad_banner. (easylistchina+easylist.txt: 11530) -/(.*/)?ad_banner\. -# /Ad_Arub_ (easylistchina+easylist.txt: 11529) -/(.*/)?Ad_Arub_ -# /ad_art/* (easylistchina+easylist.txt: 11528) -/(.*/)?ad_art/.* -# /ad_area. (easylistchina+easylist.txt: 11527) -/(.*/)?ad_area\. -# /ad_agency/* (easylistchina+easylist.txt: 11526) -/(.*/)?ad_agency/.* -# /ad_960x90_ (easylistchina+easylist.txt: 11525) -/(.*/)?ad_960x90_ -# /ad_728_ (easylistchina+easylist.txt: 11524) -/(.*/)?ad_728_ -# /ad_728. (easylistchina+easylist.txt: 11523) -/(.*/)?ad_728\. -# /ad_600x160_ (easylistchina+easylist.txt: 11522) -/(.*/)?ad_600x160_ -# /ad_600_ (easylistchina+easylist.txt: 11521) -/(.*/)?ad_600_ -# /ad_300_ (easylistchina+easylist.txt: 11520) -/(.*/)?ad_300_ -# /ad_300250. (easylistchina+easylist.txt: 11519) -/(.*/)?ad_300250\. -# /ad_300. (easylistchina+easylist.txt: 11518) -/(.*/)?ad_300\. -# /ad_250x250_ (easylistchina+easylist.txt: 11517) -/(.*/)?ad_250x250_ -# /ad_234x60_ (easylistchina+easylist.txt: 11516) -/(.*/)?ad_234x60_ -# /ad_200x90_ (easylistchina+easylist.txt: 11515) -/(.*/)?ad_200x90_ -# /ad_120_ (easylistchina+easylist.txt: 11514) -/(.*/)?ad_120_ -# /ad?type= (easylistchina+easylist.txt: 11513) -/(.*/)?ad\?type= -# /ad?sponsor= (easylistchina+easylist.txt: 11512) -/(.*/)?ad\?sponsor= -# /ad?pos_ (easylistchina+easylist.txt: 11511) -/(.*/)?ad\?pos_ -# /ad?iframe_ (easylistchina+easylist.txt: 11510) -/(.*/)?ad\?iframe_ -# /ad?currentview= (easylistchina+easylist.txt: 11509) -/(.*/)?ad\?currentview= -# /ad?count= (easylistchina+easylist.txt: 11508) -/(.*/)?ad\?count= -# /ad?cid= (easylistchina+easylist.txt: 11507) -/(.*/)?ad\?cid= -# /ad?channel= (easylistchina+easylist.txt: 11506) -/(.*/)?ad\?channel= -# /ad8. (easylistchina+easylist.txt: 11505) -/(.*/)?ad8\. -ad8.*. -# /ad728x90. (easylistchina+easylist.txt: 11504) -/(.*/)?ad728x90\. -ad728x90.*. -# /ad728x15_ (easylistchina+easylist.txt: 11503) -/(.*/)?ad728x15_ -# /ad728x15. (easylistchina+easylist.txt: 11502) -/(.*/)?ad728x15\. -ad728x15.*. -# /ad728x. (easylistchina+easylist.txt: 11501) -/(.*/)?ad728x\. -ad728x.*. -# /ad728ws. (easylistchina+easylist.txt: 11500) -/(.*/)?ad728ws\. -ad728ws.*. -# /ad728w. (easylistchina+easylist.txt: 11499) -/(.*/)?ad728w\. -ad728w.*. -# /ad728t. (easylistchina+easylist.txt: 11498) -/(.*/)?ad728t\. -ad728t.*. -# /ad728s. (easylistchina+easylist.txt: 11497) -/(.*/)?ad728s\. -ad728s.*. -# /ad728home. (easylistchina+easylist.txt: 11496) -/(.*/)?ad728home\. -ad728home.*. -# /ad728f2. (easylistchina+easylist.txt: 11495) -/(.*/)?ad728f2\. -ad728f2.*. -# /ad728f. (easylistchina+easylist.txt: 11494) -/(.*/)?ad728f\. -ad728f.*. -# /ad728. (easylistchina+easylist.txt: 11493) -/(.*/)?ad728\. -ad728.*. -# /ad728- (easylistchina+easylist.txt: 11492) -/(.*/)?ad728- -ad728-*. -# /ad7. (easylistchina+easylist.txt: 11491) -/(.*/)?ad7\. -ad7.*. -# /ad600x330. (easylistchina+easylist.txt: 11490) -/(.*/)?ad600x330\. -ad600x330.*. -# /ad600x250. (easylistchina+easylist.txt: 11489) -/(.*/)?ad600x250\. -ad600x250.*. -# /ad6. (easylistchina+easylist.txt: 11488) -/(.*/)?ad6\. -ad6.*. -# /ad5. (easylistchina+easylist.txt: 11487) -/(.*/)?ad5\. -ad5.*. -# /ad4i. (easylistchina+easylist.txt: 11486) -/(.*/)?ad4i\. -ad4i.*. -# /ad468x80. (easylistchina+easylist.txt: 11485) -/(.*/)?ad468x80\. -ad468x80.*. -# /ad468x60. (easylistchina+easylist.txt: 11484) -/(.*/)?ad468x60\. -ad468x60.*. -# /ad468. (easylistchina+easylist.txt: 11483) -/(.*/)?ad468\. -ad468.*. -# /ad41_ (easylistchina+easylist.txt: 11482) -/(.*/)?ad41_ -# /ad3i. (easylistchina+easylist.txt: 11480) -/(.*/)?ad3i\. -ad3i.*. -# /ad3_ima. (easylistchina+easylist.txt: 11479) -/(.*/)?ad3_ima\. -# /ad350. (easylistchina+easylist.txt: 11478) -/(.*/)?ad350\. -ad350.*. -# /ad300x250_ (easylistchina+easylist.txt: 11477) -/(.*/)?ad300x250_ -# /ad300x250. (easylistchina+easylist.txt: 11476) -/(.*/)?ad300x250\. -ad300x250.*. -# /ad300x250- (easylistchina+easylist.txt: 11475) -/(.*/)?ad300x250- -ad300x250-*. -# /ad300x145. (easylistchina+easylist.txt: 11474) -/(.*/)?ad300x145\. -ad300x145.*. -# /ad300x. (easylistchina+easylist.txt: 11473) -/(.*/)?ad300x\. -ad300x.*. -# /ad300ws. (easylistchina+easylist.txt: 11472) -/(.*/)?ad300ws\. -ad300ws.*. -# /ad300s. (easylistchina+easylist.txt: 11471) -/(.*/)?ad300s\. -ad300s.*. -# /ad300home. (easylistchina+easylist.txt: 11470) -/(.*/)?ad300home\. -ad300home.*. -# /ad300f2. (easylistchina+easylist.txt: 11469) -/(.*/)?ad300f2\. -ad300f2.*. -# /ad300f. (easylistchina+easylist.txt: 11468) -/(.*/)?ad300f\. -ad300f.*. -# /ad300. (easylistchina+easylist.txt: 11467) -/(.*/)?ad300\. -ad300.*. -# /ad2you/* (easylistchina+easylist.txt: 11465) -/(.*/)?ad2you/.* -# /ad2push. (easylistchina+easylist.txt: 11464) -/(.*/)?ad2push\. -ad2push.*. -# /ad2gather. (easylistchina+easylist.txt: 11463) -/(.*/)?ad2gather\. -ad2gather.*. -# /ad2gate. (easylistchina+easylist.txt: 11462) -/(.*/)?ad2gate\. -ad2gate.*. -# /ad2con. (easylistchina+easylist.txt: 11461) -/(.*/)?ad2con\. -ad2con.*. -# /ad2border. (easylistchina+easylist.txt: 11460) -/(.*/)?ad2border\. -ad2border.*. -# /ad2_ (easylistchina+easylist.txt: 11459) -/(.*/)?ad2_ -# /ad290x60_ (easylistchina+easylist.txt: 11458) -/(.*/)?ad290x60_ -# /ad247realmedia/* (easylistchina+easylist.txt: 11457) -/(.*/)?ad247realmedia/.* -# /ad24/* (easylistchina+easylist.txt: 11456) -/(.*/)?ad24/.* -# /ad234. (easylistchina+easylist.txt: 11455) -/(.*/)?ad234\. -ad234.*. -# /ad2010. (easylistchina+easylist.txt: 11454) -/(.*/)?ad2010\. -ad2010.*. -# /ad2/res/* (easylistchina+easylist.txt: 11453) -/(.*/)?ad2/res/.* -# /ad2/index. (easylistchina+easylist.txt: 11452) -/(.*/)?ad2/index\. -# /ad2-728- (easylistchina+easylist.txt: 11450) -/(.*/)?ad2-728- -ad2-728-*. -# /ad1x1home. (easylistchina+easylist.txt: 11449) -/(.*/)?ad1x1home\. -ad1x1home.*. -# /ad1r. (easylistchina+easylist.txt: 11448) -/(.*/)?ad1r\. -ad1r.*. -# /ad1place. (easylistchina+easylist.txt: 11447) -/(.*/)?ad1place\. -ad1place.*. -# /ad1_ (easylistchina+easylist.txt: 11446) -/(.*/)?ad1_ -# /ad160x600. (easylistchina+easylist.txt: 11445) -/(.*/)?ad160x600\. -ad160x600.*. -# /ad160k. (easylistchina+easylist.txt: 11444) -/(.*/)?ad160k\. -ad160k.*. -# /ad160. (easylistchina+easylist.txt: 11443) -/(.*/)?ad160\. -ad160.*. -# /ad16. (easylistchina+easylist.txt: 11442) -/(.*/)?ad16\. -ad16.*. -# /ad15. (easylistchina+easylist.txt: 11441) -/(.*/)?ad15\. -ad15.*. -# /ad136/* (easylistchina+easylist.txt: 11440) -/(.*/)?ad136/.* -# /ad134m/* (easylistchina+easylist.txt: 11439) -/(.*/)?ad134m/.* -# /ad132m/* (easylistchina+easylist.txt: 11438) -/(.*/)?ad132m/.* -# /ad132m. (easylistchina+easylist.txt: 11437) -/(.*/)?ad132m\. -ad132m.*. -# /ad125x125. (easylistchina+easylist.txt: 11436) -/(.*/)?ad125x125\. -ad125x125.*. -# /ad125b. (easylistchina+easylist.txt: 11435) -/(.*/)?ad125b\. -ad125b.*. -# /ad125. (easylistchina+easylist.txt: 11434) -/(.*/)?ad125\. -ad125.*. -# /ad120x60. (easylistchina+easylist.txt: 11433) -/(.*/)?ad120x60\. -ad120x60.*. -# /ad12. (easylistchina+easylist.txt: 11432) -/(.*/)?ad12\. -ad12.*. -# /ad1/index. (easylistchina+easylist.txt: 11431) -/(.*/)?ad1/index\. -# /ad1-728- (easylistchina+easylist.txt: 11429) -/(.*/)?ad1-728- -ad1-728-*. -# /ad02/background_ (easylistchina+easylist.txt: 11428) -/(.*/)?ad02/background_ -# /ad01. (easylistchina+easylist.txt: 11427) -/(.*/)?ad01\. -ad01.*. -# /ad000/* (easylistchina+easylist.txt: 11426) -/(.*/)?ad000/.* -# /ad/view/* (easylistchina+easylist.txt: 11424) -/(.*/)?ad/view/.* -# /ad/top_ (easylistchina+easylist.txt: 11423) -/(.*/)?ad/top_ -# /ad/top3. (easylistchina+easylist.txt: 11422) -/(.*/)?ad/top3\. -# /ad/top2. (easylistchina+easylist.txt: 11421) -/(.*/)?ad/top2\. -# /ad/top1. (easylistchina+easylist.txt: 11420) -/(.*/)?ad/top1\. -# /ad/top/* (easylistchina+easylist.txt: 11419) -/(.*/)?ad/top/.* -# /ad/top. (easylistchina+easylist.txt: 11418) -/(.*/)?ad/top\. -# /ad/timing. (easylistchina+easylist.txt: 11417) -/(.*/)?ad/timing\. -# /ad/textlinks/* (easylistchina+easylist.txt: 11416) -/(.*/)?ad/textlinks/.* -# /ad/takeover/* (easylistchina+easylist.txt: 11415) -/(.*/)?ad/takeover/.* -# /ad/swf/* (easylistchina+easylist.txt: 11414) -/(.*/)?ad/swf/.* -# /ad/superbanner. (easylistchina+easylist.txt: 11413) -/(.*/)?ad/superbanner\. -# /ad/status? (easylistchina+easylist.txt: 11412) -/(.*/)?ad/status\? -# /ad/sponsors/* (easylistchina+easylist.txt: 11411) -/(.*/)?ad/sponsors/.* -# /ad/sponsored- (easylistchina+easylist.txt: 11410) -/(.*/)?ad/sponsored- -# /ad/spacer. (easylistchina+easylist.txt: 11409) -/(.*/)?ad/spacer\. -# /ad/small- (easylistchina+easylist.txt: 11408) -/(.*/)?ad/small- -# /ad/skyscrapper. (easylistchina+easylist.txt: 11407) -/(.*/)?ad/skyscrapper\. -# /ad/skyscraper. (easylistchina+easylist.txt: 11406) -/(.*/)?ad/skyscraper\. -# /ad/skin_ (easylistchina+easylist.txt: 11405) -/(.*/)?ad/skin_ -# /ad/side_ (easylistchina+easylist.txt: 11404) -/(.*/)?ad/side_ -# /ad/show. (easylistchina+easylist.txt: 11403) -/(.*/)?ad/show\. -# /ad/serve. (easylistchina+easylist.txt: 11402) -/(.*/)?ad/serve\. -# /ad/select? (easylistchina+easylist.txt: 11401) -/(.*/)?ad/select\? -# /ad/script/* (easylistchina+easylist.txt: 11400) -/(.*/)?ad/script/.* -# /ad/rotate? (easylistchina+easylist.txt: 11399) -/(.*/)?ad/rotate\? -# /ad/right2. (easylistchina+easylist.txt: 11398) -/(.*/)?ad/right2\. -# /ad/request? (easylistchina+easylist.txt: 11397) -/(.*/)?ad/request\? -# /ad/reklamy. (easylistchina+easylist.txt: 11396) -/(.*/)?ad/reklamy\. -# /ad/rectangle. (easylistchina+easylist.txt: 11395) -/(.*/)?ad/rectangle\. -# /ad/realclick/* (easylistchina+easylist.txt: 11394) -/(.*/)?ad/realclick/.* -# /ad/realclick. (easylistchina+easylist.txt: 11393) -/(.*/)?ad/realclick\. -# /ad/random_ (easylistchina+easylist.txt: 11392) -/(.*/)?ad/random_ -# /ad/quigo/* (easylistchina+easylist.txt: 11391) -/(.*/)?ad/quigo/.* -# /ad/preview/* (easylistchina+easylist.txt: 11390) -/(.*/)?ad/preview/.* -# /ad/popup. (easylistchina+easylist.txt: 11389) -/(.*/)?ad/popup\. -# /ad/pong? (easylistchina+easylist.txt: 11388) -/(.*/)?ad/pong\? -# /ad/player| (easylistchina+easylist.txt: 11387) -/(.*/)?ad/player$ -# /ad/omakasa. (easylistchina+easylist.txt: 11386) -/(.*/)?ad/omakasa\. -# /ad/network/* (easylistchina+easylist.txt: 11385) -/(.*/)?ad/network/.* -# /ad/mpu/* (easylistchina+easylist.txt: 11384) -/(.*/)?ad/mpu/.* -# /ad/middle. (easylistchina+easylist.txt: 11383) -/(.*/)?ad/middle\. -# /ad/logo/* (easylistchina+easylist.txt: 11382) -/(.*/)?ad/logo/.* -# /ad/login- (easylistchina+easylist.txt: 11381) -/(.*/)?ad/login- -# /ad/log/* (easylistchina+easylist.txt: 11380) -/(.*/)?ad/log/.* -# /ad/loading. (easylistchina+easylist.txt: 11379) -/(.*/)?ad/loading\. -# /ad/load_ (easylistchina+easylist.txt: 11378) -/(.*/)?ad/load_ -# /ad/load. (easylistchina+easylist.txt: 11377) -/(.*/)?ad/load\. -# /ad/live- (easylistchina+easylist.txt: 11376) -/(.*/)?ad/live- -# /ad/listing- (easylistchina+easylist.txt: 11375) -/(.*/)?ad/listing- -# /ad/leaderboard. (easylistchina+easylist.txt: 11374) -/(.*/)?ad/leaderboard\. -# /ad/jsonp/* (easylistchina+easylist.txt: 11373) -/(.*/)?ad/jsonp/.* -# /ad/inventory/* (easylistchina+easylist.txt: 11372) -/(.*/)?ad/inventory/.* -# /ad/integral- (easylistchina+easylist.txt: 11371) -/(.*/)?ad/integral- -# /ad/inline? (easylistchina+easylist.txt: 11370) -/(.*/)?ad/inline\? -# /ad/index_ (easylistchina+easylist.txt: 11369) -/(.*/)?ad/index_ -# /ad/index/* (easylistchina+easylist.txt: 11368) -/(.*/)?ad/index/.* -# /ad/index. (easylistchina+easylist.txt: 11367) -/(.*/)?ad/index\. -# /ad/img/* (easylistchina+easylist.txt: 11366) -/(.*/)?ad/img/.* -# /ad/image/* (easylistchina+easylist.txt: 11365) -/(.*/)?ad/image/.* -# /ad/iframe/* (easylistchina+easylist.txt: 11364) -/(.*/)?ad/iframe/.* -# /ad/iframe. (easylistchina+easylist.txt: 11363) -/(.*/)?ad/iframe\. -# /ad/html/* (easylistchina+easylist.txt: 11362) -/(.*/)?ad/html/.* -# /ad/google_ (easylistchina+easylist.txt: 11361) -/(.*/)?ad/google_ -# /ad/google/* (easylistchina+easylist.txt: 11360) -/(.*/)?ad/google/.* -# /ad/getbanandfile? (easylistchina+easylist.txt: 11359) -/(.*/)?ad/getbanandfile\? -# /ad/getban? (easylistchina+easylist.txt: 11358) -/(.*/)?ad/getban\? -# /ad/generate? (easylistchina+easylist.txt: 11357) -/(.*/)?ad/generate\? -# /ad/framed? (easylistchina+easylist.txt: 11356) -/(.*/)?ad/framed\? -# /ad/frame1. (easylistchina+easylist.txt: 11355) -/(.*/)?ad/frame1\. -# /AD/Footer_ (easylistchina+easylist.txt: 11354) -/(.*/)?AD/Footer_ -# /ad/files/* (easylistchina+easylist.txt: 11353) -/(.*/)?ad/files/.* -# /ad/extra_ (easylistchina+easylist.txt: 11352) -/(.*/)?ad/extra_ -# /ad/extra/* (easylistchina+easylist.txt: 11351) -/(.*/)?ad/extra/.* -# /ad/empty. (easylistchina+easylist.txt: 11350) -/(.*/)?ad/empty\. -# /ad/directcall/* (easylistchina+easylist.txt: 11349) -/(.*/)?ad/directcall/.* -# /ad/css/* (easylistchina+easylist.txt: 11348) -/(.*/)?ad/css/.* -# /ad/cpmstar/* (easylistchina+easylist.txt: 11347) -/(.*/)?ad/cpmstar/.* -# /ad/content/* (easylistchina+easylist.txt: 11346) -/(.*/)?ad/content/.* -# /ad/commons/* (easylistchina+easylist.txt: 11345) -/(.*/)?ad/commons/.* -# /ad/common_ (easylistchina+easylist.txt: 11344) -/(.*/)?ad/common_ -# /ad/common/* (easylistchina+easylist.txt: 11343) -/(.*/)?ad/common/.* -# /ad/card- (easylistchina+easylist.txt: 11342) -/(.*/)?ad/card- -# /ad/bottom. (easylistchina+easylist.txt: 11341) -/(.*/)?ad/bottom\. -# /ad/blog_ (easylistchina+easylist.txt: 11340) -/(.*/)?ad/blog_ -# /ad/blank. (easylistchina+easylist.txt: 11339) -/(.*/)?ad/blank\. -# /ad/bin/* (easylistchina+easylist.txt: 11338) -/(.*/)?ad/bin/.* -# /ad/behavpixel. (easylistchina+easylist.txt: 11337) -/(.*/)?ad/behavpixel\. -# /ad/banners/* (easylistchina+easylist.txt: 11336) -/(.*/)?ad/banners/.* -# /ad/bannerimg/* (easylistchina+easylist.txt: 11335) -/(.*/)?ad/bannerimg/.* -# /ad/bannerdetails/* (easylistchina+easylist.txt: 11334) -/(.*/)?ad/bannerdetails/.* -# /ad/banner_ (easylistchina+easylist.txt: 11333) -/(.*/)?ad/banner_ -# /ad/banner? (easylistchina+easylist.txt: 11332) -/(.*/)?ad/banner\? -# /ad/banner/* (easylistchina+easylist.txt: 11331) -/(.*/)?ad/banner/.* -# /ad/banner. (easylistchina+easylist.txt: 11330) -/(.*/)?ad/banner\. -# /ad/audsci. (easylistchina+easylist.txt: 11329) -/(.*/)?ad/audsci\. -# /ad/article_ (easylistchina+easylist.txt: 11328) -/(.*/)?ad/article_ -# /ad/afc_ (easylistchina+easylist.txt: 11327) -/(.*/)?ad/afc_ -# /ad/a.aspx? (easylistchina+easylist.txt: 11326) -/(.*/)?ad/a\.aspx\? -# /ad/?site= (easylistchina+easylist.txt: 11325) -/(.*/)?ad/\?site= -# /ad/?section= (easylistchina+easylist.txt: 11324) -/(.*/)?ad/\?section= -# /ad/?host= (easylistchina+easylist.txt: 11323) -/(.*/)?ad/\?host= -# /ad/960x60. (easylistchina+easylist.txt: 11322) -/(.*/)?ad/960x60\. -# /ad/940- (easylistchina+easylist.txt: 11321) -/(.*/)?ad/940- -# /ad/938- (easylistchina+easylist.txt: 11320) -/(.*/)?ad/938- -# /ad/728- (easylistchina+easylist.txt: 11319) -/(.*/)?ad/728- -# /ad/600- (easylistchina+easylist.txt: 11318) -/(.*/)?ad/600- -# /ad/130- (easylistchina+easylist.txt: 11317) -/(.*/)?ad/130- -# /ad.ytn. (easylistchina+easylist.txt: 11316) -/(.*/)?ad\.ytn\. -ad.ytn.*. -# /ad.view? (easylistchina+easylist.txt: 11315) -/(.*/)?ad\.view\? -# /ad.valary? (easylistchina+easylist.txt: 11314) -/(.*/)?ad\.valary\? -# /ad.serve. (easylistchina+easylist.txt: 11313) -/(.*/)?ad\.serve\. -ad.serve.*. -# /ad.sense/* (easylistchina+easylist.txt: 11312) -/(.*/)?ad\.sense/.* -ad.sense/.* -# /ad.redirect. (easylistchina+easylist.txt: 11311) -/(.*/)?ad\.redirect\. -ad.redirect.*. -# /ad.popup? (easylistchina+easylist.txt: 11310) -/(.*/)?ad\.popup\? -# /ad.php| (easylistchina+easylist.txt: 11309) -/(.*/)?ad\.php$ -ad.php -# /ad.php? (easylistchina+easylist.txt: 11308) -/(.*/)?ad\.php\? -# /ad.php3? (easylistchina+easylist.txt: 11307) -/(.*/)?ad\.php3\? -# /ad.min. (easylistchina+easylist.txt: 11306) -/(.*/)?ad\.min\. -ad.min.*. -# /ad.mason? (easylistchina+easylist.txt: 11305) -/(.*/)?ad\.mason\? -# /ad.jsp? (easylistchina+easylist.txt: 11304) -/(.*/)?ad\.jsp\? -# /ad.info. (easylistchina+easylist.txt: 11303) -/(.*/)?ad\.info\. -ad.info.*. -# /ad.html? (easylistchina+easylist.txt: 11302) -/(.*/)?ad\.html\? -# /ad.gif| (easylistchina+easylist.txt: 11301) -/(.*/)?ad\.gif$ -ad.gif -# /ad.epl? (easylistchina+easylist.txt: 11300) -/(.*/)?ad\.epl\? -# /ad.css? (easylistchina+easylist.txt: 11299) -/(.*/)?ad\.css\? -# /ad.code? (easylistchina+easylist.txt: 11298) -/(.*/)?ad\.code\? -# /ad.cgi? (easylistchina+easylist.txt: 11297) -/(.*/)?ad\.cgi\? -# /ad.aspx? (easylistchina+easylist.txt: 11296) -/(.*/)?ad\.aspx\? -# /ad.asp? (easylistchina+easylist.txt: 11295) -/(.*/)?ad\.asp\? -# /ad.ashx? (easylistchina+easylist.txt: 11294) -/(.*/)?ad\.ashx\? -# /ad.ams. (easylistchina+easylist.txt: 11293) -/(.*/)?ad\.ams\. -ad.ams.*. -# /ad-view- (easylistchina+easylist.txt: 11292) -/(.*/)?ad-view- -ad-view-*. -# /ad-verticalbar. (easylistchina+easylist.txt: 11291) -/(.*/)?ad-verticalbar\. -ad-verticalbar.*. -# /ad-vertical- (easylistchina+easylist.txt: 11290) -/(.*/)?ad-vertical- -ad-vertical-*. -# /ad-vert. (easylistchina+easylist.txt: 11289) -/(.*/)?ad-vert\. -ad-vert.*. -# /ad-utilities. (easylistchina+easylist.txt: 11288) -/(.*/)?ad-utilities\. -ad-utilities.*. -# /ad-updated- (easylistchina+easylist.txt: 11287) -/(.*/)?ad-updated- -ad-updated-*. -# /ad-unit- (easylistchina+easylist.txt: 11286) -/(.*/)?ad-unit- -ad-unit-*. -# /ad-topbanner- (easylistchina+easylist.txt: 11285) -/(.*/)?ad-topbanner- -ad-topbanner-*. -# /ad-top/* (easylistchina+easylist.txt: 11284) -/(.*/)?ad-top/.* -# /ad-top. (easylistchina+easylist.txt: 11283) -/(.*/)?ad-top\. -ad-top.*. -# /ad-top- (easylistchina+easylist.txt: 11282) -/(.*/)?ad-top- -ad-top-*. -# /ad-title. (easylistchina+easylist.txt: 11281) -/(.*/)?ad-title\. -ad-title.*. -# /ad-text. (easylistchina+easylist.txt: 11280) -/(.*/)?ad-text\. -ad-text.*. -# /ad-template/* (easylistchina+easylist.txt: 11279) -/(.*/)?ad-template/.* -# /ad-template. (easylistchina+easylist.txt: 11278) -/(.*/)?ad-template\. -ad-template.*. -# /ad-tandem. (easylistchina+easylist.txt: 11277) -/(.*/)?ad-tandem\. -ad-tandem.*. -# /ad-tag2. (easylistchina+easylist.txt: 11276) -/(.*/)?ad-tag2\. -ad-tag2.*. -# /ad-styles. (easylistchina+easylist.txt: 11275) -/(.*/)?ad-styles\. -ad-styles.*. -# /ad-studio/* (easylistchina+easylist.txt: 11274) -/(.*/)?ad-studio/.* -# /ad-strip. (easylistchina+easylist.txt: 11273) -/(.*/)?ad-strip\. -ad-strip.*. -# /ad-sprite. (easylistchina+easylist.txt: 11272) -/(.*/)?ad-sprite\. -ad-sprite.*. -# /ad-specs. (easylistchina+easylist.txt: 11271) -/(.*/)?ad-specs\. -ad-specs.*. -# /ad-source/* (easylistchina+easylist.txt: 11270) -/(.*/)?ad-source/.* -# /ad-skyscraper. (easylistchina+easylist.txt: 11269) -/(.*/)?ad-skyscraper\. -ad-skyscraper.*. -# /ad-sidebar- (easylistchina+easylist.txt: 11268) -/(.*/)?ad-sidebar- -ad-sidebar-*. -# /ad-side/* (easylistchina+easylist.txt: 11267) -/(.*/)?ad-side/.* -# /ad-server/* (easylistchina+easylist.txt: 11266) -/(.*/)?ad-server/.* -# /ad-server. (easylistchina+easylist.txt: 11265) -/(.*/)?ad-server\. -ad-server.*. -# /ad-serve? (easylistchina+easylist.txt: 11264) -/(.*/)?ad-serve\? -# /ad-rotator- (easylistchina+easylist.txt: 11263) -/(.*/)?ad-rotator- -ad-rotator-*. -# /ad-ros- (easylistchina+easylist.txt: 11262) -/(.*/)?ad-ros- -ad-ros-*. -# /ad-right2. (easylistchina+easylist.txt: 11261) -/(.*/)?ad-right2\. -ad-right2.*. -# /ad-refresh. (easylistchina+easylist.txt: 11260) -/(.*/)?ad-refresh\. -ad-refresh.*. -# /ad-refresh- (easylistchina+easylist.txt: 11259) -/(.*/)?ad-refresh- -ad-refresh-*. -# /ad-record. (easylistchina+easylist.txt: 11258) -/(.*/)?ad-record\. -ad-record.*. -# /ad-pub. (easylistchina+easylist.txt: 11257) -/(.*/)?ad-pub\. -ad-pub.*. -# /ad-position- (easylistchina+easylist.txt: 11256) -/(.*/)?ad-position- -ad-position-*. -# /ad-point/* (easylistchina+easylist.txt: 11255) -/(.*/)?ad-point/.* -# /ad-plate/* (easylistchina+easylist.txt: 11254) -/(.*/)?ad-plate/.* -# /ad-page/* (easylistchina+easylist.txt: 11253) -/(.*/)?ad-page/.* -# /ad-openx. (easylistchina+easylist.txt: 11252) -/(.*/)?ad-openx\. -ad-openx.*. -# /ad-offer1. (easylistchina+easylist.txt: 11251) -/(.*/)?ad-offer1\. -ad-offer1.*. -# /ad-nytimes. (easylistchina+easylist.txt: 11250) -/(.*/)?ad-nytimes\. -ad-nytimes.*. -# /ad-modules/* (easylistchina+easylist.txt: 11249) -/(.*/)?ad-modules/.* -# /ad-minister/* (easylistchina+easylist.txt: 11248) -/(.*/)?ad-minister/.* -# /ad-minister. (easylistchina+easylist.txt: 11247) -/(.*/)?ad-minister\. -ad-minister.*. -# /ad-minister- (easylistchina+easylist.txt: 11246) -/(.*/)?ad-minister- -ad-minister-*. -# /ad-methods. (easylistchina+easylist.txt: 11245) -/(.*/)?ad-methods\. -ad-methods.*. -# /ad-maven- (easylistchina+easylist.txt: 11244) -/(.*/)?ad-maven- -ad-maven-*. -# /ad-managment/* (easylistchina+easylist.txt: 11243) -/(.*/)?ad-managment/.* -# /ad-manager/* (easylistchina+easylist.txt: 11242) -/(.*/)?ad-manager/.* -# /ad-logger/* (easylistchina+easylist.txt: 11241) -/(.*/)?ad-logger/.* -# /ad-loading. (easylistchina+easylist.txt: 11239) -/(.*/)?ad-loading\. -ad-loading.*. -# /ad-loader. (easylistchina+easylist.txt: 11238) -/(.*/)?ad-loader\. -ad-loader.*. -# /ad-loader- (easylistchina+easylist.txt: 11237) -/(.*/)?ad-loader- -ad-loader-*. -# /ad-link/* (easylistchina+easylist.txt: 11236) -/(.*/)?ad-link/.* -# /ad-lil. (easylistchina+easylist.txt: 11235) -/(.*/)?ad-lil\. -ad-lil.*. -# /ad-letter. (easylistchina+easylist.txt: 11234) -/(.*/)?ad-letter\. -ad-letter.*. -# /ad-left. (easylistchina+easylist.txt: 11233) -/(.*/)?ad-left\. -ad-left.*. -# /ad-leaderboard. (easylistchina+easylist.txt: 11232) -/(.*/)?ad-leaderboard\. -ad-leaderboard.*. -# /ad-layout/*$~script,~stylesheet (easylistchina+easylist.txt: 11231) -/(.*/)?ad-layout/.* -# /ad-layering- (easylistchina+easylist.txt: 11230) -/(.*/)?ad-layering- -ad-layering-*. -# /ad-label. (easylistchina+easylist.txt: 11229) -/(.*/)?ad-label\. -ad-label.*. -# /ad-label- (easylistchina+easylist.txt: 11228) -/(.*/)?ad-label- -ad-label-*. -# /ad-issue. (easylistchina+easylist.txt: 11227) -/(.*/)?ad-issue\. -ad-issue.*. -# /ad-int- (easylistchina+easylist.txt: 11226) -/(.*/)?ad-int- -ad-int-*. -# /ad-injection/* (easylistchina+easylist.txt: 11225) -/(.*/)?ad-injection/.* -# /ad-inject/* (easylistchina+easylist.txt: 11224) -/(.*/)?ad-inject/.* -# /ad-indicator- (easylistchina+easylist.txt: 11223) -/(.*/)?ad-indicator- -ad-indicator-*. -# /ad-ina. (easylistchina+easylist.txt: 11222) -/(.*/)?ad-ina\. -ad-ina.*. -# /ad-images/* (easylistchina+easylist.txt: 11221) -/(.*/)?ad-images/.* -# /ad-image. (easylistchina+easylist.txt: 11220) -/(.*/)?ad-image\. -ad-image.*. -# /ad-iframe? (easylistchina+easylist.txt: 11219) -/(.*/)?ad-iframe\? -# /ad-iframe. (easylistchina+easylist.txt: 11218) -/(.*/)?ad-iframe\. -ad-iframe.*. -# /ad-iframe- (easylistchina+easylist.txt: 11217) -/(.*/)?ad-iframe- -ad-iframe-*. -# /ad-ifr. (easylistchina+easylist.txt: 11216) -/(.*/)?ad-ifr\. -ad-ifr.*. -# /ad-identifier. (easylistchina+easylist.txt: 11215) -/(.*/)?ad-identifier\. -ad-identifier.*. -# /ad-hug. (easylistchina+easylist.txt: 11214) -/(.*/)?ad-hug\. -ad-hug.*. -# /ad-home- (easylistchina+easylist.txt: 11213) -/(.*/)?ad-home- -ad-home-*. -# /ad-header. (easylistchina+easylist.txt: 11212) -/(.*/)?ad-header\. -ad-header.*. -# /ad-hcm. (easylistchina+easylist.txt: 11211) -/(.*/)?ad-hcm\. -ad-hcm.*. -# /ad-half_ (easylistchina+easylist.txt: 11210) -/(.*/)?ad-half_ -# /ad-gallery.$~stylesheet (easylistchina+easylist.txt: 11209) -/(.*/)?ad-gallery\. -ad-gallery.*. -# /ad-frame/* (easylistchina+easylist.txt: 11208) -/(.*/)?ad-frame/.* -# /ad-frame. (easylistchina+easylist.txt: 11207) -/(.*/)?ad-frame\. -ad-frame.*. -# /ad-format. (easylistchina+easylist.txt: 11206) -/(.*/)?ad-format\. -ad-format.*. -# /ad-flashgame. (easylistchina+easylist.txt: 11205) -/(.*/)?ad-flashgame\. -ad-flashgame.*. -# /ad-fix- (easylistchina+easylist.txt: 11204) -/(.*/)?ad-fix- -ad-fix-*. -# /ad-feedback. (easylistchina+easylist.txt: 11203) -/(.*/)?ad-feedback\. -ad-feedback.*. -# /ad-feature- (easylistchina+easylist.txt: 11202) -/(.*/)?ad-feature- -ad-feature-*. -# /ad-exchange. (easylistchina+easylist.txt: 11201) -/(.*/)?ad-exchange\. -ad-exchange.*. -# /ad-engine. (easylistchina+easylist.txt: 11200) -/(.*/)?ad-engine\. -ad-engine.*. -# /ad-emea. (easylistchina+easylist.txt: 11199) -/(.*/)?ad-emea\. -ad-emea.*. -# /ad-creatives/* (easylistchina+easylist.txt: 11198) -/(.*/)?ad-creatives/.* -# /ad-creatives- (easylistchina+easylist.txt: 11197) -/(.*/)?ad-creatives- -ad-creatives-*. -# /ad-choices. (easylistchina+easylist.txt: 11196) -/(.*/)?ad-choices\. -ad-choices.*. -# /ad-choices- (easylistchina+easylist.txt: 11195) -/(.*/)?ad-choices- -ad-choices-*. -# /ad-channel- (easylistchina+easylist.txt: 11194) -/(.*/)?ad-channel- -ad-channel-*. -# /ad-cdn. (easylistchina+easylist.txt: 11193) -/(.*/)?ad-cdn\. -ad-cdn.*. -# /ad-callback. (easylistchina+easylist.txt: 11192) -/(.*/)?ad-callback\. -ad-callback.*. -# /ad-button1. (easylistchina+easylist.txt: 11191) -/(.*/)?ad-button1\. -ad-button1.*. -# /ad-builder. (easylistchina+easylist.txt: 11190) -/(.*/)?ad-builder\. -ad-builder.*. -# /ad-boxes- (easylistchina+easylist.txt: 11189) -/(.*/)?ad-boxes- -ad-boxes-*. -# /ad-box- (easylistchina+easylist.txt: 11188) -/(.*/)?ad-box- -ad-box-*. -# /ad-bottom. (easylistchina+easylist.txt: 11187) -/(.*/)?ad-bottom\. -ad-bottom.*. -# /ad-bin/* (easylistchina+easylist.txt: 11186) -/(.*/)?ad-bin/.* -# /ad-bckg. (easylistchina+easylist.txt: 11185) -/(.*/)?ad-bckg\. -ad-bckg.*. -# /ad-banner. (easylistchina+easylist.txt: 11184) -/(.*/)?ad-banner\. -ad-banner.*. -# /ad-banner- (easylistchina+easylist.txt: 11183) -/(.*/)?ad-banner- -ad-banner-*. -# /ad-background. (easylistchina+easylist.txt: 11182) -/(.*/)?ad-background\. -ad-background.*. -# /ad-audit. (easylistchina+easylist.txt: 11181) -/(.*/)?ad-audit\. -ad-audit.*. -# /ad-amz. (easylistchina+easylist.txt: 11180) -/(.*/)?ad-amz\. -ad-amz.*. -# /ad-600- (easylistchina+easylist.txt: 11179) -/(.*/)?ad-600- -ad-600-*. -# /ad-468- (easylistchina+easylist.txt: 11178) -/(.*/)?ad-468- -ad-468-*. -# /ad-410x300. (easylistchina+easylist.txt: 11177) -/(.*/)?ad-410x300\. -ad-410x300.*. -# /ad-350x350- (easylistchina+easylist.txt: 11176) -/(.*/)?ad-350x350- -ad-350x350-*. -# /ad-300x254. (easylistchina+easylist.txt: 11175) -/(.*/)?ad-300x254\. -ad-300x254.*. -# /ad-300x250. (easylistchina+easylist.txt: 11174) -/(.*/)?ad-300x250\. -ad-300x250.*. -# /ad-300topleft. (easylistchina+easylist.txt: 11173) -/(.*/)?ad-300topleft\. -ad-300topleft.*. -# /ad-125. (easylistchina+easylist.txt: 11172) -/(.*/)?ad-125\. -ad-125.*. -# /ad%20images/* (easylistchina+easylist.txt: 11171) -/(.*/)?ad%20images/.* -# /ad%20banners/* (easylistchina+easylist.txt: 11170) -/(.*/)?ad%20banners/.* -# /active-ad- (easylistchina+easylist.txt: 11169) -/(.*/)?active-ad- -active-ad-*. -# /acc_random= (easylistchina+easylist.txt: 11168) -/(.*/)?acc_random= -# /AbvProductAds/* (easylistchina+easylist.txt: 11167) -/(.*/)?AbvProductAds/.* -# /abvAds_ (easylistchina+easylist.txt: 11166) -/(.*/)?abvAds_ -# /absolutebm.aspx? (easylistchina+easylist.txt: 11165) -/(.*/)?absolutebm\.aspx\? -# /about-these-ads. (easylistchina+easylist.txt: 11164) -/(.*/)?about-these-ads\. -about-these-ads.*. -# /abnl/?narodads^ (easylistchina+easylist.txt: 11163) -/(.*/)?abnl/\?narodads[^\w%.-] -# /abnl/?begun^ (easylistchina+easylist.txt: 11162) -/(.*/)?abnl/\?begun[^\w%.-] -# /abmw/* (easylistchina+easylist.txt: 11161) -/(.*/)?abmw/.* -# /abmw.asp (easylistchina+easylist.txt: 11160) -/(.*/)?abmw\.asp -abmw.asp*. -# /abm.aspx (easylistchina+easylist.txt: 11159) -/(.*/)?abm\.aspx -abm.aspx*. -# /abm.asp? (easylistchina+easylist.txt: 11158) -/(.*/)?abm\.asp\? -# /ABAdsv1. (easylistchina+easylist.txt: 11157) -/(.*/)?ABAdsv1\. -ABAdsv1.*. -# /aamsz= (easylistchina+easylist.txt: 11156) -/(.*/)?aamsz= -# /a3/?sub=$third-party (easylistchina+easylist.txt: 11155) -/(.*/)?a3/\?sub= -# /a2/ads/* (easylistchina+easylist.txt: 11154) -/(.*/)?a2/ads/.* -# /a2/?sub=$third-party (easylistchina+easylist.txt: 11153) -/(.*/)?a2/\?sub= -# /a1/*?sub=$third-party (easylistchina+easylist.txt: 11152) -/(.*/)?a1/.*\?sub= -# /a/display.php? (easylistchina+easylist.txt: 11151) -/(.*/)?a/display\.php\? -# /a/ads/* (easylistchina+easylist.txt: 11150) -/(.*/)?a/ads/.* -# /_svc/ad/* (easylistchina+easylist.txt: 11149) -/(.*/)?_svc/ad/.* -# /_scripts/_oas/* (easylistchina+easylist.txt: 11148) -/(.*/)?_scripts/_oas/.* -# /_js2/oas. (easylistchina+easylist.txt: 11147) -/(.*/)?_js2/oas\. -# /_img/ad_ (easylistchina+easylist.txt: 11146) -/(.*/)?_img/ad_ -# /_global/ads/* (easylistchina+easylist.txt: 11145) -/(.*/)?_global/ads/.* -# /_affiliatebanners/* (easylistchina+easylist.txt: 11144) -/(.*/)?_affiliatebanners/.* -# /_ads/* (easylistchina+easylist.txt: 11143) -/(.*/)?_ads/.* -# /_30/ads/* (easylistchina+easylist.txt: 11142) -/(.*/)?_30/ads/.* -# /_/ads/* (easylistchina+easylist.txt: 11141) -/(.*/)?_/ads/.* -# /?view=ad (easylistchina+easylist.txt: 11140) -/(.*/)?\?view=ad -# /?advideo/* (easylistchina+easylist.txt: 11139) -/(.*/)?\?advideo/.* -# /?adv_partner (easylistchina+easylist.txt: 11138) -/(.*/)?\?adv_partner -# /?addyn|* (easylistchina+easylist.txt: 11137) -/(.*/)?\?addyn\|.* -# /728x90banner. (easylistchina+easylist.txt: 11136) -/(.*/)?728x90banner\. -728x90banner.*. -# /728x80topad. (easylistchina+easylist.txt: 11135) -/(.*/)?728x80topad\. -728x80topad.*. -# /728_ad_ (easylistchina+easylist.txt: 11134) -/(.*/)?728_ad_ -# /468xads. (easylistchina+easylist.txt: 11133) -/(.*/)?468xads\. -468xads.*. -# /468ad. (easylistchina+easylist.txt: 11132) -/(.*/)?468ad\. -468ad.*. -# /468-banner. (easylistchina+easylist.txt: 11131) -/(.*/)?468-banner\. -468-banner.*. -# /3pt_ads. (easylistchina+easylist.txt: 11130) -/(.*/)?3pt_ads\. -# /336x280ads. (easylistchina+easylist.txt: 11129) -/(.*/)?336x280ads\. -336x280ads.*. -# /300x500_ad (easylistchina+easylist.txt: 11128) -/(.*/)?300x500_ad -# /300x250advert. (easylistchina+easylist.txt: 11127) -/(.*/)?300x250advert\. -300x250advert.*. -# /300x250ads. (easylistchina+easylist.txt: 11126) -/(.*/)?300x250ads\. -300x250ads.*. -# /300x250adbg. (easylistchina+easylist.txt: 11125) -/(.*/)?300x250adbg\. -300x250adbg.*. -# /300x250ad. (easylistchina+easylist.txt: 11124) -/(.*/)?300x250ad\. -300x250ad.*. -# /300by250ad. (easylistchina+easylist.txt: 11123) -/(.*/)?300by250ad\. -300by250ad.*. -# /300ad. (easylistchina+easylist.txt: 11122) -/(.*/)?300ad\. -300ad.*. -# /300_ad_ (easylistchina+easylist.txt: 11121) -/(.*/)?300_ad_ -# /300250_ad- (easylistchina+easylist.txt: 11120) -/(.*/)?300250_ad- -# /300-ad- (easylistchina+easylist.txt: 11119) -/(.*/)?300-ad- -300-ad-*. -# /250x250_advert_ (easylistchina+easylist.txt: 11118) -/(.*/)?250x250_advert_ -# /24adscript. (easylistchina+easylist.txt: 11117) -/(.*/)?24adscript\. -24adscript.*. -# /24-7ads. (easylistchina+easylist.txt: 11116) -/(.*/)?24-7ads\. -24-7ads.*. -# /2015/ads/* (easylistchina+easylist.txt: 11115) -/(.*/)?2015/ads/.* -# /2014/ads/* (easylistchina+easylist.txt: 11114) -/(.*/)?2014/ads/.* -# /2013/ads/* (easylistchina+easylist.txt: 11113) -/(.*/)?2013/ads/.* -# /2011/ads/* (easylistchina+easylist.txt: 11112) -/(.*/)?2011/ads/.* -# /2010main/ad/* (easylistchina+easylist.txt: 11111) -/(.*/)?2010main/ad/.* -# /2010/ads/* (easylistchina+easylist.txt: 11110) -/(.*/)?2010/ads/.* -# /1afr.php? (easylistchina+easylist.txt: 11109) -/(.*/)?1afr\.php\? -# /1912/ads/* (easylistchina+easylist.txt: 11108) -/(.*/)?1912/ads/.* -# /17/ads/* (easylistchina+easylist.txt: 11107) -/(.*/)?17/ads/.* -# /160_ad_ (easylistchina+easylist.txt: 11106) -/(.*/)?160_ad_ -# /126_ad. (easylistchina+easylist.txt: 11105) -/(.*/)?126_ad\. -# /125x125ad. (easylistchina+easylist.txt: 11104) -/(.*/)?125x125ad\. -125x125ad.*. -# /125x125_banner. (easylistchina+easylist.txt: 11103) -/(.*/)?125x125_banner\. -# /125x125_ADS/* (easylistchina+easylist.txt: 11102) -/(.*/)?125x125_ADS/.* -# /120ads/* (easylistchina+easylist.txt: 11101) -/(.*/)?120ads/.* -# /120ad. (easylistchina+easylist.txt: 11100) -/(.*/)?120ad\. -120ad.*. -# /1/ads/* (easylistchina+easylist.txt: 11099) -/(.*/)?1/ads/.* -# /04/ads- (easylistchina+easylist.txt: 11098) -/(.*/)?04/ads- -# /0/ads/* (easylistchina+easylist.txt: 11097) -/(.*/)?0/ads/.* -# /!advert_ (easylistchina+easylist.txt: 11096) -/(.*/)?!advert_ -# .zw/ads/ (easylistchina+easylist.txt: 11095) -/.*\.zw/ads/ -.*.zw/ads/ -# .zm/ads/ (easylistchina+easylist.txt: 11094) -/.*\.zm/ads/ -.*.zm/ads/ -# .za/ads/ (easylistchina+easylist.txt: 11093) -/.*\.za/ads/ -.*.za/ads/ -# .za/ads. (easylistchina+easylist.txt: 11092) -/.*\.za/ads\. -.*.za/ads\. -# .xxx/ads/ (easylistchina+easylist.txt: 11091) -/.*\.xxx/ads/ -.*.xxx/ads/ -# .ws/ads/ (easylistchina+easylist.txt: 11090) -/.*\.ws/ads/ -.*.ws/ads/ -# .widgets.ad? (easylistchina+easylist.txt: 11089) -/.*\.widgets\.ad\? -# .vert.ad. (easylistchina+easylist.txt: 11088) -/.*\.vert\.ad\. -.*.vert.ad.*. -# .utils.ads. (easylistchina+easylist.txt: 11087) -/.*\.utils\.ads\. -.*.utils.ads.*. -# .us/ads/ (easylistchina+easylist.txt: 11086) -/.*\.us/ads/ -.*.us/ads/ -# .uk/adv/ (easylistchina+easylist.txt: 11085) -/.*\.uk/adv/ -.*.uk/adv/ -# .uk/ads/ (easylistchina+easylist.txt: 11084) -/.*\.uk/ads/ -.*.uk/ads/ -# .tz/ads/ (easylistchina+easylist.txt: 11083) -/.*\.tz/ads/ -.*.tz/ads/ -# .twoads. (easylistchina+easylist.txt: 11082) -/.*\.twoads\. -.*.twoads.*. -# .tv/ads/ (easylistchina+easylist.txt: 11081) -/.*\.tv/ads/ -.*.tv/ads/ -# .tv/ads. (easylistchina+easylist.txt: 11080) -/.*\.tv/ads\. -.*.tv/ads\. -# .tv/adl. (easylistchina+easylist.txt: 11079) -/.*\.tv/adl\. -.*.tv/adl\. -# .topad. (easylistchina+easylist.txt: 11078) -/.*\.topad\. -.*.topad.*. -# .to/ads/ (easylistchina+easylist.txt: 11077) -/.*\.to/ads/ -.*.to/ads/ -# .th/ads/ (easylistchina+easylist.txt: 11076) -/.*\.th/ads/ -.*.th/ads/ -# .textads. (easylistchina+easylist.txt: 11075) -/.*\.textads\. -.*.textads.*. -# .text-link-ads. (easylistchina+easylist.txt: 11074) -/.*\.text-link-ads\. -.*.text-link-ads.*. -# .swf?popupiniframe= (easylistchina+easylist.txt: 11073) -/.*\.swf\?popupiniframe= -# .swf?link=http (easylistchina+easylist.txt: 11072) -/.*\.swf\?link=http -# .swf?link1=http (easylistchina+easylist.txt: 11071) -/.*\.swf\?link1=http -# .swf?iurl=http (easylistchina+easylist.txt: 11070) -/.*\.swf\?iurl=http -# .swf?clickthru= (easylistchina+easylist.txt: 11069) -/.*\.swf\?clickthru= -# .swf?clicktag= (easylistchina+easylist.txt: 11068) -/.*\.swf\?clicktag= -# .swf?click= (easylistchina+easylist.txt: 11067) -/.*\.swf\?click= -# .swf?ad= (easylistchina+easylist.txt: 11066) -/.*\.swf\?ad= -# .swf?2&clicktag= (easylistchina+easylist.txt: 11065) -/.*\.swf\?2&clicktag= -# .swf?1&clicktag= (easylistchina+easylist.txt: 11064) -/.*\.swf\?1&clicktag= -# .streamads. (easylistchina+easylist.txt: 11063) -/.*\.streamads\. -.*.streamads.*. -# .sponsorads. (easylistchina+easylist.txt: 11062) -/.*\.sponsorads\. -.*.sponsorads.*. -# .spider.ad/ (easylistchina+easylist.txt: 11061) -/.*\.spider\.ad/ -.*.spider.ad -# .sk/ads/ (easylistchina+easylist.txt: 11060) -/.*\.sk/ads/ -.*.sk/ads/ -# .show_ad_ (easylistchina+easylist.txt: 11059) -/.*\.show_ad_ -# .shortcuts.search. (easylistchina+easylist.txt: 11058) -/.*\.shortcuts\.search\. -.*.shortcuts.search.*. -# .se/ads/ (easylistchina+easylist.txt: 11057) -/.*\.se/ads/ -.*.se/ads/ -# .se/?placement=$script,subdocument,third-party (easylistchina+easylist.txt: 11056) -/.*\.se/\?placement= -.*.se/\?placement= -# .rolloverad. (easylistchina+easylist.txt: 11055) -/.*\.rolloverad\. -.*.rolloverad.*. -# .refit.ads. (easylistchina+easylist.txt: 11054) -/.*\.refit\.ads\. -.*.refit.ads.*. -# .popupvideoad. (easylistchina+easylist.txt: 11053) -/.*\.popupvideoad\. -.*.popupvideoad.*. -# .popup_im. (easylistchina+easylist.txt: 11052) -/.*\.popup_im\. -# .popunder.js (easylistchina+easylist.txt: 11051) -/.*\.popunder\.js -.*.popunder.js*. -# .pl/ads/ (easylistchina+easylist.txt: 11050) -/.*\.pl/ads/ -.*.pl/ads/ -# .pk/ads/ (easylistchina+easylist.txt: 11049) -/.*\.pk/ads/ -.*.pk/ads/ -# .php?zoneid= (easylistchina+easylist.txt: 11048) -/.*\.php\?zoneid= -# .php?zone_id= (easylistchina+easylist.txt: 11047) -/.*\.php\?zone_id= -# .php?nats= (easylistchina+easylist.txt: 11046) -/.*\.php\?nats= -# .php?clicktag= (easylistchina+easylist.txt: 11045) -/.*\.php\?clicktag= -# .php?affid= (easylistchina+easylist.txt: 11044) -/.*\.php\?affid= -# .php?adv_ (easylistchina+easylist.txt: 11043) -/.*\.php\?adv_ -# .php?adv= (easylistchina+easylist.txt: 11042) -/.*\.php\?adv= -# .php?adsid= (easylistchina+easylist.txt: 11041) -/.*\.php\?adsid= -# .php?ad_ (easylistchina+easylist.txt: 11040) -/.*\.php\?ad_ -# .php?ad= (easylistchina+easylist.txt: 11039) -/.*\.php\?ad= -# .php/ads/ (easylistchina+easylist.txt: 11038) -/.*\.php/ads/ -.*.php/ads/ -# .php/ad/ (easylistchina+easylist.txt: 11037) -/.*\.php/ad/ -.*.php/ad/ -# .ph/ads/ (easylistchina+easylist.txt: 11036) -/.*\.ph/ads/ -.*.ph/ads/ -# .org/pops.js (easylistchina+easylist.txt: 11035) -/.*\.org/pops\.js -.*.org/pops\.js -# .org/gads/ (easylistchina+easylist.txt: 11034) -/.*\.org/gads/ -.*.org/gads/ -# .org/exit.js (easylistchina+easylist.txt: 11033) -/.*\.org/exit\.js -.*.org/exit\.js -# .org/adv/ (easylistchina+easylist.txt: 11032) -/.*\.org/adv/ -.*.org/adv/ -# .org/ads_ (easylistchina+easylist.txt: 11031) -/.*\.org/ads_ -.*.org/ads_ -# .org/ads/ (easylistchina+easylist.txt: 11030) -/.*\.org/ads/ -.*.org/ads/ -# .org/ads- (easylistchina+easylist.txt: 11029) -/.*\.org/ads- -.*.org/ads- -# .org/adgallery1 (easylistchina+easylist.txt: 11028) -/.*\.org/adgallery1 -.*.org/adgallery1 -# .org/ad_ (easylistchina+easylist.txt: 11027) -/.*\.org/ad_ -.*.org/ad_ -# .org/ad/ (easylistchina+easylist.txt: 11026) -/.*\.org/ad/ -.*.org/ad/ -# .org/ad. (easylistchina+easylist.txt: 11025) -/.*\.org/ad\. -.*.org/ad\. -# .org/ad- (easylistchina+easylist.txt: 11024) -/.*\.org/ad- -.*.org/ad- -# .openxtag.min.js (easylistchina+easylist.txt: 11023) -/.*\.openxtag\.min\.js -.*.openxtag.min.js*. -# .openxtag.js (easylistchina+easylist.txt: 11022) -/.*\.openxtag\.js -.*.openxtag.js*. -# .openx. (easylistchina+easylist.txt: 11021) -/.*\.openx\. -.*.openx.*. -# .openad. (easylistchina+easylist.txt: 11020) -/.*\.openad\. -.*.openad.*. -# .oasfile. (easylistchina+easylist.txt: 11019) -/.*\.oasfile\. -.*.oasfile.*. -# .nz/ads/ (easylistchina+easylist.txt: 11018) -/.*\.nz/ads/ -.*.nz/ads/ -# .nu/ads/ (easylistchina+easylist.txt: 11017) -/.*\.nu/ads/ -.*.nu/ads/ -# .no/ads/ (easylistchina+easylist.txt: 11016) -/.*\.no/ads/ -.*.no/ads/ -# .nl/ads/ (easylistchina+easylist.txt: 11015) -/.*\.nl/ads/ -.*.nl/ads/ -# .nl/ad2/ (easylistchina+easylist.txt: 11014) -/.*\.nl/ad2/ -.*.nl/ad2/ -# .net/vghd_ (easylistchina+easylist.txt: 11013) -/.*\.net/vghd_ -.*.net/vghd_ -# .net/pops.js (easylistchina+easylist.txt: 11012) -/.*\.net/pops\.js -.*.net/pops\.js -# .net/pfadj/ (easylistchina+easylist.txt: 11011) -/.*\.net/pfadj/ -.*.net/pfadj/ -# .net/noidadx/ (easylistchina+easylist.txt: 11010) -/.*\.net/noidadx/ -.*.net/noidadx/ -# .net/gads/ (easylistchina+easylist.txt: 11009) -/.*\.net/gads/ -.*.net/gads/ -# .net/flashads (easylistchina+easylist.txt: 11008) -/.*\.net/flashads -.*.net/flashads -# .net/bnr/ (easylistchina+easylist.txt: 11007) -/.*\.net/bnr/ -.*.net/bnr/ -# .net/affiliate/ (easylistchina+easylist.txt: 11006) -/.*\.net/affiliate/ -.*.net/affiliate/ -# .net/adv/ (easylistchina+easylist.txt: 11005) -/.*\.net/adv/ -.*.net/adv/ -# .net/adt? (easylistchina+easylist.txt: 11004) -/.*\.net/adt\? -.*.net/adt\? -# .net/ads_ (easylistchina+easylist.txt: 11003) -/.*\.net/ads_ -.*.net/ads_ -# .net/ads? (easylistchina+easylist.txt: 11002) -/.*\.net/ads\? -.*.net/ads\? -# .net/ads/ (easylistchina+easylist.txt: 11001) -/.*\.net/ads/ -.*.net/ads/ -# .net/ads. (easylistchina+easylist.txt: 11000) -/.*\.net/ads\. -.*.net/ads\. -# .net/ads- (easylistchina+easylist.txt: 10999) -/.*\.net/ads- -.*.net/ads- -# .net/adj; (easylistchina+easylist.txt: 10998) -/.*\.net/adj; -.*.net/adj; -# .net/adgallery (easylistchina+easylist.txt: 10997) -/.*\.net/adgallery -.*.net/adgallery -# .net/ad_ (easylistchina+easylist.txt: 10996) -/.*\.net/ad_ -.*.net/ad_ -# .net/ad2/ (easylistchina+easylist.txt: 10995) -/.*\.net/ad2/ -.*.net/ad2/ -# .net/ad/$~object-subrequest (easylistchina+easylist.txt: 10994) -/.*\.net/ad/ -.*.net/ad/ -# .net/ad- (easylistchina+easylist.txt: 10993) -/.*\.net/ad- -.*.net/ad- -# .net/_adv/ (easylistchina+easylist.txt: 10992) -/.*\.net/_adv/ -.*.net/_adv/ -# .name/ads/ (easylistchina+easylist.txt: 10991) -/.*\.name/ads/ -.*.name/ads/ -# .my/ads/ (easylistchina+easylist.txt: 10990) -/.*\.my/ads/ -.*.my/ads/ -# .mx/ads/ (easylistchina+easylist.txt: 10989) -/.*\.mx/ads/ -.*.mx/ads/ -# .mv/ads/ (easylistchina+easylist.txt: 10988) -/.*\.mv/ads/ -.*.mv/ads/ -# .mobileads. (easylistchina+easylist.txt: 10987) -/.*\.mobileads\. -.*.mobileads.*. -# .me/ads/ (easylistchina+easylist.txt: 10986) -/.*\.me/ads/ -.*.me/ads/ -# .me/ads- (easylistchina+easylist.txt: 10985) -/.*\.me/ads- -.*.me/ads- -# .lk/ads/ (easylistchina+easylist.txt: 10984) -/.*\.lk/ads/ -.*.lk/ads/ -# .link/ads/ (easylistchina+easylist.txt: 10983) -/.*\.link/ads/ -.*.link/ads/ -# .lazyload-ad. (easylistchina+easylist.txt: 10982) -/.*\.lazyload-ad\. -.*.lazyload-ad.*. -# .lazyload-ad- (easylistchina+easylist.txt: 10981) -/.*\.lazyload-ad- -.*.lazyload-ad-*. -# .ke/ads/ (easylistchina+easylist.txt: 10980) -/.*\.ke/ads/ -.*.ke/ads/ -# .jsp?adcode= (easylistchina+easylist.txt: 10979) -/.*\.jsp\?adcode= -# .jp/ads/ (easylistchina+easylist.txt: 10978) -/.*\.jp/ads/ -.*.jp/ads/ -# .is/ads/ (easylistchina+easylist.txt: 10977) -/.*\.is/ads/ -.*.is/ads/ -# .internads. (easylistchina+easylist.txt: 10976) -/.*\.internads\. -.*.internads.*. -# .intad/ (easylistchina+easylist.txt: 10975) -/.*\.intad/ -.*.intad -# .intad. (easylistchina+easylist.txt: 10974) -/.*\.intad\. -.*.intad.*. -# .initdoubleclickadselementcontent? (easylistchina+easylist.txt: 10973) -/.*\.initdoubleclickadselementcontent\? -# .info/ads/ (easylistchina+easylist.txt: 10972) -/.*\.info/ads/ -.*.info/ads/ -# .info/ads- (easylistchina+easylist.txt: 10971) -/.*\.info/ads- -.*.info/ads- -# .info/ad_ (easylistchina+easylist.txt: 10970) -/.*\.info/ad_ -.*.info/ad_ -# .in/ads/ (easylistchina+easylist.txt: 10969) -/.*\.in/ads/ -.*.in/ads/ -# .il/ads/ (easylistchina+easylist.txt: 10968) -/.*\.il/ads/ -.*.il/ads/ -# .ie/ads/ (easylistchina+easylist.txt: 10967) -/.*\.ie/ads/ -.*.ie/ads/ -# .iads.js (easylistchina+easylist.txt: 10966) -/.*\.iads\.js -.*.iads.js*. -# .html?clicktag= (easylistchina+easylist.txt: 10965) -/.*\.html\?clicktag= -# .html?ad_ (easylistchina+easylist.txt: 10964) -/.*\.html\?ad_ -# .html?ad= (easylistchina+easylist.txt: 10963) -/.*\.html\?ad= -# .HomepageAdvertismentBottom. (easylistchina+easylist.txt: 10962) -/.*\.HomepageAdvertismentBottom\. -.*.HomepageAdvertismentBottom.*. -# .homad. (easylistchina+easylist.txt: 10961) -/.*\.homad\. -.*.homad.*. -# .hk/ads/ (easylistchina+easylist.txt: 10960) -/.*\.hk/ads/ -.*.hk/ads/ -# .gr/ads/ (easylistchina+easylist.txt: 10959) -/.*\.gr/ads/ -.*.gr/ads/ -# .gif?ad= (easylistchina+easylist.txt: 10958) -/.*\.gif\?ad= -# .gg/ads/ (easylistchina+easylist.txt: 10957) -/.*\.gg/ads/ -.*.gg/ads/ -# .fm/ads/ (easylistchina+easylist.txt: 10956) -/.*\.fm/ads/ -.*.fm/ads/ -# .exp_ad- (easylistchina+easylist.txt: 10955) -/.*\.exp_ad- -# .eu/adv/ (easylistchina+easylist.txt: 10954) -/.*\.eu/adv/ -.*.eu/adv/ -# .eu/ads/ (easylistchina+easylist.txt: 10953) -/.*\.eu/ads/ -.*.eu/ads/ -# .eg/ads/ (easylistchina+easylist.txt: 10952) -/.*\.eg/ads/ -.*.eg/ads/ -# .displayAds& (easylistchina+easylist.txt: 10951) -/.*\.displayAds& -# .digital/ads/ (easylistchina+easylist.txt: 10950) -/.*\.digital/ads/ -.*.digital/ads/ -# .dartconfig.js (easylistchina+easylist.txt: 10949) -/.*\.dartconfig\.js -.*.dartconfig.js*. -# .cz/bannery/ (easylistchina+easylist.txt: 10948) -/.*\.cz/bannery/ -.*.cz/bannery/ -# .cz/affil/ (easylistchina+easylist.txt: 10947) -/.*\.cz/affil/ -.*.cz/affil/ -# .com/video-ad- (easylistchina+easylist.txt: 10946) -/.*\.com/video-ad- -.*.com/video-ad- -# .com/ss/ad/ (easylistchina+easylist.txt: 10945) -/.*\.com/ss/ad/ -.*.com/ss/ad/ -# .com/promodisplay? (easylistchina+easylist.txt: 10944) -/.*\.com/promodisplay\? -.*.com/promodisplay\? -# .com/pm/ad- (easylistchina+easylist.txt: 10943) -/.*\.com/pm/ad- -.*.com/pm/ad- -# .com/peels/ (easylistchina+easylist.txt: 10942) -/.*\.com/peels/ -.*.com/peels/ -# .com/miads/ (easylistchina+easylist.txt: 10941) -/.*\.com/miads/ -.*.com/miads/ -# .com/js/adsense (easylistchina+easylist.txt: 10940) -/.*\.com/js/adsense -.*.com/js/adsense -# .com/js/ads/ (easylistchina+easylist.txt: 10939) -/.*\.com/js/ads/ -.*.com/js/ads/ -# .com/js/ad. (easylistchina+easylist.txt: 10938) -/.*\.com/js/ad\. -.*.com/js/ad\. -# .com/js.ng/ (easylistchina+easylist.txt: 10937) -/.*\.com/js\.ng/ -.*.com/js\.ng/ -# .com/iplgadshow (easylistchina+easylist.txt: 10936) -/.*\.com/iplgadshow -.*.com/iplgadshow -# .com/im_ad/ (easylistchina+easylist.txt: 10935) -/.*\.com/im_ad/ -.*.com/im_ad/ -# .com/im-ad/ (easylistchina+easylist.txt: 10934) -/.*\.com/im-ad/ -.*.com/im-ad/ -# .com/gads/ (easylistchina+easylist.txt: 10933) -/.*\.com/gads/ -.*.com/gads/ -# .com/doubleclick/ (easylistchina+easylist.txt: 10932) -/.*\.com/doubleclick/ -.*.com/doubleclick/ -# .com/bads/ (easylistchina+easylist.txt: 10931) -/.*\.com/bads/ -.*.com/bads/ -# .com/adz/ (easylistchina+easylist.txt: 10930) -/.*\.com/adz/ -.*.com/adz/ -# .com/adx_ (easylistchina+easylist.txt: 10929) -/.*\.com/adx_ -.*.com/adx_ -# .com/adx/ (easylistchina+easylist.txt: 10928) -/.*\.com/adx/ -.*.com/adx/ -# .com/adv_ (easylistchina+easylist.txt: 10927) -/.*\.com/adv_ -.*.com/adv_ -# .com/adv? (easylistchina+easylist.txt: 10926) -/.*\.com/adv\? -.*.com/adv\? -# .com/adv3/ (easylistchina+easylist.txt: 10925) -/.*\.com/adv3/ -.*.com/adv3/ -# .com/adv/ (easylistchina+easylist.txt: 10924) -/.*\.com/adv/ -.*.com/adv/ -# .com/ads_ (easylistchina+easylist.txt: 10923) -/.*\.com/ads_ -.*.com/ads_ -# .com/ads? (easylistchina+easylist.txt: 10922) -/.*\.com/ads\? -.*.com/ads\? -# .com/ads/$image,object,subdocument (easylistchina+easylist.txt: 10921) -/.*\.com/ads/ -.*.com/ads/ -# .com/ads. (easylistchina+easylist.txt: 10920) -/.*\.com/ads\. -.*.com/ads\. -# .com/ads- (easylistchina+easylist.txt: 10919) -/.*\.com/ads- -.*.com/ads- -# .com/adpicture (easylistchina+easylist.txt: 10918) -/.*\.com/adpicture -.*.com/adpicture -# .com/adlib_ (easylistchina+easylist.txt: 10917) -/.*\.com/adlib_ -.*.com/adlib_ -# .com/adlib/ (easylistchina+easylist.txt: 10916) -/.*\.com/adlib/ -.*.com/adlib/ -# .com/adinf/ (easylistchina+easylist.txt: 10915) -/.*\.com/adinf/ -.*.com/adinf/ -# .com/adgallery (easylistchina+easylist.txt: 10914) -/.*\.com/adgallery -.*.com/adgallery -# .com/adds/ (easylistchina+easylist.txt: 10913) -/.*\.com/adds/ -.*.com/adds/ -# .com/adclk? (easylistchina+easylist.txt: 10912) -/.*\.com/adclk\? -.*.com/adclk\? -# .com/ad? (easylistchina+easylist.txt: 10911) -/.*\.com/ad\? -.*.com/ad\? -# .com/ad6/ (easylistchina+easylist.txt: 10910) -/.*\.com/ad6/ -.*.com/ad6/ -# .com/ad2/ (easylistchina+easylist.txt: 10909) -/.*\.com/ad2/ -.*.com/ad2/ -# .com/a?size (easylistchina+easylist.txt: 10905) -/.*\.com/a\?size -.*.com/a\?size -# .com/a?pagetype (easylistchina+easylist.txt: 10904) -/.*\.com/a\?pagetype -.*.com/a\?pagetype -# .com/a?network (easylistchina+easylist.txt: 10903) -/.*\.com/a\?network -.*.com/a\?network -# .com/?wid= (easylistchina+easylist.txt: 10902) -/.*\.com/\?wid= -.*.com/\?wid= -# .com/?ad= (easylistchina+easylist.txt: 10901) -/.*\.com/\?ad= -.*.com/\?ad= -# .co/ads? (easylistchina+easylist.txt: 10900) -/.*\.co/ads\? -.*.co/ads\? -# .co/ads/ (easylistchina+easylist.txt: 10899) -/.*\.co/ads/ -.*.co/ads/ -# .clkads. (easylistchina+easylist.txt: 10898) -/.*\.clkads\. -.*.clkads.*. -# .ch/adv/ (easylistchina+easylist.txt: 10897) -/.*\.ch/adv/ -.*.ch/adv/ -# .ch/ads/ (easylistchina+easylist.txt: 10896) -/.*\.ch/ads/ -.*.ch/ads/ -# .cgi?ad= (easylistchina+easylist.txt: 10895) -/.*\.cgi\?ad= -# .cfm?advideo% (easylistchina+easylist.txt: 10894) -/.*\.cfm\?advideo% -# .cfm?ad= (easylistchina+easylist.txt: 10893) -/.*\.cfm\?ad= -# .cc/ads/ (easylistchina+easylist.txt: 10892) -/.*\.cc/ads/ -.*.cc/ads/ -# .ca/ads/ (easylistchina+easylist.txt: 10891) -/.*\.ca/ads/ -.*.ca/ads/ -# .bz/ads/ (easylistchina+easylist.txt: 10890) -/.*\.bz/ads/ -.*.bz/ads/ -# .br/ads/ (easylistchina+easylist.txt: 10889) -/.*\.br/ads/ -.*.br/ads/ -# .box.ad. (easylistchina+easylist.txt: 10888) -/.*\.box\.ad\. -.*.box.ad.*. -# .bns1.net/ (easylistchina+easylist.txt: 10887) -/.*\.bns1\.net/ -.*.bns1.net -# .biz/ads/ (easylistchina+easylist.txt: 10886) -/.*\.biz/ads/ -.*.biz/ads/ -# .biz/ad2/ (easylistchina+easylist.txt: 10885) -/.*\.biz/ad2/ -.*.biz/ad2/ -# .biz/ad/ (easylistchina+easylist.txt: 10884) -/.*\.biz/ad/ -.*.biz/ad/ -# .biz/ad. (easylistchina+easylist.txt: 10883) -/.*\.biz/ad\. -.*.biz/ad\. -# .be/ads/ (easylistchina+easylist.txt: 10882) -/.*\.be/ads/ -.*.be/ads/ -# .bbn.by/ (easylistchina+easylist.txt: 10881) -/.*\.bbn\.by/ -.*.bbn.by -# .banner%20ad. (easylistchina+easylist.txt: 10880) -/.*\.banner%20ad\. -# .az/adv/ (easylistchina+easylist.txt: 10879) -/.*\.az/adv/ -.*.az/adv/ -# .au/ads/ (easylistchina+easylist.txt: 10878) -/.*\.au/ads/ -.*.au/ads/ -# .at/ads/ (easylistchina+easylist.txt: 10877) -/.*\.at/ads/ -.*.at/ads/ -# .aspx?adid= (easylistchina+easylist.txt: 10876) -/.*\.aspx\?adid= -# .aspx?ad= (easylistchina+easylist.txt: 10875) -/.*\.aspx\?ad= -# .asp?coad (easylistchina+easylist.txt: 10874) -/.*\.asp\?coad -# .ashx?AdID= (easylistchina+easylist.txt: 10873) -/.*\.ashx\?AdID= -# .ashx?ad= (easylistchina+easylist.txt: 10872) -/.*\.ashx\?ad= -# .ar/ads/ (easylistchina+easylist.txt: 10871) -/.*\.ar/ads/ -.*.ar/ads/ -# .ae/ads/ (easylistchina+easylist.txt: 10870) -/.*\.ae/ads/ -.*.ae/ads/ -# .adwolf. (easylistchina+easylist.txt: 10869) -/.*\.adwolf\. -.*.adwolf.*. -# .advertmarket. (easylistchina+easylist.txt: 10868) -/.*\.advertmarket\. -.*.advertmarket.*. -# .AdvertismentBottom. (easylistchina+easylist.txt: 10867) -/.*\.AdvertismentBottom\. -.*.AdvertismentBottom.*. -# .adv.cdn. (easylistchina+easylist.txt: 10865) -/.*\.adv\.cdn\. -.*.adv.cdn.*. -# .adtooltip& (easylistchina+easylist.txt: 10864) -/.*\.adtooltip& -# .adtech_ (easylistchina+easylist.txt: 10863) -/.*\.adtech_ -# .adsremote. (easylistchina+easylist.txt: 10862) -/.*\.adsremote\. -.*.adsremote.*. -# .adspace. (easylistchina+easylist.txt: 10861) -/.*\.adspace\. -.*.adspace.*. -# .adserver1. (easylistchina+easylist.txt: 10859) -/.*\.adserver1\. -.*.adserver1.*. -# .adserver01. (easylistchina+easylist.txt: 10858) -/.*\.adserver01\. -.*.adserver01.*. -# .adserver. (easylistchina+easylist.txt: 10857) -/.*\.adserver\. -.*.adserver.*. -# .adserv/ (easylistchina+easylist.txt: 10856) -/.*\.adserv/ -.*.adserv -# .adsense. (easylistchina+easylist.txt: 10855) -/.*\.adsense\. -.*.adsense.*. -# .adsbox. (easylistchina+easylist.txt: 10854) -/.*\.adsbox\. -.*.adsbox.*. -# .ads_clickthru. (easylistchina+easylist.txt: 10853) -/.*\.ads_clickthru\. -# .ads3- (easylistchina+easylist.txt: 10852) -/.*\.ads3- -.*.ads3-*. -# .ads2- (easylistchina+easylist.txt: 10851) -/.*\.ads2- -.*.ads2-*. -# .ads1. (easylistchina+easylist.txt: 10850) -/.*\.ads1\. -.*.ads1.*. -# .ads1- (easylistchina+easylist.txt: 10849) -/.*\.ads1- -.*.ads1-*. -# .ads.zones. (easylistchina+easylist.txt: 10848) -/.*\.ads\.zones\. -.*.ads.zones.*. -# .ads.loader- (easylistchina+easylist.txt: 10847) -/.*\.ads\.loader- -.*.ads.loader-*. -# .ads.darla. (easylistchina+easylist.txt: 10846) -/.*\.ads\.darla\. -.*.ads.darla.*. -# .ads.css (easylistchina+easylist.txt: 10845) -/.*\.ads\.css -.*.ads.css*. -# .ads.core. (easylistchina+easylist.txt: 10844) -/.*\.ads\.core\. -.*.ads.core.*. -# .ads.controller. (easylistchina+easylist.txt: 10843) -/.*\.ads\.controller\. -.*.ads.controller.*. -# .ads-tool. (easylistchina+easylist.txt: 10842) -/.*\.ads-tool\. -.*.ads-tool.*. -# .ads-min. (easylistchina+easylist.txt: 10841) -/.*\.ads-min\. -.*.ads-min.*. -# .ads-lazy. (easylistchina+easylist.txt: 10840) -/.*\.ads-lazy\. -.*.ads-lazy.*. -# .ads-and-tracking. (easylistchina+easylist.txt: 10839) -/.*\.ads-and-tracking\. -.*.ads-and-tracking.*. -# .adru. (easylistchina+easylist.txt: 10838) -/.*\.adru\. -.*.adru.*. -# .adrotate. (easylistchina+easylist.txt: 10837) -/.*\.adrotate\. -.*.adrotate.*. -# .adriver.$~object-subrequest (easylistchina+easylist.txt: 10836) -/.*\.adriver\. -.*.adriver.*. -# .adplacement= (easylistchina+easylist.txt: 10834) -/.*\.adplacement= -# .adpartner. (easylistchina+easylist.txt: 10833) -/.*\.adpartner\. -.*.adpartner.*. -# .admarvel. (easylistchina+easylist.txt: 10831) -/.*\.admarvel\. -.*.admarvel.*. -# .adgearpubs. (easylistchina+easylist.txt: 10829) -/.*\.adgearpubs\. -.*.adgearpubs.*. -# .adframesrc. (easylistchina+easylist.txt: 10828) -/.*\.adframesrc\. -.*.adframesrc.*. -# .adforge. (easylistchina+easylist.txt: 10827) -/.*\.adforge\. -.*.adforge.*. -# .adcenter. (easylistchina+easylist.txt: 10826) -/.*\.adcenter\. -.*.adcenter.*. -# .adbutler- (easylistchina+easylist.txt: 10825) -/.*\.adbutler- -.*.adbutler-*. -# .adbanner. (easylistchina+easylist.txt: 10824) -/.*\.adbanner\. -.*.adbanner.*. -# .ad1.nspace (easylistchina+easylist.txt: 10823) -/.*\.ad1\.nspace -.*.ad1.nspace*. -# .ad/tag. (easylistchina+easylist.txt: 10822) -/.*\.ad/tag\. -.*.ad/tag\. -# .ad/scripts/ (easylistchina+easylist.txt: 10821) -/.*\.ad/scripts/ -.*.ad/scripts/ -# .ad/script/ (easylistchina+easylist.txt: 10820) -/.*\.ad/script/ -.*.ad/script/ -# .ad/positions/ (easylistchina+easylist.txt: 10819) -/.*\.ad/positions/ -.*.ad/positions/ -# .ad/content/ (easylistchina+easylist.txt: 10818) -/.*\.ad/content/ -.*.ad/content/ -# .ad.premiere. (easylistchina+easylist.txt: 10817) -/.*\.ad\.premiere\. -.*.ad.premiere.*. -# .ad.page. (easylistchina+easylist.txt: 10816) -/.*\.ad\.page\. -.*.ad.page.*. -# .ad.json? (easylistchina+easylist.txt: 10815) -/.*\.ad\.json\? -# .ad.footer. (easylistchina+easylist.txt: 10814) -/.*\.ad\.footer\. -.*.ad.footer.*. -# .ad.final. (easylistchina+easylist.txt: 10813) -/.*\.ad\.final\. -.*.ad.final.*. -# .ad-traffic. (easylistchina+easylist.txt: 10812) -/.*\.ad-traffic\. -.*.ad-traffic.*. -# .ad-sys. (easylistchina+easylist.txt: 10811) -/.*\.ad-sys\. -.*.ad-sys.*. -# .ad-cloud. (easylistchina+easylist.txt: 10810) -/.*\.ad-cloud\. -.*.ad-cloud.*. -# .ace.advertising. (easylistchina+easylist.txt: 10809) -/.*\.ace\.advertising\. -.*.ace.advertising.*. -# .a3s?n=*&zone_id= (easylistchina+easylist.txt: 10808) -/.*\.a3s\?n=.*&zone_id= -# .1d/ads/ (easylistchina+easylist.txt: 10807) -/.*\.1d/ads/ -.*.1d/ads/ -# -your-ads-here. (easylistchina+easylist.txt: 10806) -/.*-your-ads-here\. -.*-your-ads-here.*. -# -webad1. (easylistchina+easylist.txt: 10805) -/.*-webad1\. -.*-webad1.*. -# -Web-Advert. (easylistchina+easylist.txt: 10804) -/.*-Web-Advert\. -.*-Web-Advert.*. -# -web-advert- (easylistchina+easylist.txt: 10803) -/.*-web-advert- -.*-web-advert-*. -# -Web-Ads. (easylistchina+easylist.txt: 10802) -/.*-Web-Ads\. -.*-Web-Ads.*. -# -Web-Ad. (easylistchina+easylist.txt: 10801) -/.*-Web-Ad\. -.*-Web-Ad.*. -# -web-ad- (easylistchina+easylist.txt: 10800) -/.*-web-ad- -.*-web-ad-*. -# -video-ads/ (easylistchina+easylist.txt: 10799) -/.*-video-ads/ -.*-video-ads -# -us/ads/ (easylistchina+easylist.txt: 10798) -/.*-us/ads/ -.*-us/ads/ -# -top-ads. (easylistchina+easylist.txt: 10797) -/.*-top-ads\. -.*-top-ads.*. -# -top-ad. (easylistchina+easylist.txt: 10796) -/.*-top-ad\. -.*-top-ad.*. -# -third-ad. (easylistchina+easylist.txt: 10795) -/.*-third-ad\. -.*-third-ad.*. -# -theme/ads/ (easylistchina+easylist.txt: 10794) -/.*-theme/ads/ -.*-theme/ads/ -# -text-ads. (easylistchina+easylist.txt: 10793) -/.*-text-ads\. -.*-text-ads.*. -# -template-ads/ (easylistchina+easylist.txt: 10792) -/.*-template-ads/ -.*-template-ads -# -strip-ads- (easylistchina+easylist.txt: 10791) -/.*-strip-ads- -.*-strip-ads-*. -# -sponsored-links- (easylistchina+easylist.txt: 10790) -/.*-sponsored-links- -.*-sponsored-links-*. -# -sponsor-ad. (easylistchina+easylist.txt: 10789) -/.*-sponsor-ad\. -.*-sponsor-ad.*. -# -source/ads/ (easylistchina+easylist.txt: 10788) -/.*-source/ads/ -.*-source/ads/ -# -small-ad. (easylistchina+easylist.txt: 10787) -/.*-small-ad\. -.*-small-ad.*. -# -skyscrapper160x600. (easylistchina+easylist.txt: 10786) -/.*-skyscrapper160x600\. -.*-skyscrapper160x600.*. -# -Skyscraper-Ad. (easylistchina+easylist.txt: 10785) -/.*-Skyscraper-Ad\. -.*-Skyscraper-Ad.*. -# -side-ad- (easylistchina+easylist.txt: 10784) -/.*-side-ad- -.*-side-ad-*. -# -show-ads. (easylistchina+easylist.txt: 10783) -/.*-show-ads\. -.*-show-ads.*. -# -seasonal-ad. (easylistchina+easylist.txt: 10782) -/.*-seasonal-ad\. -.*-seasonal-ad.*. -# -scrollads. (easylistchina+easylist.txt: 10781) -/.*-scrollads\. -.*-scrollads.*. -# -rollout-ad- (easylistchina+easylist.txt: 10780) -/.*-rollout-ad- -.*-rollout-ad-*. -# -rightrailad- (easylistchina+easylist.txt: 10779) -/.*-rightrailad- -.*-rightrailad-*. -# -right-ad. (easylistchina+easylist.txt: 10778) -/.*-right-ad\. -.*-right-ad.*. -# -Results-Sponsored. (easylistchina+easylist.txt: 10777) -/.*-Results-Sponsored\. -.*-Results-Sponsored.*. -# -rectangle/ad- (easylistchina+easylist.txt: 10776) -/.*-rectangle/ad- -.*-rectangle/ad- -# -publicidad. (easylistchina+easylist.txt: 10775) -/.*-publicidad\. -.*-publicidad.*. -# -printhousead- (easylistchina+easylist.txt: 10774) -/.*-printhousead- -.*-printhousead-*. -# -pri/adv- (easylistchina+easylist.txt: 10773) -/.*-pri/adv- -.*-pri/adv- -# -popup-ads- (easylistchina+easylist.txt: 10772) -/.*-popup-ads- -.*-popup-ads-*. -# -popup-ad. (easylistchina+easylist.txt: 10771) -/.*-popup-ad\. -.*-popup-ad.*. -# -popunder. (easylistchina+easylist.txt: 10770) -/.*-popunder\. -.*-popunder.*. -# -popexit. (easylistchina+easylist.txt: 10769) -/.*-popexit\. -.*-popexit.*. -# -pop-under/ (easylistchina+easylist.txt: 10768) -/.*-pop-under/ -.*-pop-under -# -permads. (easylistchina+easylist.txt: 10767) -/.*-permads\. -.*-permads.*. -# -peel-ads- (easylistchina+easylist.txt: 10766) -/.*-peel-ads- -.*-peel-ads-*. -# -panel_ad_ (easylistchina+easylist.txt: 10765) -/.*-panel_ad_ -# -panel-ad. (easylistchina+easylist.txt: 10764) -/.*-panel-ad\. -.*-panel-ad.*. -# -page-peel/ (easylistchina+easylist.txt: 10763) -/.*-page-peel/ -.*-page-peel -# -page-ad? (easylistchina+easylist.txt: 10762) -/.*-page-ad\? -# -page-ad. (easylistchina+easylist.txt: 10761) -/.*-page-ad\. -.*-page-ad.*. -# -online-advert. (easylistchina+easylist.txt: 10760) -/.*-online-advert\. -.*-online-advert.*. -# -NewStockAd- (easylistchina+easylist.txt: 10759) -/.*-NewStockAd- -.*-NewStockAd-*. -# -newsletter-ad- (easylistchina+easylist.txt: 10758) -/.*-newsletter-ad- -.*-newsletter-ad-*. -# -news-ad- (easylistchina+easylist.txt: 10757) -/.*-news-ad- -.*-news-ad-*. -# -NewAd. (easylistchina+easylist.txt: 10756) -/.*-NewAd\. -.*-NewAd.*. -# -load-ads. (easylistchina+easylist.txt: 10755) -/.*-load-ads\. -.*-load-ads.*. -# -leaderboard-ad- (easylistchina+easylist.txt: 10754) -/.*-leaderboard-ad- -.*-leaderboard-ad-*. -# -layer-ads/ (easylistchina+easylist.txt: 10753) -/.*-layer-ads/ -.*-layer-ads -# -layer-ad. (easylistchina+easylist.txt: 10752) -/.*-layer-ad\. -.*-layer-ad.*. -# -intern-ads/ (easylistchina+easylist.txt: 10751) -/.*-intern-ads/ -.*-intern-ads -# -inspire-ad. (easylistchina+easylist.txt: 10750) -/.*-inspire-ad\. -.*-inspire-ad.*. -# -img/ads/ (easylistchina+easylist.txt: 10749) -/.*-img/ads/ -.*-img/ads/ -# -images/ad- (easylistchina+easylist.txt: 10748) -/.*-images/ad- -.*-images/ad- -# -image/Ads/ (easylistchina+easylist.txt: 10747) -/.*-image/Ads/ -.*-image/Ads/ -# -image-ad. (easylistchina+easylist.txt: 10746) -/.*-image-ad\. -.*-image-ad.*. -# -iframe-ads/ (easylistchina+easylist.txt: 10745) -/.*-iframe-ads/ -.*-iframe-ads -# -iframe-ad. (easylistchina+easylist.txt: 10744) -/.*-iframe-ad\. -.*-iframe-ad.*. -# -housead- (easylistchina+easylist.txt: 10743) -/.*-housead- -.*-housead-*. -# -gpt-ad- (easylistchina+easylist.txt: 10742) -/.*-gpt-ad- -.*-gpt-ad-*. -# -google2-ad- (easylistchina+easylist.txt: 10741) -/.*-google2-ad- -.*-google2-ad-*. -# -google-ads/ (easylistchina+easylist.txt: 10740) -/.*-google-ads/ -.*-google-ads -# -google-ads- (easylistchina+easylist.txt: 10739) -/.*-google-ads- -.*-google-ads-*. -# -games/ads/ (easylistchina+easylist.txt: 10738) -/.*-games/ads/ -.*-games/ads/ -# -gallery_ad/ (easylistchina+easylist.txt: 10737) -/.*-gallery_ad/ -# -footerads. (easylistchina+easylist.txt: 10736) -/.*-footerads\. -.*-footerads.*. -# -footerads- (easylistchina+easylist.txt: 10735) -/.*-footerads- -.*-footerads-*. -# -floorboard-ads/ (easylistchina+easylist.txt: 10734) -/.*-floorboard-ads/ -.*-floorboard-ads -# -floater_ads_ (easylistchina+easylist.txt: 10733) -/.*-floater_ads_ -# -fleshlight2. (easylistchina+easylist.txt: 10732) -/.*-fleshlight2\. -.*-fleshlight2.*. -# -feed-ads. (easylistchina+easylist.txt: 10731) -/.*-feed-ads\. -.*-feed-ads.*. -# -featured-ads/ (easylistchina+easylist.txt: 10730) -/.*-featured-ads/ -.*-featured-ads -# -featured-ads. (easylistchina+easylist.txt: 10729) -/.*-featured-ads\. -.*-featured-ads.*. -# -fe-ads/ (easylistchina+easylist.txt: 10728) -/.*-fe-ads/ -.*-fe-ads -# -euads. (easylistchina+easylist.txt: 10727) -/.*-euads\. -.*-euads.*. -# -dfp-ads/ (easylistchina+easylist.txt: 10726) -/.*-dfp-ads/ -.*-dfp-ads -# -cpm-ads. (easylistchina+easylist.txt: 10725) -/.*-cpm-ads\. -.*-cpm-ads.*. -# -cpm-ad. (easylistchina+easylist.txt: 10724) -/.*-cpm-ad\. -.*-cpm-ad.*. -# -contest-ad. (easylistchina+easylist.txt: 10723) -/.*-contest-ad\. -.*-contest-ad.*. -# -content-ad. (easylistchina+easylist.txt: 10722) -/.*-content-ad\. -.*-content-ad.*. -# -box2-ad? (easylistchina+easylist.txt: 10721) -/.*-box2-ad\? -# -Box-Ad. (easylistchina+easylist.txt: 10720) -/.*-Box-Ad\. -.*-Box-Ad.*. -# -book-ad- (easylistchina+easylist.txt: 10719) -/.*-book-ad- -.*-book-ad-*. -# -blog-ad- (easylistchina+easylist.txt: 10718) -/.*-blog-ad- -.*-blog-ad-*. -# -bin/ad_ (easylistchina+easylist.txt: 10717) -/.*-bin/ad_ -.*-bin/ad_ -# -billboard-ads/ (easylistchina+easylist.txt: 10716) -/.*-billboard-ads/ -.*-billboard-ads -# -bg_ads. (easylistchina+easylist.txt: 10715) -/.*-bg_ads\. -# -bannerads/ (easylistchina+easylist.txt: 10714) -/.*-bannerads/ -.*-bannerads -# -banner468x60. (easylistchina+easylist.txt: 10713) -/.*-banner468x60\. -.*-banner468x60.*. -# -banner300x250. (easylistchina+easylist.txt: 10712) -/.*-banner300x250\. -.*-banner300x250.*. -# -banner.swf? (easylistchina+easylist.txt: 10711) -/.*-banner\.swf\? -# -banner-ads/ (easylistchina+easylist.txt: 10710) -/.*-banner-ads/ -.*-banner-ads -# -banner-ads- (easylistchina+easylist.txt: 10709) -/.*-banner-ads- -.*-banner-ads-*. -# -banner-ad/ (easylistchina+easylist.txt: 10708) -/.*-banner-ad/ -.*-banner-ad -# -banner-ad. (easylistchina+easylist.txt: 10707) -/.*-banner-ad\. -.*-banner-ad.*. -# -banner-ad- (easylistchina+easylist.txt: 10706) -/.*-banner-ad- -.*-banner-ad-*. -# -banner-768. (easylistchina+easylist.txt: 10705) -/.*-banner-768\. -.*-banner-768.*. -# -article-advert- (easylistchina+easylist.txt: 10704) -/.*-article-advert- -.*-article-advert-*. -# -article-ads- (easylistchina+easylist.txt: 10703) -/.*-article-ads- -.*-article-ads-*. -# -affiliates/img_ (easylistchina+easylist.txt: 10702) -/.*-affiliates/img_ -.*-affiliates/img_ -# -affiliate-link. (easylistchina+easylist.txt: 10701) -/.*-affiliate-link\. -.*-affiliate-link.*. -# -adwords. (easylistchina+easylist.txt: 10700) -/.*-adwords\. -.*-adwords.*. -# -advertisment- (easylistchina+easylist.txt: 10699) -/.*-advertisment- -.*-advertisment-*. -# -advertising_ (easylistchina+easylist.txt: 10698) -/.*-advertising_ -# -advertisement_ (easylistchina+easylist.txt: 10697) -/.*-advertisement_ -# -advertisement. (easylistchina+easylist.txt: 10696) -/.*-advertisement\. -.*-advertisement.*. -# -advertisement-icon. (easylistchina+easylist.txt: 10695) -/.*-advertisement-icon\. -.*-advertisement-icon.*. -# -advertise01. (easylistchina+easylist.txt: 10694) -/.*-advertise01\. -.*-advertise01.*. -# -advertise/ (easylistchina+easylist.txt: 10693) -/.*-advertise/ -.*-advertise -# -advert_August. (easylistchina+easylist.txt: 10691) -/.*-advert_August\. -# -advert3. (easylistchina+easylist.txt: 10690) -/.*-advert3\. -.*-advert3.*. -# -advert2. (easylistchina+easylist.txt: 10689) -/.*-advert2\. -.*-advert2.*. -# -advert1. (easylistchina+easylist.txt: 10688) -/.*-advert1\. -.*-advert1.*. -# -advert.swf (easylistchina+easylist.txt: 10687) -/.*-advert\.swf -.*-advert.swf*. -# -advert.jpg? (easylistchina+easylist.txt: 10686) -/.*-advert\.jpg\? -# -advert-label- (easylistchina+easylist.txt: 10685) -/.*-advert-label- -.*-advert-label-*. -# -adv.js (easylistchina+easylist.txt: 10684) -/.*-adv\.js -.*-adv.js*. -# -adv.jpg (easylistchina+easylist.txt: 10683) -/.*-adv\.jpg -.*-adv.jpg*. -# -adv-v1/ (easylistchina+easylist.txt: 10682) -/.*-adv-v1/ -.*-adv-v1 -# -adtrack. (easylistchina+easylist.txt: 10681) -/.*-adtrack\. -.*-adtrack.*. -# -adtopbanner- (easylistchina+easylist.txt: 10680) -/.*-adtopbanner- -.*-adtopbanner-*. -# -adtechfront. (easylistchina+easylist.txt: 10679) -/.*-adtechfront\. -.*-adtechfront.*. -# -adsystem- (easylistchina+easylist.txt: 10678) -/.*-adsystem- -.*-adsystem-*. -# -adswizz- (easylistchina+easylist.txt: 10677) -/.*-adswizz- -.*-adswizz-*. -# -adspot- (easylistchina+easylist.txt: 10676) -/.*-adspot- -.*-adspot-*. -# -adspace_ (easylistchina+easylist.txt: 10675) -/.*-adspace_ -# -adspace. (easylistchina+easylist.txt: 10674) -/.*-adspace\. -.*-adspace.*. -# -adsonar. (easylistchina+easylist.txt: 10673) -/.*-adsonar\. -.*-adsonar.*. -# -adserver/ (easylistchina+easylist.txt: 10672) -/.*-adserver/ -.*-adserver -# -adserver- (easylistchina+easylist.txt: 10671) -/.*-adserver- -.*-adserver-*. -# -adsense2. (easylistchina+easylist.txt: 10670) -/.*-adsense2\. -.*-adsense2.*. -# -adscript. (easylistchina+easylist.txt: 10669) -/.*-adscript\. -.*-adscript.*. -# -Ads_Billboard_ (easylistchina+easylist.txt: 10668) -/.*-Ads_Billboard_ -# -ads_9_3. (easylistchina+easylist.txt: 10667) -/.*-ads_9_3\. -# -Ads_728x902. (easylistchina+easylist.txt: 10666) -/.*-Ads_728x902\. -# -ads/static- (easylistchina+easylist.txt: 10665) -/.*-ads/static- -.*-ads/static- -# -ads/oas/ (easylistchina+easylist.txt: 10664) -/.*-ads/oas/ -.*-ads/oas/ -# -ads/img/ (easylistchina+easylist.txt: 10663) -/.*-ads/img/ -.*-ads/img/ -# -ads/ad- (easylistchina+easylist.txt: 10662) -/.*-ads/ad- -.*-ads/ad- -# -ads/728x (easylistchina+easylist.txt: 10661) -/.*-ads/728x -.*-ads/728x -# -ads.swf (easylistchina+easylist.txt: 10660) -/.*-ads\.swf -.*-ads.swf*. -# -ads.php? (easylistchina+easylist.txt: 10659) -/.*-ads\.php\? -# -ads.js? (easylistchina+easylist.txt: 10658) -/.*-ads\.js\? -# -ads.gif (easylistchina+easylist.txt: 10657) -/.*-ads\.gif -.*-ads.gif*. -# -ads.generated. (easylistchina+easylist.txt: 10656) -/.*-ads\.generated\. -.*-ads.generated.*. -# -ads-widget? (easylistchina+easylist.txt: 10655) -/.*-ads-widget\? -# -ads-right. (easylistchina+easylist.txt: 10654) -/.*-ads-right\. -.*-ads-right.*. -# -ads-placement. (easylistchina+easylist.txt: 10653) -/.*-ads-placement\. -.*-ads-placement.*. -# -ads-ns. (easylistchina+easylist.txt: 10652) -/.*-ads-ns\. -.*-ads-ns.*. -# -ads-manager/ (easylistchina+easylist.txt: 10651) -/.*-ads-manager/ -.*-ads-manager -# -ads-management/ (easylistchina+easylist.txt: 10650) -/.*-ads-management/ -.*-ads-management -# -ads-init& (easylistchina+easylist.txt: 10649) -/.*-ads-init& -# -ads-iframe. (easylistchina+easylist.txt: 10648) -/.*-ads-iframe\. -.*-ads-iframe.*. -# -ads-bottom. (easylistchina+easylist.txt: 10647) -/.*-ads-bottom\. -.*-ads-bottom.*. -# -ads-banner. (easylistchina+easylist.txt: 10646) -/.*-ads-banner\. -.*-ads-banner.*. -# -ads-728x (easylistchina+easylist.txt: 10645) -/.*-ads-728x -.*-ads-728x*. -# -ads-180x (easylistchina+easylist.txt: 10644) -/.*-ads-180x -.*-ads-180x*. -# -adrotation. (easylistchina+easylist.txt: 10643) -/.*-adrotation\. -.*-adrotation.*. -# -adnow. (easylistchina+easylist.txt: 10642) -/.*-adnow\. -.*-adnow.*. -# -admarvel/ (easylistchina+easylist.txt: 10641) -/.*-admarvel/ -.*-admarvel -# -adimage- (easylistchina+easylist.txt: 10640) -/.*-adimage- -.*-adimage-*. -# -adhere2. (easylistchina+easylist.txt: 10639) -/.*-adhere2\. -.*-adhere2.*. -# -adhelper. (easylistchina+easylist.txt: 10638) -/.*-adhelper\. -.*-adhelper.*. -# -adchain. (easylistchina+easylist.txt: 10637) -/.*-adchain\. -.*-adchain.*. -# -adcentre. (easylistchina+easylist.txt: 10636) -/.*-adcentre\. -.*-adcentre.*. -# -adblack- (easylistchina+easylist.txt: 10635) -/.*-adblack- -.*-adblack-*. -# -adap. (easylistchina+easylist.txt: 10634) -/.*-adap\. -.*-adap.*. -# -ad_leaderboard/ (easylistchina+easylist.txt: 10633) -/.*-ad_leaderboard/ -# -ad_injector/ (easylistchina+easylist.txt: 10632) -/.*-ad_injector/ -# -ad_banner- (easylistchina+easylist.txt: 10631) -/.*-ad_banner- -# -ad_125x125. (easylistchina+easylist.txt: 10630) -/.*-ad_125x125\. -# -ad5. (easylistchina+easylist.txt: 10629) -/.*-ad5\. -.*-ad5.*. -# -ad4. (easylistchina+easylist.txt: 10628) -/.*-ad4\. -.*-ad4.*. -# -Ad300x90- (easylistchina+easylist.txt: 10627) -/.*-Ad300x90- -.*-Ad300x90-*. -# -Ad300x250. (easylistchina+easylist.txt: 10626) -/.*-Ad300x250\. -.*-Ad300x250.*. -# -ad3. (easylistchina+easylist.txt: 10625) -/.*-ad3\. -.*-ad3.*. -# -ad2_ (easylistchina+easylist.txt: 10624) -/.*-ad2_ -# -ad2. (easylistchina+easylist.txt: 10623) -/.*-ad2\. -.*-ad2.*. -# -ad1. (easylistchina+easylist.txt: 10622) -/.*-ad1\. -.*-ad1.*. -# -ad03. (easylistchina+easylist.txt: 10621) -/.*-ad03\. -.*-ad03.*. -# -ad/right_ (easylistchina+easylist.txt: 10620) -/.*-ad/right_ -.*-ad/right_ -# -ad/main. (easylistchina+easylist.txt: 10619) -/.*-ad/main\. -.*-ad/main\. -# -ad.php? (easylistchina+easylist.txt: 10618) -/.*-ad\.php\? -# -ad.jsp| (easylistchina+easylist.txt: 10617) -/.*-ad\.jsp$ -.*-ad.jsp -# -ad.jpg? (easylistchina+easylist.txt: 10616) -/.*-ad\.jpg\? -# -ad.jpg.pagespeed. (easylistchina+easylist.txt: 10615) -/.*-ad\.jpg\.pagespeed\. -.*-ad.jpg.pagespeed.*. -# -ad-zone. (easylistchina+easylist.txt: 10614) -/.*-ad-zone\. -.*-ad-zone.*. -# -ad-vertical- (easylistchina+easylist.txt: 10613) -/.*-ad-vertical- -.*-ad-vertical-*. -# -ad-util. (easylistchina+easylist.txt: 10612) -/.*-ad-util\. -.*-ad-util.*. -# -ad-util- (easylistchina+easylist.txt: 10611) -/.*-ad-util- -.*-ad-util-*. -# -ad-unit/ (easylistchina+easylist.txt: 10610) -/.*-ad-unit/ -.*-ad-unit -# -ad-unit. (easylistchina+easylist.txt: 10609) -/.*-ad-unit\. -.*-ad-unit.*. -# -ad-top. (easylistchina+easylist.txt: 10608) -/.*-ad-top\. -.*-ad-top.*. -# -ad-tile. (easylistchina+easylist.txt: 10607) -/.*-ad-tile\. -.*-ad-tile.*. -# -ad-switcher. (easylistchina+easylist.txt: 10606) -/.*-ad-switcher\. -.*-ad-switcher.*. -# -ad-sidebar- (easylistchina+easylist.txt: 10605) -/.*-ad-sidebar- -.*-ad-sidebar-*. -# -ad-server/ (easylistchina+easylist.txt: 10604) -/.*-ad-server/ -.*-ad-server -# -ad-rotators/ (easylistchina+easylist.txt: 10603) -/.*-ad-rotators/ -.*-ad-rotators -# -ad-right. (easylistchina+easylist.txt: 10602) -/.*-ad-right\. -.*-ad-right.*. -# -ad-new_ (easylistchina+easylist.txt: 10601) -/.*-ad-new_ -# -ad-mpu+ (easylistchina+easylist.txt: 10600) -/.*-ad-mpu\+ -# -ad-marker. (easylistchina+easylist.txt: 10599) -/.*-ad-marker\. -.*-ad-marker.*. -# -ad-manager/$~stylesheet (easylistchina+easylist.txt: 10598) -/.*-ad-manager/ -.*-ad-manager -# -ad-loading. (easylistchina+easylist.txt: 10597) -/.*-ad-loading\. -.*-ad-loading.*. -# -ad-limits. (easylistchina+easylist.txt: 10596) -/.*-ad-limits\. -.*-ad-limits.*. -# -ad-left. (easylistchina+easylist.txt: 10595) -/.*-ad-left\. -.*-ad-left.*. -# -ad-large. (easylistchina+easylist.txt: 10594) -/.*-ad-large\. -.*-ad-large.*. -# -ad-iframe/ (easylistchina+easylist.txt: 10593) -/.*-ad-iframe/ -.*-ad-iframe -# -ad-hrule. (easylistchina+easylist.txt: 10592) -/.*-ad-hrule\. -.*-ad-hrule.*. -# -ad-hrule- (easylistchina+easylist.txt: 10591) -/.*-ad-hrule- -.*-ad-hrule-*. -# -ad-home. (easylistchina+easylist.txt: 10590) -/.*-ad-home\. -.*-ad-home.*. -# -ad-gif1- (easylistchina+easylist.txt: 10589) -/.*-ad-gif1- -.*-ad-gif1-*. -# -ad-gif- (easylistchina+easylist.txt: 10588) -/.*-ad-gif- -.*-ad-gif-*. -# -ad-exo- (easylistchina+easylist.txt: 10587) -/.*-ad-exo- -.*-ad-exo-*. -# -ad-ero- (easylistchina+easylist.txt: 10586) -/.*-ad-ero- -.*-ad-ero-*. -# -ad-data/ (easylistchina+easylist.txt: 10585) -/.*-ad-data/ -.*-ad-data -# -ad-cube. (easylistchina+easylist.txt: 10584) -/.*-ad-cube\. -.*-ad-cube.*. -# -ad-column- (easylistchina+easylist.txt: 10583) -/.*-ad-column- -.*-ad-column-*. -# -ad-choices. (easylistchina+easylist.txt: 10582) -/.*-ad-choices\. -.*-ad-choices.*. -# -ad-category- (easylistchina+easylist.txt: 10581) -/.*-ad-category- -.*-ad-category-*. -# -ad-button- (easylistchina+easylist.txt: 10580) -/.*-ad-button- -.*-ad-button-*. -# -ad-bottom- (easylistchina+easylist.txt: 10579) -/.*-ad-bottom- -.*-ad-bottom-*. -# -ad-big. (easylistchina+easylist.txt: 10578) -/.*-ad-big\. -.*-ad-big.*. -# -ad-banner. (easylistchina+easylist.txt: 10577) -/.*-ad-banner\. -.*-ad-banner.*. -# -ad-400. (easylistchina+easylist.txt: 10576) -/.*-ad-400\. -.*-ad-400.*. -# -ad-340x400- (easylistchina+easylist.txt: 10575) -/.*-ad-340x400- -.*-ad-340x400-*. -# -ad-336x280- (easylistchina+easylist.txt: 10574) -/.*-ad-336x280- -.*-ad-336x280-*. -# -ad-313x232. (easylistchina+easylist.txt: 10573) -/.*-ad-313x232\. -.*-ad-313x232.*. -# -ad-300x250. (easylistchina+easylist.txt: 10572) -/.*-ad-300x250\. -.*-ad-300x250.*. -# -ad-24x24. (easylistchina+easylist.txt: 10571) -/.*-ad-24x24\. -.*-ad-24x24.*. -# -ad-200x200- (easylistchina+easylist.txt: 10570) -/.*-ad-200x200- -.*-ad-200x200-*. -# -ad-180x150px. (easylistchina+easylist.txt: 10569) -/.*-ad-180x150px\. -.*-ad-180x150px.*. -# -ad-001- (easylistchina+easylist.txt: 10568) -/.*-ad-001- -.*-ad-001-*. -# -300x100ad2. (easylistchina+easylist.txt: 10567) -/.*-300x100ad2\. -.*-300x100ad2.*. -# -2011ad_ (easylistchina+easylist.txt: 10566) -/.*-2011ad_ -# -2/ads/ (easylistchina+easylist.txt: 10565) -/.*-2/ads/ -.*-2/ads/ -# +adverts/ (easylistchina+easylist.txt: 10564) -/.*\+adverts/ -# +advertorial. (easylistchina+easylist.txt: 10563) -/.*\+advertorial\. -# &view=ad& (easylistchina+easylist.txt: 10562) -/.*&view=ad& -# &videoadid= (easylistchina+easylist.txt: 10561) -/.*&videoadid= -# &video_ads_ (easylistchina+easylist.txt: 10560) -/.*&video_ads_ -# &UrlAdParam= (easylistchina+easylist.txt: 10559) -/.*&UrlAdParam= -# &type=ad& (easylistchina+easylist.txt: 10558) -/.*&type=ad& -# &strategy=adsense& (easylistchina+easylist.txt: 10557) -/.*&strategy=adsense& -# &smart_ad_ (easylistchina+easylist.txt: 10556) -/.*&smart_ad_ -# &smallad= (easylistchina+easylist.txt: 10555) -/.*&smallad= -# &simple_ad_ (easylistchina+easylist.txt: 10554) -/.*&simple_ad_ -# &showad= (easylistchina+easylist.txt: 10553) -/.*&showad= -# &show_ad_ (easylistchina+easylist.txt: 10552) -/.*&show_ad_ -# &prvtof=*&poru= (easylistchina+easylist.txt: 10551) -/.*&prvtof=.*&poru= -# &program=revshare& (easylistchina+easylist.txt: 10550) -/.*&program=revshare& -# &popunder= (easylistchina+easylist.txt: 10549) -/.*&popunder= -# &maxads= (easylistchina+easylist.txt: 10548) -/.*&maxads= -# &largead= (easylistchina+easylist.txt: 10547) -/.*&largead= -# &jumpstartadformat= (easylistchina+easylist.txt: 10546) -/.*&jumpstartadformat= -# &googleadword= (easylistchina+easylist.txt: 10545) -/.*&googleadword= -# &gIncludeExternalAds= (easylistchina+easylist.txt: 10544) -/.*&gIncludeExternalAds= -# &expandable_ad_ (easylistchina+easylist.txt: 10543) -/.*&expandable_ad_ -# &displayads= (easylistchina+easylist.txt: 10542) -/.*&displayads= -# &customSizeAd= (easylistchina+easylist.txt: 10541) -/.*&customSizeAd= -# &clicktag=http (easylistchina+easylist.txt: 10540) -/.*&clicktag=http -# &banner_id= (easylistchina+easylist.txt: 10539) -/.*&banner_id= -# &adzone= (easylistchina+easylist.txt: 10538) -/.*&adzone= -# &advtile= (easylistchina+easylist.txt: 10537) -/.*&advtile= -# &advid= (easylistchina+easylist.txt: 10536) -/.*&advid= -# &advertiserid= (easylistchina+easylist.txt: 10535) -/.*&advertiserid= -# &advert_ (easylistchina+easylist.txt: 10534) -/.*&advert_ -# &adv_keywords= (easylistchina+easylist.txt: 10533) -/.*&adv_keywords= -# &adurl= (easylistchina+easylist.txt: 10532) -/.*&adurl= -# &adunit= (easylistchina+easylist.txt: 10531) -/.*&adunit= -# &adType=PREROLL& (easylistchina+easylist.txt: 10530) -/.*&adType=PREROLL& -# &adstype= (easylistchina+easylist.txt: 10529) -/.*&adstype= -# &adspace= (easylistchina+easylist.txt: 10528) -/.*&adspace= -# &adsourceid= (easylistchina+easylist.txt: 10527) -/.*&adsourceid= -# &adslots= (easylistchina+easylist.txt: 10526) -/.*&adslots= -# &adslot= (easylistchina+easylist.txt: 10525) -/.*&adslot= -# &adsize= (easylistchina+easylist.txt: 10524) -/.*&adsize= -# &adserver= (easylistchina+easylist.txt: 10523) -/.*&adserver= -# &adsafe= (easylistchina+easylist.txt: 10522) -/.*&adsafe= -# &adpageurl= (easylistchina+easylist.txt: 10521) -/.*&adpageurl= -# &adnum= (easylistchina+easylist.txt: 10520) -/.*&adnum= -# &adnet= (easylistchina+easylist.txt: 10519) -/.*&adnet= -# &adname= (easylistchina+easylist.txt: 10518) -/.*&adname= -# &admid= (easylistchina+easylist.txt: 10517) -/.*&admid= -# &admeld_ (easylistchina+easylist.txt: 10516) -/.*&admeld_ -# &adgroupid= (easylistchina+easylist.txt: 10515) -/.*&adgroupid= -# &adcount= (easylistchina+easylist.txt: 10514) -/.*&adcount= -# &adclient= (easylistchina+easylist.txt: 10513) -/.*&adclient= -# &adbannerid= (easylistchina+easylist.txt: 10512) -/.*&adbannerid= -# &ad_zones= (easylistchina+easylist.txt: 10511) -/.*&ad_zones= -# &ad_url= (easylistchina+easylist.txt: 10510) -/.*&ad_url= -# &ad_type_ (easylistchina+easylist.txt: 10509) -/.*&ad_type_ -# &ad_type= (easylistchina+easylist.txt: 10508) -/.*&ad_type= -# &ad_number= (easylistchina+easylist.txt: 10507) -/.*&ad_number= -# &ad_network_ (easylistchina+easylist.txt: 10506) -/.*&ad_network_ -# &ad_keyword= (easylistchina+easylist.txt: 10505) -/.*&ad_keyword= -# &ad_height= (easylistchina+easylist.txt: 10504) -/.*&ad_height= -# &ad_classid= (easylistchina+easylist.txt: 10503) -/.*&ad_classid= -# &ad_channel= (easylistchina+easylist.txt: 10502) -/.*&ad_channel= -# &ad_box_ (easylistchina+easylist.txt: 10501) -/.*&ad_box_ -# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina+easylist.txt: 10490) +# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina.txt: 10478) .hjfile.cn/analytics/site/TrackEvent\.js -# ||hdsrc-a.akamaihd.net^ (easylistchina+easylist.txt: 10454) +# ||hdsrc-a.akamaihd.net^ (easylistchina.txt: 10441) .hdsrc-a.akamaihd.net -# ||hdapp1008-a.akamaihd.net^ (easylistchina+easylist.txt: 10453) +# ||hdapp1008-a.akamaihd.net^ (easylistchina.txt: 10440) .hdapp1008-a.akamaihd.net -# ||hdapp1003-a.akamaihd.net^ (easylistchina+easylist.txt: 10452) +# ||hdapp1003-a.akamaihd.net^ (easylistchina.txt: 10439) .hdapp1003-a.akamaihd.net -# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina+easylist.txt: 10451) +# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina.txt: 10438) .commondisplay-a.akamaihd.net/cri/.*\.htm\?cat= -# ||akamaihd.net^*/sid.html?p= (easylistchina+easylist.txt: 10450) +# ||akamaihd.net^*/sid.html?p= (easylistchina.txt: 10437) .akamaihd.net/.*/sid\.html\?p= -# ||akamaihd.net^*/gsd.html?d= (easylistchina+easylist.txt: 10449) +# ||akamaihd.net^*/gsd.html?d= (easylistchina.txt: 10436) .akamaihd.net/.*/gsd\.html\?d= -# ||146.148.85.61^ (easylistchina+easylist.txt: 10448) +# ||146.148.85.61^ (easylistchina.txt: 10435) .146.148.85.61 -# ||880fg.com/css/*.js (easylistchina+easylist.txt: 5453) -.880fg.com/css/.*\.js -# ||zzz4.com/JS_AD/ (easylistchina+easylist.txt: 5452) +# ||2chcn.com/img/japanese-a.png (easylistchina.txt: 5426) +.2chcn.com/img/japanese-a\.png +# ||zzz4.com/JS_AD/ (easylistchina.txt: 5425) .zzz4.com/JS_AD/ -# ||zzsky.cn/images/zzskycom_ (easylistchina+easylist.txt: 5451) +# ||zzsky.cn/images/zzskycom_ (easylistchina.txt: 5424) .zzsky.cn/images/zzskycom_ -# ||zznews.cn/home/js/duilian1.js (easylistchina+easylist.txt: 5450) +# ||zznews.cn/home/js/duilian1.js (easylistchina.txt: 5423) .zznews.cn/home/js/duilian1\.js -# ||zzidc.com^*0.gif (easylistchina+easylist.txt: 5449) +# ||zzidc.com^*0.gif (easylistchina.txt: 5422) .zzidc.com/.*0\.gif -# ||zzidc.com/img/ (easylistchina+easylist.txt: 5448) +# ||zzidc.com/img/ (easylistchina.txt: 5421) .zzidc.com/img/ -# ||zzc.cn/b/ (easylistchina+easylist.txt: 5447) +# ||zzc.cn/b/ (easylistchina.txt: 5420) .zzc.cn/b/ -# ||zyzczs.com/js/tj.txt (easylistchina+easylist.txt: 5446) -.zyzczs.com/js/tj\.txt -# ||zxip.com/2013_ad/ (easylistchina+easylist.txt: 5445) +# ||zxip.com/2013_ad/ (easylistchina.txt: 5419) .zxip.com/2013_ad/ -# ||zuoche.com/promo/*.jspx (easylistchina+easylist.txt: 5444) +# ||zuoche.com/promo/*.jspx (easylistchina.txt: 5418) .zuoche.com/promo/.*\.jspx -# ||zuiben.com/a/ (easylistchina+easylist.txt: 5443) +# ||zuiben.com/a/ (easylistchina.txt: 5417) .zuiben.com/a/ -# ||zt220.com/zzs/ (easylistchina+easylist.txt: 5442) +# ||zt220.com/zzs/ (easylistchina.txt: 5416) .zt220.com/zzs/ -# ||zt2088.com^ (easylistchina+easylist.txt: 5441) +# ||zt2088.com^ (easylistchina.txt: 5415) .zt2088.com -# ||zt.iciba.com/guess/images/900.jpg (easylistchina+easylist.txt: 5440) +# ||zt.iciba.com/guess/images/900.jpg (easylistchina.txt: 5414) .zt.iciba.com/guess/images/900\.jpg -# ||zt.chuanke.com/?mod= (easylistchina+easylist.txt: 5439) +# ||zt.chuanke.com/?mod= (easylistchina.txt: 5413) .zt.chuanke.com/\?mod= -# ||zsnews.cn/v.*=300&height=225& (easylistchina+easylist.txt: 5438) +# ||zsnews.cn/v.*=300&height=225& (easylistchina.txt: 5412) .zsnews.cn/v\..*=300&height=225& -# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina+easylist.txt: 5437) +# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina.txt: 5411) .zsnews.cn/JSFUN/AdvFun/ -# ||zsnews.cn/js/adControl- (easylistchina+easylist.txt: 5436) +# ||zsnews.cn/js/adControl- (easylistchina.txt: 5410) .zsnews.cn/js/adControl- -# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina+easylist.txt: 5435) +# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina.txt: 5409) .zsnews.cn/Components/2013ZSNEWS/ -# ||zsjjob.com/user/member/google.htm (easylistchina+easylist.txt: 5434) +# ||zsjjob.com/user/member/google.htm (easylistchina.txt: 5408) .zsjjob.com/user/member/google\.htm -# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina+easylist.txt: 5432) +# ||zp365.com/newImages/201*.swf (easylistchina.txt: 5406) +.zp365.com/newImages/201.*\.swf +# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina.txt: 5405) .zoopda.com/thumbs/.*_w_680_mh_120\. -# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina+easylist.txt: 5431) +# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina.txt: 5404) .zoopda.com/thumbs/.*_w_250_mh_250\. -# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina+easylist.txt: 5430) +# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina.txt: 5403) .zongheng.com/zhuanti/2014/active/js/active\.js -# ||zongheng.com/v2014/js/mod/bad.js (easylistchina+easylist.txt: 5429) +# ||zongheng.com/v2014/js/mod/bad.js (easylistchina.txt: 5402) .zongheng.com/v2014/js/mod/bad\.js -# ||zongheng.com/upload/recommend/game/ (easylistchina+easylist.txt: 5428) +# ||zongheng.com/upload/recommend/game/ (easylistchina.txt: 5401) .zongheng.com/upload/recommend/game/ -# ||zongheng.com/ajax/recommend.game. (easylistchina+easylist.txt: 5427) +# ||zongheng.com/ajax/recommend.game. (easylistchina.txt: 5400) .zongheng.com/ajax/recommend\.game\. -# ||zolsky.com^*ad/*.js (easylistchina+easylist.txt: 5426) +# ||zolsky.com^*ad/*.js (easylistchina.txt: 5399) .zolsky.com/.*ad/.*\.js -# ||zol.com.cn/intelcorp/ (easylistchina+easylist.txt: 5425) +# ||zol.com.cn/intelcorp/ (easylistchina.txt: 5398) .zol.com.cn/intelcorp/ -# ||zol.com.cn/adrs/ (easylistchina+easylist.txt: 5424) +# ||zol.com.cn/adrs/ (easylistchina.txt: 5397) .zol.com.cn/adrs/ -# ||zol-img.com.cn/soft/114ad_ (easylistchina+easylist.txt: 5423) +# ||zol-img.com.cn/soft/114ad_ (easylistchina.txt: 5396) .zol-img.com.cn/soft/114ad_ -# ||zol-img.com.cn/201*/gt (easylistchina+easylist.txt: 5422) +# ||zol-img.com.cn/201*/gt (easylistchina.txt: 5395) .zol-img.com.cn/201.*/gt -# ||zo66.com^ (easylistchina+easylist.txt: 5421) +# ||zo66.com^ (easylistchina.txt: 5394) .zo66.com -# ||znz888.cn/modblock/ (easylistchina+easylist.txt: 5420) +# ||znz888.cn/modblock/ (easylistchina.txt: 5393) .znz888.cn/modblock/ -# ||zk168.com.cn/js/sy (easylistchina+easylist.txt: 5419) +# ||zk168.com.cn/js/sy (easylistchina.txt: 5392) .zk168.com.cn/js/sy -# ||zk168.com.cn/js/s.js (easylistchina+easylist.txt: 5418) +# ||zk168.com.cn/js/s.js (easylistchina.txt: 5391) .zk168.com.cn/js/s\.js -# ||zk168.com.cn/js/fwpd.js (easylistchina+easylist.txt: 5417) +# ||zk168.com.cn/js/fwpd.js (easylistchina.txt: 5390) .zk168.com.cn/js/fwpd\.js -# ||zk168.com.cn/js/b.js (easylistchina+easylist.txt: 5416) +# ||zk168.com.cn/js/b.js (easylistchina.txt: 5389) .zk168.com.cn/js/b\.js -# ||zk168.com.cn/js/300gg.js (easylistchina+easylist.txt: 5415) +# ||zk168.com.cn/js/300gg.js (easylistchina.txt: 5388) .zk168.com.cn/js/300gg\.js -# ||zjphoto.yinsha.com/upload/swf/ (easylistchina+easylist.txt: 5414) +# ||zjphoto.yinsha.com/upload/swf/ (easylistchina.txt: 5387) .zjphoto.yinsha.com/upload/swf/ -# ||zjol.com.cn/js/duilian/ (easylistchina+easylist.txt: 5413) +# ||zjol.com.cn/js/duilian/ (easylistchina.txt: 5386) .zjol.com.cn/js/duilian/ -# ||zjjzx.cn/img/zt/yd/ (easylistchina+easylist.txt: 5412) +# ||zjjzx.cn/img/zt/yd/ (easylistchina.txt: 5385) .zjjzx.cn/img/zt/yd/ -# ||zjjzx.cn*/push/ (easylistchina+easylist.txt: 5411) +# ||zjjzx.cn*/push/ (easylistchina.txt: 5384) .zjjzx.cn*./(.*/)?push/ -# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina+easylist.txt: 5410) +# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina.txt: 5383) .zjg.js.cn/Template/Ant/Js/tonglang\.js -# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina+easylist.txt: 5409) +# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina.txt: 5382) .zjg.js.cn/Public/config/Couplet/Index4 -# ||zjbdt.com/onexgadimgs/ (easylistchina+easylist.txt: 5408) +# ||zjbdt.com/onexgadimgs/ (easylistchina.txt: 5381) .zjbdt.com/onexgadimgs/ -# ||zj.cn^*/AD?location= (easylistchina+easylist.txt: 5407) +# ||zj.cn^*/AD?location= (easylistchina.txt: 5380) .zj.cn/.*/AD\?location= -# ||ziti.jz123.cn/js/ (easylistchina+easylist.txt: 5406) +# ||ziti.jz123.cn/js/ (easylistchina.txt: 5379) .ziti.jz123.cn/js/ -# ||zisai.com/2014.ad/ (easylistchina+easylist.txt: 5405) +# ||zisai.com/2014.ad/ (easylistchina.txt: 5378) .zisai.com/2014\.ad/ -# ||zisai.com/2013.ad/ (easylistchina+easylist.txt: 5404) +# ||zisai.com/2013.ad/ (easylistchina.txt: 5377) .zisai.com/2013\.ad/ -# ||zimuzu.tv/rrlx (easylistchina+easylist.txt: 5403) +# ||zimuzu.tv/rrlx (easylistchina.txt: 5376) .zimuzu.tv/rrlx -# ||zimuzu.tv/public/rooms? (easylistchina+easylist.txt: 5402) +# ||zimuzu.tv/public/rooms? (easylistchina.txt: 5375) .zimuzu.tv/public/rooms\? -# ||zhzyw.org/js/InsertJS.js (easylistchina+easylist.txt: 5401) +# ||zhzyw.org/js/InsertJS.js (easylistchina.txt: 5374) .zhzyw.org/js/InsertJS\.js -# ||zhyjw.com/xiala/ (easylistchina+easylist.txt: 5400) +# ||zhyjw.com/xiala/ (easylistchina.txt: 5373) .zhyjw.com/xiala/ -# ||zhyjw.com/IAA/ (easylistchina+easylist.txt: 5399) +# ||zhyjw.com/IAA/ (easylistchina.txt: 5372) .zhyjw.com/IAA/ -# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina+easylist.txt: 5398) +# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina.txt: 5371) .zhulong.com/poster/get\?positions_name=ZY_SP_300 -# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina+easylist.txt: 5397) +# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina.txt: 5370) .zhulong.com/poster/get\?positions_name=ZY_JZ_300_02 -# ||zhulong.com/poster/get?*_960 (easylistchina+easylist.txt: 5396) +# ||zhulong.com/poster/get?*_960 (easylistchina.txt: 5369) .zhulong.com/poster/get\?.*_960 -# ||zhulang.com/ad_js/ (easylistchina+easylist.txt: 5395) +# ||zhulang.com/ad_js/ (easylistchina.txt: 5368) .zhulang.com/ad_js/ -# ||zhujiangroad.com/js/alltop.js (easylistchina+easylist.txt: 5394) +# ||zhujiangroad.com/js/alltop.js (easylistchina.txt: 5367) .zhujiangroad.com/js/alltop\.js -# ||zhuishu.com/js/fy (easylistchina+easylist.txt: 5393) +# ||zhuishu.com/js/fy (easylistchina.txt: 5366) .zhuishu.com/js/fy -# ||zhuishu.com/js/bd (easylistchina+easylist.txt: 5392) +# ||zhuishu.com/js/bd (easylistchina.txt: 5365) .zhuishu.com/js/bd -# ||zhuanyewanjia.com/upload/show/ (easylistchina+easylist.txt: 5391) +# ||zhuanyewanjia.com/upload/show/ (easylistchina.txt: 5364) .zhuanyewanjia.com/upload/show/ -# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina+easylist.txt: 5390) +# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina.txt: 5363) .zhuankeba.net/rw/tyrw/top\.jpg -# ||zhuangpin.com^*/ad/ (easylistchina+easylist.txt: 5389) -.zhuangpin.com/.*/ad/ -# ||zhoushan.cn/new.js (easylistchina+easylist.txt: 5388) +# ||zhoushan.cn/new.js (easylistchina.txt: 5362) .zhoushan.cn/new\.js -# ||zhongzi.in/static/ko/ (easylistchina+easylist.txt: 5387) +# ||zhongzi.in/static/ko/ (easylistchina.txt: 5361) .zhongzi.in/static/ko/ -# ||zhlzw.com/wlles/2015/995XX.js (easylistchina+easylist.txt: 5386) +# ||zhlzw.com/wlles/2015/995XX.js (easylistchina.txt: 5360) .zhlzw.com/wlles/2015/995XX\.js -# ||zhijia.com/hd/*.swf (easylistchina+easylist.txt: 5385) +# ||zhijia.com/hd/*.swf (easylistchina.txt: 5359) .zhijia.com/hd/.*\.swf -# ||zhihu.com/node/*UpShameimaruV2? (easylistchina+easylist.txt: 5384) -.zhihu.com/node/.*UpShameimaruV2\? -# ||zhihu.com/node/*DownShameimaruV2? (easylistchina+easylist.txt: 5383) -.zhihu.com/node/.*DownShameimaruV2\? -# ||zhibowu.com/js/ad (easylistchina+easylist.txt: 5382) +# ||zhihu.com/node/Banner? (easylistchina.txt: 5358) +.zhihu.com/node/Banner\? +# ||zhibowu.com/js/ad (easylistchina.txt: 5357) .zhibowu.com/js/ad -# ||zhibok8.com/js/scroll.js (easylistchina+easylist.txt: 5381) +# ||zhibok8.com/js/scroll.js (easylistchina.txt: 5356) .zhibok8.com/js/scroll\.js -# ||zhibok8.com/js/ding.js (easylistchina+easylist.txt: 5380) +# ||zhibok8.com/js/ding.js (easylistchina.txt: 5355) .zhibok8.com/js/ding\.js -# ||zhiboba.cc/js/pic.js (easylistchina+easylist.txt: 5379) +# ||zhiboba.cc/js/pic.js (easylistchina.txt: 5354) .zhiboba.cc/js/pic\.js -# ||zhibo8.cc/js/float.js (easylistchina+easylist.txt: 5378) +# ||zhibo8.cc/js/float.js (easylistchina.txt: 5353) .zhibo8.cc/js/float\.js -# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina+easylist.txt: 5377) +# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina.txt: 5352) .zhenjiang365.cn/bbsimg/lphyslideshower\.swf -# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina+easylist.txt: 5376) +# ||zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9.jpg (easylistchina.txt: 5351) +.zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9\.jpg +# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina.txt: 5350) .zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d\.gif -# ||zhenjiang365.cn/*/ad_ (easylistchina+easylist.txt: 5375) +# ||zhenjiang365.cn/*/ad_ (easylistchina.txt: 5349) .zhenjiang365.cn/.*/ad_ -# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina+easylist.txt: 5374) +# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina.txt: 5348) .zhaozi.cn/d/js/mini/extended87\.js -# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina+easylist.txt: 5373) +# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina.txt: 5347) .zhaojiao.net/templets/default/js/AD_flay\.js -# ||zhao.265g.com/cache/kfbftop.html (easylistchina+easylist.txt: 5372) +# ||zhao.265g.com/cache/kfbftop.html (easylistchina.txt: 5346) .zhao.265g.com/cache/kfbftop\.html -# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina+easylist.txt: 5371) +# ||zhanqi.tv/uploads/*/ads-*.swf (easylistchina.txt: 5345) +.zhanqi.tv/uploads/.*/ads-.*\.swf +# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina.txt: 5344) .zhangge.net/wp-content/uploads/files/esx\.jpg -# ||zhandi.cc/Runtime/js/index (easylistchina+easylist.txt: 5370) +# ||zhandi.cc/Runtime/js/index (easylistchina.txt: 5343) .zhandi.cc/Runtime/js/index -# ||zhandi.cc/Runtime/js/900 (easylistchina+easylist.txt: 5369) +# ||zhandi.cc/Runtime/js/900 (easylistchina.txt: 5342) .zhandi.cc/Runtime/js/900 -# ||zhandi.cc/Runtime/js/*vod (easylistchina+easylist.txt: 5368) +# ||zhandi.cc/Runtime/js/*vod (easylistchina.txt: 5341) .zhandi.cc/Runtime/js/.*vod -# ||zhainanba.org/ac/ (easylistchina+easylist.txt: 5367) +# ||zhainanba.org/ac/ (easylistchina.txt: 5340) .zhainanba.org/ac/ -# ||zgjm.org/data/cache/mytag-30.htm (easylistchina+easylist.txt: 5366) +# ||zgjm.org/data/cache/mytag-30.htm (easylistchina.txt: 5339) .zgjm.org/data/cache/mytag-30\.htm -# ||zgjm.org/data/cache/mytag-24.htm (easylistchina+easylist.txt: 5365) +# ||zgjm.org/data/cache/mytag-24.htm (easylistchina.txt: 5338) .zgjm.org/data/cache/mytag-24\.htm -# ||zfs.cn/data/attachment/portal/ (easylistchina+easylist.txt: 5364) +# ||zfs.cn/data/attachment/portal/ (easylistchina.txt: 5337) .zfs.cn/data/attachment/portal/ -# ||zfs.cn/8th/ (easylistchina+easylist.txt: 5363) +# ||zfs.cn/8th/ (easylistchina.txt: 5336) .zfs.cn/8th/ -# ||zeyi.cc/js/2412/ (easylistchina+easylist.txt: 5362) +# ||zeyi.cc/js/2412/ (easylistchina.txt: 5335) .zeyi.cc/js/2412/ -# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina+easylist.txt: 5361) +# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina.txt: 5334) .zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605\.gif -# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina+easylist.txt: 5360) +# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina.txt: 5333) .zdfans.com/wp-content/upgrade/doujind\.gif -# ||zdfans.com/Picture/2345 (easylistchina+easylist.txt: 5359) +# ||zdfans.com/Picture/2345 (easylistchina.txt: 5332) .zdfans.com/Picture/2345 -# ||zdfans.com/adsens/kiees.jpg (easylistchina+easylist.txt: 5358) +# ||zdfans.com/adsens/kiees.jpg (easylistchina.txt: 5331) .zdfans.com/adsens/kiees\.jpg -# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina+easylist.txt: 5357) +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina.txt: 5330) .zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317\.aspx -# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina+easylist.txt: 5356) +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina.txt: 5329) .zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0\.aspx -# ||zchot.com/images/jiaoyou (easylistchina+easylist.txt: 5355) +# ||zchot.com/images/jiaoyou (easylistchina.txt: 5328) .zchot.com/images/jiaoyou -# ||zc173.com/pp/ (easylistchina+easylist.txt: 5354) +# ||zc173.com/pp/ (easylistchina.txt: 5327) .zc173.com/pp/ -# ||zc173.com/173fee/ (easylistchina+easylist.txt: 5353) +# ||zc173.com/173fee/ (easylistchina.txt: 5326) .zc173.com/173fee/ -# ||zb7.com/static/archy/ad/ (easylistchina+easylist.txt: 5352) +# ||zb7.com/static/archy/ad/ (easylistchina.txt: 5325) .zb7.com/static/archy/ad/ -# ||zasv.com/baiya.jpg (easylistchina+easylist.txt: 5351) +# ||zasv.com/baiya.jpg (easylistchina.txt: 5324) .zasv.com/baiya\.jpg -# ||zaobao.com/ssi/bizp/ (easylistchina+easylist.txt: 5350) +# ||zaobao.com/ssi/bizp/ (easylistchina.txt: 5323) .zaobao.com/ssi/bizp/ -# ||zalra.qiniudn.com/zhou2.jpg (easylistchina+easylist.txt: 5349) +# ||zalra.qiniudn.com/zhou2.jpg (easylistchina.txt: 5322) .zalra.qiniudn.com/zhou2\.jpg -# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina+easylist.txt: 5348) +# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina.txt: 5321) .zalra.cn/wp-content/uploads/2014/05/xs009\.jpg -# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina+easylist.txt: 5347) +# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina.txt: 5320) .zalra.cn/wp-content/uploads/2014/05/adsj\.png -# ||z63.org/wp-content/themes/z63/img/s- (easylistchina+easylist.txt: 5346) +# ||z63.org/wp-content/themes/z63/img/s- (easylistchina.txt: 5319) .z63.org/wp-content/themes/z63/img/s- -# ||z4bbs.com/adst/ (easylistchina+easylist.txt: 5345) +# ||z4bbs.com/adst/ (easylistchina.txt: 5318) .z4bbs.com/adst/ -# ||yzz.cn/home/theme/popwin/ (easylistchina+easylist.txt: 5344) +# ||yzz.cn/home/theme/popwin/ (easylistchina.txt: 5317) .yzz.cn/home/theme/popwin/ -# ||yzz.cn/global_gg/ (easylistchina+easylist.txt: 5343) +# ||yzz.cn/global_gg/ (easylistchina.txt: 5316) .yzz.cn/global_gg/ -# ||yzwb.com/js/ppaa.js (easylistchina+easylist.txt: 5342) +# ||yzwb.com/js/ppaa.js (easylistchina.txt: 5315) .yzwb.com/js/ppaa\.js -# ||yzwb.com/js/AD (easylistchina+easylist.txt: 5341) +# ||yzwb.com/js/AD (easylistchina.txt: 5314) .yzwb.com/js/AD -# ||yzwb.com/images/ad_ (easylistchina+easylist.txt: 5340) +# ||yzwb.com/images/ad_ (easylistchina.txt: 5313) .yzwb.com/images/ad_ -# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina+easylist.txt: 5339) +# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina.txt: 5312) .yytcdn.com/user/bugles/.*_.*x.*\.jpg -# ||yytcdn.com/others/avt/*_1 (easylistchina+easylist.txt: 5337) +# ||yytcdn.com/others/avt/*_1 (easylistchina.txt: 5310) .yytcdn.com/others/avt/.*_1 -# ||yytcdn.com/others/*_175x660. (easylistchina+easylist.txt: 5336) +# ||yytcdn.com/others/*_175x660. (easylistchina.txt: 5309) .yytcdn.com/others/.*_175x660\. -# ||yytcdn.com/headfile/avt/ (easylistchina+easylist.txt: 5335) +# ||yytcdn.com/headfile/avt/ (easylistchina.txt: 5308) .yytcdn.com/headfile/avt/ -# ||yy521.com/qq/qq.js (easylistchina+easylist.txt: 5334) +# ||yy521.com/qq/qq.js (easylistchina.txt: 5307) .yy521.com/qq/qq\.js -# ||yy521.com/js/baidu (easylistchina+easylist.txt: 5333) +# ||yy521.com/js/baidu (easylistchina.txt: 5306) .yy521.com/js/baidu -# ||yy18.info/yyads/ (easylistchina+easylist.txt: 5332) +# ||yy18.info/yyads/ (easylistchina.txt: 5305) .yy18.info/yyads/ -# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina+easylist.txt: 5331) +# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina.txt: 5304) .yxlady.com/skin/yx2014/mm/inpage/ny/ -# ||yxlady.com/cdd/ (easylistchina+easylist.txt: 5330) +# ||yxlady.com/cdd/ (easylistchina.txt: 5303) .yxlady.com/cdd/ -# ||yxdown.com/ghtml/ (easylistchina+easylist.txt: 5329) +# ||yxdown.com/ghtml/ (easylistchina.txt: 5302) .yxdown.com/ghtml/ -# ||yxdd.com^$subdocument (easylistchina+easylist.txt: 5328) +# ||yxdd.com^$subdocument (easylistchina.txt: 5301) .yxdd.com -# ||yxad.com/yxad/ (easylistchina+easylist.txt: 5327) +# ||yxad.com/yxad/ (easylistchina.txt: 5300) .yxad.com/yxad/ -# ||yxad.com/sg/ (easylistchina+easylist.txt: 5326) +# ||yxad.com/sg/ (easylistchina.txt: 5299) .yxad.com/sg/ -# ||yxad.com/js/lady.gif (easylistchina+easylist.txt: 5325) +# ||yxad.com/js/lady.gif (easylistchina.txt: 5298) .yxad.com/js/lady\.gif -# ||yxad.com/baidu/ (easylistchina+easylist.txt: 5324) +# ||yxad.com/baidu/ (easylistchina.txt: 5297) .yxad.com/baidu/ -# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina+easylist.txt: 5323) +# ||yupoo.com/ttmeiju/FgIoBTXx/4uIfH.jpg (easylistchina.txt: 5296) +.yupoo.com/ttmeiju/FgIoBTXx/4uIfH\.jpg +# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina.txt: 5295) .yupoo.com/ttmeiju/F5TrKJL8/medish\.jpg -# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina+easylist.txt: 5322) +# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina.txt: 5294) .yupoo.com/ttmeiju/F5aQAmuW/XKgx\.gif -# ||yunupload.net/jsa/ (easylistchina+easylist.txt: 5320) +# ||yunupload.net/jsa/ (easylistchina.txt: 5292) .yunupload.net/jsa/ -# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina+easylist.txt: 5319) +# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina.txt: 5291) .yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead\.jpg -# ||yunfile.com^*/offline_banner/ (easylistchina+easylist.txt: 5318) -.yunfile.com/.*/offline_banner/ -# ||yundianb.com/tu/jia.gif (easylistchina+easylist.txt: 5317) +# ||yundianb.com/tu/jia.gif (easylistchina.txt: 5290) .yundianb.com/tu/jia\.gif -# ||yundianb.com/hao/ (easylistchina+easylist.txt: 5316) +# ||yundianb.com/hao/ (easylistchina.txt: 5289) .yundianb.com/hao/ -# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina+easylist.txt: 5315) +# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina.txt: 5288) .yundasys.com:1602/wsd/ykjcx/ -# ||yunaw.qiniudn.com/tuixiao.png (easylistchina+easylist.txt: 5314) +# ||yunaw.qiniudn.com/tuixiao.png (easylistchina.txt: 5287) .yunaw.qiniudn.com/tuixiao\.png -# ||yubei8.com/img/ (easylistchina+easylist.txt: 5313) +# ||yubei8.com/img/ (easylistchina.txt: 5286) .yubei8.com/img/ -# ||yubei8.com/boximg/ (easylistchina+easylist.txt: 5312) +# ||yubei8.com/boximg/ (easylistchina.txt: 5285) .yubei8.com/boximg/ -# ||yu64.com/44jjss/ (easylistchina+easylist.txt: 5311) -.yu64.com/44jjss/ -# ||yto.net.cn/gw/chajian/ (easylistchina+easylist.txt: 5310) +# ||yto.net.cn/gw/chajian/ (easylistchina.txt: 5284) .yto.net.cn/gw/chajian/ -# ||ytbbs.com/images/index/ (easylistchina+easylist.txt: 5309) +# ||ytbbs.com/images/index/ (easylistchina.txt: 5283) .ytbbs.com/images/index/ -# ||ysxs8.com/ysgg/ (easylistchina+easylist.txt: 5308) +# ||ysxs8.com/ysgg/ (easylistchina.txt: 5282) .ysxs8.com/ysgg/ -# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina+easylist.txt: 5307) +# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina.txt: 5281) .youxituoluo.com/wp-content/uploads/2015/09/20150914175545748\.jpg -# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina+easylist.txt: 5306) +# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina.txt: 5280) .youxituoluo.com/wp-content/uploads/2015/07/20150724152002343\.jpg -# ||youxiaxiazai.com/dm/ (easylistchina+easylist.txt: 5305) +# ||youxiaxiazai.com/dm/ (easylistchina.txt: 5279) .youxiaxiazai.com/dm/ -# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina+easylist.txt: 5304) +# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina.txt: 5278) .youxiaxiazai.com/db_top/index_top\.htm -# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina+easylist.txt: 5303) +# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina.txt: 5277) .youxi.baidu.com/tips/bdtips_min\.js -# ||youthwant.com.tw/scripts/youthad.js (easylistchina+easylist.txt: 5301) +# ||youthwant.com.tw/scripts/youthad.js (easylistchina.txt: 5275) .youthwant.com.tw/scripts/youthad\.js -# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina+easylist.txt: 5300) +# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina.txt: 5274) .youthwant.com.tw/S_YahooContentMatch1\. -# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina+easylist.txt: 5299) +# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina.txt: 5273) .youthwant.com.tw/images/mot_ad\.jpg -# ||youthwant.com.tw/event/*/swf/970x (easylistchina+easylist.txt: 5298) +# ||youthwant.com.tw/event/*/swf/970x (easylistchina.txt: 5272) .youthwant.com.tw/event/.*/swf/970x -# ||youthwant.com.tw/dodo.php?adjs= (easylistchina+easylist.txt: 5297) +# ||youthwant.com.tw/dodo.php?adjs= (easylistchina.txt: 5271) .youthwant.com.tw/dodo\.php\?adjs= -# ||youth.cn/qwtf2015/ (easylistchina+easylist.txt: 5296) +# ||youth.cn/qwtf2015/ (easylistchina.txt: 5270) .youth.cn/qwtf2015/ -# ||youth.cn/images/public_ (easylistchina+easylist.txt: 5295) +# ||youth.cn/images/public_ (easylistchina.txt: 5269) .youth.cn/images/public_ -# ||youth.cn/images/m.js (easylistchina+easylist.txt: 5294) +# ||youth.cn/images/m.js (easylistchina.txt: 5268) .youth.cn/images/m\.js -# ||youth.cn/images/c.js (easylistchina+easylist.txt: 5293) +# ||youth.cn/images/c.js (easylistchina.txt: 5267) .youth.cn/images/c\.js -# ||youth.cn/hezuo/index.js (easylistchina+easylist.txt: 5292) +# ||youth.cn/hezuo/index.js (easylistchina.txt: 5266) .youth.cn/hezuo/index\.js -# ||youth.cn/ggw/dep_ggw/ (easylistchina+easylist.txt: 5291) +# ||youth.cn/ggw/dep_ggw/ (easylistchina.txt: 5265) .youth.cn/ggw/dep_ggw/ -# ||youqu.net/js/ (easylistchina+easylist.txt: 5290) +# ||youqu.net/js/ (easylistchina.txt: 5264) .youqu.net/js/ -# ||you85.cn^*/z*.js (easylistchina+easylist.txt: 5289) +# ||you85.cn^*/z*.js (easylistchina.txt: 5263) .you85.cn/.*/z.*\.js -# ||you85.cn^*/vip.js (easylistchina+easylist.txt: 5288) +# ||you85.cn^*/vip.js (easylistchina.txt: 5262) .you85.cn/.*/vip\.js -# ||you85.cn^*/dib.js (easylistchina+easylist.txt: 5287) +# ||you85.cn^*/dib.js (easylistchina.txt: 5261) .you85.cn/.*/dib\.js -# ||you85.cn/i360/ (easylistchina+easylist.txt: 5286) +# ||you85.cn/i360/ (easylistchina.txt: 5260) .you85.cn/i360/ -# ||you85.cn/cc/ (easylistchina+easylist.txt: 5285) +# ||you85.cn/cc/ (easylistchina.txt: 5259) .you85.cn/cc/ -# ||yooread.com/skin/js/common.js (easylistchina+easylist.txt: 5284) +# ||yooread.com/skin/js/common.js (easylistchina.txt: 5258) .yooread.com/skin/js/common\.js -# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina+easylist.txt: 5283) +# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina.txt: 5257) .ynzd.org/dict/uploads/20111007/ad_710\.jpg -# ||ylzx8.cn/style/js/sad.js (easylistchina+easylist.txt: 5282) +# ||ylzx8.cn/style/js/sad.js (easylistchina.txt: 5256) .ylzx8.cn/style/js/sad\.js -# ||ylnet.com.cn/inc/ad$subdocument (easylistchina+easylist.txt: 5281) +# ||ylnet.com.cn/inc/ad$subdocument (easylistchina.txt: 5255) .ylnet.com.cn/inc/ad -# ||ylnet.com.cn/gj.js (easylistchina+easylist.txt: 5280) +# ||ylnet.com.cn/gj.js (easylistchina.txt: 5254) .ylnet.com.cn/gj\.js -# ||ylnet.com.cn/dl*.js (easylistchina+easylist.txt: 5279) +# ||ylnet.com.cn/dl*.js (easylistchina.txt: 5253) .ylnet.com.cn/dl.*\.js -# ||ylnet.com.cn/201*/rh/ (easylistchina+easylist.txt: 5278) +# ||ylnet.com.cn/201*/rh/ (easylistchina.txt: 5252) .ylnet.com.cn/201.*/rh/ -# ||yktj.yzz.cn^ (easylistchina+easylist.txt: 5277) +# ||yktj.yzz.cn^ (easylistchina.txt: 5251) .yktj.yzz.cn -# ||yjhas.net/250x250- (easylistchina+easylist.txt: 5276) -.yjhas.net/250x250- -# ||yizhai.net/myjs/f*.js (easylistchina+easylist.txt: 5275) +# ||yjhas.net^$image (easylistchina.txt: 5250) +.yjhas.net +# ||yizhai.net/myjs/f*.js (easylistchina.txt: 5249) .yizhai.net/myjs/f.*\.js -# ||yiyipan.com/images/12.gif (easylistchina+easylist.txt: 5274) +# ||yiyipan.com/images/12.gif (easylistchina.txt: 5248) .yiyipan.com/images/12\.gif -# ||yixiaoba.com/juxiao.html (easylistchina+easylist.txt: 5273) +# ||yixiaoba.com/juxiao.html (easylistchina.txt: 5247) .yixiaoba.com/juxiao\.html -# ||yixiaoba.com/js/yxb_normal.js (easylistchina+easylist.txt: 5272) +# ||yixiaoba.com/js/yxb_normal.js (easylistchina.txt: 5246) .yixiaoba.com/js/yxb_normal\.js -# ||yiweimei.net/css/logo.gif (easylistchina+easylist.txt: 5271) +# ||yiweimei.net/css/logo.gif (easylistchina.txt: 5245) .yiweimei.net/css/logo\.gif -# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina+easylist.txt: 5270) +# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina.txt: 5244) .yinyuetai.com/proment/get-play-medias\?json=true&position=preroll -# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina+easylist.txt: 5269) +# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina.txt: 5243) .yinyuetai.com/proment/get-play-medias\?.*&position=pauseroll -# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina+easylist.txt: 5268) +# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina.txt: 5242) .yinyuetai.com/proment/get-play-medias\?.*&position=overlay -# ||yinyuetai.com/partner/$object-subrequest (easylistchina+easylist.txt: 5267) +# ||yinyuetai.com/partner/$object-subrequest (easylistchina.txt: 5241) .yinyuetai.com/partner/ -# ||yinhangkahao.com/go/ (easylistchina+easylist.txt: 5266) +# ||yinhangkahao.com/go/ (easylistchina.txt: 5240) .yinhangkahao.com/go/ -# ||yinfu.cc/sid/*.js (easylistchina+easylist.txt: 5265) +# ||yinfu.cc/sid/*.js (easylistchina.txt: 5239) .yinfu.cc/sid/.*\.js -# ||yinduabc.com/res_base/*/makemoney/ (easylistchina+easylist.txt: 5264) +# ||yinduabc.com/res_base/*/makemoney/ (easylistchina.txt: 5238) .yinduabc.com/res_base/.*/makemoney/ -# ||yimuhe.com/n_ad/ (easylistchina+easylist.txt: 5263) +# ||yimuhe.com/n_ad/ (easylistchina.txt: 5237) .yimuhe.com/n_ad/ -# ||yimg.com/ja/ap/*_wallpaper (easylistchina+easylist.txt: 5261) +# ||yimg.com/ja/ap/*_wallpaper (easylistchina.txt: 5235) .yimg.com/ja/ap/.*_wallpaper -# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina+easylist.txt: 5260) +# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina.txt: 5234) .yimg.com/ja/ap/.*/hk_rm_umu_ -# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina+easylist.txt: 5259) +# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina.txt: 5233) .yimg.com/cv/ae/tw/bwchou/bubble_ -# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina+easylist.txt: 5258) +# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina.txt: 5232) .yimg.com/cv/ae/tw/bwchou/728x210\. -# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina+easylist.txt: 5257) +# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina.txt: 5231) .yimg.com/cv/ae/default/.*_STATIC-JPEG_ -# ||yimg.com/bf/homerun/ysm_ (easylistchina+easylist.txt: 5256) +# ||yimg.com/bf/homerun/ysm_ (easylistchina.txt: 5230) .yimg.com/bf/homerun/ysm_ -# ||yiku51.com/xinzeng/js/ (easylistchina+easylist.txt: 5255) +# ||yiku51.com/xinzeng/js/ (easylistchina.txt: 5229) .yiku51.com/xinzeng/js/ -# ||ygdy8.com/jsy/ (easylistchina+easylist.txt: 5254) +# ||ygdy8.com/jsy/ (easylistchina.txt: 5228) .ygdy8.com/jsy/ -# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina+easylist.txt: 5253) +# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina.txt: 5227) .yeyou.com/2013/new/yeyou-float-window\.js -# ||yesky.com/monitorjs/imp- (easylistchina+easylist.txt: 5252) +# ||yesky.com/monitorjs/imp- (easylistchina.txt: 5226) .yesky.com/monitorjs/imp- -# ||yehaolu.com/js/jjss (easylistchina+easylist.txt: 5251) -.yehaolu.com/js/jjss -# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina+easylist.txt: 5250) +# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina.txt: 5225) .yeeyi.com/bbs/api\.php\?mod=js&bid= -# ||ydstatic.com/images/hao163/600-45_2.jpg (easylistchina+easylist.txt: 5249) -.ydstatic.com/images/hao163/600-45_2\.jpg -# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina+easylist.txt: 5248) +# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina.txt: 5224) .ydstatic.com/fanxian/minisite/promotion/ -# ||yczbb.com/ggimg/ (easylistchina+easylist.txt: 5247) +# ||yczbb.com/ggimg/ (easylistchina.txt: 5223) .yczbb.com/ggimg/ -# ||ychr.com/dlad.js (easylistchina+easylist.txt: 5246) +# ||ychr.com/dlad.js (easylistchina.txt: 5222) .ychr.com/dlad\.js -# ||ybvv.com*/aimg/ (easylistchina+easylist.txt: 5245) +# ||ybvv.com*/aimg/ (easylistchina.txt: 5221) .ybvv.com*./(.*/)?aimg/ -# ||yb983.com/skin/yb983V2013/ad/ (easylistchina+easylist.txt: 5244) +# ||yb983.com/skin/yb983V2013/ad/ (easylistchina.txt: 5220) .yb983.com/skin/yb983V2013/ad/ -# ||yawin.cn/inc/indexad.js (easylistchina+easylist.txt: 5243) +# ||yawin.cn/inc/indexad.js (easylistchina.txt: 5219) .yawin.cn/inc/indexad\.js -# ||yaolanimage.cn/cms/image/960-90 (easylistchina+easylist.txt: 5242) +# ||yaolanimage.cn/cms/image/960-90 (easylistchina.txt: 5218) .yaolanimage.cn/cms/image/960-90 -# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina+easylist.txt: 5241) +# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina.txt: 5217) .yaolanimage.cn/assets/ask/js/ask_video_popup\.js -# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina+easylist.txt: 5240) +# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina.txt: 5216) .yaolan.com/wenku_debris/time_debris/images/mary -# ||yaojixiu.com/960x100.gif (easylistchina+easylist.txt: 5239) +# ||yaojixiu.com/960x100.gif (easylistchina.txt: 5215) .yaojixiu.com/960x100\.gif -# ||yanu.qiniudn.com/270300.jpg (easylistchina+easylist.txt: 5238) +# ||yanu.qiniudn.com/270300.jpg (easylistchina.txt: 5214) .yanu.qiniudn.com/270300\.jpg -# ||yanu.qiniudn.com/*x60. (easylistchina+easylist.txt: 5237) +# ||yanu.qiniudn.com/*x60. (easylistchina.txt: 5213) .yanu.qiniudn.com/.*x60\. -# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina+easylist.txt: 5236) +# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina.txt: 5212) .yanqing888.me/script/Read_Fee_Bottom\.js -# ||yanqing888.me/script/fanye (easylistchina+easylist.txt: 5235) +# ||yanqing888.me/script/fanye (easylistchina.txt: 5211) .yanqing888.me/script/fanye -# ||yanjiao.com/zt/indexad/ (easylistchina+easylist.txt: 5234) +# ||yanjiao.com/zt/indexad/ (easylistchina.txt: 5210) .yanjiao.com/zt/indexad/ -# ||yam.com/ad_yam/ (easylistchina+easylist.txt: 5233) +# ||yam.com/ad_yam/ (easylistchina.txt: 5209) .yam.com/ad_yam/ -# ||yaerwen.com/5200js/59.js (easylistchina+easylist.txt: 5232) +# ||yaerwen.com/5200js/59.js (easylistchina.txt: 5208) .yaerwen.com/5200js/59\.js -# ||y80s.org:85/upload/468-60 (easylistchina+easylist.txt: 5231) +# ||y80s.org:85/upload/468-60 (easylistchina.txt: 5207) .y80s.org:85/upload/468-60 -# ||y80s.org:85/img/960x90.gif (easylistchina+easylist.txt: 5230) +# ||y80s.org:85/img/960x90.gif (easylistchina.txt: 5206) .y80s.org:85/img/960x90\.gif -# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina+easylist.txt: 5229) +# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina.txt: 5205) .y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32\.jpg -# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina+easylist.txt: 5228) +# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina.txt: 5204) .xz7.com/up/UploadPic/2014-5/201452517141272046\.gif -# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina+easylist.txt: 5227) +# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina.txt: 5203) .xz7.com/up/UploadPic/2014-5/201452517124193056\.gif -# ||xz7.com/js/xia (easylistchina+easylist.txt: 5226) +# ||xz7.com/js/xia (easylistchina.txt: 5202) .xz7.com/js/xia -# ||xz7.com/js/top2.js (easylistchina+easylist.txt: 5225) +# ||xz7.com/js/top2.js (easylistchina.txt: 5201) .xz7.com/js/top2\.js -# ||xz7.com/js/jctj.js (easylistchina+easylist.txt: 5224) +# ||xz7.com/js/jctj.js (easylistchina.txt: 5200) .xz7.com/js/jctj\.js -# ||xz7.com/js/gg_ (easylistchina+easylist.txt: 5223) +# ||xz7.com/js/gg_ (easylistchina.txt: 5199) .xz7.com/js/gg_ -# ||xz7.com/js/bann (easylistchina+easylist.txt: 5222) +# ||xz7.com/js/bann (easylistchina.txt: 5198) .xz7.com/js/bann -# ||xz7.com/js/3000.js (easylistchina+easylist.txt: 5221) +# ||xz7.com/js/3000.js (easylistchina.txt: 5197) .xz7.com/js/3000\.js -# ||xyzc.cn/js/pfgg.js (easylistchina+easylist.txt: 5220) +# ||xyzc.cn/js/pfgg.js (easylistchina.txt: 5196) .xyzc.cn/js/pfgg\.js -# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 5219) +# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina.txt: 5195) .xyfdcw.com.cn/userfiles/flash/ -# ||xxx169.org^$third-party (easylistchina+easylist.txt: 5218) +# ||xxx169.org^$third-party (easylistchina.txt: 5194) .xxx169.org -# ||xxsy.net/js/xxsypop (easylistchina+easylist.txt: 5217) +# ||xxsy.net/js/xxsypop (easylistchina.txt: 5193) .xxsy.net/js/xxsypop -# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina+easylist.txt: 5216) +# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina.txt: 5192) .xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71\.jpg -# ||xxrt.net/goto/ (easylistchina+easylist.txt: 5215) -.xxrt.net/goto/ -# ||xxhh.com/xh.js (easylistchina+easylist.txt: 5214) +# ||xxhh.com/xh.js (easylistchina.txt: 5191) .xxhh.com/xh\.js -# ||xxdm.org/js/union/ (easylistchina+easylist.txt: 5213) +# ||xxdm.org/js/union/ (easylistchina.txt: 5190) .xxdm.org/js/union/ -# ||xxdm.com/js/union/ (easylistchina+easylist.txt: 5212) +# ||xxdm.com/js/union/ (easylistchina.txt: 5189) .xxdm.com/js/union/ -# ||xx978.info/images/468-60OK.gif (easylistchina+easylist.txt: 5211) +# ||xx978.info/images/468-60OK.gif (easylistchina.txt: 5188) .xx978.info/images/468-60OK\.gif -# ||xunzai.com/www/all_common.js (easylistchina+easylist.txt: 5210) +# ||xv98.com/js/hengfu (easylistchina.txt: 5187) +.xv98.com/js/hengfu +# ||xv98.com/js/daohang (easylistchina.txt: 5186) +.xv98.com/js/daohang +# ||xunzai.com/www/all_common.js (easylistchina.txt: 5185) .xunzai.com/www/all_common\.js -# ||xunzai.com/static/wwwimg/ (easylistchina+easylist.txt: 5209) +# ||xunzai.com/static/wwwimg/ (easylistchina.txt: 5184) .xunzai.com/static/wwwimg/ -# ||xunzai.com/static/www/ku360300.jpg (easylistchina+easylist.txt: 5208) +# ||xunzai.com/static/www/ku360300.jpg (easylistchina.txt: 5183) .xunzai.com/static/www/ku360300\.jpg -# ||xunying.com^*/ww (easylistchina+easylist.txt: 5207) +# ||xunying.com^*/ww (easylistchina.txt: 5182) .xunying.com/.*/ww -# ||xunleisousuo.com/byou.php (easylistchina+easylist.txt: 5206) +# ||xunleisousuo.com/byou.php (easylistchina.txt: 5181) .xunleisousuo.com/byou\.php -# ||xunleipu.com/a-d-j-s/ (easylistchina+easylist.txt: 5205) +# ||xunleipu.com/a-d-j-s/ (easylistchina.txt: 5180) .xunleipu.com/a-d-j-s/ -# ||xunleihd.com/image/*maose (easylistchina+easylist.txt: 5204) +# ||xunleihd.com/image/*maose (easylistchina.txt: 5179) .xunleihd.com/image/.*maose -# ||xunleihao.com/a-d-j-s/ (easylistchina+easylist.txt: 5203) +# ||xunleihao.com/a-d-j-s/ (easylistchina.txt: 5178) .xunleihao.com/a-d-j-s/ -# ||xun9u.com/css/js/text_link.js (easylistchina+easylist.txt: 5202) +# ||xun9u.com/css/js/text_link.js (easylistchina.txt: 5177) .xun9u.com/css/js/text_link\.js -# ||xue163.com/ajs/end (easylistchina+easylist.txt: 5201) +# ||xue163.com/ajs/end (easylistchina.txt: 5176) .xue163.com/ajs/end -# ||xs8.cn/xs8_stat.js (easylistchina+easylist.txt: 5200) +# ||xs8.cn/xs8_stat.js (easylistchina.txt: 5175) .xs8.cn/xs8_stat\.js -# ||xs.houyi.baofeng.net^ (easylistchina+easylist.txt: 5199) +# ||xs.houyi.baofeng.net^ (easylistchina.txt: 5174) .xs.houyi.baofeng.net -# ||xr8.me/2s.js (easylistchina+easylist.txt: 5198) -.xr8.me/2s\.js -# ||xpgod.com/UploadPic/xpgod/ (easylistchina+easylist.txt: 5196) +# ||xpgod.com/UploadPic/xpgod/ (easylistchina.txt: 5173) .xpgod.com/UploadPic/xpgod/ -# ||xpgod.com/bui/ (easylistchina+easylist.txt: 5195) +# ||xpgod.com/bui/ (easylistchina.txt: 5172) .xpgod.com/bui/ -# ||xp85.com/statics/js/all.js (easylistchina+easylist.txt: 5194) +# ||xp85.com/statics/js/all.js (easylistchina.txt: 5171) .xp85.com/statics/js/all\.js -# ||xp811.com/img/xitong.gif (easylistchina+easylist.txt: 5193) +# ||xp811.com/img/xitong.gif (easylistchina.txt: 5170) .xp811.com/img/xitong\.gif -# ||xp510.com/skin/wdsj.gif (easylistchina+easylist.txt: 5192) +# ||xp510.com/skin/wdsj.gif (easylistchina.txt: 5169) .xp510.com/skin/wdsj\.gif -# ||xntk.net^$script (easylistchina+easylist.txt: 5191) +# ||xntk.net^$script (easylistchina.txt: 5168) .xntk.net -# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina+easylist.txt: 5190) +# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina.txt: 5167) .xnnews.com.cn/templets/js/wzydl\.js -# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina+easylist.txt: 5189) +# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina.txt: 5166) .xnnews.com.cn/templets/js/smsline_double\.js -# ||xnnews.com.cn/Templets/js/*link (easylistchina+easylist.txt: 5188) +# ||xnnews.com.cn/Templets/js/*link (easylistchina.txt: 5165) .xnnews.com.cn/Templets/js/.*link -# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina+easylist.txt: 5187) +# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina.txt: 5164) .xnnews.com.cn/Templets/image/zyyy\.swf -# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina+easylist.txt: 5186) +# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina.txt: 5163) .xnnews.com.cn/templets/image/mpljj\.jpg -# ||xnnews.com.cn/templets/image/*gg (easylistchina+easylist.txt: 5185) +# ||xnnews.com.cn/templets/image/*gg (easylistchina.txt: 5162) .xnnews.com.cn/templets/image/.*gg -# ||xnnews.com.cn/images/yr_wsm.js (easylistchina+easylist.txt: 5184) +# ||xnnews.com.cn/images/yr_wsm.js (easylistchina.txt: 5161) .xnnews.com.cn/images/yr_wsm\.js -# ||xmfish.com/chanel/www/cpm.html (easylistchina+easylist.txt: 5183) +# ||xmfish.com/chanel/www/cpm.html (easylistchina.txt: 5160) .xmfish.com/chanel/www/cpm\.html -# ||xlpu.cc/adv/ (easylistchina+easylist.txt: 5182) +# ||xlpu.cc/adv/ (easylistchina.txt: 5159) .xlpu.cc/adv/ -# ||xkxs.org/js/tongji.js (easylistchina+easylist.txt: 5181) +# ||xkxs.org/js/tongji.js (easylistchina.txt: 5158) .xkxs.org/js/tongji\.js -# ||xkxs.org/js/tl (easylistchina+easylist.txt: 5180) +# ||xkxs.org/js/tl (easylistchina.txt: 5157) .xkxs.org/js/tl -# ||xkxs.org/js/bd (easylistchina+easylist.txt: 5179) +# ||xkxs.org/js/bd (easylistchina.txt: 5156) .xkxs.org/js/bd -# ||xkhouse.com/xkhouse/ggvert/ (easylistchina+easylist.txt: 5178) +# ||xkhouse.com/xkhouse/ggvert/ (easylistchina.txt: 5155) .xkhouse.com/xkhouse/ggvert/ -# ||xkhouse.com/display/displaygg/ (easylistchina+easylist.txt: 5177) +# ||xkhouse.com/display/displaygg/ (easylistchina.txt: 5154) .xkhouse.com/display/displaygg/ -# ||xizi.com/js/rotator.js (easylistchina+easylist.txt: 5176) +# ||xizi.com/js/rotator.js (easylistchina.txt: 5153) .xizi.com/js/rotator\.js -# ||xizi.com/a/ (easylistchina+easylist.txt: 5175) +# ||xizi.com/a/ (easylistchina.txt: 5152) .xizi.com/a/ -# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina+easylist.txt: 5174) +# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina.txt: 5151) .xizhongzi.net/bootstrap/dist/img/ -# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina+easylist.txt: 5173) +# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina.txt: 5150) .xiu8.com/baidu-tieba/.*&forum_name= -# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina+easylist.txt: 5172) +# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina.txt: 5149) .xitong8.com/theme/default/images/index_13\.jpg -# ||xitong8.com/theme/default/images/725x90.gif (easylistchina+easylist.txt: 5171) +# ||xitong8.com/theme/default/images/725x90.gif (easylistchina.txt: 5148) .xitong8.com/theme/default/images/725x90\.gif -# ||xitek.com/idzone/ (easylistchina+easylist.txt: 5170) +# ||xitek.com/idzone/ (easylistchina.txt: 5147) .xitek.com/idzone/ -# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina+easylist.txt: 5169) +# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina.txt: 5146) .xinyi.com/Template/Ant/Js/tonglang\.js -# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina+easylist.txt: 5168) +# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina.txt: 5145) .xinyi.com/Public/config/Couplet/Index41\.js -# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina+easylist.txt: 5167) +# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina.txt: 5144) .xinyi.com/Public/config/Couplet/Index40\.js -# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina+easylist.txt: 5166) +# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina.txt: 5143) .xinyi.com/Public/config/Couplet/Index39\.js -# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina+easylist.txt: 5165) +# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina.txt: 5142) .xinyi.com/Public/config/Couplet/Index100\.js -# ||xinminweekly.com.cn/images/index-985x93- (easylistchina+easylist.txt: 5164) +# ||xinminweekly.com.cn/images/index-985x93- (easylistchina.txt: 5141) .xinminweekly.com.cn/images/index-985x93- -# ||xinminweekly.com.cn/images/*-banner (easylistchina+easylist.txt: 5163) +# ||xinminweekly.com.cn/images/*-banner (easylistchina.txt: 5140) .xinminweekly.com.cn/images/.*-banner -# ||xinmin.cn/framepage/yqLink1.htm (easylistchina+easylist.txt: 5162) +# ||xinmin.cn/framepage/yqLink1.htm (easylistchina.txt: 5139) .xinmin.cn/framepage/yqLink1\.htm -# ||xinmin.cn/framepage/top (easylistchina+easylist.txt: 5161) +# ||xinmin.cn/framepage/top (easylistchina.txt: 5138) .xinmin.cn/framepage/top -# ||xinmin.cn/framepage/left1.htm (easylistchina+easylist.txt: 5160) +# ||xinmin.cn/framepage/left1.htm (easylistchina.txt: 5137) .xinmin.cn/framepage/left1\.htm -# ||xinmin.cn/framepage/foot1.htm (easylistchina+easylist.txt: 5159) +# ||xinmin.cn/framepage/foot1.htm (easylistchina.txt: 5136) .xinmin.cn/framepage/foot1\.htm -# ||xinku.tv/asd/ (easylistchina+easylist.txt: 5158) +# ||xinku.tv/asd/ (easylistchina.txt: 5135) .xinku.tv/asd/ -# ||xinjs.cn/2010/yf (easylistchina+easylist.txt: 5157) +# ||xinjs.cn/2010/yf (easylistchina.txt: 5134) .xinjs.cn/2010/yf -# ||xinji.org/js/float.js (easylistchina+easylist.txt: 5156) +# ||xinji.org/js/float.js (easylistchina.txt: 5133) .xinji.org/js/float\.js -# ||xinhuanet.com^*_tl_$script (easylistchina+easylist.txt: 5155) +# ||xinhuanet.com^*_tl_$script (easylistchina.txt: 5132) .xinhuanet.com/.*_tl_ -# ||xinhuanet.com^*/ad_ (easylistchina+easylist.txt: 5154) +# ||xinhuanet.com^*/ad_ (easylistchina.txt: 5131) .xinhuanet.com/.*/ad_ -# ||xinhuanet.com/v2/ads/ (easylistchina+easylist.txt: 5153) +# ||xinhuanet.com/v2/ads/ (easylistchina.txt: 5130) .xinhuanet.com/v2/ads/ -# ||xinhuanet.com/v/script/coupletAd.js (easylistchina+easylist.txt: 5152) +# ||xinhuanet.com/v/script/coupletAd.js (easylistchina.txt: 5129) .xinhuanet.com/v/script/coupletAd\.js -# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina+easylist.txt: 5151) +# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina.txt: 5128) .xinhuanet.com/titlepic/111243292_title1n\.jpg -# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina+easylist.txt: 5150) +# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina.txt: 5127) .xinhuanet.com/statics/imags/zgyd_ -# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina+easylist.txt: 5149) +# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina.txt: 5126) .xinhuanet.com/plugs/szzc630x80\.jpg -# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina+easylist.txt: 5148) +# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina.txt: 5125) .xinhuanet.com/jjimages/jc/js/fla\.js -# ||xinhuanet.com/images2015/index980 (easylistchina+easylist.txt: 5147) +# ||xinhuanet.com/images2015/index980 (easylistchina.txt: 5124) .xinhuanet.com/images2015/index980 -# ||xinhuanet.com/images/ggdl.jpg (easylistchina+easylist.txt: 5146) +# ||xinhuanet.com/images/ggdl.jpg (easylistchina.txt: 5123) .xinhuanet.com/images/ggdl\.jpg -# ||xinhuanet.com/classad/ (easylistchina+easylist.txt: 5145) +# ||xinhuanet.com/classad/ (easylistchina.txt: 5122) .xinhuanet.com/classad/ -# ||xinhuanet.com/adxl/ (easylistchina+easylist.txt: 5144) +# ||xinhuanet.com/adxl/ (easylistchina.txt: 5121) .xinhuanet.com/adxl/ -# ||xinhuanet.com/2015ad/ (easylistchina+easylist.txt: 5143) +# ||xinhuanet.com/2015ad/ (easylistchina.txt: 5120) .xinhuanet.com/2015ad/ -# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina+easylist.txt: 5142) +# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina.txt: 5119) .xinhuanet.com/2015/html2015/xhfloatAdv\.html -# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina+easylist.txt: 5141) +# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina.txt: 5118) .xinhuanet.com/2014xb/html/if_gg\.htm -# ||xinhuanet.com/2014/imgad/ (easylistchina+easylist.txt: 5140) +# ||xinhuanet.com/2014/imgad/ (easylistchina.txt: 5117) .xinhuanet.com/2014/imgad/ -# ||xinhuanet.com/2014/iframe/AD- (easylistchina+easylist.txt: 5139) +# ||xinhuanet.com/2014/iframe/AD- (easylistchina.txt: 5116) .xinhuanet.com/2014/iframe/AD- -# ||xinhuanet.com/2013images/ltxl.gif (easylistchina+easylist.txt: 5138) +# ||xinhuanet.com/2013images/ltxl.gif (easylistchina.txt: 5115) .xinhuanet.com/2013images/ltxl\.gif -# ||xinhuanet.com/2013images/jfzj.swf (easylistchina+easylist.txt: 5137) +# ||xinhuanet.com/2013images/jfzj.swf (easylistchina.txt: 5114) .xinhuanet.com/2013images/jfzj\.swf -# ||xinhuanet.com/*/ad20 (easylistchina+easylist.txt: 5136) +# ||xinhuanet.com/*/ad20 (easylistchina.txt: 5113) .xinhuanet.com/.*/ad20 -# ||xinbiqi.com/js/pc_ads.js (easylistchina+easylist.txt: 5135) +# ||xinbiqi.com/js/pc_ads.js (easylistchina.txt: 5112) .xinbiqi.com/js/pc_ads\.js -# ||xilu.com/js/bd.js (easylistchina+easylist.txt: 5134) +# ||xilu.com/js/bd.js (easylistchina.txt: 5111) .xilu.com/js/bd\.js -# ||xilu.com/iframe/pagepic/ (easylistchina+easylist.txt: 5133) +# ||xilu.com/iframe/pagepic/ (easylistchina.txt: 5110) .xilu.com/iframe/pagepic/ -# ||xilinjie.com/partner/ (easylistchina+easylist.txt: 5132) +# ||xilinjie.com/partner/ (easylistchina.txt: 5109) .xilinjie.com/partner/ -# ||xigua110.com/a/ (easylistchina+easylist.txt: 5131) +# ||xigua110.com/a/ (easylistchina.txt: 5108) .xigua110.com/a/ -# ||xiazaiba.com/uploadfiles/ads/ (easylistchina+easylist.txt: 5130) +# ||xiazaiba.com/uploadfiles/ads/ (easylistchina.txt: 5107) .xiazaiba.com/uploadfiles/ads/ -# ||xiaopi.com/500/ (easylistchina+easylist.txt: 5129) +# ||xiaopi.com/500/ (easylistchina.txt: 5106) .xiaopi.com/500/ -# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina+easylist.txt: 5128) +# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina.txt: 5105) .xiaomengku.com/static/template/cms/v3/js/activity\.js -# ||xiaoliaolianmeng.com^$subdocument (easylistchina+easylist.txt: 5127) +# ||xiaoliaolianmeng.com^$subdocument (easylistchina.txt: 5104) .xiaoliaolianmeng.com -# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina+easylist.txt: 5126) +# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina.txt: 5103) .xiaoliaolianmeng.com/pic/weipinhui/ -# ||xiao235.com^$script (easylistchina+easylist.txt: 5125) -.xiao235.com -# ||xiangmucangku.com/uploads/allimg/ (easylistchina+easylist.txt: 5124) +# ||xiangmucangku.com/uploads/allimg/ (easylistchina.txt: 5102) .xiangmucangku.com/uploads/allimg/ -# ||xiangai365.com/ad_js/ (easylistchina+easylist.txt: 5123) +# ||xiangai365.com/ad_js/ (easylistchina.txt: 5101) .xiangai365.com/ad_js/ -# ||xiancn.com^*/adv_content/ (easylistchina+easylist.txt: 5122) +# ||xiancn.com^*/adv_content/ (easylistchina.txt: 5100) .xiancn.com/.*/adv_content/ -# ||xiami.com/player/iframe-adm? (easylistchina+easylist.txt: 5121) +# ||xiami.com/player/iframe-adm? (easylistchina.txt: 5099) .xiami.com/player/iframe-adm\? -# ||xiaav.me/twdsb/ (easylistchina+easylist.txt: 5120) -.xiaav.me/twdsb/ -# ||xhub.cn/tanchu.js (easylistchina+easylist.txt: 5119) +# ||xhub.cn/tanchu.js (easylistchina.txt: 5098) .xhub.cn/tanchu\.js -# ||xgrb.cn/newad/ (easylistchina+easylist.txt: 5118) +# ||xgrb.cn/newad/ (easylistchina.txt: 5097) .xgrb.cn/newad/ -# ||xghylt.com/newad/ (easylistchina+easylist.txt: 5117) +# ||xghylt.com/newad/ (easylistchina.txt: 5096) .xghylt.com/newad/ -# ||xghylt.com/api.php?mod=ad&adid= (easylistchina+easylist.txt: 5116) +# ||xghylt.com/api.php?mod=ad&adid= (easylistchina.txt: 5095) .xghylt.com/api\.php\?mod=ad&adid= -# ||xemh.com/other/*_ads (easylistchina+easylist.txt: 5115) +# ||xemh.com/other/*_ads (easylistchina.txt: 5094) .xemh.com/other/.*_ads -# ||xdowns.com/js/lefttuijian.js (easylistchina+easylist.txt: 5114) +# ||xdowns.com/js/lefttuijian.js (easylistchina.txt: 5093) .xdowns.com/js/lefttuijian\.js -# ||xdowns.com/info.js (easylistchina+easylist.txt: 5113) +# ||xdowns.com/info.js (easylistchina.txt: 5092) .xdowns.com/info\.js -# ||xdowns.com/ggco.js (easylistchina+easylist.txt: 5112) +# ||xdowns.com/ggco.js (easylistchina.txt: 5091) .xdowns.com/ggco\.js -# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina+easylist.txt: 5111) +# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina.txt: 5090) .xdkb.net/index/temp/3813\.files/banner\.jpg -# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina+easylist.txt: 5110) +# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina.txt: 5089) .xdjishu.com/_uploadfile/image/20150722/20150722164052_98036\.gif -# ||xdf.cn/v4/js/leyus/ (easylistchina+easylist.txt: 5109) +# ||xdf.cn/v4/js/leyus/ (easylistchina.txt: 5088) .xdf.cn/v4/js/leyus/ -# ||xdf.cn/v4/js/adm- (easylistchina+easylist.txt: 5108) +# ||xdf.cn/v4/js/adm- (easylistchina.txt: 5087) .xdf.cn/v4/js/adm- -# ||xdf.cn/v4/images/index/ads/ (easylistchina+easylist.txt: 5107) +# ||xdf.cn/v4/images/index/ads/ (easylistchina.txt: 5086) .xdf.cn/v4/images/index/ads/ -# ||xdcad.net/source/plugin/disad/disad.js (easylistchina+easylist.txt: 5106) +# ||xdcad.net/source/plugin/disad/disad.js (easylistchina.txt: 5085) .xdcad.net/source/plugin/disad/disad\.js -# ||xczhibo.com/xml/ (easylistchina+easylist.txt: 5105) +# ||xczhibo.com/xml/ (easylistchina.txt: 5084) .xczhibo.com/xml/ -# ||xc.macd.cn^ (easylistchina+easylist.txt: 5104) +# ||xc.macd.cn^ (easylistchina.txt: 5083) .xc.macd.cn -# ||xb2s.com:8080/mjq.js (easylistchina+easylist.txt: 5103) +# ||xb2s.com:8080/mjq.js (easylistchina.txt: 5082) .xb2s.com:8080/mjq\.js -# ||x.jd.com/static/js/cpc.js (easylistchina+easylist.txt: 5102) +# ||xav*.com/js/float.js (easylistchina.txt: 5081) +.xav*./.*\.com/js/float\.js +.xav*.com/js/float\.js +# ||xav*.com/attachment/Mon_ (easylistchina.txt: 5080) +.xav*./.*\.com/attachment/Mon_ +.xav*.com/attachment/Mon_ +# ||xav*.com/ad1/ (easylistchina.txt: 5079) +.xav*./.*\.com/ad1/ +.xav*.com/ad1/ +# ||x.jd.com/static/js/cpc.js (easylistchina.txt: 5078) .x.jd.com/static/js/cpc\.js -# ||x.jd.com/static/js/auto.js (easylistchina+easylist.txt: 5101) +# ||x.jd.com/static/js/auto.js (easylistchina.txt: 5077) .x.jd.com/static/js/auto\.js -# ||x.itiexue.net/html/$script (easylistchina+easylist.txt: 5100) +# ||x.itiexue.net/html/$script (easylistchina.txt: 5076) .x.itiexue.net/html/ -# ||wzbh.org/imgad/ (easylistchina+easylist.txt: 5099) +# ||wzbh.org/imgad/ (easylistchina.txt: 5075) .wzbh.org/imgad/ -# ||wyzu.cn/js/3.js (easylistchina+easylist.txt: 5098) +# ||wyzu.cn/js/3.js (easylistchina.txt: 5074) .wyzu.cn/js/3\.js -# ||wyh.tv/image/upload/ad/ (easylistchina+easylist.txt: 5097) +# ||wyh.tv/image/upload/ad/ (easylistchina.txt: 5073) .wyh.tv/image/upload/ad/ -# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina+easylist.txt: 5096) +# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina.txt: 5072) .wxrb.com/g/js/baidu\.cbjs\.m\.js -# ||wxdown.net/images/*.gif (easylistchina+easylist.txt: 5095) +# ||wxdown.net/images/*.gif (easylistchina.txt: 5071) .wxdown.net/images/.*\.gif -# ||wx.sina.com.cn/iframe/pdps/ (easylistchina+easylist.txt: 5094) +# ||wx.sina.com.cn/iframe/pdps/ (easylistchina.txt: 5070) .wx.sina.com.cn/iframe/pdps/ -# ||wx.56.com/youxitg/ (easylistchina+easylist.txt: 5093) +# ||wx.56.com/youxitg/ (easylistchina.txt: 5069) .wx.56.com/youxitg/ -# ||wwwcdn.kimiss.net/btn/ (easylistchina+easylist.txt: 5092) +# ||wwwcdn.kimiss.net/btn/ (easylistchina.txt: 5068) .wwwcdn.kimiss.net/btn/ -# ||www.111cn.net/pic/ (easylistchina+easylist.txt: 5090) +# ||www.111cn.net/pic/ (easylistchina.txt: 5066) .www.111cn.net/pic/ -# ||www-dnwx-com.anquanbao.cn/pic (easylistchina+easylist.txt: 5089) +# ||www-dnwx-com.anquanbao.cn/pic (easylistchina.txt: 5065) .www-dnwx-com.anquanbao.cn/pic -# ||wuyou.*/0000/banner.gif (easylistchina+easylist.txt: 5088) +# ||wuyou.*/0000/banner.gif (easylistchina.txt: 5064) .wuyou.*./(.*/)?0000/banner\.gif -# ||wuxi.cn/index.php?m=poster& (easylistchina+easylist.txt: 5087) +# ||wuxi.cn/index.php?m=poster& (easylistchina.txt: 5063) .wuxi.cn/index\.php\?m=poster& -# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina+easylist.txt: 5086) +# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina.txt: 5062) .wuseng.com/templets/default/statics/js/mm\.js -# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina+easylist.txt: 5085) +# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina.txt: 5061) .wumii.com/ext/widget/hot\.htm\?prefix=http://blog\.const\.net\.cn& -# ||wumii.cn/site_images/c/ (easylistchina+easylist.txt: 5084) +# ||wumii.cn/site_images/c/ (easylistchina.txt: 5060) .wumii.cn/site_images/c/ -# ||wuhan.net.cn/show.html (easylistchina+easylist.txt: 5083) +# ||wuhan.net.cn/show.html (easylistchina.txt: 5059) .wuhan.net.cn/show\.html -# ||wuhan.net.cn/guanggaojs/ (easylistchina+easylist.txt: 5082) +# ||wuhan.net.cn/guanggaojs/ (easylistchina.txt: 5058) .wuhan.net.cn/guanggaojs/ -# ||wudilong.com/ssb/include/js/php.js (easylistchina+easylist.txt: 5081) +# ||wudilong.com/ssb/include/js/php.js (easylistchina.txt: 5057) .wudilong.com/ssb/include/js/php\.js -# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina+easylist.txt: 5080) +# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina.txt: 5056) .wszhibo.com/xml/tvAdtext\.ashx -# ||wszhibo.com/Uploadfiles/*.gif (easylistchina+easylist.txt: 5079) +# ||wszhibo.com/Uploadfiles/*.gif (easylistchina.txt: 5055) .wszhibo.com/Uploadfiles/.*\.gif -# ||wpkg.org/my.js (easylistchina+easylist.txt: 5078) -.wpkg.org/my\.js -# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina+easylist.txt: 5077) +# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina.txt: 5054) .wpjam.qiniudn.com/wpjam/banner/.*g$ -# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina+easylist.txt: 5076) +# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina.txt: 5053) .woxiu.com/xapi/offsite_swf_more\.php\? -# ||woxiu.com/xapi/get_pre_config.php (easylistchina+easylist.txt: 5075) +# ||woxiu.com/xapi/get_pre_config.php (easylistchina.txt: 5052) .woxiu.com/xapi/get_pre_config\.php -# ||wowody.net/public/wowo/2345.html (easylistchina+easylist.txt: 5074) +# ||wowody.net/public/wowo/2345.html (easylistchina.txt: 5051) .wowody.net/public/wowo/2345\.html -# ||wowody.net/public/wowo/*play_ (easylistchina+easylist.txt: 5073) +# ||wowody.net/public/wowo/*play_ (easylistchina.txt: 5050) .wowody.net/public/wowo/.*play_ -# ||woshipm.com/wp-files/*qidian (easylistchina+easylist.txt: 5072) +# ||woshipm.com/wp-files/*qidian (easylistchina.txt: 5049) .woshipm.com/wp-files/.*qidian -# ||wo318.com/template/ (easylistchina+easylist.txt: 5071) +# ||wo318.com/template/ (easylistchina.txt: 5048) .wo318.com/template/ -# ||wo318.com/sjs/km/xixitv.js (easylistchina+easylist.txt: 5070) +# ||wo318.com/sjs/km/xixitv.js (easylistchina.txt: 5047) .wo318.com/sjs/km/xixitv\.js -# ||wo318.com/good/ (easylistchina+easylist.txt: 5069) +# ||wo318.com/good/ (easylistchina.txt: 5046) .wo318.com/good/ -# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina+easylist.txt: 5068) +# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina.txt: 5045) .wlnews.zjol.com.cn/wlrb/bbs/ -# ||wlnews.zjol.com.cn/bbs/ (easylistchina+easylist.txt: 5067) +# ||wlnews.zjol.com.cn/bbs/ (easylistchina.txt: 5044) .wlnews.zjol.com.cn/bbs/ -# ||wishdown.com/images/*.gif (easylistchina+easylist.txt: 5066) +# ||wishdown.com/images/*.gif (easylistchina.txt: 5043) .wishdown.com/images/.*\.gif -# ||winvvv.com^$subdocument (easylistchina+easylist.txt: 5065) +# ||winvvv.com^$subdocument (easylistchina.txt: 5042) .winvvv.com -# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina+easylist.txt: 5064) +# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina.txt: 5041) .winba.me/wp-content/uploads/2015/10/image\.jpg -# ||winba.me/wp-content/uploads/*/QQ% (easylistchina+easylist.txt: 5063) +# ||winba.me/wp-content/uploads/*/QQ% (easylistchina.txt: 5040) .winba.me/wp-content/uploads/.*/QQ% -# ||winba.me/wp-content/uploads/*/300x300. (easylistchina+easylist.txt: 5062) +# ||winba.me/wp-content/uploads/*/300x300. (easylistchina.txt: 5039) .winba.me/wp-content/uploads/.*/300x300\. -# ||whsfzx.com/jj/ (easylistchina+easylist.txt: 5061) +# ||whsfzx.com/jj/ (easylistchina.txt: 5038) .whsfzx.com/jj/ -# ||whsfzx.com/img/top.js (easylistchina+easylist.txt: 5060) +# ||whsfzx.com/img/top.js (easylistchina.txt: 5037) .whsfzx.com/img/top\.js -# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina+easylist.txt: 5059) +# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina.txt: 5036) .whqyw.com/file/upload/201408/01/09-41-45-92-1\.jpg -# ||wholehk.com/madads$subdocument (easylistchina+easylist.txt: 5058) +# ||wholehk.com/madads$subdocument (easylistchina.txt: 5035) .wholehk.com/madads -# ||whnews.cn/wh_public/dl/ (easylistchina+easylist.txt: 5057) +# ||whnews.cn/wh_public/dl/ (easylistchina.txt: 5034) .whnews.cn/wh_public/dl/ -# ||whnews.cn/news/data/*/pf.js (easylistchina+easylist.txt: 5056) +# ||whnews.cn/news/data/*/pf.js (easylistchina.txt: 5033) .whnews.cn/news/data/.*/pf\.js -# ||whinfo.net.cn/ad20 (easylistchina+easylist.txt: 5055) +# ||whinfo.net.cn/ad20 (easylistchina.txt: 5032) .whinfo.net.cn/ad20 -# ||wgun.net/data/yahoo_ad.html (easylistchina+easylist.txt: 5054) +# ||wgun.net/data/yahoo_ad.html (easylistchina.txt: 5031) .wgun.net/data/yahoo_ad\.html -# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina+easylist.txt: 5053) +# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina.txt: 5030) .wfcmw.cn/cmw_2015/ad/flash/ -# ||weste.net/js/showpagead.js (easylistchina+easylist.txt: 5052) +# ||weste.net/js/showpagead.js (easylistchina.txt: 5029) .weste.net/js/showpagead\.js -# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina+easylist.txt: 5051) +# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina.txt: 5028) .wenyoutai.com/template/comiis_xwyt/ads/ -# ||wenxuecity.com/service/ad/ (easylistchina+easylist.txt: 5050) +# ||wenxuecity.com/service/ad/ (easylistchina.txt: 5027) .wenxuecity.com/service/ad/ -# ||wenwo.com^*/js/common/adAudit. (easylistchina+easylist.txt: 5049) +# ||wenwo.com^*/js/common/adAudit. (easylistchina.txt: 5026) .wenwo.com/.*/js/common/adAudit\. -# ||wenku8.com/banner.jpg (easylistchina+easylist.txt: 5048) +# ||wenku8.com/banner.jpg (easylistchina.txt: 5025) .wenku8.com/banner\.jpg -# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina+easylist.txt: 5047) +# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina.txt: 5024) .wendu.cn/templates/wzdsb/js/yanue\.pop\.js -# ||wendellyu.com/banner/ (easylistchina+easylist.txt: 5046) +# ||wendellyu.com/banner/ (easylistchina.txt: 5023) .wendellyu.com/banner/ -# ||weixin.qqday.com/js/tj.js (easylistchina+easylist.txt: 5045) +# ||weixin.qqday.com/js/tj.js (easylistchina.txt: 5022) .weixin.qqday.com/js/tj\.js -# ||weixin.qqday.com/js/rb.js (easylistchina+easylist.txt: 5044) +# ||weixin.qqday.com/js/rb.js (easylistchina.txt: 5021) .weixin.qqday.com/js/rb\.js -# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina+easylist.txt: 5043) +# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina.txt: 5020) .weiqitv.com/Uploads/20140721/53cca3becc50b\.jpg -# ||weiqitv.com/Uploads/185_440_ (easylistchina+easylist.txt: 5042) +# ||weiqitv.com/Uploads/185_440_ (easylistchina.txt: 5019) .weiqitv.com/Uploads/185_440_ -# ||weiqitv.com/Public/img/kt.jpg (easylistchina+easylist.txt: 5041) +# ||weiqitv.com/Public/img/kt.jpg (easylistchina.txt: 5018) .weiqitv.com/Public/img/kt\.jpg -# ||weidea.net/wp-content/host_ads.png (easylistchina+easylist.txt: 5040) +# ||weidea.net/wp-content/host_ads.png (easylistchina.txt: 5017) .weidea.net/wp-content/host_ads\.png -# ||weidea.net/wp-content/ads_img/ (easylistchina+easylist.txt: 5039) +# ||weidea.net/wp-content/ads_img/ (easylistchina.txt: 5016) .weidea.net/wp-content/ads_img/ -# ||weibo.com/images/ad_ (easylistchina+easylist.txt: 5038) +# ||weibo.com/images/ad_ (easylistchina.txt: 5015) .weibo.com/images/ad_ -# ||wei2008.com/js/t_win (easylistchina+easylist.txt: 5037) +# ||wei2008.com/js/t_win (easylistchina.txt: 5014) .wei2008.com/js/t_win -# ||wei2008.com/js/list_gg.js (easylistchina+easylist.txt: 5036) +# ||wei2008.com/js/list_gg.js (easylistchina.txt: 5013) .wei2008.com/js/list_gg\.js -# ||wei2008.com/js/index_ (easylistchina+easylist.txt: 5035) +# ||wei2008.com/js/index_ (easylistchina.txt: 5012) .wei2008.com/js/index_ -# ||wei2008.com/js/img (easylistchina+easylist.txt: 5034) +# ||wei2008.com/js/img (easylistchina.txt: 5011) .wei2008.com/js/img -# ||wei2008.com/js/down (easylistchina+easylist.txt: 5033) +# ||wei2008.com/js/down (easylistchina.txt: 5010) .wei2008.com/js/down -# ||wei2008.com/js/copyright (easylistchina+easylist.txt: 5032) +# ||wei2008.com/js/copyright (easylistchina.txt: 5009) .wei2008.com/js/copyright -# ||wei2008.com/js/960X90 (easylistchina+easylist.txt: 5031) +# ||wei2008.com/js/960X90 (easylistchina.txt: 5008) .wei2008.com/js/960X90 -# ||wehefei.com/uploadfile/flashad/ (easylistchina+easylist.txt: 5030) +# ||wehefei.com/uploadfile/flashad/ (easylistchina.txt: 5007) .wehefei.com/uploadfile/flashad/ -# ||wehefei.com/htmlphp/tmall/ (easylistchina+easylist.txt: 5029) +# ||wehefei.com/htmlphp/tmall/ (easylistchina.txt: 5006) .wehefei.com/htmlphp/tmall/ -# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina+easylist.txt: 5028) +# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina.txt: 5005) .weeiy.com/wp-content/uploads/2013/12/2345ie\.jpg -# ||webkaka.com/script/duilian_ (easylistchina+easylist.txt: 5027) +# ||webkaka.com/script/duilian_ (easylistchina.txt: 5004) .webkaka.com/script/duilian_ -# ||webkaka.com*/click/$image (easylistchina+easylist.txt: 5026) +# ||webkaka.com*/click/$image (easylistchina.txt: 5003) .webkaka.com*./(.*/)?click/ -# ||webjx.com/zanzhushang/ (easylistchina+easylist.txt: 5025) +# ||webjx.com/zanzhushang/ (easylistchina.txt: 5002) .webjx.com/zanzhushang/ -# ||webacg.com/http/js/1.js (easylistchina+easylist.txt: 5024) +# ||webacg.com/http/js/1.js (easylistchina.txt: 5001) .webacg.com/http/js/1\.js -# ||webacg.com/data/js/ (easylistchina+easylist.txt: 5023) +# ||webacg.com/data/js/ (easylistchina.txt: 5000) .webacg.com/data/js/ -# ||web.900.la^ (easylistchina+easylist.txt: 5022) +# ||web.900.la^ (easylistchina.txt: 4999) .web.900.la -# ||weathercn.com/m_mobile/ad_image/ (easylistchina+easylist.txt: 5021) +# ||weathercn.com/m_mobile/ad_image/ (easylistchina.txt: 4998) .weathercn.com/m_mobile/ad_image/ -# ||we54.com/poster/ (easylistchina+easylist.txt: 5020) +# ||we54.com/poster/ (easylistchina.txt: 4997) .we54.com/poster/ -# ||we54.com/54index_ad/ (easylistchina+easylist.txt: 5019) +# ||we54.com/54index_ad/ (easylistchina.txt: 4996) .we54.com/54index_ad/ -# ||wdown.cn/falala/ (easylistchina+easylist.txt: 5018) +# ||wdown.cn/falala/ (easylistchina.txt: 4995) .wdown.cn/falala/ -# ||wdlm.cn/img/ad1/ (easylistchina+easylist.txt: 5017) +# ||wdlm.cn/img/ad1/ (easylistchina.txt: 4994) .wdlm.cn/img/ad1/ -# ||wd147.com/templets/mm/js/cs.js (easylistchina+easylist.txt: 5016) +# ||wd147.com/templets/mm/js/cs.js (easylistchina.txt: 4993) .wd147.com/templets/mm/js/cs\.js -# ||wbzol.com/show/images/show.htm (easylistchina+easylist.txt: 5015) +# ||wbzol.com/show/images/show.htm (easylistchina.txt: 4992) .wbzol.com/show/images/show\.htm -# ||wanwan.sina.com.cn/third_party/ (easylistchina+easylist.txt: 5014) +# ||wanwan.sina.com.cn/third_party/ (easylistchina.txt: 4991) .wanwan.sina.com.cn/third_party/ -# ||wannianli.com.cn/style/ad_ (easylistchina+easylist.txt: 5013) +# ||wannianli.com.cn/style/ad_ (easylistchina.txt: 4990) .wannianli.com.cn/style/ad_ -# ||wangyouxs.com/A/$script (easylistchina+easylist.txt: 5012) +# ||wangyouxs.com/A/$script (easylistchina.txt: 4989) .wangyouxs.com/A/ -# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina+easylist.txt: 5011) +# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina.txt: 4988) .wangpanwu.com/images/zhuolaoshigg\.gif -# ||wangpanwu.com/images/*guanggao (easylistchina+easylist.txt: 5010) +# ||wangpanwu.com/images/*guanggao (easylistchina.txt: 4987) .wangpanwu.com/images/.*guanggao -# ||wangjing.cn/upload/ftp/ad/ (easylistchina+easylist.txt: 5009) +# ||wangjing.cn/upload/ftp/ad/ (easylistchina.txt: 4986) .wangjing.cn/upload/ftp/ad/ -# ||wangjing.cn/images/js/YlFloat.js (easylistchina+easylist.txt: 5008) +# ||wangjing.cn/images/js/YlFloat.js (easylistchina.txt: 4985) .wangjing.cn/images/js/YlFloat\.js -# ||wangjing.cn/iframe/zhounian.php? (easylistchina+easylist.txt: 5007) +# ||wangjing.cn/iframe/zhounian.php? (easylistchina.txt: 4984) .wangjing.cn/iframe/zhounian\.php\? -# ||wangjing.cn*/upload/com/ (easylistchina+easylist.txt: 5006) +# ||wangjing.cn*/upload/com/ (easylistchina.txt: 4983) .wangjing.cn*./(.*/)?upload/com/ -# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina+easylist.txt: 5005) +# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina.txt: 4982) .wanghualang.com/wp-content/gallery/thumbnail/.*-ad\. -# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina+easylist.txt: 5004) +# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina.txt: 4981) .wanghualang.com/wp-content/gallery/resource/wp\.png -# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina+easylist.txt: 5003) +# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina.txt: 4980) .wanghualang.com/wp-content/gallery/resource/Aliyun- -# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina+easylist.txt: 5002) +# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina.txt: 4979) .wangdaizhijia.com/data/attachment/portal/ -# ||wan.sogou.com/static/fragment/ (easylistchina+easylist.txt: 5000) +# ||wan.sogou.com/static/fragment/ (easylistchina.txt: 4977) .wan.sogou.com/static/fragment/ -# ||wan.sogou.com/pop/ (easylistchina+easylist.txt: 4999) +# ||wan.sogou.com/pop/ (easylistchina.txt: 4976) .wan.sogou.com/pop/ -# ||wan.sogou.com/cdn/$subdocument (easylistchina+easylist.txt: 4998) +# ||wan.sogou.com/cdn/$subdocument (easylistchina.txt: 4975) .wan.sogou.com/cdn/ -# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina+easylist.txt: 4996) +# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina.txt: 4973) .wa.kuwo.cn/lyrics/img/kwgg/ -# ||w010w.com.cn^$subdocument (easylistchina+easylist.txt: 4995) +# ||w010w.com.cn^$subdocument (easylistchina.txt: 4972) .w010w.com.cn -# ||vvvdj.com/sms/ (easylistchina+easylist.txt: 4994) +# ||vvvdj.com/sms/ (easylistchina.txt: 4971) .vvvdj.com/sms/ -# ||vvshu.com/images/cp_ (easylistchina+easylist.txt: 4993) +# ||vvshu.com/images/cp_ (easylistchina.txt: 4970) .vvshu.com/images/cp_ -# ||vvpan.com^*/zsz (easylistchina+easylist.txt: 4992) +# ||vvpan.com^*/zsz (easylistchina.txt: 4969) .vvpan.com/.*/zsz -# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina+easylist.txt: 4991) +# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina.txt: 4968) .vvpan.com/templates/32666/imgs/down001\.gif -# ||vupload.duowan.com^ (easylistchina+easylist.txt: 4990) +# ||vupload.duowan.com^ (easylistchina.txt: 4967) .vupload.duowan.com -# ||vpser.b0.upaiyun.com^$image (easylistchina+easylist.txt: 4989) +# ||vpser.b0.upaiyun.com^$image (easylistchina.txt: 4966) .vpser.b0.upaiyun.com -# ||voc.com.cn/Frame/qqms_cs.html (easylistchina+easylist.txt: 4988) +# ||voc.com.cn/Frame/qqms_cs.html (easylistchina.txt: 4965) .voc.com.cn/Frame/qqms_cs\.html -# ||voc.com.cn/adsClick/ (easylistchina+easylist.txt: 4987) +# ||voc.com.cn/adsClick/ (easylistchina.txt: 4964) .voc.com.cn/adsClick/ -# ||vnet.cn^*.html (easylistchina+easylist.txt: 4986) +# ||vnet.cn^*.html (easylistchina.txt: 4963) .vnet.cn/.*\.html -# ||vkeke.net/public/agd (easylistchina+easylist.txt: 4985) +# ||vkeke.net/public/agd (easylistchina.txt: 4962) .vkeke.net/public/agd -# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina+easylist.txt: 4984) +# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina.txt: 4961) .vjie.com/templates/lieqi/js/_banner\.js -# ||vista.tuwan.com/s.js (easylistchina+easylist.txt: 4983) +# ||vista.tuwan.com/s.js (easylistchina.txt: 4960) .vista.tuwan.com/s\.js -# ||vista.tgbusdata.cn/s.js (easylistchina+easylist.txt: 4982) +# ||vista.tgbusdata.cn/s.js (easylistchina.txt: 4959) .vista.tgbusdata.cn/s\.js -# ||vista.tgbus.com/s.js (easylistchina+easylist.txt: 4981) +# ||vista.tgbus.com/s.js (easylistchina.txt: 4958) .vista.tgbus.com/s\.js -# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina+easylist.txt: 4980) +# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina.txt: 4957) .vista.tgbus.com/data\.ashx[^\w%.-].*_SINGLE_SETJSONADSLOT -# ||vipcn.com/images/jk500.gif (easylistchina+easylist.txt: 4979) +# ||visit-japan.jp/parts/visitjapan_f35_170_170.jpg (easylistchina.txt: 4956) +.visit-japan.jp/parts/visitjapan_f35_170_170\.jpg +# ||vipcn.com/images/jk500.gif (easylistchina.txt: 4955) .vipcn.com/images/jk500\.gif -# ||vipcn.com/images/cfdh*.gif (easylistchina+easylist.txt: 4978) +# ||vipcn.com/images/cfdh*.gif (easylistchina.txt: 4954) .vipcn.com/images/cfdh.*\.gif -# ||vipcn.com/hezuo/ (easylistchina+easylist.txt: 4977) +# ||vipcn.com/hezuo/ (easylistchina.txt: 4953) .vipcn.com/hezuo/ -# ||vip.luanren.com/data/*.swf (easylistchina+easylist.txt: 4976) +# ||vip.luanren.com/data/*.swf (easylistchina.txt: 4952) .vip.luanren.com/data/.*\.swf -# ||videowood.tv/popjavascript (easylistchina+easylist.txt: 4975) +# ||videowood.tv/popjavascript (easylistchina.txt: 4951) .videowood.tv/popjavascript -# ||videowood.me/assets/js/popup.js (easylistchina+easylist.txt: 4974) +# ||videowood.me/assets/js/popup.js (easylistchina.txt: 4950) .videowood.me/assets/js/popup\.js -# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina+easylist.txt: 4973) +# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina.txt: 4949) .videospeedy.com/Res/images/wuy0u\.jpg -# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina+easylist.txt: 4972) +# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4948) .video.sdo.com/index\.php\?m=poster&c=index&a=show_poster&id= -# ||vhiphop.qiniudn.com/cloth (easylistchina+easylist.txt: 4971) +# ||vhiphop.qiniudn.com/cloth (easylistchina.txt: 4947) .vhiphop.qiniudn.com/cloth -# ||vgugu.com/iframes/xp- (easylistchina+easylist.txt: 4970) +# ||vgugu.com/iframes/xp- (easylistchina.txt: 4946) .vgugu.com/iframes/xp- -# ||verypsp.com:8081/sy.jpg (easylistchina+easylist.txt: 4969) +# ||verypsp.com:8081/sy.jpg (easylistchina.txt: 4945) .verypsp.com:8081/sy\.jpg -# ||veryim.net^*/1111 (easylistchina+easylist.txt: 4968) +# ||veryim.net^*/1111 (easylistchina.txt: 4944) .veryim.net/.*/1111 -# ||veryhuo.com/plus/js/ (easylistchina+easylist.txt: 4967) +# ||veryhuo.com/plus/js/ (easylistchina.txt: 4943) .veryhuo.com/plus/js/ -# ||vdisk.cn/img/dcr2.gif (easylistchina+easylist.txt: 4966) +# ||vdisk.cn/img/dcr2.gif (easylistchina.txt: 4942) .vdisk.cn/img/dcr2\.gif -# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina+easylist.txt: 4965) +# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina.txt: 4941) .vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49\.gif -# ||vas.funshion.com^ (easylistchina+easylist.txt: 4964) +# ||vas.funshion.com^ (easylistchina.txt: 4940) .vas.funshion.com -# ||vansky.com/index_files/*.gif (easylistchina+easylist.txt: 4963) +# ||vansky.com/index_files/*.gif (easylistchina.txt: 4939) .vansky.com/index_files/.*\.gif -# ||vansky.com/images/goldenflat2.jpg (easylistchina+easylist.txt: 4962) +# ||vansky.com/images/goldenflat2.jpg (easylistchina.txt: 4938) .vansky.com/images/goldenflat2\.jpg -# ||vansky.com/images/banner.gif (easylistchina+easylist.txt: 4961) +# ||vansky.com/images/banner.gif (easylistchina.txt: 4937) .vansky.com/images/banner\.gif -# ||vanpeople.com/images_site/adb/ (easylistchina+easylist.txt: 4960) +# ||vanpeople.com/images_site/adb/ (easylistchina.txt: 4936) .vanpeople.com/images_site/adb/ -# ||vanpeople.com/ad$subdocument (easylistchina+easylist.txt: 4959) +# ||vanpeople.com/ad$subdocument (easylistchina.txt: 4935) .vanpeople.com/ad -# ||van698.com/api.php?mod=js&bid=369 (easylistchina+easylist.txt: 4958) +# ||van698.com/api.php?mod=js&bid=369 (easylistchina.txt: 4934) .van698.com/api\.php\?mod=js&bid=369 -# ||v8gay.com/apps/misc.php?action=advert& (easylistchina+easylist.txt: 4957) +# ||v8gay.com/apps/misc.php?action=advert& (easylistchina.txt: 4933) .v8gay.com/apps/misc\.php\?action=advert& -# ||v1.cn/cms/*/js/ad_new.js (easylistchina+easylist.txt: 4956) +# ||v1.cn/cms/*/js/ad_new.js (easylistchina.txt: 4932) .v1.cn/cms/.*/js/ad_new\.js -# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina+easylist.txt: 4955) +# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina.txt: 4931) .v.huanqiu.com/tres/xml/vda\.xml -# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina+easylist.txt: 4954) +# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina.txt: 4930) .v.beta.yinyuetai.com/swf/plugins_new\.xml\? -# ||v-56.com^ (easylistchina+easylist.txt: 4953) +# ||v-56.com^ (easylistchina.txt: 4929) .v-56.com -# ||uzzf.com/js/top_970.js (easylistchina+easylist.txt: 4952) +# ||uzzf.com/js/top_970.js (easylistchina.txt: 4928) .uzzf.com/js/top_970\.js -# ||uzzf.com/js/down_ (easylistchina+easylist.txt: 4951) +# ||uzzf.com/js/down_ (easylistchina.txt: 4927) .uzzf.com/js/down_ -# ||uzzf.com/js/all.js (easylistchina+easylist.txt: 4950) +# ||uzzf.com/js/all.js (easylistchina.txt: 4926) .uzzf.com/js/all\.js -# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina+easylist.txt: 4949) +# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina.txt: 4925) .uwants.com/dfp_forum\.php\?au=Uwants_Web_ -# ||uuu9.tieba.com^$subdocument (easylistchina+easylist.txt: 4948) +# ||uuu9.tieba.com^$subdocument (easylistchina.txt: 4924) .uuu9.tieba.com -# ||uuu9.com/yoyo_ (easylistchina+easylist.txt: 4947) +# ||uuu9.com/yoyo_ (easylistchina.txt: 4923) .uuu9.com/yoyo_ -# ||uuu9.com/stat/shouye/ (easylistchina+easylist.txt: 4946) +# ||uuu9.com/stat/shouye/ (easylistchina.txt: 4922) .uuu9.com/stat/shouye/ -# ||uuu9.com/news/css/news_content_in.js (easylistchina+easylist.txt: 4945) +# ||uuu9.com/news/css/news_content_in.js (easylistchina.txt: 4921) .uuu9.com/news/css/news_content_in\.js -# ||uuu9.com/360adtest/ (easylistchina+easylist.txt: 4943) +# ||uuu9.com/360adtest/ (easylistchina.txt: 4919) .uuu9.com/360adtest/ -# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina+easylist.txt: 4942) +# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina.txt: 4918) .uschinapress.com/2015/0115/1421375153170\.gif -# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina+easylist.txt: 4941) +# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina.txt: 4917) .uschinapress.com/2014/0922/1411428929105\.png -# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina+easylist.txt: 4940) +# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina.txt: 4916) .uschinapress.com/2014/0702/1404347291600\.gif -# ||upload.jjxw.cn^*.swf (easylistchina+easylist.txt: 4937) +# ||upload.jjxw.cn^*.swf (easylistchina.txt: 4913) .upload.jjxw.cn/.*\.swf -# ||upantool.com/playing/ (easylistchina+easylist.txt: 4935) +# ||upantool.com/playing/ (easylistchina.txt: 4911) .upantool.com/playing/ -# ||upan.so/templates/default/images/sir.gif (easylistchina+easylist.txt: 4934) +# ||upan.so/templates/default/images/sir.gif (easylistchina.txt: 4910) .upan.so/templates/default/images/sir\.gif -# ||upan.cc/images/pay/ (easylistchina+easylist.txt: 4933) +# ||upan.cc/images/pay/ (easylistchina.txt: 4909) .upan.cc/images/pay/ -# ||upaiyun.com/css88/*/728 (easylistchina+easylist.txt: 4932) +# ||upaiyun.com/css88/*/728 (easylistchina.txt: 4908) .upaiyun.com/css88/.*/728 -# ||upaiyun.com/css88/*/680 (easylistchina+easylist.txt: 4931) +# ||upaiyun.com/css88/*/680 (easylistchina.txt: 4907) .upaiyun.com/css88/.*/680 -# ||upaiyun.com/css88/*/250 (easylistchina+easylist.txt: 4930) +# ||upaiyun.com/css88/*/250 (easylistchina.txt: 4906) .upaiyun.com/css88/.*/250 -# ||upaiyun.com/css88/*/1008 (easylistchina+easylist.txt: 4929) +# ||upaiyun.com/css88/*/1008 (easylistchina.txt: 4905) .upaiyun.com/css88/.*/1008 -# ||up.qingdaonews.com/up/$object,script (easylistchina+easylist.txt: 4928) +# ||up.qingdaonews.com/up/$object,script (easylistchina.txt: 4904) .up.qingdaonews.com/up/ -# ||up.hiao.com^ (easylistchina+easylist.txt: 4927) +# ||up.hiao.com^ (easylistchina.txt: 4903) .up.hiao.com -# ||untitled.dwstatic.com^ (easylistchina+easylist.txt: 4926) +# ||untitled.dwstatic.com^ (easylistchina.txt: 4902) .untitled.dwstatic.com -# ||union.china.com.cn^ (easylistchina+easylist.txt: 4925) +# ||union.china.com.cn^ (easylistchina.txt: 4901) .union.china.com.cn -# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina+easylist.txt: 4924) +# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina.txt: 4900) .uisdc.com/wp-content/uploads/2013/08/sitestar -# ||uho.com.tw^$subdocument (easylistchina+easylist.txt: 4923) +# ||uho.com.tw^$subdocument (easylistchina.txt: 4899) .uho.com.tw -# ||uho.com.tw/kid-ad/ (easylistchina+easylist.txt: 4922) +# ||uho.com.tw/kid-ad/ (easylistchina.txt: 4898) .uho.com.tw/kid-ad/ -# ||uho.com.tw/images/rosewater.jpg (easylistchina+easylist.txt: 4921) +# ||uho.com.tw/images/rosewater.jpg (easylistchina.txt: 4897) .uho.com.tw/images/rosewater\.jpg -# ||uedfa.net/Static/imgs/affiliate/ (easylistchina+easylist.txt: 4920) +# ||uedfa.net/Static/imgs/affiliate/ (easylistchina.txt: 4896) .uedfa.net/Static/imgs/affiliate/ -# ||udn.com^*/ad/ (easylistchina+easylist.txt: 4919) +# ||udn.com^*/ad/ (easylistchina.txt: 4895) .udn.com/.*/ad/ -# ||udn.com/SSI/neckFrame (easylistchina+easylist.txt: 4918) +# ||udn.com/SSI/neckFrame (easylistchina.txt: 4894) .udn.com/SSI/neckFrame -# ||udn.com/common/iframe/ (easylistchina+easylist.txt: 4917) +# ||udn.com/common/iframe/ (easylistchina.txt: 4893) .udn.com/common/iframe/ -# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina+easylist.txt: 4916) +# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina.txt: 4892) .udn.com/2010MAIN/inc/t03-CMS\.html -# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina+easylist.txt: 4915) +# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina.txt: 4891) .udn.com.tw/upf/2014_sales/travel/cheesead\.html -# ||ucbug.com/templets/default/js/sharp.js (easylistchina+easylist.txt: 4914) +# ||ucbug.com/templets/default/js/sharp.js (easylistchina.txt: 4890) .ucbug.com/templets/default/js/sharp\.js -# ||ucbug.com/js/tongl.js (easylistchina+easylist.txt: 4913) +# ||ucbug.com/js/tongl.js (easylistchina.txt: 4889) .ucbug.com/js/tongl\.js -# ||ucbug.com/js/tlys.js (easylistchina+easylist.txt: 4912) +# ||ucbug.com/js/tlys.js (easylistchina.txt: 4888) .ucbug.com/js/tlys\.js -# ||ucbug.com/js/left.js (easylistchina+easylist.txt: 4911) +# ||ucbug.com/js/left.js (easylistchina.txt: 4887) .ucbug.com/js/left\.js -# ||uc8.cc/_style/2013/js/all.js (easylistchina+easylist.txt: 4910) +# ||uc8.cc/_style/2013/js/all.js (easylistchina.txt: 4886) .uc8.cc/_style/2013/js/all\.js -# ||u8xs.com/js/yuedu_ (easylistchina+easylist.txt: 4909) +# ||u8xs.com/js/yuedu_ (easylistchina.txt: 4885) .u8xs.com/js/yuedu_ -# ||u8xs.com/js/box_ (easylistchina+easylist.txt: 4908) +# ||u8xs.com/js/box_ (easylistchina.txt: 4884) .u8xs.com/js/box_ -# ||u148.net/images/sponsor- (easylistchina+easylist.txt: 4907) +# ||u148.net/images/sponsor- (easylistchina.txt: 4883) .u148.net/images/sponsor- -# ||u.riju.com/click.php (easylistchina+easylist.txt: 4906) +# ||u.riju.com/click.php (easylistchina.txt: 4882) .u.riju.com/click\.php -# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina+easylist.txt: 4905) +# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina.txt: 4881) .u.ctrip.com/showcaseadvertisementsit/ -# ||u.cnzol.com^ (easylistchina+easylist.txt: 4904) +# ||u.cnzol.com^ (easylistchina.txt: 4880) .u.cnzol.com -# ||u.63kc.com^ (easylistchina+easylist.txt: 4903) +# ||u.63kc.com^ (easylistchina.txt: 4879) .u.63kc.com -# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina+easylist.txt: 4902) +# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina.txt: 4878) .tzfdc.com/Images/09/flv/flv_index\.js -# ||tzfdc.com/fdcSell/ (easylistchina+easylist.txt: 4901) +# ||tzfdc.com/fdcSell/ (easylistchina.txt: 4877) .tzfdc.com/fdcSell/ -# ||tzfdc.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 4900) +# ||tzfdc.com.cn/userfiles/flash/ (easylistchina.txt: 4876) .tzfdc.com.cn/userfiles/flash/ -# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina+easylist.txt: 4899) +# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina.txt: 4875) .tyyhhdf.com/upload/1/148781/images/2015.*\.gif -# ||ty121.cn/IAA/ (easylistchina+easylist.txt: 4898) +# ||ty121.cn/IAA/ (easylistchina.txt: 4874) .ty121.cn/IAA/ -# ||txzqw.com/js/float.js (easylistchina+easylist.txt: 4897) +# ||txzqw.com/js/float.js (easylistchina.txt: 4873) .txzqw.com/js/float\.js -# ||txtyd.com/js/*box.js (easylistchina+easylist.txt: 4896) +# ||txtyd.com/js/*box.js (easylistchina.txt: 4872) .txtyd.com/js/.*box\.js -# ||txtbbs.com/data/txtbbs/ (easylistchina+easylist.txt: 4895) +# ||txtbbs.com/data/txtbbs/ (easylistchina.txt: 4871) .txtbbs.com/data/txtbbs/ -# ||txooo.com^*/zdl.jpg (easylistchina+easylist.txt: 4894) +# ||txooo.com^*/zdl.jpg (easylistchina.txt: 4870) .txooo.com/.*/zdl\.jpg -# ||txooo.com^*/ydl.jpg (easylistchina+easylist.txt: 4893) +# ||txooo.com^*/ydl.jpg (easylistchina.txt: 4869) .txooo.com/.*/ydl\.jpg -# ||txahz.com/static/image/tp/ (easylistchina+easylist.txt: 4892) +# ||txahz.com/static/image/tp/ (easylistchina.txt: 4868) .txahz.com/static/image/tp/ -# ||twunbbs.com/images/ (easylistchina+easylist.txt: 4891) +# ||twunbbs.com/images/ (easylistchina.txt: 4867) .twunbbs.com/images/ -# ||twfuwu.info^*.gif (easylistchina+easylist.txt: 4890) +# ||twfuwu.info^*.gif (easylistchina.txt: 4866) .twfuwu.info/.*\.gif -# ||twavtv.com/js/jquery.colorbox (easylistchina+easylist.txt: 4889) +# ||twavtv.com/js/jquery.colorbox (easylistchina.txt: 4865) .twavtv.com/js/jquery\.colorbox -# ||tw.buy.yahoo.com/?z= (easylistchina+easylist.txt: 4887) +# ||tw.buy.yahoo.com/?z= (easylistchina.txt: 4863) .tw.buy.yahoo.com/\?z= -# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina+easylist.txt: 4886) +# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina.txt: 4862) .tw.beanfun.com/bfweb/NEW/commonlogin -# ||tvnmg.com/banner/ (easylistchina+easylist.txt: 4885) +# ||tvnmg.com/banner/ (easylistchina.txt: 4861) .tvnmg.com/banner/ -# ||tvf4.com^$subdocument (easylistchina+easylist.txt: 4884) +# ||tvf4.com^$subdocument (easylistchina.txt: 4860) .tvf4.com -# ||tvf4.com/1/mugua.js (easylistchina+easylist.txt: 4883) +# ||tvf4.com/1/mugua.js (easylistchina.txt: 4859) .tvf4.com/1/mugua\.js -# ||tv6080.com/qqt/ (easylistchina+easylist.txt: 4882) +# ||tv6080.com/qqt/ (easylistchina.txt: 4858) .tv6080.com/qqt/ -# ||tv6080.com/520/index.htm (easylistchina+easylist.txt: 4881) +# ||tv6080.com/520/index.htm (easylistchina.txt: 4857) .tv6080.com/520/index\.htm -# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina+easylist.txt: 4880) +# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina.txt: 4856) .tv380.com/ovp/ovp_home/.*/adi/ -# ||tuwan.com/templet/lol/temp/ (easylistchina+easylist.txt: 4879) +# ||tuwan.com/templet/lol/temp/ (easylistchina.txt: 4855) .tuwan.com/templet/lol/temp/ -# ||tui22.com/images/g.js (easylistchina+easylist.txt: 4877) +# ||tui22.com/images/g.js (easylistchina.txt: 4854) .tui22.com/images/g\.js -# ||tui22.com/images/dibu.js (easylistchina+easylist.txt: 4876) +# ||tui22.com/images/dibu.js (easylistchina.txt: 4853) .tui22.com/images/dibu\.js -# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina+easylist.txt: 4875) +# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina.txt: 4852) .tui18.com/source/plugin/yl_curtain/template/yl_curtain\. -# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina+easylist.txt: 4874) +# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina.txt: 4851) .tuhaoylw.com/upload/1/18591636/images/.*\.gif -# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina+easylist.txt: 4873) +# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina.txt: 4850) .tudouui.com/tspecial/assets/PauseContainer\.swf -# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina+easylist.txt: 4872) +# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4849) .tucao.tv/index\.php\?m=poster&c=index&a=show_poster&id= -# ||tucao.cc/index.php?m=poster& (easylistchina+easylist.txt: 4871) +# ||tucao.cc/index.php?m=poster& (easylistchina.txt: 4848) .tucao.cc/index\.php\?m=poster& -# ||tuan.cs090.com/gettuan.php? (easylistchina+easylist.txt: 4870) +# ||tuan.cs090.com/gettuan.php? (easylistchina.txt: 4847) .tuan.cs090.com/gettuan\.php\? -# ||ttxcpa.com/ttxcpa.gif (easylistchina+easylist.txt: 4869) -.ttxcpa.com/ttxcpa\.gif -# ||ttrar.com/js/ (easylistchina+easylist.txt: 4868) +# ||ttrar.com/js/ (easylistchina.txt: 4846) .ttrar.com/js/ -# ||ttkdex.com/ttkdweb/page/image/query (easylistchina+easylist.txt: 4867) +# ||ttkdex.com/ttkdweb/page/image/query (easylistchina.txt: 4845) .ttkdex.com/ttkdweb/page/image/query -# ||ttcy.com/style/image/gg_ (easylistchina+easylist.txt: 4866) +# ||ttcy.com/style/image/gg_ (easylistchina.txt: 4844) .ttcy.com/style/image/gg_ -# ||tt7z.com/js/ (easylistchina+easylist.txt: 4865) +# ||tt7z.com/js/ (easylistchina.txt: 4843) .tt7z.com/js/ -# ||tt1069.com/bbs/zgg_ (easylistchina+easylist.txt: 4864) +# ||tt1069.com/bbs/zgg_ (easylistchina.txt: 4842) .tt1069.com/bbs/zgg_ -# ||tt1069.com/bbs/ad$script,subdocument (easylistchina+easylist.txt: 4863) -.tt1069.com/bbs/ad -# ||ts.cn^*/site1/$object (easylistchina+easylist.txt: 4862) +# ||ts.cn^*/site1/$object (easylistchina.txt: 4841) .ts.cn/.*/site1/ -# ||tp.sgcn.com^ (easylistchina+easylist.txt: 4861) +# ||tp.sgcn.com^ (easylistchina.txt: 4840) .tp.sgcn.com -# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina+easylist.txt: 4860) +# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina.txt: 4839) .totuwo.com/wp-content/uploads/20.*\.gif -# ||totheglory.im/pic/ttg_ (easylistchina+easylist.txt: 4859) +# ||totheglory.im/pic/ttg_ (easylistchina.txt: 4838) .totheglory.im/pic/ttg_ -# ||totheglory.im/pic/ttg- (easylistchina+easylist.txt: 4858) +# ||totheglory.im/pic/ttg- (easylistchina.txt: 4837) .totheglory.im/pic/ttg- -# ||totheglory.im/pic/fangtuo.jpg (easylistchina+easylist.txt: 4857) +# ||totheglory.im/pic/fangtuo.jpg (easylistchina.txt: 4836) .totheglory.im/pic/fangtuo\.jpg -# ||tonnn.com/promotion2/*.js (easylistchina+easylist.txt: 4855) +# ||tonnn.com/promotion2/*.js (easylistchina.txt: 4834) .tonnn.com/promotion2/.*\.js -# ||tongzhuo100.com/img/jianzhi.gif (easylistchina+easylist.txt: 4854) +# ||tongzhuo100.com/img/jianzhi.gif (easylistchina.txt: 4833) .tongzhuo100.com/img/jianzhi\.gif -# ||tompda.com^$object (easylistchina+easylist.txt: 4853) +# ||tompda.com^$object (easylistchina.txt: 4832) .tompda.com -# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina+easylist.txt: 4852) +# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina.txt: 4831) .tompda.com/tupian/2013-03-15/300\.jpg -# ||tompda.com/images/2014/800*.gif (easylistchina+easylist.txt: 4851) +# ||tompda.com/images/2014/800*.gif (easylistchina.txt: 4830) .tompda.com/images/2014/800.*\.gif -# ||tompda.com/dev/bbsadv/ (easylistchina+easylist.txt: 4850) +# ||tompda.com/dev/bbsadv/ (easylistchina.txt: 4829) .tompda.com/dev/bbsadv/ -# ||tom.com/templets/tomwq/ad/ (easylistchina+easylist.txt: 4849) +# ||tom.com/templets/tomwq/ad/ (easylistchina.txt: 4828) .tom.com/templets/tomwq/ad/ -# ||tntdown.com/News/js/C_ (easylistchina+easylist.txt: 4848) +# ||toastoven.net/cdn/adx/ (easylistchina.txt: 4827) +.toastoven.net/cdn/adx/ +# ||tntdown.com/News/js/C_ (easylistchina.txt: 4826) .tntdown.com/News/js/C_ -# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina+easylist.txt: 4847) +# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina.txt: 4825) .tmbbs.com/data/attachment/portal/.*\.swf -# ||tk.504pk.com^ (easylistchina+easylist.txt: 4846) +# ||tk.504pk.com^ (easylistchina.txt: 4824) .tk.504pk.com -# ||tjzan.com/wxpic/asianyi.gif (easylistchina+easylist.txt: 4845) +# ||tjzan.com/wxpic/asianyi.gif (easylistchina.txt: 4823) .tjzan.com/wxpic/asianyi\.gif -# ||tingvoa.com/images/top_600_80.js (easylistchina+easylist.txt: 4843) +# ||tingvoa.com/images/top_600_80.js (easylistchina.txt: 4821) .tingvoa.com/images/top_600_80\.js -# ||tingvoa.com/images/*img.js (easylistchina+easylist.txt: 4842) +# ||tingvoa.com/images/*img.js (easylistchina.txt: 4820) .tingvoa.com/images/.*img\.js -# ||tingroom.com/tingroom/ad/ (easylistchina+easylist.txt: 4841) +# ||tingroom.com/tingroom/ad/ (easylistchina.txt: 4819) .tingroom.com/tingroom/ad/ -# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina+easylist.txt: 4840) +# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina.txt: 4818) .tingroom.com/skin/pt/images/tingroombanner\.gif -# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina+easylist.txt: 4839) +# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina.txt: 4817) .tingroom.com/skin/dy/images/enread\.jpg -# ||tingroom.com/skin/dy/images/2400200 (easylistchina+easylist.txt: 4838) +# ||tingroom.com/skin/dy/images/2400200 (easylistchina.txt: 4816) .tingroom.com/skin/dy/images/2400200 -# ||tingroom.com/skin/*/js/ad_ (easylistchina+easylist.txt: 4837) +# ||tingroom.com/skin/*/js/ad_ (easylistchina.txt: 4815) .tingroom.com/skin/.*/js/ad_ -# ||tingroom.com/images/z923.js (easylistchina+easylist.txt: 4836) +# ||tingroom.com/images/z923.js (easylistchina.txt: 4814) .tingroom.com/images/z923\.js -# ||tingroom.com/images/qsbdc.gif (easylistchina+easylist.txt: 4835) +# ||tingroom.com/images/qsbdc.gif (easylistchina.txt: 4813) .tingroom.com/images/qsbdc\.gif -# ||tingroom.com/images/hy*.js (easylistchina+easylist.txt: 4834) +# ||tingroom.com/images/hy*.js (easylistchina.txt: 4812) .tingroom.com/images/hy.*\.js -# ||tingroom.com/file/A*.js (easylistchina+easylist.txt: 4833) +# ||tingroom.com/file/A*.js (easylistchina.txt: 4811) .tingroom.com/file/A.*\.js -# ||tingchina.com/js/dp468 (easylistchina+easylist.txt: 4832) +# ||tingchina.com/js/dp468 (easylistchina.txt: 4810) .tingchina.com/js/dp468 -# ||tingchina.com/js/allad.js (easylistchina+easylist.txt: 4831) +# ||tingchina.com/js/allad.js (easylistchina.txt: 4809) .tingchina.com/js/allad\.js -# ||tingchina.com/js/990 (easylistchina+easylist.txt: 4830) +# ||tingchina.com/js/990 (easylistchina.txt: 4808) .tingchina.com/js/990 -# ||tingchina.com/js/760 (easylistchina+easylist.txt: 4829) +# ||tingchina.com/js/760 (easylistchina.txt: 4807) .tingchina.com/js/760 -# ||tingchina.com/js/*220- (easylistchina+easylist.txt: 4828) +# ||tingchina.com/js/*220- (easylistchina.txt: 4806) .tingchina.com/js/.*220- -# ||timedg.com/hfhtml/baiduad.html? (easylistchina+easylist.txt: 4827) +# ||timedg.com/hfhtml/baiduad.html? (easylistchina.txt: 4805) .timedg.com/hfhtml/baiduad\.html\? -# ||tigtag.com/ttad/ (easylistchina+easylist.txt: 4826) +# ||tigtag.com/ttad/ (easylistchina.txt: 4804) .tigtag.com/ttad/ -# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina+easylist.txt: 4825) +# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina.txt: 4803) .tigtag.com/styles/phpcms/js/tigtag/ads\.js -# ||tigtag.com/r/Adv/ (easylistchina+easylist.txt: 4824) +# ||tigtag.com/r/Adv/ (easylistchina.txt: 4802) .tigtag.com/r/Adv/ -# ||tigtag.com/images/pic1/ (easylistchina+easylist.txt: 4823) +# ||tigtag.com/images/pic1/ (easylistchina.txt: 4801) .tigtag.com/images/pic1/ -# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina+easylist.txt: 4822) +# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina.txt: 4800) .tigerbrokers.com/activity/quotation/cnbeta/ -# ||tiexue.net/tsetforiph/ (easylistchina+easylist.txt: 4821) +# ||tiexue.net/tsetforiph/ (easylistchina.txt: 4799) .tiexue.net/tsetforiph/ -# ||tiexue.net/test*.aspx (easylistchina+easylist.txt: 4820) +# ||tiexue.net/test*.aspx (easylistchina.txt: 4798) .tiexue.net/test.*\.aspx -# ||tiexue.net/domain-policy/ (easylistchina+easylist.txt: 4819) +# ||tiexue.net/post2gg/ (easylistchina.txt: 4797) +.tiexue.net/post2gg/ +# ||tiexue.net/domain-policy/ (easylistchina.txt: 4796) .tiexue.net/domain-policy/ -# ||tietuku.com/bd75a2d8aa0d4c86.jpg (easylistchina+easylist.txt: 4815) -.tietuku.com/bd75a2d8aa0d4c86\.jpg -# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina+easylist.txt: 4814) +# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina.txt: 4792) .tietuku.com/0bb9bfe57636dc55\.jpg -# ||tieba.baidu.com/f/urlcheck? (easylistchina+easylist.txt: 4813) +# ||tieba.baidu.com/f/urlcheck? (easylistchina.txt: 4791) .tieba.baidu.com/f/urlcheck\? -# ||tibet.news.cn/zhuye/images/wangqun (easylistchina+easylist.txt: 4812) +# ||tibet.news.cn/zhuye/images/wangqun (easylistchina.txt: 4790) .tibet.news.cn/zhuye/images/wangqun -# ||tianyaui.com/qy/adsame/ads.js (easylistchina+easylist.txt: 4811) +# ||tianyaui.com/qy/adsame/ads.js (easylistchina.txt: 4789) .tianyaui.com/qy/adsame/ads\.js -# ||tianyaui.com/gamify/broadcast/js/ (easylistchina+easylist.txt: 4810) +# ||tianyaui.com/gamify/broadcast/js/ (easylistchina.txt: 4788) .tianyaui.com/gamify/broadcast/js/ -# ||tianya.cn/images/ad950x90.jpg (easylistchina+easylist.txt: 4809) +# ||tianya.cn/images/ad950x90.jpg (easylistchina.txt: 4787) .tianya.cn/images/ad950x90\.jpg -# ||tiantiandy.com/ad-js/ (easylistchina+easylist.txt: 4808) +# ||tiantiandy.com/ad-js/ (easylistchina.txt: 4786) .tiantiandy.com/ad-js/ -# ||tiantian.tv/sda/$image (easylistchina+easylist.txt: 4807) +# ||tiantian.tv/sda/$image (easylistchina.txt: 4785) .tiantian.tv/sda/ -# ||tiantian.tv/js/banner.js (easylistchina+easylist.txt: 4806) +# ||tiantian.tv/js/banner.js (easylistchina.txt: 4784) .tiantian.tv/js/banner\.js -# ||tiantian.tv/api/autosda.php (easylistchina+easylist.txt: 4805) +# ||tiantian.tv/api/autosda.php (easylistchina.txt: 4783) .tiantian.tv/api/autosda\.php -# ||tiansin.com/wp-adsense/ (easylistchina+easylist.txt: 4804) +# ||tiansin.com/wp-adsense/ (easylistchina.txt: 4782) .tiansin.com/wp-adsense/ -# ||tianshui.com.cn/yb.html (easylistchina+easylist.txt: 4803) +# ||tianshui.com.cn/yb.html (easylistchina.txt: 4781) .tianshui.com.cn/yb\.html -# ||tianshui.com.cn/sd.swf (easylistchina+easylist.txt: 4802) +# ||tianshui.com.cn/sd.swf (easylistchina.txt: 4780) .tianshui.com.cn/sd\.swf -# ||tianshui.com.cn/Scripts/AC_ (easylistchina+easylist.txt: 4801) +# ||tianshui.com.cn/Scripts/AC_ (easylistchina.txt: 4779) .tianshui.com.cn/Scripts/AC_ -# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina+easylist.txt: 4800) +# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina.txt: 4778) .tianshui.com.cn/newimages/xhglj\.swf -# ||tianshui.com.cn/newbg.jpg (easylistchina+easylist.txt: 4799) +# ||tianshui.com.cn/newbg.jpg (easylistchina.txt: 4777) .tianshui.com.cn/newbg\.jpg -# ||tianshi2.com/images/ (easylistchina+easylist.txt: 4798) +# ||tianshi2.com/images/ (easylistchina.txt: 4776) .tianshi2.com/images/ -# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina+easylist.txt: 4797) +# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina.txt: 4775) .tianqi.com/templates/huoche/js/hcgg\.js -# ||tianqi.com/static/js/gg (easylistchina+easylist.txt: 4796) +# ||tianqi.com/static/js/gg (easylistchina.txt: 4774) .tianqi.com/static/js/gg -# ||tianqi.com/js/gg.js (easylistchina+easylist.txt: 4795) +# ||tianqi.com/js/gg.js (easylistchina.txt: 4773) .tianqi.com/js/gg\.js -# ||tianmu.com/js/qq.js (easylistchina+easylist.txt: 4794) +# ||tianmu.com/js/qq.js (easylistchina.txt: 4772) .tianmu.com/js/qq\.js -# ||tianmu.com/abbsd/ (easylistchina+easylist.txt: 4793) +# ||tianmu.com/abbsd/ (easylistchina.txt: 4771) .tianmu.com/abbsd/ -# ||tianjinwe.com/together/szbz/ (easylistchina+easylist.txt: 4792) +# ||tianjinwe.com/together/szbz/ (easylistchina.txt: 4770) .tianjinwe.com/together/szbz/ -# ||tianjinwe.com/images/qssx/ (easylistchina+easylist.txt: 4791) +# ||tianjinwe.com/images/qssx/ (easylistchina.txt: 4769) .tianjinwe.com/images/qssx/ -# ||tianjimedia.com/s?z= (easylistchina+easylist.txt: 4790) +# ||tianjimedia.com/s?z= (easylistchina.txt: 4768) .tianjimedia.com/s\?z= -# ||thisav.com/windowfiles/dhtmlwindow (easylistchina+easylist.txt: 4789) +# ||thisav.com/windowfiles/dhtmlwindow (easylistchina.txt: 4767) .thisav.com/windowfiles/dhtmlwindow -# ||thisav.com/js/popup.js (easylistchina+easylist.txt: 4788) -.thisav.com/js/popup\.js -# ||thisav.com/js/*float (easylistchina+easylist.txt: 4787) +# ||thisav.com/js/*float (easylistchina.txt: 4766) .thisav.com/js/.*float -# ||thethirdmedia.com/a1/*960x (easylistchina+easylist.txt: 4786) +# ||thethirdmedia.com/a1/*960x (easylistchina.txt: 4765) .thethirdmedia.com/a1/.*960x -# ||tgbus.com/sf/taobao/ (easylistchina+easylist.txt: 4785) +# ||tgbus.com/sf/taobao/ (easylistchina.txt: 4764) .tgbus.com/sf/taobao/ -# ||tgbus.com/search/article_endcontent_google.htm (easylistchina+easylist.txt: 4784) +# ||tgbus.com/search/article_endcontent_google.htm (easylistchina.txt: 4763) .tgbus.com/search/article_endcontent_google\.htm -# ||tg.delnapb.com^ (easylistchina+easylist.txt: 4783) +# ||tg.delnapb.com^ (easylistchina.txt: 4762) .tg.delnapb.com -# ||tfg2.com/images/upfile/AD/ (easylistchina+easylist.txt: 4782) +# ||tfg2.com/images/upfile/AD/ (easylistchina.txt: 4761) .tfg2.com/images/upfile/AD/ -# ||tf.360.cn^ (easylistchina+easylist.txt: 4781) +# ||tf.360.cn^ (easylistchina.txt: 4760) .tf.360.cn -# ||techweb.com.cn^*aliyun (easylistchina+easylist.txt: 4780) +# ||techweb.com.cn^*aliyun (easylistchina.txt: 4759) .techweb.com.cn/.*aliyun -# ||tcmap.com.cn/js/b_ (easylistchina+easylist.txt: 4779) +# ||tcmap.com.cn/js/b_ (easylistchina.txt: 4758) .tcmap.com.cn/js/b_ -# ||tc.cn/news/images/right.jpg (easylistchina+easylist.txt: 4778) +# ||tc.cn/news/images/right.jpg (easylistchina.txt: 4757) .tc.cn/news/images/right\.jpg -# ||tc.cn/news/images/h.jpg (easylistchina+easylist.txt: 4777) +# ||tc.cn/news/images/h.jpg (easylistchina.txt: 4756) .tc.cn/news/images/h\.jpg -# ||tc.cn/g/upload/ (easylistchina+easylist.txt: 4776) +# ||tc.cn/g/upload/ (easylistchina.txt: 4755) .tc.cn/g/upload/ -# ||tc.cn/g/dl.ashx? (easylistchina+easylist.txt: 4775) +# ||tc.cn/g/dl.ashx? (easylistchina.txt: 4754) .tc.cn/g/dl\.ashx\? -# ||tc.cn/ad123/ (easylistchina+easylist.txt: 4774) +# ||tc.cn/ad123/ (easylistchina.txt: 4753) .tc.cn/ad123/ -# ||tbib.org/kona/ (easylistchina+easylist.txt: 4773) -.tbib.org/kona/ -# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina+easylist.txt: 4772) +# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina.txt: 4752) .tbcdn.cn/mm/tanxssp-custom/sina_ -# ||tasteforlife.com.tw^$subdocument (easylistchina+easylist.txt: 4771) +# ||tasteforlife.com.tw^$subdocument (easylistchina.txt: 4751) .tasteforlife.com.tw -# ||taoyoudu.com/img/top.jpg (easylistchina+easylist.txt: 4770) +# ||taoyoudu.com/img/top.jpg (easylistchina.txt: 4750) .taoyoudu.com/img/top\.jpg -# ||taohuazu.tw/tool/ (easylistchina+easylist.txt: 4769) +# ||taohuazu.tw/tool/ (easylistchina.txt: 4749) .taohuazu.tw/tool/ -# ||taohuazu.net/6/*.gif (easylistchina+easylist.txt: 4768) -.taohuazu.net/6/.*\.gif -# ||taohua.me/tool/taohuazu.js (easylistchina+easylist.txt: 4767) +# ||taohua.me/tool/taohuazu.js (easylistchina.txt: 4748) .taohua.me/tool/taohuazu\.js -# ||taoguba.com.cn/js/tgbduilian (easylistchina+easylist.txt: 4766) +# ||taoguba.com.cn/js/tgbduilian (easylistchina.txt: 4747) .taoguba.com.cn/js/tgbduilian -# ||taoguba.com.cn/js/hezuo/ (easylistchina+easylist.txt: 4765) +# ||taoguba.com.cn/js/hezuo/ (easylistchina.txt: 4746) .taoguba.com.cn/js/hezuo/ -# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina+easylist.txt: 4764) +# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina.txt: 4745) .taoguba.com.cn/img/2015/08/26/oh5555jfx48p\.jpg -# ||taodake.com/taodake_img/Images/union/ (easylistchina+easylist.txt: 4763) +# ||taodake.com/taodake_img/Images/union/ (easylistchina.txt: 4744) .taodake.com/taodake_img/Images/union/ -# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina+easylist.txt: 4760) +# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina.txt: 4741) .taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450\.jpg_670x670\.jpg -# ||talkforex.com/data/attachment/portal/ (easylistchina+easylist.txt: 4758) +# ||talkforex.com/data/attachment/portal/ (easylistchina.txt: 4739) .talkforex.com/data/attachment/portal/ -# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina+easylist.txt: 4757) +# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina.txt: 4738) .taizhou.com.cn/.*/3890\.files/xchad\.jpg -# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina+easylist.txt: 4756) +# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina.txt: 4737) .taizhou.com.cn/52\.files/c1_20150423\.swf -# ||taizhou.com.cn/52.files/a*20 (easylistchina+easylist.txt: 4755) +# ||taizhou.com.cn/52.files/a*20 (easylistchina.txt: 4736) .taizhou.com.cn/52\.files/a.*20 -# ||taiwandaily.net/uploadimages% (easylistchina+easylist.txt: 4754) +# ||taiwandaily.net/uploadimages% (easylistchina.txt: 4735) .taiwandaily.net/uploadimages% -# ||taiwan.cn/images/tw_ad_ (easylistchina+easylist.txt: 4753) +# ||taiwan.cn/images/tw_ad_ (easylistchina.txt: 4734) .taiwan.cn/images/tw_ad_ -# ||taihe.net/js/ad (easylistchina+easylist.txt: 4752) +# ||taihe.net/js/ad (easylistchina.txt: 4733) .taihe.net/js/ad -# ||taihainet.com/biz/ (easylistchina+easylist.txt: 4751) +# ||taihainet.com/biz/ (easylistchina.txt: 4732) .taihainet.com/biz/ -# ||t259.net/js/click_showclose.js (easylistchina+easylist.txt: 4750) +# ||t259.net/js/click_showclose.js (easylistchina.txt: 4731) .t259.net/js/click_showclose\.js -# ||t259.net/images/*.gif (easylistchina+easylist.txt: 4749) +# ||t259.net/images/*.gif (easylistchina.txt: 4730) .t259.net/images/.*\.gif -# ||t.58xs.com/hot/ (easylistchina+easylist.txt: 4748) +# ||t.58xs.com/hot/ (easylistchina.txt: 4729) .t.58xs.com/hot/ -# ||sztaofang.com/out/Out_BBs.asp (easylistchina+easylist.txt: 4747) +# ||sztaofang.com/out/Out_BBs.asp (easylistchina.txt: 4728) .sztaofang.com/out/Out_BBs\.asp -# ||sznews.com/css/$script (easylistchina+easylist.txt: 4746) +# ||sznews.com/css/$script (easylistchina.txt: 4727) .sznews.com/css/ -# ||sznews.com/*.files/$image,object (easylistchina+easylist.txt: 4745) +# ||sznews.com/*.files/$image,object (easylistchina.txt: 4726) .sznews.com/.*\.files/ -# ||szhk.com/include/taobao (easylistchina+easylist.txt: 4744) +# ||szhk.com/include/taobao (easylistchina.txt: 4725) .szhk.com/include/taobao -# ||szhk.com/iframe/ (easylistchina+easylist.txt: 4743) +# ||szhk.com/iframe/ (easylistchina.txt: 4724) .szhk.com/iframe/ -# ||szhk.com/ads/ (easylistchina+easylist.txt: 4742) +# ||szhk.com/ads/ (easylistchina.txt: 4723) .szhk.com/ads/ -# ||szhk.com/565.jpg (easylistchina+easylist.txt: 4741) +# ||szhk.com/565.jpg (easylistchina.txt: 4722) .szhk.com/565\.jpg -# ||sz1001.net^*/soft_*.js (easylistchina+easylist.txt: 4740) +# ||sz1001.net^*/soft_*.js (easylistchina.txt: 4721) .sz1001.net/.*/soft_.*\.js -# ||sz1001.net/ab1/index*.js (easylistchina+easylist.txt: 4739) +# ||sz1001.net/ab1/index*.js (easylistchina.txt: 4720) .sz1001.net/ab1/index.*\.js -# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina+easylist.txt: 4738) +# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina.txt: 4719) .sz.zj.cn/info\.php\?fid= -# ||sz.zj.cn/2013-dh.asp (easylistchina+easylist.txt: 4737) +# ||sz.zj.cn/2013-dh.asp (easylistchina.txt: 4718) .sz.zj.cn/2013-dh\.asp -# ||synacast.com^ (easylistchina+easylist.txt: 4736) +# ||synacast.com^ (easylistchina.txt: 4717) .synacast.com -# ||sydneytoday.com/sponsor/ (easylistchina+easylist.txt: 4735) +# ||sydneytoday.com/sponsor/ (easylistchina.txt: 4716) .sydneytoday.com/sponsor/ -# ||syd.com.cn/pic_index/lalian (easylistchina+easylist.txt: 4734) +# ||syd.com.cn/pic_index/lalian (easylistchina.txt: 4715) .syd.com.cn/pic_index/lalian -# ||syd.com.cn/pic_index/duilian (easylistchina+easylist.txt: 4733) +# ||syd.com.cn/pic_index/duilian (easylistchina.txt: 4714) .syd.com.cn/pic_index/duilian -# ||sy.ln.cn/08gg/ (easylistchina+easylist.txt: 4732) +# ||sy.ln.cn/08gg/ (easylistchina.txt: 4713) .sy.ln.cn/08gg/ -# ||sxrom.com/images/zz.jpg (easylistchina+easylist.txt: 4731) +# ||sxrom.com/images/zz.jpg (easylistchina.txt: 4712) .sxrom.com/images/zz\.jpg -# ||sxrom.com/images/download/top (easylistchina+easylist.txt: 4730) +# ||sxrom.com/images/download/top (easylistchina.txt: 4711) .sxrom.com/images/download/top -# ||sxrom.com/images/9.js (easylistchina+easylist.txt: 4729) +# ||sxrom.com/images/9.js (easylistchina.txt: 4710) .sxrom.com/images/9\.js -# ||sxrom.com/images/79.gif (easylistchina+easylist.txt: 4728) +# ||sxrom.com/images/79.gif (easylistchina.txt: 4709) .sxrom.com/images/79\.gif -# ||sxrb.com/upload/js/xww_ (easylistchina+easylist.txt: 4727) +# ||sxrb.com/upload/js/xww_ (easylistchina.txt: 4708) .sxrb.com/upload/js/xww_ -# ||sx566.com^*/zsz (easylistchina+easylist.txt: 4726) +# ||sx566.com^*/zsz (easylistchina.txt: 4707) .sx566.com/.*/zsz -# ||sx566.com/ads/ (easylistchina+easylist.txt: 4725) +# ||sx566.com/ads/ (easylistchina.txt: 4706) .sx566.com/ads/ -# ||supfree.net/images/otop.js (easylistchina+easylist.txt: 4724) +# ||supfree.net/images/otop.js (easylistchina.txt: 4705) .supfree.net/images/otop\.js -# ||super.kdnet.net^ (easylistchina+easylist.txt: 4723) +# ||super.kdnet.net^ (easylistchina.txt: 4704) .super.kdnet.net -# ||super.cat898.com^ (easylistchina+easylist.txt: 4722) +# ||super.cat898.com^ (easylistchina.txt: 4703) .super.cat898.com -# ||suimeng.com/js/html/yuedu (easylistchina+easylist.txt: 4721) +# ||suimeng.com/js/html/yuedu (easylistchina.txt: 4702) .suimeng.com/js/html/yuedu -# ||sufile.com/jsa/ (easylistchina+easylist.txt: 4720) +# ||sufile.com/jsa/ (easylistchina.txt: 4701) .sufile.com/jsa/ -# ||sudupan.com^*.gif (easylistchina+easylist.txt: 4719) +# ||sudupan.com^*.gif (easylistchina.txt: 4700) .sudupan.com/.*\.gif -# ||sudupan.com/380.jpg (easylistchina+easylist.txt: 4718) +# ||sudupan.com/380.jpg (easylistchina.txt: 4699) .sudupan.com/380\.jpg -# ||sucaijiayuan.com/uploads/ad/ (easylistchina+easylist.txt: 4717) +# ||sucaijiayuan.com/uploads/ad/ (easylistchina.txt: 4698) .sucaijiayuan.com/uploads/ad/ -# ||sub.powerapple.com^ (easylistchina+easylist.txt: 4716) +# ||sub.powerapple.com^ (easylistchina.txt: 4697) .sub.powerapple.com -# ||su.bdimg.com/static/dspui/js/ (easylistchina+easylist.txt: 4715) +# ||su.bdimg.com/static/dspui/js/ (easylistchina.txt: 4696) .su.bdimg.com/static/dspui/js/ -# ||strtv.cn/publicimg/sitelink/ (easylistchina+easylist.txt: 4714) +# ||strtv.cn/publicimg/sitelink/ (easylistchina.txt: 4695) .strtv.cn/publicimg/sitelink/ -# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina+easylist.txt: 4713) +# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina.txt: 4694) .strip.taobaocdn.com/tfscom/ -# ||storm.mg/ad? (easylistchina+easylist.txt: 4712) +# ||storm.mg/ad? (easylistchina.txt: 4693) .storm.mg/ad\? -# ||storetorrent.org/static/js/best (easylistchina+easylist.txt: 4711) +# ||storetorrent.org/static/js/best (easylistchina.txt: 4692) .storetorrent.org/static/js/best -# ||storetorrent.org/static/best/795X60.gif (easylistchina+easylist.txt: 4710) +# ||storetorrent.org/static/best/795X60.gif (easylistchina.txt: 4691) .storetorrent.org/static/best/795X60\.gif -# ||stockstar.com/*DUILIAN&t= (easylistchina+easylist.txt: 4709) +# ||stockstar.com/*DUILIAN&t= (easylistchina.txt: 4690) .stockstar.com/.*DUILIAN&t= -# ||sto.cn*/temp/adv.jpg (easylistchina+easylist.txt: 4708) +# ||sto.cn*/temp/adv.jpg (easylistchina.txt: 4689) .sto.cn*./(.*/)?temp/adv\.jpg -# ||stnn.cc/images/xy/yy.swf (easylistchina+easylist.txt: 4707) +# ||stnn.cc/images/xy/yy.swf (easylistchina.txt: 4688) .stnn.cc/images/xy/yy\.swf -# ||stnn.cc/images/xy/y0*.jpg (easylistchina+easylist.txt: 4706) +# ||stnn.cc/images/xy/y0*.jpg (easylistchina.txt: 4687) .stnn.cc/images/xy/y0.*\.jpg -# ||stnn.cc/images/xy/640_100/ (easylistchina+easylist.txt: 4705) +# ||stnn.cc/images/xy/640_100/ (easylistchina.txt: 4686) .stnn.cc/images/xy/640_100/ -# ||stnn.cc/images/xy/300$subdocument (easylistchina+easylist.txt: 4704) +# ||stnn.cc/images/xy/300$subdocument (easylistchina.txt: 4685) .stnn.cc/images/xy/300 -# ||stnn.cc/images/xy/*x80$image,object (easylistchina+easylist.txt: 4703) +# ||stnn.cc/images/xy/*x80$image,object (easylistchina.txt: 4684) .stnn.cc/images/xy/.*x80 -# ||stnn.cc/images/xy/*80px (easylistchina+easylist.txt: 4702) +# ||stnn.cc/images/xy/*80px (easylistchina.txt: 4683) .stnn.cc/images/xy/.*80px -# ||stheadline.com^*/right_promo.js (easylistchina+easylist.txt: 4701) +# ||stheadline.com^*/right_promo.js (easylistchina.txt: 4682) .stheadline.com/.*/right_promo\.js -# ||stheadline.com/*banner$script (easylistchina+easylist.txt: 4700) +# ||stheadline.com/*banner$script (easylistchina.txt: 4681) .stheadline.com/.*banner -# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina+easylist.txt: 4699) +# ||steamcn.com/img/lancai_ (easylistchina.txt: 4680) +.steamcn.com/img/lancai_ +# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina.txt: 4679) .steachs.com/wp-content/uploads/2015/12/nippon\.gif -# ||stcn.com/common/flash/aigu.swf (easylistchina+easylist.txt: 4698) +# ||stcn.com/common/flash/aigu.swf (easylistchina.txt: 4678) .stcn.com/common/flash/aigu\.swf -# ||stats.chinaz.com/tool_img/ (easylistchina+easylist.txt: 4697) +# ||stats.chinaz.com/tool_img/ (easylistchina.txt: 4677) .stats.chinaz.com/tool_img/ -# ||stats.chinaz.com/tool/ (easylistchina+easylist.txt: 4696) +# ||stats.chinaz.com/tool/ (easylistchina.txt: 4676) .stats.chinaz.com/tool/ -# ||static.zongheng.com^*/index_r_b.js (easylistchina+easylist.txt: 4695) +# ||static.zongheng.com^*/index_r_b.js (easylistchina.txt: 4675) .static.zongheng.com/.*/index_r_b\.js -# ||static.zongheng.com/upload/zhds/ (easylistchina+easylist.txt: 4694) +# ||static.zongheng.com/upload/zhds/ (easylistchina.txt: 4674) .static.zongheng.com/upload/zhds/ -# ||static.zongheng.com/upload/hzds/ (easylistchina+easylist.txt: 4693) +# ||static.zongheng.com/upload/hzds/ (easylistchina.txt: 4673) .static.zongheng.com/upload/hzds/ -# ||static.zongheng.com/upload/ad/ (easylistchina+easylist.txt: 4692) +# ||static.zongheng.com/upload/ad/ (easylistchina.txt: 4672) .static.zongheng.com/upload/ad/ -# ||static.yujiehenaishang.com^ (easylistchina+easylist.txt: 4691) -.static.yujiehenaishang.com -# ||static.wenxiu.com/js/top.js (easylistchina+easylist.txt: 4690) +# ||static.wenxiu.com/js/top.js (easylistchina.txt: 4671) .static.wenxiu.com/js/top\.js -# ||static.tianyaui.com^*/stat_20080313.js (easylistchina+easylist.txt: 4689) +# ||static.tianyaui.com^*/stat_20080313.js (easylistchina.txt: 4670) .static.tianyaui.com/.*/stat_20080313\.js -# ||static.imanke.com/imanke/pigbbs.js (easylistchina+easylist.txt: 4688) +# ||static.imanke.com/imanke/pigbbs.js (easylistchina.txt: 4669) .static.imanke.com/imanke/pigbbs\.js -# ||static.imanke.com/imanke/m/ (easylistchina+easylist.txt: 4687) +# ||static.imanke.com/imanke/m/ (easylistchina.txt: 4668) .static.imanke.com/imanke/m/ -# ||static.fzdm.com/top (easylistchina+easylist.txt: 4686) +# ||static.fzdm.com/top (easylistchina.txt: 4667) .static.fzdm.com/top -# ||static.fzdm.com/ispop.js (easylistchina+easylist.txt: 4685) +# ||static.fzdm.com/ispop.js (easylistchina.txt: 4666) .static.fzdm.com/ispop\.js -# ||static.fzdm.com/foot (easylistchina+easylist.txt: 4684) +# ||static.fzdm.com/foot (easylistchina.txt: 4665) .static.fzdm.com/foot -# ||static.doyouhike.net/partner/ (easylistchina+easylist.txt: 4683) +# ||static.doyouhike.net/partner/ (easylistchina.txt: 4664) .static.doyouhike.net/partner/ -# ||static.d.lecai.com/js/*m.js (easylistchina+easylist.txt: 4682) +# ||static.d.lecai.com/js/*m.js (easylistchina.txt: 4663) .static.d.lecai.com/js/.*m\.js -# ||static.colayun.com/images/vip.png (easylistchina+easylist.txt: 4681) +# ||static.colayun.com/images/vip.png (easylistchina.txt: 4662) .static.colayun.com/images/vip\.png -# ||static.coladrive.com/images/vip.png (easylistchina+easylist.txt: 4680) +# ||static.coladrive.com/images/vip.png (easylistchina.txt: 4661) .static.coladrive.com/images/vip\.png -# ||static.cnbetacdn.com/320-50.jpg (easylistchina+easylist.txt: 4679) -.static.cnbetacdn.com/320-50\.jpg -# ||static.aizhan.com/jsa/ (easylistchina+easylist.txt: 4678) +# ||static.aizhan.com/jsa/ (easylistchina.txt: 4660) .static.aizhan.com/jsa/ -# ||starnnews.com/banner/ (easylistchina+easylist.txt: 4677) +# ||starnnews.com/banner/ (easylistchina.txt: 4659) .starnnews.com/banner/ -# ||starbaby.cn/bookconnector/ (easylistchina+easylist.txt: 4676) +# ||starbaby.cn/bookconnector/ (easylistchina.txt: 4658) .starbaby.cn/bookconnector/ -# ||starbaby.cn/adconnector/ (easylistchina+easylist.txt: 4675) +# ||starbaby.cn/adconnector/ (easylistchina.txt: 4657) .starbaby.cn/adconnector/ -# ||ssnn.net^*-200-250.jpg (easylistchina+easylist.txt: 4674) +# ||ssnn.net^*-200-250.jpg (easylistchina.txt: 4656) .ssnn.net/.*-200-250\.jpg -# ||srzc.com^*/zwfjs/ (easylistchina+easylist.txt: 4673) +# ||srzc.com^*/zwfjs/ (easylistchina.txt: 4655) .srzc.com/.*/zwfjs/ -# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina+easylist.txt: 4672) +# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina.txt: 4654) .srzc.com/templets/srxw/img/000ad\.jpg -# ||srzc.com/js/gelao/ (easylistchina+easylist.txt: 4671) +# ||srzc.com/js/gelao/ (easylistchina.txt: 4653) .srzc.com/js/gelao/ -# ||srzc.com/js/Adsjs/ (easylistchina+easylist.txt: 4670) +# ||srzc.com/js/Adsjs/ (easylistchina.txt: 4652) .srzc.com/js/Adsjs/ -# ||srzc.com/images/*.swf (easylistchina+easylist.txt: 4669) +# ||srzc.com/images/*.swf (easylistchina.txt: 4651) .srzc.com/images/.*\.swf -# ||sportsv.net/dist/ads/ (easylistchina+easylist.txt: 4667) +# ||sportsv.net/dist/ads/ (easylistchina.txt: 4649) .sportsv.net/dist/ads/ -# ||spn.com.cn/media/jackmm.js (easylistchina+easylist.txt: 4666) +# ||spn.com.cn/media/jackmm.js (easylistchina.txt: 4648) .spn.com.cn/media/jackmm\.js -# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina+easylist.txt: 4665) +# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina.txt: 4647) .spn.com.cn/admin_new/imgs/b2\.jpg -# ||spbonow.com/UploadFiles/20$image (easylistchina+easylist.txt: 4664) +# ||spbonow.com/UploadFiles/20$image (easylistchina.txt: 4646) .spbonow.com/UploadFiles/20 -# ||spbonow.com/js/float.js (easylistchina+easylist.txt: 4663) +# ||spbonow.com/js/float.js (easylistchina.txt: 4645) .spbonow.com/js/float\.js -# ||spbonow.com/images/fyt.gif (easylistchina+easylist.txt: 4662) +# ||spbonow.com/images/fyt.gif (easylistchina.txt: 4644) .spbonow.com/images/fyt\.gif -# ||sozi.cn/templets/sozi/js/js.js (easylistchina+easylist.txt: 4661) +# ||sozi.cn/templets/sozi/js/js.js (easylistchina.txt: 4643) .sozi.cn/templets/sozi/js/js\.js -# ||soxia.cc/img/baoyue*.gif (easylistchina+easylist.txt: 4660) +# ||soxia.cc/img/baoyue*.gif (easylistchina.txt: 4642) .soxia.cc/img/baoyue.*\.gif -# ||southmoney.com/page/top (easylistchina+easylist.txt: 4659) +# ||southmoney.com/page/top (easylistchina.txt: 4641) .southmoney.com/page/top -# ||southmoney.com/page/inc/ (easylistchina+easylist.txt: 4658) +# ||southmoney.com/page/inc/ (easylistchina.txt: 4640) .southmoney.com/page/inc/ -# ||source.qunar.com/site/images/wns/ (easylistchina+easylist.txt: 4657) +# ||source.qunar.com/site/images/wns/ (easylistchina.txt: 4639) .source.qunar.com/site/images/wns/ -# ||soso.com/baike/js/ad_ (easylistchina+easylist.txt: 4656) +# ||soso.com/baike/js/ad_ (easylistchina.txt: 4638) .soso.com/baike/js/ad_ -# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina+easylist.txt: 4655) +# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina.txt: 4637) .sootoo.com/son_media/msg/2010/11/16/30324\.jpg -# ||sooopu.com/js/contentad330.js (easylistchina+easylist.txt: 4654) +# ||sooopu.com/js/contentad330.js (easylistchina.txt: 4636) .sooopu.com/js/contentad330\.js -# ||sooopu.com/js/*950.js (easylistchina+easylist.txt: 4653) +# ||sooopu.com/js/*950.js (easylistchina.txt: 4635) .sooopu.com/js/.*950\.js -# ||sooopu.com/images/web/cg328/cg.js (easylistchina+easylist.txt: 4652) +# ||sooopu.com/images/web/cg328/cg.js (easylistchina.txt: 4634) .sooopu.com/images/web/cg328/cg\.js -# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina+easylist.txt: 4651) +# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina.txt: 4632) .sohu.com/interaction/get/getListByVidForVrs\.do\? -# ||sohu.com/adgtr/ (easylistchina+easylist.txt: 4650) +# ||sohu.com/adgtr/ (easylistchina.txt: 4631) .sohu.com/adgtr/ -# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina+easylist.txt: 4649) +# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina.txt: 4630) .sohu.com.cn/ppp/bms/bms\.popup\. -# ||sogou.com/skins/images/skinlist_ad. (easylistchina+easylist.txt: 4648) +# ||sogou.com/skins/images/skinlist_ad. (easylistchina.txt: 4629) .sogou.com/skins/images/skinlist_ad\. -# ||sogou.com/images/galaxy.jpg (easylistchina+easylist.txt: 4647) +# ||sogou.com/images/galaxy.jpg (easylistchina.txt: 4628) .sogou.com/images/galaxy\.jpg -# ||softhy.net/hp/ (easylistchina+easylist.txt: 4646) +# ||softhy.net/hp/ (easylistchina.txt: 4627) .softhy.net/hp/ -# ||soft711.com/2013/ (easylistchina+easylist.txt: 4645) +# ||soft711.com/2013/ (easylistchina.txt: 4626) .soft711.com/2013/ -# ||soft.mumayi.net/js/ (easylistchina+easylist.txt: 4644) +# ||soft.mumayi.net/js/ (easylistchina.txt: 4625) .soft.mumayi.net/js/ -# ||soft.mumayi.net/images/download.gif (easylistchina+easylist.txt: 4643) +# ||soft.mumayi.net/images/download.gif (easylistchina.txt: 4624) .soft.mumayi.net/images/download\.gif -# ||soaspx.com/images/iiszj.gif (easylistchina+easylist.txt: 4642) +# ||soaspx.com/images/iiszj.gif (easylistchina.txt: 4623) .soaspx.com/images/iiszj\.gif -# ||soaspx.com/images/hws.gif (easylistchina+easylist.txt: 4641) +# ||soaspx.com/images/hws.gif (easylistchina.txt: 4622) .soaspx.com/images/hws\.gif -# ||so100.cn/images/newshead.htm (easylistchina+easylist.txt: 4640) +# ||so100.cn/images/newshead.htm (easylistchina.txt: 4621) .so100.cn/images/newshead\.htm -# ||so100.cn/images/a*.js (easylistchina+easylist.txt: 4639) +# ||so100.cn/images/a*.js (easylistchina.txt: 4620) .so100.cn/images/a.*\.js -# ||so.open.163.com/v/list.htm?pid= (easylistchina+easylist.txt: 4638) +# ||so.open.163.com/v/list.htm?pid= (easylistchina.txt: 4619) .so.open.163.com/v/list\.htm\?pid= -# ||so.6949.com^ (easylistchina+easylist.txt: 4637) +# ||so.6949.com^ (easylistchina.txt: 4618) .so.6949.com -# ||snybw.com/images/*-banner. (easylistchina+easylist.txt: 4636) +# ||snybw.com/images/*-banner. (easylistchina.txt: 4617) .snybw.com/images/.*-banner\. -# ||smzy.com^*970.js (easylistchina+easylist.txt: 4635) +# ||smzy.com^*970.js (easylistchina.txt: 4616) .smzy.com/.*970\.js -# ||smzy.com^*/webtg (easylistchina+easylist.txt: 4634) +# ||smzy.com^*/webtg (easylistchina.txt: 4615) .smzy.com/.*/webtg -# ||slit.cn/slgg/ (easylistchina+easylist.txt: 4633) +# ||slooti.com/upload/30/38/1446711674.gif (easylistchina.txt: 4614) +.slooti.com/upload/30/38/1446711674\.gif +# ||slit.cn/slgg/ (easylistchina.txt: 4613) .slit.cn/slgg/ -# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina+easylist.txt: 4632) +# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina.txt: 4612) .slit.cn/skin/slitsk/js/dlad\.js -# ||slit.cn/d/js/images/thea (easylistchina+easylist.txt: 4631) +# ||slit.cn/d/js/images/thea (easylistchina.txt: 4611) .slit.cn/d/js/images/thea -# ||skinme.cc/assets/images/banner_ (easylistchina+easylist.txt: 4630) +# ||skinme.cc/assets/images/banner_ (easylistchina.txt: 4610) .skinme.cc/assets/images/banner_ -# ||skinme.cc*/assets/images/*0.swf (easylistchina+easylist.txt: 4629) +# ||skinme.cc*/assets/images/*0.swf (easylistchina.txt: 4609) .skinme.cc*./(.*/)?assets/images/.*0\.swf -# ||skdh2.com/tp/ (easylistchina+easylist.txt: 4628) +# ||skdh2.com/tp/ (easylistchina.txt: 4608) .skdh2.com/tp/ -# ||skdh1.com/tp/ (easylistchina+easylist.txt: 4627) +# ||skdh1.com/tp/ (easylistchina.txt: 4607) .skdh1.com/tp/ -# ||skads.gxsky.com^$script (easylistchina+easylist.txt: 4626) +# ||skdh.net^*980 (easylistchina.txt: 4606) +.skdh.net/.*980 +# ||skdh.net/zuo.js (easylistchina.txt: 4605) +.skdh.net/zuo\.js +# ||skads.gxsky.com^$script (easylistchina.txt: 4604) .skads.gxsky.com -# ||sjzdaily.com.cn/sjznewsad/ (easylistchina+easylist.txt: 4625) +# ||sjzdaily.com.cn/sjznewsad/ (easylistchina.txt: 4603) .sjzdaily.com.cn/sjznewsad/ -# ||sjzbus.com.cn/advimg/ (easylistchina+easylist.txt: 4624) +# ||sjzbus.com.cn/advimg/ (easylistchina.txt: 4602) .sjzbus.com.cn/advimg/ -# ||sjyws.sjyws.com^*.gif (easylistchina+easylist.txt: 4623) +# ||sjyws.sjyws.com^*.gif (easylistchina.txt: 4601) .sjyws.sjyws.com/.*\.gif -# ||siyu88.net/g$subdocument (easylistchina+easylist.txt: 4622) +# ||siyu88.net/g$subdocument (easylistchina.txt: 4600) .siyu88.net/g -# ||siyu88.cn/xl/ (easylistchina+easylist.txt: 4621) +# ||siyu88.cn/xl/ (easylistchina.txt: 4599) .siyu88.cn/xl/ -# ||sisiww.com/yezicheng_ad/ (easylistchina+easylist.txt: 4620) +# ||sisiww.com/yezicheng_ad/ (easylistchina.txt: 4598) .sisiww.com/yezicheng_ad/ -# ||sisiww.com/6786526.gif (easylistchina+easylist.txt: 4619) +# ||sisiww.com/6786526.gif (easylistchina.txt: 4597) .sisiww.com/6786526\.gif -# ||sinolub.com/data/js/*.js (easylistchina+easylist.txt: 4618) +# ||sinolub.com/data/js/*.js (easylistchina.txt: 4596) .sinolub.com/data/js/.*\.js -# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina+easylist.txt: 4617) +# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina.txt: 4595) .sinajs.cn/t6/home/js/pl/guide/bigday/ -# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina+easylist.txt: 4616) +# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina.txt: 4594) .sinajs.cn/t6/home/js/pl/guide/adforfqy/ -# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina+easylist.txt: 4615) +# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina.txt: 4593) .sinajs.cn/t4/apps/publicity/static/wbad\.js -# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina+easylist.txt: 4614) +# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina.txt: 4592) .sinajs.cn/blog7style/images/activity/app_tuiguang/ -# ||sinaimg.cn^*/deco/$script (easylistchina+easylist.txt: 4613) +# ||sinaimg.cn^*/deco/$script (easylistchina.txt: 4591) .sinaimg.cn/.*/deco/ -# ||sinaimg.cn/unipro/ (easylistchina+easylist.txt: 4610) +# ||sinaimg.cn/unipro/ (easylistchina.txt: 4588) .sinaimg.cn/unipro/ -# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina+easylist.txt: 4609) +# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina.txt: 4587) .sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82\.gif -# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina+easylist.txt: 4608) +# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina.txt: 4586) .sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj\.jpg -# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina+easylist.txt: 4607) +# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina.txt: 4585) .sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn\.jpg -# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina+easylist.txt: 4606) +# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina.txt: 4584) .sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh\.jpg -# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina+easylist.txt: 4605) +# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina.txt: 4583) .sinaimg.cn/mw690/a6a976a2.*j207e02a -# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina+easylist.txt: 4604) +# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina.txt: 4582) .sinaimg.cn/mw690/a1916e89gw1dye4d74zmij\.jpg -# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina+easylist.txt: 4603) +# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina.txt: 4581) .sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj\.jpg -# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina+easylist.txt: 4602) +# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina.txt: 4580) .sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi\.jpg -# ||sinaimg.cn/mw690/60006c33jw9eir85o4mbsj206y05sgm4.jpg (easylistchina+easylist.txt: 4601) -.sinaimg.cn/mw690/60006c33jw9eir85o4mbsj206y05sgm4\.jpg -# ||sinaimg.cn/mw690/005GRsDJjw1eo1jledg4cj30b40b4go4.jpg (easylistchina+easylist.txt: 4600) -.sinaimg.cn/mw690/005GRsDJjw1eo1jledg4cj30b40b4go4\.jpg -# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina+easylist.txt: 4599) +# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina.txt: 4579) .sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu\.jpg -# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina+easylist.txt: 4598) +# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina.txt: 4578) .sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina+easylist.txt: 4596) +# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina.txt: 4576) .sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81\.gif -# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina+easylist.txt: 4595) +# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina.txt: 4575) .sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina+easylist.txt: 4594) +# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina.txt: 4574) .sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina+easylist.txt: 4593) +# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina.txt: 4573) .sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf\.jpg -# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina+easylist.txt: 4591) +# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina.txt: 4571) .sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt\.gif -# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina+easylist.txt: 4590) +# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina.txt: 4570) .sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y\.jpg -# ||sinaimg.cn/large/b8c4115djw1els3p1luszg208c06ymzb.jpg (easylistchina+easylist.txt: 4589) -.sinaimg.cn/large/b8c4115djw1els3p1luszg208c06ymzb\.jpg -# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina+easylist.txt: 4588) +# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina.txt: 4569) .sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r\.gif -# ||sinaimg.cn/large/0064LzSDgw1eqft*.gif (easylistchina+easylist.txt: 4587) -.sinaimg.cn/large/0064LzSDgw1eqft.*\.gif -# ||sinaimg.cn/large/005yyi5Jjw1eoinnnh4caj308c06yt9k.jpg (easylistchina+easylist.txt: 4586) -.sinaimg.cn/large/005yyi5Jjw1eoinnnh4caj308c06yt9k\.jpg -# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina+easylist.txt: 4585) +# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina.txt: 4568) .sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5\.jpg -# ||sinaimg.cn/large/005YVJvVgw1eqeoa1vo9og30rn01ytgn.gif (easylistchina+easylist.txt: 4584) -.sinaimg.cn/large/005YVJvVgw1eqeoa1vo9og30rn01ytgn\.gif -# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina+easylist.txt: 4583) +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina.txt: 4567) .sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts\.jpg -# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina+easylist.txt: 4582) +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina.txt: 4566) .sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta\.jpg -# ||sinaimg.cn/large/005S1G8Qjw1eqb4y4ifo0g30qj01ydic.gif (easylistchina+easylist.txt: 4581) -.sinaimg.cn/large/005S1G8Qjw1eqb4y4ifo0g30qj01ydic\.gif -# ||sinaimg.cn/large/005S1G8Qjw1eqb4xx9e1qg308c06yaca.gif (easylistchina+easylist.txt: 4580) -.sinaimg.cn/large/005S1G8Qjw1eqb4xx9e1qg308c06yaca\.gif -# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina+easylist.txt: 4579) +# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina.txt: 4565) .sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy\.gif -# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina+easylist.txt: 4575) +# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina.txt: 4563) .sinaimg.cn/jslib/kuozhanad\.js -# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina+easylist.txt: 4574) +# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina.txt: 4562) .sinaimg.cn/finance/zwy/sidead_ -# ||sinaimg.cn/cj/dfz_ad/ (easylistchina+easylist.txt: 4573) +# ||sinaimg.cn/cj/dfz_ad/ (easylistchina.txt: 4561) .sinaimg.cn/cj/dfz_ad/ -# ||sinaimg.cn/bmiddle/48dc6199jw1eyk360j058g209c07stdl.gif (easylistchina+easylist.txt: 4572) -.sinaimg.cn/bmiddle/48dc6199jw1eyk360j058g209c07stdl\.gif -# ||sina.com/rm/ (easylistchina+easylist.txt: 4571) +# ||sina.com/rm/ (easylistchina.txt: 4560) .sina.com/rm/ -# ||sina.com/assets/js/dart/ (easylistchina+easylist.txt: 4570) +# ||sina.com/assets/js/dart/ (easylistchina.txt: 4559) .sina.com/assets/js/dart/ -# ||sina.com/ads/ (easylistchina+easylist.txt: 4569) +# ||sina.com/ads/ (easylistchina.txt: 4558) .sina.com/ads/ -# ||sina.com.tw^$subdocument (easylistchina+easylist.txt: 4568) +# ||sina.com.tw^$subdocument (easylistchina.txt: 4557) .sina.com.tw -# ||sina.com.tw/game_data/adsbro_ (easylistchina+easylist.txt: 4567) +# ||sina.com.tw/game_data/adsbro_ (easylistchina.txt: 4556) .sina.com.tw/game_data/adsbro_ -# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina+easylist.txt: 4566) +# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina.txt: 4555) .sina.com.cn/tgy/pop_js/ad\.js -# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina+easylist.txt: 4565) +# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina.txt: 4554) .sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90\.gif -# ||sina.com.cn/NewIndexAdStart.js (easylistchina+easylist.txt: 4564) +# ||sina.com.cn/NewIndexAdStart.js (easylistchina.txt: 4553) .sina.com.cn/NewIndexAdStart\.js -# ||sina.com.cn/litong/ (easylistchina+easylist.txt: 4563) +# ||sina.com.cn/litong/ (easylistchina.txt: 4552) .sina.com.cn/litong/ -# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina+easylist.txt: 4562) +# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina.txt: 4551) .sina.com.cn/js/87/20140101/hongbao/ -# ||sina.com.cn/js/*/bgads.js (easylistchina+easylist.txt: 4561) +# ||sina.com.cn/js/*/bgads.js (easylistchina.txt: 4550) .sina.com.cn/js/.*/bgads\.js -# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina+easylist.txt: 4560) +# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina.txt: 4549) .sina.com.cn/js/.*/AdvertisingByNewIndex_ -# ||sina.cn/adfront/deliver.php? (easylistchina+easylist.txt: 4559) +# ||sina.com.cn/131/20150515/266.js (easylistchina.txt: 4548) +.sina.com.cn/131/20150515/266\.js +# ||sina.cn/adfront/deliver.php? (easylistchina.txt: 4547) .sina.cn/adfront/deliver\.php\? -# ||simplecd.me/static/js/adcpm.js (easylistchina+easylist.txt: 4558) +# ||simplecd.me/static/js/adcpm.js (easylistchina.txt: 4546) .simplecd.me/static/js/adcpm\.js -# ||shxd.net/img/myad.gif (easylistchina+easylist.txt: 4557) +# ||shxd.net/img/myad.gif (easylistchina.txt: 4545) .shxd.net/img/myad\.gif -# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina+easylist.txt: 4556) +# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina.txt: 4544) .shuyeer.com/views/default/mnstyle/hot/gg\.js -# ||shuyeer.com/views/default/images/close.gif (easylistchina+easylist.txt: 4555) +# ||shuyeer.com/views/default/images/close.gif (easylistchina.txt: 4543) .shuyeer.com/views/default/images/close\.gif -# ||shuyeer.com/dlr.html (easylistchina+easylist.txt: 4554) +# ||shuyeer.com/dlr.html (easylistchina.txt: 4542) .shuyeer.com/dlr\.html -# ||shuqi6.com/static/jquery/gg.js (easylistchina+easylist.txt: 4553) +# ||shuqi6.com/static/jquery/gg.js (easylistchina.txt: 4541) .shuqi6.com/static/jquery/gg\.js -# ||shumimi.com/js/a3.js (easylistchina+easylist.txt: 4552) +# ||shumimi.com/js/a3.js (easylistchina.txt: 4540) .shumimi.com/js/a3\.js -# ||shumimi.com/js/a2.js (easylistchina+easylist.txt: 4551) +# ||shumimi.com/js/a2.js (easylistchina.txt: 4539) .shumimi.com/js/a2\.js -# ||shumimi.com/js/a1.js (easylistchina+easylist.txt: 4550) +# ||shumimi.com/js/a1.js (easylistchina.txt: 4538) .shumimi.com/js/a1\.js -# ||shumimi.com/js/a0 (easylistchina+easylist.txt: 4549) +# ||shumimi.com/js/a0 (easylistchina.txt: 4537) .shumimi.com/js/a0 -# ||shulink.com/js/pagetop5.js (easylistchina+easylist.txt: 4548) +# ||shulink.com/js/pagetop5.js (easylistchina.txt: 4536) .shulink.com/js/pagetop5\.js -# ||shulihua.net/js/yegonggao.js (easylistchina+easylist.txt: 4547) +# ||shulihua.net/js/yegonggao.js (easylistchina.txt: 4535) .shulihua.net/js/yegonggao\.js -# ||shulihua.net/js/topcen.js (easylistchina+easylist.txt: 4546) +# ||shulihua.net/js/topcen.js (easylistchina.txt: 4534) .shulihua.net/js/topcen\.js -# ||shulihua.net/js/gzlishigoogle.js (easylistchina+easylist.txt: 4545) +# ||shulihua.net/js/gzlishigoogle.js (easylistchina.txt: 4533) .shulihua.net/js/gzlishigoogle\.js -# ||shulihua.net/js/gzlishi468google.js (easylistchina+easylist.txt: 4544) +# ||shulihua.net/js/gzlishi468google.js (easylistchina.txt: 4532) .shulihua.net/js/gzlishi468google\.js -# ||shuhe.cc/ssi/ (easylistchina+easylist.txt: 4543) +# ||shuhe.cc/ssi/ (easylistchina.txt: 4531) .shuhe.cc/ssi/ -# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina+easylist.txt: 4542) +# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina.txt: 4530) .shuajizhijia.com/uploads/allimg/141121/1_1702554911\.jpg -# ||shuajizhijia.com/static/js/rightdown.js (easylistchina+easylist.txt: 4541) +# ||shuajizhijia.com/static/js/rightdown.js (easylistchina.txt: 4529) .shuajizhijia.com/static/js/rightdown\.js -# ||shuaijiao.com/statics/js/adv0.js (easylistchina+easylist.txt: 4540) +# ||shuaijiao.com/statics/js/adv0.js (easylistchina.txt: 4528) .shuaijiao.com/statics/js/adv0\.js -# ||shows.21cn.com^ (easylistchina+easylist.txt: 4539) +# ||shows.21cn.com^ (easylistchina.txt: 4527) .shows.21cn.com -# ||showbean.net:8081/cpma.js (easylistchina+easylist.txt: 4538) +# ||showbean.net:8081/cpma.js (easylistchina.txt: 4526) .showbean.net:8081/cpma\.js -# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina+easylist.txt: 4537) +# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina.txt: 4525) .shouyoutv.com/assets/api/web/v4/js/global_head\.js -# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina+easylist.txt: 4536) +# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina.txt: 4524) .shouyou.com/2013/new/shouyou-duilian\.js -# ||shoudian.org/diantong/sunwayman*.gif (easylistchina+easylist.txt: 4535) +# ||shoudian.org/diantong/sunwayman*.gif (easylistchina.txt: 4523) .shoudian.org/diantong/sunwayman.*\.gif -# ||shmet.com/js/shmetAd.js (easylistchina+easylist.txt: 4534) +# ||shmet.com/js/shmetAd.js (easylistchina.txt: 4522) .shmet.com/js/shmetAd\.js -# ||shmet.com/images/zz250x80.jpg (easylistchina+easylist.txt: 4533) +# ||shmet.com/images/zz250x80.jpg (easylistchina.txt: 4521) .shmet.com/images/zz250x80\.jpg -# ||shmet.com/images/20120213ad/ (easylistchina+easylist.txt: 4532) +# ||shmet.com/images/20120213ad/ (easylistchina.txt: 4520) .shmet.com/images/20120213ad/ -# ||shmet.com/images/150x150newsshmet.jpg (easylistchina+easylist.txt: 4531) +# ||shmet.com/images/150x150newsshmet.jpg (easylistchina.txt: 4519) .shmet.com/images/150x150newsshmet\.jpg -# ||shmet.com/images/1000x90newshmet.swf (easylistchina+easylist.txt: 4530) +# ||shmet.com/images/1000x90newshmet.swf (easylistchina.txt: 4518) .shmet.com/images/1000x90newshmet\.swf -# ||shm.com.cn/js/load.swf (easylistchina+easylist.txt: 4529) +# ||shm.com.cn/js/load.swf (easylistchina.txt: 4517) .shm.com.cn/js/load\.swf -# ||shm.com.cn/css/m.js (easylistchina+easylist.txt: 4528) +# ||shm.com.cn/css/m.js (easylistchina.txt: 4516) .shm.com.cn/css/m\.js -# ||shm.com.cn/content/con*.js (easylistchina+easylist.txt: 4527) +# ||shm.com.cn/content/con*.js (easylistchina.txt: 4515) .shm.com.cn/content/con.*\.js -# ||shfq.com/data/attachment/portal/ (easylistchina+easylist.txt: 4526) +# ||shfq.com/data/attachment/portal/ (easylistchina.txt: 4514) .shfq.com/data/attachment/portal/ -# ||shenmeshi.com/googlejs/ziding1.js (easylistchina+easylist.txt: 4525) +# ||shenmeshi.com/googlejs/ziding1.js (easylistchina.txt: 4513) .shenmeshi.com/googlejs/ziding1\.js -# ||shenmaxiaoshuo.com/js/mu.js (easylistchina+easylist.txt: 4524) +# ||shenmaxiaoshuo.com/js/mu.js (easylistchina.txt: 4512) .shenmaxiaoshuo.com/js/mu\.js -# ||shenmaxiaoshuo.com/js/lu.js (easylistchina+easylist.txt: 4523) +# ||shenmaxiaoshuo.com/js/lu.js (easylistchina.txt: 4511) .shenmaxiaoshuo.com/js/lu\.js -# ||shenmaxiaoshuo.com/js/hf (easylistchina+easylist.txt: 4522) +# ||shenmaxiaoshuo.com/js/hf (easylistchina.txt: 4510) .shenmaxiaoshuo.com/js/hf -# ||shenleyuni.com^ (easylistchina+easylist.txt: 4521) +# ||shenleyuni.com^ (easylistchina.txt: 4509) .shenleyuni.com -# ||shejizhan.org/images/myssh (easylistchina+easylist.txt: 4520) +# ||shejizhan.org/images/myssh (easylistchina.txt: 4508) .shejizhan.org/images/myssh -# ||shehuitu.com/jsjs/ (easylistchina+easylist.txt: 4519) +# ||shehuitu.com/jsjs/ (easylistchina.txt: 4507) .shehuitu.com/jsjs/ -# ||shbear.com^*/ad/ (easylistchina+easylist.txt: 4518) +# ||shbear.com^*/ad/ (easylistchina.txt: 4506) .shbear.com/.*/ad/ -# ||share666.com/adad2014/ (easylistchina+easylist.txt: 4517) -.share666.com/adad2014/ -# ||share666.com/30033.gif (easylistchina+easylist.txt: 4516) -.share666.com/30033\.gif -# ||share.gzdsw.com^ (easylistchina+easylist.txt: 4515) +# ||share.gzdsw.com^ (easylistchina.txt: 4505) .share.gzdsw.com -# ||share.dmhy.*/*?$image (easylistchina+easylist.txt: 4514) +# ||share.dmhy.*/*?$image (easylistchina.txt: 4504) .share.dmhy.*./(.*/)?.*\? -# ||shaoxing.com.cn^*gg. (easylistchina+easylist.txt: 4513) +# ||shaoxing.com.cn^*gg. (easylistchina.txt: 4503) .shaoxing.com.cn/.*gg\. -# ||shaoxing.com.cn/6201.files/*.swf (easylistchina+easylist.txt: 4512) +# ||shaoxing.com.cn/6201.files/*.swf (easylistchina.txt: 4502) .shaoxing.com.cn/6201\.files/.*\.swf -# ||shanhe.cc/Scripts/main-pf.js (easylistchina+easylist.txt: 4511) +# ||shanhe.cc/Scripts/main-pf.js (easylistchina.txt: 4501) .shanhe.cc/Scripts/main-pf\.js -# ||shanhe.cc/Scripts/ads_dl.js (easylistchina+easylist.txt: 4510) +# ||shanhe.cc/Scripts/ads_dl.js (easylistchina.txt: 4500) .shanhe.cc/Scripts/ads_dl\.js -# ||shanhe.cc/index.php?m=poster& (easylistchina+easylist.txt: 4509) +# ||shanhe.cc/index.php?m=poster& (easylistchina.txt: 4499) .shanhe.cc/index\.php\?m=poster& -# ||shangdu.com/tpnews/dazhe.gif (easylistchina+easylist.txt: 4508) +# ||shangdu.com/tpnews/dazhe.gif (easylistchina.txt: 4498) .shangdu.com/tpnews/dazhe\.gif -# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina+easylist.txt: 4507) +# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina.txt: 4497) .shangdu.com/newfile2007/ad/tu/flash/3dboard\.swf -# ||shangdu.com/lyinfo/ad/ (easylistchina+easylist.txt: 4506) +# ||shangdu.com/lyinfo/ad/ (easylistchina.txt: 4496) .shangdu.com/lyinfo/ad/ -# ||shangdu.com/comiis_ad/ (easylistchina+easylist.txt: 4505) +# ||shangdu.com/comiis_ad/ (easylistchina.txt: 4495) .shangdu.com/comiis_ad/ -# ||shangdu.com/bbs/1005010601.js (easylistchina+easylist.txt: 4504) +# ||shangdu.com/bbs/1005010601.js (easylistchina.txt: 4494) .shangdu.com/bbs/1005010601\.js -# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina+easylist.txt: 4503) +# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina.txt: 4493) .shangdu.com/2013pic/kuahailong\.jpg -# ||shangdu.com/2013pic/09cn.jpg (easylistchina+easylist.txt: 4502) +# ||shangdu.com/2013pic/09cn.jpg (easylistchina.txt: 4492) .shangdu.com/2013pic/09cn\.jpg -# ||shangdu.com/1002/1002031301.js (easylistchina+easylist.txt: 4501) +# ||shangdu.com/1002/1002031301.js (easylistchina.txt: 4491) .shangdu.com/1002/1002031301\.js -# ||shangdu.com/1002/1002030901.js (easylistchina+easylist.txt: 4500) +# ||shangdu.com/1002/1002030901.js (easylistchina.txt: 4490) .shangdu.com/1002/1002030901\.js -# ||shangdu.com/1002/1002030801.js (easylistchina+easylist.txt: 4499) +# ||shangdu.com/1002/1002030801.js (easylistchina.txt: 4489) .shangdu.com/1002/1002030801\.js -# ||shangdu.com/1002/1002030101.js (easylistchina+easylist.txt: 4498) +# ||shangdu.com/1002/1002030101.js (easylistchina.txt: 4488) .shangdu.com/1002/1002030101\.js -# ||shang.hlgnet.net/code/ (easylistchina+easylist.txt: 4497) +# ||shang.hlgnet.net/code/ (easylistchina.txt: 4487) .shang.hlgnet.net/code/ -# ||shang.hlgnet.com/code/ (easylistchina+easylist.txt: 4496) +# ||shang.hlgnet.com/code/ (easylistchina.txt: 4486) .shang.hlgnet.com/code/ -# ||shabc.net/shyk/swt/swt_yh.js (easylistchina+easylist.txt: 4495) +# ||shabc.net/shyk/swt/swt_yh.js (easylistchina.txt: 4485) .shabc.net/shyk/swt/swt_yh\.js -# ||sh114so.com^$subdocument (easylistchina+easylist.txt: 4494) +# ||sh114so.com^$subdocument (easylistchina.txt: 4484) .sh114so.com -# ||sh114so.com/js/nm*.js (easylistchina+easylist.txt: 4493) +# ||sh114so.com/js/nm*.js (easylistchina.txt: 4483) .sh114so.com/js/nm.*\.js -# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina+easylist.txt: 4492) +# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina.txt: 4482) .sh.sina.com.cn/js/441/ZwyArticle_commo_23\.js -# ||sh.sina.com.cn/iframe/522/ (easylistchina+easylist.txt: 4491) +# ||sh.sina.com.cn/iframe/522/ (easylistchina.txt: 4481) .sh.sina.com.cn/iframe/522/ -# ||sgg.southcn.com^ (easylistchina+easylist.txt: 4490) +# ||sgg.southcn.com^ (easylistchina.txt: 4480) .sgg.southcn.com -# ||sg169.com/uploadfile/*.swf (easylistchina+easylist.txt: 4489) +# ||sg169.com/uploadfile/*.swf (easylistchina.txt: 4479) .sg169.com/uploadfile/.*\.swf -# ||sg169.com/uploadfile/*.gif (easylistchina+easylist.txt: 4488) +# ||sg169.com/uploadfile/*.gif (easylistchina.txt: 4478) .sg169.com/uploadfile/.*\.gif -# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina+easylist.txt: 4487) +# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina.txt: 4477) .sf-express.com/cn/sc/\.galleries/sfbest/.*_right_sc\. -# ||sexbarss.net/wap/ (easylistchina+easylist.txt: 4486) +# ||sexbarss.net/wap/ (easylistchina.txt: 4476) .sexbarss.net/wap/ -# ||sentsin.qiniudn.com/ad_ (easylistchina+easylist.txt: 4485) +# ||sentsin.qiniudn.com/ad_ (easylistchina.txt: 4475) .sentsin.qiniudn.com/ad_ -# ||sejie2.us/images/*.gif (easylistchina+easylist.txt: 4484) +# ||sejie2.us/images/*.gif (easylistchina.txt: 4474) .sejie2.us/images/.*\.gif -# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina+easylist.txt: 4483) +# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina.txt: 4473) .secretmine.net/wp-content/uploads/2015/07/youdaoxiazai\.jpg -# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina+easylist.txt: 4482) +# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina.txt: 4472) .secretmine.net/wp-content/uploads/2015/07/A- -# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina+easylist.txt: 4481) +# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina.txt: 4471) .secretmine.net/wp-content/uploads/.*/610x80 -# ||secretmine.net/wp-content/uploads/*-960 (easylistchina+easylist.txt: 4480) +# ||secretmine.net/wp-content/uploads/*-960 (easylistchina.txt: 4470) .secretmine.net/wp-content/uploads/.*-960 -# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina+easylist.txt: 4479) +# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina.txt: 4469) .secretmine.net/wp-content/uploads/.*-300-25\. -# ||sdzbcg.com/images/sdfhyl (easylistchina+easylist.txt: 4478) +# ||sdzbcg.com/images/sdfhyl (easylistchina.txt: 4468) .sdzbcg.com/images/sdfhyl -# ||sdzbcg.com/images/jnmy (easylistchina+easylist.txt: 4477) +# ||sdzbcg.com/images/jnmy (easylistchina.txt: 4467) .sdzbcg.com/images/jnmy -# ||sdzbcg.com/images/ggwzz.jpg (easylistchina+easylist.txt: 4476) +# ||sdzbcg.com/images/ggwzz.jpg (easylistchina.txt: 4466) .sdzbcg.com/images/ggwzz\.jpg -# ||sdo.com/static/image/mkads/ (easylistchina+easylist.txt: 4474) +# ||sdo.com/static/image/mkads/ (easylistchina.txt: 4464) .sdo.com/static/image/mkads/ -# ||sdktu.com/js/alpha.js (easylistchina+easylist.txt: 4473) +# ||sdktu.com/js/alpha.js (easylistchina.txt: 4463) .sdktu.com/js/alpha\.js -# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina+easylist.txt: 4472) +# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina.txt: 4462) .sdgundam.cn/upload/2015-07/dcfea62708a21351\.jpg -# ||sdgundam.cn/js/duilian3.js (easylistchina+easylist.txt: 4471) +# ||sdgundam.cn/js/duilian3.js (easylistchina.txt: 4461) .sdgundam.cn/js/duilian3\.js -# ||sd888.org/house/flash/ (easylistchina+easylist.txt: 4470) +# ||sd888.org/house/flash/ (easylistchina.txt: 4460) .sd888.org/house/flash/ -# ||sd888.org/flash/ (easylistchina+easylist.txt: 4469) +# ||sd888.org/flash/ (easylistchina.txt: 4459) .sd888.org/flash/ -# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina+easylist.txt: 4468) +# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina.txt: 4458) .sd.xinhuanet.com/2014xb/images/shanhang\.gif -# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina+easylist.txt: 4467) +# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina.txt: 4457) .sd.xinhuanet.com/2014xb/html/albbg\.htm -# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina+easylist.txt: 4466) +# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina.txt: 4456) .sd.xinhuanet.com/2014xb/flash/ -# ||scsn.cn/Public/config/Couplet/Index (easylistchina+easylist.txt: 4465) +# ||scsn.cn/Public/config/Couplet/Index (easylistchina.txt: 4455) .scsn.cn/Public/config/Couplet/Index -# ||scsn.cn/Public/config/Couplet/16.js (easylistchina+easylist.txt: 4464) +# ||scsn.cn/Public/config/Couplet/16.js (easylistchina.txt: 4454) .scsn.cn/Public/config/Couplet/16\.js -# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina+easylist.txt: 4463) +# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina.txt: 4453) .script.cmfu.com/Script/GameAdAptationInfo\.js -# ||script.cmfu.com/ADScript/ (easylistchina+easylist.txt: 4462) +# ||script.cmfu.com/ADScript/ (easylistchina.txt: 4452) .script.cmfu.com/ADScript/ -# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina+easylist.txt: 4461) +# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina.txt: 4451) .scol.com.cn/scol-3/js/08scol_text_ -# ||scol.com.cn/js/def_ (easylistchina+easylist.txt: 4460) +# ||scol.com.cn/js/def_ (easylistchina.txt: 4450) .scol.com.cn/js/def_ -# ||sc.tom.com^ (easylistchina+easylist.txt: 4459) +# ||sc.tom.com^ (easylistchina.txt: 4449) .sc.tom.com -# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina+easylist.txt: 4458) +# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina.txt: 4448) .sc.chinaiiss.com/do\.php\?do=ad& -# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina+easylist.txt: 4457) +# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina.txt: 4447) .saydigi.com/wp-content/uploads/2015/01/gogo\.png -# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina+easylist.txt: 4456) +# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina.txt: 4446) .saydigi.com/wp-content/uploads/2014/01/mii2\.gif -# ||saydigi.com/wp-content/uploads/*-banner (easylistchina+easylist.txt: 4455) +# ||saydigi.com/wp-content/uploads/*-banner (easylistchina.txt: 4445) .saydigi.com/wp-content/uploads/.*-banner -# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina+easylist.txt: 4454) +# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina.txt: 4444) .saydigi.com/wp-content/uploads/.*-240x250\. -# ||sax.sina.com.cn/crossdomain.xml (easylistchina+easylist.txt: 4453) +# ||sax.sina.com.cn/crossdomain.xml (easylistchina.txt: 4443) .sax.sina.com.cn/crossdomain\.xml -# ||same.stockstar.com^ (easylistchina+easylist.txt: 4452) +# ||same.stockstar.com^ (easylistchina.txt: 4442) .same.stockstar.com -# ||same.eastmoney.com^ (easylistchina+easylist.txt: 4451) +# ||same.eastmoney.com^ (easylistchina.txt: 4441) .same.eastmoney.com -# ||same.chinadaily.com.cn^ (easylistchina+easylist.txt: 4450) +# ||same.chinadaily.com.cn^ (easylistchina.txt: 4440) .same.chinadaily.com.cn -# ||same*.jrj.com.cn^$script,subdocument (easylistchina+easylist.txt: 4449) +# ||same*.jrj.com.cn^$script,subdocument (easylistchina.txt: 4439) .same*./.*\.jrj\.com\.cn[^\w%.-] .same*.jrj.com.cn -# ||sam*.baby-kingdom.com^ (easylistchina+easylist.txt: 4448) +# ||sam*.baby-kingdom.com^ (easylistchina.txt: 4438) .sam*./.*\.baby-kingdom\.com[^\w%.-] .sam*.baby-kingdom.com -# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina+easylist.txt: 4447) +# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina.txt: 4437) .saibeinews.com/index\.php\?m=poster&c=index&a=show_poster& -# ||safedom.net/edm/ad/ (easylistchina+easylist.txt: 4446) +# ||safedom.net/edm/ad/ (easylistchina.txt: 4436) .safedom.net/edm/ad/ -# ||s8bbs.com/g.php? (easylistchina+easylist.txt: 4445) +# ||s8bbs.com/g.php? (easylistchina.txt: 4435) .s8bbs.com/g\.php\? -# ||s1979.com/html/ad_js/ (easylistchina+easylist.txt: 4444) +# ||s1979.com/html/ad_js/ (easylistchina.txt: 4434) .s1979.com/html/ad_js/ -# ||s1.pplive.cn/sta.js (easylistchina+easylist.txt: 4443) +# ||s1.pplive.cn/sta.js (easylistchina.txt: 4433) .s1.pplive.cn/sta\.js -# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina+easylist.txt: 4442) +# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina.txt: 4432) .s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226\.js -# ||s.yimg.com/gs/apex/ (easylistchina+easylist.txt: 4440) +# ||s.yimg.com/gs/apex/ (easylistchina.txt: 4430) .s.yimg.com/gs/apex/ -# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina+easylist.txt: 4439) +# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina.txt: 4429) .s.video.sina.com.cn/video/play\?video_id=249750205& -# ||s.u17t.com/leaflet/upload/ (easylistchina+easylist.txt: 4438) +# ||s.u17t.com/leaflet/upload/ (easylistchina.txt: 4428) .s.u17t.com/leaflet/upload/ -# ||s.tankr.net/s/$script (easylistchina+easylist.txt: 4437) +# ||s.tankr.net/s/$script (easylistchina.txt: 4427) .s.tankr.net/s/ -# ||s.tankr.net/n/ (easylistchina+easylist.txt: 4436) +# ||s.tankr.net/n/ (easylistchina.txt: 4426) .s.tankr.net/n/ -# ||s-msn.com/portal/xiatui.js (easylistchina+easylist.txt: 4435) +# ||s-msn.com/portal/xiatui.js (easylistchina.txt: 4425) .s-msn.com/portal/xiatui\.js -# ||s-msn.com/portal/hp/2015/807.html (easylistchina+easylist.txt: 4434) +# ||s-msn.com/portal/hp/2015/807.html (easylistchina.txt: 4424) .s-msn.com/portal/hp/2015/807\.html -# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina+easylist.txt: 4433) +# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina.txt: 4423) .s-msn.com/msnportal/hp/luckyday/ -# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina+easylist.txt: 4432) +# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina.txt: 4422) .rznews.cn/viscms/r/cms/rzw/rzxw/images/.*\.swf -# ||ruten.com.tw/js/gads_ (easylistchina+easylist.txt: 4431) +# ||ruten.com.tw/js/gads_ (easylistchina.txt: 4421) .ruten.com.tw/js/gads_ -# ||ruten.com.tw/js/ahd_ (easylistchina+easylist.txt: 4430) +# ||ruten.com.tw/js/ahd_ (easylistchina.txt: 4420) .ruten.com.tw/js/ahd_ -# ||runsky.com/html/*_index_ (easylistchina+easylist.txt: 4429) +# ||runsky.com/html/*_index_ (easylistchina.txt: 4419) .runsky.com/html/.*_index_ -# ||runsky.com/bbsadv- (easylistchina+easylist.txt: 4428) +# ||runsky.com/bbsadv- (easylistchina.txt: 4418) .runsky.com/bbsadv- -# ||runmang.com/img/ (easylistchina+easylist.txt: 4427) +# ||runmang.com/img/ (easylistchina.txt: 4417) .runmang.com/img/ -# ||runbt.com/js/ad (easylistchina+easylist.txt: 4426) +# ||runbt.com/js/ad (easylistchina.txt: 4416) .runbt.com/js/ad -# ||runbt.com/image/ad_ (easylistchina+easylist.txt: 4425) +# ||runbt.com/image/ad_ (easylistchina.txt: 4415) .runbt.com/image/ad_ -# ||ruian86.com/img/y13/ (easylistchina+easylist.txt: 4424) +# ||ruian86.com/img/y13/ (easylistchina.txt: 4414) .ruian86.com/img/y13/ -# ||ruian.com/img/y13/ (easylistchina+easylist.txt: 4423) +# ||ruian.com/img/y13/ (easylistchina.txt: 4413) .ruian.com/img/y13/ -# ||rugao35.com/Public/config/Couplet/Index (easylistchina+easylist.txt: 4422) +# ||rugao35.com/Public/config/Couplet/Index (easylistchina.txt: 4412) .rugao35.com/Public/config/Couplet/Index -# ||ruanyifeng.com/blog/images/sup_ (easylistchina+easylist.txt: 4421) +# ||ruanyifeng.com/blog/images/sup_ (easylistchina.txt: 4411) .ruanyifeng.com/blog/images/sup_ -# ||ruanyifeng.com/blog/images/ad_ (easylistchina+easylist.txt: 4420) +# ||ruanyifeng.com/blog/images/ad_ (easylistchina.txt: 4410) .ruanyifeng.com/blog/images/ad_ -# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina+easylist.txt: 4419) +# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina.txt: 4409) .ruanjianxiaozi.qiniudn.com -# ||ruan8.com/img/head.js (easylistchina+easylist.txt: 4418) +# ||ruan8.com/img/head.js (easylistchina.txt: 4408) .ruan8.com/img/head\.js -# ||ruan8.com/img/foot.js (easylistchina+easylist.txt: 4417) +# ||ruan8.com/img/foot.js (easylistchina.txt: 4407) .ruan8.com/img/foot\.js -# ||rtbs.cn/bi.js (easylistchina+easylist.txt: 4416) +# ||rtbs.cn/bi.js (easylistchina.txt: 4406) .rtbs.cn/bi\.js -# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina+easylist.txt: 4415) +# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina.txt: 4405) .rshhy.com/uploads/allimg/130517/1_1834445801\.jpg -# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina+easylist.txt: 4414) +# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina.txt: 4404) .rshhy.com/templets/default/images/zhixiao01\.jpg -# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina+easylist.txt: 4413) +# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina.txt: 4403) .rshhy.com/templets/default/images/paimai01\.jpg -# ||rsdown.cn/static/t/ (easylistchina+easylist.txt: 4412) +# ||rsdown.cn/static/t/ (easylistchina.txt: 4402) .rsdown.cn/static/t/ -# ||rsccs.com/code/ (easylistchina+easylist.txt: 4411) +# ||rsccs.com/code/ (easylistchina.txt: 4401) .rsccs.com/code/ -# ||rosmm.com/ad_js/ (easylistchina+easylist.txt: 4410) +# ||rosmm.com/ad_js/ (easylistchina.txt: 4400) .rosmm.com/ad_js/ -# ||rkanr.com/data/cpcache/cp*.js (easylistchina+easylist.txt: 4408) +# ||rkanr.com/data/cpcache/cp*.js (easylistchina.txt: 4398) .rkanr.com/data/cpcache/cp.*\.js -# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina+easylist.txt: 4407) +# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina.txt: 4397) .rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6\.jpg -# ||rizhao.net/html/js/main.js (easylistchina+easylist.txt: 4406) +# ||rizhao.net/html/js/main.js (easylistchina.txt: 4396) .rizhao.net/html/js/main\.js -# ||rising.com.cn/weblog/ (easylistchina+easylist.txt: 4405) +# ||rising.com.cn/weblog/ (easylistchina.txt: 4395) .rising.com.cn/weblog/ -# ||rising.cn^*/pic-ad/ (easylistchina+easylist.txt: 4404) +# ||rising.cn^*/pic-ad/ (easylistchina.txt: 4394) .rising.cn/.*/pic-ad/ -# ||ringhk.com/adves/ (easylistchina+easylist.txt: 4403) +# ||ringhk.com/adves/ (easylistchina.txt: 4393) .ringhk.com/adves/ -# ||right.com.cn/logo/*.gif (easylistchina+easylist.txt: 4401) +# ||right.com.cn/logo/*.gif (easylistchina.txt: 4391) .right.com.cn/logo/.*\.gif -# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina+easylist.txt: 4400) +# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina.txt: 4390) .right.com.cn/forum/static/image/common/logo\.gif -# ||rh.qq.com^ (easylistchina+easylist.txt: 4399) +# ||rh.qq.com^ (easylistchina.txt: 4389) .rh.qq.com -# ||rfidworld.com.cn/js/c.html (easylistchina+easylist.txt: 4398) +# ||rfidworld.com.cn/js/c.html (easylistchina.txt: 4388) .rfidworld.com.cn/js/c\.html -# ||rfidworld.com.cn/js/b.js (easylistchina+easylist.txt: 4397) +# ||rfidworld.com.cn/js/b.js (easylistchina.txt: 4387) .rfidworld.com.cn/js/b\.js -# ||rfidworld.com.cn/js/a.js (easylistchina+easylist.txt: 4396) +# ||rfidworld.com.cn/js/a.js (easylistchina.txt: 4386) .rfidworld.com.cn/js/a\.js -# ||res.ythouse.com/image/index/2012/ (easylistchina+easylist.txt: 4395) +# ||res.ythouse.com/image/index/2012/ (easylistchina.txt: 4385) .res.ythouse.com/image/index/2012/ -# ||res.hunantv.com^ (easylistchina+easylist.txt: 4394) +# ||res.hunantv.com^ (easylistchina.txt: 4384) .res.hunantv.com -# ||res.cngoldres.com/web/js/*_advs.js (easylistchina+easylist.txt: 4393) +# ||res.cngoldres.com/web/js/*_advs.js (easylistchina.txt: 4383) .res.cngoldres.com/web/js/.*_advs\.js -# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina+easylist.txt: 4392) +# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina.txt: 4382) .res.cngoldres.com/web/index/img/.*_ad_ -# ||repian.com/a/ (easylistchina+easylist.txt: 4391) +# ||repian.com/a/ (easylistchina.txt: 4381) .repian.com/a/ -# ||rentiyishu99.net/f.js (easylistchina+easylist.txt: 4390) +# ||rentiyishu99.net/f.js (easylistchina.txt: 4380) .rentiyishu99.net/f\.js -# ||rentiyishu99.net/e.js (easylistchina+easylist.txt: 4389) +# ||rentiyishu99.net/e.js (easylistchina.txt: 4379) .rentiyishu99.net/e\.js -# ||rentiyishu99.net/d.js (easylistchina+easylist.txt: 4388) +# ||rentiyishu99.net/d.js (easylistchina.txt: 4378) .rentiyishu99.net/d\.js -# ||rentiyishu99.net/b.js (easylistchina+easylist.txt: 4387) +# ||rentiyishu99.net/b.js (easylistchina.txt: 4377) .rentiyishu99.net/b\.js -# ||rentiyishu99.net/a.js (easylistchina+easylist.txt: 4386) +# ||rentiyishu99.net/a.js (easylistchina.txt: 4376) .rentiyishu99.net/a\.js -# ||rentiyishu.org/*.js (easylistchina+easylist.txt: 4385) +# ||rentiyishu.org/*.js (easylistchina.txt: 4375) .rentiyishu.org/.*\.js -# ||renrencd.com/static/images/*_adv. (easylistchina+easylist.txt: 4384) +# ||renrencd.com/static/images/*_adv. (easylistchina.txt: 4374) .renrencd.com/static/images/.*_adv\. -# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina+easylist.txt: 4383) +# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina.txt: 4373) .renren.com/pages/seo/reg_seo_pop\.js -# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina+easylist.txt: 4382) +# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina.txt: 4372) .ref.so/templates/ref/images/client/tg.*\.jpg -# ||readnovel.com/js/$subdocument (easylistchina+easylist.txt: 4381) +# ||readnovel.com/js/$subdocument (easylistchina.txt: 4371) .readnovel.com/js/ -# ||read.2200book.com/images/bloading.gif (easylistchina+easylist.txt: 4380) +# ||read.2200book.com/images/bloading.gif (easylistchina.txt: 4370) .read.2200book.com/images/bloading\.gif -# ||rar8.net/htmljs/ (easylistchina+easylist.txt: 4379) +# ||rar8.net/htmljs/ (easylistchina.txt: 4369) .rar8.net/htmljs/ -# ||ranwen.org/ssi/ (easylistchina+easylist.txt: 4378) +# ||ranwen.org/ssi/ (easylistchina.txt: 4368) .ranwen.org/ssi/ -# ||ranwen.net/ssi/ (easylistchina+easylist.txt: 4377) +# ||ranwen.net/ssi/ (easylistchina.txt: 4367) .ranwen.net/ssi/ -# ||rainmall.com/tv/js/bofang (easylistchina+easylist.txt: 4375) +# ||rainmall.com/tv/js/bofang (easylistchina.txt: 4365) .rainmall.com/tv/js/bofang -# ||rainmall.com/tv/js/ad (easylistchina+easylist.txt: 4374) +# ||rainmall.com/tv/js/ad (easylistchina.txt: 4364) .rainmall.com/tv/js/ad -# ||r3.ykimg.com/crossdomain.xml (easylistchina+easylist.txt: 4373) +# ||r3.ykimg.com/crossdomain.xml (easylistchina.txt: 4363) .r3.ykimg.com/crossdomain\.xml -# ||qzzn.com/statics/ (easylistchina+easylist.txt: 4372) +# ||qzzn.com/statics/ (easylistchina.txt: 4362) .qzzn.com/statics/ -# ||qzwb.com^*.swf| (easylistchina+easylist.txt: 4371) +# ||qzwb.com^*.swf| (easylistchina.txt: 4361) .qzwb.com/.*\.swf$ -# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina+easylist.txt: 4370) +# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina.txt: 4360) .qzwb.com/gb/img/9465\.files/1G3G\.gif -# ||qzss.cn/ssad (easylistchina+easylist.txt: 4369) +# ||qzss.cn/ssad (easylistchina.txt: 4359) .qzss.cn/ssad -# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina+easylist.txt: 4368) +# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina.txt: 4358) .qzs.qq.com/qzone/biz/res/v\.swf\?loc= -# ||qzntv.com^*.swf| (easylistchina+easylist.txt: 4367) +# ||qzntv.com^*.swf| (easylistchina.txt: 4357) .qzntv.com/.*\.swf$ -# ||qz828.com/css/2010/script/*ad (easylistchina+easylist.txt: 4366) +# ||qz828.com/css/2010/script/*ad (easylistchina.txt: 4356) .qz828.com/css/2010/script/.*ad -# ||qutuku.com/qutu/good.js (easylistchina+easylist.txt: 4365) +# ||qutuku.com/qutu/good.js (easylistchina.txt: 4355) .qutuku.com/qutu/good\.js -# ||qunaso.cn/Data/upload/ad/ (easylistchina+easylist.txt: 4364) +# ||qunaso.cn/Data/upload/ad/ (easylistchina.txt: 4354) .qunaso.cn/Data/upload/ad/ -# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina+easylist.txt: 4363) +# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina.txt: 4353) .qunar.com/vataplan\?framId=ifrNTOPAD& -# ||qunar.com/vataframe/b.html? (easylistchina+easylist.txt: 4362) +# ||qunar.com/vataframe/b.html? (easylistchina.txt: 4352) .qunar.com/vataframe/b\.html\? -# ||qunar.com/vata?chan= (easylistchina+easylist.txt: 4361) +# ||qunar.com/vata?chan= (easylistchina.txt: 4351) .qunar.com/vata\?chan= -# ||qunar.com/render/*Advertisement.jsp? (easylistchina+easylist.txt: 4360) +# ||qunar.com/render/*Advertisement.jsp? (easylistchina.txt: 4350) .qunar.com/render/.*Advertisement\.jsp\? -# ||quledu.com/js/nrh.js (easylistchina+easylist.txt: 4359) +# ||quledu.com/js/nrh.js (easylistchina.txt: 4349) .quledu.com/js/nrh\.js -# ||qtfy30.cn/980-90.gif (easylistchina+easylist.txt: 4358) +# ||qtfy30.cn/980-90.gif (easylistchina.txt: 4348) .qtfy30.cn/980-90\.gif -# ||qtfy30.cn/680_*.gif (easylistchina+easylist.txt: 4357) +# ||qtfy30.cn/680_*.gif (easylistchina.txt: 4347) .qtfy30.cn/680_.*\.gif -# ||qstatic.com/baike/js/ad_ (easylistchina+easylist.txt: 4356) +# ||qstatic.com/baike/js/ad_ (easylistchina.txt: 4346) .qstatic.com/baike/js/ad_ -# ||qscjw.com/uploads/590.gif (easylistchina+easylist.txt: 4355) +# ||qscjw.com/uploads/590.gif (easylistchina.txt: 4345) .qscjw.com/uploads/590\.gif -# ||qqzuqiu.com/?a=check& (easylistchina+easylist.txt: 4354) +# ||qqzuqiu.com/?a=check& (easylistchina.txt: 4344) .qqzuqiu.com/\?a=check& -# ||qqyy.com/js/public_end_add.js (easylistchina+easylist.txt: 4353) +# ||qqyy.com/js/public_end_add.js (easylistchina.txt: 4343) .qqyy.com/js/public_end_add\.js -# ||qqyy.com/js/commAdv (easylistchina+easylist.txt: 4352) +# ||qqyy.com/js/commAdv (easylistchina.txt: 4342) .qqyy.com/js/commAdv -# ||qqtz.com/ad$subdocument (easylistchina+easylist.txt: 4351) +# ||qqtz.com/ad$subdocument (easylistchina.txt: 4341) .qqtz.com/ad -# ||qqread.com/swf/ (easylistchina+easylist.txt: 4350) +# ||qqread.com/swf/ (easylistchina.txt: 4340) .qqread.com/swf/ -# ||qqread.com/*js/$script (easylistchina+easylist.txt: 4349) +# ||qqread.com/*js/$script (easylistchina.txt: 4339) .qqread.com/.*js/ -# ||qqmcc.org/biz/home_top_960x90.html (easylistchina+easylist.txt: 4348) +# ||qqmcc.org/biz/home_top_960x90.html (easylistchina.txt: 4338) .qqmcc.org/biz/home_top_960x90\.html -# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina+easylist.txt: 4347) +# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina.txt: 4337) .qqkj.cn/js/qqkjnew/lanmuzhuantitongji\.js -# ||qqjia.com/images/ad (easylistchina+easylist.txt: 4346) +# ||qqjia.com/images/ad (easylistchina.txt: 4336) .qqjia.com/images/ad -# ||qqjia.com/dan.js (easylistchina+easylist.txt: 4345) +# ||qqjia.com/dan.js (easylistchina.txt: 4335) .qqjia.com/dan\.js -# ||qqhjy.com/soft/Upload*.gif (easylistchina+easylist.txt: 4344) +# ||qqhjy.com/soft/Upload*.gif (easylistchina.txt: 4334) .qqhjy.com/soft/Upload.*\.gif -# ||qqcyl.net/js/*.html (easylistchina+easylist.txt: 4343) +# ||qqcyl.net/js/*.html (easylistchina.txt: 4333) .qqcyl.net/js/.*\.html -# ||qqcyl.com/js/*.html (easylistchina+easylist.txt: 4342) +# ||qqcyl.com/js/*.html (easylistchina.txt: 4332) .qqcyl.com/js/.*\.html -# ||qqcf.com/js/Content_Get.js (easylistchina+easylist.txt: 4341) +# ||qqcf.com/js/Content_Get.js (easylistchina.txt: 4331) .qqcf.com/js/Content_Get\.js -# ||qq260.com/shout.js (easylistchina+easylist.txt: 4340) +# ||qq260.com/shout.js (easylistchina.txt: 4330) .qq260.com/shout\.js -# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina+easylist.txt: 4339) +# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina.txt: 4329) .qq.com/qzone/biz/gdt/display/positions/waicai/ -# ||qq.com/playgame/videoweb/ (easylistchina+easylist.txt: 4338) +# ||qq.com/playgame/videoweb/ (easylistchina.txt: 4328) .qq.com/playgame/videoweb/ -# ||qq.com/PL_adT.htm (easylistchina+easylist.txt: 4337) +# ||qq.com/PL_adT.htm (easylistchina.txt: 4327) .qq.com/PL_adT\.htm -# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina+easylist.txt: 4336) +# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina.txt: 4326) .qq.com/minivideo_v1/vd/res/enttencentvideo\.xml -# ||qq.com/livemsg? (easylistchina+easylist.txt: 4335) +# ||qq.com/livemsg? (easylistchina.txt: 4325) .qq.com/livemsg\? -# ||qq.com/Index/getAdsAndHotspot (easylistchina+easylist.txt: 4334) +# ||qq.com/Index/getAdsAndHotspot (easylistchina.txt: 4324) .qq.com/Index/getAdsAndHotspot -# ||qq.com/game/footerbar$subdocument (easylistchina+easylist.txt: 4333) +# ||qq.com/game/footerbar$subdocument (easylistchina.txt: 4323) .qq.com/game/footerbar -# ||qq.com/coral/ADS (easylistchina+easylist.txt: 4332) +# ||qq.com/coral/ADS (easylistchina.txt: 4322) .qq.com/coral/ADS -# ||qq.com/bbs/bbs_topgg.htm (easylistchina+easylist.txt: 4330) +# ||qq.com/bbs/bbs_topgg.htm (easylistchina.txt: 4320) .qq.com/bbs/bbs_topgg\.htm -# ||qq.com/article_qq/ad_article_qq/ (easylistchina+easylist.txt: 4329) +# ||qq.com/article_qq/ad_article_qq/ (easylistchina.txt: 4319) .qq.com/article_qq/ad_article_qq/ -# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina+easylist.txt: 4327) +# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina.txt: 4317) .qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 -# ||qmi.cc/tester/tester.js (easylistchina+easylist.txt: 4325) +# ||qmi.cc/tester/tester.js (easylistchina.txt: 4316) .qmi.cc/tester/tester\.js -# ||qk101.com/life/ (easylistchina+easylist.txt: 4324) +# ||qk101.com/life/ (easylistchina.txt: 4315) .qk101.com/life/ -# ||qjis.com/js/qjis_nr.js (easylistchina+easylist.txt: 4323) +# ||qjis.com/js/qjis_nr.js (easylistchina.txt: 4314) .qjis.com/js/qjis_nr\.js -# ||qiyun.org/images/js/tpl/ (easylistchina+easylist.txt: 4322) +# ||qiyun.org/images/js/tpl/ (easylistchina.txt: 4313) .qiyun.org/images/js/tpl/ -# ||qiyun.org/images/js/*.htm (easylistchina+easylist.txt: 4321) +# ||qiyun.org/images/js/*.htm (easylistchina.txt: 4312) .qiyun.org/images/js/.*\.htm -# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina+easylist.txt: 4320) +# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina.txt: 4311) .qiyipic.com/zongyi/fix/runningman20141008_bg03\.jpg -# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina+easylist.txt: 4319) +# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina.txt: 4310) .qiyipic.com/zongyi/fix/runningman20141008_bg02\.jpg -# ||qiyipic.com/zongyi/fix/mxdj (easylistchina+easylist.txt: 4318) +# ||qiyipic.com/zongyi/fix/mxdj (easylistchina.txt: 4309) .qiyipic.com/zongyi/fix/mxdj -# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina+easylist.txt: 4317) +# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina.txt: 4308) .qiyipic.com/zongyi/.*Banner01\.jpg -# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina+easylist.txt: 4316) +# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina.txt: 4307) .qiyipic.com/common/fix/wh-leftbanner\.jpg -# ||qiyipic.com/common/fix/rebull_ (easylistchina+easylist.txt: 4315) +# ||qiyipic.com/common/fix/rebull_ (easylistchina.txt: 4306) .qiyipic.com/common/fix/rebull_ -# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina+easylist.txt: 4314) +# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina.txt: 4305) .qiyipic.com/common/fix/dasdasdasdk\.jpg -# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina+easylist.txt: 4313) +# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina.txt: 4304) .qiyipic.com/common/20150528/diyizhuanqu\.jpg -# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina+easylist.txt: 4312) +# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina.txt: 4303) .qiyipic.com/common/20141021/sanjiukehuzhuanqu\.jpg -# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina+easylist.txt: 4311) +# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina.txt: 4302) .qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79\.png -# ||qiyipic.com/common/*tonglan (easylistchina+easylist.txt: 4310) +# ||qiyipic.com/common/*tonglan (easylistchina.txt: 4301) .qiyipic.com/common/.*tonglan -# ||qiyipic.com/common/*_aLink (easylistchina+easylist.txt: 4309) +# ||qiyipic.com/common/*_aLink (easylistchina.txt: 4300) .qiyipic.com/common/.*_aLink -# ||qiyipic.com/common/*980x (easylistchina+easylist.txt: 4308) +# ||qiyipic.com/common/*980x (easylistchina.txt: 4299) .qiyipic.com/common/.*980x -# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina+easylist.txt: 4307) +# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina.txt: 4298) .qiyipic.com/common/.*/kehuzhuanqu -# ||qiyipic.com/common/*/banner.jpg (easylistchina+easylist.txt: 4306) +# ||qiyipic.com/common/*/banner.jpg (easylistchina.txt: 4297) .qiyipic.com/common/.*/banner\.jpg -# ||qiyipic.com/common/*/baiyao. (easylistchina+easylist.txt: 4305) +# ||qiyipic.com/common/*/baiyao. (easylistchina.txt: 4296) .qiyipic.com/common/.*/baiyao\. -# ||qiyipic.com/common/*/980 (easylistchina+easylist.txt: 4304) +# ||qiyipic.com/common/*/980 (easylistchina.txt: 4295) .qiyipic.com/common/.*/980 -# ||qiyipic.com/common/*/255x205 (easylistchina+easylist.txt: 4303) +# ||qiyipic.com/common/*/255x205 (easylistchina.txt: 4294) .qiyipic.com/common/.*/255x205 -# ||qiyipic.com/common/*/250230. (easylistchina+easylist.txt: 4302) +# ||qiyipic.com/common/*/250230. (easylistchina.txt: 4293) .qiyipic.com/common/.*/250230\. -# ||qiyipic.com/common/*/250-230. (easylistchina+easylist.txt: 4301) +# ||qiyipic.com/common/*/250-230. (easylistchina.txt: 4292) .qiyipic.com/common/.*/250-230\. -# ||qiyipic.com/common/*/225x230.jpg (easylistchina+easylist.txt: 4300) +# ||qiyipic.com/common/*/225x230.jpg (easylistchina.txt: 4291) .qiyipic.com/common/.*/225x230\.jpg -# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina+easylist.txt: 4299) +# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina.txt: 4290) .qiyipic.com/common/.*%E9%80%9A%E6%A0%8F -# ||qiyipic.com/common/$object-subrequest (easylistchina+easylist.txt: 4298) +# ||qiyipic.com/common/$object-subrequest (easylistchina.txt: 4289) .qiyipic.com/common/ -# ||qiuziti.com/meitu/ddd.gif (easylistchina+easylist.txt: 4297) +# ||qiuziti.com/meitu/ddd.gif (easylistchina.txt: 4288) .qiuziti.com/meitu/ddd\.gif -# ||qiuziti.com/img/rightp20.gif (easylistchina+easylist.txt: 4296) +# ||qiuziti.com/img/rightp20.gif (easylistchina.txt: 4287) .qiuziti.com/img/rightp20\.gif -# ||qiuyi.cn/qiuyi/cooper/ (easylistchina+easylist.txt: 4295) +# ||qiuyi.cn/qiuyi/cooper/ (easylistchina.txt: 4286) .qiuyi.cn/qiuyi/cooper/ -# ||qitete.com/sp/ (easylistchina+easylist.txt: 4294) +# ||qitete.com/sp/ (easylistchina.txt: 4285) .qitete.com/sp/ -# ||qiqibu.com/js/*.gif (easylistchina+easylist.txt: 4293) +# ||qiqibu.com/js/*.gif (easylistchina.txt: 4284) .qiqibu.com/js/.*\.gif -# ||qiporn.com/media/banners/ (easylistchina+easylist.txt: 4292) -.qiporn.com/media/banners/ -# ||qingkong.net/a/980x90_1.jpg (easylistchina+easylist.txt: 4290) +# ||qingkong.net/a/980x90_1.jpg (easylistchina.txt: 4282) .qingkong.net/a/980x90_1\.jpg -# ||qingkai.com/gg_img/ (easylistchina+easylist.txt: 4289) +# ||qingkai.com/gg_img/ (easylistchina.txt: 4281) .qingkai.com/gg_img/ -# ||qingkai.com/2009/html/top.htm (easylistchina+easylist.txt: 4288) +# ||qingkai.com/2009/html/top.htm (easylistchina.txt: 4280) .qingkai.com/2009/html/top\.htm -# ||qimm.org/Uploads/ad/ (easylistchina+easylist.txt: 4287) +# ||qimm.org/Uploads/ad/ (easylistchina.txt: 4279) .qimm.org/Uploads/ad/ -# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina+easylist.txt: 4286) +# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina.txt: 4278) .qilanxiaozhu.*./(.*/)?data/attachment/portal/ -# ||qikuyou.com/images/images/250.png (easylistchina+easylist.txt: 4285) +# ||qikuyou.com/images/images/250.png (easylistchina.txt: 4277) .qikuyou.com/images/images/250\.png -# ||qihoo.com/hot/text.html?site= (easylistchina+easylist.txt: 4284) +# ||qihoo.com/hot/text.html?site= (easylistchina.txt: 4276) .qihoo.com/hot/text\.html\?site= -# ||qihaa.cn/js/ (easylistchina+easylist.txt: 4283) +# ||qihaa.cn/js/ (easylistchina.txt: 4275) .qihaa.cn/js/ -# ||qidian.com/ploy/cloudary08/ (easylistchina+easylist.txt: 4282) +# ||qidian.com/ploy/cloudary08/ (easylistchina.txt: 4274) .qidian.com/ploy/cloudary08/ -# ||qidian.com/ploy/*swf (easylistchina+easylist.txt: 4281) +# ||qidian.com/ploy/*swf (easylistchina.txt: 4273) .qidian.com/ploy/.*swf -# ||qidian.com/Javascript/usia (easylistchina+easylist.txt: 4280) +# ||qidian.com/Javascript/usia (easylistchina.txt: 4272) .qidian.com/Javascript/usia -# ||qidian.com/javascript/SNDAADAltern.js (easylistchina+easylist.txt: 4279) +# ||qidian.com/javascript/SNDAADAltern.js (easylistchina.txt: 4271) .qidian.com/javascript/SNDAADAltern\.js -# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina+easylist.txt: 4278) +# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina.txt: 4270) .qidian.com/Javascript/NewSNDAPop\.js -# ||qidian.com/Javascript/ksjlajUysi (easylistchina+easylist.txt: 4277) +# ||qidian.com/Javascript/ksjlajUysi (easylistchina.txt: 4269) .qidian.com/Javascript/ksjlajUysi -# ||qidian.com/Javascript/kiywyq_ (easylistchina+easylist.txt: 4276) +# ||qidian.com/Javascript/kiywyq_ (easylistchina.txt: 4268) .qidian.com/Javascript/kiywyq_ -# ||qidian.com/Javascript/DoublePop.js (easylistchina+easylist.txt: 4275) +# ||qidian.com/Javascript/DoublePop.js (easylistchina.txt: 4267) .qidian.com/Javascript/DoublePop\.js -# ||qidian.com/Images/book_*_other (easylistchina+easylist.txt: 4274) +# ||qidian.com/Images/book_*_other (easylistchina.txt: 4266) .qidian.com/Images/book_.*_other -# ||qianzhan.com/html/*_txtlinks.html (easylistchina+easylist.txt: 4273) +# ||qianzhan.com/html/*_txtlinks.html (easylistchina.txt: 4265) .qianzhan.com/html/.*_txtlinks\.html -# ||qianmu.org/resource/js/jquery.ads.js (easylistchina+easylist.txt: 4272) +# ||qianmu.org/resource/js/jquery.ads.js (easylistchina.txt: 4264) .qianmu.org/resource/js/jquery\.ads\.js -# ||qianlong.com/vda/$script (easylistchina+easylist.txt: 4271) +# ||qianlong.com/vda/$script (easylistchina.txt: 4263) .qianlong.com/vda/ -# ||qiangdiao.com/pr.png (easylistchina+easylist.txt: 4270) +# ||qiangdiao.com/pr.png (easylistchina.txt: 4262) .qiangdiao.com/pr\.png -# ||qhnews.com/tupian/ (easylistchina+easylist.txt: 4269) +# ||qhnews.com/tupian/ (easylistchina.txt: 4261) .qhnews.com/tupian/ -# ||qfans.net/js/open (easylistchina+easylist.txt: 4268) +# ||qhimg.com/t01752fdc322b424d08.jpg (easylistchina.txt: 4260) +.qhimg.com/t01752fdc322b424d08\.jpg +# ||qhimg.com/t01119598c484b6ca8e.jpg (easylistchina.txt: 4259) +.qhimg.com/t01119598c484b6ca8e\.jpg +# ||qhimg.com/t0107605853c9b6d004.jpg (easylistchina.txt: 4258) +.qhimg.com/t0107605853c9b6d004\.jpg +# ||qfans.net/js/open (easylistchina.txt: 4257) .qfans.net/js/open -# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina+easylist.txt: 4267) +# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina.txt: 4256) .qdmm.com/javascript/SNDAADAltern\.js -# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina+easylist.txt: 4266) +# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina.txt: 4255) .qdmm.com/javascript/NewSNDAPop\.js -# ||qdjimo.com/html/js/ (easylistchina+easylist.txt: 4265) +# ||qdjimo.com/html/js/ (easylistchina.txt: 4254) .qdjimo.com/html/js/ -# ||qbox.me/ftq_ (easylistchina+easylist.txt: 4264) +# ||qbox.me/ftq_ (easylistchina.txt: 4253) .qbox.me/ftq_ -# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina+easylist.txt: 4263) +# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina.txt: 4252) .qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo\.jpg -# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina+easylist.txt: 4262) +# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina.txt: 4251) .qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6\.gif -# ||q.cn/images/notepad.gif (easylistchina+easylist.txt: 4261) +# ||q.cn/images/notepad.gif (easylistchina.txt: 4250) .q.cn/images/notepad\.gif -# ||q.cn/images/floater_ (easylistchina+easylist.txt: 4260) +# ||q.cn/images/floater_ (easylistchina.txt: 4249) .q.cn/images/floater_ -# ||q-touch.com.tw^$subdocument (easylistchina+easylist.txt: 4259) +# ||q-touch.com.tw^$subdocument (easylistchina.txt: 4248) .q-touch.com.tw -# ||pzzc.net/data/attachment/ad2/ (easylistchina+easylist.txt: 4258) +# ||pzzc.net/data/attachment/ad2/ (easylistchina.txt: 4247) .pzzc.net/data/attachment/ad2/ -# ||pzxw.cn/1212banner (easylistchina+easylist.txt: 4257) +# ||pzxw.cn/1212banner (easylistchina.txt: 4246) .pzxw.cn/1212banner -# ||putonghua520.com/skins/10ym/tj (easylistchina+easylist.txt: 4256) +# ||putonghua520.com/skins/10ym/tj (easylistchina.txt: 4245) .putonghua520.com/skins/10ym/tj -# ||putonghua520.com/skins/10ym/123.jpg (easylistchina+easylist.txt: 4255) +# ||putonghua520.com/skins/10ym/123.jpg (easylistchina.txt: 4244) .putonghua520.com/skins/10ym/123\.jpg -# ||publish.ad.youth.cn^ (easylistchina+easylist.txt: 4254) +# ||publish.ad.youth.cn^ (easylistchina.txt: 4243) .publish.ad.youth.cn -# ||publicize.liao1.com^ (easylistchina+easylist.txt: 4253) +# ||publicize.liao1.com^ (easylistchina.txt: 4242) .publicize.liao1.com -# ||pub.sxrtv.com/crossdomain.xml (easylistchina+easylist.txt: 4252) +# ||pub.sxrtv.com/crossdomain.xml (easylistchina.txt: 4241) .pub.sxrtv.com/crossdomain\.xml -# ||pub.stockstar.com/feedback/ (easylistchina+easylist.txt: 4251) +# ||pub.stockstar.com/feedback/ (easylistchina.txt: 4240) .pub.stockstar.com/feedback/ -# ||pub.mop.com^ (easylistchina+easylist.txt: 4250) +# ||pub.mop.com^ (easylistchina.txt: 4239) .pub.mop.com -# ||pub.funshion.com^ (easylistchina+easylist.txt: 4249) +# ||pub.funshion.com^ (easylistchina.txt: 4238) .pub.funshion.com -# ||ptraveler.com/pt.js (easylistchina+easylist.txt: 4248) -.ptraveler.com/pt\.js -# ||ptfish.com/08html/ (easylistchina+easylist.txt: 4247) +# ||ptfish.com/08html/ (easylistchina.txt: 4237) .ptfish.com/08html/ -# ||ptfish.com/*/ad$image,object (easylistchina+easylist.txt: 4246) +# ||ptfish.com/*/ad$image,object (easylistchina.txt: 4236) .ptfish.com/.*/ad -# ||ptbus.com/s.js (easylistchina+easylist.txt: 4245) +# ||ptbus.com/s.js (easylistchina.txt: 4235) .ptbus.com/s\.js -# ||ptbs.sme.gov.cn/images/231.gif (easylistchina+easylist.txt: 4244) +# ||ptbs.sme.gov.cn/images/231.gif (easylistchina.txt: 4234) .ptbs.sme.gov.cn/images/231\.gif -# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina+easylist.txt: 4243) +# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina.txt: 4233) .pstatp.com/resource/toutiao_wap/static/js/lib/ads_ -# ||ps123.net/MyFile/ (easylistchina+easylist.txt: 4242) +# ||ps123.net/MyFile/ (easylistchina.txt: 4232) .ps123.net/MyFile/ -# ||property.hk/ad_$script (easylistchina+easylist.txt: 4241) +# ||property.hk/ad_$script (easylistchina.txt: 4231) .property.hk/ad_ -# ||pro.iweihai.cn^ (easylistchina+easylist.txt: 4240) +# ||pro.iweihai.cn^ (easylistchina.txt: 4230) .pro.iweihai.cn -# ||price.com.hk/scripts/ysm.js (easylistchina+easylist.txt: 4239) +# ||price.com.hk/scripts/ysm.js (easylistchina.txt: 4229) .price.com.hk/scripts/ysm\.js -# ||price.com.hk/dfp_price.php? (easylistchina+easylist.txt: 4238) +# ||price.com.hk/dfp_price.php? (easylistchina.txt: 4228) .price.com.hk/dfp_price\.php\? -# ||prettyvirgin.com/js/show.html (easylistchina+easylist.txt: 4237) +# ||prettyvirgin.com/js/show.html (easylistchina.txt: 4227) .prettyvirgin.com/js/show\.html -# ||prettyvirgin.com/images/banners/ (easylistchina+easylist.txt: 4236) +# ||prettyvirgin.com/images/banners/ (easylistchina.txt: 4226) .prettyvirgin.com/images/banners/ -# ||pptiyu.com/index/js/float.js (easylistchina+easylist.txt: 4235) +# ||pptiyu.com/index/js/float.js (easylistchina.txt: 4225) .pptiyu.com/index/js/float\.js -# ||ppsj.com.cn/ppsj728.gif (easylistchina+easylist.txt: 4234) +# ||ppsj.com.cn/ppsj728.gif (easylistchina.txt: 4224) .ppsj.com.cn/ppsj728\.gif -# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina+easylist.txt: 4233) +# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina.txt: 4223) .ppsj.com.cn/images/usa_250_120\.gif -# ||ppsj.com.cn/images/ppsj300.gif (easylistchina+easylist.txt: 4232) +# ||ppsj.com.cn/images/ppsj300.gif (easylistchina.txt: 4222) .ppsj.com.cn/images/ppsj300\.gif -# ||pp.7060.la^ (easylistchina+easylist.txt: 4231) +# ||pp.7060.la^ (easylistchina.txt: 4221) .pp.7060.la -# ||poxiao.com/template/default/images/12345.js (easylistchina+easylist.txt: 4230) +# ||poxiao.com/template/default/images/12345.js (easylistchina.txt: 4220) .poxiao.com/template/default/images/12345\.js -# ||poster.weather.com.cn^ (easylistchina+easylist.txt: 4229) +# ||poster.weather.com.cn^ (easylistchina.txt: 4219) .poster.weather.com.cn -# ||poppur.com/banner/962x100.gif (easylistchina+easylist.txt: 4228) +# ||poppur.com/banner/962x100.gif (easylistchina.txt: 4218) .poppur.com/banner/962x100\.gif -# ||popme.163.com/js/vedioad_ (easylistchina+easylist.txt: 4227) +# ||popme.163.com/js/vedioad_ (easylistchina.txt: 4217) .popme.163.com/js/vedioad_ -# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina+easylist.txt: 4226) +# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina.txt: 4216) .poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408\.jpg -# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina+easylist.txt: 4225) +# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina.txt: 4215) .poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067\.gif -# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina+easylist.txt: 4224) +# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina.txt: 4214) .poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072\.gif -# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina+easylist.txt: 4223) +# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina.txt: 4213) .poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064\.jpg -# ||plurk.com/Ads/ (easylistchina+easylist.txt: 4222) +# ||plurk.com/Ads/ (easylistchina.txt: 4212) .plurk.com/Ads/ -# ||playgm.cn/data/attachment/portal/ (easylistchina+easylist.txt: 4221) +# ||playgm.cn/data/attachment/portal/ (easylistchina.txt: 4211) .playgm.cn/data/attachment/portal/ -# ||playad.xjmg.com^ (easylistchina+easylist.txt: 4220) +# ||playad.xjmg.com^ (easylistchina.txt: 4210) .playad.xjmg.com -# ||pjtime.com/js/show_ad (easylistchina+easylist.txt: 4219) +# ||pjtime.com/js/show_ad (easylistchina.txt: 4209) .pjtime.com/js/show_ad -# ||pixfs.net/js/mib_falcon. (easylistchina+easylist.txt: 4218) +# ||pixfs.net/js/mib_falcon. (easylistchina.txt: 4208) .pixfs.net/js/mib_falcon\. -# ||pixfs.net/js/mib.min.js (easylistchina+easylist.txt: 4217) +# ||pixfs.net/js/mib.min.js (easylistchina.txt: 4207) .pixfs.net/js/mib\.min\.js -# ||pipi.cn/player/ (easylistchina+easylist.txt: 4216) +# ||pipi.cn/player/ (easylistchina.txt: 4206) .pipi.cn/player/ -# ||pingpang.info/uploadfile/tsp.gif (easylistchina+easylist.txt: 4215) +# ||pingpang.info/uploadfile/tsp.gif (easylistchina.txt: 4205) .pingpang.info/uploadfile/tsp\.gif -# ||pingpang.info/uploadfile/butterfly.gif (easylistchina+easylist.txt: 4214) +# ||pingpang.info/uploadfile/butterfly.gif (easylistchina.txt: 4204) .pingpang.info/uploadfile/butterfly\.gif -# ||pingpang.info/uploadfile/950X90B.gif (easylistchina+easylist.txt: 4213) +# ||pingpang.info/uploadfile/950X90B.gif (easylistchina.txt: 4203) .pingpang.info/uploadfile/950X90B\.gif -# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina+easylist.txt: 4212) +# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina.txt: 4202) .pingpang.info/themes/v1\.0/images/yasaka\. -# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina+easylist.txt: 4211) +# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina.txt: 4201) .pingpang.info/bbs/UploadFile/2014-5/201455214543955851\.gif -# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina+easylist.txt: 4210) +# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina.txt: 4200) .pingpang.info/bbs/UploadFile/2014-11/20141113852238131\.jpg -# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina+easylist.txt: 4209) +# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina.txt: 4199) .pingpang.info/bbs/UploadFile/2013-11/xiom\.gif -# ||pingpang.info/banner/ (easylistchina+easylist.txt: 4208) +# ||pingpang.info/banner/ (easylistchina.txt: 4198) .pingpang.info/banner/ -# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina+easylist.txt: 4207) +# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina.txt: 4197) .pimg.tw/ifans/1399368662-4247048381\.png -# ||pifa.fobshanghai.com/link/ (easylistchina+easylist.txt: 4206) +# ||pifa.fobshanghai.com/link/ (easylistchina.txt: 4196) .pifa.fobshanghai.com/link/ -# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina+easylist.txt: 4204) +# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina.txt: 4194) .pics.wanlibo.com/js/pagemodulestat\.js -# ||pic.zol-img.com.cn^*/box (easylistchina+easylist.txt: 4203) +# ||pic.zol-img.com.cn^*/box (easylistchina.txt: 4193) .pic.zol-img.com.cn/.*/box -# ||pic.zol-img.com.cn^$object (easylistchina+easylist.txt: 4202) +# ||pic.zol-img.com.cn^$object (easylistchina.txt: 4192) .pic.zol-img.com.cn -# ||pic.zol-img.com.cn/20*backgrou (easylistchina+easylist.txt: 4201) +# ||pic.zol-img.com.cn/20*backgrou (easylistchina.txt: 4191) .pic.zol-img.com.cn/20.*backgrou -# ||pic.yupoo.com/showflash/ (easylistchina+easylist.txt: 4200) +# ||pic.yupoo.com/showflash/ (easylistchina.txt: 4190) .pic.yupoo.com/showflash/ -# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina+easylist.txt: 4199) +# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina.txt: 4189) .pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3\.gif -# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina+easylist.txt: 4198) +# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina.txt: 4188) .pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR\.png -# ||pic.xgo-img.com.cn^ (easylistchina+easylist.txt: 4197) +# ||pic.xgo-img.com.cn^ (easylistchina.txt: 4187) .pic.xgo-img.com.cn -# ||pic.wpdaxue.com^*.js (easylistchina+easylist.txt: 4196) +# ||pic.wpdaxue.com^*.js (easylistchina.txt: 4186) .pic.wpdaxue.com/.*\.js -# ||pic.taian.com^ (easylistchina+easylist.txt: 4195) +# ||pic.taian.com^ (easylistchina.txt: 4185) .pic.taian.com -# ||pic.jd-bbs.com^*.swf (easylistchina+easylist.txt: 4193) +# ||pic.jd-bbs.com^*.swf (easylistchina.txt: 4183) .pic.jd-bbs.com/.*\.swf -# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina+easylist.txt: 4192) +# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina.txt: 4182) .pic.gongkong.com/UploadPic/gongkong/ -# ||pic.fengniao.com^ (easylistchina+easylist.txt: 4191) +# ||pic.fengniao.com^ (easylistchina.txt: 4181) .pic.fengniao.com -# ||pic.ea3w.com^ (easylistchina+easylist.txt: 4190) +# ||pic.ea3w.com^ (easylistchina.txt: 4180) .pic.ea3w.com -# ||pic.959.cn/media/js/ (easylistchina+easylist.txt: 4189) +# ||pic.959.cn/media/js/ (easylistchina.txt: 4179) .pic.959.cn/media/js/ -# ||pic.2u.com.cn^ (easylistchina+easylist.txt: 4188) +# ||pic.2u.com.cn^ (easylistchina.txt: 4178) .pic.2u.com.cn -# ||pic.111cn.net^ (easylistchina+easylist.txt: 4187) +# ||pic.111cn.net^ (easylistchina.txt: 4177) .pic.111cn.net -# ||pic.0597kk.com^ (easylistchina+easylist.txt: 4186) +# ||pic.0597kk.com^ (easylistchina.txt: 4176) .pic.0597kk.com -# ||piaoliang.com/js/gg.js (easylistchina+easylist.txt: 4185) +# ||piaoliang.com/js/gg.js (easylistchina.txt: 4175) .piaoliang.com/js/gg\.js -# ||piaohua.com/js/yzz/$script (easylistchina+easylist.txt: 4184) +# ||piaohua.com/js/yzz/$script (easylistchina.txt: 4174) .piaohua.com/js/yzz/ -# ||piaohua.com/js/wlfloat.js (easylistchina+easylist.txt: 4183) +# ||piaohua.com/js/wlfloat.js (easylistchina.txt: 4173) .piaohua.com/js/wlfloat\.js -# ||piaodown.com/other/*.js (easylistchina+easylist.txt: 4182) +# ||piaodown.com/other/*.js (easylistchina.txt: 4172) .piaodown.com/other/.*\.js -# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina+easylist.txt: 4181) +# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina.txt: 4171) .piao.com.cn/Flash/Scripts/FloatLeftRight_ -# ||phpfans.net/image/sponsors/ (easylistchina+easylist.txt: 4180) +# ||phpfans.net/image/sponsors/ (easylistchina.txt: 4170) .phpfans.net/image/sponsors/ -# ||phpcms.cn/statics/images/video/ad (easylistchina+easylist.txt: 4179) +# ||phpcms.cn/statics/images/video/ad (easylistchina.txt: 4169) .phpcms.cn/statics/images/video/ad -# ||phpad.cqnews.net^ (easylistchina+easylist.txt: 4178) +# ||phpad.cqnews.net^ (easylistchina.txt: 4168) .phpad.cqnews.net -# ||photofans.cn/cooperator/banner/ (easylistchina+easylist.txt: 4177) +# ||photofans.cn/cooperator/banner/ (easylistchina.txt: 4167) .photofans.cn/cooperator/banner/ -# ||photo.erji.com^*.swf (easylistchina+easylist.txt: 4176) +# ||photo.erji.com^*.swf (easylistchina.txt: 4166) .photo.erji.com/.*\.swf -# ||photo.erji.com^*.gif (easylistchina+easylist.txt: 4175) +# ||photo.erji.com^*.gif (easylistchina.txt: 4165) .photo.erji.com/.*\.gif -# ||photo.erji.com/saha.jpg (easylistchina+easylist.txt: 4174) +# ||photo.erji.com/saha.jpg (easylistchina.txt: 4164) .photo.erji.com/saha\.jpg -# ||pharmnet.com.cn/js/float_div.js (easylistchina+easylist.txt: 4173) +# ||pharmnet.com.cn/js/float_div.js (easylistchina.txt: 4163) .pharmnet.com.cn/js/float_div\.js -# ||pharmnet.com.cn/cnbanner/ (easylistchina+easylist.txt: 4172) +# ||pharmnet.com.cn/cnbanner/ (easylistchina.txt: 4162) .pharmnet.com.cn/cnbanner/ -# ||ph66.com/js/float.js (easylistchina+easylist.txt: 4171) +# ||ph66.com/js/float.js (easylistchina.txt: 4161) .ph66.com/js/float\.js -# ||ph66.com/bbsgg/ (easylistchina+easylist.txt: 4170) +# ||ph66.com/bbsgg/ (easylistchina.txt: 4160) .ph66.com/bbsgg/ -# ||ph66.com/attachment/*.swf (easylistchina+easylist.txt: 4169) +# ||ph66.com/attachment/*.swf (easylistchina.txt: 4159) .ph66.com/attachment/.*\.swf -# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina+easylist.txt: 4168) +# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina.txt: 4158) .pgzhibo.com/uploads/image/20150902/1441126837\.jpg -# ||pgzhibo.com/uploads/image/20*.gif (easylistchina+easylist.txt: 4167) +# ||pgzhibo.com/uploads/image/20*.gif (easylistchina.txt: 4157) .pgzhibo.com/uploads/image/20.*\.gif -# ||pg.udn.com/BT/*.swf (easylistchina+easylist.txt: 4166) +# ||pg.udn.com/BT/*.swf (easylistchina.txt: 4156) .pg.udn.com/BT/.*\.swf -# ||pfp.sina.com.cn^$script,subdocument (easylistchina+easylist.txt: 4165) +# ||pfp.sina.com.cn^$script,subdocument (easylistchina.txt: 4155) .pfp.sina.com.cn -# ||pfizer.com.tw^$subdocument (easylistchina+easylist.txt: 4164) +# ||pfizer.com.tw^$subdocument (easylistchina.txt: 4154) .pfizer.com.tw -# ||people.com.cn/img/gjt/ (easylistchina+easylist.txt: 4163) +# ||people.com.cn/img/gjt/ (easylistchina.txt: 4153) .people.com.cn/img/gjt/ -# ||people.com.cn/img/2013people/wza/domready (easylistchina+easylist.txt: 4162) +# ||people.com.cn/img/2013people/wza/domready (easylistchina.txt: 4152) .people.com.cn/img/2013people/wza/domready -# ||people.com.cn/adv/ (easylistchina+easylist.txt: 4161) +# ||people.com.cn/adv/ (easylistchina.txt: 4151) .people.com.cn/adv/ -# ||people.cn^*/js/m.js (easylistchina+easylist.txt: 4160) +# ||people.cn^*/js/m.js (easylistchina.txt: 4150) .people.cn/.*/js/m\.js -# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina+easylist.txt: 4159) +# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina.txt: 4149) .penglai.com.cn/UploadFile/image/.*\.gif -# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina+easylist.txt: 4158) +# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina.txt: 4148) .peasyun.com/Uploads/Thumbs/advs_ -# ||pd.xxhh.com/list.js (easylistchina+easylist.txt: 4157) +# ||pd.xxhh.com/list.js (easylistchina.txt: 4147) .pd.xxhh.com/list\.js -# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina+easylist.txt: 4156) +# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina.txt: 4146) .pcworld.com.cn/Article/UploadFiles/201403/2014031016150885\.jpg -# ||pcstore.com.tw/css/myacc_init.js (easylistchina+easylist.txt: 4155) +# ||pcstore.com.tw/css/myacc_init.js (easylistchina.txt: 4145) .pcstore.com.tw/css/myacc_init\.js -# ||pcs1.app.joy.cn^ (easylistchina+easylist.txt: 4154) +# ||pcs1.app.joy.cn^ (easylistchina.txt: 4144) .pcs1.app.joy.cn -# ||pcpp.com.cn/news/ad/ (easylistchina+easylist.txt: 4153) +# ||pcpp.com.cn/news/ad/ (easylistchina.txt: 4143) .pcpp.com.cn/news/ad/ -# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina+easylist.txt: 4152) +# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina.txt: 4142) .pcpp.com.cn/news/a/.*_article_right\.html -# ||pcpp.com.cn*/pcpp.jpg (easylistchina+easylist.txt: 4151) +# ||pcpp.com.cn*/pcpp.jpg (easylistchina.txt: 4141) .pcpp.com.cn*./(.*/)?pcpp\.jpg -# ||pconline.com.cn/zt/*/double11/ (easylistchina+easylist.txt: 4150) -.pconline.com.cn/zt/.*/double11/ -# ||pconline.com.cn/test/*.html? (easylistchina+easylist.txt: 4149) +# ||pconline.com.cn/test/*.html? (easylistchina.txt: 4140) .pconline.com.cn/test/.*\.html\? -# ||pconline.com.cn/pconline/download/fz/ (easylistchina+easylist.txt: 4148) +# ||pconline.com.cn/pconline/download/fz/ (easylistchina.txt: 4139) .pconline.com.cn/pconline/download/fz/ -# ||pconline.com.cn/js/ivy.js (easylistchina+easylist.txt: 4147) +# ||pconline.com.cn/js/ivy.js (easylistchina.txt: 4138) .pconline.com.cn/js/ivy\.js -# ||pconline.com.cn/js/ad_ (easylistchina+easylist.txt: 4146) +# ||pconline.com.cn/js/ad_ (easylistchina.txt: 4137) .pconline.com.cn/js/ad_ -# ||pconline.com.cn/intelcorefamily/ (easylistchina+easylist.txt: 4145) +# ||pconline.com.cn/intelcorefamily/ (easylistchina.txt: 4136) .pconline.com.cn/intelcorefamily/ -# ||pconline.com.cn/download/*/intf*.js (easylistchina+easylist.txt: 4144) +# ||pconline.com.cn/download/*/intf*.js (easylistchina.txt: 4135) .pconline.com.cn/download/.*/intf.*\.js -# ||pconline.com.cn/_hux_/ (easylistchina+easylist.txt: 4143) +# ||pconline.com.cn/_hux_/ (easylistchina.txt: 4134) .pconline.com.cn/_hux_/ -# ||pcjishu.com/other/yj300x3006.jpg (easylistchina+easylist.txt: 4142) +# ||pcjishu.com/other/yj300x3006.jpg (easylistchina.txt: 4133) .pcjishu.com/other/yj300x3006\.jpg -# ||pchome.com.tw/js/idlead.js (easylistchina+easylist.txt: 4141) +# ||pchome.com.tw/js/idlead.js (easylistchina.txt: 4132) .pchome.com.tw/js/idlead\.js -# ||pcgames.com.cn/jctj/ (easylistchina+easylist.txt: 4139) +# ||pcgames.com.cn/jctj/ (easylistchina.txt: 4130) .pcgames.com.cn/jctj/ -# ||pcgames.com.cn/g/ (easylistchina+easylist.txt: 4138) +# ||pcgames.com.cn/g/ (easylistchina.txt: 4129) .pcgames.com.cn/g/ -# ||pcgames.com.cn/download/newnq/ (easylistchina+easylist.txt: 4137) +# ||pcgames.com.cn/download/newnq/ (easylistchina.txt: 4128) .pcgames.com.cn/download/newnq/ -# ||pccoo.cn/js/dlv1.0.js (easylistchina+easylist.txt: 4136) +# ||pccoo.cn/js/dlv1.0.js (easylistchina.txt: 4127) .pccoo.cn/js/dlv1\.0\.js -# ||pcbeta.com/static/image/microsoftstore/ (easylistchina+easylist.txt: 4135) +# ||pcbeta.com/static/image/microsoftstore/ (easylistchina.txt: 4126) .pcbeta.com/static/image/microsoftstore/ -# ||pc3w.com/js/ (easylistchina+easylist.txt: 4134) +# ||pc3w.com/js/ (easylistchina.txt: 4125) .pc3w.com/js/ -# ||pc141.com/statics/new_img/info_left.png (easylistchina+easylist.txt: 4133) +# ||pc141.com/statics/new_img/info_left.png (easylistchina.txt: 4124) .pc141.com/statics/new_img/info_left\.png -# ||pc0359.cn/js/un.js (easylistchina+easylist.txt: 4132) +# ||pc0359.cn/js/un.js (easylistchina.txt: 4123) .pc0359.cn/js/un\.js -# ||pc0359.cn/data/xzb_haha.js (easylistchina+easylist.txt: 4131) +# ||pc0359.cn/data/xzb_haha.js (easylistchina.txt: 4122) .pc0359.cn/data/xzb_haha\.js -# ||panpan.org/templets/ad/ (easylistchina+easylist.txt: 4130) +# ||panzz.com/file/ads/ (easylistchina.txt: 4121) +.panzz.com/file/ads/ +# ||panpan.org/templets/ad/ (easylistchina.txt: 4120) .panpan.org/templets/ad/ -# ||panpan.org/plus/img/ (easylistchina+easylist.txt: 4129) +# ||panpan.org/plus/img/ (easylistchina.txt: 4119) .panpan.org/plus/img/ -# ||panpan.org/other/ (easylistchina+easylist.txt: 4128) +# ||panpan.org/other/ (easylistchina.txt: 4118) .panpan.org/other/ -# ||panpan.org/js/google (easylistchina+easylist.txt: 4127) +# ||panpan.org/js/google (easylistchina.txt: 4117) .panpan.org/js/google -# ||panda.kdnet.net^ (easylistchina+easylist.txt: 4126) +# ||panda.kdnet.net^ (easylistchina.txt: 4116) .panda.kdnet.net -# ||p8u.hinet.net^ (easylistchina+easylist.txt: 4125) +# ||p8u.hinet.net^ (easylistchina.txt: 4115) .p8u.hinet.net -# ||p4p.sina.com.cn^ (easylistchina+easylist.txt: 4124) +# ||p4p.sina.com.cn^ (easylistchina.txt: 4114) .p4p.sina.com.cn -# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina+easylist.txt: 4123) +# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina.txt: 4113) .p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124\.jpg -# ||p.zol.com.cn/download/detail.js (easylistchina+easylist.txt: 4122) +# ||p.zol.com.cn/download/detail.js (easylistchina.txt: 4112) .p.zol.com.cn/download/detail\.js -# ||p.zol-img.com.cn^ (easylistchina+easylist.txt: 4121) +# ||p.zol-img.com.cn^ (easylistchina.txt: 4111) .p.zol-img.com.cn -# ||p.szonline.net^ (easylistchina+easylist.txt: 4120) +# ||p.szonline.net^ (easylistchina.txt: 4110) .p.szonline.net -# ||p.kugou.com/?id= (easylistchina+easylist.txt: 4119) +# ||p.kugou.com/?id= (easylistchina.txt: 4109) .p.kugou.com/\?id= -# ||p.aty.sohu.com/p?cat= (easylistchina+easylist.txt: 4118) +# ||p.aty.sohu.com/p?cat= (easylistchina.txt: 4108) .p.aty.sohu.com/p\?cat= -# ||p.37youyou.com/*.jpg (easylistchina+easylist.txt: 4117) +# ||p.37youyou.com/*.jpg (easylistchina.txt: 4107) .p.37youyou.com/.*\.jpg -# ||oyksoft.com/show/s.php/ (easylistchina+easylist.txt: 4116) +# ||oyksoft.com/show/s.php/ (easylistchina.txt: 4106) .oyksoft.com/show/s\.php/ -# ||overseaschinesemedia.com/img/*.gif (easylistchina+easylist.txt: 4115) +# ||overseaschinesemedia.com/img/*.gif (easylistchina.txt: 4105) .overseaschinesemedia.com/img/.*\.gif -# ||ouyaoxiazai.com^$script,subdocument (easylistchina+easylist.txt: 4114) +# ||ouyaoxiazai.com^$script,subdocument (easylistchina.txt: 4104) .ouyaoxiazai.com -# ||outofmemory.cn/static/tgs/ (easylistchina+easylist.txt: 4113) +# ||outofmemory.cn/static/tgs/ (easylistchina.txt: 4103) .outofmemory.cn/static/tgs/ -# ||ousns.net/daohang/ (easylistchina+easylist.txt: 4112) +# ||ousns.net/daohang/ (easylistchina.txt: 4102) .ousns.net/daohang/ -# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina+easylist.txt: 4111) +# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina.txt: 4101) .oschina.net/uploads/cooperation/.*_banner_ -# ||oschina.net/uploads/ad/ (easylistchina+easylist.txt: 4110) +# ||oschina.net/uploads/ad/ (easylistchina.txt: 4100) .oschina.net/uploads/ad/ -# ||orzx.im/js/*pop (easylistchina+easylist.txt: 4109) +# ||orzx.im/js/*pop (easylistchina.txt: 4099) .orzx.im/js/.*pop -# ||orzx.im/Document/union/ (easylistchina+easylist.txt: 4108) +# ||orzx.im/Document/union/ (easylistchina.txt: 4098) .orzx.im/Document/union/ -# ||orzx.im/Document/recommend/flashpoint.html (easylistchina+easylist.txt: 4107) +# ||orzx.im/Document/recommend/flashpoint.html (easylistchina.txt: 4097) .orzx.im/Document/recommend/flashpoint\.html -# ||orsoon.com//images/ku86.jpg (easylistchina+easylist.txt: 4106) -# ||orsoon.com*/zhuanti/ (easylistchina+easylist.txt: 4105) +# ||orsoon.com//images/ku86.jpg (easylistchina.txt: 4096) +# ||orsoon.com*/zhuanti/ (easylistchina.txt: 4095) .orsoon.com*./(.*/)?zhuanti/ -# ||open-open.com^*_banner. (easylistchina+easylist.txt: 4104) +# ||open-open.com^*_banner. (easylistchina.txt: 4094) .open-open.com/.*_banner\. -# ||open-open.com/lag336x280.png (easylistchina+easylist.txt: 4103) +# ||open-open.com/lag336x280.png (easylistchina.txt: 4093) .open-open.com/lag336x280\.png -# ||open-open.com/jp72890.jpg (easylistchina+easylist.txt: 4102) +# ||open-open.com/jp72890.jpg (easylistchina.txt: 4092) .open-open.com/jp72890\.jpg -# ||open-open.com/jp240200.jpg (easylistchina+easylist.txt: 4101) +# ||open-open.com/jp240200.jpg (easylistchina.txt: 4091) .open-open.com/jp240200\.jpg -# ||open-open.com/j300250n.jpg (easylistchina+easylist.txt: 4100) +# ||open-open.com/j300250n.jpg (easylistchina.txt: 4090) .open-open.com/j300250n\.jpg -# ||ooxxbbs.com/data/attachment/forum/*.gif (easylistchina+easylist.txt: 4099) -.ooxxbbs.com/data/attachment/forum/.*\.gif -# ||onlinedown.net/zhuangjiad/ (easylistchina+easylist.txt: 4098) +# ||onlinedown.net/zhuangjiad/ (easylistchina.txt: 4089) .onlinedown.net/zhuangjiad/ -# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina+easylist.txt: 4097) +# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina.txt: 4088) .onlinedown.net/newhuagg/.*_pic_ -# ||online.cq.cn/huodong/css/ (easylistchina+easylist.txt: 4096) +# ||online.cq.cn/huodong/css/ (easylistchina.txt: 4087) .online.cq.cn/huodong/css/ -# ||online.cq.cn/commonweb/commonright/right_side (easylistchina+easylist.txt: 4095) +# ||online.cq.cn/commonweb/commonright/right_side (easylistchina.txt: 4086) .online.cq.cn/commonweb/commonright/right_side -# ||onegreen.net/MyFile/ (easylistchina+easylist.txt: 4094) +# ||onegreen.net/MyFile/ (easylistchina.txt: 4085) .onegreen.net/MyFile/ -# ||onedala.tv/uploads/banner/ (easylistchina+easylist.txt: 4093) +# ||onedala.tv/uploads/banner/ (easylistchina.txt: 4084) .onedala.tv/uploads/banner/ -# ||on.cc/js/v2/iframe_ysm_ (easylistchina+easylist.txt: 4092) +# ||on.cc/js/v2/iframe_ysm_ (easylistchina.txt: 4083) .on.cc/js/v2/iframe_ysm_ -# ||okbmf.com^*950_120 (easylistchina+easylist.txt: 4091) +# ||okbmf.com^*950_120 (easylistchina.txt: 4082) .okbmf.com/.*950_120 -# ||ok.432kkk.com^ (easylistchina+easylist.txt: 4090) +# ||ok.432kkk.com^ (easylistchina.txt: 4081) .ok.432kkk.com -# ||oiihk.com/anime/cm.js (easylistchina+easylist.txt: 4089) +# ||oiihk.com/anime/cm.js (easylistchina.txt: 4080) .oiihk.com/anime/cm\.js -# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina+easylist.txt: 4088) +# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina.txt: 4079) .ofweek.com/StaticPage/gongkong/ad_ -# ||ofweek.com/pop/ad/ (easylistchina+easylist.txt: 4087) +# ||ofweek.com/pop/ad/ (easylistchina.txt: 4078) .ofweek.com/pop/ad/ -# ||oa.hinews.cn/work/img/ (easylistchina+easylist.txt: 4086) +# ||oa.hinews.cn/work/img/ (easylistchina.txt: 4077) .oa.hinews.cn/work/img/ -# ||nvsheng.com/js/gg.js (easylistchina+easylist.txt: 4085) +# ||nvsheng.com/js/gg.js (easylistchina.txt: 4076) .nvsheng.com/js/gg\.js -# ||nutrimate.com.tw^$subdocument (easylistchina+easylist.txt: 4084) +# ||nutrimate.com.tw^$subdocument (easylistchina.txt: 4075) .nutrimate.com.tw -# ||nttpcs.cn/ax/incoto.gif (easylistchina+easylist.txt: 4083) +# ||nttpcs.cn/ax/incoto.gif (easylistchina.txt: 4074) .nttpcs.cn/ax/incoto\.gif -# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina+easylist.txt: 4082) +# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina.txt: 4073) .ntpcb.com/html/channel/citypark/images/p83_temp_ -# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina+easylist.txt: 4081) +# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina.txt: 4072) .ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168\.png -# ||nownews.com/include_house/product.html (easylistchina+easylist.txt: 4080) +# ||nownews.com/include_house/product.html (easylistchina.txt: 4071) .nownews.com/include_house/product\.html -# ||nownews.com/events/ (easylistchina+easylist.txt: 4079) +# ||nownews.com/events/ (easylistchina.txt: 4070) .nownews.com/events/ -# ||nokiacn.net/gg*.htm (easylistchina+easylist.txt: 4078) +# ||nokiacn.net/gg*.htm (easylistchina.txt: 4069) .nokiacn.net/gg.*\.htm -# ||nokiacn.net/baidu.htm (easylistchina+easylist.txt: 4077) +# ||nokiacn.net/baidu.htm (easylistchina.txt: 4068) .nokiacn.net/baidu\.htm -# ||no1.168abc.net/upload/ (easylistchina+easylist.txt: 4076) +# ||no1.168abc.net/upload/ (easylistchina.txt: 4067) .no1.168abc.net/upload/ -# ||nnnews.net/public/xqymgg/ (easylistchina+easylist.txt: 4075) +# ||nnnews.net/public/xqymgg/ (easylistchina.txt: 4066) .nnnews.net/public/xqymgg/ -# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina+easylist.txt: 4073) +# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina.txt: 4064) .njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds -# ||niwozhi.net/960x90.gif (easylistchina+easylist.txt: 4072) +# ||niwozhi.net/960x90.gif (easylistchina.txt: 4063) .niwozhi.net/960x90\.gif -# ||niutuku.com/skin/style2013/ad/ (easylistchina+easylist.txt: 4071) +# ||niutuku.com/skin/style2013/ad/ (easylistchina.txt: 4062) .niutuku.com/skin/style2013/ad/ -# ||niu20.com/g/ (easylistchina+easylist.txt: 4070) +# ||niu20.com/g/ (easylistchina.txt: 4061) .niu20.com/g/ -# ||ngacn.cc/common_res/js_adscommon.js (easylistchina+easylist.txt: 4069) +# ||ngacn.cc/common_res/js_adscommon.js (easylistchina.txt: 4060) .ngacn.cc/common_res/js_adscommon\.js -# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina+easylist.txt: 4068) +# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina.txt: 4059) .nextmedia.com/web_images/recruit_banner\.jpg -# ||nexoncn.com/img/pic/rili.gif (easylistchina+easylist.txt: 4067) +# ||nexoncn.com/img/pic/rili.gif (easylistchina.txt: 4058) .nexoncn.com/img/pic/rili\.gif -# ||newssc.org/2014images/cd*yy (easylistchina+easylist.txt: 4066) +# ||newssc.org/2014images/cd*yy (easylistchina.txt: 4057) .newssc.org/2014images/cd.*yy -# ||newssc.org/2014images/1378110741538.jpg (easylistchina+easylist.txt: 4065) +# ||newssc.org/2014images/1378110741538.jpg (easylistchina.txt: 4056) .newssc.org/2014images/1378110741538\.jpg -# ||newsmth.net/nForum/files/adv/ (easylistchina+easylist.txt: 4064) +# ||newsmth.net/nForum/files/adv/ (easylistchina.txt: 4055) .newsmth.net/nForum/files/adv/ -# ||newsmth.net/nForum/baiduunion/ (easylistchina+easylist.txt: 4063) +# ||newsmth.net/nForum/baiduunion/ (easylistchina.txt: 4054) .newsmth.net/nForum/baiduunion/ -# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina+easylist.txt: 4062) +# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina.txt: 4053) .newsgroup.la/search/ysm/pam430x80\.swf -# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina+easylist.txt: 4061) +# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina.txt: 4052) .newsgroup.la/ad/yahoo/fad\.gif -# ||news18a.com/image/ad_ina/ (easylistchina+easylist.txt: 4060) +# ||news18a.com/image/ad_ina/ (easylistchina.txt: 4051) .news18a.com/image/ad_ina/ -# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina+easylist.txt: 4059) +# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina.txt: 4050) .news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c\.png -# ||news.tom.com/v2008.js (easylistchina+easylist.txt: 4058) +# ||news.tom.com/v2008.js (easylistchina.txt: 4049) .news.tom.com/v2008\.js -# ||news.sina.com.tw/js/ti.js (easylistchina+easylist.txt: 4057) +# ||news.sina.com.tw/js/ti.js (easylistchina.txt: 4048) .news.sina.com.tw/js/ti\.js -# ||news.sina.com.cn/js/792/*head*.js (easylistchina+easylist.txt: 4055) +# ||news.sina.com.cn/js/792/*head*.js (easylistchina.txt: 4046) .news.sina.com.cn/js/792/.*head.*\.js -# ||news.hz66.com/IAA/201111/ (easylistchina+easylist.txt: 4054) +# ||news.hz66.com/IAA/201111/ (easylistchina.txt: 4045) .news.hz66.com/IAA/201111/ -# ||news.cn/news/ad/ (easylistchina+easylist.txt: 4053) +# ||news.cn/news/ad/ (easylistchina.txt: 4044) .news.cn/news/ad/ -# ||news.cn/forum/script/float2.js (easylistchina+easylist.txt: 4052) +# ||news.cn/forum/script/float2.js (easylistchina.txt: 4043) .news.cn/forum/script/float2\.js -# ||news.0898.net/NMediaFile/*.swf (easylistchina+easylist.txt: 4051) +# ||news.0898.net/NMediaFile/*.swf (easylistchina.txt: 4042) .news.0898.net/NMediaFile/.*\.swf -# ||news.0898.net/NMediaFile/*.gif (easylistchina+easylist.txt: 4050) +# ||news.0898.net/NMediaFile/*.gif (easylistchina.txt: 4041) .news.0898.net/NMediaFile/.*\.gif -# ||newhua.com/newhuagg/gg_search_ (easylistchina+easylist.txt: 4049) +# ||newhua.com/newhuagg/gg_search_ (easylistchina.txt: 4040) .newhua.com/newhuagg/gg_search_ -# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina+easylist.txt: 4048) +# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina.txt: 4039) .new-icon.ol-img.com/jslib/ad_new\.js -# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina+easylist.txt: 4047) +# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina.txt: 4038) .new-icon.ol-img.com/jslib/ad\.down\.js -# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina+easylist.txt: 4046) +# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina.txt: 4037) .new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao\.jpg -# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina+easylist.txt: 4045) +# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina.txt: 4036) .netdna-cdn.com/wp-content/plugins/popover/ -# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina+easylist.txt: 4044) +# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina.txt: 4035) .neotv.com.cn/images/avs/tc/tc\.js -# ||nen.com.cn/service/js/beitou (easylistchina+easylist.txt: 4043) +# ||nen.com.cn/service/js/beitou (easylistchina.txt: 4034) .nen.com.cn/service/js/beitou -# ||nen.com.cn/eap/ (easylistchina+easylist.txt: 4042) +# ||nen.com.cn/eap/ (easylistchina.txt: 4033) .nen.com.cn/eap/ -# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina+easylist.txt: 4041) +# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina.txt: 4032) .neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b\.jpg -# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina+easylist.txt: 4040) +# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina.txt: 4031) .ncnews.com.cn/statics/js/ban/ix/ban -# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina+easylist.txt: 4039) +# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina.txt: 4030) .ncnews.com.cn/statics/images/2015/ban/dh\.swf -# ||ncdiy.com/webindex/300-250AD.swf (easylistchina+easylist.txt: 4038) +# ||ncdiy.com/webindex/300-250AD.swf (easylistchina.txt: 4029) .ncdiy.com/webindex/300-250AD\.swf -# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina+easylist.txt: 4037) +# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina.txt: 4028) .nba.weibo.com/images/bg/bg_heat\.jpg -# ||nb155.com/images/mysshok.png (easylistchina+easylist.txt: 4036) +# ||nb155.com/images/mysshok.png (easylistchina.txt: 4027) .nb155.com/images/mysshok\.png -# ||narutom.com/v2/v/$subdocument (easylistchina+easylist.txt: 4035) +# ||narutom.com/v2/v/$subdocument (easylistchina.txt: 4026) .narutom.com/v2/v/ -# ||narutom.com/v2/js/ca.js (easylistchina+easylist.txt: 4034) +# ||narutom.com/v2/js/ca.js (easylistchina.txt: 4025) .narutom.com/v2/js/ca\.js -# ||narutom.com/js/jsg2.js (easylistchina+easylist.txt: 4033) +# ||narutom.com/js/jsg2.js (easylistchina.txt: 4024) .narutom.com/js/jsg2\.js -# ||nanrenwo.net/theme/2013/js/top.js (easylistchina+easylist.txt: 4032) +# ||nanrenwo.net/theme/2013/js/top.js (easylistchina.txt: 4023) .nanrenwo.net/theme/2013/js/top\.js -# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina+easylist.txt: 4031) +# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina.txt: 4022) .nanrenwo.net/theme/2013/js/popup.*\.js -# ||nanrenshu.com/rmb/st_dh.js (easylistchina+easylist.txt: 4030) +# ||nanrenshu.com/rmb/st_dh.js (easylistchina.txt: 4021) .nanrenshu.com/rmb/st_dh\.js -# ||nanhai.hinews.cn/zt/img/ (easylistchina+easylist.txt: 4029) +# ||nanren400.com/goto/ (easylistchina.txt: 4020) +.nanren400.com/goto/ +# ||nanhai.hinews.cn/zt/img/ (easylistchina.txt: 4019) .nanhai.hinews.cn/zt/img/ -# ||namipan.cc/includes/js/digg.js (easylistchina+easylist.txt: 4028) +# ||namipan.cc/includes/js/digg.js (easylistchina.txt: 4018) .namipan.cc/includes/js/digg\.js -# ||namipan.cc/baidu/ (easylistchina+easylist.txt: 4027) +# ||namipan.cc/baidu/ (easylistchina.txt: 4017) .namipan.cc/baidu/ -# ||najiadian.cn/shuang11.js (easylistchina+easylist.txt: 4026) +# ||najiadian.cn/shuang11.js (easylistchina.txt: 4016) .najiadian.cn/shuang11\.js -# ||n2.hk/promo/ (easylistchina+easylist.txt: 4025) +# ||n2.hk/promo/ (easylistchina.txt: 4015) .n2.hk/promo/ -# ||mzyz.com/image*/tj/ (easylistchina+easylist.txt: 4024) +# ||mzyz.com/image*/tj/ (easylistchina.txt: 4014) .mzyz.com/image.*/tj/ -# ||mzyfz.*/modules/46/ (easylistchina+easylist.txt: 4023) +# ||mzyfz.*/modules/46/ (easylistchina.txt: 4013) .mzyfz.*./(.*/)?modules/46/ -# ||mywpku.com/adminvm.jpg (easylistchina+easylist.txt: 4022) +# ||mywpku.com/adminvm.jpg (easylistchina.txt: 4012) .mywpku.com/adminvm\.jpg -# ||mywpku.com/*-banner. (easylistchina+easylist.txt: 4021) +# ||mywpku.com/*-banner. (easylistchina.txt: 4011) .mywpku.com/.*-banner\. -# ||myqcloud.com/js/easou.js (easylistchina+easylist.txt: 4020) +# ||myt520.com/images/jiaoyou (easylistchina.txt: 4010) +.myt520.com/images/jiaoyou +# ||myt520.com/images/4493.jpg (easylistchina.txt: 4009) +.myt520.com/images/4493\.jpg +# ||myqcloud.com/js/easou.js (easylistchina.txt: 4008) .myqcloud.com/js/easou\.js -# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina+easylist.txt: 4019) +# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina.txt: 4007) .mymusic.net.tw/upload/mobile_web_tmp/indexad01\. -# ||myhard.com/s?z= (easylistchina+easylist.txt: 4018) +# ||myhard.com/s?z= (easylistchina.txt: 4006) .myhard.com/s\?z= -# ||myhack58.com/js/top (easylistchina+easylist.txt: 4017) +# ||myhack58.com/js/top (easylistchina.txt: 4005) .myhack58.com/js/top -# ||myhack58.com/js/banner.js (easylistchina+easylist.txt: 4016) +# ||myhack58.com/js/banner.js (easylistchina.txt: 4004) .myhack58.com/js/banner\.js -# ||myhack58.com/acdb02/ (easylistchina+easylist.txt: 4015) +# ||myhack58.com/acdb02/ (easylistchina.txt: 4003) .myhack58.com/acdb02/ -# ||myhack58.com/abcd01/ (easylistchina+easylist.txt: 4014) +# ||myhack58.com/abcd01/ (easylistchina.txt: 4002) .myhack58.com/abcd01/ -# ||mydrivers.com/www/2015/s1120151105.png (easylistchina+easylist.txt: 4012) +# ||mydrivers.com/www/2015/s1120151105.png (easylistchina.txt: 4000) .mydrivers.com/www/2015/s1120151105\.png -# ||mydrivers.com/www/*-1000x90. (easylistchina+easylist.txt: 4011) +# ||mydrivers.com/www/*-1000x90. (easylistchina.txt: 3999) .mydrivers.com/www/.*-1000x90\. -# ||mycodes.net/js/hf_txt.js (easylistchina+easylist.txt: 4010) +# ||mycodes.net/js/hf_txt.js (easylistchina.txt: 3998) .mycodes.net/js/hf_txt\.js -# ||mycodes.net/js/down_txt.js (easylistchina+easylist.txt: 4009) +# ||mycodes.net/js/down_txt.js (easylistchina.txt: 3997) .mycodes.net/js/down_txt\.js -# ||mycodes.net/js/$image (easylistchina+easylist.txt: 4008) +# ||mycodes.net/js/$image (easylistchina.txt: 3996) .mycodes.net/js/ -# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina+easylist.txt: 4007) +# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina.txt: 3995) .mybjx.net/theme/default/js/common/mtibjx\.js -# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina+easylist.txt: 4006) +# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina.txt: 3994) .mybjx.net/theme/default/js/common/duilianchn\.js -# ||myad.toocle.com^ (easylistchina+easylist.txt: 4005) +# ||myad.toocle.com^ (easylistchina.txt: 3993) .myad.toocle.com -# ||my0832.com/xyz/upload/ (easylistchina+easylist.txt: 4004) +# ||my0832.com/xyz/upload/ (easylistchina.txt: 3992) .my0832.com/xyz/upload/ -# ||my0511.com/aadd/ (easylistchina+easylist.txt: 4003) +# ||my0511.com/aadd/ (easylistchina.txt: 3991) .my0511.com/aadd/ -# ||my0511.com/*/ad_ (easylistchina+easylist.txt: 4002) +# ||my0511.com/*/ad_ (easylistchina.txt: 3990) .my0511.com/.*/ad_ -# ||mxwz.com/swf/yidong2015.swf (easylistchina+easylist.txt: 4001) +# ||mxwz.com/swf/yidong2015.swf (easylistchina.txt: 3989) .mxwz.com/swf/yidong2015\.swf -# ||mwsl.qiniudn.com/250x250- (easylistchina+easylist.txt: 4000) +# ||mwsl.qiniudn.com/250x250- (easylistchina.txt: 3988) .mwsl.qiniudn.com/250x250- -# ||mw6.me/images/*.gif (easylistchina+easylist.txt: 3999) +# ||mw6.me/images/*.gif (easylistchina.txt: 3987) .mw6.me/images/.*\.gif -# ||muyuge.net/js/bb/ (easylistchina+easylist.txt: 3998) +# ||muyuge.net/js/bb/ (easylistchina.txt: 3986) .muyuge.net/js/bb/ -# ||muyuge.com/js/KillABP.js (easylistchina+easylist.txt: 3997) +# ||muyuge.com/js/KillABP.js (easylistchina.txt: 3985) .muyuge.com/js/KillABP\.js -# ||muyuge.com/js/bb/ (easylistchina+easylist.txt: 3996) +# ||muyuge.com/js/bb/ (easylistchina.txt: 3984) .muyuge.com/js/bb/ -# ||mtrend.cn/images/prome/ (easylistchina+easylist.txt: 3995) +# ||mtrend.cn/images/prome/ (easylistchina.txt: 3983) .mtrend.cn/images/prome/ -# ||mtksj.com/images/ad1225.jpg (easylistchina+easylist.txt: 3994) +# ||mtksj.com/images/ad1225.jpg (easylistchina.txt: 3982) .mtksj.com/images/ad1225\.jpg -# ||mtime.cn/tg/ (easylistchina+easylist.txt: 3993) +# ||mtime.cn/tg/ (easylistchina.txt: 3981) .mtime.cn/tg/ -# ||mt30.com/ok/ (easylistchina+easylist.txt: 3992) +# ||mt30.com/ok/ (easylistchina.txt: 3980) .mt30.com/ok/ -# ||msn.ynet.com/vtui_js01.js (easylistchina+easylist.txt: 3991) +# ||msn.ynet.com/vtui_js01.js (easylistchina.txt: 3979) .msn.ynet.com/vtui_js01\.js -# ||msn.people.com.cn/css/2010tianrun/ (easylistchina+easylist.txt: 3990) +# ||msn.people.com.cn/css/2010tianrun/ (easylistchina.txt: 3978) .msn.people.com.cn/css/2010tianrun/ -# ||msn.com/homep_ad (easylistchina+easylist.txt: 3989) +# ||msn.com/homep_ad (easylistchina.txt: 3977) .msn.com/homep_ad -# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina+easylist.txt: 3988) +# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina.txt: 3976) .mscbsc.com/gbook/telecomhr292x90\.gif -# ||ms211.com/js/tf.js (easylistchina+easylist.txt: 3987) +# ||ms211.com/js/tf.js (easylistchina.txt: 3975) .ms211.com/js/tf\.js -# ||ms211.com/about/$subdocument (easylistchina+easylist.txt: 3986) +# ||ms211.com/about/$subdocument (easylistchina.txt: 3974) .ms211.com/about/ -# ||ms211.com/211tf/ (easylistchina+easylist.txt: 3985) +# ||ms211.com/211tf/ (easylistchina.txt: 3973) .ms211.com/211tf/ -# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina+easylist.txt: 3984) +# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina.txt: 3972) .mracg.com/data/attachment/portal/201412/17/ -# ||mql5.com/10/0/*.gif (easylistchina+easylist.txt: 3983) +# ||mql5.com/10/0/*.gif (easylistchina.txt: 3971) .mql5.com/10/0/.*\.gif -# ||mp3.haogeba.com^$image,object (easylistchina+easylist.txt: 3982) +# ||mp3.haogeba.com^$image,object (easylistchina.txt: 3970) .mp3.haogeba.com -# ||motorfans.com.cn/iggs_system/ (easylistchina+easylist.txt: 3981) +# ||motorfans.com.cn/iggs_system/ (easylistchina.txt: 3969) .motorfans.com.cn/iggs_system/ -# ||motorfans.com.cn/igg/ (easylistchina+easylist.txt: 3980) +# ||motorfans.com.cn/igg/ (easylistchina.txt: 3968) .motorfans.com.cn/igg/ -# ||moratame.tw/img/contents/banner (easylistchina+easylist.txt: 3979) +# ||moratame.tw/img/contents/banner (easylistchina.txt: 3967) .moratame.tw/img/contents/banner -# ||mopxing.com/skin/sex/js/*content (easylistchina+easylist.txt: 3978) +# ||mopxing.com/skin/sex/js/*content (easylistchina.txt: 3966) .mopxing.com/skin/sex/js/.*content -# ||mopxing.com/skin/sex/js/*banner (easylistchina+easylist.txt: 3977) +# ||mopxing.com/skin/sex/js/*banner (easylistchina.txt: 3965) .mopxing.com/skin/sex/js/.*banner -# ||mopxing.com/skin/sex/js/*ad (easylistchina+easylist.txt: 3976) +# ||mopxing.com/skin/sex/js/*ad (easylistchina.txt: 3964) .mopxing.com/skin/sex/js/.*ad -# ||mopimg.cn/dc/ (easylistchina+easylist.txt: 3975) +# ||mopimg.cn/dc/ (easylistchina.txt: 3963) .mopimg.cn/dc/ -# ||moonbt.com/template/skin1/images/g_js/ (easylistchina+easylist.txt: 3974) +# ||moonbt.com/template/skin1/images/g_js/ (easylistchina.txt: 3962) .moonbt.com/template/skin1/images/g_js/ -# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina+easylist.txt: 3973) +# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina.txt: 3961) .moonbbs.com/static/image/banner/fashionmoon\.png -# ||moonbbs.com/data/attachment/portal/ (easylistchina+easylist.txt: 3972) +# ||moonbbs.com/data/attachment/portal/ (easylistchina.txt: 3960) .moonbbs.com/data/attachment/portal/ -# ||monnsutogatya.com/himg/monst/ (easylistchina+easylist.txt: 3971) +# ||monnsutogatya.com/himg/monst/ (easylistchina.txt: 3959) .monnsutogatya.com/himg/monst/ -# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina+easylist.txt: 3970) +# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina.txt: 3958) .moneyweekly.com.tw/Uploads/AD/.*970x -# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina+easylist.txt: 3969) +# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina.txt: 3957) .moneyweekly.com.tw/UC/JQueryJson\.aspx/MwAD -# ||money.qz828.com^ (easylistchina+easylist.txt: 3968) +# ||money.qz828.com^ (easylistchina.txt: 3956) .money.qz828.com -# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina+easylist.txt: 3966) +# ||money.bumimi.com^ (easylistchina.txt: 3955) +.money.bumimi.com +# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina.txt: 3953) .momoshop.com.tw/goods/GoodsDetail\.jsp\? -# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina+easylist.txt: 3965) +# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina.txt: 3952) .moe123.com/static/img/2014_fattycat\.jpg -# ||moe.la/images/banner/ (easylistchina+easylist.txt: 3964) +# ||moe.la/images/banner/ (easylistchina.txt: 3951) .moe.la/images/banner/ -# ||moe.fm/public/images/fm/promotion_ (easylistchina+easylist.txt: 3963) +# ||moe.fm/public/images/fm/promotion_ (easylistchina.txt: 3950) .moe.fm/public/images/fm/promotion_ -# ||mobile01.com/300x100.swf (easylistchina+easylist.txt: 3962) +# ||mobile01.com/300x100.swf (easylistchina.txt: 3949) .mobile01.com/300x100\.swf -# ||mnw.cn/script/info/baiduadm.html? (easylistchina+easylist.txt: 3961) +# ||mnw.cn/script/info/baiduadm.html? (easylistchina.txt: 3948) .mnw.cn/script/info/baiduadm\.html\? -# ||mnspx.com/js/bdbd/ (easylistchina+easylist.txt: 3960) -.mnspx.com/js/bdbd/ -# ||mmtalk.net/images/banner (easylistchina+easylist.txt: 3959) +# ||mmtalk.net/images/banner (easylistchina.txt: 3947) .mmtalk.net/images/banner -# ||mm387.com/images/*.gif (easylistchina+easylist.txt: 3958) +# ||mm387.com/images/*.gif (easylistchina.txt: 3946) .mm387.com/images/.*\.gif -# ||mm111.net/dotnet/artemis/u/cms/www/201504/1009585448o5.jpg (easylistchina+easylist.txt: 3957) -.mm111.net/dotnet/artemis/u/cms/www/201504/1009585448o5\.jpg -# ||mm111.net/dotnet/artemis/u/cms/www/201504/10095643port.jpg (easylistchina+easylist.txt: 3956) -.mm111.net/dotnet/artemis/u/cms/www/201504/10095643port\.jpg -# ||mlbuy.com/gg.js (easylistchina+easylist.txt: 3955) +# ||mlbuy.com/gg.js (easylistchina.txt: 3945) .mlbuy.com/gg\.js -# ||miyun360.com/data/attachment/portal/ (easylistchina+easylist.txt: 3954) +# ||miyun360.com/data/attachment/portal/ (easylistchina.txt: 3944) .miyun360.com/data/attachment/portal/ -# ||mitbbs.com/ad_ (easylistchina+easylist.txt: 3953) +# ||mitbbs.com/ad_ (easylistchina.txt: 3943) .mitbbs.com/ad_ -# ||mitbbs.ca/ad_ (easylistchina+easylist.txt: 3952) +# ||mitbbs.ca/ad_ (easylistchina.txt: 3942) .mitbbs.ca/ad_ -# ||mitbbs.*/servicedata/static_ad.php (easylistchina+easylist.txt: 3951) +# ||mitbbs.*/servicedata/static_ad.php (easylistchina.txt: 3941) .mitbbs.*./(.*/)?servicedata/static_ad\.php -# ||missyuan.com/sy/ (easylistchina+easylist.txt: 3950) +# ||missyuan.com/sy/ (easylistchina.txt: 3940) .missyuan.com/sy/ -# ||misaka.cn^*/600px- (easylistchina+easylist.txt: 3949) +# ||misaka.cn^*/600px- (easylistchina.txt: 3939) .misaka.cn/.*/600px- -# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina+easylist.txt: 3948) +# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina.txt: 3938) .mimg.127.net/ggimg/all/img18/140218_yixin_780x96\.jpg -# ||miljinhua.com/GD/ (easylistchina+easylist.txt: 3947) +# ||miljinhua.com/GD/ (easylistchina.txt: 3937) .miljinhua.com/GD/ -# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina+easylist.txt: 3946) +# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina.txt: 3936) .mil.news.sina.com.cn/iframe/109/2013/1015/hotpic\.html -# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina+easylist.txt: 3945) +# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina.txt: 3935) .mil.news.sina.com.cn/iframe/109/2012/1024/photo\.html -# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina+easylist.txt: 3944) +# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina.txt: 3934) .mil.news.sina.com.cn/iframe/.*/slideiframe\.html -# ||mifengtd.cn/ad- (easylistchina+easylist.txt: 3943) +# ||mifengtd.cn/ad- (easylistchina.txt: 3933) .mifengtd.cn/ad- -# ||midifan.com/aaa/ (easylistchina+easylist.txt: 3942) +# ||midifan.com/aaa/ (easylistchina.txt: 3932) .midifan.com/aaa/ -# ||microcontrol.cn/HomeImages/AD/ (easylistchina+easylist.txt: 3941) +# ||microcontrol.cn/HomeImages/AD/ (easylistchina.txt: 3931) .microcontrol.cn/HomeImages/AD/ -# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina+easylist.txt: 3940) +# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina.txt: 3930) .microcontrol.cn/bbs/images/AD755_150\.swf -# ||mianbao99.com/bd/ (easylistchina+easylist.txt: 3939) +# ||mianbao99.com/bd/ (easylistchina.txt: 3929) .mianbao99.com/bd/ -# ||mianbao99.com/a/mianbao/indextan.js (easylistchina+easylist.txt: 3938) +# ||mianbao99.com/a/mianbao/indextan.js (easylistchina.txt: 3928) .mianbao99.com/a/mianbao/indextan\.js -# ||mhhf.net/fserFiles/711x90.jpg (easylistchina+easylist.txt: 3937) +# ||mhhf.net/fserFiles/711x90.jpg (easylistchina.txt: 3927) .mhhf.net/fserFiles/711x90\.jpg -# ||mgbbs.cn/js/float.js (easylistchina+easylist.txt: 3936) +# ||mgbbs.cn/js/float.js (easylistchina.txt: 3926) .mgbbs.cn/js/float\.js -# ||mfxp.com/images/ (easylistchina+easylist.txt: 3935) +# ||mfxp.com/images/ (easylistchina.txt: 3925) .mfxp.com/images/ -# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina+easylist.txt: 3934) +# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina.txt: 3924) .mfacelive.com/Scripts/social/openchannel_min\.js -# ||meizhou.com/images/topbanner (easylistchina+easylist.txt: 3933) +# ||meizhou.com/images/topbanner (easylistchina.txt: 3923) .meizhou.com/images/topbanner -# ||meitu.com/js/floatxiuxiu.js (easylistchina+easylist.txt: 3932) +# ||meitu.com/js/floatxiuxiu.js (easylistchina.txt: 3922) .meitu.com/js/floatxiuxiu\.js -# ||meishichina.com/v3/ (easylistchina+easylist.txt: 3931) +# ||meishichina.com/v3/ (easylistchina.txt: 3921) .meishichina.com/v3/ -# ||meinv24.com/js/960- (easylistchina+easylist.txt: 3930) -.meinv24.com/js/960- -# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina+easylist.txt: 3929) +# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina.txt: 3920) .meinv.com/templates/meinv/js/.*_banner\.js -# ||meiliren.net/tuijs/ (easylistchina+easylist.txt: 3927) +# ||meiliren.net/tuijs/ (easylistchina.txt: 3918) .meiliren.net/tuijs/ -# ||meilele.com/js/recad. (easylistchina+easylist.txt: 3926) +# ||meilele.com/js/recad. (easylistchina.txt: 3917) .meilele.com/js/recad\. -# ||medsci.cn/aimgs/$script (easylistchina+easylist.txt: 3924) +# ||medsci.cn/aimgs/$script (easylistchina.txt: 3915) .medsci.cn/aimgs/ -# ||media.cheshi-img.com^ (easylistchina+easylist.txt: 3923) +# ||media.cheshi-img.com^ (easylistchina.txt: 3914) .media.cheshi-img.com -# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina+easylist.txt: 3922) +# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina.txt: 3912) .mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ -# ||mcncc.com/yeyou/gg.js (easylistchina+easylist.txt: 3921) +# ||mcncc.com/yeyou/gg.js (easylistchina.txt: 3911) .mcncc.com/yeyou/gg\.js -# ||mcncc.com/yeyou/*.htm (easylistchina+easylist.txt: 3920) +# ||mcncc.com/yeyou/*.htm (easylistchina.txt: 3910) .mcncc.com/yeyou/.*\.htm -# ||mbalib.com/wiki/common/wikibits.js (easylistchina+easylist.txt: 3919) +# ||mbalib.com/wiki/common/wikibits.js (easylistchina.txt: 3909) .mbalib.com/wiki/common/wikibits\.js -# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina+easylist.txt: 3918) +# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina.txt: 3908) .maxthonimg.com/cp/ad/1420792739\.jpg -# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina+easylist.txt: 3917) +# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina.txt: 3907) .maxthonimg.com/cp/ad/1420765807\.jpg -# ||mat1.gtimg.com/ent/flash/*300 (easylistchina+easylist.txt: 3916) +# ||mat1.gtimg.com/ent/flash/*300 (easylistchina.txt: 3906) .mat1.gtimg.com/ent/flash/.*300 -# ||mat1.gtimg.com/cq/flash/ (easylistchina+easylist.txt: 3915) +# ||mat1.gtimg.com/cq/flash/ (easylistchina.txt: 3905) .mat1.gtimg.com/cq/flash/ -# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina+easylist.txt: 3914) +# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina.txt: 3904) .mat1.gtimg.com/2014/webtips/ola2014tips -# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina+easylist.txt: 3913) +# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina.txt: 3903) .mat1.gtimg.com/2014/vikkydu/GA/haier -# ||masok.cn/red/ (easylistchina+easylist.txt: 3912) +# ||masok.cn/red/ (easylistchina.txt: 3902) .masok.cn/red/ -# ||masadora.net/kakusan- (easylistchina+easylist.txt: 3911) +# ||masadora.net/kakusan- (easylistchina.txt: 3901) .masadora.net/kakusan- -# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina+easylist.txt: 3910) +# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina.txt: 3900) .marstv.com/uploadfile/game/20150728/1438055654\.png -# ||market.duowan.com^ (easylistchina+easylist.txt: 3909) +# ||market.duowan.com^ (easylistchina.txt: 3899) .market.duowan.com -# ||market.21cn.com^ (easylistchina+easylist.txt: 3908) +# ||market.21cn.com^ (easylistchina.txt: 3898) .market.21cn.com -# ||market.178.com^ (easylistchina+easylist.txt: 3907) +# ||market.178.com^ (easylistchina.txt: 3897) .market.178.com -# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina+easylist.txt: 3906) +# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina.txt: 3896) .maolihui.com/wp-content/themes/miaonew/images/adb -# ||manage.wdfans.cn^ (easylistchina+easylist.txt: 3905) +# ||manage.wdfans.cn^ (easylistchina.txt: 3895) .manage.wdfans.cn -# ||manads.static.olcdn.com^ (easylistchina+easylist.txt: 3904) +# ||manads.static.olcdn.com^ (easylistchina.txt: 3894) .manads.static.olcdn.com -# ||mall.xinkuaituan.com/zhuanti/ (easylistchina+easylist.txt: 3903) +# ||mall.xinkuaituan.com/zhuanti/ (easylistchina.txt: 3893) .mall.xinkuaituan.com/zhuanti/ -# ||maituan.com/admin/indexflash/pic/gg (easylistchina+easylist.txt: 3902) +# ||maituan.com/admin/indexflash/pic/gg (easylistchina.txt: 3892) .maituan.com/admin/indexflash/pic/gg -# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina+easylist.txt: 3901) +# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina.txt: 3891) .maipiao.96900.com.cn/jtjt/js/jtjtgg\.js -# ||maipiao.96900.com.cn/js/indexgg (easylistchina+easylist.txt: 3900) +# ||maipiao.96900.com.cn/js/indexgg (easylistchina.txt: 3890) .maipiao.96900.com.cn/js/indexgg -# ||mail.qq.com/lview? (easylistchina+easylist.txt: 3899) +# ||mail.qq.com/lview? (easylistchina.txt: 3889) .mail.qq.com/lview\? -# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina+easylist.txt: 3898) +# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina.txt: 3888) .mail.pchome.com.tw/img/classifieds/300120\.gif -# ||mahua.com/www/default/js/replace_ab.js (easylistchina+easylist.txt: 3897) +# ||mahua.com/www/default/js/replace_ab.js (easylistchina.txt: 3887) .mahua.com/www/default/js/replace_ab\.js -# ||mahua.com/www/default/js/mahua_show.js (easylistchina+easylist.txt: 3896) +# ||mahua.com/www/default/js/mahua_show.js (easylistchina.txt: 3886) .mahua.com/www/default/js/mahua_show\.js -# ||mahua.com/api/$subdocument (easylistchina+easylist.txt: 3895) +# ||mahua.com/api/$subdocument (easylistchina.txt: 3885) .mahua.com/api/ -# ||macx.cn/js/f.txt.js (easylistchina+easylist.txt: 3894) +# ||macx.cn/js/f.txt.js (easylistchina.txt: 3884) .macx.cn/js/f\.txt\.js -# ||macd.cn/macd-topads.html (easylistchina+easylist.txt: 3893) +# ||macd.cn/macd-topads.html (easylistchina.txt: 3883) .macd.cn/macd-topads\.html -# ||macappbox.com/d/file/p/*.gif (easylistchina+easylist.txt: 3892) +# ||macappbox.com/d/file/p/*.gif (easylistchina.txt: 3882) .macappbox.com/d/file/p/.*\.gif -# ||ma.baiducdn2.com^*/main.js?t= (easylistchina+easylist.txt: 3891) +# ||ma.baiducdn2.com^*/main.js?t= (easylistchina.txt: 3881) .ma.baiducdn2.com/.*/main\.js\?t= -# ||m1905.com/asp_js/k.js (easylistchina+easylist.txt: 3890) +# ||m1905.com/asp_js/k.js (easylistchina.txt: 3880) .m1905.com/asp_js/k\.js -# ||m1905.cn/images/video/BannerImg (easylistchina+easylist.txt: 3889) +# ||m1905.cn/images/video/BannerImg (easylistchina.txt: 3879) .m1905.cn/images/video/BannerImg -# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina+easylist.txt: 3888) +# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina.txt: 3878) .m1905.cn/images/bg_index_hgn\.jpg -# ||m1905.cn/afp/mdsfw.js (easylistchina+easylist.txt: 3887) +# ||m1905.cn/afp/mdsfw.js (easylistchina.txt: 3877) .m1905.cn/afp/mdsfw\.js -# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina+easylist.txt: 3886) +# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina.txt: 3876) .m.tiebaimg.com/timg\?wapp[^\w%.-].*imgtype=0 -# ||m.aty.sohu.com^ (easylistchina+easylist.txt: 3885) +# ||m.aty.sohu.com^ (easylistchina.txt: 3875) .m.aty.sohu.com -# ||lzqss.net/data/attachment/portal/ (easylistchina+easylist.txt: 3884) +# ||lzqss.net/data/attachment/portal/ (easylistchina.txt: 3874) .lzqss.net/data/attachment/portal/ -# ||lzep.cn^*/2014ad/ (easylistchina+easylist.txt: 3883) +# ||lzep.cn^*/2014ad/ (easylistchina.txt: 3873) .lzep.cn/.*/2014ad/ -# ||lzep.cn^*/2013ad/ (easylistchina+easylist.txt: 3882) +# ||lzep.cn^*/2013ad/ (easylistchina.txt: 3872) .lzep.cn/.*/2013ad/ -# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina+easylist.txt: 3881) +# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina.txt: 3871) .lzep.cn/uploadfile/hftv/2014/0901/20140901044836216\.jpg -# ||lzep.cn/images/*/ad (easylistchina+easylist.txt: 3880) +# ||lzep.cn/images/*/ad (easylistchina.txt: 3870) .lzep.cn/images/.*/ad -# ||lzep.cn/ep/sda/*_300X (easylistchina+easylist.txt: 3879) +# ||lzep.cn/ep/sda/*_300X (easylistchina.txt: 3869) .lzep.cn/ep/sda/.*_300X -# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina+easylist.txt: 3878) +# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina.txt: 3868) .lzep.cn/ep/sda/.*_1000x60_ -# ||lzep.cn/ep/old/finance/ad (easylistchina+easylist.txt: 3877) +# ||lzep.cn/ep/old/finance/ad (easylistchina.txt: 3867) .lzep.cn/ep/old/finance/ad -# ||lzep.cn/ep/js/index_window.js (easylistchina+easylist.txt: 3876) +# ||lzep.cn/ep/js/index_window.js (easylistchina.txt: 3866) .lzep.cn/ep/js/index_window\.js -# ||lzep.cn/ep/ads/ (easylistchina+easylist.txt: 3875) +# ||lzep.cn/ep/ads/ (easylistchina.txt: 3865) .lzep.cn/ep/ads/ -# ||lzep.cn/data/js/1*.js (easylistchina+easylist.txt: 3874) +# ||lzep.cn/data/js/1*.js (easylistchina.txt: 3864) .lzep.cn/data/js/1.*\.js -# ||lz.chinanews.com/images/flash/00.swf (easylistchina+easylist.txt: 3873) +# ||lz.chinanews.com/images/flash/00.swf (easylistchina.txt: 3863) .lz.chinanews.com/images/flash/00\.swf -# ||lywww.com/index_topa.php (easylistchina+easylist.txt: 3872) +# ||lywww.com/index_topa.php (easylistchina.txt: 3862) .lywww.com/index_topa\.php -# ||lywww.com/header_pic.php (easylistchina+easylist.txt: 3871) +# ||lywww.com/header_pic.php (easylistchina.txt: 3861) .lywww.com/header_pic\.php -# ||lywww.com/data/js/3 (easylistchina+easylist.txt: 3870) +# ||lywww.com/data/js/3 (easylistchina.txt: 3860) .lywww.com/data/js/3 -# ||lywww.com/data/js/2 (easylistchina+easylist.txt: 3869) +# ||lywww.com/data/js/2 (easylistchina.txt: 3859) .lywww.com/data/js/2 -# ||lywww.com/data/js/1 (easylistchina+easylist.txt: 3868) +# ||lywww.com/data/js/1 (easylistchina.txt: 3858) .lywww.com/data/js/1 -# ||lywww.com/data/js.php?id= (easylistchina+easylist.txt: 3867) +# ||lywww.com/data/js.php?id= (easylistchina.txt: 3857) .lywww.com/data/js\.php\?id= -# ||lyd.com.cn^*950-90. (easylistchina+easylist.txt: 3866) +# ||lyd.com.cn^*950-90. (easylistchina.txt: 3856) .lyd.com.cn/.*950-90\. -# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina+easylist.txt: 3865) +# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina.txt: 3855) .ly.shangdu.com/lyinfo/zlwz/flash/ -# ||ly.js.cn/adv/ (easylistchina+easylist.txt: 3864) +# ||ly.js.cn/adv/ (easylistchina.txt: 3854) .ly.js.cn/adv/ -# ||lxty66.com/js/float.js (easylistchina+easylist.txt: 3863) +# ||lxty66.com/js/float.js (easylistchina.txt: 3853) .lxty66.com/js/float\.js -# ||lxting.com^ (easylistchina+easylist.txt: 3862) +# ||lxting.com^ (easylistchina.txt: 3852) .lxting.com -# ||luuu1.com/g/ (easylistchina+easylist.txt: 3861) +# ||luuu1.com/g/ (easylistchina.txt: 3851) .luuu1.com/g/ -# ||luckstatic.v1.cn/st/10000/ (easylistchina+easylist.txt: 3860) +# ||luckstatic.v1.cn/st/10000/ (easylistchina.txt: 3850) .luckstatic.v1.cn/st/10000/ -# ||ltwbook.com/js/l_ (easylistchina+easylist.txt: 3859) +# ||ltxszw.com/js/350.png (easylistchina.txt: 3849) +.ltxszw.com/js/350\.png +# ||ltwbook.com/js/l_ (easylistchina.txt: 3848) .ltwbook.com/js/l_ -# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina+easylist.txt: 3858) +# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina.txt: 3847) .lrjz100.u.qiniudn.com/rmb/bxd\.jpg -# ||loveshang.com/pic/*.swf (easylistchina+easylist.txt: 3857) +# ||loveshang.com/pic/*.swf (easylistchina.txt: 3846) .loveshang.com/pic/.*\.swf -# ||lotour.com/Honda/ad/ (easylistchina+easylist.txt: 3856) +# ||lotour.com/Honda/ad/ (easylistchina.txt: 3845) .lotour.com/Honda/ad/ -# ||look4lib.com/js/bnr_ (easylistchina+easylist.txt: 3855) +# ||look4lib.com/js/bnr_ (easylistchina.txt: 3844) .look4lib.com/js/bnr_ -# ||longyu.cc/bucket/flash/ (easylistchina+easylist.txt: 3854) +# ||longyu.cc/bucket/flash/ (easylistchina.txt: 3843) .longyu.cc/bucket/flash/ -# ||longyu.cc/adg/ (easylistchina+easylist.txt: 3853) +# ||longyu.cc/adg/ (easylistchina.txt: 3842) .longyu.cc/adg/ -# ||longbahao.com/js/ad- (easylistchina+easylist.txt: 3852) +# ||longbahao.com/js/ad- (easylistchina.txt: 3841) .longbahao.com/js/ad- -# ||longbahao.com/asd.js (easylistchina+easylist.txt: 3851) +# ||longbahao.com/asd.js (easylistchina.txt: 3840) .longbahao.com/asd\.js -# ||loldk.com/res/media/fanxing_ (easylistchina+easylist.txt: 3850) +# ||loldk.com/res/media/fanxing_ (easylistchina.txt: 3839) .loldk.com/res/media/fanxing_ -# ||lofter.com/mailEntryMobile.do (easylistchina+easylist.txt: 3849) +# ||lofter.com/mailEntryMobile.do (easylistchina.txt: 3838) .lofter.com/mailEntryMobile\.do -# ||lofter.com/mailEntry.do?*ad= (easylistchina+easylist.txt: 3848) +# ||lofter.com/mailEntry.do?*ad= (easylistchina.txt: 3837) .lofter.com/mailEntry\.do\?.*ad= -# ||lnzq5.com/js/shuanglian.js (easylistchina+easylist.txt: 3847) +# ||lnzq5.com/js/shuanglian.js (easylistchina.txt: 3836) .lnzq5.com/js/shuanglian\.js -# ||lnd.com.cn/site1/*.swf (easylistchina+easylist.txt: 3846) +# ||lnd.com.cn/site1/*.swf (easylistchina.txt: 3835) .lnd.com.cn/site1/.*\.swf -# ||ln.xinhuanet.com/inc/ (easylistchina+easylist.txt: 3845) +# ||ln.xinhuanet.com/inc/ (easylistchina.txt: 3834) .ln.xinhuanet.com/inc/ -# ||ljia.net/vipflash/pop_footer.js (easylistchina+easylist.txt: 3844) +# ||ljia.net/vipflash/pop_footer.js (easylistchina.txt: 3833) .ljia.net/vipflash/pop_footer\.js -# ||liyuanwang.com/nongli.gif (easylistchina+easylist.txt: 3843) +# ||liyuanwang.com/nongli.gif (easylistchina.txt: 3832) .liyuanwang.com/nongli\.gif -# ||livemp4.com/js/ (easylistchina+easylist.txt: 3842) -.livemp4.com/js/ -# ||livefilestore.com^*/imj160x200.gif (easylistchina+easylist.txt: 3841) +# ||livefilestore.com^*/imj160x200.gif (easylistchina.txt: 3831) .livefilestore.com/.*/imj160x200\.gif -# ||liveany.com/images/8d8d.gif (easylistchina+easylist.txt: 3840) +# ||liveany.com/images/8d8d.gif (easylistchina.txt: 3830) .liveany.com/images/8d8d\.gif -# ||live8bo.com/j/Lad6.js (easylistchina+easylist.txt: 3839) -.live8bo.com/j/Lad6\.js -# ||linuxidc.com/linuxfile/y9.js (easylistchina+easylist.txt: 3838) +# ||linuxidc.com/linuxfile/y9.js (easylistchina.txt: 3829) .linuxidc.com/linuxfile/y9\.js -# ||linuxidc.com/linuxfile/list (easylistchina+easylist.txt: 3837) +# ||linuxidc.com/linuxfile/list (easylistchina.txt: 3828) .linuxidc.com/linuxfile/list -# ||linuxidc.com/linuxfile/linux$script (easylistchina+easylist.txt: 3836) +# ||linuxidc.com/linuxfile/linux$script (easylistchina.txt: 3827) .linuxidc.com/linuxfile/linux -# ||linuxeden.com/plus/web_js.php (easylistchina+easylist.txt: 3835) +# ||linuxeden.com/plus/web_js.php (easylistchina.txt: 3826) .linuxeden.com/plus/web_js\.php -# ||linkwan.com/gb/javascript/c5- (easylistchina+easylist.txt: 3834) +# ||linkwan.com/gb/javascript/c5- (easylistchina.txt: 3825) .linkwan.com/gb/javascript/c5- -# ||linkwan.com/gb/javascript/b4.js (easylistchina+easylist.txt: 3833) +# ||linkwan.com/gb/javascript/b4.js (easylistchina.txt: 3824) .linkwan.com/gb/javascript/b4\.js -# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina+easylist.txt: 3832) +# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina.txt: 3823) .linkwan.com/gb/broadmeter/speed/cp\.js -# ||links.cn/mmshow (easylistchina+easylist.txt: 3831) +# ||links.cn/mmshow (easylistchina.txt: 3822) .links.cn/mmshow -# ||linkhelper.cn/mmshow (easylistchina+easylist.txt: 3830) +# ||linkhelper.cn/mmshow (easylistchina.txt: 3821) .linkhelper.cn/mmshow -# ||link.fobshanghai.com^ (easylistchina+easylist.txt: 3829) +# ||link.fobshanghai.com^ (easylistchina.txt: 3820) .link.fobshanghai.com -# ||lingdian98.com^ (easylistchina+easylist.txt: 3828) +# ||lingdian98.com^ (easylistchina.txt: 3819) .lingdian98.com -# ||life.e0575.com^ (easylistchina+easylist.txt: 3827) +# ||life.e0575.com^ (easylistchina.txt: 3818) .life.e0575.com -# ||liepin.com/event/jobadver/ (easylistchina+easylist.txt: 3826) +# ||liepin.com/event/jobadver/ (easylistchina.txt: 3817) .liepin.com/event/jobadver/ -# ||licai18.com/pic/*.swf (easylistchina+easylist.txt: 3825) +# ||licai18.com/pic/*.swf (easylistchina.txt: 3816) .licai18.com/pic/.*\.swf -# ||licai18.com/bk/$object (easylistchina+easylist.txt: 3824) +# ||licai18.com/bk/$object (easylistchina.txt: 3815) .licai18.com/bk/ -# ||liba.com/ads/ (easylistchina+easylist.txt: 3823) +# ||liba.com/ads/ (easylistchina.txt: 3814) .liba.com/ads/ -# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina+easylist.txt: 3822) +# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina.txt: 3813) .liaoxuefeng.com/files/attachments/00144.*/0 -# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina+easylist.txt: 3821) +# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina.txt: 3812) .liaoing.com/image/picture_g/zhengzhou/index/.*\.swf -# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina+easylist.txt: 3820) +# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina.txt: 3811) .liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng\.swf -# ||liaoing.com/egou/ (easylistchina+easylist.txt: 3819) +# ||liaoing.com/egou/ (easylistchina.txt: 3810) .liaoing.com/egou/ -# ||liao1.com/publicize/file/news_detail_ (easylistchina+easylist.txt: 3818) +# ||liao1.com/publicize/file/news_detail_ (easylistchina.txt: 3809) .liao1.com/publicize/file/news_detail_ -# ||liao1.com/js/floatVideoAd.js (easylistchina+easylist.txt: 3817) +# ||liao1.com/js/floatVideoAd.js (easylistchina.txt: 3808) .liao1.com/js/floatVideoAd\.js -# ||liangzijie.com/Runtime/ (easylistchina+easylist.txt: 3816) +# ||liangzijie.com/Runtime/ (easylistchina.txt: 3807) .liangzijie.com/Runtime/ -# ||liangjan.com/style/img/banner (easylistchina+easylist.txt: 3815) +# ||liangjan.com/style/img/banner (easylistchina.txt: 3806) .liangjan.com/style/img/banner -# ||liangjan.com/js/show_ (easylistchina+easylist.txt: 3814) +# ||liangjan.com/js/show_ (easylistchina.txt: 3805) .liangjan.com/js/show_ -# ||liangchan.net/adf/ (easylistchina+easylist.txt: 3813) +# ||liangchan.net/adf/ (easylistchina.txt: 3804) .liangchan.net/adf/ -# ||liangchan.net/aaddaadd/ (easylistchina+easylist.txt: 3812) +# ||liangchan.net/aaddaadd/ (easylistchina.txt: 3803) .liangchan.net/aaddaadd/ -# ||lh168.net^*/attachment/portal/ (easylistchina+easylist.txt: 3811) +# ||lh168.net^*/attachment/portal/ (easylistchina.txt: 3802) .lh168.net/.*/attachment/portal/ -# ||lh168.net/extra/ads/ (easylistchina+easylist.txt: 3810) +# ||lh168.net/extra/ads/ (easylistchina.txt: 3801) .lh168.net/extra/ads/ -# ||lezhuan.com/js/spread.js (easylistchina+easylist.txt: 3809) +# ||lezhuan.com/js/spread.js (easylistchina.txt: 3800) .lezhuan.com/js/spread\.js -# ||letvimg.com^*_phone/ (easylistchina+easylist.txt: 3808) +# ||letvimg.com^*_phone/ (easylistchina.txt: 3799) .letvimg.com/.*_phone/ -# ||letvimg.com^*/108x70$object (easylistchina+easylist.txt: 3807) +# ||letvimg.com^*/108x70$object (easylistchina.txt: 3798) .letvimg.com/.*/108x70 -# ||letvimg.com/img/201503/19/uc1/ (easylistchina+easylist.txt: 3806) +# ||letvimg.com/img/201503/19/uc1/ (easylistchina.txt: 3797) .letvimg.com/img/201503/19/uc1/ -# ||letvimg.com/gugwl/*.swf (easylistchina+easylist.txt: 3805) +# ||letvimg.com/gugwl/*.swf (easylistchina.txt: 3796) .letvimg.com/gugwl/.*\.swf -# ||letvimg.com*gugwl/$object-subrequest (easylistchina+easylist.txt: 3804) +# ||letvimg.com*gugwl/$object-subrequest (easylistchina.txt: 3795) .letvimg.com*./.*gugwl/ .letvimg.com*gugwl -# ||letvcdn.com/js/*_focus_flash.js (easylistchina+easylist.txt: 3803) +# ||letvcdn.com/js/*_focus_flash.js (easylistchina.txt: 3794) .letvcdn.com/js/.*_focus_flash\.js -# ||letv.com/s?ark=*&cis= (easylistchina+easylist.txt: 3802) +# ||letv.com/s?ark=*&cis= (easylistchina.txt: 3793) .letv.com/s\?ark=.*&cis= -# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina+easylist.txt: 3801) +# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina.txt: 3792) .letv.com/pzt/hyhmzq/index\.shtml -# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina+easylist.txt: 3800) +# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina.txt: 3791) .letsebuy.com/static/image/common/dm_cn_130\.jpg -# ||leshen.com/skin/m/action/ad. (easylistchina+easylist.txt: 3799) +# ||leshen.com/skin/m/action/ad. (easylistchina.txt: 3790) .leshen.com/skin/m/action/ad\. -# ||lepan.cc/images/yd/ (easylistchina+easylist.txt: 3798) +# ||lepan.cc/images/yd/ (easylistchina.txt: 3789) .lepan.cc/images/yd/ -# ||lelevod.com/js/abc/t (easylistchina+easylist.txt: 3797) +# ||lelevod.com/js/abc/t (easylistchina.txt: 3788) .lelevod.com/js/abc/t -# ||lelevod.com/js/abc/p (easylistchina+easylist.txt: 3796) +# ||lelevod.com/js/abc/p (easylistchina.txt: 3787) .lelevod.com/js/abc/p -# ||lekan.com^*&stopTime= (easylistchina+easylist.txt: 3795) +# ||lekan.com^*&stopTime= (easylistchina.txt: 3786) .lekan.com/.*&stopTime= -# ||leiting001.com/bg/ltgg/ (easylistchina+easylist.txt: 3794) +# ||leiting001.com/bg/ltgg/ (easylistchina.txt: 3785) .leiting001.com/bg/ltgg/ -# ||leiqun.snxyf.com^ (easylistchina+easylist.txt: 3793) +# ||leiqun.snxyf.com^ (easylistchina.txt: 3784) .leiqun.snxyf.com -# ||lecai.com/page/zhuanti/baidu/ (easylistchina+easylist.txt: 3792) +# ||lecai.com/page/zhuanti/baidu/ (easylistchina.txt: 3783) .lecai.com/page/zhuanti/baidu/ -# ||ld0766.com/*20*a/ (easylistchina+easylist.txt: 3791) +# ||ld0766.com/*20*a/ (easylistchina.txt: 3782) .ld0766.com/.*20.*a/ -# ||lbx777.com/z_gegz/pic/ (easylistchina+easylist.txt: 3790) +# ||lbx777.com/z_gegz/pic/ (easylistchina.txt: 3781) .lbx777.com/z_gegz/pic/ -# ||lbx777.*/css/lbxgg02 (easylistchina+easylist.txt: 3789) +# ||lbx777.*/css/lbxgg02 (easylistchina.txt: 3780) .lbx777.*./(.*/)?css/lbxgg02 -# ||lbx777.*/css/300.js (easylistchina+easylist.txt: 3788) +# ||lbx777.*/css/300.js (easylistchina.txt: 3779) .lbx777.*./(.*/)?css/300\.js -# ||lawtv.com.cn/skin/stop.swf (easylistchina+easylist.txt: 3787) +# ||lawtv.com.cn/skin/stop.swf (easylistchina.txt: 3778) .lawtv.com.cn/skin/stop\.swf -# ||law-lib.com/2009_ad/ (easylistchina+easylist.txt: 3786) +# ||law-lib.com/2009_ad/ (easylistchina.txt: 3777) .law-lib.com/2009_ad/ -# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina+easylist.txt: 3785) +# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina.txt: 3776) .laozuo.org/wp-content/themes/weisaysimple/js/single-bottom\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina+easylist.txt: 3784) +# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina.txt: 3775) .laozuo.org/wp-content/themes/weisaysimple/js/sidebar -# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina+easylist.txt: 3783) +# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina.txt: 3774) .laozuo.org/wp-content/themes/weisaysimple/js/index-top\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina+easylist.txt: 3782) +# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina.txt: 3773) .laozuo.org/wp-content/themes/weisaysimple/js/content40width\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina+easylist.txt: 3781) +# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina.txt: 3772) .laozuo.org/wp-content/themes/weisaysimple/js/banner\.js -# ||laoyuegou.com/js/*_couplet_ (easylistchina+easylist.txt: 3780) +# ||laoyuegou.com/js/*_couplet_ (easylistchina.txt: 3771) .laoyuegou.com/js/.*_couplet_ -# ||laoyuegou.com/img/*/banner/ (easylistchina+easylist.txt: 3779) +# ||laoyuegou.com/img/*/banner/ (easylistchina.txt: 3770) .laoyuegou.com/img/.*/banner/ -# ||laonanren.com/oldman/ (easylistchina+easylist.txt: 3778) +# ||laonanren.com/oldman/ (easylistchina.txt: 3769) .laonanren.com/oldman/ -# ||laogu.com/my/ad (easylistchina+easylist.txt: 3777) +# ||laogu.com/my/ad (easylistchina.txt: 3768) .laogu.com/my/ad -# ||laogu.com/laogubbs/my/ (easylistchina+easylist.txt: 3776) +# ||laogu.com/laogubbs/my/ (easylistchina.txt: 3767) .laogu.com/laogubbs/my/ -# ||laod.cn/wp-content/uploads/*/AD (easylistchina+easylist.txt: 3775) +# ||laod.cn/wp-content/uploads/*/AD (easylistchina.txt: 3766) .laod.cn/wp-content/uploads/.*/AD -# ||lanxicy.com/images/rili.gif (easylistchina+easylist.txt: 3774) +# ||lanxicy.com/images/rili.gif (easylistchina.txt: 3765) .lanxicy.com/images/rili\.gif -# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina+easylist.txt: 3773) +# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina.txt: 3764) .lanrenzhijia.com/uploads/ibeifeng -# ||langya.cn/images/ad_down.js (easylistchina+easylist.txt: 3772) +# ||langya.cn/images/ad_down.js (easylistchina.txt: 3763) .langya.cn/images/ad_down\.js -# ||langya.cn/2014html/ad/ (easylistchina+easylist.txt: 3771) +# ||langya.cn/2014html/ad/ (easylistchina.txt: 3762) .langya.cn/2014html/ad/ -# ||langya.cn/2014html/2014ad_ (easylistchina+easylist.txt: 3770) +# ||langya.cn/2014html/2014ad_ (easylistchina.txt: 3761) .langya.cn/2014html/2014ad_ -# ||langxi.org/langxi/*900$image,object (easylistchina+easylist.txt: 3769) +# ||langxi.org/langxi/*900$image,object (easylistchina.txt: 3760) .langxi.org/langxi/.*900 -# ||language-center.com.tw/udn/ (easylistchina+easylist.txt: 3768) +# ||language-center.com.tw/udn/ (easylistchina.txt: 3759) .language-center.com.tw/udn/ -# ||landiannews.com/tui/ (easylistchina+easylist.txt: 3767) +# ||landiannews.com/tui/ (easylistchina.txt: 3758) .landiannews.com/tui/ -# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina+easylist.txt: 3766) +# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina.txt: 3757) .lancdn.com/diannet/media1/diannet_tool_336_280_ -# ||laixi.com/tp/20 (easylistchina+easylist.txt: 3765) +# ||laixi.com/tp/20 (easylistchina.txt: 3756) .laixi.com/tp/20 -# ||lagou.com/js/cooperation/ (easylistchina+easylist.txt: 3764) +# ||lagou.com/js/cooperation/ (easylistchina.txt: 3755) .lagou.com/js/cooperation/ -# ||lady8844.com/IMAGE/$~image (easylistchina+easylist.txt: 3763) +# ||lady8844.com/IMAGE/$~image (easylistchina.txt: 3754) .lady8844.com/IMAGE/ -# ||lady1314.com.cn/addata/ (easylistchina+easylist.txt: 3762) +# ||lady1314.com.cn/addata/ (easylistchina.txt: 3753) .lady1314.com.cn/addata/ -# ||lady100.net/top.js (easylistchina+easylist.txt: 3761) +# ||lady100.net/top.js (easylistchina.txt: 3752) .lady100.net/top\.js -# ||lady100.net/760-90.js (easylistchina+easylist.txt: 3760) +# ||lady100.net/760-90.js (easylistchina.txt: 3751) .lady100.net/760-90\.js -# ||l7po.com/templates/ff_style/led/ (easylistchina+easylist.txt: 3759) +# ||l7po.com/templates/ff_style/led/ (easylistchina.txt: 3750) .l7po.com/templates/ff_style/led/ -# ||l7po.com/images/tree/ (easylistchina+easylist.txt: 3758) +# ||l7po.com/images/tree/ (easylistchina.txt: 3749) .l7po.com/images/tree/ -# ||l.qq.com/lview? (easylistchina+easylist.txt: 3757) +# ||l.qq.com/lview? (easylistchina.txt: 3748) .l.qq.com/lview\? -# ||kz222.com^$script (easylistchina+easylist.txt: 3756) -.kz222.com -# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina+easylist.txt: 3755) +# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina.txt: 3747) .kyocdn.com/upload/1316059709x983128031\.gif -# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina+easylist.txt: 3754) +# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina.txt: 3746) .kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv\.jpg -# ||kviso.com/ddnew/kviso (easylistchina+easylist.txt: 3753) +# ||kviso.com/ddnew/kviso (easylistchina.txt: 3745) .kviso.com/ddnew/kviso -# ||kutj.com/*/*x80.jpg (easylistchina+easylist.txt: 3752) +# ||kutj.com/*/*x80.jpg (easylistchina.txt: 3744) .kutj.com/.*/.*x80\.jpg -# ||kukudm.com/js/play- (easylistchina+easylist.txt: 3751) +# ||kukudm.com/js/play- (easylistchina.txt: 3743) .kukudm.com/js/play- -# ||kukudm.com/js/comic- (easylistchina+easylist.txt: 3750) +# ||kukudm.com/js/comic- (easylistchina.txt: 3742) .kukudm.com/js/comic- -# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina+easylist.txt: 3749) -# ||kuaihou.com/c/you1.js (easylistchina+easylist.txt: 3748) +# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina.txt: 3741) +# ||kuaihou.com/c/you1.js (easylistchina.txt: 3740) .kuaihou.com/c/you1\.js -# ||kuaihou.com/c/shuoming.js (easylistchina+easylist.txt: 3747) +# ||kuaihou.com/c/shuoming.js (easylistchina.txt: 3739) .kuaihou.com/c/shuoming\.js -# ||kuaihei.com/js/xiazaishang.js (easylistchina+easylist.txt: 3746) +# ||kuaihei.com/js/xiazaishang.js (easylistchina.txt: 3738) .kuaihei.com/js/xiazaishang\.js -# ||kuaihei.com/js/view.js (easylistchina+easylist.txt: 3745) +# ||kuaihei.com/js/view.js (easylistchina.txt: 3737) .kuaihei.com/js/view\.js -# ||kuaihei.com/js/980 (easylistchina+easylist.txt: 3744) +# ||kuaihei.com/js/980 (easylistchina.txt: 3736) .kuaihei.com/js/980 -# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina+easylist.txt: 3743) +# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina.txt: 3735) .ku6cdn.com/comm/v/0\.1\.0/mm\.png -# ||ku6.com^*/index.shtml (easylistchina+easylist.txt: 3742) +# ||ku6.com^*/index.shtml (easylistchina.txt: 3734) .ku6.com/.*/index\.shtml -# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina+easylist.txt: 3741) +# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina.txt: 3733) .ktzhk.com/plugins/cache_template/adv_3b2g\.js -# ||ktzhk.com/file/adv/ (easylistchina+easylist.txt: 3740) +# ||ktzhk.com/file/adv/ (easylistchina.txt: 3732) .ktzhk.com/file/adv/ -# ||ktkkt.com/js/cnbeta/ (easylistchina+easylist.txt: 3739) +# ||ktkkt.com/js/cnbeta/ (easylistchina.txt: 3731) .ktkkt.com/js/cnbeta/ -# ||kt51.com/app.js (easylistchina+easylist.txt: 3738) +# ||kt51.com/app.js (easylistchina.txt: 3730) .kt51.com/app\.js -# ||ksvcd.com/images/ (easylistchina+easylist.txt: 3737) +# ||ksvcd.com/images/ (easylistchina.txt: 3729) .ksvcd.com/images/ -# ||ks.js.cn*/yytf/$object,script (easylistchina+easylist.txt: 3736) +# ||ks.js.cn*/yytf/$object,script (easylistchina.txt: 3728) .ks.js.cn*./(.*/)?yytf/ -# ||kp52.cc/data/attachment/portal/ (easylistchina+easylist.txt: 3735) +# ||kp52.cc/data/attachment/portal/ (easylistchina.txt: 3727) .kp52.cc/data/attachment/portal/ -# ||koopan.com/%5Cad/ (easylistchina+easylist.txt: 3734) +# ||koopan.com/%5Cad/ (easylistchina.txt: 3726) .koopan.com/%5Cad/ -# ||knnwdyou.com^ (easylistchina+easylist.txt: 3733) +# ||knnwdyou.com^ (easylistchina.txt: 3725) .knnwdyou.com -# ||kmplayer.cn/include/jscript/*-b.js (easylistchina+easylist.txt: 3732) +# ||kmplayer.cn/include/jscript/*-b.js (easylistchina.txt: 3724) .kmplayer.cn/include/jscript/.*-b\.js -# ||kmplayer.cn/include/jscript/*-a.js (easylistchina+easylist.txt: 3731) +# ||kmplayer.cn/include/jscript/*-a.js (easylistchina.txt: 3723) .kmplayer.cn/include/jscript/.*-a\.js -# ||klss.cn/jc/ (easylistchina+easylist.txt: 3730) +# ||klss.cn/jc/ (easylistchina.txt: 3722) .klss.cn/jc/ -# ||klgwdh.com/pp.php (easylistchina+easylist.txt: 3729) +# ||klgwdh.com/pp.php (easylistchina.txt: 3721) .klgwdh.com/pp\.php -# ||kkkmh.com/javascripts/abcde/ (easylistchina+easylist.txt: 3728) +# ||kkkmh.com/javascripts/abcde/ (easylistchina.txt: 3720) .kkkmh.com/javascripts/abcde/ -# ||kkkmh.com/iframe/ (easylistchina+easylist.txt: 3727) +# ||kkkmh.com/iframe/ (easylistchina.txt: 3719) .kkkmh.com/iframe/ -# ||kk55.net/beitou.js (easylistchina+easylist.txt: 3726) +# ||kk55.net/beitou.js (easylistchina.txt: 3718) .kk55.net/beitou\.js -# ||kikicici.com/up_files/2013-11-25/ (easylistchina+easylist.txt: 3725) +# ||kikicici.com/up_files/2013-11-25/ (easylistchina.txt: 3717) .kikicici.com/up_files/2013-11-25/ -# ||kiees.cn/img/nz.png (easylistchina+easylist.txt: 3724) +# ||kiees.cn/img/nz.png (easylistchina.txt: 3716) .kiees.cn/img/nz\.png -# ||kiees.cn/img/jm.png (easylistchina+easylist.txt: 3723) +# ||kiees.cn/img/jm.png (easylistchina.txt: 3715) .kiees.cn/img/jm\.png -# ||kfs.io/article5/global/*/original.gif (easylistchina+easylist.txt: 3722) +# ||kfs.io/article5/global/*/original.gif (easylistchina.txt: 3714) .kfs.io/article5/global/.*/original\.gif -# ||kf.abab.com/index.php? (easylistchina+easylist.txt: 3721) +# ||kf.abab.com/index.php? (easylistchina.txt: 3713) .kf.abab.com/index\.php\? -# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina+easylist.txt: 3720) +# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina.txt: 3712) .keywin.org/templates/kw_v2/images/youbianad\.png -# ||key8.com/cache/www/banner_ (easylistchina+easylist.txt: 3719) +# ||key8.com/cache/www/banner_ (easylistchina.txt: 3711) .key8.com/cache/www/banner_ -# ||kelepan.com/yunfaka.gif (easylistchina+easylist.txt: 3718) +# ||kelepan.com/yunfaka.gif (easylistchina.txt: 3710) .kelepan.com/yunfaka\.gif -# ||kelepan.com/cp (easylistchina+easylist.txt: 3717) +# ||kelepan.com/cp (easylistchina.txt: 3709) .kelepan.com/cp -# ||kekenet.com/images/*990 (easylistchina+easylist.txt: 3716) +# ||kekenet.com/images/*990 (easylistchina.txt: 3708) .kekenet.com/images/.*990 -# ||kekenet.com/images/*980 (easylistchina+easylist.txt: 3715) +# ||kekenet.com/images/*980 (easylistchina.txt: 3707) .kekenet.com/images/.*980 -# ||kekenet.com/Images/*/tom640X40.gif (easylistchina+easylist.txt: 3714) +# ||kekenet.com/Images/*/tom640X40.gif (easylistchina.txt: 3706) .kekenet.com/Images/.*/tom640X40\.gif -# ||kekenet.com/images/*/tom468X60.gif (easylistchina+easylist.txt: 3713) +# ||kekenet.com/images/*/tom468X60.gif (easylistchina.txt: 3705) .kekenet.com/images/.*/tom468X60\.gif -# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina+easylist.txt: 3712) +# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina.txt: 3704) .kdhome.net/templets/default/img/bottomadv\.jpg -# ||kcjc.net/data/attachment/portal/ (easylistchina+easylist.txt: 3711) +# ||kcjc.net/data/attachment/portal/ (easylistchina.txt: 3703) .kcjc.net/data/attachment/portal/ -# ||kcjc.net/960$image (easylistchina+easylist.txt: 3710) +# ||kcjc.net/960$image (easylistchina.txt: 3702) .kcjc.net/960 -# ||kanpp.net/Uploads/ad/ (easylistchina+easylist.txt: 3709) +# ||kanpp.net/Uploads/ad/ (easylistchina.txt: 3701) .kanpp.net/Uploads/ad/ -# ||kankanmi.com/js/zjgg (easylistchina+easylist.txt: 3708) +# ||kankanmi.com/js/zjgg (easylistchina.txt: 3700) .kankanmi.com/js/zjgg -# ||kan84.net/js/bdgg/ (easylistchina+easylist.txt: 3707) +# ||kan84.net/js/bdgg/ (easylistchina.txt: 3699) .kan84.net/js/bdgg/ -# ||kan300.com/js/union/ (easylistchina+easylist.txt: 3706) +# ||kan300.com/js/union/ (easylistchina.txt: 3698) .kan300.com/js/union/ -# ||kamlm.com/kmgg (easylistchina+easylist.txt: 3705) +# ||kamlm.com/kmgg (easylistchina.txt: 3697) .kamlm.com/kmgg -# ||kaixin001.com.cn/js/cpm- (easylistchina+easylist.txt: 3704) +# ||kaixin001.com.cn/js/cpm- (easylistchina.txt: 3696) .kaixin001.com.cn/js/cpm- -# ||kaikaimao.net/static/zx.jpg (easylistchina+easylist.txt: 3703) +# ||kaikaimao.net/static/zx.jpg (easylistchina.txt: 3695) .kaikaimao.net/static/zx\.jpg -# ||k886.net/comic-toplist (easylistchina+easylist.txt: 3702) +# ||k886.net/comic-toplist (easylistchina.txt: 3694) .k886.net/comic-toplist -# ||k7mm.com/js/t*.js (easylistchina+easylist.txt: 3701) +# ||k7mm.com/js/t*.js (easylistchina.txt: 3693) .k7mm.com/js/t.*\.js -# ||k618.cn/tlgg/ (easylistchina+easylist.txt: 3700) +# ||k618.cn/tlgg/ (easylistchina.txt: 3692) .k618.cn/tlgg/ -# ||k618.cn/gg$image (easylistchina+easylist.txt: 3699) +# ||k618.cn/gg$image (easylistchina.txt: 3691) .k618.cn/gg -# ||jznews.com.cn/js/topad (easylistchina+easylist.txt: 3697) +# ||jznews.com.cn/js/topad (easylistchina.txt: 3689) .jznews.com.cn/js/topad -# ||jznews.com.cn/js/n_two.js (easylistchina+easylist.txt: 3696) +# ||jznews.com.cn/js/n_two.js (easylistchina.txt: 3688) .jznews.com.cn/js/n_two\.js -# ||jznews.com.cn/js/adtwo.js (easylistchina+easylist.txt: 3695) +# ||jznews.com.cn/js/adtwo.js (easylistchina.txt: 3687) .jznews.com.cn/js/adtwo\.js -# ||jznews.com.cn/js/*_tc.js (easylistchina+easylist.txt: 3694) +# ||jznews.com.cn/js/*_tc.js (easylistchina.txt: 3686) .jznews.com.cn/js/.*_tc\.js -# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina+easylist.txt: 3693) +# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina.txt: 3685) .jznews.com.cn/comnews/js/ad_tanchuang\.js -# ||jzhome.cn/Public/Js/top.js (easylistchina+easylist.txt: 3692) +# ||jzhome.cn/Public/Js/top.js (easylistchina.txt: 3684) .jzhome.cn/Public/Js/top\.js -# ||jzhome.cn/Public/images/jyt.gif (easylistchina+easylist.txt: 3691) +# ||jzhome.cn/Public/images/jyt.gif (easylistchina.txt: 3683) .jzhome.cn/Public/images/jyt\.gif -# ||jz5u.com/new/ (easylistchina+easylist.txt: 3690) +# ||jz5u.com/new/ (easylistchina.txt: 3682) .jz5u.com/new/ -# ||jz5u.com/js/tl$script (easylistchina+easylist.txt: 3689) +# ||jz5u.com/js/tl$script (easylistchina.txt: 3681) .jz5u.com/js/tl -# ||jz123.cn/kanli/ (easylistchina+easylist.txt: 3688) +# ||jz123.cn/kanli/ (easylistchina.txt: 3680) .jz123.cn/kanli/ -# ||jxold.com/index.php?m=poster& (easylistchina+easylist.txt: 3687) +# ||jxold.com/index.php?m=poster& (easylistchina.txt: 3679) .jxold.com/index\.php\?m=poster& -# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina+easylist.txt: 3686) +# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina.txt: 3678) .jxnews.com.cn/jxcn/con_ad_title\.js -# ||jxgdw.com/images/jdgg.jpg (easylistchina+easylist.txt: 3685) +# ||jxgdw.com/images/jdgg.jpg (easylistchina.txt: 3677) .jxgdw.com/images/jdgg\.jpg -# ||jxgdw.com/2013images/ad/ (easylistchina+easylist.txt: 3684) +# ||jxgdw.com/2013images/ad/ (easylistchina.txt: 3676) .jxgdw.com/2013images/ad/ -# ||jxdown.com/statics/js/all.js (easylistchina+easylist.txt: 3683) +# ||jxdown.com/statics/js/all.js (easylistchina.txt: 3675) .jxdown.com/statics/js/all\.js -# ||jxcn.cn/js/hotpic_ (easylistchina+easylist.txt: 3682) +# ||jxcn.cn/js/hotpic_ (easylistchina.txt: 3674) .jxcn.cn/js/hotpic_ -# ||jxcn.cn/images/banner/ (easylistchina+easylist.txt: 3681) +# ||jxcn.cn/images/banner/ (easylistchina.txt: 3673) .jxcn.cn/images/banner/ -# ||jxad.jx163.com^ (easylistchina+easylist.txt: 3680) +# ||jxad.jx163.com^ (easylistchina.txt: 3672) .jxad.jx163.com -# ||jx.xinhuanet.com/*banner/ (easylistchina+easylist.txt: 3679) +# ||jx.xinhuanet.com/*banner/ (easylistchina.txt: 3671) .jx.xinhuanet.com/.*banner/ -# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina+easylist.txt: 3678) +# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina.txt: 3670) .juxiangyou.com/images/tgsc/960x80\.gif -# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina+easylist.txt: 3677) +# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina.txt: 3669) .juxiangyou.com/images/tgsc/250x250\.gif -# ||juxia.com/public/js/juxia.js (easylistchina+easylist.txt: 3676) +# ||juxia.com/public/js/juxia.js (easylistchina.txt: 3668) .juxia.com/public/js/juxia\.js -# ||juxia.com/public/js/foot.js (easylistchina+easylist.txt: 3675) +# ||juxia.com/public/js/foot.js (easylistchina.txt: 3667) .juxia.com/public/js/foot\.js -# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina+easylist.txt: 3674) +# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina.txt: 3666) .junpinzhi.cn/qixing365/attachment/portal/ -# ||juksy.com/scripts/jquery.blockUI.js (easylistchina+easylist.txt: 3672) +# ||juksy.com/scripts/jquery.blockUI.js (easylistchina.txt: 3664) .juksy.com/scripts/jquery\.blockUI\.js -# ||jtyskq.com^*/js/_a.js (easylistchina+easylist.txt: 3671) +# ||jtyskq.com^*/js/_a.js (easylistchina.txt: 3663) .jtyskq.com/.*/js/_a\.js -# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina+easylist.txt: 3670) +# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina.txt: 3662) .jthysh.com/uploadfile/poster/trt\.swf -# ||jswangpan.com/haha728.gif (easylistchina+easylist.txt: 3669) +# ||jswangpan.com/haha728.gif (easylistchina.txt: 3661) .jswangpan.com/haha728\.gif -# ||jswangpan.com/3*.gif (easylistchina+easylist.txt: 3668) +# ||jswangpan.com/3*.gif (easylistchina.txt: 3660) .jswangpan.com/3.*\.gif -# ||jsw.com.cn^*/index.htm (easylistchina+easylist.txt: 3667) +# ||jsw.com.cn^*/index.htm (easylistchina.txt: 3659) .jsw.com.cn/.*/index\.htm -# ||jstv.com/static_files/zones/87/ (easylistchina+easylist.txt: 3666) +# ||jstv.com/static_files/zones/87/ (easylistchina.txt: 3658) .jstv.com/static_files/zones/87/ -# ||jstv.com/static_files/zones/165/165.js (easylistchina+easylist.txt: 3665) +# ||jstv.com/static_files/zones/165/165.js (easylistchina.txt: 3657) .jstv.com/static_files/zones/165/165\.js -# ||jstv.com//static_files/zones/132/132.js (easylistchina+easylist.txt: 3664) -# ||jsshuba.com/js/tongji.js (easylistchina+easylist.txt: 3663) +# ||jstv.com//static_files/zones/132/132.js (easylistchina.txt: 3656) +# ||jsshuba.com/js/tongji.js (easylistchina.txt: 3655) .jsshuba.com/js/tongji\.js -# ||jsshuba.com/js/gg.js (easylistchina+easylist.txt: 3662) +# ||jsshuba.com/js/gg.js (easylistchina.txt: 3654) .jsshuba.com/js/gg\.js -# ||jsshuba.com/js/bdhengfu.js (easylistchina+easylist.txt: 3661) +# ||jsshuba.com/js/bdhengfu.js (easylistchina.txt: 3653) .jsshuba.com/js/bdhengfu\.js -# ||js0573.com/images/cus/ (easylistchina+easylist.txt: 3660) +# ||js0573.com/images/cus/ (easylistchina.txt: 3652) .js0573.com/images/cus/ -# ||js.youxi369.com^ (easylistchina+easylist.txt: 3659) +# ||js.youxi369.com^ (easylistchina.txt: 3651) .js.youxi369.com -# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina+easylist.txt: 3658) +# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina.txt: 3650) .js.tv.itc.cn/site/play/v.*/vip_discount_ -# ||js.tv.itc.cn/gg$script (easylistchina+easylist.txt: 3657) +# ||js.tv.itc.cn/gg$script (easylistchina.txt: 3649) .js.tv.itc.cn/gg -# ||js.tlt.cn/js/ (easylistchina+easylist.txt: 3656) +# ||js.tlt.cn/js/ (easylistchina.txt: 3648) .js.tlt.cn/js/ -# ||js.shiwt.com/110.js (easylistchina+easylist.txt: 3655) +# ||js.shiwt.com/110.js (easylistchina.txt: 3647) .js.shiwt.com/110\.js -# ||js.pub.tom.com^ (easylistchina+easylist.txt: 3654) +# ||js.pub.tom.com^ (easylistchina.txt: 3646) .js.pub.tom.com -# ||js.mumayi.net/jiujiang (easylistchina+easylist.txt: 3653) +# ||js.mumayi.net/jiujiang (easylistchina.txt: 3645) .js.mumayi.net/jiujiang -# ||js.mumayi.net/9495.gif (easylistchina+easylist.txt: 3652) +# ||js.mumayi.net/9495.gif (easylistchina.txt: 3644) .js.mumayi.net/9495\.gif -# ||js.mumayi.net/76090.gif (easylistchina+easylist.txt: 3651) +# ||js.mumayi.net/76090.gif (easylistchina.txt: 3643) .js.mumayi.net/76090\.gif -# ||js.leshen.com^ (easylistchina+easylist.txt: 3650) +# ||js.leshen.com^ (easylistchina.txt: 3642) .js.leshen.com -# ||js.duotegame.com^ (easylistchina+easylist.txt: 3649) +# ||js.duotegame.com^ (easylistchina.txt: 3641) .js.duotegame.com -# ||js.4738.com/newda/img/994_90_ (easylistchina+easylist.txt: 3648) +# ||js.bxwns.com^ (easylistchina.txt: 3640) +.js.bxwns.com +# ||js.bju888.com^ (easylistchina.txt: 3639) +.js.bju888.com +# ||js.4738.com/newda/img/994_90_ (easylistchina.txt: 3638) .js.4738.com/newda/img/994_90_ -# ||js-1.pchome.net^ (easylistchina+easylist.txt: 3647) +# ||js-1.pchome.net^ (easylistchina.txt: 3637) .js-1.pchome.net -# ||jrjimg.cn/homev2/ad/ (easylistchina+easylist.txt: 3646) +# ||jrjimg.cn/homev2/ad/ (easylistchina.txt: 3636) .jrjimg.cn/homev2/ad/ -# ||jrjimg.cn/aigu/adcj.jpg (easylistchina+easylist.txt: 3645) +# ||jrjimg.cn/aigu/adcj.jpg (easylistchina.txt: 3635) .jrjimg.cn/aigu/adcj\.jpg -# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina+easylist.txt: 3644) +# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina.txt: 3634) .jrj.com.cn/iframe/zjgjs\.html\? -# ||jq22.com/assets/ad.png (easylistchina+easylist.txt: 3643) +# ||jq22.com/assets/ad.png (easylistchina.txt: 3633) .jq22.com/assets/ad\.png -# ||jpwind.com^*/scroll.js (easylistchina+easylist.txt: 3642) +# ||jpwind.com^*/scroll.js (easylistchina.txt: 3632) .jpwind.com/.*/scroll\.js -# ||jpwind.com/images/partner/ (easylistchina+easylist.txt: 3641) +# ||jpwind.com/images/partner/ (easylistchina.txt: 3631) .jpwind.com/images/partner/ -# ||jpseek.com/pr/click2.jpg (easylistchina+easylist.txt: 3639) +# ||jpskb.com/Img/dianyuan.gif (easylistchina.txt: 3629) +.jpskb.com/Img/dianyuan\.gif +# ||jpskb.com/Img/7day_ (easylistchina.txt: 3628) +.jpskb.com/Img/7day_ +# ||jpskb.com/Img/439911.jpg (easylistchina.txt: 3627) +.jpskb.com/Img/439911\.jpg +# ||jpskb.com/Img/*_ad_ (easylistchina.txt: 3626) +.jpskb.com/Img/.*_ad_ +# ||jpseek.com/pr/click2.jpg (easylistchina.txt: 3625) .jpseek.com/pr/click2\.jpg -# ||joyes.com/image/06.jpg (easylistchina+easylist.txt: 3638) +# ||joyes.com/image/06.jpg (easylistchina.txt: 3624) .joyes.com/image/06\.jpg -# ||jobtong.com/openSiteAd? (easylistchina+easylist.txt: 3637) +# ||jobtong.com/openSiteAd? (easylistchina.txt: 3623) .jobtong.com/openSiteAd\? -# ||jnnews.tv/indexad/ (easylistchina+easylist.txt: 3636) +# ||jnnews.tv/indexad/ (easylistchina.txt: 3622) .jnnews.tv/indexad/ -# ||jn256.com^*_gg (easylistchina+easylist.txt: 3635) +# ||jn256.com^*_gg (easylistchina.txt: 3621) .jn256.com/.*_gg -# ||jn256.com^*/index_fu (easylistchina+easylist.txt: 3634) +# ||jn256.com^*/index_fu (easylistchina.txt: 3620) .jn256.com/.*/index_fu -# ||jn256.com/gg_index/ (easylistchina+easylist.txt: 3633) +# ||jn256.com/gg_index/ (easylistchina.txt: 3619) .jn256.com/gg_index/ -# ||jmsyzj.com^ (easylistchina+easylist.txt: 3632) +# ||jmsyzj.com^ (easylistchina.txt: 3618) .jmsyzj.com -# ||jmhfw.com/zt/*.swf (easylistchina+easylist.txt: 3631) +# ||jmhfw.com/zt/*.swf (easylistchina.txt: 3617) .jmhfw.com/zt/.*\.swf -# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina+easylist.txt: 3630) +# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina.txt: 3616) .jmhfw.com/index\.php\?/ajax/get_adv/ -# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina+easylist.txt: 3629) +# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina.txt: 3615) .jlpcn.net/template/paody/aaaa/all-top\.js -# ||jkforum.net/template/default/common/attachAD (easylistchina+easylist.txt: 3628) +# ||jkforum.net/template/default/common/attachAD (easylistchina.txt: 3614) .jkforum.net/template/default/common/attachAD -# ||jjwxc.net/images/wap/wap.gif (easylistchina+easylist.txt: 3627) +# ||jjwxc.net/images/wap/wap.gif (easylistchina.txt: 3613) .jjwxc.net/images/wap/wap\.gif -# ||jjjgame.com/images/ad11.jpg (easylistchina+easylist.txt: 3626) +# ||jjjgame.com/images/ad11.jpg (easylistchina.txt: 3612) .jjjgame.com/images/ad11\.jpg -# ||jjjaaa.com/aaa/ (easylistchina+easylist.txt: 3625) +# ||jjjaaa.com/aaa/ (easylistchina.txt: 3611) .jjjaaa.com/aaa/ -# ||jjbt4.com/600x60.gif (easylistchina+easylist.txt: 3624) +# ||jjbt4.com/600x60.gif (easylistchina.txt: 3610) .jjbt4.com/600x60\.gif -# ||jj59.com/sy/ibanner.js (easylistchina+easylist.txt: 3623) +# ||jj59.com/sy/ibanner.js (easylistchina.txt: 3609) .jj59.com/sy/ibanner\.js -# ||jj59.com/sy/banner.js (easylistchina+easylist.txt: 3622) +# ||jj59.com/sy/banner.js (easylistchina.txt: 3608) .jj59.com/sy/banner\.js -# ||jj20.com/js/yx (easylistchina+easylist.txt: 3621) +# ||jj20.com/js/yx (easylistchina.txt: 3607) .jj20.com/js/yx -# ||jj20.com/js/x (easylistchina+easylist.txt: 3620) +# ||jj20.com/js/x (easylistchina.txt: 3606) .jj20.com/js/x -# ||jj20.com/images/960-60.gif (easylistchina+easylist.txt: 3619) +# ||jj20.com/images/960-60.gif (easylistchina.txt: 3605) .jj20.com/images/960-60\.gif -# ||jj.5ccc.net/scripts/new/ (easylistchina+easylist.txt: 3618) +# ||jj.5ccc.net/scripts/new/ (easylistchina.txt: 3604) .jj.5ccc.net/scripts/new/ -# ||jiyingdm.com/js/loadingshow.html (easylistchina+easylist.txt: 3617) +# ||jiyingdm.com/js/loadingshow.html (easylistchina.txt: 3603) .jiyingdm.com/js/loadingshow\.html -# ||jiujiure.com/media/banners/ (easylistchina+easylist.txt: 3616) -.jiujiure.com/media/banners/ -# ||jitapu.com/inc/adv (easylistchina+easylist.txt: 3615) +# ||jitapu.com/inc/adv (easylistchina.txt: 3602) .jitapu.com/inc/adv -# ||jisuxz.com/2747/ (easylistchina+easylist.txt: 3614) +# ||jisuxz.com/2747/ (easylistchina.txt: 3601) .jisuxz.com/2747/ -# ||jirou.com/plus/mytag_js.php (easylistchina+easylist.txt: 3613) +# ||jirou.com/plus/mytag_js.php (easylistchina.txt: 3600) .jirou.com/plus/mytag_js\.php -# ||jinzhuedu.com/k/img/swt.png (easylistchina+easylist.txt: 3612) +# ||jinzhuedu.com/k/img/swt.png (easylistchina.txt: 3599) .jinzhuedu.com/k/img/swt\.png -# ||jinyici.com/qq.js (easylistchina+easylist.txt: 3611) +# ||jinyici.com/qq.js (easylistchina.txt: 3598) .jinyici.com/qq\.js -# ||jinhongweiqi.com/cache/ads.js (easylistchina+easylist.txt: 3610) +# ||jinhongweiqi.com/cache/ads.js (easylistchina.txt: 3597) .jinhongweiqi.com/cache/ads\.js -# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina+easylist.txt: 3609) +# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina.txt: 3596) .jinghua.cn/lib/js/news/ad_jh\.html -# ||jinbw.com.cn/img/ (easylistchina+easylist.txt: 3608) +# ||jinbw.com.cn/img/ (easylistchina.txt: 3595) .jinbw.com.cn/img/ -# ||jiasule.com/static/js/http_error.js (easylistchina+easylist.txt: 3607) +# ||jiasule.com/static/js/http_error.js (easylistchina.txt: 3594) .jiasule.com/static/js/http_error\.js -# ||jiasuba.com/js/jjrjtg.js (easylistchina+easylist.txt: 3606) +# ||jiasuba.com/js/jjrjtg.js (easylistchina.txt: 3593) .jiasuba.com/js/jjrjtg\.js -# ||jiaoyu.baidu.com/tieba/ (easylistchina+easylist.txt: 3605) +# ||jiaoyu.baidu.com/tieba/ (easylistchina.txt: 3592) .jiaoyu.baidu.com/tieba/ -# ||jiaonan.net/index.php?m=poster& (easylistchina+easylist.txt: 3603) +# ||jiaonan.net/index.php?m=poster& (easylistchina.txt: 3590) .jiaonan.net/index\.php\?m=poster& -# ||jiaodong.net/a/js/ (easylistchina+easylist.txt: 3602) +# ||jiaodong.net/a/js/ (easylistchina.txt: 3589) .jiaodong.net/a/js/ -# ||jianshen114.com/images/Advistings/ (easylistchina+easylist.txt: 3601) +# ||jianshen114.com/images/Advistings/ (easylistchina.txt: 3588) .jianshen114.com/images/Advistings/ -# ||jianhucheng.com/data/attachment/portal/ (easylistchina+easylist.txt: 3600) +# ||jianhucheng.com/data/attachment/portal/ (easylistchina.txt: 3587) .jianhucheng.com/data/attachment/portal/ -# ||jiangcao.com/pic/ (easylistchina+easylist.txt: 3599) +# ||jianglishi.cn/app/static/images/ad_ (easylistchina.txt: 3586) +.jianglishi.cn/app/static/images/ad_ +# ||jiangcao.com/pic/ (easylistchina.txt: 3585) .jiangcao.com/pic/ -# ||jiancai365.cn/lbad.gif (easylistchina+easylist.txt: 3598) +# ||jiancai365.cn/lbad.gif (easylistchina.txt: 3584) .jiancai365.cn/lbad\.gif -# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina+easylist.txt: 3597) +# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina.txt: 3583) .jgzj.net/bbs/attachments/month_1111/ -# ||jdxsw.net/js/insidebox.js (easylistchina+easylist.txt: 3596) +# ||jdxsw.net/js/insidebox.js (easylistchina.txt: 3582) .jdxsw.net/js/insidebox\.js -# ||jdxsw.net/201400/ (easylistchina+easylist.txt: 3595) +# ||jdxsw.net/201400/ (easylistchina.txt: 3581) .jdxsw.net/201400/ -# ||jdcjsr.com^*/jdcgg/ (easylistchina+easylist.txt: 3594) +# ||jdcjsr.com^*/jdcgg/ (easylistchina.txt: 3580) .jdcjsr.com/.*/jdcgg/ -# ||jdcjsr.com/images/zzgg/ (easylistchina+easylist.txt: 3593) +# ||jdcjsr.com/images/zzgg/ (easylistchina.txt: 3579) .jdcjsr.com/images/zzgg/ -# ||jd.com/exsites?spread_type= (easylistchina+easylist.txt: 3592) +# ||jd.com/exsites?spread_type= (easylistchina.txt: 3578) .jd.com/exsites\?spread_type= -# ||jbyf.net^*_Ad/ (easylistchina+easylist.txt: 3591) +# ||jbyf.net^*_Ad/ (easylistchina.txt: 3577) .jbyf.net/.*_Ad/ -# ||jbyf.net/JS/9 (easylistchina+easylist.txt: 3590) +# ||jbyf.net/JS/9 (easylistchina.txt: 3576) .jbyf.net/JS/9 -# ||jbyf.net/JS/6 (easylistchina+easylist.txt: 3589) +# ||jbyf.net/JS/6 (easylistchina.txt: 3575) .jbyf.net/JS/6 -# ||jbyf.net/JS/1 (easylistchina+easylist.txt: 3588) +# ||jbyf.net/JS/1 (easylistchina.txt: 3574) .jbyf.net/JS/1 -# ||jb51.net/js/Dowplayjb51 (easylistchina+easylist.txt: 3587) +# ||jb51.net/js/Dowplayjb51 (easylistchina.txt: 3573) .jb51.net/js/Dowplayjb51 -# ||jb51.net/2012js/ (easylistchina+easylist.txt: 3586) +# ||jb51.net/2012js/ (easylistchina.txt: 3572) .jb51.net/2012js/ -# ||javlibrary.com/js/bnr_ (easylistchina+easylist.txt: 3585) +# ||javlibrary.com/js/bnr_ (easylistchina.txt: 3571) .javlibrary.com/js/bnr_ -# ||javlib3.com/js/bnr_ (easylistchina+easylist.txt: 3584) +# ||javlib3.com/js/bnr_ (easylistchina.txt: 3570) .javlib3.com/js/bnr_ -# ||javjunkies.com/FL$subdocument (easylistchina+easylist.txt: 3583) +# ||javjunkies.com/FL$subdocument (easylistchina.txt: 3569) .javjunkies.com/FL -# ||jav2lib.com/js/bnr_ (easylistchina+easylist.txt: 3582) +# ||jav2lib.com/js/bnr_ (easylistchina.txt: 3568) .jav2lib.com/js/bnr_ -# ||jandan.com/static/gggg/ (easylistchina+easylist.txt: 3581) +# ||jandan.com/static/gggg/ (easylistchina.txt: 3567) .jandan.com/static/gggg/ -# ||ja.gamersky.com^ (easylistchina+easylist.txt: 3580) +# ||ja.gamersky.com^ (easylistchina.txt: 3566) .ja.gamersky.com -# ||j.6avz.com^ (easylistchina+easylist.txt: 3579) +# ||j.6avz.com^ (easylistchina.txt: 3565) .j.6avz.com -# ||izzs.cc/wp-content/mm/ (easylistchina+easylist.txt: 3578) +# ||izzs.cc/wp-content/mm/ (easylistchina.txt: 3564) .izzs.cc/wp-content/mm/ -# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina+easylist.txt: 3577) +# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina.txt: 3563) .izt8.com/iztwp/images/hk-250\.jpg -# ||iyejie.com/xydlad.js (easylistchina+easylist.txt: 3576) +# ||iyejie.com/xydlad.js (easylistchina.txt: 3562) .iyejie.com/xydlad\.js -# ||iyejie.com/1024code.gif (easylistchina+easylist.txt: 3575) +# ||iyejie.com/1024code.gif (easylistchina.txt: 3561) .iyejie.com/1024code\.gif -# ||iyaya.info/newmshow.php (easylistchina+easylist.txt: 3574) +# ||iyaya.info/newmshow.php (easylistchina.txt: 3560) .iyaya.info/newmshow\.php -# ||iyaxin.com/assert/js/m.js (easylistchina+easylist.txt: 3573) +# ||iyaxin.com/assert/js/m.js (easylistchina.txt: 3559) .iyaxin.com/assert/js/m\.js -# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina+easylist.txt: 3572) +# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina.txt: 3558) .ixiumei.com/otherhtml/zd800-100\.jpg -# ||iweihai.cn/js/float.js (easylistchina+easylist.txt: 3571) +# ||iweihai.cn/js/float.js (easylistchina.txt: 3557) .iweihai.cn/js/float\.js -# ||iwanad.baidu.com^ (easylistchina+easylist.txt: 3569) +# ||iwanad.baidu.com^ (easylistchina.txt: 3555) .iwanad.baidu.com -# ||ivsoo.com/template/ivsoos.jpg (easylistchina+easylist.txt: 3568) +# ||ivsoo.com/template/ivsoos.jpg (easylistchina.txt: 3554) .ivsoo.com/template/ivsoos\.jpg -# ||itxtbook.com/game/images/kuping (easylistchina+easylist.txt: 3567) +# ||itxtbook.com/game/images/kuping (easylistchina.txt: 3553) .itxtbook.com/game/images/kuping -# ||itv.hexun.com (easylistchina+easylist.txt: 3566) +# ||itv.hexun.com (easylistchina.txt: 3552) .itv.hexun.com*. -# ||itpub.net/popwin_js.php? (easylistchina+easylist.txt: 3565) +# ||itpub.net/popwin_js.php? (easylistchina.txt: 3551) .itpub.net/popwin_js\.php\? -# ||itopdog.cn/js/you.js (easylistchina+easylist.txt: 3564) +# ||itopdog.cn/js/you.js (easylistchina.txt: 3550) .itopdog.cn/js/you\.js -# ||itopdog.cn/itopdog/d*.js (easylistchina+easylist.txt: 3563) +# ||itopdog.cn/itopdog/d*.js (easylistchina.txt: 3549) .itopdog.cn/itopdog/d.*\.js -# ||itongcheng.cc/amm/ (easylistchina+easylist.txt: 3562) +# ||itongcheng.cc/amm/ (easylistchina.txt: 3548) .itongcheng.cc/amm/ -# ||itocp.com/html/gk/topic/topicmain.html (easylistchina+easylist.txt: 3561) +# ||itocp.com/html/gk/topic/topicmain.html (easylistchina.txt: 3547) .itocp.com/html/gk/topic/topicmain\.html -# ||itocp.com/html/gk/*/204x (easylistchina+easylist.txt: 3560) +# ||itocp.com/html/gk/*/204x (easylistchina.txt: 3546) .itocp.com/html/gk/.*/204x -# ||itocp.com/html/gk/*/*x50. (easylistchina+easylist.txt: 3559) +# ||itocp.com/html/gk/*/*x50. (easylistchina.txt: 3545) .itocp.com/html/gk/.*/.*x50\. -# ||itmxc.com/mxckb.gif (easylistchina+easylist.txt: 3558) +# ||itmxc.com/mxckb.gif (easylistchina.txt: 3544) .itmxc.com/mxckb\.gif -# ||itmxc.com/mxc-news/960x (easylistchina+easylist.txt: 3557) +# ||itmxc.com/mxc-news/960x (easylistchina.txt: 3543) .itmxc.com/mxc-news/960x -# ||itmsc.cn/files/*/ad0 (easylistchina+easylist.txt: 3556) +# ||itmsc.cn/files/*/ad0 (easylistchina.txt: 3542) .itmsc.cn/files/.*/ad0 -# ||itjsb.com/file/script/qipai.js (easylistchina+easylist.txt: 3555) +# ||itjsb.com/file/script/qipai.js (easylistchina.txt: 3541) .itjsb.com/file/script/qipai\.js -# ||itjsb.com/file/script/A27.js (easylistchina+easylist.txt: 3554) +# ||itjsb.com/file/script/A27.js (easylistchina.txt: 3540) .itjsb.com/file/script/A27\.js -# ||itjkr.com/upload/ad/ (easylistchina+easylist.txt: 3553) +# ||itjkr.com/upload/ad/ (easylistchina.txt: 3539) .itjkr.com/upload/ad/ -# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina+easylist.txt: 3552) +# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina.txt: 3538) .itiexue.net/.*\.gif\?w=1500&h=1500 -# ||ithome.com/js/win8china.js (easylistchina+easylist.txt: 3551) +# ||itiexue.net/domain-policy/ (easylistchina.txt: 3537) +.itiexue.net/domain-policy/ +# ||ithome.com/js/win8china.js (easylistchina.txt: 3536) .ithome.com/js/win8china\.js -# ||ithome.com/js/win7china.js (easylistchina+easylist.txt: 3550) +# ||ithome.com/js/win7china.js (easylistchina.txt: 3535) .ithome.com/js/win7china\.js -# ||ithome.com/js/recommend.js (easylistchina+easylist.txt: 3549) +# ||ithome.com/js/recommend.js (easylistchina.txt: 3534) .ithome.com/js/recommend\.js -# ||ithome.com/js/money/ (easylistchina+easylist.txt: 3548) +# ||ithome.com/js/money/ (easylistchina.txt: 3533) .ithome.com/js/money/ -# ||ithome.com/js/*/toutiao.js (easylistchina+easylist.txt: 3547) +# ||ithome.com/js/*/toutiao.js (easylistchina.txt: 3532) .ithome.com/js/.*/toutiao\.js -# ||ithome.com/images/v2.3/11index.png (easylistchina+easylist.txt: 3546) +# ||ithome.com/images/v2.3/11index.png (easylistchina.txt: 3531) .ithome.com/images/v2\.3/11index\.png -# ||ithome.com/images/partner/ (easylistchina+easylist.txt: 3545) +# ||ithome.com/images/partner/ (easylistchina.txt: 3530) .ithome.com/images/partner/ -# ||ithome.com/html/$xmlhttprequest (easylistchina+easylist.txt: 3544) +# ||ithome.com/html/$xmlhttprequest (easylistchina.txt: 3529) .ithome.com/html/ -# ||iteye.com/iframe_ggbd/ (easylistchina+easylist.txt: 3543) +# ||iteye.com/iframe_ggbd/ (easylistchina.txt: 3528) .iteye.com/iframe_ggbd/ -# ||itc.cn^*_ad/src/*.swf (easylistchina+easylist.txt: 3541) +# ||itc.cn^*_ad/src/*.swf (easylistchina.txt: 3526) .itc.cn/.*_ad/src/.*\.swf -# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina+easylist.txt: 3540) +# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina.txt: 3525) .itc.cn/activity/activity_js/changyan_config_ -# ||itc.cn/?prod=rtb& (easylistchina+easylist.txt: 3539) +# ||itc.cn/?prod=rtb& (easylistchina.txt: 3524) .itc.cn/\?prod=rtb& -# ||itc.*^prod=ad& (easylistchina+easylist.txt: 3538) +# ||itc.*^prod=ad& (easylistchina.txt: 3523) .itc.*./(.*[^\w%.-])?prod=ad& -# ||itavcn.com/pic/news/*305X80.swf (easylistchina+easylist.txt: 3537) +# ||itavcn.com/pic/news/*305X80.swf (easylistchina.txt: 3522) .itavcn.com/pic/news/.*305X80\.swf -# ||itavcn.com/images/2014/ad_ (easylistchina+easylist.txt: 3536) +# ||itavcn.com/images/2014/ad_ (easylistchina.txt: 3521) .itavcn.com/images/2014/ad_ -# ||itavcn.com/images/2013/ad_ (easylistchina+easylist.txt: 3535) +# ||itavcn.com/images/2013/ad_ (easylistchina.txt: 3520) .itavcn.com/images/2013/ad_ -# ||itavcn.com/images/2012/ad_ (easylistchina+easylist.txt: 3534) +# ||itavcn.com/images/2012/ad_ (easylistchina.txt: 3519) .itavcn.com/images/2012/ad_ -# ||itavcn.com/images/2011/101902.swf (easylistchina+easylist.txt: 3533) +# ||itavcn.com/images/2011/101902.swf (easylistchina.txt: 3518) .itavcn.com/images/2011/101902\.swf -# ||itavcn.com/images/*300300.swf (easylistchina+easylist.txt: 3532) +# ||itavcn.com/images/*300300.swf (easylistchina.txt: 3517) .itavcn.com/images/.*300300\.swf -# ||itavcn.com/images/*-banners722-90. (easylistchina+easylist.txt: 3531) +# ||itavcn.com/images/*-banners722-90. (easylistchina.txt: 3516) .itavcn.com/images/.*-banners722-90\. -# ||italk.yinsha.com/god/ (easylistchina+easylist.txt: 3530) +# ||italk.yinsha.com/god/ (easylistchina.txt: 3515) .italk.yinsha.com/god/ -# ||it168.com/factory/ad/ (easylistchina+easylist.txt: 3529) +# ||it168.com/factory/ad/ (easylistchina.txt: 3514) .it168.com/factory/ad/ -# ||it165.net/index.php?m=poster& (easylistchina+easylist.txt: 3528) +# ||it165.net/index.php?m=poster& (easylistchina.txt: 3513) .it165.net/index\.php\?m=poster& -# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina+easylist.txt: 3527) +# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina.txt: 3512) .it.com.cn/test/cj/2015/03/06/10/1424032881\.jpg -# ||it.com.cn/js/*art (easylistchina+easylist.txt: 3526) +# ||it.com.cn/js/*art (easylistchina.txt: 3511) .it.com.cn/js/.*art -# ||it.com.cn/dy4*/js/youx.js (easylistchina+easylist.txt: 3525) +# ||it.com.cn/dy4*/js/youx.js (easylistchina.txt: 3510) .it.com.cn/dy4.*/js/youx\.js -# ||it.com.cn/dy4*/js/*0 (easylistchina+easylist.txt: 3524) +# ||it.com.cn/dy4*/js/*0 (easylistchina.txt: 3509) .it.com.cn/dy4.*/js/.*0 -# ||isso.com.cn/upload_image/A-D/ (easylistchina+easylist.txt: 3523) +# ||isso.com.cn/upload_image/A-D/ (easylistchina.txt: 3508) .isso.com.cn/upload_image/A-D/ -# ||isso.com.cn/ggimage/*.swf (easylistchina+easylist.txt: 3522) +# ||isso.com.cn/ggimage/*.swf (easylistchina.txt: 3507) .isso.com.cn/ggimage/.*\.swf -# ||isso.com.cn/club/adv2Tools.js (easylistchina+easylist.txt: 3521) +# ||isso.com.cn/club/adv2Tools.js (easylistchina.txt: 3506) .isso.com.cn/club/adv2Tools\.js -# ||ishangman.com/images/aismd/ (easylistchina+easylist.txt: 3520) +# ||ishangman.com/images/aismd/ (easylistchina.txt: 3505) .ishangman.com/images/aismd/ -# ||iqshw.com/d/js/m/thea (easylistchina+easylist.txt: 3519) +# ||iqshw.com/d/js/m/thea (easylistchina.txt: 3504) .iqshw.com/d/js/m/thea -# ||iqiyi.com/show2?a=qc_ (easylistchina+easylist.txt: 3518) +# ||iqiyi.com/show2?a=qc_ (easylistchina.txt: 3503) .iqiyi.com/show2\?a=qc_ -# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina+easylist.txt: 3517) +# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina.txt: 3502) .iqiyi.com/player/cupid/common/flash980100\.swf -# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina+easylist.txt: 3516) +# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina.txt: 3501) .iqiyi.com/player/cupid/.*/pageer\.swf -# ||iqiyi.com/player/common/rebull (easylistchina+easylist.txt: 3515) +# ||iqiyi.com/player/common/rebull (easylistchina.txt: 3500) .iqiyi.com/player/common/rebull -# ||iqiyi.com/player/common/adflash (easylistchina+easylist.txt: 3514) +# ||iqiyi.com/player/common/adflash (easylistchina.txt: 3499) .iqiyi.com/player/common/adflash -# ||iqiyi.com/player/*/bannery.swf (easylistchina+easylist.txt: 3513) +# ||iqiyi.com/player/*/bannery.swf (easylistchina.txt: 3498) .iqiyi.com/player/.*/bannery\.swf -# ||iqiyi.com/player/*/a.swf (easylistchina+easylist.txt: 3512) +# ||iqiyi.com/player/*/a.swf (easylistchina.txt: 3497) .iqiyi.com/player/.*/a\.swf -# ||iqiyi.com/marketing/*/oppo. (easylistchina+easylist.txt: 3511) +# ||iqiyi.com/marketing/*/oppo. (easylistchina.txt: 3496) .iqiyi.com/marketing/.*/oppo\. -# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina+easylist.txt: 3510) +# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina.txt: 3495) .iqiyi.com/common/flashplayer/.*980-100 -# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina+easylist.txt: 3509) +# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina.txt: 3494) .iqiyi.com/common/flashplayer/.*250%C3%97230\.swf -# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina+easylist.txt: 3508) +# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina.txt: 3493) .iqiyi.com/common/flashplayer/.*/pause\.swf -# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina+easylist.txt: 3507) +# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina.txt: 3492) .iqiyi.com/common/flashplayer/.*/pageer\.swf -# ||iqiyi.com/common/flashplayer/*/980 (easylistchina+easylist.txt: 3506) +# ||iqiyi.com/common/flashplayer/*/980 (easylistchina.txt: 3491) .iqiyi.com/common/flashplayer/.*/980 -# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina+easylist.txt: 3505) +# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina.txt: 3490) .iqiyi.com/common/flashplayer/.*-banner- -# ||iqiyi.com/common/flashplayer*_1380x (easylistchina+easylist.txt: 3504) +# ||iqiyi.com/common/flashplayer*_1380x (easylistchina.txt: 3489) .iqiyi.com/common/flashplayer.*_1380x -# ||iq33.com/skin/logo2015/ (easylistchina+easylist.txt: 3503) +# ||iq33.com/skin/logo2015/ (easylistchina.txt: 3488) .iq33.com/skin/logo2015/ -# ||ipeen.com.tw/photo/ad/ (easylistchina+easylist.txt: 3502) +# ||ipeen.com.tw/photo/ad/ (easylistchina.txt: 3487) .ipeen.com.tw/photo/ad/ -# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina+easylist.txt: 3501) +# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina.txt: 3486) .ipeen.com.tw/js/frame/ad-actions\.js -# ||iour.co/wp-content/uploads/ (easylistchina+easylist.txt: 3500) +# ||iour.co/wp-content/uploads/ (easylistchina.txt: 3485) .iour.co/wp-content/uploads/ -# ||iour.co/ads.js (easylistchina+easylist.txt: 3499) +# ||iour.co/ads.js (easylistchina.txt: 3484) .iour.co/ads\.js -# ||iour.co/ad_dl.js (easylistchina+easylist.txt: 3498) +# ||iour.co/ad_dl.js (easylistchina.txt: 3483) .iour.co/ad_dl\.js -# ||inte.sogou.com^ (easylistchina+easylist.txt: 3497) +# ||inte.sogou.com^ (easylistchina.txt: 3482) .inte.sogou.com -# ||inlishui.com/index.php?m=poster& (easylistchina+easylist.txt: 3496) +# ||inlishui.com/index.php?m=poster& (easylistchina.txt: 3481) .inlishui.com/index\.php\?m=poster& -# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina+easylist.txt: 3495) +# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina.txt: 3480) .inhe.net/Uploadfiles/ad_2014/ -# ||inhe.net/javascript/Jsduilian (easylistchina+easylist.txt: 3494) +# ||inhe.net/javascript/Jsduilian (easylistchina.txt: 3479) .inhe.net/javascript/Jsduilian -# ||inhe.net/javascript/ad_js/ (easylistchina+easylist.txt: 3493) +# ||inhe.net/javascript/ad_js/ (easylistchina.txt: 3478) .inhe.net/javascript/ad_js/ -# ||inhe.*/Uploadfiles/adpublish (easylistchina+easylist.txt: 3492) +# ||inhe.*/Uploadfiles/adpublish (easylistchina.txt: 3477) .inhe.*./(.*/)?Uploadfiles/adpublish -# ||info.vip.iqiyi.com/promotion/ (easylistchina+easylist.txt: 3491) +# ||info.vip.iqiyi.com/promotion/ (easylistchina.txt: 3476) .info.vip.iqiyi.com/promotion/ -# ||info.btc123.com/images/antiBlock/$image (easylistchina+easylist.txt: 3489) +# ||info.btc123.com/images/antiBlock/$image (easylistchina.txt: 3474) .info.btc123.com/images/antiBlock/ -# ||info-database.csdn.net/Upload/$image,third-party (easylistchina+easylist.txt: 3488) +# ||info-database.csdn.net/Upload/$image,third-party (easylistchina.txt: 3473) .info-database.csdn.net/Upload/ -# ||inc.tgbus.com/frame/youxi.html (easylistchina+easylist.txt: 3487) +# ||inc.tgbus.com/frame/youxi.html (easylistchina.txt: 3472) .inc.tgbus.com/frame/youxi\.html -# ||impservice*.youdao.com^ (easylistchina+easylist.txt: 3486) +# ||impservice*.youdao.com^ (easylistchina.txt: 3471) .impservice*./.*\.youdao\.com[^\w%.-] .impservice*.youdao.com -# ||impservice*.yodao.com^ (easylistchina+easylist.txt: 3485) +# ||impservice*.yodao.com^ (easylistchina.txt: 3470) .impservice*./.*\.yodao\.com[^\w%.-] .impservice*.yodao.com -# ||imp3.net/data/js$script (easylistchina+easylist.txt: 3484) +# ||imp3.net/data/js$script (easylistchina.txt: 3469) .imp3.net/data/js -# ||imgur.com/Za3ll.gif (easylistchina+easylist.txt: 3481) +# ||imgur.com/Za3ll.gif (easylistchina.txt: 3466) .imgur.com/Za3ll\.gif -# ||imgur.com/rTqveeX.jpg (easylistchina+easylist.txt: 3480) +# ||imgur.com/rTqveeX.jpg (easylistchina.txt: 3465) .imgur.com/rTqveeX\.jpg -# ||imgur.com/pBL7joM.gif (easylistchina+easylist.txt: 3479) +# ||imgur.com/pBL7joM.gif (easylistchina.txt: 3464) .imgur.com/pBL7joM\.gif -# ||imgur.com/iKkoHkn.jpg (easylistchina+easylist.txt: 3478) +# ||imgur.com/iKkoHkn.jpg (easylistchina.txt: 3463) .imgur.com/iKkoHkn\.jpg -# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina+easylist.txt: 3477) +# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina.txt: 3462) .imgsrc.baidu.com/tieba/pic/item/ -# ||imgs.cc/images/ad_ (easylistchina+easylist.txt: 3476) +# ||imgs.cc/images/ad_ (easylistchina.txt: 3461) .imgs.cc/images/ad_ -# ||imgout.ph.126.net^*/950-90.jpg (easylistchina+easylist.txt: 3475) +# ||imgout.ph.126.net^*/950-90.jpg (easylistchina.txt: 3460) .imgout.ph.126.net/.*/950-90\.jpg -# ||imgout.ph.126.net^*/700x80.jpg (easylistchina+easylist.txt: 3474) +# ||imgout.ph.126.net^*/700x80.jpg (easylistchina.txt: 3459) .imgout.ph.126.net/.*/700x80\.jpg -# ||imgout.ph.126.net^*/355-310.jpg (easylistchina+easylist.txt: 3473) +# ||imgout.ph.126.net^*/355-310.jpg (easylistchina.txt: 3458) .imgout.ph.126.net/.*/355-310\.jpg -# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina+easylist.txt: 3472) +# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina.txt: 3457) .imgn.jiatx.com/jiatx/mall/outer/ -# ||imgkdiyoub999.com/ok/ (easylistchina+easylist.txt: 3470) +# ||imgkdiyoub999.com/ok/ (easylistchina.txt: 3455) .imgkdiyoub999.com/ok/ -# ||imgf.gamersky.com^$image (easylistchina+easylist.txt: 3469) +# ||imgf.gamersky.com^$image (easylistchina.txt: 3454) .imgf.gamersky.com -# ||imgchili.net/media/top.gif (easylistchina+easylist.txt: 3467) +# ||imgchili.net/media/top.gif (easylistchina.txt: 3452) .imgchili.net/media/top\.gif -# ||imgchili.net/media/image*.gif (easylistchina+easylist.txt: 3466) +# ||imgchili.net/media/image*.gif (easylistchina.txt: 3451) .imgchili.net/media/image.*\.gif -# ||img2.www.fmdisk.com^ (easylistchina+easylist.txt: 3464) +# ||img2.www.fmdisk.com^ (easylistchina.txt: 3449) .img2.www.fmdisk.com -# ||img2.win007.com/image/*.jpg (easylistchina+easylist.txt: 3463) +# ||img2.win007.com/image/*.jpg (easylistchina.txt: 3448) .img2.win007.com/image/.*\.jpg -# ||img2.e0575.com//upload/adv/ (easylistchina+easylist.txt: 3462) -# ||img2.e0575.com*/upload/image/ (easylistchina+easylist.txt: 3461) +# ||img2.e0575.com//upload/adv/ (easylistchina.txt: 3447) +# ||img2.e0575.com*/upload/image/ (easylistchina.txt: 3446) .img2.e0575.com*./(.*/)?upload/image/ -# ||img2.126.net^ (easylistchina+easylist.txt: 3460) +# ||img2.126.net^ (easylistchina.txt: 3445) .img2.126.net -# ||img1.jczqw.com/img/ (easylistchina+easylist.txt: 3459) +# ||img1.jczqw.com/img/ (easylistchina.txt: 3444) .img1.jczqw.com/img/ -# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina+easylist.txt: 3458) +# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina.txt: 3443) .img1.efu.com.cn/upfile/bew/.*\.swf -# ||img1.autofan.com.cn/swf/ (easylistchina+easylist.txt: 3457) +# ||img1.autofan.com.cn/swf/ (easylistchina.txt: 3442) .img1.autofan.com.cn/swf/ -# ||img1.126.net^ (easylistchina+easylist.txt: 3456) +# ||img1.126.net^ (easylistchina.txt: 3441) .img1.126.net -# ||img.ybbbs.com/2015/ (easylistchina+easylist.txt: 3455) +# ||img.ybbbs.com/2015/ (easylistchina.txt: 3440) .img.ybbbs.com/2015/ -# ||img.ybbbs.com/2014/ (easylistchina+easylist.txt: 3454) +# ||img.ybbbs.com/2014/ (easylistchina.txt: 3439) .img.ybbbs.com/2014/ -# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina+easylist.txt: 3453) +# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina.txt: 3438) .img.wangxiao.cn/images/big_ad\.jpg -# ||img.taoguba.com.cn/images/$object (easylistchina+easylist.txt: 3452) +# ||img.taoguba.com.cn/images/$object (easylistchina.txt: 3437) .img.taoguba.com.cn/images/ -# ||img.sz.js.cn/wj/ (easylistchina+easylist.txt: 3451) +# ||img.sz.js.cn/wj/ (easylistchina.txt: 3436) .img.sz.js.cn/wj/ -# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina+easylist.txt: 3450) +# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina.txt: 3435) .img.kuai.xunlei.com/img/v2/fen/ -# ||img.jb51.net^$script (easylistchina+easylist.txt: 3449) +# ||img.jb51.net^$script (easylistchina.txt: 3434) .img.jb51.net -# ||img.ifeng.com/tres/html/ (easylistchina+easylist.txt: 3448) +# ||img.ifeng.com/tres/html/ (easylistchina.txt: 3433) .img.ifeng.com/tres/html/ -# ||img.hexun.com*/wszj/js.js (easylistchina+easylist.txt: 3447) +# ||img.hexun.com*/wszj/js.js (easylistchina.txt: 3432) .img.hexun.com*./(.*/)?wszj/js\.js -# ||img.eol.cn/images/ed/$~image (easylistchina+easylist.txt: 3446) +# ||img.eol.cn/images/ed/$~image (easylistchina.txt: 3431) .img.eol.cn/images/ed/ -# ||img.cqsq.com/s/temp/ (easylistchina+easylist.txt: 3445) +# ||img.cqsq.com/s/temp/ (easylistchina.txt: 3430) .img.cqsq.com/s/temp/ -# ||img.cngba.com/da/ (easylistchina+easylist.txt: 3444) +# ||img.cngba.com/da/ (easylistchina.txt: 3429) .img.cngba.com/da/ -# ||img.9duw.com^ (easylistchina+easylist.txt: 3442) +# ||img.9duw.com^ (easylistchina.txt: 3427) .img.9duw.com -# ||img.90bfw.com^*.gif (easylistchina+easylist.txt: 3441) +# ||img.90bfw.com^*.gif (easylistchina.txt: 3426) .img.90bfw.com/.*\.gif -# ||img.86wan.com/img2/top.jpg (easylistchina+easylist.txt: 3440) +# ||img.86wan.com/img2/top.jpg (easylistchina.txt: 3425) .img.86wan.com/img2/top\.jpg -# ||img.6park.com/img/$image (easylistchina+easylist.txt: 3439) +# ||img.6park.com/img/$image (easylistchina.txt: 3424) .img.6park.com/img/ -# ||img.3sjt.com^ (easylistchina+easylist.txt: 3438) +# ||img.3sjt.com^ (easylistchina.txt: 3423) .img.3sjt.com -# ||img*.win007.com/image/*.gif (easylistchina+easylist.txt: 3437) +# ||img*.win007.com/image/*.gif (easylistchina.txt: 3422) .img*./.*\.win007\.com/image/.*\.gif .img*.win007.com/image/.*\.gif -# ||img*.titan007.com/image/*.gif (easylistchina+easylist.txt: 3436) +# ||img*.titan007.com/image/*.gif (easylistchina.txt: 3421) .img*./.*\.titan007\.com/image/.*\.gif .img*.titan007.com/image/.*\.gif -# ||img*.bet007.com/image/*.gif (easylistchina+easylist.txt: 3434) +# ||img*.bet007.com/image/*.gif (easylistchina.txt: 3419) .img*./.*\.bet007\.com/image/.*\.gif .img*.bet007.com/image/.*\.gif -# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina+easylist.txt: 3433) +# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina.txt: 3418) .imeee.cn/DA_HTML/bottom_960x90\.html -# ||imeee.cn/DA_HTML/*.js (easylistchina+easylist.txt: 3432) +# ||imeee.cn/DA_HTML/*.js (easylistchina.txt: 3417) .imeee.cn/DA_HTML/.*\.js -# ||imanke.com/static/player/loading/imanke.html (easylistchina+easylist.txt: 3431) +# ||imanke.com/static/player/loading/imanke.html (easylistchina.txt: 3416) .imanke.com/static/player/loading/imanke\.html -# ||imanhua.com^*/nmoneys/ (easylistchina+easylist.txt: 3430) +# ||imanhua.com^*/nmoneys/ (easylistchina.txt: 3415) .imanhua.com/.*/nmoneys/ -# ||imanhua.com^*/money/ (easylistchina+easylist.txt: 3429) +# ||imanhua.com^*/money/ (easylistchina.txt: 3414) .imanhua.com/.*/money/ -# ||images.sohu.com/ytv/*.swf (easylistchina+easylist.txt: 3428) +# ||images.sohu.com/ytv/*.swf (easylistchina.txt: 3413) .images.sohu.com/ytv/.*\.swf -# ||images.sohu.com/ytv/*.jpg (easylistchina+easylist.txt: 3427) +# ||images.sohu.com/ytv/*.jpg (easylistchina.txt: 3412) .images.sohu.com/ytv/.*\.jpg -# ||images.sohu.com/cs/ (easylistchina+easylist.txt: 3426) +# ||images.sohu.com/cs/ (easylistchina.txt: 3411) .images.sohu.com/cs/ -# ||images.sohu.com/bill/ (easylistchina+easylist.txt: 3425) +# ||images.sohu.com/bill/ (easylistchina.txt: 3410) .images.sohu.com/bill/ -# ||images.mydrivers.com/2009 (easylistchina+easylist.txt: 3424) +# ||images.mydrivers.com/2009 (easylistchina.txt: 3409) .images.mydrivers.com/2009 -# ||images.jurong.cn/bbs/ (easylistchina+easylist.txt: 3423) +# ||images.jurong.cn/bbs/ (easylistchina.txt: 3408) .images.jurong.cn/bbs/ -# ||images.gxsky.com^ (easylistchina+easylist.txt: 3422) +# ||images.gxsky.com^ (easylistchina.txt: 3407) .images.gxsky.com -# ||images.dayoo.com/dywimg/ (easylistchina+easylist.txt: 3421) +# ||images.dayoo.com/dywimg/ (easylistchina.txt: 3406) .images.dayoo.com/dywimg/ -# ||images.chinaz.com^ (easylistchina+easylist.txt: 3420) +# ||images.chinaz.com^ (easylistchina.txt: 3405) .images.chinaz.com -# ||images.china.cn^*first/$subdocument (easylistchina+easylist.txt: 3419) +# ||images.china.cn^*first/$subdocument (easylistchina.txt: 3404) .images.china.cn/.*first/ -# ||image.wenweipo.com/*/ad_ (easylistchina+easylist.txt: 3418) +# ||image.wenweipo.com/*/ad_ (easylistchina.txt: 3403) .image.wenweipo.com/.*/ad_ -# ||image.sportscn.com/other/live/ (easylistchina+easylist.txt: 3417) +# ||image.sportscn.com/other/live/ (easylistchina.txt: 3402) .image.sportscn.com/other/live/ -# ||image.seowhy.com/bbs/20 (easylistchina+easylist.txt: 3416) +# ||image.seowhy.com/bbs/20 (easylistchina.txt: 3401) .image.seowhy.com/bbs/20 -# ||image.lepan.cc^ (easylistchina+easylist.txt: 3415) +# ||image.lepan.cc^ (easylistchina.txt: 3400) .image.lepan.cc -# ||image.hh010.com^ (easylistchina+easylist.txt: 3414) +# ||image.hh010.com^ (easylistchina.txt: 3399) .image.hh010.com -# ||image.9duw.com^ (easylistchina+easylist.txt: 3413) +# ||image.9duw.com^ (easylistchina.txt: 3398) .image.9duw.com -# ||image.6park.com^ (easylistchina+easylist.txt: 3412) +# ||image.6park.com^ (easylistchina.txt: 3397) .image.6park.com -# ||im286.com/images/37cs.gif (easylistchina+easylist.txt: 3411) +# ||im286.com/images/37cs.gif (easylistchina.txt: 3396) .im286.com/images/37cs\.gif -# ||im286.com/286/ (easylistchina+easylist.txt: 3410) +# ||im286.com/286/ (easylistchina.txt: 3395) .im286.com/286/ -# ||im.zww.im/images/ (easylistchina+easylist.txt: 3409) +# ||im.zww.im/images/ (easylistchina.txt: 3394) .im.zww.im/images/ -# ||ilovecao.com^*.gif (easylistchina+easylist.txt: 3408) +# ||ilovecao.com^*.gif (easylistchina.txt: 3393) .ilovecao.com/.*\.gif -# ||ilikecao.com^*.gif (easylistchina+easylist.txt: 3407) +# ||ilikecao.com^*.gif (easylistchina.txt: 3392) .ilikecao.com/.*\.gif -# ||ikaka.com/globalad/ (easylistchina+easylist.txt: 3406) +# ||ikaka.com/globalad/ (easylistchina.txt: 3391) .ikaka.com/globalad/ -# ||ijia360.com/data/poster/ (easylistchina+easylist.txt: 3405) +# ||ijia360.com/data/poster/ (easylistchina.txt: 3390) .ijia360.com/data/poster/ -# ||ihref.com/ihref_gg/ (easylistchina+easylist.txt: 3404) +# ||ihref.com/ihref_gg/ (easylistchina.txt: 3389) .ihref.com/ihref_gg/ -# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina+easylist.txt: 3403) +# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina.txt: 3388) .iguang.tw/bm/seo_rotation/html/js/ -# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina+easylist.txt: 3402) +# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina.txt: 3387) .iguaji.com/wp-content/uploads/.*/ttzad -# ||iggyy8.com/js/v/ (easylistchina+easylist.txt: 3401) +# ||iggyy8.com/js/v/ (easylistchina.txt: 3386) .iggyy8.com/js/v/ -# ||ifxtx.com^*589x60. (easylistchina+easylist.txt: 3400) +# ||ifxtx.com^*589x60. (easylistchina.txt: 3385) .ifxtx.com/.*589x60\. -# ||ifxtx.com/tp/ (easylistchina+easylist.txt: 3399) +# ||ifxtx.com/tp/ (easylistchina.txt: 3384) .ifxtx.com/tp/ -# ||ifxtx.com/js/ad-02.js (easylistchina+easylist.txt: 3398) +# ||ifxtx.com/js/ad-02.js (easylistchina.txt: 3383) .ifxtx.com/js/ad-02\.js -# ||ifx.aifang.com^ (easylistchina+easylist.txt: 3397) +# ||ifx.aifang.com^ (easylistchina.txt: 3382) .ifx.aifang.com -# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina+easylist.txt: 3396) +# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina.txt: 3381) .ifood1.com/aobntech/pic/9300\.jpg -# ||ifonce.com/813.gif (easylistchina+easylist.txt: 3395) +# ||ifonce.com/813.gif (easylistchina.txt: 3380) .ifonce.com/813\.gif -# ||ifengimg.com^*Float$script (easylistchina+easylist.txt: 3394) +# ||ifengimg.com^*Float$script (easylistchina.txt: 3379) .ifengimg.com/.*Float -# ||ifengimg.com^*couplet$script (easylistchina+easylist.txt: 3393) +# ||ifengimg.com^*couplet$script (easylistchina.txt: 3378) .ifengimg.com/.*couplet -# ||ifengimg.com^*/yingguang- (easylistchina+easylist.txt: 3392) +# ||ifengimg.com^*/yingguang- (easylistchina.txt: 3377) .ifengimg.com/.*/yingguang- -# ||ifengimg.com^*/sparta.js (easylistchina+easylist.txt: 3391) +# ||ifengimg.com^*/sparta.js (easylistchina.txt: 3376) .ifengimg.com/.*/sparta\.js -# ||ifengimg.com^*/shfwq (easylistchina+easylist.txt: 3390) +# ||ifengimg.com^*/shfwq (easylistchina.txt: 3375) .ifengimg.com/.*/shfwq -# ||ifengimg.com^*/rdn_*.js? (easylistchina+easylist.txt: 3389) +# ||ifengimg.com^*/rdn_*.js? (easylistchina.txt: 3374) .ifengimg.com/.*/rdn_.*\.js\? -# ||ifengimg.com^*/pan.js (easylistchina+easylist.txt: 3388) +# ||ifengimg.com^*/pan.js (easylistchina.txt: 3373) .ifengimg.com/.*/pan\.js -# ||ifengimg.com^*/iframe_load_ (easylistchina+easylist.txt: 3387) +# ||ifengimg.com^*/iframe_load_ (easylistchina.txt: 3372) .ifengimg.com/.*/iframe_load_ -# ||ifengimg.com^*/hover.js (easylistchina+easylist.txt: 3386) +# ||ifengimg.com^*/hover.js (easylistchina.txt: 3371) .ifengimg.com/.*/hover\.js -# ||ifengimg.com^*/hddw- (easylistchina+easylist.txt: 3385) +# ||ifengimg.com^*/hddw- (easylistchina.txt: 3370) .ifengimg.com/.*/hddw- -# ||ifengimg.com^*/fullscreen (easylistchina+easylist.txt: 3384) +# ||ifengimg.com^*/fullscreen (easylistchina.txt: 3369) .ifengimg.com/.*/fullscreen -# ||ifengimg.com^*/backwindow.js (easylistchina+easylist.txt: 3383) +# ||ifengimg.com^*/backwindow.js (easylistchina.txt: 3368) .ifengimg.com/.*/backwindow\.js -# ||ifengimg.com^*/aplayer.xml (easylistchina+easylist.txt: 3382) +# ||ifengimg.com^*/aplayer.xml (easylistchina.txt: 3367) .ifengimg.com/.*/aplayer\.xml -# ||ifengimg.com^*/300-300. (easylistchina+easylist.txt: 3381) +# ||ifengimg.com^*/300-300. (easylistchina.txt: 3366) .ifengimg.com/.*/300-300\. -# ||ifengimg.com^*/300-300- (easylistchina+easylist.txt: 3380) +# ||ifengimg.com^*/300-300- (easylistchina.txt: 3365) .ifengimg.com/.*/300-300- -# ||ifengimg.com^*/1000X90- (easylistchina+easylist.txt: 3379) +# ||ifengimg.com^*/1000X90- (easylistchina.txt: 3364) .ifengimg.com/.*/1000X90- -# ||ifengimg.com^*/1000-90- (easylistchina+easylist.txt: 3378) +# ||ifengimg.com^*/1000-90- (easylistchina.txt: 3363) .ifengimg.com/.*/1000-90- -# ||ifengimg.com^*/100-100- (easylistchina+easylist.txt: 3377) +# ||ifengimg.com^*/100-100- (easylistchina.txt: 3362) .ifengimg.com/.*/100-100- -# ||ifengimg.com^*-gewindow- (easylistchina+easylist.txt: 3376) +# ||ifengimg.com^*-gewindow- (easylistchina.txt: 3361) .ifengimg.com/.*-gewindow- -# ||ifengimg.com/zhishaofei/js/ (easylistchina+easylist.txt: 3375) +# ||ifengimg.com/zhishaofei/js/ (easylistchina.txt: 3360) .ifengimg.com/zhishaofei/js/ -# ||ifengimg.com/xingzhao/JS/ (easylistchina+easylist.txt: 3374) +# ||ifengimg.com/xingzhao/JS/ (easylistchina.txt: 3359) .ifengimg.com/xingzhao/JS/ -# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina+easylist.txt: 3373) +# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina.txt: 3358) .ifengimg.com/tres/js/.*/idemin_noif\.js -# ||ifengimg.com/static/news/js/advtrack_ (easylistchina+easylist.txt: 3372) -.ifengimg.com/static/news/js/advtrack_ -# ||ifengimg.com/neiqian/*/embed.js (easylistchina+easylist.txt: 3371) +# ||ifengimg.com/static/news/js/advtrack (easylistchina.txt: 3357) +.ifengimg.com/static/news/js/advtrack +# ||ifengimg.com/neiqian/*/embed.js (easylistchina.txt: 3356) .ifengimg.com/neiqian/.*/embed\.js -# ||ifengimg.com/iis/iis_ (easylistchina+easylist.txt: 3369) +# ||ifengimg.com/iis/iis_ (easylistchina.txt: 3354) .ifengimg.com/iis/iis_ -# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina+easylist.txt: 3368) +# ||ifengimg.com/ifengimcp/pic/*_w750_h112. (easylistchina.txt: 3353) +.ifengimg.com/ifengimcp/pic/.*_w750_h112\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina.txt: 3352) .ifengimg.com/ifengimcp/pic/.*_w640_h130\. -# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina+easylist.txt: 3367) +# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina.txt: 3351) .ifengimg.com/ifengimcp/pic/.*_w640_h120\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina+easylist.txt: 3366) +# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina.txt: 3350) .ifengimg.com/ifengimcp/pic/.*_w320_h48\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina+easylist.txt: 3365) +# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina.txt: 3349) .ifengimg.com/ifengimcp/pic/.*_w320_h330\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina+easylist.txt: 3364) +# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina.txt: 3348) .ifengimg.com/ifengimcp/pic/.*_w320_h210\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina+easylist.txt: 3363) +# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina.txt: 3347) .ifengimg.com/ifengimcp/pic/.*_w320_h120\. -# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina+easylist.txt: 3362) +# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina.txt: 3346) .ifengimg.com/ifengimcp/pic/.*_w300_h65\. -# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina+easylist.txt: 3361) +# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina.txt: 3345) .ifengimg.com/ifengimcp/pic/.*_w24_h100\. -# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina+easylist.txt: 3360) +# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina.txt: 3344) .ifengimg.com/ifengimcp/pic/.*_w130_h100\. -# ||ifengimg.com/ifeng/sources/ (easylistchina+easylist.txt: 3359) +# ||ifengimg.com/ifeng/sources/ (easylistchina.txt: 3343) .ifengimg.com/ifeng/sources/ -# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina+easylist.txt: 3358) +# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina.txt: 3342) .ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1\.jpg -# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina+easylist.txt: 3357) +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina.txt: 3341) .ifengimg.com/29daa33abbbc4bbc/2015/7/titad\.gif -# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina+easylist.txt: 3356) +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina.txt: 3340) .ifengimg.com/29daa33abbbc4bbc/2015/7/aogute\.gif -# ||ifengimg.com/*/taobaopudi/ (easylistchina+easylist.txt: 3355) +# ||ifengimg.com/*/taobaopudi/ (easylistchina.txt: 3339) .ifengimg.com/.*/taobaopudi/ -# ||ifeng.com^*&ADUNITID= (easylistchina+easylist.txt: 3354) +# ||ifeng.com^*&ADUNITID= (easylistchina.txt: 3338) .ifeng.com/.*&ADUNITID= -# ||ifeng.com/wapAdversApi? (easylistchina+easylist.txt: 3353) +# ||ifeng.com/wapAdversApi? (easylistchina.txt: 3337) .ifeng.com/wapAdversApi\? -# ||ifeng.com/statics/comment_baidu.html (easylistchina+easylist.txt: 3352) +# ||ifeng.com/statics/comment_baidu.html (easylistchina.txt: 3336) .ifeng.com/statics/comment_baidu\.html -# ||ifeng.com/ssi-incs/ (easylistchina+easylist.txt: 3351) +# ||ifeng.com/ssi-incs/ (easylistchina.txt: 3335) .ifeng.com/ssi-incs/ -# ||ifeng.com/showjs?*apids= (easylistchina+easylist.txt: 3350) +# ||ifeng.com/showjs?*apids= (easylistchina.txt: 3334) .ifeng.com/showjs\?.*apids= -# ||ifeng.com/iframe/toquickbet (easylistchina+easylist.txt: 3349) +# ||ifeng.com/iframe/toquickbet (easylistchina.txt: 3333) .ifeng.com/iframe/toquickbet -# ||ifeng.com/iframe/quickbet (easylistchina+easylist.txt: 3348) +# ||ifeng.com/iframe/quickbet (easylistchina.txt: 3332) .ifeng.com/iframe/quickbet -# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina+easylist.txt: 3347) +# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina.txt: 3331) .ifeng.com/bbsfile/js/ifeng_tip\.js -# ||ifeng.com/a_if/taobao- (easylistchina+easylist.txt: 3346) +# ||ifeng.com/a_if/taobao- (easylistchina.txt: 3330) .ifeng.com/a_if/taobao- -# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina+easylist.txt: 3345) +# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina.txt: 3329) .ifanr.cn/wp-content/uploads/2015/12/xc90\.jpg -# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina+easylist.txt: 3344) +# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina.txt: 3328) .ietv.cc/Runtime/Js/web_bug\.js -# ||ietv.cc/Runtime/Js/vod (easylistchina+easylist.txt: 3343) +# ||ietv.cc/Runtime/Js/vod (easylistchina.txt: 3327) .ietv.cc/Runtime/Js/vod -# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina+easylist.txt: 3342) +# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina.txt: 3326) .ietv.cc/min/b=Runtime/Js&f= -# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina+easylist.txt: 3341) +# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina.txt: 3325) .iefans.net/wp-content/uploads/2009/js/llq/2345llq\.gif -# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina+easylist.txt: 3340) +# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina.txt: 3324) .iefans.net/wp-content/uploads/2009/03/UCbanner\.gif -# ||ieche.com/InAds/ (easylistchina+easylist.txt: 3339) +# ||ieche.com/InAds/ (easylistchina.txt: 3323) .ieche.com/InAds/ -# ||ieche.com/global/*/ad/ (easylistchina+easylist.txt: 3338) +# ||ieche.com/global/*/ad/ (easylistchina.txt: 3322) .ieche.com/global/.*/ad/ -# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina+easylist.txt: 3337) +# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina.txt: 3321) .ie.5500w.com/market/404230/pop_browser\.js -# ||idcxr.com/images/ad (easylistchina+easylist.txt: 3336) +# ||idcxr.com/images/ad (easylistchina.txt: 3320) .idcxr.com/images/ad -# ||idcquan.com/linux/cio_new.html (easylistchina+easylist.txt: 3335) +# ||idcquan.com/linux/cio_new.html (easylistchina.txt: 3319) .idcquan.com/linux/cio_new\.html -# ||idcot.com^ (easylistchina+easylist.txt: 3334) +# ||idcot.com^ (easylistchina.txt: 3318) .idcot.com -# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina+easylist.txt: 3333) +# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina.txt: 3317) .idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff\.png -# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina+easylist.txt: 3332) +# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina.txt: 3316) .idanmu.com/wp-content/themes/wpbangumi/images/assets/ -# ||icnkr.com/data/attachment/portal/ (easylistchina+easylist.txt: 3331) +# ||icnkr.com/data/attachment/portal/ (easylistchina.txt: 3315) .icnkr.com/data/attachment/portal/ -# ||icnkr.com/cnkradv/ (easylistchina+easylist.txt: 3330) +# ||icnkr.com/cnkradv/ (easylistchina.txt: 3314) .icnkr.com/cnkradv/ -# ||icili.com/cpma.js (easylistchina+easylist.txt: 3329) +# ||icili.com/cpma.js (easylistchina.txt: 3313) .icili.com/cpma\.js -# ||iciba.com/web/co/ci/ (easylistchina+easylist.txt: 3328) +# ||iciba.com/web/co/ci/ (easylistchina.txt: 3312) .iciba.com/web/co/ci/ -# ||iciba.com/static/images/double11_ (easylistchina+easylist.txt: 3327) +# ||iciba.com/static/images/double11_ (easylistchina.txt: 3311) .iciba.com/static/images/double11_ -# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina+easylist.txt: 3326) +# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina.txt: 3310) .ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi\.jpg -# ||ibook8.com/xia*.js (easylistchina+easylist.txt: 3325) +# ||ibook8.com/xia*.js (easylistchina.txt: 3309) .ibook8.com/xia.*\.js -# ||ibook8.com/js/b*.js (easylistchina+easylist.txt: 3324) +# ||ibook8.com/js/b*.js (easylistchina.txt: 3308) .ibook8.com/js/b.*\.js -# ||ibook8.com*/piao*.js (easylistchina+easylist.txt: 3323) +# ||ibook8.com*/piao*.js (easylistchina.txt: 3307) .ibook8.com*./(.*/)?piao.*\.js -# ||iapp.com.tw/iapp_ad.php (easylistchina+easylist.txt: 3322) +# ||iapp.com.tw/iapp_ad.php (easylistchina.txt: 3306) .iapp.com.tw/iapp_ad\.php -# ||iapolo.com/myjs/ (easylistchina+easylist.txt: 3321) +# ||iapolo.com/myjs/ (easylistchina.txt: 3305) .iapolo.com/myjs/ -# ||iads.xinmin.cn^ (easylistchina+easylist.txt: 3320) +# ||iads.xinmin.cn^ (easylistchina.txt: 3304) .iads.xinmin.cn -# ||i322.com/ad_avshow/ (easylistchina+easylist.txt: 3319) +# ||i322.com/ad_avshow/ (easylistchina.txt: 3303) .i322.com/ad_avshow/ -# ||i.syasn.com^ (easylistchina+easylist.txt: 3318) +# ||i.syasn.com^ (easylistchina.txt: 3302) .i.syasn.com -# ||i.fgi.tw/images/survey_of_woman (easylistchina+easylist.txt: 3317) +# ||i.fgi.tw/images/survey_of_woman (easylistchina.txt: 3301) .i.fgi.tw/images/survey_of_woman -# ||i.168img.com^$image,object (easylistchina+easylist.txt: 3315) +# ||i.168img.com^$image,object (easylistchina.txt: 3299) .i.168img.com -# ||i.168gamer.$image,object (easylistchina+easylist.txt: 3314) +# ||i.168gamer.$image,object (easylistchina.txt: 3298) .i.168gamer.*. -# ||i-part.com.tw/js2/newShineStar (easylistchina+easylist.txt: 3313) +# ||i-part.com.tw/js2/newShineStar (easylistchina.txt: 3297) .i-part.com.tw/js2/newShineStar -# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina+easylist.txt: 3312) +# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina.txt: 3296) .i-part.com.tw/images2/index/HouseStar/ -# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina+easylist.txt: 3311) +# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina.txt: 3295) .i-part.com.tw/hookimg/23892_14367801811\.jpg -# ||i-gamer.net/promo_ (easylistchina+easylist.txt: 3310) +# ||i-gamer.net/promo_ (easylistchina.txt: 3294) .i-gamer.net/promo_ -# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina+easylist.txt: 3309) +# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina.txt: 3293) .i-gamer.net/image/banner_tag_726x100\.jpg -# ||hzhyhm.com^ (easylistchina+easylist.txt: 3308) +# ||hzhyhm.com^ (easylistchina.txt: 3292) .hzhyhm.com -# ||hz.shouyoutv.com^ (easylistchina+easylist.txt: 3307) +# ||hz.shouyoutv.com^ (easylistchina.txt: 3291) .hz.shouyoutv.com -# ||hybbs.com/i/$image,object (easylistchina+easylist.txt: 3306) +# ||hybbs.com/i/$image,object (easylistchina.txt: 3290) .hybbs.com/i/ -# ||hxyl.net/hydzsw.jpg (easylistchina+easylist.txt: 3305) +# ||hxyl.net/hydzsw.jpg (easylistchina.txt: 3289) .hxyl.net/hydzsw\.jpg -# ||hxsxw.com/js/float.js (easylistchina+easylist.txt: 3304) +# ||hxsxw.com/js/float.js (easylistchina.txt: 3288) .hxsxw.com/js/float\.js -# ||hxsxw.com/gg*.gif (easylistchina+easylist.txt: 3303) +# ||hxsxw.com/gg*.gif (easylistchina.txt: 3287) .hxsxw.com/gg.*\.gif -# ||hxsd.com/templets/js/looyu_pop.js (easylistchina+easylist.txt: 3302) +# ||hxsd.com/templets/js/looyu_pop.js (easylistchina.txt: 3286) .hxsd.com/templets/js/looyu_pop\.js -# ||hxsame.hexun.com (easylistchina+easylist.txt: 3301) +# ||hxsame.hexun.com (easylistchina.txt: 3285) .hxsame.hexun.com*. -# ||hxjs.tool.hexun.com (easylistchina+easylist.txt: 3300) +# ||hxjs.tool.hexun.com (easylistchina.txt: 3284) .hxjs.tool.hexun.com*. -# ||hx95.com/images/vip.gif (easylistchina+easylist.txt: 3299) +# ||hx95.com/images/vip.gif (easylistchina.txt: 3283) .hx95.com/images/vip\.gif -# ||hx95.com/images/sn88.gif (easylistchina+easylist.txt: 3298) +# ||hx95.com/images/sn88.gif (easylistchina.txt: 3282) .hx95.com/images/sn88\.gif -# ||huxiu.com/static/js/jobAds/ (easylistchina+easylist.txt: 3297) +# ||huxiu.com/static/js/jobAds/ (easylistchina.txt: 3281) .huxiu.com/static/js/jobAds/ -# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina+easylist.txt: 3296) +# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina.txt: 3280) .hutc.zj.cn/skins/hutc2012/js/fp\.js -# ||hur.cn/AhurD/*.gif (easylistchina+easylist.txt: 3295) +# ||hur.cn/AhurD/*.gif (easylistchina.txt: 3279) .hur.cn/AhurD/.*\.gif -# ||huoyan.tv/yb/img/*.gif (easylistchina+easylist.txt: 3294) +# ||huoyan.tv/yb/img/*.gif (easylistchina.txt: 3278) .huoyan.tv/yb/img/.*\.gif -# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina+easylist.txt: 3293) +# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina.txt: 3277) .huoxingyu.com/images/hxy_350_330\.gif -# ||huoone.com/templets/hanfeng/js/qdtwo.js (easylistchina+easylist.txt: 3292) -.huoone.com/templets/hanfeng/js/qdtwo\.js -# ||huoche.net/Images/pc/ad_ (easylistchina+easylist.txt: 3291) +# ||huoche.net/Images/pc/ad_ (easylistchina.txt: 3276) .huoche.net/Images/pc/ad_ -# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina+easylist.txt: 3290) +# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina.txt: 3275) .hunantv.com/ui/2014/images/hao123\.jpg -# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina+easylist.txt: 3289) +# ||huizu100.com/data/attachment/portal/ (easylistchina.txt: 3274) +.huizu100.com/data/attachment/portal/ +# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina.txt: 3273) .huizhou.cn/webfile/.*/images/scroll\.js -# ||huihuige.com/images/affiliates/*_250_250 (easylistchina+easylist.txt: 3288) +# ||huihuige.com/images/affiliates/*_250_250 (easylistchina.txt: 3272) .huihuige.com/images/affiliates/.*_250_250 -# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina+easylist.txt: 3287) +# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina.txt: 3271) .hudong.pl.youku.com/interact/web/get/timeLinePlugin\? -# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina+easylist.txt: 3286) +# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina.txt: 3270) .hudong.pl.youku.com/interact/player/get/plugins\? -# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina+easylist.txt: 3285) +# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina.txt: 3269) .huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default\.jpg -# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina+easylist.txt: 3284) +# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina.txt: 3268) .huanqiukexue.com/uploads/images/hqkx_11\.jpg -# ||huanqiu.com^*/js/swt.js (easylistchina+easylist.txt: 3283) +# ||huanqiu.com^*/js/swt.js (easylistchina.txt: 3267) .huanqiu.com/.*/js/swt\.js -# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina+easylist.txt: 3282) +# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina.txt: 3266) .huanqiu.com/script/HuanQiuAllBottom\.Js -# ||hualongxiang.com/lib/clientShow.js (easylistchina+easylist.txt: 3281) +# ||huanqiu.com/resource/js/base.js (easylistchina.txt: 3265) +.huanqiu.com/resource/js/base\.js +# ||hualongxiang.com/lib/clientShow.js (easylistchina.txt: 3264) .hualongxiang.com/lib/clientShow\.js -# ||hualady.com/static/ (easylistchina+easylist.txt: 3280) +# ||hualady.com/static/ (easylistchina.txt: 3263) .hualady.com/static/ -# ||huainet.com/index_tg/js/txg.js (easylistchina+easylist.txt: 3279) +# ||huainet.com/index_tg/js/txg.js (easylistchina.txt: 3262) .huainet.com/index_tg/js/txg\.js -# ||huacolor.com/nei/ (easylistchina+easylist.txt: 3278) +# ||huaiduoduo.info/Runtime/js/ (easylistchina.txt: 3261) +.huaiduoduo.info/Runtime/js/ +# ||huacolor.com/nei/ (easylistchina.txt: 3260) .huacolor.com/nei/ -# ||huacolor.com/daocaoren/ (easylistchina+easylist.txt: 3277) +# ||huacolor.com/daocaoren/ (easylistchina.txt: 3259) .huacolor.com/daocaoren/ -# ||huacolor.com/all/ (easylistchina+easylist.txt: 3276) +# ||huacolor.com/all/ (easylistchina.txt: 3258) .huacolor.com/all/ -# ||huabian.com/hb/ad/ (easylistchina+easylist.txt: 3275) +# ||huabian.com/hb/ad/ (easylistchina.txt: 3257) .huabian.com/hb/ad/ -# ||httpcn.com^*950_120 (easylistchina+easylist.txt: 3274) +# ||httpcn.com^*950_120 (easylistchina.txt: 3256) .httpcn.com/.*950_120 -# ||httpcn.com/tg/ (easylistchina+easylist.txt: 3273) +# ||httpcn.com/tg/ (easylistchina.txt: 3255) .httpcn.com/tg/ -# ||httpcn.com/include/ad1/ (easylistchina+easylist.txt: 3272) +# ||httpcn.com/include/ad1/ (easylistchina.txt: 3254) .httpcn.com/include/ad1/ -# ||httpcn.com/Images/banner (easylistchina+easylist.txt: 3271) +# ||httpcn.com/Images/banner (easylistchina.txt: 3253) .httpcn.com/Images/banner -# ||httpcn.com/images/adpic2014/ad (easylistchina+easylist.txt: 3270) +# ||httpcn.com/images/adpic2014/ad (easylistchina.txt: 3252) .httpcn.com/images/adpic2014/ad -# ||httpcn.com/images/ad_ (easylistchina+easylist.txt: 3269) +# ||httpcn.com/images/ad_ (easylistchina.txt: 3251) .httpcn.com/images/ad_ -# ||htpc1.com/iBT/tools/ (easylistchina+easylist.txt: 3268) +# ||htpc1.com/iBT/tools/ (easylistchina.txt: 3250) .htpc1.com/iBT/tools/ -# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina+easylist.txt: 3267) +# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina.txt: 3249) .hs.cnfol.com/Cm/Imgs/Load\.gif -# ||hrtsea.com/936x90.gif (easylistchina+easylist.txt: 3266) +# ||hrtsea.com/936x90.gif (easylistchina.txt: 3248) .hrtsea.com/936x90\.gif -# ||hqdoor.com/Web/ (easylistchina+easylist.txt: 3265) +# ||hqdoor.com/Web/ (easylistchina.txt: 3247) .hqdoor.com/Web/ -# ||hqcx.net/index.php?m=poster& (easylistchina+easylist.txt: 3264) +# ||hqcx.net/index.php?m=poster& (easylistchina.txt: 3246) .hqcx.net/index\.php\?m=poster& -# ||how361.com/images/letou/xsbanner.gif (easylistchina+easylist.txt: 3262) +# ||how361.com/images/letou/xsbanner.gif (easylistchina.txt: 3244) .how361.com/images/letou/xsbanner\.gif -# ||how361.com/images/letou/20130111.gif (easylistchina+easylist.txt: 3261) +# ||how361.com/images/letou/20130111.gif (easylistchina.txt: 3243) .how361.com/images/letou/20130111\.gif -# ||how361.com/data/js.php?id= (easylistchina+easylist.txt: 3260) +# ||how361.com/data/js.php?id= (easylistchina.txt: 3242) .how361.com/data/js\.php\?id= -# ||houyi.baofeng.net^*.html (easylistchina+easylist.txt: 3259) +# ||houyi.baofeng.net^*.html (easylistchina.txt: 3241) .houyi.baofeng.net/.*\.html -# ||house365.com/js/lbpopup.js (easylistchina+easylist.txt: 3258) +# ||house365.com/js/lbpopup.js (easylistchina.txt: 3240) .house365.com/js/lbpopup\.js -# ||house365.com/*ads/201 (easylistchina+easylist.txt: 3257) +# ||house365.com/*ads/201 (easylistchina.txt: 3239) .house365.com/.*ads/201 -# ||house.sina.com.cn/2.0/ads/ (easylistchina+easylist.txt: 3256) +# ||house.sina.com.cn/2.0/ads/ (easylistchina.txt: 3238) .house.sina.com.cn/2\.0/ads/ -# ||house.sina.com.cn/2.0/abp/ (easylistchina+easylist.txt: 3255) +# ||house.sina.com.cn/2.0/abp/ (easylistchina.txt: 3237) .house.sina.com.cn/2\.0/abp/ -# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina+easylist.txt: 3254) +# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina.txt: 3236) .house.shangdu.com/house/js/fmt_swf/ -# ||house.shangdu.com/d/file/p/*.swf (easylistchina+easylist.txt: 3253) +# ||house.shangdu.com/d/file/p/*.swf (easylistchina.txt: 3235) .house.shangdu.com/d/file/p/.*\.swf -# ||house.jschina.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 3252) +# ||house.jschina.com.cn/userfiles/flash/ (easylistchina.txt: 3234) .house.jschina.com.cn/userfiles/flash/ -# ||house.inhe.net/javascript/flashdiv.js (easylistchina+easylist.txt: 3251) +# ||house.inhe.net/javascript/flashdiv.js (easylistchina.txt: 3233) .house.inhe.net/javascript/flashdiv\.js -# ||houdao.com/images/xxd.jpg (easylistchina+easylist.txt: 3250) +# ||house.163.com/special/*/dbhg.js (easylistchina.txt: 3232) +.house.163.com/special/.*/dbhg\.js +# ||houdao.com/images/xxd.jpg (easylistchina.txt: 3231) .houdao.com/images/xxd\.jpg -# ||houdao.com/images/tophd.jpg (easylistchina+easylist.txt: 3249) +# ||houdao.com/images/tophd.jpg (easylistchina.txt: 3230) .houdao.com/images/tophd\.jpg -# ||houdao.com/images/ktpd.jpg (easylistchina+easylist.txt: 3248) +# ||houdao.com/images/ktpd.jpg (easylistchina.txt: 3229) .houdao.com/images/ktpd\.jpg -# ||houdao.com/images/houdaov3/ban.png (easylistchina+easylist.txt: 3247) +# ||houdao.com/images/houdaov3/ban.png (easylistchina.txt: 3228) .houdao.com/images/houdaov3/ban\.png -# ||houdao.com/bans/ (easylistchina+easylist.txt: 3246) +# ||houdao.com/bans/ (easylistchina.txt: 3227) .houdao.com/bans/ -# ||hoto.cn/source/img/index_ (easylistchina+easylist.txt: 3245) +# ||hoto.cn/source/img/index_ (easylistchina.txt: 3226) .hoto.cn/source/img/index_ -# ||hotavxxx.com/images/111111111.jpg (easylistchina+easylist.txt: 3244) -.hotavxxx.com/images/111111111\.jpg -# ||hotavxxx.com/images/*96 (easylistchina+easylist.txt: 3243) +# ||hotavxxx.com/images/*96 (easylistchina.txt: 3225) .hotavxxx.com/images/.*96 -# ||hot.580k.com/share/Ad_ (easylistchina+easylist.txt: 3242) +# ||hot.580k.com/share/Ad_ (easylistchina.txt: 3224) .hot.580k.com/share/Ad_ -# ||hoopchina.com.cn/web/ad/ (easylistchina+easylist.txt: 3241) +# ||hoopchina.com.cn/web/ad/ (easylistchina.txt: 3223) .hoopchina.com.cn/web/ad/ -# ||hoopchina.com.cn/topn$subdocument (easylistchina+easylist.txt: 3240) +# ||hoopchina.com.cn/topn$subdocument (easylistchina.txt: 3222) .hoopchina.com.cn/topn -# ||hongxiu.com/images/home20140530.gif (easylistchina+easylist.txt: 3239) +# ||hongxiu.com/images/home20140530.gif (easylistchina.txt: 3221) .hongxiu.com/images/home20140530\.gif -# ||hongshu.com/hs/ (easylistchina+easylist.txt: 3238) +# ||hongshu.com/hs/ (easylistchina.txt: 3220) .hongshu.com/hs/ -# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina+easylist.txt: 3237) +# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina.txt: 3219) .hongdou.gxnews.com.cn/upload/index/ -# ||hn-pc.com/css/Fun_Div.js (easylistchina+easylist.txt: 3236) +# ||hn-pc.com/css/Fun_Div.js (easylistchina.txt: 3218) .hn-pc.com/css/Fun_Div\.js -# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina+easylist.txt: 3235) +# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina.txt: 3217) .hkwb.net/extra/1992\.files/hengda\.gif -# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina+easylist.txt: 3234) +# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina.txt: 3216) .hkwb.net/extra/1992\.files/2015yeshu\.swf -# ||hktvmall.com/api/preroll/getList? (easylistchina+easylist.txt: 3233) +# ||hktvmall.com/api/preroll/getList? (easylistchina.txt: 3215) .hktvmall.com/api/preroll/getList\? -# ||hkslg.com/gaogao/ (easylistchina+easylist.txt: 3232) +# ||hkslg.com/gaogao/ (easylistchina.txt: 3214) .hkslg.com/gaogao/ -# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina+easylist.txt: 3231) +# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina.txt: 3213) .hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner\.jpg -# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina+easylist.txt: 3230) +# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina.txt: 3212) .hkitblog.com/logo/hkitblog_zh\.jpg -# ||hkheadline.com^*/right_promo.js (easylistchina+easylist.txt: 3229) +# ||hkheadline.com^*/right_promo.js (easylistchina.txt: 3211) .hkheadline.com/.*/right_promo\.js -# ||hkheadline.com/*promo/ (easylistchina+easylist.txt: 3228) +# ||hkheadline.com/*promo/ (easylistchina.txt: 3210) .hkheadline.com/.*promo/ -# ||hkheadline.com/*banner$script (easylistchina+easylist.txt: 3227) +# ||hkheadline.com/*banner$script (easylistchina.txt: 3209) .hkheadline.com/.*banner -# ||hkgolden.com/yahoo_ad (easylistchina+easylist.txt: 3226) +# ||hkgolden.com/yahoo_ad (easylistchina.txt: 3208) .hkgolden.com/yahoo_ad -# ||hkgolden.com/mtg/ (easylistchina+easylist.txt: 3225) +# ||hkgolden.com/mtg/ (easylistchina.txt: 3207) .hkgolden.com/mtg/ -# ||hkgolden.com/hkg.js (easylistchina+easylist.txt: 3224) +# ||hkgolden.com/hkg.js (easylistchina.txt: 3206) .hkgolden.com/hkg\.js -# ||hkgolden.com/google_ad (easylistchina+easylist.txt: 3223) +# ||hkgolden.com/google_ad (easylistchina.txt: 3205) .hkgolden.com/google_ad -# ||hkepc.com/prepared/images/b608.png (easylistchina+easylist.txt: 3222) +# ||hkepc.com/prepared/images/b608.png (easylistchina.txt: 3204) .hkepc.com/prepared/images/b608\.png -# ||hkepc.com/forum/api/unimhk_ (easylistchina+easylist.txt: 3221) +# ||hkepc.com/forum/api/unimhk_ (easylistchina.txt: 3203) .hkepc.com/forum/api/unimhk_ -# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina+easylist.txt: 3220) +# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina.txt: 3202) .hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852\.swf -# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina+easylist.txt: 3219) +# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina.txt: 3201) .hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515\.jpg -# ||hk-pub.com/forum/images/banner/ (easylistchina+easylist.txt: 3218) +# ||hk-pub.com/forum/images/banner/ (easylistchina.txt: 3200) .hk-pub.com/forum/images/banner/ -# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina+easylist.txt: 3217) +# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina.txt: 3199) .hk-pub.com/forum/images/2009/home_advc\.jpg -# ||hk-bici.com/data/attachment/ad/ (easylistchina+easylist.txt: 3216) +# ||hk-bici.com/data/attachment/ad/ (easylistchina.txt: 3198) .hk-bici.com/data/attachment/ad/ -# ||hjdn.cn/img/hjgq.gif (easylistchina+easylist.txt: 3215) +# ||hjdn.cn/img/hjgq.gif (easylistchina.txt: 3197) .hjdn.cn/img/hjgq\.gif -# ||hjav.org/wp-content/uploads/ (easylistchina+easylist.txt: 3214) +# ||hjav.org/wp-content/uploads/ (easylistchina.txt: 3196) .hjav.org/wp-content/uploads/ -# ||hjav.org/ads.js (easylistchina+easylist.txt: 3213) +# ||hjav.org/ads.js (easylistchina.txt: 3195) .hjav.org/ads\.js -# ||hjav.in/wp-content/uploads/ (easylistchina+easylist.txt: 3212) +# ||hjav.in/wp-content/uploads/ (easylistchina.txt: 3194) .hjav.in/wp-content/uploads/ -# ||hjav.in/ads.js (easylistchina+easylist.txt: 3211) +# ||hjav.in/ads.js (easylistchina.txt: 3193) .hjav.in/ads\.js -# ||hjav.in/ad_dl.js (easylistchina+easylist.txt: 3210) +# ||hjav.in/ad_dl.js (easylistchina.txt: 3192) .hjav.in/ad_dl\.js -# ||hipowerd.com/outbound/images/*_banner. (easylistchina+easylist.txt: 3209) +# ||hipowerd.com/outbound/images/*_banner. (easylistchina.txt: 3191) .hipowerd.com/outbound/images/.*_banner\. -# ||hinews.cn/swf/0/*.swf (easylistchina+easylist.txt: 3208) +# ||hinews.cn/swf/0/*.swf (easylistchina.txt: 3190) .hinews.cn/swf/0/.*\.swf -# ||hinews.cn/out/$script (easylistchina+easylist.txt: 3207) +# ||hinews.cn/out/$script (easylistchina.txt: 3189) .hinews.cn/out/ -# ||hinews.cn/js/09page/10pagesjbtj (easylistchina+easylist.txt: 3206) +# ||hinews.cn/js/09page/10pagesjbtj (easylistchina.txt: 3188) .hinews.cn/js/09page/10pagesjbtj -# ||hinews.cn/eweb/img/*/1000x (easylistchina+easylist.txt: 3205) +# ||hinews.cn/eweb/img/*/1000x (easylistchina.txt: 3187) .hinews.cn/eweb/img/.*/1000x -# ||hinet.net/radio/getAdcode.do (easylistchina+easylist.txt: 3204) +# ||hinet.net/radio/getAdcode.do (easylistchina.txt: 3186) .hinet.net/radio/getAdcode\.do -# ||hifidiy.net/www/*/hivi_ (easylistchina+easylist.txt: 3203) +# ||hifidiy.net/www/*/hivi_ (easylistchina.txt: 3185) .hifidiy.net/www/.*/hivi_ -# ||hiao.com/node/node_27508.htm (easylistchina+easylist.txt: 3202) +# ||hiao.com/node/node_27508.htm (easylistchina.txt: 3184) .hiao.com/node/node_27508\.htm -# ||hiad.vmall.com^ (easylistchina+easylist.txt: 3201) +# ||hiad.vmall.com^ (easylistchina.txt: 3183) .hiad.vmall.com -# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina+easylist.txt: 3200) +# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina.txt: 3182) .hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942\.jpg -# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina+easylist.txt: 3199) +# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina.txt: 3181) .hi.people.com.cn/NMediaFile/.*\.gif -# ||hi.people.com.cn/NMediaFile/$object (easylistchina+easylist.txt: 3198) +# ||hi.people.com.cn/NMediaFile/$object (easylistchina.txt: 3180) .hi.people.com.cn/NMediaFile/ -# ||hhmanhua.net/jsc/stat.js (easylistchina+easylist.txt: 3197) +# ||hhmanhua.net/jsc/stat.js (easylistchina.txt: 3179) .hhmanhua.net/jsc/stat\.js -# ||hhmanhua.net/jsc/book_ (easylistchina+easylist.txt: 3196) +# ||hhmanhua.net/jsc/book_ (easylistchina.txt: 3178) .hhmanhua.net/jsc/book_ -# ||hhmanhua.net/hh/h*.js (easylistchina+easylist.txt: 3195) +# ||hhmanhua.net/hh/h*.js (easylistchina.txt: 3177) .hhmanhua.net/hh/h.*\.js -# ||hhcomic.com/hh/h*.js (easylistchina+easylist.txt: 3194) +# ||hhcomic.com/hh/h*.js (easylistchina.txt: 3176) .hhcomic.com/hh/h.*\.js -# ||hfchenming.com.cn/ad.html (easylistchina+easylist.txt: 3193) +# ||hfchenming.com.cn/ad.html (easylistchina.txt: 3175) .hfchenming.com.cn/ad\.html -# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina+easylist.txt: 3192) +# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina.txt: 3174) .hf365.com/0/14/60/93/14609355_921128\.jpg -# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina+easylist.txt: 3191) +# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina.txt: 3173) .hf365.com/0/14/31/00/14310068_933922\.png -# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina+easylist.txt: 3190) +# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina.txt: 3172) .hf365.com/0/13/79/87/13798795_912593\.jpg -# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina+easylist.txt: 3189) -# ||hexunimg.cn/m/images/ad_ (easylistchina+easylist.txt: 3188) +# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina.txt: 3171) +# ||hexunimg.cn/m/images/ad_ (easylistchina.txt: 3170) .hexunimg.cn/m/images/ad_ -# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina+easylist.txt: 3187) +# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina.txt: 3169) .hexun.com*./(.*/)?hx_news/hx_news_finalpage\.js -# ||heshan.gov.cn/JS/ddgg.js (easylistchina+easylist.txt: 3186) +# ||heshan.gov.cn/JS/ddgg.js (easylistchina.txt: 3168) .heshan.gov.cn/JS/ddgg\.js -# ||henghost.com^$third-party (easylistchina+easylist.txt: 3185) +# ||henghost.com^$third-party (easylistchina.txt: 3167) .henghost.com -# ||henan100.com^*/ad_article/ (easylistchina+easylist.txt: 3184) +# ||henan100.com^*/ad_article/ (easylistchina.txt: 3166) .henan100.com/.*/ad_article/ -# ||henan.sina.com.cn/iframe/7/ (easylistchina+easylist.txt: 3183) +# ||henan.sina.com.cn/iframe/7/ (easylistchina.txt: 3165) .henan.sina.com.cn/iframe/7/ -# ||heitu5.com/js/heituad/ (easylistchina+easylist.txt: 3182) +# ||heitu5.com/js/heituad/ (easylistchina.txt: 3164) .heitu5.com/js/heituad/ -# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina+easylist.txt: 3181) +# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina.txt: 3163) .heikexs.com/wp-content/themes/Duoxs.*/js/ -# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina+easylist.txt: 3180) +# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina.txt: 3162) .heiguang.com/statics/201404/img/tiop-1\.jpg -# ||heiguang.com/f/uad/ (easylistchina+easylist.txt: 3179) +# ||heiguang.com/f/uad/ (easylistchina.txt: 3161) .heiguang.com/f/uad/ -# ||hego123.net/top.js (easylistchina+easylist.txt: 3178) +# ||hego123.net/top.js (easylistchina.txt: 3160) .hego123.net/top\.js -# ||hego123.net/760-90.js (easylistchina+easylist.txt: 3177) +# ||hego123.net/760-90.js (easylistchina.txt: 3159) .hego123.net/760-90\.js -# ||hefei.cc/templates/default/index_ad (easylistchina+easylist.txt: 3176) +# ||hefei.cc/templates/default/index_ad (easylistchina.txt: 3158) .hefei.cc/templates/default/index_ad -# ||hebnews.cn/27510.files/baidu.js (easylistchina+easylist.txt: 3175) +# ||hebnews.cn/27510.files/baidu.js (easylistchina.txt: 3157) .hebnews.cn/27510\.files/baidu\.js -# ||hebei.com.cn/sys/online_calc.js (easylistchina+easylist.txt: 3174) +# ||hebei.com.cn/sys/online_calc.js (easylistchina.txt: 3156) .hebei.com.cn/sys/online_calc\.js -# ||hebei.com.cn/swf/ (easylistchina+easylist.txt: 3173) +# ||hebei.com.cn/swf/ (easylistchina.txt: 3155) .hebei.com.cn/swf/ -# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina+easylist.txt: 3172) +# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina.txt: 3154) .hebei.com.cn/js/leftrightdown_piaofu_ad_js\.js -# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina+easylist.txt: 3171) +# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina.txt: 3153) .hebei.com.cn/js/duilian_four_ad_js\.js -# ||hebei.com.cn/eap/ (easylistchina+easylist.txt: 3170) +# ||hebei.com.cn/eap/ (easylistchina.txt: 3152) .hebei.com.cn/eap/ -# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina+easylist.txt: 3169) +# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina.txt: 3151) .hdzc.net/statics/images/lamu/mhs\.swf -# ||hdsq.cc/data/attachment/portal/ (easylistchina+easylist.txt: 3168) +# ||hdsq.cc/data/attachment/portal/ (easylistchina.txt: 3150) .hdsq.cc/data/attachment/portal/ -# ||hdsky.me/adv/ (easylistchina+easylist.txt: 3166) +# ||hdsky.me/adv/ (easylistchina.txt: 3148) .hdsky.me/adv/ -# ||hdpfans.com/images/icons/*x75. (easylistchina+easylist.txt: 3165) +# ||hdpfans.com/images/icons/*x75. (easylistchina.txt: 3147) .hdpfans.com/images/icons/.*x75\. -# ||hdpfans.com/images/icons/*x70. (easylistchina+easylist.txt: 3164) +# ||hdpfans.com/images/icons/*x70. (easylistchina.txt: 3146) .hdpfans.com/images/icons/.*x70\. -# ||hdpfans.com/images/icons/*x60. (easylistchina+easylist.txt: 3163) +# ||hdpfans.com/images/icons/*x60. (easylistchina.txt: 3145) .hdpfans.com/images/icons/.*x60\. -# ||hdpfans.com/images/hotapp/ (easylistchina+easylist.txt: 3162) +# ||hdpfans.com/images/hotapp/ (easylistchina.txt: 3144) .hdpfans.com/images/hotapp/ -# ||hdarea.co/pic/2222.gif (easylistchina+easylist.txt: 3161) +# ||hdarea.co/pic/2222.gif (easylistchina.txt: 3143) .hdarea.co/pic/2222\.gif -# ||hdad.baike.com^ (easylistchina+easylist.txt: 3160) +# ||hdad.baike.com^ (easylistchina.txt: 3142) .hdad.baike.com -# ||hd62.com/img/ (easylistchina+easylist.txt: 3159) +# ||hd62.com/img/ (easylistchina.txt: 3141) .hd62.com/img/ -# ||hd180.com/js/ (easylistchina+easylist.txt: 3158) +# ||hd180.com/js/ (easylistchina.txt: 3140) .hd180.com/js/ -# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina+easylist.txt: 3157) +# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina.txt: 3139) .hc360.com/security/201409/201409021830024990\.jpg -# ||hc360.com/security/201311/201311151050289368.swf (easylistchina+easylist.txt: 3156) +# ||hc360.com/security/201311/201311151050289368.swf (easylistchina.txt: 3138) .hc360.com/security/201311/201311151050289368\.swf -# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina+easylist.txt: 3155) +# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina.txt: 3137) .hc360.com/news/201207/201207241712413488\.jpg -# ||hc360.com/list/iframe_right_ad_ (easylistchina+easylist.txt: 3154) +# ||hc360.com/list/iframe_right_ad_ (easylistchina.txt: 3136) .hc360.com/list/iframe_right_ad_ -# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina+easylist.txt: 3153) +# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina.txt: 3135) .hc360.com/list/iframe_end_textadv\.shtml -# ||hc360.com/list/iframe_2012ad_ (easylistchina+easylist.txt: 3152) +# ||hc360.com/list/iframe_2012ad_ (easylistchina.txt: 3134) .hc360.com/list/iframe_2012ad_ -# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina+easylist.txt: 3151) +# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina.txt: 3133) .hc360.com/list/iframe_2011hezuo\.shtml -# ||hc360.com/js/hcpop_ (easylistchina+easylist.txt: 3150) +# ||hc360.com/js/hcpop_ (easylistchina.txt: 3132) .hc360.com/js/hcpop_ -# ||hc360.com/js/*hezuo.js (easylistchina+easylist.txt: 3149) +# ||hc360.com/js/*hezuo.js (easylistchina.txt: 3131) .hc360.com/js/.*hezuo\.js -# ||hc360.com/images/14826/289x90.jpg (easylistchina+easylist.txt: 3148) +# ||hc360.com/images/14826/289x90.jpg (easylistchina.txt: 3130) .hc360.com/images/14826/289x90\.jpg -# ||hbrc.com/bd1.html (easylistchina+easylist.txt: 3147) +# ||hbrc.com/bd1.html (easylistchina.txt: 3129) .hbrc.com/bd1\.html -# ||haxiu.miaotiao.com^ (easylistchina+easylist.txt: 3146) -.haxiu.miaotiao.com -# ||haxiu.com/data/cache/myadn- (easylistchina+easylist.txt: 3145) +# ||haxiu.com/data/cache/myadn- (easylistchina.txt: 3128) .haxiu.com/data/cache/myadn- -# ||happydown.com^$script,subdocument (easylistchina+easylist.txt: 3144) +# ||happydown.com^$script,subdocument (easylistchina.txt: 3127) .happydown.com -# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina+easylist.txt: 3143) +# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina.txt: 3126) .haoyu.me/wp-content/uploads/2013/12/aliyun\.jpg -# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina+easylist.txt: 3142) +# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina.txt: 3125) .haoyu.me/wp-content/uploads/2013/08/interserver-vps1\.gif -# ||haowj.com.cn/d/js/outsidead/ (easylistchina+easylist.txt: 3141) +# ||haoxxoo.com/player/ad.html (easylistchina.txt: 3124) +.haoxxoo.com/player/ad\.html +# ||haowj.com.cn/d/js/outsidead/ (easylistchina.txt: 3123) .haowj.com.cn/d/js/outsidead/ -# ||haoring03.com/ads/ (easylistchina+easylist.txt: 3140) +# ||haoring03.com/ads/ (easylistchina.txt: 3122) .haoring03.com/ads/ -# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina+easylist.txt: 3139) +# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina.txt: 3121) .haokan5.com/js/haokanjs/youxiajiao\.js -# ||haokan5.com/js/haokanjs/tj.js (easylistchina+easylist.txt: 3138) +# ||haokan5.com/js/haokanjs/tj.js (easylistchina.txt: 3120) .haokan5.com/js/haokanjs/tj\.js -# ||haokan5.com/js/haokanjs/playa (easylistchina+easylist.txt: 3137) +# ||haokan5.com/js/haokanjs/playa (easylistchina.txt: 3119) .haokan5.com/js/haokanjs/playa -# ||haokan5.com/js/haokanjs/2014_ (easylistchina+easylist.txt: 3136) +# ||haokan5.com/js/haokanjs/2014_ (easylistchina.txt: 3118) .haokan5.com/js/haokanjs/2014_ -# ||haoghost.com/js/hy_cpc_print.js (easylistchina+easylist.txt: 3135) +# ||haoghost.com/js/hy_cpc_print.js (easylistchina.txt: 3117) .haoghost.com/js/hy_cpc_print\.js -# ||haofu1.com/images/*.gif (easylistchina+easylist.txt: 3134) +# ||haofu1.com/images/*.gif (easylistchina.txt: 3116) .haofu1.com/images/.*\.gif -# ||haofs.com/haofs/ggapi.asp (easylistchina+easylist.txt: 3133) +# ||haofs.com/haofs/ggapi.asp (easylistchina.txt: 3115) .haofs.com/haofs/ggapi\.asp -# ||haodai.com/src/i/lianmeng/ad/ (easylistchina+easylist.txt: 3132) +# ||haodai.com/src/i/lianmeng/ad/ (easylistchina.txt: 3114) .haodai.com/src/i/lianmeng/ad/ -# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina+easylist.txt: 3131) +# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina.txt: 3113) .haochi123.com/Js/Fun_Effects_HT9\.js -# ||haochi123.com/J_Box/Inc_ (easylistchina+easylist.txt: 3130) +# ||haochi123.com/J_Box/Inc_ (easylistchina.txt: 3112) .haochi123.com/J_Box/Inc_ -# ||hao6666.info^*.js (easylistchina+easylist.txt: 3129) +# ||hao6666.info^*.js (easylistchina.txt: 3111) .hao6666.info/.*\.js -# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina+easylist.txt: 3128) +# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina.txt: 3110) .hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT\.js -# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina+easylist.txt: 3127) +# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina.txt: 3109) .hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43\.png -# ||hao123img.com/res/ecom/ (easylistchina+easylist.txt: 3126) +# ||hao123img.com/res/ecom/ (easylistchina.txt: 3108) .hao123img.com/res/ecom/ -# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina+easylist.txt: 3125) +# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina.txt: 3107) .hao123.com/data/v/stuff\.php\?.*_forhao123Adv -# ||hao123.cn/images/vip.png (easylistchina+easylist.txt: 3124) +# ||hao123.cn/images/vip.png (easylistchina.txt: 3106) .hao123.cn/images/vip\.png -# ||hao.rising.cn/images/nsdgg.jpg (easylistchina+easylist.txt: 3123) +# ||hao.rising.cn/images/nsdgg.jpg (easylistchina.txt: 3105) .hao.rising.cn/images/nsdgg\.jpg -# ||hao.rising.cn/catalog/bottom.html (easylistchina+easylist.txt: 3122) +# ||hao.rising.cn/catalog/bottom.html (easylistchina.txt: 3104) .hao.rising.cn/catalog/bottom\.html -# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina+easylist.txt: 3121) +# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina.txt: 3103) .hanzify.*./(.*/)?Main/Template/Images/chinabank\.gif -# ||hangzhou.com.cn/inc_hzw/ (easylistchina+easylist.txt: 3120) +# ||hangzhou.com.cn/inc_hzw/ (easylistchina.txt: 3102) .hangzhou.com.cn/inc_hzw/ -# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina+easylist.txt: 3119) +# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina.txt: 3101) .hangzhou.com.cn/images/flashyingpian\.swf -# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina+easylist.txt: 3118) +# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina.txt: 3100) .hangzhou.com.cn/extra/flash/hzwarticle300\.swf -# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina+easylist.txt: 3117) +# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina.txt: 3099) .hanfanba.com/template/hanfanba/img/tb- -# ||haiwainet.cn/json/news (easylistchina+easylist.txt: 3116) +# ||haiwainet.cn/json/news (easylistchina.txt: 3098) .haiwainet.cn/json/news -# ||haiwainet.cn*/k.js (easylistchina+easylist.txt: 3115) +# ||haiwainet.cn*/k.js (easylistchina.txt: 3097) .haiwainet.cn*./(.*/)?k\.js -# ||hahade.com/tpl/*.html (easylistchina+easylist.txt: 3114) +# ||hahade.com/tpl/*.html (easylistchina.txt: 3096) .hahade.com/tpl/.*\.html -# ||haha.mx/upload/data/list_sidebar_ (easylistchina+easylist.txt: 3113) +# ||haha.mx/upload/data/list_sidebar_ (easylistchina.txt: 3095) .haha.mx/upload/data/list_sidebar_ -# ||haha.mx/upload/data/detail_ (easylistchina+easylist.txt: 3112) +# ||haha.mx/upload/data/detail_ (easylistchina.txt: 3094) .haha.mx/upload/data/detail_ -# ||haha.mx/images/market/ (easylistchina+easylist.txt: 3111) +# ||haha.mx/images/market/ (easylistchina.txt: 3093) .haha.mx/images/market/ -# ||haha.mx/images/banner/vipp.jpg (easylistchina+easylist.txt: 3110) +# ||haha.mx/images/banner/vipp.jpg (easylistchina.txt: 3092) .haha.mx/images/banner/vipp\.jpg -# ||haha.mx/images/banner/tmall11.png (easylistchina+easylist.txt: 3109) +# ||haha.mx/images/banner/tmall11.png (easylistchina.txt: 3091) .haha.mx/images/banner/tmall11\.png -# ||haha.mx/images/banner/jd.jpg (easylistchina+easylist.txt: 3108) +# ||haha.mx/images/banner/jd.jpg (easylistchina.txt: 3090) .haha.mx/images/banner/jd\.jpg -# ||hackp.com/xiaojiu/ (easylistchina+easylist.txt: 3107) +# ||hackp.com/xiaojiu/ (easylistchina.txt: 3089) .hackp.com/xiaojiu/ -# ||hackp.com/wz/ (easylistchina+easylist.txt: 3106) +# ||hackp.com/wz/ (easylistchina.txt: 3088) .hackp.com/wz/ -# ||hacken.cc/file/ads/ (easylistchina+easylist.txt: 3105) +# ||hacken.cc/file/ads/ (easylistchina.txt: 3087) .hacken.cc/file/ads/ -# ||hackbase.com/vip/topbanner.html (easylistchina+easylist.txt: 3104) +# ||hackbase.com/vip/topbanner.html (easylistchina.txt: 3086) .hackbase.com/vip/topbanner\.html -# ||hackbase.com/2009/bingdun2009.jpg (easylistchina+easylist.txt: 3103) +# ||hackbase.com/2009/bingdun2009.jpg (easylistchina.txt: 3085) .hackbase.com/2009/bingdun2009\.jpg -# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina+easylist.txt: 3102) +# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina.txt: 3084) .gzdaily.dayoo.com/tpl/banner.*\.swf -# ||gzcol.com/uploads/ad/ (easylistchina+easylist.txt: 3101) +# ||gzcol.com/uploads/ad/ (easylistchina.txt: 3083) .gzcol.com/uploads/ad/ -# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina+easylist.txt: 3100) +# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina.txt: 3082) .gz.xinhuanet.com/2012image/mt\.swf -# ||gywb.cn/gggl/ (easylistchina+easylist.txt: 3099) +# ||gywb.cn/gggl/ (easylistchina.txt: 3081) .gywb.cn/gggl/ -# ||gywb.cn/cs_mulu/ (easylistchina+easylist.txt: 3098) +# ||gywb.cn/cs_mulu/ (easylistchina.txt: 3080) .gywb.cn/cs_mulu/ -# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina+easylist.txt: 3097) +# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina.txt: 3079) .gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09\.jpg -# ||gxorg.com/index.php?m=poster& (easylistchina+easylist.txt: 3096) +# ||gxorg.com/index.php?m=poster& (easylistchina.txt: 3078) .gxorg.com/index\.php\?m=poster& -# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina+easylist.txt: 3095) +# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina.txt: 3077) .gxnews.com.cn/clientscript/index_duilian_ -# ||gxnews.com.cn/cache/wwwads.js (easylistchina+easylist.txt: 3094) +# ||gxnews.com.cn/cache/wwwads.js (easylistchina.txt: 3076) .gxnews.com.cn/cache/wwwads\.js -# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina+easylist.txt: 3093) +# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina.txt: 3075) .gx.xinhuanet.com/images2007/banner\.htm -# ||guyizhou.cn/temp/top_banner_ (easylistchina+easylist.txt: 3092) +# ||guyizhou.cn/temp/top_banner_ (easylistchina.txt: 3074) .guyizhou.cn/temp/top_banner_ -# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina+easylist.txt: 3091) +# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina.txt: 3073) .gusuwang.com/ymsextweb/javascript/gs -# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina+easylist.txt: 3090) +# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina.txt: 3072) .gusuwang.com/ymsextweb/images/index/ist_t\.jpg -# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina+easylist.txt: 3089) +# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina.txt: 3071) .gusuwang.com/ymsextweb/fullggw/ -# ||gusuwang.com/api/gsw_ (easylistchina+easylist.txt: 3088) +# ||gusuwang.com/api/gsw_ (easylistchina.txt: 3070) .gusuwang.com/api/gsw_ -# ||guqu.net/Cooperate/ (easylistchina+easylist.txt: 3087) +# ||guqu.net/Cooperate/ (easylistchina.txt: 3069) .guqu.net/Cooperate/ -# ||guokr.com/baidu-cbjs/ (easylistchina+easylist.txt: 3086) +# ||guokr.com/baidu-cbjs/ (easylistchina.txt: 3068) .guokr.com/baidu-cbjs/ -# ||guofs.com/images/you.js (easylistchina+easylist.txt: 3085) +# ||guofs.com/images/you.js (easylistchina.txt: 3067) .guofs.com/images/you\.js -# ||guofs.com/images/578-60.gif (easylistchina+easylist.txt: 3084) +# ||guofs.com/images/578-60.gif (easylistchina.txt: 3066) .guofs.com/images/578-60\.gif -# ||guitarchina.com/1/ww2014 (easylistchina+easylist.txt: 3083) +# ||guitarchina.com/1/ww2014 (easylistchina.txt: 3065) .guitarchina.com/1/ww2014 -# ||guess.h.qhimg.com^ (easylistchina+easylist.txt: 3082) +# ||guess.h.qhimg.com^ (easylistchina.txt: 3064) .guess.h.qhimg.com -# ||gucheng.com/2015/z4/ (easylistchina+easylist.txt: 3081) +# ||gucheng.com/2015/z4/ (easylistchina.txt: 3063) .gucheng.com/2015/z4/ -# ||gucheng.com/2015/mst/ (easylistchina+easylist.txt: 3080) +# ||gucheng.com/2015/mst/ (easylistchina.txt: 3062) .gucheng.com/2015/mst/ -# ||guahao.com/iwant/ads? (easylistchina+easylist.txt: 3079) +# ||guahao.com/iwant/ads? (easylistchina.txt: 3061) .guahao.com/iwant/ads\? -# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina+easylist.txt: 3078) +# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina.txt: 3060) .gtv.com.cn/public/images/2014-06/15/110_89471402801935\.jpg -# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina+easylist.txt: 3077) +# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina.txt: 3059) .gtv.com.cn/public/images/2014-03/20/71_12931395286234\.jpg -# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina+easylist.txt: 3076) +# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina.txt: 3058) .gtv.com.cn/public/images/2014-01/26/97_76841390730340\.jpg -# ||gtimg.com^*/adv/ (easylistchina+easylist.txt: 3075) +# ||gtimg.com^*/adv/ (easylistchina.txt: 3057) .gtimg.com/.*/adv/ -# ||gtimg.com^*/ad/ (easylistchina+easylist.txt: 3074) +# ||gtimg.com^*/ad/ (easylistchina.txt: 3056) .gtimg.com/.*/ad/ -# ||gtimg.com/www/test/300_250.swf (easylistchina+easylist.txt: 3073) +# ||gtimg.com/www/test/300_250.swf (easylistchina.txt: 3055) .gtimg.com/www/test/300_250\.swf -# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina+easylist.txt: 3072) +# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina.txt: 3054) .gtimg.com/web/default_fodders/300x600_ -# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina+easylist.txt: 3071) +# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina.txt: 3053) .gtimg.com/v/pics/hv1/88/83/1734/112774603\.jpg -# ||gtimg.com/qqlive/ (easylistchina+easylist.txt: 3070) +# ||gtimg.com/qqlive/ (easylistchina.txt: 3052) .gtimg.com/qqlive/ -# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina+easylist.txt: 3069) +# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina.txt: 3051) .gtimg.com/newsapp_ls/0/27161189/0 -# ||gtimg.com/news/news/2014ad/ (easylistchina+easylist.txt: 3068) +# ||gtimg.com/news/news/2014ad/ (easylistchina.txt: 3050) .gtimg.com/news/news/2014ad/ -# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina+easylist.txt: 3067) +# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina.txt: 3049) .gtimg.com/ent/final2009/dp_tebu_logo\.png -# ||gtimg.com/comic/richmedia/ (easylistchina+easylist.txt: 3066) +# ||gtimg.com/comic/richmedia/ (easylistchina.txt: 3048) .gtimg.com/comic/richmedia/ -# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina+easylist.txt: 3065) +# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina.txt: 3047) .gtimg.com/comic/pics/hv1/29/74/1631/106074674\.jpg -# ||gter.net^*adv (easylistchina+easylist.txt: 3064) +# ||gter.net^*adv (easylistchina.txt: 3046) .gter.net/.*adv -# ||gt.yy.com^ (easylistchina+easylist.txt: 3063) +# ||gt.yy.com^ (easylistchina.txt: 3045) .gt.yy.com -# ||gsspcln.jp^ (easylistchina+easylist.txt: 3062) +# ||gsspcln.jp^ (easylistchina.txt: 3044) .gsspcln.jp -# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina+easylist.txt: 3061) +# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina.txt: 3043) .gscn.com.cn/pic/0/10/34/27/10342786_994137\.gif -# ||gscn.com.cn/home/images/advscroll.js (easylistchina+easylist.txt: 3060) +# ||gscn.com.cn/home/images/advscroll.js (easylistchina.txt: 3042) .gscn.com.cn/home/images/advscroll\.js -# ||groupa.onlylady.com^ (easylistchina+easylist.txt: 3059) +# ||groupa.onlylady.com^ (easylistchina.txt: 3041) .groupa.onlylady.com -# ||greenxiazai.com/jsgreen/ (easylistchina+easylist.txt: 3058) +# ||greenxiazai.com/jsgreen/ (easylistchina.txt: 3040) .greenxiazai.com/jsgreen/ -# ||greenxiazai.com/greenjs/ (easylistchina+easylist.txt: 3057) +# ||greenxiazai.com/greenjs/ (easylistchina.txt: 3039) .greenxiazai.com/greenjs/ -# ||greenxf.com/js/main.js (easylistchina+easylist.txt: 3056) +# ||greenxf.com/js/main.js (easylistchina.txt: 3038) .greenxf.com/js/main\.js -# ||greenxf.com/img/46860.gif (easylistchina+easylist.txt: 3055) +# ||greenxf.com/img/46860.gif (easylistchina.txt: 3037) .greenxf.com/img/46860\.gif -# ||greenxf.com/asp/ (easylistchina+easylist.txt: 3054) +# ||greenxf.com/asp/ (easylistchina.txt: 3036) .greenxf.com/asp/ -# ||greatwuyi.com/tplimg/1.files/ad (easylistchina+easylist.txt: 3053) +# ||greatwuyi.com/tplimg/1.files/ad (easylistchina.txt: 3035) .greatwuyi.com/tplimg/1\.files/ad -# ||gqgc.sz.zj.cn^ (easylistchina+easylist.txt: 3052) +# ||gqgc.sz.zj.cn^ (easylistchina.txt: 3034) .gqgc.sz.zj.cn -# ||gpxz.com/skins/gupuxiazai/soft (easylistchina+easylist.txt: 3051) +# ||gpxz.com/skins/gupuxiazai/soft (easylistchina.txt: 3033) .gpxz.com/skins/gupuxiazai/soft -# ||gpxz.com/js2/ (easylistchina+easylist.txt: 3050) +# ||gpxz.com/js2/ (easylistchina.txt: 3032) .gpxz.com/js2/ -# ||gpsdlm.com/images/lm2.jpg (easylistchina+easylist.txt: 3049) +# ||gpsdlm.com/images/lm2.jpg (easylistchina.txt: 3031) .gpsdlm.com/images/lm2\.jpg -# ||gpsdlm.com/images/jdyigou.jpg (easylistchina+easylist.txt: 3048) +# ||gpsdlm.com/images/jdyigou.jpg (easylistchina.txt: 3030) .gpsdlm.com/images/jdyigou\.jpg -# ||gpcxw.com/file/js/img/*.gif (easylistchina+easylist.txt: 3047) +# ||gpcxw.com/file/js/img/*.gif (easylistchina.txt: 3029) .gpcxw.com/file/js/img/.*\.gif -# ||goyeah.com/homepage.html (easylistchina+easylist.txt: 3045) +# ||goyeah.com/homepage.html (easylistchina.txt: 3027) .goyeah.com/homepage\.html -# ||goto.www.iciba.com^ (easylistchina+easylist.txt: 3044) +# ||goto.www.iciba.com^ (easylistchina.txt: 3026) .goto.www.iciba.com -# ||gope.cn/1commonfile/guidebar/ (easylistchina+easylist.txt: 3043) +# ||gope.cn/1commonfile/guidebar/ (easylistchina.txt: 3025) .gope.cn/1commonfile/guidebar/ -# ||gope.cn/1commonfile/*.swf (easylistchina+easylist.txt: 3042) +# ||gope.cn/1commonfile/*.swf (easylistchina.txt: 3024) .gope.cn/1commonfile/.*\.swf -# ||gope.cn/1commonfile/*.htm (easylistchina+easylist.txt: 3041) +# ||gope.cn/1commonfile/*.htm (easylistchina.txt: 3023) .gope.cn/1commonfile/.*\.htm -# ||gope.cn/1commonfile/*.gif (easylistchina+easylist.txt: 3040) +# ||gope.cn/1commonfile/*.gif (easylistchina.txt: 3022) .gope.cn/1commonfile/.*\.gif -# ||goods.tudou.com/api? (easylistchina+easylist.txt: 3038) +# ||goods.tudou.com/api? (easylistchina.txt: 3020) .goods.tudou.com/api\? -# ||good.gd/js/loadpopads.aspx (easylistchina+easylist.txt: 3037) +# ||good.gd/js/loadpopads.aspx (easylistchina.txt: 3019) .good.gd/js/loadpopads\.aspx -# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina+easylist.txt: 3036) +# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina.txt: 3018) .good.gd/good\.gd/js/downloadPrograss\.js -# ||gohubei.com/img/zhuna.gif (easylistchina+easylist.txt: 3035) +# ||gohubei.com/img/zhuna.gif (easylistchina.txt: 3017) .gohubei.com/img/zhuna\.gif -# ||gohubei.com/img/tuniu.jpg (easylistchina+easylist.txt: 3034) +# ||gohubei.com/img/tuniu.jpg (easylistchina.txt: 3016) .gohubei.com/img/tuniu\.jpg -# ||go2tutor.com/lifebox.asp (easylistchina+easylist.txt: 3033) +# ||go2tutor.com/lifebox.asp (easylistchina.txt: 3015) .go2tutor.com/lifebox\.asp -# ||go.hangzhou.com.cn^ (easylistchina+easylist.txt: 3032) +# ||go.hangzhou.com.cn^ (easylistchina.txt: 3014) .go.hangzhou.com.cn -# ||gmw.cn/banner/ (easylistchina+easylist.txt: 3031) +# ||gmw.cn/banner/ (easylistchina.txt: 3013) .gmw.cn/banner/ -# ||gminfo.cn/qds/gmszyy.swf (easylistchina+easylist.txt: 3030) +# ||gminfo.cn/qds/gmszyy.swf (easylistchina.txt: 3012) .gminfo.cn/qds/gmszyy\.swf -# ||gminfo.cn/js/ad- (easylistchina+easylist.txt: 3029) +# ||gminfo.cn/js/ad- (easylistchina.txt: 3011) .gminfo.cn/js/ad- -# ||gminfo.cn/flash/ (easylistchina+easylist.txt: 3028) +# ||gminfo.cn/flash/ (easylistchina.txt: 3010) .gminfo.cn/flash/ -# ||gmbuluo.com/js/yxj (easylistchina+easylist.txt: 3027) +# ||gmbuluo.com/js/yxj (easylistchina.txt: 3009) .gmbuluo.com/js/yxj -# ||gmbuluo.com/js/shouye (easylistchina+easylist.txt: 3026) +# ||gmbuluo.com/js/shouye (easylistchina.txt: 3008) .gmbuluo.com/js/shouye -# ||gmbuluo.com/js/liebiao (easylistchina+easylist.txt: 3025) +# ||gmbuluo.com/js/liebiao (easylistchina.txt: 3007) .gmbuluo.com/js/liebiao -# ||gmbbk.cn/jj/ (easylistchina+easylist.txt: 3024) +# ||gmbbk.cn/jj/ (easylistchina.txt: 3006) .gmbbk.cn/jj/ -# ||gmbbk.cn/img/top.js (easylistchina+easylist.txt: 3023) +# ||gmbbk.cn/img/top.js (easylistchina.txt: 3005) .gmbbk.cn/img/top\.js -# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina+easylist.txt: 3022) +# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina.txt: 3004) .global.tianyaui.com/global/wizard/js/wizard\.js -# ||github.io/2048/full/meta/cmpay.gif (easylistchina+easylist.txt: 3021) +# ||github.io/2048/full/meta/cmpay.gif (easylistchina.txt: 3003) .github.io/2048/full/meta/cmpay\.gif -# ||gimhoy.com/201404/cute.jpg (easylistchina+easylist.txt: 3020) +# ||gimhoy.com/201404/cute.jpg (easylistchina.txt: 3002) .gimhoy.com/201404/cute\.jpg -# ||gigacircle.com/images/*720X85. (easylistchina+easylist.txt: 3019) +# ||gigacircle.com/images/*720X85. (easylistchina.txt: 3001) .gigacircle.com/images/.*720X85\. -# ||gigacircle.com/images/*250X250. (easylistchina+easylist.txt: 3018) +# ||gigacircle.com/images/*250X250. (easylistchina.txt: 3000) .gigacircle.com/images/.*250X250\. -# ||ghostxp3.com/xf.js (easylistchina+easylist.txt: 3017) +# ||ghostxp3.com/xf.js (easylistchina.txt: 2999) .ghostxp3.com/xf\.js -# ||ghoffice.com/bbs/js/float.js (easylistchina+easylist.txt: 3016) +# ||ghoffice.com/bbs/js/float.js (easylistchina.txt: 2998) .ghoffice.com/bbs/js/float\.js -# ||ghjie.com/JS/youcegg.js (easylistchina+easylist.txt: 3015) +# ||ghjie.com/JS/youcegg.js (easylistchina.txt: 2997) .ghjie.com/JS/youcegg\.js -# ||ghjie.com/images/2012/images/bg (easylistchina+easylist.txt: 3014) +# ||ghjie.com/images/2012/images/bg (easylistchina.txt: 2996) .ghjie.com/images/2012/images/bg -# ||ggyq.xdkb.net^ (easylistchina+easylist.txt: 3013) +# ||ggyq.xdkb.net^ (easylistchina.txt: 2995) .ggyq.xdkb.net -# ||ggw.watertu.com^ (easylistchina+easylist.txt: 3012) +# ||ggw.watertu.com^ (easylistchina.txt: 2994) .ggw.watertu.com -# ||ggw.gusuwang.com^ (easylistchina+easylist.txt: 3011) +# ||ggw.gusuwang.com^ (easylistchina.txt: 2993) .ggw.gusuwang.com -# ||gggbbb00.com/template/dream1/ads/ (easylistchina+easylist.txt: 3010) -.gggbbb00.com/template/dream1/ads/ -# ||ggg.zj.com^ (easylistchina+easylist.txt: 3009) +# ||ggg.zj.com^ (easylistchina.txt: 2992) .ggg.zj.com -# ||gg163.net/js/gg163ad.js (easylistchina+easylist.txt: 3008) +# ||gg163.net/js/gg163ad.js (easylistchina.txt: 2991) .gg163.net/js/gg163ad\.js -# ||gg163.net/js/163bbsad.js (easylistchina+easylist.txt: 3007) +# ||gg163.net/js/163bbsad.js (easylistchina.txt: 2990) .gg163.net/js/163bbsad\.js -# ||gg163.net/gpimages/ad33.gif (easylistchina+easylist.txt: 3006) +# ||gg163.net/gpimages/ad33.gif (easylistchina.txt: 2989) .gg163.net/gpimages/ad33\.gif -# ||gg163.net/gpimages/22.gif (easylistchina+easylist.txt: 3005) +# ||gg163.net/gpimages/22.gif (easylistchina.txt: 2988) .gg163.net/gpimages/22\.gif -# ||gg163.net/2015ad/ (easylistchina+easylist.txt: 3004) +# ||gg163.net/2015ad/ (easylistchina.txt: 2987) .gg163.net/2015ad/ -# ||gg163.net/2014ad/ (easylistchina+easylist.txt: 3003) +# ||gg163.net/2014ad/ (easylistchina.txt: 2986) .gg163.net/2014ad/ -# ||gg163.net/2013ad/ (easylistchina+easylist.txt: 3002) +# ||gg163.net/2013ad/ (easylistchina.txt: 2985) .gg163.net/2013ad/ -# ||gg163.net/2012ad/ (easylistchina+easylist.txt: 3001) +# ||gg163.net/2012ad/ (easylistchina.txt: 2984) .gg163.net/2012ad/ -# ||gg.yxdown.com^ (easylistchina+easylist.txt: 3000) +# ||gg.yxdown.com^ (easylistchina.txt: 2983) .gg.yxdown.com -# ||gg.sonhoo.com^ (easylistchina+easylist.txt: 2999) +# ||gg.sonhoo.com^ (easylistchina.txt: 2982) .gg.sonhoo.com -# ||gg.kugou.com^ (easylistchina+easylist.txt: 2998) +# ||gg.kugou.com^ (easylistchina.txt: 2981) .gg.kugou.com -# ||gg.gao7.com^ (easylistchina+easylist.txt: 2997) +# ||gg.gao7.com^ (easylistchina.txt: 2980) .gg.gao7.com -# ||gg.cs090.com^ (easylistchina+easylist.txt: 2996) +# ||gg.cs090.com^ (easylistchina.txt: 2979) .gg.cs090.com -# ||gg.18183.com^ (easylistchina+easylist.txt: 2995) +# ||gg.bxwx5.com^ (easylistchina.txt: 2978) +.gg.bxwx5.com +# ||gg.18183.com^ (easylistchina.txt: 2977) .gg.18183.com -# ||gg.0598yu.com^ (easylistchina+easylist.txt: 2994) +# ||gg.0598yu.com^ (easylistchina.txt: 2976) .gg.0598yu.com -# ||gg-art.com/anod/ (easylistchina+easylist.txt: 2993) +# ||gg-art.com/anod/ (easylistchina.txt: 2975) .gg-art.com/anod/ -# ||gfan.com/press/ (easylistchina+easylist.txt: 2992) +# ||gfan.com/press/ (easylistchina.txt: 2974) .gfan.com/press/ -# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina+easylist.txt: 2991) +# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina.txt: 2973) .gfan.com/plugin\.php\?id=gfan_viewpic:gfan_adView -# ||gezila.com/gimg/yinsu (easylistchina+easylist.txt: 2990) +# ||gezila.com/gimg/yinsu (easylistchina.txt: 2972) .gezila.com/gimg/yinsu -# ||gexing.com/j/??zmask.js,easing.js? (easylistchina+easylist.txt: 2989) +# ||gexing.com/j/??zmask.js,easing.js? (easylistchina.txt: 2971) .gexing.com/j/\?\?zmask\.js,easing\.js\? -# ||gexing.com/api/api_get_tankuang.php? (easylistchina+easylist.txt: 2988) +# ||gexing.com/api/api_get_tankuang.php? (easylistchina.txt: 2970) .gexing.com/api/api_get_tankuang\.php\? -# ||gexing.com.cn^*/images/jr.jpg (easylistchina+easylist.txt: 2987) +# ||gexing.com.cn^*/images/jr.jpg (easylistchina.txt: 2969) .gexing.com.cn/.*/images/jr\.jpg -# ||gexing.com.cn^*/images/1a.jpg (easylistchina+easylist.txt: 2986) +# ||gexing.com.cn^*/images/1a.jpg (easylistchina.txt: 2968) .gexing.com.cn/.*/images/1a\.jpg -# ||get.766.com^ (easylistchina+easylist.txt: 2985) +# ||get.766.com^ (easylistchina.txt: 2967) .get.766.com -# ||geiliwx.com/read/ad$script (easylistchina+easylist.txt: 2984) +# ||geiliwx.com/read/ad$script (easylistchina.txt: 2966) .geiliwx.com/read/ad -# ||gdt.qq.com^ (easylistchina+easylist.txt: 2983) +# ||gdt.qq.com^ (easylistchina.txt: 2965) .gdt.qq.com -# ||gdmm.com/Public/config/Couplet/Index (easylistchina+easylist.txt: 2982) +# ||gdmm.com/Public/config/Couplet/Index (easylistchina.txt: 2964) .gdmm.com/Public/config/Couplet/Index -# ||gdmm.com/mybt/ (easylistchina+easylist.txt: 2981) +# ||gdmm.com/mybt/ (easylistchina.txt: 2963) .gdmm.com/mybt/ -# ||gdmm.com/js/images/z.swf (easylistchina+easylist.txt: 2980) +# ||gdmm.com/js/images/z.swf (easylistchina.txt: 2962) .gdmm.com/js/images/z\.swf -# ||gdmm.com/js/images/y.swf (easylistchina+easylist.txt: 2979) +# ||gdmm.com/js/images/y.swf (easylistchina.txt: 2961) .gdmm.com/js/images/y\.swf -# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina+easylist.txt: 2978) +# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina.txt: 2960) .gdaily.org/wp-content/uploads/an-temp/ -# ||gd.sina.com.cn/iframe/22/ (easylistchina+easylist.txt: 2977) +# ||gd.sina.com.cn/iframe/22/ (easylistchina.txt: 2959) .gd.sina.com.cn/iframe/22/ -# ||gd.ct10000.com/js/ecssstat.js (easylistchina+easylist.txt: 2976) +# ||gd.ct10000.com/js/ecssstat.js (easylistchina.txt: 2958) .gd.ct10000.com/js/ecssstat\.js -# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina+easylist.txt: 2975) +# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina.txt: 2957) .gaofen.com/source/plugin/gaofen_ad/ -# ||ganjituiguang.ganji.com^ (easylistchina+easylist.txt: 2974) +# ||ganjituiguang.ganji.com^ (easylistchina.txt: 2956) .ganjituiguang.ganji.com -# ||ganjistatic1.com^*/adm/ (easylistchina+easylist.txt: 2973) +# ||ganjistatic1.com^*/adm/ (easylistchina.txt: 2955) .ganjistatic1.com/.*/adm/ -# ||ganjistatic1.com^*-banner- (easylistchina+easylist.txt: 2972) +# ||ganjistatic1.com^*-banner- (easylistchina.txt: 2954) .ganjistatic1.com/.*-banner- -# ||ganji.com/content.php (easylistchina+easylist.txt: 2971) +# ||ganji.com/content.php (easylistchina.txt: 2953) .ganji.com/content\.php -# ||ganbingw.com/images/top960.jpg (easylistchina+easylist.txt: 2970) +# ||ganbingw.com/images/top960.jpg (easylistchina.txt: 2952) .ganbingw.com/images/top960\.jpg -# ||gamme.com.tw/ga/ (easylistchina+easylist.txt: 2969) +# ||gamme.com.tw/ga/ (easylistchina.txt: 2951) .gamme.com.tw/ga/ -# ||games.ifeng.com^$subdocument (easylistchina+easylist.txt: 2968) +# ||games.ifeng.com^$subdocument (easylistchina.txt: 2950) .games.ifeng.com -# ||gamersky.com^*.htm$subdocument (easylistchina+easylist.txt: 2967) +# ||gamersky.com^*.htm$subdocument (easylistchina.txt: 2949) .gamersky.com/.*\.htm -# ||gamersky.com/piaofu*/ (easylistchina+easylist.txt: 2966) +# ||gamersky.com/piaofu*/ (easylistchina.txt: 2948) .gamersky.com/piaofu.*/ -# ||gamersky.com/img/ (easylistchina+easylist.txt: 2965) +# ||gamersky.com/img/ (easylistchina.txt: 2947) .gamersky.com/img/ -# ||gamersky.com/gsinc/content_bg.js (easylistchina+easylist.txt: 2964) +# ||gamersky.com/gsinc/content_bg.js (easylistchina.txt: 2946) .gamersky.com/gsinc/content_bg\.js -# ||gamersky.com/g/gamerskyflash.js (easylistchina+easylist.txt: 2963) +# ||gamersky.com/g/gamerskyflash.js (easylistchina.txt: 2945) .gamersky.com/g/gamerskyflash\.js -# ||gamersky.com/bgpic/ (easylistchina+easylist.txt: 2962) +# ||gamersky.com/bgpic/ (easylistchina.txt: 2944) .gamersky.com/bgpic/ -# ||gamefy.cn/cookiead.php (easylistchina+easylist.txt: 2961) +# ||gamefy.cn/cookiead.php (easylistchina.txt: 2943) .gamefy.cn/cookiead\.php -# ||gameapps.hk/js/determine_page_ (easylistchina+easylist.txt: 2960) +# ||gameapps.hk/js/determine_page_ (easylistchina.txt: 2942) .gameapps.hk/js/determine_page_ -# ||gameapps.hk/js/content_ (easylistchina+easylist.txt: 2959) +# ||gameapps.hk/js/content_ (easylistchina.txt: 2941) .gameapps.hk/js/content_ -# ||gameapps.hk/images/apps/ad/ (easylistchina+easylist.txt: 2958) +# ||gameapps.hk/images/apps/ad/ (easylistchina.txt: 2940) .gameapps.hk/images/apps/ad/ -# ||game.466.com^$third-party (easylistchina+easylist.txt: 2957) +# ||game.466.com^$third-party (easylistchina.txt: 2939) .game.466.com -# ||gagays.com/site/ad300x300 (easylistchina+easylist.txt: 2956) +# ||gagays.com/site/ad300x300 (easylistchina.txt: 2938) .gagays.com/site/ad300x300 -# ||g4.beva.com/data-js- (easylistchina+easylist.txt: 2955) +# ||g4.beva.com/data-js- (easylistchina.txt: 2937) .g4.beva.com/data-js- -# ||g2.ousns.net^ (easylistchina+easylist.txt: 2954) +# ||g2.ousns.net^ (easylistchina.txt: 2936) .g2.ousns.net -# ||g1080.com/js/cache_bg.js (easylistchina+easylist.txt: 2953) +# ||g1080.com/js/cache_bg.js (easylistchina.txt: 2935) .g1080.com/js/cache_bg\.js -# ||g1.0573ren.com^ (easylistchina+easylist.txt: 2952) +# ||g1.0573ren.com^ (easylistchina.txt: 2934) .g1.0573ren.com -# ||g.rexian.net.cn/js/ (easylistchina+easylist.txt: 2951) +# ||g.rexian.net.cn/js/ (easylistchina.txt: 2933) .g.rexian.net.cn/js/ -# ||g.ousns.net^ (easylistchina+easylist.txt: 2950) +# ||g.ousns.net^ (easylistchina.txt: 2932) .g.ousns.net -# ||g.jinti.com/f/a/a (easylistchina+easylist.txt: 2949) +# ||g.jinti.com/f/a/a (easylistchina.txt: 2931) .g.jinti.com/f/a/a -# ||g.hsw.cn^ (easylistchina+easylist.txt: 2948) +# ||g.hsw.cn^ (easylistchina.txt: 2930) .g.hsw.cn -# ||g.gxorg.com^ (easylistchina+easylist.txt: 2947) +# ||g.gxorg.com^ (easylistchina.txt: 2929) .g.gxorg.com -# ||g.cnzz.cn/Static/js/*- (easylistchina+easylist.txt: 2946) +# ||g.cnzz.cn/Static/js/*- (easylistchina.txt: 2928) .g.cnzz.cn/Static/js/.*- -# ||g.163.com/*&affiliate= (easylistchina+easylist.txt: 2945) +# ||g.163.com/*&affiliate= (easylistchina.txt: 2927) .g.163.com/.*&affiliate= -# ||fzpchome.com/txt/$script (easylistchina+easylist.txt: 2944) +# ||fzpchome.com/txt/$script (easylistchina.txt: 2926) .fzpchome.com/txt/ -# ||fzlol.com/images/$script (easylistchina+easylist.txt: 2943) +# ||fzlol.com/images/$script (easylistchina.txt: 2925) .fzlol.com/images/ -# ||fzbm.com/bbs/static/js/bma.js (easylistchina+easylist.txt: 2942) +# ||fzbm.com/bbs/static/js/bma.js (easylistchina.txt: 2924) .fzbm.com/bbs/static/js/bma\.js -# ||fxxz.com/show/ (easylistchina+easylist.txt: 2941) +# ||fxxz.com/show/ (easylistchina.txt: 2923) .fxxz.com/show/ -# ||fxpan.com/sina.jpg (easylistchina+easylist.txt: 2940) +# ||fxpan.com/sina.jpg (easylistchina.txt: 2922) .fxpan.com/sina\.jpg -# ||fx678.com/proxy (easylistchina+easylist.txt: 2939) +# ||fx678.com/proxy (easylistchina.txt: 2921) .fx678.com/proxy -# ||fx678.com/js/baidu_ (easylistchina+easylist.txt: 2938) +# ||fx678.com/js/baidu_ (easylistchina.txt: 2920) .fx678.com/js/baidu_ -# ||fx114.net/images/bangbaotao.jpg (easylistchina+easylist.txt: 2937) +# ||fx114.net/images/bangbaotao.jpg (easylistchina.txt: 2919) .fx114.net/images/bangbaotao\.jpg -# ||fwxgx.com/u/ad/show_type/ (easylistchina+easylist.txt: 2936) +# ||fwxgx.com/u/ad/show_type/ (easylistchina.txt: 2918) .fwxgx.com/u/ad/show_type/ -# ||funtude.com/include/inc/ad_data. (easylistchina+easylist.txt: 2935) +# ||funtude.com/include/inc/ad_data. (easylistchina.txt: 2917) .funtude.com/include/inc/ad_data\. -# ||func.tw/image/func2.png (easylistchina+easylist.txt: 2934) +# ||func.tw/image/func2.png (easylistchina.txt: 2916) .func.tw/image/func2\.png -# ||fun.ynet.com^ (easylistchina+easylist.txt: 2933) +# ||fun.ynet.com^ (easylistchina.txt: 2915) .fun.ynet.com -# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina+easylist.txt: 2932) +# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina.txt: 2914) .fumanhua.com/template/.*/images/g_js/ -# ||fullyu.com/js-lib/jquery.modal. (easylistchina+easylist.txt: 2931) +# ||fullyu.com/js-lib/jquery.modal. (easylistchina.txt: 2913) .fullyu.com/js-lib/jquery\.modal\. -# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina+easylist.txt: 2930) +# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina.txt: 2912) .fulitie.org/wp-content/themes/D8_4\.0/js/guanbi-no\.js -# ||fulidang.com/ads/ (easylistchina+easylist.txt: 2929) +# ||fulidang.com/ads/ (easylistchina.txt: 2911) .fulidang.com/ads/ -# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina+easylist.txt: 2928) +# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina.txt: 2910) .fububu.com/zb_users/THEME/LuSongSong/style/ads/ -# ||ftchinese.com/m/marketing/ad.html (easylistchina+easylist.txt: 2927) +# ||ftchinese.com/m/marketing/ad.html (easylistchina.txt: 2909) .ftchinese.com/m/marketing/ad\.html -# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina+easylist.txt: 2926) +# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina.txt: 2908) .fspcdn.com/main/fis/js/v11/play/pop-ad_ -# ||fsehome.com/images/ad_tan.js (easylistchina+easylist.txt: 2925) +# ||fsehome.com/images/ad_tan.js (easylistchina.txt: 2907) .fsehome.com/images/ad_tan\.js -# ||freep.cn/lianjie/qqtongji.js (easylistchina+easylist.txt: 2924) +# ||freep.cn/lianjie/qqtongji.js (easylistchina.txt: 2906) .freep.cn/lianjie/qqtongji\.js -# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina+easylist.txt: 2923) +# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina.txt: 2905) .freep.cn/3tb_1408171239008bu7512293\.jpg -# ||free9.net/myc/myc.js (easylistchina+easylist.txt: 2922) +# ||free9.net/myc/myc.js (easylistchina.txt: 2904) .free9.net/myc/myc\.js -# ||free9.net/images/pic/dhc2013.gif (easylistchina+easylist.txt: 2921) +# ||free9.net/images/pic/dhc2013.gif (easylistchina.txt: 2903) .free9.net/images/pic/dhc2013\.gif -# ||fragment.firefoxchina.cn/html/ (easylistchina+easylist.txt: 2920) +# ||fragment.firefoxchina.cn/html/ (easylistchina.txt: 2902) .fragment.firefoxchina.cn/html/ -# ||fpdisplay.com/upload/n_ad/ (easylistchina+easylist.txt: 2919) +# ||fpdisplay.com/upload/n_ad/ (easylistchina.txt: 2901) .fpdisplay.com/upload/n_ad/ -# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina+easylist.txt: 2918) +# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina.txt: 2900) .fpdisplay.com/templates/default/js/palyflash_ -# ||fpdisplay.com/images/*960X30. (easylistchina+easylist.txt: 2917) +# ||fpdisplay.com/images/*960X30. (easylistchina.txt: 2899) .fpdisplay.com/images/.*960X30\. -# ||fpdisplay.com/images/*960X230. (easylistchina+easylist.txt: 2916) +# ||fpdisplay.com/images/*960X230. (easylistchina.txt: 2898) .fpdisplay.com/images/.*960X230\. -# ||forum.techweb.com.cn/advtcnt.php (easylistchina+easylist.txt: 2915) +# ||forum.techweb.com.cn/advtcnt.php (easylistchina.txt: 2897) .forum.techweb.com.cn/advtcnt\.php -# ||forum.51nb.com/images/ (easylistchina+easylist.txt: 2914) +# ||forum.51nb.com/images/ (easylistchina.txt: 2896) .forum.51nb.com/images/ -# ||focus.cn/common/js/adm (easylistchina+easylist.txt: 2913) +# ||focus.cn/common/js/adm (easylistchina.txt: 2895) .focus.cn/common/js/adm -# ||fmdisk.com/templates/yythems/images/qq (easylistchina+easylist.txt: 2912) +# ||fmdisk.com/templates/yythems/images/qq (easylistchina.txt: 2894) .fmdisk.com/templates/yythems/images/qq -# ||fmdisk.com/ima/ (easylistchina+easylist.txt: 2911) +# ||fmdisk.com/ima/ (easylistchina.txt: 2893) .fmdisk.com/ima/ -# ||float.sandai.net^$object-subrequest (easylistchina+easylist.txt: 2910) +# ||float.sandai.net^$object-subrequest (easylistchina.txt: 2892) .float.sandai.net -# ||flighty.cn/templets/images/2345- (easylistchina+easylist.txt: 2909) +# ||flighty.cn/templets/images/2345- (easylistchina.txt: 2891) .flighty.cn/templets/images/2345- -# ||flighty.cn/images/kiees.jpg (easylistchina+easylist.txt: 2908) +# ||flighty.cn/images/kiees.jpg (easylistchina.txt: 2890) .flighty.cn/images/kiees\.jpg -# ||flash8.net/flash8_a_d_s/ (easylistchina+easylist.txt: 2907) +# ||flash8.net/flash8_a_d_s/ (easylistchina.txt: 2889) .flash8.net/flash8_a_d_s/ -# ||flash.mycar168.com/data/js/ (easylistchina+easylist.txt: 2906) +# ||flash.mycar168.com/data/js/ (easylistchina.txt: 2888) .flash.mycar168.com/data/js/ -# ||fjlyfdc.com.cn/hxhad/ (easylistchina+easylist.txt: 2905) +# ||fjlyfdc.com.cn/hxhad/ (easylistchina.txt: 2887) .fjlyfdc.com.cn/hxhad/ -# ||fj007.com/money/ (easylistchina+easylist.txt: 2904) +# ||fj007.com/money/ (easylistchina.txt: 2886) .fj007.com/money/ -# ||fj.sina.com.cn/iframe/63/ (easylistchina+easylist.txt: 2903) +# ||fj.sina.com.cn/iframe/63/ (easylistchina.txt: 2885) .fj.sina.com.cn/iframe/63/ -# ||firefoxchina.cn^*_topbanner (easylistchina+easylist.txt: 2902) +# ||firefoxchina.cn^*_topbanner (easylistchina.txt: 2884) .firefoxchina.cn/.*_topbanner -# ||firefoxchina.cn^*_couplet (easylistchina+easylist.txt: 2901) +# ||firefoxchina.cn^*_couplet (easylistchina.txt: 2883) .firefoxchina.cn/.*_couplet -# ||firefoxchina.cn^*49560. (easylistchina+easylist.txt: 2900) +# ||firefoxchina.cn^*49560. (easylistchina.txt: 2882) .firefoxchina.cn/.*49560\. -# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina+easylist.txt: 2899) +# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina.txt: 2881) .firefoxchina.cn/res/js/fchina_video-min\.js -# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina+easylist.txt: 2898) +# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina.txt: 2880) .firefoxchina.cn/2014/.*_foxphone\.png -# ||files.webcars.com.cn^*.swf?link= (easylistchina+easylist.txt: 2897) +# ||files.webcars.com.cn^*.swf?link= (easylistchina.txt: 2879) .files.webcars.com.cn/.*\.swf\?link= -# ||files.nyaa.se/a*.$image (easylistchina+easylist.txt: 2896) +# ||files.nyaa.se/a*.$image (easylistchina.txt: 2878) .files.nyaa.se/a.*\. -# ||files.nyaa.eu/a*.$image (easylistchina+easylist.txt: 2895) +# ||files.nyaa.eu/a*.$image (easylistchina.txt: 2877) .files.nyaa.eu/a.*\. -# ||file.ws.126.net/house/nj/*.swf (easylistchina+easylist.txt: 2894) +# ||file.ws.126.net/house/nj/*.swf (easylistchina.txt: 2876) .file.ws.126.net/house/nj/.*\.swf -# ||file.ws.126.net/house/jn/*.swf (easylistchina+easylist.txt: 2893) +# ||file.ws.126.net/house/jn/*.swf (easylistchina.txt: 2875) .file.ws.126.net/house/jn/.*\.swf -# ||file.ws.126.net/house/*/js/tc_ (easylistchina+easylist.txt: 2892) +# ||file.ws.126.net/house/*/js/tc_ (easylistchina.txt: 2874) .file.ws.126.net/house/.*/js/tc_ -# ||file.shmet.com/images/ (easylistchina+easylist.txt: 2891) +# ||file.shmet.com/images/ (easylistchina.txt: 2873) .file.shmet.com/images/ -# ||file.cloud.sogou.com/*/superzone/ (easylistchina+easylist.txt: 2890) +# ||file.cloud.sogou.com/*/superzone/ (easylistchina.txt: 2872) .file.cloud.sogou.com/.*/superzone/ -# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina+easylist.txt: 2889) +# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina.txt: 2871) .fhm.com.tw/js/colorbox/jquery\.colorbox\.js -# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina+easylist.txt: 2888) +# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina.txt: 2870) .fhm.com.tw/fhm_upload/full_ad_ -# ||fg.cc/logo/xierguanggao. (easylistchina+easylist.txt: 2887) +# ||fg.cc/logo/xierguanggao. (easylistchina.txt: 2869) .fg.cc/logo/xierguanggao\. -# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina+easylist.txt: 2886) +# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina.txt: 2868) .feng.com/aodoo3/view\.php\?what=zone:16& -# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina+easylist.txt: 2885) +# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina.txt: 2867) .feng.com/aodoo3/view\.php\?what=zone:13& -# ||feihu.la/Runtime/js/vod (easylistchina+easylist.txt: 2884) +# ||feihu.la/Runtime/js/vod (easylistchina.txt: 2866) .feihu.la/Runtime/js/vod -# ||feedss.com/uploadfile/ad/ (easylistchina+easylist.txt: 2883) +# ||feedss.com/uploadfile/ad/ (easylistchina.txt: 2865) .feedss.com/uploadfile/ad/ -# ||fdc.my0511.com^$script (easylistchina+easylist.txt: 2882) +# ||fdc.my0511.com^$script (easylistchina.txt: 2864) .fdc.my0511.com -# ||fdc.com.cn^*adv (easylistchina+easylist.txt: 2881) +# ||fdc.com.cn^*adv (easylistchina.txt: 2863) .fdc.com.cn/.*adv -# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina+easylist.txt: 2880) +# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina.txt: 2862) .fdc.com.cn/cms/js/home_js/.*_move_ -# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina+easylist.txt: 2879) +# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina.txt: 2861) .fdc.com.cn/cms/js/bbs/dl\.js -# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina+easylist.txt: 2878) +# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina.txt: 2860) .fdc.com.cn/cms/js/bbs/bbstonglan\.js -# ||faxingw.cn/js/wenba.js (easylistchina+easylist.txt: 2877) +# ||faxingw.cn/js/wenba.js (easylistchina.txt: 2859) .faxingw.cn/js/wenba\.js -# ||faxingw.cn/js/jiafa (easylistchina+easylist.txt: 2876) +# ||faxingw.cn/js/jiafa (easylistchina.txt: 2858) .faxingw.cn/js/jiafa -# ||faxingw.cn/js/detailgcbox.js (easylistchina+easylist.txt: 2875) +# ||faxingw.cn/js/detailgcbox.js (easylistchina.txt: 2857) .faxingw.cn/js/detailgcbox\.js -# ||faxingw.cn/js/*gg (easylistchina+easylist.txt: 2874) +# ||faxingw.cn/js/*gg (easylistchina.txt: 2856) .faxingw.cn/js/.*gg -# ||faxingw.cn/js/*ad (easylistchina+easylist.txt: 2873) +# ||faxingw.cn/js/*ad (easylistchina.txt: 2855) .faxingw.cn/js/.*ad -# ||faxingw.cn/js/*0 (easylistchina+easylist.txt: 2872) +# ||faxingw.cn/js/*0 (easylistchina.txt: 2854) .faxingw.cn/js/.*0 -# ||fantizi5.com/js/baiduad (easylistchina+easylist.txt: 2871) +# ||fantizi5.com/js/baiduad (easylistchina.txt: 2853) .fantizi5.com/js/baiduad -# ||fantizi5.com/js/ad*.js (easylistchina+easylist.txt: 2870) +# ||fantizi5.com/js/ad*.js (easylistchina.txt: 2852) .fantizi5.com/js/ad.*\.js -# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina+easylist.txt: 2869) +# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina.txt: 2851) .fanhaobao.net/wp-content/themes/xiu/js/single\.js -# ||fang99.com/JavaScript/advjs/ (easylistchina+easylist.txt: 2868) +# ||fang99.com/JavaScript/advjs/ (easylistchina.txt: 2850) .fang99.com/JavaScript/advjs/ -# ||fang.com/afp/door/ (easylistchina+easylist.txt: 2867) +# ||fang.com/afp/door/ (easylistchina.txt: 2849) .fang.com/afp/door/ -# ||fancai.com/Images/2014*.gif (easylistchina+easylist.txt: 2866) +# ||fancai.com/Images/2014*.gif (easylistchina.txt: 2848) .fancai.com/Images/2014.*\.gif -# ||familydoctor.com.cn/aiframe/ (easylistchina+easylist.txt: 2865) +# ||familydoctor.com.cn/aiframe/ (easylistchina.txt: 2847) .familydoctor.com.cn/aiframe/ -# ||faidns.com/image/site/faiscoAd/ (easylistchina+easylist.txt: 2864) +# ||faidns.com/image/site/faiscoAd/ (easylistchina.txt: 2846) .faidns.com/image/site/faiscoAd/ -# ||ezprice.com.tw/js/*_ysm_ (easylistchina+easylist.txt: 2863) +# ||ezprice.com.tw/js/*_ysm_ (easylistchina.txt: 2845) .ezprice.com.tw/js/.*_ysm_ -# ||ezprice.com.tw/ezysm/ (easylistchina+easylist.txt: 2862) +# ||ezprice.com.tw/ezysm/ (easylistchina.txt: 2844) .ezprice.com.tw/ezysm/ -# ||ezaozi.com/detail/*.js (easylistchina+easylist.txt: 2861) +# ||ezaozi.com/detail/*.js (easylistchina.txt: 2843) .ezaozi.com/detail/.*\.js -# ||eyuyao.com/yyad/ (easylistchina+easylist.txt: 2860) +# ||eyuyao.com/yyad/ (easylistchina.txt: 2842) .eyuyao.com/yyad/ -# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina+easylist.txt: 2859) +# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina.txt: 2841) .eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash\.jpg -# ||ettoday.net^*/ad/ (easylistchina+easylist.txt: 2858) +# ||ettoday.net^*/ad/ (easylistchina.txt: 2840) .ettoday.net/.*/ad/ -# ||ettoday.net/events/ad-tab/ (easylistchina+easylist.txt: 2857) +# ||ettoday.net/events/ad-tab/ (easylistchina.txt: 2839) .ettoday.net/events/ad-tab/ -# ||ettoday.net/banners/ (easylistchina+easylist.txt: 2856) +# ||ettoday.net/banners/ (easylistchina.txt: 2838) .ettoday.net/banners/ -# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina+easylist.txt: 2855) +# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina.txt: 2837) .etnet.com.hk/www/tc/stocks/ads/ -# ||etnet.com.hk/ad2014/ (easylistchina+easylist.txt: 2854) +# ||etnet.com.hk/ad2014/ (easylistchina.txt: 2836) .etnet.com.hk/ad2014/ -# ||etf88.com/swf/ (easylistchina+easylist.txt: 2853) +# ||etf88.com/swf/ (easylistchina.txt: 2835) .etf88.com/swf/ -# ||etf88.com/jjb/*_ad$script (easylistchina+easylist.txt: 2852) +# ||etf88.com/jjb/*_ad$script (easylistchina.txt: 2834) .etf88.com/jjb/.*_ad -# ||etest8.com/subcatejs/158/utitle158.js (easylistchina+easylist.txt: 2851) +# ||etest8.com/subcatejs/158/utitle158.js (easylistchina.txt: 2833) .etest8.com/subcatejs/158/utitle158\.js -# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina+easylist.txt: 2850) +# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina.txt: 2832) .etest8.com/subcatejs/158/tg158_330x190\.js -# ||etest8.com/style/full_floating.js (easylistchina+easylist.txt: 2849) +# ||etest8.com/style/full_floating.js (easylistchina.txt: 2831) .etest8.com/style/full_floating\.js -# ||etest8.com/style/950x90_2.js (easylistchina+easylist.txt: 2848) +# ||etest8.com/style/950x90_2.js (easylistchina.txt: 2830) .etest8.com/style/950x90_2\.js -# ||etdown.net/images/ad1 (easylistchina+easylist.txt: 2847) +# ||etdown.net/images/ad1 (easylistchina.txt: 2829) .etdown.net/images/ad1 -# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina+easylist.txt: 2846) +# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina.txt: 2828) .eprice.com.tw/js/swfobject-2\.3\.js -# ||eprice.com.tw/img/tw_m/ad/ (easylistchina+easylist.txt: 2845) +# ||eprice.com.tw/img/tw_m/ad/ (easylistchina.txt: 2827) .eprice.com.tw/img/tw_m/ad/ -# ||eprice.com.tw/img/dis/file/*.html (easylistchina+easylist.txt: 2844) -.eprice.com.tw/img/dis/file/.*\.html -# ||eprice.cn/image/upload/ad/ (easylistchina+easylist.txt: 2843) +# ||eprice.com.tw/img/dis/file/ (easylistchina.txt: 2826) +.eprice.com.tw/img/dis/file/ +# ||eprice.cn/image/upload/ad/ (easylistchina.txt: 2825) .eprice.cn/image/upload/ad/ -# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina+easylist.txt: 2842) +# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina.txt: 2824) .epinv.com/wp-content/themes/ep/tu/yinshu\.gif -# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina+easylist.txt: 2841) +# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina.txt: 2823) .epinv.com/wp-content/themes/ep/tu/.*250\.js -# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina+easylist.txt: 2840) +# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina.txt: 2822) .epinv.com/wp-content/themes/ep/js/single\.js -# ||eol.cn/js/global/jQuery_ads.js (easylistchina+easylist.txt: 2839) +# ||eol.cn/js/global/jQuery_ads.js (easylistchina.txt: 2821) .eol.cn/js/global/jQuery_ads\.js -# ||eol.cn/js/eol/ (easylistchina+easylist.txt: 2838) +# ||eol.cn/js/eol/ (easylistchina.txt: 2820) .eol.cn/js/eol/ -# ||entry.baidu.com/rp/home? (easylistchina+easylist.txt: 2837) +# ||entry.baidu.com/rp/home? (easylistchina.txt: 2819) .entry.baidu.com/rp/home\? -# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina+easylist.txt: 2836) +# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina.txt: 2818) .enshi.cn/userfiles/esrb/ -# ||enread.com/img/185-50.gif (easylistchina+easylist.txt: 2835) +# ||enread.com/img/185-50.gif (easylistchina.txt: 2817) .enread.com/img/185-50\.gif -# ||enjoy101.org/hk_rm_tab_ (easylistchina+easylist.txt: 2834) +# ||enjoy101.org/hk_rm_tab_ (easylistchina.txt: 2816) .enjoy101.org/hk_rm_tab_ -# ||enet.com.cn/mem_str_zoneid= (easylistchina+easylist.txt: 2833) +# ||enet.com.cn/mem_str_zoneid= (easylistchina.txt: 2815) .enet.com.cn/mem_str_zoneid= -# ||enet.com.cn/home/v6/includes/adv/ (easylistchina+easylist.txt: 2832) +# ||enet.com.cn/home/v6/includes/adv/ (easylistchina.txt: 2814) .enet.com.cn/home/v6/includes/adv/ -# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina+easylist.txt: 2831) +# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina.txt: 2813) .enet.com.cn/eschool/includes/gdtup/tu6/slide\.js -# ||ems183.cn/images/kiees (easylistchina+easylist.txt: 2830) +# ||ems183.cn/images/kiees (easylistchina.txt: 2812) .ems183.cn/images/kiees -# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina+easylist.txt: 2829) +# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina.txt: 2811) .embest-tech.cn/js/jquery\.blockUI\.js -# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina+easylist.txt: 2828) +# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina.txt: 2810) .emarketing.bot.com.tw/output/vi\.aspx\? -# ||elecfans.com/images2012/pcb.gif (easylistchina+easylist.txt: 2827) +# ||elecfans.com/images2012/pcb.gif (easylistchina.txt: 2809) .elecfans.com/images2012/pcb\.gif -# ||elecfans.com/baidu_m.html (easylistchina+easylist.txt: 2826) +# ||elecfans.com/baidu_m.html (easylistchina.txt: 2808) .elecfans.com/baidu_m\.html -# ||eeyy.com/uploadfile/img/beitou (easylistchina+easylist.txt: 2825) +# ||eeyy.com/uploadfile/img/beitou (easylistchina.txt: 2807) .eeyy.com/uploadfile/img/beitou -# ||eeyy.com/templates/js/other/yxj.js (easylistchina+easylist.txt: 2824) +# ||eeyy.com/templates/js/other/yxj.js (easylistchina.txt: 2806) .eeyy.com/templates/js/other/yxj\.js -# ||eeyy.com/otherhtml/js/ad650.js (easylistchina+easylist.txt: 2823) +# ||eeyy.com/otherhtml/js/ad650.js (easylistchina.txt: 2805) .eeyy.com/otherhtml/js/ad650\.js -# ||eeee42.com/Ads/ (easylistchina+easylist.txt: 2822) +# ||eeee42.com/Ads/ (easylistchina.txt: 2804) .eeee42.com/Ads/ -# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina+easylist.txt: 2821) +# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina.txt: 2803) .eduuu.com/gaokao/2015/bannerDaili\.js -# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina+easylist.txt: 2820) +# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina.txt: 2802) .educity.cn/self_text/text_disp\.aspx\?id= -# ||edu24ol.com/web_news/js/1100.jpg (easylistchina+easylist.txt: 2819) +# ||edu24ol.com/web_news/js/1100.jpg (easylistchina.txt: 2801) .edu24ol.com/web_news/js/1100\.jpg -# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina+easylist.txt: 2818) +# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina.txt: 2800) .edu24ol.com/web_news/images/cj_news\.jpg -# ||edu03.com/data/js.php?id= (easylistchina+easylist.txt: 2817) +# ||edu03.com/data/js.php?id= (easylistchina.txt: 2799) .edu03.com/data/js\.php\?id= -# ||ecmb.bdimg.com^ (easylistchina+easylist.txt: 2816) +# ||ecmb.bdimg.com^ (easylistchina.txt: 2798) .ecmb.bdimg.com -# ||ecma.bdimg.com^ (easylistchina+easylist.txt: 2815) +# ||ecma.bdimg.com^ (easylistchina.txt: 2797) .ecma.bdimg.com -# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina+easylist.txt: 2814) +# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina.txt: 2796) .ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb\.jpg -# ||ebrun.com/jfile/position/js/*.js (easylistchina+easylist.txt: 2813) +# ||ebrun.com/jfile/position/js/*.js (easylistchina.txt: 2795) .ebrun.com/jfile/position/js/.*\.js -# ||ebrun.com/jfile/lagou.js (easylistchina+easylist.txt: 2812) +# ||ebrun.com/jfile/lagou.js (easylistchina.txt: 2794) .ebrun.com/jfile/lagou\.js -# ||ebp.renren.com^ (easylistchina+easylist.txt: 2811) +# ||ebp.renren.com^ (easylistchina.txt: 2793) .ebp.renren.com -# ||ebiotrade.com/web_images/*.swf (easylistchina+easylist.txt: 2810) +# ||ebiotrade.com/web_images/*.swf (easylistchina.txt: 2792) .ebiotrade.com/web_images/.*\.swf -# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina+easylist.txt: 2809) +# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina.txt: 2791) .ebiotrade.com/newsf/js/news_top_banner\.js -# ||ebiotrade.com/newsf/js/inpic.js (easylistchina+easylist.txt: 2808) +# ||ebiotrade.com/newsf/js/inpic.js (easylistchina.txt: 2790) .ebiotrade.com/newsf/js/inpic\.js -# ||ebiotrade.com/jslibrary/js (easylistchina+easylist.txt: 2807) +# ||ebiotrade.com/jslibrary/js (easylistchina.txt: 2789) .ebiotrade.com/jslibrary/js -# ||eat-travel.com.tw^$third-party (easylistchina+easylist.txt: 2806) +# ||eat-travel.com.tw^$third-party (easylistchina.txt: 2788) .eat-travel.com.tw -# ||eastmoney.com/js/headbiggg_ (easylistchina+easylist.txt: 2805) +# ||eastmoney.com/js/headbiggg_ (easylistchina.txt: 2787) .eastmoney.com/js/headbiggg_ -# ||eastlady.cn/cssjs/indextopad.js (easylistchina+easylist.txt: 2804) +# ||eastlady.cn/cssjs/indextopad.js (easylistchina.txt: 2786) .eastlady.cn/cssjs/indextopad\.js -# ||eastlady.cn/cssjs/indexgg.js (easylistchina+easylist.txt: 2803) +# ||eastlady.cn/cssjs/indexgg.js (easylistchina.txt: 2785) .eastlady.cn/cssjs/indexgg\.js -# ||eastlady.cn/cssjs/indexbaner (easylistchina+easylist.txt: 2802) +# ||eastlady.cn/cssjs/indexbaner (easylistchina.txt: 2784) .eastlady.cn/cssjs/indexbaner -# ||eastday.com/k.js (easylistchina+easylist.txt: 2801) +# ||eastday.com/k.js (easylistchina.txt: 2783) .eastday.com/k\.js -# ||easou.com/online/banner/ (easylistchina+easylist.txt: 2800) +# ||easou.com/online/banner/ (easylistchina.txt: 2782) .easou.com/online/banner/ -# ||easou.com/brandImage/ad/ (easylistchina+easylist.txt: 2799) +# ||easou.com/brandImage/ad/ (easylistchina.txt: 2781) .easou.com/brandImage/ad/ -# ||eap.enorth.com.cn^ (easylistchina+easylist.txt: 2798) +# ||eap.enorth.com.cn^ (easylistchina.txt: 2780) .eap.enorth.com.cn -# ||eap.big5.enorth.com.cn^ (easylistchina+easylist.txt: 2797) +# ||eap.big5.enorth.com.cn^ (easylistchina.txt: 2779) .eap.big5.enorth.com.cn -# ||e399.com/html/ (easylistchina+easylist.txt: 2796) +# ||e399.com/html/ (easylistchina.txt: 2778) .e399.com/html/ -# ||e23.cn/js/aaa.js (easylistchina+easylist.txt: 2795) +# ||e23.cn/js/aaa.js (easylistchina.txt: 2777) .e23.cn/js/aaa\.js -# ||e0575.com/pic/AD_ (easylistchina+easylist.txt: 2794) +# ||e0575.com/pic/AD_ (easylistchina.txt: 2776) .e0575.com/pic/AD_ -# ||e0575.com/attachment/image/*_flash.swf (easylistchina+easylist.txt: 2793) +# ||e0575.com/attachment/image/20160106024028_1.jpg (easylistchina.txt: 2775) +.e0575.com/attachment/image/20160106024028_1\.jpg +# ||e0575.com/attachment/image/*_flash.swf (easylistchina.txt: 2774) .e0575.com/attachment/image/.*_flash\.swf -# ||e0575.cn/js/float.js (easylistchina+easylist.txt: 2792) +# ||e0575.cn/js/float.js (easylistchina.txt: 2773) .e0575.cn/js/float\.js -# ||e0575.cn/js/advBigPopup/ (easylistchina+easylist.txt: 2791) +# ||e0575.cn/js/advBigPopup/ (easylistchina.txt: 2772) .e0575.cn/js/advBigPopup/ -# ||e0575.cn/images/v1/dl/ (easylistchina+easylist.txt: 2790) +# ||e0575.cn/images/v1/dl/ (easylistchina.txt: 2771) .e0575.cn/images/v1/dl/ -# ||e0421.com/css/js/tl (easylistchina+easylist.txt: 2789) +# ||e0421.com/css/js/tl (easylistchina.txt: 2770) .e0421.com/css/js/tl -# ||e0421.com/css/js/bd (easylistchina+easylist.txt: 2788) +# ||e0421.com/css/js/bd (easylistchina.txt: 2769) .e0421.com/css/js/bd -# ||e0421.com/*tj.js (easylistchina+easylist.txt: 2787) +# ||e0421.com/*tj.js (easylistchina.txt: 2768) .e0421.com/.*tj\.js -# ||e.yycqc.com^ (easylistchina+easylist.txt: 2786) +# ||e.yycqc.com^ (easylistchina.txt: 2767) .e.yycqc.com -# ||e.hnr.cn/choose/view/ (easylistchina+easylist.txt: 2785) +# ||e.hnr.cn/choose/view/ (easylistchina.txt: 2766) .e.hnr.cn/choose/view/ -# ||e.changyan.sohu.com/dataService/getData? (easylistchina+easylist.txt: 2784) +# ||e.changyan.sohu.com/dataService/getData? (easylistchina.txt: 2765) .e.changyan.sohu.com/dataService/getData\? -# ||dzwww.com/k.js (easylistchina+easylist.txt: 2783) +# ||dzwww.com/k.js (easylistchina.txt: 2764) .dzwww.com/k\.js -# ||dzwww.com/images/W020140912508314044024.gif (easylistchina+easylist.txt: 2782) +# ||dzwww.com/images/W020140912508314044024.gif (easylistchina.txt: 2763) .dzwww.com/images/W020140912508314044024\.gif -# ||dzwww.com/data/js/asp_$script (easylistchina+easylist.txt: 2781) +# ||dzwww.com/data/js/asp_$script (easylistchina.txt: 2762) .dzwww.com/data/js/asp_ -# ||dz320.com/desktop (easylistchina+easylist.txt: 2780) +# ||dz320.com/desktop (easylistchina.txt: 2761) .dz320.com/desktop -# ||dytt8.net/js2/ (easylistchina+easylist.txt: 2779) +# ||dytt8.net/js2/ (easylistchina.txt: 2760) .dytt8.net/js2/ -# ||dyhjw.com/dyhjw/left/new.js (easylistchina+easylist.txt: 2778) +# ||dyhjw.com/dyhjw/left/new.js (easylistchina.txt: 2759) .dyhjw.com/dyhjw/left/new\.js -# ||dyhjw.com/dyhjw/4.htm (easylistchina+easylist.txt: 2777) +# ||dyhjw.com/dyhjw/4.htm (easylistchina.txt: 2758) .dyhjw.com/dyhjw/4\.htm -# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina+easylist.txt: 2776) +# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina.txt: 2757) .dyhjw.com/dyhjw/1/3/471\.gif -# ||dyhjw.com/dyhjw/1.htm (easylistchina+easylist.txt: 2775) +# ||dyhjw.com/dyhjw/1.htm (easylistchina.txt: 2756) .dyhjw.com/dyhjw/1\.htm -# ||dydh.tv/statics/js/tuku (easylistchina+easylist.txt: 2774) +# ||dydh.tv/statics/js/tuku (easylistchina.txt: 2755) .dydh.tv/statics/js/tuku -# ||dydh.tv/img/960.gif (easylistchina+easylist.txt: 2773) +# ||dydh.tv/img/960.gif (easylistchina.txt: 2754) .dydh.tv/img/960\.gif -# ||dydh.tv/img/384.gif (easylistchina+easylist.txt: 2772) +# ||dydh.tv/img/384.gif (easylistchina.txt: 2753) .dydh.tv/img/384\.gif -# ||dydh.tv/img/2345.gif (easylistchina+easylist.txt: 2771) +# ||dydh.tv/img/2345.gif (easylistchina.txt: 2752) .dydh.tv/img/2345\.gif -# ||dy2018.com/dianyq/ (easylistchina+easylist.txt: 2770) +# ||dy2018.com/dianyq/ (easylistchina.txt: 2751) .dy2018.com/dianyq/ -# ||dxrc.cn/images/sy.gif (easylistchina+easylist.txt: 2769) +# ||dxrc.cn/images/sy.gif (easylistchina.txt: 2750) .dxrc.cn/images/sy\.gif -# ||dxrc.cn/ad1/ (easylistchina+easylist.txt: 2768) +# ||dxrc.cn/ad1/ (easylistchina.txt: 2749) .dxrc.cn/ad1/ -# ||dxlwwang.com/style/js/jeminMain. (easylistchina+easylist.txt: 2767) +# ||dxlwwang.com/style/js/jeminMain. (easylistchina.txt: 2748) .dxlwwang.com/style/js/jeminMain\. -# ||dxlwwang.com/style/images/bar (easylistchina+easylist.txt: 2766) +# ||dxlwwang.com/style/images/bar (easylistchina.txt: 2747) .dxlwwang.com/style/images/bar -# ||dxlwwang.com/contact_js/contact.js (easylistchina+easylist.txt: 2765) +# ||dxlwwang.com/contact_js/contact.js (easylistchina.txt: 2746) .dxlwwang.com/contact_js/contact\.js -# ||dwstatic.com^*/p/livetip/ (easylistchina+easylist.txt: 2764) +# ||dwstatic.com^*/p/livetip/ (easylistchina.txt: 2745) .dwstatic.com/.*/p/livetip/ -# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina+easylist.txt: 2763) +# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina.txt: 2744) .dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1\.js -# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina+easylist.txt: 2762) +# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina.txt: 2743) .dwstatic.com/amkit/p/duya/special/list-notice/banner-app\.jpg -# ||dw138.com/a12345/ (easylistchina+easylist.txt: 2761) +# ||dw138.com/a12345/ (easylistchina.txt: 2742) .dw138.com/a12345/ -# ||dvser.china.com^ (easylistchina+easylist.txt: 2760) +# ||dvser.china.com^ (easylistchina.txt: 2741) .dvser.china.com -# ||dvs.china.com^ (easylistchina+easylist.txt: 2759) +# ||dvs.china.com^ (easylistchina.txt: 2740) .dvs.china.com -# ||dvbcn.com/yinyong/show/news_right_ (easylistchina+easylist.txt: 2758) +# ||dvbcn.com/yinyong/show/news_right_ (easylistchina.txt: 2739) .dvbcn.com/yinyong/show/news_right_ -# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina+easylist.txt: 2757) +# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina.txt: 2738) .dvbcn.com/uploadfile/2015/0202/20150202050700880\.png -# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina+easylist.txt: 2756) +# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina.txt: 2737) .dvbcn.com/phpcms/templates/2012/news\.html -# ||dvbcn.com/index.php?m=poster& (easylistchina+easylist.txt: 2755) +# ||dvbcn.com/index.php?m=poster& (easylistchina.txt: 2736) .dvbcn.com/index\.php\?m=poster& -# ||dushiwenxue.com/add/ (easylistchina+easylist.txt: 2754) +# ||dushiwenxue.com/add/ (easylistchina.txt: 2735) .dushiwenxue.com/add/ -# ||dup.baidustatic.com/js/ (easylistchina+easylist.txt: 2753) +# ||dup.baidustatic.com/js/ (easylistchina.txt: 2734) .dup.baidustatic.com/js/ -# ||duoxiai.com.cn/imgad/ (easylistchina+easylist.txt: 2752) +# ||duoxiai.com.cn/imgad/ (easylistchina.txt: 2733) .duoxiai.com.cn/imgad/ -# ||duowan.com/s/yuanbao-entrance.js (easylistchina+easylist.txt: 2751) +# ||duowan.com/s/yuanbao-entrance.js (easylistchina.txt: 2732) .duowan.com/s/yuanbao-entrance\.js -# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina+easylist.txt: 2750) +# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina.txt: 2731) .duowan.com/lgn/x/images/lgnadv/ -# ||duonao.tv/upload/image/*.swf (easylistchina+easylist.txt: 2749) +# ||duonao.tv/upload/image/*.swf (easylistchina.txt: 2730) .duonao.tv/upload/image/.*\.swf -# ||duonao.tv/upload/image/*.gif (easylistchina+easylist.txt: 2748) +# ||duonao.tv/upload/image/*.gif (easylistchina.txt: 2729) .duonao.tv/upload/image/.*\.gif -# ||duonao.tv//upload/$object-subrequest (easylistchina+easylist.txt: 2747) -# ||duba.com/static/v3/images/*.swf (easylistchina+easylist.txt: 2746) +# ||duonao.tv//upload/$object-subrequest (easylistchina.txt: 2728) +# ||duba.com/static/v3/images/*.swf (easylistchina.txt: 2727) .duba.com/static/v3/images/.*\.swf -# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina+easylist.txt: 2744) +# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina.txt: 2725) .dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q\.jpg -# ||drupalchina.cn/sites/default/files/osforce- (easylistchina+easylist.txt: 2743) +# ||drupalchina.cn/sites/default/files/osforce- (easylistchina.txt: 2724) .drupalchina.cn/sites/default/files/osforce- -# ||drupalchina.cn/sites/default/files/lagou- (easylistchina+easylist.txt: 2742) +# ||drupalchina.cn/sites/default/files/lagou- (easylistchina.txt: 2723) .drupalchina.cn/sites/default/files/lagou- -# ||drupalchina.cn/sites/default/files/banner/ (easylistchina+easylist.txt: 2741) +# ||drupalchina.cn/sites/default/files/banner/ (easylistchina.txt: 2722) .drupalchina.cn/sites/default/files/banner/ -# ||drivergenius.com/inc/driverwwwad.js (easylistchina+easylist.txt: 2740) +# ||drivergenius.com/inc/driverwwwad.js (easylistchina.txt: 2721) .drivergenius.com/inc/driverwwwad\.js -# ||dre8.com/tieba/zh-tb/so.html (easylistchina+easylist.txt: 2739) +# ||dre8.com/tieba/zh-tb/so.html (easylistchina.txt: 2720) .dre8.com/tieba/zh-tb/so\.html -# ||dqdm.com/js/dqdm/nei960 (easylistchina+easylist.txt: 2738) +# ||dqdm.com/js/dqdm/nei960 (easylistchina.txt: 2719) .dqdm.com/js/dqdm/nei960 -# ||dpfile.com/pc/trip/*(600x400) (easylistchina+easylist.txt: 2737) +# ||dpfile.com/pc/trip/*(600x400) (easylistchina.txt: 2718) .dpfile.com/pc/trip/.*\(600x400\) -# ||dpfile.com/pc/ad/ (easylistchina+easylist.txt: 2736) -.dpfile.com/pc/ad/ -# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina+easylist.txt: 2735) +# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina.txt: 2717) .doyo.cn/Tpl/web/Public/images/material/www_couplets/ -# ||downza.cn/html/skin/default/ad/ (easylistchina+easylist.txt: 2734) +# ||downza.cn/html/skin/default/ad/ (easylistchina.txt: 2716) .downza.cn/html/skin/default/ad/ -# ||downyi.com/tg/ (easylistchina+easylist.txt: 2733) +# ||downyi.com/tg/ (easylistchina.txt: 2715) .downyi.com/tg/ -# ||downxia.com/zejs/soft (easylistchina+easylist.txt: 2732) +# ||downxia.com/zejs/soft (easylistchina.txt: 2714) .downxia.com/zejs/soft -# ||downxia.com/zejs/ad (easylistchina+easylist.txt: 2731) +# ||downxia.com/zejs/ad (easylistchina.txt: 2713) .downxia.com/zejs/ad -# ||downxia.com/haojs/ (easylistchina+easylist.txt: 2730) +# ||downxia.com/haojs/ (easylistchina.txt: 2712) .downxia.com/haojs/ -# ||downxia.com/dgjs/download.js (easylistchina+easylist.txt: 2729) +# ||downxia.com/dgjs/download.js (easylistchina.txt: 2711) .downxia.com/dgjs/download\.js -# ||download.game.yy.com/resource/fodder/*.flv (easylistchina+easylist.txt: 2728) +# ||download.game.yy.com/resource/fodder/*.flv (easylistchina.txt: 2710) .download.game.yy.com/resource/fodder/.*\.flv -# ||download.game.yy.com/crossdomain.xml (easylistchina+easylist.txt: 2727) +# ||download.game.yy.com/crossdomain.xml (easylistchina.txt: 2709) .download.game.yy.com/crossdomain\.xml -# ||downkr.com/statics/js/all.js (easylistchina+easylist.txt: 2726) +# ||downkr.com/statics/js/all.js (easylistchina.txt: 2708) .downkr.com/statics/js/all\.js -# ||downcc.com/js/66060.gif (easylistchina+easylist.txt: 2725) +# ||downcc.com/js/66060.gif (easylistchina.txt: 2707) .downcc.com/js/66060\.gif -# ||downbank.cn/soft6/ (easylistchina+easylist.txt: 2724) +# ||downbank.cn/soft6/ (easylistchina.txt: 2706) .downbank.cn/soft6/ -# ||downbank.cn/s1/ (easylistchina+easylist.txt: 2723) +# ||downbank.cn/s1/ (easylistchina.txt: 2705) .downbank.cn/s1/ -# ||downbank.cn/jkzm/ (easylistchina+easylist.txt: 2722) +# ||downbank.cn/jkzm/ (easylistchina.txt: 2704) .downbank.cn/jkzm/ -# ||down12.com/htmlg/D*.js (easylistchina+easylist.txt: 2721) +# ||down12.com/htmlg/D*.js (easylistchina.txt: 2703) .down12.com/htmlg/D.*\.js -# ||down.it168.com/ggimg/ (easylistchina+easylist.txt: 2720) +# ||down.it168.com/ggimg/ (easylistchina.txt: 2702) .down.it168.com/ggimg/ -# ||down.admin5.com/z/ (easylistchina+easylist.txt: 2719) +# ||down.admin5.com/z/ (easylistchina.txt: 2701) .down.admin5.com/z/ -# ||douyutv.com/upload/signs/*.swf (easylistchina+easylist.txt: 2718) +# ||douyutv.com/upload/signs/*.swf (easylistchina.txt: 2700) .douyutv.com/upload/signs/.*\.swf -# ||douguo.net/upload/post/d/ (easylistchina+easylist.txt: 2717) +# ||douguo.net/upload/post/d/ (easylistchina.txt: 2699) .douguo.net/upload/post/d/ -# ||doubleclick.tv002.com^ (easylistchina+easylist.txt: 2716) +# ||doubleclick.tv002.com^ (easylistchina.txt: 2698) .doubleclick.tv002.com -# ||doubanio.com^*/js/ad. (easylistchina+easylist.txt: 2715) +# ||doubanio.com^*/js/ad. (easylistchina.txt: 2697) .doubanio.com/.*/js/ad\. -# ||douban.com^*/rda/$object-subrequest (easylistchina+easylist.txt: 2714) +# ||douban.com^*/rda/$object-subrequest (easylistchina.txt: 2696) .douban.com/.*/rda/ -# ||douban.com^*/fm_bgad.js (easylistchina+easylist.txt: 2713) +# ||douban.com^*/fm_bgad.js (easylistchina.txt: 2695) .douban.com/.*/fm_bgad\.js -# ||douban.com/view/dale-online/dale_ad (easylistchina+easylist.txt: 2712) +# ||douban.com/view/dale-online/dale_ad (easylistchina.txt: 2694) .douban.com/view/dale-online/dale_ad -# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina+easylist.txt: 2711) +# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina.txt: 2693) .douban.com/\?unit=dale_movie_trailer_after_play& -# ||dota2.uuu9.com^$subdocument (easylistchina+easylist.txt: 2710) +# ||dota2.uuu9.com^$subdocument (easylistchina.txt: 2692) .dota2.uuu9.com -# ||dospy.com/hezuo/ (easylistchina+easylist.txt: 2709) +# ||dospy.com/hezuo/ (easylistchina.txt: 2691) .dospy.com/hezuo/ -# ||dongfangtai.com/js/duil.js (easylistchina+easylist.txt: 2708) +# ||dongfangtai.com/js/duil.js (easylistchina.txt: 2690) .dongfangtai.com/js/duil\.js -# ||domeng.cn/js/index_ (easylistchina+easylist.txt: 2707) +# ||domeng.cn/js/index_ (easylistchina.txt: 2689) .domeng.cn/js/index_ -# ||dolphin.ftimg.net/s? (easylistchina+easylist.txt: 2706) +# ||dolphin.ftimg.net/s? (easylistchina.txt: 2688) .dolphin.ftimg.net/s\? -# ||dol.tianya.cn/s?z=tianya&c= (easylistchina+easylist.txt: 2705) +# ||dol.tianya.cn/s?z=tianya&c= (easylistchina.txt: 2687) .dol.tianya.cn/s\?z=tianya&c= -# ||doguo.com/api/vip_discount.js (easylistchina+easylist.txt: 2704) +# ||doguo.com/api/vip_discount.js (easylistchina.txt: 2686) .doguo.com/api/vip_discount\.js -# ||dodo8.com/inc/$script (easylistchina+easylist.txt: 2703) +# ||dodo8.com/inc/$script (easylistchina.txt: 2685) .dodo8.com/inc/ -# ||docin.com/jsp_cn/ad/ (easylistchina+easylist.txt: 2702) +# ||docin.com/jsp_cn/ad/ (easylistchina.txt: 2684) .docin.com/jsp_cn/ad/ -# ||docin.com/docin_adv/ (easylistchina+easylist.txt: 2701) +# ||docin.com/docin_adv/ (easylistchina.txt: 2683) .docin.com/docin_adv/ -# ||docin.com/app/a_d/ (easylistchina+easylist.txt: 2700) +# ||docin.com/app/a_d/ (easylistchina.txt: 2682) .docin.com/app/a_d/ -# ||doc88.com/assets/js/myad.js (easylistchina+easylist.txt: 2699) +# ||doc88.com/assets/js/myad.js (easylistchina.txt: 2681) .doc88.com/assets/js/myad\.js -# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina+easylist.txt: 2698) +# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina.txt: 2680) .do189.com/zb_users/theme/duoyi/style/images/.*\.gif -# ||dnwx.com/pic_ad/ (easylistchina+easylist.txt: 2697) +# ||dnwx.com/pic_ad/ (easylistchina.txt: 2679) .dnwx.com/pic_ad/ -# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina+easylist.txt: 2696) +# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina.txt: 2678) .dnwx.com/pic/xitongba-468-2\.gif -# ||dnwx.com/pic/lg.gif (easylistchina+easylist.txt: 2695) +# ||dnwx.com/pic/lg.gif (easylistchina.txt: 2677) .dnwx.com/pic/lg\.gif -# ||dnwx.com/pic/*_978x (easylistchina+easylist.txt: 2694) +# ||dnwx.com/pic/*_978x (easylistchina.txt: 2676) .dnwx.com/pic/.*_978x -# ||dnwx.com/pic/*-960x60. (easylistchina+easylist.txt: 2693) +# ||dnwx.com/pic/*-960x60. (easylistchina.txt: 2675) .dnwx.com/pic/.*-960x60\. -# ||dnwx.com*/ad$image (easylistchina+easylist.txt: 2692) +# ||dnwx.com*/ad$image (easylistchina.txt: 2674) .dnwx.com*./(.*/)?ad -# ||dnvod.eu/upload/image/*.swf (easylistchina+easylist.txt: 2691) +# ||dnvod.eu/upload/image/*.swf (easylistchina.txt: 2673) .dnvod.eu/upload/image/.*\.swf -# ||dnvod.eu/upload/image/*.gif (easylistchina+easylist.txt: 2690) +# ||dnvod.eu/upload/image/*.gif (easylistchina.txt: 2672) .dnvod.eu/upload/image/.*\.gif -# ||dnvod.eu//upload/$object-subrequest (easylistchina+easylist.txt: 2689) -# ||dnpz.net/templets/images/lunbo/ (easylistchina+easylist.txt: 2688) +# ||dnvod.eu//upload/$object-subrequest (easylistchina.txt: 2671) +# ||dnpz.net/templets/images/lunbo/ (easylistchina.txt: 2670) .dnpz.net/templets/images/lunbo/ -# ||dngame.eu/dngcenter/default.aspx (easylistchina+easylist.txt: 2687) +# ||dngame.eu/dngcenter/default.aspx (easylistchina.txt: 2669) .dngame.eu/dngcenter/default\.aspx -# ||dn-yahoo.qbox.me/be (easylistchina+easylist.txt: 2686) -.dn-yahoo.qbox.me/be -# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina+easylist.txt: 2685) +# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina.txt: 2668) .dn-ttdaili.qbox.me/bdqb/ -# ||dn-okey.qbox.me/v*.js (easylistchina+easylist.txt: 2684) -.dn-okey.qbox.me/v.*\.js -# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina+easylist.txt: 2683) +# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina.txt: 2667) .dn-cnodestatic.qbox.me/public/images/.*-banner- -# ||dmmfx.com.au/dmm-tag/ (easylistchina+easylist.txt: 2682) +# ||dmmfx.com.au/dmm-tag/ (easylistchina.txt: 2666) .dmmfx.com.au/dmm-tag/ -# ||dmhua.net/js/bd_ (easylistchina+easylist.txt: 2681) +# ||dmhua.net/js/bd_ (easylistchina.txt: 2665) .dmhua.net/js/bd_ -# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina+easylist.txt: 2680) +# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina.txt: 2664) .dmfans.net/template/haokandemanhhua/images/g_js/ -# ||dm530.com/pic/fgr/*.js (easylistchina+easylist.txt: 2679) +# ||dm530.com/pic/fgr/*.js (easylistchina.txt: 2663) .dm530.com/pic/fgr/.*\.js -# ||dm456.com/m/ (easylistchina+easylist.txt: 2678) +# ||dm456.com/m/ (easylistchina.txt: 2662) .dm456.com/m/ -# ||dm456.com/install/loading.html (easylistchina+easylist.txt: 2677) +# ||dm456.com/install/loading.html (easylistchina.txt: 2661) .dm456.com/install/loading\.html -# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina+easylist.txt: 2676) +# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina.txt: 2660) .dl-l-tax.gov.cn/js/2floating\.js -# ||djwma.com/tc.js (easylistchina+easylist.txt: 2675) +# ||djwma.com/tc.js (easylistchina.txt: 2659) .djwma.com/tc\.js -# ||djwma.com/qq.jpg (easylistchina+easylist.txt: 2674) +# ||djwma.com/qq.jpg (easylistchina.txt: 2658) .djwma.com/qq\.jpg -# ||djwma.com/960*.gif (easylistchina+easylist.txt: 2673) +# ||djwma.com/960*.gif (easylistchina.txt: 2657) .djwma.com/960.*\.gif -# ||djwma.com/760*.gif (easylistchina+easylist.txt: 2672) +# ||djwma.com/760*.gif (easylistchina.txt: 2656) .djwma.com/760.*\.gif -# ||djkk.com/ak/ (easylistchina+easylist.txt: 2671) +# ||djkk.com/ak/ (easylistchina.txt: 2655) .djkk.com/ak/ -# ||djccc.com/js/c*.js (easylistchina+easylist.txt: 2670) +# ||djccc.com/js/c*.js (easylistchina.txt: 2654) .djccc.com/js/c.*\.js -# ||djccc.com/js/b*.js (easylistchina+easylist.txt: 2669) +# ||djccc.com/js/b*.js (easylistchina.txt: 2653) .djccc.com/js/b.*\.js -# ||djccc.com/js/a*.js (easylistchina+easylist.txt: 2668) +# ||djccc.com/js/a*.js (easylistchina.txt: 2652) .djccc.com/js/a.*\.js -# ||dj97.com/js/list_right_ (easylistchina+easylist.txt: 2667) +# ||dj97.com/js/list_right_ (easylistchina.txt: 2651) .dj97.com/js/list_right_ -# ||dj520.com/js/stj.js (easylistchina+easylist.txt: 2666) +# ||dj520.com/js/stj.js (easylistchina.txt: 2650) .dj520.com/js/stj\.js -# ||divcss5.com/wy/top465.js (easylistchina+easylist.txt: 2665) +# ||divcss5.com/wy/top465.js (easylistchina.txt: 2649) .divcss5.com/wy/top465\.js -# ||divcss5.com*/liping/ (easylistchina+easylist.txt: 2664) +# ||divcss5.com*/liping/ (easylistchina.txt: 2648) .divcss5.com*./(.*/)?liping/ -# ||divcss5.com*/ibeifeng/ (easylistchina+easylist.txt: 2663) +# ||divcss5.com*/ibeifeng/ (easylistchina.txt: 2647) .divcss5.com*./(.*/)?ibeifeng/ -# ||divcss5.com*/enkj/ (easylistchina+easylist.txt: 2662) +# ||divcss5.com*/enkj/ (easylistchina.txt: 2646) .divcss5.com*./(.*/)?enkj/ -# ||disk1.net/i/2/900%C3%9740.gif (easylistchina+easylist.txt: 2661) +# ||disk1.net/i/2/900%C3%9740.gif (easylistchina.txt: 2645) .disk1.net/i/2/900%C3%9740\.gif -# ||discuzlab.com/data/attachment/portal/ (easylistchina+easylist.txt: 2660) +# ||discuzlab.com/data/attachment/portal/ (easylistchina.txt: 2644) .discuzlab.com/data/attachment/portal/ -# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina+easylist.txt: 2659) +# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina.txt: 2643) .discuz.gtimg.cn/cloud/scripts/discuz_tips\.js -# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina+easylist.txt: 2658) +# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina.txt: 2642) .discuss.com.hk/dfp_forum\.php\?au=Discuss_Web_ -# ||dioguitar23.*/images/*.gif (easylistchina+easylist.txt: 2657) +# ||dioguitar23.*/images/*.gif (easylistchina.txt: 2641) .dioguitar23.*./(.*/)?images/.*\.gif -# ||dilidili.com/js/w*.js (easylistchina+easylist.txt: 2656) +# ||dilidili.com/js/w*.js (easylistchina.txt: 2640) .dilidili.com/js/w.*\.js -# ||dilidili.com/js/right (easylistchina+easylist.txt: 2655) +# ||dilidili.com/js/right (easylistchina.txt: 2639) .dilidili.com/js/right -# ||dilidili.com/js/index.js (easylistchina+easylist.txt: 2654) +# ||dilidili.com/js/index.js (easylistchina.txt: 2638) .dilidili.com/js/index\.js -# ||dig.chouti.com/advert (easylistchina+easylist.txt: 2653) +# ||dig.chouti.com/advert (easylistchina.txt: 2637) .dig.chouti.com/advert -# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina+easylist.txt: 2652) +# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina.txt: 2636) .didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D\.png -# ||didamoe.com/js/xuanfu.js (easylistchina+easylist.txt: 2651) +# ||didamoe.com/js/xuanfu.js (easylistchina.txt: 2635) .didamoe.com/js/xuanfu\.js -# ||didamoe.com/js/play_ (easylistchina+easylist.txt: 2650) +# ||didamoe.com/js/play_ (easylistchina.txt: 2634) .didamoe.com/js/play_ -# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina+easylist.txt: 2649) +# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina.txt: 2633) .dichan.com.au/newhouse/pinnacle/images/bcastr3\.swf -# ||diannaoxitong.com/js/*.gif (easylistchina+easylist.txt: 2648) +# ||diannaoxitong.com/js/*.gif (easylistchina.txt: 2632) .diannaoxitong.com/js/.*\.gif -# ||diancloud.com/ghost/banner/ (easylistchina+easylist.txt: 2647) -.diancloud.com/ghost/banner/ -# ||dg.073img.com^ (easylistchina+easylist.txt: 2646) +# ||dg.073img.com^ (easylistchina.txt: 2631) .dg.073img.com -# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina+easylist.txt: 2645) +# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina.txt: 2630) .dfcfw.com/js/tg/rightAd_v2\.js -# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina+easylist.txt: 2644) +# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina.txt: 2629) .dfcfw.com/js/pinzhong/bdbottom_ -# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina+easylist.txt: 2643) +# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina.txt: 2628) .dfcfw.com/js/pinzhong/bd_pz_side_ -# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina+easylist.txt: 2642) +# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina.txt: 2627) .dfcfw.com/js/.*/emfloatmedia_ -# ||dfad.dfdaily.com^ (easylistchina+easylist.txt: 2641) +# ||dfad.dfdaily.com^ (easylistchina.txt: 2626) .dfad.dfdaily.com -# ||deyangs.com/img/ (easylistchina+easylist.txt: 2640) +# ||deyangs.com/img/ (easylistchina.txt: 2625) .deyangs.com/img/ -# ||dexiazai.com/333.jpg (easylistchina+easylist.txt: 2639) +# ||dexiazai.com/333.jpg (easylistchina.txt: 2624) .dexiazai.com/333\.jpg -# ||dexiazai.com/222.jpg (easylistchina+easylist.txt: 2638) +# ||dexiazai.com/222.jpg (easylistchina.txt: 2623) .dexiazai.com/222\.jpg -# ||dexiazai.com/111.jpg (easylistchina+easylist.txt: 2637) +# ||dexiazai.com/111.jpg (easylistchina.txt: 2622) .dexiazai.com/111\.jpg -# ||der4545.com/ok/ (easylistchina+easylist.txt: 2636) +# ||der4545.com/ok/ (easylistchina.txt: 2621) .der4545.com/ok/ -# ||demo.528500.com^*.swf (easylistchina+easylist.txt: 2635) +# ||demo.528500.com^*.swf (easylistchina.txt: 2620) .demo.528500.com/.*\.swf -# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina+easylist.txt: 2634) +# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina.txt: 2619) .dealmoon.com/upload/dealmoon_app\.jpg -# ||dealmoon.com/images/n/creditcard-160.png (easylistchina+easylist.txt: 2633) +# ||dealmoon.com/images/n/creditcard-160.png (easylistchina.txt: 2618) .dealmoon.com/images/n/creditcard-160\.png -# ||dealmoon.com/hotdeals/ (easylistchina+easylist.txt: 2632) +# ||dealmoon.com/hotdeals/ (easylistchina.txt: 2617) .dealmoon.com/hotdeals/ -# ||dealmoon.com/data/app/banners/ (easylistchina+easylist.txt: 2631) +# ||dealmoon.com/data/app/banners/ (easylistchina.txt: 2616) .dealmoon.com/data/app/banners/ -# ||de.as.pptv.com^ (easylistchina+easylist.txt: 2630) +# ||de.as.pptv.com^ (easylistchina.txt: 2615) .de.as.pptv.com -# ||ddooo.com/viewimg.asp?img= (easylistchina+easylist.txt: 2629) +# ||ddooo.com/viewimg.asp?img= (easylistchina.txt: 2614) .ddooo.com/viewimg\.asp\?img= -# ||ddooo.com/js/ (easylistchina+easylist.txt: 2628) +# ||ddooo.com/js/ (easylistchina.txt: 2613) .ddooo.com/js/ -# ||ddooo.com/duoduo/ (easylistchina+easylist.txt: 2627) +# ||ddooo.com/duoduo/ (easylistchina.txt: 2612) .ddooo.com/duoduo/ -# ||ddooo.com/ddjs/ (easylistchina+easylist.txt: 2626) +# ||ddooo.com/ddjs/ (easylistchina.txt: 2611) .ddooo.com/ddjs/ -# ||ddheli.com/k.js (easylistchina+easylist.txt: 2625) +# ||ddheli.com/k.js (easylistchina.txt: 2610) .ddheli.com/k\.js -# ||dddbbb.net^$script,subdocument (easylistchina+easylist.txt: 2624) +# ||dddbbb.net^$script,subdocument (easylistchina.txt: 2609) .dddbbb.net -# ||ddata.over-blog.com^*.gif (easylistchina+easylist.txt: 2623) -.ddata.over-blog.com/.*\.gif -# ||dd.xdnice.com^ (easylistchina+easylist.txt: 2622) +# ||dd.xdnice.com^ (easylistchina.txt: 2608) .dd.xdnice.com -# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina+easylist.txt: 2621) +# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina.txt: 2607) .dclick.autonet.com.tw/90/AC_RunActiveContent\.js -# ||dcfever.com/campaigns/ (easylistchina+easylist.txt: 2620) +# ||dcfever.com/campaigns/ (easylistchina.txt: 2606) .dcfever.com/campaigns/ -# ||dbw.cn/js/cp.js (easylistchina+easylist.txt: 2619) +# ||dbw.cn/js/cp.js (easylistchina.txt: 2605) .dbw.cn/js/cp\.js -# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina+easylist.txt: 2618) +# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina.txt: 2604) .dbw.cn/eap/js/hl/hlj_ad -# ||dbw.cn/eap/js/db/dbwad_ (easylistchina+easylist.txt: 2617) +# ||dbw.cn/eap/js/db/dbwad_ (easylistchina.txt: 2603) .dbw.cn/eap/js/db/dbwad_ -# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina+easylist.txt: 2616) +# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina.txt: 2602) .dbw.cn/0/07/18/40/7184029_146090\.jpg -# ||db28.cn/cache/ads.js (easylistchina+easylist.txt: 2615) +# ||db28.cn/cache/ads.js (easylistchina.txt: 2601) .db28.cn/cache/ads\.js -# ||dashuye.com/data/cache/myad*.htm (easylistchina+easylist.txt: 2614) +# ||dashuye.com/data/cache/myad*.htm (easylistchina.txt: 2600) .dashuye.com/data/cache/myad.*\.htm -# ||dashi.com/static/images/root_banner.jpg (easylistchina+easylist.txt: 2613) +# ||dashi.com/static/images/root_banner.jpg (easylistchina.txt: 2599) .dashi.com/static/images/root_banner\.jpg -# ||dashi.com/static/images/old_phone.jpg (easylistchina+easylist.txt: 2612) +# ||dashi.com/static/images/old_phone.jpg (easylistchina.txt: 2598) .dashi.com/static/images/old_phone\.jpg -# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina+easylist.txt: 2611) +# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina.txt: 2597) .dashi.com/static/images/jiaocheng_ad\.jpg -# ||dasai8.com/js/duilianjs.js (easylistchina+easylist.txt: 2610) +# ||dasai8.com/js/duilianjs.js (easylistchina.txt: 2596) .dasai8.com/js/duilianjs\.js -# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina+easylist.txt: 2609) +# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina.txt: 2595) .daqianduan.com/wp-content/uploads/.*lagou -# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina+easylist.txt: 2608) +# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina.txt: 2594) .daqianduan.com/wp-content/uploads/.*/ads.*\.jpg -# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina+easylist.txt: 2607) +# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina.txt: 2593) .daqianduan.com/wp-content/uploads/.*/ad- -# ||daohangtx.com/jishudaohang/indextop.js (easylistchina+easylist.txt: 2606) +# ||daohangtx.com/jishudaohang/indextop.js (easylistchina.txt: 2592) .daohangtx.com/jishudaohang/indextop\.js -# ||danyang.com/statics/banner.swf (easylistchina+easylist.txt: 2605) +# ||danyang.com/statics/banner.swf (easylistchina.txt: 2591) .danyang.com/statics/banner\.swf -# ||danlan.org/KFC/ (easylistchina+easylist.txt: 2604) +# ||danlan.org/KFC/ (easylistchina.txt: 2590) .danlan.org/KFC/ -# ||daimabiji.com/images/17558/198zone.gif (easylistchina+easylist.txt: 2603) +# ||daimabiji.com/images/17558/198zone.gif (easylistchina.txt: 2589) .daimabiji.com/images/17558/198zone\.gif -# ||dailynews.sina.com/gb/ads/ (easylistchina+easylist.txt: 2602) +# ||dailynews.sina.com/gb/ads/ (easylistchina.txt: 2588) .dailynews.sina.com/gb/ads/ -# ||dailyfx.com.hk/ext/lang-ad (easylistchina+easylist.txt: 2601) +# ||dailyfx.com.hk/ext/lang-ad (easylistchina.txt: 2587) .dailyfx.com.hk/ext/lang-ad -# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina+easylist.txt: 2600) +# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina.txt: 2586) .dabin69.com/template/comiis_ydzx/ads/topad01\.jpg -# ||dabin69.com/data/attachment/portal/ (easylistchina+easylist.txt: 2599) +# ||dabin69.com/data/attachment/portal/ (easylistchina.txt: 2585) .dabin69.com/data/attachment/portal/ -# ||dabaoku.com^$object,script,subdocument (easylistchina+easylist.txt: 2598) +# ||dabaoku.com^$object,script,subdocument (easylistchina.txt: 2584) .dabaoku.com -# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina+easylist.txt: 2597) +# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina.txt: 2583) .da-fan-shu.cn/images/kuaijie\.jpg -# ||d7w.net/static/d7wad/ (easylistchina+easylist.txt: 2596) +# ||d7w.net/static/d7wad/ (easylistchina.txt: 2582) .d7w.net/static/d7wad/ -# ||d7ol.com/pics/ad/ (easylistchina+easylist.txt: 2595) +# ||d7ol.com/pics/ad/ (easylistchina.txt: 2581) .d7ol.com/pics/ad/ -# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2594) +# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2580) .d5.sina.com.cn -# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2592) +# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2578) .d4.sina.com.cn -# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2591) +# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2577) .d3.sina.com.cn -# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2590) +# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2576) .d2.sina.com.cn -# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2589) +# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2575) .d1.sina.com.cn -# ||d1.shenchuang.com/a.htm (easylistchina+easylist.txt: 2588) +# ||d1.shenchuang.com/a.htm (easylistchina.txt: 2574) .d1.shenchuang.com/a\.htm -# ||d0.xcar.com.cn^ (easylistchina+easylist.txt: 2587) +# ||d0.xcar.com.cn^ (easylistchina.txt: 2573) .d0.xcar.com.cn -# ||d.taomato.com^ (easylistchina+easylist.txt: 2586) +# ||d.taomato.com^ (easylistchina.txt: 2572) .d.taomato.com -# ||d.pixiv.org/show?zone_id= (easylistchina+easylist.txt: 2585) +# ||d.pixiv.org/show?zone_id= (easylistchina.txt: 2571) .d.pixiv.org/show\?zone_id= -# ||d.5.to^$subdocument (easylistchina+easylist.txt: 2584) +# ||d.5.to^$subdocument (easylistchina.txt: 2570) .d.5.to -# ||d.39.net/a.htm? (easylistchina+easylist.txt: 2583) +# ||d.39.net/a.htm? (easylistchina.txt: 2569) .d.39.net/a\.htm\? -# ||d.107788.com^ (easylistchina+easylist.txt: 2582) +# ||d.107788.com^ (easylistchina.txt: 2568) .d.107788.com -# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina+easylist.txt: 2581) +# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina.txt: 2567) .cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6\.jpg -# ||cyzone.cn^*/js/m.js (easylistchina+easylist.txt: 2580) +# ||cyzone.cn^*/js/m.js (easylistchina.txt: 2566) .cyzone.cn/.*/js/m\.js -# ||cye.com.cn/JS/AdsJS/ (easylistchina+easylist.txt: 2579) +# ||cye.com.cn/JS/AdsJS/ (easylistchina.txt: 2565) .cye.com.cn/JS/AdsJS/ -# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina+easylist.txt: 2578) +# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina.txt: 2564) .cxzyw.com/upload/1/148966/images/.*\.gif -# ||cww.net.cn/UpLoadFile/*.swf (easylistchina+easylist.txt: 2577) +# ||cww.net.cn/UpLoadFile/*.swf (easylistchina.txt: 2563) .cww.net.cn/UpLoadFile/.*\.swf -# ||cww.net.cn/include/show.asp?boardID= (easylistchina+easylist.txt: 2576) +# ||cww.net.cn/include/show.asp?boardID= (easylistchina.txt: 2562) .cww.net.cn/include/show\.asp\?boardID= -# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina+easylist.txt: 2575) +# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina.txt: 2561) .cwan.com/templets/webgame/misc/js/indextip\.js -# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina+easylist.txt: 2574) +# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina.txt: 2560) .cwan.com/templets/shouye/misc/js/suspend\.js -# ||cunbt.com/images/*.gif (easylistchina+easylist.txt: 2573) -.cunbt.com/images/.*\.gif -# ||ctrip.com/amd/*960x90. (easylistchina+easylist.txt: 2572) +# ||ctrip.com/amd/*960x90. (easylistchina.txt: 2559) .ctrip.com/amd/.*960x90\. -# ||ctpan.com/vip.js (easylistchina+easylist.txt: 2571) +# ||ctpan.com/vip.js (easylistchina.txt: 2558) .ctpan.com/vip\.js -# ||ctpan.com/statics/js/adt (easylistchina+easylist.txt: 2570) +# ||ctpan.com/statics/js/adt (easylistchina.txt: 2557) .ctpan.com/statics/js/adt -# ||ctpan.com/cp (easylistchina+easylist.txt: 2569) +# ||ctpan.com/cp (easylistchina.txt: 2556) .ctpan.com/cp -# ||csdn.net/sda/Topic (easylistchina+easylist.txt: 2568) +# ||csdn.net/sda/Topic (easylistchina.txt: 2555) .csdn.net/sda/Topic -# ||csdn.net/msg.popup.js (easylistchina+easylist.txt: 2567) +# ||csdn.net/msg.popup.js (easylistchina.txt: 2554) .csdn.net/msg\.popup\.js -# ||csdn.net/ggmm/ (easylistchina+easylist.txt: 2566) +# ||csdn.net/ggmm/ (easylistchina.txt: 2553) .csdn.net/ggmm/ -# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina+easylist.txt: 2565) +# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina.txt: 2552) .csai.cn/xiaohua/js/xiaohua\.js -# ||cs360.cn/js/search_zcw.js (easylistchina+easylist.txt: 2564) +# ||cs360.cn/js/search_zcw.js (easylistchina.txt: 2551) .cs360.cn/js/search_zcw\.js -# ||cs.com.cn/csad/ (easylistchina+easylist.txt: 2563) +# ||cs.com.cn/csad/ (easylistchina.txt: 2550) .cs.com.cn/csad/ -# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina+easylist.txt: 2562) +# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina.txt: 2549) .creativetop.com/cn/pic/laogu_adv\.gif -# ||creaders.net*/ad_func.js (easylistchina+easylist.txt: 2561) +# ||creaders.net*/ad_func.js (easylistchina.txt: 2548) .creaders.net*./(.*/)?ad_func\.js -# ||cr173.com/show/ (easylistchina+easylist.txt: 2560) +# ||cr173.com/show/ (easylistchina.txt: 2547) .cr173.com/show/ -# ||cr173.com/js/ (easylistchina+easylist.txt: 2559) +# ||cr173.com/js/ (easylistchina.txt: 2546) .cr173.com/js/ -# ||cqwb.com.cn/skin/ggimages/ (easylistchina+easylist.txt: 2558) +# ||cqwb.com.cn/skin/ggimages/ (easylistchina.txt: 2545) .cqwb.com.cn/skin/ggimages/ -# ||cqvip.com/viewserver/ViewAD (easylistchina+easylist.txt: 2557) +# ||cqvip.com/viewserver/ViewAD (easylistchina.txt: 2544) .cqvip.com/viewserver/ViewAD -# ||cqnews.net:8080/vplayerAdv/ (easylistchina+easylist.txt: 2556) +# ||cqnews.net:8080/vplayerAdv/ (easylistchina.txt: 2543) .cqnews.net:8080/vplayerAdv/ -# ||cqfishing.net/data/attachment/portal/ (easylistchina+easylist.txt: 2555) +# ||cqfishing.net/data/attachment/portal/ (easylistchina.txt: 2542) .cqfishing.net/data/attachment/portal/ -# ||cps.okbuy.com^ (easylistchina+easylist.txt: 2554) +# ||cps.okbuy.com^ (easylistchina.txt: 2541) .cps.okbuy.com -# ||cpplay.com/inc/ (easylistchina+easylist.txt: 2553) +# ||cpplay.com/inc/ (easylistchina.txt: 2540) .cpplay.com/inc/ -# ||cp126.com/img/ad0 (easylistchina+easylist.txt: 2552) +# ||cpbl-elta.cdn.hinet.net/web/images/beer.jpg (easylistchina.txt: 2539) +.cpbl-elta.cdn.hinet.net/web/images/beer\.jpg +# ||cpbl-elta.cdn.hinet.net/web/images/ad_ (easylistchina.txt: 2538) +.cpbl-elta.cdn.hinet.net/web/images/ad_ +# ||cp126.com/img/ad0 (easylistchina.txt: 2537) .cp126.com/img/ad0 -# ||cp126.com/888zr11.gif (easylistchina+easylist.txt: 2551) +# ||cp126.com/888zr11.gif (easylistchina.txt: 2536) .cp126.com/888zr11\.gif -# ||cp.ifeng.com/iframe/getiframe (easylistchina+easylist.txt: 2550) +# ||cp.ifeng.com/iframe/getiframe (easylistchina.txt: 2535) .cp.ifeng.com/iframe/getiframe -# ||cosersuki.org^*/AD (easylistchina+easylist.txt: 2549) -.cosersuki.org/.*/AD -# ||cosersuki.org^*/150x600 (easylistchina+easylist.txt: 2548) -.cosersuki.org/.*/150x600 -# ||cosersuki.org/2013/03/20140515091120.jpg (easylistchina+easylist.txt: 2547) -.cosersuki.org/2013/03/20140515091120\.jpg -# ||cooltu.com/mp/ (easylistchina+easylist.txt: 2546) +# ||cooltu.com/mp/ (easylistchina.txt: 2534) .cooltu.com/mp/ -# ||coolaler.com.tw^*_340x80. (easylistchina+easylist.txt: 2545) +# ||coolaler.com.tw^*_340x80. (easylistchina.txt: 2533) .coolaler.com.tw/.*_340x80\. -# ||coolaler.com.tw^*_300x100. (easylistchina+easylist.txt: 2544) +# ||coolaler.com.tw^*_300x100. (easylistchina.txt: 2532) .coolaler.com.tw/.*_300x100\. -# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina+easylist.txt: 2543) +# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina.txt: 2531) .cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ -# ||content.xilu.com^$object (easylistchina+easylist.txt: 2542) +# ||content.xilu.com^$object (easylistchina.txt: 2530) .content.xilu.com -# ||comment.bjcnc.img.sohucs.com/*_gif (easylistchina+easylist.txt: 2541) -.comment.bjcnc.img.sohucs.com/.*_gif -# ||com.webmasterhome.cn/a1- (easylistchina+easylist.txt: 2540) +# ||com.webmasterhome.cn/a1- (easylistchina.txt: 2529) .com.webmasterhome.cn/a1- -# ||colayun.com/cola3/newdown/join.png (easylistchina+easylist.txt: 2539) +# ||colayun.com/cola3/newdown/join.png (easylistchina.txt: 2528) .colayun.com/cola3/newdown/join\.png -# ||coladrive.com/cola3/newdown/join.png (easylistchina+easylist.txt: 2538) +# ||coladrive.com/cola3/newdown/join.png (easylistchina.txt: 2527) .coladrive.com/cola3/newdown/join\.png -# ||codepub.com/wuse/pic/ (easylistchina+easylist.txt: 2537) +# ||codepub.com/wuse/pic/ (easylistchina.txt: 2526) .codepub.com/wuse/pic/ -# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina+easylist.txt: 2536) +# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina.txt: 2525) .codepub.com/file/code/20141225/142856140\.jpg -# ||codeforge.cn/images/banner.gif (easylistchina+easylist.txt: 2535) +# ||codeforge.cn/images/banner.gif (easylistchina.txt: 2524) .codeforge.cn/images/banner\.gif -# ||cococomic.com/g/ (easylistchina+easylist.txt: 2534) +# ||cococomic.com/g/ (easylistchina.txt: 2523) .cococomic.com/g/ -# ||cnzzla.com/public/scripts/money.js (easylistchina+easylist.txt: 2533) +# ||cnzzla.com/public/scripts/money.js (easylistchina.txt: 2522) .cnzzla.com/public/scripts/money\.js -# ||cnzol.com/template/style/images/wlfloat.js (easylistchina+easylist.txt: 2531) +# ||cnzol.com/template/style/images/wlfloat.js (easylistchina.txt: 2520) .cnzol.com/template/style/images/wlfloat\.js -# ||cnzol.com/template/style/images/lcdl.js (easylistchina+easylist.txt: 2530) +# ||cnzol.com/template/style/images/lcdl.js (easylistchina.txt: 2519) .cnzol.com/template/style/images/lcdl\.js -# ||cnzol.com/page/ (easylistchina+easylist.txt: 2529) +# ||cnzol.com/page/ (easylistchina.txt: 2518) .cnzol.com/page/ -# ||cnwnews.com/gg200903/nrzs.js (easylistchina+easylist.txt: 2528) +# ||cnwnews.com/gg200903/nrzs.js (easylistchina.txt: 2517) .cnwnews.com/gg200903/nrzs\.js -# ||cnwnews.com/gg200903/nry02.js (easylistchina+easylist.txt: 2527) +# ||cnwnews.com/gg200903/nry02.js (easylistchina.txt: 2516) .cnwnews.com/gg200903/nry02\.js -# ||cntvboxnow.com//ads_ (easylistchina+easylist.txt: 2526) -# ||cntv.cn/hezuo/ (easylistchina+easylist.txt: 2525) +# ||cntvboxnow.com//ads_ (easylistchina.txt: 2515) +# ||cntv.cn/hezuo/ (easylistchina.txt: 2514) .cntv.cn/hezuo/ -# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina+easylist.txt: 2524) +# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina.txt: 2513) .cnstock.com/image/201511/26/20151126105158298\.jpg -# ||cnsofas.com/loldytt/js/ (easylistchina+easylist.txt: 2523) +# ||cnsofas.com/loldytt/js/ (easylistchina.txt: 2512) .cnsofas.com/loldytt/js/ -# ||cnsat.net/Pictuer/ (easylistchina+easylist.txt: 2522) +# ||cnsat.net/Pictuer/ (easylistchina.txt: 2511) .cnsat.net/Pictuer/ -# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina+easylist.txt: 2521) +# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina.txt: 2510) .cnr.cn/cnrxwph/iframe/tpdy/ -# ||cnnb.com.cn/images/14ny_1.gif (easylistchina+easylist.txt: 2520) +# ||cnnb.com.cn/images/14ny_1.gif (easylistchina.txt: 2509) .cnnb.com.cn/images/14ny_1\.gif -# ||cnnb.com.cn/image/xhhc71.gif (easylistchina+easylist.txt: 2519) +# ||cnnb.com.cn/image/xhhc71.gif (easylistchina.txt: 2508) .cnnb.com.cn/image/xhhc71\.gif -# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina+easylist.txt: 2518) +# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina.txt: 2507) .cnmoad.com/wp-content/uploads/2015/02/lomark_banner\.png -# ||cnmo-img.com.cn/oddjs/ (easylistchina+easylist.txt: 2517) +# ||cnmo-img.com.cn/oddjs/ (easylistchina.txt: 2506) .cnmo-img.com.cn/oddjs/ -# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina+easylist.txt: 2516) -# ||cnkang.com/zixun/nanke/ (easylistchina+easylist.txt: 2515) +# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina.txt: 2505) +# ||cnkang.com/zixun/nanke/ (easylistchina.txt: 2504) .cnkang.com/zixun/nanke/ -# ||cnkang.com/images/sy (easylistchina+easylist.txt: 2514) +# ||cnkang.com/images/sy (easylistchina.txt: 2503) .cnkang.com/images/sy -# ||cnkang.com/images/*756.jpg (easylistchina+easylist.txt: 2513) +# ||cnkang.com/images/*756.jpg (easylistchina.txt: 2502) .cnkang.com/images/.*756\.jpg -# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina+easylist.txt: 2512) +# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina.txt: 2501) .cnkang.com/cs/images0410/fengxiong\.jpg -# ||cnjxol.com/include/2011/index/js/index.js (easylistchina+easylist.txt: 2511) +# ||cnjxol.com/include/2011/index/js/index.js (easylistchina.txt: 2500) .cnjxol.com/include/2011/index/js/index\.js -# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina+easylist.txt: 2510) +# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina.txt: 2499) .cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414\.swf -# ||cnjxol.com/*.files/sian.gif (easylistchina+easylist.txt: 2509) +# ||cnjxol.com/*.files/sian.gif (easylistchina.txt: 2498) .cnjxol.com/.*\.files/sian\.gif -# ||cnhubei.com*/g2 (easylistchina+easylist.txt: 2508) +# ||cnhubei.com*/g2 (easylistchina.txt: 2497) .cnhubei.com*./(.*/)?g2 -# ||cngsf.com/images/336_280.gif (easylistchina+easylist.txt: 2507) +# ||cngsf.com/images/336_280.gif (easylistchina.txt: 2496) .cngsf.com/images/336_280\.gif -# ||cngsf.com/baidu.htm (easylistchina+easylist.txt: 2506) +# ||cngsf.com/baidu.htm (easylistchina.txt: 2495) .cngsf.com/baidu\.htm -# ||cngoldres.com/advservice/ (easylistchina+easylist.txt: 2505) +# ||cngoldres.com/advservice/ (easylistchina.txt: 2494) .cngoldres.com/advservice/ -# ||cndesign.com/img/1200x100.jpg (easylistchina+easylist.txt: 2504) +# ||cndesign.com/img/1200x100.jpg (easylistchina.txt: 2493) .cndesign.com/img/1200x100\.jpg -# ||cndesign.com/Content/img/356x80_ (easylistchina+easylist.txt: 2503) +# ||cndesign.com/Content/img/356x80_ (easylistchina.txt: 2492) .cndesign.com/Content/img/356x80_ -# ||cndesign.com/Content/img/175x60_ (easylistchina+easylist.txt: 2502) +# ||cndesign.com/Content/img/175x60_ (easylistchina.txt: 2491) .cndesign.com/Content/img/175x60_ -# ||cndesign.com/Content/img/*x90_ (easylistchina+easylist.txt: 2501) +# ||cndesign.com/Content/img/*x90_ (easylistchina.txt: 2490) .cndesign.com/Content/img/.*x90_ -# ||cncrk.com/505/ (easylistchina+easylist.txt: 2500) +# ||cncrk.com/505/ (easylistchina.txt: 2489) .cncrk.com/505/ -# ||cnchu.com/aps/ (easylistchina+easylist.txt: 2499) +# ||cnchu.com/aps/ (easylistchina.txt: 2488) .cnchu.com/aps/ -# ||cnbetacdn.com/banner (easylistchina+easylist.txt: 2498) +# ||cnbetacdn.com/banner (easylistchina.txt: 2487) .cnbetacdn.com/banner -# ||cnbeta.com/jobs/list_? (easylistchina+easylist.txt: 2497) +# ||cnbetacdn.com/320-50. (easylistchina.txt: 2486) +.cnbetacdn.com/320-50\. +# ||cnbeta.com/jobs/list_? (easylistchina.txt: 2485) .cnbeta.com/jobs/list_\? -# ||cnbeta.com/assets/js/pages/google.js (easylistchina+easylist.txt: 2496) +# ||cnbeta.com/assets/js/pages/google.js (easylistchina.txt: 2484) .cnbeta.com/assets/js/pages/google\.js -# ||cnbeta.com/assets/images/*_670_90. (easylistchina+easylist.txt: 2495) +# ||cnbeta.com/assets/images/*_670_90. (easylistchina.txt: 2483) .cnbeta.com/assets/images/.*_670_90\. -# ||cna5.net/skins/js/ (easylistchina+easylist.txt: 2494) +# ||cna5.net/skins/js/ (easylistchina.txt: 2482) .cna5.net/skins/js/ -# ||cmsjs.eastmoney.com^$subdocument (easylistchina+easylist.txt: 2493) +# ||cmsjs.eastmoney.com^$subdocument (easylistchina.txt: 2481) .cmsjs.eastmoney.com -# ||cmhello.com/2015/10/hc.jpg (easylistchina+easylist.txt: 2492) +# ||cmhello.com/2015/10/hc.jpg (easylistchina.txt: 2480) .cmhello.com/2015/10/hc\.jpg -# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina+easylist.txt: 2491) +# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina.txt: 2479) .club.pchome.net/.*/localexchange\.php -# ||clouddn.com/960x60.gif (easylistchina+easylist.txt: 2490) +# ||clouddn.com/960x60.gif (easylistchina.txt: 2478) .clouddn.com/960x60\.gif -# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina+easylist.txt: 2489) +# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina.txt: 2477) .clm02.com/2014-A/FB-6-14-AA1\.jpg -# ||cjn.cn^*/ad/ (easylistchina+easylist.txt: 2488) +# ||cjn.cn^*/ad/ (easylistchina.txt: 2476) .cjn.cn/.*/ad/ -# ||cj.qidian.com^$object,subdocument (easylistchina+easylist.txt: 2487) +# ||cj.qidian.com^$object,subdocument (easylistchina.txt: 2475) .cj.qidian.com -# ||citysbs.com^*swf (easylistchina+easylist.txt: 2485) +# ||citysbs.com^*swf (easylistchina.txt: 2473) .citysbs.com/.*swf -# ||citysbs.com/no/*/980x (easylistchina+easylist.txt: 2484) +# ||citysbs.com/no/*/980x (easylistchina.txt: 2472) .citysbs.com/no/.*/980x -# ||citysbs.com/no/*/800x90- (easylistchina+easylist.txt: 2483) +# ||citysbs.com/no/*/800x90- (easylistchina.txt: 2471) .citysbs.com/no/.*/800x90- -# ||citysbs.com/no/*/650x50- (easylistchina+easylist.txt: 2482) +# ||citysbs.com/no/*/650x50- (easylistchina.txt: 2470) .citysbs.com/no/.*/650x50- -# ||citysbs.com/no/*/1190x60- (easylistchina+easylist.txt: 2481) +# ||citysbs.com/no/*/1190x60- (easylistchina.txt: 2469) .citysbs.com/no/.*/1190x60- -# ||citysbs.com/chongqing/*/1920x179- (easylistchina+easylist.txt: 2480) +# ||citysbs.com/chongqing/*/1920x179- (easylistchina.txt: 2468) .citysbs.com/chongqing/.*/1920x179- -# ||cishuge.com/static/js/xiaoshuo.js (easylistchina+easylist.txt: 2479) +# ||cishuge.com/static/js/xiaoshuo.js (easylistchina.txt: 2467) .cishuge.com/static/js/xiaoshuo\.js -# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina+easylist.txt: 2478) +# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina.txt: 2466) .cilook.net/cilookinc/isee5_950x60\.gif -# ||chunxiao.tv/1.aspx (easylistchina+easylist.txt: 2477) +# ||chunxiao.tv/1.aspx (easylistchina.txt: 2465) .chunxiao.tv/1\.aspx -# ||chuixue.com/template/*/images/g_js/show_ (easylistchina+easylist.txt: 2476) +# ||chuixue.com/template/*/images/g_js/show_ (easylistchina.txt: 2464) .chuixue.com/template/.*/images/g_js/show_ -# ||chuixue.com/jsa/ (easylistchina+easylist.txt: 2475) +# ||chuixue.com/jsa/ (easylistchina.txt: 2463) .chuixue.com/jsa/ -# ||chubun.com/images/banners/ (easylistchina+easylist.txt: 2474) +# ||chubun.com/images/banners/ (easylistchina.txt: 2462) .chubun.com/images/banners/ -# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina+easylist.txt: 2473) +# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina.txt: 2460) .chuangshi.qq.com/upload/cmsv2/Banner/ -# ||chrome007.com/images/goodxxxx.jpg (easylistchina+easylist.txt: 2472) +# ||chrome007.com/images/goodxxxx.jpg (easylistchina.txt: 2459) .chrome007.com/images/goodxxxx\.jpg -# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina+easylist.txt: 2471) +# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina.txt: 2458) .chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ -# ||chiphell.com/activity/ (easylistchina+easylist.txt: 2470) +# ||chosun.com/images/banner/ (easylistchina.txt: 2457) +.chosun.com/images/banner/ +# ||chiphell.com/activity/ (easylistchina.txt: 2456) .chiphell.com/activity/ -# ||chinaz.com/temp_upfile/ads/ (easylistchina+easylist.txt: 2469) +# ||chinaz.com/temp_upfile/ads/ (easylistchina.txt: 2455) .chinaz.com/temp_upfile/ads/ -# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina+easylist.txt: 2468) +# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina.txt: 2454) .chinaz.com/site_view/alexa_ad\.jpg -# ||chinaz.com/site_view/2z.cn.gif (easylistchina+easylist.txt: 2467) +# ||chinaz.com/site_view/2z.cn.gif (easylistchina.txt: 2453) .chinaz.com/site_view/2z\.cn\.gif -# ||chinaz.com/newshome/ (easylistchina+easylist.txt: 2466) +# ||chinaz.com/newshome/ (easylistchina.txt: 2452) .chinaz.com/newshome/ -# ||chinaz.com/ip_gadsense.js (easylistchina+easylist.txt: 2465) +# ||chinaz.com/ip_gadsense.js (easylistchina.txt: 2451) .chinaz.com/ip_gadsense\.js -# ||chinaz.com/imagead/ (easylistchina+easylist.txt: 2464) +# ||chinaz.com/imagead/ (easylistchina.txt: 2450) .chinaz.com/imagead/ -# ||chinaz.com/alexa/wz.js (easylistchina+easylist.txt: 2463) +# ||chinaz.com/alexa/wz.js (easylistchina.txt: 2449) .chinaz.com/alexa/wz\.js -# ||chinaz.com/alexa/word3.htm (easylistchina+easylist.txt: 2462) +# ||chinaz.com/alexa/word3.htm (easylistchina.txt: 2448) .chinaz.com/alexa/word3\.htm -# ||chinaz.com/alexa/pic.js (easylistchina+easylist.txt: 2461) +# ||chinaz.com/alexa/pic.js (easylistchina.txt: 2447) .chinaz.com/alexa/pic\.js -# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina+easylist.txt: 2460) +# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina.txt: 2446) .chinaz.com/2015/0113/1421112175579\.jpg -# ||chinaz.com/2011code_images/topright.js (easylistchina+easylist.txt: 2459) +# ||chinaz.com/2011code_images/topright.js (easylistchina.txt: 2445) .chinaz.com/2011code_images/topright\.js -# ||chinaz.com/2011code_images/soft (easylistchina+easylist.txt: 2458) +# ||chinaz.com/2011code_images/soft (easylistchina.txt: 2444) .chinaz.com/2011code_images/soft -# ||chinaz.com/2011code_images/A_ (easylistchina+easylist.txt: 2457) +# ||chinaz.com/2011code_images/A_ (easylistchina.txt: 2443) .chinaz.com/2011code_images/A_ -# ||chinayes.com/Include%5Cad%5C (easylistchina+easylist.txt: 2456) +# ||chinayes.com/Include%5Cad%5C (easylistchina.txt: 2442) .chinayes.com/Include%5Cad%5C -# ||chinawmrc.com/images/end.js (easylistchina+easylist.txt: 2455) +# ||chinawmrc.com/images/end.js (easylistchina.txt: 2441) .chinawmrc.com/images/end\.js -# ||chinatimes.com/Scripts/onead_ (easylistchina+easylist.txt: 2454) +# ||chinatimes.com/Scripts/onead_ (easylistchina.txt: 2440) .chinatimes.com/Scripts/onead_ -# ||chinatimes.com/Scripts/bennerad. (easylistchina+easylist.txt: 2453) +# ||chinatimes.com/Scripts/bennerad. (easylistchina.txt: 2439) .chinatimes.com/Scripts/bennerad\. -# ||chinatimes.com/ads/forums/carouselad.js (easylistchina+easylist.txt: 2452) +# ||chinatimes.com/ads/forums/carouselad.js (easylistchina.txt: 2438) .chinatimes.com/ads/forums/carouselad\.js -# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina+easylist.txt: 2451) +# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina.txt: 2437) .chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo\.js -# ||chinatimes.com/2007Cti/ (easylistchina+easylist.txt: 2450) +# ||chinatimes.com/2007Cti/ (easylistchina.txt: 2436) .chinatimes.com/2007Cti/ -# ||chinaso.com/iframe336/ (easylistchina+easylist.txt: 2449) +# ||chinaso.com/iframe336/ (easylistchina.txt: 2435) .chinaso.com/iframe336/ -# ||chinasexq.com/js/ad (easylistchina+easylist.txt: 2448) +# ||chinasexq.com/js/ad (easylistchina.txt: 2434) .chinasexq.com/js/ad -# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina+easylist.txt: 2447) +# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina.txt: 2433) .chinaqking.com/userUpload/jobApply2\.jpg -# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina+easylist.txt: 2446) +# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina.txt: 2432) .chinaqking.com/images/qkw/jobApply1\.jpg -# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina+easylist.txt: 2445) +# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina.txt: 2431) .chinaqking.com/images/newPage/zhaopin\.jpg -# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina+easylist.txt: 2444) +# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina.txt: 2430) .chinaqking.com/images/newPage/JLW\.jpg -# ||chinanews.com/shipin/sptp.xml (easylistchina+easylist.txt: 2443) +# ||chinanews.com/shipin/sptp.xml (easylistchina.txt: 2429) .chinanews.com/shipin/sptp\.xml -# ||chinanews.com/images/images/Sadv (easylistchina+easylist.txt: 2442) +# ||chinanews.com/images/images/Sadv (easylistchina.txt: 2428) .chinanews.com/images/images/Sadv -# ||chinanews.com/images/*/gaobang. (easylistchina+easylist.txt: 2441) +# ||chinanews.com/images/*/gaobang. (easylistchina.txt: 2427) .chinanews.com/images/.*/gaobang\. -# ||chinanews.com.cn/ad2015/ (easylistchina+easylist.txt: 2440) +# ||chinanews.com.cn/ad2015/ (easylistchina.txt: 2426) .chinanews.com.cn/ad2015/ -# ||chinairn.com/images3/*ads (easylistchina+easylist.txt: 2439) +# ||chinairn.com/images3/*ads (easylistchina.txt: 2425) .chinairn.com/images3/.*ads -# ||chinaiiss.com/js/function.ad.js (easylistchina+easylist.txt: 2438) +# ||chinaiiss.com/js/function.ad.js (easylistchina.txt: 2424) .chinaiiss.com/js/function\.ad\.js -# ||chinaiiss.com/js/float.js (easylistchina+easylist.txt: 2437) +# ||chinaiiss.com/js/float.js (easylistchina.txt: 2423) .chinaiiss.com/js/float\.js -# ||chinaiiss.com/images/jianyu_erweima (easylistchina+easylist.txt: 2436) +# ||chinaiiss.com/images/jianyu_erweima (easylistchina.txt: 2422) .chinaiiss.com/images/jianyu_erweima -# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina+easylist.txt: 2435) +# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina.txt: 2421) .chinaiiss.com/attachment/linkimg/201306/19/142826_845\.jpg -# ||chinafpd.net/js/2012-10/ (easylistchina+easylist.txt: 2434) +# ||chinafpd.net/js/2012-10/ (easylistchina.txt: 2420) .chinafpd.net/js/2012-10/ -# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina+easylist.txt: 2433) +# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina.txt: 2419) .chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13\.jpg -# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina+easylist.txt: 2432) +# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina.txt: 2418) .chinadaily.com.cn/micro-reading/dzh/bd-taofang\.gif -# ||chinachugui.com/jsfiles/aods/ (easylistchina+easylist.txt: 2431) +# ||chinachugui.com/jsfiles/aods/ (easylistchina.txt: 2417) .chinachugui.com/jsfiles/aods/ -# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina+easylist.txt: 2430) +# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina.txt: 2416) .chinacar.com.cn/zhuanyongche/images/wintip_ -# ||chinabyte.com/w/$subdocument (easylistchina+easylist.txt: 2429) +# ||chinabyte.com/w/$subdocument (easylistchina.txt: 2415) .chinabyte.com/w/ -# ||chinaacc.com/lamu/dl- (easylistchina+easylist.txt: 2427) +# ||chinaacc.com/lamu/dl- (easylistchina.txt: 2413) .chinaacc.com/lamu/dl- -# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina+easylist.txt: 2426) +# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina.txt: 2412) .china.com/zh_cn/plugin/all/hezuo360/ -# ||china.com/zh_cn/etc/gghead (easylistchina+easylist.txt: 2425) +# ||china.com/zh_cn/etc/gghead (easylistchina.txt: 2411) .china.com/zh_cn/etc/gghead -# ||china.com/zh_cn/ads/ (easylistchina+easylist.txt: 2424) +# ||china.com/zh_cn/ads/ (easylistchina.txt: 2410) .china.com/zh_cn/ads/ -# ||china.com/jsfiles/gotopgg/ (easylistchina+easylist.txt: 2423) +# ||china.com/jsfiles/gotopgg/ (easylistchina.txt: 2409) .china.com/jsfiles/gotopgg/ -# ||china.com.cn/youxi.swf (easylistchina+easylist.txt: 2422) +# ||china.com.cn/youxi.swf (easylistchina.txt: 2408) .china.com.cn/youxi\.swf -# ||china.com.cn/statics/js/js_vag/ (easylistchina+easylist.txt: 2421) +# ||china.com.cn/statics/js/js_vag/ (easylistchina.txt: 2407) .china.com.cn/statics/js/js_vag/ -# ||china.com.cn/food/node_7094923.htm (easylistchina+easylist.txt: 2420) +# ||china.com.cn/food/node_7094923.htm (easylistchina.txt: 2406) .china.com.cn/food/node_7094923\.htm -# ||china.com.cn/2015ads/ (easylistchina+easylist.txt: 2419) +# ||china.com.cn/2015ads/ (easylistchina.txt: 2405) .china.com.cn/2015ads/ -# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina+easylist.txt: 2418) +# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina.txt: 2404) .china.cn/images1/ch/2014first/20140422gq\.js -# ||china.chemnet.com/cnbanner/ (easylistchina+easylist.txt: 2417) +# ||china.chemnet.com/cnbanner/ (easylistchina.txt: 2403) .china.chemnet.com/cnbanner/ -# ||chidir.com^ (easylistchina+easylist.txt: 2416) +# ||chidir.com^ (easylistchina.txt: 2402) .chidir.com -# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina+easylist.txt: 2415) +# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina.txt: 2401) .chewen.com/pics/2013/09/13/02013091317191365\.jpg -# ||chengruide.com/js/union_junshiqu.js (easylistchina+easylist.txt: 2414) +# ||chengruide.com/js/union_junshiqu.js (easylistchina.txt: 2400) .chengruide.com/js/union_junshiqu\.js -# ||chemnet.com/js/float_div.js (easylistchina+easylist.txt: 2413) +# ||chemnet.com/js/float_div.js (easylistchina.txt: 2399) .chemnet.com/js/float_div\.js -# ||cheers.com.tw/js-lib/fancybox/ (easylistchina+easylist.txt: 2412) +# ||cheers.com.tw/js-lib/fancybox/ (easylistchina.txt: 2398) .cheers.com.tw/js-lib/fancybox/ -# ||chddh.com*/A*D/ (easylistchina+easylist.txt: 2411) +# ||chddh.com*/A*D/ (easylistchina.txt: 2397) .chddh.com*./(.*/)?A.*D/ -# ||chcj.net/comiis_ad/ (easylistchina+easylist.txt: 2410) +# ||chcj.net/comiis_ad/ (easylistchina.txt: 2396) .chcj.net/comiis_ad/ -# ||chaling.cn/images/*.gif (easylistchina+easylist.txt: 2409) +# ||chaling.cn/images/*.gif (easylistchina.txt: 2395) .chaling.cn/images/.*\.gif -# ||chaling.cn/data/attachment/portal/ (easylistchina+easylist.txt: 2408) +# ||chaling.cn/data/attachment/portal/ (easylistchina.txt: 2394) .chaling.cn/data/attachment/portal/ -# ||chakd.com/images/xitie160x60.gif (easylistchina+easylist.txt: 2407) +# ||chakd.com/images/xitie160x60.gif (easylistchina.txt: 2393) .chakd.com/images/xitie160x60\.gif -# ||cfanclub.net/lmimages/yinsub.gif (easylistchina+easylist.txt: 2406) +# ||cfanclub.net/lmimages/yinsub.gif (easylistchina.txt: 2392) .cfanclub.net/lmimages/yinsub\.gif -# ||centoscn.com/money/ (easylistchina+easylist.txt: 2405) +# ||centoscn.com/money/ (easylistchina.txt: 2391) .centoscn.com/money/ -# ||cdyee.com/external/5070.files/ad/ (easylistchina+easylist.txt: 2404) +# ||cdyee.com/external/5070.files/ad/ (easylistchina.txt: 2390) .cdyee.com/external/5070\.files/ad/ -# ||cdndm.com^*/js/newtc.js (easylistchina+easylist.txt: 2403) +# ||cdndm.com^*/js/newtc.js (easylistchina.txt: 2389) .cdndm.com/.*/js/newtc\.js -# ||cdn.wdlm.cn^ (easylistchina+easylist.txt: 2401) +# ||cdn.wdlm.cn^ (easylistchina.txt: 2387) .cdn.wdlm.cn -# ||cdn.shdsp.net/ad (easylistchina+easylist.txt: 2400) +# ||cdn.shdsp.net/ad (easylistchina.txt: 2386) .cdn.shdsp.net/ad -# ||cdn.galacg.me/img/*.jpg (easylistchina+easylist.txt: 2399) +# ||cdn.galacg.me/img/*.jpg (easylistchina.txt: 2385) .cdn.galacg.me/img/.*\.jpg -# ||cdn.galacg.me/img/*.gif (easylistchina+easylist.txt: 2398) +# ||cdn.galacg.me/img/*.gif (easylistchina.txt: 2384) .cdn.galacg.me/img/.*\.gif -# ||cdn.dfile.cn/slot/ (easylistchina+easylist.txt: 2397) +# ||cdn.dfile.cn/slot/ (easylistchina.txt: 2383) .cdn.dfile.cn/slot/ -# ||ccwzz.cc/dmf.js (easylistchina+easylist.txt: 2396) +# ||ccwzz.cc/dmf.js (easylistchina.txt: 2382) .ccwzz.cc/dmf\.js -# ||ccvcd.com/images/ (easylistchina+easylist.txt: 2395) +# ||ccvcd.com/images/ (easylistchina.txt: 2381) .ccvcd.com/images/ -# ||cctv5.name/js/*foot.js (easylistchina+easylist.txt: 2394) +# ||cctv5.name/js/*foot.js (easylistchina.txt: 2380) .cctv5.name/js/.*foot\.js -# ||cctv5.name/data/js/ (easylistchina+easylist.txt: 2393) +# ||cctv5.name/data/js/ (easylistchina.txt: 2379) .cctv5.name/data/js/ -# ||cctv.com/Library/a2.js (easylistchina+easylist.txt: 2392) +# ||cctv.com/Library/a2.js (easylistchina.txt: 2378) .cctv.com/Library/a2\.js -# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina+easylist.txt: 2391) +# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina.txt: 2377) .cctime.com/UpLoadFile/2012/11/7/201211733483705\.gif -# ||cctime.com/UpLoadFile/201$object (easylistchina+easylist.txt: 2390) +# ||cctime.com/UpLoadFile/201$object (easylistchina.txt: 2376) .cctime.com/UpLoadFile/201 -# ||ccoo.cn/webdiy/$subdocument (easylistchina+easylist.txt: 2389) +# ||ccoo.cn/webdiy/$subdocument (easylistchina.txt: 2375) .ccoo.cn/webdiy/ -# ||ccoo.cn/js/dlv*.js (easylistchina+easylist.txt: 2388) +# ||ccoo.cn/js/dlv*.js (easylistchina.txt: 2374) .ccoo.cn/js/dlv.*\.js -# ||ccidnet.com/nav/dia_ (easylistchina+easylist.txt: 2387) +# ||ccidnet.com/nav/dia_ (easylistchina.txt: 2373) .ccidnet.com/nav/dia_ -# ||cccdv.com/js/*0- (easylistchina+easylist.txt: 2386) +# ||cccdv.com/js/*0- (easylistchina.txt: 2372) .cccdv.com/js/.*0- -# ||ccb.com.cn/V5/images5/right0.gif (easylistchina+easylist.txt: 2385) +# ||ccb.com.cn/V5/images5/right0.gif (easylistchina.txt: 2371) .ccb.com.cn/V5/images5/right0\.gif -# ||ccb.com.cn/V5/images5/left0.gif (easylistchina+easylist.txt: 2384) +# ||ccb.com.cn/V5/images5/left0.gif (easylistchina.txt: 2370) .ccb.com.cn/V5/images5/left0\.gif -# ||ccav1.me/block.js (easylistchina+easylist.txt: 2383) +# ||ccav1.me/block.js (easylistchina.txt: 2369) .ccav1.me/block\.js -# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina+easylist.txt: 2382) +# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina.txt: 2368) .ccav1.com/wp-content/uploads/an-temp/ -# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina+easylist.txt: 2381) +# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina.txt: 2367) .ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao\.jpg -# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina+easylist.txt: 2380) +# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina.txt: 2366) .cbfw.cn/gonggong/js/cf_flash\.js -# ||cari.com.my/static/appbanner (easylistchina+easylist.txt: 2379) +# ||cari.com.my/static/appbanner (easylistchina.txt: 2365) .cari.com.my/static/appbanner -# ||caomeinv.info/images/*.gif (easylistchina+easylist.txt: 2378) -.caomeinv.info/images/.*\.gif -# ||caoimg.com/images/ (easylistchina+easylist.txt: 2377) +# ||caoimg.com/images/ (easylistchina.txt: 2364) .caoimg.com/images/ -# ||camster.com/promos/ (easylistchina+easylist.txt: 2376) +# ||camster.com/promos/ (easylistchina.txt: 2363) .camster.com/promos/ -# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina+easylist.txt: 2375) +# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina.txt: 2362) .caipiao.cntv.cn/website/cntv/box_news\.shtml -# ||caikuu.com/ckimages/*_zg (easylistchina+easylist.txt: 2374) +# ||caikuu.com/ckimages/*_zg (easylistchina.txt: 2361) .caikuu.com/ckimages/.*_zg -# ||caikuu.com/ckimages/*_gg (easylistchina+easylist.txt: 2373) +# ||caikuu.com/ckimages/*_gg (easylistchina.txt: 2360) .caikuu.com/ckimages/.*_gg -# ||cachead.com^ (easylistchina+easylist.txt: 2372) +# ||cachead.com^ (easylistchina.txt: 2359) .cachead.com -# ||cacafly.net^ (easylistchina+easylist.txt: 2371) +# ||cacafly.net^ (easylistchina.txt: 2358) .cacafly.net -# ||caamei.com/k.js (easylistchina+easylist.txt: 2370) +# ||caamei.com/k.js (easylistchina.txt: 2357) .caamei.com/k\.js -# ||c4d.cn/api.php?mod=ad&adid= (easylistchina+easylist.txt: 2369) +# ||c4d.cn/api.php?mod=ad&adid= (easylistchina.txt: 2356) .c4d.cn/api\.php\?mod=ad&adid= -# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina+easylist.txt: 2368) +# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina.txt: 2355) .c2cc.cn/images/images2011/ads_bigbg\.jpg -# ||c2cc.cn/c2ccgg/ (easylistchina+easylist.txt: 2367) +# ||c2cc.cn/c2ccgg/ (easylistchina.txt: 2354) .c2cc.cn/c2ccgg/ -# ||c2000.cn/c2000/ (easylistchina+easylist.txt: 2366) +# ||c2000.cn/c2000/ (easylistchina.txt: 2353) .c2000.cn/c2000/ -# ||c168c.com/*adv/ (easylistchina+easylist.txt: 2365) +# ||c168c.com/*adv/ (easylistchina.txt: 2352) .c168c.com/.*adv/ -# ||c114.net/js/channel.js (easylistchina+easylist.txt: 2364) +# ||c114.net/js/channel.js (easylistchina.txt: 2351) .c114.net/js/channel\.js -# ||c114.net/images/c114/ad_ (easylistchina+easylist.txt: 2363) +# ||c114.net/images/c114/ad_ (easylistchina.txt: 2350) .c114.net/images/c114/ad_ -# ||c114.net/default_inc/a/images/ (easylistchina+easylist.txt: 2362) +# ||c114.net/default_inc/a/images/ (easylistchina.txt: 2349) .c114.net/default_inc/a/images/ -# ||c114.net*/images_a/*.swf (easylistchina+easylist.txt: 2361) +# ||c114.net*/images_a/*.swf (easylistchina.txt: 2348) .c114.net*./(.*/)?images_a/.*\.swf -# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina+easylist.txt: 2360) +# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina.txt: 2347) .c1.74ch.com/u/mpf/xyz/fi/ZpE3T72\.gif -# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina+easylist.txt: 2359) +# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina.txt: 2346) .c1.74ch.com/u/mpf/xyz/fi/bVE3T72\.gif -# ||c.quwenjiemi.com^*.js?version= (easylistchina+easylist.txt: 2358) +# ||c.quwenjiemi.com^*.js?version= (easylistchina.txt: 2345) .c.quwenjiemi.com/.*\.js\?version= -# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina+easylist.txt: 2357) +# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina.txt: 2344) .c-ctrip.com/rk/201411/c580x145\.jpg -# ||bytravel.cn/js/s_ (easylistchina+easylist.txt: 2356) +# ||bzfl1.cc/da*.gif (easylistchina.txt: 2343) +.bzfl1.cc/da.*\.gif +# ||bzfl.cc/da*.gif (easylistchina.txt: 2342) +.bzfl.cc/da.*\.gif +# ||bytravel.cn/js/s_ (easylistchina.txt: 2341) .bytravel.cn/js/s_ -# ||bytravel.cn/js/b_ (easylistchina+easylist.txt: 2355) +# ||bytravel.cn/js/b_ (easylistchina.txt: 2340) .bytravel.cn/js/b_ -# ||bytravel.cn/js/ad_ (easylistchina+easylist.txt: 2354) +# ||bytravel.cn/js/ad_ (easylistchina.txt: 2339) .bytravel.cn/js/ad_ -# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina+easylist.txt: 2353) +# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina.txt: 2338) .bytravel.cn/images/t/usa_250_120\.gif -# ||bytravel.cn/images/cus/ (easylistchina+easylist.txt: 2352) +# ||bytravel.cn/images/cus/ (easylistchina.txt: 2337) .bytravel.cn/images/cus/ -# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina+easylist.txt: 2351) +# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina.txt: 2336) .bxwxtxt.com/a/bxwx/indextan\.js -# ||bxwx.org/myabc/ (easylistchina+easylist.txt: 2350) +# ||bxwx.org/myabc/ (easylistchina.txt: 2335) .bxwx.org/myabc/ -# ||bxwx.org/js/box_ (easylistchina+easylist.txt: 2349) +# ||bxwx.org/js/box_ (easylistchina.txt: 2334) .bxwx.org/js/box_ -# ||bxwx.org/js/$subdocument (easylistchina+easylist.txt: 2348) +# ||bxwx.org/js/$subdocument (easylistchina.txt: 2333) .bxwx.org/js/ -# ||bxwx.org/caipiao.js (easylistchina+easylist.txt: 2347) +# ||bxwx.org/caipiao.js (easylistchina.txt: 2332) .bxwx.org/caipiao\.js -# ||bxwx.org/1.js (easylistchina+easylist.txt: 2346) +# ||bxwx.org/1.js (easylistchina.txt: 2331) .bxwx.org/1\.js -# ||bx0635.com/tx/vip.gif (easylistchina+easylist.txt: 2345) +# ||bx0635.com/tx/vip.gif (easylistchina.txt: 2330) .bx0635.com/tx/vip\.gif -# ||bx0635.com/downimg/ban.gif (easylistchina+easylist.txt: 2344) +# ||bx0635.com/downimg/ban.gif (easylistchina.txt: 2329) .bx0635.com/downimg/ban\.gif -# ||bx0635.com/downimg/2000.gif (easylistchina+easylist.txt: 2343) +# ||bx0635.com/downimg/2000.gif (easylistchina.txt: 2328) .bx0635.com/downimg/2000\.gif -# ||buzzhand.com/images/$subdocument (easylistchina+easylist.txt: 2342) +# ||buzzhand.com/images/$subdocument (easylistchina.txt: 2327) .buzzhand.com/images/ -# ||buytong.cn/images/*%*.swf (easylistchina+easylist.txt: 2341) +# ||buytong.cn/images/*%*.swf (easylistchina.txt: 2326) .buytong.cn/images/.*%.*\.swf -# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina+easylist.txt: 2340) +# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina.txt: 2325) .buyhouse.yam.com/plugin/newsplugin\.php -# ||buy.sina.com.tw/js/sina_popup.php (easylistchina+easylist.txt: 2339) +# ||buy.sina.com.tw/js/sina_popup.php (easylistchina.txt: 2324) .buy.sina.com.tw/js/sina_popup\.php -# ||business.92wy.com^ (easylistchina+easylist.txt: 2338) +# ||business.92wy.com^ (easylistchina.txt: 2323) .business.92wy.com -# ||bunnybee.com.tw/bee/$subdocument (easylistchina+easylist.txt: 2337) +# ||bunnybee.com.tw/bee/$subdocument (easylistchina.txt: 2322) .bunnybee.com.tw/bee/ -# ||bukade.com/tpl/2/loading.html (easylistchina+easylist.txt: 2336) +# ||bukade.com/tpl/2/loading.html (easylistchina.txt: 2321) .bukade.com/tpl/2/loading\.html -# ||bukade.com/js/tj2.js (easylistchina+easylist.txt: 2335) +# ||bukade.com/js/tj2.js (easylistchina.txt: 2320) .bukade.com/js/tj2\.js -# ||bukade.com/js/b_ (easylistchina+easylist.txt: 2334) +# ||bukade.com/js/b_ (easylistchina.txt: 2319) .bukade.com/js/b_ -# ||bukade.com/js/*_p_ (easylistchina+easylist.txt: 2333) +# ||bukade.com/js/*_p_ (easylistchina.txt: 2318) .bukade.com/js/.*_p_ -# ||bttiantang.cc/static/wen (easylistchina+easylist.txt: 2332) +# ||bttiantang.cc/static/wen (easylistchina.txt: 2317) .bttiantang.cc/static/wen -# ||bttiantang.cc/static/*quan.js (easylistchina+easylist.txt: 2331) +# ||bttiantang.cc/static/*quan.js (easylistchina.txt: 2316) .bttiantang.cc/static/.*quan\.js -# ||btshark.com/static/img/*300x250. (easylistchina+easylist.txt: 2330) +# ||btshark.com/static/img/*300x250. (easylistchina.txt: 2315) .btshark.com/static/img/.*300x250\. -# ||btn.pchome.net^ (easylistchina+easylist.txt: 2329) +# ||btn.pchome.net^ (easylistchina.txt: 2314) .btn.pchome.net -# ||btn.onlylady.com^ (easylistchina+easylist.txt: 2328) +# ||btn.onlylady.com^ (easylistchina.txt: 2313) .btn.onlylady.com -# ||btkuaisou.com/ac/ (easylistchina+easylist.txt: 2327) +# ||btkuaisou.com/ac/ (easylistchina.txt: 2312) .btkuaisou.com/ac/ -# ||btks.me/pingbi (easylistchina+easylist.txt: 2326) +# ||btks.me/pingbi (easylistchina.txt: 2311) .btks.me/pingbi -# ||btks.me/js/ac (easylistchina+easylist.txt: 2325) +# ||btks.me/js/ac (easylistchina.txt: 2310) .btks.me/js/ac -# ||btks.me/ac/ (easylistchina+easylist.txt: 2324) +# ||btks.me/ac/ (easylistchina.txt: 2309) .btks.me/ac/ -# ||bthand.com/static/650-80.swf (easylistchina+easylist.txt: 2323) +# ||bthand.com/static/650-80.swf (easylistchina.txt: 2308) .bthand.com/static/650-80\.swf -# ||btcherry.com/images/gaoqing.png (easylistchina+easylist.txt: 2322) +# ||btcherry.com/images/gaoqing.png (easylistchina.txt: 2307) .btcherry.com/images/gaoqing\.png -# ||btcherry.com/images/ad_ (easylistchina+easylist.txt: 2321) +# ||btcherry.com/images/ad_ (easylistchina.txt: 2306) .btcherry.com/images/ad_ -# ||btbook.net/static/img/880X60.gif (easylistchina+easylist.txt: 2320) +# ||btbook.net/static/img/880X60.gif (easylistchina.txt: 2305) .btbook.net/static/img/880X60\.gif -# ||btbbt.cc/jslb.js (easylistchina+easylist.txt: 2319) +# ||btbbt.cc/jslb.js (easylistchina.txt: 2304) .btbbt.cc/jslb\.js -# ||btago.com/static/banner/ (easylistchina+easylist.txt: 2318) +# ||btago.com/static/banner/ (easylistchina.txt: 2303) .btago.com/static/banner/ -# ||bt977.com/Public/images/ad (easylistchina+easylist.txt: 2317) +# ||bt977.com/Public/images/ad (easylistchina.txt: 2302) .bt977.com/Public/images/ad -# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina+easylist.txt: 2316) +# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina.txt: 2301) .bt1023.com/tpl/template/image/guanggao1\.gif -# ||bs028.com/js/inc/ (easylistchina+easylist.txt: 2315) +# ||bs028.com/js/inc/ (easylistchina.txt: 2300) .bs028.com/js/inc/ -# ||bs.baidu.com/app-ads% (easylistchina+easylist.txt: 2314) +# ||bs.baidu.com/app-ads% (easylistchina.txt: 2299) .bs.baidu.com/app-ads% -# ||brand.sogou.com/micro?yyid= (easylistchina+easylist.txt: 2313) +# ||brand.sogou.com/micro?yyid= (easylistchina.txt: 2298) .brand.sogou.com/micro\?yyid= -# ||br42.com/ads/ (easylistchina+easylist.txt: 2312) -.br42.com/ads/ -# ||books.com.tw/web/apActivityStick? (easylistchina+easylist.txt: 2310) +# ||books.com.tw/web/apActivityStick? (easylistchina.txt: 2296) .books.com.tw/web/apActivityStick\? -# ||bookgew.com/zj85/ (easylistchina+easylist.txt: 2309) +# ||bookgew.com/zj85/ (easylistchina.txt: 2295) .bookgew.com/zj85/ -# ||bookgew.com/ml85/ (easylistchina+easylist.txt: 2308) +# ||bookgew.com/ml85/ (easylistchina.txt: 2294) .bookgew.com/ml85/ -# ||bookgew.com/hz1/tcby.js (easylistchina+easylist.txt: 2307) +# ||bookgew.com/hz1/tcby.js (easylistchina.txt: 2293) .bookgew.com/hz1/tcby\.js -# ||bookabc.net/js/xian (easylistchina+easylist.txt: 2306) +# ||bookbao.cc/js/ (easylistchina.txt: 2292) +.bookbao.cc/js/ +# ||bookabc.net/js/xian (easylistchina.txt: 2291) .bookabc.net/js/xian -# ||bookabc.net/js/tt.js (easylistchina+easylist.txt: 2305) +# ||bookabc.net/js/tt.js (easylistchina.txt: 2290) .bookabc.net/js/tt\.js -# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina+easylist.txt: 2304) +# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina.txt: 2289) .bomb01.com/fancybox/jquery\.fancybox\. -# ||bo816.com/img/luyilu.gif (easylistchina+easylist.txt: 2303) -.bo816.com/img/luyilu\.gif -# ||bnext.com.tw/static/web/all.js (easylistchina+easylist.txt: 2302) +# ||bnext.com.tw/static/web/all.js (easylistchina.txt: 2288) .bnext.com.tw/static/web/all\.js -# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina+easylist.txt: 2301) +# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina.txt: 2287) .bmp1.ali213.net/pubjs/index_sc_utf8\.js -# ||bmp1.ali213.net/js/ (easylistchina+easylist.txt: 2300) +# ||bmp1.ali213.net/js/ (easylistchina.txt: 2286) .bmp1.ali213.net/js/ -# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina+easylist.txt: 2299) +# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina.txt: 2285) .bmp.ali213.net/pubjs/SetScreen\.js -# ||bmp.ali213.net/js/ (easylistchina+easylist.txt: 2298) +# ||bmp.ali213.net/js/ (easylistchina.txt: 2284) .bmp.ali213.net/js/ -# ||blueidea.com/js/ajs.js (easylistchina+easylist.txt: 2297) +# ||blueidea.com/js/ajs.js (easylistchina.txt: 2283) .blueidea.com/js/ajs\.js -# ||blueidea.com/2012/sdong/sdo.gif (easylistchina+easylist.txt: 2296) +# ||blueidea.com/2012/sdong/sdo.gif (easylistchina.txt: 2282) .blueidea.com/2012/sdong/sdo\.gif -# ||blogspot.com^*/s1600/orig.gif (easylistchina+easylist.txt: 2295) +# ||blogspot.com^*/s1600/orig.gif (easylistchina.txt: 2281) .blogspot.com/.*/s1600/orig\.gif -# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina+easylist.txt: 2294) +# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina.txt: 2280) .blog.tianya.cn/tuijian/tanchu\.js -# ||blog.china.com/u/dvpush/$subdocument (easylistchina+easylist.txt: 2293) +# ||blog.china.com/u/dvpush/$subdocument (easylistchina.txt: 2279) .blog.china.com/u/dvpush/ -# ||blog.51cto.com/js/poptop.js (easylistchina+easylist.txt: 2292) +# ||blog.51cto.com/js/poptop.js (easylistchina.txt: 2278) .blog.51cto.com/js/poptop\.js -# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina+easylist.txt: 2291) +# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina.txt: 2277) .bkjia.com/bkjia/js/subnavtop\.js -# ||bkjia.com/bkjia/js/banner (easylistchina+easylist.txt: 2290) +# ||bkjia.com/bkjia/js/banner (easylistchina.txt: 2276) .bkjia.com/bkjia/js/banner -# ||bkjia.com/bkjia/js/art_rightad (easylistchina+easylist.txt: 2289) +# ||bkjia.com/bkjia/js/art_rightad (easylistchina.txt: 2275) .bkjia.com/bkjia/js/art_rightad -# ||bkill.com/images/di.js (easylistchina+easylist.txt: 2288) +# ||bkill.com/images/di.js (easylistchina.txt: 2274) .bkill.com/images/di\.js -# ||bkill.com/css/abc/ (easylistchina+easylist.txt: 2287) +# ||bkill.com/css/abc/ (easylistchina.txt: 2273) .bkill.com/css/abc/ -# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina+easylist.txt: 2286) +# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina.txt: 2272) .bjxxw.com/themes/portal/local/special_.*\.swf -# ||bjmxw.net/bd/ (easylistchina+easylist.txt: 2285) +# ||bjmxw.net/bd/ (easylistchina.txt: 2271) .bjmxw.net/bd/ -# ||bjmama.net/a/spc_ (easylistchina+easylist.txt: 2284) +# ||bjmama.net/a/spc_ (easylistchina.txt: 2270) .bjmama.net/a/spc_ -# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina+easylist.txt: 2283) +# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina.txt: 2269) .bjhjyd.gov.cn/templates/default/www/js/float\.js -# ||biz37.net^*.swf?uid= (easylistchina+easylist.txt: 2282) +# ||biz37.net^*.swf?uid= (easylistchina.txt: 2268) .biz37.net/.*\.swf\?uid= -# ||biz.weibo.com^ (easylistchina+easylist.txt: 2281) +# ||biz.weibo.com^ (easylistchina.txt: 2267) .biz.weibo.com -# ||biz.lyd.com.cn/20 (easylistchina+easylist.txt: 2280) +# ||biz.lyd.com.cn/20 (easylistchina.txt: 2266) .biz.lyd.com.cn/20 -# ||biz.gexing.com^ (easylistchina+easylist.txt: 2279) +# ||biz.gexing.com^ (easylistchina.txt: 2265) .biz.gexing.com -# ||biz*.sandai.net^ (easylistchina+easylist.txt: 2278) +# ||biz*.sandai.net^ (easylistchina.txt: 2264) .biz*./.*\.sandai\.net[^\w%.-] .biz*.sandai.net -# ||bitscn.com/js/a2 (easylistchina+easylist.txt: 2277) +# ||bitscn.com/js/a2 (easylistchina.txt: 2263) .bitscn.com/js/a2 -# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina+easylist.txt: 2276) +# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina.txt: 2262) .bitautoimg.com/ResourceFiles/0/3/167/20151207103257620\.jpg -# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina+easylist.txt: 2275) +# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina.txt: 2261) .bitautoimg.com/ResourceFiles/0/.*\.swf -# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina+easylist.txt: 2274) +# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina.txt: 2260) .bitautoimg.com/ResourceFiles/0/.*\.gif -# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina+easylist.txt: 2273) +# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina.txt: 2259) .bitauto.com/ResourceFiles/play/play\.swf -# ||bitauto.com/js/sense*.js (easylistchina+easylist.txt: 2272) +# ||bitauto.com/js/sense*.js (easylistchina.txt: 2258) .bitauto.com/js/sense.*\.js -# ||biquge5.com/jquery/ (easylistchina+easylist.txt: 2271) +# ||biquge5.com/jquery/ (easylistchina.txt: 2257) .biquge5.com/jquery/ -# ||biquge.so/kinpo/% (easylistchina+easylist.txt: 2270) +# ||biquge.so/kinpo/% (easylistchina.txt: 2256) .biquge.so/kinpo/% -# ||biqi.me/Public/js/page_gg_ (easylistchina+easylist.txt: 2269) +# ||biqi.me/Public/js/page_gg_ (easylistchina.txt: 2255) .biqi.me/Public/js/page_gg_ -# ||biqi.me/Public/js/page_ad_ (easylistchina+easylist.txt: 2268) +# ||biqi.me/Public/js/page_ad_ (easylistchina.txt: 2254) .biqi.me/Public/js/page_ad_ -# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina+easylist.txt: 2267) +# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina.txt: 2253) .bio-equip.com/uploadimages/peiqing\.gif -# ||bio-equip.com/images/esco06.swf (easylistchina+easylist.txt: 2266) +# ||bio-equip.com/images/esco06.swf (easylistchina.txt: 2252) .bio-equip.com/images/esco06\.swf -# ||bio-equip.com/dimgs/ (easylistchina+easylist.txt: 2265) +# ||bio-equip.com/dimgs/ (easylistchina.txt: 2251) .bio-equip.com/dimgs/ -# ||bio-equip.com/dimg/ (easylistchina+easylist.txt: 2264) +# ||bio-equip.com/dimg/ (easylistchina.txt: 2250) .bio-equip.com/dimg/ -# ||binhuo.com/bhjs/ (easylistchina+easylist.txt: 2263) +# ||binhuo.com/bhjs/ (easylistchina.txt: 2249) .binhuo.com/bhjs/ -# ||bh111.com/js/tan_ (easylistchina+easylist.txt: 2262) +# ||bh111.com/js/tan_ (easylistchina.txt: 2248) .bh111.com/js/tan_ -# ||bh111.com/flash/*+ (easylistchina+easylist.txt: 2261) +# ||bh111.com/flash/*+ (easylistchina.txt: 2247) .bh111.com/flash/.*\+ -# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina+easylist.txt: 2260) +# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina.txt: 2246) .bfpgf.com/wp-content/uploads/2015/08/360dxs\.jpg -# ||bforu.info/images/ali.gif (easylistchina+easylist.txt: 2259) +# ||bforu.info/images/ali.gif (easylistchina.txt: 2245) .bforu.info/images/ali\.gif -# ||bforu.info/03.jpg (easylistchina+easylist.txt: 2258) +# ||bforu.info/03.jpg (easylistchina.txt: 2244) .bforu.info/03\.jpg -# ||bfooru.info/images/*.gif (easylistchina+easylist.txt: 2257) +# ||bfooru.info/images/*.gif (easylistchina.txt: 2243) .bfooru.info/images/.*\.gif -# ||bfooru.info/03.jpg (easylistchina+easylist.txt: 2256) +# ||bfooru.info/03.jpg (easylistchina.txt: 2242) .bfooru.info/03\.jpg -# ||bestxl.com/langzi/0403/ld.jpg (easylistchina+easylist.txt: 2255) -.bestxl.com/langzi/0403/ld\.jpg -# ||bestvogue.com/fans/ (easylistchina+easylist.txt: 2254) +# ||bestvogue.com/fans/ (easylistchina.txt: 2241) .bestvogue.com/fans/ -# ||besc.baidustatic.com^ (easylistchina+easylist.txt: 2253) +# ||besc.baidustatic.com^ (easylistchina.txt: 2240) .besc.baidustatic.com -# ||bendibao.com/mo/adm_iframe.htm? (easylistchina+easylist.txt: 2252) +# ||bendibao.com/mo/adm_iframe.htm? (easylistchina.txt: 2239) .bendibao.com/mo/adm_iframe\.htm\? -# ||bendibao.com*/tuangou.gif (easylistchina+easylist.txt: 2251) +# ||bendibao.com*/tuangou.gif (easylistchina.txt: 2238) .bendibao.com*./(.*/)?tuangou\.gif -# ||bejson.com/imgs/tuo.png (easylistchina+easylist.txt: 2250) +# ||bejson.com/imgs/tuo.png (easylistchina.txt: 2237) .bejson.com/imgs/tuo\.png -# ||bejson.com/imgs/qiniu (easylistchina+easylist.txt: 2249) +# ||bejson.com/imgs/qiniu (easylistchina.txt: 2236) .bejson.com/imgs/qiniu -# ||bejson.com/imgs/j950-90.jpg (easylistchina+easylist.txt: 2248) +# ||bejson.com/imgs/j950-90.jpg (easylistchina.txt: 2235) .bejson.com/imgs/j950-90\.jpg -# ||bejson.com/imgs/beifen (easylistchina+easylist.txt: 2247) +# ||bejson.com/imgs/beifen (easylistchina.txt: 2234) .bejson.com/imgs/beifen -# ||beiwo.tv/Runtime/js/list01.js (easylistchina+easylist.txt: 2246) +# ||beiwo.tv/Runtime/js/list01.js (easylistchina.txt: 2233) .beiwo.tv/Runtime/js/list01\.js -# ||beijing-air.com/images/a/j (easylistchina+easylist.txt: 2245) +# ||beijing-air.com/images/a/j (easylistchina.txt: 2232) .beijing-air.com/images/a/j -# ||bego.cc/img/ (easylistchina+easylist.txt: 2244) +# ||bego.cc/img/ (easylistchina.txt: 2231) .bego.cc/img/ -# ||beephone.com.tw/ad-yahoo.php (easylistchina+easylist.txt: 2243) +# ||beephone.com.tw/ad-yahoo.php (easylistchina.txt: 2230) .beephone.com.tw/ad-yahoo\.php -# ||beephone.com.tw/ad-middle.php (easylistchina+easylist.txt: 2242) +# ||beephone.com.tw/ad-middle.php (easylistchina.txt: 2229) .beephone.com.tw/ad-middle\.php -# ||beareyes.com.cn^*/ad/ (easylistchina+easylist.txt: 2241) +# ||beareyes.com.cn^*/ad/ (easylistchina.txt: 2228) .beareyes.com.cn/.*/ad/ -# ||beanfun.com/playweb/adpicpage.htm (easylistchina+easylist.txt: 2240) +# ||beanfun.com/playweb/adpicpage.htm (easylistchina.txt: 2227) .beanfun.com/playweb/adpicpage\.htm -# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina+easylist.txt: 2239) +# ||bdstatic.com^*/tam-ogel/ (easylistchina.txt: 2226) +.bdstatic.com/.*/tam-ogel/ +# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina.txt: 2225) .bdstatic.com/tb/zt/tengfei/gzdialog\.jpg -# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina+easylist.txt: 2238) +# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina.txt: 2224) .bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f\.jpg -# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina+easylist.txt: 2237) +# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina.txt: 2223) .bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac\.jpg -# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina+easylist.txt: 2236) +# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina.txt: 2222) .bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ -# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina+easylist.txt: 2235) +# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina.txt: 2221) .bdstatic.com/tb/cms/ngmis/file_1417585299140\.jpg -# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina+easylist.txt: 2234) +# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina.txt: 2220) .bdstatic.com/tb/cms/ngmis/file_1417585294569\.jpg -# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina+easylist.txt: 2233) +# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina.txt: 2219) .bdstatic.com/tb/cms/img/tieba_index_banner960x90\.png -# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina+easylist.txt: 2232) +# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina.txt: 2218) .bdstatic.com/tb/cms/forum_skin/file_1442399443261\.jpg -# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina+easylist.txt: 2231) +# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina.txt: 2217) .bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api\.js -# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina+easylist.txt: 2230) +# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina.txt: 2216) .bdstatic.com/tb/cms/com/game/couplet_ -# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina+easylist.txt: 2229) +# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina.txt: 2215) .bdstatic.com/tb/cms/activity_head/file_ -# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina+easylist.txt: 2228) +# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina.txt: 2214) .bdstatic.com/tb/%E8%B4%B4%E5%90%A7- -# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina+easylist.txt: 2227) +# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina.txt: 2213) .bdstatic.com/static/article/widget/left-promo/ -# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina+easylist.txt: 2226) +# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina.txt: 2212) .bdstatic.com/player/t/j/TvKa94eY\.js -# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina+easylist.txt: 2225) +# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina.txt: 2211) .bdstatic.com/player/t/j/Cj2XuDf6\.js -# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina+easylist.txt: 2224) +# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina.txt: 2210) .bdstatic.com/player/t/j/AEoIJIPB\.js -# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina+easylist.txt: 2223) +# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina.txt: 2209) .bdstatic.com/pc_static/detail/game_promotion/ -# ||bdstatic.com/img/image/su/ (easylistchina+easylist.txt: 2222) +# ||bdstatic.com/img/image/su/ (easylistchina.txt: 2208) .bdstatic.com/img/image/su/ -# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina+easylist.txt: 2221) +# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina.txt: 2207) .bdstatic.com/api_hao123AdvHeader\.js -# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina+easylist.txt: 2220) +# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina.txt: 2206) .bdinfo.net/bdinfo_skin/xlsgg\.js -# ||bdimg.com/site/games/yxtg/*.js (easylistchina+easylist.txt: 2219) +# ||bdimg.com/site/games/yxtg/*.js (easylistchina.txt: 2205) .bdimg.com/site/games/yxtg/.*\.js -# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina+easylist.txt: 2218) +# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina.txt: 2204) .bdimg.com/newmap/static/common/images/nav-ad_ -# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina+easylist.txt: 2217) +# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina.txt: 2203) .bdimg.com/brands/yxtg/source/juhe-v2\.js -# ||bcok.com^$subdocument (easylistchina+easylist.txt: 2216) +# ||bcok.com^$subdocument (easylistchina.txt: 2202) .bcok.com -# ||bccn.net/aaa/ (easylistchina+easylist.txt: 2215) +# ||bccn.net/aaa/ (easylistchina.txt: 2201) .bccn.net/aaa/ -# ||bcc.com.tw/imgs/adv/ (easylistchina+easylist.txt: 2214) +# ||bcc.com.tw/imgs/adv/ (easylistchina.txt: 2200) .bcc.com.tw/imgs/adv/ -# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina+easylist.txt: 2213) +# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina.txt: 2199) .bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c\.jpg -# ||bbs.xiashanet.com/js/adsview.js (easylistchina+easylist.txt: 2212) +# ||bbs.xiashanet.com/js/adsview.js (easylistchina.txt: 2198) .bbs.xiashanet.com/js/adsview\.js -# ||bbs.xbaodi.com/plugin.php (easylistchina+easylist.txt: 2211) +# ||bbs.xbaodi.com/plugin.php (easylistchina.txt: 2197) .bbs.xbaodi.com/plugin\.php -# ||bbs.winning11cn.com/temp/*.gif (easylistchina+easylist.txt: 2210) +# ||bbs.winning11cn.com/temp/*.gif (easylistchina.txt: 2196) .bbs.winning11cn.com/temp/.*\.gif -# ||bbs.voc.com.cn/s.js (easylistchina+easylist.txt: 2209) +# ||bbs.voc.com.cn/s.js (easylistchina.txt: 2195) .bbs.voc.com.cn/s\.js -# ||bbs.hotavxxx.com/images/201*.gif (easylistchina+easylist.txt: 2208) +# ||bbs.hotavxxx.com/images/201*.gif (easylistchina.txt: 2194) .bbs.hotavxxx.com/images/201.*\.gif -# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina+easylist.txt: 2207) +# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina.txt: 2193) .bbs.fengbao.com/image/bingzuan925X80\.jpg -# ||bbs.a9vg.com/showit/img_show.php (easylistchina+easylist.txt: 2206) +# ||bbs.a9vg.com/showit/img_show.php (easylistchina.txt: 2192) .bbs.a9vg.com/showit/img_show\.php -# ||bb345.com^ (easylistchina+easylist.txt: 2205) -.bb345.com -# ||baoshewang.com/img/head.js (easylistchina+easylist.txt: 2204) -.baoshewang.com/img/head\.js -# ||baoshewang.com/img/gg.js (easylistchina+easylist.txt: 2203) -.baoshewang.com/img/gg\.js -# ||baoshewang.com/img/bottom.js (easylistchina+easylist.txt: 2202) -.baoshewang.com/img/bottom\.js -# ||baoliny.com/js/jing.js (easylistchina+easylist.txt: 2201) +# ||baoliny.com/js/jing.js (easylistchina.txt: 2191) .baoliny.com/js/jing\.js -# ||baofeng.com/src/ad.js (easylistchina+easylist.txt: 2200) +# ||baofeng.com/src/ad.js (easylistchina.txt: 2190) .baofeng.com/src/ad\.js -# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina+easylist.txt: 2199) +# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina.txt: 2189) .bang5mai.com/upload/plugin/assets/main/js/b5m\.adv\.js -# ||bamuyu.com/skin/js/bgad.js (easylistchina+easylist.txt: 2198) +# ||bamuyu.com/skin/js/bgad.js (easylistchina.txt: 2188) .bamuyu.com/skin/js/bgad\.js -# ||ballive.com/addm/ (easylistchina+easylist.txt: 2197) +# ||ballive.com/addm/ (easylistchina.txt: 2187) .ballive.com/addm/ -# ||baiy.net:88/a/ (easylistchina+easylist.txt: 2196) +# ||baiy.net:88/a/ (easylistchina.txt: 2186) .baiy.net:88/a/ -# ||baixing.com/bb/*/?category= (easylistchina+easylist.txt: 2195) +# ||baixing.com/bb/*/?category= (easylistchina.txt: 2185) .baixing.com/bb/.*/\?category= -# ||baishulou.net/html/ (easylistchina+easylist.txt: 2194) +# ||baishulou.net/html/ (easylistchina.txt: 2184) .baishulou.net/html/ -# ||baishuku.com/news/$script (easylistchina+easylist.txt: 2193) +# ||baishuku.com/news/$script (easylistchina.txt: 2183) .baishuku.com/news/ -# ||baike.com/iframeheightforad. (easylistchina+easylist.txt: 2192) +# ||baike.com/iframeheightforad. (easylistchina.txt: 2182) .baike.com/iframeheightforad\. -# ||baike.com/3g/ads/ (easylistchina+easylist.txt: 2191) +# ||baike.com/3g/ads/ (easylistchina.txt: 2181) .baike.com/3g/ads/ -# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina+easylist.txt: 2190) +# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina.txt: 2180) .baifen.music.baidu.com/api/v1/.*\?format=jsonp& -# ||baidud.cn/aoao/down_ (easylistchina+easylist.txt: 2189) +# ||baidud.cn/aoao/down_ (easylistchina.txt: 2179) .baidud.cn/aoao/down_ -# ||baidu.com^*/interface/ad? (easylistchina+easylist.txt: 2188) +# ||baidu.com^*/interface/ad? (easylistchina.txt: 2178) .baidu.com/.*/interface/ad\? -# ||baidu.com/WerbungAjax/getTonglan? (easylistchina+easylist.txt: 2186) +# ||baidu.com/WerbungAjax/getTonglan? (easylistchina.txt: 2176) .baidu.com/WerbungAjax/getTonglan\? -# ||baidu.com/WerbungAjax/getBeitou? (easylistchina+easylist.txt: 2185) +# ||baidu.com/WerbungAjax/getBeitou? (easylistchina.txt: 2175) .baidu.com/WerbungAjax/getBeitou\? -# ||baidu.com/videoapi/?*_ad_promote& (easylistchina+easylist.txt: 2184) +# ||baidu.com/videoapi/?*_ad_promote& (easylistchina.txt: 2174) .baidu.com/videoapi/\?.*_ad_promote& -# ||baidu.com/videoadv.js (easylistchina+easylist.txt: 2183) +# ||baidu.com/videoadv.js (easylistchina.txt: 2173) .baidu.com/videoadv\.js -# ||baidu.com/ur/scun?di=contentunion (easylistchina+easylist.txt: 2182) +# ||baidu.com/ur/scun?di=contentunion (easylistchina.txt: 2172) .baidu.com/ur/scun\?di=contentunion -# ||baidu.com/tbliveact/data/xiu8/ (easylistchina+easylist.txt: 2181) +# ||baidu.com/tequan/adpadmin_feed/ (easylistchina.txt: 2171) +.baidu.com/tequan/adpadmin_feed/ +# ||baidu.com/tbliveact/data/xiu8/ (easylistchina.txt: 2170) .baidu.com/tbliveact/data/xiu8/ -# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina+easylist.txt: 2180) +# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina.txt: 2169) .baidu.com/tb/zt/wen_da_pc\.html -# ||baidu.com/tb/zt/spread/ (easylistchina+easylist.txt: 2179) +# ||baidu.com/tb/zt/spread/ (easylistchina.txt: 2168) .baidu.com/tb/zt/spread/ -# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina+easylist.txt: 2178) +# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina.txt: 2167) .baidu.com/tb/static-common/swf/worldcup_main\.swf -# ||baidu.com/tb/cms/game/*_banner_ (easylistchina+easylist.txt: 2177) +# ||baidu.com/tb/cms/game/*_banner_ (easylistchina.txt: 2166) .baidu.com/tb/cms/game/.*_banner_ -# ||baidu.com/tb/cms/game/*_banner. (easylistchina+easylist.txt: 2176) +# ||baidu.com/tb/cms/game/*_banner. (easylistchina.txt: 2165) .baidu.com/tb/cms/game/.*_banner\. -# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina+easylist.txt: 2175) +# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina.txt: 2164) .baidu.com/tb/cms/forum_skin/file_ -# ||baidu.com/staticapi/misadlist. (easylistchina+easylist.txt: 2174) +# ||baidu.com/staticapi/misadlist. (easylistchina.txt: 2163) .baidu.com/staticapi/misadlist\. -# ||baidu.com/staticapi/hotnews_new. (easylistchina+easylist.txt: 2173) +# ||baidu.com/staticapi/hotnews_new. (easylistchina.txt: 2162) .baidu.com/staticapi/hotnews_new\. -# ||baidu.com/static/yuntu-ad/ (easylistchina+easylist.txt: 2172) +# ||baidu.com/static/yuntu-ad/ (easylistchina.txt: 2161) .baidu.com/static/yuntu-ad/ -# ||baidu.com/static/html/cbjs.html (easylistchina+easylist.txt: 2171) +# ||baidu.com/static/html/cbjs.html (easylistchina.txt: 2160) .baidu.com/static/html/cbjs\.html -# ||baidu.com/showbrand/sponsor_ (easylistchina+easylist.txt: 2170) +# ||baidu.com/showbrand/sponsor_ (easylistchina.txt: 2159) .baidu.com/showbrand/sponsor_ -# ||baidu.com/showbrand/banner_ (easylistchina+easylist.txt: 2169) +# ||baidu.com/showbrand/banner_ (easylistchina.txt: 2158) .baidu.com/showbrand/banner_ -# ||baidu.com/show/livevideo/getStreamConf? (easylistchina+easylist.txt: 2168) +# ||baidu.com/show/livevideo/getStreamConf? (easylistchina.txt: 2157) .baidu.com/show/livevideo/getStreamConf\? -# ||baidu.com/rmaAjax/getGame? (easylistchina+easylist.txt: 2167) +# ||baidu.com/rmaAjax/getGame? (easylistchina.txt: 2156) .baidu.com/rmaAjax/getGame\? -# ||baidu.com/resource/tuisong/ (easylistchina+easylist.txt: 2166) +# ||baidu.com/resource/tuisong/ (easylistchina.txt: 2155) .baidu.com/resource/tuisong/ -# ||baidu.com/resource/baichuan/ (easylistchina+easylist.txt: 2165) +# ||baidu.com/resource/baichuan/ (easylistchina.txt: 2154) .baidu.com/resource/baichuan/ -# ||baidu.com/resource/ads/ (easylistchina+easylist.txt: 2164) +# ||baidu.com/resource/ads/ (easylistchina.txt: 2153) .baidu.com/resource/ads/ -# ||baidu.com/img/iknow/wenku*85. (easylistchina+easylist.txt: 2163) +# ||baidu.com/img/iknow/wenku*85. (easylistchina.txt: 2152) .baidu.com/img/iknow/wenku.*85\. -# ||baidu.com/game/asset/common/performance. (easylistchina+easylist.txt: 2162) +# ||baidu.com/game/asset/common/performance. (easylistchina.txt: 2151) .baidu.com/game/asset/common/performance\. -# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina+easylist.txt: 2161) +# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina.txt: 2150) .baidu.com/fanyiapp/image/wise_banner_ -# ||baidu.com/event/img/zwdzjs.jpg (easylistchina+easylist.txt: 2160) +# ||baidu.com/event/img/zwdzjs.jpg (easylistchina.txt: 2149) .baidu.com/event/img/zwdzjs\.jpg -# ||baidu.com/ecom$image,script (easylistchina+easylist.txt: 2159) +# ||baidu.com/ecom$image,script (easylistchina.txt: 2148) .baidu.com/ecom -# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina+easylist.txt: 2158) +# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina.txt: 2147) .baidu.com/cms/rc/adSideConfig\.json\? -# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina+easylist.txt: 2157) +# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina.txt: 2146) .baidu.com/brands/yxtg/source/yxCoupletsAd\.js -# ||baidu.com/api/proxyapi?tag=adv& (easylistchina+easylist.txt: 2156) +# ||baidu.com/api/proxyapi?tag=adv& (easylistchina.txt: 2145) .baidu.com/api/proxyapi\?tag=adv& -# ||badmintoncn.com/cbo_gg/ (easylistchina+easylist.txt: 2155) +# ||badmintoncn.com/cbo_gg/ (easylistchina.txt: 2143) .badmintoncn.com/cbo_gg/ -# ||backchina.com/banners/ (easylistchina+easylist.txt: 2154) +# ||backchina.com/banners/ (easylistchina.txt: 2142) .backchina.com/banners/ -# ||babytreeimg.com/img/promo/ (easylistchina+easylist.txt: 2153) +# ||babytreeimg.com/img/promo/ (easylistchina.txt: 2141) .babytreeimg.com/img/promo/ -# ||babyhome.com.tw/slot_gateway.php? (easylistchina+easylist.txt: 2152) +# ||babyhome.com.tw/slot_gateway.php? (easylistchina.txt: 2140) .babyhome.com.tw/slot_gateway\.php\? -# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina+easylist.txt: 2151) +# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina.txt: 2139) .babyhome.com.tw/lib/iframe\.php\?u= -# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina+easylist.txt: 2150) +# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina.txt: 2138) .babyhome.com.tw/2015/mid_autumn/ -# ||baby-kingdom.com/reqwads? (easylistchina+easylist.txt: 2149) +# ||baby-kingdom.com/reqwads? (easylistchina.txt: 2137) .baby-kingdom.com/reqwads\? -# ||baby-kingdom.com/reqsads? (easylistchina+easylist.txt: 2148) +# ||baby-kingdom.com/reqsads? (easylistchina.txt: 2136) .baby-kingdom.com/reqsads\? -# ||b5m.com/static/html/*/popup.html? (easylistchina+easylist.txt: 2147) +# ||b5m.com/static/html/*/popup.html? (easylistchina.txt: 2135) .b5m.com/static/html/.*/popup\.html\? -# ||b5m.com/images/banner.jpg (easylistchina+easylist.txt: 2146) +# ||b5m.com/images/banner.jpg (easylistchina.txt: 2134) .b5m.com/images/banner\.jpg -# ||azhibo.com/images/2015/edge-bg.png (easylistchina+easylist.txt: 2145) +# ||azhibo.com/images/2015/edge-bg.png (easylistchina.txt: 2133) .azhibo.com/images/2015/edge-bg\.png -# ||ayxz.com/images/VStart.gif (easylistchina+easylist.txt: 2144) +# ||ayxz.com/images/VStart.gif (easylistchina.txt: 2132) .ayxz.com/images/VStart\.gif -# ||ayxz.com/images/enkj_small.gif (easylistchina+easylist.txt: 2143) +# ||ayxz.com/images/enkj_small.gif (easylistchina.txt: 2131) .ayxz.com/images/enkj_small\.gif -# ||ayxz.com/images/$script (easylistchina+easylist.txt: 2142) +# ||ayxz.com/images/$script (easylistchina.txt: 2130) .ayxz.com/images/ -# ||awaker.hk/wp-content/uploads/ok/ (easylistchina+easylist.txt: 2141) +# ||awaker.hk/wp-content/uploads/ok/ (easylistchina.txt: 2129) .awaker.hk/wp-content/uploads/ok/ -# ||avseesee.com/twad (easylistchina+easylist.txt: 2140) +# ||avseesee.com/twad (easylistchina.txt: 2128) .avseesee.com/twad -# ||avseesee.com/htmls/vlinks.html (easylistchina+easylist.txt: 2139) +# ||avseesee.com/htmls/vlinks.html (easylistchina.txt: 2127) .avseesee.com/htmls/vlinks\.html -# ||avseesee.com/amandison.php (easylistchina+easylist.txt: 2138) +# ||avseesee.com/amandison.php (easylistchina.txt: 2126) .avseesee.com/amandison\.php -# ||avonline.org/js/jquery.colorbox- (easylistchina+easylist.txt: 2137) +# ||avonline.org/js/jquery.colorbox- (easylistchina.txt: 2125) .avonline.org/js/jquery\.colorbox- -# ||avlang33.com/js/float.js (easylistchina+easylist.txt: 2136) +# ||avlang33.com/js/float.js (easylistchina.txt: 2124) .avlang33.com/js/float\.js -# ||avcity.twavtv.com/js/twavt.js (easylistchina+easylist.txt: 2135) +# ||avcity.twavtv.com/js/twavt.js (easylistchina.txt: 2123) .avcity.twavtv.com/js/twavt\.js -# ||av44.net/data/attachment/forum/*.gif (easylistchina+easylist.txt: 2134) -.av44.net/data/attachment/forum/.*\.gif -# ||av165.com/images/$third-party (easylistchina+easylist.txt: 2133) -.av165.com/images/ -# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina+easylist.txt: 2132) +# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina.txt: 2122) .autos.udn.com/topic/car/include/ad\.jsp -# ||autoimg.cn/engine/root/fggxl.js (easylistchina+easylist.txt: 2131) +# ||autoimg.cn/engine/root/fggxl.js (easylistchina.txt: 2121) .autoimg.cn/engine/root/fggxl\.js -# ||autoimg.cn/ad.js (easylistchina+easylist.txt: 2130) +# ||autoimg.cn/ad.js (easylistchina.txt: 2120) .autoimg.cn/ad\.js -# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina+easylist.txt: 2129) +# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina.txt: 2119) .autohome.com.cn/Ashx/public/HeaderLayerRecApp\.ashx\? -# ||autofan.com.cn/zhaoning/GG- (easylistchina+easylist.txt: 2128) +# ||autofan.com.cn/zhaoning/GG- (easylistchina.txt: 2118) .autofan.com.cn/zhaoning/GG- -# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina+easylist.txt: 2127) +# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina.txt: 2117) .autofan.com.cn/zhaoning/20.*\.jpg -# ||autofan.com.cn/zhaoning/*.gif (easylistchina+easylist.txt: 2126) +# ||autofan.com.cn/zhaoning/*.gif (easylistchina.txt: 2116) .autofan.com.cn/zhaoning/.*\.gif -# ||auto-online.com.tw/vendor_data/ (easylistchina+easylist.txt: 2125) +# ||auto-online.com.tw/vendor_data/ (easylistchina.txt: 2115) .auto-online.com.tw/vendor_data/ -# ||att.ydss.cn/attachments/portal/ (easylistchina+easylist.txt: 2124) +# ||att.ydss.cn/attachments/portal/ (easylistchina.txt: 2114) .att.ydss.cn/attachments/portal/ -# ||atm.youku.com^ (easylistchina+easylist.txt: 2123) +# ||atm.youku.com^ (easylistchina.txt: 2113) .atm.youku.com -# ||asxxg.cn/Public/config/Couplet/ (easylistchina+easylist.txt: 2122) +# ||asxxg.cn/Public/config/Couplet/ (easylistchina.txt: 2112) .asxxg.cn/Public/config/Couplet/ -# ||aspjzy.com/jsweb/js/ (easylistchina+easylist.txt: 2121) +# ||aspjzy.com/jsweb/js/ (easylistchina.txt: 2111) .aspjzy.com/jsweb/js/ -# ||asp300.com/2012js/ (easylistchina+easylist.txt: 2120) +# ||asp300.com/2012js/ (easylistchina.txt: 2110) .asp300.com/2012js/ -# ||asp300.com/2012adjs/ (easylistchina+easylist.txt: 2119) +# ||asp300.com/2012adjs/ (easylistchina.txt: 2109) .asp300.com/2012adjs/ -# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina+easylist.txt: 2118) +# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina.txt: 2108) .asimgs.pplive.cn -# ||asia-home.com.cn/js/yt/ytadshow (easylistchina+easylist.txt: 2117) +# ||asia-home.com.cn/js/yt/ytadshow (easylistchina.txt: 2107) .asia-home.com.cn/js/yt/ytadshow -# ||ashow.pcpop.com^ (easylistchina+easylist.txt: 2116) +# ||ashow.pcpop.com^ (easylistchina.txt: 2106) .ashow.pcpop.com -# ||as.sinahk.net^ (easylistchina+easylist.txt: 2115) +# ||as.sinahk.net^ (easylistchina.txt: 2105) .as.sinahk.net -# ||article.pchome.net/Index.php?c=Intel& (easylistchina+easylist.txt: 2114) +# ||article.pchome.net/Index.php?c=Intel& (easylistchina.txt: 2104) .article.pchome.net/Index\.php\?c=Intel& -# ||arpun.com/arpun/softinfo (easylistchina+easylist.txt: 2113) +# ||arpun.com/arpun/softinfo (easylistchina.txt: 2103) .arpun.com/arpun/softinfo -# ||ark.letv.com/s?vid= (easylistchina+easylist.txt: 2112) +# ||ark.letv.com/s?vid= (easylistchina.txt: 2102) .ark.letv.com/s\?vid= -# ||ark.letv.com/s?res= (easylistchina+easylist.txt: 2111) +# ||ark.letv.com/s?res= (easylistchina.txt: 2101) .ark.letv.com/s\?res= -# ||aqy103.com/js/aqy/ (easylistchina+easylist.txt: 2110) +# ||aqy103.com/js/aqy/ (easylistchina.txt: 2100) .aqy103.com/js/aqy/ -# ||aqy102.com/js/aqy/ (easylistchina+easylist.txt: 2109) +# ||aqy102.com/js/aqy/ (easylistchina.txt: 2099) .aqy102.com/js/aqy/ -# ||aqlife.com/data/attachment/portal/ (easylistchina+easylist.txt: 2108) +# ||aqlife.com/data/attachment/portal/ (easylistchina.txt: 2098) .aqlife.com/data/attachment/portal/ -# ||appinn.com^*/licaifan. (easylistchina+easylist.txt: 2107) +# ||appinn.com^*/licaifan. (easylistchina.txt: 2097) .appinn.com/.*/licaifan\. -# ||appinn.com/images/201509/wd.png (easylistchina+easylist.txt: 2106) +# ||appinn.com/images/201509/wd.png (easylistchina.txt: 2096) .appinn.com/images/201509/wd\.png -# ||app.acm.dzwww.com^ (easylistchina+easylist.txt: 2105) +# ||app.acm.dzwww.com^ (easylistchina.txt: 2095) .app.acm.dzwww.com -# ||app-g.39.net/NNN/ (easylistchina+easylist.txt: 2104) +# ||app-g.39.net/NNN/ (easylistchina.txt: 2094) .app-g.39.net/NNN/ -# ||apihousefun.yam.com/news.php (easylistchina+easylist.txt: 2103) +# ||apihousefun.yam.com/news.php (easylistchina.txt: 2093) .apihousefun.yam.com/news\.php -# ||aoye.cc/js/footer.js (easylistchina+easylist.txt: 2102) +# ||aoye.cc/js/footer.js (easylistchina.txt: 2092) .aoye.cc/js/footer\.js -# ||anywlan.com/link/xcloud.jpg (easylistchina+easylist.txt: 2101) +# ||anywlan.com/link/xcloud.jpg (easylistchina.txt: 2091) .anywlan.com/link/xcloud\.jpg -# ||anywlan.com/link/*.gif (easylistchina+easylist.txt: 2100) +# ||anywlan.com/link/*.gif (easylistchina.txt: 2090) .anywlan.com/link/.*\.gif -# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina+easylist.txt: 2099) +# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina.txt: 2089) .anquan.org/static/user_upload/zorro/.*/%E5%93% -# ||anquan.org/static/user_upload/*/cloud (easylistchina+easylist.txt: 2098) +# ||anquan.org/static/user_upload/*/cloud (easylistchina.txt: 2088) .anquan.org/static/user_upload/.*/cloud -# ||anquan.org/static/profile/images/qq-banner.png (easylistchina+easylist.txt: 2097) +# ||anquan.org/static/profile/images/qq-banner.png (easylistchina.txt: 2087) .anquan.org/static/profile/images/qq-banner\.png -# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina+easylist.txt: 2096) +# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina.txt: 2086) .anquan.org/static/auth/images/ppb_cert/qq-browser\.jpg -# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina+easylist.txt: 2095) +# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina.txt: 2085) .anhuinews.com/zhuyeguanli/.*ad/ -# ||anhuinews.com/include/ (easylistchina+easylist.txt: 2094) +# ||anhuinews.com/include/ (easylistchina.txt: 2084) .anhuinews.com/include/ -# ||angpic.3g.net.cn/ai/ (easylistchina+easylist.txt: 2093) +# ||angpic.3g.net.cn/ai/ (easylistchina.txt: 2083) .angpic.3g.net.cn/ai/ -# ||an7.tv/Runtime/js/ (easylistchina+easylist.txt: 2092) +# ||an7.tv/Runtime/js/ (easylistchina.txt: 2082) .an7.tv/Runtime/js/ -# ||amd.cn/yyets.js (easylistchina+easylist.txt: 2091) +# ||amd.cn/yyets.js (easylistchina.txt: 2081) .amd.cn/yyets\.js -# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina+easylist.txt: 2090) +# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina.txt: 2080) .am.zdnet.com.cn/www/images/ -# ||am.szhome.com^ (easylistchina+easylist.txt: 2089) +# ||am.szhome.com^ (easylistchina.txt: 2079) .am.szhome.com -# ||am.6park.com^ (easylistchina+easylist.txt: 2088) +# ||am.6park.com^ (easylistchina.txt: 2078) .am.6park.com -# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina+easylist.txt: 2087) +# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina.txt: 2077) .alu.cn/aluTrade/Fragments/ListAdvertisementProducts\. -# ||alu.cn/2011/images/conglin.gif (easylistchina+easylist.txt: 2086) +# ||alu.cn/2011/images/conglin.gif (easylistchina.txt: 2076) .alu.cn/2011/images/conglin\.gif -# ||alu.cn*/aluad/ (easylistchina+easylist.txt: 2085) +# ||alu.cn*/aluad/ (easylistchina.txt: 2075) .alu.cn*./(.*/)?aluad/ -# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina+easylist.txt: 2084) +# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina.txt: 2074) .allbeauty.com.tw/GoldPrice/.*_CF\.php -# ||alixixi.com/adsview/ (easylistchina+easylist.txt: 2083) +# ||alixixi.com/adsview/ (easylistchina.txt: 2073) .alixixi.com/adsview/ -# ||alifeifei.net/s/*.js (easylistchina+easylist.txt: 2082) +# ||alifeifei.net/s/*.js (easylistchina.txt: 2072) .alifeifei.net/s/.*\.js -# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina+easylist.txt: 2078) +# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina.txt: 2068) .alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100\.jpg -# ||alicdn.com/tps/*-950-90. (easylistchina+easylist.txt: 2077) +# ||alicdn.com/tps/*-950-90. (easylistchina.txt: 2067) .alicdn.com/tps/.*-950-90\. -# ||ali213.net/static/js/kv (easylistchina+easylist.txt: 2076) +# ||ali213.net/static/js/kv (easylistchina.txt: 2066) .ali213.net/static/js/kv -# ||ali213.net/static/js/kktv (easylistchina+easylist.txt: 2075) +# ||ali213.net/static/js/kktv (easylistchina.txt: 2065) .ali213.net/static/js/kktv -# ||ali213.net/static/js/*_ali213tv.js (easylistchina+easylist.txt: 2074) +# ||ali213.net/static/js/*_ali213tv.js (easylistchina.txt: 2064) .ali213.net/static/js/.*_ali213tv\.js -# ||ali213.net/images/promotion/ (easylistchina+easylist.txt: 2073) +# ||ali213.net/images/promotion/ (easylistchina.txt: 2063) .ali213.net/images/promotion/ -# ||ali213.net/css/data/promotion.css (easylistchina+easylist.txt: 2072) +# ||ali213.net/css/data/promotion.css (easylistchina.txt: 2062) .ali213.net/css/data/promotion\.css -# ||alexa.cn/ad$subdocument (easylistchina+easylist.txt: 2071) +# ||alexa.cn/ad$subdocument (easylistchina.txt: 2061) .alexa.cn/ad -# ||alabout.com/images/*.gif (easylistchina+easylist.txt: 2070) +# ||alabout.com/images/*.gif (easylistchina.txt: 2060) .alabout.com/images/.*\.gif -# ||aknba.com/cache/ads.js (easylistchina+easylist.txt: 2069) +# ||aknba.com/cache/ads.js (easylistchina.txt: 2059) .aknba.com/cache/ads\.js -# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina+easylist.txt: 2068) +# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina.txt: 2058) .akjunshi.com/resource/s/data_js_mil/right_twtj\.js -# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina+easylist.txt: 2067) +# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina.txt: 2057) .akjunshi.com/resource/s/data_js_mil/aksqgg\.js -# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina+easylist.txt: 2066) +# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina.txt: 2056) .ak47fuli.net/wp-content/uploads/20.*\.gif -# ||ak47fuli.net/fd.js (easylistchina+easylist.txt: 2065) +# ||ak47fuli.net/fd.js (easylistchina.txt: 2055) .ak47fuli.net/fd\.js -# ||ajiang.net/b4_dnslak.png (easylistchina+easylist.txt: 2064) +# ||ajiang.net/b4_dnslak.png (easylistchina.txt: 2054) .ajiang.net/b4_dnslak\.png -# ||aiyuke.com/index.php?c=position& (easylistchina+easylist.txt: 2063) +# ||aiyuke.com/index.php?c=position& (easylistchina.txt: 2053) .aiyuke.com/index\.php\?c=position& -# ||aiyidu.com/aiyidu/adver/ (easylistchina+easylist.txt: 2062) +# ||aiyidu.com/aiyidu/adver/ (easylistchina.txt: 2052) .aiyidu.com/aiyidu/adver/ -# ||aituan.com/at/bbs_gg/ (easylistchina+easylist.txt: 2061) +# ||aituan.com/at/bbs_gg/ (easylistchina.txt: 2051) .aituan.com/at/bbs_gg/ -# ||airenti.xyz^$script (easylistchina+easylist.txt: 2060) -.airenti.xyz -# ||airenti.co^$script (easylistchina+easylist.txt: 2059) -.airenti.co -# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina+easylist.txt: 2058) +# ||airenti.in^$script (easylistchina.txt: 2050) +.airenti.in +# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina.txt: 2049) .aipai.com/common/i0uat4jq/play/item\.html -# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina+easylist.txt: 2057) +# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina.txt: 2048) .aipai.com/common/html/commonAdForTfansTo\.html -# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina+easylist.txt: 2056) +# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina.txt: 2047) .aipai.com/app/www/templates/common/ifr/fans_640_40\.html -# ||ainunu.com/vad.js (easylistchina+easylist.txt: 2055) +# ||aipai.com/app/www/templates/common/*_videos_ (easylistchina.txt: 2046) +.aipai.com/app/www/templates/common/.*_videos_ +# ||ainunu.com/vad.js (easylistchina.txt: 2045) .ainunu.com/vad\.js -# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina+easylist.txt: 2054) +# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina.txt: 2044) .aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76\.gif -# ||aijiatxt.com/js/gg.js (easylistchina+easylist.txt: 2053) +# ||aijiatxt.com/js/gg.js (easylistchina.txt: 2043) .aijiatxt.com/js/gg\.js -# ||aijiatxt.com/images/dudu.gif (easylistchina+easylist.txt: 2052) +# ||aijiatxt.com/js/float.js (easylistchina.txt: 2042) +.aijiatxt.com/js/float\.js +# ||aijiatxt.com/images/dudu.gif (easylistchina.txt: 2041) .aijiatxt.com/images/dudu\.gif -# ||aijiatxt.com/images/90.jpg (easylistchina+easylist.txt: 2051) +# ||aijiatxt.com/images/90.jpg (easylistchina.txt: 2040) .aijiatxt.com/images/90\.jpg -# ||aijiatxt.com/images/300.jpg (easylistchina+easylist.txt: 2050) +# ||aijiatxt.com/images/300.jpg (easylistchina.txt: 2039) .aijiatxt.com/images/300\.jpg -# ||aid.chinayk.com^ (easylistchina+easylist.txt: 2049) +# ||aid.chinayk.com^ (easylistchina.txt: 2038) .aid.chinayk.com -# ||aibang.com/?area=ajax&cmd=adv& (easylistchina+easylist.txt: 2048) +# ||aibang.com/?area=ajax&cmd=adv& (easylistchina.txt: 2037) .aibang.com/\?area=ajax&cmd=adv& -# ||ai.bioon.com^ (easylistchina+easylist.txt: 2047) +# ||ai.bioon.com^ (easylistchina.txt: 2036) .ai.bioon.com -# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina+easylist.txt: 2046) +# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina.txt: 2035) .ahtv.cn/publishsys/data/template/1/3/images/zgyd_ -# ||ahlife.com/skin/hftogo/js/ (easylistchina+easylist.txt: 2045) +# ||ahlife.com/skin/hftogo/js/ (easylistchina.txt: 2034) .ahlife.com/skin/hftogo/js/ -# ||ahlife.com/api.php?mod=adv& (easylistchina+easylist.txt: 2044) +# ||ahlife.com/api.php?mod=adv& (easylistchina.txt: 2033) .ahlife.com/api\.php\?mod=adv& -# ||ah.sina.com.cn/iframe/ (easylistchina+easylist.txt: 2043) +# ||ah.sina.com.cn/iframe/ (easylistchina.txt: 2032) .ah.sina.com.cn/iframe/ -# ||afpcreative.wasu.cn^ (easylistchina+easylist.txt: 2042) +# ||afpcreative.wasu.cn^ (easylistchina.txt: 2031) .afpcreative.wasu.cn -# ||afp.wasu.cn^ (easylistchina+easylist.txt: 2041) +# ||afp.wasu.cn^ (easylistchina.txt: 2030) .afp.wasu.cn -# ||afp.chinanews.com^ (easylistchina+easylist.txt: 2040) +# ||afp.chinanews.com^ (easylistchina.txt: 2029) .afp.chinanews.com -# ||afocus.com.cn/s? (easylistchina+easylist.txt: 2039) +# ||afocus.com.cn/s? (easylistchina.txt: 2028) .afocus.com.cn/s\? -# ||adwordsing.com/img/2.jpg (easylistchina+easylist.txt: 2038) +# ||adwordsing.com/img/2.jpg (easylistchina.txt: 2027) .adwordsing.com/img/2\.jpg -# ||adwordsing.com/img/1.jpg (easylistchina+easylist.txt: 2037) +# ||adwordsing.com/img/1.jpg (easylistchina.txt: 2026) .adwordsing.com/img/1\.jpg -# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina+easylist.txt: 2036) +# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina.txt: 2025) .advideoadmin.appledaily.com.tw/ov_player/ -# ||adsproject.nownews.com^$subdocument (easylistchina+easylist.txt: 2035) +# ||adsproject.nownews.com^$subdocument (easylistchina.txt: 2024) .adsproject.nownews.com -# ||adspending01.bwnet.com.tw^ (easylistchina+easylist.txt: 2034) +# ||adspending01.bwnet.com.tw^ (easylistchina.txt: 2023) .adspending01.bwnet.com.tw -# ||adsclick.yx.js.cn^ (easylistchina+easylist.txt: 2033) +# ||adsclick.yx.js.cn^ (easylistchina.txt: 2022) .adsclick.yx.js.cn -# ||adpubs.yaolan.com^ (easylistchina+easylist.txt: 2032) +# ||adpubs.yaolan.com^ (easylistchina.txt: 2021) .adpubs.yaolan.com -# ||adpub.yaolan.com^ (easylistchina+easylist.txt: 2031) +# ||adpub.yaolan.com^ (easylistchina.txt: 2020) .adpub.yaolan.com -# ||adp.cnool.net^ (easylistchina+easylist.txt: 2030) +# ||adp.cnool.net^ (easylistchina.txt: 2019) .adp.cnool.net -# ||adnetpub.yaolan.com^ (easylistchina+easylist.txt: 2029) +# ||adnetpub.yaolan.com^ (easylistchina.txt: 2018) .adnetpub.yaolan.com -# ||admin6.com/templates/index/default/images/100060.gif (easylistchina+easylist.txt: 2028) +# ||admin6.com/templates/index/default/images/100060.gif (easylistchina.txt: 2017) .admin6.com/templates/index/default/images/100060\.gif -# ||admin5.com/lib/js/*_article (easylistchina+easylist.txt: 2027) +# ||admin5.com/lib/js/*_article (easylistchina.txt: 2016) .admin5.com/lib/js/.*_article -# ||admin5.com/hezuo/action/ (easylistchina+easylist.txt: 2026) +# ||admin5.com/hezuo/action/ (easylistchina.txt: 2015) .admin5.com/hezuo/action/ -# ||admin5.com/extras/ (easylistchina+easylist.txt: 2025) +# ||admin5.com/extras/ (easylistchina.txt: 2014) .admin5.com/extras/ -# ||admin5.com/daohang/ (easylistchina+easylist.txt: 2024) +# ||admin5.com/daohang/ (easylistchina.txt: 2013) .admin5.com/daohang/ -# ||admin5.com/bd360qq/action/ (easylistchina+easylist.txt: 2023) +# ||admin5.com/bd360qq/action/ (easylistchina.txt: 2012) .admin5.com/bd360qq/action/ -# ||admin5.com/a5dao/ (easylistchina+easylist.txt: 2022) +# ||admin5.com/a5dao/ (easylistchina.txt: 2011) .admin5.com/a5dao/ -# ||admin10000.com/skin/lagou_ (easylistchina+easylist.txt: 2021) +# ||admin10000.com/skin/lagou_ (easylistchina.txt: 2010) .admin10000.com/skin/lagou_ -# ||admd.yam.com^ (easylistchina+easylist.txt: 2020) +# ||admd.yam.com^ (easylistchina.txt: 2009) .admd.yam.com -# ||admaimai.com/inc/adv (easylistchina+easylist.txt: 2019) +# ||admaimai.com/inc/adv (easylistchina.txt: 2008) .admaimai.com/inc/adv -# ||adm.zzfish.cn^ (easylistchina+easylist.txt: 2018) +# ||adm.zzfish.cn^ (easylistchina.txt: 2007) .adm.zzfish.cn -# ||adm.zbinfo.net^ (easylistchina+easylist.txt: 2017) +# ||adm.zbinfo.net^ (easylistchina.txt: 2006) .adm.zbinfo.net -# ||adm.xmfish.com^ (easylistchina+easylist.txt: 2016) +# ||adm.xmfish.com^ (easylistchina.txt: 2005) .adm.xmfish.com -# ||adm.qzbbs.com^ (easylistchina+easylist.txt: 2015) +# ||adm.qzbbs.com^ (easylistchina.txt: 2004) .adm.qzbbs.com -# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina+easylist.txt: 2014) +# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina.txt: 2003) .adm.leju.sina.com.cn/get_abp_list/ -# ||adm.jjj8.cn^ (easylistchina+easylist.txt: 2013) +# ||adm.jjj8.cn^ (easylistchina.txt: 2002) .adm.jjj8.cn -# ||adm.funshion.com^ (easylistchina+easylist.txt: 2012) +# ||adm.funshion.com^ (easylistchina.txt: 2001) .adm.funshion.com -# ||adm.bbcss.com^ (easylistchina+easylist.txt: 2011) +# ||adm.bbcss.com^ (easylistchina.txt: 2000) .adm.bbcss.com -# ||adm.86wan.com^ (easylistchina+easylist.txt: 2010) +# ||adm.86wan.com^ (easylistchina.txt: 1999) .adm.86wan.com -# ||adm.72zx.com^ (easylistchina+easylist.txt: 2009) +# ||adm.72zx.com^ (easylistchina.txt: 1998) .adm.72zx.com -# ||adm.265g.com^ (easylistchina+easylist.txt: 2008) +# ||adm.265g.com^ (easylistchina.txt: 1997) .adm.265g.com -# ||adm*.autoimg.cn^$object (easylistchina+easylist.txt: 2007) +# ||adm*.autoimg.cn^$object (easylistchina.txt: 1996) .adm*./.*\.autoimg\.cn[^\w%.-] .adm*.autoimg.cn -# ||adk.funshion.com^ (easylistchina+easylist.txt: 2006) +# ||adk.funshion.com^ (easylistchina.txt: 1995) .adk.funshion.com -# ||adi*.cnool.net^ (easylistchina+easylist.txt: 2005) +# ||adi*.cnool.net^ (easylistchina.txt: 1994) .adi*./.*\.cnool\.net[^\w%.-] .adi*.cnool.net -# ||adhome.1fangchan.com^ (easylistchina+easylist.txt: 2004) +# ||adhome.1fangchan.com^ (easylistchina.txt: 1993) .adhome.1fangchan.com -# ||adf.dahe.cn^ (easylistchina+easylist.txt: 2003) +# ||adf.dahe.cn^ (easylistchina.txt: 1992) .adf.dahe.cn -# ||add.freeimg8.com^ (easylistchina+easylist.txt: 2002) +# ||add.freeimg8.com^ (easylistchina.txt: 1991) .add.freeimg8.com -# ||add.dz19.net^ (easylistchina+easylist.txt: 2001) +# ||add.dz19.net^ (easylistchina.txt: 1990) .add.dz19.net -# ||adadmin.house365.com^ (easylistchina+easylist.txt: 2000) +# ||adadmin.house365.com^ (easylistchina.txt: 1989) .adadmin.house365.com -# ||ad.bjmama.net^ (easylistchina+easylist.txt: 1999) +# ||ad.bjmama.net^ (easylistchina.txt: 1988) .ad.bjmama.net -# ||ad.17173.com^ (easylistchina+easylist.txt: 1998) +# ||ad.17173.com^ (easylistchina.txt: 1987) .ad.17173.com -# ||actoys.net/statics/js/index/ad.js (easylistchina+easylist.txt: 1997) +# ||ad.12306.cn/res/*.html (easylistchina.txt: 1986) +.ad.12306.cn/res/.*\.html +# ||actoys.net/statics/js/index/ad.js (easylistchina.txt: 1985) .actoys.net/statics/js/index/ad\.js -# ||actoys.net/js/beitou.js (easylistchina+easylist.txt: 1996) +# ||actoys.net/js/beitou.js (easylistchina.txt: 1984) .actoys.net/js/beitou\.js -# ||actoys.net/index.php?m=poster& (easylistchina+easylist.txt: 1995) +# ||actoys.net/index.php?m=poster& (easylistchina.txt: 1983) .actoys.net/index\.php\?m=poster& -# ||act.chinatimes.com/aimg/ (easylistchina+easylist.txt: 1994) +# ||act.chinatimes.com/aimg/ (easylistchina.txt: 1982) .act.chinatimes.com/aimg/ -# ||acsystem.wasu.cn^ (easylistchina+easylist.txt: 1993) +# ||acsystem.wasu.cn^ (easylistchina.txt: 1981) .acsystem.wasu.cn -# ||acode.b2b.cn/JS/ (easylistchina+easylist.txt: 1992) +# ||acode.b2b.cn/JS/ (easylistchina.txt: 1980) .acode.b2b.cn/JS/ -# ||acg.bz/2.gif (easylistchina+easylist.txt: 1990) +# ||acg.bz/2.gif (easylistchina.txt: 1978) .acg.bz/2\.gif -# ||acg.bz/1.jpg (easylistchina+easylist.txt: 1989) +# ||acg.bz/1.jpg (easylistchina.txt: 1977) .acg.bz/1\.jpg -# ||acg.178.com/s/manhua218_140.html (easylistchina+easylist.txt: 1987) +# ||acg.178.com/s/manhua218_140.html (easylistchina.txt: 1975) .acg.178.com/s/manhua218_140\.html -# ||acg.178.com/201302/t_ (easylistchina+easylist.txt: 1986) +# ||acg.178.com/201302/t_ (easylistchina.txt: 1974) .acg.178.com/201302/t_ -# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina+easylist.txt: 1985) +# ||acfun.tv/adnew.aspx?id= (easylistchina.txt: 1973) +.acfun.tv/adnew\.aspx\?id= +# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina.txt: 1972) .ac.tc.qq.com/store_file_download\?.*&dir_path=/admin/swf/ -# ||abcde.cn/2014images/*96060.jpg (easylistchina+easylist.txt: 1984) +# ||abcde.cn/2014images/*96060.jpg (easylistchina.txt: 1971) .abcde.cn/2014images/.*96060\.jpg -# ||abc.hkepc.com^ (easylistchina+easylist.txt: 1983) +# ||abc.hkepc.com^ (easylistchina.txt: 1970) .abc.hkepc.com -# ||ab.ahlife.com^*.swf (easylistchina+easylist.txt: 1982) +# ||ab.ahlife.com^*.swf (easylistchina.txt: 1969) .ab.ahlife.com/.*\.swf -# ||a67.com/a/*.js (easylistchina+easylist.txt: 1981) +# ||a67.com/a/*.js (easylistchina.txt: 1968) .a67.com/a/.*\.js -# ||a6.hujiang.com^ (easylistchina+easylist.txt: 1980) +# ||a6.hujiang.com^ (easylistchina.txt: 1967) .a6.hujiang.com -# ||a5.yeshj.com^ (easylistchina+easylist.txt: 1979) +# ||a5.yeshj.com^ (easylistchina.txt: 1966) .a5.yeshj.com -# ||a4.yeshj.com^ (easylistchina+easylist.txt: 1978) +# ||a4.yeshj.com^ (easylistchina.txt: 1965) .a4.yeshj.com -# ||a2.b310.com^ (easylistchina+easylist.txt: 1977) +# ||a2.b310.com^ (easylistchina.txt: 1964) .a2.b310.com -# ||a.xizi.com^ (easylistchina+easylist.txt: 1976) +# ||a.xizi.com^ (easylistchina.txt: 1963) .a.xizi.com -# ||a.kbcool.com/Mon_*.swf (easylistchina+easylist.txt: 1975) +# ||a.kbcool.com/Mon_*.swf (easylistchina.txt: 1962) .a.kbcool.com/Mon_.*\.swf -# ||a.jiaodong.net/a/2013/ (easylistchina+easylist.txt: 1974) +# ||a.jiaodong.net/a/2013/ (easylistchina.txt: 1961) .a.jiaodong.net/a/2013/ -# ||a.game.qidian.com/Show.aspx? (easylistchina+easylist.txt: 1973) +# ||a.game.qidian.com/Show.aspx? (easylistchina.txt: 1960) .a.game.qidian.com/Show\.aspx\? -# ||a.game.qidian.com/material/xs.js (easylistchina+easylist.txt: 1972) +# ||a.game.qidian.com/material/xs.js (easylistchina.txt: 1959) .a.game.qidian.com/material/xs\.js -# ||a.game.qidian.com/Layout.aspx? (easylistchina+easylist.txt: 1971) +# ||a.game.qidian.com/Layout.aspx? (easylistchina.txt: 1958) .a.game.qidian.com/Layout\.aspx\? -# ||a.baomihua.com^ (easylistchina+easylist.txt: 1970) +# ||a.baomihua.com^ (easylistchina.txt: 1957) .a.baomihua.com -# ||a-m-s.poco.cn^ (easylistchina+easylist.txt: 1969) +# ||a-m-s.poco.cn^ (easylistchina.txt: 1956) .a-m-s.poco.cn -# ||9ye.com/Files/Editor/ad/ (easylistchina+easylist.txt: 1968) +# ||9ye.com/Files/Editor/ad/ (easylistchina.txt: 1955) .9ye.com/Files/Editor/ad/ -# ||9w1an.com/special/ (easylistchina+easylist.txt: 1967) +# ||9w1an.com/special/ (easylistchina.txt: 1954) .9w1an.com/special/ -# ||9upk.com/js/$subdocument (easylistchina+easylist.txt: 1966) +# ||9upk.com/js/$subdocument (easylistchina.txt: 1953) .9upk.com/js/ -# ||9upk.com/images/95050.gif (easylistchina+easylist.txt: 1965) +# ||9upk.com/images/95050.gif (easylistchina.txt: 1952) .9upk.com/images/95050\.gif -# ||9sky.com/_gg/ (easylistchina+easylist.txt: 1964) +# ||9sky.com/_gg/ (easylistchina.txt: 1951) .9sky.com/_gg/ -# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina+easylist.txt: 1963) +# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina.txt: 1950) .9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00\.jpg -# ||9lala.com/js/ (easylistchina+easylist.txt: 1962) +# ||9lala.com/js/ (easylistchina.txt: 1949) .9lala.com/js/ -# ||9kjj.com/images/*.gif (easylistchina+easylist.txt: 1961) +# ||9kjj.com/images/*.gif (easylistchina.txt: 1948) .9kjj.com/images/.*\.gif -# ||9ist.com/others/ad/ (easylistchina+easylist.txt: 1960) +# ||9ist.com/others/ad/ (easylistchina.txt: 1947) .9ist.com/others/ad/ -# ||9ihome.com/info/ADTopvnet/ (easylistchina+easylist.txt: 1959) +# ||9ihome.com/info/ADTopvnet/ (easylistchina.txt: 1946) .9ihome.com/info/ADTopvnet/ -# ||9ihome.com/adimgs/ (easylistchina+easylist.txt: 1958) +# ||9ihome.com/adimgs/ (easylistchina.txt: 1945) .9ihome.com/adimgs/ -# ||9ht.com/skin2012/js/tlAd.js (easylistchina+easylist.txt: 1957) +# ||9ht.com/skin2012/js/tlAd.js (easylistchina.txt: 1944) .9ht.com/skin2012/js/tlAd\.js -# ||9ez.me/embd.php?type= (easylistchina+easylist.txt: 1956) +# ||9ez.me/embd.php?type= (easylistchina.txt: 1943) .9ez.me/embd\.php\?type= -# ||9duw.com/pic/ (easylistchina+easylist.txt: 1955) +# ||9duw.com/pic/ (easylistchina.txt: 1942) .9duw.com/pic/ -# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina+easylist.txt: 1954) +# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina.txt: 1941) .9db.cc/wp-content/themes/xiucaozuo/js/ifphone\.js -# ||99tianji.com/hack/kaifubiao.js (easylistchina+easylist.txt: 1953) +# ||99ting.cn/image/*.gif (easylistchina.txt: 1940) +.99ting.cn/image/.*\.gif +# ||99ting.cn/789uc/gg.js (easylistchina.txt: 1939) +.99ting.cn/789uc/gg\.js +# ||99tianji.com/hack/kaifubiao.js (easylistchina.txt: 1938) .99tianji.com/hack/kaifubiao\.js -# ||99re2.com/images/*.gif (easylistchina+easylist.txt: 1952) -.99re2.com/images/.*\.gif -# ||99re1.com/images/*.gif (easylistchina+easylist.txt: 1951) -.99re1.com/images/.*\.gif -# ||99re.com/images/close.gif (easylistchina+easylist.txt: 1950) -.99re.com/images/close\.gif -# ||99re.city/ads/ (easylistchina+easylist.txt: 1949) -.99re.city/ads/ -# ||99re.*/media/banners/ (easylistchina+easylist.txt: 1948) -.99re.*./(.*/)?media/banners/ -# ||99mst.com/upfiles/adv/main02.jpg (easylistchina+easylist.txt: 1947) +# ||99mst.com/upfiles/adv/main02.jpg (easylistchina.txt: 1937) .99mst.com/upfiles/adv/main02\.jpg -# ||99danji.com/otherhtml/ (easylistchina+easylist.txt: 1946) +# ||99danji.com/otherhtml/ (easylistchina.txt: 1936) .99danji.com/otherhtml/ -# ||99btgc01.info/uploads/2015/03/11111.jpg (easylistchina+easylist.txt: 1945) -.99btgc01.info/uploads/2015/03/11111\.jpg -# ||99btgc01.info/uploads/*.gif (easylistchina+easylist.txt: 1944) +# ||99btgc01.info/uploads/*.gif (easylistchina.txt: 1935) .99btgc01.info/uploads/.*\.gif -# ||99770.cc^$subdocument (easylistchina+easylist.txt: 1943) +# ||999sdh.com/tu/*.js (easylistchina.txt: 1934) +.999sdh.com/tu/.*\.js +# ||99770.cc^$subdocument (easylistchina.txt: 1933) .99770.cc -# ||9938.net/video/tvg/hot.js (easylistchina+easylist.txt: 1942) +# ||9938.net/video/tvg/hot.js (easylistchina.txt: 1932) .9938.net/video/tvg/hot\.js -# ||9938.net/video/tvg/footer.js (easylistchina+easylist.txt: 1941) +# ||9938.net/video/tvg/footer.js (easylistchina.txt: 1931) .9938.net/video/tvg/footer\.js -# ||97aa1.com/g/ (easylistchina+easylist.txt: 1940) +# ||97aa1.com/g/ (easylistchina.txt: 1930) .97aa1.com/g/ -# ||973.com/xyx/p.js (easylistchina+easylist.txt: 1939) +# ||973.com/xyx/p.js (easylistchina.txt: 1929) .973.com/xyx/p\.js -# ||969g.com/common/iframe/ (easylistchina+easylist.txt: 1938) +# ||969g.com/common/iframe/ (easylistchina.txt: 1928) .969g.com/common/iframe/ -# ||966266.com/a-d/ (easylistchina+easylist.txt: 1937) +# ||966266.com/a-d/ (easylistchina.txt: 1927) .966266.com/a-d/ -# ||962.net/skin/library/js/bt-index.js (easylistchina+easylist.txt: 1936) +# ||962.net/skin/library/js/bt-index.js (easylistchina.txt: 1926) .962.net/skin/library/js/bt-index\.js -# ||962.net/show/index_ (easylistchina+easylist.txt: 1935) +# ||962.net/show/index_ (easylistchina.txt: 1925) .962.net/show/index_ -# ||962.net/show/cms_$script (easylistchina+easylist.txt: 1934) +# ||962.net/show/cms_$script (easylistchina.txt: 1924) .962.net/show/cms_ -# ||962.net/show/bt.js (easylistchina+easylist.txt: 1933) +# ||962.net/show/bt.js (easylistchina.txt: 1923) .962.net/show/bt\.js -# ||962.net/show/all_$script (easylistchina+easylist.txt: 1932) +# ||962.net/show/all_$script (easylistchina.txt: 1922) .962.net/show/all_ -# ||962.net/show/all.js (easylistchina+easylist.txt: 1931) +# ||962.net/show/all.js (easylistchina.txt: 1921) .962.net/show/all\.js -# ||96.43.97.243^ (easylistchina+easylist.txt: 1930) +# ||96.43.97.243^ (easylistchina.txt: 1920) .96.43.97.243 -# ||9553.com/otherhtml/ (easylistchina+easylist.txt: 1929) +# ||9553.com/otherhtml/ (easylistchina.txt: 1919) .9553.com/otherhtml/ -# ||94994.com*/js/plugin/shoppingMall/ (easylistchina+easylist.txt: 1928) +# ||94994.com*/js/plugin/shoppingMall/ (easylistchina.txt: 1918) .94994.com*./(.*/)?js/plugin/shoppingMall/ -# ||93t.cc/template/93t/images/41550.gif (easylistchina+easylist.txt: 1927) +# ||93t.cc/template/93t/images/41550.gif (easylistchina.txt: 1917) .93t.cc/template/93t/images/41550\.gif -# ||93994.com/templets/images/dashan.jpg (easylistchina+easylist.txt: 1926) +# ||93994.com/templets/images/dashan.jpg (easylistchina.txt: 1916) .93994.com/templets/images/dashan\.jpg -# ||92wav.com/rj/*.gif (easylistchina+easylist.txt: 1925) +# ||92wav.com/rj/*.gif (easylistchina.txt: 1915) .92wav.com/rj/.*\.gif -# ||92dp.com/home/showg?id= (easylistchina+easylist.txt: 1924) +# ||92dp.com/home/showg?id= (easylistchina.txt: 1914) .92dp.com/home/showg\?id= -# ||92dp.com/dianping/videoad (easylistchina+easylist.txt: 1923) +# ||92dp.com/dianping/videoad (easylistchina.txt: 1913) .92dp.com/dianping/videoad -# ||91danji.com/js/lmt.js (easylistchina+easylist.txt: 1922) +# ||91danji.com/js/lmt.js (easylistchina.txt: 1912) .91danji.com/js/lmt\.js -# ||91danji.com/images/*.jpg (easylistchina+easylist.txt: 1921) +# ||91danji.com/images/*.jpg (easylistchina.txt: 1911) .91danji.com/images/.*\.jpg -# ||91danji.com/asset/temp/91danji- (easylistchina+easylist.txt: 1920) +# ||91danji.com/asset/temp/91danji- (easylistchina.txt: 1910) .91danji.com/asset/temp/91danji- -# ||918999.com/xjgg/ (easylistchina+easylist.txt: 1919) +# ||918999.com/xjgg/ (easylistchina.txt: 1909) .918999.com/xjgg/ -# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina+easylist.txt: 1918) +# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina.txt: 1908) .91.com/uploads/game/.*-%E5%B9%BF%E5%91%8A\. -# ||91.com/hezuo/ (easylistchina+easylist.txt: 1917) +# ||91.com/hezuo/ (easylistchina.txt: 1907) .91.com/hezuo/ -# ||91.com/*/hezuo/ (easylistchina+easylist.txt: 1916) +# ||91.com/*/hezuo/ (easylistchina.txt: 1906) .91.com/.*/hezuo/ -# ||90zy.cn/data/attachment/portal/ (easylistchina+easylist.txt: 1915) +# ||90zy.cn/data/attachment/portal/ (easylistchina.txt: 1905) .90zy.cn/data/attachment/portal/ -# ||90vs.com/img/cs/ (easylistchina+easylist.txt: 1914) -.90vs.com/img/cs/ -# ||90oo.com/tp/w981.gif (easylistchina+easylist.txt: 1913) +# ||90oo.com/tp/w981.gif (easylistchina.txt: 1904) .90oo.com/tp/w981\.gif -# ||90oo.com/tp/msn.jpg (easylistchina+easylist.txt: 1912) +# ||90oo.com/tp/msn.jpg (easylistchina.txt: 1903) .90oo.com/tp/msn\.jpg -# ||90oo.com/tp/js (easylistchina+easylist.txt: 1911) +# ||90oo.com/tp/js (easylistchina.txt: 1902) .90oo.com/tp/js -# ||90oo.com/tp/hg (easylistchina+easylist.txt: 1910) +# ||90oo.com/tp/hg (easylistchina.txt: 1901) .90oo.com/tp/hg -# ||90oo.com/tp/down.gif (easylistchina+easylist.txt: 1909) +# ||90oo.com/tp/down.gif (easylistchina.txt: 1900) .90oo.com/tp/down\.gif -# ||90oo.com/tp/90232.jpg (easylistchina+easylist.txt: 1908) +# ||90oo.com/tp/90232.jpg (easylistchina.txt: 1899) .90oo.com/tp/90232\.jpg -# ||90oo.com/tp/40 (easylistchina+easylist.txt: 1907) +# ||90oo.com/tp/40 (easylistchina.txt: 1898) .90oo.com/tp/40 -# ||90oo.com/tp/*980.gif (easylistchina+easylist.txt: 1906) +# ||90oo.com/tp/*980.gif (easylistchina.txt: 1897) .90oo.com/tp/.*980\.gif -# ||90bifen.net/images/c_ad_ (easylistchina+easylist.txt: 1905) +# ||90bifen.net/images/c_ad_ (easylistchina.txt: 1896) .90bifen.net/images/c_ad_ -# ||9091tv.com/Runtime/js/vod (easylistchina+easylist.txt: 1904) +# ||9091tv.com/Runtime/js/vod (easylistchina.txt: 1895) .9091tv.com/Runtime/js/vod -# ||9091tv.com/Runtime/js/topguanggao (easylistchina+easylist.txt: 1903) +# ||9091tv.com/Runtime/js/topguanggao (easylistchina.txt: 1894) .9091tv.com/Runtime/js/topguanggao -# ||9091tv.com/hhhh.htm (easylistchina+easylist.txt: 1902) +# ||9091tv.com/hhhh.htm (easylistchina.txt: 1893) .9091tv.com/hhhh\.htm -# ||9091tv.com/dy/mtu.swf (easylistchina+easylist.txt: 1901) +# ||9091tv.com/dy/mtu.swf (easylistchina.txt: 1892) .9091tv.com/dy/mtu\.swf -# ||9000wy.com/style/js/2015content.js (easylistchina+easylist.txt: 1900) +# ||9000wy.com/style/js/2015content.js (easylistchina.txt: 1891) .9000wy.com/style/js/2015content\.js -# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina+easylist.txt: 1899) +# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina.txt: 1890) .900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi\.gif -# ||8vod.net/detail/vod_*.js (easylistchina+easylist.txt: 1898) +# ||8vod.net/detail/vod_*.js (easylistchina.txt: 1889) .8vod.net/detail/vod_.*\.js -# ||8vod.net/detail/play_*.js (easylistchina+easylist.txt: 1897) +# ||8vod.net/detail/play_*.js (easylistchina.txt: 1888) .8vod.net/detail/play_.*\.js -# ||8jkx.com^ (easylistchina+easylist.txt: 1896) +# ||8jkx.com^ (easylistchina.txt: 1886) .8jkx.com -# ||8dyun.com/*.php$script (easylistchina+easylist.txt: 1895) +# ||8dyun.com/*.php$script (easylistchina.txt: 1885) .8dyun.com/.*\.php -# ||8d8d.me/images/dealer.gif (easylistchina+easylist.txt: 1894) +# ||8d8d.me/images/dealer.gif (easylistchina.txt: 1884) .8d8d.me/images/dealer\.gif -# ||88liu.com/data/attachment/portal/ (easylistchina+easylist.txt: 1893) +# ||88liu.com/data/attachment/portal/ (easylistchina.txt: 1883) .88liu.com/data/attachment/portal/ -# ||88gs.com/agfile/ (easylistchina+easylist.txt: 1892) +# ||88gs.com/agfile/ (easylistchina.txt: 1882) .88gs.com/agfile/ -# ||8888nn.com/sxgg/13.js (easylistchina+easylist.txt: 1891) -.8888nn.com/sxgg/13\.js -# ||8888nn.com/sxgg/12.js (easylistchina+easylist.txt: 1890) -.8888nn.com/sxgg/12\.js -# ||88448.com/images/gj/ (easylistchina+easylist.txt: 1889) +# ||88448.com/images/gj/ (easylistchina.txt: 1881) .88448.com/images/gj/ -# ||87994.com/images/rili.gif (easylistchina+easylist.txt: 1888) +# ||880fg.com/css/*.js (easylistchina.txt: 1880) +.880fg.com/css/.*\.js +# ||87994.com/images/rili.gif (easylistchina.txt: 1879) .87994.com/images/rili\.gif -# ||86file.megajoy.com^ (easylistchina+easylist.txt: 1887) +# ||86file.megajoy.com^ (easylistchina.txt: 1878) .86file.megajoy.com -# ||8684.com/com/sys_ad_ (easylistchina+easylist.txt: 1886) +# ||8684.com/com/sys_ad_ (easylistchina.txt: 1877) .8684.com/com/sys_ad_ -# ||8684.com/baidu/c.js (easylistchina+easylist.txt: 1885) +# ||8684.com/baidu/c.js (easylistchina.txt: 1876) .8684.com/baidu/c\.js -# ||8684.com/20150123/f3d37541.jpg (easylistchina+easylist.txt: 1884) +# ||8684.com/20150123/f3d37541.jpg (easylistchina.txt: 1875) .8684.com/20150123/f3d37541\.jpg -# ||8684.cn/id/ad_ (easylistchina+easylist.txt: 1883) +# ||8684.cn/id/ad_ (easylistchina.txt: 1874) .8684.cn/id/ad_ -# ||86696.com/images/indexad.jpg (easylistchina+easylist.txt: 1882) +# ||8683ys.com/template/380x60.gif (easylistchina.txt: 1873) +.8683ys.com/template/380x60\.gif +# ||86696.com/images/indexad.jpg (easylistchina.txt: 1872) .86696.com/images/indexad\.jpg -# ||855699.com^*qq.js (easylistchina+easylist.txt: 1881) +# ||855699.com^*qq.js (easylistchina.txt: 1871) .855699.com/.*qq\.js -# ||855699.com/piao.js (easylistchina+easylist.txt: 1880) +# ||855699.com/piao.js (easylistchina.txt: 1870) .855699.com/piao\.js -# ||83133.com/api/ (easylistchina+easylist.txt: 1879) +# ||83133.com/api/ (easylistchina.txt: 1869) .83133.com/api/ -# ||81qi.com/d/js/ (easylistchina+easylist.txt: 1878) +# ||81qi.com/d/js/ (easylistchina.txt: 1868) .81qi.com/d/js/ -# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina+easylist.txt: 1877) +# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina.txt: 1867) .81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02\.jpg -# ||80txt.com/js3*.gif (easylistchina+easylist.txt: 1876) +# ||80txt.com/js3*.gif (easylistchina.txt: 1866) .80txt.com/js3.*\.gif -# ||801.tianyaui.com^ (easylistchina+easylist.txt: 1875) +# ||801.tianyaui.com^ (easylistchina.txt: 1865) .801.tianyaui.com -# ||800j.com.cn/index.php?m=poster& (easylistchina+easylist.txt: 1874) +# ||800j.com.cn/index.php?m=poster& (easylistchina.txt: 1864) .800j.com.cn/index\.php\?m=poster& -# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina+easylist.txt: 1873) +# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina.txt: 1863) .800j.com.cn/api\.php\?op=itemtopbanner& -# ||800j.com.cn/2014ad/ (easylistchina+easylist.txt: 1872) +# ||800j.com.cn/2014ad/ (easylistchina.txt: 1862) .800j.com.cn/2014ad/ -# ||800j.com.cn/2013ad/ (easylistchina+easylist.txt: 1871) +# ||800j.com.cn/2013ad/ (easylistchina.txt: 1861) .800j.com.cn/2013ad/ -# ||8*.tianya.cn^ (easylistchina+easylist.txt: 1870) +# ||8*.tianya.cn^ (easylistchina.txt: 1860) .8*./.*\.tianya\.cn[^\w%.-] .8*.tianya.cn -# ||7y7.com/js/7y7.ad. (easylistchina+easylist.txt: 1869) +# ||7y7.com/js/7y7.ad. (easylistchina.txt: 1859) .7y7.com/js/7y7\.ad\. -# ||7xdown.com/youid/ (easylistchina+easylist.txt: 1868) +# ||7xdown.com/youid/ (easylistchina.txt: 1858) .7xdown.com/youid/ -# ||7xdown.com/idcgg/ (easylistchina+easylist.txt: 1867) +# ||7xdown.com/idcgg/ (easylistchina.txt: 1857) .7xdown.com/idcgg/ -# ||7vk.com/detail/ (easylistchina+easylist.txt: 1866) +# ||7vk.com/detail/ (easylistchina.txt: 1856) .7vk.com/detail/ -# ||7scs.com/js/TOP.js (easylistchina+easylist.txt: 1865) +# ||7scs.com/js/TOP.js (easylistchina.txt: 1855) .7scs.com/js/TOP\.js -# ||7mad.7m.cn^ (easylistchina+easylist.txt: 1864) +# ||7mad.7m.cn^ (easylistchina.txt: 1854) .7mad.7m.cn -# ||7m.cn/v2/js/analysebanner.js (easylistchina+easylist.txt: 1863) +# ||7m.cn/v2/js/analysebanner.js (easylistchina.txt: 1853) .7m.cn/v2/js/analysebanner\.js -# ||7m.cn/analyse/include/*_ (easylistchina+easylist.txt: 1862) +# ||7m.cn/analyse/include/*_ (easylistchina.txt: 1852) .7m.cn/analyse/include/.*_ -# ||7kankan.com/scripts/new/indext (easylistchina+easylist.txt: 1861) +# ||7kankan.com/scripts/new/indext (easylistchina.txt: 1851) .7kankan.com/scripts/new/indext -# ||7kankan.com/c/123.gif (easylistchina+easylist.txt: 1860) +# ||7kankan.com/c/123.gif (easylistchina.txt: 1850) .7kankan.com/c/123\.gif -# ||7k7k.com/loading/loading.htm (easylistchina+easylist.txt: 1859) +# ||7k7k.com/loading/loading.htm (easylistchina.txt: 1849) .7k7k.com/loading/loading\.htm -# ||7k7k.com/ad-*.htm (easylistchina+easylist.txt: 1858) +# ||7k7k.com/ad-*.htm (easylistchina.txt: 1848) .7k7k.com/ad-.*\.htm -# ||7edown.com/greensoft/js/ (easylistchina+easylist.txt: 1857) +# ||7edown.com/greensoft/js/ (easylistchina.txt: 1847) .7edown.com/greensoft/js/ -# ||7dsw.com/web8/js/ (easylistchina+easylist.txt: 1856) +# ||7dsw.com/web8/js/ (easylistchina.txt: 1846) .7dsw.com/web8/js/ -# ||7c.com/7c_*.html? (easylistchina+easylist.txt: 1855) +# ||7c.com/7c_*.html? (easylistchina.txt: 1845) .7c.com/7c_.*\.html\? -# ||79pan.com/gao.gif (easylistchina+easylist.txt: 1854) +# ||79pan.com/gao.gif (easylistchina.txt: 1844) .79pan.com/gao\.gif -# ||78land.com/js/fumeiti.js (easylistchina+easylist.txt: 1853) +# ||78land.com/js/fumeiti.js (easylistchina.txt: 1843) .78land.com/js/fumeiti\.js -# ||78dm.net/images/mingren250.jpg (easylistchina+easylist.txt: 1852) +# ||78dm.net/images/mingren250.jpg (easylistchina.txt: 1842) .78dm.net/images/mingren250\.jpg -# ||789pan.com/templates/default/images/kuping.gif (easylistchina+easylist.txt: 1851) +# ||789pan.com/templates/default/images/kuping.gif (easylistchina.txt: 1841) .789pan.com/templates/default/images/kuping\.gif -# ||77kp.com/bd/ (easylistchina+easylist.txt: 1850) +# ||77kp.com/bd/ (easylistchina.txt: 1840) .77kp.com/bd/ -# ||77bike.com/img/tern.swf (easylistchina+easylist.txt: 1849) +# ||77bike.com/img/tern.swf (easylistchina.txt: 1839) .77bike.com/img/tern\.swf -# ||77bike.com/img/sticker.gif (easylistchina+easylist.txt: 1848) +# ||77bike.com/img/sticker.gif (easylistchina.txt: 1838) .77bike.com/img/sticker\.gif -# ||77bike.com/img/fsir.gif (easylistchina+easylist.txt: 1847) +# ||77bike.com/img/fsir.gif (easylistchina.txt: 1837) .77bike.com/img/fsir\.gif -# ||777g.me/cs/ (easylistchina+easylist.txt: 1846) +# ||777g.me/cs/ (easylistchina.txt: 1836) .777g.me/cs/ -# ||77119.com/js/ (easylistchina+easylist.txt: 1845) +# ||77119.com/js/ (easylistchina.txt: 1835) .77119.com/js/ -# ||76xh.com/skin/zxf/js/ad (easylistchina+easylist.txt: 1844) +# ||76xh.com/skin/zxf/js/ad (easylistchina.txt: 1834) .76xh.com/skin/zxf/js/ad -# ||766.com/upbox2/js/*.js (easylistchina+easylist.txt: 1843) +# ||766.com/upbox2/js/*.js (easylistchina.txt: 1833) .766.com/upbox2/js/.*\.js -# ||76.73.85.179/js/v1.js (easylistchina+easylist.txt: 1842) +# ||76.73.85.179/js/v1.js (easylistchina.txt: 1832) .76.73.85.179/js/v1\.js -# ||75.125.41.29:8080/ (easylistchina+easylist.txt: 1841) +# ||75.125.41.29:8080/ (easylistchina.txt: 1831) .75.125.41.29:8080 -# ||73ts.com/data/0000/08/14164486880364.gif (easylistchina+easylist.txt: 1840) -.73ts.com/data/0000/08/14164486880364\.gif -# ||73p37.com/js/top (easylistchina+easylist.txt: 1839) +# ||73p37.com/js/top (easylistchina.txt: 1830) .73p37.com/js/top -# ||73p37.com/js/playad.html (easylistchina+easylist.txt: 1838) +# ||73p37.com/js/playad.html (easylistchina.txt: 1829) .73p37.com/js/playad\.html -# ||73p37.com/js/bottomall.js (easylistchina+easylist.txt: 1837) +# ||73p37.com/js/bottomall.js (easylistchina.txt: 1828) .73p37.com/js/bottomall\.js -# ||72bbb.com/images/12.gif (easylistchina+easylist.txt: 1836) +# ||72bbb.com/images/12.gif (easylistchina.txt: 1827) .72bbb.com/images/12\.gif -# ||726w.com/sohu.html (easylistchina+easylist.txt: 1835) +# ||726w.com/sohu.html (easylistchina.txt: 1826) .726w.com/sohu\.html -# ||70.86.24.120:8060/ (easylistchina+easylist.txt: 1834) +# ||70.86.24.120:8060/ (easylistchina.txt: 1825) .70.86.24.120:8060 -# ||6vhao.com/d/f*.js (easylistchina+easylist.txt: 1833) +# ||6vhao.com/d/f*.js (easylistchina.txt: 1824) .6vhao.com/d/f.*\.js -# ||6vhao.com/d/960.js (easylistchina+easylist.txt: 1832) +# ||6vhao.com/d/960.js (easylistchina.txt: 1823) .6vhao.com/d/960\.js -# ||6vdy.com/d/f*.js (easylistchina+easylist.txt: 1831) +# ||6vdy.com/d/f*.js (easylistchina.txt: 1822) .6vdy.com/d/f.*\.js -# ||6vdy.com/d/960.js (easylistchina+easylist.txt: 1830) +# ||6vdy.com/d/960.js (easylistchina.txt: 1821) .6vdy.com/d/960\.js -# ||6park.com^$subdocument (easylistchina+easylist.txt: 1829) +# ||6park.com^$subdocument (easylistchina.txt: 1820) .6park.com -# ||6park.com/wap/ (easylistchina+easylist.txt: 1828) +# ||6park.com/wap/ (easylistchina.txt: 1819) .6park.com/wap/ -# ||6park.com/parks/$script (easylistchina+easylist.txt: 1827) +# ||6park.com/parks/$script (easylistchina.txt: 1818) .6park.com/parks/ -# ||6park.com/news/$script (easylistchina+easylist.txt: 1826) +# ||6park.com/news/$script (easylistchina.txt: 1817) .6park.com/news/ -# ||6park.com/img/15.png (easylistchina+easylist.txt: 1825) +# ||6park.com/img/15.png (easylistchina.txt: 1816) .6park.com/img/15\.png -# ||6ddd.com/js/myfiles/down_ (easylistchina+easylist.txt: 1824) +# ||6ddd.com/js/myfiles/down_ (easylistchina.txt: 1815) .6ddd.com/js/myfiles/down_ -# ||6ddd.com/js/myfiles/banner.js (easylistchina+easylist.txt: 1823) +# ||6ddd.com/js/myfiles/banner.js (easylistchina.txt: 1814) .6ddd.com/js/myfiles/banner\.js -# ||6d245gxt.52pk.com^ (easylistchina+easylist.txt: 1822) +# ||6d245gxt.52pk.com^ (easylistchina.txt: 1813) .6d245gxt.52pk.com -# ||69nh.com/detail/player_ (easylistchina+easylist.txt: 1821) +# ||69nh.com/detail/player_ (easylistchina.txt: 1812) .69nh.com/detail/player_ -# ||6949.com/ggs_ (easylistchina+easylist.txt: 1820) +# ||6949.com/ggs_ (easylistchina.txt: 1811) .6949.com/ggs_ -# ||6949.com/640x44.htm (easylistchina+easylist.txt: 1819) +# ||6949.com/640x44.htm (easylistchina.txt: 1810) .6949.com/640x44\.htm -# ||69.30.217.155^*.png (easylistchina+easylist.txt: 1818) +# ||69.30.217.155^*.png (easylistchina.txt: 1809) .69.30.217.155/.*\.png -# ||68design.net/inc/news. (easylistchina+easylist.txt: 1817) +# ||68design.net/inc/news. (easylistchina.txt: 1808) .68design.net/inc/news\. -# ||676000.com/001.htm (easylistchina+easylist.txt: 1816) +# ||676000.com/001.htm (easylistchina.txt: 1807) .676000.com/001\.htm -# ||67.159.44.187/js/v1.js (easylistchina+easylist.txt: 1815) +# ||67.159.44.187/js/v1.js (easylistchina.txt: 1806) .67.159.44.187/js/v1\.js -# ||66ys.cc/d/$script (easylistchina+easylist.txt: 1814) +# ||66ys.cc/d/$script (easylistchina.txt: 1805) .66ys.cc/d/ -# ||66xinxin.com/js/ads888/ (easylistchina+easylist.txt: 1813) +# ||66xinxin.com/js/ads888/ (easylistchina.txt: 1804) .66xinxin.com/js/ads888/ -# ||66wz.com/data/attachment/portal/ (easylistchina+easylist.txt: 1812) +# ||66wz.com/data/attachment/portal/ (easylistchina.txt: 1803) .66wz.com/data/attachment/portal/ -# ||66wz.com/adv2/ (easylistchina+easylist.txt: 1811) +# ||66wz.com/adv2/ (easylistchina.txt: 1802) .66wz.com/adv2/ -# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina+easylist.txt: 1810) +# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina.txt: 1801) .66wz.com/48aa9454edd446fbef0df9e9aa5997f4\.gif -# ||66rd.cn^*96060 (easylistchina+easylist.txt: 1809) +# ||66rd.cn^*96060 (easylistchina.txt: 1800) .66rd.cn/.*96060 -# ||66rd.cn^*120250. (easylistchina+easylist.txt: 1808) +# ||66rd.cn^*120250. (easylistchina.txt: 1799) .66rd.cn/.*120250\. -# ||66rd.cn^*100060. (easylistchina+easylist.txt: 1807) +# ||66rd.cn^*100060. (easylistchina.txt: 1798) .66rd.cn/.*100060\. -# ||66rd.cn^*1000300. (easylistchina+easylist.txt: 1806) +# ||66rd.cn^*1000300. (easylistchina.txt: 1797) .66rd.cn/.*1000300\. -# ||66rd.cn/pic/rdwmh800.gif (easylistchina+easylist.txt: 1805) +# ||66rd.cn/pic/rdwmh800.gif (easylistchina.txt: 1796) .66rd.cn/pic/rdwmh800\.gif -# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina+easylist.txt: 1804) +# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina.txt: 1795) .66rd.cn/pic/rdrccs2014\.jpg -# ||66rd.cn/pic/itv130.jpg (easylistchina+easylist.txt: 1803) +# ||66rd.cn/pic/itv130.jpg (easylistchina.txt: 1794) .66rd.cn/pic/itv130\.jpg -# ||66rd.cn/pic/*1000. (easylistchina+easylist.txt: 1802) +# ||66rd.cn/pic/*1000. (easylistchina.txt: 1793) .66rd.cn/pic/.*1000\. -# ||66rd.cn/js/foot.js (easylistchina+easylist.txt: 1801) +# ||66rd.cn/js/foot.js (easylistchina.txt: 1792) .66rd.cn/js/foot\.js -# ||66ip.cn/klz/953X164.gif (easylistchina+easylist.txt: 1800) +# ||66ip.cn/klz/953X164.gif (easylistchina.txt: 1791) .66ip.cn/klz/953X164\.gif -# ||66ip.cn/common/img/yaoyao.jpg (easylistchina+easylist.txt: 1799) +# ||66ip.cn/common/img/yaoyao.jpg (easylistchina.txt: 1790) .66ip.cn/common/img/yaoyao\.jpg -# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina+easylist.txt: 1798) +# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina.txt: 1789) .66hbo.com/images/new1/uploads/index_banner/.*\.jpg -# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina+easylist.txt: 1797) +# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina.txt: 1788) .66hbo.com/images/new1/uploads/index_banner/.*\.gif -# ||66e.cc/d/$script (easylistchina+easylist.txt: 1796) +# ||66e.cc/d/$script (easylistchina.txt: 1787) .66e.cc/d/ -# ||666pan.com/666a/ (easylistchina+easylist.txt: 1795) +# ||666pan.com/666a/ (easylistchina.txt: 1786) .666pan.com/666a/ -# ||666kv.com/adstaic/ (easylistchina+easylist.txt: 1794) -.666kv.com/adstaic/ -# ||6665432.com^*.gif (easylistchina+easylist.txt: 1793) +# ||6665432.com^*.gif (easylistchina.txt: 1785) .6665432.com/.*\.gif -# ||66384.com/templets/SWFad (easylistchina+easylist.txt: 1792) +# ||66384.com/templets/SWFad (easylistchina.txt: 1784) .66384.com/templets/SWFad -# ||66384.com/templets/js/stats.js (easylistchina+easylist.txt: 1791) +# ||66384.com/templets/js/stats.js (easylistchina.txt: 1783) .66384.com/templets/js/stats\.js -# ||66.fmx.cn/js/ (easylistchina+easylist.txt: 1790) +# ||6620070.com/js/ (easylistchina.txt: 1782) +.6620070.com/js/ +# ||66.fmx.cn/js/ (easylistchina.txt: 1781) .66.fmx.cn/js/ -# ||654mmm.com^ (easylistchina+easylist.txt: 1789) +# ||654mmm.com^ (easylistchina.txt: 1780) .654mmm.com -# ||62422.cn/js/inc/13.swf (easylistchina+easylist.txt: 1788) +# ||62422.cn/js/inc/13.swf (easylistchina.txt: 1779) .62422.cn/js/inc/13\.swf -# ||62422.cn/ggimg/ (easylistchina+easylist.txt: 1787) +# ||62422.cn/ggimg/ (easylistchina.txt: 1778) .62422.cn/ggimg/ -# ||61.235.249.195^*/Default.aspx?id= (easylistchina+easylist.txt: 1786) +# ||61.235.249.195^*/Default.aspx?id= (easylistchina.txt: 1777) .61.235.249.195/.*/Default\.aspx\?id= -# ||61.164.108.184^*.swf (easylistchina+easylist.txt: 1785) +# ||61.164.108.184^*.swf (easylistchina.txt: 1776) .61.164.108.184/.*\.swf -# ||61.164.108.184^*.gif (easylistchina+easylist.txt: 1784) +# ||61.164.108.184^*.gif (easylistchina.txt: 1775) .61.164.108.184/.*\.gif -# ||61.164.108.104:4275/*.gif (easylistchina+easylist.txt: 1783) +# ||61.164.108.104:4275/*.gif (easylistchina.txt: 1774) .61.164.108.104:4275/.*\.gif -# ||61.147.92.251:81/120x160.asp (easylistchina+easylist.txt: 1782) +# ||61.147.92.251:81/120x160.asp (easylistchina.txt: 1773) .61.147.92.251:81/120x160\.asp -# ||61.143.225.176:818/nowscore/ (easylistchina+easylist.txt: 1781) +# ||61.143.225.176:818/nowscore/ (easylistchina.txt: 1772) .61.143.225.176:818/nowscore/ -# ||60808.org/a/*.jpg (easylistchina+easylist.txt: 1780) +# ||60808.org/a/*.jpg (easylistchina.txt: 1771) .60808.org/a/.*\.jpg -# ||600km.com/template/*/ad/ (easylistchina+easylist.txt: 1779) +# ||600km.com/template/*/ad/ (easylistchina.txt: 1770) .600km.com/template/.*/ad/ -# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina+easylist.txt: 1778) +# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina.txt: 1769) .600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ -# ||6.gy/wp-content/uploads/*/ad (easylistchina+easylist.txt: 1777) +# ||6.gy/wp-content/uploads/*/ad (easylistchina.txt: 1768) .6.gy/wp-content/uploads/.*/ad -# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina+easylist.txt: 1776) +# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina.txt: 1767) .6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40\.jpg -# ||6.cn/coop/pub/getRand.php? (easylistchina+easylist.txt: 1775) +# ||6.cn/coop/pub/getRand.php? (easylistchina.txt: 1766) .6.cn/coop/pub/getRand\.php\? -# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina+easylist.txt: 1774) +# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina.txt: 1765) .6.cn/coop/pub/getMiniPage\.php\?src= -# ||5ydj.com/js/shop.js (easylistchina+easylist.txt: 1773) +# ||5ydj.com/js/shop.js (easylistchina.txt: 1764) .5ydj.com/js/shop\.js -# ||5ydj.com/js/hometj.js (easylistchina+easylist.txt: 1772) +# ||5ydj.com/js/hometj.js (easylistchina.txt: 1763) .5ydj.com/js/hometj\.js -# ||5ydj.com/images/banner/ (easylistchina+easylist.txt: 1771) +# ||5ydj.com/images/banner/ (easylistchina.txt: 1762) .5ydj.com/images/banner/ -# ||5y9nfpes.52pk.com^ (easylistchina+easylist.txt: 1770) +# ||5y9nfpes.52pk.com^ (easylistchina.txt: 1761) .5y9nfpes.52pk.com -# ||5vdd.com/opear.jpg (easylistchina+easylist.txt: 1769) +# ||5vdd.com/opear.jpg (easylistchina.txt: 1760) .5vdd.com/opear\.jpg -# ||5vdd.com/iqiyi.jpg (easylistchina+easylist.txt: 1768) +# ||5vdd.com/iqiyi.jpg (easylistchina.txt: 1759) .5vdd.com/iqiyi\.jpg -# ||5vdd.com/ie.gif (easylistchina+easylist.txt: 1767) +# ||5vdd.com/ie.gif (easylistchina.txt: 1758) .5vdd.com/ie\.gif -# ||5vdd.com/2345ws.jpg (easylistchina+easylist.txt: 1766) +# ||5vdd.com/2345ws.jpg (easylistchina.txt: 1757) .5vdd.com/2345ws\.jpg -# ||5tps.com/js/bo_al.js (easylistchina+easylist.txt: 1765) +# ||5tps.com/js/bo_al.js (easylistchina.txt: 1756) .5tps.com/js/bo_al\.js -# ||5tps.com/js/al_ (easylistchina+easylist.txt: 1764) +# ||5tps.com/js/al_ (easylistchina.txt: 1755) .5tps.com/js/al_ -# ||5moe.com/player/ad.xml (easylistchina+easylist.txt: 1763) +# ||5moe.com/player/ad.xml (easylistchina.txt: 1754) .5moe.com/player/ad\.xml -# ||5iyq.com/skin/default/js/topad (easylistchina+easylist.txt: 1762) +# ||5iyq.com/skin/default/js/topad (easylistchina.txt: 1753) .5iyq.com/skin/default/js/topad -# ||5ips.net/love/ (easylistchina+easylist.txt: 1761) +# ||5ips.net/love/ (easylistchina.txt: 1752) .5ips.net/love/ -# ||5imx.com/BBS/image/img/ (easylistchina+easylist.txt: 1760) +# ||5imx.com/BBS/image/img/ (easylistchina.txt: 1751) .5imx.com/BBS/image/img/ -# ||5imx.com/BBS/image/image/ (easylistchina+easylist.txt: 1759) +# ||5imx.com/BBS/image/image/ (easylistchina.txt: 1750) .5imx.com/BBS/image/image/ -# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina+easylist.txt: 1758) +# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina.txt: 1749) .5imx.com/BBS/data/attachment/common/news/ -# ||5ilog.com/qq/js/jsgg.js (easylistchina+easylist.txt: 1757) +# ||5ilog.com/qq/js/jsgg.js (easylistchina.txt: 1748) .5ilog.com/qq/js/jsgg\.js -# ||5icool.org/uploadfile/poster/1080x60. (easylistchina+easylist.txt: 1756) +# ||5icool.org/uploadfile/poster/1080x60. (easylistchina.txt: 1747) .5icool.org/uploadfile/poster/1080x60\. -# ||5i.com/include/js/ad_ (easylistchina+easylist.txt: 1755) +# ||5i.com/include/js/ad_ (easylistchina.txt: 1746) .5i.com/include/js/ad_ -# ||5i.com/images/5ibbtangct.js (easylistchina+easylist.txt: 1754) +# ||5i.com/images/5ibbtangct.js (easylistchina.txt: 1745) .5i.com/images/5ibbtangct\.js -# ||5dmail.net/js/ (easylistchina+easylist.txt: 1753) +# ||5dmail.net/js/ (easylistchina.txt: 1744) .5dmail.net/js/ -# ||5dmail.net/image/ORF_1000.gif (easylistchina+easylist.txt: 1752) +# ||5dmail.net/image/ORF_1000.gif (easylistchina.txt: 1743) .5dmail.net/image/ORF_1000\.gif -# ||5dmail.net/image/ad_ (easylistchina+easylist.txt: 1751) +# ||5dmail.net/image/ad_ (easylistchina.txt: 1742) .5dmail.net/image/ad_ -# ||5dmail.net/image/$object (easylistchina+easylist.txt: 1750) +# ||5dmail.net/image/$object (easylistchina.txt: 1741) .5dmail.net/image/ -# ||5adm.net/79070.gif (easylistchina+easylist.txt: 1749) +# ||5adm.net/79070.gif (easylistchina.txt: 1740) .5adm.net/79070\.gif -# ||5944.net/source/css/images/ad_ (easylistchina+easylist.txt: 1748) +# ||5944.net/source/css/images/ad_ (easylistchina.txt: 1739) .5944.net/source/css/images/ad_ -# ||591hx.com/zyrk_dy/gwjl.html (easylistchina+easylist.txt: 1747) +# ||592siwa.com/tools/ (easylistchina.txt: 1738) +.592siwa.com/tools/ +# ||591hx.com/zyrk_dy/gwjl.html (easylistchina.txt: 1737) .591hx.com/zyrk_dy/gwjl\.html -# ||591hx.com/lunbo/ (easylistchina+easylist.txt: 1746) +# ||591hx.com/lunbo/ (easylistchina.txt: 1736) .591hx.com/lunbo/ -# ||591hx.com/js/floatbox.js (easylistchina+easylist.txt: 1745) +# ||591hx.com/js/floatbox.js (easylistchina.txt: 1735) .591hx.com/js/floatbox\.js -# ||591hx.com/js/dll.js (easylistchina+easylist.txt: 1744) +# ||591hx.com/js/dll.js (easylistchina.txt: 1734) .591hx.com/js/dll\.js -# ||591hx.com/images/0000.jpg (easylistchina+easylist.txt: 1743) +# ||591hx.com/images/0000.jpg (easylistchina.txt: 1733) .591hx.com/images/0000\.jpg -# ||591.xxx/media/banners/ (easylistchina+easylist.txt: 1742) -.591.xxx/media/banners/ -# ||591.xxx/images/*.gif (easylistchina+easylist.txt: 1741) -.591.xxx/images/.*\.gif -# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina+easylist.txt: 1740) +# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina.txt: 1732) .59.36.101.209:888/link/vc_280x192\.gif -# ||58cdn.com.cn/ds/tgbrand/ (easylistchina+easylist.txt: 1739) +# ||58cdn.com.cn/ds/tgbrand/ (easylistchina.txt: 1731) .58cdn.com.cn/ds/tgbrand/ -# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina+easylist.txt: 1738) -# ||58.com/ui7/*banner_ (easylistchina+easylist.txt: 1737) +# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina.txt: 1730) +# ||58.com/ui7/*banner_ (easylistchina.txt: 1729) .58.com/ui7/.*banner_ -# ||58.com/show/ads? (easylistchina+easylist.txt: 1736) +# ||58.com/show/ads? (easylistchina.txt: 1728) .58.com/show/ads\? -# ||58.com/ds/tgbrand/ (easylistchina+easylist.txt: 1735) +# ||58.com/ds/tgbrand/ (easylistchina.txt: 1727) .58.com/ds/tgbrand/ -# ||58.com/ds/jinrong/ban/ (easylistchina+easylist.txt: 1734) +# ||58.com/ds/jinrong/ban/ (easylistchina.txt: 1726) .58.com/ds/jinrong/ban/ -# ||576tv.com/Scripts/home.js (easylistchina+easylist.txt: 1733) +# ||576tv.com/Scripts/home.js (easylistchina.txt: 1725) .576tv.com/Scripts/home\.js -# ||56img.com^*/search-engine-promotion.js (easylistchina+easylist.txt: 1732) +# ||56img.com^*/search-engine-promotion.js (easylistchina.txt: 1724) .56img.com/.*/search-engine-promotion\.js -# ||56img.com^*/baidu-promotion.js (easylistchina+easylist.txt: 1731) +# ||56img.com^*/baidu-promotion.js (easylistchina.txt: 1723) .56img.com/.*/baidu-promotion\.js -# ||56ads.com/js/main.js (easylistchina+easylist.txt: 1730) +# ||56ads.com/js/main.js (easylistchina.txt: 1722) .56ads.com/js/main\.js -# ||56.com/js/promo/ (easylistchina+easylist.txt: 1729) +# ||56.com/js/promo/ (easylistchina.txt: 1721) .56.com/js/promo/ -# ||55music.net/dazhe.jpg (easylistchina+easylist.txt: 1728) +# ||55music.net/dazhe.jpg (easylistchina.txt: 1720) .55music.net/dazhe\.jpg -# ||55aaee.com/detail/ (easylistchina+easylist.txt: 1727) +# ||55aaee.com/detail/ (easylistchina.txt: 1719) .55aaee.com/detail/ -# ||557xx.com/images/ (easylistchina+easylist.txt: 1726) -.557xx.com/images/ -# ||55125.cn/ggclass/ (easylistchina+easylist.txt: 1725) +# ||55125.cn/ggclass/ (easylistchina.txt: 1718) .55125.cn/ggclass/ -# ||54new.com/da/ (easylistchina+easylist.txt: 1723) +# ||54new.com/da/ (easylistchina.txt: 1716) .54new.com/da/ -# ||543et.com/detail/ (easylistchina+easylist.txt: 1722) +# ||543et.com/detail/ (easylistchina.txt: 1715) .543et.com/detail/ -# ||5399.com/poster_js/ (easylistchina+easylist.txt: 1721) +# ||5399.com/poster_js/ (easylistchina.txt: 1714) .5399.com/poster_js/ -# ||52zy.com/other/js/ (easylistchina+easylist.txt: 1720) +# ||52zy.com/other/js/ (easylistchina.txt: 1713) .52zy.com/other/js/ -# ||52wmb.com/2014js/GG_ (easylistchina+easylist.txt: 1719) +# ||52wmb.com/2014js/GG_ (easylistchina.txt: 1712) .52wmb.com/2014js/GG_ -# ||52waha.com/static/js/function_bbs.js (easylistchina+easylist.txt: 1718) +# ||52waha.com/static/js/function_bbs.js (easylistchina.txt: 1711) .52waha.com/static/js/function_bbs\.js -# ||52verycd.com/9241505.gif (easylistchina+easylist.txt: 1717) +# ||52verycd.com/9241505.gif (easylistchina.txt: 1710) .52verycd.com/9241505\.gif -# ||52tian.net/qq/ (easylistchina+easylist.txt: 1716) +# ||52tian.net/qq/ (easylistchina.txt: 1709) .52tian.net/qq/ -# ||52solution.com/js/duilian-bbs.js (easylistchina+easylist.txt: 1715) +# ||52solution.com/js/duilian-bbs.js (easylistchina.txt: 1708) .52solution.com/js/duilian-bbs\.js -# ||52rd.com/Pic2/*_600_60. (easylistchina+easylist.txt: 1714) +# ||52rd.com/Pic2/*_600_60. (easylistchina.txt: 1707) .52rd.com/Pic2/.*_600_60\. -# ||52rd.com/Pic/Click/ (easylistchina+easylist.txt: 1713) +# ||52rd.com/Pic/Click/ (easylistchina.txt: 1706) .52rd.com/Pic/Click/ -# ||52pk.com/jkjs/imp- (easylistchina+easylist.txt: 1712) +# ||52pk.com/jkjs/imp- (easylistchina.txt: 1705) .52pk.com/jkjs/imp- -# ||52pk.com/files/150120/1289038_105950_1.gif (easylistchina+easylist.txt: 1711) -.52pk.com/files/150120/1289038_105950_1\.gif -# ||52kdm.com/static/52kdm/m/ (easylistchina+easylist.txt: 1710) +# ||52kdm.com/static/52kdm/m/ (easylistchina.txt: 1704) .52kdm.com/static/52kdm/m/ -# ||52jt.net/images/banner_taozhuang.jpg (easylistchina+easylist.txt: 1709) +# ||52jt.net/images/banner_taozhuang.jpg (easylistchina.txt: 1703) .52jt.net/images/banner_taozhuang\.jpg -# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina+easylist.txt: 1708) +# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina.txt: 1702) .52jifenbao.net/wp-content/uploads/2014/04/xinren\.jpg -# ||52hardware.com/topic/a2 (easylistchina+easylist.txt: 1707) +# ||52hardware.com/topic/a2 (easylistchina.txt: 1701) .52hardware.com/topic/a2 -# ||52hardware.com/images/baimg/ (easylistchina+easylist.txt: 1706) +# ||52hardware.com/images/baimg/ (easylistchina.txt: 1700) .52hardware.com/images/baimg/ -# ||52fanquan.com/index.php?i= (easylistchina+easylist.txt: 1705) +# ||52fanquan.com/index.php?i= (easylistchina.txt: 1699) .52fanquan.com/index\.php\?i= -# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina+easylist.txt: 1704) +# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina.txt: 1698) .52che.com/NewLocal/TemplateHtml/headflash1_ -# ||52che.com/Inc/FooterComm_ (easylistchina+easylist.txt: 1703) +# ||52che.com/Inc/FooterComm_ (easylistchina.txt: 1697) .52che.com/Inc/FooterComm_ -# ||52ch.net/data/attachment/portal/ (easylistchina+easylist.txt: 1702) +# ||52ch.net/data/attachment/portal/ (easylistchina.txt: 1696) .52ch.net/data/attachment/portal/ -# ||52ch.net/data/advimg/ (easylistchina+easylist.txt: 1701) +# ||52ch.net/data/advimg/ (easylistchina.txt: 1695) .52ch.net/data/advimg/ -# ||521000.com/com/BBS_AD. (easylistchina+easylist.txt: 1700) +# ||521000.com/com/BBS_AD. (easylistchina.txt: 1694) .521000.com/com/BBS_AD\. -# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina+easylist.txt: 1699) +# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina.txt: 1693) .521000.com/bbs/inc/Dv_Adv\.js -# ||520rr.com*/baidu/ (easylistchina+easylist.txt: 1698) +# ||520rr.com*/baidu/ (easylistchina.txt: 1692) .520rr.com*./(.*/)?baidu/ -# ||520kankan.com/960x80.gif (easylistchina+easylist.txt: 1697) +# ||520kankan.com/960x80.gif (easylistchina.txt: 1691) .520kankan.com/960x80\.gif -# ||520bdy.com/images/888.jpg (easylistchina+easylist.txt: 1696) +# ||520bdy.com/images/888.jpg (easylistchina.txt: 1690) .520bdy.com/images/888\.jpg -# ||51zxw.net/images/zhaopin.jpg (easylistchina+easylist.txt: 1695) +# ||51zxw.net/images/zhaopin.jpg (easylistchina.txt: 1689) .51zxw.net/images/zhaopin\.jpg -# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina+easylist.txt: 1694) +# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina.txt: 1688) .51zxw.net/fzsplayer/adtextzxw\.asp\? -# ||51zxw.net/adad/ (easylistchina+easylist.txt: 1693) +# ||51zxw.net/adad/ (easylistchina.txt: 1687) .51zxw.net/adad/ -# ||51zxav.net^$subdocument (easylistchina+easylist.txt: 1692) -.51zxav.net -# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina+easylist.txt: 1691) +# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina.txt: 1686) .51ztzj.com/res/web/img/pic/inshow\.jpg -# ||51ztzj.com/res/web/img/download_sign (easylistchina+easylist.txt: 1690) +# ||51ztzj.com/res/web/img/download_sign (easylistchina.txt: 1685) .51ztzj.com/res/web/img/download_sign -# ||51ztzj.com/js/you.js (easylistchina+easylist.txt: 1689) +# ||51ztzj.com/js/you.js (easylistchina.txt: 1684) .51ztzj.com/js/you\.js -# ||51xxs.com/users/public/*.swf (easylistchina+easylist.txt: 1688) +# ||51xxs.com/users/public/*.swf (easylistchina.txt: 1683) .51xxs.com/users/public/.*\.swf -# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina+easylist.txt: 1687) +# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina.txt: 1682) .51xuediannao.com/plus/mytag_js\.php\?aid= -# ||51wan.com/web/v1/index/images/spec/ (easylistchina+easylist.txt: 1686) +# ||51wan.com/web/v1/index/images/spec/ (easylistchina.txt: 1681) .51wan.com/web/v1/index/images/spec/ -# ||51wan.com/img/js/xyadjs_ (easylistchina+easylist.txt: 1685) +# ||51wan.com/img/js/xyadjs_ (easylistchina.txt: 1680) .51wan.com/img/js/xyadjs_ -# ||51testing.com/imagesnew/indextop.jpg (easylistchina+easylist.txt: 1684) +# ||51testing.com/imagesnew/indextop.jpg (easylistchina.txt: 1679) .51testing.com/imagesnew/indextop\.jpg -# ||51testing.com/imagesnew/960x101.jpg (easylistchina+easylist.txt: 1683) +# ||51testing.com/imagesnew/960x101.jpg (easylistchina.txt: 1678) .51testing.com/imagesnew/960x101\.jpg -# ||51testing.com/imagesnew/642x53.gif (easylistchina+easylist.txt: 1682) +# ||51testing.com/imagesnew/642x53.gif (easylistchina.txt: 1677) .51testing.com/imagesnew/642x53\.gif -# ||51testing.com/imagesnew/307x90.gif (easylistchina+easylist.txt: 1681) +# ||51testing.com/imagesnew/307x90.gif (easylistchina.txt: 1676) .51testing.com/imagesnew/307x90\.gif -# ||51testing.com/imagesnew/*.swf (easylistchina+easylist.txt: 1680) +# ||51testing.com/imagesnew/*.swf (easylistchina.txt: 1675) .51testing.com/imagesnew/.*\.swf -# ||51testing.com/images/sz51com.swf (easylistchina+easylist.txt: 1679) +# ||51testing.com/images/sz51com.swf (easylistchina.txt: 1674) .51testing.com/images/sz51com\.swf -# ||51test.net/js_new/baidu/ (easylistchina+easylist.txt: 1678) +# ||51test.net/js_new/baidu/ (easylistchina.txt: 1673) .51test.net/js_new/baidu/ -# ||51test.net/js_new/*_right_middle.js (easylistchina+easylist.txt: 1677) +# ||51test.net/js_new/*_right_middle.js (easylistchina.txt: 1672) .51test.net/js_new/.*_right_middle\.js -# ||51test.net/js_new/*_content_up.js (easylistchina+easylist.txt: 1676) +# ||51test.net/js_new/*_content_up.js (easylistchina.txt: 1671) .51test.net/js_new/.*_content_up\.js -# ||51test.net/js_new/*_content_down.js (easylistchina+easylist.txt: 1675) +# ||51test.net/js_new/*_content_down.js (easylistchina.txt: 1670) .51test.net/js_new/.*_content_down\.js -# ||51test.net/js_new/*_banner.js (easylistchina+easylist.txt: 1674) +# ||51test.net/js_new/*_banner.js (easylistchina.txt: 1669) .51test.net/js_new/.*_banner\.js -# ||51test.net/baiduunion/ (easylistchina+easylist.txt: 1673) +# ||51test.net/baiduunion/ (easylistchina.txt: 1668) .51test.net/baiduunion/ -# ||51t.com^$subdocument (easylistchina+easylist.txt: 1672) +# ||51t.com^$subdocument (easylistchina.txt: 1667) .51t.com -# ||51ou.com/images/taoping (easylistchina+easylist.txt: 1671) +# ||51ou.com/images/taoping (easylistchina.txt: 1666) .51ou.com/images/taoping -# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina+easylist.txt: 1670) +# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina.txt: 1665) .51netu.com.cn/index\.php/index/advShow\?adpid= -# ||51img.ajiang.net^*.gif (easylistchina+easylist.txt: 1668) +# ||51img.ajiang.net^*.gif (easylistchina.txt: 1663) .51img.ajiang.net/.*\.gif -# ||51hanhua.com/2013/ (easylistchina+easylist.txt: 1667) +# ||51hanhua.com/2013/ (easylistchina.txt: 1662) .51hanhua.com/2013/ -# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina+easylist.txt: 1666) +# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina.txt: 1661) .51gugu.com/popwin/AutoHAdShow\.aspx -# ||51gaojian.com/js/tj.js (easylistchina+easylist.txt: 1665) +# ||51gaojian.com/js/tj.js (easylistchina.txt: 1660) .51gaojian.com/js/tj\.js -# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina+easylist.txt: 1664) +# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina.txt: 1659) .51fanli.net/misc/images/invite-v4/banner\.gif -# ||51cto.com/js/blog_top_list.php (easylistchina+easylist.txt: 1663) +# ||51cto.com/js/blog_top_list.php (easylistchina.txt: 1658) .51cto.com/js/blog_top_list\.php -# ||51credit.com/credit/images/*/xyb (easylistchina+easylist.txt: 1662) +# ||51credit.com/credit/images/*/xyb (easylistchina.txt: 1657) .51credit.com/credit/images/.*/xyb -# ||51bczx.com/js/float.js (easylistchina+easylist.txt: 1661) +# ||51bczx.com/js/float.js (easylistchina.txt: 1656) .51bczx.com/js/float\.js -# ||51bczx.com/img/51bczx/ (easylistchina+easylist.txt: 1660) +# ||51bczx.com/img/51bczx/ (easylistchina.txt: 1655) .51bczx.com/img/51bczx/ -# ||51bczx.com/attachment/Mon_ (easylistchina+easylist.txt: 1659) +# ||51bczx.com/attachment/Mon_ (easylistchina.txt: 1654) .51bczx.com/attachment/Mon_ -# ||51ape.com/d/js/ (easylistchina+easylist.txt: 1658) +# ||51ape.com/d/js/ (easylistchina.txt: 1653) .51ape.com/d/js/ -# ||5185.cc/forum/*.gif (easylistchina+easylist.txt: 1657) +# ||5185.cc/forum/*.gif (easylistchina.txt: 1652) .5185.cc/forum/.*\.gif -# ||5184.com/gk2014/ebuy (easylistchina+easylist.txt: 1656) +# ||5184.com/gk2014/ebuy (easylistchina.txt: 1651) .5184.com/gk2014/ebuy -# ||5184.com/gk2014/*_315. (easylistchina+easylist.txt: 1655) +# ||5184.com/gk2014/*_315. (easylistchina.txt: 1650) .5184.com/gk2014/.*_315\. -# ||5184.com/gk20*_240. (easylistchina+easylist.txt: 1654) +# ||5184.com/gk20*_240. (easylistchina.txt: 1649) .5184.com/gk20.*_240\. -# ||5184.com/container/html/news_view_gg (easylistchina+easylist.txt: 1653) +# ||5184.com/container/html/news_view_gg (easylistchina.txt: 1648) .5184.com/container/html/news_view_gg -# ||51688.cc/ya/ (easylistchina+easylist.txt: 1652) +# ||51688.cc/ya/ (easylistchina.txt: 1647) .51688.cc/ya/ -# ||512ms.com/js/index_ggw_show.js (easylistchina+easylist.txt: 1651) +# ||512ms.com/js/index_ggw_show.js (easylistchina.txt: 1646) .512ms.com/js/index_ggw_show\.js -# ||51.com/up/bdfmt/ (easylistchina+easylist.txt: 1650) +# ||51.com/up/bdfmt/ (easylistchina.txt: 1645) .51.com/up/bdfmt/ -# ||506ys.com/js/200.js (easylistchina+easylist.txt: 1649) +# ||506ys.com/js/200.js (easylistchina.txt: 1644) .506ys.com/js/200\.js -# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina+easylist.txt: 1648) +# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina.txt: 1643) .5068.com/uploads/allimg/150116/71_150116175734_1\.jpg -# ||5011.net/template/images/*0.gif (easylistchina+easylist.txt: 1647) +# ||5011.net/template/images/*0.gif (easylistchina.txt: 1642) .5011.net/template/images/.*0\.gif -# ||500xxxx.com/go.js (easylistchina+easylist.txt: 1646) +# ||500xxxx.com/go.js (easylistchina.txt: 1641) .500xxxx.com/go\.js -# ||50.7.31.230/ads_ (easylistchina+easylist.txt: 1645) +# ||50.7.31.230/ads_ (easylistchina.txt: 1640) .50.7.31.230/ads_ -# ||50.115.123.38/ad/ (easylistchina+easylist.txt: 1644) -.50.115.123.38/ad/ -# ||46g.cn/images/top.gif (easylistchina+easylist.txt: 1643) +# ||4kong.com/xk.jpg (easylistchina.txt: 1639) +.4kong.com/xk\.jpg +# ||46g.cn/images/top.gif (easylistchina.txt: 1638) .46g.cn/images/top\.gif -# ||464mnk.com/templets/new/static/js/common.js (easylistchina+easylist.txt: 1642) +# ||464mnk.com/templets/new/static/js/common.js (easylistchina.txt: 1637) .464mnk.com/templets/new/static/js/common\.js -# ||44921.cn/ajsv1/flashad_ (easylistchina+easylist.txt: 1641) +# ||44921.cn/ajsv1/flashad_ (easylistchina.txt: 1636) .44921.cn/ajsv1/flashad_ -# ||43aiai.com/js/zhengzhangtonglang.js (easylistchina+easylist.txt: 1640) -.43aiai.com/js/zhengzhangtonglang\.js -# ||43aiai.com/js/dibu.js (easylistchina+easylist.txt: 1639) -.43aiai.com/js/dibu\.js -# ||43aiai.com/js/cps.js (easylistchina+easylist.txt: 1638) -.43aiai.com/js/cps\.js -# ||4399.com/loadimg/loading.htm (easylistchina+easylist.txt: 1637) +# ||4399.com/loadimg/loading.htm (easylistchina.txt: 1635) .4399.com/loadimg/loading\.htm -# ||4399.com/loadimg/iframe_ (easylistchina+easylist.txt: 1636) +# ||4399.com/loadimg/iframe_ (easylistchina.txt: 1634) .4399.com/loadimg/iframe_ -# ||4399.com/expire1day/ (easylistchina+easylist.txt: 1635) +# ||4399.com/expire1day/ (easylistchina.txt: 1633) .4399.com/expire1day/ -# ||4399.com/baiduad/ (easylistchina+easylist.txt: 1634) +# ||4399.com/baiduad/ (easylistchina.txt: 1632) .4399.com/baiduad/ -# ||40wan.com/js/www2/ (easylistchina+easylist.txt: 1633) +# ||40wan.com/js/www2/ (easylistchina.txt: 1631) .40wan.com/js/www2/ -# ||40407.com/templets/default/images/index.js (easylistchina+easylist.txt: 1632) +# ||40407.com/templets/default/images/index.js (easylistchina.txt: 1630) .40407.com/templets/default/images/index\.js -# ||40407.com/plus_rpad_ (easylistchina+easylist.txt: 1631) +# ||40407.com/plus_rpad_ (easylistchina.txt: 1629) .40407.com/plus_rpad_ -# ||40407.com/plus/rpad/ (easylistchina+easylist.txt: 1630) +# ||40407.com/plus/rpad/ (easylistchina.txt: 1628) .40407.com/plus/rpad/ -# ||40407.com/plus/pthc/zqdl.php? (easylistchina+easylist.txt: 1629) +# ||40407.com/plus/pthc/zqdl.php? (easylistchina.txt: 1627) .40407.com/plus/pthc/zqdl\.php\? -# ||4020.la/hi/ (easylistchina+easylist.txt: 1628) +# ||4020.la/hi/ (easylistchina.txt: 1626) .4020.la/hi/ -# ||400516.com/data/attachment/album/ (easylistchina+easylist.txt: 1627) +# ||400516.com/data/attachment/album/ (easylistchina.txt: 1625) .400516.com/data/attachment/album/ -# ||3sjt.com/3sjtimg/ (easylistchina+easylist.txt: 1626) +# ||3sjt.com/3sjtimg/ (easylistchina.txt: 1624) .3sjt.com/3sjtimg/ -# ||3qdati.com/gg.gif (easylistchina+easylist.txt: 1625) +# ||3qdati.com/gg.gif (easylistchina.txt: 1623) .3qdati.com/gg\.gif -# ||3qcc.com/js/bb.js (easylistchina+easylist.txt: 1624) +# ||3qcc.com/js/bb.js (easylistchina.txt: 1622) .3qcc.com/js/bb\.js -# ||3h3.com/js/show/ (easylistchina+easylist.txt: 1623) +# ||3h3.com/js/show/ (easylistchina.txt: 1621) .3h3.com/js/show/ -# ||3h3.com/js/listad.js (easylistchina+easylist.txt: 1622) +# ||3h3.com/js/listad.js (easylistchina.txt: 1620) .3h3.com/js/listad\.js -# ||3h3.com/js/homepage.js (easylistchina+easylist.txt: 1621) +# ||3h3.com/js/homepage.js (easylistchina.txt: 1619) .3h3.com/js/homepage\.js -# ||3g518.com/piaofujs/ (easylistchina+easylist.txt: 1620) -.3g518.com/piaofujs/ -# ||3g518.com/mb/000000/moban21/js/tcad.js (easylistchina+easylist.txt: 1619) -.3g518.com/mb/000000/moban21/js/tcad\.js -# ||3g.cn/js/noblockme/ (easylistchina+easylist.txt: 1618) +# ||3g.cn/js/noblockme/ (easylistchina.txt: 1618) .3g.cn/js/noblockme/ -# ||3dm.huya.com^ (easylistchina+easylist.txt: 1617) +# ||3dm.huya.com^ (easylistchina.txt: 1617) .3dm.huya.com -# ||3d66.com/gx2013g/ (easylistchina+easylist.txt: 1616) +# ||3dezu.cn/zt/8866.gif (easylistchina.txt: 1616) +.3dezu.cn/zt/8866\.gif +# ||3d66.com/gx2013g/ (easylistchina.txt: 1615) .3d66.com/gx2013g/ -# ||3d66.com/gg-swf/ (easylistchina+easylist.txt: 1615) +# ||3d66.com/gg-swf/ (easylistchina.txt: 1614) .3d66.com/gg-swf/ -# ||3boys2girls.com^$subdocument (easylistchina+easylist.txt: 1614) +# ||3boys2girls.com^$subdocument (easylistchina.txt: 1613) .3boys2girls.com -# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina+easylist.txt: 1613) +# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina.txt: 1612) .3boys2girls.com/templates/default/2013/life/160b5\.js -# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina+easylist.txt: 1612) +# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina.txt: 1611) .3boys2girls.com/newfile/image2010/banner_housead_ -# ||3987.com/images/*.gif (easylistchina+easylist.txt: 1611) -.3987.com/images/.*\.gif -# ||39.net/rel/k13.php?adid= (easylistchina+easylist.txt: 1610) +# ||3987.com/images/ (easylistchina.txt: 1610) +.3987.com/images/ +# ||39.net/rel/k13.php?adid= (easylistchina.txt: 1609) .39.net/rel/k13\.php\?adid= -# ||39.net/js/google/ (easylistchina+easylist.txt: 1609) +# ||39.net/js/google/ (easylistchina.txt: 1608) .39.net/js/google/ -# ||39.net/js/baidu/ (easylistchina+easylist.txt: 1608) +# ||39.net/js/baidu/ (easylistchina.txt: 1607) .39.net/js/baidu/ -# ||39.net/creative/ (easylistchina+easylist.txt: 1607) +# ||39.net/creative/ (easylistchina.txt: 1606) .39.net/creative/ -# ||39.net/client/39/c.js (easylistchina+easylist.txt: 1606) +# ||39.net/client/39/c.js (easylistchina.txt: 1605) .39.net/client/39/c\.js -# ||38v.com/38v-b.gif (easylistchina+easylist.txt: 1605) +# ||38v.com/38v-b.gif (easylistchina.txt: 1604) .38v.com/38v-b\.gif -# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina+easylist.txt: 1604) +# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina.txt: 1603) .36tv.cn/statics/images/jinhuatv/ad -# ||36tv.cn/ad_pic/ (easylistchina+easylist.txt: 1603) +# ||36tv.cn/ad_pic/ (easylistchina.txt: 1602) .36tv.cn/ad_pic/ -# ||36dm.com/images/950_90.jpg (easylistchina+easylist.txt: 1602) -.36dm.com/images/950_90\.jpg -# ||36dm.com/images/250_250.jpg (easylistchina+easylist.txt: 1601) -.36dm.com/images/250_250\.jpg -# ||36dm.com/images/*acgsou.gif (easylistchina+easylist.txt: 1600) +# ||36dm.com/js/nu (easylistchina.txt: 1601) +.36dm.com/js/nu +# ||36dm.com/images/*acgsou.gif (easylistchina.txt: 1600) .36dm.com/images/.*acgsou\.gif -# ||365xs.org/js/xiayizhang.js (easylistchina+easylist.txt: 1599) +# ||365xs.org/js/xiayizhang.js (easylistchina.txt: 1599) .365xs.org/js/xiayizhang\.js -# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina+easylist.txt: 1598) +# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina.txt: 1598) .365kl.net/template/eis_x3_city_a_1/eis/baobao\.gif -# ||3634.com/qq/ (easylistchina+easylist.txt: 1597) +# ||3634.com/qq/ (easylistchina.txt: 1597) .3634.com/qq/ -# ||360safego.com^ (easylistchina+easylist.txt: 1596) +# ||360safego.com^ (easylistchina.txt: 1596) .360safego.com -# ||360kan.com/special/iframe/ (easylistchina+easylist.txt: 1595) +# ||360kan.com/special/iframe/ (easylistchina.txt: 1595) .360kan.com/special/iframe/ -# ||360bo.cc/js/float.js (easylistchina+easylist.txt: 1594) +# ||360bo.cc/js/float.js (easylistchina.txt: 1594) .360bo.cc/js/float\.js -# ||360.cn/index/showjokes?callback= (easylistchina+easylist.txt: 1593) +# ||360.cn/index/showjokes?callback= (easylistchina.txt: 1593) .360.cn/index/showjokes\?callback= -# ||360.cn/festival_zone.html (easylistchina+easylist.txt: 1592) +# ||360.cn/festival_zone.html (easylistchina.txt: 1592) .360.cn/festival_zone\.html -# ||360-bo.com/js/float2.js (easylistchina+easylist.txt: 1591) +# ||360-bo.com/js/float2.js (easylistchina.txt: 1591) .360-bo.com/js/float2\.js -# ||360-bo.com/js/float.js (easylistchina+easylist.txt: 1590) +# ||360-bo.com/js/float.js (easylistchina.txt: 1590) .360-bo.com/js/float\.js -# ||35zww.com/zzzjs/ (easylistchina+easylist.txt: 1589) -.35zww.com/zzzjs/ -# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina+easylist.txt: 1588) +# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina.txt: 1589) .356ys.com/template/tieniudy/images/g_js/ -# ||3520.cc/js/3520/ (easylistchina+easylist.txt: 1587) +# ||3520.cc/js/3520/ (easylistchina.txt: 1588) .3520.cc/js/3520/ -# ||3464.com/w/950x90.js (easylistchina+easylist.txt: 1586) -.3464.com/w/950x90\.js -# ||3464.com/Script/RightWindows.js (easylistchina+easylist.txt: 1585) +# ||3464.com/Script/RightWindows.js (easylistchina.txt: 1587) .3464.com/Script/RightWindows\.js -# ||33zxzx.com/go.js (easylistchina+easylist.txt: 1584) -.33zxzx.com/go\.js -# ||33xs.com/js/mg (easylistchina+easylist.txt: 1583) +# ||33xs.com/js/mg (easylistchina.txt: 1586) .33xs.com/js/mg -# ||33xs.com/js/g (easylistchina+easylist.txt: 1582) +# ||33xs.com/js/g (easylistchina.txt: 1585) .33xs.com/js/g -# ||33xs.com/js/d.js (easylistchina+easylist.txt: 1581) +# ||33xs.com/js/d.js (easylistchina.txt: 1584) .33xs.com/js/d\.js -# ||33xs.com/hot/ (easylistchina+easylist.txt: 1580) +# ||33xs.com/hot/ (easylistchina.txt: 1583) .33xs.com/hot/ -# ||33lc.com/lvcha/jquery.gotop.js (easylistchina+easylist.txt: 1579) +# ||33lc.com/lvcha/jquery.gotop.js (easylistchina.txt: 1582) .33lc.com/lvcha/jquery\.gotop\.js -# ||33av.net/Uploads/ad/ (easylistchina+easylist.txt: 1578) +# ||33av.net/Uploads/ad/ (easylistchina.txt: 1581) .33av.net/Uploads/ad/ -# ||3399.com/Common/OnlineServer.html (easylistchina+easylist.txt: 1577) +# ||3399.com/Common/OnlineServer.html (easylistchina.txt: 1580) .3399.com/Common/OnlineServer\.html -# ||3399.com/act/fk/ (easylistchina+easylist.txt: 1576) +# ||3399.com/act/fk/ (easylistchina.txt: 1579) .3399.com/act/fk/ -# ||3399.com/act/5599/js/kuang (easylistchina+easylist.txt: 1575) +# ||3399.com/act/5599/js/kuang (easylistchina.txt: 1578) .3399.com/act/5599/js/kuang -# ||3344bt.com^*.js (easylistchina+easylist.txt: 1574) -.3344bt.com/.*\.js -# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina+easylist.txt: 1573) +# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina.txt: 1577) .33.autoimg.cn/t/Adhtmlnet/.*\.swf -# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina+easylist.txt: 1572) +# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina.txt: 1576) .33.autoimg.cn/t/Adhtmlnet/.*\.jpg -# ||33.autoimg.cn/homeurl/*.js (easylistchina+easylist.txt: 1571) +# ||33.autoimg.cn/homeurl/*.js (easylistchina.txt: 1575) .33.autoimg.cn/homeurl/.*\.js -# ||33.autohome.com.cn^$object,script (easylistchina+easylist.txt: 1570) +# ||33.autohome.com.cn^$object,script (easylistchina.txt: 1574) .33.autohome.com.cn -# ||327qq.com/images/ (easylistchina+easylist.txt: 1569) -.327qq.com/images/ -# ||32666.com/img/ (easylistchina+easylist.txt: 1568) +# ||32666.com/img/ (easylistchina.txt: 1573) .32666.com/img/ -# ||32666.com/ads/ (easylistchina+easylist.txt: 1567) +# ||32666.com/ads/ (easylistchina.txt: 1572) .32666.com/ads/ -# ||324324.cn/zz/ (easylistchina+easylist.txt: 1566) +# ||324324.cn/zz/ (easylistchina.txt: 1571) .324324.cn/zz/ -# ||32345sf.com^ (easylistchina+easylist.txt: 1565) -.32345sf.com -# ||3199.cn/ggs_ (easylistchina+easylist.txt: 1564) +# ||3199.cn/ggs_ (easylistchina.txt: 1570) .3199.cn/ggs_ -# ||315che.com/upload_img/aimg/ (easylistchina+easylist.txt: 1563) +# ||315che.com/upload_img/aimg/ (easylistchina.txt: 1569) .315che.com/upload_img/aimg/ -# ||315che.com/addata/ (easylistchina+easylist.txt: 1562) +# ||315che.com/addata/ (easylistchina.txt: 1568) .315che.com/addata/ -# ||3155.com/js/ifile (easylistchina+easylist.txt: 1561) +# ||3155.com/js/ifile (easylistchina.txt: 1567) .3155.com/js/ifile -# ||310v.com/js/f2.js.js (easylistchina+easylist.txt: 1560) +# ||310v.com/js/f2.js.js (easylistchina.txt: 1566) .310v.com/js/f2\.js\.js -# ||310v.com/images/wap_520x60.gif (easylistchina+easylist.txt: 1559) +# ||310v.com/images/wap_520x60.gif (easylistchina.txt: 1565) .310v.com/images/wap_520x60\.gif -# ||310v.com/images/tmp_adpic (easylistchina+easylist.txt: 1558) +# ||310v.com/images/tmp_adpic (easylistchina.txt: 1564) .310v.com/images/tmp_adpic -# ||310v.com/images/lingdai.gif (easylistchina+easylist.txt: 1557) +# ||310v.com/images/lingdai.gif (easylistchina.txt: 1563) .310v.com/images/lingdai\.gif -# ||310v.com/adh.js (easylistchina+easylist.txt: 1556) +# ||310v.com/adh.js (easylistchina.txt: 1562) .310v.com/adh\.js -# ||2zzt.com/images/ (easylistchina+easylist.txt: 1555) +# ||2zzt.com/images/ (easylistchina.txt: 1561) .2zzt.com/images/ -# ||2ujj.com/js/bo.js (easylistchina+easylist.txt: 1554) +# ||2ujj.com/js/bo.js (easylistchina.txt: 1560) .2ujj.com/js/bo\.js -# ||2u.com.cn/js/2012_movie.js (easylistchina+easylist.txt: 1553) +# ||2u.com.cn/js/2012_movie.js (easylistchina.txt: 1559) .2u.com.cn/js/2012_movie\.js -# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina+easylist.txt: 1552) +# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina.txt: 1558) .2u-img.com.cn/modules/38_module_images/4747\.jpg -# ||2muslim.com/data/attachment/portal/ (easylistchina+easylist.txt: 1551) +# ||2muslim.com/data/attachment/portal/ (easylistchina.txt: 1557) .2muslim.com/data/attachment/portal/ -# ||2kk.cc/Tpl/black/images/2k-*.gif (easylistchina+easylist.txt: 1550) -.2kk.cc/Tpl/black/images/2k-.*\.gif -# ||2chcn.com/img/*336x280 (easylistchina+easylist.txt: 1549) +# ||2chcn.com/img/3171150.jpg (easylistchina.txt: 1556) +.2chcn.com/img/3171150\.jpg +# ||2chcn.com/img/*336x280 (easylistchina.txt: 1555) .2chcn.com/img/.*336x280 -# ||2ccc.com/images/WebXone.gif (easylistchina+easylist.txt: 1548) +# ||2ccc.com/images/WebXone.gif (easylistchina.txt: 1554) .2ccc.com/images/WebXone\.gif -# ||2ccc.com/images/sino.gif (easylistchina+easylist.txt: 1547) +# ||2ccc.com/images/sino.gif (easylistchina.txt: 1553) .2ccc.com/images/sino\.gif -# ||2ccc.com/images/show/ (easylistchina+easylist.txt: 1546) +# ||2ccc.com/images/show/ (easylistchina.txt: 1552) .2ccc.com/images/show/ -# ||2btu.com/gg.jpg (easylistchina+easylist.txt: 1545) +# ||2btu.com/gg.jpg (easylistchina.txt: 1551) .2btu.com/gg\.jpg -# ||28hse.com/adsman/www/images/ (easylistchina+easylist.txt: 1544) +# ||28hse.com/adsman/www/images/ (easylistchina.txt: 1550) .28hse.com/adsman/www/images/ -# ||27.cn/iframe/r-con1. (easylistchina+easylist.txt: 1543) -.27.cn/iframe/r-con1\. -# ||27.255.67.120^ (easylistchina+easylist.txt: 1542) +# ||27.255.67.120^ (easylistchina.txt: 1549) .27.255.67.120 -# ||265.com/static/pages/img/*_ads. (easylistchina+easylist.txt: 1541) +# ||268de.com/js/ (easylistchina.txt: 1548) +.268de.com/js/ +# ||265.com/static/pages/img/*_ads. (easylistchina.txt: 1547) .265.com/static/pages/img/.*_ads\. -# ||25xz.com/degeye.gif (easylistchina+easylist.txt: 1540) +# ||25xz.com/degeye.gif (easylistchina.txt: 1546) .25xz.com/degeye\.gif -# ||25xz.com/ads/ (easylistchina+easylist.txt: 1539) +# ||25xz.com/ads/ (easylistchina.txt: 1545) .25xz.com/ads/ -# ||258zb.com/jsData/users.aspx (easylistchina+easylist.txt: 1538) +# ||258zb.com/jsData/users.aspx (easylistchina.txt: 1544) .258zb.com/jsData/users\.aspx -# ||2500sz.com/site/ (easylistchina+easylist.txt: 1537) +# ||2500sz.com^*/655x60. (easylistchina.txt: 1543) +.2500sz.com/.*/655x60\. +# ||2500sz.com/site/ (easylistchina.txt: 1542) .2500sz.com/site/ -# ||2500sz.com/ad20 (easylistchina+easylist.txt: 1536) +# ||2500sz.com/ad20 (easylistchina.txt: 1541) .2500sz.com/ad20 -# ||23youku.com/Runtime/js/ (easylistchina+easylist.txt: 1535) +# ||23zw.com/sda/mediav.html (easylistchina.txt: 1540) +.23zw.com/sda/mediav\.html +# ||23youku.com/Runtime/js/ (easylistchina.txt: 1539) .23youku.com/Runtime/js/ -# ||23wx.com/scripts/style_tan.js (easylistchina+easylist.txt: 1534) +# ||23wx.com/scripts/style_tan.js (easylistchina.txt: 1538) .23wx.com/scripts/style_tan\.js -# ||23wx.com/scripts/right.html (easylistchina+easylist.txt: 1533) -.23wx.com/scripts/right\.html -# ||23sc.cn*/007/js/$script (easylistchina+easylist.txt: 1532) +# ||23sc.cn*/007/js/$script (easylistchina.txt: 1537) .23sc.cn*./(.*/)?007/js/ -# ||2345.com/xiaoimg/swf/flash/ (easylistchina+easylist.txt: 1531) +# ||2345.com/xiaoimg/swf/flash/ (easylistchina.txt: 1536) .2345.com/xiaoimg/swf/flash/ -# ||2345.com/right/site/like/gul_default.js (easylistchina+easylist.txt: 1530) +# ||2345.com/right/site/like/gul_default.js (easylistchina.txt: 1535) .2345.com/right/site/like/gul_default\.js -# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina+easylist.txt: 1529) +# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina.txt: 1534) .2345.com/jifenimg/img/common/logo\.png -# ||2345.com/images/tgPic/gameTmp- (easylistchina+easylist.txt: 1528) +# ||2345.com/images/tgPic/gameTmp- (easylistchina.txt: 1533) .2345.com/images/tgPic/gameTmp- -# ||2345.com/duoteimg/duotehtml/ (easylistchina+easylist.txt: 1527) +# ||2345.com/duoteimg/duotehtml/ (easylistchina.txt: 1532) .2345.com/duoteimg/duotehtml/ -# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina+easylist.txt: 1526) +# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina.txt: 1531) .2345.com/dianyingimg/tv/ivy/taobao/ -# ||2345.com/dianyingimg/ads/ (easylistchina+easylist.txt: 1525) +# ||2345.com/dianyingimg/ads/ (easylistchina.txt: 1530) .2345.com/dianyingimg/ads/ -# ||2345.com/data/part/part_*_bottom (easylistchina+easylist.txt: 1524) +# ||2345.com/data/part/part_*_bottom (easylistchina.txt: 1529) .2345.com/data/part/part_.*_bottom -# ||2345.com/data/part/part_*_bann (easylistchina+easylist.txt: 1523) +# ||2345.com/data/part/part_*_bann (easylistchina.txt: 1528) .2345.com/data/part/part_.*_bann -# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina+easylist.txt: 1522) +# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina.txt: 1527) .2300sjz.com/liv_loadfile/folder81/fold -# ||23.252.162.52/z.jpg (easylistchina+easylist.txt: 1521) -.23.252.162.52/z\.jpg -# ||22mt.la/bookpic/00*.jpg (easylistchina+easylist.txt: 1520) +# ||22mt.la/bookpic/00*.jpg (easylistchina.txt: 1526) .22mt.la/bookpic/00.*\.jpg -# ||2258.com/new_static/*/ad/ (easylistchina+easylist.txt: 1519) +# ||2258.com/new_static/*/ad/ (easylistchina.txt: 1525) .2258.com/new_static/.*/ad/ -# ||2233777.com/bak/ad/ (easylistchina+easylist.txt: 1518) +# ||2233777.com/bak/ad/ (easylistchina.txt: 1524) .2233777.com/bak/ad/ -# ||222dz.com/js/ (easylistchina+easylist.txt: 1517) -.222dz.com/js/ -# ||222.47.26.21/m.js (easylistchina+easylist.txt: 1516) +# ||222.47.26.21/m.js (easylistchina.txt: 1523) .222.47.26.21/m\.js -# ||222.45.224.77^*.js (easylistchina+easylist.txt: 1515) +# ||222.45.224.77^*.js (easylistchina.txt: 1522) .222.45.224.77/.*\.js -# ||222.33.59.55/show.js (easylistchina+easylist.txt: 1514) +# ||222.33.59.55/show.js (easylistchina.txt: 1521) .222.33.59.55/show\.js -# ||221.5.69.52^*.js (easylistchina+easylist.txt: 1513) +# ||221.5.69.52^*.js (easylistchina.txt: 1520) .221.5.69.52/.*\.js -# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina+easylist.txt: 1512) +# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina.txt: 1519) .2200book.com/themes/v2/images/frxz_tonglan\.gif -# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina+easylist.txt: 1511) +# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina.txt: 1518) .2200book.com/configs/article/pagebottom1yc\.js -# ||21yq.com/mg/21yq/ (easylistchina+easylist.txt: 1510) +# ||21yq.com/mg/21yq/ (easylistchina.txt: 1517) .21yq.com/mg/21yq/ -# ||21uscity.com/zonelist.php (easylistchina+easylist.txt: 1509) +# ||21uscity.com/zonelist.php (easylistchina.txt: 1516) .21uscity.com/zonelist\.php -# ||21edu8.com/js/mymoney/ (easylistchina+easylist.txt: 1508) +# ||21edu8.com/js/mymoney/ (easylistchina.txt: 1515) .21edu8.com/js/mymoney/ -# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina+easylist.txt: 1507) +# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina.txt: 1514) .21cnimg.com/zt/she/2015/shetext/she\.jpg -# ||21cnimg.com/zt/she/2015/shetext/300X201.jpg (easylistchina+easylist.txt: 1506) -.21cnimg.com/zt/she/2015/shetext/300X201\.jpg -# ||219.238.159.182^*.html (easylistchina+easylist.txt: 1505) +# ||219.238.159.182^*.html (easylistchina.txt: 1513) .219.238.159.182/.*\.html -# ||219.238.159.181^*.html (easylistchina+easylist.txt: 1504) +# ||219.238.159.181^*.html (easylistchina.txt: 1512) .219.238.159.181/.*\.html -# ||219.153.41.175/*.js (easylistchina+easylist.txt: 1503) +# ||219.153.41.175/*.js (easylistchina.txt: 1511) .219.153.41.175/.*\.js -# ||219.153.41.154/v1/ (easylistchina+easylist.txt: 1502) +# ||219.153.41.154/v1/ (easylistchina.txt: 1510) .219.153.41.154/v1/ -# ||218.65.30.50:96/images/xuanchuan.gif (easylistchina+easylist.txt: 1501) -.218.65.30.50:96/images/xuanchuan\.gif -# ||218.65.30.232^ (easylistchina+easylist.txt: 1500) -.218.65.30.232 -# ||21394.com/weizi.js (easylistchina+easylist.txt: 1499) +# ||21394.com/weizi.js (easylistchina.txt: 1509) .21394.com/weizi\.js -# ||211600.com/images/portal/ (easylistchina+easylist.txt: 1498) +# ||211600.com/images/portal/ (easylistchina.txt: 1508) .211600.com/images/portal/ -# ||211600.com/data/attachment/portal/ (easylistchina+easylist.txt: 1497) +# ||211600.com/data/attachment/portal/ (easylistchina.txt: 1507) .211600.com/data/attachment/portal/ -# ||204.12.228.236^*.png (easylistchina+easylist.txt: 1496) +# ||204.12.228.236^*.png (easylistchina.txt: 1506) .204.12.228.236/.*\.png -# ||204.12.228.235^*.png (easylistchina+easylist.txt: 1495) +# ||204.12.228.235^*.png (easylistchina.txt: 1505) .204.12.228.235/.*\.png -# ||201*.myhard.com^ (easylistchina+easylist.txt: 1494) +# ||201*.myhard.com^ (easylistchina.txt: 1504) .201*./.*\.myhard\.com[^\w%.-] .201*.myhard.com -# ||201*.073img.com^ (easylistchina+easylist.txt: 1493) +# ||201*.073img.com^ (easylistchina.txt: 1503) .201*./.*\.073img\.com[^\w%.-] .201*.073img.com -# ||2008xxx.com:888 (easylistchina+easylist.txt: 1492) +# ||2008xxx.com:888 (easylistchina.txt: 1502) .2008xxx.com:888*. -# ||1pad.cn/ahead/01.gif (easylistchina+easylist.txt: 1491) +# ||1pad.cn/ahead/01.gif (easylistchina.txt: 1501) .1pad.cn/ahead/01\.gif -# ||1m1m.cn/bar/ (easylistchina+easylist.txt: 1490) +# ||1m1m.cn/bar/ (easylistchina.txt: 1500) .1m1m.cn/bar/ -# ||1kejian.com/js/topA.js (easylistchina+easylist.txt: 1489) +# ||1kejian.com/js/topA.js (easylistchina.txt: 1499) .1kejian.com/js/topA\.js -# ||1fun.com.hk/bb/189X180B.swf (easylistchina+easylist.txt: 1488) +# ||1fun.com.hk/bb/189X180B.swf (easylistchina.txt: 1498) .1fun.com.hk/bb/189X180B\.swf -# ||1dot.cn/spider/1dotAd.php (easylistchina+easylist.txt: 1487) +# ||1dot.cn/spider/1dotAd.php (easylistchina.txt: 1497) .1dot.cn/spider/1dotAd\.php -# ||19iiii.info/js/tonglan.js (easylistchina+easylist.txt: 1486) +# ||19iiii.info/js/tonglan.js (easylistchina.txt: 1496) .19iiii.info/js/tonglan\.js -# ||19iiii.info/js/foot.js (easylistchina+easylist.txt: 1485) +# ||19iiii.info/js/foot.js (easylistchina.txt: 1495) .19iiii.info/js/foot\.js -# ||19iiii.info/js/dl.js (easylistchina+easylist.txt: 1484) +# ||19iiii.info/js/dl.js (easylistchina.txt: 1494) .19iiii.info/js/dl\.js -# ||19iiii.info/js/dingbu.js (easylistchina+easylist.txt: 1483) +# ||19iiii.info/js/dingbu.js (easylistchina.txt: 1493) .19iiii.info/js/dingbu\.js -# ||198zone.com/images/*noad.jpg (easylistchina+easylist.txt: 1482) +# ||198zone.com/images/*noad.jpg (easylistchina.txt: 1492) .198zone.com/images/.*noad\.jpg -# ||198.40.56.242/ad/ (easylistchina+easylist.txt: 1481) +# ||198.40.56.242/ad/ (easylistchina.txt: 1491) .198.40.56.242/ad/ -# ||198.40.52.11/ad/ (easylistchina+easylist.txt: 1480) -.198.40.52.11/ad/ -# ||192.74.239.161/ad960.js (easylistchina+easylist.txt: 1479) +# ||198.40.52.11^ (easylistchina.txt: 1490) +.198.40.52.11 +# ||192.74.239.161/ad960.js (easylistchina.txt: 1489) .192.74.239.161/ad960\.js -# ||192.184.10.171^ (easylistchina+easylist.txt: 1478) -.192.184.10.171 -# ||18avday.*/images/ts918com (easylistchina+easylist.txt: 1477) -.18avday.*./(.*/)?images/ts918com -# ||189so.cn^$subdocument (easylistchina+easylist.txt: 1476) +# ||18avday.*/aa/ (easylistchina.txt: 1488) +.18avday.*./(.*/)?aa/ +# ||189so.cn^$subdocument (easylistchina.txt: 1487) .189so.cn -# ||189so.cn/pop.html (easylistchina+easylist.txt: 1475) +# ||189so.cn/pop.html (easylistchina.txt: 1486) .189so.cn/pop\.html -# ||189so.cn/images/qz270x280.jpg (easylistchina+easylist.txt: 1474) +# ||189so.cn/images/qz270x280.jpg (easylistchina.txt: 1485) .189so.cn/images/qz270x280\.jpg -# ||189so.cn/images/960x60 (easylistchina+easylist.txt: 1473) +# ||189so.cn/images/960x60 (easylistchina.txt: 1484) .189so.cn/images/960x60 -# ||189.cn/dns/ (easylistchina+easylist.txt: 1472) +# ||189.cn/dns/ (easylistchina.txt: 1483) .189.cn/dns/ -# ||18888.com^*/Mon_*.gif (easylistchina+easylist.txt: 1471) +# ||18888.com^*/Mon_*.gif (easylistchina.txt: 1482) .18888.com/.*/Mon_.*\.gif -# ||183yf.cn/img/nz.png (easylistchina+easylist.txt: 1470) +# ||183yf.cn/img/nz.png (easylistchina.txt: 1481) .183yf.cn/img/nz\.png -# ||183.136.168.78:8082/ad/ (easylistchina+easylist.txt: 1469) +# ||183.136.168.78:8082/ad/ (easylistchina.txt: 1480) .183.136.168.78:8082/ad/ -# ||182.92.234.239^*.html (easylistchina+easylist.txt: 1468) +# ||182.92.234.239^*.html (easylistchina.txt: 1479) .182.92.234.239/.*\.html -# ||180.96.27.85^*.htm (easylistchina+easylist.txt: 1467) +# ||180.96.27.85^*.htm (easylistchina.txt: 1478) .180.96.27.85/.*\.htm -# ||17yy.com/style/ifra_ad/ (easylistchina+easylist.txt: 1466) +# ||17yy.com/style/ifra_ad/ (easylistchina.txt: 1477) .17yy.com/style/ifra_ad/ -# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina+easylist.txt: 1465) +# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina.txt: 1476) .17ok.com/focus/images/wenchouxiangmu\.gif -# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina+easylist.txt: 1464) +# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina.txt: 1475) .17ok.com/focus/3j_right_jdt\.shtml -# ||17kqw.com/*.gif (easylistchina+easylist.txt: 1463) +# ||17kqw.com/*.gif (easylistchina.txt: 1474) .17kqw.com/.*\.gif -# ||17kk.cc/scriptAD/ (easylistchina+easylist.txt: 1462) +# ||17kk.cc/scriptAD/ (easylistchina.txt: 1473) .17kk.cc/scriptAD/ -# ||17huohu.com/img/skin/qnh/ (easylistchina+easylist.txt: 1461) +# ||17huohu.com/img/skin/qnh/ (easylistchina.txt: 1472) .17huohu.com/img/skin/qnh/ -# ||17dm.com/s/common/js/*AD.js (easylistchina+easylist.txt: 1460) +# ||17dm.com/s/common/js/*AD.js (easylistchina.txt: 1471) .17dm.com/s/common/js/.*AD\.js -# ||17ce.com/118/t_banner.html (easylistchina+easylist.txt: 1459) +# ||17ce.com/118/t_banner.html (easylistchina.txt: 1470) .17ce.com/118/t_banner\.html -# ||178.com/lol/201410/206406421945/206406428217.jpg (easylistchina+easylist.txt: 1458) -.178.com/lol/201410/206406421945/206406428217\.jpg -# ||178.com/glr.js (easylistchina+easylist.txt: 1457) +# ||178.com/glr.js (easylistchina.txt: 1469) .178.com/glr\.js -# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina+easylist.txt: 1456) +# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina.txt: 1468) .178.com/dota/201409/205976017190/205976025825\.jpg -# ||17558.net/youdiancms.gif (easylistchina+easylist.txt: 1455) +# ||17558.net/youdiancms.gif (easylistchina.txt: 1467) .17558.net/youdiancms\.gif -# ||17558.net/daozeiyuanma1.gif (easylistchina+easylist.txt: 1454) +# ||17558.net/daozeiyuanma1.gif (easylistchina.txt: 1466) .17558.net/daozeiyuanma1\.gif -# ||174.123.15.43:8080 (easylistchina+easylist.txt: 1453) +# ||174.123.15.43:8080 (easylistchina.txt: 1465) .174.123.15.43:8080*. -# ||173kt.com/images/ad (easylistchina+easylist.txt: 1452) +# ||173kt.com/images/ad (easylistchina.txt: 1464) .173kt.com/images/ad -# ||173kt.com/ads/ (easylistchina+easylist.txt: 1451) +# ||173kt.com/ads/ (easylistchina.txt: 1463) .173kt.com/ads/ -# ||173.255.143.197^*.png (easylistchina+easylist.txt: 1450) +# ||173.255.143.197^*.png (easylistchina.txt: 1462) .173.255.143.197/.*\.png -# ||173.255.139.114^$subdocument (easylistchina+easylist.txt: 1449) +# ||173.255.139.114^$subdocument (easylistchina.txt: 1461) .173.255.139.114 -# ||173.208.177.227^*.gif (easylistchina+easylist.txt: 1448) +# ||173.208.177.227^*.gif (easylistchina.txt: 1460) .173.208.177.227/.*\.gif -# ||173.208.177.227/tool/xuanfusige.js (easylistchina+easylist.txt: 1447) +# ||173.208.177.227/tool/xuanfusige.js (easylistchina.txt: 1459) .173.208.177.227/tool/xuanfusige\.js -# ||172.15.2.28:3438/*.js (easylistchina+easylist.txt: 1446) +# ||172.15.2.28:3438/*.js (easylistchina.txt: 1458) .172.15.2.28:3438/.*\.js -# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina+easylist.txt: 1445) +# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina.txt: 1457) .17173cdn.com/.*/flash/OnLineTime\.swf -# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina+easylist.txt: 1444) +# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina.txt: 1456) .17173cdn.com/js/play/page/pThridPlayerAd\.js -# ||17173cdn.com/css/live/business (easylistchina+easylist.txt: 1443) +# ||17173cdn.com/css/live/business (easylistchina.txt: 1455) .17173cdn.com/css/live/business -# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina+easylist.txt: 1442) +# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina.txt: 1454) .17173cdn.com/a/www/index/.*/js/ggcommon -# ||17173cdn.com/a/lib/vda/seed.js (easylistchina+easylist.txt: 1441) +# ||17173cdn.com/a/lib/vda/seed.js (easylistchina.txt: 1453) .17173cdn.com/a/lib/vda/seed\.js -# ||17173.com/new/ (easylistchina+easylist.txt: 1440) +# ||17173.com/new/ (easylistchina.txt: 1452) .17173.com/new/ -# ||17173.com/if/ (easylistchina+easylist.txt: 1439) +# ||17173.com/if/ (easylistchina.txt: 1451) .17173.com/if/ -# ||17173.com/bd/ifm/allyes/ (easylistchina+easylist.txt: 1438) +# ||17173.com/bd/ifm/allyes/ (easylistchina.txt: 1450) .17173.com/bd/ifm/allyes/ -# ||17173.com/advideo/ (easylistchina+easylist.txt: 1437) +# ||17173.com/advideo/ (easylistchina.txt: 1449) .17173.com/advideo/ -# ||17173.com/2013/new/channel-float.js (easylistchina+easylist.txt: 1436) +# ||17173.com/2013/new/channel-float.js (easylistchina.txt: 1448) .17173.com/2013/new/channel-float\.js -# ||16sucai.com/images/46060_ (easylistchina+easylist.txt: 1435) +# ||16sucai.com/images/46060_ (easylistchina.txt: 1447) .16sucai.com/images/46060_ -# ||16sucai.com/ads/ (easylistchina+easylist.txt: 1434) +# ||16sucai.com/ads/ (easylistchina.txt: 1446) .16sucai.com/ads/ -# ||168gamer.com/static/js/cpa.js (easylistchina+easylist.txt: 1433) +# ||168gamer.com/static/js/cpa.js (easylistchina.txt: 1445) .168gamer.com/static/js/cpa\.js -# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina+easylist.txt: 1432) +# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina.txt: 1444) .168gamer.com/plugin\.php\?id=cstdio_ads: -# ||168gamer.com/apii.php?mod=js&bid= (easylistchina+easylist.txt: 1431) +# ||168gamer.com/apii.php?mod=js&bid= (easylistchina.txt: 1443) .168gamer.com/apii\.php\?mod=js&bid= -# ||16888.com/ajax/loadcardata.php (easylistchina+easylist.txt: 1430) +# ||16888.com/ajax/loadcardata.php (easylistchina.txt: 1442) .16888.com/ajax/loadcardata\.php -# ||1688.com.au/site1/1688ad/ (easylistchina+easylist.txt: 1429) +# ||1688.com.au/site1/1688ad/ (easylistchina.txt: 1441) .1688.com.au/site1/1688ad/ -# ||1684.cc/js/1684/ (easylistchina+easylist.txt: 1428) +# ||1684.cc/js/1684/ (easylistchina.txt: 1440) .1684.cc/js/1684/ -# ||168.it168.com^$script (easylistchina+easylist.txt: 1427) +# ||168.it168.com^$script (easylistchina.txt: 1439) .168.it168.com -# ||1677.net/js/gb*.js (easylistchina+easylist.txt: 1426) +# ||1677.net/js/gb*.js (easylistchina.txt: 1438) .1677.net/js/gb.*\.js -# ||1677.net/js/cad*.js (easylistchina+easylist.txt: 1425) +# ||1677.net/js/cad*.js (easylistchina.txt: 1437) .1677.net/js/cad.*\.js -# ||1677.net/js/ad*.js (easylistchina+easylist.txt: 1424) +# ||1677.net/js/ad*.js (easylistchina.txt: 1436) .1677.net/js/ad.*\.js -# ||163disk.com/static/www/ (easylistchina+easylist.txt: 1423) +# ||163disk.com/static/www/ (easylistchina.txt: 1435) .163disk.com/static/www/ -# ||163disk.com/static/images/tu.gif (easylistchina+easylist.txt: 1422) +# ||163disk.com/static/images/tu.gif (easylistchina.txt: 1434) .163disk.com/static/images/tu\.gif -# ||163disk.com/static/images/DING.gif (easylistchina+easylist.txt: 1421) +# ||163disk.com/static/images/DING.gif (easylistchina.txt: 1433) .163disk.com/static/images/DING\.gif -# ||163disk.com/pic/960x90- (easylistchina+easylist.txt: 1420) +# ||163disk.com/pic/960x90- (easylistchina.txt: 1432) .163disk.com/pic/960x90- -# ||163.com/special/*/topbg.js (easylistchina+easylist.txt: 1419) +# ||163.com/special/*_taobao. (easylistchina.txt: 1431) +.163.com/special/.*_taobao\. +# ||163.com/special/*_ad_ (easylistchina.txt: 1430) +.163.com/special/.*_ad_ +# ||163.com/special/*/topbg.js (easylistchina.txt: 1429) .163.com/special/.*/topbg\.js -# ||163.com/special/*/tonglan1.js (easylistchina+easylist.txt: 1418) +# ||163.com/special/*/tonglan1.js (easylistchina.txt: 1428) .163.com/special/.*/tonglan1\.js -# ||163.com/special/*/ted_vad. (easylistchina+easylist.txt: 1417) +# ||163.com/special/*/ted_vad. (easylistchina.txt: 1427) .163.com/special/.*/ted_vad\. -# ||163.com/special/*/scroolAd (easylistchina+easylist.txt: 1416) +# ||163.com/special/*/scroolAd (easylistchina.txt: 1426) .163.com/special/.*/scroolAd -# ||163.com/special/*/beitou.js (easylistchina+easylist.txt: 1415) +# ||163.com/special/*/beitou.js (easylistchina.txt: 1425) .163.com/special/.*/beitou\.js -# ||163.com/special/*/ace_downbig.js (easylistchina+easylist.txt: 1414) +# ||163.com/special/*/ace_downbig.js (easylistchina.txt: 1424) .163.com/special/.*/ace_downbig\.js -# ||163.com/get.do?*=themeHandler. (easylistchina+easylist.txt: 1412) +# ||163.com/get.do?*=themeHandler. (easylistchina.txt: 1422) .163.com/get\.do\?.*=themeHandler\. -# ||162wp.com/ipc/11.gif (easylistchina+easylist.txt: 1411) +# ||162wp.com/ipc/11.gif (easylistchina.txt: 1421) .162wp.com/ipc/11\.gif -# ||162wp.com/e/data/images/pixviewer.swf (easylistchina+easylist.txt: 1410) +# ||162wp.com/e/data/images/pixviewer.swf (easylistchina.txt: 1420) .162wp.com/e/data/images/pixviewer\.swf -# ||162.212.252.35/ads/ (easylistchina+easylist.txt: 1409) -.162.212.252.35/ads/ -# ||1616.net/jd/i_ (easylistchina+easylist.txt: 1408) +# ||1616.net/jd/i_ (easylistchina.txt: 1419) .1616.net/jd/i_ -# ||1616.net/jd/data/index/indexad.json (easylistchina+easylist.txt: 1407) +# ||1616.net/jd/data/index/indexad.json (easylistchina.txt: 1418) .1616.net/jd/data/index/indexad\.json -# ||15w.com/pages/adlive. (easylistchina+easylist.txt: 1406) +# ||15w.com/pages/adlive. (easylistchina.txt: 1417) .15w.com/pages/adlive\. -# ||15w.com/flash/ (easylistchina+easylist.txt: 1405) +# ||15w.com/flash/ (easylistchina.txt: 1416) .15w.com/flash/ -# ||15w.com/call/webjs/60.js (easylistchina+easylist.txt: 1404) +# ||15w.com/call/webjs/60.js (easylistchina.txt: 1415) .15w.com/call/webjs/60\.js -# ||1518.com/ss/ (easylistchina+easylist.txt: 1403) +# ||1518.com/ss/ (easylistchina.txt: 1414) .1518.com/ss/ -# ||142.0.133.129/twdsb/ (easylistchina+easylist.txt: 1402) -.142.0.133.129/twdsb/ -# ||142.0.133.129/attachment/Mon_ (easylistchina+easylist.txt: 1401) -.142.0.133.129/attachment/Mon_ -# ||141h.com/data/attachment/noblock/cf/ (easylistchina+easylist.txt: 1400) +# ||141h.com/data/attachment/noblock/cf/ (easylistchina.txt: 1413) .141h.com/data/attachment/noblock/cf/ -# ||1382014.co/980X45.gif (easylistchina+easylist.txt: 1399) +# ||1382014.co/980X45.gif (easylistchina.txt: 1412) .1382014.co/980X45\.gif -# ||135qp.com/sjzswf/banner.swf (easylistchina+easylist.txt: 1398) +# ||135qp.com/sjzswf/banner.swf (easylistchina.txt: 1411) .135qp.com/sjzswf/banner\.swf -# ||133uu.com/html/ (easylistchina+easylist.txt: 1397) +# ||133uu.com/html/ (easylistchina.txt: 1410) .133uu.com/html/ -# ||131458.com/union/ (easylistchina+easylist.txt: 1396) +# ||131458.com/union/ (easylistchina.txt: 1409) .131458.com/union/ -# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina+easylist.txt: 1395) +# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina.txt: 1408) .131.com/test2/2014/09/04/201409041715356f5\.jpg -# ||131.com/js/131InsideAD$script (easylistchina+easylist.txt: 1394) +# ||131.com/js/131InsideAD$script (easylistchina.txt: 1407) .131.com/js/131InsideAD -# ||131.com/home/resouces/js/ (easylistchina+easylist.txt: 1393) +# ||131.com/home/resouces/js/ (easylistchina.txt: 1406) .131.com/home/resouces/js/ -# ||131.com/common/alertwindow.html (easylistchina+easylist.txt: 1392) +# ||131.com/common/alertwindow.html (easylistchina.txt: 1405) .131.com/common/alertwindow\.html -# ||127.net/m/*/promPic.jpg (easylistchina+easylist.txt: 1391) +# ||127.net/m/*/promPic.jpg (easylistchina.txt: 1404) .127.net/m/.*/promPic\.jpg -# ||127.net/external/js6promote (easylistchina+easylist.txt: 1390) +# ||127.net/external/js6promote (easylistchina.txt: 1403) .127.net/external/js6promote -# ||126xz.com/www/all_guanggao.js (easylistchina+easylist.txt: 1389) +# ||126xz.com/www/all_guanggao.js (easylistchina.txt: 1402) .126xz.com/www/all_guanggao\.js -# ||126disk.com/templates/mobile/2345t.png (easylistchina+easylist.txt: 1388) +# ||126disk.com/templates/mobile/2345t.png (easylistchina.txt: 1401) .126disk.com/templates/mobile/2345t\.png -# ||126.net/house/sjz/xt/ (easylistchina+easylist.txt: 1387) +# ||126.net/house/sjz/xt/ (easylistchina.txt: 1400) .126.net/house/sjz/xt/ -# ||126.net/house/sjz/flash/ (easylistchina+easylist.txt: 1386) +# ||126.net/house/sjz/flash/ (easylistchina.txt: 1399) .126.net/house/sjz/flash/ -# ||126.net/house/hrb/js/ (easylistchina+easylist.txt: 1385) +# ||126.net/house/sjz/*96070 (easylistchina.txt: 1398) +.126.net/house/sjz/.*96070 +# ||126.net/house/hrb/js/ (easylistchina.txt: 1397) .126.net/house/hrb/js/ -# ||126.net/house/hrb/flash/*X (easylistchina+easylist.txt: 1384) +# ||126.net/house/hrb/flash/*X (easylistchina.txt: 1396) .126.net/house/hrb/flash/.*X -# ||126.net/house/hebei/index/20150618.swf (easylistchina+easylist.txt: 1383) -.126.net/house/hebei/index/20150618\.swf -# ||126.net/house/hangzhou/ad/ (easylistchina+easylist.txt: 1382) +# ||126.net/house/hangzhou/ad/ (easylistchina.txt: 1395) .126.net/house/hangzhou/ad/ -# ||126.net/house/chengdu/flash/*+ (easylistchina+easylist.txt: 1381) +# ||126.net/house/chengdu/flash/*+ (easylistchina.txt: 1394) .126.net/house/chengdu/flash/.*\+ -# ||126.com/get.do?*=themeHandler. (easylistchina+easylist.txt: 1380) +# ||126.com/get.do?*=themeHandler. (easylistchina.txt: 1393) .126.com/get\.do\?.*=themeHandler\. -# ||125.46.61.28^ (easylistchina+easylist.txt: 1379) +# ||125.46.61.28^ (easylistchina.txt: 1392) .125.46.61.28 -# ||123cha.com/2568 (easylistchina+easylist.txt: 1378) +# ||123cha.com/2568 (easylistchina.txt: 1391) .123cha.com/2568 -# ||123564.com/js/plaza.js (easylistchina+easylist.txt: 1377) +# ||123564.com/js/plaza.js (easylistchina.txt: 1390) .123564.com/js/plaza\.js -# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina+easylist.txt: 1376) +# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina.txt: 1389) .123.sogou.com/nstatic/img/jiao\.swf -# ||122.228.236.165^ (easylistchina+easylist.txt: 1375) +# ||122.228.236.165^ (easylistchina.txt: 1388) .122.228.236.165 -# ||122.225.103.*.htm (easylistchina+easylist.txt: 1374) +# ||122.225.103.*.htm (easylistchina.txt: 1387) .122.225.103.*./.*\.htm .122.225.103.*.htm*. -# ||121zou.com^$subdocument (easylistchina+easylist.txt: 1373) +# ||121zou.com^$subdocument (easylistchina.txt: 1386) .121zou.com -# ||121down.com/img/*.js (easylistchina+easylist.txt: 1372) +# ||121down.com/img/*.js (easylistchina.txt: 1385) .121down.com/img/.*\.js -# ||121.41.60.207/m?t= (easylistchina+easylist.txt: 1371) +# ||121.41.60.207/m?t= (easylistchina.txt: 1384) .121.41.60.207/m\?t= -# ||121.40.136.114^*.htm (easylistchina+easylist.txt: 1370) +# ||121.40.136.114^*.htm (easylistchina.txt: 1383) .121.40.136.114/.*\.htm -# ||120bo.com/ggimg/ (easylistchina+easylist.txt: 1369) +# ||120bo.com/ggimg/ (easylistchina.txt: 1382) .120bo.com/ggimg/ -# ||120askimages.com/ask/js/x.js (easylistchina+easylist.txt: 1368) -.120askimages.com/ask/js/x\.js -# ||120.27.34.156^ (easylistchina+easylist.txt: 1367) +# ||120askimages.com/ask/js/*x.js (easylistchina.txt: 1381) +.120askimages.com/ask/js/.*x\.js +# ||120.27.34.156^ (easylistchina.txt: 1380) .120.27.34.156 -# ||11mzmz.com/java/ (easylistchina+easylist.txt: 1366) -.11mzmz.com/java/ -# ||11hhww.com/java/xia1.js (easylistchina+easylist.txt: 1365) +# ||11hhww.com/java/xia1.js (easylistchina.txt: 1379) .11hhww.com/java/xia1\.js -# ||11hhww.com/java/shang1.js (easylistchina+easylist.txt: 1364) +# ||11hhww.com/java/shang1.js (easylistchina.txt: 1378) .11hhww.com/java/shang1\.js -# ||11hhww.com/java/cpm (easylistchina+easylist.txt: 1363) +# ||11hhww.com/java/cpm (easylistchina.txt: 1377) .11hhww.com/java/cpm -# ||11dzdz.com/java/ (easylistchina+easylist.txt: 1362) -.11dzdz.com/java/ -# ||11dmdm.com/java/ (easylistchina+easylist.txt: 1361) -.11dmdm.com/java/ -# ||119xiazai.com^$subdocument (easylistchina+easylist.txt: 1360) +# ||119xiazai.com^$subdocument (easylistchina.txt: 1376) .119xiazai.com -# ||119g.com/fanwan1/dibubanner.js (easylistchina+easylist.txt: 1359) +# ||119g.com/fanwan1/dibubanner.js (easylistchina.txt: 1375) .119g.com/fanwan1/dibubanner\.js -# ||119g.com/fanwan/ (easylistchina+easylist.txt: 1358) +# ||119g.com/fanwan/ (easylistchina.txt: 1374) .119g.com/fanwan/ -# ||119.167.73.60/m_code/ (easylistchina+easylist.txt: 1357) +# ||119.167.73.60/m_code/ (easylistchina.txt: 1373) .119.167.73.60/m_code/ -# ||115mm.com/js/ (easylistchina+easylist.txt: 1356) +# ||115mm.com/js/ (easylistchina.txt: 1372) .115mm.com/js/ -# ||115img.com/static/pc/d_127.html (easylistchina+easylist.txt: 1355) +# ||115img.com/static/pc/d_127.html (easylistchina.txt: 1371) .115img.com/static/pc/d_127\.html -# ||115.29.46.146^$subdocument (easylistchina+easylist.txt: 1354) +# ||115.29.46.146^$subdocument (easylistchina.txt: 1370) .115.29.46.146 -# ||115.29.141.121:8086/js/wp.js (easylistchina+easylist.txt: 1353) +# ||115.29.141.121:8086/js/wp.js (easylistchina.txt: 1369) .115.29.141.121:8086/js/wp\.js -# ||115.28.6.94:8090/js/s (easylistchina+easylist.txt: 1352) +# ||115.28.6.94:8090/js/s (easylistchina.txt: 1368) .115.28.6.94:8090/js/s -# ||115.28.114.149^*_proxy. (easylistchina+easylist.txt: 1351) +# ||115.28.114.149^*_proxy. (easylistchina.txt: 1367) .115.28.114.149/.*_proxy\. -# ||114so.cn^$subdocument (easylistchina+easylist.txt: 1350) +# ||114so.cn^$subdocument (easylistchina.txt: 1366) .114so.cn -# ||114so.cn/js/nm*.js (easylistchina+easylist.txt: 1349) +# ||114so.cn/js/nm*.js (easylistchina.txt: 1365) .114so.cn/js/nm.*\.js -# ||114fw.com/dagg/ (easylistchina+easylist.txt: 1348) +# ||114fw.com/dagg/ (easylistchina.txt: 1364) .114fw.com/dagg/ -# ||113.17.188.44/*.js (easylistchina+easylist.txt: 1347) +# ||113.17.188.44/*.js (easylistchina.txt: 1363) .113.17.188.44/.*\.js -# ||112.126.66.58^*?mid= (easylistchina+easylist.txt: 1346) +# ||112.126.66.58^*?mid= (easylistchina.txt: 1362) .112.126.66.58/.*\?mid= -# ||111cn.net/v8/fun.js (easylistchina+easylist.txt: 1345) +# ||111cn.net/v8/fun.js (easylistchina.txt: 1361) .111cn.net/v8/fun\.js -# ||111cn.net/js/v8/page_ (easylistchina+easylist.txt: 1344) +# ||111cn.net/js/v8/page_ (easylistchina.txt: 1360) .111cn.net/js/v8/page_ -# ||111cn.net/js/v8/body (easylistchina+easylist.txt: 1343) +# ||111cn.net/js/v8/body (easylistchina.txt: 1359) .111cn.net/js/v8/body -# ||111cn.net/js/v8/art_ (easylistchina+easylist.txt: 1342) +# ||111cn.net/js/v8/art_ (easylistchina.txt: 1358) .111cn.net/js/v8/art_ -# ||111cn.net/js/downc*.js (easylistchina+easylist.txt: 1341) +# ||111cn.net/js/downc*.js (easylistchina.txt: 1357) .111cn.net/js/downc.*\.js -# ||111cn.net/images/v8/vip.jpg (easylistchina+easylist.txt: 1340) +# ||111cn.net/images/v8/vip.jpg (easylistchina.txt: 1356) .111cn.net/images/v8/vip\.jpg -# ||111cn.net/gg_ad/ (easylistchina+easylist.txt: 1339) +# ||111cn.net/gg_ad/ (easylistchina.txt: 1355) .111cn.net/gg_ad/ -# ||11.mydrivers.com/news/google468x60.js (easylistchina+easylist.txt: 1338) +# ||11.mydrivers.com/news/google468x60.js (easylistchina.txt: 1354) .11.mydrivers.com/news/google468x60\.js -# ||11.mydrivers.com/news/03.js (easylistchina+easylist.txt: 1337) +# ||11.mydrivers.com/news/03.js (easylistchina.txt: 1353) .11.mydrivers.com/news/03\.js -# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina+easylist.txt: 1336) +# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina.txt: 1352) .11.mydrivers.com/myfiles/myfiles100.*\.js -# ||11.mydrivers.com/myfiles/0*.js (easylistchina+easylist.txt: 1335) +# ||11.mydrivers.com/myfiles/0*.js (easylistchina.txt: 1351) .11.mydrivers.com/myfiles/0.*\.js -# ||11.mydrivers.com/drivers/ (easylistchina+easylist.txt: 1334) +# ||11.mydrivers.com/drivers/ (easylistchina.txt: 1350) .11.mydrivers.com/drivers/ -# ||10yan.com/mmm/ (easylistchina+easylist.txt: 1333) +# ||10yan.com/mmm/ (easylistchina.txt: 1349) .10yan.com/mmm/ -# ||10pan.cc/rili.gif (easylistchina+easylist.txt: 1332) +# ||10pan.cc/rili.gif (easylistchina.txt: 1348) .10pan.cc/rili\.gif -# ||10pan.*/adblockTester/ (easylistchina+easylist.txt: 1331) +# ||10pan.*/adblockTester/ (easylistchina.txt: 1347) .10pan.*./(.*/)?adblockTester/ -# ||10jqka.com.cn/public/stock/red.html? (easylistchina+easylist.txt: 1330) +# ||10jqka.com.cn/public/stock/red.html? (easylistchina.txt: 1346) .10jqka.com.cn/public/stock/red\.html\? -# ||1080pba.com/templets/default/images/8.gif (easylistchina+easylist.txt: 1329) +# ||1080pba.com/templets/default/images/8.gif (easylistchina.txt: 1345) .1080pba.com/templets/default/images/8\.gif -# ||1080pba.com/templets/default/images/4.gif (easylistchina+easylist.txt: 1328) +# ||1080pba.com/templets/default/images/4.gif (easylistchina.txt: 1344) .1080pba.com/templets/default/images/4\.gif -# ||1080pba.com/templets/default/images/3.gif (easylistchina+easylist.txt: 1327) +# ||1080pba.com/templets/default/images/3.gif (easylistchina.txt: 1343) .1080pba.com/templets/default/images/3\.gif -# ||1080pba.com/templets/default/images/2.gif (easylistchina+easylist.txt: 1326) +# ||1080pba.com/templets/default/images/2.gif (easylistchina.txt: 1342) .1080pba.com/templets/default/images/2\.gif -# ||1080pba.com/templets/default/images/1.gif (easylistchina+easylist.txt: 1325) +# ||1080pba.com/templets/default/images/1.gif (easylistchina.txt: 1341) .1080pba.com/templets/default/images/1\.gif -# ||1080pba.com/templets/default/images/02.gif (easylistchina+easylist.txt: 1324) +# ||1080pba.com/templets/default/images/02.gif (easylistchina.txt: 1340) .1080pba.com/templets/default/images/02\.gif -# ||107.182.131.103/cache/?q=/images/ (easylistchina+easylist.txt: 1323) +# ||108.171.248.234^ (easylistchina.txt: 1339) +.108.171.248.234 +# ||107.182.131.103/cache/?q=/images/ (easylistchina.txt: 1338) .107.182.131.103/cache/\?q=/images/ -# ||106.184.7.176/shuang11/ (easylistchina+easylist.txt: 1322) +# ||106.184.7.176/shuang11/ (easylistchina.txt: 1337) .106.184.7.176/shuang11/ -# ||103.225.198.230:8080/index.html (easylistchina+easylist.txt: 1321) +# ||103.225.198.230:8080/index.html (easylistchina.txt: 1336) .103.225.198.230:8080/index\.html -# ||102tv.cn/js/index_*.js (easylistchina+easylist.txt: 1320) +# ||102tv.cn/js/index_*.js (easylistchina.txt: 1335) .102tv.cn/js/index_.*\.js -# ||102tv.cn/js/desktop.js (easylistchina+easylist.txt: 1319) +# ||102tv.cn/js/desktop.js (easylistchina.txt: 1334) .102tv.cn/js/desktop\.js -# ||102tv.cn/js/ad*.js (easylistchina+easylist.txt: 1318) +# ||102tv.cn/js/ad*.js (easylistchina.txt: 1333) .102tv.cn/js/ad.*\.js -# ||101.78.195.135/js/ (easylistchina+easylist.txt: 1317) +# ||101.78.195.135/js/ (easylistchina.txt: 1332) .101.78.195.135/js/ -# ||100ksw.com/ksbd/ksbdparad.js (easylistchina+easylist.txt: 1316) +# ||100ksw.com/ksbd/ksbdparad.js (easylistchina.txt: 1331) .100ksw.com/ksbd/ksbdparad\.js -# ||100ksw.com/include/ksbdfd.js (easylistchina+easylist.txt: 1315) +# ||100ksw.com/include/ksbdfd.js (easylistchina.txt: 1330) .100ksw.com/include/ksbdfd\.js -# ||10000sb.com/4gbct.js (easylistchina+easylist.txt: 1314) +# ||10000sb.com/4gbct.js (easylistchina.txt: 1329) .10000sb.com/4gbct\.js -# ||0dian8.org/data/js/ (easylistchina+easylist.txt: 1313) +# ||0dian8.org/data/js/ (easylistchina.txt: 1328) .0dian8.org/data/js/ -# ||07908.com/images/ (easylistchina+easylist.txt: 1312) +# ||07908.com/images/ (easylistchina.txt: 1327) .07908.com/images/ -# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina+easylist.txt: 1311) +# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina.txt: 1326) .0772fang.com/assets/js/Newhouse/inserAds\.js -# ||0772fang.com/assets/js/imgorflash.js (easylistchina+easylist.txt: 1310) +# ||0772fang.com/assets/js/imgorflash.js (easylistchina.txt: 1325) .0772fang.com/assets/js/imgorflash\.js -# ||076299.cn/images/flash/20 (easylistchina+easylist.txt: 1309) +# ||076299.cn/images/flash/20 (easylistchina.txt: 1324) .076299.cn/images/flash/20 -# ||0758net.com/data/attachment/portal/ (easylistchina+easylist.txt: 1308) +# ||0758net.com/data/attachment/portal/ (easylistchina.txt: 1323) .0758net.com/data/attachment/portal/ -# ||0756.la/ad-htm/ (easylistchina+easylist.txt: 1307) +# ||0756.la/ad-htm/ (easylistchina.txt: 1322) .0756.la/ad-htm/ -# ||073img.com^*/rich.js (easylistchina+easylist.txt: 1306) +# ||073img.com^*/rich.js (easylistchina.txt: 1321) .073img.com/.*/rich\.js -# ||0668gz.com/data/attachment/portal/ (easylistchina+easylist.txt: 1305) +# ||0668gz.com/data/attachment/portal/ (easylistchina.txt: 1320) .0668gz.com/data/attachment/portal/ -# ||060s.com/my_ad/ (easylistchina+easylist.txt: 1304) +# ||060s.com/my_ad/ (easylistchina.txt: 1319) .060s.com/my_ad/ -# ||05sun.com/js/downinfo.js (easylistchina+easylist.txt: 1303) +# ||05sun.com/js/downinfo.js (easylistchina.txt: 1318) .05sun.com/js/downinfo\.js -# ||05sun.com/js/comm.js (easylistchina+easylist.txt: 1302) +# ||05sun.com/js/comm.js (easylistchina.txt: 1317) .05sun.com/js/comm\.js -# ||0597ok.com/ilike/597/ (easylistchina+easylist.txt: 1301) +# ||0597ok.com/ilike/597/ (easylistchina.txt: 1316) .0597ok.com/ilike/597/ -# ||0597kk.com/js/float.js (easylistchina+easylist.txt: 1300) +# ||0597kk.com/js/float.js (easylistchina.txt: 1315) .0597kk.com/js/float\.js -# ||0579.cn/SHow/Showplacenew.aspx (easylistchina+easylist.txt: 1299) +# ||0579.cn/SHow/Showplacenew.aspx (easylistchina.txt: 1314) .0579.cn/SHow/Showplacenew\.aspx -# ||0579.cn/images/bg.gif (easylistchina+easylist.txt: 1298) +# ||0579.cn/images/bg.gif (easylistchina.txt: 1313) .0579.cn/images/bg\.gif -# ||0575bbs.com/updateimeags/ (easylistchina+easylist.txt: 1297) +# ||0575bbs.com/updateimeags/ (easylistchina.txt: 1312) .0575bbs.com/updateimeags/ -# ||0575bbs.com/js/float.js (easylistchina+easylist.txt: 1296) +# ||0575bbs.com/js/float.js (easylistchina.txt: 1311) .0575bbs.com/js/float\.js -# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina+easylist.txt: 1295) +# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina.txt: 1310) .0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph\.gif -# ||05096.com/jsdoc/ad.html (easylistchina+easylist.txt: 1294) +# ||05096.com/jsdoc/ad.html (easylistchina.txt: 1309) .05096.com/jsdoc/ad\.html -# ||0471.so/Public/config/Couplet/Index (easylistchina+easylist.txt: 1293) +# ||0471.so/Public/config/Couplet/Index (easylistchina.txt: 1308) .0471.so/Public/config/Couplet/Index -# ||0460.com/js/txtrec.js (easylistchina+easylist.txt: 1292) +# ||0460.com/js/txtrec.js (easylistchina.txt: 1307) .0460.com/js/txtrec\.js -# ||0460.com/images/banner/ (easylistchina+easylist.txt: 1291) +# ||0460.com/images/banner/ (easylistchina.txt: 1306) .0460.com/images/banner/ -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina+easylist.txt: 1290) +# ||0452e.com/js/float.js (easylistchina.txt: 1305) +.0452e.com/js/float\.js +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina.txt: 1304) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=zhuangx -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina+easylist.txt: 1289) +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina.txt: 1303) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=topslide -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina+easylist.txt: 1288) +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina.txt: 1302) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=classify -# ||0439.com/html/js/tuiguang.js (easylistchina+easylist.txt: 1287) +# ||0439.com/html/js/tuiguang.js (easylistchina.txt: 1301) .0439.com/html/js/tuiguang\.js -# ||0439.com/html/js/ad_r_300x220.js (easylistchina+easylist.txt: 1286) +# ||0439.com/html/js/ad_r_300x220.js (easylistchina.txt: 1300) .0439.com/html/js/ad_r_300x220\.js -# ||03jd.cn/data/attachment/portal/ (easylistchina+easylist.txt: 1285) +# ||03jd.cn/data/attachment/portal/ (easylistchina.txt: 1299) .03jd.cn/data/attachment/portal/ -# ||0379home.com/images/fullscreen_ (easylistchina+easylist.txt: 1284) +# ||0379home.com/images/fullscreen_ (easylistchina.txt: 1298) .0379home.com/images/fullscreen_ -# ||0379home.com/2014/js/beside.js (easylistchina+easylist.txt: 1283) +# ||0379home.com/2014/js/beside.js (easylistchina.txt: 1297) .0379home.com/2014/js/beside\.js -# ||0379home.com/2014/js/ad_pic.js (easylistchina+easylist.txt: 1282) +# ||0379home.com/2014/js/ad_pic.js (easylistchina.txt: 1296) .0379home.com/2014/js/ad_pic\.js -# ||027down.com/images/banner760-60.gif (easylistchina+easylist.txt: 1281) +# ||027down.com/images/banner760-60.gif (easylistchina.txt: 1295) .027down.com/images/banner760-60\.gif -# ||022net.com/main/browse_yme.js (easylistchina+easylist.txt: 1280) +# ||022net.com/main/browse_yme.js (easylistchina.txt: 1294) .022net.com/main/browse_yme\.js -# ||022net.com/js/mhtml/phtml07.html (easylistchina+easylist.txt: 1279) +# ||022net.com/js/mhtml/phtml07.html (easylistchina.txt: 1293) .022net.com/js/mhtml/phtml07\.html -# ||022net.com/js/mhtml/phtml04.html (easylistchina+easylist.txt: 1278) +# ||022net.com/js/mhtml/phtml04.html (easylistchina.txt: 1292) .022net.com/js/mhtml/phtml04\.html -# ||022net.com/js/mhtml/phtml03.html (easylistchina+easylist.txt: 1277) +# ||022net.com/js/mhtml/phtml03.html (easylistchina.txt: 1291) .022net.com/js/mhtml/phtml03\.html -# ||021wudi.com/admguan- (easylistchina+easylist.txt: 1276) +# ||021wudi.com/admguan- (easylistchina.txt: 1290) .021wudi.com/admguan- -# ||020.com/960_70 (easylistchina+easylist.txt: 1275) +# ||020.com/960_70 (easylistchina.txt: 1289) .020.com/960_70 -# ||007.mx/flv/ (easylistchina+easylist.txt: 1274) +# ||007.mx/flv/ (easylistchina.txt: 1288) .007.mx/flv/ -# ||005.tv:60000/ad.js (easylistchina+easylist.txt: 1273) +# ||005.tv:60000/ad.js (easylistchina.txt: 1287) .005.tv:60000/ad\.js -# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina+easylist.txt: 1272) +# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina.txt: 1286) .005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm\.jpg -# ||00170017.net/Public/images/ (easylistchina+easylist.txt: 1270) +# ||00170017.net/Public/images/ (easylistchina.txt: 1284) .00170017.net/Public/images/ -# ||00170017.net/Public/dzb_gg.js (easylistchina+easylist.txt: 1269) +# ||00170017.net/Public/dzb_gg.js (easylistchina.txt: 1283) .00170017.net/Public/dzb_gg\.js -# |http://www.i-ab.co/zz/ (easylistchina+easylist.txt: 1268) +# |http://www.i-ab.co/zz/ (easylistchina.txt: 1282) www.i-ab.co/zz/ -# |http://*/ad_bj.js? (easylistchina+easylist.txt: 1260) +# |http://*/ad_bj.js? (easylistchina.txt: 1274) /(.*/)?ad_bj\.js\? -# |http://*.7m.cn/b/ (easylistchina+easylist.txt: 1258) +# |http://*.7m.cn/b/ (easylistchina.txt: 1272) /.*\.7m\.cn/b/ .*.7m.cn/b/ -# _yad_jsonp_ (easylistchina+easylist.txt: 1252) +# _yad_jsonp_ (easylistchina.txt: 1266) /.*_yad_jsonp_ -# _vmind.qqvideo.tc.qq.com^ (easylistchina+easylist.txt: 1251) +# _vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1265) /.*_vmind\.qqvideo\.tc\.qq\.com[^\w%.-] -# _!!1731999033. (easylistchina+easylist.txt: 1249) +# _!!1731999033. (easylistchina.txt: 1263) /.*_!!1731999033\. -# ^zhuanqian/adall.js (easylistchina+easylist.txt: 1248) +# ^zhuanqian/adall.js (easylistchina.txt: 1262) /(.*[^\w%.-])?zhuanqian/adall\.js -# ?method=baidu.ting.commercial.tactics& (easylistchina+easylist.txt: 1247) +# ?method=baidu.ting.commercial.tactics& (easylistchina.txt: 1261) /.*\?method=baidu\.ting\.commercial\.tactics& -# :88/lighttpd/default/ (easylistchina+easylist.txt: 1246) +# :88/lighttpd/default/ (easylistchina.txt: 1260) /.*:88/lighttpd/default/ -# /yythems/images/tuiguang.png (easylistchina+easylist.txt: 1245) +# /yythems/images/tuiguang.png (easylistchina.txt: 1259) /(.*/)?yythems/images/tuiguang\.png -# /yythems/images/1213.gif (easylistchina+easylist.txt: 1244) +# /yythems/images/1213.gif (easylistchina.txt: 1258) /(.*/)?yythems/images/1213\.gif -# /ysm/ewdna/* (easylistchina+easylist.txt: 1243) +# /ysm/ewdna/* (easylistchina.txt: 1257) /(.*/)?ysm/ewdna/.* -# /ysm.ezprice.net/* (easylistchina+easylist.txt: 1242) +# /ysm.ezprice.net/* (easylistchina.txt: 1256) /(.*/)?ysm\.ezprice\.net/.* ysm.ezprice.net/.* -# /youxituoluo/images/text_top_ (easylistchina+easylist.txt: 1241) +# /youxituoluo/images/text_top_ (easylistchina.txt: 1255) /(.*/)?youxituoluo/images/text_top_ -# /xiao1234.com/ads/* (easylistchina+easylist.txt: 1237) +# /xiao1234.com/ads/* (easylistchina.txt: 1251) /(.*/)?xiao1234\.com/ads/.* xiao1234.com/ads/.* -# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina+easylist.txt: 1234) +# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina.txt: 1248) /(.*/)?www\.soft4fun\.net/wp-content/uploads/.*_banner www.soft4fun.net/wp-content/uploads/.*_banner -# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina+easylist.txt: 1233) +# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina.txt: 1247) /(.*/)?www\.kocpc\.com\.tw/wp-content/uploads/.*\.gif www.kocpc.com.tw/wp-content/uploads/.*\.gif -# /wangyuedeux/imgs/youlian.png (easylistchina+easylist.txt: 1228) +# /wangyuedeux/imgs/youlian.png (easylistchina.txt: 1242) /(.*/)?wangyuedeux/imgs/youlian\.png -# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina+easylist.txt: 1227) +# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina.txt: 1241) /(.*/)?wangyuedeux/imgs/wangzhuano\.jpg -# /vmind.qqvideo.tc.qq.com^ (easylistchina+easylist.txt: 1226) +# /vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1240) /(.*/)?vmind\.qqvideo\.tc\.qq\.com[^\w%.-] vmind.qqvideo.tc.qq.com -# /uniontgm.cmb. (easylistchina+easylist.txt: 1224) +# /uniontgm.cmb. (easylistchina.txt: 1238) /(.*/)?uniontgm\.cmb\. uniontgm.cmb.*. -# /tonghuacun/skin/zxf/kan_hree.js (easylistchina+easylist.txt: 1222) +# /tonghuacun/skin/zxf/kan_hree.js (easylistchina.txt: 1236) /(.*/)?tonghuacun/skin/zxf/kan_hree\.js -# /sznews/images/bbsgg (easylistchina+easylist.txt: 1219) +# /sznews/images/bbsgg (easylistchina.txt: 1233) /(.*/)?sznews/images/bbsgg -# /static/btmeegg/* (easylistchina+easylist.txt: 1216) +# /static/btmeegg/* (easylistchina.txt: 1230) /(.*/)?static/btmeegg/.* -# /sinaLoginReward2014_comment. (easylistchina+easylist.txt: 1212) +# /sinaLoginReward2014_comment. (easylistchina.txt: 1227) /(.*/)?sinaLoginReward2014_comment\. -# /sinaLoginReward2014. (easylistchina+easylist.txt: 1211) +# /sinaLoginReward2014. (easylistchina.txt: 1226) /(.*/)?sinaLoginReward2014\. sinaLoginReward2014.*. -# /sc_ifeng/* (easylistchina+easylist.txt: 1209) +# /sc_ifeng/* (easylistchina.txt: 1224) /(.*/)?sc_ifeng/.* -# /pub/news/gzrb/*$script (easylistchina+easylist.txt: 1207) +# /pub/news/gzrb/*$script (easylistchina.txt: 1222) /(.*/)?pub/news/gzrb/.* -# /opbb/obpp.tpl (easylistchina+easylist.txt: 1205) +# /opbb/obpp.tpl (easylistchina.txt: 1220) /(.*/)?opbb/obpp\.tpl -# /opbb/float.js (easylistchina+easylist.txt: 1204) +# /opbb/float.js (easylistchina.txt: 1219) /(.*/)?opbb/float\.js -# /nowscore/ad/* (easylistchina+easylist.txt: 1203) +# /nowscore/ad/* (easylistchina.txt: 1218) /(.*/)?nowscore/ad/.* -# /nimabdd_1010/*baidu (easylistchina+easylist.txt: 1202) +# /nimabdd_1010/*baidu (easylistchina.txt: 1217) /(.*/)?nimabdd_1010/.*baidu -# /newhuagg/index_ (easylistchina+easylist.txt: 1200) +# /newhuagg/index_ (easylistchina.txt: 1215) /(.*/)?newhuagg/index_ -# /newhuagg/*_right (easylistchina+easylist.txt: 1199) +# /newhuagg/*_right (easylistchina.txt: 1214) /(.*/)?newhuagg/.*_right -# /nddailyfile/webadv/* (easylistchina+easylist.txt: 1198) +# /nddailyfile/webadv/* (easylistchina.txt: 1213) /(.*/)?nddailyfile/webadv/.* -# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina+easylist.txt: 1196) +# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina.txt: 1211) /(.*/)?msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d\.jpg -# /moneymaker/js/videoplayer.js (easylistchina+easylist.txt: 1195) +# /moneymaker/js/videoplayer.js (easylistchina.txt: 1210) /(.*/)?moneymaker/js/videoplayer\.js -# /moneymaker/js/tmpp.js (easylistchina+easylist.txt: 1194) +# /moneymaker/js/tmpp.js (easylistchina.txt: 1209) /(.*/)?moneymaker/js/tmpp\.js -# /moneymaker/js/kppp.js (easylistchina+easylist.txt: 1193) +# /moneymaker/js/kppp.js (easylistchina.txt: 1208) /(.*/)?moneymaker/js/kppp\.js -# /moneymaker/js/fkpp.js (easylistchina+easylist.txt: 1192) +# /moneymaker/js/fkpp.js (easylistchina.txt: 1207) /(.*/)?moneymaker/js/fkpp\.js -# /moneymaker/images/*.gif (easylistchina+easylist.txt: 1191) +# /moneymaker/images/*.gif (easylistchina.txt: 1206) /(.*/)?moneymaker/images/.*\.gif -# /modules/video/player/nuevo/midroll.php? (easylistchina+easylist.txt: 1190) +# /modules/video/player/nuevo/midroll.php? (easylistchina.txt: 1205) /(.*/)?modules/video/player/nuevo/midroll\.php\? -# /kocpc.myweb.hinet.net^ (easylistchina+easylist.txt: 1186) +# /kocpc.myweb.hinet.net^ (easylistchina.txt: 1202) /(.*/)?kocpc\.myweb\.hinet\.net[^\w%.-] kocpc.myweb.hinet.net -# /images/amsun100.png (easylistchina+easylist.txt: 1164) +# /images/amsun100.png (easylistchina.txt: 1182) /(.*/)?images/amsun100\.png -# /ifengRotatorAd.js (easylistchina+easylist.txt: 1158) +# /ifengRotatorAd.js (easylistchina.txt: 1176) /(.*/)?ifengRotatorAd\.js ifengRotatorAd.js*. -# /html/taobao_focus_ (easylistchina+easylist.txt: 1157) +# /html/taobao_focus_ (easylistchina.txt: 1175) /(.*/)?html/taobao_focus_ -# /homead/*_appledaily_bg. (easylistchina+easylist.txt: 1155) +# /homead/*_appledaily_bg. (easylistchina.txt: 1173) /(.*/)?homead/.*_appledaily_bg\. -# /gyw_index/*/images/ad_ (easylistchina+easylist.txt: 1154) +# /gyw_index/*/images/ad_ (easylistchina.txt: 1172) /(.*/)?gyw_index/.*/images/ad_ -# /game/aplus/pptv/* (easylistchina+easylist.txt: 1149) +# /game/aplus/pptv/* (easylistchina.txt: 1167) /(.*/)?game/aplus/pptv/.* -# /front/adv/getpmadvlist (easylistchina+easylist.txt: 1148) +# /front/adv/getpmadvlist (easylistchina.txt: 1166) /(.*/)?front/adv/getpmadvlist -# /dy_44jjss/* (easylistchina+easylist.txt: 1144) -/(.*/)?dy_44jjss/.* -# /dhfun_ad/* (easylistchina+easylist.txt: 1143) +# /dhfun_ad/* (easylistchina.txt: 1163) /(.*/)?dhfun_ad/.* -# /comiis_yccs/ads/* (easylistchina+easylist.txt: 1138) +# /comiis_yccs/ads/* (easylistchina.txt: 1158) /(.*/)?comiis_yccs/ads/.* -# /cari/daybanner/* (easylistchina+easylist.txt: 1137) +# /cari/daybanner/* (easylistchina.txt: 1157) /(.*/)?cari/daybanner/.* -# /cari/banner/* (easylistchina+easylist.txt: 1136) +# /cari/banner/* (easylistchina.txt: 1156) /(.*/)?cari/banner/.* -# /avshow_cn1.gif (easylistchina+easylist.txt: 1129) +# /avshow_cn1.gif (easylistchina.txt: 1149) /(.*/)?avshow_cn1\.gif -# /Atemplate/dd_1010/baidu (easylistchina+easylist.txt: 1125) +# /Atemplate/dd_1010/baidu (easylistchina.txt: 1146) /(.*/)?Atemplate/dd_1010/baidu -# /Aemplate/dd_1010/baidu (easylistchina+easylist.txt: 1121) +# /Aemplate/dd_1010/baidu (easylistchina.txt: 1142) /(.*/)?Aemplate/dd_1010/baidu -# /adscript/crazyad.js (easylistchina+easylist.txt: 1119) +# /adscript/crazyad.js (easylistchina.txt: 1140) /(.*/)?adscript/crazyad\.js -# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina+easylist.txt: 1115) +# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina.txt: 1139) /(.*/)?Addsa\.dsj/Bsdd_1010/.*Baidu Addsa.dsj/Bsdd_1010/.*Baidu -# /adcg/* (easylistchina+easylist.txt: 1114) +# /adcg/* (easylistchina.txt: 1138) /(.*/)?adcg/.* -# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina+easylist.txt: 1111) +# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina.txt: 1135) /(.*/)?a83b3cdeacac5a503717469ca5084ebc\. a83b3cdeacac5a503717469ca5084ebc.*. -# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina+easylist.txt: 1106) +# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina.txt: 1130) /(.*/)?934b2bc8de85e32ae7588f2eb955ee36\. 934b2bc8de85e32ae7588f2eb955ee36.*. -# /52meiju_7 (easylistchina+easylist.txt: 1105) +# /52meiju_7 (easylistchina.txt: 1129) /(.*/)?52meiju_7 -# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina+easylist.txt: 1104) +# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina.txt: 1128) /(.*/)?435f1c6f9f6b545254a00e426b9aeae1\. 435f1c6f9f6b545254a00e426b9aeae1.*. -# /404.safedog.cn/sitedog_stat_new.html (easylistchina+easylist.txt: 1103) +# /404.safedog.cn/sitedog_stat_new.html (easylistchina.txt: 1127) /(.*/)?404\.safedog\.cn/sitedog_stat_new\.html 404.safedog.cn/sitedog_stat_new\.html -# /2tu/heisiwang.js (easylistchina+easylist.txt: 1102) +# /2tu/heisiwang.js (easylistchina.txt: 1126) /(.*/)?2tu/heisiwang\.js -# /2tu/ads/* (easylistchina+easylist.txt: 1101) +# /2tu/ads/* (easylistchina.txt: 1125) /(.*/)?2tu/ads/.* -# /200804ad/* (easylistchina+easylist.txt: 1099) +# /200804ad/* (easylistchina.txt: 1123) /(.*/)?200804ad/.* -# /18touch-guanggao. (easylistchina+easylist.txt: 1098) +# /18touch-guanggao. (easylistchina.txt: 1122) /(.*/)?18touch-guanggao\. 18touch-guanggao.*. -# /10jqka_info/html/ad_ (easylistchina+easylist.txt: 1097) +# /10jqka_info/html/ad_ (easylistchina.txt: 1121) /(.*/)?10jqka_info/html/ad_ -# .niusnews.com/upload/banners/ (easylistchina+easylist.txt: 1096) +# .niusnews.com/upload/banners/ (easylistchina.txt: 1120) /.*\.niusnews\.com/upload/banners/ .*.niusnews.com/upload/banners/ -# ||pacd.3conline.com^ (easylistchina+easylist.txt: 1090) -.pacd.3conline.com -# .adsame.libaclub.com^ (easylistchina+easylist.txt: 1089) +# .adsame.libaclub.com^ (easylistchina.txt: 1113) /.*\.adsame\.libaclub\.com[^\w%.-] .*.adsame.libaclub.com -# .543evv.com/js/config.js (easylistchina+easylist.txt: 1088) +# .543evv.com/js/config.js (easylistchina.txt: 1112) /.*\.543evv\.com/js/config\.js .*.543evv.com/js/config\.js -# ||zhubajie.com/?fromcode=$popup (easylistchina+easylist.txt: 1086) +# ||zhubajie.com/?fromcode=$popup (easylistchina.txt: 1110) .zhubajie.com/\?fromcode= -# ||yy18.info/yyrethanks18.$popup (easylistchina+easylist.txt: 1085) +# ||yy18.info/yyrethanks18.$popup (easylistchina.txt: 1109) .yy18.info/yyrethanks18\. -# ||vnet.cn^*.html?$popup,third-party (easylistchina+easylist.txt: 1082) +# ||vnet.cn^*.html?$popup,third-party (easylistchina.txt: 1106) .vnet.cn/.*\.html\? -# ||uc8.cc/award/$popup (easylistchina+easylist.txt: 1081) -.uc8.cc/award/ -# ||todayapp.cc^$popup,third-party (easylistchina+easylist.txt: 1080) +# ||todayapp.cc^$popup,third-party (easylistchina.txt: 1105) .todayapp.cc -# ||t-movies.com.tw/pop.asp$popup (easylistchina+easylist.txt: 1078) +# ||t-movies.com.tw/pop.asp$popup (easylistchina.txt: 1102) .t-movies.com.tw/pop\.asp -# ||son999.com^$popup,third-party (easylistchina+easylist.txt: 1077) +# ||son999.com^$popup,third-party (easylistchina.txt: 1101) .son999.com -# ||sohu.com/i/?pvid=$popup (easylistchina+easylist.txt: 1076) +# ||sohu.com/i/?pvid=$popup (easylistchina.txt: 1100) .sohu.com/i/\?pvid= -# ||smartor.org/iclk/?zoneid=$popup (easylistchina+easylist.txt: 1075) +# ||smartor.org/iclk/?zoneid=$popup (easylistchina.txt: 1099) .smartor.org/iclk/\?zoneid= -# ||qidian.com/showavd.$popup (easylistchina+easylist.txt: 1074) +# ||qidian.com/showavd.$popup (easylistchina.txt: 1098) .qidian.com/showavd\. -# ||moe.005.tv^$popup,third-party (easylistchina+easylist.txt: 1072) +# ||moe.005.tv^$popup,third-party (easylistchina.txt: 1096) .moe.005.tv -# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina+easylist.txt: 1070) +# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina.txt: 1094) .kuai.xunlei.com/do_e_mu\?data= -# ||jjwxc.net/jjad*.html$popup (easylistchina+easylist.txt: 1068) +# ||jjwxc.net/jjad*.html$popup (easylistchina.txt: 1092) .jjwxc.net/jjad.*\.html -# ||iswan.cn^$popup,third-party (easylistchina+easylist.txt: 1067) +# ||iswan.cn^$popup,third-party (easylistchina.txt: 1091) .iswan.cn -# ||iqiyi.com/track$popup (easylistchina+easylist.txt: 1066) +# ||iqiyi.com/track$popup (easylistchina.txt: 1090) .iqiyi.com/track -# ||ihualun.com^$popup (easylistchina+easylist.txt: 1065) +# ||ihualun.com^$popup (easylistchina.txt: 1089) .ihualun.com -# ||hinet.net/product/promotion/$popup (easylistchina+easylist.txt: 1064) +# ||hinet.net/product/promotion/$popup (easylistchina.txt: 1088) .hinet.net/product/promotion/ -# ||gxp.cc^$popup,third-party (easylistchina+easylist.txt: 1063) -.gxp.cc -# ||greenet.cn^*_popu_$popup (easylistchina+easylist.txt: 1062) +# ||greenet.cn^*_popu_$popup (easylistchina.txt: 1087) .greenet.cn/.*_popu_ -# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina+easylist.txt: 1061) +# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina.txt: 1086) .gd.ct10000.com/.*/push/ -# ||gd.189.cn^*/push/$popup,third-party (easylistchina+easylist.txt: 1060) +# ||gd.189.cn^*/push/$popup,third-party (easylistchina.txt: 1085) .gd.189.cn/.*/push/ -# ||gd.189.cn/push/$popup,third-party (easylistchina+easylist.txt: 1059) +# ||gd.189.cn/push/$popup,third-party (easylistchina.txt: 1084) .gd.189.cn/push/ -# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina+easylist.txt: 1058) +# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina.txt: 1083) .gd.189.cn/gz/promotion/ -# ||gd.189.cn/ad/$popup,third-party (easylistchina+easylist.txt: 1057) +# ||gd.189.cn/ad/$popup,third-party (easylistchina.txt: 1082) .gd.189.cn/ad/ -# ||dhqp68.com^$popup,third-party (easylistchina+easylist.txt: 1056) +# ||gamer.com.tw/adcounter.$popup (easylistchina.txt: 1081) +.gamer.com.tw/adcounter\. +# ||dhqp68.com^$popup,third-party (easylistchina.txt: 1080) .dhqp68.com -# ||cnyjk.com^$popup,third-party (easylistchina+easylist.txt: 1055) -.cnyjk.com -# ||c.admaster.com.cn^$popup (easylistchina+easylist.txt: 1054) +# ||c.admaster.com.cn^$popup (easylistchina.txt: 1079) .c.admaster.com.cn -# ||ark.letv.com/t?$popup (easylistchina+easylist.txt: 1053) +# ||baidu.com/baidu.php?url=$popup (easylistchina.txt: 1078) +.baidu.com/baidu\.php\?url= +# ||baidu.com/adrc.$popup (easylistchina.txt: 1077) +.baidu.com/adrc\. +# ||ark.letv.com/t?$popup (easylistchina.txt: 1076) .ark.letv.com/t\? -# ||aiwanma99.com^$popup (easylistchina+easylist.txt: 1052) +# ||aiwanma99.com^$popup (easylistchina.txt: 1075) .aiwanma99.com -# ||ad.189so.cn^$popup (easylistchina+easylist.txt: 1051) +# ||ad.189so.cn^$popup (easylistchina.txt: 1074) .ad.189so.cn -# ||9100300.com^$popup (easylistchina+easylist.txt: 1049) +# ||9100300.com^$popup (easylistchina.txt: 1072) .9100300.com -# ||133gp.com^$popup (easylistchina+easylist.txt: 1047) +# ||133gp.com^$popup (easylistchina.txt: 1070) .133gp.com -# ||093game.com^$popup,third-party (easylistchina+easylist.txt: 1045) +# ||093game.com^$popup,third-party (easylistchina.txt: 1068) .093game.com -# /pushstart.aspx?$popup,third-party (easylistchina+easylist.txt: 1043) +# /pushstart.aspx?$popup,third-party (easylistchina.txt: 1066) /(.*/)?pushstart\.aspx\? -# /pushportal/PushPortalServer$popup,third-party (easylistchina+easylist.txt: 1042) +# /pushportal/PushPortalServer$popup,third-party (easylistchina.txt: 1065) /(.*/)?pushportal/PushPortalServer -# /portalwlanad/pages/*$popup (easylistchina+easylist.txt: 1041) +# /portalwlanad/pages/*$popup (easylistchina.txt: 1064) /(.*/)?portalwlanad/pages/.* -# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina+easylist.txt: 1039) +# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina.txt: 1062) /(.*/)?BadwebRemindPage\.aspx\?param= -# .com/?Intr=$popup,third-party (easylistchina+easylist.txt: 1037) +# .com/?Intr=$popup,third-party (easylistchina.txt: 1060) /.*\.com/\?Intr= .*.com/\?Intr= -# .com/?aff=$popup,third-party (easylistchina+easylist.txt: 1036) +# .com/?aff=$popup,third-party (easylistchina.txt: 1059) /.*\.com/\?aff= .*.com/\?aff= -# .189.gd^*.html?p=$popup,third-party (easylistchina+easylist.txt: 1035) +# .189.gd^*.html?p=$popup,third-party (easylistchina.txt: 1058) /.*\.189\.gd[^\w%.-].*\.html\?p= .*.189.gd/.*\.html\?p= -# ||zytwq.net^$third-party (easylistchina+easylist.txt: 1033) +# ||zytwq.net^$third-party (easylistchina.txt: 1056) .zytwq.net -# ||ztdsp.com^$third-party (easylistchina+easylist.txt: 1032) +# ||ztdsp.com^$third-party (easylistchina.txt: 1055) .ztdsp.com -# ||zp265.com^$third-party (easylistchina+easylist.txt: 1031) +# ||zp265.com^$third-party (easylistchina.txt: 1054) .zp265.com -# ||zp22938576.com^ (easylistchina+easylist.txt: 1030) +# ||zp22938576.com^ (easylistchina.txt: 1053) .zp22938576.com -# ||zj66.net^$third-party (easylistchina+easylist.txt: 1029) +# ||zj66.net^$third-party (easylistchina.txt: 1052) .zj66.net -# ||zgyiyi.com^$third-party (easylistchina+easylist.txt: 1028) +# ||zgyiyi.com^$third-party (easylistchina.txt: 1051) .zgyiyi.com -# ||zgunion.cn^ (easylistchina+easylist.txt: 1027) +# ||zgunion.cn^ (easylistchina.txt: 1050) .zgunion.cn -# ||zgksb.com^ (easylistchina+easylist.txt: 1026) +# ||zgksb.com^ (easylistchina.txt: 1049) .zgksb.com -# ||ze5.com^$third-party (easylistchina+easylist.txt: 1025) +# ||ze5.com^$third-party (easylistchina.txt: 1048) .ze5.com -# ||zd6789.com^$third-party (easylistchina+easylist.txt: 1024) +# ||zd6789.com^$third-party (easylistchina.txt: 1047) .zd6789.com -# ||zampdsp.com^$third-party (easylistchina+easylist.txt: 1023) +# ||zampdsp.com^$third-party (easylistchina.txt: 1046) .zampdsp.com -# ||zampda.net^$third-party (easylistchina+easylist.txt: 1022) +# ||zampda.net^$third-party (easylistchina.txt: 1045) .zampda.net -# ||yzxls.com^$third-party (easylistchina+easylist.txt: 1021) +# ||yzxls.com^$third-party (easylistchina.txt: 1044) .yzxls.com -# ||yyp17.com^ (easylistchina+easylist.txt: 1020) +# ||yyp17.com^ (easylistchina.txt: 1043) .yyp17.com -# ||yxdyk.com^$script,third-party (easylistchina+easylist.txt: 1019) +# ||yxdyk.com^$script,third-party (easylistchina.txt: 1042) .yxdyk.com -# ||yunfanlm.com^$third-party (easylistchina+easylist.txt: 1018) +# ||yunfanlm.com^$third-party (easylistchina.txt: 1041) .yunfanlm.com -# ||yule8.net^ (easylistchina+easylist.txt: 1017) +# ||yule8.net^ (easylistchina.txt: 1040) .yule8.net -# ||ysm.ezprice.net^$third-party (easylistchina+easylist.txt: 1016) +# ||yuanhsu.com^$third-party (easylistchina.txt: 1039) +.yuanhsu.com +# ||ysm.ezprice.net^$third-party (easylistchina.txt: 1038) .ysm.ezprice.net -# ||yqw88.com^ (easylistchina+easylist.txt: 1015) +# ||yqw88.com^ (easylistchina.txt: 1037) .yqw88.com -# ||yoyi.tv^$third-party (easylistchina+easylist.txt: 1014) +# ||yoyi.tv^$third-party (easylistchina.txt: 1036) .yoyi.tv -# ||yoyi.com.cn^$third-party (easylistchina+easylist.txt: 1013) +# ||yoyi.com.cn^$third-party (easylistchina.txt: 1035) .yoyi.com.cn -# ||youxicool.net^$third-party (easylistchina+easylist.txt: 1012) +# ||youxicool.net^$third-party (easylistchina.txt: 1034) .youxicool.net -# ||youle55.com^$third-party (easylistchina+easylist.txt: 1011) +# ||youle55.com^$third-party (easylistchina.txt: 1033) .youle55.com -# ||youbet8.com^$third-party (easylistchina+easylist.txt: 1010) +# ||youbet8.com^$third-party (easylistchina.txt: 1032) .youbet8.com -# ||yongv.com^$third-party (easylistchina+easylist.txt: 1009) +# ||yongv.com^$third-party (easylistchina.txt: 1031) .yongv.com -# ||ymcqb.com^ (easylistchina+easylist.txt: 1008) +# ||ymcqb.com^ (easylistchina.txt: 1030) .ymcqb.com -# ||yk0712.com^ (easylistchina+easylist.txt: 1007) +# ||yk0712.com^ (easylistchina.txt: 1029) .yk0712.com -# ||yiwad.com^$third-party (easylistchina+easylist.txt: 1006) +# ||yiwad.com^$third-party (easylistchina.txt: 1028) .yiwad.com -# ||yiqifa.com^*.js$third-party (easylistchina+easylist.txt: 1005) +# ||yiqifa.com^*.js$third-party (easylistchina.txt: 1027) .yiqifa.com/.*\.js -# ||yiqifa.com^$subdocument (easylistchina+easylist.txt: 1004) +# ||yiqifa.com^$subdocument (easylistchina.txt: 1026) .yiqifa.com -# ||yiiwoo.com^$third-party (easylistchina+easylist.txt: 1003) +# ||yiiwoo.com^$third-party (easylistchina.txt: 1025) .yiiwoo.com -# ||yigao.com^$third-party (easylistchina+easylist.txt: 1002) +# ||yigao.com^$third-party (easylistchina.txt: 1024) .yigao.com -# ||ye3.com^$third-party (easylistchina+easylist.txt: 1001) +# ||ye3.com^$third-party (easylistchina.txt: 1023) .ye3.com -# ||ydcpc.com^$third-party (easylistchina+easylist.txt: 1000) +# ||ydcpc.com^$third-party (easylistchina.txt: 1022) .ydcpc.com -# ||xzyituo.com^ (easylistchina+easylist.txt: 999) +# ||xzyituo.com^ (easylistchina.txt: 1021) .xzyituo.com -# ||xzdchl.com^$third-party (easylistchina+easylist.txt: 998) +# ||xzdchl.com^$third-party (easylistchina.txt: 1020) .xzdchl.com -# ||xxad.cc^ (easylistchina+easylist.txt: 997) +# ||xxad.cc^ (easylistchina.txt: 1019) .xxad.cc -# ||xtxa.net^ (easylistchina+easylist.txt: 996) +# ||xtxa.net^ (easylistchina.txt: 1018) .xtxa.net -# ||xsu.cc^$third-party (easylistchina+easylist.txt: 995) +# ||xsu.cc^$third-party (easylistchina.txt: 1017) .xsu.cc -# ||xp3366.com^$third-party (easylistchina+easylist.txt: 994) +# ||xp3366.com^$third-party (easylistchina.txt: 1016) .xp3366.com -# ||xhmrv.com^ (easylistchina+easylist.txt: 993) +# ||xhmrv.com^ (easylistchina.txt: 1015) .xhmrv.com -# ||xe2c.com^$third-party (easylistchina+easylist.txt: 992) +# ||xe2c.com^$third-party (easylistchina.txt: 1014) .xe2c.com -# ||xdwan.com^$third-party (easylistchina+easylist.txt: 991) +# ||xdwan.com^$third-party (easylistchina.txt: 1013) .xdwan.com -# ||xcy8.com^ (easylistchina+easylist.txt: 990) +# ||xcy8.com^ (easylistchina.txt: 1012) .xcy8.com -# ||xchgx.com^ (easylistchina+easylist.txt: 989) +# ||xchgx.com^ (easylistchina.txt: 1011) .xchgx.com -# ||xajx.com^$third-party (easylistchina+easylist.txt: 988) +# ||xajx.com^$third-party (easylistchina.txt: 1010) .xajx.com -# ||xabaitai.com^ (easylistchina+easylist.txt: 987) +# ||xabaitai.com^ (easylistchina.txt: 1009) .xabaitai.com -# ||xa9t.com^ (easylistchina+easylist.txt: 986) +# ||xa9t.com^ (easylistchina.txt: 1008) .xa9t.com -# ||wudang05.com^$third-party (easylistchina+easylist.txt: 985) +# ||x9377a.com^ (easylistchina.txt: 1007) +.x9377a.com +# ||wudang05.com^$third-party (easylistchina.txt: 1006) .wudang05.com -# ||ws341.com^ (easylistchina+easylist.txt: 984) +# ||ws341.com^ (easylistchina.txt: 1005) .ws341.com -# ||wqzyt.net^$third-party (easylistchina+easylist.txt: 983) +# ||wqzyt.net^$third-party (easylistchina.txt: 1004) .wqzyt.net -# ||wqsph.net^ (easylistchina+easylist.txt: 982) +# ||wqsph.net^ (easylistchina.txt: 1003) .wqsph.net -# ||wo685.com^$third-party (easylistchina+easylist.txt: 981) +# ||wo685.com^$third-party (easylistchina.txt: 1002) .wo685.com -# ||wit.qq.com^$third-party (easylistchina+easylist.txt: 980) +# ||wit.qq.com^$third-party (easylistchina.txt: 1001) .wit.qq.com -# ||winvestern.com.cn^ (easylistchina+easylist.txt: 979) +# ||winvestern.com.cn^ (easylistchina.txt: 1000) .winvestern.com.cn -# ||widget.ezprice.com.tw^$third-party (easylistchina+easylist.txt: 978) +# ||widget.ezprice.com.tw^$third-party (easylistchina.txt: 999) .widget.ezprice.com.tw -# ||weizhanle.com^$third-party (easylistchina+easylist.txt: 977) +# ||weizhanle.com^$third-party (easylistchina.txt: 998) .weizhanle.com -# ||weddingeeos.com^$third-party (easylistchina+easylist.txt: 976) +# ||weddingeeos.com^$third-party (easylistchina.txt: 997) .weddingeeos.com -# ||weareqy.com^$third-party (easylistchina+easylist.txt: 975) +# ||weareqy.com^$third-party (easylistchina.txt: 996) .weareqy.com -# ||wdzsb.com.cn^ (easylistchina+easylist.txt: 974) +# ||wdzsb.com.cn^ (easylistchina.txt: 995) .wdzsb.com.cn -# ||w65p.com^ (easylistchina+easylist.txt: 973) +# ||w65p.com^ (easylistchina.txt: 994) .w65p.com -# ||vsnoon.com^$third-party (easylistchina+easylist.txt: 972) +# ||vsnoon.com^$third-party (easylistchina.txt: 993) .vsnoon.com -# ||vpie.net^$third-party (easylistchina+easylist.txt: 971) +# ||vpie.net^$third-party (easylistchina.txt: 992) .vpie.net -# ||visadd.com^$third-party (easylistchina+easylist.txt: 970) +# ||visadd.com^$third-party (easylistchina.txt: 991) .visadd.com -# ||victorjx.com^ (easylistchina+easylist.txt: 969) +# ||victorjx.com^ (easylistchina.txt: 990) .victorjx.com -# ||vf5c.com^$third-party (easylistchina+easylist.txt: 968) +# ||vf5c.com^$third-party (easylistchina.txt: 989) .vf5c.com -# ||vamaker.com^$third-party (easylistchina+easylist.txt: 967) +# ||vamaker.com^$third-party (easylistchina.txt: 988) .vamaker.com -# ||v707070.com^ (easylistchina+easylist.txt: 966) +# ||v707070.com^ (easylistchina.txt: 987) .v707070.com -# ||v-links.net^$third-party (easylistchina+easylist.txt: 965) +# ||v-links.net^$third-party (easylistchina.txt: 986) .v-links.net -# ||urlad.com.tw^$third-party (easylistchina+easylist.txt: 964) +# ||urlad.com.tw^$third-party (easylistchina.txt: 985) .urlad.com.tw -# ||uoyrsd.com^ (easylistchina+easylist.txt: 963) +# ||uoyrsd.com^ (easylistchina.txt: 984) .uoyrsd.com -# ||unionsky2.cn^$third-party (easylistchina+easylist.txt: 962) +# ||unionsky2.cn^$third-party (easylistchina.txt: 983) .unionsky2.cn -# ||unionsky.cn^$third-party (easylistchina+easylist.txt: 961) +# ||unionsky.cn^$third-party (easylistchina.txt: 982) .unionsky.cn -# ||unionli.com^$third-party (easylistchina+easylist.txt: 960) +# ||unionli.com^$third-party (easylistchina.txt: 981) .unionli.com -# ||unionbig.com^$third-party (easylistchina+easylist.txt: 959) +# ||unionbig.com^$third-party (easylistchina.txt: 980) .unionbig.com -# ||union009.com^$third-party (easylistchina+easylist.txt: 958) +# ||union009.com^$third-party (easylistchina.txt: 979) .union009.com -# ||union.$third-party (easylistchina+easylist.txt: 957) +# ||union.$third-party (easylistchina.txt: 978) .union.*. -# ||unimhk.com^$third-party (easylistchina+easylist.txt: 956) +# ||unimhk.com^$third-party (easylistchina.txt: 977) .unimhk.com -# ||ulink.cc^$third-party (easylistchina+easylist.txt: 955) +# ||ulink.cc^$third-party (easylistchina.txt: 976) .ulink.cc -# ||ujian.cc^$third-party (easylistchina+easylist.txt: 954) +# ||ujian.cc^$third-party (easylistchina.txt: 975) .ujian.cc -# ||ufstone.com^$third-party (easylistchina+easylist.txt: 953) +# ||ufstone.com^$third-party (easylistchina.txt: 974) .ufstone.com -# ||ueadlian.com^$third-party (easylistchina+easylist.txt: 952) +# ||ueadlian.com^$third-party (easylistchina.txt: 973) .ueadlian.com -# ||ubmcmm.baidustatic.com^ (easylistchina+easylist.txt: 951) +# ||ubmcmm.baidustatic.com^ (easylistchina.txt: 972) .ubmcmm.baidustatic.com -# ||u88.cn^$third-party (easylistchina+easylist.txt: 950) +# ||u88.cn^$third-party (easylistchina.txt: 971) .u88.cn -# ||u.801t.com^$third-party (easylistchina+easylist.txt: 949) +# ||u.801t.com^$third-party (easylistchina.txt: 970) .u.801t.com -# ||txkjad.com^$third-party (easylistchina+easylist.txt: 948) +# ||txkjad.com^$third-party (easylistchina.txt: 969) .txkjad.com -# ||twrank.com^$third-party (easylistchina+easylist.txt: 947) +# ||twrank.com^$third-party (easylistchina.txt: 968) .twrank.com -# ||twm.com.tw^$third-party (easylistchina+easylist.txt: 946) +# ||twm.com.tw^$third-party (easylistchina.txt: 967) .twm.com.tw -# ||twcczhu.com^$third-party (easylistchina+easylist.txt: 945) +# ||twcczhu.com^$third-party (easylistchina.txt: 966) .twcczhu.com -# ||twb98.com^$third-party (easylistchina+easylist.txt: 944) +# ||twb98.com^$third-party (easylistchina.txt: 965) .twb98.com -# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 943) +# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 964) .tw-cm.ysm.yahoo.com -# ||tukj.net^$third-party (easylistchina+easylist.txt: 942) +# ||tukj.net^$third-party (easylistchina.txt: 963) .tukj.net -# ||tripadvisor.com^$third-party (easylistchina+easylist.txt: 941) +# ||tripadvisor.com^$third-party (easylistchina.txt: 962) .tripadvisor.com -# ||toy9090.com^$third-party (easylistchina+easylist.txt: 940) +# ||toy9090.com^$third-party (easylistchina.txt: 961) .toy9090.com -# ||toufangke.com^$third-party (easylistchina+easylist.txt: 939) +# ||toufangke.com^$third-party (easylistchina.txt: 960) .toufangke.com -# ||top888.com^$third-party (easylistchina+easylist.txt: 938) +# ||top888.com^$third-party (easylistchina.txt: 959) .top888.com -# ||toourbb.com^ (easylistchina+easylist.txt: 937) +# ||toourbb.com^ (easylistchina.txt: 958) .toourbb.com -# ||tk001.com^$third-party (easylistchina+easylist.txt: 936) +# ||tk001.com^$third-party (easylistchina.txt: 957) .tk001.com -# ||tg.1155t.cn^ (easylistchina+easylist.txt: 935) +# ||tg.1155t.cn^ (easylistchina.txt: 956) .tg.1155t.cn -# ||tebaidu.cn^$third-party (easylistchina+easylist.txt: 934) +# ||tebaidu.cn^$third-party (easylistchina.txt: 955) .tebaidu.cn -# ||tdayi.com^ (easylistchina+easylist.txt: 933) +# ||tdayi.com^ (easylistchina.txt: 954) .tdayi.com -# ||tc600.com^ (easylistchina+easylist.txt: 932) +# ||tc600.com^ (easylistchina.txt: 953) .tc600.com -# ||tbjfw.com^$third-party (easylistchina+easylist.txt: 931) +# ||tbjfw.com^$third-party (easylistchina.txt: 952) .tbjfw.com -# ||taotu001.com^$third-party (easylistchina+easylist.txt: 930) +# ||taotu001.com^$third-party (easylistchina.txt: 951) .taotu001.com -# ||taobaoij.com: (easylistchina+easylist.txt: 929) -# ||tanchuang002.info^$third-party (easylistchina+easylist.txt: 926) +# ||taobaoij.com: (easylistchina.txt: 950) +# ||tanchuang002.info^$third-party (easylistchina.txt: 947) .tanchuang002.info -# ||tad.suning.com^ (easylistchina+easylist.txt: 925) +# ||tad.suning.com^ (easylistchina.txt: 946) .tad.suning.com -# ||taat00889.com^ (easylistchina+easylist.txt: 924) +# ||taat00889.com^ (easylistchina.txt: 945) .taat00889.com -# ||ta80.com^$third-party (easylistchina+easylist.txt: 923) +# ||ta80.com^$third-party (easylistchina.txt: 944) .ta80.com -# ||t70123.com^ (easylistchina+easylist.txt: 922) +# ||t70123.com^ (easylistchina.txt: 943) .t70123.com -# ||t3nlink.com^$third-party (easylistchina+easylist.txt: 921) +# ||t3nlink.com^$third-party (easylistchina.txt: 942) .t3nlink.com -# ||superfish.com^$third-party (easylistchina+easylist.txt: 920) +# ||superfish.com^$third-party (easylistchina.txt: 941) .superfish.com -# ||stnts.com^$third-party (easylistchina+easylist.txt: 919) +# ||sunjianhao.com^ (easylistchina.txt: 940) +.sunjianhao.com +# ||stnts.com^$third-party (easylistchina.txt: 939) .stnts.com -# ||star8.net^$third-party (easylistchina+easylist.txt: 918) +# ||star8.net^$third-party (easylistchina.txt: 938) .star8.net -# ||sstc360.com^ (easylistchina+easylist.txt: 917) +# ||sstc360.com^ (easylistchina.txt: 937) .sstc360.com -# ||sphwq.net^$third-party (easylistchina+easylist.txt: 916) +# ||sphwq.net^$third-party (easylistchina.txt: 936) .sphwq.net -# ||spcode.baidu.com^ (easylistchina+easylist.txt: 915) +# ||spcode.baidu.com^ (easylistchina.txt: 935) .spcode.baidu.com -# ||souacode.com^$third-party (easylistchina+easylist.txt: 914) +# ||souacode.com^$third-party (easylistchina.txt: 934) .souacode.com -# ||sosobook.cn^$third-party (easylistchina+easylist.txt: 913) +# ||sosobook.cn^$third-party (easylistchina.txt: 933) .sosobook.cn -# ||socdm.com^ (easylistchina+easylist.txt: 912) +# ||socdm.com^ (easylistchina.txt: 932) .socdm.com -# ||snyu.com^$third-party (easylistchina+easylist.txt: 911) +# ||snyu.com^$third-party (easylistchina.txt: 931) .snyu.com -# ||snxyf.com^$third-party (easylistchina+easylist.txt: 910) +# ||snxyf.com^$third-party (easylistchina.txt: 930) .snxyf.com -# ||sin114.com^$third-party (easylistchina+easylist.txt: 909) +# ||sin114.com^$third-party (easylistchina.txt: 929) .sin114.com -# ||si9377.com^ (easylistchina+easylist.txt: 908) +# ||si9377.com^ (easylistchina.txt: 928) .si9377.com -# ||show.kc.taotaosou.com^ (easylistchina+easylist.txt: 907) +# ||show.kc.taotaosou.com^ (easylistchina.txt: 927) .show.kc.taotaosou.com -# ||sharele.cn^$third-party (easylistchina+easylist.txt: 906) +# ||sharele.cn^$third-party (easylistchina.txt: 926) .sharele.cn -# ||sharedaddomain.com^ (easylistchina+easylist.txt: 905) +# ||sharedaddomain.com^ (easylistchina.txt: 925) .sharedaddomain.com -# ||sgbfjs.info^ (easylistchina+easylist.txt: 904) +# ||sgbfjs.info^ (easylistchina.txt: 924) .sgbfjs.info -# ||sexy-more.com^$third-party (easylistchina+easylist.txt: 903) +# ||sexy-more.com^$third-party (easylistchina.txt: 923) .sexy-more.com -# ||sales-frontier.com^$third-party (easylistchina+easylist.txt: 902) +# ||sales-frontier.com^$third-party (easylistchina.txt: 922) .sales-frontier.com -# ||s17cnzz.com^$third-party (easylistchina+easylist.txt: 901) +# ||s17cnzz.com^$third-party (easylistchina.txt: 921) .s17cnzz.com -# ||rwjfs.com^ (easylistchina+easylist.txt: 900) +# ||rwjfs.com^ (easylistchina.txt: 920) .rwjfs.com -# ||ruxianke.com^ (easylistchina+easylist.txt: 899) +# ||ruxianke.com^ (easylistchina.txt: 919) .ruxianke.com -# ||ruanwenclub.com^$third-party (easylistchina+easylist.txt: 898) +# ||ruanwenclub.com^$third-party (easylistchina.txt: 918) .ruanwenclub.com -# ||rsccs.com^$third-party (easylistchina+easylist.txt: 897) +# ||rsccs.com^$third-party (easylistchina.txt: 917) .rsccs.com -# ||re.taotaosou.com^ (easylistchina+easylist.txt: 896) +# ||re.taotaosou.com^ (easylistchina.txt: 916) .re.taotaosou.com -# ||rbc.cn^$third-party (easylistchina+easylist.txt: 895) +# ||rbc.cn^$third-party (easylistchina.txt: 915) .rbc.cn -# ||qucaigg.com^ (easylistchina+easylist.txt: 894) +# ||qucaigg.com^ (easylistchina.txt: 914) .qucaigg.com -# ||qubilou.com^$third-party (easylistchina+easylist.txt: 893) +# ||qubilou.com^$third-party (easylistchina.txt: 913) .qubilou.com -# ||qq4g.cn^$third-party (easylistchina+easylist.txt: 892) +# ||qtmojo.com^$third-party (easylistchina.txt: 912) +.qtmojo.com +# ||qq4g.cn^$third-party (easylistchina.txt: 911) .qq4g.cn -# ||qiyou.com^$third-party (easylistchina+easylist.txt: 891) +# ||qiyou.com^$third-party (easylistchina.txt: 910) .qiyou.com -# ||qiqiww.com^ (easylistchina+easylist.txt: 890) +# ||qiqiww.com^ (easylistchina.txt: 909) .qiqiww.com -# ||qidou.com^$third-party (easylistchina+easylist.txt: 889) +# ||qidou.com^$third-party (easylistchina.txt: 908) .qidou.com -# ||prohost.com.tw^$third-party (easylistchina+easylist.txt: 888) +# ||prohost.com.tw^$third-party (easylistchina.txt: 907) .prohost.com.tw -# ||pro.cn^$third-party (easylistchina+easylist.txt: 887) +# ||pro.cn^$third-party (easylistchina.txt: 906) .pro.cn -# ||poxzyu.com^$third-party (easylistchina+easylist.txt: 886) +# ||poxzyu.com^$third-party (easylistchina.txt: 905) .poxzyu.com -# ||pos.baidu.com^ (easylistchina+easylist.txt: 885) +# ||pos.baidu.com^ (easylistchina.txt: 904) .pos.baidu.com -# ||pdsjycm.com^ (easylistchina+easylist.txt: 884) +# ||pdsjycm.com^ (easylistchina.txt: 903) .pdsjycm.com -# ||pagechoice.net^$third-party (easylistchina+easylist.txt: 883) +# ||pagechoice.net^$third-party (easylistchina.txt: 902) .pagechoice.net -# ||p3tt.com^ (easylistchina+easylist.txt: 882) +# ||p3tt.com^ (easylistchina.txt: 901) .p3tt.com -# ||p0y.cn^*.swf (easylistchina+easylist.txt: 881) +# ||p0y.cn^*.swf (easylistchina.txt: 900) .p0y.cn/.*\.swf -# ||p0y.cn^$image (easylistchina+easylist.txt: 880) +# ||p0y.cn^$image (easylistchina.txt: 899) .p0y.cn -# ||onetad.com^$third-party (easylistchina+easylist.txt: 879) +# ||onetad.com^$third-party (easylistchina.txt: 898) .onetad.com -# ||okokw.com^$third-party (easylistchina+easylist.txt: 878) +# ||okokw.com^$third-party (easylistchina.txt: 897) .okokw.com -# ||okm918.com^ (easylistchina+easylist.txt: 877) +# ||okm918.com^ (easylistchina.txt: 896) .okm918.com -# ||oikxlcv.wang^ (easylistchina+easylist.txt: 876) +# ||oikxlcv.wang^ (easylistchina.txt: 895) .oikxlcv.wang -# ||octopuspop.com^$third-party (easylistchina+easylist.txt: 874) +# ||octopuspop.com^$third-party (easylistchina.txt: 893) .octopuspop.com -# ||o091i.com^$third-party (easylistchina+easylist.txt: 873) +# ||o091i.com^$third-party (easylistchina.txt: 892) .o091i.com -# ||notice.uchome.manyou.com^ (easylistchina+easylist.txt: 872) +# ||notice.uchome.manyou.com^ (easylistchina.txt: 891) .notice.uchome.manyou.com -# ||niuza.com^$image,subdocument,third-party (easylistchina+easylist.txt: 871) +# ||niuza.com^$image,subdocument,third-party (easylistchina.txt: 890) .niuza.com -# ||niuxgame77.com^ (easylistchina+easylist.txt: 870) +# ||niuxgame77.com^ (easylistchina.txt: 889) .niuxgame77.com -# ||niurenw.com^$third-party (easylistchina+easylist.txt: 869) +# ||niurenw.com^$third-party (easylistchina.txt: 888) .niurenw.com -# ||ni22.com^$third-party (easylistchina+easylist.txt: 868) +# ||ni22.com^$third-party (easylistchina.txt: 887) .ni22.com -# ||nextcps.com^ (easylistchina+easylist.txt: 867) +# ||nextcps.com^ (easylistchina.txt: 886) .nextcps.com -# ||news.tagtoo.co^$third-party (easylistchina+easylist.txt: 866) +# ||news.tagtoo.co^$third-party (easylistchina.txt: 885) .news.tagtoo.co -# ||myzwqwe12.com^$third-party (easylistchina+easylist.txt: 865) +# ||myzwqwe12.com^$third-party (easylistchina.txt: 884) .myzwqwe12.com -# ||mytanwan.com^$third-party (easylistchina+easylist.txt: 864) +# ||mytanwan.com^$third-party (easylistchina.txt: 883) .mytanwan.com -# ||mycctvmedia.com^$third-party (easylistchina+easylist.txt: 863) +# ||mycctvmedia.com^$third-party (easylistchina.txt: 882) .mycctvmedia.com -# ||mtxsk.com^$third-party (easylistchina+easylist.txt: 862) +# ||mtxsk.com^$third-party (easylistchina.txt: 881) .mtxsk.com -# ||mscimg.com^ (easylistchina+easylist.txt: 861) +# ||mscimg.com^ (easylistchina.txt: 880) .mscimg.com -# ||moogos.com^$third-party (easylistchina+easylist.txt: 860) +# ||moogos.com^$third-party (easylistchina.txt: 879) .moogos.com -# ||moodoocrv.com.cn^ (easylistchina+easylist.txt: 859) +# ||moodoocrv.com.cn^ (easylistchina.txt: 878) .moodoocrv.com.cn -# ||mobads.baidu.com^$third-party (easylistchina+easylist.txt: 858) +# ||mobads.baidu.com^$third-party (easylistchina.txt: 877) .mobads.baidu.com -# ||mlt01.com^ (easylistchina+easylist.txt: 857) +# ||mlt01.com^ (easylistchina.txt: 876) .mlt01.com -# ||miaozhen.com^$third-party (easylistchina+easylist.txt: 856) +# ||miaozhen.com^$third-party (easylistchina.txt: 875) .miaozhen.com -# ||mgwl668.com^$third-party (easylistchina+easylist.txt: 855) +# ||mgwl668.com^$third-party (easylistchina.txt: 874) .mgwl668.com -# ||mediav.com^$third-party (easylistchina+easylist.txt: 854) +# ||mediav.com^$third-party (easylistchina.txt: 873) .mediav.com -# ||media8.cn^$third-party (easylistchina+easylist.txt: 853) +# ||media8.cn^$third-party (easylistchina.txt: 872) .media8.cn -# ||mathtag.com^$third-party (easylistchina+easylist.txt: 852) +# ||mathtag.com^$third-party (easylistchina.txt: 871) .mathtag.com -# ||mathads.com^ (easylistchina+easylist.txt: 851) +# ||mathads.com^ (easylistchina.txt: 870) .mathads.com -# ||mamamiyu.com^$third-party (easylistchina+easylist.txt: 850) +# ||mamamiyu.com^$third-party (easylistchina.txt: 869) .mamamiyu.com -# ||mainbx.com^ (easylistchina+easylist.txt: 849) +# ||mainbx.com^ (easylistchina.txt: 868) .mainbx.com -# ||lzmm8.com^ (easylistchina+easylist.txt: 848) +# ||lzmm8.com^ (easylistchina.txt: 867) .lzmm8.com -# ||lx167.com^$third-party (easylistchina+easylist.txt: 847) +# ||lx167.com^$third-party (easylistchina.txt: 866) .lx167.com -# ||lv711.net^$third-party (easylistchina+easylist.txt: 846) +# ||lv711.net^$third-party (easylistchina.txt: 865) .lv711.net -# ||lnr1.com^$third-party (easylistchina+easylist.txt: 845) +# ||lnr1.com^$third-party (easylistchina.txt: 864) .lnr1.com -# ||lishuanghao.com^ (easylistchina+easylist.txt: 844) +# ||lishuanghao.com^ (easylistchina.txt: 863) .lishuanghao.com -# ||linkvans.com^$third-party (easylistchina+easylist.txt: 843) +# ||linkvans.com^$third-party (easylistchina.txt: 862) .linkvans.com -# ||lianmeng.360.cn^$third-party (easylistchina+easylist.txt: 842) -.lianmeng.360.cn -# ||lhzly.com^$third-party (easylistchina+easylist.txt: 841) +# ||lhzly.com^$third-party (easylistchina.txt: 860) .lhzly.com -# ||le4le.com^ (easylistchina+easylist.txt: 840) +# ||le4le.com^ (easylistchina.txt: 859) .le4le.com -# ||le123.cn^$third-party (easylistchina+easylist.txt: 839) +# ||le123.cn^$third-party (easylistchina.txt: 858) .le123.cn -# ||lajizhan.org^ (easylistchina+easylist.txt: 838) +# ||lajizhan.org^ (easylistchina.txt: 857) .lajizhan.org -# ||kuaizitech.com^$third-party (easylistchina+easylist.txt: 837) +# ||kuaizitech.com^$third-party (easylistchina.txt: 856) .kuaizitech.com -# ||ku9377.com^ (easylistchina+easylist.txt: 836) +# ||ku9377.com^ (easylistchina.txt: 855) .ku9377.com -# ||ku63.com^$third-party (easylistchina+easylist.txt: 835) +# ||ku63.com^$third-party (easylistchina.txt: 854) .ku63.com -# ||kmadou.com^ (easylistchina+easylist.txt: 834) +# ||kmadou.com^ (easylistchina.txt: 853) .kmadou.com -# ||kingwam.com^ (easylistchina+easylist.txt: 833) +# ||kingwam.com^ (easylistchina.txt: 852) .kingwam.com -# ||kiees.com^$image,subdocument,third-party (easylistchina+easylist.txt: 832) +# ||kiees.com^$image,subdocument,third-party (easylistchina.txt: 851) .kiees.com -# ||keyyou.net^ (easylistchina+easylist.txt: 831) +# ||keyyou.net^ (easylistchina.txt: 850) .keyyou.net -# ||keyrun.cn^$third-party (easylistchina+easylist.txt: 830) +# ||keyrun.cn^$third-party (easylistchina.txt: 849) .keyrun.cn -# ||kejet.$third-party (easylistchina+easylist.txt: 829) +# ||keydot.net^$third-party (easylistchina.txt: 848) +.keydot.net +# ||kejet.$third-party (easylistchina.txt: 847) .kejet.*. -# ||kefeng56.com^$third-party (easylistchina+easylist.txt: 828) +# ||kefeng56.com^$third-party (easylistchina.txt: 846) .kefeng56.com -# ||kdly.net^$third-party (easylistchina+easylist.txt: 827) +# ||kdly.net^$third-party (easylistchina.txt: 845) .kdly.net -# ||kaixinjiehun.com^$third-party (easylistchina+easylist.txt: 826) +# ||kaixinjiehun.com^$third-party (easylistchina.txt: 844) .kaixinjiehun.com -# ||jxjzny.com^ (easylistchina+easylist.txt: 825) +# ||jxjzny.com^ (easylistchina.txt: 843) .jxjzny.com -# ||jwqj.net^ (easylistchina+easylist.txt: 824) +# ||jwqj.net^ (easylistchina.txt: 842) .jwqj.net -# ||jusha.com^$third-party (easylistchina+easylist.txt: 823) +# ||jusha.com^$third-party (easylistchina.txt: 841) .jusha.com -# ||junnew.com^$third-party (easylistchina+easylist.txt: 822) +# ||junnew.com^$third-party (easylistchina.txt: 840) .junnew.com -# ||juandou.com^$third-party (easylistchina+easylist.txt: 821) +# ||juandou.com^$third-party (easylistchina.txt: 839) .juandou.com -# ||ju33.com^$third-party (easylistchina+easylist.txt: 820) +# ||ju33.com^$third-party (easylistchina.txt: 838) .ju33.com -# ||jtxh.net^$third-party (easylistchina+easylist.txt: 819) +# ||jtxh.net^$third-party (easylistchina.txt: 837) .jtxh.net -# ||jsyd139.com^$third-party (easylistchina+easylist.txt: 818) +# ||jsyd139.com^$third-party (easylistchina.txt: 836) .jsyd139.com -# ||jsmbaidu.com^$third-party (easylistchina+easylist.txt: 817) +# ||jsmbaidu.com^$third-party (easylistchina.txt: 835) .jsmbaidu.com -# ||jsjxhd.com^$third-party (easylistchina+easylist.txt: 816) +# ||jsjxhd.com^$third-party (easylistchina.txt: 834) .jsjxhd.com -# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 815) +# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina.txt: 833) .js-apac-ss.ysm.yahoo.com -# ||jointreport-switch.com^$third-party (easylistchina+easylist.txt: 814) +# ||jointreport-switch.com^$third-party (easylistchina.txt: 832) .jointreport-switch.com -# ||johtzj.com^ (easylistchina+easylist.txt: 813) +# ||johtzj.com^ (easylistchina.txt: 831) .johtzj.com -# ||jntmedia.cn^$third-party (easylistchina+easylist.txt: 812) +# ||jntmedia.cn^$third-party (easylistchina.txt: 830) .jntmedia.cn -# ||jnrsjm.com^ (easylistchina+easylist.txt: 811) +# ||jnrsjm.com^ (easylistchina.txt: 829) .jnrsjm.com -# ||jlssbz.com^ (easylistchina+easylist.txt: 810) +# ||jlssbz.com^ (easylistchina.txt: 828) .jlssbz.com -# ||jk939.com^ (easylistchina+easylist.txt: 809) +# ||jk939.com^ (easylistchina.txt: 827) .jk939.com -# ||jiyou2014.com^ (easylistchina+easylist.txt: 808) +# ||jiyou2014.com^ (easylistchina.txt: 826) .jiyou2014.com -# ||jixing8.net^$third-party (easylistchina+easylist.txt: 807) +# ||jixing8.net^$third-party (easylistchina.txt: 825) .jixing8.net -# ||jixing8.com^$third-party (easylistchina+easylist.txt: 806) +# ||jixing8.com^$third-party (easylistchina.txt: 824) .jixing8.com -# ||jisucn.com^$third-party (easylistchina+easylist.txt: 805) +# ||jisucn.com^$third-party (easylistchina.txt: 823) .jisucn.com -# ||jiankang13.com^$third-party (easylistchina+easylist.txt: 804) +# ||jiankang13.com^$third-party (easylistchina.txt: 822) .jiankang13.com -# ||jiangcao.com^$third-party (easylistchina+easylist.txt: 803) +# ||jianglishi.cn^$third-party (easylistchina.txt: 821) +.jianglishi.cn +# ||jiangcao.com^$third-party (easylistchina.txt: 820) .jiangcao.com -# ||jhzl001.com^ (easylistchina+easylist.txt: 802) +# ||jhzl001.com^ (easylistchina.txt: 819) .jhzl001.com -# ||jdlhg.com^ (easylistchina+easylist.txt: 801) +# ||jdlhg.com^ (easylistchina.txt: 818) .jdlhg.com -# ||jczzjx.com^ (easylistchina+easylist.txt: 800) +# ||jczzjx.com^ (easylistchina.txt: 817) .jczzjx.com -# ||j8j9.com^$third-party (easylistchina+easylist.txt: 799) +# ||j8j9.com^$third-party (easylistchina.txt: 816) .j8j9.com -# ||itechwall.com^$third-party (easylistchina+easylist.txt: 798) +# ||itechwall.com^$third-party (easylistchina.txt: 815) .itechwall.com -# ||istreamsche.com^$third-party (easylistchina+easylist.txt: 797) +# ||istreamsche.com^$third-party (easylistchina.txt: 814) .istreamsche.com -# ||is686.com^$third-party (easylistchina+easylist.txt: 796) +# ||is686.com^$third-party (easylistchina.txt: 813) .is686.com -# ||iprefer.com.tw^$third-party (easylistchina+easylist.txt: 795) +# ||iprefer.com.tw^$third-party (easylistchina.txt: 812) .iprefer.com.tw -# ||instreet.cn^$third-party (easylistchina+easylist.txt: 794) +# ||instreet.cn^$third-party (easylistchina.txt: 811) .instreet.cn -# ||index8.cn^$third-party (easylistchina+easylist.txt: 793) +# ||index8.cn^$third-party (easylistchina.txt: 810) .index8.cn -# ||img80.net^ (easylistchina+easylist.txt: 792) +# ||img80.net^ (easylistchina.txt: 809) .img80.net -# ||ihualun.com^ (easylistchina+easylist.txt: 790) +# ||ihualun.com^ (easylistchina.txt: 807) .ihualun.com -# ||iguang.tw^$third-party (easylistchina+easylist.txt: 789) +# ||iguang.tw^$third-party (easylistchina.txt: 806) .iguang.tw -# ||iee5.com^$third-party (easylistchina+easylist.txt: 788) +# ||iee5.com^$third-party (easylistchina.txt: 805) .iee5.com -# ||icast.cn^$third-party (easylistchina+easylist.txt: 787) +# ||icast.cn^$third-party (easylistchina.txt: 804) .icast.cn -# ||i3z.cn^$third-party (easylistchina+easylist.txt: 786) +# ||i3z.cn^$third-party (easylistchina.txt: 803) .i3z.cn -# ||i3818.com^ (easylistchina+easylist.txt: 785) +# ||i3818.com^ (easylistchina.txt: 802) .i3818.com -# ||i000o.com^$third-party (easylistchina+easylist.txt: 784) +# ||i000o.com^$third-party (easylistchina.txt: 801) .i000o.com -# ||hxqu.com^$third-party (easylistchina+easylist.txt: 783) +# ||hxqu.com^$third-party (easylistchina.txt: 800) .hxqu.com -# ||humanding.com^ (easylistchina+easylist.txt: 782) +# ||humanding.com^ (easylistchina.txt: 799) .humanding.com -# ||hsmkj.net^$third-party (easylistchina+easylist.txt: 781) +# ||hsmkj.net^$third-party (easylistchina.txt: 798) .hsmkj.net -# ||hr44.com^ (easylistchina+easylist.txt: 780) +# ||hr44.com^ (easylistchina.txt: 797) .hr44.com -# ||hn163fck.com^$third-party (easylistchina+easylist.txt: 779) +# ||hn163fck.com^$third-party (easylistchina.txt: 796) .hn163fck.com -# ||hmp33.com^ (easylistchina+easylist.txt: 778) +# ||hmp33.com^ (easylistchina.txt: 795) .hmp33.com -# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 777) +# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 794) .hk-cm.ysm.yahoo.com -# ||hfjuki.com^ (easylistchina+easylist.txt: 776) +# ||hfjuki.com^ (easylistchina.txt: 793) .hfjuki.com -# ||heima8.com^$third-party (easylistchina+easylist.txt: 775) +# ||heima8.com^$third-party (easylistchina.txt: 792) .heima8.com -# ||hauchi.com.tw^$third-party (easylistchina+easylist.txt: 774) +# ||hauchi.com.tw^$third-party (easylistchina.txt: 791) .hauchi.com.tw -# ||haoyiwang.net^$third-party (easylistchina+easylist.txt: 773) +# ||haoyiwang.net^$third-party (easylistchina.txt: 790) .haoyiwang.net -# ||haomm.com^$third-party (easylistchina+easylist.txt: 772) +# ||haomm.com^$third-party (easylistchina.txt: 789) .haomm.com -# ||haolew.com^ (easylistchina+easylist.txt: 771) +# ||haolew.com^ (easylistchina.txt: 788) .haolew.com -# ||haohaowan8.com^ (easylistchina+easylist.txt: 770) +# ||haohaowan8.com^ (easylistchina.txt: 787) .haohaowan8.com -# ||haoba.info^$third-party (easylistchina+easylist.txt: 769) +# ||haoba.info^$third-party (easylistchina.txt: 786) .haoba.info -# ||hao123union.baidu.com^$third-party (easylistchina+easylist.txt: 768) +# ||hao123union.baidu.com^$third-party (easylistchina.txt: 785) .hao123union.baidu.com -# ||hao123rt.com^ (easylistchina+easylist.txt: 767) +# ||hao123rt.com^ (easylistchina.txt: 784) .hao123rt.com -# ||haiyunx.com^$third-party (easylistchina+easylist.txt: 766) +# ||haiyunx.com^$third-party (easylistchina.txt: 783) .haiyunx.com -# ||gzqudou.com^ (easylistchina+easylist.txt: 765) +# ||gzqudou.com^ (easylistchina.txt: 782) .gzqudou.com -# ||gzmjnx.cn^ (easylistchina+easylist.txt: 764) +# ||gzmjnx.cn^ (easylistchina.txt: 781) .gzmjnx.cn -# ||gzbywl.com^$third-party (easylistchina+easylist.txt: 763) +# ||gzbywl.com^$third-party (easylistchina.txt: 780) .gzbywl.com -# ||guduopu.com^ (easylistchina+easylist.txt: 762) +# ||guduopu.com^ (easylistchina.txt: 779) .guduopu.com -# ||gs307.com^$third-party (easylistchina+easylist.txt: 761) +# ||gs307.com^$third-party (easylistchina.txt: 778) .gs307.com -# ||gohappy.com.tw^$third-party (easylistchina+easylist.txt: 760) +# ||gotonav.com^$third-party (easylistchina.txt: 777) +.gotonav.com +# ||gohappy.com.tw^$third-party (easylistchina.txt: 776) .gohappy.com.tw -# ||gm682.com^ (easylistchina+easylist.txt: 759) +# ||gm682.com^ (easylistchina.txt: 775) .gm682.com -# ||ggmm777.com^$third-party (easylistchina+easylist.txt: 758) +# ||ggmm777.com^$third-party (easylistchina.txt: 774) .ggmm777.com -# ||gf1353.com^$third-party (easylistchina+easylist.txt: 757) +# ||gf1353.com^$third-party (easylistchina.txt: 773) .gf1353.com -# ||gf1352.com^ (easylistchina+easylist.txt: 756) +# ||gf1352.com^ (easylistchina.txt: 772) .gf1352.com -# ||gf108.com^ (easylistchina+easylist.txt: 755) +# ||gf108.com^ (easylistchina.txt: 771) .gf108.com -# ||geotmt.com^$third-party (easylistchina+easylist.txt: 754) +# ||geotmt.com^$third-party (easylistchina.txt: 770) .geotmt.com -# ||gdxxb.com^$third-party (easylistchina+easylist.txt: 753) +# ||gdxxb.com^$third-party (easylistchina.txt: 769) .gdxxb.com -# ||gansha.co^$third-party (easylistchina+easylist.txt: 752) +# ||gansha.co^$third-party (easylistchina.txt: 768) .gansha.co -# ||gameone.com^$third-party (easylistchina+easylist.txt: 751) +# ||gameone.com^$third-party (easylistchina.txt: 767) .gameone.com -# ||gamecps.com^$third-party (easylistchina+easylist.txt: 750) +# ||gamecps.com^$third-party (easylistchina.txt: 766) .gamecps.com -# ||game3737.com^$third-party (easylistchina+easylist.txt: 749) +# ||game3737.com^$third-party (easylistchina.txt: 765) .game3737.com -# ||g35.cc^$third-party (easylistchina+easylist.txt: 748) +# ||g35.cc^$third-party (easylistchina.txt: 764) .g35.cc -# ||fxxgw.com^$third-party (easylistchina+easylist.txt: 747) +# ||fxxgw.com^$third-party (easylistchina.txt: 763) .fxxgw.com -# ||fv99.com^ (easylistchina+easylist.txt: 746) +# ||fv99.com^ (easylistchina.txt: 762) .fv99.com -# ||fu68.com^ (easylistchina+easylist.txt: 745) +# ||fu68.com^ (easylistchina.txt: 761) .fu68.com -# ||fmad.cc^$third-party (easylistchina+easylist.txt: 744) +# ||fmad.cc^$third-party (easylistchina.txt: 760) .fmad.cc -# ||fjmeyer.com^ (easylistchina+easylist.txt: 743) +# ||fjmeyer.com^ (easylistchina.txt: 759) .fjmeyer.com -# ||feitian001.com^$third-party (easylistchina+easylist.txt: 742) +# ||feitian001.com^$third-party (easylistchina.txt: 758) .feitian001.com -# ||fd7c.com^ (easylistchina+easylist.txt: 741) +# ||fd7c.com^ (easylistchina.txt: 757) .fd7c.com -# ||fadama.com^$third-party (easylistchina+easylist.txt: 740) +# ||fadama.com^$third-party (easylistchina.txt: 756) .fadama.com -# ||f8272.com^$third-party (easylistchina+easylist.txt: 739) +# ||f8272.com^$third-party (easylistchina.txt: 755) .f8272.com -# ||f70123.com^ (easylistchina+easylist.txt: 738) +# ||f70123.com^ (easylistchina.txt: 754) .f70123.com -# ||f6ce.com^ (easylistchina+easylist.txt: 737) +# ||f6ce.com^ (easylistchina.txt: 753) .f6ce.com -# ||f1190.com^ (easylistchina+easylist.txt: 736) +# ||f1190.com^ (easylistchina.txt: 752) .f1190.com -# ||eyouv.cn^$third-party (easylistchina+easylist.txt: 735) +# ||eyouv.cn^$third-party (easylistchina.txt: 751) .eyouv.cn -# ||ertya.com^$third-party (easylistchina+easylist.txt: 734) -.ertya.com -# ||emarbox.com^$third-party (easylistchina+easylist.txt: 733) +# ||emarbox.com^$third-party (easylistchina.txt: 750) .emarbox.com -# ||elsad.tw^$third-party (easylistchina+easylist.txt: 732) +# ||elsad.tw^$third-party (easylistchina.txt: 749) .elsad.tw -# ||ejin56.com^$third-party (easylistchina+easylist.txt: 731) +# ||ejin56.com^$third-party (easylistchina.txt: 748) .ejin56.com -# ||eiv.baidu.com^ (easylistchina+easylist.txt: 730) +# ||eiv.baidu.com^ (easylistchina.txt: 747) .eiv.baidu.com -# ||egooad.com^$third-party (easylistchina+easylist.txt: 729) +# ||egooad.com^$third-party (easylistchina.txt: 746) .egooad.com -# ||eeyy.com^$third-party (easylistchina+easylist.txt: 728) +# ||eeyy.com^$third-party (easylistchina.txt: 745) .eeyy.com -# ||ecuc123.net^ (easylistchina+easylist.txt: 727) +# ||ecuc123.net^ (easylistchina.txt: 744) .ecuc123.net -# ||easou.com^$third-party (easylistchina+easylist.txt: 726) +# ||easou.com^$third-party (easylistchina.txt: 743) .easou.com -# ||ea3721.com^$third-party (easylistchina+easylist.txt: 725) +# ||ea3721.com^$third-party (easylistchina.txt: 742) .ea3721.com -# ||e719.net^ (easylistchina+easylist.txt: 724) +# ||e719.net^ (easylistchina.txt: 741) .e719.net -# ||e708.net^ (easylistchina+easylist.txt: 723) +# ||e708.net^ (easylistchina.txt: 740) .e708.net -# ||e70123.com^ (easylistchina+easylist.txt: 722) +# ||e70123.com^ (easylistchina.txt: 739) .e70123.com -# ||e701.net^ (easylistchina+easylist.txt: 721) +# ||e701.net^ (easylistchina.txt: 738) .e701.net -# ||dxssiyi.com^ (easylistchina+easylist.txt: 720) +# ||dxssiyi.com^ (easylistchina.txt: 737) .dxssiyi.com -# ||dxpmedia.com^$third-party (easylistchina+easylist.txt: 719) +# ||dxpmedia.com^$third-party (easylistchina.txt: 736) .dxpmedia.com -# ||dw998.com^ (easylistchina+easylist.txt: 718) +# ||dw998.com^ (easylistchina.txt: 735) .dw998.com -# ||dvr8.com^ (easylistchina+easylist.txt: 717) +# ||dvr8.com^ (easylistchina.txt: 734) .dvr8.com -# ||dushimj.com^$third-party (easylistchina+easylist.txt: 716) +# ||dushimj.com^$third-party (easylistchina.txt: 733) .dushimj.com -# ||duiwai.baidu.com^ (easylistchina+easylist.txt: 715) +# ||duiwai.baidu.com^ (easylistchina.txt: 732) .duiwai.baidu.com -# ||dszm163.com^$third-party (easylistchina+easylist.txt: 714) +# ||dszm163.com^$third-party (easylistchina.txt: 731) .dszm163.com -# ||drmcmm.baidu.com^ (easylistchina+easylist.txt: 713) +# ||drmcmm.baidu.com^ (easylistchina.txt: 730) .drmcmm.baidu.com -# ||doubleadv.com^$third-party (easylistchina+easylist.txt: 712) +# ||dreamfull.cn^ (easylistchina.txt: 729) +.dreamfull.cn +# ||doubleadv.com^$third-party (easylistchina.txt: 728) .doubleadv.com -# ||dou777.com^ (easylistchina+easylist.txt: 711) +# ||dou777.com^ (easylistchina.txt: 727) .dou777.com -# ||dmtrck.com^$third-party (easylistchina+easylist.txt: 709) +# ||dmtrck.com^$third-party (easylistchina.txt: 725) .dmtrck.com -# ||dlads.cn^$third-party (easylistchina+easylist.txt: 708) +# ||dlads.cn^$third-party (easylistchina.txt: 724) .dlads.cn -# ||displink.com^$third-party (easylistchina+easylist.txt: 707) +# ||displink.com^$third-party (easylistchina.txt: 723) .displink.com -# ||dianxin.com^$third-party (easylistchina+easylist.txt: 706) +# ||dianxin.com^$third-party (easylistchina.txt: 722) .dianxin.com -# ||dian500.com^$third-party (easylistchina+easylist.txt: 705) +# ||dian500.com^$third-party (easylistchina.txt: 721) .dian500.com -# ||dddddd.net^$third-party (easylistchina+easylist.txt: 704) +# ||dddddd.net^$third-party (easylistchina.txt: 720) .dddddd.net -# ||datafastguru.info^ (easylistchina+easylist.txt: 703) +# ||datafastguru.info^ (easylistchina.txt: 719) .datafastguru.info -# ||dashet.com^ (easylistchina+easylist.txt: 702) +# ||dashet.com^ (easylistchina.txt: 718) .dashet.com -# ||d8360.com^$third-party (easylistchina+easylist.txt: 701) +# ||d8360.com^$third-party (easylistchina.txt: 717) .d8360.com -# ||d1ad.com^$third-party (easylistchina+easylist.txt: 700) +# ||d1ad.com^$third-party (easylistchina.txt: 716) .d1ad.com -# ||czpwm.com^ (easylistchina+easylist.txt: 699) +# ||czpwm.com^ (easylistchina.txt: 715) .czpwm.com -# ||czpush.com^ (easylistchina+easylist.txt: 698) +# ||czpush.com^ (easylistchina.txt: 714) .czpush.com -# ||cyacc.com^ (easylistchina+easylist.txt: 697) +# ||cyacc.com^ (easylistchina.txt: 713) .cyacc.com -# ||ctsywy.com^ (easylistchina+easylist.txt: 696) +# ||ctsywy.com^ (easylistchina.txt: 712) .ctsywy.com -# ||csqiulong.com^ (easylistchina+easylist.txt: 695) +# ||csqiulong.com^ (easylistchina.txt: 711) .csqiulong.com -# ||csbew.com^$third-party (easylistchina+easylist.txt: 694) +# ||csbew.com^$third-party (easylistchina.txt: 710) .csbew.com -# ||csad.cc^$third-party (easylistchina+easylist.txt: 693) +# ||csad.cc^$third-party (easylistchina.txt: 709) .csad.cc -# ||cs.37see.com^$third-party (easylistchina+easylist.txt: 692) +# ||cs.37see.com^$third-party (easylistchina.txt: 708) .cs.37see.com -# ||crdrjs.info^ (easylistchina+easylist.txt: 691) +# ||crdrjs.info^ (easylistchina.txt: 707) .crdrjs.info -# ||crazymike.tw^$third-party (easylistchina+easylist.txt: 690) +# ||crazymike.tw^$third-party (easylistchina.txt: 706) .crazymike.tw -# ||cpva.cc^ (easylistchina+easylist.txt: 689) +# ||cpva.cc^ (easylistchina.txt: 705) .cpva.cc -# ||cpv6.com^ (easylistchina+easylist.txt: 688) +# ||cpv6.com^ (easylistchina.txt: 704) .cpv6.com -# ||cpro.baidustatic.com^ (easylistchina+easylist.txt: 687) +# ||cpro.baidustatic.com^ (easylistchina.txt: 703) .cpro.baidustatic.com -# ||cpro.baidu.com^ (easylistchina+easylist.txt: 686) +# ||cpro.baidu.com^ (easylistchina.txt: 702) .cpro.baidu.com -# ||cpms.cc^ (easylistchina+easylist.txt: 685) +# ||cpms.cc^ (easylistchina.txt: 701) .cpms.cc -# ||cpcv.cc^ (easylistchina+easylist.txt: 684) +# ||cpcv.cc^ (easylistchina.txt: 700) .cpcv.cc -# ||coinadv.com^$third-party (easylistchina+easylist.txt: 683) +# ||coinadv.com^$third-party (easylistchina.txt: 699) .coinadv.com -# ||code668.com^ (easylistchina+easylist.txt: 682) +# ||code668.com^ (easylistchina.txt: 698) .code668.com -# ||cnzz.com.so^ (easylistchina+easylist.txt: 681) +# ||cnzz.com.so^ (easylistchina.txt: 697) .cnzz.com.so -# ||cnxad.net^ (easylistchina+easylist.txt: 680) +# ||cnxad.net^ (easylistchina.txt: 696) .cnxad.net -# ||cnxad.com^$third-party (easylistchina+easylist.txt: 679) +# ||cnxad.com^$third-party (easylistchina.txt: 695) .cnxad.com -# ||cloudad.asia^$third-party (easylistchina+easylist.txt: 678) +# ||cloudad.asia^$third-party (easylistchina.txt: 694) .cloudad.asia -# ||chinesean.com^$third-party (easylistchina+easylist.txt: 677) +# ||cjlaoshi.com^$third-party (easylistchina.txt: 693) +.cjlaoshi.com +# ||chinesean.com^$third-party (easylistchina.txt: 692) .chinesean.com -# ||chinauma.net^$third-party (easylistchina+easylist.txt: 676) +# ||chinauma.net^$third-party (easylistchina.txt: 691) .chinauma.net -# ||chapm.com^$third-party (easylistchina+easylist.txt: 675) +# ||chapm.com^$third-party (easylistchina.txt: 690) .chapm.com -# ||chanet.com.cn^$third-party (easylistchina+easylist.txt: 674) +# ||chanet.com.cn^$third-party (easylistchina.txt: 689) .chanet.com.cn -# ||cbjs.baidu.com^ (easylistchina+easylist.txt: 673) +# ||cbjs.baidu.com^ (easylistchina.txt: 688) .cbjs.baidu.com -# ||cb.baidu.com^ (easylistchina+easylist.txt: 672) +# ||cb.baidu.com^ (easylistchina.txt: 687) .cb.baidu.com -# ||caob5.info^ (easylistchina+easylist.txt: 671) +# ||caob5.info^ (easylistchina.txt: 686) .caob5.info -# ||cangnews.com^ (easylistchina+easylist.txt: 670) +# ||cangnews.com^ (easylistchina.txt: 685) .cangnews.com -# ||c.91wan.com^$third-party (easylistchina+easylist.txt: 669) +# ||c.91wan.com^$third-party (easylistchina.txt: 684) .c.91wan.com -# ||btyou.com^$third-party (easylistchina+easylist.txt: 668) +# ||btyou.com^$third-party (easylistchina.txt: 683) .btyou.com -# ||books.com.tw/exep/ap/$third-party (easylistchina+easylist.txt: 667) +# ||books.com.tw/exep/ap/$third-party (easylistchina.txt: 682) .books.com.tw/exep/ap/ -# ||bloggerads.net^$third-party (easylistchina+easylist.txt: 666) +# ||bloggerads.net^$third-party (easylistchina.txt: 681) .bloggerads.net -# ||blogad.com.tw^$third-party (easylistchina+easylist.txt: 665) +# ||blogad.com.tw^$third-party (easylistchina.txt: 680) .blogad.com.tw -# ||biddingx.com^$third-party (easylistchina+easylist.txt: 664) +# ||biddingx.com^$third-party (easylistchina.txt: 679) .biddingx.com -# ||behe.com^$third-party (easylistchina+easylist.txt: 663) +# ||behe.com^$third-party (easylistchina.txt: 678) .behe.com -# ||baodaozhan.cn^$third-party (easylistchina+easylist.txt: 662) +# ||baodaozhan.cn^$third-party (easylistchina.txt: 677) .baodaozhan.cn -# ||bang5mai.com^$third-party (easylistchina+easylist.txt: 661) +# ||bang5mai.com^$third-party (easylistchina.txt: 676) .bang5mai.com -# ||baidu360haosou.info^$third-party (easylistchina+easylist.txt: 660) +# ||baidu360haosou.info^$third-party (easylistchina.txt: 675) .baidu360haosou.info -# ||b5h7.com^$third-party (easylistchina+easylist.txt: 659) +# ||b5h7.com^$third-party (easylistchina.txt: 674) .b5h7.com -# ||av8d.net^$third-party (easylistchina+easylist.txt: 658) +# ||av8d.net^$third-party (easylistchina.txt: 673) .av8d.net -# ||at98.com^ (easylistchina+easylist.txt: 657) +# ||at98.com^ (easylistchina.txt: 672) .at98.com -# ||at918.com^$third-party (easylistchina+easylist.txt: 656) +# ||at918.com^$third-party (easylistchina.txt: 671) .at918.com -# ||aralego.com^ (easylistchina+easylist.txt: 655) +# ||aralego.com^ (easylistchina.txt: 670) .aralego.com -# ||aoparking.com^$third-party (easylistchina+easylist.txt: 654) +# ||aoparking.com^$third-party (easylistchina.txt: 669) .aoparking.com -# ||andmejs.com^$third-party (easylistchina+easylist.txt: 653) +# ||andmejs.com^$third-party (easylistchina.txt: 668) .andmejs.com -# ||amazingmagics.com^ (easylistchina+easylist.txt: 652) +# ||amazingmagics.com^ (easylistchina.txt: 667) .amazingmagics.com -# ||allyes.$third-party (easylistchina+easylist.txt: 651) +# ||allyes.$third-party (easylistchina.txt: 666) .allyes.*. -# ||aliyunxin.com^ (easylistchina+easylist.txt: 650) +# ||aliyunxin.com^ (easylistchina.txt: 665) .aliyunxin.com -# ||aliyuncss.com^ (easylistchina+easylist.txt: 649) +# ||aliyuncss.com^ (easylistchina.txt: 664) .aliyuncss.com -# ||ajhdf.com^$third-party (easylistchina+easylist.txt: 647) +# ||ajhdf.com^$third-party (easylistchina.txt: 662) .ajhdf.com -# ||ajaxcdn.org^ (easylistchina+easylist.txt: 646) +# ||ajaxcdn.org^ (easylistchina.txt: 661) .ajaxcdn.org -# ||aimato.com^$third-party (easylistchina+easylist.txt: 645) +# ||aimato.com^$third-party (easylistchina.txt: 660) .aimato.com -# ||aidaicn.com^$third-party (easylistchina+easylist.txt: 644) +# ||aidaicn.com^$third-party (easylistchina.txt: 659) .aidaicn.com -# ||agrantsem.com^$third-party (easylistchina+easylist.txt: 643) +# ||agrantsem.com^$third-party (easylistchina.txt: 658) .agrantsem.com -# ||affiliate.rakuten.co.jp^$third-party (easylistchina+easylist.txt: 642) +# ||affiliate.rakuten.co.jp^$third-party (easylistchina.txt: 657) .affiliate.rakuten.co.jp -# ||adyun.com^$third-party (easylistchina+easylist.txt: 641) +# ||adyun.com^$third-party (easylistchina.txt: 656) .adyun.com -# ||adxiaozi.com^$third-party (easylistchina+easylist.txt: 640) +# ||adxiaozi.com^$third-party (easylistchina.txt: 655) .adxiaozi.com -# ||adver.com.tw^$third-party (easylistchina+easylist.txt: 639) +# ||adver.com.tw^$third-party (easylistchina.txt: 654) .adver.com.tw -# ||adunioncode.com^$third-party (easylistchina+easylist.txt: 638) +# ||adunioncode.com^$third-party (easylistchina.txt: 653) .adunioncode.com -# ||adt100.com^$third-party (easylistchina+easylist.txt: 637) +# ||adt100.com^$third-party (easylistchina.txt: 652) .adt100.com -# ||adsbro.com^$third-party (easylistchina+easylist.txt: 636) +# ||adsbro.com^$third-party (easylistchina.txt: 651) .adsbro.com -# ||adsage.com^$third-party (easylistchina+easylist.txt: 635) +# ||adsage.com^$third-party (easylistchina.txt: 650) .adsage.com -# ||ads.uc.cn^ (easylistchina+easylist.txt: 634) +# ||ads.uc.cn^ (easylistchina.txt: 649) .ads.uc.cn -# ||adpush.cn^$third-party (easylistchina+easylist.txt: 633) +# ||adpush.cn^$third-party (easylistchina.txt: 648) .adpush.cn -# ||adpro.cn^$third-party (easylistchina+easylist.txt: 632) +# ||adpro.cn^$third-party (easylistchina.txt: 647) .adpro.cn -# ||admin6.com^$third-party (easylistchina+easylist.txt: 631) +# ||admin6.com^$third-party (easylistchina.txt: 646) .admin6.com -# ||adm.cnzz.net^$third-party (easylistchina+easylist.txt: 630) +# ||adm.cnzz.net^$third-party (easylistchina.txt: 645) .adm.cnzz.net -# ||adm-cnzz.net^ (easylistchina+easylist.txt: 629) +# ||adm-cnzz.net^ (easylistchina.txt: 644) .adm-cnzz.net -# ||adkongjian.com^$third-party (easylistchina+easylist.txt: 628) +# ||adkongjian.com^$third-party (easylistchina.txt: 643) .adkongjian.com -# ||adingo.jp^$third-party (easylistchina+easylist.txt: 627) +# ||adingo.jp^$third-party (easylistchina.txt: 642) .adingo.jp -# ||adhouyi.com^$third-party (easylistchina+easylist.txt: 626) +# ||adhouyi.com^$third-party (easylistchina.txt: 641) .adhouyi.com -# ||adconfer.com^$third-party (easylistchina+easylist.txt: 625) +# ||adconfer.com^$third-party (easylistchina.txt: 640) .adconfer.com -# ||adchina.cc^$third-party (easylistchina+easylist.txt: 624) +# ||adchina.cc^$third-party (easylistchina.txt: 639) .adchina.cc -# ||adcenter.conn.tw^$third-party (easylistchina+easylist.txt: 623) +# ||adcenter.conn.tw^$third-party (easylistchina.txt: 638) .adcenter.conn.tw -# ||adbxb.com^$third-party (easylistchina+easylist.txt: 622) +# ||adbxb.com^$third-party (easylistchina.txt: 637) .adbxb.com -# ||ad8.cc^$third-party (easylistchina+easylist.txt: 621) +# ||ad8.cc^$third-party (easylistchina.txt: 636) .ad8.cc -# ||ad000000.com^ (easylistchina+easylist.txt: 620) +# ||ad000000.com^ (easylistchina.txt: 635) .ad000000.com -# ||ad-plus.cn^$third-party (easylistchina+easylist.txt: 619) +# ||ad-plus.cn^$third-party (easylistchina.txt: 634) .ad-plus.cn -# ||acs86.com^$third-party (easylistchina+easylist.txt: 618) +# ||acs86.com^$third-party (easylistchina.txt: 633) .acs86.com -# ||acgbase.com^$third-party (easylistchina+easylist.txt: 617) +# ||acgbase.com^$third-party (easylistchina.txt: 632) .acgbase.com -# ||a907907.com^ (easylistchina+easylist.txt: 616) +# ||a907907.com^ (easylistchina.txt: 631) .a907907.com -# ||a7shun.com^$third-party (easylistchina+easylist.txt: 615) +# ||a7shun.com^$third-party (easylistchina.txt: 630) .a7shun.com -# ||a3p4.com^$third-party (easylistchina+easylist.txt: 614) +# ||a3p4.com^$third-party (easylistchina.txt: 629) .a3p4.com -# ||9xu.com^$third-party (easylistchina+easylist.txt: 613) +# ||9xu.com^$third-party (easylistchina.txt: 628) .9xu.com -# ||9w1an.com^$third-party (easylistchina+easylist.txt: 612) +# ||9w1an.com^$third-party (easylistchina.txt: 627) .9w1an.com -# ||9ead.com^$third-party (easylistchina+easylist.txt: 611) +# ||9ead.com^$third-party (easylistchina.txt: 626) .9ead.com -# ||9718.com^$third-party (easylistchina+easylist.txt: 610) +# ||9718.com^$third-party (easylistchina.txt: 625) .9718.com -# ||9519.net^$third-party (easylistchina+easylist.txt: 609) +# ||9519.net^$third-party (easylistchina.txt: 624) .9519.net -# ||9377os.com^ (easylistchina+easylist.txt: 608) +# ||9377os.com^ (easylistchina.txt: 623) .9377os.com -# ||9377co.com^ (easylistchina+easylist.txt: 607) +# ||9377ku.com^ (easylistchina.txt: 622) +.9377ku.com +# ||9377co.com^ (easylistchina.txt: 621) .9377co.com -# ||91zgm.com^ (easylistchina+easylist.txt: 606) +# ||91zgm.com^ (easylistchina.txt: 620) .91zgm.com -# ||91ysa.com^ (easylistchina+easylist.txt: 605) +# ||91ysa.com^ (easylistchina.txt: 619) .91ysa.com -# ||9158918.com^$third-party (easylistchina+easylist.txt: 604) +# ||9158918.com^$third-party (easylistchina.txt: 618) .9158918.com -# ||913h6.cn^$third-party (easylistchina+easylist.txt: 603) +# ||913h6.cn^$third-party (easylistchina.txt: 617) .913h6.cn -# ||911.cc^$third-party (easylistchina+easylist.txt: 602) +# ||911.cc^$third-party (easylistchina.txt: 616) .911.cc -# ||8ox.cn^$third-party (easylistchina+easylist.txt: 601) +# ||8ox.cn^$third-party (easylistchina.txt: 615) .8ox.cn -# ||8le8le.com^$third-party (easylistchina+easylist.txt: 600) +# ||8le8le.com^$third-party (easylistchina.txt: 614) .8le8le.com -# ||892155.com^ (easylistchina+easylist.txt: 599) +# ||892155.com^ (easylistchina.txt: 613) .892155.com -# ||8910ad.com^$third-party (easylistchina+easylist.txt: 598) +# ||8910ad.com^$third-party (easylistchina.txt: 612) .8910ad.com -# ||88rpg.net^ (easylistchina+easylist.txt: 597) +# ||88rpg.net^ (easylistchina.txt: 611) .88rpg.net -# ||88cpc.com^$third-party (easylistchina+easylist.txt: 596) +# ||88cpc.com^$third-party (easylistchina.txt: 610) .88cpc.com -# ||85tgw.com^ (easylistchina+easylist.txt: 595) +# ||85tgw.com^ (easylistchina.txt: 609) .85tgw.com -# ||81c.cn^ (easylistchina+easylist.txt: 594) +# ||81c.cn^ (easylistchina.txt: 608) .81c.cn -# ||7xz3.com^ (easylistchina+easylist.txt: 593) +# ||7xz3.com^ (easylistchina.txt: 607) .7xz3.com -# ||7wen.cn^ (easylistchina+easylist.txt: 592) +# ||7wen.cn^ (easylistchina.txt: 606) .7wen.cn -# ||7o2o.com^$third-party (easylistchina+easylist.txt: 591) +# ||7o2o.com^$third-party (easylistchina.txt: 605) .7o2o.com -# ||7clink.com^$third-party (easylistchina+easylist.txt: 590) +# ||7clink.com^$third-party (easylistchina.txt: 604) .7clink.com -# ||7bwan.com^$third-party (easylistchina+easylist.txt: 589) +# ||7bwan.com^$third-party (easylistchina.txt: 603) .7bwan.com -# ||788xj.com^$third-party (easylistchina+easylist.txt: 588) +# ||788xj.com^$third-party (easylistchina.txt: 602) .788xj.com -# ||77power.com^ (easylistchina+easylist.txt: 587) +# ||77power.com^ (easylistchina.txt: 601) .77power.com -# ||71sem.com^ (easylistchina+easylist.txt: 586) +# ||71sem.com^ (easylistchina.txt: 600) .71sem.com -# ||710070.com^$third-party (easylistchina+easylist.txt: 585) +# ||710070.com^$third-party (easylistchina.txt: 599) .710070.com -# ||70e.com^$third-party (easylistchina+easylist.txt: 584) +# ||70e.com^$third-party (easylistchina.txt: 598) .70e.com -# ||6dvip.com^ (easylistchina+easylist.txt: 583) +# ||6dvip.com^ (easylistchina.txt: 597) .6dvip.com -# ||6dad.com^$third-party (easylistchina+easylist.txt: 582) +# ||6dad.com^$third-party (easylistchina.txt: 596) .6dad.com -# ||68665565.com^ (easylistchina+easylist.txt: 581) +# ||68665565.com^ (easylistchina.txt: 595) .68665565.com -# ||685wo.com^$script,third-party (easylistchina+easylist.txt: 580) +# ||685wo.com^$script,third-party (easylistchina.txt: 594) .685wo.com -# ||67lm.com^$third-party (easylistchina+easylist.txt: 579) +# ||67lm.com^$third-party (easylistchina.txt: 593) .67lm.com -# ||668559.com^$third-party (easylistchina+easylist.txt: 578) +# ||66san.com^ (easylistchina.txt: 592) +.66san.com +# ||668559.com^$third-party (easylistchina.txt: 591) .668559.com -# ||63kc.com^$third-party (easylistchina+easylist.txt: 577) +# ||63kc.com^$third-party (easylistchina.txt: 590) .63kc.com -# ||61.152.223.15^ (easylistchina+easylist.txt: 576) +# ||61.152.223.15^ (easylistchina.txt: 589) .61.152.223.15 -# ||5mnh.com^$third-party (easylistchina+easylist.txt: 575) +# ||5mnh.com^$third-party (easylistchina.txt: 588) .5mnh.com -# ||58.215.179.159^ (easylistchina+easylist.txt: 574) +# ||58.215.179.159^ (easylistchina.txt: 587) .58.215.179.159 -# ||565882.com^$third-party (easylistchina+easylist.txt: 573) +# ||565882.com^$third-party (easylistchina.txt: 586) .565882.com -# ||5399.com^$third-party (easylistchina+easylist.txt: 572) +# ||5399.com^$third-party (easylistchina.txt: 585) .5399.com -# ||52kmk.com^ (easylistchina+easylist.txt: 571) +# ||52kmk.com^ (easylistchina.txt: 584) .52kmk.com -# ||52kmh.com^$third-party (easylistchina+easylist.txt: 570) +# ||52kmh.com^$third-party (easylistchina.txt: 583) .52kmh.com -# ||526d.com^$third-party (easylistchina+easylist.txt: 569) +# ||526d.com^$third-party (easylistchina.txt: 582) .526d.com -# ||51ads.com^$third-party (easylistchina+easylist.txt: 568) +# ||51ads.com^$third-party (easylistchina.txt: 581) .51ads.com -# ||4kt2.com^$subdocument (easylistchina+easylist.txt: 567) +# ||4kt2.com^$subdocument (easylistchina.txt: 580) .4kt2.com -# ||4936.cn^$third-party (easylistchina+easylist.txt: 566) +# ||4936.cn^$third-party (easylistchina.txt: 579) .4936.cn -# ||44pv.com^$third-party (easylistchina+easylist.txt: 565) +# ||44pv.com^$third-party (easylistchina.txt: 578) .44pv.com -# ||3p-link.com^$third-party (easylistchina+easylist.txt: 564) +# ||3p-link.com^$third-party (easylistchina.txt: 577) .3p-link.com -# ||3g.990.net^ (easylistchina+easylist.txt: 563) +# ||3g.990.net^ (easylistchina.txt: 576) .3g.990.net -# ||3dwwwgame.com^$third-party (easylistchina+easylist.txt: 562) +# ||3dwwwgame.com^$third-party (easylistchina.txt: 575) .3dwwwgame.com -# ||3alian.net^$third-party (easylistchina+easylist.txt: 561) +# ||3alian.net^$third-party (easylistchina.txt: 574) .3alian.net -# ||3975lm.com^$third-party (easylistchina+easylist.txt: 560) +# ||3975lm.com^$third-party (easylistchina.txt: 573) .3975lm.com -# ||38ra.com^$third-party (easylistchina+easylist.txt: 559) +# ||38ra.com^$third-party (easylistchina.txt: 572) .38ra.com -# ||3839168.com^$third-party (easylistchina+easylist.txt: 558) +# ||3839168.com^$third-party (easylistchina.txt: 571) .3839168.com -# ||3808010.com/code$third-party (easylistchina+easylist.txt: 557) +# ||3808010.com/code$third-party (easylistchina.txt: 570) .3808010.com/code -# ||37cs.com^$third-party (easylistchina+easylist.txt: 556) +# ||37cs.com^$third-party (easylistchina.txt: 569) .37cs.com -# ||36pn.com^ (easylistchina+easylist.txt: 555) +# ||36pn.com^ (easylistchina.txt: 568) .36pn.com -# ||366safego.com^ (easylistchina+easylist.txt: 554) +# ||366safego.com^ (easylistchina.txt: 567) .366safego.com -# ||365safego.com^ (easylistchina+easylist.txt: 553) +# ||365safego.com^ (easylistchina.txt: 566) .365safego.com -# ||365bibi.com^ (easylistchina+easylist.txt: 552) +# ||365bibi.com^ (easylistchina.txt: 565) .365bibi.com -# ||36500.net^$third-party (easylistchina+easylist.txt: 551) +# ||36500.net^$third-party (easylistchina.txt: 564) .36500.net -# ||36500.com^$third-party (easylistchina+easylist.txt: 550) +# ||36500.com^$third-party (easylistchina.txt: 563) .36500.com -# ||360doo.com^$third-party (easylistchina+easylist.txt: 549) +# ||360doo.com^$third-party (easylistchina.txt: 562) .360doo.com -# ||360baidus.com^ (easylistchina+easylist.txt: 548) +# ||360baidus.com^ (easylistchina.txt: 561) .360baidus.com -# ||3600ys.com^$third-party (easylistchina+easylist.txt: 547) +# ||3600ys.com^$third-party (easylistchina.txt: 560) .3600ys.com -# ||3399.com/act/$third-party (easylistchina+easylist.txt: 546) +# ||3399.com/act/$third-party (easylistchina.txt: 559) .3399.com/act/ -# ||32414.com^$third-party (easylistchina+easylist.txt: 545) +# ||32414.com^$third-party (easylistchina.txt: 558) .32414.com -# ||321tui.com^$third-party (easylistchina+easylist.txt: 544) +# ||321tui.com^$third-party (easylistchina.txt: 557) .321tui.com -# ||321tui.cn^$third-party (easylistchina+easylist.txt: 543) +# ||321tui.cn^$third-party (easylistchina.txt: 556) .321tui.cn -# ||2m2n.com^ (easylistchina+easylist.txt: 542) +# ||2m2n.com^ (easylistchina.txt: 555) .2m2n.com -# ||2529.com^$third-party (easylistchina+easylist.txt: 541) +# ||2529.com^$third-party (easylistchina.txt: 554) .2529.com -# ||23kmm.com^$third-party (easylistchina+easylist.txt: 540) +# ||23kmm.com^$third-party (easylistchina.txt: 553) .23kmm.com -# ||235123.net^$third-party (easylistchina+easylist.txt: 539) +# ||235123.net^$third-party (easylistchina.txt: 552) .235123.net -# ||221.204.213.222^ (easylistchina+easylist.txt: 538) +# ||221.204.213.222^ (easylistchina.txt: 551) .221.204.213.222 -# ||220.115.251.25^ (easylistchina+easylist.txt: 537) +# ||220.115.251.25^ (easylistchina.txt: 550) .220.115.251.25 -# ||219.234.83.60^ (easylistchina+easylist.txt: 536) +# ||219.234.83.60^ (easylistchina.txt: 549) .219.234.83.60 -# ||218.26.217.*.html (easylistchina+easylist.txt: 535) +# ||218.26.217.*.html (easylistchina.txt: 548) .218.26.217.*./.*\.html .218.26.217.*.html*. -# ||217wo.com^$third-party (easylistchina+easylist.txt: 534) +# ||217wo.com^$third-party (easylistchina.txt: 547) .217wo.com -# ||2155ec.com^$third-party (easylistchina+easylist.txt: 533) +# ||2155ec.com^$third-party (easylistchina.txt: 546) .2155ec.com -# ||211.167.105.131^ (easylistchina+easylist.txt: 532) +# ||211.167.105.131^ (easylistchina.txt: 545) .211.167.105.131 -# ||210.65.10.32^$third-party (easylistchina+easylist.txt: 531) +# ||210.65.10.32^$third-party (easylistchina.txt: 544) .210.65.10.32 -# ||2012ui.com^ (easylistchina+easylist.txt: 530) +# ||2012ui.com^ (easylistchina.txt: 543) .2012ui.com -# ||201071.com^ (easylistchina+easylist.txt: 529) +# ||201071.com^ (easylistchina.txt: 542) .201071.com -# ||1v7.cn^$third-party (easylistchina+easylist.txt: 528) +# ||1v7.cn^$third-party (easylistchina.txt: 541) .1v7.cn -# ||1qwe3r.com^$third-party (easylistchina+easylist.txt: 527) +# ||1qwe3r.com^$third-party (easylistchina.txt: 540) .1qwe3r.com -# ||1lo0.net^$third-party (easylistchina+easylist.txt: 526) +# ||1lo0.net^$third-party (easylistchina.txt: 539) .1lo0.net -# ||1l1.cc^ (easylistchina+easylist.txt: 525) +# ||1l1.cc^ (easylistchina.txt: 538) .1l1.cc -# ||182.92.81.104^ (easylistchina+easylist.txt: 524) +# ||182.92.81.104^ (easylistchina.txt: 537) .182.92.81.104 -# ||1503.net/code/ (easylistchina+easylist.txt: 523) +# ||1503.net/code/ (easylistchina.txt: 536) .1503.net/code/ -# ||139site.com^$third-party (easylistchina+easylist.txt: 522) +# ||139site.com^$third-party (easylistchina.txt: 535) .139site.com -# ||139.159.32.82^ (easylistchina+easylist.txt: 521) +# ||139.159.32.82^ (easylistchina.txt: 534) .139.159.32.82 -# ||12l22.net^$third-party (easylistchina+easylist.txt: 520) +# ||12l22.net^$third-party (easylistchina.txt: 533) .12l22.net -# ||123hala.com^ (easylistchina+easylist.txt: 519) +# ||123hala.com^ (easylistchina.txt: 532) .123hala.com -# ||122.227.254.195^ (easylistchina+easylist.txt: 518) +# ||122.227.254.195^ (easylistchina.txt: 531) .122.227.254.195 -# ||1188.com^$third-party (easylistchina+easylist.txt: 517) +# ||1188.com^$third-party (easylistchina.txt: 530) .1188.com -# ||118114.cn^$third-party (easylistchina+easylist.txt: 516) +# ||118114.cn^$third-party (easylistchina.txt: 529) .118114.cn -# ||116.55.227.242^ (easylistchina+easylist.txt: 515) +# ||116.55.227.242^ (easylistchina.txt: 528) .116.55.227.242 -# ||1133.cc^$third-party (easylistchina+easylist.txt: 513) +# ||1133.cc^$third-party (easylistchina.txt: 526) .1133.cc -# ||112.124.98.75^ (easylistchina+easylist.txt: 512) +# ||112.124.98.75^ (easylistchina.txt: 525) .112.124.98.75 -# ||111111qb.com^ (easylistchina+easylist.txt: 511) +# ||111111qb.com^ (easylistchina.txt: 524) .111111qb.com -# ||111.175.219.7^ (easylistchina+easylist.txt: 510) +# ||111.175.219.7^ (easylistchina.txt: 523) .111.175.219.7 -# ||110160.com^$third-party (easylistchina+easylist.txt: 509) +# ||110160.com^$third-party (easylistchina.txt: 522) .110160.com -# ||104.195.62.12^ (easylistchina+easylist.txt: 508) +# ||106.187.95.251^ (easylistchina.txt: 521) +.106.187.95.251 +# ||104.195.62.12^ (easylistchina.txt: 520) .104.195.62.12 -# ||103.249.111.179^$third-party (easylistchina+easylist.txt: 507) +# ||103.249.111.179^$third-party (easylistchina.txt: 519) .103.249.111.179 -# ||100cpc.com^$third-party (easylistchina+easylist.txt: 506) +# ||100cpc.com^$third-party (easylistchina.txt: 518) .100cpc.com -# ||0xxd.com^ (easylistchina+easylist.txt: 505) +# ||0xxd.com^ (easylistchina.txt: 517) .0xxd.com -# ||0756j.com^$third-party (easylistchina+easylist.txt: 504) +# ||0756j.com^$third-party (easylistchina.txt: 516) .0756j.com -# ||0591101.com^$third-party (easylistchina+easylist.txt: 503) +# ||0591101.com^$third-party (easylistchina.txt: 515) .0591101.com -# ||033.com^$third-party (easylistchina+easylist.txt: 502) +# ||033.com^$third-party (easylistchina.txt: 514) .033.com -# |http://tk.*.php?id=*&step= (easylistchina+easylist.txt: 501) +# |http://tk.*.php?id=*&step= (easylistchina.txt: 513) tk.*./.*\.php\?id=.*&step= -# |http://tk.*.php?id=*&s=$script (easylistchina+easylist.txt: 500) +# |http://tk.*.php?id=*&s=$script (easylistchina.txt: 512) tk.*./.*\.php\?id=.*&s= -# |http://p.*.com/view.php?uid=$script,third-party (easylistchina+easylist.txt: 499) +# |http://p.*.com/view.php?uid=$script,third-party (easylistchina.txt: 511) p.*./.*\.com/view\.php\?uid= p.*.com/view\.php\?uid= -# |http://news.*.html|$script,third-party (easylistchina+easylist.txt: 498) -news.*./.*\.html$ -news.*.html -# |http://1.3.0.10^ (easylistchina+easylist.txt: 497) +# |http://1.3.0.10^ (easylistchina.txt: 510) 1.3.0.10 -# |http://*:*/s.php?id=$script,third-party (easylistchina+easylist.txt: 496) +# |http://*:*/s.php?id=$script,third-party (easylistchina.txt: 509) /.*:.*/s\.php\?id= .*:*./(.*/)?s\.php\?id= -# |http://*//s.php?id=$script,third-party (easylistchina+easylist.txt: 495) +# |http://*//s.php?id=$script,third-party (easylistchina.txt: 508) /(.*/)?/s\.php\?id= -# |http://*.tw/s.php?id=$script,third-party (easylistchina+easylist.txt: 494) +# |http://*.tw/s.php?id=$script,third-party (easylistchina.txt: 507) /.*\.tw/s\.php\?id= .*.tw/s\.php\?id= -# |http://*.info/s.php?id=$script,third-party (easylistchina+easylist.txt: 493) +# |http://*.info/s.php?id=$script,third-party (easylistchina.txt: 506) /.*\.info/s\.php\?id= .*.info/s\.php\?id= -# |http://*.com/s.php?id=$script,third-party (easylistchina+easylist.txt: 492) +# |http://*.com/s.php?id=$script,third-party (easylistchina.txt: 505) /.*\.com/s\.php\?id= .*.com/s\.php\?id= -# |http://*.cn/s.php?id=$script,third-party (easylistchina+easylist.txt: 491) +# |http://*.cn/s.php?id=$script,third-party (easylistchina.txt: 504) /.*\.cn/s\.php\?id= .*.cn/s\.php\?id= -# |http://*.cc/s.php?id=$script,third-party (easylistchina+easylist.txt: 490) +# |http://*.cc/s.php?id=$script,third-party (easylistchina.txt: 503) /.*\.cc/s\.php\?id= .*.cc/s\.php\?id= -# :9001/code/ (easylistchina+easylist.txt: 489) +# :9001/code/ (easylistchina.txt: 502) /.*:9001/code/ -# :8080/js/v2.1.js$third-party (easylistchina+easylist.txt: 488) +# :8080/js/v2.1.js$third-party (easylistchina.txt: 501) /.*:8080/js/v2\.1\.js -# :8080/js/v1.js$third-party (easylistchina+easylist.txt: 487) +# :8080/js/v1.js$third-party (easylistchina.txt: 500) /.*:8080/js/v1\.js -# /tourl.html?url= (easylistchina+easylist.txt: 486) +# /v.php?z=$script,third-party (easylistchina.txt: 499) +/(.*/)?v\.php\?z= +# /tourl.html?url= (easylistchina.txt: 498) /(.*/)?tourl\.html\?url= -# /svr/popwin.aspx?$third-party (easylistchina+easylist.txt: 485) +# /svr/popwin.aspx?$third-party (easylistchina.txt: 497) /(.*/)?svr/popwin\.aspx\? -# /pge/?s=$third-party (easylistchina+easylist.txt: 484) +# /pge/?s=$third-party (easylistchina.txt: 496) /(.*/)?pge/\?s= -# /pd2.js$third-party (easylistchina+easylist.txt: 483) +# /pd2.js$third-party (easylistchina.txt: 495) /(.*/)?pd2\.js pd2.js*. -# /pagecpv/* (easylistchina+easylist.txt: 482) +# /pagecpv/* (easylistchina.txt: 494) /(.*/)?pagecpv/.* -# /page/s.php?s=$third-party (easylistchina+easylist.txt: 481) +# /page/s.php?s=$third-party (easylistchina.txt: 493) /(.*/)?page/s\.php\?s= -# /page/index.php?s=$third-party (easylistchina+easylist.txt: 480) +# /page/index.php?s=$third-party (easylistchina.txt: 492) /(.*/)?page/index\.php\?s= -# /page/?s=$third-party (easylistchina+easylist.txt: 479) +# /page/?s=$third-party (easylistchina.txt: 491) /(.*/)?page/\?s= -# /mshow.aspx?AID= (easylistchina+easylist.txt: 478) +# /mshow.aspx?AID= (easylistchina.txt: 490) /(.*/)?mshow\.aspx\?AID= -# /mobile/mads.js (easylistchina+easylist.txt: 477) +# /mobile/mads.js (easylistchina.txt: 489) /(.*/)?mobile/mads\.js -# /js/cpv_dl.js (easylistchina+easylist.txt: 476) +# /js/cpv_dl.js (easylistchina.txt: 488) /(.*/)?js/cpv_dl\.js -# /i.php?z=$script,third-party (easylistchina+easylist.txt: 475) +# /i.php?z=$script,third-party (easylistchina.txt: 487) /(.*/)?i\.php\?z= -# /floatingcontent/*$third-party (easylistchina+easylist.txt: 474) +# /floatingcontent/*$third-party (easylistchina.txt: 486) /(.*/)?floatingcontent/.* -# /cpm/i.ashx? (easylistchina+easylist.txt: 473) +# /cpm/i.ashx? (easylistchina.txt: 485) /(.*/)?cpm/i\.ashx\? -# /code/popjs. (easylistchina+easylist.txt: 472) +# /code/popjs. (easylistchina.txt: 484) /(.*/)?code/popjs\. -# /code/pop_cpf. (easylistchina+easylist.txt: 471) +# /code/pop_cpf. (easylistchina.txt: 483) /(.*/)?code/pop_cpf\. -# /code/mypop.asp? (easylistchina+easylist.txt: 470) +# /code/mypop.asp? (easylistchina.txt: 482) /(.*/)?code/mypop\.asp\? -# /code/cpv.asp? (easylistchina+easylist.txt: 469) +# /code/cpv.asp? (easylistchina.txt: 481) /(.*/)?code/cpv\.asp\? -# /code/cpm.asp? (easylistchina+easylist.txt: 468) +# /code/cpm.asp? (easylistchina.txt: 480) /(.*/)?code/cpm\.asp\? -# /code/cpc.asp? (easylistchina+easylist.txt: 467) +# /code/cpc.asp? (easylistchina.txt: 479) /(.*/)?code/cpc\.asp\? -# /center?advId= (easylistchina+easylist.txt: 466) +# /center?advId= (easylistchina.txt: 478) /(.*/)?center\?advId= -# /AShow.aspx?AID= (easylistchina+easylist.txt: 465) +# /AShow.aspx?AID= (easylistchina.txt: 477) /(.*/)?AShow\.aspx\?AID= -# /adscpc/* (easylistchina+easylist.txt: 464) +# /adscpc/* (easylistchina.txt: 476) /(.*/)?adscpc/.* -# /99vjj/*$third-party (easylistchina+easylist.txt: 463) +# /99vjj/*$third-party (easylistchina.txt: 475) /(.*/)?99vjj/.* -# .com/mediaController.php?pid=$script,third-party (easylistchina+easylist.txt: 462) +# .com/mediaController.php?pid=$script,third-party (easylistchina.txt: 474) /.*\.com/mediaController\.php\?pid= .*.com/mediaController\.php\?pid= -# |http://ad. (easylistchina+easylist.txt: 260) +# |http://ad. (easylistchina.txt: 269) ad.*. -# |http://acs. (easylistchina+easylist.txt: 259) +# |http://acs. (easylistchina.txt: 268) acs.*. -# |http://*/s.js?sp=*&r=$third-party (easylistchina+easylist.txt: 258) +# |http://*/s.js?sp=*&r=$third-party (easylistchina.txt: 267) /(.*/)?s\.js\?sp=.*&r= -# |http://*/js/tc.js (easylistchina+easylist.txt: 257) +# |http://*/js/tc.js (easylistchina.txt: 266) /(.*/)?js/tc\.js -# |http://*/js/ad/ (easylistchina+easylist.txt: 256) +# |http://*/js/ad/ (easylistchina.txt: 265) /(.*/)?js/ad/ -# |http://*/gg3. (easylistchina+easylist.txt: 254) +# |http://*/gg3. (easylistchina.txt: 263) /(.*/)?gg3\. -# |http://*/gg2. (easylistchina+easylist.txt: 253) +# |http://*/gg2. (easylistchina.txt: 262) /(.*/)?gg2\. -# |http://*/gg1. (easylistchina+easylist.txt: 252) +# |http://*/gg1. (easylistchina.txt: 261) /(.*/)?gg1\. -# |http://*/ad.js?v= (easylistchina+easylist.txt: 250) +# |http://*/ad.js?v= (easylistchina.txt: 259) /(.*/)?ad\.js\?v= -# |http://*/ad.js?sn= (easylistchina+easylist.txt: 249) +# |http://*/ad.js?sn= (easylistchina.txt: 258) /(.*/)?ad\.js\?sn= -# |http://*/ad.*.js?v=*&sp= (easylistchina+easylist.txt: 248) +# |http://*/ad.*.js?v=*&sp= (easylistchina.txt: 257) /(.*/)?ad\..*\.js\?v=.*&sp= -# |http://*/*_ad.js (easylistchina+easylist.txt: 247) +# |http://*/*_ad.js (easylistchina.txt: 256) /(.*/)?.*_ad\.js -# |http://*.us/ad/ (easylistchina+easylist.txt: 246) +# |http://*.us/ad/ (easylistchina.txt: 255) /.*\.us/ad/ .*.us/ad/ -# |http://*.tv/ad/ (easylistchina+easylist.txt: 244) +# |http://*.tv/ad/ (easylistchina.txt: 253) /.*\.tv/ad/ .*.tv/ad/ -# |http://*.in/ad/ (easylistchina+easylist.txt: 243) +# |http://*.in/ad/ (easylistchina.txt: 252) /.*\.in/ad/ .*.in/ad/ -# |http://*.hk/ad/ (easylistchina+easylist.txt: 242) +# |http://*.hk/ad/ (easylistchina.txt: 251) /.*\.hk/ad/ .*.hk/ad/ -# |http://*.cn/ad/ (easylistchina+easylist.txt: 241) +# |http://*.cn/ad/ (easylistchina.txt: 250) /.*\.cn/ad/ .*.cn/ad/ -# |http://*.cc/ad/ (easylistchina+easylist.txt: 240) +# |http://*.cc/ad/ (easylistchina.txt: 249) /.*\.cc/ad/ .*.cc/ad/ -# _mobilebanner_v1_550x60.jpg (easylistchina+easylist.txt: 239) +# _mobilebanner_v1_550x60.jpg (easylistchina.txt: 248) /.*_mobilebanner_v1_550x60\.jpg -# _billboard_320x100.iframe. (easylistchina+easylist.txt: 238) +# _billboard_320x100.iframe. (easylistchina.txt: 247) /.*_billboard_320x100\.iframe\. -# =loginExtAD. (easylistchina+easylist.txt: 237) +# =loginExtAD. (easylistchina.txt: 246) /.*=loginExtAD\. -# :8898/ads_ (easylistchina+easylist.txt: 236) +# :8898/ads_ (easylistchina.txt: 245) /.*:8898/ads_ -# :8080/ad/ (easylistchina+easylist.txt: 235) +# :8080/ad/ (easylistchina.txt: 244) /.*:8080/ad/ -# :7011/ads/ (easylistchina+easylist.txt: 234) -/.*:7011/ads/ -# :1010/openV5.js (easylistchina+easylist.txt: 233) +# :1010/openV5.js (easylistchina.txt: 243) /.*:1010/openV5\.js -# /zzhzad/* (easylistchina+easylist.txt: 232) +# /zzhzad/* (easylistchina.txt: 242) /(.*/)?zzhzad/.* -# /znds/images/dangbeigif.gif (easylistchina+easylist.txt: 231) +# /znds/images/dangbeigif.gif (easylistchina.txt: 241) /(.*/)?znds/images/dangbeigif\.gif -# /xianxiashijie_ad.png (easylistchina+easylist.txt: 230) +# /xianxiashijie_ad.png (easylistchina.txt: 240) /(.*/)?xianxiashijie_ad\.png -# /wy96ad/* (easylistchina+easylist.txt: 229) +# /wy96ad/* (easylistchina.txt: 239) /(.*/)?wy96ad/.* -# /wp-content/themes/iMovies/js/tc_ (easylistchina+easylist.txt: 228) +# /wp-content/themes/iMovies/js/tc_ (easylistchina.txt: 238) /(.*/)?wp-content/themes/iMovies/js/tc_ -# /W3Cfuns_Adv/* (easylistchina+easylist.txt: 227) +# /W3Cfuns_Adv/* (easylistchina.txt: 237) /(.*/)?W3Cfuns_Adv/.* -# /uedbet/pause. (easylistchina+easylist.txt: 226) +# /uedbet/pause. (easylistchina.txt: 236) /(.*/)?uedbet/pause\. -# /u/_sponsor/* (easylistchina+easylist.txt: 225) +# /u/_sponsor/* (easylistchina.txt: 235) /(.*/)?u/_sponsor/.* -# /tuiguang/* (easylistchina+easylist.txt: 224) +# /tuiguang/* (easylistchina.txt: 234) /(.*/)?tuiguang/.* -# /ttmeiju/images/ts.gif (easylistchina+easylist.txt: 223) +# /ttmeiju/images/ts.gif (easylistchina.txt: 233) /(.*/)?ttmeiju/images/ts\.gif -# /tmall11nov2015-2.jpg (easylistchina+easylist.txt: 222) +# /tmall11nov2015-2.jpg (easylistchina.txt: 232) /(.*/)?tmall11nov2015-2\.jpg tmall11nov2015-2.jpg*. -# /tigtag_custom/include/popup. (easylistchina+easylist.txt: 221) +# /tigtag_custom/include/popup. (easylistchina.txt: 231) /(.*/)?tigtag_custom/include/popup\. -# /tigtag_custom/include/couplet. (easylistchina+easylist.txt: 220) +# /tigtag_custom/include/couplet. (easylistchina.txt: 230) /(.*/)?tigtag_custom/include/couplet\. -# /tigtag_custom/*_banner (easylistchina+easylist.txt: 219) +# /tigtag_custom/*_banner (easylistchina.txt: 229) /(.*/)?tigtag_custom/.*_banner -# /template/gg.js (easylistchina+easylist.txt: 218) +# /template/gg.js (easylistchina.txt: 228) /(.*/)?template/gg\.js -# /taobaoad.html (easylistchina+easylist.txt: 217) +# /taobaoad.html (easylistchina.txt: 227) /(.*/)?taobaoad\.html taobaoad.html*. -# /tanchuang. (easylistchina+easylist.txt: 216) +# /tanchuang. (easylistchina.txt: 226) /(.*/)?tanchuang\. tanchuang.*. -# /tanad.js (easylistchina+easylist.txt: 215) +# /tanad.js (easylistchina.txt: 225) /(.*/)?tanad\.js tanad.js*. -# /tan.js (easylistchina+easylist.txt: 214) +# /tan.js (easylistchina.txt: 224) /(.*/)?tan\.js tan.js*. -# /taihai/v2014/images/index/aa_10. (easylistchina+easylist.txt: 213) +# /taihai/v2014/images/index/aa_10. (easylistchina.txt: 223) /(.*/)?taihai/v2014/images/index/aa_10\. -# /sygg/* (easylistchina+easylist.txt: 212) +# /sygg/* (easylistchina.txt: 222) /(.*/)?sygg/.* -# /static/adsview/* (easylistchina+easylist.txt: 211) +# /sxgg/13 (easylistchina.txt: 221) +/(.*/)?sxgg/13 +# /sxgg/12.js (easylistchina.txt: 220) +/(.*/)?sxgg/12\.js +# /static/adsview/* (easylistchina.txt: 219) /(.*/)?static/adsview/.* -# /ssdxad.swf (easylistchina+easylist.txt: 210) +# /ssdxad.swf (easylistchina.txt: 218) /(.*/)?ssdxad\.swf ssdxad.swf*. -# /source/plugin/mama_tips/* (easylistchina+easylist.txt: 209) +# /source/plugin/mama_tips/* (easylistchina.txt: 217) /(.*/)?source/plugin/mama_tips/.* -# /sogouAD. (easylistchina+easylist.txt: 208) +# /sogouAD. (easylistchina.txt: 216) /(.*/)?sogouAD\. sogouAD.*. -# /show.js?sp=*&oid= (easylistchina+easylist.txt: 207) +# /show.js?sp=*&oid= (easylistchina.txt: 215) /(.*/)?show\.js\?sp=.*&oid= -# /Runtime/js/top960.js (easylistchina+easylist.txt: 206) +# /Runtime/js/top960.js (easylistchina.txt: 214) /(.*/)?Runtime/js/top960\.js -# /runtime/js/index960.js (easylistchina+easylist.txt: 205) +# /runtime/js/index960.js (easylistchina.txt: 213) /(.*/)?runtime/js/index960\.js -# /qqyouyuead/* (easylistchina+easylist.txt: 204) +# /qqyouyuead/* (easylistchina.txt: 212) /(.*/)?qqyouyuead/.* -# /qqlive/conf/playerlottery/* (easylistchina+easylist.txt: 203) +# /qqlive/conf/playerlottery/* (easylistchina.txt: 211) /(.*/)?qqlive/conf/playerlottery/.* -# /qqguojiad/* (easylistchina+easylist.txt: 202) +# /qqguojiad/* (easylistchina.txt: 210) /(.*/)?qqguojiad/.* -# /qpxl.js (easylistchina+easylist.txt: 201) +# /qpxl.js (easylistchina.txt: 209) /(.*/)?qpxl\.js qpxl.js*. -# /QianFanAdPalyer. (easylistchina+easylist.txt: 200) +# /QianFanAdPalyer. (easylistchina.txt: 208) /(.*/)?QianFanAdPalyer\. QianFanAdPalyer.*. -# /proxy.html?id= (easylistchina+easylist.txt: 199) +# /proxy.html?id= (easylistchina.txt: 207) /(.*/)?proxy\.html\?id= -# /proxy.htm?id= (easylistchina+easylist.txt: 198) +# /proxy.htm?id= (easylistchina.txt: 206) /(.*/)?proxy\.htm\?id= -# /pop_DJ2010.swf (easylistchina+easylist.txt: 197) +# /pop_DJ2010.swf (easylistchina.txt: 205) /(.*/)?pop_DJ2010\.swf -# /plugin.php?id=popad_7ree& (easylistchina+easylist.txt: 196) +# /plugin.php?id=popad_7ree& (easylistchina.txt: 204) /(.*/)?plugin\.php\?id=popad_7ree& -# /pic/ad/* (easylistchina+easylist.txt: 194) +# /pic/ad/* (easylistchina.txt: 202) /(.*/)?pic/ad/.* -# /piaofu.js (easylistchina+easylist.txt: 193) +# /piaofu.js (easylistchina.txt: 201) /(.*/)?piaofu\.js piaofu.js*. -# /pc/Tpl/baibaipc/js/* (easylistchina+easylist.txt: 192) +# /pc/Tpl/baibaipc/js/* (easylistchina.txt: 200) /(.*/)?pc/Tpl/baibaipc/js/.* -# /pc/Tpl/baibaipc//js/* (easylistchina+easylist.txt: 191) +# /pc/Tpl/baibaipc//js/* (easylistchina.txt: 199) /(.*/)?pc/Tpl/baibaipc//js/.* -# /paypic/* (easylistchina+easylist.txt: 190) +# /paypic/* (easylistchina.txt: 198) /(.*/)?paypic/.* -# /newsyd/templates/sponsor/* (easylistchina+easylist.txt: 189) +# /newsyd/templates/sponsor/* (easylistchina.txt: 197) /(.*/)?newsyd/templates/sponsor/.* -# /new_site_topad^ (easylistchina+easylist.txt: 188) +# /new_site_topad^ (easylistchina.txt: 196) /(.*/)?new_site_topad[^\w%.-] -# /nanrenpeng/ads/* (easylistchina+easylist.txt: 187) +# /nanrenpeng/ads/* (easylistchina.txt: 195) /(.*/)?nanrenpeng/ads/.* -# /myimg/alimama2014.html (easylistchina+easylist.txt: 186) +# /myimg/alimama2014.html (easylistchina.txt: 194) /(.*/)?myimg/alimama2014\.html -# /module/adsview/* (easylistchina+easylist.txt: 185) +# /moneymaker-banners/ads_ (easylistchina.txt: 193) +/(.*/)?moneymaker-banners/ads_ +# /module/adsview/* (easylistchina.txt: 192) /(.*/)?module/adsview/.* -# /main/s? (easylistchina+easylist.txt: 184) +# /main/s? (easylistchina.txt: 191) /(.*/)?main/s\? -# /main.js?v=*&sp=*&ty= (easylistchina+easylist.txt: 183) +# /main.js?v=*&sp=*&ty= (easylistchina.txt: 190) /(.*/)?main\.js\?v=.*&sp=.*&ty= -# /lfadvertise.js (easylistchina+easylist.txt: 182) +# /lfadvertise.js (easylistchina.txt: 189) /(.*/)?lfadvertise\.js lfadvertise.js*. -# /lfAD2v1.1.js (easylistchina+easylist.txt: 181) +# /lfAD2v1.1.js (easylistchina.txt: 188) /(.*/)?lfAD2v1\.1\.js lfAD2v1.1.js*. -# /lenovo/pc/all.js (easylistchina+easylist.txt: 180) +# /lenovo/pc/all.js (easylistchina.txt: 187) /(.*/)?lenovo/pc/all\.js -# /kuaiyun-728-91. (easylistchina+easylist.txt: 179) +# /kuaiyun-728-91. (easylistchina.txt: 186) /(.*/)?kuaiyun-728-91\. kuaiyun-728-91.*. -# /k960g90. (easylistchina+easylist.txt: 178) +# /k960g90. (easylistchina.txt: 185) /(.*/)?k960g90\. k960g90.*. -# /k300g250. (easylistchina+easylist.txt: 177) +# /k300g250. (easylistchina.txt: 184) /(.*/)?k300g250\. k300g250.*. -# /k120g270. (easylistchina+easylist.txt: 176) +# /k120g270. (easylistchina.txt: 183) /(.*/)?k120g270\. k120g270.*. -# /jumbo_banner_Gif_ (easylistchina+easylist.txt: 175) +# /jumbo_banner_Gif_ (easylistchina.txt: 182) /(.*/)?jumbo_banner_Gif_ -# /jsadv/* (easylistchina+easylist.txt: 174) +# /jsadv/* (easylistchina.txt: 181) /(.*/)?jsadv/.* -# /js/utils78.js (easylistchina+easylist.txt: 173) +# /js/utils78.js (easylistchina.txt: 180) /(.*/)?js/utils78\.js -# /js/utils51.js (easylistchina+easylist.txt: 172) +# /js/utils51.js (easylistchina.txt: 179) /(.*/)?js/utils51\.js -# /js/bocaiadv. (easylistchina+easylist.txt: 171) +# /js/guanggao_gg.js (easylistchina.txt: 178) +/(.*/)?js/guanggao_gg\.js +# /js/bocaiadv. (easylistchina.txt: 177) /(.*/)?js/bocaiadv\. -# /js/ads/zuoxiajiao.js (easylistchina+easylist.txt: 170) +# /js/ads/zuoxiajiao.js (easylistchina.txt: 176) /(.*/)?js/ads/zuoxiajiao\.js -# /js/ads/youxiajiao.js (easylistchina+easylist.txt: 169) +# /js/ads/youxiajiao.js (easylistchina.txt: 175) /(.*/)?js/ads/youxiajiao\.js -# /js/ads/top (easylistchina+easylist.txt: 168) -/(.*/)?js/ads/top -# /js/ads/piao.js (easylistchina+easylist.txt: 167) +# /js/ads/yezi (easylistchina.txt: 174) +/(.*/)?js/ads/yezi +# /js/ads/to (easylistchina.txt: 173) +/(.*/)?js/ads/to +# /js/ads/piao.js (easylistchina.txt: 172) /(.*/)?js/ads/piao\.js -# /js/ads/dui.js (easylistchina+easylist.txt: 166) +# /js/ads/neiye (easylistchina.txt: 171) +/(.*/)?js/ads/neiye +# /js/ads/dui.js (easylistchina.txt: 170) /(.*/)?js/ads/dui\.js -# /j/Lad6_2.js (easylistchina+easylist.txt: 165) -/(.*/)?j/Lad6_2\.js -# /ina_ad_ (easylistchina+easylist.txt: 164) +# /ina_ad_ (easylistchina.txt: 169) /(.*/)?ina_ad_ -# /h/k.php?u=*&l=*&v=$third-party (easylistchina+easylist.txt: 163) +# /h/k.php?u=*&l=*&v=$third-party (easylistchina.txt: 168) /(.*/)?h/k\.php\?u=.*&l=.*&v= -# /guanggao/* (easylistchina+easylist.txt: 162) +# /guanggao2. (easylistchina.txt: 167) +/(.*/)?guanggao2\. +guanggao2.*. +# /guanggao/* (easylistchina.txt: 166) /(.*/)?guanggao/.* -# /guanggao. (easylistchina+easylist.txt: 161) +# /guanggao. (easylistchina.txt: 165) /(.*/)?guanggao\. guanggao.*. -# /guangg/* (easylistchina+easylist.txt: 160) +# /guangg/* (easylistchina.txt: 164) /(.*/)?guangg/.* -# /guangao/* (easylistchina+easylist.txt: 159) +# /guangao/* (easylistchina.txt: 163) /(.*/)?guangao/.* -# /guang/930x90. (easylistchina+easylist.txt: 158) +# /guang/930x90. (easylistchina.txt: 162) /(.*/)?guang/930x90\. -# /ggtp/* (easylistchina+easylist.txt: 157) +# /ggtp/* (easylistchina.txt: 161) /(.*/)?ggtp/.* -# /ggpic/* (easylistchina+easylist.txt: 156) +# /ggpic/* (easylistchina.txt: 160) /(.*/)?ggpic/.* -# /ggjs/* (easylistchina+easylist.txt: 155) +# /ggjs/* (easylistchina.txt: 159) /(.*/)?ggjs/.* -# /ggao/* (easylistchina+easylist.txt: 154) +# /ggao/* (easylistchina.txt: 158) /(.*/)?ggao/.* -# /ggao. (easylistchina+easylist.txt: 153) +# /ggao. (easylistchina.txt: 157) /(.*/)?ggao\. ggao.*. -# /ggad/* (easylistchina+easylist.txt: 152) +# /ggad/* (easylistchina.txt: 156) /(.*/)?ggad/.* -# /gg5. (easylistchina+easylist.txt: 151) +# /gg5. (easylistchina.txt: 155) /(.*/)?gg5\. gg5.*. -# /gg4. (easylistchina+easylist.txt: 150) +# /gg4. (easylistchina.txt: 154) /(.*/)?gg4\. gg4.*. -# /gaog/* (easylistchina+easylist.txt: 149) +# /gaog/* (easylistchina.txt: 153) /(.*/)?gaog/.* -# /floatad2. (easylistchina+easylist.txt: 148) +# /floatad2. (easylistchina.txt: 152) /(.*/)?floatad2\. floatad2.*. -# /float_r.js (easylistchina+easylist.txt: 146) +# /float_r.js (easylistchina.txt: 150) /(.*/)?float_r\.js -# /ettoday/gemini/* (easylistchina+easylist.txt: 145) +# /ettoday/gemini/* (easylistchina.txt: 149) /(.*/)?ettoday/gemini/.* -# /duilian_gg. (easylistchina+easylist.txt: 144) +# /dy_66jjss/* (easylistchina.txt: 148) +/(.*/)?dy_66jjss/.* +# /duilian_gg. (easylistchina.txt: 147) /(.*/)?duilian_gg\. -# /duilian2. (easylistchina+easylist.txt: 143) +# /duilian2. (easylistchina.txt: 146) /(.*/)?duilian2\. duilian2.*. -# /diantan.js (easylistchina+easylist.txt: 141) +# /diantan.js (easylistchina.txt: 144) /(.*/)?diantan\.js diantan.js*. -# /data/cache/myad- (easylistchina+easylist.txt: 140) +# /data/cache/myad- (easylistchina.txt: 143) /(.*/)?data/cache/myad- -# /data/ad/* (easylistchina+easylist.txt: 139) +# /data/ad/* (easylistchina.txt: 142) /(.*/)?data/ad/.* -# /cpro/ui/dm.js (easylistchina+easylist.txt: 138) -/(.*/)?cpro/ui/dm\.js -# /content/plugins/em_ad/* (easylistchina+easylist.txt: 137) +# /cpro/ui/* (easylistchina.txt: 141) +/(.*/)?cpro/ui/.* +# /content/plugins/em_ad/* (easylistchina.txt: 140) /(.*/)?content/plugins/em_ad/.* -# /common/cf/*$image,object (easylistchina+easylist.txt: 136) +# /common/cf/*$image,object (easylistchina.txt: 139) /(.*/)?common/cf/.* -# /comiis_kmsjx3hlx/ads/* (easylistchina+easylist.txt: 135) +# /comiis_kmsjx3hlx/ads/* (easylistchina.txt: 138) /(.*/)?comiis_kmsjx3hlx/ads/.* -# /comiis_19lou/ads/* (easylistchina+easylist.txt: 134) +# /comiis_19lou/ads/* (easylistchina.txt: 137) /(.*/)?comiis_19lou/ads/.* -# /clicktotal/ClickTotal.js (easylistchina+easylist.txt: 133) +# /clicktotal/ClickTotal.js (easylistchina.txt: 136) /(.*/)?clicktotal/ClickTotal\.js -# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina+easylist.txt: 132) +# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina.txt: 135) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*pagead2\. -# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina+easylist.txt: 131) +# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina.txt: 134) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*p\.tanx\.com -# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina+easylist.txt: 130) +# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina.txt: 133) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.overture\.com -# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina+easylist.txt: 129) +# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina.txt: 132) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.humanding\.com -# /caiguu_gg_ (easylistchina+easylist.txt: 128) +# /caiguu_gg_ (easylistchina.txt: 131) /(.*/)?caiguu_gg_ -# /caches/poster_js/* (easylistchina+easylist.txt: 127) +# /caches/poster_js/* (easylistchina.txt: 130) /(.*/)?caches/poster_js/.* -# /cache/ad_js/* (easylistchina+easylist.txt: 126) +# /cache/ad_js/* (easylistchina.txt: 129) /(.*/)?cache/ad_js/.* -# /btba/ad/* (easylistchina+easylist.txt: 125) +# /btba/ad/* (easylistchina.txt: 128) /(.*/)?btba/ad/.* -# /botad.html (easylistchina+easylist.txt: 124) +# /botad.html (easylistchina.txt: 127) /(.*/)?botad\.html botad.html*. -# /bbh_ad_ (easylistchina+easylist.txt: 123) +# /bbh_ad_ (easylistchina.txt: 126) /(.*/)?bbh_ad_ -# /bbh_ad. (easylistchina+easylist.txt: 122) +# /bbh_ad. (easylistchina.txt: 125) /(.*/)?bbh_ad\. -# /Banner-pcbeta- (easylistchina+easylist.txt: 121) +# /Banner-pcbeta- (easylistchina.txt: 124) /(.*/)?Banner-pcbeta- Banner-pcbeta-*. -# /aoyou372down300_ (easylistchina+easylist.txt: 120) +# /aoyou372down300_ (easylistchina.txt: 123) /(.*/)?aoyou372down300_ -# /ajds/* (easylistchina+easylist.txt: 119) +# /ajds/* (easylistchina.txt: 122) /(.*/)?ajds/.* -# /aipaiPlayFull2. (easylistchina+easylist.txt: 118) -/(.*/)?aipaiPlayFull2\. -aipaiPlayFull2.*. -# /advpic/* (easylistchina+easylist.txt: 117) +# /aipaiPlayFull2.js?0. (easylistchina.txt: 121) +/(.*/)?aipaiPlayFull2\.js\?0\. +# /adx-exchange. (easylistchina.txt: 120) +/(.*/)?adx-exchange\. +adx-exchange.*. +# /advpic/* (easylistchina.txt: 119) /(.*/)?advpic/.* -# /AdverJS/* (easylistchina+easylist.txt: 116) +# /AdverJS/* (easylistchina.txt: 118) /(.*/)?AdverJS/.* -# /adpv?cn= (easylistchina+easylist.txt: 115) +# /adpv?cn= (easylistchina.txt: 117) /(.*/)?adpv\?cn= -# /adpuba/* (easylistchina+easylist.txt: 114) +# /adpuba/* (easylistchina.txt: 116) /(.*/)?adpuba/.* -# /adpro.js (easylistchina+easylist.txt: 113) +# /adpro.js (easylistchina.txt: 115) /(.*/)?adpro\.js adpro.js*. -# /AdPreview/* (easylistchina+easylist.txt: 112) -/(.*/)?AdPreview/.* -# /adpfile/* (easylistchina+easylist.txt: 111) +# /adpfile/* (easylistchina.txt: 114) /(.*/)?adpfile/.* -# /adintrs/* (easylistchina+easylist.txt: 110) +# /adintrs/* (easylistchina.txt: 113) /(.*/)?adintrs/.* -# /adblockTester2.js (easylistchina+easylist.txt: 109) +# /adblockTester2.js (easylistchina.txt: 112) /(.*/)?adblockTester2\.js adblockTester2.js*. -# /adblockTester1.js (easylistchina+easylist.txt: 108) +# /adblockTester1.js (easylistchina.txt: 111) /(.*/)?adblockTester1\.js adblockTester1.js*. -# /adblockTester.js (easylistchina+easylist.txt: 107) +# /adblockTester.js (easylistchina.txt: 110) /(.*/)?adblockTester\.js adblockTester.js*. -# /AD2v1.1.js (easylistchina+easylist.txt: 106) +# /AD2v1.1.js (easylistchina.txt: 109) /(.*/)?AD2v1\.1\.js AD2v1.1.js*. -# /acmsd/* (easylistchina+easylist.txt: 105) +# /acmsd/* (easylistchina.txt: 108) /(.*/)?acmsd/.* -# /a/p?adid= (easylistchina+easylist.txt: 104) +# /a/p?adid= (easylistchina.txt: 107) /(.*/)?a/p\?adid= -# /9115gg/* (easylistchina+easylist.txt: 103) +# /9115gg/* (easylistchina.txt: 106) /(.*/)?9115gg/.* -# /119g/640x60_ (easylistchina+easylist.txt: 102) +# /119g/640x60_ (easylistchina.txt: 105) /(.*/)?119g/640x60_ -# .us/js/ads/ (easylistchina+easylist.txt: 101) +# .us/js/ads/ (easylistchina.txt: 104) /.*\.us/js/ads/ .*.us/js/ads/ -# .net/js/ads/ (easylistchina+easylist.txt: 100) +# .net/js/ads/ (easylistchina.txt: 103) /.*\.net/js/ads/ .*.net/js/ads/ -# .js?advertID= (easylistchina+easylist.txt: 99) +# .js?advertID= (easylistchina.txt: 102) /.*\.js\?advertID= -# .info/js/ads/ (easylistchina+easylist.txt: 98) +# .info/js/alls_top.js (easylistchina.txt: 101) +/.*\.info/js/alls_top\.js +.*.info/js/alls_top\.js +# .info/js/alls_foot.js (easylistchina.txt: 100) +/.*\.info/js/alls_foot\.js +.*.info/js/alls_foot\.js +# .info/js/ads/ (easylistchina.txt: 99) /.*\.info/js/ads/ .*.info/js/ads/ -# .info/ad/ (easylistchina+easylist.txt: 97) +# .info/ad/ (easylistchina.txt: 98) /.*\.info/ad/ .*.info/ad/ -# .info/ad.js (easylistchina+easylist.txt: 96) +# .info/ad.js (easylistchina.txt: 97) /.*\.info/ad\.js .*.info/ad\.js -# .in/js/ads/ (easylistchina+easylist.txt: 95) +# .in/js/ads/ (easylistchina.txt: 96) /.*\.in/js/ads/ .*.in/js/ads/ -# .com/vodad.js (easylistchina+easylist.txt: 94) +# .com/vodad.js (easylistchina.txt: 95) /.*\.com/vodad\.js .*.com/vodad\.js -# .com/js/ad_ (easylistchina+easylist.txt: 93) +# .com/pc/ad/ (easylistchina.txt: 94) +/.*\.com/pc/ad/ +.*.com/pc/ad/ +# .com/js/alls_top.js (easylistchina.txt: 93) +/.*\.com/js/alls_top\.js +.*.com/js/alls_top\.js +# .com/js/alls_foot.js (easylistchina.txt: 92) +/.*\.com/js/alls_foot\.js +.*.com/js/alls_foot\.js +# .com/js/ad_ (easylistchina.txt: 91) /.*\.com/js/ad_ .*.com/js/ad_ -# .com/a_d/ (easylistchina+easylist.txt: 92) +# .com/a_d/ (easylistchina.txt: 90) /.*\.com/a_d/ .*.com/a_d/ -# .co/js/ads/ (easylistchina+easylist.txt: 91) +# .co/js/ads/ (easylistchina.txt: 89) /.*\.co/js/ads/ .*.co/js/ads/ -# .cn/js/ads/ (easylistchina+easylist.txt: 90) +# .cn/js/ads/ (easylistchina.txt: 88) /.*\.cn/js/ads/ .*.cn/js/ads/ -# .cn/ads/ (easylistchina+easylist.txt: 89) +# .cn/ads/ (easylistchina.txt: 87) /.*\.cn/ads/ .*.cn/ads/ -# .cc/js/ads/ (easylistchina+easylist.txt: 88) +# .cc/js/ads/ (easylistchina.txt: 86) /.*\.cc/js/ads/ .*.cc/js/ads/ -# ||yy32.com^$third-party (easylistchina+easylist.txt: 85) +# .bl.test15. (easylistchina.txt: 85) +/.*\.bl\.test15\. +.*.bl.test15.*. +# ||yy32.com^$third-party (easylistchina.txt: 82) .yy32.com -# ||xq12.com^$third-party (easylistchina+easylist.txt: 84) +# ||xq12.com^$third-party (easylistchina.txt: 81) .xq12.com -# ||xixianad.com^$third-party (easylistchina+easylist.txt: 83) +# ||xixianad.com^$third-party (easylistchina.txt: 80) .xixianad.com -# ||wofan.net^$third-party (easylistchina+easylist.txt: 82) +# ||wofan.net^$third-party (easylistchina.txt: 79) .wofan.net -# ||v.xi666.com^$third-party (easylistchina+easylist.txt: 81) +# ||v.xi666.com^$third-party (easylistchina.txt: 78) .v.xi666.com -# ||ugoooo.com^$third-party (easylistchina+easylist.txt: 80) +# ||ugoooo.com^$third-party (easylistchina.txt: 77) .ugoooo.com -# ||uctrac.com^$third-party (easylistchina+easylist.txt: 79) +# ||uctrac.com^$third-party (easylistchina.txt: 76) .uctrac.com -# ||ubcpm.com^$third-party (easylistchina+easylist.txt: 78) +# ||ubcpm.com^$third-party (easylistchina.txt: 75) .ubcpm.com -# ||tuiguang.178.com^ (easylistchina+easylist.txt: 77) +# ||tuiguang.178.com^ (easylistchina.txt: 74) .tuiguang.178.com -# ||szvr.com^$third-party (easylistchina+easylist.txt: 76) +# ||szvr.com^$third-party (easylistchina.txt: 73) .szvr.com -# ||sitemaji.com^$third-party (easylistchina+easylist.txt: 75) +# ||sitemaji.com^$third-party (easylistchina.txt: 72) .sitemaji.com -# ||samboc.com^$third-party (easylistchina+easylist.txt: 74) +# ||samboc.com^$third-party (easylistchina.txt: 71) .samboc.com -# ||s.yimg.com/ja/ap/tw/js/ (easylistchina+easylist.txt: 72) +# ||s.yimg.com/ja/ap/tw/js/ (easylistchina.txt: 69) .s.yimg.com/ja/ap/tw/js/ -# ||rekanw.com^$third-party (easylistchina+easylist.txt: 71) +# ||rekanw.com^$third-party (easylistchina.txt: 68) .rekanw.com -# ||rayli.com.cn^$third-party (easylistchina+easylist.txt: 70) +# ||rayli.com.cn^$third-party (easylistchina.txt: 67) .rayli.com.cn -# ||qling.com^$third-party (easylistchina+easylist.txt: 69) +# ||qling.com^$third-party (easylistchina.txt: 66) .qling.com -# ||oeya.com^$third-party (easylistchina+easylist.txt: 68) +# ||oeya.com^$third-party (easylistchina.txt: 65) .oeya.com -# ||niwota.com^$third-party (easylistchina+easylist.txt: 67) +# ||niwota.com^$third-party (easylistchina.txt: 64) .niwota.com -# ||mosa86.com^$third-party (easylistchina+easylist.txt: 66) +# ||mosa86.com^$third-party (easylistchina.txt: 63) .mosa86.com -# ||lu.sogou.com^$subdocument (easylistchina+easylist.txt: 65) +# ||lu.sogou.com^$subdocument (easylistchina.txt: 62) .lu.sogou.com -# ||log.interest.mix.sina.com.cn^ (easylistchina+easylist.txt: 64) +# ||log.interest.mix.sina.com.cn^ (easylistchina.txt: 61) .log.interest.mix.sina.com.cn -# ||lm.35.com^$third-party (easylistchina+easylist.txt: 63) +# ||lm.35.com^$third-party (easylistchina.txt: 60) .lm.35.com -# ||lianjie.phpwind.com^$third-party (easylistchina+easylist.txt: 62) +# ||lianjie.phpwind.com^$third-party (easylistchina.txt: 59) .lianjie.phpwind.com -# ||kuqi.com^$third-party (easylistchina+easylist.txt: 61) +# ||kuqi.com^$third-party (easylistchina.txt: 58) .kuqi.com -# ||kuaiwan.com^$third-party (easylistchina+easylist.txt: 60) +# ||kuaiwan.com^$third-party (easylistchina.txt: 57) .kuaiwan.com -# ||image.qndown.com^$third-party (easylistchina+easylist.txt: 59) +# ||image.qndown.com^$third-party (easylistchina.txt: 56) .image.qndown.com -# ||ilepai.com^$third-party (easylistchina+easylist.txt: 58) +# ||ilepai.com^$third-party (easylistchina.txt: 55) .ilepai.com -# ||ifocus.cn^$third-party (easylistchina+easylist.txt: 57) +# ||ifocus.cn^$third-party (easylistchina.txt: 54) .ifocus.cn -# ||hz3137.com^$third-party (easylistchina+easylist.txt: 56) +# ||hz3137.com^$third-party (easylistchina.txt: 53) .hz3137.com -# ||housefun.com.tw^$third-party (easylistchina+easylist.txt: 55) +# ||housefun.com.tw^$third-party (easylistchina.txt: 52) .housefun.com.tw -# ||hiad.myweb.hinet.net^ (easylistchina+easylist.txt: 54) +# ||hiad.myweb.hinet.net^ (easylistchina.txt: 51) .hiad.myweb.hinet.net -# ||googleadsl.com^$third-party (easylistchina+easylist.txt: 53) +# ||googleadsl.com^$third-party (easylistchina.txt: 50) .googleadsl.com -# ||flashwing.net^$third-party (easylistchina+easylist.txt: 52) +# ||flashwing.net^$third-party (easylistchina.txt: 49) .flashwing.net -# ||ee4kdushuba.com^$third-party (easylistchina+easylist.txt: 51) +# ||ee4kdushuba.com^$third-party (easylistchina.txt: 48) .ee4kdushuba.com -# ||dingge.cc^$third-party (easylistchina+easylist.txt: 50) +# ||dingge.cc^$third-party (easylistchina.txt: 47) .dingge.cc -# ||dian5000.com^$third-party (easylistchina+easylist.txt: 49) +# ||dian5000.com^$third-party (easylistchina.txt: 46) .dian5000.com -# ||cpm360.com^$third-party (easylistchina+easylist.txt: 48) +# ||cpm360.com^$third-party (easylistchina.txt: 45) .cpm360.com -# ||caiyifz.com^$third-party (easylistchina+easylist.txt: 47) +# ||caiyifz.com^$third-party (easylistchina.txt: 44) .caiyifz.com -# ||buzzads.com^$third-party (easylistchina+easylist.txt: 46) +# ||buzzads.com^$third-party (easylistchina.txt: 43) .buzzads.com -# ||boosj.com^$third-party (easylistchina+easylist.txt: 45) +# ||boosj.com^$third-party (easylistchina.txt: 42) .boosj.com -# ||bmw100.cn^$third-party (easylistchina+easylist.txt: 44) +# ||bmw100.cn^$third-party (easylistchina.txt: 41) .bmw100.cn -# ||blog.xuite.net/_public/js/ysmad.js (easylistchina+easylist.txt: 43) +# ||blog.xuite.net/_public/js/ysmad.js (easylistchina.txt: 40) .blog.xuite.net/_public/js/ysmad\.js -# ||baitaiad.com^$third-party (easylistchina+easylist.txt: 42) +# ||baitaiad.com^$third-party (easylistchina.txt: 39) .baitaiad.com -# ||artxun.com^$third-party (easylistchina+easylist.txt: 41) +# ||artxun.com^$third-party (easylistchina.txt: 38) .artxun.com -# ||aifei.info^$third-party (easylistchina+easylist.txt: 40) +# ||aifei.info^$third-party (easylistchina.txt: 37) .aifei.info -# ||ads80.com^$third-party (easylistchina+easylist.txt: 39) +# ||ads80.com^$third-party (easylistchina.txt: 36) .ads80.com -# ||adrs.sdo.com^ (easylistchina+easylist.txt: 38) +# ||adrs.sdo.com^ (easylistchina.txt: 35) .adrs.sdo.com -# ||admaji.com^$third-party (easylistchina+easylist.txt: 37) +# ||admaji.com^$third-party (easylistchina.txt: 34) .admaji.com -# ||a.youdao.com^ (easylistchina+easylist.txt: 36) +# ||a.youdao.com^ (easylistchina.txt: 33) .a.youdao.com -# ||77zhuan.com^$third-party (easylistchina+easylist.txt: 35) +# ||77zhuan.com^$third-party (easylistchina.txt: 32) .77zhuan.com -# ||7794.com^$third-party (easylistchina+easylist.txt: 34) +# ||7794.com^$third-party (easylistchina.txt: 31) .7794.com -# ||52lover.info^$third-party (easylistchina+easylist.txt: 33) +# ||52lover.info^$third-party (easylistchina.txt: 30) .52lover.info -# ||49ko.com^$third-party (easylistchina+easylist.txt: 32) +# ||49ko.com^$third-party (easylistchina.txt: 29) .49ko.com -# ||37pk49.com^$third-party (easylistchina+easylist.txt: 31) +# ||37pk49.com^$third-party (easylistchina.txt: 28) .37pk49.com -# ||1x3x.com^$third-party (easylistchina+easylist.txt: 30) +# ||1x3x.com^$third-party (easylistchina.txt: 27) .1x3x.com -# ||12291.com^$third-party (easylistchina+easylist.txt: 29) +# ||12291.com^$third-party (easylistchina.txt: 26) .12291.com -# ||116b.com^$third-party (easylistchina+easylist.txt: 28) +# ||116b.com^$third-party (easylistchina.txt: 25) .116b.com -# ||114lm.com^$third-party (easylistchina+easylist.txt: 27) +# ||114lm.com^$third-party (easylistchina.txt: 24) .114lm.com -# /tan1.js (easylistchina+easylist.txt: 21) +# /tan1.js (easylistchina.txt: 18) /(.*/)?tan1\.js tan1.js*. -# /attachments/ad/* (easylistchina+easylist.txt: 20) +# /attachments/ad/* (easylistchina.txt: 17) /(.*/)?attachments/ad/.* -# /adflash/* (easylistchina+easylist.txt: 19) +# /adflash/* (easylistchina.txt: 16) /(.*/)?adflash/.* -# ||yablyk.com/wp-content/plugins/popups/ (advblock.txt: 7169) -.yablyk.com/wp-content/plugins/popups/ -# ||podrobnosti.ua/js/jqModal.js (advblock.txt: 7168) -.podrobnosti.ua/js/jqModal\.js -# ||metylancreativ.com/js/socialPopup.js (advblock.txt: 7167) -.metylancreativ.com/js/socialPopup\.js -# ||comprofit.ru/popup/ (advblock.txt: 7166) -.comprofit.ru/popup/ -# ||api.traq.li^$third-party (advblock.txt: 7165) -.api.traq.li -# ||zlograd.ru^ (advblock.txt: 7122) -.zlograd.ru -# ||zavod.chuvaz.ru^ (advblock.txt: 7121) -.zavod.chuvaz.ru -# ||zaovrazhnoe.ru^ (advblock.txt: 7120) -.zaovrazhnoe.ru -# ||uroki21.ru^ (advblock.txt: 7119) -.uroki21.ru -# ||tatar.4kazan.ru^ (advblock.txt: 7118) -.tatar.4kazan.ru -# ||sukterka.ru^ (advblock.txt: 7117) -.sukterka.ru -# ||sovch.ru^ (advblock.txt: 7116) -.sovch.ru -# ||serdce-volgi.ru^ (advblock.txt: 7115) -.serdce-volgi.ru -# ||randoom.ru^ (advblock.txt: 7114) -.randoom.ru -# ||procheb.ru^ (advblock.txt: 7113) -.procheb.ru -# ||nedv21.ru^ (advblock.txt: 7112) -.nedv21.ru -# ||my.megavstrecha.ru^ (advblock.txt: 7111) -.my.megavstrecha.ru -# ||lubov21.ru^ (advblock.txt: 7110) -.lubov21.ru -# ||kino.afisha21.ru^ (advblock.txt: 7109) -.kino.afisha21.ru -# ||it-cheb.ru^ (advblock.txt: 7108) -.it-cheb.ru -# ||icheb.ru^ (advblock.txt: 7107) -.icheb.ru -# ||host.torrent21.ru^ (advblock.txt: 7106) -.host.torrent21.ru -# ||gorod.shumerlya.ru^ (advblock.txt: 7105) -.gorod.shumerlya.ru -# ||echeb.ru^ (advblock.txt: 7104) -.echeb.ru -# ||doroga.kugesi.ru^ (advblock.txt: 7103) -.doroga.kugesi.ru -# ||doloj.ru^ (advblock.txt: 7102) -.doloj.ru -# ||dns21.ru^ (advblock.txt: 7101) -.dns21.ru -# ||devki21.ru^ (advblock.txt: 7100) -.devki21.ru -# ||chuvashskoe.ru^ (advblock.txt: 7099) -.chuvashskoe.ru -# ||chepaev.ru^ (advblock.txt: 7098) -.chepaev.ru -# ||chebtv.ru^ (advblock.txt: 7097) -.chebtv.ru -# ||chebtube.ru^ (advblock.txt: 7096) -.chebtube.ru -# ||chebru.ru^ (advblock.txt: 7095) -.chebru.ru -# ||chebradio.ru^ (advblock.txt: 7094) -.chebradio.ru -# ||cheboksar.ru^ (advblock.txt: 7093) -.cheboksar.ru -# ||chebogsary.ru^ (advblock.txt: 7092) -.chebogsary.ru -# ||chebfm.ru^ (advblock.txt: 7091) -.chebfm.ru -# ||cheb-rielt.ru^ (advblock.txt: 7090) -.cheb-rielt.ru -# ||alexey.blog21.ru^ (advblock.txt: 7089) -.alexey.blog21.ru -# ||adres21.ru^ (advblock.txt: 7088) -.adres21.ru -# ||441555.ru^ (advblock.txt: 7087) -.441555.ru -# ||21sale.ru^ (advblock.txt: 7086) -.21sale.ru -# ||21pokupki.ru^ (advblock.txt: 7085) -.21pokupki.ru -# ||21doctor.ru^ (advblock.txt: 7084) -.21doctor.ru -# ||21dengi.ru^ (advblock.txt: 7083) -.21dengi.ru -# ||212121.ru^ (advblock.txt: 7082) -.212121.ru -# ||kugesi.ru/fl3s/ (advblock.txt: 7071) -.kugesi.ru/fl3s/ -# ||kugesi.ru/fl2s/ (advblock.txt: 7070) -.kugesi.ru/fl2s/ -# ||x-soft.tomsk.ru/dsa/ (advblock.txt: 7064) -.x-soft.tomsk.ru/dsa/ -# ||vtomske.ru/js/ds!$script (advblock.txt: 7063) -.vtomske.ru/js/ds! -# ||torrents.tomsk.ru/b/ (advblock.txt: 7062) -.torrents.tomsk.ru/b/ -# ||tomsktracker.org/b/ (advblock.txt: 7061) -.tomsktracker.org/b/ -# ||tomsk.ru09.ru/img/tomsk/ad/ (advblock.txt: 7060) -.tomsk.ru09.ru/img/tomsk/ad/ -# ||tomsk.ru/tvb/ (advblock.txt: 7059) -.tomsk.ru/tvb/ -# ||tomsk.ru/tva/ (advblock.txt: 7058) -.tomsk.ru/tva/ -# ||tomsk.ru/tub/ (advblock.txt: 7057) -.tomsk.ru/tub/ -# ||tomsk.ru/tua/ (advblock.txt: 7056) -.tomsk.ru/tua/ -# ||tomsk.ru/ttt/ (advblock.txt: 7055) -.tomsk.ru/ttt/ -# ||tomsk.ru/resources/content/ (advblock.txt: 7054) -.tomsk.ru/resources/content/ -# ||tg.tomsk.ru/$third-party (advblock.txt: 7053) -.tg.tomsk.ru -# ||tehnomag.tomsk.ru/index.php?ukey=product_widget&$third-party (advblock.txt: 7052) -.tehnomag.tomsk.ru/index\.php\?ukey=product_widget& -# ||rde.ru^$third-party (advblock.txt: 7051) -.rde.ru -# ||novo.tomsk.ru/uploads/up3/rkl/ (advblock.txt: 7050) -.novo.tomsk.ru/uploads/up3/rkl/ -# ||mp1.tomsk.ru/h/ (advblock.txt: 7049) -.mp1.tomsk.ru/h/ -# ||kompstar.tomsk.ru^$third-party (advblock.txt: 7048) -.kompstar.tomsk.ru -# ||gorod.tomsk.ru/i/b/ (advblock.txt: 7047) -.gorod.tomsk.ru/i/b/ -# ||gardnet.tomsk.ru^$object (advblock.txt: 7046) -.gardnet.tomsk.ru -# ||dn.vtomske.ru/neopodarok/ (advblock.txt: 7045) -.dn.vtomske.ru/neopodarok/ -# ||dn.vtomske.ru/bi/ (advblock.txt: 7044) -.dn.vtomske.ru/bi/ -# ||dn.vtomske.ru/be/materials/ (advblock.txt: 7043) -.dn.vtomske.ru/be/materials/ -# ||catalog.tomsk.ru/ubb/ (advblock.txt: 7042) -.catalog.tomsk.ru/ubb/ -# ||catalog.tomsk.ru/uay/ (advblock.txt: 7041) -.catalog.tomsk.ru/uay/ -# ||be.vtomske.ru^ (advblock.txt: 7040) -.be.vtomske.ru -# ||b.vtomske.ru^ (advblock.txt: 7039) -.b.vtomske.ru -# ||b.autotom.ru/img/ (advblock.txt: 7038) -.b.autotom.ru/img/ -# ||autotom.ru/kompstar/ (advblock.txt: 7037) -.autotom.ru/kompstar/ -# ||autotom.ru/img/$object (advblock.txt: 7036) -.autotom.ru/img/ -# ||yabs.yandex.*/show/$third-party (advblock.txt: 6996) -.yabs.yandex.*./(.*/)?show/ -# ||kiks.yandex. (advblock.txt: 6995) -.kiks.yandex.*. -# ||bs.yandex.$script (advblock.txt: 6994) -.bs.yandex.*. -# ||bs-meta.yandex.$script (advblock.txt: 6993) -.bs-meta.yandex.*. -# ||awaps.yandex. (advblock.txt: 6992) -.awaps.yandex.*. -# ||an.yandex.ru/system/context$script (advblock.txt: 6991) -.an.yandex.ru/system/context -# ||an.yandex.ru/resource/context$script (advblock.txt: 6990) -.an.yandex.ru/resource/context -# ||an.yandex.$third-party (advblock.txt: 6989) -.an.yandex.*. -# ||vkbot.ru/trash/ (advblock.txt: 6964) -.vkbot.ru/trash/ -# ||everall.ru/static/img/banners/ (advblock.txt: 6962) -.everall.ru/static/img/banners/ -# ||vladbazar.com/bbb/ (advblock.txt: 6960) -.vladbazar.com/bbb/ -# ||vkmus.com^$third-party (advblock.txt: 6959) -.vkmus.com -# ||vkbutton.com^$third-party (advblock.txt: 6958) -.vkbutton.com -# ||portal.un.net.ua/temp/blocks/ (advblock.txt: 6954) -.portal.un.net.ua/temp/blocks/ -# ||vizortv.com/swf/ (advblock.txt: 6947) -.vizortv.com/swf/ -# ||lifetorrents.com^*_life/img/banner (advblock.txt: 6940) -.lifetorrents.com/.*_life/img/banner -# torrent*.com/afisha/*x$image (advblock.txt: 6934) -/.*torrent.*\.com/afisha/.*x -.*torrent*./.*\.com/afisha/.*x -.*torrent*.com/afisha/.*x -# torrent*.com/afisha/*_$image (advblock.txt: 6933) -/.*torrent.*\.com/afisha/.*_ -.*torrent*./.*\.com/afisha/.*_ -.*torrent*.com/afisha/.*_ -# torrent*.com/afisha/$object (advblock.txt: 6932) -/.*torrent.*\.com/afisha/ -.*torrent*./.*\.com/afisha/ -.*torrent*.com/afisha/ -# ||zoom.cnews.ru/inc/bpic/ (advblock.txt: 6926) -.zoom.cnews.ru/inc/bpic/ -# ||utro.ru/*/banners/ (advblock.txt: 6925) -.utro.ru/.*/banners/ -# ||rbc.ru/img/banners/ (advblock.txt: 6924) -.rbc.ru/img/banners/ -# ||cnews.ru/inc/banners/ (advblock.txt: 6923) -.cnews.ru/inc/banners/ -# ||rambler.ru^*.ban? (advblock.txt: 6907) -.rambler.ru/.*\.ban\? -# ||rambler.ru/upl/partners/ (advblock.txt: 6906) -.rambler.ru/upl/partners/ -# ||rambler.ru/upl/clients/ (advblock.txt: 6905) -.rambler.ru/upl/clients/ -# ||rambler.ru/upl/ad/ (advblock.txt: 6904) -.rambler.ru/upl/ad/ -# ||rambler.ru/export/banners. (advblock.txt: 6903) -.rambler.ru/export/banners\. -# ||rambler.ru/*/js/direct. (advblock.txt: 6902) -.rambler.ru/.*/js/direct\. -# ||price.ru^$third-party (advblock.txt: 6901) -.price.ru -# ||kanobu.ru/brand/ (advblock.txt: 6900) -.kanobu.ru/brand/ -# ||ag.ru/*/top_bg.jpg (advblock.txt: 6899) -.ag.ru/.*/top_bg\.jpg -# ||ag.ru/*/flash.swf (advblock.txt: 6898) -.ag.ru/.*/flash\.swf -# ||ag.ru/*/bottom_bg.jpg (advblock.txt: 6897) -.ag.ru/.*/bottom_bg\.jpg -# ||torg.mail.ru/prtnr/$third-party (advblock.txt: 6833) -.torg.mail.ru/prtnr/ -# ||showbiz.mail.ru^$third-party (advblock.txt: 6832) -.showbiz.mail.ru -# ||banners.mail.ru^$third-party (advblock.txt: 6831) -.banners.mail.ru -# ||tv.mail.ru/popup_banner/ (advblock.txt: 6821) -.tv.mail.ru/popup_banner/ -# ||news.mail.ru^*.parallaxSlot. (advblock.txt: 6820) -.news.mail.ru/.*\.parallaxSlot\. -# ||mradx.net^*&link1=$subdocument (advblock.txt: 6819) -.mradx.net/.*&link1= -# ||mradx.net/img/$object,subdocument (advblock.txt: 6818) -.mradx.net/img/ -# ||minigames.imgsmail.ru/swf/stock/ (advblock.txt: 6817) -.minigames.imgsmail.ru/swf/stock/ -# ||mamba.ru/images/*/promo/ (advblock.txt: 6816) -.mamba.ru/images/.*/promo/ -# ||mail.ru/img/promo/ (advblock.txt: 6815) -.mail.ru/img/promo/ -# ||imgsmail.ru/r/my/brands/ (advblock.txt: 6814) -.imgsmail.ru/r/my/brands/ -# ||imgsmail.ru/js/onair2.$script (advblock.txt: 6813) -.imgsmail.ru/js/onair2\. -# ||e.mail.ru/api-proxy/mimic (advblock.txt: 6812) -.e.mail.ru/api-proxy/mimic -# //rs.mail.ru/b*.flv (advblock.txt: 6808) -rs.mail.ru/b.*\.flv -# //rs.mail.ru/b$subdocument (advblock.txt: 6807) -rs.mail.ru/b -# //r.mail.ru/b$subdocument (advblock.txt: 6805) -r.mail.ru/b -# ||letitbit.net^*/bg_downloader_screen_ (advblock.txt: 6682) -.letitbit.net/.*/bg_downloader_screen_ -# ||letitbit.net/images/rebrandings/ (advblock.txt: 6681) -.letitbit.net/images/rebrandings/ -# ||gismeteo.*/rian.html| (advblock.txt: 6674) -.gismeteo.*./(.*/)?rian\.html$ -# ||褉械褎械褉邪褌褘-懈-褋芯褔懈薪械薪懈褟.褉褎/images/hosting.gif (advblock.txt: 6640) -.褉械褎械褉邪褌褘-懈-褋芯褔懈薪械薪懈褟.褉褎/images/hosting\.gif -# ||谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x300_$object (advblock.txt: 6639) -.谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x300_ -# ||谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x150_$object (advblock.txt: 6638) -.谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x150_ -# ||斜械谢褉褍.褉褎/img/banners/ (advblock.txt: 6637) -.斜械谢褉褍.褉褎/img/banners/ -# ||zvezdakaraoke.com/*.php?id= (advblock.txt: 6636) -.zvezdakaraoke.com/.*\.php\?id= -# ||zoomby.ru/s/*/promo/*.jpg| (advblock.txt: 6635) -.zoomby.ru/s/.*/promo/.*\.jpg$ -# ||zoneofgames.ru/branding/$~stylesheet (advblock.txt: 6634) -.zoneofgames.ru/branding/ -# ||zol.ru/noteb/ (advblock.txt: 6633) -.zol.ru/noteb/ -# ||znak.com/images/up/ (advblock.txt: 6632) -.znak.com/images/up/ -# ||zik.ua/var/things/ (advblock.txt: 6630) -.zik.ua/var/things/ -# ||zh24.com/molodejj/ (advblock.txt: 6629) -.zh24.com/molodejj/ -# ||zh24.com/go/go/ (advblock.txt: 6628) -.zh24.com/go/go/ -# ||zerx.ru/templates/zerxnew/images/zerx_bg. (advblock.txt: 6627) -.zerx.ru/templates/zerxnew/images/zerx_bg\. -# ||zelenograd.ru/b/ (advblock.txt: 6626) -.zelenograd.ru/b/ -# ||zegame.net/files/ (advblock.txt: 6625) -.zegame.net/files/ -# ||zaycev.net/single?t= (advblock.txt: 6624) -.zaycev.net/single\?t= -# ||zakonia.ru/imgs/adshtml/ (advblock.txt: 6623) -.zakonia.ru/imgs/adshtml/ -# ||zadolba.li/img/ur.jpg (advblock.txt: 6622) -.zadolba.li/img/ur\.jpg -# ||youhack.ru^$object (advblock.txt: 6620) -.youhack.ru -# ||ymka.tv/images/$object (advblock.txt: 6619) -.ymka.tv/images/ -# ||ykt2.ru/inform/ (advblock.txt: 6618) -.ykt2.ru/inform/ -# ||ykt.ru/yaknet/image.asp?id= (advblock.txt: 6617) -.ykt.ru/yaknet/image\.asp\?id= -# ||ykt.ru/session? (advblock.txt: 6616) -.ykt.ru/session\? -# ||yarportal.ru^$object (advblock.txt: 6615) -.yarportal.ru -# ||yaplakal.com/html/static/brand- (advblock.txt: 6614) -.yaplakal.com/html/static/brand- -# ||yaplakal.com/html/$subdocument (advblock.txt: 6613) -.yaplakal.com/html/ -# ||yapfiles.ru/uploads/branddata/ (advblock.txt: 6612) -.yapfiles.ru/uploads/branddata/ -# ||yapfiles.com^$third-party (advblock.txt: 6611) -.yapfiles.com -# ||xyya.net/sha$script (advblock.txt: 6610) -.xyya.net/sha -# ||xxxmir.info/play.js (advblock.txt: 6609) -.xxxmir.info/play\.js -# ||xxx-tracker.com/pics/ (advblock.txt: 6608) -.xxx-tracker.com/pics/ -# ||xxx-russian.ru/js/38fbf0.js (advblock.txt: 6607) -.xxx-russian.ru/js/38fbf0\.js -# ||xtreme.ws/xad/ (advblock.txt: 6606) -.xtreme.ws/xad/ -# ||xmages.net/*/banner/ (advblock.txt: 6605) -.xmages.net/.*/banner/ -# ||xjp4v.ru^$third-party (advblock.txt: 6604) -.xjp4v.ru -# ||xfont.ru^*/add_ref/ (advblock.txt: 6603) -.xfont.ru/.*/add_ref/ -# ||xf.xyu.tv^ (advblock.txt: 6602) -.xf.xyu.tv -# ||xenforo.info/728.swf (advblock.txt: 6601) -.xenforo.info/728\.swf -# ||xakep.ru/post/*_final.jpg (advblock.txt: 6600) -.xakep.ru/post/.*_final\.jpg -# ||www.4ernigiv.info^*/1ua/images/ (advblock.txt: 6599) -.www.4ernigiv.info/.*/1ua/images/ -# ||wvclub.net^$object (advblock.txt: 6598) -.wvclub.net -# ||wowlol.ru/left/ (advblock.txt: 6597) -.wowlol.ru/left/ -# ||wowjp.net/_styles/$object (advblock.txt: 6596) -.wowjp.net/_styles/ -# ||wowgeek.ru^$object (advblock.txt: 6595) -.wowgeek.ru -# ||wowgaid.ru/wp-content/uploads/$object (advblock.txt: 6594) -.wowgaid.ru/wp-content/uploads/ -# ||worldxfree.info/windowfiles/ (advblock.txt: 6593) -.worldxfree.info/windowfiles/ -# ||world-art.ru/bipack/ (advblock.txt: 6592) -.world-art.ru/bipack/ -# ||wmmail.ru/bn/ (advblock.txt: 6591) -.wmmail.ru/bn/ -# ||wmasteru.org/b/ (advblock.txt: 6590) -.wmasteru.org/b/ -# ||winzoro.com/data/ba_ne_r/ (advblock.txt: 6589) -.winzoro.com/data/ba_ne_r/ -# ||wild-mistress.ru/wmbanner/ (advblock.txt: 6588) -.wild-mistress.ru/wmbanner/ -# ||wedlife.ru/b/ (advblock.txt: 6587) -.wedlife.ru/b/ -# ||webtun.com/uploads/files/ (advblock.txt: 6586) -.webtun.com/uploads/files/ -# ||webplus.info/getres.php?getadv= (advblock.txt: 6585) -.webplus.info/getres\.php\?getadv= -# ||webpark.ru/*/mhealth (advblock.txt: 6584) -.webpark.ru/.*/mhealth -# ||webmasters.ru/forum/ltbanners/ (advblock.txt: 6583) -.webmasters.ru/forum/ltbanners/ -# ||weblancer.net/adver/ (advblock.txt: 6582) -.weblancer.net/adver/ -# ||webkrug.ru/images/bann (advblock.txt: 6581) -.webkrug.ru/images/bann -# ||webfile.ru/media/img/branding. (advblock.txt: 6580) -.webfile.ru/media/img/branding\. -# ||webavangard.com.ua/torg/ (advblock.txt: 6579) -.webavangard.com.ua/torg/ -# ||webapteka.ru/image/ (advblock.txt: 6578) -.webapteka.ru/image/ -# ||weacom.ru/uploads/commercial/ (advblock.txt: 6577) -.weacom.ru/uploads/commercial/ -# ||warfiles.ru/bg/ (advblock.txt: 6576) -.warfiles.ru/bg/ -# ||warezlab.ru^*rotator (advblock.txt: 6575) -.warezlab.ru/.*rotator -# ||waralbum.ru/br/ (advblock.txt: 6574) -.waralbum.ru/br/ -# ||vz.ru/import/ (advblock.txt: 6573) -.vz.ru/import/ -# ||vz.ru/images/*_banner. (advblock.txt: 6572) -.vz.ru/images/.*_banner\. -# ||vsluh.ru/system/*banners/ (advblock.txt: 6571) -.vsluh.ru/system/.*banners/ -# ||vsetyt.us/uploads/ruscams. (advblock.txt: 6570) -.vsetyt.us/uploads/ruscams\. -# ||vsestroi.com/files/$object (advblock.txt: 6569) -.vsestroi.com/files/ -# ||vseplatezhi.ru^*/banners/ (advblock.txt: 6568) -.vseplatezhi.ru/.*/banners/ -# ||vseanime.ru/upload/$object (advblock.txt: 6567) -.vseanime.ru/upload/ -# ||vse42.ru/files/ui-*.swf (advblock.txt: 6566) -.vse42.ru/files/ui-.*\.swf -# ||vse42.ru/files/ui-*.gif (advblock.txt: 6565) -.vse42.ru/files/ui-.*\.gif -# ||vsatke.ru^$object (advblock.txt: 6564) -.vsatke.ru -# ||vp-news.ru/images/swr/ (advblock.txt: 6563) -.vp-news.ru/images/swr/ -# ||vozmi.net/img/*150x250 (advblock.txt: 6562) -.vozmi.net/img/.*150x250 -# ||voxpopuli.kz/userfiles/branding/ (advblock.txt: 6561) -.voxpopuli.kz/userfiles/branding/ -# ||voxpopuli.kz/css/site/images/*/background_ (advblock.txt: 6560) -.voxpopuli.kz/css/site/images/.*/background_ -# ||vorum.ru/files/mpix/ (advblock.txt: 6559) -.vorum.ru/files/mpix/ -# ||volzsky.ru/upload/flash/ (advblock.txt: 6558) -.volzsky.ru/upload/flash/ -# ||volgowarez.ru/engine/classes/js/init.js| (advblock.txt: 6557) -.volgowarez.ru/engine/classes/js/init\.js$ -# ||volgo-mame.ru/partner/ (advblock.txt: 6556) -.volgo-mame.ru/partner/ -# ||vokrugsveta.ru/img/bx/rk/ (advblock.txt: 6555) -.vokrugsveta.ru/img/bx/rk/ -# ||vokrugsveta.ru/ad/ (advblock.txt: 6554) -.vokrugsveta.ru/ad/ -# ||voffka.com/img/banners/ (advblock.txt: 6553) -.voffka.com/img/banners/ -# ||vlasti.net/ext/uploads/ (advblock.txt: 6552) -.vlasti.net/ext/uploads/ -# ||virusinfo.info^*/brand/ (advblock.txt: 6551) -.virusinfo.info/.*/brand/ -# ||viknaodessa.od.ua/baner468 (advblock.txt: 6550) -.viknaodessa.od.ua/baner468 -# ||videoprobki.*/ext_baners/ (advblock.txt: 6549) -.videoprobki.*./(.*/)?ext_baners/ -# ||videoprobki.*/brand/ (advblock.txt: 6548) -.videoprobki.*./(.*/)?brand/ -# ||videodom.net^$object (advblock.txt: 6547) -.videodom.net -# ||videochart.net/vedro/ (advblock.txt: 6546) -.videochart.net/vedro/ -# ||vgtimes.ru/podl/ (advblock.txt: 6545) -.vgtimes.ru/podl/ -# ||vfl.ru/bs/ (advblock.txt: 6544) -.vfl.ru/bs/ -# ||vestifinance.ru/img/banners/ (advblock.txt: 6543) -.vestifinance.ru/img/banners/ -# ||vesti.ru/banners_ (advblock.txt: 6542) -.vesti.ru/banners_ -# ||vesti.lv/www/images/$object (advblock.txt: 6541) -.vesti.lv/www/images/ -# ||verstov.info/files/ (advblock.txt: 6540) -.verstov.info/files/ -# ||verstov.info/cviews.php?id= (advblock.txt: 6539) -.verstov.info/cviews\.php\?id= -# ||vdmsti.ru/img/advblock/ (advblock.txt: 6538) -.vdmsti.ru/img/advblock/ -# ||vashgorod.ru/key/get?partner_id= (advblock.txt: 6535) -.vashgorod.ru/key/get\?partner_id= -# ||vashgorod.ru/images/banner/ (advblock.txt: 6534) -.vashgorod.ru/images/banner/ -# ||vashdom.ru/image/rk/ (advblock.txt: 6533) -.vashdom.ru/image/rk/ -# ||vashdom.ru/image/gagban/ (advblock.txt: 6532) -.vashdom.ru/image/gagban/ -# ||v-info.ru^*.swf?data= (advblock.txt: 6530) -.v-info.ru/.*\.swf\?data= -# ||v-info.ru/i_bann/ (advblock.txt: 6529) -.v-info.ru/i_bann/ -# ||v-chulkahh.ru/js/06ea7c.js (advblock.txt: 6528) -.v-chulkahh.ru/js/06ea7c\.js -# ||uzumaki.kz/go?$script (advblock.txt: 6526) -.uzumaki.kz/go\? -# ||uzum.tv/120/ (advblock.txt: 6525) -.uzum.tv/120/ -# ||upweek.ru/wp-content/banners/ (advblock.txt: 6524) -.upweek.ru/wp-content/banners/ -# ||uptracker.ru/images/casino/ (advblock.txt: 6523) -.uptracker.ru/images/casino/ -# ||unn.com.ua/images/branding/ (advblock.txt: 6522) -.unn.com.ua/images/branding/ -# ||unionpeer.org/branding_ (advblock.txt: 6521) -.unionpeer.org/branding_ -# ||uniongang.tv^$object (advblock.txt: 6520) -.uniongang.tv -# ||underverse.su/misc/ (advblock.txt: 6519) -.underverse.su/misc/ -# ||ukrlit.vn.ua^$object (advblock.txt: 6518) -.ukrlit.vn.ua -# ||uinsell.net/b/ (advblock.txt: 6517) -.uinsell.net/b/ -# ||uff.uz/images/banners/$image (advblock.txt: 6516) -.uff.uz/images/banners/ -# ||udaff.com/image/$object (advblock.txt: 6515) -.udaff.com/image/ -# ||uc-portaller.ru/uc-img/banner/ (advblock.txt: 6514) -.uc-portaller.ru/uc-img/banner/ -# ||uaplayer.com/get? (advblock.txt: 6513) -.uaplayer.com/get\? -# ||ua-football.com/interface/ads/ (advblock.txt: 6512) -.ua-football.com/interface/ads/ -# ||u-tv.ru/pic/promo/ (advblock.txt: 6511) -.u-tv.ru/pic/promo/ -# ||u-tv.ru/images/overlay/ (advblock.txt: 6510) -.u-tv.ru/images/overlay/ -# ||u-tv.ru/ajax?f=bigbaner_ (advblock.txt: 6509) -.u-tv.ru/ajax\?f=bigbaner_ -# ||tyt.by^*/banner/ (advblock.txt: 6508) -.tyt.by/.*/banner/ -# ||twirpx.com/resources/html/ (advblock.txt: 6507) -.twirpx.com/resources/html/ -# ||tvzavr.ru/cache/brand/$image (advblock.txt: 6506) -.tvzavr.ru/cache/brand/ -# ||tvigle.ru/resource/rf/rkm_disign/ (advblock.txt: 6505) -.tvigle.ru/resource/rf/rkm_disign/ -# ||tvi.ua/other/branding/ (advblock.txt: 6504) -.tvi.ua/other/branding/ -# ||tvi.ua/image/data/banners/ (advblock.txt: 6503) -.tvi.ua/image/data/banners/ -# ||tvgid.ua/visit/ (advblock.txt: 6502) -.tvgid.ua/visit/ -# ||tvernews.ru/upload/information_system_$object (advblock.txt: 6501) -.tvernews.ru/upload/information_system_ -# ||tverigrad.ru/wp-content/uploads/$object (advblock.txt: 6500) -.tverigrad.ru/wp-content/uploads/ -# ||tushkan.net/vkm/ (advblock.txt: 6499) -.tushkan.net/vkm/ -# ||turizm.ru/banners2/200 (advblock.txt: 6498) -.turizm.ru/banners2/200 -# ||turbobit.ru/pics/ (advblock.txt: 6497) -.turbobit.ru/pics/ -# ||turbobit.net/pics/ (advblock.txt: 6496) -.turbobit.net/pics/ -# ||turbo.az/banners/ (advblock.txt: 6495) -.turbo.az/banners/ -# ||tumix.ru/*/banners/ (advblock.txt: 6494) -.tumix.ru/.*/banners/ -# ||tsn.ua^*/branding/ (advblock.txt: 6493) -.tsn.ua/.*/branding/ -# ||trud.ru/saved/ (advblock.txt: 6492) -.trud.ru/saved/ -# ||trud.ru/ad/ (advblock.txt: 6491) -.trud.ru/ad/ -# ||tropica.ru/img/b/ (advblock.txt: 6490) -.tropica.ru/img/b/ -# ||trinixy.ru/r/ (advblock.txt: 6489) -.trinixy.ru/r/ -# ||tree.tv/film/index/banners$subdocument (advblock.txt: 6488) -.tree.tv/film/index/banners -# ||travelgps.com.ua/js/relink2. (advblock.txt: 6487) -.travelgps.com.ua/js/relink2\. -# ||travelgps.com.ua/cg/$object (advblock.txt: 6486) -.travelgps.com.ua/cg/ -# ||trackitonline.*/pics/$object (advblock.txt: 6485) -.trackitonline.*./(.*/)?pics/ -# ||tort.fm/banners/ (advblock.txt: 6483) -.tort.fm/banners/ -# ||torrentszona.com/pic/branding- (advblock.txt: 6482) -.torrentszona.com/pic/branding- -# ||torrentszona.com/fakereklam/ (advblock.txt: 6481) -.torrentszona.com/fakereklam/ -# ||torrentszona.com/afisha/banner_ (advblock.txt: 6480) -.torrentszona.com/afisha/banner_ -# ||torrentino.com/assets/$object (advblock.txt: 6479) -.torrentino.com/assets/ -# ||torrent.rus.ec/a-detector/ (advblock.txt: 6478) -.torrent.rus.ec/a-detector/ -# ||torrent-telik.com/cdn-cgi/*.torrent-telik.com (advblock.txt: 6477) -.torrent-telik.com/cdn-cgi/.*\.torrent-telik\.com -# ||torrent-games.net/flash/flashgames/ (advblock.txt: 6476) -.torrent-games.net/flash/flashgames/ -# ||topwar.ru/bg/ (advblock.txt: 6475) -.topwar.ru/bg/ -# ||topse.ru/sotmarket (advblock.txt: 6474) -.topse.ru/sotmarket -# ||topnews.ru/bframe.php?z= (advblock.txt: 6473) -.topnews.ru/bframe\.php\?z= -# ||topgir.com.ua/files/$object (advblock.txt: 6472) -.topgir.com.ua/files/ -# ||tods-blog.com.ua/files/$object (advblock.txt: 6471) -.tods-blog.com.ua/files/ -# ||tod-news.com^*-ads- (advblock.txt: 6470) -.tod-news.com/.*-ads- -# ||tnua.info/banner/ (advblock.txt: 6469) -.tnua.info/banner/ -# ||tltorrent.org/images/$object (advblock.txt: 6468) -.tltorrent.org/images/ -# ||timeout.ru^*&adv= (advblock.txt: 6467) -.timeout.ru/.*&adv= -# ||timeout.ru/adriver-reload.js (advblock.txt: 6466) -.timeout.ru/adriver-reload\.js -# ||thumbs.ivi.ru^*.swf^ (advblock.txt: 6465) -.thumbs.ivi.ru/.*\.swf[^\w%.-] -# ||thr.ru/public/promo-branding/ (advblock.txt: 6464) -.thr.ru/public/promo-branding/ -# ||thg.ru^*_TOMS_HARDWARE_ (advblock.txt: 6463) -.thg.ru/.*_TOMS_HARDWARE_ -# ||thg.ru/images/spons/ (advblock.txt: 6462) -.thg.ru/images/spons/ -# ||thg.ru/adv_img/ (advblock.txt: 6461) -.thg.ru/adv_img/ -# ||thailandproperty.tv/images/*_banner_ (advblock.txt: 6460) -.thailandproperty.tv/images/.*_banner_ -# ||tfilm.tv/js/clck.js (advblock.txt: 6459) -.tfilm.tv/js/clck\.js -# ||telekomza.ru/wp-content/uploads/$object (advblock.txt: 6457) -.telekomza.ru/wp-content/uploads/ -# ||teksta.org/images/adv (advblock.txt: 6456) -.teksta.org/images/adv -# ||teksta.org/*.php| (advblock.txt: 6455) -.teksta.org/.*\.php$ -# ||tapochek.net^$subdocument (advblock.txt: 6454) -.tapochek.net -# ||tapochek.net^$object (advblock.txt: 6453) -.tapochek.net -# ||tapochek.net/rek.gif (advblock.txt: 6452) -.tapochek.net/rek\.gif -# ||tapochek.net/myc/code.js (advblock.txt: 6451) -.tapochek.net/myc/code\.js -# ||talos.dota2.ru^ (advblock.txt: 6450) -.talos.dota2.ru -# ||takelink.org/engine/ajax/check.js (advblock.txt: 6449) -.takelink.org/engine/ajax/check\.js -# ||tainoe.o-nas.info/banner/ (advblock.txt: 6448) -.tainoe.o-nas.info/banner/ -# ||syzran-small.net/images/info/ (advblock.txt: 6447) -.syzran-small.net/images/info/ -# ||sysadmins.ru^$object (advblock.txt: 6446) -.sysadmins.ru -# ||synoptyc.com.ua/_uploaded_files/ads/ (advblock.txt: 6445) -.synoptyc.com.ua/_uploaded_files/ads/ -# ||sympaty.net/wp-content/uploads/$object (advblock.txt: 6444) -.sympaty.net/wp-content/uploads/ -# ||sxnarod.com/img/ (advblock.txt: 6443) -.sxnarod.com/img/ -# ||svadba-kursk.ru/forum/banner/ (advblock.txt: 6442) -.svadba-kursk.ru/forum/banner/ -# ||sur.gorodkirov.ru^ (advblock.txt: 6441) -.sur.gorodkirov.ru -# ||superomsk.ru/images/public/banners/ (advblock.txt: 6440) -.superomsk.ru/images/public/banners/ -# ||sun.all-episodes.com^ (advblock.txt: 6438) -.sun.all-episodes.com -# ||suero.tv/exclusive/ (advblock.txt: 6437) -.suero.tv/exclusive/ -# ||submitred.freezpic.ru^ (advblock.txt: 6436) -.submitred.freezpic.ru -# ||stroyvitrina.ru/_a_images/ (advblock.txt: 6435) -.stroyvitrina.ru/_a_images/ -# ||storyroom.ru/bbb/ (advblock.txt: 6434) -.storyroom.ru/bbb/ -# ||stopgame.ru/preroll/*.mp4 (advblock.txt: 6433) -.stopgame.ru/preroll/.*\.mp4 -# ||stereohead.ru/_main_page/images/ (advblock.txt: 6432) -.stereohead.ru/_main_page/images/ -# ||station.ru/upload/contents/*240x250 (advblock.txt: 6431) -.station.ru/upload/contents/.*240x250 -# ||station.ru/upload/contents/*210x260 (advblock.txt: 6430) -.station.ru/upload/contents/.*210x260 -# ||static2.rutracker.org^ (advblock.txt: 6429) -.static2.rutracker.org -# ||static.oper.ru/images/*_top$image (advblock.txt: 6428) -.static.oper.ru/images/.*_top -# ||stars.manystars.ru^ (advblock.txt: 6427) -.stars.manystars.ru -# ||starkosino.ru/images/stories/$object (advblock.txt: 6426) -.starkosino.ru/images/stories/ -# ||starkosino.ru/images/banner_ (advblock.txt: 6425) -.starkosino.ru/images/banner_ -# ||spotters.net.ua/swf/ (advblock.txt: 6424) -.spotters.net.ua/swf/ -# ||sports.ru^*/banners/ (advblock.txt: 6423) -.sports.ru/.*/banners/ -# ||sports.ru/desktop/special/*-slider/ (advblock.txt: 6422) -.sports.ru/desktop/special/.*-slider/ -# ||sports.ru/css/promo. (advblock.txt: 6421) -.sports.ru/css/promo\. -# ||splkirov.ru/assets/flash/ (advblock.txt: 6420) -.splkirov.ru/assets/flash/ -# ||spbit.ru/b_images/ (advblock.txt: 6419) -.spbit.ru/b_images/ -# ||space.com.ua/ban_ (advblock.txt: 6418) -.space.com.ua/ban_ -# ||sovsport.ru/s/br/*?t=$image,object (advblock.txt: 6417) -.sovsport.ru/s/br/.*\?t= -# ||sovsport.ru/ib/ (advblock.txt: 6416) -.sovsport.ru/ib/ -# ||soptv.ru/scode.php?site= (advblock.txt: 6415) -.soptv.ru/scode\.php\?site= -# ||sonikelf.ru^$object (advblock.txt: 6414) -.sonikelf.ru -# ||softoroom.net/2pclick/ (advblock.txt: 6413) -.softoroom.net/2pclick/ -# ||soft4xp.ru/rss_news.php (advblock.txt: 6412) -.soft4xp.ru/rss_news\.php -# ||soft-i-kino.ru/tiz. (advblock.txt: 6411) -.soft-i-kino.ru/tiz\. -# ||soccer.ru/swf/*.swf?nocache= (advblock.txt: 6410) -.soccer.ru/swf/.*\.swf\?nocache= -# ||smusics.net^*/js/motiongallery. (advblock.txt: 6409) -.smusics.net/.*/js/motiongallery\. -# ||smotrisport.tv/banner/ (advblock.txt: 6408) -.smotrisport.tv/banner/ -# ||smotri.com/rb/ (advblock.txt: 6407) -.smotri.com/rb/ -# ||slivki.by/banner/ (advblock.txt: 6405) -.slivki.by/banner/ -# ||slavgorod.com.ua/AdTemp/ (advblock.txt: 6404) -.slavgorod.com.ua/AdTemp/ -# ||siliconrus.com^*/losssy.jquery.js (advblock.txt: 6402) -.siliconrus.com/.*/losssy\.jquery\.js -# ||sibmama.ru/d/ (advblock.txt: 6401) -.sibmama.ru/d/ -# ||sibinfo.su/files/$object (advblock.txt: 6400) -.sibinfo.su/files/ -# ||shownewstv.ru/files/all/ (advblock.txt: 6399) -.shownewstv.ru/files/all/ -# ||shopping-spb.su/images_b/$~script (advblock.txt: 6398) -.shopping-spb.su/images_b/ -# ||shopping-spb.su/images/*/bg_top. (advblock.txt: 6397) -.shopping-spb.su/images/.*/bg_top\. -# ||shophelp.ru/dv/ (advblock.txt: 6396) -.shophelp.ru/dv/ -# ||sexnarod.ru/img/ (advblock.txt: 6395) -.sexnarod.ru/img/ -# ||sexgamesbox.com/images/ (advblock.txt: 6394) -.sexgamesbox.com/images/ -# ||sevnews.info^*/flash/ (advblock.txt: 6393) -.sevnews.info/.*/flash/ -# ||sevnews.info^*/adv_banners/ (advblock.txt: 6392) -.sevnews.info/.*/adv_banners/ -# ||severstalclub.ru/pic/bimages/ (advblock.txt: 6391) -.severstalclub.ru/pic/bimages/ -# ||seti.ee*/reklaam/ (advblock.txt: 6390) -.seti.ee*./(.*/)?reklaam/ -# ||seti-ceti.ru/assets/images/vsiaki/ (advblock.txt: 6389) -.seti-ceti.ru/assets/images/vsiaki/ -# ||sergeistrelec.ru/templates/sstr/js^ (advblock.txt: 6388) -.sergeistrelec.ru/templates/sstr/js[^\w%.-] -# ||seocafe.info/MEDimg/ (advblock.txt: 6387) -.seocafe.info/MEDimg/ -# ||semestr.ru/images/banner (advblock.txt: 6386) -.semestr.ru/images/banner -# ||seedoff.net/partners/ (advblock.txt: 6385) -.seedoff.net/partners/ -# ||seedoff.net/jscript/xbtit.js (advblock.txt: 6384) -.seedoff.net/jscript/xbtit\.js -# ||seedoff.net/images/banners^ (advblock.txt: 6383) -.seedoff.net/images/banners[^\w%.-] -# ||seedoff.net/br/ (advblock.txt: 6382) -.seedoff.net/br/ -# ||seasonvar.ru/images/brand/ (advblock.txt: 6381) -.seasonvar.ru/images/brand/ -# ||sdelanounas.ru/b/ (advblock.txt: 6380) -.sdelanounas.ru/b/ -# ||scrin.org/viewt.js (advblock.txt: 6379) -.scrin.org/viewt\.js -# ||screenlist.ru/ads.js (advblock.txt: 6377) -.screenlist.ru/ads\.js -# ||sc2tv.ru^*/images/*/bg- (advblock.txt: 6376) -.sc2tv.ru/.*/images/.*/bg- -# ||sc2tv.ru^*/images/*-bg- (advblock.txt: 6375) -.sc2tv.ru/.*/images/.*-bg- -# ||sat-expert.com/forum/banners/ (advblock.txt: 6374) -.sat-expert.com/forum/banners/ -# ||sat-digest.com/bac/ (advblock.txt: 6373) -.sat-digest.com/bac/ -# ||sandero.ru/flash/ (advblock.txt: 6372) -.sandero.ru/flash/ -# ||samru.ru/images/pic/gifs/ (advblock.txt: 6371) -.samru.ru/images/pic/gifs/ -# ||samforum.ws^$subdocument (advblock.txt: 6370) -.samforum.ws -# ||s5o.ru^*/promo/ (advblock.txt: 6368) -.s5o.ru/.*/promo/ -# ||s5o.ru^*/brandings/ (advblock.txt: 6367) -.s5o.ru/.*/brandings/ -# ||s5o.ru^*/banners/$~script (advblock.txt: 6366) -.s5o.ru/.*/banners/ -# ||s1block.com^$third-party (advblock.txt: 6365) -.s1block.com -# ||s.serialu.net^ (advblock.txt: 6364) -.s.serialu.net -# ||s-info.ru/img/recl/ (advblock.txt: 6363) -.s-info.ru/img/recl/ -# ||rybalka.com/images/forum_buttons/ (advblock.txt: 6362) -.rybalka.com/images/forum_buttons/ -# ||rutube.ru/grobot/ (advblock.txt: 6361) -.rutube.ru/grobot/ -# ||rutracker21.org/partners/ (advblock.txt: 6359) -.rutracker21.org/partners/ -# ||rutracker.ru/images/banner/ (advblock.txt: 6358) -.rutracker.ru/images/banner/ -# ||rutracker.org/iframe/ (advblock.txt: 6357) -.rutracker.org/iframe/ -# ||rutracker.org/004/ (advblock.txt: 6356) -.rutracker.org/004/ -# ||rutor.org/counter.js (advblock.txt: 6355) -.rutor.org/counter\.js -# ||rustrackers.ru/banner_ (advblock.txt: 6354) -.rustrackers.ru/banner_ -# ||rustorrents.rustorrents.net^ (advblock.txt: 6353) -.rustorrents.rustorrents.net -# ||rustorka.com^*/bubbles.js (advblock.txt: 6352) -.rustorka.com/.*/bubbles\.js -# ||rustorka.com^$object (advblock.txt: 6351) -.rustorka.com -# ||rustorka.com/forum/misc/js/tqiqgy.js (advblock.txt: 6350) -.rustorka.com/forum/misc/js/tqiqgy\.js -# ||rustorka.com/forum/misc/js/mtomfh.js (advblock.txt: 6349) -.rustorka.com/forum/misc/js/mtomfh\.js -# ||rustorka.com/branding/ (advblock.txt: 6348) -.rustorka.com/branding/ -# ||russianfood.com/js/informb_ (advblock.txt: 6347) -.russianfood.com/js/informb_ -# ||russiandc.com/ebs_show.php? (advblock.txt: 6346) -.russiandc.com/ebs_show\.php\? -# ||ruspicbox.ru^*/clicunder.js (advblock.txt: 6345) -.ruspicbox.ru/.*/clicunder\.js -# ||ruspicbox.ru/tpl/ (advblock.txt: 6344) -.ruspicbox.ru/tpl/ -# ||rusnovosti.ru/upload/$object (advblock.txt: 6343) -.rusnovosti.ru/upload/ -# ||ruskweb.ru/bannerbro/ (advblock.txt: 6342) -.ruskweb.ru/bannerbro/ -# ||ruskino.ru/part3/ (advblock.txt: 6341) -.ruskino.ru/part3/ -# ||ruskino.ru/brand/*/top. (advblock.txt: 6340) -.ruskino.ru/brand/.*/top\. -# ||rusdemotivator.ru/uploads/*_*_vb.gif (advblock.txt: 6339) -.rusdemotivator.ru/uploads/.*_.*_vb\.gif -# ||rusbody.com/aim/ (advblock.txt: 6338) -.rusbody.com/aim/ -# ||rusavtobus.ru^*/images/*-banner/ (advblock.txt: 6337) -.rusavtobus.ru/.*/images/.*-banner/ -# ||rulinux.net.ru^*/banner. (advblock.txt: 6336) -.rulinux.net.ru/.*/banner\. -# ||rugrad.eu/bx/ (advblock.txt: 6335) -.rugrad.eu/bx/ -# ||rublacklist.net/media/banner_ (advblock.txt: 6334) -.rublacklist.net/media/banner_ -# ||rublacklist.net/media/*vpn. (advblock.txt: 6333) -.rublacklist.net/media/.*vpn\. -# ||ru-board.com/kupitraff. (advblock.txt: 6332) -.ru-board.com/kupitraff\. -# ||ru-board.com/bnrs/ (advblock.txt: 6331) -.ru-board.com/bnrs/ -# ||ru-board.com*/xmtmp/ (advblock.txt: 6330) -.ru-board.com*./(.*/)?xmtmp/ -# ||ru-board.com*/temp/ (advblock.txt: 6329) -.ru-board.com*./(.*/)?temp/ -# ||ru-admin.net/clk123.js (advblock.txt: 6328) -.ru-admin.net/clk123\.js -# ||rtkorr.com/js/popup.js (advblock.txt: 6327) -.rtkorr.com/js/popup\.js -# ||rsload.net/*/dl.js (advblock.txt: 6326) -.rsload.net/.*/dl\.js -# ||rpod.ru/i/b/ (advblock.txt: 6324) -.rpod.ru/i/b/ -# ||rotabanner.kulichki.com^ (advblock.txt: 6323) -.rotabanner.kulichki.com -# ||rosrealt.ru/pics/design2/ (advblock.txt: 6322) -.rosrealt.ru/pics/design2/ -# ||rosbalt.ru^$object (advblock.txt: 6321) -.rosbalt.ru -# ||rosbalt.ru/ad/ (advblock.txt: 6320) -.rosbalt.ru/ad/ -# ||roem.ru^$object (advblock.txt: 6318) -.roem.ru -# ||rlsnet.ru/images/3dbanner (advblock.txt: 6317) -.rlsnet.ru/images/3dbanner -# ||rlsnet.ru/image_banner_id_ (advblock.txt: 6316) -.rlsnet.ru/image_banner_id_ -# ||riper.am/rekoin.js (advblock.txt: 6315) -.riper.am/rekoin\.js -# ||riper.am/branding/ (advblock.txt: 6314) -.riper.am/branding/ -# ||riotpixels.com/plg/ (advblock.txt: 6313) -.riotpixels.com/plg/ -# ||riotpixels.com/playo (advblock.txt: 6312) -.riotpixels.com/playo -# ||riotpixels.com/i/brand (advblock.txt: 6311) -.riotpixels.com/i/brand -# ||riotpixels.com/i/bg- (advblock.txt: 6310) -.riotpixels.com/i/bg- -# ||riotpixels.com/i/$object (advblock.txt: 6309) -.riotpixels.com/i/ -# ||rin.ru/images/bannerpic/ (advblock.txt: 6308) -.rin.ru/images/bannerpic/ -# ||rin.ru/bodyadv. (advblock.txt: 6307) -.rin.ru/bodyadv\. -# ||rgfootball.net/upload/$image (advblock.txt: 6306) -.rgfootball.net/upload/ -# ||rg.ru/i/bnr/ (advblock.txt: 6305) -.rg.ru/i/bnr/ -# ||rf-cheats.ru/img/$object (advblock.txt: 6304) -.rf-cheats.ru/img/ -# ||restoclub.ru/pic/iblocks/ (advblock.txt: 6302) -.restoclub.ru/pic/iblocks/ -# ||ren.tv/sites/default/files/*_banner_ (advblock.txt: 6301) -.ren.tv/sites/default/files/.*_banner_ -# ||remoteshaman.com^*/gcheck.js (advblock.txt: 6300) -.remoteshaman.com/.*/gcheck\.js -# ||relinka.net/banner (advblock.txt: 6299) -.relinka.net/banner -# ||rekportal.ru/wp-content/uploads/$object (advblock.txt: 6298) -.rekportal.ru/wp-content/uploads/ -# ||reibert.info/images/ (advblock.txt: 6296) -.reibert.info/images/ -# ||regnum.ru^*/bn/ (advblock.txt: 6295) -.regnum.ru/.*/bn/ -# ||recetascomidas.com/base/banner_ (advblock.txt: 6294) -.recetascomidas.com/base/banner_ -# ||realcoding.net/foto/*.gif (advblock.txt: 6293) -.realcoding.net/foto/.*\.gif -# ||readovka.ru/images/ (advblock.txt: 6292) -.readovka.ru/images/ -# ||rd-forum.ru^$object (advblock.txt: 6291) -.rd-forum.ru -# ||rapidzona.tv^*.php| (advblock.txt: 6290) -.rapidzona.tv/.*\.php$ -# ||rapidzona.com/*_200x400_ (advblock.txt: 6289) -.rapidzona.com/.*_200x400_ -# ||rap-text.ru/templates/raptext/images/banner (advblock.txt: 6288) -.rap-text.ru/templates/raptext/images/banner -# ||raketa-tv.com/banner_ (advblock.txt: 6287) -.raketa-tv.com/banner_ -# ||radiorecord.ru/baners_ (advblock.txt: 6286) -.radiorecord.ru/baners_ -# ||rada.com.ua/images/bs/ (advblock.txt: 6285) -.rada.com.ua/images/bs/ -# ||r.e1.ru/images/ (advblock.txt: 6283) -.r.e1.ru/images/ -# ||qvaga.pronpic.org^ (advblock.txt: 6282) -.qvaga.pronpic.org -# ||qip.ru/i/$third-party,object (advblock.txt: 6281) -.qip.ru/i/ -# ||puma.planeta51.com^ (advblock.txt: 6280) -.puma.planeta51.com -# ||psywarez.com/banner/ (advblock.txt: 6279) -.psywarez.com/banner/ -# ||pslan.*/banera/ (advblock.txt: 6278) -.pslan.*./(.*/)?banera/ -# ||pskovlive.ru/b/ (advblock.txt: 6277) -.pskovlive.ru/b/ -# ||ps3hits.ru/wp-content/themes/custom-community/images/ (advblock.txt: 6276) -.ps3hits.ru/wp-content/themes/custom-community/images/ -# ||ps3club.ru/bans/ (advblock.txt: 6275) -.ps3club.ru/bans/ -# ||proxyweb.net/js/dhtmlwindow.js (advblock.txt: 6274) -.proxyweb.net/js/dhtmlwindow\.js -# ||proufu.ru/upload/rk/ (advblock.txt: 6273) -.proufu.ru/upload/rk/ -# ||prostoporno.net/br_ (advblock.txt: 6272) -.prostoporno.net/br_ -# ||prostopleer.com/t.php? (advblock.txt: 6271) -.prostopleer.com/t\.php\? -# ||prophotos.ru/data/brandings/ (advblock.txt: 6270) -.prophotos.ru/data/brandings/ -# ||pronpix.ru/*under.js (advblock.txt: 6269) -.pronpix.ru/.*under\.js -# ||promodj.com/legacy/i/branding/ (advblock.txt: 6268) -.promodj.com/legacy/i/branding/ -# ||promodj.com/brandings/ (advblock.txt: 6267) -.promodj.com/brandings/ -# ||promodeejay.net/branding/ (advblock.txt: 6266) -.promodeejay.net/branding/ -# ||prom.x-lime.net^ (advblock.txt: 6265) -.prom.x-lime.net -# ||prologic.su/b/ (advblock.txt: 6264) -.prologic.su/b/ -# ||prokazan.ru/manager/BannerSystem.php? (advblock.txt: 6263) -.prokazan.ru/manager/BannerSystem\.php\? -# ||programmersforum.ru^$object (advblock.txt: 6262) -.programmersforum.ru -# ||proelectro.ru/files/$object (advblock.txt: 6261) -.proelectro.ru/files/ -# ||prodota.ru/uploads/flags/Ads/ (advblock.txt: 6260) -.prodota.ru/uploads/flags/Ads/ -# ||prodota.ru/templates/vulkan/ (advblock.txt: 6259) -.prodota.ru/templates/vulkan/ -# ||prodota.ru/templates/images/brending (advblock.txt: 6258) -.prodota.ru/templates/images/brending -# ||pro100news.info/wp-content/uploads/$object (advblock.txt: 6257) -.pro100news.info/wp-content/uploads/ -# ||prisnilos.su/static/underbanner/ (advblock.txt: 6256) -.prisnilos.su/static/underbanner/ -# ||priorovod.ru/button/$object (advblock.txt: 6255) -.priorovod.ru/button/ -# ||prikols.com.ru/eroru/ (advblock.txt: 6254) -.prikols.com.ru/eroru/ -# ||prestige-gaming.ru/styles/hestia/theme/images/$object (advblock.txt: 6253) -.prestige-gaming.ru/styles/hestia/theme/images/ -# ||pravdapskov.ru/upload/b/ (advblock.txt: 6252) -.pravdapskov.ru/upload/b/ -# ||pozdrav.ru/url/*.vfl.ru (advblock.txt: 6250) -.pozdrav.ru/url/.*\.vfl\.ru -# ||pozdrav.ru/img/banners/ (advblock.txt: 6249) -.pozdrav.ru/img/banners/ -# ||povarenok.ru/bn/ (advblock.txt: 6248) -.povarenok.ru/bn/ -# ||povarenok.ru/banners_new/ (advblock.txt: 6247) -.povarenok.ru/banners_new/ -# ||poufe.ru/promo/ (advblock.txt: 6246) -.poufe.ru/promo/ -# ||post-tracker.ru/aimages/ (advblock.txt: 6245) -.post-tracker.ru/aimages/ -# ||pornolab.net/004/ (advblock.txt: 6244) -.pornolab.net/004/ -# ||porno-monster.ru/images/sex-shop/ (advblock.txt: 6243) -.porno-monster.ru/images/sex-shop/ -# ||pornk.org/js/a/ (advblock.txt: 6242) -.pornk.org/js/a/ -# ||popup.relinka.net^ (advblock.txt: 6241) -.popup.relinka.net -# ||poltavaforum.com/banner/ (advblock.txt: 6240) -.poltavaforum.com/banner/ -# ||poltavaforum.com/01/ (advblock.txt: 6239) -.poltavaforum.com/01/ -# ||politobzor.net/bg/ (advblock.txt: 6238) -.politobzor.net/bg/ -# ||politland.ru/jss/12fef6.js (advblock.txt: 6237) -.politland.ru/jss/12fef6\.js -# ||pogoda.by/promo (advblock.txt: 6236) -.pogoda.by/promo -# ||pn.com.ua^*/pnimages/banners/ (advblock.txt: 6235) -.pn.com.ua/.*/pnimages/banners/ -# ||playground.ru/download/bg$image (advblock.txt: 6234) -.playground.ru/download/bg -# ||play.aniland.org^*.swf^$object-subrequest (advblock.txt: 6233) -.play.aniland.org/.*\.swf[^\w%.-] -# ||platon.kz^$object (advblock.txt: 6232) -.platon.kz -# ||platimzafoto.ru/file.js (advblock.txt: 6231) -.platimzafoto.ru/file\.js -# ||planetaua.net/uploads/clck.js (advblock.txt: 6230) -.planetaua.net/uploads/clck\.js -# ||pixelbrush.ru/pixelbrand$image (advblock.txt: 6225) -.pixelbrush.ru/pixelbrand -# ||pix-x.net/ban (advblock.txt: 6224) -.pix-x.net/ban -# ||piterhunt.ru/sponsor/banner/ (advblock.txt: 6223) -.piterhunt.ru/sponsor/banner/ -# ||pise4ka.com/js/*.js| (advblock.txt: 6222) -.pise4ka.com/js/.*\.js$ -# ||piratski.ru/*_banner. (advblock.txt: 6221) -.piratski.ru/.*_banner\. -# ||pirat.ca/images/posters/ (advblock.txt: 6220) -.pirat.ca/images/posters/ -# ||pipec.ru/js/ (advblock.txt: 6219) -.pipec.ru/js/ -# ||ping-admin.ru/i/b/ (advblock.txt: 6218) -.ping-admin.ru/i/b/ -# ||pikabu.ru/images/test/ (advblock.txt: 6217) -.pikabu.ru/images/test/ -# ||pikabu.ru/4test/ad/ (advblock.txt: 6216) -.pikabu.ru/4test/ad/ -# ||pics-money.ru/picsmoneyclick.js (advblock.txt: 6214) -.pics-money.ru/picsmoneyclick\.js -# ||pics-money.ru/img/$script (advblock.txt: 6213) -.pics-money.ru/img/ -# ||piccash.net/tpl/images/ (advblock.txt: 6212) -.piccash.net/tpl/images/ -# ||pic4pay.com/rt/ (advblock.txt: 6211) -.pic4pay.com/rt/ -# ||pic2profit.com/ppb.php?id= (advblock.txt: 6210) -.pic2profit.com/ppb\.php\?id= -# ||pic2profit.com/img/putanap/ (advblock.txt: 6209) -.pic2profit.com/img/putanap/ -# ||pi-c.ru^*/code.js| (advblock.txt: 6208) -.pi-c.ru/.*/code\.js$ -# ||photodoska.ru/content/banners/ (advblock.txt: 6206) -.photodoska.ru/content/banners/ -# ||petrogazeta.ru/media//set/ (advblock.txt: 6205) -.petrogazeta.ru/media//set/ -# ||pctuner.ru/plugins/bworks/files/ (advblock.txt: 6204) -.pctuner.ru/plugins/bworks/files/ -# ||patria.md/i/partners/ (advblock.txt: 6203) -.patria.md/i/partners/ -# ||para.by/banners/ (advblock.txt: 6202) -.para.by/banners/ -# ||paparazzi.ru/i/personas.css? (advblock.txt: 6201) -.paparazzi.ru/i/personas\.css\? -# ||panicnews.ru^$subdocument (advblock.txt: 6200) -.panicnews.ru -# ||panicnews.ru/r.php?l= (advblock.txt: 6199) -.panicnews.ru/r\.php\?l= -# ||panicnews.ru/js/popup.js (advblock.txt: 6198) -.panicnews.ru/js/popup\.js -# ||p-p.com.ua/-/uploads/media/000/ (advblock.txt: 6197) -.p-p.com.ua/-/uploads/media/000/ -# ||ozon.ru/graphics/img_ban/ (advblock.txt: 6196) -.ozon.ru/graphics/img_ban/ -# ||ozon.ru/graphics/img/ (advblock.txt: 6195) -.ozon.ru/graphics/img/ -# ||oyye.bhf.su (advblock.txt: 6194) -.oyye.bhf.su*. -# ||oyy.l2anons.ws^ (advblock.txt: 6193) -.oyy.l2anons.ws -# ||overclockers.ru/images/*_brand. (advblock.txt: 6192) -.overclockers.ru/images/.*_brand\. -# ||overclockers.ru/images/$object (advblock.txt: 6191) -.overclockers.ru/images/ -# ||otido.com.ua/banner_/ (advblock.txt: 6190) -.otido.com.ua/banner_/ -# ||oszone.net/ibm.html (advblock.txt: 6189) -.oszone.net/ibm\.html -# ||osvete.ru/files/$object (advblock.txt: 6188) -.osvete.ru/files/ -# ||osadovod.ru^*/banners/ (advblock.txt: 6187) -.osadovod.ru/.*/banners/ -# ||orsk.ru/images/bnz/ (advblock.txt: 6186) -.orsk.ru/images/bnz/ -# ||oper.ru/data/images/ (advblock.txt: 6184) -.oper.ru/data/images/ -# ||opentorrent.ru/images/banner/ (advblock.txt: 6183) -.opentorrent.ru/images/banner/ -# ||opensharing.org^$object (advblock.txt: 6182) -.opensharing.org -# ||opennet.ru^*/hints.cgi? (advblock.txt: 6181) -.opennet.ru/.*/hints\.cgi\? -# ||opennet.ru/adv_ (advblock.txt: 6180) -.opennet.ru/adv_ -# ||onlinefilmx.org/br_mc/ (advblock.txt: 6178) -.onlinefilmx.org/br_mc/ -# ||onlinedisk.ru/bban/banner/ (advblock.txt: 6177) -.onlinedisk.ru/bban/banner/ -# ||online.ua/teletrade (advblock.txt: 6176) -.online.ua/teletrade -# ||online.ua/onlineua%20240_30.gif (advblock.txt: 6175) -.online.ua/onlineua%20240_30\.gif -# ||online.multilex.ru^*banner (advblock.txt: 6173) -.online.multilex.ru/.*banner -# ||onlainfilm.ucoz.ua/swf/ (advblock.txt: 6172) -.onlainfilm.ucoz.ua/swf/ -# ||ongab.ru^*/img/ban/ (advblock.txt: 6171) -.ongab.ru/.*/img/ban/ -# ||onedivision.ru/images/branding. (advblock.txt: 6170) -.onedivision.ru/images/branding\. -# ||onboardvideo.com.ua/images/adban/ (advblock.txt: 6169) -.onboardvideo.com.ua/images/adban/ -# ||omskmama.ru^*/images/$object (advblock.txt: 6168) -.omskmama.ru/.*/images/ -# ||omskinform.ru/keys/ (advblock.txt: 6167) -.omskinform.ru/keys/ -# ||ololo.fm/banners/ (advblock.txt: 6166) -.ololo.fm/banners/ -# ||olegon.ru/r/ (advblock.txt: 6165) -.olegon.ru/r/ -# ||oldgames.ru/netcat_files/Image/$object (advblock.txt: 6164) -.oldgames.ru/netcat_files/Image/ -# ||old-games.ru/img/b/ (advblock.txt: 6163) -.old-games.ru/img/b/ -# ||odessa-daily.com.ua/images/stories/banners/ (advblock.txt: 6162) -.odessa-daily.com.ua/images/stories/banners/ -# ||oclab.ru/flash/ (advblock.txt: 6161) -.oclab.ru/flash/ -# ||obnimau.ru/img-ba/ (advblock.txt: 6160) -.obnimau.ru/img-ba/ -# ||objectiv.tv/templates/$object (advblock.txt: 6159) -.objectiv.tv/templates/ -# ||nya.sh/imgs/a/ (advblock.txt: 6158) -.nya.sh/imgs/a/ -# ||nv.ua/pub/banners/ (advblock.txt: 6157) -.nv.ua/pub/banners/ -# ||nude-moon.com/includes/2un.js (advblock.txt: 6156) -.nude-moon.com/includes/2un\.js -# ||nude-moon.com/cdn-cgi/pe/bag2?r[]=http (advblock.txt: 6155) -.nude-moon.com/cdn-cgi/pe/bag2\?r\[\]=http -# ||nr2.ru/pict/banners/ (advblock.txt: 6154) -.nr2.ru/pict/banners/ -# ||nowfilms.ru^*/kazino/ (advblock.txt: 6153) -.nowfilms.ru/.*/kazino/ -# ||nowa.cc/download/ (advblock.txt: 6152) -.nowa.cc/download/ -# ||now.ru^*/promo/ (advblock.txt: 6151) -.now.ru/.*/promo/ -# ||now.ru/branding/ (advblock.txt: 6150) -.now.ru/branding/ -# ||novostiua.net/mang*.swf (advblock.txt: 6149) -.novostiua.net/mang.*\.swf -# ||novostimira.*?v=$script (advblock.txt: 6148) -.novostimira.*./.*\?v= -# ||novosti.dn.ua/ad/ (advblock.txt: 6147) -.novosti.dn.ua/ad/ -# ||novorus.info/banner/ (advblock.txt: 6146) -.novorus.info/banner/ -# ||novayagazeta.ru/storage/banner (advblock.txt: 6145) -.novayagazeta.ru/storage/banner -# ||notebook-center.ru^$object (advblock.txt: 6144) -.notebook-center.ru -# ||notebook-center.ru/market/ (advblock.txt: 6143) -.notebook-center.ru/market/ -# ||nord-news.ru/img/all/ (advblock.txt: 6142) -.nord-news.ru/img/all/ -# ||noob-club.ru^$object (advblock.txt: 6141) -.noob-club.ru -# ||noob-club.ru/js/ (advblock.txt: 6140) -.noob-club.ru/js/ -# ||nntt.org/a/files/ (advblock.txt: 6138) -.nntt.org/a/files/ -# ||nnportal.org/portal/core/i/ (advblock.txt: 6137) -.nnportal.org/portal/core/i/ -# ||nnportal.org/nntt/$object (advblock.txt: 6136) -.nnportal.org/nntt/ -# ||nnover.ru/hints/show/ (advblock.txt: 6135) -.nnover.ru/hints/show/ -# ||nnm.me/i/a/ (advblock.txt: 6134) -.nnm.me/i/a/ -# ||nn.by/photos/banners/ (advblock.txt: 6133) -.nn.by/photos/banners/ -# ||nn.by/photos/$object (advblock.txt: 6132) -.nn.by/photos/ -# ||nn.by/images/$object (advblock.txt: 6131) -.nn.by/images/ -# ||nirvana.fm/pic/kartinki/ (advblock.txt: 6130) -.nirvana.fm/pic/kartinki/ -# ||nirvana.fm/banners/ (advblock.txt: 6129) -.nirvana.fm/banners/ -# ||ng.by/bimages/$object (advblock.txt: 6128) -.ng.by/bimages/ -# ||newsland.com/public/img/branding/ (advblock.txt: 6127) -.newsland.com/public/img/branding/ -# ||newsland.*/public/img/viardo. (advblock.txt: 6126) -.newsland.*./(.*/)?public/img/viardo\. -# ||newslab.ru/b/ (advblock.txt: 6125) -.newslab.ru/b/ -# ||newserials.net/ranetka.js (advblock.txt: 6124) -.newserials.net/ranetka\.js -# ||new-sebastopol.com/resources/$object (advblock.txt: 6123) -.new-sebastopol.com/resources/ -# ||new-kino.net/ReklDC/ (advblock.txt: 6122) -.new-kino.net/ReklDC/ -# ||nesekretno.ru/images/uploaded/banner/ (advblock.txt: 6121) -.nesekretno.ru/images/uploaded/banner/ -# ||neosmi.ru/js/*_klik. (advblock.txt: 6120) -.neosmi.ru/js/.*_klik\. -# ||nemezisworld.com^*.php| (advblock.txt: 6119) -.nemezisworld.com/.*\.php$ -# ||needforvid.com/images/$object (advblock.txt: 6118) -.needforvid.com/images/ -# ||nashgorod.ru/b/ (advblock.txt: 6117) -.nashgorod.ru/b/ -# ||narutoplanet.ru/swf/ (advblock.txt: 6116) -.narutoplanet.ru/swf/ -# ||narutoplanet.ru/slider/ (advblock.txt: 6115) -.narutoplanet.ru/slider/ -# ||narodclub.net/clk111.js (advblock.txt: 6114) -.narodclub.net/clk111\.js -# ||nadavi.*/gb.php?idb_= (advblock.txt: 6113) -.nadavi.*./(.*/)?gb\.php\?idb_= -# ||mywed.ru/bnr/ (advblock.txt: 6112) -.mywed.ru/bnr/ -# ||myvi.ru/content/images/background/ (advblock.txt: 6111) -.myvi.ru/content/images/background/ -# ||mysw.info/ext/ (advblock.txt: 6110) -.mysw.info/ext/ -# ||myshared.ru/advaction/ (advblock.txt: 6109) -.myshared.ru/advaction/ -# ||myserial.org/a-detector/ (advblock.txt: 6108) -.myserial.org/a-detector/ -# ||my-hit.org/background/ (advblock.txt: 6107) -.my-hit.org/background/ -# ||my-cinema.net/branding/ (advblock.txt: 6106) -.my-cinema.net/branding/ -# ||muzofon.com/bg/ (advblock.txt: 6105) -.muzofon.com/bg/ -# ||muzofon.com/banner/ (advblock.txt: 6104) -.muzofon.com/banner/ -# ||muzoff.ru/rek/ (advblock.txt: 6103) -.muzoff.ru/rek/ -# ||muzoff.ru/html/ (advblock.txt: 6102) -.muzoff.ru/html/ -# ||muzico.ru//banners/ (advblock.txt: 6101) -# ||muzebra.com^*-240x400. (advblock.txt: 6100) -.muzebra.com/.*-240x400\. -# ||musictube.ru/flash/ (advblock.txt: 6099) -.musictube.ru/flash/ -# ||musicforums.ru/pictures/casio_ (advblock.txt: 6098) -.musicforums.ru/pictures/casio_ -# ||musicforums.ru/*/knopki/ (advblock.txt: 6097) -.musicforums.ru/.*/knopki/ -# ||multmer.org^$object (advblock.txt: 6096) -.multmer.org -# ||multikonline.ru/rekl.js (advblock.txt: 6095) -.multikonline.ru/rekl\.js -# ||multik-online.net/trotator/ (advblock.txt: 6094) -.multik-online.net/trotator/ -# ||mskd.ru/img/*x*_ (advblock.txt: 6093) -.mskd.ru/img/.*x.*_ -# ||mptron.com/img/ (advblock.txt: 6092) -.mptron.com/img/ -# ||mp3rington.ru/adv_ (advblock.txt: 6091) -.mp3rington.ru/adv_ -# ||moyareklama.ru/common/images/$object (advblock.txt: 6090) -.moyareklama.ru/common/images/ -# ||motoua.net/i/$subdocument (advblock.txt: 6089) -.motoua.net/i/ -# ||motorshop.kz/images/$object (advblock.txt: 6088) -.motorshop.kz/images/ -# ||motonews.ru/ad/ (advblock.txt: 6087) -.motonews.ru/ad/ -# ||moto.kiev.ua/forum/banners/ (advblock.txt: 6086) -.moto.kiev.ua/forum/banners/ -# ||moskva.fm^*/promo/ (advblock.txt: 6084) -.moskva.fm/.*/promo/ -# ||moresofta.com/js/0dd270.js (advblock.txt: 6083) -.moresofta.com/js/0dd270\.js -# ||mondeoeffect.rambler.ru^ (advblock.txt: 6081) -.mondeoeffect.rambler.ru -# ||molodejj.tv^*/branding/$~image (advblock.txt: 6080) -.molodejj.tv/.*/branding/ -# ||molodejj.tv/other/ (advblock.txt: 6079) -.molodejj.tv/other/ -# ||moevideo.net/img/promo/ (advblock.txt: 6078) -.moevideo.net/img/promo/ -# ||moevideo.net/getit/ (advblock.txt: 6077) -.moevideo.net/getit/ -# ||moevideo.net/branding/ (advblock.txt: 6075) -.moevideo.net/branding/ -# ||moevideo.net/apv/ (advblock.txt: 6074) -.moevideo.net/apv/ -# ||mobiledevice.ru/banner_ (advblock.txt: 6073) -.mobiledevice.ru/banner_ -# ||mobile-review.com/events/*/ad/ (advblock.txt: 6072) -.mobile-review.com/events/.*/ad/ -# ||mobile-files.ru^$object (advblock.txt: 6071) -.mobile-files.ru -# ||mobile-files.ru/r/ (advblock.txt: 6070) -.mobile-files.ru/r/ -# ||mobbit.info/r/ (advblock.txt: 6069) -.mobbit.info/r/ -# ||mob39.ru/jabox_img/banner/ (advblock.txt: 6068) -.mob39.ru/jabox_img/banner/ -# ||mmotop.ru^*.js?rnd= (advblock.txt: 6067) -.mmotop.ru/.*\.js\?rnd= -# ||mmoru.com/board/clientscript/css1.js (advblock.txt: 6066) -.mmoru.com/board/clientscript/css1\.js -# ||mmoru.com/ads/ (advblock.txt: 6065) -.mmoru.com/ads/ -# ||mmorpg.ua/images/banners/ (advblock.txt: 6064) -.mmorpg.ua/images/banners/ -# ||mmorpg.ua/images/background. (advblock.txt: 6063) -.mmorpg.ua/images/background\. -# ||mmorpg.su/userdata/background/ (advblock.txt: 6062) -.mmorpg.su/userdata/background/ -# ||mmohelper.ru^$object (advblock.txt: 6061) -.mmohelper.ru -# ||mmohelper.ru/wp-content/uploads/adv- (advblock.txt: 6060) -.mmohelper.ru/wp-content/uploads/adv- -# ||mmogamez.ru/safa/ (advblock.txt: 6059) -.mmogamez.ru/safa/ -# ||mmogamez.ru/assets/templates/Standart/images/mmogamez. (advblock.txt: 6058) -.mmogamez.ru/assets/templates/Standart/images/mmogamez\. -# ||mmogamez.ru/asda/ (advblock.txt: 6057) -.mmogamez.ru/asda/ -# ||mmogamez.info^*/pagebgtop. (advblock.txt: 6056) -.mmogamez.info/.*/pagebgtop\. -# ||mlfun.org.ua/mlbanners/ (advblock.txt: 6055) -.mlfun.org.ua/mlbanners/ -# ||mk.ru/i/brand/ (advblock.txt: 6054) -.mk.ru/i/brand/ -# ||minizal.net/js/brandminizal.js (advblock.txt: 6053) -.minizal.net/js/brandminizal\.js -# ||mibius.com.ua/banner (advblock.txt: 6052) -.mibius.com.ua/banner -# ||meteoprog.ua/pictures/banners/ (advblock.txt: 6051) -.meteoprog.ua/pictures/banners/ -# ||meteo.ua/var/slando/ (advblock.txt: 6050) -.meteo.ua/var/slando/ -# ||meteo.ua/var/aukro/ (advblock.txt: 6049) -.meteo.ua/var/aukro/ -# ||metamarket.com.ua^$third-party (advblock.txt: 6048) -.metamarket.com.ua -# ||metallurg-nk.ru/img/banners/ (advblock.txt: 6047) -.metallurg-nk.ru/img/banners/ -# ||meta.ua/img/banners/ (advblock.txt: 6046) -.meta.ua/img/banners/ -# ||meta.ua/img/b/ (advblock.txt: 6045) -.meta.ua/img/b/ -# ||meta.ua/f_new.asp? (advblock.txt: 6044) -.meta.ua/f_new\.asp\? -# ||meta.ua/f_new.*_teaser& (advblock.txt: 6043) -.meta.ua/f_new\..*_teaser& -# ||mercatos.net/banner/ (advblock.txt: 6042) -.mercatos.net/banner/ -# ||melt.ru/images/cms/_*0*_/ (advblock.txt: 6041) -.melt.ru/images/cms/_.*0.*_/ -# ||megatorrents.*/forum/$object (advblock.txt: 6039) -.megatorrents.*./(.*/)?forum/ -# ||megashara.com^*_branding/ (advblock.txt: 6038) -.megashara.com/.*_branding/ -# ||megashara.com^*/branding/ (advblock.txt: 6037) -.megashara.com/.*/branding/ -# ||megashara.com^*/br_mc/ (advblock.txt: 6036) -.megashara.com/.*/br_mc/ -# ||megaimg.ru/clixundex.js (advblock.txt: 6035) -.megaimg.ru/clixundex\.js -# ||megafon.ru/f/banner/ (advblock.txt: 6034) -.megafon.ru/f/banner/ -# ||mega-tracker.net/templates/megatracker/bg/ (advblock.txt: 6033) -.mega-tracker.net/templates/megatracker/bg/ -# ||mega-porno.ru/images/promo/ (advblock.txt: 6032) -.mega-porno.ru/images/promo/ -# ||mega-pics-money.ru/Megapicsmoneyclick.js (advblock.txt: 6031) -.mega-pics-money.ru/Megapicsmoneyclick\.js -# ||medvestnik.by/bimages/ (advblock.txt: 6030) -.medvestnik.by/bimages/ -# ||medprom.ru/pictures/*/bpic. (advblock.txt: 6029) -.medprom.ru/pictures/.*/bpic\. -# ||medlux.com.ua^$object (advblock.txt: 6028) -.medlux.com.ua -# ||medkrug.ru/web/flash/reg. (advblock.txt: 6027) -.medkrug.ru/web/flash/reg\. -# ||medikforum.ru/news/banners/ (advblock.txt: 6026) -.medikforum.ru/news/banners/ -# ||mediaua.com.ua/bnr/ (advblock.txt: 6025) -.mediaua.com.ua/bnr/ -# ||mebelminsk.by/assets/images/swf/ (advblock.txt: 6024) -.mebelminsk.by/assets/images/swf/ -# ||mebelminsk.by/assets/images/adw/ (advblock.txt: 6023) -.mebelminsk.by/assets/images/adw/ -# ||maxpark.com/static/img/branding/ (advblock.txt: 6022) -.maxpark.com/static/img/branding/ -# ||maxk2.ru/lady (advblock.txt: 6021) -.maxk2.ru/lady -# ||maultalk.com/images/mon/ (advblock.txt: 6020) -.maultalk.com/images/mon/ -# ||master.cn.ua/_images/banners/ (advblock.txt: 6019) -.master.cn.ua/_images/banners/ -# ||map.cn.ua/media/promo/ (advblock.txt: 6018) -.map.cn.ua/media/promo/ -# ||map.cn.ua/media/other/ (advblock.txt: 6017) -.map.cn.ua/media/other/ -# ||manyclips.net^*.php?id= (advblock.txt: 6016) -.manyclips.net/.*\.php\?id= -# ||mama.kharkov.ua/uploads/*banner (advblock.txt: 6015) -.mama.kharkov.ua/uploads/.*banner -# ||magcity74.ru/uploads/banner/ (advblock.txt: 6014) -.magcity74.ru/uploads/banner/ -# ||mac-torrent-download.net/adc- (advblock.txt: 6013) -.mac-torrent-download.net/adc- -# ||luxtorrents.com/pic/branding- (advblock.txt: 6012) -.luxtorrents.com/pic/branding- -# ||lurkmore.to/*/?*=left$xmlhttprequest (advblock.txt: 6011) -.lurkmore.to/.*/\?.*=left -# ||lurkmo.re/*/?*=left$xmlhttprequest (advblock.txt: 6010) -.lurkmo.re/.*/\?.*=left -# ||lovekinozal.ru^$object (advblock.txt: 6008) -.lovekinozal.ru -# ||lovekinozal.ru/brand/ (advblock.txt: 6007) -.lovekinozal.ru/brand/ -# ||lokomotiv.info/img/rotator/ (advblock.txt: 6006) -.lokomotiv.info/img/rotator/ -# ||logger.ivi.ru^ (advblock.txt: 6005) -.logger.ivi.ru -# ||logan.ru/images/banner/ (advblock.txt: 6004) -.logan.ru/images/banner/ -# ||lkforum.ru/button/ (advblock.txt: 6003) -.lkforum.ru/button/ -# ||livesport.ws/templates/livesport/*livesport (advblock.txt: 6002) -.livesport.ws/templates/livesport/.*livesport -# ||livelib.ru/side| (advblock.txt: 6001) -.livelib.ru/side$ -# ||livelib.ru/img/skins/ozon/ (advblock.txt: 6000) -.livelib.ru/img/skins/ozon/ -# ||livelib.ru/240x400. (advblock.txt: 5999) -.livelib.ru/240x400\. -# ||livelib.ru/*0x*.htm|$subdocument (advblock.txt: 5998) -.livelib.ru/.*0x.*\.htm$ -# ||livejournal.ru/i/reskining/ (advblock.txt: 5997) -.livejournal.ru/i/reskining/ -# ||livejournal.com/services/scrollbanner.bml? (advblock.txt: 5996) -.livejournal.com/services/scrollbanner\.bml\? -# ||livejournal.com/img/reskining/ (advblock.txt: 5995) -.livejournal.com/img/reskining/ -# ||liveinternet.ru/ad/ (advblock.txt: 5994) -.liveinternet.ru/ad/ -# ||livefootball.ws^$object (advblock.txt: 5993) -.livefootball.ws -# ||liveangarsk.ru/files/k (advblock.txt: 5992) -.liveangarsk.ru/files/k -# ||liveangarsk.ru/files/$object (advblock.txt: 5991) -.liveangarsk.ru/files/ -# ||live4.ru/banner_images/ (advblock.txt: 5990) -.live4.ru/banner_images/ -# ||link.ac/images/banner_ (advblock.txt: 5989) -.link.ac/images/banner_ -# ||lifehacker.ru/promo/ (advblock.txt: 5988) -.lifehacker.ru/promo/ -# ||lib.rus.ec/sites/default/files/$object (advblock.txt: 5987) -.lib.rus.ec/sites/default/files/ -# ||lib.rus.ec/ads/ (advblock.txt: 5986) -.lib.rus.ec/ads/ -# ||leporno.org/ttnet/ (advblock.txt: 5985) -.leporno.org/ttnet/ -# ||leporno.org/rt (advblock.txt: 5984) -.leporno.org/rt -# ||leporno.org/js/ (advblock.txt: 5983) -.leporno.org/js/ -# ||lectro.ru^*-pop-under- (advblock.txt: 5982) -.lectro.ru/.*-pop-under- -# ||lastusja.ru/friends/ (advblock.txt: 5981) -.lastusja.ru/friends/ -# ||lanzone.info/rek/ (advblock.txt: 5980) -.lanzone.info/rek/ -# ||ladyline.com.ua/images/banner (advblock.txt: 5979) -.ladyline.com.ua/images/banner -# ||lada-granta.net/button/ (advblock.txt: 5978) -.lada-granta.net/button/ -# ||lacucinaitaliana.ru/images/ (advblock.txt: 5977) -.lacucinaitaliana.ru/images/ -# ||l2on.net/img/friends/ (advblock.txt: 5976) -.l2on.net/img/friends/ -# ||kurufin.ru/mayk_ (advblock.txt: 5975) -.kurufin.ru/mayk_ -# ||kurs.com.ua/static/banner/ (advblock.txt: 5974) -.kurs.com.ua/static/banner/ -# ||kulina.ru/swf/ (advblock.txt: 5973) -.kulina.ru/swf/ -# ||kulina.ru/bn/ (advblock.txt: 5972) -.kulina.ru/bn/ -# ||kulichki.net/buttons/ (advblock.txt: 5971) -.kulichki.net/buttons/ -# ||kukuzya.ru/bnrs/ (advblock.txt: 5970) -.kukuzya.ru/bnrs/ -# ||kubez.biz/banners/ (advblock.txt: 5969) -.kubez.biz/banners/ -# ||kset.kz/vda (advblock.txt: 5968) -.kset.kz/vda -# ||kronverkcinema.ru/sadm_files/banners/ (advblock.txt: 5967) -.kronverkcinema.ru/sadm_files/banners/ -# ||krisha.kz^*/br/ (advblock.txt: 5966) -.krisha.kz/.*/br/ -# ||krasview.ru/content/stargate/ (advblock.txt: 5965) -.krasview.ru/content/stargate/ -# ||kpcdn.net^*/banner_img/ (advblock.txt: 5964) -.kpcdn.net/.*/banner_img/ -# ||kozhuhovo.com/!images/banners/ (advblock.txt: 5963) -.kozhuhovo.com/!images/banners/ -# ||koob.ru/cache/ (advblock.txt: 5962) -.koob.ru/cache/ -# ||koob.ru/*_reklama. (advblock.txt: 5961) -.koob.ru/.*_reklama\. -# ||komcity.ru^*.swf (advblock.txt: 5959) -.komcity.ru/.*\.swf -# ||komcity.ru/adver/ (advblock.txt: 5958) -.komcity.ru/adver/ -# ||kolyan.net/*_brand (advblock.txt: 5957) -.kolyan.net/.*_brand -# ||klukva.org/bann/ (advblock.txt: 5956) -.klukva.org/bann/ -# ||klops.ru/assets/sales_widget- (advblock.txt: 5955) -.klops.ru/assets/sales_widget- -# ||klerk.ru^*/banners/ (advblock.txt: 5954) -.klerk.ru/.*/banners/ -# ||kiwi.kz/bimbo/? (advblock.txt: 5953) -.kiwi.kz/bimbo/\? -# ||kiwi.kz/base/a.js? (advblock.txt: 5952) -.kiwi.kz/base/a\.js\? -# ||kipfilms.ru/blocks/ (advblock.txt: 5951) -.kipfilms.ru/blocks/ -# ||kinoylei.ru/br/ (advblock.txt: 5950) -.kinoylei.ru/br/ -# ||kinotochka.net^*/images/fon.jpg (advblock.txt: 5949) -.kinotochka.net/.*/images/fon\.jpg -# ||kinotochka.net/CM (advblock.txt: 5948) -.kinotochka.net/CM -# ||kinopod.ru/show/ (advblock.txt: 5947) -.kinopod.ru/show/ -# ||kinopod.ru/branding/ (advblock.txt: 5946) -.kinopod.ru/branding/ -# ||kinonews.ru/stuff/ (advblock.txt: 5945) -.kinonews.ru/stuff/ -# ||kinomir.net^$object (advblock.txt: 5944) -.kinomir.net -# ||kinomir.net/file.js (advblock.txt: 5943) -.kinomir.net/file\.js -# ||kinomir.net/counter3.js (advblock.txt: 5942) -.kinomir.net/counter3\.js -# ||kinomania.ru/brand/$stylesheet (advblock.txt: 5941) -.kinomania.ru/brand/ -# ||kinomania.kz/images/bg1.jpg (advblock.txt: 5940) -.kinomania.kz/images/bg1\.jpg -# ||kinogo.net^*/ram/ (advblock.txt: 5939) -.kinogo.net/.*/ram/ -# ||kinogo.net/playlists/ (advblock.txt: 5938) -.kinogo.net/playlists/ -# ||kinogo.net/br/ (advblock.txt: 5937) -.kinogo.net/br/ -# ||kinogo.net/bn.php? (advblock.txt: 5936) -.kinogo.net/bn\.php\? -# ||kinobaza.net/babes/ (advblock.txt: 5935) -.kinobaza.net/babes/ -# ||kinoafisha.ua/upload/*/bgadvs/ (advblock.txt: 5934) -.kinoafisha.ua/upload/.*/bgadvs/ -# ||kinoafisha.info/branding/ (advblock.txt: 5933) -.kinoafisha.info/branding/ -# ||kino-teatr.ru/media/ (advblock.txt: 5932) -.kino-teatr.ru/media/ -# ||kino-teatr.ru/img/*_bkg_ (advblock.txt: 5931) -.kino-teatr.ru/img/.*_bkg_ -# ||kino-portal.net/go/ (advblock.txt: 5930) -.kino-portal.net/go/ -# ||kino-live.org^*/images/1920x (advblock.txt: 5929) -.kino-live.org/.*/images/1920x -# ||kino-govno.com^*/bg.jpg| (advblock.txt: 5928) -.kino-govno.com/.*/bg\.jpg$ -# ||kino-govno.com/sides/ (advblock.txt: 5927) -.kino-govno.com/sides/ -# ||kino-dom.tv/branding_$~stylesheet (advblock.txt: 5926) -.kino-dom.tv/branding_ -# ||kino-cccp.net/images/banner/ (advblock.txt: 5925) -.kino-cccp.net/images/banner/ -# ||kinatvideo.ru^*/default_images/ (advblock.txt: 5924) -.kinatvideo.ru/.*/default_images/ -# ||kinatvideo.ru^*/cityads/ (advblock.txt: 5923) -.kinatvideo.ru/.*/cityads/ -# ||kinatgames.ru/templates/*/cod.jpg (advblock.txt: 5922) -.kinatgames.ru/templates/.*/cod\.jpg -# ||kinatgames.ru/images/flash/ (advblock.txt: 5921) -.kinatgames.ru/images/flash/ -# ||killfilms.ru^*/girls/ (advblock.txt: 5920) -.killfilms.ru/.*/girls/ -# ||kiev-mama.com.ua/assets/banners/ (advblock.txt: 5919) -.kiev-mama.com.ua/assets/banners/ -# ||kg-portal.ru/sides/ (advblock.txt: 5918) -.kg-portal.ru/sides/ -# ||keep4u.ru/r.php? (advblock.txt: 5917) -.keep4u.ru/r\.php\? -# ||keep4u.ru/partners/ (advblock.txt: 5916) -.keep4u.ru/partners/ -# ||kazanfirst.ru/storage/banners/ (advblock.txt: 5915) -.kazanfirst.ru/storage/banners/ -# ||katushka.net/img/banners/ (advblock.txt: 5914) -.katushka.net/img/banners/ -# ||kartinka.in/img/handler.js (advblock.txt: 5913) -.kartinka.in/img/handler\.js -# ||kapriz.info/tiz/ (advblock.txt: 5912) -.kapriz.info/tiz/ -# ||kapriz.info/img/ (advblock.txt: 5911) -.kapriz.info/img/ -# ||kapital-rus.ru/img/*/banners/ (advblock.txt: 5910) -.kapital-rus.ru/img/.*/banners/ -# ||kanobu.ru/advideos/ (advblock.txt: 5909) -.kanobu.ru/advideos/ -# ||kaddr.com^*/Stylus.png (advblock.txt: 5908) -.kaddr.com/.*/Stylus\.png -# ||kaban.tv/kabantv.js (advblock.txt: 5907) -.kaban.tv/kabantv\.js -# ||k.img.com.ua/static/js/fotos_banner.js (advblock.txt: 5906) -.k.img.com.ua/static/js/fotos_banner\.js -# ||k.img.com.ua/static/img/banners/ (advblock.txt: 5905) -.k.img.com.ua/static/img/banners/ -# ||jurnalik.ru/slider.php (advblock.txt: 5904) -.jurnalik.ru/slider\.php -# ||jaymedianetwork.com/get.php?id= (advblock.txt: 5903) -.jaymedianetwork.com/get\.php\?id= -# ||ixbt.com/include/ctx2.js (advblock.txt: 5902) -.ixbt.com/include/ctx2\.js -# ||ixbt.com/img/branding/ (advblock.txt: 5901) -.ixbt.com/img/branding/ -# ||ixbt.com/cgi-bin/r. (advblock.txt: 5900) -.ixbt.com/cgi-bin/r\. -# ||ixbt.com/branding/ (advblock.txt: 5899) -.ixbt.com/branding/ -# ||ixbt.com/banner/ (advblock.txt: 5898) -.ixbt.com/banner/ -# ||ivi.ru/branding/ (advblock.txt: 5897) -.ivi.ru/branding/ -# ||itvcom.ru/images/*sape (advblock.txt: 5896) -.itvcom.ru/images/.*sape -# ||irr.by^*/showcase. (advblock.txt: 5895) -.irr.by/.*/showcase\. -# ||irk.ru/img/*/ibr/ (advblock.txt: 5894) -.irk.ru/img/.*/ibr/ -# ||ipm.ua/bn/g/? (advblock.txt: 5893) -.ipm.ua/bn/g/\? -# ||ipicture.ru/public/images/temp/ (advblock.txt: 5892) -.ipicture.ru/public/images/temp/ -# ||invictory.org/public/banners/ (advblock.txt: 5891) -.invictory.org/public/banners/ -# ||internetsms.org/bundles/ismsfront/img/tks/ (advblock.txt: 5890) -.internetsms.org/bundles/ismsfront/img/tks/ -# ||internethalyava.ru^*/area_banners/ (advblock.txt: 5889) -.internethalyava.ru/.*/area_banners/ -# ||interfax.ru/rcl/ (advblock.txt: 5888) -.interfax.ru/rcl/ -# ||interfax.by/files/$object (advblock.txt: 5887) -.interfax.by/files/ -# ||inspired.com.ua^$object (advblock.txt: 5886) -.inspired.com.ua -# ||insite.su/engine/classes/masha/ (advblock.txt: 5885) -.insite.su/engine/classes/masha/ -# ||insite.su/engine/classes/js/nxtdqdgn.js (advblock.txt: 5884) -.insite.su/engine/classes/js/nxtdqdgn\.js -# ||inmoment.ru/img/$object (advblock.txt: 5883) -.inmoment.ru/img/ -# ||ingos.ru/common/img_ru/banners/ (advblock.txt: 5882) -.ingos.ru/common/img_ru/banners/ -# ||inform.kz/download/ (advblock.txt: 5881) -.inform.kz/download/ -# ||infocar.ua/icstat/branding/ (advblock.txt: 5880) -.infocar.ua/icstat/branding/ -# ||inflora.ru^$object (advblock.txt: 5879) -.inflora.ru -# ||inflora.ru/*banner (advblock.txt: 5878) -.inflora.ru/.*banner -# ||imoneyforum.ru/files/00 (advblock.txt: 5877) -.imoneyforum.ru/files/00 -# ||imhonet.ru/img/dumm/*-promo. (advblock.txt: 5876) -.imhonet.ru/img/dumm/.*-promo\. -# ||imgv.net^*.php?s= (advblock.txt: 5875) -.imgv.net/.*\.php\?s= -# ||imgix.ru/*.js| (advblock.txt: 5874) -.imgix.ru/.*\.js$ -# ||img.bankoboev.ru^ (advblock.txt: 5873) -.img.bankoboev.ru -# ||imageban.ru/cas.js (advblock.txt: 5872) -.imageban.ru/cas\.js -# ||imageban.ru/box/ (advblock.txt: 5871) -.imageban.ru/box/ -# ||im.tagilcity.ru^*?mt= (advblock.txt: 5870) -.im.tagilcity.ru/.*\?mt= -# ||ikinokz.net/ikino.js (advblock.txt: 5869) -.ikinokz.net/ikino\.js -# ||ikinokz.net/bannr.js (advblock.txt: 5868) -.ikinokz.net/bannr\.js -# ||ihead.ru/offers/ (advblock.txt: 5867) -.ihead.ru/offers/ -# ||igry.ru/media/tiz/ (advblock.txt: 5866) -.igry.ru/media/tiz/ -# ||igromania.ru^*_branding_ (advblock.txt: 5865) -.igromania.ru/.*_branding_ -# ||igromania.ru/upload/iblock/*/*attract_wallpaper$image (advblock.txt: 5864) -.igromania.ru/upload/iblock/.*/.*attract_wallpaper -# ||igromania.ru/bitrix/templates/igromania/brands.php (advblock.txt: 5863) -.igromania.ru/bitrix/templates/igromania/brands\.php -# ||igromania.ru/*/banners/ (advblock.txt: 5862) -.igromania.ru/.*/banners/ -# ||idownloads.ru^*/banners/ (advblock.txt: 5861) -.idownloads.ru/.*/banners/ -# ||iccup.com/templates/images/*-iccup.jpg (advblock.txt: 5860) -.iccup.com/templates/images/.*-iccup\.jpg -# ||iccup.com/a/b/ (advblock.txt: 5859) -.iccup.com/a/b/ -# ||ibusiness.ru^*/netlab/style.css? (advblock.txt: 5858) -.ibusiness.ru/.*/netlab/style\.css\? -# ||iarex.ru/insimgs/$object (advblock.txt: 5857) -.iarex.ru/insimgs/ -# ||i.ua^*_brandpage_ (advblock.txt: 5856) -.i.ua/.*_brandpage_ -# ||i-pic.ru/clx_ (advblock.txt: 5855) -.i-pic.ru/clx_ -# ||hyundai-club.com.ua/banner_ (advblock.txt: 5854) -.hyundai-club.com.ua/banner_ -# ||hwp.ru/images/mid/h-anons. (advblock.txt: 5853) -.hwp.ru/images/mid/h-anons\. -# ||hw-lab.com/uploads/adds/ (advblock.txt: 5852) -.hw-lab.com/uploads/adds/ -# ||htmlbook.ru/sites/default/files/$object (advblock.txt: 5851) -.htmlbook.ru/sites/default/files/ -# ||htmlbook.ru/files/$object (advblock.txt: 5850) -.htmlbook.ru/files/ -# ||hqroom.ru/images/ (advblock.txt: 5849) -.hqroom.ru/images/ -# ||hpc.name/images/banner/ (advblock.txt: 5848) -.hpc.name/images/banner/ -# ||how-tos.ru/images/banner (advblock.txt: 5847) -.how-tos.ru/images/banner -# ||hottabych.net^$object (advblock.txt: 5846) -.hottabych.net -# ||hotcharts.ru/img/*_700x150 (advblock.txt: 5845) -.hotcharts.ru/img/.*_700x150 -# ||hostingkartinok.com/images/*_960x100.gif (advblock.txt: 5843) -.hostingkartinok.com/images/.*_960x100\.gif -# ||host.fm/images/pr/ (advblock.txt: 5842) -.host.fm/images/pr/ -# ||horadric.ru^*/images/bg_ (advblock.txt: 5841) -.horadric.ru/.*/images/bg_ -# ||horadric.ru^*-adv-bg- (advblock.txt: 5840) -.horadric.ru/.*-adv-bg- -# ||horadric.ru/styles/*/brand_ (advblock.txt: 5839) -.horadric.ru/styles/.*/brand_ -# ||hm6.ru/banner (advblock.txt: 5838) -.hm6.ru/banner -# ||hideme.ru/images/prx/prx_bnr_ (advblock.txt: 5837) -.hideme.ru/images/prx/prx_bnr_ -# ||hi-fidelity-forum.com/_partners/ (advblock.txt: 5836) -.hi-fidelity-forum.com/_partners/ -# ||hi-fi.ru/bitrix/images/ (advblock.txt: 5835) -.hi-fi.ru/bitrix/images/ -# ||hhcdn.ru^*.banners. (advblock.txt: 5834) -.hhcdn.ru/.*\.banners\. -# ||hhcdn.ru/nposter/ (advblock.txt: 5833) -.hhcdn.ru/nposter/ -# ||hentaichan.ru/r/ (advblock.txt: 5832) -.hentaichan.ru/r/ -# ||hentaichan.ru/async.html?sid= (advblock.txt: 5831) -.hentaichan.ru/async\.html\?sid= -# ||hdtv.ru/resources/$object (advblock.txt: 5830) -.hdtv.ru/resources/ -# ||hdtrailer.ru/images/bg/ (advblock.txt: 5829) -.hdtrailer.ru/images/bg/ -# ||hdserials.tv^$object (advblock.txt: 5828) -.hdserials.tv -# ||hdkinomax.com/reklama-offf.jpg (advblock.txt: 5827) -.hdkinomax.com/reklama-offf\.jpg -# ||hdgo.cc/player/adforce. (advblock.txt: 5826) -.hdgo.cc/player/adforce\. -# ||hdfilms.tv/images/bg/ (advblock.txt: 5825) -.hdfilms.tv/images/bg/ -# ||hdclub.org/mg/ (advblock.txt: 5824) -.hdclub.org/mg/ -# ||hctraktor.org/bi.php?url= (advblock.txt: 5823) -.hctraktor.org/bi\.php\?url= -# ||hctorpedo.ru/files/$object (advblock.txt: 5822) -.hctorpedo.ru/files/ -# ||hacker-pro.net/banner/ (advblock.txt: 5821) -.hacker-pro.net/banner/ -# ||habrahabr.ru^*/htmlblock300/ (advblock.txt: 5820) -.habrahabr.ru/.*/htmlblock300/ -# ||habrahabr.ru/hauusbx/al/habrahabr/ (advblock.txt: 5819) -.habrahabr.ru/hauusbx/al/habrahabr/ -# ||gzt.ru/upload/*.rklite/ (advblock.txt: 5818) -.gzt.ru/upload/.*\.rklite/ -# ||guru.ua/white_menu/$object (advblock.txt: 5817) -.guru.ua/white_menu/ -# ||guns.ru/i/ (advblock.txt: 5816) -.guns.ru/i/ -# ||guitarplayer.ru/b/ (advblock.txt: 5815) -.guitarplayer.ru/b/ -# ||gubkinskiy.com/images/5 (advblock.txt: 5814) -.gubkinskiy.com/images/5 -# ||gubkinskiy.com/images/1 (advblock.txt: 5813) -.gubkinskiy.com/images/1 -# ||gubkinskiy.com/images/$object (advblock.txt: 5812) -.gubkinskiy.com/images/ -# ||gsmforum.ru/images/ownpictures/ (advblock.txt: 5811) -.gsmforum.ru/images/ownpictures/ -# ||gsmbaza.ru/images/ownpictures/ (advblock.txt: 5810) -.gsmbaza.ru/images/ownpictures/ -# ||grani.ru/files/$object (advblock.txt: 5809) -.grani.ru/files/ -# ||gramota.ru/files/ie/ (advblock.txt: 5808) -.gramota.ru/files/ie/ -# ||gotps3.ru/images/a/*.jpg| (advblock.txt: 5806) -.gotps3.ru/images/a/.*\.jpg$ -# ||gotps3.ru/images/a/*.gif| (advblock.txt: 5805) -.gotps3.ru/images/a/.*\.gif$ -# ||gotovim.ru/pics/1/ (advblock.txt: 5804) -.gotovim.ru/pics/1/ -# ||gotovim.ru/incs/ (advblock.txt: 5803) -.gotovim.ru/incs/ -# ||gorodkirov.ru/kaFile?b_id= (advblock.txt: 5802) -.gorodkirov.ru/kaFile\?b_id= -# ||gorod55.ru/data/$object (advblock.txt: 5801) -.gorod55.ru/data/ -# ||gorod.dp.ua/pic/richban/ (advblock.txt: 5800) -.gorod.dp.ua/pic/richban/ -# ||gorod.dp.ua/pic/bm2/ (advblock.txt: 5799) -.gorod.dp.ua/pic/bm2/ -# ||gorod.cn.ua/*/brending/ (advblock.txt: 5798) -.gorod.cn.ua/.*/brending/ -# ||gorod.cn.ua/*/banners/ (advblock.txt: 5797) -.gorod.cn.ua/.*/banners/ -# ||googleusercontent.com/hk/oobRfTyrFtxXAuFWNle3KfDteO/www.5.ua/files/img/bg/*.jpg. (advblock.txt: 5796) -.googleusercontent.com/hk/oobRfTyrFtxXAuFWNle3KfDteO/www\.5\.ua/files/img/bg/.*\.jpg\. -# ||goodgame.ru^*/www/ (advblock.txt: 5795) -.goodgame.ru/.*/www/ -# ||good73.net^$object (advblock.txt: 5794) -.good73.net -# ||golovne.net^$object (advblock.txt: 5793) -.golovne.net -# ||golosua.com/img/banners/ (advblock.txt: 5792) -.golosua.com/img/banners/ -# ||goldenshara.com/misc/js/golde_link.js (advblock.txt: 5791) -.goldenshara.com/misc/js/golde_link\.js -# ||goldenfront.ru/static/banners/ (advblock.txt: 5790) -.goldenfront.ru/static/banners/ -# ||gofuckbiz.com/superheader (advblock.txt: 5789) -.gofuckbiz.com/superheader -# ||glstar.ru/swf/ (advblock.txt: 5788) -.glstar.ru/swf/ -# ||glavport.net/files/swfs/ (advblock.txt: 5787) -.glavport.net/files/swfs/ -# ||glasscannon.ru/wp-content/*/pic/back_rek_ (advblock.txt: 5786) -.glasscannon.ru/wp-content/.*/pic/back_rek_ -# ||gimp.nas2.net/img/rek/ (advblock.txt: 5785) -.gimp.nas2.net/img/rek/ -# ||gidonlinekino.com/im/branding/ (advblock.txt: 5784) -.gidonlinekino.com/im/branding/ -# ||gidonline.ru/im/branding (advblock.txt: 5783) -.gidonline.ru/im/branding -# ||gidonline.club/im/branding/ (advblock.txt: 5782) -.gidonline.club/im/branding/ -# ||giclub.tv/index.php?action=downloads;sa=downfile&id= (advblock.txt: 5781) -.giclub.tv/index\.php\?action=downloads;sa=downfile&id= -# ||getalbums.ru^$object (advblock.txt: 5780) -.getalbums.ru -# ||get-tune.net/i/banners/ (advblock.txt: 5779) -.get-tune.net/i/banners/ -# ||germany.ru/discount/pictures/extra (advblock.txt: 5778) -.germany.ru/discount/pictures/extra -# ||germany.ru/albums/*/Banner_ (advblock.txt: 5777) -.germany.ru/albums/.*/Banner_ -# ||gde.ru/img/*320x1 (advblock.txt: 5776) -.gde.ru/img/.*320x1 -# ||gcmsite.ru/img/nostromo-x.jpg (advblock.txt: 5775) -.gcmsite.ru/img/nostromo-x\.jpg -# ||gazeta.ua/css/branding. (advblock.txt: 5774) -.gazeta.ua/css/branding\. -# ||gay.ru/a2/ (advblock.txt: 5773) -.gay.ru/a2/ -# ||garant.ru/images/*/goldfish/ (advblock.txt: 5772) -.garant.ru/images/.*/goldfish/ -# ||gametech.ru/brand/ (advblock.txt: 5771) -.gametech.ru/brand/ -# ||gamestar.ru^*picture/banners/ (advblock.txt: 5770) -.gamestar.ru/.*picture/banners/ -# ||gamestar.ru/p/picture/s.gif (advblock.txt: 5769) -.gamestar.ru/p/picture/s\.gif -# ||games-tv.ru/img/oimgs/ (advblock.txt: 5768) -.games-tv.ru/img/oimgs/ -# ||games-archive.net^$object (advblock.txt: 5767) -.games-archive.net -# ||gamerpro.ru/images/adver/$image,object (advblock.txt: 5766) -.gamerpro.ru/images/adver/ -# ||gamer.ru^*/branding- (advblock.txt: 5765) -.gamer.ru/.*/branding- -# ||gamer.ru/oracle/ (advblock.txt: 5764) -.gamer.ru/oracle/ -# ||gamer.ru/alarmalarm/ (advblock.txt: 5763) -.gamer.ru/alarmalarm/ -# ||gamemag.ru/img/videoigr/ (advblock.txt: 5762) -.gamemag.ru/img/videoigr/ -# ||gamemag.ru/img/$object (advblock.txt: 5761) -.gamemag.ru/img/ -# ||gamemag.ru/admin/spaweditor/uploads/images/ (advblock.txt: 5760) -.gamemag.ru/admin/spaweditor/uploads/images/ -# ||fvhm.ru^$object (advblock.txt: 5758) -.fvhm.ru -# ||futurevideo.su/images/brand_ (advblock.txt: 5757) -.futurevideo.su/images/brand_ -# ||fullgames.ru^$object (advblock.txt: 5756) -.fullgames.ru -# ||fu.gk43.ru/media/ (advblock.txt: 5755) -.fu.gk43.ru/media/ -# ||fsell.biz/images/$object (advblock.txt: 5754) -.fsell.biz/images/ -# ||frostbone.playground.ru^ (advblock.txt: 5753) -.frostbone.playground.ru -# ||freezpic.ru^*/code.js (advblock.txt: 5752) -.freezpic.ru/.*/code\.js -# ||freezpic.ru/tpl/ (advblock.txt: 5751) -.freezpic.ru/tpl/ -# ||freealt.net/daos/ (advblock.txt: 5750) -.freealt.net/daos/ -# ||freakenergy.ru/imgpls/ (advblock.txt: 5749) -.freakenergy.ru/imgpls/ -# ||fotooplata.ru^$object (advblock.txt: 5748) -.fotooplata.ru -# ||fotooplata.ru/torrnada. (advblock.txt: 5747) -.fotooplata.ru/torrnada\. -# ||foto-save.ru/file.js (advblock.txt: 5746) -.foto-save.ru/file\.js -# ||forzajuve.ru/978x90. (advblock.txt: 5745) -.forzajuve.ru/978x90\. -# ||forums.warforge.ru/style_images/ad/ (advblock.txt: 5744) -.forums.warforge.ru/style_images/ad/ -# ||forums.goha.ru/c06$script (advblock.txt: 5743) -.forums.goha.ru/c06 -# ||forumkiev.com/MEDimg/ (advblock.txt: 5742) -.forumkiev.com/MEDimg/ -# ||forum.watch.ru/af/ (advblock.txt: 5741) -.forum.watch.ru/af/ -# ||forum.sources.ru/asdf/ (advblock.txt: 5740) -.forum.sources.ru/asdf/ -# ||forum.od.ua/forumpic/ (advblock.txt: 5739) -.forum.od.ua/forumpic/ -# ||forum.mista.ru/css/$object (advblock.txt: 5738) -.forum.mista.ru/css/ -# ||forum.ixbt.com/js/fotkidepo (advblock.txt: 5737) -.forum.ixbt.com/js/fotkidepo -# ||forum.adult-torrent.com^ (advblock.txt: 5736) -.forum.adult-torrent.com -# ||forum-profit.ru/images/nordfx/ (advblock.txt: 5735) -.forum-profit.ru/images/nordfx/ -# ||forscreen.com/*.php| (advblock.txt: 5733) -.forscreen.com/.*\.php$ -# ||foreign.marketgid.com^ (advblock.txt: 5732) -.foreign.marketgid.com -# ||foreign.dt00.net^ (advblock.txt: 5731) -.foreign.dt00.net -# ||for-foto.ru/*/adv.js| (advblock.txt: 5730) -.for-foto.ru/.*/adv\.js$ -# ||footballhd.ru^$subdocument (advblock.txt: 5729) -.footballhd.ru -# ||football.ua/i/hihi/ (advblock.txt: 5728) -.football.ua/i/hihi/ -# ||focus.ua/files/branding/ (advblock.txt: 5727) -.focus.ua/files/branding/ -# ||floomby.ru/files/flash/ (advblock.txt: 5726) -.floomby.ru/files/flash/ -# ||flasher.ru/data/images/swf/ (advblock.txt: 5725) -.flasher.ru/data/images/swf/ -# ||flashboot.ru/uploads/bnr/ (advblock.txt: 5724) -.flashboot.ru/uploads/bnr/ -# ||flashboot.ru/plugins/banneroid/ (advblock.txt: 5723) -.flashboot.ru/plugins/banneroid/ -# ||fix-pix.ru/rotator.php (advblock.txt: 5722) -.fix-pix.ru/rotator\.php -# ||fishki.net/maining/ (advblock.txt: 5721) -.fishki.net/maining/ -# ||fishki.net/branding/ (advblock.txt: 5720) -.fishki.net/branding/ -# ||firebit.org/clc.js (advblock.txt: 5718) -.firebit.org/clc\.js -# ||finnews.ru^*&img=banners/ (advblock.txt: 5717) -.finnews.ru/.*&img=banners/ -# ||filmix.net/branding (advblock.txt: 5716) -.filmix.net/branding -# ||filmitorrent.org/brand (advblock.txt: 5715) -.filmitorrent.org/brand -# ||film.ru/i/branding/ (advblock.txt: 5714) -.film.ru/i/branding/ -# ||fileplaneta.com/PlayerAdv/ (advblock.txt: 5713) -.fileplaneta.com/PlayerAdv/ -# ||file-tracker.net/images/banner/ (advblock.txt: 5712) -.file-tracker.net/images/banner/ -# ||file-tracker.net/images/ad1/ (advblock.txt: 5711) -.file-tracker.net/images/ad1/ -# ||file-tracker.net/images/$object (advblock.txt: 5710) -.file-tracker.net/images/ -# ||fiat-avtocity.ru/swf/ (advblock.txt: 5709) -.fiat-avtocity.ru/swf/ -# ||fermer.ru/files/$object (advblock.txt: 5708) -.fermer.ru/files/ -# ||fenzin.org/images/litres_ (advblock.txt: 5707) -.fenzin.org/images/litres_ -# ||fcpug.ru/upload/medialibrary/ (advblock.txt: 5706) -.fcpug.ru/upload/medialibrary/ -# ||fcenter.ru/images/b1/ (advblock.txt: 5705) -.fcenter.ru/images/b1/ -# ||fcdesna.3dn.ru^$object (advblock.txt: 5704) -.fcdesna.3dn.ru -# ||fc-amkar.org/images/b/ (advblock.txt: 5703) -.fc-amkar.org/images/b/ -# ||fbr.info/fbimage.php? (advblock.txt: 5702) -.fbr.info/fbimage\.php\? -# ||fast-torrent.ru^*branding (advblock.txt: 5700) -.fast-torrent.ru/.*branding -# ||fast-torrent.ru/media/*banner (advblock.txt: 5699) -.fast-torrent.ru/media/.*banner -# ||fast-torrent.ru/media/$object (advblock.txt: 5698) -.fast-torrent.ru/media/ -# ||fans-fcsm.ru/block.js (advblock.txt: 5697) -.fans-fcsm.ru/block\.js -# ||fakir.noob-club.ru^ (advblock.txt: 5696) -.fakir.noob-club.ru -# ||factroom.ru/brands/ (advblock.txt: 5695) -.factroom.ru/brands/ -# ||f.mega-porno.tv^ (advblock.txt: 5694) -.f.mega-porno.tv -# ||exploit.in/materials_/ (advblock.txt: 5693) -.exploit.in/materials_/ -# ||exoticvideo.net^*/promo. (advblock.txt: 5692) -.exoticvideo.net/.*/promo\. -# ||exoticvideo.net/js/8e254b.js (advblock.txt: 5691) -.exoticvideo.net/js/8e254b\.js -# ||ex.ua/ad_*.html^ (advblock.txt: 5690) -.ex.ua/ad_.*\.html[^\w%.-] -# ||ex.ua/*/index.css (advblock.txt: 5689) -.ex.ua/.*/index\.css -# ||etc-com.ru/bitrix/*/includes/ (advblock.txt: 5688) -.etc-com.ru/bitrix/.*/includes/ -# ||eroox.ru/blocks/ (advblock.txt: 5687) -.eroox.ru/blocks/ -# ||epidemz.net/bank/ (advblock.txt: 5686) -.epidemz.net/bank/ -# ||emuplanet.ru/images/bb/ (advblock.txt: 5685) -.emuplanet.ru/images/bb/ -# ||electrodance.org/slider/ (advblock.txt: 5684) -.electrodance.org/slider/ -# ||elec.ru/clients/ (advblock.txt: 5683) -.elec.ru/clients/ -# ||elec.ru/bs/ (advblock.txt: 5682) -.elec.ru/bs/ -# ||ekamedicina.ru/files/ (advblock.txt: 5681) -.ekamedicina.ru/files/ -# ||ekabu.ru/cache/$object,subdocument (advblock.txt: 5680) -.ekabu.ru/cache/ -# ||egida.by/js/site_news_target.js (advblock.txt: 5679) -.egida.by/js/site_news_target\.js -# ||eg.ru/upfile/picture/$object (advblock.txt: 5678) -.eg.ru/upfile/picture/ -# ||edinstvennaya.ua/pictures/brandings/ (advblock.txt: 5677) -.edinstvennaya.ua/pictures/brandings/ -# ||echo.msk.ru/att/element-*-misc-*.gif (advblock.txt: 5676) -.echo.msk.ru/att/element-.*-misc-.*\.gif -# ||easycom.com.ua/adbn/ (advblock.txt: 5675) -.easycom.com.ua/adbn/ -# ||e-flash.com.ua/templates/historylost/images/demo/ (advblock.txt: 5674) -.e-flash.com.ua/templates/historylost/images/demo/ -# ||dwg.ru/img/$object (advblock.txt: 5673) -.dwg.ru/img/ -# ||dverizamki.org/pictures/ (advblock.txt: 5672) -.dverizamki.org/pictures/ -# ||dverizamki.org/bs/ (advblock.txt: 5671) -.dverizamki.org/bs/ -# ||dumskaya.net/banner/ (advblock.txt: 5670) -.dumskaya.net/banner/ -# ||dump.ru/player_vip_closeAdvert (advblock.txt: 5669) -.dump.ru/player_vip_closeAdvert -# ||dumkare.ru^*.php|$script (advblock.txt: 5668) -.dumkare.ru/.*\.php$ -# ||dumkare.ru/bnr18/ (advblock.txt: 5667) -.dumkare.ru/bnr18/ -# ||dublikat.net/banner/ (advblock.txt: 5666) -.dublikat.net/banner/ -# ||dt00.net/gjs/ (advblock.txt: 5665) -.dt00.net/gjs/ -# ||drumandbass.ru/img*banner (advblock.txt: 5664) -.drumandbass.ru/img.*banner -# ||drochunov.net/pic/flash/ (advblock.txt: 5663) -.drochunov.net/pic/flash/ -# ||drochunov.net/pic/bd/ (advblock.txt: 5662) -.drochunov.net/pic/bd/ -# ||drive.ru/images/promo/ (advblock.txt: 5661) -.drive.ru/images/promo/ -# ||dprealty.ru/iframe/property4scroll/ (advblock.txt: 5660) -.dprealty.ru/iframe/property4scroll/ -# ||dota2.ru/img/brand- (advblock.txt: 5657) -.dota2.ru/img/brand- -# ||dontr.ru/upload/Banner/ (advblock.txt: 5656) -.dontr.ru/upload/Banner/ -# ||dofiga.net^*/trade (advblock.txt: 5655) -.dofiga.net/.*/trade -# ||dleshka.org/go/ (advblock.txt: 5654) -.dleshka.org/go/ -# ||djrogoff.ru/img/r_ (advblock.txt: 5653) -.djrogoff.ru/img/r_ -# ||dixinews.ru/up/banner/ (advblock.txt: 5652) -.dixinews.ru/up/banner/ -# ||divan-tut.ru/promo (advblock.txt: 5651) -.divan-tut.ru/promo -# ||dirty.ru/i/nevoobrazimo/banner_ (advblock.txt: 5650) -.dirty.ru/i/nevoobrazimo/banner_ -# ||did5.ru/images/banner (advblock.txt: 5649) -.did5.ru/images/banner -# ||diary.ru^*/diaryDefault728x90. (advblock.txt: 5648) -.diary.ru/.*/diaryDefault728x90\. -# ||depositfiles.com/images/zillya/ (advblock.txt: 5645) -.depositfiles.com/images/zillya/ -# ||demotivators.to/media/$script (advblock.txt: 5644) -.demotivators.to/media/ -# ||demotivation.me/banners/ (advblock.txt: 5643) -.demotivation.me/banners/ -# ||delphisources.ru/pages/scripts/recl_ (advblock.txt: 5641) -.delphisources.ru/pages/scripts/recl_ -# ||delphi.lv/wd/*.180x400. (advblock.txt: 5640) -.delphi.lv/wd/.*\.180x400\. -# ||delphi.lv/t/t.js (advblock.txt: 5639) -.delphi.lv/t/t\.js -# ||delovoigorod.ru/images/loader$object (advblock.txt: 5638) -.delovoigorod.ru/images/loader -# ||delo.ua^*/branding/ (advblock.txt: 5637) -.delo.ua/.*/branding/ -# ||delivery.bannerd.ru^ (advblock.txt: 5636) -.delivery.bannerd.ru -# ||delfi.lv/misc/xml_infoblocks/ (advblock.txt: 5635) -.delfi.lv/misc/xml_infoblocks/ -# ||delfi.ee/misc/$subdocument (advblock.txt: 5634) -.delfi.ee/misc/ -# ||debilizator.tv/static/ab.min.js (advblock.txt: 5633) -.debilizator.tv/static/ab\.min\.js -# ||dating.trans-admirer.com/promo/ (advblock.txt: 5632) -.dating.trans-admirer.com/promo/ -# ||cybergame.tv/images/*_984x90. (advblock.txt: 5629) -.cybergame.tv/images/.*_984x90\. -# ||cy-pr.com/images/$object (advblock.txt: 5628) -.cy-pr.com/images/ -# ||copyright.ru*/?file= (advblock.txt: 5627) -.copyright.ru*./(.*/)?\?file= -# ||copypast.ru/re*/$image,object (advblock.txt: 5626) -.copypast.ru/re.*/ -# ||coop-land.ru/uploads/pictures/*_branding_ (advblock.txt: 5625) -.coop-land.ru/uploads/pictures/.*_branding_ -# ||coop-land.ru/uploads/*_coop-land_ (advblock.txt: 5624) -.coop-land.ru/uploads/.*_coop-land_ -# ||coolinbox.ru/suprenta/ (advblock.txt: 5623) -.coolinbox.ru/suprenta/ -# ||cool-archive.ru/*_adv. (advblock.txt: 5622) -.cool-archive.ru/.*_adv\. -# ||consmed.ru/tizergen/ (advblock.txt: 5621) -.consmed.ru/tizergen/ -# ||consmed.ru/branding/ (advblock.txt: 5620) -.consmed.ru/branding/ -# ||companion.ua/www/images/ (advblock.txt: 5619) -.companion.ua/www/images/ -# ||comnews.ru/ds_comnews/img_pictures/*.gif (advblock.txt: 5618) -.comnews.ru/ds_comnews/img_pictures/.*\.gif -# ||comnews.ru/ds_comnews/img_object/ (advblock.txt: 5617) -.comnews.ru/ds_comnews/img_object/ -# ||comnews.ru/ds_comnews/files/$object (advblock.txt: 5616) -.comnews.ru/ds_comnews/files/ -# ||comicsbook.ru/promo/ (advblock.txt: 5615) -.comicsbook.ru/promo/ -# ||comfysoft.ru/images/programmes/ (advblock.txt: 5614) -.comfysoft.ru/images/programmes/ -# ||cobra.com.ua/_banners/ (advblock.txt: 5613) -.cobra.com.ua/_banners/ -# ||coads.akipress.org^ (advblock.txt: 5612) -.coads.akipress.org -# ||cnews.ru/rotator.php?zone= (advblock.txt: 5611) -.cnews.ru/rotator\.php\?zone= -# ||cnb.cnews.ru^ (advblock.txt: 5610) -.cnb.cnews.ru -# ||cmexota.ru/uploads/mini/nu_ (advblock.txt: 5609) -.cmexota.ru/uploads/mini/nu_ -# ||cmexota.ru/uploads/$script (advblock.txt: 5608) -.cmexota.ru/uploads/ -# ||clubvolvo.ru/crash/ban (advblock.txt: 5607) -.clubvolvo.ru/crash/ban -# ||clubvolvo.ru/crash/$object (advblock.txt: 5606) -.clubvolvo.ru/crash/ -# ||clubsexa.com/sopero.js (advblock.txt: 5605) -.clubsexa.com/sopero\.js -# ||clubfile.net/themes/jobs/i/*_*.jpg| (advblock.txt: 5604) -.clubfile.net/themes/jobs/i/.*_.*\.jpg$ -# ||clubfile.net/files/*_banner_ (advblock.txt: 5603) -.clubfile.net/files/.*_banner_ -# ||clk.kaztorka.org^ (advblock.txt: 5602) -.clk.kaztorka.org -# ||clicks.demotivators.to^ (advblock.txt: 5601) -.clicks.demotivators.to -# ||ckyka.ru/obzor/ (advblock.txt: 5600) -.ckyka.ru/obzor/ -# ||citysites.ua^*/jackets/ (advblock.txt: 5599) -.citysites.ua/.*/jackets/ -# ||citydog.by/banners/ (advblock.txt: 5598) -.citydog.by/banners/ -# ||citforum.ru/a/ (advblock.txt: 5597) -.citforum.ru/a/ -# ||chuvashia.com/partners/ (advblock.txt: 5596) -.chuvashia.com/partners/ -# ||chtoby-pravilno.ru/go/test.js$script (advblock.txt: 5595) -.chtoby-pravilno.ru/go/test\.js -# ||chipmaker.ru/index.php?*§ion=select&$image,object (advblock.txt: 5594) -.chipmaker.ru/index\.php\?.*§ion=select& -# ||chipfind.ru/b/ (advblock.txt: 5593) -.chipfind.ru/b/ -# ||chinphone.info/go? (advblock.txt: 5592) -.chinphone.info/go\? -# ||china-iphone.ru/images/$object (advblock.txt: 5591) -.china-iphone.ru/images/ -# ||chesspro.ru/_banners/ (advblock.txt: 5590) -.chesspro.ru/_banners/ -# ||chesalka.com/jquery.simplemodal.js (advblock.txt: 5589) -.chesalka.com/jquery\.simplemodal\.js -# ||chemport.ru^*_994x90. (advblock.txt: 5588) -.chemport.ru/.*_994x90\. -# ||cheklab.ru^$object (advblock.txt: 5587) -.cheklab.ru -# ||championat.com/static/banner/ (advblock.txt: 5586) -.championat.com/static/banner/ -# ||championat.com/branding.css (advblock.txt: 5585) -.championat.com/branding\.css -# ||center.bz^$object (advblock.txt: 5584) -.center.bz -# ||center-dm.ru/img/js/adb.js (advblock.txt: 5583) -.center-dm.ru/img/js/adb\.js -# ||censor.net.ua/images/br4nd1ng/ (advblock.txt: 5581) -.censor.net.ua/images/br4nd1ng/ -# ||cassad.net/tv/bnr/ (advblock.txt: 5578) -.cassad.net/tv/bnr/ -# ||c-s.net.ua/forum/banners/ (advblock.txt: 5577) -.c-s.net.ua/forum/banners/ -# ||bw.myjob.by^$object (advblock.txt: 5576) -.bw.myjob.by -# ||buzines.net/banner/ (advblock.txt: 5575) -.buzines.net/banner/ -# ||business-gazeta.ru/partners/ (advblock.txt: 5574) -.business-gazeta.ru/partners/ -# ||buhonline.ru^*/ProductAdvertisement/ (advblock.txt: 5573) -.buhonline.ru/.*/ProductAdvertisement/ -# ||bugaga.tut.by^ (advblock.txt: 5572) -.bugaga.tut.by -# ||brd24.com/up/banner/ (advblock.txt: 5571) -.brd24.com/up/banner/ -# ||bratsk.org/files/b_right/ (advblock.txt: 5570) -.bratsk.org/files/b_right/ -# ||boxnews.com.ua/inc/js/under.js (advblock.txt: 5569) -.boxnews.com.ua/inc/js/under\.js -# ||boxnews.com.ua/inc/js/bn.js (advblock.txt: 5568) -.boxnews.com.ua/inc/js/bn\.js -# ||bountyporn.com/7c24c1.js (advblock.txt: 5567) -.bountyporn.com/7c24c1\.js -# ||boom.pdanew.com^$third-party (advblock.txt: 5566) -.boom.pdanew.com -# ||bookz.ru/tpl/$image,object (advblock.txt: 5565) -.bookz.ru/tpl/ -# ||boo.samara24.ru^ (advblock.txt: 5564) -.boo.samara24.ru -# ||bnkomi.ru/rklm-sh/ (advblock.txt: 5563) -.bnkomi.ru/rklm-sh/ -# ||bnkomi.ru/content/bnimg/ (advblock.txt: 5562) -.bnkomi.ru/content/bnimg/ -# ||bn.sarov.info^ (advblock.txt: 5561) -.bn.sarov.info -# ||bm.img.com.ua/widget/ (advblock.txt: 5559) -.bm.img.com.ua/widget/ -# ||bm.img.com.ua/a/video/img/br (advblock.txt: 5558) -.bm.img.com.ua/a/video/img/br -# ||bloknot-rostov.ru/upload/bloknotadv/ (advblock.txt: 5557) -.bloknot-rostov.ru/upload/bloknotadv/ -# ||blogoreader.org.ua/b/ (advblock.txt: 5556) -.blogoreader.org.ua/b/ -# ||blablacar.d3.ru^ (advblock.txt: 5555) -.blablacar.d3.ru -# ||bkn.ru/content/banners/ (advblock.txt: 5554) -.bkn.ru/content/banners/ -# ||bizarre.kiev.ua*/ban/ (advblock.txt: 5553) -.bizarre.kiev.ua*./(.*/)?ban/ -# ||biweed.com^*/yutex240_ (advblock.txt: 5552) -.biweed.com/.*/yutex240_ -# ||bit-torrent.kiev.ua/rekl.php (advblock.txt: 5551) -.bit-torrent.kiev.ua/rekl\.php -# ||binmovie.org/banners/ (advblock.txt: 5550) -.binmovie.org/banners/ -# ||bikepost.ru^$object (advblock.txt: 5549) -.bikepost.ru -# ||bikepost.ru/ttll/ (advblock.txt: 5548) -.bikepost.ru/ttll/ -# ||bikepost.ru/ttl/ (advblock.txt: 5547) -.bikepost.ru/ttl/ -# ||bigtorrent.org/IpGeo1/ (advblock.txt: 5546) -.bigtorrent.org/IpGeo1/ -# ||bigpicture.ru/img/*/ (advblock.txt: 5545) -.bigpicture.ru/img/.*/ -# ||bigcinema.tv/vast_overlay_tizernet. (advblock.txt: 5544) -.bigcinema.tv/vast_overlay_tizernet\. -# ||bigbangtv.ru/bbt.js (advblock.txt: 5543) -.bigbangtv.ru/bbt\.js -# ||biathlon.ru/images/sp*/*.jpg (advblock.txt: 5542) -.biathlon.ru/images/sp.*/.*\.jpg -# ||beznal.cc/banners/ (advblock.txt: 5541) -.beznal.cc/banners/ -# ||besttorrents.org/cdn-cgi/pe/bag2? (advblock.txt: 5540) -.besttorrents.org/cdn-cgi/pe/bag2\? -# ||bestreferat.ru/images/a/ (advblock.txt: 5539) -.bestreferat.ru/images/a/ -# ||bestgamer.ru/partners/ (advblock.txt: 5538) -.bestgamer.ru/partners/ -# ||belta.by/newbfl/$object (advblock.txt: 5537) -.belta.by/newbfl/ -# ||belta.by/images/storage/banners/$object (advblock.txt: 5536) -.belta.by/images/storage/banners/ -# ||belobmen.ru/go? (advblock.txt: 5535) -.belobmen.ru/go\? -# ||bddo.ru/uploads/*_ban_ (advblock.txt: 5534) -.bddo.ru/uploads/.*_ban_ -# ||baumanki.net/templates/open-slaed/img/ban (advblock.txt: 5532) -.baumanki.net/templates/open-slaed/img/ban -# ||batpic.com/p/ (advblock.txt: 5531) -.batpic.com/p/ -# ||bash.im/_sq.php (advblock.txt: 5530) -.bash.im/_sq\.php -# ||banners.kinoafisha.info^ (advblock.txt: 5529) -.banners.kinoafisha.info -# ||banner.osp-ua.info^ (advblock.txt: 5528) -.banner.osp-ua.info -# ||banner.lbs.km.ru^ (advblock.txt: 5527) -.banner.lbs.km.ru -# ||baikal24.ru/images/$object (advblock.txt: 5526) -.baikal24.ru/images/ -# ||babysaratov.ru/img/$object (advblock.txt: 5525) -.babysaratov.ru/img/ -# ||b.nude-moon.com^ (advblock.txt: 5524) -.b.nude-moon.com -# ||b.netall.ru^ (advblock.txt: 5523) -.b.netall.ru -# ||b.inbox.lv^ (advblock.txt: 5522) -.b.inbox.lv -# ||avianews.ru/c/? (advblock.txt: 5520) -.avianews.ru/c/\? -# ||aviafly.ru/js| (advblock.txt: 5519) -.aviafly.ru/js$ -# ||avata.ru/windows.gif (advblock.txt: 5517) -.avata.ru/windows\.gif -# ||avata.ru/images/240x400.png (advblock.txt: 5516) -.avata.ru/images/240x400\.png -# ||auto.ru/get.php?args= (advblock.txt: 5515) -.auto.ru/get\.php\?args= -# ||athlete.ru/pic/$object (advblock.txt: 5514) -.athlete.ru/pic/ -# ||astromeridian.ru/assets/images/reklama2/$~stylesheet (advblock.txt: 5513) -.astromeridian.ru/assets/images/reklama2/ -# ||astromeridian.ru/assets/images/*/*/brend.$image (advblock.txt: 5512) -.astromeridian.ru/assets/images/.*/.*/brend\. -# ||artofcare.ru/files/images/club/ (advblock.txt: 5511) -.artofcare.ru/files/images/club/ -# ||artofcare.ru/files/images/bs/ (advblock.txt: 5510) -.artofcare.ru/files/images/bs/ -# ||artfile.ru/f/$subdocument (advblock.txt: 5509) -.artfile.ru/f/ -# ||artero.ru/js/ (advblock.txt: 5508) -.artero.ru/js/ -# ||army.lv/banners/ (advblock.txt: 5507) -.army.lv/banners/ -# ||aquafanat.com.ua/forum/iUshki/ (advblock.txt: 5506) -.aquafanat.com.ua/forum/iUshki/ -# ||aq.censor.net.ua^ (advblock.txt: 5505) -.aq.censor.net.ua -# ||appstudio.org/banners/ (advblock.txt: 5503) -.appstudio.org/banners/ -# ||api.digitalaccess.ru/logger^ (advblock.txt: 5502) -.api.digitalaccess.ru/logger[^\w%.-] -# ||ap.delfi.ee^ (advblock.txt: 5501) -.ap.delfi.ee -# ||ap.by/up/banner/ (advblock.txt: 5500) -.ap.by/up/banner/ -# ||antistarforce.com^$object (advblock.txt: 5499) -.antistarforce.com -# ||antimaydan.info/js/rot (advblock.txt: 5498) -.antimaydan.info/js/rot -# ||antimaydan.info/js/bn (advblock.txt: 5497) -.antimaydan.info/js/bn -# ||antichat.ru/bn/ (advblock.txt: 5496) -.antichat.ru/bn/ -# ||ankontr.if.ua/swf/ (advblock.txt: 5494) -.ankontr.if.ua/swf/ -# ||ankontr.if.ua/images/mod_banners/ (advblock.txt: 5493) -.ankontr.if.ua/images/mod_banners/ -# ||anistar.ru^*/images/brend_ (advblock.txt: 5492) -.anistar.ru/.*/images/brend_ -# ||anistar.ru^*/baner- (advblock.txt: 5491) -.anistar.ru/.*/baner- -# ||anistar.ru/adblock/ (advblock.txt: 5490) -.anistar.ru/adblock/ -# ||animevost.org^*/headBG (advblock.txt: 5489) -.animevost.org/.*/headBG -# ||animevost.org^*.swf^ (advblock.txt: 5488) -.animevost.org/.*\.swf[^\w%.-] -# ||animeonline.su^*/images/da/ (advblock.txt: 5487) -.animeonline.su/.*/images/da/ -# ||animenfo.com/*/ads/ (advblock.txt: 5486) -.animenfo.com/.*/ads/ -# ||animemaga.ru^*/blog/layers/ (advblock.txt: 5485) -.animemaga.ru/.*/blog/layers/ -# ||animemaga.ru/img/*_1000_120_ (advblock.txt: 5484) -.animemaga.ru/img/.*_1000_120_ -# ||animedia.tv^*/bnr/ (advblock.txt: 5483) -.animedia.tv/.*/bnr/ -# ||animechan.ru/fun/ (advblock.txt: 5482) -.animechan.ru/fun/ -# ||anidub.com/uploads/*brend (advblock.txt: 5481) -.anidub.com/uploads/.*brend -# ||anidub.com/uploads/$object (advblock.txt: 5480) -.anidub.com/uploads/ -# ||anidub.com/*.php?link= (advblock.txt: 5479) -.anidub.com/.*\.php\?link= -# ||anekdot.ru/i/gallery/ (advblock.txt: 5478) -.anekdot.ru/i/gallery/ -# ||andama.ru/bablo. (advblock.txt: 5477) -.andama.ru/bablo\. -# ||amovies.tv^*/js/init.js (advblock.txt: 5476) -.amovies.tv/.*/js/init\.js -# ||altai4u.com/wp-content/themes/$object (advblock.txt: 5475) -.altai4u.com/wp-content/themes/ -# ||alogvinov.com^*_top.jpg| (advblock.txt: 5474) -.alogvinov.com/.*_top\.jpg$ -# ||alogvinov.com/skinning_ (advblock.txt: 5473) -.alogvinov.com/skinning_ -# ||allsat.biz/ban_ (advblock.txt: 5472) -.allsat.biz/ban_ -# ||allmoldova.com/uimg/txtuimg/$object (advblock.txt: 5471) -.allmoldova.com/uimg/txtuimg/ -# ||allinfo.kz/pic/media/ (advblock.txt: 5470) -.allinfo.kz/pic/media/ -# ||allhockey.ru/static/img/brand/ (advblock.txt: 5469) -.allhockey.ru/static/img/brand/ -# ||allforpeople.net/banner. (advblock.txt: 5468) -.allforpeople.net/banner\. -# ||allday2.com/a/ (advblock.txt: 5467) -.allday2.com/a/ -# ||allboxing.ru/files/*.*.*/ (advblock.txt: 5466) -.allboxing.ru/files/.*\..*\..*/ -# ||allboxing.ru/files/$object (advblock.txt: 5465) -.allboxing.ru/files/ -# ||all-episodes.com/br$image (advblock.txt: 5464) -.all-episodes.com/br -# ||all-episodes.com/autoplay.htm (advblock.txt: 5463) -.all-episodes.com/autoplay\.htm -# ||aktobeinfo.kz/sites/default/files/swf/ (advblock.txt: 5461) -.aktobeinfo.kz/sites/default/files/swf/ -# ||ais.com.ua/usersimage/banners/ (advblock.txt: 5460) -.ais.com.ua/usersimage/banners/ -# ||aii.su/banners/ (advblock.txt: 5459) -.aii.su/banners/ -# ||agsat.com.ua/beuty/ (advblock.txt: 5458) -.agsat.com.ua/beuty/ -# ||agronews.ru/images/$object (advblock.txt: 5457) -.agronews.ru/images/ -# ||afisha.ru/dsn/google- (advblock.txt: 5456) -.afisha.ru/dsn/google- -# ||adverman.*/banners/ (advblock.txt: 5455) -.adverman.*./(.*/)?banners/ -# ||ad.nakanune.ru^ (advblock.txt: 5450) -.ad.nakanune.ru -# ||ad.f1cd.ru^ (advblock.txt: 5449) -.ad.f1cd.ru -# ||actualcomment.ru^*/banner/ (advblock.txt: 5448) -.actualcomment.ru/.*/banner/ -# ||aaa.piccash.net^ (advblock.txt: 5447) -.aaa.piccash.net -# ||a.zoomby.ru^ (advblock.txt: 5446) -.a.zoomby.ru -# ||a.velvet.by^ (advblock.txt: 5445) -.a.velvet.by -# ||a.sakh.com/a/ (advblock.txt: 5444) -.a.sakh.com/a/ -# ||a.multik-online.net^ (advblock.txt: 5443) -.a.multik-online.net -# ||a.meteonova.ru^ (advblock.txt: 5442) -.a.meteonova.ru -# ||7sl.ru/uploads/$object (advblock.txt: 5441) -.7sl.ru/uploads/ -# ||7ja.ru/imgb/ (advblock.txt: 5440) -.7ja.ru/imgb/ -# ||6barrel.com/img/bg- (advblock.txt: 5439) -.6barrel.com/img/bg- -# ||5terka.com^*/img/bg (advblock.txt: 5438) -.5terka.com/.*/img/bg -# ||5ka.ru/jscr/ (advblock.txt: 5437) -.5ka.ru/jscr/ -# ||5ka.ru/js/banners. (advblock.txt: 5436) -.5ka.ru/js/banners\. -# ||4allforum.com/banner/ (advblock.txt: 5435) -.4allforum.com/banner/ -# ||3mv.ru/oboi (advblock.txt: 5433) -.3mv.ru/oboi -# ||3mp3.ru/dhtml/adv. (advblock.txt: 5432) -.3mp3.ru/dhtml/adv\. -# ||3mp3.ru/banner (advblock.txt: 5431) -.3mp3.ru/banner -# ||3dnews.ru/www/images/ (advblock.txt: 5430) -.3dnews.ru/www/images/ -# ||3dnews.ru/*/ad/branding/ (advblock.txt: 5429) -.3dnews.ru/.*/ad/branding/ -# ||3ddd.ru/other/banners/ (advblock.txt: 5428) -.3ddd.ru/other/banners/ -# ||38mama.ru/forum/images/*/ (advblock.txt: 5427) -.38mama.ru/forum/images/.*/ -# ||2krota.ru/rekla/ (advblock.txt: 5426) -.2krota.ru/rekla/ -# ||2baksa.net/newclk. (advblock.txt: 5425) -.2baksa.net/newclk\. -# ||2baksa.net/msg. (advblock.txt: 5424) -.2baksa.net/msg\. -# ||2baksa.net/js/vivo. (advblock.txt: 5423) -.2baksa.net/js/vivo\. -# ||24video.*/css/banner (advblock.txt: 5422) -.24video.*./(.*/)?css/banner -# ||24stoma.ru/rkm/ (advblock.txt: 5421) -.24stoma.ru/rkm/ -# ||21region.org/uploads/main/re/ (advblock.txt: 5420) -.21region.org/uploads/main/re/ -# ||21region.org/uploads/main/rb/ (advblock.txt: 5419) -.21region.org/uploads/main/rb/ -# ||1kinobig.ru/reklamka. (advblock.txt: 5418) -.1kinobig.ru/reklamka\. -# ||1istochnik.ru/js/fon.js (advblock.txt: 5417) -.1istochnik.ru/js/fon\.js -# ||195.82.146.52/brand/ (advblock.txt: 5416) -.195.82.146.52/brand/ -# ||13rus.ru/img/luhban.jpg (advblock.txt: 5415) -.13rus.ru/img/luhban\.jpg -# ||13rus.ru/img/*/ (advblock.txt: 5414) -.13rus.ru/img/.*/ -# ||13rus.ru/bnr/ (advblock.txt: 5413) -.13rus.ru/bnr/ -# ||13rus.ru/b/ (advblock.txt: 5412) -.13rus.ru/b/ -# ||13rus.ru/*/$object (advblock.txt: 5411) -.13rus.ru/.*/ -# ||101.ru^*/banners/ (advblock.txt: 5410) -.101.ru/.*/banners/ -# ||101.ru/dbclick/ (advblock.txt: 5409) -.101.ru/dbclick/ -# ||1000ukg.kz/uploads/banner/ (advblock.txt: 5408) -.1000ukg.kz/uploads/banner/ -# ||1000dosok.ru/banz/ (advblock.txt: 5407) -.1000dosok.ru/banz/ -# =http%3A%2F%2Fazaza.torent-telik. (advblock.txt: 5404) -/.*=http%3A%2F%2Fazaza\.torent-telik\. -# /galya.ru/clients/places/* (advblock.txt: 5384) -/(.*/)?galya\.ru/clients/places/.* -galya.ru/clients/places/.* -# /ad*.tutu.ru^*_*.php| (advblock.txt: 5379) -/(.*/)?ad.*\.tutu\.ru[^\w%.-].*_.*\.php$ -ad*./.*\.tutu\.ru[^\w%.-].*_.*\.php$ -ad*.tutu.ru/.*_.*\.php$ -# //www.vsevam.ru^$object (advblock.txt: 5377) -www.vsevam.ru -# .torrent-telik.com^$script (advblock.txt: 5374) -/.*\.torrent-telik\.com[^\w%.-] -.*.torrent-telik.com -# .lostfilm.tv^*^yash= (advblock.txt: 5371) -/.*\.lostfilm\.tv[^\w%.-].*[^\w%.-]yash= -.*.lostfilm.tv/.*[^\w%.-]yash= -# .autorambler.ru/*/promo/ (advblock.txt: 5369) -/.*\.autorambler\.ru/.*/promo/ -.*.autorambler.ru/.*/promo/ -# =x-uboino.net (advblock.txt: 3385) -/.*=x-uboino\.net -# =videotuts.ru (advblock.txt: 3384) -/.*=videotuts\.ru -# =torrent-telik. (advblock.txt: 3383) -/.*=torrent-telik\. -# =santikov.net (advblock.txt: 3382) -/.*=santikov\.net -# =rutracker.org.ua (advblock.txt: 3381) -/.*=rutracker\.org\.ua -# =ruspicbox.ru (advblock.txt: 3380) -/.*=ruspicbox\.ru -# =prons.org (advblock.txt: 3379) -/.*=prons\.org -# =ppronpic.org (advblock.txt: 3378) -/.*=ppronpic\.org -# =porno4you.org (advblock.txt: 3377) -/.*=porno4you\.org -# =pix-x.net (advblock.txt: 3376) -/.*=pix-x\.net -# =pics-money.ru (advblock.txt: 3375) -/.*=pics-money\.ru -# =picmani.ru (advblock.txt: 3374) -/.*=picmani\.ru -# =pick.megatrack.org (advblock.txt: 3373) -/.*=pick\.megatrack\.org -# =picforall.ru (advblock.txt: 3372) -/.*=picforall\.ru -# =pic5you.ru (advblock.txt: 3371) -/.*=pic5you\.ru -# =pic4you.ru (advblock.txt: 3370) -/.*=pic4you\.ru -# =pic-money.ru (advblock.txt: 3369) -/.*=pic-money\.ru -# =payforpic.ru (advblock.txt: 3368) -/.*=payforpic\.ru -# =http%3A//rustorka.com (advblock.txt: 3367) -/.*=http%3A//rustorka\.com -# =http%3A//picforall.ru (advblock.txt: 3366) -/.*=http%3A//picforall\.ru -# =http%3A//pic-money.ru (advblock.txt: 3365) -/.*=http%3A//pic-money\.ru -# =http%3A//payforpic.ru (advblock.txt: 3364) -/.*=http%3A//payforpic\.ru -# =http%3A%2F%2Fpicforall.ru (advblock.txt: 3363) -/.*=http%3A%2F%2Fpicforall\.ru -# =hottrash.ru (advblock.txt: 3362) -/.*=hottrash\.ru -# =hentaiz.org (advblock.txt: 3361) -/.*=hentaiz\.org -# =hentaichan.ru (advblock.txt: 3360) -/.*=hentaichan\.ru -# =gold-liter.org.ua (advblock.txt: 3359) -/.*=gold-liter\.org\.ua -# =fotooplata.ru (advblock.txt: 3358) -/.*=fotooplata\.ru -# =erevan-online.ru (advblock.txt: 3357) -/.*=erevan-online\.ru -# =beetor.org (advblock.txt: 3356) -/.*=beetor\.org -# =anime-box.ws (advblock.txt: 3355) -/.*=anime-box\.ws -# /design-warez.ru.js (advblock.txt: 3354) -/(.*/)?design-warez\.ru\.js -design-warez.ru.js*. -# -pic-money.ru (advblock.txt: 3353) -/.*-pic-money\.ru -.*-pic-money.ru*. -# -image2you.ru (advblock.txt: 3352) -/.*-image2you\.ru -.*-image2you.ru*. -# ||wt.lovfot.ru^ (advblock.txt: 3346) -.wt.lovfot.ru -# ||webweb.picforall.ru^ (advblock.txt: 3340) -.webweb.picforall.ru -# ||nord.murmann.ru^ (advblock.txt: 3339) -.nord.murmann.ru -# ||zork.jerkngo.com^ (advblock.txt: 3336) -.zork.jerkngo.com -# ||top.softweb.ru^ (advblock.txt: 3335) -.top.softweb.ru -# ||sport.hudaem.ru^ (advblock.txt: 3334) -.sport.hudaem.ru -# ||search.a-vega.ru^ (advblock.txt: 3333) -.search.a-vega.ru -# ||samsung.yaload.ru^ (advblock.txt: 3332) -.samsung.yaload.ru -# ||root.qw.su^ (advblock.txt: 3331) -.root.qw.su -# ||real.attico-mos.ru^ (advblock.txt: 3330) -.real.attico-mos.ru -# ||qwerty.arenda263.ru^ (advblock.txt: 3329) -.qwerty.arenda263.ru -# ||pop.turnik.su^ (advblock.txt: 3328) -.pop.turnik.su -# ||pop.spy4.in^ (advblock.txt: 3327) -.pop.spy4.in -# ||po.spynets.ru^ (advblock.txt: 3326) -.po.spynets.ru -# ||lg.yaload.ru^ (advblock.txt: 3325) -.lg.yaload.ru -# ||kuhni.goodtrend2.ru^ (advblock.txt: 3324) -.kuhni.goodtrend2.ru -# ||fair.jones.se^ (advblock.txt: 3323) -.fair.jones.se -# ||fair.huz84.com^ (advblock.txt: 3322) -.fair.huz84.com -# ||1.miniporn.ru^ (advblock.txt: 3321) -.1.miniporn.ru -# ||yaload.yaload.ru^ (advblock.txt: 3318) -.yaload.yaload.ru -# ||www.online.anime-box.ws^ (advblock.txt: 3317) -.www.online.anime-box.ws -# ||wolf.fan-guf.ru^ (advblock.txt: 3316) -.wolf.fan-guf.ru -# ||wells.murmann.ru^ (advblock.txt: 3315) -.wells.murmann.ru -# ||static2.ero2you.com^ (advblock.txt: 3314) -.static2.ero2you.com -# ||skeet.advetime.ru^ (advblock.txt: 3313) -.skeet.advetime.ru -# ||sctipt.prons.org^ (advblock.txt: 3312) -.sctipt.prons.org -# ||sailor.rutracker21.org^ (advblock.txt: 3311) -.sailor.rutracker21.org -# ||rx9aef.driver-id.ru^ (advblock.txt: 3310) -.rx9aef.driver-id.ru -# ||rikki.bukvaved.net^ (advblock.txt: 3309) -.rikki.bukvaved.net -# ||recloma.cssmod.ru^ (advblock.txt: 3308) -.recloma.cssmod.ru -# ||public.screenhost.ru^ (advblock.txt: 3307) -.public.screenhost.ru -# ||pu.zipsites.ru^ (advblock.txt: 3306) -.pu.zipsites.ru -# ||plus.pornoshara.tv^ (advblock.txt: 3305) -.plus.pornoshara.tv -# ||news.soptv.ws^ (advblock.txt: 3304) -.news.soptv.ws -# ||news.movieworld.kz^ (advblock.txt: 3303) -.news.movieworld.kz -# ||n.gold-liter.org.ua^ (advblock.txt: 3302) -.n.gold-liter.org.ua -# ||gov.hentaipix.ru^ (advblock.txt: 3301) -.gov.hentaipix.ru -# ||go.mega-games.org^ (advblock.txt: 3300) -.go.mega-games.org -# ||forum.dwnld.net.ua^ (advblock.txt: 3299) -.forum.dwnld.net.ua -# ||dvasub.kipfilms.ru^ (advblock.txt: 3298) -.dvasub.kipfilms.ru -# ||crashes.autodanger.ru^ (advblock.txt: 3297) -.crashes.autodanger.ru -# ||bt1.gutgirl.ru^ (advblock.txt: 3296) -.bt1.gutgirl.ru -# ||bookforall1.bookforall.ru^ (advblock.txt: 3295) -.bookforall1.bookforall.ru -# ||bn1.homefot.ru^ (advblock.txt: 3294) -.bn1.homefot.ru -# ||adr.alltorrents.net^ (advblock.txt: 3293) -.adr.alltorrents.net -# ||ad.minecraft-mods.ru^ (advblock.txt: 3292) -.ad.minecraft-mods.ru -# ||the-people-group.$third-party (advblock.txt: 3289) -.the-people-group.*. -# ||people-group.$third-party (advblock.txt: 3287) -.people-group.*. -# ||kipfilms.ru^$third-party (advblock.txt: 3282) -.kipfilms.ru -# ||getout.besaba.com^ (advblock.txt: 3281) -.getout.besaba.com -# ||extract.zz.mu^$third-party (advblock.txt: 3280) -.extract.zz.mu -# ||eroox.ru^$third-party (advblock.txt: 3279) -.eroox.ru -# _vodkov.net (advblock.txt: 3277) -/.*_vodkov\.net -# _torrentszona.com (advblock.txt: 3276) -/.*_torrentszona\.com -# _stock-exchange.ucoz.com (advblock.txt: 3275) -/.*_stock-exchange\.ucoz\.com -# _softbaron.ru (advblock.txt: 3274) -/.*_softbaron\.ru -# _saytturtsii.ru (advblock.txt: 3273) -/.*_saytturtsii\.ru -# _narodclub.net (advblock.txt: 3272) -/.*_narodclub\.net -# _multiky.ru (advblock.txt: 3271) -/.*_multiky\.ru -# _kipfilms.ru (advblock.txt: 3270) -/.*_kipfilms\.ru -# _haxa.ru (advblock.txt: 3269) -/.*_haxa\.ru -# _gold-torrent.org (advblock.txt: 3268) -/.*_gold-torrent\.org -# _eroox.ru (advblock.txt: 3267) -/.*_eroox\.ru -# _doublepunch.ru (advblock.txt: 3266) -/.*_doublepunch\.ru -# _camelot.userlan.ru (advblock.txt: 3265) -/.*_camelot\.userlan\.ru -# _camelot.multilocal.ru (advblock.txt: 3264) -/.*_camelot\.multilocal\.ru -# _2krota.ru (advblock.txt: 3263) -/.*_2krota\.ru -# -todayanekdot.ru (advblock.txt: 3262) -/.*-todayanekdot\.ru -.*-todayanekdot.ru*. -# -softin.ca (advblock.txt: 3261) -/.*-softin\.ca -.*-softin.ca*. -# -ru-admin.net (advblock.txt: 3260) -/.*-ru-admin\.net -.*-ru-admin.net*. -# -murmann.ru (advblock.txt: 3259) -/.*-murmann\.ru -.*-murmann.ru*. -# -dom-2-onlain.ru (advblock.txt: 3258) -/.*-dom-2-onlain\.ru -.*-dom-2-onlain.ru*. -# ||zxrtn.com^$third-party (advblock.txt: 3252) -.zxrtn.com -# ||zqclick.net^ (advblock.txt: 3251) -.zqclick.net -# ||zontrans.com^ (advblock.txt: 3250) -.zontrans.com -# ||znatokionline.com^$third-party (advblock.txt: 3249) -.znatokionline.com -# ||zirikoni.com^ (advblock.txt: 3248) -.zirikoni.com -# ||zgvvx.com^$third-party (advblock.txt: 3247) -.zgvvx.com -# ||zdenochary.com^ (advblock.txt: 3246) -.zdenochary.com -# ||zboac.com^$third-party (advblock.txt: 3245) -.zboac.com -# ||zarabotki.ru^ (advblock.txt: 3244) -.zarabotki.ru -# ||yyredir.com^ (advblock.txt: 3243) -.yyredir.com -# ||yulinata.ru^ (advblock.txt: 3242) -.yulinata.ru -# ||yrsfs.com^$third-party (advblock.txt: 3241) -.yrsfs.com -# ||youhave.mobi^ (advblock.txt: 3240) -.youhave.mobi -# ||youformobile.ru^ (advblock.txt: 3239) -.youformobile.ru -# ||yohioo.com^ (advblock.txt: 3238) -.yohioo.com -# ||ynwia.com^$third-party (advblock.txt: 3237) -.ynwia.com -# ||yluvo.com^$third-party (advblock.txt: 3236) -.yluvo.com -# ||yidop.com^ (advblock.txt: 3235) -.yidop.com -# ||yangot.com^ (advblock.txt: 3234) -.yangot.com -# ||yandepit.com^ (advblock.txt: 3233) -.yandepit.com -# ||yalyagich.ru^ (advblock.txt: 3232) -.yalyagich.ru -# ||xytur.ru^ (advblock.txt: 3231) -.xytur.ru -# ||xyghv.com^$third-party (advblock.txt: 3230) -.xyghv.com -# ||xwell.ru^$third-party (advblock.txt: 3229) -.xwell.ru -# ||xuuclck.com^ (advblock.txt: 3228) -.xuuclck.com -# ||xooplo.com^ (advblock.txt: 3227) -.xooplo.com -# ||xn----etbhjdhwegjlz.xn--p1ai^$third-party (advblock.txt: 3226) -.xn----etbhjdhwegjlz.xn--p1ai -# ||xltraff.net^$~popup,popup (advblock.txt: 3225) -.xltraff.net -# ||xiuuh.com^ (advblock.txt: 3224) -.xiuuh.com -# ||xiss.ru^ (advblock.txt: 3223) -.xiss.ru -# ||xiepl.com^ (advblock.txt: 3222) -.xiepl.com -# ||xfnvb.biz^ (advblock.txt: 3221) -.xfnvb.biz -# ||xewoza.com^ (advblock.txt: 3220) -.xewoza.com -# ||xeclick.com^ (advblock.txt: 3219) -.xeclick.com -# ||xaogi.com^ (advblock.txt: 3218) -.xaogi.com -# ||x-ip-adwpc.com^ (advblock.txt: 3217) -.x-ip-adwpc.com -# ||x-ip-adv.com^ (advblock.txt: 3216) -.x-ip-adv.com -# ||wyuxy.com^$third-party (advblock.txt: 3215) -.wyuxy.com -# ||www.rt-ns.ru^ (advblock.txt: 3214) -.www.rt-ns.ru -# ||wvzhj.com^$third-party (advblock.txt: 3213) -.wvzhj.com -# ||wts-rotator.com^$~popup,popup (advblock.txt: 3212) -.wts-rotator.com -# ||wtoredir.com^ (advblock.txt: 3211) -.wtoredir.com -# ||wssdoo.com^ (advblock.txt: 3210) -.wssdoo.com -# ||wregf.biz^ (advblock.txt: 3209) -.wregf.biz -# ||wqs7j.ru^ (advblock.txt: 3208) -.wqs7j.ru -# ||worldoffer.ru^ (advblock.txt: 3207) -.worldoffer.ru -# ||womenset.ru^ (advblock.txt: 3206) -.womenset.ru -# ||wmrak.com^ (advblock.txt: 3205) -.wmrak.com -# ||wmip.ru^ (advblock.txt: 3204) -.wmip.ru -# ||wmbankir.ru^ (advblock.txt: 3203) -.wmbankir.ru -# ||wlsport.com^$third-party (advblock.txt: 3202) -.wlsport.com -# ||wlboon.com^ (advblock.txt: 3201) -.wlboon.com -# ||wizard-traffstock.com^$third-party,~popup,popup (advblock.txt: 3200) -.wizard-traffstock.com -# ||wisertb.com^ (advblock.txt: 3199) -.wisertb.com -# ||winvideo.org^$third-party (advblock.txt: 3198) -.winvideo.org -# ||winvideo.me^$third-party (advblock.txt: 3197) -.winvideo.me -# ||winneradsmedia.com^$third-party (advblock.txt: 3196) -.winneradsmedia.com -# ||whisla.com^ (advblock.txt: 3195) -.whisla.com -# ||wetpussyhd.com^ (advblock.txt: 3194) -.wetpussyhd.com -# ||weropiy.com^ (advblock.txt: 3193) -.weropiy.com -# ||weebvivian72.uk.to^ (advblock.txt: 3192) -.weebvivian72.uk.to -# ||wedtor.com^$third-party (advblock.txt: 3191) -.wedtor.com -# ||wedgeac.com^ (advblock.txt: 3190) -.wedgeac.com -# ||webrotator.org^ (advblock.txt: 3189) -.webrotator.org -# ||webrotator.net^ (advblock.txt: 3188) -.webrotator.net -# ||webmastak.net^ (advblock.txt: 3187) -.webmastak.net -# ||web-rotator.net^ (advblock.txt: 3186) -.web-rotator.net -# ||web-rotation.net^ (advblock.txt: 3185) -.web-rotation.net -# ||web-games.biz^$third-party (advblock.txt: 3184) -.web-games.biz -# ||wbid.ru^ (advblock.txt: 3183) -.wbid.ru -# ||waveview.info^$third-party (advblock.txt: 3182) -.waveview.info -# ||watrz.com^ (advblock.txt: 3181) -.watrz.com -# ||wapstaterpart.ru^ (advblock.txt: 3180) -.wapstaterpart.ru -# ||wapratios.ru^ (advblock.txt: 3179) -.wapratios.ru -# ||waogi.com^ (advblock.txt: 3178) -.waogi.com -# ||waladon.com^ (advblock.txt: 3177) -.waladon.com -# ||wad.ojooo.com^$third-party (advblock.txt: 3176) -.wad.ojooo.com -# ||w717.com^ (advblock.txt: 3175) -.w717.com -# ||w-rada.com^ (advblock.txt: 3174) -.w-rada.com -# ||w-lozo.com^ (advblock.txt: 3173) -.w-lozo.com -# ||w-lovo.com^ (advblock.txt: 3172) -.w-lovo.com -# ||w-loto.com^ (advblock.txt: 3171) -.w-loto.com -# ||w-loro.com^ (advblock.txt: 3170) -.w-loro.com -# ||w-lomo.com^ (advblock.txt: 3169) -.w-lomo.com -# ||w-lolo.com^ (advblock.txt: 3168) -.w-lolo.com -# ||w-loko.com^ (advblock.txt: 3167) -.w-loko.com -# ||w-lofo.com^ (advblock.txt: 3166) -.w-lofo.com -# ||w-lobo.com^ (advblock.txt: 3165) -.w-lobo.com -# ||w-llke.ru^ (advblock.txt: 3164) -.w-llke.ru -# ||vvmblock.ru^ (advblock.txt: 3163) -.vvmblock.ru -# ||vutrem.com^$third-party (advblock.txt: 3162) -.vutrem.com -# ||vutatik.ru^ (advblock.txt: 3161) -.vutatik.ru -# ||vtomate.biz^ (advblock.txt: 3160) -.vtomate.biz -# ||vpvsy.com^$third-party (advblock.txt: 3159) -.vpvsy.com -# ||vpbyl.com^ (advblock.txt: 3158) -.vpbyl.com -# ||voono.ru^ (advblock.txt: 3157) -.voono.ru -# ||vongomedia.ru^$third-party (advblock.txt: 3156) -.vongomedia.ru -# ||vogozita.com^ (advblock.txt: 3155) -.vogozita.com -# ||vogozaw.ru^ (advblock.txt: 3154) -.vogozaw.ru -# ||vogozae.ru^ (advblock.txt: 3153) -.vogozae.ru -# ||vogotita.com^ (advblock.txt: 3152) -.vogotita.com -# ||vogorita.com^ (advblock.txt: 3151) -.vogorita.com -# ||vogodita.com^ (advblock.txt: 3150) -.vogodita.com -# ||vogo-vogo.ru^ (advblock.txt: 3149) -.vogo-vogo.ru -# ||vmet.ro^$third-party (advblock.txt: 3148) -.vmet.ro -# ||vmblock.net^ (advblock.txt: 3147) -.vmblock.net -# ||vktweaks.at.ua^$third-party (advblock.txt: 3146) -.vktweaks.at.ua -# ||vkmonster.com^ (advblock.txt: 3145) -.vkmonster.com -# ||vkmoll.ru^ (advblock.txt: 3144) -.vkmoll.ru -# ||vk242.ru^$third-party (advblock.txt: 3143) -.vk242.ru -# ||viva-vanna.ru^ (advblock.txt: 3142) -.viva-vanna.ru -# ||vitos.freezfiles.ru^ (advblock.txt: 3141) -.vitos.freezfiles.ru -# ||visitscounter.ru^ (advblock.txt: 3140) -.visitscounter.ru -# ||vinregle.com^ (advblock.txt: 3139) -.vinregle.com -# ||vinov24.com^ (advblock.txt: 3138) -.vinov24.com -# ||vimart16.com^ (advblock.txt: 3137) -.vimart16.com -# ||vim100.ru^ (advblock.txt: 3136) -.vim100.ru -# ||vilumirian.biz^ (advblock.txt: 3135) -.vilumirian.biz -# ||viglir.ru^ (advblock.txt: 3134) -.viglir.ru -# ||viewrtb.com^ (advblock.txt: 3133) -.viewrtb.com -# ||vietalle.com^ (advblock.txt: 3132) -.vietalle.com -# ||vidustal.com^ (advblock.txt: 3131) -.vidustal.com -# ||vidseed.ru$third-party (advblock.txt: 3130) -.vidseed.ru*. -# ||vidigital.ru^$third-party (advblock.txt: 3129) -.vidigital.ru -# ||videoroll.net^$third-party (advblock.txt: 3128) -.videoroll.net -# ||videoplayer.ru^*/banners/ (advblock.txt: 3127) -.videoplayer.ru/.*/banners/ -# ||videojune.ru^ (advblock.txt: 3126) -.videojune.ru -# ||videojuly.ru^ (advblock.txt: 3125) -.videojuly.ru -# ||videoburner2015.com^$third-party (advblock.txt: 3124) -.videoburner2015.com -# ||videoaugust.ru^ (advblock.txt: 3123) -.videoaugust.ru -# ||video103.ru^ (advblock.txt: 3122) -.video103.ru -# ||video003.com^ (advblock.txt: 3121) -.video003.com -# ||video002.com^ (advblock.txt: 3120) -.video002.com -# ||video001.com^ (advblock.txt: 3119) -.video001.com -# ||video.videonow.ru^ (advblock.txt: 3118) -.video.videonow.ru -# ||videc10.com^ (advblock.txt: 3117) -.videc10.com -# ||vidaugust.ru^ (advblock.txt: 3116) -.vidaugust.ru -# ||vidasys.ru^$third-party (advblock.txt: 3115) -.vidasys.ru -# ||veroui.com^ (advblock.txt: 3114) -.veroui.com -# ||ventite.com^ (advblock.txt: 3113) -.ventite.com -# ||vcnnz.com^$third-party (advblock.txt: 3112) -.vcnnz.com -# ||vboys.ru^$third-party (advblock.txt: 3111) -.vboys.ru -# ||vbmjune25.com^ (advblock.txt: 3110) -.vbmjune25.com -# ||vbmay16.com^ (advblock.txt: 3109) -.vbmay16.com -# ||vatizon.com^ (advblock.txt: 3108) -.vatizon.com -# ||various1down.biz^ (advblock.txt: 3107) -.various1down.biz -# ||vakataro.com^ (advblock.txt: 3106) -.vakataro.com -# ||vakafaro.com^ (advblock.txt: 3105) -.vakafaro.com -# ||v2mlyellow.com^ (advblock.txt: 3104) -.v2mlyellow.com -# ||v2mljs.org^ (advblock.txt: 3103) -.v2mljs.org -# ||uvcwj.com^$third-party (advblock.txt: 3102) -.uvcwj.com -# ||utrehter.com^ (advblock.txt: 3101) -.utrehter.com -# ||utilieur.com^ (advblock.txt: 3100) -.utilieur.com -# ||utilient.com^ (advblock.txt: 3099) -.utilient.com -# ||usimonat.com^ (advblock.txt: 3098) -.usimonat.com -# ||usermediaclick.ru^ (advblock.txt: 3097) -.usermediaclick.ru -# ||uself.in^ (advblock.txt: 3096) -.uself.in -# ||us97udx.com^ (advblock.txt: 3095) -.us97udx.com -# ||urlrtb.com^ (advblock.txt: 3094) -.urlrtb.com -# ||untily.com^ (advblock.txt: 3093) -.untily.com -# ||unikuni.com^ (advblock.txt: 3092) -.unikuni.com -# ||unholyrsounds.in^ (advblock.txt: 3091) -.unholyrsounds.in -# ||undere.com^ (advblock.txt: 3090) -.undere.com -# ||under-click.ru^ (advblock.txt: 3089) -.under-click.ru -# ||ultrapay.net^ (advblock.txt: 3088) -.ultrapay.net -# ||ukrotsel.ru^ (advblock.txt: 3087) -.ukrotsel.ru -# ||uclead.com^ (advblock.txt: 3086) -.uclead.com -# ||uchmuk.com^ (advblock.txt: 3085) -.uchmuk.com -# ||typiol.com^ (advblock.txt: 3084) -.typiol.com -# ||tynyh.com^$third-party (advblock.txt: 3083) -.tynyh.com -# ||twitep.com^ (advblock.txt: 3082) -.twitep.com -# ||tvoy-start.com/partnerka/ (advblock.txt: 3081) -.tvoy-start.com/partnerka/ -# ||tvoigost.ru^ (advblock.txt: 3080) -.tvoigost.ru -# ||ttfean.com^ (advblock.txt: 3079) -.ttfean.com -# ||tteasr.com^ (advblock.txt: 3078) -.tteasr.com -# ||ttarget.ru^$third-party (advblock.txt: 3077) -.ttarget.ru -# ||tsunam.ru^ (advblock.txt: 3076) -.tsunam.ru -# ||tsnsniper.com^ (advblock.txt: 3075) -.tsnsniper.com -# ||tsilepe.ru^$third-party (advblock.txt: 3074) -.tsilepe.ru -# ||truenty.com^ (advblock.txt: 3073) -.truenty.com -# ||tropicalos.com^ (advblock.txt: 3072) -.tropicalos.com -# ||trmedie.ru^ (advblock.txt: 3071) -.trmedie.ru -# ||trisol.ru^ (advblock.txt: 3070) -.trisol.ru -# ||treprime.com^ (advblock.txt: 3069) -.treprime.com -# ||tratouler.com^$third-party (advblock.txt: 3068) -.tratouler.com -# ||tratataololol.ru^ (advblock.txt: 3067) -.tratataololol.ru -# ||tranzits.com^ (advblock.txt: 3066) -.tranzits.com -# ||transfto.com^ (advblock.txt: 3065) -.transfto.com -# ||traient.com^ (advblock.txt: 3064) -.traient.com -# ||trahik.ru^ (advblock.txt: 3063) -.trahik.ru -# ||traftiz.com^ (advblock.txt: 3062) -.traftiz.com -# ||trafsiz.com^ (advblock.txt: 3061) -.trafsiz.com -# ||trafmake.ru^ (advblock.txt: 3060) -.trafmake.ru -# ||trafka.ru^$third-party (advblock.txt: 3059) -.trafka.ru -# ||trafidet.ru^$~popup,popup (advblock.txt: 3058) -.trafidet.ru -# ||traffru.ru^ (advblock.txt: 3057) -.traffru.ru -# ||traffpay.ru^ (advblock.txt: 3056) -.traffpay.ru -# ||traffim.com^$third-party (advblock.txt: 3055) -.traffim.com -# ||traffictoadv.com^ (advblock.txt: 3054) -.traffictoadv.com -# ||traffic-king.ru^ (advblock.txt: 3053) -.traffic-king.ru -# ||trafex.net^$third-party (advblock.txt: 3052) -.trafex.net -# ||trafers.ru^ (advblock.txt: 3051) -.trafers.ru -# ||trafalz.com^ (advblock.txt: 3050) -.trafalz.com -# ||trafall.com^ (advblock.txt: 3049) -.trafall.com -# ||tozitoto.com^ (advblock.txt: 3048) -.tozitoto.com -# ||tozipoto.com^ (advblock.txt: 3047) -.tozipoto.com -# ||tozimoto.com^ (advblock.txt: 3046) -.tozimoto.com -# ||toutiles.com^ (advblock.txt: 3045) -.toutiles.com -# ||tourteaser.ru^ (advblock.txt: 3044) -.tourteaser.ru -# ||toujoute.com^ (advblock.txt: 3043) -.toujoute.com -# ||totrena.ru^ (advblock.txt: 3042) -.totrena.ru -# ||tormun.com^$third-party (advblock.txt: 3041) -.tormun.com -# ||torkok.com^$third-party (advblock.txt: 3040) -.torkok.com -# ||toplaygame.ru^$third-party (advblock.txt: 3039) -.toplaygame.ru -# ||tonopole.com^ (advblock.txt: 3038) -.tonopole.com -# ||tomobol.com^ (advblock.txt: 3037) -.tomobol.com -# ||tomiti.ru^ (advblock.txt: 3036) -.tomiti.ru -# ||tolicando.com^ (advblock.txt: 3035) -.tolicando.com -# ||tojinr.com^ (advblock.txt: 3034) -.tojinr.com -# ||toftori.ru^ (advblock.txt: 3033) -.toftori.ru -# ||todayad.ru^ (advblock.txt: 3032) -.todayad.ru -# ||to/files/$third-party (advblock.txt: 3031) -# ||to/code/$third-party,script (advblock.txt: 3030) -# ||tmska.com^ (advblock.txt: 3029) -.tmska.com -# ||tm-79.com^ (advblock.txt: 3028) -.tm-79.com -# ||tizru.com^ (advblock.txt: 3027) -.tizru.com -# ||tizerstock.com^ (advblock.txt: 3026) -.tizerstock.com -# ||tizerset.net^ (advblock.txt: 3025) -.tizerset.net -# ||tizernaya-reklama.ru^ (advblock.txt: 3024) -.tizernaya-reklama.ru -# ||tizermy.net^ (advblock.txt: 3023) -.tizermy.net -# ||tizermine.net^ (advblock.txt: 3022) -.tizermine.net -# ||tizerlink.com^$third-party (advblock.txt: 3021) -.tizerlink.com -# ||tizerlady.org^$third-party (advblock.txt: 3020) -.tizerlady.org -# ||tizerlady.net^$third-party (advblock.txt: 3019) -.tizerlady.net -# ||tizerlady.com^$third-party (advblock.txt: 3018) -.tizerlady.com -# ||tizerlady.biz^$third-party (advblock.txt: 3017) -.tizerlady.biz -# ||tizergun.net^ (advblock.txt: 3016) -.tizergun.net -# ||tizergo.net^ (advblock.txt: 3015) -.tizergo.net -# ||tizerfly.net^ (advblock.txt: 3014) -.tizerfly.net -# ||tizerelite.net^ (advblock.txt: 3013) -.tizerelite.net -# ||tizerda.net^ (advblock.txt: 3012) -.tizerda.net -# ||tizerclik.com^$third-party (advblock.txt: 3011) -.tizerclik.com -# ||tizerbest.net^ (advblock.txt: 3010) -.tizerbest.net -# ||tizerbank.com^$third-party (advblock.txt: 3009) -.tizerbank.com -# ||tizer8.net^ (advblock.txt: 3008) -.tizer8.net -# ||tizer7.net^ (advblock.txt: 3007) -.tizer7.net -# ||tizer6.net^ (advblock.txt: 3006) -.tizer6.net -# ||tizer13.net^ (advblock.txt: 3005) -.tizer13.net -# ||tizer12.net^ (advblock.txt: 3004) -.tizer12.net -# ||tiz-et.ru^$third-party (advblock.txt: 3003) -.tiz-et.ru -# ||tisarama.com^ (advblock.txt: 3002) -.tisarama.com -# ||tisapama.com^ (advblock.txt: 3001) -.tisapama.com -# ||tinsvt.ru^ (advblock.txt: 3000) -.tinsvt.ru -# ||timonom.com^ (advblock.txt: 2999) -.timonom.com -# ||tilili007.ru^ (advblock.txt: 2998) -.tilili007.ru -# ||tierest.com^ (advblock.txt: 2997) -.tierest.com -# ||tidentes.com^ (advblock.txt: 2996) -.tidentes.com -# ||ticlon.ru^ (advblock.txt: 2995) -.ticlon.ru -# ||thumpac.com^ (advblock.txt: 2994) -.thumpac.com -# ||thegrap.ru^ (advblock.txt: 2993) -.thegrap.ru -# ||tgearheads.com^ (advblock.txt: 2992) -.tgearheads.com -# ||textun.ru^$third-party (advblock.txt: 2991) -.textun.ru -# ||teromil.com^ (advblock.txt: 2990) -.teromil.com -# ||terapou.com^ (advblock.txt: 2989) -.terapou.com -# ||televisionbomb.com^ (advblock.txt: 2988) -.televisionbomb.com -# ||tecontx.com^ (advblock.txt: 2987) -.tecontx.com -# ||technical-rtl.ru^$third-party (advblock.txt: 2986) -.technical-rtl.ru -# ||tech9638514.ru^ (advblock.txt: 2985) -.tech9638514.ru -# ||tech5877413.ru^ (advblock.txt: 2984) -.tech5877413.ru -# ||tech4215978.ru^ (advblock.txt: 2983) -.tech4215978.ru -# ||teasertraffic.com^ (advblock.txt: 2982) -.teasertraffic.com -# ||teasernet.com.ua^ (advblock.txt: 2981) -.teasernet.com.ua -# ||teasermedia.net^$third-party (advblock.txt: 2980) -.teasermedia.net -# ||teasercpm.ru^ (advblock.txt: 2979) -.teasercpm.ru -# ||teaserbar.com^ (advblock.txt: 2978) -.teaserbar.com -# ||teaser1m.com^ (advblock.txt: 2977) -.teaser1m.com -# ||teachac.com^ (advblock.txt: 2976) -.teachac.com -# ||td-everest.biz^ (advblock.txt: 2975) -.td-everest.biz -# ||tc.fileplaneta.com^ (advblock.txt: 2974) -.tc.fileplaneta.com -# ||tbn.ru/bb.cgi? (advblock.txt: 2973) -.tbn.ru/bb\.cgi\? -# ||taril3.ru^ (advblock.txt: 2972) -.taril3.ru -# ||taril2.ru^ (advblock.txt: 2971) -.taril2.ru -# ||taril1.ru^ (advblock.txt: 2970) -.taril1.ru -# ||takealldir.ru^ (advblock.txt: 2969) -.takealldir.ru -# ||tagol2.ru^ (advblock.txt: 2968) -.tagol2.ru -# ||tadic.tk^ (advblock.txt: 2967) -.tadic.tk -# ||t800.org^ (advblock.txt: 2966) -.t800.org -# ||t.thor-media.ru^ (advblock.txt: 2965) -.t.thor-media.ru -# ||t.fotos.ua^$third-party (advblock.txt: 2964) -.t.fotos.ua -# ||t.fileplaneta.com^ (advblock.txt: 2963) -.t.fileplaneta.com -# ||t-kibo.com^ (advblock.txt: 2962) -.t-kibo.com -# ||sypleni.ru^ (advblock.txt: 2961) -.sypleni.ru -# ||sutgof.ru^$third-party (advblock.txt: 2960) -.sutgof.ru -# ||supertura.com^ (advblock.txt: 2959) -.supertura.com -# ||superpromokody.com^ (advblock.txt: 2958) -.superpromokody.com -# ||superfastcomputer.ru^ (advblock.txt: 2957) -.superfastcomputer.ru -# ||super12.eu^ (advblock.txt: 2956) -.super12.eu -# ||super-sxema.ru^$third-party (advblock.txt: 2955) -.super-sxema.ru -# ||sunrima.ru^ (advblock.txt: 2954) -.sunrima.ru -# ||sugvuxa.ru^$third-party (advblock.txt: 2953) -.sugvuxa.ru -# ||striete.com^ (advblock.txt: 2952) -.striete.com -# ||striere.com^ (advblock.txt: 2951) -.striere.com -# ||steamac.com^ (advblock.txt: 2950) -.steamac.com -# ||stb.eat.int.ru^ (advblock.txt: 2949) -.stb.eat.int.ru -# ||stayeda.com^ (advblock.txt: 2948) -.stayeda.com -# ||stat-well.com^$third-party (advblock.txt: 2947) -.stat-well.com -# ||startscript.ru^ (advblock.txt: 2946) -.startscript.ru -# ||standadv.com^ (advblock.txt: 2945) -.standadv.com -# ||stableprofit4you.com^ (advblock.txt: 2944) -.stableprofit4you.com -# ||ssl-services.com^$third-party (advblock.txt: 2943) -.ssl-services.com -# ||specisez.com^ (advblock.txt: 2942) -.specisez.com -# ||spechete.com^ (advblock.txt: 2941) -.spechete.com -# ||spechee.com^ (advblock.txt: 2940) -.spechee.com -# ||sparical.com^ (advblock.txt: 2939) -.sparical.com -# ||sparelli.com^ (advblock.txt: 2938) -.sparelli.com -# ||sovietit.com^ (advblock.txt: 2937) -.sovietit.com -# ||sovetnik.yandex.net^$third-party (advblock.txt: 2936) -.sovetnik.yandex.net -# ||sourdi.com^ (advblock.txt: 2935) -.sourdi.com -# ||sopital.com^ (advblock.txt: 2934) -.sopital.com -# ||sontere.com^ (advblock.txt: 2933) -.sontere.com -# ||sonnents.com^ (advblock.txt: 2932) -.sonnents.com -# ||some.demuz.ru^ (advblock.txt: 2931) -.some.demuz.ru -# ||soloway.su/rotator/ (advblock.txt: 2930) -.soloway.su/rotator/ -# ||sololslol.ru^ (advblock.txt: 2929) -.sololslol.ru -# ||solanog.com^ (advblock.txt: 2928) -.solanog.com -# ||soft-pays.ru^ (advblock.txt: 2927) -.soft-pays.ru -# ||sof32dsso.ru^ (advblock.txt: 2926) -.sof32dsso.ru -# ||sochetat.net^ (advblock.txt: 2925) -.sochetat.net -# ||snakeac.com^ (advblock.txt: 2924) -.snakeac.com -# ||smimarket.com^ (advblock.txt: 2923) -.smimarket.com -# ||smilered.com^$third-party (advblock.txt: 2922) -.smilered.com -# ||sm0tri.eu^$third-party (advblock.txt: 2921) -.sm0tri.eu -# ||slopeac.com^ (advblock.txt: 2920) -.slopeac.com -# ||slivz.com^ (advblock.txt: 2919) -.slivz.com -# ||slickjump.com^$third-party (advblock.txt: 2918) -.slickjump.com -# ||sleepac.com^ (advblock.txt: 2917) -.sleepac.com -# ||slavedomain48.net^$third-party (advblock.txt: 2916) -.slavedomain48.net -# ||slartibartfast.ru^ (advblock.txt: 2915) -.slartibartfast.ru -# ||sider.org.ru^ (advblock.txt: 2914) -.sider.org.ru -# ||sibiryak-soft.net^ (advblock.txt: 2913) -.sibiryak-soft.net -# ||shuffele.com^ (advblock.txt: 2912) -.shuffele.com -# ||showede.com^ (advblock.txt: 2911) -.showede.com -# ||showdysl.com^ (advblock.txt: 2910) -.showdysl.com -# ||shoveac.com^ (advblock.txt: 2909) -.shoveac.com -# ||shotyfy.com^ (advblock.txt: 2908) -.shotyfy.com -# ||shotad.com^ (advblock.txt: 2907) -.shotad.com -# ||shigopo.ru^ (advblock.txt: 2906) -.shigopo.ru -# ||sheat.ru^ (advblock.txt: 2905) -.sheat.ru -# ||sexvrusko.org^ (advblock.txt: 2904) -.sexvrusko.org -# ||sexshop4ik.ru^ (advblock.txt: 2903) -.sexshop4ik.ru -# ||sexshop4ik.ru.swtest.ru^ (advblock.txt: 2902) -.sexshop4ik.ru.swtest.ru -# ||servized.com^ (advblock.txt: 2901) -.servized.com -# ||serving.plexop.net^ (advblock.txt: 2900) -.serving.plexop.net -# ||server2034.ru^ (advblock.txt: 2899) -.server2034.ru -# ||server-number-1.ru^$third-party (advblock.txt: 2898) -.server-number-1.ru -# ||serveac.com^ (advblock.txt: 2897) -.serveac.com -# ||serv7553.ru^$third-party (advblock.txt: 2896) -.serv7553.ru -# ||sernen.com^$third-party (advblock.txt: 2895) -.sernen.com -# ||sergh34ds.com^ (advblock.txt: 2894) -.sergh34ds.com -# ||serg.pics-money.ru^ (advblock.txt: 2893) -.serg.pics-money.ru -# ||senkevich-vk.net^ (advblock.txt: 2892) -.senkevich-vk.net -# ||seligers.ru^ (advblock.txt: 2891) -.seligers.ru -# ||seedr.ru^$third-party (advblock.txt: 2890) -.seedr.ru -# ||seedr.com^$third-party (advblock.txt: 2889) -.seedr.com -# ||seed.by^ (advblock.txt: 2888) -.seed.by -# ||searchfun.in^ (advblock.txt: 2887) -.searchfun.in -# ||sdx.ru^$third-party (advblock.txt: 2886) -.sdx.ru -# ||samiana.com^ (advblock.txt: 2885) -.samiana.com -# ||salutbook.ru^$third-party (advblock.txt: 2884) -.salutbook.ru -# ||salesdoubler.com.ua^$third-party (advblock.txt: 2883) -.salesdoubler.com.ua -# ||saferedirrect.com^ (advblock.txt: 2882) -.saferedirrect.com -# ||saferedd.com^ (advblock.txt: 2881) -.saferedd.com -# ||sadreno.com^$third-party (advblock.txt: 2880) -.sadreno.com -# ||s5block.com^$third-party (advblock.txt: 2879) -.s5block.com -# ||s1venus.com^$third-party (advblock.txt: 2878) -.s1venus.com -# ||ryehetywyt4.com^ (advblock.txt: 2877) -.ryehetywyt4.com -# ||rybkono.ru^ (advblock.txt: 2876) -.rybkono.ru -# ||rvzr-a.akamaihd.net^ (advblock.txt: 2875) -.rvzr-a.akamaihd.net -# ||rutvind.com^$third-party (advblock.txt: 2874) -.rutvind.com -# ||rutorads.com^$third-party (advblock.txt: 2873) -.rutorads.com -# ||rustiz.ru^ (advblock.txt: 2872) -.rustiz.ru -# ||rusprices.ru^$third-party (advblock.txt: 2871) -.rusprices.ru -# ||ruschopi.ru^$third-party (advblock.txt: 2870) -.ruschopi.ru -# ||ruigra.com^ (advblock.txt: 2869) -.ruigra.com -# ||ruad.net^ (advblock.txt: 2868) -.ruad.net -# ||rtmain.com^ (advblock.txt: 2867) -.rtmain.com -# ||rtdns.ru^ (advblock.txt: 2866) -.rtdns.ru -# ||rtbweb.com^ (advblock.txt: 2865) -.rtbweb.com -# ||rtbtraf.com^ (advblock.txt: 2864) -.rtbtraf.com -# ||rtbinternet.com^ (advblock.txt: 2863) -.rtbinternet.com -# ||rtbclick.net^$third-party (advblock.txt: 2862) -.rtbclick.net -# ||rtb-media.ru^$third-party (advblock.txt: 2861) -.rtb-media.ru -# ||rouhb.com^ (advblock.txt: 2860) -.rouhb.com -# ||rotationmessage.net^ (advblock.txt: 2859) -.rotationmessage.net -# ||rotation-web.net^ (advblock.txt: 2858) -.rotation-web.net -# ||rotation-message.net^ (advblock.txt: 2857) -.rotation-message.net -# ||rotation-media.net^ (advblock.txt: 2856) -.rotation-media.net -# ||rostok-de.com^ (advblock.txt: 2855) -.rostok-de.com -# ||roseemariepatterson.uk.to^ (advblock.txt: 2854) -.roseemariepatterson.uk.to -# ||rootinmyhead.ru^ (advblock.txt: 2853) -.rootinmyhead.ru -# ||romilit.com^ (advblock.txt: 2852) -.romilit.com -# ||rollovervk.net^ (advblock.txt: 2851) -.rollovervk.net -# ||rolloversl.net^ (advblock.txt: 2850) -.rolloversl.net -# ||rokno.com^ (advblock.txt: 2849) -.rokno.com -# ||robimobi.com^ (advblock.txt: 2848) -.robimobi.com -# ||rle.ru^ (advblock.txt: 2847) -.rle.ru -# ||richthof.com^ (advblock.txt: 2846) -.richthof.com -# ||rich-adv-code.net^ (advblock.txt: 2845) -.rich-adv-code.net -# ||reunice.com^ (advblock.txt: 2844) -.reunice.com -# ||returso.com^ (advblock.txt: 2843) -.returso.com -# ||republer.com^$third-party (advblock.txt: 2842) -.republer.com -# ||reklamadarom.com^ (advblock.txt: 2841) -.reklamadarom.com -# ||regpole.com^$third-party (advblock.txt: 2840) -.regpole.com -# ||regisg.com^ (advblock.txt: 2839) -.regisg.com -# ||redirrtosite.com^ (advblock.txt: 2838) -.redirrtosite.com -# ||redclick.ru^$third-party (advblock.txt: 2837) -.redclick.ru -# ||redavu.ru^ (advblock.txt: 2836) -.redavu.ru -# ||reborko.com^$third-party (advblock.txt: 2835) -.reborko.com -# ||realtraf9.ru^ (advblock.txt: 2834) -.realtraf9.ru -# ||realtraf3.ru^ (advblock.txt: 2833) -.realtraf3.ru -# ||realtraf.$third-party,~popup,popup (advblock.txt: 2832) -.realtraf.*. -# ||realdomenclear.ru^ (advblock.txt: 2831) -.realdomenclear.ru -# ||ready4win.com^ (advblock.txt: 2830) -.ready4win.com -# ||reacten.com^ (advblock.txt: 2829) -.reacten.com -# ||rdiul.com^$third-party (advblock.txt: 2828) -.rdiul.com -# ||rb-net.com^ (advblock.txt: 2827) -.rb-net.com -# ||ravnovesienews.ru^$third-party (advblock.txt: 2826) -.ravnovesienews.ru -# ||ravishstroke.in^ (advblock.txt: 2825) -.ravishstroke.in -# ||ratioboom.ru^$third-party (advblock.txt: 2824) -.ratioboom.ru -# ||qwertypay.com^$third-party (advblock.txt: 2823) -.qwertypay.com -# ||qtymi.com^$third-party (advblock.txt: 2822) -.qtymi.com -# ||qrstes.com^ (advblock.txt: 2821) -.qrstes.com -# ||qrdeom.com^ (advblock.txt: 2820) -.qrdeom.com -# ||qractv.com^ (advblock.txt: 2819) -.qractv.com -# ||qmebelist.ru^ (advblock.txt: 2818) -.qmebelist.ru -# ||qload.ru^$third-party (advblock.txt: 2817) -.qload.ru -# ||qcvdwtpnit.ru^ (advblock.txt: 2816) -.qcvdwtpnit.ru -# ||qbann.ru^$third-party (advblock.txt: 2815) -.qbann.ru -# ||qaadv.com^ (advblock.txt: 2814) -.qaadv.com -# ||puttyac.com^ (advblock.txt: 2813) -.puttyac.com -# ||puhtml.com^$third-party (advblock.txt: 2812) -.puhtml.com -# ||publicitysmart.com^ (advblock.txt: 2811) -.publicitysmart.com -# ||ptredir.com^ (advblock.txt: 2810) -.ptredir.com -# ||psnets.com^ (advblock.txt: 2809) -.psnets.com -# ||psmardr.com^$third-party (advblock.txt: 2808) -.psmardr.com -# ||psma03.com^$third-party (advblock.txt: 2807) -.psma03.com -# ||psma02.com^$third-party (advblock.txt: 2806) -.psma02.com -# ||psma01.com^$third-party (advblock.txt: 2805) -.psma01.com -# ||prozapas.dn.ua^ (advblock.txt: 2804) -.prozapas.dn.ua -# ||protrafv2.com^ (advblock.txt: 2803) -.protrafv2.com -# ||proteaser.com^ (advblock.txt: 2802) -.proteaser.com -# ||proravnovesie.ru^ (advblock.txt: 2801) -.proravnovesie.ru -# ||proravenstvo.ru^ (advblock.txt: 2800) -.proravenstvo.ru -# ||promoworld.pw^$third-party (advblock.txt: 2799) -.promoworld.pw -# ||promocns.com^$third-party (advblock.txt: 2798) -.promocns.com -# ||promocenter.biz^$third-party (advblock.txt: 2797) -.promocenter.biz -# ||promobuster.org^ (advblock.txt: 2796) -.promobuster.org -# ||promoboom.org^ (advblock.txt: 2795) -.promoboom.org -# ||promoblocks.ru^ (advblock.txt: 2794) -.promoblocks.ru -# ||promobit.pw^ (advblock.txt: 2793) -.promobit.pw -# ||promedia-click.ru^ (advblock.txt: 2792) -.promedia-click.ru -# ||proligtb.com^ (advblock.txt: 2791) -.proligtb.com -# ||priesty.com^ (advblock.txt: 2790) -.priesty.com -# ||precision-machining-tw.com^ (advblock.txt: 2789) -.precision-machining-tw.com -# ||prbn.ru^ (advblock.txt: 2788) -.prbn.ru -# ||pr28.com^ (advblock.txt: 2787) -.pr28.com -# ||ppvlj.com^$~third-party (advblock.txt: 2786) -.ppvlj.com -# ||povyspo.ru^$third-party (advblock.txt: 2785) -.povyspo.ru -# ||povtotse.ru^ (advblock.txt: 2784) -.povtotse.ru -# ||poulop.com^ (advblock.txt: 2783) -.poulop.com -# ||porhuk.com^$third-party (advblock.txt: 2782) -.porhuk.com -# ||popunder-mladnet.medialand.ru (advblock.txt: 2781) -.popunder-mladnet.medialand.ru*. -# ||pop-under.ru^ (advblock.txt: 2780) -.pop-under.ru -# ||poollast.com^ (advblock.txt: 2779) -.poollast.com -# ||pomtiy.com^ (advblock.txt: 2778) -.pomtiy.com -# ||polisrtb.com^ (advblock.txt: 2777) -.polisrtb.com -# ||polimadv.com^ (advblock.txt: 2776) -.polimadv.com -# ||pokutaf.com^$third-party (advblock.txt: 2775) -.pokutaf.com -# ||pokitom.com^ (advblock.txt: 2774) -.pokitom.com -# ||poketall.ru^ (advblock.txt: 2773) -.poketall.ru -# ||pointrtb.com^ (advblock.txt: 2772) -.pointrtb.com -# ||pointclc.com^ (advblock.txt: 2771) -.pointclc.com -# ||plus-2launch.biz^ (advblock.txt: 2770) -.plus-2launch.biz -# ||pluginsjquery.com^$third-party (advblock.txt: 2769) -.pluginsjquery.com -# ||plomihy.com^ (advblock.txt: 2768) -.plomihy.com -# ||planeta-online.tv^$third-party (advblock.txt: 2767) -.planeta-online.tv -# ||planeta-fresh.ru^$third-party (advblock.txt: 2766) -.planeta-fresh.ru -# ||pketred.com^ (advblock.txt: 2765) -.pketred.com -# ||piroji.com^ (advblock.txt: 2764) -.piroji.com -# ||pidarunki.ru^ (advblock.txt: 2763) -.pidarunki.ru -# ||pichyefu.ru^ (advblock.txt: 2762) -.pichyefu.ru -# ||peoplemobile.ru^ (advblock.txt: 2761) -.peoplemobile.ru -# ||pentoch.com^$third-party (advblock.txt: 2760) -.pentoch.com -# ||pdmayt.com^ (advblock.txt: 2759) -.pdmayt.com -# ||pcads.ru^ (advblock.txt: 2758) -.pcads.ru -# ||pcable.ru^ (advblock.txt: 2757) -.pcable.ru -# ||pazt.in^ (advblock.txt: 2756) -.pazt.in -# ||paymonsters.biz^ (advblock.txt: 2755) -.paymonsters.biz -# ||paybrides.org^ (advblock.txt: 2754) -.paybrides.org -# ||payandpray.ru^ (advblock.txt: 2753) -.payandpray.ru -# ||pautina.mobi^ (advblock.txt: 2752) -.pautina.mobi -# ||pastilon.com^ (advblock.txt: 2751) -.pastilon.com -# ||paramedjo.com^ (advblock.txt: 2750) -.paramedjo.com -# ||palandan.com^ (advblock.txt: 2749) -.palandan.com -# ||p2m0001.com^ (advblock.txt: 2748) -.p2m0001.com -# ||oyy.ru^$third-party (advblock.txt: 2747) -.oyy.ru -# ||oxn.gerkon.eu^ (advblock.txt: 2746) -.oxn.gerkon.eu -# ||overridingnichts.in^ (advblock.txt: 2745) -.overridingnichts.in -# ||ovap.in^ (advblock.txt: 2744) -.ovap.in -# ||outwitch.com^ (advblock.txt: 2743) -.outwitch.com -# ||ou2ie.ru^ (advblock.txt: 2742) -.ou2ie.ru -# ||otclick-adv.ru^$third-party (advblock.txt: 2741) -.otclick-adv.ru -# ||orbit.lun.ua^ (advblock.txt: 2740) -.orbit.lun.ua -# ||oqida.ru^$third-party (advblock.txt: 2739) -.oqida.ru -# ||opyavar.ru^ (advblock.txt: 2738) -.opyavar.ru -# ||opresat.ru^ (advblock.txt: 2737) -.opresat.ru -# ||openmace.net^ (advblock.txt: 2736) -.openmace.net -# ||opendone.net^ (advblock.txt: 2735) -.opendone.net -# ||ooredrr.com^ (advblock.txt: 2734) -.ooredrr.com -# ||ontagru.ru^$third-party (advblock.txt: 2733) -.ontagru.ru -# ||onlinerotator.net^ (advblock.txt: 2732) -.onlinerotator.net -# ||onlineredirr.com^ (advblock.txt: 2731) -.onlineredirr.com -# ||online-path.com^ (advblock.txt: 2730) -.online-path.com -# ||oneund.ru^ (advblock.txt: 2729) -.oneund.ru -# ||oneund.com^ (advblock.txt: 2728) -.oneund.com -# ||one-bmedia.ru^ (advblock.txt: 2727) -.one-bmedia.ru -# ||omynews.net^$third-party (advblock.txt: 2726) -.omynews.net -# ||omoby.net^ (advblock.txt: 2725) -.omoby.net -# ||olizyr.com^ (advblock.txt: 2724) -.olizyr.com -# ||oirplane.com^ (advblock.txt: 2723) -.oirplane.com -# ||odinkod.ru^ (advblock.txt: 2722) -.odinkod.ru -# ||od3ai.ru^ (advblock.txt: 2721) -.od3ai.ru -# ||ochze.com^$third-party (advblock.txt: 2720) -.ochze.com -# ||obnale.ru^ (advblock.txt: 2719) -.obnale.ru -# ||obhodsb.com^$third-party (advblock.txt: 2718) -.obhodsb.com -# ||nyyed.com^ (advblock.txt: 2717) -.nyyed.com -# ||nwmum.com^ (advblock.txt: 2716) -.nwmum.com -# ||nvjqm.com^ (advblock.txt: 2715) -.nvjqm.com -# ||numking.com^ (advblock.txt: 2714) -.numking.com -# ||numberia.com^ (advblock.txt: 2713) -.numberia.com -# ||nuigyin.net^ (advblock.txt: 2712) -.nuigyin.net -# ||ntvk1.ru^$third-party (advblock.txt: 2711) -.ntvk1.ru -# ||nrged.com^ (advblock.txt: 2710) -.nrged.com -# ||nostushi.ru^ (advblock.txt: 2709) -.nostushi.ru -# ||noptes.ru^ (advblock.txt: 2708) -.noptes.ru -# ||nonoqcm.net^ (advblock.txt: 2707) -.nonoqcm.net -# ||nolix.ru^ (advblock.txt: 2706) -.nolix.ru -# ||noblok.com^ (advblock.txt: 2705) -.noblok.com -# ||nihewfi.net^ (advblock.txt: 2704) -.nihewfi.net -# ||nigvbyd.net^ (advblock.txt: 2703) -.nigvbyd.net -# ||nickhel.com^$third-party (advblock.txt: 2702) -.nickhel.com -# ||nextclick.com.ua^$third-party (advblock.txt: 2701) -.nextclick.com.ua -# ||newsteaser.ru^ (advblock.txt: 2700) -.newsteaser.ru -# ||newsmarket.pixarea.ru^ (advblock.txt: 2699) -.newsmarket.pixarea.ru -# ||newsanons.ru^$third-party (advblock.txt: 2698) -.newsanons.ru -# ||news-announce.org^ (advblock.txt: 2697) -.news-announce.org -# ||newlixica.com^ (advblock.txt: 2696) -.newlixica.com -# ||newanons.ru^$third-party,script (advblock.txt: 2695) -.newanons.ru -# ||netrotator.net^ (advblock.txt: 2694) -.netrotator.net -# ||nepalon.com^ (advblock.txt: 2693) -.nepalon.com -# ||neotizer.com^ (advblock.txt: 2692) -.neotizer.com -# ||neomion.com^ (advblock.txt: 2691) -.neomion.com -# ||naxerposlan.com^ (advblock.txt: 2690) -.naxerposlan.com -# ||nav-links.com^ (advblock.txt: 2689) -.nav-links.com -# ||nasledstvo.int.ru^ (advblock.txt: 2688) -.nasledstvo.int.ru -# ||naiton.ru^*/lookbanner/ (advblock.txt: 2687) -.naiton.ru/.*/lookbanner/ -# ||n278adserv.com^$third-party (advblock.txt: 2686) -.n278adserv.com -# ||n161adserv.com^$third-party (advblock.txt: 2685) -.n161adserv.com -# ||mytraff.net^$~popup,popup (advblock.txt: 2684) -.mytraff.net -# ||mytizer.com^ (advblock.txt: 2683) -.mytizer.com -# ||mynagor.com^ (advblock.txt: 2682) -.mynagor.com -# ||mycpm.ru^$third-party (advblock.txt: 2681) -.mycpm.ru -# ||myarusel.gpor.ru^$third-party (advblock.txt: 2680) -.myarusel.gpor.ru -# ||myads.ru^ (advblock.txt: 2679) -.myads.ru -# ||mxttrf.com^$third-party (advblock.txt: 2678) -.mxttrf.com -# ||mxpopad.com^ (advblock.txt: 2677) -.mxpopad.com -# ||mxccs.com^$third-party (advblock.txt: 2676) -.mxccs.com -# ||muzomuz.ru^ (advblock.txt: 2675) -.muzomuz.ru -# ||muzokit.ru^ (advblock.txt: 2674) -.muzokit.ru -# ||mutrik.com^$third-party (advblock.txt: 2673) -.mutrik.com -# ||musicmaargarit63.uk.to^ (advblock.txt: 2672) -.musicmaargarit63.uk.to -# ||mukipol.com^ (advblock.txt: 2671) -.mukipol.com -# ||mubra.ru^ (advblock.txt: 2670) -.mubra.ru -# ||msrv.su^$third-party (advblock.txt: 2669) -.msrv.su -# ||mscimg.com^ (advblock.txt: 2668) -.mscimg.com -# ||mrs-twister.ru^$third-party (advblock.txt: 2667) -.mrs-twister.ru -# ||morenews4.net^ (advblock.txt: 2666) -.morenews4.net -# ||morenews3.net^ (advblock.txt: 2665) -.morenews3.net -# ||morenews2.net^ (advblock.txt: 2664) -.morenews2.net -# ||morenews1.net^ (advblock.txt: 2663) -.morenews1.net -# ||moreget.net^ (advblock.txt: 2662) -.moreget.net -# ||more427.net^ (advblock.txt: 2661) -.more427.net -# ||more152.net^ (advblock.txt: 2660) -.more152.net -# ||moonhappy.ru^ (advblock.txt: 2659) -.moonhappy.ru -# ||monox.org/getcode. (advblock.txt: 2658) -.monox.org/getcode\. -# ||moipep.com^$third-party (advblock.txt: 2657) -.moipep.com -# ||modverka.ru^ (advblock.txt: 2656) -.modverka.ru -# ||modelatos.com^ (advblock.txt: 2655) -.modelatos.com -# ||mobyrol.com^ (advblock.txt: 2654) -.mobyrol.com -# ||mobred.net^ (advblock.txt: 2653) -.mobred.net -# ||mobraner.com^ (advblock.txt: 2652) -.mobraner.com -# ||mobnumbers.com^ (advblock.txt: 2651) -.mobnumbers.com -# ||mobitds.ru^$third-party (advblock.txt: 2650) -.mobitds.ru -# ||mobirollru.com^ (advblock.txt: 2649) -.mobirollru.com -# ||mobirollcom.ru^ (advblock.txt: 2648) -.mobirollcom.ru -# ||mobioffers.ru^$third-party (advblock.txt: 2647) -.mobioffers.ru -# ||mobiloba.com^ (advblock.txt: 2646) -.mobiloba.com -# ||mobiledirectors.com^ (advblock.txt: 2645) -.mobiledirectors.com -# ||mobikont.com^ (advblock.txt: 2644) -.mobikont.com -# ||mobidump.com^ (advblock.txt: 2643) -.mobidump.com -# ||mobbober.com^ (advblock.txt: 2642) -.mobbober.com -# ||mobapeople.com^ (advblock.txt: 2641) -.mobapeople.com -# ||mobalert.net^ (advblock.txt: 2640) -.mobalert.net -# ||mob2web.com^ (advblock.txt: 2639) -.mob2web.com -# ||mixadvert.com^$third-party (advblock.txt: 2638) -.mixadvert.com -# ||mirskidok.net^ (advblock.txt: 2637) -.mirskidok.net -# ||miokoo.com^ (advblock.txt: 2636) -.miokoo.com -# ||midlemee.ru^ (advblock.txt: 2635) -.midlemee.ru -# ||microads.ru^ (advblock.txt: 2634) -.microads.ru -# ||mhkx4.ru^ (advblock.txt: 2633) -.mhkx4.ru -# ||mgogo.ru^ (advblock.txt: 2632) -.mgogo.ru -# ||mezima.com^ (advblock.txt: 2631) -.mezima.com -# ||mestmaster.ru^ (advblock.txt: 2630) -.mestmaster.ru -# ||message-site.net^ (advblock.txt: 2629) -.message-site.net -# ||mesopo.ru^ (advblock.txt: 2628) -.mesopo.ru -# ||meow-x.com^ (advblock.txt: 2627) -.meow-x.com -# ||menuse.ru^ (advblock.txt: 2626) -.menuse.ru -# ||mendir.ru^ (advblock.txt: 2625) -.mendir.ru -# ||menato.ru^ (advblock.txt: 2624) -.menato.ru -# ||mementes.com^ (advblock.txt: 2623) -.mementes.com -# ||mekadr.com^ (advblock.txt: 2622) -.mekadr.com -# ||megasliv.com^ (advblock.txt: 2621) -.megasliv.com -# ||megartb.com^ (advblock.txt: 2620) -.megartb.com -# ||megaindex.ru*/banner/ (advblock.txt: 2619) -.megaindex.ru*./(.*/)?banner/ -# ||megactds6.net^ (advblock.txt: 2618) -.megactds6.net -# ||medpiar.ru^ (advblock.txt: 2617) -.medpiar.ru -# ||medigaly.com^ (advblock.txt: 2616) -.medigaly.com -# ||mediaunder.us^$~popup,popup (advblock.txt: 2615) -.mediaunder.us -# ||mediaunder.org^ (advblock.txt: 2614) -.mediaunder.org -# ||mediatoday.ru^$third-party (advblock.txt: 2613) -.mediatoday.ru -# ||mediateas.com^ (advblock.txt: 2612) -.mediateas.com -# ||mediaskyline.ru^$third-party (advblock.txt: 2611) -.mediaskyline.ru -# ||mediarotator.ru^ (advblock.txt: 2610) -.mediarotator.ru -# ||mediarotator.net^ (advblock.txt: 2609) -.mediarotator.net -# ||mediarichcode.ru^ (advblock.txt: 2608) -.mediarichcode.ru -# ||mediarich.ws^ (advblock.txt: 2607) -.mediarich.ws -# ||mediarich.us^ (advblock.txt: 2606) -.mediarich.us -# ||mediarich.ru^ (advblock.txt: 2605) -.mediarich.ru -# ||mediarich.cc^ (advblock.txt: 2604) -.mediarich.cc -# ||mediarich-code.ru^ (advblock.txt: 2603) -.mediarich-code.ru -# ||medianaft.ru^$third-party (advblock.txt: 2602) -.medianaft.ru -# ||medianaft.com^$third-party (advblock.txt: 2601) -.medianaft.com -# ||medialand.ru/code? (advblock.txt: 2600) -.medialand.ru/code\? -# ||mediakadr.ru^$third-party (advblock.txt: 2599) -.mediakadr.ru -# ||mediaip.ru^ (advblock.txt: 2598) -.mediaip.ru -# ||mediadar.ru^ (advblock.txt: 2597) -.mediadar.ru -# ||mediacot.com^ (advblock.txt: 2596) -.mediacot.com -# ||media.adrcdn.com^ (advblock.txt: 2595) -.media.adrcdn.com -# ||media-storage.org^$third-party (advblock.txt: 2594) -.media-storage.org -# ||media-rotator.net^ (advblock.txt: 2593) -.media-rotator.net -# ||media-rotation.net^ (advblock.txt: 2592) -.media-rotation.net -# ||media-rich.ru^ (advblock.txt: 2591) -.media-rich.ru -# ||media-kod.net^ (advblock.txt: 2590) -.media-kod.net -# ||medads.ru^$third-party (advblock.txt: 2589) -.medads.ru -# ||med22iwqeq.ru^ (advblock.txt: 2588) -.med22iwqeq.ru -# ||mdlo324fsd.ru^ (advblock.txt: 2587) -.mdlo324fsd.ru -# ||mdeih.com^$third-party (advblock.txt: 2586) -.mdeih.com -# ||mb.vesti.ru^ (advblock.txt: 2585) -.mb.vesti.ru -# ||mb.rian.ru^ (advblock.txt: 2584) -.mb.rian.ru -# ||mb.interfax.ru^ (advblock.txt: 2583) -.mb.interfax.ru -# ||mb.akado.ru^ (advblock.txt: 2582) -.mb.akado.ru -# ||mayvbm.com^$third-party (advblock.txt: 2581) -.mayvbm.com -# ||maxtraff.com^$~popup,popup (advblock.txt: 2580) -.maxtraff.com -# ||maxforta.com^ (advblock.txt: 2579) -.maxforta.com -# ||mateast.com^ (advblock.txt: 2578) -.mateast.com -# ||masudel.com^ (advblock.txt: 2577) -.masudel.com -# ||masterdomain24.com^$third-party (advblock.txt: 2576) -.masterdomain24.com -# ||masterconvert.ru^ (advblock.txt: 2575) -.masterconvert.ru -# ||martakava.ru^ (advblock.txt: 2574) -.martakava.ru -# ||markhab.ru^ (advblock.txt: 2573) -.markhab.ru -# ||manuelu.com^ (advblock.txt: 2572) -.manuelu.com -# ||managedcollapsed.in^ (advblock.txt: 2571) -.managedcollapsed.in -# ||mamypos.com^ (advblock.txt: 2570) -.mamypos.com -# ||mainclc.com^ (advblock.txt: 2569) -.mainclc.com -# ||magicanfy.com^ (advblock.txt: 2568) -.magicanfy.com -# ||madnet.ru^$third-party (advblock.txt: 2567) -.madnet.ru -# ||mabirol.com^ (advblock.txt: 2566) -.mabirol.com -# ||ma-static.ru^$third-party (advblock.txt: 2565) -.ma-static.ru -# ||lydiz.com^ (advblock.txt: 2564) -.lydiz.com -# ||lycosy.com^ (advblock.txt: 2563) -.lycosy.com -# ||lycosu.com^ (advblock.txt: 2562) -.lycosu.com -# ||lycodz.com^ (advblock.txt: 2561) -.lycodz.com -# ||lvuic.com^$third-party (advblock.txt: 2560) -.lvuic.com -# ||lvkwz.com^ (advblock.txt: 2559) -.lvkwz.com -# ||luxtraffic.ru^ (advblock.txt: 2558) -.luxtraffic.ru -# ||luxads.net^$third-party (advblock.txt: 2557) -.luxads.net -# ||luredac.com^ (advblock.txt: 2556) -.luredac.com -# ||luisardo.com^ (advblock.txt: 2555) -.luisardo.com -# ||lugiy.ru^ (advblock.txt: 2554) -.lugiy.ru -# ||luckysearcher.ru^ (advblock.txt: 2553) -.luckysearcher.ru -# ||luckyade.ru^ (advblock.txt: 2552) -.luckyade.ru -# ||lstay.com^ (advblock.txt: 2551) -.lstay.com -# ||lresoza.ru^$third-party (advblock.txt: 2550) -.lresoza.ru -# ||lotomoney.biz^ (advblock.txt: 2549) -.lotomoney.biz -# ||lopytol.com^ (advblock.txt: 2548) -.lopytol.com -# ||loponop.com^ (advblock.txt: 2547) -.loponop.com -# ||lopitus.com^ (advblock.txt: 2546) -.lopitus.com -# ||lookrtb.com^ (advblock.txt: 2545) -.lookrtb.com -# ||looker9.ru^ (advblock.txt: 2544) -.looker9.ru -# ||look4file.ru^ (advblock.txt: 2543) -.look4file.ru -# ||loneday.com^ (advblock.txt: 2542) -.loneday.com -# ||lomtor.com^$third-party (advblock.txt: 2541) -.lomtor.com -# ||locoday.com^ (advblock.txt: 2540) -.locoday.com -# ||locandito.com^ (advblock.txt: 2539) -.locandito.com -# ||lmcuba.us^ (advblock.txt: 2538) -.lmcuba.us -# ||ljteas.com^ (advblock.txt: 2537) -.ljteas.com -# ||livingy.com^ (advblock.txt: 2536) -.livingy.com -# ||livesurf.ru^$third-party (advblock.txt: 2535) -.livesurf.ru -# ||livea.ru^ (advblock.txt: 2534) -.livea.ru -# ||live-advert.net^ (advblock.txt: 2533) -.live-advert.net -# ||litiumo.com^ (advblock.txt: 2532) -.litiumo.com -# ||listof.mobi^ (advblock.txt: 2531) -.listof.mobi -# ||lisamobile.ru^ (advblock.txt: 2530) -.lisamobile.ru -# ||liolexina.com^ (advblock.txt: 2529) -.liolexina.com -# ||linkwall.ru^$third-party (advblock.txt: 2528) -.linkwall.ru -# ||linkupper.ru^ (advblock.txt: 2527) -.linkupper.ru -# ||linkunder.ru^$third-party (advblock.txt: 2526) -.linkunder.ru -# ||linksviewer2013.com^ (advblock.txt: 2525) -.linksviewer2013.com -# ||linkslot.ru^$third-party (advblock.txt: 2524) -.linkslot.ru -# ||links-wm.ru^$third-party (advblock.txt: 2523) -.links-wm.ru -# ||linkpeoples.com^ (advblock.txt: 2522) -.linkpeoples.com -# ||linkodir.ru^ (advblock.txt: 2521) -.linkodir.ru -# ||linkerlink.ru^ (advblock.txt: 2520) -.linkerlink.ru -# ||linkerfast.ru^ (advblock.txt: 2519) -.linkerfast.ru -# ||linicom.com^$third-party (advblock.txt: 2518) -.linicom.com -# ||limonadsources.ru^ (advblock.txt: 2517) -.limonadsources.ru -# ||limo20.ru^$third-party (advblock.txt: 2516) -.limo20.ru -# ||likondok.com^ (advblock.txt: 2515) -.likondok.com -# ||liendans.com^ (advblock.txt: 2514) -.liendans.com -# ||lidicando.com^ (advblock.txt: 2513) -.lidicando.com -# ||lidetds.net^ (advblock.txt: 2512) -.lidetds.net -# ||lexament.com^ (advblock.txt: 2511) -.lexament.com -# ||levrico.com^ (advblock.txt: 2510) -.levrico.com -# ||letmelook.net^$third-party (advblock.txt: 2509) -.letmelook.net -# ||leruanmarket.ru^ (advblock.txt: 2508) -.leruanmarket.ru -# ||lequ6.ru^ (advblock.txt: 2507) -.lequ6.ru -# ||lepubs.com^$third-party (advblock.txt: 2506) -.lepubs.com -# ||leforma.com^ (advblock.txt: 2505) -.leforma.com -# ||leashac.com^ (advblock.txt: 2504) -.leashac.com -# ||leadzu.com^$third-party (advblock.txt: 2503) -.leadzu.com -# ||lcads.ru^ (advblock.txt: 2502) -.lcads.ru -# ||laughtill.net^ (advblock.txt: 2501) -.laughtill.net -# ||largelydi.com^ (advblock.txt: 2500) -.largelydi.com -# ||lareson.com^ (advblock.txt: 2499) -.lareson.com -# ||lapumo.com^$third-party (advblock.txt: 2498) -.lapumo.com -# ||lapeduzis.org^ (advblock.txt: 2497) -.lapeduzis.org -# ||langueur.com^ (advblock.txt: 2496) -.langueur.com -# ||ladytizer.com^ (advblock.txt: 2495) -.ladytizer.com -# ||ladycoin.ru^ (advblock.txt: 2494) -.ladycoin.ru -# ||ladyclicks8.ru^ (advblock.txt: 2493) -.ladyclicks8.ru -# ||ladyclicks2.ru^ (advblock.txt: 2492) -.ladyclicks2.ru -# ||ladyclicks.ru^ (advblock.txt: 2491) -.ladyclicks.ru -# ||ladycash.ru^ (advblock.txt: 2490) -.ladycash.ru -# ||ladyads.ru^$third-party (advblock.txt: 2489) -.ladyads.ru -# ||lady-clicks.ru^ (advblock.txt: 2488) -.lady-clicks.ru -# ||ladiesnadosuge.com^$third-party (advblock.txt: 2487) -.ladiesnadosuge.com -# ||lachest.com^ (advblock.txt: 2486) -.lachest.com -# ||lachee.com^ (advblock.txt: 2485) -.lachee.com -# ||lacest.com^ (advblock.txt: 2484) -.lacest.com -# ||lacemme.com^ (advblock.txt: 2483) -.lacemme.com -# ||lacembre.com^ (advblock.txt: 2482) -.lacembre.com -# ||labadon.com^ (advblock.txt: 2481) -.labadon.com -# ||kvvadrat.net^ (advblock.txt: 2480) -.kvvadrat.net -# ||kvihit.com^ (advblock.txt: 2479) -.kvihit.com -# ||kuveres.com^$third-party (advblock.txt: 2478) -.kuveres.com -# ||kupivip.ru^$third-party (advblock.txt: 2477) -.kupivip.ru -# ||krab-studio.ru^ (advblock.txt: 2476) -.krab-studio.ru -# ||koviovius.com^ (advblock.txt: 2475) -.koviovius.com -# ||korenizsemi.net^ (advblock.txt: 2474) -.korenizsemi.net -# ||koluty.com^ (advblock.txt: 2473) -.koluty.com -# ||kolitter.com^ (advblock.txt: 2472) -.kolitter.com -# ||kolites.com^ (advblock.txt: 2471) -.kolites.com -# ||koliser.com^ (advblock.txt: 2470) -.koliser.com -# ||kohx3.ru^ (advblock.txt: 2469) -.kohx3.ru -# ||koe-dv.net^ (advblock.txt: 2468) -.koe-dv.net -# ||knewy.com^ (advblock.txt: 2467) -.knewy.com -# ||knc.lv^$third-party (advblock.txt: 2466) -.knc.lv -# ||kma1.biz^ (advblock.txt: 2465) -.kma1.biz -# ||klyuchev.in.ua^ (advblock.txt: 2464) -.klyuchev.in.ua -# ||kjgh5o.com^ (advblock.txt: 2463) -.kjgh5o.com -# ||kiworeequnasaw.info^ (advblock.txt: 2462) -.kiworeequnasaw.info -# ||kitopr.com^ (advblock.txt: 2461) -.kitopr.com -# ||kistured.com^ (advblock.txt: 2460) -.kistured.com -# ||kisakuku.org^ (advblock.txt: 2459) -.kisakuku.org -# ||kinopromobase2.ru^ (advblock.txt: 2458) -.kinopromobase2.ru -# ||kinopromobase.ru^ (advblock.txt: 2457) -.kinopromobase.ru -# ||kinokayf.com^ (advblock.txt: 2456) -.kinokayf.com -# ||kinoget.tv^ (advblock.txt: 2455) -.kinoget.tv -# ||kin0.biz^$third-party (advblock.txt: 2454) -.kin0.biz -# ||kimus.ru^ (advblock.txt: 2453) -.kimus.ru -# ||kadavara.com^ (advblock.txt: 2452) -.kadavara.com -# ||kadanoda.ru^ (advblock.txt: 2451) -.kadanoda.ru -# ||kadam.net^$third-party (advblock.txt: 2450) -.kadam.net -# ||jxrhjcb.biz^ (advblock.txt: 2449) -.jxrhjcb.biz -# ||jutulep.com^ (advblock.txt: 2448) -.jutulep.com -# ||jump-wap.com^ (advblock.txt: 2447) -.jump-wap.com -# ||jsutils.net^ (advblock.txt: 2446) -.jsutils.net -# ||jsc.tovarro.com^ (advblock.txt: 2445) -.jsc.tovarro.com -# ||jrfced.com^ (advblock.txt: 2444) -.jrfced.com -# ||jpqgs.com^$third-party (advblock.txt: 2443) -.jpqgs.com -# ||jorjfix.ru^ (advblock.txt: 2442) -.jorjfix.ru -# ||jkolp.com^ (advblock.txt: 2441) -.jkolp.com -# ||jjabr.com^ (advblock.txt: 2440) -.jjabr.com -# ||jfveak.com^ (advblock.txt: 2439) -.jfveak.com -# ||jfduv7.com^ (advblock.txt: 2438) -.jfduv7.com -# ||jbugk.com^ (advblock.txt: 2437) -.jbugk.com -# ||jadedi.com^ (advblock.txt: 2436) -.jadedi.com -# ||ixtyted.ru^ (advblock.txt: 2435) -.ixtyted.ru -# ||ivsiveg.ru^$third-party (advblock.txt: 2434) -.ivsiveg.ru -# ||ivantat.com^ (advblock.txt: 2433) -.ivantat.com -# ||ivanie.com^ (advblock.txt: 2432) -.ivanie.com -# ||ivances.com^ (advblock.txt: 2431) -.ivances.com -# ||ivancept.com^ (advblock.txt: 2430) -.ivancept.com -# ||itpodol.ru^$third-party,popup (advblock.txt: 2429) -.itpodol.ru -# ||istokiku.ru^ (advblock.txt: 2428) -.istokiku.ru -# ||islamclick.ru^ (advblock.txt: 2427) -.islamclick.ru -# ||iredirr.com^ (advblock.txt: 2426) -.iredirr.com -# ||ipmarte.ru^ (advblock.txt: 2425) -.ipmarte.ru -# ||intimcity.net^ (advblock.txt: 2424) -.intimcity.net -# ||intimcity.com^$third-party (advblock.txt: 2423) -.intimcity.com -# ||intim40.com^ (advblock.txt: 2422) -.intim40.com -# ||interieu.com^ (advblock.txt: 2421) -.interieu.com -# ||intelligencehost.net^$third-party (advblock.txt: 2420) -.intelligencehost.net -# ||inferalton.com^ (advblock.txt: 2419) -.inferalton.com -# ||inetrek.com^$third-party (advblock.txt: 2418) -.inetrek.com -# ||indcoest.com^$third-party (advblock.txt: 2417) -.indcoest.com -# ||inctivee.com^ (advblock.txt: 2416) -.inctivee.com -# ||incielle.com^ (advblock.txt: 2415) -.incielle.com -# ||impromot.com^ (advblock.txt: 2414) -.impromot.com -# ||imparfum.com^ (advblock.txt: 2413) -.imparfum.com -# ||impannon.com^ (advblock.txt: 2412) -.impannon.com -# ||imamby.ru^ (advblock.txt: 2411) -.imamby.ru -# ||image325.ru^$third-party (advblock.txt: 2410) -.image325.ru -# ||imagans.com^ (advblock.txt: 2409) -.imagans.com -# ||im9-tub.com^ (advblock.txt: 2408) -.im9-tub.com -# ||im8-tub.com^ (advblock.txt: 2407) -.im8-tub.com -# ||im7-tub.com^ (advblock.txt: 2406) -.im7-tub.com -# ||im6-tub.com^ (advblock.txt: 2405) -.im6-tub.com -# ||im5-tub.com^ (advblock.txt: 2404) -.im5-tub.com -# ||im4-tub.com^ (advblock.txt: 2403) -.im4-tub.com -# ||im3-tub.com^ (advblock.txt: 2402) -.im3-tub.com -# ||im2-tub.com^ (advblock.txt: 2401) -.im2-tub.com -# ||im1-tub.com^ (advblock.txt: 2400) -.im1-tub.com -# ||iluzur.com^ (advblock.txt: 2399) -.iluzur.com -# ||ilopotun.com^ (advblock.txt: 2398) -.ilopotun.com -# ||illiap.com^ (advblock.txt: 2397) -.illiap.com -# ||illiages.com^ (advblock.txt: 2396) -.illiages.com -# ||illiage.com^ (advblock.txt: 2395) -.illiage.com -# ||ileads.ru^$third-party (advblock.txt: 2394) -.ileads.ru -# ||ikolop.com^ (advblock.txt: 2393) -.ikolop.com -# ||ikk2gh.eu^ (advblock.txt: 2392) -.ikk2gh.eu -# ||ikersont.com^ (advblock.txt: 2391) -.ikersont.com -# ||ihlasbe.ru^ (advblock.txt: 2390) -.ihlasbe.ru -# ||icqadvert.net^ (advblock.txt: 2389) -.icqadvert.net -# ||icqadve.net^ (advblock.txt: 2388) -.icqadve.net -# ||icqadv.net^ (advblock.txt: 2387) -.icqadv.net -# ||icqad018.net^ (advblock.txt: 2386) -.icqad018.net -# ||icqad017.net^ (advblock.txt: 2385) -.icqad017.net -# ||icqad016.net^ (advblock.txt: 2384) -.icqad016.net -# ||icqad015.net^ (advblock.txt: 2383) -.icqad015.net -# ||icqad014.net^ (advblock.txt: 2382) -.icqad014.net -# ||icqad013.net^ (advblock.txt: 2381) -.icqad013.net -# ||icqad012.net^ (advblock.txt: 2380) -.icqad012.net -# ||icqad011.net^ (advblock.txt: 2379) -.icqad011.net -# ||icqad010.net^ (advblock.txt: 2378) -.icqad010.net -# ||icqad009.net^ (advblock.txt: 2377) -.icqad009.net -# ||icqad008.net^ (advblock.txt: 2376) -.icqad008.net -# ||icqad007.net^ (advblock.txt: 2375) -.icqad007.net -# ||icqad006.net^ (advblock.txt: 2374) -.icqad006.net -# ||icqad005.net^ (advblock.txt: 2373) -.icqad005.net -# ||icqad004.net^ (advblock.txt: 2372) -.icqad004.net -# ||icqad003.net^ (advblock.txt: 2371) -.icqad003.net -# ||icqad002.net^ (advblock.txt: 2370) -.icqad002.net -# ||icqad001.net^ (advblock.txt: 2369) -.icqad001.net -# ||iclckk.com^ (advblock.txt: 2368) -.iclckk.com -# ||iberacon.com^ (advblock.txt: 2367) -.iberacon.com -# ||iadv.biz^ (advblock.txt: 2366) -.iadv.biz -# ||i-vengo.com^$third-party (advblock.txt: 2365) -.i-vengo.com -# ||i-adv.biz^ (advblock.txt: 2364) -.i-adv.biz -# ||hyndir.com^$third-party (advblock.txt: 2363) -.hyndir.com -# ||humanredirect.ru^ (advblock.txt: 2362) -.humanredirect.ru -# ||hugedi.com^ (advblock.txt: 2361) -.hugedi.com -# ||houmekredit.ru^ (advblock.txt: 2360) -.houmekredit.ru -# ||hopedac.com^ (advblock.txt: 2359) -.hopedac.com -# ||hommunit.com^ (advblock.txt: 2358) -.hommunit.com -# ||hommisse.com^ (advblock.txt: 2357) -.hommisse.com -# ||holysts.com^ (advblock.txt: 2356) -.holysts.com -# ||hoilop.com^ (advblock.txt: 2355) -.hoilop.com -# ||hnixr.com^ (advblock.txt: 2354) -.hnixr.com -# ||hkik.ru^ (advblock.txt: 2353) -.hkik.ru -# ||hjiss.com^ (advblock.txt: 2352) -.hjiss.com -# ||hittoadv.com^ (advblock.txt: 2351) -.hittoadv.com -# ||hit-star.ru^ (advblock.txt: 2350) -.hit-star.ru -# ||highlightingalive.in^ (advblock.txt: 2349) -.highlightingalive.in -# ||hghit.com^$third-party (advblock.txt: 2348) -.hghit.com -# ||hgdat.com^$third-party (advblock.txt: 2347) -.hgdat.com -# ||heelwork.com^ (advblock.txt: 2346) -.heelwork.com -# ||head-gshame.in^ (advblock.txt: 2345) -.head-gshame.in -# ||hay-borsa.ru^ (advblock.txt: 2344) -.hay-borsa.ru -# ||hannist.com^ (advblock.txt: 2343) -.hannist.com -# ||hamphlete.com^ (advblock.txt: 2342) -.hamphlete.com -# ||hadoman.net^ (advblock.txt: 2341) -.hadoman.net -# ||h3a.t.r.vpath.net^ (advblock.txt: 2340) -.h3a.t.r.vpath.net -# ||guktuti.ru^$third-party (advblock.txt: 2339) -.guktuti.ru -# ||gueurs.com^ (advblock.txt: 2338) -.gueurs.com -# ||gueur.com^ (advblock.txt: 2337) -.gueur.com -# ||grteab.com^ (advblock.txt: 2336) -.grteab.com -# ||grt02.org^ (advblock.txt: 2335) -.grt02.org -# ||grofku.com^$third-party (advblock.txt: 2334) -.grofku.com -# ||gredinatib.org^ (advblock.txt: 2333) -.gredinatib.org -# ||gredinatib.biz^ (advblock.txt: 2332) -.gredinatib.biz -# ||grandmediatizer.com^ (advblock.txt: 2331) -.grandmediatizer.com -# ||grainac.com^ (advblock.txt: 2330) -.grainac.com -# ||gotriki.com^$third-party (advblock.txt: 2329) -.gotriki.com -# ||gotoredr.com^ (advblock.txt: 2328) -.gotoredr.com -# ||goossb.com^ (advblock.txt: 2327) -.goossb.com -# ||googlsyndication.com^ (advblock.txt: 2326) -.googlsyndication.com -# ||goodlooknews.net^$third-party (advblock.txt: 2325) -.goodlooknews.net -# ||good.win-yagd.ru^ (advblock.txt: 2324) -.good.win-yagd.ru -# ||good-traf.ru^ (advblock.txt: 2323) -.good-traf.ru -# ||gonews1.net^ (advblock.txt: 2322) -.gonews1.net -# ||gokliks.ru^$~popup,popup (advblock.txt: 2321) -.gokliks.ru -# ||go7media.ru^ (advblock.txt: 2320) -.go7media.ru -# ||go.unas.ru^ (advblock.txt: 2319) -.go.unas.ru -# ||go.adjika.net^ (advblock.txt: 2317) -.go.adjika.net -# ||gmelvi.ru^ (advblock.txt: 2316) -.gmelvi.ru -# ||glue-length.biz^ (advblock.txt: 2315) -.glue-length.biz -# ||glordd.com^ (advblock.txt: 2314) -.glordd.com -# ||globeac.com^ (advblock.txt: 2313) -.globeac.com -# ||globalteaser.ru^ (advblock.txt: 2312) -.globalteaser.ru -# ||glavrich.com^ (advblock.txt: 2311) -.glavrich.com -# ||glammor.ru^$third-party (advblock.txt: 2310) -.glammor.ru -# ||gjslm.com^ (advblock.txt: 2309) -.gjslm.com -# ||gizenon.ru^$third-party (advblock.txt: 2308) -.gizenon.ru -# ||girlz42night.biz^ (advblock.txt: 2307) -.girlz42night.biz -# ||giotyo.com^ (advblock.txt: 2306) -.giotyo.com -# ||giosany.com^ (advblock.txt: 2305) -.giosany.com -# ||giokole.com^ (advblock.txt: 2304) -.giokole.com -# ||gingardo.com^ (advblock.txt: 2303) -.gingardo.com -# ||ghaires.com^ (advblock.txt: 2302) -.ghaires.com -# ||getuplinks.ru^$third-party (advblock.txt: 2301) -.getuplinks.ru -# ||get-hit.ru^$third-party (advblock.txt: 2300) -.get-hit.ru -# ||gdsln.ru^$third-party (advblock.txt: 2299) -.gdsln.ru -# ||gddrio.com^ (advblock.txt: 2298) -.gddrio.com -# ||gawxf.com^$third-party (advblock.txt: 2297) -.gawxf.com -# ||gatgirl.com^ (advblock.txt: 2296) -.gatgirl.com -# ||gateway-04.com^ (advblock.txt: 2295) -.gateway-04.com -# ||gateway-03.com^ (advblock.txt: 2294) -.gateway-03.com -# ||gateway-02.com^ (advblock.txt: 2293) -.gateway-02.com -# ||gameleads.ru^$third-party (advblock.txt: 2292) -.gameleads.ru -# ||gameadnet.ru^ (advblock.txt: 2291) -.gameadnet.ru -# ||game-tester.ru^ (advblock.txt: 2290) -.game-tester.ru -# ||gainclick.co^ (advblock.txt: 2289) -.gainclick.co -# ||gainclick.biz^ (advblock.txt: 2288) -.gainclick.biz -# ||gagnifie.com^ (advblock.txt: 2287) -.gagnifie.com -# ||fyrafi.ru^ (advblock.txt: 2286) -.fyrafi.ru -# ||fxhoog.com^ (advblock.txt: 2285) -.fxhoog.com -# ||fulldl.net^ (advblock.txt: 2284) -.fulldl.net -# ||fufko.com^$third-party (advblock.txt: 2283) -.fufko.com -# ||fstredirr.com^ (advblock.txt: 2282) -.fstredirr.com -# ||frmsafe.com^ (advblock.txt: 2281) -.frmsafe.com -# ||freddyman.com^ (advblock.txt: 2280) -.freddyman.com -# ||fpmef.com^ (advblock.txt: 2279) -.fpmef.com -# ||four8city.in^ (advblock.txt: 2278) -.four8city.in -# ||foundtr.com^ (advblock.txt: 2277) -.foundtr.com -# ||fotrento.com^$third-party (advblock.txt: 2276) -.fotrento.com -# ||fotooplata.ru^$third-party,script (advblock.txt: 2275) -.fotooplata.ru -# ||fortuka.com^$third-party (advblock.txt: 2274) -.fortuka.com -# ||fobise.ru^$third-party (advblock.txt: 2273) -.fobise.ru -# ||fmusive.ru^ (advblock.txt: 2272) -.fmusive.ru -# ||flushmviolent.org^ (advblock.txt: 2271) -.flushmviolent.org -# ||flashteaser.com^ (advblock.txt: 2270) -.flashteaser.com -# ||flascom.com^ (advblock.txt: 2269) -.flascom.com -# ||fkhkjhj.biz^ (advblock.txt: 2268) -.fkhkjhj.biz -# ||fixzila.com^ (advblock.txt: 2267) -.fixzila.com -# ||fityjhnl.biz^ (advblock.txt: 2266) -.fityjhnl.biz -# ||fitbut.ru^ (advblock.txt: 2265) -.fitbut.ru -# ||fireb2.com^ (advblock.txt: 2264) -.fireb2.com -# ||fireb1.com^ (advblock.txt: 2263) -.fireb1.com -# ||fingoty.com^$third-party (advblock.txt: 2262) -.fingoty.com -# ||findpre.net^ (advblock.txt: 2261) -.findpre.net -# ||findfor.net^ (advblock.txt: 2260) -.findfor.net -# ||fetalli.com^ (advblock.txt: 2259) -.fetalli.com -# ||fdrschv.ru^ (advblock.txt: 2258) -.fdrschv.ru -# ||fdgeen.com^ (advblock.txt: 2257) -.fdgeen.com -# ||faxso.ru^ (advblock.txt: 2256) -.faxso.ru -# ||fastsearcher.ru^ (advblock.txt: 2255) -.fastsearcher.ru -# ||farecnop.loftlm.ru^ (advblock.txt: 2254) -.farecnop.loftlm.ru -# ||faggrim.com^ (advblock.txt: 2253) -.faggrim.com -# ||fafggde.net^ (advblock.txt: 2252) -.fafggde.net -# ||faddgetdo.ru^$third-party (advblock.txt: 2251) -.faddgetdo.ru -# ||eznagi.ru^ (advblock.txt: 2250) -.eznagi.ru -# ||ezaste.ru^$third-party (advblock.txt: 2249) -.ezaste.ru -# ||extronext.ru^ (advblock.txt: 2248) -.extronext.ru -# ||exchangenews.ru^$third-party (advblock.txt: 2247) -.exchangenews.ru -# ||excalatom.com^ (advblock.txt: 2246) -.excalatom.com -# ||evsembu.com^ (advblock.txt: 2245) -.evsembu.com -# ||evendividualita.com^ (advblock.txt: 2244) -.evendividualita.com -# ||etranslater1.com^ (advblock.txt: 2243) -.etranslater1.com -# ||et-code.ru^$third-party (advblock.txt: 2242) -.et-code.ru -# ||estiques.com^ (advblock.txt: 2241) -.estiques.com -# ||ervtm9lrdj.com^ (advblock.txt: 2240) -.ervtm9lrdj.com -# ||erpito.ru^ (advblock.txt: 2239) -.erpito.ru -# ||eroticahd.org^$third-party (advblock.txt: 2238) -.eroticahd.org -# ||epsexda.ru^ (advblock.txt: 2236) -.epsexda.ru -# ||epoquels.com^ (advblock.txt: 2235) -.epoquels.com -# ||entimee.com^ (advblock.txt: 2234) -.entimee.com -# ||ensepare.com^ (advblock.txt: 2233) -.ensepare.com -# ||enkonyus.ru^ (advblock.txt: 2232) -.enkonyus.ru -# ||engageya.com^$third-party (advblock.txt: 2231) -.engageya.com -# ||enfreine.com^ (advblock.txt: 2230) -.enfreine.com -# ||emisses.com^ (advblock.txt: 2229) -.emisses.com -# ||emierete.com^ (advblock.txt: 2228) -.emierete.com -# ||elnpe.com^ (advblock.txt: 2227) -.elnpe.com -# ||elkagoda.ru^$third-party (advblock.txt: 2226) -.elkagoda.ru -# ||eijwpxc.net^ (advblock.txt: 2225) -.eijwpxc.net -# ||ei0mwcgu.com^ (advblock.txt: 2224) -.ei0mwcgu.com -# ||egpofy.com^$third-party (advblock.txt: 2223) -.egpofy.com -# ||ecortb.com^$third-party (advblock.txt: 2222) -.ecortb.com -# ||econdus.com^ (advblock.txt: 2221) -.econdus.com -# ||echobanners.net^ (advblock.txt: 2220) -.echobanners.net -# ||ebloren.ru^$third-party (advblock.txt: 2219) -.ebloren.ru -# ||dz01rk.com^ (advblock.txt: 2218) -.dz01rk.com -# ||dyzha.com^$third-party (advblock.txt: 2217) -.dyzha.com -# ||dyrevnya.ru^ (advblock.txt: 2216) -.dyrevnya.ru -# ||dverser.ru^ (advblock.txt: 2215) -.dverser.ru -# ||dutrmedi.ru^ (advblock.txt: 2214) -.dutrmedi.ru -# ||dunta.ru^ (advblock.txt: 2213) -.dunta.ru -# ||dumedia.ru^$third-party (advblock.txt: 2212) -.dumedia.ru -# ||drtraff.ru^$third-party (advblock.txt: 2211) -.drtraff.ru -# ||drontres.com^ (advblock.txt: 2210) -.drontres.com -# ||drlyy.com^ (advblock.txt: 2209) -.drlyy.com -# ||dreampartners.ru^ (advblock.txt: 2208) -.dreampartners.ru -# ||douteure.com^ (advblock.txt: 2207) -.douteure.com -# ||dosugcz.net^ (advblock.txt: 2206) -.dosugcz.net -# ||dosugcz.in^ (advblock.txt: 2205) -.dosugcz.in -# ||dosug.cz^$third-party (advblock.txt: 2204) -.dosug.cz -# ||dornut.com^$third-party (advblock.txt: 2203) -.dornut.com -# ||dopikas.com^ (advblock.txt: 2202) -.dopikas.com -# ||donalise.com^ (advblock.txt: 2201) -.donalise.com -# ||dominasy.com^ (advblock.txt: 2200) -.dominasy.com -# ||dominas.femdomina.ru^ (advblock.txt: 2199) -.dominas.femdomina.ru -# ||domertb.com^ (advblock.txt: 2198) -.domertb.com -# ||domah.ru^ (advblock.txt: 2197) -.domah.ru -# ||dodrek.com^$third-party (advblock.txt: 2196) -.dodrek.com -# ||dlyatizera.ru^ (advblock.txt: 2195) -.dlyatizera.ru -# ||dkemeli.ru^ (advblock.txt: 2194) -.dkemeli.ru -# ||dizzyac.com^ (advblock.txt: 2193) -.dizzyac.com -# ||disterme.com^ (advblock.txt: 2192) -.disterme.com -# ||directtogo.ru^$third-party (advblock.txt: 2191) -.directtogo.ru -# ||directprofit.ru^ (advblock.txt: 2190) -.directprofit.ru -# ||directerp.ru^ (advblock.txt: 2189) -.directerp.ru -# ||dimprive.com^ (advblock.txt: 2188) -.dimprive.com -# ||digitalaccess.ru^*&rnd=*. (advblock.txt: 2187) -.digitalaccess.ru/.*&rnd=.*\. -# ||dificaux.com^ (advblock.txt: 2186) -.dificaux.com -# ||dictus.biz^$third-party (advblock.txt: 2185) -.dictus.biz -# ||dfthplx.net^ (advblock.txt: 2184) -.dfthplx.net -# ||df09rp0cm6rp6.cloudfront.net^ (advblock.txt: 2183) -.df09rp0cm6rp6.cloudfront.net -# ||devilclicks.com^ (advblock.txt: 2182) -.devilclicks.com -# ||devaxi.org^ (advblock.txt: 2181) -.devaxi.org -# ||dev4enki.com^ (advblock.txt: 2180) -.dev4enki.com -# ||detdove.ru^ (advblock.txt: 2179) -.detdove.ru -# ||detaires.com^ (advblock.txt: 2178) -.detaires.com -# ||designedy.com^ (advblock.txt: 2177) -.designedy.com -# ||derploime.com^ (advblock.txt: 2176) -.derploime.com -# ||demilith.com^ (advblock.txt: 2175) -.demilith.com -# ||defiques.com^ (advblock.txt: 2174) -.defiques.com -# ||ddomb.com^ (advblock.txt: 2173) -.ddomb.com -# ||davarello.com^ (advblock.txt: 2172) -.davarello.com -# ||datropy.com^ (advblock.txt: 2171) -.datropy.com -# ||datelycu.com^ (advblock.txt: 2170) -.datelycu.com -# ||datariver.ru^$third-party (advblock.txt: 2169) -.datariver.ru -# ||dartimyl.com^ (advblock.txt: 2168) -.dartimyl.com -# ||daredac.com^ (advblock.txt: 2167) -.daredac.com -# ||dafficha.com^ (advblock.txt: 2166) -.dafficha.com -# ||daffices.com^ (advblock.txt: 2165) -.daffices.com -# ||dafferes.com^ (advblock.txt: 2164) -.dafferes.com -# ||daffecte.com^ (advblock.txt: 2163) -.daffecte.com -# ||daccroit.com^ (advblock.txt: 2162) -.daccroit.com -# ||daccrois.com^ (advblock.txt: 2161) -.daccrois.com -# ||daccroi.com^ (advblock.txt: 2160) -.daccroi.com -# ||d3pb9zw46rm6zr.cloudfront.net^ (advblock.txt: 2159) -.d3pb9zw46rm6zr.cloudfront.net -# ||d2ue9k1rhsumed.cloudfront.net^$third-party (advblock.txt: 2158) -.d2ue9k1rhsumed.cloudfront.net -# ||d27jk9dqha8met.cloudfront.net^ (advblock.txt: 2157) -.d27jk9dqha8met.cloudfront.net -# ||d-agency.net^$third-party (advblock.txt: 2156) -.d-agency.net -# ||cyhtr.com^ (advblock.txt: 2155) -.cyhtr.com -# ||cxmolk.com^ (advblock.txt: 2154) -.cxmolk.com -# ||cwh7tdf.com^ (advblock.txt: 2153) -.cwh7tdf.com -# ||cuioj.com^$third-party (advblock.txt: 2152) -.cuioj.com -# ||cufcw.com^$third-party (advblock.txt: 2151) -.cufcw.com -# ||cubo.ru^$third-party (advblock.txt: 2150) -.cubo.ru -# ||ctyzd.com^$third-party (advblock.txt: 2149) -.ctyzd.com -# ||ctrmanager.com^$third-party (advblock.txt: 2148) -.ctrmanager.com -# ||crpoy.com^ (advblock.txt: 2147) -.crpoy.com -# ||creofun.com^$third-party (advblock.txt: 2146) -.creofun.com -# ||creofive.com^$third-party (advblock.txt: 2145) -.creofive.com -# ||crateac.com^ (advblock.txt: 2144) -.crateac.com -# ||crackac.com^ (advblock.txt: 2143) -.crackac.com -# ||cppgf.com^ (advblock.txt: 2142) -.cppgf.com -# ||cpa600.ru^ (advblock.txt: 2141) -.cpa600.ru -# ||cpa6.ru^ (advblock.txt: 2140) -.cpa6.ru -# ||cpa-system.ru^ (advblock.txt: 2139) -.cpa-system.ru -# ||copercato.com^ (advblock.txt: 2138) -.copercato.com -# ||cooleightds.eu^ (advblock.txt: 2137) -.cooleightds.eu -# ||cooleefbaldw.uk.to^ (advblock.txt: 2136) -.cooleefbaldw.uk.to -# ||convertds.com^ (advblock.txt: 2135) -.convertds.com -# ||contlist.com^ (advblock.txt: 2134) -.contlist.com -# ||contextrtb.com^ (advblock.txt: 2133) -.contextrtb.com -# ||contextbar.ru^ (advblock.txt: 2132) -.contextbar.ru -# ||conternet.com^ (advblock.txt: 2131) -.conternet.com -# ||conteresso.com^ (advblock.txt: 2130) -.conteresso.com -# ||conteresse.com^ (advblock.txt: 2129) -.conteresse.com -# ||contema.ru^$third-party (advblock.txt: 2128) -.contema.ru -# ||contactsin.ru^ (advblock.txt: 2127) -.contactsin.ru -# ||contactsin.com^ (advblock.txt: 2126) -.contactsin.com -# ||connees.com^ (advblock.txt: 2125) -.connees.com -# ||commontools.net^ (advblock.txt: 2124) -.commontools.net -# ||collanetti.com^ (advblock.txt: 2123) -.collanetti.com -# ||coe5n.ru^ (advblock.txt: 2122) -.coe5n.ru -# ||codexq.net^ (advblock.txt: 2121) -.codexq.net -# ||codes-media.ru^ (advblock.txt: 2120) -.codes-media.ru -# ||codemediarich.ru^ (advblock.txt: 2119) -.codemediarich.ru -# ||codeextrarich.net^ (advblock.txt: 2118) -.codeextrarich.net -# ||code.roadvel.ru^$third-party (advblock.txt: 2117) -.code.roadvel.ru -# ||code.d-agency.net^ (advblock.txt: 2116) -.code.d-agency.net -# ||codata.ru^ (advblock.txt: 2115) -.codata.ru -# ||cobrand.ria.com^$third-party (advblock.txt: 2114) -.cobrand.ria.com -# ||cms-skin.com^$third-party (advblock.txt: 2113) -.cms-skin.com -# ||clunder.net^ (advblock.txt: 2112) -.clunder.net -# ||cloakac.com^ (advblock.txt: 2111) -.cloakac.com -# ||clo.lv^ (advblock.txt: 2110) -.clo.lv -# ||clme.net^ (advblock.txt: 2109) -.clme.net -# ||clme.biz^ (advblock.txt: 2108) -.clme.biz -# ||cllckdomain.com^ (advblock.txt: 2107) -.cllckdomain.com -# ||clkmon.com^$third-party (advblock.txt: 2106) -.clkmon.com -# ||clievise.com^ (advblock.txt: 2105) -.clievise.com -# ||clierets.com^ (advblock.txt: 2104) -.clierets.com -# ||cliennes.com^ (advblock.txt: 2103) -.cliennes.com -# ||clickunderad.com^ (advblock.txt: 2102) -.clickunderad.com -# ||clickspay.ru^ (advblock.txt: 2101) -.clickspay.ru -# ||clickcashmoney.com^ (advblock.txt: 2100) -.clickcashmoney.com -# ||clctraffic.com^ (advblock.txt: 2099) -.clctraffic.com -# ||clangere.com^ (advblock.txt: 2098) -.clangere.com -# ||cl.ekzo.org^ (advblock.txt: 2097) -.cl.ekzo.org -# ||ckqby.com^$third-party (advblock.txt: 2096) -.ckqby.com -# ||ck-cdn.com^$third-party (advblock.txt: 2095) -.ck-cdn.com -# ||cityads.ru^$third-party (advblock.txt: 2094) -.cityads.ru -# ||cityads.com^$third-party (advblock.txt: 2093) -.cityads.com -# ||citaire.com^ (advblock.txt: 2092) -.citaire.com -# ||cientrer.com^ (advblock.txt: 2091) -.cientrer.com -# ||ciement.com^ (advblock.txt: 2090) -.ciement.com -# ||chinagrad.ru^ (advblock.txt: 2089) -.chinagrad.ru -# ||china-air.ru^ (advblock.txt: 2088) -.china-air.ru -# ||cettenus.com^ (advblock.txt: 2087) -.cettenus.com -# ||cettenu.com^ (advblock.txt: 2086) -.cettenu.com -# ||cettente.com^ (advblock.txt: 2085) -.cettente.com -# ||cdnport.ru^ (advblock.txt: 2084) -.cdnport.ru -# ||cdnjs.nl^$third-party (advblock.txt: 2083) -.cdnjs.nl -# ||cdneurope.com^ (advblock.txt: 2082) -.cdneurope.com -# ||cdn-rtb.sape.ru^ (advblock.txt: 2081) -.cdn-rtb.sape.ru -# ||cashtube.ru^ (advblock.txt: 2080) -.cashtube.ru -# ||cashprom.ru^$third-party (advblock.txt: 2079) -.cashprom.ru -# ||carveac.com^ (advblock.txt: 2078) -.carveac.com -# ||caragots.com^ (advblock.txt: 2077) -.caragots.com -# ||canalds.com^ (advblock.txt: 2076) -.canalds.com -# ||campeut.com^ (advblock.txt: 2075) -.campeut.com -# ||cache.betweendigital.com^ (advblock.txt: 2074) -.cache.betweendigital.com -# ||cachand.com^ (advblock.txt: 2073) -.cachand.com -# ||bznclicks.com^$third-party (advblock.txt: 2072) -.bznclicks.com -# ||bzlwe.com^$third-party (advblock.txt: 2071) -.bzlwe.com -# ||byuop.com^ (advblock.txt: 2070) -.byuop.com -# ||bymotofyd.ru^ (advblock.txt: 2069) -.bymotofyd.ru -# ||bw.pronto.ru/img/$object (advblock.txt: 2067) -.bw.pronto.ru/img/ -# ||buzzoola.com^$third-party (advblock.txt: 2066) -.buzzoola.com -# ||buytraf.ru^ (advblock.txt: 2065) -.buytraf.ru -# ||buy-traffic.org^ (advblock.txt: 2064) -.buy-traffic.org -# ||bussters.com^$third-party (advblock.txt: 2063) -.bussters.com -# ||buildbull.ru^ (advblock.txt: 2062) -.buildbull.ru -# ||bs.quadrosystems.ru^ (advblock.txt: 2061) -.bs.quadrosystems.ru -# ||broklam.com^$third-party (advblock.txt: 2060) -.broklam.com -# ||brndrm.com^$third-party (advblock.txt: 2059) -.brndrm.com -# ||breeffnet.com^ (advblock.txt: 2058) -.breeffnet.com -# ||breedac.com^ (advblock.txt: 2057) -.breedac.com -# ||brandarium.ru^ (advblock.txt: 2056) -.brandarium.ru -# ||bposterss.net^$third-party (advblock.txt: 2055) -.bposterss.net -# ||boolff.com^ (advblock.txt: 2054) -.boolff.com -# ||bongobono.com^$third-party (advblock.txt: 2053) -.bongobono.com -# ||bongacash.com^$third-party (advblock.txt: 2052) -.bongacash.com -# ||bobrilla.com^ (advblock.txt: 2051) -.bobrilla.com -# ||bobik.playflock.com^ (advblock.txt: 2050) -.bobik.playflock.com -# ||blessdi.com^ (advblock.txt: 2049) -.blessdi.com -# ||blendac.com^ (advblock.txt: 2048) -.blendac.com -# ||blackads.ru^ (advblock.txt: 2047) -.blackads.ru -# ||bjpwv.com^$third-party (advblock.txt: 2046) -.bjpwv.com -# ||bixmarketing.ru^ (advblock.txt: 2045) -.bixmarketing.ru -# ||bistr3.ru^ (advblock.txt: 2044) -.bistr3.ru -# ||binmedia.ru^ (advblock.txt: 2043) -.binmedia.ru -# ||bilation.com^ (advblock.txt: 2042) -.bilation.com -# ||bidtraffic.ru^ (advblock.txt: 2041) -.bidtraffic.ru -# ||betonmarkets.com^$third-party (advblock.txt: 2040) -.betonmarkets.com -# ||berryfico.com^ (advblock.txt: 2039) -.berryfico.com -# ||beriche.ru^ (advblock.txt: 2038) -.beriche.ru -# ||berdent.com^$third-party (advblock.txt: 2037) -.berdent.com -# ||bequri.com^$third-party (advblock.txt: 2036) -.bequri.com -# ||belole.ru^ (advblock.txt: 2035) -.belole.ru -# ||beligana.ru^ (advblock.txt: 2034) -.beligana.ru -# ||beeblebroks.ru^ (advblock.txt: 2033) -.beeblebroks.ru -# ||bbtyup.com^ (advblock.txt: 2032) -.bbtyup.com -# ||bazilhan.com^$third-party (advblock.txt: 2031) -.bazilhan.com -# ||basetts.com^ (advblock.txt: 2030) -.basetts.com -# ||barraien.com^ (advblock.txt: 2029) -.barraien.com -# ||barpe.ru^ (advblock.txt: 2028) -.barpe.ru -# ||bara-banner.com^$third-party (advblock.txt: 2027) -.bara-banner.com -# ||banquant.com^ (advblock.txt: 2026) -.banquant.com -# ||bannuncio.com^ (advblock.txt: 2025) -.bannuncio.com -# ||bannersold.eu^$third-party (advblock.txt: 2024) -.bannersold.eu -# ||bannerms54489.com^ (advblock.txt: 2023) -.bannerms54489.com -# ||banerator.net^$third-party (advblock.txt: 2022) -.banerator.net -# ||baks-easy.com^$third-party (advblock.txt: 2021) -.baks-easy.com -# ||backromy.com^ (advblock.txt: 2020) -.backromy.com -# ||backend.opogame.com^$third-party (advblock.txt: 2019) -.backend.opogame.com -# ||bachmedia.ru^ (advblock.txt: 2018) -.bachmedia.ru -# ||bablogon.net^$third-party (advblock.txt: 2017) -.bablogon.net -# ||b.digital-tv.com.ua^ (advblock.txt: 2016) -.b.digital-tv.com.ua -# ||az708531.vo.msecnd.net^ (advblock.txt: 2015) -.az708531.vo.msecnd.net -# ||ayjvb.com^$third-party (advblock.txt: 2014) -.ayjvb.com -# ||avmgetdo.ru^$third-party (advblock.txt: 2013) -.avmgetdo.ru -# ||avdego.net^$third-party (advblock.txt: 2012) -.avdego.net -# ||attiveri.com^ (advblock.txt: 2011) -.attiveri.com -# ||astdn.ru^*/$third-party (advblock.txt: 2010) -.astdn.ru/.*/ -# ||associeta.com^ (advblock.txt: 2009) -.associeta.com -# ||associazio.com^ (advblock.txt: 2008) -.associazio.com -# ||assantie.com^ (advblock.txt: 2007) -.assantie.com -# ||asdhit.com^ (advblock.txt: 2006) -.asdhit.com -# ||arigami.ru^ (advblock.txt: 2005) -.arigami.ru -# ||ardiver.ru^$third-party (advblock.txt: 2004) -.ardiver.ru -# ||arded.com^ (advblock.txt: 2003) -.arded.com -# ||archeurs.com^ (advblock.txt: 2002) -.archeurs.com -# ||apytrc.com^$third-party (advblock.txt: 2001) -.apytrc.com -# ||apypxl.com^$third-party (advblock.txt: 2000) -.apypxl.com -# ||aprement.com^ (advblock.txt: 1999) -.aprement.com -# ||aprelite.com^ (advblock.txt: 1998) -.aprelite.com -# ||apreces.com^ (advblock.txt: 1997) -.apreces.com -# ||applieda.com^ (advblock.txt: 1996) -.applieda.com -# ||appintop.com/widget/ (advblock.txt: 1995) -.appintop.com/widget/ -# ||appboost.ru^$third-party (advblock.txt: 1994) -.appboost.ru -# ||appaugust.ru^ (advblock.txt: 1993) -.appaugust.ru -# ||apocence.com^ (advblock.txt: 1992) -.apocence.com -# ||api.smartadv.ru^ (advblock.txt: 1991) -.api.smartadv.ru -# ||api.market-place.su^$third-party,script (advblock.txt: 1990) -.api.market-place.su -# ||api-keks.com^ (advblock.txt: 1989) -.api-keks.com -# ||anniers.com^ (advblock.txt: 1988) -.anniers.com -# ||anniere.com^ (advblock.txt: 1987) -.anniere.com -# ||annienne.com^ (advblock.txt: 1986) -.annienne.com -# ||andrak.ru^ (advblock.txt: 1985) -.andrak.ru -# ||analyticsncc.net^$third-party (advblock.txt: 1984) -.analyticsncc.net -# ||an.media-active.ru^ (advblock.txt: 1983) -.an.media-active.ru -# ||amuseer.com^ (advblock.txt: 1982) -.amuseer.com -# ||amenop.com^ (advblock.txt: 1981) -.amenop.com -# ||am17.ru^ (advblock.txt: 1980) -.am17.ru -# ||altraf.com^ (advblock.txt: 1979) -.altraf.com -# ||almosto.com^ (advblock.txt: 1978) -.almosto.com -# ||alltizer.ru^ (advblock.txt: 1977) -.alltizer.ru -# ||alltheladyz.xyz^$third-party (advblock.txt: 1976) -.alltheladyz.xyz -# ||allowac.com^ (advblock.txt: 1975) -.allowac.com -# ||allkalisto.ru^$third-party (advblock.txt: 1974) -.allkalisto.ru -# ||alipromo.com^$third-party (advblock.txt: 1973) -.alipromo.com -# ||alidtd.com^$third-party (advblock.txt: 1972) -.alidtd.com -# ||algenib.ru^ (advblock.txt: 1971) -.algenib.ru -# ||alemobile.ru^ (advblock.txt: 1970) -.alemobile.ru -# ||akashy.com^ (advblock.txt: 1969) -.akashy.com -# ||aintes.com^ (advblock.txt: 1968) -.aintes.com -# ||ainterme.com^ (advblock.txt: 1967) -.ainterme.com -# ||aintere.com^ (advblock.txt: 1966) -.aintere.com -# ||aintegie.com^ (advblock.txt: 1965) -.aintegie.com -# ||ainstite.com^ (advblock.txt: 1964) -.ainstite.com -# ||aif.yadro.ru^ (advblock.txt: 1963) -.aif.yadro.ru -# ||aiadvi.com^ (advblock.txt: 1962) -.aiadvi.com -# ||agitazio.com^ (advblock.txt: 1961) -.agitazio.com -# ||afterview.ru^ (advblock.txt: 1960) -.afterview.ru -# ||afficent.com^ (advblock.txt: 1959) -.afficent.com -# ||affcash.net^ (advblock.txt: 1958) -.affcash.net -# ||aff.mediarotate.com^ (advblock.txt: 1957) -.aff.mediarotate.com -# ||aerontre.com^ (advblock.txt: 1956) -.aerontre.com -# ||advweb.ru^ (advblock.txt: 1955) -.advweb.ru -# ||advrush.com^ (advblock.txt: 1954) -.advrush.com -# ||advredirr.com^ (advblock.txt: 1953) -.advredirr.com -# ||advland.ru^$third-party (advblock.txt: 1952) -.advland.ru -# ||advkino.ru^$third-party (advblock.txt: 1951) -.advkino.ru -# ||advideo.ru^$third-party (advblock.txt: 1950) -.advideo.ru -# ||advice.imho.net^$third-party (advblock.txt: 1949) -.advice.imho.net -# ||advertur.ru^$third-party (advblock.txt: 1948) -.advertur.ru -# ||advertte.com^ (advblock.txt: 1947) -.advertte.com -# ||advertshot.ru^$third-party (advblock.txt: 1946) -.advertshot.ru -# ||advertone.ru^$third-party (advblock.txt: 1945) -.advertone.ru -# ||advertoly.com^$third-party (advblock.txt: 1944) -.advertoly.com -# ||advertmedianetwork.ru^$third-party (advblock.txt: 1943) -.advertmedianetwork.ru -# ||advertlink.ru^ (advblock.txt: 1942) -.advertlink.ru -# ||adversni.com^ (advblock.txt: 1941) -.adversni.com -# ||advego.ru^$third-party (advblock.txt: 1940) -.advego.ru -# ||adveg.ru^$third-party (advblock.txt: 1939) -.adveg.ru -# ||advarkads.com^$third-party (advblock.txt: 1938) -.advarkads.com -# ||advagava.ru^$third-party (advblock.txt: 1937) -.advagava.ru -# ||adv.vz.ru^ (advblock.txt: 1936) -.adv.vz.ru -# ||adv-target.ru^$third-party (advblock.txt: 1935) -.adv-target.ru -# ||adv-first.ru^ (advblock.txt: 1934) -.adv-first.ru -# ||adulthub.ru^$third-party (advblock.txt: 1933) -.adulthub.ru -# ||adtraff.ru^ (advblock.txt: 1932) -.adtraff.ru -# ||adsyst.ru^ (advblock.txt: 1931) -.adsyst.ru -# ||adsyst.com^ (advblock.txt: 1930) -.adsyst.com -# ||adstock.ru^ (advblock.txt: 1929) -.adstock.ru -# ||adstarter.ru^$third-party (advblock.txt: 1928) -.adstarter.ru -# ||adst.biz^ (advblock.txt: 1927) -.adst.biz -# ||adsorg.com^ (advblock.txt: 1926) -.adsorg.com -# ||adsmeda.com^ (advblock.txt: 1925) -.adsmeda.com -# ||adshostnet.com^ (advblock.txt: 1924) -.adshostnet.com -# ||adselector.ru^$third-party (advblock.txt: 1923) -.adselector.ru -# ||adsactive.ru^$third-party (advblock.txt: 1922) -.adsactive.ru -# ||adpod.in^ (advblock.txt: 1921) -.adpod.in -# ||adname.ru^$third-party (advblock.txt: 1920) -.adname.ru -# ||admixercreatives.blob.core.windows.net^$third-party (advblock.txt: 1919) -.admixercreatives.blob.core.windows.net -# ||admitlead.ru^$third-party (advblock.txt: 1918) -.admitlead.ru -# ||admail.am^$third-party (advblock.txt: 1917) -.admail.am -# ||adlook.net^$third-party (advblock.txt: 1916) -.adlook.net -# ||adlift.ru^$third-party (advblock.txt: 1915) -.adlift.ru -# ||adlabs.ru^$third-party (advblock.txt: 1914) -.adlabs.ru -# ||adgamble.net^ (advblock.txt: 1913) -.adgamble.net -# ||adfun.ru^ (advblock.txt: 1912) -.adfun.ru -# ||adforce.ru^ (advblock.txt: 1911) -.adforce.ru -# ||adeclc.com^ (advblock.txt: 1910) -.adeclc.com -# ||addtraf.ru^$third-party (advblock.txt: 1909) -.addtraf.ru -# ||adcamp.ru^$third-party (advblock.txt: 1908) -.adcamp.ru -# ||adbmi.com^$third-party (advblock.txt: 1907) -.adbmi.com -# ||adbix.tv^$third-party (advblock.txt: 1906) -.adbix.tv -# ||ad1.ru^ (advblock.txt: 1905) -.ad1.ru -# ||ad05f.ru^ (advblock.txt: 1904) -.ad05f.ru -# ||ad004.ru^ (advblock.txt: 1903) -.ad004.ru -# ||ad.starlightmedia.ua^ (advblock.txt: 1902) -.ad.starlightmedia.ua -# ||ad.or.ru/inner?block= (advblock.txt: 1901) -.ad.or.ru/inner\?block= -# ||ad.namba.net^ (advblock.txt: 1900) -.ad.namba.net -# ||ad.hutor.ru^ (advblock.txt: 1899) -.ad.hutor.ru -# ||ad.h-vip.ru^ (advblock.txt: 1898) -.ad.h-vip.ru -# ||ad.gameagregator.com^ (advblock.txt: 1897) -.ad.gameagregator.com -# ||ad.ddestiny.ru^ (advblock.txt: 1896) -.ad.ddestiny.ru -# ||activepr.ru^$~popup,popup (advblock.txt: 1895) -.activepr.ru -# ||actionteaser.ru^$third-party (advblock.txt: 1894) -.actionteaser.ru -# ||actionrtb.com^ (advblock.txt: 1893) -.actionrtb.com -# ||actionads.ru^$third-party (advblock.txt: 1892) -.actionads.ru -# ||acronixshop.ru^ (advblock.txt: 1891) -.acronixshop.ru -# ||academand.com^ (advblock.txt: 1890) -.academand.com -# ||abusieux.com^ (advblock.txt: 1889) -.abusieux.com -# ||abteaser.com^ (advblock.txt: 1888) -.abteaser.com -# ||ableday.com^ (advblock.txt: 1887) -.ableday.com -# ||7-link.ru^$third-party (advblock.txt: 1886) -.7-link.ru -# ||56zzz.net^ (advblock.txt: 1885) -.56zzz.net -# ||56rrr.net^ (advblock.txt: 1884) -.56rrr.net -# ||56nnn.net^ (advblock.txt: 1883) -.56nnn.net -# ||56fff.net^ (advblock.txt: 1882) -.56fff.net -# ||56eee.net^ (advblock.txt: 1881) -.56eee.net -# ||56ccc.net^ (advblock.txt: 1880) -.56ccc.net -# ||4smi.ru^ (advblock.txt: 1879) -.4smi.ru -# ||4lucysu.com^ (advblock.txt: 1878) -.4lucysu.com -# ||4allclick.ru^$~popup,popup (advblock.txt: 1877) -.4allclick.ru -# ||3under.ru^ (advblock.txt: 1876) -.3under.ru -# ||3lucosy.com^ (advblock.txt: 1875) -.3lucosy.com -# ||2under.ru^ (advblock.txt: 1874) -.2under.ru -# ||2lycosy.com^ (advblock.txt: 1873) -.2lycosy.com -# ||2lycosu.com^ (advblock.txt: 1872) -.2lycosu.com -# ||1under.ru^ (advblock.txt: 1871) -.1under.ru -# ||1ru.tv^$third-party (advblock.txt: 1870) -.1ru.tv -# ||123retr312.ru^ (advblock.txt: 1869) -.123retr312.ru -# ||0ux.ru^ (advblock.txt: 1868) -.0ux.ru -# //cds.*.hwcdn.net/s/*-*-*-*-*.js| (advblock.txt: 1867) -cds.*./.*\.hwcdn\.net/s/.*-.*-.*-.*-.*\.js$ -cds.*.hwcdn.net/s/.*-.*-.*-.*-.*\.js$ -# //95.211.125.226^ (advblock.txt: 1866) -95.211.125.226 -# //95.169.186.139^ (advblock.txt: 1865) -95.169.186.139 -# //91.197.128.34/key= (advblock.txt: 1864) -91.197.128.34/key= -# //89.108.121.205^$object (advblock.txt: 1863) -89.108.121.205 -# //89.108.109.12^$object (advblock.txt: 1862) -89.108.109.12 -# //5.149.255.132^ (advblock.txt: 1861) -5.149.255.132 -# //46.165.197.87^ (advblock.txt: 1860) -46.165.197.87 -# //46.165.197.231^ (advblock.txt: 1859) -46.165.197.231 -# //46.165.197.153^ (advblock.txt: 1858) -46.165.197.153 -# //212.150.34.116^ (advblock.txt: 1857) -212.150.34.116 -# //212.150.34.115^ (advblock.txt: 1856) -212.150.34.115 -# //178.162.137.217^ (advblock.txt: 1855) -178.162.137.217 -# //176.9.245.25/* (advblock.txt: 1854) -176.9.245.25/.* -# //95.211.26.129/banners/* (advblock.txt: 1849) -95.211.26.129/banners/.* -# //95.168.161.173/www/* (advblock.txt: 1848) -95.168.161.173/www/.* -# //91.194.251.66^ (advblock.txt: 1847) -91.194.251.66 -# //90.156.144.98^ (advblock.txt: 1846) -90.156.144.98 -# //85.10.194.51^$third-party (advblock.txt: 1845) -85.10.194.51 -# //83.218.204.107/numbers.md/banners/* (advblock.txt: 1844) -83.218.204.107/numbers\.md/banners/.* -# //80.93.56.187^ (advblock.txt: 1843) -80.93.56.187 -# //80.93.49.192^ (advblock.txt: 1842) -80.93.49.192 -# //80.91.178.234^ (advblock.txt: 1841) -80.91.178.234 -# //78.140.145.178^ (advblock.txt: 1840) -78.140.145.178 -# //217.170.78.*/banners/* (advblock.txt: 1839) -217.170.78.*./(.*/)?banners/.* -# //213.186.217.210/banners/* (advblock.txt: 1838) -213.186.217.210/banners/.* -# //213.163.70.183^ (advblock.txt: 1837) -213.163.70.183 -# //213.151.2.195/storage/*$object (advblock.txt: 1836) -213.151.2.195/storage/.* -# //195.161.119.239^ (advblock.txt: 1835) -195.161.119.239 -# //194.135.105.*/js/* (advblock.txt: 1834) -194.135.105.*./(.*/)?js/.* -# //188.72.225.106^ (advblock.txt: 1833) -188.72.225.106 -# //188.40.18.172^ (advblock.txt: 1832) -188.40.18.172 -# //188.120.246.210/ad/* (advblock.txt: 1831) -188.120.246.210/ad/.* -# //176.58.105.153^ (advblock.txt: 1830) -176.58.105.153 -# ||wqa.ru/show/?inf= (advblock.txt: 1827) -.wqa.ru/show/\?inf= -# ||vtomske.ru/informer/ (advblock.txt: 1826) -.vtomske.ru/informer/ -# ||video.909.su/feeds/feed.php? (advblock.txt: 1825) -.video.909.su/feeds/feed\.php\? -# ||traffim.com/informer/ (advblock.txt: 1824) -.traffim.com/informer/ -# ||tophot-news.com^$third-party (advblock.txt: 1823) -.tophot-news.com -# ||smigid.ru/informer/ (advblock.txt: 1822) -.smigid.ru/informer/ -# ||sibhealth.by/informer/ (advblock.txt: 1821) -.sibhealth.by/informer/ -# ||shopnow.com.ua/media/openmedia_informer/ (advblock.txt: 1820) -.shopnow.com.ua/media/openmedia_informer/ -# ||shkolazhizni.ru/img/export/ (advblock.txt: 1819) -.shkolazhizni.ru/img/export/ -# ||seowebtools.ru/inform/infb.php? (advblock.txt: 1818) -.seowebtools.ru/inform/infb\.php\? -# ||ru-novocti.com^$third-party (advblock.txt: 1817) -.ru-novocti.com -# ||rssportal.ru/getinformer.php? (advblock.txt: 1816) -.rssportal.ru/getinformer\.php\? -# ||rosinvest.com/informs/ (advblock.txt: 1815) -.rosinvest.com/informs/ -# ||protoplex.ru/images/rating/ (advblock.txt: 1814) -.protoplex.ru/images/rating/ -# ||protoplex.ru/cgi-bin/informer.pl? (advblock.txt: 1813) -.protoplex.ru/cgi-bin/informer\.pl\? -# ||pravda.ru/cache/cqc/$third-party,subdocument (advblock.txt: 1812) -.pravda.ru/cache/cqc/ -# ||portak.net/informer/ (advblock.txt: 1811) -.portak.net/informer/ -# ||podfm.ru/informer/ (advblock.txt: 1810) -.podfm.ru/informer/ -# ||piter.tv/widget_news/ (advblock.txt: 1809) -.piter.tv/widget_news/ -# ||otvali.ru/informer/ (advblock.txt: 1808) -.otvali.ru/informer/ -# ||nyx.su/informers/ (advblock.txt: 1807) -.nyx.su/informers/ -# ||nntx.ru^$third-party (advblock.txt: 1805) -.nntx.ru -# ||news.findres.com^$third-party,script,subdocument (advblock.txt: 1804) -.news.findres.com -# ||mhealth.ru^$third-party (advblock.txt: 1803) -.mhealth.ru -# ||meta.ua/informers/? (advblock.txt: 1802) -.meta.ua/informers/\? -# ||meta.ua/*/block.js|$third-party (advblock.txt: 1801) -.meta.ua/.*/block\.js$ -# ||makeup.com.ua/informer/ (advblock.txt: 1800) -.makeup.com.ua/informer/ -# ||lenta-novostei.com^$third-party (advblock.txt: 1799) -.lenta-novostei.com -# ||kp.ru/_ajax/informer_ (advblock.txt: 1798) -.kp.ru/_ajax/informer_ -# ||kinobzor.tv/_cron/js/informer (advblock.txt: 1797) -.kinobzor.tv/_cron/js/informer -# ||jhf.ru/informer/ (advblock.txt: 1796) -.jhf.ru/informer/ -# ||info-dvd.ru/bbm/informer/ (advblock.txt: 1795) -.info-dvd.ru/bbm/informer/ -# ||gazetavv.com/informer- (advblock.txt: 1794) -.gazetavv.com/informer- -# ||from-ua.com^$third-party,subdocument (advblock.txt: 1793) -.from-ua.com -# ||forbes.kz/informer/ (advblock.txt: 1792) -.forbes.kz/informer/ -# ||finam.ru/data/js/ (advblock.txt: 1791) -.finam.ru/data/js/ -# ||fark.ru/js/bannerLink. (advblock.txt: 1790) -.fark.ru/js/bannerLink\. -# ||fair.ru/*/i.php? (advblock.txt: 1789) -.fair.ru/.*/i\.php\? -# ||exchange.meta.ua^ (advblock.txt: 1788) -.exchange.meta.ua -# ||duty.webbia.ru/change/ (advblock.txt: 1787) -.duty.webbia.ru/change/ -# ||doramy.net/informer/ (advblock.txt: 1786) -.doramy.net/informer/ -# ||d.drive.ru/_/$script (advblock.txt: 1785) -.d.drive.ru/_/ -# ||cosmo.ru/cosmo_informers/ (advblock.txt: 1784) -.cosmo.ru/cosmo_informers/ -# ||comon.ru/data/js/ (advblock.txt: 1783) -.comon.ru/data/js/ -# ||cnews.ru/inc/partners/rotator.php? (advblock.txt: 1782) -.cnews.ru/inc/partners/rotator\.php\? -# ||cmexota.ru^$third-party (advblock.txt: 1781) -.cmexota.ru -# ||bigmir.net/informers/ (advblock.txt: 1780) -.bigmir.net/informers/ -# ||bestnews.biz/js/out/ (advblock.txt: 1779) -.bestnews.biz/js/out/ -# ||bash.*/forweb/ (advblock.txt: 1778) -.bash.*./(.*/)?forweb/ -# ||banki.ru/_export/informers/ (advblock.txt: 1777) -.banki.ru/_export/informers/ -# ||autonet.ru/extra/autoclub_informer.aspx (advblock.txt: 1776) -.autonet.ru/extra/autoclub_informer\.aspx -# ||analyzethis.ru/informer.cgi? (advblock.txt: 1775) -.analyzethis.ru/informer\.cgi\? -# ||aif.ru/iframes/ (advblock.txt: 1774) -.aif.ru/iframes/ -# ||66.ru/mod/news2/ (advblock.txt: 1773) -.66.ru/mod/news2/ -# ||24smi.org/i/$script (advblock.txt: 1772) -.24smi.org/i/ -# ||24au.ru/*/24au_informer.js (advblock.txt: 1771) -.24au.ru/.*/24au_informer\.js -# ||1k.by/informers/ (advblock.txt: 1770) -.1k.by/informers/ -# ||泻芯屑锌卸懈胁.褉褎/images/banners/ (advblock.txt: 1766) -.泻芯屑锌卸懈胁.褉褎/images/banners/ -# ||zto.h16.ru^$third-party (advblock.txt: 1765) -.zto.h16.ru -# ||zremcom.ru/anim (advblock.txt: 1764) -.zremcom.ru/anim -# ||zozocash.biz^$third-party (advblock.txt: 1763) -.zozocash.biz -# ||zorkabiz.ru^$third-party (advblock.txt: 1762) -.zorkabiz.ru -# ||znews.su^$third-party (advblock.txt: 1761) -.znews.su -# ||zizu.lv^$third-party (advblock.txt: 1760) -.zizu.lv -# ||zipmonster.ru^$third-party (advblock.txt: 1759) -.zipmonster.ru -# ||zheton.com^$third-party (advblock.txt: 1758) -.zheton.com -# ||zez.su/ban/ (advblock.txt: 1757) -.zez.su/ban/ -# ||zapato.ru/upload/affiliate_pics/ (advblock.txt: 1756) -.zapato.ru/upload/affiliate_pics/ -# ||zamok911.com^$third-party (advblock.txt: 1755) -.zamok911.com -# ||yousticker.com/load/$third-party (advblock.txt: 1754) -.yousticker.com/load/ -# ||yournewhosting.com/images/$third-party (advblock.txt: 1753) -.yournewhosting.com/images/ -# ||yottos.com$third-party (advblock.txt: 1752) -.yottos.com*. -# ||yoga-terapia.ru^$third-party (advblock.txt: 1751) -.yoga-terapia.ru -# ||yellowmedia.biz^$third-party (advblock.txt: 1750) -.yellowmedia.biz -# ||yandexo.ru/rek/ (advblock.txt: 1749) -.yandexo.ru/rek/ -# ||yandex.net/banner/ (advblock.txt: 1748) -.yandex.net/banner/ -# ||yandex-games.ru/ok/banners/ (advblock.txt: 1747) -.yandex-games.ru/ok/banners/ -# ||xxx-news.$third-party (advblock.txt: 1746) -.xxx-news.*. -# ||xstats.in^ (advblock.txt: 1745) -.xstats.in -# ||xchange.cc/banner/ (advblock.txt: 1744) -.xchange.cc/banner/ -# ||xap.ru^$third-party,script (advblock.txt: 1743) -.xap.ru -# ||x4u.ru^$third-party (advblock.txt: 1742) -.x4u.ru -# ||x-traf.ru^ (advblock.txt: 1741) -.x-traf.ru -# ||x-ero.ru^$third-party (advblock.txt: 1740) -.x-ero.ru -# ||wwwomen.ru^$third-party (advblock.txt: 1739) -.wwwomen.ru -# ||wq3.ru^ (advblock.txt: 1738) -.wq3.ru -# ||wpclktls.com^ (advblock.txt: 1737) -.wpclktls.com -# ||womenclick.ru^ (advblock.txt: 1735) -.womenclick.ru -# ||wolist.ru^$third-party (advblock.txt: 1734) -.wolist.ru -# ||wmzona.com^$third-party (advblock.txt: 1733) -.wmzona.com -# ||wmplace.ru^ (advblock.txt: 1732) -.wmplace.ru -# ||wmlink.$third-party (advblock.txt: 1731) -.wmlink.*. -# ||wmirk.ru^$third-party (advblock.txt: 1730) -.wmirk.ru -# ||wm-talk.org^$third-party (advblock.txt: 1729) -.wm-talk.org -# ||wm-help.net/b.php? (advblock.txt: 1728) -.wm-help.net/b\.php\? -# ||wm-goldenclick.ru^ (advblock.txt: 1727) -.wm-goldenclick.ru -# ||wizzzards.com^ (advblock.txt: 1726) -.wizzzards.com -# ||winlinebet.com^$third-party (advblock.txt: 1725) -.winlinebet.com -# ||win2profit1.com/upload_dynamics/ (advblock.txt: 1724) -.win2profit1.com/upload_dynamics/ -# ||wewonurgold.ws^$third-party (advblock.txt: 1723) -.wewonurgold.ws -# ||westbyte.com/scripts/bs/bc.php?bi= (advblock.txt: 1722) -.westbyte.com/scripts/bs/bc\.php\?bi= -# ||weclever.ru/block.php? (advblock.txt: 1721) -.weclever.ru/block\.php\? -# ||websurf.ru/? (advblock.txt: 1720) -.websurf.ru/\? -# ||webproficlub.ru^ (advblock.txt: 1719) -.webproficlub.ru -# ||webocat.ru^ (advblock.txt: 1718) -.webocat.ru -# ||weboborona.ru/pic/wban (advblock.txt: 1717) -.weboborona.ru/pic/wban -# ||webme.com/selfpromotion. (advblock.txt: 1716) -.webme.com/selfpromotion\. -# ||webmax.su/banner/ (advblock.txt: 1715) -.webmax.su/banner/ -# ||weblist.ru/images/weblist (advblock.txt: 1714) -.weblist.ru/images/weblist -# ||webhost1.ru/design/$third-party (advblock.txt: 1713) -.webhost1.ru/design/ -# ||webex.ru^$third-party (advblock.txt: 1712) -.webex.ru -# ||webasm.com^ (advblock.txt: 1711) -.webasm.com -# ||web-rom.ru^ (advblock.txt: 1710) -.web-rom.ru -# ||wbn.su^ (advblock.txt: 1709) -.wbn.su -# ||warnet.ws/banners/ (advblock.txt: 1706) -.warnet.ws/banners/ -# ||warezplatinum.com^$third-party (advblock.txt: 1705) -.warezplatinum.com -# ||wapstart.ru^ (advblock.txt: 1704) -.wapstart.ru -# ||wap-click.net^ (advblock.txt: 1703) -.wap-click.net -# ||wambacdn.net/images/*/promo_search_form/ (advblock.txt: 1702) -.wambacdn.net/images/.*/promo_search_form/ -# ||vz.ru/inc/b/ (advblock.txt: 1701) -.vz.ru/inc/b/ -# ||vyatka-host.ru^$third-party (advblock.txt: 1700) -.vyatka-host.ru -# ||vtochku.net^ (advblock.txt: 1699) -.vtochku.net -# ||vtizr.com^ (advblock.txt: 1698) -.vtizr.com -# ||vsexshop.ru^$third-party (advblock.txt: 1697) -.vsexshop.ru -# ||vsetv.com/pic/paid/ (advblock.txt: 1696) -.vsetv.com/pic/paid/ -# ||vsesumki.com^$third-party (advblock.txt: 1695) -.vsesumki.com -# ||vsemp.ru^$third-party (advblock.txt: 1694) -.vsemp.ru -# ||vsem.ru^$third-party (advblock.txt: 1693) -.vsem.ru -# ||vsekino.su^$third-party (advblock.txt: 1692) -.vsekino.su -# ||vredno.com.ua/img/ (advblock.txt: 1691) -.vredno.com.ua/img/ -# ||vpsite.ru^$third-party (advblock.txt: 1690) -.vpsite.ru -# ||vpered.ru^$third-party (advblock.txt: 1689) -.vpered.ru -# ||voyna-plemyon.ru^$third-party (advblock.txt: 1688) -.voyna-plemyon.ru -# ||votetraffic.ru^ (advblock.txt: 1687) -.votetraffic.ru -# ||vodkov.net^$third-party (advblock.txt: 1686) -.vodkov.net -# ||vladmag.ru^$third-party (advblock.txt: 1685) -.vladmag.ru -# ||vladkofe.ru^$third-party (advblock.txt: 1684) -.vladkofe.ru -# ||vladja.com^$third-party (advblock.txt: 1683) -.vladja.com -# ||vk-traf.ru^ (advblock.txt: 1682) -.vk-traf.ru -# ||vitr.alawar.ru^$subdocument (advblock.txt: 1681) -.vitr.alawar.ru -# ||vipsex.su^*/images/banners/ (advblock.txt: 1680) -.vipsex.su/.*/images/banners/ -# ||vipaccess.su^ (advblock.txt: 1678) -.vipaccess.su -# ||videotraff.ru^ (advblock.txt: 1677) -.videotraff.ru -# ||videoruletka.net^$third-party (advblock.txt: 1676) -.videoruletka.net -# ||videoplaza.tv/creatives/assets/ (advblock.txt: 1675) -.videoplaza.tv/creatives/assets/ -# ||videomay.ru^ (advblock.txt: 1674) -.videomay.ru -# ||videoklass.ru^$third-party (advblock.txt: 1673) -.videoklass.ru -# ||videoigr.net^$third-party,subdocument (advblock.txt: 1672) -.videoigr.net -# ||videoigr.net/includes/$third-party (advblock.txt: 1671) -.videoigr.net/includes/ -# ||videofan.ru^$third-party (advblock.txt: 1670) -.videofan.ru -# ||videocore.tv^*/pladform_ (advblock.txt: 1669) -.videocore.tv/.*/pladform_ -# ||videoclik.$third-party (advblock.txt: 1668) -.videoclik.*. -# ||video-tutorial.ucoz.ru/Foto/ (advblock.txt: 1667) -.video-tutorial.ucoz.ru/Foto/ -# ||video-link.ru^ (advblock.txt: 1666) -.video-link.ru -# ||video-invest.net^ (advblock.txt: 1665) -.video-invest.net -# ||vicepiter.ru^$third-party (advblock.txt: 1664) -.vicepiter.ru -# ||via-shop.ru^$third-party (advblock.txt: 1663) -.via-shop.ru -# ||vezetmne.ru^ (advblock.txt: 1662) -.vezetmne.ru -# ||vertucash.com^ (advblock.txt: 1661) -.vertucash.com -# ||ventivmedia.com^ (advblock.txt: 1660) -.ventivmedia.com -# ||vclicks.net^ (advblock.txt: 1659) -.vclicks.net -# ||vbm1.ru^ (advblock.txt: 1658) -.vbm1.ru -# ||vba.ru^ (advblock.txt: 1657) -.vba.ru -# ||vareza.net^ (advblock.txt: 1656) -.vareza.net -# ||v-kino.net/pay_click_ (advblock.txt: 1655) -.v-kino.net/pay_click_ -# ||userator.ru/img/ban/ (advblock.txt: 1654) -.userator.ru/img/ban/ -# ||usde.biz^$third-party (advblock.txt: 1653) -.usde.biz -# ||uptracker.ru^$third-party (advblock.txt: 1652) -.uptracker.ru -# ||unlockers.ru^$third-party (advblock.txt: 1651) -.unlockers.ru -# ||uniq-ip.com/via/np? (advblock.txt: 1650) -.uniq-ip.com/via/np\? -# ||umatno.ru/mm/ (advblock.txt: 1649) -.umatno.ru/mm/ -# ||ulitka.ru/logo$image (advblock.txt: 1648) -.ulitka.ru/logo -# ||ukrbuy.com/partner/ (advblock.txt: 1647) -.ukrbuy.com/partner/ -# ||ukrbanner.net^$third-party (advblock.txt: 1646) -.ukrbanner.net -# ||ujav.net^ (advblock.txt: 1645) -.ujav.net -# ||uicp.ru/?bn= (advblock.txt: 1644) -.uicp.ru/\?bn= -# ||ugly.ru/adv_frame. (advblock.txt: 1643) -.ugly.ru/adv_frame\. -# ||uaportal.com/bannes/ (advblock.txt: 1642) -.uaportal.com/bannes/ -# ||uadvt.net^$third-party (advblock.txt: 1641) -.uadvt.net -# ||ua-teens.com^$third-party (advblock.txt: 1640) -.ua-teens.com -# ||txtrk.com^ (advblock.txt: 1639) -.txtrk.com -# ||tx2.ru^ (advblock.txt: 1638) -.tx2.ru -# ||twistcasino.net^ (advblock.txt: 1637) -.twistcasino.net -# ||twevent.org.ua/bn/ (advblock.txt: 1636) -.twevent.org.ua/bn/ -# ||tvoy-startup.ru^$third-party (advblock.txt: 1635) -.tvoy-startup.ru -# ||tvmir.ru/tracks/ (advblock.txt: 1634) -.tvmir.ru/tracks/ -# ||turboroller.ru^ (advblock.txt: 1633) -.turboroller.ru -# ||tubecontext.com^ (advblock.txt: 1632) -.tubecontext.com -# ||ttcl.ru^ (advblock.txt: 1631) -.ttcl.ru -# ||tsr.cdns.com.ua^ (advblock.txt: 1630) -.tsr.cdns.com.ua -# ||tryanka.ru^ (advblock.txt: 1629) -.tryanka.ru -# ||trustlink.ru^$third-party (advblock.txt: 1628) -.trustlink.ru -# ||trusearch.net/affblock/ (advblock.txt: 1627) -.trusearch.net/affblock/ -# ||trafunder.$third-party (advblock.txt: 1626) -.trafunder.*. -# ||trafogon.ru^ (advblock.txt: 1625) -.trafogon.ru -# ||trafmag.com^ (advblock.txt: 1624) -.trafmag.com -# ||traffworld.ru^ (advblock.txt: 1623) -.traffworld.ru -# ||traffstock.ru^ (advblock.txt: 1622) -.traffstock.ru -# ||traffmaster.ru^ (advblock.txt: 1621) -.traffmaster.ru -# ||traffikk.biz^ (advblock.txt: 1620) -.traffikk.biz -# ||traf.spb.ru^$third-party (advblock.txt: 1619) -.traf.spb.ru -# ||traf.biz^ (advblock.txt: 1618) -.traf.biz -# ||traf-birga.net^ (advblock.txt: 1617) -.traf-birga.net -# ||traf-3rs.com^ (advblock.txt: 1616) -.traf-3rs.com -# ||trading-sys.com/affil/banner/ (advblock.txt: 1615) -.trading-sys.com/affil/banner/ -# ||tradeone.ru^ (advblock.txt: 1614) -.tradeone.ru -# ||tradeone.com^ (advblock.txt: 1613) -.tradeone.com -# ||tradeone.com.ua^ (advblock.txt: 1612) -.tradeone.com.ua -# ||tradelinks.$third-party (advblock.txt: 1611) -.tradelinks.*. -# ||trade7.ru^$third-party (advblock.txt: 1610) -.trade7.ru -# ||torgnn.ru^$third-party (advblock.txt: 1609) -.torgnn.ru -# ||topdownloads.ru/charts/ (advblock.txt: 1608) -.topdownloads.ru/charts/ -# ||topcto.ru^$third-party (advblock.txt: 1607) -.topcto.ru -# ||topbrokers.com.ua^$third-party (advblock.txt: 1606) -.topbrokers.com.ua -# ||topadvert.ru^$third-party (advblock.txt: 1605) -.topadvert.ru -# ||top-shop.ru^$third-party (advblock.txt: 1604) -.top-shop.ru -# ||tofun.ru/traff/ (advblock.txt: 1603) -.tofun.ru/traff/ -# ||todaymix.ru^$third-party (advblock.txt: 1602) -.todaymix.ru -# ||tobe.tv/sda/ (advblock.txt: 1601) -.tobe.tv/sda/ -# ||tnx.net^ (advblock.txt: 1600) -.tnx.net -# ||tle.ru^ (advblock.txt: 1599) -.tle.ru -# ||tizzer.ru^ (advblock.txt: 1598) -.tizzer.ru -# ||tizrotba.ru^ (advblock.txt: 1597) -.tizrotba.ru -# ||tizertraf.ru (advblock.txt: 1596) -.tizertraf.ru*. -# ||tizero.ru^ (advblock.txt: 1595) -.tizero.ru -# ||tizerget.net^ (advblock.txt: 1594) -.tizerget.net -# ||timeweb.ru/img/b/ (advblock.txt: 1593) -.timeweb.ru/img/b/ -# ||timedirect.ru^ (advblock.txt: 1592) -.timedirect.ru -# ||tigame.ru/div/? (advblock.txt: 1591) -.tigame.ru/div/\? -# ||ticount.ru^ (advblock.txt: 1590) -.ticount.ru -# ||thebestphotos.ru/wp-content/uploads/banners/ (advblock.txt: 1589) -.thebestphotos.ru/wp-content/uploads/banners/ -# ||thebestphotos.ru/exper.jpg (advblock.txt: 1588) -.thebestphotos.ru/exper\.jpg -# ||testsbox.ru^$third-party (advblock.txt: 1587) -.testsbox.ru -# ||telepark.ua/tpb.php?code= (advblock.txt: 1586) -.telepark.ua/tpb\.php\?code= -# ||telderi.ru/uploads/promote/ (advblock.txt: 1585) -.telderi.ru/uploads/promote/ -# ||telderi.ru/img/banners/ (advblock.txt: 1584) -.telderi.ru/img/banners/ -# ||tehnoklad.ru^$third-party (advblock.txt: 1583) -.tehnoklad.ru -# ||teeser.ru^ (advblock.txt: 1582) -.teeser.ru -# ||teasergate.com^ (advblock.txt: 1581) -.teasergate.com -# ||teasercode.net^ (advblock.txt: 1580) -.teasercode.net -# ||teaser2go.com^ (advblock.txt: 1579) -.teaser2go.com -# ||teaser-goods.ru^ (advblock.txt: 1578) -.teaser-goods.ru -# ||tds-banner.do.am^ (advblock.txt: 1577) -.tds-banner.do.am -# ||tdmplus.ru^$third-party (advblock.txt: 1576) -.tdmplus.ru -# ||tanygin.me/tmp/ (advblock.txt: 1575) -.tanygin.me/tmp/ -# ||takru.com^ (advblock.txt: 1574) -.takru.com -# ||tak.ru^ (advblock.txt: 1573) -.tak.ru -# ||t.pusk.ru^ (advblock.txt: 1572) -.t.pusk.ru -# ||t.mediacartel.ru^ (advblock.txt: 1571) -.t.mediacartel.ru -# ||svpressa.ru^$subdocument (advblock.txt: 1570) -.svpressa.ru -# ||svpressa.ru/tmp/ (advblock.txt: 1569) -.svpressa.ru/tmp/ -# ||svpressa.ru/ad/ (advblock.txt: 1568) -.svpressa.ru/ad/ -# ||surbis.ru^$third-party (advblock.txt: 1567) -.surbis.ru -# ||superwoomen.ru^$third-party (advblock.txt: 1566) -.superwoomen.ru -# ||supertop.ru^$third-party (advblock.txt: 1565) -.supertop.ru -# ||superstyle.ru^$third-party (advblock.txt: 1564) -.superstyle.ru -# ||superfish.com^$third-party (advblock.txt: 1563) -.superfish.com -# ||supercatalog.3dn.ru^$third-party (advblock.txt: 1562) -.supercatalog.3dn.ru -# ||super.md/?col= (advblock.txt: 1561) -.super.md/\?col= -# ||sugar-traff2.com^ (advblock.txt: 1560) -.sugar-traff2.com -# ||submitter.ru*/i.php (advblock.txt: 1559) -.submitter.ru*./(.*/)?i\.php -# ||studio-moderna.com/upload/uploadTopshop (advblock.txt: 1558) -.studio-moderna.com/upload/uploadTopshop -# ||stroyka-direct.ru^ (advblock.txt: 1557) -.stroyka-direct.ru -# ||strogonet.ru^$third-party (advblock.txt: 1556) -.strogonet.ru -# ||strobist.ua/strobist_ (advblock.txt: 1555) -.strobist.ua/strobist_ -# ||stripvidz.com^$third-party (advblock.txt: 1554) -.stripvidz.com -# ||strana.az/banners/ (advblock.txt: 1553) -.strana.az/banners/ -# ||sterno.ru/widget/ (advblock.txt: 1552) -.sterno.ru/widget/ -# ||steptocash.ru^$third-party (advblock.txt: 1551) -.steptocash.ru -# ||steambuy.com^*.gif| (advblock.txt: 1550) -.steambuy.com/.*\.gif$ -# ||steambuy.com/banner/ (advblock.txt: 1549) -.steambuy.com/banner/ -# ||steamaccs.com^$third-party (advblock.txt: 1548) -.steamaccs.com -# ||steam-sell.ru^$third-party (advblock.txt: 1547) -.steam-sell.ru -# ||stdate.ru^ (advblock.txt: 1546) -.stdate.ru -# ||static.terrhq.ru^ (advblock.txt: 1545) -.static.terrhq.ru -# ||statcontent.ru^$third-party (advblock.txt: 1544) -.statcontent.ru -# ||stat.webtrack.biz/api/impression/ (advblock.txt: 1543) -.stat.webtrack.biz/api/impression/ -# ||starphotoblog.com^$third-party (advblock.txt: 1542) -.starphotoblog.com -# ||staffcop.ru/rekl/ (advblock.txt: 1541) -.staffcop.ru/rekl/ -# ||stableprofit.ru^ (advblock.txt: 1540) -.stableprofit.ru -# ||srv.mzcdn.com^ (advblock.txt: 1539) -.srv.mzcdn.com -# ||spytrack.tic.ru^ (advblock.txt: 1538) -.spytrack.tic.ru -# ||sputnik1.ru^$third-party (advblock.txt: 1537) -.sputnik1.ru -# ||sprotiv.com/bnr/ (advblock.txt: 1536) -.sprotiv.com/bnr/ -# ||sppromo.com/feed.php?$third-party (advblock.txt: 1535) -.sppromo.com/feed\.php\? -# ||sportoboz.ru^$third-party (advblock.txt: 1534) -.sportoboz.ru -# ||sport-fitnes.ru^$third-party (advblock.txt: 1533) -.sport-fitnes.ru -# ||spitter.pauk.ru^ (advblock.txt: 1532) -.spitter.pauk.ru -# ||spbland.ru/bban/ (advblock.txt: 1531) -.spbland.ru/bban/ -# ||sorcerers.net/includes/butler/butler.php? (advblock.txt: 1530) -.sorcerers.net/includes/butler/butler\.php\? -# ||softbn.ru^$third-party (advblock.txt: 1529) -.softbn.ru -# ||soft-teleport.ru/uploads/ad/ (advblock.txt: 1528) -.soft-teleport.ru/uploads/ad/ -# ||socialmart.ru/widget/ (advblock.txt: 1527) -.socialmart.ru/widget/ -# ||smsvcash.ru^ (advblock.txt: 1526) -.smsvcash.ru -# ||smsfiles.ru/ban*.gif (advblock.txt: 1525) -.smsfiles.ru/ban.*\.gif -# ||smsconvertv3.ru^$third-party (advblock.txt: 1524) -.smsconvertv3.ru -# ||smile32.ru^$third-party (advblock.txt: 1523) -.smile32.ru -# ||smigid.ru^$third-party (advblock.txt: 1522) -.smigid.ru -# ||smiar.ru^ (advblock.txt: 1521) -.smiar.ru -# ||smi2.ru/data/$third-party (advblock.txt: 1520) -.smi2.ru/data/ -# ||smartbucks.ru^ (advblock.txt: 1519) -.smartbucks.ru -# ||smart-soft.ru^$third-party (advblock.txt: 1518) -.smart-soft.ru -# ||slimp.net^$third-party (advblock.txt: 1517) -.slimp.net -# ||slavabogam.ru/catalog/partner/ (advblock.txt: 1516) -.slavabogam.ru/catalog/partner/ -# ||skymec.ru/image/banners/ (advblock.txt: 1515) -.skymec.ru/image/banners/ -# ||skylog.kz/img.php? (advblock.txt: 1514) -.skylog.kz/img\.php\? -# ||skinon.ru/uploads/media/bnr_ (advblock.txt: 1513) -.skinon.ru/uploads/media/bnr_ -# ||sitetraff.ru^$third-party (advblock.txt: 1512) -.sitetraff.ru -# ||sir.uz^ (advblock.txt: 1511) -.sir.uz -# ||simplity.ru^$third-party (advblock.txt: 1510) -.simplity.ru -# ||simplechange.ru/promo/ (advblock.txt: 1509) -.simplechange.ru/promo/ -# ||shopik.tv^$third-party,subdocument (advblock.txt: 1508) -.shopik.tv -# ||sexprice.ru^$third-party (advblock.txt: 1506) -.sexprice.ru -# ||sexplay.com.ua^$third-party (advblock.txt: 1505) -.sexplay.com.ua -# ||sexfilms.ru^$third-party (advblock.txt: 1504) -.sexfilms.ru -# ||sexfabrika.ru/*.gif (advblock.txt: 1503) -.sexfabrika.ru/.*\.gif -# ||sex-finger.com^$third-party (advblock.txt: 1502) -.sex-finger.com -# ||sevensteps.biz^$third-party (advblock.txt: 1501) -.sevensteps.biz -# ||setlinks.ru^$third-party (advblock.txt: 1500) -.setlinks.ru -# ||servidormensseger.hotbox.ru^ (advblock.txt: 1499) -.servidormensseger.hotbox.ru -# ||server.adeasy.ru^ (advblock.txt: 1498) -.server.adeasy.ru -# ||seriouspartner.ru^$third-party (advblock.txt: 1497) -.seriouspartner.ru -# ||serialinfo.ru^$third-party (advblock.txt: 1496) -.serialinfo.ru -# ||seotechnology.ru/imgygpag.php? (advblock.txt: 1495) -.seotechnology.ru/imgygpag\.php\? -# ||seotechnology.ru/imgseo.php? (advblock.txt: 1494) -.seotechnology.ru/imgseo\.php\? -# ||seorate.ru^$third-party (advblock.txt: 1493) -.seorate.ru -# ||seopult.ru^$third-party (advblock.txt: 1492) -.seopult.ru -# ||seoliner.ru^$third-party (advblock.txt: 1491) -.seoliner.ru -# ||seoheep.com/affiliate/ (advblock.txt: 1490) -.seoheep.com/affiliate/ -# ||seo-sport.ru^$third-party (advblock.txt: 1488) -.seo-sport.ru -# ||seo-monster.ru/img_ (advblock.txt: 1487) -.seo-monster.ru/img_ -# ||senseagency.ru^$third-party (advblock.txt: 1486) -.senseagency.ru -# ||selectornews.com^$third-party (advblock.txt: 1485) -.selectornews.com -# ||secure-it.imrworldwide.com/cgi-bin/m? (advblock.txt: 1484) -.secure-it.imrworldwide.com/cgi-bin/m\? -# ||searchmeta.webhost.ru^ (advblock.txt: 1483) -.searchmeta.webhost.ru -# ||scrool.ru^$third-party (advblock.txt: 1482) -.scrool.ru -# ||sb.google.com/safebrowsing/update (advblock.txt: 1481) -.sb.google.com/safebrowsing/update -# ||sb-money.ru^$third-party (advblock.txt: 1480) -.sb-money.ru -# ||saturn-plus.ru/downloads/$third-party (advblock.txt: 1479) -.saturn-plus.ru/downloads/ -# ||sape.ru/images/banners/ (advblock.txt: 1478) -.sape.ru/images/banners/ -# ||sape.ru/bn/ (advblock.txt: 1477) -.sape.ru/bn/ -# ||sampishi.ru^$third-party (advblock.txt: 1476) -.sampishi.ru -# ||sabrinavi.ru/external_list.js? (advblock.txt: 1475) -.sabrinavi.ru/external_list\.js\? -# ||s.s-ports.ru/sites/default/files/i/brandings/ (advblock.txt: 1474) -.s.s-ports.ru/sites/default/files/i/brandings/ -# ||s.s-ports.ru/i/$third-party (advblock.txt: 1473) -.s.s-ports.ru/i/ -# ||s.ladoshki.com/pics/shirts/ (advblock.txt: 1472) -.s.ladoshki.com/pics/shirts/ -# ||s.ladoshki.com/p/a/ (advblock.txt: 1471) -.s.ladoshki.com/p/a/ -# ||s.ex.region70.ru^$third-party (advblock.txt: 1470) -.s.ex.region70.ru -# ||s-pl.ru/downloads/$third-party (advblock.txt: 1469) -.s-pl.ru/downloads/ -# ||ruwm.ru/links.php? (advblock.txt: 1468) -.ruwm.ru/links\.php\? -# ||ruvideo.net/obzor/ (advblock.txt: 1467) -.ruvideo.net/obzor/ -# ||rustrackers.ru^$third-party (advblock.txt: 1466) -.rustrackers.ru -# ||rustizer.com^ (advblock.txt: 1465) -.rustizer.com -# ||ruspravda.info/resources/images/$third-party (advblock.txt: 1464) -.ruspravda.info/resources/images/ -# ||rusnabat.com^$third-party (advblock.txt: 1463) -.rusnabat.com -# ||rusmedserv.com^$third-party (advblock.txt: 1462) -.rusmedserv.com -# ||ruskompas.ru/incs/ (advblock.txt: 1461) -.ruskompas.ru/incs/ -# ||ruscontext.com^$third-party (advblock.txt: 1460) -.ruscontext.com -# ||ruscams.com^$third-party (advblock.txt: 1459) -.ruscams.com -# ||rus-porno.ru^$third-party (advblock.txt: 1458) -.rus-porno.ru -# ||ruinfosale.com/banner/ (advblock.txt: 1457) -.ruinfosale.com/banner/ -# ||ru.gg/werbemittel/ (advblock.txt: 1456) -.ru.gg/werbemittel/ -# ||ru-top.net/img/ (advblock.txt: 1455) -.ru-top.net/img/ -# ||rssnewser.ru/add (advblock.txt: 1454) -.rssnewser.ru/add -# ||rs-context.ru^$third-party (advblock.txt: 1453) -.rs-context.ru -# ||rrru.ru/img.php? (advblock.txt: 1452) -.rrru.ru/img\.php\? -# ||rotator.$third-party (advblock.txt: 1450) -.rotator.*. -# ||rotapost.ru^$third-party (advblock.txt: 1449) -.rotapost.ru -# ||rot.rusoul.ru/rotator/ (advblock.txt: 1448) -.rot.rusoul.ru/rotator/ -# ||rosphoto.com/img/ (advblock.txt: 1447) -.rosphoto.com/img/ -# ||rosban.su^ (advblock.txt: 1446) -.rosban.su -# ||rorer.ru^$third-party (advblock.txt: 1445) -.rorer.ru -# ||rookee.ru^$third-party (advblock.txt: 1444) -.rookee.ru -# ||rollad.ru^ (advblock.txt: 1443) -.rollad.ru -# ||robottext.ru^ (advblock.txt: 1442) -.robottext.ru -# ||rnbn.ru^$third-party (advblock.txt: 1441) -.rnbn.ru -# ||rivalo.com^*/affiliate/ (advblock.txt: 1440) -.rivalo.com/.*/affiliate/ -# ||rimvoyeur.ru^$third-party (advblock.txt: 1439) -.rimvoyeur.ru -# ||richtraffic.ru^$third-party (advblock.txt: 1438) -.richtraffic.ru -# ||richpopup.com^$third-party (advblock.txt: 1437) -.richpopup.com -# ||richclick.ru^$third-party (advblock.txt: 1436) -.richclick.ru -# ||rich-banner.ru^ (advblock.txt: 1435) -.rich-banner.ru -# ||reklamnoedelo.com^$third-party (advblock.txt: 1434) -.reklamnoedelo.com -# ||reklamist.ru^ (advblock.txt: 1433) -.reklamist.ru -# ||reklamaster.com^$third-party (advblock.txt: 1432) -.reklamaster.com -# ||reklama.lv/promotion/ (advblock.txt: 1431) -.reklama.lv/promotion/ -# ||reggun.ru/images/b*_ (advblock.txt: 1430) -.reggun.ru/images/b.*_ -# ||regac.ru^$third-party (advblock.txt: 1429) -.regac.ru -# ||reg.ru^*_widget. (advblock.txt: 1428) -.reg.ru/.*_widget\. -# ||reforum.ru/j/partner/ (advblock.txt: 1427) -.reforum.ru/j/partner/ -# ||refo.ru^$third-party (advblock.txt: 1426) -.refo.ru -# ||referalov.net^$third-party (advblock.txt: 1425) -.referalov.net -# ||refer.ru^$third-party (advblock.txt: 1424) -.refer.ru -# ||redsurf.ru/bn/ (advblock.txt: 1423) -.redsurf.ru/bn/ -# ||red.by/redban (advblock.txt: 1422) -.red.by/redban -# ||recreativ.ru^ (advblock.txt: 1421) -.recreativ.ru -# ||recreativ.com^ (advblock.txt: 1420) -.recreativ.com -# ||recreativ.com.ua^ (advblock.txt: 1419) -.recreativ.com.ua -# ||rec2000.at.ua^$third-party (advblock.txt: 1418) -.rec2000.at.ua -# ||realfuckdates.net^$third-party,image,object (advblock.txt: 1417) -.realfuckdates.net -# ||rb.sport-express.ru^ (advblock.txt: 1416) -.rb.sport-express.ru -# ||rb.rfn.ru^ (advblock.txt: 1415) -.rb.rfn.ru -# ||rax.ru^$third-party (advblock.txt: 1414) -.rax.ru -# ||rating.km.ua/*? (advblock.txt: 1413) -.rating.km.ua/.*\? -# ||rate.ee/pics/banners/ (advblock.txt: 1412) -.rate.ee/pics/banners/ -# ||rate.7surf.ru/img.php? (advblock.txt: 1411) -.rate.7surf.ru/img\.php\? -# ||rarenok.biz^ (advblock.txt: 1410) -.rarenok.biz -# ||raptop.ru/images/img*.gif (advblock.txt: 1409) -.raptop.ru/images/img.*\.gif -# ||rambler.ru/xpromo_ (advblock.txt: 1408) -.rambler.ru/xpromo_ -# ||radio-tech.ru/pic/pages/ (advblock.txt: 1407) -.radio-tech.ru/pic/pages/ -# ||radikal.ru/bh.ashx? (advblock.txt: 1406) -.radikal.ru/bh\.ashx\? -# ||r1media.ru^$third-party (advblock.txt: 1405) -.r1media.ru -# ||r.qip.ru^ (advblock.txt: 1404) -.r.qip.ru -# ||r-money.ru^$third-party (advblock.txt: 1403) -.r-money.ru -# ||qzx.ru/gf/ (advblock.txt: 1402) -.qzx.ru/gf/ -# ||qwex.ru^$third-party (advblock.txt: 1401) -.qwex.ru -# ||qle.ru/cgi-bin/ (advblock.txt: 1399) -.qle.ru/cgi-bin/ -# ||putana.cz^$third-party (advblock.txt: 1398) -.putana.cz -# ||pustoty.net^$third-party (advblock.txt: 1397) -.pustoty.net -# ||pult.ru/pictures/p_banner/ (advblock.txt: 1396) -.pult.ru/pictures/p_banner/ -# ||puls.lv^$third-party (advblock.txt: 1395) -.puls.lv -# ||protect-lab.com/promo/ (advblock.txt: 1394) -.protect-lab.com/promo/ -# ||prostootdam.ru/modules/about/ (advblock.txt: 1393) -.prostootdam.ru/modules/about/ -# ||prosto.cn.ua^$third-party (advblock.txt: 1392) -.prosto.cn.ua -# ||prospero.ru^$third-party (advblock.txt: 1391) -.prospero.ru -# ||pronskaya.ru/b/$third-party (advblock.txt: 1390) -.pronskaya.ru/b/ -# ||promoloader.com^ (advblock.txt: 1389) -.promoloader.com -# ||promofor.me^ (advblock.txt: 1388) -.promofor.me -# ||promobuster.net^ (advblock.txt: 1387) -.promobuster.net -# ||promoblock.$third-party (advblock.txt: 1386) -.promoblock.*. -# ||promo.md^$third-party (advblock.txt: 1385) -.promo.md -# ||promag.com.ua/images/banner/ (advblock.txt: 1384) -.promag.com.ua/images/banner/ -# ||profitwizard.ru^ (advblock.txt: 1383) -.profitwizard.ru -# ||profitwizard.net^ (advblock.txt: 1382) -.profitwizard.net -# ||profit-partner.ru^$third-party (advblock.txt: 1381) -.profit-partner.ru -# ||prodnepr.dp.ua/informermp.php (advblock.txt: 1380) -.prodnepr.dp.ua/informermp\.php -# ||prizma.kz^ (advblock.txt: 1379) -.prizma.kz -# ||privatzone.biz^ (advblock.txt: 1378) -.privatzone.biz -# ||privatteaser.ru (advblock.txt: 1377) -.privatteaser.ru*. -# ||price.ua^$third-party (advblock.txt: 1376) -.price.ua -# ||pressball.by/files/$object (advblock.txt: 1375) -.pressball.by/files/ -# ||pr-inc.biz^ (advblock.txt: 1374) -.pr-inc.biz -# ||pozzitiv.ru^$third-party (advblock.txt: 1373) -.pozzitiv.ru -# ||post.rmbn.net^ (advblock.txt: 1372) -.post.rmbn.net -# ||pornula1.com^$third-party (advblock.txt: 1371) -.pornula1.com -# ||porno4you.org/uploads/ (advblock.txt: 1370) -.porno4you.org/uploads/ -# ||popuptraf.$third-party (advblock.txt: 1369) -.popuptraf.*. -# ||popularsite.ru/*.php? (advblock.txt: 1368) -.popularsite.ru/.*\.php\? -# ||popad.ru^$third-party (advblock.txt: 1367) -.popad.ru -# ||pop-wmz.ru^$third-party (advblock.txt: 1366) -.pop-wmz.ru -# ||pop-banner.$third-party (advblock.txt: 1365) -.pop-banner.*. -# ||ponsshop.ru^$third-party (advblock.txt: 1364) -.ponsshop.ru -# ||pomogi.org/urgent/1/ (advblock.txt: 1363) -.pomogi.org/urgent/1/ -# ||pokrutim.ru^ (advblock.txt: 1362) -.pokrutim.ru -# ||poisk.su/top.php? (advblock.txt: 1361) -.poisk.su/top\.php\? -# ||poisk.su/img.php? (advblock.txt: 1360) -.poisk.su/img\.php\? -# ||plus10sm.ru^$third-party (advblock.txt: 1359) -.plus10sm.ru -# ||plesen.net/kp*. (advblock.txt: 1358) -.plesen.net/kp.*\. -# ||play2.biz^$third-party (advblock.txt: 1357) -.play2.biz -# ||play-in-flash.com/wp-content/$third-party (advblock.txt: 1356) -.play-in-flash.com/wp-content/ -# ||platinumcode.net^$third-party (advblock.txt: 1355) -.platinumcode.net -# ||planetaua.net^$third-party (advblock.txt: 1354) -.planetaua.net -# ||placeoff.ru^ (advblock.txt: 1353) -.placeoff.ru -# ||pix-cdn.org/image/vk/ (advblock.txt: 1352) -.pix-cdn.org/image/vk/ -# ||pix-cdn.org/image/ts/ (advblock.txt: 1351) -.pix-cdn.org/image/ts/ -# ||pix-cdn.org/image/banner/ (advblock.txt: 1350) -.pix-cdn.org/image/banner/ -# ||pirojok.net^$third-party (advblock.txt: 1349) -.pirojok.net -# ||pinkintim.com/image/$third-party (advblock.txt: 1348) -.pinkintim.com/image/ -# ||pingmedia.ru^$third-party (advblock.txt: 1347) -.pingmedia.ru -# ||pickegg.com^ (advblock.txt: 1346) -.pickegg.com -# ||picbay.ru^$third-party (advblock.txt: 1345) -.picbay.ru -# ||personalspy.ru^$third-party (advblock.txt: 1344) -.personalspy.ru -# ||penzensky.ru^$third-party (advblock.txt: 1343) -.penzensky.ru -# ||penza-online.ru/cgi-bin/userstats.pl? (advblock.txt: 1342) -.penza-online.ru/cgi-bin/userstats\.pl\? -# ||peel-down.ru^$third-party (advblock.txt: 1341) -.peel-down.ru -# ||pcweek.ru/upload/*/160x100 (advblock.txt: 1340) -.pcweek.ru/upload/.*/160x100 -# ||pcmag.ru/upload/$object (advblock.txt: 1339) -.pcmag.ru/upload/ -# ||pc-user-shop.com/aff/ (advblock.txt: 1338) -.pc-user-shop.com/aff/ -# ||pc-newcomer.ru/partner/ (advblock.txt: 1337) -.pc-newcomer.ru/partner/ -# ||pbnet.ru^$third-party (advblock.txt: 1336) -.pbnet.ru -# ||pbid.iforex.com^$third-party (advblock.txt: 1335) -.pbid.iforex.com -# ||paytraf.ru^ (advblock.txt: 1334) -.paytraf.ru -# ||payban.su^ (advblock.txt: 1333) -.payban.su -# ||pay-partner.ru^$third-party (advblock.txt: 1332) -.pay-partner.ru -# ||pay-hit.com^ (advblock.txt: 1331) -.pay-hit.com -# ||passport-rk.ru/widgets/partner/ (advblock.txt: 1330) -.passport-rk.ru/widgets/partner/ -# ||partners.vsemayki.ru^$third-party (advblock.txt: 1329) -.partners.vsemayki.ru -# ||partners.otpusk.com^$third-party (advblock.txt: 1328) -.partners.otpusk.com -# ||partners.mobiguru.ru^ (advblock.txt: 1327) -.partners.mobiguru.ru -# ||partner.privatbank.ua^$third-party (advblock.txt: 1326) -.partner.privatbank.ua -# ||partner.pladform.ru^ (advblock.txt: 1325) -.partner.pladform.ru -# ||partner.join.com.ua^$script (advblock.txt: 1324) -.partner.join.com.ua -# ||partner.ixi.ua^ (advblock.txt: 1323) -.partner.ixi.ua -# ||partner.hideme.ru^$third-party (advblock.txt: 1322) -.partner.hideme.ru -# ||partner.gameboss.ru^$third-party (advblock.txt: 1321) -.partner.gameboss.ru -# ||partner.allsoft.ru^ (advblock.txt: 1320) -.partner.allsoft.ru -# ||partner.alfa.kz^ (advblock.txt: 1319) -.partner.alfa.kz -# ||parimatch.com/jss/$object (advblock.txt: 1318) -.parimatch.com/jss/ -# ||pammru.net^$third-party (advblock.txt: 1317) -.pammru.net -# ||palantir.in/showban*.php? (advblock.txt: 1316) -.palantir.in/showban.*\.php\? -# ||oxysoft.ru^$third-party (advblock.txt: 1315) -.oxysoft.ru -# ||owebmoney.ru^$third-party (advblock.txt: 1314) -.owebmoney.ru -# ||owap.su^ (advblock.txt: 1313) -.owap.su -# ||oru.ru^$third-party (advblock.txt: 1312) -.oru.ru -# ||or.ru/inner| (advblock.txt: 1311) -.or.ru/inner$ -# ||openlinks.ru^$third-party (advblock.txt: 1310) -.openlinks.ru -# ||open.by/bnrs/ (advblock.txt: 1309) -.open.by/bnrs/ -# ||oowl.ru/ab/ (advblock.txt: 1308) -.oowl.ru/ab/ -# ||only4men.ru^$third-party (advblock.txt: 1307) -.only4men.ru -# ||onlineresume.ru/banner*? (advblock.txt: 1306) -.onlineresume.ru/banner.*\? -# ||ongm.net^*/images/banner.png (advblock.txt: 1305) -.ongm.net/.*/images/banner\.png -# ||onban.ru^ (advblock.txt: 1304) -.onban.ru -# ||oiya.ru^ (advblock.txt: 1303) -.oiya.ru -# ||obmenki.ru.com^$third-party (advblock.txt: 1302) -.obmenki.ru.com -# ||oberegi-runi.ru^*partnership/ (advblock.txt: 1301) -.oberegi-runi.ru/.*partnership/ -# ||oberegi-runi.ru/assets/ (advblock.txt: 1300) -.oberegi-runi.ru/assets/ -# ||numbers.md^$third-party (advblock.txt: 1299) -.numbers.md -# ||nu-stars.com^$third-party (advblock.txt: 1298) -.nu-stars.com -# ||nsoft-s.com^$third-party (advblock.txt: 1297) -.nsoft-s.com -# ||novosti.dn.ua^$object (advblock.txt: 1296) -.novosti.dn.ua -# ||novem.pl^$third-party (advblock.txt: 1295) -.novem.pl -# ||novatizer.com^$third-party (advblock.txt: 1294) -.novatizer.com -# ||nova-star.ru^$third-party (advblock.txt: 1293) -.nova-star.ru -# ||nostalgia.onego.ru^ (advblock.txt: 1292) -.nostalgia.onego.ru -# ||nomer1.ru.ru^ (advblock.txt: 1291) -.nomer1.ru.ru -# ||noion.ru^$third-party (advblock.txt: 1290) -.noion.ru -# ||nnn.novoteka.ru^$third-party (advblock.txt: 1289) -.nnn.novoteka.ru -# ||nline.net.ua/nl_banner/ (advblock.txt: 1288) -.nline.net.ua/nl_banner/ -# ||ningres.ru^ (advblock.txt: 1287) -.ningres.ru -# ||nimp.org^$third-party (advblock.txt: 1286) -.nimp.org -# ||nic.ua/i/b/ (advblock.txt: 1285) -.nic.ua/i/b/ -# ||ngads.com^$third-party (advblock.txt: 1284) -.ngads.com -# ||nextonmarket.com/i/banners/ (advblock.txt: 1283) -.nextonmarket.com/i/banners/ -# ||newsprom.ru/img/ (advblock.txt: 1282) -.newsprom.ru/img/ -# ||news.rin.ru^$third-party (advblock.txt: 1281) -.news.rin.ru -# ||newclick.org^$third-party (advblock.txt: 1280) -.newclick.org -# ||netporno.org^$third-party (advblock.txt: 1279) -.netporno.org -# ||neosmi.ru^$third-party (advblock.txt: 1278) -.neosmi.ru -# ||neosap.ru^$third-party (advblock.txt: 1277) -.neosap.ru -# ||neoban.su^ (advblock.txt: 1276) -.neoban.su -# ||nehudeyka.ru^$third-party (advblock.txt: 1275) -.nehudeyka.ru -# ||need2buy.1gb.ru^ (advblock.txt: 1274) -.need2buy.1gb.ru -# ||nclick.ru^ (advblock.txt: 1273) -.nclick.ru -# ||nasf.ru/ad/ (advblock.txt: 1272) -.nasf.ru/ad/ -# ||nadavi.ru^$third-party (advblock.txt: 1271) -.nadavi.ru -# ||nadavi.com.ua^$third-party (advblock.txt: 1270) -.nadavi.com.ua -# ||n.vipadvert.net^ (advblock.txt: 1269) -.n.vipadvert.net -# ||mytraf.ru^ (advblock.txt: 1268) -.mytraf.ru -# ||myshopthings.com/partner-rtb.js? (advblock.txt: 1267) -.myshopthings.com/partner-rtb\.js\? -# ||myragon.ru^$third-party,~popup,popup (advblock.txt: 1266) -.myragon.ru -# ||myjulia.ru^$third-party (advblock.txt: 1265) -.myjulia.ru -# ||myjane.ru^$third-party (advblock.txt: 1264) -.myjane.ru -# ||myiphone.be^$third-party (advblock.txt: 1263) -.myiphone.be -# ||myinfocenter.ru^$third-party (advblock.txt: 1262) -.myinfocenter.ru -# ||myhosti.ru/manimg/userdata/ (advblock.txt: 1261) -.myhosti.ru/manimg/userdata/ -# ||mydatingcash.com^ (advblock.txt: 1260) -.mydatingcash.com -# ||musictraffic.ru^$third-party (advblock.txt: 1259) -.musictraffic.ru -# ||musicrank.ru/js.php? (advblock.txt: 1258) -.musicrank.ru/js\.php\? -# ||multonly.ru^$third-party (advblock.txt: 1257) -.multonly.ru -# ||multiclick.ru^ (advblock.txt: 1256) -.multiclick.ru -# ||moviecash.ru^$third-party (advblock.txt: 1255) -.moviecash.ru -# ||mostinfo.net/img/top/ (advblock.txt: 1254) -.mostinfo.net/img/top/ -# ||moshoster.ru/images/$third-party (advblock.txt: 1253) -.moshoster.ru/images/ -# ||moovy.ru/b*.php? (advblock.txt: 1252) -.moovy.ru/b.*\.php\? -# ||moonbit.co.in/img/ (advblock.txt: 1251) -.moonbit.co.in/img/ -# ||moogle.ru^$third-party (advblock.txt: 1250) -.moogle.ru -# ||monolit.franchia.pp.ua^$third-party (advblock.txt: 1249) -.monolit.franchia.pp.ua -# ||moneysyst.biz^ (advblock.txt: 1248) -.moneysyst.biz -# ||money.loveplanet.ru/nb/ (advblock.txt: 1247) -.money.loveplanet.ru/nb/ -# ||money-job.ru^$third-party (advblock.txt: 1246) -.money-job.ru -# ||monetti.ru/images/banners/ (advblock.txt: 1245) -.monetti.ru/images/banners/ -# ||moijs.com^ (advblock.txt: 1244) -.moijs.com -# ||moifoto.ru/rek_ (advblock.txt: 1243) -.moifoto.ru/rek_ -# ||modastro.ee^$third-party (advblock.txt: 1242) -.modastro.ee -# ||mobn.net^$third-party (advblock.txt: 1241) -.mobn.net -# ||mobiads.ru^ (advblock.txt: 1240) -.mobiads.ru -# ||mobi-cinema.net^$third-party (advblock.txt: 1239) -.mobi-cinema.net -# ||mnogo.ru^$third-party (advblock.txt: 1238) -.mnogo.ru -# ||mmcispartners.com^$third-party (advblock.txt: 1237) -.mmcispartners.com -# ||mlsn.ru/specials/ (advblock.txt: 1236) -.mlsn.ru/specials/ -# ||mlgame.ru/wiki/attach/Referal/ (advblock.txt: 1235) -.mlgame.ru/wiki/attach/Referal/ -# ||mirvolos.com$third-party (advblock.txt: 1234) -.mirvolos.com*. -# ||mirmaek.ru^$third-party (advblock.txt: 1233) -.mirmaek.ru -# ||miralinks.ru^$third-party (advblock.txt: 1232) -.miralinks.ru -# ||mir-games.org/uploads/$third-party (advblock.txt: 1231) -.mir-games.org/uploads/ -# ||miniban.ru^ (advblock.txt: 1230) -.miniban.ru -# ||micro-win.com^$third-party (advblock.txt: 1229) -.micro-win.com -# ||mgnc.org/external-banners/ (advblock.txt: 1228) -.mgnc.org/external-banners/ -# ||metod-online.com^*/promo/ (advblock.txt: 1227) -.metod-online.com/.*/promo/ -# ||metaprofit.net^$third-party (advblock.txt: 1226) -.metaprofit.net -# ||meta.ua/*/partn.$script,stylesheet (advblock.txt: 1225) -.meta.ua/.*/partn\. -# ||mercatos.ru^$third-party (advblock.txt: 1224) -.mercatos.ru -# ||megawmr.ru^$third-party (advblock.txt: 1223) -.megawmr.ru -# ||megastock.ru^$third-party (advblock.txt: 1222) -.megastock.ru -# ||megaline.kz/images/$object (advblock.txt: 1220) -.megaline.kz/images/ -# ||megaban.com.ua^ (advblock.txt: 1219) -.megaban.com.ua -# ||mega-cash.net^$third-party (advblock.txt: 1218) -.mega-cash.net -# ||mediatraffic.com.ua^ (advblock.txt: 1217) -.mediatraffic.com.ua -# ||mediarealtor.ru^ (advblock.txt: 1216) -.mediarealtor.ru -# ||mediaget.com^$third-party (advblock.txt: 1215) -.mediaget.com -# ||mediacontext.$third-party (advblock.txt: 1214) -.mediacontext.*. -# ||media.online.ua/all/gft/ (advblock.txt: 1213) -.media.online.ua/all/gft/ -# ||med.finsecret.ru^$third-party (advblock.txt: 1212) -.med.finsecret.ru -# ||mdesign.planet.ee^$third-party (advblock.txt: 1211) -.mdesign.planet.ee -# ||mbn.su^ (advblock.txt: 1210) -.mbn.su -# ||mbn.kr.ua^ (advblock.txt: 1209) -.mbn.kr.ua -# ||mben.ru^$third-party (advblock.txt: 1208) -.mben.ru -# ||mbanner.net^$third-party (advblock.txt: 1207) -.mbanner.net -# ||mazuma.ru^$third-party (advblock.txt: 1206) -.mazuma.ru -# ||mayka.kz^$third-party (advblock.txt: 1205) -.mayka.kz -# ||maxtrust.ru^$third-party (advblock.txt: 1204) -.maxtrust.ru -# ||maxdps.ru^$third-party (advblock.txt: 1203) -.maxdps.ru -# ||marketgid.com^$third-party,~popup,popup (advblock.txt: 1202) -.marketgid.com -# ||market.autoua.net/partnership/uxi/?ref= (advblock.txt: 1201) -.market.autoua.net/partnership/uxi/\?ref= -# ||marathonbet.com/view.php? (advblock.txt: 1200) -.marathonbet.com/view\.php\? -# ||manwm.ru^$third-party (advblock.txt: 1199) -.manwm.ru -# ||managermest.ru^ (advblock.txt: 1198) -.managermest.ru -# ||mamyshev.ru/bn/ (advblock.txt: 1197) -.mamyshev.ru/bn/ -# ||mainlink.ru^$third-party (advblock.txt: 1195) -.mainlink.ru -# ||mail.banklife.ru^$third-party (advblock.txt: 1194) -.mail.banklife.ru -# ||magna.ru^$third-party (advblock.txt: 1192) -.magna.ru -# ||mabila.ua^$third-party (advblock.txt: 1191) -.mabila.ua -# ||m2k.ru/cgi-bin/ (advblock.txt: 1190) -.m2k.ru/cgi-bin/ -# ||luxurycash.net^ (advblock.txt: 1189) -.luxurycash.net -# ||luxcdn.com^ (advblock.txt: 1188) -.luxcdn.com -# ||luxcash.ru^ (advblock.txt: 1187) -.luxcash.ru -# ||lux-bn.com.ua^ (advblock.txt: 1186) -.lux-bn.com.ua -# ||lovn.ru^$third-party (advblock.txt: 1185) -.lovn.ru -# ||loveadvert.ru^ (advblock.txt: 1184) -.loveadvert.ru -# ||lopuer.biz^ (advblock.txt: 1183) -.lopuer.biz -# ||looksmile.ru^$third-party (advblock.txt: 1182) -.looksmile.ru -# ||loadserial.ru^ (advblock.txt: 1181) -.loadserial.ru -# ||loadpays.com^*/images/banners/ (advblock.txt: 1180) -.loadpays.com/.*/images/banners/ -# ||loadpartners.com^ (advblock.txt: 1179) -.loadpartners.com -# ||loadmult.ru^ (advblock.txt: 1178) -.loadmult.ru -# ||loadmovie.ru^ (advblock.txt: 1177) -.loadmovie.ru -# ||liveclix.net^ (advblock.txt: 1176) -.liveclix.net -# ||litres.ru/pages/get_vidget/? (advblock.txt: 1175) -.litres.ru/pages/get_vidget/\? -# ||listsites.ru^$third-party (advblock.txt: 1174) -.listsites.ru -# ||liny-ads.net^ (advblock.txt: 1173) -.liny-ads.net -# ||linkzilla.ru/seo/ (advblock.txt: 1172) -.linkzilla.ru/seo/ -# ||linkwm.ru^$third-party (advblock.txt: 1171) -.linkwm.ru -# ||linkme.org.ua^ (advblock.txt: 1170) -.linkme.org.ua -# ||linkexchange.ru^ (advblock.txt: 1169) -.linkexchange.ru -# ||linkcase.ru^ (advblock.txt: 1168) -.linkcase.ru -# ||lif.yaicom.ru^ (advblock.txt: 1167) -.lif.yaicom.ru -# ||liex.ru^$third-party (advblock.txt: 1166) -.liex.ru -# ||liderus.ru^ (advblock.txt: 1165) -.liderus.ru -# ||libertytraffic.ru^ (advblock.txt: 1164) -.libertytraffic.ru -# ||letssex.$third-party (advblock.txt: 1163) -.letssex.*. -# ||letsseks.$third-party (advblock.txt: 1162) -.letsseks.*. -# ||letitsoft.com^ (advblock.txt: 1161) -.letitsoft.com -# ||letitfile.ru/images/$third-party (advblock.txt: 1160) -.letitfile.ru/images/ -# ||letitbit-porno.com^$third-party (advblock.txt: 1159) -.letitbit-porno.com -# ||leporno.org/img/ (advblock.txt: 1158) -.leporno.org/img/ -# ||lenty.ru^$third-party (advblock.txt: 1157) -.lenty.ru -# ||leadiacloud.com/widget.js? (advblock.txt: 1156) -.leadiacloud.com/widget\.js\? -# ||laser44.ru^$third-party (advblock.txt: 1155) -.laser44.ru -# ||lakidar.net^$third-party,subdocument (advblock.txt: 1154) -.lakidar.net -# ||ladytrack.net^ (advblock.txt: 1153) -.ladytrack.net -# ||ladyshopping.ru^$third-party (advblock.txt: 1152) -.ladyshopping.ru -# ||labirint.ru/design/partner/ (advblock.txt: 1151) -.labirint.ru/design/partner/ -# ||kvasu.net/*/$object (advblock.txt: 1150) -.kvasu.net/.*/ -# ||kv.by/img/$object (advblock.txt: 1149) -.kv.by/img/ -# ||kupitraff.ru^$third-party (advblock.txt: 1148) -.kupitraff.ru -# ||kset.kz/imgb/ (advblock.txt: 1147) -.kset.kz/imgb/ -# ||krutilki.ru^ (advblock.txt: 1146) -.krutilki.ru -# ||krutilka.net^ (advblock.txt: 1145) -.krutilka.net -# ||kritka.kz^$third-party (advblock.txt: 1144) -.kritka.kz -# ||kredit.beregu.ru^$third-party (advblock.txt: 1143) -.kredit.beregu.ru -# ||kpk.me^$third-party (advblock.txt: 1142) -.kpk.me -# ||kpdn.ru^$third-party (advblock.txt: 1141) -.kpdn.ru -# ||komok.com^$third-party (advblock.txt: 1140) -.komok.com -# ||komisite.ru/images/ban*.gif (advblock.txt: 1139) -.komisite.ru/images/ban.*\.gif -# ||kolobok.us/button/ (advblock.txt: 1138) -.kolobok.us/button/ -# ||knstats.com^$third-party (advblock.txt: 1137) -.knstats.com -# ||kleo.ru/cgi-bin/ (advblock.txt: 1136) -.kleo.ru/cgi-bin/ -# ||kioskas.lt^*/pop.php? (advblock.txt: 1135) -.kioskas.lt/.*/pop\.php\? -# ||kinozov.ru^$third-party,script (advblock.txt: 1134) -.kinozov.ru -# ||kinoman.$third-party (advblock.txt: 1133) -.kinoman.*. -# ||kinolib.com^$third-party (advblock.txt: 1132) -.kinolib.com -# ||kinoclub.org^$third-party (advblock.txt: 1130) -.kinoclub.org -# ||kingpeon.com^$third-party (advblock.txt: 1129) -.kingpeon.com -# ||ket.ru^$third-party (advblock.txt: 1128) -.ket.ru -# ||kazban.su^ (advblock.txt: 1127) -.kazban.su -# ||kavkazweb.net/tc.cgi? (advblock.txt: 1126) -.kavkazweb.net/tc\.cgi\? -# ||kaspersky.ru/images/miscellaneouses/468- (advblock.txt: 1125) -.kaspersky.ru/images/miscellaneouses/468- -# ||kartinka.com.ua/partner/load? (advblock.txt: 1124) -.kartinka.com.ua/partner/load\? -# ||karambas.ru/flash (advblock.txt: 1123) -.karambas.ru/flash -# ||karabalikelektronik.com/images/reklam (advblock.txt: 1122) -.karabalikelektronik.com/images/reklam -# ||kakgu.ru^$third-party (advblock.txt: 1121) -.kakgu.ru -# ||kadamata.com^ (advblock.txt: 1120) -.kadamata.com -# ||kadabada.com^ (advblock.txt: 1119) -.kadabada.com -# ||kachestvoo.ru^$third-party (advblock.txt: 1118) -.kachestvoo.ru -# ||ka7co.com^ (advblock.txt: 1117) -.ka7co.com -# ||jsn.st02.net^ (advblock.txt: 1116) -.jsn.st02.net -# ||js.einfo.by/? (advblock.txt: 1115) -.js.einfo.by/\? -# ||jollywallet.com^$third-party (advblock.txt: 1114) -.jollywallet.com -# ||job.ws/_bann/ (advblock.txt: 1113) -.job.ws/_bann/ -# ||jet3.ayola.net/cn.php? (advblock.txt: 1112) -.jet3.ayola.net/cn\.php\? -# ||jenugolok.com^$third-party,object (advblock.txt: 1111) -.jenugolok.com -# ||itizer.ru^$third-party (advblock.txt: 1108) -.itizer.ru -# ||itcgin.net^$third-party (advblock.txt: 1107) -.itcgin.net -# ||ispmega.ru/billing/_rootimages/banners/ (advblock.txt: 1106) -.ispmega.ru/billing/_rootimages/banners/ -# ||iso100.ru^$third-party (advblock.txt: 1105) -.iso100.ru -# ||ipz.ru/cgi-bin/ (advblock.txt: 1104) -.ipz.ru/cgi-bin/ -# ||ipru.ru^$third-party (advblock.txt: 1103) -.ipru.ru -# ||iphones.ru^$third-party (advblock.txt: 1102) -.iphones.ru -# ||iphone10gs.com^$third-party (advblock.txt: 1101) -.iphone10gs.com -# ||ipgold.ru^$third-party (advblock.txt: 1100) -.ipgold.ru -# ||invitemaster.ru/widget.js (advblock.txt: 1099) -.invitemaster.ru/widget\.js -# ||invictory.org/banners/ (advblock.txt: 1098) -.invictory.org/banners/ -# ||invest-pool.ru^$third-party (advblock.txt: 1097) -.invest-pool.ru -# ||intimznaki.tomsk.ru^$third-party (advblock.txt: 1096) -.intimznaki.tomsk.ru -# ||intim-magazin.com.ua/bn/ (advblock.txt: 1095) -.intim-magazin.com.ua/bn/ -# ||internetportal.ru/*.gif (advblock.txt: 1094) -.internetportal.ru/.*\.gif -# ||internetdengi.net^$third-party (advblock.txt: 1093) -.internetdengi.net -# ||internalinspector.com^ (advblock.txt: 1092) -.internalinspector.com -# ||instantcash.ru^$third-party (advblock.txt: 1091) -.instantcash.ru -# ||inst.letitbit.net^ (advblock.txt: 1090) -.inst.letitbit.net -# ||insalea.ru/bannerfans_ (advblock.txt: 1089) -.insalea.ru/bannerfans_ -# ||inoe.name^$third-party (advblock.txt: 1088) -.inoe.name -# ||inmoment.ru^$third-party (advblock.txt: 1087) -.inmoment.ru -# ||infosec.ru/common/data/pub/images/articles/ (advblock.txt: 1086) -.infosec.ru/common/data/pub/images/articles/ -# ||inforesell.ru^$third-party (advblock.txt: 1085) -.inforesell.ru -# ||infocar.ru/media/$third-party,script (advblock.txt: 1084) -.infocar.ru/media/ -# ||info-dvd.ru/*/rotator/ (advblock.txt: 1083) -.info-dvd.ru/.*/rotator/ -# ||inferno.name/banner. (advblock.txt: 1082) -.inferno.name/banner\. -# ||inboobs.net^$third-party (advblock.txt: 1081) -.inboobs.net -# ||imobilco.ru^$third-party (advblock.txt: 1080) -.imobilco.ru -# ||img.ruclicks.com/ruclicks (advblock.txt: 1079) -.img.ruclicks.com/ruclicks -# ||img.carnage.ru/i/main/$third-party,object (advblock.txt: 1078) -.img.carnage.ru/i/main/ -# ||imarker.ru^$third-party (advblock.txt: 1077) -.imarker.ru -# ||ilfumomoney.ru^$third-party (advblock.txt: 1076) -.ilfumomoney.ru -# ||igrushek.net/ad/ (advblock.txt: 1075) -.igrushek.net/ad/ -# ||igromagaz.ru/partner/ (advblock.txt: 1074) -.igromagaz.ru/partner/ -# ||id5.ru^$third-party (advblock.txt: 1073) -.id5.ru -# ||ice-media.ru^ (advblock.txt: 1072) -.ice-media.ru -# ||i.sdska.ru^*/sdb.js? (advblock.txt: 1071) -.i.sdska.ru/.*/sdb\.js\? -# ||i.j2j.ru^ (advblock.txt: 1070) -.i.j2j.ru -# ||hypo.ufanet.ru^$image (advblock.txt: 1069) -.hypo.ufanet.ru -# ||hypernews.ru^ (advblock.txt: 1068) -.hypernews.ru -# ||hotinga.ru^ (advblock.txt: 1067) -.hotinga.ru -# ||hotels24.ua^$third-party (advblock.txt: 1066) -.hotels24.ua -# ||hotels.ru/content/images/poster/ (advblock.txt: 1065) -.hotels.ru/content/images/poster/ -# ||hostweek.net/manimg/userdata/ (advblock.txt: 1064) -.hostweek.net/manimg/userdata/ -# ||host4media.com^$third-party (advblock.txt: 1063) -.host4media.com -# ||host.ru/images/txt_iframe.php (advblock.txt: 1062) -.host.ru/images/txt_iframe\.php -# ||homrus.net^ (advblock.txt: 1061) -.homrus.net -# ||holder.com.ua^ (advblock.txt: 1060) -.holder.com.ua -# ||hmn.ru/mhmb_bs/viewb.js? (advblock.txt: 1059) -.hmn.ru/mhmb_bs/viewb\.js\? -# ||hitlist.ru^$third-party (advblock.txt: 1058) -.hitlist.ru -# ||hit-sales.ru^ (advblock.txt: 1056) -.hit-sales.ru -# ||hideme.ru/images/static-$third-party (advblock.txt: 1055) -.hideme.ru/images/static- -# ||heroeswm.ru/some_junk/ (advblock.txt: 1054) -.heroeswm.ru/some_junk/ -# ||hd-tube.ru^$third-party (advblock.txt: 1053) -.hd-tube.ru -# ||hata.nikolaev.ua^$third-party (advblock.txt: 1052) -.hata.nikolaev.ua -# ||gzonline.ru//upload/iblock/ (advblock.txt: 1051) -# ||grt02.com^ (advblock.txt: 1050) -.grt02.com -# ||grt01.com^ (advblock.txt: 1049) -.grt01.com -# ||grifiins.ru^ (advblock.txt: 1048) -.grifiins.ru -# ||gravdee.com^ (advblock.txt: 1047) -.gravdee.com -# ||grattis.ru/promo/ (advblock.txt: 1046) -.grattis.ru/promo/ -# ||govazd.am^ (advblock.txt: 1045) -.govazd.am -# ||gorodnews.ru/bb/ (advblock.txt: 1044) -.gorodnews.ru/bb/ -# ||goon.ru^$third-party (advblock.txt: 1043) -.goon.ru -# ||goodkukhni2.ru^$third-party (advblock.txt: 1042) -.goodkukhni2.ru -# ||goodadvert.com.ua^ (advblock.txt: 1041) -.goodadvert.com.ua -# ||good-teasers.ru^ (advblock.txt: 1040) -.good-teasers.ru -# ||goldline.pro^$third-party (advblock.txt: 1039) -.goldline.pro -# ||goldfishkapartners.com^ (advblock.txt: 1038) -.goldfishkapartners.com -# ||golden-fishka.com^$third-party (advblock.txt: 1037) -.golden-fishka.com -# ||go.bb.ru/images/ (advblock.txt: 1036) -.go.bb.ru/images/ -# ||gnezdo.ru^ (advblock.txt: 1035) -.gnezdo.ru -# ||glows.ru^ (advblock.txt: 1034) -.glows.ru -# ||globusgps.ru^$third-party (advblock.txt: 1033) -.globusgps.ru -# ||globus-inter.com/images/banners/ (advblock.txt: 1032) -.globus-inter.com/images/banners/ -# ||glamursgirl.ru^$third-party (advblock.txt: 1031) -.glamursgirl.ru -# ||giveawayoftheday.com/ticker/ (advblock.txt: 1030) -.giveawayoftheday.com/ticker/ -# ||girlstalks.ru^$third-party (advblock.txt: 1029) -.girlstalks.ru -# ||girl-rus.com^$third-party (advblock.txt: 1028) -.girl-rus.com -# ||gigamega.ru^ (advblock.txt: 1027) -.gigamega.ru -# ||ggsaffiliates.com^ (advblock.txt: 1026) -.ggsaffiliates.com -# ||gettraf.org^ (advblock.txt: 1025) -.gettraf.org -# ||getb.7ya.ru^ (advblock.txt: 1024) -.getb.7ya.ru -# ||get-click.net^ (advblock.txt: 1023) -.get-click.net -# ||gde-luchshe.ru/widget/ (advblock.txt: 1022) -.gde-luchshe.ru/widget/ -# ||gbs.gamingmedia.ru^ (advblock.txt: 1021) -.gbs.gamingmedia.ru -# ||gamingpartners.org^ (advblock.txt: 1020) -.gamingpartners.org -# ||gamenet.ru^*/?rnd= (advblock.txt: 1019) -.gamenet.ru/.*/\?rnd= -# ||gamedl.ru^ (advblock.txt: 1018) -.gamedl.ru -# ||gamebook.pw^$third-party,subdocument (advblock.txt: 1017) -.gamebook.pw -# ||gamblingbuilder.com^$third-party (advblock.txt: 1016) -.gamblingbuilder.com -# ||galaxymeet.ru^$third-party (advblock.txt: 1015) -.galaxymeet.ru -# ||g2a.com/widget_ (advblock.txt: 1014) -.g2a.com/widget_ -# ||fxcast.com^$third-party (advblock.txt: 1013) -.fxcast.com -# ||fxbn.fxcd.ru^ (advblock.txt: 1012) -.fxbn.fxcd.ru -# ||funnation.ru^$third-party (advblock.txt: 1011) -.funnation.ru -# ||funkit.ru/i/partner_banners/ (advblock.txt: 1010) -.funkit.ru/i/partner_banners/ -# ||fsimg.ru/elephant/ (advblock.txt: 1009) -.fsimg.ru/elephant/ -# ||frogadvert.ru^ (advblock.txt: 1008) -.frogadvert.ru -# ||freshmac.ru^$third-party (advblock.txt: 1007) -.freshmac.ru -# ||freewm.ru^ (advblock.txt: 1006) -.freewm.ru -# ||freehd.com.ua^$third-party (advblock.txt: 1005) -.freehd.com.ua -# ||freeavalanche.ru^ (advblock.txt: 1004) -.freeavalanche.ru -# ||fotostrana.ru/promo/ (advblock.txt: 1003) -.fotostrana.ru/promo/ -# ||fotkidepo.ru^$third-party,script (advblock.txt: 1002) -.fotkidepo.ru -# ||forsage.biz^$third-party (advblock.txt: 1001) -.forsage.biz -# ||forex4you.org/flash/partners/ (advblock.txt: 1000) -.forex4you.org/flash/partners/ -# ||forex-i-love-you.ru/files/ (advblock.txt: 999) -.forex-i-love-you.ru/files/ -# ||fooder.ru^$third-party (advblock.txt: 998) -.fooder.ru -# ||fo.ru^*/affilate/ (advblock.txt: 997) -.fo.ru/.*/affilate/ -# ||fluence-club.ru/forum/images/banners/ (advblock.txt: 996) -.fluence-club.ru/forum/images/banners/ -# ||flirchi.ru^$third-party,~popup,popup (advblock.txt: 995) -.flirchi.ru -# ||fleshlight-russia.com/fbn/ (advblock.txt: 994) -.fleshlight-russia.com/fbn/ -# ||flapoint.ru^ (advblock.txt: 993) -.flapoint.ru -# ||fire-casino.com^$third-party (advblock.txt: 992) -.fire-casino.com -# ||finmonitor.com.ua/freenet/go.php?sid= (advblock.txt: 991) -.finmonitor.com.ua/freenet/go\.php\?sid= -# ||finbs.ru^ (advblock.txt: 990) -.finbs.ru -# ||filmcool.ru^$third-party (advblock.txt: 989) -.filmcool.ru -# ||filepost.ru^$third-party (advblock.txt: 988) -.filepost.ru -# ||file-online.ru^$third-party (advblock.txt: 987) -.file-online.ru -# ||fictionbook.ru/static/imgb/ (advblock.txt: 986) -.fictionbook.ru/static/imgb/ -# ||fialet.com^ (advblock.txt: 985) -.fialet.com -# ||festival-leonardo.ru/images/banners/ (advblock.txt: 984) -.festival-leonardo.ru/images/banners/ -# ||fermasosedi.biz/reflink/ (advblock.txt: 983) -.fermasosedi.biz/reflink/ -# ||feed.teasermaster.ru^ (advblock.txt: 982) -.feed.teasermaster.ru -# ||fbs.for-ua.org.ua^ (advblock.txt: 981) -.fbs.for-ua.org.ua -# ||fatal.ru/adfatal.js (advblock.txt: 980) -.fatal.ru/adfatal\.js -# ||fast-anime.ru^$third-party (advblock.txt: 979) -.fast-anime.ru -# ||farle.ru/?bn= (advblock.txt: 978) -.farle.ru/\?bn= -# ||fantasy.d2.ru/showban (advblock.txt: 977) -.fantasy.d2.ru/showban -# ||fanshop.ru/images/__nners/ (advblock.txt: 976) -.fanshop.ru/images/__nners/ -# ||fanat.ru/versus/ (advblock.txt: 975) -.fanat.ru/versus/ -# ||fanat.kz^$third-party (advblock.txt: 974) -.fanat.kz -# ||fairlink.ru^ (advblock.txt: 973) -.fairlink.ru -# ||factor-vesa.net/enter/?url=dont_go_away/ (advblock.txt: 972) -.factor-vesa.net/enter/\?url=dont_go_away/ -# ||extool.biz/banners/ (advblock.txt: 971) -.extool.biz/banners/ -# ||exo.kiev.ua/?zone= (advblock.txt: 970) -.exo.kiev.ua/\?zone= -# ||exaccess.ru^$third-party (advblock.txt: 969) -.exaccess.ru -# ||ex-load.com/promo/ (advblock.txt: 968) -.ex-load.com/promo/ -# ||evviva.com.ua/images/b/ (advblock.txt: 967) -.evviva.com.ua/images/b/ -# ||evilfighter.ru^$third-party (advblock.txt: 966) -.evilfighter.ru -# ||eurosmi.ru/ad/ (advblock.txt: 965) -.eurosmi.ru/ad/ -# ||eskhosting.ru/img/b/ (advblock.txt: 964) -.eskhosting.ru/img/b/ -# ||eserver.ru/img/b/ (advblock.txt: 963) -.eserver.ru/img/b/ -# ||esc-team.com^$third-party (advblock.txt: 962) -.esc-team.com -# ||erotraf.com^ (advblock.txt: 961) -.erotraf.com -# ||eradio.net.ua/ban/ (advblock.txt: 960) -.eradio.net.ua/ban/ -# ||epartner.ru^ (advblock.txt: 959) -.epartner.ru -# ||eogli.org^$third-party (advblock.txt: 958) -.eogli.org -# ||eogli.com^$third-party (advblock.txt: 957) -.eogli.com -# ||eogli.biz^$third-party (advblock.txt: 956) -.eogli.biz -# ||entercash.ru^ (advblock.txt: 955) -.entercash.ru -# ||emnodar.ru^ (advblock.txt: 954) -.emnodar.ru -# ||elfmoney.ru^$third-party (advblock.txt: 953) -.elfmoney.ru -# ||elephant.fotostrana.ru^ (advblock.txt: 952) -.elephant.fotostrana.ru -# ||effad.ru^ (advblock.txt: 951) -.effad.ru -# ||ecosigara.com.ua/partners/ (advblock.txt: 950) -.ecosigara.com.ua/partners/ -# ||e-place.ru^ (advblock.txt: 949) -.e-place.ru -# ||e-mint.ru^$third-party (advblock.txt: 948) -.e-mint.ru -# ||e-links.ru^ (advblock.txt: 947) -.e-links.ru -# ||dverizamki.org/bshow/ (advblock.txt: 946) -.dverizamki.org/bshow/ -# ||duuw.nm.ru^ (advblock.txt: 945) -.duuw.nm.ru -# ||drweb.com/pix/$object (advblock.txt: 944) -.drweb.com/pix/ -# ||drakonas.eu^$third-party (advblock.txt: 943) -.drakonas.eu -# ||dragon.lt/baneris (advblock.txt: 942) -.dragon.lt/baneris -# ||dozory.goodoo.ru^ (advblock.txt: 941) -.dozory.goodoo.ru -# ||dozatv.net/foto/ (advblock.txt: 940) -.dozatv.net/foto/ -# ||doublecapital.org/object/ (advblock.txt: 939) -.doublecapital.org/object/ -# ||dotua.org^*/branding/ (advblock.txt: 938) -.dotua.org/.*/branding/ -# ||dostavka.ru^$third-party (advblock.txt: 937) -.dostavka.ru -# ||dns-shop.ru/export/ (advblock.txt: 936) -.dns-shop.ru/export/ -# ||dnr.kz/test/$third-party,object (advblock.txt: 935) -.dnr.kz/test/ -# ||dimpy.narod.ru^ (advblock.txt: 934) -.dimpy.narod.ru -# ||diamondelectric.ru/partner_block.php? (advblock.txt: 933) -.diamondelectric.ru/partner_block\.php\? -# ||dhgate.com^$third-party (advblock.txt: 932) -.dhgate.com -# ||dewis.h1.ru^ (advblock.txt: 931) -.dewis.h1.ru -# ||depositfiles.com/img/banners/ (advblock.txt: 930) -.depositfiles.com/img/banners/ -# ||denezhnyie-rucheyki.ru/partner_programs/banners/ (advblock.txt: 929) -.denezhnyie-rucheyki.ru/partner_programs/banners/ -# ||demoreklama.net.ua^$third-party (advblock.txt: 928) -.demoreklama.net.ua -# ||dematom.com^$third-party,~image (advblock.txt: 927) -.dematom.com -# ||ddkdr.ru^$third-party (advblock.txt: 926) -.ddkdr.ru -# ||dating-exchange.com^ (advblock.txt: 925) -.dating-exchange.com -# ||cykahax.net^ (advblock.txt: 924) -.cykahax.net -# ||cyberstyle.ru^$third-party (advblock.txt: 923) -.cyberstyle.ru -# ||culpainnata.ru^ (advblock.txt: 922) -.culpainnata.ru -# ||cszz.ru^ (advblock.txt: 921) -.cszz.ru -# ||csht.ru^ (advblock.txt: 920) -.csht.ru -# ||cshi.ru^ (advblock.txt: 919) -.cshi.ru -# ||cry.ru/sexclub/ (advblock.txt: 918) -.cry.ru/sexclub/ -# ||crutop.nu^$third-party (advblock.txt: 917) -.crutop.nu -# ||creara-media.ru^$third-party (advblock.txt: 916) -.creara-media.ru -# ||cqc.ru^ (advblock.txt: 915) -.cqc.ru -# ||cpmsolution.ru^ (advblock.txt: 914) -.cpmsolution.ru -# ||costaction.com/refers/ (advblock.txt: 913) -.costaction.com/refers/ -# ||cosmorelax.ru/tmp/ (advblock.txt: 912) -.cosmorelax.ru/tmp/ -# ||corporative.ru^$third-party (advblock.txt: 911) -.corporative.ru -# ||context.hotline.ua^ (advblock.txt: 910) -.context.hotline.ua -# ||context-platform.com^ (advblock.txt: 909) -.context-platform.com -# ||content.relax.ru^ (advblock.txt: 908) -.content.relax.ru -# ||company.1ps.ru^ (advblock.txt: 907) -.company.1ps.ru -# ||comp-ex.ru^ (advblock.txt: 906) -.comp-ex.ru -# ||code.barrior.ru^ (advblock.txt: 905) -.code.barrior.ru -# ||co.cc/img/affiliates/ (advblock.txt: 904) -.co.cc/img/affiliates/ -# ||clx.ru^$third-party (advblock.txt: 903) -.clx.ru -# ||clickvip.ru^ (advblock.txt: 902) -.clickvip.ru -# ||clickozavr.com^ (advblock.txt: 901) -.clickozavr.com -# ||clickhere.ru^ (advblock.txt: 900) -.clickhere.ru -# ||clickconvert.ru^$third-party (advblock.txt: 899) -.clickconvert.ru -# ||clickcoin.com^ (advblock.txt: 898) -.clickcoin.com -# ||clickbux.ru^$third-party (advblock.txt: 897) -.clickbux.ru -# ||clickburner.com^ (advblock.txt: 896) -.clickburner.com -# ||click4wm.ru^ (advblock.txt: 894) -.click4wm.ru -# ||click.readme.ru^ (advblock.txt: 893) -.click.readme.ru -# ||city-advertising.ru^$third-party (advblock.txt: 892) -.city-advertising.ru -# ||citilink.ru^$third-party (advblock.txt: 891) -.citilink.ru -# ||cinemateka3d.ru^$third-party (advblock.txt: 890) -.cinemateka3d.ru -# ||chitika.org^ (advblock.txt: 889) -.chitika.org -# ||cherrystatic.net^*/banners/ (advblock.txt: 888) -.cherrystatic.net/.*/banners/ -# ||chbn.ru^ (advblock.txt: 887) -.chbn.ru -# ||cenovik.net^ (advblock.txt: 886) -.cenovik.net -# ||cbn.ru^ (advblock.txt: 885) -.cbn.ru -# ||casino-piramida.com/partner/banners/ (advblock.txt: 884) -.casino-piramida.com/partner/banners/ -# ||casino-kaza.com^$third-party (advblock.txt: 883) -.casino-kaza.com -# ||cashimtrap.com^ (advblock.txt: 882) -.cashimtrap.com -# ||casas-mario.ru^$third-party (advblock.txt: 881) -.casas-mario.ru -# ||carambis.ru/images/promo_b/ (advblock.txt: 880) -.carambis.ru/images/promo_b/ -# ||captainsofcrush.ru^$third-party (advblock.txt: 879) -.captainsofcrush.ru -# ||c.tbex.ru^$third-party (advblock.txt: 878) -.c.tbex.ru -# ||bx.metka.ru^ (advblock.txt: 877) -.bx.metka.ru -# ||bvf.ru/upchk/ (advblock.txt: 876) -.bvf.ru/upchk/ -# ||buy-link.ru^ (advblock.txt: 875) -.buy-link.ru -# ||buxify-v2.com^$third-party (advblock.txt: 874) -.buxify-v2.com -# ||bs.orsk.ru^ (advblock.txt: 872) -.bs.orsk.ru -# ||bs.mybb.ru^ (advblock.txt: 871) -.bs.mybb.ru -# ||brothers-company.ru^$third-party (advblock.txt: 870) -.brothers-company.ru -# ||bravohost.ru/volgaban. (advblock.txt: 869) -.bravohost.ru/volgaban\. -# ||bqhost.net/_rootimages/banners/ (advblock.txt: 868) -.bqhost.net/_rootimages/banners/ -# ||boobzi.com^$third-party (advblock.txt: 867) -.boobzi.com -# ||bongo-shop.com^$third-party (advblock.txt: 866) -.bongo-shop.com -# ||bongacams.com/promo. (advblock.txt: 865) -.bongacams.com/promo\. -# ||bomb-club.com/aff/ (advblock.txt: 864) -.bomb-club.com/aff/ -# ||bnfest.com^$third-party (advblock.txt: 863) -.bnfest.com -# ||bn.orthodoxy.ru^ (advblock.txt: 862) -.bn.orthodoxy.ru -# ||bn.ohah.ru^ (advblock.txt: 861) -.bn.ohah.ru -# ||blowclick.ru^ (advblock.txt: 860) -.blowclick.ru -# ||bloha.net^ (advblock.txt: 859) -.bloha.net -# ||blogun.ru^$third-party (advblock.txt: 858) -.blogun.ru -# ||bizua.com^$third-party (advblock.txt: 857) -.bizua.com -# ||bit.ly^$third-party,subdocument (advblock.txt: 856) -.bit.ly -# ||bistr4.ru^ (advblock.txt: 855) -.bistr4.ru -# ||bigbuzzy.ru/m/proposal/banner/ (advblock.txt: 854) -.bigbuzzy.ru/m/proposal/banner/ -# ||bigbord.net^$third-party (advblock.txt: 853) -.bigbord.net -# ||bezlimitvideo.com^ (advblock.txt: 852) -.bezlimitvideo.com -# ||bestexotic.com^ (advblock.txt: 851) -.bestexotic.com -# ||bestclick.ru^ (advblock.txt: 850) -.bestclick.ru -# ||bepartner.ru^ (advblock.txt: 849) -.bepartner.ru -# ||be-mine.ru^$third-party (advblock.txt: 848) -.be-mine.ru -# ||bcontent.life.ru^ (advblock.txt: 847) -.bcontent.life.ru -# ||bcggo.ru^ (advblock.txt: 846) -.bcggo.ru -# ||bbn.img.com.ua^ (advblock.txt: 845) -.bbn.img.com.ua -# ||bbn.by^ (advblock.txt: 844) -.bbn.by -# ||bb.stream24.ru^ (advblock.txt: 843) -.bb.stream24.ru -# ||battlespace.ru/ad/ (advblock.txt: 842) -.battlespace.ru/ad/ -# ||basketfan.my1.ru^$third-party (advblock.txt: 841) -.basketfan.my1.ru -# ||bashnya.ru^ (advblock.txt: 840) -.bashnya.ru -# ||base.kiwi.kz^ (advblock.txt: 839) -.base.kiwi.kz -# ||bantex.ru^ (advblock.txt: 838) -.bantex.ru -# ||bans.name^ (advblock.txt: 837) -.bans.name -# ||bannerhost.ru^ (advblock.txt: 836) -.bannerhost.ru -# ||banner.ua^ (advblock.txt: 835) -.banner.ua -# ||banner-viewers.com^ (advblock.txt: 834) -.banner-viewers.com -# ||banner-storage.fo.ru^ (advblock.txt: 833) -.banner-storage.fo.ru -# ||banage.ru^$third-party (advblock.txt: 832) -.banage.ru -# ||bambun.ru/images/$object (advblock.txt: 831) -.bambun.ru/images/ -# ||baks-mail.ru^$third-party (advblock.txt: 830) -.baks-mail.ru -# ||babyzone.ua^*/bmn/ (advblock.txt: 829) -.babyzone.ua/.*/bmn/ -# ||babyclick.ru^$third-party (advblock.txt: 828) -.babyclick.ru -# ||b81x63nc.ws.md^ (advblock.txt: 827) -.b81x63nc.ws.md -# ||b2bvideo.ru^ (advblock.txt: 826) -.b2bvideo.ru -# ||b2bcontext.ru^ (advblock.txt: 825) -.b2bcontext.ru -# ||b.nwave.de^ (advblock.txt: 824) -.b.nwave.de -# ||b.madplace99.com^ (advblock.txt: 823) -.b.madplace99.com -# ||b.itvnet.lv^ (advblock.txt: 822) -.b.itvnet.lv -# ||b.candy.vl.ru^ (advblock.txt: 821) -.b.candy.vl.ru -# ||b.adbox.lv^ (advblock.txt: 820) -.b.adbox.lv -# ||b.acpr.su^ (advblock.txt: 819) -.b.acpr.su -# ||b-one.com.ua^ (advblock.txt: 818) -.b-one.com.ua -# ||azbukasexa.ru^$third-party (advblock.txt: 817) -.azbukasexa.ru -# ||azartcash.com^$third-party (advblock.txt: 816) -.azartcash.com -# ||azartaffiliates.com^ (advblock.txt: 815) -.azartaffiliates.com -# ||avifilm.ru^ (advblock.txt: 814) -.avifilm.ru -# ||aviasales.ru/promo/ (advblock.txt: 813) -.aviasales.ru/promo/ -# ||avazone.ru^$third-party (advblock.txt: 812) -.avazone.ru -# ||ava.com.ua^$third-party (advblock.txt: 811) -.ava.com.ua -# ||autoua.com^$third-party (advblock.txt: 810) -.autoua.com -# ||autotizer.ru^ (advblock.txt: 809) -.autotizer.ru -# ||autoreg.ru^$third-party (advblock.txt: 808) -.autoreg.ru -# ||autocentre.ua^$third-party,subdocument (advblock.txt: 807) -.autocentre.ua -# ||atlassolutions.com^ (advblock.txt: 806) -.atlassolutions.com -# ||astroinf.ru^$third-party (advblock.txt: 805) -.astroinf.ru -# ||assessoria.hotbox.ru^ (advblock.txt: 804) -.assessoria.hotbox.ru -# ||askmarket.net^$third-party (advblock.txt: 803) -.askmarket.net -# ||asg.vidigital.ru^ (advblock.txt: 802) -.asg.vidigital.ru -# ||artbanner.com.ua^ (advblock.txt: 801) -.artbanner.com.ua -# ||arsfu.ru^$third-party (advblock.txt: 800) -.arsfu.ru -# ||apress-barmen.ru/banner_shape_images/ (advblock.txt: 799) -.apress-barmen.ru/banner_shape_images/ -# ||ap-jam.com^$third-party (advblock.txt: 798) -.ap-jam.com -# ||anyreads.com^$third-party (advblock.txt: 797) -.anyreads.com -# ||anvaga.ru/partners_block/ (advblock.txt: 795) -.anvaga.ru/partners_block/ -# ||antmoney.com^$third-party (advblock.txt: 794) -.antmoney.com -# ||antihacker.info^*/partner/ (advblock.txt: 793) -.antihacker.info/.*/partner/ -# ||anons.greenmama.ru^$third-party (advblock.txt: 792) -.anons.greenmama.ru -# ||anews.cc^$third-party (advblock.txt: 791) -.anews.cc -# ||amh.ru^ (advblock.txt: 790) -.amh.ru -# ||alphacash.biz^ (advblock.txt: 788) -.alphacash.biz -# ||alpari.ru/static/$third-party (advblock.txt: 787) -.alpari.ru/static/ -# ||allwomens.ru^$third-party (advblock.txt: 786) -.allwomens.ru -# ||allsportstat.ru/1xbet/ (advblock.txt: 785) -.allsportstat.ru/1xbet/ -# ||allsiemens.com^$third-party (advblock.txt: 784) -.allsiemens.com -# ||allnokia.ru^$third-party (advblock.txt: 783) -.allnokia.ru -# ||allnewspoint.com^$third-party (advblock.txt: 782) -.allnewspoint.com -# ||alfainternet.su^ (advblock.txt: 781) -.alfainternet.su -# ||alawar.ru/onlinegames/*&link= (advblock.txt: 780) -.alawar.ru/onlinegames/.*&link= -# ||akavita.com^$third-party (advblock.txt: 779) -.akavita.com -# ||akabo.ru^ (advblock.txt: 778) -.akabo.ru -# ||agrotv.ru^$third-party (advblock.txt: 777) -.agrotv.ru -# ||agitmedia.com^ (advblock.txt: 776) -.agitmedia.com -# ||agentbilet.com/sites/$third-party (advblock.txt: 775) -.agentbilet.com/sites/ -# ||agava.ru/b/ (advblock.txt: 774) -.agava.ru/b/ -# ||affiliate.vsemayki.ru^$third-party (advblock.txt: 773) -.affiliate.vsemayki.ru -# ||affilates.doktordick.com^ (advblock.txt: 772) -.affilates.doktordick.com -# ||aff.sportsevents365.com^*/banners/ (advblock.txt: 771) -.aff.sportsevents365.com/.*/banners/ -# ||aedrvt.majordomo.ru^ (advblock.txt: 770) -.aedrvt.majordomo.ru -# ||adward.ru^ (advblock.txt: 769) -.adward.ru -# ||advvideo.com^ (advblock.txt: 768) -.advvideo.com -# ||advertpro.ru^$third-party (advblock.txt: 767) -.advertpro.ru -# ||advertpro.com^$third-party (advblock.txt: 766) -.advertpro.com -# ||advertpay.ru^ (advblock.txt: 765) -.advertpay.ru -# ||advertbox.ru^ (advblock.txt: 764) -.advertbox.ru -# ||advaction.ru^ (advblock.txt: 763) -.advaction.ru -# ||adunit.chango.ca^ (advblock.txt: 762) -.adunit.chango.ca -# ||adtime.ru^ (advblock.txt: 761) -.adtime.ru -# ||adtidy.net^ (advblock.txt: 760) -.adtidy.net -# ||adsplius.lt^ (advblock.txt: 759) -.adsplius.lt -# ||adsellers.net^ (advblock.txt: 758) -.adsellers.net -# ||adsclick.ru^ (advblock.txt: 757) -.adsclick.ru -# ||adru.net^ (advblock.txt: 756) -.adru.net -# ||adpro.com.ua^ (advblock.txt: 755) -.adpro.com.ua -# ||adpix.ru^ (advblock.txt: 754) -.adpix.ru -# ||admulti.ru^ (advblock.txt: 753) -.admulti.ru -# ||admimsy.com^$third-party (advblock.txt: 752) -.admimsy.com -# ||admaster.net^ (advblock.txt: 751) -.admaster.net -# ||adland.ru^ (advblock.txt: 750) -.adland.ru -# ||adizer.ru^ (advblock.txt: 749) -.adizer.ru -# ||adhub.ru^ (advblock.txt: 748) -.adhub.ru -# ||adhands.ru^ (advblock.txt: 747) -.adhands.ru -# ||adgo-online.de^ (advblock.txt: 746) -.adgo-online.de -# ||addweb.ru^ (advblock.txt: 745) -.addweb.ru -# ||addnow.ru^$third-party (advblock.txt: 744) -.addnow.ru -# ||addmefast.com/images/banners/ (advblock.txt: 743) -.addmefast.com/images/banners/ -# ||addisp.com^ (advblock.txt: 742) -.addisp.com -# ||addflow.ru^ (advblock.txt: 741) -.addflow.ru -# ||adcomplete.ru^ (advblock.txt: 740) -.adcomplete.ru -# ||adcast.ru^ (advblock.txt: 739) -.adcast.ru -# ||adbomb.ru^ (advblock.txt: 738) -.adbomb.ru -# ||adbn.ru^ (advblock.txt: 737) -.adbn.ru -# ||adbee.com.ua^ (advblock.txt: 736) -.adbee.com.ua -# ||ad1.sibnet.ru^ (advblock.txt: 735) -.ad1.sibnet.ru -# ||ad.sweb.ru^ (advblock.txt: 734) -.ad.sweb.ru -# ||ad.leongaming.com^ (advblock.txt: 733) -.ad.leongaming.com -# ||ad.ir.ru/bb.cgi? (advblock.txt: 732) -.ad.ir.ru/bb\.cgi\? -# ||ad.iplayer.org^ (advblock.txt: 731) -.ad.iplayer.org -# ||ad.fantiki.net^ (advblock.txt: 730) -.ad.fantiki.net -# ||ad.aorta-net.com^ (advblock.txt: 729) -.ad.aorta-net.com -# ||activiks.ru^$third-party (advblock.txt: 728) -.activiks.ru -# ||action.raadword.com^ (advblock.txt: 727) -.action.raadword.com -# ||abs.ispsystem.com^ (advblock.txt: 726) -.abs.ispsystem.com -# ||abelus.ru/index/ms_reklam_ (advblock.txt: 725) -.abelus.ru/index/ms_reklam_ -# ||abcfilm.org^$third-party (advblock.txt: 724) -.abcfilm.org -# ||a.votpusk.ru^$third-party,image,object (advblock.txt: 723) -.a.votpusk.ru -# ||a.mayakinfo.ru^$third-party,image,object (advblock.txt: 722) -.a.mayakinfo.ru -# ||a.fobos.tv^ (advblock.txt: 721) -.a.fobos.tv -# ||a-love.nninfo.ru^ (advblock.txt: 720) -.a-love.nninfo.ru -# ||9fine.ru^$third-party (advblock.txt: 719) -.9fine.ru -# ||8coins.ru^ (advblock.txt: 718) -.8coins.ru -# ||7rtv.com^ (advblock.txt: 717) -.7rtv.com -# ||7gomedia.ru^ (advblock.txt: 716) -.7gomedia.ru -# ||468.vologdainfo.ru^ (advblock.txt: 715) -.468.vologdainfo.ru -# ||4-moto.ru/ad/ (advblock.txt: 714) -.4-moto.ru/ad/ -# ||3rs.ru^$third-party (advblock.txt: 713) -.3rs.ru -# ||3d-ero.com^$third-party (advblock.txt: 712) -.3d-ero.com -# ||2x2.kz^ (advblock.txt: 711) -.2x2.kz -# ||2da2.ru^$third-party (advblock.txt: 710) -.2da2.ru -# ||2baksa.net^$third-party (advblock.txt: 709) -.2baksa.net -# ||24s.ru^ (advblock.txt: 708) -.24s.ru -# ||24new.ru^$third-party (advblock.txt: 707) -.24new.ru -# ||24au.ru/auctioninformer/ (advblock.txt: 706) -.24au.ru/auctioninformer/ -# ||2000zakazov.ru^ (advblock.txt: 705) -.2000zakazov.ru -# ||1popov.ru^$third-party (advblock.txt: 704) -.1popov.ru -# ||123service.ru^$third-party,~script (advblock.txt: 703) -.123service.ru -# ||1000zakazov.ru^ (advblock.txt: 702) -.1000zakazov.ru -# ||003.ua^$third-party (advblock.txt: 701) -.003.ua -# |http://u.to/$third-party,script,subdocument (advblock.txt: 700) -u.to -# ||pw^$third-party,script (advblock.txt: 678) -# ||info^$third-party,script (advblock.txt: 677) -# ||asia^$third-party,script,subdocument (advblock.txt: 676) -# ||zavetiss.ru^$third-party (advblock.txt: 674) -.zavetiss.ru -# ||servebbs.net^$third-party,script,subdocument (advblock.txt: 673) -.servebbs.net -# ||quelliclub.ru^$third-party,script,subdocument (advblock.txt: 672) -.quelliclub.ru -# ||itsaol.com^$third-party,script,subdocument (advblock.txt: 671) -.itsaol.com -# ||dyndns.$third-party,script,subdocument (advblock.txt: 670) -.dyndns.*. -# ||dyndns-$third-party,script,subdocument (advblock.txt: 669) -.dyndns-*. -# ||chickenkiller.com^$third-party,script,subdocument (advblock.txt: 668) -.chickenkiller.com -# ||changeip.name^$third-party,script,subdocument (advblock.txt: 667) -.changeip.name -# ||ua/rtr/$script (advblock.txt: 659) -# ||tv/rtr/$script (advblock.txt: 658) -# ||su/rtr/$script (advblock.txt: 657) -# ||ru/rtr/$script (advblock.txt: 656) -# ||ro/rtr/$script (advblock.txt: 655) -# ||pl/rtr/$script (advblock.txt: 654) -# ||org/rtr/$script (advblock.txt: 653) -# ||net/rtr/$script (advblock.txt: 652) -# ||me/rtr/$script (advblock.txt: 651) -# ||kz/rtr/$script (advblock.txt: 650) -# ||es/rtr/$script (advblock.txt: 649) -# ||com/rtr/$script (advblock.txt: 648) -# ||by/rtr/$script (advblock.txt: 647) -# ||biz/rtr/$script (advblock.txt: 646) -# ||am/rtr/$script (advblock.txt: 645) -# ||褉褎/banner/ (advblock.txt: 643) -# ||ucoz.*/img/ma/cv.gif (advblock.txt: 642) -.ucoz.*./(.*/)?img/ma/cv\.gif -# ||ua/uploads/banners/ (advblock.txt: 641) -# ||ua/upload/jackets/ (advblock.txt: 640) -# ||ua/i/banners/ (advblock.txt: 639) -# ||ua/i/banner/ (advblock.txt: 638) -# ||ua/banners/ (advblock.txt: 637) -# ||ua/banner/ (advblock.txt: 636) -# ||ru/uploads/banners/ (advblock.txt: 635) -# ||ru/tiz_show.php?id=$script (advblock.txt: 634) -# ||ru/text_show.php?id=$third-party,script (advblock.txt: 633) -# ||ru/r/get/?id=*&div=$third-party,script (advblock.txt: 632) -# ||ru/i/banners/ (advblock.txt: 631) -# ||ru/i/banner/ (advblock.txt: 630) -# ||ru/banners/ (advblock.txt: 629) -# ||ru/banner/ (advblock.txt: 628) -# ||ru/banner. (advblock.txt: 627) -# ||ru/ban/ (advblock.txt: 626) -# ||ru/ads/ (advblock.txt: 625) -# ||net/banners/ (advblock.txt: 624) -# ||madbanner.$~object-subrequest (advblock.txt: 623) -.madbanner.*. -# ||info/vk2/ (advblock.txt: 622) -# ||info/alert/ (advblock.txt: 621) -# ||in/?for=$third-party,script (advblock.txt: 620) -# ||com/video/*^format=rotator&$third-party,script (advblock.txt: 619) -# ||com/js/check_blocks.js|$third-party (advblock.txt: 618) -# ||com/bout.php?id=$third-party,script (advblock.txt: 617) -# ||com/bgout.php?id=$third-party,script (advblock.txt: 616) -# ||biz/v^$third-party,script (advblock.txt: 615) -# ||biz/banner/$third-party (advblock.txt: 614) -# _tizers. (advblock.txt: 613) -/.*_tizers\. -# _tizer2. (advblock.txt: 612) -/.*_tizer2\. -# _tizer. (advblock.txt: 611) -/.*_tizer\. -# _spy2wc.org (advblock.txt: 610) -/.*_spy2wc\.org -# _banner.gif (advblock.txt: 609) -/.*_banner\.gif -# _baner_ (advblock.txt: 608) -/.*_baner_ -# _baner. (advblock.txt: 607) -/.*_baner\. -# ^clickunder- (advblock.txt: 606) -/(.*[^\w%.-])?clickunder- -clickunder-*. -# ?teaser_ (advblock.txt: 605) -/.*\?teaser_ -# ?begun=*&begun_referrer=*&begun_location= (advblock.txt: 604) -/.*\?begun=.*&begun_referrer=.*&begun_location= -# ?a_aid=testaff& (advblock.txt: 603) -/.*\?a_aid=testaff& -# /youtube.php|$third-party,script (advblock.txt: 602) -/(.*/)?youtube\.php$ -youtube.php -# /ya-awaps2/* (advblock.txt: 601) -/(.*/)?ya-awaps2/.* -# /www/imgget/*$script (advblock.txt: 600) -/(.*/)?www/imgget/.* -# /wp-content/imgrekl/* (advblock.txt: 599) -/(.*/)?wp-content/imgrekl/.* -# /webunder_ (advblock.txt: 598) -/(.*/)?webunder_ -# /warlog. (advblock.txt: 597) -/(.*/)?warlog\. -warlog.*. -# /vsemayki_ (advblock.txt: 596) -/(.*/)?vsemayki_ -# /vse-pricheski.$third-party (advblock.txt: 595) -/(.*/)?vse-pricheski\. -vse-pricheski.*. -# /volcano_banner (advblock.txt: 594) -/(.*/)?volcano_banner -# /vkshow1.php?$script (advblock.txt: 593) -/(.*/)?vkshow1\.php\? -# /vkshow.php?id=$third-party,script (advblock.txt: 592) -/(.*/)?vkshow\.php\?id= -# /vknotifier1.php?id=$third-party,script (advblock.txt: 591) -/(.*/)?vknotifier1\.php\?id= -# /vk_code.php?id=$third-party,script (advblock.txt: 590) -/(.*/)?vk_code\.php\?id= -# /viptizer. (advblock.txt: 589) -/(.*/)?viptizer\. -viptizer.*. -# /viewt.js$third-party (advblock.txt: 588) -/(.*/)?viewt\.js -viewt.js*. -# /videoadcode/* (advblock.txt: 587) -/(.*/)?videoadcode/.* -# /video/?format=overroll& (advblock.txt: 586) -/(.*/)?video/\?format=overroll& -# /vendshow/* (advblock.txt: 585) -/(.*/)?vendshow/.* -# /vast.xml?key= (advblock.txt: 584) -/(.*/)?vast\.xml\?key= -# /utftizer. (advblock.txt: 583) -/(.*/)?utftizer\. -utftizer.*. -# /userfiles/banners/* (advblock.txt: 582) -/(.*/)?userfiles/banners/.* -# /uploads/slider/col$script (advblock.txt: 581) -/(.*/)?uploads/slider/col -# /upload_photo/banners/* (advblock.txt: 580) -/(.*/)?upload_photo/banners/.* -# /upload/bx/* (advblock.txt: 579) -/(.*/)?upload/bx/.* -# /upload/banners/* (advblock.txt: 578) -/(.*/)?upload/banners/.* -# /ucoz/img/uads/* (advblock.txt: 577) -/(.*/)?ucoz/img/uads/.* -# /ucodes.ru.banners.js (advblock.txt: 576) -/(.*/)?ucodes\.ru\.banners\.js -ucodes.ru.banners.js*. -# /traff.js (advblock.txt: 575) -/(.*/)?traff\.js -traff.js*. -# /topminigames.jpg| (advblock.txt: 574) -/(.*/)?topminigames\.jpg$ -topminigames.jpg -# /tizshow. (advblock.txt: 573) -/(.*/)?tizshow\. -tizshow.*. -# /tizers_ (advblock.txt: 572) -/(.*/)?tizers_ -# /tizers3. (advblock.txt: 571) -/(.*/)?tizers3\. -tizers3.*. -# /tizers2. (advblock.txt: 570) -/(.*/)?tizers2\. -tizers2.*. -# /tizers/* (advblock.txt: 569) -/(.*/)?tizers/.* -# /tizerotator/* (advblock.txt: 568) -/(.*/)?tizerotator/.* -# /tizermedia. (advblock.txt: 567) -/(.*/)?tizermedia\. -tizermedia.*. -# /tizer_ (advblock.txt: 566) -/(.*/)?tizer_ -# /tizer2/* (advblock.txt: 565) -/(.*/)?tizer2/.* -# /tizer2. (advblock.txt: 564) -/(.*/)?tizer2\. -tizer2.*. -# /tizer/* (advblock.txt: 563) -/(.*/)?tizer/.* -# /tizer. (advblock.txt: 562) -/(.*/)?tizer\. -tizer.*. -# /tizer- (advblock.txt: 561) -/(.*/)?tizer- -tizer-*. -# /tionline240x400. (advblock.txt: 560) -/(.*/)?tionline240x400\. -tionline240x400.*. -# /tionline240x100. (advblock.txt: 559) -/(.*/)?tionline240x100\. -tionline240x100.*. -# /tionline150x60. (advblock.txt: 558) -/(.*/)?tionline150x60\. -tionline150x60.*. -# /tionline120x60. (advblock.txt: 557) -/(.*/)?tionline120x60\. -tionline120x60.*. -# /teasers/* (advblock.txt: 556) -/(.*/)?teasers/.* -# /teasers. (advblock.txt: 555) -/(.*/)?teasers\. -teasers.*. -# /teaser_klubnika/* (advblock.txt: 554) -/(.*/)?teaser_klubnika/.* -# /teaser2. (advblock.txt: 553) -/(.*/)?teaser2\. -teaser2.*. -# /teaser.$~object-subrequest (advblock.txt: 552) -/(.*/)?teaser\. -teaser.*. -# /talky3d.gif (advblock.txt: 551) -/(.*/)?talky3d\.gif -talky3d.gif*. -# /t.bbn?$third-party (advblock.txt: 550) -/(.*/)?t\.bbn\? -# /swf/tionline/* (advblock.txt: 549) -/(.*/)?swf/tionline/.* -# /sun_*_ajax.js| (advblock.txt: 548) -/(.*/)?sun_.*_ajax\.js$ -# /sticker?id=$third-party,script (advblock.txt: 547) -/(.*/)?sticker\?id= -# /static/tds.js| (advblock.txt: 546) -/(.*/)?static/tds\.js$ -# /start_tr.js? (advblock.txt: 545) -/(.*/)?start_tr\.js\? -# /start_ad.js? (advblock.txt: 544) -/(.*/)?start_ad\.js\? -# /sprava_baner/* (advblock.txt: 543) -/(.*/)?sprava_baner/.* -# /splash/page_header/* (advblock.txt: 542) -/(.*/)?splash/page_header/.* -# /sphinx_*.gif| (advblock.txt: 541) -/(.*/)?sphinx_.*\.gif$ -# /slatefp.asp (advblock.txt: 540) -/(.*/)?slatefp\.asp -slatefp.asp*. -# /showf.php?u=$subdocument (advblock.txt: 539) -/(.*/)?showf\.php\?u= -# /show_adv.php?page_id= (advblock.txt: 538) -/(.*/)?show_adv\.php\?page_id= -# /show/?block_id=*&r=$script (advblock.txt: 537) -/(.*/)?show/\?block_id=.*&r= -# /show.php*^type=*&method=$script (advblock.txt: 536) -/(.*/)?show\.php.*[^\w%.-]type=.*&method= -show.php*./(.*[^\w%.-])?type=.*&method= -# /show.php*^placeid=*&rnd=$script (advblock.txt: 535) -/(.*/)?show\.php.*[^\w%.-]placeid=.*&rnd= -show.php*./(.*[^\w%.-])?placeid=.*&rnd= -# /shop-banner.ashx? (advblock.txt: 534) -/(.*/)?shop-banner\.ashx\? -# /shared/promos/* (advblock.txt: 533) -/(.*/)?shared/promos/.* -# /sexvodnokalssnikah/* (advblock.txt: 532) -/(.*/)?sexvodnokalssnikah/.* -# /sextizer. (advblock.txt: 531) -/(.*/)?sextizer\. -sextizer.*. -# /sbn2.js (advblock.txt: 530) -/(.*/)?sbn2\.js -sbn2.js*. -# /sblocks_informer. (advblock.txt: 529) -/(.*/)?sblocks_informer\. -# /sb.php?s=$script (advblock.txt: 528) -/(.*/)?sb\.php\?s= -# /rotation/r.php?format= (advblock.txt: 527) -/(.*/)?rotation/r\.php\?format= -# /rnb.php?id= (advblock.txt: 526) -/(.*/)?rnb\.php\?id= -# /richbanner. (advblock.txt: 525) -/(.*/)?richbanner\. -richbanner.*. -# /richarbuz. (advblock.txt: 524) -/(.*/)?richarbuz\. -richarbuz.*. -# /reklama_ (advblock.txt: 523) -/(.*/)?reklama_ -# /rcl/ban/* (advblock.txt: 521) -/(.*/)?rcl/ban/.* -# /rcl/all/* (advblock.txt: 520) -/(.*/)?rcl/all/.* -# /rbknews/* (advblock.txt: 519) -/(.*/)?rbknews/.* -# /r_show.php?b= (advblock.txt: 518) -/(.*/)?r_show\.php\?b= -# /pseudocounter.js (advblock.txt: 517) -/(.*/)?pseudocounter\.js -pseudocounter.js*. -# /priceru_advert_ (advblock.txt: 516) -/(.*/)?priceru_advert_ -# /prepareCode? (advblock.txt: 515) -/(.*/)?prepareCode\? -# /ppndr/* (advblock.txt: 514) -/(.*/)?ppndr/.* -# /popout.php?id=$third-party (advblock.txt: 513) -/(.*/)?popout\.php\?id= -# /popin4.js (advblock.txt: 512) -/(.*/)?popin4\.js -popin4.js*. -# /popin.js (advblock.txt: 511) -/(.*/)?popin\.js -popin.js*. -# /plz.somechange.js? (advblock.txt: 510) -/(.*/)?plz\.somechange\.js\? -# /play/?ref=*/play/*$third-party,subdocument (advblock.txt: 509) -/(.*/)?play/\?ref=.*/play/.* -# /pixel2/video?$third-party,script (advblock.txt: 508) -/(.*/)?pixel2/video\? -# /partner/images/banners/* (advblock.txt: 507) -/(.*/)?partner/images/banners/.* -# /partner/banner/* (advblock.txt: 506) -/(.*/)?partner/banner/.* -# /oyy.js (advblock.txt: 505) -/(.*/)?oyy\.js -oyy.js*. -# /out.php?sid=$script (advblock.txt: 504) -/(.*/)?out\.php\?sid= -# /newsanons/*?advert[]= (advblock.txt: 503) -/(.*/)?newsanons/.*\?advert\[\]= -# /news.php?sid=*&bn=$third-party,script (advblock.txt: 502) -/(.*/)?news\.php\?sid=.*&bn= -# /networks//banners/* (advblock.txt: 501) -/(.*/)?networks//banners/.* -# /mybaner/* (advblock.txt: 500) -/(.*/)?mybaner/.* -# /mp3player.swf?file=*/vk.mp3 (advblock.txt: 499) -/(.*/)?mp3player\.swf\?file=.*/vk\.mp3 -# /mp3player.swf?file=*/bb2.mp3 (advblock.txt: 498) -/(.*/)?mp3player\.swf\?file=.*/bb2\.mp3 -# /mp3player.swf?file=*/bb1.mp3 (advblock.txt: 497) -/(.*/)?mp3player\.swf\?file=.*/bb1\.mp3 -# /mirmaek/*$image (advblock.txt: 496) -/(.*/)?mirmaek/.* -# /mediaget- (advblock.txt: 495) -/(.*/)?mediaget- -mediaget-*. -# /media/banners/* (advblock.txt: 494) -/(.*/)?media/banners/.* -# /marketplace.asp? (advblock.txt: 493) -/(.*/)?marketplace\.asp\? -# /load-promo/* (advblock.txt: 492) -/(.*/)?load-promo/.* -# /linkexchange/* (advblock.txt: 491) -/(.*/)?linkexchange/.* -# /kmabiz/* (advblock.txt: 490) -/(.*/)?kmabiz/.* -# /jstbt.js|$third-party (advblock.txt: 489) -/(.*/)?jstbt\.js$ -jstbt.js -# /js/vk.php?id=$script (advblock.txt: 488) -/(.*/)?js/vk\.php\?id= -# /js/slider.php?id=$third-party (advblock.txt: 487) -/(.*/)?js/slider\.php\?id= -# /js/rot.php?id= (advblock.txt: 486) -/(.*/)?js/rot\.php\?id= -# /js/popup.php?id=$third-party (advblock.txt: 485) -/(.*/)?js/popup\.php\?id= -# /js/peeldown.php?id=$third-party (advblock.txt: 484) -/(.*/)?js/peeldown\.php\?id= -# /js/if.php?id=$third-party (advblock.txt: 483) -/(.*/)?js/if\.php\?id= -# /js/girls.php| (advblock.txt: 482) -/(.*/)?js/girls\.php$ -# /js/code.php?id= (advblock.txt: 481) -/(.*/)?js/code\.php\?id= -# /jollywallet/* (advblock.txt: 480) -/(.*/)?jollywallet/.* -# /jban.js?idd= (advblock.txt: 479) -/(.*/)?jban\.js\?idd= -# /jads.php? (advblock.txt: 478) -/(.*/)?jads\.php\? -# /j65.php| (advblock.txt: 477) -/(.*/)?j65\.php$ -j65.php -# /initRTv2.php?id=$script (advblock.txt: 476) -/(.*/)?initRTv2\.php\?id= -# /informer/script.php?id= (advblock.txt: 475) -/(.*/)?informer/script\.php\?id= -# /informer.php? (advblock.txt: 474) -/(.*/)?informer\.php\? -# /informer.js (advblock.txt: 473) -/(.*/)?informer\.js -informer.js*. -# /inc/brand.css? (advblock.txt: 472) -/(.*/)?inc/brand\.css\? -# /inc/banner_zone/* (advblock.txt: 471) -/(.*/)?inc/banner_zone/.* -# /in.htm?wm=$popup (advblock.txt: 470) -/(.*/)?in\.htm\?wm= -# /in.cgi?$third-party,script,subdocument (advblock.txt: 469) -/(.*/)?in\.cgi\? -# /imp.php?a_aid= (advblock.txt: 468) -/(.*/)?imp\.php\?a_aid= -# /img/rekl/* (advblock.txt: 467) -/(.*/)?img/rekl/.* -# /img/bnr/* (advblock.txt: 466) -/(.*/)?img/bnr/.* -# /img/bnr- (advblock.txt: 465) -/(.*/)?img/bnr- -# /img/bn/* (advblock.txt: 464) -/(.*/)?img/bn/.* -# /img/banner/* (advblock.txt: 463) -/(.*/)?img/banner/.* -# /images/rekl/* (advblock.txt: 462) -/(.*/)?images/rekl/.* -# /images/rek/* (advblock.txt: 461) -/(.*/)?images/rek/.* -# /images/bn/* (advblock.txt: 460) -/(.*/)?images/bn/.* -# /images/ban/* (advblock.txt: 459) -/(.*/)?images/ban/.* -# /iframe/inosmi.$subdocument (advblock.txt: 458) -/(.*/)?iframe/inosmi\. -# /iframe/glomu.$subdocument (advblock.txt: 457) -/(.*/)?iframe/glomu\. -# /hotfilebanner. (advblock.txt: 456) -/(.*/)?hotfilebanner\. -hotfilebanner.*. -# /hh/BannerHandler.js? (advblock.txt: 455) -/(.*/)?hh/BannerHandler\.js\? -# /getThumbs?uid=$third-party,subdocument (advblock.txt: 454) -/(.*/)?getThumbs\?uid= -# /get_tiz. (advblock.txt: 453) -/(.*/)?get_tiz\. -# /get_banner_flash.*&shop= (advblock.txt: 452) -/(.*/)?get_banner_flash\..*&shop= -# /get.php?user_id=*&mode=$third-party,script (advblock.txt: 451) -/(.*/)?get\.php\?user_id=.*&mode= -# /get.js?user_id=$third-party,script (advblock.txt: 450) -/(.*/)?get\.js\?user_id= -# /gaminator/* (advblock.txt: 449) -/(.*/)?gaminator/.* -# /gaminator. (advblock.txt: 448) -/(.*/)?gaminator\. -gaminator.*. -# /gaminator- (advblock.txt: 447) -/(.*/)?gaminator- -gaminator-*. -# /free/banners/* (advblock.txt: 446) -/(.*/)?free/banners/.* -# /fotocash.js (advblock.txt: 445) -/(.*/)?fotocash\.js -fotocash.js*. -# /forum?t=$third-party,subdocument (advblock.txt: 444) -/(.*/)?forum\?t= -# /files/banners/* (advblock.txt: 443) -/(.*/)?files/banners/.* -# /files/banner/* (advblock.txt: 442) -/(.*/)?files/banner/.* -# /ekbn/src/* (advblock.txt: 441) -/(.*/)?ekbn/src/.* -# /datagroup.gif (advblock.txt: 440) -/(.*/)?datagroup\.gif -datagroup.gif*. -# /cu2.php?ref=$script (advblock.txt: 439) -/(.*/)?cu2\.php\?ref= -# /cu2.php?*&ref=$script (advblock.txt: 438) -/(.*/)?cu2\.php\?.*&ref= -# /cu1.php?ref=$script (advblock.txt: 437) -/(.*/)?cu1\.php\?ref= -# /cu1.php?*&ref=$script (advblock.txt: 436) -/(.*/)?cu1\.php\?.*&ref= -# /cu.php?$third-party,script (advblock.txt: 435) -/(.*/)?cu\.php\? -# /cu.js?p=$script (advblock.txt: 434) -/(.*/)?cu\.js\?p= -# /ctxtlink/* (advblock.txt: 433) -/(.*/)?ctxtlink/.* -# /cszz/*$third-party,script (advblock.txt: 432) -/(.*/)?cszz/.* -# /cshi/*$third-party,script (advblock.txt: 431) -/(.*/)?cshi/.* -# /cs3?user_id=*&stream_id=$script (advblock.txt: 430) -/(.*/)?cs3\?user_id=.*&stream_id= -# /cout.php?sid=$script (advblock.txt: 429) -/(.*/)?cout\.php\?sid= -# /content/get?*&previous_ad_id= (advblock.txt: 428) -/(.*/)?content/get\?.*&previous_ad_id= -# /code/click.php?id=$popup (advblock.txt: 427) -/(.*/)?code/click\.php\?id= -# /clk.js| (advblock.txt: 426) -/(.*/)?clk\.js$ -clk.js -# /clickheat. (advblock.txt: 425) -/(.*/)?clickheat\. -clickheat.*. -# /check.php?user_id=*&mode= (advblock.txt: 424) -/(.*/)?check\.php\?user_id=.*&mode= -# /cgi-bin/banners/* (advblock.txt: 423) -/(.*/)?cgi-bin/banners/.* -# /cgi-bin/banner/* (advblock.txt: 422) -/(.*/)?cgi-bin/banner/.* -# /cgi-bin/adv.fcgi? (advblock.txt: 421) -/(.*/)?cgi-bin/adv\.fcgi\? -# /cgi-bin/adt.fcgi? (advblock.txt: 420) -/(.*/)?cgi-bin/adt\.fcgi\? -# /cdn-cgi/pe/bag2?r[]=*an.yandex.ru (advblock.txt: 419) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*an\.yandex\.ru -# /by.banclk? (advblock.txt: 418) -/(.*/)?by\.banclk\? -# /bstats.ashx?ck=*&rnd= (advblock.txt: 417) -/(.*/)?bstats\.ashx\?ck=.*&rnd= -# /bshow.php?dimension=$third-party,script (advblock.txt: 416) -/(.*/)?bshow\.php\?dimension= -# /branding/js/* (advblock.txt: 415) -/(.*/)?branding/js/.* -# /branding/images/*-banners. (advblock.txt: 414) -/(.*/)?branding/images/.*-banners\. -# /branding/css/*$~object-subrequest,~object (advblock.txt: 413) -/(.*/)?branding/css/.* -# /branding/casino/* (advblock.txt: 412) -/(.*/)?branding/casino/.* -# /branding.js (advblock.txt: 411) -/(.*/)?branding\.js -branding.js*. -# /branding-rotator.js (advblock.txt: 410) -/(.*/)?branding-rotator\.js -branding-rotator.js*. -# /bodyclick.php (advblock.txt: 409) -/(.*/)?bodyclick\.php -bodyclick.php*. -# /bn.php?s= (advblock.txt: 408) -/(.*/)?bn\.php\?s= -# /block_view.php?bid=$third-party (advblock.txt: 407) -/(.*/)?block_view\.php\?bid= -# /bframe.ashx?place=*&ids= (advblock.txt: 406) -/(.*/)?bframe\.ashx\?place=.*&ids= -# /bfile.ashx?placeid=*&fileid= (advblock.txt: 405) -/(.*/)?bfile\.ashx\?placeid=.*&fileid= -# /begun.js (advblock.txt: 404) -/(.*/)?begun\.js -begun.js*. -# /bazar_fast/* (advblock.txt: 403) -/(.*/)?bazar_fast/.* -# /bannerz.$object (advblock.txt: 402) -/(.*/)?bannerz\. -bannerz.*. -# /banners/*_*x*? (advblock.txt: 401) -/(.*/)?banners/.*_.*x.*\? -# /banners/*/*/0/index.$subdocument (advblock.txt: 400) -/(.*/)?banners/.*/.*/0/index\. -# /banners.mvc? (advblock.txt: 399) -/(.*/)?banners\.mvc\? -# /bannergzo/* (advblock.txt: 398) -/(.*/)?bannergzo/.* -# /bannerex.cgi/getbanner.js?id= (advblock.txt: 397) -/(.*/)?bannerex\.cgi/getbanner\.js\?id= -bannerex.cgi/getbanner\.js\?id= -# /banner_$object (advblock.txt: 396) -/(.*/)?banner_ -# /banner2.gif (advblock.txt: 395) -/(.*/)?banner2\.gif -banner2.gif*. -# /banner.gif (advblock.txt: 394) -/(.*/)?banner\.gif -banner.gif*. -# /baners/* (advblock.txt: 393) -/(.*/)?baners/.* -# /baner_ (advblock.txt: 392) -/(.*/)?baner_ -# /baner/* (advblock.txt: 391) -/(.*/)?baner/.* -# /baner. (advblock.txt: 390) -/(.*/)?baner\. -baner.*. -# /backlinks. (advblock.txt: 389) -/(.*/)?backlinks\. -backlinks.*. -# /b_bs_killdog_ (advblock.txt: 388) -/(.*/)?b_bs_killdog_ -# /b?size=*&catgry=$third-party,script (advblock.txt: 387) -/(.*/)?b\?size=.*&catgry= -# /api/topl/*/*.js$third-party (advblock.txt: 386) -/(.*/)?api/topl/.*/.*\.js -# /amcu_$script (advblock.txt: 385) -/(.*/)?amcu_ -# /aika.swf (advblock.txt: 384) -/(.*/)?aika\.swf -aika.swf*. -# /afisha_banner/* (advblock.txt: 383) -/(.*/)?afisha_banner/.* -# /adwolfScriptScroll.js (advblock.txt: 382) -/(.*/)?adwolfScriptScroll\.js -adwolfScriptScroll.js*. -# /adv_teasers. (advblock.txt: 381) -/(.*/)?adv_teasers\. -# /adv_out.$script (advblock.txt: 380) -/(.*/)?adv_out\. -# /adv?banners= (advblock.txt: 379) -/(.*/)?adv\?banners= -# /adv/* (advblock.txt: 378) -/(.*/)?adv/.* -# /adv-out/?$script (advblock.txt: 377) -/(.*/)?adv-out/\? -# /adstil. (advblock.txt: 376) -/(.*/)?adstil\. -adstil.*. -# /adsnews. (advblock.txt: 375) -/(.*/)?adsnews\. -adsnews.*. -# /Ads.asmx/GetInfo? (advblock.txt: 374) -/(.*/)?Ads\.asmx/GetInfo\? -Ads.asmx/GetInfo\? -# /AdotubeYouTubePlayer. (advblock.txt: 373) -/(.*/)?AdotubeYouTubePlayer\. -AdotubeYouTubePlayer.*. -# /admixermonitorstorage. (advblock.txt: 372) -/(.*/)?admixermonitorstorage\. -admixermonitorstorage.*. -# /admixercloudcreatives. (advblock.txt: 371) -/(.*/)?admixercloudcreatives\. -admixercloudcreatives.*. -# /admixer/* (advblock.txt: 370) -/(.*/)?admixer/.* -# /adliftQueue.js (advblock.txt: 369) -/(.*/)?adliftQueue\.js -adliftQueue.js*. -# /adlift.js (advblock.txt: 368) -/(.*/)?adlift\.js -adlift.js*. -# /adland.php (advblock.txt: 367) -/(.*/)?adland\.php -adland.php*. -# /adfox/*$image,object,script,subdocument (advblock.txt: 366) -/(.*/)?adfox/.* -# /ad_click/*$object (advblock.txt: 365) -/(.*/)?ad_click/.* -# /abnl/?ucozads^ (advblock.txt: 364) -/(.*/)?abnl/\?ucozads[^\w%.-] -# /^https?://[^/]+/[a-z0-9]{15,}(\?hope=.*)?$/$script (advblock.txt: 363) -/(.*/)?[^\w%.-]https\?://\[[^\w%.-]/\]\+/\[a-z0-9\]\{15,\}\(\\\?hope=\..*\)\?\$/ -/^https?://[^/]+/[a-z0-9]{15,}(\?hope=.*)?$ -# /^https?://([^.]+\.)+[a-z]+\.(?:biz|ru|space)/[a-z][/?][-a-z0-9_?&=]{5,45}$/$third-party,script (advblock.txt: 362) -/(.*/)?[^\w%.-]https\?://\(\[[^\w%.-]\.\]\+\\\.\)\+\[a-z\]\+\\\.\(\?:biz\|ru\|space\)/\[a-z\]\[/\?\]\[-a-z0-9_\?&=\]\{5,45\}\$/ -/^https?://([^.]+\.)+[a-z]+\.(?:biz|ru|space)/[a-z][/?][-a-z0-9_?&=]{5,45}$ -# /?t=rot&pid=$script (advblock.txt: 361) -/(.*/)?\?t=rot&pid= -# /?t=b&blockids=$script (advblock.txt: 360) -/(.*/)?\?t=b&blockids= -# /?t=*&noadult=1&pid=$script (advblock.txt: 359) -/(.*/)?\?t=.*&noadult=1&pid= -# /?get_code&template_uid=$third-party,script (advblock.txt: 358) -/(.*/)?\?get_code&template_uid= -# /8831_1.gif (advblock.txt: 357) -/(.*/)?8831_1\.gif -# /700x70_ (advblock.txt: 356) -/(.*/)?700x70_ -# /468-80- (advblock.txt: 355) -/(.*/)?468-80- -468-80-*. -# /240x400_ (advblock.txt: 354) -/(.*/)?240x400_ -# //mads. (advblock.txt: 353) -mads.*. -# //jsn.$third-party,script (advblock.txt: 352) -jsn.*. -# //b.*/iframe/* (advblock.txt: 351) -b.*./(.*/)?iframe/.* -# .viptizer. (advblock.txt: 350) -/.*\.viptizer\. -.*.viptizer.*. -# .tizers. (advblock.txt: 349) -/.*\.tizers\. -.*.tizers.*. -# .tizermedia. (advblock.txt: 348) -/.*\.tizermedia\. -.*.tizermedia.*. -# .tizer- (advblock.txt: 347) -/.*\.tizer- -.*.tizer-*. -# .teaser. (advblock.txt: 346) -/.*\.teaser\. -.*.teaser.*. -# .swf?url=http (advblock.txt: 345) -/.*\.swf\?url=http -# .swf?targetURL= (advblock.txt: 344) -/.*\.swf\?targetURL= -# .swf?target=_self&link (advblock.txt: 343) -/.*\.swf\?target=_self&link -# .swf?target=_blank& (advblock.txt: 342) -/.*\.swf\?target=_blank& -# .swf?superpreroll_url= (advblock.txt: 341) -/.*\.swf\?superpreroll_url= -# .swf?pURL= (advblock.txt: 340) -/.*\.swf\?pURL= -# .swf?path=http (advblock.txt: 339) -/.*\.swf\?path=http -# .swf?lnk= (advblock.txt: 338) -/.*\.swf\?lnk= -# .swf?href= (advblock.txt: 337) -/.*\.swf\?href= -# .swf?flash_url= (advblock.txt: 336) -/.*\.swf\?flash_url= -# .swf?flash_link= (advblock.txt: 335) -/.*\.swf\?flash_link= -# .swf?click_url= (advblock.txt: 334) -/.*\.swf\?click_url= -# .swf?banner_href= (advblock.txt: 333) -/.*\.swf\?banner_href= -# .swf?alink= (advblock.txt: 332) -/.*\.swf\?alink= -# .swf?*&link1= (advblock.txt: 331) -/.*\.swf\?.*&link1= -# .sextizer. (advblock.txt: 330) -/.*\.sextizer\. -.*.sextizer.*. -# .richbanner. (advblock.txt: 329) -/.*\.richbanner\. -.*.richbanner.*. -# .php?idadv= (advblock.txt: 327) -/.*\.php\?idadv= -# .htm?href=*&tm_mode= (advblock.txt: 326) -/.*\.htm\?href=.*&tm_mode= -# .bannerbank_ (advblock.txt: 325) -/.*\.bannerbank_ -# .bannerbank. (advblock.txt: 324) -/.*\.bannerbank\. -.*.bannerbank.*. -# -teasers- (advblock.txt: 323) -/.*-teasers- -.*-teasers-*. -# -240x400_ (advblock.txt: 322) -/.*-240x400_ -# &vk_t=*&adv_ids= (advblock.txt: 321) -/.*&vk_t=.*&adv_ids= -# &teasersTtl= (advblock.txt: 320) -/.*&teasersTtl= -# &divid=prre_ (advblock.txt: 319) -/.*&divid=prre_ -# ||zarabotat-v-inete.com^$~popup,popup (advblock.txt: 206) -.zarabotat-v-inete.com -# ||vkonagt.com^$~popup,popup (advblock.txt: 205) -.vkonagt.com -# ||otvetes.com^$~popup,popup (advblock.txt: 204) -.otvetes.com -# ||help2play.com^$~popup,popup (advblock.txt: 203) -.help2play.com -# ||add5.ru^$~popup,popup (advblock.txt: 202) -.add5.ru -# ||yapfiles.ru^*/rating_by_pop/$popup (advblock.txt: 198) -.yapfiles.ru/.*/rating_by_pop/ -# ||x-uboino.ru^$popup (advblock.txt: 197) -.x-uboino.ru -# ||x-uboino.net^$popup (advblock.txt: 196) -.x-uboino.net -# ||worldoftanks.eu/play/$popup (advblock.txt: 195) -.worldoftanks.eu/play/ -# ||winafterwin.com^$popup (advblock.txt: 194) -.winafterwin.com -# ||webarbitrage.ru/?$popup (advblock.txt: 193) -.webarbitrage.ru/\? -# ||warthunder.ru^*/register-for-free?r=$popup (advblock.txt: 192) -.warthunder.ru/.*/register-for-free\?r= -# ||wardogs.ru/lp?ref=$popup (advblock.txt: 191) -.wardogs.ru/lp\?ref= -# ||w-raza.com^$popup (advblock.txt: 190) -.w-raza.com -# ||vulkan.site^*^goto=$popup (advblock.txt: 189) -.vulkan.site/.*[^\w%.-]goto= -# ||vezuha.me^$third-party,popup (advblock.txt: 188) -.vezuha.me -# ||velcome-club.com^$popup (advblock.txt: 187) -.velcome-club.com -# ||vashi-dohody.com^$~popup,popup (advblock.txt: 186) -.vashi-dohody.com -# ||travian.com.ua/landingpage/$popup (advblock.txt: 185) -.travian.com.ua/landingpage/ -# ||test-studio.ru^$third-party,popup (advblock.txt: 184) -.test-studio.ru -# ||tankionline.com/ru/play$popup (advblock.txt: 183) -.tankionline.com/ru/play -# ||survey.gemius.com.ua^$popup (advblock.txt: 182) -.survey.gemius.com.ua -# ||snailz.ru/promo/?$popup (advblock.txt: 181) -.snailz.ru/promo/\? -# ||slivz.com^$popup (advblock.txt: 180) -.slivz.com -# ||skidka50.com.ua^$popup (advblock.txt: 179) -.skidka50.com.ua -# ||sex-mambo.net^$popup (advblock.txt: 178) -.sex-mambo.net -# ||sergey-mavrodi.com^$popup (advblock.txt: 177) -.sergey-mavrodi.com -# ||sbornix.ru^$popup (advblock.txt: 176) -.sbornix.ru -# ||say.tv/?actionpay=$popup (advblock.txt: 175) -.say.tv/\?actionpay= -# ||sapato.ru^$third-party,popup (advblock.txt: 174) -.sapato.ru -# ||runetki.com/random/$popup (advblock.txt: 172) -.runetki.com/random/ -# ||relaxmybody.ru^$popup (advblock.txt: 171) -.relaxmybody.ru -# ||promo.advertlock.ru^$popup (advblock.txt: 170) -.promo.advertlock.ru -# ||power-braselet.ru^$popup (advblock.txt: 169) -.power-braselet.ru -# ||pop.sn00.net^$popup (advblock.txt: 168) -.pop.sn00.net -# ||pointblank.ru/?pid=$popup (advblock.txt: 167) -.pointblank.ru/\?pid= -# ||pin2me.com^$popup (advblock.txt: 166) -.pin2me.com -# ||pi-c.ru/go.php?id=*&rref=$popup (advblock.txt: 165) -.pi-c.ru/go\.php\?id=.*&rref= -# ||partypoker.com^*/videopop/$popup (advblock.txt: 164) -.partypoker.com/.*/videopop/ -# ||panel.gemius.com.ua^$popup (advblock.txt: 163) -.panel.gemius.com.ua -# ||mycultures.ru^$popup (advblock.txt: 162) -.mycultures.ru -# ||my-eromir.net^$popup (advblock.txt: 161) -.my-eromir.net -# ||moi-goroskop.com^$popup (advblock.txt: 160) -.moi-goroskop.com -# ||modnakasta.ua^$popup (advblock.txt: 159) -.modnakasta.ua -# ||mobruner.com^$~popup,popup (advblock.txt: 158) -.mobruner.com -# ||megogo.net^*&utm_$popup (advblock.txt: 157) -.megogo.net/.*&utm_ -# ||luckiestclick.com^$popup (advblock.txt: 156) -.luckiestclick.com -# ||lovecity3d.com/img/promo.$popup (advblock.txt: 155) -.lovecity3d.com/img/promo\. -# ||loadru.ru/18/$popup (advblock.txt: 154) -.loadru.ru/18/ -# ||link2you.ru^$popup (advblock.txt: 153) -.link2you.ru -# ||legendworld.ru/ref/$popup (advblock.txt: 152) -.legendworld.ru/ref/ -# ||kupitraf.com^$popup (advblock.txt: 151) -.kupitraf.com -# ||inet-dengi.net/?$popup (advblock.txt: 150) -.inet-dengi.net/\? -# ||goodsbrowser.com^$popup (advblock.txt: 149) -.goodsbrowser.com -# ||gamebomb.ru/gaming.$popup (advblock.txt: 147) -.gamebomb.ru/gaming\. -# ||funtest-ru.com^$popup (advblock.txt: 146) -.funtest-ru.com -# ||fotostrana.ru/start/*/?$popup (advblock.txt: 145) -.fotostrana.ru/start/.*/\? -# ||fileplaneta.com/?op=redirect_to&url=$popup (advblock.txt: 144) -.fileplaneta.com/\?op=redirect_to&url= -# ||fastpic.ru/?$popup (advblock.txt: 143) -.fastpic.ru/\? -# ||etonovosti.net^$popup (advblock.txt: 142) -.etonovosti.net -# ||ero-spinula.ru^$popup (advblock.txt: 141) -.ero-spinula.ru -# ||electblogers.com^$third-party,popup (advblock.txt: 140) -.electblogers.com -# ||electbloger.com^$popup (advblock.txt: 139) -.electbloger.com -# ||drtuber.com/embed/redirect?$popup (advblock.txt: 138) -.drtuber.com/embed/redirect\? -# ||discovermore.ru/restorepassword$~popup,popup (advblock.txt: 137) -.discovermore.ru/restorepassword -# ||devochki.cz^$popup (advblock.txt: 136) -.devochki.cz -# ||darkorbit.bigpoint.com/?aid=$popup (advblock.txt: 135) -.darkorbit.bigpoint.com/\?aid= -# ||contactsin.mobi^$third-party,~popup,popup (advblock.txt: 133) -.contactsin.mobi -# ||clubrelaxxxx.com^$popup (advblock.txt: 132) -.clubrelaxxxx.com -# ||club-sale.ru^$popup (advblock.txt: 131) -.club-sale.ru -# ||chaplingames.ru^$popup (advblock.txt: 129) -.chaplingames.ru -# ||cdnet.tv/lockadb.$popup (advblock.txt: 128) -.cdnet.tv/lockadb\. -# ||casino-x.com/?partner=$popup (advblock.txt: 127) -.casino-x.com/\?partner= -# ||bonsport.ru^$popup (advblock.txt: 125) -.bonsport.ru -# ||blinkogold.ru^$popup (advblock.txt: 124) -.blinkogold.ru -# ||audance.ru*/promo/$popup (advblock.txt: 123) -.audance.ru*./(.*/)?promo/ -# ||astaninki2.com^$popup (advblock.txt: 122) -.astaninki2.com -# ||alvegia.ru/register_$popup (advblock.txt: 121) -.alvegia.ru/register_ -# ||adv859672.ru^$third-party,~popup,popup (advblock.txt: 120) -.adv859672.ru -# ||adv758968.ru^$third-party,~popup,popup (advblock.txt: 119) -.adv758968.ru -# ||adv679854.ru^$third-party,~popup,popup (advblock.txt: 118) -.adv679854.ru -# ||adv578125.ru^$third-party,~popup,popup (advblock.txt: 117) -.adv578125.ru -# ||adv481895.ru^$third-party,~popup,popup (advblock.txt: 116) -.adv481895.ru -# ||adv457895.ru^$third-party,~popup,popup (advblock.txt: 115) -.adv457895.ru -# ||adv225489.ru^$third-party,~popup,popup (advblock.txt: 114) -.adv225489.ru -# ||9donline.ru/welcome/?mita=$popup (advblock.txt: 112) -.9donline.ru/welcome/\?mita= -# ||24smile.$third-party,popup (advblock.txt: 111) -.24smile.*. -# /blog_strijenko/*$popup (advblock.txt: 110) -/(.*/)?blog_strijenko/.* -# ||yandes.biz/in.cgi?$popup (advblock.txt: 108) -.yandes.biz/in\.cgi\? -# ||war.noc.su/?$popup (advblock.txt: 107) -.war.noc.su/\? -# ||wap-jump.com/jump_redirect?id=$popup (advblock.txt: 106) -.wap-jump.com/jump_redirect\?id= -# ||track.adwad.ru^$popup (advblock.txt: 105) -.track.adwad.ru -# ||terraclicks.com^$popup (advblock.txt: 104) -.terraclicks.com -# ||teamearn.ru/open/$popup (advblock.txt: 103) -.teamearn.ru/open/ -# ||social-leads.ru^$third-party,~popup,popup (advblock.txt: 102) -.social-leads.ru -# ||ruclicks.com/in/$popup (advblock.txt: 101) -.ruclicks.com/in/ -# ||redirecturl.ru^$popup (advblock.txt: 100) -.redirecturl.ru -# ||re-directme.com^$popup (advblock.txt: 99) -.re-directme.com -# ||rambler.pw^$popup (advblock.txt: 98) -.rambler.pw -# ||playermailer.net^$popup (advblock.txt: 97) -.playermailer.net -# ||peel-down.net/search.php?$popup (advblock.txt: 96) -.peel-down.net/search\.php\? -# ||napravil.ru^$popup (advblock.txt: 95) -.napravil.ru -# ||mxttrf.com/ads?$popup (advblock.txt: 94) -.mxttrf.com/ads\? -# ||mi3u.info^$~popup,popup (advblock.txt: 93) -.mi3u.info -# ||mesvip.com^$popup (advblock.txt: 92) -.mesvip.com -# ||luxup.ru^$popup (advblock.txt: 91) -.luxup.ru -# ||luckydir.ru^$~popup,popup (advblock.txt: 90) -.luckydir.ru -# ||lightcoffee.ru^$popup (advblock.txt: 89) -.lightcoffee.ru -# ||kan3.info^$~popup,popup (advblock.txt: 88) -.kan3.info -# ||ipchecker.ru/?id=$popup (advblock.txt: 87) -.ipchecker.ru/\?id= -# ||igrohit.net/goto.$popup (advblock.txt: 86) -.igrohit.net/goto\. -# ||hghit.com/direct?$popup (advblock.txt: 85) -.hghit.com/direct\? -# ||hapend.biz/thread$popup (advblock.txt: 84) -.hapend.biz/thread -# ||gotostat.ru^$popup (advblock.txt: 83) -.gotostat.ru -# ||gobylink.info^$popup (advblock.txt: 82) -.gobylink.info -# ||go.trafking.ru^$popup (advblock.txt: 81) -.go.trafking.ru -# ||ertovy.ru^$popup (advblock.txt: 80) -.ertovy.ru -# ||eknq.ru^$popup (advblock.txt: 79) -.eknq.ru -# ||earnshill.com/images/sp/$popup (advblock.txt: 78) -.earnshill.com/images/sp/ -# ||crusewind.net/click/direct.php?$popup (advblock.txt: 77) -.crusewind.net/click/direct\.php\? -# ||compareiseries.in^$third-party,~popup,popup (advblock.txt: 76) -.compareiseries.in -# ||clickson.net^*/pp/$popup (advblock.txt: 75) -.clickson.net/.*/pp/ -# ||clickov.com^$popup (advblock.txt: 74) -.clickov.com -# ||clickganic.com^$popup (advblock.txt: 73) -.clickganic.com -# ||cbn.tbn.ru^$third-party,popup (advblock.txt: 72) -.cbn.tbn.ru -# ||bubblesmedia.ru/gocu/$popup (advblock.txt: 71) -.bubblesmedia.ru/gocu/ -# ||apb-re.ru/?pid=$popup (advblock.txt: 70) -.apb-re.ru/\?pid= -# ||am15.net^$popup (advblock.txt: 69) -.am15.net -# ||aftevap.ru^$popup (advblock.txt: 68) -.aftevap.ru -# ||adspynet.com/reference?pid=$popup (advblock.txt: 67) -.adspynet.com/reference\?pid= -# ||adservone.com^$popup (advblock.txt: 66) -.adservone.com -# ||adserv01.ru^$third-party,~popup,popup (advblock.txt: 65) -.adserv01.ru -# ||actionpay.ru^$third-party,~popup,popup (advblock.txt: 64) -.actionpay.ru -# .tnt-online.ru/?utm_$popup (advblock.txt: 63) -/.*\.tnt-online\.ru/\?utm_ -.*.tnt-online.ru/\?utm_ -# ||com/on.php?id=$popup (advblock.txt: 61) -# ||com/go.php?tid=*&hid=$popup (advblock.txt: 60) -# ^clickunder^$~popup,popup (advblock.txt: 59) -/(.*[^\w%.-])?clickunder[^\w%.-] -# /wtsin.cgi?id=$~popup,popup (advblock.txt: 58) -/(.*/)?wtsin\.cgi\?id= -# /webunder.$~popup,popup (advblock.txt: 57) -/(.*/)?webunder\. -webunder.*. -# /vkshpion/?page=$popup (advblock.txt: 56) -/(.*/)?vkshpion/\?page= -# /utarget.$~popup,popup (advblock.txt: 55) -/(.*/)?utarget\. -utarget.*. -# /popua/*$popup (advblock.txt: 54) -/(.*/)?popua/.* -# /popads/*$popup (advblock.txt: 53) -/(.*/)?popads/.* -# /popads.$popup (advblock.txt: 52) -/(.*/)?popads\. -popads.*. -# /JumpClick?i=BannerKey_$popup (advblock.txt: 51) -/(.*/)?JumpClick\?i=BannerKey_ -# /click/body.php?id=*&hash=$~popup,popup (advblock.txt: 50) -/(.*/)?click/body\.php\?id=.*&hash= -# /adv_clk_redirect.php?$popup (advblock.txt: 49) -/(.*/)?adv_clk_redirect\.php\? -# /ad/popup/*$popup (advblock.txt: 48) -/(.*/)?ad/popup/.* -# //uno.*/?t=$popup,script (advblock.txt: 47) -uno.*./(.*/)?\?t= -# //kpup.*/?sid=$popup (advblock.txt: 46) -kpup.*./(.*/)?\?sid= -# .webunder.$~popup,popup (advblock.txt: 45) -/.*\.webunder\. -.*.webunder.*. -# .clickunder.$~popup,popup (advblock.txt: 44) -/.*\.clickunder\. -.*.clickunder.*. -# &utm_campaign=CU_ru$popup (advblock.txt: 43) -/.*&utm_campaign=CU_ru -# &temz=clikundr&$~popup,popup (advblock.txt: 42) -/.*&temz=clikundr& -# ||getitbit.net/ads/$popup (advblock.txt: 34) -.getitbit.net/ads/ -# ||com/?id=*&t=direct^$popup (advblock.txt: 31) -# .lostfilm.tv^*^bid=$popup (advblock.txt: 28) -/.*\.lostfilm\.tv[^\w%.-].*[^\w%.-]bid= -.*.lostfilm.tv/.*[^\w%.-]bid= -# ||ymages.org/prepop.php$popup (easylist.txt: 36609) -.ymages.org/prepop\.php -# ||r18.com/*utm_source$popup (easylist.txt: 36606) -.r18.com/.*utm_source -# ||publicagent.com/bigzpup.php$popup (easylist.txt: 36605) -.publicagent.com/bigzpup\.php -# ||pornuppz.info/out.php$popup (easylist.txt: 36604) -.pornuppz.info/out\.php -# ||pop.mrstiff.com^$popup (easylist.txt: 36601) -.pop.mrstiff.com -# ||pop.fapxl.com^$popup (easylist.txt: 36600) -.pop.fapxl.com -# ||pinporn.com/popunder/$popup (easylist.txt: 36599) -.pinporn.com/popunder/ -# ||namethatporn.com/ntpoo$popup (easylist.txt: 36598) -.namethatporn.com/ntpoo -# ||movies.askjolene.com/c64?clickid=$popup (easylist.txt: 36597) -.movies.askjolene.com/c64\?clickid= -# ||imagebam.com/redirect_awe.php$popup (easylist.txt: 36596) -.imagebam.com/redirect_awe\.php -# ||heganteens.com/exo.php$popup (easylist.txt: 36595) -.heganteens.com/exo\.php -# ||hegansex.com/exo.php$popup (easylist.txt: 36594) -.hegansex.com/exo\.php -# ||h2porn.com/pu.php$popup (easylist.txt: 36593) -.h2porn.com/pu\.php -# ||fantastube.com/track.php$popup (easylist.txt: 36589) -.fantastube.com/track\.php -# ||fantasti.cc^*?ad=$popup (easylist.txt: 36588) -.fantasti.cc/.*\?ad= -# ||eporner.com/pop.php$popup (easylist.txt: 36587) -.eporner.com/pop\.php -# ||ad.userporn.com^$popup (easylist.txt: 36586) -.ad.userporn.com -# ||zazzybabes.com/misc/virtuagirl-skin.js (easylist.txt: 36581) -.zazzybabes.com/misc/virtuagirl-skin\.js -# ||yuvutu.com^*/banners/ (easylist.txt: 36580) -.yuvutu.com/.*/banners/ -# ||yumymilf.com^*/banners/ (easylist.txt: 36579) -.yumymilf.com/.*/banners/ -# ||yporn.tv/uploads/flv_player/midroll_images/ (easylist.txt: 36578) -.yporn.tv/uploads/flv_player/midroll_images/ -# ||yporn.tv/uploads/flv_player/commercials/ (easylist.txt: 36577) -.yporn.tv/uploads/flv_player/commercials/ -# ||youx.xxx/thumb_top/ (easylist.txt: 36576) -.youx.xxx/thumb_top/ -# ||youtubelike.com/ftt2/toplists/ (easylist.txt: 36575) -.youtubelike.com/ftt2/toplists/ -# ||yourlust.com/im/postroll.html (easylist.txt: 36574) -.yourlust.com/im/postroll\.html -# ||yourlust.com/im/onpause.html (easylist.txt: 36573) -.yourlust.com/im/onpause\.html -# ||yourdarkdesires.com/3.html (easylist.txt: 36572) -.yourdarkdesires.com/3\.html -# ||yourdarkdesires.com/2.html (easylist.txt: 36571) -.yourdarkdesires.com/2\.html -# ||yourdarkdesires.com/1.html (easylist.txt: 36570) -.yourdarkdesires.com/1\.html -# ||yourdailygirls.com/vanilla/process.php (easylist.txt: 36569) -.yourdailygirls.com/vanilla/process\.php -# ||youporn.com^$subdocument,~third-party (easylist.txt: 36568) -.youporn.com -# ||youporn.com/watch_postroll/ (easylist.txt: 36565) -.youporn.com/watch_postroll/ -# ||youporn.com/capedorset/ (easylist.txt: 36564) -.youporn.com/capedorset/ -# ||youporn-hub.com/newlcd.js (easylist.txt: 36563) -.youporn-hub.com/newlcd\.js -# ||youporn-hub.com/lcdscript.js (easylist.txt: 36562) -.youporn-hub.com/lcdscript\.js -# ||youngpornvideos.com/images/wmasterthecoolporn/ (easylist.txt: 36561) -.youngpornvideos.com/images/wmasterthecoolporn/ -# ||youngpornvideos.com/images/webmasterdelightlinks/ (easylist.txt: 36560) -.youngpornvideos.com/images/webmasterdelightlinks/ -# ||youngpornvideos.com/images/teencash/ (easylist.txt: 36559) -.youngpornvideos.com/images/teencash/ -# ||youngpornvideos.com/images/mofoscash/ (easylist.txt: 36558) -.youngpornvideos.com/images/mofoscash/ -# ||youngpornvideos.com/images/glamglam/ (easylist.txt: 36557) -.youngpornvideos.com/images/glamglam/ -# ||youngpornvideos.com/images/bangbros/ (easylist.txt: 36556) -.youngpornvideos.com/images/bangbros/ -# ||youjizz.com^$~third-party,xmlhttprequest (easylist.txt: 36555) -.youjizz.com -# ||youjizz.com^$subdocument,~third-party (easylist.txt: 36554) -.youjizz.com -# ||youjizz.com/vivid/ (easylist.txt: 36553) -.youjizz.com/vivid/ -# ||youaresogay.com/*.html (easylist.txt: 36552) -.youaresogay.com/.*\.html -# ||yobt.tv/rec/ (easylist.txt: 36551) -.yobt.tv/rec/ -# ||yobt.tv/js/ttu.js (easylist.txt: 36550) -.yobt.tv/js/ttu\.js -# ||yobt.com/rec/ (easylist.txt: 36549) -.yobt.com/rec/ -# ||yea.xxx/img/creatives/ (easylist.txt: 36548) -.yea.xxx/img/creatives/ -# ||xxxymovies.com/js/win.js (easylist.txt: 36547) -.xxxymovies.com/js/win\.js -# ||xxxxsextube.com/*.html$subdocument (easylist.txt: 36546) -.xxxxsextube.com/.*\.html -# ||xxxporntalk.com/images/ (easylist.txt: 36545) -.xxxporntalk.com/images/ -# ||xxxlinks.es/xvideos.js (easylist.txt: 36544) -.xxxlinks.es/xvideos\.js -# ||xxxkinky.com/pap.js (easylist.txt: 36543) -.xxxkinky.com/pap\.js -# ||xxxhost.me/xpw.gif (easylist.txt: 36542) -.xxxhost.me/xpw\.gif -# ||xxxgames.biz^*/sponsors/ (easylist.txt: 36541) -.xxxgames.biz/.*/sponsors/ -# ||xxxfile.net^*/netload_premium.gif (easylist.txt: 36540) -.xxxfile.net/.*/netload_premium\.gif -# ||xxxblink.com/rec/ (easylist.txt: 36539) -.xxxblink.com/rec/ -# ||xxxblink.com/js/pops. (easylist.txt: 36538) -.xxxblink.com/js/pops\. -# ||xxvideo.us/playertext.html (easylist.txt: 36537) -.xxvideo.us/playertext\.html -# ||xxvideo.us/bnr.js (easylist.txt: 36536) -.xxvideo.us/bnr\.js -# ||xxvideo.us/ad728x15 (easylist.txt: 36535) -.xxvideo.us/ad728x15 -# ||xxnxx.eu/index.php?xyz_lbx= (easylist.txt: 36534) -.xxnxx.eu/index\.php\?xyz_lbx= -# ||xvideohost.com/hor_banner.php (easylist.txt: 36533) -.xvideohost.com/hor_banner\.php -# ||xtravids.com/pop.php (easylist.txt: 36532) -.xtravids.com/pop\.php -# ||xogogo.com/images/latestpt.gif (easylist.txt: 36531) -.xogogo.com/images/latestpt\.gif -# ||xhcdn.com^*/ads_ (easylist.txt: 36530) -.xhcdn.com/.*/ads_ -# ||xhamsterpremiumpass.com/premium_scenes.html (easylist.txt: 36529) -.xhamsterpremiumpass.com/premium_scenes\.html -# ||xhamster.com/js/xpu.js (easylist.txt: 36528) -.xhamster.com/js/xpu\.js -# ||xhamster.com/ads/ (easylist.txt: 36527) -.xhamster.com/ads/ -# ||xfanz.com^*_banner_ (easylist.txt: 36526) -.xfanz.com/.*_banner_ -# ||xcritic.com/img/200x150_ (easylist.txt: 36525) -.xcritic.com/img/200x150_ -# ||xcritic.com/images/watch- (easylist.txt: 36524) -.xcritic.com/images/watch- -# ||xcritic.com/images/rent- (easylist.txt: 36523) -.xcritic.com/images/rent- -# ||xcritic.com/images/buy- (easylist.txt: 36522) -.xcritic.com/images/buy- -# ||xbutter.com/js/pop-er.js (easylist.txt: 36521) -.xbutter.com/js/pop-er\.js -# ||xbutter.com/geturl.php/ (easylist.txt: 36520) -.xbutter.com/geturl\.php/ -# ||xbutter.com/adz.html (easylist.txt: 36519) -.xbutter.com/adz\.html -# ||xbooru.com/block/adblocks.js (easylist.txt: 36518) -.xbooru.com/block/adblocks\.js -# ||xbabe.com/iframes/ (easylist.txt: 36517) -.xbabe.com/iframes/ -# ||x3xtube.com/banner_rotating_ (easylist.txt: 36516) -.x3xtube.com/banner_rotating_ -# ||x.vipergirls.to^ (easylist.txt: 36515) -.x.vipergirls.to -# ||x.eroticity.net^ (easylist.txt: 36514) -.x.eroticity.net -# ||wunbuck.com/iframes/aaw_leaderboard.html (easylist.txt: 36513) -.wunbuck.com/iframes/aaw_leaderboard\.html -# ||wunbuck.com/_odd_images/banners/ (easylist.txt: 36512) -.wunbuck.com/_odd_images/banners/ -# ||wrenchtube.com/poppt.js (easylist.txt: 36511) -.wrenchtube.com/poppt\.js -# ||wowomg.com/*.html (easylist.txt: 36510) -.wowomg.com/.*\.html -# ||worldsex.com/c/ (easylist.txt: 36509) -.worldsex.com/c/ -# ||wikiporno.org/header21.html (easylist.txt: 36508) -.wikiporno.org/header21\.html -# ||wikiporno.org/header2.html (easylist.txt: 36507) -.wikiporno.org/header2\.html -# ||wiki-stars.com/trade/ (easylist.txt: 36506) -.wiki-stars.com/trade/ -# ||wiki-stars.com/thumb_if.php? (easylist.txt: 36505) -.wiki-stars.com/thumb_if\.php\? -# ||whozacunt.com/images/banner_ (easylist.txt: 36504) -.whozacunt.com/images/banner_ -# ||whozacunt.com/images/*_300x200_ (easylist.txt: 36503) -.whozacunt.com/images/.*_300x200_ -# ||whozacunt.com/images/*-300x250. (easylist.txt: 36502) -.whozacunt.com/images/.*-300x250\. -# ||whitedolly.com/wcf/images/redbar/logo_neu.gif (easylist.txt: 36501) -.whitedolly.com/wcf/images/redbar/logo_neu\.gif -# ||wetpussygames.com/images/promo/ (easylist.txt: 36500) -.wetpussygames.com/images/promo/ -# ||wetplace.com/wetplace_html/ (easylist.txt: 36499) -.wetplace.com/wetplace_html/ -# ||wetplace.com/js/adpwetplace (easylist.txt: 36498) -.wetplace.com/js/adpwetplace -# ||wetplace.com/iframes/$subdocument (easylist.txt: 36497) -.wetplace.com/iframes/ -# ||wegcash.com/click/ (easylist.txt: 36496) -.wegcash.com/click/ -# ||weberotic.net/banners/ (easylist.txt: 36495) -.weberotic.net/banners/ -# ||watchindianporn.net/js/pu.js (easylist.txt: 36494) -.watchindianporn.net/js/pu\.js -# ||watch2porn.net/pads2.js (easylist.txt: 36493) -.watch2porn.net/pads2\.js -# ||wankspider.com/js/wankspider.js (easylist.txt: 36492) -.wankspider.com/js/wankspider\.js -# ||wank.to/partner/ (easylist.txt: 36491) -.wank.to/partner/ -# ||vstreamcdn.com^*/ads/ (easylist.txt: 36490) -.vstreamcdn.com/.*/ads/ -# ||voyeurhit.com/related/voyeurhit.php?t_sid= (easylist.txt: 36489) -.voyeurhit.com/related/voyeurhit\.php\?t_sid= -# ||voyeurhit.com/contents/content_sources/ (easylist.txt: 36488) -.voyeurhit.com/contents/content_sources/ -# ||vivatube.com/upload/banners/ (easylist.txt: 36487) -.vivatube.com/upload/banners/ -# ||viralporn.com^*/popnew.js (easylist.txt: 36486) -.viralporn.com/.*/popnew\.js -# ||vidgrab.net/pads2.js (easylist.txt: 36485) -.vidgrab.net/pads2\.js -# ||vidgrab.net/images/adsbar (easylist.txt: 36484) -.vidgrab.net/images/adsbar -# ||vidgrab.net/bnr.js (easylist.txt: 36483) -.vidgrab.net/bnr\.js -# ||vidgrab.net/adsbar.png (easylist.txt: 36482) -.vidgrab.net/adsbar\.png -# ||videos.com^*/jsp.js (easylist.txt: 36481) -.videos.com/.*/jsp\.js -# ||videarn.com/vibrate.js (easylist.txt: 36480) -.videarn.com/vibrate\.js -# ||vid2c.com/pp.js (easylist.txt: 36479) -.vid2c.com/pp\.js -# ||vid2c.com/pap.js (easylist.txt: 36478) -.vid2c.com/pap\.js -# ||vid2c.com/js/pp.js (easylist.txt: 36477) -.vid2c.com/js/pp\.js -# ||vid2c.com/js/atxpp.js? (easylist.txt: 36476) -.vid2c.com/js/atxpp\.js\? -# ||vibraporn.com/vg/ (easylist.txt: 36475) -.vibraporn.com/vg/ -# ||upornia.com/contents/content_sources/ (easylist.txt: 36474) -.upornia.com/contents/content_sources/ -# ||updatetube.com/js/adpupdatetube (easylist.txt: 36473) -.updatetube.com/js/adpupdatetube -# ||unoxxx.com/pages/en_player_video_right.html (easylist.txt: 36472) -.unoxxx.com/pages/en_player_video_right\.html -# ||unblockedpiratebay.com/static/img/bar.gif (easylist.txt: 36471) -.unblockedpiratebay.com/static/img/bar\.gif -# ||ukrainamateurs.com/images/banners/ (easylist.txt: 36470) -.ukrainamateurs.com/images/banners/ -# ||uflash.tv^*/affiliates/ (easylist.txt: 36469) -.uflash.tv/.*/affiliates/ -# ||twofuckers.com/brazzers (easylist.txt: 36468) -.twofuckers.com/brazzers -# ||twinsporn.net/images/free-penis-pills.png (easylist.txt: 36467) -.twinsporn.net/images/free-penis-pills\.png -# ||twinsporn.net/images/delay.gif (easylist.txt: 36466) -.twinsporn.net/images/delay\.gif -# ||turboimagehost.com/p1.js (easylist.txt: 36465) -.turboimagehost.com/p1\.js -# ||tubedupe.com/side_two.html (easylist.txt: 36464) -.tubedupe.com/side_two\.html -# ||tubedupe.com/footer_four.html (easylist.txt: 36463) -.tubedupe.com/footer_four\.html -# ||tubecup.org/?t_sid= (easylist.txt: 36462) -.tubecup.org/\?t_sid= -# ||tubecup.com/js/1.js (easylist.txt: 36461) -.tubecup.com/js/1\.js -# ||tubecup.com/contents/content_sources/ (easylist.txt: 36460) -.tubecup.com/contents/content_sources/ -# ||tube8.com^$subdocument,~third-party (easylist.txt: 36459) -.tube8.com -# ||tube8.com/sugarcrush/ (easylist.txt: 36458) -.tube8.com/sugarcrush/ -# ||tube8.com/penthouse/ (easylist.txt: 36457) -.tube8.com/penthouse/ -# ||trovaporno.com/image/incontri$image (easylist.txt: 36456) -.trovaporno.com/image/incontri -# ||tnaflix.com^*_promo.jpg (easylist.txt: 36455) -.tnaflix.com/.*_promo\.jpg -# ||tnaflix.com/flixPlayerImages/ (easylist.txt: 36454) -.tnaflix.com/flixPlayerImages/ -# ||tnaflix.com/banner/ (easylist.txt: 36453) -.tnaflix.com/banner/ -# ||tjoob.com/kellyban.gif (easylist.txt: 36452) -.tjoob.com/kellyban\.gif -# ||tjoob.com/bgbb.jpg (easylist.txt: 36451) -.tjoob.com/bgbb\.jpg -# ||titsintops.com/rotate/ (easylist.txt: 36450) -.titsintops.com/rotate/ -# ||titsintops.com/intersitial/ (easylist.txt: 36449) -.titsintops.com/intersitial/ -# ||timtube.com/traffic.js (easylist.txt: 36448) -.timtube.com/traffic\.js -# ||thumblogger.com/thumblog/top_banner_silver.js (easylist.txt: 36447) -.thumblogger.com/thumblog/top_banner_silver\.js -# ||thisav.com/js/thisav_pop.js (easylist.txt: 36446) -.thisav.com/js/thisav_pop\.js -# ||thisav.com/js/pu.js (easylist.txt: 36445) -.thisav.com/js/pu\.js -# ||thinkexist.com/images/afm.js (easylist.txt: 36444) -.thinkexist.com/images/afm\.js -# ||thepornomatrix.com/images/1- (easylist.txt: 36443) -.thepornomatrix.com/images/1- -# ||theporncore.com/contents/content_sources/ (easylist.txt: 36442) -.theporncore.com/contents/content_sources/ -# ||thenipslip.com/mfcbanner.gif (easylist.txt: 36441) -.thenipslip.com/mfcbanner\.gif -# ||thenipslip.com/GGWDrunkenAd.jpg (easylist.txt: 36440) -.thenipslip.com/GGWDrunkenAd\.jpg -# ||thenewporn.com/js/adpthenewporn (easylist.txt: 36439) -.thenewporn.com/js/adpthenewporn -# ||thehun.net^*/banners/ (easylist.txt: 36438) -.thehun.net/.*/banners/ -# ||the-feeding-tube.com^*/Topbanner.php (easylist.txt: 36436) -.the-feeding-tube.com/.*/Topbanner\.php -# ||the-analist.info^*150x150 (easylist.txt: 36435) -.the-analist.info/.*150x150 -# ||the-analist.info^*150sq (easylist.txt: 36434) -.the-analist.info/.*150sq -# ||the-analist.info^*150-150 (easylist.txt: 36433) -.the-analist.info/.*150-150 -# ||temptingangels.org/media/banners/ (easylist.txt: 36432) -.temptingangels.org/media/banners/ -# ||temptingangels.org/banner/ (easylist.txt: 36431) -.temptingangels.org/banner/ -# ||teentube18.com/js/realamateurtube.js (easylist.txt: 36430) -.teentube18.com/js/realamateurtube\.js -# ||teensexcraze.com/awesome/leader.html (easylist.txt: 36429) -.teensexcraze.com/awesome/leader\.html -# ||teensanalfactor.com/best/ (easylist.txt: 36428) -.teensanalfactor.com/best/ -# ||taxidrivermovie.com/mrskin_runner/ (easylist.txt: 36427) -.taxidrivermovie.com/mrskin_runner/ -# ||tabletporn.com/images/pinkvisualpad- (easylist.txt: 36426) -.tabletporn.com/images/pinkvisualpad- -# ||sxx.com/js/lj.js (easylist.txt: 36424) -.sxx.com/js/lj\.js -# ||svscomics.com^*/dtrotator.js (easylist.txt: 36423) -.svscomics.com/.*/dtrotator\.js -# ||sunporno.com/js/flirt/serve.js (easylist.txt: 36422) -.sunporno.com/js/flirt/serve\.js -# ||submityourflicks.com/banner/ (easylist.txt: 36421) -.submityourflicks.com/banner/ -# ||stolenvideos.net/stolen.js (easylist.txt: 36420) -.stolenvideos.net/stolen\.js -# ||stockingstv.com/partners/ (easylist.txt: 36419) -.stockingstv.com/partners/ -# ||static.kinghost.com^ (easylist.txt: 36418) -.static.kinghost.com -# ||static.flabber.net^*background (easylist.txt: 36417) -.static.flabber.net/.*background -# ||starcelebs.com/logos/$image (easylist.txt: 36416) -.starcelebs.com/logos/ -# ||springbreaktubegirls.com/js/springpop.js (easylist.txt: 36415) -.springbreaktubegirls.com/js/springpop\.js -# ||spankbang.com/gateway/ (easylist.txt: 36414) -.spankbang.com/gateway/ -# ||songs.pk/ie/ietext.html (easylist.txt: 36413) -.songs.pk/ie/ietext\.html -# ||socaseiras.com.br/banners.php? (easylist.txt: 36412) -.socaseiras.com.br/banners\.php\? -# ||socaseiras.com.br/banner_ (easylist.txt: 36411) -.socaseiras.com.br/banner_ -# ||socaseiras.com.br/arquivos/banners/ (easylist.txt: 36410) -.socaseiras.com.br/arquivos/banners/ -# ||smutmodels.com/sponsors/ (easylist.txt: 36409) -.smutmodels.com/sponsors/ -# ||slinky.com.au/banners/ (easylist.txt: 36408) -.slinky.com.au/banners/ -# ||skimtube.com/kellyban.gif (easylist.txt: 36407) -.skimtube.com/kellyban\.gif -# ||site.img.4tube.com^ (easylist.txt: 36406) -.site.img.4tube.com -# ||sillusions.ws^*/vpn-banner.gif (easylist.txt: 36405) -.sillusions.ws/.*/vpn-banner\.gif -# ||sillusions.ws^*/pr0pop.js (easylist.txt: 36404) -.sillusions.ws/.*/pr0pop\.js -# ||signbucksdaily.com/data/promo/ (easylist.txt: 36403) -.signbucksdaily.com/data/promo/ -# ||signbucks.com/s/bns/ (easylist.txt: 36402) -.signbucks.com/s/bns/ -# ||shy-cams.com/tube.js (easylist.txt: 36401) -.shy-cams.com/tube\.js -# ||shooshtimeinc.com/under.php (easylist.txt: 36400) -.shooshtimeinc.com/under\.php -# ||shooshtime.com/images/chosenplugs/ (easylist.txt: 36399) -.shooshtime.com/images/chosenplugs/ -# ||shooshtime.com/ads/ (easylist.txt: 36398) -.shooshtime.com/ads/ -# ||sharew.org/modalfiles/ (easylist.txt: 36397) -.sharew.org/modalfiles/ -# ||shanbara.jp/okusamadx.gif (easylist.txt: 36396) -.shanbara.jp/okusamadx\.gif -# ||shanbara.jp/300_200plus.jpg (easylist.txt: 36395) -.shanbara.jp/300_200plus\.jpg -# ||sexytime.com/img/sexytime_anima.gif (easylist.txt: 36394) -.sexytime.com/img/sexytime_anima\.gif -# ||sexyshare.net//banners/ (easylist.txt: 36393) -# ||sexyfuckgames.com/images/promo/ (easylist.txt: 36392) -.sexyfuckgames.com/images/promo/ -# ||sexyclips.org/i/130x500.gif (easylist.txt: 36391) -.sexyclips.org/i/130x500\.gif -# ||sexyclips.org/banners/ (easylist.txt: 36390) -.sexyclips.org/banners/ -# ||sexyandshocking.com/mzpop.js (easylist.txt: 36389) -.sexyandshocking.com/mzpop\.js -# ||sexyandfunny.com/images/totem (easylist.txt: 36388) -.sexyandfunny.com/images/totem -# ||sexy-toons.org/interface/pub/ (easylist.txt: 36387) -.sexy-toons.org/interface/pub/ -# ||sexy-toons.org/interface/partenariat/ (easylist.txt: 36386) -.sexy-toons.org/interface/partenariat/ -# ||sexvines.co/images/cp (easylist.txt: 36385) -.sexvines.co/images/cp -# ||sexuhot.com/splayer.js (easylist.txt: 36384) -.sexuhot.com/splayer\.js -# ||sexuhot.com/images/xbanner (easylist.txt: 36383) -.sexuhot.com/images/xbanner -# ||sextubebox.com/ab2.shtml (easylist.txt: 36382) -.sextubebox.com/ab2\.shtml -# ||sextubebox.com/ab1.shtml (easylist.txt: 36381) -.sextubebox.com/ab1\.shtml -# ||sextube.com/lj.js (easylist.txt: 36380) -.sextube.com/lj\.js -# ||sexseeimage.com^*/banner.gif (easylist.txt: 36379) -.sexseeimage.com/.*/banner\.gif -# ||sexmummy.com/footer.htm (easylist.txt: 36378) -.sexmummy.com/footer\.htm -# ||sexmummy.com/float.htm (easylist.txt: 36377) -.sexmummy.com/float\.htm -# ||sexilation.com/wp-content/uploads/2013/01/Untitled-1.jpg (easylist.txt: 36376) -.sexilation.com/wp-content/uploads/2013/01/Untitled-1\.jpg -# ||sex3dtoons.com/im/ (easylist.txt: 36375) -.sex3dtoons.com/im/ -# ||sex3.com/if/ (easylist.txt: 36374) -.sex3.com/if/ -# ||sex.com/images/*/banner_ (easylist.txt: 36373) -.sex.com/images/.*/banner_ -# ||sex-techniques-and-positions.com/banners (easylist.txt: 36372) -.sex-techniques-and-positions.com/banners -# ||sex-techniques-and-positions.com/123ima/ (easylist.txt: 36371) -.sex-techniques-and-positions.com/123ima/ -# ||serveporn.com/images/plug-in.jpg (easylist.txt: 36370) -.serveporn.com/images/plug-in\.jpg -# ||serveporn.com/images/a-en.jpg (easylist.txt: 36369) -.serveporn.com/images/a-en\.jpg -# ||sensualgirls.org/media/banners/ (easylist.txt: 36368) -.sensualgirls.org/media/banners/ -# ||sensualgirls.org/banner/ (easylist.txt: 36367) -.sensualgirls.org/banner/ -# ||seemygf.com/webmasters/ (easylist.txt: 36366) -.seemygf.com/webmasters/ -# ||seaporn.org/scripts/life.js (easylist.txt: 36365) -.seaporn.org/scripts/life\.js -# ||scorevideos.com/banner/ (easylist.txt: 36364) -.scorevideos.com/banner/ -# ||scorehd.com/banner/ (easylist.txt: 36363) -.scorehd.com/banner/ -# ||s.xvideos.com^$subdocument (easylist.txt: 36362) -.s.xvideos.com -# ||rusdosug.com/Fotos/Banners/ (easylist.txt: 36361) -.rusdosug.com/Fotos/Banners/ -# ||rude.com/js/PopupWindow.js (easylist.txt: 36360) -.rude.com/js/PopupWindow\.js -# ||rikotachibana.org/wp-content/banner/ (easylist.txt: 36359) -.rikotachibana.org/wp-content/banner/ -# ||rextube.com/plug/iframe.asp? (easylist.txt: 36358) -.rextube.com/plug/iframe\.asp\? -# ||rev.fapdu.com^ (easylist.txt: 36357) -.rev.fapdu.com -# ||redtubefiles.com^*/skins/ (easylist.txt: 36356) -.redtubefiles.com/.*/skins/ -# ||redtubefiles.com^*/banner/ (easylist.txt: 36355) -.redtubefiles.com/.*/banner/ -# ||redtube.com^*/banner/ (easylist.txt: 36354) -.redtube.com/.*/banner/ -# ||redtube.com^$subdocument,~third-party (easylist.txt: 36353) -.redtube.com -# ||redtube.com/wierd/ (easylist.txt: 36352) -.redtube.com/wierd/ -# ||redtube.com/sexychicks/ (easylist.txt: 36351) -.redtube.com/sexychicks/ -# ||redtube.com/nymphos/ (easylist.txt: 36350) -.redtube.com/nymphos/ -# ||redtube.com/bestporn/ (easylist.txt: 36349) -.redtube.com/bestporn/ -# ||redtube.com/barelylegal/ (easylist.txt: 36348) -.redtube.com/barelylegal/ -# ||redtube.cc/images/bongacams.png (easylist.txt: 36347) -.redtube.cc/images/bongacams\.png -# ||realhomesex.net/pop/ (easylist.txt: 36346) -.realhomesex.net/pop/ -# ||realhomesex.net/floater.js (easylist.txt: 36345) -.realhomesex.net/floater\.js -# ||realhomesex.net/ae/$subdocument (easylist.txt: 36344) -.realhomesex.net/ae/ -# ||realhomesex.net/*.html$subdocument (easylist.txt: 36343) -.realhomesex.net/.*\.html -# ||realgfporn.com/js/realgfporn.js (easylist.txt: 36342) -.realgfporn.com/js/realgfporn\.js -# ||realgfporn.com/js/popall.js (easylist.txt: 36341) -.realgfporn.com/js/popall\.js -# ||rampant.tv/images/sexypics/ (easylist.txt: 36340) -.rampant.tv/images/sexypics/ -# ||raincoatreviews.com/images/banners/ (easylist.txt: 36339) -.raincoatreviews.com/images/banners/ -# ||r.radikal.ru^ (easylist.txt: 36337) -.r.radikal.ru -# ||pwpwpoker.com/images/banners/ (easylist.txt: 36336) -.pwpwpoker.com/images/banners/ -# ||pwpwpoker.com/images/*/strip_poker_ (easylist.txt: 36335) -.pwpwpoker.com/images/.*/strip_poker_ -# ||puteros.com/publisecciones/ (easylist.txt: 36334) -.puteros.com/publisecciones/ -# ||putascaseiras.com/botao/ (easylist.txt: 36333) -.putascaseiras.com/botao/ -# ||purpleporno.com/pop*.js (easylist.txt: 36332) -.purpleporno.com/pop.*\.js -# ||purepornvids.com/randomadseb. (easylist.txt: 36331) -.purepornvids.com/randomadseb\. -# ||purelynsfw.com^*/banners/ (easylist.txt: 36330) -.purelynsfw.com/.*/banners/ -# ||pureandsexy.org/banner/ (easylist.txt: 36329) -.pureandsexy.org/banner/ -# ||pr-static.tnaflix.com^ (easylist.txt: 36328) -.pr-static.tnaflix.com -# ||pr-static.empflix.com^ (easylist.txt: 36327) -.pr-static.empflix.com -# ||pornxs.com/js/files/jasminNew (easylist.txt: 36326) -.pornxs.com/js/files/jasminNew -# ||pornwikileaks.com/adultdvd.com.jpg (easylist.txt: 36325) -.pornwikileaks.com/adultdvd\.com\.jpg -# ||pornvideoxo.com^$subdocument,~third-party (easylist.txt: 36324) -.pornvideoxo.com -# ||pornup.me/js/pp.js (easylist.txt: 36323) -.pornup.me/js/pp\.js -# ||porntube.com/ads| (easylist.txt: 36322) -.porntube.com/ads$ -# ||porntalk.com/rec/ (easylist.txt: 36321) -.porntalk.com/rec/ -# ||porntalk.com/img/banners/ (easylist.txt: 36320) -.porntalk.com/img/banners/ -# ||pornstreet.com/siteunder.js (easylist.txt: 36319) -.pornstreet.com/siteunder\.js -# ||pornstarterritory.com^*/alsbanner (easylist.txt: 36318) -.pornstarterritory.com/.*/alsbanner -# ||pornstarterritory.com//images/bannernew.jpg (easylist.txt: 36317) -# ||pornstarlabs.com/spons/ (easylist.txt: 36316) -.pornstarlabs.com/spons/ -# ||pornslash.com/images/pr.jpg (easylist.txt: 36315) -.pornslash.com/images/pr\.jpg -# ||pornslash.com/images/downicon.png (easylist.txt: 36314) -.pornslash.com/images/downicon\.png -# ||pornslash.com/images/cbt.gif (easylist.txt: 36313) -.pornslash.com/images/cbt\.gif -# ||pornslash.com/images/cbside.gif (easylist.txt: 36312) -.pornslash.com/images/cbside\.gif -# ||pornslash.com/images/a.gif (easylist.txt: 36311) -.pornslash.com/images/a\.gif -# ||pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia*.js (easylist.txt: 36310) -.pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharingnew/$subdocument,~third-party (easylist.txt: 36309) -.pornsharing.com/App_Themes/pornsharingnew/ -# ||pornsharing.com/App_Themes/pornsharianew/js/adppornsharia*.js (easylist.txt: 36308) -.pornsharing.com/App_Themes/pornsharianew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharianew/$subdocument,~third-party (easylist.txt: 36307) -.pornsharing.com/App_Themes/pornsharianew/ -# ||pornsharia.com^*/js/pcin.js (easylist.txt: 36306) -.pornsharia.com/.*/js/pcin\.js -# ||pornsharia.com^*/exo- (easylist.txt: 36305) -.pornsharia.com/.*/exo- -# ||pornsharia.com^*/adppornsharia.js (easylist.txt: 36304) -.pornsharia.com/.*/adppornsharia\.js -# ||pornsharia.com/Images/Sponsors/ (easylist.txt: 36303) -.pornsharia.com/Images/Sponsors/ -# ||pornshare.biz/2.js (easylist.txt: 36302) -.pornshare.biz/2\.js -# ||pornshare.biz/1.js (easylist.txt: 36301) -.pornshare.biz/1\.js -# ||pornreleasez.com/prpop.js (easylist.txt: 36300) -.pornreleasez.com/prpop\.js -# ||pornper.com^*/pp.js (easylist.txt: 36299) -.pornper.com/.*/pp\.js -# ||pornper.com/mlr/ (easylist.txt: 36298) -.pornper.com/mlr/ -# ||pornoxo.com/tradethumbs/ (easylist.txt: 36297) -.pornoxo.com/tradethumbs/ -# ||pornoxo.com/pxo/$subdocument (easylist.txt: 36296) -.pornoxo.com/pxo/ -# ||pornosexxxtits.com/rec/ (easylist.txt: 36295) -.pornosexxxtits.com/rec/ -# ||pornorips.com^*/rotate*.php (easylist.txt: 36294) -.pornorips.com/.*/rotate.*\.php -# ||pornorips.com^*/rda.js (easylist.txt: 36293) -.pornorips.com/.*/rda\.js -# ||pornorips.com/hwpop.js (easylist.txt: 36292) -.pornorips.com/hwpop\.js -# ||pornomovies.com/pop/ (easylist.txt: 36291) -.pornomovies.com/pop/ -# ||pornomovies.com/js/1/login_bonus (easylist.txt: 36290) -.pornomovies.com/js/1/login_bonus -# ||pornoinside.com/efpop.js (easylist.txt: 36289) -.pornoinside.com/efpop\.js -# ||pornoid.com/pornoid_html/ (easylist.txt: 36288) -.pornoid.com/pornoid_html/ -# ||pornoid.com/js/adppornoid (easylist.txt: 36287) -.pornoid.com/js/adppornoid -# ||pornoid.com/iframes/bottom (easylist.txt: 36286) -.pornoid.com/iframes/bottom -# ||pornoid.com/contents/content_sources/ (easylist.txt: 36285) -.pornoid.com/contents/content_sources/ -# ||pornnavigate.com/feeds/delivery.php? (easylist.txt: 36284) -.pornnavigate.com/feeds/delivery\.php\? -# ||pornmade.com/images/cb (easylist.txt: 36283) -.pornmade.com/images/cb -# ||pornmade.com/images/az.gif (easylist.txt: 36282) -.pornmade.com/images/az\.gif -# ||pornmade.com/images/404vz.gif (easylist.txt: 36281) -.pornmade.com/images/404vz\.gif -# ||pornizer.com/_Themes/javascript/cts.js? (easylist.txt: 36280) -.pornizer.com/_Themes/javascript/cts\.js\? -# ||pornhub.phncdn.com/misc/xml/preroll.xml (easylist.txt: 36279) -.pornhub.phncdn.com/misc/xml/preroll\.xml -# ||pornhub.phncdn.com/images/campaign-backgrounds/ (easylist.txt: 36278) -.pornhub.phncdn.com/images/campaign-backgrounds/ -# ||pornhub.com/pics/latest/$xmlhttprequest (easylist.txt: 36277) -.pornhub.com/pics/latest/ -# ||pornhub.com/jpg/ (easylist.txt: 36276) -.pornhub.com/jpg/ -# ||pornhub.com/front/alternative/ (easylist.txt: 36275) -.pornhub.com/front/alternative/ -# ||pornhub.com/channels/pay/ (easylist.txt: 36274) -.pornhub.com/channels/pay/ -# ||pornhub.com/catagories/costume/ (easylist.txt: 36273) -.pornhub.com/catagories/costume/ -# ||pornfanplace.com/rec/ (easylist.txt: 36272) -.pornfanplace.com/rec/ -# ||pornfanplace.com/js/pops. (easylist.txt: 36271) -.pornfanplace.com/js/pops\. -# ||pornerbros.com/rec/$subdocument (easylist.txt: 36270) -.pornerbros.com/rec/ -# ||pornerbros.com/p_bnrs/ (easylist.txt: 36269) -.pornerbros.com/p_bnrs/ -# ||porncor.com/sitelist.php (easylist.txt: 36268) -.porncor.com/sitelist\.php -# ||pornbus.org/includes/js/layer.js (easylist.txt: 36267) -.pornbus.org/includes/js/layer\.js -# ||pornbus.org/includes/js/exa.js (easylist.txt: 36266) -.pornbus.org/includes/js/exa\.js -# ||pornbus.org/includes/js/ex.js (easylist.txt: 36265) -.pornbus.org/includes/js/ex\.js -# ||pornbus.org/includes/js/cat.js (easylist.txt: 36264) -.pornbus.org/includes/js/cat\.js -# ||pornbus.org/includes/js/bgcont.js (easylist.txt: 36263) -.pornbus.org/includes/js/bgcont\.js -# ||pornbb.org/images/rotation/$image (easylist.txt: 36262) -.pornbb.org/images/rotation/ -# ||pornbb.org/adsnov. (easylist.txt: 36261) -.pornbb.org/adsnov\. -# ||pornbay.org/popup.js (easylist.txt: 36260) -.pornbay.org/popup\.js -# ||pornbanana.com/pornbanana/deals/ (easylist.txt: 36259) -.pornbanana.com/pornbanana/deals/ -# ||pornarchive.net/images/cb (easylist.txt: 36258) -.pornarchive.net/images/cb -# ||pornalized.com/pornalized_html/closetoplay_ (easylist.txt: 36257) -.pornalized.com/pornalized_html/closetoplay_ -# ||pornalized.com/js/adppornalized5.js (easylist.txt: 36256) -.pornalized.com/js/adppornalized5\.js -# ||pornalized.com/contents/content_sources/ (easylist.txt: 36255) -.pornalized.com/contents/content_sources/ -# ||porn8x.net/js/popup.js (easylist.txt: 36254) -.porn8x.net/js/popup\.js -# ||porn8x.net/js/outtrade.js (easylist.txt: 36253) -.porn8x.net/js/outtrade\.js -# ||porn4down.com^*/ryuvuong.gif (easylist.txt: 36252) -.porn4down.com/.*/ryuvuong\.gif -# ||porn.com/js/pu.js (easylist.txt: 36251) -.porn.com/js/pu\.js -# ||porn.com/assets/partner_ (easylist.txt: 36250) -.porn.com/assets/partner_ -# ||porn-w.org/images/zevera.png (easylist.txt: 36249) -.porn-w.org/images/zevera\.png -# ||porn-w.org/images/cosy/ (easylist.txt: 36248) -.porn-w.org/images/cosy/ -# ||porn-w.org/images/chs.gif (easylist.txt: 36247) -.porn-w.org/images/chs\.gif -# ||pontoperdido.com/js/webmessenger.js (easylist.txt: 36246) -.pontoperdido.com/js/webmessenger\.js -# ||poguide.com/cdn/images/ad*.gif (easylist.txt: 36245) -.poguide.com/cdn/images/ad.*\.gif -# ||pnet.co.za/jobsearch_iframe_ (easylist.txt: 36244) -.pnet.co.za/jobsearch_iframe_ -# ||plumper6.com/images/ban_pp.jpg (easylist.txt: 36243) -.plumper6.com/images/ban_pp\.jpg -# ||playgirl.com/pg/media/prolong_ad.png (easylist.txt: 36242) -.playgirl.com/pg/media/prolong_ad\.png -# ||planetsuzy.org/kakiframe/ (easylist.txt: 36241) -.planetsuzy.org/kakiframe/ -# ||placepictures.com/Frame.aspx? (easylist.txt: 36240) -.placepictures.com/Frame\.aspx\? -# ||pixroute.com/spl.js (easylist.txt: 36239) -.pixroute.com/spl\.js -# ||pixhost.org/js/jquery_show2.js (easylist.txt: 36238) -.pixhost.org/js/jquery_show2\.js -# ||pixhost.org/image/rotate/ (easylist.txt: 36237) -.pixhost.org/image/rotate/ -# ||pixhost.org/image/cu/ (easylist.txt: 36236) -.pixhost.org/image/cu/ -# ||pinkrod.com/pinkrod_html/ (easylist.txt: 36235) -.pinkrod.com/pinkrod_html/ -# ||pinkrod.com/js/adppinkrod (easylist.txt: 36234) -.pinkrod.com/js/adppinkrod -# ||pinkrod.com/iframes/ (easylist.txt: 36233) -.pinkrod.com/iframes/ -# ||pinkems.com/images/buttons/ (easylist.txt: 36232) -.pinkems.com/images/buttons/ -# ||pink-o-rama.com/Teendreams (easylist.txt: 36231) -.pink-o-rama.com/Teendreams -# ||pink-o-rama.com/Royalcash/ (easylist.txt: 36230) -.pink-o-rama.com/Royalcash/ -# ||pink-o-rama.com/Privatecash (easylist.txt: 36229) -.pink-o-rama.com/Privatecash -# ||pink-o-rama.com/Pimproll/ (easylist.txt: 36228) -.pink-o-rama.com/Pimproll/ -# ||pink-o-rama.com/Nscash (easylist.txt: 36227) -.pink-o-rama.com/Nscash -# ||pink-o-rama.com/Longbucks/ (easylist.txt: 36226) -.pink-o-rama.com/Longbucks/ -# ||pink-o-rama.com/Karups (easylist.txt: 36225) -.pink-o-rama.com/Karups -# ||pink-o-rama.com/Gammae (easylist.txt: 36224) -.pink-o-rama.com/Gammae -# ||pink-o-rama.com/Fuckyou (easylist.txt: 36223) -.pink-o-rama.com/Fuckyou -# ||pink-o-rama.com/Fetishhits (easylist.txt: 36222) -.pink-o-rama.com/Fetishhits -# ||pink-o-rama.com/Brothersincash (easylist.txt: 36221) -.pink-o-rama.com/Brothersincash -# ||pink-o-rama.com/Blazingbucks (easylist.txt: 36220) -.pink-o-rama.com/Blazingbucks -# ||pimpandhost.com/static/i/*-pah.jpg (easylist.txt: 36219) -.pimpandhost.com/static/i/.*-pah\.jpg -# ||pimpandhost.com/static/html/iframe.html (easylist.txt: 36218) -.pimpandhost.com/static/html/iframe\.html -# ||pimpandhost.com/images/pah-download.gif (easylist.txt: 36217) -.pimpandhost.com/images/pah-download\.gif -# ||picxme.com/rec/ (easylist.txt: 36216) -.picxme.com/rec/ -# ||picxme.com/js/pops. (easylist.txt: 36215) -.picxme.com/js/pops\. -# ||picturevip.com/imagehost/top_banners.html (easylist.txt: 36214) -.picturevip.com/imagehost/top_banners\.html -# ||picturescream.com/top_banners.html (easylist.txt: 36213) -.picturescream.com/top_banners\.html -# ||picturescream.com/porn_movies.gif (easylist.txt: 36212) -.picturescream.com/porn_movies\.gif -# ||picturedip.com/windowfiles/dhtmlwindow.css (easylist.txt: 36211) -.picturedip.com/windowfiles/dhtmlwindow\.css -# ||picturedip.com/modalfiles/modal.js (easylist.txt: 36210) -.picturedip.com/modalfiles/modal\.js -# ||picsexhub.com/rec/ (easylist.txt: 36209) -.picsexhub.com/rec/ -# ||picsexhub.com/js/pops2. (easylist.txt: 36208) -.picsexhub.com/js/pops2\. -# ||picsexhub.com/js/pops. (easylist.txt: 36207) -.picsexhub.com/js/pops\. -# ||picp2.com/img/putv (easylist.txt: 36206) -.picp2.com/img/putv -# ||picleet.com/inter_picleet.js (easylist.txt: 36205) -.picleet.com/inter_picleet\.js -# ||pichunter.com/deals/ (easylist.txt: 36204) -.pichunter.com/deals/ -# ||pichunter.com/creatives/ (easylist.txt: 36203) -.pichunter.com/creatives/ -# ||phun.org/phun/gfx/banner/ (easylist.txt: 36202) -.phun.org/phun/gfx/banner/ -# ||phncdn.com/mobile/js/interstitial-min.js? (easylist.txt: 36201) -.phncdn.com/mobile/js/interstitial-min\.js\? -# ||phncdn.com/images/skin/ (easylist.txt: 36200) -.phncdn.com/images/skin/ -# ||phncdn.com/images/premium_ (easylist.txt: 36199) -.phncdn.com/images/premium_ -# ||phncdn.com/images/premium/ (easylist.txt: 36198) -.phncdn.com/images/premium/ -# ||phncdn.com/images/banners/ (easylist.txt: 36197) -.phncdn.com/images/banners/ -# ||phncdn.com/images/*_skin_ (easylist.txt: 36196) -.phncdn.com/images/.*_skin_ -# ||phncdn.com/images/*_skin. (easylist.txt: 36195) -.phncdn.com/images/.*_skin\. -# ||phncdn.com/iframe (easylist.txt: 36194) -.phncdn.com/iframe -# ||perfectgirls.net/b/ (easylist.txt: 36190) -.perfectgirls.net/b/ -# ||pastime.biz^*/personalad*.jpg (easylist.txt: 36189) -.pastime.biz/.*/personalad.*\.jpg -# ||pastime.biz/images/interracial-porn.gif (easylist.txt: 36188) -.pastime.biz/images/interracial-porn\.gif -# ||pastime.biz/images/iloveint.gif (easylist.txt: 36187) -.pastime.biz/images/iloveint\.gif -# ||partners.xhamster.com^ (easylist.txt: 36186) -.partners.xhamster.com -# ||oporn.com/js/wspop.js (easylist.txt: 36185) -.oporn.com/js/wspop\.js -# ||openjavascript.com/jtools/jads. (easylist.txt: 36184) -.openjavascript.com/jtools/jads\. -# ||onlinestars.net/br/ (easylist.txt: 36183) -.onlinestars.net/br/ -# ||onlinestars.net/ban/ (easylist.txt: 36182) -.onlinestars.net/ban/ -# ||onhercam.tv^*/banners/ (easylist.txt: 36181) -.onhercam.tv/.*/banners/ -# ||olderhill.com^*.html| (easylist.txt: 36180) -.olderhill.com/.*\.html$ -# ||olderhill.com/ubr.js (easylist.txt: 36179) -.olderhill.com/ubr\.js -# ||oasisactive.com^*/oasis-widget.html (easylist.txt: 36178) -.oasisactive.com/.*/oasis-widget\.html -# ||nuvid.com/videos_banner.html (easylist.txt: 36177) -.nuvid.com/videos_banner\.html -# ||nudography.com/photos/banners/ (easylist.txt: 36176) -.nudography.com/photos/banners/ -# ||nudevista.com^*/nv-com.min.js (easylist.txt: 36175) -.nudevista.com/.*/nv-com\.min\.js -# ||nudevista.com/_/teasernet (easylist.txt: 36174) -.nudevista.com/_/teasernet -# ||nudevista.com/_/pp. (easylist.txt: 36173) -.nudevista.com/_/pp\. -# ||nudevista.com/_/exo_ (easylist.txt: 36172) -.nudevista.com/_/exo_ -# ||nudebabes.ws/galleries/banners/ (easylist.txt: 36171) -.nudebabes.ws/galleries/banners/ -# ||nude.hu/banners/ (easylist.txt: 36170) -.nude.hu/banners/ -# ||ns4w.org/images/vod_ (easylist.txt: 36169) -.ns4w.org/images/vod_ -# ||ns4w.org/images/promo/ (easylist.txt: 36168) -.ns4w.org/images/promo/ -# ||ns4w.org/gsm.js (easylist.txt: 36167) -.ns4w.org/gsm\.js -# ||novoporn.com/imagelinks/ (easylist.txt: 36166) -.novoporn.com/imagelinks/ -# ||nonktube.com/popembed.js (easylist.txt: 36165) -.nonktube.com/popembed\.js -# ||nonktube.com/nuevox/midroll.php? (easylist.txt: 36164) -.nonktube.com/nuevox/midroll\.php\? -# ||nonktube.com/brazzers/ (easylist.txt: 36163) -.nonktube.com/brazzers/ -# ||niceyoungteens.com/mct.js (easylist.txt: 36162) -.niceyoungteens.com/mct\.js -# ||niceyoungteens.com/ero-advertising (easylist.txt: 36161) -.niceyoungteens.com/ero-advertising -# ||newcelebnipslips.com/nipslipop.js (easylist.txt: 36160) -.newcelebnipslips.com/nipslipop\.js -# ||netronline.com/Include/burst.js (easylist.txt: 36159) -.netronline.com/Include/burst\.js -# ||netasdesalim.com/js/netas (easylist.txt: 36158) -.netasdesalim.com/js/netas -# ||naughtyblog.org/pr1pop.js (easylist.txt: 36157) -.naughtyblog.org/pr1pop\.js -# ||naughty.com/js/popJava.js (easylist.txt: 36156) -.naughty.com/js/popJava\.js -# ||namethatpornstar.com/topphotos/ (easylist.txt: 36155) -.namethatpornstar.com/topphotos/ -# ||naked-sluts.us/prpop.js (easylist.txt: 36154) -.naked-sluts.us/prpop\.js -# ||myslavegirl.org/follow/go.js (easylist.txt: 36153) -.myslavegirl.org/follow/go\.js -# ||myhentai.tv/popsstuff. (easylist.txt: 36152) -.myhentai.tv/popsstuff\. -# ||mygirlfriendvids.net/js/popall1.js (easylist.txt: 36151) -.mygirlfriendvids.net/js/popall1\.js -# ||mydailytube.com/nothing/ (easylist.txt: 36150) -.mydailytube.com/nothing/ -# ||my-pornbase.com/banner/ (easylist.txt: 36149) -.my-pornbase.com/banner/ -# ||mrstiff.com/view/movie/finished/ (easylist.txt: 36148) -.mrstiff.com/view/movie/finished/ -# ||mrstiff.com/view/movie/bar/ (easylist.txt: 36147) -.mrstiff.com/view/movie/bar/ -# ||mrstiff.com/view/context/ (easylist.txt: 36146) -.mrstiff.com/view/context/ -# ||mrstiff.com/uploads/paysite/ (easylist.txt: 36145) -.mrstiff.com/uploads/paysite/ -# ||mrskin.com/data/mrskincash/$third-party (easylist.txt: 36144) -.mrskin.com/data/mrskincash/ -# ||mp3musicengine.com/images/freewatchtv1. (easylist.txt: 36143) -.mp3musicengine.com/images/freewatchtv1\. -# ||mp3musicengine.com/bearshare_logo. (easylist.txt: 36142) -.mp3musicengine.com/bearshare_logo\. -# ||motherman.com/*.html (easylist.txt: 36141) -.motherman.com/.*\.html -# ||motherless.com/images/banners/ (easylist.txt: 36140) -.motherless.com/images/banners/ -# ||morebabes.to/morebabes.js (easylist.txt: 36139) -.morebabes.to/morebabes\.js -# ||morazzia.com^*/banners/ (easylist.txt: 36138) -.morazzia.com/.*/banners/ -# ||monstertube.com/images/vjoin_ (easylist.txt: 36137) -.monstertube.com/images/vjoin_ -# ||monstertube.com/images/vjoin. (easylist.txt: 36136) -.monstertube.com/images/vjoin\. -# ||monstertube.com/images/bottom-features.jpg (easylist.txt: 36135) -.monstertube.com/images/bottom-features\.jpg -# ||monstertube.com/images/access_ (easylist.txt: 36134) -.monstertube.com/images/access_ -# ||monstercockz.com/eds/ (easylist.txt: 36133) -.monstercockz.com/eds/ -# ||monstercockz.com/cont/ (easylist.txt: 36132) -.monstercockz.com/cont/ -# ||mobilepornmovies.com/images/banners/ (easylist.txt: 36131) -.mobilepornmovies.com/images/banners/ -# ||miragepics.com/images/11361497289209202613.jpg (easylist.txt: 36130) -.miragepics.com/images/11361497289209202613\.jpg -# ||milkmanbook.com/dat/promo/ (easylist.txt: 36129) -.milkmanbook.com/dat/promo/ -# ||merb.ca/banner/ (easylist.txt: 36128) -.merb.ca/banner/ -# ||meendo.com/promos/ (easylist.txt: 36127) -.meendo.com/promos/ -# ||media1.realgfporn.com^$subdocument (easylist.txt: 36126) -.media1.realgfporn.com -# ||meatspin.com/images/fl.gif (easylist.txt: 36125) -.meatspin.com/images/fl\.gif -# ||meatspin.com/facebookchatlist.php (easylist.txt: 36124) -.meatspin.com/facebookchatlist\.php -# ||maxjizztube.com/downloadfreemovies.php (easylist.txt: 36123) -.maxjizztube.com/downloadfreemovies\.php -# ||matureworld.ws/images/banners/ (easylist.txt: 36122) -.matureworld.ws/images/banners/ -# ||mallandrinhas.net/flutuante (easylist.txt: 36121) -.mallandrinhas.net/flutuante -# ||madthumbs.com/madthumbs/sponsor/ (easylist.txt: 36120) -.madthumbs.com/madthumbs/sponsor/ -# ||madmovs.com/rec/ (easylist.txt: 36119) -.madmovs.com/rec/ -# ||m2.xhamster.com^ (easylist.txt: 36118) -.m2.xhamster.com -# ||lw1.cdmediaworld.com^ (easylist.txt: 36117) -.lw1.cdmediaworld.com -# ||lukeisback.com^*/250.gif (easylist.txt: 36116) -.lukeisback.com/.*/250\.gif -# ||lukeisback.com/images/boxes/ (easylist.txt: 36115) -.lukeisback.com/images/boxes/ -# ||lucidsponge.pl/pop_ (easylist.txt: 36114) -.lucidsponge.pl/pop_ -# ||lubetube.com/js/cspop.js (easylist.txt: 36113) -.lubetube.com/js/cspop\.js -# ||livedoor.jp^*/bnr/bnr- (easylist.txt: 36112) -.livedoor.jp/.*/bnr/bnr- -# ||liveandchat.tv/bana-/ (easylist.txt: 36111) -.liveandchat.tv/bana-/ -# ||live-porn.tv/adds/ (easylist.txt: 36110) -.live-porn.tv/adds/ -# ||literotica.com/images/lit_banners/ (easylist.txt: 36109) -.literotica.com/images/lit_banners/ -# ||literotica.com/images/banners/ (easylist.txt: 36108) -.literotica.com/images/banners/ -# ||linksave.in/fopen.html (easylist.txt: 36107) -.linksave.in/fopen\.html -# ||lesbian.hu/banners/ (easylist.txt: 36106) -.lesbian.hu/banners/ -# ||laxtime.com/rotation/ (easylist.txt: 36105) -.laxtime.com/rotation/ -# ||kyte.tv/flash/MarbachAdvertsDartInstream. (easylist.txt: 36104) -.kyte.tv/flash/MarbachAdvertsDartInstream\. -# ||kuntfutube.com/kellyban.gif (easylist.txt: 36103) -.kuntfutube.com/kellyban\.gif -# ||kuiken.co/inc/ex.js (easylist.txt: 36102) -.kuiken.co/inc/ex\.js -# ||krasview.ru/resource/a.php (easylist.txt: 36101) -.krasview.ru/resource/a\.php -# ||krasview.ru/content/$object (easylist.txt: 36100) -.krasview.ru/content/ -# ||konachan.com/images/bam/ (easylist.txt: 36099) -.konachan.com/images/bam/ -# ||kindgirls.com/banners2/ (easylist.txt: 36098) -.kindgirls.com/banners2/ -# ||keezmovies.com/iframe.html? (easylist.txt: 36097) -.keezmovies.com/iframe\.html\? -# ||kaotic.com^*/popnew.js (easylist.txt: 36096) -.kaotic.com/.*/popnew\.js -# ||justporno.tv/ad/ (easylist.txt: 36095) -.justporno.tv/ad/ -# ||julesjordanvideo.com/flash/$object (easylist.txt: 36094) -.julesjordanvideo.com/flash/ -# ||javsin.com/vip.html (easylist.txt: 36093) -.javsin.com/vip\.html -# ||javporn.in/clicunder.js (easylist.txt: 36092) -.javporn.in/clicunder\.js -# ||jav-porn.net/js/popup.js (easylist.txt: 36091) -.jav-porn.net/js/popup\.js -# ||jav-porn.net/js/popout.js (easylist.txt: 36090) -.jav-porn.net/js/popout\.js -# ||jailbaitgallery.com/banners300/ (easylist.txt: 36089) -.jailbaitgallery.com/banners300/ -# ||iseekgirls.com^*/banners/ (easylist.txt: 36088) -.iseekgirls.com/.*/banners/ -# ||iseekgirls.com/rotating_ (easylist.txt: 36087) -.iseekgirls.com/rotating_ -# ||iseekgirls.com/js/fabulous.js (easylist.txt: 36086) -.iseekgirls.com/js/fabulous\.js -# ||iseekgirls.com/g/pandoracash/ (easylist.txt: 36085) -.iseekgirls.com/g/pandoracash/ -# ||intporn.org/scripts/asma.js (easylist.txt: 36084) -.intporn.org/scripts/asma\.js -# ||intporn.com^*/asma.js (easylist.txt: 36083) -.intporn.com/.*/asma\.js -# ||intporn.com^*/21s.js (easylist.txt: 36082) -.intporn.com/.*/21s\.js -# ||indexxx.com^*/banners/ (easylist.txt: 36081) -.indexxx.com/.*/banners/ -# ||imperia-of-hentai.net/banner/ (easylist.txt: 36080) -.imperia-of-hentai.net/banner/ -# ||imgwet.com/aa/ (easylist.txt: 36079) -.imgwet.com/aa/ -# ||imghost.us.to/xxx/content/system/js/iframe.html (easylist.txt: 36078) -.imghost.us.to/xxx/content/system/js/iframe\.html -# ||imgflare.com^*/splash.php (easylist.txt: 36077) -.imgflare.com/.*/splash\.php -# ||imgflare.com/exo.html (easylist.txt: 36076) -.imgflare.com/exo\.html -# ||imgbabes.com^*/splash.php (easylist.txt: 36075) -.imgbabes.com/.*/splash\.php -# ||imgbabes.com/ja.html (easylist.txt: 36074) -.imgbabes.com/ja\.html -# ||imgbabes.com/ero-foo.html (easylist.txt: 36073) -.imgbabes.com/ero-foo\.html -# ||imgbabes.com/element.js (easylist.txt: 36072) -.imgbabes.com/element\.js -# ||imagetwist.com/lj.js (easylist.txt: 36071) -.imagetwist.com/lj\.js -# ||imagetwist.com/imagetwist*.js (easylist.txt: 36070) -.imagetwist.com/imagetwist.*\.js -# ||imagesnake.com/includes/js/pops.js (easylist.txt: 36069) -.imagesnake.com/includes/js/pops\.js -# ||imagesnake.com/includes/js/layer.js (easylist.txt: 36068) -.imagesnake.com/includes/js/layer\.js -# ||imagesnake.com/includes/js/cat.js (easylist.txt: 36067) -.imagesnake.com/includes/js/cat\.js -# ||imageshack.us^*/bannng.jpg (easylist.txt: 36066) -.imageshack.us/.*/bannng\.jpg -# ||imagepost.com/stuff/ (easylist.txt: 36065) -.imagepost.com/stuff/ -# ||imagepost.com/includes/dating/ (easylist.txt: 36064) -.imagepost.com/includes/dating/ -# ||imageporter.com/smate.html (easylist.txt: 36063) -.imageporter.com/smate\.html -# ||imageporter.com/ro-7bgsd.html (easylist.txt: 36062) -.imageporter.com/ro-7bgsd\.html -# ||imagehyper.com/prom/ (easylist.txt: 36061) -.imagehyper.com/prom/ -# ||imagefruit.com^*/pops.js (easylist.txt: 36060) -.imagefruit.com/.*/pops\.js -# ||imagedunk.com^*_imagedunk.js (easylist.txt: 36059) -.imagedunk.com/.*_imagedunk\.js -# ||imagecarry.com/top (easylist.txt: 36058) -.imagecarry.com/top -# ||imagecarry.com/down (easylist.txt: 36057) -.imagecarry.com/down -# ||imagearn.com/img/picBanner.swf (easylist.txt: 36056) -.imagearn.com/img/picBanner\.swf -# ||hustler.com/backout-script/ (easylist.txt: 36055) -.hustler.com/backout-script/ -# ||hungangels.com/vboard/friends/ (easylist.txt: 36054) -.hungangels.com/vboard/friends/ -# ||hottubeclips.com/stxt/banners/ (easylist.txt: 36053) -.hottubeclips.com/stxt/banners/ -# ||hottestgirlsofmyspace.net/smallpics/fb-150x150.gif (easylist.txt: 36052) -.hottestgirlsofmyspace.net/smallpics/fb-150x150\.gif -# ||hottestgirlsofmyspace.net/smallpics/300x200b.gif (easylist.txt: 36051) -.hottestgirlsofmyspace.net/smallpics/300x200b\.gif -# ||hotshame.com/js/adphotshame (easylist.txt: 36050) -.hotshame.com/js/adphotshame -# ||hotshame.com/iframes/ (easylist.txt: 36049) -.hotshame.com/iframes/ -# ||hotshame.com/hotshame_html/ (easylist.txt: 36048) -.hotshame.com/hotshame_html/ -# ||hotsashagrey.com^*/throated.jpg (easylist.txt: 36047) -.hotsashagrey.com/.*/throated\.jpg -# ||hotsashagrey.com^*/squ-fantasygirlsasha-001.gif (easylist.txt: 36046) -.hotsashagrey.com/.*/squ-fantasygirlsasha-001\.gif -# ||hotsashagrey.com^*/PeterNorth-800x350.jpg (easylist.txt: 36045) -.hotsashagrey.com/.*/PeterNorth-800x350\.jpg -# ||hotsashagrey.com^*/New_Sensations-1091.gif (easylist.txt: 36044) -.hotsashagrey.com/.*/New_Sensations-1091\.gif -# ||hotsashagrey.com^*/Anabolic.jpg (easylist.txt: 36043) -.hotsashagrey.com/.*/Anabolic\.jpg -# ||hotkellymadison.com^*/pf_640x100.jpg (easylist.txt: 36042) -.hotkellymadison.com/.*/pf_640x100\.jpg -# ||hotkellymadison.com^*/km_300x300.gif (easylist.txt: 36041) -.hotkellymadison.com/.*/km_300x300\.gif -# ||hotkellymadison.com^*/kelly4.jpg (easylist.txt: 36040) -.hotkellymadison.com/.*/kelly4\.jpg -# ||hotkellymadison.com^*/kelly1.jpg (easylist.txt: 36039) -.hotkellymadison.com/.*/kelly1\.jpg -# ||hotdylanryder.com^*/wicked.gif (easylist.txt: 36038) -.hotdylanryder.com/.*/wicked\.gif -# ||hotdylanryder.com^*/pf_640x100.jpg (easylist.txt: 36037) -.hotdylanryder.com/.*/pf_640x100\.jpg -# ||hotdylanryder.com^*/iframes_174.jpg (easylist.txt: 36036) -.hotdylanryder.com/.*/iframes_174\.jpg -# ||hotdylanryder.com^*/dylan_350x250_01.jpg (easylist.txt: 36035) -.hotdylanryder.com/.*/dylan_350x250_01\.jpg -# ||hotdylanryder.com^*/Big-Tits-Like-Big-Dicks.jpg (easylist.txt: 36034) -.hotdylanryder.com/.*/Big-Tits-Like-Big-Dicks\.jpg -# ||hotdevonmichaels.com^*/wicked.gif (easylist.txt: 36033) -.hotdevonmichaels.com/.*/wicked\.gif -# ||hotdevonmichaels.com^*/streamate2.jpg (easylist.txt: 36032) -.hotdevonmichaels.com/.*/streamate2\.jpg -# ||hotdevonmichaels.com^*/pf_640x1001.jpg (easylist.txt: 36031) -.hotdevonmichaels.com/.*/pf_640x1001\.jpg -# ||hornywhores.net/img/zevera_rec.jpg (easylist.txt: 36030) -.hornywhores.net/img/zevera_rec\.jpg -# ||hornywhores.net/img/double.jpg (easylist.txt: 36029) -.hornywhores.net/img/double\.jpg -# ||hornywhores.net/hw$script (easylist.txt: 36028) -.hornywhores.net/hw -# ||hornygamer.com/images/promo/ (easylist.txt: 36027) -.hornygamer.com/images/promo/ -# ||homeprivatevids.com/banners.shtml (easylist.txt: 36026) -.homeprivatevids.com/banners\.shtml -# ||homeprivatevids.com/banner2.shtml (easylist.txt: 36025) -.homeprivatevids.com/banner2\.shtml -# ||homemademoviez.com^$subdocument (easylist.txt: 36024) -.homemademoviez.com -# ||homegrownfreaks.net/homegfreaks.js (easylist.txt: 36023) -.homegrownfreaks.net/homegfreaks\.js -# ||hollywoodoops.com/img/*banner (easylist.txt: 36022) -.hollywoodoops.com/img/.*banner -# ||hollyscoop.com/sites/*/skins/ (easylist.txt: 36021) -.hollyscoop.com/sites/.*/skins/ -# ||hidefporn.ws/nitro.png (easylist.txt: 36020) -.hidefporn.ws/nitro\.png -# ||hidefporn.ws/img.png (easylist.txt: 36019) -.hidefporn.ws/img\.png -# ||hidefporn.ws/client (easylist.txt: 36018) -.hidefporn.ws/client -# ||hidefporn.ws/055.jpg (easylist.txt: 36017) -.hidefporn.ws/055\.jpg -# ||hidefporn.ws/05.jpg (easylist.txt: 36016) -.hidefporn.ws/05\.jpg -# ||hidefporn.ws/04.jpg (easylist.txt: 36015) -.hidefporn.ws/04\.jpg -# ||hgimg.com/js/beacon. (easylist.txt: 36014) -.hgimg.com/js/beacon\. -# ||heraldnetdailydeal.com/widgets/DailyDealWidget300x250 (easylist.txt: 36013) -.heraldnetdailydeal.com/widgets/DailyDealWidget300x250 -# ||heraldnet.com/section/iFrame_AutosInternetSpecials? (easylist.txt: 36012) -.heraldnet.com/section/iFrame_AutosInternetSpecials\? -# ||hentaistream.com/wp-includes/images/mofos/webcams_ (easylist.txt: 36011) -.hentaistream.com/wp-includes/images/mofos/webcams_ -# ||hentaistream.com/wp-includes/images/bg- (easylist.txt: 36010) -.hentaistream.com/wp-includes/images/bg- -# ||hentaistream.com/out/ (easylist.txt: 36009) -.hentaistream.com/out/ -# ||hentairules.net/pop_$script (easylist.txt: 36008) -.hentairules.net/pop_ -# ||hentai-foundry.com/themes/Hentai/images/hu/hu.jpg (easylist.txt: 36007) -.hentai-foundry.com/themes/Hentai/images/hu/hu\.jpg -# ||hentai-foundry.com/themes/*Banner (easylist.txt: 36006) -.hentai-foundry.com/themes/.*Banner -# ||hentai-foundry.com/themes/*/add$image (easylist.txt: 36005) -.hentai-foundry.com/themes/.*/add -# ||hellporno.com/iframes/ (easylist.txt: 36004) -.hellporno.com/iframes/ -# ||hebus.com/p/hebusx/ (easylist.txt: 36003) -.hebus.com/p/hebusx/ -# ||heavy-r.com/js/imbox.js (easylist.txt: 36002) -.heavy-r.com/js/imbox\.js -# ||heavy-r.com/a/ (easylist.txt: 36001) -.heavy-r.com/a/ -# ||hdzog.com/hdzog.php?t_sid= (easylist.txt: 36000) -.hdzog.com/hdzog\.php\?t_sid= -# ||hdzog.com/contents/cst/ (easylist.txt: 35999) -.hdzog.com/contents/cst/ -# ||hdzog.com/contents/content_sources/ (easylist.txt: 35998) -.hdzog.com/contents/content_sources/ -# ||hdporn.net/images/hd-porn-banner.gif (easylist.txt: 35997) -.hdporn.net/images/hd-porn-banner\.gif -# ||hdporn.in/rec/$subdocument (easylist.txt: 35996) -.hdporn.in/rec/ -# ||hdporn.in/js/pops2. (easylist.txt: 35995) -.hdporn.in/js/pops2\. -# ||hdporn.in/js/focus.*.js (easylist.txt: 35994) -.hdporn.in/js/focus\..*\.js -# ||hdporn.in/images/rec/ (easylist.txt: 35993) -.hdporn.in/images/rec/ -# ||hcomicbook.com^*_banner1.gif (easylist.txt: 35992) -.hcomicbook.com/.*_banner1\.gif -# ||hcomicbook.com/js/hcb-$script (easylist.txt: 35991) -.hcomicbook.com/js/hcb- -# ||hcomicbook.com/banner/ (easylist.txt: 35990) -.hcomicbook.com/banner/ -# ||hclips.com/js/m.js (easylist.txt: 35989) -.hclips.com/js/m\.js -# ||hawaiipornblog.com/post_images/ (easylist.txt: 35988) -.hawaiipornblog.com/post_images/ -# ||hardsextube.com/zone.php (easylist.txt: 35987) -.hardsextube.com/zone\.php -# ||hardsextube.com/testxml.php (easylist.txt: 35986) -.hardsextube.com/testxml\.php -# ||hardsextube.com/preroll/getiton/ (easylist.txt: 35985) -.hardsextube.com/preroll/getiton/ -# ||hardsextube.com/pornstars/$xmlhttprequest (easylist.txt: 35984) -.hardsextube.com/pornstars/ -# ||hardcoresexgif.com/wp-content/msn.js (easylist.txt: 35983) -.hardcoresexgif.com/wp-content/msn\.js -# ||hanksgalleries.com/vg_ad_ (easylist.txt: 35982) -.hanksgalleries.com/vg_ad_ -# ||hanksgalleries.com/stxt_ (easylist.txt: 35981) -.hanksgalleries.com/stxt_ -# ||hanksgalleries.com/galleryimgs/ (easylist.txt: 35980) -.hanksgalleries.com/galleryimgs/ -# ||hanksgalleries.com/gallery- (easylist.txt: 35979) -.hanksgalleries.com/gallery- -# ||hanksgalleries.com/aff- (easylist.txt: 35978) -.hanksgalleries.com/aff- -# ||h2porn.com/contents/content_sources/ (easylist.txt: 35977) -.h2porn.com/contents/content_sources/ -# ||gspcdn.com^*/banners/ (easylist.txt: 35976) -.gspcdn.com/.*/banners/ -# ||grannysexforum.com/filter.php (easylist.txt: 35975) -.grannysexforum.com/filter\.php -# ||gotgayporn.com/Watermarks/ (easylist.txt: 35974) -.gotgayporn.com/Watermarks/ -# ||goldporntube.com/iframes/ (easylist.txt: 35973) -.goldporntube.com/iframes/ -# ||gloryholegirlz.com/images/banners/ (easylist.txt: 35972) -.gloryholegirlz.com/images/banners/ -# ||glamour.cz/banners/ (easylist.txt: 35971) -.glamour.cz/banners/ -# ||girlsofdesire.org/media/banners/ (easylist.txt: 35970) -.girlsofdesire.org/media/banners/ -# ||girlsofdesire.org/banner/ (easylist.txt: 35969) -.girlsofdesire.org/banner/ -# ||girlsnaked.net/gallery/banners/ (easylist.txt: 35968) -.girlsnaked.net/gallery/banners/ -# ||girlsintube.com/images/get-free-server.jpg (easylist.txt: 35967) -.girlsintube.com/images/get-free-server\.jpg -# ||girlsfromprague.eu^*468x (easylist.txt: 35966) -.girlsfromprague.eu/.*468x -# ||girlsfromprague.eu/banners/ (easylist.txt: 35965) -.girlsfromprague.eu/banners/ -# ||girlsfrombudapest.eu/banners/ (easylist.txt: 35964) -.girlsfrombudapest.eu/banners/ -# ||girlfriendvideos.com/pcode.js (easylist.txt: 35963) -.girlfriendvideos.com/pcode\.js -# ||gina-lynn.net/pr4.html (easylist.txt: 35962) -.gina-lynn.net/pr4\.html -# ||ghettotube.com/images/banners/ (easylist.txt: 35961) -.ghettotube.com/images/banners/ -# ||gggtube.com/images/banners/ (easylist.txt: 35960) -.gggtube.com/images/banners/ -# ||gaytube.com/chacha/ (easylist.txt: 35959) -.gaytube.com/chacha/ -# ||gayporntimes.com^*/CockyBoys-July-2012.jpg (easylist.txt: 35958) -.gayporntimes.com/.*/CockyBoys-July-2012\.jpg -# ||gayporntimes.com^*/Bel-Ami-Mick-Lovell-July-2012.jpeg (easylist.txt: 35957) -.gayporntimes.com/.*/Bel-Ami-Mick-Lovell-July-2012\.jpeg -# ||gayporntimes.com/img/GP_Heroes.jpg (easylist.txt: 35956) -.gayporntimes.com/img/GP_Heroes\.jpg -# ||gapeandfist.com/uploads/thumbs/ (easylist.txt: 35955) -.gapeandfist.com/uploads/thumbs/ -# ||gamesofdesire.com/images/banners/ (easylist.txt: 35954) -.gamesofdesire.com/images/banners/ -# ||gals4free.net/images/banners/ (easylist.txt: 35953) -.gals4free.net/images/banners/ -# ||galleries-pornstar.com/thumb_top/ (easylist.txt: 35952) -.galleries-pornstar.com/thumb_top/ -# ||funny-games.biz/banners/ (easylist.txt: 35951) -.funny-games.biz/banners/ -# ||fuckuh.com/pr_ad.swf (easylist.txt: 35950) -.fuckuh.com/pr_ad\.swf -# ||freepornvs.com/im.js (easylist.txt: 35948) -.freepornvs.com/im\.js -# ||freeporninhd.com/images/cbzide. (easylist.txt: 35947) -.freeporninhd.com/images/cbzide\. -# ||freeporninhd.com/images/cbside. (easylist.txt: 35946) -.freeporninhd.com/images/cbside\. -# ||freeporn.to/wpbanner/ (easylist.txt: 35945) -.freeporn.to/wpbanner/ -# ||freeones.com/images/freeones/sidewidget/$image (easylist.txt: 35944) -.freeones.com/images/freeones/sidewidget/ -# ||freeimgup.com/xxx/content/system/js/iframe.html (easylist.txt: 35943) -.freeimgup.com/xxx/content/system/js/iframe\.html -# ||freebunker.com^*/raw.js (easylist.txt: 35942) -.freebunker.com/.*/raw\.js -# ||freebunker.com^*/pops.js (easylist.txt: 35941) -.freebunker.com/.*/pops\.js -# ||freebunker.com^*/oc.js (easylist.txt: 35940) -.freebunker.com/.*/oc\.js -# ||freebunker.com^*/layer.js (easylist.txt: 35939) -.freebunker.com/.*/layer\.js -# ||freebunker.com^*/exa.js (easylist.txt: 35938) -.freebunker.com/.*/exa\.js -# ||freebunker.com^*/ex.js (easylist.txt: 35937) -.freebunker.com/.*/ex\.js -# ||freebunker.com/includes/js/cat.js (easylist.txt: 35936) -.freebunker.com/includes/js/cat\.js -# ||free-celebrity-tube.com/js/freeceleb.js (easylist.txt: 35935) -.free-celebrity-tube.com/js/freeceleb\.js -# ||floppy-tits.com/iframes/ (easylist.txt: 35934) -.floppy-tits.com/iframes/ -# ||fleshbot.com/wp-content/themes/fbdesktop_aff/images/af (easylist.txt: 35933) -.fleshbot.com/wp-content/themes/fbdesktop_aff/images/af -# ||fingerslam.com/*.html (easylist.txt: 35932) -.fingerslam.com/.*\.html -# ||finehub.com/p3.js (easylist.txt: 35931) -.finehub.com/p3\.js -# ||filthyrx.com/rx.js (easylist.txt: 35930) -.filthyrx.com/rx\.js -# ||filthyrx.com/inline.php? (easylist.txt: 35929) -.filthyrx.com/inline\.php\? -# ||filthyrx.com/images/porno/ (easylist.txt: 35928) -.filthyrx.com/images/porno/ -# ||fileshare.ro^*/dhtmlwindow.js (easylist.txt: 35927) -.fileshare.ro/.*/dhtmlwindow\.js -# ||fetishok.com/rec/$subdocument (easylist.txt: 35926) -.fetishok.com/rec/ -# ||fetishok.com/js/focus.$script (easylist.txt: 35925) -.fetishok.com/js/focus\. -# ||femdom-fetish-tube.com/popfemdom.js (easylist.txt: 35924) -.femdom-fetish-tube.com/popfemdom\.js -# ||fastpic.ru/js_h2.jpg (easylist.txt: 35923) -.fastpic.ru/js_h2\.jpg -# ||fastpic.ru/js_f2.jpg (easylist.txt: 35922) -.fastpic.ru/js_f2\.jpg -# ||fapdick.com/uploads/fap_ (easylist.txt: 35921) -.fapdick.com/uploads/fap_ -# ||fapdick.com/uploads/1fap_ (easylist.txt: 35920) -.fapdick.com/uploads/1fap_ -# ||fantasti.cc/_special/ (easylist.txt: 35919) -.fantasti.cc/_special/ -# ||extremetube.com/player_related? (easylist.txt: 35918) -.extremetube.com/player_related\? -# ||extreme-board.com/bannrs/ (easylist.txt: 35917) -.extreme-board.com/bannrs/ -# ||exit.macandbumble.com^ (easylist.txt: 35916) -.exit.macandbumble.com -# ||exhentai.net/img/aaf1.gif (easylist.txt: 35915) -.exhentai.net/img/aaf1\.gif -# ||eskimotube.com/kellyban.gif (easylist.txt: 35914) -.eskimotube.com/kellyban\.gif -# ||eroprofile.com/js/pu*.js (easylist.txt: 35913) -.eroprofile.com/js/pu.*\.js -# ||eporner.com^$subdocument,~third-party (easylist.txt: 35912) -.eporner.com -# ||eporner.com/pjsall-*.js (easylist.txt: 35911) -.eporner.com/pjsall-.*\.js -# ||eporner.com/dot/$script (easylist.txt: 35910) -.eporner.com/dot/ -# ||eporner.com/cppb/ (easylist.txt: 35909) -.eporner.com/cppb/ -# ||epicwank.com/social/jquery.stp.min.js (easylist.txt: 35908) -.epicwank.com/social/jquery\.stp\.min\.js -# ||entensity.net/crap/ (easylist.txt: 35907) -.entensity.net/crap/ -# ||empireamateurs.com/images/*banner (easylist.txt: 35906) -.empireamateurs.com/images/.*banner -# ||empflix.com/embedding_player/600x474_ (easylist.txt: 35905) -.empflix.com/embedding_player/600x474_ -# ||egoporn.com/videotop.gif (easylist.txt: 35904) -.egoporn.com/videotop\.gif -# ||egoporn.com/themagic.js (easylist.txt: 35903) -.egoporn.com/themagic\.js -# ||efukt.com^*.php$subdocument (easylist.txt: 35902) -.efukt.com/.*\.php -# ||eccie.net/eros/ (easylist.txt: 35901) -.eccie.net/eros/ -# ||eccie.net/buploads/ (easylist.txt: 35900) -.eccie.net/buploads/ -# ||easypic.com/js/easypicads.js (easylist.txt: 35899) -.easypic.com/js/easypicads\.js -# ||dusttube.com/pop*.js (easylist.txt: 35898) -.dusttube.com/pop.*\.js -# ||drtuber.com^*/aff_banner.swf (easylist.txt: 35897) -.drtuber.com/.*/aff_banner\.swf -# ||drtuber.com/templates/frontend/white/js/embed.js? (easylist.txt: 35896) -.drtuber.com/templates/frontend/white/js/embed\.js\? -# ||drtuber.com/promo/banners/ (easylist.txt: 35895) -.drtuber.com/promo/banners/ -# ||dronporn.com/tizer.html (easylist.txt: 35894) -.dronporn.com/tizer\.html -# ||dronporn.com/main-video-place.html (easylist.txt: 35893) -.dronporn.com/main-video-place\.html -# ||dot2.eporner.com^ (easylist.txt: 35892) -.dot2.eporner.com -# ||dot.eporner.com^ (easylist.txt: 35891) -.dot.eporner.com -# ||dominationtube.com/exit.js (easylist.txt: 35890) -.dominationtube.com/exit\.js -# ||dixyporn.com/include/ (easylist.txt: 35889) -.dixyporn.com/include/ -# ||dirtypriest.com/sexpics/ (easylist.txt: 35888) -.dirtypriest.com/sexpics/ -# ||dickbig.net/scr/ (easylist.txt: 35887) -.dickbig.net/scr/ -# ||diamond-tgp.com/fp.js (easylist.txt: 35886) -.diamond-tgp.com/fp\.js -# ||devatube.com/img/partners/ (easylist.txt: 35885) -.devatube.com/img/partners/ -# ||destroymilf.com/popup%20floater.js (easylist.txt: 35884) -.destroymilf.com/popup%20floater\.js -# ||depic.me/banners/ (easylist.txt: 35883) -.depic.me/banners/ -# ||deliciousbabes.org/media/banners/ (easylist.txt: 35882) -.deliciousbabes.org/media/banners/ -# ||deliciousbabes.org/banner/ (easylist.txt: 35881) -.deliciousbabes.org/banner/ -# ||definefetish.com/df/js/dpcm.js (easylist.txt: 35880) -.definefetish.com/df/js/dpcm\.js -# ||definebabe.com/sponsor/ (easylist.txt: 35879) -.definebabe.com/sponsor/ -# ||definebabe.com/db/js/pcme.js (easylist.txt: 35878) -.definebabe.com/db/js/pcme\.js -# ||definebabe.com/db/images/leftnav/webcams2.png (easylist.txt: 35877) -.definebabe.com/db/images/leftnav/webcams2\.png -# ||data18.com^*/banners/ (easylist.txt: 35876) -.data18.com/.*/banners/ -# ||damimage.com^*/DocaWedrOJPPx.png (easylist.txt: 35875) -.damimage.com/.*/DocaWedrOJPPx\.png -# ||creepshots.com^*/250x250_ (easylist.txt: 35874) -.creepshots.com/.*/250x250_ -# ||creatives.pichunter.com^ (easylist.txt: 35873) -.creatives.pichunter.com -# ||creatives.cliphunter.com^ (easylist.txt: 35872) -.creatives.cliphunter.com -# ||creampietubeporn.com/porn.html (easylist.txt: 35871) -.creampietubeporn.com/porn\.html -# ||creampietubeporn.com/ctp.html (easylist.txt: 35870) -.creampietubeporn.com/ctp\.html -# ||crazyshit.com/p0pzIn.js (easylist.txt: 35869) -.crazyshit.com/p0pzIn\.js -# ||crackwhoreconfessions.com/images/banners/ (easylist.txt: 35868) -.crackwhoreconfessions.com/images/banners/ -# ||coolmovs.com/rec/$subdocument (easylist.txt: 35867) -.coolmovs.com/rec/ -# ||coolmovs.com/js/focus.*.js (easylist.txt: 35866) -.coolmovs.com/js/focus\..*\.js -# ||comdotgame.com/vgirl/ (easylist.txt: 35865) -.comdotgame.com/vgirl/ -# ||clips-and-pics.org/clipsandpics.js (easylist.txt: 35864) -.clips-and-pics.org/clipsandpics\.js -# ||chubby-ocean.com/banner/ (easylist.txt: 35863) -.chubby-ocean.com/banner/ -# ||chanweb.info/en/adult/hc/local_include/ (easylist.txt: 35862) -.chanweb.info/en/adult/hc/local_include/ -# ||cfake.com/images/a/ (easylist.txt: 35861) -.cfake.com/images/a/ -# ||celebritypink.com/bannedcelebs- (easylist.txt: 35860) -.celebritypink.com/bannedcelebs- -# ||celeb.gate.cc/misc/event_*.js (easylist.txt: 35859) -.celeb.gate.cc/misc/event_.*\.js -# ||celeb.gate.cc/banner/ (easylist.txt: 35858) -.celeb.gate.cc/banner/ -# ||canadianhottie.ca/images/banners/ (easylist.txt: 35857) -.canadianhottie.ca/images/banners/ -# ||cameltoe.com^*/banners/ (easylist.txt: 35856) -.cameltoe.com/.*/banners/ -# ||bustnow.com^*/sponsors/ (easylist.txt: 35855) -.bustnow.com/.*/sponsors/ -# ||bustnow.com^*/999.js.php (easylist.txt: 35854) -.bustnow.com/.*/999\.js\.php -# ||bustnow.com/xv/x/002.php (easylist.txt: 35853) -.bustnow.com/xv/x/002\.php -# ||bustnow.com/xv/ad/ (easylist.txt: 35852) -.bustnow.com/xv/ad/ -# ||bunnylust.com/sponsors/ (easylist.txt: 35851) -.bunnylust.com/sponsors/ -# ||brcache.madthumbs.com^ (easylist.txt: 35850) -.brcache.madthumbs.com -# ||bravotube.net/if/$subdocument (easylist.txt: 35849) -.bravotube.net/if/ -# ||bravotube.net/dp.html (easylist.txt: 35848) -.bravotube.net/dp\.html -# ||bravotube.net/dd$subdocument (easylist.txt: 35847) -.bravotube.net/dd -# ||bralesscelebs.com/320x240ps.gif (easylist.txt: 35846) -.bralesscelebs.com/320x240ps\.gif -# ||bralesscelebs.com/160x600ps.gif (easylist.txt: 35845) -.bralesscelebs.com/160x600ps\.gif -# ||bralesscelebs.com/160x600hcp.gif (easylist.txt: 35844) -.bralesscelebs.com/160x600hcp\.gif -# ||bralesscelebs.com/*banner (easylist.txt: 35843) -.bralesscelebs.com/.*banner -# ||boobieblog.com/TilaTequilaBackdoorBanner2.jpg (easylist.txt: 35842) -.boobieblog.com/TilaTequilaBackdoorBanner2\.jpg -# ||boobieblog.com/submityourbitchbanner3.jpg (easylist.txt: 35841) -.boobieblog.com/submityourbitchbanner3\.jpg -# ||boneprone.com/premium.html (easylist.txt: 35840) -.boneprone.com/premium\.html -# ||bonbonsex.com/js/workhome.js (easylist.txt: 35839) -.bonbonsex.com/js/workhome\.js -# ||bonbonsex.com/js/dl/bottom.js (easylist.txt: 35838) -.bonbonsex.com/js/dl/bottom\.js -# ||bonbonme.com/js/rightbanner.js (easylist.txt: 35837) -.bonbonme.com/js/rightbanner\.js -# ||bonbonme.com/js/dticash/ (easylist.txt: 35836) -.bonbonme.com/js/dticash/ -# ||bonbonme.com/js/cams.js (easylist.txt: 35835) -.bonbonme.com/js/cams\.js -# ||bob.crazyshit.com^ (easylist.txt: 35834) -.bob.crazyshit.com -# ||blackredtube.com/fadebox2.js (easylist.txt: 35833) -.blackredtube.com/fadebox2\.js -# ||blackonasianblog.com/uploads/banners/ (easylist.txt: 35832) -.blackonasianblog.com/uploads/banners/ -# ||bigxvideos.com/rec/ (easylist.txt: 35831) -.bigxvideos.com/rec/ -# ||bigxvideos.com/js/popu. (easylist.txt: 35830) -.bigxvideos.com/js/popu\. -# ||bigxvideos.com/js/pops2. (easylist.txt: 35829) -.bigxvideos.com/js/pops2\. -# ||bigxvideos.com/js/focus.*.js (easylist.txt: 35828) -.bigxvideos.com/js/focus\..*\.js -# ||bigboobs.hu/banners/ (easylist.txt: 35827) -.bigboobs.hu/banners/ -# ||bellyboner.com/facebookchatlist.php (easylist.txt: 35826) -.bellyboner.com/facebookchatlist\.php -# ||befuck.com/js/adpbefuck (easylist.txt: 35825) -.befuck.com/js/adpbefuck -# ||befuck.com/befuck_html/ (easylist.txt: 35824) -.befuck.com/befuck_html/ -# ||banners.cams.com^ (easylist.txt: 35823) -.banners.cams.com -# ||banner1.pornhost.com^ (easylist.txt: 35822) -.banner1.pornhost.com -# ||bangyoulater.com/pages/aff.php (easylist.txt: 35821) -.bangyoulater.com/pages/aff\.php -# ||bangyoulater.com/images/banners_ (easylist.txt: 35820) -.bangyoulater.com/images/banners_ -# ||bagslap.com/*.html (easylist.txt: 35819) -.bagslap.com/.*\.html -# ||badjojo.com/js/scripts- (easylist.txt: 35818) -.badjojo.com/js/scripts- -# ||badjojo.com/b2s.php (easylist.txt: 35817) -.badjojo.com/b2s\.php -# ||babesmachine.com/html/ (easylist.txt: 35816) -.babesmachine.com/html/ -# ||babeshows.co.uk^*banner (easylist.txt: 35815) -.babeshows.co.uk/.*banner -# ||babeshows.co.uk/fvn53.jpg (easylist.txt: 35814) -.babeshows.co.uk/fvn53\.jpg -# ||babesandstars.com/thumbs/paysites/ (easylist.txt: 35813) -.babesandstars.com/thumbs/paysites/ -# ||babesandstars.com/images/a/ (easylist.txt: 35812) -.babesandstars.com/images/a/ -# ||babepicture.co.uk^*banner (easylist.txt: 35811) -.babepicture.co.uk/.*banner -# ||babedrop.com/babelogger_images/ (easylist.txt: 35810) -.babedrop.com/babelogger_images/ -# ||babblesex.com/js/misc.js (easylist.txt: 35809) -.babblesex.com/js/misc\.js -# ||axatube.com/dos.html (easylist.txt: 35808) -.axatube.com/dos\.html -# ||avn.com/templates/avnav/skins/ (easylist.txt: 35807) -.avn.com/templates/avnav/skins/ -# ||asspoint.com/images/banners/ (easylist.txt: 35806) -.asspoint.com/images/banners/ -# ||asianpornmovies.com/images/banners/ (easylist.txt: 35805) -.asianpornmovies.com/images/banners/ -# ||asgayas.com/popin.js (easylist.txt: 35804) -.asgayas.com/popin\.js -# ||asgayas.com/floater/ (easylist.txt: 35803) -.asgayas.com/floater/ -# ||asexstories.com/010ads/ (easylist.txt: 35802) -.asexstories.com/010ads/ -# ||arionmovies.com/*/popup.php (easylist.txt: 35801) -.arionmovies.com/.*/popup\.php -# ||anysex.com/content_sources/ (easylist.txt: 35800) -.anysex.com/content_sources/ -# ||anysex.com/b/ (easylist.txt: 35799) -.anysex.com/b/ -# ||angelshack.com/images/under-video.png (easylist.txt: 35798) -.angelshack.com/images/under-video\.png -# ||andtube.com/ban_ (easylist.txt: 35797) -.andtube.com/ban_ -# ||analtubegirls.com/js/realamateurtube.js (easylist.txt: 35796) -.analtubegirls.com/js/realamateurtube\.js -# ||analpornpix.com/agent.php? (easylist.txt: 35795) -.analpornpix.com/agent\.php\? -# ||amateurfarm.net/layer.js (easylist.txt: 35794) -.amateurfarm.net/layer\.js -# ||amateuralbum.net/affb.html (easylist.txt: 35793) -.amateuralbum.net/affb\.html -# ||amateur-streams.com^*/popup.js (easylist.txt: 35792) -.amateur-streams.com/.*/popup\.js -# ||amateur-desire.com/pics/sm_ (easylist.txt: 35791) -.amateur-desire.com/pics/sm_ -# ||amateur-desire.com/pics/724x90d.jpg (easylist.txt: 35790) -.amateur-desire.com/pics/724x90d\.jpg -# ||amadorastube.com^*/banner_ (easylist.txt: 35789) -.amadorastube.com/.*/banner_ -# ||alotporn.com^*/js/oopopw.js (easylist.txt: 35788) -.alotporn.com/.*/js/oopopw\.js -# ||alotporn.com/media/banners/ (easylist.txt: 35787) -.alotporn.com/media/banners/ -# ||alladultnetwork.tv/main/videoadroll.xml (easylist.txt: 35786) -.alladultnetwork.tv/main/videoadroll\.xml -# ||affiliates.goodvibes.com^ (easylist.txt: 35785) -.affiliates.goodvibes.com -# ||adultwork.com/images/AWBanners/ (easylist.txt: 35784) -.adultwork.com/images/AWBanners/ -# ||adultfyi.com/images/banners/ (easylist.txt: 35783) -.adultfyi.com/images/banners/ -# ||adultfilmdatabase.com/graphics/banners/ (easylist.txt: 35782) -.adultfilmdatabase.com/graphics/banners/ -# ||adultdvdtalk.com/studios/ (easylist.txt: 35781) -.adultdvdtalk.com/studios/ -# ||adult-sex-games.com/images/promo/ (easylist.txt: 35780) -.adult-sex-games.com/images/promo/ -# ||adult-profit-files.com/banner (easylist.txt: 35779) -.adult-profit-files.com/banner -# ||ads.xxxbunker.com^ (easylist.txt: 35778) -.ads.xxxbunker.com -# ||adrive.com/images/fc_banner.jpg (easylist.txt: 35777) -.adrive.com/images/fc_banner\.jpg -# ||ad.userporn.com^ (easylist.txt: 35776) -.ad.userporn.com -# ||ad.thisav.com^ (easylist.txt: 35775) -.ad.thisav.com -# ||ad.slutload.com^ (easylist.txt: 35774) -.ad.slutload.com -# ||ad.eporner.com^ (easylist.txt: 35773) -.ad.eporner.com -# ||absoluporn.com/code/pub/ (easylist.txt: 35772) -.absoluporn.com/code/pub/ -# ||abc-celebs.com/spons/ (easylist.txt: 35771) -.abc-celebs.com/spons/ -# ||a.killergram-girls.com^ (easylist.txt: 35770) -.a.killergram-girls.com -# ||a.heavy-r.com^ (easylist.txt: 35769) -.a.heavy-r.com -# ||a.eporner.com^ (easylist.txt: 35768) -.a.eporner.com -# ||64.62.202.124^*/cumlouder.jpg (easylist.txt: 35767) -.64.62.202.124/.*/cumlouder\.jpg -# ||5ilthy.com/porn.php (easylist.txt: 35766) -.5ilthy.com/porn\.php -# ||4ufrom.me/xpw.gif (easylist.txt: 35765) -.4ufrom.me/xpw\.gif -# ||3yen.com/wfn_ (easylist.txt: 35764) -.3yen.com/wfn_ -# ||3xupdate.com^*/ryusharepremium.gif (easylist.txt: 35763) -.3xupdate.com/.*/ryusharepremium\.gif -# ||3xupdate.com^*/ryushare2.gif (easylist.txt: 35762) -.3xupdate.com/.*/ryushare2\.gif -# ||3xupdate.com^*/ryushare.gif (easylist.txt: 35761) -.3xupdate.com/.*/ryushare\.gif -# ||3movs.com/contents/content_sources/ (easylist.txt: 35760) -.3movs.com/contents/content_sources/ -# ||2adultflashgames.com/teaser/teaser.swf (easylist.txt: 35759) -.2adultflashgames.com/teaser/teaser\.swf -# ||2adultflashgames.com/img/ (easylist.txt: 35758) -.2adultflashgames.com/img/ -# ||2adultflashgames.com/images/v12.gif (easylist.txt: 35757) -.2adultflashgames.com/images/v12\.gif -# ||24porn7.com/toonad/ (easylist.txt: 35756) -.24porn7.com/toonad/ -# ||24porn7.com/right3.php (easylist.txt: 35755) -.24porn7.com/right3\.php -# ||24porn7.com/odd.php (easylist.txt: 35754) -.24porn7.com/odd\.php -# ||24porn7.com/imads/ (easylist.txt: 35753) -.24porn7.com/imads/ -# ||24porn7.com/float/float_adplib.js (easylist.txt: 35752) -.24porn7.com/float/float_adplib\.js -# ||24porn7.com/ebanners/ (easylist.txt: 35751) -.24porn7.com/ebanners/ -# ||24porn7.com/banned/ (easylist.txt: 35750) -.24porn7.com/banned/ -# ||24porn7.com/300.php (easylist.txt: 35749) -.24porn7.com/300\.php -# ||24porn7.com/24roll.html (easylist.txt: 35748) -.24porn7.com/24roll\.html -# ||244pix.com/webop.jpg (easylist.txt: 35747) -.244pix.com/webop\.jpg -# ||213.174.140.38/bftv/js/msn- (easylist.txt: 35745) -.213.174.140.38/bftv/js/msn- -# ||ziddu.com/onclickpop.php$popup (easylist.txt: 35733) -.ziddu.com/onclickpop\.php -# ||youwatch.org^*^crr^$popup (easylist.txt: 35731) -.youwatch.org/.*[^\w%.-]crr[^\w%.-] -# ||youwatch.org^*^ban^$popup (easylist.txt: 35730) -.youwatch.org/.*[^\w%.-]ban[^\w%.-] -# ||youwatch.org/vids*.html$popup (easylist.txt: 35729) -.youwatch.org/vids.*\.html -# ||yasni.ca/ad_pop.php$popup (easylist.txt: 35728) -.yasni.ca/ad_pop\.php -# ||whies.info^$popup (easylist.txt: 35727) -.whies.info -# ||watch-movies.net.in/popup.php$popup (easylist.txt: 35724) -.watch-movies.net.in/popup\.php -# ||vodu.ch/play_video.php$popup (easylist.txt: 35723) -.vodu.ch/play_video\.php -# ||virtualtourist.com/commerce/popunder/$popup (easylist.txt: 35722) -.virtualtourist.com/commerce/popunder/ -# ||vidspot.net^*http$popup (easylist.txt: 35721) -.vidspot.net/.*http -# ||vidhog.com/ilivid-redirect.php$popup (easylist.txt: 35720) -.vidhog.com/ilivid-redirect\.php -# ||tripadvisor.*/SimilarHotelsPopunder?$popup (easylist.txt: 35718) -.tripadvisor.*./(.*/)?SimilarHotelsPopunder\? -# ||tripadvisor.*/rulebasedpopunder?$popup (easylist.txt: 35717) -.tripadvisor.*./(.*/)?rulebasedpopunder\? -# ||trans.youwatch.org^$popup (easylist.txt: 35716) -.trans.youwatch.org -# ||tozer.youwatch.org^$popup (easylist.txt: 35715) -.tozer.youwatch.org -# ||torrentz.eu/p/$popup (easylist.txt: 35714) -.torrentz.eu/p/ -# ||torrentz.*/wgmpop/$popup (easylist.txt: 35713) -.torrentz.*./(.*/)?wgmpop/ -# ||torrentz.*/mgidpop/$popup (easylist.txt: 35712) -.torrentz.*./(.*/)?mgidpop/ -# ||tny.cz/red/first.php$popup (easylist.txt: 35710) -.tny.cz/red/first\.php -# ||titanshare.to/download-extern.php?type=*&n=$popup (easylist.txt: 35709) -.titanshare.to/download-extern\.php\?type=.*&n= -# ||thevideo.me/script/$popup (easylist.txt: 35707) -.thevideo.me/script/ -# ||thesource.com/magicshave/$popup (easylist.txt: 35706) -.thesource.com/magicshave/ -# ||subs4free.com/_pop_link.php$popup (easylist.txt: 35704) -.subs4free.com/_pop_link\.php -# ||streamtunerhd.com/signup?$popup,third-party (easylist.txt: 35703) -.streamtunerhd.com/signup\? -# ||streamcloud.eu/deliver.php$popup (easylist.txt: 35702) -.streamcloud.eu/deliver\.php -# ||sponsorselect.com/Common/LandingPage.aspx?eu=$popup (easylist.txt: 35701) -.sponsorselect.com/Common/LandingPage\.aspx\?eu= -# ||songspk.cc/pop*.html$popup (easylist.txt: 35699) -.songspk.cc/pop.*\.html -# ||rediff.com/uim/ads/$popup (easylist.txt: 35694) -.rediff.com/uim/ads/ -# ||pop.billionuploads.com^$popup (easylist.txt: 35692) -.pop.billionuploads.com -# ||playhd.eu/test$popup (easylist.txt: 35691) -.playhd.eu/test -# ||plarium.com/play/*adCampaign=$popup (easylist.txt: 35690) -.plarium.com/play/.*adCampaign= -# ||park.above.com^$popup (easylist.txt: 35688) -.park.above.com -# ||oddschecker.com/clickout.htm?type=takeover-$popup (easylist.txt: 35686) -.oddschecker.com/clickout\.htm\?type=takeover- -# ||nosteam.ro/pma/$popup (easylist.txt: 35685) -.nosteam.ro/pma/ -# ||multiupload.nl/popunder/$popup (easylist.txt: 35682) -.multiupload.nl/popunder/ -# ||miniurls.co^*?ref=$popup (easylist.txt: 35681) -.miniurls.co/.*\?ref= -# ||military.com/data/popup/new_education_popunder.htm$popup (easylist.txt: 35680) -.military.com/data/popup/new_education_popunder\.htm -# ||linkbucks.com^*/?*=$popup (easylist.txt: 35679) -.linkbucks.com/.*/\?.*= -# ||itv.com/itv/adclick/$popup (easylist.txt: 35673) -.itv.com/itv/adclick/ -# ||intradayfun.com/news_intradayfun.com.html$popup (easylist.txt: 35672) -.intradayfun.com/news_intradayfun\.com\.html -# ||imageshack.us/newuploader_ad.php$popup (easylist.txt: 35671) -.imageshack.us/newuploader_ad\.php -# ||imageshack.us/ads/$popup (easylist.txt: 35670) -.imageshack.us/ads/ -# ||ifly.com/trip-plan/ifly-trip?*&ad=$popup (easylist.txt: 35669) -.ifly.com/trip-plan/ifly-trip\?.*&ad= -# ||houndmirror.com/out.php$popup (easylist.txt: 35667) -.houndmirror.com/out\.php -# ||homets.info/queen_file?$popup (easylist.txt: 35666) -.homets.info/queen_file\? -# ||homerun.re/adServe/$popup (easylist.txt: 35665) -.homerun.re/adServe/ -# ||gamezadvisor.com/popup.php$popup (easylist.txt: 35660) -.gamezadvisor.com/popup\.php -# ||fullonsms.com/sid.html$popup (easylist.txt: 35659) -.fullonsms.com/sid\.html -# ||fullonsms.com/quikrad.html$popup (easylist.txt: 35658) -.fullonsms.com/quikrad\.html -# ||fullonsms.com/quikr.html$popup (easylist.txt: 35657) -.fullonsms.com/quikr\.html -# ||fullonsms.com/mixpop.html$popup (easylist.txt: 35656) -.fullonsms.com/mixpop\.html -# ||fullonsms.com/blank.php$popup (easylist.txt: 35655) -.fullonsms.com/blank\.php -# ||freean.us^*?ref=$popup (easylist.txt: 35654) -.freean.us/.*\?ref= -# ||free-filehost.net/pop/$popup (easylist.txt: 35652) -.free-filehost.net/pop/ -# ||flashx.tv/frame/$popup (easylist.txt: 35651) -.flashx.tv/frame/ -# ||flashx.tv/ads/$popup (easylist.txt: 35650) -.flashx.tv/ads/ -# ||firedrive.com/tools/$popup (easylist.txt: 35649) -.firedrive.com/tools/ -# ||firedrive.com/appresources/$popup (easylist.txt: 35648) -.firedrive.com/appresources/ -# ||filmon.com^*&adn=$popup (easylist.txt: 35645) -.filmon.com/.*&adn= -# ||filepost.com/default_popup.html$popup (easylist.txt: 35644) -.filepost.com/default_popup\.html -# ||f-picture.net/Misc/JumpClick?$popup (easylist.txt: 35642) -.f-picture.net/Misc/JumpClick\? -# ||exashare.com^*&h=$popup,~third-party (easylist.txt: 35641) -.exashare.com/.*&h= -# ||edomz.com/re.php?mid=$popup (easylist.txt: 35640) -.edomz.com/re\.php\?mid= -# ||eafyfsuh.net^*/?name=$popup (easylist.txt: 35639) -.eafyfsuh.net/.*/\?name= -# ||deb.gs^*?ref=$popup (easylist.txt: 35638) -.deb.gs/.*\?ref= -# ||damoh.muzu.tv^$popup (easylist.txt: 35637) -.damoh.muzu.tv -# ||conservativepost.com/pu/$popup (easylist.txt: 35636) -.conservativepost.com/pu/ -# ||comicbookmovie.com/plugins/ads/$popup (easylist.txt: 35635) -.comicbookmovie.com/plugins/ads/ -# ||cloudzilla.to/cam/wpop.php$popup (easylist.txt: 35634) -.cloudzilla.to/cam/wpop\.php -# ||channel4.com/ad/$popup (easylist.txt: 35632) -.channel4.com/ad/ -# ||casino-x.com^*&promo$popup (easylist.txt: 35631) -.casino-x.com/.*&promo -# ||avalanchers.com/out/$popup (easylist.txt: 35627) -.avalanchers.com/out/ -# ||allmyvideos.net^*?p=$popup (easylist.txt: 35626) -.allmyvideos.net/.*\?p= -# ||adyou.me/bug/adcash$popup (easylist.txt: 35624) -.adyou.me/bug/adcash -# ||adx.kat.ph^$popup (easylist.txt: 35623) -.adx.kat.ph -# ||4fuckr.com/api.php$popup (easylist.txt: 35621) -.4fuckr.com/api\.php -# ||104.239.139.5/display/$popup (easylist.txt: 35620) -.104.239.139.5/display/ -# ||ytconv.net/site/adblock_detect (easylist.txt: 35611) -.ytconv.net/site/adblock_detect -# ||watchfreeinhd.com/js/adblocker.js (easylist.txt: 35610) -.watchfreeinhd.com/js/adblocker\.js -# ||vapingunderground.com/js/vapingunderground/fucking_adblock.js (easylist.txt: 35609) -.vapingunderground.com/js/vapingunderground/fucking_adblock\.js -# ||sportspyder.com/assets/application-$script (easylist.txt: 35607) -.sportspyder.com/assets/application- -# ||nintendolife.com^*/adblock.jpg (easylist.txt: 35600) -.nintendolife.com/.*/adblock\.jpg -# ||joindota.com/img/*MR_$image (easylist.txt: 35599) -.joindota.com/img/.*MR_ -# ||joindota.com/img/*LB_$image (easylist.txt: 35598) -.joindota.com/img/.*LB_ -# ||http.anno.channel4.com*_*_*_ (easylist.txt: 35597) -.http.anno.channel4.com*./.*_.*_.*_ -# ||http.anno.channel4.com*- (easylist.txt: 35596) -.http.anno.channel4.com*./.*- -.http.anno.channel4.com*-*. -# ||getdebrid.com/blocker.js (easylist.txt: 35594) -.getdebrid.com/blocker\.js -# ||channel4.com^*.tidaltv.com$object-subrequest (easylist.txt: 35593) -.channel4.com/.*\.tidaltv\.com -# ||channel4.com^*.innovid.com$object-subrequest (easylist.txt: 35592) -.channel4.com/.*\.innovid\.com -# ||www.infowars.com/*.png$image (easylist.txt: 35582) -.www.infowars.com/.*\.png -# ||thegatewaypundit.com^*.png$image (easylist.txt: 35581) -.thegatewaypundit.com/.*\.png -# ||supercheats.com/js/yavli.js (easylist.txt: 35580) -.supercheats.com/js/yavli\.js -# ||cheatsheet.com^$image,~third-party (easylist.txt: 35579) -.cheatsheet.com -# /\.sharesix\.com/.*[a-zA-Z0-9]{4}/$script (easylist.txt: 35443) -/(.*/)?\\\.sharesix\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.sharesix\.com/.*[a-zA-Z0-9]{4} -# /\.filenuke\.com/.*[a-zA-Z0-9]{4}/$script (easylist.txt: 35442) -/(.*/)?\\\.filenuke\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.filenuke\.com/.*[a-zA-Z0-9]{4} -# ||zurrieqfc.com/images/banners/ (easylist.txt: 35348) -.zurrieqfc.com/images/banners/ -# ||zshares.net/fm.html (easylist.txt: 35347) -.zshares.net/fm\.html -# ||zpag.es/b/ (easylist.txt: 35346) -.zpag.es/b/ -# ||zorrovpn.com/static/img/promo/ (easylist.txt: 35345) -.zorrovpn.com/static/img/promo/ -# ||zophar.net/files/tf_ (easylist.txt: 35344) -.zophar.net/files/tf_ -# ||zoozle.org/if.php?q= (easylist.txt: 35343) -.zoozle.org/if\.php\?q= -# ||zoover.*/shared/bannerpages/darttagsbanner.aspx? (easylist.txt: 35342) -.zoover.*./(.*/)?shared/bannerpages/darttagsbanner\.aspx\? -# ||zootoday.com/pub/21publish/Zoo-navtop-poker.gif (easylist.txt: 35341) -.zootoday.com/pub/21publish/Zoo-navtop-poker\.gif -# ||zootoday.com/pub/21publish/Zoo-navtop-casino_ (easylist.txt: 35340) -.zootoday.com/pub/21publish/Zoo-navtop-casino_ -# ||zoomin.tv/decagonhandler/ (easylist.txt: 35339) -.zoomin.tv/decagonhandler/ -# ||zoneradio.co.za/img/banners/ (easylist.txt: 35338) -.zoneradio.co.za/img/banners/ -# ||zonein.tv/add$subdocument (easylist.txt: 35337) -.zonein.tv/add -# ||zomobo.net/images/removeads.png (easylist.txt: 35336) -.zomobo.net/images/removeads\.png -# ||zombiegamer.co.za/wp-content/uploads/*-skin- (easylist.txt: 35335) -.zombiegamer.co.za/wp-content/uploads/.*-skin- -# ||zipcode.org/site_images/flash/zip_v.swf (easylist.txt: 35334) -.zipcode.org/site_images/flash/zip_v\.swf -# ||zigzag.co.za/images/oww- (easylist.txt: 35333) -.zigzag.co.za/images/oww- -# ||ziddu.com/images/wxdfast/ (easylist.txt: 35332) -.ziddu.com/images/wxdfast/ -# ||ziddu.com/images/globe7.gif (easylist.txt: 35331) -.ziddu.com/images/globe7\.gif -# ||ziddu.com/images/140x150_egglad.gif (easylist.txt: 35330) -.ziddu.com/images/140x150_egglad\.gif -# ||zeropaid.com^*/94.jpg (easylist.txt: 35329) -.zeropaid.com/.*/94\.jpg -# ||zeropaid.com/images/ (easylist.txt: 35328) -.zeropaid.com/images/ -# ||zerochan.net/skyscraper.html (easylist.txt: 35327) -.zerochan.net/skyscraper\.html -# ||zeetvusa.com/images/SevaWeb.gif (easylist.txt: 35326) -.zeetvusa.com/images/SevaWeb\.gif -# ||zeetvusa.com/images/hightlow.jpg (easylist.txt: 35325) -.zeetvusa.com/images/hightlow\.jpg -# ||zeetvusa.com/images/CARIBBEN.jpg (easylist.txt: 35324) -.zeetvusa.com/images/CARIBBEN\.jpg -# ||zbc.co.zw^*/banners/ (easylist.txt: 35323) -.zbc.co.zw/.*/banners/ -# ||zawya.com/brands/ (easylist.txt: 35322) -.zawya.com/brands/ -# ||zawya.com/ads/ (easylist.txt: 35321) -.zawya.com/ads/ -# ||zattoo.com/ads/ (easylist.txt: 35320) -.zattoo.com/ads/ -# ||zap2it.com/wp-content/themes/overmind/js/zcode- (easylist.txt: 35319) -.zap2it.com/wp-content/themes/overmind/js/zcode- -# ||zanews.co.za^*/banners/ (easylist.txt: 35318) -.zanews.co.za/.*/banners/ -# ||zamimg.com/shared/minifeatures/ (easylist.txt: 35317) -.zamimg.com/shared/minifeatures/ -# ||zamimg.com/images/skins/ (easylist.txt: 35316) -.zamimg.com/images/skins/ -# ||zambiz.co.zm/banners/ (easylist.txt: 35315) -.zambiz.co.zm/banners/ -# ||zam.com/i/promos/*-skin. (easylist.txt: 35314) -.zam.com/i/promos/.*-skin\. -# ||zads.care2.com^ (easylist.txt: 35313) -.zads.care2.com -# ||zabasearch.com/search_box.php?*&adword= (easylist.txt: 35312) -.zabasearch.com/search_box\.php\?.*&adword= -# ||yudu.com^*_intro_ads (easylist.txt: 35311) -.yudu.com/.*_intro_ads -# ||ytmnd.com/ugh (easylist.txt: 35310) -.ytmnd.com/ugh -# ||ysm.yahoo.com^ (easylist.txt: 35306) -.ysm.yahoo.com -# ||yrt7dgkf.exashare.com^ (easylist.txt: 35305) -.yrt7dgkf.exashare.com -# ||yp.mo^*/ads/ (easylist.txt: 35304) -.yp.mo/.*/ads/ -# ||youwatch.org/vod-str.html (easylist.txt: 35303) -.youwatch.org/vod-str\.html -# ||youwatch.org/iframe1.html (easylist.txt: 35302) -.youwatch.org/iframe1\.html -# ||youwatch.org/driba.html (easylist.txt: 35301) -.youwatch.org/driba\.html -# ||youwatch.org/9elawi.html (easylist.txt: 35300) -.youwatch.org/9elawi\.html -# ||youtubeproxy.pk/images/lahore.jpg (easylist.txt: 35299) -.youtubeproxy.pk/images/lahore\.jpg -# ||youtubeproxy.pk/images/Lahore.fm.jpg (easylist.txt: 35298) -.youtubeproxy.pk/images/Lahore\.fm\.jpg -# ||youtubeproxy.pk/images/Indiansongs.pk.jpg (easylist.txt: 35297) -.youtubeproxy.pk/images/Indiansongs\.pk\.jpg -# ||youtube-mp3.org/acode/ (easylist.txt: 35295) -.youtube-mp3.org/acode/ -# ||youserials.com/i/banner_pos.jpg (easylist.txt: 35294) -.youserials.com/i/banner_pos\.jpg -# ||yourwire.net/images/refssder.gif (easylist.txt: 35293) -.yourwire.net/images/refssder\.gif -# ||yourradioplace.com/images/banners/ (easylist.txt: 35292) -.yourradioplace.com/images/banners/ -# ||yourradioplace.com//images/banners/ (easylist.txt: 35291) -# ||yourmuze.fm/images/banner_ym.png (easylist.txt: 35290) -.yourmuze.fm/images/banner_ym\.png -# ||yourmuze.fm/images/audionow.png (easylist.txt: 35289) -.yourmuze.fm/images/audionow\.png -# ||yourmovies.com.au^*/side_panels_ (easylist.txt: 35288) -.yourmovies.com.au/.*/side_panels_ -# ||yourindustrynews.com/ads/ (easylist.txt: 35287) -.yourindustrynews.com/ads/ -# ||yourfilehost.com/ads/ (easylist.txt: 35286) -.yourfilehost.com/ads/ -# ||yourepeat.com^*/skins/ (easylist.txt: 35285) -.yourepeat.com/.*/skins/ -# ||yourepeat.com/revive_wrapper? (easylist.txt: 35284) -.yourepeat.com/revive_wrapper\? -# ||yourbittorrent.com/images/lumovies.js (easylist.txt: 35283) -.yourbittorrent.com/images/lumovies\.js -# ||yourbittorrent.com/downloadnow.png (easylist.txt: 35282) -.yourbittorrent.com/downloadnow\.png -# ||youngrider.com/images/sponsorships/ (easylist.txt: 35281) -.youngrider.com/images/sponsorships/ -# ||youconvertit.com/_images/*ad.png (easylist.txt: 35280) -.youconvertit.com/_images/.*ad\.png -# ||yorkshirecoastradio.com/resources/creative/ (easylist.txt: 35279) -.yorkshirecoastradio.com/resources/creative/ -# ||yopmail.com/fbd.js (easylist.txt: 35278) -.yopmail.com/fbd\.js -# ||yomzansi.com^*-300x250. (easylist.txt: 35277) -.yomzansi.com/.*-300x250\. -# ||ynaija.com^*300X300 (easylist.txt: 35275) -.ynaija.com/.*300X300 -# ||ynaija.com^*300x250 (easylist.txt: 35274) -.ynaija.com/.*300x250 -# ||ynaija.com^*/ad. (easylist.txt: 35273) -.ynaija.com/.*/ad\. -# ||yimg.com^*/yad.html (easylist.txt: 35268) -.yimg.com/.*/yad\.html -# ||yimg.com^*/flash/promotions/ (easylist.txt: 35265) -.yimg.com/.*/flash/promotions/ -# ||yimg.com^*/fairfax/$image (easylist.txt: 35264) -.yimg.com/.*/fairfax/ -# ||yimg.com/a/1-$~stylesheet (easylist.txt: 35249) -.yimg.com/a/1- -# ||yimg.com/*300x250$image,object (easylist.txt: 35248) -.yimg.com/.*300x250 -# ||yfrog.com/ym.php? (easylist.txt: 35247) -.yfrog.com/ym\.php\? -# ||yfrog.com/images/weezer-bloggie-bg.png (easylist.txt: 35246) -.yfrog.com/images/weezer-bloggie-bg\.png -# ||yfrog.com/images/contests/ (easylist.txt: 35245) -.yfrog.com/images/contests/ -# ||yfmghana.com/images/banners/ (easylist.txt: 35244) -.yfmghana.com/images/banners/ -# ||yesbeby.whies.info^ (easylist.txt: 35243) -.yesbeby.whies.info -# ||yellowpageskenya.com/sponsored/ (easylist.txt: 35242) -.yellowpageskenya.com/sponsored/ -# ||yellowpages.ly^*/sponsors/ (easylist.txt: 35241) -.yellowpages.ly/.*/sponsors/ -# ||yellowpages.ly/user_media/banner/ (easylist.txt: 35240) -.yellowpages.ly/user_media/banner/ -# ||yellowpages.com.lb/uploaded/banners/ (easylist.txt: 35239) -.yellowpages.com.lb/uploaded/banners/ -# ||yellowpages.com.jo/banners/ (easylist.txt: 35238) -.yellowpages.com.jo/banners/ -# ||yellowpages.ae/UI/WM/ (easylist.txt: 35237) -.yellowpages.ae/UI/WM/ -# ||yellowpages.ae/UI/WA/ (easylist.txt: 35236) -.yellowpages.ae/UI/WA/ -# ||yellowpages.ae/UI/ST/ (easylist.txt: 35235) -.yellowpages.ae/UI/ST/ -# ||yellowpages.ae/UI/SR/ (easylist.txt: 35234) -.yellowpages.ae/UI/SR/ -# ||yellowpages.ae/UI/MR/ (easylist.txt: 35233) -.yellowpages.ae/UI/MR/ -# ||yellowpages.ae/UI/LB/ (easylist.txt: 35232) -.yellowpages.ae/UI/LB/ -# ||yellowpages.ae/UI/FC/ (easylist.txt: 35231) -.yellowpages.ae/UI/FC/ -# ||yellowpage-jp.com/images/banners/ (easylist.txt: 35230) -.yellowpage-jp.com/images/banners/ -# ||yellow.co.ke/img/top_banner/ (easylist.txt: 35229) -.yellow.co.ke/img/top_banner/ -# ||yellow.co.ke/img/right_side/ (easylist.txt: 35228) -.yellow.co.ke/img/right_side/ -# ||yellow.co.ke/img/left_side/ (easylist.txt: 35227) -.yellow.co.ke/img/left_side/ -# ||yea.uploadimagex.com^ (easylist.txt: 35226) -.yea.uploadimagex.com -# ||yavideo.tv/ajaxlog.txt? (easylist.txt: 35225) -.yavideo.tv/ajaxlog\.txt\? -# ||yasni.*/design/relaunch/gfx/elitepartner_ (easylist.txt: 35224) -.yasni.*./(.*/)?design/relaunch/gfx/elitepartner_ -# ||yarisworld.com^*/banners/ (easylist.txt: 35223) -.yarisworld.com/.*/banners/ -# ||yardbarker.com/asset/asset_source/*?ord=$subdocument (easylist.txt: 35222) -.yardbarker.com/asset/asset_source/.*\?ord= -# ||yamivideo.com^*/download_video.jpg (easylist.txt: 35221) -.yamivideo.com/.*/download_video\.jpg -# ||yamgo.mobi/images/banner/ (easylist.txt: 35220) -.yamgo.mobi/images/banner/ -# ||yahoo.com^*/eyc-themis? (easylist.txt: 35219) -.yahoo.com/.*/eyc-themis\? -# ||yahoo.com/ysmload.html? (easylist.txt: 35218) -.yahoo.com/ysmload\.html\? -# ||yahoo.com/sdarla/ (easylist.txt: 35217) -.yahoo.com/sdarla/ -# ||yahoo.com/neo/darla/ (easylist.txt: 35216) -.yahoo.com/neo/darla/ -# ||yahoo.com/livewords/ (easylist.txt: 35215) -.yahoo.com/livewords/ -# ||yahoo.com/darla/ (easylist.txt: 35214) -.yahoo.com/darla/ -# ||yahoo.com/contextual-shortcuts (easylist.txt: 35213) -.yahoo.com/contextual-shortcuts -# ||yahoo.com/__darla/ (easylist.txt: 35212) -.yahoo.com/__darla/ -# ||yahoo.*/serv?s= (easylist.txt: 35211) -.yahoo.*./(.*/)?serv\?s= -# ||xup.in/layer.php (easylist.txt: 35210) -.xup.in/layer\.php -# ||xtremesystems.org/forums/brotator/ (easylist.txt: 35209) -.xtremesystems.org/forums/brotator/ -# ||xsreviews.co.uk/style/bgg2.jpg (easylist.txt: 35208) -.xsreviews.co.uk/style/bgg2\.jpg -# ||xscores.com/livescore/banners/ (easylist.txt: 35207) -.xscores.com/livescore/banners/ -# ||xoops-theme.com/images/banners/ (easylist.txt: 35206) -.xoops-theme.com/images/banners/ -# ||xomreviews.com/sponsors/ (easylist.txt: 35205) -.xomreviews.com/sponsors/ -# ||xiaopan.co/Reaver.png (easylist.txt: 35204) -.xiaopan.co/Reaver\.png -# ||xboxgaming.co.za^*/images/background/ (easylist.txt: 35203) -.xboxgaming.co.za/.*/images/background/ -# ||xbox-scene.com/crave/logo_on_white_s160.jpg (easylist.txt: 35202) -.xbox-scene.com/crave/logo_on_white_s160\.jpg -# ||xbox-hq.com/html/images/banners/ (easylist.txt: 35201) -.xbox-hq.com/html/images/banners/ -# ||xbitlabs.com/images/banners/ (easylist.txt: 35200) -.xbitlabs.com/images/banners/ -# ||xbitlabs.com/cms/module_banners/ (easylist.txt: 35199) -.xbitlabs.com/cms/module_banners/ -# ||x.castanet.net^ (easylist.txt: 35198) -.x.castanet.net -# ||www2.sys-con.com^*.cfm (easylist.txt: 35197) -.www2.sys-con.com/.*\.cfm -# ||wwbf.com/b/topbanner.htm (easylist.txt: 35196) -.wwbf.com/b/topbanner\.htm -# ||wwaytv3.com^*/curlypage.js (easylist.txt: 35195) -.wwaytv3.com/.*/curlypage\.js -# ||wvbr.com/images/banner/ (easylist.txt: 35194) -.wvbr.com/images/banner/ -# ||wunderground.com^*/wuss_300ad2.php? (easylist.txt: 35193) -.wunderground.com/.*/wuss_300ad2\.php\? -# ||wunderground.com/geo/swfad/ (easylist.txt: 35192) -.wunderground.com/geo/swfad/ -# ||wttrend.com/images/hs.jpg (easylist.txt: 35191) -.wttrend.com/images/hs\.jpg -# ||wsj.net/internal/krux.js (easylist.txt: 35190) -.wsj.net/internal/krux\.js -# ||wshh.me/vast/ (easylist.txt: 35189) -.wshh.me/vast/ -# ||wrmf.com/upload/*_Webskin_ (easylist.txt: 35188) -.wrmf.com/upload/.*_Webskin_ -# ||wrlr.fm/images/banners/ (easylist.txt: 35187) -.wrlr.fm/images/banners/ -# ||wrko.com^*/sponsors/ (easylist.txt: 35186) -.wrko.com/.*/sponsors/ -# ||wrko.com/sites/wrko.com/files/poll/*_285x95.jpg (easylist.txt: 35185) -.wrko.com/sites/wrko\.com/files/poll/.*_285x95\.jpg -# ||wrcjfm.org/images/banners/ (easylist.txt: 35184) -.wrcjfm.org/images/banners/ -# ||wrc.com/swf/homeclock_edox_hori.swf (easylist.txt: 35183) -.wrc.com/swf/homeclock_edox_hori\.swf -# ||wrc.com/img/sponsors- (easylist.txt: 35182) -.wrc.com/img/sponsors- -# ||wranglerforum.com/images/sponsor/ (easylist.txt: 35181) -.wranglerforum.com/images/sponsor/ -# ||wqxe.com/images/sponsors/ (easylist.txt: 35180) -.wqxe.com/images/sponsors/ -# ||wqam.com/partners/ (easylist.txt: 35179) -.wqam.com/partners/ -# ||wqah.com/images/banners/ (easylist.txt: 35178) -.wqah.com/images/banners/ -# ||wptmag.com/promo/ (easylist.txt: 35177) -.wptmag.com/promo/ -# ||wpdaddy.com^*/banners/ (easylist.txt: 35176) -.wpdaddy.com/.*/banners/ -# ||wpcv.com/includes/header_banner.htm (easylist.txt: 35175) -.wpcv.com/includes/header_banner\.htm -# ||wp.com/wp-content/themes/vip/tctechcrunch/images/tc_*_skin.jpg (easylist.txt: 35169) -.wp.com/wp-content/themes/vip/tctechcrunch/images/tc_.*_skin\.jpg -# ||wowwiki.com/__varnish_ (easylist.txt: 35168) -.wowwiki.com/__varnish_ -# ||wowhead.com/uploads/skins/$image (easylist.txt: 35167) -.wowhead.com/uploads/skins/ -# ||worthofweb.com/images/wow-ad- (easylist.txt: 35166) -.worthofweb.com/images/wow-ad- -# ||worldstagegroup.com/worldstagenew/banner/ (easylist.txt: 35165) -.worldstagegroup.com/worldstagenew/banner/ -# ||worldstagegroup.com/banner/ (easylist.txt: 35164) -.worldstagegroup.com/banner/ -# ||worldstadiums.com/world_stadiums/bugarrishoes/ (easylist.txt: 35163) -.worldstadiums.com/world_stadiums/bugarrishoes/ -# ||worldometers.info/L728.html (easylist.txt: 35162) -.worldometers.info/L728\.html -# ||worldometers.info/L300R.html (easylist.txt: 35161) -.worldometers.info/L300R\.html -# ||worldometers.info/L300L.html (easylist.txt: 35160) -.worldometers.info/L300L\.html -# ||worldarchitecturenews.com/flash_banners/ (easylist.txt: 35159) -.worldarchitecturenews.com/flash_banners/ -# ||worldarchitecturenews.com/banner/ (easylist.txt: 35158) -.worldarchitecturenews.com/banner/ -# ||workingdays.us/pub_ (easylist.txt: 35157) -.workingdays.us/pub_ -# ||workingdays.org/pub_ (easylist.txt: 35156) -.workingdays.org/pub_ -# ||workingdays.ca/pub_ (easylist.txt: 35155) -.workingdays.ca/pub_ -# ||work-day.co.uk/pub_ (easylist.txt: 35154) -.work-day.co.uk/pub_ -# ||wordwebonline.com/img/122x36ccbanner.png (easylist.txt: 35153) -.wordwebonline.com/img/122x36ccbanner\.png -# ||wordreference.com/*/publ/ (easylist.txt: 35152) -.wordreference.com/.*/publ/ -# ||worddictionary.co.uk/static//inpage-affinity/ (easylist.txt: 35145) -.worddictionary.co.uk/static//inpage-affinity/ -# ||wolf-howl.com/wp-content/banners/ (easylist.txt: 35144) -.wolf-howl.com/wp-content/banners/ -# ||wnst.net/img/coupon/ (easylist.txt: 35143) -.wnst.net/img/coupon/ -# ||wnpv1440.com/images/banners/ (easylist.txt: 35142) -.wnpv1440.com/images/banners/ -# ||wned.org/underwriting/sponsors/ (easylist.txt: 35141) -.wned.org/underwriting/sponsors/ -# ||wlrfm.com/images/banners/ (easylist.txt: 35140) -.wlrfm.com/images/banners/ -# ||wlcr.org/banners/ (easylist.txt: 35139) -.wlcr.org/banners/ -# ||wksu.org/graphics/banners/ (easylist.txt: 35138) -.wksu.org/graphics/banners/ -# ||wjunction.com/images/rectangle (easylist.txt: 35137) -.wjunction.com/images/rectangle -# ||wjunction.com/images/constant/ (easylist.txt: 35136) -.wjunction.com/images/constant/ -# ||wjunction.com/images/468x60 (easylist.txt: 35135) -.wjunction.com/images/468x60 -# ||wjie.org/media/img/sponsers/ (easylist.txt: 35134) -.wjie.org/media/img/sponsers/ -# ||witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ (easylist.txt: 35133) -.witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ -# ||witbankspurs.co.za/layout_images/sponsor.jpg (easylist.txt: 35132) -.witbankspurs.co.za/layout_images/sponsor\.jpg -# ||wiretarget.com/a_$subdocument (easylist.txt: 35130) -.wiretarget.com/a_ -# ||wirenh.com/images/banners/ (easylist.txt: 35129) -.wirenh.com/images/banners/ -# ||wired.com/images/xrail/*/samsung_layar_ (easylist.txt: 35128) -.wired.com/images/xrail/.*/samsung_layar_ -# ||wipfilms.net^*/instant-video.png (easylist.txt: 35127) -.wipfilms.net/.*/instant-video\.png -# ||wipfilms.net^*/amazon.png (easylist.txt: 35126) -.wipfilms.net/.*/amazon\.png -# ||winsupersite.com^*/roadblock. (easylist.txt: 35125) -.winsupersite.com/.*/roadblock\. -# ||winpcap.org/assets/image/banner_ (easylist.txt: 35124) -.winpcap.org/assets/image/banner_ -# ||winnfm.com/grfx/banners/ (easylist.txt: 35123) -.winnfm.com/grfx/banners/ -# ||windowsitpro.com^*/roadblock. (easylist.txt: 35122) -.windowsitpro.com/.*/roadblock\. -# ||wildtangent.com/leaderboard? (easylist.txt: 35120) -.wildtangent.com/leaderboard\? -# ||wikinvest.com/wikinvest/images/zap_trade_ (easylist.txt: 35119) -.wikinvest.com/wikinvest/images/zap_trade_ -# ||wikinvest.com/wikinvest/ads/ (easylist.txt: 35118) -.wikinvest.com/wikinvest/ads/ -# ||wikia.com/__varnish_ (easylist.txt: 35117) -.wikia.com/__varnish_ -# ||wiilovemario.com/images/fc-twin-play-nes-snes-cartridges.png (easylist.txt: 35116) -.wiilovemario.com/images/fc-twin-play-nes-snes-cartridges\.png -# ||widih.org/banners/ (easylist.txt: 35115) -.widih.org/banners/ -# ||widget.directory.dailycommercial.com^ (easylist.txt: 35114) -.widget.directory.dailycommercial.com -# ||whoownsfacebook.com/images/topbanner.gif (easylist.txt: 35112) -.whoownsfacebook.com/images/topbanner\.gif -# ||whois.net/images/banners/ (easylist.txt: 35111) -.whois.net/images/banners/ -# ||whois.net/dombot.php? (easylist.txt: 35110) -.whois.net/dombot\.php\? -# ||whoer.net/images/vpnlab20_ (easylist.txt: 35109) -.whoer.net/images/vpnlab20_ -# ||whoer.net/images/vlab50_ (easylist.txt: 35108) -.whoer.net/images/vlab50_ -# ||whoer.net/images/pb/ (easylist.txt: 35107) -.whoer.net/images/pb/ -# ||who.is/images/domain-transfer2.jpg (easylist.txt: 35106) -.who.is/images/domain-transfer2\.jpg -# ||whitepages.ae/images/UI/WS/ (easylist.txt: 35105) -.whitepages.ae/images/UI/WS/ -# ||whitepages.ae/images/UI/SRB/ (easylist.txt: 35104) -.whitepages.ae/images/UI/SRB/ -# ||whitepages.ae/images/UI/SRA/ (easylist.txt: 35103) -.whitepages.ae/images/UI/SRA/ -# ||whitepages.ae/images/UI/SR/ (easylist.txt: 35102) -.whitepages.ae/images/UI/SR/ -# ||whitepages.ae/images/UI/MR/ (easylist.txt: 35101) -.whitepages.ae/images/UI/MR/ -# ||whitepages.ae/images/UI/LB/ (easylist.txt: 35100) -.whitepages.ae/images/UI/LB/ -# ||whitepages.ae/images/UI/FC/ (easylist.txt: 35099) -.whitepages.ae/images/UI/FC/ -# ||whistleout.com.au/imagelibrary/ads/wo_skin_ (easylist.txt: 35098) -.whistleout.com.au/imagelibrary/ads/wo_skin_ -# ||whispersinthecorridors.com/banner (easylist.txt: 35097) -.whispersinthecorridors.com/banner -# ||wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system.png (easylist.txt: 35096) -.wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system\.png -# ||wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100.gif (easylist.txt: 35095) -.wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100\.gif -# ||wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila.jpg (easylist.txt: 35094) -.wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila\.jpg -# ||wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup.gif (easylist.txt: 35093) -.wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup\.gif -# ||whdh.com/images/promotions/ (easylist.txt: 35092) -.whdh.com/images/promotions/ -# ||whatsthescore.com/logos/icons/bookmakers/ (easylist.txt: 35091) -.whatsthescore.com/logos/icons/bookmakers/ -# ||whatsontv.co.uk^*/promo/ (easylist.txt: 35090) -.whatsontv.co.uk/.*/promo/ -# ||whatsonstage.com/images/sitetakeover/ (easylist.txt: 35089) -.whatsonstage.com/images/sitetakeover/ -# ||whatsonnamibia.com/images/banners/ (easylist.txt: 35088) -.whatsonnamibia.com/images/banners/ -# ||whatson.co.za/img/hp.png (easylist.txt: 35087) -.whatson.co.za/img/hp\.png -# ||whatsnewonnetflix.com/assets/blockless-ad- (easylist.txt: 35086) -.whatsnewonnetflix.com/assets/blockless-ad- -# ||whatsabyte.com/images/Acronis_Banners/ (easylist.txt: 35085) -.whatsabyte.com/images/Acronis_Banners/ -# ||whatreallyhappened.com/webpageimages/banners/uwslogosm.jpg (easylist.txt: 35084) -.whatreallyhappened.com/webpageimages/banners/uwslogosm\.jpg -# ||whatmyip.co/images/speedcoin_ (easylist.txt: 35083) -.whatmyip.co/images/speedcoin_ -# ||whatmobile.com.pk/banners/ (easylist.txt: 35082) -.whatmobile.com.pk/banners/ -# ||whatismyip.org/ez_display_au_fillslot.js (easylist.txt: 35081) -.whatismyip.org/ez_display_au_fillslot\.js -# ||whatismyip.com/images/vyprvpn_ (easylist.txt: 35080) -.whatismyip.com/images/vyprvpn_ -# ||whatismyip.com/images/VYPR__125x125.png (easylist.txt: 35079) -.whatismyip.com/images/VYPR__125x125\.png -# ||wgfaradio.com/images/banners/ (easylist.txt: 35078) -.wgfaradio.com/images/banners/ -# ||werlv.com^*banner (easylist.txt: 35077) -.werlv.com/.*banner -# ||weknowmemes.com/sidesky. (easylist.txt: 35076) -.weknowmemes.com/sidesky\. -# ||wegoted.com/uploads/sponsors/ (easylist.txt: 35075) -.wegoted.com/uploads/sponsors/ -# ||wegoted.com/uploads/memsponsor/ (easylist.txt: 35074) -.wegoted.com/uploads/memsponsor/ -# ||wegoted.com/includes/biogreen.swf (easylist.txt: 35073) -.wegoted.com/includes/biogreen\.swf -# ||weei.com^*_banner.jpg (easylist.txt: 35072) -.weei.com/.*_banner\.jpg -# ||weei.com^*/sponsors/ (easylist.txt: 35071) -.weei.com/.*/sponsors/ -# ||weddingtv.com/src/baners/ (easylist.txt: 35070) -.weddingtv.com/src/baners/ -# ||webstatschecker.com/links/ (easylist.txt: 35069) -.webstatschecker.com/links/ -# ||websitehome.co.uk/seoheap/cheap-web-hosting.gif (easylist.txt: 35068) -.websitehome.co.uk/seoheap/cheap-web-hosting\.gif -# ||webnewswire.com/images/banner (easylist.txt: 35067) -.webnewswire.com/images/banner -# ||webmastercrunch.com^*/hostgator300x30.gif (easylist.txt: 35066) -.webmastercrunch.com/.*/hostgator300x30\.gif -# ||webmaster.extabit.com^ (easylist.txt: 35065) -.webmaster.extabit.com -# ||webmailnotifier.mozdev.org/etc/af/ (easylist.txt: 35064) -.webmailnotifier.mozdev.org/etc/af/ -# ||webhostranking.com/images/bluehost-coupon-banner-1.gif (easylist.txt: 35063) -.webhostranking.com/images/bluehost-coupon-banner-1\.gif -# ||webhostingtalk.com/images/style/lw-header.png (easylist.txt: 35062) -.webhostingtalk.com/images/style/lw-header\.png -# ||webhostingtalk.com/images/style/lw-160x400.jpg (easylist.txt: 35061) -.webhostingtalk.com/images/style/lw-160x400\.jpg -# ||webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ (easylist.txt: 35060) -.webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ -# ||webdesignerdepot.com/wp-content/plugins/md-popup/ (easylist.txt: 35059) -.webdesignerdepot.com/wp-content/plugins/md-popup/ -# ||weatheroffice.gc.ca/banner/ (easylist.txt: 35058) -.weatheroffice.gc.ca/banner/ -# ||weatherbug.com^*/ova-jw.swf$object-subrequest (easylist.txt: 35057) -.weatherbug.com/.*/ova-jw\.swf -# ||weather365.net/images/banners/ (easylist.txt: 35056) -.weather365.net/images/banners/ -# ||wearetennis.com/img/common/logo_bnp_ (easylist.txt: 35055) -.wearetennis.com/img/common/logo_bnp_ -# ||wearetennis.com/img/common/bnp-logo.png (easylist.txt: 35054) -.wearetennis.com/img/common/bnp-logo\.png -# ||wearetennis.com/img/common/bnp-logo- (easylist.txt: 35053) -.wearetennis.com/img/common/bnp-logo- -# ||wealthycashmagnet.com/upload/banners/ (easylist.txt: 35052) -.wealthycashmagnet.com/upload/banners/ -# ||wdwinfo.com/js/swap.js (easylist.txt: 35051) -.wdwinfo.com/js/swap\.js -# ||wctk.com/banner_rotator.php (easylist.txt: 35050) -.wctk.com/banner_rotator\.php -# ||wcbm.com/includes/clientgraphics/ (easylist.txt: 35049) -.wcbm.com/includes/clientgraphics/ -# ||wbj.pl/im/partners.gif (easylist.txt: 35048) -.wbj.pl/im/partners\.gif -# ||wbgo.org^*/banners/ (easylist.txt: 35047) -.wbgo.org/.*/banners/ -# ||wbal.com/absolutebm/banners/ (easylist.txt: 35046) -.wbal.com/absolutebm/banners/ -# ||way2sms.com/w2sv5/js/fo_ (easylist.txt: 35045) -.way2sms.com/w2sv5/js/fo_ -# ||wavelengthcalculator.com/banner (easylist.txt: 35044) -.wavelengthcalculator.com/banner -# ||waterford-today.ie^*/banners/ (easylist.txt: 35043) -.waterford-today.ie/.*/banners/ -# ||watchwwelive.net^*/long_ban2.jpg (easylist.txt: 35042) -.watchwwelive.net/.*/long_ban2\.jpg -# ||watchwwelive.net^*/big_ban.gif (easylist.txt: 35041) -.watchwwelive.net/.*/big_ban\.gif -# ||watchuseek.com/site/forabar/zixenflashwatch.swf (easylist.txt: 35040) -.watchuseek.com/site/forabar/zixenflashwatch\.swf -# ||watchuseek.com/media/wus-image.jpg (easylist.txt: 35039) -.watchuseek.com/media/wus-image\.jpg -# ||watchuseek.com/media/longines_legenddiver.gif (easylist.txt: 35038) -.watchuseek.com/media/longines_legenddiver\.gif -# ||watchuseek.com/media/clerc-final.jpg (easylist.txt: 35037) -.watchuseek.com/media/clerc-final\.jpg -# ||watchuseek.com/media/banner_ (easylist.txt: 35036) -.watchuseek.com/media/banner_ -# ||watchuseek.com/media/1900x220_ (easylist.txt: 35035) -.watchuseek.com/media/1900x220_ -# ||watchuseek.com/media/*_250x250 (easylist.txt: 35034) -.watchuseek.com/media/.*_250x250 -# ||watchuseek.com/media/*-banner- (easylist.txt: 35033) -.watchuseek.com/media/.*-banner- -# ||watchuseek.com/flashwatchwus.swf (easylist.txt: 35032) -.watchuseek.com/flashwatchwus\.swf -# ||watchseries.eu/js/csspopup.js (easylist.txt: 35031) -.watchseries.eu/js/csspopup\.js -# ||watchseries.eu/images/download.png (easylist.txt: 35030) -.watchseries.eu/images/download\.png -# ||watchseries.eu/images/affiliate_buzz.gif (easylist.txt: 35029) -.watchseries.eu/images/affiliate_buzz\.gif -# ||watchop.com/player/watchonepiece-gao-gamebox.swf (easylist.txt: 35028) -.watchop.com/player/watchonepiece-gao-gamebox\.swf -# ||watchfreemovies.ch/js/lmst.js (easylist.txt: 35027) -.watchfreemovies.ch/js/lmst\.js -# ||watchcartoononline.com^*/530x90. (easylist.txt: 35026) -.watchcartoononline.com/.*/530x90\. -# ||watchcartoononline.com/inc/siteskin. (easylist.txt: 35025) -.watchcartoononline.com/inc/siteskin\. -# ||washtimes.net/banners/ (easylist.txt: 35024) -.washtimes.net/banners/ -# ||washtimes.com/static/images/SelectAutoWeather_v2.gif (easylist.txt: 35023) -.washtimes.com/static/images/SelectAutoWeather_v2\.gif -# ||washtimes.com/js/dart. (easylist.txt: 35022) -.washtimes.com/js/dart\. -# ||washpost.com^*/cmag_sponsor3.php? (easylist.txt: 35021) -.washpost.com/.*/cmag_sponsor3\.php\? -# ||washingtonpost.com/wp-srv/javascript/piggy-back-on-ads.js (easylist.txt: 35020) -.washingtonpost.com/wp-srv/javascript/piggy-back-on-ads\.js -# ||warriorforum.com/vbppb/ (easylist.txt: 35019) -.warriorforum.com/vbppb/ -# ||wardsauto.com^*/pm_doubleclick/ (easylist.txt: 35018) -.wardsauto.com/.*/pm_doubleclick/ -# ||waoanime.tv/playerimg.jpg (easylist.txt: 35017) -.waoanime.tv/playerimg\.jpg -# ||wantitall.co.za/images/banners/ (easylist.txt: 35016) -.wantitall.co.za/images/banners/ -# ||wantedinmilan.com/images/banner/ (easylist.txt: 35015) -.wantedinmilan.com/images/banner/ -# ||walshfreedom.com^*/liberty-luxury.png (easylist.txt: 35013) -.walshfreedom.com/.*/liberty-luxury\.png -# ||walshfreedom.com^*-300x250. (easylist.txt: 35012) -.walshfreedom.com/.*-300x250\. -# ||wallpaper.com/themes/takeovers/$image (easylist.txt: 35011) -.wallpaper.com/themes/takeovers/ -# ||wadldetroit.com/images/banners/ (easylist.txt: 35010) -.wadldetroit.com/images/banners/ -# ||waamradio.com/images/sponsors/ (easylist.txt: 35009) -.waamradio.com/images/sponsors/ -# ||w.homes.yahoo.net^ (easylist.txt: 35008) -.w.homes.yahoo.net -# ||vpsboard.com/display/ (easylist.txt: 35007) -.vpsboard.com/display/ -# ||vox-cdn.com/campaigns_images/ (easylist.txt: 35006) -.vox-cdn.com/campaigns_images/ -# ||vosizneias.com/perms/ (easylist.txt: 35005) -.vosizneias.com/perms/ -# ||vortez.co.uk^*skyscraper.jpg (easylist.txt: 35004) -.vortez.co.uk/.*skyscraper\.jpg -# ||vortez.co.uk^*120x600.swf (easylist.txt: 35003) -.vortez.co.uk/.*120x600\.swf -# ||vonradio.com/grfx/banners/ (easylist.txt: 35002) -.vonradio.com/grfx/banners/ -# ||vondroid.com/site-img/*-adv-ex- (easylist.txt: 35001) -.vondroid.com/site-img/.*-adv-ex- -# ||voicesvancouver.com/images/stories/banners/ (easylist.txt: 35000) -.voicesvancouver.com/images/stories/banners/ -# ||voicesvancouver.com/images/leaderBoards/ (easylist.txt: 34999) -.voicesvancouver.com/images/leaderBoards/ -# ||voicestoronto.com/images/stories/banners/ (easylist.txt: 34998) -.voicestoronto.com/images/stories/banners/ -# ||voicestoronto.com/images/leaderBoards/ (easylist.txt: 34997) -.voicestoronto.com/images/leaderBoards/ -# ||voicesottawa.com/images/stories/banners/ (easylist.txt: 34996) -.voicesottawa.com/images/stories/banners/ -# ||voicesottawa.com/images/leaderBoards/ (easylist.txt: 34995) -.voicesottawa.com/images/leaderBoards/ -# ||voicesedmonton.com/images/stories/banners/ (easylist.txt: 34994) -.voicesedmonton.com/images/stories/banners/ -# ||voicesedmonton.com/images/leaderBoards/ (easylist.txt: 34993) -.voicesedmonton.com/images/leaderBoards/ -# ||voicescalgary.com/images/stories/banners/ (easylist.txt: 34992) -.voicescalgary.com/images/stories/banners/ -# ||voicescalgary.com/images/leaderBoards/ (easylist.txt: 34991) -.voicescalgary.com/images/leaderBoards/ -# ||vogue.in/node/*?section= (easylist.txt: 34990) -.vogue.in/node/.*\?section= -# ||vodo.net/static/images/promotion/utorrent_plus_buy.png (easylist.txt: 34989) -.vodo.net/static/images/promotion/utorrent_plus_buy\.png -# ||vodlocker.com/images/acenter.png (easylist.txt: 34988) -.vodlocker.com/images/acenter\.png -# ||vnbitcoin.org/gawminers.png (easylist.txt: 34987) -.vnbitcoin.org/gawminers\.png -# ||vnbitcoin.org/140_350.jpg (easylist.txt: 34986) -.vnbitcoin.org/140_350\.jpg -# ||vitalmtb.com/assets/vital.aba- (easylist.txt: 34985) -.vitalmtb.com/assets/vital\.aba- -# ||vitalmtb.com/assets/ablock- (easylist.txt: 34984) -.vitalmtb.com/assets/ablock- -# ||vitalmtb.com/api/ (easylist.txt: 34983) -.vitalmtb.com/api/ -# ||vitalfootball.co.uk^*/partners/ (easylist.txt: 34982) -.vitalfootball.co.uk/.*/partners/ -# ||vitalfootball.co.uk/app-interstitial/ (easylist.txt: 34981) -.vitalfootball.co.uk/app-interstitial/ -# ||vistandpoint.com/images/banners/ (easylist.txt: 34980) -.vistandpoint.com/images/banners/ -# ||virtualtourist.com/adp/ (easylist.txt: 34979) -.virtualtourist.com/adp/ -# ||virtual-hideout.net/banner (easylist.txt: 34978) -.virtual-hideout.net/banner -# ||virginislandsthisweek.com/images/728- (easylist.txt: 34977) -.virginislandsthisweek.com/images/728- -# ||virginislandsthisweek.com/images/336- (easylist.txt: 34976) -.virginislandsthisweek.com/images/336- -# ||vipleague.se/js/vip.js (easylist.txt: 34975) -.vipleague.se/js/vip\.js -# ||vipleague.me/blackwhite/ (easylist.txt: 34974) -.vipleague.me/blackwhite/ -# ||vipi.tv/ad.php (easylist.txt: 34973) -.vipi.tv/ad\.php -# ||vipbox.tv/js/layer.js (easylist.txt: 34972) -.vipbox.tv/js/layer\.js -# ||vipbox.tv/js/layer- (easylist.txt: 34971) -.vipbox.tv/js/layer- -# ||vipbox.tv/blackwhite/ (easylist.txt: 34970) -.vipbox.tv/blackwhite/ -# ||vipbox.sx/blackwhite/ (easylist.txt: 34969) -.vipbox.sx/blackwhite/ -# ||vipbox.eu/pu/ (easylist.txt: 34968) -.vipbox.eu/pu/ -# ||vipbox.co^*/pu.js (easylist.txt: 34967) -.vipbox.co/.*/pu\.js -# ||vipbox.co/js/bn.js (easylist.txt: 34966) -.vipbox.co/js/bn\.js -# ||vinaora.com/xmedia/hosting/ (easylist.txt: 34965) -.vinaora.com/xmedia/hosting/ -# ||villagevoice.com/img/VDotDFallback-large.gif (easylist.txt: 34964) -.villagevoice.com/img/VDotDFallback-large\.gif -# ||viewdocsonline.com/images/banners/ (easylist.txt: 34963) -.viewdocsonline.com/images/banners/ -# ||vidvib.com/vidvibpopb. (easylist.txt: 34962) -.vidvib.com/vidvibpopb\. -# ||vidvib.com/vidvibpopa. (easylist.txt: 34961) -.vidvib.com/vidvibpopa\. -# ||vidspot.net^*/pu.js (easylist.txt: 34960) -.vidspot.net/.*/pu\.js -# ||vidspot.net/s/xfs.min.js? (easylist.txt: 34958) -.vidspot.net/s/xfs\.min\.js\? -# ||vidspot.net/player/ova-jw.swf$object-subrequest (easylist.txt: 34957) -.vidspot.net/player/ova-jw\.swf -# ||vidhog.com/images/download_banner_ (easylist.txt: 34955) -.vidhog.com/images/download_banner_ -# ||videowood.tv/pop2 (easylist.txt: 34954) -.videowood.tv/pop2 -# ||videowood.tv/assets/js/popup.js (easylist.txt: 34953) -.videowood.tv/assets/js/popup\.js -# ||videowood.tv/ads (easylist.txt: 34952) -.videowood.tv/ads -# ||videositeprofits.com^*/banner.jpg (easylist.txt: 34951) -.videositeprofits.com/.*/banner\.jpg -# ||videos.mediaite.com/decor/live/white_alpha_60. (easylist.txt: 34950) -.videos.mediaite.com/decor/live/white_alpha_60\. -# ||videos.com/click? (easylist.txt: 34949) -.videos.com/click\? -# ||videopediaworld.com/nuevo/plugins/midroll. (easylist.txt: 34948) -.videopediaworld.com/nuevo/plugins/midroll\. -# ||videolan.org/images/events/animated_packliberte.gif (easylist.txt: 34947) -.videolan.org/images/events/animated_packliberte\.gif -# ||videogamesblogger.com^*/scripts/takeover.js (easylist.txt: 34946) -.videogamesblogger.com/.*/scripts/takeover\.js -# ||videogamesblogger.com/takeover.html (easylist.txt: 34945) -.videogamesblogger.com/takeover\.html -# ||videogamer.com^*/css/skins/$stylesheet (easylist.txt: 34944) -.videogamer.com/.*/css/skins/ -# ||videogamer.com/videogamer*/skins/ (easylist.txt: 34943) -.videogamer.com/videogamer.*/skins/ -# ||videodownloadtoolbar.com/fancybox/ (easylist.txt: 34942) -.videodownloadtoolbar.com/fancybox/ -# ||videodorm.org/player/yume-h.swf$object-subrequest (easylist.txt: 34941) -.videodorm.org/player/yume-h\.swf -# ||videobull.to/wp-content/themes/videozoom/images/stream-hd-button.gif (easylist.txt: 34940) -.videobull.to/wp-content/themes/videozoom/images/stream-hd-button\.gif -# ||videobull.to/wp-content/themes/videozoom/images/gotowatchnow.png (easylist.txt: 34939) -.videobull.to/wp-content/themes/videozoom/images/gotowatchnow\.png -# ||videobull.com^*/amazon_ico.png (easylist.txt: 34938) -.videobull.com/.*/amazon_ico\.png -# ||videobull.com/wp-content/themes/*/watch-now.jpg (easylist.txt: 34937) -.videobull.com/wp-content/themes/.*/watch-now\.jpg -# ||videobash.com/images/playboy/ (easylist.txt: 34936) -.videobash.com/images/playboy/ -# ||videobam.com/this-pays-for-bandwidth/ (easylist.txt: 34935) -.videobam.com/this-pays-for-bandwidth/ -# ||videobam.com/images/banners/ (easylist.txt: 34934) -.videobam.com/images/banners/ -# ||video44.net/gogo/yume-h.swf$object-subrequest (easylist.txt: 34933) -.video44.net/gogo/yume-h\.swf -# ||video44.net/gogo/qc.js (easylist.txt: 34932) -.video44.net/gogo/qc\.js -# ||video44.net/gogo/a_d_s. (easylist.txt: 34931) -.video44.net/gogo/a_d_s\. -# ||video2mp3.net/images/download_button.png (easylist.txt: 34930) -.video2mp3.net/images/download_button\.png -# ||video.abc.com^*/promos/$object-subrequest (easylist.txt: 34928) -.video.abc.com/.*/promos/ -# ||video.abc.com^*/ads/ (easylist.txt: 34927) -.video.abc.com/.*/ads/ -# ||video-cdn.abcnews.com/ad_$object-subrequest (easylist.txt: 34925) -.video-cdn.abcnews.com/ad_ -# ||vidds.net/pads*.js (easylist.txt: 34924) -.vidds.net/pads.*\.js -# ||vidbull.com/tags/vidbull_bnr.png (easylist.txt: 34923) -.vidbull.com/tags/vidbull_bnr\.png -# ||vice-ads-cdn.vice.com^ (easylist.txt: 34922) -.vice-ads-cdn.vice.com -# ||viator.com/analytics/percent_mobile_hash.js (easylist.txt: 34921) -.viator.com/analytics/percent_mobile_hash\.js -# ||viamichelin.co.uk/htm/cmn/afs*.htm? (easylist.txt: 34920) -.viamichelin.co.uk/htm/cmn/afs.*\.htm\? -# ||viadeo.com/pub/ (easylist.txt: 34919) -.viadeo.com/pub/ -# ||vhd.me/custom/interstitial (easylist.txt: 34918) -.vhd.me/custom/interstitial -# ||vfs-uk-in.com/images/webbanner- (easylist.txt: 34917) -.vfs-uk-in.com/images/webbanner- -# ||verzing.com/popup (easylist.txt: 34916) -.verzing.com/popup -# ||verzend.be/images/download.png (easylist.txt: 34915) -.verzend.be/images/download\.png -# ||verizon.com/ads/ (easylist.txt: 34914) -.verizon.com/ads/ -# ||verdict.abc.go.com^ (easylist.txt: 34913) -.verdict.abc.go.com -# ||vehix.com/tags/default.imu?$subdocument (easylist.txt: 34912) -.vehix.com/tags/default\.imu\? -# ||vcdq.com^*/ad.html (easylist.txt: 34911) -.vcdq.com/.*/ad\.html -# ||vcdq.com/tag.html (easylist.txt: 34910) -.vcdq.com/tag\.html -# ||vault.starproperty.my/widget/ (easylist.txt: 34909) -.vault.starproperty.my/widget/ -# ||vasco.co.za/images/banners/ (easylist.txt: 34908) -.vasco.co.za/images/banners/ -# ||vanityfair.com/custom/ebook-ad-bookbiz (easylist.txt: 34907) -.vanityfair.com/custom/ebook-ad-bookbiz -# ||valuewalk.com//?$script (easylist.txt: 34906) -# ||valleyplanet.com/images/banners/ (easylist.txt: 34905) -.valleyplanet.com/images/banners/ -# ||val.fm/images/banners/ (easylist.txt: 34904) -.val.fm/images/banners/ -# ||uvnc.com/img/housecall. (easylist.txt: 34903) -.uvnc.com/img/housecall\. -# ||ustream.tv/takeover/ (easylist.txt: 34902) -.ustream.tv/takeover/ -# ||usforacle.com^*-300x250.gif (easylist.txt: 34899) -.usforacle.com/.*-300x250\.gif -# ||usenet-crawler.com/purevpn.png (easylist.txt: 34898) -.usenet-crawler.com/purevpn\.png -# ||usenet-crawler.com/astraweb.png (easylist.txt: 34897) -.usenet-crawler.com/astraweb\.png -# ||uschess.org/images/banners/ (easylist.txt: 34896) -.uschess.org/images/banners/ -# ||usatodayhss.com/images/*skin (easylist.txt: 34895) -.usatodayhss.com/images/.*skin -# ||usatoday.net^*/lb-agate.png (easylist.txt: 34894) -.usatoday.net/.*/lb-agate\.png -# ||usanetwork.com/_js/ad.js (easylist.txt: 34893) -.usanetwork.com/_js/ad\.js -# ||urlgone.com^*/banners/ (easylist.txt: 34892) -.urlgone.com/.*/banners/ -# ||urlcash.org/newpop.js (easylist.txt: 34891) -.urlcash.org/newpop\.js -# ||urlcash.org/banners/ (easylist.txt: 34890) -.urlcash.org/banners/ -# ||urlcash.org/abp/ (easylist.txt: 34889) -.urlcash.org/abp/ -# ||urlcash.net/random*.php (easylist.txt: 34888) -.urlcash.net/random.*\.php -# ||urlcash.net/newpop.js (easylist.txt: 34887) -.urlcash.net/newpop\.js -# ||urethanes-technology-international.com^*/banners/ (easylist.txt: 34886) -.urethanes-technology-international.com/.*/banners/ -# ||urbanvelo.org/sidebarbanner/ (easylist.txt: 34885) -.urbanvelo.org/sidebarbanner/ -# ||urbanfonts.com/images/fonts_com/ (easylist.txt: 34884) -.urbanfonts.com/images/fonts_com/ -# ||urbanchristiannews.com/ucn/sidebar- (easylist.txt: 34883) -.urbanchristiannews.com/ucn/sidebar- -# ||uptobox.com/images/downloaden.gif (easylist.txt: 34882) -.uptobox.com/images/downloaden\.gif -# ||uptobox.com/images/download.png (easylist.txt: 34881) -.uptobox.com/images/download\.png -# ||uptobox.com/ayl.js (easylist.txt: 34880) -.uptobox.com/ayl\.js -# ||uploadlw.com^*/download_button.gif (easylist.txt: 34879) -.uploadlw.com/.*/download_button\.gif -# ||uploadlw.com^*/download-now (easylist.txt: 34878) -.uploadlw.com/.*/download-now -# ||uploadlw.com/js/cash.js (easylist.txt: 34877) -.uploadlw.com/js/cash\.js -# ||uploading.com/static/banners/ (easylist.txt: 34876) -.uploading.com/static/banners/ -# ||uploadedtrend.com/turboflirt.gif (easylist.txt: 34875) -.uploadedtrend.com/turboflirt\.gif -# ||uploaded.to/img/e/ad/ (easylist.txt: 34874) -.uploaded.to/img/e/ad/ -# ||uploaded.net/js2/downloadam.js (easylist.txt: 34873) -.uploaded.net/js2/downloadam\.js -# ||uploadcore.com/images/*-Rad.png (easylist.txt: 34872) -.uploadcore.com/images/.*-Rad\.png -# ||uploadcore.com/images/*-mad.jpg (easylist.txt: 34871) -.uploadcore.com/images/.*-mad\.jpg -# ||uploadcore.com/images/*-Lad.jpg (easylist.txt: 34870) -.uploadcore.com/images/.*-Lad\.jpg -# ||uploadbaz.com^*-728-$object (easylist.txt: 34869) -.uploadbaz.com/.*-728- -# ||upload.ee/image/*/B_descarga_tipo12.gif (easylist.txt: 34868) -.upload.ee/image/.*/B_descarga_tipo12\.gif -# ||universalhub.com/bban/ (easylist.txt: 34867) -.universalhub.com/bban/ -# ||uniquefm.gm/images/banners/ (easylist.txt: 34866) -.uniquefm.gm/images/banners/ -# ||uniindia.net/eng/banners/ (easylist.txt: 34865) -.uniindia.net/eng/banners/ -# ||uniindia.com/eng/bannertopright.php (easylist.txt: 34864) -.uniindia.com/eng/bannertopright\.php -# ||uniindia.com/eng/banners/ (easylist.txt: 34863) -.uniindia.com/eng/banners/ -# ||uniindia.com/eng/bannerrightside.php (easylist.txt: 34862) -.uniindia.com/eng/bannerrightside\.php -# ||uniindia.com/eng/bannerheader.php (easylist.txt: 34861) -.uniindia.com/eng/bannerheader\.php -# ||uniindia.com/eng/bannerbottom.php (easylist.txt: 34860) -.uniindia.com/eng/bannerbottom\.php -# ||unicast.msn.com^ (easylist.txt: 34859) -.unicast.msn.com -# ||unicast.ign.com^ (easylist.txt: 34858) -.unicast.ign.com -# ||uncoached.com/smallpics/ashley (easylist.txt: 34857) -.uncoached.com/smallpics/ashley -# ||unblockt.com/scrape_if.php (easylist.txt: 34856) -.unblockt.com/scrape_if\.php -# ||unblockedpiratebay.com/external/$image (easylist.txt: 34855) -.unblockedpiratebay.com/external/ -# ||unawave.de/templates/unawave/a/$image (easylist.txt: 34854) -.unawave.de/templates/unawave/a/ -# ||unawave.de/medien/wbwso-$image (easylist.txt: 34853) -.unawave.de/medien/wbwso- -# ||unawave.de/medien/ama/$image (easylist.txt: 34852) -.unawave.de/medien/ama/ -# ||unawave.de/medien/a/w-ama-$image (easylist.txt: 34851) -.unawave.de/medien/a/w-ama- -# ||umbrelladetective.com/uploaded_files/banners/ (easylist.txt: 34850) -.umbrelladetective.com/uploaded_files/banners/ -# ||ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners.swf (easylist.txt: 34849) -.ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners\.swf -# ||ultimatewindowssecurity.com/images/spale.swf (easylist.txt: 34848) -.ultimatewindowssecurity.com/images/spale\.swf -# ||ultimatewindowssecurity.com/images/patchzone-resource-80x490.jpg (easylist.txt: 34847) -.ultimatewindowssecurity.com/images/patchzone-resource-80x490\.jpg -# ||ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool.jpg (easylist.txt: 34846) -.ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool\.jpg -# ||ultimatehandyman.org/bh1.gif (easylist.txt: 34845) -.ultimatehandyman.org/bh1\.gif -# ||ultimatehandyman.co.uk/ban.txt (easylist.txt: 34844) -.ultimatehandyman.co.uk/ban\.txt -# ||ultimate-guitar.com^*/takeover/ (easylist.txt: 34843) -.ultimate-guitar.com/.*/takeover/ -# ||ultimate-guitar.com/bgd/main_$image (easylist.txt: 34842) -.ultimate-guitar.com/bgd/main_ -# ||ultimate-guitar.com/_img/promo/takeovers/ (easylist.txt: 34841) -.ultimate-guitar.com/_img/promo/takeovers/ -# ||ultimate-guitar.com/_img/bgd/bgd_main_ (easylist.txt: 34840) -.ultimate-guitar.com/_img/bgd/bgd_main_ -# ||ukradioplayer.kerrangradio.co.uk^*/icon_apple.png (easylist.txt: 34839) -.ukradioplayer.kerrangradio.co.uk/.*/icon_apple\.png -# ||ukradioplayer.kerrangradio.co.uk^*/icon_amazon.png (easylist.txt: 34838) -.ukradioplayer.kerrangradio.co.uk/.*/icon_amazon\.png -# ||ukfindit.com/wipedebtclean.png (easylist.txt: 34837) -.ukfindit.com/wipedebtclean\.png -# ||ukfindit.com/images/*_125x125.gif (easylist.txt: 34836) -.ukfindit.com/images/.*_125x125\.gif -# ||ukcast.co/rbt728.php (easylist.txt: 34835) -.ukcast.co/rbt728\.php -# ||ukcast.co/pubfit.php (easylist.txt: 34834) -.ukcast.co/pubfit\.php -# ||ukcampsite.co.uk/banners/ (easylist.txt: 34833) -.ukcampsite.co.uk/banners/ -# ||ukbusinessforums.co.uk/adblock/ (easylist.txt: 34832) -.ukbusinessforums.co.uk/adblock/ -# ||uk-mkivs.net/uploads/banners/ (easylist.txt: 34831) -.uk-mkivs.net/uploads/banners/ -# ||ujfm.co.za/images/banners/ (easylist.txt: 34830) -.ujfm.co.za/images/banners/ -# ||uimserv.net^ (easylist.txt: 34829) -.uimserv.net -# ||ugo.com/takeover/ (easylist.txt: 34828) -.ugo.com/takeover/ -# ||ufonts.com/gfx/uFonts_Banner5.png (easylist.txt: 34827) -.ufonts.com/gfx/uFonts_Banner5\.png -# ||ubuntugeek.com^*/rocket.js (easylist.txt: 34826) -.ubuntugeek.com/.*/rocket\.js -# ||ubuntugeek.com/images/ubuntu1.png (easylist.txt: 34825) -.ubuntugeek.com/images/ubuntu1\.png -# ||ubuntugeek.com/images/od.jpg (easylist.txt: 34824) -.ubuntugeek.com/images/od\.jpg -# ||ubuntugeek.com/images/dnsstock.png (easylist.txt: 34823) -.ubuntugeek.com/images/dnsstock\.png -# ||uberhumor.com/iframe$subdocument (easylist.txt: 34822) -.uberhumor.com/iframe -# ||uberhumor.com/*btf.html$subdocument (easylist.txt: 34821) -.uberhumor.com/.*btf\.html -# ||ua.badongo.com^ (easylist.txt: 34820) -.ua.badongo.com -# ||u.tv/utvplayer/jwplayer/ova.swf (easylist.txt: 34819) -.u.tv/utvplayer/jwplayer/ova\.swf -# ||u.tv/images/sponsors/ (easylist.txt: 34818) -.u.tv/images/sponsors/ -# ||u.tv/images/misc/progressive.png (easylist.txt: 34817) -.u.tv/images/misc/progressive\.png -# ||txfm.ie^*/itunes-16x16.png (easylist.txt: 34816) -.txfm.ie/.*/itunes-16x16\.png -# ||txfm.ie^*/amazon-16x16.png (easylist.txt: 34815) -.txfm.ie/.*/amazon-16x16\.png -# ||twnmm.com^*/sponsored_logo. (easylist.txt: 34814) -.twnmm.com/.*/sponsored_logo\. -# ||twitch.tv/ad/*=preroll (easylist.txt: 34812) -.twitch.tv/ad/.*=preroll -# ||twentyfour7football.com^*/gpprint.jpg (easylist.txt: 34811) -.twentyfour7football.com/.*/gpprint\.jpg -# ||tweaktown.com/cms/includes/i*.php (easylist.txt: 34810) -.tweaktown.com/cms/includes/i.*\.php -# ||tvsubtitles.net/banners/ (easylist.txt: 34809) -.tvsubtitles.net/banners/ -# ||tvguide.com^*/ecommerce/ (easylist.txt: 34808) -.tvguide.com/.*/ecommerce/ -# ||tvducky.com/imgs/graboid. (easylist.txt: 34807) -.tvducky.com/imgs/graboid\. -# ||tvcatchup.com/wowee/ (easylist.txt: 34806) -.tvcatchup.com/wowee/ -# ||tvbrowser.org/logo_df_tvsponsor_ (easylist.txt: 34805) -.tvbrowser.org/logo_df_tvsponsor_ -# ||tv4chan.com/iframes/ (easylist.txt: 34804) -.tv4chan.com/iframes/ -# ||tv3.ie^*/sponsor. (easylist.txt: 34803) -.tv3.ie/.*/sponsor\. -# ||tuspics.net/onlyPopupOnce.js (easylist.txt: 34802) -.tuspics.net/onlyPopupOnce\.js -# ||tusfiles.net/images/tusfilesb.gif (easylist.txt: 34801) -.tusfiles.net/images/tusfilesb\.gif -# ||tusfiles.net/i/dll.png (easylist.txt: 34800) -.tusfiles.net/i/dll\.png -# ||turnstylenews.com^*/sponsors.png (easylist.txt: 34799) -.turnstylenews.com/.*/sponsors\.png -# ||turboyourpc.com/images/affiliates/ (easylist.txt: 34798) -.turboyourpc.com/images/affiliates/ -# ||turboimagehost.com/p.js (easylist.txt: 34797) -.turboimagehost.com/p\.js -# ||turboimagehost.com/b728_ (easylist.txt: 34796) -.turboimagehost.com/b728_ -# ||turboimagehost.com/b728. (easylist.txt: 34795) -.turboimagehost.com/b728\. -# ||turboimagehost.com/b300_ (easylist.txt: 34794) -.turboimagehost.com/b300_ -# ||turboimagehost.com/b300. (easylist.txt: 34793) -.turboimagehost.com/b300\. -# ||turboimagehost.com/728*.html^ (easylist.txt: 34792) -.turboimagehost.com/728.*\.html[^\w%.-] -# ||turboimagehost.com/300*.html^ (easylist.txt: 34791) -.turboimagehost.com/300.*\.html[^\w%.-] -# ||turbobit.net/pics/7z1xla23ay_ (easylist.txt: 34790) -.turbobit.net/pics/7z1xla23ay_ -# ||turbobit.net/oexktl/muzebra_ (easylist.txt: 34789) -.turbobit.net/oexktl/muzebra_ -# ||turbobit.net/js/acontrol.js? (easylist.txt: 34788) -.turbobit.net/js/acontrol\.js\? -# ||tune.pk/plugins/cb_tunepk/ads/ (easylist.txt: 34787) -.tune.pk/plugins/cb_tunepk/ads/ -# ||tullahomanews.com/news/tn-popup.js (easylist.txt: 34786) -.tullahomanews.com/news/tn-popup\.js -# ||tullahomanews.com/news/banners/ (easylist.txt: 34785) -.tullahomanews.com/news/banners/ -# ||tubeplus.me/resources/js/codec.js (easylist.txt: 34784) -.tubeplus.me/resources/js/codec\.js -# ||tubehome.com/imgs/undressme (easylist.txt: 34783) -.tubehome.com/imgs/undressme -# ||tsn.ca^*_sponsor. (easylist.txt: 34782) -.tsn.ca/.*_sponsor\. -# ||tsdmemphis.com/images/banners/ (easylist.txt: 34781) -.tsdmemphis.com/images/banners/ -# ||tsatic-cdn.net/takeovers/$image (easylist.txt: 34780) -.tsatic-cdn.net/takeovers/ -# ||trutv.com/includes/mods/iframes/mgid-blog.php (easylist.txt: 34779) -.trutv.com/includes/mods/iframes/mgid-blog\.php -# ||trustedreviews.com/mobile/widgets/html/promoted-phones? (easylist.txt: 34778) -.trustedreviews.com/mobile/widgets/html/promoted-phones\? -# ||trunews.com^*/Webbanner.jpg (easylist.txt: 34777) -.trunews.com/.*/Webbanner\.jpg -# ||trucktrend.com^*_160x200_ (easylist.txt: 34776) -.trucktrend.com/.*_160x200_ -# ||trucknetuk.com^*/sponsors/ (easylist.txt: 34775) -.trucknetuk.com/.*/sponsors/ -# ||truck1.eu/_BANNERS_/ (easylist.txt: 34774) -.truck1.eu/_BANNERS_/ -# ||triplehfm.com.au/images/banners/ (easylist.txt: 34773) -.triplehfm.com.au/images/banners/ -# ||tripadvisor.com^*/skyscraper.jpg (easylist.txt: 34772) -.tripadvisor.com/.*/skyscraper\.jpg -# ||tripadvisor.com/adp/ (easylist.txt: 34771) -.tripadvisor.com/adp/ -# ||tripadvisor.*/adp/adp-$subdocument (easylist.txt: 34770) -.tripadvisor.*./(.*/)?adp/adp- -# ||tribune242.com/pubfiles/ (easylist.txt: 34769) -.tribune242.com/pubfiles/ -# ||tribune.com.ng/images/banners/ (easylist.txt: 34768) -.tribune.com.ng/images/banners/ -# ||trgoals.es/adk.html (easylist.txt: 34767) -.trgoals.es/adk\.html -# ||trailrunnermag.com/images/takeovers/ (easylist.txt: 34766) -.trailrunnermag.com/images/takeovers/ -# ||traduguide.com/banner/ (easylist.txt: 34765) -.traduguide.com/banner/ -# ||tradewinds.vi/images/banners/ (easylist.txt: 34764) -.tradewinds.vi/images/banners/ -# ||tracksat.com^*/banners/ (easylist.txt: 34763) -.tracksat.com/.*/banners/ -# ||trackitdown.net/skins/*_campaign/ (easylist.txt: 34762) -.trackitdown.net/skins/.*_campaign/ -# ||tracking.hostgator.com^ (easylist.txt: 34761) -.tracking.hostgator.com -# ||tpb.piraten.lu/static/img/bar.gif (easylist.txt: 34758) -.tpb.piraten.lu/static/img/bar\.gif -# ||toywiz.com/lower-caption-global.html (easylist.txt: 34757) -.toywiz.com/lower-caption-global\.html -# ||toynewsi.com/a/ (easylist.txt: 34756) -.toynewsi.com/a/ -# ||toynews-online.biz/media/banners/ (easylist.txt: 34755) -.toynews-online.biz/media/banners/ -# ||townhall.com^*/ads/ (easylist.txt: 34754) -.townhall.com/.*/ads/ -# ||toucharcade.com/wp-content/uploads/skins/ (easylist.txt: 34753) -.toucharcade.com/wp-content/uploads/skins/ -# ||toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin.jpg (easylist.txt: 34752) -.toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin\.jpg -# ||toucharcade.com/wp-content/themes/*_background_*.jpg (easylist.txt: 34751) -.toucharcade.com/wp-content/themes/.*_background_.*\.jpg -# ||totalguitar.net/images/tgMagazineBanner.gif (easylist.txt: 34750) -.totalguitar.net/images/tgMagazineBanner\.gif -# ||totalguitar.net/images/*_125X125.jpg (easylist.txt: 34749) -.totalguitar.net/images/.*_125X125\.jpg -# ||totalcmd.pl/img/olszak. (easylist.txt: 34748) -.totalcmd.pl/img/olszak\. -# ||totalcmd.pl/img/nucom. (easylist.txt: 34747) -.totalcmd.pl/img/nucom\. -# ||totalcmd.pl/img/billboard_ (easylist.txt: 34746) -.totalcmd.pl/img/billboard_ -# ||total-croatia-news.com/images/banners/ (easylist.txt: 34745) -.total-croatia-news.com/images/banners/ -# ||toshiba.com^*/toshibapromowidget/ (easylist.txt: 34744) -.toshiba.com/.*/toshibapromowidget/ -# ||toshiba.com^*/bookingpromowidget/ (easylist.txt: 34743) -.toshiba.com/.*/bookingpromowidget/ -# ||torrentz.*/mgid/ (easylist.txt: 34742) -.torrentz.*./(.*/)?mgid/ -# ||torrentv.org/images/tsdls.jpg (easylist.txt: 34741) -.torrentv.org/images/tsdls\.jpg -# ||torrentv.org/images/tsdd.jpg (easylist.txt: 34740) -.torrentv.org/images/tsdd\.jpg -# ||torrents.net/wiget.js (easylist.txt: 34739) -.torrents.net/wiget\.js -# ||torrents.net/btguard.gif (easylist.txt: 34738) -.torrents.net/btguard\.gif -# ||torrentroom.com/js/torrents.js (easylist.txt: 34737) -.torrentroom.com/js/torrents\.js -# ||torrentproject.org/out/ (easylist.txt: 34736) -.torrentproject.org/out/ -# ||torrentfusion.com/FastDownload.html (easylist.txt: 34735) -.torrentfusion.com/FastDownload\.html -# ||torrentfunk.com/affprofslider.js (easylist.txt: 34734) -.torrentfunk.com/affprofslider\.js -# ||torrentfreak.com/images/vuze.png (easylist.txt: 34733) -.torrentfreak.com/images/vuze\.png -# ||torrentfreak.com/images/torguard.gif (easylist.txt: 34732) -.torrentfreak.com/images/torguard\.gif -# ||torrenteditor.com/img/graphical-network-monitor.gif (easylist.txt: 34731) -.torrenteditor.com/img/graphical-network-monitor\.gif -# ||torrentcrazy.com/pnd.js (easylist.txt: 34730) -.torrentcrazy.com/pnd\.js -# ||torrentcrazy.com/img/wx.png (easylist.txt: 34729) -.torrentcrazy.com/img/wx\.png -# ||torrentbox.sx/img/download_direct.png (easylist.txt: 34728) -.torrentbox.sx/img/download_direct\.png -# ||torrentbit.net/images/1click/button-long.png (easylist.txt: 34727) -.torrentbit.net/images/1click/button-long\.png -# ||torrent.cd/images/sp/ (easylist.txt: 34726) -.torrent.cd/images/sp/ -# ||torrent.cd/images/main_big_msoft.jpg (easylist.txt: 34725) -.torrent.cd/images/main_big_msoft\.jpg -# ||torrent.cd/images/big_use.gif (easylist.txt: 34724) -.torrent.cd/images/big_use\.gif -# ||torrent.cd/images/banner- (easylist.txt: 34723) -.torrent.cd/images/banner- -# ||torrent-finder.info/cont.php (easylist.txt: 34722) -.torrent-finder.info/cont\.php -# ||torrent-finder.info/cont.html (easylist.txt: 34721) -.torrent-finder.info/cont\.html -# ||toptenreviews.com/flash/ (easylist.txt: 34720) -.toptenreviews.com/flash/ -# ||topix.com/ajax/krillion/ (easylist.txt: 34719) -.topix.com/ajax/krillion/ -# ||topfriv.com/popup.js (easylist.txt: 34718) -.topfriv.com/popup\.js -# ||topalternate.com/assets/sponsored_links- (easylist.txt: 34717) -.topalternate.com/assets/sponsored_links- -# ||toonzone.net^*/placements.php? (easylist.txt: 34716) -.toonzone.net/.*/placements\.php\? -# ||toonova.com/images/site/front/xgift- (easylist.txt: 34715) -.toonova.com/images/site/front/xgift- -# ||toomuchnews.com/dropin/ (easylist.txt: 34714) -.toomuchnews.com/dropin/ -# ||toolslib.net/assets/img/a_dvt/ (easylist.txt: 34713) -.toolslib.net/assets/img/a_dvt/ -# ||tomshardware.com/price/widget/?$xmlhttprequest (easylist.txt: 34712) -.tomshardware.com/price/widget/\? -# ||tomshardware.com/indexAjax.php?ctrl=ajax_pricegrabber$xmlhttprequest (easylist.txt: 34711) -.tomshardware.com/indexAjax\.php\?ctrl=ajax_pricegrabber -# ||tom.itv.com^ (easylist.txt: 34710) -.tom.itv.com -# ||tny.cz/oo/ (easylist.txt: 34709) -.tny.cz/oo/ -# ||tnij.org/rotator (easylist.txt: 34708) -.tnij.org/rotator -# ||tmz.vo.llnwd.net^*/images/*skin (easylist.txt: 34706) -.tmz.vo.llnwd.net/.*/images/.*skin -# ||tmcs.net^ (easylist.txt: 34705) -.tmcs.net -# ||titantv.com/gravity.ashx (easylist.txt: 34704) -.titantv.com/gravity\.ashx -# ||titantorrent.to^*/buttons/download.gif (easylist.txt: 34703) -.titantorrent.to/.*/buttons/download\.gif -# ||titanshare.to/images/buttons/download.gif (easylist.txt: 34702) -.titanshare.to/images/buttons/download\.gif -# ||tinyurl.com/firefox_banner_ (easylist.txt: 34701) -.tinyurl.com/firefox_banner_ -# ||tinypaste.com/public/images/480.png (easylist.txt: 34700) -.tinypaste.com/public/images/480\.png -# ||tindleradio.net/banners/ (easylist.txt: 34698) -.tindleradio.net/banners/ -# ||timestalks.com/images/sponsor- (easylist.txt: 34697) -.timestalks.com/images/sponsor- -# ||timesofoman.com^*/banner/ (easylist.txt: 34696) -.timesofoman.com/.*/banner/ -# ||timesofoman.com/siteImages/MyBannerImages/ (easylist.txt: 34695) -.timesofoman.com/siteImages/MyBannerImages/ -# ||timesofoman.com/FrontInc/top.aspx (easylist.txt: 34694) -.timesofoman.com/FrontInc/top\.aspx -# ||timesnow.tv/googlehome.cms (easylist.txt: 34693) -.timesnow.tv/googlehome\.cms -# ||times.co.sz/files/banners/ (easylist.txt: 34692) -.times.co.sz/files/banners/ -# ||times-herald.com/pubfiles/ (easylist.txt: 34691) -.times-herald.com/pubfiles/ -# ||timeinc.net^*/recirc.js (easylist.txt: 34690) -.timeinc.net/.*/recirc\.js -# ||timeinc.net/*/i/oba-compliance.png (easylist.txt: 34689) -.timeinc.net/.*/i/oba-compliance\.png -# ||time4tv.com/tlv. (easylist.txt: 34688) -.time4tv.com/tlv\. -# ||tigerdroppings.com^*&adcode= (easylist.txt: 34687) -.tigerdroppings.com/.*&adcode= -# ||ticketnetwork.com/images/affiliates/ (easylist.txt: 34686) -.ticketnetwork.com/images/affiliates/ -# ||thunder106.com//wp-content/banners/ (easylist.txt: 34685) -# ||thisisanfield.com^*takeover (easylist.txt: 34684) -.thisisanfield.com/.*takeover -# ||thirdage.com^*_banner.php (easylist.txt: 34683) -.thirdage.com/.*_banner\.php -# ||thinkingwithportals.com^*-skyscraper.swf (easylist.txt: 34682) -.thinkingwithportals.com/.*-skyscraper\.swf -# ||thinkingwithportals.com/images/*-skyscraper. (easylist.txt: 34681) -.thinkingwithportals.com/images/.*-skyscraper\. -# ||thinkbroadband.com/uploads/banners/ (easylist.txt: 34680) -.thinkbroadband.com/uploads/banners/ -# ||theyeshivaworld.com/yw/ (easylist.txt: 34679) -.theyeshivaworld.com/yw/ -# ||thewindowsclub.com^*/banner_ (easylist.txt: 34678) -.thewindowsclub.com/.*/banner_ -# ||thewb.com/thewb/swf/tmz-adblock/ (easylist.txt: 34677) -.thewb.com/thewb/swf/tmz-adblock/ -# ||thevoicebw.com^*325x290.jpg (easylist.txt: 34676) -.thevoicebw.com/.*325x290\.jpg -# ||thevideo.me/js/popup.min.js (easylist.txt: 34675) -.thevideo.me/js/popup\.min\.js -# ||thevideo.me/js/jspc.js (easylist.txt: 34674) -.thevideo.me/js/jspc\.js -# ||thevideo.me/js/jsmpc.js (easylist.txt: 34673) -.thevideo.me/js/jsmpc\.js -# ||thevideo.me/creatives/ (easylist.txt: 34672) -.thevideo.me/creatives/ -# ||thevideo.me/cgi-bin/get_creatives.cgi? (easylist.txt: 34671) -.thevideo.me/cgi-bin/get_creatives\.cgi\? -# ||thetvdb.com/images/jriver_banner.png (easylist.txt: 34670) -.thetvdb.com/images/jriver_banner\.png -# ||thetvdb.com/images/frugal.gif (easylist.txt: 34669) -.thetvdb.com/images/frugal\.gif -# ||thetimes.co.uk/public/encounters/ (easylist.txt: 34668) -.thetimes.co.uk/public/encounters/ -# ||theticketmiami.com/Pics/listenlive/*-Right.jpg (easylist.txt: 34667) -.theticketmiami.com/Pics/listenlive/.*-Right\.jpg -# ||theticketmiami.com/Pics/listenlive/*-Left.jpg (easylist.txt: 34666) -.theticketmiami.com/Pics/listenlive/.*-Left\.jpg -# ||thesweetscience.com/images/banners/ (easylist.txt: 34665) -.thesweetscience.com/images/banners/ -# ||thesurvivalistblog.net^*-banner- (easylist.txt: 34664) -.thesurvivalistblog.net/.*-banner- -# ||thesundaily.my/sites/default/files/twinskyscrapers (easylist.txt: 34663) -.thesundaily.my/sites/default/files/twinskyscrapers -# ||thesuburban.com/universe/addsspace/ (easylist.txt: 34662) -.thesuburban.com/universe/addsspace/ -# ||thesuburban.com/universe/adds/ (easylist.txt: 34661) -.thesuburban.com/universe/adds/ -# ||thestkittsnevisobserver.com/images/banners/ (easylist.txt: 34660) -.thestkittsnevisobserver.com/images/banners/ -# ||thestandard.com.ph^*/banner/ (easylist.txt: 34659) -.thestandard.com.ph/.*/banner/ -# ||thestandard.com.hk/rotate_ (easylist.txt: 34658) -.thestandard.com.hk/rotate_ -# ||thestandard.com.hk/banners/ (easylist.txt: 34657) -.thestandard.com.hk/banners/ -# ||thessdreview.com^*/owc-new-gif1.gif (easylist.txt: 34656) -.thessdreview.com/.*/owc-new-gif1\.gif -# ||thessdreview.com^*/owc-full-banner.jpg (easylist.txt: 34655) -.thessdreview.com/.*/owc-full-banner\.jpg -# ||thessdreview.com^*/amazon-buy (easylist.txt: 34654) -.thessdreview.com/.*/amazon-buy -# ||thessdreview.com^*-bg.jpg (easylist.txt: 34653) -.thessdreview.com/.*-bg\.jpg -# ||thessdreview.com^*-bg-banner- (easylist.txt: 34652) -.thessdreview.com/.*-bg-banner- -# ||thessdreview.com/wp-content/uploads/*/930x64_ (easylist.txt: 34651) -.thessdreview.com/wp-content/uploads/.*/930x64_ -# ||thespiritsbusiness.com^*/Banner150 (easylist.txt: 34650) -.thespiritsbusiness.com/.*/Banner150 -# ||thesource.com/magicshave/ (easylist.txt: 34649) -.thesource.com/magicshave/ -# ||thesentinel.com^*/banners/ (easylist.txt: 34648) -.thesentinel.com/.*/banners/ -# ||therugbyforum.com/trf-images/sponsors/ (easylist.txt: 34647) -.therugbyforum.com/trf-images/sponsors/ -# ||theradiomagazine.co.uk/images/bionics.jpg (easylist.txt: 34646) -.theradiomagazine.co.uk/images/bionics\.jpg -# ||theradiomagazine.co.uk/banners/ (easylist.txt: 34645) -.theradiomagazine.co.uk/banners/ -# ||thepreparednessreview.com/wp-content/uploads/*_185x185.jpg (easylist.txt: 34644) -.thepreparednessreview.com/wp-content/uploads/.*_185x185\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*_175x175.jpg (easylist.txt: 34643) -.thepreparednessreview.com/wp-content/uploads/.*_175x175\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*/250x125- (easylist.txt: 34642) -.thepreparednessreview.com/wp-content/uploads/.*/250x125- -# ||theportugalnews.com/uploads/banner/ (easylist.txt: 34641) -.theportugalnews.com/uploads/banner/ -# ||theplanetweekly.com/images/banners/ (easylist.txt: 34640) -.theplanetweekly.com/images/banners/ -# ||thephuketnews.com/photo/banner/ (easylist.txt: 34639) -.thephuketnews.com/photo/banner/ -# ||thepeninsulaqatar.com^*/banners/ (easylist.txt: 34638) -.thepeninsulaqatar.com/.*/banners/ -# ||thepeak.fm/images/banners/ (easylist.txt: 34637) -.thepeak.fm/images/banners/ -# ||thepaper24-7.com/SiteImages/Tile/ (easylist.txt: 34636) -.thepaper24-7.com/SiteImages/Tile/ -# ||thepaper24-7.com/SiteImages/Banner/ (easylist.txt: 34635) -.thepaper24-7.com/SiteImages/Banner/ -# ||theorganicprepper.ca/images/banners/ (easylist.txt: 34634) -.theorganicprepper.ca/images/banners/ -# ||theonion.com/ads/ (easylist.txt: 34633) -.theonion.com/ads/ -# ||theolympian.com/static/images/weathersponsor/ (easylist.txt: 34632) -.theolympian.com/static/images/weathersponsor/ -# ||theoldie.co.uk/Banners/ (easylist.txt: 34631) -.theoldie.co.uk/Banners/ -# ||thenonleaguefootballpaper.com^*/Lovell-Soccer.jpg (easylist.txt: 34630) -.thenonleaguefootballpaper.com/.*/Lovell-Soccer\.jpg -# ||thenonleaguefootballpaper.com^*/J4K-new-range-pictures.jpg (easylist.txt: 34629) -.thenonleaguefootballpaper.com/.*/J4K-new-range-pictures\.jpg -# ||thenonleaguefootballpaper.com^*/image-non-league.jpeg (easylist.txt: 34628) -.thenonleaguefootballpaper.com/.*/image-non-league\.jpeg -# ||thenonleaguefootballpaper.com^*/Budweiser.jpg (easylist.txt: 34627) -.thenonleaguefootballpaper.com/.*/Budweiser\.jpg -# ||thenonleaguefootballpaper.com^*/ADIDAS_11PRO_WHITEOUT.jpg (easylist.txt: 34626) -.thenonleaguefootballpaper.com/.*/ADIDAS_11PRO_WHITEOUT\.jpg -# ||thenonleaguefootballpaper.com^*/140x140_ (easylist.txt: 34625) -.thenonleaguefootballpaper.com/.*/140x140_ -# ||thenonleaguefootballpaper.com^*-140x300- (easylist.txt: 34624) -.thenonleaguefootballpaper.com/.*-140x300- -# ||thenextweb.com^*/canvas.php?$xmlhttprequest (easylist.txt: 34623) -.thenextweb.com/.*/canvas\.php\? -# ||thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ (easylist.txt: 34622) -.thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ -# ||thenewjournalandguide.com/images/banners/ (easylist.txt: 34621) -.thenewjournalandguide.com/images/banners/ -# ||thenewage.co.za/Image/kingprice.gif (easylist.txt: 34620) -.thenewage.co.za/Image/kingprice\.gif -# ||thenationonlineng.net^*/banners/ (easylist.txt: 34619) -.thenationonlineng.net/.*/banners/ -# ||thenassauguardian.com/images/banners/ (easylist.txt: 34618) -.thenassauguardian.com/images/banners/ -# ||themittani.com/sites/*-skin (easylist.txt: 34617) -.themittani.com/sites/.*-skin -# ||themiscellany.org/images/banners/ (easylist.txt: 34616) -.themiscellany.org/images/banners/ -# ||themis.yahoo.com^ (easylist.txt: 34615) -.themis.yahoo.com -# ||themis-media.com/media/global/images/cskins/ (easylist.txt: 34614) -.themis-media.com/media/global/images/cskins/ -# ||theminiforum.co.uk/images/banners/ (easylist.txt: 34613) -.theminiforum.co.uk/images/banners/ -# ||themidweeksun.co.bw/images/banners/ (easylist.txt: 34612) -.themidweeksun.co.bw/images/banners/ -# ||themag.co.uk/assets/BV200x90TOPBANNER.png (easylist.txt: 34611) -.themag.co.uk/assets/BV200x90TOPBANNER\.png -# ||thelyricarchive.com/new/view/ (easylist.txt: 34610) -.thelyricarchive.com/new/view/ -# ||thelodownny.com/leslog/ads/ (easylist.txt: 34609) -.thelodownny.com/leslog/ads/ -# ||thelocal.com/scripts/fancybox/ (easylist.txt: 34608) -.thelocal.com/scripts/fancybox/ -# ||theliberianjournal.com/flash/banner (easylist.txt: 34607) -.theliberianjournal.com/flash/banner -# ||theleader.info/banner (easylist.txt: 34606) -.theleader.info/banner -# ||thelakewoodscoop.com^*banner (easylist.txt: 34605) -.thelakewoodscoop.com/.*banner -# ||thejournal.ie/media/hpto/ (easylist.txt: 34604) -.thejournal.ie/media/hpto/ -# ||thejointblog.com^*/dablab.gif (easylist.txt: 34603) -.thejointblog.com/.*/dablab\.gif -# ||thejointblog.com/wp-content/uploads/*-235x (easylist.txt: 34602) -.thejointblog.com/wp-content/uploads/.*-235x -# ||thejesperbay.com^ (easylist.txt: 34601) -.thejesperbay.com -# ||theispguide.com/topbanner.asp? (easylist.txt: 34600) -.theispguide.com/topbanner\.asp\? -# ||theispguide.com/premiumisp.html (easylist.txt: 34599) -.theispguide.com/premiumisp\.html -# ||theindependentbd.com^*/banner/ (easylist.txt: 34598) -.theindependentbd.com/.*/banner/ -# ||thehubsa.co.za^*/sponsor_ (easylist.txt: 34597) -.thehubsa.co.za/.*/sponsor_ -# ||thehindu.com/multimedia/*/sivananda_sponsorch_ (easylist.txt: 34596) -.thehindu.com/multimedia/.*/sivananda_sponsorch_ -# ||thehighstreetweb.com^*/banners/ (easylist.txt: 34595) -.thehighstreetweb.com/.*/banners/ -# ||thehealthcareblog.com/files/*/THCB-Validic-jpg-opt.jpg (easylist.txt: 34594) -.thehealthcareblog.com/files/.*/THCB-Validic-jpg-opt\.jpg -# ||thehealthcareblog.com/files/*/athena-300.jpg (easylist.txt: 34593) -.thehealthcareblog.com/files/.*/athena-300\.jpg -# ||thehealthcareblog.com/files/*/American-Resident-Project-Logo- (easylist.txt: 34592) -.thehealthcareblog.com/files/.*/American-Resident-Project-Logo- -# ||thefrontierpost.com/media/banner/ (easylist.txt: 34591) -.thefrontierpost.com/media/banner/ -# ||thefile.me^*.php?*zoneid (easylist.txt: 34590) -.thefile.me/.*\.php\?.*zoneid -# ||theenglishgarden.co.uk^*/bannerImage. (easylist.txt: 34589) -.theenglishgarden.co.uk/.*/bannerImage\. -# ||theedinburghreporter.co.uk/hmbanner/ (easylist.txt: 34588) -.theedinburghreporter.co.uk/hmbanner/ -# ||thedomainstat.com/filemanager/userfiles/banners/ (easylist.txt: 34587) -.thedomainstat.com/filemanager/userfiles/banners/ -# ||thedirectory.co.zw/banners/ (easylist.txt: 34586) -.thedirectory.co.zw/banners/ -# ||theday.com/assets/images/sponsorlogos/ (easylist.txt: 34585) -.theday.com/assets/images/sponsorlogos/ -# ||thedailystar.net^*/scbbd.gif (easylist.txt: 34584) -.thedailystar.net/.*/scbbd\.gif -# ||thedailystar.net^*/footer-sticky-add/ (easylist.txt: 34583) -.thedailystar.net/.*/footer-sticky-add/ -# ||thedailystar.net^*/aritel-logo.jpg (easylist.txt: 34582) -.thedailystar.net/.*/aritel-logo\.jpg -# ||thedailystar.net^*/Animation-200-X-30.gif (easylist.txt: 34581) -.thedailystar.net/.*/Animation-200-X-30\.gif -# ||thedailystar.net^*/400-x-120-pixel.jpg (easylist.txt: 34580) -.thedailystar.net/.*/400-x-120-pixel\.jpg -# ||thedailysheeple.com/images/banners/ (easylist.txt: 34579) -.thedailysheeple.com/images/banners/ -# ||thedailypaul.com/images/amzn- (easylist.txt: 34578) -.thedailypaul.com/images/amzn- -# ||thedailymeal.net^*/featured_partners/ (easylist.txt: 34577) -.thedailymeal.net/.*/featured_partners/ -# ||thedailymeal.com^*_sponsoredby.png (easylist.txt: 34576) -.thedailymeal.com/.*_sponsoredby\.png -# ||thedailymash.co.uk/templates/mashtastic/gutters/ (easylist.txt: 34575) -.thedailymash.co.uk/templates/mashtastic/gutters/ -# ||thedailyherald.com/images/banners/ (easylist.txt: 34574) -.thedailyherald.com/images/banners/ -# ||thecsuite.co.uk^*/banners/ (easylist.txt: 34573) -.thecsuite.co.uk/.*/banners/ -# ||thecorrsmisc.com/msb_banner.jpg (easylist.txt: 34572) -.thecorrsmisc.com/msb_banner\.jpg -# ||thecorrsmisc.com/brokenthread.jpg (easylist.txt: 34571) -.thecorrsmisc.com/brokenthread\.jpg -# ||thecorrsmisc.com/10feet_banner.gif (easylist.txt: 34570) -.thecorrsmisc.com/10feet_banner\.gif -# ||thecnj.com/images/hotel-banner.jpg (easylist.txt: 34569) -.thecnj.com/images/hotel-banner\.jpg -# ||thecitizen.co.tz^*/banners/ (easylist.txt: 34568) -.thecitizen.co.tz/.*/banners/ -# ||thechive.files.wordpress.com^*-wallpaper- (easylist.txt: 34567) -.thechive.files.wordpress.com/.*-wallpaper- -# ||thecharlottepost.com/cache/sql/fba/ (easylist.txt: 34566) -.thecharlottepost.com/cache/sql/fba/ -# ||thecenturion.co.za^*/banners/ (easylist.txt: 34565) -.thecenturion.co.za/.*/banners/ -# ||thecatholicuniverse.com^*-banner- (easylist.txt: 34564) -.thecatholicuniverse.com/.*-banner- -# ||thecatholicuniverse.com^*-advert- (easylist.txt: 34563) -.thecatholicuniverse.com/.*-advert- -# ||thecatholicuniverse.com^*-ad. (easylist.txt: 34562) -.thecatholicuniverse.com/.*-ad\. -# ||thebusinessdesk.com/assets/_files/banners/ (easylist.txt: 34561) -.thebusinessdesk.com/assets/_files/banners/ -# ||theburningplatform.com/wp-content/uploads/*_180x150.gif (easylist.txt: 34560) -.theburningplatform.com/wp-content/uploads/.*_180x150\.gif -# ||thebulls.co.za^*/sponsors/ (easylist.txt: 34559) -.thebulls.co.za/.*/sponsors/ -# ||thebull.com.au/admin/uploads/banners/ (easylist.txt: 34558) -.thebull.com.au/admin/uploads/banners/ -# ||theblaze.com^*_background_ (easylist.txt: 34557) -.theblaze.com/.*_background_ -# ||theblaze.com^*-interstitial- (easylist.txt: 34556) -.theblaze.com/.*-interstitial- -# ||theblaze.com^*-backgroundwide- (easylist.txt: 34555) -.theblaze.com/.*-backgroundwide- -# ||theblaze.com^*-background2- (easylist.txt: 34554) -.theblaze.com/.*-background2- -# ||theblaze.com^*-background- (easylist.txt: 34553) -.theblaze.com/.*-background- -# ||thebeat99.com/cmsadmin/banner/ (easylist.txt: 34552) -.thebeat99.com/cmsadmin/banner/ -# ||thebay.co.uk/banners/ (easylist.txt: 34551) -.thebay.co.uk/banners/ -# ||theattractionforums.com/images/rbsbanners/ (easylist.txt: 34550) -.theattractionforums.com/images/rbsbanners/ -# ||theasiantoday.com/image/banners/ (easylist.txt: 34549) -.theasiantoday.com/image/banners/ -# ||theartnewspaper.com/aads/ (easylist.txt: 34548) -.theartnewspaper.com/aads/ -# ||theaquarian.com^*/banners/ (easylist.txt: 34547) -.theaquarian.com/.*/banners/ -# ||theafricachannel.com^*/promos/ (easylist.txt: 34546) -.theafricachannel.com/.*/promos/ -# ||theactivetimes.net^*/featured_partners/ (easylist.txt: 34545) -.theactivetimes.net/.*/featured_partners/ -# ||the-numbers.com^*/allposters/ (easylist.txt: 34544) -.the-numbers.com/.*/allposters/ -# ||thaivisa.com/promotions/banners/ (easylist.txt: 34543) -.thaivisa.com/promotions/banners/ -# ||tfd.com^*/grammarly/ (easylist.txt: 34542) -.tfd.com/.*/grammarly/ -# ||textpattern.com/images/117.gif (easylist.txt: 34541) -.textpattern.com/images/117\.gif -# ||testseek.com/price_pricegrabber_ (easylist.txt: 34540) -.testseek.com/price_pricegrabber_ -# ||terafile.co/i/banners/ (easylist.txt: 34539) -.terafile.co/i/banners/ -# ||tentonhammer.com^*/takeovers/ (easylist.txt: 34538) -.tentonhammer.com/.*/takeovers/ -# ||tennisworldusa.org/banners/ (easylist.txt: 34537) -.tennisworldusa.org/banners/ -# ||tennischannel.com/tc-button-gif.gif (easylist.txt: 34536) -.tennischannel.com/tc-button-gif\.gif -# ||tennischannel.com/prud.jpg (easylist.txt: 34535) -.tennischannel.com/prud\.jpg -# ||tenmanga.com/files/js/site_skin.js (easylist.txt: 34534) -.tenmanga.com/files/js/site_skin\.js -# ||tenmanga.com/files/js/manga_$subdocument (easylist.txt: 34533) -.tenmanga.com/files/js/manga_ -# ||ten-tenths.com/sidebar.html (easylist.txt: 34532) -.ten-tenths.com/sidebar\.html -# ||templatesbox.com^*/banners/ (easylist.txt: 34531) -.templatesbox.com/.*/banners/ -# ||telegraphindia.com^*/hoabanner. (easylist.txt: 34530) -.telegraphindia.com/.*/hoabanner\. -# ||telegraphindia.com^*/banners/ (easylist.txt: 34529) -.telegraphindia.com/.*/banners/ -# ||telegraph.co.uk/sponsored/ (easylist.txt: 34528) -.telegraph.co.uk/sponsored/ -# ||telegraph.co.uk/international/$subdocument (easylist.txt: 34527) -.telegraph.co.uk/international/ -# ||telecomtiger.com^*_640x480_ (easylist.txt: 34526) -.telecomtiger.com/.*_640x480_ -# ||telecomtiger.com^*_250x250_ (easylist.txt: 34525) -.telecomtiger.com/.*_250x250_ -# ||tehrantimes.com/images/banners/ (easylist.txt: 34524) -.tehrantimes.com/images/banners/ -# ||teesupport.com/wp-content/themes/ts-blog/images/cp- (easylist.txt: 34523) -.teesupport.com/wp-content/themes/ts-blog/images/cp- -# ||teesoft.info/images/uniblue.png (easylist.txt: 34522) -.teesoft.info/images/uniblue\.png -# ||techtree.com^*/jquery.catfish.js (easylist.txt: 34521) -.techtree.com/.*/jquery\.catfish\.js -# ||techtarget.com^*/leaderboard.html (easylist.txt: 34520) -.techtarget.com/.*/leaderboard\.html -# ||techsupportforum.com^*/banners/ (easylist.txt: 34519) -.techsupportforum.com/.*/banners/ -# ||techradar.com^*/img/*_takeover_ (easylist.txt: 34518) -.techradar.com/.*/img/.*_takeover_ -# ||techpowerup.com/images/bnnrs/ (easylist.txt: 34517) -.techpowerup.com/images/bnnrs/ -# ||technomag.co.zw^*/TakeOverCampaign. (easylist.txt: 34516) -.technomag.co.zw/.*/TakeOverCampaign\. -# ||technewsworld.com/images/sda/ (easylist.txt: 34515) -.technewsworld.com/images/sda/ -# ||technewsdaily.com/crime-stats/local_crime_stats.php (easylist.txt: 34514) -.technewsdaily.com/crime-stats/local_crime_stats\.php -# ||techhive.com/ads/ (easylist.txt: 34513) -.techhive.com/ads/ -# ||techexams.net/banners/ (easylist.txt: 34512) -.techexams.net/banners/ -# ||techcentral.co.za^*/wallpaper- (easylist.txt: 34511) -.techcentral.co.za/.*/wallpaper- -# ||techcentral.co.za^*/background-manager/ (easylist.txt: 34510) -.techcentral.co.za/.*/background-manager/ -# ||techcentral.co.za^*-wallpaper- (easylist.txt: 34509) -.techcentral.co.za/.*-wallpaper- -# ||teamfourstar.com/img/918thefan.jpg (easylist.txt: 34508) -.teamfourstar.com/img/918thefan\.jpg -# ||tdfimg.com/go/*.html (easylist.txt: 34507) -.tdfimg.com/go/.*\.html -# ||tbib.org/kona/ (easylist.txt: 34505) -.tbib.org/kona/ -# ||taxsutra.com^*/banner/ (easylist.txt: 34504) -.taxsutra.com/.*/banner/ -# ||taxidrivermovie.com/style/sk-p.js (easylist.txt: 34503) -.taxidrivermovie.com/style/sk-p\.js -# ||tastro.org/x/ads*.php (easylist.txt: 34502) -.tastro.org/x/ads.*\.php -# ||targetedtopic.com^ (easylist.txt: 34501) -.targetedtopic.com -# ||targetedinfo.com^ (easylist.txt: 34500) -.targetedinfo.com -# ||tanzanite.infomine.com^ (easylist.txt: 34499) -.tanzanite.infomine.com -# ||tampermonkey.net^*.*.$subdocument (easylist.txt: 34498) -.tampermonkey.net/.*\..*\. -# ||tampermonkey.net/bner/ (easylist.txt: 34497) -.tampermonkey.net/bner/ -# ||talksport.co.uk^*/ts_takeover/ (easylist.txt: 34496) -.talksport.co.uk/.*/ts_takeover/ -# ||talkradioeurope.net/images/banners/ (easylist.txt: 34495) -.talkradioeurope.net/images/banners/ -# ||talkradioeurope.com/images/banners/ (easylist.txt: 34494) -.talkradioeurope.com/images/banners/ -# ||talkphotography.co.uk/images/externallogos/banners/ (easylist.txt: 34493) -.talkphotography.co.uk/images/externallogos/banners/ -# ||talkgold.com/bans/ (easylist.txt: 34492) -.talkgold.com/bans/ -# ||talkers.com/images/banners/ (easylist.txt: 34491) -.talkers.com/images/banners/ -# ||talkers.com/imagebase/ (easylist.txt: 34490) -.talkers.com/imagebase/ -# ||take40.com/images/takeover/ (easylist.txt: 34489) -.take40.com/images/takeover/ -# ||take40.com/css/takeover.css (easylist.txt: 34488) -.take40.com/css/takeover\.css -# ||taiwannews.com.tw/etn/images/banner_ (easylist.txt: 34487) -.taiwannews.com.tw/etn/images/banner_ -# ||taipeitimes.com/js/gad.js? (easylist.txt: 34486) -.taipeitimes.com/js/gad\.js\? -# ||tabloidmedia.co.za/images/signs2.swf (easylist.txt: 34485) -.tabloidmedia.co.za/images/signs2\.swf -# ||tabla.com.sg/SIA.jpg (easylist.txt: 34484) -.tabla.com.sg/SIA\.jpg -# ||sythe.org/clientscript/agold.png (easylist.txt: 34483) -.sythe.org/clientscript/agold\.png -# ||sythe.org/bnrs/ (easylist.txt: 34482) -.sythe.org/bnrs/ -# ||systemexplorer.net/sessg.php (easylist.txt: 34481) -.systemexplorer.net/sessg\.php -# ||sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/$image (easylist.txt: 34480) -.sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/ -# ||sxc.hu/img/banner (easylist.txt: 34479) -.sxc.hu/img/banner -# ||swoknews.com/images/banners/ (easylist.txt: 34478) -.swoknews.com/images/banners/ -# ||swimnewslibrary.com^*_960x120.jpg (easylist.txt: 34477) -.swimnewslibrary.com/.*_960x120\.jpg -# ||swimnews.com^*/banner_ (easylist.txt: 34476) -.swimnews.com/.*/banner_ -# ||swiftco.net/banner/ (easylist.txt: 34475) -.swiftco.net/banner/ -# ||sweepsadvantage.com/336x230-2.php (easylist.txt: 34474) -.sweepsadvantage.com/336x230-2\.php -# ||swedishwire.com/images/banners/ (easylist.txt: 34473) -.swedishwire.com/images/banners/ -# ||swampbuggy.com/media/images/banners/ (easylist.txt: 34472) -.swampbuggy.com/media/images/banners/ -# ||swagmp3.com/cdn-cgi/pe/ (easylist.txt: 34471) -.swagmp3.com/cdn-cgi/pe/ -# ||surfthechannel.com/promo/ (easylist.txt: 34470) -.surfthechannel.com/promo/ -# ||superplatyna.com/automater.swf (easylist.txt: 34469) -.superplatyna.com/automater\.swf -# ||supermonitoring.com/images/banners/ (easylist.txt: 34468) -.supermonitoring.com/images/banners/ -# ||supermarket.co.za/images/advetising/ (easylist.txt: 34467) -.supermarket.co.za/images/advetising/ -# ||superbike-news.co.uk/absolutebm/banners/ (easylist.txt: 34466) -.superbike-news.co.uk/absolutebm/banners/ -# ||suntimes.com^*/banners/ (easylist.txt: 34465) -.suntimes.com/.*/banners/ -# ||sunshineradio.ie/images/banners/ (easylist.txt: 34464) -.sunshineradio.ie/images/banners/ -# ||sunriseradio.com/js/rbanners.js (easylist.txt: 34463) -.sunriseradio.com/js/rbanners\.js -# ||sun-fm.com/resources/creative/ (easylist.txt: 34462) -.sun-fm.com/resources/creative/ -# ||sulekha.com^*/sulekhabanner.aspx (easylist.txt: 34461) -.sulekha.com/.*/sulekhabanner\.aspx -# ||sulekha.com^*/bannerhelper.html (easylist.txt: 34460) -.sulekha.com/.*/bannerhelper\.html -# ||succeed.co.za^*/banner_ (easylist.txt: 34459) -.succeed.co.za/.*/banner_ -# ||subs4free.com^*/wh4_s4f_$script (easylist.txt: 34458) -.subs4free.com/.*/wh4_s4f_ -# ||submarinecablemap.com^*-sponsored.png (easylist.txt: 34457) -.submarinecablemap.com/.*-sponsored\.png -# ||stv.tv/img/player/stvplayer-sponsorstrip- (easylist.txt: 34456) -.stv.tv/img/player/stvplayer-sponsorstrip- -# ||stuff.tv/client/skinning/ (easylist.txt: 34455) -.stuff.tv/client/skinning/ -# ||stuff.co.nz/stuff/widgets/lifedirect/ (easylist.txt: 34453) -.stuff.co.nz/stuff/widgets/lifedirect/ -# ||stuff.co.nz/stuff/tom/mags-widget/ (easylist.txt: 34452) -.stuff.co.nz/stuff/tom/mags-widget/ -# ||stuff.co.nz/stuff/misc/flying-flowers/ (easylist.txt: 34451) -.stuff.co.nz/stuff/misc/flying-flowers/ -# ||stuff.co.nz/stuff/*banner (easylist.txt: 34450) -.stuff.co.nz/stuff/.*banner -# ||stuff.co.nz/interactives/stuff-bayleys/ (easylist.txt: 34449) -.stuff.co.nz/interactives/stuff-bayleys/ -# ||stuff.co.nz/files/NZBoatM4Gwidget.html (easylist.txt: 34448) -.stuff.co.nz/files/NZBoatM4Gwidget\.html -# ||stuff.co.nz/clientdev/production/iframes/ (easylist.txt: 34447) -.stuff.co.nz/clientdev/production/iframes/ -# ||stuff.co.nz/1361239022/107/8323107.jpg (easylist.txt: 34446) -.stuff.co.nz/1361239022/107/8323107\.jpg -# ||stuff.co.nz/1319769787/395/5871395.jpg (easylist.txt: 34445) -.stuff.co.nz/1319769787/395/5871395\.jpg -# ||student-jobs.co.uk/banner. (easylist.txt: 34444) -.student-jobs.co.uk/banner\. -# ||streams.tv/js/slidingbanner.js (easylist.txt: 34443) -.streams.tv/js/slidingbanner\.js -# ||streams.tv/js/pu.js (easylist.txt: 34442) -.streams.tv/js/pu\.js -# ||streams.tv/js/bn5.js (easylist.txt: 34441) -.streams.tv/js/bn5\.js -# ||streamguys.com^*/amazon.png (easylist.txt: 34440) -.streamguys.com/.*/amazon\.png -# ||streamcloud.eu/deliver.php (easylist.txt: 34439) -.streamcloud.eu/deliver\.php -# ||stream2watch.me/yield.html (easylist.txt: 34438) -.stream2watch.me/yield\.html -# ||stream2watch.me/Los_Br.png (easylist.txt: 34437) -.stream2watch.me/Los_Br\.png -# ||stream2watch.me/images/hd1.png (easylist.txt: 34436) -.stream2watch.me/images/hd1\.png -# ||stream2watch.me/ed (easylist.txt: 34435) -.stream2watch.me/ed -# ||stream2watch.me/eadt.php (easylist.txt: 34434) -.stream2watch.me/eadt\.php -# ||stream2watch.me/eadb.php (easylist.txt: 34433) -.stream2watch.me/eadb\.php -# ||stream2watch.me/chat1.html (easylist.txt: 34432) -.stream2watch.me/chat1\.html -# ||stream2watch.me/ad10.html (easylist.txt: 34431) -.stream2watch.me/ad10\.html -# ||stream2watch.me/ad.html (easylist.txt: 34430) -.stream2watch.me/ad\.html -# ||stream2watch.me/_$subdocument (easylist.txt: 34429) -.stream2watch.me/_ -# ||stream2watch.me/900yahoo.html (easylist.txt: 34428) -.stream2watch.me/900yahoo\.html -# ||stream2watch.me/900rev.html (easylist.txt: 34427) -.stream2watch.me/900rev\.html -# ||stream2watch.me/600pick.png (easylist.txt: 34426) -.stream2watch.me/600pick\.png -# ||stream2watch.co/images/hd1.png (easylist.txt: 34425) -.stream2watch.co/images/hd1\.png -# ||stream2watch.co/frames/ (easylist.txt: 34424) -.stream2watch.co/frames/ -# ||stream.heavenmedia.net^ (easylist.txt: 34423) -.stream.heavenmedia.net -# ||strategypage.com^*_banner (easylist.txt: 34422) -.strategypage.com/.*_banner -# ||storewidget.pcauthority.com.au^ (easylist.txt: 34421) -.storewidget.pcauthority.com.au -# ||stopstream.com/ads/ (easylist.txt: 34420) -.stopstream.com/ads/ -# ||stopforumspam.com/img/snelserver.swf (easylist.txt: 34419) -.stopforumspam.com/img/snelserver\.swf -# ||stockhouse.com^*-300x75.gif (easylist.txt: 34418) -.stockhouse.com/.*-300x75\.gif -# ||stlyrics.com^*_st.js (easylist.txt: 34417) -.stlyrics.com/.*_st\.js -# ||stlyrics.com^*_az.js (easylist.txt: 34416) -.stlyrics.com/.*_az\.js -# ||stltoday.com^*_sponsor.gif (easylist.txt: 34415) -.stltoday.com/.*_sponsor\.gif -# ||stjohntradewindsnews.com/images/banners/ (easylist.txt: 34414) -.stjohntradewindsnews.com/images/banners/ -# ||sticker.yadro.ru/ad/ (easylist.txt: 34413) -.sticker.yadro.ru/ad/ -# ||steroid.com/dsoct09.swf (easylist.txt: 34412) -.steroid.com/dsoct09\.swf -# ||steroid.com/banner/ (easylist.txt: 34411) -.steroid.com/banner/ -# ||sternfannetwork.com/forum/images/banners/ (easylist.txt: 34410) -.sternfannetwork.com/forum/images/banners/ -# ||steambuy.com/steambuy.gif (easylist.txt: 34409) -.steambuy.com/steambuy\.gif -# ||steamanalyst.com/a/www/ (easylist.txt: 34408) -.steamanalyst.com/a/www/ -# ||staticworld.net/images/*_pcwskin_ (easylist.txt: 34407) -.staticworld.net/images/.*_pcwskin_ -# ||staticneo.com/neoassets/iframes/leaderboard_bottom. (easylist.txt: 34406) -.staticneo.com/neoassets/iframes/leaderboard_bottom\. -# ||static.nfl.com^*-background- (easylist.txt: 34404) -.static.nfl.com/.*-background- -# ||static.hltv.org//images/gofastbg.png (easylist.txt: 34403) -# ||static.hd-trailers.net/js/javascript_*.js| (easylist.txt: 34402) -.static.hd-trailers.net/js/javascript_.*\.js$ -# ||static-economist.com^*/timekeeper-by-rolex-medium.png (easylist.txt: 34401) -.static-economist.com/.*/timekeeper-by-rolex-medium\.png -# ||startxchange.com/bnr.php (easylist.txt: 34400) -.startxchange.com/bnr\.php -# ||star883.org^*/sponsors. (easylist.txt: 34399) -.star883.org/.*/sponsors\. -# ||standardmedia.co.ke/flash/ (easylist.txt: 34398) -.standardmedia.co.ke/flash/ -# ||standard.net/sites/default/files/images/wallpapers/ (easylist.txt: 34397) -.standard.net/sites/default/files/images/wallpapers/ -# ||stagnitomedia.com/view-banner- (easylist.txt: 34396) -.stagnitomedia.com/view-banner- -# ||stad.com/googlefoot2.php? (easylist.txt: 34395) -.stad.com/googlefoot2\.php\? -# ||st701.com/stomp/banners/ (easylist.txt: 34394) -.st701.com/stomp/banners/ -# ||ssl-images-amazon.com/images/*/browser-scripts/da- (easylist.txt: 34393) -.ssl-images-amazon.com/images/.*/browser-scripts/da- -# ||srv.thespacereporter.com^ (easylist.txt: 34392) -.srv.thespacereporter.com -# ||squadedit.com/img/peanuts/ (easylist.txt: 34391) -.squadedit.com/img/peanuts/ -# ||spycss.com/images/hostgator.gif (easylist.txt: 34389) -.spycss.com/images/hostgator\.gif -# ||spreaker.net/spots/ (easylist.txt: 34388) -.spreaker.net/spots/ -# ||spotflux.com/service/partner.php (easylist.txt: 34387) -.spotflux.com/service/partner\.php -# ||sportcategory.org/pu/ (easylist.txt: 34386) -.sportcategory.org/pu/ -# ||sportcategory.com/ads/ (easylist.txt: 34385) -.sportcategory.com/ads/ -# ||sporcle.com/adn/yak.php? (easylist.txt: 34384) -.sporcle.com/adn/yak\.php\? -# ||sponsors.webosroundup.com^ (easylist.txt: 34383) -.sponsors.webosroundup.com -# ||sponsors.s2ki.com^ (easylist.txt: 34382) -.sponsors.s2ki.com -# ||spicegrenada.com/images/banners/ (easylist.txt: 34381) -.spicegrenada.com/images/banners/ -# ||speroforum.com/images/sponsor_ (easylist.txt: 34380) -.speroforum.com/images/sponsor_ -# ||speedvideo.net/img/playerFk.gif (easylist.txt: 34379) -.speedvideo.net/img/playerFk\.gif -# ||speedvid.net/ad.htm (easylist.txt: 34378) -.speedvid.net/ad\.htm -# ||speedtv.com^*/tissot-logo.png (easylist.txt: 34377) -.speedtv.com/.*/tissot-logo\.png -# ||speedtv.com/js/interstitial.js (easylist.txt: 34376) -.speedtv.com/js/interstitial\.js -# ||speedtv.com.edgesuite.net/img/monthly/takeovers/ (easylist.txt: 34375) -.speedtv.com.edgesuite.net/img/monthly/takeovers/ -# ||speedtest.net/flash/60speedify$object-subrequest (easylist.txt: 34374) -.speedtest.net/flash/60speedify -# ||speedtest.net/flash/59rvvrpc-$object-subrequest (easylist.txt: 34373) -.speedtest.net/flash/59rvvrpc- -# ||spartoo.eu/footer_tag_iframe_ (easylist.txt: 34371) -.spartoo.eu/footer_tag_iframe_ -# ||spaceweather.com/abdfeeter/$image (easylist.txt: 34370) -.spaceweather.com/abdfeeter/ -# ||space.com/promo/ (easylist.txt: 34369) -.space.com/promo/ -# ||sowetanlive.co.za/banners/ (easylist.txt: 34368) -.sowetanlive.co.za/banners/ -# ||southafricab2b.co.za/banners/ (easylist.txt: 34367) -.southafricab2b.co.za/banners/ -# ||sourceforge.net/images/ban/ (easylist.txt: 34366) -.sourceforge.net/images/ban/ -# ||sourcefed.com/wp-content/uploads/*/netflix4.jpg (easylist.txt: 34365) -.sourcefed.com/wp-content/uploads/.*/netflix4\.jpg -# ||soundtracklyrics.net^*_az.js (easylist.txt: 34364) -.soundtracklyrics.net/.*_az\.js -# ||soundspheremag.com/images/banners/ (easylist.txt: 34363) -.soundspheremag.com/images/banners/ -# ||soundcloud.com/promoted/ (easylist.txt: 34362) -.soundcloud.com/promoted/ -# ||soundcloud.com/audio-ad? (easylist.txt: 34361) -.soundcloud.com/audio-ad\? -# ||sorcerers.net/images/aff/ (easylist.txt: 34360) -.sorcerers.net/images/aff/ -# ||sootoday.com/uploads/banners/ (easylist.txt: 34359) -.sootoday.com/uploads/banners/ -# ||songspk.name/textlinks/ (easylist.txt: 34358) -.songspk.name/textlinks/ -# ||songspk.name/imagepk.gif (easylist.txt: 34357) -.songspk.name/imagepk\.gif -# ||songspk.link/textlinks/ (easylist.txt: 34355) -.songspk.link/textlinks/ -# ||songs.pk/textlinks/ (easylist.txt: 34354) -.songs.pk/textlinks/ -# ||someecards.com^*/images/skin/ (easylist.txt: 34353) -.someecards.com/.*/images/skin/ -# ||solvater.com/images/hd.jpg (easylist.txt: 34352) -.solvater.com/images/hd\.jpg -# ||solomonstarnews.com/images/banners/ (easylist.txt: 34351) -.solomonstarnews.com/images/banners/ -# ||soldierx.com/system/files/images/sx-mini-1.jpg (easylist.txt: 34350) -.soldierx.com/system/files/images/sx-mini-1\.jpg -# ||softpedia.com/*_square. (easylist.txt: 34349) -.softpedia.com/.*_square\. -# ||softpedia.com/*_rect. (easylist.txt: 34348) -.softpedia.com/.*_rect\. -# ||softpedia.com/*_longrect. (easylist.txt: 34347) -.softpedia.com/.*_longrect\. -# ||softpedia-static.com/images/afg/ (easylist.txt: 34345) -.softpedia-static.com/images/afg/ -# ||softpedia-static.com/images/aff/ (easylist.txt: 34344) -.softpedia-static.com/images/aff/ -# ||softpedia-static.com/images/*.png?v (easylist.txt: 34343) -.softpedia-static.com/images/.*\.png\?v -# ||softpedia-static.com/images/*.jpg?v (easylist.txt: 34342) -.softpedia-static.com/images/.*\.jpg\?v -# ||softonic.com/specials_leaderboard/ (easylist.txt: 34341) -.softonic.com/specials_leaderboard/ -# ||softcab.com/google.php? (easylist.txt: 34340) -.softcab.com/google\.php\? -# ||socsa.org.za/images/banners/ (easylist.txt: 34339) -.socsa.org.za/images/banners/ -# ||sockshare.com^*_728.php (easylist.txt: 34338) -.sockshare.com/.*_728\.php -# ||sockshare.com^*.php?*title$subdocument (easylist.txt: 34337) -.sockshare.com/.*\.php\?.*title -# ||sockshare.com/rev/ (easylist.txt: 34336) -.sockshare.com/rev/ -# ||sockshare.com/moo.php (easylist.txt: 34335) -.sockshare.com/moo\.php -# ||sockshare.com/*.php?embed*type=$subdocument (easylist.txt: 34334) -.sockshare.com/.*\.php\?embed.*type= -# ||socialstreamingplayer.crystalmedianetworks.com//async/banner/ (easylist.txt: 34333) -# ||soccerway.com/img/betting/ (easylist.txt: 34332) -.soccerway.com/img/betting/ -# ||soccerway.com/buttons/120x90_ (easylist.txt: 34331) -.soccerway.com/buttons/120x90_ -# ||soccervista.com/sporting.gif (easylist.txt: 34330) -.soccervista.com/sporting\.gif -# ||soccervista.com/bonus.html (easylist.txt: 34329) -.soccervista.com/bonus\.html -# ||soccervista.com/bahforgif.gif (easylist.txt: 34328) -.soccervista.com/bahforgif\.gif -# ||soccerlens.com/files1/ (easylist.txt: 34327) -.soccerlens.com/files1/ -# ||snopes.com^*/tribalbox.asp (easylist.txt: 34326) -.snopes.com/.*/tribalbox\.asp -# ||snopes.com^*/casalesky.asp (easylist.txt: 34325) -.snopes.com/.*/casalesky\.asp -# ||snopes.com^*/casalebox.asp (easylist.txt: 34324) -.snopes.com/.*/casalebox\.asp -# ||snopes.com^*/casalebanner.asp (easylist.txt: 34323) -.snopes.com/.*/casalebanner\.asp -# ||snopes.com/common/include/$subdocument (easylist.txt: 34322) -.snopes.com/common/include/ -# ||snimg.com/image/sponsors/ (easylist.txt: 34321) -.snimg.com/image/sponsors/ -# ||smwcentral.net/html/$image (easylist.txt: 34320) -.smwcentral.net/html/ -# ||smotrisport.com/ads/ (easylist.txt: 34319) -.smotrisport.com/ads/ -# ||smoothjazznetwork.com/images/buyicon.jpg (easylist.txt: 34318) -.smoothjazznetwork.com/images/buyicon\.jpg -# ||smn-news.com/images/flash/ (easylist.txt: 34317) -.smn-news.com/images/flash/ -# ||smn-news.com/images/banners/ (easylist.txt: 34316) -.smn-news.com/images/banners/ -# ||smile904.fm/images/banners/ (easylist.txt: 34315) -.smile904.fm/images/banners/ -# ||smh.com.au/images/promo/ (easylist.txt: 34314) -.smh.com.au/images/promo/ -# ||smh.com.au/compareandsave/ (easylist.txt: 34313) -.smh.com.au/compareandsave/ -# ||smashingapps.com/banner/ (easylist.txt: 34312) -.smashingapps.com/banner/ -# ||smartname.com/scripts/google_afd_v2.js (easylist.txt: 34311) -.smartname.com/scripts/google_afd_v2\.js -# ||smartmoney.net^*-sponsor- (easylist.txt: 34310) -.smartmoney.net/.*-sponsor- -# ||smartearningsecrets.com^*/FameThemes.png (easylist.txt: 34309) -.smartearningsecrets.com/.*/FameThemes\.png -# ||smartcompany.com.au/images/stories/sponsored-posts/ (easylist.txt: 34308) -.smartcompany.com.au/images/stories/sponsored-posts/ -# ||slyck.com/pics/*304x83_ (easylist.txt: 34307) -.slyck.com/pics/.*304x83_ -# ||slickvid.com/js/fun2.js (easylist.txt: 34306) -.slickvid.com/js/fun2\.js -# ||slickvid.com/js/fun.js (easylist.txt: 34305) -.slickvid.com/js/fun\.js -# ||slayradio.org/images/c64audio.com.gif (easylist.txt: 34304) -.slayradio.org/images/c64audio\.com\.gif -# ||slashgear.com/static/banners/ (easylist.txt: 34303) -.slashgear.com/static/banners/ -# ||slader.com/amazon-modal/ (easylist.txt: 34302) -.slader.com/amazon-modal/ -# ||slacker.com^*/getspot/?spotid= (easylist.txt: 34301) -.slacker.com/.*/getspot/\?spotid= -# ||slacker.com^*/ads.js (easylist.txt: 34300) -.slacker.com/.*/ads\.js -# ||slacker.com^*/adnetworks.swf (easylist.txt: 34299) -.slacker.com/.*/adnetworks\.swf -# ||slacker.com/wsv1/getspot/?$object-subrequest (easylist.txt: 34298) -.slacker.com/wsv1/getspot/\? -# ||skyvalleychronicle.com/999/images/ban (easylist.txt: 34297) -.skyvalleychronicle.com/999/images/ban -# ||skysports.com/images/skybet.png (easylist.txt: 34296) -.skysports.com/images/skybet\.png -# ||skynews.com.au/elements/img/sponsor/ (easylist.txt: 34295) -.skynews.com.au/elements/img/sponsor/ -# ||skilouise.com/images/sponsors/ (easylist.txt: 34294) -.skilouise.com/images/sponsors/ -# ||sk-gaming.com/www/skdelivery/ (easylist.txt: 34293) -.sk-gaming.com/www/skdelivery/ -# ||sk-gaming.com/image/takeover_ (easylist.txt: 34292) -.sk-gaming.com/image/takeover_ -# ||sk-gaming.com/image/pts/ (easylist.txt: 34291) -.sk-gaming.com/image/pts/ -# ||sk-gaming.com/image/acersocialw.gif (easylist.txt: 34290) -.sk-gaming.com/image/acersocialw\.gif -# ||siteslike.com/js/fpa.js (easylist.txt: 34289) -.siteslike.com/js/fpa\.js -# ||siteslike.com/images/celeb (easylist.txt: 34288) -.siteslike.com/images/celeb -# ||sitesfrog.com/images/banner/ (easylist.txt: 34287) -.sitesfrog.com/images/banner/ -# ||sitedata.info/doctor/ (easylist.txt: 34286) -.sitedata.info/doctor/ -# ||sisters-magazine.com^*/Banners/ (easylist.txt: 34285) -.sisters-magazine.com/.*/Banners/ -# ||silverdoctors.com^*/Silver-Shield-2015.jpg (easylist.txt: 34284) -.silverdoctors.com/.*/Silver-Shield-2015\.jpg -# ||siliconrepublic.com/fs/img/partners/ (easylist.txt: 34283) -.siliconrepublic.com/fs/img/partners/ -# ||sigalert.com/getunit.asp?$subdocument (easylist.txt: 34282) -.sigalert.com/getunit\.asp\? -# ||sify.com^*/gads_ (easylist.txt: 34281) -.sify.com/.*/gads_ -# ||sify.com/images/games/gadvt/ (easylist.txt: 34280) -.sify.com/images/games/gadvt/ -# ||sickipedia.org/static/images/banners/ (easylist.txt: 34279) -.sickipedia.org/static/images/banners/ -# ||sicilianelmondo.com/banner/ (easylist.txt: 34278) -.sicilianelmondo.com/banner/ -# ||siberiantimes.com/upload/banners/ (easylist.txt: 34277) -.siberiantimes.com/upload/banners/ -# ||shtfplan.com/images/banners/ (easylist.txt: 34276) -.shtfplan.com/images/banners/ -# ||shroomery.org/images/www.shroomery.org.please.png (easylist.txt: 34275) -.shroomery.org/images/www\.shroomery\.org\.please\.png -# ||shroomery.org/images/shroomery.please.png (easylist.txt: 34274) -.shroomery.org/images/shroomery\.please\.png -# ||shroomery.org/bnr/ (easylist.txt: 34273) -.shroomery.org/bnr/ -# ||shroomery.org/bimg/ (easylist.txt: 34272) -.shroomery.org/bimg/ -# ||showstreet.com/banner. (easylist.txt: 34271) -.showstreet.com/banner\. -# ||showsport-tv.com/images/xtreamfile.jpg (easylist.txt: 34270) -.showsport-tv.com/images/xtreamfile\.jpg -# ||showbusinessweekly.com/imgs/hed/ (easylist.txt: 34269) -.showbusinessweekly.com/imgs/hed/ -# ||show-links.tv/layer.php (easylist.txt: 34268) -.show-links.tv/layer\.php -# ||shoutmeloud.com^*/hostgator- (easylist.txt: 34267) -.shoutmeloud.com/.*/hostgator- -# ||shortlist.com^*-takeover. (easylist.txt: 34266) -.shortlist.com/.*-takeover\. -# ||shortlist.com/resource/cache/*skin (easylist.txt: 34265) -.shortlist.com/resource/cache/.*skin -# ||shortcuts.search.yahoo.com^*&callback=yahoo.shortcuts.utils.setdittoadcontents& (easylist.txt: 34264) -.shortcuts.search.yahoo.com/.*&callback=yahoo\.shortcuts\.utils\.setdittoadcontents& -# ||shopwiki.com/banner_iframe/ (easylist.txt: 34263) -.shopwiki.com/banner_iframe/ -# ||shops.tgdaily.com^*&widget= (easylist.txt: 34262) -.shops.tgdaily.com/.*&widget= -# ||shoppingpartners2.futurenet.com^ (easylist.txt: 34261) -.shoppingpartners2.futurenet.com -# ||shopping.stylelist.com/widget? (easylist.txt: 34260) -.shopping.stylelist.com/widget\? -# ||shop.sportsmole.co.uk/pages/deeplink/ (easylist.txt: 34259) -.shop.sportsmole.co.uk/pages/deeplink/ -# ||shop.com/cc.class/dfp? (easylist.txt: 34258) -.shop.com/cc\.class/dfp\? -# ||shodanhq.com/images/s/acehackware-obscured.jpg (easylist.txt: 34257) -.shodanhq.com/images/s/acehackware-obscured\.jpg -# ||sherdog.com/index/load-banner? (easylist.txt: 34256) -.sherdog.com/index/load-banner\? -# ||shazam.com^*/stores/ (easylist.txt: 34255) -.shazam.com/.*/stores/ -# ||sharkscope.com/images/verts/$image (easylist.txt: 34254) -.sharkscope.com/images/verts/ -# ||sharetera.com/promo.php? (easylist.txt: 34253) -.sharetera.com/promo\.php\? -# ||sharetera.com/images/icon_download.png (easylist.txt: 34252) -.sharetera.com/images/icon_download\.png -# ||sharesix.com/a/images/watch-bnr.gif (easylist.txt: 34251) -.sharesix.com/a/images/watch-bnr\.gif -# ||sharephile.com/js/pw.js (easylist.txt: 34250) -.sharephile.com/js/pw\.js -# ||sharebeast.com/topbar.js (easylist.txt: 34249) -.sharebeast.com/topbar\.js -# ||share-links.biz^*/hs.gif (easylist.txt: 34248) -.share-links.biz/.*/hs\.gif -# ||share-links.biz^*/hisp.gif (easylist.txt: 34247) -.share-links.biz/.*/hisp\.gif -# ||share-links.biz/get/cmm/ (easylist.txt: 34246) -.share-links.biz/get/cmm/ -# ||shanghaiexpat.com^*/wallpaper_ (easylist.txt: 34245) -.shanghaiexpat.com/.*/wallpaper_ -# ||shanghaidaily.com/include/bettertraffic.asp (easylist.txt: 34244) -.shanghaidaily.com/include/bettertraffic\.asp -# ||shadowpool.info/images/banner- (easylist.txt: 34243) -.shadowpool.info/images/banner- -# ||sfx.ms/AppInsights-$script (easylist.txt: 34242) -.sfx.ms/AppInsights- -# ||sfltimes.com/images/banners/ (easylist.txt: 34241) -.sfltimes.com/images/banners/ -# ||sfbaytimes.com/img-cont/banners (easylist.txt: 34240) -.sfbaytimes.com/img-cont/banners -# ||sexmummy.com/avnadsbanner. (easylist.txt: 34239) -.sexmummy.com/avnadsbanner\. -# ||sermonaudio.com/images/sponsors/ (easylist.txt: 34238) -.sermonaudio.com/images/sponsors/ -# ||serialzz.us/ad.js (easylist.txt: 34237) -.serialzz.us/ad\.js -# ||serials.ws^*/logo.gif (easylist.txt: 34236) -.serials.ws/.*/logo\.gif -# ||serial.sw.cracks.me.uk/img/logo.gif (easylist.txt: 34235) -.serial.sw.cracks.me.uk/img/logo\.gif -# ||sensongs.com/nfls/ (easylist.txt: 34234) -.sensongs.com/nfls/ -# ||sendspace.com^*?zone= (easylist.txt: 34233) -.sendspace.com/.*\?zone= -# ||sendspace.com/images/shutter.png (easylist.txt: 34232) -.sendspace.com/images/shutter\.png -# ||sendspace.com/defaults/framer.html?z= (easylist.txt: 34231) -.sendspace.com/defaults/framer\.html\?z= -# ||segmentnext.com/javascripts/interstitial.client.js (easylist.txt: 34230) -.segmentnext.com/javascripts/interstitial\.client\.js -# ||seeingwithsound.com/noad.gif (easylist.txt: 34229) -.seeingwithsound.com/noad\.gif -# ||seedboxes.cc/images/seedad.jpg (easylist.txt: 34228) -.seedboxes.cc/images/seedad\.jpg -# ||sedoparking.com/registrar/dopark.js (easylist.txt: 34227) -.sedoparking.com/registrar/dopark\.js -# ||sedoparking.com/jspartner/ (easylist.txt: 34226) -.sedoparking.com/jspartner/ -# ||sedoparking.com/images/js_preloader.gif (easylist.txt: 34225) -.sedoparking.com/images/js_preloader\.gif -# ||securitywonks.net/promotions/ (easylist.txt: 34223) -.securitywonks.net/promotions/ -# ||securitymattersmag.com/scripts/popup.js (easylist.txt: 34222) -.securitymattersmag.com/scripts/popup\.js -# ||secureupload.eu/js/poad.js (easylist.txt: 34221) -.secureupload.eu/js/poad\.js -# ||secureupload.eu/gfx/freedl.png (easylist.txt: 34220) -.secureupload.eu/gfx/freedl\.png -# ||secureupload.eu/gfx/dlbtn.png (easylist.txt: 34219) -.secureupload.eu/gfx/dlbtn\.png -# ||sectools.org/shared/images/p/$image (easylist.txt: 34218) -.sectools.org/shared/images/p/ -# ||seclists.org/shared/images/p/$image (easylist.txt: 34217) -.seclists.org/shared/images/p/ -# ||sebar.thand.info^ (easylist.txt: 34216) -.sebar.thand.info -# ||seatguru.com/deals? (easylist.txt: 34215) -.seatguru.com/deals\? -# ||searchtempest.com/clhimages/aocbanner.jpg (easylist.txt: 34214) -.searchtempest.com/clhimages/aocbanner\.jpg -# ||searchignited.com^ (easylist.txt: 34213) -.searchignited.com -# ||searchenginejournal.com^*/sponsored- (easylist.txt: 34212) -.searchenginejournal.com/.*/sponsored- -# ||searchenginejournal.com^*/sej-bg-takeover/ (easylist.txt: 34211) -.searchenginejournal.com/.*/sej-bg-takeover/ -# ||searchenginejournal.com^*-takeover- (easylist.txt: 34210) -.searchenginejournal.com/.*-takeover- -# ||search.triadcars.news-record.com/autos/widgets/featuredautos.php (easylist.txt: 34209) -.search.triadcars.news-record.com/autos/widgets/featuredautos\.php -# ||search.triadcareers.news-record.com/jobs/search/results?*&isfeatured=y& (easylist.txt: 34208) -.search.triadcareers.news-record.com/jobs/search/results\?.*&isfeatured=y& -# ||search.ch/htmlbanner.html (easylist.txt: 34207) -.search.ch/htmlbanner\.html -# ||search.ch/acs/ (easylist.txt: 34206) -.search.ch/acs/ -# ||search-torrent.com/images/videox/ (easylist.txt: 34205) -.search-torrent.com/images/videox/ -# ||sdancelive.com/images/banners/ (easylist.txt: 34204) -.sdancelive.com/images/banners/ -# ||scriptmafia.org/banner.gif (easylist.txt: 34203) -.scriptmafia.org/banner\.gif -# ||scriptcopy.com/tpl/phplb/search.jpg (easylist.txt: 34202) -.scriptcopy.com/tpl/phplb/search\.jpg -# ||scribol.com/broadspring.js (easylist.txt: 34201) -.scribol.com/broadspring\.js -# ||screenlist.ru/porevo.js (easylist.txt: 34200) -.screenlist.ru/porevo\.js -# ||screenlist.ru/dodopo.js (easylist.txt: 34199) -.screenlist.ru/dodopo\.js -# ||screencrave.com/show/ (easylist.txt: 34198) -.screencrave.com/show/ -# ||screenafrica.com/jquery.jcarousel.min.js (easylist.txt: 34197) -.screenafrica.com/jquery\.jcarousel\.min\.js -# ||screen4u.net/templates/banner.html (easylist.txt: 34196) -.screen4u.net/templates/banner\.html -# ||scoot.co.uk/delivery.php (easylist.txt: 34195) -.scoot.co.uk/delivery\.php -# ||scoop.co.nz/xl?c$subdocument (easylist.txt: 34194) -.scoop.co.nz/xl\?c -# ||scmagazine.com.au/Utils/SkinCSS.ashx?skinID= (easylist.txt: 34193) -.scmagazine.com.au/Utils/SkinCSS\.ashx\?skinID= -# ||scientopia.org/public_html/clr_lympholyte_banner.gif (easylist.txt: 34192) -.scientopia.org/public_html/clr_lympholyte_banner\.gif -# ||sceper.eu/wp-content/banners.min.js (easylist.txt: 34190) -.sceper.eu/wp-content/banners\.min\.js -# ||scenicreflections.com/dhtmlpopup/ (easylist.txt: 34189) -.scenicreflections.com/dhtmlpopup/ -# ||sbnation.com/campaigns_images/ (easylist.txt: 34188) -.sbnation.com/campaigns_images/ -# ||saysuncle.com^*ad.jpg (easylist.txt: 34187) -.saysuncle.com/.*ad\.jpg -# ||sayellow.com/Clients/Banners/ (easylist.txt: 34186) -.sayellow.com/Clients/Banners/ -# ||sawlive.tv/ad (easylist.txt: 34185) -.sawlive.tv/ad -# ||saveondish.com/banner3.jpg (easylist.txt: 34184) -.saveondish.com/banner3\.jpg -# ||saveondish.com/banner2.jpg (easylist.txt: 34183) -.saveondish.com/banner2\.jpg -# ||savefrom.net/img/a1d/ (easylist.txt: 34182) -.savefrom.net/img/a1d/ -# ||satopsites.com^*/banners/ (easylist.txt: 34181) -.satopsites.com/.*/banners/ -# ||satnews.com/images/MSMPromoSubSky.jpg (easylist.txt: 34180) -.satnews.com/images/MSMPromoSubSky\.jpg -# ||satnews.com/images/MITEQ_sky.jpg (easylist.txt: 34179) -.satnews.com/images/MITEQ_sky\.jpg -# ||satellites.co.uk/images/sponsors/ (easylist.txt: 34178) -.satellites.co.uk/images/sponsors/ -# ||satelliteguys.us/pulsepoint_ (easylist.txt: 34177) -.satelliteguys.us/pulsepoint_ -# ||satelliteguys.us/burst_ (easylist.txt: 34176) -.satelliteguys.us/burst_ -# ||sat24.com/bannerdetails.aspx? (easylist.txt: 34175) -.sat24.com/bannerdetails\.aspx\? -# ||sarugbymag.co.za^*-wallpaper2. (easylist.txt: 34174) -.sarugbymag.co.za/.*-wallpaper2\. -# ||sarasotatalkradio.com^*-200x200.jpg (easylist.txt: 34173) -.sarasotatalkradio.com/.*-200x200\.jpg -# ||sapeople.com/wp-content/uploads/wp-banners/ (easylist.txt: 34172) -.sapeople.com/wp-content/uploads/wp-banners/ -# ||samsung.com/ph/nextisnow/files/javascript.js (easylist.txt: 34171) -.samsung.com/ph/nextisnow/files/javascript\.js -# ||samoatimes.co.nz^*/banner468x60/ (easylist.txt: 34170) -.samoatimes.co.nz/.*/banner468x60/ -# ||samoaobserver.ws^*/banner/ (easylist.txt: 34169) -.samoaobserver.ws/.*/banner/ -# ||sameip.org/images/froghost.gif (easylist.txt: 34168) -.sameip.org/images/froghost\.gif -# ||salfordonline.com/sponsors2/ (easylist.txt: 34167) -.salfordonline.com/sponsors2/ -# ||salfordonline.com/sponsors/ (easylist.txt: 34166) -.salfordonline.com/sponsors/ -# ||sail-world.com/rotate/ (easylist.txt: 34165) -.sail-world.com/rotate/ -# ||sagoodnews.co.za/templates/ubuntu-deals/ (easylist.txt: 34164) -.sagoodnews.co.za/templates/ubuntu-deals/ -# ||safelinks.eu/open.js (easylist.txt: 34163) -.safelinks.eu/open\.js -# ||saf.org/wp-content/uploads/*/women_guns192x50.png (easylist.txt: 34162) -.saf.org/wp-content/uploads/.*/women_guns192x50\.png -# ||saf.org/wp-content/uploads/*/theGunMagbanner.png (easylist.txt: 34161) -.saf.org/wp-content/uploads/.*/theGunMagbanner\.png -# ||sacommercialpropnews.co.za/files/banners/ (easylist.txt: 34160) -.sacommercialpropnews.co.za/files/banners/ -# ||sacbee.com/static/dealsaver/ (easylist.txt: 34159) -.sacbee.com/static/dealsaver/ -# ||saabsunited.com/wp-content/uploads/werbung- (easylist.txt: 34158) -.saabsunited.com/wp-content/uploads/werbung- -# ||saabsunited.com/wp-content/uploads/USACANADA.jpg (easylist.txt: 34157) -.saabsunited.com/wp-content/uploads/USACANADA\.jpg -# ||saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC.gif (easylist.txt: 34156) -.saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC\.gif -# ||saabsunited.com/wp-content/uploads/rbm21.jpg (easylist.txt: 34155) -.saabsunited.com/wp-content/uploads/rbm21\.jpg -# ||saabsunited.com/wp-content/uploads/ban- (easylist.txt: 34154) -.saabsunited.com/wp-content/uploads/ban- -# ||saabsunited.com/wp-content/uploads/180x460_ (easylist.txt: 34153) -.saabsunited.com/wp-content/uploads/180x460_ -# ||saabsunited.com/wp-content/uploads/*_banner_ (easylist.txt: 34152) -.saabsunited.com/wp-content/uploads/.*_banner_ -# ||saabsunited.com/wp-content/uploads/*-banner. (easylist.txt: 34151) -.saabsunited.com/wp-content/uploads/.*-banner\. -# ||saabsunited.com/wp-content/uploads/*-banner- (easylist.txt: 34150) -.saabsunited.com/wp-content/uploads/.*-banner- -# ||s.yimg.com^*/audience/ (easylist.txt: 34149) -.s.yimg.com/.*/audience/ -# ||s.imwx.com^*/wx-a21-plugthis.js (easylist.txt: 34148) -.s.imwx.com/.*/wx-a21-plugthis\.js -# ||rustourismnews.com/images/banners/ (easylist.txt: 34147) -.rustourismnews.com/images/banners/ -# ||russianireland.com/images/banners/ (easylist.txt: 34146) -.russianireland.com/images/banners/ -# ||runt-of-the-web.com/wrap1.jpg (easylist.txt: 34145) -.runt-of-the-web.com/wrap1\.jpg -# ||rugbyweek.com^*/sponsors/ (easylist.txt: 34144) -.rugbyweek.com/.*/sponsors/ -# ||rtcc.org/systems/sponsors/ (easylist.txt: 34142) -.rtcc.org/systems/sponsors/ -# ||rt.com/static/img/banners/ (easylist.txt: 34141) -.rt.com/static/img/banners/ -# ||rt.com/banner/ (easylist.txt: 34140) -.rt.com/banner/ -# ||rss2search.com/delivery/ (easylist.txt: 34139) -.rss2search.com/delivery/ -# ||rsbuddy.com/campaign/ (easylist.txt: 34138) -.rsbuddy.com/campaign/ -# ||rpt.anchorfree.net^ (easylist.txt: 34137) -.rpt.anchorfree.net -# ||rpgwatch.com^*/banner/ (easylist.txt: 34136) -.rpgwatch.com/.*/banner/ -# ||routesonline.com/banner/ (easylist.txt: 34135) -.routesonline.com/banner/ -# ||routes-news.com/images/banners/ (easylist.txt: 34134) -.routes-news.com/images/banners/ -# ||routerpasswords.com/routers.jpg (easylist.txt: 34133) -.routerpasswords.com/routers\.jpg -# ||rough-polished.com/upload/bx/ (easylist.txt: 34132) -.rough-polished.com/upload/bx/ -# ||rotoworld.com^*&sponsor=$subdocument (easylist.txt: 34131) -.rotoworld.com/.*&sponsor= -# ||roseindia.net^*/banners/ (easylist.txt: 34130) -.roseindia.net/.*/banners/ -# ||rootsweb.com/js/o*.js (easylist.txt: 34129) -.rootsweb.com/js/o.*\.js -# ||romhustler.net/square.js (easylist.txt: 34128) -.romhustler.net/square\.js -# ||rom-freaks.net/popup.php (easylist.txt: 34127) -.rom-freaks.net/popup\.php -# ||rollingstone.co.za/images/banners/ (easylist.txt: 34126) -.rollingstone.co.za/images/banners/ -# ||rok.com.com/rok-get? (easylist.txt: 34125) -.rok.com.com/rok-get\? -# ||rojadirecta.ge^*/pu.js (easylist.txt: 34124) -.rojadirecta.ge/.*/pu\.js -# ||roia.com^ (easylist.txt: 34123) -.roia.com -# ||rodfile.com/images/esr.gif (easylist.txt: 34122) -.rodfile.com/images/esr\.gif -# ||rocvideo.tv/pu/$subdocument (easylist.txt: 34121) -.rocvideo.tv/pu/ -# ||rockthebells.net/images/bot_banner_ (easylist.txt: 34120) -.rockthebells.net/images/bot_banner_ -# ||rockthebells.net/images/banners/ (easylist.txt: 34119) -.rockthebells.net/images/banners/ -# ||rocktelevision.com^*_banner_ (easylist.txt: 34118) -.rocktelevision.com/.*_banner_ -# ||rocksound.tv/images/uploads/*-rocksound-1920x1000_ (easylist.txt: 34117) -.rocksound.tv/images/uploads/.*-rocksound-1920x1000_ -# ||rockettheme.com/aff/ (easylist.txt: 34116) -.rockettheme.com/aff/ -# ||robhasawebsite.com^*/shop-amazon. (easylist.txt: 34115) -.robhasawebsite.com/.*/shop-amazon\. -# ||robhasawebsite.com^*/amazon- (easylist.txt: 34114) -.robhasawebsite.com/.*/amazon- -# ||rlsbb.com/wp-content/uploads/smoke.jpg (easylist.txt: 34113) -.rlsbb.com/wp-content/uploads/smoke\.jpg -# ||rlsbb.com/wp-content/uploads/izilol.gif (easylist.txt: 34112) -.rlsbb.com/wp-content/uploads/izilol\.gif -# ||rislivetv.com/ad*.php (easylist.txt: 34111) -.rislivetv.com/ad.*\.php -# ||ringostrack.com^*/amazon-buy.gif (easylist.txt: 34110) -.ringostrack.com/.*/amazon-buy\.gif -# ||rightsidenews.com/images/banners/ (easylist.txt: 34109) -.rightsidenews.com/images/banners/ -# ||riderfans.com/other/ (easylist.txt: 34108) -.riderfans.com/other/ -# ||richmedia.yimg.com^ (easylist.txt: 34107) -.richmedia.yimg.com -# ||richardroeper.com/assets/banner/ (easylist.txt: 34106) -.richardroeper.com/assets/banner/ -# ||rghost.ru/download/a/*/banner_download_ (easylist.txt: 34105) -.rghost.ru/download/a/.*/banner_download_ -# ||rfu.com/js/jquery.jcarousel.js (easylist.txt: 34104) -.rfu.com/js/jquery\.jcarousel\.js -# ||revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2.gif (easylist.txt: 34103) -.revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2\.gif -# ||reviewcentre.com/cinergy-adv.php (easylist.txt: 34102) -.reviewcentre.com/cinergy-adv\.php -# ||reuters.com/reuters_gpt_bootstrap*.js (easylist.txt: 34101) -.reuters.com/reuters_gpt_bootstrap.*\.js -# ||reuters.com/reuters_bootstrap.js (easylist.txt: 34100) -.reuters.com/reuters_bootstrap\.js -# ||retrevo.com^*/pcwframe.jsp? (easylist.txt: 34099) -.retrevo.com/.*/pcwframe\.jsp\? -# ||retrevo.com/m/google?q= (easylist.txt: 34098) -.retrevo.com/m/google\?q= -# ||replacementdocs.com^*/popup.js (easylist.txt: 34097) -.replacementdocs.com/.*/popup\.js -# ||relink.us/js/ibunkerslide.js (easylist.txt: 34096) -.relink.us/js/ibunkerslide\.js -# ||releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40.jpg (easylist.txt: 34095) -.releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40\.jpg -# ||releaselog.net/468.htm (easylist.txt: 34094) -.releaselog.net/468\.htm -# ||rejournal.com^*/images/homepage/ (easylist.txt: 34093) -.rejournal.com/.*/images/homepage/ -# ||rejournal.com/users/blinks/ (easylist.txt: 34092) -.rejournal.com/users/blinks/ -# ||rejournal.com/images/banners/ (easylist.txt: 34091) -.rejournal.com/images/banners/ -# ||regnow.img.digitalriver.com/vendor/37587/ud_box$third-party (easylist.txt: 34090) -.regnow.img.digitalriver.com/vendor/37587/ud_box -# ||regmender.com^*/banner336x280. (easylist.txt: 34089) -.regmender.com/.*/banner336x280\. -# ||reelzchannel.com^*-skin- (easylist.txt: 34088) -.reelzchannel.com/.*-skin- -# ||redvase.bravenet.com^ (easylist.txt: 34087) -.redvase.bravenet.com -# ||redpepper.org.uk/ad- (easylist.txt: 34086) -.redpepper.org.uk/ad- -# ||rednationonline.ca/Portals/0/derbystar_leaderboard.jpg (easylist.txt: 34085) -.rednationonline.ca/Portals/0/derbystar_leaderboard\.jpg -# ||rediff.com/worldrediff/pix/$subdocument (easylist.txt: 34084) -.rediff.com/worldrediff/pix/ -# ||reddit.com^*_sponsor.png? (easylist.txt: 34083) -.reddit.com/.*_sponsor\.png\? -# ||red.bayimg.net^ (easylist.txt: 34082) -.red.bayimg.net -# ||reason.org/UserFiles/web-fin1.gif (easylist.txt: 34081) -.reason.org/UserFiles/web-fin1\.gif -# ||realitytvworld.com/includes/rtvw-jscript.js (easylist.txt: 34080) -.realitytvworld.com/includes/rtvw-jscript\.js -# ||realitytvworld.com/burst.js (easylist.txt: 34079) -.realitytvworld.com/burst\.js -# ||readingeagle.com/lib/dailysponser.js (easylist.txt: 34078) -.readingeagle.com/lib/dailysponser\.js -# ||rc.feedsportal.com/r/*/rc.img (easylist.txt: 34077) -.rc.feedsportal.com/r/.*/rc\.img -# ||raysindex.com/wp-content/uploads/*/dolmansept2012flash.swf (easylist.txt: 34076) -.raysindex.com/wp-content/uploads/.*/dolmansept2012flash\.swf -# ||rawstory.com^*/ads/ (easylist.txt: 34075) -.rawstory.com/.*/ads/ -# ||rawstory.com^*.php?code=bottom (easylist.txt: 34074) -.rawstory.com/.*\.php\?code=bottom -# ||rawstory.com/givememyrawjuggler.php (easylist.txt: 34073) -.rawstory.com/givememyrawjuggler\.php -# ||rawstory.com/givememyrawgfpdirect.php? (easylist.txt: 34072) -.rawstory.com/givememyrawgfpdirect\.php\? -# ||rawstory.com/givememyrawgfp.php? (easylist.txt: 34071) -.rawstory.com/givememyrawgfp\.php\? -# ||ravchat.com/img/reversephone.gif (easylist.txt: 34070) -.ravchat.com/img/reversephone\.gif -# ||ratio-magazine.com/images/banners/ (easylist.txt: 34069) -.ratio-magazine.com/images/banners/ -# ||rapidvideo.tv/images/pl.jpg (easylist.txt: 34068) -.rapidvideo.tv/images/pl\.jpg -# ||rapidvideo.org/images/pl_box_rapid.jpg (easylist.txt: 34067) -.rapidvideo.org/images/pl_box_rapid\.jpg -# ||rapidtvnews.com^*BannerAd. (easylist.txt: 34066) -.rapidtvnews.com/.*BannerAd\. -# ||rapidshare.com/promo/$image (easylist.txt: 34065) -.rapidshare.com/promo/ -# ||rapidsafe.de/eislogo.gif (easylist.txt: 34064) -.rapidsafe.de/eislogo\.gif -# ||rapidlibrary.com/banner_*.png (easylist.txt: 34063) -.rapidlibrary.com/banner_.*\.png -# ||rapidlibrary.com/baner*.png (easylist.txt: 34062) -.rapidlibrary.com/baner.*\.png -# ||rapidgator.net/images/pics/button.png (easylist.txt: 34061) -.rapidgator.net/images/pics/button\.png -# ||rapidgator.net/images/banners/ (easylist.txt: 34060) -.rapidgator.net/images/banners/ -# ||rapidgamez.com/images/ (easylist.txt: 34059) -.rapidgamez.com/images/ -# ||rapidfiledownload.com^*/btn-input-download.png (easylist.txt: 34058) -.rapidfiledownload.com/.*/btn-input-download\.png -# ||rainbowpages.lk/images/banners/ (easylist.txt: 34057) -.rainbowpages.lk/images/banners/ -# ||ragezone.com/output.php/ (easylist.txt: 34056) -.ragezone.com/output\.php/ -# ||ragezone.com/index.php/$subdocument (easylist.txt: 34055) -.ragezone.com/index\.php/ -# ||radiozindagi.com/sponsors/ (easylist.txt: 34054) -.radiozindagi.com/sponsors/ -# ||radiowavesforum.com/rw/radioapp.gif (easylist.txt: 34053) -.radiowavesforum.com/rw/radioapp\.gif -# ||radiowave.com.na/images/banners/ (easylist.txt: 34052) -.radiowave.com.na/images/banners/ -# ||radiotoday.co.uk/a/ (easylist.txt: 34051) -.radiotoday.co.uk/a/ -# ||radioreference.com^*_banner_ (easylist.txt: 34050) -.radioreference.com/.*_banner_ -# ||radioreference.com/i/p4/tp/smPortalBanner.gif (easylist.txt: 34049) -.radioreference.com/i/p4/tp/smPortalBanner\.gif -# ||radioloyalty.com/newPlayer/loadbanner.html? (easylist.txt: 34048) -.radioloyalty.com/newPlayer/loadbanner\.html\? -# ||radioinfo.com^*/575x112- (easylist.txt: 34047) -.radioinfo.com/.*/575x112- -# ||radioinfo.com/270x270/ (easylist.txt: 34046) -.radioinfo.com/270x270/ -# ||radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg.swf (easylist.txt: 34045) -.radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg\.swf -# ||radioasiafm.com^*-300x250. (easylist.txt: 34044) -.radioasiafm.com/.*-300x250\. -# ||radio786.co.za/images/banners/ (easylist.txt: 34043) -.radio786.co.za/images/banners/ -# ||radio4fm.com/promotion/ (easylist.txt: 34042) -.radio4fm.com/promotion/ -# ||radio4fm.com/images/background/ (easylist.txt: 34041) -.radio4fm.com/images/background/ -# ||radio.com/rotatable? (easylist.txt: 34040) -.radio.com/rotatable\? -# ||radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr.swf? (easylist.txt: 34039) -.radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr\.swf\? -# ||rad.msn.com^ (easylist.txt: 34038) -.rad.msn.com -# ||rad.microsoft.com^ (easylist.txt: 34037) -.rad.microsoft.com -# ||racinguk.com/images/site/foot_ (easylist.txt: 34034) -.racinguk.com/images/site/foot_ -# ||racingpost.com^*_607x30.2.0.gif (easylist.txt: 34033) -.racingpost.com/.*_607x30\.2\.0\.gif -# ||racingpost.com/ads/ (easylist.txt: 34032) -.racingpost.com/ads/ -# ||race-dezert.com^*/sponsor- (easylist.txt: 34031) -.race-dezert.com/.*/sponsor- -# ||race-dezert.com/images/wrap- (easylist.txt: 34030) -.race-dezert.com/images/wrap- -# ||quoteland.com/images/banner2.swf (easylist.txt: 34029) -.quoteland.com/images/banner2\.swf -# ||quicksilverscreen.com/img/moviesforfree.jpg (easylist.txt: 34028) -.quicksilverscreen.com/img/moviesforfree\.jpg -# ||quickpwn.com^$subdocument (easylist.txt: 34027) -.quickpwn.com -# ||quickmeme.com/media/rostile (easylist.txt: 34026) -.quickmeme.com/media/rostile -# ||queenshare.com/popx.js (easylist.txt: 34025) -.queenshare.com/popx\.js -# ||qualityhealth.com^*/banner.jsp? (easylist.txt: 34024) -.qualityhealth.com/.*/banner\.jsp\? -# ||qrz.com/pix/*.gif (easylist.txt: 34023) -.qrz.com/pix/.*\.gif -# ||qiksilver.net^*/banners/ (easylist.txt: 34022) -.qiksilver.net/.*/banners/ -# ||qatar-tribune.com/images/banners/ (easylist.txt: 34021) -.qatar-tribune.com/images/banners/ -# ||q1075.com/images/banners/ (easylist.txt: 34020) -.q1075.com/images/banners/ -# ||pv-tech.org/images/suntech_m2fbblew.png (easylist.txt: 34019) -.pv-tech.org/images/suntech_m2fbblew\.png -# ||pv-tech.org/images/footer_logos/ (easylist.txt: 34018) -.pv-tech.org/images/footer_logos/ -# ||putlocker.mn^*/stream-hd.gif (easylist.txt: 34017) -.putlocker.mn/.*/stream-hd\.gif -# ||putlocker.mn^*/download.gif (easylist.txt: 34016) -.putlocker.mn/.*/download\.gif -# ||putlocker.is/images/banner (easylist.txt: 34015) -.putlocker.is/images/banner -# ||pushsquare.com/wp-content/themes/pushsquare/skins/ (easylist.txt: 34014) -.pushsquare.com/wp-content/themes/pushsquare/skins/ -# ||punksbusted.com^*/clanwarz-portal.jpg (easylist.txt: 34013) -.punksbusted.com/.*/clanwarz-portal\.jpg -# ||punksbusted.com/images/ventrilo/ (easylist.txt: 34012) -.punksbusted.com/images/ventrilo/ -# ||punchng.com^*/wp-banners/ (easylist.txt: 34011) -.punchng.com/.*/wp-banners/ -# ||punch.cdn.ng^*/wp-banners/ (easylist.txt: 34010) -.punch.cdn.ng/.*/wp-banners/ -# ||pumasrugbyunion.com/images/sponsors/ (easylist.txt: 34009) -.pumasrugbyunion.com/images/sponsors/ -# ||pulsetv.com/banner/ (easylist.txt: 34008) -.pulsetv.com/banner/ -# ||publicservice.co.uk^*/spons_ (easylist.txt: 34007) -.publicservice.co.uk/.*/spons_ -# ||publicradio.org^*/banners/ (easylist.txt: 34006) -.publicradio.org/.*/banners/ -# ||publicityupdate.co.za/temp/banner_ (easylist.txt: 34005) -.publicityupdate.co.za/temp/banner_ -# ||publichd.eu/images/directdownload.png (easylist.txt: 34004) -.publichd.eu/images/directdownload\.png -# ||publichd.eu/images/direct.download.ico (easylist.txt: 34003) -.publichd.eu/images/direct\.download\.ico -# ||ptf.com/js/rc_banner.js (easylist.txt: 34002) -.ptf.com/js/rc_banner\.js -# ||ptf.com/js/ptf_rc_*.js (easylist.txt: 34001) -.ptf.com/js/ptf_rc_.*\.js -# ||ptf.com/js/fdm_banner.js (easylist.txt: 34000) -.ptf.com/js/fdm_banner\.js -# ||ptf.com/fdm_frame_ (easylist.txt: 33999) -.ptf.com/fdm_frame_ -# ||psgroove.com/images/*.jpg| (easylist.txt: 33998) -.psgroove.com/images/.*\.jpg$ -# ||ps3crunch.net/forum/images/gamers/ (easylist.txt: 33997) -.ps3crunch.net/forum/images/gamers/ -# ||proxycape.com/blah.js (easylist.txt: 33996) -.proxycape.com/blah\.js -# ||proxy.org/ah.html (easylist.txt: 33995) -.proxy.org/ah\.html -# ||proxy.org/af.html (easylist.txt: 33994) -.proxy.org/af\.html -# ||proxy-list.org/img/isellsite.gif (easylist.txt: 33993) -.proxy-list.org/img/isellsite\.gif -# ||propertyeu.info/peu_storage_banners/ (easylist.txt: 33992) -.propertyeu.info/peu_storage_banners/ -# ||propakistani.pk/wp-content/themes/propakistani/images/776.jpg (easylist.txt: 33991) -.propakistani.pk/wp-content/themes/propakistani/images/776\.jpg -# ||propakistani.pk/wp-content/*/warid.jpg (easylist.txt: 33990) -.propakistani.pk/wp-content/.*/warid\.jpg -# ||propakistani.pk/data/zong.html (easylist.txt: 33989) -.propakistani.pk/data/zong\.html -# ||propakistani.pk/data/warid_top1.html (easylist.txt: 33988) -.propakistani.pk/data/warid_top1\.html -# ||promo.fileforum.com^ (easylist.txt: 33987) -.promo.fileforum.com -# ||projectorcentral.com/bblaster.cfm?$image (easylist.txt: 33986) -.projectorcentral.com/bblaster\.cfm\? -# ||projectfreetv.ch/adblock/ (easylist.txt: 33985) -.projectfreetv.ch/adblock/ -# ||project-for-sell.com/_google.php (easylist.txt: 33984) -.project-for-sell.com/_google\.php -# ||professionalmuscle.com/PL2.gif (easylist.txt: 33983) -.professionalmuscle.com/PL2\.gif -# ||professionalmuscle.com/phil1.jpg (easylist.txt: 33982) -.professionalmuscle.com/phil1\.jpg -# ||professionalmuscle.com/featured-concreter.jpg (easylist.txt: 33981) -.professionalmuscle.com/featured-concreter\.jpg -# ||professionalmuscle.com/220x105%20ver2.gif (easylist.txt: 33980) -.professionalmuscle.com/220x105%20ver2\.gif -# ||professionalmuscle.com/*banner (easylist.txt: 33979) -.professionalmuscle.com/.*banner -# ||pro-clockers.com/images/banners/ (easylist.txt: 33978) -.pro-clockers.com/images/banners/ -# ||privateproperty.co.za^*/siteTakeover/ (easylist.txt: 33977) -.privateproperty.co.za/.*/siteTakeover/ -# ||prisonplanet.com^*banner (easylist.txt: 33976) -.prisonplanet.com/.*banner -# ||printfriendly.com/a/lijit/ (easylist.txt: 33975) -.printfriendly.com/a/lijit/ -# ||primewire.in/load_link.php? (easylist.txt: 33974) -.primewire.in/load_link\.php\? -# ||primewire.guru/pagetop.php (easylist.txt: 33973) -.primewire.guru/pagetop\.php -# ||primewire.guru/load_link.php? (easylist.txt: 33972) -.primewire.guru/load_link\.php\? -# ||primewire.ag/load_link.php? (easylist.txt: 33971) -.primewire.ag/load_link\.php\? -# ||primewire.ag/js/jquery*.js (easylist.txt: 33970) -.primewire.ag/js/jquery.*\.js -# ||primewire.ag/frame_header.php?$subdocument (easylist.txt: 33969) -.primewire.ag/frame_header\.php\? -# ||primenews.com.bd/add/ (easylist.txt: 33968) -.primenews.com.bd/add/ -# ||pressrepublican.com/wallpaper/ (easylist.txt: 33967) -.pressrepublican.com/wallpaper/ -# ||prerollads.ign.com^ (easylist.txt: 33966) -.prerollads.ign.com -# ||prepperwebsite.com/wp-content/uploads/*_250x250.jpg (easylist.txt: 33965) -.prepperwebsite.com/wp-content/uploads/.*_250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*_250x150.png (easylist.txt: 33964) -.prepperwebsite.com/wp-content/uploads/.*_250x150\.png -# ||prepperwebsite.com/wp-content/uploads/*/tsepulveda-1.jpg (easylist.txt: 33963) -.prepperwebsite.com/wp-content/uploads/.*/tsepulveda-1\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/PW-Ad.jpg (easylist.txt: 33962) -.prepperwebsite.com/wp-content/uploads/.*/PW-Ad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/jihad.jpg (easylist.txt: 33961) -.prepperwebsite.com/wp-content/uploads/.*/jihad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/FME-Red-CAP.jpg (easylist.txt: 33960) -.prepperwebsite.com/wp-content/uploads/.*/FME-Red-CAP\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/DeadwoodStove-PW.gif (easylist.txt: 33959) -.prepperwebsite.com/wp-content/uploads/.*/DeadwoodStove-PW\.gif -# ||prepperwebsite.com/wp-content/uploads/*/apmgoldmembership250x250.jpg (easylist.txt: 33958) -.prepperwebsite.com/wp-content/uploads/.*/apmgoldmembership250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/250x250- (easylist.txt: 33957) -.prepperwebsite.com/wp-content/uploads/.*/250x250- -# ||prepperwebsite.com/wp-content/uploads/*-250x250.jpg (easylist.txt: 33956) -.prepperwebsite.com/wp-content/uploads/.*-250x250\.jpg -# ||preppersmallbiz.com/wp-content/uploads/*/PSB-Support.jpg (easylist.txt: 33955) -.preppersmallbiz.com/wp-content/uploads/.*/PSB-Support\.jpg -# ||premierleague.com^*/sponsor_ (easylist.txt: 33954) -.premierleague.com/.*/sponsor_ -# ||prehackshub.com/js/popup-wide.js (easylist.txt: 33953) -.prehackshub.com/js/popup-wide\.js -# ||preev.com/ad| (easylist.txt: 33952) -.preev.com/ad$ -# ||preev.com/ads| (easylist.txt: 33951) -.preev.com/ads$ -# ||praguepost.com/images/banners/ (easylist.txt: 33950) -.praguepost.com/images/banners/ -# ||pr0gramm.com/wm/ (easylist.txt: 33949) -.pr0gramm.com/wm/ -# ||pqarchiver.com^*/utilstextlinksxml.js (easylist.txt: 33948) -.pqarchiver.com/.*/utilstextlinksxml\.js -# ||powvideo.net/ban/ (easylist.txt: 33947) -.powvideo.net/ban/ -# ||powerbot.org^*/ads/ (easylist.txt: 33946) -.powerbot.org/.*/ads/ -# ||power977.com/images/banners/ (easylist.txt: 33945) -.power977.com/images/banners/ -# ||power1035fm.com^*/banners/ (easylist.txt: 33944) -.power1035fm.com/.*/banners/ -# ||poststar.com^*/promos/ (easylist.txt: 33943) -.poststar.com/.*/promos/ -# ||poststar.com^*/dealwidget.php? (easylist.txt: 33942) -.poststar.com/.*/dealwidget\.php\? -# ||poststar.com^*/ad_ (easylist.txt: 33941) -.poststar.com/.*/ad_ -# ||postcrescent.com^*/promos/ (easylist.txt: 33939) -.postcrescent.com/.*/promos/ -# ||postadsnow.com/panbanners/ (easylist.txt: 33938) -.postadsnow.com/panbanners/ -# ||positivehealth.com^*/TopicbannerAvatar/ (easylist.txt: 33937) -.positivehealth.com/.*/TopicbannerAvatar/ -# ||positivehealth.com^*/BannerAvatar/ (easylist.txt: 33936) -.positivehealth.com/.*/BannerAvatar/ -# ||porttechnology.org/images/partners/ (easylist.txt: 33935) -.porttechnology.org/images/partners/ -# ||portmiamiwebcam.com/images/sling_ (easylist.txt: 33934) -.portmiamiwebcam.com/images/sling_ -# ||portlanddailysun.me/images/banners/ (easylist.txt: 33933) -.portlanddailysun.me/images/banners/ -# ||portevergladeswebcam.com^*-WebCamBannerFall_ (easylist.txt: 33932) -.portevergladeswebcam.com/.*-WebCamBannerFall_ -# ||portevergladeswebcam.com^*-Ad.jpg (easylist.txt: 33931) -.portevergladeswebcam.com/.*-Ad\.jpg -# ||portcanaveralwebcam.com/images/ad_ (easylist.txt: 33930) -.portcanaveralwebcam.com/images/ad_ -# ||pornevo.com/events_ (easylist.txt: 33929) -.pornevo.com/events_ -# ||pop-over.powered-by.justplayzone.com^ (easylist.txt: 33928) -.pop-over.powered-by.justplayzone.com -# ||pons.eu^*/lingeniobanner.swf (easylist.txt: 33927) -.pons.eu/.*/lingeniobanner\.swf -# ||politicususa.com/psa/ (easylist.txt: 33925) -.politicususa.com/psa/ -# ||politico.com^*_skin_ (easylist.txt: 33924) -.politico.com/.*_skin_ -# ||politicalwire.com/images/*-sponsor.jpg (easylist.txt: 33923) -.politicalwire.com/images/.*-sponsor\.jpg -# ||policeprofessional.com/files/pictures- (easylist.txt: 33922) -.policeprofessional.com/files/pictures- -# ||policeprofessional.com/files/banners- (easylist.txt: 33921) -.policeprofessional.com/files/banners- -# ||police-car-photos.com/pictures/sponsors/ (easylist.txt: 33920) -.police-car-photos.com/pictures/sponsors/ -# ||pokernews.com/preroll.php? (easylist.txt: 33919) -.pokernews.com/preroll\.php\? -# ||pokernews.com/b/ (easylist.txt: 33918) -.pokernews.com/b/ -# ||pogo.com/v/*/js/ad.js (easylist.txt: 33917) -.pogo.com/v/.*/js/ad\.js -# ||pocketpcaddict.com/forums/images/banners/ (easylist.txt: 33916) -.pocketpcaddict.com/forums/images/banners/ -# ||pocket-lint.com/images/bytemarkad. (easylist.txt: 33915) -.pocket-lint.com/images/bytemarkad\. -# ||pmm.people.com.cn^ (easylist.txt: 33914) -.pmm.people.com.cn -# ||plundermedia.com*rectangle- (easylist.txt: 33913) -.plundermedia.com*./.*rectangle- -.plundermedia.com*rectangle-*. -# ||plunderguide.com/rectangle2.html (easylist.txt: 33912) -.plunderguide.com/rectangle2\.html -# ||plunderguide.com/leaderboard-gor.html (easylist.txt: 33911) -.plunderguide.com/leaderboard-gor\.html -# ||plsn.com/images/PLSN-Bg1.jpg (easylist.txt: 33910) -.plsn.com/images/PLSN-Bg1\.jpg -# ||playtowerdefensegames.com/ptdg-gao-gamebox-homepage.swf (easylist.txt: 33909) -.playtowerdefensegames.com/ptdg-gao-gamebox-homepage\.swf -# ||playhub.com/js/popup-wide.js (easylist.txt: 33907) -.playhub.com/js/popup-wide\.js -# ||playhd.eu^*.html|$subdocument (easylist.txt: 33906) -.playhd.eu/.*\.html$ -# ||playgroundmag.net^*/wallpaperpgesp_$image (easylist.txt: 33905) -.playgroundmag.net/.*/wallpaperpgesp_ -# ||playgames2.com/rand100x100.php (easylist.txt: 33904) -.playgames2.com/rand100x100\.php -# ||playgames2.com/mmoout.php (easylist.txt: 33903) -.playgames2.com/mmoout\.php -# ||playgames2.com/default160x160.php (easylist.txt: 33902) -.playgames2.com/default160x160\.php -# ||playgames2.com/ban300- (easylist.txt: 33901) -.playgames2.com/ban300- -# ||player.insuranceandhealth.com^ (easylist.txt: 33900) -.player.insuranceandhealth.com -# ||player.alloutwedding.com^ (easylist.txt: 33899) -.player.alloutwedding.com -# ||player.accoona.com^ (easylist.txt: 33898) -.player.accoona.com -# ||player.800directories.com^ (easylist.txt: 33897) -.player.800directories.com -# ||player.1stcreditrepairs.com^ (easylist.txt: 33896) -.player.1stcreditrepairs.com -# ||player.1800coupon.com^ (easylist.txt: 33895) -.player.1800coupon.com -# ||play4movie.com/banner/ (easylist.txt: 33894) -.play4movie.com/banner/ -# ||planetlotus.org/images/partners/ (easylist.txt: 33893) -.planetlotus.org/images/partners/ -# ||planecrashinfo.com/images/advertize1.gif (easylist.txt: 33892) -.planecrashinfo.com/images/advertize1\.gif -# ||pixhost.org/image/fik1.jpg (easylist.txt: 33891) -.pixhost.org/image/fik1\.jpg -# ||pittnews.com/modules/mod_novarp/ (easylist.txt: 33890) -.pittnews.com/modules/mod_novarp/ -# ||pitchero.com^*/toolstation.gif (easylist.txt: 33889) -.pitchero.com/.*/toolstation\.gif -# ||pirateproxy.nl/inc/ex.js (easylist.txt: 33888) -.pirateproxy.nl/inc/ex\.js -# ||piratefm.co.uk/resources/creative/ (easylist.txt: 33887) -.piratefm.co.uk/resources/creative/ -# ||pinknews.co.uk/newweb/ (easylist.txt: 33886) -.pinknews.co.uk/newweb/ -# ||pinknews.co.uk/gsky. (easylist.txt: 33885) -.pinknews.co.uk/gsky\. -# ||pinkbike.org^*/skins/ (easylist.txt: 33884) -.pinkbike.org/.*/skins/ -# ||picsee.net/clk.js (easylist.txt: 33883) -.picsee.net/clk\.js -# ||pickmeupnews.com/cfopop.js (easylist.txt: 33882) -.pickmeupnews.com/cfopop\.js -# ||physorg.com^*/addetect.js (easylist.txt: 33881) -.physorg.com/.*/addetect\.js -# ||phuketwan.com/img/b/ (easylist.txt: 33880) -.phuketwan.com/img/b/ -# ||phuketgazette.net^*/banners/ (easylist.txt: 33879) -.phuketgazette.net/.*/banners/ -# ||phuketgazette.net/banners/ (easylist.txt: 33878) -.phuketgazette.net/banners/ -# ||phuket-post.com/img/a/ (easylist.txt: 33877) -.phuket-post.com/img/a/ -# ||phpmotion.com/images/banners-webhosts/ (easylist.txt: 33876) -.phpmotion.com/images/banners-webhosts/ -# ||phpbb.com/theme/images/hosting/hostmonster-downloads.gif (easylist.txt: 33875) -.phpbb.com/theme/images/hosting/hostmonster-downloads\.gif -# ||phpbb.com/theme/images/bg_forumatic_front_page.png (easylist.txt: 33874) -.phpbb.com/theme/images/bg_forumatic_front_page\.png -# ||photosupload.net/photosupload.js (easylist.txt: 33873) -.photosupload.net/photosupload\.js -# ||photo.net/equipment/pg-160^ (easylist.txt: 33871) -.photo.net/equipment/pg-160[^\w%.-] -# ||phoronix.com/phxforums-thread-show.php (easylist.txt: 33870) -.phoronix.com/phxforums-thread-show\.php -# ||phonescoop.com^*/a_tab.gif (easylist.txt: 33869) -.phonescoop.com/.*/a_tab\.gif -# ||phonebunch.com/images/flipkart_offers_alt.jpg (easylist.txt: 33868) -.phonebunch.com/images/flipkart_offers_alt\.jpg -# ||phonearena.com/images/banners/ (easylist.txt: 33867) -.phonearena.com/images/banners/ -# ||phnompenhpost.com^*/banner_ (easylist.txt: 33866) -.phnompenhpost.com/.*/banner_ -# ||phnompenhpost.com/images/stories/banner/ (easylist.txt: 33865) -.phnompenhpost.com/images/stories/banner/ -# ||phillytrib.com/images/banners/ (easylist.txt: 33864) -.phillytrib.com/images/banners/ -# ||phantom.ie^*/banners/ (easylist.txt: 33863) -.phantom.ie/.*/banners/ -# ||pghcitypaper.com/general/modalbox/modalbox.js (easylist.txt: 33862) -.pghcitypaper.com/general/modalbox/modalbox\.js -# ||pgatour.com^*/featurebillboard_ (easylist.txt: 33861) -.pgatour.com/.*/featurebillboard_ -# ||pettube.com/images/*-partner. (easylist.txt: 33860) -.pettube.com/images/.*-partner\. -# ||petri.co.il/wp-content/uploads/banner700x475_ (easylist.txt: 33859) -.petri.co.il/wp-content/uploads/banner700x475_ -# ||petri.co.il/wp-content/uploads/banner1000x75_ (easylist.txt: 33858) -.petri.co.il/wp-content/uploads/banner1000x75_ -# ||petri.co.il/media/$image (easylist.txt: 33857) -.petri.co.il/media/ -# ||peruthisweek.com/uploads/sponsor_image/ (easylist.txt: 33856) -.peruthisweek.com/uploads/sponsor_image/ -# ||perezhilton.com/images/ask/ (easylist.txt: 33855) -.perezhilton.com/images/ask/ -# ||penguin-news.com/images/banners/ (easylist.txt: 33854) -.penguin-news.com/images/banners/ -# ||pedestrian.tv/_crunk/wp-content/files_flutter/ (easylist.txt: 33853) -.pedestrian.tv/_crunk/wp-content/files_flutter/ -# ||pechextreme.com^*/banners/ (easylist.txt: 33852) -.pechextreme.com/.*/banners/ -# ||pechextreme.com^*/banner. (easylist.txt: 33851) -.pechextreme.com/.*/banner\. -# ||pe.com^*/biice2scripts.js (easylist.txt: 33850) -.pe.com/.*/biice2scripts\.js -# ||pcworld.com/templates/video/popup.jsp?*&flv=/pcw/ads/ (easylist.txt: 33849) -.pcworld.com/templates/video/popup\.jsp\?.*&flv=/pcw/ads/ -# ||pcworld.com/images/*_vidmod_316x202_ (easylist.txt: 33848) -.pcworld.com/images/.*_vidmod_316x202_ -# ||pcworld.com/ads/ (easylist.txt: 33847) -.pcworld.com/ads/ -# ||pcworld.co.nz^*_siteskin_ (easylist.txt: 33846) -.pcworld.co.nz/.*_siteskin_ -# ||pcr-online.biz/static/banners/ (easylist.txt: 33845) -.pcr-online.biz/static/banners/ -# ||pcpro.co.uk^*skin_wide. (easylist.txt: 33844) -.pcpro.co.uk/.*skin_wide\. -# ||pcpro.co.uk^*/pcprositeskin (easylist.txt: 33843) -.pcpro.co.uk/.*/pcprositeskin -# ||pcpro.co.uk/images/skins/ (easylist.txt: 33842) -.pcpro.co.uk/images/skins/ -# ||pcpro.co.uk/images/*_siteskin (easylist.txt: 33841) -.pcpro.co.uk/images/.*_siteskin -# ||pcmag.com/blogshome/logicbuy.js (easylist.txt: 33840) -.pcmag.com/blogshome/logicbuy\.js -# ||pcauthority.com.au^*/skins/ (easylist.txt: 33839) -.pcauthority.com.au/.*/skins/ -# ||pcadvisor.co.uk/graphics/sponsored/ (easylist.txt: 33838) -.pcadvisor.co.uk/graphics/sponsored/ -# ||pbsrc.com^*/sponsor/ (easylist.txt: 33837) -.pbsrc.com/.*/sponsor/ -# ||pbsrc.com/sponsor/ (easylist.txt: 33836) -.pbsrc.com/sponsor/ -# ||pbs.org^*/sponsors/ (easylist.txt: 33835) -.pbs.org/.*/sponsors/ -# ||payplay.fm^*/mastercs.js (easylist.txt: 33834) -.payplay.fm/.*/mastercs\.js -# ||pasadenajournal.com/images/banners/ (easylist.txt: 33832) -.pasadenajournal.com/images/banners/ -# ||partners-z.com^ (easylist.txt: 33831) -.partners-z.com -# ||parlemagazine.com/images/banners/ (easylist.txt: 33830) -.parlemagazine.com/images/banners/ -# ||pardaphash.com/direct/tracker/add/ (easylist.txt: 33829) -.pardaphash.com/direct/tracker/add/ -# ||paradoxwikis.com/Sidebar.jpg (easylist.txt: 33828) -.paradoxwikis.com/Sidebar\.jpg -# ||parade.com/images/skins/ (easylist.txt: 33827) -.parade.com/images/skins/ -# ||pandora.com^*/mediaserverPublicRedirect.jsp (easylist.txt: 33826) -.pandora.com/.*/mediaserverPublicRedirect\.jsp -# ||pan2.ephotozine.com^$image (easylist.txt: 33825) -.pan2.ephotozine.com -# ||paktribune.com^*/banner (easylist.txt: 33824) -.paktribune.com/.*/banner -# ||pakistantoday.com.pk^*/karachi_houston_PakistanToday.jpg (easylist.txt: 33823) -.pakistantoday.com.pk/.*/karachi_houston_PakistanToday\.jpg -# ||paisalive.com/include/popup.js (easylist.txt: 33822) -.paisalive.com/include/popup\.js -# ||pagesinventory.com/_data/img/*_125x400_ (easylist.txt: 33821) -.pagesinventory.com/_data/img/.*_125x400_ -# ||pacificnewscenter.com/images/banners/ (easylist.txt: 33820) -.pacificnewscenter.com/images/banners/ -# ||p2pnet.net/images/$image (easylist.txt: 33819) -.p2pnet.net/images/ -# ||ozy.com^*/interstitial/ (easylist.txt: 33818) -.ozy.com/.*/interstitial/ -# ||ozy.com/modules/_common/ozy/pushdown/ (easylist.txt: 33817) -.ozy.com/modules/_common/ozy/pushdown/ -# ||ozy.com/modules/_common/ozy/full_width/ (easylist.txt: 33816) -.ozy.com/modules/_common/ozy/full_width/ -# ||ozy.com/modules/_common/ozy/blade/ (easylist.txt: 33815) -.ozy.com/modules/_common/ozy/blade/ -# ||ozqul.com^*/webbanners.png (easylist.txt: 33814) -.ozqul.com/.*/webbanners\.png -# ||oyetimes.com/join/advertisers.html (easylist.txt: 33813) -.oyetimes.com/join/advertisers\.html -# ||ox.furaffinity.net^ (easylist.txt: 33812) -.ox.furaffinity.net -# ||ox-d.wetransfer.com^ (easylist.txt: 33811) -.ox-d.wetransfer.com -# ||ox-d.sbnation.com^ (easylist.txt: 33810) -.ox-d.sbnation.com -# ||ox-d.rantsports.com^ (easylist.txt: 33809) -.ox-d.rantsports.com -# ||ow.ly^*/hootsuite_promo.jpg (easylist.txt: 33808) -.ow.ly/.*/hootsuite_promo\.jpg -# ||ovfile.com/player/jwadplugin.swf$object-subrequest (easylist.txt: 33807) -.ovfile.com/player/jwadplugin\.swf -# ||overclockers.co.uk^*/background/ (easylist.txt: 33806) -.overclockers.co.uk/.*/background/ -# ||overclock3d.net/img/pcp.jpg (easylist.txt: 33805) -.overclock3d.net/img/pcp\.jpg -# ||outofaces.com/*.html$subdocument (easylist.txt: 33804) -.outofaces.com/.*\.html -# ||outlookmoney.com/sharekhan_ad.jpg (easylist.txt: 33803) -.outlookmoney.com/sharekhan_ad\.jpg -# ||outlookindia.com/image/banner_ (easylist.txt: 33802) -.outlookindia.com/image/banner_ -# ||ourmanga.com/funklicks (easylist.txt: 33801) -.ourmanga.com/funklicks -# ||oteupload.com/images/iLivid-download- (easylist.txt: 33800) -.oteupload.com/images/iLivid-download- -# ||osdir.com/ml/$subdocument (easylist.txt: 33799) -.osdir.com/ml/ -# ||orlandosentinel2.com^*-sponsorship- (easylist.txt: 33798) -.orlandosentinel2.com/.*-sponsorship- -# ||orkut.gmodules.com^/promote.xml (easylist.txt: 33797) -.orkut.gmodules.com//promote\.xml -# ||orissadiary.com/img/*-banner.gif (easylist.txt: 33796) -.orissadiary.com/img/.*-banner\.gif -# ||originalfm.com/images/hotspots/ (easylist.txt: 33795) -.originalfm.com/images/hotspots/ -# ||oraclebroadcasting.com/images/hempusa_330.gif (easylist.txt: 33794) -.oraclebroadcasting.com/images/hempusa_330\.gif -# ||oraclebroadcasting.com/images/extendovite300.gif (easylist.txt: 33793) -.oraclebroadcasting.com/images/extendovite300\.gif -# ||oraclebroadcasting.com/images/enerfood-300x90.gif (easylist.txt: 33792) -.oraclebroadcasting.com/images/enerfood-300x90\.gif -# ||optimum.net/utilities/doubleclicktargeting (easylist.txt: 33791) -.optimum.net/utilities/doubleclicktargeting -# ||optics.org/banners/ (easylist.txt: 33790) -.optics.org/banners/ -# ||oprah.com^*-300x335.jpg (easylist.txt: 33789) -.oprah.com/.*-300x335\.jpg -# ||opensubtitles.org/gfx/banners_campaigns/ (easylist.txt: 33788) -.opensubtitles.org/gfx/banners_campaigns/ -# ||opencurrency.com/wp-content/uploads/*-aocs-sidebar-commodity-bank.png (easylist.txt: 33787) -.opencurrency.com/wp-content/uploads/.*-aocs-sidebar-commodity-bank\.png -# ||opednews.com^*/iframe.php? (easylist.txt: 33786) -.opednews.com/.*/iframe\.php\? -# ||onvasortir.com/maximemo-pense-bete-ovs.png (easylist.txt: 33785) -.onvasortir.com/maximemo-pense-bete-ovs\.png -# ||onrpg.com^*.php?$xmlhttprequest (easylist.txt: 33784) -.onrpg.com/.*\.php\? -# ||onlygoodmovies.com/netflix.gif (easylist.txt: 33783) -.onlygoodmovies.com/netflix\.gif -# ||onlineshopping.co.za/expop/ (easylist.txt: 33782) -.onlineshopping.co.za/expop/ -# ||onlinerealgames.com/google$subdocument (easylist.txt: 33781) -.onlinerealgames.com/google -# ||onlinenews.com.pk/onlinenews-admin/banners/ (easylist.txt: 33780) -.onlinenews.com.pk/onlinenews-admin/banners/ -# ||onlinemarketnews.org^*/silver72890.gif (easylist.txt: 33779) -.onlinemarketnews.org/.*/silver72890\.gif -# ||onlinemarketnews.org^*/silver300600.gif (easylist.txt: 33778) -.onlinemarketnews.org/.*/silver300600\.gif -# ||onlinekeystore.com/skin1/images/side- (easylist.txt: 33777) -.onlinekeystore.com/skin1/images/side- -# ||onionstatic.com/sponsored/ (easylist.txt: 33776) -.onionstatic.com/sponsored/ -# ||onepieceofbleach.com/onepieceofbleach-gao- (easylist.txt: 33775) -.onepieceofbleach.com/onepieceofbleach-gao- -# ||one-delivery.co.uk^*/sensitivedating.png (easylist.txt: 33774) -.one-delivery.co.uk/.*/sensitivedating\.png -# ||oncyprus.com^*/banners/ (easylist.txt: 33773) -.oncyprus.com/.*/banners/ -# ||on.net/images/gon_nodestore.jpg (easylist.txt: 33772) -.on.net/images/gon_nodestore\.jpg -# ||omgpop.com/dc? (easylist.txt: 33771) -.omgpop.com/dc\? -# ||oldgames.sk/images/topbar/ (easylist.txt: 33770) -.oldgames.sk/images/topbar/ -# ||okcupid.com/daisy?$subdocument (easylist.txt: 33769) -.okcupid.com/daisy\? -# ||okccdn.com/media/img/takeovers/ (easylist.txt: 33768) -.okccdn.com/media/img/takeovers/ -# ||oilprice.com/oiopub/ (easylist.txt: 33767) -.oilprice.com/oiopub/ -# ||oilprice.com/images/sponsors/ (easylist.txt: 33766) -.oilprice.com/images/sponsors/ -# ||oilprice.com/images/banners/ (easylist.txt: 33765) -.oilprice.com/images/banners/ -# ||ohmygore.com/ef_pub*.php (easylist.txt: 33764) -.ohmygore.com/ef_pub.*\.php -# ||oddschecker.com^*/takeover/ (easylist.txt: 33763) -.oddschecker.com/.*/takeover/ -# ||ocp.cbssports.com/pacific/request.jsp? (easylist.txt: 33762) -.ocp.cbssports.com/pacific/request\.jsp\? -# ||ocforums.com/adj/ (easylist.txt: 33761) -.ocforums.com/adj/ -# ||observer.ug/images/banners/ (easylist.txt: 33760) -.observer.ug/images/banners/ -# ||observer.org.sz/files/banners/ (easylist.txt: 33759) -.observer.org.sz/files/banners/ -# ||observer.com.na/images/banners/ (easylist.txt: 33758) -.observer.com.na/images/banners/ -# ||oascentral.newsmax.com^ (easylist.txt: 33755) -.oascentral.newsmax.com -# ||oascentral.hosted.ap.org^ (easylist.txt: 33754) -.oascentral.hosted.ap.org -# ||oascentral.chron.com^ (easylist.txt: 33753) -.oascentral.chron.com -# ||oasc07.citywire.co.uk^ (easylist.txt: 33752) -.oasc07.citywire.co.uk -# ||oas.skyscanner.net^ (easylist.txt: 33751) -.oas.skyscanner.net -# ||oas.autotrader.co.uk^ (easylist.txt: 33750) -.oas.autotrader.co.uk -# ||oanda.com/wandacache/wf-banner- (easylist.txt: 33749) -.oanda.com/wandacache/wf-banner- -# ||nznewsuk.co.uk/banners/ (easylist.txt: 33748) -.nznewsuk.co.uk/banners/ -# ||nzbking.com/static/nzbdrive_banner.swf (easylist.txt: 33747) -.nzbking.com/static/nzbdrive_banner\.swf -# ||nzbindex.nl/images/banners/ (easylist.txt: 33746) -.nzbindex.nl/images/banners/ -# ||nytimes.com^*-sponsor- (easylist.txt: 33745) -.nytimes.com/.*-sponsor- -# ||nytimes.com/ads/ (easylist.txt: 33744) -.nytimes.com/ads/ -# ||nyt.com^*-sponsor- (easylist.txt: 33743) -.nyt.com/.*-sponsor- -# ||nyrej.com/c/ (easylist.txt: 33742) -.nyrej.com/c/ -# ||nypost.com^*/takeovers/ (easylist.txt: 33741) -.nypost.com/.*/takeovers/ -# ||nymag.com^*/metrony_ (easylist.txt: 33740) -.nymag.com/.*/metrony_ -# ||nymag.com/scripts/skintakeover.js (easylist.txt: 33739) -.nymag.com/scripts/skintakeover\.js -# ||nymag.com/partners/ (easylist.txt: 33738) -.nymag.com/partners/ -# ||nydailynews.com^*-reskin- (easylist.txt: 33737) -.nydailynews.com/.*-reskin- -# ||nydailynews.com/PCRichards/ (easylist.txt: 33736) -.nydailynews.com/PCRichards/ -# ||nydailynews.com/img/sponsor/ (easylist.txt: 33735) -.nydailynews.com/img/sponsor/ -# ||nyaa.se/al (easylist.txt: 33734) -.nyaa.se/al -# ||nyaa.se/aj (easylist.txt: 33733) -.nyaa.se/aj -# ||nyaa.se/ai (easylist.txt: 33732) -.nyaa.se/ai -# ||nyaa.se/ah (easylist.txt: 33731) -.nyaa.se/ah -# ||nyaa.se/ag (easylist.txt: 33730) -.nyaa.se/ag -# ||nuvo.net^*/FooterPromoButtons.html (easylist.txt: 33729) -.nuvo.net/.*/FooterPromoButtons\.html -# ||nuttynewstoday.com/images/percento-banner.jpg (easylist.txt: 33728) -.nuttynewstoday.com/images/percento-banner\.jpg -# ||nuttynewstoday.com/images/hostwink.jpg (easylist.txt: 33727) -.nuttynewstoday.com/images/hostwink\.jpg -# ||nutritionhorizon.com/content/flash_loaders/$object (easylist.txt: 33726) -.nutritionhorizon.com/content/flash_loaders/ -# ||nutritionhorizon.com/content/banners/ (easylist.txt: 33725) -.nutritionhorizon.com/content/banners/ -# ||numberempire.com/images/b/ (easylist.txt: 33724) -.numberempire.com/images/b/ -# ||nufc.com^*_360x120.gif (easylist.txt: 33723) -.nufc.com/.*_360x120\.gif -# ||nufc.com^*/The%20Gate_NUFC.com%20banner_%2016.8.13.gif (easylist.txt: 33722) -.nufc.com/.*/The%20Gate_NUFC\.com%20banner_%2016\.8\.13\.gif -# ||nufc.com^*/skyscraper.gif (easylist.txt: 33721) -.nufc.com/.*/skyscraper\.gif -# ||nufc.com^*/mjs-2013-11.png (easylist.txt: 33720) -.nufc.com/.*/mjs-2013-11\.png -# ||nufc.com^*/altoonative_Cardiff.gif (easylist.txt: 33719) -.nufc.com/.*/altoonative_Cardiff\.gif -# ||nufc.com/forddirectbanner.js (easylist.txt: 33718) -.nufc.com/forddirectbanner\.js -# ||nu2.nu^*_banner. (easylist.txt: 33717) -.nu2.nu/.*_banner\. -# ||nu2.nu^*/sponsor/ (easylist.txt: 33716) -.nu2.nu/.*/sponsor/ -# ||ntdtv.com^*/adv/ (easylist.txt: 33715) -.ntdtv.com/.*/adv/ -# ||nowwatchtvlive.com/revenuehits.html (easylist.txt: 33714) -.nowwatchtvlive.com/revenuehits\.html -# ||nowwatchtvlive.com/matomyads.php (easylist.txt: 33713) -.nowwatchtvlive.com/matomyads\.php -# ||nowgoal.com/images/foreign/ (easylist.txt: 33712) -.nowgoal.com/images/foreign/ -# ||novamov.com/images/download_video.jpg (easylist.txt: 33711) -.novamov.com/images/download_video\.jpg -# ||notebook-driver.com/wp-content/images/banner_ (easylist.txt: 33710) -.notebook-driver.com/wp-content/images/banner_ -# ||notdoppler.com^*-promo-siteskin. (easylist.txt: 33709) -.notdoppler.com/.*-promo-siteskin\. -# ||notdoppler.com^*-promo-homepageskin.png (easylist.txt: 33708) -.notdoppler.com/.*-promo-homepageskin\.png -# ||notalwaysromantic.com/images/banner- (easylist.txt: 33707) -.notalwaysromantic.com/images/banner- -# ||nosteam.ro^*/messagesprop.js (easylist.txt: 33706) -.nosteam.ro/.*/messagesprop\.js -# ||nosteam.ro^*/messages.js (easylist.txt: 33705) -.nosteam.ro/.*/messages\.js -# ||nosteam.ro^*/gamedvprop.js (easylist.txt: 33704) -.nosteam.ro/.*/gamedvprop\.js -# ||nosteam.ro^*/compressed.ggotab36.js (easylist.txt: 33703) -.nosteam.ro/.*/compressed\.ggotab36\.js -# ||norwaypost.no/images/banners/ (easylist.txt: 33702) -.norwaypost.no/images/banners/ -# ||northjersey.com^*_Sponsor. (easylist.txt: 33701) -.northjersey.com/.*_Sponsor\. -# ||noram.srv.ysm.yahoo.com^ (easylist.txt: 33700) -.noram.srv.ysm.yahoo.com -# ||nodevice.com/images/banners/ (easylist.txt: 33699) -.nodevice.com/images/banners/ -# ||nmimg.net/css/takeover_ (easylist.txt: 33698) -.nmimg.net/css/takeover_ -# ||nme.com/themes/takeovers/ (easylist.txt: 33697) -.nme.com/themes/takeovers/ -# ||nme.com/js/takeoverlay.js (easylist.txt: 33696) -.nme.com/js/takeoverlay\.js -# ||nmap.org/shared/images/p/$image (easylist.txt: 33695) -.nmap.org/shared/images/p/ -# ||nitrobahn.com.s3.amazonaws.com/theme/getclickybadge.gif (easylist.txt: 33694) -.nitrobahn.com.s3.amazonaws.com/theme/getclickybadge\.gif -# ||nirsoft.net/banners/ (easylist.txt: 33693) -.nirsoft.net/banners/ -# ||nijobfinder.co.uk/affiliates/ (easylist.txt: 33691) -.nijobfinder.co.uk/affiliates/ -# ||niggasbelike.com/wp-content/themes/zeecorporate/images/b.jpg (easylist.txt: 33690) -.niggasbelike.com/wp-content/themes/zeecorporate/images/b\.jpg -# ||nigerianyellowpages.com/images/banners/ (easylist.txt: 33689) -.nigerianyellowpages.com/images/banners/ -# ||nigerianbulletin.com^*/Siropu/ (easylist.txt: 33688) -.nigerianbulletin.com/.*/Siropu/ -# ||nigeriamasterweb.com/Masterweb/banners_pic/ (easylist.txt: 33687) -.nigeriamasterweb.com/Masterweb/banners_pic/ -# ||nigeriafootball.com/img/affiliate_ (easylist.txt: 33686) -.nigeriafootball.com/img/affiliate_ -# ||nichepursuits.com/wp-content/uploads/*/long-tail-pro-banner.gif (easylist.txt: 33685) -.nichepursuits.com/wp-content/uploads/.*/long-tail-pro-banner\.gif -# ||ngrguardiannews.com/images/banners/ (easylist.txt: 33684) -.ngrguardiannews.com/images/banners/ -# ||ngohq.com/images/ad.jpg$~collapse (easylist.txt: 33683) -.ngohq.com/images/ad\.jpg -# ||nflcdn.com^*/partner-type/$~stylesheet (easylist.txt: 33681) -.nflcdn.com/.*/partner-type/ -# ||nfl.com^*/page-background-image.jpg (easylist.txt: 33680) -.nfl.com/.*/page-background-image\.jpg -# ||nfl.com/assets/images/hp-poweredby- (easylist.txt: 33679) -.nfl.com/assets/images/hp-poweredby- -# ||nextstl.com/images/banners/ (easylist.txt: 33678) -.nextstl.com/images/banners/ -# ||nextbigwhat.com/wp-content/uploads/*ccavenue (easylist.txt: 33677) -.nextbigwhat.com/wp-content/uploads/.*ccavenue -# ||nextag.com^*/NextagSponsoredProducts.jsp? (easylist.txt: 33676) -.nextag.com/.*/NextagSponsoredProducts\.jsp\? -# ||newvision.co.ug/rightsidepopup/ (easylist.txt: 33675) -.newvision.co.ug/rightsidepopup/ -# ||newvision.co.ug/banners/ (easylist.txt: 33674) -.newvision.co.ug/banners/ -# ||newverhost.com/css/pp.js (easylist.txt: 33673) -.newverhost.com/css/pp\.js -# ||newverhost.com/css/onload.js (easylist.txt: 33672) -.newverhost.com/css/onload\.js -# ||newsweek.com^*interstitial.js (easylist.txt: 33671) -.newsweek.com/.*interstitial\.js -# ||newsvine.com/jenga/widget/ (easylist.txt: 33670) -.newsvine.com/jenga/widget/ -# ||newsvine.com//jenga/widget/ (easylist.txt: 33669) -# ||newsudanvision.com/images/Carjunctionadvert.gif (easylist.txt: 33668) -.newsudanvision.com/images/Carjunctionadvert\.gif -# ||newsudanvision.com/images/banners/ (easylist.txt: 33667) -.newsudanvision.com/images/banners/ -# ||newstrackindia.com/images/hairfallguru728x90.jpg (easylist.txt: 33666) -.newstrackindia.com/images/hairfallguru728x90\.jpg -# ||newstatesman.com/sites/all/themes/*_1280x2000.$image (easylist.txt: 33665) -.newstatesman.com/sites/all/themes/.*_1280x2000\. -# ||newsreview.com/images/promo.gif (easylist.txt: 33664) -.newsreview.com/images/promo\.gif -# ||newsonjapan.com^*/banner/ (easylist.txt: 33663) -.newsonjapan.com/.*/banner/ -# ||newsday.co.tt/banner/ (easylist.txt: 33662) -.newsday.co.tt/banner/ -# ||newscdn.com.au^*/aldi/ (easylist.txt: 33660) -.newscdn.com.au/.*/aldi/ -# ||newsbusters.org^*/banners/ (easylist.txt: 33659) -.newsbusters.org/.*/banners/ -# ||news.com.au^*/public/img/p/$image (easylist.txt: 33658) -.news.com.au/.*/public/img/p/ -# ||news.com.au^*/promotions/ (easylist.txt: 33657) -.news.com.au/.*/promotions/ -# ||news.com.au^*/promos/ (easylist.txt: 33656) -.news.com.au/.*/promos/ -# ||news.com.au^*/images/*-bg.jpg (easylist.txt: 33655) -.news.com.au/.*/images/.*-bg\.jpg -# ||news.com.au^*-promo$image (easylist.txt: 33654) -.news.com.au/.*-promo -# ||news.com.au/news/vodafone/$object (easylist.txt: 33653) -.news.com.au/news/vodafone/ -# ||news.com.au/cs/*/bg-body.jpg (easylist.txt: 33652) -.news.com.au/cs/.*/bg-body\.jpg -# ||news.am/pic/bnr/ (easylist.txt: 33651) -.news.am/pic/bnr/ -# ||news-record.com/app/deal/ (easylist.txt: 33650) -.news-record.com/app/deal/ -# ||news-leader.com^*/banner.js (easylist.txt: 33649) -.news-leader.com/.*/banner\.js -# ||newpct.com/soporte/ (easylist.txt: 33648) -.newpct.com/soporte/ -# ||newoxfordreview.org/banners/ad- (easylist.txt: 33647) -.newoxfordreview.org/banners/ad- -# ||newipnow.com/ad-js.php (easylist.txt: 33646) -.newipnow.com/ad-js\.php -# ||newburytoday.co.uk^*-WillisAinsworth1.gif (easylist.txt: 33645) -.newburytoday.co.uk/.*-WillisAinsworth1\.gif -# ||newalbumreleases.net/banners/ (easylist.txt: 33644) -.newalbumreleases.net/banners/ -# ||newafricanmagazine.com/images/banners/ (easylist.txt: 33643) -.newafricanmagazine.com/images/banners/ -# ||networx.com/widget.php?aff_id=$script (easylist.txt: 33642) -.networx.com/widget\.php\?aff_id= -# ||networkwestvirginia.com/uploads/user_banners/ (easylist.txt: 33641) -.networkwestvirginia.com/uploads/user_banners/ -# ||network.sofeminine.co.uk^ (easylist.txt: 33640) -.network.sofeminine.co.uk -# ||netupd8.com^*/ads/ (easylist.txt: 33639) -.netupd8.com/.*/ads/ -# ||netsplit.de/links/rootado.gif (easylist.txt: 33638) -.netsplit.de/links/rootado\.gif -# ||netspidermm.indiatimes.com^ (easylist.txt: 33637) -.netspidermm.indiatimes.com -# ||netindian.in/frontsquare*.php (easylist.txt: 33636) -.netindian.in/frontsquare.*\.php -# ||nest.youwatch.org^ (easylist.txt: 33633) -.nest.youwatch.org -# ||nesn.com/img/sponsors/ (easylist.txt: 33632) -.nesn.com/img/sponsors/ -# ||nesn.com/img/nesn-nation/header-dunkin.jpg (easylist.txt: 33631) -.nesn.com/img/nesn-nation/header-dunkin\.jpg -# ||nesn.com/img/nesn-nation/bg- (easylist.txt: 33630) -.nesn.com/img/nesn-nation/bg- -# ||nerej.com/c/ (easylist.txt: 33629) -.nerej.com/c/ -# ||neowin.net/images/atlas/aww (easylist.txt: 33628) -.neowin.net/images/atlas/aww -# ||neoseeker.com/a_pane.php (easylist.txt: 33627) -.neoseeker.com/a_pane\.php -# ||nemesistv.info/jQuery.NagAds1.min.js (easylist.txt: 33626) -.nemesistv.info/jQuery\.NagAds1\.min\.js -# ||nearlygood.com^*/_aff.php? (easylist.txt: 33625) -.nearlygood.com/.*/_aff\.php\? -# ||ndtv.com^*/sponsors/ (easylist.txt: 33624) -.ndtv.com/.*/sponsors/ -# ||ndtv.com^*/banner/ (easylist.txt: 33623) -.ndtv.com/.*/banner/ -# ||ncrypt.in^*/layer.$script (easylist.txt: 33622) -.ncrypt.in/.*/layer\. -# ||ncrypt.in/javascript/jquery.msgbox.min.js (easylist.txt: 33621) -.ncrypt.in/javascript/jquery\.msgbox\.min\.js -# ||ncrypt.in/images/useful/ (easylist.txt: 33620) -.ncrypt.in/images/useful/ -# ||ncrypt.in/images/banner (easylist.txt: 33619) -.ncrypt.in/images/banner -# ||ncrypt.in/images/a/ (easylist.txt: 33618) -.ncrypt.in/images/a/ -# ||ncrypt.in/images/1.gif (easylist.txt: 33617) -.ncrypt.in/images/1\.gif -# ||nciku.com^*banner (easylist.txt: 33616) -.nciku.com/.*banner -# ||nbr.co.nz^*-WingBanner_ (easylist.txt: 33615) -.nbr.co.nz/.*-WingBanner_ -# ||naukimg.com/banner/ (easylist.txt: 33614) -.naukimg.com/banner/ -# ||naturalnews.com/sba/ (easylist.txt: 33613) -.naturalnews.com/sba/ -# ||nativetimes.com/images/banners/ (easylist.txt: 33612) -.nativetimes.com/images/banners/ -# ||nationmultimedia.com/new/js/nation_popup.js (easylist.txt: 33611) -.nationmultimedia.com/new/js/nation_popup\.js -# ||nationmultimedia.com/home/banner/ (easylist.txt: 33610) -.nationmultimedia.com/home/banner/ -# ||nationalturk.com^*/banner (easylist.txt: 33609) -.nationalturk.com/.*/banner -# ||nationalreview.com/images/display_300x600- (easylist.txt: 33608) -.nationalreview.com/images/display_300x600- -# ||nationaljournal.com/js/njg.js (easylist.txt: 33607) -.nationaljournal.com/js/njg\.js -# ||nation.sc/images/pub (easylist.txt: 33606) -.nation.sc/images/pub -# ||nation.sc/images/banners/ (easylist.txt: 33605) -.nation.sc/images/banners/ -# ||nation.lk^*/banners/ (easylist.txt: 33604) -.nation.lk/.*/banners/ -# ||nation.co.ke^*_bg.png (easylist.txt: 33603) -.nation.co.ke/.*_bg\.png -# ||nairaland.com/dynamic/$image (easylist.txt: 33602) -.nairaland.com/dynamic/ -# ||nairaland.com/contents/$image (easylist.txt: 33601) -.nairaland.com/contents/ -# ||naij.com^*/branding/ (easylist.txt: 33600) -.naij.com/.*/branding/ -# ||mywot.net/files/wotcert/vipre.png (easylist.txt: 33599) -.mywot.net/files/wotcert/vipre\.png -# ||myway.com/gca_iframe.html (easylist.txt: 33598) -.myway.com/gca_iframe\.html -# ||mysuncoast.com^*/sponsors/ (easylist.txt: 33597) -.mysuncoast.com/.*/sponsors/ -# ||mysuncoast.com/app/wallpaper/ (easylist.txt: 33596) -.mysuncoast.com/app/wallpaper/ -# ||mysubtitles.com^*_banner.jpg (easylist.txt: 33595) -.mysubtitles.com/.*_banner\.jpg -# ||myspacecdn.com/cms/*_skin_ (easylist.txt: 33594) -.myspacecdn.com/cms/.*_skin_ -# ||myshadibridalexpo.com/banner/ (easylist.txt: 33593) -.myshadibridalexpo.com/banner/ -# ||mysafesearch.co.uk/adds/ (easylist.txt: 33592) -.mysafesearch.co.uk/adds/ -# ||myrls.me/open.js (easylist.txt: 33591) -.myrls.me/open\.js -# ||myretrotv.com^*_vertbnr.jpg (easylist.txt: 33590) -.myretrotv.com/.*_vertbnr\.jpg -# ||myretrotv.com^*_horbnr.jpg (easylist.txt: 33589) -.myretrotv.com/.*_horbnr\.jpg -# ||myproperty.co.za/banners/ (easylist.txt: 33588) -.myproperty.co.za/banners/ -# ||mypremium.tv^*/bpad.htm (easylist.txt: 33587) -.mypremium.tv/.*/bpad\.htm -# ||mypiratebay.cl^$subdocument (easylist.txt: 33586) -.mypiratebay.cl -# ||mypbrand.com/wp-content/uploads/*banner (easylist.txt: 33585) -.mypbrand.com/wp-content/uploads/.*banner -# ||myiplayer.eu/ad (easylist.txt: 33584) -.myiplayer.eu/ad -# ||mygaming.co.za/news/wp-content/wallpapers/ (easylist.txt: 33583) -.mygaming.co.za/news/wp-content/wallpapers/ -# ||myfpscheats.com/bannerimg.jpg (easylist.txt: 33582) -.myfpscheats.com/bannerimg\.jpg -# ||myfax.com/free/images/sendfax/cp_coffee_660x80.swf (easylist.txt: 33581) -.myfax.com/free/images/sendfax/cp_coffee_660x80\.swf -# ||mycentraljersey.com^*/sponsor_ (easylist.txt: 33580) -.mycentraljersey.com/.*/sponsor_ -# ||mybroadband.co.za/news/wp-content/wallpapers/ (easylist.txt: 33579) -.mybroadband.co.za/news/wp-content/wallpapers/ -# ||myam1230.com/images/banners/ (easylist.txt: 33578) -.myam1230.com/images/banners/ -# ||my-link.pro/rotatingBanner.js (easylist.txt: 33577) -.my-link.pro/rotatingBanner\.js -# ||muthafm.com^*/partners.png (easylist.txt: 33576) -.muthafm.com/.*/partners\.png -# ||mustangevolution.com^*/banners/ (easylist.txt: 33575) -.mustangevolution.com/.*/banners/ -# ||mustangevolution.com^*/banner/ (easylist.txt: 33574) -.mustangevolution.com/.*/banner/ -# ||mustangevolution.com/images/300x100_ (easylist.txt: 33573) -.mustangevolution.com/images/300x100_ -# ||musictarget.com*/! (easylist.txt: 33572) -.musictarget.com*./(.*/)?! -# ||musicremedy.com/banner/ (easylist.txt: 33571) -.musicremedy.com/banner/ -# ||musicplayon.com/banner? (easylist.txt: 33570) -.musicplayon.com/banner\? -# ||musicmaza.com/bannerdyn (easylist.txt: 33569) -.musicmaza.com/bannerdyn -# ||music.yahoo.com/get-free-html (easylist.txt: 33568) -.music.yahoo.com/get-free-html -# ||murdermysteries.com/banners-murder/ (easylist.txt: 33567) -.murdermysteries.com/banners-murder/ -# ||multiupload.biz/r_ads2 (easylist.txt: 33566) -.multiupload.biz/r_ads2 -# ||multiup.org/img/sonyoutube_long.gif (easylist.txt: 33565) -.multiup.org/img/sonyoutube_long\.gif -# ||muchmusic.com^*/leaderboard_frame_obiwan.html (easylist.txt: 33564) -.muchmusic.com/.*/leaderboard_frame_obiwan\.html -# ||muchmusic.com^*/bigbox_frame_resizer.html (easylist.txt: 33563) -.muchmusic.com/.*/bigbox_frame_resizer\.html -# ||muchmusic.com/images/*-skin.png (easylist.txt: 33562) -.muchmusic.com/images/.*-skin\.png -# ||mtvnimages.com/images/skins/$image (easylist.txt: 33561) -.mtvnimages.com/images/skins/ -# ||mtv.co.uk^*/btn_itunes.png (easylist.txt: 33560) -.mtv.co.uk/.*/btn_itunes\.png -# ||mtbr.com/ajax/hotdeals/ (easylist.txt: 33559) -.mtbr.com/ajax/hotdeals/ -# ||msw.ms^*/jquery.MSWPagePeel- (easylist.txt: 33558) -.msw.ms/.*/jquery\.MSWPagePeel- -# ||msn.com/?adunitid (easylist.txt: 33557) -.msn.com/\?adunitid -# ||mp3skull.com/call_banner_exec_new. (easylist.txt: 33555) -.mp3skull.com/call_banner_exec_new\. -# ||mp3s.su/uploads/___/djz_to.png (easylist.txt: 33554) -.mp3s.su/uploads/___/djz_to\.png -# ||mp3mediaworld.com*/! (easylist.txt: 33553) -.mp3mediaworld.com*./(.*/)?! -# ||mp3li.net^*banner (easylist.txt: 33552) -.mp3li.net/.*banner -# ||mp3.li/images/md_banner_ (easylist.txt: 33551) -.mp3.li/images/md_banner_ -# ||mp.adverts.itv.com/priority/*.mp4$object-subrequest (easylist.txt: 33550) -.mp.adverts.itv.com/priority/.*\.mp4 -# ||movzap.com/zad.html (easylist.txt: 33549) -.movzap.com/zad\.html -# ||movzap.com/aad.html (easylist.txt: 33548) -.movzap.com/aad\.html -# ||movstreaming.com/images/edhim.jpg (easylist.txt: 33547) -.movstreaming.com/images/edhim\.jpg -# ||movizland.com/images/banners/ (easylist.txt: 33546) -.movizland.com/images/banners/ -# ||moviewallpaper.net/js/mwpopunder.js (easylist.txt: 33545) -.moviewallpaper.net/js/mwpopunder\.js -# ||movie4k.tv/e.js (easylist.txt: 33544) -.movie4k.tv/e\.js -# ||movie4k.to/*.js (easylist.txt: 33543) -.movie4k.to/.*\.js -# ||movie2kto.ws/popup (easylist.txt: 33542) -.movie2kto.ws/popup -# ||movie2k.tl/serve.php (easylist.txt: 33541) -.movie2k.tl/serve\.php -# ||movie2k.tl/layers/ (easylist.txt: 33540) -.movie2k.tl/layers/ -# ||mouthshut.com^*/zedo.aspx (easylist.txt: 33539) -.mouthshut.com/.*/zedo\.aspx -# ||mousesteps.com/images/banners/ (easylist.txt: 33538) -.mousesteps.com/images/banners/ -# ||mountainbuzz.com/attachments/banners/ (easylist.txt: 33537) -.mountainbuzz.com/attachments/banners/ -# ||motorweek.org^*/sponsor_logos/ (easylist.txt: 33536) -.motorweek.org/.*/sponsor_logos/ -# ||motortrader.com.my/skinner/ (easylist.txt: 33535) -.motortrader.com.my/skinner/ -# ||motorhomefacts.com/images/banners/ (easylist.txt: 33534) -.motorhomefacts.com/images/banners/ -# ||motorcycles-motorbikes.com/pictures/sponsors/ (easylist.txt: 33533) -.motorcycles-motorbikes.com/pictures/sponsors/ -# ||morningstaronline.co.uk/offsite/progressive-listings/ (easylist.txt: 33532) -.morningstaronline.co.uk/offsite/progressive-listings/ -# ||morefree.net/wp-content/uploads/*/mauritanie.gif (easylist.txt: 33531) -.morefree.net/wp-content/uploads/.*/mauritanie\.gif -# ||morefmphilly.com^*/sponsors/ (easylist.txt: 33530) -.morefmphilly.com/.*/sponsors/ -# ||monster.com/null&pp (easylist.txt: 33529) -.monster.com/null&pp -# ||monkeygamesworld.com/images/banners/ (easylist.txt: 33528) -.monkeygamesworld.com/images/banners/ -# ||monitor.co.ug/image/view/*/468/ (easylist.txt: 33527) -.monitor.co.ug/image/view/.*/468/ -# ||monitor.co.ug/image/view/*/120/ (easylist.txt: 33526) -.monitor.co.ug/image/view/.*/120/ -# ||moneymedics.biz/upload/banners/ (easylist.txt: 33525) -.moneymedics.biz/upload/banners/ -# ||moneymakerdiscussion.com/mmd-banners/ (easylist.txt: 33524) -.moneymakerdiscussion.com/mmd-banners/ -# ||mochiads.com/srv/ (easylist.txt: 33522) -.mochiads.com/srv/ -# ||mobilephonetalk.com/eurovps.swf (easylist.txt: 33521) -.mobilephonetalk.com/eurovps\.swf -# ||mob.org/banner/ (easylist.txt: 33520) -.mob.org/banner/ -# ||mnn.com^*/120x60/ (easylist.txt: 33519) -.mnn.com/.*/120x60/ -# ||mnn.com/sites/*/popups/AllstatePopup$script (easylist.txt: 33518) -.mnn.com/sites/.*/popups/AllstatePopup -# ||mmosite.com/sponsor/ (easylist.txt: 33517) -.mmosite.com/sponsor/ -# ||mmorpg.com/images/skins/ (easylist.txt: 33516) -.mmorpg.com/images/skins/ -# ||mmorpg.com/images/mr_ss_ (easylist.txt: 33515) -.mmorpg.com/images/mr_ss_ -# ||mmorpg.com/images/*_hots_r0.jpg (easylist.txt: 33514) -.mmorpg.com/images/.*_hots_r0\.jpg -# ||mmoculture.com/wp-content/uploads/*-background- (easylist.txt: 33513) -.mmoculture.com/wp-content/uploads/.*-background- -# ||mlb.com^*/sponsorship/ (easylist.txt: 33511) -.mlb.com/.*/sponsorship/ -# ||mlb.com/images/*_videoskin_*.jpg (easylist.txt: 33510) -.mlb.com/images/.*_videoskin_.*\.jpg -# ||mizzima.com/images/banners/ (easylist.txt: 33509) -.mizzima.com/images/banners/ -# ||mixx96.com/images/banners/ (easylist.txt: 33508) -.mixx96.com/images/banners/ -# ||mixfm.co.za^*/tallspon (easylist.txt: 33507) -.mixfm.co.za/.*/tallspon -# ||mixfm.co.za/images/banner (easylist.txt: 33506) -.mixfm.co.za/images/banner -# ||misterwhat.co.uk/business-company-300/ (easylist.txt: 33505) -.misterwhat.co.uk/business-company-300/ -# ||mirrorstack.com/?q=r_ads (easylist.txt: 33504) -.mirrorstack.com/\?q=r_ads -# ||mirrorcreator.com/js/pu_ad.js (easylist.txt: 33503) -.mirrorcreator.com/js/pu_ad\.js -# ||mirrorcreator.com/js/mpop.js (easylist.txt: 33502) -.mirrorcreator.com/js/mpop\.js -# ||mirror.co.uk^*_promos_ (easylist.txt: 33501) -.mirror.co.uk/.*_promos_ -# ||mirror.co.uk^*/sponsors/ (easylist.txt: 33500) -.mirror.co.uk/.*/sponsors/ -# ||mirror.co.uk^*/gutters/ (easylist.txt: 33499) -.mirror.co.uk/.*/gutters/ -# ||minnpost.com^*/sponsor/ (easylist.txt: 33498) -.minnpost.com/.*/sponsor/ -# ||mininova.org/js/vidukilayer.js (easylist.txt: 33497) -.mininova.org/js/vidukilayer\.js -# ||miniclipcdn.com/images/takeovers/ (easylist.txt: 33496) -.miniclipcdn.com/images/takeovers/ -# ||mindfood.com/upload/images/wallpaper_images/ (easylist.txt: 33495) -.mindfood.com/upload/images/wallpaper_images/ -# ||milanounited.co.za/images/sponsor_ (easylist.txt: 33494) -.milanounited.co.za/images/sponsor_ -# ||mikejung.biz/images/*/728x90xLiquidWeb_ (easylist.txt: 33493) -.mikejung.biz/images/.*/728x90xLiquidWeb_ -# ||mightyupload.com/popuu.js (easylist.txt: 33492) -.mightyupload.com/popuu\.js -# ||midlandsradio.fm/bms/ (easylist.txt: 33491) -.midlandsradio.fm/bms/ -# ||middle-east-online.com^*/meoadv/ (easylist.txt: 33490) -.middle-east-online.com/.*/meoadv/ -# ||michronicleonline.com/images/banners/ (easylist.txt: 33489) -.michronicleonline.com/images/banners/ -# ||micast.tv/clean.php (easylist.txt: 33488) -.micast.tv/clean\.php -# ||miamiherald.com^*/teamfanshop/ (easylist.txt: 33487) -.miamiherald.com/.*/teamfanshop/ -# ||miamiherald.com^*/dealsaver/ (easylist.txt: 33486) -.miamiherald.com/.*/dealsaver/ -# ||mi-pro.co.uk/banners/ (easylist.txt: 33485) -.mi-pro.co.uk/banners/ -# ||mhvillage.com/ppc.php? (easylist.txt: 33484) -.mhvillage.com/ppc\.php\? -# ||mgnetwork.com/dealtaker/ (easylist.txt: 33483) -.mgnetwork.com/dealtaker/ -# ||mgid.com/ban/ (easylist.txt: 33482) -.mgid.com/ban/ -# ||mg.co.za^*/wallpaper (easylist.txt: 33481) -.mg.co.za/.*/wallpaper -# ||mfcdn.net/media/game321/$image (easylist.txt: 33479) -.mfcdn.net/media/game321/ -# ||mfcdn.net/media/*right (easylist.txt: 33478) -.mfcdn.net/media/.*right -# ||mfcdn.net/media/*left (easylist.txt: 33477) -.mfcdn.net/media/.*left -# ||metromedia.co.za/bannersys/banners/ (easylist.txt: 33476) -.metromedia.co.za/bannersys/banners/ -# ||metrolyrics.com/js/min/tonefuse.js (easylist.txt: 33475) -.metrolyrics.com/js/min/tonefuse\.js -# ||metradar.ch^*/banner_ (easylist.txt: 33474) -.metradar.ch/.*/banner_ -# ||meteox.com/bannerdetails.aspx? (easylist.txt: 33473) -.meteox.com/bannerdetails\.aspx\? -# ||meteox.co.uk/bannerdetails.aspx? (easylist.txt: 33472) -.meteox.co.uk/bannerdetails\.aspx\? -# ||meteovista.co.uk/go/banner/ (easylist.txt: 33471) -.meteovista.co.uk/go/banner/ -# ||meteomedia.com^*&placement (easylist.txt: 33470) -.meteomedia.com/.*&placement -# ||messianictimes.com/images/Word%20of%20Messiah%20Ministries1.png (easylist.txt: 33469) -.messianictimes.com/images/Word%20of%20Messiah%20Ministries1\.png -# ||messianictimes.com/images/MJBI.org.gif (easylist.txt: 33468) -.messianictimes.com/images/MJBI\.org\.gif -# ||messianictimes.com/images/Jews%20for%20Jesus%20Banner.png (easylist.txt: 33467) -.messianictimes.com/images/Jews%20for%20Jesus%20Banner\.png -# ||messianictimes.com/images/Israel%20Today%20Logo.png (easylist.txt: 33466) -.messianictimes.com/images/Israel%20Today%20Logo\.png -# ||messianictimes.com/images/banners/ (easylist.txt: 33465) -.messianictimes.com/images/banners/ -# ||messianictimes.com/images/4-13/reach.jpg (easylist.txt: 33464) -.messianictimes.com/images/4-13/reach\.jpg -# ||messianictimes.com/images/1-13/ba_mhfinal_ (easylist.txt: 33463) -.messianictimes.com/images/1-13/ba_mhfinal_ -# ||merriam-webster.com^*/accipiter.js (easylist.txt: 33462) -.merriam-webster.com/.*/accipiter\.js -# ||merriam-webster.com/creative.php? (easylist.txt: 33461) -.merriam-webster.com/creative\.php\? -# ||mentalfloss.com^*-skin- (easylist.txt: 33460) -.mentalfloss.com/.*-skin- -# ||menafn.com^*/banner_ (easylist.txt: 33459) -.menafn.com/.*/banner_ -# ||memory-alpha.org/__varnish_liftium/ (easylist.txt: 33457) -.memory-alpha.org/__varnish_liftium/ -# ||meizufans.eu/vifocal.gif (easylist.txt: 33456) -.meizufans.eu/vifocal\.gif -# ||meizufans.eu/merimobiles.gif (easylist.txt: 33455) -.meizufans.eu/merimobiles\.gif -# ||meizufans.eu/efox.gif (easylist.txt: 33454) -.meizufans.eu/efox\.gif -# ||megauploadtrend.com/iframe/if.php? (easylist.txt: 33452) -.megauploadtrend.com/iframe/if\.php\? -# ||megashares.com/cache_program_banner.html (easylist.txt: 33450) -.megashares.com/cache_program_banner\.html -# ||megasearch.us/turboflirt.gif (easylist.txt: 33449) -.megasearch.us/turboflirt\.gif -# ||megasearch.us/ifx/ifx.php? (easylist.txt: 33448) -.megasearch.us/ifx/ifx\.php\? -# ||meetic.com/js/*/site_under_ (easylist.txt: 33447) -.meetic.com/js/.*/site_under_ -# ||medicaldaily.com/views/images/banners/ (easylist.txt: 33446) -.medicaldaily.com/views/images/banners/ -# ||mediaweek.com.au/storage/*_234x234.jpg? (easylist.txt: 33445) -.mediaweek.com.au/storage/.*_234x234\.jpg\? -# ||mediaupdate.co.za/temp/banner_ (easylist.txt: 33444) -.mediaupdate.co.za/temp/banner_ -# ||mediaticks.com/images/genx.jpg (easylist.txt: 33443) -.mediaticks.com/images/genx\.jpg -# ||mediaticks.com/images/genx-infotech.jpg (easylist.txt: 33442) -.mediaticks.com/images/genx-infotech\.jpg -# ||mediaticks.com/bollywood.jpg (easylist.txt: 33441) -.mediaticks.com/bollywood\.jpg -# ||mediaspanonline.com/inc.php?uri=/&bannerPositions= (easylist.txt: 33438) -.mediaspanonline.com/inc\.php\?uri=/&bannerPositions= -# ||mediaspanonline.com/images/buy-itunes.png (easylist.txt: 33437) -.mediaspanonline.com/images/buy-itunes\.png -# ||mediamgr.ugo.com^ (easylist.txt: 33436) -.mediamgr.ugo.com -# ||mediafiretrend.com/turboflirt.gif (easylist.txt: 33435) -.mediafiretrend.com/turboflirt\.gif -# ||mediafiretrend.com/ifx/ifx.php? (easylist.txt: 33434) -.mediafiretrend.com/ifx/ifx\.php\? -# ||mediafire.re/popup.js (easylist.txt: 33433) -.mediafire.re/popup\.js -# ||mediafire.com^*/rockmelt_tabcontent.jpg (easylist.txt: 33432) -.mediafire.com/.*/rockmelt_tabcontent\.jpg -# ||mediafire.com^*/linkto/default-$subdocument (easylist.txt: 33431) -.mediafire.com/.*/linkto/default- -# ||mediafire.com/templates/linkto/ (easylist.txt: 33430) -.mediafire.com/templates/linkto/ -# ||mediafire.com/images/rockmelt/ (easylist.txt: 33429) -.mediafire.com/images/rockmelt/ -# ||media.abc.go.com^*/callouts/ (easylist.txt: 33427) -.media.abc.go.com/.*/callouts/ -# ||media-mgmt.armorgames.com^ (easylist.txt: 33426) -.media-mgmt.armorgames.com -# ||media-imdb.com^*/clicktale-$script (easylist.txt: 33425) -.media-imdb.com/.*/clicktale- -# ||media-imdb.com^*/affiliates/ (easylist.txt: 33424) -.media-imdb.com/.*/affiliates/ -# ||media-imdb.com/images/*/mptv_banner_ (easylist.txt: 33423) -.media-imdb.com/images/.*/mptv_banner_ -# ||media-delivery.armorgames.com^ (easylist.txt: 33422) -.media-delivery.armorgames.com -# ||medhelp.org/hserver/ (easylist.txt: 33421) -.medhelp.org/hserver/ -# ||mechodownload.com/forum/images/affiliates/ (easylist.txt: 33420) -.mechodownload.com/forum/images/affiliates/ -# ||meanjin.com.au/static/images/sponsors.jpg (easylist.txt: 33419) -.meanjin.com.au/static/images/sponsors\.jpg -# ||mealsandsteals.sandiego6.com^ (easylist.txt: 33418) -.mealsandsteals.sandiego6.com -# ||mcvuk.com/static/banners/ (easylist.txt: 33417) -.mcvuk.com/static/banners/ -# ||mcstatic.com^*/billboard_ (easylist.txt: 33416) -.mcstatic.com/.*/billboard_ -# ||mcsesports.com/images/sponsors/ (easylist.txt: 33415) -.mcsesports.com/images/sponsors/ -# ||mcnews.com.au/banners/ (easylist.txt: 33414) -.mcnews.com.au/banners/ -# ||mcjonline.com/filemanager/userfiles/banners/ (easylist.txt: 33413) -.mcjonline.com/filemanager/userfiles/banners/ -# ||mccont.com/takeover/ (easylist.txt: 33412) -.mccont.com/takeover/ -# ||mccont.com/sda/ (easylist.txt: 33411) -.mccont.com/sda/ -# ||mccont.com/campaign%20management/ (easylist.txt: 33410) -.mccont.com/campaign%20management/ -# ||mbl.is/mm/augl/ (easylist.txt: 33409) -.mbl.is/mm/augl/ -# ||mbl.is/augl/ (easylist.txt: 33408) -.mbl.is/augl/ -# ||mb.hockeybuzz.com^ (easylist.txt: 33407) -.mb.hockeybuzz.com -# ||mb.com.ph^*/skyscraper- (easylist.txt: 33406) -.mb.com.ph/.*/skyscraper- -# ||maxgames.com^*/sponsor_ (easylist.txt: 33405) -.maxgames.com/.*/sponsor_ -# ||maxconsole.com/maxconsole/banners/ (easylist.txt: 33404) -.maxconsole.com/maxconsole/banners/ -# ||mauritiusnews.co.uk/images/banners/ (easylist.txt: 33403) -.mauritiusnews.co.uk/images/banners/ -# ||mathforum.org/images/tutor.gif (easylist.txt: 33402) -.mathforum.org/images/tutor\.gif -# ||mashable.com/tripleclick.html (easylist.txt: 33401) -.mashable.com/tripleclick\.html -# ||mary.com/728_header.php (easylist.txt: 33400) -.mary.com/728_header\.php -# ||marketplace.org^*/support_block/ (easylist.txt: 33399) -.marketplace.org/.*/support_block/ -# ||marketnewsvideo.com/mnvport160.gif (easylist.txt: 33398) -.marketnewsvideo.com/mnvport160\.gif -# ||marketnewsvideo.com/etfchannel/evfad1.gif (easylist.txt: 33397) -.marketnewsvideo.com/etfchannel/evfad1\.gif -# ||marketintelligencecenter.com/images/brokers/ (easylist.txt: 33396) -.marketintelligencecenter.com/images/brokers/ -# ||marketingupdate.co.za/temp/banner_ (easylist.txt: 33395) -.marketingupdate.co.za/temp/banner_ -# ||marketingsolutions.yahoo.com^ (easylist.txt: 33394) -.marketingsolutions.yahoo.com -# ||marketingpilgrim.com/wp-content/uploads/*/trackur.com- (easylist.txt: 33393) -.marketingpilgrim.com/wp-content/uploads/.*/trackur\.com- -# ||marineterms.com/images/banners/ (easylist.txt: 33392) -.marineterms.com/images/banners/ -# ||marengo-uniontimes.com/images/banners/ (easylist.txt: 33391) -.marengo-uniontimes.com/images/banners/ -# ||maravipost.com/images/banners/ (easylist.txt: 33390) -.maravipost.com/images/banners/ -# ||mapsofindia.com/widgets/tribalfusionboxadd.html (easylist.txt: 33389) -.mapsofindia.com/widgets/tribalfusionboxadd\.html -# ||manxradio.com^*/banners_ (easylist.txt: 33388) -.manxradio.com/.*/banners_ -# ||manutd.com^*/Sponsors/ (easylist.txt: 33387) -.manutd.com/.*/Sponsors/ -# ||manilatimes.net/images/banners/ (easylist.txt: 33386) -.manilatimes.net/images/banners/ -# ||manicapost.com^*/banners/ (easylist.txt: 33385) -.manicapost.com/.*/banners/ -# ||maniastreaming.com/pp2/ (easylist.txt: 33384) -.maniastreaming.com/pp2/ -# ||mani-admin-plugin.com^*/banners/ (easylist.txt: 33383) -.mani-admin-plugin.com/.*/banners/ -# ||manhattantimesnews.com/images/banners/ (easylist.txt: 33382) -.manhattantimesnews.com/images/banners/ -# ||mangaupdates.com/affiliates/ (easylist.txt: 33381) -.mangaupdates.com/affiliates/ -# ||mangarush.com/xtend.php (easylist.txt: 33380) -.mangarush.com/xtend\.php -# ||mangareader.net/images/800-x-100 (easylist.txt: 33379) -.mangareader.net/images/800-x-100 -# ||mangafox.com/media/game321/ (easylist.txt: 33378) -.mangafox.com/media/game321/ -# ||malwaredomains.com/ra.jpg (easylist.txt: 33377) -.malwaredomains.com/ra\.jpg -# ||maltatoday.com.mt/ui_frontend/display_external_module/ (easylist.txt: 33376) -.maltatoday.com.mt/ui_frontend/display_external_module/ -# ||malaysiakini.com/misc/banners/ (easylist.txt: 33375) -.malaysiakini.com/misc/banners/ -# ||malaysiabay.org^*creatives.php? (easylist.txt: 33374) -.malaysiabay.org/.*creatives\.php\? -# ||malaysiabay.org^*/creative.js (easylist.txt: 33373) -.malaysiabay.org/.*/creative\.js -# ||makeagif.com/parts/fiframe.php (easylist.txt: 33372) -.makeagif.com/parts/fiframe\.php -# ||majorgeeks.com^*/banners/ (easylist.txt: 33371) -.majorgeeks.com/.*/banners/ -# ||majorgeeks.com/images/mg120.jpg (easylist.txt: 33370) -.majorgeeks.com/images/mg120\.jpg -# ||majorgeeks.com/images/mb-hb-2.jpg (easylist.txt: 33369) -.majorgeeks.com/images/mb-hb-2\.jpg -# ||majorgeeks.com/images/download_sd_ (easylist.txt: 33368) -.majorgeeks.com/images/download_sd_ -# ||majorgeeks.com/images/*_336x280.jpg (easylist.txt: 33367) -.majorgeeks.com/images/.*_336x280\.jpg -# ||majorgeeks.com/aff/ (easylist.txt: 33366) -.majorgeeks.com/aff/ -# ||mailinator.com^*/clickbanner.jpg (easylist.txt: 33365) -.mailinator.com/.*/clickbanner\.jpg -# ||mailinator.com/images/abine/leaderboard- (easylist.txt: 33364) -.mailinator.com/images/abine/leaderboard- -# ||mail.yahoo.com/neo/mbimg?av/curveball/ds/ (easylist.txt: 33363) -.mail.yahoo.com/neo/mbimg\?av/curveball/ds/ -# ||mail.yahoo.com/mc/md.php? (easylist.txt: 33362) -.mail.yahoo.com/mc/md\.php\? -# ||madville.com/afs.php (easylist.txt: 33361) -.madville.com/afs\.php -# ||madskristensen.net/discount2.js (easylist.txt: 33360) -.madskristensen.net/discount2\.js -# ||mads.dailymail.co.uk^ (easylist.txt: 33359) -.mads.dailymail.co.uk -# ||madamenoire.com/wp-content/*_Reskin-$image (easylist.txt: 33358) -.madamenoire.com/wp-content/.*_Reskin- -# ||macworld.com/ads/ (easylist.txt: 33357) -.macworld.com/ads/ -# ||macworld.co.uk^*/textdeals/ (easylist.txt: 33356) -.macworld.co.uk/.*/textdeals/ -# ||macworld.co.uk/promo/ (easylist.txt: 33355) -.macworld.co.uk/promo/ -# ||macupdate.com/js/google_service.js (easylist.txt: 33354) -.macupdate.com/js/google_service\.js -# ||macobserver.com^*/deal_brothers/ (easylist.txt: 33353) -.macobserver.com/.*/deal_brothers/ -# ||macobserver.com/js/givetotmo.js (easylist.txt: 33352) -.macobserver.com/js/givetotmo\.js -# ||macmillandictionary.com/info/frame.html?zone= (easylist.txt: 33351) -.macmillandictionary.com/info/frame\.html\?zone= -# ||maciverse.mangoco.netdna-cdn.com^*banner (easylist.txt: 33350) -.maciverse.mangoco.netdna-cdn.com/.*banner -# ||macintouch.com/images/owc_ (easylist.txt: 33349) -.macintouch.com/images/owc_ -# ||macintouch.com/images/amaz_ (easylist.txt: 33348) -.macintouch.com/images/amaz_ -# ||machovideo.com/img/site/postimg2/rotate.php (easylist.txt: 33347) -.machovideo.com/img/site/postimg2/rotate\.php -# ||macblurayplayer.com/image/amazon- (easylist.txt: 33346) -.macblurayplayer.com/image/amazon- -# ||macaunews.com.mo/images/stories/banners/ (easylist.txt: 33345) -.macaunews.com.mo/images/stories/banners/ -# ||macaudailytimes.com.mo/files/banners/ (easylist.txt: 33344) -.macaudailytimes.com.mo/files/banners/ -# ||m4carbine.net/tabs/ (easylist.txt: 33343) -.m4carbine.net/tabs/ -# ||m-w.com/creative.php (easylist.txt: 33342) -.m-w.com/creative\.php -# ||lyricsfreak.com^*/overlay.js (easylist.txt: 33341) -.lyricsfreak.com/.*/overlay\.js -# ||lyrics5ab.com/wp-content/add$subdocument (easylist.txt: 33340) -.lyrics5ab.com/wp-content/add -# ||lygo.com/scripts/catman/ (easylist.txt: 33339) -.lygo.com/scripts/catman/ -# ||lycos.com/catman/ (easylist.txt: 33338) -.lycos.com/catman/ -# ||lw2.gamecopyworld.com^ (easylist.txt: 33337) -.lw2.gamecopyworld.com -# ||lw1.lnkworld.com^$subdocument (easylist.txt: 33336) -.lw1.lnkworld.com -# ||lw1.gamecopyworld.com^$subdocument (easylist.txt: 33335) -.lw1.gamecopyworld.com -# ||luxury4play.com^*/ads/ (easylist.txt: 33334) -.luxury4play.com/.*/ads/ -# ||luckyshare.net/images/sda/ (easylist.txt: 33333) -.luckyshare.net/images/sda/ -# ||luckyshare.net/images/2top.png (easylist.txt: 33332) -.luckyshare.net/images/2top\.png -# ||luckyshare.net/images/1gotlucky.png (easylist.txt: 33331) -.luckyshare.net/images/1gotlucky\.png -# ||lucianne.com^*_*.html (easylist.txt: 33330) -.lucianne.com/.*_.*\.html -# ||lshunter.tv^*&task=getbets$xmlhttprequest (easylist.txt: 33329) -.lshunter.tv/.*&task=getbets -# ||lshunter.tv/images/bets/ (easylist.txt: 33328) -.lshunter.tv/images/bets/ -# ||lowyat.net/mainpage/background.jpg (easylist.txt: 33327) -.lowyat.net/mainpage/background\.jpg -# ||lowyat.net/lowyat/lowyat-bg.jpg (easylist.txt: 33326) -.lowyat.net/lowyat/lowyat-bg\.jpg -# ||lowendbox.com/wp-content/themes/leb/banners/ (easylist.txt: 33325) -.lowendbox.com/wp-content/themes/leb/banners/ -# ||lowellsun.com/litebanner/ (easylist.txt: 33324) -.lowellsun.com/litebanner/ -# ||lowbird.com/lbpun.php (easylist.txt: 33323) -.lowbird.com/lbpun\.php -# ||lowbird.com/lbpu.php (easylist.txt: 33322) -.lowbird.com/lbpu\.php -# ||lostrabbitmedia.com/images/banners/ (easylist.txt: 33321) -.lostrabbitmedia.com/images/banners/ -# ||looky.hyves.org^ (easylist.txt: 33320) -.looky.hyves.org -# ||lookbook.nu^*.html?$subdocument (easylist.txt: 33319) -.lookbook.nu/.*\.html\? -# ||lookbook.nu/show_skyscraper.html (easylist.txt: 33318) -.lookbook.nu/show_skyscraper\.html -# ||lookbook.nu/show_leaderboard.html (easylist.txt: 33317) -.lookbook.nu/show_leaderboard\.html -# ||londonstockexchange.com^*/fx.gif (easylist.txt: 33316) -.londonstockexchange.com/.*/fx\.gif -# ||londonprivaterentals.standard.co.uk^ (easylist.txt: 33315) -.londonprivaterentals.standard.co.uk -# ||london2012.com/imgml/partners/footer/ (easylist.txt: 33314) -.london2012.com/imgml/partners/footer/ -# ||london2012.com/img/sponsors/ (easylist.txt: 33313) -.london2012.com/img/sponsors/ -# ||lolzbook.com/test/ (easylist.txt: 33312) -.lolzbook.com/test/ -# ||loleasy.com^*/adsmanager.js (easylist.txt: 33311) -.loleasy.com/.*/adsmanager\.js -# ||loleasy.com/promo/ (easylist.txt: 33310) -.loleasy.com/promo/ -# ||logotv.com/content/skins/ (easylist.txt: 33309) -.logotv.com/content/skins/ -# ||logoopenstock.com/img/banners/ (easylist.txt: 33308) -.logoopenstock.com/img/banners/ -# ||locanto.co.za/run/afcbackfill/ (easylist.txt: 33307) -.locanto.co.za/run/afcbackfill/ -# ||localvictory.com^*/Trailblazer-Ad.png (easylist.txt: 33306) -.localvictory.com/.*/Trailblazer-Ad\.png -# ||localdirectories.com.au^*/bannerimages/ (easylist.txt: 33305) -.localdirectories.com.au/.*/bannerimages/ -# ||lmgtfy.com/s/images/ls_ (easylist.txt: 33304) -.lmgtfy.com/s/images/ls_ -# ||ll.a.hulu.com^ (easylist.txt: 33303) -.ll.a.hulu.com -# ||livingscoop.com/vastload.php (easylist.txt: 33302) -.livingscoop.com/vastload\.php -# ||livetvcenter.com/satellitedirect_ (easylist.txt: 33301) -.livetvcenter.com/satellitedirect_ -# ||livetv.ru/mb/ (easylist.txt: 33300) -.livetv.ru/mb/ -# ||livetradingnews.com/wp-content/uploads/vamp_cigarettes.png (easylist.txt: 33299) -.livetradingnews.com/wp-content/uploads/vamp_cigarettes\.png -# ||livestream.com^*/overlay/ (easylist.txt: 33298) -.livestream.com/.*/overlay/ -# ||livesearch.ninemsn.com.au^$subdocument (easylist.txt: 33297) -.livesearch.ninemsn.com.au -# ||livescore.in/res/image/bookmaker-list.png (easylist.txt: 33296) -.livescore.in/res/image/bookmaker-list\.png -# ||liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn.gif (easylist.txt: 33295) -.liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn\.gif -# ||livejasmin.com/freechat.php (easylist.txt: 33294) -.livejasmin.com/freechat\.php -# ||live-proxy.com/vectrotunnel-logo.jpg (easylist.txt: 33293) -.live-proxy.com/vectrotunnel-logo\.jpg -# ||live-proxy.com/hide-my-ass.gif (easylist.txt: 33292) -.live-proxy.com/hide-my-ass\.gif -# ||littleindia.com/files/banners/ (easylist.txt: 33291) -.littleindia.com/files/banners/ -# ||liquidcompass.net^*/purchase_ (easylist.txt: 33290) -.liquidcompass.net/.*/purchase_ -# ||liquidcompass.net/playerapi/redirect/ (easylist.txt: 33289) -.liquidcompass.net/playerapi/redirect/ -# ||lionsrugby.co.za^*/sponsors. (easylist.txt: 33288) -.lionsrugby.co.za/.*/sponsors\. -# ||linuxtopia.org/includes/$subdocument (easylist.txt: 33287) -.linuxtopia.org/includes/ -# ||linuxsat-support.com/vsa_banners/ (easylist.txt: 33286) -.linuxsat-support.com/vsa_banners/ -# ||linuxmint.com/pictures/sponsors/ (easylist.txt: 33285) -.linuxmint.com/pictures/sponsors/ -# ||linuxmint.com/img/sponsor/ (easylist.txt: 33284) -.linuxmint.com/img/sponsor/ -# ||linuxinsider.com/images/sda/ (easylist.txt: 33283) -.linuxinsider.com/images/sda/ -# ||linksrank.com/links/ (easylist.txt: 33282) -.linksrank.com/links/ -# ||linksave.in^*/downloadbutton_highspeed.png (easylist.txt: 33281) -.linksave.in/.*/downloadbutton_highspeed\.png -# ||linksave.in/img/downloadbutton_sh.png (easylist.txt: 33280) -.linksave.in/img/downloadbutton_sh\.png -# ||linksave.in/img/downloadbutton_hs.png (easylist.txt: 33279) -.linksave.in/img/downloadbutton_hs\.png -# ||linksave.in/img/downloadbutton_alt.png (easylist.txt: 33278) -.linksave.in/img/downloadbutton_alt\.png -# ||linksafe.info^*/mirror.png (easylist.txt: 33277) -.linksafe.info/.*/mirror\.png -# ||linkmoon.net/banners/ (easylist.txt: 33276) -.linkmoon.net/banners/ -# ||linkfm.co.za/images/banners/ (easylist.txt: 33275) -.linkfm.co.za/images/banners/ -# ||linkcentre.com/top_fp.php (easylist.txt: 33274) -.linkcentre.com/top_fp\.php -# ||linguee.com/banner/ (easylist.txt: 33273) -.linguee.com/banner/ -# ||limetorrentlinkmix.com/rd18/dop.js (easylist.txt: 33272) -.limetorrentlinkmix.com/rd18/dop\.js -# ||limesurvey.org/images/banners/ (easylist.txt: 33271) -.limesurvey.org/images/banners/ -# ||lifetips.com/sponsors/ (easylist.txt: 33270) -.lifetips.com/sponsors/ -# ||lifeinqueensland.com/images/156x183a_ (easylist.txt: 33269) -.lifeinqueensland.com/images/156x183a_ -# ||life.imagepix.org^ (easylist.txt: 33268) -.life.imagepix.org -# ||licensing.biz/media/banners/ (easylist.txt: 33267) -.licensing.biz/media/banners/ -# ||libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300.gif? (easylist.txt: 33266) -.libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300\.gif\? -# ||lfgcomic.com/wp-content/uploads/*/PageSkin_ (easylist.txt: 33265) -.lfgcomic.com/wp-content/uploads/.*/PageSkin_ -# ||lfcimages.com^*/sponsor- (easylist.txt: 33264) -.lfcimages.com/.*/sponsor- -# ||lfcimages.com^*/partner- (easylist.txt: 33263) -.lfcimages.com/.*/partner- -# ||letswatchsomething.com/images/filestreet_banner.jpg (easylist.txt: 33262) -.letswatchsomething.com/images/filestreet_banner\.jpg -# ||letour.fr/img/v6/sprite_partners_2x.png (easylist.txt: 33261) -.letour.fr/img/v6/sprite_partners_2x\.png -# ||letitbit.net/images/other/inst_forex_ (easylist.txt: 33260) -.letitbit.net/images/other/inst_forex_ -# ||lespagesjaunesafrique.com/bandeaux/ (easylist.txt: 33259) -.lespagesjaunesafrique.com/bandeaux/ -# ||lens101.com/images/banner.jpg (easylist.txt: 33258) -.lens101.com/images/banner\.jpg -# ||legalbusinessonline.com/popup/albpartners.aspx (easylist.txt: 33257) -.legalbusinessonline.com/popup/albpartners\.aspx -# ||lecydre.com/proxy.png (easylist.txt: 33256) -.lecydre.com/proxy\.png -# ||learnspanishtoday.com/aff/img/banners/ (easylist.txt: 33255) -.learnspanishtoday.com/aff/img/banners/ -# ||learnphotoediting.net/banners/ (easylist.txt: 33254) -.learnphotoediting.net/banners/ -# ||leagueunlimited.com/images/rooty/ (easylist.txt: 33253) -.leagueunlimited.com/images/rooty/ -# ||leadership.ng/cheki- (easylist.txt: 33252) -.leadership.ng/cheki- -# ||leader.co.za/leadership/banners/ (easylist.txt: 33251) -.leader.co.za/leadership/banners/ -# ||lazygirls.info/click.php (easylist.txt: 33250) -.lazygirls.info/click\.php -# ||lazygamer.net/kalahari.gif (easylist.txt: 33249) -.lazygamer.net/kalahari\.gif -# ||latex-community.org/images/banners/ (easylist.txt: 33248) -.latex-community.org/images/banners/ -# ||lasttorrents.org/pcmadd.swf (easylist.txt: 33247) -.lasttorrents.org/pcmadd\.swf -# ||lastminute.com^*/universal.html? (easylist.txt: 33246) -.lastminute.com/.*/universal\.html\? -# ||laredodaily.com/images/banners/ (easylist.txt: 33245) -.laredodaily.com/images/banners/ -# ||laptopmag.com/images/sponsorships/ (easylist.txt: 33244) -.laptopmag.com/images/sponsorships/ -# ||laobserved.com/tch-ad.jpg (easylist.txt: 33243) -.laobserved.com/tch-ad\.jpg -# ||lankabusinessonline.com/images/banners/ (easylist.txt: 33242) -.lankabusinessonline.com/images/banners/ -# ||lancasteronline.com^*/weather_sponsor.gif (easylist.txt: 33241) -.lancasteronline.com/.*/weather_sponsor\.gif -# ||lancasteronline.com^*/done_deal/ (easylist.txt: 33240) -.lancasteronline.com/.*/done_deal/ -# ||laliga.es/img/patrocinadores- (easylist.txt: 33239) -.laliga.es/img/patrocinadores- -# ||lake-link.com/images/sponsorLogos/ (easylist.txt: 33238) -.lake-link.com/images/sponsorLogos/ -# ||lagacetanewspaper.com^*/banners/ (easylist.txt: 33237) -.lagacetanewspaper.com/.*/banners/ -# ||labx.com/web/banners/ (easylist.txt: 33236) -.labx.com/web/banners/ -# ||labtimes.org/banner/ (easylist.txt: 33235) -.labtimes.org/banner/ -# ||l4dmaps.com/img/right_gameservers.gif (easylist.txt: 33234) -.l4dmaps.com/img/right_gameservers\.gif -# ||l4dmaps.com/i/right_dllme.gif (easylist.txt: 33233) -.l4dmaps.com/i/right_dllme\.gif -# ||l.yimg.com/mq/a/ (easylist.txt: 33232) -.l.yimg.com/mq/a/ -# ||l.yimg.com/ao/i/ad/ (easylist.txt: 33231) -.l.yimg.com/ao/i/ad/ -# ||l.yimg.com/a/i/*_wallpaper$image (easylist.txt: 33230) -.l.yimg.com/a/i/.*_wallpaper -# ||kyivpost.com/media/banners/ (easylist.txt: 33229) -.kyivpost.com/media/banners/ -# ||kxlh.com/images/banner/ (easylist.txt: 33228) -.kxlh.com/images/banner/ -# ||kwikupload.com/images/dlbtn.png (easylist.txt: 33225) -.kwikupload.com/images/dlbtn\.png -# ||kwanalu.co.za/upload/ad/ (easylist.txt: 33224) -.kwanalu.co.za/upload/ad/ -# ||kvcr.org^*/sponsors/ (easylist.txt: 33223) -.kvcr.org/.*/sponsors/ -# ||kuwaittimes.net/banners/ (easylist.txt: 33222) -.kuwaittimes.net/banners/ -# ||kukuplay.com/upload/*.swf (easylist.txt: 33221) -.kukuplay.com/upload/.*\.swf -# ||kuiken.co/static/w.js (easylist.txt: 33220) -.kuiken.co/static/w\.js -# ||ktradionetwork.com^*/banners/ (easylist.txt: 33219) -.ktradionetwork.com/.*/banners/ -# ||kstp.com^*/flexhousepromotions/ (easylist.txt: 33218) -.kstp.com/.*/flexhousepromotions/ -# ||ksstradio.com/wp-content/banners/ (easylist.txt: 33217) -.ksstradio.com/wp-content/banners/ -# ||krzk.com/uploads/banners/ (easylist.txt: 33216) -.krzk.com/uploads/banners/ -# ||kron.com/uploads/*-ad-$image (easylist.txt: 33215) -.kron.com/uploads/.*-ad- -# ||krebsonsecurity.com/b-kb/ (easylist.txt: 33214) -.krebsonsecurity.com/b-kb/ -# ||krebsonsecurity.com/b-ga/ (easylist.txt: 33213) -.krebsonsecurity.com/b-ga/ -# ||krapps.com^*-banner- (easylist.txt: 33212) -.krapps.com/.*-banner- -# ||kovideo.net^*.php?user_ (easylist.txt: 33211) -.kovideo.net/.*\.php\?user_ -# ||koreatimes.co.kr/www/images/bn/ (easylist.txt: 33210) -.koreatimes.co.kr/www/images/bn/ -# ||koreatimes.co.kr/upload/ad/ (easylist.txt: 33209) -.koreatimes.co.kr/upload/ad/ -# ||koreatimes.co.kr/images/bn/ (easylist.txt: 33208) -.koreatimes.co.kr/images/bn/ -# ||koreatimes.co.kr/ad/ (easylist.txt: 33207) -.koreatimes.co.kr/ad/ -# ||koreanmovie.com/img/banner/banner.jpg (easylist.txt: 33206) -.koreanmovie.com/img/banner/banner\.jpg -# ||koraliga.com/open.js (easylist.txt: 33205) -.koraliga.com/open\.js -# ||kontraband.com/media/takeovers/ (easylist.txt: 33204) -.kontraband.com/media/takeovers/ -# ||kongregate.com/images/help_devs_*.png (easylist.txt: 33203) -.kongregate.com/images/help_devs_.*\.png -# ||kompas.com/js_kompasads.php (easylist.txt: 33202) -.kompas.com/js_kompasads\.php -# ||komando.com^*/k2-interstitial.min.js? (easylist.txt: 33201) -.komando.com/.*/k2-interstitial\.min\.js\? -# ||kob.com/kobtvimages/flexhousepromotions/ (easylist.txt: 33200) -.kob.com/kobtvimages/flexhousepromotions/ -# ||knpr.org/common/sponsors/ (easylist.txt: 33199) -.knpr.org/common/sponsors/ -# ||knowthecause.com/images/banners/ (easylist.txt: 33198) -.knowthecause.com/images/banners/ -# ||knowledgespeak.com/images/banner/ (easylist.txt: 33197) -.knowledgespeak.com/images/banner/ -# ||knowfree.net^*/ezm125x125.gif (easylist.txt: 33196) -.knowfree.net/.*/ezm125x125\.gif -# ||knco.com/wp-content/uploads/wpt/ (easylist.txt: 33195) -.knco.com/wp-content/uploads/wpt/ -# ||kncminer.com/userfiles/image/250_240.jpg (easylist.txt: 33194) -.kncminer.com/userfiles/image/250_240\.jpg -# ||knbr.com^*/banners/ (easylist.txt: 33193) -.knbr.com/.*/banners/ -# ||klm.com^*/fls_redirect.html (easylist.txt: 33192) -.klm.com/.*/fls_redirect\.html -# ||klkdccs.net/pjs/yavli-tools.js (easylist.txt: 33191) -.klkdccs.net/pjs/yavli-tools\.js -# ||klfm967.co.uk/resources/creative/ (easylist.txt: 33190) -.klfm967.co.uk/resources/creative/ -# ||kleisauke.nl/static/img/bar.gif (easylist.txt: 33189) -.kleisauke.nl/static/img/bar\.gif -# ||klav1230am.com^*/banners/ (easylist.txt: 33188) -.klav1230am.com/.*/banners/ -# ||kjul1047.com^*/clientgraphics/ (easylist.txt: 33187) -.kjul1047.com/.*/clientgraphics/ -# ||kjlhradio.com^*/banners/ (easylist.txt: 33186) -.kjlhradio.com/.*/banners/ -# ||kjlhradio.com^*-300x250. (easylist.txt: 33185) -.kjlhradio.com/.*-300x250\. -# ||kitz.co.uk/files/jump2/ (easylist.txt: 33184) -.kitz.co.uk/files/jump2/ -# ||kitguru.net/wp-content/wrap.jpg (easylist.txt: 33183) -.kitguru.net/wp-content/wrap\.jpg -# ||kitguru.net/wp-content/banners/ (easylist.txt: 33182) -.kitguru.net/wp-content/banners/ -# ||kitguru.net/?kitguru_wrapjs=1&ver= (easylist.txt: 33181) -.kitguru.net/\?kitguru_wrapjs=1&ver= -# ||kitco.com^*/banners/ (easylist.txt: 33180) -.kitco.com/.*/banners/ -# ||kitco.com/ssi/market_ox_deanmg.stm (easylist.txt: 33179) -.kitco.com/ssi/market_ox_deanmg\.stm -# ||kitco.com/ssi/home_ox_deanmg.stm (easylist.txt: 33178) -.kitco.com/ssi/home_ox_deanmg\.stm -# ||kitco.com/ssi/dmg_banner_001.stm (easylist.txt: 33177) -.kitco.com/ssi/dmg_banner_001\.stm -# ||kirupa.com/supporter/ (easylist.txt: 33176) -.kirupa.com/supporter/ -# ||kinox.tv/g.js (easylist.txt: 33175) -.kinox.tv/g\.js -# ||kinox.to/com/ (easylist.txt: 33174) -.kinox.to/com/ -# ||kinox.to/392i921321.js (easylist.txt: 33173) -.kinox.to/392i921321\.js -# ||kingofsat.net/pub/ (easylist.txt: 33172) -.kingofsat.net/pub/ -# ||kingfiles.net/images/bt.png (easylist.txt: 33171) -.kingfiles.net/images/bt\.png -# ||kickoff.com/images/sleeves/ (easylist.txt: 33170) -.kickoff.com/images/sleeves/ -# ||kickasstorrent.ph/kat_adplib.js (easylist.txt: 33169) -.kickasstorrent.ph/kat_adplib\.js -# ||khon2.com^*/sponsors/ (easylist.txt: 33168) -.khon2.com/.*/sponsors/ -# ||khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N.jpg (easylist.txt: 33167) -.khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N\.jpg -# ||khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN.jpg (easylist.txt: 33166) -.khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN\.jpg -# ||kfog.com^*/banners/ (easylist.txt: 33165) -.kfog.com/.*/banners/ -# ||keygen-fm.ru/images/*.swf (easylist.txt: 33164) -.keygen-fm.ru/images/.*\.swf -# ||kexp.org^*/sponsoredby. (easylist.txt: 33163) -.kexp.org/.*/sponsoredby\. -# ||kexp.org^*/sponsor- (easylist.txt: 33162) -.kexp.org/.*/sponsor- -# ||kewlshare.com/reward.html (easylist.txt: 33161) -.kewlshare.com/reward\.html -# ||kermit.macnn.com^ (easylist.txt: 33160) -.kermit.macnn.com -# ||kephyr.com/spywarescanner/banner1.gif (easylist.txt: 33159) -.kephyr.com/spywarescanner/banner1\.gif -# ||kentonline.co.uk/weatherimages/sponsor_ (easylist.txt: 33158) -.kentonline.co.uk/weatherimages/sponsor_ -# ||kentonline.co.uk/weatherimages/SEW.jpg (easylist.txt: 33157) -.kentonline.co.uk/weatherimages/SEW\.jpg -# ||kentonline.co.uk/weatherimages/Britelite.gif (easylist.txt: 33156) -.kentonline.co.uk/weatherimages/Britelite\.gif -# ||kendrickcoleman.com/images/banners/ (easylist.txt: 33155) -.kendrickcoleman.com/images/banners/ -# ||keepvid.com/images/winxdvd- (easylist.txt: 33154) -.keepvid.com/images/winxdvd- -# ||keepvid.com/images/ilivid- (easylist.txt: 33153) -.keepvid.com/images/ilivid- -# ||keepthelighton.vpsboard.com^ (easylist.txt: 33152) -.keepthelighton.vpsboard.com -# ||keenspot.com/images/headerbar- (easylist.txt: 33151) -.keenspot.com/images/headerbar- -# ||kdoctv.net/images/banners/ (easylist.txt: 33150) -.kdoctv.net/images/banners/ -# ||kdnuggets.com/aps/ (easylist.txt: 33149) -.kdnuggets.com/aps/ -# ||kcrw.com/collage-images/itunes.gif (easylist.txt: 33148) -.kcrw.com/collage-images/itunes\.gif -# ||kcrw.com/collage-images/amazon.gif (easylist.txt: 33147) -.kcrw.com/collage-images/amazon\.gif -# ||kblx.com/upload/takeover_ (easylist.txt: 33146) -.kblx.com/upload/takeover_ -# ||kbcradio.eu/img/banner/ (easylist.txt: 33145) -.kbcradio.eu/img/banner/ -# ||kavkisfile.com/images/ly.gif (easylist.txt: 33144) -.kavkisfile.com/images/ly\.gif -# ||kavkisfile.com/images/ly-mini.gif (easylist.txt: 33143) -.kavkisfile.com/images/ly-mini\.gif -# ||kat-ads.torrenticity.com^ (easylist.txt: 33142) -.kat-ads.torrenticity.com -# ||kassfm.co.ke/images/moneygram.gif (easylist.txt: 33141) -.kassfm.co.ke/images/moneygram\.gif -# ||kansascity.com/images/touts/ds_ (easylist.txt: 33140) -.kansascity.com/images/touts/ds_ -# ||kamcity.com/menu/banners/ (easylist.txt: 33139) -.kamcity.com/menu/banners/ -# ||kamcity.com/banager/banners/ (easylist.txt: 33138) -.kamcity.com/banager/banners/ -# ||kaieteurnewsonline.com/revenue/ (easylist.txt: 33137) -.kaieteurnewsonline.com/revenue/ -# ||juventus.com/pics/sponsors/ (easylist.txt: 33136) -.juventus.com/pics/sponsors/ -# ||justsomething.co/wp-content/uploads/*-250x250. (easylist.txt: 33135) -.justsomething.co/wp-content/uploads/.*-250x250\. -# ||just-download.com/banner/ (easylist.txt: 33134) -.just-download.com/banner/ -# ||junocloud.me/promos/ (easylist.txt: 33133) -.junocloud.me/promos/ -# ||jumptags.com/joozit/presentation/images/banners/ (easylist.txt: 33132) -.jumptags.com/joozit/presentation/images/banners/ -# ||jozikids.co.za/uploadimages/140x140_ (easylist.txt: 33131) -.jozikids.co.za/uploadimages/140x140_ -# ||jozikids.co.za/uploadimages/*_140x140_ (easylist.txt: 33130) -.jozikids.co.za/uploadimages/.*_140x140_ -# ||joursouvres.fr^*/pub_ (easylist.txt: 33129) -.joursouvres.fr/.*/pub_ -# ||journeychristiannews.com/images/banners/ (easylist.txt: 33128) -.journeychristiannews.com/images/banners/ -# ||journal-news.net/annoyingpopup/ (easylist.txt: 33127) -.journal-news.net/annoyingpopup/ -# ||joomladigger.com/images/banners/ (easylist.txt: 33126) -.joomladigger.com/images/banners/ -# ||joindota.com/wp-content/*.png$image (easylist.txt: 33124) -.joindota.com/wp-content/.*\.png -# ||johngaltfla.com/wordpress/wp-content/uploads/*/TB2K_LOGO.jpg (easylist.txt: 33123) -.johngaltfla.com/wordpress/wp-content/uploads/.*/TB2K_LOGO\.jpg -# ||johngaltfla.com/wordpress/wp-content/uploads/*/jmcs_specaialbanner.jpg (easylist.txt: 33122) -.johngaltfla.com/wordpress/wp-content/uploads/.*/jmcs_specaialbanner\.jpg -# ||johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions.png (easylist.txt: 33121) -.johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions\.png -# ||johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge.jpg (easylist.txt: 33120) -.johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge\.jpg -# ||johnbridge.com/vbulletin/banner_rotate.js (easylist.txt: 33119) -.johnbridge.com/vbulletin/banner_rotate\.js -# ||jillianmichaels.com/images/publicsite/advertisingslug.gif (easylist.txt: 33118) -.jillianmichaels.com/images/publicsite/advertisingslug\.gif -# ||jheberg.net/img/mp.png (easylist.txt: 33117) -.jheberg.net/img/mp\.png -# ||jewishyellow.com/pics/banners/ (easylist.txt: 33116) -.jewishyellow.com/pics/banners/ -# ||jewishvoiceny.com/ban2/ (easylist.txt: 33115) -.jewishvoiceny.com/ban2/ -# ||jewishtribune.ca^*/banners/ (easylist.txt: 33114) -.jewishtribune.ca/.*/banners/ -# ||jewishtimes-sj.com/rop/ (easylist.txt: 33113) -.jewishtimes-sj.com/rop/ -# ||jewishnews.co.uk^*banner (easylist.txt: 33112) -.jewishnews.co.uk/.*banner -# ||jewishexponent.com^*/banners/ (easylist.txt: 33111) -.jewishexponent.com/.*/banners/ -# ||jebril.com/sites/default/files/images/top-banners/ (easylist.txt: 33110) -.jebril.com/sites/default/files/images/top-banners/ -# ||jdownloader.org^*/smbanner.png (easylist.txt: 33109) -.jdownloader.org/.*/smbanner\.png -# ||jdownloader.org/_media/screenshots/banner.png (easylist.txt: 33108) -.jdownloader.org/_media/screenshots/banner\.png -# ||jazzandblues.org^*/iTunes_ (easylist.txt: 33107) -.jazzandblues.org/.*/iTunes_ -# ||jayisgames.com/maxcdn_160x250.png (easylist.txt: 33106) -.jayisgames.com/maxcdn_160x250\.png -# ||javascript-coder.com^*/make-form-without-coding.png (easylist.txt: 33105) -.javascript-coder.com/.*/make-form-without-coding\.png -# ||javascript-coder.com^*/form-submit-larger.jpg (easylist.txt: 33104) -.javascript-coder.com/.*/form-submit-larger\.jpg -# ||javamex.com/images/AdFrenchVocabGamesAnim.gif (easylist.txt: 33103) -.javamex.com/images/AdFrenchVocabGamesAnim\.gif -# ||jango.com/assets/promo/1600x1000- (easylist.txt: 33102) -.jango.com/assets/promo/1600x1000- -# ||jame-world.com^*/adv/ (easylist.txt: 33101) -.jame-world.com/.*/adv/ -# ||jamaica-gleaner.com/images/promo/ (easylist.txt: 33100) -.jamaica-gleaner.com/images/promo/ -# ||ixquick.nl/graphics/banner_ (easylist.txt: 33099) -.ixquick.nl/graphics/banner_ -# ||iwebtool.com^*/bannerview.php (easylist.txt: 33098) -.iwebtool.com/.*/bannerview\.php -# ||iurfm.com/images/sponsors/ (easylist.txt: 33097) -.iurfm.com/images/sponsors/ -# ||itworld.com/slideshow/iframe/topimu/ (easylist.txt: 33096) -.itworld.com/slideshow/iframe/topimu/ -# ||itwebafrica.com/images/logos/ (easylist.txt: 33095) -.itwebafrica.com/images/logos/ -# ||itweb.co.za^*sponsoredby (easylist.txt: 33094) -.itweb.co.za/.*sponsoredby -# ||itweb.co.za/sidelogos/ (easylist.txt: 33093) -.itweb.co.za/sidelogos/ -# ||itweb.co.za/logos/ (easylist.txt: 33092) -.itweb.co.za/logos/ -# ||itweb.co.za/banners/ (easylist.txt: 33091) -.itweb.co.za/banners/ -# ||itv.com/adexplore/*/config.xml (easylist.txt: 33089) -.itv.com/adexplore/.*/config\.xml -# ||itpro.co.uk/images/skins/ (easylist.txt: 33088) -.itpro.co.uk/images/skins/ -# ||italiangenealogy.com/images/banners/ (easylist.txt: 33087) -.italiangenealogy.com/images/banners/ -# ||isxdead.com/images/showbox.png (easylist.txt: 33086) -.isxdead.com/images/showbox\.png -# ||isup.me/images/dotbiz_banner.jpg (easylist.txt: 33085) -.isup.me/images/dotbiz_banner\.jpg -# ||israeltoday.co.il^*/promo/ (easylist.txt: 33084) -.israeltoday.co.il/.*/promo/ -# ||israelidiamond.co.il^*/bannerdisplay.aspx? (easylist.txt: 33083) -.israelidiamond.co.il/.*/bannerdisplay\.aspx\? -# ||israeldefense.com/_Uploads/dbsBanners/ (easylist.txt: 33082) -.israeldefense.com/_Uploads/dbsBanners/ -# ||isportconnect.com//images/banners/ (easylist.txt: 33081) -# ||island.lk/userfiles/image/danweem/ (easylist.txt: 33080) -.island.lk/userfiles/image/danweem/ -# ||islamicfocus.co.za/images/banners/ (easylist.txt: 33079) -.islamicfocus.co.za/images/banners/ -# ||islamicfinder.org/cimage/ (easylist.txt: 33078) -.islamicfinder.org/cimage/ -# ||isitnormal.com/img/iphone_hp_promo_wide.png (easylist.txt: 33077) -.isitnormal.com/img/iphone_hp_promo_wide\.png -# ||isitdownrightnow.com/graphics/speedupmypc*.png (easylist.txt: 33076) -.isitdownrightnow.com/graphics/speedupmypc.*\.png -# ||irv2.com/images/sponsors/ (easylist.txt: 33075) -.irv2.com/images/sponsors/ -# ||irv2.com/forums/*show_banner (easylist.txt: 33074) -.irv2.com/forums/.*show_banner -# ||irv2.com/attachments/banners/ (easylist.txt: 33073) -.irv2.com/attachments/banners/ -# ||ironsquid.tv/data/uploads/sponsors/ (easylist.txt: 33072) -.ironsquid.tv/data/uploads/sponsors/ -# ||ironspider.ca/pics/hostgator_green120x600.gif (easylist.txt: 33071) -.ironspider.ca/pics/hostgator_green120x600\.gif -# ||ironmagazine.com^*/banners.php (easylist.txt: 33070) -.ironmagazine.com/.*/banners\.php -# ||irishracing.com/graphics/books (easylist.txt: 33069) -.irishracing.com/graphics/books -# ||irishdictionary.ie/view/images/ispaces-makes-any-computer.jpg (easylist.txt: 33068) -.irishdictionary.ie/view/images/ispaces-makes-any-computer\.jpg -# ||irishdev.com/files/banners/ (easylist.txt: 33067) -.irishdev.com/files/banners/ -# ||irishamericannews.com/images/banners/ (easylist.txt: 33066) -.irishamericannews.com/images/banners/ -# ||irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/*DealsBanner_ (easylist.txt: 33065) -.irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/.*DealsBanner_ -# ||iptools.com/sky.php (easylist.txt: 33064) -.iptools.com/sky\.php -# ||ipinfodb.com/img/adds/ (easylist.txt: 33063) -.ipinfodb.com/img/adds/ -# ||ipaddress.com/banner/ (easylist.txt: 33062) -.ipaddress.com/banner/ -# ||ip-adress.com/superb/ (easylist.txt: 33060) -.ip-adress.com/superb/ -# ||ip-adress.com/i/ewa/ (easylist.txt: 33059) -.ip-adress.com/i/ewa/ -# ||intoday.in/btstryad.html (easylist.txt: 33058) -.intoday.in/btstryad\.html -# ||internationalmeetingsreview.com//uploads/banner/ (easylist.txt: 33057) -# ||international.to/link_unit.html (easylist.txt: 33056) -.international.to/link_unit\.html -# ||international.to/large.html (easylist.txt: 33055) -.international.to/large\.html -# ||international.to/600.html (easylist.txt: 33054) -.international.to/600\.html -# ||interfacelift.com^*/artistsvalley_160x90_ (easylist.txt: 33053) -.interfacelift.com/.*/artistsvalley_160x90_ -# ||interfacelift.com/inc_new/$subdocument (easylist.txt: 33052) -.interfacelift.com/inc_new/ -# ||interest.co.nz^*_skin_ (easylist.txt: 33051) -.interest.co.nz/.*_skin_ -# ||interest.co.nz^*_skin. (easylist.txt: 33050) -.interest.co.nz/.*_skin\. -# ||interest.co.nz/banners/ (easylist.txt: 33049) -.interest.co.nz/banners/ -# ||intelseek.com/intelseekads/ (easylist.txt: 33048) -.intelseek.com/intelseekads/ -# ||intellicast.com/travel/cheapflightswidget.htm (easylist.txt: 33047) -.intellicast.com/travel/cheapflightswidget\.htm -# ||intellicast.com/outsidein.js (easylist.txt: 33046) -.intellicast.com/outsidein\.js -# ||intel.com/sites/wap/global/wap.js (easylist.txt: 33045) -.intel.com/sites/wap/global/wap\.js -# ||inspirefirst.com^*/banners/ (easylist.txt: 33044) -.inspirefirst.com/.*/banners/ -# ||insideyork.co.uk/assets/images/sponsors/ (easylist.txt: 33043) -.insideyork.co.uk/assets/images/sponsors/ -# ||insidethe.agency^*-300x250. (easylist.txt: 33042) -.insidethe.agency/.*-300x250\. -# ||insidehw.com/images/banners/ (easylist.txt: 33041) -.insidehw.com/images/banners/ -# ||insidedp.com/images/banners/ (easylist.txt: 33040) -.insidedp.com/images/banners/ -# ||insidebutlercounty.com/images/468- (easylist.txt: 33039) -.insidebutlercounty.com/images/468- -# ||insidebutlercounty.com/images/300- (easylist.txt: 33038) -.insidebutlercounty.com/images/300- -# ||insidebutlercounty.com/images/200- (easylist.txt: 33037) -.insidebutlercounty.com/images/200- -# ||insidebutlercounty.com/images/180- (easylist.txt: 33036) -.insidebutlercounty.com/images/180- -# ||insidebutlercounty.com/images/160- (easylist.txt: 33035) -.insidebutlercounty.com/images/160- -# ||insidebutlercounty.com/images/100- (easylist.txt: 33034) -.insidebutlercounty.com/images/100- -# ||inquirer.net/wp-content/themes/news/images/wallpaper_ (easylist.txt: 33033) -.inquirer.net/wp-content/themes/news/images/wallpaper_ -# ||inkscapeforum.com/images/banners/ (easylist.txt: 33032) -.inkscapeforum.com/images/banners/ -# ||injpn.net/images/banners/ (easylist.txt: 33031) -.injpn.net/images/banners/ -# ||ingdirect.com^*/adwizard/ (easylist.txt: 33030) -.ingdirect.com/.*/adwizard/ -# ||infoseek.co.jp/isweb/clip.html (easylist.txt: 33029) -.infoseek.co.jp/isweb/clip\.html -# ||infosecisland.com/ajax/viewbanner/ (easylist.txt: 33028) -.infosecisland.com/ajax/viewbanner/ -# ||informer.com/js/onexit*.js (easylist.txt: 33027) -.informer.com/js/onexit.*\.js -# ||informe.com/img/banner_ (easylist.txt: 33026) -.informe.com/img/banner_ -# ||infoq.com^*/banners/ (easylist.txt: 33025) -.infoq.com/.*/banners/ -# ||infobetting.com/bookmaker/ (easylist.txt: 33024) -.infobetting.com/bookmaker/ -# ||infobetting.com/b/ (easylist.txt: 33023) -.infobetting.com/b/ -# ||info.sciencedaily.com/api/ (easylist.txt: 33022) -.info.sciencedaily.com/api/ -# ||info.break.com^*/sponsors/ (easylist.txt: 33021) -.info.break.com/.*/sponsors/ -# ||industryabout.com/images/banners/ (easylist.txt: 33020) -.industryabout.com/images/banners/ -# ||indiatimes.com/google$subdocument (easylist.txt: 33019) -.indiatimes.com/google -# ||indiatimes.com/articleshow_google_$subdocument (easylist.txt: 33018) -.indiatimes.com/articleshow_google_ -# ||indiantelevision.com/banner/ (easylist.txt: 33017) -.indiantelevision.com/banner/ -# ||indianexpress.com^*/banner/ (easylist.txt: 33016) -.indianexpress.com/.*/banner/ -# ||indiainfoline.com/wc/ads/ (easylist.txt: 33015) -.indiainfoline.com/wc/ads/ -# ||india.com^*-sponsor. (easylist.txt: 33014) -.india.com/.*-sponsor\. -# ||india.com/zeenews_head2n.jpg (easylist.txt: 33013) -.india.com/zeenews_head2n\.jpg -# ||india.com/ads/jw/ova-jw.swf$object-subrequest (easylist.txt: 33012) -.india.com/ads/jw/ova-jw\.swf -# ||indepthafrica.com^*/Banner-canreach.gif (easylist.txt: 33011) -.indepthafrica.com/.*/Banner-canreach\.gif -# ||independent.co.uk^*/partners/ (easylist.txt: 33010) -.independent.co.uk/.*/partners/ -# ||independent.co.uk^*/300unit/ (easylist.txt: 33009) -.independent.co.uk/.*/300unit/ -# ||independent.co.uk/multimedia/archive/$subdocument (easylist.txt: 33008) -.independent.co.uk/multimedia/archive/ -# ||independent.co.uk/kelkoo/ (easylist.txt: 33007) -.independent.co.uk/kelkoo/ -# ||independent.co.ug/images/banners/ (easylist.txt: 33006) -.independent.co.ug/images/banners/ -# ||indeed.com/ads/ (easylist.txt: 33005) -.indeed.com/ads/ -# ||incentivetravel.co.uk/images/banners/ (easylist.txt: 33004) -.incentivetravel.co.uk/images/banners/ -# ||inanyevent.ch/images/banners/ (easylist.txt: 33003) -.inanyevent.ch/images/banners/ -# ||in.com^*/170x50_ (easylist.txt: 33002) -.in.com/.*/170x50_ -# ||in.com/addIframe/ (easylist.txt: 33001) -.in.com/addIframe/ -# ||impulsedriven.com/app_images/wallpaper/ (easylist.txt: 33000) -.impulsedriven.com/app_images/wallpaper/ -# ||impactradio.co.za^*/banners/ (easylist.txt: 32999) -.impactradio.co.za/.*/banners/ -# ||imouto.org/images/mangagamer/ (easylist.txt: 32998) -.imouto.org/images/mangagamer/ -# ||imouto.org/images/jlist/ (easylist.txt: 32997) -.imouto.org/images/jlist/ -# ||imgur.com/include/zedoinviewstub1621.html (easylist.txt: 32996) -.imgur.com/include/zedoinviewstub1621\.html -# ||imgshots.com/includes/js/layer.js (easylist.txt: 32994) -.imgshots.com/includes/js/layer\.js -# ||imgchili.net/lj.js (easylist.txt: 32993) -.imgchili.net/lj\.js -# ||imgchili.net/js/showa.js (easylist.txt: 32992) -.imgchili.net/js/showa\.js -# ||imgcarry.com^*/oc.js (easylist.txt: 32991) -.imgcarry.com/.*/oc\.js -# ||imgburn.com/images/your3gift.gif (easylist.txt: 32990) -.imgburn.com/images/your3gift\.gif -# ||imgburn.com/images/ddigest_ (easylist.txt: 32989) -.imgburn.com/images/ddigest_ -# ||imgah.com/traffic$subdocument (easylist.txt: 32988) -.imgah.com/traffic -# ||img*.i-comers.com^ (easylist.txt: 32987) -.img*./.*\.i-comers\.com[^\w%.-] -.img*.i-comers.com -# ||imfdb.org^*/FoG-300x250.jpg (easylist.txt: 32986) -.imfdb.org/.*/FoG-300x250\.jpg -# ||imdb.com/images/*/scriptloader.$subdocument (easylist.txt: 32985) -.imdb.com/images/.*/scriptloader\. -# ||imcdb.org/res/cth_ (easylist.txt: 32984) -.imcdb.org/res/cth_ -# ||imagevenue.com/interstitial. (easylist.txt: 32983) -.imagevenue.com/interstitial\. -# ||imagetoupload.com/images/87633952425570896161.jpg (easylist.txt: 32982) -.imagetoupload.com/images/87633952425570896161\.jpg -# ||imagesnake.com^*/oc.js (easylist.txt: 32981) -.imagesnake.com/.*/oc\.js -# ||imageshack.us/ym.php? (easylist.txt: 32980) -.imageshack.us/ym\.php\? -# ||imageshack.us/images/contests/*/lp-bg.jpg (easylist.txt: 32979) -.imageshack.us/images/contests/.*/lp-bg\.jpg -# ||images.sharkscope.com/everest/twister.jpg (easylist.txt: 32978) -.images.sharkscope.com/everest/twister\.jpg -# ||images.sharkscope.com/acr/*_Ad- (easylist.txt: 32977) -.images.sharkscope.com/acr/.*_Ad- -# ||images.mmorpg.com/images/*skin (easylist.txt: 32976) -.images.mmorpg.com/images/.*skin -# ||images.globes.co.il^*/fixedpromoright. (easylist.txt: 32975) -.images.globes.co.il/.*/fixedpromoright\. -# ||images.bitreactor.to/designs/ (easylist.txt: 32974) -.images.bitreactor.to/designs/ -# ||images-amazon.com^*/marqueepushdown/ (easylist.txt: 32973) -.images-amazon.com/.*/marqueepushdown/ -# ||images-amazon.com/images/*/da-us/da-$script (easylist.txt: 32972) -.images-amazon.com/images/.*/da-us/da- -# ||images-amazon.com/images/*/browser-scripts/dae- (easylist.txt: 32971) -.images-amazon.com/images/.*/browser-scripts/dae- -# ||images-amazon.com/images/*/browser-scripts/da- (easylist.txt: 32970) -.images-amazon.com/images/.*/browser-scripts/da- -# ||imagerise.com/ir2.js (easylist.txt: 32969) -.imagerise.com/ir2\.js -# ||imagerise.com/ir.js (easylist.txt: 32968) -.imagerise.com/ir\.js -# ||imageporter.com/someo.html (easylist.txt: 32967) -.imageporter.com/someo\.html -# ||imageporter.com/micromoo.html (easylist.txt: 32966) -.imageporter.com/micromoo\.html -# ||imageporter.com/hiokax.js (easylist.txt: 32965) -.imageporter.com/hiokax\.js -# ||imagepix.org/Images/imageput.jpg (easylist.txt: 32964) -.imagepix.org/Images/imageput\.jpg -# ||imagefruit.com/includes/js/layer.js (easylist.txt: 32963) -.imagefruit.com/includes/js/layer\.js -# ||imagefruit.com/includes/js/ex.js (easylist.txt: 32962) -.imagefruit.com/includes/js/ex\.js -# ||imagefruit.com/includes/js/bgcont.js (easylist.txt: 32961) -.imagefruit.com/includes/js/bgcont\.js -# ||imagebam.com/img/coolstuffbro.jpg (easylist.txt: 32960) -.imagebam.com/img/coolstuffbro\.jpg -# ||imagebam.com/download_button.png (easylist.txt: 32959) -.imagebam.com/download_button\.png -# ||imads.rediff.com^ (easylist.txt: 32957) -.imads.rediff.com -# ||iloveim.com/cadv (easylist.txt: 32956) -.iloveim.com/cadv -# ||iload.to/img/ul/impopi.js (easylist.txt: 32955) -.iload.to/img/ul/impopi\.js -# ||ilcorsaronero.info/home.gif (easylist.txt: 32953) -.ilcorsaronero.info/home\.gif -# ||ijoomla.com/aff/banners/ (easylist.txt: 32952) -.ijoomla.com/aff/banners/ -# ||ijn.com/images/banners/ (easylist.txt: 32951) -.ijn.com/images/banners/ -# ||iftn.ie/images/data/banners/ (easylist.txt: 32950) -.iftn.ie/images/data/banners/ -# ||iframe.travel.yahoo.com^ (easylist.txt: 32949) -.iframe.travel.yahoo.com -# ||ifilm.com/website/*-skin- (easylist.txt: 32948) -.ifilm.com/website/.*-skin- -# ||idg.com.au^*_skin.jpg (easylist.txt: 32946) -.idg.com.au/.*_skin\.jpg -# ||idg.com.au/images/*_promo$image (easylist.txt: 32945) -.idg.com.au/images/.*_promo -# ||idg.com.au/files/skins/ (easylist.txt: 32944) -.idg.com.au/files/skins/ -# ||idesitv.com^*/loadbanners. (easylist.txt: 32943) -.idesitv.com/.*/loadbanners\. -# ||iddin.com/img/chatwing_banner_ (easylist.txt: 32942) -.iddin.com/img/chatwing_banner_ -# ||iddin.com/img/chatwing_banner. (easylist.txt: 32941) -.iddin.com/img/chatwing_banner\. -# ||icydk.com^*/title_visit_sponsors. (easylist.txt: 32940) -.icydk.com/.*/title_visit_sponsors\. -# ||icrt.com.tw/downloads/banner/ (easylist.txt: 32938) -.icrt.com.tw/downloads/banner/ -# ||iconeye.com/images/banners/ (easylist.txt: 32937) -.iconeye.com/images/banners/ -# ||icelandreview.com^*/auglysingar/ (easylist.txt: 32936) -.icelandreview.com/.*/auglysingar/ -# ||iceinspace.com.au/iisads/ (easylist.txt: 32935) -.iceinspace.com.au/iisads/ -# ||ibtimes.com^*/sponsor_ (easylist.txt: 32934) -.ibtimes.com/.*/sponsor_ -# ||ibtimes.com^*&popunder (easylist.txt: 32933) -.ibtimes.com/.*&popunder -# ||ibtimes.com/banner/ (easylist.txt: 32932) -.ibtimes.com/banner/ -# ||ibsrv.net/sponsors/ (easylist.txt: 32931) -.ibsrv.net/sponsors/ -# ||ibsrv.net/*_215x30_ (easylist.txt: 32928) -.ibsrv.net/.*_215x30_ -# ||ibsrv.net/*_215x30. (easylist.txt: 32927) -.ibsrv.net/.*_215x30\. -# ||ibsrv.net/*214x30. (easylist.txt: 32926) -.ibsrv.net/.*214x30\. -# ||ibrod.tv/ib.php (easylist.txt: 32925) -.ibrod.tv/ib\.php -# ||ibnlive.in.com^*/ibn_*_banner_ (easylist.txt: 32924) -.ibnlive.in.com/.*/ibn_.*_banner_ -# ||ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ (easylist.txt: 32923) -.ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ -# ||ibanners.empoweredcomms.com.au^ (easylist.txt: 32922) -.ibanners.empoweredcomms.com.au -# ||ians.in/iansad/ (easylist.txt: 32921) -.ians.in/iansad/ -# ||i3investor.com^*/partner/ (easylist.txt: 32920) -.i3investor.com/.*/partner/ -# ||i3investor.com^*/offer_ (easylist.txt: 32919) -.i3investor.com/.*/offer_ -# ||i.neoseeker.com/d/$subdocument (easylist.txt: 32918) -.i.neoseeker.com/d/ -# ||i.i.com.com/cnwk.1d/*/tt_post_dl.jpg (easylist.txt: 32917) -.i.i.com.com/cnwk\.1d/.*/tt_post_dl\.jpg -# ||i.com.com^*/vendor_bg_ (easylist.txt: 32916) -.i.com.com/.*/vendor_bg_ -# ||i-tech.com.au^*/banner/ (easylist.txt: 32915) -.i-tech.com.au/.*/banner/ -# ||i-sgcm.com/pagetakeover/ (easylist.txt: 32914) -.i-sgcm.com/pagetakeover/ -# ||hypemagazine.co.za/assets/bg/ (easylist.txt: 32913) -.hypemagazine.co.za/assets/bg/ -# ||hwinfo.com/images/se2banner.png (easylist.txt: 32912) -.hwinfo.com/images/se2banner\.png -# ||hwinfo.com/images/lansweeper.jpg (easylist.txt: 32911) -.hwinfo.com/images/lansweeper\.jpg -# ||hwbot.org/banner.img (easylist.txt: 32910) -.hwbot.org/banner\.img -# ||hurriyetdailynews.com/images/*_100x250_ (easylist.txt: 32909) -.hurriyetdailynews.com/images/.*_100x250_ -# ||hummy.org.uk^*/brotator/ (easylist.txt: 32908) -.hummy.org.uk/.*/brotator/ -# ||hulu.com/v3/revenue/ (easylist.txt: 32907) -.hulu.com/v3/revenue/ -# ||hulu.com/beacon/*=adauditerror (easylist.txt: 32906) -.hulu.com/beacon/.*=adauditerror -# ||hulkshare.oncdn.com^*/removeads. (easylist.txt: 32905) -.hulkshare.oncdn.com/.*/removeads\. -# ||hulkshare.com^*/adsmanager.js (easylist.txt: 32904) -.hulkshare.com/.*/adsmanager\.js -# ||hulkshare.com/promo/ (easylist.txt: 32903) -.hulkshare.com/promo/ -# ||hulkload.com/recommended/ (easylist.txt: 32902) -.hulkload.com/recommended/ -# ||hulkload.com/b/ (easylist.txt: 32901) -.hulkload.com/b/ -# ||hulkfile.eu/images/africa.gif (easylist.txt: 32900) -.hulkfile.eu/images/africa\.gif -# ||htmldog.com/r10/flowers/ (easylist.txt: 32898) -.htmldog.com/r10/flowers/ -# ||hqfooty.tv/ad (easylist.txt: 32897) -.hqfooty.tv/ad -# ||hpfanficarchive.com/freecoins2.jpg (easylist.txt: 32896) -.hpfanficarchive.com/freecoins2\.jpg -# ||howwemadeitinafrica.com^*/dhl-hdr.gif (easylist.txt: 32895) -.howwemadeitinafrica.com/.*/dhl-hdr\.gif -# ||howtogermany.com/banner/ (easylist.txt: 32894) -.howtogermany.com/banner/ -# ||howtogeek.com/go/ (easylist.txt: 32893) -.howtogeek.com/go/ -# ||houseoftravel.co.nz/flash/banner/ (easylist.txt: 32892) -.houseoftravel.co.nz/flash/banner/ -# ||houndmirror.com/images/XmkuP.gif (easylist.txt: 32891) -.houndmirror.com/images/XmkuP\.gif -# ||hothardware.com^*_staticbanner_*.jpg (easylist.txt: 32890) -.hothardware.com/.*_staticbanner_.*\.jpg -# ||hothardware.com/pgmerchanttable.aspx? (easylist.txt: 32889) -.hothardware.com/pgmerchanttable\.aspx\? -# ||hotgamesforgirls.com/html/$subdocument (easylist.txt: 32888) -.hotgamesforgirls.com/html/ -# ||hotfiletrend.com/dlp.gif (easylist.txt: 32887) -.hotfiletrend.com/dlp\.gif -# ||hotfilesearch.com/includes/images/mov_ (easylist.txt: 32886) -.hotfilesearch.com/includes/images/mov_ -# ||hotfile.com^*/banners/ (easylist.txt: 32885) -.hotfile.com/.*/banners/ -# ||hotbollywoodactress.net/freedatingindia.gif (easylist.txt: 32884) -.hotbollywoodactress.net/freedatingindia\.gif -# ||hotbollywoodactress.net/ff2.gif (easylist.txt: 32883) -.hotbollywoodactress.net/ff2\.gif -# ||hot-scene.com/cpop.js (easylist.txt: 32882) -.hot-scene.com/cpop\.js -# ||hostsearch.com/creative/ (easylist.txt: 32881) -.hostsearch.com/creative/ -# ||hostratings.co.uk/zeepeel. (easylist.txt: 32880) -.hostratings.co.uk/zeepeel\. -# ||hostingdedi.com/wp-content/uploads/add$subdocument (easylist.txt: 32879) -.hostingdedi.com/wp-content/uploads/add -# ||hostingbulk.com/zad.html (easylist.txt: 32878) -.hostingbulk.com/zad\.html -# ||hostingbulk.com/aad.html (easylist.txt: 32877) -.hostingbulk.com/aad\.html -# ||horriblesubs.info/playasia (easylist.txt: 32876) -.horriblesubs.info/playasia -# ||horizonsunlimited.com/alogos/ (easylist.txt: 32875) -.horizonsunlimited.com/alogos/ -# ||hongkongindians.com/advimages/ (easylist.txt: 32874) -.hongkongindians.com/advimages/ -# ||hongfire.com/banner/ (easylist.txt: 32873) -.hongfire.com/banner/ -# ||honda-tech.com/*-140x90.gif (easylist.txt: 32872) -.honda-tech.com/.*-140x90\.gif -# ||homeschoolmath.net/a/ (easylist.txt: 32871) -.homeschoolmath.net/a/ -# ||holyfragger.com/images/skins/ (easylist.txt: 32870) -.holyfragger.com/images/skins/ -# ||holyfamilyradio.org/banners/ (easylist.txt: 32869) -.holyfamilyradio.org/banners/ -# ||hollywoodbackwash.com/glam/ (easylist.txt: 32868) -.hollywoodbackwash.com/glam/ -# ||hockeybuzz.com/mb/b? (easylist.txt: 32867) -.hockeybuzz.com/mb/b\? -# ||hltv.org/images/csLucky.swf (easylist.txt: 32866) -.hltv.org/images/csLucky\.swf -# ||hltv.org//images/csgofastsky.png (easylist.txt: 32865) -# ||hkclubbing.com/images/banners/ (easylist.txt: 32864) -.hkclubbing.com/images/banners/ -# ||hitechlegion.com/images/banners/ (easylist.txt: 32863) -.hitechlegion.com/images/banners/ -# ||hipforums.com/newforums/calendarcolumn.php?cquery=bush (easylist.txt: 32862) -.hipforums.com/newforums/calendarcolumn\.php\?cquery=bush -# ||hipforums.com/images/banners/ (easylist.txt: 32861) -.hipforums.com/images/banners/ -# ||highdefjunkies.com^*/sponsor.jpg (easylist.txt: 32860) -.highdefjunkies.com/.*/sponsor\.jpg -# ||highdefjunkies.com^*/monoprice.jpg (easylist.txt: 32859) -.highdefjunkies.com/.*/monoprice\.jpg -# ||highdefjunkies.com^*/cp.gif (easylist.txt: 32858) -.highdefjunkies.com/.*/cp\.gif -# ||highdefjunkies.com/images/misc/kindlejoin.jpg (easylist.txt: 32857) -.highdefjunkies.com/images/misc/kindlejoin\.jpg -# ||hickoryrecord.com/app/deal/ (easylist.txt: 32856) -.hickoryrecord.com/app/deal/ -# ||herzeleid.com/files/images/banners/ (easylist.txt: 32854) -.herzeleid.com/files/images/banners/ -# ||herold.at^*.swf?*&linktarget=_blank (easylist.txt: 32853) -.herold.at/.*\.swf\?.*&linktarget=_blank -# ||herold.at/images/dealofday.swf (easylist.txt: 32852) -.herold.at/images/dealofday\.swf -# ||herold.at/fs/orgimg/*.swf?baseurl=http%3a%2f%2fwww.*&linktarget=_blank$object (easylist.txt: 32851) -.herold.at/fs/orgimg/.*\.swf\?baseurl=http%3a%2f%2fwww\..*&linktarget=_blank -# ||heraldsun.com.au^*/images/sideskins- (easylist.txt: 32850) -.heraldsun.com.au/.*/images/sideskins- -# ||heraldm.com^*/banner/ (easylist.txt: 32849) -.heraldm.com/.*/banner/ -# ||heraldm.com/iframe/ (easylist.txt: 32848) -.heraldm.com/iframe/ -# ||heraldm.com/hb/imad/ (easylist.txt: 32847) -.heraldm.com/hb/imad/ -# ||hentaistream.com/wp-includes/images/$object (easylist.txt: 32846) -.hentaistream.com/wp-includes/images/ -# ||hentaihaven.org/wp-content/banners/ (easylist.txt: 32845) -.hentaihaven.org/wp-content/banners/ -# ||hentai2read.com/ios/swf/ (easylist.txt: 32844) -.hentai2read.com/ios/swf/ -# ||helsinkitimes.fi^*/banners/ (easylist.txt: 32843) -.helsinkitimes.fi/.*/banners/ -# ||hejban.youwatch.org^ (easylist.txt: 32842) -.hejban.youwatch.org -# ||heatworld.com^*_300x160.jpg (easylist.txt: 32841) -.heatworld.com/.*_300x160\.jpg -# ||heatworld.com/upload/takeovers/ (easylist.txt: 32840) -.heatworld.com/upload/takeovers/ -# ||heatworld.com/images/*_83x76_ (easylist.txt: 32839) -.heatworld.com/images/.*_83x76_ -# ||hearse.com^*/billboards/ (easylist.txt: 32838) -.hearse.com/.*/billboards/ -# ||healthfreedoms.org/assets/swf/320x320_ (easylist.txt: 32837) -.healthfreedoms.org/assets/swf/320x320_ -# ||headlineplanet.com/home/burstbox.html (easylist.txt: 32836) -.headlineplanet.com/home/burstbox\.html -# ||headlineplanet.com/home/box.html (easylist.txt: 32835) -.headlineplanet.com/home/box\.html -# ||hdtvtest.co.uk^*/pricerunner.php (easylist.txt: 32834) -.hdtvtest.co.uk/.*/pricerunner\.php -# ||hdtvtest.co.uk/image/partner/$image (easylist.txt: 32833) -.hdtvtest.co.uk/image/partner/ -# ||hd-bb.org^*/dl4fbanner.gif (easylist.txt: 32832) -.hd-bb.org/.*/dl4fbanner\.gif -# ||hawkesbaytoday.co.nz/nz_regionals/marketplace/ (easylist.txt: 32830) -.hawkesbaytoday.co.nz/nz_regionals/marketplace/ -# ||hawkesbay.co.nz/images/banners/ (easylist.txt: 32829) -.hawkesbay.co.nz/images/banners/ -# ||hawaiireporter.com^*_300x400.jpg (easylist.txt: 32828) -.hawaiireporter.com/.*_300x400\.jpg -# ||hawaiireporter.com^*/winnerscampad.jpg (easylist.txt: 32827) -.hawaiireporter.com/.*/winnerscampad\.jpg -# ||hawaiireporter.com^*/upandruningy.jpg (easylist.txt: 32826) -.hawaiireporter.com/.*/upandruningy\.jpg -# ||hawaiireporter.com^*/js.jpg (easylist.txt: 32825) -.hawaiireporter.com/.*/js\.jpg -# ||hawaiireporter.com^*/463%C3%9757-Kamaaina.jpg (easylist.txt: 32824) -.hawaiireporter.com/.*/463%C3%9757-Kamaaina\.jpg -# ||hawaiireporter.com^*-300x250.jpg (easylist.txt: 32823) -.hawaiireporter.com/.*-300x250\.jpg -# ||hardwareheaven.com/wp-content/*_skin_ (easylist.txt: 32822) -.hardwareheaven.com/wp-content/.*_skin_ -# ||hardwareheaven.com/styles/*/frontpage/backdrop.jpg (easylist.txt: 32821) -.hardwareheaven.com/styles/.*/frontpage/backdrop\.jpg -# ||happierabroad.com/Images/banner (easylist.txt: 32820) -.happierabroad.com/Images/banner -# ||hancinema.net/images/watch-now (easylist.txt: 32819) -.hancinema.net/images/watch-now -# ||hancinema.net/images/banner_ (easylist.txt: 32818) -.hancinema.net/images/banner_ -# ||hahasport.com/ads/ (easylist.txt: 32817) -.hahasport.com/ads/ -# ||hackingchinese.com/media/skritter5.jpg (easylist.txt: 32816) -.hackingchinese.com/media/skritter5\.jpg -# ||hackingchinese.com/media/pleco.png (easylist.txt: 32815) -.hackingchinese.com/media/pleco\.png -# ||hackingchinese.com/media/hellochinese.jpg (easylist.txt: 32814) -.hackingchinese.com/media/hellochinese\.jpg -# ||hackingchinese.com/media/hcw4.png (easylist.txt: 32813) -.hackingchinese.com/media/hcw4\.png -# ||ha.ckers.org/images/sectheory-bot.png (easylist.txt: 32812) -.ha.ckers.org/images/sectheory-bot\.png -# ||ha.ckers.org/images/nto_top.png (easylist.txt: 32811) -.ha.ckers.org/images/nto_top\.png -# ||ha.ckers.org/images/fallingrock-bot.png (easylist.txt: 32810) -.ha.ckers.org/images/fallingrock-bot\.png -# ||h33t.to/images/button_direct.png (easylist.txt: 32809) -.h33t.to/images/button_direct\.png -# ||gwinnettdailypost.com/1.iframe.asp? (easylist.txt: 32808) -.gwinnettdailypost.com/1\.iframe\.asp\? -# ||guru99.com/images/adblocker/ (easylist.txt: 32807) -.guru99.com/images/adblocker/ -# ||gurgle.com/modules/mod_m10banners/ (easylist.txt: 32806) -.gurgle.com/modules/mod_m10banners/ -# ||guns.ru^*/banners/ (easylist.txt: 32805) -.guns.ru/.*/banners/ -# ||guns.ru^*/banner/ (easylist.txt: 32804) -.guns.ru/.*/banner/ -# ||gunfreezone.net^*_ad.jpg (easylist.txt: 32803) -.gunfreezone.net/.*_ad\.jpg -# ||gumtree.com^*/dart_wrapper_ (easylist.txt: 32802) -.gumtree.com/.*/dart_wrapper_ -# ||gulfnews.com^*/channelSponsorImage/ (easylist.txt: 32801) -.gulfnews.com/.*/channelSponsorImage/ -# ||gulf-daily-news.com/180x150.htm (easylist.txt: 32800) -.gulf-daily-news.com/180x150\.htm -# ||guardian.bz/images/banners/ (easylist.txt: 32799) -.guardian.bz/images/banners/ -# ||gtweekly.com/images/banners/ (easylist.txt: 32798) -.gtweekly.com/images/banners/ -# ||gtsplus.net*/pantop.html (easylist.txt: 32797) -.gtsplus.net*./(.*/)?pantop\.html -# ||gtsplus.net*/panbottom.html (easylist.txt: 32796) -.gtsplus.net*./(.*/)?panbottom\.html -# ||gtop100.com/a_images/show-a.php? (easylist.txt: 32795) -.gtop100.com/a_images/show-a\.php\? -# ||gsprating.com/gap/image.php? (easylist.txt: 32794) -.gsprating.com/gap/image\.php\? -# ||greyorgray.com/images/hdtv-genie-gog.jpg (easylist.txt: 32792) -.greyorgray.com/images/hdtv-genie-gog\.jpg -# ||greyorgray.com/images/Fast%20Business%20Loans%20Ad.jpg (easylist.txt: 32791) -.greyorgray.com/images/Fast%20Business%20Loans%20Ad\.jpg -# ||greenoptimistic.com/images/electrician2.png (easylist.txt: 32790) -.greenoptimistic.com/images/electrician2\.png -# ||green.virtual-nights.com^ (easylist.txt: 32789) -.green.virtual-nights.com -# ||greatgirlsgames.com/a/skyscraper.php (easylist.txt: 32788) -.greatgirlsgames.com/a/skyscraper\.php -# ||greatgirlsgames.com/100x100.php (easylist.txt: 32787) -.greatgirlsgames.com/100x100\.php -# ||greaterkashmir.com/adds_ (easylist.txt: 32786) -.greaterkashmir.com/adds_ -# ||greatdeals.co.ke/images/banners/ (easylist.txt: 32785) -.greatdeals.co.ke/images/banners/ -# ||greatandhra.com/images/*_ga_ (easylist.txt: 32784) -.greatandhra.com/images/.*_ga_ -# ||graphic.com.gh/images/banners/ (easylist.txt: 32783) -.graphic.com.gh/images/banners/ -# ||grapevine.is/media/flash/*.swf (easylist.txt: 32782) -.grapevine.is/media/flash/.*\.swf -# ||grammar-monster.com/scripts/$subdocument (easylist.txt: 32781) -.grammar-monster.com/scripts/ -# ||gq.co.za^*/sitetakeover/ (easylist.txt: 32780) -.gq.co.za/.*/sitetakeover/ -# ||gp3series.com^*/Partners/ (easylist.txt: 32779) -.gp3series.com/.*/Partners/ -# ||gowilkes.com/other/ (easylist.txt: 32778) -.gowilkes.com/other/ -# ||gowilkes.com/cj/ (easylist.txt: 32777) -.gowilkes.com/cj/ -# ||gov-auctions.org^*/banner/ (easylist.txt: 32776) -.gov-auctions.org/.*/banner/ -# ||gospel1190.net/rotatorimages/ (easylist.txt: 32774) -.gospel1190.net/rotatorimages/ -# ||gopride.com^*/banners/ (easylist.txt: 32773) -.gopride.com/.*/banners/ -# ||gooster.co.uk/js/ov.js.php (easylist.txt: 32772) -.gooster.co.uk/js/ov\.js\.php -# ||goodgearguide.com.au/files/skins/ (easylist.txt: 32767) -.goodgearguide.com.au/files/skins/ -# ||goodanime.net/images/crazy*.jpg (easylist.txt: 32766) -.goodanime.net/images/crazy.*\.jpg -# ||gonzagamer.com/uci/popover.js (easylist.txt: 32765) -.gonzagamer.com/uci/popover\.js -# ||gomlab.com/img/banner/ (easylist.txt: 32764) -.gomlab.com/img/banner/ -# ||golf365.com^*/site-bg- (easylist.txt: 32763) -.golf365.com/.*/site-bg- -# ||golf365.co.za^*/site-bg- (easylist.txt: 32762) -.golf365.co.za/.*/site-bg- -# ||goldenskate.com/sponsors/ (easylist.txt: 32761) -.goldenskate.com/sponsors/ -# ||gold1013fm.com/promotion/ (easylist.txt: 32760) -.gold1013fm.com/promotion/ -# ||gold1013fm.com/images/background/ (easylist.txt: 32759) -.gold1013fm.com/images/background/ -# ||gold-prices.biz^*_400x300.gif (easylist.txt: 32758) -.gold-prices.biz/.*_400x300\.gif -# ||gold-prices.biz/gold_trading_leader.gif (easylist.txt: 32757) -.gold-prices.biz/gold_trading_leader\.gif -# ||gokunming.com/images/prom/ (easylist.txt: 32756) -.gokunming.com/images/prom/ -# ||godisageek.com/amazon.png (easylist.txt: 32755) -.godisageek.com/amazon\.png -# ||goauto.com.au/mellor/mellor.nsf/toy$subdocument (easylist.txt: 32754) -.goauto.com.au/mellor/mellor\.nsf/toy -# ||goal.com^*/branding/ (easylist.txt: 32753) -.goal.com/.*/branding/ -# ||goal.com^*/betting/$~stylesheet (easylist.txt: 32752) -.goal.com/.*/betting/ -# ||go4up.com/assets/img/download-button.png (easylist.txt: 32751) -.go4up.com/assets/img/download-button\.png -# ||go4up.com/assets/img/d0.png (easylist.txt: 32750) -.go4up.com/assets/img/d0\.png -# ||glocktalk.com/forums/images/banners/ (easylist.txt: 32749) -.glocktalk.com/forums/images/banners/ -# ||globaltimes.cn/desktopmodules/bannerdisplay/ (easylist.txt: 32748) -.globaltimes.cn/desktopmodules/bannerdisplay/ -# ||globalsecurity.org/_inc/frames/ (easylist.txt: 32747) -.globalsecurity.org/_inc/frames/ -# ||gledaisport.com/ads/ (easylist.txt: 32746) -.gledaisport.com/ads/ -# ||glassdoor.com/getAdSlotContentsAjax.htm? (easylist.txt: 32745) -.glassdoor.com/getAdSlotContentsAjax\.htm\? -# ||glamourviews.com/home/zones? (easylist.txt: 32744) -.glamourviews.com/home/zones\? -# ||glam.com^*/affiliate/ (easylist.txt: 32743) -.glam.com/.*/affiliate/ -# ||gizmochina.com^*/landvo-l600-pro-feature.jpg (easylist.txt: 32742) -.gizmochina.com/.*/landvo-l600-pro-feature\.jpg -# ||gizmochina.com^*/kingsing-t8-advert.jpg (easylist.txt: 32741) -.gizmochina.com/.*/kingsing-t8-advert\.jpg -# ||gizmochina.com^*/100002648432985.gif (easylist.txt: 32740) -.gizmochina.com/.*/100002648432985\.gif -# ||gizmochina.com/images/blackview.jpg (easylist.txt: 32739) -.gizmochina.com/images/blackview\.jpg -# ||girlsgames.biz/games/partner*.php (easylist.txt: 32738) -.girlsgames.biz/games/partner.*\.php -# ||girlguides.co.za/images/banners/ (easylist.txt: 32737) -.girlguides.co.za/images/banners/ -# ||gigaom2.files.wordpress.com^*-center-top$image (easylist.txt: 32736) -.gigaom2.files.wordpress.com/.*-center-top -# ||giftguide.savannahnow.com/giftguide/widgets/ (easylist.txt: 32735) -.giftguide.savannahnow.com/giftguide/widgets/ -# ||ghananewsagency.org/assets/banners/ (easylist.txt: 32734) -.ghananewsagency.org/assets/banners/ -# ||ghafla.co.ke/images/bgmax/ (easylist.txt: 32733) -.ghafla.co.ke/images/bgmax/ -# ||ghafla.co.ke/images/banners/ (easylist.txt: 32732) -.ghafla.co.ke/images/banners/ -# ||ghacks.net/skin- (easylist.txt: 32731) -.ghacks.net/skin- -# ||gfx.infomine.com^ (easylist.txt: 32730) -.gfx.infomine.com -# ||gfi.com/blog/wp-content/uploads/*-BlogBanner (easylist.txt: 32729) -.gfi.com/blog/wp-content/uploads/.*-BlogBanner -# ||getthekick.eu^*/banners/ (easylist.txt: 32728) -.getthekick.eu/.*/banners/ -# ||getsurrey.co.uk^*/bg_takeover_ (easylist.txt: 32727) -.getsurrey.co.uk/.*/bg_takeover_ -# ||getrichslowly.org/blog/img/banner/ (easylist.txt: 32726) -.getrichslowly.org/blog/img/banner/ -# ||getreading.co.uk/static/img/bg_takeover_ (easylist.txt: 32724) -.getreading.co.uk/static/img/bg_takeover_ -# ||getprice.com.au/searchwidget.aspx?$subdocument (easylist.txt: 32723) -.getprice.com.au/searchwidget\.aspx\? -# ||getfoxyproxy.org/images/abine/ (easylist.txt: 32722) -.getfoxyproxy.org/images/abine/ -# ||get.thefile.me^ (easylist.txt: 32721) -.get.thefile.me -# ||get-bitcoins-free.eu/img/blackred728smallsize.gif (easylist.txt: 32720) -.get-bitcoins-free.eu/img/blackred728smallsize\.gif -# ||gestetnerupdates.com^*/perfect-auto-collision_banner.gif (easylist.txt: 32719) -.gestetnerupdates.com/.*/perfect-auto-collision_banner\.gif -# ||gestetnerupdates.com^*/Gestetner-Miles.gif (easylist.txt: 32718) -.gestetnerupdates.com/.*/Gestetner-Miles\.gif -# ||gestetnerupdates.com^*/eagle-sewer.gif (easylist.txt: 32717) -.gestetnerupdates.com/.*/eagle-sewer\.gif -# ||gestetnerupdates.com^*/chesed-shel-emes-600x75.gif (easylist.txt: 32716) -.gestetnerupdates.com/.*/chesed-shel-emes-600x75\.gif -# ||geoshopping.nzherald.co.nz^ (easylist.txt: 32715) -.geoshopping.nzherald.co.nz -# ||geometria.tv/banners/ (easylist.txt: 32714) -.geometria.tv/banners/ -# ||geocities.yahoo.*/js/sq. (easylist.txt: 32713) -.geocities.yahoo.*./(.*/)?js/sq\. -# ||geocities.com/js_source/ (easylist.txt: 32712) -.geocities.com/js_source/ -# ||gentoo.org/images/sponsors/ (easylist.txt: 32711) -.gentoo.org/images/sponsors/ -# ||generalfiles.me^*/download_sponsored. (easylist.txt: 32710) -.generalfiles.me/.*/download_sponsored\. -# ||gelbooru.com/protech.php$subdocument (easylist.txt: 32709) -.gelbooru.com/protech\.php -# ||gelbooru.com/poll.php$subdocument (easylist.txt: 32708) -.gelbooru.com/poll\.php -# ||gelbooru.com/lk.php$subdocument (easylist.txt: 32707) -.gelbooru.com/lk\.php -# ||geeklab.info^*/billy.png (easylist.txt: 32706) -.geeklab.info/.*/billy\.png -# ||geckoforums.net/banners/ (easylist.txt: 32705) -.geckoforums.net/banners/ -# ||gcnlive.com/assets/sponsorsPlayer/ (easylist.txt: 32704) -.gcnlive.com/assets/sponsorsPlayer/ -# ||gcnlive.com/assets/sponsors/ (easylist.txt: 32703) -.gcnlive.com/assets/sponsors/ -# ||gbrej.com/c/ (easylist.txt: 32702) -.gbrej.com/c/ -# ||gbatemp.net/images/ab/ (easylist.txt: 32701) -.gbatemp.net/images/ab/ -# ||gaynz.gen.nz/mysa/banners/ (easylist.txt: 32700) -.gaynz.gen.nz/mysa/banners/ -# ||gaynz.com/mysa/banners/ (easylist.txt: 32699) -.gaynz.com/mysa/banners/ -# ||gaydarradio.com/userportal/miva/ (easylist.txt: 32698) -.gaydarradio.com/userportal/miva/ -# ||gawkerassets.com^*/background.jpg (easylist.txt: 32697) -.gawkerassets.com/.*/background\.jpg -# ||gateprep.com/templates/default/images/promo/ (easylist.txt: 32696) -.gateprep.com/templates/default/images/promo/ -# ||gasgoo.com/promo/ (easylist.txt: 32695) -.gasgoo.com/promo/ -# ||garrysmod.org/img/sad/ (easylist.txt: 32694) -.garrysmod.org/img/sad/ -# ||gappon.com/images/hot2.gif (easylist.txt: 32693) -.gappon.com/images/hot2\.gif -# ||ganool.com/wp-content/uploads/*/matrix303.gif (easylist.txt: 32692) -.ganool.com/wp-content/uploads/.*/matrix303\.gif -# ||ganool.com/wp-content/uploads/*/Javtoys300250..gif (easylist.txt: 32691) -.ganool.com/wp-content/uploads/.*/Javtoys300250\.\.gif -# ||ganool.com/pup.js (easylist.txt: 32690) -.ganool.com/pup\.js -# ||gamingsquid.com/wp-content/banners/ (easylist.txt: 32689) -.gamingsquid.com/wp-content/banners/ -# ||gamevid.com/13/ads/ (easylist.txt: 32688) -.gamevid.com/13/ads/ -# ||gametrailers.com^*/webskin_ (easylist.txt: 32687) -.gametrailers.com/.*/webskin_ -# ||gameshark.com^*/pageskin- (easylist.txt: 32686) -.gameshark.com/.*/pageskin- -# ||gamesgames.com/vda/ (easylist.txt: 32685) -.gamesgames.com/vda/ -# ||gamesfreez.com/banner/ (easylist.txt: 32684) -.gamesfreez.com/banner/ -# ||gamesforwork.com^*/dropalink_small.gif (easylist.txt: 32683) -.gamesforwork.com/.*/dropalink_small\.gif -# ||gameserpent.com/vc*.php (easylist.txt: 32682) -.gameserpent.com/vc.*\.php -# ||gameserpent.com/kit*.php (easylist.txt: 32681) -.gameserpent.com/kit.*\.php -# ||gamersbook.com^*/banners/ (easylist.txt: 32680) -.gamersbook.com/.*/banners/ -# ||gamerant.com/ads/ (easylist.txt: 32679) -.gamerant.com/ads/ -# ||gamepressure.com/ajax/f2p.asp (easylist.txt: 32678) -.gamepressure.com/ajax/f2p\.asp -# ||gameplanet.co.nz^*-takeover.jpg (easylist.txt: 32677) -.gameplanet.co.nz/.*-takeover\.jpg -# ||gamemakerblog.com/gma/gatob.php (easylist.txt: 32676) -.gamemakerblog.com/gma/gatob\.php -# ||gameknot.com/amaster.pl?j= (easylist.txt: 32675) -.gameknot.com/amaster\.pl\?j= -# ||gamecopyworld.eu*/! (easylist.txt: 32674) -.gamecopyworld.eu*./(.*/)?! -# ||gamecopyworld.com^*/vg_160x120_ (easylist.txt: 32673) -.gamecopyworld.com/.*/vg_160x120_ -# ||gamecopyworld.com/games/js/abd.js (easylist.txt: 32672) -.gamecopyworld.com/games/js/abd\.js -# ||gamecopyworld.com/games/i/if6.gif (easylist.txt: 32671) -.gamecopyworld.com/games/i/if6\.gif -# ||gamecopyworld.com*/! (easylist.txt: 32670) -.gamecopyworld.com*./(.*/)?! -# ||gameads.digyourowngrave.com^ (easylist.txt: 32669) -.gameads.digyourowngrave.com -# ||game1games.com/exchange/ (easylist.txt: 32668) -.game1games.com/exchange/ -# ||gamblinginsider.com^*/partner_events.php (easylist.txt: 32667) -.gamblinginsider.com/.*/partner_events\.php -# ||gallerysense.se/site/getBannerCode (easylist.txt: 32666) -.gallerysense.se/site/getBannerCode -# ||gallerynova.se^*/jquery.bpopup.min.js (easylist.txt: 32665) -.gallerynova.se/.*/jquery\.bpopup\.min\.js -# ||galatta.com^*/banners/ (easylist.txt: 32664) -.galatta.com/.*/banners/ -# ||galatta.com^*/bannerimages/ (easylist.txt: 32663) -.galatta.com/.*/bannerimages/ -# ||gaeatimes.com/ctad/ (easylist.txt: 32662) -.gaeatimes.com/ctad/ -# ||gadgetshowlive.net^*/banners/ (easylist.txt: 32661) -.gadgetshowlive.net/.*/banners/ -# ||gadgetmac.com^*/sponsors/ (easylist.txt: 32660) -.gadgetmac.com/.*/sponsors/ -# ||gadget.co.za/siteimages/banners/ (easylist.txt: 32659) -.gadget.co.za/siteimages/banners/ -# ||gaccwest.com/uploads/tx_bannermanagement/ (easylist.txt: 32658) -.gaccwest.com/uploads/tx_bannermanagement/ -# ||gaccsouth.com/uploads/tx_bannermanagement/ (easylist.txt: 32657) -.gaccsouth.com/uploads/tx_bannermanagement/ -# ||gaccny.com/uploads/tx_bannermanagement/ (easylist.txt: 32656) -.gaccny.com/uploads/tx_bannermanagement/ -# ||gaccmidwest.org/uploads/tx_bannermanagement/ (easylist.txt: 32655) -.gaccmidwest.org/uploads/tx_bannermanagement/ -# ||gabzfm.com/images/banners/ (easylist.txt: 32654) -.gabzfm.com/images/banners/ -# ||g.brothersoft.com^ (easylist.txt: 32653) -.g.brothersoft.com -# ||f谋rstrowsports.eu/pu/ (easylist.txt: 32652) -.f谋rstrowsports.eu/pu/ -# ||futbol24.com/f24/rek/$~xmlhttprequest (easylist.txt: 32650) -.futbol24.com/f24/rek/ -# ||fuse.tv/images/sponsor/ (easylist.txt: 32649) -.fuse.tv/images/sponsor/ -# ||funpic.org/layer.php? (easylist.txt: 32648) -.funpic.org/layer\.php\? -# ||funpic.de/layer.php? (easylist.txt: 32647) -.funpic.de/layer\.php\? -# ||fulltv.tv/pub_ (easylist.txt: 32646) -.fulltv.tv/pub_ -# ||fullrip.net/images/download- (easylist.txt: 32645) -.fullrip.net/images/download- -# ||fulhamfc.com/i/partner/ (easylist.txt: 32644) -.fulhamfc.com/i/partner/ -# ||fugitive.com^*-468x60web. (easylist.txt: 32643) -.fugitive.com/.*-468x60web\. -# ||fudzilla.com^*/banners/ (easylist.txt: 32642) -.fudzilla.com/.*/banners/ -# ||ftlauderdalewebcam.com^*-WebCamBannerFall_ (easylist.txt: 32641) -.ftlauderdalewebcam.com/.*-WebCamBannerFall_ -# ||ftlauderdalewebcam.com/images/*webcambanner (easylist.txt: 32640) -.ftlauderdalewebcam.com/images/.*webcambanner -# ||ftdworld.net/images/banners/ (easylist.txt: 32639) -.ftdworld.net/images/banners/ -# ||fscheetahs.co.za/images/Sponsers/ (easylist.txt: 32638) -.fscheetahs.co.za/images/Sponsers/ -# ||frozen-roms.me/popup.php (easylist.txt: 32637) -.frozen-roms.me/popup\.php -# ||frozen-roms.in/popup.php (easylist.txt: 32636) -.frozen-roms.in/popup\.php -# ||frombar.com/ads/ (easylist.txt: 32635) -.frombar.com/ads/ -# ||friday-ad.co.uk/endeca/afccontainer.aspx (easylist.txt: 32634) -.friday-ad.co.uk/endeca/afccontainer\.aspx -# ||friday-ad.co.uk/banner.js? (easylist.txt: 32633) -.friday-ad.co.uk/banner\.js\? -# ||freshremix.ru/images/ffdownloader1.jpg (easylist.txt: 32632) -.freshremix.ru/images/ffdownloader1\.jpg -# ||freshremix.org/templates/freshremix_eng/images/300.gif (easylist.txt: 32631) -.freshremix.org/templates/freshremix_eng/images/300\.gif -# ||freshplaza.com/b/ (easylist.txt: 32630) -.freshplaza.com/b/ -# ||fresh-weather.com/popup1.gif (easylist.txt: 32629) -.fresh-weather.com/popup1\.gif -# ||frenchradiolondon.com/data/carousel/ (easylist.txt: 32628) -.frenchradiolondon.com/data/carousel/ -# ||freeworldgroup.com/banner (easylist.txt: 32627) -.freeworldgroup.com/banner -# ||freevermontradio.org/pictures/lauren_Stagnitti.jpg (easylist.txt: 32626) -.freevermontradio.org/pictures/lauren_Stagnitti\.jpg -# ||freetypinggame.net/burst720.asp (easylist.txt: 32625) -.freetypinggame.net/burst720\.asp -# ||freetv-video.ca^*/popover-load-js.php? (easylist.txt: 32624) -.freetv-video.ca/.*/popover-load-js\.php\? -# ||freestockcharts.com/symbolhit.aspx$subdocument (easylist.txt: 32623) -.freestockcharts.com/symbolhit\.aspx -# ||freesoftwaremagazine.com/extras/ (easylist.txt: 32622) -.freesoftwaremagazine.com/extras/ -# ||freeroms.com/skyscraper_ (easylist.txt: 32621) -.freeroms.com/skyscraper_ -# ||freeroms.com/bigbox_ (easylist.txt: 32620) -.freeroms.com/bigbox_ -# ||freeroms.com/bigbox.html (easylist.txt: 32619) -.freeroms.com/bigbox\.html -# ||freepornsubmits.com/ads/ (easylist.txt: 32618) -.freepornsubmits.com/ads/ -# ||freenode.net/images/freenode_osuosl.png (easylist.txt: 32617) -.freenode.net/images/freenode_osuosl\.png -# ||freenode.net/images/ack_privateinternetaccess-freenode.png (easylist.txt: 32616) -.freenode.net/images/ack_privateinternetaccess-freenode\.png -# ||freeminecraft.me/mw3.png (easylist.txt: 32615) -.freeminecraft.me/mw3\.png -# ||freemediatv.com/images/inmemoryofmichael.jpg (easylist.txt: 32614) -.freemediatv.com/images/inmemoryofmichael\.jpg -# ||freeappaday.com/nimgs/bb/ (easylist.txt: 32613) -.freeappaday.com/nimgs/bb/ -# ||freeads.co.uk/ctx.php? (easylist.txt: 32612) -.freeads.co.uk/ctx\.php\? -# ||free-webhosts.com/images/a/ (easylist.txt: 32611) -.free-webhosts.com/images/a/ -# ||free-tv-video-online.me/season-side- (easylist.txt: 32610) -.free-tv-video-online.me/season-side- -# ||free-tv-video-online.me/episode-buttom- (easylist.txt: 32609) -.free-tv-video-online.me/episode-buttom- -# ||free-tv-video-online.me/300s.html (easylist.txt: 32608) -.free-tv-video-online.me/300s\.html -# ||free-torrents.org^*/banners/ (easylist.txt: 32607) -.free-torrents.org/.*/banners/ -# ||free-times.com/image/pool/ (easylist.txt: 32606) -.free-times.com/image/pool/ -# ||fredmiranda.com/buzz/canondble-600x90.jpg (easylist.txt: 32605) -.fredmiranda.com/buzz/canondble-600x90\.jpg -# ||freakshare.com/yild.js (easylist.txt: 32604) -.freakshare.com/yild\.js -# ||fpscheats.com/fpsbanner.jpg (easylist.txt: 32603) -.fpscheats.com/fpsbanner\.jpg -# ||fpscheats.com/banner-img.jpg (easylist.txt: 32602) -.fpscheats.com/banner-img\.jpg -# ||foxsportsradio.com/pages/second300x250iframe.html (easylist.txt: 32601) -.foxsportsradio.com/pages/second300x250iframe\.html -# ||foxsports540.com/images/banner2.png (easylist.txt: 32600) -.foxsports540.com/images/banner2\.png -# ||foxsports540.com/images/banner1.png (easylist.txt: 32599) -.foxsports540.com/images/banner1\.png -# ||foxsports.com^*_skin_ (easylist.txt: 32598) -.foxsports.com/.*_skin_ -# ||foxsports.com^*/Sponsors/ (easylist.txt: 32597) -.foxsports.com/.*/Sponsors/ -# ||foxsports.com^*-skin_ (easylist.txt: 32596) -.foxsports.com/.*-skin_ -# ||foxsports.com^*-Skin- (easylist.txt: 32595) -.foxsports.com/.*-Skin- -# ||foxsports.com/component/xml/SBMarketingTakeOverPromos (easylist.txt: 32594) -.foxsports.com/component/xml/SBMarketingTakeOverPromos -# ||foxsports.com/component/*_wallpaper_$image (easylist.txt: 32593) -.foxsports.com/component/.*_wallpaper_ -# ||foxsports.com.au^*/sponsor/ (easylist.txt: 32592) -.foxsports.com.au/.*/sponsor/ -# ||foxsoccer2go.com/namedImage/*/backgroundSkin.jpg (easylist.txt: 32591) -.foxsoccer2go.com/namedImage/.*/backgroundSkin\.jpg -# ||foxbusiness.com/html/google_homepage_promo (easylist.txt: 32590) -.foxbusiness.com/html/google_homepage_promo -# ||forward.com/workspace/assets/newimages/amazon.png (easylist.txt: 32589) -.forward.com/workspace/assets/newimages/amazon\.png -# ||forumw.org/images/uploading.gif (easylist.txt: 32588) -.forumw.org/images/uploading\.gif -# ||forumimg.ipmart.com/swf/ipmart_forum/banner (easylist.txt: 32587) -.forumimg.ipmart.com/swf/ipmart_forum/banner -# ||forexpeacearmy.com/images/banners/ (easylist.txt: 32586) -.forexpeacearmy.com/images/banners/ -# ||foreignersinuk.co.uk^*/banner/ (easylist.txt: 32585) -.foreignersinuk.co.uk/.*/banner/ -# ||fordforums.com.au/logos/ (easylist.txt: 32584) -.fordforums.com.au/logos/ -# ||footballtradedirectory.com^*banner (easylist.txt: 32583) -.footballtradedirectory.com/.*banner -# ||footballshirtculture.com/images/e12b.jpg (easylist.txt: 32582) -.footballshirtculture.com/images/e12b\.jpg -# ||football-italia.net/imgs/moveyourmouse.gif (easylist.txt: 32581) -.football-italia.net/imgs/moveyourmouse\.gif -# ||foodingredientsfirst.com/content/flash_loaders/loadskyscraper.swf (easylist.txt: 32580) -.foodingredientsfirst.com/content/flash_loaders/loadskyscraper\.swf -# ||foodingredientsfirst.com/content/flash_loaders/loadlargetile.swf (easylist.txt: 32579) -.foodingredientsfirst.com/content/flash_loaders/loadlargetile\.swf -# ||foodingredientsfirst.com/content/banners/ (easylist.txt: 32578) -.foodingredientsfirst.com/content/banners/ -# ||fncstatic.com^*/sponsored-by.gif (easylist.txt: 32577) -.fncstatic.com/.*/sponsored-by\.gif -# ||fmr.co.za^*/banners/ (easylist.txt: 32576) -.fmr.co.za/.*/banners/ -# ||flyordie.com/games/online/ca.html (easylist.txt: 32575) -.flyordie.com/games/online/ca\.html -# ||flyordie.com/games/free/b/ (easylist.txt: 32574) -.flyordie.com/games/free/b/ -# ||flvto.biz/scripts/banners.php? (easylist.txt: 32573) -.flvto.biz/scripts/banners\.php\? -# ||flopturnriver.com*/banners/ (easylist.txt: 32571) -.flopturnriver.com*./(.*/)?banners/ -# ||flightradar24.com/_includes/sections/airportAd.php (easylist.txt: 32570) -.flightradar24.com/_includes/sections/airportAd\.php -# ||flicks.co.nz/takeovercss/ (easylist.txt: 32569) -.flicks.co.nz/takeovercss/ -# ||flicks.co.nz/images/takeovers/ (easylist.txt: 32568) -.flicks.co.nz/images/takeovers/ -# ||fleetwatch.co.za/images/banners/ (easylist.txt: 32567) -.fleetwatch.co.za/images/banners/ -# ||flatpanelshd.com/pictures/*banner (easylist.txt: 32566) -.flatpanelshd.com/pictures/.*banner -# ||flashy8.com/banner/ (easylist.txt: 32565) -.flashy8.com/banner/ -# ||flashx.tv^*/counterck.html (easylist.txt: 32564) -.flashx.tv/.*/counterck\.html -# ||flashx.tv/nuevo/player/js/anya.js (easylist.txt: 32563) -.flashx.tv/nuevo/player/js/anya\.js -# ||flashx.tv/img/download_ (easylist.txt: 32562) -.flashx.tv/img/download_ -# ||flashtv.co/class/adjsxxs.js (easylist.txt: 32561) -.flashtv.co/class/adjsxxs\.js -# ||flashtv.co/adds/ (easylist.txt: 32560) -.flashtv.co/adds/ -# ||flashscore.com/res/image/bookmaker-list.png (easylist.txt: 32559) -.flashscore.com/res/image/bookmaker-list\.png -# ||flameload.com/onvertise. (easylist.txt: 32558) -.flameload.com/onvertise\. -# ||fiverr.com/javascripts/conversion.js (easylist.txt: 32557) -.fiverr.com/javascripts/conversion\.js -# ||fishchannel.com/images/sponsors/ (easylist.txt: 32556) -.fishchannel.com/images/sponsors/ -# ||firsttoknow.com^*/page-criteo- (easylist.txt: 32555) -.firsttoknow.com/.*/page-criteo- -# ||firstrowusa.eu/js/pu.js (easylist.txt: 32554) -.firstrowusa.eu/js/pu\.js -# ||firstrowusa.eu/js/bn.js (easylist.txt: 32553) -.firstrowusa.eu/js/bn\.js -# ||firstrowsports.li/frame/ (easylist.txt: 32552) -.firstrowsports.li/frame/ -# ||firstrows.biz/js/pu.js (easylist.txt: 32551) -.firstrows.biz/js/pu\.js -# ||firstrows.biz/js/bn.js (easylist.txt: 32550) -.firstrows.biz/js/bn\.js -# ||firstpost.in^*/promo/ (easylist.txt: 32549) -.firstpost.in/.*/promo/ -# ||firstpost.com^*_sponsored. (easylist.txt: 32548) -.firstpost.com/.*_sponsored\. -# ||firstpost.com^*_skin_ (easylist.txt: 32547) -.firstpost.com/.*_skin_ -# ||firstpost.com^*/sponsered- (easylist.txt: 32546) -.firstpost.com/.*/sponsered- -# ||firstpost.com/promo/ (easylist.txt: 32545) -.firstpost.com/promo/ -# ||firstnationsvoice.com/images/weblinks.swf (easylist.txt: 32544) -.firstnationsvoice.com/images/weblinks\.swf -# ||firingsquad.com^*/sponsor_row.gif (easylist.txt: 32543) -.firingsquad.com/.*/sponsor_row\.gif -# ||firedrive.com/appresources/ (easylist.txt: 32542) -.firedrive.com/appresources/ -# ||firedrive.com/appdata/ (easylist.txt: 32541) -.firedrive.com/appdata/ -# ||finextra.com^*/pantiles/ (easylist.txt: 32540) -.finextra.com/.*/pantiles/ -# ||finextra.com^*/leaderboards/ (easylist.txt: 32539) -.finextra.com/.*/leaderboards/ -# ||findthebest-sw.com/sponsor_event? (easylist.txt: 32538) -.findthebest-sw.com/sponsor_event\? -# ||findnsave.idahostatesman.com^ (easylist.txt: 32537) -.findnsave.idahostatesman.com -# ||findit.com.mt/viewer/ (easylist.txt: 32536) -.findit.com.mt/viewer/ -# ||findit.com.mt/dynimage/boxbanner/ (easylist.txt: 32535) -.findit.com.mt/dynimage/boxbanner/ -# ||findicons.com^*/125x125/ (easylist.txt: 32534) -.findicons.com/.*/125x125/ -# ||findfreegraphics.com/underp.js (easylist.txt: 32533) -.findfreegraphics.com/underp\.js -# ||findfiles.com/images/knife-dancing-1.gif (easylist.txt: 32532) -.findfiles.com/images/knife-dancing-1\.gif -# ||findfiles.com/images/icatchallfree.png (easylist.txt: 32531) -.findfiles.com/images/icatchallfree\.png -# ||financialsamurai.com/wp-content/uploads/*/sliced-alternative-10000.jpg (easylist.txt: 32530) -.financialsamurai.com/wp-content/uploads/.*/sliced-alternative-10000\.jpg -# ||financialnewsandtalk.com/scripts/slideshow-sponsors.js (easylist.txt: 32529) -.financialnewsandtalk.com/scripts/slideshow-sponsors\.js -# ||fimserve.ign.com^ (easylist.txt: 32528) -.fimserve.ign.com -# ||filmsite.org/dart-zones.js (easylist.txt: 32527) -.filmsite.org/dart-zones\.js -# ||filmovizija.com/Images/photo4sell.jpg (easylist.txt: 32526) -.filmovizija.com/Images/photo4sell\.jpg -# ||filmovizija.com/Images/ludovanjeaffilate.jpg (easylist.txt: 32525) -.filmovizija.com/Images/ludovanjeaffilate\.jpg -# ||filmey.com/Filmey.Ad.js (easylist.txt: 32524) -.filmey.com/Filmey\.Ad\.js -# ||filipinojournal.com/images/banners/ (easylist.txt: 32523) -.filipinojournal.com/images/banners/ -# ||filestream.me/requirements/images/ed.gif (easylist.txt: 32522) -.filestream.me/requirements/images/ed\.gif -# ||filestream.me/requirements/images/cialis_generic.gif (easylist.txt: 32521) -.filestream.me/requirements/images/cialis_generic\.gif -# ||filespazz.com^*/copyartwork_side_banner.gif (easylist.txt: 32520) -.filespazz.com/.*/copyartwork_side_banner\.gif -# ||filespazz.com/imx/template_r2_c3.jpg (easylist.txt: 32519) -.filespazz.com/imx/template_r2_c3\.jpg -# ||filespart.com/ot/fast.aspx? (easylist.txt: 32518) -.filespart.com/ot/fast\.aspx\? -# ||fileshut.com/etc/links.php?q= (easylist.txt: 32517) -.fileshut.com/etc/links\.php\?q= -# ||filesharingtalk.com/fst/8242/ (easylist.txt: 32516) -.filesharingtalk.com/fst/8242/ -# ||files.wordpress.com/*-reskin. (easylist.txt: 32515) -.files.wordpress.com/.*-reskin\. -# ||filerio.in^*/jquery.interstitial. (easylist.txt: 32514) -.filerio.in/.*/jquery\.interstitial\. -# ||fileplanet.com/fileblog/sub-no-ad.shtml (easylist.txt: 32513) -.fileplanet.com/fileblog/sub-no-ad\.shtml -# ||fileom.com/img/instadownload2.png (easylist.txt: 32512) -.fileom.com/img/instadownload2\.png -# ||fileom.com/img/downloadnow.png (easylist.txt: 32511) -.fileom.com/img/downloadnow\.png -# ||filegaga.com/ot/fast.php? (easylist.txt: 32510) -.filegaga.com/ot/fast\.php\? -# ||fileflyer.com/img/dap_banner_ (easylist.txt: 32509) -.fileflyer.com/img/dap_banner_ -# ||filedino.com/imagesn/downloadgif.gif (easylist.txt: 32508) -.filedino.com/imagesn/downloadgif\.gif -# ||file2hd.com/sweet.jpg (easylist.txt: 32507) -.file2hd.com/sweet\.jpg -# ||file.org^*/images/promo/ (easylist.txt: 32506) -.file.org/.*/images/promo/ -# ||file.org/fo/scripts/download_helpopt.js (easylist.txt: 32505) -.file.org/fo/scripts/download_helpopt\.js -# ||fijitimes.com/images/bspxchange.gif (easylist.txt: 32504) -.fijitimes.com/images/bspxchange\.gif -# ||fightersonlymag.com/images/banners/ (easylist.txt: 32503) -.fightersonlymag.com/images/banners/ -# ||fiberupload.org/300en.png (easylist.txt: 32502) -.fiberupload.org/300en\.png -# ||fiba.com/Content/Sponsors/ (easylist.txt: 32501) -.fiba.com/Content/Sponsors/ -# ||fhm.com^*_banner.png (easylist.txt: 32500) -.fhm.com/.*_banner\.png -# ||fhm.com^*_background.jpg (easylist.txt: 32499) -.fhm.com/.*_background\.jpg -# ||fhm.com/images/sportsbutton.gif (easylist.txt: 32498) -.fhm.com/images/sportsbutton\.gif -# ||fhm.com/images/casinobutton.gif (easylist.txt: 32497) -.fhm.com/images/casinobutton\.gif -# ||fgfx.co.uk/banner.js? (easylist.txt: 32496) -.fgfx.co.uk/banner\.js\? -# ||ffiles.com/counters.js (easylist.txt: 32495) -.ffiles.com/counters\.js -# ||fever.fm^*/sposor- (easylist.txt: 32494) -.fever.fm/.*/sposor- -# ||fever.fm^*/campaigns/ (easylist.txt: 32493) -.fever.fm/.*/campaigns/ -# ||feiwei.tv^*/sandbox.html (easylist.txt: 32492) -.feiwei.tv/.*/sandbox\.html -# ||feedsportal.com/videoserve/ (easylist.txt: 32491) -.feedsportal.com/videoserve/ -# ||feedsportal.com/creative/ (easylist.txt: 32490) -.feedsportal.com/creative/ -# ||feeds.feedburner.com/*.gif (easylist.txt: 32489) -.feeds.feedburner.com/.*\.gif -# ||feedly.com/amazon.$xmlhttprequest (easylist.txt: 32488) -.feedly.com/amazon\. -# ||feed-the-beast.com^*/gamevox.png (easylist.txt: 32487) -.feed-the-beast.com/.*/gamevox\.png -# ||fastvideo.eu/images/pl_box_rapid.jpg (easylist.txt: 32485) -.fastvideo.eu/images/pl_box_rapid\.jpg -# ||fastvideo.eu/images/down.png (easylist.txt: 32484) -.fastvideo.eu/images/down\.png -# ||fastpic.ru/dox (easylist.txt: 32483) -.fastpic.ru/dox -# ||fastcompany.com/sites/*/interstitial.js (easylist.txt: 32482) -.fastcompany.com/sites/.*/interstitial\.js -# ||farmville.com/promo_bar.php (easylist.txt: 32481) -.farmville.com/promo_bar\.php -# ||fark.com/cgi/buzzfeed_link.pl (easylist.txt: 32480) -.fark.com/cgi/buzzfeed_link\.pl -# ||fansshare.com/va/?$subdocument (easylist.txt: 32479) -.fansshare.com/va/\? -# ||fanfusion.org/as.js (easylist.txt: 32478) -.fanfusion.org/as\.js -# ||fancystreems.com/300x2503.php (easylist.txt: 32477) -.fancystreems.com/300x2503\.php -# ||fan.twitch.tv^ (easylist.txt: 32476) -.fan.twitch.tv -# ||famouspornstarstube.com/images/sponsors/ (easylist.txt: 32475) -.famouspornstarstube.com/images/sponsors/ -# ||familylawweek.co.uk/bin_1/ (easylist.txt: 32474) -.familylawweek.co.uk/bin_1/ -# ||fallout3nexus.com^*/300x600.php (easylist.txt: 32473) -.fallout3nexus.com/.*/300x600\.php -# ||fakku.net/static/seele-$subdocument (easylist.txt: 32472) -.fakku.net/static/seele- -# ||facenfacts.com^*/ads/ (easylist.txt: 32471) -.facenfacts.com/.*/ads/ -# ||faadooengineers.com/ads/ (easylist.txt: 32470) -.faadooengineers.com/ads/ -# ||f1today.net^*/sponsors/ (easylist.txt: 32469) -.f1today.net/.*/sponsors/ -# ||eztv.ag/js/openback*.js (easylist.txt: 32468) -.eztv.ag/js/openback.*\.js -# ||ezmoviestv.com^*/ad-for-ezmovies.png (easylist.txt: 32467) -.ezmoviestv.com/.*/ad-for-ezmovies\.png -# ||extremeoverclocking.com/template_images/it120x240.gif (easylist.txt: 32466) -.extremeoverclocking.com/template_images/it120x240\.gif -# ||extratorrent.cc/tz (easylist.txt: 32465) -.extratorrent.cc/tz -# ||extratorrent.cc/scripts/pp_ (easylist.txt: 32464) -.extratorrent.cc/scripts/pp_ -# ||extratorrent.cc/scripts/bo1o.js (easylist.txt: 32463) -.extratorrent.cc/scripts/bo1o\.js -# ||extratorrent.cc/images/wintoolspro.gif (easylist.txt: 32462) -.extratorrent.cc/images/wintoolspro\.gif -# ||expreview.com/exp2/ (easylist.txt: 32461) -.expreview.com/exp2/ -# ||expressmilwaukee.com/engines/backgrounds/js/backgrounds.js (easylist.txt: 32460) -.expressmilwaukee.com/engines/backgrounds/js/backgrounds\.js -# ||express.co.uk^*/sponsored/ (easylist.txt: 32459) -.express.co.uk/.*/sponsored/ -# ||expertreviews.co.uk^*/skins/ (easylist.txt: 32458) -.expertreviews.co.uk/.*/skins/ -# ||expertreviews.co.uk/?act=widgets. (easylist.txt: 32457) -.expertreviews.co.uk/\?act=widgets\. -# ||expatwomen.com/expat-women-sponsors/ (easylist.txt: 32456) -.expatwomen.com/expat-women-sponsors/ -# ||expatexchange.com/banner/ (easylist.txt: 32455) -.expatexchange.com/banner/ -# ||excite.com/gca_iframe.html (easylist.txt: 32454) -.excite.com/gca_iframe\.html -# ||exchangerates.org.uk/images/200x200_ (easylist.txt: 32453) -.exchangerates.org.uk/images/200x200_ -# ||exchangerates.org.uk/images/150_60_ (easylist.txt: 32452) -.exchangerates.org.uk/images/150_60_ -# ||exchangerates.org.uk/images-NEW/tor.gif (easylist.txt: 32451) -.exchangerates.org.uk/images-NEW/tor\.gif -# ||exceluser.com^*/pub/rotate_ (easylist.txt: 32450) -.exceluser.com/.*/pub/rotate_ -# ||exashare.com^*?*cbrandom=$script (easylist.txt: 32449) -.exashare.com/.*\?.*cbrandom= -# ||exashare.com/vod_stream.html (easylist.txt: 32448) -.exashare.com/vod_stream\.html -# ||exashare.com/playerexa.jpg (easylist.txt: 32447) -.exashare.com/playerexa\.jpg -# ||exashare.com/player_file.jpg (easylist.txt: 32446) -.exashare.com/player_file\.jpg -# ||exashare.com/player_begin.jpg (easylist.txt: 32445) -.exashare.com/player_begin\.jpg -# ||exashare.com/hq_stream.html (easylist.txt: 32444) -.exashare.com/hq_stream\.html -# ||ex1.gamecopyworld.com^$subdocument (easylist.txt: 32443) -.ex1.gamecopyworld.com -# ||ewrc-results.com/images/horni_ewrc_result_banner3.jpg (easylist.txt: 32442) -.ewrc-results.com/images/horni_ewrc_result_banner3\.jpg -# ||eweek.com^*/sponsored- (easylist.txt: 32441) -.eweek.com/.*/sponsored- -# ||eweek.com/widgets/ibmtco/ (easylist.txt: 32440) -.eweek.com/widgets/ibmtco/ -# ||eweek.com/images/stories/marketing/ (easylist.txt: 32439) -.eweek.com/images/stories/marketing/ -# ||evony.com/sevonyadvs2. (easylist.txt: 32438) -.evony.com/sevonyadvs2\. -# ||evolutionm.net/SponsorLogos/ (easylist.txt: 32437) -.evolutionm.net/SponsorLogos/ -# ||everythingsysadmin.com^*_sw_banner120x600_ (easylist.txt: 32436) -.everythingsysadmin.com/.*_sw_banner120x600_ -# ||evernote.com/prom/img/ (easylist.txt: 32435) -.evernote.com/prom/img/ -# ||eventful.com/tools/click/url? (easylist.txt: 32434) -.eventful.com/tools/click/url\? -# ||eve-search.com/gge.gif (easylist.txt: 32433) -.eve-search.com/gge\.gif -# ||eva.ucas.com^ (easylist.txt: 32432) -.eva.ucas.com -# ||euroweb.com^*/banner/ (easylist.txt: 32431) -.euroweb.com/.*/banner/ -# ||europeonline-magazine.eu/nuroa/ (easylist.txt: 32430) -.europeonline-magazine.eu/nuroa/ -# ||europeonline-magazine.eu/banner/ (easylist.txt: 32429) -.europeonline-magazine.eu/banner/ -# ||european-rubber-journal.com/160x600px_ (easylist.txt: 32428) -.european-rubber-journal.com/160x600px_ -# ||euronews.com/media/farnborough/farnborough_wp.jpg (easylist.txt: 32427) -.euronews.com/media/farnborough/farnborough_wp\.jpg -# ||euroleague.net^*/sponsors- (easylist.txt: 32426) -.euroleague.net/.*/sponsors- -# ||eurogamer.net^*/takeovers/ (easylist.txt: 32425) -.eurogamer.net/.*/takeovers/ -# ||eurogamer.net/quad.php (easylist.txt: 32424) -.eurogamer.net/quad\.php -# ||eurodict.com/images/banner_ (easylist.txt: 32423) -.eurodict.com/images/banner_ -# ||eurocupbasketball.com^*/sponsors- (easylist.txt: 32422) -.eurocupbasketball.com/.*/sponsors- -# ||eurochannel.com/images/banners/ (easylist.txt: 32421) -.eurochannel.com/images/banners/ -# ||euphonik.dj/img/sponsors- (easylist.txt: 32420) -.euphonik.dj/img/sponsors- -# ||etidbits.com/300x250news.php (easylist.txt: 32419) -.etidbits.com/300x250news\.php -# ||eteknix.com/wp-content/uploads/*Takeover (easylist.txt: 32418) -.eteknix.com/wp-content/uploads/.*Takeover -# ||eteknix.com/wp-content/uploads/*skin (easylist.txt: 32417) -.eteknix.com/wp-content/uploads/.*skin -# ||esus.com/images/regiochat_logo.png (easylist.txt: 32416) -.esus.com/images/regiochat_logo\.png -# ||essayscam.org^*/ads.js (easylist.txt: 32415) -.essayscam.org/.*/ads\.js -# ||essayinfo.com/img/125x125_ (easylist.txt: 32414) -.essayinfo.com/img/125x125_ -# ||espn1320.net/get_preroll.php? (easylist.txt: 32413) -.espn1320.net/get_preroll\.php\? -# ||espn.go.com/ads/ (easylist.txt: 32411) -.espn.go.com/ads/ -# ||espn.co.uk^*/viagogo_sports.html (easylist.txt: 32410) -.espn.co.uk/.*/viagogo_sports\.html -# ||espn.co.uk/espnuk/williamhill_ (easylist.txt: 32409) -.espn.co.uk/espnuk/williamhill_ -# ||espn.co.uk/espnuk/williamhill/ (easylist.txt: 32408) -.espn.co.uk/espnuk/williamhill/ -# ||escapementmagazine.com/wp-content/banners/ (easylist.txt: 32407) -.escapementmagazine.com/wp-content/banners/ -# ||eq2flames.com/images/styles/eq2/images/banner (easylist.txt: 32406) -.eq2flames.com/images/styles/eq2/images/banner -# ||eprop.co.za/images/banners/ (easylist.txt: 32405) -.eprop.co.za/images/banners/ -# ||episodic.com^*/logos/player- (easylist.txt: 32404) -.episodic.com/.*/logos/player- -# ||epictv.com/sites/default/files/290x400_ (easylist.txt: 32403) -.epictv.com/sites/default/files/290x400_ -# ||epicshare.net/p1.js (easylist.txt: 32402) -.epicshare.net/p1\.js -# ||environmental-finance.com^*rotate.gif (easylist.txt: 32401) -.environmental-finance.com/.*rotate\.gif -# ||environmental-finance.com^*banner (easylist.txt: 32400) -.environmental-finance.com/.*banner -# ||enigmagroup.org/clients/privatetunnels.swf (easylist.txt: 32399) -.enigmagroup.org/clients/privatetunnels\.swf -# ||englishtips.org/b/ (easylist.txt: 32398) -.englishtips.org/b/ -# ||england.fm/i/ducksunited120x60english.gif (easylist.txt: 32397) -.england.fm/i/ducksunited120x60english\.gif -# ||energytribune.com/res/banner/ (easylist.txt: 32396) -.energytribune.com/res/banner/ -# ||encyclopediadramatica.es/spon/ (easylist.txt: 32394) -.encyclopediadramatica.es/spon/ -# ||encyclopediadramatica.es/lanhell.js (easylist.txt: 32393) -.encyclopediadramatica.es/lanhell\.js -# ||emuleday.com/cpxt_$subdocument (easylist.txt: 32391) -.emuleday.com/cpxt_ -# ||emule-top50.com/extras/$subdocument (easylist.txt: 32390) -.emule-top50.com/extras/ -# ||empirestatenews.net/Banners/ (easylist.txt: 32387) -.empirestatenews.net/Banners/ -# ||emoneyspace.com/b.php (easylist.txt: 32386) -.emoneyspace.com/b\.php -# ||emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy.gif (easylist.txt: 32385) -.emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy\.gif -# ||elocallink.tv^*/showgif.php? (easylist.txt: 32384) -.elocallink.tv/.*/showgif\.php\? -# ||elivetv.in/pop/ (easylist.txt: 32383) -.elivetv.in/pop/ -# ||elgg.org/images/hostupon_banner.gif (easylist.txt: 32382) -.elgg.org/images/hostupon_banner\.gif -# ||elevenmyanmar.com/images/banners/ (easylist.txt: 32381) -.elevenmyanmar.com/images/banners/ -# ||electronicsfeed.com/bximg/ (easylist.txt: 32380) -.electronicsfeed.com/bximg/ -# ||electricenergyonline.com^*/bannieres/ (easylist.txt: 32379) -.electricenergyonline.com/.*/bannieres/ -# ||ekantipur.com/uploads/banner/ (easylist.txt: 32378) -.ekantipur.com/uploads/banner/ -# ||ejpress.org/img/banners/ (easylist.txt: 32377) -.ejpress.org/img/banners/ -# ||ejpress.org/images/banners/ (easylist.txt: 32376) -.ejpress.org/images/banners/ -# ||ejb.com/300_250 (easylist.txt: 32375) -.ejb.com/300_250 -# ||ehow.com/media/ad.html^ (easylist.txt: 32374) -.ehow.com/media/ad\.html[^\w%.-] -# ||ehow.com/marketing/ (easylist.txt: 32373) -.ehow.com/marketing/ -# ||ehow.com/images/brands/ (easylist.txt: 32372) -.ehow.com/images/brands/ -# ||ehow.co.uk/frames/directas_ (easylist.txt: 32371) -.ehow.co.uk/frames/directas_ -# ||egamer.co.za^*-background- (easylist.txt: 32370) -.egamer.co.za/.*-background- -# ||educationbusinessuk.net/images/stage.gif (easylist.txt: 32369) -.educationbusinessuk.net/images/stage\.gif -# ||edmunds.com/api/savesegment? (easylist.txt: 32368) -.edmunds.com/api/savesegment\? -# ||ed2k.2x4u.de/mfc/ (easylist.txt: 32366) -.ed2k.2x4u.de/mfc/ -# ||ecostream.tv/js/pu.js (easylist.txt: 32365) -.ecostream.tv/js/pu\.js -# ||ecostream.tv/assets/js/pu.min.js (easylist.txt: 32364) -.ecostream.tv/assets/js/pu\.min\.js -# ||economist.com^*/timekeeper-by-rolex-medium.png (easylist.txt: 32363) -.economist.com/.*/timekeeper-by-rolex-medium\.png -# ||economist.com.na^*/banners/ (easylist.txt: 32362) -.economist.com.na/.*/banners/ -# ||ecommerce-journal.com/specdata.php? (easylist.txt: 32361) -.ecommerce-journal.com/specdata\.php\? -# ||eclipse.org/membership/promo/images/ (easylist.txt: 32360) -.eclipse.org/membership/promo/images/ -# ||ebuddy.com/web_banners_ (easylist.txt: 32359) -.ebuddy.com/web_banners_ -# ||ebuddy.com/web_banners/ (easylist.txt: 32358) -.ebuddy.com/web_banners/ -# ||ebuddy.com/textlink.php? (easylist.txt: 32357) -.ebuddy.com/textlink\.php\? -# ||ebookshare.net^*/streamdirect160x600_ (easylist.txt: 32356) -.ebookshare.net/.*/streamdirect160x600_ -# ||ebookshare.net/pages/lt.html (easylist.txt: 32355) -.ebookshare.net/pages/lt\.html -# ||ebizmbainc.netdna-cdn.com/images/tab_sponsors.gif (easylist.txt: 32354) -.ebizmbainc.netdna-cdn.com/images/tab_sponsors\.gif -# ||ebizblitz.co.za/upload/ad/ (easylist.txt: 32353) -.ebizblitz.co.za/upload/ad/ -# ||ebaystatic.com/aw/signin/*_wallpaper_$image (easylist.txt: 32352) -.ebaystatic.com/aw/signin/.*_wallpaper_ -# ||ebaystatic.com/aw/pics/signin/*_signInSkin_ (easylist.txt: 32351) -.ebaystatic.com/aw/pics/signin/.*_signInSkin_ -# ||ebayrtm.com/rtm?RtmIt (easylist.txt: 32350) -.ebayrtm.com/rtm\?RtmIt -# ||ebayrtm.com/rtm?RtmCmd*&enc= (easylist.txt: 32349) -.ebayrtm.com/rtm\?RtmCmd.*&enc= -# ||eatsleepsport.com/images/manorgaming1.jpg (easylist.txt: 32348) -.eatsleepsport.com/images/manorgaming1\.jpg -# ||easybytez.com/pop3.js (easylist.txt: 32347) -.easybytez.com/pop3\.js -# ||eastonline.eu/images/eng_banner_ (easylist.txt: 32346) -.eastonline.eu/images/eng_banner_ -# ||eastonline.eu/images/banners/ (easylist.txt: 32345) -.eastonline.eu/images/banners/ -# ||earthmoversmagazine.co.uk/nimg/ (easylist.txt: 32344) -.earthmoversmagazine.co.uk/nimg/ -# ||earthlink.net^*/promos/ (easylist.txt: 32343) -.earthlink.net/.*/promos/ -# ||e90post.com/forums/images/banners/ (easylist.txt: 32342) -.e90post.com/forums/images/banners/ -# ||dyncdn.celebuzz.com/assets/ (easylist.txt: 32340) -.dyncdn.celebuzz.com/assets/ -# ||dwarfgames.com/pub/728_top. (easylist.txt: 32339) -.dwarfgames.com/pub/728_top\. -# ||dvdvideosoft.com^*/banners/ (easylist.txt: 32338) -.dvdvideosoft.com/.*/banners/ -# ||dustcoin.com^*/image/ad- (easylist.txt: 32337) -.dustcoin.com/.*/image/ad- -# ||durbannews.co.za^*_new728x60.gif (easylist.txt: 32336) -.durbannews.co.za/.*_new728x60\.gif -# ||dump8.com/wget_2leep_bottom.php (easylist.txt: 32335) -.dump8.com/wget_2leep_bottom\.php -# ||dump8.com/wget.php (easylist.txt: 32334) -.dump8.com/wget\.php -# ||dump8.com/tiz/ (easylist.txt: 32333) -.dump8.com/tiz/ -# ||duckload.com/js/abp.php? (easylist.txt: 32332) -.duckload.com/js/abp\.php\? -# ||duckduckgo.com/y.js (easylist.txt: 32331) -.duckduckgo.com/y\.js -# ||duckduckgo.com/m.js?*&o=a (easylist.txt: 32330) -.duckduckgo.com/m\.js\?.*&o=a -# ||duckduckgo.com/i.js?o=a& (easylist.txt: 32329) -.duckduckgo.com/i\.js\?o=a& -# ||dubcnm.com/Adon/ (easylist.txt: 32328) -.dubcnm.com/Adon/ -# ||dsogaming.com/interstitial/ (easylist.txt: 32327) -.dsogaming.com/interstitial/ -# ||droidgamers.com/images/banners/ (easylist.txt: 32326) -.droidgamers.com/images/banners/ -# ||driverdb.com^*/banners/ (easylist.txt: 32325) -.driverdb.com/.*/banners/ -# ||drivearchive.co.uk/images/amazon. (easylist.txt: 32324) -.drivearchive.co.uk/images/amazon\. -# ||drivearchive.co.uk/amazon/ (easylist.txt: 32323) -.drivearchive.co.uk/amazon/ -# ||drhinternet.net/mwimgsent/ (easylist.txt: 32322) -.drhinternet.net/mwimgsent/ -# ||dreamscene.org^*_Banner. (easylist.txt: 32321) -.dreamscene.org/.*_Banner\. -# ||dramabay.com/y/$subdocument (easylist.txt: 32320) -.dramabay.com/y/ -# ||dpstatic.com/s/ad.js (easylist.txt: 32319) -.dpstatic.com/s/ad\.js -# ||dpstatic.com/banner.png? (easylist.txt: 32318) -.dpstatic.com/banner\.png\? -# ||dprogram.net^*/rightsprites.png (easylist.txt: 32317) -.dprogram.net/.*/rightsprites\.png -# ||downloadian.com/assets/banner.jpg (easylist.txt: 32316) -.downloadian.com/assets/banner\.jpg -# ||downloadbox.to/Leadertop.html (easylist.txt: 32315) -.downloadbox.to/Leadertop\.html -# ||downforeveryoneorjustme.com/images/dotbiz_banner.jpg (easylist.txt: 32314) -.downforeveryoneorjustme.com/images/dotbiz_banner\.jpg -# ||doubleviking.com/ss.html (easylist.txt: 32313) -.doubleviking.com/ss\.html -# ||dota-trade.com/img/branding_ (easylist.txt: 32311) -.dota-trade.com/img/branding_ -# ||dontblockme.modaco.com^ (easylist.txt: 32310) -.dontblockme.modaco.com -# ||dominicantoday.com/stor/banners/ (easylist.txt: 32309) -.dominicantoday.com/stor/banners/ -# ||domaintools.com/partners/ (easylist.txt: 32308) -.domaintools.com/partners/ -# ||domaintools.com/marketing/ (easylist.txt: 32307) -.domaintools.com/marketing/ -# ||domaintools.com/eurodns_ (easylist.txt: 32306) -.domaintools.com/eurodns_ -# ||domainmarket.com/mm/ (easylist.txt: 32305) -.domainmarket.com/mm/ -# ||dogechain.info/content/img/a (easylist.txt: 32304) -.dogechain.info/content/img/a -# ||doge-dice.com/images/outpost.png (easylist.txt: 32303) -.doge-dice.com/images/outpost\.png -# ||doge-dice.com/images/faucet.jpg (easylist.txt: 32302) -.doge-dice.com/images/faucet\.jpg -# ||dnsstuff.com/dnsmedia/images/ft.banner. (easylist.txt: 32301) -.dnsstuff.com/dnsmedia/images/ft\.banner\. -# ||dnsstuff.com/dnsmedia/images/*_banner.jpg (easylist.txt: 32300) -.dnsstuff.com/dnsmedia/images/.*_banner\.jpg -# ||dl4all.com^*/hotfile.gif (easylist.txt: 32299) -.dl4all.com/.*/hotfile\.gif -# ||dl4all.com/img/download.jpg (easylist.txt: 32298) -.dl4all.com/img/download\.jpg -# ||dl4all.com/data4.files/dpopupwindow.js (easylist.txt: 32297) -.dl4all.com/data4\.files/dpopupwindow\.js -# ||dl-protect.com/pop.js (easylist.txt: 32296) -.dl-protect.com/pop\.js -# ||djtunes.com^*/adbg/ (easylist.txt: 32295) -.djtunes.com/.*/adbg/ -# ||djmag.com/sites/default/files/takeover/ (easylist.txt: 32294) -.djmag.com/sites/default/files/takeover/ -# ||djmag.co.uk/sites/default/files/takeover/ (easylist.txt: 32293) -.djmag.co.uk/sites/default/files/takeover/ -# ||djluv.in/android.gif (easylist.txt: 32292) -.djluv.in/android\.gif -# ||diytrade.com/diyep/dir?page=common/ppadv& (easylist.txt: 32291) -.diytrade.com/diyep/dir\?page=common/ppadv& -# ||divxstage.eu/images/download.png (easylist.txt: 32290) -.divxstage.eu/images/download\.png -# ||divxme.com/images/play.png (easylist.txt: 32289) -.divxme.com/images/play\.png -# ||dividendchannel.com/toprankedsm.gif (easylist.txt: 32288) -.dividendchannel.com/toprankedsm\.gif -# ||distrowatch.com^*/advanced-admin. (easylist.txt: 32287) -.distrowatch.com/.*/advanced-admin\. -# ||distrowatch.com^*/3cx.png (easylist.txt: 32286) -.distrowatch.com/.*/3cx\.png -# ||distrowatch.com^*-*.gif (easylist.txt: 32285) -.distrowatch.com/.*-.*\.gif -# ||distrowatch.com/images/kokoku/ (easylist.txt: 32284) -.distrowatch.com/images/kokoku/ -# ||distrogeeks.com/images/sponsors/ (easylist.txt: 32283) -.distrogeeks.com/images/sponsors/ -# ||display.superbay.net^ (easylist.txt: 32282) -.display.superbay.net -# ||dispatch.com^*/dpcpopunder.js (easylist.txt: 32281) -.dispatch.com/.*/dpcpopunder\.js -# ||dishusa.net/templates/flero/images/book_sprava.gif (easylist.txt: 32280) -.dishusa.net/templates/flero/images/book_sprava\.gif -# ||dippic.com/images/banner (easylist.txt: 32279) -.dippic.com/images/banner -# ||diplodocs.com/shopping/sol.js (easylist.txt: 32278) -.diplodocs.com/shopping/sol\.js -# ||digzip.com^*baner.swf (easylist.txt: 32277) -.digzip.com/.*baner\.swf -# ||digitizor.com/wp-content/digimages/xsoftspyse.png (easylist.txt: 32276) -.digitizor.com/wp-content/digimages/xsoftspyse\.png -# ||digitalreality.co.nz^*/360_hacks_banner.gif (easylist.txt: 32275) -.digitalreality.co.nz/.*/360_hacks_banner\.gif -# ||digitaljournal.com/promo/ (easylist.txt: 32274) -.digitaljournal.com/promo/ -# ||digdug.divxnetworks.com^ (easylist.txt: 32273) -.digdug.divxnetworks.com -# ||dictionary.com^*/serp_to/ (easylist.txt: 32272) -.dictionary.com/.*/serp_to/ -# ||dictionary.cambridge.org/info/frame.html?zone= (easylist.txt: 32271) -.dictionary.cambridge.org/info/frame\.html\?zone= -# ||diamondworld.net/admin/getresource.aspx? (easylist.txt: 32270) -.diamondworld.net/admin/getresource\.aspx\? -# ||di.fm^*/ads/webplayer (easylist.txt: 32269) -.di.fm/.*/ads/webplayer -# ||dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ (easylist.txt: 32268) -.dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ -# ||devx.com/devx/3174.gif (easylist.txt: 32267) -.devx.com/devx/3174\.gif -# ||devshed.com/images/backgrounds/$image (easylist.txt: 32265) -.devshed.com/images/backgrounds/ -# ||devour.com/*skin (easylist.txt: 32264) -.devour.com/.*skin -# ||devicemag.com^$subdocument,~third-party (easylist.txt: 32263) -.devicemag.com -# ||develop-online.net/static/banners/ (easylist.txt: 32262) -.develop-online.net/static/banners/ -# ||detroitindependent.net/images/ad_ (easylist.txt: 32261) -.detroitindependent.net/images/ad_ -# ||detnews.com^*/sponsor/ (easylist.txt: 32260) -.detnews.com/.*/sponsor/ -# ||desixpress.co.uk/image/banners/ (easylist.txt: 32259) -.desixpress.co.uk/image/banners/ -# ||desiretoinspire.net^*125x125 (easylist.txt: 32258) -.desiretoinspire.net/.*125x125 -# ||desiretoinspire.net^*/mgbanner.gif (easylist.txt: 32257) -.desiretoinspire.net/.*/mgbanner\.gif -# ||desiretoinspire.net/storage/layout/royalcountessad.gif (easylist.txt: 32256) -.desiretoinspire.net/storage/layout/royalcountessad\.gif -# ||desiretoinspire.net/storage/layout/modmaxbanner.gif (easylist.txt: 32255) -.desiretoinspire.net/storage/layout/modmaxbanner\.gif -# ||deshvidesh.com/banner/ (easylist.txt: 32254) -.deshvidesh.com/banner/ -# ||deseretnews.com/img/sponsors/ (easylist.txt: 32253) -.deseretnews.com/img/sponsors/ -# ||depositphotos.com^$subdocument,third-party (easylist.txt: 32252) -.depositphotos.com -# ||depic.me/bann/ (easylist.txt: 32251) -.depic.me/bann/ -# ||demonoid.unblockt.com/cached/$subdocument (easylist.txt: 32250) -.demonoid.unblockt.com/cached/ -# ||demerarawaves.com/images/banners/ (easylist.txt: 32249) -.demerarawaves.com/images/banners/ -# ||delvenetworks.com^*/acudeo.swf$object-subrequest,~third-party (easylist.txt: 32248) -.delvenetworks.com/.*/acudeo\.swf -# ||defensereview.com^*_banner_ (easylist.txt: 32247) -.defensereview.com/.*_banner_ -# ||defenceweb.co.za/logos/ (easylist.txt: 32246) -.defenceweb.co.za/logos/ -# ||defenceweb.co.za/images/sponsorlogos/ (easylist.txt: 32245) -.defenceweb.co.za/images/sponsorlogos/ -# ||decryptedtech.com/images/banners/ (easylist.txt: 32244) -.decryptedtech.com/images/banners/ -# ||deccanchronicle.com^*/shaadi.com/ (easylist.txt: 32243) -.deccanchronicle.com/.*/shaadi\.com/ -# ||deccanchronicle.com^*-searchquad-300100.swf (easylist.txt: 32242) -.deccanchronicle.com/.*-searchquad-300100\.swf -# ||deccanchronicle.com^*-banner- (easylist.txt: 32241) -.deccanchronicle.com/.*-banner- -# ||decadeforum.com/images/misc/download2.png (easylist.txt: 32240) -.decadeforum.com/images/misc/download2\.png -# ||deborah-bickel.de/banners/ (easylist.txt: 32239) -.deborah-bickel.de/banners/ -# ||deals.ledgertranscript.com^ (easylist.txt: 32238) -.deals.ledgertranscript.com -# ||deals.iphonehacks.com^$subdocument (easylist.txt: 32237) -.deals.iphonehacks.com -# ||deals.cultofmac.com^$subdocument (easylist.txt: 32236) -.deals.cultofmac.com -# ||ddl2.com/header.php? (easylist.txt: 32235) -.ddl2.com/header\.php\? -# ||ddccdn.com/js/google_ (easylist.txt: 32234) -.ddccdn.com/js/google_ -# ||dcourier.com/SiteImages/Banner/ (easylist.txt: 32233) -.dcourier.com/SiteImages/Banner/ -# ||dcad.watersoul.com^ (easylist.txt: 32232) -.dcad.watersoul.com -# ||dbstalk.com/sponsors/ (easylist.txt: 32231) -.dbstalk.com/sponsors/ -# ||dayport.com/ads/ (easylist.txt: 32230) -.dayport.com/ads/ -# ||davesite.com^*/aff/ (easylist.txt: 32229) -.davesite.com/.*/aff/ -# ||datpiff.com/skins/misc/ (easylist.txt: 32228) -.datpiff.com/skins/misc/ -# ||darknet.org.uk^*/do468. (easylist.txt: 32227) -.darknet.org.uk/.*/do468\. -# ||darknet.org.uk^*-250x250. (easylist.txt: 32226) -.darknet.org.uk/.*-250x250\. -# ||darknet.org.uk/images/acunetix_ (easylist.txt: 32225) -.darknet.org.uk/images/acunetix_ -# ||damnlol.com/damnlol.com.*.js (easylist.txt: 32224) -.damnlol.com/damnlol\.com\..*\.js -# ||damnlol.com/a/leaderboard.php (easylist.txt: 32223) -.damnlol.com/a/leaderboard\.php -# ||dailywritingtips.com^*/publisher2.gif (easylist.txt: 32222) -.dailywritingtips.com/.*/publisher2\.gif -# ||dailytrust.info/images/dangote.swf (easylist.txt: 32221) -.dailytrust.info/images/dangote\.swf -# ||dailytrust.info/images/banners/ (easylist.txt: 32220) -.dailytrust.info/images/banners/ -# ||dailytimes.com.pk/banners/ (easylist.txt: 32219) -.dailytimes.com.pk/banners/ -# ||dailysabah.com/banner/ (easylist.txt: 32218) -.dailysabah.com/banner/ -# ||dailypuppy.com/images/livestrong/ls_diet_120x90_1.gif (easylist.txt: 32217) -.dailypuppy.com/images/livestrong/ls_diet_120x90_1\.gif -# ||dailypioneer.com/images/banners/ (easylist.txt: 32216) -.dailypioneer.com/images/banners/ -# ||dailynews.lk^*/webadz/ (easylist.txt: 32215) -.dailynews.lk/.*/webadz/ -# ||dailynews.gov.bw^*/banner_ (easylist.txt: 32214) -.dailynews.gov.bw/.*/banner_ -# ||dailynews.co.zw^*-takeover. (easylist.txt: 32213) -.dailynews.co.zw/.*-takeover\. -# ||dailynews.co.tz/images/banners/ (easylist.txt: 32212) -.dailynews.co.tz/images/banners/ -# ||dailymotion.com/skin/data/default/partner/$~stylesheet (easylist.txt: 32211) -.dailymotion.com/skin/data/default/partner/ -# ||dailymotion.com/images/ie.png (easylist.txt: 32210) -.dailymotion.com/images/ie\.png -# ||dailymirror.lk/media/images/Nawaloka- (easylist.txt: 32209) -.dailymirror.lk/media/images/Nawaloka- -# ||dailymail.co.uk^*/promoboxes/ (easylist.txt: 32208) -.dailymail.co.uk/.*/promoboxes/ -# ||dailymail.co.uk/modules/commercial/ (easylist.txt: 32207) -.dailymail.co.uk/modules/commercial/ -# ||dailymail.co.uk/i/pix/ebay/ (easylist.txt: 32206) -.dailymail.co.uk/i/pix/ebay/ -# ||dailyhome.com/leaderboard_banner (easylist.txt: 32205) -.dailyhome.com/leaderboard_banner -# ||dailyherald.com^*/contextual.js (easylist.txt: 32204) -.dailyherald.com/.*/contextual\.js -# ||dailyfreegames.com/js/partners.html (easylist.txt: 32203) -.dailyfreegames.com/js/partners\.html -# ||dailyexpress.com.my/image/banner/ (easylist.txt: 32202) -.dailyexpress.com.my/image/banner/ -# ||dailyexpress.com.my/banners/ (easylist.txt: 32201) -.dailyexpress.com.my/banners/ -# ||dailydeals.sfgate.com/widget/ (easylist.txt: 32200) -.dailydeals.sfgate.com/widget/ -# ||dailydeals.savannahnow.com^ (easylist.txt: 32199) -.dailydeals.savannahnow.com -# ||dailydeals.onlineathens.com^ (easylist.txt: 32198) -.dailydeals.onlineathens.com -# ||dailydeals.lubbockonline.com^ (easylist.txt: 32197) -.dailydeals.lubbockonline.com -# ||dailydeals.brainerddispatch.com^ (easylist.txt: 32196) -.dailydeals.brainerddispatch.com -# ||dailydeals.augustachronicle.com^ (easylist.txt: 32195) -.dailydeals.augustachronicle.com -# ||dailydeals.amarillo.com^ (easylist.txt: 32194) -.dailydeals.amarillo.com -# ||dailydeal.news-record.com/widgets/ (easylist.txt: 32193) -.dailydeal.news-record.com/widgets/ -# ||dailycommercial.com/inc.php? (easylist.txt: 32192) -.dailycommercial.com/inc\.php\? -# ||dailyblogtips.com/wp-content/uploads/*.gif (easylist.txt: 32191) -.dailyblogtips.com/wp-content/uploads/.*\.gif -# ||dailybitcoins.org/banners/ (easylist.txt: 32190) -.dailybitcoins.org/banners/ -# ||daily-sun.com^*/banner/ (easylist.txt: 32189) -.daily-sun.com/.*/banner/ -# ||daily-mail.co.zm^*_banner. (easylist.txt: 32188) -.daily-mail.co.zm/.*_banner\. -# ||daily-mail.co.zm^*_270x312. (easylist.txt: 32187) -.daily-mail.co.zm/.*_270x312\. -# ||daily-mail.co.zm^*_1170x120. (easylist.txt: 32186) -.daily-mail.co.zm/.*_1170x120\. -# ||daily-mail.co.zm^*/singapore_auto. (easylist.txt: 32185) -.daily-mail.co.zm/.*/singapore_auto\. -# ||daily-mail.co.zm^*/side_strip. (easylist.txt: 32184) -.daily-mail.co.zm/.*/side_strip\. -# ||daily-mail.co.zm^*/sbt.gif (easylist.txt: 32183) -.daily-mail.co.zm/.*/sbt\.gif -# ||daily-mail.co.zm/images/banners/ (easylist.txt: 32182) -.daily-mail.co.zm/images/banners/ -# ||dads.new.digg.com^ (easylist.txt: 32181) -.dads.new.digg.com -# ||dabs.com/images/page-backgrounds/ (easylist.txt: 32180) -.dabs.com/images/page-backgrounds/ -# ||da.feedsportal.com^$~subdocument (easylist.txt: 32179) -.da.feedsportal.com -# ||d5e.info/2.png (easylist.txt: 32177) -.d5e.info/2\.png -# ||d5e.info/1.gif (easylist.txt: 32176) -.d5e.info/1\.gif -# ||d.thelocal.com^ (easylist.txt: 32175) -.d.thelocal.com -# ||d.imwx.com/js/wx-a21-plugthis- (easylist.txt: 32174) -.d.imwx.com/js/wx-a21-plugthis- -# ||d.gossipcenter.com^ (easylist.txt: 32173) -.d.gossipcenter.com -# ||d.businessinsider.com^ (easylist.txt: 32172) -.d.businessinsider.com -# ||d.annarbor.com^ (easylist.txt: 32171) -.d.annarbor.com -# ||d-h.st/assets/img/download1.png (easylist.txt: 32170) -.d-h.st/assets/img/download1\.png -# ||d-addicts.com^*/banner/ (easylist.txt: 32169) -.d-addicts.com/.*/banner/ -# ||cybergamer.com/skins/ (easylist.txt: 32168) -.cybergamer.com/skins/ -# ||cyanogenmod.com/static/tdr_skyscraper.png (easylist.txt: 32167) -.cyanogenmod.com/static/tdr_skyscraper\.png -# ||cur.lv/nbottom.php? (easylist.txt: 32166) -.cur.lv/nbottom\.php\? -# ||cur.lv/bootstrap/js/bootstrapx-clickover.js (easylist.txt: 32165) -.cur.lv/bootstrap/js/bootstrapx-clickover\.js -# ||ctv.ca/Sites/Ctv/assets/js/ctvDfpAd.js (easylist.txt: 32164) -.ctv.ca/Sites/Ctv/assets/js/ctvDfpAd\.js -# ||ctv.ca/ctvresources/js/ctvad.js (easylist.txt: 32163) -.ctv.ca/ctvresources/js/ctvad\.js -# ||ctmirror.org/randomsupporter/ (easylist.txt: 32162) -.ctmirror.org/randomsupporter/ -# ||cship.org/w/skins/monobook/uns.gif (easylist.txt: 32161) -.cship.org/w/skins/monobook/uns\.gif -# ||csgobackpack.net/653x50. (easylist.txt: 32160) -.csgobackpack.net/653x50\. -# ||crystalmedianetworks.com^*-180x150.jpg (easylist.txt: 32159) -.crystalmedianetworks.com/.*-180x150\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt.jpg (easylist.txt: 32158) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt-social.png (easylist.txt: 32157) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt-social\.png -# ||cryptocoinsnews.com/wp-content/uploads/*/cloudbet_ (easylist.txt: 32156) -.cryptocoinsnews.com/wp-content/uploads/.*/cloudbet_ -# ||cryptocoinsnews.com/wp-content/uploads/*/ccn.png (easylist.txt: 32155) -.cryptocoinsnews.com/wp-content/uploads/.*/ccn\.png -# ||cruzine.com^*/banners/ (easylist.txt: 32154) -.cruzine.com/.*/banners/ -# ||crushorflush.com/html/promoframe.html (easylist.txt: 32153) -.crushorflush.com/html/promoframe\.html -# ||crunchyroll.*/vast? (easylist.txt: 32152) -.crunchyroll.*./(.*/)?vast\? -# ||crimeaware.co.za/files-upload/banner/ (easylist.txt: 32151) -.crimeaware.co.za/files-upload/banner/ -# ||cricruns.com/images/hioxindia- (easylist.txt: 32150) -.cricruns.com/images/hioxindia- -# ||cricbuzz.com/js/banners/ (easylist.txt: 32149) -.cricbuzz.com/js/banners/ -# ||creattor.net/flashxmlbanners/ (easylist.txt: 32148) -.creattor.net/flashxmlbanners/ -# ||creatives.livejasmin.com^ (easylist.txt: 32147) -.creatives.livejasmin.com -# ||createtv.com/CreateProgram.nsf/vShowcaseFeaturedSideContentByLinkTitle/ (easylist.txt: 32146) -.createtv.com/CreateProgram\.nsf/vShowcaseFeaturedSideContentByLinkTitle/ -# ||crazymotion.net/video_*.php?key= (easylist.txt: 32145) -.crazymotion.net/video_.*\.php\?key= -# ||crazy-torrent.com/web/banner/online.jpg (easylist.txt: 32144) -.crazy-torrent.com/web/banner/online\.jpg -# ||crazy-torrent.com/web/banner/0xxx0.net.jpg (easylist.txt: 32143) -.crazy-torrent.com/web/banner/0xxx0\.net\.jpg -# ||craveonline.com/gnads/ (easylist.txt: 32142) -.craveonline.com/gnads/ -# ||cramdodge.com/mg- (easylist.txt: 32141) -.cramdodge.com/mg- -# ||crackdb.com/img/vpn.png (easylist.txt: 32140) -.crackdb.com/img/vpn\.png -# ||crackdb.cd/cd.swf (easylist.txt: 32139) -.crackdb.cd/cd\.swf -# ||cpub.co.uk/a? (easylist.txt: 32138) -.cpub.co.uk/a\? -# ||cphpost.dk^*/banners/ (easylist.txt: 32137) -.cphpost.dk/.*/banners/ -# ||countrychannel.tv/telvos_banners/ (easylist.txt: 32136) -.countrychannel.tv/telvos_banners/ -# ||cosplay.com/1lensvillage.gif (easylist.txt: 32135) -.cosplay.com/1lensvillage\.gif -# ||coryarcangel.com/images/banners/ (easylist.txt: 32134) -.coryarcangel.com/images/banners/ -# ||cops.com^*/copbanner_ (easylist.txt: 32133) -.cops.com/.*/copbanner_ -# ||copblock.org/wp-content/uploads/*/covert-handcuff-key-AD- (easylist.txt: 32132) -.copblock.org/wp-content/uploads/.*/covert-handcuff-key-AD- -# ||coolsport.tv/lshadd. (easylist.txt: 32131) -.coolsport.tv/lshadd\. -# ||coolsport.tv/adtadd. (easylist.txt: 32130) -.coolsport.tv/adtadd\. -# ||coolmath.net/*-medrect.html (easylist.txt: 32129) -.coolmath.net/.*-medrect\.html -# ||coolmath-games.com/images/160-notice.gif (easylist.txt: 32128) -.coolmath-games.com/images/160-notice\.gif -# ||coolfm.us/lagos969/images/banners/ (easylist.txt: 32127) -.coolfm.us/lagos969/images/banners/ -# ||conwaydailysun.com/images/Tiles_Skyscrapers/ (easylist.txt: 32126) -.conwaydailysun.com/images/Tiles_Skyscrapers/ -# ||conwaydailysun.com/images/banners/ (easylist.txt: 32125) -.conwaydailysun.com/images/banners/ -# ||convertmyimage.com/images/banner-square.png (easylist.txt: 32124) -.convertmyimage.com/images/banner-square\.png -# ||consumerreports.org^*/sx.js (easylist.txt: 32123) -.consumerreports.org/.*/sx\.js -# ||constructionreviewonline.com^*banner (easylist.txt: 32122) -.constructionreviewonline.com/.*banner -# ||constructionreviewonline.com^*730x90 (easylist.txt: 32121) -.constructionreviewonline.com/.*730x90 -# ||console-spot.com^*.swf (easylist.txt: 32120) -.console-spot.com/.*\.swf -# ||conscioustalk.net/images/sponsors/ (easylist.txt: 32119) -.conscioustalk.net/images/sponsors/ -# ||connectionstrings.com/csas/public/a.ashx? (easylist.txt: 32118) -.connectionstrings.com/csas/public/a\.ashx\? -# ||concrete.tv/images/banners/ (easylist.txt: 32117) -.concrete.tv/images/banners/ -# ||con-telegraph.ie/images/banners/ (easylist.txt: 32116) -.con-telegraph.ie/images/banners/ -# ||computerworld.com^*/jobroll/ (easylist.txt: 32115) -.computerworld.com/.*/jobroll/ -# ||computerhelp.com/temp/banners/ (easylist.txt: 32114) -.computerhelp.com/temp/banners/ -# ||computerandvideogames.com^*/promos/ (easylist.txt: 32113) -.computerandvideogames.com/.*/promos/ -# ||complexmedianetwork.com^*/toolbarlogo.png (easylist.txt: 32112) -.complexmedianetwork.com/.*/toolbarlogo\.png -# ||complexmedianetwork.com^*/takeovers/ (easylist.txt: 32111) -.complexmedianetwork.com/.*/takeovers/ -# ||complaintsboard.com/img/banner- (easylist.txt: 32110) -.complaintsboard.com/img/banner- -# ||complaintsboard.com/img/202x202.gif (easylist.txt: 32109) -.complaintsboard.com/img/202x202\.gif -# ||compassnewspaper.com/images/banners/ (easylist.txt: 32108) -.compassnewspaper.com/images/banners/ -# ||comparestoreprices.co.uk/images/promotions/ (easylist.txt: 32107) -.comparestoreprices.co.uk/images/promotions/ -# ||comicgenesis.com/tcontent.php?out= (easylist.txt: 32106) -.comicgenesis.com/tcontent\.php\?out= -# ||comicbookresources.com/assets/images/skins/ (easylist.txt: 32105) -.comicbookresources.com/assets/images/skins/ -# ||com.com/cnwk.1d/aud/ (easylist.txt: 32104) -.com.com/cnwk\.1d/aud/ -# ||com-a.in/images/banners/ (easylist.txt: 32103) -.com-a.in/images/banners/ -# ||collector.viki.io^ (easylist.txt: 32102) -.collector.viki.io -# ||collarme.com/zone_alt.asp (easylist.txt: 32101) -.collarme.com/zone_alt\.asp -# ||collarme.com/anv/ (easylist.txt: 32100) -.collarme.com/anv/ -# ||coinurl.com/nbottom.php? (easylist.txt: 32099) -.coinurl.com/nbottom\.php\? -# ||coinurl.com/get.php? (easylist.txt: 32098) -.coinurl.com/get\.php\? -# ||coinurl.com/bottom.php (easylist.txt: 32097) -.coinurl.com/bottom\.php -# ||coinurl.com/bootstrap/js/bootstrapx-clickover.js (easylist.txt: 32096) -.coinurl.com/bootstrap/js/bootstrapx-clickover\.js -# ||coinad.com/op.php? (easylist.txt: 32095) -.coinad.com/op\.php\? -# ||coderanch.com/shingles/ (easylist.txt: 32094) -.coderanch.com/shingles/ -# ||codecguide.com/driverscantop1.gif (easylist.txt: 32093) -.codecguide.com/driverscantop1\.gif -# ||codecguide.com/driverscan2.gif (easylist.txt: 32092) -.codecguide.com/driverscan2\.gif -# ||codecguide.com/beforedl2.gif (easylist.txt: 32091) -.codecguide.com/beforedl2\.gif -# ||codeasily.com^*/codeasily.js (easylist.txt: 32090) -.codeasily.com/.*/codeasily\.js -# ||cocomment.com/banner? (easylist.txt: 32089) -.cocomment.com/banner\? -# ||coastweek.com/graffix/ (easylist.txt: 32088) -.coastweek.com/graffix/ -# ||coastweek.com/banner_ (easylist.txt: 32087) -.coastweek.com/banner_ -# ||coastfm.ae/promotion/ (easylist.txt: 32086) -.coastfm.ae/promotion/ -# ||coastfm.ae/images/background/ (easylist.txt: 32085) -.coastfm.ae/images/background/ -# ||cnx-software.com/pic/technexion/ (easylist.txt: 32084) -.cnx-software.com/pic/technexion/ -# ||cnx-software.com/pic/gateworks/ (easylist.txt: 32083) -.cnx-software.com/pic/gateworks/ -# ||cntv.cn/Library/js/js_ad_gb.js (easylist.txt: 32082) -.cntv.cn/Library/js/js_ad_gb\.js -# ||cnn.net^*/lawyers.com/ (easylist.txt: 32081) -.cnn.net/.*/lawyers\.com/ -# ||cnn.com^*/banner.html?&csiid= (easylist.txt: 32080) -.cnn.com/.*/banner\.html\?&csiid= -# ||cnn.com/cnn_adspaces/ (easylist.txt: 32078) -.cnn.com/cnn_adspaces/ -# ||cnn.com/ad- (easylist.txt: 32077) -.cnn.com/ad- -# ||cnetwidget.creativemark.co.uk^ (easylist.txt: 32076) -.cnetwidget.creativemark.co.uk -# ||cnettv.com.edgesuite.net^*/ads/ (easylist.txt: 32075) -.cnettv.com.edgesuite.net/.*/ads/ -# ||cnet.com/imp? (easylist.txt: 32074) -.cnet.com/imp\? -# ||cms.myspacecdn.com^*/splash_assets/ (easylist.txt: 32073) -.cms.myspacecdn.com/.*/splash_assets/ -# ||cmpnet.com/ads/ (easylist.txt: 32072) -.cmpnet.com/ads/ -# ||clubplanet.com^*/wallpaper/ (easylist.txt: 32070) -.clubplanet.com/.*/wallpaper/ -# ||clubhyper.com/images/hannantsbanner_ (easylist.txt: 32069) -.clubhyper.com/images/hannantsbanner_ -# ||cloudyvideos.com/banner/ (easylist.txt: 32068) -.cloudyvideos.com/banner/ -# ||clicks.superpages.com^ (easylist.txt: 32062) -.clicks.superpages.com -# ||click.livedoor.com^ (easylist.txt: 32061) -.click.livedoor.com -# ||clgaming.net/interface/img/sponsor/ (easylist.txt: 32060) -.clgaming.net/interface/img/sponsor/ -# ||classicsdujour.com/artistbanners/ (easylist.txt: 32059) -.classicsdujour.com/artistbanners/ -# ||classicfeel.co.za^*/banners/ (easylist.txt: 32058) -.classicfeel.co.za/.*/banners/ -# ||classical897.org/common/sponsors/ (easylist.txt: 32057) -.classical897.org/common/sponsors/ -# ||classic97.net^*/banner/ (easylist.txt: 32056) -.classic97.net/.*/banner/ -# ||classic-tv.com/pubaccess.html (easylist.txt: 32055) -.classic-tv.com/pubaccess\.html -# ||classic-tv.com/burst$subdocument (easylist.txt: 32054) -.classic-tv.com/burst -# ||clarksvilleonline.com/cols/ (easylist.txt: 32053) -.clarksvilleonline.com/cols/ -# ||cjr.org/interstitial_ (easylist.txt: 32052) -.cjr.org/interstitial_ -# ||citywirecontent.co.uk^*/cw.oas.dx.js (easylist.txt: 32051) -.citywirecontent.co.uk/.*/cw\.oas\.dx\.js -# ||citywire.co.uk/wealth-manager/marketingcampaign? (easylist.txt: 32050) -.citywire.co.uk/wealth-manager/marketingcampaign\? -# ||citybeat.co.uk^*/ads/ (easylist.txt: 32049) -.citybeat.co.uk/.*/ads/ -# ||cityam.com^*/pageskin/ (easylist.txt: 32048) -.cityam.com/.*/pageskin/ -# ||citizen-usa.com/images/banners/ (easylist.txt: 32047) -.citizen-usa.com/images/banners/ -# ||citeulike.org/static/campaigns/ (easylist.txt: 32046) -.citeulike.org/static/campaigns/ -# ||citationmachine.net/images/grammarly/ (easylist.txt: 32045) -.citationmachine.net/images/grammarly/ -# ||ciol.com/zedotags/ (easylist.txt: 32044) -.ciol.com/zedotags/ -# ||cineplex.com/skins/ (easylist.txt: 32043) -.cineplex.com/skins/ -# ||cinemablend.com/templates/tpl/reskin/$image (easylist.txt: 32042) -.cinemablend.com/templates/tpl/reskin/ -# ||ciao.com^*/price_link/ (easylist.txt: 32041) -.ciao.com/.*/price_link/ -# ||ciao.co.uk/load_file.php? (easylist.txt: 32040) -.ciao.co.uk/load_file\.php\? -# ||churchnewssite.com^*/bannercard- (easylist.txt: 32039) -.churchnewssite.com/.*/bannercard- -# ||churchnewssite.com^*/banner- (easylist.txt: 32038) -.churchnewssite.com/.*/banner- -# ||churchnewssite.com^*-banner1. (easylist.txt: 32037) -.churchnewssite.com/.*-banner1\. -# ||chronicle.lu/images/Sponsor_ (easylist.txt: 32036) -.chronicle.lu/images/Sponsor_ -# ||chronicle.lu/images/banners/ (easylist.txt: 32035) -.chronicle.lu/images/banners/ -# ||chinanews.com/gg/ (easylist.txt: 32034) -.chinanews.com/gg/ -# ||chicagodefender.com/images/banners/ (easylist.txt: 32033) -.chicagodefender.com/images/banners/ -# ||chelsey.co.nz/uploads/Takeovers/ (easylist.txt: 32032) -.chelsey.co.nz/uploads/Takeovers/ -# ||checkwebsiteprice.com/images/bitcoin.jpg (easylist.txt: 32031) -.checkwebsiteprice.com/images/bitcoin\.jpg -# ||checkpagerank.net/banners/ (easylist.txt: 32030) -.checkpagerank.net/banners/ -# ||chapala.com/wwwboard/webboardtop.htm (easylist.txt: 32029) -.chapala.com/wwwboard/webboardtop\.htm -# ||channelonline.tv/channelonline_advantage/ (easylist.txt: 32028) -.channelonline.tv/channelonline_advantage/ -# ||channel5.com/assets/takeovers/ (easylist.txt: 32027) -.channel5.com/assets/takeovers/ -# ||channel4fm.com/promotion/ (easylist.txt: 32026) -.channel4fm.com/promotion/ -# ||channel4fm.com/images/background/ (easylist.txt: 32025) -.channel4fm.com/images/background/ -# ||channel4.com/bips/*/brand/$image (easylist.txt: 32024) -.channel4.com/bips/.*/brand/ -# ||channel4.com/assets/programmes/images/originals/$image (easylist.txt: 32023) -.channel4.com/assets/programmes/images/originals/ -# ||chaklyrics.com/add$subdocument (easylist.txt: 32022) -.chaklyrics.com/add -# ||ch131.so/images/2etio.gif (easylist.txt: 32021) -.ch131.so/images/2etio\.gif -# ||cghub.com/files/CampaignCode/ (easylist.txt: 32020) -.cghub.com/files/CampaignCode/ -# ||ceylontoday.lk^*/banner/ (easylist.txt: 32019) -.ceylontoday.lk/.*/banner/ -# ||ceoexpress.com/inc/ads (easylist.txt: 32018) -.ceoexpress.com/inc/ads -# ||centralfm.co.uk/images/banners/ (easylist.txt: 32017) -.centralfm.co.uk/images/banners/ -# ||centos.org/donors/ (easylist.txt: 32016) -.centos.org/donors/ -# ||ceforum.co.uk/images/misc/PartnerLinks (easylist.txt: 32014) -.ceforum.co.uk/images/misc/PartnerLinks -# ||cdn.turner.com^*/groupon/ (easylist.txt: 32012) -.cdn.turner.com/.*/groupon/ -# ||cdn-surfline.com/home/billabong-xxl.png (easylist.txt: 32011) -.cdn-surfline.com/home/billabong-xxl\.png -# ||cdmediaworld.com*/! (easylist.txt: 32010) -.cdmediaworld.com*./(.*/)?! -# ||cdmagurus.com/img/kcpf2.swf (easylist.txt: 32009) -.cdmagurus.com/img/kcpf2\.swf -# ||cdmagurus.com/img/*.gif (easylist.txt: 32008) -.cdmagurus.com/img/.*\.gif -# ||cdmagurus.com/forum/cyberflashing.swf (easylist.txt: 32007) -.cdmagurus.com/forum/cyberflashing\.swf -# ||cdcovers.cc/images/external/toolbar (easylist.txt: 32006) -.cdcovers.cc/images/external/toolbar -# ||cd1025.com/www/img/btn- (easylist.txt: 32005) -.cd1025.com/www/img/btn- -# ||cd1025.com/www/assets/a/ (easylist.txt: 32004) -.cd1025.com/www/assets/a/ -# ||ccfm.org.za^*/sads/ (easylist.txt: 32003) -.ccfm.org.za/.*/sads/ -# ||cbslocal.com/rotatable? (easylist.txt: 32002) -.cbslocal.com/rotatable\? -# ||cbslocal.com/deals/widget/ (easylist.txt: 32001) -.cbslocal.com/deals/widget/ -# ||cbsinteractive.co.uk/cbsi/ads/ (easylist.txt: 32000) -.cbsinteractive.co.uk/cbsi/ads/ -# ||cbn.co.za/images/banners/ (easylist.txt: 31999) -.cbn.co.za/images/banners/ -# ||cbfsms.com^*-banner.gif (easylist.txt: 31998) -.cbfsms.com/.*-banner\.gif -# ||cbc.ca/video/bigbox.html (easylist.txt: 31997) -.cbc.ca/video/bigbox\.html -# ||cbc.ca/deals/ (easylist.txt: 31996) -.cbc.ca/deals/ -# ||catholicculture.org/images/banners/ (easylist.txt: 31995) -.catholicculture.org/images/banners/ -# ||catalystmagazine.net/images/banners/ (easylist.txt: 31994) -.catalystmagazine.net/images/banners/ -# ||casualgaming.biz/banners/ (easylist.txt: 31993) -.casualgaming.biz/banners/ -# ||castanet.net/clients/ (easylist.txt: 31992) -.castanet.net/clients/ -# ||cash9.org/assets/img/banner2.gif (easylist.txt: 31991) -.cash9.org/assets/img/banner2\.gif -# ||carsuk.net/directory/panel-promo- (easylist.txt: 31990) -.carsuk.net/directory/panel-promo- -# ||carsguide.com.au^*/marketing/ (easylist.txt: 31989) -.carsguide.com.au/.*/marketing/ -# ||carsguide.com.au/images/uploads/*_bg. (easylist.txt: 31988) -.carsguide.com.au/images/uploads/.*_bg\. -# ||carsales.com.au^*/backgrounds/ (easylist.txt: 31987) -.carsales.com.au/.*/backgrounds/ -# ||cars.com/js/cars/catretargeting.js (easylist.txt: 31986) -.cars.com/js/cars/catretargeting\.js -# ||cars.com/go/includes/targeting/ (easylist.txt: 31985) -.cars.com/go/includes/targeting/ -# ||cargonewsasia.com/promotion/ (easylist.txt: 31984) -.cargonewsasia.com/promotion/ -# ||cardsharing.info/wp-content/uploads/*/ALLS.jpg (easylist.txt: 31983) -.cardsharing.info/wp-content/uploads/.*/ALLS\.jpg -# ||cardschat.com/pkimg/banners/ (easylist.txt: 31982) -.cardschat.com/pkimg/banners/ -# ||cardomain.com/empty_pg.htm (easylist.txt: 31981) -.cardomain.com/empty_pg\.htm -# ||card-sharing.net/umbrella.png (easylist.txt: 31980) -.card-sharing.net/umbrella\.png -# ||card-sharing.net/topsharingserver.jpg (easylist.txt: 31979) -.card-sharing.net/topsharingserver\.jpg -# ||card-sharing.net/cccamcorner.gif (easylist.txt: 31978) -.card-sharing.net/cccamcorner\.gif -# ||capitolfax.com/wp-content/*Ad_ (easylist.txt: 31976) -.capitolfax.com/wp-content/.*Ad_ -# ||capitolfax.com/wp-content/*ad. (easylist.txt: 31975) -.capitolfax.com/wp-content/.*ad\. -# ||capitalfm.co.ke^*/830x460-iv.jpg (easylist.txt: 31974) -.capitalfm.co.ke/.*/830x460-iv\.jpg -# ||capitalethiopia.com/images/banners/ (easylist.txt: 31973) -.capitalethiopia.com/images/banners/ -# ||capetownetc.com^*/wallpapers/ (easylist.txt: 31971) -.capetownetc.com/.*/wallpapers/ -# ||canvas.thenextweb.com^ (easylist.txt: 31970) -.canvas.thenextweb.com -# ||canindia.com^*_banner.png (easylist.txt: 31969) -.canindia.com/.*_banner\.png -# ||candystand.com/game-track.do? (easylist.txt: 31968) -.candystand.com/game-track\.do\? -# ||cancomuk.com/campaigns/ (easylist.txt: 31967) -.cancomuk.com/campaigns/ -# ||cananewsonline.com/files/banners/ (easylist.txt: 31966) -.cananewsonline.com/files/banners/ -# ||canalboat.co.uk^*/Banners/ (easylist.txt: 31965) -.canalboat.co.uk/.*/Banners/ -# ||canalboat.co.uk^*/bannerImage. (easylist.txt: 31964) -.canalboat.co.uk/.*/bannerImage\. -# ||cameroon-concord.com/images/banners/ (easylist.txt: 31963) -.cameroon-concord.com/images/banners/ -# ||calguns.net/images/ads (easylist.txt: 31962) -.calguns.net/images/ads -# ||calgaryherald.com/images/storysponsor/ (easylist.txt: 31961) -.calgaryherald.com/images/storysponsor/ -# ||calgaryherald.com/images/sponsor/ (easylist.txt: 31960) -.calgaryherald.com/images/sponsor/ -# ||caledonianrecord.com/SiteImages/Tile/ (easylist.txt: 31959) -.caledonianrecord.com/SiteImages/Tile/ -# ||caledonianrecord.com/SiteImages/HomePageTiles/ (easylist.txt: 31958) -.caledonianrecord.com/SiteImages/HomePageTiles/ -# ||caledonianrecord.com/iFrame_ (easylist.txt: 31957) -.caledonianrecord.com/iFrame_ -# ||caladvocate.com/images/banner- (easylist.txt: 31956) -.caladvocate.com/images/banner- -# ||cafonline.com^*/sponsors/ (easylist.txt: 31955) -.cafonline.com/.*/sponsors/ -# ||cafimg.com/images/other/ (easylist.txt: 31954) -.cafimg.com/images/other/ -# ||cafemomstatic.com/images/background/$image (easylist.txt: 31953) -.cafemomstatic.com/images/background/ -# ||cadvv.koreaherald.com^ (easylist.txt: 31952) -.cadvv.koreaherald.com -# ||cadvv.heraldm.com^ (easylist.txt: 31951) -.cadvv.heraldm.com -# ||cadplace.co.uk/banner/ (easylist.txt: 31950) -.cadplace.co.uk/banner/ -# ||caclubindia.com/campaign/ (easylist.txt: 31949) -.caclubindia.com/campaign/ -# ||c9tk.com/images/banner/ (easylist.txt: 31948) -.c9tk.com/images/banner/ -# ||c21media.net/wp-content/plugins/sam-images/ (easylist.txt: 31947) -.c21media.net/wp-content/plugins/sam-images/ -# ||c-ville.com/image/pool/ (easylist.txt: 31946) -.c-ville.com/image/pool/ -# ||c-sharpcorner.com^*/banners/ (easylist.txt: 31945) -.c-sharpcorner.com/.*/banners/ -# ||bypassoxy.com/vectrotunnel-banner.gif (easylist.txt: 31944) -.bypassoxy.com/vectrotunnel-banner\.gif -# ||bwp.theinsider.com.com^ (easylist.txt: 31943) -.bwp.theinsider.com.com -# ||bvibeacon.com^*/banners/ (easylist.txt: 31942) -.bvibeacon.com/.*/banners/ -# ||buzznet.com/topscript.js.php? (easylist.txt: 31941) -.buzznet.com/topscript\.js\.php\? -# ||buzzintown.com/show_bnr.php? (easylist.txt: 31940) -.buzzintown.com/show_bnr\.php\? -# ||buyselltrade.ca/banners/ (easylist.txt: 31939) -.buyselltrade.ca/banners/ -# ||buy.com/*/textlinks.aspx (easylist.txt: 31938) -.buy.com/.*/textlinks\.aspx -# ||buy-n-shoot.com/images/banners/banner- (easylist.txt: 31937) -.buy-n-shoot.com/images/banners/banner- -# ||busiweek.com^*/banners/ (easylist.txt: 31936) -.busiweek.com/.*/banners/ -# ||bundesliga.com^*/_partner/ (easylist.txt: 31935) -.bundesliga.com/.*/_partner/ -# ||btmon.com/da/$subdocument (easylist.txt: 31934) -.btmon.com/da/ -# ||btkitty.org/static/images/880X60.gif (easylist.txt: 31933) -.btkitty.org/static/images/880X60\.gif -# ||btkitty.com/static/images/880X60.gif (easylist.txt: 31932) -.btkitty.com/static/images/880X60\.gif -# ||btdigg.org/images/btguard (easylist.txt: 31931) -.btdigg.org/images/btguard -# ||bt.am/banners/ (easylist.txt: 31930) -.bt.am/banners/ -# ||bt-chat.com/images/affiliates/ (easylist.txt: 31929) -.bt-chat.com/images/affiliates/ -# ||bsvc.ebuddy.com/bannerservice/tabsaww (easylist.txt: 31928) -.bsvc.ebuddy.com/bannerservice/tabsaww -# ||bsmphilly.com/files/banners/ (easylist.txt: 31927) -.bsmphilly.com/files/banners/ -# ||brudirect.com/images/banners/ (easylist.txt: 31926) -.brudirect.com/images/banners/ -# ||browsershots.org/static/images/creative/ (easylist.txt: 31925) -.browsershots.org/static/images/creative/ -# ||brownfieldonline.com^*/banners/ (easylist.txt: 31924) -.brownfieldonline.com/.*/banners/ -# ||brothersoft.com^*/softsale/ (easylist.txt: 31923) -.brothersoft.com/.*/softsale/ -# ||brothersoft.com^*/homepage_ppd.html (easylist.txt: 31922) -.brothersoft.com/.*/homepage_ppd\.html -# ||brothersoft.com^*/float.js (easylist.txt: 31921) -.brothersoft.com/.*/float\.js -# ||brothersoft.com/softsale/ (easylist.txt: 31920) -.brothersoft.com/softsale/ -# ||brothersoft.com/gg/top.js (easylist.txt: 31919) -.brothersoft.com/gg/top\.js -# ||brothersoft.com/gg/soft_down.js (easylist.txt: 31918) -.brothersoft.com/gg/soft_down\.js -# ||brothersoft.com/gg/kontera_com.js (easylist.txt: 31917) -.brothersoft.com/gg/kontera_com\.js -# ||brothersoft.com/gg/g.js (easylist.txt: 31916) -.brothersoft.com/gg/g\.js -# ||brothersoft.com/gg/center_gg.js (easylist.txt: 31915) -.brothersoft.com/gg/center_gg\.js -# ||brobible.com/files/uploads/images/takeovers/ (easylist.txt: 31914) -.brobible.com/files/uploads/images/takeovers/ -# ||broadcastingworld.net/marquee- (easylist.txt: 31913) -.broadcastingworld.net/marquee- -# ||broadcastingworld.net/*-promo.jpg (easylist.txt: 31912) -.broadcastingworld.net/.*-promo\.jpg -# ||broadcastify.com/sm/ (easylist.txt: 31911) -.broadcastify.com/sm/ -# ||broadbandgenie.co.uk/img/talktalk/$image (easylist.txt: 31910) -.broadbandgenie.co.uk/img/talktalk/ -# ||broadbandgenie.co.uk/images/takeover/ (easylist.txt: 31909) -.broadbandgenie.co.uk/images/takeover/ -# ||broadbandforum.co/stock/ (easylist.txt: 31908) -.broadbandforum.co/stock/ -# ||broadbandchoices.co.uk/aff.js (easylist.txt: 31907) -.broadbandchoices.co.uk/aff\.js -# ||britishcolumbia.com/sys/ban.asp (easylist.txt: 31906) -.britishcolumbia.com/sys/ban\.asp -# ||brenz.net/img/bannerrss.gif (easylist.txt: 31904) -.brenz.net/img/bannerrss\.gif -# ||breitlingsource.com/images/pflogo.jpg (easylist.txt: 31903) -.breitlingsource.com/images/pflogo\.jpg -# ||breitlingsource.com/images/govberg*.jpg (easylist.txt: 31902) -.breitlingsource.com/images/govberg.*\.jpg -# ||brecorder.com^*/banners/ (easylist.txt: 31901) -.brecorder.com/.*/banners/ -# ||break.com^*/marketguide- (easylist.txt: 31900) -.break.com/.*/marketguide- -# ||brandchannel.com/images/educationconference/ (easylist.txt: 31899) -.brandchannel.com/images/educationconference/ -# ||boxlotto.com/banrotate. (easylist.txt: 31895) -.boxlotto.com/banrotate\. -# ||boulderjewishnews.org^*/JFSatHome-3.gif (easylist.txt: 31894) -.boulderjewishnews.org/.*/JFSatHome-3\.gif -# ||botswanaguardian.co.bw/images/banners/ (easylist.txt: 31893) -.botswanaguardian.co.bw/images/banners/ -# ||bom.gov.au/includes/marketing2.php? (easylist.txt: 31891) -.bom.gov.au/includes/marketing2\.php\? -# ||bolandrugby.com/images/sponsors. (easylist.txt: 31890) -.bolandrugby.com/images/sponsors\. -# ||bnrs.ilm.ee^ (easylist.txt: 31889) -.bnrs.ilm.ee -# ||bn0.com/4v4.js (easylist.txt: 31888) -.bn0.com/4v4\.js -# ||bloomberg.com^*/banner.js (easylist.txt: 31887) -.bloomberg.com/.*/banner\.js -# ||blogspider.net/images/promo/ (easylist.txt: 31886) -.blogspider.net/images/promo/ -# ||blogsmithmedia.com^*_skin_ (easylist.txt: 31884) -.blogsmithmedia.com/.*_skin_ -# ||blogsmithmedia.com^*_skin. (easylist.txt: 31883) -.blogsmithmedia.com/.*_skin\. -# ||blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments.png (easylist.txt: 31882) -.blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments\.png -# ||blogorama.com/images/banners/ (easylist.txt: 31881) -.blogorama.com/images/banners/ -# ||blogevaluation.com/templates/userfiles/banners/ (easylist.txt: 31880) -.blogevaluation.com/templates/userfiles/banners/ -# ||blog.co.uk/script/blogs/afc.js (easylist.txt: 31879) -.blog.co.uk/script/blogs/afc\.js -# ||blitzdownloads.com/promo/ (easylist.txt: 31878) -.blitzdownloads.com/promo/ -# ||blip.fm/ad/ (easylist.txt: 31877) -.blip.fm/ad/ -# ||blinkx.com/adhocnetwork/ (easylist.txt: 31876) -.blinkx.com/adhocnetwork/ -# ||bleacherreport.net^*_redesign_skin_ (easylist.txt: 31875) -.bleacherreport.net/.*_redesign_skin_ -# ||bleacherreport.net/images/skins/ (easylist.txt: 31874) -.bleacherreport.net/images/skins/ -# ||blbclassic.org/assets/images/*banners/ (easylist.txt: 31873) -.blbclassic.org/assets/images/.*banners/ -# ||blasternation.com/images/hearthstone.jpg (easylist.txt: 31872) -.blasternation.com/images/hearthstone\.jpg -# ||blackpressusa.com^*300x250. (easylist.txt: 31871) -.blackpressusa.com/.*300x250\. -# ||blackpressusa.com^*300by250. (easylist.txt: 31870) -.blackpressusa.com/.*300by250\. -# ||blackpressusa.com^*250by300. (easylist.txt: 31869) -.blackpressusa.com/.*250by300\. -# ||blackpressusa.com^*/Ford.jpg (easylist.txt: 31868) -.blackpressusa.com/.*/Ford\.jpg -# ||blacklistednews.com/images/*banner (easylist.txt: 31867) -.blacklistednews.com/images/.*banner -# ||blackhatlibrary.net/hacktalk.png (easylist.txt: 31866) -.blackhatlibrary.net/hacktalk\.png -# ||blackchronicle.com/images/Banners- (easylist.txt: 31865) -.blackchronicle.com/images/Banners- -# ||blackberryforums.net/banners/ (easylist.txt: 31864) -.blackberryforums.net/banners/ -# ||bkmag.com/binary/*/1380x800_ (easylist.txt: 31863) -.bkmag.com/binary/.*/1380x800_ -# ||bizhub.vn^*/agoda-for-bizhub.jpg (easylist.txt: 31862) -.bizhub.vn/.*/agoda-for-bizhub\.jpg -# ||bizarremag.com/images/skin_ (easylist.txt: 31861) -.bizarremag.com/images/skin_ -# ||bizanti.youwatch.org^ (easylist.txt: 31860) -.bizanti.youwatch.org -# ||bittorrent.am/banners/ (easylist.txt: 31859) -.bittorrent.am/banners/ -# ||bitreactor.to/static/subpage$subdocument (easylist.txt: 31858) -.bitreactor.to/static/subpage -# ||bitreactor.to/sponsor/ (easylist.txt: 31857) -.bitreactor.to/sponsor/ -# ||bitminter.com/images/info/spondoolies (easylist.txt: 31856) -.bitminter.com/images/info/spondoolies -# ||bitcoinreviewer.com/wp-content/uploads/*/banner-luckybit.jpg (easylist.txt: 31855) -.bitcoinreviewer.com/wp-content/uploads/.*/banner-luckybit\.jpg -# ||bitcoinist.net/wp-content/uploads/*_250x250_ (easylist.txt: 31854) -.bitcoinist.net/wp-content/uploads/.*_250x250_ -# ||bitcoinist.net/wp-content/*/630x80-bitcoinist.gif (easylist.txt: 31853) -.bitcoinist.net/wp-content/.*/630x80-bitcoinist\.gif -# ||bit-tech.net/images/backgrounds/skin/ (easylist.txt: 31852) -.bit-tech.net/images/backgrounds/skin/ -# ||binsearch.info/iframe.php (easylist.txt: 31850) -.binsearch.info/iframe\.php -# ||bikeradar.com/media/img/commercial/ (easylist.txt: 31848) -.bikeradar.com/media/img/commercial/ -# ||bikeforums.net/images/sponsors/ (easylist.txt: 31847) -.bikeforums.net/images/sponsors/ -# ||bigsports.tv/live/ado.php (easylist.txt: 31846) -.bigsports.tv/live/ado\.php -# ||bigpoint.com/xml/recommender.swf? (easylist.txt: 31845) -.bigpoint.com/xml/recommender\.swf\? -# ||bigeddieradio.com/uploads/sponsors/ (easylist.txt: 31844) -.bigeddieradio.com/uploads/sponsors/ -# ||bibme.org/images/grammarly/ (easylist.txt: 31843) -.bibme.org/images/grammarly/ -# ||bettyconfidential.com/media/fmads/ (easylist.txt: 31841) -.bettyconfidential.com/media/fmads/ -# ||bettingsports.com/where_to_bet (easylist.txt: 31840) -.bettingsports.com/where_to_bet -# ||bettingsports.com/top_bonuses (easylist.txt: 31839) -.bettingsports.com/top_bonuses -# ||better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend.png (easylist.txt: 31838) -.better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend\.png -# ||better-explorer.com/wp-content/uploads/2013/07/hf.5.png (easylist.txt: 31837) -.better-explorer.com/wp-content/uploads/2013/07/hf\.5\.png -# ||better-explorer.com/wp-content/uploads/2012/09/credits.png (easylist.txt: 31836) -.better-explorer.com/wp-content/uploads/2012/09/credits\.png -# ||bets4free.co.uk/content/5481b452d9ce40.09507031.jpg (easylist.txt: 31835) -.bets4free.co.uk/content/5481b452d9ce40\.09507031\.jpg -# ||bestvpn.com/wp-content/uploads/*/mosttrustedname_260x300_ (easylist.txt: 31834) -.bestvpn.com/wp-content/uploads/.*/mosttrustedname_260x300_ -# ||bestlistonline.info/link/ad.js (easylist.txt: 31833) -.bestlistonline.info/link/ad\.js -# ||bestblackhatforum.com/images/my_compas/ (easylist.txt: 31832) -.bestblackhatforum.com/images/my_compas/ -# ||bernama.com/banner/ (easylist.txt: 31831) -.bernama.com/banner/ -# ||benchmarkreviews.com^*/banners/ (easylist.txt: 31830) -.benchmarkreviews.com/.*/banners/ -# ||bellevision.com/belle/adds/ (easylist.txt: 31829) -.bellevision.com/belle/adds/ -# ||bellanaija.com^*/wp-banners/ (easylist.txt: 31828) -.bellanaija.com/.*/wp-banners/ -# ||belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img.js (easylist.txt: 31827) -.belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img\.js -# ||beingpc.com^*/banners/ (easylist.txt: 31826) -.beingpc.com/.*/banners/ -# ||beforeitsnews.com/static/iframe/ (easylist.txt: 31825) -.beforeitsnews.com/static/iframe/ -# ||beforeitsnews.com/static/data/story-stripmall-new.html (easylist.txt: 31824) -.beforeitsnews.com/static/data/story-stripmall-new\.html -# ||beap.gemini.yahoo.com^ (easylist.txt: 31823) -.beap.gemini.yahoo.com -# ||bdnews24.com^*/Ads/ (easylist.txt: 31822) -.bdnews24.com/.*/Ads/ -# ||bcdb.com^*/banners.pl? (easylist.txt: 31821) -.bcdb.com/.*/banners\.pl\? -# ||bbc.com^*/logoDupontSmall.png (easylist.txt: 31820) -.bbc.com/.*/logoDupontSmall\.png -# ||bbc.co.uk^*/bbccom.js? (easylist.txt: 31819) -.bbc.co.uk/.*/bbccom\.js\? -# ||bazaraki.com/bannerImage.php? (easylist.txt: 31818) -.bazaraki.com/bannerImage\.php\? -# ||baymirror.com/static/js/4728ba74bc.js (easylist.txt: 31817) -.baymirror.com/static/js/4728ba74bc\.js -# ||baymirror.com/static/img/bar.gif (easylist.txt: 31816) -.baymirror.com/static/img/bar\.gif -# ||bayfiles.net/img/download-button-orange.png (easylist.txt: 31815) -.bayfiles.net/img/download-button-orange\.png -# ||bay.com.mt/modules/mod_novarp/ (easylist.txt: 31814) -.bay.com.mt/modules/mod_novarp/ -# ||bay.com.mt/images/banners/ (easylist.txt: 31813) -.bay.com.mt/images/banners/ -# ||bassmaster.com^*/premier_sponsor_logo/ (easylist.txt: 31812) -.bassmaster.com/.*/premier_sponsor_logo/ -# ||basinsradio.com/images/banners/ (easylist.txt: 31811) -.basinsradio.com/images/banners/ -# ||bashandslash.com/images/banners/ (easylist.txt: 31810) -.bashandslash.com/images/banners/ -# ||baseballamerica.com/plugs/ (easylist.txt: 31809) -.baseballamerica.com/plugs/ -# ||barnesandnoble.com/promo/ (easylist.txt: 31808) -.barnesandnoble.com/promo/ -# ||banners.playocio.com^ (easylist.txt: 31807) -.banners.playocio.com -# ||banners.itweb.co.za^ (easylist.txt: 31806) -.banners.itweb.co.za -# ||banners.i-comers.com^ (easylist.txt: 31805) -.banners.i-comers.com -# ||banners.friday-ad.co.uk/hpbanneruploads/$image (easylist.txt: 31804) -.banners.friday-ad.co.uk/hpbanneruploads/ -# ||banners.expressindia.com^ (easylist.txt: 31803) -.banners.expressindia.com -# ||banners.clubworldgroup.com^ (easylist.txt: 31802) -.banners.clubworldgroup.com -# ||banners.beted.com^ (easylist.txt: 31801) -.banners.beted.com -# ||banners.beevpn.com^ (easylist.txt: 31800) -.banners.beevpn.com -# ||banner.itweb.co.za^ (easylist.txt: 31799) -.banner.itweb.co.za -# ||banner.automotiveworld.com^ (easylist.txt: 31798) -.banner.automotiveworld.com -# ||ballz.co.za^*/CLIENTS/ (easylist.txt: 31797) -.ballz.co.za/.*/CLIENTS/ -# ||ballz.co.za/system-files/banners/ (easylist.txt: 31796) -.ballz.co.za/system-files/banners/ -# ||ballislife.com^*/ova-player.swf$object-subrequest (easylist.txt: 31795) -.ballislife.com/.*/ova-player\.swf -# ||ballerarcade.com/ispark/ (easylist.txt: 31794) -.ballerarcade.com/ispark/ -# ||baku2015.com/imgml/sponsor/ (easylist.txt: 31793) -.baku2015.com/imgml/sponsor/ -# ||bakercountypress.com/images/banners/ (easylist.txt: 31792) -.bakercountypress.com/images/banners/ -# ||baixartv.com/img/bonsdescontos. (easylist.txt: 31791) -.baixartv.com/img/bonsdescontos\. -# ||bahamaslocal.com/img/banners/ (easylist.txt: 31790) -.bahamaslocal.com/img/banners/ -# ||badongo.com^*_banner_ (easylist.txt: 31789) -.badongo.com/.*_banner_ -# ||backpagelead.com.au/images/banners/ (easylist.txt: 31788) -.backpagelead.com.au/images/banners/ -# ||backin.net/s/promo/ (easylist.txt: 31787) -.backin.net/s/promo/ -# ||babycenter.com/viewadvertorialpoll.htm (easylist.txt: 31786) -.babycenter.com/viewadvertorialpoll\.htm -# ||babelzilla.org/images/banners/babelzilla-powerfox.png (easylist.txt: 31785) -.babelzilla.org/images/banners/babelzilla-powerfox\.png -# ||babelzilla.org/forum/images/powerfox-top.png (easylist.txt: 31784) -.babelzilla.org/forum/images/powerfox-top\.png -# ||ba.kioskea.net^ (easylist.txt: 31783) -.ba.kioskea.net -# ||ba.ccm2.net^ (easylist.txt: 31782) -.ba.ccm2.net -# ||b92.net/images/banners/ (easylist.txt: 31781) -.b92.net/images/banners/ -# ||b.thefile.me^ (easylist.txt: 31780) -.b.thefile.me -# ||b.localpages.com^ (easylist.txt: 31779) -.b.localpages.com -# ||azlyrics.com^*_az.js (easylist.txt: 31778) -.azlyrics.com/.*_az\.js -# ||azcs.co.uk^*/backgrounds/rotate.php (easylist.txt: 31777) -.azcs.co.uk/.*/backgrounds/rotate\.php -# ||azcentral.com/incs/dfp-refresh.php.inc? (easylist.txt: 31776) -.azcentral.com/incs/dfp-refresh\.php\.inc\? -# ||awkwardfamilyphotos.com*/?ad= (easylist.txt: 31775) -.awkwardfamilyphotos.com*./(.*/)?\?ad= -# ||avstop.com/avbanner/ (easylist.txt: 31774) -.avstop.com/avbanner/ -# ||avsforum.com/alliance/ (easylist.txt: 31773) -.avsforum.com/alliance/ -# ||avpa.dzone.com^ (easylist.txt: 31772) -.avpa.dzone.com -# ||avn.com/delivery/ (easylist.txt: 31771) -.avn.com/delivery/ -# ||avitop.com/image/mig.gif (easylist.txt: 31770) -.avitop.com/image/mig\.gif -# ||avitop.com/image/mig-anim.gif (easylist.txt: 31769) -.avitop.com/image/mig-anim\.gif -# ||avitop.com/image/amazon/ (easylist.txt: 31768) -.avitop.com/image/amazon/ -# ||aviationweek.com^*/leader_board.htm (easylist.txt: 31767) -.aviationweek.com/.*/leader_board\.htm -# ||avforums.com/images/skins/ (easylist.txt: 31766) -.avforums.com/images/skins/ -# ||aveherald.com/images/banners/ (easylist.txt: 31765) -.aveherald.com/images/banners/ -# ||autoworld.co.za^*/ads/ (easylist.txt: 31763) -.autoworld.co.za/.*/ads/ -# ||autosport.com/skinning/ (easylist.txt: 31762) -.autosport.com/skinning/ -# ||autoline.info/atlads/ (easylist.txt: 31761) -.autoline.info/atlads/ -# ||autoline-eu.ie/atlads/ (easylist.txt: 31760) -.autoline-eu.ie/atlads/ -# ||autoline-eu.co.za/atlads/ (easylist.txt: 31759) -.autoline-eu.co.za/atlads/ -# ||autoline-eu.co.uk/atlads/ (easylist.txt: 31758) -.autoline-eu.co.uk/atlads/ -# ||auto123.com/sasserve.spy (easylist.txt: 31757) -.auto123.com/sasserve\.spy -# ||at膽he.net/pu/ (easylist.txt: 31755) -.at膽he.net/pu/ -# ||attitude.co.uk/images/Music_Ticket_Button_ (easylist.txt: 31754) -.attitude.co.uk/images/Music_Ticket_Button_ -# ||atimes.com^*/ahm728x90.swf (easylist.txt: 31753) -.atimes.com/.*/ahm728x90\.swf -# ||atimes.com/banner/ (easylist.txt: 31752) -.atimes.com/banner/ -# ||atdhe.ws/pp.js (easylist.txt: 31751) -.atdhe.ws/pp\.js -# ||astronomynow.com/wp-content/promos/ (easylist.txt: 31750) -.astronomynow.com/wp-content/promos/ -# ||astronomy.com/sitefiles/overlays/overlaygenerator.aspx? (easylist.txt: 31749) -.astronomy.com/sitefiles/overlays/overlaygenerator\.aspx\? -# ||astalavista.com^*/sponsor- (easylist.txt: 31748) -.astalavista.com/.*/sponsor- -# ||astalavista.com/avtng/ (easylist.txt: 31747) -.astalavista.com/avtng/ -# ||askbobrankin.com/awpopup*.js (easylist.txt: 31746) -.askbobrankin.com/awpopup.*\.js -# ||askandyaboutclothes.com/images/$~third-party (easylist.txt: 31745) -.askandyaboutclothes.com/images/ -# ||ask.com/fifdart? (easylist.txt: 31744) -.ask.com/fifdart\? -# ||ask.com/display.html? (easylist.txt: 31743) -.ask.com/display\.html\? -# ||asianewsnet.net/banner/ (easylist.txt: 31742) -.asianewsnet.net/banner/ -# ||asd.projectfreetv.so^ (easylist.txt: 31741) -.asd.projectfreetv.so -# ||as.inbox.com^ (easylist.txt: 31740) -.as.inbox.com -# ||artima.com/zcr/ (easylist.txt: 31739) -.artima.com/zcr/ -# ||arstechnica.net^*/sponsor- (easylist.txt: 31738) -.arstechnica.net/.*/sponsor- -# ||arstechnica.net/public/shared/scripts/da- (easylist.txt: 31737) -.arstechnica.net/public/shared/scripts/da- -# ||arsenal-mania.com/images/backsplash_ (easylist.txt: 31736) -.arsenal-mania.com/images/backsplash_ -# ||aroundosceola.com/banner- (easylist.txt: 31735) -.aroundosceola.com/banner- -# ||arnnet.com.au/files/skins/ (easylist.txt: 31734) -.arnnet.com.au/files/skins/ -# ||armyrecognition.com^*/customer/ (easylist.txt: 31733) -.armyrecognition.com/.*/customer/ -# ||armslist.com/images/sponsors/ (easylist.txt: 31732) -.armslist.com/images/sponsors/ -# ||armorgames.com^*/siteskin.css (easylist.txt: 31731) -.armorgames.com/.*/siteskin\.css -# ||armorgames.com^*/site-skins/ (easylist.txt: 31730) -.armorgames.com/.*/site-skins/ -# ||armorgames.com^*/banners/ (easylist.txt: 31729) -.armorgames.com/.*/banners/ -# ||armorgames.com/backup_ (easylist.txt: 31728) -.armorgames.com/backup_ -# ||armorgames.com/assets/*_skin_ (easylist.txt: 31727) -.armorgames.com/assets/.*_skin_ -# ||arenadb.net^*/banners/ (easylist.txt: 31726) -.arenadb.net/.*/banners/ -# ||arenabg.com^*/banners/ (easylist.txt: 31725) -.arenabg.com/.*/banners/ -# ||archeagedatabase.net/images/okaygoods.gif (easylist.txt: 31724) -.archeagedatabase.net/images/okaygoods\.gif -# ||aravot.am/banner/ (easylist.txt: 31723) -.aravot.am/banner/ -# ||ar15.com^*_60x180.jpg (easylist.txt: 31722) -.ar15.com/.*_60x180\.jpg -# ||ar15.com/images/highlight/ (easylist.txt: 31721) -.ar15.com/images/highlight/ -# ||ar15.com/biz/ (easylist.txt: 31720) -.ar15.com/biz/ -# ||aps.dz^*/banners/ (easylist.txt: 31719) -.aps.dz/.*/banners/ -# ||appwork.org/a_d_s/ (easylist.txt: 31718) -.appwork.org/a_d_s/ -# ||appspot.com/adop/ (easylist.txt: 31717) -.appspot.com/adop/ -# ||applifier.com/bar.htm? (easylist.txt: 31716) -.applifier.com/bar\.htm\? -# ||appleserialnumberinfo.com/desktop/sdas/$subdocument (easylist.txt: 31715) -.appleserialnumberinfo.com/desktop/sdas/ -# ||appleinsider.com^*/ai_front_page_google_premium.js (easylist.txt: 31714) -.appleinsider.com/.*/ai_front_page_google_premium\.js -# ||appleinsider.com/macmall (easylist.txt: 31713) -.appleinsider.com/macmall -# ||api.toptenreviews.com^*/request.php (easylist.txt: 31712) -.api.toptenreviews.com/.*/request\.php -# ||apcointl.org/images/corporate_partners/ (easylist.txt: 31711) -.apcointl.org/images/corporate_partners/ -# ||apanews.net/pub/ (easylist.txt: 31710) -.apanews.net/pub/ -# ||apa.az^*/rebans/ (easylist.txt: 31709) -.apa.az/.*/rebans/ -# ||aolcdn.com/os/moat/$script (easylist.txt: 31707) -.aolcdn.com/os/moat/ -# ||aol.co.uk/images/skybet-logo.gif (easylist.txt: 31706) -.aol.co.uk/images/skybet-logo\.gif -# ||anvisoft.com^*/anviad.jpg (easylist.txt: 31705) -.anvisoft.com/.*/anviad\.jpg -# ||anti-scam.org/abanners/ (easylist.txt: 31704) -.anti-scam.org/abanners/ -# ||anti-leech.com/al.php? (easylist.txt: 31703) -.anti-leech.com/al\.php\? -# ||antag.co.uk/js/ov.js.php? (easylist.txt: 31702) -.antag.co.uk/js/ov\.js\.php\? -# ||answerology.com/index.aspx?*=ads.ascx (easylist.txt: 31701) -.answerology.com/index\.aspx\?.*=ads\.ascx -# ||anonytext.tk/re.php (easylist.txt: 31700) -.anonytext.tk/re\.php -# ||anonytext.tk/img/paste-sponsor.png (easylist.txt: 31699) -.anonytext.tk/img/paste-sponsor\.png -# ||anonytext.tk/img/paste-eb.png (easylist.txt: 31698) -.anonytext.tk/img/paste-eb\.png -# ||anonib.com/zimages/ (easylist.txt: 31697) -.anonib.com/zimages/ -# ||annistonstar.com/leaderboard_banner (easylist.txt: 31696) -.annistonstar.com/leaderboard_banner -# ||aniscartujo.com^*/layer.js (easylist.txt: 31695) -.aniscartujo.com/.*/layer\.js -# ||animeshippuuden.com/square.php (easylist.txt: 31694) -.animeshippuuden.com/square\.php -# ||animeshippuuden.com/adcpm.js (easylist.txt: 31693) -.animeshippuuden.com/adcpm\.js -# ||animenewsnetwork.com^*.aframe? (easylist.txt: 31692) -.animenewsnetwork.com/.*\.aframe\? -# ||animenewsnetwork.com/stylesheets/*skin$image (easylist.txt: 31691) -.animenewsnetwork.com/stylesheets/.*skin -# ||animehaven.org/wp-content/banners/ (easylist.txt: 31690) -.animehaven.org/wp-content/banners/ -# ||animefushigi.com/boxes/ (easylist.txt: 31689) -.animefushigi.com/boxes/ -# ||animeflv.net/cpm.html (easylist.txt: 31688) -.animeflv.net/cpm\.html -# ||animeflavor.com/animeflavor-gao-gamebox.swf (easylist.txt: 31687) -.animeflavor.com/animeflavor-gao-gamebox\.swf -# ||animea.net/do/ (easylist.txt: 31686) -.animea.net/do/ -# ||anime44.com/images/videobb2.png (easylist.txt: 31685) -.anime44.com/images/videobb2\.png -# ||anime44.com/anime44box.jpg (easylist.txt: 31684) -.anime44.com/anime44box\.jpg -# ||anime1.com/service/joyfun/ (easylist.txt: 31683) -.anime1.com/service/joyfun/ -# ||anime-source.com/banzai/banner.$subdocument (easylist.txt: 31682) -.anime-source.com/banzai/banner\. -# ||animationxpress.com/anex/solutions/ (easylist.txt: 31681) -.animationxpress.com/anex/solutions/ -# ||animationxpress.com/anex/crosspromotions/ (easylist.txt: 31680) -.animationxpress.com/anex/crosspromotions/ -# ||anilinkz.tv/kwarta- (easylist.txt: 31679) -.anilinkz.tv/kwarta- -# ||anilinkz.com/img/rightsponsors (easylist.txt: 31678) -.anilinkz.com/img/rightsponsors -# ||anilinkz.com/img/leftsponsors. (easylist.txt: 31677) -.anilinkz.com/img/leftsponsors\. -# ||anhits.com/files/banners/ (easylist.txt: 31676) -.anhits.com/files/banners/ -# ||androidpolice.com/wp-content/*/images/das/ (easylist.txt: 31675) -.androidpolice.com/wp-content/.*/images/das/ -# ||androidcommunity.com/external_marketing/$subdocument (easylist.txt: 31674) -.androidcommunity.com/external_marketing/ -# ||andr.net/banners/ (easylist.txt: 31673) -.andr.net/banners/ -# ||anchorfree.net^*/?tm=$subdocument (easylist.txt: 31672) -.anchorfree.net/.*/\?tm= -# ||anchorfree.net/?tm=$subdocument (easylist.txt: 31671) -.anchorfree.net/\?tm= -# ||anchorfree.com/delivery/ (easylist.txt: 31670) -.anchorfree.com/delivery/ -# ||anamera.com/DesktopModules/BannerDisplay/ (easylist.txt: 31669) -.anamera.com/DesktopModules/BannerDisplay/ -# ||analytics.mmosite.com^ (easylist.txt: 31668) -.analytics.mmosite.com -# ||amz.steamprices.com^ (easylist.txt: 31667) -.amz.steamprices.com -# ||amnesty.ca/images/banners/ (easylist.txt: 31666) -.amnesty.ca/images/banners/ -# ||americanfreepress.net/assets/images/Banner_ (easylist.txt: 31665) -.americanfreepress.net/assets/images/Banner_ -# ||americanangler.com/images/banners/ (easylist.txt: 31664) -.americanangler.com/images/banners/ -# ||amd.com/publishingimages/*/master_ (easylist.txt: 31663) -.amd.com/publishingimages/.*/master_ -# ||ambriefonline.com^*/banners/ (easylist.txt: 31662) -.ambriefonline.com/.*/banners/ -# ||amazonaws.com/files.bannersnack.com/ (easylist.txt: 31655) -.amazonaws.com/files\.bannersnack\.com/ -# ||amazonaws.com/cdn.megacpm.com/ (easylist.txt: 31652) -.amazonaws.com/cdn\.megacpm\.com/ -# ||amazon.com/aan/$subdocument (easylist.txt: 31651) -.amazon.com/aan/ -# ||amazingmoneymagnet.com//upload/banners/ (easylist.txt: 31650) -# ||alternet.org/givememygfp. (easylist.txt: 31649) -.alternet.org/givememygfp\. -# ||altdaily.com/images/banners/ (easylist.txt: 31648) -.altdaily.com/images/banners/ -# ||allthelyrics.com^*/popup.js (easylist.txt: 31647) -.allthelyrics.com/.*/popup\.js -# ||allsp.ch/feeder.php (easylist.txt: 31646) -.allsp.ch/feeder\.php -# ||allmyvideos.net^*/pu.js (easylist.txt: 31645) -.allmyvideos.net/.*/pu\.js -# ||allmyvideos.net/player/ova-jw.swf (easylist.txt: 31644) -.allmyvideos.net/player/ova-jw\.swf -# ||allmyvideos.net/js/ad_ (easylist.txt: 31643) -.allmyvideos.net/js/ad_ -# ||allmusic.com^*_affiliate_ (easylist.txt: 31642) -.allmusic.com/.*_affiliate_ -# ||allmovieportal.com/dynbanner. (easylist.txt: 31641) -.allmovieportal.com/dynbanner\. -# ||allmovie.com^*/affiliate_ (easylist.txt: 31640) -.allmovie.com/.*/affiliate_ -# ||allkpop.com^*/takeover/ (easylist.txt: 31639) -.allkpop.com/.*/takeover/ -# ||allhiphop.com/site_resources/ui-images/*-conduit-banner.gif (easylist.txt: 31638) -.allhiphop.com/site_resources/ui-images/.*-conduit-banner\.gif -# ||allghananews.com/images/banners/ (easylist.txt: 31637) -.allghananews.com/images/banners/ -# ||all4divx.com/js/jscode2.js (easylist.txt: 31636) -.all4divx.com/js/jscode2\.js -# ||alatest.com/banner/ (easylist.txt: 31635) -.alatest.com/banner/ -# ||alatest.co.uk/banner/ (easylist.txt: 31634) -.alatest.co.uk/banner/ -# ||alaska-native-news.com/files/banners/ (easylist.txt: 31633) -.alaska-native-news.com/files/banners/ -# ||alarabiya.net/dms/takeover/ (easylist.txt: 31632) -.alarabiya.net/dms/takeover/ -# ||alachuacountytoday.com/images/banners/ (easylist.txt: 31631) -.alachuacountytoday.com/images/banners/ -# ||akipress.org/bimages/ (easylist.txt: 31630) -.akipress.org/bimages/ -# ||akipress.org/ban/ (easylist.txt: 31629) -.akipress.org/ban/ -# ||akipress.com/_ban/ (easylist.txt: 31628) -.akipress.com/_ban/ -# ||akinator.com/publicite_ (easylist.txt: 31627) -.akinator.com/publicite_ -# ||akiba-online.com/forum/images/bs.gif (easylist.txt: 31625) -.akiba-online.com/forum/images/bs\.gif -# ||akamaihd.net/zbar/takeovers/ (easylist.txt: 31623) -.akamaihd.net/zbar/takeovers/ -# ||akamai.net/*/Prerolls/Campaigns/ (easylist.txt: 31622) -.akamai.net/.*/Prerolls/Campaigns/ -# ||ajnad.aljazeera.net^ (easylist.txt: 31621) -.ajnad.aljazeera.net -# ||ahk-usa.com/uploads/tx_bannermanagement/ (easylist.txt: 31620) -.ahk-usa.com/uploads/tx_bannermanagement/ -# ||ahashare.com/cpxt_ (easylist.txt: 31619) -.ahashare.com/cpxt_ -# ||agriculturalreviewonline.com/images/banners/ (easylist.txt: 31618) -.agriculturalreviewonline.com/images/banners/ -# ||afternoondc.in/banners/ (easylist.txt: 31617) -.afternoondc.in/banners/ -# ||africaonline.com.na^*/banners/ (easylist.txt: 31616) -.africaonline.com.na/.*/banners/ -# ||africanbusinessmagazine.com/images/banners/ (easylist.txt: 31615) -.africanbusinessmagazine.com/images/banners/ -# ||afmradio.co.za/images/slider/ (easylist.txt: 31614) -.afmradio.co.za/images/slider/ -# ||afloat.ie^*/banners/ (easylist.txt: 31613) -.afloat.ie/.*/banners/ -# ||affiliatesynergy.com^*/banner_ (easylist.txt: 31612) -.affiliatesynergy.com/.*/banner_ -# ||aff.lmgtfy.com^ (easylist.txt: 31611) -.aff.lmgtfy.com -# ||aetv.com/includes/dart/ (easylist.txt: 31610) -.aetv.com/includes/dart/ -# ||adz.lk^*_ad. (easylist.txt: 31609) -.adz.lk/.*_ad\. -# ||adx.kat.ph^ (easylist.txt: 31608) -.adx.kat.ph -# ||advpc.net/site_img/banner/ (easylist.txt: 31607) -.advpc.net/site_img/banner/ -# ||advice-ads-cdn.vice.com^ (easylist.txt: 31606) -.advice-ads-cdn.vice.com -# ||advfn.com/tf_ (easylist.txt: 31605) -.advfn.com/tf_ -# ||adverts.itv.com^$image (easylist.txt: 31604) -.adverts.itv.com -# ||advertise.twitpic.com^ (easylist.txt: 31603) -.advertise.twitpic.com -# ||advanced-television.com^*/banners/ (easylist.txt: 31602) -.advanced-television.com/.*/banners/ -# ||adv.li/ads/ (easylist.txt: 31601) -.adv.li/ads/ -# ||adtest.theonion.com^ (easylist.txt: 31600) -.adtest.theonion.com -# ||adswikia.com^*display300x250 (easylist.txt: 31599) -.adswikia.com/.*display300x250 -# ||adswikia.com^*banner (easylist.txt: 31598) -.adswikia.com/.*banner -# ||adstil.indiatimes.com^ (easylist.txt: 31597) -.adstil.indiatimes.com -# ||adss.yahoo.com^ (easylist.txt: 31596) -.adss.yahoo.com -# ||adsor.openrunner.com^ (easylist.txt: 31595) -.adsor.openrunner.com -# ||adsl2exchanges.com.au/images/spintel (easylist.txt: 31594) -.adsl2exchanges.com.au/images/spintel -# ||adshare.freedocast.com^ (easylist.txt: 31593) -.adshare.freedocast.com -# ||adsatt.espn.starwave.com^ (easylist.txt: 31592) -.adsatt.espn.starwave.com -# ||adsatt.abcnews.starwave.com^ (easylist.txt: 31591) -.adsatt.abcnews.starwave.com -# ||ads.zynga.com^ (easylist.txt: 31590) -.ads.zynga.com -# ||ads.yahoo.com^ (easylist.txt: 31589) -.ads.yahoo.com -# ||ads.pof.com^ (easylist.txt: 31588) -.ads.pof.com -# ||ads-rolandgarros.com^ (easylist.txt: 31587) -.ads-rolandgarros.com -# ||ads-*.hulu.com^ (easylist.txt: 31586) -.ads-*./.*\.hulu\.com[^\w%.-] -.ads-*.hulu.com -# ||adpost.com^*.g.html (easylist.txt: 31585) -.adpost.com/.*\.g\.html -# ||adpost.com/skyserver.g. (easylist.txt: 31584) -.adpost.com/skyserver\.g\. -# ||adpost.com/rectserver.g. (easylist.txt: 31583) -.adpost.com/rectserver\.g\. -# ||adpost.com/bannerserver.g. (easylist.txt: 31582) -.adpost.com/bannerserver\.g\. -# ||adpaths.com/_aspx/cpcinclude.aspx? (easylist.txt: 31581) -.adpaths.com/_aspx/cpcinclude\.aspx\? -# ||admeta.vo.llnwd.net^ (easylist.txt: 31580) -.admeta.vo.llnwd.net -# ||adlink.shopsafe.co.nz^ (easylist.txt: 31579) -.adlink.shopsafe.co.nz -# ||adirondackmtnclub.com/images/banner/ (easylist.txt: 31578) -.adirondackmtnclub.com/images/banner/ -# ||adifferentleague.co.uk^*/mcad.png (easylist.txt: 31577) -.adifferentleague.co.uk/.*/mcad\.png -# ||adf.ly/networks/ (easylist.txt: 31576) -.adf.ly/networks/ -# ||adf.ly/external/*/int.php (easylist.txt: 31575) -.adf.ly/external/.*/int\.php -# ||adelaidecityfc.com.au/oak.swf (easylist.txt: 31574) -.adelaidecityfc.com.au/oak\.swf -# ||adds.weatherology.com^ (easylist.txt: 31573) -.adds.weatherology.com -# ||addirector.vindicosuite.com^ (easylist.txt: 31572) -.addirector.vindicosuite.com -# ||adcitrus.com^ (easylist.txt: 31571) -.adcitrus.com -# ||adamvstheman.com/wp-content/uploads/*/AVTM_banner.jpg (easylist.txt: 31570) -.adamvstheman.com/wp-content/uploads/.*/AVTM_banner\.jpg -# ||ad.services.distractify.com^ (easylist.txt: 31569) -.ad.services.distractify.com -# ||ad.search.ch^ (easylist.txt: 31568) -.ad.search.ch -# ||ad.reachlocal.com^ (easylist.txt: 31567) -.ad.reachlocal.com -# ||ad.pandora.tv^ (easylist.txt: 31566) -.ad.pandora.tv -# ||ad.newegg.com^ (easylist.txt: 31565) -.ad.newegg.com -# ||ad.mangareader.net^ (easylist.txt: 31564) -.ad.mangareader.net -# ||ad.lyricswire.com^ (easylist.txt: 31563) -.ad.lyricswire.com -# ||ad.jamster.com^ (easylist.txt: 31562) -.ad.jamster.com -# ||ad.fnnews.com^ (easylist.txt: 31561) -.ad.fnnews.com -# ||ad.evozi.com^ (easylist.txt: 31560) -.ad.evozi.com -# ||ad.download.cnet.com^ (easylist.txt: 31559) -.ad.download.cnet.com -# ||ad.directmirror.com^ (easylist.txt: 31558) -.ad.directmirror.com -# ||ad.digitimes.com.tw^ (easylist.txt: 31557) -.ad.digitimes.com.tw -# ||ad.cooks.com^ (easylist.txt: 31556) -.ad.cooks.com -# ||actressarchives.com/takeover/ (easylist.txt: 31555) -.actressarchives.com/takeover/ -# ||activewin.com^*/blaze_static2.gif (easylist.txt: 31554) -.activewin.com/.*/blaze_static2\.gif -# ||activewin.com/images/*_ad.gif (easylist.txt: 31553) -.activewin.com/images/.*_ad\.gif -# ||acs86.com/a.htm? (easylist.txt: 31552) -.acs86.com/a\.htm\? -# ||acidcow.com/banners.php? (easylist.txt: 31551) -.acidcow.com/banners\.php\? -# ||accesshollywood.com/aife?$subdocument (easylist.txt: 31550) -.accesshollywood.com/aife\? -# ||access.njherald.com^ (easylist.txt: 31549) -.access.njherald.com -# ||ac2.msn.com^ (easylist.txt: 31548) -.ac2.msn.com -# ||absolutewrite.com^*_ad.jpg (easylist.txt: 31547) -.absolutewrite.com/.*_ad\.jpg -# ||absolutewrite.com^*_468x60banner. (easylist.txt: 31546) -.absolutewrite.com/.*_468x60banner\. -# ||absolutewrite.com^*/Scrivener-11-thumbnail-cover_160x136.gif (easylist.txt: 31545) -.absolutewrite.com/.*/Scrivener-11-thumbnail-cover_160x136\.gif -# ||absolutewrite.com^*/doyle_editorial.jpg (easylist.txt: 31544) -.absolutewrite.com/.*/doyle_editorial\.jpg -# ||absolutewrite.com^*/48HrBooks4.jpg (easylist.txt: 31543) -.absolutewrite.com/.*/48HrBooks4\.jpg -# ||absolutcheats.com/images/changemy*.gif (easylist.txt: 31542) -.absolutcheats.com/images/changemy.*\.gif -# ||abovetopsecret.com/images/plexidigest-300x300.jpg (easylist.txt: 31541) -.abovetopsecret.com/images/plexidigest-300x300\.jpg -# ||abovetopsecret.com/728_ (easylist.txt: 31540) -.abovetopsecret.com/728_ -# ||abovetopsecret.com/300_ (easylist.txt: 31539) -.abovetopsecret.com/300_ -# ||abovetopsecret.com/160_ (easylist.txt: 31538) -.abovetopsecret.com/160_ -# ||aboutmyip.com/images/SynaManBanner.gif (easylist.txt: 31537) -.aboutmyip.com/images/SynaManBanner\.gif -# ||aboutmyip.com/images/Ad0 (easylist.txt: 31536) -.aboutmyip.com/images/Ad0 -# ||aboutmyarea.co.uk/images/imgstore/ (easylist.txt: 31535) -.aboutmyarea.co.uk/images/imgstore/ -# ||about.com/0g/$subdocument (easylist.txt: 31534) -.about.com/0g/ -# ||abook.ws/th_mydl.gif (easylist.txt: 31533) -.abook.ws/th_mydl\.gif -# ||abook.ws/pyload.png (easylist.txt: 31532) -.abook.ws/pyload\.png -# ||abook.ws/banner6.png (easylist.txt: 31531) -.abook.ws/banner6\.png -# ||abduzeedo.com^*/mt-banner.jpg (easylist.txt: 31530) -.abduzeedo.com/.*/mt-banner\.jpg -# ||aaugh.com/images/dreamhostad.gif (easylist.txt: 31528) -.aaugh.com/images/dreamhostad\.gif -# ||a7.org/info/ (easylist.txt: 31527) -.a7.org/info/ -# ||a.lolwot.com^ (easylist.txt: 31526) -.a.lolwot.com -# ||a.kickass.to^ (easylist.txt: 31525) -.a.kickass.to -# ||a.kat.cr^ (easylist.txt: 31524) -.a.kat.cr -# ||a.i-sgcm.com^ (easylist.txt: 31523) -.a.i-sgcm.com -# ||a.giantrealm.com^ (easylist.txt: 31522) -.a.giantrealm.com -# ||a.clipconverter.cc^ (easylist.txt: 31521) -.a.clipconverter.cc -# ||a.cdngeek.net^ (easylist.txt: 31520) -.a.cdngeek.net -# ||9news.com/promo/ (easylist.txt: 31519) -.9news.com/promo/ -# ||980wcap.com/sponsorlogos/ (easylist.txt: 31518) -.980wcap.com/sponsorlogos/ -# ||977rocks.com/images/300- (easylist.txt: 31517) -.977rocks.com/images/300- -# ||977music.com/index.php?p=get_loading_banner (easylist.txt: 31516) -.977music.com/index\.php\?p=get_loading_banner -# ||947fm.bb/images/banners/ (easylist.txt: 31515) -.947fm.bb/images/banners/ -# ||947.co.za^*-branding. (easylist.txt: 31514) -.947.co.za/.*-branding\. -# ||911tabs.com^*/ringtones_overlay.js (easylist.txt: 31513) -.911tabs.com/.*/ringtones_overlay\.js -# ||911tabs.com/img/takeover_app_ (easylist.txt: 31512) -.911tabs.com/img/takeover_app_ -# ||911tabs.com/img/bgd_911tabs_ (easylist.txt: 31511) -.911tabs.com/img/bgd_911tabs_ -# ||8ch.net/proxy.php? (easylist.txt: 31510) -.8ch.net/proxy\.php\? -# ||8a.nu/sponsors/ (easylist.txt: 31509) -.8a.nu/sponsors/ -# ||8a.nu/site2/sponsors/ (easylist.txt: 31508) -.8a.nu/site2/sponsors/ -# ||88.80.16.183/streams/counters/ (easylist.txt: 31507) -.88.80.16.183/streams/counters/ -# ||810varsity.com^*/background- (easylist.txt: 31504) -.810varsity.com/.*/background- -# ||6waves.com/aff.php? (easylist.txt: 31502) -.6waves.com/aff\.php\? -# ||64.245.1.134/search/v2/jsp/pcwframe.jsp?provider= (easylist.txt: 31501) -.64.245.1.134/search/v2/jsp/pcwframe\.jsp\?provider= -# ||610kvnu.com*^/sponsors/ (easylist.txt: 31500) -.610kvnu.com*./(.*[^\w%.-])?/sponsors/ -# ||5star-shareware.com/scripts/5starads.js (easylist.txt: 31499) -.5star-shareware.com/scripts/5starads\.js -# ||5min.com^*/banners/ (easylist.txt: 31498) -.5min.com/.*/banners/ -# ||560theanswer.com/upload/sponsor- (easylist.txt: 31497) -.560theanswer.com/upload/sponsor- -# ||50statesclassifieds.com/image.php?size_id=$subdocument (easylist.txt: 31496) -.50statesclassifieds.com/image\.php\?size_id= -# ||4sysops.com^*.php?unit=main$xmlhttprequest (easylist.txt: 31494) -.4sysops.com/.*\.php\?unit=main -# ||4sharedtrend.com/ifx/ifx.php? (easylist.txt: 31493) -.4sharedtrend.com/ifx/ifx\.php\? -# ||4shared.com/images/label1.gif (easylist.txt: 31492) -.4shared.com/images/label1\.gif -# ||4fuckr.com/static/*-banner. (easylist.txt: 31491) -.4fuckr.com/static/.*-banner\. -# ||4fuckr.com/g/$image (easylist.txt: 31490) -.4fuckr.com/g/ -# ||4fastfile.com/afiliat.png (easylist.txt: 31489) -.4fastfile.com/afiliat\.png -# ||4downfiles.com/open1.js (easylist.txt: 31488) -.4downfiles.com/open1\.js -# ||4chan.org/support/ (easylist.txt: 31487) -.4chan.org/support/ -# ||3pmpickup.com.au/images/kmart_v2.jpg (easylist.txt: 31486) -.3pmpickup.com.au/images/kmart_v2\.jpg -# ||3g.co.uk/fad/ (easylist.txt: 31485) -.3g.co.uk/fad/ -# ||3dwallpaperstudio.com/hd_wallpapers.png (easylist.txt: 31484) -.3dwallpaperstudio.com/hd_wallpapers\.png -# ||3dsemulator.org/img/download.png (easylist.txt: 31483) -.3dsemulator.org/img/download\.png -# ||360haven.com/forums/*.advertising.com/ (easylist.txt: 31482) -.360haven.com/forums/.*\.advertising\.com/ -# ||2pass.co.uk/img/avanquest2013.gif (easylist.txt: 31481) -.2pass.co.uk/img/avanquest2013\.gif -# ||2oceansvibe.com/?custom=takeover (easylist.txt: 31480) -.2oceansvibe.com/\?custom=takeover -# ||2mfm.org/images/banners/ (easylist.txt: 31479) -.2mfm.org/images/banners/ -# ||2merkato.com/images/banners/ (easylist.txt: 31478) -.2merkato.com/images/banners/ -# ||2gb.com^*/backgrounds/ (easylist.txt: 31477) -.2gb.com/.*/backgrounds/ -# ||2flashgames.com/img/nfs.gif (easylist.txt: 31476) -.2flashgames.com/img/nfs\.gif -# ||24hourwristbands.com/*.googleadservices.com/ (easylist.txt: 31475) -.24hourwristbands.com/.*\.googleadservices\.com/ -# ||22lottery.com/images/lm468 (easylist.txt: 31474) -.22lottery.com/images/lm468 -# ||1up.com^*/promos/ (easylist.txt: 31469) -.1up.com/.*/promos/ -# ||1up.com/vip/vip_games.html (easylist.txt: 31468) -.1up.com/vip/vip_games\.html -# ||1up.com/scripts/takeover.js (easylist.txt: 31467) -.1up.com/scripts/takeover\.js -# ||180upload.com/pir/729.js (easylist.txt: 31464) -.180upload.com/pir/729\.js -# ||180upload.com/p1.js (easylist.txt: 31463) -.180upload.com/p1\.js -# ||1776coalition.com/wp-content/plugins/sam-images/ (easylist.txt: 31461) -.1776coalition.com/wp-content/plugins/sam-images/ -# ||1590wcgo.com/images/banners/ (easylist.txt: 31459) -.1590wcgo.com/images/banners/ -# ||1430wnav.com/images/468- (easylist.txt: 31458) -.1430wnav.com/images/468- -# ||1430wnav.com/images/300- (easylist.txt: 31457) -.1430wnav.com/images/300- -# ||1340wcmi.com/images/banners/ (easylist.txt: 31456) -.1340wcmi.com/images/banners/ -# ||1320wils.com/assets/images/promo%20banner/ (easylist.txt: 31455) -.1320wils.com/assets/images/promo%20banner/ -# ||11points.com/images/slack100.jpg (easylist.txt: 31454) -.11points.com/images/slack100\.jpg -# ||1077thebone.com^*/banners/ (easylist.txt: 31452) -.1077thebone.com/.*/banners/ -# ||1071thepeak.com/right/ (easylist.txt: 31451) -.1071thepeak.com/right/ -# ||1071radio.com//wp-content/banners/ (easylist.txt: 31450) -# ||1043thefan.com^*_Sponsors/ (easylist.txt: 31449) -.1043thefan.com/.*_Sponsors/ -# ||104.239.139.5/display/ (easylist.txt: 31448) -.104.239.139.5/display/ -# ||1023xlc.com/upload/*_background_ (easylist.txt: 31447) -.1023xlc.com/upload/.*_background_ -# ||100jamz.com^*/insurance-management (easylist.txt: 31446) -.100jamz.com/.*/insurance-management -# ||100jamz.com^*-wallpaper-ad- (easylist.txt: 31445) -.100jamz.com/.*-wallpaper-ad- -# ||100best-free-web-space.com/images/ipage.gif (easylist.txt: 31444) -.100best-free-web-space.com/images/ipage\.gif -# ||10-fast-fingers.com/quotebattle-ad.png (easylist.txt: 31443) -.10-fast-fingers.com/quotebattle-ad\.png -# ||04stream.com/podddpo.js (easylist.txt: 31442) -.04stream.com/podddpo\.js -# ||04stream.com/NEWAD11.php? (easylist.txt: 31441) -.04stream.com/NEWAD11\.php\? -# ||0-60mag.com/js/takeover-2.0/ (easylist.txt: 31440) -.0-60mag.com/js/takeover-2\.0/ -# |http://p.pw^$subdocument (easylist.txt: 31438) -p.pw -# |http://j.gs/omnigy*.swf (easylist.txt: 31437) -j.gs/omnigy.*\.swf -# |http://creative.*/smart.js$script,third-party (easylist.txt: 31436) -creative.*./(.*/)?smart\.js -# /get/path/.banners.$image,third-party (easylist.txt: 31425) -/(.*/)?get/path/\.banners\. -# /af.php?$subdocument (easylist.txt: 31420) -/(.*/)?af\.php\? -# .net/director/?$subdocument,third-party (easylist.txt: 31415) -/.*\.net/director/\? -.*.net/director/\? -# .info/*.js?guid=$script,third-party (easylist.txt: 31413) -/.*\.info/.*\.js\?guid= -.*.info/.*\.js\?guid= -# .com/jquery/*.js?_t=$script,third-party (easylist.txt: 31412) -/.*\.com/jquery/.*\.js\?_t= -.*.com/jquery/.*\.js\?_t= -# ||yuvutu.com^$popup,third-party (easylist.txt: 31408) -.yuvutu.com -# ||xvideoslive.com/landing/$popup,third-party (easylist.txt: 31407) -.xvideoslive.com/landing/ -# ||xvideoslive.com/?AFNO$popup,third-party (easylist.txt: 31406) -.xvideoslive.com/\?AFNO -# ||xrounds.com/?lmid=$popup,third-party (easylist.txt: 31405) -.xrounds.com/\?lmid= -# ||xdating.com/search/$popup,third-party (easylist.txt: 31404) -.xdating.com/search/ -# ||webcams.com^$popup,third-party (easylist.txt: 31403) -.webcams.com -# ||wantlive.com/landing/$popup (easylist.txt: 31402) -.wantlive.com/landing/ -# ||vs3.com^$popup,third-party (easylist.txt: 31401) -.vs3.com -# ||visit-x.net/cams/*.html?*&s=*&ws=$popup,third-party (easylist.txt: 31400) -.visit-x.net/cams/.*\.html\?.*&s=.*&ws= -# ||videosz.com^*&tracker_id=$popup,third-party (easylist.txt: 31399) -.videosz.com/.*&tracker_id= -# ||videosz.com/search.php$popup,third-party (easylist.txt: 31398) -.videosz.com/search\.php -# ||videobox.com/tour/$popup (easylist.txt: 31397) -.videobox.com/tour/ -# ||videobox.com/?tid=$popup (easylist.txt: 31396) -.videobox.com/\?tid= -# ||upforit.com/ext.php$popup (easylist.txt: 31395) -.upforit.com/ext\.php -# ||twistys.com/track/$popup,third-party (easylist.txt: 31394) -.twistys.com/track/ -# ||tube911.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylist.txt: 31393) -.tube911.com/scj/cgi/out\.php\?scheme_id= -# ||tour.mrskin.com^$popup,third-party (easylist.txt: 31392) -.tour.mrskin.com -# ||topbucks.com/popunder/$popup (easylist.txt: 31391) -.topbucks.com/popunder/ -# ||textad.sexsearch.com^$popup (easylist.txt: 31390) -.textad.sexsearch.com -# ||teenslikeitbig.com/track/$popup,third-party (easylist.txt: 31389) -.teenslikeitbig.com/track/ -# ||streamate.com/landing/$popup (easylist.txt: 31388) -.streamate.com/landing/ -# ||socialflirt.com/go/$popup,third-party (easylist.txt: 31387) -.socialflirt.com/go/ -# ||sexsearchcom.com^$popup,third-party (easylist.txt: 31386) -.sexsearchcom.com -# ||sexier.com^*_popunder&$popup (easylist.txt: 31385) -.sexier.com/.*_popunder& -# ||sexier.com/services/adsredirect.ashx?$popup,third-party (easylist.txt: 31384) -.sexier.com/services/adsredirect\.ashx\? -# ||sex.com/popunder/$popup (easylist.txt: 31383) -.sex.com/popunder/ -# ||seeme.com^*?aid=*&art=$popup (easylist.txt: 31382) -.seeme.com/.*\?aid=.*&art= -# ||seekbang.com/cs/rotator/$popup (easylist.txt: 31381) -.seekbang.com/cs/rotator/ -# ||rudefinder.com/?$popup,third-party (easylist.txt: 31380) -.rudefinder.com/\? -# ||redtube.com/bid/$popup (easylist.txt: 31379) -.redtube.com/bid/ -# ||redlightcenter.com/?trq=$popup,third-party (easylist.txt: 31378) -.redlightcenter.com/\?trq= -# ||postselfies.com^*?nats=$popup,third-party (easylist.txt: 31377) -.postselfies.com/.*\?nats= -# ||pornslash.com/cbp.php$popup (easylist.txt: 31376) -.pornslash.com/cbp\.php -# ||pornoh.info^$popup (easylist.txt: 31375) -.pornoh.info -# ||porno-onlain.info/top.php$popup (easylist.txt: 31374) -.porno-onlain.info/top\.php -# ||pornme.com^*.php?ref=$popup,third-party (easylist.txt: 31373) -.pornme.com/.*\.php\?ref= -# ||pornhub.com^*&utm_campaign=*-pop|$popup (easylist.txt: 31372) -.pornhub.com/.*&utm_campaign=.*-pop$ -# ||pomnach.ru^$popup (easylist.txt: 31371) -.pomnach.ru -# ||online.mydirtyhobby.com^*?naff=$popup,third-party (easylist.txt: 31370) -.online.mydirtyhobby.com/.*\?naff= -# ||myfreecams.com/?co_id=$popup (easylist.txt: 31369) -.myfreecams.com/\?co_id= -# ||mydirtyhobby.com/?$popup,third-party (easylist.txt: 31368) -.mydirtyhobby.com/\? -# ||mjtlive.com/exports/golive/?lp=*&afno=$popup,third-party (easylist.txt: 31367) -.mjtlive.com/exports/golive/\?lp=.*&afno= -# ||meetlocals.com^*popunder$popup (easylist.txt: 31366) -.meetlocals.com/.*popunder -# ||media.campartner.com^*?cp=$popup,third-party (easylist.txt: 31365) -.media.campartner.com/.*\?cp= -# ||media.campartner.com/index.php?cpID=*&cpMID=$popup,third-party (easylist.txt: 31364) -.media.campartner.com/index\.php\?cpID=.*&cpMID= -# ||livejasmin.com^$popup,third-party (easylist.txt: 31363) -.livejasmin.com -# ||livecams.com^$popup (easylist.txt: 31362) -.livecams.com -# ||linkfame.com^*/go.php?$popup,third-party (easylist.txt: 31361) -.linkfame.com/.*/go\.php\? -# ||letstryanal.com/track/$popup,third-party (easylist.txt: 31360) -.letstryanal.com/track/ -# ||judgeporn.com/video_pop.php?$popup (easylist.txt: 31359) -.judgeporn.com/video_pop\.php\? -# ||join.whitegfs.com^$popup (easylist.txt: 31358) -.join.whitegfs.com -# ||join.teamskeet.com/track/$popup,third-party (easylist.txt: 31357) -.join.teamskeet.com/track/ -# ||join.filthydatez.com^$popup,third-party (easylist.txt: 31356) -.join.filthydatez.com -# ||jasmin.com^$popup,third-party (easylist.txt: 31355) -.jasmin.com -# ||ipornia.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylist.txt: 31354) -.ipornia.com/scj/cgi/out\.php\?scheme_id= -# ||imlive.com/wmaster.ashx?$popup,third-party (easylist.txt: 31353) -.imlive.com/wmaster\.ashx\? -# ||icgirls.com^$popup (easylist.txt: 31352) -.icgirls.com -# ||hqtubevideos.com/play.html$popup,third-party (easylist.txt: 31351) -.hqtubevideos.com/play\.html -# ||hazeher.com/t1/pps$popup (easylist.txt: 31350) -.hazeher.com/t1/pps -# ||get-a-fuck-tonight.com^$popup (easylist.txt: 31349) -.get-a-fuck-tonight.com -# ||fucktapes.org/fucktube.htm$popup (easylist.txt: 31348) -.fucktapes.org/fucktube\.htm -# ||fuckshow.org^*&adr=$popup (easylist.txt: 31347) -.fuckshow.org/.*&adr= -# ||fuckbooknet.net/dating/$popup,third-party (easylist.txt: 31346) -.fuckbooknet.net/dating/ -# ||fuckbookhookups.com/go/$popup (easylist.txt: 31345) -.fuckbookhookups.com/go/ -# ||flirt4free.com/_special/pops/$popup,third-party (easylist.txt: 31344) -.flirt4free.com/_special/pops/ -# ||fling.com/enter.php?$popup (easylist.txt: 31343) -.fling.com/enter\.php\? -# ||fleshlight-international.eu^*?link=$popup,third-party (easylist.txt: 31342) -.fleshlight-international.eu/.*\?link= -# ||fantasti.cc/ajax/gw.php?$popup (easylist.txt: 31341) -.fantasti.cc/ajax/gw\.php\? -# ||extremefuse.com/out.php?$popup (easylist.txt: 31340) -.extremefuse.com/out\.php\? -# ||ext.affaire.com^$popup (easylist.txt: 31339) -.ext.affaire.com -# ||exposedwebcams.com/?token=$popup,third-party (easylist.txt: 31338) -.exposedwebcams.com/\?token= -# ||epornerlive.com/index.php?*=punder$popup (easylist.txt: 31337) -.epornerlive.com/index\.php\?.*=punder -# ||devilsfilm.com/track/go.php?$popup,third-party (easylist.txt: 31336) -.devilsfilm.com/track/go\.php\? -# ||cpm.amateurcommunity.*?cp=$popup,third-party (easylist.txt: 31335) -.cpm.amateurcommunity.*./.*\?cp= -# ||chaturbate.com/sitestats/openwindow/$popup (easylist.txt: 31334) -.chaturbate.com/sitestats/openwindow/ -# ||chaturbate.com/*/?join_overlay=$popup (easylist.txt: 31333) -.chaturbate.com/.*/\?join_overlay= -# ||candidvoyeurism.com/ads/$popup (easylist.txt: 31332) -.candidvoyeurism.com/ads/ -# ||camcity.com/rtr.php?aid=$popup (easylist.txt: 31331) -.camcity.com/rtr\.php\?aid= -# ||cam4.com/?$popup (easylist.txt: 31330) -.cam4.com/\? -# ||benaughty.com/aff.php?$popup,third-party (easylist.txt: 31329) -.benaughty.com/aff\.php\? -# ||babecams.net/landing/$popup,third-party (easylist.txt: 31327) -.babecams.net/landing/ -# ||amarotic.com^*?wmid=$popup,third-party (easylist.txt: 31326) -.amarotic.com/.*\?wmid= -# ||amarotic.com/?$popup,third-party (easylist.txt: 31325) -.amarotic.com/\? -# ||adultfriendfinder.com/go/$popup,third-party (easylist.txt: 31324) -.adultfriendfinder.com/go/ -# ||adultfriendfinder.com/banners/$popup,third-party (easylist.txt: 31323) -.adultfriendfinder.com/banners/ -# ||777livecams.com/?id=$popup,third-party (easylist.txt: 31322) -.777livecams.com/\?id= -# ||21sextury.com^$popup (easylist.txt: 31321) -.21sextury.com -# ||1800freecams.com^$popup,third-party (easylist.txt: 31320) -.1800freecams.com -# ||zubehost.com/*?zoneid= (easylist.txt: 31318) -.zubehost.com/.*\?zoneid= -# ||ztod.com/iframe/third/$subdocument (easylist.txt: 31317) -.ztod.com/iframe/third/ -# ||ztod.com/flash/wall*.swf (easylist.txt: 31316) -.ztod.com/flash/wall.*\.swf -# ||yplf.com/ram/files/sponsors/ (easylist.txt: 31315) -.yplf.com/ram/files/sponsors/ -# ||youfck.com^*/adawe.swf (easylist.txt: 31314) -.youfck.com/.*/adawe\.swf -# ||xxxoh.com/number/$third-party (easylist.txt: 31313) -.xxxoh.com/number/ -# ||xxtu.be^$subdocument,third-party (easylist.txt: 31312) -.xxtu.be -# ||xtrasize.pl/banner/ (easylist.txt: 31311) -.xtrasize.pl/banner/ -# ||xnxx.com^$third-party (easylist.txt: 31310) -.xnxx.com -# ||xlgirls.com/banner/$third-party (easylist.txt: 31309) -.xlgirls.com/banner/ -# ||xcabin.net/b/$third-party (easylist.txt: 31308) -.xcabin.net/b/ -# ||winkit.info/wink2.js (easylist.txt: 31307) -.winkit.info/wink2\.js -# ||widgetssec.cam-content.com^ (easylist.txt: 31306) -.widgetssec.cam-content.com -# ||widgets.comcontent.net^ (easylist.txt: 31305) -.widgets.comcontent.net -# ||wetandpuffy.com/galleries/banners/ (easylist.txt: 31304) -.wetandpuffy.com/galleries/banners/ -# ||wendi.com/ipt/$third-party (easylist.txt: 31303) -.wendi.com/ipt/ -# ||webmaster.erotik.com^$third-party (easylist.txt: 31302) -.webmaster.erotik.com -# ||webcams.com/misc/iframes_new/ (easylist.txt: 31301) -.webcams.com/misc/iframes_new/ -# ||webcams.com/js/im_popup.php? (easylist.txt: 31300) -.webcams.com/js/im_popup\.php\? -# ||watchmygf.com/preview/$third-party (easylist.txt: 31299) -.watchmygf.com/preview/ -# ||wafflegirl.com/galleries/banner/ (easylist.txt: 31298) -.wafflegirl.com/galleries/banner/ -# ||vzzk.com/uploads/banners/$third-party (easylist.txt: 31297) -.vzzk.com/uploads/banners/ -# ||vserv.bc.cdn.bitgravity.com^$third-party (easylist.txt: 31296) -.vserv.bc.cdn.bitgravity.com -# ||vs3.com/_special/banners/ (easylist.txt: 31295) -.vs3.com/_special/banners/ -# ||vodconcepts.com^*/banners/ (easylist.txt: 31294) -.vodconcepts.com/.*/banners/ -# ||visit-x.net/promo/$third-party (easylist.txt: 31293) -.visit-x.net/promo/ -# ||virtualhottie2.com/cash/tools/banners/ (easylist.txt: 31292) -.virtualhottie2.com/cash/tools/banners/ -# ||viorotica.com^*/banners/ (easylist.txt: 31291) -.viorotica.com/.*/banners/ -# ||vigrax.pl/banner/ (easylist.txt: 31290) -.vigrax.pl/banner/ -# ||vidz.com/promo_banner/$third-party (easylist.txt: 31289) -.vidz.com/promo_banner/ -# ||vectorpastel.com^$third-party (easylist.txt: 31288) -.vectorpastel.com -# ||uramov.info/wav/wavideo.html (easylist.txt: 31286) -.uramov.info/wav/wavideo\.html -# ||upsellit.com/custom/$third-party (easylist.txt: 31285) -.upsellit.com/custom/ -# ||updatetube.com/updatetube_html/ (easylist.txt: 31284) -.updatetube.com/updatetube_html/ -# ||updatetube.com/iframes/ (easylist.txt: 31283) -.updatetube.com/iframes/ -# ||twilightsex.com^$subdocument,third-party (easylist.txt: 31282) -.twilightsex.com -# ||twiant.com/img/banners/ (easylist.txt: 31281) -.twiant.com/img/banners/ -# ||turbolovervidz.com/fling/ (easylist.txt: 31280) -.turbolovervidz.com/fling/ -# ||tubefck.com^*/adawe.swf (easylist.txt: 31278) -.tubefck.com/.*/adawe\.swf -# ||ts.videosz.com/iframes/ (easylist.txt: 31277) -.ts.videosz.com/iframes/ -# ||trader.erosdlz.com^$third-party (easylist.txt: 31276) -.trader.erosdlz.com -# ||track.xtrasize.nl^$third-party (easylist.txt: 31275) -.track.xtrasize.nl -# ||tours.imlive.com^$third-party (easylist.txt: 31274) -.tours.imlive.com -# ||tour.cum-covered-gfs.com^$third-party (easylist.txt: 31273) -.tour.cum-covered-gfs.com -# ||tools.gfcash.com^$third-party (easylist.txt: 31272) -.tools.gfcash.com -# ||tools.bongacams.com^$third-party (easylist.txt: 31271) -.tools.bongacams.com -# ||tlavideo.com/affiliates/$third-party (easylist.txt: 31270) -.tlavideo.com/affiliates/ -# ||thumbs.vstreamcdn.com^*/slider.html (easylist.txt: 31269) -.thumbs.vstreamcdn.com/.*/slider\.html -# ||thumbs.sunporno.com^$third-party (easylist.txt: 31268) -.thumbs.sunporno.com -# ||thrixxx.com/scripts/show_banner.php? (easylist.txt: 31267) -.thrixxx.com/scripts/show_banner\.php\? -# ||thrixxx.com/affiliates/$image (easylist.txt: 31266) -.thrixxx.com/affiliates/ -# ||teendaporn.com/rk.js (easylist.txt: 31265) -.teendaporn.com/rk\.js -# ||target.vivid.com^$third-party (easylist.txt: 31264) -.target.vivid.com -# ||swurve.com/affiliates/ (easylist.txt: 31263) -.swurve.com/affiliates/ -# ||sweet.game-rust.ru^ (easylist.txt: 31262) -.sweet.game-rust.ru -# ||surv.xbizmedia.com^ (easylist.txt: 31261) -.surv.xbizmedia.com -# ||streamray.com/images/cams/flash/cams_live.swf (easylist.txt: 31260) -.streamray.com/images/cams/flash/cams_live\.swf -# ||streamen.com/exports/$third-party (easylist.txt: 31259) -.streamen.com/exports/ -# ||steadybucks.com^*/banners/ (easylist.txt: 31258) -.steadybucks.com/.*/banners/ -# ||sponsor4cash.de/script/ (easylist.txt: 31257) -.sponsor4cash.de/script/ -# ||spacash.com/tools/peel/ (easylist.txt: 31256) -.spacash.com/tools/peel/ -# ||spacash.com/popup/$third-party (easylist.txt: 31255) -.spacash.com/popup/ -# ||spacash.com//v2bannerview.php? (easylist.txt: 31254) -# ||snrcash.com/profilerotator/$third-party (easylist.txt: 31253) -.snrcash.com/profilerotator/ -# ||smyw.org/smyw_anima_1.gif (easylist.txt: 31252) -.smyw.org/smyw_anima_1\.gif -# ||smartmovies.net/promo_$third-party (easylist.txt: 31251) -.smartmovies.net/promo_ -# ||slickcash.com/flash/subtitles_$third-party (easylist.txt: 31250) -.slickcash.com/flash/subtitles_ -# ||sleepgalleries.com/recips/$third-party (easylist.txt: 31249) -.sleepgalleries.com/recips/ -# ||simonscans.com/banner/ (easylist.txt: 31248) -.simonscans.com/banner/ -# ||shinypics.com/blogbanner/$third-party (easylist.txt: 31247) -.shinypics.com/blogbanner/ -# ||shemalenova.com/smn/banners/ (easylist.txt: 31246) -.shemalenova.com/smn/banners/ -# ||shemale.asia/sma/banners/ (easylist.txt: 31245) -.shemale.asia/sma/banners/ -# ||shared.juicybucks.com^$third-party (easylist.txt: 31244) -.shared.juicybucks.com -# ||share-image.com/borky/ (easylist.txt: 31243) -.share-image.com/borky/ -# ||sexycams.com/exports/$third-party (easylist.txt: 31242) -.sexycams.com/exports/ -# ||sexy.fling.com^$third-party (easylist.txt: 31241) -.sexy.fling.com -# ||sextubepromo.com/ubr/ (easylist.txt: 31240) -.sextubepromo.com/ubr/ -# ||sextronix.com/images/$third-party (easylist.txt: 31239) -.sextronix.com/images/ -# ||sextronix.com/b/$third-party (easylist.txt: 31238) -.sextronix.com/b/ -# ||sextronix.*.cdnaccess.com^ (easylist.txt: 31237) -.sextronix.*./.*\.cdnaccess\.com[^\w%.-] -.sextronix.*.cdnaccess.com -# ||sexgangsters.com/sg-banners/ (easylist.txt: 31236) -.sexgangsters.com/sg-banners/ -# ||server140.com^$third-party (easylist.txt: 31235) -.server140.com -# ||screencapturewidget.aebn.net^$third-party (easylist.txt: 31234) -.screencapturewidget.aebn.net -# ||scoreland.com/banner/ (easylist.txt: 31233) -.scoreland.com/banner/ -# ||sakuralive.com/dynamicbanner/ (easylist.txt: 31232) -.sakuralive.com/dynamicbanner/ -# ||sadtube.com/chat/$script (easylist.txt: 31231) -.sadtube.com/chat/ -# ||saboom.com.pccdn.com^*/banner/ (easylist.txt: 31230) -.saboom.com.pccdn.com/.*/banner/ -# ||sabin.free.fr^$third-party (easylist.txt: 31229) -.sabin.free.fr -# ||s1magnettvcom.maynemyltf.netdna-cdn.com^ (easylist.txt: 31228) -.s1magnettvcom.maynemyltf.netdna-cdn.com -# ||russkoexxx.com/ban/$third-party (easylist.txt: 31227) -.russkoexxx.com/ban/ -# ||ruscams.com/promo/ (easylist.txt: 31226) -.ruscams.com/promo/ -# ||ruleclaim.web.fc2.com^$third-party (easylist.txt: 31225) -.ruleclaim.web.fc2.com -# ||rss.dtiserv.com^$third-party (easylist.txt: 31224) -.rss.dtiserv.com -# ||rough-sex-in-russia.com^*/webmaster/$third-party (easylist.txt: 31223) -.rough-sex-in-russia.com/.*/webmaster/ -# ||rotci.com/images/rotcibanner.png (easylist.txt: 31222) -.rotci.com/images/rotcibanner\.png -# ||rexcams.com/misc/iframes_new/ (easylist.txt: 31221) -.rexcams.com/misc/iframes_new/ -# ||resimler.randevum.com^$third-party (easylist.txt: 31220) -.resimler.randevum.com -# ||red-tube.com/dynbanner.php? (easylist.txt: 31219) -.red-tube.com/dynbanner\.php\? -# ||realitykings.com/vbanners/ (easylist.txt: 31218) -.realitykings.com/vbanners/ -# ||rawtubelive.com/exports/$third-party (easylist.txt: 31217) -.rawtubelive.com/exports/ -# ||rabbitporno.com/iframes/$third-party (easylist.txt: 31216) -.rabbitporno.com/iframes/ -# ||rabbitporno.com/friends/ (easylist.txt: 31215) -.rabbitporno.com/friends/ -# ||putana.cz/banners/ (easylist.txt: 31214) -.putana.cz/banners/ -# ||pussycash.com/content/banners/$third-party (easylist.txt: 31213) -.pussycash.com/content/banners/ -# ||punterlink.co.uk/images/storage/siteban$third-party (easylist.txt: 31212) -.punterlink.co.uk/images/storage/siteban -# ||ptcdn.mbicash.nl^$third-party (easylist.txt: 31211) -.ptcdn.mbicash.nl -# ||propbn.com/bonga/ (easylist.txt: 31210) -.propbn.com/bonga/ -# ||promos.wealthymen.com^$third-party (easylist.txt: 31209) -.promos.wealthymen.com -# ||promos.meetlocals.com^$third-party (easylist.txt: 31208) -.promos.meetlocals.com -# ||promos.gpniches.com^$third-party (easylist.txt: 31207) -.promos.gpniches.com -# ||promo1.webcams.nl^$third-party (easylist.txt: 31206) -.promo1.webcams.nl -# ||promo.pegcweb.com^$third-party (easylist.txt: 31205) -.promo.pegcweb.com -# ||promo.cams.com^$third-party (easylist.txt: 31204) -.promo.cams.com -# ||promo.blackcrush.com^$third-party (easylist.txt: 31203) -.promo.blackcrush.com -# ||profile.bharatmatrimony.com^$third-party (easylist.txt: 31202) -.profile.bharatmatrimony.com -# ||privatehomeclips.com/privatehomeclips.php?t_sid= (easylist.txt: 31201) -.privatehomeclips.com/privatehomeclips\.php\?t_sid= -# ||private.com/banner/ (easylist.txt: 31200) -.private.com/banner/ -# ||private.camz.$third-party (easylist.txt: 31199) -.private.camz.*. -# ||privatamateure.com/promotion/ (easylist.txt: 31198) -.privatamateure.com/promotion/ -# ||prettyincash.com/premade/$third-party (easylist.txt: 31196) -.prettyincash.com/premade/ -# ||potd.onlytease.com^$third-party (easylist.txt: 31195) -.potd.onlytease.com -# ||pornturbo.com^*.php?*&cmp=$subdocument,third-party (easylist.txt: 31194) -.pornturbo.com/.*\.php\?.*&cmp= -# ||pornturbo.com/*.php?g=$subdocument,third-party (easylist.txt: 31193) -.pornturbo.com/.*\.php\?g= -# ||pornstarnetwork.com^*_660x70.jpg (easylist.txt: 31192) -.pornstarnetwork.com/.*_660x70\.jpg -# ||pornravage.com/notification/$third-party (easylist.txt: 31191) -.pornravage.com/notification/ -# ||pornoh.info^$image,third-party (easylist.txt: 31190) -.pornoh.info -# ||pornhubpremium.com/relatedpremium/$subdocument,third-party (easylist.txt: 31189) -.pornhubpremium.com/relatedpremium/ -# ||porndeals.com^$subdocument,third-party (easylist.txt: 31188) -.porndeals.com -# ||porn2blog.com/wp-content/banners/ (easylist.txt: 31187) -.porn2blog.com/wp-content/banners/ -# ||pop6.com/javascript/im_box-*.js (easylist.txt: 31186) -.pop6.com/javascript/im_box-.*\.js -# ||pop6.com/banners/$third-party (easylist.txt: 31185) -.pop6.com/banners/ -# ||pop6.adultfriendfinder.com^$third-party (easylist.txt: 31184) -.pop6.adultfriendfinder.com -# ||pod.xpress.com^$third-party (easylist.txt: 31183) -.pod.xpress.com -# ||pod.manplay.com^$third-party (easylist.txt: 31182) -.pod.manplay.com -# ||plugin-x.com/rotaban/ (easylist.txt: 31181) -.plugin-x.com/rotaban/ -# ||pinkvisualgames.com/?revid=$third-party (easylist.txt: 31180) -.pinkvisualgames.com/\?revid= -# ||pcash.globalmailer5.com^$third-party (easylist.txt: 31179) -.pcash.globalmailer5.com -# ||paydir.com/images/bnr (easylist.txt: 31178) -.paydir.com/images/bnr -# ||partners.yobt.tv^$third-party (easylist.txt: 31177) -.partners.yobt.tv -# ||partners.yobt.com^$third-party (easylist.txt: 31176) -.partners.yobt.com -# ||partners.pornerbros.com^ (easylist.txt: 31175) -.partners.pornerbros.com -# ||partners.heart2heartnetwork.$third-party (easylist.txt: 31174) -.partners.heart2heartnetwork.*. -# ||partner.loveplanet.ru^$third-party (easylist.txt: 31173) -.partner.loveplanet.ru -# ||outils.f5biz.com^$third-party (easylist.txt: 31172) -.outils.f5biz.com -# ||otcash.com/images/$third-party (easylist.txt: 31171) -.otcash.com/images/ -# ||orgasmtube.com/js/superP/ (easylist.txt: 31170) -.orgasmtube.com/js/superP/ -# ||openadultdirectory.com/banner-$third-party (easylist.txt: 31169) -.openadultdirectory.com/banner- -# ||odnidoma.com/ban/$third-party (easylist.txt: 31168) -.odnidoma.com/ban/ -# ||nuvidp.com^$third-party (easylist.txt: 31167) -.nuvidp.com -# ||nudemix.com/widget/ (easylist.txt: 31166) -.nudemix.com/widget/ -# ||nude.hu/html/$third-party (easylist.txt: 31165) -.nude.hu/html/ -# ||nubiles.net/webmasters/promo/$third-party (easylist.txt: 31164) -.nubiles.net/webmasters/promo/ -# ||netvideogirls.com/adultfyi.jpg (easylist.txt: 31163) -.netvideogirls.com/adultfyi\.jpg -# ||naughtycdn.com/public/iframes/$third-party (easylist.txt: 31162) -.naughtycdn.com/public/iframes/ -# ||natuko-miracle.com/banner/$third-party (easylist.txt: 31161) -.natuko-miracle.com/banner/ -# ||nakedshygirls.com/bannerimg/ (easylist.txt: 31160) -.nakedshygirls.com/bannerimg/ -# ||naked.com/promos/$third-party (easylist.txt: 31159) -.naked.com/promos/ -# ||mysexjourney.com/revenue/$third-party (easylist.txt: 31158) -.mysexjourney.com/revenue/ -# ||mykocam.com/js/feeds.js$third-party (easylist.txt: 31157) -.mykocam.com/js/feeds\.js -# ||myfreakygf.com/www/click/$third-party (easylist.txt: 31156) -.myfreakygf.com/www/click/ -# ||myexposedgirlfriendz.com/pop/popuprk.js (easylist.txt: 31155) -.myexposedgirlfriendz.com/pop/popuprk\.js -# ||myexposedgirlfriendz.com/pop/popuppp.js (easylist.txt: 31154) -.myexposedgirlfriendz.com/pop/popuppp\.js -# ||mycams.com/freechat.php?$third-party (easylist.txt: 31153) -.mycams.com/freechat\.php\? -# ||my-dirty-hobby.com/?sub=$third-party (easylist.txt: 31152) -.my-dirty-hobby.com/\?sub= -# ||ms.wsex.com^$third-party (easylist.txt: 31151) -.ms.wsex.com -# ||mrvids.com/network/$third-party (easylist.txt: 31150) -.mrvids.com/network/ -# ||mrskincdn.com^*/flash/aff/$third-party (easylist.txt: 31149) -.mrskincdn.com/.*/flash/aff/ -# ||mrskin.com/affiliateframe/ (easylist.txt: 31148) -.mrskin.com/affiliateframe/ -# ||movies.spacash.com^*&th=180x135$script (easylist.txt: 31147) -.movies.spacash.com/.*&th=180x135 -# ||mofomedia.nl/pop-*.js (easylist.txt: 31146) -.mofomedia.nl/pop-.*\.js -# ||metartmoney.met-art.com^$third-party (easylist.txt: 31145) -.metartmoney.met-art.com -# ||metartmoney.com^$third-party (easylist.txt: 31144) -.metartmoney.com -# ||megacash.warpnet.com.br^$third-party (easylist.txt: 31143) -.megacash.warpnet.com.br -# ||media.pussycash.com^$third-party (easylist.txt: 31142) -.media.pussycash.com -# ||media.mykodial.com^$third-party (easylist.txt: 31141) -.media.mykodial.com -# ||media.mykocam.com^$third-party (easylist.txt: 31140) -.media.mykocam.com -# ||media.match.com^$third-party (easylist.txt: 31139) -.media.match.com -# ||media.eurolive.com^$third-party (easylist.txt: 31138) -.media.eurolive.com -# ||match.com/landing/$third-party (easylist.txt: 31137) -.match.com/landing/ -# ||map.pop6.com^$third-party (easylist.txt: 31136) -.map.pop6.com -# ||manhunt.net/?dm=$third-party (easylist.txt: 31135) -.manhunt.net/\?dm= -# ||manager.koocash.fr^$third-party (easylist.txt: 31134) -.manager.koocash.fr -# ||magazine-empire.com/images/pornstarad.jpg (easylist.txt: 31133) -.magazine-empire.com/images/pornstarad\.jpg -# ||loveme.com^$third-party (easylist.txt: 31132) -.loveme.com -# ||longmint.com/lm/banners/ (easylist.txt: 31131) -.longmint.com/lm/banners/ -# ||llnwd.net^*/takeover_ (easylist.txt: 31130) -.llnwd.net/.*/takeover_ -# ||livesexasian.com^$subdocument,third-party (easylist.txt: 31129) -.livesexasian.com -# ||links.freeones.com^$third-party (easylist.txt: 31127) -.links.freeones.com -# ||lb-69.com/pics/ (easylist.txt: 31126) -.lb-69.com/pics/ -# ||layers.spacash.com^$third-party (easylist.txt: 31125) -.layers.spacash.com -# ||latinteencash.com/potd/$third-party (easylist.txt: 31124) -.latinteencash.com/potd/ -# ||ladyboygoo.com/lbg/banners/ (easylist.txt: 31123) -.ladyboygoo.com/lbg/banners/ -# ||lacyx.com/images/banners/ (easylist.txt: 31122) -.lacyx.com/images/banners/ -# ||kuntfutube.com/bgbb.gif (easylist.txt: 31121) -.kuntfutube.com/bgbb\.gif -# ||kenny-glenn.net^*/longbanner_$third-party (easylist.txt: 31120) -.kenny-glenn.net/.*/longbanner_ -# ||kau.li/yad.js (easylist.txt: 31119) -.kau.li/yad\.js -# ||justcutegirls.com/banners/$third-party (easylist.txt: 31118) -.justcutegirls.com/banners/ -# ||just-nude.com/images/ban_$third-party (easylist.txt: 31117) -.just-nude.com/images/ban_ -# ||js.picsomania.info^$third-party (easylist.txt: 31116) -.js.picsomania.info -# ||ivitrine.buscape.com^$third-party (easylist.txt: 31115) -.ivitrine.buscape.com -# ||interracialbangblog.info^*-ban.png (easylist.txt: 31114) -.interracialbangblog.info/.*-ban\.png -# ||interracialbangblog.info/banner.jpg (easylist.txt: 31113) -.interracialbangblog.info/banner\.jpg -# ||imageteam.org/upload/big/2014/06/22/53a7181b378cb.png (easylist.txt: 31112) -.imageteam.org/upload/big/2014/06/22/53a7181b378cb\.png -# ||images.elenasmodels.com/Upload/$third-party (easylist.txt: 31111) -.images.elenasmodels.com/Upload/ -# ||image.nsk-sys.com^$third-party (easylist.txt: 31110) -.image.nsk-sys.com -# ||image.cecash.com^$third-party (easylist.txt: 31109) -.image.cecash.com -# ||ihookup.com/configcreatives/ (easylist.txt: 31108) -.ihookup.com/configcreatives/ -# ||ifriends.net^$subdocument,third-party (easylist.txt: 31107) -.ifriends.net -# ||iframes.hustler.com^$third-party (easylist.txt: 31106) -.iframes.hustler.com -# ||iframe.adultfriendfinder.com^$third-party (easylist.txt: 31105) -.iframe.adultfriendfinder.com -# ||hotsocialz.com^$third-party (easylist.txt: 31104) -.hotsocialz.com -# ||hotmovies.com/custom_videos.php? (easylist.txt: 31103) -.hotmovies.com/custom_videos\.php\? -# ||hotkinkyjo.xxx/resseler/banners/ (easylist.txt: 31102) -.hotkinkyjo.xxx/resseler/banners/ -# ||hotcaracum.com/banner/ (easylist.txt: 31101) -.hotcaracum.com/banner/ -# ||hosting24.com/images/banners/$third-party (easylist.txt: 31100) -.hosting24.com/images/banners/ -# ||hosted.x-art.com/potd$third-party (easylist.txt: 31099) -.hosted.x-art.com/potd -# ||hostave3.net/hvw/banners/ (easylist.txt: 31098) -.hostave3.net/hvw/banners/ -# ||hornypharaoh.com/banner_$third-party (easylist.txt: 31097) -.hornypharaoh.com/banner_ -# ||hornybirds.com^$subdocument,third-party (easylist.txt: 31096) -.hornybirds.com -# ||homoactive.tv/banner/ (easylist.txt: 31095) -.homoactive.tv/banner/ -# ||hodun.ru/files/promo/ (easylist.txt: 31094) -.hodun.ru/files/promo/ -# ||highrollercams.com/widgets/$third-party (easylist.txt: 31093) -.highrollercams.com/widgets/ -# ||hentaikey.com/images/banners/ (easylist.txt: 31092) -.hentaikey.com/images/banners/ -# ||hentaijunkie.com^*/banners/ (easylist.txt: 31091) -.hentaijunkie.com/.*/banners/ -# ||hdpornphotos.com/images/banner_ (easylist.txt: 31090) -.hdpornphotos.com/images/banner_ -# ||hdpornphotos.com/images/728x180_ (easylist.txt: 31089) -.hdpornphotos.com/images/728x180_ -# ||hardcoresexnow.com^$subdocument,third-party (easylist.txt: 31088) -.hardcoresexnow.com -# ||hardbritlads.com/banner/ (easylist.txt: 31087) -.hardbritlads.com/banner/ -# ||graphics.streamray.com^*/cams_live.swf$third-party (easylist.txt: 31086) -.graphics.streamray.com/.*/cams_live\.swf -# ||go2cdn.org/brand/$third-party (easylist.txt: 31084) -.go2cdn.org/brand/ -# ||girls-home-alone.com/dating/ (easylist.txt: 31083) -.girls-home-alone.com/dating/ -# ||gfrevenge.com/vbanners/ (easylist.txt: 31082) -.gfrevenge.com/vbanners/ -# ||geobanner.socialflirt.com^ (easylist.txt: 31081) -.geobanner.socialflirt.com -# ||geobanner.sexfinder.com^$third-party (easylist.txt: 31080) -.geobanner.sexfinder.com -# ||geobanner.fuckbookhookups.com^$third-party (easylist.txt: 31079) -.geobanner.fuckbookhookups.com -# ||geobanner.blacksexmatch.com^$third-party (easylist.txt: 31078) -.geobanner.blacksexmatch.com -# ||geobanner.alt.com^ (easylist.txt: 31077) -.geobanner.alt.com -# ||geobanner.adultfriendfinder.com^ (easylist.txt: 31076) -.geobanner.adultfriendfinder.com -# ||geo.frtya.com^ (easylist.txt: 31075) -.geo.frtya.com -# ||geo.cliphunter.com^ (easylist.txt: 31074) -.geo.cliphunter.com -# ||geo.camazon.com^$third-party (easylist.txt: 31073) -.geo.camazon.com -# ||gateway-banner.eravage.com^$third-party (easylist.txt: 31072) -.gateway-banner.eravage.com -# ||gammasites.com/pornication/pc_browsable.php? (easylist.txt: 31071) -.gammasites.com/pornication/pc_browsable\.php\? -# ||gallery.deskbabes.com^*.php?dir=*&ids=$third-party (easylist.txt: 31070) -.gallery.deskbabes.com/.*\.php\?dir=.*&ids= -# ||galleries.videosz.com^$object,third-party (easylist.txt: 31069) -.galleries.videosz.com -# ||galeriaseroticas.xpg.com.br^$third-party (easylist.txt: 31068) -.galeriaseroticas.xpg.com.br -# ||gagthebitch.com/track/$third-party (easylist.txt: 31067) -.gagthebitch.com/track/ -# ||fuckhub.net^*?pid=$third-party (easylist.txt: 31066) -.fuckhub.net/.*\?pid= -# ||freshnews.su/get_tizers.php? (easylist.txt: 31065) -.freshnews.su/get_tizers\.php\? -# ||freexxxvideoclip.aebn.net^ (easylist.txt: 31064) -.freexxxvideoclip.aebn.net -# ||freeporn.hu/banners/ (easylist.txt: 31063) -.freeporn.hu/banners/ -# ||freeonescams.com^$subdocument,third-party (easylist.txt: 31062) -.freeonescams.com -# ||freebbw.com/webcams.html$third-party (easylist.txt: 31061) -.freebbw.com/webcams\.html -# ||fleshlight.com/images/peel/ (easylist.txt: 31060) -.fleshlight.com/images/peel/ -# ||fleshlight.com/images/banners/ (easylist.txt: 31059) -.fleshlight.com/images/banners/ -# ||firestormmedia.tv^*?affid= (easylist.txt: 31058) -.firestormmedia.tv/.*\?affid= -# ||fgn.me^*/skins/ (easylist.txt: 31057) -.fgn.me/.*/skins/ -# ||ff.nsg.org.ua^ (easylist.txt: 31056) -.ff.nsg.org.ua -# ||femjoy.com/bnrs/$third-party (easylist.txt: 31055) -.femjoy.com/bnrs/ -# ||feeds.videosz.com^ (easylist.txt: 31054) -.feeds.videosz.com -# ||fckya.com/lj.js (easylist.txt: 31053) -.fckya.com/lj\.js -# ||fbooksluts.com^$subdocument,third-party (easylist.txt: 31052) -.fbooksluts.com -# ||fastcdn.me/mlr/ (easylist.txt: 31051) -.fastcdn.me/mlr/ -# ||fastcdn.me/js/snpp/ (easylist.txt: 31050) -.fastcdn.me/js/snpp/ -# ||fansign.streamray.com^$third-party (easylist.txt: 31049) -.fansign.streamray.com -# ||f5porn.com/porn.gif (easylist.txt: 31048) -.f5porn.com/porn\.gif -# ||extremeladyboys.com/elb/banners/ (easylist.txt: 31047) -.extremeladyboys.com/elb/banners/ -# ||exposedteencelebs.com/banner/$third-party (easylist.txt: 31046) -.exposedteencelebs.com/banner/ -# ||exposedemos.com/track/$third-party (easylist.txt: 31045) -.exposedemos.com/track/ -# ||evilangel.com/static/$third-party (easylist.txt: 31044) -.evilangel.com/static/ -# ||eurolive.com/index.php?module=public_eurolive_onlinetool& (easylist.txt: 31043) -.eurolive.com/index\.php\?module=public_eurolive_onlinetool& -# ||eurolive.com/?module=public_eurolive_onlinehostess& (easylist.txt: 31042) -.eurolive.com/\?module=public_eurolive_onlinehostess& -# ||escortforum.net/images/banners/$third-party (easylist.txt: 31041) -.escortforum.net/images/banners/ -# ||escortbook.com/banner_ (easylist.txt: 31040) -.escortbook.com/banner_ -# ||erotikdeal.com/?ref=$third-party (easylist.txt: 31039) -.erotikdeal.com/\?ref= -# ||eliterotica.com/images/banners/ (easylist.txt: 31038) -.eliterotica.com/images/banners/ -# ||dvdbox.com/promo/$third-party (easylist.txt: 31037) -.dvdbox.com/promo/ -# ||dump1.no-ip.biz^$third-party (easylist.txt: 31036) -.dump1.no-ip.biz -# ||downloadsmais.com/imagens/download-direto.gif (easylist.txt: 31035) -.downloadsmais.com/imagens/download-direto\.gif -# ||dom2xxx.com/ban/$third-party (easylist.txt: 31034) -.dom2xxx.com/ban/ -# ||devilgirls.co/pop.js (easylist.txt: 31033) -.devilgirls.co/pop\.js -# ||devilgirls.co/images/devil.gif (easylist.txt: 31032) -.devilgirls.co/images/devil\.gif -# ||desk.cmix.org^ (easylist.txt: 31031) -.desk.cmix.org -# ||ddstatic.com^*/banners/ (easylist.txt: 31030) -.ddstatic.com/.*/banners/ -# ||ddfcash.com/promo/banners/ (easylist.txt: 31029) -.ddfcash.com/promo/banners/ -# ||ddfcash.com/iframes/$third-party (easylist.txt: 31028) -.ddfcash.com/iframes/ -# ||datefree.com^$third-party (easylist.txt: 31027) -.datefree.com -# ||daredorm.com^$subdocument,third-party (easylist.txt: 31026) -.daredorm.com -# ||dailyvideo.securejoin.com^ (easylist.txt: 31025) -.dailyvideo.securejoin.com -# ||cs.exposedontape.com^$third-party (easylist.txt: 31024) -.cs.exposedontape.com -# ||cs.celebbusters.com^$third-party (easylist.txt: 31023) -.cs.celebbusters.com -# ||crocogirls.com/croco-new.js (easylist.txt: 31022) -.crocogirls.com/croco-new\.js -# ||creamgoodies.com/potd/ (easylist.txt: 31021) -.creamgoodies.com/potd/ -# ||cpm.amateurcommunity.com^ (easylist.txt: 31020) -.cpm.amateurcommunity.com -# ||cp.intl.match.com^$third-party (easylist.txt: 31019) -.cp.intl.match.com -# ||core.queerclick.com^$third-party (easylist.txt: 31018) -.core.queerclick.com -# ||contentcache-a.akamaihd.net^$third-party (easylist.txt: 31017) -.contentcache-a.akamaihd.net -# ||content.liveuniverse.com^$third-party (easylist.txt: 31016) -.content.liveuniverse.com -# ||cockfortwo.com/track/$third-party (easylist.txt: 31015) -.cockfortwo.com/track/ -# ||cmix.org/teasers/? (easylist.txt: 31014) -.cmix.org/teasers/\? -# ||closepics.com/media/banners/ (easylist.txt: 31013) -.closepics.com/media/banners/ -# ||clipjunkie.com/sftopbanner$third-party (easylist.txt: 31012) -.clipjunkie.com/sftopbanner -# ||clickz.lonelycheatingwives.com^$third-party (easylist.txt: 31011) -.clickz.lonelycheatingwives.com -# ||click.kink.com^$third-party (easylist.txt: 31010) -.click.kink.com -# ||click.absoluteagency.com^$third-party (easylist.txt: 31009) -.click.absoluteagency.com -# ||chaturbate.com/creative/ (easylist.txt: 31008) -.chaturbate.com/creative/ -# ||chaturbate.com/affiliates/ (easylist.txt: 31007) -.chaturbate.com/affiliates/ -# ||cdnjke.com^$third-party (easylist.txt: 31006) -.cdnjke.com -# ||cdncache2-a.akamaihd.net^$third-party (easylist.txt: 31005) -.cdncache2-a.akamaihd.net -# ||cdn.epom.com^*/940_250.gif (easylist.txt: 31004) -.cdn.epom.com/.*/940_250\.gif -# ||cash.femjoy.com^$third-party (easylist.txt: 31003) -.cash.femjoy.com -# ||cartoontube.com^$subdocument,third-party (easylist.txt: 31002) -.cartoontube.com -# ||camsrule.com/exports/$third-party (easylist.txt: 31001) -.camsrule.com/exports/ -# ||cams.spacash.com^$third-party (easylist.txt: 31000) -.cams.spacash.com -# ||cams.enjoy.be^$third-party (easylist.txt: 30999) -.cams.enjoy.be -# ||cams.com/p/cams/cpcs/streaminfo.cgi?$third-party (easylist.txt: 30998) -.cams.com/p/cams/cpcs/streaminfo\.cgi\? -# ||cams.com/go/$third-party (easylist.txt: 30997) -.cams.com/go/ -# ||camelmedia.net/thumbs/$third-party (easylist.txt: 30996) -.camelmedia.net/thumbs/ -# ||cache.worldfriends.tv^$third-party (easylist.txt: 30995) -.cache.worldfriends.tv -# ||bullz-eye.com/pictureofday/$third-party (easylist.txt: 30994) -.bullz-eye.com/pictureofday/ -# ||brazzers.com/ads/ (easylist.txt: 30993) -.brazzers.com/ads/ -# ||brasileirinhas.com.br/banners/ (easylist.txt: 30992) -.brasileirinhas.com.br/banners/ -# ||br.realitykings.com^ (easylist.txt: 30991) -.br.realitykings.com -# ||br.fling.com^ (easylist.txt: 30990) -.br.fling.com -# ||br.blackfling.com^ (easylist.txt: 30989) -.br.blackfling.com -# ||bongacash.com/tools/promo.php$third-party (easylist.txt: 30988) -.bongacash.com/tools/promo\.php -# ||bongacash.com/promo.php (easylist.txt: 30987) -.bongacash.com/promo\.php -# ||bongacash.com/dynamic_banner/ (easylist.txt: 30986) -.bongacash.com/dynamic_banner/ -# ||blogspot.com^*/ad.jpg (easylist.txt: 30985) -.blogspot.com/.*/ad\.jpg -# ||blackbrazilianshemales.com/bbs/banners/ (easylist.txt: 30984) -.blackbrazilianshemales.com/bbs/banners/ -# ||blaaaa12.googlecode.com^ (easylist.txt: 30983) -.blaaaa12.googlecode.com -# ||bigmovies.com/images/banners/ (easylist.txt: 30982) -.bigmovies.com/images/banners/ -# ||bbp.brazzers.com^$third-party (easylist.txt: 30981) -.bbp.brazzers.com -# ||bans.bride.ru^$third-party (easylist.txt: 30980) -.bans.bride.ru -# ||bannershotlink.perfectgonzo.com^ (easylist.txt: 30979) -.bannershotlink.perfectgonzo.com -# ||banners.webcams.com^$third-party (easylist.txt: 30978) -.banners.webcams.com -# ||banners.videosecrets.com^$third-party (easylist.txt: 30977) -.banners.videosecrets.com -# ||banners.rushcommerce.com^$third-party (easylist.txt: 30976) -.banners.rushcommerce.com -# ||banners.rude.com^$third-party (easylist.txt: 30975) -.banners.rude.com -# ||banners.penthouse.com^$third-party (easylist.txt: 30974) -.banners.penthouse.com -# ||banners.payserve.com^$third-party (easylist.txt: 30973) -.banners.payserve.com -# ||banners.passiondollars.com^$third-party (easylist.txt: 30972) -.banners.passiondollars.com -# ||banners.passion.com^$third-party (easylist.txt: 30971) -.banners.passion.com -# ||banners.outpersonals.com^$third-party (easylist.txt: 30970) -.banners.outpersonals.com -# ||banners.nostringsattached.com^$third-party (easylist.txt: 30969) -.banners.nostringsattached.com -# ||banners.fuckbookhookups.com^$third-party (easylist.txt: 30968) -.banners.fuckbookhookups.com -# ||banners.fastcupid.com^$third-party (easylist.txt: 30967) -.banners.fastcupid.com -# ||banners.blacksexmatch.com^$third-party (easylist.txt: 30966) -.banners.blacksexmatch.com -# ||banners.amigos.com^$third-party (easylist.txt: 30965) -.banners.amigos.com -# ||banners.alt.com^$third-party (easylist.txt: 30964) -.banners.alt.com -# ||banners.adultfriendfinder.com^$third-party (easylist.txt: 30963) -.banners.adultfriendfinder.com -# ||banners*.spacash.com^$third-party (easylist.txt: 30962) -.banners*./.*\.spacash\.com[^\w%.-] -.banners*.spacash.com -# ||banner.themediaplanets.com^$third-party (easylist.txt: 30961) -.banner.themediaplanets.com -# ||banner.resulthost.org^$third-party (easylist.txt: 30960) -.banner.resulthost.org -# ||banner.gasuki.com^$third-party (easylist.txt: 30959) -.banner.gasuki.com -# ||banner.69stream.com^$third-party (easylist.txt: 30958) -.banner.69stream.com -# ||babes.picrush.com^$third-party (easylist.txt: 30957) -.babes.picrush.com -# ||b.turbo.az^$third-party (easylist.txt: 30956) -.b.turbo.az -# ||avatraffic.com/b/ (easylist.txt: 30955) -.avatraffic.com/b/ -# ||atlasfiles.com^*/sp3_ep.js$third-party (easylist.txt: 30954) -.atlasfiles.com/.*/sp3_ep\.js -# ||assinclusive.com/linkstxt2.html (easylist.txt: 30953) -.assinclusive.com/linkstxt2\.html -# ||assinclusive.com/cyonix.html (easylist.txt: 30952) -.assinclusive.com/cyonix\.html -# ||asktiava.com/promotion/ (easylist.txt: 30951) -.asktiava.com/promotion/ -# ||asianbutterflies.com/potd/ (easylist.txt: 30950) -.asianbutterflies.com/potd/ -# ||ard.sweetdiscreet.com^ (easylist.txt: 30949) -.ard.sweetdiscreet.com -# ||animalsexfun.com/baner/ (easylist.txt: 30948) -.animalsexfun.com/baner/ -# ||ambya.com/potdc/ (easylist.txt: 30947) -.ambya.com/potdc/ -# ||amateurseite.com/banner/$third-party (easylist.txt: 30946) -.amateurseite.com/banner/ -# ||amateur.amarotic.com^$third-party (easylist.txt: 30945) -.amateur.amarotic.com -# ||amarotic.com^*?wmid=*&kamid=*&wsid=$third-party (easylist.txt: 30944) -.amarotic.com/.*\?wmid=.*&kamid=.*&wsid= -# ||amarotic.com/rotation/layer/chatpage/$third-party (easylist.txt: 30943) -.amarotic.com/rotation/layer/chatpage/ -# ||amarotic.com/Banner/$third-party (easylist.txt: 30942) -.amarotic.com/Banner/ -# ||alt.com/go/$third-party (easylist.txt: 30941) -.alt.com/go/ -# ||allanalpass.com/visitScript/ (easylist.txt: 30940) -.allanalpass.com/visitScript/ -# ||affiliates.thrixxx.com^ (easylist.txt: 30939) -.affiliates.thrixxx.com -# ||affiliates.franchisegator.com^$third-party (easylist.txt: 30938) -.affiliates.franchisegator.com -# ||affiliates.easydate.biz^$third-party (easylist.txt: 30937) -.affiliates.easydate.biz -# ||affiliates.cupidplc.com^$third-party (easylist.txt: 30936) -.affiliates.cupidplc.com -# ||affiliate.godaddy.com^$third-party (easylist.txt: 30935) -.affiliate.godaddy.com -# ||affiliate.dtiserv.com^$third-party (easylist.txt: 30934) -.affiliate.dtiserv.com -# ||affiliate.burn-out.tv^$third-party (easylist.txt: 30933) -.affiliate.burn-out.tv -# ||aff-jp.exshot.com^$third-party (easylist.txt: 30932) -.aff-jp.exshot.com -# ||aff-jp.dxlive.com^$third-party (easylist.txt: 30931) -.aff-jp.dxlive.com -# ||aebn.net/feed/$third-party (easylist.txt: 30930) -.aebn.net/feed/ -# ||aebn.net/banners/ (easylist.txt: 30929) -.aebn.net/banners/ -# ||adultporntubemovies.com/images/banners/ (easylist.txt: 30928) -.adultporntubemovies.com/images/banners/ -# ||adultfriendfinder.com/piclist?$third-party (easylist.txt: 30927) -.adultfriendfinder.com/piclist\? -# ||adultfriendfinder.com/javascript/$third-party (easylist.txt: 30926) -.adultfriendfinder.com/javascript/ -# ||adultfriendfinder.com/images/banners/$third-party (easylist.txt: 30925) -.adultfriendfinder.com/images/banners/ -# ||adultfriendfinder.com/go/$third-party (easylist.txt: 30924) -.adultfriendfinder.com/go/ -# ||adultfax.com/service/vsab.php? (easylist.txt: 30923) -.adultfax.com/service/vsab\.php\? -# ||adultdvd.com/plugins/*/store.html$third-party (easylist.txt: 30922) -.adultdvd.com/plugins/.*/store\.html -# ||adtools2.amakings.com^$third-party (easylist.txt: 30921) -.adtools2.amakings.com -# ||adtools.gossipkings.com^$third-party (easylist.txt: 30920) -.adtools.gossipkings.com -# ||adsrv.bangbros.com^$third-party (easylist.txt: 30919) -.adsrv.bangbros.com -# ||ads.videosz.com^ (easylist.txt: 30918) -.ads.videosz.com -# ||ads.contentabc.com^$third-party (easylist.txt: 30917) -.ads.contentabc.com -# ||adb.fling.com^$third-party (easylist.txt: 30916) -.adb.fling.com -# ||ad.traffmonster.info^$third-party (easylist.txt: 30915) -.ad.traffmonster.info -# ||ad.iloveinterracial.com^ (easylist.txt: 30914) -.ad.iloveinterracial.com -# ||ad.favod.net^$third-party (easylist.txt: 30913) -.ad.favod.net -# ||ad.duga.jp^ (easylist.txt: 30912) -.ad.duga.jp -# ||a.sucksex.com^$third-party (easylist.txt: 30911) -.a.sucksex.com -# ||91.83.237.41^*/banners/ (easylist.txt: 30910) -.91.83.237.41/.*/banners/ -# ||88.85.77.94/rotation/$third-party (easylist.txt: 30909) -.88.85.77.94/rotation/ -# ||79.120.183.166^*/banners/ (easylist.txt: 30907) -.79.120.183.166/.*/banners/ -# ||4tube.com/iframe/$third-party (easylist.txt: 30906) -.4tube.com/iframe/ -# ||213.174.140.76^*/js/msn.js (easylist.txt: 30905) -.213.174.140.76/.*/js/msn\.js -# ||213.174.140.76^*/js/msn-$script (easylist.txt: 30904) -.213.174.140.76/.*/js/msn- -# ||213.174.140.76^*/ads/ (easylist.txt: 30903) -.213.174.140.76/.*/ads/ -# ||213.174.140.76/js/showbanner4.js (easylist.txt: 30902) -.213.174.140.76/js/showbanner4\.js -# ||213.174.130.9/banners/ (easylist.txt: 30901) -.213.174.130.9/banners/ -# ||213.174.130.8/banners/ (easylist.txt: 30900) -.213.174.130.8/banners/ -# ||213.174.130.10/banners/ (easylist.txt: 30899) -.213.174.130.10/banners/ -# ||204.140.25.247/ads/ (easylist.txt: 30898) -.204.140.25.247/ads/ -# ||193.34.134.74^*/banners/ (easylist.txt: 30897) -.193.34.134.74/.*/banners/ -# ||193.34.134.18^*/banners/ (easylist.txt: 30896) -.193.34.134.18/.*/banners/ -# /exports/livemodel/?$subdocument (easylist.txt: 30895) -/(.*/)?exports/livemodel/\? -# .php?pub=*&trw_adblocker=$subdocument (easylist.txt: 30894) -/.*\.php\?pub=.*&trw_adblocker= -# ||wptpoker.com^$popup (easylist.txt: 30892) -.wptpoker.com -# ||withbinaryoptions.com^$popup,third-party (easylist.txt: 30891) -.withbinaryoptions.com -# ||with-binaryoption.com^$popup,third-party (easylist.txt: 30890) -.with-binaryoption.com -# ||widget.yavli.com^$popup,third-party (easylist.txt: 30889) -.widget.yavli.com -# ||weeklyprizewinner.com-net.info^$popup (easylist.txt: 30888) -.weeklyprizewinner.com-net.info -# ||wealth-at-home-millions.com^$popup,third-party (easylist.txt: 30887) -.wealth-at-home-millions.com -# ||virtuagirl.com/landing/$popup,third-party (easylist.txt: 30886) -.virtuagirl.com/landing/ -# ||vidds.net/?s=promo$popup,third-party (easylist.txt: 30885) -.vidds.net/\?s=promo -# ||usenet.nl^$popup (easylist.txt: 30884) -.usenet.nl -# ||urmediazone.com/play?ref=$popup,third-party (easylist.txt: 30883) -.urmediazone.com/play\?ref= -# ||urlcash.net/random*.php$popup (easylist.txt: 30882) -.urlcash.net/random.*\.php -# ||uploaded.net/ref/$popup (easylist.txt: 30881) -.uploaded.net/ref/ -# ||upbcd.info/vuze/$popup (easylist.txt: 30880) -.upbcd.info/vuze/ -# ||ul.to/ref/$popup (easylist.txt: 30879) -.ul.to/ref/ -# ||tripadvisor.*/HotelLander?$popup,third-party (easylist.txt: 30877) -.tripadvisor.*./(.*/)?HotelLander\? -# ||track.xtrasize.nl^$popup,third-party (easylist.txt: 30876) -.track.xtrasize.nl -# ||track.mypcbackup.com^$popup,third-party (easylist.txt: 30875) -.track.mypcbackup.com -# ||torntv-tvv.org^$popup,third-party (easylist.txt: 30874) -.torntv-tvv.org -# ||tipico.com^*?affiliateid=$popup,third-party (easylist.txt: 30873) -.tipico.com/.*\?affiliateid= -# ||thetraderinpajamas.com^$popup,third-party (easylist.txt: 30872) -.thetraderinpajamas.com -# ||theseforums.com^*/?ref=$popup (easylist.txt: 30871) -.theseforums.com/.*/\?ref= -# ||thebestbookies.com^$popup,third-party (easylist.txt: 30870) -.thebestbookies.com -# ||sunmaker.com^*^a_aid^$popup,third-party (easylist.txt: 30869) -.sunmaker.com/.*[^\w%.-]a_aid[^\w%.-] -# ||stargames.com/web/*&cid=*&pid=$popup,third-party (easylist.txt: 30868) -.stargames.com/web/.*&cid=.*&pid= -# ||stargames.com/bridge.asp?idr=$popup (easylist.txt: 30867) -.stargames.com/bridge\.asp\?idr= -# ||stake7.com^*?a_aid=$popup,third-party (easylist.txt: 30866) -.stake7.com/.*\?a_aid= -# ||softingo.com/clp/$popup (easylist.txt: 30865) -.softingo.com/clp/ -# ||sharecash.org^$popup,third-party (easylist.txt: 30864) -.sharecash.org -# ||settlecruise.org^$popup (easylist.txt: 30863) -.settlecruise.org -# ||serve.williamhillcasino.com^$popup,third-party (easylist.txt: 30862) -.serve.williamhillcasino.com -# ||serve.prestigecasino.com^$popup,third-party (easylist.txt: 30861) -.serve.prestigecasino.com -# ||secure.komli.com^$popup,third-party (easylist.txt: 30860) -.secure.komli.com -# ||roomkey.com/referrals?$popup,third-party (easylist.txt: 30859) -.roomkey.com/referrals\? -# ||rocketgames.com^$popup,third-party (easylist.txt: 30858) -.rocketgames.com -# ||red-tube.com/popunder/$popup (easylist.txt: 30857) -.red-tube.com/popunder/ -# ||record.sportsbetaffiliates.com.au^$popup,third-party (easylist.txt: 30856) -.record.sportsbetaffiliates.com.au -# ||rackcorp.com^$popup (easylist.txt: 30855) -.rackcorp.com -# ||pub.ezanga.com/rv2.php?$popup (easylist.txt: 30854) -.pub.ezanga.com/rv2\.php\? -# ||promo.xcasino.com/?$popup,third-party (easylist.txt: 30853) -.promo.xcasino.com/\? -# ||promo.galabingo.com^$popup,third-party (easylist.txt: 30852) -.promo.galabingo.com -# ||priceinfo.comuv.com^$popup (easylist.txt: 30851) -.priceinfo.comuv.com -# ||pokerstars.eu^*/?source=$popup,third-party (easylist.txt: 30850) -.pokerstars.eu/.*/\?source= -# ||platinumdown.com^$popup (easylist.txt: 30849) -.platinumdown.com -# ||planet49.com/cgi-bin/wingame.pl?$popup (easylist.txt: 30848) -.planet49.com/cgi-bin/wingame\.pl\? -# ||pc.thevideo.me^$popup,third-party (easylist.txt: 30847) -.pc.thevideo.me -# ||paid.outbrain.com/network/redir?$popup,third-party (easylist.txt: 30846) -.paid.outbrain.com/network/redir\? -# ||otvetus.com^$popup,third-party (easylist.txt: 30845) -.otvetus.com -# ||opendownloadmanager.com^$popup,third-party (easylist.txt: 30844) -.opendownloadmanager.com -# ||noowmedia.com^$popup (easylist.txt: 30843) -.noowmedia.com -# ||mypromocenter.com^$popup (easylist.txt: 30842) -.mypromocenter.com -# ||mp3ger.com^$popup,third-party (easylist.txt: 30841) -.mp3ger.com -# ||mgid.com^$popup,third-party (easylist.txt: 30840) -.mgid.com -# ||meme.smhlmao.com^$popup,third-party (easylist.txt: 30839) -.meme.smhlmao.com -# ||megacloud.com/signup?$popup,third-party (easylist.txt: 30838) -.megacloud.com/signup\? -# ||media.mybet.com/redirect.aspx?pid=*&bid=$popup,third-party (easylist.txt: 30837) -.media.mybet.com/redirect\.aspx\?pid=.*&bid= -# ||mcars.org/landing/$popup,third-party (easylist.txt: 30836) -.mcars.org/landing/ -# ||maxedtube.com/video_play?*&utm_campaign=$popup,third-party (easylist.txt: 30835) -.maxedtube.com/video_play\?.*&utm_campaign= -# ||makemoneyonline.2yu.in^$popup (easylist.txt: 30834) -.makemoneyonline.2yu.in -# ||lyricsbogie.com/?$popup,third-party (easylist.txt: 30833) -.lyricsbogie.com/\? -# ||lumosity.com/landing_pages/$popup (easylist.txt: 30832) -.lumosity.com/landing_pages/ -# ||lsbet.com/bonus/$popup,third-party (easylist.txt: 30831) -.lsbet.com/bonus/ -# ||lp.titanpoker.com^$popup,third-party (easylist.txt: 30830) -.lp.titanpoker.com -# ||lp.musicboxnewtab.com^$popup,third-party (easylist.txt: 30829) -.lp.musicboxnewtab.com -# ||lp.imesh.com/?$popup,third-party (easylist.txt: 30828) -.lp.imesh.com/\? -# ||lp.ilivid.com/?$popup,third-party (easylist.txt: 30827) -.lp.ilivid.com/\? -# ||lovepoker.de^*/?pid=$popup (easylist.txt: 30826) -.lovepoker.de/.*/\?pid= -# ||lovefilm.com/partners/$popup,third-party (easylist.txt: 30825) -.lovefilm.com/partners/ -# ||liutilities.com^*/affiliate/$popup (easylist.txt: 30824) -.liutilities.com/.*/affiliate/ -# ||i2casting.com^$popup,third-party (easylist.txt: 30822) -.i2casting.com -# ||hyperlinksecure.com/go/$popup (easylist.txt: 30821) -.hyperlinksecure.com/go/ -# ||hyperlinksecure.com/back?token=$popup (easylist.txt: 30820) -.hyperlinksecure.com/back\?token= -# ||house-rent.us^$popup,third-party (easylist.txt: 30819) -.house-rent.us -# ||homemadecelebrityporn.com/track/$popup,third-party (easylist.txt: 30818) -.homemadecelebrityporn.com/track/ -# ||hmn-net.com^*/xdirect/$popup,third-party (easylist.txt: 30817) -.hmn-net.com/.*/xdirect/ -# ||hetu.in^$popup,third-party (easylist.txt: 30816) -.hetu.in -# ||hdvidcodecs.com^$popup (easylist.txt: 30815) -.hdvidcodecs.com -# ||hdvid-codec.com^$popup (easylist.txt: 30814) -.hdvid-codec.com -# ||getsecuredfiles.com^$popup,third-party (easylist.txt: 30813) -.getsecuredfiles.com -# ||generic4all.com^*.dhtml?refid=$popup,third-party (easylist.txt: 30812) -.generic4all.com/.*\.dhtml\?refid= -# ||fwmrm.net/ad/$popup (easylist.txt: 30811) -.fwmrm.net/ad/ -# ||fulltiltpoker.com/affiliates/$popup,third-party (easylist.txt: 30810) -.fulltiltpoker.com/affiliates/ -# ||fulltiltpoker.com/?key=$popup,third-party (easylist.txt: 30809) -.fulltiltpoker.com/\?key= -# ||fsoft4down.com^$popup (easylist.txt: 30808) -.fsoft4down.com -# ||free-rewards.com-s.tv^$popup (easylist.txt: 30807) -.free-rewards.com-s.tv -# ||fleshlight.com/?link=$popup,third-party (easylist.txt: 30806) -.fleshlight.com/\?link= -# ||flashplayer-updates.com^$popup (easylist.txt: 30805) -.flashplayer-updates.com -# ||firstload.de^$popup (easylist.txt: 30804) -.firstload.de -# ||firstload.com^$popup (easylist.txt: 30803) -.firstload.com -# ||fastclick.net^$popup (easylist.txt: 30802) -.fastclick.net -# ||facebookcoverx.com^$popup,third-party (easylist.txt: 30801) -.facebookcoverx.com -# ||evanetwork.com^$popup (easylist.txt: 30800) -.evanetwork.com -# ||europacasino.com^$popup,third-party (easylist.txt: 30799) -.europacasino.com -# ||eurogrand.com^$popup (easylist.txt: 30798) -.eurogrand.com -# ||erotikdeal.com/advertising.html$popup,third-party (easylist.txt: 30797) -.erotikdeal.com/advertising\.html -# ||erotikdeal.com/?ref=$popup,third-party (easylist.txt: 30796) -.erotikdeal.com/\?ref= -# ||eroticmix.blogspot.$popup (easylist.txt: 30795) -.eroticmix.blogspot.*. -# ||dateoffer.net/?s=*&subid=$popup,third-party (easylist.txt: 30794) -.dateoffer.net/\?s=.*&subid= -# ||d1110e4.se^$popup (easylist.txt: 30793) -.d1110e4.se -# ||ctcautobody.com^$popup,third-party (easylist.txt: 30792) -.ctcautobody.com -# ||coolguruji.com/l.php?$popup (easylist.txt: 30791) -.coolguruji.com/l\.php\? -# ||clickansave.net^$popup,third-party (easylist.txt: 30790) -.clickansave.net -# ||click.scour.com^$popup,third-party (easylist.txt: 30789) -.click.scour.com -# ||chaturbate.com/affiliates/$popup,third-party (easylist.txt: 30788) -.chaturbate.com/affiliates/ -# ||chatulfetelor.net/$popup (easylist.txt: 30787) -.chatulfetelor.net -# ||chatlivejasmin.net^$popup (easylist.txt: 30786) -.chatlivejasmin.net -# ||cdnfarm18.com^$popup,third-party (easylist.txt: 30785) -.cdnfarm18.com -# ||cdn.optmd.com^$popup,third-party (easylist.txt: 30784) -.cdn.optmd.com -# ||casinoadviser.net^$popup (easylist.txt: 30783) -.casinoadviser.net -# ||casino.com^*?*=$popup,third-party (easylist.txt: 30782) -.casino.com/.*\?.*= -# ||casino-x.com^*?partner=$popup,third-party (easylist.txt: 30781) -.casino-x.com/.*\?partner= -# ||bovada.lv^$popup,third-party (easylist.txt: 30780) -.bovada.lv -# ||binaryoptions24h.com^$popup,third-party (easylist.txt: 30779) -.binaryoptions24h.com -# ||bet365.com^*affiliate=$popup (easylist.txt: 30778) -.bet365.com/.*affiliate= -# ||banner.galabingo.com^$popup,third-party (easylist.txt: 30777) -.banner.galabingo.com -# ||babylon.com/welcome/index.html?affID=$popup,third-party (easylist.txt: 30776) -.babylon.com/welcome/index\.html\?affID= -# ||babylon.com/redirects/$popup,third-party (easylist.txt: 30775) -.babylon.com/redirects/ -# ||amazing-offers.co.il^$popup,third-party (easylist.txt: 30774) -.amazing-offers.co.il -# ||aliexpress.com/?af=$popup,third-party (easylist.txt: 30773) -.aliexpress.com/\?af= -# ||affportal-lb.bevomedia.com^$popup,third-party (easylist.txt: 30772) -.affportal-lb.bevomedia.com -# ||affiliates.galapartners.co.uk^$popup,third-party (easylist.txt: 30771) -.affiliates.galapartners.co.uk -# ||adserving.unibet.com^$popup,third-party (easylist.txt: 30770) -.adserving.unibet.com -# ||adrotator.se^$popup (easylist.txt: 30769) -.adrotator.se -# ||admngronline.com^$popup,third-party (easylist.txt: 30768) -.admngronline.com -# ||adfoc.us/serve/$popup,third-party (easylist.txt: 30767) -.adfoc.us/serve/ -# ||6angebot.ch/?ref=$popup,third-party (easylist.txt: 30766) -.6angebot.ch/\?ref= -# ||5.39.67.191/promo.php?$popup (easylist.txt: 30765) -.5.39.67.191/promo\.php\? -# ||4utro.ru^$popup (easylist.txt: 30764) -.4utro.ru -# ||d1nmk7iw7hajjn.cloudfront.net^ (easylist.txt: 30762) -.d1nmk7iw7hajjn.cloudfront.net -# ||chronophotographie.science^$third-party (easylist.txt: 30761) -.chronophotographie.science -# ||iadc.qwapi.com^ (easylist.txt: 30759) -.iadc.qwapi.com -# ||zmh.zope.net^$third-party (easylist.txt: 30756) -.zmh.zope.net -# ||zip2save.com/widget.php? (easylist.txt: 30755) -.zip2save.com/widget\.php\? -# ||ziffstatic.com/jst/zdvtools. (easylist.txt: 30754) -.ziffstatic.com/jst/zdvtools\. -# ||ziffstatic.com/jst/zdsticky. (easylist.txt: 30753) -.ziffstatic.com/jst/zdsticky\. -# ||ziffprod.com/CSE/BestPrice? (easylist.txt: 30752) -.ziffprod.com/CSE/BestPrice\? -# ||ziffdavisenterprise.com/contextclicks/ (easylist.txt: 30751) -.ziffdavisenterprise.com/contextclicks/ -# ||zeusfiles.com/promo/ (easylist.txt: 30750) -.zeusfiles.com/promo/ -# ||zeus.qj.net^ (easylist.txt: 30749) -.zeus.qj.net -# ||zergnet.com^$third-party (easylist.txt: 30748) -.zergnet.com -# ||zazzle.com^*?rf$third-party (easylist.txt: 30747) -.zazzle.com/.*\?rf -# ||zazzle.com/utl/getpanel$third-party (easylist.txt: 30746) -.zazzle.com/utl/getpanel -# ||zapads.zapak.com^ (easylist.txt: 30745) -.zapads.zapak.com -# ||youinsure.co.za/frame/$third-party (easylist.txt: 30744) -.youinsure.co.za/frame/ -# ||you-cubez.com/images/banners/ (easylist.txt: 30743) -.you-cubez.com/images/banners/ -# ||yooclick.com^$subdocument,third-party (easylist.txt: 30742) -.yooclick.com -# ||yontoo.com^$subdocument,third-party (easylist.txt: 30741) -.yontoo.com -# ||ynet.co.il^*/ynetbanneradmin/ (easylist.txt: 30740) -.ynet.co.il/.*/ynetbanneradmin/ -# ||yimg.com^*/sponsored.js (easylist.txt: 30738) -.yimg.com/.*/sponsored\.js -# ||yimg.com^*/quickplay_maxwellhouse.png (easylist.txt: 30737) -.yimg.com/.*/quickplay_maxwellhouse\.png -# ||yimg.com/gs/apex/mediastore/ (easylist.txt: 30735) -.yimg.com/gs/apex/mediastore/ -# ||yieldmanager.edgesuite.net^$third-party (easylist.txt: 30734) -.yieldmanager.edgesuite.net -# ||yeas.yahoo.co.jp^ (easylist.txt: 30733) -.yeas.yahoo.co.jp -# ||yb.torchbrowser.com^ (easylist.txt: 30732) -.yb.torchbrowser.com -# ||yahoo.net^*/ads/ (easylist.txt: 30731) -.yahoo.net/.*/ads/ -# ||yachting.org^*/banner/ (easylist.txt: 30730) -.yachting.org/.*/banner/ -# ||xproxyhost.com/images/banners/ (easylist.txt: 30729) -.xproxyhost.com/images/banners/ -# ||xml.exactseek.com/cgi-bin/js-feed.cgi?$third-party (easylist.txt: 30728) -.xml.exactseek.com/cgi-bin/js-feed\.cgi\? -# ||xingcloud.com^*/uid_ (easylist.txt: 30727) -.xingcloud.com/.*/uid_ -# ||xigen.co.uk^*/Affiliate/ (easylist.txt: 30726) -.xigen.co.uk/.*/Affiliate/ -# ||xgaming.com/rotate*.php?$third-party (easylist.txt: 30725) -.xgaming.com/rotate.*\.php\? -# ||xcams.com/livecams/pub_collante/script.php?$third-party (easylist.txt: 30724) -.xcams.com/livecams/pub_collante/script\.php\? -# ||x3cms.com/ads/ (easylist.txt: 30723) -.x3cms.com/ads/ -# ||wupload.com/referral/$third-party (easylist.txt: 30722) -.wupload.com/referral/ -# ||wupload.com/images/banners/ (easylist.txt: 30721) -.wupload.com/images/banners/ -# ||wtprn.com/sponsors/ (easylist.txt: 30720) -.wtprn.com/sponsors/ -# ||wtpn.twenga.de^ (easylist.txt: 30718) -.wtpn.twenga.de -# ||wtpn.twenga.co.uk^ (easylist.txt: 30717) -.wtpn.twenga.co.uk -# ||wsockd.com^$third-party (easylist.txt: 30716) -.wsockd.com -# ||ws.amazon.*/widgets/$third-party (easylist.txt: 30715) -.ws.amazon.*./(.*/)?widgets/ -# ||wrapper.ign.com^$third-party (easylist.txt: 30714) -.wrapper.ign.com -# ||worldofjudaica.com/static/show/external/ (easylist.txt: 30712) -.worldofjudaica.com/static/show/external/ -# ||worldofjudaica.com/products/dynamic_banner/ (easylist.txt: 30711) -.worldofjudaica.com/products/dynamic_banner/ -# ||worldnow.com/images/incoming/RTJ/rtj201303fall.jpg (easylist.txt: 30710) -.worldnow.com/images/incoming/RTJ/rtj201303fall\.jpg -# ||worldcdn.net^*/banners/ (easylist.txt: 30709) -.worldcdn.net/.*/banners/ -# ||wonderlabs.com/affiliate_pro/banners/ (easylist.txt: 30708) -.wonderlabs.com/affiliate_pro/banners/ -# ||wm.co.za/wmjs.php? (easylist.txt: 30707) -.wm.co.za/wmjs\.php\? -# ||wm.co.za/24com.php? (easylist.txt: 30706) -.wm.co.za/24com\.php\? -# ||wishlistproducts.com/affiliatetools/$third-party (easylist.txt: 30705) -.wishlistproducts.com/affiliatetools/ -# ||winsms.co.za/banner/ (easylist.txt: 30704) -.winsms.co.za/banner/ -# ||winpalace.com/?affid= (easylist.txt: 30703) -.winpalace.com/\?affid= -# ||wildamaginations.com/mdm/banner/ (easylist.txt: 30702) -.wildamaginations.com/mdm/banner/ -# ||widgets.solaramerica.org^$third-party (easylist.txt: 30701) -.widgets.solaramerica.org -# ||widgets.realestate.com.au^ (easylist.txt: 30700) -.widgets.realestate.com.au -# ||widgets.progrids.com^$third-party (easylist.txt: 30699) -.widgets.progrids.com -# ||widgets.privateproperty.com.ng^$third-party (easylist.txt: 30698) -.widgets.privateproperty.com.ng -# ||widgets.mozo.com.au^$third-party (easylist.txt: 30697) -.widgets.mozo.com.au -# ||widgets.mobilelocalnews.com^$third-party (easylist.txt: 30696) -.widgets.mobilelocalnews.com -# ||widgets.itunes.apple.com^*&affiliate_id=$third-party (easylist.txt: 30695) -.widgets.itunes.apple.com/.*&affiliate_id= -# ||widgets.fie.futurecdn.net^$script (easylist.txt: 30694) -.widgets.fie.futurecdn.net -# ||widgets.adviceiq.com^$third-party (easylist.txt: 30693) -.widgets.adviceiq.com -# ||widgetcf.adviceiq.com^$third-party (easylist.txt: 30692) -.widgetcf.adviceiq.com -# ||widget.solarquotes.com.au^ (easylist.txt: 30691) -.widget.solarquotes.com.au -# ||widget.shopstyle.com/widget?pid=$subdocument,third-party (easylist.txt: 30690) -.widget.shopstyle.com/widget\?pid= -# ||widget.shopstyle.com.au^ (easylist.txt: 30689) -.widget.shopstyle.com.au -# ||widget.searchschoolsnetwork.com^ (easylist.txt: 30688) -.widget.searchschoolsnetwork.com -# ||widget.scoutpa.com^$third-party (easylist.txt: 30687) -.widget.scoutpa.com -# ||widget.raaze.com^ (easylist.txt: 30686) -.widget.raaze.com -# ||widget.kelkoo.com^ (easylist.txt: 30685) -.widget.kelkoo.com -# ||widget.jobberman.com^$third-party (easylist.txt: 30684) -.widget.jobberman.com -# ||widget.imshopping.com^$third-party (easylist.txt: 30683) -.widget.imshopping.com -# ||widget.crowdignite.com^ (easylist.txt: 30682) -.widget.crowdignite.com -# ||widget.cheki.com.ng^$third-party (easylist.txt: 30681) -.widget.cheki.com.ng -# ||widgeo.net/popup.js (easylist.txt: 30680) -.widgeo.net/popup\.js -# ||whistleout.s3.amazonaws.com^ (easylist.txt: 30679) -.whistleout.s3.amazonaws.com -# ||website.ws^*/banners/ (easylist.txt: 30678) -.website.ws/.*/banners/ -# ||webmasterrock.com/cpxt_pab (easylist.txt: 30677) -.webmasterrock.com/cpxt_pab -# ||webdev.co.zw/images/banners/$third-party (easylist.txt: 30676) -.webdev.co.zw/images/banners/ -# ||web2feel.com/images/$third-party (easylist.txt: 30675) -.web2feel.com/images/ -# ||web-jp.ad-v.jp^ (easylist.txt: 30674) -.web-jp.ad-v.jp -# ||weatherthreat.com^*/app_add.png (easylist.txt: 30673) -.weatherthreat.com/.*/app_add\.png -# ||wealthyrush.com^*/banners/$third-party (easylist.txt: 30672) -.wealthyrush.com/.*/banners/ -# ||watersoul.com^$subdocument,third-party (easylist.txt: 30671) -.watersoul.com -# ||watchme.com/track/$subdocument,third-party (easylist.txt: 30670) -.watchme.com/track/ -# ||watch-naruto.tv/images/$third-party (easylist.txt: 30669) -.watch-naruto.tv/images/ -# ||watch-free-movie-online.net/adds- (easylist.txt: 30668) -.watch-free-movie-online.net/adds- -# ||washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie.html (easylist.txt: 30667) -.washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie\.html -# ||warrantydirect.co.uk/widgets/ (easylist.txt: 30666) -.warrantydirect.co.uk/widgets/ -# ||warezhaven.org/warezhavenbann.jpg (easylist.txt: 30665) -.warezhaven.org/warezhavenbann\.jpg -# ||walmartimages.com^*/HealthPartner_ (easylist.txt: 30664) -.walmartimages.com/.*/HealthPartner_ -# ||wagital.com/Wagital-Ads.html (easylist.txt: 30663) -.wagital.com/Wagital-Ads\.html -# ||vxite.com/banner/ (easylist.txt: 30661) -.vxite.com/banner/ -# ||vuvuplaza.com^$subdocument,third-party (easylist.txt: 30660) -.vuvuplaza.com -# ||vrvm.com/t? (easylist.txt: 30659) -.vrvm.com/t\? -# ||vpnxs.nl/images/vpnxs_banner (easylist.txt: 30658) -.vpnxs.nl/images/vpnxs_banner -# ||vpntunnel.se/aff/$third-party (easylist.txt: 30657) -.vpntunnel.se/aff/ -# ||vpn4all.com^*/banner/ (easylist.txt: 30656) -.vpn4all.com/.*/banner/ -# ||voodoo.com^$third-party (easylist.txt: 30655) -.voodoo.com -# ||vittgam.net/images/b/ (easylist.txt: 30654) -.vittgam.net/images/b/ -# ||vitabase.com/images/relationships/$third-party (easylist.txt: 30653) -.vitabase.com/images/relationships/ -# ||visitorboost.com/images/$third-party (easylist.txt: 30652) -.visitorboost.com/images/ -# ||visit.homepagle.com^$third-party (easylist.txt: 30651) -.visit.homepagle.com -# ||virtuaguyhd.com/ref.php? (easylist.txt: 30650) -.virtuaguyhd.com/ref\.php\? -# ||virtuagirl.com/ref.php? (easylist.txt: 30649) -.virtuagirl.com/ref\.php\? -# ||virool.com/widgets/$third-party (easylist.txt: 30648) -.virool.com/widgets/ -# ||viglink.com/api/products^$third-party (easylist.txt: 30647) -.viglink.com/api/products[^\w%.-] -# ||viglink.com/api/optimize^$third-party (easylist.txt: 30646) -.viglink.com/api/optimize[^\w%.-] -# ||viglink.com/api/insert^$third-party (easylist.txt: 30645) -.viglink.com/api/insert[^\w%.-] -# ||viglink.com/api/batch^$third-party (easylist.txt: 30644) -.viglink.com/api/batch[^\w%.-] -# ||vidyoda.com/fambaa/chnls/ADSgmts.ashx? (easylist.txt: 30643) -.vidyoda.com/fambaa/chnls/ADSgmts\.ashx\? -# ||vidible.tv/prod/tags/ (easylist.txt: 30642) -.vidible.tv/prod/tags/ -# ||vidible.tv/placement/vast/ (easylist.txt: 30641) -.vidible.tv/placement/vast/ -# ||videozr.com^$third-party (easylist.txt: 30640) -.videozr.com -# ||videoweed.es/js/aff.js (easylist.txt: 30639) -.videoweed.es/js/aff\.js -# ||viagogo.co.uk/feeds/widget.ashx? (easylist.txt: 30638) -.viagogo.co.uk/feeds/widget\.ashx\? -# ||veospot.com^*.html (easylist.txt: 30637) -.veospot.com/.*\.html -# ||vendor1.fitschigogerl.com^ (easylist.txt: 30636) -.vendor1.fitschigogerl.com -# ||vdownloader.com/pages/$subdocument,third-party (easylist.txt: 30635) -.vdownloader.com/pages/ -# ||vcnewsdaily.com/images/vcnews_right_banner.gif (easylist.txt: 30634) -.vcnewsdaily.com/images/vcnews_right_banner\.gif -# ||vast.videe.tv/vast-proxy/ (easylist.txt: 30633) -.vast.videe.tv/vast-proxy/ -# ||valuechecker.co.uk/banners/$third-party (easylist.txt: 30632) -.valuechecker.co.uk/banners/ -# ||ussearch.com/preview/banner/ (easylist.txt: 30631) -.ussearch.com/preview/banner/ -# ||usfine.com/images/sty_img/usfine.gif (easylist.txt: 30630) -.usfine.com/images/sty_img/usfine\.gif -# ||usersfiles.com/images/72890UF.png (easylist.txt: 30629) -.usersfiles.com/images/72890UF\.png -# ||usenetbucket.com^*-banner/ (easylist.txt: 30628) -.usenetbucket.com/.*-banner/ -# ||usenet.pw^$third-party (easylist.txt: 30627) -.usenet.pw -# ||urtig.net/scripts/js3caf.js (easylist.txt: 30626) -.urtig.net/scripts/js3caf\.js -# ||uploadstation.com/images/banners/ (easylist.txt: 30625) -.uploadstation.com/images/banners/ -# ||uploaded.to/js/layer.js (easylist.txt: 30624) -.uploaded.to/js/layer\.js -# ||uploaded.to/img/public/$third-party (easylist.txt: 30623) -.uploaded.to/img/public/ -# ||uploaded.net/img/public/$third-party (easylist.txt: 30622) -.uploaded.net/img/public/ -# ||upload2.com/upload2.html (easylist.txt: 30621) -.upload2.com/upload2\.html -# ||upickem.net^*/affiliates/$third-party (easylist.txt: 30620) -.upickem.net/.*/affiliates/ -# ||unsereuni.at/resources/img/$third-party (easylist.txt: 30619) -.unsereuni.at/resources/img/ -# ||united-domains.de^*/parking/ (easylist.txt: 30618) -.united-domains.de/.*/parking/ -# ||united-domains.de/parking/ (easylist.txt: 30617) -.united-domains.de/parking/ -# ||uniblue.com^*/affiliates/ (easylist.txt: 30616) -.uniblue.com/.*/affiliates/ -# ||ultimatewebtraffic.info/images/fbautocash (easylist.txt: 30615) -.ultimatewebtraffic.info/images/fbautocash -# ||ukrd.com/images/icons/itunes.png (easylist.txt: 30614) -.ukrd.com/images/icons/itunes\.png -# ||ukrd.com/images/icons/amazon.png (easylist.txt: 30613) -.ukrd.com/images/icons/amazon\.png -# ||ukrd.com/image/*-160x160.png (easylist.txt: 30612) -.ukrd.com/image/.*-160x160\.png -# ||ukrd.com/image/*-160x133.jpg (easylist.txt: 30611) -.ukrd.com/image/.*-160x133\.jpg -# ||ukcast.tv/adds/ (easylist.txt: 30610) -.ukcast.tv/adds/ -# ||ubuntudeal.co.za^$subdocument,third-party (easylist.txt: 30609) -.ubuntudeal.co.za -# ||u-loader.com/image/hotspot_ (easylist.txt: 30608) -.u-loader.com/image/hotspot_ -# ||twivert.com/external/banner234x60. (easylist.txt: 30607) -.twivert.com/external/banner234x60\. -# ||twinplan.com^ (easylist.txt: 30606) -.twinplan.com -# ||turner.com^*/promos/ (easylist.txt: 30605) -.turner.com/.*/promos/ -# ||turbotrafficsystem.com^*/banners/ (easylist.txt: 30604) -.turbotrafficsystem.com/.*/banners/ -# ||turbobit.net/refers/$third-party (easylist.txt: 30603) -.turbobit.net/refers/ -# ||turbobit.net/ref/$third-party (easylist.txt: 30602) -.turbobit.net/ref/ -# ||ttt.co.uk/TMConverter/$third-party (easylist.txt: 30601) -.ttt.co.uk/TMConverter/ -# ||tshirthell.com/img/affiliate_section/$third-party (easylist.txt: 30600) -.tshirthell.com/img/affiliate_section/ -# ||trivago.co.uk/uk/srv/$third-party (easylist.txt: 30599) -.trivago.co.uk/uk/srv/ -# ||tritondigital.com/ltflash.php? (easylist.txt: 30598) -.tritondigital.com/ltflash\.php\? -# ||tritondigital.com/lt?sid*&hasads= (easylist.txt: 30597) -.tritondigital.com/lt\?sid.*&hasads= -# ||tribwgnam.files.wordpress.com^*reskin2. (easylist.txt: 30595) -.tribwgnam.files.wordpress.com/.*reskin2\. -# ||tribktla.files.wordpress.com/*-639x125-sponsorship.jpg? (easylist.txt: 30594) -.tribktla.files.wordpress.com/.*-639x125-sponsorship\.jpg\? -# ||trialpay.com^*&dw-ptid=$third-party (easylist.txt: 30593) -.trialpay.com/.*&dw-ptid= -# ||trialfunder.com/banner/ (easylist.txt: 30592) -.trialfunder.com/banner/ -# ||trhnt.com/sx.tr.js (easylist.txt: 30591) -.trhnt.com/sx\.tr\.js -# ||tremormedia.com^*_preroll_ (easylist.txt: 30590) -.tremormedia.com/.*_preroll_ -# ||tremormedia.com^*/tpacudeoplugin46.swf (easylist.txt: 30589) -.tremormedia.com/.*/tpacudeoplugin46\.swf -# ||tremormedia.com/embed/js/*_ads.js (easylist.txt: 30588) -.tremormedia.com/embed/js/.*_ads\.js -# ||treatme.co.nz/Affiliates/ (easylist.txt: 30587) -.treatme.co.nz/Affiliates/ -# ||travelmail.traveltek.net^$third-party (easylist.txt: 30585) -.travelmail.traveltek.net -# ||tradeboss.com/1/banners/ (easylist.txt: 30584) -.tradeboss.com/1/banners/ -# ||track.bcvcmedia.com^ (easylist.txt: 30583) -.track.bcvcmedia.com -# ||traceybell.co.uk^$subdocument,third-party (easylist.txt: 30582) -.traceybell.co.uk -# ||toysrus.com/graphics/promo/ (easylist.txt: 30581) -.toysrus.com/graphics/promo/ -# ||townsquareblogs.com^*=sponsor& (easylist.txt: 30580) -.townsquareblogs.com/.*=sponsor& -# ||townnews.com^*/upickem-deals.js? (easylist.txt: 30579) -.townnews.com/.*/upickem-deals\.js\? -# ||townnews.com^*/dealwidget.css? (easylist.txt: 30578) -.townnews.com/.*/dealwidget\.css\? -# ||tosol.co.uk/international.php?$third-party (easylist.txt: 30577) -.tosol.co.uk/international\.php\? -# ||torguard.net/images/aff/ (easylist.txt: 30576) -.torguard.net/images/aff/ -# ||toptenreviews.com/w/af_widget.js$third-party (easylist.txt: 30575) -.toptenreviews.com/w/af_widget\.js -# ||toptenreviews.com/r/c/ (easylist.txt: 30574) -.toptenreviews.com/r/c/ -# ||topmedia.com/external/ (easylist.txt: 30572) -.topmedia.com/external/ -# ||topbinaryaffiliates.ck-cdn.com^$third-party (easylist.txt: 30571) -.topbinaryaffiliates.ck-cdn.com -# ||top5result.com/promo/ (easylist.txt: 30570) -.top5result.com/promo/ -# ||tonefuse.s3.amazonaws.com/clientjs/ (easylist.txt: 30569) -.tonefuse.s3.amazonaws.com/clientjs/ -# ||todaysfinder.com^$subdocument,third-party (easylist.txt: 30568) -.todaysfinder.com -# ||tmz.vo.llnwd.net^*_rightrail_200x987.swf (easylist.txt: 30567) -.tmz.vo.llnwd.net/.*_rightrail_200x987\.swf -# ||tmbattle.com/images/promo_ (easylist.txt: 30566) -.tmbattle.com/images/promo_ -# ||tiqiq.com/Tiqiq/WidgetInactiveIFrame.aspx?WidgetID=*&PublisherID=$subdocument,third-party (easylist.txt: 30565) -.tiqiq.com/Tiqiq/WidgetInactiveIFrame\.aspx\?WidgetID=.*&PublisherID= -# ||tipico.*?affiliateId=$third-party (easylist.txt: 30564) -.tipico.*./.*\?affiliateId= -# ||tipico.*/affiliate/$third-party (easylist.txt: 30563) -.tipico.*./(.*/)?affiliate/ -# ||tinyurl.com/4x848hd$subdocument (easylist.txt: 30562) -.tinyurl.com/4x848hd -# ||timesinternet.in/ad/ (easylist.txt: 30561) -.timesinternet.in/ad/ -# ||tigerdirect.com^*/affiliate_ (easylist.txt: 30560) -.tigerdirect.com/.*/affiliate_ -# ||tickles.ie^$subdocument,third-party (easylist.txt: 30559) -.tickles.ie -# ||tickles.co.uk^$subdocument,third-party (easylist.txt: 30558) -.tickles.co.uk -# ||ticketmaster.com/promotionalcontent/ (easylist.txt: 30557) -.ticketmaster.com/promotionalcontent/ -# ||ticketkai.com/banner/ (easylist.txt: 30556) -.ticketkai.com/banner/ -# ||ti.tradetracker.net^ (easylist.txt: 30555) -.ti.tradetracker.net -# ||thirdpartycdn.lumovies.com^$third-party (easylist.txt: 30554) -.thirdpartycdn.lumovies.com -# ||thetechnologyblog.net^*/bp_internet/ (easylist.txt: 30553) -.thetechnologyblog.net/.*/bp_internet/ -# ||theselfdefenseco.com/?affid=$third-party (easylist.txt: 30552) -.theselfdefenseco.com/\?affid= -# ||theseforums.com/visitScript/ (easylist.txt: 30551) -.theseforums.com/visitScript/ -# ||theseblogs.com/visitScript/ (easylist.txt: 30550) -.theseblogs.com/visitScript/ -# ||thereadystore.com/affiliate/ (easylist.txt: 30549) -.thereadystore.com/affiliate/ -# ||themis-media.com^*/sponsorships/ (easylist.txt: 30548) -.themis-media.com/.*/sponsorships/ -# ||themify.me/banners/$third-party (easylist.txt: 30547) -.themify.me/banners/ -# ||themes420.com/bnrsbtns/ (easylist.txt: 30546) -.themes420.com/bnrsbtns/ -# ||thebigchair.com.au^$subdocument,third-party (easylist.txt: 30545) -.thebigchair.com.au -# ||theatm.info/images/$third-party (easylist.txt: 30544) -.theatm.info/images/ -# ||thatfreething.com/images/banners/ (easylist.txt: 30543) -.thatfreething.com/images/banners/ -# ||thaiforlove.com/userfiles/affb- (easylist.txt: 30542) -.thaiforlove.com/userfiles/affb- -# ||textlinks.com/images/banners/ (easylist.txt: 30541) -.textlinks.com/images/banners/ -# ||tedswoodworking.com/images/banners/ (easylist.txt: 30540) -.tedswoodworking.com/images/banners/ -# ||techbargains.com/scripts/banner.js$third-party (easylist.txt: 30539) -.techbargains.com/scripts/banner\.js -# ||techbargains.com/inc_iframe_deals_feed.cfm?$third-party (easylist.txt: 30538) -.techbargains.com/inc_iframe_deals_feed\.cfm\? -# ||tcmwebcorp.com/dtm/tc_global_dtm_delivery.js (easylist.txt: 30537) -.tcmwebcorp.com/dtm/tc_global_dtm_delivery\.js -# ||tap.more-results.net^ (easylist.txt: 30536) -.tap.more-results.net -# ||tankionline.com/tankiref.swf (easylist.txt: 30535) -.tankionline.com/tankiref\.swf -# ||talkfusion.com^*/banners/ (easylist.txt: 30534) -.talkfusion.com/.*/banners/ -# ||takeover.bauermedia.co.uk^$~stylesheet (easylist.txt: 30533) -.takeover.bauermedia.co.uk -# ||take2.co.za/misc/bannerscript.php? (easylist.txt: 30532) -.take2.co.za/misc/bannerscript\.php\? -# ||tag.regieci.com^$third-party (easylist.txt: 30531) -.tag.regieci.com -# ||syndication1.viraladnetwork.net^ (easylist.txt: 30530) -.syndication1.viraladnetwork.net -# ||syndication.visualthesaurus.com/std/vtad.js (easylist.txt: 30529) -.syndication.visualthesaurus.com/std/vtad\.js -# ||syndication.jsadapi.com^ (easylist.txt: 30528) -.syndication.jsadapi.com -# ||syndicate.payloadz.com^$third-party (easylist.txt: 30527) -.syndicate.payloadz.com -# ||swimg.net^*/banners/ (easylist.txt: 30526) -.swimg.net/.*/banners/ -# ||sweeva.com/widget.php?w=$third-party (easylist.txt: 30525) -.sweeva.com/widget\.php\?w= -# ||sweetwater.com/feature/$third-party (easylist.txt: 30524) -.sweetwater.com/feature/ -# ||sweed.to/affiliates/ (easylist.txt: 30523) -.sweed.to/affiliates/ -# ||sweed.to/?pid=$third-party (easylist.txt: 30522) -.sweed.to/\?pid= -# ||swarmjam.com^$script,third-party (easylist.txt: 30521) -.swarmjam.com -# ||svcs.ebay.com/services/search/FindingService/*^affiliate.tracking$third-party (easylist.txt: 30520) -.svcs.ebay.com/services/search/FindingService/.*[^\w%.-]affiliate\.tracking -# ||survivaltop50.com/wp-content/uploads/*/Survival215x150Link.png (easylist.txt: 30519) -.survivaltop50.com/wp-content/uploads/.*/Survival215x150Link\.png -# ||surveywriter.net^$script,third-party (easylist.txt: 30518) -.surveywriter.net -# ||surveymonkey.com/jspop.aspx?$third-party (easylist.txt: 30517) -.surveymonkey.com/jspop\.aspx\? -# ||survey.g.doubleclick.net^ (easylist.txt: 30516) -.survey.g.doubleclick.net -# ||surf100sites.com/images/banner_ (easylist.txt: 30515) -.surf100sites.com/images/banner_ -# ||supply.upjers.com^$third-party (easylist.txt: 30514) -.supply.upjers.com -# ||supersport.com/content/Sponsors (easylist.txt: 30513) -.supersport.com/content/Sponsors -# ||supersport.com/content/2014_Sponsor (easylist.txt: 30512) -.supersport.com/content/2014_Sponsor -# ||supersport.co.za^*180x254 (easylist.txt: 30511) -.supersport.co.za/.*180x254 -# ||superherostuff.com/pages/cbmpage.aspx?*&cbmid=$subdocument,third-party (easylist.txt: 30510) -.superherostuff.com/pages/cbmpage\.aspx\?.*&cbmid= -# ||subliminalmp3s.com^*/banners/ (easylist.txt: 30509) -.subliminalmp3s.com/.*/banners/ -# ||stylefind.com^*?campaign=$subdocument,third-party (easylist.txt: 30508) -.stylefind.com/.*\?campaign= -# ||stuff-nzwhistleout.s3.amazonaws.com^ (easylist.txt: 30507) -.stuff-nzwhistleout.s3.amazonaws.com -# ||structuredchannel.com/sw/swchannel/images/MarketingAssets/*/BannerAd (easylist.txt: 30506) -.structuredchannel.com/sw/swchannel/images/MarketingAssets/.*/BannerAd -# ||strikeadcdn.s3.amazonaws.com^$third-party (easylist.txt: 30505) -.strikeadcdn.s3.amazonaws.com -# ||streamtheworld.com/ondemand/creative? (easylist.txt: 30504) -.streamtheworld.com/ondemand/creative\? -# ||streamtheworld.com/ondemand/ars?type=preroll$object-subrequest (easylist.txt: 30503) -.streamtheworld.com/ondemand/ars\?type=preroll -# ||storage.to/affiliate/ (easylist.txt: 30502) -.storage.to/affiliate/ -# ||stats.sitesuite.org^ (easylist.txt: 30501) -.stats.sitesuite.org -# ||stats.hosting24.com^ (easylist.txt: 30500) -.stats.hosting24.com -# ||staticworld.net/images/*_skin_ (easylist.txt: 30499) -.staticworld.net/images/.*_skin_ -# ||static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2.jpg (easylist.txt: 30498) -.static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2\.jpg -# ||static.tradetracker.net^$third-party (easylist.txt: 30497) -.static.tradetracker.net -# ||static.multiplayuk.com/images/w/w- (easylist.txt: 30496) -.static.multiplayuk.com/images/w/w- -# ||static.criteo.net/js/duplo^$third-party (easylist.txt: 30495) -.static.criteo.net/js/duplo[^\w%.-] -# ||static.criteo.net/images^$third-party (easylist.txt: 30494) -.static.criteo.net/images[^\w%.-] -# ||static.criteo.net/flash^$third-party (easylist.txt: 30493) -.static.criteo.net/flash[^\w%.-] -# ||static.criteo.net/design^$third-party (easylist.txt: 30492) -.static.criteo.net/design[^\w%.-] -# ||static.criteo.com/js/duplo^$third-party (easylist.txt: 30491) -.static.criteo.com/js/duplo[^\w%.-] -# ||static.criteo.com/images^$third-party (easylist.txt: 30490) -.static.criteo.com/images[^\w%.-] -# ||static.criteo.com/flash^$third-party (easylist.txt: 30489) -.static.criteo.com/flash[^\w%.-] -# ||static.criteo.com/design^$third-party (easylist.txt: 30488) -.static.criteo.com/design[^\w%.-] -# ||static.*.criteo.net/js/duplo^$third-party (easylist.txt: 30487) -.static.*./.*\.criteo\.net/js/duplo[^\w%.-] -.static.*.criteo.net/js/duplo[^\w%.-] -# ||static.*.criteo.net/images^$third-party (easylist.txt: 30486) -.static.*./.*\.criteo\.net/images[^\w%.-] -.static.*.criteo.net/images[^\w%.-] -# ||static.*.criteo.net/flash^$third-party (easylist.txt: 30485) -.static.*./.*\.criteo\.net/flash[^\w%.-] -.static.*.criteo.net/flash[^\w%.-] -# ||static.*.criteo.net/design^$third-party (easylist.txt: 30484) -.static.*./.*\.criteo\.net/design[^\w%.-] -.static.*.criteo.net/design[^\w%.-] -# ||stargames.com/bridge.asp?$third-party (easylist.txt: 30483) -.stargames.com/bridge\.asp\? -# ||stalliongold.com/images/*x$third-party (easylist.txt: 30482) -.stalliongold.com/images/.*x -# ||stacksocial.com^*?aid=$third-party (easylist.txt: 30481) -.stacksocial.com/.*\?aid= -# ||stacksocial.com/bundles/$third-party (easylist.txt: 30480) -.stacksocial.com/bundles/ -# ||ssshoesss.ro/banners/ (easylist.txt: 30479) -.ssshoesss.ro/banners/ -# ||ssl-images-amazon.com/images/*/banner/$third-party (easylist.txt: 30478) -.ssl-images-amazon.com/images/.*/banner/ -# ||srwww1.com^*/affiliate/ (easylist.txt: 30477) -.srwww1.com/.*/affiliate/ -# ||srv.dynamicyield.com^$third-party (easylist.txt: 30475) -.srv.dynamicyield.com -# ||squarespace.evyy.net^ (easylist.txt: 30474) -.squarespace.evyy.net -# ||sproutnova.com/serve.php$third-party (easylist.txt: 30473) -.sproutnova.com/serve\.php -# ||sportsdigitalcontent.com/betting/ (easylist.txt: 30472) -.sportsdigitalcontent.com/betting/ -# ||sportsbetaffiliates.com.au^$third-party (easylist.txt: 30471) -.sportsbetaffiliates.com.au -# ||sportingbet.com.au/sbacontent/puntersparadise.html (easylist.txt: 30470) -.sportingbet.com.au/sbacontent/puntersparadise\.html -# ||sponsorandwin.com/images/banner- (easylist.txt: 30469) -.sponsorandwin.com/images/banner- -# ||splashpagemaker.com/images/$third-party (easylist.txt: 30468) -.splashpagemaker.com/images/ -# ||spilcdn.com/vda/vendor/flowplayer/ova.swf (easylist.txt: 30467) -.spilcdn.com/vda/vendor/flowplayer/ova\.swf -# ||spilcdn.com/vda/css/sgadfamily2.css (easylist.txt: 30466) -.spilcdn.com/vda/css/sgadfamily2\.css -# ||spilcdn.com/vda/css/sgadfamily.css (easylist.txt: 30465) -.spilcdn.com/vda/css/sgadfamily\.css -# ||speedtv.com.edgesuite.net/img/static/takeovers/ (easylist.txt: 30464) -.speedtv.com.edgesuite.net/img/static/takeovers/ -# ||speedppc.com^*/banners/ (easylist.txt: 30463) -.speedppc.com/.*/banners/ -# ||speedbit.com^*-banner1- (easylist.txt: 30462) -.speedbit.com/.*-banner1- -# ||softneo.com/popup.js (easylist.txt: 30461) -.softneo.com/popup\.js -# ||socialorganicleads.com/interstitial/ (easylist.txt: 30460) -.socialorganicleads.com/interstitial/ -# ||socialmonkee.com/images/$third-party (easylist.txt: 30459) -.socialmonkee.com/images/ -# ||sndkorea.nowcdn.co.kr^$third-party (easylist.txt: 30458) -.sndkorea.nowcdn.co.kr -# ||snapdeal.com^*.php$third-party (easylist.txt: 30457) -.snapdeal.com/.*\.php -# ||snacktools.net/bannersnack/ (easylist.txt: 30455) -.snacktools.net/bannersnack/ -# ||smilepk.com/bnrsbtns/ (easylist.txt: 30454) -.smilepk.com/bnrsbtns/ -# ||smartlinks.dianomi.com^$third-party (easylist.txt: 30453) -.smartlinks.dianomi.com -# ||smartdestinations.com/ai/$third-party (easylist.txt: 30452) -.smartdestinations.com/ai/ -# ||smart.styria-digital.com^ (easylist.txt: 30451) -.smart.styria-digital.com -# ||slysoft.com/img/banner/$third-party (easylist.txt: 30450) -.slysoft.com/img/banner/ -# ||slot.union.ucweb.com^ (easylist.txt: 30449) -.slot.union.ucweb.com -# ||slickdeals.meritline.com^$third-party (easylist.txt: 30448) -.slickdeals.meritline.com -# ||skydsl.eu/banner/$third-party (easylist.txt: 30447) -.skydsl.eu/banner/ -# ||sitescout-video-cdn.edgesuite.net^ (easylist.txt: 30446) -.sitescout-video-cdn.edgesuite.net -# ||sitegrip.com^*/swagbucks- (easylist.txt: 30445) -.sitegrip.com/.*/swagbucks- -# ||sitegiant.my/affiliate/$third-party (easylist.txt: 30444) -.sitegiant.my/affiliate/ -# ||site5.com/creative/*/234x60.gif (easylist.txt: 30443) -.site5.com/creative/.*/234x60\.gif -# ||site5.com/creative/$third-party (easylist.txt: 30442) -.site5.com/creative/ -# ||sisters-magazine.com/iframebanners/$third-party (easylist.txt: 30441) -.sisters-magazine.com/iframebanners/ -# ||sis.amazon.com/iu?$third-party (easylist.txt: 30440) -.sis.amazon.com/iu\? -# ||singlemuslim.com/affiliates/ (easylist.txt: 30439) -.singlemuslim.com/affiliates/ -# ||singlehop.com/affiliates/$third-party (easylist.txt: 30438) -.singlehop.com/affiliates/ -# ||simplyfwd.com/?dn=*&pid=$subdocument (easylist.txt: 30437) -.simplyfwd.com/\?dn=.*&pid= -# ||simplifydigital.co.uk^*/widget_premium_bb.htm (easylist.txt: 30436) -.simplifydigital.co.uk/.*/widget_premium_bb\.htm -# ||sidekickunlock.net/banner/ (easylist.txt: 30435) -.sidekickunlock.net/banner/ -# ||shragle.com^*?ref= (easylist.txt: 30434) -.shragle.com/.*\?ref= -# ||shows-tv.net/codepopup.js (easylist.txt: 30433) -.shows-tv.net/codepopup\.js -# ||shorte.st^*/referral_banners/ (easylist.txt: 30432) -.shorte.st/.*/referral_banners/ -# ||shorte.st/link-converter.min.js (easylist.txt: 30431) -.shorte.st/link-converter\.min\.js -# ||shopping.com/sc/pac/sdc_widget_v2.0_proxy.js$third-party (easylist.txt: 30430) -.shopping.com/sc/pac/sdc_widget_v2\.0_proxy\.js -# ||shopilize.com^$third-party (easylist.txt: 30429) -.shopilize.com -# ||shopbrazos.com/widgets/ (easylist.txt: 30428) -.shopbrazos.com/widgets/ -# ||shop4tech.com^*/banner/ (easylist.txt: 30427) -.shop4tech.com/.*/banner/ -# ||shop-top1000.com/images/ (easylist.txt: 30426) -.shop-top1000.com/images/ -# ||sharingzone.net/images/banner$third-party (easylist.txt: 30425) -.sharingzone.net/images/banner -# ||shariahprogram.ca/banners/ (easylist.txt: 30424) -.shariahprogram.ca/banners/ -# ||shareflare.net/images/$third-party (easylist.txt: 30423) -.shareflare.net/images/ -# ||shaadi.com^*/get-html-banner.php? (easylist.txt: 30422) -.shaadi.com/.*/get-html-banner\.php\? -# ||shaadi.com^*/get-banner.php? (easylist.txt: 30421) -.shaadi.com/.*/get-banner\.php\? -# ||sfstatic.com^*/js/fl.js$third-party (easylist.txt: 30420) -.sfstatic.com/.*/js/fl\.js -# ||sfm-offshore.com/images/banners/ (easylist.txt: 30419) -.sfm-offshore.com/images/banners/ -# ||sfimg.com/SFIBanners/ (easylist.txt: 30418) -.sfimg.com/SFIBanners/ -# ||sfimg.com/images/banners/ (easylist.txt: 30417) -.sfimg.com/images/banners/ -# ||sfcdn.in/sailfish/$script (easylist.txt: 30416) -.sfcdn.in/sailfish/ -# ||settleships.com^$third-party (easylist.txt: 30415) -.settleships.com -# ||service.smscoin.com/js/sendpic.js (easylist.txt: 30413) -.service.smscoin.com/js/sendpic\.js -# ||server4.pro/images/banner.jpg (easylist.txt: 30412) -.server4.pro/images/banner\.jpg -# ||server.freegamesall.com^$third-party (easylist.txt: 30411) -.server.freegamesall.com -# ||servedby.yell.com^$third-party (easylist.txt: 30410) -.servedby.yell.com -# ||servedby.keygamesnetwork.com^ (easylist.txt: 30409) -.servedby.keygamesnetwork.com -# ||selectperformers.com/images/elements/bannercolours/ (easylist.txt: 30408) -.selectperformers.com/images/elements/bannercolours/ -# ||selectperformers.com/images/a/ (easylist.txt: 30407) -.selectperformers.com/images/a/ -# ||seedsman.com/affiliate/$third-party (easylist.txt: 30406) -.seedsman.com/affiliate/ -# ||seedboxco.net/*.swf$third-party (easylist.txt: 30405) -.seedboxco.net/.*\.swf -# ||secureupload.eu/banners/ (easylist.txt: 30404) -.secureupload.eu/banners/ -# ||secureserver.net^*/event? (easylist.txt: 30403) -.secureserver.net/.*/event\? -# ||securep2p.com^$subdocument,third-party (easylist.txt: 30402) -.securep2p.com -# ||secretmedia.s3.amazonaws.com^ (easylist.txt: 30401) -.secretmedia.s3.amazonaws.com -# ||secondspin.com/twcontent/ (easylist.txt: 30400) -.secondspin.com/twcontent/ -# ||searchportal.information.com/?$third-party (easylist.txt: 30399) -.searchportal.information.com/\? -# ||scribol.com/txwidget$third-party (easylist.txt: 30398) -.scribol.com/txwidget -# ||screenconnect.com/miscellaneous/ScreenConnect-$image,third-party (easylist.txt: 30397) -.screenconnect.com/miscellaneous/ScreenConnect- -# ||scoopdragon.com/images/Goodgame-Empire-MPU.jpg (easylist.txt: 30396) -.scoopdragon.com/images/Goodgame-Empire-MPU\.jpg -# ||sciremedia.tv/images/banners/ (easylist.txt: 30395) -.sciremedia.tv/images/banners/ -# ||sciencecareers.org/widget/$third-party (easylist.txt: 30394) -.sciencecareers.org/widget/ -# ||schurzdigital.com/deals/widget/ (easylist.txt: 30393) -.schurzdigital.com/deals/widget/ -# ||schenkelklopfer.org^*pop.js (easylist.txt: 30392) -.schenkelklopfer.org/.*pop\.js -# ||satshop.tv/images/banner/$third-party (easylist.txt: 30391) -.satshop.tv/images/banner/ -# ||sat-shop.co.uk/images/$third-party (easylist.txt: 30390) -.sat-shop.co.uk/images/ -# ||salemwebnetwork.com/Stations/images/SiteWrapper/ (easylist.txt: 30389) -.salemwebnetwork.com/Stations/images/SiteWrapper/ -# ||salefile.googlecode.com^$third-party (easylist.txt: 30388) -.salefile.googlecode.com -# ||sailthru.com^*/horizon.js (easylist.txt: 30387) -.sailthru.com/.*/horizon\.js -# ||safarinow.com/affiliate-zone/ (easylist.txt: 30386) -.safarinow.com/affiliate-zone/ -# ||s3.amazonaws.com/draftset/banners/ (easylist.txt: 30385) -.s3.amazonaws.com/draftset/banners/ -# ||s1now.com^*/takeovers/ (easylist.txt: 30384) -.s1now.com/.*/takeovers/ -# ||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com^$third-party (easylist.txt: 30383) -.s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com -# ||s1.wp.com^$subdocument,third-party (easylist.txt: 30382) -.s1.wp.com -# ||s.cxt.ms^$third-party (easylist.txt: 30381) -.s.cxt.ms -# ||s-yoolk-billboard-assets.yoolk.com^ (easylist.txt: 30380) -.s-yoolk-billboard-assets.yoolk.com -# ||s-yoolk-banner-assets.yoolk.com^ (easylist.txt: 30379) -.s-yoolk-banner-assets.yoolk.com -# ||s-assets.tp-cdn.com/widgets/*/vwid/*.html? (easylist.txt: 30378) -.s-assets.tp-cdn.com/widgets/.*/vwid/.*\.html\? -# ||rya.rockyou.com^$third-party (easylist.txt: 30377) -.rya.rockyou.com -# ||russian-dreams.net/static/js/$third-party (easylist.txt: 30376) -.russian-dreams.net/static/js/ -# ||runerich.com/images/sty_img/runerich.gif (easylist.txt: 30374) -.runerich.com/images/sty_img/runerich\.gif -# ||rover.ebay.com^*&adtype=$third-party (easylist.txt: 30373) -.rover.ebay.com/.*&adtype= -# ||rotator.tradetracker.net^ (easylist.txt: 30372) -.rotator.tradetracker.net -# ||rotabanner.kulichki.net^ (easylist.txt: 30371) -.rotabanner.kulichki.net -# ||roshantv.com/adad. (easylist.txt: 30370) -.roshantv.com/adad\. -# ||roshansports.com/iframe.php (easylist.txt: 30369) -.roshansports.com/iframe\.php -# ||roia.hutchmedia.com^$third-party (easylist.txt: 30368) -.roia.hutchmedia.com -# ||roadrecord.co.uk/widget.js? (easylist.txt: 30367) -.roadrecord.co.uk/widget\.js\? -# ||roadcomponentsdb.com^$subdocument,third-party (easylist.txt: 30366) -.roadcomponentsdb.com -# ||richmedia.yahoo.com^$third-party (easylist.txt: 30365) -.richmedia.yahoo.com -# ||ribbon.india.com^$third-party (easylist.txt: 30364) -.ribbon.india.com -# ||rewards1.com/images/referralbanners/$third-party (easylist.txt: 30363) -.rewards1.com/images/referralbanners/ -# ||revealads.appspot.com^ (easylist.txt: 30362) -.revealads.appspot.com -# ||resources.heavenmedia.net/selection.php? (easylist.txt: 30361) -.resources.heavenmedia.net/selection\.php\? -# ||res3.feedsportal.com^ (easylist.txt: 30360) -.res3.feedsportal.com -# ||relink.us/images/$third-party (easylist.txt: 30358) -.relink.us/images/ -# ||rehost.to/?ref= (easylist.txt: 30357) -.rehost.to/\?ref= -# ||regnow.com/vendor/ (easylist.txt: 30356) -.regnow.com/vendor/ -# ||regmyudid.com^*/index.html$third-party (easylist.txt: 30355) -.regmyudid.com/.*/index\.html -# ||redtram.com^$script,third-party (easylist.txt: 30354) -.redtram.com -# ||redflagdeals.com/dealoftheday/widgets/$third-party (easylist.txt: 30353) -.redflagdeals.com/dealoftheday/widgets/ -# ||redbeacon.com/widget/$third-party (easylist.txt: 30352) -.redbeacon.com/widget/ -# ||red-tube.com^*.php?wmid=*&kamid=*&wsid=$third-party (easylist.txt: 30351) -.red-tube.com/.*\.php\?wmid=.*&kamid=.*&wsid= -# ||realwritingjobs.com^*/banners/ (easylist.txt: 30350) -.realwritingjobs.com/.*/banners/ -# ||readme.ru/informer/$third-party (easylist.txt: 30349) -.readme.ru/informer/ -# ||rdio.com/media/images/affiliate/$third-party (easylist.txt: 30348) -.rdio.com/media/images/affiliate/ -# ||rcm*.amazon.$third-party (easylist.txt: 30347) -.rcm*./.*\.amazon\. -.rcm*.amazon.*. -# ||rbth.ru/widget/$third-party (easylist.txt: 30346) -.rbth.ru/widget/ -# ||ratesupermarket.ca/widgets/ (easylist.txt: 30345) -.ratesupermarket.ca/widgets/ -# ||rapidjazz.com/banner_rotation/ (easylist.txt: 30344) -.rapidjazz.com/banner_rotation/ -# ||rapidgator.net/images/pics/*_300%D1%85250_ (easylist.txt: 30343) -.rapidgator.net/images/pics/.*_300%D1%85250_ -# ||radley.co.uk^*/Affiliate/ (easylist.txt: 30342) -.radley.co.uk/.*/Affiliate/ -# ||radiotown.com/splash/images/*_960x600_ (easylist.txt: 30341) -.radiotown.com/splash/images/.*_960x600_ -# ||radioshack.com^*/promo/ (easylist.txt: 30340) -.radioshack.com/.*/promo/ -# ||radioreference.com/sm/300x75_v3.jpg (easylist.txt: 30339) -.radioreference.com/sm/300x75_v3\.jpg -# ||radiocentre.ca/randomimages/$third-party (easylist.txt: 30338) -.radiocentre.ca/randomimages/ -# ||rack.bauermedia.co.uk^ (easylist.txt: 30333) -.rack.bauermedia.co.uk -# ||racebets.com/media.php? (easylist.txt: 30332) -.racebets.com/media\.php\? -# ||quirk.biz/webtracking/ (easylist.txt: 30331) -.quirk.biz/webtracking/ -# ||quickflix*.gridserver.com^$third-party (easylist.txt: 30330) -.quickflix*./.*\.gridserver\.com[^\w%.-] -.quickflix*.gridserver.com -# ||qualoo.net/now/interstitial/ (easylist.txt: 30329) -.qualoo.net/now/interstitial/ -# ||putlocker.com/images/banners/$third-party (easylist.txt: 30328) -.putlocker.com/images/banners/ -# ||purevpn.com/affiliates/ (easylist.txt: 30327) -.purevpn.com/affiliates/ -# ||puntersparadise.com.au/banners/ (easylist.txt: 30326) -.puntersparadise.com.au/banners/ -# ||pubs.hiddennetwork.com^ (easylist.txt: 30325) -.pubs.hiddennetwork.com -# ||public.porn.fr^$third-party (easylist.txt: 30324) -.public.porn.fr -# ||pub.sapo.pt/vast.php$object-subrequest (easylist.txt: 30323) -.pub.sapo.pt/vast\.php -# ||pub.dreamboxcart.com^$third-party (easylist.txt: 30322) -.pub.dreamboxcart.com -# ||pub.betclick.com^ (easylist.txt: 30321) -.pub.betclick.com -# ||pub.aujourdhui.com^$third-party (easylist.txt: 30320) -.pub.aujourdhui.com -# ||proxysolutions.net/affiliates/ (easylist.txt: 30319) -.proxysolutions.net/affiliates/ -# ||proxyroll.com/proxybanner.php (easylist.txt: 30318) -.proxyroll.com/proxybanner\.php -# ||proxynoid.com/images/referrals/ (easylist.txt: 30317) -.proxynoid.com/images/referrals/ -# ||proxy.org/blasts.gif (easylist.txt: 30316) -.proxy.org/blasts\.gif -# ||proxies2u.com/images/btn/$third-party (easylist.txt: 30315) -.proxies2u.com/images/btn/ -# ||propgoluxury.com/partners/$third-party (easylist.txt: 30314) -.propgoluxury.com/partners/ -# ||promotions.iasbet.com^ (easylist.txt: 30313) -.promotions.iasbet.com -# ||promote.pair.com^ (easylist.txt: 30312) -.promote.pair.com -# ||promos.fling.com^ (easylist.txt: 30311) -.promos.fling.com -# ||promo.musicradio.com^ (easylist.txt: 30310) -.promo.musicradio.com -# ||pro-gmedia.com^*/skins/ (easylist.txt: 30308) -.pro-gmedia.com/.*/skins/ -# ||prizerebel.com/images/banner$third-party (easylist.txt: 30307) -.prizerebel.com/images/banner -# ||privatewifi.com/swf/banners/ (easylist.txt: 30306) -.privatewifi.com/swf/banners/ -# ||print2webcorp.com/widgetcontent/ (easylist.txt: 30305) -.print2webcorp.com/widgetcontent/ -# ||primeloopstracking.com/affil/ (easylist.txt: 30304) -.primeloopstracking.com/affil/ -# ||priceinfo.comuv.com^ (easylist.txt: 30303) -.priceinfo.comuv.com -# ||pricegrabber.com/mlink3.php?$third-party (easylist.txt: 30302) -.pricegrabber.com/mlink3\.php\? -# ||pricegrabber.com/mlink.php?$third-party (easylist.txt: 30301) -.pricegrabber.com/mlink\.php\? -# ||pricegrabber.com/export_feeds.php?$third-party (easylist.txt: 30300) -.pricegrabber.com/export_feeds\.php\? -# ||pricegrabber.com/cb_table.php$third-party (easylist.txt: 30299) -.pricegrabber.com/cb_table\.php -# ||pricedinfo.com^$third-party (easylist.txt: 30298) -.pricedinfo.com -# ||premium.naturalnews.tv^$third-party (easylist.txt: 30297) -.premium.naturalnews.tv -# ||premium-template.com/banner/$third-party (easylist.txt: 30296) -.premium-template.com/banner/ -# ||ppc-coach.com/jamaffiliates/ (easylist.txt: 30295) -.ppc-coach.com/jamaffiliates/ -# ||postaffiliatepro.com^*/banners/$image (easylist.txt: 30294) -.postaffiliatepro.com/.*/banners/ -# ||post.rmbn.ru^$third-party (easylist.txt: 30293) -.post.rmbn.ru -# ||pornturbo.com/tmarket.php (easylist.txt: 30292) -.pornturbo.com/tmarket\.php -# ||pops.freeze.com^$third-party (easylist.txt: 30291) -.pops.freeze.com -# ||popmog.com^$third-party (easylist.txt: 30290) -.popmog.com -# ||popeoftheplayers.eu/ad (easylist.txt: 30289) -.popeoftheplayers.eu/ad -# ||pokerstars.com/euro_bnrs/ (easylist.txt: 30288) -.pokerstars.com/euro_bnrs/ -# ||pokerstars.com/?source=$subdocument,third-party (easylist.txt: 30287) -.pokerstars.com/\?source= -# ||pokersavvy.com^*/banners/ (easylist.txt: 30286) -.pokersavvy.com/.*/banners/ -# ||pokerroomkings.com^*/banner/$third-party (easylist.txt: 30285) -.pokerroomkings.com/.*/banner/ -# ||pokerjunkie.com/rss/ (easylist.txt: 30284) -.pokerjunkie.com/rss/ -# ||pm.web.com^$third-party (easylist.txt: 30283) -.pm.web.com -# ||plus.net/images/referrals/*_banner_$third-party (easylist.txt: 30282) -.plus.net/images/referrals/.*_banner_ -# ||plexidigest.com/plexidigest-300x300.jpg (easylist.txt: 30280) -.plexidigest.com/plexidigest-300x300\.jpg -# ||playfooty.tv/jojo.html (easylist.txt: 30279) -.playfooty.tv/jojo\.html -# ||player.screenwavemedia.com^*/ova-jw.swf$object-subrequest (easylist.txt: 30278) -.player.screenwavemedia.com/.*/ova-jw\.swf -# ||playata.myvideo.de^$subdocument,third-party (easylist.txt: 30277) -.playata.myvideo.de -# ||play-asia.com/paos-$third-party (easylist.txt: 30276) -.play-asia.com/paos- -# ||pics.firstload.de^$third-party (easylist.txt: 30275) -.pics.firstload.de -# ||picoasis.net/3xlayer.htm (easylist.txt: 30274) -.picoasis.net/3xlayer\.htm -# ||pic.pbsrc.com/hpto/ (easylist.txt: 30273) -.pic.pbsrc.com/hpto/ -# ||pianoteq.com/images/banners/ (easylist.txt: 30272) -.pianoteq.com/images/banners/ -# ||pianobuyer.com/pianoworld/ (easylist.txt: 30271) -.pianobuyer.com/pianoworld/ -# ||phonephotographytricks.com/images/banners/ (easylist.txt: 30270) -.phonephotographytricks.com/images/banners/ -# ||ph.hillcountrytexas.com/imp.php?$third-party (easylist.txt: 30268) -.ph.hillcountrytexas.com/imp\.php\? -# ||perfectmoney.com/img/banners/$third-party (easylist.txt: 30267) -.perfectmoney.com/img/banners/ -# ||perfectforex.biz/images/*x$third-party (easylist.txt: 30266) -.perfectforex.biz/images/.*x -# ||pearlriverusa.com/images/banner/ (easylist.txt: 30265) -.pearlriverusa.com/images/banner/ -# ||pdl.viaplay.com/commercials/$third-party (easylist.txt: 30264) -.pdl.viaplay.com/commercials/ -# ||pcmall.co.za/affiliates/ (easylist.txt: 30263) -.pcmall.co.za/affiliates/ -# ||pcash.imlive.com^$third-party (easylist.txt: 30262) -.pcash.imlive.com -# ||payza.com/images/banners/ (easylist.txt: 30261) -.payza.com/images/banners/ -# ||paytel.co.za/code/ref (easylist.txt: 30260) -.paytel.co.za/code/ref -# ||partners.xpertmarket.com^ (easylist.txt: 30259) -.partners.xpertmarket.com -# ||partners.vouchedfor.co.uk^ (easylist.txt: 30258) -.partners.vouchedfor.co.uk -# ||partners.sportingbet.com.au^ (easylist.txt: 30257) -.partners.sportingbet.com.au -# ||partners.rochen.com^ (easylist.txt: 30256) -.partners.rochen.com -# ||partners.optiontide.com^ (easylist.txt: 30255) -.partners.optiontide.com -# ||partners.fshealth.com^ (easylist.txt: 30254) -.partners.fshealth.com -# ||partners.dogtime.com/network/ (easylist.txt: 30253) -.partners.dogtime.com/network/ -# ||partners.betus.com^$third-party (easylist.txt: 30252) -.partners.betus.com -# ||partnerads1.ysm.yahoo.com^ (easylist.txt: 30251) -.partnerads1.ysm.yahoo.com -# ||partnerads.ysm.yahoo.com^ (easylist.txt: 30250) -.partnerads.ysm.yahoo.com -# ||partner.premiumdomains.com^ (easylist.txt: 30249) -.partner.premiumdomains.com -# ||partner.e-conomic.com^$third-party (easylist.txt: 30248) -.partner.e-conomic.com -# ||partner.catchy.com^ (easylist.txt: 30247) -.partner.catchy.com -# ||partner.bargaindomains.com^ (easylist.txt: 30246) -.partner.bargaindomains.com -# ||partner.alloy.com^$third-party (easylist.txt: 30245) -.partner.alloy.com -# ||pan.dogster.com^$third-party (easylist.txt: 30244) -.pan.dogster.com -# ||paidinvite.com/promo/ (easylist.txt: 30243) -.paidinvite.com/promo/ -# ||pagerage.com^$subdocument,third-party (easylist.txt: 30242) -.pagerage.com -# ||pagead2.googlesyndication.com^$~object-subrequest (easylist.txt: 30241) -.pagead2.googlesyndication.com -# ||padsdel.com^$third-party (easylist.txt: 30240) -.padsdel.com -# ||p.pw/banners/$third-party (easylist.txt: 30239) -.p.pw/banners/ -# ||oxygenboutique.com/Linkshare/ (easylist.txt: 30238) -.oxygenboutique.com/Linkshare/ -# ||ox-i.cordillera.tv^ (easylist.txt: 30237) -.ox-i.cordillera.tv -# ||ovpn.to/ovpn.to/banner/ (easylist.txt: 30236) -.ovpn.to/ovpn\.to/banner/ -# ||overseasradio.com/affbanner.php? (easylist.txt: 30235) -.overseasradio.com/affbanner\.php\? -# ||outdoorhub.com/js/_bookends.min.js (easylist.txt: 30234) -.outdoorhub.com/js/_bookends\.min\.js -# ||osobnosti.cz/images/casharena_ (easylist.txt: 30233) -.osobnosti.cz/images/casharena_ -# ||oriongadgets.com^*/banners/ (easylist.txt: 30232) -.oriongadgets.com/.*/banners/ -# ||origin.getprice.com.au/widgetnewssmall.aspx (easylist.txt: 30231) -.origin.getprice.com.au/widgetnewssmall\.aspx -# ||origin.getprice.com.au/WidgetNews.aspx (easylist.txt: 30230) -.origin.getprice.com.au/WidgetNews\.aspx -# ||organicprospects.com^*/banners/ (easylist.txt: 30229) -.organicprospects.com/.*/banners/ -# ||optimus-pm.com^*_300-250.jpg (easylist.txt: 30228) -.optimus-pm.com/.*_300-250\.jpg -# ||oovoo.com^*/banners/ (easylist.txt: 30227) -.oovoo.com/.*/banners/ -# ||onegameplace.com/iframe.php$third-party (easylist.txt: 30226) -.onegameplace.com/iframe\.php -# ||onecache.com/banner_ (easylist.txt: 30225) -.onecache.com/banner_ -# ||on.maxspeedcdn.com^ (easylist.txt: 30224) -.on.maxspeedcdn.com -# ||ojooo.com^*/banner_$third-party (easylist.txt: 30223) -.ojooo.com/.*/banner_ -# ||ojooo.com/register_f/$third-party (easylist.txt: 30222) -.ojooo.com/register_f/ -# ||oilofasia.com/images/banners/ (easylist.txt: 30221) -.oilofasia.com/images/banners/ -# ||office.eteachergroup.com/leads/$third-party (easylist.txt: 30220) -.office.eteachergroup.com/leads/ -# ||offerssyndication.appspot.com^$third-party (easylist.txt: 30219) -.offerssyndication.appspot.com -# ||offers-service.cbsinteractive.com^$third-party (easylist.txt: 30218) -.offers-service.cbsinteractive.com -# ||odin.goo.mx^ (easylist.txt: 30217) -.odin.goo.mx -# ||ocp.cbs.com/pacific/request.jsp? (easylist.txt: 30216) -.ocp.cbs.com/pacific/request\.jsp\? -# ||oclasrv.comindex-2.htmlapu.php^ (easylist.txt: 30215) -.oclasrv.comindex-2.htmlapu.php -# ||obox-design.com/affiliate-banners/ (easylist.txt: 30214) -.obox-design.com/affiliate-banners/ -# ||oasap.com/images/affiliate/ (easylist.txt: 30213) -.oasap.com/images/affiliate/ -# ||o2live.com^$third-party (easylist.txt: 30212) -.o2live.com -# ||nzpages.co.nz^*/banners/ (easylist.txt: 30211) -.nzpages.co.nz/.*/banners/ -# ||nwadealpiggy.com/widgets/ (easylist.txt: 30210) -.nwadealpiggy.com/widgets/ -# ||numb.hotshare.biz^$third-party (easylist.txt: 30209) -.numb.hotshare.biz -# ||nude.mk/images/$third-party (easylist.txt: 30208) -.nude.mk/images/ -# ||ntnd.net^*/store-buttons/ (easylist.txt: 30207) -.ntnd.net/.*/store-buttons/ -# ||nster.com/tpl/this/js/popnster.js (easylist.txt: 30206) -.nster.com/tpl/this/js/popnster\.js -# ||novadune.com^$third-party (easylist.txt: 30205) -.novadune.com -# ||nocookie.net^*/wikiasearchads.js (easylist.txt: 30204) -.nocookie.net/.*/wikiasearchads\.js -# ||nlsl.about.com/img?$third-party (easylist.txt: 30203) -.nlsl.about.com/img\? -# ||nitropdf.com/graphics/promo/$third-party (easylist.txt: 30202) -.nitropdf.com/graphics/promo/ -# ||nimblecommerce.com/widget.action? (easylist.txt: 30201) -.nimblecommerce.com/widget\.action\? -# ||newware.net/home/newware-sm.png$third-party (easylist.txt: 30200) -.newware.net/home/newware-sm\.png -# ||newware.net/home/banner$third-party (easylist.txt: 30199) -.newware.net/home/banner -# ||news-whistleout.s3.amazonaws.com^$third-party (easylist.txt: 30198) -.news-whistleout.s3.amazonaws.com -# ||networkice.com^$subdocument,third-party (easylist.txt: 30197) -.networkice.com -# ||network.business.com^ (easylist.txt: 30196) -.network.business.com -# ||network.aufeminin.com^ (easylist.txt: 30195) -.network.aufeminin.com -# ||nettvplus.com/images/banner_ (easylist.txt: 30194) -.nettvplus.com/images/banner_ -# ||netdigix.com/google_banners/ (easylist.txt: 30190) -.netdigix.com/google_banners/ -# ||nesgamezone.com/syndicate? (easylist.txt: 30189) -.nesgamezone.com/syndicate\? -# ||neogames-tech.com/resources/genericbanners/ (easylist.txt: 30188) -.neogames-tech.com/resources/genericbanners/ -# ||nanoinvestgroup.com/images/banner*.gif (easylist.txt: 30186) -.nanoinvestgroup.com/images/banner.*\.gif -# ||nanobrokers.com/img/banner_ (easylist.txt: 30185) -.nanobrokers.com/img/banner_ -# ||namecheap.com/graphics/linkus/$third-party (easylist.txt: 30184) -.namecheap.com/graphics/linkus/ -# ||n4g.com^*/IndieMonthSideBarWidget?$third-party (easylist.txt: 30183) -.n4g.com/.*/IndieMonthSideBarWidget\? -# ||n.nu/banner.js (easylist.txt: 30182) -.n.nu/banner\.js -# ||myvi.ru/feed/$object-subrequest (easylist.txt: 30180) -.myvi.ru/feed/ -# ||myusenet.net/promo.cgi? (easylist.txt: 30179) -.myusenet.net/promo\.cgi\? -# ||mytrafficstrategy.com/images/$third-party (easylist.txt: 30178) -.mytrafficstrategy.com/images/ -# ||myspace.com/play/myspace/*&locationId$third-party (easylist.txt: 30177) -.myspace.com/play/myspace/.*&locationId -# ||mylife.com/partner/$third-party (easylist.txt: 30176) -.mylife.com/partner/ -# ||myhpf.co.uk/banners/ (easylist.txt: 30175) -.myhpf.co.uk/banners/ -# ||myfreeshares.com/120x60b.gif (easylist.txt: 30174) -.myfreeshares.com/120x60b\.gif -# ||myfreeresources.com/getimg.php?$third-party (easylist.txt: 30173) -.myfreeresources.com/getimg\.php\? -# ||myfreepaysite.info^*.gif$third-party (easylist.txt: 30172) -.myfreepaysite.info/.*\.gif -# ||myezbz.com/marketplace/widget/$third-party (easylist.txt: 30171) -.myezbz.com/marketplace/widget/ -# ||mydownloader.net/banners/$third-party (easylist.txt: 30170) -.mydownloader.net/banners/ -# ||mybdhost.com/imgv2/$third-party (easylist.txt: 30168) -.mybdhost.com/imgv2/ -# ||myalter1tv.altervista.org^$subdocument,third-party (easylist.txt: 30167) -.myalter1tv.altervista.org -# ||my-dirty-hobby.com/track/$subdocument,third-party (easylist.txt: 30166) -.my-dirty-hobby.com/track/ -# ||my-best-jobs.com^$subdocument,third-party (easylist.txt: 30165) -.my-best-jobs.com -# ||musik-a-z.com^$subdocument,third-party (easylist.txt: 30164) -.musik-a-z.com -# ||musicmemorization.com/images/$third-party (easylist.txt: 30163) -.musicmemorization.com/images/ -# ||multivizyon.tv^*/flysatbanner.swf (easylist.txt: 30162) -.multivizyon.tv/.*/flysatbanner\.swf -# ||multisitelive.com^*/banner_ (easylist.txt: 30161) -.multisitelive.com/.*/banner_ -# ||mto.mediatakeout.com^$third-party (easylist.txt: 30160) -.mto.mediatakeout.com -# ||mt.sellingrealestatemalta.com^$third-party (easylist.txt: 30159) -.mt.sellingrealestatemalta.com -# ||msnbcmedia.msn.com^*/sponsors/ (easylist.txt: 30158) -.msnbcmedia.msn.com/.*/sponsors/ -# ||msm.mysavings.com^*.asp?afid=$third-party (easylist.txt: 30157) -.msm.mysavings.com/.*\.asp\?afid= -# ||msecnd.net/scripts/*.pop.$script (easylist.txt: 30156) -.msecnd.net/scripts/.*\.pop\. -# ||mrskincdn.com/data/uploader/affiliate/$script (easylist.txt: 30155) -.mrskincdn.com/data/uploader/affiliate/ -# ||mrc.org^*/take-over-charlotte300x250.gif (easylist.txt: 30154) -.mrc.org/.*/take-over-charlotte300x250\.gif -# ||mrc.org^*/Collusion_Banner300x250.jpg (easylist.txt: 30153) -.mrc.org/.*/Collusion_Banner300x250\.jpg -# ||mrc.org/sites/default/files/uploads/images/Collusion_Banner (easylist.txt: 30152) -.mrc.org/sites/default/files/uploads/images/Collusion_Banner -# ||mp3ix.com^$third-party (easylist.txt: 30151) -.mp3ix.com -# ||mozo-widgets.f2.com.au^ (easylist.txt: 30150) -.mozo-widgets.f2.com.au -# ||mosso.com^*/banners/ (easylist.txt: 30149) -.mosso.com/.*/banners/ -# ||moosify.com/widgets/explorer/?partner= (easylist.txt: 30148) -.moosify.com/widgets/explorer/\?partner= -# ||moneywise.co.uk/affiliate/ (easylist.txt: 30147) -.moneywise.co.uk/affiliate/ -# ||moneycontrol.com/share-market-game/$third-party (easylist.txt: 30146) -.moneycontrol.com/share-market-game/ -# ||moneycontrol.co.in^*PopUnder.js (easylist.txt: 30145) -.moneycontrol.co.in/.*PopUnder\.js -# ||mol.im/i/pix/ebay/ (easylist.txt: 30144) -.mol.im/i/pix/ebay/ -# ||mobyler.com/img/banner/ (easylist.txt: 30143) -.mobyler.com/img/banner/ -# ||mobilemetrics.appspot.com^$third-party (easylist.txt: 30142) -.mobilemetrics.appspot.com -# ||mnginteractive.com^*/dartinclude.js (easylist.txt: 30141) -.mnginteractive.com/.*/dartinclude\.js -# ||mmwebhandler.888.com^$third-party (easylist.txt: 30140) -.mmwebhandler.888.com -# ||mmosale.com/baner_images/$third-party (easylist.txt: 30139) -.mmosale.com/baner_images/ -# ||mmo4rpg.com^*.gif|$third-party (easylist.txt: 30138) -.mmo4rpg.com/.*\.gif$ -# ||mmdcash.com/mmdcash01.gif (easylist.txt: 30137) -.mmdcash.com/mmdcash01\.gif -# ||mlive.com/js/oas/ (easylist.txt: 30136) -.mlive.com/js/oas/ -# ||mkini.net/banners/ (easylist.txt: 30135) -.mkini.net/banners/ -# ||missnowmrs.com/images/banners/ (easylist.txt: 30134) -.missnowmrs.com/images/banners/ -# ||millionaires-club-international.com/banner/ (easylist.txt: 30133) -.millionaires-club-international.com/banner/ -# ||mightydeals.s3.amazonaws.com/md_adv/ (easylist.txt: 30131) -.mightydeals.s3.amazonaws.com/md_adv/ -# ||mightydeals.com/widgets/$third-party (easylist.txt: 30130) -.mightydeals.com/widgets/ -# ||mightydeals.com/widget?$third-party (easylist.txt: 30129) -.mightydeals.com/widget\? -# ||mightyape.co.nz/stuff/$third-party (easylist.txt: 30128) -.mightyape.co.nz/stuff/ -# ||microsoft.com^*/community/images/windowsintune/$third-party (easylist.txt: 30127) -.microsoft.com/.*/community/images/windowsintune/ -# ||microsoft.com^*/bannerrotator/$third-party (easylist.txt: 30126) -.microsoft.com/.*/bannerrotator/ -# ||mgprofit.com/images/*x$third-party (easylist.txt: 30125) -.mgprofit.com/images/.*x -# ||mgm.com/www/$third-party (easylist.txt: 30124) -.mgm.com/www/ -# ||mfeed.newzfind.com^$third-party (easylist.txt: 30123) -.mfeed.newzfind.com -# ||mfcdn.net/store/spotlight/ (easylist.txt: 30122) -.mfcdn.net/store/spotlight/ -# ||metroland.com/wagjag/ (easylist.txt: 30121) -.metroland.com/wagjag/ -# ||metaboli.fr^*/adgude_$third-party (easylist.txt: 30120) -.metaboli.fr/.*/adgude_ -# ||merdb.org/js/$script,third-party (easylist.txt: 30119) -.merdb.org/js/ -# ||meraad2.blogspot.com^$third-party (easylist.txt: 30118) -.meraad2.blogspot.com -# ||memepix.com/spark.php? (easylist.txt: 30117) -.memepix.com/spark\.php\? -# ||megalivestream.net/pub.js (easylist.txt: 30116) -.megalivestream.net/pub\.js -# ||mediaspanonline.com^*-Takeover_ (easylist.txt: 30115) -.mediaspanonline.com/.*-Takeover_ -# ||mediaspanonline.com^*-Takeover- (easylist.txt: 30114) -.mediaspanonline.com/.*-Takeover- -# ||mediaserver.digitec.ch^$subdocument,third-party (easylist.txt: 30113) -.mediaserver.digitec.ch -# ||mediaplex.com/ad/js/$third-party (easylist.txt: 30112) -.mediaplex.com/ad/js/ -# ||mediaplex.com/ad/fm/$third-party (easylist.txt: 30111) -.mediaplex.com/ad/fm/ -# ||mediaplex.com/ad/bn/$third-party (easylist.txt: 30110) -.mediaplex.com/ad/bn/ -# ||mediaon.com/moneymoney/ (easylist.txt: 30109) -.mediaon.com/moneymoney/ -# ||media.onlineteachers.co.in^$third-party (easylist.txt: 30108) -.media.onlineteachers.co.in -# ||media.netrefer.com^$third-party (easylist.txt: 30107) -.media.netrefer.com -# ||media.myspace.com/play/*/featured-videos-$third-party (easylist.txt: 30106) -.media.myspace.com/play/.*/featured-videos- -# ||media.enimgs.net/brand/files/escalatenetwork/ (easylist.txt: 30105) -.media.enimgs.net/brand/files/escalatenetwork/ -# ||media.domainking.ng/media/$third-party (easylist.txt: 30104) -.media.domainking.ng/media/ -# ||media.complex.com/videos/prerolls/ (easylist.txt: 30103) -.media.complex.com/videos/prerolls/ -# ||media-toolbar.com^$third-party (easylist.txt: 30102) -.media-toolbar.com -# ||mdpcdn.com^*/gpt/ (easylist.txt: 30101) -.mdpcdn.com/.*/gpt/ -# ||mcclatchyinteractive.com/creative/ (easylist.txt: 30100) -.mcclatchyinteractive.com/creative/ -# ||mcc.godaddy.com/park/$subdocument,third-party (easylist.txt: 30099) -.mcc.godaddy.com/park/ -# ||mb.zam.com^ (easylist.txt: 30098) -.mb.zam.com -# ||mb.marathonbet.com^$third-party (easylist.txt: 30097) -.mb.marathonbet.com -# ||mb-hostservice.de/banner_ (easylist.txt: 30096) -.mb-hostservice.de/banner_ -# ||mazda.com.au/banners/ (easylist.txt: 30095) -.mazda.com.au/banners/ -# ||maximainvest.net^$image,third-party (easylist.txt: 30094) -.maximainvest.net -# ||matrixmails.com/images/$third-party (easylist.txt: 30093) -.matrixmails.com/images/ -# ||matchbin.com/javascripts/remote_widget.js (easylist.txt: 30092) -.matchbin.com/javascripts/remote_widget\.js -# ||match.com^*/prm/$third-party (easylist.txt: 30091) -.match.com/.*/prm/ -# ||mastiway.com/webimages/$third-party (easylist.txt: 30090) -.mastiway.com/webimages/ -# ||marketing.888.com^ (easylist.txt: 30088) -.marketing.888.com -# ||marinejobs.gr/images/marine_adv.gif (easylist.txt: 30087) -.marinejobs.gr/images/marine_adv\.gif -# ||mantra.com.au^*/campaigns/$third-party (easylist.txt: 30086) -.mantra.com.au/.*/campaigns/ -# ||mahndi.com/images/banner/ (easylist.txt: 30085) -.mahndi.com/images/banner/ -# ||magniwork.com/banner/ (easylist.txt: 30084) -.magniwork.com/banner/ -# ||magicmembers.com/img/mgm-125x125 (easylist.txt: 30083) -.magicmembers.com/img/mgm-125x125 -# ||magicaffiliateplugin.com/img/mga-125x125.gif (easylist.txt: 30082) -.magicaffiliateplugin.com/img/mga-125x125\.gif -# ||mads.aol.com^ (easylist.txt: 30081) -.mads.aol.com -# ||madisonlogic.com^$third-party (easylist.txt: 30080) -.madisonlogic.com -# ||lynku.com/partners/$third-party (easylist.txt: 30077) -.lynku.com/partners/ -# ||lygo.com/d/toolbar/sponsors/ (easylist.txt: 30075) -.lygo.com/d/toolbar/sponsors/ -# ||lumfile.com/lumimage/ourbanner/$third-party (easylist.txt: 30074) -.lumfile.com/lumimage/ourbanner/ -# ||luckyshare.net/images/banners/ (easylist.txt: 30073) -.luckyshare.net/images/banners/ -# ||luckygunner.com^*/banners/ (easylist.txt: 30072) -.luckygunner.com/.*/banners/ -# ||lucky-dating.net/banners/ (easylist.txt: 30071) -.lucky-dating.net/banners/ -# ||lucky-ace-casino.net/banners/ (easylist.txt: 30070) -.lucky-ace-casino.net/banners/ -# ||ltfm.ca/stats.php? (easylist.txt: 30069) -.ltfm.ca/stats\.php\? -# ||lp.ncdownloader.com^$third-party (easylist.txt: 30068) -.lp.ncdownloader.com -# ||lp.longtailvideo.com^*/adaptv*.swf (easylist.txt: 30067) -.lp.longtailvideo.com/.*/adaptv.*\.swf -# ||lowcountrymarketplace.com/widgets/$third-party (easylist.txt: 30066) -.lowcountrymarketplace.com/widgets/ -# ||lowbird.com/random/$third-party (easylist.txt: 30065) -.lowbird.com/random/ -# ||lottoelite.com/banners/$third-party (easylist.txt: 30064) -.lottoelite.com/banners/ -# ||loot.co.za^*/banners/$third-party (easylist.txt: 30063) -.loot.co.za/.*/banners/ -# ||loot.co.za/shop/product.jsp?$third-party (easylist.txt: 30062) -.loot.co.za/shop/product\.jsp\? -# ||loopnet.com^*/searchwidget.htm$third-party (easylist.txt: 30061) -.loopnet.com/.*/searchwidget\.htm -# ||longtailvideo.com^*/yume.swf (easylist.txt: 30060) -.longtailvideo.com/.*/yume\.swf -# ||longtailvideo.com^*/yume-h.swf (easylist.txt: 30059) -.longtailvideo.com/.*/yume-h\.swf -# ||longtailvideo.com^*/ova-$object-subrequest (easylist.txt: 30058) -.longtailvideo.com/.*/ova- -# ||longtailvideo.com^*/ltas-$object-subrequest,third-party (easylist.txt: 30057) -.longtailvideo.com/.*/ltas- -# ||longtailvideo.com^*/googima.swf$object-subrequest,third-party (easylist.txt: 30056) -.longtailvideo.com/.*/googima\.swf -# ||longtailvideo.com^*/googima-$object-subrequest (easylist.txt: 30055) -.longtailvideo.com/.*/googima- -# ||longtailvideo.com^*/adawe-$object-subrequest,third-party (easylist.txt: 30054) -.longtailvideo.com/.*/adawe- -# ||longtailvideo.com^*/adaptvjw5.swf$object-subrequest (easylist.txt: 30053) -.longtailvideo.com/.*/adaptvjw5\.swf -# ||longtailvideo.com^*/adaptvjw5-$object-subrequest (easylist.txt: 30052) -.longtailvideo.com/.*/adaptvjw5- -# ||longtailvideo.com*/ltas.swf (easylist.txt: 30051) -.longtailvideo.com*./(.*/)?ltas\.swf -# ||london24.com^*/mpu/ (easylist.txt: 30050) -.london24.com/.*/mpu/ -# ||localdata.eu/images/banners/ (easylist.txt: 30049) -.localdata.eu/images/banners/ -# ||llnwd.net/o28/assets/*-sponsored- (easylist.txt: 30048) -.llnwd.net/o28/assets/.*-sponsored- -# ||liveshows.com^*/live.js$third-party (easylist.txt: 30047) -.liveshows.com/.*/live\.js -# ||liveperson.com/affiliates/ (easylist.txt: 30046) -.liveperson.com/affiliates/ -# ||liutilities.com^*/affiliate/ (easylist.txt: 30044) -.liutilities.com/.*/affiliate/ -# ||liutilities.com/partners/$third-party (easylist.txt: 30043) -.liutilities.com/partners/ -# ||literatureandlatte.com/gfx/buynowaffiliate.jpg (easylist.txt: 30042) -.literatureandlatte.com/gfx/buynowaffiliate\.jpg -# ||litecoinkamikaze.com/assets/images/banner$third-party (easylist.txt: 30041) -.litecoinkamikaze.com/assets/images/banner -# ||lionheartdms.com^*/walmart_300.jpg (easylist.txt: 30040) -.lionheartdms.com/.*/walmart_300\.jpg -# ||linkedin.com/csp/dtag?$subdocument,third-party (easylist.txt: 30039) -.linkedin.com/csp/dtag\? -# ||linkbird.com/static/upload/*/banner/$third-party (easylist.txt: 30038) -.linkbird.com/static/upload/.*/banner/ -# ||link.link.ru^$third-party (easylist.txt: 30037) -.link.link.ru -# ||lijit.com/delivery/ (easylist.txt: 30036) -.lijit.com/delivery/ -# ||lijit.com/adif_px.php (easylist.txt: 30035) -.lijit.com/adif_px\.php -# ||lifestyle24h.com/reward/$third-party (easylist.txt: 30034) -.lifestyle24h.com/reward/ -# ||lg.com/in/cinema3d.jsp$subdocument,third-party (easylist.txt: 30033) -.lg.com/in/cinema3d\.jsp -# ||letters.coursekey.com/lettertemplates_$third-party (easylist.txt: 30032) -.letters.coursekey.com/lettertemplates_ -# ||letmewatchthis.ru/movies/linkbottom (easylist.txt: 30031) -.letmewatchthis.ru/movies/linkbottom -# ||lessemf.com/images/banner-$third-party (easylist.txt: 30030) -.lessemf.com/images/banner- -# ||lesmeilleurs-jeux.net/images/ban/$third-party (easylist.txt: 30029) -.lesmeilleurs-jeux.net/images/ban/ -# ||lego.com^*/affiliate/ (easylist.txt: 30028) -.lego.com/.*/affiliate/ -# ||legitonlinejobs.com/images/$third-party (easylist.txt: 30027) -.legitonlinejobs.com/images/ -# ||legaljobscentre.com/feed/jobad.aspx (easylist.txt: 30026) -.legaljobscentre.com/feed/jobad\.aspx -# ||leadsleap.com/widget/ (easylist.txt: 30025) -.leadsleap.com/widget/ -# ||leadsleap.com/images/banner_ (easylist.txt: 30024) -.leadsleap.com/images/banner_ -# ||leadintelligence.co.uk/in-text.js$third-party (easylist.txt: 30023) -.leadintelligence.co.uk/in-text\.js -# ||lawdepot.com/affiliate/$third-party (easylist.txt: 30022) -.lawdepot.com/affiliate/ -# ||lastlocation.com/images/banner (easylist.txt: 30021) -.lastlocation.com/images/banner -# ||lapi.ebay.com^$third-party (easylist.txt: 30020) -.lapi.ebay.com -# ||ladbrokes.com^*&aff_id= (easylist.txt: 30019) -.ladbrokes.com/.*&aff_id= -# ||l.yimg.com^*&partner=*&url= (easylist.txt: 30018) -.l.yimg.com/.*&partner=.*&url= -# ||kurtgeiger.com^*/linkshare/ (easylist.txt: 30017) -.kurtgeiger.com/.*/linkshare/ -# ||krillion.com^*/productoffers.js (easylist.txt: 30016) -.krillion.com/.*/productoffers\.js -# ||kraken.giantrealm.com^$third-party (easylist.txt: 30015) -.kraken.giantrealm.com -# ||kozmetikcerrahi.com/banner/ (easylist.txt: 30014) -.kozmetikcerrahi.com/banner/ -# ||kontera.com/javascript/lib/KonaLibInline.js$third-party (easylist.txt: 30013) -.kontera.com/javascript/lib/KonaLibInline\.js -# ||knorex.asia/static-firefly/ (easylist.txt: 30012) -.knorex.asia/static-firefly/ -# ||king.com^*/banners/ (easylist.txt: 30011) -.king.com/.*/banners/ -# ||keyword-winner.com/demo/images/ (easylist.txt: 30010) -.keyword-winner.com/demo/images/ -# ||keep2share.cc/images/i/00468x0060- (easylist.txt: 30009) -.keep2share.cc/images/i/00468x0060- -# ||kaltura.com^*/vastPlugin.swf$third-party (easylist.txt: 30008) -.kaltura.com/.*/vastPlugin\.swf -# ||kallout.com^*.php?id= (easylist.txt: 30007) -.kallout.com/.*\.php\?id= -# ||kaango.com/fecustomwidgetdisplay? (easylist.txt: 30006) -.kaango.com/fecustomwidgetdisplay\? -# ||k2team.kyiv.ua^ (easylist.txt: 30005) -.k2team.kyiv.ua -# ||k.co.il/iefilter.html (easylist.txt: 30004) -.k.co.il/iefilter\.html -# ||k-po.com/img/ebay.png$third-party (easylist.txt: 30003) -.k-po.com/img/ebay\.png -# ||jvzoo.com/assets/widget/$third-party (easylist.txt: 30002) -.jvzoo.com/assets/widget/ -# ||justclicktowatch.to/jstp.js (easylist.txt: 30001) -.justclicktowatch.to/jstp\.js -# ||junction.co.za/widget/$third-party (easylist.txt: 30000) -.junction.co.za/widget/ -# ||jugglu.com/content/widgets/$third-party (easylist.txt: 29999) -.jugglu.com/content/widgets/ -# ||jubimax.com/banner_images/ (easylist.txt: 29998) -.jubimax.com/banner_images/ -# ||jsrdn.com/s/1.js (easylist.txt: 29997) -.jsrdn.com/s/1\.js -# ||jsfeedget.com^$script,third-party (easylist.txt: 29996) -.jsfeedget.com -# ||jrcdev.net/promos/ (easylist.txt: 29995) -.jrcdev.net/promos/ -# ||jocly.com^*.html?click=$subdocument,third-party (easylist.txt: 29994) -.jocly.com/.*\.html\?click= -# ||jobs-affiliates.ws/images/$third-party (easylist.txt: 29993) -.jobs-affiliates.ws/images/ -# ||joblet.jp/javascripts/$third-party (easylist.txt: 29992) -.joblet.jp/javascripts/ -# ||jivox.com/jivox/serverapis/getcampaignbyid.php?$object-subrequest (easylist.txt: 29991) -.jivox.com/jivox/serverapis/getcampaignbyid\.php\? -# ||jinx.com/content/banner/$third-party (easylist.txt: 29990) -.jinx.com/content/banner/ -# ||jeysearch.com^$subdocument,third-party (easylist.txt: 29989) -.jeysearch.com -# ||jenningsforddirect.co.uk/sitewide/extras/$third-party (easylist.txt: 29988) -.jenningsforddirect.co.uk/sitewide/extras/ -# ||jalbum.net/widgetapi/js/dlbutton.js? (easylist.txt: 29987) -.jalbum.net/widgetapi/js/dlbutton\.js\? -# ||iypcdn.com^*/ypbanners/ (easylist.txt: 29986) -.iypcdn.com/.*/ypbanners/ -# ||iypcdn.com^*/otherbanners/ (easylist.txt: 29985) -.iypcdn.com/.*/otherbanners/ -# ||iypcdn.com^*/bgbanners/ (easylist.txt: 29984) -.iypcdn.com/.*/bgbanners/ -# ||iwebzoo.com/banner/ (easylist.txt: 29983) -.iwebzoo.com/banner/ -# ||iselectmedia.com^*/banners/ (easylist.txt: 29982) -.iselectmedia.com/.*/banners/ -# ||ipixs.com/ban/$third-party (easylist.txt: 29981) -.ipixs.com/ban/ -# ||ipercast.net^*/ova-jw.swf$object-subrequest (easylist.txt: 29980) -.ipercast.net/.*/ova-jw\.swf -# ||iobit.com/partner/$third-party (easylist.txt: 29979) -.iobit.com/partner/ -# ||intexchange.ru/Content/banners/ (easylist.txt: 29978) -.intexchange.ru/Content/banners/ -# ||interstitial.glsp.netdna-cdn.com^$third-party (easylist.txt: 29977) -.interstitial.glsp.netdna-cdn.com -# ||interserver.net/logos/vps-$third-party (easylist.txt: 29976) -.interserver.net/logos/vps- -# ||internetbrands.com/partners/$third-party (easylist.txt: 29975) -.internetbrands.com/partners/ -# ||intermrkts.vo.llnwd.net^$third-party (easylist.txt: 29974) -.intermrkts.vo.llnwd.net -# ||integrityvpn.com/img/integrityvpn.jpg (easylist.txt: 29973) -.integrityvpn.com/img/integrityvpn\.jpg -# ||instaprofitgram.com/images/banners/ (easylist.txt: 29972) -.instaprofitgram.com/images/banners/ -# ||instantpaysites.com/banner/ (easylist.txt: 29971) -.instantpaysites.com/banner/ -# ||inskin.vo.llnwd.net^ (easylist.txt: 29970) -.inskin.vo.llnwd.net -# ||inline.playbryte.com^$third-party (easylist.txt: 29969) -.inline.playbryte.com -# ||init.lingospot.com^$third-party (easylist.txt: 29968) -.init.lingospot.com -# ||inisrael-travel.com/jpost/ (easylist.txt: 29967) -.inisrael-travel.com/jpost/ -# ||infomarine.gr^*/images/banners/ (easylist.txt: 29966) -.infomarine.gr/.*/images/banners/ -# ||infomarine.gr/images/banerr.gif (easylist.txt: 29965) -.infomarine.gr/images/banerr\.gif -# ||infochoice.com.au/Handler/WidgetV2Handler.ashx? (easylist.txt: 29964) -.infochoice.com.au/Handler/WidgetV2Handler\.ashx\? -# ||infibeam.com/affiliate/$third-party (easylist.txt: 29963) -.infibeam.com/affiliate/ -# ||indieclick.3janecdn.com^ (easylist.txt: 29962) -.indieclick.3janecdn.com -# ||indian-forex.com^*/banners/$third-party (easylist.txt: 29961) -.indian-forex.com/.*/banners/ -# ||indeed.fr/ads/ (easylist.txt: 29960) -.indeed.fr/ads/ -# ||imptestrm.com/rg-main.php? (easylist.txt: 29959) -.imptestrm.com/rg-main\.php\? -# ||imgpop.googlecode.com^$third-party (easylist.txt: 29957) -.imgpop.googlecode.com -# ||imgehost.com^*/banners/$third-party (easylist.txt: 29956) -.imgehost.com/.*/banners/ -# ||imgdino.com/gsmpop.js (easylist.txt: 29955) -.imgdino.com/gsmpop\.js -# ||img.servint.net^$third-party (easylist.txt: 29954) -.img.servint.net -# ||img.promoddl.com^$third-party (easylist.txt: 29953) -.img.promoddl.com -# ||img.mybet.com^$third-party (easylist.txt: 29952) -.img.mybet.com -# ||img.hostmonster.com^$third-party (easylist.txt: 29951) -.img.hostmonster.com -# ||img.bluehost.com^$third-party (easylist.txt: 29950) -.img.bluehost.com -# ||imagetwist.com/banner/ (easylist.txt: 29949) -.imagetwist.com/banner/ -# ||images.youbuy.it/images/$third-party (easylist.txt: 29948) -.images.youbuy.it/images/ -# ||images.mylot.com^$third-party (easylist.txt: 29947) -.images.mylot.com -# ||images.dreamhost.com^$third-party (easylist.txt: 29946) -.images.dreamhost.com -# ||images.criteo.net^$third-party (easylist.txt: 29945) -.images.criteo.net -# ||images.*.criteo.net^$third-party (easylist.txt: 29944) -.images.*./.*\.criteo\.net[^\w%.-] -.images.*.criteo.net -# ||images-pw.secureserver.net^*_*.$image,third-party (easylist.txt: 29943) -.images-pw.secureserver.net/.*_.*\. -# ||images-pw.secureserver.net/images/100yearsofchevy.gif (easylist.txt: 29942) -.images-pw.secureserver.net/images/100yearsofchevy\.gif -# ||images-amazon.com/images/*/banner/$third-party (easylist.txt: 29940) -.images-amazon.com/images/.*/banner/ -# ||images-amazon.com/images/*/associates/widgets/ (easylist.txt: 29939) -.images-amazon.com/images/.*/associates/widgets/ -# ||image.dhgate.com^*/dhgate-logo-$third-party (easylist.txt: 29938) -.image.dhgate.com/.*/dhgate-logo- -# ||image.com.com^*/skin2.jpg$third-party (easylist.txt: 29937) -.image.com.com/.*/skin2\.jpg -# ||ima3vpaid.appspot.com^ (easylist.txt: 29936) -.ima3vpaid.appspot.com -# ||im.ov.yahoo.co.jp^ (easylist.txt: 29935) -.im.ov.yahoo.co.jp -# ||ilapi.ebay.com^$third-party (easylist.txt: 29934) -.ilapi.ebay.com -# ||ifilm.com/website/*_skin_$third-party (easylist.txt: 29933) -.ifilm.com/website/.*_skin_ -# ||idg.com.au/ggg/images/*_home.jpg$third-party (easylist.txt: 29931) -.idg.com.au/ggg/images/.*_home\.jpg -# ||idealo.co.uk/priceinfo/$third-party (easylist.txt: 29930) -.idealo.co.uk/priceinfo/ -# ||icastcenter.com^*/itunes.jpg (easylist.txt: 29929) -.icastcenter.com/.*/itunes\.jpg -# ||icastcenter.com^*/amazon-buyfrom.gif (easylist.txt: 29928) -.icastcenter.com/.*/amazon-buyfrom\.gif -# ||ibvpn.com/img/banners/ (easylist.txt: 29927) -.ibvpn.com/img/banners/ -# ||ibsys.com/sh/sponsors/ (easylist.txt: 29926) -.ibsys.com/sh/sponsors/ -# ||ibsrv.net/sponsor_images/ (easylist.txt: 29925) -.ibsrv.net/sponsor_images/ -# ||ibsrv.net/sidetiles/125x125/ (easylist.txt: 29924) -.ibsrv.net/sidetiles/125x125/ -# ||i.lsimg.net^*/takeover/ (easylist.txt: 29923) -.i.lsimg.net/.*/takeover/ -# ||i.lsimg.net^*/sides_clickable. (easylist.txt: 29922) -.i.lsimg.net/.*/sides_clickable\. -# ||i.ligatus.com/*-placements/$third-party (easylist.txt: 29921) -.i.ligatus.com/.*-placements/ -# ||hyperscale.com/images/adh_button.jpg (easylist.txt: 29920) -.hyperscale.com/images/adh_button\.jpg -# ||hyperfbtraffic.com/images/graphicsbanners/ (easylist.txt: 29919) -.hyperfbtraffic.com/images/graphicsbanners/ -# ||hyipregulate.com/images/hyipregulatebanner.gif (easylist.txt: 29918) -.hyipregulate.com/images/hyipregulatebanner\.gif -# ||hubbardradio.com^*/my_deals.php (easylist.txt: 29916) -.hubbardradio.com/.*/my_deals\.php -# ||hubbarddeals.com^*/promo/ (easylist.txt: 29915) -.hubbarddeals.com/.*/promo/ -# ||hstpnetwork.com/zeus.php (easylist.txt: 29914) -.hstpnetwork.com/zeus\.php -# ||hstpnetwork.com/ads/ (easylist.txt: 29913) -.hstpnetwork.com/ads/ -# ||hqfootyad4.blogspot.com^$third-party (easylist.txt: 29912) -.hqfootyad4.blogspot.com -# ||hotlinking.dosmil.imap.cc^$third-party (easylist.txt: 29911) -.hotlinking.dosmil.imap.cc -# ||hoteltravel.com/partner/$third-party (easylist.txt: 29910) -.hoteltravel.com/partner/ -# ||hotelsbycity.com^*/bannermtg.php?$third-party (easylist.txt: 29909) -.hotelsbycity.com/.*/bannermtg\.php\? -# ||hostmonster.com/src/js/izahariev/$third-party (easylist.txt: 29908) -.hostmonster.com/src/js/izahariev/ -# ||hostinger.nl/banners/ (easylist.txt: 29907) -.hostinger.nl/banners/ -# ||hosting.conduit.com^$third-party (easylist.txt: 29906) -.hosting.conduit.com -# ||hostgator.com/~affiliat/cgi-bin/affiliates/$third-party (easylist.txt: 29905) -.hostgator.com/~affiliat/cgi-bin/affiliates/ -# ||hostdime.com/images/affiliate/$third-party (easylist.txt: 29904) -.hostdime.com/images/affiliate/ -# ||homad-global-configs.schneevonmorgen.com^ (easylist.txt: 29903) -.homad-global-configs.schneevonmorgen.com -# ||hm-sat.de/b.php (easylist.txt: 29902) -.hm-sat.de/b\.php -# ||hitleap.com/assets/banner.png (easylist.txt: 29901) -.hitleap.com/assets/banner\.png -# ||hitleap.com/assets/banner- (easylist.txt: 29900) -.hitleap.com/assets/banner- -# ||highepcoffer.com/images/banners/ (easylist.txt: 29899) -.highepcoffer.com/images/banners/ -# ||hide-my-ip.com/promo/ (easylist.txt: 29898) -.hide-my-ip.com/promo/ -# ||hexero.com/images/banner.gif (easylist.txt: 29897) -.hexero.com/images/banner\.gif -# ||heidiklein.com/media/banners/ (easylist.txt: 29896) -.heidiklein.com/media/banners/ -# ||healthtrader.com/banner-$third-party (easylist.txt: 29895) -.healthtrader.com/banner- -# ||hdvid-codecs.com^$third-party (easylist.txt: 29894) -.hdvid-codecs.com -# ||haymarket.net.au/Skins/ (easylist.txt: 29893) -.haymarket.net.au/Skins/ -# ||haymarket-whistleout.s3.amazonaws.com/*_ad.html (easylist.txt: 29892) -.haymarket-whistleout.s3.amazonaws.com/.*_ad\.html -# ||handango.com/marketing/affiliate/ (easylist.txt: 29891) -.handango.com/marketing/affiliate/ -# ||halllakeland.com/banner/ (easylist.txt: 29890) -.halllakeland.com/banner/ -# ||guzzle.co.za/media/banners/ (easylist.txt: 29889) -.guzzle.co.za/media/banners/ -# ||guim.co.uk/guardian/thirdparty/tv-site/side.html (easylist.txt: 29888) -.guim.co.uk/guardian/thirdparty/tv-site/side\.html -# ||gsniper.com/images/$third-party (easylist.txt: 29887) -.gsniper.com/images/ -# ||grouponcdn.com^*/affiliate_widget/$third-party (easylist.txt: 29886) -.grouponcdn.com/.*/affiliate_widget/ -# ||groupon.com/javascripts/common/affiliate_widget/$third-party (easylist.txt: 29885) -.groupon.com/javascripts/common/affiliate_widget/ -# ||grindabuck.com/img/skyscraper.jpg (easylist.txt: 29884) -.grindabuck.com/img/skyscraper\.jpg -# ||grammar.coursekey.com/inter/$third-party (easylist.txt: 29883) -.grammar.coursekey.com/inter/ -# ||graduateinjapan.com/affiliates/ (easylist.txt: 29882) -.graduateinjapan.com/affiliates/ -# ||graboid.com/affiliates/ (easylist.txt: 29881) -.graboid.com/affiliates/ -# ||govids.net/adss/ (easylist.txt: 29879) -.govids.net/adss/ -# ||gotraffic.net^*/sponsors/ (easylist.txt: 29878) -.gotraffic.net/.*/sponsors/ -# ||gorgonprojectinvest.com/images/banners/ (easylist.txt: 29877) -.gorgonprojectinvest.com/images/banners/ -# ||googlesyndication.com^*/simgad/$third-party (easylist.txt: 29876) -.googlesyndication.com/.*/simgad/ -# ||googlesyndication.com^*/googlevideoadslibraryas3.swf$object-subrequest,third-party (easylist.txt: 29875) -.googlesyndication.com/.*/googlevideoadslibraryas3\.swf -# ||googlesyndication.com^*/domainpark.cgi? (easylist.txt: 29874) -.googlesyndication.com/.*/domainpark\.cgi\? -# ||googlesyndication.com^*/click_to_buy/$object-subrequest,third-party (easylist.txt: 29873) -.googlesyndication.com/.*/click_to_buy/ -# ||googlesyndication.com/simgad/$third-party (easylist.txt: 29872) -.googlesyndication.com/simgad/ -# ||googlesyndication.com/safeframe/$third-party (easylist.txt: 29871) -.googlesyndication.com/safeframe/ -# ||googlesyndication.com/pagead/$third-party (easylist.txt: 29870) -.googlesyndication.com/pagead/ -# ||google.com/uds/afs?*adsense$subdocument (easylist.txt: 29869) -.google.com/uds/afs\?.*adsense -# ||google.com/pagead/ (easylist.txt: 29868) -.google.com/pagead/ -# ||goldmoney.com/~/media/Images/Banners/$third-party (easylist.txt: 29865) -.goldmoney.com/~/media/Images/Banners/ -# ||gold4rs.com/images/$third-party (easylist.txt: 29864) -.gold4rs.com/images/ -# ||gogousenet.com^*/promo2.cgi (easylist.txt: 29863) -.gogousenet.com/.*/promo2\.cgi -# ||gogousenet.com^*/promo.cgi (easylist.txt: 29862) -.gogousenet.com/.*/promo\.cgi -# ||goadv.com^*/ads.js (easylist.txt: 29861) -.goadv.com/.*/ads\.js -# ||gmstatic.net^*/itunesbadge.png (easylist.txt: 29860) -.gmstatic.net/.*/itunesbadge\.png -# ||gmstatic.net^*/amazonbadge.png (easylist.txt: 29859) -.gmstatic.net/.*/amazonbadge\.png -# ||globalprocash.com/banner125.gif (easylist.txt: 29858) -.globalprocash.com/banner125\.gif -# ||glam.com^*?affiliateid= (easylist.txt: 29857) -.glam.com/.*\?affiliateid= -# ||glam.com/gad/ (easylist.txt: 29856) -.glam.com/gad/ -# ||giffgaff.com/banner/ (easylist.txt: 29855) -.giffgaff.com/banner/ -# ||giantsavings-a.akamaihd.net^$third-party (easylist.txt: 29854) -.giantsavings-a.akamaihd.net -# ||giantrealm.com/saj/ (easylist.txt: 29853) -.giantrealm.com/saj/ -# ||ggmania.com^*.jpg$third-party (easylist.txt: 29852) -.ggmania.com/.*\.jpg -# ||gfxa.sheetmusicplus.com^$third-party (easylist.txt: 29851) -.gfxa.sheetmusicplus.com -# ||gfaf-banners.s3.amazonaws.com^ (easylist.txt: 29850) -.gfaf-banners.s3.amazonaws.com -# ||getpaidforyourtime.org/basic-rotating-banner/ (easylist.txt: 29849) -.getpaidforyourtime.org/basic-rotating-banner/ -# ||getnzb.com/img/partner/banners/$third-party (easylist.txt: 29848) -.getnzb.com/img/partner/banners/ -# ||gethopper.com/tp/$third-party (easylist.txt: 29847) -.gethopper.com/tp/ -# ||getadblock.com/images/adblock_banners/$third-party (easylist.txt: 29846) -.getadblock.com/images/adblock_banners/ -# ||get.thisisvegas.com^$third-party (easylist.txt: 29845) -.get.thisisvegas.com -# ||get.slotocash.com^$third-party (easylist.txt: 29844) -.get.slotocash.com -# ||get.rubyroyal.com^$third-party (easylist.txt: 29843) -.get.rubyroyal.com -# ||get.paradise8.com^$third-party (easylist.txt: 29842) -.get.paradise8.com -# ||get.davincisgold.com^$third-party (easylist.txt: 29841) -.get.davincisgold.com -# ||get.box24casino.com^$third-party (easylist.txt: 29840) -.get.box24casino.com -# ||get.2leep.com^$third-party (easylist.txt: 29839) -.get.2leep.com -# ||get.*.website/static/get-js?stid=$third-party (easylist.txt: 29838) -.get.*./.*\.website/static/get-js\?stid= -.get.*.website/static/get-js\?stid= -# ||geobanner.passion.com^ (easylist.txt: 29837) -.geobanner.passion.com -# ||geobanner.friendfinder.com^ (easylist.txt: 29836) -.geobanner.friendfinder.com -# ||geo.connexionsecure.com^ (easylist.txt: 29835) -.geo.connexionsecure.com -# ||generic4all.com^*?refid=$third-party (easylist.txt: 29834) -.generic4all.com/.*\?refid= -# ||gemini.yahoo.com^*^syndication^ (easylist.txt: 29833) -.gemini.yahoo.com/.*[^\w%.-]syndication[^\w%.-] -# ||gawkerassets.com/assets/marquee/$object,third-party (easylist.txt: 29831) -.gawkerassets.com/assets/marquee/ -# ||gateways.s3.amazonaws.com^ (easylist.txt: 29830) -.gateways.s3.amazonaws.com -# ||gateway.fortunelounge.com^ (easylist.txt: 29829) -.gateway.fortunelounge.com -# ||gamingjobsonline.com/images/banner/ (easylist.txt: 29828) -.gamingjobsonline.com/images/banner/ -# ||gamestop.com^*/aflbanners/ (easylist.txt: 29827) -.gamestop.com/.*/aflbanners/ -# ||gamesports.net/img/betting_campaigns/ (easylist.txt: 29826) -.gamesports.net/img/betting_campaigns/ -# ||gamersaloon.com/images/banners/ (easylist.txt: 29825) -.gamersaloon.com/images/banners/ -# ||gamer-network.net/plugins/dfp/ (easylist.txt: 29824) -.gamer-network.net/plugins/dfp/ -# ||gameorc.net/a.html (easylist.txt: 29823) -.gameorc.net/a\.html -# ||gameduell.com/res/affiliate/ (easylist.txt: 29822) -.gameduell.com/res/affiliate/ -# ||gamblingwages.com/images/$third-party (easylist.txt: 29821) -.gamblingwages.com/images/ -# ||gadgetresearch.net^$subdocument,third-party (easylist.txt: 29820) -.gadgetresearch.net -# ||fyygame.com/images/*.swf$third-party (easylist.txt: 29819) -.fyygame.com/images/.*\.swf -# ||fyiwashtenaw.com/remote_widget? (easylist.txt: 29818) -.fyiwashtenaw.com/remote_widget\? -# ||fyicentralmi.com/remote_widget?$third-party (easylist.txt: 29817) -.fyicentralmi.com/remote_widget\? -# ||fxultima.com/banner/ (easylist.txt: 29816) -.fxultima.com/banner/ -# ||fxcc.com/promo/ (easylist.txt: 29815) -.fxcc.com/promo/ -# ||futuresite.register.com/us?$third-party (easylist.txt: 29814) -.futuresite.register.com/us\? -# ||futuboxhd.com/js/bc.js (easylist.txt: 29813) -.futuboxhd.com/js/bc\.js -# ||furiousteam.com^*/external_banner/ (easylist.txt: 29812) -.furiousteam.com/.*/external_banner/ -# ||fupa.com/aw.aspx?$third-party (easylist.txt: 29811) -.fupa.com/aw\.aspx\? -# ||funtonia.com/promo/ (easylist.txt: 29810) -.funtonia.com/promo/ -# ||fugger.netfirms.com/moa.swf$third-party (easylist.txt: 29809) -.fugger.netfirms.com/moa\.swf -# ||fugger.ipage.com^$third-party (easylist.txt: 29808) -.fugger.ipage.com -# ||ft.pnop.com^ (easylist.txt: 29807) -.ft.pnop.com -# ||frontsight.com^*/banners/ (easylist.txt: 29806) -.frontsight.com/.*/banners/ -# ||frogatto.com/images/$third-party (easylist.txt: 29805) -.frogatto.com/images/ -# ||friedrice.la/widget/$third-party (easylist.txt: 29804) -.friedrice.la/widget/ -# ||freshbooks.com/images/banners/$third-party (easylist.txt: 29803) -.freshbooks.com/images/banners/ -# ||freewheel.mtgx.tv^$~object-subrequest (easylist.txt: 29802) -.freewheel.mtgx.tv -# ||freetricktipss.info^$subdocument,third-party (easylist.txt: 29801) -.freetricktipss.info -# ||freetrafficsystem.com/fts/ban/ (easylist.txt: 29800) -.freetrafficsystem.com/fts/ban/ -# ||freecycle.org^*/sponsors/ (easylist.txt: 29799) -.freecycle.org/.*/sponsors/ -# ||free-football.tv/images/usd/ (easylist.txt: 29798) -.free-football.tv/images/usd/ -# ||freakshare.net/banner/ (easylist.txt: 29797) -.freakshare.net/banner/ -# ||freakshare.com/banner/$third-party (easylist.txt: 29796) -.freakshare.com/banner/ -# ||freakshare.com/?ref= (easylist.txt: 29795) -.freakshare.com/\?ref= -# ||fragfestservers.com/bannerb.gif (easylist.txt: 29794) -.fragfestservers.com/bannerb\.gif -# ||forumimg.ipmart.com/swf/img.php (easylist.txt: 29793) -.forumimg.ipmart.com/swf/img\.php -# ||fortune5minutes.com^*/banner_ (easylist.txt: 29792) -.fortune5minutes.com/.*/banner_ -# ||forms.aweber.com/form/styled_popovers_and_lightboxes.js$third-party (easylist.txt: 29791) -.forms.aweber.com/form/styled_popovers_and_lightboxes\.js -# ||footymad.net/partners/ (easylist.txt: 29790) -.footymad.net/partners/ -# ||followfairy.com/followfairy300x250.jpg (easylist.txt: 29789) -.followfairy.com/followfairy300x250\.jpg -# ||fncstatic.com^*/business-exchange.html (easylist.txt: 29788) -.fncstatic.com/.*/business-exchange\.html -# ||flower.com/img/lsh/ (easylist.txt: 29787) -.flower.com/img/lsh/ -# ||flixcart.com/affiliate/$third-party (easylist.txt: 29786) -.flixcart.com/affiliate/ -# ||flipkart.com/affiliateWidget/$third-party (easylist.txt: 29785) -.flipkart.com/affiliateWidget/ -# ||flipchat.com/index.php?$third-party (easylist.txt: 29784) -.flipchat.com/index\.php\? -# ||flagship.asp-host.co.uk^$third-party (easylist.txt: 29783) -.flagship.asp-host.co.uk -# ||firstclass-download.com^$subdocument,third-party (easylist.txt: 29782) -.firstclass-download.com -# ||firecenter.pl/banners/ (easylist.txt: 29781) -.firecenter.pl/banners/ -# ||fimserve.myspace.com^$third-party (easylist.txt: 29780) -.fimserve.myspace.com -# ||filterforge.com/images/banners/ (easylist.txt: 29779) -.filterforge.com/images/banners/ -# ||filmehd.net/imagini/banner_$third-party (easylist.txt: 29777) -.filmehd.net/imagini/banner_ -# ||fileserver1.net/download (easylist.txt: 29776) -.fileserver1.net/download -# ||fileserve.com/images/banner_$third-party (easylist.txt: 29775) -.fileserve.com/images/banner_ -# ||filepost.com/static/images/bn/ (easylist.txt: 29774) -.filepost.com/static/images/bn/ -# ||fileparadox.com/images/banner/ (easylist.txt: 29773) -.fileparadox.com/images/banner/ -# ||fileloadr.com^$third-party (easylist.txt: 29772) -.fileloadr.com -# ||filejungle.com/images/banner/ (easylist.txt: 29771) -.filejungle.com/images/banner/ -# ||filefactory.com^*/refer.php?hash= (easylist.txt: 29770) -.filefactory.com/.*/refer\.php\?hash= -# ||filedroid.net/af_ta/$third-party (easylist.txt: 29769) -.filedroid.net/af_ta/ -# ||filedownloader.net/design/$third-party (easylist.txt: 29768) -.filedownloader.net/design/ -# ||fenixm.com/actions/*Skin*.$image (easylist.txt: 29767) -.fenixm.com/actions/.*Skin.*\. -# ||feeds.logicbuy.com^ (easylist.txt: 29766) -.feeds.logicbuy.com -# ||feedburner.com/~a/ (easylist.txt: 29765) -.feedburner.com/~a/ -# ||fcgadgets.blogspot.com^$third-party (easylist.txt: 29764) -.fcgadgets.blogspot.com -# ||fatburningfurnace.com^*/fbf-banner- (easylist.txt: 29763) -.fatburningfurnace.com/.*/fbf-banner- -# ||fatads.toldya.com^$third-party (easylist.txt: 29762) -.fatads.toldya.com -# ||fastcccam.com/images/fcbanner2.gif (easylist.txt: 29761) -.fastcccam.com/images/fcbanner2\.gif -# ||farmholidays.is/iframeallfarmsearch.aspx?$third-party (easylist.txt: 29760) -.farmholidays.is/iframeallfarmsearch\.aspx\? -# ||fapturbo.com/testoid/ (easylist.txt: 29759) -.fapturbo.com/testoid/ -# ||fantaz.com^*/banners/$third-party (easylist.txt: 29758) -.fantaz.com/.*/banners/ -# ||fantasyplayers.com/templates/banner_code. (easylist.txt: 29757) -.fantasyplayers.com/templates/banner_code\. -# ||fancybar.net/ac/fancybar.js?zoneid$third-party (easylist.txt: 29756) -.fancybar.net/ac/fancybar\.js\?zoneid -# ||familytreedna.com/img/affiliates/ (easylist.txt: 29755) -.familytreedna.com/img/affiliates/ -# ||fairfaxregional.com.au/proxy/commercial-partner-solar/ (easylist.txt: 29754) -.fairfaxregional.com.au/proxy/commercial-partner-solar/ -# ||eyetopics.com/content_images/$third-party (easylist.txt: 29753) -.eyetopics.com/content_images/ -# ||exwp.org/partners/ (easylist.txt: 29752) -.exwp.org/partners/ -# ||extras.mnginteractive.com^*/todaysdeals.gif (easylist.txt: 29751) -.extras.mnginteractive.com/.*/todaysdeals\.gif -# ||extras.mercurynews.com/tapin_directory/ (easylist.txt: 29750) -.extras.mercurynews.com/tapin_directory/ -# ||extensoft.com/artisteer/banners/ (easylist.txt: 29749) -.extensoft.com/artisteer/banners/ -# ||extabit.com/s/$third-party (easylist.txt: 29748) -.extabit.com/s/ -# ||ext.theglobalweb.com^ (easylist.txt: 29747) -.ext.theglobalweb.com -# ||explorer.sheknows.com^$third-party (easylist.txt: 29746) -.explorer.sheknows.com -# ||expekt.com/affiliates/ (easylist.txt: 29745) -.expekt.com/affiliates/ -# ||exoplanetwar.com/l/landing.php? (easylist.txt: 29744) -.exoplanetwar.com/l/landing\.php\? -# ||everestpoker.com^*/?adv= (easylist.txt: 29743) -.everestpoker.com/.*/\?adv= -# ||events.kalooga.com^ (easylist.txt: 29742) -.events.kalooga.com -# ||euwidget.imshopping.com^ (easylist.txt: 29741) -.euwidget.imshopping.com -# ||europolitique.info^*/pub/ (easylist.txt: 29740) -.europolitique.info/.*/pub/ -# ||etrader.kalahari.net^$third-party (easylist.txt: 29739) -.etrader.kalahari.net -# ||etrader.kalahari.com^$third-party (easylist.txt: 29738) -.etrader.kalahari.com -# ||etoro.com/B*_A*_TGet.aspx$third-party (easylist.txt: 29737) -.etoro.com/B.*_A.*_TGet\.aspx -# ||etoolkit.com/banner/$third-party (easylist.txt: 29736) -.etoolkit.com/banner/ -# ||esport-betting.com^*/betbanner/ (easylist.txt: 29735) -.esport-betting.com/.*/betbanner/ -# ||escape.insites.eu^$third-party (easylist.txt: 29734) -.escape.insites.eu -# ||epowernetworktrackerimages.s3.amazonaws.com^ (easylist.txt: 29733) -.epowernetworktrackerimages.s3.amazonaws.com -# ||eplreplays.com/wl/ (easylist.txt: 29732) -.eplreplays.com/wl/ -# ||epimg.net/js/pbs/ (easylist.txt: 29731) -.epimg.net/js/pbs/ -# ||enticelabs.com/el/ (easylist.txt: 29730) -.enticelabs.com/el/ -# ||engine.gamerati.net^$third-party (easylist.txt: 29729) -.engine.gamerati.net -# ||emsisoft.com/bnr/ (easylist.txt: 29728) -.emsisoft.com/bnr/ -# ||emailcashpro.com/images/$third-party (easylist.txt: 29727) -.emailcashpro.com/images/ -# ||eltexonline.com/contentrotator/$third-party (easylist.txt: 29726) -.eltexonline.com/contentrotator/ -# ||elliottwave.com/fw/regular_leaderboard.js (easylist.txt: 29725) -.elliottwave.com/fw/regular_leaderboard\.js -# ||elitsearch.com^$subdocument,third-party (easylist.txt: 29724) -.elitsearch.com -# ||elenasmodels.com/cache/cb_$third-party (easylist.txt: 29723) -.elenasmodels.com/cache/cb_ -# ||eholidayfinder.com/images/logo.gif$third-party (easylist.txt: 29722) -.eholidayfinder.com/images/logo\.gif -# ||edgecastcdn.net^*.barstoolsports.com/wp-content/banners/ (easylist.txt: 29721) -.edgecastcdn.net/.*\.barstoolsports\.com/wp-content/banners/ -# ||edge.viagogo.co.uk^*/widget.ashx?$third-party (easylist.txt: 29720) -.edge.viagogo.co.uk/.*/widget\.ashx\? -# ||ectaco-store.com^*/promo.jsp? (easylist.txt: 29719) -.ectaco-store.com/.*/promo\.jsp\? -# ||echineselearning.com^*/banner.jpg (easylist.txt: 29718) -.echineselearning.com/.*/banner\.jpg -# ||eblastengine.upickem.net^$third-party (easylist.txt: 29717) -.eblastengine.upickem.net -# ||ebladestore.com^*/banners/ (easylist.txt: 29716) -.ebladestore.com/.*/banners/ -# ||ebaystatic.com/aw/signin/ebay-signin-toyota- (easylist.txt: 29715) -.ebaystatic.com/aw/signin/ebay-signin-toyota- -# ||ebaycommercenetwork.com/publisher/$third-party (easylist.txt: 29714) -.ebaycommercenetwork.com/publisher/ -# ||eattoday.com.mt/widgets/$third-party (easylist.txt: 29713) -.eattoday.com.mt/widgets/ -# ||easyretiredmillionaire.com/img/aff-img/ (easylist.txt: 29712) -.easyretiredmillionaire.com/img/aff-img/ -# ||easy-share.com/images/es20/ (easylist.txt: 29711) -.easy-share.com/images/es20/ -# ||e-webcorp.com/images/$third-party (easylist.txt: 29710) -.e-webcorp.com/images/ -# ||e-tailwebstores.com/accounts/default1/banners/ (easylist.txt: 29709) -.e-tailwebstores.com/accounts/default1/banners/ -# ||dynw.com/banner (easylist.txt: 29708) -.dynw.com/banner -# ||dynamicserving.com^$third-party (easylist.txt: 29707) -.dynamicserving.com -# ||dyl3p6so5yozo.cloudfront.net^ (easylist.txt: 29706) -.dyl3p6so5yozo.cloudfront.net -# ||dycpc40hvg4ki.cloudfront.net^ (easylist.txt: 29705) -.dycpc40hvg4ki.cloudfront.net -# ||dy48bnzanqw0v.cloudfront.net^ (easylist.txt: 29704) -.dy48bnzanqw0v.cloudfront.net -# ||dxqd86uz345mg.cloudfront.net^ (easylist.txt: 29703) -.dxqd86uz345mg.cloudfront.net -# ||dxq6c0tx3v6mm.cloudfront.net^ (easylist.txt: 29702) -.dxq6c0tx3v6mm.cloudfront.net -# ||dx5qvhwg92mjd.cloudfront.net^ (easylist.txt: 29701) -.dx5qvhwg92mjd.cloudfront.net -# ||dx.com/affiliate/$third-party (easylist.txt: 29700) -.dx.com/affiliate/ -# ||dvt4pepo9om3r.cloudfront.net^ (easylist.txt: 29699) -.dvt4pepo9om3r.cloudfront.net -# ||dvf2u7vwmkr5w.cloudfront.net^ (easylist.txt: 29698) -.dvf2u7vwmkr5w.cloudfront.net -# ||dvdfab.com/images/fabnewbanner/$third-party (easylist.txt: 29697) -.dvdfab.com/images/fabnewbanner/ -# ||duct5ntjian71.cloudfront.net^ (easylist.txt: 29696) -.duct5ntjian71.cloudfront.net -# ||dttek.com/sponsors/ (easylist.txt: 29695) -.dttek.com/sponsors/ -# ||droidnetwork.net/img/vendors/ (easylist.txt: 29693) -.droidnetwork.net/img/vendors/ -# ||droidnetwork.net/img/dt-atv160.jpg (easylist.txt: 29692) -.droidnetwork.net/img/dt-atv160\.jpg -# ||dreamstime.com/refbanner- (easylist.txt: 29691) -.dreamstime.com/refbanner- -# ||dreamstime.com/img/badges/banner$third-party (easylist.txt: 29690) -.dreamstime.com/img/badges/banner -# ||dreamstime.com/banner/ (easylist.txt: 29689) -.dreamstime.com/banner/ -# ||dreamhost.com/rewards/$third-party (easylist.txt: 29688) -.dreamhost.com/rewards/ -# ||dreamboxcart.com/earning/$third-party (easylist.txt: 29687) -.dreamboxcart.com/earning/ -# ||dramafeverw2.appspot.com/widget/$third-party (easylist.txt: 29686) -.dramafeverw2.appspot.com/widget/ -# ||dramafever.com/widget/$third-party (easylist.txt: 29685) -.dramafever.com/widget/ -# ||dr8pk6ovub897.cloudfront.net^ (easylist.txt: 29684) -.dr8pk6ovub897.cloudfront.net -# ||dqhi3ea93ztgv.cloudfront.net^ (easylist.txt: 29683) -.dqhi3ea93ztgv.cloudfront.net -# ||dq2tgxnc2knif.cloudfront.net^ (easylist.txt: 29682) -.dq2tgxnc2knif.cloudfront.net -# ||dpsq2uzakdgqz.cloudfront.net^ (easylist.txt: 29681) -.dpsq2uzakdgqz.cloudfront.net -# ||dp51h10v6ggpa.cloudfront.net^ (easylist.txt: 29680) -.dp51h10v6ggpa.cloudfront.net -# ||downloadprovider.me/en/search/*?aff.id=*&iframe=$third-party (easylist.txt: 29679) -.downloadprovider.me/en/search/.*\?aff\.id=.*&iframe= -# ||downloadandsave-a.akamaihd.net^$third-party (easylist.txt: 29678) -.downloadandsave-a.akamaihd.net -# ||download.bitdefender.com/resources/media/$third-party (easylist.txt: 29677) -.download.bitdefender.com/resources/media/ -# ||download-provider.org/?aff.id=$third-party (easylist.txt: 29676) -.download-provider.org/\?aff\.id= -# ||dotz123.com/run.php? (easylist.txt: 29675) -.dotz123.com/run\.php\? -# ||dot.tk/urlfwd/searchbar/bar.html (easylist.txt: 29674) -.dot.tk/urlfwd/searchbar/bar\.html -# ||dorabet.com/banner/ (easylist.txt: 29673) -.dorabet.com/banner/ -# ||domainnamesales.com/return_js.php? (easylist.txt: 29672) -.domainnamesales.com/return_js\.php\? -# ||domaingateway.com/js/redirect-min.js (easylist.txt: 29671) -.domaingateway.com/js/redirect-min\.js -# ||domainapps.com/assets/img/domain-apps.gif$third-party (easylist.txt: 29670) -.domainapps.com/assets/img/domain-apps\.gif -# ||dntrck.com/trax? (easylist.txt: 29669) -.dntrck.com/trax\? -# ||dm8srf206hien.cloudfront.net^ (easylist.txt: 29668) -.dm8srf206hien.cloudfront.net -# ||dm0acvguygm9h.cloudfront.net^ (easylist.txt: 29667) -.dm0acvguygm9h.cloudfront.net -# ||dlupv9uqtjlie.cloudfront.net^ (easylist.txt: 29666) -.dlupv9uqtjlie.cloudfront.net -# ||dl5v5atodo7gn.cloudfront.net^ (easylist.txt: 29665) -.dl5v5atodo7gn.cloudfront.net -# ||dl392qndlveq0.cloudfront.net^ (easylist.txt: 29664) -.dl392qndlveq0.cloudfront.net -# ||dkdwv3lcby5zi.cloudfront.net^ (easylist.txt: 29663) -.dkdwv3lcby5zi.cloudfront.net -# ||dkd69bwkvrht1.cloudfront.net^ (easylist.txt: 29662) -.dkd69bwkvrht1.cloudfront.net -# ||djlf5xdlz7m8m.cloudfront.net^ (easylist.txt: 29661) -.djlf5xdlz7m8m.cloudfront.net -# ||dizixdllzznrf.cloudfront.net^ (easylist.txt: 29660) -.dizixdllzznrf.cloudfront.net -# ||disy2s34euyqm.cloudfront.net^ (easylist.txt: 29659) -.disy2s34euyqm.cloudfront.net -# ||disqus.com/listPromoted? (easylist.txt: 29658) -.disqus.com/listPromoted\? -# ||display.digitalriver.com^ (easylist.txt: 29657) -.display.digitalriver.com -# ||directnicparking.com^$third-party (easylist.txt: 29656) -.directnicparking.com -# ||direct.quasir.info^$third-party (easylist.txt: 29655) -.direct.quasir.info -# ||digitalsatellite.tv/banners/ (easylist.txt: 29654) -.digitalsatellite.tv/banners/ -# ||digitalmediacommunications.com/belleville/employment/ (easylist.txt: 29653) -.digitalmediacommunications.com/belleville/employment/ -# ||dff7tx5c2qbxc.cloudfront.net^ (easylist.txt: 29651) -.dff7tx5c2qbxc.cloudfront.net -# ||dew9ckzjyt2gn.cloudfront.net^ (easylist.txt: 29650) -.dew9ckzjyt2gn.cloudfront.net -# ||devil-bet.com/banner/ (easylist.txt: 29649) -.devil-bet.com/banner/ -# ||developermedia.com/a.min.js (easylist.txt: 29648) -.developermedia.com/a\.min\.js -# ||dev-cms.com^*/promobanners/ (easylist.txt: 29647) -.dev-cms.com/.*/promobanners/ -# ||detroitmedia.com/jfry/ (easylist.txt: 29646) -.detroitmedia.com/jfry/ -# ||desperateseller.co.uk/affiliates/ (easylist.txt: 29645) -.desperateseller.co.uk/affiliates/ -# ||deskbabes.com/ref.php? (easylist.txt: 29644) -.deskbabes.com/ref\.php\? -# ||desi4m.com/desi4m.gif$third-party (easylist.txt: 29643) -.desi4m.com/desi4m\.gif -# ||depositfiles.com^*.php?ref= (easylist.txt: 29642) -.depositfiles.com/.*\.php\?ref= -# ||dennis.co.uk^*/siteskins/ (easylist.txt: 29641) -.dennis.co.uk/.*/siteskins/ -# ||delivery.importantmedia.org^$third-party (easylist.txt: 29640) -.delivery.importantmedia.org -# ||dealzone.co.za^$script,third-party (easylist.txt: 29639) -.dealzone.co.za -# ||dealtoday.com.mt/banners/ (easylist.txt: 29638) -.dealtoday.com.mt/banners/ -# ||dealswarm.com^$subdocument,third-party (easylist.txt: 29637) -.dealswarm.com -# ||deals4thecure.com/widgets/*?affiliateurl= (easylist.txt: 29636) -.deals4thecure.com/widgets/.*\?affiliateurl= -# ||deals.macupdate.com^$third-party (easylist.txt: 29635) -.deals.macupdate.com -# ||deals.buxr.net^$third-party (easylist.txt: 29634) -.deals.buxr.net -# ||dealplatform.com^*/widgets/$third-party (easylist.txt: 29633) -.dealplatform.com/.*/widgets/ -# ||dealextreme.com/affiliate_upload/$third-party (easylist.txt: 29632) -.dealextreme.com/affiliate_upload/ -# ||ddwht76d9jvfl.cloudfront.net^ (easylist.txt: 29631) -.ddwht76d9jvfl.cloudfront.net -# ||dbam.dashbida.com^ (easylist.txt: 29630) -.dbam.dashbida.com -# ||dawanda.com/widget/$third-party (easylist.txt: 29629) -.dawanda.com/widget/ -# ||daterly.com/*.widget.php$third-party (easylist.txt: 29628) -.daterly.com/.*\.widget\.php -# ||datakl.com/banner/ (easylist.txt: 29627) -.datakl.com/banner/ -# ||datafeedfile.com/widget/readywidget/ (easylist.txt: 29626) -.datafeedfile.com/widget/readywidget/ -# ||data.neuroxmedia.com^ (easylist.txt: 29625) -.data.neuroxmedia.com -# ||dasfdasfasdf.no-ip.info^ (easylist.txt: 29624) -.dasfdasfasdf.no-ip.info -# ||dart.clearchannel.com^ (easylist.txt: 29623) -.dart.clearchannel.com -# ||dapatwang.com/images/banner/ (easylist.txt: 29622) -.dapatwang.com/images/banner/ -# ||dal9hkyfi0m0n.cloudfront.net^ (easylist.txt: 29621) -.dal9hkyfi0m0n.cloudfront.net -# ||dailydealstwincities.com/widgets/$subdocument,third-party (easylist.txt: 29620) -.dailydealstwincities.com/widgets/ -# ||d8qy7md4cj3gz.cloudfront.net^ (easylist.txt: 29619) -.d8qy7md4cj3gz.cloudfront.net -# ||d6bdy3eto8fyu.cloudfront.net^ (easylist.txt: 29618) -.d6bdy3eto8fyu.cloudfront.net -# ||d5pvnbpawsaav.cloudfront.net^ (easylist.txt: 29617) -.d5pvnbpawsaav.cloudfront.net -# ||d3vc1nm9xbncz5.cloudfront.net^ (easylist.txt: 29616) -.d3vc1nm9xbncz5.cloudfront.net -# ||d3tdefw8pwfkbk.cloudfront.net^ (easylist.txt: 29615) -.d3tdefw8pwfkbk.cloudfront.net -# ||d3t9ip55bsuxrf.cloudfront.net^ (easylist.txt: 29614) -.d3t9ip55bsuxrf.cloudfront.net -# ||d3t2wca0ou3lqz.cloudfront.net^ (easylist.txt: 29613) -.d3t2wca0ou3lqz.cloudfront.net -# ||d3qszud4qdthr8.cloudfront.net^ (easylist.txt: 29612) -.d3qszud4qdthr8.cloudfront.net -# ||d3q2dpprdsteo.cloudfront.net^ (easylist.txt: 29611) -.d3q2dpprdsteo.cloudfront.net -# ||d3pkae9owd2lcf.cloudfront.net^ (easylist.txt: 29610) -.d3pkae9owd2lcf.cloudfront.net -# ||d3p9ql8flgemg7.cloudfront.net^ (easylist.txt: 29609) -.d3p9ql8flgemg7.cloudfront.net -# ||d3nvrqlo8rj1kw.cloudfront.net^ (easylist.txt: 29608) -.d3nvrqlo8rj1kw.cloudfront.net -# ||d3m41swuqq4sv5.cloudfront.net^ (easylist.txt: 29607) -.d3m41swuqq4sv5.cloudfront.net -# ||d3lzezfa753mqu.cloudfront.net^ (easylist.txt: 29606) -.d3lzezfa753mqu.cloudfront.net -# ||d3lvr7yuk4uaui.cloudfront.net^ (easylist.txt: 29605) -.d3lvr7yuk4uaui.cloudfront.net -# ||d3iwjrnl4m67rd.cloudfront.net^ (easylist.txt: 29604) -.d3iwjrnl4m67rd.cloudfront.net -# ||d3irruagotonpp.cloudfront.net^ (easylist.txt: 29603) -.d3irruagotonpp.cloudfront.net -# ||d3fzrm6pcer44x.cloudfront.net^ (easylist.txt: 29602) -.d3fzrm6pcer44x.cloudfront.net -# ||d3f9mcik999dte.cloudfront.net^ (easylist.txt: 29601) -.d3f9mcik999dte.cloudfront.net -# ||d3dphmosjk9rot.cloudfront.net^ (easylist.txt: 29600) -.d3dphmosjk9rot.cloudfront.net -# ||d3bvcf24wln03d.cloudfront.net^ (easylist.txt: 29599) -.d3bvcf24wln03d.cloudfront.net -# ||d39xqloz8t5a6x.cloudfront.net^ (easylist.txt: 29598) -.d39xqloz8t5a6x.cloudfront.net -# ||d38r21vtgndgb1.cloudfront.net^ (easylist.txt: 29597) -.d38r21vtgndgb1.cloudfront.net -# ||d38pxm3dmrdu6d.cloudfront.net^ (easylist.txt: 29596) -.d38pxm3dmrdu6d.cloudfront.net -# ||d37kzqe5knnh6t.cloudfront.net^ (easylist.txt: 29595) -.d37kzqe5knnh6t.cloudfront.net -# ||d34rdvn2ky3gnm.cloudfront.net^ (easylist.txt: 29594) -.d34rdvn2ky3gnm.cloudfront.net -# ||d34obr29voew8l.cloudfront.net^ (easylist.txt: 29593) -.d34obr29voew8l.cloudfront.net -# ||d33otidwg56k90.cloudfront.net^ (easylist.txt: 29592) -.d33otidwg56k90.cloudfront.net -# ||d33f10u0pfpplc.cloudfront.net^ (easylist.txt: 29591) -.d33f10u0pfpplc.cloudfront.net -# ||d32pxqbknuxsuy.cloudfront.net^ (easylist.txt: 29590) -.d32pxqbknuxsuy.cloudfront.net -# ||d31807xkria1x4.cloudfront.net^ (easylist.txt: 29589) -.d31807xkria1x4.cloudfront.net -# ||d2z1smm3i01tnr.cloudfront.net^ (easylist.txt: 29588) -.d2z1smm3i01tnr.cloudfront.net -# ||d2yhukq7vldf1u.cloudfront.net^ (easylist.txt: 29587) -.d2yhukq7vldf1u.cloudfront.net -# ||d2vt6q0n0iy66w.cloudfront.net^ (easylist.txt: 29586) -.d2vt6q0n0iy66w.cloudfront.net -# ||d2v9ajh2eysdau.cloudfront.net^ (easylist.txt: 29585) -.d2v9ajh2eysdau.cloudfront.net -# ||d2v4glj2m8yzg5.cloudfront.net^ (easylist.txt: 29584) -.d2v4glj2m8yzg5.cloudfront.net -# ||d2ue9k1rhsumed.cloudfront.net^ (easylist.txt: 29583) -.d2ue9k1rhsumed.cloudfront.net -# ||d2ubicnllnnszy.cloudfront.net^ (easylist.txt: 29582) -.d2ubicnllnnszy.cloudfront.net -# ||d2tnimpzlb191i.cloudfront.net^ (easylist.txt: 29581) -.d2tnimpzlb191i.cloudfront.net -# ||d2tgev5wuprbqq.cloudfront.net^ (easylist.txt: 29580) -.d2tgev5wuprbqq.cloudfront.net -# ||d2s64zaa9ua7uv.cloudfront.net^ (easylist.txt: 29579) -.d2s64zaa9ua7uv.cloudfront.net -# ||d2r359adnh3sfn.cloudfront.net^ (easylist.txt: 29578) -.d2r359adnh3sfn.cloudfront.net -# ||d2plxos94peuwp.cloudfront.net^ (easylist.txt: 29577) -.d2plxos94peuwp.cloudfront.net -# ||d2pgy8h4i30on1.cloudfront.net^ (easylist.txt: 29576) -.d2pgy8h4i30on1.cloudfront.net -# ||d2omcicc3a4zlg.cloudfront.net^ (easylist.txt: 29575) -.d2omcicc3a4zlg.cloudfront.net -# ||d2oallm7wrqvmi.cloudfront.net^ (easylist.txt: 29574) -.d2oallm7wrqvmi.cloudfront.net -# ||d2o307dm5mqftz.cloudfront.net^ (easylist.txt: 29573) -.d2o307dm5mqftz.cloudfront.net -# ||d2nlytvx51ywh9.cloudfront.net^ (easylist.txt: 29572) -.d2nlytvx51ywh9.cloudfront.net -# ||d2mq0uzafv8ytp.cloudfront.net^ (easylist.txt: 29571) -.d2mq0uzafv8ytp.cloudfront.net -# ||d2mic0r0bo3i6z.cloudfront.net^ (easylist.txt: 29570) -.d2mic0r0bo3i6z.cloudfront.net -# ||d2ipklohrie3lo.cloudfront.net^ (easylist.txt: 29569) -.d2ipklohrie3lo.cloudfront.net -# ||d2hap2bsh1k9lw.cloudfront.net^ (easylist.txt: 29568) -.d2hap2bsh1k9lw.cloudfront.net -# ||d2gz6iop9uxobu.cloudfront.net^ (easylist.txt: 29567) -.d2gz6iop9uxobu.cloudfront.net -# ||d2gtlljtkeiyzd.cloudfront.net^ (easylist.txt: 29566) -.d2gtlljtkeiyzd.cloudfront.net -# ||d2gpgaupalra1d.cloudfront.net^ (easylist.txt: 29565) -.d2gpgaupalra1d.cloudfront.net -# ||d2dxgm96wvaa5j.cloudfront.net^ (easylist.txt: 29564) -.d2dxgm96wvaa5j.cloudfront.net -# ||d2d2lbvq8xirbs.cloudfront.net^ (easylist.txt: 29563) -.d2d2lbvq8xirbs.cloudfront.net -# ||d2cxkkxhecdzsq.cloudfront.net^ (easylist.txt: 29562) -.d2cxkkxhecdzsq.cloudfront.net -# ||d2bgg7rjywcwsy.cloudfront.net^ (easylist.txt: 29561) -.d2bgg7rjywcwsy.cloudfront.net -# ||d2b65ihpmocv7w.cloudfront.net^ (easylist.txt: 29560) -.d2b65ihpmocv7w.cloudfront.net -# ||d2b2x1ywompm1b.cloudfront.net^ (easylist.txt: 29559) -.d2b2x1ywompm1b.cloudfront.net -# ||d2anfhdgjxf8s1.cloudfront.net^ (easylist.txt: 29558) -.d2anfhdgjxf8s1.cloudfront.net -# ||d29r6igjpnoykg.cloudfront.net^ (easylist.txt: 29556) -.d29r6igjpnoykg.cloudfront.net -# ||d287x05ve9a63s.cloudfront.net^ (easylist.txt: 29555) -.d287x05ve9a63s.cloudfront.net -# ||d27jt7xr4fq3e8.cloudfront.net^ (easylist.txt: 29554) -.d27jt7xr4fq3e8.cloudfront.net -# ||d26wy0pxd3qqpv.cloudfront.net^ (easylist.txt: 29553) -.d26wy0pxd3qqpv.cloudfront.net -# ||d26j9bp9bq4uhd.cloudfront.net^ (easylist.txt: 29552) -.d26j9bp9bq4uhd.cloudfront.net -# ||d26dzd2k67we08.cloudfront.net^ (easylist.txt: 29551) -.d26dzd2k67we08.cloudfront.net -# ||d25xkbr68qqtcn.cloudfront.net^ (easylist.txt: 29550) -.d25xkbr68qqtcn.cloudfront.net -# ||d25ruj6ht8bs1.cloudfront.net^ (easylist.txt: 29549) -.d25ruj6ht8bs1.cloudfront.net -# ||d23nyyb6dc29z6.cloudfront.net^ (easylist.txt: 29548) -.d23nyyb6dc29z6.cloudfront.net -# ||d23guct4biwna6.cloudfront.net^ (easylist.txt: 29547) -.d23guct4biwna6.cloudfront.net -# ||d1zgderxoe1a.cloudfront.net^ (easylist.txt: 29546) -.d1zgderxoe1a.cloudfront.net -# ||d1wa9546y9kg0n.cloudfront.net/index.js (easylist.txt: 29545) -.d1wa9546y9kg0n.cloudfront.net/index\.js -# ||d1vbm0eveofcle.cloudfront.net^ (easylist.txt: 29544) -.d1vbm0eveofcle.cloudfront.net -# ||d1spb7fplenrp4.cloudfront.net^ (easylist.txt: 29543) -.d1spb7fplenrp4.cloudfront.net -# ||d1pdpbxj733bb1.cloudfront.net^ (easylist.txt: 29542) -.d1pdpbxj733bb1.cloudfront.net -# ||d1pcttwib15k25.cloudfront.net^ (easylist.txt: 29541) -.d1pcttwib15k25.cloudfront.net -# ||d1noellhv8fksc.cloudfront.net^ (easylist.txt: 29540) -.d1noellhv8fksc.cloudfront.net -# ||d1k74lgicilrr3.cloudfront.net^ (easylist.txt: 29539) -.d1k74lgicilrr3.cloudfront.net -# ||d1gojtoka5qi10.cloudfront.net^ (easylist.txt: 29538) -.d1gojtoka5qi10.cloudfront.net -# ||d1fo96xm8fci0r.cloudfront.net^ (easylist.txt: 29537) -.d1fo96xm8fci0r.cloudfront.net -# ||d1ey3fksimezm4.cloudfront.net^ (easylist.txt: 29536) -.d1ey3fksimezm4.cloudfront.net -# ||d1ep3cn6qx0l3z.cloudfront.net^ (easylist.txt: 29535) -.d1ep3cn6qx0l3z.cloudfront.net -# ||d1d95giojjkirt.cloudfront.net^ (easylist.txt: 29534) -.d1d95giojjkirt.cloudfront.net -# ||d1cl1sqtf3o420.cloudfront.net^ (easylist.txt: 29533) -.d1cl1sqtf3o420.cloudfront.net -# ||d1ade4ciw4bqyc.cloudfront.net^ (easylist.txt: 29532) -.d1ade4ciw4bqyc.cloudfront.net -# ||d19972r8wdpby8.cloudfront.net^ (easylist.txt: 29531) -.d19972r8wdpby8.cloudfront.net -# ||d17f2fxw547952.cloudfront.net^ (easylist.txt: 29530) -.d17f2fxw547952.cloudfront.net -# ||d15gt9gwxw5wu0.cloudfront.net^ (easylist.txt: 29529) -.d15gt9gwxw5wu0.cloudfront.net -# ||d15565yqt7pv7r.cloudfront.net^ (easylist.txt: 29528) -.d15565yqt7pv7r.cloudfront.net -# ||d140sbu1b1m3h0.cloudfront.net^ (easylist.txt: 29527) -.d140sbu1b1m3h0.cloudfront.net -# ||d13czkep7ax7nj.cloudfront.net^ (easylist.txt: 29526) -.d13czkep7ax7nj.cloudfront.net -# ||d-l-t.com^$subdocument,third-party (easylist.txt: 29525) -.d-l-t.com -# ||cuteonly.com/banners.php$third-party (easylist.txt: 29524) -.cuteonly.com/banners\.php -# ||customer.heartinternet.co.uk^$third-party (easylist.txt: 29523) -.customer.heartinternet.co.uk -# ||customcodebydan.com/images/banner.gif (easylist.txt: 29522) -.customcodebydan.com/images/banner\.gif -# ||cursecdn.com/shared-assets/current/anchor.js?id=$third-party (easylist.txt: 29521) -.cursecdn.com/shared-assets/current/anchor\.js\?id= -# ||cursecdn.com/banner/ (easylist.txt: 29520) -.cursecdn.com/banner/ -# ||cts.tradepub.com/cts4/?ptnr=*&tm=$third-party (easylist.txt: 29519) -.cts.tradepub.com/cts4/\?ptnr=.*&tm= -# ||cstv.com^*/sponsors/ (easylist.txt: 29518) -.cstv.com/.*/sponsors/ -# ||crunchyroll.com/awidget/$third-party (easylist.txt: 29517) -.crunchyroll.com/awidget/ -# ||cruisesalefinder.co.nz/affiliates.html$third-party (easylist.txt: 29516) -.cruisesalefinder.co.nz/affiliates\.html -# ||crowdsavings.com/r/banner/ (easylist.txt: 29515) -.crowdsavings.com/r/banner/ -# ||creatives.summitconnect.co.uk^ (easylist.txt: 29514) -.creatives.summitconnect.co.uk -# ||creatives.inmotionhosting.com^ (easylist.txt: 29513) -.creatives.inmotionhosting.com -# ||cpm.amateurcommunity.de^ (easylist.txt: 29512) -.cpm.amateurcommunity.de -# ||cplayer.blinkx.com^$third-party (easylist.txt: 29511) -.cplayer.blinkx.com -# ||coxnewsweb.com^*/ads/ (easylist.txt: 29510) -.coxnewsweb.com/.*/ads/ -# ||couptopia.com/affiliate/$third-party (easylist.txt: 29509) -.couptopia.com/affiliate/ -# ||couponcp-a.akamaihd.net^$third-party (easylist.txt: 29508) -.couponcp-a.akamaihd.net -# ||conversionplanet.com/published/feeds/$third-party (easylist.txt: 29507) -.conversionplanet.com/published/feeds/ -# ||continent8.com^*/bannerflow/ (easylist.txt: 29506) -.continent8.com/.*/bannerflow/ -# ||contentcastsyndication.com^*&banner (easylist.txt: 29505) -.contentcastsyndication.com/.*&banner -# ||content.secondspace.com^$~image,third-party (easylist.txt: 29504) -.content.secondspace.com -# ||content.livesportmedia.eu^ (easylist.txt: 29503) -.content.livesportmedia.eu -# ||consolpub.com/weatherwindow/ (easylist.txt: 29502) -.consolpub.com/weatherwindow/ -# ||connect.summit.co.uk^ (easylist.txt: 29500) -.connect.summit.co.uk -# ||conduit.com//banners/$third-party (easylist.txt: 29499) -# ||comx-computers.co.za/banners/$third-party (easylist.txt: 29498) -.comx-computers.co.za/banners/ -# ||complexmedianetwork.com/js/cmnUNT.js (easylist.txt: 29497) -.complexmedianetwork.com/js/cmnUNT\.js -# ||colorlabsproject.com^*/banner_ (easylist.txt: 29495) -.colorlabsproject.com/.*/banner_ -# ||colmwynne.com^$image,third-party (easylist.txt: 29494) -.colmwynne.com -# ||code.popup2m.com^$third-party (easylist.txt: 29493) -.code.popup2m.com -# ||cnnewmedia.co.uk/locker/ (easylist.txt: 29492) -.cnnewmedia.co.uk/locker/ -# ||cnhionline.com^*/rtj_ad.jpg (easylist.txt: 29491) -.cnhionline.com/.*/rtj_ad\.jpg -# ||cngroup.co.uk/service/creative/ (easylist.txt: 29490) -.cngroup.co.uk/service/creative/ -# ||cloudzer.net^*/banner/$third-party (easylist.txt: 29489) -.cloudzer.net/.*/banner/ -# ||cloudzer.net/ref/ (easylist.txt: 29488) -.cloudzer.net/ref/ -# ||cloudfront.net/tie.js (easylist.txt: 29484) -.cloudfront.net/tie\.js -# ||cloudfront.net/st.js (easylist.txt: 29483) -.cloudfront.net/st\.js -# ||cloudfront.net/scripts/js3caf.js (easylist.txt: 29482) -.cloudfront.net/scripts/js3caf\.js -# ||cloudfront.net/nimblebuy/ (easylist.txt: 29481) -.cloudfront.net/nimblebuy/ -# ||cloudfront.net/dfpd.js (easylist.txt: 29479) -.cloudfront.net/dfpd\.js -# ||clipdealer.com/?action=widget&*&partner= (easylist.txt: 29478) -.clipdealer.com/\?action=widget&.*&partner= -# ||clicktripz.com/scripts/js/ct.js (easylist.txt: 29477) -.clicktripz.com/scripts/js/ct\.js -# ||clicksure.com/img/resources/banner_ (easylist.txt: 29476) -.clicksure.com/img/resources/banner_ -# ||clickstrip.6wav.es^ (easylist.txt: 29475) -.clickstrip.6wav.es -# ||click.eyk.net^ (easylist.txt: 29474) -.click.eyk.net -# ||clarity.abacast.com^ (easylist.txt: 29473) -.clarity.abacast.com -# ||cjmooter.xcache.kinxcdn.com^ (easylist.txt: 29472) -.cjmooter.xcache.kinxcdn.com -# ||citygridmedia.com/ads/ (easylist.txt: 29471) -.citygridmedia.com/ads/ -# ||circularhub.com^$third-party (easylist.txt: 29470) -.circularhub.com -# ||cimg.in/images/banners/ (easylist.txt: 29469) -.cimg.in/images/banners/ -# ||chriscasconi.com/nostalgia_ad. (easylist.txt: 29468) -.chriscasconi.com/nostalgia_ad\. -# ||choices.truste.com^$third-party (easylist.txt: 29467) -.choices.truste.com -# ||charlestondealstoday.com/aux/ux/_component/ss_dealrail/$subdocument,third-party (easylist.txt: 29466) -.charlestondealstoday.com/aux/ux/_component/ss_dealrail/ -# ||challies.com^*/wtsbooks5.png$third-party (easylist.txt: 29465) -.challies.com/.*/wtsbooks5\.png -# ||chacsystems.com/gk_add.html$third-party (easylist.txt: 29464) -.chacsystems.com/gk_add\.html -# ||cgmlab.com/tools/geotarget/custombanner.js (easylist.txt: 29463) -.cgmlab.com/tools/geotarget/custombanner\.js -# ||cfcdn.com/showcase_sample/search_widget/ (easylist.txt: 29462) -.cfcdn.com/showcase_sample/search_widget/ -# ||cex.io/informer/$third-party (easylist.txt: 29461) -.cex.io/informer/ -# ||cex.io/img/b/ (easylist.txt: 29460) -.cex.io/img/b/ -# ||cerebral.typn.com^ (easylist.txt: 29459) -.cerebral.typn.com -# ||centralscotlandjoinery.co.uk/images/csj-125.gif$third-party (easylist.txt: 29458) -.centralscotlandjoinery.co.uk/images/csj-125\.gif -# ||centralmediaserver.com^*_side_bars.jpg (easylist.txt: 29457) -.centralmediaserver.com/.*_side_bars\.jpg -# ||cdnprk.com/scripts/js3caf.js (easylist.txt: 29456) -.cdnprk.com/scripts/js3caf\.js -# ||cdnprk.com/scripts/js3.js (easylist.txt: 29455) -.cdnprk.com/scripts/js3\.js -# ||cdnpark.com/scripts/js3.js (easylist.txt: 29454) -.cdnpark.com/scripts/js3\.js -# ||cdn.sweeva.com/images/$third-party (easylist.txt: 29452) -.cdn.sweeva.com/images/ -# ||cdn.pubexchange.com/modules/display/$script (easylist.txt: 29451) -.cdn.pubexchange.com/modules/display/ -# ||cdn.offcloud.com^$third-party (easylist.txt: 29450) -.cdn.offcloud.com -# ||cdn.ndparking.com/js/init.min.js (easylist.txt: 29449) -.cdn.ndparking.com/js/init\.min\.js -# ||cdn.cdncomputer.com/js/main.js (easylist.txt: 29448) -.cdn.cdncomputer.com/js/main\.js -# ||cdn.assets.gorillanation.com^$third-party (easylist.txt: 29447) -.cdn.assets.gorillanation.com -# ||cccam.co/banner_big.gif (easylist.txt: 29446) -.cccam.co/banner_big\.gif -# ||cbpirate.com/getimg.php? (easylist.txt: 29445) -.cbpirate.com/getimg\.php\? -# ||caw.criteo.com^$third-party (easylist.txt: 29444) -.caw.criteo.com -# ||caw.*.criteo.com^$third-party (easylist.txt: 29443) -.caw.*./.*\.criteo\.com[^\w%.-] -.caw.*.criteo.com -# ||catholicweb.com^*/banners/ (easylist.txt: 29442) -.catholicweb.com/.*/banners/ -# ||casti.tv/adds/ (easylist.txt: 29441) -.casti.tv/adds/ -# ||castasap.com/publi2.html (easylist.txt: 29440) -.castasap.com/publi2\.html -# ||cashmyvideo.com/images/cashmyvideo_banner.gif (easylist.txt: 29438) -.cashmyvideo.com/images/cashmyvideo_banner\.gif -# ||cashmakingpowersites.com^*/banners/ (easylist.txt: 29437) -.cashmakingpowersites.com/.*/banners/ -# ||cash.neweramediaworks.com^ (easylist.txt: 29436) -.cash.neweramediaworks.com -# ||cas.criteo.com^$third-party (easylist.txt: 29435) -.cas.criteo.com -# ||cas.clickability.com^ (easylist.txt: 29434) -.cas.clickability.com -# ||cas.*.criteo.com^$third-party (easylist.txt: 29433) -.cas.*./.*\.criteo\.com[^\w%.-] -.cas.*.criteo.com -# ||cars.fyidriving.com^$subdocument,third-party (easylist.txt: 29432) -.cars.fyidriving.com -# ||carfax.com/img_myap/$third-party (easylist.txt: 29431) -.carfax.com/img_myap/ -# ||careerjunction.co.za^*/widget?$third-party (easylist.txt: 29430) -.careerjunction.co.za/.*/widget\? -# ||careerjunction.co.za/widgets/$third-party (easylist.txt: 29429) -.careerjunction.co.za/widgets/ -# ||carbiz.in/affiliates-and-partners/ (easylist.txt: 29428) -.carbiz.in/affiliates-and-partners/ -# ||canonresourcecenter.com^$third-party (easylist.txt: 29427) -.canonresourcecenter.com -# ||cancomdigital.com/resourcecenter/$third-party (easylist.txt: 29426) -.cancomdigital.com/resourcecenter/ -# ||camelmedia.net^*/banners/ (easylist.txt: 29425) -.camelmedia.net/.*/banners/ -# ||cal-one.net/ellington/search_form.php? (easylist.txt: 29424) -.cal-one.net/ellington/search_form\.php\? -# ||cal-one.net/ellington/deals_widget.php? (easylist.txt: 29423) -.cal-one.net/ellington/deals_widget\.php\? -# ||cactusvpn.com/images/affiliates/ (easylist.txt: 29422) -.cactusvpn.com/images/affiliates/ -# ||cachefly.net/cricad.html (easylist.txt: 29421) -.cachefly.net/cricad\.html -# ||c.netu.tv^ (easylist.txt: 29420) -.c.netu.tv -# ||byzoo.org/script/tu*.js (easylist.txt: 29419) -.byzoo.org/script/tu.*\.js -# ||buzznet.com^*/showpping-banner-$third-party (easylist.txt: 29418) -.buzznet.com/.*/showpping-banner- -# ||buzina.xyz^$script (easylist.txt: 29417) -.buzina.xyz -# ||buyt.in/api?widgets=$script,third-party (easylist.txt: 29416) -.buyt.in/api\?widgets= -# ||buyhatke.com/widgetBack/ (easylist.txt: 29415) -.buyhatke.com/widgetBack/ -# ||buy.com^*/affiliate/ (easylist.txt: 29414) -.buy.com/.*/affiliate/ -# ||businessnewswatch.ca/images/nnwbanner/ (easylist.txt: 29413) -.businessnewswatch.ca/images/nnwbanner/ -# ||burstnet.akadns.net^$image (easylist.txt: 29412) -.burstnet.akadns.net -# ||burst.net/aff/ (easylist.txt: 29411) -.burst.net/aff/ -# ||bullguard.com^*/banners/ (easylist.txt: 29410) -.bullguard.com/.*/banners/ -# ||bubbles-uk.com/banner/$third-party (easylist.txt: 29409) -.bubbles-uk.com/banner/ -# ||btrd.net/assets/interstitial$script (easylist.txt: 29408) -.btrd.net/assets/interstitial -# ||btr.domywife.com^ (easylist.txt: 29407) -.btr.domywife.com -# ||btguard.com/images/$third-party (easylist.txt: 29406) -.btguard.com/images/ -# ||bruteforcesocialmedia.com/affiliates/ (easylist.txt: 29405) -.bruteforcesocialmedia.com/affiliates/ -# ||bruteforceseo.com/affiliates/ (easylist.txt: 29404) -.bruteforceseo.com/affiliates/ -# ||broadbandgenie.co.uk/widget?$third-party (easylist.txt: 29403) -.broadbandgenie.co.uk/widget\? -# ||brettterpstra.com/wp-content/uploads/$third-party (easylist.txt: 29402) -.brettterpstra.com/wp-content/uploads/ -# ||break.com^*/partnerpublish/ (easylist.txt: 29401) -.break.com/.*/partnerpublish/ -# ||break.com/break/html/$subdocument (easylist.txt: 29400) -.break.com/break/html/ -# ||bravenet.com/cserv.php (easylist.txt: 29399) -.bravenet.com/cserv\.php -# ||bplaced.net/pub/ (easylist.txt: 29398) -.bplaced.net/pub/ -# ||bpath.com/affiliates/ (easylist.txt: 29397) -.bpath.com/affiliates/ -# ||box.anchorfree.net^ (easylist.txt: 29396) -.box.anchorfree.net -# ||bosh.tv/hdplugin. (easylist.txt: 29395) -.bosh.tv/hdplugin\. -# ||borrowlenses.com/affiliate/ (easylist.txt: 29394) -.borrowlenses.com/affiliate/ -# ||bordernode.com/images/$third-party (easylist.txt: 29393) -.bordernode.com/images/ -# ||bookingdragon.com^$subdocument,third-party (easylist.txt: 29392) -.bookingdragon.com -# ||booking.com^*;tmpl=banner_ (easylist.txt: 29391) -.booking.com/.*;tmpl=banner_ -# ||bollyrulez.net/media/adz/ (easylist.txt: 29389) -.bollyrulez.net/media/adz/ -# ||boago.com^*_Takeover_ (easylist.txt: 29388) -.boago.com/.*_Takeover_ -# ||bo-videos.s3.amazonaws.com^$third-party (easylist.txt: 29387) -.bo-videos.s3.amazonaws.com -# ||bluhostedbanners.blucigs.com^ (easylist.txt: 29386) -.bluhostedbanners.blucigs.com -# ||bluesattv.net/bluesattvnet.gif (easylist.txt: 29385) -.bluesattv.net/bluesattvnet\.gif -# ||bluesattv.net/bluesat.swf (easylist.txt: 29384) -.bluesattv.net/bluesat\.swf -# ||bluepromocode.com/images/widgets/$third-party (easylist.txt: 29383) -.bluepromocode.com/images/widgets/ -# ||bloodstock.uk.com/affiliates/ (easylist.txt: 29382) -.bloodstock.uk.com/affiliates/ -# ||blocks.ginotrack.com^$third-party (easylist.txt: 29381) -.blocks.ginotrack.com -# ||blissful-sin.com/affiliates/ (easylist.txt: 29380) -.blissful-sin.com/affiliates/ -# ||bliss-systems-api.co.uk^$third-party (easylist.txt: 29379) -.bliss-systems-api.co.uk -# ||blinkx.com/f2/overlays/ (easylist.txt: 29378) -.blinkx.com/f2/overlays/ -# ||blinkx.com/?i=*&adc_pub_id=$script,third-party (easylist.txt: 29377) -.blinkx.com/\?i=.*&adc_pub_id= -# ||blindferret.com/images/*_skin_ (easylist.txt: 29376) -.blindferret.com/images/.*_skin_ -# ||blamads-assets.s3.amazonaws.com^ (easylist.txt: 29375) -.blamads-assets.s3.amazonaws.com -# ||bl.wavecdn.de^ (easylist.txt: 29374) -.bl.wavecdn.de -# ||bittorrent.am/serws.php?$third-party (easylist.txt: 29373) -.bittorrent.am/serws\.php\? -# ||bitshare.com^*/banner/ (easylist.txt: 29372) -.bitshare.com/.*/banner/ -# ||bitcoinwebhosting.net/banners/$third-party (easylist.txt: 29371) -.bitcoinwebhosting.net/banners/ -# ||bitcoindice.com/img/bitcoindice_$third-party (easylist.txt: 29370) -.bitcoindice.com/img/bitcoindice_ -# ||binopt.net/banners/ (easylist.txt: 29368) -.binopt.net/banners/ -# ||binbox.io/public/img/promo/$third-party (easylist.txt: 29367) -.binbox.io/public/img/promo/ -# ||bijk.com^*/banners/ (easylist.txt: 29366) -.bijk.com/.*/banners/ -# ||bigrock.in/affiliate/ (easylist.txt: 29365) -.bigrock.in/affiliate/ -# ||bigpond.com/specials/$subdocument,third-party (easylist.txt: 29364) -.bigpond.com/specials/ -# ||bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview.jsp?$third-party (easylist.txt: 29362) -.bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview\.jsp\? -# ||bidorbuy.co.za/jsp/system/referral.jsp? (easylist.txt: 29361) -.bidorbuy.co.za/jsp/system/referral\.jsp\? -# ||bidgo.ca^$subdocument,third-party (easylist.txt: 29360) -.bidgo.ca -# ||bharatmatrimony.com/matrimoney/matrimoneybanners/$third-party (easylist.txt: 29359) -.bharatmatrimony.com/matrimoney/matrimoneybanners/ -# ||betwaypartners.com/affiliate_media/$third-party (easylist.txt: 29358) -.betwaypartners.com/affiliate_media/ -# ||betting.betfair.com^$third-party (easylist.txt: 29357) -.betting.betfair.com -# ||betterbills.com.au/widgets/ (easylist.txt: 29356) -.betterbills.com.au/widgets/ -# ||beta.down2crazy.com^$third-party (easylist.txt: 29355) -.beta.down2crazy.com -# ||bet-at-home.com/oddbanner.aspx? (easylist.txt: 29354) -.bet-at-home.com/oddbanner\.aspx\? -# ||bestofmedia.com/ws/communicationSpot.php? (easylist.txt: 29353) -.bestofmedia.com/ws/communicationSpot\.php\? -# ||besthosting.ua/banner/ (easylist.txt: 29352) -.besthosting.ua/banner/ -# ||berush.com/images/whorush_120x120_ (easylist.txt: 29351) -.berush.com/images/whorush_120x120_ -# ||berush.com/images/semrush_banner_ (easylist.txt: 29350) -.berush.com/images/semrush_banner_ -# ||berush.com/images/*_semrush_$third-party (easylist.txt: 29349) -.berush.com/images/.*_semrush_ -# ||bergen.com^*/sponsoredby- (easylist.txt: 29348) -.bergen.com/.*/sponsoredby- -# ||bemyapp.com/trk/$third-party (easylist.txt: 29347) -.bemyapp.com/trk/ -# ||bee4.biz/banners/ (easylist.txt: 29346) -.bee4.biz/banners/ -# ||beachcamera.com/assets/banners/ (easylist.txt: 29345) -.beachcamera.com/assets/banners/ -# ||bc.vc/js/link-converter.js$third-party (easylist.txt: 29344) -.bc.vc/js/link-converter\.js -# ||bc.coupons.com^$third-party (easylist.txt: 29343) -.bc.coupons.com -# ||bbcchannels.com/workspace/uploads/ (easylist.txt: 29342) -.bbcchannels.com/workspace/uploads/ -# ||banners.webmasterplan.com^$third-party (easylist.txt: 29341) -.banners.webmasterplan.com -# ||banners.videosz.com^$third-party (easylist.txt: 29340) -.banners.videosz.com -# ||banners.smarttweak.com^$third-party (easylist.txt: 29339) -.banners.smarttweak.com -# ||banners.moreniche.com^$third-party (easylist.txt: 29338) -.banners.moreniche.com -# ||banners.ixitools.com^$third-party (easylist.txt: 29337) -.banners.ixitools.com -# ||banners.cfspm.com.au^$third-party (easylist.txt: 29336) -.banners.cfspm.com.au -# ||bannermaken.nl/banners/$third-party (easylist.txt: 29335) -.bannermaken.nl/banners/ -# ||banner2.casino.com^$third-party (easylist.txt: 29334) -.banner2.casino.com -# ||banner.titanpoker.com^$third-party (easylist.txt: 29333) -.banner.titanpoker.com -# ||banner.titancasino.com^ (easylist.txt: 29332) -.banner.titancasino.com -# ||banner.telefragged.com^ (easylist.txt: 29331) -.banner.telefragged.com -# ||banner.europacasino.com^ (easylist.txt: 29330) -.banner.europacasino.com -# ||banner.3ddownloads.com^ (easylist.txt: 29329) -.banner.3ddownloads.com -# ||banner.101xp.com^ (easylist.txt: 29328) -.banner.101xp.com -# ||banman.isoftmarketing.com^$third-party (easylist.txt: 29327) -.banman.isoftmarketing.com -# ||bankrate.com/jsfeeds/$third-party (easylist.txt: 29325) -.bankrate.com/jsfeeds/ -# ||bamstudent.com/files/banners/ (easylist.txt: 29324) -.bamstudent.com/files/banners/ -# ||ball2win.com/Affiliate/ (easylist.txt: 29323) -.ball2win.com/Affiliate/ -# ||badoo.com/informer/$third-party (easylist.txt: 29322) -.badoo.com/informer/ -# ||babylon.com^*?affid= (easylist.txt: 29321) -.babylon.com/.*\?affid= -# ||babylon.com/trans_box/*&affiliate= (easylist.txt: 29320) -.babylon.com/trans_box/.*&affiliate= -# ||babylon.com/systems/af/landing/$third-party (easylist.txt: 29319) -.babylon.com/systems/af/landing/ -# ||babylon.com/site/images/common.js$third-party (easylist.txt: 29318) -.babylon.com/site/images/common\.js -# ||b92s.net/images/banners/ (easylist.txt: 29317) -.b92s.net/images/banners/ -# ||b92.putniktravel.com^ (easylist.txt: 29316) -.b92.putniktravel.com -# ||b.sell.com^$third-party (easylist.txt: 29314) -.b.sell.com -# ||b.livesport.eu^ (easylist.txt: 29313) -.b.livesport.eu -# ||b.babylon.com^ (easylist.txt: 29312) -.b.babylon.com -# ||axandra.com/affiliates/ (easylist.txt: 29310) -.axandra.com/affiliates/ -# ||award.sitekeuring.net^ (easylist.txt: 29309) -.award.sitekeuring.net -# ||awadhtimes.com^$third-party (easylist.txt: 29308) -.awadhtimes.com -# ||autoprivileges.net/news/ (easylist.txt: 29307) -.autoprivileges.net/news/ -# ||augine.com/widget|$third-party (easylist.txt: 29306) -.augine.com/widget$ -# ||atomicpopularity.com/dfpd.js (easylist.txt: 29305) -.atomicpopularity.com/dfpd\.js -# ||athena-ads.wikia.com^$third-party (easylist.txt: 29304) -.athena-ads.wikia.com -# ||astrology.com/partnerpages/ (easylist.txt: 29303) -.astrology.com/partnerpages/ -# ||astalavista.box.sk/c-astalink2a.jpg (easylist.txt: 29302) -.astalavista.box.sk/c-astalink2a\.jpg -# ||associmg.com^*.gif?tag- (easylist.txt: 29301) -.associmg.com/.*\.gif\?tag- -# ||assets.betterbills.com/widgets/ (easylist.txt: 29300) -.assets.betterbills.com/widgets/ -# ||as.jivox.com/jivox/serverapis/getcampaignbysite.php?$object-subrequest (easylist.txt: 29299) -.as.jivox.com/jivox/serverapis/getcampaignbysite\.php\? -# ||as.devbridge.com^$third-party (easylist.txt: 29298) -.as.devbridge.com -# ||artistdirect.com/partner/ (easylist.txt: 29297) -.artistdirect.com/partner/ -# ||arntrnassets.mediaspanonline.com^*_HP_wings_ (easylist.txt: 29296) -.arntrnassets.mediaspanonline.com/.*_HP_wings_ -# ||ard.ihookup.com^ (easylist.txt: 29295) -.ard.ihookup.com -# ||arcadetown.com/as/show.asp (easylist.txt: 29294) -.arcadetown.com/as/show\.asp -# ||appwork.org/hoster/banner_$third-party (easylist.txt: 29293) -.appwork.org/hoster/banner_ -# ||appsgenius.com/images/$third-party (easylist.txt: 29292) -.appsgenius.com/images/ -# ||apple.com/itunesaffiliates/ (easylist.txt: 29291) -.apple.com/itunesaffiliates/ -# ||appdevsecrets.com/images/nuts/ (easylist.txt: 29290) -.appdevsecrets.com/images/nuts/ -# ||apnonline.com.au/img/marketplace/*_ct50x50.gif (easylist.txt: 29289) -.apnonline.com.au/img/marketplace/.*_ct50x50\.gif -# ||api.ticketnetwork.com/Events/TopSelling/domain=nytimes.com (easylist.txt: 29288) -.api.ticketnetwork.com/Events/TopSelling/domain=nytimes\.com -# ||api.groupon.com/v2/deals/$third-party (easylist.txt: 29287) -.api.groupon.com/v2/deals/ -# ||api.bitp.it^$third-party (easylist.txt: 29286) -.api.bitp.it -# ||api.140proof.com^$third-party (easylist.txt: 29285) -.api.140proof.com -# ||aolcdn.com/os/music/img/*-skin.jpg (easylist.txt: 29284) -.aolcdn.com/os/music/img/.*-skin\.jpg -# ||aolcdn.com/os/mapquest/promo-images/ (easylist.txt: 29283) -.aolcdn.com/os/mapquest/promo-images/ -# ||aolcdn.com/os/mapquest/marketing/promos/ (easylist.txt: 29282) -.aolcdn.com/os/mapquest/marketing/promos/ -# ||aol.co.uk^*/cobrand.js (easylist.txt: 29281) -.aol.co.uk/.*/cobrand\.js -# ||any.gs/visitScript/$third-party (easylist.txt: 29280) -.any.gs/visitScript/ -# ||anonym.to/*findandtry.com (easylist.txt: 29279) -.anonym.to/.*findandtry\.com -# ||anime.jlist.com^$third-party (easylist.txt: 29278) -.anime.jlist.com -# ||angelbc.com/clients/*/banners/$third-party (easylist.txt: 29277) -.angelbc.com/clients/.*/banners/ -# ||analytics.disneyinternational.com^ (easylist.txt: 29275) -.analytics.disneyinternational.com -# ||amazonaws.com/youpop/ (easylist.txt: 29272) -.amazonaws.com/youpop/ -# ||amazonaws.com/widgets.youcompare.com.au/ (easylist.txt: 29271) -.amazonaws.com/widgets\.youcompare\.com\.au/ -# ||amazonaws.com/streetpulse/ads/ (easylist.txt: 29270) -.amazonaws.com/streetpulse/ads/ -# ||amazonaws.com/skyscrpr.js (easylist.txt: 29269) -.amazonaws.com/skyscrpr\.js -# ||amazonaws.com/publishflow/ (easylist.txt: 29268) -.amazonaws.com/publishflow/ -# ||amazonaws.com/pmb-musics/download_itunes.png (easylist.txt: 29267) -.amazonaws.com/pmb-musics/download_itunes\.png -# ||amazonaws.com/photos.offers.analoganalytics.com/ (easylist.txt: 29265) -.amazonaws.com/photos\.offers\.analoganalytics\.com/ -# ||amazonaws.com/lms/sponsors/ (easylist.txt: 29263) -.amazonaws.com/lms/sponsors/ -# ||amazonaws.com/fvefwdds/ (easylist.txt: 29261) -.amazonaws.com/fvefwdds/ -# ||amazonaws.com/btrb-prd-banners/ (easylist.txt: 29258) -.amazonaws.com/btrb-prd-banners/ -# ||amazonaws.com/bo-assets/production/banner_attachments/ (easylist.txt: 29257) -.amazonaws.com/bo-assets/production/banner_attachments/ -# ||amazonaws.com/ad_w_intersitial.html (easylist.txt: 29254) -.amazonaws.com/ad_w_intersitial\.html -# ||amazon.com^*/getaanad?$third-party (easylist.txt: 29253) -.amazon.com/.*/getaanad\? -# ||amazon.com/gp/redirect.html?$subdocument,third-party (easylist.txt: 29252) -.amazon.com/gp/redirect\.html\? -# ||amazon.com/?_encoding*&linkcode$third-party (easylist.txt: 29251) -.amazon.com/\?_encoding.*&linkcode -# ||altushost.com/docs/$third-party (easylist.txt: 29250) -.altushost.com/docs/ -# ||alpsat.com/banner/ (easylist.txt: 29249) -.alpsat.com/banner/ -# ||alluremedia.com.au^*/campaigns/ (easylist.txt: 29248) -.alluremedia.com.au/.*/campaigns/ -# ||allsend.com/public/assets/images/ (easylist.txt: 29247) -.allsend.com/public/assets/images/ -# ||allposters.com^*/banners/ (easylist.txt: 29246) -.allposters.com/.*/banners/ -# ||algovid.com/player/get_player_vasts? (easylist.txt: 29245) -.algovid.com/player/get_player_vasts\? -# ||algart.net*_banner_$third-party (easylist.txt: 29244) -.algart.net*./.*_banner_ -# ||alexa.com^*/promotebuttons/ (easylist.txt: 29243) -.alexa.com/.*/promotebuttons/ -# ||akamaihd.net^*/web/pdk/swf/freewheel.swf?$third-party (easylist.txt: 29242) -.akamaihd.net/.*/web/pdk/swf/freewheel\.swf\? -# ||akamaihd.net/ssa/*?zoneid=$subdocument (easylist.txt: 29241) -.akamaihd.net/ssa/.*\?zoneid= -# ||akamaihd.net/lmedianet.js (easylist.txt: 29239) -.akamaihd.net/lmedianet\.js -# ||akamai.net^*/pics.drugstore.com/prodimg/promo/ (easylist.txt: 29238) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# ||akamai.net^*/espnpreroll/$object-subrequest (easylist.txt: 29237) -.akamai.net/.*/espnpreroll/ -# ||akamai.net^*.247realmedia.com/$third-party (easylist.txt: 29236) -.akamai.net/.*\.247realmedia\.com/ -# ||ak1.imgaft.com^$third-party (easylist.txt: 29235) -.ak1.imgaft.com -# ||ak.imgaft.com^$third-party (easylist.txt: 29234) -.ak.imgaft.com -# ||ais.abacast.com^ (easylist.txt: 29233) -.ais.abacast.com -# ||airvpn.org/images/promotional/ (easylist.txt: 29232) -.airvpn.org/images/promotional/ -# ||airpushmarketing.s3.amazonaws.com^ (easylist.txt: 29231) -.airpushmarketing.s3.amazonaws.com -# ||ahlanlive.com/newsletters/banners/$third-party (easylist.txt: 29230) -.ahlanlive.com/newsletters/banners/ -# ||agoda.net/banners/ (easylist.txt: 29229) -.agoda.net/banners/ -# ||agenda.complex.com^ (easylist.txt: 29228) -.agenda.complex.com -# ||afimg.liveperson.com^$third-party (easylist.txt: 29227) -.afimg.liveperson.com -# ||affutdmedia.com^$third-party (easylist.txt: 29226) -.affutdmedia.com -# ||affiliation.fotovista.com^ (easylist.txt: 29225) -.affiliation.fotovista.com -# ||affiliation.filestube.com^$third-party (easylist.txt: 29224) -.affiliation.filestube.com -# ||affiliatesmedia.sbobet.com^ (easylist.txt: 29223) -.affiliatesmedia.sbobet.com -# ||affiliates.picaboocorp.com^$third-party (easylist.txt: 29222) -.affiliates.picaboocorp.com -# ||affiliates.lynda.com^$third-party (easylist.txt: 29221) -.affiliates.lynda.com -# ||affiliates.homestead.com^$third-party (easylist.txt: 29220) -.affiliates.homestead.com -# ||affiliates.bookdepository.com^$third-party (easylist.txt: 29219) -.affiliates.bookdepository.com -# ||affiliates.bookdepository.co.uk^$third-party (easylist.txt: 29218) -.affiliates.bookdepository.co.uk -# ||affiliates.allposters.com^ (easylist.txt: 29217) -.affiliates.allposters.com -# ||affiliates-cdn.mozilla.org^$third-party (easylist.txt: 29216) -.affiliates-cdn.mozilla.org -# ||affiliateprogram.keywordspy.com^ (easylist.txt: 29215) -.affiliateprogram.keywordspy.com -# ||affiliatehub.skybet.com^$third-party (easylist.txt: 29214) -.affiliatehub.skybet.com -# ||affiliate.mediatemple.net^$third-party (easylist.txt: 29213) -.affiliate.mediatemple.net -# ||affiliate.juno.co.uk^$third-party (easylist.txt: 29212) -.affiliate.juno.co.uk -# ||affil.mupromo.com^ (easylist.txt: 29211) -.affil.mupromo.com -# ||aff.svjump.com^ (easylist.txt: 29210) -.aff.svjump.com -# ||aff.marathonbet.com^ (easylist.txt: 29209) -.aff.marathonbet.com -# ||aff.eteachergroup.com^ (easylist.txt: 29208) -.aff.eteachergroup.com -# ||aff.cupidplc.com^$third-party (easylist.txt: 29207) -.aff.cupidplc.com -# ||afcdn.com^*/ova-jw.swf$object-subrequest (easylist.txt: 29206) -.afcdn.com/.*/ova-jw\.swf -# ||adziff.com^*/zdcse.min.js (easylist.txt: 29205) -.adziff.com/.*/zdcse\.min\.js -# ||adz.zwee.ly^ (easylist.txt: 29204) -.adz.zwee.ly -# ||advanced-intelligence.com/banner (easylist.txt: 29203) -.advanced-intelligence.com/banner -# ||adstest.zaman.com.tr^$third-party (easylist.txt: 29202) -.adstest.zaman.com.tr -# ||adss.dotdo.net^ (easylist.txt: 29201) -.adss.dotdo.net -# ||adsrv.eacdn.com^$third-party (easylist.txt: 29200) -.adsrv.eacdn.com -# ||adserv.legitreviews.com^$third-party (easylist.txt: 29199) -.adserv.legitreviews.com -# ||adscaspion.appspot.com^ (easylist.txt: 29198) -.adscaspion.appspot.com -# ||ads.tremorhub.com^ (easylist.txt: 29197) -.ads.tremorhub.com -# ||ads.mp.mydas.mobi^ (easylist.txt: 29196) -.ads.mp.mydas.mobi -# ||ads.dynamicyield.com^$third-party (easylist.txt: 29195) -.ads.dynamicyield.com -# ||adr-*.vindicosuite.com^ (easylist.txt: 29194) -.adr-*./.*\.vindicosuite\.com[^\w%.-] -.adr-*.vindicosuite.com -# ||adplus.goo.mx^ (easylist.txt: 29193) -.adplus.goo.mx -# ||adn.ebay.com^ (easylist.txt: 29192) -.adn.ebay.com -# ||adm.shinobi.jp^$third-party (easylist.txt: 29191) -.adm.shinobi.jp -# ||adlandpro.com^$third-party (easylist.txt: 29190) -.adlandpro.com -# ||adingo.jp.eimg.jp^ (easylist.txt: 29189) -.adingo.jp.eimg.jp -# ||adfoc.us/js/$third-party (easylist.txt: 29188) -.adfoc.us/js/ -# ||adf.ly^*/link-converter.js$third-party (easylist.txt: 29187) -.adf.ly/.*/link-converter\.js -# ||adf.ly/images/banners/ (easylist.txt: 29185) -.adf.ly/images/banners/ -# ||addme.com/images/addme_$third-party (easylist.txt: 29183) -.addme.com/images/addme_ -# ||add.bugun.com.tr^ (easylist.txt: 29182) -.add.bugun.com.tr -# ||adap.tv/redir/plugins3/$object-subrequest (easylist.txt: 29181) -.adap.tv/redir/plugins3/ -# ||adap.tv/redir/plugins/$object-subrequest (easylist.txt: 29180) -.adap.tv/redir/plugins/ -# ||adap.tv/redir/client/static/as3adplayer.swf (easylist.txt: 29179) -.adap.tv/redir/client/static/as3adplayer\.swf -# ||ad2links.com/js/$third-party (easylist.txt: 29178) -.ad2links.com/js/ -# ||ad.zaman.com.tr^$third-party (easylist.txt: 29177) -.ad.zaman.com.tr -# ||ad.wsod.com^$third-party (easylist.txt: 29176) -.ad.wsod.com -# ||ad.winningpartner.com^ (easylist.txt: 29175) -.ad.winningpartner.com -# ||ad.vidaroo.com^ (easylist.txt: 29174) -.ad.vidaroo.com -# ||ad.valuecalling.com^$third-party (easylist.txt: 29173) -.ad.valuecalling.com -# ||ad.sponsoreo.com^$third-party (easylist.txt: 29172) -.ad.sponsoreo.com -# ||ad.spielothek.so^ (easylist.txt: 29171) -.ad.spielothek.so -# ||ad.smartclip.net^ (easylist.txt: 29170) -.ad.smartclip.net -# ||ad.sharethis.com^$third-party (easylist.txt: 29169) -.ad.sharethis.com -# ||ad.sensismediasmart.com.au^ (easylist.txt: 29168) -.ad.sensismediasmart.com.au -# ||ad.reklamport.com^ (easylist.txt: 29167) -.ad.reklamport.com -# ||ad.realmcdn.net^$third-party (easylist.txt: 29166) -.ad.realmcdn.net -# ||ad.rambler.ru^ (easylist.txt: 29165) -.ad.rambler.ru -# ||ad.r.worldssl.net^ (easylist.txt: 29164) -.ad.r.worldssl.net -# ||ad.proxy.sh^ (easylist.txt: 29163) -.ad.proxy.sh -# ||ad.premiumonlinemedia.com^$third-party (easylist.txt: 29162) -.ad.premiumonlinemedia.com -# ||ad.pickple.net^ (easylist.txt: 29161) -.ad.pickple.net -# ||ad.outsidehub.com^ (easylist.txt: 29160) -.ad.outsidehub.com -# ||ad.openmultimedia.biz^ (easylist.txt: 29159) -.ad.openmultimedia.biz -# ||ad.netcommunities.com^$third-party (easylist.txt: 29158) -.ad.netcommunities.com -# ||ad.mygamesol.com^$third-party (easylist.txt: 29157) -.ad.mygamesol.com -# ||ad.mesomorphosis.com^ (easylist.txt: 29156) -.ad.mesomorphosis.com -# ||ad.mail.ru^ (easylist.txt: 29155) -.ad.mail.ru -# ||ad.livere.co.kr^ (easylist.txt: 29154) -.ad.livere.co.kr -# ||ad.linkstorms.com^$third-party (easylist.txt: 29153) -.ad.linkstorms.com -# ||ad.lijit.com^$third-party (easylist.txt: 29152) -.ad.lijit.com -# ||ad.jokeroo.com^$third-party (easylist.txt: 29151) -.ad.jokeroo.com -# ||ad.jamba.net^ (easylist.txt: 29150) -.ad.jamba.net -# ||ad.indomp3z.us^$third-party (easylist.txt: 29149) -.ad.indomp3z.us -# ||ad.imad.co.kr^$third-party (easylist.txt: 29148) -.ad.imad.co.kr -# ||ad.idgtn.net^ (easylist.txt: 29147) -.ad.idgtn.net -# ||ad.icasthq.com^ (easylist.txt: 29146) -.ad.icasthq.com -# ||ad.ghfusion.com^$third-party (easylist.txt: 29145) -.ad.ghfusion.com -# ||ad.foxnetworks.com^ (easylist.txt: 29144) -.ad.foxnetworks.com -# ||ad.flux.com^ (easylist.txt: 29143) -.ad.flux.com -# ||ad.e-kolay.net^$third-party (easylist.txt: 29142) -.ad.e-kolay.net -# ||ad.bitmedia.io^ (easylist.txt: 29141) -.ad.bitmedia.io -# ||ad.aquamediadirect.com^$third-party (easylist.txt: 29140) -.ad.aquamediadirect.com -# ||ad.accessmediaproductions.com^ (easylist.txt: 29138) -.ad.accessmediaproductions.com -# ||ad.about.co.kr^ (easylist.txt: 29137) -.ad.about.co.kr -# ||ad.23blogs.com^$third-party (easylist.txt: 29136) -.ad.23blogs.com -# ||ablacrack.com/popup-pvd.js$third-party (easylist.txt: 29135) -.ablacrack.com/popup-pvd\.js -# ||abacast.com/banner/ (easylist.txt: 29134) -.abacast.com/banner/ -# ||aadvertismentt.com^$subdocument (easylist.txt: 29133) -.aadvertismentt.com -# ||a1channel.net/img/watch_now.gif (easylist.txt: 29132) -.a1channel.net/img/watch_now\.gif -# ||a1channel.net/img/downloadbtn2.png (easylist.txt: 29131) -.a1channel.net/img/downloadbtn2\.png -# ||a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com^ (easylist.txt: 29130) -.a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com -# ||a.watershed-publishing.com^ (easylist.txt: 29129) -.a.watershed-publishing.com -# ||a.ucoz.net^ (easylist.txt: 29128) -.a.ucoz.net -# ||a.livesportmedia.eu^ (easylist.txt: 29127) -.a.livesportmedia.eu -# ||96.9.176.245^$third-party (easylist.txt: 29126) -.96.9.176.245 -# ||80.94.76.4/abd.php? (easylist.txt: 29124) -.80.94.76.4/abd\.php\? -# ||770.com/banniere.php? (easylist.txt: 29123) -.770.com/banniere\.php\? -# ||6theory.com/pub/ (easylist.txt: 29122) -.6theory.com/pub/ -# ||4getlikes.com/promo/ (easylist.txt: 29119) -.4getlikes.com/promo/ -# ||3dots.co.il/pop/ (easylist.txt: 29118) -.3dots.co.il/pop/ -# ||360pal.com/ads/$third-party (easylist.txt: 29117) -.360pal.com/ads/ -# ||2yu.in/banner/$third-party (easylist.txt: 29116) -.2yu.in/banner/ -# ||2leep.com/ticker2/$third-party (easylist.txt: 29115) -.2leep.com/ticker2/ -# ||2beon.co.kr/nad/$third-party (easylist.txt: 29114) -.2beon.co.kr/nad/ -# ||24hrlikes.com/images/$third-party (easylist.txt: 29113) -.24hrlikes.com/images/ -# ||24casino.cz/poker300-$third-party (easylist.txt: 29112) -.24casino.cz/poker300- -# ||247hd.net/ad| (easylist.txt: 29111) -.247hd.net/ad$ -# ||24.com//flashplayer/ova-jw.swf$object-subrequest (easylist.txt: 29110) -# ||1whois.org/static/popup.js (easylist.txt: 29105) -.1whois.org/static/popup\.js -# ||1stag.com/main/img/banners/ (easylist.txt: 29104) -.1stag.com/main/img/banners/ -# ||1page.co.za/affiliate/ (easylist.txt: 29103) -.1page.co.za/affiliate/ -# ||178.238.233.242/open.js (easylist.txt: 29102) -.178.238.233.242/open\.js -# ||178.17.164.58^$script,third-party (easylist.txt: 29101) -.178.17.164.58 -# ||12dayswidget.com/widgets/ (easylist.txt: 29098) -.12dayswidget.com/widgets/ -# ||110mb.com/images/banners/ (easylist.txt: 29097) -.110mb.com/images/banners/ -# ||110.45.173.103/ad/$third-party (easylist.txt: 29096) -.110.45.173.103/ad/ -# ||1-million-usd.com/images/banners/ (easylist.txt: 29093) -.1-million-usd.com/images/banners/ -# ||04stream.com/pop*.js (easylist.txt: 29092) -.04stream.com/pop.*\.js -# ||000webhost.com/images/banners/ (easylist.txt: 29091) -.000webhost.com/images/banners/ -# -api.adyoulike.com (easylist.txt: 29090) -/.*-api\.adyoulike\.com -.*-api.adyoulike.com*. -# ||y72yuyr9.com^$popup,third-party (easylist.txt: 29087) -.y72yuyr9.com -# ||xxxmatch.com^$popup (easylist.txt: 29086) -.xxxmatch.com -# ||xxxbunker.com^$popup,third-party (easylist.txt: 29085) -.xxxbunker.com -# ||xvika.net^$popup,third-party (easylist.txt: 29084) -.xvika.net -# ||xvika.com^$popup,third-party (easylist.txt: 29083) -.xvika.com -# ||xpeeps.com^$popup,third-party (easylist.txt: 29082) -.xpeeps.com -# ||xmatch.com^$popup (easylist.txt: 29081) -.xmatch.com -# ||xdtraffic.com^$popup,third-party (easylist.txt: 29080) -.xdtraffic.com -# ||x2porn.eu^$popup,third-party (easylist.txt: 29079) -.x2porn.eu -# ||watchmygf.com^$popup (easylist.txt: 29078) -.watchmygf.com -# ||voyeurbase.com^$popup,third-party (easylist.txt: 29077) -.voyeurbase.com -# ||vlexokrako.com^$popup (easylist.txt: 29076) -.vlexokrako.com -# ||turnefo.ru^$popup (easylist.txt: 29075) -.turnefo.ru -# ||trafficstars.com^$popup (easylist.txt: 29074) -.trafficstars.com -# ||trafficholder.com^$popup,third-party (easylist.txt: 29073) -.trafficholder.com -# ||trafficbroker.com^$popup (easylist.txt: 29072) -.trafficbroker.com -# ||trackvoluum.com^$popup (easylist.txt: 29071) -.trackvoluum.com -# ||targetingnow.com^$popup,third-party (easylist.txt: 29070) -.targetingnow.com -# ||socialsex.com^$popup,third-party (easylist.txt: 29069) -.socialsex.com -# ||socialsex.biz^$popup,third-party (easylist.txt: 29068) -.socialsex.biz -# ||sexintheuk.com^$popup,third-party (easylist.txt: 29067) -.sexintheuk.com -# ||sexflirtbook.com^$popup,third-party (easylist.txt: 29066) -.sexflirtbook.com -# ||sexad.net^$popup,third-party (easylist.txt: 29065) -.sexad.net -# ||sex-journey.com^$popup,third-party (easylist.txt: 29064) -.sex-journey.com -# ||setravieso.com^$popup,third-party (easylist.txt: 29063) -.setravieso.com -# ||sascentral.com^$popup,third-party (easylist.txt: 29062) -.sascentral.com -# ||royalads.net^$popup,third-party (easylist.txt: 29061) -.royalads.net -# ||reviewdollars.com^$popup,third-party (easylist.txt: 29060) -.reviewdollars.com -# ||reporo.net^$popup,third-party (easylist.txt: 29059) -.reporo.net -# ||repmbuycurl.com^$popup,third-party (easylist.txt: 29058) -.repmbuycurl.com -# ||prpops.com^$popup,third-party (easylist.txt: 29057) -.prpops.com -# ||prexista.com^$popup,third-party (easylist.txt: 29056) -.prexista.com -# ||pornbus.org^$popup (easylist.txt: 29055) -.pornbus.org -# ||popcash.net^$popup,third-party (easylist.txt: 29054) -.popcash.net -# ||plugrush.com^$popup,third-party (easylist.txt: 29053) -.plugrush.com -# ||plinx.net^$popup,third-party (easylist.txt: 29052) -.plinx.net -# ||playgirl.com^$popup (easylist.txt: 29051) -.playgirl.com -# ||pinkberrytube.com^$popup (easylist.txt: 29050) -.pinkberrytube.com -# ||njmaq.com^$popup,third-party (easylist.txt: 29049) -.njmaq.com -# ||needlive.com^$popup (easylist.txt: 29048) -.needlive.com -# ||naughtyplayful.com^$popup,third-party (easylist.txt: 29047) -.naughtyplayful.com -# ||loltrk.com^$popup,third-party (easylist.txt: 29046) -.loltrk.com -# ||legacyminerals.net^$popup,third-party (easylist.txt: 29045) -.legacyminerals.net -# ||kaizentraffic.com^$popup,third-party (easylist.txt: 29044) -.kaizentraffic.com -# ||juicyads.com^$popup,third-party (easylist.txt: 29043) -.juicyads.com -# ||ipvertising.com^$popup (easylist.txt: 29042) -.ipvertising.com -# ||indianfriendfinder.com^$popup,third-party (easylist.txt: 29041) -.indianfriendfinder.com -# ||imgcarry.com^$popup,third-party (easylist.txt: 29040) -.imgcarry.com -# ||imagesnake.com^$popup,third-party (easylist.txt: 29039) -.imagesnake.com -# ||hornymatches.com^$popup,third-party (easylist.txt: 29038) -.hornymatches.com -# ||hizlireklam.com^$popup,third-party (easylist.txt: 29037) -.hizlireklam.com -# ||herezera.com^$popup (easylist.txt: 29036) -.herezera.com -# ||hapend.biz^$popup,third-party (easylist.txt: 29035) -.hapend.biz -# ||hanaprop.com^$popup,third-party (easylist.txt: 29034) -.hanaprop.com -# ||gothot.org^$popup,third-party (easylist.txt: 29033) -.gothot.org -# ||freewebcams.com^$popup,third-party (easylist.txt: 29032) -.freewebcams.com -# ||freecamsexposed.com^$popup (easylist.txt: 29031) -.freecamsexposed.com -# ||fpctraffic2.com^$popup,third-party (easylist.txt: 29030) -.fpctraffic2.com -# ||fox-forden.ru^$popup,third-party (easylist.txt: 29029) -.fox-forden.ru -# ||foaks.com^$popup,third-party (easylist.txt: 29028) -.foaks.com -# ||flagads.net^$popup (easylist.txt: 29027) -.flagads.net -# ||filthads.com^$popup,third-party (easylist.txt: 29026) -.filthads.com -# ||fbay.tv^$popup (easylist.txt: 29025) -.fbay.tv -# ||exogripper.com^$popup (easylist.txt: 29024) -.exogripper.com -# ||exgfpunished.com^$popup,third-party (easylist.txt: 29023) -.exgfpunished.com -# ||everyporn.net^$popup,third-party (easylist.txt: 29022) -.everyporn.net -# ||ertya.com^$popup (easylist.txt: 29021) -.ertya.com -# ||ero-advertising.com^$popup,third-party (easylist.txt: 29020) -.ero-advertising.com -# ||ekod.info^$popup,third-party (easylist.txt: 29019) -.ekod.info -# ||ebocornac.com^$popup,third-party (easylist.txt: 29018) -.ebocornac.com -# ||easysexdate.com^$popup (easylist.txt: 29017) -.easysexdate.com -# ||dverser.ru^$popup,third-party (easylist.txt: 29016) -.dverser.ru -# ||doublegear.com^$popup,third-party (easylist.txt: 29015) -.doublegear.com -# ||connexionsafe.com^$popup (easylist.txt: 29014) -.connexionsafe.com -# ||chtic.net^$popup,third-party (easylist.txt: 29013) -.chtic.net -# ||chokertraffic.com^$popup,third-party (easylist.txt: 29012) -.chokertraffic.com -# ||c4tracking01.com^$popup,third-party (easylist.txt: 29011) -.c4tracking01.com -# ||buy404s.com^$popup (easylist.txt: 29010) -.buy404s.com -# ||bitterstrawberry.com^$popup (easylist.txt: 29009) -.bitterstrawberry.com -# ||banners.cams.com^$popup,third-party (easylist.txt: 29008) -.banners.cams.com -# ||aquete.com^$popup,third-party (easylist.txt: 29007) -.aquete.com -# ||adxpansion.com^$popup,third-party (easylist.txt: 29006) -.adxpansion.com -# ||adxite.com^$popup,third-party (easylist.txt: 29005) -.adxite.com -# ||adultmoda.com^$popup,third-party (easylist.txt: 29004) -.adultmoda.com -# ||adultadworld.com^$popup,third-party (easylist.txt: 29003) -.adultadworld.com -# ||adultadmedia.com^$popup,third-party (easylist.txt: 29002) -.adultadmedia.com -# ||adtgs.com^$popup (easylist.txt: 29001) -.adtgs.com -# ||adsnero.website^$popup,third-party (easylist.txt: 29000) -.adsnero.website -# ||45i73jv6.com^$popup,third-party (easylist.txt: 28999) -.45i73jv6.com -# ||3questionsgetthegirl.com^$popup (easylist.txt: 28998) -.3questionsgetthegirl.com -# ||3file.info^$popup,third-party (easylist.txt: 28997) -.3file.info -# ||33traffic.com^$popup (easylist.txt: 28996) -.33traffic.com -# ||reporo.net^$third-party (easylist.txt: 28994) -.reporo.net -# ||ziphentai.com^$third-party (easylist.txt: 28992) -.ziphentai.com -# ||zinzimo.info^$third-party (easylist.txt: 28991) -.zinzimo.info -# ||zenkreka.com^$third-party (easylist.txt: 28990) -.zenkreka.com -# ||zboac.com^$third-party (easylist.txt: 28989) -.zboac.com -# ||yx0banners.com^$third-party (easylist.txt: 28988) -.yx0banners.com -# ||yuppads.com^$third-party (easylist.txt: 28987) -.yuppads.com -# ||yu0123456.com^$third-party (easylist.txt: 28986) -.yu0123456.com -# ||ypmadserver.com^$third-party (easylist.txt: 28985) -.ypmadserver.com -# ||yourdatelink.com^$third-party (easylist.txt: 28983) -.yourdatelink.com -# ||your-big.com^$third-party (easylist.txt: 28982) -.your-big.com -# ||yoshatia.com^$third-party (easylist.txt: 28981) -.yoshatia.com -# ||yobihost.com^$third-party (easylist.txt: 28980) -.yobihost.com -# ||yfum.com^$third-party (easylist.txt: 28979) -.yfum.com -# ||yesmessenger.com^$third-party (easylist.txt: 28978) -.yesmessenger.com -# ||yazcash.com^$third-party (easylist.txt: 28977) -.yazcash.com -# ||y72yuyr9.com^$third-party (easylist.txt: 28976) -.y72yuyr9.com -# ||xxxwebtraffic.com^$third-party (easylist.txt: 28975) -.xxxwebtraffic.com -# ||xxxvipporno.com^$third-party (easylist.txt: 28974) -.xxxvipporno.com -# ||xxxmatch.com^$third-party (easylist.txt: 28973) -.xxxmatch.com -# ||xxxlnk.com^$third-party (easylist.txt: 28972) -.xxxlnk.com -# ||xxxex.com^$third-party (easylist.txt: 28971) -.xxxex.com -# ||xxxblackbook.com^$third-party (easylist.txt: 28970) -.xxxblackbook.com -# ||xxxbannerswap.com^$third-party (easylist.txt: 28969) -.xxxbannerswap.com -# ||xxxallaccesspass.com^$third-party (easylist.txt: 28968) -.xxxallaccesspass.com -# ||xxltr.com^$third-party (easylist.txt: 28967) -.xxltr.com -# ||xpop.co^$third-party (easylist.txt: 28966) -.xpop.co -# ||xpollo.com^$third-party (easylist.txt: 28965) -.xpollo.com -# ||xoliter.com^$third-party (easylist.txt: 28964) -.xoliter.com -# ||xmediawebs.net^$third-party (easylist.txt: 28963) -.xmediawebs.net -# ||xlovecam.com^$third-party (easylist.txt: 28962) -.xlovecam.com -# ||xidx.org^$third-party (easylist.txt: 28961) -.xidx.org -# ||xhamstercams.com^$third-party (easylist.txt: 28960) -.xhamstercams.com -# ||xfuckbook.com^$third-party (easylist.txt: 28959) -.xfuckbook.com -# ||xf43506e8.pw^$third-party (easylist.txt: 28958) -.xf43506e8.pw -# ||xclicks.net^$third-party (easylist.txt: 28957) -.xclicks.net -# ||xclickdirect.com^$third-party (easylist.txt: 28956) -.xclickdirect.com -# ||xaxoro.com^^$third-party (easylist.txt: 28955) -.xaxoro.com/[^\w%.-] -# ||x3v66zlz.com^$third-party (easylist.txt: 28954) -.x3v66zlz.com -# ||x-exchanger.co.uk^$third-party (easylist.txt: 28953) -.x-exchanger.co.uk -# ||x-adservice.com^$third-party (easylist.txt: 28952) -.x-adservice.com -# ||wwwmobiroll.com^$third-party (easylist.txt: 28951) -.wwwmobiroll.com -# ||wqlkp.com^$third-party (easylist.txt: 28950) -.wqlkp.com -# ||worldsbestcams.com^$third-party (easylist.txt: 28949) -.worldsbestcams.com -# ||wood-pen.com^$third-party (easylist.txt: 28948) -.wood-pen.com -# ||wma.io^$third-party (easylist.txt: 28947) -.wma.io -# ||wildmatch.com^$third-party (easylist.txt: 28946) -.wildmatch.com -# ||wildhookups.com^$third-party (easylist.txt: 28945) -.wildhookups.com -# ||wifelovers.com^$third-party (easylist.txt: 28944) -.wifelovers.com -# ||whaleads.com^$third-party (easylist.txt: 28943) -.whaleads.com -# ||wetpeachcash.com^$third-party (easylist.txt: 28942) -.wetpeachcash.com -# ||weselltraffic.com^$third-party (easylist.txt: 28941) -.weselltraffic.com -# ||weownthetraffic.com^$third-party (easylist.txt: 28940) -.weownthetraffic.com -# ||webteaser.ru^$third-party (easylist.txt: 28939) -.webteaser.ru -# ||webstats.com.br^$third-party (easylist.txt: 28938) -.webstats.com.br -# ||websitepromoserver.com^$third-party (easylist.txt: 28937) -.websitepromoserver.com -# ||webclickmanager.com^$third-party (easylist.txt: 28936) -.webclickmanager.com -# ||webclickengine.com^$third-party (easylist.txt: 28935) -.webclickengine.com -# ||webcampromotions.com^$third-party (easylist.txt: 28934) -.webcampromotions.com -# ||webcambait.com^$third-party (easylist.txt: 28933) -.webcambait.com -# ||watchmygf.to^$third-party (easylist.txt: 28932) -.watchmygf.to -# ||warsomnet.com^$third-party (easylist.txt: 28931) -.warsomnet.com -# ||wamcash.com^$third-party (easylist.txt: 28930) -.wamcash.com -# ||walprater.com^$third-party (easylist.txt: 28929) -.walprater.com -# ||vsexshop.ru^$third-party (easylist.txt: 28928) -.vsexshop.ru -# ||vrstage.com^$third-party (easylist.txt: 28927) -.vrstage.com -# ||vroll.net^$third-party (easylist.txt: 28926) -.vroll.net -# ||voluumtrk.com^$third-party (easylist.txt: 28925) -.voluumtrk.com -# ||vogozae.ru^$third-party (easylist.txt: 28924) -.vogozae.ru -# ||vogotita.com^$third-party (easylist.txt: 28923) -.vogotita.com -# ||vogorana.ru^$third-party (easylist.txt: 28922) -.vogorana.ru -# ||vogopita.com^$third-party (easylist.txt: 28921) -.vogopita.com -# ||vod-cash.com^$third-party (easylist.txt: 28920) -.vod-cash.com -# ||vlogexpert.com^$third-party (easylist.txt: 28919) -.vlogexpert.com -# ||vlexokrako.com^$third-party (easylist.txt: 28918) -.vlexokrako.com -# ||vktr073.net^$third-party (easylist.txt: 28917) -.vktr073.net -# ||vividcash.com^$third-party (easylist.txt: 28916) -.vividcash.com -# ||virtuagirlhd.com^$third-party (easylist.txt: 28915) -.virtuagirlhd.com -# ||viewrtb.com^$third-party (easylist.txt: 28914) -.viewrtb.com -# ||video-people.com^$third-party (easylist.txt: 28913) -.video-people.com -# ||verticalaffiliation.com^$third-party (easylist.txt: 28912) -.verticalaffiliation.com -# ||ver-pelis.net^$third-party (easylist.txt: 28911) -.ver-pelis.net -# ||uxernab.com^$third-party (easylist.txt: 28910) -.uxernab.com -# ||uuidksinc.net^$third-party (easylist.txt: 28909) -.uuidksinc.net -# ||unlimedia.net^$third-party (easylist.txt: 28908) -.unlimedia.net -# ||unaspajas.com^$third-party (easylist.txt: 28907) -.unaspajas.com -# ||ukreggae.ru^$third-party (easylist.txt: 28906) -.ukreggae.ru -# ||tynyh.com^$third-party (easylist.txt: 28905) -.tynyh.com -# ||txxx.com^$third-party (easylist.txt: 28904) -.txxx.com -# ||twistyscash.com^$third-party (easylist.txt: 28903) -.twistyscash.com -# ||tvzavr.ru^$third-party (easylist.txt: 28902) -.tvzavr.ru -# ||tufosex.com.br^$third-party (easylist.txt: 28901) -.tufosex.com.br -# ||tubedspots.com^$third-party (easylist.txt: 28900) -.tubedspots.com -# ||tubeadnetwork.com^$third-party (easylist.txt: 28899) -.tubeadnetwork.com -# ||ttlmodels.com^$third-party (easylist.txt: 28898) -.ttlmodels.com -# ||try9.com^$third-party (easylist.txt: 28897) -.try9.com -# ||trw12.com^$third-party (easylist.txt: 28896) -.trw12.com -# ||trustedadserver.com^$third-party (easylist.txt: 28895) -.trustedadserver.com -# ||transexy.it^$third-party (easylist.txt: 28894) -.transexy.it -# ||trafogon.net^$third-party (easylist.txt: 28893) -.trafogon.net -# ||traficmax.fr^$third-party (easylist.txt: 28892) -.traficmax.fr -# ||trafficundercontrol.com^$third-party (easylist.txt: 28891) -.trafficundercontrol.com -# ||trafficstars.com^$third-party (easylist.txt: 28890) -.trafficstars.com -# ||trafficshop.com^$third-party (easylist.txt: 28889) -.trafficshop.com -# ||trafficpimps.com^$third-party (easylist.txt: 28888) -.trafficpimps.com -# ||trafficlearn.com^$third-party (easylist.txt: 28887) -.trafficlearn.com -# ||traffichunt.com^$third-party (easylist.txt: 28886) -.traffichunt.com -# ||trafficholder.com^$third-party (easylist.txt: 28885) -.trafficholder.com -# ||traffic.ru^$third-party (easylist.txt: 28884) -.traffic.ru -# ||traffic-in.com^$third-party (easylist.txt: 28883) -.traffic-in.com -# ||traffbiz.ru^$third-party (easylist.txt: 28882) -.traffbiz.ru -# ||trackerodss.eu^$third-party (easylist.txt: 28881) -.trackerodss.eu -# ||tracker2kss.eu^$third-party (easylist.txt: 28880) -.tracker2kss.eu -# ||tracelive.ru^$third-party (easylist.txt: 28879) -.tracelive.ru -# ||tossoffads.com^$third-party (easylist.txt: 28878) -.tossoffads.com -# ||torrent-anime.ru^$third-party (easylist.txt: 28877) -.torrent-anime.ru -# ||topbucks.com^$third-party (easylist.txt: 28876) -.topbucks.com -# ||top-sponsor.com^$third-party (easylist.txt: 28875) -.top-sponsor.com -# ||toget.ru^$third-party (easylist.txt: 28874) -.toget.ru -# ||todayssn.com^$third-party (easylist.txt: 28873) -.todayssn.com -# ||tmserver-2.net^$third-party (easylist.txt: 28872) -.tmserver-2.net -# ||tmserver-1.com^$third-party (easylist.txt: 28871) -.tmserver-1.com -# ||tm-core.net^$third-party (easylist.txt: 28870) -.tm-core.net -# ||tkhigh.com^$third-party (easylist.txt: 28869) -.tkhigh.com -# ||tizernet.com^$third-party (easylist.txt: 28868) -.tizernet.com -# ||titsbro.pw^$third-party (easylist.txt: 28867) -.titsbro.pw -# ||titsbro.org^$third-party (easylist.txt: 28866) -.titsbro.org -# ||titsbro.net^$third-party (easylist.txt: 28865) -.titsbro.net -# ||tinyweene.com^$third-party (easylist.txt: 28864) -.tinyweene.com -# ||tingrinter.com^$third-party (easylist.txt: 28863) -.tingrinter.com -# ||timteen.com^$third-party (easylist.txt: 28862) -.timteen.com -# ||thumbnail-galleries.net^$third-party (easylist.txt: 28861) -.thumbnail-galleries.net -# ||thesocialsexnetwork.com^$third-party (easylist.txt: 28860) -.thesocialsexnetwork.com -# ||thepayporn.com^$third-party (easylist.txt: 28859) -.thepayporn.com -# ||thebunsenburner.com^$third-party (easylist.txt: 28858) -.thebunsenburner.com -# ||the-adult-company.com^$third-party (easylist.txt: 28857) -.the-adult-company.com -# ||teendestruction.com^$third-party (easylist.txt: 28856) -.teendestruction.com -# ||tech-board.com^$third-party (easylist.txt: 28855) -.tech-board.com -# ||teaservizio.com^$third-party (easylist.txt: 28854) -.teaservizio.com -# ||teasernet.ru^$third-party (easylist.txt: 28853) -.teasernet.ru -# ||tarkita.ru^$third-party (easylist.txt: 28852) -.tarkita.ru -# ||targettrafficmarketing.net^$third-party (easylist.txt: 28851) -.targettrafficmarketing.net -# ||targetingnow.com^$third-party (easylist.txt: 28850) -.targetingnow.com -# ||talk-blog.com^$third-party (easylist.txt: 28849) -.talk-blog.com -# ||sweetstudents.com^$third-party (easylist.txt: 28848) -.sweetstudents.com -# ||sweetmedia.org^$third-party (easylist.txt: 28847) -.sweetmedia.org -# ||sv2.biz^$third-party (easylist.txt: 28846) -.sv2.biz -# ||sunnysmedia.com^$third-party (easylist.txt: 28845) -.sunnysmedia.com -# ||stripsaver.com^$third-party (easylist.txt: 28844) -.stripsaver.com -# ||streamateaccess.com^$third-party (easylist.txt: 28843) -.streamateaccess.com -# ||sterrencash.nl^$third-party (easylist.txt: 28842) -.sterrencash.nl -# ||steamtraffic.com^$third-party (easylist.txt: 28841) -.steamtraffic.com -# ||stat-data.net^$third-party (easylist.txt: 28840) -.stat-data.net -# ||startwebpromo.com^$third-party (easylist.txt: 28839) -.startwebpromo.com -# ||startede.com^$third-party (easylist.txt: 28838) -.startede.com -# ||squeeder.com^$third-party (easylist.txt: 28837) -.squeeder.com -# ||spunkycash.com^$third-party (easylist.txt: 28836) -.spunkycash.com -# ||spcwm.com^$third-party (easylist.txt: 28835) -.spcwm.com -# ||sortow.ru^$third-party (easylist.txt: 28834) -.sortow.ru -# ||solutionsadultes.com^$third-party (easylist.txt: 28833) -.solutionsadultes.com -# ||socialsexnetwork.net^$third-party (easylist.txt: 28832) -.socialsexnetwork.net -# ||smutty.com^$third-party (easylist.txt: 28831) -.smutty.com -# ||sms-xxx.com^$third-party (easylist.txt: 28830) -.sms-xxx.com -# ||smartbn.ru^$third-party (easylist.txt: 28829) -.smartbn.ru -# ||slendastic.com^$third-party (easylist.txt: 28828) -.slendastic.com -# ||skeettools.com^$third-party (easylist.txt: 28827) -.skeettools.com -# ||sjosteras.com^$third-party (easylist.txt: 28826) -.sjosteras.com -# ||sixsigmatraffic.com^$third-party (easylist.txt: 28825) -.sixsigmatraffic.com -# ||siccash.com^$third-party (easylist.txt: 28824) -.siccash.com -# ||shopping-centres.org^$third-party (easylist.txt: 28823) -.shopping-centres.org -# ||sexypower.net^$third-party (easylist.txt: 28822) -.sexypower.net -# ||sexy-ch.com^$third-party (easylist.txt: 28821) -.sexy-ch.com -# ||sexvertise.com^$third-party (easylist.txt: 28820) -.sexvertise.com -# ||sextubecash.com^$third-party (easylist.txt: 28819) -.sextubecash.com -# ||sextracker.com^$third-party (easylist.txt: 28818) -.sextracker.com -# ||sexsearch.com^$third-party (easylist.txt: 28817) -.sexsearch.com -# ||sexplaycam.com^$third-party (easylist.txt: 28816) -.sexplaycam.com -# ||sexopages.com^$third-party (easylist.txt: 28815) -.sexopages.com -# ||sexole.com^$third-party (easylist.txt: 28814) -.sexole.com -# ||sexlist.com^$third-party (easylist.txt: 28813) -.sexlist.com -# ||sexdatecash.com^$third-party (easylist.txt: 28812) -.sexdatecash.com -# ||sexad.net^$third-party (easylist.txt: 28811) -.sexad.net -# ||sesxc.com^$third-party (easylist.txt: 28810) -.sesxc.com -# ||senkinar.com^$third-party (easylist.txt: 28809) -.senkinar.com -# ||seitentipp.com^$third-party (easylist.txt: 28808) -.seitentipp.com -# ||seemybucks.com^$third-party (easylist.txt: 28807) -.seemybucks.com -# ||seekbang.com^$third-party (easylist.txt: 28806) -.seekbang.com -# ||secretbehindporn.com^$third-party (easylist.txt: 28805) -.secretbehindporn.com -# ||searchx.eu^$third-party (easylist.txt: 28804) -.searchx.eu -# ||searchpeack.com^$third-party (easylist.txt: 28803) -.searchpeack.com -# ||scenesgirls.com^$third-party (easylist.txt: 28802) -.scenesgirls.com -# ||sbs-ad.com^$third-party (easylist.txt: 28801) -.sbs-ad.com -# ||sascentral.com^$third-party (easylist.txt: 28800) -.sascentral.com -# ||sancdn.net^$third-party (easylist.txt: 28799) -.sancdn.net -# ||safelinktracker.com^$third-party (easylist.txt: 28798) -.safelinktracker.com -# ||russianlovematch.com^$third-party (easylist.txt: 28797) -.russianlovematch.com -# ||runetki.com^$third-party (easylist.txt: 28796) -.runetki.com -# ||runetki.co^$third-party (easylist.txt: 28795) -.runetki.co -# ||rulerclick.ru^$third-party (easylist.txt: 28794) -.rulerclick.ru -# ||rulerclick.com^$third-party (easylist.txt: 28793) -.rulerclick.com -# ||rukplaza.com^$third-party (easylist.txt: 28792) -.rukplaza.com -# ||rubanners.com^$third-party (easylist.txt: 28791) -.rubanners.com -# ||rtbsystem.com^$third-party (easylist.txt: 28790) -.rtbsystem.com -# ||rsdisp.ru^$third-party (easylist.txt: 28789) -.rsdisp.ru -# ||royal-cash.com^$third-party (easylist.txt: 28788) -.royal-cash.com -# ||robotadserver.com^$third-party (easylist.txt: 28787) -.robotadserver.com -# ||rmkflouh.com^$third-party (easylist.txt: 28786) -.rmkflouh.com -# ||rmbn.net^$third-party (easylist.txt: 28785) -.rmbn.net -# ||rlogoro.ru^$third-party (easylist.txt: 28784) -.rlogoro.ru -# ||rivcash.com^$third-party (easylist.txt: 28783) -.rivcash.com -# ||ripbwing.com^$third-party (easylist.txt: 28782) -.ripbwing.com -# ||rexbucks.com^$third-party (easylist.txt: 28781) -.rexbucks.com -# ||retoxo.com^$third-party (easylist.txt: 28780) -.retoxo.com -# ||retargetpro.net^$third-party (easylist.txt: 28779) -.retargetpro.net -# ||reprak.com^$third-party (easylist.txt: 28778) -.reprak.com -# ||reliablebanners.com^$third-party (easylist.txt: 28777) -.reliablebanners.com -# ||redpineapplemedia.com^$third-party (easylist.txt: 28776) -.redpineapplemedia.com -# ||redlightcenter.com^$third-party (easylist.txt: 28775) -.redlightcenter.com -# ||redirectoptimizer.com^$third-party (easylist.txt: 28774) -.redirectoptimizer.com -# ||redcash.net^$third-party (easylist.txt: 28773) -.redcash.net -# ||realitytraffic.com^$third-party (easylist.txt: 28772) -.realitytraffic.com -# ||realitycash.com^$third-party (easylist.txt: 28771) -.realitycash.com -# ||realdatechat.com^$third-party (easylist.txt: 28770) -.realdatechat.com -# ||real2clean.ru^$third-party (easylist.txt: 28769) -.real2clean.ru -# ||reachword.com^$third-party (easylist.txt: 28768) -.reachword.com -# ||rdiul.com^$third-party (easylist.txt: 28767) -.rdiul.com -# ||rareru.ru^$third-party (easylist.txt: 28766) -.rareru.ru -# ||ramctrlgate.com^$third-party (easylist.txt: 28765) -.ramctrlgate.com -# ||ragazzeinvendita.com^$third-party (easylist.txt: 28764) -.ragazzeinvendita.com -# ||rack-media.com^$third-party (easylist.txt: 28763) -.rack-media.com -# ||r7e0zhv8.com^$third-party (easylist.txt: 28762) -.r7e0zhv8.com -# ||quexotac.com^$third-party (easylist.txt: 28761) -.quexotac.com -# ||queronamoro.com^$third-party (easylist.txt: 28760) -.queronamoro.com -# ||quagodex.com^$third-party (easylist.txt: 28759) -.quagodex.com -# ||pyiel2bz.com^$third-party (easylist.txt: 28758) -.pyiel2bz.com -# ||putanapartners.com^$third-party (easylist.txt: 28757) -.putanapartners.com -# ||putags.com^$third-party (easylist.txt: 28756) -.putags.com -# ||pussyeatingclubcams.com^$third-party (easylist.txt: 28755) -.pussyeatingclubcams.com -# ||pussyeatingclub.com^$third-party (easylist.txt: 28754) -.pussyeatingclub.com -# ||publish4.com^$third-party (easylist.txt: 28753) -.publish4.com -# ||ptwebcams.com^$third-party (easylist.txt: 28752) -.ptwebcams.com -# ||ptrfc.com^$third-party (easylist.txt: 28751) -.ptrfc.com -# ||ptclassic.com^$third-party (easylist.txt: 28750) -.ptclassic.com -# ||psma01.com^$third-party (easylist.txt: 28749) -.psma01.com -# ||prscripts.com^$third-party (easylist.txt: 28748) -.prscripts.com -# ||protizer.ru^$third-party (easylist.txt: 28747) -.protizer.ru -# ||protect-x.com^$third-party (easylist.txt: 28746) -.protect-x.com -# ||promowebstar.com^$third-party (easylist.txt: 28745) -.promowebstar.com -# ||promotools.biz^$third-party (easylist.txt: 28744) -.promotools.biz -# ||promotion-campaigns.com^$third-party (easylist.txt: 28743) -.promotion-campaigns.com -# ||promocionesweb.com^$third-party (easylist.txt: 28742) -.promocionesweb.com -# ||promo4partners.com^$third-party (easylist.txt: 28741) -.promo4partners.com -# ||program3.com^$third-party (easylist.txt: 28740) -.program3.com -# ||profitstat.biz^$third-party (easylist.txt: 28739) -.profitstat.biz -# ||profistats.net^$third-party (easylist.txt: 28738) -.profistats.net -# ||privatewebseiten.com^$third-party (easylist.txt: 28737) -.privatewebseiten.com -# ||privateseiten.net^$third-party (easylist.txt: 28736) -.privateseiten.net -# ||private4.com^$third-party (easylist.txt: 28735) -.private4.com -# ||privacyprotector.com^$third-party (easylist.txt: 28734) -.privacyprotector.com -# ||premiumhdv.com^$third-party (easylist.txt: 28733) -.premiumhdv.com -# ||premature-ejaculation-causes.org^$third-party (easylist.txt: 28732) -.premature-ejaculation-causes.org -# ||ppc-direct.com^$third-party (easylist.txt: 28731) -.ppc-direct.com -# ||pourmajeurs.com^$third-party (easylist.txt: 28730) -.pourmajeurs.com -# ||portable-basketball.com^$third-party (easylist.txt: 28729) -.portable-basketball.com -# ||porntrack.com^$third-party (easylist.txt: 28728) -.porntrack.com -# ||pornoow.com^$third-party (easylist.txt: 28727) -.pornoow.com -# ||porno-file.ru^$third-party (easylist.txt: 28726) -.porno-file.ru -# ||pornleep.com^$third-party (easylist.txt: 28725) -.pornleep.com -# ||pornkings.com^$third-party (easylist.txt: 28724) -.pornkings.com -# ||pornearn.com^$third-party (easylist.txt: 28723) -.pornearn.com -# ||pornconversions.com^$third-party (easylist.txt: 28722) -.pornconversions.com -# ||pornattitude.com^$third-party (easylist.txt: 28721) -.pornattitude.com -# ||porn99.net^$third-party (easylist.txt: 28720) -.porn99.net -# ||porn88.net^$third-party (easylist.txt: 28719) -.porn88.net -# ||porn-site-builder.com^$third-party (easylist.txt: 28718) -.porn-site-builder.com -# ||porn-hitz.com^$third-party (easylist.txt: 28717) -.porn-hitz.com -# ||porn-ad.org^$third-party (easylist.txt: 28716) -.porn-ad.org -# ||porkolt.com^$third-party (easylist.txt: 28715) -.porkolt.com -# ||popupclick.ru^$third-party (easylist.txt: 28714) -.popupclick.ru -# ||poppcheck.de^$third-party (easylist.txt: 28713) -.poppcheck.de -# ||popdown.biz^$third-party (easylist.txt: 28712) -.popdown.biz -# ||popander.com^$third-party (easylist.txt: 28711) -.popander.com -# ||popander.biz^$third-party (easylist.txt: 28710) -.popander.biz -# ||pop-bazar.net^$third-party (easylist.txt: 28709) -.pop-bazar.net -# ||poonproscash.com^$third-party (easylist.txt: 28708) -.poonproscash.com -# ||polimantu.com^$third-party (easylist.txt: 28707) -.polimantu.com -# ||pnads.com^$third-party (easylist.txt: 28706) -.pnads.com -# ||plugrush.com^$third-party (easylist.txt: 28705) -.plugrush.com -# ||plantaosexy.com^$third-party (easylist.txt: 28704) -.plantaosexy.com -# ||plachetde.biz^$third-party (easylist.txt: 28703) -.plachetde.biz -# ||pinkhoneypots.com^$third-party (easylist.txt: 28702) -.pinkhoneypots.com -# ||pictureturn.com^$third-party (easylist.txt: 28701) -.pictureturn.com -# ||philstraffic.com^$third-party (easylist.txt: 28700) -.philstraffic.com -# ||pepipo.com^$third-party (easylist.txt: 28699) -.pepipo.com -# ||pecash.com^$third-party (easylist.txt: 28698) -.pecash.com -# ||partnercash.de^$third-party (easylist.txt: 28697) -.partnercash.de -# ||partnercash.com^$third-party (easylist.txt: 28696) -.partnercash.com -# ||parkingpremium.com^$third-party (easylist.txt: 28695) -.parkingpremium.com -# ||panoll.com^$third-party (easylist.txt: 28694) -.panoll.com -# ||paid-to-promote.net^$third-party (easylist.txt: 28693) -.paid-to-promote.net -# ||p51d20aa4.website^$third-party (easylist.txt: 28692) -.p51d20aa4.website -# ||ozonru.eu^$third-party (easylist.txt: 28691) -.ozonru.eu -# ||ozon.ru^$third-party (easylist.txt: 28689) -.ozon.ru -# ||ozelmedikal.com^$third-party (easylist.txt: 28688) -.ozelmedikal.com -# ||owpawuk.ru^$third-party (easylist.txt: 28687) -.owpawuk.ru -# ||owlopadjet.info^$third-party (easylist.txt: 28686) -.owlopadjet.info -# ||outster.com^$third-party (easylist.txt: 28685) -.outster.com -# ||otherprofit.com^$third-party (easylist.txt: 28684) -.otherprofit.com -# ||otaserve.net^$third-party (easylist.txt: 28683) -.otaserve.net -# ||orodi.ru^$third-party (easylist.txt: 28682) -.orodi.ru -# ||ordermc.com^$third-party (easylist.txt: 28681) -.ordermc.com -# ||onyarysh.ru^$third-party (easylist.txt: 28680) -.onyarysh.ru -# ||onhercam.com^$third-party (easylist.txt: 28679) -.onhercam.com -# ||omynews.net^$third-party (easylist.txt: 28678) -.omynews.net -# ||okeo.ru^$third-party (easylist.txt: 28677) -.okeo.ru -# ||odzb5nkp.com^$third-party (easylist.txt: 28676) -.odzb5nkp.com -# ||oddads.net^$third-party (easylist.txt: 28675) -.oddads.net -# ||o333o.com^$third-party (easylist.txt: 28674) -.o333o.com -# ||nvp2auf5.com^$third-party (easylist.txt: 28673) -.nvp2auf5.com -# ||nummobile.com^$third-party (easylist.txt: 28672) -.nummobile.com -# ||nsfwads.com^$third-party (easylist.txt: 28671) -.nsfwads.com -# ||nscash.com^$third-party (easylist.txt: 28670) -.nscash.com -# ||nkk31jjp.com^$third-party (easylist.txt: 28669) -.nkk31jjp.com -# ||njmaq.com^$third-party (easylist.txt: 28668) -.njmaq.com -# ||ningme.ru^$third-party (easylist.txt: 28667) -.ningme.ru -# ||nikkiscash.com^$third-party (easylist.txt: 28666) -.nikkiscash.com -# ||ngbn.net^$third-party (easylist.txt: 28665) -.ngbn.net -# ||newsexbook.com^$third-party (easylist.txt: 28664) -.newsexbook.com -# ||newnudecash.com^$third-party (easylist.txt: 28663) -.newnudecash.com -# ||newagerevenue.com^$third-party (easylist.txt: 28662) -.newagerevenue.com -# ||newads.bangbros.com^$third-party (easylist.txt: 28661) -.newads.bangbros.com -# ||neuesdate.com^$third-party (easylist.txt: 28660) -.neuesdate.com -# ||netosdesalim.info^$third-party (easylist.txt: 28659) -.netosdesalim.info -# ||nature-friend.com^$third-party (easylist.txt: 28658) -.nature-friend.com -# ||nastydollars.com^$third-party (easylist.txt: 28657) -.nastydollars.com -# ||n9nedegrees.com^$third-party (easylist.txt: 28656) -.n9nedegrees.com -# ||mywebclick.net^$third-party (easylist.txt: 28655) -.mywebclick.net -# ||myprecisionads.com^$third-party (easylist.txt: 28654) -.myprecisionads.com -# ||mymirror.biz^$third-party (easylist.txt: 28653) -.mymirror.biz -# ||myadultbanners.com^$third-party (easylist.txt: 28652) -.myadultbanners.com -# ||mtree.com^$third-party (easylist.txt: 28651) -.mtree.com -# ||mtoor.com^$third-party (easylist.txt: 28650) -.mtoor.com -# ||msquaredproductions.com^$third-party (easylist.txt: 28649) -.msquaredproductions.com -# ||mrskincash.com^$third-party (easylist.txt: 28648) -.mrskincash.com -# ||mpmcash.com^$third-party (easylist.txt: 28647) -.mpmcash.com -# ||mp3vicio.com^$third-party (easylist.txt: 28646) -.mp3vicio.com -# ||morehitserver.com^$third-party (easylist.txt: 28645) -.morehitserver.com -# ||mopilod.com^$third-party (easylist.txt: 28644) -.mopilod.com -# ||mobred.net^$third-party (easylist.txt: 28643) -.mobred.net -# ||mobilerevenu.com^$third-party (easylist.txt: 28642) -.mobilerevenu.com -# ||mobbobr.com^$third-party (easylist.txt: 28641) -.mobbobr.com -# ||mobalives.com^$third-party (easylist.txt: 28640) -.mobalives.com -# ||mo8mwxi1.com^$third-party (easylist.txt: 28639) -.mo8mwxi1.com -# ||mmaaxx.com^$third-party (easylist.txt: 28638) -.mmaaxx.com -# ||millioncash.ru^$third-party (easylist.txt: 28637) -.millioncash.ru -# ||might-stay.info^$third-party (easylist.txt: 28636) -.might-stay.info -# ||meubonus.com^$third-party (easylist.txt: 28635) -.meubonus.com -# ||methodcash.com^$third-party (easylist.txt: 28634) -.methodcash.com -# ||meta4-group.com^$third-party (easylist.txt: 28633) -.meta4-group.com -# ||menteret.com^$third-party (easylist.txt: 28632) -.menteret.com -# ||meineserver.com^$third-party (easylist.txt: 28631) -.meineserver.com -# ||megoads.eu^$third-party (easylist.txt: 28630) -.megoads.eu -# ||mediumpimpin.com^$third-party (easylist.txt: 28629) -.mediumpimpin.com -# ||mediagra.com^$third-party (easylist.txt: 28628) -.mediagra.com -# ||media-click.ru^$third-party (easylist.txt: 28627) -.media-click.ru -# ||meccahoo.com^$third-party (easylist.txt: 28626) -.meccahoo.com -# ||mdlsrv.com^$third-party (easylist.txt: 28625) -.mdlsrv.com -# ||mc-nudes.com^$third-party (easylist.txt: 28624) -.mc-nudes.com -# ||mb103.com^$third-party (easylist.txt: 28623) -.mb103.com -# ||mazetin.ru^$third-party (easylist.txt: 28622) -.mazetin.ru -# ||maxiadv.com^$third-party (easylist.txt: 28621) -.maxiadv.com -# ||maxcash.com^$third-party (easylist.txt: 28620) -.maxcash.com -# ||matrix-cash.com^$third-party (easylist.txt: 28619) -.matrix-cash.com -# ||matrimoniale3x.ro^$third-party (easylist.txt: 28618) -.matrimoniale3x.ro -# ||masterwanker.com^$third-party (easylist.txt: 28617) -.masterwanker.com -# ||markswebcams.com^$third-party (easylist.txt: 28616) -.markswebcams.com -# ||manfys.com^$third-party (easylist.txt: 28615) -.manfys.com -# ||mallorcash.com^$third-party (easylist.txt: 28614) -.mallorcash.com -# ||mallcom.com^$third-party (easylist.txt: 28613) -.mallcom.com -# ||mahnatka.ru^$third-party (easylist.txt: 28612) -.mahnatka.ru -# ||magical-sky.com^$third-party (easylist.txt: 28611) -.magical-sky.com -# ||madbanner.com^$third-party (easylist.txt: 28610) -.madbanner.com -# ||lyubnozo.ru^$third-party (easylist.txt: 28609) -.lyubnozo.ru -# ||luvcom.com^$third-party (easylist.txt: 28608) -.luvcom.com -# ||luvcash.com^$third-party (easylist.txt: 28607) -.luvcash.com -# ||lucidcommerce.com^$third-party (easylist.txt: 28606) -.lucidcommerce.com -# ||lsawards.com^$third-party (easylist.txt: 28605) -.lsawards.com -# ||lovercash.com^$third-party (easylist.txt: 28604) -.lovercash.com -# ||lovecam.com.br^$third-party (easylist.txt: 28603) -.lovecam.com.br -# ||loveadverts.com^$third-party (easylist.txt: 28602) -.loveadverts.com -# ||lostun.com^$third-party (easylist.txt: 28601) -.lostun.com -# ||loading-delivery1.com^$third-party (easylist.txt: 28600) -.loading-delivery1.com -# ||loa-traffic.com^$third-party (easylist.txt: 28599) -.loa-traffic.com -# ||lizads.com^$third-party (easylist.txt: 28598) -.lizads.com -# ||livetraf.com^$third-party (easylist.txt: 28597) -.livetraf.com -# ||livepromotools.com^$third-party (easylist.txt: 28596) -.livepromotools.com -# ||liveprivates.com^$third-party (easylist.txt: 28595) -.liveprivates.com -# ||livejasmin.tv^$third-party (easylist.txt: 28594) -.livejasmin.tv -# ||livecam.com^$third-party (easylist.txt: 28593) -.livecam.com -# ||links-and-traffic.com^$third-party (easylist.txt: 28592) -.links-and-traffic.com -# ||limon.biz^$third-party (easylist.txt: 28591) -.limon.biz -# ||lifepromo.biz^$third-party (easylist.txt: 28590) -.lifepromo.biz -# ||lickbylick.com^$third-party (easylist.txt: 28589) -.lickbylick.com -# ||legendarylars.com^$third-party (easylist.txt: 28588) -.legendarylars.com -# ||leche69.com^$third-party (easylist.txt: 28587) -.leche69.com -# ||lavantat.com^$third-party (easylist.txt: 28586) -.lavantat.com -# ||kwot.biz^$third-party (easylist.txt: 28585) -.kwot.biz -# ||kuhnivsemisrazu.ru^$third-party (easylist.txt: 28584) -.kuhnivsemisrazu.ru -# ||kolort.ru^$third-party (easylist.txt: 28583) -.kolort.ru -# ||kolitat.com^$third-party (easylist.txt: 28582) -.kolitat.com -# ||kolestence.com^$third-party (easylist.txt: 28581) -.kolestence.com -# ||kliklink.ru^$third-party (easylist.txt: 28580) -.kliklink.ru -# ||kinopokaz.org^$third-party (easylist.txt: 28579) -.kinopokaz.org -# ||kingpinmedia.net^$third-party (easylist.txt: 28578) -.kingpinmedia.net -# ||kaplay.com^$third-party (easylist.txt: 28577) -.kaplay.com -# ||kadam.ru^$third-party (easylist.txt: 28576) -.kadam.ru -# ||k9x.net^$third-party (easylist.txt: 28575) -.k9x.net -# ||jz9ugaqb.com^$third-party (easylist.txt: 28574) -.jz9ugaqb.com -# ||justresa.com^$third-party (easylist.txt: 28573) -.justresa.com -# ||juicycash.net^$third-party (easylist.txt: 28572) -.juicycash.net -# ||juicyads.com^$third-party (easylist.txt: 28571) -.juicyads.com -# ||joyourself.com^$third-party (easylist.txt: 28570) -.joyourself.com -# ||jowapt.com^$third-party (easylist.txt: 28569) -.jowapt.com -# ||joinnowinstantly.com^$third-party (easylist.txt: 28568) -.joinnowinstantly.com -# ||jfresi.com^$third-party (easylist.txt: 28567) -.jfresi.com -# ||jerrcotch.com^$third-party (easylist.txt: 28566) -.jerrcotch.com -# ||jaymancash.com^$third-party (easylist.txt: 28565) -.jaymancash.com -# ||javbucks.com^$third-party (easylist.txt: 28564) -.javbucks.com -# ||jackao.net^$third-party (easylist.txt: 28563) -.jackao.net -# ||ixspublic.com^$third-party (easylist.txt: 28562) -.ixspublic.com -# ||iwinnersadvantage.com^$third-party (easylist.txt: 28561) -.iwinnersadvantage.com -# ||itw.me^$third-party (easylist.txt: 28560) -.itw.me -# ||itslive.com^$third-party (easylist.txt: 28559) -.itslive.com -# ||itrxx.com^$third-party (easylist.txt: 28558) -.itrxx.com -# ||itmcash.com^$third-party (easylist.txt: 28557) -.itmcash.com -# ||iprofit.cc^$third-party (easylist.txt: 28556) -.iprofit.cc -# ||intrapromotion.com^$third-party (easylist.txt: 28555) -.intrapromotion.com -# ||internebula.net^$third-party (easylist.txt: 28554) -.internebula.net -# ||intellichatadult.com^$third-party (easylist.txt: 28553) -.intellichatadult.com -# ||inheart.ru^$third-party (easylist.txt: 28552) -.inheart.ru -# ||impotencehelp.info^$third-party (easylist.txt: 28551) -.impotencehelp.info -# ||ilovecheating.com^$third-party (easylist.txt: 28550) -.ilovecheating.com -# ||iheartbucks.com^$third-party (easylist.txt: 28549) -.iheartbucks.com -# ||igiplay.net^$third-party (easylist.txt: 28548) -.igiplay.net -# ||idolbucks.com^$third-party (easylist.txt: 28547) -.idolbucks.com -# ||ideal-sexe.com^$third-party (easylist.txt: 28546) -.ideal-sexe.com -# ||ictowaz.ru^$third-party (easylist.txt: 28545) -.ictowaz.ru -# ||icqadvert.org^$third-party (easylist.txt: 28544) -.icqadvert.org -# ||icetraffic.com^$third-party (easylist.txt: 28543) -.icetraffic.com -# ||hubtraffic.com^$third-party (easylist.txt: 28542) -.hubtraffic.com -# ||hsmclick.com^$third-party (easylist.txt: 28541) -.hsmclick.com -# ||hotsocials.com^$third-party (easylist.txt: 28540) -.hotsocials.com -# ||hot-socials.com^$third-party (easylist.txt: 28539) -.hot-socials.com -# ||hot-dances.com^$third-party (easylist.txt: 28538) -.hot-dances.com -# ||hostave4.net^$third-party (easylist.txt: 28537) -.hostave4.net -# ||host-go.info^$third-party (easylist.txt: 28536) -.host-go.info -# ||hornyspots.com^$third-party (easylist.txt: 28535) -.hornyspots.com -# ||hornymatches.com^$third-party (easylist.txt: 28534) -.hornymatches.com -# ||hoptopboy.com^$third-party (easylist.txt: 28533) -.hoptopboy.com -# ||hopilos.com^$third-party (easylist.txt: 28532) -.hopilos.com -# ||hookupbucks.com^$third-party (easylist.txt: 28531) -.hookupbucks.com -# ||home-soon.com^$third-party (easylist.txt: 28530) -.home-soon.com -# ||hizlireklam.com^$third-party (easylist.txt: 28529) -.hizlireklam.com -# ||hipals.com^$third-party (easylist.txt: 28528) -.hipals.com -# ||highnets.com^$third-party (easylist.txt: 28527) -.highnets.com -# ||hiddenbucks.com^$third-party (easylist.txt: 28526) -.hiddenbucks.com -# ||herezera.com^$third-party (easylist.txt: 28525) -.herezera.com -# ||hentaibiz.com^$third-party (easylist.txt: 28524) -.hentaibiz.com -# ||helltraffic.com^$third-party (easylist.txt: 28523) -.helltraffic.com -# ||gzbop.com^$third-party (easylist.txt: 28522) -.gzbop.com -# ||gunzblazingpromo.com^$third-party (easylist.txt: 28521) -.gunzblazingpromo.com -# ||gtsads.com^$third-party (easylist.txt: 28520) -.gtsads.com -# ||gridlockparadise.com^$third-party (easylist.txt: 28519) -.gridlockparadise.com -# ||greatcpm.com^$third-party (easylist.txt: 28518) -.greatcpm.com -# ||govereign.com^$third-party (easylist.txt: 28517) -.govereign.com -# ||golderotica.com^$third-party (easylist.txt: 28516) -.golderotica.com -# ||goklics.ru^$third-party (easylist.txt: 28515) -.goklics.ru -# ||goallurl.ru^$third-party (easylist.txt: 28514) -.goallurl.ru -# ||go2euroshop.com^$third-party (easylist.txt: 28513) -.go2euroshop.com -# ||glbtrk.com^$third-party (easylist.txt: 28512) -.glbtrk.com -# ||gl-cash.com^$third-party (easylist.txt: 28511) -.gl-cash.com -# ||ggwcash.com^$third-party (easylist.txt: 28510) -.ggwcash.com -# ||gfhdkse.com^$third-party (easylist.txt: 28509) -.gfhdkse.com -# ||getiton.com^$third-party (easylist.txt: 28508) -.getiton.com -# ||geoinventory.com^$third-party (easylist.txt: 28507) -.geoinventory.com -# ||geofamily.ru^$third-party (easylist.txt: 28506) -.geofamily.ru -# ||geoaddicted.net^$third-party (easylist.txt: 28505) -.geoaddicted.net -# ||genialradio.com^$third-party (easylist.txt: 28504) -.genialradio.com -# ||gefnaro.com^$third-party (easylist.txt: 28503) -.gefnaro.com -# ||gayxperience.com^$third-party (easylist.txt: 28502) -.gayxperience.com -# ||gayadpros.com^$third-party (easylist.txt: 28501) -.gayadpros.com -# ||ganardineroreal.com^$third-party (easylist.txt: 28500) -.ganardineroreal.com -# ||gamblespot.ru^$third-party (easylist.txt: 28499) -.gamblespot.ru -# ||g726n8cy.com^$third-party (easylist.txt: 28498) -.g726n8cy.com -# ||g6ni40i7.com^$third-party (easylist.txt: 28497) -.g6ni40i7.com -# ||funnypickuplinesforgirls.com^$third-party (easylist.txt: 28496) -.funnypickuplinesforgirls.com -# ||funcel.mobi^$third-party (easylist.txt: 28495) -.funcel.mobi -# ||fuelbuck.com^$third-party (easylist.txt: 28494) -.fuelbuck.com -# ||fuckyoucash.com^$third-party (easylist.txt: 28493) -.fuckyoucash.com -# ||fuckermedia.com^$third-party (easylist.txt: 28492) -.fuckermedia.com -# ||fuckbookdating.com^$third-party (easylist.txt: 28491) -.fuckbookdating.com -# ||fuckbook.cm^$third-party (easylist.txt: 28490) -.fuckbook.cm -# ||frutrun.com^$third-party (easylist.txt: 28489) -.frutrun.com -# ||frivol-ads.com^$third-party (easylist.txt: 28488) -.frivol-ads.com -# ||frestime.com^$third-party (easylist.txt: 28487) -.frestime.com -# ||frestacero.com^$third-party (easylist.txt: 28486) -.frestacero.com -# ||free-porn-vidz.com^$third-party (easylist.txt: 28485) -.free-porn-vidz.com -# ||freakads.com^$third-party (easylist.txt: 28484) -.freakads.com -# ||forgetstore.com^$third-party (easylist.txt: 28483) -.forgetstore.com -# ||fncash.com^$third-party (easylist.txt: 28482) -.fncash.com -# ||fmscash.com^$third-party (easylist.txt: 28481) -.fmscash.com -# ||flirtingsms.com^$third-party (easylist.txt: 28480) -.flirtingsms.com -# ||flirt4free.com^$third-party (easylist.txt: 28479) -.flirt4free.com -# ||flirt4e.com^$third-party (easylist.txt: 28478) -.flirt4e.com -# ||flipflapflo.net^$third-party (easylist.txt: 28477) -.flipflapflo.net -# ||flipflapflo.info^$third-party (easylist.txt: 28476) -.flipflapflo.info -# ||fleshlightgirls.com^$third-party (easylist.txt: 28475) -.fleshlightgirls.com -# ||fleshcash.com^$third-party (easylist.txt: 28474) -.fleshcash.com -# ||flashadtools.com^$third-party (easylist.txt: 28473) -.flashadtools.com -# ||findandtry.com^$third-party (easylist.txt: 28472) -.findandtry.com -# ||filthads.com^$third-party (easylist.txt: 28471) -.filthads.com -# ||fickads.net^$third-party (easylist.txt: 28470) -.fickads.net -# ||felixflow.com^$third-party (easylist.txt: 28469) -.felixflow.com -# ||feeder.xxx^$third-party (easylist.txt: 28468) -.feeder.xxx -# ||fanmalinin.ru^$third-party (easylist.txt: 28467) -.fanmalinin.ru -# ||facetz.net^$third-party (easylist.txt: 28466) -.facetz.net -# ||faceporn.com^$third-party (easylist.txt: 28465) -.faceporn.com -# ||facebookofsex.com^$third-party (easylist.txt: 28464) -.facebookofsex.com -# ||eyemedias.com^$third-party (easylist.txt: 28463) -.eyemedias.com -# ||exsifsi.ru^$third-party (easylist.txt: 28462) -.exsifsi.ru -# ||exoticads.com^$third-party (easylist.txt: 28461) -.exoticads.com -# ||exogripper.com^$third-party (easylist.txt: 28460) -.exogripper.com -# ||exoclickz.com^$third-party (easylist.txt: 28459) -.exoclickz.com -# ||exclusivepussy.com^$third-party (easylist.txt: 28458) -.exclusivepussy.com -# ||exchangecash.de^$third-party (easylist.txt: 28457) -.exchangecash.de -# ||euro4ads.de^$third-party (easylist.txt: 28456) -.euro4ads.de -# ||euro-rx.com^$third-party (easylist.txt: 28455) -.euro-rx.com -# ||eu2xml.com^$third-party (easylist.txt: 28454) -.eu2xml.com -# ||escortso.com^$third-party (easylist.txt: 28453) -.escortso.com -# ||erotizer.info^$third-party (easylist.txt: 28452) -.erotizer.info -# ||erotikdating.com^$third-party (easylist.txt: 28451) -.erotikdating.com -# ||erosadv.com^$third-party (easylist.txt: 28450) -.erosadv.com -# ||eragi.ru^$third-party (easylist.txt: 28449) -.eragi.ru -# ||enoratraffic.com^$third-party (easylist.txt: 28448) -.enoratraffic.com -# ||emediawebs.com^$third-party (easylist.txt: 28447) -.emediawebs.com -# ||eltepo.ru^$third-party (easylist.txt: 28446) -.eltepo.ru -# ||elekted.com^$third-party (easylist.txt: 28445) -.elekted.com -# ||ecortb.com^$third-party (easylist.txt: 28444) -.ecortb.com -# ||ebocornac.com^$third-party (easylist.txt: 28443) -.ebocornac.com -# ||ebdr2.com^$third-party (easylist.txt: 28442) -.ebdr2.com -# ||easyflirt.com^$third-party (easylist.txt: 28441) -.easyflirt.com -# ||easy-dating.org^$third-party (easylist.txt: 28440) -.easy-dating.org -# ||eadulttraffic.com^$third-party (easylist.txt: 28439) -.eadulttraffic.com -# ||dvdkinoteatr.com^$third-party (easylist.txt: 28438) -.dvdkinoteatr.com -# ||dtiserv2.com^$third-party (easylist.txt: 28437) -.dtiserv2.com -# ||dro4icho.ru^$third-party (easylist.txt: 28436) -.dro4icho.ru -# ||drevil.to^$third-party (easylist.txt: 28435) -.drevil.to -# ||doublegear.com^$third-party (easylist.txt: 28434) -.doublegear.com -# ||double-check.com^$third-party (easylist.txt: 28433) -.double-check.com -# ||dosugcz.biz^$third-party (easylist.txt: 28432) -.dosugcz.biz -# ||dofolo.ru^$third-party (easylist.txt: 28431) -.dofolo.ru -# ||divertura.com^$third-party (easylist.txt: 28430) -.divertura.com -# ||divascam.com^$third-party (easylist.txt: 28429) -.divascam.com -# ||discreetlocalgirls.com^$third-party (easylist.txt: 28428) -.discreetlocalgirls.com -# ||direction-x.com^$third-party (easylist.txt: 28427) -.direction-x.com -# ||directchat.tv^$third-party (easylist.txt: 28426) -.directchat.tv -# ||directadvert.ru^$third-party (easylist.txt: 28425) -.directadvert.ru -# ||digitaldesire.com^$third-party (easylist.txt: 28424) -.digitaldesire.com -# ||desiad.net^$third-party (easylist.txt: 28423) -.desiad.net -# ||depravedwhores.com^$third-party (easylist.txt: 28422) -.depravedwhores.com -# ||depilflash.tv^$third-party (easylist.txt: 28421) -.depilflash.tv -# ||denotyro.com^$third-party (easylist.txt: 28420) -.denotyro.com -# ||demanier.com^$third-party (easylist.txt: 28419) -.demanier.com -# ||deecash.com^$third-party (easylist.txt: 28418) -.deecash.com -# ||dblpmp.com^$third-party (easylist.txt: 28417) -.dblpmp.com -# ||datingidol.com^$third-party (easylist.txt: 28416) -.datingidol.com -# ||datingamateurs.com^$third-party (easylist.txt: 28415) -.datingamateurs.com -# ||datingadnetwork.com^$third-party (easylist.txt: 28414) -.datingadnetwork.com -# ||dating-adv.com^$third-party (easylist.txt: 28413) -.dating-adv.com -# ||datexchanges.net^$third-party (easylist.txt: 28412) -.datexchanges.net -# ||datetraders.com^$third-party (easylist.txt: 28411) -.datetraders.com -# ||datefunclub.com^$third-party (easylist.txt: 28410) -.datefunclub.com -# ||data.13dc235d.xyz^$third-party (easylist.txt: 28409) -.data.13dc235d.xyz -# ||data-ero-advertising.com^$third-party (easylist.txt: 28408) -.data-ero-advertising.com -# ||darangi.ru^$third-party (easylist.txt: 28407) -.darangi.ru -# ||danzabucks.com^$third-party (easylist.txt: 28406) -.danzabucks.com -# ||dana123.com^$third-party (easylist.txt: 28405) -.dana123.com -# ||dallavel.com^$third-party (easylist.txt: 28404) -.dallavel.com -# ||daffaite.com^$third-party (easylist.txt: 28403) -.daffaite.com -# ||d3b3e6340.website^$third-party (easylist.txt: 28402) -.d3b3e6340.website -# ||d29gqcij.com^$third-party (easylist.txt: 28401) -.d29gqcij.com -# ||d0main.ru^$third-party (easylist.txt: 28400) -.d0main.ru -# ||d-agency.net^$third-party (easylist.txt: 28399) -.d-agency.net -# ||cybernetentertainment.com^$third-party (easylist.txt: 28398) -.cybernetentertainment.com -# ||cyberbidhost.com^$third-party (easylist.txt: 28397) -.cyberbidhost.com -# ||cwgads.com^$third-party (easylist.txt: 28396) -.cwgads.com -# ||ctyzd.com^$third-party (easylist.txt: 28395) -.ctyzd.com -# ||crtracklink.com^$third-party (easylist.txt: 28394) -.crtracklink.com -# ||crocoads.com^$third-party (easylist.txt: 28393) -.crocoads.com -# ||creoads.com^$third-party (easylist.txt: 28392) -.creoads.com -# ||crakcash.com^$third-party (easylist.txt: 28391) -.crakcash.com -# ||crakbanner.com^$third-party (easylist.txt: 28390) -.crakbanner.com -# ||cpl1.ru^$third-party (easylist.txt: 28389) -.cpl1.ru -# ||cpacoreg.com^$third-party (easylist.txt: 28388) -.cpacoreg.com -# ||comunicazio.com^$third-party (easylist.txt: 28387) -.comunicazio.com -# ||colpory.com^$third-party (easylist.txt: 28386) -.colpory.com -# ||coloredguitar.com^$third-party (easylist.txt: 28385) -.coloredguitar.com -# ||coldhardcash.com^$third-party (easylist.txt: 28384) -.coldhardcash.com -# ||codelnet.com^$third-party (easylist.txt: 28383) -.codelnet.com -# ||cmdfnow.com^$third-party (easylist.txt: 28382) -.cmdfnow.com -# ||clicktrace.info^$third-party (easylist.txt: 28381) -.clicktrace.info -# ||clickthruserver.com^$third-party (easylist.txt: 28380) -.clickthruserver.com -# ||clicksvenue.com^$third-party (easylist.txt: 28379) -.clicksvenue.com -# ||clickpapa.com^$third-party (easylist.txt: 28378) -.clickpapa.com -# ||clickganic.com^$third-party (easylist.txt: 28377) -.clickganic.com -# ||clearac.com^$third-party (easylist.txt: 28376) -.clearac.com -# ||citysex.com^$third-party (easylist.txt: 28375) -.citysex.com -# ||chopstick16.com^$third-party (easylist.txt: 28374) -.chopstick16.com -# ||chestyry.com^$third-party (easylist.txt: 28373) -.chestyry.com -# ||che-ka.com^$third-party (easylist.txt: 28372) -.che-ka.com -# ||chatischat.com^$third-party (easylist.txt: 28371) -.chatischat.com -# ||cervicalknowledge.info^$third-party (easylist.txt: 28370) -.cervicalknowledge.info -# ||certified-apps.com^$third-party (easylist.txt: 28369) -.certified-apps.com -# ||cennter.com^$third-party (easylist.txt: 28368) -.cennter.com -# ||celogera.com^$third-party (easylist.txt: 28367) -.celogera.com -# ||celeb-ads.com^$third-party (easylist.txt: 28366) -.celeb-ads.com -# ||ceepq.com^$third-party (easylist.txt: 28365) -.ceepq.com -# ||cashtraff.com^$third-party (easylist.txt: 28364) -.cashtraff.com -# ||cashthat.com^$third-party (easylist.txt: 28363) -.cashthat.com -# ||cashlayer.com^$third-party (easylist.txt: 28362) -.cashlayer.com -# ||cash4movie.com^$third-party (easylist.txt: 28361) -.cash4movie.com -# ||cash-program.com^$third-party (easylist.txt: 28360) -.cash-program.com -# ||camzap.com^$third-party (easylist.txt: 28359) -.camzap.com -# ||camsitecash.com^$third-party (easylist.txt: 28358) -.camsitecash.com -# ||camsense.com^$third-party (easylist.txt: 28357) -.camsense.com -# ||campromos.nl^$third-party (easylist.txt: 28356) -.campromos.nl -# ||camprime.com^$third-party (easylist.txt: 28355) -.camprime.com -# ||camplacecash.com^$third-party (easylist.txt: 28354) -.camplacecash.com -# ||campartner.com^$third-party (easylist.txt: 28353) -.campartner.com -# ||camduty.com^$third-party (easylist.txt: 28352) -.camduty.com -# ||camdough.com^$third-party (easylist.txt: 28351) -.camdough.com -# ||camcrush.com^$third-party (easylist.txt: 28350) -.camcrush.com -# ||camads.net^$third-party (easylist.txt: 28349) -.camads.net -# ||cam4flat.com^$third-party (easylist.txt: 28348) -.cam4flat.com -# ||cam-lolita.net^$third-party (easylist.txt: 28347) -.cam-lolita.net -# ||bumskontakte.ch^$third-party (easylist.txt: 28346) -.bumskontakte.ch -# ||bumblecash.com^$third-party (easylist.txt: 28345) -.bumblecash.com -# ||brqvld0p.com^$third-party (easylist.txt: 28344) -.brqvld0p.com -# ||brothersincash.com^$third-party (easylist.txt: 28343) -.brothersincash.com -# ||brightcpm.net^$third-party (easylist.txt: 28342) -.brightcpm.net -# ||branzas.com^$third-party (easylist.txt: 28341) -.branzas.com -# ||bposterss.net^$third-party (easylist.txt: 28340) -.bposterss.net -# ||bookofsex.com^$third-party (easylist.txt: 28339) -.bookofsex.com -# ||boinkcash.com^$third-party (easylist.txt: 28338) -.boinkcash.com -# ||board-books.com^$third-party (easylist.txt: 28337) -.board-books.com -# ||blossoms.com^$third-party (easylist.txt: 28336) -.blossoms.com -# ||black-ghettos.info^$third-party (easylist.txt: 28335) -.black-ghettos.info -# ||biksibo.ru^$third-party (easylist.txt: 28334) -.biksibo.ru -# ||bgmtracker.com^$third-party (easylist.txt: 28333) -.bgmtracker.com -# ||betweendigital.com^$third-party (easylist.txt: 28332) -.betweendigital.com -# ||bestssn.com^$third-party (easylist.txt: 28331) -.bestssn.com -# ||bestholly.com^$third-party (easylist.txt: 28330) -.bestholly.com -# ||belasninfetas.org^$third-party (easylist.txt: 28329) -.belasninfetas.org -# ||belamicash.com^$third-party (easylist.txt: 28328) -.belamicash.com -# ||bcash4you.com^$third-party (easylist.txt: 28327) -.bcash4you.com -# ||baskodenta.com^$third-party (easylist.txt: 28326) -.baskodenta.com -# ||basesclick.ru^$third-party (easylist.txt: 28325) -.basesclick.ru -# ||banerator.net^$third-party (easylist.txt: 28324) -.banerator.net -# ||aztecash.com^$third-party (easylist.txt: 28323) -.aztecash.com -# ||azerbazer.com^$third-party (easylist.txt: 28322) -.azerbazer.com -# ||ax47mp-xp-21.com^$third-party (easylist.txt: 28321) -.ax47mp-xp-21.com -# ||awmpartners.com^$third-party (easylist.txt: 28320) -.awmpartners.com -# ||awmcenter.eu^$third-party (easylist.txt: 28319) -.awmcenter.eu -# ||augrenso.com^$third-party (easylist.txt: 28318) -.augrenso.com -# ||asiafriendfinder.com^$third-party (easylist.txt: 28317) -.asiafriendfinder.com -# ||are-ter.com^$third-party (easylist.txt: 28316) -.are-ter.com -# ||apromoweb.com^$third-party (easylist.txt: 28315) -.apromoweb.com -# ||antoball.com^$third-party (easylist.txt: 28314) -.antoball.com -# ||antaraimedia.com^$third-party (easylist.txt: 28313) -.antaraimedia.com -# ||angelpastel.com^$third-party (easylist.txt: 28312) -.angelpastel.com -# ||anastasia-international.com^$third-party (easylist.txt: 28311) -.anastasia-international.com -# ||amvotes.ru^$third-party (easylist.txt: 28310) -.amvotes.ru -# ||amtracking01.com^$third-party (easylist.txt: 28309) -.amtracking01.com -# ||allotraffic.com^$third-party (easylist.txt: 28308) -.allotraffic.com -# ||allosponsor.com^$third-party (easylist.txt: 28307) -.allosponsor.com -# ||alladultcash.com^$third-party (easylist.txt: 28306) -.alladultcash.com -# ||all-about-tech.com^$third-party (easylist.txt: 28305) -.all-about-tech.com -# ||alfatraffic.com^$third-party (easylist.txt: 28304) -.alfatraffic.com -# ||aipmedia.com^$third-party (easylist.txt: 28303) -.aipmedia.com -# ||aipbannerx.com^$third-party (easylist.txt: 28302) -.aipbannerx.com -# ||affiligay.net^$third-party (easylist.txt: 28301) -.affiligay.net -# ||affiliaxe.com^$third-party (easylist.txt: 28300) -.affiliaxe.com -# ||affiliation-int.com^$third-party (easylist.txt: 28299) -.affiliation-int.com -# ||affiliatewindow.com^$third-party (easylist.txt: 28298) -.affiliatewindow.com -# ||aeesy.com^$third-party (easylist.txt: 28297) -.aeesy.com -# ||adzs.com^$third-party (easylist.txt: 28296) -.adzs.com -# ||adxregie.com^$third-party (easylist.txt: 28295) -.adxregie.com -# ||adxpansion.com^$third-party (easylist.txt: 28294) -.adxpansion.com -# ||adxmarket.com^$third-party (easylist.txt: 28293) -.adxmarket.com -# ||adxite.com^$third-party (easylist.txt: 28292) -.adxite.com -# ||advsense.info^$third-party (easylist.txt: 28291) -.advsense.info -# ||advredir.com^$third-party (easylist.txt: 28290) -.advredir.com -# ||advprotraffic.com^$third-party (easylist.txt: 28289) -.advprotraffic.com -# ||advmania.com^$third-party (easylist.txt: 28288) -.advmania.com -# ||advmaker.ru^$third-party (easylist.txt: 28287) -.advmaker.ru -# ||advertrtb.com^$third-party (easylist.txt: 28286) -.advertrtb.com -# ||advertom.com^$third-party (easylist.txt: 28285) -.advertom.com -# ||advertisingsex.com^$third-party (easylist.txt: 28284) -.advertisingsex.com -# ||adventory.com^$third-party (easylist.txt: 28283) -.adventory.com -# ||adv777.com^$third-party (easylist.txt: 28282) -.adv777.com -# ||adv-plus.com^$third-party (easylist.txt: 28281) -.adv-plus.com -# ||adulttubetraffic.com^$third-party (easylist.txt: 28280) -.adulttubetraffic.com -# ||adulttiz.com^$third-party (easylist.txt: 28279) -.adulttiz.com -# ||adultsense.org^$third-party (easylist.txt: 28278) -.adultsense.org -# ||adultsense.com^$third-party (easylist.txt: 28277) -.adultsense.com -# ||adultpopunders.com^$third-party (easylist.txt: 28276) -.adultpopunders.com -# ||adultoafiliados.com.br^$third-party (easylist.txt: 28275) -.adultoafiliados.com.br -# ||adultmoviegroup.com^$third-party (easylist.txt: 28274) -.adultmoviegroup.com -# ||adultmediabuying.com^$third-party (easylist.txt: 28273) -.adultmediabuying.com -# ||adultlinkexchange.com^$third-party (easylist.txt: 28272) -.adultlinkexchange.com -# ||adultdatingtraffic.com^$third-party (easylist.txt: 28271) -.adultdatingtraffic.com -# ||adultcommercial.net^$third-party (easylist.txt: 28270) -.adultcommercial.net -# ||adultadvertising.net^$third-party (easylist.txt: 28269) -.adultadvertising.net -# ||adultadmedia.com^$third-party (easylist.txt: 28268) -.adultadmedia.com -# ||adultaccessnow.com^$third-party (easylist.txt: 28267) -.adultaccessnow.com -# ||adult3dcomics.com^$third-party (easylist.txt: 28266) -.adult3dcomics.com -# ||adsyst.biz^$third-party (easylist.txt: 28265) -.adsyst.biz -# ||adskape.ru^$third-party (easylist.txt: 28264) -.adskape.ru -# ||adshostview.com^$third-party (easylist.txt: 28263) -.adshostview.com -# ||adsgangsta.com^$third-party (easylist.txt: 28262) -.adsgangsta.com -# ||adsbr.info^$third-party (easylist.txt: 28261) -.adsbr.info -# ||adrent.net^$third-party (easylist.txt: 28260) -.adrent.net -# ||adpron.com^$third-party (easylist.txt: 28259) -.adpron.com -# ||adperiun.com^$third-party (easylist.txt: 28258) -.adperiun.com -# ||adparad.net^$third-party (easylist.txt: 28257) -.adparad.net -# ||adnetxchange.com^$third-party (easylist.txt: 28256) -.adnetxchange.com -# ||admez.com^$third-party (easylist.txt: 28255) -.admez.com -# ||adlook.net^$third-party (easylist.txt: 28254) -.adlook.net -# ||adjunky.com^$third-party (easylist.txt: 28253) -.adjunky.com -# ||adfux.com^$third-party (easylist.txt: 28252) -.adfux.com -# ||addbags.com^$third-party (easylist.txt: 28251) -.addbags.com -# ||adcell.de^$third-party (easylist.txt: 28250) -.adcell.de -# ||adbmi.com^$third-party (easylist.txt: 28249) -.adbmi.com -# ||adbars.net^$third-party (easylist.txt: 28248) -.adbars.net -# ||ad4partners.com^$third-party (easylist.txt: 28247) -.ad4partners.com -# ||ad001.ru^$third-party (easylist.txt: 28246) -.ad001.ru -# ||ad-u.com^$third-party (easylist.txt: 28245) -.ad-u.com -# ||ad-411.com^$third-party (easylist.txt: 28244) -.ad-411.com -# ||actionlocker.com^$third-party (easylist.txt: 28243) -.actionlocker.com -# ||acnescarsx.info^$third-party (easylist.txt: 28242) -.acnescarsx.info -# ||acmexxx.com^$third-party (easylist.txt: 28241) -.acmexxx.com -# ||abusedbabysitters.com^$third-party (easylist.txt: 28240) -.abusedbabysitters.com -# ||abgeobalancer.com^$third-party (easylist.txt: 28239) -.abgeobalancer.com -# ||abakys.ru^$third-party (easylist.txt: 28238) -.abakys.ru -# ||ab4tn.com^$third-party (easylist.txt: 28237) -.ab4tn.com -# ||aaovn.info^$third-party (easylist.txt: 28236) -.aaovn.info -# ||8ipztcc1.com^$third-party (easylist.txt: 28235) -.8ipztcc1.com -# ||89.248.172.46^$third-party (easylist.txt: 28234) -.89.248.172.46 -# ||85.17.210.202^$third-party (easylist.txt: 28233) -.85.17.210.202 -# ||80.77.113.200^$third-party (easylist.txt: 28232) -.80.77.113.200 -# ||7vws1j1j.com^$third-party (easylist.txt: 28231) -.7vws1j1j.com -# ||7cxcrejm.com^$third-party (easylist.txt: 28230) -.7cxcrejm.com -# ||777partners.com^$third-party (easylist.txt: 28229) -.777partners.com -# ||777partner.net^$third-party (easylist.txt: 28228) -.777partner.net -# ||777partner.com^$third-party (easylist.txt: 28227) -.777partner.com -# ||777-partners.net^$third-party (easylist.txt: 28226) -.777-partners.net -# ||777-partners.com^$third-party (easylist.txt: 28225) -.777-partners.com -# ||777-partner.net^$third-party (easylist.txt: 28224) -.777-partner.net -# ||777-partner.com^$third-party (easylist.txt: 28223) -.777-partner.com -# ||76.76.5.113^$third-party (easylist.txt: 28222) -.76.76.5.113 -# ||750industries.com^$third-party (easylist.txt: 28221) -.750industries.com -# ||699fy4ne.com^$third-party (easylist.txt: 28220) -.699fy4ne.com -# ||59zs1xei.com^$third-party (easylist.txt: 28219) -.59zs1xei.com -# ||4link.it^$third-party (easylist.txt: 28218) -.4link.it -# ||45i73jv6.com^$third-party (easylist.txt: 28217) -.45i73jv6.com -# ||40xbfzk8.com^$third-party (easylist.txt: 28216) -.40xbfzk8.com -# ||33traffic.com^$third-party (easylist.txt: 28215) -.33traffic.com -# ||24x7adservice.com^$third-party (easylist.txt: 28214) -.24x7adservice.com -# ||24smile.org^$third-party (easylist.txt: 28213) -.24smile.org -# ||247teencash.net^$third-party (easylist.txt: 28212) -.247teencash.net -# ||21sexturycash.com^$third-party (easylist.txt: 28211) -.21sexturycash.com -# ||212.150.34.117^$third-party (easylist.txt: 28210) -.212.150.34.117 -# ||206.217.206.137^$third-party (easylist.txt: 28209) -.206.217.206.137 -# ||1tizer.com^$third-party (easylist.txt: 28208) -.1tizer.com -# ||1loop.com^$third-party (easylist.txt: 28207) -.1loop.com -# ||195.228.74.26^$third-party (easylist.txt: 28206) -.195.228.74.26 -# ||18naked.com^$third-party (easylist.txt: 28205) -.18naked.com -# ||15yomodels.com^$third-party (easylist.txt: 28203) -.15yomodels.com -# ||123advertising.nl^$third-party (easylist.txt: 28202) -.123advertising.nl -# ||10y5gehv.com^$third-party (easylist.txt: 28201) -.10y5gehv.com -# ||100pour.com^$third-party (easylist.txt: 28200) -.100pour.com -# ||0llii0g6.com^$third-party (easylist.txt: 28199) -.0llii0g6.com -# ||zeroredirect1.com^$popup,third-party (easylist.txt: 28197) -.zeroredirect1.com -# ||zedo.com^$popup,third-party (easylist.txt: 28196) -.zedo.com -# ||z5x.net^$popup,third-party (easylist.txt: 28195) -.z5x.net -# ||yupiromo.ru^$popup,third-party (easylist.txt: 28194) -.yupiromo.ru -# ||yieldtraffic.com^$popup,third-party (easylist.txt: 28193) -.yieldtraffic.com -# ||yieldmanager.com^$popup,third-party (easylist.txt: 28192) -.yieldmanager.com -# ||xtendmedia.com^$popup,third-party (easylist.txt: 28191) -.xtendmedia.com -# ||xclicks.net^$popup,third-party (easylist.txt: 28190) -.xclicks.net -# ||xaxoro.com^$popup,third-party (easylist.txt: 28189) -.xaxoro.com -# ||wzus1.ask.com^$popup,third-party (easylist.txt: 28188) -.wzus1.ask.com -# ||wwwpromoter.com^$popup,third-party (easylist.txt: 28187) -.wwwpromoter.com -# ||worldrewardcenter.net^$popup,third-party (easylist.txt: 28186) -.worldrewardcenter.net -# ||wonderlandads.com^$popup,third-party (easylist.txt: 28185) -.wonderlandads.com -# ||wigetmedia.com^$popup,third-party (easylist.txt: 28184) -.wigetmedia.com -# ||whoads.net^$popup,third-party (easylist.txt: 28183) -.whoads.net -# ||weliketofuckstrangers.com^$popup,third-party (easylist.txt: 28182) -.weliketofuckstrangers.com -# ||webtrackerplus.com^$popup,third-party (easylist.txt: 28181) -.webtrackerplus.com -# ||websearchers.net^$popup,third-party (easylist.txt: 28180) -.websearchers.net -# ||weareheard.org^$popup,third-party (easylist.txt: 28179) -.weareheard.org -# ||wbsadsdel2.com^$popup,third-party (easylist.txt: 28178) -.wbsadsdel2.com -# ||wbsadsdel.com^$popup,third-party (easylist.txt: 28177) -.wbsadsdel.com -# ||wahoha.com^$popup,third-party (easylist.txt: 28176) -.wahoha.com -# ||waframedia5.com^$popup,third-party (easylist.txt: 28175) -.waframedia5.com -# ||w4statistics.info^$popup,third-party (easylist.txt: 28174) -.w4statistics.info -# ||vprmnwbskk.com^$popup,third-party (easylist.txt: 28173) -.vprmnwbskk.com -# ||vipcpms.com^$popup,third-party (easylist.txt: 28172) -.vipcpms.com -# ||vgsgaming-ads.com^$popup,third-party (easylist.txt: 28171) -.vgsgaming-ads.com -# ||updater-checker.net^$popup,third-party (easylist.txt: 28170) -.updater-checker.net -# ||twqiqiang.com^$popup,third-party (easylist.txt: 28169) -.twqiqiang.com -# ||tvas-b.pw^$popup,third-party (easylist.txt: 28168) -.tvas-b.pw -# ||tvas-a.pw^$popup,third-party (easylist.txt: 28167) -.tvas-a.pw -# ||tutvp.com^$popup,third-party (easylist.txt: 28166) -.tutvp.com -# ||trw12.com^$popup,third-party (easylist.txt: 28165) -.trw12.com -# ||trklnks.com^$popup,third-party (easylist.txt: 28164) -.trklnks.com -# ||traffichaus.com^$popup,third-party (easylist.txt: 28163) -.traffichaus.com -# ||trafficforce.com^$popup,third-party (easylist.txt: 28162) -.trafficforce.com -# ||tracki112.com^$popup,third-party (easylist.txt: 28161) -.tracki112.com -# ||totrack.ru^$popup,third-party (easylist.txt: 28160) -.totrack.ru -# ||totaladperformance.com^$popup,third-party (easylist.txt: 28159) -.totaladperformance.com -# ||toroadvertisingmedia.com^$popup,third-party (easylist.txt: 28158) -.toroadvertisingmedia.com -# ||topshelftraffic.com^$popup,third-party (easylist.txt: 28157) -.topshelftraffic.com -# ||tonefuse.com^$popup,third-party (easylist.txt: 28156) -.tonefuse.com -# ||tjoomo.com^$popup,third-party (easylist.txt: 28155) -.tjoomo.com -# ||therewardsurvey.com^$popup,third-party (easylist.txt: 28154) -.therewardsurvey.com -# ||thepornsurvey.com^$popup,third-party (easylist.txt: 28153) -.thepornsurvey.com -# ||the-consumer-reporter.org^$popup,third-party (easylist.txt: 28152) -.the-consumer-reporter.org -# ||the-binary-trader.biz^$popup,third-party (easylist.txt: 28151) -.the-binary-trader.biz -# ||textsrv.com^$popup,third-party (easylist.txt: 28150) -.textsrv.com -# ||terraclicks.com^$popup,third-party (easylist.txt: 28149) -.terraclicks.com -# ||technicssurveys.info^$popup,third-party (easylist.txt: 28148) -.technicssurveys.info -# ||techcloudtrk.com^$popup,third-party (easylist.txt: 28147) -.techcloudtrk.com -# ||td563.com^$popup,third-party (easylist.txt: 28146) -.td563.com -# ||syncedvision.com^$popup,third-party (easylist.txt: 28145) -.syncedvision.com -# ||symkashop.ru^$popup,third-party (easylist.txt: 28144) -.symkashop.ru -# ||swadvertising.org^$popup,third-party (easylist.txt: 28143) -.swadvertising.org -# ||surveystope.com^$popup,third-party (easylist.txt: 28142) -.surveystope.com -# ||surveyspaid.com^$popup,third-party (easylist.txt: 28141) -.surveyspaid.com -# ||surveysforgifts.org^$popup,third-party (easylist.txt: 28140) -.surveysforgifts.org -# ||surveyend.com^$popup,third-party (easylist.txt: 28139) -.surveyend.com -# ||statstrackeronline.com^$popup,third-party (easylist.txt: 28138) -.statstrackeronline.com -# ||statsmobi.com^$popup,third-party (easylist.txt: 28137) -.statsmobi.com -# ||stabletrappeddevote.info^$popup,third-party (easylist.txt: 28136) -.stabletrappeddevote.info -# ||srvpub.com^$popup,third-party (easylist.txt: 28135) -.srvpub.com -# ||srv2trking.com^$popup,third-party (easylist.txt: 28134) -.srv2trking.com -# ||srv-ad.com^$popup,third-party (easylist.txt: 28133) -.srv-ad.com -# ||sparkstudios.com^$popup,third-party (easylist.txt: 28132) -.sparkstudios.com -# ||smutty.com^$popup,third-party (easylist.txt: 28131) -.smutty.com -# ||sms-mmm.com^$popup,third-party (easylist.txt: 28130) -.sms-mmm.com -# ||smartwebads.com^$popup,third-party (easylist.txt: 28129) -.smartwebads.com -# ||slimspots.com^$popup,third-party (easylist.txt: 28128) -.slimspots.com -# ||slikslik.com^$popup,third-party (easylist.txt: 28127) -.slikslik.com -# ||singlesexdates.com^$popup,third-party (easylist.txt: 28126) -.singlesexdates.com -# ||simpleinternetupdate.com^$popup,third-party (easylist.txt: 28125) -.simpleinternetupdate.com -# ||silstavo.com^$popup,third-party (easylist.txt: 28124) -.silstavo.com -# ||sexitnow.com^$popup,third-party (easylist.txt: 28123) -.sexitnow.com -# ||servingit.co^$popup,third-party (easylist.txt: 28122) -.servingit.co -# ||serving-sys.com^$popup,third-party (easylist.txt: 28121) -.serving-sys.com -# ||senzapudore.it^$popup,third-party (easylist.txt: 28120) -.senzapudore.it -# ||secureintl.com^$popup,third-party (easylist.txt: 28119) -.secureintl.com -# ||rubikon6.if.ua^$popup,third-party (easylist.txt: 28118) -.rubikon6.if.ua -# ||roulettebotplus.com^$popup,third-party (easylist.txt: 28117) -.roulettebotplus.com -# ||ronetu.ru^$popup,third-party (easylist.txt: 28116) -.ronetu.ru -# ||ringtonepartner.com^$popup,third-party (easylist.txt: 28115) -.ringtonepartner.com -# ||ringtonematcher.com^$popup,third-party (easylist.txt: 28114) -.ringtonematcher.com -# ||rikhov.ru^$popup,third-party (easylist.txt: 28113) -.rikhov.ru -# ||rgadvert.com^$popup,third-party (easylist.txt: 28112) -.rgadvert.com -# ||retkow.com^$popup,third-party (easylist.txt: 28111) -.retkow.com -# ||rehok.km.ua^$popup,third-party (easylist.txt: 28110) -.rehok.km.ua -# ||rdsrv.com^$popup,third-party (easylist.txt: 28109) -.rdsrv.com -# ||ratari.ru^$popup,third-party (easylist.txt: 28108) -.ratari.ru -# ||raoplenort.biz^$popup,third-party (easylist.txt: 28107) -.raoplenort.biz -# ||pwrads.net^$popup,third-party (easylist.txt: 28106) -.pwrads.net -# ||pureadexchange.com^$popup,third-party (easylist.txt: 28105) -.pureadexchange.com -# ||pulse360.com^$popup,third-party (easylist.txt: 28104) -.pulse360.com -# ||pubted.com^$popup,third-party (easylist.txt: 28103) -.pubted.com -# ||pubdirecte.com^$popup,third-party (easylist.txt: 28102) -.pubdirecte.com -# ||pubads.g.doubleclick.net^$popup,third-party (easylist.txt: 28101) -.pubads.g.doubleclick.net -# ||prowlerz.com^$popup,third-party (easylist.txt: 28100) -.prowlerz.com -# ||propellerpops.com^$popup,third-party (easylist.txt: 28099) -.propellerpops.com -# ||propellerads.com^$popup,third-party (easylist.txt: 28098) -.propellerads.com -# ||promotions.sportsbet.com.au^$popup,third-party (easylist.txt: 28097) -.promotions.sportsbet.com.au -# ||promotions-paradise.org^$popup,third-party (easylist.txt: 28096) -.promotions-paradise.org -# ||prizegiveaway.org^$popup,third-party (easylist.txt: 28095) -.prizegiveaway.org -# ||print3.info^$popup,third-party (easylist.txt: 28094) -.print3.info -# ||poponclick.com^$popup,third-party (easylist.txt: 28093) -.poponclick.com -# ||popmyads.com^$popup,third-party (easylist.txt: 28092) -.popmyads.com -# ||popads.net^$popup,third-party (easylist.txt: 28091) -.popads.net -# ||pomofon.ru^$popup,third-party (easylist.txt: 28090) -.pomofon.ru -# ||pointroll.com^$popup,third-party (easylist.txt: 28089) -.pointroll.com -# ||pointclicktrack.com^$popup,third-party (easylist.txt: 28088) -.pointclicktrack.com -# ||plsdrct2.me^$popup,third-party (easylist.txt: 28087) -.plsdrct2.me -# ||plexop.net^$popup,third-party (easylist.txt: 28086) -.plexop.net -# ||pipaoffers.com^$popup,third-party (easylist.txt: 28085) -.pipaoffers.com -# ||pgmediaserve.com^$popup,third-party (easylist.txt: 28084) -.pgmediaserve.com -# ||pexu.com^$popup,third-party (easylist.txt: 28083) -.pexu.com -# ||perfcreatives.com^$popup,third-party (easylist.txt: 28082) -.perfcreatives.com -# ||pdfcomplete.com^$popup,third-party (easylist.txt: 28081) -.pdfcomplete.com -# ||partypills.org^$popup,third-party (easylist.txt: 28080) -.partypills.org -# ||oxybe.com^$popup,third-party (easylist.txt: 28079) -.oxybe.com -# ||overturs.com^$popup,third-party (easylist.txt: 28078) -.overturs.com -# ||openadserving.com^$popup,third-party (easylist.txt: 28077) -.openadserving.com -# ||open-downloads.net^$popup,third-party (easylist.txt: 28076) -.open-downloads.net -# ||onlinecashmethod.com^$popup,third-party (easylist.txt: 28075) -.onlinecashmethod.com -# ||onlinecareerpackage.com^$popup,third-party (easylist.txt: 28074) -.onlinecareerpackage.com -# ||onhitads.net^$popup,third-party (easylist.txt: 28073) -.onhitads.net -# ||onclickads.net^$popup,third-party (easylist.txt: 28072) -.onclickads.net -# ||onad.eu^$popup,third-party (easylist.txt: 28071) -.onad.eu -# ||o333o.com^$popup,third-party (easylist.txt: 28070) -.o333o.com -# ||nymphdate.com^$popup,third-party (easylist.txt: 28069) -.nymphdate.com -# ||nturveev.com^$popup,third-party (easylist.txt: 28068) -.nturveev.com -# ||netliker.com^$popup,third-party (easylist.txt: 28067) -.netliker.com -# ||n388hkxg.com^$popup,third-party (easylist.txt: 28066) -.n388hkxg.com -# ||my-layer.net^$popup,third-party (easylist.txt: 28065) -.my-layer.net -# ||moneytec.com^$popup,third-party (easylist.txt: 28064) -.moneytec.com -# ||mobileraffles.com^$popup,third-party (easylist.txt: 28063) -.mobileraffles.com -# ||mktmobi.com^$popup,third-party (easylist.txt: 28062) -.mktmobi.com -# ||millionairesurveys.com^$popup,third-party (easylist.txt: 28061) -.millionairesurveys.com -# ||metodoroleta24h.com^$popup,third-party (easylist.txt: 28060) -.metodoroleta24h.com -# ||menepe.com^$popup,third-party (easylist.txt: 28059) -.menepe.com -# ||megapopads.com^$popup,third-party (easylist.txt: 28058) -.megapopads.com -# ||meetsexygirls.org^$popup,third-party (easylist.txt: 28057) -.meetsexygirls.org -# ||meetgoodgirls.com^$popup,third-party (easylist.txt: 28056) -.meetgoodgirls.com -# ||mediaseeding.com^$popup,third-party (easylist.txt: 28055) -.mediaseeding.com -# ||media-servers.net^$popup,third-party (easylist.txt: 28054) -.media-servers.net -# ||media-app.com^$popup,third-party (easylist.txt: 28053) -.media-app.com -# ||mdn2015x1.com^$popup,third-party (easylist.txt: 28052) -.mdn2015x1.com -# ||marketresearchglobal.com^$popup,third-party (easylist.txt: 28051) -.marketresearchglobal.com -# ||maomaotang.com^$popup,third-party (easylist.txt: 28050) -.maomaotang.com -# ||m57ku6sm.com^$popup,third-party (easylist.txt: 28049) -.m57ku6sm.com -# ||lustigbanner.com^$popup,third-party (easylist.txt: 28048) -.lustigbanner.com -# ||lnkgt.com^$popup,third-party (easylist.txt: 28047) -.lnkgt.com -# ||lmebxwbsno.com^$popup,third-party (easylist.txt: 28046) -.lmebxwbsno.com -# ||liversely.net^$popup,third-party (easylist.txt: 28045) -.liversely.net -# ||livepromotools.com^$popup,third-party (easylist.txt: 28044) -.livepromotools.com -# ||livechatflirt.com^$popup,third-party (easylist.txt: 28043) -.livechatflirt.com -# ||ligatus.com^$popup,third-party (easylist.txt: 28042) -.ligatus.com -# ||letshareus.com^$popup,third-party (easylist.txt: 28041) -.letshareus.com -# ||legisland.net^$popup,third-party (easylist.txt: 28040) -.legisland.net -# ||landsraad.cc^$popup,third-party (easylist.txt: 28039) -.landsraad.cc -# ||kanoodle.com^$popup,third-party (easylist.txt: 28038) -.kanoodle.com -# ||junbi-tracker.com^$popup,third-party (easylist.txt: 28037) -.junbi-tracker.com -# ||jujzh9va.com^$popup,third-party (easylist.txt: 28036) -.jujzh9va.com -# ||jdtracker.com^$popup,third-party (easylist.txt: 28035) -.jdtracker.com -# ||integral-marketing.com^$popup,third-party (easylist.txt: 28034) -.integral-marketing.com -# ||instantpaydaynetwork.com^$popup,third-party (easylist.txt: 28033) -.instantpaydaynetwork.com -# ||insta-cash.net^$popup,third-party (easylist.txt: 28032) -.insta-cash.net -# ||indianweeklynews.com^$popup,third-party (easylist.txt: 28031) -.indianweeklynews.com -# ||inbinaryoption.com^$popup,third-party (easylist.txt: 28029) -.inbinaryoption.com -# ||ilividnewtab.com^$popup,third-party (easylist.txt: 28028) -.ilividnewtab.com -# ||iiasdomk1m9812m4z3.com^$popup,third-party (easylist.txt: 28027) -.iiasdomk1m9812m4z3.com -# ||ifilez.org^$popup,third-party (easylist.txt: 28026) -.ifilez.org -# ||hstpnetwork.com^$popup,third-party (easylist.txt: 28025) -.hstpnetwork.com -# ||hotchatdirect.com^$popup,third-party (easylist.txt: 28024) -.hotchatdirect.com -# ||hornygirlsexposed.com^$popup,third-party (easylist.txt: 28023) -.hornygirlsexposed.com -# ||homecareerforyou1.info^$popup,third-party (easylist.txt: 28022) -.homecareerforyou1.info -# ||hilltopads.net^$popup,third-party (easylist.txt: 28021) -.hilltopads.net -# ||highcpms.com^$popup,third-party (easylist.txt: 28020) -.highcpms.com -# ||hd-plugin.com^$popup,third-party (easylist.txt: 28019) -.hd-plugin.com -# ||gsniper2.com^$popup,third-party (easylist.txt: 28018) -.gsniper2.com -# ||greatbranddeals.com^$popup,third-party (easylist.txt: 28017) -.greatbranddeals.com -# ||gotoplaymillion.com^$popup,third-party (easylist.txt: 28016) -.gotoplaymillion.com -# ||googleads.g.doubleclick.net^$popup,third-party (easylist.txt: 28015) -.googleads.g.doubleclick.net -# ||gofindmedia.net^$popup,third-party (easylist.txt: 28014) -.gofindmedia.net -# ||giveaways.club^$popup,third-party (easylist.txt: 28013) -.giveaways.club -# ||gib-gib-la.com^$popup,third-party (easylist.txt: 28012) -.gib-gib-la.com -# ||ganja.com^$popup,third-party (easylist.txt: 28011) -.ganja.com -# ||g05.info^$popup,third-party (easylist.txt: 28010) -.g05.info -# ||frtya.com^$popup,third-party (easylist.txt: 28009) -.frtya.com -# ||friendlyduck.com^$popup,third-party (easylist.txt: 28008) -.friendlyduck.com -# ||fmdwbsfxf0.com^$popup,third-party (easylist.txt: 28007) -.fmdwbsfxf0.com -# ||firstmediahub.com^$popup,third-party (easylist.txt: 28006) -.firstmediahub.com -# ||firstclass-download.com^$popup,third-party (easylist.txt: 28005) -.firstclass-download.com -# ||findonlinesurveysforcash.com^$popup,third-party (easylist.txt: 28004) -.findonlinesurveysforcash.com -# ||finance-reporting.org^$popup,third-party (easylist.txt: 28003) -.finance-reporting.org -# ||filestube.com^$popup,third-party (easylist.txt: 28002) -.filestube.com -# ||fidel.to^$popup,third-party (easylist.txt: 28001) -.fidel.to -# ||fhserve.com^$popup,third-party (easylist.txt: 28000) -.fhserve.com -# ||f-questionnaire.com^$popup,third-party (easylist.txt: 27999) -.f-questionnaire.com -# ||f-hookups.com^$popup,third-party (easylist.txt: 27998) -.f-hookups.com -# ||ezdownloadpro.info^$popup,third-party (easylist.txt: 27997) -.ezdownloadpro.info -# ||exoclick.com^$popup,third-party (easylist.txt: 27996) -.exoclick.com -# ||ewebse.com^$popup,third-party (easylist.txt: 27995) -.ewebse.com -# ||euromillionairesystem.me^$popup,third-party (easylist.txt: 27994) -.euromillionairesystem.me -# ||eroanalysis.com^$popup,third-party (easylist.txt: 27993) -.eroanalysis.com -# ||epicgameads.com^$popup,third-party (easylist.txt: 27992) -.epicgameads.com -# ||ebzkswbs78.com^$popup,third-party (easylist.txt: 27991) -.ebzkswbs78.com -# ||easykits.org^$popup,third-party (easylist.txt: 27990) -.easykits.org -# ||easydownloadnow.com^$popup,third-party (easylist.txt: 27989) -.easydownloadnow.com -# ||durokuro.com^$popup,third-party (easylist.txt: 27988) -.durokuro.com -# ||downloadthesefile.com^$popup,third-party (easylist.txt: 27987) -.downloadthesefile.com -# ||downloadboutique.com^$popup,third-party (easylist.txt: 27986) -.downloadboutique.com -# ||down1oads.com^$popup,third-party (easylist.txt: 27985) -.down1oads.com -# ||doublepimp.com^$popup,third-party (easylist.txt: 27984) -.doublepimp.com -# ||dojerena.com^$popup,third-party (easylist.txt: 27983) -.dojerena.com -# ||distantstat.com^$popup,third-party (easylist.txt: 27982) -.distantstat.com -# ||distantnews.com^$popup,third-party (easylist.txt: 27981) -.distantnews.com -# ||directrev.com^$popup,third-party (easylist.txt: 27980) -.directrev.com -# ||denza.pro^$popup,third-party (easylist.txt: 27979) -.denza.pro -# ||crazyad.net^$popup,third-party (easylist.txt: 27978) -.crazyad.net -# ||cpvadvertise.com^$popup,third-party (easylist.txt: 27977) -.cpvadvertise.com -# ||cpmterra.com^$popup,third-party (easylist.txt: 27976) -.cpmterra.com -# ||cpmstar.com^$popup,third-party (easylist.txt: 27975) -.cpmstar.com -# ||cpayard.com^$popup,third-party (easylist.txt: 27974) -.cpayard.com -# ||contractallsinstance.info^$popup,third-party (easylist.txt: 27973) -.contractallsinstance.info -# ||contentabc.com^$popup,third-party (easylist.txt: 27972) -.contentabc.com -# ||computersoftwarelive.com^$popup,third-party (easylist.txt: 27971) -.computersoftwarelive.com -# ||cmllk2.info^$popup,third-party (easylist.txt: 27970) -.cmllk2.info -# ||clpremdo.com^$popup,third-party (easylist.txt: 27969) -.clpremdo.com -# ||cloudtracked.com^$popup,third-party (easylist.txt: 27968) -.cloudtracked.com -# ||clkrev.com^$popup,third-party (easylist.txt: 27967) -.clkrev.com -# ||clkmon.com^$popup,third-party (easylist.txt: 27966) -.clkmon.com -# ||clkads.com^$popup,third-party (easylist.txt: 27965) -.clkads.com -# ||clicktripz.com^$popup,third-party (easylist.txt: 27964) -.clicktripz.com -# ||clickter.net^$popup,third-party (easylist.txt: 27963) -.clickter.net -# ||clicksvenue.com^$popup,third-party (easylist.txt: 27962) -.clicksvenue.com -# ||clicksor.com^$popup,third-party (easylist.txt: 27961) -.clicksor.com -# ||clickosmedia.com^$popup,third-party (easylist.txt: 27960) -.clickosmedia.com -# ||clickmngr.com^$popup,third-party (easylist.txt: 27959) -.clickmngr.com -# ||clickfuse.com^$popup,third-party (easylist.txt: 27958) -.clickfuse.com -# ||casino.betsson.com^$popup,third-party (easylist.txt: 27957) -.casino.betsson.com -# ||careerjournalonline.com^$popup (easylist.txt: 27956) -.careerjournalonline.com -# ||callhelpmetaroll.rocks^$popup,third-party (easylist.txt: 27955) -.callhelpmetaroll.rocks -# ||bzrvwbsh5o.com^$popup,third-party (easylist.txt: 27954) -.bzrvwbsh5o.com -# ||brandreachsys.com^$popup,third-party (easylist.txt: 27953) -.brandreachsys.com -# ||bonzuna.com^$popup,third-party (easylist.txt: 27952) -.bonzuna.com -# ||bongacams.com^$popup,third-party (easylist.txt: 27951) -.bongacams.com -# ||blogscash.info^$popup,third-party (easylist.txt: 27950) -.blogscash.info -# ||blockthis.es^$popup,third-party (easylist.txt: 27949) -.blockthis.es -# ||blinkogold.es^$popup,third-party (easylist.txt: 27948) -.blinkogold.es -# ||blinko.es^$popup,third-party (easylist.txt: 27947) -.blinko.es -# ||binaryoptionsgame.com^$popup,third-party (easylist.txt: 27946) -.binaryoptionsgame.com -# ||bighot.ru^$popup,third-party (easylist.txt: 27945) -.bighot.ru -# ||bidvertiser.com^$popup,third-party (easylist.txt: 27944) -.bidvertiser.com -# ||bidsystem.com^$popup,third-party (easylist.txt: 27943) -.bidsystem.com -# ||bestproducttesters.com^$popup,third-party (easylist.txt: 27942) -.bestproducttesters.com -# ||best-zb.com^$popup,third-party (easylist.txt: 27941) -.best-zb.com -# ||bentdownload.com^$popup,third-party (easylist.txt: 27940) -.bentdownload.com -# ||becoquins.net^$popup,third-party (easylist.txt: 27939) -.becoquins.net -# ||becoquin.com^$popup,third-party (easylist.txt: 27938) -.becoquin.com -# ||bbuni.com^$popup,third-party (easylist.txt: 27937) -.bbuni.com -# ||baypops.com^$popup,third-party (easylist.txt: 27936) -.baypops.com -# ||awsclic.com^$popup,third-party (easylist.txt: 27935) -.awsclic.com -# ||awempire.com^$popup,third-party (easylist.txt: 27934) -.awempire.com -# ||avalopaly.com^$popup,third-party (easylist.txt: 27933) -.avalopaly.com -# ||august15download.com^$popup,third-party (easylist.txt: 27932) -.august15download.com -# ||ar.voicefive.com^$popup,third-party (easylist.txt: 27931) -.ar.voicefive.com -# ||answered-questions.com^$popup,third-party (easylist.txt: 27930) -.answered-questions.com -# ||annualinternetsurvey.com^$popup,third-party (easylist.txt: 27929) -.annualinternetsurvey.com -# ||angege.com^$popup,third-party (easylist.txt: 27928) -.angege.com -# ||am10.ru^$popup,third-party (easylist.txt: 27927) -.am10.ru -# ||alternads.info^$popup,third-party (easylist.txt: 27926) -.alternads.info -# ||alpinedrct.com^$popup,third-party (easylist.txt: 27925) -.alpinedrct.com -# ||allsporttv.com^$popup,third-party (easylist.txt: 27924) -.allsporttv.com -# ||allslotscasino.com^$popup,third-party (easylist.txt: 27923) -.allslotscasino.com -# ||aflrm.com^$popup,third-party (easylist.txt: 27922) -.aflrm.com -# ||affbuzzads.com^$popup,third-party (easylist.txt: 27921) -.affbuzzads.com -# ||advmedialtd.com^$popup,third-party (easylist.txt: 27920) -.advmedialtd.com -# ||advertserve.com^$popup,third-party (easylist.txt: 27919) -.advertserve.com -# ||adtraffic.org^$popup,third-party (easylist.txt: 27918) -.adtraffic.org -# ||adtrace.org^$popup,third-party (easylist.txt: 27917) -.adtrace.org -# ||adsurve.com^$popup,third-party (easylist.txt: 27916) -.adsurve.com -# ||adsupplyads.com^$popup,third-party (easylist.txt: 27915) -.adsupplyads.com -# ||adsupply.com^$popup,third-party (easylist.txt: 27914) -.adsupply.com -# ||adsmarket.com^$popup,third-party (easylist.txt: 27913) -.adsmarket.com -# ||adshostnet.com^$popup,third-party (easylist.txt: 27912) -.adshostnet.com -# ||adserverplus.com^$popup,third-party (easylist.txt: 27911) -.adserverplus.com -# ||ads.sexier.com^$popup,third-party (easylist.txt: 27910) -.ads.sexier.com -# ||adplxmd.com^$popup,third-party (easylist.txt: 27909) -.adplxmd.com -# ||adonweb.ru^$popup,third-party (easylist.txt: 27908) -.adonweb.ru -# ||adnxs.com^$popup,third-party (easylist.txt: 27907) -.adnxs.com -# ||adnetworkperformance.com^$popup,third-party (easylist.txt: 27906) -.adnetworkperformance.com -# ||adlure.net^$popup,third-party (easylist.txt: 27905) -.adlure.net -# ||adk2x.com^$popup,third-party (easylist.txt: 27904) -.adk2x.com -# ||adk2.net^$popup,third-party (easylist.txt: 27903) -.adk2.net -# ||adk2.com^$popup,third-party (easylist.txt: 27902) -.adk2.com -# ||adk2.co^$popup,third-party (easylist.txt: 27901) -.adk2.co -# ||adjuggler.net^$popup,third-party (easylist.txt: 27900) -.adjuggler.net -# ||aditor.com^$popup,third-party (easylist.txt: 27899) -.aditor.com -# ||adimps.com^$popup,third-party (easylist.txt: 27898) -.adimps.com -# ||adform.net^$popup,third-party (easylist.txt: 27897) -.adform.net -# ||adfarm.mediaplex.com^$popup,third-party (easylist.txt: 27896) -.adfarm.mediaplex.com -# ||adcdnx.com^$popup,third-party (easylist.txt: 27895) -.adcdnx.com -# ||adcash.com^$popup,third-party (easylist.txt: 27894) -.adcash.com -# ||adbma.com^$popup,third-party (easylist.txt: 27893) -.adbma.com -# ||ad4game.com^$popup,third-party (easylist.txt: 27892) -.ad4game.com -# ||ad2games.com^$popup,third-party (easylist.txt: 27891) -.ad2games.com -# ||ad2387.com^$popup,third-party (easylist.txt: 27890) -.ad2387.com -# ||ad131m.com^$popup,third-party (easylist.txt: 27889) -.ad131m.com -# ||ad.doubleclick.net^$popup,third-party (easylist.txt: 27888) -.ad.doubleclick.net -# ||ad-feeds.com^$popup,third-party (easylist.txt: 27887) -.ad-feeds.com -# ||ad-emea.doubleclick.net^$popup,third-party (easylist.txt: 27886) -.ad-emea.doubleclick.net -# ||ad-apac.doubleclick.net^$popup,third-party (easylist.txt: 27885) -.ad-apac.doubleclick.net -# ||absoluteclickscom.com^$popup,third-party (easylist.txt: 27884) -.absoluteclickscom.com -# ||abbeyblog.me^$popup,third-party (easylist.txt: 27883) -.abbeyblog.me -# ||9newstoday.net^$popup,third-party (easylist.txt: 27882) -.9newstoday.net -# ||888promos.com^$popup,third-party (easylist.txt: 27881) -.888promos.com -# ||888poker.com^$popup,third-party (easylist.txt: 27880) -.888poker.com -# ||888media.net^$popup,third-party (easylist.txt: 27879) -.888media.net -# ||888games.com^$popup,third-party (easylist.txt: 27878) -.888games.com -# ||888casino.com^$popup,third-party (easylist.txt: 27877) -.888casino.com -# ||83nsdjqqo1cau183xz.com^$popup,third-party (easylist.txt: 27876) -.83nsdjqqo1cau183xz.com -# ||5dimes.com^$popup,third-party (easylist.txt: 27875) -.5dimes.com -# ||4dsply.com^$popup,third-party (easylist.txt: 27874) -.4dsply.com -# ||360adstrack.com^$popup,third-party (easylist.txt: 27873) -.360adstrack.com -# ||360adshost.net^$popup,third-party (easylist.txt: 27872) -.360adshost.net -# ||32d1d3b9c.se^$popup,third-party (easylist.txt: 27871) -.32d1d3b9c.se -# ||30daychange.co^$popup,third-party (easylist.txt: 27870) -.30daychange.co -# ||2mdn.info^$popup,third-party (easylist.txt: 27869) -.2mdn.info -# ||1phads.com^$popup,third-party (easylist.txt: 27868) -.1phads.com -# ||1afcfcb2c.ninja^$popup,third-party (easylist.txt: 27867) -.1afcfcb2c.ninja -# ||123vidz.com^$popup,third-party (easylist.txt: 27866) -.123vidz.com -# ||zrfrornn.net^$third-party (easylist.txt: 27864) -.zrfrornn.net -# ||zomri.net^$third-party (easylist.txt: 27863) -.zomri.net -# ||ziccardia.com^$third-party (easylist.txt: 27862) -.ziccardia.com -# ||z4pick.com^$third-party (easylist.txt: 27861) -.z4pick.com -# ||yuasaghn.com^$third-party (easylist.txt: 27860) -.yuasaghn.com -# ||yrrrbn.me^$third-party (easylist.txt: 27859) -.yrrrbn.me -# ||ypprr.com^$third-party (easylist.txt: 27858) -.ypprr.com -# ||ypppdc.com^$third-party (easylist.txt: 27857) -.ypppdc.com -# ||yopdi.com^$third-party (easylist.txt: 27856) -.yopdi.com -# ||yomri.net^$third-party (easylist.txt: 27855) -.yomri.net -# ||yodr.net^$third-party (easylist.txt: 27854) -.yodr.net -# ||yobr.net^$third-party (easylist.txt: 27853) -.yobr.net -# ||yardr.net^$third-party (easylist.txt: 27852) -.yardr.net -# ||xylopologyn.com^$third-party (easylist.txt: 27851) -.xylopologyn.com -# ||xplrer.co^$third-party (easylist.txt: 27850) -.xplrer.co -# ||xcrsqg.com^$third-party (easylist.txt: 27849) -.xcrsqg.com -# ||wudr.net^$third-party (easylist.txt: 27848) -.wudr.net -# ||wuatriser.net^$third-party (easylist.txt: 27847) -.wuatriser.net -# ||wuarnurf.net^$third-party (easylist.txt: 27846) -.wuarnurf.net -# ||wopdi.com^$third-party (easylist.txt: 27845) -.wopdi.com -# ||wensdteuy.com^$third-party (easylist.txt: 27844) -.wensdteuy.com -# ||waddr.com^$third-party (easylist.txt: 27843) -.waddr.com -# ||vuadiolgy.net^$third-party (easylist.txt: 27842) -.vuadiolgy.net -# ||vopdi.com^$third-party (easylist.txt: 27841) -.vopdi.com -# ||virsualr.com^$third-party (easylist.txt: 27840) -.virsualr.com -# ||viewscout.com^$third-party (easylist.txt: 27839) -.viewscout.com -# ||v8bridge.link^$third-party (easylist.txt: 27838) -.v8bridge.link -# ||username1.link^$third-party (easylist.txt: 27837) -.username1.link -# ||uppo.co^$third-party (easylist.txt: 27836) -.uppo.co -# ||unuarvse.net^$third-party (easylist.txt: 27835) -.unuarvse.net -# ||tualipoly.net^$third-party (easylist.txt: 27834) -.tualipoly.net -# ||trndi.net^$third-party (easylist.txt: 27833) -.trndi.net -# ||trllxv.co^$third-party (easylist.txt: 27832) -.trllxv.co -# ||topdi.net^$third-party (easylist.txt: 27831) -.topdi.net -# ||tolosgrey.net^$third-party (easylist.txt: 27830) -.tolosgrey.net -# ||thrilamd.net^$third-party (easylist.txt: 27829) -.thrilamd.net -# ||thiscdn.com^$third-party (easylist.txt: 27828) -.thiscdn.com -# ||th4wwe.net^$third-party (easylist.txt: 27827) -.th4wwe.net -# ||t7row.com^$third-party (easylist.txt: 27826) -.t7row.com -# ||t3sort.com^$third-party (easylist.txt: 27825) -.t3sort.com -# ||sxrrxa.net^$third-party (easylist.txt: 27824) -.sxrrxa.net -# ||spoa-soard.com^$third-party (easylist.txt: 27823) -.spoa-soard.com -# ||splazards.com^$third-party (easylist.txt: 27822) -.splazards.com -# ||spereminf.com^$third-party (easylist.txt: 27821) -.spereminf.com -# ||simusangr.com^$third-party (easylist.txt: 27820) -.simusangr.com -# ||sfesd.net^$third-party (easylist.txt: 27819) -.sfesd.net -# ||selectr.net^$third-party (easylist.txt: 27818) -.selectr.net -# ||rugistratuan.com^$third-party (easylist.txt: 27817) -.rugistratuan.com -# ||rugistoto.net^$third-party (easylist.txt: 27816) -.rugistoto.net -# ||rterdf.me^$third-party (easylist.txt: 27815) -.rterdf.me -# ||rlex.org^$third-party (easylist.txt: 27814) -.rlex.org -# ||rigistrar.net^$third-party (easylist.txt: 27813) -.rigistrar.net -# ||rhgersf.com^$third-party (easylist.txt: 27812) -.rhgersf.com -# ||regersd.net^$third-party (easylist.txt: 27811) -.regersd.net -# ||rdige.com^$third-party (easylist.txt: 27810) -.rdige.com -# ||r3seek.com^$third-party (easylist.txt: 27809) -.r3seek.com -# ||qzsccm.com^$third-party (easylist.txt: 27808) -.qzsccm.com -# ||qewa33a.com^$third-party (easylist.txt: 27807) -.qewa33a.com -# ||q3sift.com^$third-party (easylist.txt: 27806) -.q3sift.com -# ||prndi.net^$third-party (easylist.txt: 27805) -.prndi.net -# ||prfffc.info^$third-party (easylist.txt: 27804) -.prfffc.info -# ||polawrg.com^$third-party (easylist.txt: 27803) -.polawrg.com -# ||pikkr.net^$third-party (easylist.txt: 27802) -.pikkr.net -# ||p7vortex.com^$third-party (easylist.txt: 27801) -.p7vortex.com -# ||opner.co^$third-party (easylist.txt: 27800) -.opner.co -# ||oplo.org^$third-party (easylist.txt: 27799) -.oplo.org -# ||nuaknamg.net^$third-party (easylist.txt: 27798) -.nuaknamg.net -# ||nrfort.com^$third-party (easylist.txt: 27797) -.nrfort.com -# ||maningrs.com^$third-party (easylist.txt: 27796) -.maningrs.com -# ||luadcik.com^$third-party (easylist.txt: 27795) -.luadcik.com -# ||loopr.co^$third-party (easylist.txt: 27794) -.loopr.co -# ||lirte.org^$third-party (easylist.txt: 27793) -.lirte.org -# ||lia-ndr.com^$third-party (easylist.txt: 27792) -.lia-ndr.com -# ||lesuard.com^$third-party (easylist.txt: 27791) -.lesuard.com -# ||leanoisgo.com^$third-party (easylist.txt: 27790) -.leanoisgo.com -# ||kuangard.net^$third-party (easylist.txt: 27789) -.kuangard.net -# ||knoandr.com^$third-party (easylist.txt: 27788) -.knoandr.com -# ||kioshow.com^$third-party (easylist.txt: 27787) -.kioshow.com -# ||kilomonj.net^$third-party (easylist.txt: 27786) -.kilomonj.net -# ||jusukrs.com^$third-party (easylist.txt: 27785) -.jusukrs.com -# ||juruasikr.net^$third-party (easylist.txt: 27784) -.juruasikr.net -# ||jellr.net^$third-party (easylist.txt: 27783) -.jellr.net -# ||jdrm4.com^$third-party (easylist.txt: 27782) -.jdrm4.com -# ||jaspensar.com^$third-party (easylist.txt: 27781) -.jaspensar.com -# ||ivism.org^$third-party (easylist.txt: 27780) -.ivism.org -# ||iunbrudy.net^$third-party (easylist.txt: 27779) -.iunbrudy.net -# ||ignup.com^$third-party (easylist.txt: 27778) -.ignup.com -# ||hoppr.co^$third-party (easylist.txt: 27777) -.hoppr.co -# ||holmgard.link^$third-party (easylist.txt: 27776) -.holmgard.link -# ||hobri.net^$third-party (easylist.txt: 27775) -.hobri.net -# ||heizuanubr.net^$third-party (easylist.txt: 27774) -.heizuanubr.net -# ||havnr.com^$third-party (easylist.txt: 27773) -.havnr.com -# ||hapnr.net^$third-party (easylist.txt: 27772) -.hapnr.net -# ||gusufrs.me^$third-party (easylist.txt: 27771) -.gusufrs.me -# ||gghfncd.net^$third-party (easylist.txt: 27770) -.gghfncd.net -# ||fuandarst.com^$third-party (easylist.txt: 27769) -.fuandarst.com -# ||frxrydv.com^$third-party (easylist.txt: 27768) -.frxrydv.com -# ||frxle.com^$third-party (easylist.txt: 27767) -.frxle.com -# ||fowar.net^$third-party (easylist.txt: 27766) -.fowar.net -# ||foulsomty.com^$third-party (easylist.txt: 27765) -.foulsomty.com -# ||flaurse.net^$third-party (easylist.txt: 27764) -.flaurse.net -# ||flaudnrs.me^$third-party (easylist.txt: 27763) -.flaudnrs.me -# ||faunsts.me^$third-party (easylist.txt: 27762) -.faunsts.me -# ||extonsuan.com^$third-party (easylist.txt: 27761) -.extonsuan.com -# ||exlpor.com^$third-party (easylist.txt: 27760) -.exlpor.com -# ||exernala.com^$third-party (easylist.txt: 27759) -.exernala.com -# ||excolobar.com^$third-party (easylist.txt: 27758) -.excolobar.com -# ||exciliburn.com^$third-party (easylist.txt: 27757) -.exciliburn.com -# ||exactly0r.com^$third-party (easylist.txt: 27756) -.exactly0r.com -# ||esults.net^$third-party (easylist.txt: 27755) -.esults.net -# ||ershgrst.com^$third-party (easylist.txt: 27754) -.ershgrst.com -# ||ergers.net^$third-party (easylist.txt: 27753) -.ergers.net -# ||entru.co^$third-party (easylist.txt: 27752) -.entru.co -# ||elepheny.com^$third-party (easylist.txt: 27751) -.elepheny.com -# ||edabl.net^$third-party (easylist.txt: 27750) -.edabl.net -# ||dutolats.net^$third-party (easylist.txt: 27749) -.dutolats.net -# ||duactinor.net^$third-party (easylist.txt: 27748) -.duactinor.net -# ||drfflt.info^$third-party (easylist.txt: 27747) -.drfflt.info -# ||draugonda.net^$third-party (easylist.txt: 27746) -.draugonda.net -# ||doumantr.com^$third-party (easylist.txt: 27745) -.doumantr.com -# ||domri.net^$third-party (easylist.txt: 27744) -.domri.net -# ||dilpy.org^$third-party (easylist.txt: 27743) -.dilpy.org -# ||diabolicaf.com^$third-party (easylist.txt: 27742) -.diabolicaf.com -# ||deuskex.link^$third-party (easylist.txt: 27741) -.deuskex.link -# ||d3lens.com^$third-party (easylist.txt: 27740) -.d3lens.com -# ||crhikay.me^$third-party (easylist.txt: 27739) -.crhikay.me -# ||cotnr.com^$third-party (easylist.txt: 27738) -.cotnr.com -# ||contentr.net^$third-party (easylist.txt: 27737) -.contentr.net -# ||contentolyze.net^$third-party (easylist.txt: 27736) -.contentolyze.net -# ||compoter.net^$third-party (easylist.txt: 27735) -.compoter.net -# ||coaterhand.net^$third-party (easylist.txt: 27734) -.coaterhand.net -# ||chualangry.com^$third-party (easylist.txt: 27733) -.chualangry.com -# ||chiuawa.net^$third-party (easylist.txt: 27732) -.chiuawa.net -# ||chansiar.net^$third-party (easylist.txt: 27731) -.chansiar.net -# ||casiours.com^$third-party (easylist.txt: 27730) -.casiours.com -# ||c8factor.com^$third-party (easylist.txt: 27729) -.c8factor.com -# ||buoalait.com^$third-party (easylist.txt: 27728) -.buoalait.com -# ||buhafr.net^$third-party (easylist.txt: 27727) -.buhafr.net -# ||buatongz.net^$third-party (easylist.txt: 27726) -.buatongz.net -# ||boafernd.com^$third-party (easylist.txt: 27725) -.boafernd.com -# ||bluazard.net^$third-party (easylist.txt: 27724) -.bluazard.net -# ||blipi.net^$third-party (easylist.txt: 27723) -.blipi.net -# ||bliankerd.net^$third-party (easylist.txt: 27722) -.bliankerd.net -# ||blazwuatr.com^$third-party (easylist.txt: 27721) -.blazwuatr.com -# ||blaundorz.com^$third-party (easylist.txt: 27720) -.blaundorz.com -# ||biastoful.net^$third-party (easylist.txt: 27719) -.biastoful.net -# ||biankord.net^$third-party (easylist.txt: 27718) -.biankord.net -# ||baungarnr.com^$third-party (easylist.txt: 27717) -.baungarnr.com -# ||batarsur.com^$third-party (easylist.txt: 27716) -.batarsur.com -# ||baordrid.com^$third-party (easylist.txt: 27715) -.baordrid.com -# ||artbr.net^$third-party (easylist.txt: 27714) -.artbr.net -# ||appr8.net^$third-party (easylist.txt: 27713) -.appr8.net -# ||anomiely.com^$third-party (easylist.txt: 27712) -.anomiely.com -# ||allianrd.net^$third-party (easylist.txt: 27711) -.allianrd.net -# ||advuatianf.com^$third-party (easylist.txt: 27710) -.advuatianf.com -# ||addo-mnton.com^$third-party (easylist.txt: 27709) -.addo-mnton.com -# ||accmndtion.org^$third-party (easylist.txt: 27708) -.accmndtion.org -# ||atresadvertising.com^$third-party (easylist.txt: 27706) -.atresadvertising.com -# ||adhood.com^$third-party (easylist.txt: 27705) -.adhood.com -# ||yieldmo.com^$third-party (easylist.txt: 27703) -.yieldmo.com -# ||waptrick.com^$third-party (easylist.txt: 27702) -.waptrick.com -# ||wapdollar.in^$third-party (easylist.txt: 27701) -.wapdollar.in -# ||vungle.com^$third-party (easylist.txt: 27700) -.vungle.com -# ||tapjoyads.com^$third-party (easylist.txt: 27699) -.tapjoyads.com -# ||stepkeydo.com^$third-party (easylist.txt: 27698) -.stepkeydo.com -# ||startappexchange.com^$third-party (easylist.txt: 27697) -.startappexchange.com -# ||smaato.net^$third-party (easylist.txt: 27696) -.smaato.net -# ||sascdn.com^$third-party (easylist.txt: 27695) -.sascdn.com -# ||mysearch-online.com^$third-party (easylist.txt: 27694) -.mysearch-online.com -# ||mojiva.com^$third-party (easylist.txt: 27693) -.mojiva.com -# ||mocean.mobi^$third-party (easylist.txt: 27692) -.mocean.mobi -# ||mobpartner.mobi^$third-party (easylist.txt: 27691) -.mobpartner.mobi -# ||mobizme.net^$third-party (easylist.txt: 27690) -.mobizme.net -# ||mobgold.com^$third-party (easylist.txt: 27689) -.mobgold.com -# ||mkhoj.com^$third-party (easylist.txt: 27688) -.mkhoj.com -# ||millennialmedia.com^$third-party (easylist.txt: 27687) -.millennialmedia.com -# ||mad-adz.com^$third-party (easylist.txt: 27686) -.mad-adz.com -# ||kuad.kusogi.com^$third-party (easylist.txt: 27685) -.kuad.kusogi.com -# ||inmobi.com^$third-party (easylist.txt: 27684) -.inmobi.com -# ||greystripe.com^$third-party (easylist.txt: 27683) -.greystripe.com -# ||doubleclick.net^*/pfadx/app.ytpwatch.$third-party (easylist.txt: 27682) -.doubleclick.net/.*/pfadx/app\.ytpwatch\. -# ||dmg-mobile.com^$third-party (easylist.txt: 27681) -.dmg-mobile.com -# ||buxx.mobi^$third-party (easylist.txt: 27680) -.buxx.mobi -# ||appads.com^$third-party (easylist.txt: 27679) -.appads.com -# ||amobee.com^$third-party (easylist.txt: 27678) -.amobee.com -# ||airpush.com^$third-party (easylist.txt: 27677) -.airpush.com -# ||adzmob.com^$third-party (easylist.txt: 27676) -.adzmob.com -# ||adwired.mobi^$third-party (easylist.txt: 27675) -.adwired.mobi -# ||adwhirl.com^$third-party (easylist.txt: 27674) -.adwhirl.com -# ||admob.com^$third-party (easylist.txt: 27673) -.admob.com -# ||adiquity.com^$third-party (easylist.txt: 27672) -.adiquity.com -# ||adcolony.com^$third-party (easylist.txt: 27671) -.adcolony.com -# ||adbuddiz.com^$third-party (easylist.txt: 27670) -.adbuddiz.com -# ||zypenetwork.com^$third-party (easylist.txt: 27668) -.zypenetwork.com -# ||zyiis.net^$third-party (easylist.txt: 27667) -.zyiis.net -# ||zxxds.net^$third-party (easylist.txt: 27666) -.zxxds.net -# ||zwaar.org^$third-party (easylist.txt: 27665) -.zwaar.org -# ||zugo.com^$third-party (easylist.txt: 27664) -.zugo.com -# ||zoomdirect.com.au^$third-party (easylist.txt: 27663) -.zoomdirect.com.au -# ||zonplug.com^$third-party (easylist.txt: 27662) -.zonplug.com -# ||zonealta.com^$third-party (easylist.txt: 27661) -.zonealta.com -# ||zompmedia.com^$third-party (easylist.txt: 27660) -.zompmedia.com -# ||zoglafi.info^$third-party (easylist.txt: 27659) -.zoglafi.info -# ||znaptag.com^$third-party (easylist.txt: 27658) -.znaptag.com -# ||zipropyl.com^$third-party (easylist.txt: 27657) -.zipropyl.com -# ||ziffdavis.com^$third-party (easylist.txt: 27656) -.ziffdavis.com -# ||zidae.com^$third-party (easylist.txt: 27655) -.zidae.com -# ||zferral.com^$third-party (easylist.txt: 27654) -.zferral.com -# ||zeropark.com^$third-party (easylist.txt: 27653) -.zeropark.com -# ||zerezas.com^$third-party (easylist.txt: 27652) -.zerezas.com -# ||zercstas.com^$third-party (easylist.txt: 27651) -.zercstas.com -# ||zenoviagroup.com^$third-party (easylist.txt: 27650) -.zenoviagroup.com -# ||zenoviaexchange.com^$third-party (easylist.txt: 27649) -.zenoviaexchange.com -# ||zeesiti.com^$third-party (easylist.txt: 27648) -.zeesiti.com -# ||zedo.com^$third-party (easylist.txt: 27647) -.zedo.com -# ||zeads.com^$third-party (easylist.txt: 27646) -.zeads.com -# ||zde-engage.com^$third-party (easylist.txt: 27645) -.zde-engage.com -# ||zapunited.com^$third-party (easylist.txt: 27644) -.zapunited.com -# ||zappy.co.za^$third-party (easylist.txt: 27643) -.zappy.co.za -# ||zaparena.com^$third-party (easylist.txt: 27642) -.zaparena.com -# ||zanox.com/ppv/$third-party (easylist.txt: 27641) -.zanox.com/ppv/ -# ||zanox-affiliate.de/ppv/$third-party (easylist.txt: 27640) -.zanox-affiliate.de/ppv/ -# ||zangocash.com^$third-party (easylist.txt: 27639) -.zangocash.com -# ||z5x.net^$third-party (easylist.txt: 27638) -.z5x.net -# ||z-defense.com^$third-party (easylist.txt: 27637) -.z-defense.com -# ||yzus09by.com^$third-party (easylist.txt: 27636) -.yzus09by.com -# ||yzrnur.com^$third-party (easylist.txt: 27635) -.yzrnur.com -# ||yz56lywd.com^$third-party (easylist.txt: 27634) -.yz56lywd.com -# ||yvoria.com^$third-party (easylist.txt: 27633) -.yvoria.com -# ||yupfiles.net^$third-party (easylist.txt: 27632) -.yupfiles.net -# ||yumenetworks.com^$third-party (easylist.txt: 27631) -.yumenetworks.com -# ||yucce.com^$third-party (easylist.txt: 27630) -.yucce.com -# ||yuarth.com^$third-party (easylist.txt: 27629) -.yuarth.com -# ||ytsa.net^$third-party (easylist.txt: 27628) -.ytsa.net -# ||yourquickads.com^$third-party (easylist.txt: 27627) -.yourquickads.com -# ||yourfastpaydayloans.com^$third-party (easylist.txt: 27626) -.yourfastpaydayloans.com -# ||youradexchange.com^$third-party (easylist.txt: 27625) -.youradexchange.com -# ||your-tornado-file.org^$third-party (easylist.txt: 27624) -.your-tornado-file.org -# ||your-tornado-file.com^$third-party (easylist.txt: 27623) -.your-tornado-file.com -# ||youlouk.com^$third-party (easylist.txt: 27622) -.youlouk.com -# ||youlamedia.com^$third-party (easylist.txt: 27621) -.youlamedia.com -# ||youcandoitwithroi.com^$third-party (easylist.txt: 27620) -.youcandoitwithroi.com -# ||yottacash.com^$third-party (easylist.txt: 27619) -.yottacash.com -# ||yoc-adserver.com^$third-party (easylist.txt: 27618) -.yoc-adserver.com -# ||ymads.com^$third-party (easylist.txt: 27617) -.ymads.com -# ||yllix.com^$third-party (easylist.txt: 27616) -.yllix.com -# ||yldmgrimg.net^$third-party (easylist.txt: 27615) -.yldmgrimg.net -# ||yldbt.com^$third-party (easylist.txt: 27614) -.yldbt.com -# ||yieldx.com^$third-party (easylist.txt: 27613) -.yieldx.com -# ||yieldselect.com^$third-party (easylist.txt: 27612) -.yieldselect.com -# ||yieldoptimizer.com^$third-party (easylist.txt: 27611) -.yieldoptimizer.com -# ||yieldmanager.net^$third-party (easylist.txt: 27610) -.yieldmanager.net -# ||yieldmanager.com^$third-party (easylist.txt: 27609) -.yieldmanager.com -# ||yieldlab.net^$third-party (easylist.txt: 27608) -.yieldlab.net -# ||yieldkit.com^$third-party (easylist.txt: 27607) -.yieldkit.com -# ||yieldbuild.com^$third-party (easylist.txt: 27606) -.yieldbuild.com -# ||yieldadvert.com^$third-party (easylist.txt: 27605) -.yieldadvert.com -# ||yieldads.com^$third-party (easylist.txt: 27604) -.yieldads.com -# ||yesnexus.com^$third-party (easylist.txt: 27603) -.yesnexus.com -# ||yesadsrv.com^$third-party (easylist.txt: 27602) -.yesadsrv.com -# ||yes-messenger.com^$third-party (easylist.txt: 27601) -.yes-messenger.com -# ||yellads.com^$third-party (easylist.txt: 27600) -.yellads.com -# ||yeabble.com^$third-party (easylist.txt: 27599) -.yeabble.com -# ||yceml.net^$third-party (easylist.txt: 27598) -.yceml.net -# ||ycasmd.info^$third-party (easylist.txt: 27597) -.ycasmd.info -# ||yb0t.com^$third-party (easylist.txt: 27596) -.yb0t.com -# ||yawnedgtuis.org^$third-party (easylist.txt: 27595) -.yawnedgtuis.org -# ||yashi.com^$third-party (easylist.txt: 27594) -.yashi.com -# ||yambotan.ru^$third-party (easylist.txt: 27593) -.yambotan.ru -# ||yadomedia.com^$third-party (easylist.txt: 27592) -.yadomedia.com -# ||yabuka.com^$third-party (easylist.txt: 27591) -.yabuka.com -# ||ya88s1yk.com^$third-party (easylist.txt: 27590) -.ya88s1yk.com -# ||xxlink.net^$third-party (easylist.txt: 27589) -.xxlink.net -# ||xx00.info^$third-party (easylist.txt: 27588) -.xx00.info -# ||xvika.com^$third-party (easylist.txt: 27587) -.xvika.com -# ||xubob.com^$third-party (easylist.txt: 27586) -.xubob.com -# ||xtendmedia.com^$third-party (easylist.txt: 27585) -.xtendmedia.com -# ||xtendadvert.com^$third-party (easylist.txt: 27584) -.xtendadvert.com -# ||xtcie.com^$third-party (easylist.txt: 27583) -.xtcie.com -# ||xs.mochiads.com^$third-party (easylist.txt: 27582) -.xs.mochiads.com -# ||xmlconfig.ltassrv.com^$third-party (easylist.txt: 27581) -.xmlconfig.ltassrv.com -# ||xmasdom.com^$third-party (easylist.txt: 27580) -.xmasdom.com -# ||xjfjx8hw.com^$third-party (easylist.txt: 27579) -.xjfjx8hw.com -# ||xgraph.net^$third-party (easylist.txt: 27578) -.xgraph.net -# ||xfs5yhr1.com^$third-party (easylist.txt: 27577) -.xfs5yhr1.com -# ||xfileload.com^$third-party (easylist.txt: 27576) -.xfileload.com -# ||xeontopa.com^$third-party (easylist.txt: 27575) -.xeontopa.com -# ||xdirectx.com^$third-party (easylist.txt: 27574) -.xdirectx.com -# ||xdev.info^$third-party (easylist.txt: 27573) -.xdev.info -# ||xchangebanners.com^$third-party (easylist.txt: 27572) -.xchangebanners.com -# ||xcelsiusadserver.com^$third-party (easylist.txt: 27571) -.xcelsiusadserver.com -# ||xcelltech.com^$third-party (easylist.txt: 27570) -.xcelltech.com -# ||xaxoro.com^$third-party (easylist.txt: 27569) -.xaxoro.com -# ||xadcentral.com^$third-party (easylist.txt: 27568) -.xadcentral.com -# ||xad.com^$third-party (easylist.txt: 27567) -.xad.com -# ||x4300tiz.com^$third-party (easylist.txt: 27566) -.x4300tiz.com -# ||x.mochiads.com^$third-party (easylist.txt: 27565) -.x.mochiads.com -# ||wwwpromoter.com^$third-party (easylist.txt: 27564) -.wwwpromoter.com -# ||wwwadcntr.com^$third-party (easylist.txt: 27563) -.wwwadcntr.com -# ||wwv4ez0n.com^$third-party (easylist.txt: 27562) -.wwv4ez0n.com -# ||wwbn.com^$third-party (easylist.txt: 27561) -.wwbn.com -# ||wurea.com^$third-party (easylist.txt: 27560) -.wurea.com -# ||wulium.com^$third-party (easylist.txt: 27559) -.wulium.com -# ||worthyadvertising.com^$third-party (easylist.txt: 27558) -.worthyadvertising.com -# ||worthathousandwords.com^$third-party (easylist.txt: 27557) -.worthathousandwords.com -# ||worldwidemailer.com^$third-party (easylist.txt: 27556) -.worldwidemailer.com -# ||worlddatinghere.com^$third-party (easylist.txt: 27555) -.worlddatinghere.com -# ||wordego.com^$third-party (easylist.txt: 27554) -.wordego.com -# ||wordbankads.com^$third-party (easylist.txt: 27553) -.wordbankads.com -# ||wootmedia.net^$third-party (easylist.txt: 27552) -.wootmedia.net -# ||wonclick.com^$third-party (easylist.txt: 27551) -.wonclick.com -# ||wmmediacorp.com^$third-party (easylist.txt: 27550) -.wmmediacorp.com -# ||wlmarketing.com^$third-party (easylist.txt: 27549) -.wlmarketing.com -# ||winsspeeder.info^$third-party (easylist.txt: 27548) -.winsspeeder.info -# ||wingads.com^$third-party (easylist.txt: 27547) -.wingads.com -# ||winbuyer.com^$third-party (easylist.txt: 27546) -.winbuyer.com -# ||wigetstudios.com^$third-party (easylist.txt: 27545) -.wigetstudios.com -# ||wigetmedia.com^$third-party (easylist.txt: 27544) -.wigetmedia.com -# ||widgetwidget.mobi^$third-party (easylist.txt: 27543) -.widgetwidget.mobi -# ||widgetvalue.net^$third-party (easylist.txt: 27542) -.widgetvalue.net -# ||widgetsurvey.biz^$third-party (easylist.txt: 27541) -.widgetsurvey.biz -# ||widgets.fccinteractive.com^$third-party (easylist.txt: 27540) -.widgets.fccinteractive.com -# ||widgetlead.net^$third-party (easylist.txt: 27539) -.widgetlead.net -# ||widgetbucks.com^$third-party (easylist.txt: 27538) -.widgetbucks.com -# ||widgetbanner.mobi^$third-party (easylist.txt: 27537) -.widgetbanner.mobi -# ||widgetadvertising.biz^$third-party (easylist.txt: 27536) -.widgetadvertising.biz -# ||widget.yavli.com^$third-party (easylist.txt: 27535) -.widget.yavli.com -# ||why-outsource.net^$third-party (easylist.txt: 27534) -.why-outsource.net -# ||whtsrv9.com^$third-party (easylist.txt: 27533) -.whtsrv9.com -# ||whoads.net^$third-party (easylist.txt: 27532) -.whoads.net -# ||where.com^$third-party (easylist.txt: 27531) -.where.com -# ||wh5kb0u4.com^$third-party (easylist.txt: 27530) -.wh5kb0u4.com -# ||wgreatdream.com^$third-party (easylist.txt: 27529) -.wgreatdream.com -# ||wfnetwork.com^$third-party (easylist.txt: 27528) -.wfnetwork.com -# ||werbe-sponsor.de^$third-party (easylist.txt: 27527) -.werbe-sponsor.de -# ||wellturnedpenne.info^$third-party (easylist.txt: 27526) -.wellturnedpenne.info -# ||wegotmedia.com^$third-party (easylist.txt: 27525) -.wegotmedia.com -# ||wegetpaid.net^$third-party (easylist.txt: 27524) -.wegetpaid.net -# ||webusersurvey.com^$third-party (easylist.txt: 27523) -.webusersurvey.com -# ||webtraffic.ttinet.com^$third-party (easylist.txt: 27522) -.webtraffic.ttinet.com -# ||webseeds.com^$third-party (easylist.txt: 27521) -.webseeds.com -# ||weborama.fr^$third-party (easylist.txt: 27520) -.weborama.fr -# ||webmedia.co.il^$third-party (easylist.txt: 27519) -.webmedia.co.il -# ||webgains.com^$third-party (easylist.txt: 27518) -.webgains.com -# ||webadvertise123.com^$third-party (easylist.txt: 27517) -.webadvertise123.com -# ||webads.nl^$third-party (easylist.txt: 27516) -.webads.nl -# ||webads.co.nz^$third-party (easylist.txt: 27515) -.webads.co.nz -# ||web-bird.jp^$third-party (easylist.txt: 27514) -.web-bird.jp -# ||web-adservice.com^$third-party (easylist.txt: 27513) -.web-adservice.com -# ||weadrevenue.com^$third-party (easylist.txt: 27512) -.weadrevenue.com -# ||wcpanalytics.com^$third-party (easylist.txt: 27511) -.wcpanalytics.com -# ||wcmcs.net^$third-party (easylist.txt: 27510) -.wcmcs.net -# ||wbptqzmv.com^$third-party (easylist.txt: 27509) -.wbptqzmv.com -# ||waymp.com^$third-party (easylist.txt: 27508) -.waymp.com -# ||wateristian.com^$third-party (easylist.txt: 27507) -.wateristian.com -# ||watchnowlive.eu^$third-party (easylist.txt: 27506) -.watchnowlive.eu -# ||watchfree.flv.in^$third-party (easylist.txt: 27505) -.watchfree.flv.in -# ||warfacco.com^$third-party (easylist.txt: 27504) -.warfacco.com -# ||warezlayer.to^$third-party (easylist.txt: 27503) -.warezlayer.to -# ||wangfenxi.com^$third-party (easylist.txt: 27502) -.wangfenxi.com -# ||wamnetwork.com^$third-party (easylist.txt: 27501) -.wamnetwork.com -# ||wallacemaloneymindanao.info^$third-party (easylist.txt: 27500) -.wallacemaloneymindanao.info -# ||wahoha.com^$third-party (easylist.txt: 27499) -.wahoha.com -# ||wagershare.com^$third-party (easylist.txt: 27498) -.wagershare.com -# ||waframedia8.com^$third-party (easylist.txt: 27497) -.waframedia8.com -# ||waframedia7.com^$third-party (easylist.txt: 27496) -.waframedia7.com -# ||waframedia5.com^$third-party (easylist.txt: 27495) -.waframedia5.com -# ||waframedia3.com^$third-party (easylist.txt: 27494) -.waframedia3.com -# ||wafmedia6.com^$third-party (easylist.txt: 27493) -.wafmedia6.com -# ||wafmedia5.com^$third-party (easylist.txt: 27492) -.wafmedia5.com -# ||wafmedia3.com^$third-party (easylist.txt: 27491) -.wafmedia3.com -# ||w9statistics.info^$third-party (easylist.txt: 27490) -.w9statistics.info -# ||w5statistics.info^$third-party (easylist.txt: 27489) -.w5statistics.info -# ||w4.com^$third-party (easylist.txt: 27488) -.w4.com -# ||w3exit.com^$third-party (easylist.txt: 27487) -.w3exit.com -# ||w00tmedia.net^$third-party (easylist.txt: 27486) -.w00tmedia.net -# ||w00tads.com^$third-party (easylist.txt: 27485) -.w00tads.com -# ||vuiads.net^$third-party (easylist.txt: 27484) -.vuiads.net -# ||vuiads.info^$third-party (easylist.txt: 27483) -.vuiads.info -# ||vuiads.de^$third-party (easylist.txt: 27482) -.vuiads.de -# ||vth05dse.com^$third-party (easylist.txt: 27481) -.vth05dse.com -# ||vsservers.net^$third-party (easylist.txt: 27480) -.vsservers.net -# ||vs4family.com^$third-party (easylist.txt: 27479) -.vs4family.com -# ||vs4entertainment.com^$third-party (easylist.txt: 27478) -.vs4entertainment.com -# ||vs20060817.com^$third-party (easylist.txt: 27477) -.vs20060817.com -# ||vpico.com^$third-party (easylist.txt: 27476) -.vpico.com -# ||vogozaw.ru^$third-party (easylist.txt: 27475) -.vogozaw.ru -# ||vogosita.com^$third-party (easylist.txt: 27474) -.vogosita.com -# ||vntsm.com^$third-party (easylist.txt: 27473) -.vntsm.com -# ||vixnixxer.com^$third-party (easylist.txt: 27472) -.vixnixxer.com -# ||vivamob.net^$third-party (easylist.txt: 27471) -.vivamob.net -# ||vitalads.net^$third-party (easylist.txt: 27470) -.vitalads.net -# ||visualsteel.net^$third-party (easylist.txt: 27469) -.visualsteel.net -# ||visitweb.com^$third-party (easylist.txt: 27468) -.visitweb.com -# ||visitdetails.com^$third-party (easylist.txt: 27467) -.visitdetails.com -# ||visiblemeasures.com^$~object-subrequest,third-party (easylist.txt: 27466) -.visiblemeasures.com -# ||visiblegains.com^$third-party (easylist.txt: 27465) -.visiblegains.com -# ||visiads.com^$third-party (easylist.txt: 27464) -.visiads.com -# ||viralmediatech.com^$third-party (easylist.txt: 27463) -.viralmediatech.com -# ||vipquesting.com^$third-party (easylist.txt: 27462) -.vipquesting.com -# ||vipcpms.com^$third-party (easylist.txt: 27461) -.vipcpms.com -# ||vindicosuite.com^$third-party (easylist.txt: 27460) -.vindicosuite.com -# ||viewivo.com^$third-party (easylist.txt: 27459) -.viewivo.com -# ||viewex.co.uk^$third-party (easylist.txt: 27458) -.viewex.co.uk -# ||viewclc.com^$third-party (easylist.txt: 27457) -.viewclc.com -# ||viewablemedia.net^$third-party (easylist.txt: 27456) -.viewablemedia.net -# ||view.atdmt.com^*/view/$third-party (easylist.txt: 27455) -.view.atdmt.com/.*/view/ -# ||view.atdmt.com^*/iview/$third-party (easylist.txt: 27454) -.view.atdmt.com/.*/iview/ -# ||view.atdmt.com/partner/$third-party (easylist.txt: 27453) -.view.atdmt.com/partner/ -# ||view-ads.de^$third-party (easylist.txt: 27452) -.view-ads.de -# ||viedeo2k.tv^$third-party (easylist.txt: 27451) -.viedeo2k.tv -# ||vidpay.com^$third-party (easylist.txt: 27450) -.vidpay.com -# ||videovfr.com^$third-party (easylist.txt: 27449) -.videovfr.com -# ||videoroll.net^$third-party (easylist.txt: 27448) -.videoroll.net -# ||videoplaza.tv^$~object-subrequest,third-party (easylist.txt: 27447) -.videoplaza.tv -# ||videoplaza.tv/proxy/distributor^$object-subrequest,third-party (easylist.txt: 27445) -.videoplaza.tv/proxy/distributor[^\w%.-] -# ||videoplaza.com^$~object-subrequest,third-party (easylist.txt: 27444) -.videoplaza.com -# ||videologygroup.com^$third-party (easylist.txt: 27442) -.videologygroup.com -# ||videoliver.com^$third-party (easylist.txt: 27441) -.videoliver.com -# ||videolansoftware.com^$third-party (easylist.txt: 27440) -.videolansoftware.com -# ||videohube.eu^$third-party (easylist.txt: 27439) -.videohube.eu -# ||videohub.com^$third-party (easylist.txt: 27438) -.videohub.com -# ||videoegg.com^$third-party (easylist.txt: 27437) -.videoegg.com -# ||videodeals.com^$third-party (easylist.txt: 27436) -.videodeals.com -# ||videoclick.ru^$third-party (easylist.txt: 27435) -.videoclick.ru -# ||videoadex.com^$third-party (easylist.txt: 27434) -.videoadex.com -# ||video1404.info^$third-party (easylist.txt: 27433) -.video1404.info -# ||video-loader.com^$third-party (easylist.txt: 27432) -.video-loader.com -# ||vibrantmedia.com^$third-party (easylist.txt: 27431) -.vibrantmedia.com -# ||vibrant.co^$third-party (easylist.txt: 27430) -.vibrant.co -# ||vianadserver.com^$third-party (easylist.txt: 27429) -.vianadserver.com -# ||vhmnetwork.com^$third-party (easylist.txt: 27428) -.vhmnetwork.com -# ||versetime.com^$third-party (easylist.txt: 27427) -.versetime.com -# ||versahq.com^$third-party (easylist.txt: 27426) -.versahq.com -# ||verata.xyz^$third-party (easylist.txt: 27425) -.verata.xyz -# ||veoxa.com^$third-party (easylist.txt: 27424) -.veoxa.com -# ||venusbux.com^$third-party (easylist.txt: 27423) -.venusbux.com -# ||vendexo.com^$third-party (easylist.txt: 27422) -.vendexo.com -# ||vemba.com^$third-party (easylist.txt: 27421) -.vemba.com -# ||velti.com^$third-party (easylist.txt: 27420) -.velti.com -# ||velmedia.net^$third-party (easylist.txt: 27419) -.velmedia.net -# ||vellde.com^$third-party (easylist.txt: 27418) -.vellde.com -# ||vectorstock.com^$third-party (easylist.txt: 27417) -.vectorstock.com -# ||vdopia.com^$third-party (easylist.txt: 27416) -.vdopia.com -# ||vcommission.com^$third-party (easylist.txt: 27415) -.vcommission.com -# ||vcmedia.com^$third-party (easylist.txt: 27414) -.vcmedia.com -# ||vastopped.com^$third-party (easylist.txt: 27413) -.vastopped.com -# ||vapedia.com^$third-party (easylist.txt: 27412) -.vapedia.com -# ||valuecontent.net^$third-party (easylist.txt: 27411) -.valuecontent.net -# ||valuecommerce.com^$third-party (easylist.txt: 27410) -.valuecommerce.com -# ||valueclickmedia.com^$third-party (easylist.txt: 27409) -.valueclickmedia.com -# ||valueclick.net^$third-party (easylist.txt: 27408) -.valueclick.net -# ||valueclick.com^$third-party (easylist.txt: 27407) -.valueclick.com -# ||valueaffiliate.net^$third-party (easylist.txt: 27406) -.valueaffiliate.net -# ||valuead.com^$third-party (easylist.txt: 27405) -.valuead.com -# ||validclick.com^$third-party (easylist.txt: 27404) -.validclick.com -# ||vadpay.com^$third-party (easylist.txt: 27403) -.vadpay.com -# ||v2mlblack.biz^$third-party (easylist.txt: 27402) -.v2mlblack.biz -# ||v2cigs.com^$third-party (easylist.txt: 27401) -.v2cigs.com -# ||v11media.com^$third-party (easylist.txt: 27400) -.v11media.com -# ||v.movad.de^$third-party (easylist.txt: 27399) -.v.movad.de -# ||v.fwmrm.net^$object-subrequest,third-party (easylist.txt: 27398) -.v.fwmrm.net -# ||utubeconverter.com^$third-party (easylist.txt: 27397) -.utubeconverter.com -# ||utokapa.com^$third-party (easylist.txt: 27396) -.utokapa.com -# ||utarget.ru^$third-party (easylist.txt: 27395) -.utarget.ru -# ||utarget.co.uk^$third-party (easylist.txt: 27394) -.utarget.co.uk -# ||usurv.com^$third-party (easylist.txt: 27393) -.usurv.com -# ||usercash.com^$third-party (easylist.txt: 27392) -.usercash.com -# ||usenetpassport.com^$third-party (easylist.txt: 27391) -.usenetpassport.com -# ||usenetjunction.com^$third-party (easylist.txt: 27390) -.usenetjunction.com -# ||usemax.de^$third-party (easylist.txt: 27389) -.usemax.de -# ||usbanners.com^$third-party (easylist.txt: 27388) -.usbanners.com -# ||urlcash.net^$third-party (easylist.txt: 27387) -.urlcash.net -# ||urlads.net^$third-party (easylist.txt: 27386) -.urlads.net -# ||ureace.com^$third-party (easylist.txt: 27385) -.ureace.com -# ||urbation.net^$third-party (easylist.txt: 27384) -.urbation.net -# ||upliftsearch.com^$third-party (easylist.txt: 27383) -.upliftsearch.com -# ||upads.info^$third-party (easylist.txt: 27382) -.upads.info -# ||unterary.com^$third-party (easylist.txt: 27381) -.unterary.com -# ||unrulymedia.com^$third-party (easylist.txt: 27380) -.unrulymedia.com -# ||unlockr.com^$third-party (easylist.txt: 27379) -.unlockr.com -# ||universityofinternetscience.com^$third-party (easylist.txt: 27378) -.universityofinternetscience.com -# ||unitethecows.com^$third-party (easylist.txt: 27377) -.unitethecows.com -# ||unicast.com^$third-party (easylist.txt: 27376) -.unicast.com -# ||undertone.com^$third-party (easylist.txt: 27375) -.undertone.com -# ||underclick.ru^$third-party (easylist.txt: 27374) -.underclick.ru -# ||unanimis.co.uk^$third-party (easylist.txt: 27373) -.unanimis.co.uk -# ||ultimategracelessness.info^$third-party (easylist.txt: 27372) -.ultimategracelessness.info -# ||ukbanners.com^$third-party (easylist.txt: 27371) -.ukbanners.com -# ||uiqatnpooq.com^$third-party (easylist.txt: 27370) -.uiqatnpooq.com -# ||uiadserver.com^$third-party (easylist.txt: 27369) -.uiadserver.com -# ||uglyst.com^$third-party (easylist.txt: 27368) -.uglyst.com -# ||ughus.com^$third-party (easylist.txt: 27367) -.ughus.com -# ||ugaral.com^$third-party (easylist.txt: 27366) -.ugaral.com -# ||udmserve.net^$third-party (easylist.txt: 27365) -.udmserve.net -# ||ubudigital.com^$third-party (easylist.txt: 27364) -.ubudigital.com -# ||u1hw38x0.com^$third-party (easylist.txt: 27363) -.u1hw38x0.com -# ||u-ad.info^$third-party (easylist.txt: 27362) -.u-ad.info -# ||tyroo.com^$third-party (easylist.txt: 27361) -.tyroo.com -# ||twtad.com^$third-party (easylist.txt: 27360) -.twtad.com -# ||twittad.com^$third-party (easylist.txt: 27359) -.twittad.com -# ||twistads.com^$third-party (easylist.txt: 27358) -.twistads.com -# ||twinpinenetwork.com^$third-party (easylist.txt: 27357) -.twinpinenetwork.com -# ||tweard.com^$third-party (easylist.txt: 27356) -.tweard.com -# ||twalm.com^$third-party (easylist.txt: 27355) -.twalm.com -# ||tvprocessing.com^$third-party (easylist.txt: 27354) -.tvprocessing.com -# ||tvas-c.pw^$third-party (easylist.txt: 27353) -.tvas-c.pw -# ||tutvp.com^$third-party (easylist.txt: 27352) -.tutvp.com -# ||tusno.com^$third-party (easylist.txt: 27351) -.tusno.com -# ||turn.com^$third-party (easylist.txt: 27350) -.turn.com -# ||turbotraff.net^$third-party (easylist.txt: 27349) -.turbotraff.net -# ||tumri.net^$third-party (easylist.txt: 27348) -.tumri.net -# ||tubereplay.com^$third-party (easylist.txt: 27347) -.tubereplay.com -# ||tubemogul.com^$third-party (easylist.txt: 27346) -.tubemogul.com -# ||tubberlo.com^$third-party (easylist.txt: 27345) -.tubberlo.com -# ||ttzmedia.com^$third-party (easylist.txt: 27344) -.ttzmedia.com -# ||trygen.co.uk^$third-party (easylist.txt: 27343) -.trygen.co.uk -# ||truex.com^$third-party (easylist.txt: 27342) -.truex.com -# ||truesecurejump.com^$third-party (easylist.txt: 27341) -.truesecurejump.com -# ||trtrccl.com^$third-party (easylist.txt: 27340) -.trtrccl.com -# ||trmit.com^$third-party (easylist.txt: 27339) -.trmit.com -# ||trks.us^$third-party (easylist.txt: 27338) -.trks.us -# ||trklnks.com^$third-party (easylist.txt: 27337) -.trklnks.com -# ||trker.com^$third-party (easylist.txt: 27336) -.trker.com -# ||trkclk.net^$third-party (easylist.txt: 27335) -.trkclk.net -# ||trkalot.com^$third-party (easylist.txt: 27334) -.trkalot.com -# ||trk4.com^$third-party (easylist.txt: 27333) -.trk4.com -# ||trigami.com^$third-party (easylist.txt: 27332) -.trigami.com -# ||tribalfusion.com^$third-party (easylist.txt: 27331) -.tribalfusion.com -# ||triadmedianetwork.com^$third-party (easylist.txt: 27330) -.triadmedianetwork.com -# ||trenpyle.com^$third-party (easylist.txt: 27329) -.trenpyle.com -# ||tredirect.com^$third-party (easylist.txt: 27328) -.tredirect.com -# ||travidia.com^$third-party (easylist.txt: 27327) -.travidia.com -# ||travelscream.com^$third-party (easylist.txt: 27326) -.travelscream.com -# ||traveladvertising.com^$third-party (easylist.txt: 27325) -.traveladvertising.com -# ||trapasol.com^$third-party (easylist.txt: 27324) -.trapasol.com -# ||trahic.ru^$third-party (easylist.txt: 27323) -.trahic.ru -# ||traffirms.com^$third-party (easylist.txt: 27322) -.traffirms.com -# ||trafficzap.com^$third-party (easylist.txt: 27321) -.trafficzap.com -# ||trafficz.com^$third-party (easylist.txt: 27320) -.trafficz.com -# ||trafficwave.net^$third-party (easylist.txt: 27319) -.trafficwave.net -# ||trafficvance.com^$third-party (easylist.txt: 27318) -.trafficvance.com -# ||trafficular.com^$third-party (easylist.txt: 27317) -.trafficular.com -# ||traffictrader.net^$third-party (easylist.txt: 27316) -.traffictrader.net -# ||trafficsynergy.com^$third-party (easylist.txt: 27315) -.trafficsynergy.com -# ||trafficsway.com^$third-party (easylist.txt: 27314) -.trafficsway.com -# ||trafficswarm.com^$third-party (easylist.txt: 27313) -.trafficswarm.com -# ||trafficspaces.net^$third-party (easylist.txt: 27312) -.trafficspaces.net -# ||trafficrevenue.net^$third-party (easylist.txt: 27311) -.trafficrevenue.net -# ||trafficposse.com^$third-party (easylist.txt: 27310) -.trafficposse.com -# ||trafficmp.com^$third-party (easylist.txt: 27309) -.trafficmp.com -# ||trafficmasterz.net^$third-party (easylist.txt: 27308) -.trafficmasterz.net -# ||trafficjunky.net^$third-party (easylist.txt: 27307) -.trafficjunky.net -# ||traffichaus.com^$third-party (easylist.txt: 27306) -.traffichaus.com -# ||trafficforce.com^$third-party (easylist.txt: 27305) -.trafficforce.com -# ||trafficfactory.biz^$third-party (easylist.txt: 27304) -.trafficfactory.biz -# ||trafficbroker.com^$third-party (easylist.txt: 27303) -.trafficbroker.com -# ||trafficbarads.com^$third-party (easylist.txt: 27302) -.trafficbarads.com -# ||traffic-supremacy.com^$third-party (easylist.txt: 27301) -.traffic-supremacy.com -# ||traffboost.net^$third-party (easylist.txt: 27300) -.traffboost.net -# ||traff-advertazer.com^$third-party (easylist.txt: 27299) -.traff-advertazer.com -# ||tradepopups.com^$third-party (easylist.txt: 27298) -.tradepopups.com -# ||tradeexpert.net^$third-party (easylist.txt: 27297) -.tradeexpert.net -# ||tradeadexchange.com^$third-party (easylist.txt: 27296) -.tradeadexchange.com -# ||trackyourlinks.com^$third-party (easylist.txt: 27295) -.trackyourlinks.com -# ||trackword.net^$third-party (easylist.txt: 27294) -.trackword.net -# ||tracktor.co.uk^$third-party (easylist.txt: 27293) -.tracktor.co.uk -# ||trackthatad.com^$third-party (easylist.txt: 27292) -.trackthatad.com -# ||trackstarsengland.net^$third-party (easylist.txt: 27291) -.trackstarsengland.net -# ||trackpromotion.net^$third-party (easylist.txt: 27290) -.trackpromotion.net -# ||trackpath.biz^$third-party (easylist.txt: 27289) -.trackpath.biz -# ||trackingoffer.net^$third-party (easylist.txt: 27288) -.trackingoffer.net -# ||trackingoffer.info^$third-party (easylist.txt: 27287) -.trackingoffer.info -# ||tracking11.com^$third-party (easylist.txt: 27286) -.tracking11.com -# ||tracking101.com^$third-party (easylist.txt: 27285) -.tracking101.com -# ||tracking.to^$third-party (easylist.txt: 27284) -.tracking.to -# ||trackcorner.com^$third-party (easylist.txt: 27283) -.trackcorner.com -# ||trackadvertising.net^$third-party (easylist.txt: 27282) -.trackadvertising.net -# ||traceadmanager.com^$third-party (easylist.txt: 27281) -.traceadmanager.com -# ||tqlkg.net^$third-party (easylist.txt: 27280) -.tqlkg.net -# ||tqlkg.com^$third-party (easylist.txt: 27279) -.tqlkg.com -# ||tpnads.com^$third-party (easylist.txt: 27278) -.tpnads.com -# ||tower-colocation.info^$third-party (easylist.txt: 27277) -.tower-colocation.info -# ||tower-colocation.de^$third-party (easylist.txt: 27276) -.tower-colocation.de -# ||towardstelephone.com^$third-party (easylist.txt: 27275) -.towardstelephone.com -# ||totemcash.com^$third-party (easylist.txt: 27274) -.totemcash.com -# ||totalprofitplan.com^$third-party (easylist.txt: 27273) -.totalprofitplan.com -# ||total-media.net^$third-party (easylist.txt: 27272) -.total-media.net -# ||torrpedoads.net^$third-party (easylist.txt: 27271) -.torrpedoads.net -# ||torrida.net^$third-party (easylist.txt: 27270) -.torrida.net -# ||toroadvertising.com^$third-party (easylist.txt: 27269) -.toroadvertising.com -# ||torerolumiere.net^$third-party (easylist.txt: 27268) -.torerolumiere.net -# ||torconpro.com^$third-party (easylist.txt: 27267) -.torconpro.com -# ||torads.xyz^$third-party (easylist.txt: 27266) -.torads.xyz -# ||torads.me^$third-party (easylist.txt: 27265) -.torads.me -# ||tophotoffers.com^$third-party (easylist.txt: 27264) -.tophotoffers.com -# ||topfox.co.uk^$third-party (easylist.txt: 27263) -.topfox.co.uk -# ||topeuro.biz^$third-party (easylist.txt: 27262) -.topeuro.biz -# ||topcasino10.com^$third-party (easylist.txt: 27261) -.topcasino10.com -# ||topauto10.com^$third-party (easylist.txt: 27260) -.topauto10.com -# ||top26.net^$third-party (easylist.txt: 27259) -.top26.net -# ||tool-site.com^$third-party (easylist.txt: 27258) -.tool-site.com -# ||tonefuse.com^$third-party (easylist.txt: 27257) -.tonefuse.com -# ||tomekas.com^$third-party (easylist.txt: 27256) -.tomekas.com -# ||tollfreeforwarding.com^$third-party (easylist.txt: 27255) -.tollfreeforwarding.com -# ||tokenads.com^$third-party (easylist.txt: 27254) -.tokenads.com -# ||toboads.com^$third-party (easylist.txt: 27253) -.toboads.com -# ||tnyzin.ru^$third-party (easylist.txt: 27252) -.tnyzin.ru -# ||tlvmedia.com^$third-party (easylist.txt: 27251) -.tlvmedia.com -# ||tldadserv.com^$third-party (easylist.txt: 27250) -.tldadserv.com -# ||tkqlhce.com^$third-party (easylist.txt: 27249) -.tkqlhce.com -# ||tissage-extension.com^$third-party (easylist.txt: 27248) -.tissage-extension.com -# ||tiser.com^$third-party (easylist.txt: 27247) -.tiser.com -# ||tisadama.com^$third-party (easylist.txt: 27246) -.tisadama.com -# ||tinbuadserv.com^$third-party (easylist.txt: 27245) -.tinbuadserv.com -# ||tightexact.net^$third-party (easylist.txt: 27244) -.tightexact.net -# ||tidaltv.com^$third-party (easylist.txt: 27243) -.tidaltv.com -# ||thoughtsondance.info^$third-party (easylist.txt: 27242) -.thoughtsondance.info -# ||thoughtleadr.com^$third-party (easylist.txt: 27241) -.thoughtleadr.com -# ||thoseads.com^$third-party (easylist.txt: 27240) -.thoseads.com -# ||thewheelof.com^$third-party (easylist.txt: 27239) -.thewheelof.com -# ||thewebgemnetwork.com^$third-party (easylist.txt: 27238) -.thewebgemnetwork.com -# ||thepiratereactor.net^$third-party (easylist.txt: 27237) -.thepiratereactor.net -# ||themidnightmatulas.com^$third-party (easylist.txt: 27236) -.themidnightmatulas.com -# ||theloungenet.com^$third-party (easylist.txt: 27235) -.theloungenet.com -# ||thelistassassin.com^$third-party (easylist.txt: 27234) -.thelistassassin.com -# ||theequalground.info^$third-party (easylist.txt: 27233) -.theequalground.info -# ||thebflix.info^$third-party (easylist.txt: 27232) -.thebflix.info -# ||thebannerexchange.com^$third-party (easylist.txt: 27231) -.thebannerexchange.com -# ||theads.me^$third-party (easylist.txt: 27230) -.theads.me -# ||theadgateway.com^$third-party (easylist.txt: 27229) -.theadgateway.com -# ||thangasoline.com^$third-party (easylist.txt: 27228) -.thangasoline.com -# ||tgtmedia.com^$third-party (easylist.txt: 27227) -.tgtmedia.com -# ||tfag.de^$third-party (easylist.txt: 27226) -.tfag.de -# ||textsrv.com^$third-party (easylist.txt: 27225) -.textsrv.com -# ||textonlyads.com^$third-party (easylist.txt: 27224) -.textonlyads.com -# ||text-link-ads.com^$third-party (easylist.txt: 27223) -.text-link-ads.com -# ||testnet.nl^$third-party (easylist.txt: 27222) -.testnet.nl -# ||testfilter.com^$third-party (easylist.txt: 27221) -.testfilter.com -# ||terraclicks.com^$third-party (easylist.txt: 27220) -.terraclicks.com -# ||teracreative.com^$third-party (easylist.txt: 27219) -.teracreative.com -# ||teracent.net^$third-party (easylist.txt: 27218) -.teracent.net -# ||teosredic.com^$third-party (easylist.txt: 27217) -.teosredic.com -# ||tennerlist.com^$third-party (easylist.txt: 27216) -.tennerlist.com -# ||telemetryverification.net^$third-party (easylist.txt: 27215) -.telemetryverification.net -# ||technoratimedia.com^$third-party (easylist.txt: 27214) -.technoratimedia.com -# ||techclicks.net^$third-party (easylist.txt: 27213) -.techclicks.net -# ||tec-tec-boom.com^$third-party (easylist.txt: 27212) -.tec-tec-boom.com -# ||teasernet.com^$third-party (easylist.txt: 27211) -.teasernet.com -# ||teambetaffiliates.com^$third-party (easylist.txt: 27210) -.teambetaffiliates.com -# ||teads.tv^$third-party (easylist.txt: 27209) -.teads.tv -# ||td563.com^$third-party (easylist.txt: 27208) -.td563.com -# ||td553.com^$third-party (easylist.txt: 27207) -.td553.com -# ||tcadops.ca^$third-party (easylist.txt: 27206) -.tcadops.ca -# ||tbaffiliate.com^$third-party (easylist.txt: 27205) -.tbaffiliate.com -# ||tattomedia.com^$third-party (easylist.txt: 27204) -.tattomedia.com -# ||targetspot.com^$third-party (easylist.txt: 27203) -.targetspot.com -# ||targetpoint.com^$third-party (easylist.txt: 27202) -.targetpoint.com -# ||targetnet.com^$third-party (easylist.txt: 27201) -.targetnet.com -# ||targetadverts.com^$third-party (easylist.txt: 27200) -.targetadverts.com -# ||tardangro.com^$third-party (easylist.txt: 27199) -.tardangro.com -# ||tapad.com^$third-party (easylist.txt: 27198) -.tapad.com -# ||tangozebra.com^$third-party (easylist.txt: 27197) -.tangozebra.com -# ||talaropa.com^$third-party (easylist.txt: 27196) -.talaropa.com -# ||takensparks.com^$third-party (easylist.txt: 27195) -.takensparks.com -# ||tailsweep.com^$third-party (easylist.txt: 27194) -.tailsweep.com -# ||tagshost.com^$third-party (easylist.txt: 27193) -.tagshost.com -# ||tagjunction.com^$third-party (easylist.txt: 27192) -.tagjunction.com -# ||taggify.net^$third-party (easylist.txt: 27191) -.taggify.net -# ||tafmaster.com^$third-party (easylist.txt: 27190) -.tafmaster.com -# ||tacticalrepublic.com^$third-party (easylist.txt: 27189) -.tacticalrepublic.com -# ||tacoda.net^$third-party (easylist.txt: 27188) -.tacoda.net -# ||tacastas.com^$third-party (easylist.txt: 27187) -.tacastas.com -# ||t3q7af0z.com^$third-party (easylist.txt: 27186) -.t3q7af0z.com -# ||syndicatedsearchresults.com^$third-party (easylist.txt: 27185) -.syndicatedsearchresults.com -# ||synapsys.us^$third-party (easylist.txt: 27184) -.synapsys.us -# ||symbiosting.com^$third-party (easylist.txt: 27183) -.symbiosting.com -# ||swoop.com^$third-party (easylist.txt: 27182) -.swoop.com -# ||switchadhub.com^$third-party (easylist.txt: 27181) -.switchadhub.com -# ||swelen.com^$third-party (easylist.txt: 27180) -.swelen.com -# ||swbdds.com^$third-party (easylist.txt: 27179) -.swbdds.com -# ||swadvertising.org^$third-party (easylist.txt: 27178) -.swadvertising.org -# ||svlu.net^$third-party (easylist.txt: 27177) -.svlu.net -# ||suthome.com^$third-party (easylist.txt: 27176) -.suthome.com -# ||surveywidget.biz^$third-party (easylist.txt: 27175) -.surveywidget.biz -# ||surveyvalue.net^$third-party (easylist.txt: 27174) -.surveyvalue.net -# ||surveyvalue.mobi^$third-party (easylist.txt: 27173) -.surveyvalue.mobi -# ||survey-poll.com^$third-party (easylist.txt: 27172) -.survey-poll.com -# ||surfboarddigital.com.au^$third-party (easylist.txt: 27171) -.surfboarddigital.com.au -# ||surf-bar-traffic.com^$third-party (easylist.txt: 27170) -.surf-bar-traffic.com -# ||supremeadsonline.com^$third-party (easylist.txt: 27169) -.supremeadsonline.com -# ||supplyframe.com^$third-party (easylist.txt: 27168) -.supplyframe.com -# ||supersitetime.com^$third-party (easylist.txt: 27167) -.supersitetime.com -# ||superloofy.com^$third-party (easylist.txt: 27166) -.superloofy.com -# ||super-links.net^$third-party (easylist.txt: 27165) -.super-links.net -# ||suparewards.com^$third-party (easylist.txt: 27164) -.suparewards.com -# ||sunmedia.net^$third-party (easylist.txt: 27163) -.sunmedia.net -# ||sumarketing.co.uk^$third-party (easylist.txt: 27162) -.sumarketing.co.uk -# ||sulvo.co^$third-party (easylist.txt: 27161) -.sulvo.co -# ||suitesmart.com^$third-party (easylist.txt: 27160) -.suitesmart.com -# ||suite6ixty6ix.com^$third-party (easylist.txt: 27159) -.suite6ixty6ix.com -# ||suggesttool.com^$third-party (easylist.txt: 27158) -.suggesttool.com -# ||sugarlistsuggest.info^$third-party (easylist.txt: 27157) -.sugarlistsuggest.info -# ||suffusefacultytsunami.info^$third-party (easylist.txt: 27156) -.suffusefacultytsunami.info -# ||successfultogether.co.uk^$third-party (easylist.txt: 27155) -.successfultogether.co.uk -# ||submitexpress.co.uk^$third-party (easylist.txt: 27154) -.submitexpress.co.uk -# ||sublimemedia.net^$third-party (easylist.txt: 27153) -.sublimemedia.net -# ||style-eyes.eu^$third-party (easylist.txt: 27152) -.style-eyes.eu -# ||struq.com^$third-party (easylist.txt: 27151) -.struq.com -# ||strikead.com^$third-party (easylist.txt: 27150) -.strikead.com -# ||streamdownloadonline.com^$third-party (easylist.txt: 27149) -.streamdownloadonline.com -# ||streamate.com^$third-party (easylist.txt: 27148) -.streamate.com -# ||stocker.bonnint.net^$third-party (easylist.txt: 27147) -.stocker.bonnint.net -# ||stickyadstv.com^$third-party (easylist.txt: 27146) -.stickyadstv.com -# ||stealthlockers.com^$third-party (easylist.txt: 27145) -.stealthlockers.com -# ||statsmobi.com^$third-party (easylist.txt: 27144) -.statsmobi.com -# ||statelead.com^$third-party (easylist.txt: 27143) -.statelead.com -# ||statecannoticed.com^$third-party (easylist.txt: 27142) -.statecannoticed.com -# ||statcamp.net^$third-party (easylist.txt: 27141) -.statcamp.net -# ||startpagea.com^$third-party (easylist.txt: 27140) -.startpagea.com -# ||starlayer.com^$third-party (easylist.txt: 27139) -.starlayer.com -# ||stargamesaffiliate.com^$third-party (easylist.txt: 27138) -.stargamesaffiliate.com -# ||star-advertising.com^$third-party (easylist.txt: 27137) -.star-advertising.com -# ||standartads.com^$third-party (easylist.txt: 27136) -.standartads.com -# ||stalesplit.com^$third-party (easylist.txt: 27135) -.stalesplit.com -# ||stackattacka.com^$third-party (easylist.txt: 27134) -.stackattacka.com -# ||stackadapt.com^$third-party (easylist.txt: 27133) -.stackadapt.com -# ||stabletrappeddevote.info^$third-party (easylist.txt: 27132) -.stabletrappeddevote.info -# ||sta-ads.com^$third-party (easylist.txt: 27131) -.sta-ads.com -# ||srx.com.sg^$third-party (easylist.txt: 27130) -.srx.com.sg -# ||srtk.net^$third-party (easylist.txt: 27129) -.srtk.net -# ||sq2trk2.com^$third-party (easylist.txt: 27128) -.sq2trk2.com -# ||sproose.com^$third-party (easylist.txt: 27127) -.sproose.com -# ||sprintrade.com^$third-party (easylist.txt: 27126) -.sprintrade.com -# ||spoutable.com^$third-party (easylist.txt: 27125) -.spoutable.com -# ||spotxchange.com^$third-party (easylist.txt: 27124) -.spotxchange.com -# ||spottt.com^$third-party (easylist.txt: 27123) -.spottt.com -# ||spotscenered.info^$third-party (easylist.txt: 27122) -.spotscenered.info -# ||spotrails.com^$third-party (easylist.txt: 27121) -.spotrails.com -# ||sportsyndicator.com^$third-party (easylist.txt: 27120) -.sportsyndicator.com -# ||sponsorselect.com^$third-party (easylist.txt: 27119) -.sponsorselect.com -# ||sponsorpay.com^$third-party (easylist.txt: 27118) -.sponsorpay.com -# ||sponsorpalace.com^$third-party (easylist.txt: 27117) -.sponsorpalace.com -# ||sponsormob.com^$third-party (easylist.txt: 27116) -.sponsormob.com -# ||sponsoredtweets.com^$third-party (easylist.txt: 27115) -.sponsoredtweets.com -# ||sponsoredby.me^$third-party (easylist.txt: 27114) -.sponsoredby.me -# ||spongecell.com^$third-party (easylist.txt: 27113) -.spongecell.com -# ||spmxs.com^$third-party (easylist.txt: 27112) -.spmxs.com -# ||splut.com^$third-party (easylist.txt: 27111) -.splut.com -# ||splinky.com^$third-party (easylist.txt: 27110) -.splinky.com -# ||spinbox.net^$third-party (easylist.txt: 27109) -.spinbox.net -# ||spinbox.freedom.com^$third-party (easylist.txt: 27108) -.spinbox.freedom.com -# ||spiderhood.net^$third-party (easylist.txt: 27107) -.spiderhood.net -# ||speedsuccess.net^$third-party (easylist.txt: 27106) -.speedsuccess.net -# ||speedshiftmedia.com^$third-party (easylist.txt: 27105) -.speedshiftmedia.com -# ||speeb.com^$third-party (easylist.txt: 27104) -.speeb.com -# ||spectato.com^$third-party (easylist.txt: 27103) -.spectato.com -# ||specificmedia.com^$third-party (easylist.txt: 27102) -.specificmedia.com -# ||specificclick.net^$third-party (easylist.txt: 27101) -.specificclick.net -# ||sparkstudios.com^$third-party (easylist.txt: 27100) -.sparkstudios.com -# ||sotuktraffic.com^$third-party (easylist.txt: 27099) -.sotuktraffic.com -# ||sophiasearch.com^$third-party (easylist.txt: 27098) -.sophiasearch.com -# ||sonobi.com^$third-party (easylist.txt: 27097) -.sonobi.com -# ||sonnerie.net^$third-party (easylist.txt: 27096) -.sonnerie.net -# ||solutionzip.info^$third-party (easylist.txt: 27095) -.solutionzip.info -# ||solocpm.com^$third-party (easylist.txt: 27094) -.solocpm.com -# ||solarmosa.com^$third-party (easylist.txt: 27093) -.solarmosa.com -# ||solapoka.com^$third-party (easylist.txt: 27092) -.solapoka.com -# ||sokitosa.com^$third-party (easylist.txt: 27091) -.sokitosa.com -# ||softwares2015.com^$third-party (easylist.txt: 27090) -.softwares2015.com -# ||softpopads.com^$third-party (easylist.txt: 27089) -.softpopads.com -# ||softonicads.com^$third-party (easylist.txt: 27088) -.softonicads.com -# ||soft4dle.com^$third-party (easylist.txt: 27087) -.soft4dle.com -# ||sodud.com^$third-party (easylist.txt: 27086) -.sodud.com -# ||sociomantic.com^$third-party (easylist.txt: 27085) -.sociomantic.com -# ||sociocast.com^$third-party (easylist.txt: 27084) -.sociocast.com -# ||society6.com^$third-party (easylist.txt: 27083) -.society6.com -# ||socialspark.com^$third-party (easylist.txt: 27082) -.socialspark.com -# ||socialreach.com^$third-party (easylist.txt: 27081) -.socialreach.com -# ||socialmedia.com^$third-party (easylist.txt: 27080) -.socialmedia.com -# ||sociallypublish.com^$third-party (easylist.txt: 27079) -.sociallypublish.com -# ||socialelective.com^$third-party (easylist.txt: 27078) -.socialelective.com -# ||socialbirth.com^$third-party (easylist.txt: 27077) -.socialbirth.com -# ||sochr.com^$third-party (easylist.txt: 27076) -.sochr.com -# ||so-excited.com^$third-party (easylist.txt: 27075) -.so-excited.com -# ||sndkorea.co.kr^$third-party (easylist.txt: 27074) -.sndkorea.co.kr -# ||snap.com^$third-party (easylist.txt: 27073) -.snap.com -# ||sn00.net^$third-party (easylist.txt: 27072) -.sn00.net -# ||sms-mmm.com^$third-party (easylist.txt: 27071) -.sms-mmm.com -# ||smpgfx.com^$third-party (easylist.txt: 27070) -.smpgfx.com -# ||smowtion.com^$third-party (easylist.txt: 27069) -.smowtion.com -# ||smilyes4u.com^$third-party (easylist.txt: 27068) -.smilyes4u.com -# ||smileycentral.com^$third-party (easylist.txt: 27067) -.smileycentral.com -# ||smartyads.com^$third-party (easylist.txt: 27066) -.smartyads.com -# ||smarttds.ru^$third-party (easylist.txt: 27065) -.smarttds.ru -# ||smarttargetting.net^$third-party (easylist.txt: 27064) -.smarttargetting.net -# ||smarttargetting.com^$third-party (easylist.txt: 27063) -.smarttargetting.com -# ||smarttargetting.co.uk^$third-party (easylist.txt: 27062) -.smarttargetting.co.uk -# ||smarterdownloads.net^$third-party (easylist.txt: 27061) -.smarterdownloads.net -# ||smartdevicemedia.com^$third-party (easylist.txt: 27060) -.smartdevicemedia.com -# ||smartadserver.com^$third-party (easylist.txt: 27059) -.smartadserver.com -# ||smartad.ee^$third-party (easylist.txt: 27058) -.smartad.ee -# ||smart2.allocine.fr^$third-party (easylist.txt: 27057) -.smart2.allocine.fr -# ||smart.allocine.fr^$third-party (easylist.txt: 27056) -.smart.allocine.fr -# ||smart-feed-online.com^$third-party (easylist.txt: 27055) -.smart-feed-online.com -# ||smaclick.com^$third-party (easylist.txt: 27054) -.smaclick.com -# ||slinse.com^$third-party (easylist.txt: 27053) -.slinse.com -# ||slimtrade.com^$third-party (easylist.txt: 27052) -.slimtrade.com -# ||slimspots.com^$third-party (easylist.txt: 27051) -.slimspots.com -# ||slikslik.com^$third-party (easylist.txt: 27050) -.slikslik.com -# ||slfpu.com^$third-party (easylist.txt: 27049) -.slfpu.com -# ||skyscrpr.com^$third-party (easylist.txt: 27048) -.skyscrpr.com -# ||skyactivate.com^$third-party (easylist.txt: 27047) -.skyactivate.com -# ||skoovyads.com^$third-party (easylist.txt: 27046) -.skoovyads.com -# ||skinected.com^$third-party (easylist.txt: 27045) -.skinected.com -# ||skimlinks.com^$third-party (easylist.txt: 27044) -.skimlinks.com -# ||sittiad.com^$third-party (easylist.txt: 27043) -.sittiad.com -# ||sitethree.com^$third-party (easylist.txt: 27042) -.sitethree.com -# ||sitesense-oo.com^$third-party (easylist.txt: 27041) -.sitesense-oo.com -# ||sitescoutadserver.com^$third-party (easylist.txt: 27040) -.sitescoutadserver.com -# ||sitescout.com^$third-party (easylist.txt: 27039) -.sitescout.com -# ||siteencore.com^$third-party (easylist.txt: 27038) -.siteencore.com -# ||sitebrand.com^$third-party (easylist.txt: 27037) -.sitebrand.com -# ||simplyhired.com^$third-party (easylist.txt: 27036) -.simplyhired.com -# ||simply.com^$third-party (easylist.txt: 27035) -.simply.com -# ||simpio.com^$third-party (easylist.txt: 27034) -.simpio.com -# ||silverads.net^$third-party (easylist.txt: 27033) -.silverads.net -# ||silstavo.com^$third-party (easylist.txt: 27032) -.silstavo.com -# ||silence-ads.com^$third-party (easylist.txt: 27031) -.silence-ads.com -# ||siamzone.com^$third-party (easylist.txt: 27030) -.siamzone.com -# ||showyoursite.com^$third-party (easylist.txt: 27029) -.showyoursite.com -# ||shopzyapp.com^$third-party (easylist.txt: 27028) -.shopzyapp.com -# ||shoppingads.com^$third-party (easylist.txt: 27027) -.shoppingads.com -# ||shopalyst.com^$third-party (easylist.txt: 27026) -.shopalyst.com -# ||shoogloonetwork.com^$third-party (easylist.txt: 27025) -.shoogloonetwork.com -# ||sharethrough.com^$third-party (easylist.txt: 27024) -.sharethrough.com -# ||shareresults.com^$third-party (easylist.txt: 27023) -.shareresults.com -# ||sharegods.com^$third-party (easylist.txt: 27022) -.sharegods.com -# ||shareasale.com^$third-party (easylist.txt: 27021) -.shareasale.com -# ||share-server.com^$third-party (easylist.txt: 27020) -.share-server.com -# ||shakamech.com^$third-party (easylist.txt: 27019) -.shakamech.com -# ||sexmoney.com^$third-party (easylist.txt: 27018) -.sexmoney.com -# ||sevendaystart.com^$third-party (easylist.txt: 27017) -.sevendaystart.com -# ||sevenads.net^$third-party (easylist.txt: 27016) -.sevenads.net -# ||sev4ifmxa.com^$third-party (easylist.txt: 27015) -.sev4ifmxa.com -# ||sethads.info^$third-party (easylist.txt: 27014) -.sethads.info -# ||serving-sys.com^$third-party (easylist.txt: 27013) -.serving-sys.com -# ||servemeads.com^$third-party (easylist.txt: 27012) -.servemeads.com -# ||servedbyopenx.com^$third-party (easylist.txt: 27011) -.servedbyopenx.com -# ||servedbyadbutler.com^$third-party (easylist.txt: 27010) -.servedbyadbutler.com -# ||servebom.com^$third-party (easylist.txt: 27009) -.servebom.com -# ||serve-sys.com^$third-party (easylist.txt: 27008) -.serve-sys.com -# ||servali.net^$third-party (easylist.txt: 27007) -.servali.net -# ||seriousfiles.com^$third-party (easylist.txt: 27006) -.seriousfiles.com -# ||serialbay.com^$third-party (easylist.txt: 27005) -.serialbay.com -# ||senzapudore.net^$third-party (easylist.txt: 27004) -.senzapudore.net -# ||sendptp.com^$third-party (easylist.txt: 27003) -.sendptp.com -# ||selsin.net^$third-party (easylist.txt: 27002) -.selsin.net -# ||sellhealth.com^$third-party (easylist.txt: 27001) -.sellhealth.com -# ||sekindo.com^$third-party (easylist.txt: 27000) -.sekindo.com -# ||seekads.net^$third-party (easylist.txt: 26999) -.seekads.net -# ||seductionprofits.com^$third-party (easylist.txt: 26998) -.seductionprofits.com -# ||sedoparking.com^$third-party (easylist.txt: 26997) -.sedoparking.com -# ||securitain.com^$third-party (easylist.txt: 26996) -.securitain.com -# ||securewebsiteaccess.com^$third-party (easylist.txt: 26995) -.securewebsiteaccess.com -# ||securesoft.info^$third-party (easylist.txt: 26994) -.securesoft.info -# ||secure-softwaremanager.com^$third-party (easylist.txt: 26993) -.secure-softwaremanager.com -# ||secondstreetmedia.com^$third-party (easylist.txt: 26992) -.secondstreetmedia.com -# ||seccoads.com^$third-party (easylist.txt: 26991) -.seccoads.com -# ||search123.uk.com^$third-party (easylist.txt: 26990) -.search123.uk.com -# ||scratchaffs.com^$third-party (easylist.txt: 26989) -.scratchaffs.com -# ||scootloor.com^$third-party (easylist.txt: 26988) -.scootloor.com -# ||sceno.ru^$third-party (easylist.txt: 26987) -.sceno.ru -# ||scanscout.com^$third-party (easylist.txt: 26986) -.scanscout.com -# ||scanmedios.com^$third-party (easylist.txt: 26985) -.scanmedios.com -# ||sbcpower.com^$third-party (easylist.txt: 26984) -.sbcpower.com -# ||sbaffiliates.com^$third-party (easylist.txt: 26983) -.sbaffiliates.com -# ||sba.about.co.kr^$third-party (easylist.txt: 26982) -.sba.about.co.kr -# ||saymedia.com^$third-party (easylist.txt: 26981) -.saymedia.com -# ||sayadcoltd.com^$third-party (easylist.txt: 26980) -.sayadcoltd.com -# ||saveads.org^$third-party (easylist.txt: 26979) -.saveads.org -# ||saveads.net^$third-party (easylist.txt: 26978) -.saveads.net -# ||satgreera.com^$third-party (easylist.txt: 26977) -.satgreera.com -# ||saple.net^$third-party (easylist.txt: 26976) -.saple.net -# ||salvador24.com^$third-party (easylist.txt: 26975) -.salvador24.com -# ||saltamendors.com^$third-party (easylist.txt: 26974) -.saltamendors.com -# ||salesnleads.com^$third-party (easylist.txt: 26973) -.salesnleads.com -# ||sakura-traffic.com^$third-party (easylist.txt: 26972) -.sakura-traffic.com -# ||safelistextreme.com^$third-party (easylist.txt: 26971) -.safelistextreme.com -# ||safecllc.com^$third-party (easylist.txt: 26970) -.safecllc.com -# ||safeadnetworkdata.net^$third-party (easylist.txt: 26969) -.safeadnetworkdata.net -# ||sa.entireweb.com^$third-party (easylist.txt: 26968) -.sa.entireweb.com -# ||s2d6.com^$third-party (easylist.txt: 26967) -.s2d6.com -# ||s.adroll.com^$third-party (easylist.txt: 26966) -.s.adroll.com -# ||ryminos.com^$third-party (easylist.txt: 26965) -.ryminos.com -# ||rwpads.com^$third-party (easylist.txt: 26964) -.rwpads.com -# ||runreproducerow.com^$third-party (easylist.txt: 26963) -.runreproducerow.com -# ||runadtag.com^$third-party (easylist.txt: 26962) -.runadtag.com -# ||rummyaffiliates.com^$third-party (easylist.txt: 26961) -.rummyaffiliates.com -# ||rubiconproject.com^$third-party (easylist.txt: 26960) -.rubiconproject.com -# ||rtbpops.com^$third-party (easylist.txt: 26959) -.rtbpops.com -# ||rtbpop.com^$third-party (easylist.txt: 26958) -.rtbpop.com -# ||rtbmedia.org^$third-party (easylist.txt: 26957) -.rtbmedia.org -# ||rtbidder.net^$third-party (easylist.txt: 26956) -.rtbidder.net -# ||roxyaffiliates.com^$third-party (easylist.txt: 26955) -.roxyaffiliates.com -# ||rovion.com^$third-party (easylist.txt: 26954) -.rovion.com -# ||rotorads.com^$third-party (easylist.txt: 26953) -.rotorads.com -# ||rotatingad.com^$third-party (easylist.txt: 26952) -.rotatingad.com -# ||rotaban.ru^$third-party (easylist.txt: 26951) -.rotaban.ru -# ||romance-net.com^$third-party (easylist.txt: 26950) -.romance-net.com -# ||roirocket.com^$third-party (easylist.txt: 26949) -.roirocket.com -# ||roicharger.com^$third-party (easylist.txt: 26948) -.roicharger.com -# ||rogueaffiliatesystem.com^$third-party (easylist.txt: 26947) -.rogueaffiliatesystem.com -# ||rocketier.net^$third-party (easylist.txt: 26946) -.rocketier.net -# ||robocat.me^$third-party (easylist.txt: 26945) -.robocat.me -# ||rnmd.net^$third-party (easylist.txt: 26944) -.rnmd.net -# ||rmxads.com^$third-party (easylist.txt: 26943) -.rmxads.com -# ||rixaka.com^$third-party (easylist.txt: 26942) -.rixaka.com -# ||riverbanksand.com^$third-party (easylist.txt: 26941) -.riverbanksand.com -# ||ripplead.com^$third-party (easylist.txt: 26940) -.ripplead.com -# ||ringtonepartner.com^$third-party (easylist.txt: 26939) -.ringtonepartner.com -# ||ringtonematcher.com^$third-party (easylist.txt: 26938) -.ringtonematcher.com -# ||richwebmedia.com^$third-party (easylist.txt: 26937) -.richwebmedia.com -# ||richmedia247.com^$third-party (easylist.txt: 26936) -.richmedia247.com -# ||ricead.com^$third-party (easylist.txt: 26935) -.ricead.com -# ||rhythmxchange.com^$third-party (easylist.txt: 26934) -.rhythmxchange.com -# ||rhown.com^$third-party (easylist.txt: 26933) -.rhown.com -# ||rfihub.net^$third-party (easylist.txt: 26932) -.rfihub.net -# ||rewardstyle.com^$third-party (easylist.txt: 26931) -.rewardstyle.com -# ||rewardsaffiliates.com^$third-party (easylist.txt: 26930) -.rewardsaffiliates.com -# ||rewardisement.com^$third-party (easylist.txt: 26929) -.rewardisement.com -# ||revsci.net^$third-party (easylist.txt: 26928) -.revsci.net -# ||revresponse.com^$third-party (easylist.txt: 26927) -.revresponse.com -# ||revresda.com^$third-party (easylist.txt: 26926) -.revresda.com -# ||revokinets.com^$third-party (easylist.txt: 26925) -.revokinets.com -# ||revmob.com^$third-party (easylist.txt: 26924) -.revmob.com -# ||revfusion.net^$third-party (easylist.txt: 26923) -.revfusion.net -# ||revenuemax.de^$third-party (easylist.txt: 26922) -.revenuemax.de -# ||revenuemantra.com^$third-party (easylist.txt: 26921) -.revenuemantra.com -# ||revenuehits.com^$third-party (easylist.txt: 26920) -.revenuehits.com -# ||revenuegiants.com^$third-party (easylist.txt: 26919) -.revenuegiants.com -# ||revenue.com^$third-party (easylist.txt: 26918) -.revenue.com -# ||revcontent.com^$third-party (easylist.txt: 26917) -.revcontent.com -# ||rev2pub.com^$third-party (easylist.txt: 26916) -.rev2pub.com -# ||reussissonsensemble.fr^$third-party (easylist.txt: 26915) -.reussissonsensemble.fr -# ||retargeter.com^$third-party (easylist.txt: 26914) -.retargeter.com -# ||resultsz.com^$third-party (easylist.txt: 26913) -.resultsz.com -# ||resultlinks.com^$third-party (easylist.txt: 26912) -.resultlinks.com -# ||respondhq.com^$third-party (easylist.txt: 26911) -.respondhq.com -# ||respond-adserver.cloudapp.net^$third-party (easylist.txt: 26910) -.respond-adserver.cloudapp.net -# ||respecific.net^$third-party (easylist.txt: 26909) -.respecific.net -# ||resideral.com^$third-party (easylist.txt: 26908) -.resideral.com -# ||repaynik.com^$third-party (easylist.txt: 26907) -.repaynik.com -# ||remiroyal.ro^$third-party (easylist.txt: 26906) -.remiroyal.ro -# ||remintrex.com^$third-party (easylist.txt: 26905) -.remintrex.com -# ||relytec.com^$third-party (easylist.txt: 26904) -.relytec.com -# ||relevanti.com^$third-party (easylist.txt: 26903) -.relevanti.com -# ||relestar.com^$third-party (easylist.txt: 26902) -.relestar.com -# ||relatedweboffers.com^$third-party (easylist.txt: 26901) -.relatedweboffers.com -# ||reklamz.com^$third-party (easylist.txt: 26900) -.reklamz.com -# ||regurgical.com^$third-party (easylist.txt: 26899) -.regurgical.com -# ||registry.cw.cm^$third-party (easylist.txt: 26898) -.registry.cw.cm -# ||regdfh.info^$third-party (easylist.txt: 26897) -.regdfh.info -# ||referback.com^$third-party (easylist.txt: 26896) -.referback.com -# ||refban.com^$third-party (easylist.txt: 26895) -.refban.com -# ||reelcentric.com^$third-party (easylist.txt: 26894) -.reelcentric.com -# ||reduxmediagroup.com^$third-party (easylist.txt: 26893) -.reduxmediagroup.com -# ||redpeepers.com^$third-party (easylist.txt: 26892) -.redpeepers.com -# ||redintelligence.net^$third-party (easylist.txt: 26891) -.redintelligence.net -# ||redcourtside.com^$third-party (easylist.txt: 26890) -.redcourtside.com -# ||recomendedsite.com^$third-party (easylist.txt: 26889) -.recomendedsite.com -# ||reate.info^$third-party (easylist.txt: 26888) -.reate.info -# ||realvu.net^$third-party (easylist.txt: 26887) -.realvu.net -# ||realsecuredredirect.com^$third-party (easylist.txt: 26886) -.realsecuredredirect.com -# ||realsecuredredir.com^$third-party (easylist.txt: 26885) -.realsecuredredir.com -# ||realmedia.com^$third-party (easylist.txt: 26884) -.realmedia.com -# ||realmatch.com^$third-party (easylist.txt: 26883) -.realmatch.com -# ||realclick.co.kr^$third-party (easylist.txt: 26882) -.realclick.co.kr -# ||readserver.net^$third-party (easylist.txt: 26881) -.readserver.net -# ||reactx.com^$third-party (easylist.txt: 26880) -.reactx.com -# ||reachmode.com^$third-party (easylist.txt: 26879) -.reachmode.com -# ||reachlocal.com^$third-party (easylist.txt: 26878) -.reachlocal.com -# ||reachjunction.com^$third-party (easylist.txt: 26877) -.reachjunction.com -# ||rddywd.com^$third-party (easylist.txt: 26876) -.rddywd.com -# ||rcurn.com^$third-party (easylist.txt: 26875) -.rcurn.com -# ||rcads.net^$third-party (easylist.txt: 26874) -.rcads.net -# ||rbnt.org^$third-party (easylist.txt: 26873) -.rbnt.org -# ||rawasy.com^$third-party (easylist.txt: 26872) -.rawasy.com -# ||rateaccept.net^$third-party (easylist.txt: 26871) -.rateaccept.net -# ||rapt.com^$third-party (easylist.txt: 26870) -.rapt.com -# ||rampanel.com^$third-party (easylist.txt: 26869) -.rampanel.com -# ||rainwealth.com^$third-party (easylist.txt: 26868) -.rainwealth.com -# ||rainbowtgx.com^$third-party (easylist.txt: 26867) -.rainbowtgx.com -# ||raiggy.com^$third-party (easylist.txt: 26866) -.raiggy.com -# ||ragapa.com^$third-party (easylist.txt: 26865) -.ragapa.com -# ||radiusmarketing.com^$third-party (easylist.txt: 26864) -.radiusmarketing.com -# ||radicalwealthformula.com^$third-party (easylist.txt: 26863) -.radicalwealthformula.com -# ||radeant.com^$third-party (easylist.txt: 26862) -.radeant.com -# ||rabilitan.com^$third-party (easylist.txt: 26861) -.rabilitan.com -# ||qwzmje9w.com^$third-party (easylist.txt: 26860) -.qwzmje9w.com -# ||qwobl.net^$third-party (easylist.txt: 26859) -.qwobl.net -# ||quinstreet.com^$third-party (easylist.txt: 26858) -.quinstreet.com -# ||quickcash500.com^$third-party (easylist.txt: 26857) -.quickcash500.com -# ||questus.com^$third-party (easylist.txt: 26856) -.questus.com -# ||questionmarket.com^$third-party (easylist.txt: 26855) -.questionmarket.com -# ||quensillo.com^$third-party (easylist.txt: 26854) -.quensillo.com -# ||quantumads.com^$third-party (easylist.txt: 26853) -.quantumads.com -# ||qualitypageviews.com^$third-party (easylist.txt: 26852) -.qualitypageviews.com -# ||qservz.com^$third-party (easylist.txt: 26851) -.qservz.com -# ||qnsr.com^$third-party (easylist.txt: 26850) -.qnsr.com -# ||qnrzmapdcc.com^$third-party (easylist.txt: 26849) -.qnrzmapdcc.com -# ||qksz.net^$third-party (easylist.txt: 26848) -.qksz.net -# ||qksrv.net^$third-party (easylist.txt: 26847) -.qksrv.net -# ||qdmil.com^$third-party (easylist.txt: 26846) -.qdmil.com -# ||qadservice.com^$third-party (easylist.txt: 26845) -.qadservice.com -# ||qadserve.com^$third-party (easylist.txt: 26844) -.qadserve.com -# ||q1xyxm89.com^$third-party (easylist.txt: 26843) -.q1xyxm89.com -# ||q1mediahydraplatform.com^$third-party (easylist.txt: 26842) -.q1mediahydraplatform.com -# ||q1media.com^$third-party (easylist.txt: 26841) -.q1media.com -# ||pzuwqncdai.com^$third-party (easylist.txt: 26840) -.pzuwqncdai.com -# ||pzaasocba.com^$third-party (easylist.txt: 26839) -.pzaasocba.com -# ||pxstda.com^$third-party (easylist.txt: 26838) -.pxstda.com -# ||pxl2015x1.com^$third-party (easylist.txt: 26837) -.pxl2015x1.com -# ||pwrads.net^$third-party (easylist.txt: 26836) -.pwrads.net -# ||push2check.com^$third-party (easylist.txt: 26835) -.push2check.com -# ||purpleflag.net^$third-party (easylist.txt: 26834) -.purpleflag.net -# ||pulsemgr.com^$third-party (easylist.txt: 26833) -.pulsemgr.com -# ||pulse360.com^$third-party (easylist.txt: 26832) -.pulse360.com -# ||puhtml.com^$third-party (easylist.txt: 26831) -.puhtml.com -# ||pubted.com^$third-party (easylist.txt: 26830) -.pubted.com -# ||pubserve.net^$third-party (easylist.txt: 26829) -.pubserve.net -# ||pubnation.com^$third-party (easylist.txt: 26828) -.pubnation.com -# ||pubmine.com^$third-party (easylist.txt: 26827) -.pubmine.com -# ||pubmatic.com^$third-party (easylist.txt: 26826) -.pubmatic.com -# ||publisheradnetwork.com^$third-party (easylist.txt: 26825) -.publisheradnetwork.com -# ||publisher.to^$third-party (easylist.txt: 26824) -.publisher.to -# ||publicsunrise.link^$third-party (easylist.txt: 26823) -.publicsunrise.link -# ||publicityclerks.com^$third-party (easylist.txt: 26822) -.publicityclerks.com -# ||publicidees.com^$third-party (easylist.txt: 26821) -.publicidees.com -# ||publicidad.net^$third-party (easylist.txt: 26820) -.publicidad.net -# ||pubgears.com^$third-party (easylist.txt: 26819) -.pubgears.com -# ||pub-fit.com^$third-party (easylist.txt: 26817) -.pub-fit.com -# ||ptp24.com^$third-party (easylist.txt: 26816) -.ptp24.com -# ||ptp22.com^$third-party (easylist.txt: 26815) -.ptp22.com -# ||ptp.lolco.net^$third-party (easylist.txt: 26814) -.ptp.lolco.net -# ||ptmzr.com^$third-party (easylist.txt: 26813) -.ptmzr.com -# ||psma02.com^$third-party (easylist.txt: 26812) -.psma02.com -# ||pseqcs05.com^$third-party (easylist.txt: 26811) -.pseqcs05.com -# ||psclicks.com^$third-party (easylist.txt: 26810) -.psclicks.com -# ||prre.ru^$third-party (easylist.txt: 26809) -.prre.ru -# ||proximic.com^$third-party (easylist.txt: 26808) -.proximic.com -# ||provider-direct.com^$third-party (easylist.txt: 26807) -.provider-direct.com -# ||protally.net^$third-party (easylist.txt: 26806) -.protally.net -# ||prosperent.com^$third-party (easylist.txt: 26805) -.prosperent.com -# ||proper.io^$third-party (easylist.txt: 26804) -.proper.io -# ||propelplus.com^$third-party (easylist.txt: 26803) -.propelplus.com -# ||propellerpops.com^$third-party (easylist.txt: 26802) -.propellerpops.com -# ||propellerads.com^$third-party (easylist.txt: 26801) -.propellerads.com -# ||promotiontrack.mobi^$third-party (easylist.txt: 26800) -.promotiontrack.mobi -# ||promotionoffer.mobi^$third-party (easylist.txt: 26799) -.promotionoffer.mobi -# ||promoted.com^$third-party (easylist.txt: 26798) -.promoted.com -# ||promobenef.com^$third-party (easylist.txt: 26797) -.promobenef.com -# ||promo-reklama.ru^$third-party (easylist.txt: 26796) -.promo-reklama.ru -# ||projectwonderful.com^$third-party (easylist.txt: 26795) -.projectwonderful.com -# ||programresolver.net^$third-party (easylist.txt: 26794) -.programresolver.net -# ||profitpeelers.com^$third-party (easylist.txt: 26793) -.profitpeelers.com -# ||proffigurufast.com^$third-party (easylist.txt: 26792) -.proffigurufast.com -# ||prod.untd.com^$third-party (easylist.txt: 26791) -.prod.untd.com -# ||probannerswap.com^$third-party (easylist.txt: 26790) -.probannerswap.com -# ||proadsdirect.com^$third-party (easylist.txt: 26789) -.proadsdirect.com -# ||pro-market.net^$third-party (easylist.txt: 26788) -.pro-market.net -# ||pro-advertising.com^$third-party (easylist.txt: 26787) -.pro-advertising.com -# ||pro-advert.de^$third-party (easylist.txt: 26786) -.pro-advert.de -# ||primaryads.com^$third-party (easylist.txt: 26785) -.primaryads.com -# ||prickac.com^$third-party (easylist.txt: 26784) -.prickac.com -# ||prf.hn^$third-party (easylist.txt: 26783) -.prf.hn -# ||prexista.com^$third-party (easylist.txt: 26782) -.prexista.com -# ||prestadsng.com^$third-party (easylist.txt: 26781) -.prestadsng.com -# ||predictad.com^$third-party (easylist.txt: 26780) -.predictad.com -# ||precisionclick.com^$third-party (easylist.txt: 26779) -.precisionclick.com -# ||prebid.org^$third-party (easylist.txt: 26778) -.prebid.org -# ||ppsearcher.ru^$third-party (easylist.txt: 26777) -.ppsearcher.ru -# ||ppcwebspy.com^$third-party (easylist.txt: 26776) -.ppcwebspy.com -# ||ppctrck.com^$third-party (easylist.txt: 26775) -.ppctrck.com -# ||ppclinking.com^$third-party (easylist.txt: 26774) -.ppclinking.com -# ||ppcindo.com^$third-party (easylist.txt: 26773) -.ppcindo.com -# ||powerlinks.com^$third-party (easylist.txt: 26772) -.powerlinks.com -# ||powerfulbusiness.net^$third-party (easylist.txt: 26771) -.powerfulbusiness.net -# ||poweradvertising.co.uk^$third-party (easylist.txt: 26770) -.poweradvertising.co.uk -# ||postrelease.com^$third-party (easylist.txt: 26769) -.postrelease.com -# ||posternel.com^$third-party (easylist.txt: 26768) -.posternel.com -# ||pornv.org^$third-party (easylist.txt: 26767) -.pornv.org -# ||popupvia.com^$third-party (easylist.txt: 26766) -.popupvia.com -# ||popuptraffic.com^$third-party (easylist.txt: 26765) -.popuptraffic.com -# ||popunderz.com^$third-party (easylist.txt: 26764) -.popunderz.com -# ||popundertotal.com^$third-party (easylist.txt: 26763) -.popundertotal.com -# ||popunder.ru^$third-party (easylist.txt: 26762) -.popunder.ru -# ||populisengage.com^$third-party (easylist.txt: 26761) -.populisengage.com -# ||populis.com^$third-party (easylist.txt: 26760) -.populis.com -# ||popularmedia.net^$third-party (easylist.txt: 26759) -.popularmedia.net -# ||popularitish.com^$third-party (easylist.txt: 26758) -.popularitish.com -# ||poptarts.me^$third-party (easylist.txt: 26757) -.poptarts.me -# ||popshow.info^$third-party (easylist.txt: 26756) -.popshow.info -# ||popsads.com^$third-party (easylist.txt: 26755) -.popsads.com -# ||poponclick.com^$third-party (easylist.txt: 26754) -.poponclick.com -# ||popmyads.com^$third-party (easylist.txt: 26753) -.popmyads.com -# ||popmyad.com^$third-party (easylist.txt: 26752) -.popmyad.com -# ||popmarker.com^$third-party (easylist.txt: 26751) -.popmarker.com -# ||popmajor.com^$third-party (easylist.txt: 26750) -.popmajor.com -# ||popearn.com^$third-party (easylist.txt: 26749) -.popearn.com -# ||popcpv.com^$third-party (easylist.txt: 26748) -.popcpv.com -# ||popcpm.com^$third-party (easylist.txt: 26747) -.popcpm.com -# ||popcash.net^$third-party (easylist.txt: 26746) -.popcash.net -# ||popadscdn.net^$third-party (easylist.txt: 26745) -.popadscdn.net -# ||popads.net^$third-party (easylist.txt: 26744) -.popads.net -# ||polydarth.com^$third-party (easylist.txt: 26743) -.polydarth.com -# ||polyad.net^$third-party (easylist.txt: 26742) -.polyad.net -# ||polmontventures.com^$third-party (easylist.txt: 26741) -.polmontventures.com -# ||polluxnetwork.com^$third-party (easylist.txt: 26740) -.polluxnetwork.com -# ||points2shop.com^$third-party (easylist.txt: 26739) -.points2shop.com -# ||pointroll.com^$third-party (easylist.txt: 26738) -.pointroll.com -# ||pointclicktrack.com^$third-party (easylist.txt: 26737) -.pointclicktrack.com -# ||pntrs.com^$third-party (easylist.txt: 26736) -.pntrs.com -# ||pntrac.com^$third-party (easylist.txt: 26735) -.pntrac.com -# ||pntra.com^$third-party (easylist.txt: 26734) -.pntra.com -# ||pnoss.com^$third-party (easylist.txt: 26733) -.pnoss.com -# ||pmsrvr.com^$third-party (easylist.txt: 26732) -.pmsrvr.com -# ||plxserve.com^$third-party (easylist.txt: 26731) -.plxserve.com -# ||plusfind.net^$third-party (easylist.txt: 26730) -.plusfind.net -# ||plugerr.com^$third-party (easylist.txt: 26729) -.plugerr.com -# ||plocap.com^$third-party (easylist.txt: 26728) -.plocap.com -# ||pllddc.com^$third-party (easylist.txt: 26727) -.pllddc.com -# ||plexop.net^$third-party (easylist.txt: 26726) -.plexop.net -# ||plenomedia.com^$third-party (easylist.txt: 26725) -.plenomedia.com -# ||pleeko.com^$third-party (easylist.txt: 26724) -.pleeko.com -# ||playukinternet.com^$third-party (easylist.txt: 26723) -.playukinternet.com -# ||playertraffic.com^$third-party (easylist.txt: 26722) -.playertraffic.com -# ||play24.us^$third-party (easylist.txt: 26721) -.play24.us -# ||platinumadvertisement.com^$third-party (easylist.txt: 26720) -.platinumadvertisement.com -# ||plannto.com^$third-party (easylist.txt: 26719) -.plannto.com -# ||pjtra.com^$third-party (easylist.txt: 26718) -.pjtra.com -# ||pjatr.com^$third-party (easylist.txt: 26717) -.pjatr.com -# ||pixxur.com^$third-party (easylist.txt: 26716) -.pixxur.com -# ||pixfuture.net^$third-party (easylist.txt: 26715) -.pixfuture.net -# ||pixeltrack66.com^$third-party (easylist.txt: 26714) -.pixeltrack66.com -# ||pixazza.com^$third-party (easylist.txt: 26713) -.pixazza.com -# ||pivotrunner.com^$third-party (easylist.txt: 26712) -.pivotrunner.com -# ||pivotalmedialabs.com^$third-party (easylist.txt: 26711) -.pivotalmedialabs.com -# ||piticlik.com^$third-party (easylist.txt: 26710) -.piticlik.com -# ||pioneeringad.com^$third-party (easylist.txt: 26709) -.pioneeringad.com -# ||pinballpublishernetwork.com^$third-party (easylist.txt: 26708) -.pinballpublishernetwork.com -# ||pictela.net^$third-party (easylist.txt: 26707) -.pictela.net -# ||picsti.com^$third-party (easylist.txt: 26706) -.picsti.com -# ||picbucks.com^$third-party (easylist.txt: 26705) -.picbucks.com -# ||picadmedia.com^$third-party (easylist.txt: 26704) -.picadmedia.com -# ||pianobuyerdeals.com^$third-party (easylist.txt: 26703) -.pianobuyerdeals.com -# ||phonespybubble.com^$third-party (easylist.txt: 26702) -.phonespybubble.com -# ||philosophere.com^$third-party (easylist.txt: 26701) -.philosophere.com -# ||philipstreehouse.info^$third-party (easylist.txt: 26700) -.philipstreehouse.info -# ||philbardre.com^$third-party (easylist.txt: 26699) -.philbardre.com -# ||pheedo.com^$third-party (easylist.txt: 26698) -.pheedo.com -# ||pharmcash.com^$third-party (easylist.txt: 26697) -.pharmcash.com -# ||pgssl.com^$third-party (easylist.txt: 26696) -.pgssl.com -# ||pgpartner.com^$third-party (easylist.txt: 26695) -.pgpartner.com -# ||pgmediaserve.com^$third-party (easylist.txt: 26694) -.pgmediaserve.com -# ||pezrphjl.com^$third-party (easylist.txt: 26693) -.pezrphjl.com -# ||persevered.com^$third-party (easylist.txt: 26692) -.persevered.com -# ||permutive.com^$third-party (easylist.txt: 26691) -.permutive.com -# ||performancingads.com^$third-party (easylist.txt: 26690) -.performancingads.com -# ||performancetrack.info^$third-party (easylist.txt: 26689) -.performancetrack.info -# ||performanceadvertising.mobi^$third-party (easylist.txt: 26688) -.performanceadvertising.mobi -# ||performance-based.com^$third-party (easylist.txt: 26687) -.performance-based.com -# ||perfoormapp.info^$third-party (easylist.txt: 26686) -.perfoormapp.info -# ||perfcreatives.com^$third-party (easylist.txt: 26685) -.perfcreatives.com -# ||perfb.com^$third-party (easylist.txt: 26684) -.perfb.com -# ||percularity.com^$third-party (easylist.txt: 26683) -.percularity.com -# ||pepperjamnetwork.com^$third-party (easylist.txt: 26682) -.pepperjamnetwork.com -# ||penuma.com^$third-party (easylist.txt: 26681) -.penuma.com -# ||peer39.net^$third-party (easylist.txt: 26680) -.peer39.net -# ||peemee.com^$third-party (easylist.txt: 26679) -.peemee.com -# ||peelawaymaker.com^$third-party (easylist.txt: 26678) -.peelawaymaker.com -# ||peakclick.com^$third-party (easylist.txt: 26677) -.peakclick.com -# ||pe2k2dty.com^$third-party (easylist.txt: 26676) -.pe2k2dty.com -# ||pc-ads.com^$third-party (easylist.txt: 26675) -.pc-ads.com -# ||payperpost.com^$third-party (easylist.txt: 26674) -.payperpost.com -# ||paydotcom.com^$third-party (easylist.txt: 26673) -.paydotcom.com -# ||pay-click.ru^$third-party (easylist.txt: 26672) -.pay-click.ru -# ||pautaspr.com^$third-party (easylist.txt: 26671) -.pautaspr.com -# ||passionfruitads.com^$third-party (easylist.txt: 26670) -.passionfruitads.com -# ||pas-rahav.com^$third-party (easylist.txt: 26669) -.pas-rahav.com -# ||partypoker.com^$third-party (easylist.txt: 26668) -.partypoker.com -# ||partypartners.com^$third-party (easylist.txt: 26667) -.partypartners.com -# ||partycasino.com^$third-party (easylist.txt: 26666) -.partycasino.com -# ||partnermax.de^$third-party (easylist.txt: 26665) -.partnermax.de -# ||partnerearning.com^$third-party (easylist.txt: 26664) -.partnerearning.com -# ||partner.video.syndication.msn.com^$~object-subrequest,third-party (easylist.txt: 26663) -.partner.video.syndication.msn.com -# ||partner.googleadservices.com^$third-party (easylist.txt: 26662) -.partner.googleadservices.com -# ||partner-ads.com^$third-party (easylist.txt: 26661) -.partner-ads.com -# ||paradocs.ru^$third-party (easylist.txt: 26660) -.paradocs.ru -# ||paperg.com^$third-party (easylist.txt: 26659) -.paperg.com -# ||pantherads.com^$third-party (easylist.txt: 26658) -.pantherads.com -# ||panachetech.com^$third-party (easylist.txt: 26657) -.panachetech.com -# ||pakbanners.com^$third-party (easylist.txt: 26656) -.pakbanners.com -# ||paidsearchexperts.com^$third-party (easylist.txt: 26655) -.paidsearchexperts.com -# ||paidonresults.net^$third-party (easylist.txt: 26654) -.paidonresults.net -# ||paid4ad.de^$third-party (easylist.txt: 26653) -.paid4ad.de -# ||pagesinxt.com^$third-party (easylist.txt: 26652) -.pagesinxt.com -# ||pagefair.net^$third-party (easylist.txt: 26651) -.pagefair.net -# ||padstm.com^$third-party (easylist.txt: 26650) -.padstm.com -# ||padsdelivery.com^$third-party (easylist.txt: 26649) -.padsdelivery.com -# ||paads.dk^$third-party (easylist.txt: 26648) -.paads.dk -# ||p2ads.com^$third-party (easylist.txt: 26647) -.p2ads.com -# ||p-digital-server.com^$third-party (easylist.txt: 26646) -.p-digital-server.com -# ||p-comme-performance.com^$third-party (easylist.txt: 26645) -.p-comme-performance.com -# ||p-advg.com^$third-party (easylist.txt: 26644) -.p-advg.com -# ||ozonemedia.com^$third-party (easylist.txt: 26643) -.ozonemedia.com -# ||ozertesa.com^$third-party (easylist.txt: 26642) -.ozertesa.com -# ||oxybe.com^$third-party (easylist.txt: 26641) -.oxybe.com -# ||oxtracking.com^$third-party (easylist.txt: 26640) -.oxtracking.com -# ||oxsng.com^$third-party (easylist.txt: 26639) -.oxsng.com -# ||oxado.com^$third-party (easylist.txt: 26638) -.oxado.com -# ||ovtopli.ru^$third-party (easylist.txt: 26637) -.ovtopli.ru -# ||overturs.com^$third-party (easylist.txt: 26636) -.overturs.com -# ||overture.com^$third-party (easylist.txt: 26635) -.overture.com -# ||overhaps.com^$third-party (easylist.txt: 26634) -.overhaps.com -# ||oveld.com^$third-party (easylist.txt: 26633) -.oveld.com -# ||ov8pc.tv^$third-party (easylist.txt: 26632) -.ov8pc.tv -# ||ourunlimitedleads.com^$third-party (easylist.txt: 26631) -.ourunlimitedleads.com -# ||othersonline.com^$third-party (easylist.txt: 26630) -.othersonline.com -# ||ospreymedialp.com^$third-party (easylist.txt: 26629) -.ospreymedialp.com -# ||oskale.ru^$third-party (easylist.txt: 26628) -.oskale.ru -# ||ordingly.com^$third-party (easylist.txt: 26627) -.ordingly.com -# ||orbengine.com^$third-party (easylist.txt: 26626) -.orbengine.com -# ||orarala.com^$third-party (easylist.txt: 26625) -.orarala.com -# ||orangeads.fr^$third-party (easylist.txt: 26624) -.orangeads.fr -# ||optinmonster.com^$third-party (easylist.txt: 26623) -.optinmonster.com -# ||optinemailpro.com^$third-party (easylist.txt: 26622) -.optinemailpro.com -# ||optimizeadvert.biz^$third-party (easylist.txt: 26621) -.optimizeadvert.biz -# ||optimatic.com^$third-party (easylist.txt: 26620) -.optimatic.com -# ||optimalroi.info^$third-party (easylist.txt: 26619) -.optimalroi.info -# ||optiad.net^$third-party (easylist.txt: 26618) -.optiad.net -# ||opteama.com^$third-party (easylist.txt: 26617) -.opteama.com -# ||opt-n.net^$third-party (easylist.txt: 26616) -.opt-n.net -# ||opt-intelligence.com^$third-party (easylist.txt: 26615) -.opt-intelligence.com -# ||operatical.com^$third-party (easylist.txt: 26614) -.operatical.com -# ||openxmarket.asia^$third-party (easylist.txt: 26613) -.openxmarket.asia -# ||openxenterprise.com^$third-party (easylist.txt: 26612) -.openxenterprise.com -# ||openxadexchange.com^$third-party (easylist.txt: 26611) -.openxadexchange.com -# ||opensourceadvertisementnetwork.info^$third-party (easylist.txt: 26610) -.opensourceadvertisementnetwork.info -# ||openetray.com^$third-party (easylist.txt: 26609) -.openetray.com -# ||openbook.net^$third-party (easylist.txt: 26608) -.openbook.net -# ||opap.co.kr^$third-party (easylist.txt: 26607) -.opap.co.kr -# ||oos4l.com^$third-party (easylist.txt: 26606) -.oos4l.com -# ||oofte.com^$third-party (easylist.txt: 26605) -.oofte.com -# ||ooecyaauiz.com^$third-party (easylist.txt: 26604) -.ooecyaauiz.com -# ||oodode.com^$third-party (easylist.txt: 26603) -.oodode.com -# ||onvertise.com^$third-party (easylist.txt: 26602) -.onvertise.com -# ||onsitemarketplace.net^$third-party (easylist.txt: 26601) -.onsitemarketplace.net -# ||onscroll.com^$third-party (easylist.txt: 26600) -.onscroll.com -# ||onrampadvertising.com^$third-party (easylist.txt: 26599) -.onrampadvertising.com -# ||onlyalad.net^$third-party (easylist.txt: 26598) -.onlyalad.net -# ||onlinedl.info^$third-party (easylist.txt: 26597) -.onlinedl.info -# ||onlineadtracker.co.uk^$third-party (easylist.txt: 26596) -.onlineadtracker.co.uk -# ||online-media24.de^$third-party (easylist.txt: 26595) -.online-media24.de -# ||online-adnetwork.com^$third-party (easylist.txt: 26594) -.online-adnetwork.com -# ||onespot.com^$third-party (easylist.txt: 26593) -.onespot.com -# ||onenetworkdirect.net^$third-party (easylist.txt: 26592) -.onenetworkdirect.net -# ||onenetworkdirect.com^$third-party (easylist.txt: 26591) -.onenetworkdirect.com -# ||onedmp.com^$third-party (easylist.txt: 26590) -.onedmp.com -# ||onclickads.net^$third-party (easylist.txt: 26589) -.onclickads.net -# ||onads.com^$third-party (easylist.txt: 26588) -.onads.com -# ||onad.eu^$third-party (easylist.txt: 26587) -.onad.eu -# ||omni-ads.com^$third-party (easylist.txt: 26586) -.omni-ads.com -# ||omg2.com^$third-party (easylist.txt: 26585) -.omg2.com -# ||omclick.com^$third-party (easylist.txt: 26584) -.omclick.com -# ||oldtiger.net^$third-party (easylist.txt: 26583) -.oldtiger.net -# ||oileddaintiessunset.info^$third-party (easylist.txt: 26582) -.oileddaintiessunset.info -# ||ohmcasting.com^$third-party (easylist.txt: 26581) -.ohmcasting.com -# ||oggifinogi.com^$third-party (easylist.txt: 26580) -.oggifinogi.com -# ||ofino.ru^$third-party (easylist.txt: 26579) -.ofino.ru -# ||offersquared.com^$third-party (easylist.txt: 26578) -.offersquared.com -# ||offerserve.com^$third-party (easylist.txt: 26577) -.offerserve.com -# ||offerpalads.com^$third-party (easylist.txt: 26576) -.offerpalads.com -# ||offerforge.com^$third-party (easylist.txt: 26575) -.offerforge.com -# ||offeradvertising.biz^$third-party (easylist.txt: 26574) -.offeradvertising.biz -# ||oehposan.com^$third-party (easylist.txt: 26573) -.oehposan.com -# ||oclus.com^$third-party (easylist.txt: 26572) -.oclus.com -# ||oclsasrv.com^$third-party (easylist.txt: 26571) -.oclsasrv.com -# ||oclasrv.com^$third-party (easylist.txt: 26570) -.oclasrv.com -# ||oceanwebcraft.com^$third-party (easylist.txt: 26569) -.oceanwebcraft.com -# ||objectservers.com^$third-party (easylist.txt: 26568) -.objectservers.com -# ||objects.tremormedia.com^$~object-subrequest,third-party (easylist.txt: 26567) -.objects.tremormedia.com -# ||obibanners.com^$third-party (easylist.txt: 26566) -.obibanners.com -# ||obeus.com^$third-party (easylist.txt: 26565) -.obeus.com -# ||obesw.com^$third-party (easylist.txt: 26564) -.obesw.com -# ||oainternetservices.com^$third-party (easylist.txt: 26563) -.oainternetservices.com -# ||oads.co^$third-party (easylist.txt: 26562) -.oads.co -# ||nzphoenix.com^$third-party (easylist.txt: 26561) -.nzphoenix.com -# ||nzads.net.nz^$third-party (easylist.txt: 26560) -.nzads.net.nz -# ||nyadmcncserve-05y06a.com^$third-party (easylist.txt: 26559) -.nyadmcncserve-05y06a.com -# ||nxtck.com^$third-party (easylist.txt: 26558) -.nxtck.com -# ||nwfhalifax.com^$third-party (easylist.txt: 26557) -.nwfhalifax.com -# ||nvero.net^$third-party (easylist.txt: 26556) -.nvero.net -# ||nvadn.com^$third-party (easylist.txt: 26555) -.nvadn.com -# ||nuseek.com^$third-party (easylist.txt: 26554) -.nuseek.com -# ||numbers.md^$third-party (easylist.txt: 26553) -.numbers.md -# ||numberium.com^$third-party (easylist.txt: 26552) -.numberium.com -# ||ntv.io^$third-party (easylist.txt: 26551) -.ntv.io -# ||ntent.com^$third-party (easylist.txt: 26550) -.ntent.com -# ||nspmotion.com^$third-party (easylist.txt: 26548) -.nspmotion.com -# ||nsmartad.com^$third-party (easylist.txt: 26547) -.nsmartad.com -# ||nsdsvc.com^$third-party (easylist.txt: 26546) -.nsdsvc.com -# ||nscontext.com^$third-party (easylist.txt: 26545) -.nscontext.com -# ||nrnma.com^$third-party (easylist.txt: 26544) -.nrnma.com -# ||nquchhfyex.com^$third-party (easylist.txt: 26543) -.nquchhfyex.com -# ||npvos.com^$third-party (easylist.txt: 26542) -.npvos.com -# ||nplexmedia.com^$third-party (easylist.txt: 26541) -.nplexmedia.com -# ||nowspots.com^$third-party (easylist.txt: 26540) -.nowspots.com -# ||nowlooking.net^$third-party (easylist.txt: 26539) -.nowlooking.net -# ||novarevenue.com^$third-party (easylist.txt: 26538) -.novarevenue.com -# ||northmay.com^$third-party (easylist.txt: 26537) -.northmay.com -# ||normkela.com^$third-party (easylist.txt: 26536) -.normkela.com -# ||noretia.com^$third-party (easylist.txt: 26535) -.noretia.com -# ||nonstoppartner.de^$third-party (easylist.txt: 26534) -.nonstoppartner.de -# ||nobsetfinvestor.com^$third-party (easylist.txt: 26533) -.nobsetfinvestor.com -# ||nobleppc.com^$third-party (easylist.txt: 26532) -.nobleppc.com -# ||nmwrdr.net^$third-party (easylist.txt: 26531) -.nmwrdr.net -# ||nmcdn.us^$third-party (easylist.txt: 26530) -.nmcdn.us -# ||nkredir.com^$third-party (easylist.txt: 26529) -.nkredir.com -# ||nighter.club^$third-party (easylist.txt: 26528) -.nighter.club -# ||nicheads.com^$third-party (easylist.txt: 26527) -.nicheads.com -# ||nicheadgenerator.com^$third-party (easylist.txt: 26526) -.nicheadgenerator.com -# ||ngecity.com^$third-party (easylist.txt: 26525) -.ngecity.com -# ||nextmobilecash.com^$third-party (easylist.txt: 26524) -.nextmobilecash.com -# ||nexage.com^$third-party (easylist.txt: 26523) -.nexage.com -# ||nexac.com^$third-party (easylist.txt: 26522) -.nexac.com -# ||newtention.net^$third-party (easylist.txt: 26521) -.newtention.net -# ||newstogram.com^$third-party (easylist.txt: 26520) -.newstogram.com -# ||newsnet.in.ua^$third-party (easylist.txt: 26519) -.newsnet.in.ua -# ||newsadstream.com^$third-party (easylist.txt: 26518) -.newsadstream.com -# ||newideasdaily.com^$third-party (easylist.txt: 26517) -.newideasdaily.com -# ||newgentraffic.com^$third-party (easylist.txt: 26516) -.newgentraffic.com -# ||newdosug.eu^$third-party (easylist.txt: 26515) -.newdosug.eu -# ||neudesicmediagroup.com^$third-party (easylist.txt: 26514) -.neudesicmediagroup.com -# ||networldmedia.net^$third-party (easylist.txt: 26513) -.networldmedia.net -# ||networld.hk^$third-party (easylist.txt: 26512) -.networld.hk -# ||networkxi.com^$third-party (easylist.txt: 26511) -.networkxi.com -# ||networkplay.in^$third-party (easylist.txt: 26510) -.networkplay.in -# ||netsolads.com^$third-party (easylist.txt: 26509) -.netsolads.com -# ||netshelter.net^$third-party (easylist.txt: 26508) -.netshelter.net -# ||netseer.com^$third-party (easylist.txt: 26507) -.netseer.com -# ||netpondads.com^$third-party (easylist.txt: 26506) -.netpondads.com -# ||netloader.cc^$third-party (easylist.txt: 26505) -.netloader.cc -# ||netliker.com^$third-party (easylist.txt: 26504) -.netliker.com -# ||netflixalternative.net^$third-party (easylist.txt: 26503) -.netflixalternative.net -# ||netavenir.com^$third-party (easylist.txt: 26502) -.netavenir.com -# ||netaffiliation.com^$~script,third-party (easylist.txt: 26501) -.netaffiliation.com -# ||net3media.com^$third-party (easylist.txt: 26500) -.net3media.com -# ||net-ad-vantage.com^$third-party (easylist.txt: 26499) -.net-ad-vantage.com -# ||neoffic.com^$third-party (easylist.txt: 26498) -.neoffic.com -# ||neodatagroup.com^$third-party (easylist.txt: 26497) -.neodatagroup.com -# ||neobux.com^$third-party (easylist.txt: 26496) -.neobux.com -# ||negolist.com^$third-party (easylist.txt: 26495) -.negolist.com -# ||neblotech.com^$third-party (easylist.txt: 26494) -.neblotech.com -# ||ncrjsserver.com^$third-party (easylist.txt: 26493) -.ncrjsserver.com -# ||nbstatic.com^$third-party (easylist.txt: 26492) -.nbstatic.com -# ||nbjmp.com^$third-party (easylist.txt: 26491) -.nbjmp.com -# ||nativeads.com^$third-party (easylist.txt: 26490) -.nativeads.com -# ||nativead.co^$third-party (easylist.txt: 26489) -.nativead.co -# ||native-adserver.com^$third-party (easylist.txt: 26488) -.native-adserver.com -# ||nanigans.com^$third-party (easylist.txt: 26487) -.nanigans.com -# ||nagrande.com^$third-party (easylist.txt: 26486) -.nagrande.com -# ||nabbr.com^$third-party (easylist.txt: 26485) -.nabbr.com -# ||n4403ad.doubleclick.net^$third-party (easylist.txt: 26484) -.n4403ad.doubleclick.net -# ||n388hkxg.com^$third-party (easylist.txt: 26483) -.n388hkxg.com -# ||mz28ismn.com^$third-party (easylist.txt: 26482) -.mz28ismn.com -# ||mywidget.mobi^$third-party (easylist.txt: 26481) -.mywidget.mobi -# ||myvads.com^$third-party (easylist.txt: 26480) -.myvads.com -# ||myuniques.ru^$third-party (easylist.txt: 26479) -.myuniques.ru -# ||mythings.com^$third-party (easylist.txt: 26478) -.mythings.com -# ||mysafeurl.com^$third-party (easylist.txt: 26477) -.mysafeurl.com -# ||myplayerhd.net^$third-party (easylist.txt: 26476) -.myplayerhd.net -# ||mynewcarquote.us^$third-party (easylist.txt: 26475) -.mynewcarquote.us -# ||mylinkbox.com^$third-party (easylist.txt: 26474) -.mylinkbox.com -# ||myinfotopia.com^$third-party (easylist.txt: 26473) -.myinfotopia.com -# ||myemailbox.info^$third-party (easylist.txt: 26472) -.myemailbox.info -# ||mydreamads.com^$third-party (easylist.txt: 26471) -.mydreamads.com -# ||mycooliframe.net^$third-party (easylist.txt: 26470) -.mycooliframe.net -# ||myclickbankads.com^$third-party (easylist.txt: 26469) -.myclickbankads.com -# ||myaffiliates.com^$third-party (easylist.txt: 26468) -.myaffiliates.com -# ||my-layer.net^$third-party (easylist.txt: 26467) -.my-layer.net -# ||mxtads.com^$third-party (easylist.txt: 26466) -.mxtads.com -# ||mutary.com^$third-party (easylist.txt: 26465) -.mutary.com -# ||musicnote.info^$third-party (easylist.txt: 26464) -.musicnote.info -# ||music-desktop.com^$third-party (easylist.txt: 26463) -.music-desktop.com -# ||munically.com^$third-party (easylist.txt: 26462) -.munically.com -# ||multiview.com^$third-party (easylist.txt: 26461) -.multiview.com -# ||multiadserv.com^$third-party (easylist.txt: 26460) -.multiadserv.com -# ||mujap.com^$third-party (easylist.txt: 26459) -.mujap.com -# ||mtrcss.com^$third-party (easylist.txt: 26458) -.mtrcss.com -# ||mtagmonetizationb.com^$third-party (easylist.txt: 26457) -.mtagmonetizationb.com -# ||mtagmonetizationa.com^$third-party (easylist.txt: 26456) -.mtagmonetizationa.com -# ||msypr.com^$third-party (easylist.txt: 26455) -.msypr.com -# ||msads.net^$third-party (easylist.txt: 26454) -.msads.net -# ||mprezchc.com^$third-party (easylist.txt: 26453) -.mprezchc.com -# ||mpression.net^$third-party (easylist.txt: 26452) -.mpression.net -# ||mpnrs.com^$third-party (easylist.txt: 26451) -.mpnrs.com -# ||movad.net^$third-party (easylist.txt: 26450) -.movad.net -# ||mottnow.com^$third-party (easylist.txt: 26449) -.mottnow.com -# ||moselats.com^$third-party (easylist.txt: 26448) -.moselats.com -# ||morgdm.ru^$third-party (easylist.txt: 26447) -.morgdm.ru -# ||moreplayerz.com^$third-party (easylist.txt: 26446) -.moreplayerz.com -# ||moregamers.com^$third-party (easylist.txt: 26445) -.moregamers.com -# ||mooxar.com^$third-party (easylist.txt: 26444) -.mooxar.com -# ||mootermedia.com^$third-party (easylist.txt: 26443) -.mootermedia.com -# ||mookie1.com^$third-party (easylist.txt: 26442) -.mookie1.com -# ||monsoonads.com^$third-party (easylist.txt: 26441) -.monsoonads.com -# ||monkeybroker.net^$third-party (easylist.txt: 26440) -.monkeybroker.net -# ||moneywhisper.com^$third-party (easylist.txt: 26439) -.moneywhisper.com -# ||moneycosmos.com^$third-party (easylist.txt: 26438) -.moneycosmos.com -# ||money4ads.com^$third-party (easylist.txt: 26437) -.money4ads.com -# ||money-cpm.fr^$third-party (easylist.txt: 26436) -.money-cpm.fr -# ||mokonocdn.com^$third-party (easylist.txt: 26435) -.mokonocdn.com -# ||mojoaffiliates.com^$third-party (easylist.txt: 26434) -.mojoaffiliates.com -# ||mogointeractive.com^$third-party (easylist.txt: 26433) -.mogointeractive.com -# ||moffsets.com^$third-party (easylist.txt: 26432) -.moffsets.com -# ||modelegating.com^$third-party (easylist.txt: 26431) -.modelegating.com -# ||mobytrks.com^$third-party (easylist.txt: 26430) -.mobytrks.com -# ||mobtrks.com^$third-party (easylist.txt: 26429) -.mobtrks.com -# ||mobstrks.com^$third-party (easylist.txt: 26428) -.mobstrks.com -# ||moborobot.com^$third-party (easylist.txt: 26427) -.moborobot.com -# ||mobiyield.com^$third-party (easylist.txt: 26426) -.mobiyield.com -# ||mobitracker.info^$third-party (easylist.txt: 26425) -.mobitracker.info -# ||mobisla.com^$third-party (easylist.txt: 26424) -.mobisla.com -# ||mobiright.com^$third-party (easylist.txt: 26423) -.mobiright.com -# ||mobile-10.com^$third-party (easylist.txt: 26422) -.mobile-10.com -# ||mobikano.com^$third-party (easylist.txt: 26421) -.mobikano.com -# ||mobifobi.com^$third-party (easylist.txt: 26420) -.mobifobi.com -# ||mobicont.com^$third-party (easylist.txt: 26419) -.mobicont.com -# ||mobfox.com^$third-party (easylist.txt: 26418) -.mobfox.com -# ||mobday.com^$third-party (easylist.txt: 26417) -.mobday.com -# ||mobatory.com^$third-party (easylist.txt: 26416) -.mobatory.com -# ||mobatori.com^$third-party (easylist.txt: 26415) -.mobatori.com -# ||moatads.com^$third-party (easylist.txt: 26414) -.moatads.com -# ||mmotraffic.com^$third-party (easylist.txt: 26413) -.mmotraffic.com -# ||mmoptional.com^$third-party (easylist.txt: 26412) -.mmoptional.com -# ||mmondi.com^$third-party (easylist.txt: 26411) -.mmondi.com -# ||mmngte.net^$third-party (easylist.txt: 26410) -.mmngte.net -# ||mmismm.com^$third-party (easylist.txt: 26409) -.mmismm.com -# ||mmgads.com^$third-party (easylist.txt: 26408) -.mmgads.com -# ||mmadsgadget.com^$third-party (easylist.txt: 26407) -.mmadsgadget.com -# ||mlnadvertising.com^$third-party (easylist.txt: 26406) -.mlnadvertising.com -# ||mktseek.com^$third-party (easylist.txt: 26405) -.mktseek.com -# ||mixpo.com^$third-party (easylist.txt: 26404) -.mixpo.com -# ||mixmarket.biz^$third-party (easylist.txt: 26403) -.mixmarket.biz -# ||miva.com^$third-party (easylist.txt: 26402) -.miva.com -# ||mistands.com^$third-party (easylist.txt: 26401) -.mistands.com -# ||mirrorpersonalinjury.co.uk^$third-party (easylist.txt: 26400) -.mirrorpersonalinjury.co.uk -# ||mirago.com^$third-party (easylist.txt: 26399) -.mirago.com -# ||minimumpay.info^$third-party (easylist.txt: 26398) -.minimumpay.info -# ||mindlytix.com^$third-party (easylist.txt: 26397) -.mindlytix.com -# ||milabra.com^$third-party (easylist.txt: 26396) -.milabra.com -# ||microsoftaffiliates.net^$third-party (easylist.txt: 26395) -.microsoftaffiliates.net -# ||microadinc.com^$third-party (easylist.txt: 26394) -.microadinc.com -# ||microad.jp^$third-party (easylist.txt: 26393) -.microad.jp -# ||mibebu.com^$third-party (easylist.txt: 26392) -.mibebu.com -# ||mgplatform.com^$third-party (easylist.txt: 26391) -.mgplatform.com -# ||mgcashgate.com^$third-party (easylist.txt: 26389) -.mgcashgate.com -# ||mgcash.com^$third-party (easylist.txt: 26388) -.mgcash.com -# ||mezimedia.com^$third-party (easylist.txt: 26387) -.mezimedia.com -# ||meya41w7.com^$third-party (easylist.txt: 26386) -.meya41w7.com -# ||meviodisplayads.com^$third-party (easylist.txt: 26385) -.meviodisplayads.com -# ||metrics.io^$third-party (easylist.txt: 26384) -.metrics.io -# ||metavertizer.com^$third-party (easylist.txt: 26383) -.metavertizer.com -# ||metavertising.com^$third-party (easylist.txt: 26382) -.metavertising.com -# ||metaffiliation.com^*^taff= (easylist.txt: 26381) -.metaffiliation.com/.*[^\w%.-]taff= -# ||metaffiliation.com^*^maff= (easylist.txt: 26380) -.metaffiliation.com/.*[^\w%.-]maff= -# ||metaffiliation.com^$~image,~subdocument,third-party (easylist.txt: 26379) -.metaffiliation.com -# ||messagespaceads.com^$third-party (easylist.txt: 26378) -.messagespaceads.com -# ||mercuras.com^$third-party (easylist.txt: 26377) -.mercuras.com -# ||merchenta.com^$third-party (easylist.txt: 26376) -.merchenta.com -# ||mentalks.ru^$third-party (easylist.txt: 26375) -.mentalks.ru -# ||mentad.com^$third-party (easylist.txt: 26374) -.mentad.com -# ||mengheng.net^$third-party (easylist.txt: 26373) -.mengheng.net -# ||mellowads.com^$third-party (easylist.txt: 26372) -.mellowads.com -# ||meinlist.com^$third-party (easylist.txt: 26371) -.meinlist.com -# ||megbase.com^$third-party (easylist.txt: 26370) -.megbase.com -# ||megatronmailer.com^$third-party (easylist.txt: 26369) -.megatronmailer.com -# ||megapopads.com^$third-party (easylist.txt: 26368) -.megapopads.com -# ||megacpm.com^$third-party (easylist.txt: 26367) -.megacpm.com -# ||megaad.nz^$third-party (easylist.txt: 26366) -.megaad.nz -# ||meetic-partners.com^$third-party (easylist.txt: 26365) -.meetic-partners.com -# ||meendocash.com^$third-party (easylist.txt: 26364) -.meendocash.com -# ||medyanetads.com^$third-party (easylist.txt: 26363) -.medyanetads.com -# ||medyanet.net^$third-party (easylist.txt: 26362) -.medyanet.net -# ||medrx.sensis.com.au^$third-party (easylist.txt: 26361) -.medrx.sensis.com.au -# ||medleyads.com^$third-party (easylist.txt: 26360) -.medleyads.com -# ||mediatraks.com^$third-party (easylist.txt: 26359) -.mediatraks.com -# ||mediatraffic.com^$third-party (easylist.txt: 26358) -.mediatraffic.com -# ||mediative.ca^$third-party (easylist.txt: 26357) -.mediative.ca -# ||mediatarget.com^$third-party (easylist.txt: 26356) -.mediatarget.com -# ||mediapeo.com^$third-party (easylist.txt: 26355) -.mediapeo.com -# ||mediaonpro.com^$third-party (easylist.txt: 26354) -.mediaonpro.com -# ||mediaonenetwork.net^$third-party (easylist.txt: 26353) -.mediaonenetwork.net -# ||medialation.net^$third-party (easylist.txt: 26352) -.medialation.net -# ||medialand.ru^$third-party (easylist.txt: 26351) -.medialand.ru -# ||mediakeywords.com^$third-party (easylist.txt: 26350) -.mediakeywords.com -# ||mediagridwork.com^$third-party (easylist.txt: 26349) -.mediagridwork.com -# ||mediag4.com^$third-party (easylist.txt: 26348) -.mediag4.com -# ||mediaforge.com^$third-party (easylist.txt: 26347) -.mediaforge.com -# ||mediaflire.com^$third-party (easylist.txt: 26346) -.mediaflire.com -# ||mediafilesdownload.com^$third-party (easylist.txt: 26345) -.mediafilesdownload.com -# ||mediaffiliation.com^$third-party (easylist.txt: 26344) -.mediaffiliation.com -# ||mediacpm.com^$third-party (easylist.txt: 26343) -.mediacpm.com -# ||mediaclick.com^$third-party (easylist.txt: 26342) -.mediaclick.com -# ||mediaadserver.org^$third-party (easylist.txt: 26341) -.mediaadserver.org -# ||media970.com^$third-party (easylist.txt: 26340) -.media970.com -# ||media6degrees.com^$third-party (easylist.txt: 26339) -.media6degrees.com -# ||media303.com^$third-party (easylist.txt: 26338) -.media303.com -# ||media.net^$third-party (easylist.txt: 26337) -.media.net -# ||media-servers.net^$third-party (easylist.txt: 26336) -.media-servers.net -# ||media-networks.ru^$third-party (easylist.txt: 26335) -.media-networks.ru -# ||media-ks.net^$third-party (easylist.txt: 26334) -.media-ks.net -# ||media-general.com^$third-party (easylist.txt: 26333) -.media-general.com -# ||meadigital.com^$third-party (easylist.txt: 26332) -.meadigital.com -# ||mdn2015x4.com^$third-party (easylist.txt: 26331) -.mdn2015x4.com -# ||mdn2015x2.com^$third-party (easylist.txt: 26330) -.mdn2015x2.com -# ||mdn2015x1.com^$third-party (easylist.txt: 26329) -.mdn2015x1.com -# ||mdialog.com^$third-party (easylist.txt: 26328) -.mdialog.com -# ||mdadx.com^$third-party (easylist.txt: 26327) -.mdadx.com -# ||mdadvertising.net^$third-party (easylist.txt: 26326) -.mdadvertising.net -# ||mcdstorage.com^$third-party (easylist.txt: 26325) -.mcdstorage.com -# ||mcdomainalot.com^$third-party (easylist.txt: 26324) -.mcdomainalot.com -# ||mbn.com.ua^$third-party (easylist.txt: 26323) -.mbn.com.ua -# ||mb8e17f12.website^$third-party (easylist.txt: 26322) -.mb8e17f12.website -# ||mb57.com^$third-party (easylist.txt: 26321) -.mb57.com -# ||mb38.com^$third-party (easylist.txt: 26320) -.mb38.com -# ||mb104.com^$third-party (easylist.txt: 26319) -.mb104.com -# ||mb102.com^$third-party (easylist.txt: 26318) -.mb102.com -# ||mb01.com^$third-party (easylist.txt: 26317) -.mb01.com -# ||maxserving.com^$third-party (easylist.txt: 26316) -.maxserving.com -# ||maudau.com^$third-party (easylist.txt: 26315) -.maudau.com -# ||matiro.com^$third-party (easylist.txt: 26314) -.matiro.com -# ||mastertraffic.cn^$third-party (easylist.txt: 26313) -.mastertraffic.cn -# ||masternal.com^$third-party (easylist.txt: 26312) -.masternal.com -# ||masterads.org^$third-party (easylist.txt: 26311) -.masterads.org -# ||martiniadnetwork.com^$third-party (easylist.txt: 26310) -.martiniadnetwork.com -# ||marsads.com^$third-party (easylist.txt: 26309) -.marsads.com -# ||marketoring.com^$third-party (easylist.txt: 26308) -.marketoring.com -# ||marketnetwork.com^$third-party (easylist.txt: 26307) -.marketnetwork.com -# ||marketleverage.com^$third-party (easylist.txt: 26306) -.marketleverage.com -# ||marketingenhanced.com^$third-party (easylist.txt: 26305) -.marketingenhanced.com -# ||markethealth.com^$third-party (easylist.txt: 26304) -.markethealth.com -# ||marketgid.com^$third-party (easylist.txt: 26303) -.marketgid.com -# ||marketfly.net^$third-party (easylist.txt: 26302) -.marketfly.net -# ||marketbanker.com^$third-party (easylist.txt: 26301) -.marketbanker.com -# ||marfeel.com^$third-party (easylist.txt: 26300) -.marfeel.com -# ||marbil24.co.za^$third-party (easylist.txt: 26299) -.marbil24.co.za -# ||mangoforex.com^$third-party (easylist.txt: 26298) -.mangoforex.com -# ||mallsponsor.com^$third-party (easylist.txt: 26297) -.mallsponsor.com -# ||makemoneymakemoney.net^$third-party (easylist.txt: 26296) -.makemoneymakemoney.net -# ||makecashtakingsurveys.biz^$third-party (easylist.txt: 26295) -.makecashtakingsurveys.biz -# ||mainroll.com^$third-party (easylist.txt: 26294) -.mainroll.com -# ||mainadv.com^$third-party (easylist.txt: 26293) -.mainadv.com -# ||mailmarketingmachine.com^$third-party (easylist.txt: 26292) -.mailmarketingmachine.com -# ||magnetisemedia.com^$third-party (easylist.txt: 26291) -.magnetisemedia.com -# ||magicalled.info^$third-party (easylist.txt: 26290) -.magicalled.info -# ||madsone.com^$third-party (easylist.txt: 26289) -.madsone.com -# ||madserving.com^$third-party (easylist.txt: 26288) -.madserving.com -# ||madadsmedia.com^$third-party (easylist.txt: 26287) -.madadsmedia.com -# ||machings.com^^$third-party (easylist.txt: 26286) -.machings.com/[^\w%.-] -# ||mabirol.com^$third-party (easylist.txt: 26285) -.mabirol.com -# ||m5prod.net^$third-party (easylist.txt: 26284) -.m5prod.net -# ||m57ku6sm.com^$third-party (easylist.txt: 26283) -.m57ku6sm.com -# ||m4pub.com^$third-party (easylist.txt: 26282) -.m4pub.com -# ||m2pub.com^$third-party (easylist.txt: 26281) -.m2pub.com -# ||m1.fwmrm.net^$object-subrequest,third-party (easylist.txt: 26280) -.m1.fwmrm.net -# ||lzjl.com^$third-party (easylist.txt: 26279) -.lzjl.com -# ||lx2rv.com^$third-party (easylist.txt: 26278) -.lx2rv.com -# ||luxup.ru^$third-party (easylist.txt: 26277) -.luxup.ru -# ||luxbetaffiliates.com.au^$third-party (easylist.txt: 26276) -.luxbetaffiliates.com.au -# ||luxadv.com^$third-party (easylist.txt: 26275) -.luxadv.com -# ||lushcrush.com^$third-party (easylist.txt: 26274) -.lushcrush.com -# ||lucidmedia.com^$third-party (easylist.txt: 26273) -.lucidmedia.com -# ||ltassrv.com/serve/ (easylist.txt: 26272) -.ltassrv.com/serve/ -# ||ltassrv.com/goads.swf (easylist.txt: 26271) -.ltassrv.com/goads\.swf -# ||ltassrv.com.s3.amazonaws.com^$third-party (easylist.txt: 26270) -.ltassrv.com.s3.amazonaws.com -# ||lqw.me^$third-party (easylist.txt: 26269) -.lqw.me -# ||lqcdn.com^$third-party (easylist.txt: 26268) -.lqcdn.com -# ||loxtk.com^$third-party (easylist.txt: 26267) -.loxtk.com -# ||love-banner.com^$third-party (easylist.txt: 26266) -.love-banner.com -# ||lotteryaffiliates.com^$third-party (easylist.txt: 26265) -.lotteryaffiliates.com -# ||lostelephants.xyz^$third-party (easylist.txt: 26264) -.lostelephants.xyz -# ||losomy.com^$third-party (easylist.txt: 26263) -.losomy.com -# ||loseads.eu^$third-party (easylist.txt: 26262) -.loseads.eu -# ||lose-ads.de^$third-party (easylist.txt: 26261) -.lose-ads.de -# ||looneynetwork.com^$third-party (easylist.txt: 26260) -.looneynetwork.com -# ||looneyads.com^$third-party (easylist.txt: 26259) -.looneyads.com -# ||looksmart.com^$third-party (easylist.txt: 26258) -.looksmart.com -# ||lookit-quick.com^$third-party (easylist.txt: 26257) -.lookit-quick.com -# ||loodyas.com^$third-party (easylist.txt: 26256) -.loodyas.com -# ||logo-net.co.uk^$third-party (easylist.txt: 26255) -.logo-net.co.uk -# ||lockscalecompare.com^$third-party (easylist.txt: 26254) -.lockscalecompare.com -# ||lockhosts.com^$third-party (easylist.txt: 26253) -.lockhosts.com -# ||lockerdome.com^$third-party (easylist.txt: 26252) -.lockerdome.com -# ||localsearch24.co.uk^$third-party (easylist.txt: 26251) -.localsearch24.co.uk -# ||localedgemedia.com^$third-party (easylist.txt: 26250) -.localedgemedia.com -# ||localadbuy.com^$third-party (easylist.txt: 26249) -.localadbuy.com -# ||loading-resource.com^$third-party (easylist.txt: 26248) -.loading-resource.com -# ||lndjj.com^$third-party (easylist.txt: 26247) -.lndjj.com -# ||liveuniversenetwork.com^$third-party (easylist.txt: 26246) -.liveuniversenetwork.com -# ||liverail.com^$~object-subrequest,third-party (easylist.txt: 26245) -.liverail.com -# ||liveadserver.net^$third-party (easylist.txt: 26244) -.liveadserver.net -# ||liveadoptimizer.com^$third-party (easylist.txt: 26243) -.liveadoptimizer.com -# ||liveadexchanger.com^$third-party (easylist.txt: 26242) -.liveadexchanger.com -# ||listingcafe.com^$third-party (easylist.txt: 26241) -.listingcafe.com -# ||liqwid.net^$third-party (easylist.txt: 26240) -.liqwid.net -# ||linkz.net^$third-party (easylist.txt: 26239) -.linkz.net -# ||linkybank.com^$third-party (easylist.txt: 26238) -.linkybank.com -# ||linkworth.com^$third-party (easylist.txt: 26237) -.linkworth.com -# ||linkwash.de^$third-party (easylist.txt: 26236) -.linkwash.de -# ||linkstorm.net^$third-party (easylist.txt: 26235) -.linkstorm.net -# ||linksmart.com^$third-party (easylist.txt: 26234) -.linksmart.com -# ||linkshowoff.com^$third-party (easylist.txt: 26233) -.linkshowoff.com -# ||links.io^$third-party (easylist.txt: 26232) -.links.io -# ||linkreferral.com^$third-party (easylist.txt: 26231) -.linkreferral.com -# ||linkoffers.net^$third-party (easylist.txt: 26230) -.linkoffers.net -# ||linkmads.com^$third-party (easylist.txt: 26229) -.linkmads.com -# ||linkgrand.com^$third-party (easylist.txt: 26228) -.linkgrand.com -# ||linkexchangers.net^$third-party (easylist.txt: 26227) -.linkexchangers.net -# ||linkexchange.com^$third-party (easylist.txt: 26226) -.linkexchange.com -# ||linkelevator.com^$third-party (easylist.txt: 26225) -.linkelevator.com -# ||linkconnector.com^$third-party (easylist.txt: 26224) -.linkconnector.com -# ||linkclicks.com^$third-party (easylist.txt: 26223) -.linkclicks.com -# ||linkbuddies.com^$third-party (easylist.txt: 26222) -.linkbuddies.com -# ||linicom.co.il^$third-party (easylist.txt: 26221) -.linicom.co.il -# ||lightningcast.net^$~object-subrequest,third-party (easylist.txt: 26220) -.lightningcast.net -# ||lightad.co.kr^$third-party (easylist.txt: 26219) -.lightad.co.kr -# ||ligational.com^$third-party (easylist.txt: 26218) -.ligational.com -# ||liftdna.com^$third-party (easylist.txt: 26217) -.liftdna.com -# ||lgse.com^$third-party (easylist.txt: 26216) -.lgse.com -# ||lfstmedia.com^$third-party (easylist.txt: 26215) -.lfstmedia.com -# ||letsgoshopping.tk^$third-party (easylist.txt: 26214) -.letsgoshopping.tk -# ||letilyadothejob.com^$third-party (easylist.txt: 26213) -.letilyadothejob.com -# ||legisland.net^$third-party (easylist.txt: 26212) -.legisland.net -# ||leetmedia.com^$third-party (easylist.txt: 26211) -.leetmedia.com -# ||leadmediapartners.com^$third-party (easylist.txt: 26210) -.leadmediapartners.com -# ||leaderpub.fr^$third-party (easylist.txt: 26209) -.leaderpub.fr -# ||leadcola.com^$third-party (easylist.txt: 26208) -.leadcola.com -# ||leadbolt.net^$third-party (easylist.txt: 26207) -.leadbolt.net -# ||leadadvert.info^$third-party (easylist.txt: 26206) -.leadadvert.info -# ||leadad.mobi^$third-party (easylist.txt: 26205) -.leadad.mobi -# ||leadacceptor.com^$third-party (easylist.txt: 26204) -.leadacceptor.com -# ||lduhtrp.net^$third-party (easylist.txt: 26203) -.lduhtrp.net -# ||ldgateway.com^$third-party (easylist.txt: 26202) -.ldgateway.com -# ||lcl2adserver.com^$third-party (easylist.txt: 26201) -.lcl2adserver.com -# ||lbm1.com^$third-party (easylist.txt: 26200) -.lbm1.com -# ||lazynerd.info^$third-party (easylist.txt: 26199) -.lazynerd.info -# ||layerwelt.com^$third-party (easylist.txt: 26198) -.layerwelt.com -# ||layerloop.com^$third-party (easylist.txt: 26197) -.layerloop.com -# ||layer-ad.org^$third-party (easylist.txt: 26196) -.layer-ad.org -# ||launchbit.com^$third-party (easylist.txt: 26195) -.launchbit.com -# ||laserhairremovalstore.com^$third-party (easylist.txt: 26194) -.laserhairremovalstore.com -# ||largestable.com^$third-party (easylist.txt: 26193) -.largestable.com -# ||lanistaconcepts.com^$third-party (easylist.txt: 26192) -.lanistaconcepts.com -# ||lakidar.net^$third-party (easylist.txt: 26191) -.lakidar.net -# ||lakequincy.com^$third-party (easylist.txt: 26190) -.lakequincy.com -# ||ladbrokesaffiliates.com.au^$third-party (easylist.txt: 26189) -.ladbrokesaffiliates.com.au -# ||l3op.info^$third-party (easylist.txt: 26188) -.l3op.info -# ||kumpulblogger.com^$third-party (easylist.txt: 26187) -.kumpulblogger.com -# ||kromeleta.ru^$third-party (easylist.txt: 26186) -.kromeleta.ru -# ||kr3vinsx.com^$third-party (easylist.txt: 26185) -.kr3vinsx.com -# ||kqzyfj.com^$third-party (easylist.txt: 26184) -.kqzyfj.com -# ||kovla.com^$third-party (easylist.txt: 26183) -.kovla.com -# ||korrelate.net^$third-party (easylist.txt: 26182) -.korrelate.net -# ||koocash.com^$third-party (easylist.txt: 26181) -.koocash.com -# ||kontextua.com^$third-party (easylist.txt: 26180) -.kontextua.com -# ||komoona.com^$third-party (easylist.txt: 26179) -.komoona.com -# ||kolition.com^$third-party (easylist.txt: 26178) -.kolition.com -# ||knowd.com^$third-party (easylist.txt: 26177) -.knowd.com -# ||knorex.asia^$third-party (easylist.txt: 26176) -.knorex.asia -# ||klonedaset.org^$third-party (easylist.txt: 26175) -.klonedaset.org -# ||kloapers.com^$third-party (easylist.txt: 26174) -.kloapers.com -# ||klixfeed.com^$third-party (easylist.txt: 26173) -.klixfeed.com -# ||klipmart.com^$third-party (easylist.txt: 26172) -.klipmart.com -# ||klikvip.com^$third-party (easylist.txt: 26171) -.klikvip.com -# ||kliksaya.com^$third-party (easylist.txt: 26170) -.kliksaya.com -# ||klikadvertising.com^$third-party (easylist.txt: 26169) -.klikadvertising.com -# ||kjgh5o.com^$third-party (easylist.txt: 26168) -.kjgh5o.com -# ||kitnmedia.com^$third-party (easylist.txt: 26167) -.kitnmedia.com -# ||kiosked.com^$third-party (easylist.txt: 26166) -.kiosked.com -# ||kintokup.com^$third-party (easylist.txt: 26165) -.kintokup.com -# ||kinley.com^$third-party (easylist.txt: 26164) -.kinley.com -# ||kikuzip.com^$third-party (easylist.txt: 26163) -.kikuzip.com -# ||keywordblocks.com^$third-party (easylist.txt: 26162) -.keywordblocks.com -# ||keyrunmodel.com^$third-party (easylist.txt: 26161) -.keyrunmodel.com -# ||ketoo.com^$third-party (easylist.txt: 26160) -.ketoo.com -# ||kerg.net^$third-party (easylist.txt: 26159) -.kerg.net -# ||kehalim.com^$third-party (easylist.txt: 26158) -.kehalim.com -# ||keewurd.com^$third-party (easylist.txt: 26157) -.keewurd.com -# ||kavanga.ru^$third-party (easylist.txt: 26156) -.kavanga.ru -# ||kantarmedia.com^$third-party (easylist.txt: 26155) -.kantarmedia.com -# ||kanoodle.com^$third-party (easylist.txt: 26154) -.kanoodle.com -# ||k0z09okc.com^$third-party (easylist.txt: 26153) -.k0z09okc.com -# ||jyvtidkx.com^$third-party (easylist.txt: 26152) -.jyvtidkx.com -# ||jwaavsze.com^$third-party (easylist.txt: 26151) -.jwaavsze.com -# ||justrelevant.com^$third-party (easylist.txt: 26150) -.justrelevant.com -# ||jursp.com^$third-party (easylist.txt: 26149) -.jursp.com -# ||jumptap.com^$third-party (easylist.txt: 26148) -.jumptap.com -# ||jumpelead.com^$third-party (easylist.txt: 26147) -.jumpelead.com -# ||jumia.com.ng^$third-party (easylist.txt: 26146) -.jumia.com.ng -# ||jumbolt.ru^$third-party (easylist.txt: 26145) -.jumbolt.ru -# ||jumboaffiliates.com^$third-party (easylist.txt: 26144) -.jumboaffiliates.com -# ||jujzh9va.com^$third-party (easylist.txt: 26143) -.jujzh9va.com -# ||jujuads.com^$third-party (easylist.txt: 26142) -.jujuads.com -# ||juiceadv.net^$third-party (easylist.txt: 26141) -.juiceadv.net -# ||juiceadv.com^$third-party (easylist.txt: 26140) -.juiceadv.com -# ||judicated.com^$third-party (easylist.txt: 26139) -.judicated.com -# ||jtrakk.com^$third-party (easylist.txt: 26138) -.jtrakk.com -# ||jssearch.net^$third-party (easylist.txt: 26137) -.jssearch.net -# ||jsretra.com^$third-party (easylist.txt: 26136) -.jsretra.com -# ||jsfeedadsget.com^$third-party (easylist.txt: 26135) -.jsfeedadsget.com -# ||jscount.com^$third-party (easylist.txt: 26134) -.jscount.com -# ||js.cdn.ac^$third-party (easylist.txt: 26133) -.js.cdn.ac -# ||jque.net^$third-party (easylist.txt: 26132) -.jque.net -# ||joytocash.com^$third-party (easylist.txt: 26131) -.joytocash.com -# ||jobtarget.com^$third-party (easylist.txt: 26130) -.jobtarget.com -# ||jobsyndicate.com^$third-party (easylist.txt: 26129) -.jobsyndicate.com -# ||jo7cofh3.com^$third-party (easylist.txt: 26128) -.jo7cofh3.com -# ||jmp9.com^$third-party (easylist.txt: 26127) -.jmp9.com -# ||jizzontoy.com^$third-party (easylist.txt: 26126) -.jizzontoy.com -# ||jiwire.com^$third-party (easylist.txt: 26125) -.jiwire.com -# ||jivox.com^$third-party (easylist.txt: 26124) -.jivox.com -# ||jiawen88.com^$third-party (easylist.txt: 26123) -.jiawen88.com -# ||jemmgroup.com^$third-party (easylist.txt: 26122) -.jemmgroup.com -# ||jeetyetmedia.com^$third-party (easylist.txt: 26121) -.jeetyetmedia.com -# ||jdproject.net^$third-party (easylist.txt: 26120) -.jdproject.net -# ||jdoqocy.com^$third-party (easylist.txt: 26119) -.jdoqocy.com -# ||jbrlsr.com^$third-party (easylist.txt: 26118) -.jbrlsr.com -# ||jangonetwork.com^$third-party (easylist.txt: 26117) -.jangonetwork.com -# ||jango.com^$third-party (easylist.txt: 26116) -.jango.com -# ||jadcenter.com^$third-party (easylist.txt: 26115) -.jadcenter.com -# ||j2ef76da3.website^$third-party (easylist.txt: 26114) -.j2ef76da3.website -# ||izeads.com^$third-party (easylist.txt: 26113) -.izeads.com -# ||ixnp.com^$third-party (easylist.txt: 26112) -.ixnp.com -# ||iwantmoar.net^$third-party (easylist.txt: 26111) -.iwantmoar.net -# ||iv.doubleclick.net^$third-party (easylist.txt: 26110) -.iv.doubleclick.net -# ||iu16wmye.com^$third-party (easylist.txt: 26109) -.iu16wmye.com -# ||itrengia.com^$third-party (easylist.txt: 26108) -.itrengia.com -# ||isparkmedia.com^$third-party (easylist.txt: 26107) -.isparkmedia.com -# ||isohits.com^$third-party (easylist.txt: 26106) -.isohits.com -# ||isapi.solutions^$third-party (easylist.txt: 26105) -.isapi.solutions -# ||ipromote.com^$third-party (easylist.txt: 26104) -.ipromote.com -# ||ipredictive.com^$third-party (easylist.txt: 26103) -.ipredictive.com -# ||ip-adress.com^$third-party (easylist.txt: 26102) -.ip-adress.com -# ||inviziads.com^$third-party (easylist.txt: 26101) -.inviziads.com -# ||investingchannel.com^$third-party (easylist.txt: 26100) -.investingchannel.com -# ||inuxu.co.in^$third-party (easylist.txt: 26099) -.inuxu.co.in -# ||inuxu.biz^$third-party (easylist.txt: 26098) -.inuxu.biz -# ||inuvo.com^$third-party (easylist.txt: 26097) -.inuvo.com -# ||intuneads.com^$third-party (easylist.txt: 26096) -.intuneads.com -# ||inttrax.com^$third-party (easylist.txt: 26095) -.inttrax.com -# ||intopicmedia.com^$third-party (easylist.txt: 26094) -.intopicmedia.com -# ||intgr.net^$third-party (easylist.txt: 26093) -.intgr.net -# ||intextual.net^$third-party (easylist.txt: 26092) -.intextual.net -# ||intextscript.com^$third-party (easylist.txt: 26091) -.intextscript.com -# ||intextdirect.com^$third-party (easylist.txt: 26090) -.intextdirect.com -# ||interworksmedia.co.kr^$third-party (easylist.txt: 26089) -.interworksmedia.co.kr -# ||interpolls.com^$third-party (easylist.txt: 26088) -.interpolls.com -# ||internetadbrokers.com^$third-party (easylist.txt: 26087) -.internetadbrokers.com -# ||intermarkets.net^$third-party (easylist.txt: 26086) -.intermarkets.net -# ||interesting.cc^$third-party (easylist.txt: 26085) -.interesting.cc -# ||interestably.com^$third-party (easylist.txt: 26084) -.interestably.com -# ||interclick.com^$third-party (easylist.txt: 26083) -.interclick.com -# ||interactivespot.net^$third-party (easylist.txt: 26082) -.interactivespot.net -# ||intentmedia.net^$third-party (easylist.txt: 26081) -.intentmedia.net -# ||intenthq.com^$third-party (easylist.txt: 26080) -.intenthq.com -# ||intellitxt.com^$third-party (easylist.txt: 26079) -.intellitxt.com -# ||intellibanners.com^$third-party (easylist.txt: 26078) -.intellibanners.com -# ||integral-marketing.com^$third-party (easylist.txt: 26077) -.integral-marketing.com -# ||instivate.com^$third-party (easylist.txt: 26076) -.instivate.com -# ||instinctiveads.com^$third-party (easylist.txt: 26075) -.instinctiveads.com -# ||instantdollarz.com^$third-party (easylist.txt: 26074) -.instantdollarz.com -# ||instantbannercreator.com^$third-party (easylist.txt: 26073) -.instantbannercreator.com -# ||insta-cash.net^$third-party (easylist.txt: 26072) -.insta-cash.net -# ||inspiringsweater.xyz^$third-party (easylist.txt: 26071) -.inspiringsweater.xyz -# ||inskinmedia.com^$~stylesheet,third-party (easylist.txt: 26070) -.inskinmedia.com -# ||inskinad.com^$third-party (easylist.txt: 26069) -.inskinad.com -# ||insitesystems.com^$third-party (easylist.txt: 26068) -.insitesystems.com -# ||insitepromotion.com^$third-party (easylist.txt: 26067) -.insitepromotion.com -# ||insightexpressai.com^$third-party (easylist.txt: 26066) -.insightexpressai.com -# ||insightexpress.com^$third-party (easylist.txt: 26065) -.insightexpress.com -# ||innovid.com^$third-party (easylist.txt: 26064) -.innovid.com -# ||innity.net^$third-party (easylist.txt: 26063) -.innity.net -# ||innity.com^$third-party (easylist.txt: 26062) -.innity.com -# ||inktad.com^$third-party (easylist.txt: 26061) -.inktad.com -# ||ingame.ad^$third-party (easylist.txt: 26060) -.ingame.ad -# ||infra-ad.com^$third-party (easylist.txt: 26059) -.infra-ad.com -# ||information-sale.com^$third-party (easylist.txt: 26058) -.information-sale.com -# ||infolinks.com^$third-party (easylist.txt: 26057) -.infolinks.com -# ||info4.a7.org^$third-party (easylist.txt: 26056) -.info4.a7.org -# ||influads.com^$third-party (easylist.txt: 26055) -.influads.com -# ||infinityads.com^$third-party (easylist.txt: 26054) -.infinityads.com -# ||infinite-ads.com^$third-party (easylist.txt: 26053) -.infinite-ads.com -# ||infectiousmedia.com^$third-party (easylist.txt: 26052) -.infectiousmedia.com -# ||inetinteractive.com^$third-party (easylist.txt: 26051) -.inetinteractive.com -# ||inentasky.com^$third-party (easylist.txt: 26050) -.inentasky.com -# ||industrybrains.com^$third-party (easylist.txt: 26049) -.industrybrains.com -# ||indofad.com^$third-party (easylist.txt: 26048) -.indofad.com -# ||indieclick.com^$third-party (easylist.txt: 26047) -.indieclick.com -# ||indicate.to^$third-party (easylist.txt: 26046) -.indicate.to -# ||indianlinkexchange.com^$third-party (easylist.txt: 26045) -.indianlinkexchange.com -# ||indianbannerexchange.com^$third-party (easylist.txt: 26044) -.indianbannerexchange.com -# ||indiads.com^$third-party (easylist.txt: 26043) -.indiads.com -# ||indiabanner.com^$third-party (easylist.txt: 26042) -.indiabanner.com -# ||indexww.com^$third-party (easylist.txt: 26041) -.indexww.com -# ||increase-marketing.com^$third-party (easylist.txt: 26040) -.increase-marketing.com -# ||incomeliberation.com^$third-party (easylist.txt: 26039) -.incomeliberation.com -# ||incentaclick.com^$third-party (easylist.txt: 26038) -.incentaclick.com -# ||in-appadvertising.com^$third-party (easylist.txt: 26037) -.in-appadvertising.com -# ||impressionvalue.mobi^$third-party (easylist.txt: 26036) -.impressionvalue.mobi -# ||impressionperformance.biz^$third-party (easylist.txt: 26035) -.impressionperformance.biz -# ||impressiondesk.com^$third-party (easylist.txt: 26034) -.impressiondesk.com -# ||impressioncontent.info^$third-party (easylist.txt: 26033) -.impressioncontent.info -# ||impressionaffiliate.mobi^$third-party (easylist.txt: 26032) -.impressionaffiliate.mobi -# ||impressionaffiliate.com^$third-party (easylist.txt: 26031) -.impressionaffiliate.com -# ||impresionesweb.com^$third-party (easylist.txt: 26030) -.impresionesweb.com -# ||implix.com^$third-party (easylist.txt: 26029) -.implix.com -# ||impactradius.com^$third-party (easylist.txt: 26028) -.impactradius.com -# ||impact-ad.jp^$third-party (easylist.txt: 26027) -.impact-ad.jp -# ||imp*.tradedoubler.com^$third-party (easylist.txt: 26026) -.imp*./.*\.tradedoubler\.com[^\w%.-] -.imp*.tradedoubler.com -# ||imonomy.com^$third-party (easylist.txt: 26025) -.imonomy.com -# ||imiclk.com^$third-party (easylist.txt: 26024) -.imiclk.com -# ||imho.ru^$third-party (easylist.txt: 26023) -.imho.ru -# ||imgwebfeed.com^$third-party (easylist.txt: 26022) -.imgwebfeed.com -# ||imgsniper.com^$third-party (easylist.txt: 26021) -.imgsniper.com -# ||imglt.com^$third-party (easylist.txt: 26020) -.imglt.com -# ||imgfeedget.com^$third-party (easylist.txt: 26019) -.imgfeedget.com -# ||img-giganto.net^$third-party (easylist.txt: 26018) -.img-giganto.net -# ||imediarevenue.com^$third-party (easylist.txt: 26017) -.imediarevenue.com -# ||imediaaudiences.com^$third-party (easylist.txt: 26016) -.imediaaudiences.com -# ||imedia.co.il^$third-party (easylist.txt: 26015) -.imedia.co.il -# ||imasdk.googleapis.com^$third-party (easylist.txt: 26014) -.imasdk.googleapis.com -# ||imageadnet.com^$third-party (easylist.txt: 26013) -.imageadnet.com -# ||ikzikistheking.com^$third-party (easylist.txt: 26012) -.ikzikistheking.com -# ||ignitioninstaller.com^$third-party (easylist.txt: 26011) -.ignitioninstaller.com -# ||igloohq.com^$third-party (easylist.txt: 26010) -.igloohq.com -# ||igameunion.com^$third-party (easylist.txt: 26009) -.igameunion.com -# ||iframe.mediaplazza.com^$third-party (easylist.txt: 26008) -.iframe.mediaplazza.com -# ||idownloadgalore.com^$third-party (easylist.txt: 26007) -.idownloadgalore.com -# ||identads.com^$third-party (easylist.txt: 26006) -.identads.com -# ||idealmedia.com^$third-party (easylist.txt: 26005) -.idealmedia.com -# ||icqadvnew.com^$third-party (easylist.txt: 26004) -.icqadvnew.com -# ||icdirect.com^$third-party (easylist.txt: 26003) -.icdirect.com -# ||ibryte.com^$third-party (easylist.txt: 26002) -.ibryte.com -# ||ibatom.com^$third-party (easylist.txt: 26001) -.ibatom.com -# ||ibannerexchange.com^$third-party (easylist.txt: 26000) -.ibannerexchange.com -# ||iasrv.com^$third-party (easylist.txt: 25999) -.iasrv.com -# ||iasbetaffiliates.com^$third-party (easylist.txt: 25998) -.iasbetaffiliates.com -# ||iamediaserve.com^$third-party (easylist.txt: 25997) -.iamediaserve.com -# ||i.skimresources.com^$third-party (easylist.txt: 25996) -.i.skimresources.com -# ||i-media.co.nz^$third-party (easylist.txt: 25995) -.i-media.co.nz -# ||hyperwebads.com^$third-party (easylist.txt: 25994) -.hyperwebads.com -# ||hypervre.com^$third-party (easylist.txt: 25993) -.hypervre.com -# ||hypertrackeraff.com^$third-party (easylist.txt: 25992) -.hypertrackeraff.com -# ||hyperlinksecure.com^$third-party (easylist.txt: 25991) -.hyperlinksecure.com -# ||hypemakers.net^$third-party (easylist.txt: 25990) -.hypemakers.net -# ||hypeads.org^$third-party (easylist.txt: 25989) -.hypeads.org -# ||hype-ads.com^$third-party (easylist.txt: 25988) -.hype-ads.com -# ||huzonico.com^$third-party (easylist.txt: 25987) -.huzonico.com -# ||httpsecurity.org^$third-party (easylist.txt: 25986) -.httpsecurity.org -# ||httpool.com^$third-party (easylist.txt: 25985) -.httpool.com -# ||htmlhubing.xyz^$third-party (easylist.txt: 25984) -.htmlhubing.xyz -# ||hstpnetwork.com^$third-party (easylist.txt: 25983) -.hstpnetwork.com -# ||hsslx.com^$third-party (easylist.txt: 25982) -.hsslx.com -# ||hplose.de^$third-party (easylist.txt: 25981) -.hplose.de -# ||hover.in^$third-party (easylist.txt: 25980) -.hover.in -# ||hotwords.com^$third-party (easylist.txt: 25979) -.hotwords.com -# ||hotwords.com.mx^$third-party (easylist.txt: 25978) -.hotwords.com.mx -# ||hotwords.com.br^$third-party (easylist.txt: 25977) -.hotwords.com.br -# ||hotptp.com^$third-party (easylist.txt: 25976) -.hotptp.com -# ||hotkeys.com^$third-party (easylist.txt: 25975) -.hotkeys.com -# ||hotfeed.net^$third-party (easylist.txt: 25974) -.hotfeed.net -# ||hotelscombined.com^$third-party (easylist.txt: 25973) -.hotelscombined.com -# ||hotelscombined.com.au^$third-party (easylist.txt: 25972) -.hotelscombined.com.au -# ||hot-hits.us^$third-party (easylist.txt: 25971) -.hot-hits.us -# ||hosticanaffiliate.com^$third-party (easylist.txt: 25970) -.hosticanaffiliate.com -# ||horyzon-media.com^$third-party (easylist.txt: 25969) -.horyzon-media.com -# ||horsered.com^$third-party (easylist.txt: 25968) -.horsered.com -# ||horse-racing-affiliate-program.co.uk^$third-party (easylist.txt: 25967) -.horse-racing-affiliate-program.co.uk -# ||hopfeed.com^$third-party (easylist.txt: 25966) -.hopfeed.com -# ||hoomezip.biz^$third-party (easylist.txt: 25965) -.hoomezip.biz -# ||holidaytravelguide.org^$third-party (easylist.txt: 25964) -.holidaytravelguide.org -# ||holdingprice.net^$third-party (easylist.txt: 25963) -.holdingprice.net -# ||hokaybo.com^$third-party (easylist.txt: 25962) -.hokaybo.com -# ||hlads.com^$third-party (easylist.txt: 25961) -.hlads.com -# ||hitwastedgarden.com^$third-party (easylist.txt: 25960) -.hitwastedgarden.com -# ||hits.sys.lv^$third-party (easylist.txt: 25959) -.hits.sys.lv -# ||hit-now.com^$third-party (easylist.txt: 25958) -.hit-now.com -# ||histians.com^$third-party (easylist.txt: 25957) -.histians.com -# ||hiplair.com^$third-party (easylist.txt: 25956) -.hiplair.com -# ||himediadx.com^$third-party (easylist.txt: 25955) -.himediadx.com -# ||himediads.com^$third-party (easylist.txt: 25954) -.himediads.com -# ||hilltopads.net^$third-party (easylist.txt: 25953) -.hilltopads.net -# ||hijacksystem.com^$third-party (easylist.txt: 25952) -.hijacksystem.com -# ||hiadone.com^$third-party (easylist.txt: 25951) -.hiadone.com -# ||hgdat.com^$third-party (easylist.txt: 25950) -.hgdat.com -# ||hexagram.com^$third-party (easylist.txt: 25949) -.hexagram.com -# ||helloreverb.com^$third-party (easylist.txt: 25948) -.helloreverb.com -# ||hebiichigo.com^$third-party (easylist.txt: 25947) -.hebiichigo.com -# ||healthcarestars.com^$third-party (easylist.txt: 25946) -.healthcarestars.com -# ||healthaffiliatesnetwork.com^$third-party (easylist.txt: 25945) -.healthaffiliatesnetwork.com -# ||headup.com^$third-party (easylist.txt: 25944) -.headup.com -# ||hdvidcodecs.com^$third-party (easylist.txt: 25943) -.hdvidcodecs.com -# ||hdvid-codecs-dl.net^$third-party (easylist.txt: 25942) -.hdvid-codecs-dl.net -# ||hdplayer-download.com^$third-party (easylist.txt: 25941) -.hdplayer-download.com -# ||hd-plugin.com^$third-party (easylist.txt: 25940) -.hd-plugin.com -# ||hb-247.com^$third-party (easylist.txt: 25939) -.hb-247.com -# ||havetohave.com^$third-party (easylist.txt: 25938) -.havetohave.com -# ||havamedia.net^$third-party (easylist.txt: 25937) -.havamedia.net -# ||harrenmedianetwork.com^$third-party (easylist.txt: 25936) -.harrenmedianetwork.com -# ||happilyswitching.net^$third-party (easylist.txt: 25935) -.happilyswitching.net -# ||hanaprop.com^$third-party (easylist.txt: 25934) -.hanaprop.com -# ||halogennetwork.com^$third-party (easylist.txt: 25933) -.halogennetwork.com -# ||halfpriceozarks.com^$third-party (easylist.txt: 25932) -.halfpriceozarks.com -# ||h12-media.com^$third-party (easylist.txt: 25931) -.h12-media.com -# ||h-images.net^$third-party (easylist.txt: 25930) -.h-images.net -# ||gx101.com^$third-party (easylist.txt: 25929) -.gx101.com -# ||gwallet.com^$third-party (easylist.txt: 25928) -.gwallet.com -# ||gururevenue.com^$third-party (easylist.txt: 25927) -.gururevenue.com -# ||gunpartners.com^$third-party (easylist.txt: 25926) -.gunpartners.com -# ||gumgum.com^$third-party (easylist.txt: 25925) -.gumgum.com -# ||guitaralliance.com^$third-party (easylist.txt: 25924) -.guitaralliance.com -# ||guardiandigitalcomparison.co.uk^$third-party (easylist.txt: 25923) -.guardiandigitalcomparison.co.uk -# ||gscsystemwithdarren.com^$third-party (easylist.txt: 25922) -.gscsystemwithdarren.com -# ||gscontxt.net^$third-party (easylist.txt: 25921) -.gscontxt.net -# ||grt03.com^$third-party (easylist.txt: 25920) -.grt03.com -# ||grt02.com^$third-party (easylist.txt: 25919) -.grt02.com -# ||groupcommerce.com^$third-party (easylist.txt: 25918) -.groupcommerce.com -# ||groovinads.com^$third-party (easylist.txt: 25917) -.groovinads.com -# ||grllopa.com^$third-party (easylist.txt: 25916) -.grllopa.com -# ||gripdownload.co^$third-party (easylist.txt: 25915) -.gripdownload.co -# ||gretzalz.com^$third-party (easylist.txt: 25914) -.gretzalz.com -# ||grenstia.com^$third-party (easylist.txt: 25913) -.grenstia.com -# ||greenlabelppc.com^$third-party (easylist.txt: 25912) -.greenlabelppc.com -# ||greenads.org^$third-party (easylist.txt: 25911) -.greenads.org -# ||gratisnetwork.com^$third-party (easylist.txt: 25910) -.gratisnetwork.com -# ||grapeshot.co.uk^$third-party (easylist.txt: 25909) -.grapeshot.co.uk -# ||grafpedia.com^$third-party (easylist.txt: 25908) -.grafpedia.com -# ||grabo.bg^$third-party (easylist.txt: 25907) -.grabo.bg -# ||grabmyads.com^$third-party (easylist.txt: 25906) -.grabmyads.com -# ||gpacalculatorhighschoolfree.com^$third-party (easylist.txt: 25905) -.gpacalculatorhighschoolfree.com -# ||goviral.hs.llnwd.net^$third-party (easylist.txt: 25904) -.goviral.hs.llnwd.net -# ||goviral-content.com^$third-party (easylist.txt: 25903) -.goviral-content.com -# ||governmenttrainingexchange.com^$third-party (easylist.txt: 25902) -.governmenttrainingexchange.com -# ||gourmetads.com^$third-party (easylist.txt: 25901) -.gourmetads.com -# ||gorgonkil.com^$third-party (easylist.txt: 25900) -.gorgonkil.com -# ||gopjn.com^$third-party (easylist.txt: 25899) -.gopjn.com -# ||googletagservices.com/tag/static/$third-party (easylist.txt: 25898) -.googletagservices.com/tag/static/ -# ||googletagservices.com/tag/js/gpt_$third-party (easylist.txt: 25897) -.googletagservices.com/tag/js/gpt_ -# ||googlesyndicatiion.com^$third-party (easylist.txt: 25896) -.googlesyndicatiion.com -# ||googleadservicepixel.com^$third-party (easylist.txt: 25895) -.googleadservicepixel.com -# ||goodadvertising.info^$third-party (easylist.txt: 25894) -.goodadvertising.info -# ||goodadvert.ru^$third-party (easylist.txt: 25893) -.goodadvert.ru -# ||gojoingscnow.com^$third-party (easylist.txt: 25892) -.gojoingscnow.com -# ||gogoplexer.com^$third-party (easylist.txt: 25891) -.gogoplexer.com -# ||goember.com^$third-party (easylist.txt: 25890) -.goember.com -# ||godspeaks.net^$third-party (easylist.txt: 25889) -.godspeaks.net -# ||goclickon.us^$third-party (easylist.txt: 25888) -.goclickon.us -# ||go2speed.org^$third-party (easylist.txt: 25887) -.go2speed.org -# ||go2media.org^$third-party (easylist.txt: 25886) -.go2media.org -# ||go2jump.org^$third-party (easylist.txt: 25885) -.go2jump.org -# ||gmads.net^$third-party (easylist.txt: 25884) -.gmads.net -# ||glowdot.com^$third-party (easylist.txt: 25883) -.glowdot.com -# ||globaltakeoff.net^$third-party (easylist.txt: 25882) -.globaltakeoff.net -# ||globalsuccessclub.com^$third-party (easylist.txt: 25881) -.globalsuccessclub.com -# ||globalinteractive.com^$third-party (easylist.txt: 25880) -.globalinteractive.com -# ||globaladv.net^$third-party (easylist.txt: 25879) -.globaladv.net -# ||globaladsales.com^$third-party (easylist.txt: 25878) -.globaladsales.com -# ||global-success-club.net^$third-party (easylist.txt: 25877) -.global-success-club.net -# ||glical.com^$third-party (easylist.txt: 25876) -.glical.com -# ||gklmedia.com^$third-party (easylist.txt: 25875) -.gklmedia.com -# ||gimiclub.com^$third-party (easylist.txt: 25874) -.gimiclub.com -# ||gigamega.su^$third-party (easylist.txt: 25873) -.gigamega.su -# ||giantaffiliates.com^$third-party (easylist.txt: 25872) -.giantaffiliates.com -# ||ggncpm.com^$third-party (easylist.txt: 25871) -.ggncpm.com -# ||gettipsz.info^$third-party (easylist.txt: 25870) -.gettipsz.info -# ||getthislistbuildingvideo.biz^$third-party (easylist.txt: 25869) -.getthislistbuildingvideo.biz -# ||getscorecash.com^$third-party (easylist.txt: 25868) -.getscorecash.com -# ||getgscfree.com^$third-party (easylist.txt: 25867) -.getgscfree.com -# ||getgamers.eu^$third-party (easylist.txt: 25866) -.getgamers.eu -# ||gestionpub.com^$third-party (easylist.txt: 25865) -.gestionpub.com -# ||geovisite.com^$third-party (easylist.txt: 25864) -.geovisite.com -# ||geopromos.com^$third-party (easylist.txt: 25863) -.geopromos.com -# ||geoipads.com^$third-party (easylist.txt: 25862) -.geoipads.com -# ||geo-idm.fr^$third-party (easylist.txt: 25861) -.geo-idm.fr -# ||genovesetacet.com^$third-party (easylist.txt: 25860) -.genovesetacet.com -# ||genieessp.com^$third-party (easylist.txt: 25859) -.genieessp.com -# ||geniad.net^$third-party (easylist.txt: 25858) -.geniad.net -# ||genesismedia.com^$third-party (easylist.txt: 25857) -.genesismedia.com -# ||genericsteps.com^$third-party (easylist.txt: 25856) -.genericsteps.com -# ||genericlink.com^$third-party (easylist.txt: 25855) -.genericlink.com -# ||gemineering.com^$third-party (easylist.txt: 25854) -.gemineering.com -# ||geld-internet-verdienen.net^$third-party (easylist.txt: 25853) -.geld-internet-verdienen.net -# ||gefhasio.com^$third-party (easylist.txt: 25852) -.gefhasio.com -# ||geek2us.net^$third-party (easylist.txt: 25851) -.geek2us.net -# ||geede.info^$third-party (easylist.txt: 25850) -.geede.info -# ||gdmdigital.com^$third-party (easylist.txt: 25849) -.gdmdigital.com -# ||gayadnetwork.com^$third-party (easylist.txt: 25848) -.gayadnetwork.com -# ||gatikus.com^$third-party (easylist.txt: 25847) -.gatikus.com -# ||gate-ru.com^$third-party (easylist.txt: 25846) -.gate-ru.com -# ||garvmedia.com^$third-party (easylist.txt: 25845) -.garvmedia.com -# ||garristo.com^$third-party (easylist.txt: 25844) -.garristo.com -# ||gannett.gcion.com^$third-party (easylist.txt: 25843) -.gannett.gcion.com -# ||gandrad.org^$third-party (easylist.txt: 25842) -.gandrad.org -# ||gan.doubleclick.net^$third-party (easylist.txt: 25841) -.gan.doubleclick.net -# ||gamesrevenue.com^$third-party (easylist.txt: 25840) -.gamesrevenue.com -# ||gamesbannerexchange.com^$third-party (easylist.txt: 25839) -.gamesbannerexchange.com -# ||gamersbanner.com^$third-party (easylist.txt: 25838) -.gamersbanner.com -# ||gamersad.com^$third-party (easylist.txt: 25837) -.gamersad.com -# ||gamehotus.com^$third-party (easylist.txt: 25836) -.gamehotus.com -# ||gamecetera.com^$third-party (easylist.txt: 25835) -.gamecetera.com -# ||gameads.com^$third-party (easylist.txt: 25834) -.gameads.com -# ||game-clicks.com^$third-party (easylist.txt: 25833) -.game-clicks.com -# ||game-advertising-online.com^$third-party (easylist.txt: 25832) -.game-advertising-online.com -# ||gambling-affiliation.com^$third-party (easylist.txt: 25831) -.gambling-affiliation.com -# ||galleyn.com^$third-party (easylist.txt: 25830) -.galleyn.com -# ||gainmoneyfast.com^$third-party (easylist.txt: 25829) -.gainmoneyfast.com -# ||gagenez.com^$third-party (easylist.txt: 25828) -.gagenez.com -# ||gagacon.com^$third-party (easylist.txt: 25827) -.gagacon.com -# ||g4whisperermedia.com^$third-party (easylist.txt: 25826) -.g4whisperermedia.com -# ||g-cash.biz^$third-party (easylist.txt: 25825) -.g-cash.biz -# ||fxyc0dwa.com^$third-party (easylist.txt: 25824) -.fxyc0dwa.com -# ||fxdepo.com^$third-party (easylist.txt: 25823) -.fxdepo.com -# ||fwmrm.net^$~object-subrequest,third-party (easylist.txt: 25822) -.fwmrm.net -# ||futureus.com^$third-party (easylist.txt: 25821) -.futureus.com -# ||futureresiduals.com^$third-party (easylist.txt: 25820) -.futureresiduals.com -# ||fusionads.net^$third-party (easylist.txt: 25819) -.fusionads.net -# ||funklicks.com^$third-party (easylist.txt: 25818) -.funklicks.com -# ||fulltraffic.net^$third-party (easylist.txt: 25817) -.fulltraffic.net -# ||ftv-publicite.fr^$third-party (easylist.txt: 25816) -.ftv-publicite.fr -# ||ftjcfx.com^$third-party (easylist.txt: 25815) -.ftjcfx.com -# ||fruitkings.com^$third-party (easylist.txt: 25814) -.fruitkings.com -# ||fromfriendswithlove.com^$third-party (easylist.txt: 25813) -.fromfriendswithlove.com -# ||friendlyduck.com^$third-party (easylist.txt: 25812) -.friendlyduck.com -# ||fresh8.co^$third-party (easylist.txt: 25811) -.fresh8.co -# ||freesoftwarelive.com^$third-party (easylist.txt: 25810) -.freesoftwarelive.com -# ||freeskreen.com^$third-party (easylist.txt: 25809) -.freeskreen.com -# ||freerotator.com^$third-party (easylist.txt: 25808) -.freerotator.com -# ||freepaidsurveyz.com^$third-party (easylist.txt: 25807) -.freepaidsurveyz.com -# ||freedownloadsoft.net^$third-party (easylist.txt: 25806) -.freedownloadsoft.net -# ||freecouponbiz.com^$third-party (easylist.txt: 25805) -.freecouponbiz.com -# ||freebiesurveys.com^$third-party (easylist.txt: 25804) -.freebiesurveys.com -# ||freebannerswap.co.uk^$third-party (easylist.txt: 25803) -.freebannerswap.co.uk -# ||frameptp.com^$third-party (easylist.txt: 25802) -.frameptp.com -# ||forrestersurveys.com^$third-party (easylist.txt: 25801) -.forrestersurveys.com -# ||forpyke.com^$third-party (easylist.txt: 25800) -.forpyke.com -# ||forifiha.com^$third-party (easylist.txt: 25799) -.forifiha.com -# ||forexyard.com^$third-party (easylist.txt: 25798) -.forexyard.com -# ||forex-affiliate.net^$third-party (easylist.txt: 25797) -.forex-affiliate.net -# ||forex-affiliate.com^$third-party (easylist.txt: 25796) -.forex-affiliate.com -# ||forcepprofile.com^$third-party (easylist.txt: 25795) -.forcepprofile.com -# ||forced-lose.de^$third-party (easylist.txt: 25794) -.forced-lose.de -# ||footnote.com^$third-party (easylist.txt: 25793) -.footnote.com -# ||footerslideupad.com^$third-party (easylist.txt: 25792) -.footerslideupad.com -# ||footar.com^$third-party (easylist.txt: 25791) -.footar.com -# ||foonad.com^$third-party (easylist.txt: 25790) -.foonad.com -# ||foodieblogroll.com^$third-party (easylist.txt: 25789) -.foodieblogroll.com -# ||focre.info^$third-party (easylist.txt: 25788) -.focre.info -# ||focalex.com^$third-party (easylist.txt: 25787) -.focalex.com -# ||fmsads.com^$third-party (easylist.txt: 25786) -.fmsads.com -# ||fmpub.net^$third-party (easylist.txt: 25785) -.fmpub.net -# ||flymyads.com^$third-party (easylist.txt: 25784) -.flymyads.com -# ||flyertown.ca^$third-party (easylist.txt: 25783) -.flyertown.ca -# ||fluxads.com^$third-party (easylist.txt: 25782) -.fluxads.com -# ||fluidads.co^$third-party (easylist.txt: 25781) -.fluidads.co -# ||flomigo.com^$third-party (easylist.txt: 25780) -.flomigo.com -# ||flodonas.com^$third-party (easylist.txt: 25779) -.flodonas.com -# ||fllwert.net^$third-party (easylist.txt: 25778) -.fllwert.net -# ||flite.com^$third-party (easylist.txt: 25777) -.flite.com -# ||fliionos.co.uk^$third-party (easylist.txt: 25776) -.fliionos.co.uk -# ||flexlinks.com^$third-party (easylist.txt: 25775) -.flexlinks.com -# ||flashtalking.com^$third-party (easylist.txt: 25774) -.flashtalking.com -# ||flashclicks.com^$third-party (easylist.txt: 25773) -.flashclicks.com -# ||flappysquid.net^$third-party (easylist.txt: 25772) -.flappysquid.net -# ||flappyhamster.net^$third-party (easylist.txt: 25771) -.flappyhamster.net -# ||flappybadger.net^$third-party (easylist.txt: 25770) -.flappybadger.net -# ||flagads.net^$third-party (easylist.txt: 25769) -.flagads.net -# ||fl-ads.com^$third-party (easylist.txt: 25768) -.fl-ads.com -# ||fixionmedia.com^$third-party (easylist.txt: 25767) -.fixionmedia.com -# ||fisari.com^$third-party (easylist.txt: 25766) -.fisari.com -# ||firstlightera.com^$third-party (easylist.txt: 25765) -.firstlightera.com -# ||firstimpression.io^$third-party (easylist.txt: 25764) -.firstimpression.io -# ||firstadsolution.com^$third-party (easylist.txt: 25763) -.firstadsolution.com -# ||first-rate.com^$third-party (easylist.txt: 25762) -.first-rate.com -# ||firmharborlinked.com^$third-party (easylist.txt: 25761) -.firmharborlinked.com -# ||firegob.com^$third-party (easylist.txt: 25760) -.firegob.com -# ||firefeeder.com^$third-party (easylist.txt: 25759) -.firefeeder.com -# ||firaxtech.com^$third-party (easylist.txt: 25758) -.firaxtech.com -# ||findsthat.com^$third-party (easylist.txt: 25757) -.findsthat.com -# ||findbestsolution.net^$third-party (easylist.txt: 25756) -.findbestsolution.net -# ||find-cheap-hotels.org^$third-party (easylist.txt: 25755) -.find-cheap-hotels.org -# ||find-abc.com^$third-party (easylist.txt: 25754) -.find-abc.com -# ||finalanypar.link^$third-party (easylist.txt: 25753) -.finalanypar.link -# ||fimserve.com^$third-party (easylist.txt: 25752) -.fimserve.com -# ||filtermomosearch.com^$third-party (easylist.txt: 25751) -.filtermomosearch.com -# ||filetarget.com^$third-party (easylist.txt: 25750) -.filetarget.com -# ||fidel.to^$third-party (easylist.txt: 25749) -.fidel.to -# ||fenixm.com^$third-party (easylist.txt: 25748) -.fenixm.com -# ||feljack.com^$third-party (easylist.txt: 25747) -.feljack.com -# ||feed-ads.com^$third-party (easylist.txt: 25746) -.feed-ads.com -# ||featurelink.com^$third-party (easylist.txt: 25745) -.featurelink.com -# ||featuredusers.com^$third-party (easylist.txt: 25744) -.featuredusers.com -# ||fbsvu.com^$third-party (easylist.txt: 25743) -.fbsvu.com -# ||fbgdc.com^$third-party (easylist.txt: 25742) -.fbgdc.com -# ||fb-plus.com^$third-party (easylist.txt: 25741) -.fb-plus.com -# ||fasttracktech.biz^$third-party (easylist.txt: 25740) -.fasttracktech.biz -# ||fastclick.net^$third-party (easylist.txt: 25739) -.fastclick.net -# ||fastates.net^$third-party (easylist.txt: 25738) -.fastates.net -# ||fastapi.net^$third-party (easylist.txt: 25737) -.fastapi.net -# ||fast2earn.com^$third-party (easylist.txt: 25736) -.fast2earn.com -# ||falkag.net^$third-party (easylist.txt: 25735) -.falkag.net -# ||fairadsnetwork.com^$third-party (easylist.txt: 25734) -.fairadsnetwork.com -# ||faggrim.com^$third-party (easylist.txt: 25733) -.faggrim.com -# ||ezoic.net^$third-party (easylist.txt: 25732) -.ezoic.net -# ||ezmob.com^$third-party (easylist.txt: 25731) -.ezmob.com -# ||ezadserver.net^$third-party (easylist.txt: 25730) -.ezadserver.net -# ||eyewonder.com^$third-party (easylist.txt: 25729) -.eyewonder.com -# ||eyewond.hs.llnwd.net^$third-party (easylist.txt: 25728) -.eyewond.hs.llnwd.net -# ||eyeviewads.com^$third-party (easylist.txt: 25727) -.eyeviewads.com -# ||eyereturn.com^$third-party (easylist.txt: 25726) -.eyereturn.com -# ||eyere.com^$third-party (easylist.txt: 25725) -.eyere.com -# ||extra33.com^$third-party (easylist.txt: 25724) -.extra33.com -# ||expresswebtraffic.com^$third-party (easylist.txt: 25723) -.expresswebtraffic.com -# ||exponential.com^$third-party (easylist.txt: 25722) -.exponential.com -# ||explainidentifycoding.info^$third-party (easylist.txt: 25721) -.explainidentifycoding.info -# ||exoneratedresignation.info^$third-party (easylist.txt: 25720) -.exoneratedresignation.info -# ||exoclick.com^$third-party (easylist.txt: 25719) -.exoclick.com -# ||exitjunction.com^$third-party (easylist.txt: 25718) -.exitjunction.com -# ||exitexplosion.com^$third-party (easylist.txt: 25717) -.exitexplosion.com -# ||exchange4media.com^$third-party (easylist.txt: 25716) -.exchange4media.com -# ||excellenceads.com^$third-party (easylist.txt: 25715) -.excellenceads.com -# ||exactdrive.com^$third-party (easylist.txt: 25714) -.exactdrive.com -# ||evolvenation.com^$third-party (easylist.txt: 25713) -.evolvenation.com -# ||evolvemediallc.com^$third-party (easylist.txt: 25712) -.evolvemediallc.com -# ||euz.net^$third-party (easylist.txt: 25711) -.euz.net -# ||euros4click.de^$third-party (easylist.txt: 25710) -.euros4click.de -# ||europacash.com^$third-party (easylist.txt: 25709) -.europacash.com -# ||euroclick.com^$third-party (easylist.txt: 25708) -.euroclick.com -# ||eurew.com^$third-party (easylist.txt: 25707) -.eurew.com -# ||etology.com^$third-party (easylist.txt: 25706) -.etology.com -# ||etmanly.ru^$third-party (easylist.txt: 25705) -.etmanly.ru -# ||etgdta.com^$third-party (easylist.txt: 25704) -.etgdta.com -# ||etargetnet.com^$third-party (easylist.txt: 25703) -.etargetnet.com -# ||essaycoupons.com^$third-party (easylist.txt: 25702) -.essaycoupons.com -# ||essayads.com^$third-party (easylist.txt: 25701) -.essayads.com -# ||especifican.com^$third-party (easylist.txt: 25700) -.especifican.com -# ||escokuro.com^$third-party (easylist.txt: 25699) -.escokuro.com -# ||escale.to^$third-party (easylist.txt: 25698) -.escale.to -# ||escalatenetwork.com^$third-party (easylist.txt: 25697) -.escalatenetwork.com -# ||erovinmo.com^$third-party (easylist.txt: 25696) -.erovinmo.com -# ||erovation.com^$third-party (easylist.txt: 25695) -.erovation.com -# ||ero-advertising.com^$third-party (easylist.txt: 25694) -.ero-advertising.com -# ||ergoledo.com^$third-party (easylist.txt: 25693) -.ergoledo.com -# ||ergodob.ru^$third-party (easylist.txt: 25692) -.ergodob.ru -# ||ergerww.net^$third-party (easylist.txt: 25691) -.ergerww.net -# ||erendri.com^$third-party (easylist.txt: 25690) -.erendri.com -# ||erado.org^$third-party (easylist.txt: 25689) -.erado.org -# ||eqads.com^$third-party (easylist.txt: 25688) -.eqads.com -# ||eptum.com^$third-party (easylist.txt: 25687) -.eptum.com -# ||eptord.com^$third-party (easylist.txt: 25686) -.eptord.com -# ||epnredirect.ru^$third-party (easylist.txt: 25685) -.epnredirect.ru -# ||epicgameads.com^$third-party (easylist.txt: 25684) -.epicgameads.com -# ||eosads.com^$third-party (easylist.txt: 25683) -.eosads.com -# ||entrecard.s3.amazonaws.com^$third-party (easylist.txt: 25682) -.entrecard.s3.amazonaws.com -# ||entrecard.com^$third-party (easylist.txt: 25681) -.entrecard.com -# ||enterads.com^$third-party (easylist.txt: 25680) -.enterads.com -# ||enlnks.com^$third-party (easylist.txt: 25679) -.enlnks.com -# ||engineseeker.com^$third-party (easylist.txt: 25678) -.engineseeker.com -# ||emptyspaceads.com^$third-party (easylist.txt: 25677) -.emptyspaceads.com -# ||employers-freshly.org^$third-party (easylist.txt: 25676) -.employers-freshly.org -# ||empiremoney.com^$third-party (easylist.txt: 25675) -.empiremoney.com -# ||emediate.se^$third-party (easylist.txt: 25674) -.emediate.se -# ||emediate.eu^$third-party (easylist.txt: 25673) -.emediate.eu -# ||emediate.dk^$third-party (easylist.txt: 25672) -.emediate.dk -# ||emediate.ch^$third-party (easylist.txt: 25671) -.emediate.ch -# ||emberads.com^$third-party (easylist.txt: 25670) -.emberads.com -# ||elvate.net^$third-party (easylist.txt: 25669) -.elvate.net -# ||elefantsearch.com^$third-party (easylist.txt: 25668) -.elefantsearch.com -# ||electnext.com^$third-party (easylist.txt: 25667) -.electnext.com -# ||elasticad.net^$third-party (easylist.txt: 25666) -.elasticad.net -# ||ektezis.ru^$third-party (easylist.txt: 25665) -.ektezis.ru -# ||ekmas.com^$third-party (easylist.txt: 25664) -.ekmas.com -# ||egamingonline.com^$third-party (easylist.txt: 25663) -.egamingonline.com -# ||effectivemeasure.net^$third-party (easylist.txt: 25662) -.effectivemeasure.net -# ||eedr.org^$third-party (easylist.txt: 25661) -.eedr.org -# ||edomz.net^$third-party (easylist.txt: 25660) -.edomz.net -# ||edgevertise.com^$third-party (easylist.txt: 25659) -.edgevertise.com -# ||edgeads.org^$third-party (easylist.txt: 25658) -.edgeads.org -# ||ecpmrocks.com^$third-party (easylist.txt: 25657) -.ecpmrocks.com -# ||ebz.io^$third-party (easylist.txt: 25656) -.ebz.io -# ||ebuzzing.com^$third-party (easylist.txt: 25655) -.ebuzzing.com -# ||eblastengine.com^$third-party (easylist.txt: 25654) -.eblastengine.com -# ||ebayobjects.com^$third-party (easylist.txt: 25653) -.ebayobjects.com -# ||ebayobjects.com.au^$third-party (easylist.txt: 25652) -.ebayobjects.com.au -# ||ebannertraffic.com^$third-party (easylist.txt: 25651) -.ebannertraffic.com -# ||easyinline.com^$third-party (easylist.txt: 25650) -.easyinline.com -# ||easyhits4u.com^$third-party (easylist.txt: 25649) -.easyhits4u.com -# ||easyflirt-partners.biz^$third-party (easylist.txt: 25648) -.easyflirt-partners.biz -# ||easydownload4you.com^$third-party (easylist.txt: 25647) -.easydownload4you.com -# ||easyad.com^$third-party (easylist.txt: 25646) -.easyad.com -# ||easy-adserver.com^$third-party (easylist.txt: 25645) -.easy-adserver.com -# ||earnify.com^$third-party (easylist.txt: 25644) -.earnify.com -# ||eads.to^$third-party (easylist.txt: 25643) -.eads.to -# ||eads-adserving.com^$third-party (easylist.txt: 25642) -.eads-adserving.com -# ||e9mlrvy1.com^$third-party (easylist.txt: 25641) -.e9mlrvy1.com -# ||e2yth.tv^$third-party (easylist.txt: 25640) -.e2yth.tv -# ||e-viral.com^$third-party (easylist.txt: 25639) -.e-viral.com -# ||e-planning.net^$third-party (easylist.txt: 25638) -.e-planning.net -# ||e-generator.com^$third-party (easylist.txt: 25637) -.e-generator.com -# ||e-find.co^$third-party (easylist.txt: 25636) -.e-find.co -# ||dynamitedata.com^$third-party (easylist.txt: 25635) -.dynamitedata.com -# ||dynamicoxygen.com^$third-party (easylist.txt: 25634) -.dynamicoxygen.com -# ||dyino.com^$third-party (easylist.txt: 25633) -.dyino.com -# ||dvaminusodin.net^$third-party (easylist.txt: 25632) -.dvaminusodin.net -# ||durtz.com^$third-party (easylist.txt: 25631) -.durtz.com -# ||durokuro.com^$third-party (easylist.txt: 25630) -.durokuro.com -# ||durnowar.com^$third-party (easylist.txt: 25629) -.durnowar.com -# ||dumedia.ru^$third-party (easylist.txt: 25628) -.dumedia.ru -# ||duggiads.com^$third-party (easylist.txt: 25627) -.duggiads.com -# ||duetads.com^$third-party (easylist.txt: 25626) -.duetads.com -# ||dudelsa.com^$third-party (easylist.txt: 25625) -.dudelsa.com -# ||dualmarket.info^$third-party (easylist.txt: 25624) -.dualmarket.info -# ||dtzads.com^$third-party (easylist.txt: 25623) -.dtzads.com -# ||dtmpub.com^$third-party (easylist.txt: 25622) -.dtmpub.com -# ||dsultra.com^$third-party (easylist.txt: 25619) -.dsultra.com -# ||dsnr-affiliates.com^$third-party (easylist.txt: 25618) -.dsnr-affiliates.com -# ||dsnextgen.com^$third-party (easylist.txt: 25617) -.dsnextgen.com -# ||dsero.net^$third-party (easylist.txt: 25616) -.dsero.net -# ||drowle.com^$third-party (easylist.txt: 25615) -.drowle.com -# ||dreamsearch.or.kr^$third-party (easylist.txt: 25614) -.dreamsearch.or.kr -# ||dreamaquarium.com^$third-party (easylist.txt: 25613) -.dreamaquarium.com -# ||dpstack.com^$third-party (easylist.txt: 25612) -.dpstack.com -# ||dpsrexor.com^$third-party (easylist.txt: 25611) -.dpsrexor.com -# ||dpmsrv.com^$third-party (easylist.txt: 25610) -.dpmsrv.com -# ||dpbolvw.net^$third-party (easylist.txt: 25609) -.dpbolvw.net -# ||dp25.kr^$third-party (easylist.txt: 25608) -.dp25.kr -# ||downsonglyrics.com^$third-party (easylist.txt: 25607) -.downsonglyrics.com -# ||downloadboutique.com^$third-party (easylist.txt: 25606) -.downloadboutique.com -# ||down1oads.com^$third-party (easylist.txt: 25605) -.down1oads.com -# ||doubleverify.com^$third-party (easylist.txt: 25604) -.doubleverify.com -# ||doublerecall.com^$third-party (easylist.txt: 25603) -.doublerecall.com -# ||doublerads.com^$third-party (easylist.txt: 25602) -.doublerads.com -# ||doublepimp.com^$third-party (easylist.txt: 25601) -.doublepimp.com -# ||doublemax.net^$third-party (easylist.txt: 25600) -.doublemax.net -# ||doubleclicks.me^$third-party (easylist.txt: 25599) -.doubleclicks.me -# ||doubleclickbygoogle.com^$third-party (easylist.txt: 25598) -.doubleclickbygoogle.com -# ||doubleclick.net^*;afv_flvurl=http://cdn.c.ooyala.com/$third-party (easylist.txt: 25597) -.doubleclick.net/.*;afv_flvurl=http://cdn\.c\.ooyala\.com/ -# ||doubleclick.net^*/pfadx/team.sd/$third-party (easylist.txt: 25596) -.doubleclick.net/.*/pfadx/team\.sd/ -# ||doubleclick.net^*/pfadx/team.dal/$third-party (easylist.txt: 25595) -.doubleclick.net/.*/pfadx/team\.dal/ -# ||doubleclick.net^*/pfadx/team.car/$third-party (easylist.txt: 25594) -.doubleclick.net/.*/pfadx/team\.car/ -# ||doubleclick.net^*/pfadx/ssp.wews/$third-party (easylist.txt: 25593) -.doubleclick.net/.*/pfadx/ssp\.wews/ -# ||doubleclick.net^*/pfadx/muzumain/$third-party (easylist.txt: 25592) -.doubleclick.net/.*/pfadx/muzumain/ -# ||doubleclick.net^*/pfadx/ibs.orl.news/$third-party (easylist.txt: 25591) -.doubleclick.net/.*/pfadx/ibs\.orl\.news/ -# ||doubleclick.net^*/pfadx/embed.ytpwatch.$third-party (easylist.txt: 25590) -.doubleclick.net/.*/pfadx/embed\.ytpwatch\. -# ||doubleclick.net^*/pfadx/com.ytpwatch.$third-party (easylist.txt: 25589) -.doubleclick.net/.*/pfadx/com\.ytpwatch\. -# ||doubleclick.net^*/pfadx/cmn_complextv/$third-party (easylist.txt: 25588) -.doubleclick.net/.*/pfadx/cmn_complextv/ -# ||doubleclick.net^*/pfadx/ccr.newyork.$third-party (easylist.txt: 25587) -.doubleclick.net/.*/pfadx/ccr\.newyork\. -# ||doubleclick.net^*/adj/$~object-subrequest,third-party (easylist.txt: 25586) -.doubleclick.net/.*/adj/ -# ||doubleclick.net^*/adi/$~object-subrequest,third-party (easylist.txt: 25585) -.doubleclick.net/.*/adi/ -# ||doubleclick.net^*/ad/$~object-subrequest,third-party (easylist.txt: 25584) -.doubleclick.net/.*/ad/ -# ||doubleclick.net/xbbe/creative/vast? (easylist.txt: 25582) -.doubleclick.net/xbbe/creative/vast\? -# ||doubleclick.net/pfadx/www.tv3.co.nz$third-party (easylist.txt: 25581) -.doubleclick.net/pfadx/www\.tv3\.co\.nz -# ||doubleclick.net/pfadx/video.wsj.com/$third-party (easylist.txt: 25580) -.doubleclick.net/pfadx/video\.wsj\.com/ -# ||doubleclick.net/pfadx/video.marketwatch.com/$third-party (easylist.txt: 25579) -.doubleclick.net/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/pfadx/ugo.gv.1up/$third-party (easylist.txt: 25578) -.doubleclick.net/pfadx/ugo\.gv\.1up/ -# ||doubleclick.net/pfadx/trb.$third-party (easylist.txt: 25577) -.doubleclick.net/pfadx/trb\. -# ||doubleclick.net/pfadx/tmz.video.wb.dart/$third-party (easylist.txt: 25576) -.doubleclick.net/pfadx/tmz\.video\.wb\.dart/ -# ||doubleclick.net/pfadx/tmg.telegraph.$third-party (easylist.txt: 25575) -.doubleclick.net/pfadx/tmg\.telegraph\. -# ||doubleclick.net/pfadx/sugar.poptv/$third-party (easylist.txt: 25574) -.doubleclick.net/pfadx/sugar\.poptv/ -# ||doubleclick.net/pfadx/storm.no/$third-party (easylist.txt: 25573) -.doubleclick.net/pfadx/storm\.no/ -# ||doubleclick.net/pfadx/ssp.kgtv/$third-party (easylist.txt: 25572) -.doubleclick.net/pfadx/ssp\.kgtv/ -# ||doubleclick.net/pfadx/ng.videoplayer/$third-party (easylist.txt: 25571) -.doubleclick.net/pfadx/ng\.videoplayer/ -# ||doubleclick.net/pfadx/nfl.$third-party (easylist.txt: 25570) -.doubleclick.net/pfadx/nfl\. -# ||doubleclick.net/pfadx/ndm.tcm/$third-party (easylist.txt: 25569) -.doubleclick.net/pfadx/ndm\.tcm/ -# ||doubleclick.net/pfadx/nbcu.nhl/$third-party (easylist.txt: 25568) -.doubleclick.net/pfadx/nbcu\.nhl/ -# ||doubleclick.net/pfadx/nbcu.nhl.$third-party (easylist.txt: 25567) -.doubleclick.net/pfadx/nbcu\.nhl\. -# ||doubleclick.net/pfadx/nbcu.nbc/$third-party (easylist.txt: 25566) -.doubleclick.net/pfadx/nbcu\.nbc/ -# ||doubleclick.net/pfadx/muzuoffsite/$third-party (easylist.txt: 25565) -.doubleclick.net/pfadx/muzuoffsite/ -# ||doubleclick.net/pfadx/muzumain/$third-party (easylist.txt: 25564) -.doubleclick.net/pfadx/muzumain/ -# ||doubleclick.net/pfadx/miniclip.prevideo/$third-party (easylist.txt: 25563) -.doubleclick.net/pfadx/miniclip\.prevideo/ -# ||doubleclick.net/pfadx/miniclip.midvideo/$third-party (easylist.txt: 25562) -.doubleclick.net/pfadx/miniclip\.midvideo/ -# ||doubleclick.net/pfadx/mc.channelnewsasia.com^$third-party (easylist.txt: 25561) -.doubleclick.net/pfadx/mc\.channelnewsasia\.com[^\w%.-] -# ||doubleclick.net/pfadx/ltv.wtvr.video/$third-party (easylist.txt: 25560) -.doubleclick.net/pfadx/ltv\.wtvr\.video/ -# ||doubleclick.net/pfadx/intl.sps.com/$third-party (easylist.txt: 25559) -.doubleclick.net/pfadx/intl\.sps\.com/ -# ||doubleclick.net/pfadx/gn.movieweb.com/$third-party (easylist.txt: 25558) -.doubleclick.net/pfadx/gn\.movieweb\.com/ -# ||doubleclick.net/pfadx/ddm.ksl/$third-party (easylist.txt: 25557) -.doubleclick.net/pfadx/ddm\.ksl/ -# ||doubleclick.net/pfadx/ctv.spacecast/$third-party (easylist.txt: 25556) -.doubleclick.net/pfadx/ctv\.spacecast/ -# ||doubleclick.net/pfadx/ctv.muchmusic.com/$third-party (easylist.txt: 25555) -.doubleclick.net/pfadx/ctv\.muchmusic\.com/ -# ||doubleclick.net/pfadx/ctv.ctvwatch.ca/$third-party (easylist.txt: 25554) -.doubleclick.net/pfadx/ctv\.ctvwatch\.ca/ -# ||doubleclick.net/pfadx/csn.$third-party (easylist.txt: 25553) -.doubleclick.net/pfadx/csn\. -# ||doubleclick.net/pfadx/comedycentral.$third-party (easylist.txt: 25552) -.doubleclick.net/pfadx/comedycentral\. -# ||doubleclick.net/pfadx/ccr.$third-party (easylist.txt: 25551) -.doubleclick.net/pfadx/ccr\. -# ||doubleclick.net/pfadx/CBS.$third-party (easylist.txt: 25550) -.doubleclick.net/pfadx/CBS\. -# ||doubleclick.net/pfadx/cblvsn.nwsd.videogallery/$third-party (easylist.txt: 25549) -.doubleclick.net/pfadx/cblvsn\.nwsd\.videogallery/ -# ||doubleclick.net/pfadx/bzj.bizjournals/$third-party (easylist.txt: 25548) -.doubleclick.net/pfadx/bzj\.bizjournals/ -# ||doubleclick.net/pfadx/blp.video/midroll$third-party (easylist.txt: 25547) -.doubleclick.net/pfadx/blp\.video/midroll -# ||doubleclick.net/pfadx/bet.com/$third-party (easylist.txt: 25546) -.doubleclick.net/pfadx/bet\.com/ -# ||doubleclick.net/pfadx/belo.king5.pre/$third-party (easylist.txt: 25545) -.doubleclick.net/pfadx/belo\.king5\.pre/ -# ||doubleclick.net/pfadx/aetn.aetv.shows/$third-party (easylist.txt: 25544) -.doubleclick.net/pfadx/aetn\.aetv\.shows/ -# ||doubleclick.net/pfadx/*CBSINTERACTIVE/$third-party (easylist.txt: 25543) -.doubleclick.net/pfadx/.*CBSINTERACTIVE/ -# ||doubleclick.net/pfadx/*adcat=$third-party (easylist.txt: 25542) -.doubleclick.net/pfadx/.*adcat= -# ||doubleclick.net/pfadx/*/kidstv/$third-party (easylist.txt: 25541) -.doubleclick.net/pfadx/.*/kidstv/ -# ||doubleclick.net/pfadx/*.WALTDISNEYINTERNETGROU/$third-party (easylist.txt: 25540) -.doubleclick.net/pfadx/.*\.WALTDISNEYINTERNETGROU/ -# ||doubleclick.net/pfadx/*.VIACOMINTERNATIONAL/$third-party (easylist.txt: 25539) -.doubleclick.net/pfadx/.*\.VIACOMINTERNATIONAL/ -# ||doubleclick.net/pfadx/*.sevenload.com_$third-party (easylist.txt: 25538) -.doubleclick.net/pfadx/.*\.sevenload\.com_ -# ||doubleclick.net/pfadx/*.reuters/$third-party (easylist.txt: 25537) -.doubleclick.net/pfadx/.*\.reuters/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL/$third-party (easylist.txt: 25536) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL-CNBC/$third-party (easylist.txt: 25535) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL-CNBC/ -# ||doubleclick.net/pfadx/*.NBCUNI.COM/$third-party (easylist.txt: 25534) -.doubleclick.net/pfadx/.*\.NBCUNI\.COM/ -# ||doubleclick.net/pfadx/*.nbc.com/$third-party (easylist.txt: 25533) -.doubleclick.net/pfadx/.*\.nbc\.com/ -# ||doubleclick.net/pfadx/*.muzu/$third-party (easylist.txt: 25532) -.doubleclick.net/pfadx/.*\.muzu/ -# ||doubleclick.net/pfadx/*.mtvi$third-party (easylist.txt: 25531) -.doubleclick.net/pfadx/.*\.mtvi -# ||doubleclick.net/pfadx/*.MTV-Viacom/$third-party (easylist.txt: 25530) -.doubleclick.net/pfadx/.*\.MTV-Viacom/ -# ||doubleclick.net/pfadx/*.MCNONLINE/$third-party (easylist.txt: 25529) -.doubleclick.net/pfadx/.*\.MCNONLINE/ -# ||doubleclick.net/pfadx/*.ESPN/$third-party (easylist.txt: 25528) -.doubleclick.net/pfadx/.*\.ESPN/ -# ||doubleclick.net/pfadx/*.BLIPTV/$third-party (easylist.txt: 25527) -.doubleclick.net/pfadx/.*\.BLIPTV/ -# ||doubleclick.net/pfadx/*.ABC.com/$third-party (easylist.txt: 25526) -.doubleclick.net/pfadx/.*\.ABC\.com/ -# ||doubleclick.net/N6872/pfadx/shaw.mylifetimetv.ca/$third-party (easylist.txt: 25525) -.doubleclick.net/N6872/pfadx/shaw\.mylifetimetv\.ca/ -# ||doubleclick.net/N6088/pfadx/ssp.kshb/$third-party (easylist.txt: 25524) -.doubleclick.net/N6088/pfadx/ssp\.kshb/ -# ||doubleclick.net/N5479/pfadx/ctv.$third-party (easylist.txt: 25523) -.doubleclick.net/N5479/pfadx/ctv\. -# ||doubleclick.net/N5202/pfadx/cmn_livemixtapes/$third-party (easylist.txt: 25522) -.doubleclick.net/N5202/pfadx/cmn_livemixtapes/ -# ||doubleclick.net/N4526/pfadx/*.muzu/$third-party (easylist.txt: 25521) -.doubleclick.net/N4526/pfadx/.*\.muzu/ -# ||doubleclick.net/N4117/pfadx/*.sbs.com.au/$third-party (easylist.txt: 25520) -.doubleclick.net/N4117/pfadx/.*\.sbs\.com\.au/ -# ||doubleclick.net/N3626/pfadx/thehothits.com.au/$third-party (easylist.txt: 25519) -.doubleclick.net/N3626/pfadx/thehothits\.com\.au/ -# ||doubleclick.net/N2/pfadx/video.wsj.com/$third-party (easylist.txt: 25518) -.doubleclick.net/N2/pfadx/video\.wsj\.com/ -# ||doubleclick.net/N2/pfadx/video.marketwatch.com/ (easylist.txt: 25517) -.doubleclick.net/N2/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/N2/pfadx/video.allthingsd.com/$third-party (easylist.txt: 25516) -.doubleclick.net/N2/pfadx/video\.allthingsd\.com/ -# ||doubleclick.net/N2/pfadx/video.*.wsj.com/$third-party (easylist.txt: 25515) -.doubleclick.net/N2/pfadx/video\..*\.wsj\.com/ -# ||doubleclick.net/adx/wn.nat.$third-party (easylist.txt: 25513) -.doubleclick.net/adx/wn\.nat\. -# ||doubleclick.net/adx/wn.loc.$third-party (easylist.txt: 25512) -.doubleclick.net/adx/wn\.loc\. -# ||doubleclick.net/adx/tsg.$third-party (easylist.txt: 25511) -.doubleclick.net/adx/tsg\. -# ||doubleclick.net/adx/ibs.$third-party (easylist.txt: 25510) -.doubleclick.net/adx/ibs\. -# ||doubleclick.net/adx/CBS.$third-party (easylist.txt: 25509) -.doubleclick.net/adx/CBS\. -# ||doubleclick.net/adx/*.ted/$third-party (easylist.txt: 25508) -.doubleclick.net/adx/.*\.ted/ -# ||doubleclick.net/adx/*.NPR/$third-party (easylist.txt: 25507) -.doubleclick.net/adx/.*\.NPR/ -# ||doubleclick.net/adx/*.NPR.MUSIC/$third-party (easylist.txt: 25506) -.doubleclick.net/adx/.*\.NPR\.MUSIC/ -# ||doubleclick.net/adx/*.collegehumor/$third-party (easylist.txt: 25505) -.doubleclick.net/adx/.*\.collegehumor/ -# ||doubleclick.net/adx/$~object-subrequest,third-party (easylist.txt: 25504) -.doubleclick.net/adx/ -# ||doubleclick.net/adj/*.collegehumor/sec=videos_originalcontent;$third-party (easylist.txt: 25503) -.doubleclick.net/adj/.*\.collegehumor/sec=videos_originalcontent; -# ||doubleclick.net/adj/$~object-subrequest,third-party (easylist.txt: 25502) -.doubleclick.net/adj/ -# ||doubleclick.net/adi/$~object-subrequest,third-party (easylist.txt: 25501) -.doubleclick.net/adi/ -# ||doubleclick.net/ad/$third-party (easylist.txt: 25500) -.doubleclick.net/ad/ -# ||doubleclick.net/*/pfadx/lin.$third-party (easylist.txt: 25499) -.doubleclick.net/.*/pfadx/lin\. -# ||doubleclick.net/*/ch_news.com/$third-party (easylist.txt: 25498) -.doubleclick.net/.*/ch_news\.com/ -# ||doubleclick.com^$third-party (easylist.txt: 25497) -.doubleclick.com -# ||double.net^$third-party (easylist.txt: 25496) -.double.net -# ||dotandad.com^$third-party (easylist.txt: 25495) -.dotandad.com -# ||dorenga.com^$third-party (easylist.txt: 25494) -.dorenga.com -# ||doomail.org^$third-party (easylist.txt: 25493) -.doomail.org -# ||doogleonduty.com^$third-party (easylist.txt: 25492) -.doogleonduty.com -# ||dooc.info^$third-party (easylist.txt: 25491) -.dooc.info -# ||domdex.com^$third-party (easylist.txt: 25490) -.domdex.com -# ||domainsponsor.com^$third-party (easylist.txt: 25489) -.domainsponsor.com -# ||domainbuyingservices.com^$third-party (easylist.txt: 25488) -.domainbuyingservices.com -# ||domainadvertising.com^$third-party (easylist.txt: 25487) -.domainadvertising.com -# ||dollarsponsor.com^$third-party (easylist.txt: 25486) -.dollarsponsor.com -# ||dollarade.com^$third-party (easylist.txt: 25485) -.dollarade.com -# ||document4u.info^$third-party (easylist.txt: 25484) -.document4u.info -# ||dntrck.com^$third-party (easylist.txt: 25483) -.dntrck.com -# ||dmu20vut.com^$third-party (easylist.txt: 25482) -.dmu20vut.com -# ||dl-rms.com^$third-party (easylist.txt: 25481) -.dl-rms.com -# ||dj-updates.com^$third-party (easylist.txt: 25480) -.dj-updates.com -# ||districtm.ca^$third-party (easylist.txt: 25479) -.districtm.ca -# ||distilled.ie^$third-party (easylist.txt: 25478) -.distilled.ie -# ||dispop.com^$third-party (easylist.txt: 25477) -.dispop.com -# ||directtrk.com^$third-party (easylist.txt: 25476) -.directtrk.com -# ||directtrack.com^$third-party (easylist.txt: 25475) -.directtrack.com -# ||directrev.com^$third-party (easylist.txt: 25474) -.directrev.com -# ||directorym.com^$third-party (easylist.txt: 25473) -.directorym.com -# ||directoral.info^$third-party (easylist.txt: 25472) -.directoral.info -# ||directleads.com^$third-party (easylist.txt: 25471) -.directleads.com -# ||directile.net^$third-party (easylist.txt: 25470) -.directile.net -# ||directile.info^$third-party (easylist.txt: 25469) -.directile.info -# ||directaclick.com^$third-party (easylist.txt: 25468) -.directaclick.com -# ||dipads.net^$~image,third-party (easylist.txt: 25467) -.dipads.net -# ||dinclinx.com^$third-party (easylist.txt: 25466) -.dinclinx.com -# ||digitrevenue.com^$third-party (easylist.txt: 25465) -.digitrevenue.com -# ||digipathmedia.com^$third-party (easylist.txt: 25464) -.digipathmedia.com -# ||dianomioffers.co.uk^$third-party (easylist.txt: 25463) -.dianomioffers.co.uk -# ||diamondtraff.com^$third-party (easylist.txt: 25462) -.diamondtraff.com -# ||dhundora.com^$third-party (easylist.txt: 25461) -.dhundora.com -# ||dgmaxinteractive.com^$third-party (easylist.txt: 25460) -.dgmaxinteractive.com -# ||dgmaustralia.com^$third-party (easylist.txt: 25459) -.dgmaustralia.com -# ||dgmatix.com^$third-party (easylist.txt: 25458) -.dgmatix.com -# ||dexplatform.com^$third-party (easylist.txt: 25457) -.dexplatform.com -# ||deximedia.com^$third-party (easylist.txt: 25456) -.deximedia.com -# ||developermedia.com^$third-party (easylist.txt: 25455) -.developermedia.com -# ||detroposal.com^$third-party (easylist.txt: 25454) -.detroposal.com -# ||destinationurl.com^$third-party (easylist.txt: 25453) -.destinationurl.com -# ||derlatas.com^$third-party (easylist.txt: 25452) -.derlatas.com -# ||deriversal.com^$third-party (easylist.txt: 25451) -.deriversal.com -# ||deployads.com^$third-party (easylist.txt: 25450) -.deployads.com -# ||deplayer.net^$third-party (easylist.txt: 25449) -.deplayer.net -# ||delnapb.com^$third-party (easylist.txt: 25448) -.delnapb.com -# ||delivery51.com^$third-party (easylist.txt: 25447) -.delivery51.com -# ||delivery49.com^$third-party (easylist.txt: 25446) -.delivery49.com -# ||delivery47.com^$third-party (easylist.txt: 25445) -.delivery47.com -# ||delivery45.com^$third-party (easylist.txt: 25444) -.delivery45.com -# ||dehtale.ru^$third-party (easylist.txt: 25443) -.dehtale.ru -# ||deguiste.com^$third-party (easylist.txt: 25442) -.deguiste.com -# ||defaultimg.com^$third-party (easylist.txt: 25441) -.defaultimg.com -# ||deepmetrix.com^$third-party (easylist.txt: 25440) -.deepmetrix.com -# ||dedicatednetworks.com^$third-party (easylist.txt: 25439) -.dedicatednetworks.com -# ||dedicatedmedia.com^$third-party (easylist.txt: 25438) -.dedicatedmedia.com -# ||decknetwork.net^$third-party (easylist.txt: 25437) -.decknetwork.net -# ||decisionnews.com^$third-party (easylist.txt: 25436) -.decisionnews.com -# ||decisionmark.com^$third-party (easylist.txt: 25435) -.decisionmark.com -# ||dealcurrent.com^$third-party (easylist.txt: 25434) -.dealcurrent.com -# ||dbclix.com^$third-party (easylist.txt: 25433) -.dbclix.com -# ||dbbsrv.com^$third-party (easylist.txt: 25432) -.dbbsrv.com -# ||dazhantai.com^$third-party (easylist.txt: 25431) -.dazhantai.com -# ||datumreact.com^$third-party (easylist.txt: 25430) -.datumreact.com -# ||datinggold.com^$third-party (easylist.txt: 25429) -.datinggold.com -# ||dating-banners.com^$third-party (easylist.txt: 25428) -.dating-banners.com -# ||data.adroll.com^$third-party (easylist.txt: 25427) -.data.adroll.com -# ||dashboardad.net^$third-party (easylist.txt: 25426) -.dashboardad.net -# ||dashbida.com^$third-party (easylist.txt: 25425) -.dashbida.com -# ||das5ku9q.com^$third-party (easylist.txt: 25424) -.das5ku9q.com -# ||darwarvid.com^$third-party (easylist.txt: 25423) -.darwarvid.com -# ||dapper.net^$third-party (easylist.txt: 25422) -.dapper.net -# ||danitabedtick.net^$third-party (easylist.txt: 25421) -.danitabedtick.net -# ||dadegid.ru^$third-party (easylist.txt: 25420) -.dadegid.ru -# ||da-ads.com^$third-party (easylist.txt: 25419) -.da-ads.com -# ||d2ship.com^$third-party (easylist.txt: 25418) -.d2ship.com -# ||d1110e4.se^$third-party (easylist.txt: 25417) -.d1110e4.se -# ||d03x2011.com^$third-party (easylist.txt: 25416) -.d03x2011.com -# ||d.m3.net^$third-party (easylist.txt: 25415) -.d.m3.net -# ||d.adroll.com^$third-party (easylist.txt: 25414) -.d.adroll.com -# ||czasnaherbate.info^$third-party (easylist.txt: 25413) -.czasnaherbate.info -# ||cygnus.com^$third-party (easylist.txt: 25412) -.cygnus.com -# ||cybmas.com^$third-party (easylist.txt: 25411) -.cybmas.com -# ||curtisfrierson.com^$third-party (easylist.txt: 25410) -.curtisfrierson.com -# ||currentlyobsessed.me^$third-party (easylist.txt: 25409) -.currentlyobsessed.me -# ||curancience.com^$third-party (easylist.txt: 25408) -.curancience.com -# ||cuelinks.com^$third-party (easylist.txt: 25407) -.cuelinks.com -# ||cubics.com^$third-party (easylist.txt: 25406) -.cubics.com -# ||ctrhub.com^$third-party (easylist.txt: 25405) -.ctrhub.com -# ||ctm-media.com^$third-party (easylist.txt: 25404) -.ctm-media.com -# ||ctenetwork.com^$third-party (easylist.txt: 25403) -.ctenetwork.com -# ||ctasnet.com^$third-party (easylist.txt: 25402) -.ctasnet.com -# ||cruiseworldinc.com^$third-party (easylist.txt: 25401) -.cruiseworldinc.com -# ||cruftexcision.xyz^$third-party (easylist.txt: 25400) -.cruftexcision.xyz -# ||crowdgravity.com^$third-party (easylist.txt: 25399) -.crowdgravity.com -# ||crowdgatheradnetwork.com^$third-party (easylist.txt: 25398) -.crowdgatheradnetwork.com -# ||crossrider.com^$third-party (easylist.txt: 25397) -.crossrider.com -# ||crispads.com^$third-party (easylist.txt: 25396) -.crispads.com -# ||creditcards15x.tk^$third-party (easylist.txt: 25395) -.creditcards15x.tk -# ||creative-serving.com^$third-party (easylist.txt: 25394) -.creative-serving.com -# ||crazyvideosempire.com^$third-party (easylist.txt: 25393) -.crazyvideosempire.com -# ||crazylead.com^$third-party (easylist.txt: 25392) -.crazylead.com -# ||crakmedia.com^$third-party (easylist.txt: 25391) -.crakmedia.com -# ||cpxinteractive.com^$third-party (easylist.txt: 25390) -.cpxinteractive.com -# ||cpxadroit.com^$third-party (easylist.txt: 25389) -.cpxadroit.com -# ||cpx24.com^$third-party (easylist.txt: 25388) -.cpx24.com -# ||cpvtgt.com^$third-party (easylist.txt: 25387) -.cpvtgt.com -# ||cpvmarketplace.info^$third-party (easylist.txt: 25386) -.cpvmarketplace.info -# ||cpvadvertise.com^$third-party (easylist.txt: 25385) -.cpvadvertise.com -# ||cpvads.com^$third-party (easylist.txt: 25384) -.cpvads.com -# ||cpulaptop.com^$third-party (easylist.txt: 25383) -.cpulaptop.com -# ||cpuim.com^$third-party (easylist.txt: 25382) -.cpuim.com -# ||cpmtree.com^$third-party (easylist.txt: 25381) -.cpmtree.com -# ||cpmstar.com^$third-party (easylist.txt: 25380) -.cpmstar.com -# ||cpmrocket.com^$third-party (easylist.txt: 25379) -.cpmrocket.com -# ||cpmmedia.net^$third-party (easylist.txt: 25378) -.cpmmedia.net -# ||cpmleader.com^$third-party (easylist.txt: 25377) -.cpmleader.com -# ||cpmaffiliation.com^$third-party (easylist.txt: 25376) -.cpmaffiliation.com -# ||cpmadvisors.com^$third-party (easylist.txt: 25375) -.cpmadvisors.com -# ||cpm.biz^$third-party (easylist.txt: 25374) -.cpm.biz -# ||cpfclassifieds.com^$third-party (easylist.txt: 25373) -.cpfclassifieds.com -# ||cpcadnet.com^$third-party (easylist.txt: 25372) -.cpcadnet.com -# ||cpays.com^$third-party (easylist.txt: 25371) -.cpays.com -# ||cpaway.com^$third-party (easylist.txt: 25370) -.cpaway.com -# ||cpanuk.com^$third-party (easylist.txt: 25369) -.cpanuk.com -# ||cpalock.com^$third-party (easylist.txt: 25368) -.cpalock.com -# ||cpalead.com^$third-party (easylist.txt: 25367) -.cpalead.com -# ||cpagrip.com^$third-party (easylist.txt: 25366) -.cpagrip.com -# ||cpaclickz.com^$third-party (easylist.txt: 25365) -.cpaclickz.com -# ||cpaclicks.com^$third-party (easylist.txt: 25364) -.cpaclicks.com -# ||cpabeyond.com^$third-party (easylist.txt: 25363) -.cpabeyond.com -# ||covertarget.com^*_*.php (easylist.txt: 25362) -.covertarget.com/.*_.*\.php -# ||coupon2buy.com^$third-party (easylist.txt: 25361) -.coupon2buy.com -# ||coull.com^$third-party (easylist.txt: 25360) -.coull.com -# ||cosmjs.com^$third-party (easylist.txt: 25359) -.cosmjs.com -# ||cornflip.com^$third-party (easylist.txt: 25358) -.cornflip.com -# ||coretarget.co.uk^$third-party (easylist.txt: 25357) -.coretarget.co.uk -# ||cor-natty.com^$third-party (easylist.txt: 25356) -.cor-natty.com -# ||copacet.com^$third-party (easylist.txt: 25355) -.copacet.com -# ||coolmirage.com^$third-party (easylist.txt: 25354) -.coolmirage.com -# ||coolerads.com^$third-party (easylist.txt: 25353) -.coolerads.com -# ||contextweb.com^$third-party (easylist.txt: 25352) -.contextweb.com -# ||contextuads.com^$third-party (easylist.txt: 25351) -.contextuads.com -# ||contextads.net^$third-party (easylist.txt: 25350) -.contextads.net -# ||contexlink.se^$third-party (easylist.txt: 25349) -.contexlink.se -# ||contentwidgets.net^$third-party (easylist.txt: 25348) -.contentwidgets.net -# ||contenture.com^$third-party (easylist.txt: 25347) -.contenture.com -# ||contentjs.com^$third-party (easylist.txt: 25346) -.contentjs.com -# ||contentdigital.info^$third-party (easylist.txt: 25345) -.contentdigital.info -# ||contentclick.co.uk^$third-party (easylist.txt: 25344) -.contentclick.co.uk -# ||content.ad^$third-party (easylist.txt: 25343) -.content.ad -# ||content-cooperation.com^$third-party (easylist.txt: 25342) -.content-cooperation.com -# ||contaxe.com^$third-party (easylist.txt: 25341) -.contaxe.com -# ||contadd.com^$third-party (easylist.txt: 25340) -.contadd.com -# ||consumergenepool.com^$third-party (easylist.txt: 25339) -.consumergenepool.com -# ||construment.com^$third-party (easylist.txt: 25338) -.construment.com -# ||connextra.com^$third-party (easylist.txt: 25337) -.connextra.com -# ||connexplace.com^$third-party (easylist.txt: 25336) -.connexplace.com -# ||connexity.net^$third-party (easylist.txt: 25335) -.connexity.net -# ||connectionads.com^$third-party (easylist.txt: 25334) -.connectionads.com -# ||connectedads.net^$third-party (easylist.txt: 25333) -.connectedads.net -# ||connatix.com^$third-party (easylist.txt: 25332) -.connatix.com -# ||conduit-services.com^$third-party (easylist.txt: 25331) -.conduit-services.com -# ||conduit-banners.com^$third-party (easylist.txt: 25330) -.conduit-banners.com -# ||comscore.com^$third-party (easylist.txt: 25329) -.comscore.com -# ||complive.link^$third-party (easylist.txt: 25328) -.complive.link -# ||completecarrd.com^$third-party (easylist.txt: 25327) -.completecarrd.com -# ||commissionmonster.com^$third-party (easylist.txt: 25326) -.commissionmonster.com -# ||commissionlounge.com^$third-party (easylist.txt: 25325) -.commissionlounge.com -# ||commissionfactory.com.au^$third-party (easylist.txt: 25324) -.commissionfactory.com.au -# ||commission.bz^$third-party (easylist.txt: 25323) -.commission.bz -# ||commission-junction.com^$third-party (easylist.txt: 25322) -.commission-junction.com -# ||comclick.com^$third-party (easylist.txt: 25321) -.comclick.com -# ||colliersads.com^$third-party (easylist.txt: 25320) -.colliersads.com -# ||collective-media.net^$third-party (easylist.txt: 25319) -.collective-media.net -# ||collection-day.com^$third-party (easylist.txt: 25318) -.collection-day.com -# ||coinadvert.net^$third-party (easylist.txt: 25317) -.coinadvert.net -# ||coguan.com^$third-party (easylist.txt: 25316) -.coguan.com -# ||cogsdigital.com^$third-party (easylist.txt: 25315) -.cogsdigital.com -# ||cogocast.net^$third-party (easylist.txt: 25314) -.cogocast.net -# ||coedmediagroup.com^$third-party (easylist.txt: 25313) -.coedmediagroup.com -# ||codigobarras.net^$third-party (easylist.txt: 25312) -.codigobarras.net -# ||codezap.com^$third-party (easylist.txt: 25311) -.codezap.com -# ||coadvertise.com^$third-party (easylist.txt: 25310) -.coadvertise.com -# ||cntdy.mobi^$third-party (easylist.txt: 25309) -.cntdy.mobi -# ||cnt.my^$third-party (easylist.txt: 25308) -.cnt.my -# ||cmllk1.info^$third-party (easylist.txt: 25307) -.cmllk1.info -# ||cmfads.com^$third-party (easylist.txt: 25306) -.cmfads.com -# ||clz3.net^$third-party (easylist.txt: 25305) -.clz3.net -# ||cltomedia.info^$third-party (easylist.txt: 25304) -.cltomedia.info -# ||cloudioo.net^$third-party (easylist.txt: 25303) -.cloudioo.net -# ||clnk.me^$third-party (easylist.txt: 25302) -.clnk.me -# ||clkrev.com^ (easylist.txt: 25301) -.clkrev.com -# ||clixtrac.com^$third-party (easylist.txt: 25300) -.clixtrac.com -# ||clixsense.com^$third-party (easylist.txt: 25299) -.clixsense.com -# ||clixgalore.com^$third-party (easylist.txt: 25298) -.clixgalore.com -# ||clickzxc.com^$third-party (easylist.txt: 25297) -.clickzxc.com -# ||clickxchange.com^$third-party (easylist.txt: 25296) -.clickxchange.com -# ||clickwinks.com^$third-party (easylist.txt: 25295) -.clickwinks.com -# ||clickupto.com^$third-party (easylist.txt: 25294) -.clickupto.com -# ||clicktripz.com^$third-party (easylist.txt: 25293) -.clicktripz.com -# ||clicktripz.co^$third-party (easylist.txt: 25292) -.clicktripz.co -# ||clickthrucash.com^$third-party (easylist.txt: 25291) -.clickthrucash.com -# ||clickterra.net^$third-party (easylist.txt: 25290) -.clickterra.net -# ||clicksurvey.mobi^$third-party (easylist.txt: 25289) -.clicksurvey.mobi -# ||clicksor.net^$third-party (easylist.txt: 25288) -.clicksor.net -# ||clicksor.com^$third-party (easylist.txt: 25287) -.clicksor.com -# ||clicks2count.com^$third-party (easylist.txt: 25286) -.clicks2count.com -# ||clickosmedia.com^$third-party (easylist.txt: 25285) -.clickosmedia.com -# ||clicknano.com^$third-party (easylist.txt: 25284) -.clicknano.com -# ||clickmyads.info^$third-party (easylist.txt: 25283) -.clickmyads.info -# ||clickkingdom.net^$third-party (easylist.txt: 25282) -.clickkingdom.net -# ||clickiocdn.com^$third-party (easylist.txt: 25281) -.clickiocdn.com -# ||clickintext.net^$third-party (easylist.txt: 25280) -.clickintext.net -# ||clickintext.com^$third-party (easylist.txt: 25279) -.clickintext.com -# ||clickfuse.com^$third-party (easylist.txt: 25278) -.clickfuse.com -# ||clickexperts.net^$third-party (easylist.txt: 25277) -.clickexperts.net -# ||clickexa.com^$third-party (easylist.txt: 25276) -.clickexa.com -# ||clickequations.net^$third-party (easylist.txt: 25275) -.clickequations.net -# ||clickcertain.com^$third-party (easylist.txt: 25274) -.clickcertain.com -# ||clickcash.com^$third-party (easylist.txt: 25273) -.clickcash.com -# ||clickbubbles.net^$third-party (easylist.txt: 25272) -.clickbubbles.net -# ||clickboothlnk.com^$third-party (easylist.txt: 25271) -.clickboothlnk.com -# ||clickbooth.com^$third-party (easylist.txt: 25270) -.clickbooth.com -# ||clickbet88.com^$third-party (easylist.txt: 25269) -.clickbet88.com -# ||clickagy.com^$third-party (easylist.txt: 25268) -.clickagy.com -# ||clickad.pl^$third-party (easylist.txt: 25267) -.clickad.pl -# ||clickable.com^$third-party (easylist.txt: 25266) -.clickable.com -# ||click4free.info^$third-party (easylist.txt: 25265) -.click4free.info -# ||click2jump.com^$third-party (easylist.txt: 25264) -.click2jump.com -# ||click.scour.com^$third-party (easylist.txt: 25263) -.click.scour.com -# ||clevv.com^$third-party (easylist.txt: 25262) -.clevv.com -# ||clente.com^$third-party (easylist.txt: 25261) -.clente.com -# ||clear-request.com^$third-party (easylist.txt: 25260) -.clear-request.com -# ||cleafs.com^$third-party (easylist.txt: 25259) -.cleafs.com -# ||cldlr.com^$third-party (easylist.txt: 25258) -.cldlr.com -# ||clayaim.com^$third-party (easylist.txt: 25257) -.clayaim.com -# ||claxonmedia.com^$third-party (easylist.txt: 25256) -.claxonmedia.com -# ||clash-media.com^$third-party (easylist.txt: 25255) -.clash-media.com -# ||clarityray.com^$third-party (easylist.txt: 25254) -.clarityray.com -# ||cjt1.net^$third-party (easylist.txt: 25253) -.cjt1.net -# ||citysite.net^$third-party (easylist.txt: 25252) -.citysite.net -# ||city-ads.de^$third-party (easylist.txt: 25251) -.city-ads.de -# ||cibleclick.com^$third-party (easylist.txt: 25250) -.cibleclick.com -# ||chronicads.com^$third-party (easylist.txt: 25249) -.chronicads.com -# ||chitika.net^$third-party (easylist.txt: 25248) -.chitika.net -# ||chitika.com^$third-party (easylist.txt: 25247) -.chitika.com -# ||chipleader.com^$third-party (easylist.txt: 25246) -.chipleader.com -# ||chinagrad.ru^$third-party (easylist.txt: 25245) -.chinagrad.ru -# ||china-netwave.com^$third-party (easylist.txt: 25244) -.china-netwave.com -# ||chicbuy.info^$third-party (easylist.txt: 25243) -.chicbuy.info -# ||cherytso.com^$third-party (easylist.txt: 25242) -.cherytso.com -# ||checkoutfree.com^$third-party (easylist.txt: 25241) -.checkoutfree.com -# ||checkmystats.com.au^$third-party (easylist.txt: 25240) -.checkmystats.com.au -# ||checkm8.com^$third-party (easylist.txt: 25239) -.checkm8.com -# ||charltonmedia.com^$third-party (easylist.txt: 25238) -.charltonmedia.com -# ||chanished.net^$third-party (easylist.txt: 25237) -.chanished.net -# ||chango.com^$third-party (easylist.txt: 25236) -.chango.com -# ||chameleon.ad^$third-party (easylist.txt: 25235) -.chameleon.ad -# ||cgecwm.org^$third-party (easylist.txt: 25234) -.cgecwm.org -# ||cerotop.com^$third-party (easylist.txt: 25233) -.cerotop.com -# ||centralnervous.net^$third-party (easylist.txt: 25232) -.centralnervous.net -# ||cdnservr.com^$third-party (easylist.txt: 25231) -.cdnservr.com -# ||cdnrl.com^$third-party (easylist.txt: 25230) -.cdnrl.com -# ||cdnads.com^$third-party (easylist.txt: 25229) -.cdnads.com -# ||cdna.tremormedia.com^$third-party (easylist.txt: 25228) -.cdna.tremormedia.com -# ||cdn.mobicow.com^$third-party (easylist.txt: 25227) -.cdn.mobicow.com -# ||cdn-image.com^$third-party (easylist.txt: 25226) -.cdn-image.com -# ||cd828.com^$third-party (easylist.txt: 25225) -.cd828.com -# ||cc-dt.com^$third-party (easylist.txt: 25224) -.cc-dt.com -# ||cbn.tbn.ru^$third-party (easylist.txt: 25223) -.cbn.tbn.ru -# ||cbleads.com^$third-party (easylist.txt: 25222) -.cbleads.com -# ||cbclicks.com^$third-party (easylist.txt: 25221) -.cbclicks.com -# ||cbclickbank.com^$third-party (easylist.txt: 25220) -.cbclickbank.com -# ||cbaazars.com^$third-party (easylist.txt: 25219) -.cbaazars.com -# ||cb-content.com^$third-party (easylist.txt: 25218) -.cb-content.com -# ||caygh.com^$third-party (easylist.txt: 25217) -.caygh.com -# ||castplatform.com^$third-party (easylist.txt: 25216) -.castplatform.com -# ||casterpretic.com^$third-party (easylist.txt: 25215) -.casterpretic.com -# ||caspion.com^$third-party (easylist.txt: 25214) -.caspion.com -# ||casino-zilla.com^$third-party (easylist.txt: 25213) -.casino-zilla.com -# ||cashworld.biz^$third-party (easylist.txt: 25212) -.cashworld.biz -# ||cashtrafic.info^$third-party (easylist.txt: 25211) -.cashtrafic.info -# ||cashtrafic.com^$third-party (easylist.txt: 25210) -.cashtrafic.com -# ||cashonvisit.com^$third-party (easylist.txt: 25209) -.cashonvisit.com -# ||cashmylinks.com^$third-party (easylist.txt: 25208) -.cashmylinks.com -# ||cashatgsc.com^$third-party (easylist.txt: 25207) -.cashatgsc.com -# ||cash4members.com^$third-party (easylist.txt: 25206) -.cash4members.com -# ||cash-duck.com^$third-party (easylist.txt: 25205) -.cash-duck.com -# ||casalemedia.com^$third-party (easylist.txt: 25204) -.casalemedia.com -# ||cartorkins.com^$third-party (easylist.txt: 25203) -.cartorkins.com -# ||carrier.bz^$third-party (easylist.txt: 25202) -.carrier.bz -# ||cardincraping.net^$third-party (easylist.txt: 25201) -.cardincraping.net -# ||carbonads.com^$third-party (easylist.txt: 25200) -.carbonads.com -# ||captifymedia.com^$third-party (easylist.txt: 25199) -.captifymedia.com -# ||captainad.com^$third-party (easylist.txt: 25198) -.captainad.com -# ||capitatmarket.com^$third-party (easylist.txt: 25197) -.capitatmarket.com -# ||capacitygrid.com^$third-party (easylist.txt: 25196) -.capacitygrid.com -# ||canoeklix.com^$third-party (easylist.txt: 25195) -.canoeklix.com -# ||campanja.com^$third-party (easylist.txt: 25194) -.campanja.com -# ||camleyads.info^$third-party (easylist.txt: 25193) -.camleyads.info -# ||c8.net.ua^$third-party (easylist.txt: 25192) -.c8.net.ua -# ||c-planet.net^$third-party (easylist.txt: 25191) -.c-planet.net -# ||c-on-text.com^$third-party (easylist.txt: 25190) -.c-on-text.com -# ||byzoo.org^$third-party (easylist.txt: 25189) -.byzoo.org -# ||byspot.com^$third-party (easylist.txt: 25188) -.byspot.com -# ||bwinpartypartners.com^$third-party (easylist.txt: 25187) -.bwinpartypartners.com -# ||buzzparadise.com^$third-party (easylist.txt: 25186) -.buzzparadise.com -# ||buzzcity.net^$third-party (easylist.txt: 25185) -.buzzcity.net -# ||buyt.in^$third-party (easylist.txt: 25184) -.buyt.in -# ||buysellads.com^$third-party (easylist.txt: 25183) -.buysellads.com -# ||buyorselltnhomes.com^$third-party (easylist.txt: 25182) -.buyorselltnhomes.com -# ||buyflood.com^$third-party (easylist.txt: 25181) -.buyflood.com -# ||buxp.org^$third-party (easylist.txt: 25180) -.buxp.org -# ||buxflow.com^$third-party (easylist.txt: 25179) -.buxflow.com -# ||buxept.com^$third-party (easylist.txt: 25178) -.buxept.com -# ||busterzaster.de^$third-party (easylist.txt: 25177) -.busterzaster.de -# ||businessclick.com^$third-party (easylist.txt: 25176) -.businessclick.com -# ||businesscare.com^$third-party (easylist.txt: 25175) -.businesscare.com -# ||burstnet.com^$third-party (easylist.txt: 25174) -.burstnet.com -# ||burnsoftware.info^$third-party (easylist.txt: 25173) -.burnsoftware.info -# ||burjam.com^$third-party (easylist.txt: 25172) -.burjam.com -# ||burbanked.info^$third-party (easylist.txt: 25171) -.burbanked.info -# ||bunny-net.com^$third-party (easylist.txt: 25170) -.bunny-net.com -# ||bunchofads.com^$third-party (easylist.txt: 25169) -.bunchofads.com -# ||bulletproofserving.com^$third-party (easylist.txt: 25168) -.bulletproofserving.com -# ||buildtrafficx.com^$third-party (easylist.txt: 25167) -.buildtrafficx.com -# ||budurl.com^$third-party (easylist.txt: 25166) -.budurl.com -# ||budgetedbauer.com^$third-party (easylist.txt: 25165) -.budgetedbauer.com -# ||bucketsofbanners.com^$third-party (easylist.txt: 25164) -.bucketsofbanners.com -# ||bubblesmedia.ru^$third-party (easylist.txt: 25163) -.bubblesmedia.ru -# ||bu520.com^$third-party (easylist.txt: 25162) -.bu520.com -# ||bttrack.com^$third-party (easylist.txt: 25161) -.bttrack.com -# ||bttbgroup.com^$third-party (easylist.txt: 25160) -.bttbgroup.com -# ||btrll.com^$third-party (easylist.txt: 25159) -.btrll.com -# ||btnibbler.com^$third-party (easylist.txt: 25158) -.btnibbler.com -# ||bstrtb.com^$third-party (easylist.txt: 25157) -.bstrtb.com -# ||brucelead.com^$third-party (easylist.txt: 25156) -.brucelead.com -# ||browsersfeedback.com^$third-party (easylist.txt: 25155) -.browsersfeedback.com -# ||broadstreetads.com^$third-party (easylist.txt: 25154) -.broadstreetads.com -# ||brightshare.com^$third-party (easylist.txt: 25153) -.brightshare.com -# ||brighteroption.com^$third-party (easylist.txt: 25152) -.brighteroption.com -# ||bridgetrack.com^$third-party (easylist.txt: 25151) -.bridgetrack.com -# ||brealtime.com^$third-party (easylist.txt: 25150) -.brealtime.com -# ||breadpro.com^$third-party (easylist.txt: 25149) -.breadpro.com -# ||bravenetmedianetwork.com^$third-party (easylist.txt: 25148) -.bravenetmedianetwork.com -# ||braside.ru^$third-party (easylist.txt: 25147) -.braside.ru -# ||brandreachsys.com^$third-party (easylist.txt: 25146) -.brandreachsys.com -# ||brandclik.com^$third-party (easylist.txt: 25145) -.brandclik.com -# ||brandaffinity.net^$third-party (easylist.txt: 25144) -.brandaffinity.net -# ||brandads.net^$third-party (easylist.txt: 25143) -.brandads.net -# ||brand.net^$third-party (easylist.txt: 25142) -.brand.net -# ||brand-display.com^$third-party (easylist.txt: 25141) -.brand-display.com -# ||branchr.com^$third-party (easylist.txt: 25140) -.branchr.com -# ||brainient.com^$third-party (easylist.txt: 25139) -.brainient.com -# ||br.rk.com^$third-party (easylist.txt: 25138) -.br.rk.com -# ||bptracking.com^$third-party (easylist.txt: 25137) -.bptracking.com -# ||boylesportsreklame.com^$third-party (easylist.txt: 25136) -.boylesportsreklame.com -# ||boydadvertising.co.uk^$third-party (easylist.txt: 25135) -.boydadvertising.co.uk -# ||bororas.com^$third-party (easylist.txt: 25134) -.bororas.com -# ||bormoni.ru^$third-party (easylist.txt: 25133) -.bormoni.ru -# ||boostclic.com^$third-party (easylist.txt: 25132) -.boostclic.com -# ||boostable.com^$third-party (easylist.txt: 25131) -.boostable.com -# ||booklandonline.info^$third-party (easylist.txt: 25130) -.booklandonline.info -# ||boo-box.com^$third-party (easylist.txt: 25129) -.boo-box.com -# ||bonusfapturbo.com^$third-party (easylist.txt: 25128) -.bonusfapturbo.com -# ||bokroet.com^$third-party (easylist.txt: 25127) -.bokroet.com -# ||bogads.com^$third-party (easylist.txt: 25126) -.bogads.com -# ||bnr.sys.lv^$third-party (easylist.txt: 25125) -.bnr.sys.lv -# ||bnmla.com^$third-party (easylist.txt: 25124) -.bnmla.com -# ||bnhtml.com^$third-party (easylist.txt: 25123) -.bnhtml.com -# ||bnetworx.com^$third-party (easylist.txt: 25122) -.bnetworx.com -# ||bmanpn.com^$third-party (easylist.txt: 25121) -.bmanpn.com -# ||blumi.to^$third-party (easylist.txt: 25120) -.blumi.to -# ||bluestreak.com^$third-party (easylist.txt: 25119) -.bluestreak.com -# ||blueadvertise.com^$third-party (easylist.txt: 25118) -.blueadvertise.com -# ||blogohertz.com^$third-party (easylist.txt: 25117) -.blogohertz.com -# ||blogherads.com^$third-party (easylist.txt: 25116) -.blogherads.com -# ||bloggerex.com^$third-party (easylist.txt: 25115) -.bloggerex.com -# ||blogclans.com^$third-party (easylist.txt: 25114) -.blogclans.com -# ||blogbannerexchange.com^$third-party (easylist.txt: 25113) -.blogbannerexchange.com -# ||blogads.com^$third-party (easylist.txt: 25112) -.blogads.com -# ||blinkadr.com^$third-party (easylist.txt: 25111) -.blinkadr.com -# ||blardenso.com^$third-party (easylist.txt: 25110) -.blardenso.com -# ||blamcity.com^$third-party (easylist.txt: 25109) -.blamcity.com -# ||blamads.com^$third-party (easylist.txt: 25108) -.blamads.com -# ||bjjingda.com^$third-party (easylist.txt: 25107) -.bjjingda.com -# ||bizzclick.com^$third-party (easylist.txt: 25106) -.bizzclick.com -# ||bizrotator.com^$third-party (easylist.txt: 25105) -.bizrotator.com -# ||bizographics.com^$third-party (easylist.txt: 25104) -.bizographics.com -# ||bitx.tv^$third-party (easylist.txt: 25103) -.bitx.tv -# ||bittads.com^$third-party (easylist.txt: 25102) -.bittads.com -# ||bitfalcon.tv^$third-party (easylist.txt: 25101) -.bitfalcon.tv -# ||bitcoinadvertisers.com^$third-party (easylist.txt: 25100) -.bitcoinadvertisers.com -# ||bitads.net^$third-party (easylist.txt: 25099) -.bitads.net -# ||binlayer.de^$third-party (easylist.txt: 25098) -.binlayer.de -# ||binlayer.com^$third-party (easylist.txt: 25097) -.binlayer.com -# ||bingo4affiliates.com^$third-party (easylist.txt: 25096) -.bingo4affiliates.com -# ||binaryoptionssystems.org^$third-party (easylist.txt: 25095) -.binaryoptionssystems.org -# ||bin-layer.ru^$third-party (easylist.txt: 25094) -.bin-layer.ru -# ||bin-layer.de^$third-party (easylist.txt: 25093) -.bin-layer.de -# ||bimlocal.com^$third-party (easylist.txt: 25092) -.bimlocal.com -# ||billypub.com^$third-party (easylist.txt: 25091) -.billypub.com -# ||bijscode.com^$third-party (easylist.txt: 25090) -.bijscode.com -# ||bigfineads.com^$third-party (easylist.txt: 25089) -.bigfineads.com -# ||bigadpoint.net^$third-party (easylist.txt: 25088) -.bigadpoint.net -# ||biemedia.com^$third-party (easylist.txt: 25087) -.biemedia.com -# ||bidvertiser.com^$third-party (easylist.txt: 25086) -.bidvertiser.com -# ||bidsystem.com^$third-party (easylist.txt: 25085) -.bidsystem.com -# ||bidgewatr.com^$third-party (easylist.txt: 25084) -.bidgewatr.com -# ||bh3.net^$third-party (easylist.txt: 25083) -.bh3.net -# ||bfast.com^$third-party (easylist.txt: 25082) -.bfast.com -# ||bettingpartners.com^$third-party (easylist.txt: 25081) -.bettingpartners.com -# ||betrad.com^$third-party (easylist.txt: 25080) -.betrad.com -# ||betoga.com^$third-party (easylist.txt: 25079) -.betoga.com -# ||betaffs.com^$third-party (easylist.txt: 25078) -.betaffs.com -# ||bet365affiliates.com^$third-party (easylist.txt: 25077) -.bet365affiliates.com -# ||bet3000partners.com^$third-party (easylist.txt: 25076) -.bet3000partners.com -# ||bestpricewala.com^$third-party (easylist.txt: 25075) -.bestpricewala.com -# ||bestonlinecoupons.com^$third-party (easylist.txt: 25074) -.bestonlinecoupons.com -# ||bestofferdirect.com^$third-party (easylist.txt: 25073) -.bestofferdirect.com -# ||besthitsnow.com^$third-party (easylist.txt: 25072) -.besthitsnow.com -# ||bestgameads.com^$third-party (easylist.txt: 25071) -.bestgameads.com -# ||bestforexpartners.com^$third-party (easylist.txt: 25070) -.bestforexpartners.com -# ||bestfindsite.com^$third-party (easylist.txt: 25069) -.bestfindsite.com -# ||bestdeals.ws^$third-party (easylist.txt: 25068) -.bestdeals.ws -# ||bestcasinopartner.com^$third-party (easylist.txt: 25067) -.bestcasinopartner.com -# ||beringmedia.com^$third-party (easylist.txt: 25066) -.beringmedia.com -# ||bepolite.eu^$third-party (easylist.txt: 25065) -.bepolite.eu -# ||bentdownload.com^$third-party (easylist.txt: 25064) -.bentdownload.com -# ||belvertising.be^$third-party (easylist.txt: 25063) -.belvertising.be -# ||belointeractive.com^$third-party (easylist.txt: 25062) -.belointeractive.com -# ||begun.ru^$third-party (easylist.txt: 25061) -.begun.ru -# ||beforescence.com^$third-party (easylist.txt: 25060) -.beforescence.com -# ||befade.com^$third-party (easylist.txt: 25059) -.befade.com -# ||beead.net^$third-party (easylist.txt: 25058) -.beead.net -# ||beead.co.uk^$third-party (easylist.txt: 25057) -.beead.co.uk -# ||bedorm.com^$third-party (easylist.txt: 25056) -.bedorm.com -# ||bebi.com^$third-party (easylist.txt: 25055) -.bebi.com -# ||beatchucknorris.com^$third-party (easylist.txt: 25054) -.beatchucknorris.com -# ||beaconads.com^$third-party (easylist.txt: 25053) -.beaconads.com -# ||bbuni.com^$third-party (easylist.txt: 25052) -.bbuni.com -# ||bbelements.com^$third-party (easylist.txt: 25051) -.bbelements.com -# ||basebanner.com^$third-party (easylist.txt: 25050) -.basebanner.com -# ||baronsoffers.com^$third-party (easylist.txt: 25049) -.baronsoffers.com -# ||bannerweb.com^$third-party (easylist.txt: 25048) -.bannerweb.com -# ||bannertracker-script.com^$third-party (easylist.txt: 25047) -.bannertracker-script.com -# ||bannertgt.com^$third-party (easylist.txt: 25046) -.bannertgt.com -# ||bannersurvey.biz^$third-party (easylist.txt: 25045) -.bannersurvey.biz -# ||bannersnack.net^$third-party (easylist.txt: 25044) -.bannersnack.net -# ||bannersnack.com^$third-party (easylist.txt: 25043) -.bannersnack.com -# ||bannersmania.com^$third-party (easylist.txt: 25042) -.bannersmania.com -# ||bannerrage.com^$third-party (easylist.txt: 25041) -.bannerrage.com -# ||bannerperformance.net^$third-party (easylist.txt: 25040) -.bannerperformance.net -# ||bannerlot.com^$third-party (easylist.txt: 25039) -.bannerlot.com -# ||bannerjammers.com^$third-party (easylist.txt: 25038) -.bannerjammers.com -# ||bannerignition.co.za^$third-party (easylist.txt: 25037) -.bannerignition.co.za -# ||bannerflux.com^$third-party (easylist.txt: 25036) -.bannerflux.com -# ||bannerflow.com^$third-party (easylist.txt: 25035) -.bannerflow.com -# ||bannerexchange.com.au^$third-party (easylist.txt: 25034) -.bannerexchange.com.au -# ||bannerdealer.com^$third-party (easylist.txt: 25033) -.bannerdealer.com -# ||bannerconnect.net^$third-party (easylist.txt: 25032) -.bannerconnect.net -# ||bannerconnect.com^$third-party (easylist.txt: 25031) -.bannerconnect.com -# ||bannercde.com^$third-party (easylist.txt: 25030) -.bannercde.com -# ||bannerbridge.net^$third-party (easylist.txt: 25029) -.bannerbridge.net -# ||bannerblasters.com^$third-party (easylist.txt: 25028) -.bannerblasters.com -# ||bannerbank.ru^$third-party (easylist.txt: 25027) -.bannerbank.ru -# ||banner-rotation.com^$third-party (easylist.txt: 25026) -.banner-rotation.com -# ||banner-clix.com^$third-party (easylist.txt: 25025) -.banner-clix.com -# ||bananaflippy.com^$third-party (easylist.txt: 25024) -.bananaflippy.com -# ||baldiro.de^$third-party (easylist.txt: 25023) -.baldiro.de -# ||badjocks.com^$third-party (easylist.txt: 25022) -.badjocks.com -# ||backlinks.com^$third-party (easylist.txt: 25021) -.backlinks.com -# ||backbeatmedia.com^$third-party (easylist.txt: 25020) -.backbeatmedia.com -# ||babbnrs.com^$third-party (easylist.txt: 25019) -.babbnrs.com -# ||b6508157d.website^$third-party (easylist.txt: 25018) -.b6508157d.website -# ||b117f8da23446a91387efea0e428392a.pl^$third-party (easylist.txt: 25017) -.b117f8da23446a91387efea0e428392a.pl -# ||azorbe.com^$third-party (easylist.txt: 25016) -.azorbe.com -# ||azoogleads.com^$third-party (easylist.txt: 25015) -.azoogleads.com -# ||azjmp.com^$third-party (easylist.txt: 25014) -.azjmp.com -# ||azads.com^$third-party (easylist.txt: 25013) -.azads.com -# ||ayboll.com^$third-party (easylist.txt: 25012) -.ayboll.com -# ||axill.com^$third-party (easylist.txt: 25011) -.axill.com -# ||awsurveys.com^$third-party (easylist.txt: 25010) -.awsurveys.com -# ||awsmer.com^$third-party (easylist.txt: 25009) -.awsmer.com -# ||awltovhc.com^$third-party (easylist.txt: 25008) -.awltovhc.com -# ||awin1.com^$third-party (easylist.txt: 25007) -.awin1.com -# ||awempire.com^$third-party (easylist.txt: 25006) -.awempire.com -# ||awaps.net^$third-party (easylist.txt: 25005) -.awaps.net -# ||avercarto.com^$third-party (easylist.txt: 25004) -.avercarto.com -# ||avazutracking.net^$third-party (easylist.txt: 25003) -.avazutracking.net -# ||avazu.net^$third-party (easylist.txt: 25002) -.avazu.net -# ||avalopaly.com^$third-party (easylist.txt: 25001) -.avalopaly.com -# ||avalanchers.com^$third-party (easylist.txt: 25000) -.avalanchers.com -# ||avads.co.uk^$third-party (easylist.txt: 24999) -.avads.co.uk -# ||automateyourlist.com^$third-party (easylist.txt: 24998) -.automateyourlist.com -# ||automatedtraffic.com^$third-party (easylist.txt: 24997) -.automatedtraffic.com -# ||auto-insurance-quotes-compare.com^$third-party (easylist.txt: 24996) -.auto-insurance-quotes-compare.com -# ||auto-im.com^$third-party (easylist.txt: 24995) -.auto-im.com -# ||auspipe.com^$third-party (easylist.txt: 24994) -.auspipe.com -# ||aunmdhxrco.com^$third-party (easylist.txt: 24993) -.aunmdhxrco.com -# ||august15download.com^$third-party (easylist.txt: 24992) -.august15download.com -# ||augmentad.net^$third-party (easylist.txt: 24991) -.augmentad.net -# ||auditude.com^$third-party (easylist.txt: 24990) -.auditude.com -# ||auditoire.ph^$third-party (easylist.txt: 24989) -.auditoire.ph -# ||audienceprofiler.com^$third-party (easylist.txt: 24988) -.audienceprofiler.com -# ||audiencefuel.com^$third-party (easylist.txt: 24987) -.audiencefuel.com -# ||audience2media.com^$third-party (easylist.txt: 24986) -.audience2media.com -# ||auctionnudge.com^$third-party (easylist.txt: 24985) -.auctionnudge.com -# ||au2m8.com^$third-party (easylist.txt: 24984) -.au2m8.com -# ||atwola.com^$third-party (easylist.txt: 24983) -.atwola.com -# ||atrinsic.com^$third-party (easylist.txt: 24982) -.atrinsic.com -# ||atomex.net^$third-party (easylist.txt: 24981) -.atomex.net -# ||ato.mx^$third-party (easylist.txt: 24980) -.ato.mx -# ||atmalinks.com^$third-party (easylist.txt: 24979) -.atmalinks.com -# ||atemda.com^$third-party (easylist.txt: 24978) -.atemda.com -# ||atadserver.com^$third-party (easylist.txt: 24977) -.atadserver.com -# ||astree.be^$third-party (easylist.txt: 24976) -.astree.be -# ||asterpix.com^$third-party (easylist.txt: 24975) -.asterpix.com -# ||assoc-amazon.it^$third-party (easylist.txt: 24974) -.assoc-amazon.it -# ||assoc-amazon.fr^$third-party (easylist.txt: 24973) -.assoc-amazon.fr -# ||assoc-amazon.es^$third-party (easylist.txt: 24972) -.assoc-amazon.es -# ||assoc-amazon.de^$third-party (easylist.txt: 24971) -.assoc-amazon.de -# ||assoc-amazon.com^$third-party (easylist.txt: 24970) -.assoc-amazon.com -# ||assoc-amazon.co.uk^$third-party (easylist.txt: 24969) -.assoc-amazon.co.uk -# ||assoc-amazon.ca^$third-party (easylist.txt: 24968) -.assoc-amazon.ca -# ||assetize.com^$third-party (easylist.txt: 24967) -.assetize.com -# ||asrety.com^$third-party (easylist.txt: 24966) -.asrety.com -# ||asooda.com^$third-party (easylist.txt: 24965) -.asooda.com -# ||asklots.com^$third-party (easylist.txt: 24964) -.asklots.com -# ||aseadnet.com^$third-party (easylist.txt: 24963) -.aseadnet.com -# ||asafesite.com^$third-party (easylist.txt: 24962) -.asafesite.com -# ||as5000.com^$third-party (easylist.txt: 24961) -.as5000.com -# ||as-farm.com^$third-party (easylist.txt: 24960) -.as-farm.com -# ||arti-mediagroup.com^$third-party (easylist.txt: 24959) -.arti-mediagroup.com -# ||areasnap.com^$third-party (easylist.txt: 24958) -.areasnap.com -# ||arcadechain.com^$third-party (easylist.txt: 24957) -.arcadechain.com -# ||arcadebe.com^$third-party (easylist.txt: 24956) -.arcadebe.com -# ||arcadebanners.com^$third-party (easylist.txt: 24955) -.arcadebanners.com -# ||arcadebannerexchange.org^$third-party (easylist.txt: 24954) -.arcadebannerexchange.org -# ||arcadebannerexchange.net^$third-party (easylist.txt: 24953) -.arcadebannerexchange.net -# ||arabweb.biz^$third-party (easylist.txt: 24952) -.arabweb.biz -# ||arab4eg.com^$third-party (easylist.txt: 24951) -.arab4eg.com -# ||apxlv.com^$third-party (easylist.txt: 24950) -.apxlv.com -# ||apsmediaagency.com^$third-party (easylist.txt: 24949) -.apsmediaagency.com -# ||april29-disp-download.com^$third-party (easylist.txt: 24948) -.april29-disp-download.com -# ||apptap.com^$third-party (easylist.txt: 24947) -.apptap.com -# ||apportium.com^$third-party (easylist.txt: 24946) -.apportium.com -# ||applebarq.com^$third-party (easylist.txt: 24945) -.applebarq.com -# ||appendad.com^$third-party (easylist.txt: 24944) -.appendad.com -# ||apmebf.com^$third-party (easylist.txt: 24943) -.apmebf.com -# ||apex-ad.com^$third-party (easylist.txt: 24942) -.apex-ad.com -# ||aorpum.com^$third-party (easylist.txt: 24941) -.aorpum.com -# ||aorms.com^$third-party (easylist.txt: 24940) -.aorms.com -# ||aoqneyvmaz.com^$third-party (easylist.txt: 24939) -.aoqneyvmaz.com -# ||anyxp.com^$third-party (easylist.txt: 24938) -.anyxp.com -# ||anymedia.lv^$third-party (easylist.txt: 24937) -.anymedia.lv -# ||anwufkjjja.com^$third-party (easylist.txt: 24936) -.anwufkjjja.com -# ||anrdoezrs.net^$third-party (easylist.txt: 24935) -.anrdoezrs.net -# ||anonymousads.com^$third-party (easylist.txt: 24934) -.anonymousads.com -# ||angege.com^$third-party (easylist.txt: 24933) -.angege.com -# ||anet*.tradedoubler.com^$third-party (easylist.txt: 24932) -.anet*./.*\.tradedoubler\.com[^\w%.-] -.anet*.tradedoubler.com -# ||andomediagroup.com^$third-party (easylist.txt: 24931) -.andomediagroup.com -# ||andomedia.com^$third-party (easylist.txt: 24930) -.andomedia.com -# ||andohs.net^$third-party (easylist.txt: 24929) -.andohs.net -# ||anastasiasaffiliate.com^$third-party (easylist.txt: 24928) -.anastasiasaffiliate.com -# ||ampxchange.com^$third-party (easylist.txt: 24927) -.ampxchange.com -# ||amgdgt.com^$third-party (easylist.txt: 24926) -.amgdgt.com -# ||amertazy.com^$third-party (easylist.txt: 24925) -.amertazy.com -# ||amazonily.com^$third-party (easylist.txt: 24924) -.amazonily.com -# ||amazon-cornerstone.com^$third-party (easylist.txt: 24923) -.amazon-cornerstone.com -# ||amazon-adsystem.com^$third-party (easylist.txt: 24922) -.amazon-adsystem.com -# ||am15.net^$third-party (easylist.txt: 24921) -.am15.net -# ||am11.ru^$third-party (easylist.txt: 24920) -.am11.ru -# ||am10.ru^$third-party (easylist.txt: 24919) -.am10.ru -# ||am-display.com^$third-party (easylist.txt: 24918) -.am-display.com -# ||altitude-arena.com^$third-party (easylist.txt: 24917) -.altitude-arena.com -# ||alternativeadverts.com^$third-party (easylist.txt: 24916) -.alternativeadverts.com -# ||alternads.info^$third-party (easylist.txt: 24915) -.alternads.info -# ||alphagodaddy.com^$third-party (easylist.txt: 24914) -.alphagodaddy.com -# ||alphabirdnetwork.com^$third-party (easylist.txt: 24913) -.alphabirdnetwork.com -# ||alphabird.com^$third-party (easylist.txt: 24912) -.alphabird.com -# ||allyes.com^$third-party (easylist.txt: 24911) -.allyes.com -# ||alloydigital.com^$third-party (easylist.txt: 24910) -.alloydigital.com -# ||allmt.com^$third-party (easylist.txt: 24909) -.allmt.com -# ||alleliteads.com^$third-party (easylist.txt: 24908) -.alleliteads.com -# ||allabc.com^$third-party (easylist.txt: 24907) -.allabc.com -# ||alimama.com^$third-party (easylist.txt: 24906) -.alimama.com -# ||alfynetwork.com^$third-party (easylist.txt: 24905) -.alfynetwork.com -# ||alchemysocial.com^$third-party (easylist.txt: 24904) -.alchemysocial.com -# ||ajansreklam.net^$third-party (easylist.txt: 24903) -.ajansreklam.net -# ||aimatch.com^$third-party (easylist.txt: 24902) -.aimatch.com -# ||aim4media.com^$third-party (easylist.txt: 24901) -.aim4media.com -# ||agvzvwof.com^$third-party (easylist.txt: 24900) -.agvzvwof.com -# ||agomwefq.com^$third-party (easylist.txt: 24899) -.agomwefq.com -# ||agmtrk.com^$third-party (easylist.txt: 24898) -.agmtrk.com -# ||aglocobanners.com^$third-party (easylist.txt: 24897) -.aglocobanners.com -# ||aggregateknowledge.com^$third-party (easylist.txt: 24896) -.aggregateknowledge.com -# ||agentcenters.com^$third-party (easylist.txt: 24895) -.agentcenters.com -# ||agcdn.com^$third-party (easylist.txt: 24894) -.agcdn.com -# ||afy11.net^$third-party (easylist.txt: 24893) -.afy11.net -# ||afterdownloads.com^$third-party (easylist.txt: 24892) -.afterdownloads.com -# ||afterdownload.com^$third-party (easylist.txt: 24891) -.afterdownload.com -# ||africawin.com^$third-party (easylist.txt: 24890) -.africawin.com -# ||aflrm.com^$third-party (easylist.txt: 24889) -.aflrm.com -# ||afftrack.com^$third-party (easylist.txt: 24888) -.afftrack.com -# ||affplanet.com^$third-party (easylist.txt: 24887) -.affplanet.com -# ||affiz.net^$third-party (easylist.txt: 24886) -.affiz.net -# ||affinity.com^$third-party (easylist.txt: 24885) -.affinity.com -# ||affinitad.com^$third-party (easylist.txt: 24884) -.affinitad.com -# ||affimo.de^$third-party (easylist.txt: 24883) -.affimo.de -# ||affiliserve.com^$third-party (easylist.txt: 24882) -.affiliserve.com -# ||affiliproducts.com^$third-party (easylist.txt: 24881) -.affiliproducts.com -# ||affilijack.de^$third-party (easylist.txt: 24880) -.affilijack.de -# ||affiliationzone.com^$third-party (easylist.txt: 24879) -.affiliationzone.com -# ||affiliationworld.com^$third-party (easylist.txt: 24878) -.affiliationworld.com -# ||affiliationcash.com^$third-party (easylist.txt: 24877) -.affiliationcash.com -# ||affiliation-france.com^$third-party (easylist.txt: 24876) -.affiliation-france.com -# ||affiliatesensor.com^$third-party (easylist.txt: 24875) -.affiliatesensor.com -# ||affiliatemembership.com^$third-party (easylist.txt: 24874) -.affiliatemembership.com -# ||affiliatelounge.com^$third-party (easylist.txt: 24873) -.affiliatelounge.com -# ||affiliategroove.com^$third-party (easylist.txt: 24872) -.affiliategroove.com -# ||affiliategateways.co^$third-party (easylist.txt: 24871) -.affiliategateways.co -# ||affiliatefuture.com^$third-party (easylist.txt: 24870) -.affiliatefuture.com -# ||affiliatefuel.com^$third-party (easylist.txt: 24869) -.affiliatefuel.com -# ||affiliateer.com^$third-party (easylist.txt: 24868) -.affiliateer.com -# ||affiliateedge.com^$third-party (easylist.txt: 24867) -.affiliateedge.com -# ||affiliatebannerfarm.com^$third-party (easylist.txt: 24866) -.affiliatebannerfarm.com -# ||affiliate.cx^$third-party (easylist.txt: 24865) -.affiliate.cx -# ||affiliate.com^$third-party (easylist.txt: 24864) -.affiliate.com -# ||affiliate-robot.com^$third-party (easylist.txt: 24863) -.affiliate-robot.com -# ||affiliate-gate.com^$third-party (easylist.txt: 24862) -.affiliate-gate.com -# ||affiliate-b.com^$third-party (easylist.txt: 24861) -.affiliate-b.com -# ||affec.tv^$third-party (easylist.txt: 24860) -.affec.tv -# ||affbuzzads.com^$third-party (easylist.txt: 24859) -.affbuzzads.com -# ||affbot8.com^$third-party (easylist.txt: 24858) -.affbot8.com -# ||affbot7.com^$third-party (easylist.txt: 24857) -.affbot7.com -# ||affbot3.com^$third-party (easylist.txt: 24856) -.affbot3.com -# ||affbot1.com^$third-party (easylist.txt: 24855) -.affbot1.com -# ||aff.biz^$third-party (easylist.txt: 24854) -.aff.biz -# ||aff-online.com^$third-party (easylist.txt: 24853) -.aff-online.com -# ||afdads.com^$third-party (easylist.txt: 24852) -.afdads.com -# ||afcyhf.com^$third-party (easylist.txt: 24851) -.afcyhf.com -# ||adzs.nl^$third-party (easylist.txt: 24850) -.adzs.nl -# ||adzouk.com^$third-party (easylist.txt: 24849) -.adzouk.com -# ||adzonk.com^$third-party (easylist.txt: 24848) -.adzonk.com -# ||adziff.com^$third-party (easylist.txt: 24847) -.adziff.com -# ||adzhub.com^$third-party (easylist.txt: 24846) -.adzhub.com -# ||adzerk.net^$third-party (easylist.txt: 24845) -.adzerk.net -# ||adzbazar.com^$third-party (easylist.txt: 24844) -.adzbazar.com -# ||adz.co.zw^$third-party (easylist.txt: 24843) -.adz.co.zw -# ||adyoz.com^$third-party (easylist.txt: 24842) -.adyoz.com -# ||adyoulike.com^$third-party (easylist.txt: 24841) -.adyoulike.com -# ||adxpower.com^$third-party (easylist.txt: 24840) -.adxpower.com -# ||adxpose.com^$third-party (easylist.txt: 24839) -.adxpose.com -# ||adxion.com^$third-party (easylist.txt: 24838) -.adxion.com -# ||adxcore.com^$third-party (easylist.txt: 24837) -.adxcore.com -# ||adworldmedia.net^$third-party (easylist.txt: 24836) -.adworldmedia.net -# ||adworldmedia.com^$third-party (easylist.txt: 24835) -.adworldmedia.com -# ||adworkmedia.com^$third-party (easylist.txt: 24834) -.adworkmedia.com -# ||adwordsservicapi.com^$third-party (easylist.txt: 24833) -.adwordsservicapi.com -# ||adwires.com^$third-party (easylist.txt: 24832) -.adwires.com -# ||advsnx.net^$third-party (easylist.txt: 24831) -.advsnx.net -# ||advrtice.com^$third-party (easylist.txt: 24830) -.advrtice.com -# ||advpoints.com^$third-party (easylist.txt: 24829) -.advpoints.com -# ||advombat.ru^$third-party (easylist.txt: 24828) -.advombat.ru -# ||advmedialtd.com^$third-party (easylist.txt: 24827) -.advmedialtd.com -# ||advmd.com^$third-party (easylist.txt: 24826) -.advmd.com -# ||adviva.net^$third-party (easylist.txt: 24825) -.adviva.net -# ||advgoogle.com^$third-party (easylist.txt: 24824) -.advgoogle.com -# ||advg.jp^$third-party (easylist.txt: 24823) -.advg.jp -# ||advertxi.com^$third-party (easylist.txt: 24822) -.advertxi.com -# ||advertur.ru^$third-party (easylist.txt: 24821) -.advertur.ru -# ||advertstream.com^$third-party (easylist.txt: 24820) -.advertstream.com -# ||advertstatic.com^$third-party (easylist.txt: 24819) -.advertstatic.com -# ||advertserve.com^$third-party (easylist.txt: 24818) -.advertserve.com -# ||advertrev.com^$third-party (easylist.txt: 24817) -.advertrev.com -# ||advertpay.net^$third-party (easylist.txt: 24816) -.advertpay.net -# ||advertone.ru^$third-party (easylist.txt: 24815) -.advertone.ru -# ||advertmedias.com^$third-party (easylist.txt: 24814) -.advertmedias.com -# ||advertmarketing.com^$third-party (easylist.txt: 24813) -.advertmarketing.com -# ||advertlets.com^$third-party (easylist.txt: 24812) -.advertlets.com -# ||advertlead.net^$third-party (easylist.txt: 24811) -.advertlead.net -# ||advertjunction.com^$third-party (easylist.txt: 24810) -.advertjunction.com -# ||advertisingvalue.info^$third-party (easylist.txt: 24809) -.advertisingvalue.info -# ||advertisingpath.net^$third-party (easylist.txt: 24808) -.advertisingpath.net -# ||advertisingiq.com^$third-party (easylist.txt: 24807) -.advertisingiq.com -# ||advertising365.com^$third-party (easylist.txt: 24806) -.advertising365.com -# ||advertising.com^$third-party (easylist.txt: 24805) -.advertising.com -# ||advertising-department.com^$third-party (easylist.txt: 24804) -.advertising-department.com -# ||advertiseyourgame.com^$third-party (easylist.txt: 24803) -.advertiseyourgame.com -# ||advertisespace.com^$third-party (easylist.txt: 24802) -.advertisespace.com -# ||advertisegame.com^$third-party (easylist.txt: 24801) -.advertisegame.com -# ||advertiseforfree.co.za^$third-party (easylist.txt: 24800) -.advertiseforfree.co.za -# ||advertise.com^$third-party (easylist.txt: 24799) -.advertise.com -# ||adverticum.net^$third-party (easylist.txt: 24798) -.adverticum.net -# ||adverteerdirect.nl^$third-party (easylist.txt: 24797) -.adverteerdirect.nl -# ||advertbox.us^$third-party (easylist.txt: 24796) -.advertbox.us -# ||advertarium.com.ua^$third-party (easylist.txt: 24795) -.advertarium.com.ua -# ||adverserve.net^$third-party (easylist.txt: 24794) -.adverserve.net -# ||adversalservers.com^$third-party (easylist.txt: 24793) -.adversalservers.com -# ||adversaldisplay.com^$third-party (easylist.txt: 24792) -.adversaldisplay.com -# ||adversal.com^$third-party (easylist.txt: 24791) -.adversal.com -# ||adventori.com^$third-party (easylist.txt: 24790) -.adventori.com -# ||advatar.to^$third-party (easylist.txt: 24789) -.advatar.to -# ||advard.com^$third-party (easylist.txt: 24788) -.advard.com -# ||advantageglobalmarketing.com^$third-party (easylist.txt: 24787) -.advantageglobalmarketing.com -# ||advanseads.com^$third-party (easylist.txt: 24786) -.advanseads.com -# ||adv9.net^$third-party (easylist.txt: 24785) -.adv9.net -# ||adv-adserver.com^$third-party (easylist.txt: 24784) -.adv-adserver.com -# ||adurr.com^$third-party (easylist.txt: 24783) -.adurr.com -# ||adulttds.com^$third-party (easylist.txt: 24782) -.adulttds.com -# ||adultimate.net^$third-party (easylist.txt: 24781) -.adultimate.net -# ||adultadworld.com^$third-party (easylist.txt: 24780) -.adultadworld.com -# ||adult-adv.com^$third-party (easylist.txt: 24779) -.adult-adv.com -# ||aduacni.com^$third-party (easylist.txt: 24778) -.aduacni.com -# ||adtwirl.com^$third-party (easylist.txt: 24777) -.adtwirl.com -# ||adtruism.com^$third-party (easylist.txt: 24776) -.adtruism.com -# ||adtrovert.com^$third-party (easylist.txt: 24775) -.adtrovert.com -# ||adtrix.com^$third-party (easylist.txt: 24774) -.adtrix.com -# ||adtrgt.com^$third-party (easylist.txt: 24773) -.adtrgt.com -# ||adtransfer.net^$third-party (easylist.txt: 24772) -.adtransfer.net -# ||adtrace.org^$third-party (easylist.txt: 24771) -.adtrace.org -# ||adtpix.com^$third-party (easylist.txt: 24770) -.adtpix.com -# ||adtotal.pl^$third-party (easylist.txt: 24769) -.adtotal.pl -# ||adtoox.com^$third-party (easylist.txt: 24768) -.adtoox.com -# ||adtomafusion.com^$third-party (easylist.txt: 24767) -.adtomafusion.com -# ||adtoma.com^$third-party (easylist.txt: 24766) -.adtoma.com -# ||adtology3.com^$third-party (easylist.txt: 24765) -.adtology3.com -# ||adtology2.com^$third-party (easylist.txt: 24764) -.adtology2.com -# ||adtology1.com^$third-party (easylist.txt: 24763) -.adtology1.com -# ||adtoll.com^$third-party (easylist.txt: 24762) -.adtoll.com -# ||adtoadd.com^$third-party (easylist.txt: 24761) -.adtoadd.com -# ||adtlgc.com^$third-party (easylist.txt: 24760) -.adtlgc.com -# ||adtgs.com^$third-party (easylist.txt: 24759) -.adtgs.com -# ||adteractive.com^$third-party (easylist.txt: 24758) -.adteractive.com -# ||adtegrity.net^$third-party (easylist.txt: 24757) -.adtegrity.net -# ||adtechus.com^$third-party (easylist.txt: 24756) -.adtechus.com -# ||adtech.de^$third-party (easylist.txt: 24755) -.adtech.de -# ||adtecc.com^$third-party (easylist.txt: 24754) -.adtecc.com -# ||adtdp.com^$third-party (easylist.txt: 24753) -.adtdp.com -# ||adtaily.pl^$third-party (easylist.txt: 24752) -.adtaily.pl -# ||adtaily.eu^$third-party (easylist.txt: 24751) -.adtaily.eu -# ||adtaily.com^$third-party (easylist.txt: 24750) -.adtaily.com -# ||adsymptotic.com^$third-party (easylist.txt: 24749) -.adsymptotic.com -# ||adsxgm.com^$third-party (easylist.txt: 24748) -.adsxgm.com -# ||adswizz.com^$third-party (easylist.txt: 24747) -.adswizz.com -# ||adsvert.com^$third-party (easylist.txt: 24746) -.adsvert.com -# ||adsurve.com^$third-party (easylist.txt: 24745) -.adsurve.com -# ||adsupply.com^$third-party (easylist.txt: 24744) -.adsupply.com -# ||adsupermarket.com^$third-party (easylist.txt: 24743) -.adsupermarket.com -# ||adsummos.net^$third-party (easylist.txt: 24742) -.adsummos.net -# ||adsterra.com^$third-party (easylist.txt: 24741) -.adsterra.com -# ||adstatic.com^$third-party (easylist.txt: 24740) -.adstatic.com -# ||adstargeting.com^$third-party (easylist.txt: 24739) -.adstargeting.com -# ||adssites.net^$third-party (easylist.txt: 24738) -.adssites.net -# ||adssend.net^$third-party (easylist.txt: 24737) -.adssend.net -# ||adsrvr.org^$third-party (easylist.txt: 24736) -.adsrvr.org -# ||adsrvmedia.net^$third-party (easylist.txt: 24735) -.adsrvmedia.net -# ||adsrvmedia.com^$third-party (easylist.txt: 24734) -.adsrvmedia.com -# ||adsrv.us^$third-party (easylist.txt: 24733) -.adsrv.us -# ||adsring.com^$third-party (easylist.txt: 24732) -.adsring.com -# ||adsrevenue.net^$third-party (easylist.txt: 24731) -.adsrevenue.net -# ||adspynet.com^$third-party (easylist.txt: 24730) -.adspynet.com -# ||adspruce.com^$third-party (easylist.txt: 24729) -.adspruce.com -# ||adspring.to^$third-party (easylist.txt: 24728) -.adspring.to -# ||adspirit.de^$third-party (easylist.txt: 24727) -.adspirit.de -# ||adspeed.com^$third-party (easylist.txt: 24726) -.adspeed.com -# ||adspdbl.com^$third-party (easylist.txt: 24725) -.adspdbl.com -# ||adsparc.net^$third-party (easylist.txt: 24724) -.adsparc.net -# ||adspaper.org^$third-party (easylist.txt: 24723) -.adspaper.org -# ||adsovo.com^$third-party (easylist.txt: 24722) -.adsovo.com -# ||adsopx.com^$third-party (easylist.txt: 24721) -.adsopx.com -# ||adsonar.com^$third-party (easylist.txt: 24720) -.adsonar.com -# ||adsniper.ru^$third-party (easylist.txt: 24719) -.adsniper.ru -# ||adsnext.net^$third-party (easylist.txt: 24718) -.adsnext.net -# ||adsnetworkserver.com^$third-party (easylist.txt: 24717) -.adsnetworkserver.com -# ||adsnative.com^$third-party (easylist.txt: 24716) -.adsnative.com -# ||adsmws.cloudapp.net^$third-party (easylist.txt: 24715) -.adsmws.cloudapp.net -# ||adsmoon.com^$third-party (easylist.txt: 24714) -.adsmoon.com -# ||adsmile.biz^$third-party (easylist.txt: 24713) -.adsmile.biz -# ||adsmedia.cc^$third-party (easylist.txt: 24712) -.adsmedia.cc -# ||adsmarket.es^$third-party (easylist.txt: 24711) -.adsmarket.es -# ||adsmarket.com^$third-party (easylist.txt: 24710) -.adsmarket.com -# ||adslot.com^$third-party (easylist.txt: 24709) -.adslot.com -# ||adslingers.com^$third-party (easylist.txt: 24708) -.adslingers.com -# ||adslidango.com^$third-party (easylist.txt: 24707) -.adslidango.com -# ||adskeeper.co.uk^$third-party (easylist.txt: 24706) -.adskeeper.co.uk -# ||adsinimages.com^$third-party (easylist.txt: 24705) -.adsinimages.com -# ||adsimilis.com^$third-party (easylist.txt: 24704) -.adsimilis.com -# ||adsignals.com^$third-party (easylist.txt: 24703) -.adsignals.com -# ||adshuffle.com^$third-party (easylist.txt: 24702) -.adshuffle.com -# ||adshot.de^$third-party (easylist.txt: 24701) -.adshot.de -# ||adshost2.com^$third-party (easylist.txt: 24700) -.adshost2.com -# ||adshost1.com^$third-party (easylist.txt: 24699) -.adshost1.com -# ||adshopping.com^$third-party (easylist.txt: 24698) -.adshopping.com -# ||adshexa.com^$third-party (easylist.txt: 24697) -.adshexa.com -# ||adshack.com^$third-party (easylist.txt: 24696) -.adshack.com -# ||adsfuse.com^$third-party (easylist.txt: 24695) -.adsfuse.com -# ||adsfundi.net^$third-party (easylist.txt: 24694) -.adsfundi.net -# ||adsfundi.com^$third-party (easylist.txt: 24693) -.adsfundi.com -# ||adsforindians.com^$third-party (easylist.txt: 24692) -.adsforindians.com -# ||adsfast.com^$third-party (easylist.txt: 24691) -.adsfast.com -# ||adsfactor.net^$third-party (easylist.txt: 24690) -.adsfactor.net -# ||adsfac.us^$third-party (easylist.txt: 24689) -.adsfac.us -# ||adsfac.net^$third-party (easylist.txt: 24688) -.adsfac.net -# ||adsfac.eu^$third-party (easylist.txt: 24687) -.adsfac.eu -# ||adservr.de^$third-party (easylist.txt: 24686) -.adservr.de -# ||adservpi.com^$third-party (easylist.txt: 24685) -.adservpi.com -# ||adservinginternational.com^$third-party (easylist.txt: 24684) -.adservinginternational.com -# ||adservingfactory.com^$third-party (easylist.txt: 24683) -.adservingfactory.com -# ||adservhere.com^$third-party (easylist.txt: 24682) -.adservhere.com -# ||adserverpub.com^$third-party (easylist.txt: 24681) -.adserverpub.com -# ||adserverplus.com^$third-party (easylist.txt: 24680) -.adserverplus.com -# ||adserver-fx.com^$third-party (easylist.txt: 24679) -.adserver-fx.com -# ||adserve.ph^$third-party (easylist.txt: 24678) -.adserve.ph -# ||adserve.com^$third-party (easylist.txt: 24677) -.adserve.com -# ||adserv8.com^$third-party (easylist.txt: 24676) -.adserv8.com -# ||adsensecamp.com^$third-party (easylist.txt: 24675) -.adsensecamp.com -# ||adsearcher.ru^$third-party (easylist.txt: 24674) -.adsearcher.ru -# ||adsdot.ph^$third-party (easylist.txt: 24673) -.adsdot.ph -# ||adsdk.com^$third-party (easylist.txt: 24672) -.adsdk.com -# ||adsclickingnetwork.com^$third-party (easylist.txt: 24671) -.adsclickingnetwork.com -# ||adscendmedia.com^$third-party (easylist.txt: 24670) -.adscendmedia.com -# ||adscampaign.net^$third-party (easylist.txt: 24669) -.adscampaign.net -# ||adscale.de^$third-party (easylist.txt: 24668) -.adscale.de -# ||adsbrook.com^$third-party (easylist.txt: 24667) -.adsbrook.com -# ||adsbookie.com^$third-party (easylist.txt: 24666) -.adsbookie.com -# ||adsame.com^$third-party (easylist.txt: 24665) -.adsame.com -# ||adsalvo.com^$third-party (easylist.txt: 24664) -.adsalvo.com -# ||adsafeprotected.com^$third-party (easylist.txt: 24663) -.adsafeprotected.com -# ||ads4cheap.com^$third-party (easylist.txt: 24662) -.ads4cheap.com -# ||ads2srv.com^$third-party (easylist.txt: 24661) -.ads2srv.com -# ||ads2ads.net^$third-party (easylist.txt: 24660) -.ads2ads.net -# ||ads01.com^$third-party (easylist.txt: 24659) -.ads01.com -# ||ads.intergi.com^$third-party (easylist.txt: 24658) -.ads.intergi.com -# ||ads-stats.com^$third-party (easylist.txt: 24657) -.ads-stats.com -# ||ads-elsevier.net^$third-party (easylist.txt: 24656) -.ads-elsevier.net -# ||ads-4u.com^$third-party (easylist.txt: 24655) -.ads-4u.com -# ||adrocket.com^$third-party (easylist.txt: 24654) -.adrocket.com -# ||adrise.de^$third-party (easylist.txt: 24653) -.adrise.de -# ||adrich.cash^$third-party (easylist.txt: 24652) -.adrich.cash -# ||adrevolver.com^$third-party (easylist.txt: 24651) -.adrevolver.com -# ||adresellers.com^$third-party (easylist.txt: 24650) -.adresellers.com -# ||adreadytractions.com^$third-party (easylist.txt: 24649) -.adreadytractions.com -# ||adready.com^$third-party (easylist.txt: 24648) -.adready.com -# ||adreactor.com^$third-party (easylist.txt: 24647) -.adreactor.com -# ||adrcdn.com^$third-party (easylist.txt: 24646) -.adrcdn.com -# ||adquest3d.com^$third-party (easylist.txt: 24645) -.adquest3d.com -# ||adquantix.com^$third-party (easylist.txt: 24644) -.adquantix.com -# ||adpushup.com^$third-party (easylist.txt: 24643) -.adpushup.com -# ||adprs.net^$third-party (easylist.txt: 24642) -.adprs.net -# ||adprovi.de^$third-party (easylist.txt: 24641) -.adprovi.de -# ||adprotected.com^$third-party (easylist.txt: 24640) -.adprotected.com -# ||adproper.info^$third-party (easylist.txt: 24639) -.adproper.info -# ||adprofit2share.com^$third-party (easylist.txt: 24638) -.adprofit2share.com -# ||adpremo.com^$third-party (easylist.txt: 24637) -.adpremo.com -# ||adpredictive.com^$third-party (easylist.txt: 24636) -.adpredictive.com -# ||adppv.com^$third-party (easylist.txt: 24635) -.adppv.com -# ||adpoper.com^$third-party (easylist.txt: 24634) -.adpoper.com -# ||adplxmd.com^$third-party (easylist.txt: 24633) -.adplxmd.com -# ||adplugg.com^$third-party (easylist.txt: 24632) -.adplugg.com -# ||adplex.media^$third-party (easylist.txt: 24631) -.adplex.media -# ||adplans.info^$third-party (easylist.txt: 24630) -.adplans.info -# ||adpionier.de^$third-party (easylist.txt: 24629) -.adpionier.de -# ||adpinion.com^$third-party (easylist.txt: 24628) -.adpinion.com -# ||adphreak.com^$third-party (easylist.txt: 24627) -.adphreak.com -# ||adperium.com^$third-party (easylist.txt: 24626) -.adperium.com -# ||adperfect.com^$third-party (easylist.txt: 24625) -.adperfect.com -# ||adpay.com^$third-party (easylist.txt: 24624) -.adpay.com -# ||adpath.mobi^$third-party (easylist.txt: 24623) -.adpath.mobi -# ||adparlor.com^$third-party (easylist.txt: 24622) -.adparlor.com -# ||adpacks.com^$third-party (easylist.txt: 24621) -.adpacks.com -# ||adowner.net^$third-party (easylist.txt: 24620) -.adowner.net -# ||adovida.com^$third-party (easylist.txt: 24619) -.adovida.com -# ||adotube.com^$third-party (easylist.txt: 24618) -.adotube.com -# ||adotomy.com^$third-party (easylist.txt: 24617) -.adotomy.com -# ||adotic.com^$third-party (easylist.txt: 24616) -.adotic.com -# ||adorika.net^$third-party (easylist.txt: 24615) -.adorika.net -# ||adorika.com^$third-party (easylist.txt: 24614) -.adorika.com -# ||adoptim.com^$third-party (easylist.txt: 24613) -.adoptim.com -# ||adoperator.com^$third-party (easylist.txt: 24612) -.adoperator.com -# ||adonweb.ru^$third-party (easylist.txt: 24611) -.adonweb.ru -# ||adonnews.com^$third-party (easylist.txt: 24610) -.adonnews.com -# ||adonly.com^$third-party (easylist.txt: 24609) -.adonly.com -# ||adonion.com^$third-party (easylist.txt: 24608) -.adonion.com -# ||adohana.com^$third-party (easylist.txt: 24607) -.adohana.com -# ||adocean.pl^$third-party (easylist.txt: 24606) -.adocean.pl -# ||adnxs1.com^$third-party (easylist.txt: 24605) -.adnxs1.com -# ||adnxs.net^$third-party (easylist.txt: 24604) -.adnxs.net -# ||adnxs.com^$third-party (easylist.txt: 24603) -.adnxs.com -# ||adnow.com^$third-party (easylist.txt: 24602) -.adnow.com -# ||adnoble.com^$third-party (easylist.txt: 24601) -.adnoble.com -# ||adnmore.co.kr^$third-party (easylist.txt: 24600) -.adnmore.co.kr -# ||adnium.com^$third-party (easylist.txt: 24599) -.adnium.com -# ||adnimation.com^$third-party (easylist.txt: 24598) -.adnimation.com -# ||adngin.com^$third-party (easylist.txt: 24597) -.adngin.com -# ||adnext.fr^$third-party (easylist.txt: 24596) -.adnext.fr -# ||adnetworkperformance.com^$third-party (easylist.txt: 24595) -.adnetworkperformance.com -# ||adnetworkme.com^$third-party (easylist.txt: 24594) -.adnetworkme.com -# ||adnet.vn^$third-party (easylist.txt: 24593) -.adnet.vn -# ||adnet.ru^$third-party (easylist.txt: 24592) -.adnet.ru -# ||adnet.lt^$third-party (easylist.txt: 24591) -.adnet.lt -# ||adnet.de^$third-party (easylist.txt: 24590) -.adnet.de -# ||adnet.com^$third-party (easylist.txt: 24589) -.adnet.com -# ||adnet.biz^$third-party (easylist.txt: 24588) -.adnet.biz -# ||adnet-media.net^$third-party (easylist.txt: 24587) -.adnet-media.net -# ||adnectar.com^$third-party (easylist.txt: 24586) -.adnectar.com -# ||adne.tv^$third-party (easylist.txt: 24585) -.adne.tv -# ||admzn.com^$third-party (easylist.txt: 24584) -.admzn.com -# ||admulti.com^$third-party (easylist.txt: 24583) -.admulti.com -# ||admtpmp127.com^$third-party (easylist.txt: 24582) -.admtpmp127.com -# ||admpads.com^$third-party (easylist.txt: 24581) -.admpads.com -# ||admngronline.com^$third-party (easylist.txt: 24580) -.admngronline.com -# ||admixer.net^$third-party (easylist.txt: 24579) -.admixer.net -# ||admitad.com^$third-party (easylist.txt: 24578) -.admitad.com -# ||admission.net^$third-party (easylist.txt: 24577) -.admission.net -# ||admeta.com^$third-party (easylist.txt: 24576) -.admeta.com -# ||admeld.com^$third-party (easylist.txt: 24575) -.admeld.com -# ||admedo.com^$third-party (easylist.txt: 24574) -.admedo.com -# ||admedias.net^$third-party (easylist.txt: 24573) -.admedias.net -# ||admedia.com^$third-party (easylist.txt: 24572) -.admedia.com -# ||admaya.in^$third-party (easylist.txt: 24571) -.admaya.in -# ||admaxim.com^$third-party (easylist.txt: 24570) -.admaxim.com -# ||admarketplace.net^$third-party (easylist.txt: 24569) -.admarketplace.net -# ||admanmedia.com^$third-party (easylist.txt: 24568) -.admanmedia.com -# ||admanage.com^$third-party (easylist.txt: 24567) -.admanage.com -# ||adman.gr^$third-party (easylist.txt: 24566) -.adman.gr -# ||admamba.com^$third-party (easylist.txt: 24565) -.admamba.com -# ||admailtiser.com^$third-party (easylist.txt: 24564) -.admailtiser.com -# ||admagnet.net^$third-party (easylist.txt: 24563) -.admagnet.net -# ||adm.fwmrm.net/p/mtvn_live/$object-subrequest,third-party (easylist.txt: 24562) -.adm.fwmrm.net/p/mtvn_live/ -# ||adlux.com^$third-party (easylist.txt: 24559) -.adlux.com -# ||adlure.biz^$third-party (easylist.txt: 24558) -.adlure.biz -# ||adlpartner.com^$third-party (easylist.txt: 24557) -.adlpartner.com -# ||adlooxtracking.com^$third-party (easylist.txt: 24556) -.adlooxtracking.com -# ||adloaded.com^$third-party (easylist.txt: 24555) -.adloaded.com -# ||adlisher.com^$third-party (easylist.txt: 24554) -.adlisher.com -# ||adlinx.info^$third-party (easylist.txt: 24553) -.adlinx.info -# ||adlink.net^$third-party (easylist.txt: 24552) -.adlink.net -# ||adlegend.com^$third-party (easylist.txt: 24551) -.adlegend.com -# ||adlayer.net^$third-party (easylist.txt: 24550) -.adlayer.net -# ||adkonekt.com^$third-party (easylist.txt: 24549) -.adkonekt.com -# ||adknowledge.com^$third-party (easylist.txt: 24548) -.adknowledge.com -# ||adklip.com^$third-party (easylist.txt: 24547) -.adklip.com -# ||adkick.net^$third-party (easylist.txt: 24546) -.adkick.net -# ||adkengage.com^$third-party (easylist.txt: 24545) -.adkengage.com -# ||adk2x.com^$third-party (easylist.txt: 24544) -.adk2x.com -# ||adk2.com^$third-party (easylist.txt: 24543) -.adk2.com -# ||adk2.co^$third-party (easylist.txt: 24542) -.adk2.co -# ||adjungle.com^$third-party (easylist.txt: 24541) -.adjungle.com -# ||adjuggler.net^$third-party (easylist.txt: 24540) -.adjuggler.net -# ||adjuggler.com^$third-party (easylist.txt: 24539) -.adjuggler.com -# ||adjug.com^$third-party (easylist.txt: 24538) -.adjug.com -# ||adjector.com^$third-party (easylist.txt: 24537) -.adjector.com -# ||adjal.com^$third-party (easylist.txt: 24536) -.adjal.com -# ||adition.com^$third-party (easylist.txt: 24535) -.adition.com -# ||adit-media.com^$third-party (easylist.txt: 24534) -.adit-media.com -# ||adisn.com^$third-party (easylist.txt: 24533) -.adisn.com -# ||adisfy.com^$third-party (easylist.txt: 24532) -.adisfy.com -# ||adireland.com^$third-party (easylist.txt: 24531) -.adireland.com -# ||adiqglobal.com^$third-party (easylist.txt: 24530) -.adiqglobal.com -# ||adip.ly^$third-party (easylist.txt: 24529) -.adip.ly -# ||adinterax.com^$third-party (easylist.txt: 24528) -.adinterax.com -# ||adintend.com^$third-party (easylist.txt: 24527) -.adintend.com -# ||adinfinity.com.au^$third-party (easylist.txt: 24526) -.adinfinity.com.au -# ||adindigo.com^$third-party (easylist.txt: 24525) -.adindigo.com -# ||adincon.com^$third-party (easylist.txt: 24524) -.adincon.com -# ||adinch.com^$third-party (easylist.txt: 24523) -.adinch.com -# ||adimpression.net^$third-party (easylist.txt: 24522) -.adimpression.net -# ||adimperia.com^$third-party (easylist.txt: 24521) -.adimperia.com -# ||adimpact.com^$third-party (easylist.txt: 24520) -.adimpact.com -# ||adimise.com^$third-party (easylist.txt: 24519) -.adimise.com -# ||adikteev.com^$third-party (easylist.txt: 24518) -.adikteev.com -# ||adigniter.org^$third-party (easylist.txt: 24517) -.adigniter.org -# ||adicate.com^$third-party (easylist.txt: 24516) -.adicate.com -# ||adhub.co.nz^$third-party (easylist.txt: 24515) -.adhub.co.nz -# ||adhostingsolutions.com^$third-party (easylist.txt: 24514) -.adhostingsolutions.com -# ||adhitzads.com^$third-party (easylist.txt: 24513) -.adhitzads.com -# ||adhigh.net^$third-party (easylist.txt: 24512) -.adhigh.net -# ||adhese.net^$third-party (easylist.txt: 24511) -.adhese.net -# ||adhese.com^$third-party (easylist.txt: 24510) -.adhese.com -# ||adhese.be^$third-party (easylist.txt: 24509) -.adhese.be -# ||adgrx.com^$third-party (easylist.txt: 24508) -.adgrx.com -# ||adgroups.com^$third-party (easylist.txt: 24507) -.adgroups.com -# ||adgoto.com^$third-party (easylist.txt: 24506) -.adgoto.com -# ||adgorithms.com^$third-party (easylist.txt: 24505) -.adgorithms.com -# ||adglare.net^$third-party (easylist.txt: 24504) -.adglare.net -# ||adglamour.net^$third-party (easylist.txt: 24503) -.adglamour.net -# ||adgitize.com^$third-party (easylist.txt: 24502) -.adgitize.com -# ||adgine.net^$third-party (easylist.txt: 24501) -.adgine.net -# ||adgila.com^$third-party (easylist.txt: 24500) -.adgila.com -# ||adgent007.com^$third-party (easylist.txt: 24499) -.adgent007.com -# ||adgebra.co.in^$third-party (easylist.txt: 24498) -.adgebra.co.in -# ||adgear.com^$third-party (easylist.txt: 24497) -.adgear.com -# ||adgatemedia.com^$third-party (easylist.txt: 24496) -.adgatemedia.com -# ||adgardener.com^$third-party (easylist.txt: 24495) -.adgardener.com -# ||adgalax.com^$third-party (easylist.txt: 24494) -.adgalax.com -# ||adfusion.com^$third-party (easylist.txt: 24493) -.adfusion.com -# ||adfunkyserver.com^$third-party (easylist.txt: 24492) -.adfunkyserver.com -# ||adfrontiers.com^$third-party (easylist.txt: 24491) -.adfrontiers.com -# ||adfrog.info^$third-party (easylist.txt: 24490) -.adfrog.info -# ||adfrika.com^$third-party (easylist.txt: 24489) -.adfrika.com -# ||adframesrc.com^$third-party (easylist.txt: 24488) -.adframesrc.com -# ||adform.net^$third-party (easylist.txt: 24487) -.adform.net -# ||adforgeinc.com^$third-party (easylist.txt: 24486) -.adforgeinc.com -# ||adforgames.com^$third-party (easylist.txt: 24485) -.adforgames.com -# ||adfootprints.com^$third-party (easylist.txt: 24484) -.adfootprints.com -# ||adfeedstrk.com^$third-party (easylist.txt: 24483) -.adfeedstrk.com -# ||adfactory88.com^$third-party (easylist.txt: 24482) -.adfactory88.com -# ||adf01.net^$third-party (easylist.txt: 24481) -.adf01.net -# ||adextent.com^$third-party (easylist.txt: 24480) -.adextent.com -# ||adexprts.com^$third-party (easylist.txt: 24479) -.adexprts.com -# ||adexprt.com^$third-party (easylist.txt: 24478) -.adexprt.com -# ||adexcite.com^$third-party (easylist.txt: 24477) -.adexcite.com -# ||adespresso.com^$third-party (easylist.txt: 24476) -.adespresso.com -# ||adengage.com^$third-party (easylist.txt: 24475) -.adengage.com -# ||ademails.com^$third-party (easylist.txt: 24474) -.ademails.com -# ||adelement.com^$third-party (easylist.txt: 24473) -.adelement.com -# ||adedy.com^$third-party (easylist.txt: 24472) -.adedy.com -# ||adecn.com^$third-party (easylist.txt: 24471) -.adecn.com -# ||addynamo.net^$third-party (easylist.txt: 24470) -.addynamo.net -# ||addynamix.com^$third-party (easylist.txt: 24469) -.addynamix.com -# ||addynamics.eu^$third-party (easylist.txt: 24468) -.addynamics.eu -# ||addroid.com^$third-party (easylist.txt: 24467) -.addroid.com -# ||addoer.com^$third-party (easylist.txt: 24466) -.addoer.com -# ||addiply.com^$third-party (easylist.txt: 24465) -.addiply.com -# ||addelive.com^$third-party (easylist.txt: 24464) -.addelive.com -# ||addaim.com^$third-party (easylist.txt: 24463) -.addaim.com -# ||adcru.com^$third-party (easylist.txt: 24462) -.adcru.com -# ||adcron.com^$third-party (easylist.txt: 24461) -.adcron.com -# ||adcount.in^$third-party (easylist.txt: 24460) -.adcount.in -# ||adconscious.com^$third-party (easylist.txt: 24459) -.adconscious.com -# ||adcolo.com^$third-party (easylist.txt: 24458) -.adcolo.com -# ||adcloud.net^$third-party (easylist.txt: 24457) -.adcloud.net -# ||adclickmedia.com^$third-party (easylist.txt: 24456) -.adclickmedia.com -# ||adclickafrica.com^$third-party (easylist.txt: 24455) -.adclickafrica.com -# ||adclick.pk^$third-party (easylist.txt: 24454) -.adclick.pk -# ||adclick.lv^$third-party (easylist.txt: 24453) -.adclick.lv -# ||adchoice.co.za^$third-party (easylist.txt: 24452) -.adchoice.co.za -# ||adchemical.com^$third-party (easylist.txt: 24451) -.adchemical.com -# ||adchap.com^$third-party (easylist.txt: 24450) -.adchap.com -# ||adcfrthyo.tk^$third-party (easylist.txt: 24449) -.adcfrthyo.tk -# ||adcentriconline.com^$third-party (easylist.txt: 24448) -.adcentriconline.com -# ||adcdnx.com^$third-party (easylist.txt: 24447) -.adcdnx.com -# ||adcde.com^$third-party (easylist.txt: 24446) -.adcde.com -# ||adcastplus.net^$third-party (easylist.txt: 24445) -.adcastplus.net -# ||adcash.com^$third-party (easylist.txt: 24444) -.adcash.com -# ||adcade.com^$third-party (easylist.txt: 24443) -.adcade.com -# ||adbuyer.com^$third-party (easylist.txt: 24442) -.adbuyer.com -# ||adbutler.com^$third-party (easylist.txt: 24441) -.adbutler.com -# ||adbureau.net^$third-party (easylist.txt: 24440) -.adbureau.net -# ||adbull.com^$third-party (easylist.txt: 24439) -.adbull.com -# ||adbrook.com^$third-party (easylist.txt: 24438) -.adbrook.com -# ||adbroo.com^$third-party (easylist.txt: 24437) -.adbroo.com -# ||adbrite.com^$third-party (easylist.txt: 24436) -.adbrite.com -# ||adbrau.com^$third-party (easylist.txt: 24435) -.adbrau.com -# ||adbooth.net^$third-party (easylist.txt: 24434) -.adbooth.net -# ||adboost.com^$third-party (easylist.txt: 24433) -.adboost.com -# ||adblade.com^$third-party (easylist.txt: 24432) -.adblade.com -# ||adbasket.net^$third-party (easylist.txt: 24431) -.adbasket.net -# ||adbard.net^$third-party (easylist.txt: 24430) -.adbard.net -# ||adapd.com^$third-party (easylist.txt: 24429) -.adapd.com -# ||adap.tv^$~object-subrequest,third-party (easylist.txt: 24428) -.adap.tv -# ||adaos-ads.net^$third-party (easylist.txt: 24427) -.adaos-ads.net -# ||adagora.com^$third-party (easylist.txt: 24426) -.adagora.com -# ||adadvisor.net^$third-party (easylist.txt: 24425) -.adadvisor.net -# ||adaction.se^$third-party (easylist.txt: 24424) -.adaction.se -# ||adacado.com^$third-party (easylist.txt: 24423) -.adacado.com -# ||ad6media.fr^$third-party (easylist.txt: 24422) -.ad6media.fr -# ||ad4game.com^$third-party (easylist.txt: 24421) -.ad4game.com -# ||ad2up.com^$third-party (easylist.txt: 24420) -.ad2up.com -# ||ad2adnetwork.biz^$third-party (easylist.txt: 24418) -.ad2adnetwork.biz -# ||ad2387.com^$third-party (easylist.txt: 24417) -.ad2387.com -# ||ad20.net^$third-party (easylist.txt: 24416) -.ad20.net -# ||ad134m.com^$third-party (easylist.txt: 24415) -.ad134m.com -# ||ad132m.com^$third-party (easylist.txt: 24414) -.ad132m.com -# ||ad131m.com^$third-party (easylist.txt: 24413) -.ad131m.com -# ||ad129m.com^$third-party (easylist.txt: 24412) -.ad129m.com -# ||ad128m.com^$third-party (easylist.txt: 24411) -.ad128m.com -# ||ad127m.com^$third-party (easylist.txt: 24410) -.ad127m.com -# ||ad125m.com^$third-party (easylist.txt: 24409) -.ad125m.com -# ||ad123m.com^$third-party (easylist.txt: 24408) -.ad123m.com -# ||ad122m.com^$third-party (easylist.txt: 24407) -.ad122m.com -# ||ad121m.com^$third-party (easylist.txt: 24406) -.ad121m.com -# ||ad120m.com^$third-party (easylist.txt: 24405) -.ad120m.com -# ||ad.yieldpartners.com^$third-party (easylist.txt: 24404) -.ad.yieldpartners.com -# ||ad.pxlad.io^$third-party (easylist.txt: 24403) -.ad.pxlad.io -# ||ad.mo.doubleclick.net/dartproxy/$third-party (easylist.txt: 24402) -.ad.mo.doubleclick.net/dartproxy/ -# ||ad.linksynergy.com^$third-party (easylist.txt: 24401) -.ad.linksynergy.com -# ||ad.doubleclick.net^$~object-subrequest,third-party (easylist.txt: 24400) -.ad.doubleclick.net -# ||ad.atdmt.com/i/a.js$third-party (easylist.txt: 24399) -.ad.atdmt.com/i/a\.js -# ||ad.atdmt.com/i/a.html$third-party (easylist.txt: 24398) -.ad.atdmt.com/i/a\.html -# ||ad-vice.biz^$third-party (easylist.txt: 24397) -.ad-vice.biz -# ||ad-stir.com^$third-party (easylist.txt: 24396) -.ad-stir.com -# ||ad-srv.net^$third-party (easylist.txt: 24395) -.ad-srv.net -# ||ad-sponsor.com^$third-party (easylist.txt: 24394) -.ad-sponsor.com -# ||ad-serverparc.nl^$third-party (easylist.txt: 24393) -.ad-serverparc.nl -# ||ad-server.co.za^$third-party (easylist.txt: 24392) -.ad-server.co.za -# ||ad-media.org^$third-party (easylist.txt: 24391) -.ad-media.org -# ||ad-maven.com^$third-party (easylist.txt: 24390) -.ad-maven.com -# ||ad-m.asia^$third-party (easylist.txt: 24389) -.ad-m.asia -# ||ad-indicator.com^$third-party (easylist.txt: 24388) -.ad-indicator.com -# ||ad-gbn.com^$third-party (easylist.txt: 24387) -.ad-gbn.com -# ||ad-flow.com^$third-party (easylist.txt: 24386) -.ad-flow.com -# ||ad-delivery.net^$third-party (easylist.txt: 24385) -.ad-delivery.net -# ||ad-clicks.com^$third-party (easylist.txt: 24384) -.ad-clicks.com -# ||ad-bay.com^$third-party (easylist.txt: 24383) -.ad-bay.com -# ||ad-balancer.net^$third-party (easylist.txt: 24382) -.ad-balancer.net -# ||ad-back.net^$third-party (easylist.txt: 24381) -.ad-back.net -# ||activedancer.com^$third-party (easylist.txt: 24380) -.activedancer.com -# ||actiondesk.com^$third-party (easylist.txt: 24379) -.actiondesk.com -# ||acronym.com^$third-party (easylist.txt: 24378) -.acronym.com -# ||acf-webmaster.net^$third-party (easylist.txt: 24377) -.acf-webmaster.net -# ||accuserveadsystem.com^$third-party (easylist.txt: 24376) -.accuserveadsystem.com -# ||accounts.pkr.com^$third-party (easylist.txt: 24375) -.accounts.pkr.com -# ||accmgr.com^$third-party (easylist.txt: 24374) -.accmgr.com -# ||access-mc.com^$third-party (easylist.txt: 24373) -.access-mc.com -# ||accelacomm.com^$third-party (easylist.txt: 24372) -.accelacomm.com -# ||abtracker.us^$third-party (easylist.txt: 24371) -.abtracker.us -# ||aboutads.quantcast.com^$third-party (easylist.txt: 24370) -.aboutads.quantcast.com -# ||abnad.net^$third-party (easylist.txt: 24369) -.abnad.net -# ||abletomeet.com^$third-party (easylist.txt: 24368) -.abletomeet.com -# ||aaa.dv0.info^$third-party (easylist.txt: 24367) -.aaa.dv0.info -# ||aaa.at4.info^$third-party (easylist.txt: 24366) -.aaa.at4.info -# ||aa.voice2page.com^$third-party (easylist.txt: 24365) -.aa.voice2page.com -# ||a5pub.com^$third-party (easylist.txt: 24364) -.a5pub.com -# ||a4dtrk.com^$third-party (easylist.txt: 24363) -.a4dtrk.com -# ||a433.com^$third-party (easylist.txt: 24362) -.a433.com -# ||a3pub.com^$third-party (easylist.txt: 24361) -.a3pub.com -# ||a2pub.com^$third-party (easylist.txt: 24360) -.a2pub.com -# ||a2dfp.net^$third-party (easylist.txt: 24359) -.a2dfp.net -# ||a.raasnet.com^$third-party (easylist.txt: 24358) -.a.raasnet.com -# ||a.ligatus.com^$third-party (easylist.txt: 24357) -.a.ligatus.com -# ||a.adroll.com^$third-party (easylist.txt: 24356) -.a.adroll.com -# ||a-static.com^$third-party (easylist.txt: 24355) -.a-static.com -# ||a-ads.com^$third-party (easylist.txt: 24354) -.a-ads.com -# ||9ts3tpia.com^$third-party (easylist.txt: 24353) -.9ts3tpia.com -# ||9d63c80da.pw^$third-party (easylist.txt: 24352) -.9d63c80da.pw -# ||97d73lsi.com^$third-party (easylist.txt: 24351) -.97d73lsi.com -# ||8yxupue8.com^$third-party (easylist.txt: 24350) -.8yxupue8.com -# ||888promos.com^$third-party (easylist.txt: 24349) -.888promos.com -# ||888medianetwork.com^$third-party (easylist.txt: 24348) -.888medianetwork.com -# ||888media.net^$third-party (easylist.txt: 24347) -.888media.net -# ||82d914.se^$third-party (easylist.txt: 24345) -.82d914.se -# ||7u8a8i88.com^$third-party (easylist.txt: 24344) -.7u8a8i88.com -# ||7search.com^$third-party (easylist.txt: 24343) -.7search.com -# ||7pud.com^$third-party (easylist.txt: 24342) -.7pud.com -# ||7insight.com^$third-party (easylist.txt: 24341) -.7insight.com -# ||78.140.131.214^ (easylist.txt: 24340) -.78.140.131.214 -# ||78.138.126.253^$third-party (easylist.txt: 24339) -.78.138.126.253 -# ||778669.com^$third-party (easylist.txt: 24338) -.778669.com -# ||777seo.com^$third-party (easylist.txt: 24337) -.777seo.com -# ||74.117.182.77^ (easylist.txt: 24336) -.74.117.182.77 -# ||64.20.60.123^$third-party (easylist.txt: 24335) -.64.20.60.123 -# ||63.225.61.4^$third-party (easylist.txt: 24334) -.63.225.61.4 -# ||600z.com^$third-party (easylist.txt: 24332) -.600z.com -# ||5gl1x9qc.com^$third-party (easylist.txt: 24331) -.5gl1x9qc.com -# ||5clickcashsoftware.com^$third-party (easylist.txt: 24330) -.5clickcashsoftware.com -# ||5advertise.com^$third-party (easylist.txt: 24329) -.5advertise.com -# ||5362367e.info^$third-party (easylist.txt: 24328) -.5362367e.info -# ||50.7.243.123^$third-party (easylist.txt: 24327) -.50.7.243.123 -# ||4wnet.com^$third-party (easylist.txt: 24326) -.4wnet.com -# ||4uvjosuc.com^$third-party (easylist.txt: 24325) -.4uvjosuc.com -# ||4e43ac9c.info^$third-party (easylist.txt: 24324) -.4e43ac9c.info -# ||4dsply.com^$third-party (easylist.txt: 24323) -.4dsply.com -# ||4affiliate.net^$third-party (easylist.txt: 24322) -.4affiliate.net -# ||46.165.197.231^ (easylist.txt: 24320) -.46.165.197.231 -# ||46.165.197.153^ (easylist.txt: 24319) -.46.165.197.153 -# ||43plc.com^$third-party (easylist.txt: 24318) -.43plc.com -# ||3t7euflv.com^$third-party (easylist.txt: 24317) -.3t7euflv.com -# ||3redlightfix.com^$third-party (easylist.txt: 24316) -.3redlightfix.com -# ||3rdads.com^$third-party (easylist.txt: 24315) -.3rdads.com -# ||3omb.com^$third-party (easylist.txt: 24314) -.3omb.com -# ||3lr67y45.com^$third-party (easylist.txt: 24313) -.3lr67y45.com -# ||3lift.com^$third-party (easylist.txt: 24312) -.3lift.com -# ||3cnce854.com^$third-party (easylist.txt: 24311) -.3cnce854.com -# ||365sbaffiliates.com^$third-party (easylist.txt: 24310) -.365sbaffiliates.com -# ||360yield.com^$third-party (easylist.txt: 24309) -.360yield.com -# ||360popads.com^$third-party (easylist.txt: 24308) -.360popads.com -# ||360installer.com^$third-party (easylist.txt: 24307) -.360installer.com -# ||360adstrack.com^$third-party (easylist.txt: 24306) -.360adstrack.com -# ||360ads.com^$third-party (easylist.txt: 24305) -.360ads.com -# ||350media.com^$third-party (easylist.txt: 24304) -.350media.com -# ||3393.com^$third-party (easylist.txt: 24303) -.3393.com -# ||32b4oilo.com^$third-party (easylist.txt: 24302) -.32b4oilo.com -# ||2xbpub.com^$third-party (easylist.txt: 24301) -.2xbpub.com -# ||2mdn.net^$~object-subrequest,third-party (easylist.txt: 24300) -.2mdn.net -# ||2mdn.net/dot.gif$object-subrequest,third-party (easylist.txt: 24298) -.2mdn.net/dot\.gif -# ||2mdn.info^$third-party (easylist.txt: 24297) -.2mdn.info -# ||2dpt.com^$third-party (easylist.txt: 24296) -.2dpt.com -# ||2d4c3872.info^$third-party (easylist.txt: 24295) -.2d4c3872.info -# ||2d4c3870.info^$third-party (easylist.txt: 24294) -.2d4c3870.info -# ||254a.com^$third-party (easylist.txt: 24293) -.254a.com -# ||247realmedia.com^$third-party (easylist.txt: 24292) -.247realmedia.com -# ||213.163.70.183^$third-party (easylist.txt: 24291) -.213.163.70.183 -# ||20dollars2surf.com^$third-party (easylist.txt: 24290) -.20dollars2surf.com -# ||206ads.com^$third-party (easylist.txt: 24288) -.206ads.com -# ||1yk851od.com^$third-party (easylist.txt: 24286) -.1yk851od.com -# ||1sadx.net^$third-party (easylist.txt: 24285) -.1sadx.net -# ||1phads.com^$third-party (easylist.txt: 24284) -.1phads.com -# ||1nimo.com^$third-party (easylist.txt: 24283) -.1nimo.com -# ||1empiredirect.com^$third-party (easylist.txt: 24282) -.1empiredirect.com -# ||1e0y.xyz^$third-party (easylist.txt: 24281) -.1e0y.xyz -# ||1clickdownloads.com^$third-party (easylist.txt: 24280) -.1clickdownloads.com -# ||1ccbt.com^$third-party (easylist.txt: 24279) -.1ccbt.com -# ||194.71.107.25^$third-party (easylist.txt: 24277) -.194.71.107.25 -# ||18clicks.com^$third-party (easylist.txt: 24276) -.18clicks.com -# ||188server.com^$third-party (easylist.txt: 24275) -.188server.com -# ||17a898bb.info^$third-party (easylist.txt: 24273) -.17a898bb.info -# ||17a898b9.info^$third-party (easylist.txt: 24272) -.17a898b9.info -# ||174.142.194.177^$third-party (easylist.txt: 24271) -.174.142.194.177 -# ||15f3c01c.info^$third-party (easylist.txt: 24270) -.15f3c01c.info -# ||15f3c01a.info^$third-party (easylist.txt: 24269) -.15f3c01a.info -# ||152media.com^$third-party (easylist.txt: 24268) -.152media.com -# ||12place.com^$third-party (easylist.txt: 24267) -.12place.com -# ||123date.me^$third-party (easylist.txt: 24266) -.123date.me -# ||1100i.com^$third-party (easylist.txt: 24265) -.1100i.com -# ||10pipsaffiliates.com^$third-party (easylist.txt: 24264) -.10pipsaffiliates.com -# ||10fbb07a4b0.se^$third-party (easylist.txt: 24263) -.10fbb07a4b0.se -# ||103092804.com^$third-party (easylist.txt: 24262) -.103092804.com -# ||101m3.com^$third-party (easylist.txt: 24261) -.101m3.com -# ||0icep80f.com^$third-party (easylist.txt: 24260) -.0icep80f.com -# ||007-gateway.com^$third-party (easylist.txt: 24259) -.007-gateway.com -# _popunder+$popup (easylist.txt: 7171) -/.*_popunder\+ -# ?zoneid=*_bannerid=$popup (easylist.txt: 7170) -/.*\?zoneid=.*_bannerid= -# ?iiadext=$popup (easylist.txt: 7169) -/.*\?iiadext= -# ?bannerid=*&punder=$popup (easylist.txt: 7168) -/.*\?bannerid=.*&punder= -# ?AdUrl=$popup (easylist.txt: 7167) -/.*\?AdUrl= -# =popunders&$popup (easylist.txt: 7166) -/.*=popunders& -# =popunder&$popup (easylist.txt: 7165) -/.*=popunder& -# ://adv.$popup (easylist.txt: 7164) -/.*://adv\. -adv.*. -# ://ads.$popup (easylist.txt: 7163) -/.*://ads\. -ads.*. -# /yesbaby.$popup (easylist.txt: 7162) -/(.*/)?yesbaby\. -yesbaby.*. -# /srvclk.php?$popup (easylist.txt: 7161) -/(.*/)?srvclk\.php\? -# /spopunder^$popup (easylist.txt: 7160) -/(.*/)?spopunder[^\w%.-] -# /showads/*$popup (easylist.txt: 7159) -/(.*/)?showads/.* -# /servlet/ajrotator/*$popup (easylist.txt: 7158) -/(.*/)?servlet/ajrotator/.* -# /rotator.php?$popup (easylist.txt: 7157) -/(.*/)?rotator\.php\? -# /redirect.spark?$popup,third-party (easylist.txt: 7156) -/(.*/)?redirect\.spark\? -# /Redirect.engine$popup (easylist.txt: 7155) -/(.*/)?Redirect\.engine -Redirect.engine*. -# /Redirect.eng?$popup (easylist.txt: 7154) -/(.*/)?Redirect\.eng\? -# /realmedia/ads/*$popup (easylist.txt: 7153) -/(.*/)?realmedia/ads/.* -# /punder.php$popup (easylist.txt: 7152) -/(.*/)?punder\.php -punder.php*. -# /promoredirect?*&campaign=*&zone=$popup (easylist.txt: 7151) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /popupads.$popup (easylist.txt: 7150) -/(.*/)?popupads\. -popupads.*. -# /popunder_$popup (easylist.txt: 7149) -/(.*/)?popunder_ -# /popunder.$popup (easylist.txt: 7148) -/(.*/)?popunder\. -popunder.*. -# /popout.$popup (easylist.txt: 7147) -/(.*/)?popout\. -popout.*. -# /lr.php?zoneid=$popup (easylist.txt: 7146) -/(.*/)?lr\.php\?zoneid= -# /fp.engine?$popup,third-party (easylist.txt: 7145) -/(.*/)?fp\.engine\? -# /bani/index.php?id=$popup (easylist.txt: 7144) -/(.*/)?bani/index\.php\?id= -# /afu.php?$popup (easylist.txt: 7143) -/(.*/)?afu\.php\? -# /advlink.$popup (easylist.txt: 7142) -/(.*/)?advlink\. -advlink.*. -# /adsynserveuserid=$popup (easylist.txt: 7141) -/(.*/)?adsynserveuserid= -# /adstream_sx.ads/*$popup (easylist.txt: 7140) -/(.*/)?adstream_sx\.ads/.* -# /adserver.$popup (easylist.txt: 7139) -/(.*/)?adserver\. -adserver.*. -# /adServe/sa?cid=$popup (easylist.txt: 7138) -/(.*/)?adServe/sa\?cid= -# /ads.htm$popup (easylist.txt: 7137) -/(.*/)?ads\.htm -ads.htm*. -# /AdHandler.aspx?$popup (easylist.txt: 7136) -/(.*/)?AdHandler\.aspx\? -# /adclick.$popup (easylist.txt: 7135) -/(.*/)?adclick\. -adclick.*. -# /ad_pop.php?$popup (easylist.txt: 7134) -/(.*/)?ad_pop\.php\? -# /ad132m/*$popup (easylist.txt: 7133) -/(.*/)?ad132m/.* -# /ad/window.php?$popup (easylist.txt: 7132) -/(.*/)?ad/window\.php\? -# /ad/display.php$popup (easylist.txt: 7131) -/(.*/)?ad/display\.php -# /ad.php|$popup (easylist.txt: 7130) -/(.*/)?ad\.php$ -ad.php -# /ad.php?zone$popup (easylist.txt: 7129) -/(.*/)?ad\.php\?zone -# /ad.php?tag=$popup (easylist.txt: 7128) -/(.*/)?ad\.php\?tag= -# /a/display.php?$popup (easylist.txt: 7127) -/(.*/)?a/display\.php\? -# /?reef=$popup (easylist.txt: 7126) -/(.*/)?\?reef= -# /?placement=*&redirect$popup (easylist.txt: 7125) -/(.*/)?\?placement=.*&redirect -# .engine?PlacementId=$popup (easylist.txt: 7124) -/.*\.engine\?PlacementId= -# .com/ads?$popup (easylist.txt: 7123) -/.*\.com/ads\? -.*.com/ads\? -# .com/?adv=$popup (easylist.txt: 7122) -/.*\.com/\?adv= -.*.com/\?adv= -# .co/ads/$popup (easylist.txt: 7121) -/.*\.co/ads/ -.*.co/ads/ -# -ads-campaign/$popup (easylist.txt: 7120) -/.*-ads-campaign/ -.*-ads-campaign -# &program=revshare&$popup (easylist.txt: 7119) -/.*&program=revshare& -# &popunder=$popup (easylist.txt: 7118) -/.*&popunder= -# &link_type=offer$popup,third-party (easylist.txt: 7117) -/.*&link_type=offer -# _a468x60. (easylist.txt: 7115) -/.*_a468x60\. -# _980x100. (easylist.txt: 7114) -/.*_980x100\. -# _970x30_ (easylist.txt: 7113) -/.*_970x30_ -# _960_90. (easylist.txt: 7112) -/.*_960_90\. -# _936x60. (easylist.txt: 7111) -/.*_936x60\. -# _900x350. (easylist.txt: 7110) -/.*_900x350\. -# _80x468. (easylist.txt: 7109) -/.*_80x468\. -# _800x80_ (easylist.txt: 7108) -/.*_800x80_ -# _800x100. (easylist.txt: 7107) -/.*_800x100\. -# _798x99_ (easylist.txt: 7106) -/.*_798x99_ -# _796x110_ (easylist.txt: 7105) -/.*_796x110_ -# _768x90_ (easylist.txt: 7104) -/.*_768x90_ -# _764x70_ (easylist.txt: 7103) -/.*_764x70_ -# _764x70. (easylist.txt: 7102) -/.*_764x70\. -# _760x90_ (easylist.txt: 7101) -/.*_760x90_ -# _760x100. (easylist.txt: 7100) -/.*_760x100\. -# _750x100. (easylist.txt: 7099) -/.*_750x100\. -# _745_90. (easylist.txt: 7098) -/.*_745_90\. -# _745_60. (easylist.txt: 7097) -/.*_745_60\. -# _730x90_ (easylist.txt: 7096) -/.*_730x90_ -# _730x60_ (easylist.txt: 7095) -/.*_730x60_ -# _730_440. (easylist.txt: 7094) -/.*_730_440\. -# _728x90v1. (easylist.txt: 7093) -/.*_728x90v1\. -# _728x90px_ (easylist.txt: 7092) -/.*_728x90px_ -# _728x90px. (easylist.txt: 7091) -/.*_728x90px\. -# _728x90px- (easylist.txt: 7090) -/.*_728x90px- -# _728x90pg_ (easylist.txt: 7089) -/.*_728x90pg_ -# _728x90b_ (easylist.txt: 7088) -/.*_728x90b_ -# _728x90a_ (easylist.txt: 7087) -/.*_728x90a_ -# _728x90a. (easylist.txt: 7086) -/.*_728x90a\. -# _728x90_ (easylist.txt: 7085) -/.*_728x90_ -# _728x901. (easylist.txt: 7084) -/.*_728x901\. -# _728x90/ (easylist.txt: 7083) -/.*_728x90/ -# _728x90. (easylist.txt: 7082) -/.*_728x90\. -# _728x90- (easylist.txt: 7081) -/.*_728x90- -# _728x90& (easylist.txt: 7080) -/.*_728x90& -# _728x60. (easylist.txt: 7079) -/.*_728x60\. -# _728x150. (easylist.txt: 7078) -/.*_728x150\. -# _728x-90. (easylist.txt: 7077) -/.*_728x-90\. -# _728by90_ (easylist.txt: 7076) -/.*_728by90_ -# _728_x_90_ (easylist.txt: 7075) -/.*_728_x_90_ -# _728_90_ (easylist.txt: 7074) -/.*_728_90_ -# _728_90. (easylist.txt: 7073) -/.*_728_90\. -# _728.htm (easylist.txt: 7072) -/.*_728\.htm -# _728-90_ (easylist.txt: 7071) -/.*_728-90_ -# _728-90. (easylist.txt: 7070) -/.*_728-90\. -# _720x90_ (easylist.txt: 7069) -/.*_720x90_ -# _720x90. (easylist.txt: 7068) -/.*_720x90\. -# _720_90. (easylist.txt: 7067) -/.*_720_90\. -# _700x200. (easylist.txt: 7066) -/.*_700x200\. -# _700_200_ (easylist.txt: 7065) -/.*_700_200_ -# _700_150_ (easylist.txt: 7064) -/.*_700_150_ -# _700_100_ (easylist.txt: 7063) -/.*_700_100_ -# _682x90_ (easylist.txt: 7062) -/.*_682x90_ -# _680x93_ (easylist.txt: 7061) -/.*_680x93_ -# _672x120_ (easylist.txt: 7060) -/.*_672x120_ -# _650x80_ (easylist.txt: 7059) -/.*_650x80_ -# _650x350. (easylist.txt: 7058) -/.*_650x350\. -# _638x200_ (easylist.txt: 7057) -/.*_638x200_ -# _620x203_ (easylist.txt: 7056) -/.*_620x203_ -# _600x90. (easylist.txt: 7055) -/.*_600x90\. -# _600x80. (easylist.txt: 7054) -/.*_600x80\. -# _600x180. (easylist.txt: 7053) -/.*_600x180\. -# _600x160. (easylist.txt: 7052) -/.*_600x160\. -# _600x120_ (easylist.txt: 7051) -/.*_600x120_ -# _600-90. (easylist.txt: 7050) -/.*_600-90\. -# _590x105. (easylist.txt: 7049) -/.*_590x105\. -# _585x75_ (easylist.txt: 7048) -/.*_585x75_ -# _585x75- (easylist.txt: 7047) -/.*_585x75- -# _580x100. (easylist.txt: 7046) -/.*_580x100\. -# _555x70. (easylist.txt: 7045) -/.*_555x70\. -# _550x150. (easylist.txt: 7044) -/.*_550x150\. -# _540_70_ (easylist.txt: 7043) -/.*_540_70_ -# _540_70. (easylist.txt: 7042) -/.*_540_70\. -# _500x440. (easylist.txt: 7041) -/.*_500x440\. -# _490-90_ (easylist.txt: 7040) -/.*_490-90_ -# _486x60_ (easylist.txt: 7039) -/.*_486x60_ -# _486x60. (easylist.txt: 7038) -/.*_486x60\. -# _480x60_ (easylist.txt: 7037) -/.*_480x60_ -# _480x60/ (easylist.txt: 7036) -/.*_480x60/ -# _480x60. (easylist.txt: 7035) -/.*_480x60\. -# _480x60- (easylist.txt: 7034) -/.*_480x60- -# _480_80_ (easylist.txt: 7033) -/.*_480_80_ -# _480_60. (easylist.txt: 7032) -/.*_480_60\. -# _468x90_ (easylist.txt: 7031) -/.*_468x90_ -# _468x90. (easylist.txt: 7030) -/.*_468x90\. -# _468x80_ (easylist.txt: 7029) -/.*_468x80_ -# _468x80/ (easylist.txt: 7028) -/.*_468x80/ -# _468x80. (easylist.txt: 7027) -/.*_468x80\. -# _468x80- (easylist.txt: 7026) -/.*_468x80- -# _468x6o_ (easylist.txt: 7025) -/.*_468x6o_ -# _468x60px_ (easylist.txt: 7024) -/.*_468x60px_ -# _468x60b. (easylist.txt: 7023) -/.*_468x60b\. -# _468x60_ (easylist.txt: 7022) -/.*_468x60_ -# _468x60/ (easylist.txt: 7021) -/.*_468x60/ -# _468x60. (easylist.txt: 7020) -/.*_468x60\. -# _468x60- (easylist.txt: 7019) -/.*_468x60- -# _468x120. (easylist.txt: 7018) -/.*_468x120\. -# _468x100_ (easylist.txt: 7017) -/.*_468x100_ -# _468x100. (easylist.txt: 7016) -/.*_468x100\. -# _468x060_ (easylist.txt: 7015) -/.*_468x060_ -# _468x060. (easylist.txt: 7014) -/.*_468x060\. -# _468x060- (easylist.txt: 7013) -/.*_468x060- -# _468_80_ (easylist.txt: 7012) -/.*_468_80_ -# _468_80. (easylist.txt: 7011) -/.*_468_80\. -# _468_60_ (easylist.txt: 7010) -/.*_468_60_ -# _468_60. (easylist.txt: 7009) -/.*_468_60\. -# _468_60- (easylist.txt: 7008) -/.*_468_60- -# _468.htm (easylist.txt: 7007) -/.*_468\.htm -# _468.gif (easylist.txt: 7006) -/.*_468\.gif -# _468-60. (easylist.txt: 7005) -/.*_468-60\. -# _465x110_ (easylist.txt: 7004) -/.*_465x110_ -# _460x60. (easylist.txt: 7003) -/.*_460x60\. -# _460_60. (easylist.txt: 7002) -/.*_460_60\. -# _438x60_ (easylist.txt: 7001) -/.*_438x60_ -# _438x60. (easylist.txt: 7000) -/.*_438x60\. -# _438x50. (easylist.txt: 6999) -/.*_438x50\. -# _420x80_ (easylist.txt: 6998) -/.*_420x80_ -# _420x80. (easylist.txt: 6997) -/.*_420x80\. -# _400x68. (easylist.txt: 6996) -/.*_400x68\. -# _400x60. (easylist.txt: 6995) -/.*_400x60\. -# _400-80. (easylist.txt: 6994) -/.*_400-80\. -# _370x270. (easylist.txt: 6993) -/.*_370x270\. -# _350x100. (easylist.txt: 6992) -/.*_350x100\. -# _350_100_ (easylist.txt: 6991) -/.*_350_100_ -# _350_100. (easylist.txt: 6990) -/.*_350_100\. -# _336x850. (easylist.txt: 6989) -/.*_336x850\. -# _336x280s. (easylist.txt: 6988) -/.*_336x280s\. -# _336x280a. (easylist.txt: 6987) -/.*_336x280a\. -# _336x280_ (easylist.txt: 6986) -/.*_336x280_ -# _336x120. (easylist.txt: 6985) -/.*_336x120\. -# _323x120_ (easylist.txt: 6984) -/.*_323x120_ -# _320x250_ (easylist.txt: 6983) -/.*_320x250_ -# _300x600_ (easylist.txt: 6982) -/.*_300x600_ -# _300x600. (easylist.txt: 6981) -/.*_300x600\. -# _300x250v2. (easylist.txt: 6980) -/.*_300x250v2\. -# _300x250px. (easylist.txt: 6979) -/.*_300x250px\. -# _300x250b. (easylist.txt: 6978) -/.*_300x250b\. -# _300x250a_ (easylist.txt: 6977) -/.*_300x250a_ -# _300x250_ (easylist.txt: 6976) -/.*_300x250_ -# _300x250. (easylist.txt: 6975) -/.*_300x250\. -# _300x250- (easylist.txt: 6974) -/.*_300x250- -# _300x160_ (easylist.txt: 6973) -/.*_300x160_ -# _300_60_ (easylist.txt: 6972) -/.*_300_60_ -# _300_250_ (easylist.txt: 6971) -/.*_300_250_ -# _300_250. (easylist.txt: 6970) -/.*_300_250\. -# _300.htm (easylist.txt: 6969) -/.*_300\.htm -# _300-250- (easylist.txt: 6968) -/.*_300-250- -# _200x600_ (easylist.txt: 6967) -/.*_200x600_ -# _180x450_ (easylist.txt: 6966) -/.*_180x450_ -# _180x300_ (easylist.txt: 6965) -/.*_180x300_ -# _160x600b. (easylist.txt: 6964) -/.*_160x600b\. -# _160x600_ (easylist.txt: 6963) -/.*_160x600_ -# _160x600/ (easylist.txt: 6962) -/.*_160x600/ -# _160x600. (easylist.txt: 6961) -/.*_160x600\. -# _160x600- (easylist.txt: 6960) -/.*_160x600- -# _160x600& (easylist.txt: 6959) -/.*_160x600& -# _160x500. (easylist.txt: 6958) -/.*_160x500\. -# _160x400. (easylist.txt: 6957) -/.*_160x400\. -# _160x350. (easylist.txt: 6956) -/.*_160x350\. -# _160x300_ (easylist.txt: 6955) -/.*_160x300_ -# _160x300. (easylist.txt: 6954) -/.*_160x300\. -# _160x290. (easylist.txt: 6953) -/.*_160x290\. -# _160x1600. (easylist.txt: 6952) -/.*_160x1600\. -# _160by600_ (easylist.txt: 6951) -/.*_160by600_ -# _160_600_ (easylist.txt: 6950) -/.*_160_600_ -# _160_600. (easylist.txt: 6949) -/.*_160_600\. -# _160-600. (easylist.txt: 6948) -/.*_160-600\. -# _150x700_ (easylist.txt: 6947) -/.*_150x700_ -# _140x600_ (easylist.txt: 6946) -/.*_140x600_ -# _140x600. (easylist.txt: 6945) -/.*_140x600\. -# _125x600_ (easylist.txt: 6944) -/.*_125x600_ -# _120x800a. (easylist.txt: 6943) -/.*_120x800a\. -# _120x60_ (easylist.txt: 6942) -/.*_120x60_ -# _120x600px. (easylist.txt: 6941) -/.*_120x600px\. -# _120x600a. (easylist.txt: 6940) -/.*_120x600a\. -# _120x600_ (easylist.txt: 6939) -/.*_120x600_ -# _120x600. (easylist.txt: 6938) -/.*_120x600\. -# _120x600- (easylist.txt: 6937) -/.*_120x600- -# _120x60. (easylist.txt: 6936) -/.*_120x60\. -# _120x500. (easylist.txt: 6935) -/.*_120x500\. -# _120x240_ (easylist.txt: 6934) -/.*_120x240_ -# _120x240. (easylist.txt: 6933) -/.*_120x240\. -# _120h600. (easylist.txt: 6932) -/.*_120h600\. -# _120_x_600. (easylist.txt: 6931) -/.*_120_x_600\. -# _120_600_ (easylist.txt: 6930) -/.*_120_600_ -# _120_600. (easylist.txt: 6929) -/.*_120_600\. -# _120_60. (easylist.txt: 6928) -/.*_120_60\. -# _115x220. (easylist.txt: 6927) -/.*_115x220\. -# _100x480_ (easylist.txt: 6926) -/.*_100x480_ -# =900x60; (easylist.txt: 6925) -/.*=900x60; -# =888x10; (easylist.txt: 6924) -/.*=888x10; -# =760x120& (easylist.txt: 6923) -/.*=760x120& -# =728x90_ (easylist.txt: 6922) -/.*=728x90_ -# =728x90; (easylist.txt: 6921) -/.*=728x90; -# =728x90/ (easylist.txt: 6920) -/.*=728x90/ -# =728x90, (easylist.txt: 6919) -/.*=728x90, -# =728x90& (easylist.txt: 6918) -/.*=728x90& -# =480x60; (easylist.txt: 6917) -/.*=480x60; -# =468x80_ (easylist.txt: 6916) -/.*=468x80_ -# =468x60_ (easylist.txt: 6915) -/.*=468x60_ -# =468x60; (easylist.txt: 6914) -/.*=468x60; -# =468x60/ (easylist.txt: 6913) -/.*=468x60/ -# =468x60, (easylist.txt: 6912) -/.*=468x60, -# =468x60& (easylist.txt: 6911) -/.*=468x60& -# =440x410; (easylist.txt: 6910) -/.*=440x410; -# =336x280; (easylist.txt: 6909) -/.*=336x280; -# =336x280, (easylist.txt: 6908) -/.*=336x280, -# =300x300; (easylist.txt: 6907) -/.*=300x300; -# =300x250_ (easylist.txt: 6906) -/.*=300x250_ -# =300x250; (easylist.txt: 6905) -/.*=300x250; -# =300x250/ (easylist.txt: 6904) -/.*=300x250/ -# =300x250, (easylist.txt: 6903) -/.*=300x250, -# =300x250& (easylist.txt: 6902) -/.*=300x250& -# =234x60_ (easylist.txt: 6901) -/.*=234x60_ -# =234x60; (easylist.txt: 6900) -/.*=234x60; -# =160x600; (easylist.txt: 6899) -/.*=160x600; -# =160x600, (easylist.txt: 6898) -/.*=160x600, -# =160x600& (easylist.txt: 6897) -/.*=160x600& -# =160x160; (easylist.txt: 6896) -/.*=160x160; -# =120x600; (easylist.txt: 6895) -/.*=120x600; -# =120x600, (easylist.txt: 6894) -/.*=120x600, -# 760x90.jpg| (easylist.txt: 6893) -/.*760x90\.jpg$ -.*760x90.jpg -# 750x90.gif| (easylist.txt: 6892) -/.*750x90\.gif$ -.*750x90.gif -# 750x80.swf| (easylist.txt: 6891) -/.*750x80\.swf$ -.*750x80.swf -# 728x90_2.jpg| (easylist.txt: 6890) -/.*728x90_2\.jpg$ -# 728x90.swf| (easylist.txt: 6889) -/.*728x90\.swf$ -.*728x90.swf -# 728x90.swf? (easylist.txt: 6888) -/.*728x90\.swf\? -# 728x90.png| (easylist.txt: 6887) -/.*728x90\.png$ -.*728x90.png -# 728x90.php| (easylist.txt: 6886) -/.*728x90\.php$ -.*728x90.php -# 728x90.php? (easylist.txt: 6885) -/.*728x90\.php\? -# 728x90.jpg| (easylist.txt: 6884) -/.*728x90\.jpg$ -.*728x90.jpg -# 728x90.htm| (easylist.txt: 6883) -/.*728x90\.htm$ -.*728x90.htm -# 728x90.html| (easylist.txt: 6882) -/.*728x90\.html$ -.*728x90.html -# 728x90.gif| (easylist.txt: 6881) -/.*728x90\.gif$ -.*728x90.gif -# 728x290.gif| (easylist.txt: 6880) -/.*728x290\.gif$ -.*728x290.gif -# 700x200.gif| (easylist.txt: 6879) -/.*700x200\.gif$ -.*700x200.gif -# 700_200.jpg| (easylist.txt: 6878) -/.*700_200\.jpg$ -# 700_200.gif| (easylist.txt: 6877) -/.*700_200\.gif$ -# 480x80.jpg| (easylist.txt: 6876) -/.*480x80\.jpg$ -.*480x80.jpg -# 480x60.png| (easylist.txt: 6875) -/.*480x60\.png$ -.*480x60.png -# 470x60.swf| (easylist.txt: 6874) -/.*470x60\.swf$ -.*470x60.swf -# 470x60.swf? (easylist.txt: 6873) -/.*470x60\.swf\? -# 470x60.jpg| (easylist.txt: 6872) -/.*470x60\.jpg$ -.*470x60.jpg -# 470x60.gif| (easylist.txt: 6871) -/.*470x60\.gif$ -.*470x60.gif -# 468x80.gif| (easylist.txt: 6870) -/.*468x80\.gif$ -.*468x80.gif -# 468x60_2.jpg| (easylist.txt: 6869) -/.*468x60_2\.jpg$ -# 468x60_1.gif| (easylist.txt: 6868) -/.*468x60_1\.gif$ -# 468x60.swf| (easylist.txt: 6867) -/.*468x60\.swf$ -.*468x60.swf -# 468x60.swf? (easylist.txt: 6866) -/.*468x60\.swf\? -# 468x60.php| (easylist.txt: 6865) -/.*468x60\.php$ -.*468x60.php -# 468x60.php? (easylist.txt: 6864) -/.*468x60\.php\? -# 468x60.jpg| (easylist.txt: 6863) -/.*468x60\.jpg$ -.*468x60.jpg -# 468x60.htm| (easylist.txt: 6862) -/.*468x60\.htm$ -.*468x60.htm -# 468x60.html| (easylist.txt: 6861) -/.*468x60\.html$ -.*468x60.html -# 468x60.gif| (easylist.txt: 6860) -/.*468x60\.gif$ -.*468x60.gif -# 468_60.gif| (easylist.txt: 6859) -/.*468_60\.gif$ -# 468-60.swf| (easylist.txt: 6858) -/.*468-60\.swf$ -.*468-60.swf -# 468-60.swf? (easylist.txt: 6857) -/.*468-60\.swf\? -# 468-60.gif| (easylist.txt: 6856) -/.*468-60\.gif$ -.*468-60.gif -# 460x70.jpg| (easylist.txt: 6855) -/.*460x70\.jpg$ -.*460x70.jpg -# 450x55.jpg| (easylist.txt: 6854) -/.*450x55\.jpg$ -.*450x55.jpg -# 160x6001.jpg| (easylist.txt: 6853) -/.*160x6001\.jpg$ -.*160x6001.jpg -# 160x600.swf| (easylist.txt: 6852) -/.*160x600\.swf$ -.*160x600.swf -# 160x600.swf? (easylist.txt: 6851) -/.*160x600\.swf\? -# 160x600.png| (easylist.txt: 6850) -/.*160x600\.png$ -.*160x600.png -# 160x600.php| (easylist.txt: 6849) -/.*160x600\.php$ -.*160x600.php -# 160x600.php? (easylist.txt: 6848) -/.*160x600\.php\? -# 160x600.jpg| (easylist.txt: 6847) -/.*160x600\.jpg$ -.*160x600.jpg -# 160x600.htm| (easylist.txt: 6846) -/.*160x600\.htm$ -.*160x600.htm -# 160x600.html| (easylist.txt: 6845) -/.*160x600\.html$ -.*160x600.html -# 160x600.gif| (easylist.txt: 6844) -/.*160x600\.gif$ -.*160x600.gif -# 160x300.gif| (easylist.txt: 6843) -/.*160x300\.gif$ -.*160x300.gif -# 133x394.gif| (easylist.txt: 6842) -/.*133x394\.gif$ -.*133x394.gif -# 125x600.swf| (easylist.txt: 6841) -/.*125x600\.swf$ -.*125x600.swf -# 125x600.swf? (easylist.txt: 6840) -/.*125x600\.swf\? -# 125x600.gif| (easylist.txt: 6839) -/.*125x600\.gif$ -.*125x600.gif -# 120x600.swf| (easylist.txt: 6838) -/.*120x600\.swf$ -.*120x600.swf -# 120x600.swf? (easylist.txt: 6837) -/.*120x600\.swf\? -# 120x600.png| (easylist.txt: 6836) -/.*120x600\.png$ -.*120x600.png -# 120x600.htm| (easylist.txt: 6835) -/.*120x600\.htm$ -.*120x600.htm -# 120x600.html| (easylist.txt: 6834) -/.*120x600\.html$ -.*120x600.html -# 120x600.gif| (easylist.txt: 6833) -/.*120x600\.gif$ -.*120x600.gif -# 120x600.gif? (easylist.txt: 6832) -/.*120x600\.gif\? -# 120x500.gif| (easylist.txt: 6831) -/.*120x500\.gif$ -.*120x500.gif -# 120-600.gif| (easylist.txt: 6830) -/.*120-600\.gif$ -.*120-600.gif -# /top728x90. (easylist.txt: 6829) -/(.*/)?top728x90\. -top728x90.*. -# /top728.html (easylist.txt: 6828) -/(.*/)?top728\.html -top728.html*. -# /top468.html (easylist.txt: 6827) -/(.*/)?top468\.html -top468.html*. -# /new300x250/* (easylist.txt: 6826) -/(.*/)?new300x250/.* -# /new160x600/* (easylist.txt: 6825) -/(.*/)?new160x600/.* -# /lightake728x90. (easylist.txt: 6824) -/(.*/)?lightake728x90\. -lightake728x90.*. -# /L300xH250/* (easylist.txt: 6823) -/(.*/)?L300xH250/.* -# /img/728_90 (easylist.txt: 6822) -/(.*/)?img/728_90 -# /img/468_60 (easylist.txt: 6821) -/(.*/)?img/468_60 -# /head486x60. (easylist.txt: 6820) -/(.*/)?head486x60\. -head486x60.*. -# /bottom728x90. (easylist.txt: 6819) -/(.*/)?bottom728x90\. -bottom728x90.*. -# /bottom728.html (easylist.txt: 6818) -/(.*/)?bottom728\.html -bottom728.html*. -# /ban468. (easylist.txt: 6817) -/(.*/)?ban468\. -ban468.*. -# /_iframe728x90. (easylist.txt: 6816) -/(.*/)?_iframe728x90\. -# /980x90. (easylist.txt: 6815) -/(.*/)?980x90\. -980x90.*. -# /960_60_ (easylist.txt: 6814) -/(.*/)?960_60_ -# /950_250. (easylist.txt: 6813) -/(.*/)?950_250\. -# /900x350_ (easylist.txt: 6812) -/(.*/)?900x350_ -# /900x130_ (easylist.txt: 6811) -/(.*/)?900x130_ -# /80x468_ (easylist.txt: 6810) -/(.*/)?80x468_ -# /800x90. (easylist.txt: 6809) -/(.*/)?800x90\. -800x90.*. -# /780x90. (easylist.txt: 6808) -/(.*/)?780x90\. -780x90.*. -# /768x90. (easylist.txt: 6807) -/(.*/)?768x90\. -768x90.*. -# /768x90- (easylist.txt: 6806) -/(.*/)?768x90- -768x90-*. -# /760x90_ (easylist.txt: 6805) -/(.*/)?760x90_ -# /760x120_ (easylist.txt: 6804) -/(.*/)?760x120_ -# /760x120. (easylist.txt: 6803) -/(.*/)?760x120\. -760x120.*. -# /750x100. (easylist.txt: 6802) -/(.*/)?750x100\. -750x100.*. -# /750-100. (easylist.txt: 6801) -/(.*/)?750-100\. -750-100.*. -# /728x90top. (easylist.txt: 6800) -/(.*/)?728x90top\. -728x90top.*. -# /728x90l. (easylist.txt: 6799) -/(.*/)?728x90l\. -728x90l.*. -# /728x90h. (easylist.txt: 6798) -/(.*/)?728x90h\. -728x90h.*. -# /728x90g. (easylist.txt: 6797) -/(.*/)?728x90g\. -728x90g.*. -# /728x90d. (easylist.txt: 6796) -/(.*/)?728x90d\. -728x90d.*. -# /728x90b/* (easylist.txt: 6795) -/(.*/)?728x90b/.* -# /728x90b. (easylist.txt: 6794) -/(.*/)?728x90b\. -728x90b.*. -# /728x90_ (easylist.txt: 6793) -/(.*/)?728x90_ -# /728x90? (easylist.txt: 6792) -/(.*/)?728x90\? -# /728x901. (easylist.txt: 6791) -/(.*/)?728x901\. -728x901.*. -# /728x90/* (easylist.txt: 6790) -/(.*/)?728x90/.* -# /728x90. (easylist.txt: 6789) -/(.*/)?728x90\. -728x90.*. -# /728x90- (easylist.txt: 6788) -/(.*/)?728x90- -728x90-*. -# /728x79_ (easylist.txt: 6787) -/(.*/)?728x79_ -# /728x180- (easylist.txt: 6786) -/(.*/)?728x180- -728x180-*. -# /728x15. (easylist.txt: 6785) -/(.*/)?728x15\. -728x15.*. -# /728by90_ (easylist.txt: 6784) -/(.*/)?728by90_ -# /728_90n. (easylist.txt: 6783) -/(.*/)?728_90n\. -# /728_90_ (easylist.txt: 6782) -/(.*/)?728_90_ -# /728_90/* (easylist.txt: 6781) -/(.*/)?728_90/.* -# /728_90. (easylist.txt: 6780) -/(.*/)?728_90\. -# /728_200_ (easylist.txt: 6779) -/(.*/)?728_200_ -# /728_200. (easylist.txt: 6778) -/(.*/)?728_200\. -# /728.html$subdocument (easylist.txt: 6777) -/(.*/)?728\.html -728.html*. -# /728-90_ (easylist.txt: 6776) -/(.*/)?728-90_ -# /728-90/* (easylist.txt: 6775) -/(.*/)?728-90/.* -# /728-90. (easylist.txt: 6774) -/(.*/)?728-90\. -728-90.*. -# /728-90- (easylist.txt: 6773) -/(.*/)?728-90- -728-90-*. -# /700x90. (easylist.txt: 6772) -/(.*/)?700x90\. -700x90.*. -# /700x250. (easylist.txt: 6771) -/(.*/)?700x250\. -700x250.*. -# /700x120. (easylist.txt: 6770) -/(.*/)?700x120\. -700x120.*. -# /700x100. (easylist.txt: 6769) -/(.*/)?700x100\. -700x100.*. -# /700_200. (easylist.txt: 6768) -/(.*/)?700_200\. -# /700_100_ (easylist.txt: 6767) -/(.*/)?700_100_ -# /660x60. (easylist.txt: 6766) -/(.*/)?660x60\. -660x60.*. -# /660x120_ (easylist.txt: 6765) -/(.*/)?660x120_ -# /640x80- (easylist.txt: 6764) -/(.*/)?640x80- -640x80-*. -# /640x100/* (easylist.txt: 6763) -/(.*/)?640x100/.* -# /60x468. (easylist.txt: 6762) -/(.*/)?60x468\. -60x468.*. -# /600x90. (easylist.txt: 6761) -/(.*/)?600x90\. -600x90.*. -# /600x75_ (easylist.txt: 6760) -/(.*/)?600x75_ -# /600x160_ (easylist.txt: 6759) -/(.*/)?600x160_ -# /600_90_ (easylist.txt: 6758) -/(.*/)?600_90_ -# /600_120_ (easylist.txt: 6757) -/(.*/)?600_120_ -# /600-90. (easylist.txt: 6756) -/(.*/)?600-90\. -600-90.*. -# /600-60. (easylist.txt: 6755) -/(.*/)?600-60\. -600-60.*. -# /540x80_ (easylist.txt: 6754) -/(.*/)?540x80_ -# /530x60_ (easylist.txt: 6753) -/(.*/)?530x60_ -# /500x90. (easylist.txt: 6752) -/(.*/)?500x90\. -500x90.*. -# /496_98_ (easylist.txt: 6751) -/(.*/)?496_98_ -# /486x60_ (easylist.txt: 6750) -/(.*/)?486x60_ -# /480x70_ (easylist.txt: 6749) -/(.*/)?480x70_ -# /480x60_ (easylist.txt: 6748) -/(.*/)?480x60_ -# /480x60/* (easylist.txt: 6747) -/(.*/)?480x60/.* -# /480x60. (easylist.txt: 6746) -/(.*/)?480x60\. -480x60.*. -# /480x60- (easylist.txt: 6745) -/(.*/)?480x60- -480x60-*. -# /480x030_ (easylist.txt: 6744) -/(.*/)?480x030_ -# /480x030. (easylist.txt: 6743) -/(.*/)?480x030\. -480x030.*. -# /475x150- (easylist.txt: 6742) -/(.*/)?475x150- -475x150-*. -# /470x030_ (easylist.txt: 6741) -/(.*/)?470x030_ -# /468x80g. (easylist.txt: 6740) -/(.*/)?468x80g\. -468x80g.*. -# /468x80b. (easylist.txt: 6739) -/(.*/)?468x80b\. -468x80b.*. -# /468x80_ (easylist.txt: 6738) -/(.*/)?468x80_ -# /468x80/* (easylist.txt: 6737) -/(.*/)?468x80/.* -# /468x80. (easylist.txt: 6736) -/(.*/)?468x80\. -468x80.*. -# /468x80- (easylist.txt: 6735) -/(.*/)?468x80- -468x80-*. -# /468x72_ (easylist.txt: 6734) -/(.*/)?468x72_ -# /468x72. (easylist.txt: 6733) -/(.*/)?468x72\. -468x72.*. -# /468x70- (easylist.txt: 6732) -/(.*/)?468x70- -468x70-*. -# /468x60v1_ (easylist.txt: 6731) -/(.*/)?468x60v1_ -# /468x60b. (easylist.txt: 6730) -/(.*/)?468x60b\. -468x60b.*. -# /468x60a_ (easylist.txt: 6729) -/(.*/)?468x60a_ -# /468x60a. (easylist.txt: 6728) -/(.*/)?468x60a\. -468x60a.*. -# /468x60_ (easylist.txt: 6727) -/(.*/)?468x60_ -# /468x60/* (easylist.txt: 6726) -/(.*/)?468x60/.* -# /468x60. (easylist.txt: 6725) -/(.*/)?468x60\. -468x60.*. -# /468x60- (easylist.txt: 6724) -/(.*/)?468x60- -468x60-*. -# /468x280_ (easylist.txt: 6723) -/(.*/)?468x280_ -# /468x280. (easylist.txt: 6722) -/(.*/)?468x280\. -468x280.*. -# /468x060_ (easylist.txt: 6721) -/(.*/)?468x060_ -# /468x060. (easylist.txt: 6720) -/(.*/)?468x060\. -468x060.*. -# /468_80/* (easylist.txt: 6719) -/(.*/)?468_80/.* -# /468_80. (easylist.txt: 6718) -/(.*/)?468_80\. -# /468_60_ (easylist.txt: 6717) -/(.*/)?468_60_ -# /468_60. (easylist.txt: 6716) -/(.*/)?468_60\. -# /468-60_ (easylist.txt: 6715) -/(.*/)?468-60_ -# /468-60. (easylist.txt: 6714) -/(.*/)?468-60\. -468-60.*. -# /468-60- (easylist.txt: 6713) -/(.*/)?468-60- -468-60-*. -# /468-20. (easylist.txt: 6712) -/(.*/)?468-20\. -468-20.*. -# /460x80_ (easylist.txt: 6711) -/(.*/)?460x80_ -# /460x60. (easylist.txt: 6710) -/(.*/)?460x60\. -460x60.*. -# /428x60. (easylist.txt: 6709) -/(.*/)?428x60\. -428x60.*. -# /400x297. (easylist.txt: 6708) -/(.*/)?400x297\. -400x297.*. -# /4-6-8x60. (easylist.txt: 6707) -/(.*/)?4-6-8x60\. -4-6-8x60.*. -# /340x85_ (easylist.txt: 6706) -/(.*/)?340x85_ -# /336x280_ (easylist.txt: 6705) -/(.*/)?336x280_ -# /336x280. (easylist.txt: 6704) -/(.*/)?336x280\. -336x280.*. -# /336x280- (easylist.txt: 6703) -/(.*/)?336x280- -336x280-*. -# /335x205_ (easylist.txt: 6702) -/(.*/)?335x205_ -# /320x250. (easylist.txt: 6701) -/(.*/)?320x250\. -320x250.*. -# /300x90_ (easylist.txt: 6700) -/(.*/)?300x90_ -# /300x350. (easylist.txt: 6699) -/(.*/)?300x350\. -300x350.*. -# /300x250px_ (easylist.txt: 6698) -/(.*/)?300x250px_ -# /300x250px- (easylist.txt: 6697) -/(.*/)?300x250px- -300x250px-*. -# /300x250b. (easylist.txt: 6696) -/(.*/)?300x250b\. -300x250b.*. -# /300x250_ (easylist.txt: 6695) -/(.*/)?300x250_ -# /300x250/* (easylist.txt: 6694) -/(.*/)?300x250/.* -# /300x250. (easylist.txt: 6693) -/(.*/)?300x250\. -300x250.*. -# /300x250- (easylist.txt: 6692) -/(.*/)?300x250- -300x250-*. -# /300x150_ (easylist.txt: 6691) -/(.*/)?300x150_ -# /300_250_ (easylist.txt: 6690) -/(.*/)?300_250_ -# /300.html$subdocument (easylist.txt: 6689) -/(.*/)?300\.html -300.html*. -# /300-250. (easylist.txt: 6688) -/(.*/)?300-250\. -300-250.*. -# /300-250- (easylist.txt: 6687) -/(.*/)?300-250- -300-250-*. -# /270x90- (easylist.txt: 6686) -/(.*/)?270x90- -270x90-*. -# /234x60/* (easylist.txt: 6685) -/(.*/)?234x60/.* -# /230x90_ (easylist.txt: 6684) -/(.*/)?230x90_ -# /190x600. (easylist.txt: 6683) -/(.*/)?190x600\. -190x600.*. -# /190_900. (easylist.txt: 6682) -/(.*/)?190_900\. -# /180x150- (easylist.txt: 6681) -/(.*/)?180x150- -180x150-*. -# /170x700. (easylist.txt: 6680) -/(.*/)?170x700\. -170x700.*. -# /160x600partner. (easylist.txt: 6679) -/(.*/)?160x600partner\. -160x600partner.*. -# /160x600_ (easylist.txt: 6678) -/(.*/)?160x600_ -# /160x600/* (easylist.txt: 6677) -/(.*/)?160x600/.* -# /160x600. (easylist.txt: 6676) -/(.*/)?160x600\. -160x600.*. -# /160x600- (easylist.txt: 6675) -/(.*/)?160x600- -160x600-*. -# /160x400_ (easylist.txt: 6674) -/(.*/)?160x400_ -# /160x400- (easylist.txt: 6673) -/(.*/)?160x400- -160x400-*. -# /160_600_ (easylist.txt: 6672) -/(.*/)?160_600_ -# /160_600. (easylist.txt: 6671) -/(.*/)?160_600\. -# /160.html$subdocument (easylist.txt: 6670) -/(.*/)?160\.html -160.html*. -# /160-600. (easylist.txt: 6669) -/(.*/)?160-600\. -160-600.*. -# /160-600- (easylist.txt: 6668) -/(.*/)?160-600- -160-600-*. -# /150x600_ (easylist.txt: 6667) -/(.*/)?150x600_ -# /150x300_ (easylist.txt: 6666) -/(.*/)?150x300_ -# /150x200- (easylist.txt: 6665) -/(.*/)?150x200- -150x200-*. -# /150_500. (easylist.txt: 6664) -/(.*/)?150_500\. -# /150-500. (easylist.txt: 6663) -/(.*/)?150-500\. -150-500.*. -# /130x600. (easylist.txt: 6662) -/(.*/)?130x600\. -130x600.*. -# /130x600- (easylist.txt: 6661) -/(.*/)?130x600- -130x600-*. -# /125x600_ (easylist.txt: 6660) -/(.*/)?125x600_ -# /125x600- (easylist.txt: 6659) -/(.*/)?125x600- -125x600-*. -# /125x400/* (easylist.txt: 6658) -/(.*/)?125x400/.* -# /125x300_ (easylist.txt: 6657) -/(.*/)?125x300_ -# /125x240/* (easylist.txt: 6656) -/(.*/)?125x240/.* -# /120x600_ (easylist.txt: 6655) -/(.*/)?120x600_ -# /120x600/* (easylist.txt: 6654) -/(.*/)?120x600/.* -# /120x600. (easylist.txt: 6653) -/(.*/)?120x600\. -120x600.*. -# /120x600- (easylist.txt: 6652) -/(.*/)?120x600- -120x600-*. -# /120x240_ (easylist.txt: 6651) -/(.*/)?120x240_ -# /120_600_ (easylist.txt: 6650) -/(.*/)?120_600_ -# /120_600/* (easylist.txt: 6649) -/(.*/)?120_600/.* -# /120_600. (easylist.txt: 6648) -/(.*/)?120_600\. -# /1200x70_ (easylist.txt: 6647) -/(.*/)?1200x70_ -# /120-600. (easylist.txt: 6646) -/(.*/)?120-600\. -120-600.*. -# /120-600- (easylist.txt: 6645) -/(.*/)?120-600- -120-600-*. -# .900x100. (easylist.txt: 6644) -/.*\.900x100\. -.*.900x100.*. -# .728x90_ (easylist.txt: 6643) -/.*\.728x90_ -# .728x90/ (easylist.txt: 6642) -/.*\.728x90/ -.*.728x90 -# .728x90. (easylist.txt: 6641) -/.*\.728x90\. -.*.728x90.*. -# .728x90- (easylist.txt: 6640) -/.*\.728x90- -.*.728x90-*. -# .650x100. (easylist.txt: 6639) -/.*\.650x100\. -.*.650x100.*. -# .480x60_ (easylist.txt: 6638) -/.*\.480x60_ -# .480x60/ (easylist.txt: 6637) -/.*\.480x60/ -.*.480x60 -# .480x60. (easylist.txt: 6636) -/.*\.480x60\. -.*.480x60.*. -# .480x60- (easylist.txt: 6635) -/.*\.480x60- -.*.480x60-*. -# .468x80_ (easylist.txt: 6634) -/.*\.468x80_ -# .468x80/ (easylist.txt: 6633) -/.*\.468x80/ -.*.468x80 -# .468x80. (easylist.txt: 6632) -/.*\.468x80\. -.*.468x80.*. -# .468x80- (easylist.txt: 6631) -/.*\.468x80- -.*.468x80-*. -# .468x60_ (easylist.txt: 6630) -/.*\.468x60_ -# .468x60/ (easylist.txt: 6629) -/.*\.468x60/ -.*.468x60 -# .468x60. (easylist.txt: 6628) -/.*\.468x60\. -.*.468x60.*. -# .468x60- (easylist.txt: 6627) -/.*\.468x60- -.*.468x60-*. -# .300x250_ (easylist.txt: 6626) -/.*\.300x250_ -# .300x250. (easylist.txt: 6625) -/.*\.300x250\. -.*.300x250.*. -# .160x600_ (easylist.txt: 6624) -/.*\.160x600_ -# .160x600. (easylist.txt: 6623) -/.*\.160x600\. -.*.160x600.*. -# .120x600. (easylist.txt: 6622) -/.*\.120x600\. -.*.120x600.*. -# -988x60. (easylist.txt: 6621) -/.*-988x60\. -.*-988x60.*. -# -980x60- (easylist.txt: 6620) -/.*-980x60- -.*-980x60-*. -# -800x150. (easylist.txt: 6619) -/.*-800x150\. -.*-800x150.*. -# -780x90- (easylist.txt: 6618) -/.*-780x90- -.*-780x90-*. -# -729x91- (easylist.txt: 6617) -/.*-729x91- -.*-729x91-*. -# -728x90px2. (easylist.txt: 6616) -/.*-728x90px2\. -.*-728x90px2.*. -# -728x90a_ (easylist.txt: 6615) -/.*-728x90a_ -# -728x90_ (easylist.txt: 6614) -/.*-728x90_ -# -728x90/ (easylist.txt: 6613) -/.*-728x90/ -.*-728x90 -# -728x90. (easylist.txt: 6612) -/.*-728x90\. -.*-728x90.*. -# -728x90- (easylist.txt: 6611) -/.*-728x90- -.*-728x90-*. -# -728x90& (easylist.txt: 6610) -/.*-728x90& -# -728.90. (easylist.txt: 6609) -/.*-728\.90\. -.*-728.90.*. -# -728-90. (easylist.txt: 6608) -/.*-728-90\. -.*-728-90.*. -# -720x90. (easylist.txt: 6607) -/.*-720x90\. -.*-720x90.*. -# -720x90- (easylist.txt: 6606) -/.*-720x90- -.*-720x90-*. -# -720x120- (easylist.txt: 6605) -/.*-720x120- -.*-720x120-*. -# -700-200. (easylist.txt: 6604) -/.*-700-200\. -.*-700-200.*. -# -600x90- (easylist.txt: 6603) -/.*-600x90- -.*-600x90-*. -# -600x70. (easylist.txt: 6602) -/.*-600x70\. -.*-600x70.*. -# -500x100. (easylist.txt: 6601) -/.*-500x100\. -.*-500x100.*. -# -486x60. (easylist.txt: 6600) -/.*-486x60\. -.*-486x60.*. -# -480x60_ (easylist.txt: 6599) -/.*-480x60_ -# -480x60/ (easylist.txt: 6598) -/.*-480x60/ -.*-480x60 -# -480x60. (easylist.txt: 6597) -/.*-480x60\. -.*-480x60.*. -# -480x60- (easylist.txt: 6596) -/.*-480x60- -.*-480x60-*. -# -480x120. (easylist.txt: 6595) -/.*-480x120\. -.*-480x120.*. -# -468x90. (easylist.txt: 6594) -/.*-468x90\. -.*-468x90.*. -# -468x80_ (easylist.txt: 6593) -/.*-468x80_ -# -468x80/ (easylist.txt: 6592) -/.*-468x80/ -.*-468x80 -# -468x80. (easylist.txt: 6591) -/.*-468x80\. -.*-468x80.*. -# -468x80- (easylist.txt: 6590) -/.*-468x80- -.*-468x80-*. -# -468x70. (easylist.txt: 6589) -/.*-468x70\. -.*-468x70.*. -# -468x60px- (easylist.txt: 6588) -/.*-468x60px- -.*-468x60px-*. -# -468x60_ (easylist.txt: 6587) -/.*-468x60_ -# -468x60/ (easylist.txt: 6586) -/.*-468x60/ -.*-468x60 -# -468x60. (easylist.txt: 6585) -/.*-468x60\. -.*-468x60.*. -# -468x60- (easylist.txt: 6584) -/.*-468x60- -.*-468x60-*. -# -468x060_ (easylist.txt: 6583) -/.*-468x060_ -# -468x060- (easylist.txt: 6582) -/.*-468x060- -.*-468x060-*. -# -468by60. (easylist.txt: 6581) -/.*-468by60\. -.*-468by60.*. -# -468_60. (easylist.txt: 6580) -/.*-468_60\. -# -468-60_ (easylist.txt: 6579) -/.*-468-60_ -# -468-60. (easylist.txt: 6578) -/.*-468-60\. -.*-468-60.*. -# -468-60- (easylist.txt: 6577) -/.*-468-60- -.*-468-60-*. -# -468-100. (easylist.txt: 6576) -/.*-468-100\. -.*-468-100.*. -# -460x68. (easylist.txt: 6575) -/.*-460x68\. -.*-460x68.*. -# -300x600. (easylist.txt: 6574) -/.*-300x600\. -.*-300x600.*. -# -300x250_ (easylist.txt: 6573) -/.*-300x250_ -# -300x250-$~xmlhttprequest (easylist.txt: 6572) -/.*-300x250- -.*-300x250-*. -# -300-250. (easylist.txt: 6571) -/.*-300-250\. -.*-300-250.*. -# -161x601- (easylist.txt: 6570) -/.*-161x601- -.*-161x601-*. -# -160x600b. (easylist.txt: 6569) -/.*-160x600b\. -.*-160x600b.*. -# -160x600_ (easylist.txt: 6568) -/.*-160x600_ -# -160x600. (easylist.txt: 6567) -/.*-160x600\. -.*-160x600.*. -# -160x600- (easylist.txt: 6566) -/.*-160x600- -.*-160x600-*. -# -160x400- (easylist.txt: 6565) -/.*-160x400- -.*-160x400-*. -# -160-600. (easylist.txt: 6564) -/.*-160-600\. -.*-160-600.*. -# -125x40- (easylist.txt: 6563) -/.*-125x40- -.*-125x40-*. -# -120x600c. (easylist.txt: 6562) -/.*-120x600c\. -.*-120x600c.*. -# -120x600_ (easylist.txt: 6561) -/.*-120x600_ -# -120x600. (easylist.txt: 6560) -/.*-120x600\. -.*-120x600.*. -# -120x600- (easylist.txt: 6559) -/.*-120x600- -.*-120x600-*. -# -120x60. (easylist.txt: 6558) -/.*-120x60\. -.*-120x60.*. -# -120x60- (easylist.txt: 6557) -/.*-120x60- -.*-120x60-*. -# -120x400. (easylist.txt: 6556) -/.*-120x400\. -.*-120x400.*. -# -120x300. (easylist.txt: 6555) -/.*-120x300\. -.*-120x300.*. -# -120x240. (easylist.txt: 6554) -/.*-120x240\. -.*-120x240.*. -# -120_600_ (easylist.txt: 6553) -/.*-120_600_ -# -120-600. (easylist.txt: 6552) -/.*-120-600\. -.*-120-600.*. -# ,970x90; (easylist.txt: 6551) -/.*,970x90; -# ,728x90, (easylist.txt: 6550) -/.*,728x90, -# ,468x60; (easylist.txt: 6549) -/.*,468x60; -# ,468x60- (easylist.txt: 6548) -/.*,468x60- -# ,160x600; (easylist.txt: 6547) -/.*,160x600; -# /wp-content/plugins/anti_ad_blocker/* (easylist.txt: 6545) -/(.*/)?wp-content/plugins/anti_ad_blocker/.* -# /wp-content/plugins/anti-block/* (easylist.txt: 6544) -/(.*/)?wp-content/plugins/anti-block/.* -# /no-adblock/* (easylist.txt: 6543) -/(.*/)?no-adblock/.* -# /fuckadblock. (easylist.txt: 6542) -/(.*/)?fuckadblock\. -fuckadblock.*. -# /FuckAdBlock-$script (easylist.txt: 6541) -/(.*/)?FuckAdBlock- -FuckAdBlock-*. -# /fuckadb.js (easylist.txt: 6540) -/(.*/)?fuckadb\.js -fuckadb.js*. -# /Disable%2BAdblock. (easylist.txt: 6539) -/(.*/)?Disable%2BAdblock\. -# /blockblock/blockblock.jquery.js (easylist.txt: 6538) -/(.*/)?blockblock/blockblock\.jquery\.js -# /antiadblock. (easylist.txt: 6536) -/(.*/)?antiadblock\. -antiadblock.*. -# /anti_ab. (easylist.txt: 6535) -/(.*/)?anti_ab\. -# /anti-adblock/*$~stylesheet (easylist.txt: 6534) -/(.*/)?anti-adblock/.* -# /adsblocker. (easylist.txt: 6533) -/(.*/)?adsblocker\. -adsblocker.*. -# /adbuddy. (easylist.txt: 6532) -/(.*/)?adbuddy\. -adbuddy.*. -# /adblockdetection. (easylist.txt: 6531) -/(.*/)?adblockdetection\. -adblockdetection.*. -# /adblockdetect. (easylist.txt: 6530) -/(.*/)?adblockdetect\. -adblockdetect.*. -# /adblock_logger. (easylist.txt: 6529) -/(.*/)?adblock_logger\. -# /adblock_detector2. (easylist.txt: 6528) -/(.*/)?adblock_detector2\. -# /adblock_detector. (easylist.txt: 6527) -/(.*/)?adblock_detector\. -# /adblock.gif? (easylist.txt: 6526) -/(.*/)?adblock\.gif\? -# /adblock-notify-by-bweb/* (easylist.txt: 6525) -/(.*/)?adblock-notify-by-bweb/.* -# /adblock-detect. (easylist.txt: 6524) -/(.*/)?adblock-detect\. -adblock-detect.*. -# /adblock-blocker/* (easylist.txt: 6523) -/(.*/)?adblock-blocker/.* -# /adblock-alerter/* (easylist.txt: 6522) -/(.*/)?adblock-alerter/.* -# /adb_detector. (easylist.txt: 6521) -/(.*/)?adb_detector\. -# /adb.min.js (easylist.txt: 6520) -/(.*/)?adb\.min\.js -adb.min.js*. -# /ad-blocker.js (easylist.txt: 6519) -/(.*/)?ad-blocker\.js -ad-blocker.js*. -# -adblocker-detection/ (easylist.txt: 6518) -/.*-adblocker-detection/ -.*-adblocker-detection -# /jquery.peelback.js (easylist.txt: 6516) -/(.*/)?jquery\.peelback\.js -jquery.peelback.js*. -# /sl/assetlisting/? (easylist.txt: 6514) -/(.*/)?sl/assetlisting/\? -# /Tag.rb$script,third-party (easylist.txt: 6512) -/(.*/)?Tag\.rb -Tag.rb*. -# /Tag.eng$script,third-party (easylist.txt: 6511) -/(.*/)?Tag\.eng -Tag.eng*. -# /mediahosting.engine$script,third-party (easylist.txt: 6510) -/(.*/)?mediahosting\.engine -mediahosting.engine*. -# /cdn-cgi/pe/bag?r[]=*pubads.g.doubleclick.net (easylist.txt: 6508) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*pubads\.g\.doubleclick\.net -# /cdn-cgi/pe/bag?r[]=*cpalead.com (easylist.txt: 6507) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*cpalead\.com -# /cdn-cgi/pe/bag2?r[]=*srvpub.com (easylist.txt: 6506) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*srvpub\.com -# /cdn-cgi/pe/bag2?r[]=*revcontent.com (easylist.txt: 6505) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*revcontent\.com -# /cdn-cgi/pe/bag2?r[]=*popcash.net (easylist.txt: 6504) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popcash\.net -# /cdn-cgi/pe/bag2?r[]=*popads.net (easylist.txt: 6503) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# /cdn-cgi/pe/bag2?r[]=*linksmart.com (easylist.txt: 6502) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*linksmart\.com -# /cdn-cgi/pe/bag2?r[]=*juicyads.com (easylist.txt: 6501) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# /cdn-cgi/pe/bag2?r[]=*intellitxt.com (easylist.txt: 6500) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*intellitxt\.com -# /cdn-cgi/pe/bag2?r[]=*googleadservices.com (easylist.txt: 6499) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*googleadservices\.com -# /cdn-cgi/pe/bag2?r[]=*eclkspsa.com (easylist.txt: 6498) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkspsa\.com -# /cdn-cgi/pe/bag2?r[]=*eclkmpbn.com (easylist.txt: 6497) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkmpbn\.com -# /cdn-cgi/pe/bag2?r[]=*cpx.to (easylist.txt: 6496) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*cpx\.to -# /cdn-cgi/pe/bag2?r[]=*content.ad (easylist.txt: 6495) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*content\.ad -# /cdn-cgi/pe/bag2?r[]=*az708531.vo.msecnd.net (easylist.txt: 6494) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*az708531\.vo\.msecnd\.net -# /cdn-cgi/pe/bag2?r[]=*ads.exoclick.com (easylist.txt: 6493) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# /cdn-cgi/pe/bag2?r[]=*adk2.co (easylist.txt: 6492) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adk2\.co -# /cdn-cgi/pe/bag2?r[]=*adblade.com (easylist.txt: 6491) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adblade\.com -# /webservices/jsparselinks.aspx?$script (easylist.txt: 6489) -/(.*/)?webservices/jsparselinks\.aspx\? -# /jquery.dfp.min.js$script (easylist.txt: 6487) -/(.*/)?jquery\.dfp\.min\.js -jquery.dfp.min.js*. -# /jquery.dfp.js$script (easylist.txt: 6486) -/(.*/)?jquery\.dfp\.js -jquery.dfp.js*. -# ||serve.*/promoload? (easylist.txt: 6484) -.serve.*./(.*/)?promoload\? -# ||ox-d.*^auid= (easylist.txt: 6483) -.ox-d.*./(.*[^\w%.-])?auid= -# ||online.*/promoredirect?key= (easylist.txt: 6482) -.online.*./(.*/)?promoredirect\?key= -# ||com/banners/$image,object,subdocument (easylist.txt: 6481) -# ||cacheserve.*/promodisplay? (easylist.txt: 6480) -.cacheserve.*./(.*/)?promodisplay\? -# ||cacheserve.*/promodisplay/ (easylist.txt: 6479) -.cacheserve.*./(.*/)?promodisplay/ -# takeover_banner_ (easylist.txt: 6478) -/.*takeover_banner_ -# takeover_background. (easylist.txt: 6477) -/.*takeover_background\. -# _zedo. (easylist.txt: 6476) -/.*_zedo\. -# _your_ad. (easylist.txt: 6475) -/.*_your_ad\. -# _yahooads/ (easylist.txt: 6474) -/.*_yahooads/ -# _widget_ad. (easylist.txt: 6473) -/.*_widget_ad\. -# _WebBannerAd_ (easylist.txt: 6472) -/.*_WebBannerAd_ -# _webad_ (easylist.txt: 6471) -/.*_webad_ -# _webad. (easylist.txt: 6470) -/.*_webad\. -# _web_ad_ (easylist.txt: 6469) -/.*_web_ad_ -# _Web_ad. (easylist.txt: 6468) -/.*_Web_ad\. -# _web-advert. (easylist.txt: 6467) -/.*_web-advert\. -# _vodaaffi_ (easylist.txt: 6466) -/.*_vodaaffi_ -# _videoad. (easylist.txt: 6465) -/.*_videoad\. -# _video_ads_ (easylist.txt: 6464) -/.*_video_ads_ -# _video_ads/ (easylist.txt: 6463) -/.*_video_ads/ -# _vertical_ad. (easylist.txt: 6462) -/.*_vertical_ad\. -# _valueclick. (easylist.txt: 6461) -/.*_valueclick\. -# _UIM-Ads_ (easylist.txt: 6460) -/.*_UIM-Ads_ -# _tribalfusion. (easylist.txt: 6459) -/.*_tribalfusion\. -# _topad. (easylist.txt: 6458) -/.*_topad\. -# _top_ad_ (easylist.txt: 6457) -/.*_top_ad_ -# _top_ad. (easylist.txt: 6456) -/.*_top_ad\. -# _tile_ad_ (easylist.txt: 6455) -/.*_tile_ad_ -# _theme/ads/ (easylist.txt: 6454) -/.*_theme/ads/ -# _textads/ (easylist.txt: 6453) -/.*_textads/ -# _textads. (easylist.txt: 6452) -/.*_textads\. -# _textad_ (easylist.txt: 6451) -/.*_textad_ -# _text_ads. (easylist.txt: 6450) -/.*_text_ads\. -# _temp/ad_ (easylist.txt: 6449) -/.*_temp/ad_ -# _tagadvertising. (easylist.txt: 6448) -/.*_tagadvertising\. -# _survey_ad_ (easylist.txt: 6447) -/.*_survey_ad_ -# _StickyAdFunc. (easylist.txt: 6446) -/.*_StickyAdFunc\. -# _StickyAd. (easylist.txt: 6445) -/.*_StickyAd\. -# _sticky_ad. (easylist.txt: 6444) -/.*_sticky_ad\. -# _static_ads. (easylist.txt: 6443) -/.*_static_ads\. -# _static/ads/ (easylist.txt: 6442) -/.*_static/ads/ -# _square_ad. (easylist.txt: 6441) -/.*_square_ad\. -# _Spot-Ad_ (easylist.txt: 6440) -/.*_Spot-Ad_ -# _sponsoredlinks_ (easylist.txt: 6439) -/.*_sponsoredlinks_ -# _sponsor/css/ (easylist.txt: 6438) -/.*_sponsor/css/ -# _smartads_ (easylist.txt: 6437) -/.*_smartads_ -# _small_ad. (easylist.txt: 6436) -/.*_small_ad\. -# _Slot_Adv_ (easylist.txt: 6435) -/.*_Slot_Adv_ -# _skyscraper160x600. (easylist.txt: 6434) -/.*_skyscraper160x600\. -# _skybannerview. (easylist.txt: 6433) -/.*_skybannerview\. -# _skinad. (easylist.txt: 6432) -/.*_skinad\. -# _site_sponsor (easylist.txt: 6431) -/.*_site_sponsor -# _sidebarad_ (easylist.txt: 6430) -/.*_sidebarad_ -# _sidebar_ad_ (easylist.txt: 6429) -/.*_sidebar_ad_ -# _sidebar_ad. (easylist.txt: 6428) -/.*_sidebar_ad\. -# _sidead. (easylist.txt: 6427) -/.*_sidead\. -# _show_ads_ (easylist.txt: 6426) -/.*_show_ads_ -# _show_ads= (easylist.txt: 6425) -/.*_show_ads= -# _show_ads. (easylist.txt: 6424) -/.*_show_ads\. -# _sectionfront_ad. (easylist.txt: 6423) -/.*_sectionfront_ad\. -# _search/ads.js (easylist.txt: 6422) -/.*_search/ads\.js -# _rightmn_ads. (easylist.txt: 6421) -/.*_rightmn_ads\. -# _rightad_ (easylist.txt: 6420) -/.*_rightad_ -# _rightad1. (easylist.txt: 6419) -/.*_rightad1\. -# _rightad. (easylist.txt: 6418) -/.*_rightad\. -# _right_ads_ (easylist.txt: 6417) -/.*_right_ads_ -# _right_ads/ (easylist.txt: 6416) -/.*_right_ads/ -# _right_ads. (easylist.txt: 6415) -/.*_right_ads\. -# _right_ad. (easylist.txt: 6414) -/.*_right_ad\. -# _response_ad. (easylist.txt: 6413) -/.*_response_ad\. -# _request_ad. (easylist.txt: 6412) -/.*_request_ad\. -# _reporting_ads. (easylist.txt: 6411) -/.*_reporting_ads\. -# _rectangle_ads. (easylist.txt: 6409) -/.*_rectangle_ads\. -# _railads. (easylist.txt: 6408) -/.*_railads\. -# _radio_ad_ (easylist.txt: 6407) -/.*_radio_ad_ -# _pushads. (easylist.txt: 6406) -/.*_pushads\. -# _psu_ad. (easylist.txt: 6405) -/.*_psu_ad\. -# _promo_ad/ (easylist.txt: 6404) -/.*_promo_ad/ -# _prime_ad. (easylist.txt: 6403) -/.*_prime_ad\. -# _preorderad. (easylist.txt: 6402) -/.*_preorderad\. -# _post_ads. (easylist.txt: 6401) -/.*_post_ads\. -# _popupunder. (easylist.txt: 6400) -/.*_popupunder\. -# _popunder_ (easylist.txt: 6399) -/.*_popunder_ -# _popunder. (easylist.txt: 6398) -/.*_popunder\. -# _pop_under. (easylist.txt: 6397) -/.*_pop_under\. -# _pop_ad/ (easylist.txt: 6396) -/.*_pop_ad/ -# _pop_ad. (easylist.txt: 6395) -/.*_pop_ad\. -# _plus/ads/ (easylist.txt: 6394) -/.*_plus/ads/ -# _player_ads_ (easylist.txt: 6393) -/.*_player_ads_ -# _platform_ads_ (easylist.txt: 6392) -/.*_platform_ads_ -# _platform_ads. (easylist.txt: 6391) -/.*_platform_ads\. -# _partner_ad. (easylist.txt: 6390) -/.*_partner_ad\. -# _panel_ads. (easylist.txt: 6389) -/.*_panel_ads\. -# _paidadvert_ (easylist.txt: 6388) -/.*_paidadvert_ -# _paid_ads/ (easylist.txt: 6387) -/.*_paid_ads/ -# _overlay_ad. (easylist.txt: 6386) -/.*_overlay_ad\. -# _org_ad. (easylist.txt: 6385) -/.*_org_ad\. -# _openx/ (easylist.txt: 6384) -/.*_openx/ -# _openx. (easylist.txt: 6383) -/.*_openx\. -# _onlinead_ (easylist.txt: 6382) -/.*_onlinead_ -# _online_ad. (easylist.txt: 6381) -/.*_online_ad\. -# _mpu_widget? (easylist.txt: 6380) -/.*_mpu_widget\? -# _Mobile_Ad_ (easylist.txt: 6379) -/.*_Mobile_Ad_ -# _mmsadbanner/ (easylist.txt: 6378) -/.*_mmsadbanner/ -# _mid_ad. (easylist.txt: 6377) -/.*_mid_ad\. -# _media/ads/ (easylist.txt: 6376) -/.*_media/ads/ -# _maxi_ad/ (easylist.txt: 6375) -/.*_maxi_ad/ -# _mainad. (easylist.txt: 6374) -/.*_mainad\. -# _main_ad. (easylist.txt: 6373) -/.*_main_ad\. -# _mailLoginAd. (easylist.txt: 6372) -/.*_mailLoginAd\. -# _longad_ (easylist.txt: 6371) -/.*_longad_ -# _logadslot& (easylist.txt: 6370) -/.*_logadslot& -# _load_ad? (easylist.txt: 6369) -/.*_load_ad\? -# _live/ad/ (easylist.txt: 6368) -/.*_live/ad/ -# _link_ads- (easylist.txt: 6367) -/.*_link_ads- -# _left_ad. (easylist.txt: 6366) -/.*_left_ad\. -# _leaderboard_ad_ (easylist.txt: 6365) -/.*_leaderboard_ad_ -# _layerad. (easylist.txt: 6364) -/.*_layerad\. -# _juicyads. (easylist.txt: 6363) -/.*_juicyads\. -# _juiceadv. (easylist.txt: 6362) -/.*_juiceadv\. -# _jtads/ (easylist.txt: 6361) -/.*_jtads/ -# _js/ads.js (easylist.txt: 6360) -/.*_js/ads\.js -# _inlineads. (easylist.txt: 6359) -/.*_inlineads\. -# _inline_advert& (easylist.txt: 6358) -/.*_inline_advert& -# _index_ad. (easylist.txt: 6357) -/.*_index_ad\. -# _images/ads/ (easylist.txt: 6356) -/.*_images/ads/ -# _images/ad_ (easylist.txt: 6355) -/.*_images/ad_ -# _images/ad. (easylist.txt: 6354) -/.*_images/ad\. -# _iframe_ad_ (easylist.txt: 6353) -/.*_iframe_ad_ -# _iad.html? (easylist.txt: 6352) -/.*_iad\.html\? -# _hr_advt/ (easylist.txt: 6351) -/.*_hr_advt/ -# _house_ad_ (easylist.txt: 6350) -/.*_house_ad_ -# _hosting_ad. (easylist.txt: 6349) -/.*_hosting_ad\. -# _home_ad_ (easylist.txt: 6348) -/.*_home_ad_ -# _home_ad. (easylist.txt: 6347) -/.*_home_ad\. -# _homadconfig. (easylist.txt: 6346) -/.*_homadconfig\. -# _homad. (easylist.txt: 6345) -/.*_homad\. -# _headline_ad. (easylist.txt: 6344) -/.*_headline_ad\. -# _headerad. (easylist.txt: 6343) -/.*_headerad\. -# _header_ad_ (easylist.txt: 6342) -/.*_header_ad_ -# _header_ad. (easylist.txt: 6341) -/.*_header_ad\. -# _grid_ad? (easylist.txt: 6340) -/.*_grid_ad\? -# _googlead. (easylist.txt: 6339) -/.*_googlead\. -# _google_ads_ (easylist.txt: 6338) -/.*_google_ads_ -# _google_ads/ (easylist.txt: 6337) -/.*_google_ads/ -# _google_ads. (easylist.txt: 6336) -/.*_google_ads\. -# _google_ad. (easylist.txt: 6335) -/.*_google_ad\. -# _geobanner. (easylist.txt: 6334) -/.*_geobanner\. -# _generic_ad. (easylist.txt: 6333) -/.*_generic_ad\. -# _genads/ (easylist.txt: 6332) -/.*_genads/ -# _gallery_image_ads_$~stylesheet (easylist.txt: 6331) -/.*_gallery_image_ads_ -# _gallery_ads. (easylist.txt: 6330) -/.*_gallery_ads\. -# _gads_top. (easylist.txt: 6329) -/.*_gads_top\. -# _gads_footer. (easylist.txt: 6328) -/.*_gads_footer\. -# _gads_bottom. (easylist.txt: 6327) -/.*_gads_bottom\. -# _fullscreen_ad. (easylist.txt: 6326) -/.*_fullscreen_ad\. -# _friendlyduck. (easylist.txt: 6325) -/.*_friendlyduck\. -# _framed_ad/ (easylist.txt: 6324) -/.*_framed_ad/ -# _footer_ad_ (easylist.txt: 6323) -/.*_footer_ad_ -# _floatingad_ (easylist.txt: 6322) -/.*_floatingad_ -# _floating_ad_ (easylist.txt: 6321) -/.*_floating_ad_ -# _fixed_ad. (easylist.txt: 6320) -/.*_fixed_ad\. -# _files/ad. (easylist.txt: 6319) -/.*_files/ad\. -# _feast_ad. (easylist.txt: 6318) -/.*_feast_ad\. -# _fbadbookingsystem& (easylist.txt: 6317) -/.*_fbadbookingsystem& -# _fach_ad. (easylist.txt: 6316) -/.*_fach_ad\. -# _externalad. (easylist.txt: 6315) -/.*_externalad\. -# _english/adv/ (easylist.txt: 6314) -/.*_english/adv/ -# _engine_ads_ (easylist.txt: 6313) -/.*_engine_ads_ -# _elements/ads/ (easylist.txt: 6312) -/.*_elements/ads/ -# _dynamicads/ (easylist.txt: 6311) -/.*_dynamicads/ -# _dropdown_ad. (easylist.txt: 6310) -/.*_dropdown_ad\. -# _down_ad_ (easylist.txt: 6309) -/.*_down_ad_ -# _doubleclick_ad. (easylist.txt: 6308) -/.*_doubleclick_ad\. -# _doubleclick. (easylist.txt: 6307) -/.*_doubleclick\. -# _displaytopads. (easylist.txt: 6306) -/.*_displaytopads\. -# _displayad_ (easylist.txt: 6305) -/.*_displayad_ -# _dfp.php? (easylist.txt: 6304) -/.*_dfp\.php\? -# _dashad_ (easylist.txt: 6303) -/.*_dashad_ -# _dart_interstitial. (easylist.txt: 6302) -/.*_dart_interstitial\. -# _dart_ads. (easylist.txt: 6301) -/.*_dart_ads\. -# _custom_ad_ (easylist.txt: 6300) -/.*_custom_ad_ -# _custom_ad. (easylist.txt: 6299) -/.*_custom_ad\. -# _contest_ad_ (easylist.txt: 6298) -/.*_contest_ad_ -# _content_ad_ (easylist.txt: 6297) -/.*_content_ad_ -# _content_ad. (easylist.txt: 6296) -/.*_content_ad\. -# _companionad. (easylist.txt: 6295) -/.*_companionad\. -# _ChatAd_ (easylist.txt: 6294) -/.*_ChatAd_ -# _cgbanners.php? (easylist.txt: 6293) -/.*_cgbanners\.php\? -# _centre_ad. (easylist.txt: 6292) -/.*_centre_ad\. -# _buttonad. (easylist.txt: 6291) -/.*_buttonad\. -# _button_ad_ (easylist.txt: 6290) -/.*_button_ad_ -# _btnad_ (easylist.txt: 6289) -/.*_btnad_ -# _box_ad_ (easylist.txt: 6288) -/.*_box_ad_ -# _bottom_ads_ (easylist.txt: 6287) -/.*_bottom_ads_ -# _bottom_ads. (easylist.txt: 6286) -/.*_bottom_ads\. -# _blogads_ (easylist.txt: 6285) -/.*_blogads_ -# _blogads. (easylist.txt: 6284) -/.*_blogads\. -# _blank_ads. (easylist.txt: 6283) -/.*_blank_ads\. -# _bg_ad_left. (easylist.txt: 6282) -/.*_bg_ad_left\. -# _bannerview.php?*&aid= (easylist.txt: 6281) -/.*_bannerview\.php\?.*&aid= -# _bannerads_ (easylist.txt: 6280) -/.*_bannerads_ -# _BannerAd_ (easylist.txt: 6279) -/.*_BannerAd_ -# _bannerad. (easylist.txt: 6278) -/.*_bannerad\. -# _banner_adv_ (easylist.txt: 6277) -/.*_banner_adv_ -# _banner_adv300x250px. (easylist.txt: 6276) -/.*_banner_adv300x250px\. -# _Banner_Ads_ (easylist.txt: 6275) -/.*_Banner_Ads_ -# _banner_ads. (easylist.txt: 6274) -/.*_banner_ads\. -# _banner_ad_ (easylist.txt: 6273) -/.*_banner_ad_ -# _banner_ad. (easylist.txt: 6272) -/.*_banner_ad\. -# _background_ad/ (easylist.txt: 6271) -/.*_background_ad/ -# _background_ad. (easylist.txt: 6270) -/.*_background_ad\. -# _assets/ads/ (easylist.txt: 6269) -/.*_assets/ads/ -# _argus_ad_ (easylist.txt: 6268) -/.*_argus_ad_ -# _alt/ads/ (easylist.txt: 6267) -/.*_alt/ads/ -# _afs_ads. (easylist.txt: 6266) -/.*_afs_ads\. -# _affiliate_ad. (easylist.txt: 6265) -/.*_affiliate_ad\. -# _affiliate/banners/ (easylist.txt: 6264) -/.*_affiliate/banners/ -# _afd_ads. (easylist.txt: 6263) -/.*_afd_ads\. -# _adwriter. (easylist.txt: 6262) -/.*_adwriter\. -# _adwrap. (easylist.txt: 6261) -/.*_adwrap\. -# _advservices. (easylist.txt: 6260) -/.*_advservices\. -# _adview_ (easylist.txt: 6259) -/.*_adview_ -# _adview? (easylist.txt: 6258) -/.*_adview\? -# _AdvertsImgs/ (easylist.txt: 6257) -/.*_AdvertsImgs/ -# _advertsarea. (easylist.txt: 6256) -/.*_advertsarea\. -# _adverts3. (easylist.txt: 6255) -/.*_adverts3\. -# _adverts/ (easylist.txt: 6254) -/.*_adverts/ -# _adverts.js (easylist.txt: 6253) -/.*_adverts\.js -# _advertphoto. (easylist.txt: 6252) -/.*_advertphoto\. -# _advertorials/ (easylist.txt: 6251) -/.*_advertorials/ -# _advertorial_ (easylist.txt: 6250) -/.*_advertorial_ -# _advertorial3. (easylist.txt: 6249) -/.*_advertorial3\. -# _advertorial. (easylist.txt: 6248) -/.*_advertorial\. -# _advertisment. (easylist.txt: 6247) -/.*_advertisment\. -# _advertising_iframe. (easylist.txt: 6246) -/.*_advertising_iframe\. -# _advertising_header. (easylist.txt: 6245) -/.*_advertising_header\. -# _advertising/ (easylist.txt: 6244) -/.*_advertising/ -# _advertising. (easylist.txt: 6243) -/.*_advertising\. -# _advertisementtxt_ (easylist.txt: 6242) -/.*_advertisementtxt_ -# _advertisements/ (easylist.txt: 6241) -/.*_advertisements/ -# _advertisementbar. (easylist.txt: 6240) -/.*_advertisementbar\. -# _advertisement_ (easylist.txt: 6239) -/.*_advertisement_ -# _advertisement/ (easylist.txt: 6238) -/.*_advertisement/ -# _advertisement. (easylist.txt: 6237) -/.*_advertisement\. -# _advertisement- (easylist.txt: 6236) -/.*_advertisement- -# _advertisehere. (easylist.txt: 6235) -/.*_advertisehere\. -# _advertise180. (easylist.txt: 6234) -/.*_advertise180\. -# _advertise. (easylist.txt: 6233) -/.*_advertise\. -# _advertise- (easylist.txt: 6232) -/.*_advertise- -# _advert_vert (easylist.txt: 6231) -/.*_advert_vert -# _advert_overview. (easylist.txt: 6230) -/.*_advert_overview\. -# _advert_label. (easylist.txt: 6229) -/.*_advert_label\. -# _advert_2. (easylist.txt: 6228) -/.*_advert_2\. -# _advert_1. (easylist.txt: 6227) -/.*_advert_1\. -# _advert1. (easylist.txt: 6226) -/.*_advert1\. -# _advert/ (easylist.txt: 6225) -/.*_advert/ -# _advert. (easylist.txt: 6224) -/.*_advert\. -# _Adv_Banner_ (easylist.txt: 6223) -/.*_Adv_Banner_ -# _adv/overlay/ (easylist.txt: 6222) -/.*_adv/overlay/ -# _adv/leaderboard_ (easylist.txt: 6221) -/.*_adv/leaderboard_ -# _adv/300. (easylist.txt: 6220) -/.*_adv/300\. -# _adunit. (easylist.txt: 6219) -/.*_adunit\. -# _adtxt. (easylist.txt: 6218) -/.*_adtxt\. -# _adtop. (easylist.txt: 6217) -/.*_adtop\. -# _adtoma. (easylist.txt: 6216) -/.*_adtoma\. -# _adtitle. (easylist.txt: 6215) -/.*_adtitle\. -# _adtext_ (easylist.txt: 6214) -/.*_adtext_ -# _adtech_ (easylist.txt: 6213) -/.*_adtech_ -# _adtech/$~stylesheet (easylist.txt: 6212) -/.*_adtech/ -# _adtech. (easylist.txt: 6211) -/.*_adtech\. -# _adtech- (easylist.txt: 6210) -/.*_adtech- -# _adtech& (easylist.txt: 6209) -/.*_adtech& -# _adtags. (easylist.txt: 6208) -/.*_adtags\. -# _adsystem/ (easylist.txt: 6207) -/.*_adsystem/ -# _adsys_ (easylist.txt: 6206) -/.*_adsys_ -# _adsys. (easylist.txt: 6205) -/.*_adsys\. -# _adstat. (easylist.txt: 6204) -/.*_adstat\. -# _adssource. (easylist.txt: 6203) -/.*_adssource\. -# _adsrv? (easylist.txt: 6202) -/.*_adsrv\? -# _adsrv= (easylist.txt: 6201) -/.*_adsrv= -# _adsperfectmarket/ (easylist.txt: 6200) -/.*_adsperfectmarket/ -# _adspace_ (easylist.txt: 6199) -/.*_adspace_ -# _adspace- (easylist.txt: 6198) -/.*_adspace- -# _adsonar. (easylist.txt: 6197) -/.*_adsonar\. -# _adskin_ (easylist.txt: 6196) -/.*_adskin_ -# _adskin. (easylist.txt: 6195) -/.*_adskin\. -# _adsjs. (easylist.txt: 6194) -/.*_adsjs\. -# _adshow. (easylist.txt: 6193) -/.*_adshow\. -# _adshare. (easylist.txt: 6192) -/.*_adshare\. -# _adsframe. (easylist.txt: 6191) -/.*_adsframe\. -# _adsetup. (easylist.txt: 6190) -/.*_adsetup\. -# _adserver/ (easylist.txt: 6189) -/.*_adserver/ -# _adserver. (easylist.txt: 6188) -/.*_adserver\. -# _adserved. (easylist.txt: 6187) -/.*_adserved\. -# _adserve/ (easylist.txt: 6186) -/.*_adserve/ -# _adserve. (easylist.txt: 6185) -/.*_adserve\. -# _adsense_ (easylist.txt: 6184) -/.*_adsense_ -# _adsense. (easylist.txt: 6183) -/.*_adsense\. -# _adsdaq. (easylist.txt: 6182) -/.*_adsdaq\. -# _adscript. (easylist.txt: 6181) -/.*_adscript\. -# _adsbgd. (easylist.txt: 6180) -/.*_adsbgd\. -# _ads_top. (easylist.txt: 6179) -/.*_ads_top\. -# _ads_text. (easylist.txt: 6178) -/.*_ads_text\. -# _ads_targeting. (easylist.txt: 6177) -/.*_ads_targeting\. -# _ads_single_ (easylist.txt: 6176) -/.*_ads_single_ -# _ads_reporting. (easylist.txt: 6175) -/.*_ads_reporting\. -# _ads_only& (easylist.txt: 6174) -/.*_ads_only& -# _ads_new. (easylist.txt: 6173) -/.*_ads_new\. -# _ads_multi. (easylist.txt: 6172) -/.*_ads_multi\. -# _ads_index_ (easylist.txt: 6171) -/.*_ads_index_ -# _ads_iframe_ (easylist.txt: 6170) -/.*_ads_iframe_ -# _ads_iframe. (easylist.txt: 6169) -/.*_ads_iframe\. -# _ads_Home. (easylist.txt: 6168) -/.*_ads_Home\. -# _ads_contextualtargeting_ (easylist.txt: 6167) -/.*_ads_contextualtargeting_ -# _ads_cached. (easylist.txt: 6166) -/.*_ads_cached\. -# _ads_async. (easylist.txt: 6165) -/.*_ads_async\. -# _ads? (easylist.txt: 6164) -/.*_ads\? -# _ads9. (easylist.txt: 6163) -/.*_ads9\. -# _ads8. (easylist.txt: 6162) -/.*_ads8\. -# _ads3. (easylist.txt: 6161) -/.*_ads3\. -# _ads2. (easylist.txt: 6160) -/.*_ads2\. -# _ads12. (easylist.txt: 6159) -/.*_ads12\. -# _ads1. (easylist.txt: 6158) -/.*_ads1\. -# _ads/square/ (easylist.txt: 6157) -/.*_ads/square/ -# _ads/js/ (easylist.txt: 6156) -/.*_ads/js/ -# _ads/ip/ (easylist.txt: 6155) -/.*_ads/ip/ -# _ads/inhouse/ (easylist.txt: 6154) -/.*_ads/inhouse/ -# _ads/iframe. (easylist.txt: 6153) -/.*_ads/iframe\. -# _ads/horiz_ (easylist.txt: 6152) -/.*_ads/horiz_ -# _ads/horiz/ (easylist.txt: 6151) -/.*_ads/horiz/ -# _ads/css/ (easylist.txt: 6150) -/.*_ads/css/ -# _ads.php? (easylist.txt: 6149) -/.*_ads\.php\? -# _ads.js? (easylist.txt: 6148) -/.*_ads\.js\? -# _ads.html (easylist.txt: 6147) -/.*_ads\.html -# _ads.cgi (easylist.txt: 6146) -/.*_ads\.cgi -# _ads-affiliates_ (easylist.txt: 6145) -/.*_ads-affiliates_ -# _adrow- (easylist.txt: 6144) -/.*_adrow- -# _adrotator. (easylist.txt: 6143) -/.*_adrotator\. -# _adright2. (easylist.txt: 6142) -/.*_adright2\. -# _adright. (easylist.txt: 6141) -/.*_adright\. -# _adplugin. (easylist.txt: 6140) -/.*_adplugin\. -# _adpartner. (easylist.txt: 6139) -/.*_adpartner\. -# _adpage= (easylist.txt: 6138) -/.*_adpage= -# _adobjects. (easylist.txt: 6137) -/.*_adobjects\. -# _adnetwork. (easylist.txt: 6136) -/.*_adnetwork\. -# _adminka/ (easylist.txt: 6135) -/.*_adminka/ -# _admin/ads/ (easylist.txt: 6134) -/.*_admin/ads/ -# _admarking_ (easylist.txt: 6133) -/.*_admarking_ -# _admanager/ (easylist.txt: 6132) -/.*_admanager/ -# _adlog. (easylist.txt: 6131) -/.*_adlog\. -# _adlinkbar. (easylist.txt: 6130) -/.*_adlinkbar\. -# _adlib. (easylist.txt: 6129) -/.*_adlib\. -# _adlesse. (easylist.txt: 6128) -/.*_adlesse\. -# _adlabel_ (easylist.txt: 6127) -/.*_adlabel_ -# _adjug. (easylist.txt: 6126) -/.*_adjug\. -# _adify. (easylist.txt: 6125) -/.*_adify\. -# _adhub_ (easylist.txt: 6124) -/.*_adhub_ -# _adhoriz. (easylist.txt: 6123) -/.*_adhoriz\. -# _adhome_ (easylist.txt: 6122) -/.*_adhome_ -# _adhome. (easylist.txt: 6121) -/.*_adhome\. -# _adhoc? (easylist.txt: 6120) -/.*_adhoc\? -# _adfunction. (easylist.txt: 6119) -/.*_adfunction\. -# _adframe_ (easylist.txt: 6118) -/.*_adframe_ -# _adframe/ (easylist.txt: 6117) -/.*_adframe/ -# _adframe. (easylist.txt: 6116) -/.*_adframe\. -# _adengine_ (easylist.txt: 6115) -/.*_adengine_ -# _adengage_ (easylist.txt: 6114) -/.*_adengage_ -# _adengage. (easylist.txt: 6113) -/.*_adengage\. -# _adcount= (easylist.txt: 6112) -/.*_adcount= -# _adcontent/ (easylist.txt: 6111) -/.*_adcontent/ -# _adcom. (easylist.txt: 6110) -/.*_adcom\. -# _adchoices. (easylist.txt: 6109) -/.*_adchoices\. -# _adchoice. (easylist.txt: 6108) -/.*_adchoice\. -# _adcall_ (easylist.txt: 6107) -/.*_adcall_ -# _adcall. (easylist.txt: 6106) -/.*_adcall\. -# _adbreak. (easylist.txt: 6105) -/.*_adbreak\. -# _adbox_ (easylist.txt: 6104) -/.*_adbox_ -# _adbox. (easylist.txt: 6103) -/.*_adbox\. -# _adblue. (easylist.txt: 6102) -/.*_adblue\. -# _adbit. (easylist.txt: 6101) -/.*_adbit\. -# _adbg2a. (easylist.txt: 6100) -/.*_adbg2a\. -# _adbg2. (easylist.txt: 6099) -/.*_adbg2\. -# _adbg1a. (easylist.txt: 6098) -/.*_adbg1a\. -# _adbar. (easylist.txt: 6097) -/.*_adbar\. -# _adbanners. (easylist.txt: 6096) -/.*_adbanners\. -# _adbanner_ (easylist.txt: 6095) -/.*_adbanner_ -# _adbanner/ (easylist.txt: 6094) -/.*_adbanner/ -# _adbanner. (easylist.txt: 6093) -/.*_adbanner\. -# _adaptvad. (easylist.txt: 6092) -/.*_adaptvad\. -# _adagency/ (easylist.txt: 6091) -/.*_adagency/ -# _ad_zone_ (easylist.txt: 6090) -/.*_ad_zone_ -# _ad_yellow. (easylist.txt: 6089) -/.*_ad_yellow\. -# _ad_wrapper. (easylist.txt: 6088) -/.*_ad_wrapper\. -# _ad_widesky. (easylist.txt: 6087) -/.*_ad_widesky\. -# _ad_view= (easylist.txt: 6086) -/.*_ad_view= -# _ad_vertical. (easylist.txt: 6085) -/.*_ad_vertical\. -# _ad_url= (easylist.txt: 6084) -/.*_ad_url= -# _ad_template_ (easylist.txt: 6083) -/.*_ad_template_ -# _ad_tall. (easylist.txt: 6082) -/.*_ad_tall\. -# _ad_square. (easylist.txt: 6081) -/.*_ad_square\. -# _ad_sponsor/ (easylist.txt: 6080) -/.*_ad_sponsor/ -# _ad_small. (easylist.txt: 6079) -/.*_ad_small\. -# _ad_slot= (easylist.txt: 6078) -/.*_ad_slot= -# _ad_skyscraper. (easylist.txt: 6077) -/.*_ad_skyscraper\. -# _ad_sky. (easylist.txt: 6076) -/.*_ad_sky\. -# _ad_size. (easylist.txt: 6075) -/.*_ad_size\. -# _ad_side. (easylist.txt: 6074) -/.*_ad_side\. -# _ad_show& (easylist.txt: 6073) -/.*_ad_show& -# _ad_serving. (easylist.txt: 6072) -/.*_ad_serving\. -# _ad_service. (easylist.txt: 6071) -/.*_ad_service\. -# _ad_run. (easylist.txt: 6070) -/.*_ad_run\. -# _ad_right_ (easylist.txt: 6069) -/.*_ad_right_ -# _ad_right. (easylist.txt: 6068) -/.*_ad_right\. -# _ad_renderer_ (easylist.txt: 6067) -/.*_ad_renderer_ -# _ad_render_ (easylist.txt: 6066) -/.*_ad_render_ -# _ad_promo2. (easylist.txt: 6065) -/.*_ad_promo2\. -# _ad_position_ (easylist.txt: 6064) -/.*_ad_position_ -# _ad_placeholder- (easylist.txt: 6063) -/.*_ad_placeholder- -# _ad_page_ (easylist.txt: 6062) -/.*_ad_page_ -# _ad_over_ (easylist.txt: 6061) -/.*_ad_over_ -# _ad_one. (easylist.txt: 6060) -/.*_ad_one\. -# _ad_number= (easylist.txt: 6059) -/.*_ad_number= -# _ad_new_ (easylist.txt: 6058) -/.*_ad_new_ -# _ad_minileaderboard. (easylist.txt: 6057) -/.*_ad_minileaderboard\. -# _ad_middle_ (easylist.txt: 6056) -/.*_ad_middle_ -# _ad_logo. (easylist.txt: 6055) -/.*_ad_logo\. -# _ad_leaderboard. (easylist.txt: 6054) -/.*_ad_leaderboard\. -# _ad_layer_ (easylist.txt: 6053) -/.*_ad_layer_ -# _ad_label. (easylist.txt: 6052) -/.*_ad_label\. -# _ad_interactive. (easylist.txt: 6051) -/.*_ad_interactive\. -# _ad_integration. (easylist.txt: 6050) -/.*_ad_integration\. -# _ad_init/ (easylist.txt: 6049) -/.*_ad_init/ -# _ad_images/ (easylist.txt: 6048) -/.*_ad_images/ -# _ad_image_ (easylist.txt: 6047) -/.*_ad_image_ -# _ad_iframe. (easylist.txt: 6046) -/.*_ad_iframe\. -# _ad_ids= (easylist.txt: 6045) -/.*_ad_ids= -# _ad_homepage. (easylist.txt: 6044) -/.*_ad_homepage\. -# _ad_heading. (easylist.txt: 6043) -/.*_ad_heading\. -# _ad_header. (easylist.txt: 6042) -/.*_ad_header\. -# _ad_head. (easylist.txt: 6041) -/.*_ad_head\. -# _ad_handler. (easylist.txt: 6040) -/.*_ad_handler\. -# _ad_frame. (easylist.txt: 6039) -/.*_ad_frame\. -# _ad_footer_ (easylist.txt: 6038) -/.*_ad_footer_ -# _ad_footer. (easylist.txt: 6037) -/.*_ad_footer\. -# _ad_feed. (easylist.txt: 6036) -/.*_ad_feed\. -# _ad_expand_ (easylist.txt: 6035) -/.*_ad_expand_ -# _ad_engine/ (easylist.txt: 6034) -/.*_ad_engine/ -# _ad_end_ (easylist.txt: 6033) -/.*_ad_end_ -# _ad_domain_ (easylist.txt: 6032) -/.*_ad_domain_ -# _ad_div= (easylist.txt: 6031) -/.*_ad_div= -# _ad_desktop_ (easylist.txt: 6030) -/.*_ad_desktop_ -# _ad_courier. (easylist.txt: 6029) -/.*_ad_courier\. -# _ad_count= (easylist.txt: 6028) -/.*_ad_count= -# _ad_count. (easylist.txt: 6027) -/.*_ad_count\. -# _ad_controller. (easylist.txt: 6026) -/.*_ad_controller\. -# _ad_content. (easylist.txt: 6025) -/.*_ad_content\. -# _ad_code. (easylist.txt: 6024) -/.*_ad_code\. -# _ad_close. (easylist.txt: 6023) -/.*_ad_close\. -# _ad_choices_ (easylist.txt: 6022) -/.*_ad_choices_ -# _ad_choices. (easylist.txt: 6021) -/.*_ad_choices\. -# _ad_change. (easylist.txt: 6020) -/.*_ad_change\. -# _ad_center. (easylist.txt: 6019) -/.*_ad_center\. -# _ad_bsb. (easylist.txt: 6018) -/.*_ad_bsb\. -# _ad_box. (easylist.txt: 6017) -/.*_ad_box\. -# _ad_bottom. (easylist.txt: 6016) -/.*_ad_bottom\. -# _ad_block& (easylist.txt: 6015) -/.*_ad_block& -# _ad_big. (easylist.txt: 6014) -/.*_ad_big\. -# _ad_banner_ (easylist.txt: 6013) -/.*_ad_banner_ -# _ad_banner. (easylist.txt: 6012) -/.*_ad_banner\. -# _ad_background. (easylist.txt: 6011) -/.*_ad_background\. -# _ad_article_ (easylist.txt: 6010) -/.*_ad_article_ -# _ad_actron. (easylist.txt: 6009) -/.*_ad_actron\. -# _ad_350x250. (easylist.txt: 6008) -/.*_ad_350x250\. -# _ad_300. (easylist.txt: 6007) -/.*_ad_300\. -# _ad_2012. (easylist.txt: 6006) -/.*_ad_2012\. -# _ad_125x125. (easylist.txt: 6005) -/.*_ad_125x125\. -# _ad?size= (easylist.txt: 6004) -/.*_ad\?size= -# _ad?darttag= (easylist.txt: 6003) -/.*_ad\?darttag= -# _ad9. (easylist.txt: 6002) -/.*_ad9\. -# _ad728x90. (easylist.txt: 6001) -/.*_ad728x90\. -# _ad6. (easylist.txt: 6000) -/.*_ad6\. -# _ad300x250. (easylist.txt: 5999) -/.*_ad300x250\. -# _ad300. (easylist.txt: 5998) -/.*_ad300\. -# _ad3. (easylist.txt: 5997) -/.*_ad3\. -# _ad234x90- (easylist.txt: 5996) -/.*_ad234x90- -# _ad2. (easylist.txt: 5995) -/.*_ad2\. -# _ad1b. (easylist.txt: 5994) -/.*_ad1b\. -# _ad1a. (easylist.txt: 5993) -/.*_ad1a\. -# _Ad125. (easylist.txt: 5992) -/.*_Ad125\. -# _ad120x120_ (easylist.txt: 5991) -/.*_ad120x120_ -# _ad103. (easylist.txt: 5990) -/.*_ad103\. -# _ad1.$~stylesheet (easylist.txt: 5989) -/.*_ad1\. -# _ad01_ (easylist.txt: 5988) -/.*_ad01_ -# _ad01. (easylist.txt: 5987) -/.*_ad01\. -# _ad/section_ (easylist.txt: 5986) -/.*_ad/section_ -# _ad/public/ (easylist.txt: 5985) -/.*_ad/public/ -# _AD/jquery. (easylist.txt: 5984) -/.*_AD/jquery\. -# _ad/full_ (easylist.txt: 5983) -/.*_ad/full_ -# _ad/display? (easylist.txt: 5982) -/.*_ad/display\? -# _ad.png? (easylist.txt: 5981) -/.*_ad\.png\? -# _ad.php? (easylist.txt: 5980) -/.*_ad\.php\? -# _ad.jsp? (easylist.txt: 5979) -/.*_ad\.jsp\? -# _ad.gif| (easylist.txt: 5978) -/.*_ad\.gif$ -# _ad-125x125. (easylist.txt: 5977) -/.*_ad-125x125\. -# _ad&zone= (easylist.txt: 5976) -/.*_ad&zone= -# _acorn_ad_ (easylist.txt: 5975) -/.*_acorn_ad_ -# _728x90ad_ (easylist.txt: 5974) -/.*_728x90ad_ -# _468x60ad. (easylist.txt: 5973) -/.*_468x60ad\. -# _300x250Banner_ (easylist.txt: 5972) -/.*_300x250Banner_ -# _160x550. (easylist.txt: 5971) -/.*_160x550\. -# _160_ad_ (easylist.txt: 5970) -/.*_160_ad_ -# _125ad. (easylist.txt: 5969) -/.*_125ad\. -# ^pid=Ads^ (easylist.txt: 5968) -/(.*[^\w%.-])?pid=Ads[^\w%.-] -# ^mod=wms&do=view_*&zone= (easylist.txt: 5967) -/(.*[^\w%.-])?mod=wms&do=view_.*&zone= -# ^fp=*&prvtof= (easylist.txt: 5966) -/(.*[^\w%.-])?fp=.*&prvtof= -# ?ZoneID=*&SiteID=*&PageID= (easylist.txt: 5965) -/.*\?ZoneID=.*&SiteID=.*&PageID= -# ?ZoneID=*&PageID=*&SiteID= (easylist.txt: 5964) -/.*\?ZoneID=.*&PageID=.*&SiteID= -# ?wpproadszoneid= (easylist.txt: 5963) -/.*\?wpproadszoneid= -# ?wm=*&prm=rev& (easylist.txt: 5962) -/.*\?wm=.*&prm=rev& -# ?view=ad& (easylist.txt: 5961) -/.*\?view=ad& -# ?type=oas_pop& (easylist.txt: 5960) -/.*\?type=oas_pop& -# ?type=ad& (easylist.txt: 5959) -/.*\?type=ad& -# ?simple_ad_ (easylist.txt: 5958) -/.*\?simple_ad_ -# ?sid=ads (easylist.txt: 5957) -/.*\?sid=ads -# ?service=ad& (easylist.txt: 5956) -/.*\?service=ad& -# ?phpAds_ (easylist.txt: 5955) -/.*\?phpAds_ -# ?OASTagURL= (easylist.txt: 5954) -/.*\?OASTagURL= -# ?module=ads/ (easylist.txt: 5953) -/.*\?module=ads/ -# ?idaffiliation= (easylist.txt: 5952) -/.*\?idaffiliation= -# ?handler=ads& (easylist.txt: 5951) -/.*\?handler=ads& -# ?goto=ad| (easylist.txt: 5950) -/.*\?goto=ad$ -# ?getad=&$~object-subrequest (easylist.txt: 5949) -/.*\?getad=& -# ?g1t2h=*&t1m2k3= (easylist.txt: 5948) -/.*\?g1t2h=.*&t1m2k3= -# ?file=ads& (easylist.txt: 5947) -/.*\?file=ads& -# ?dfpadname= (easylist.txt: 5946) -/.*\?dfpadname= -# ?bannerXGroupId= (easylist.txt: 5945) -/.*\?bannerXGroupId= -# ?bannerid= (easylist.txt: 5944) -/.*\?bannerid= -# ?banner_id= (easylist.txt: 5943) -/.*\?banner_id= -# ?banner.id= (easylist.txt: 5942) -/.*\?banner\.id= -# ?adzone= (easylist.txt: 5941) -/.*\?adzone= -# ?adx= (easylist.txt: 5940) -/.*\?adx= -# ?advurl= (easylist.txt: 5939) -/.*\?advurl= -# ?advtile= (easylist.txt: 5938) -/.*\?advtile= -# ?advsystem= (easylist.txt: 5937) -/.*\?advsystem= -# ?advideo_ (easylist.txt: 5936) -/.*\?advideo_ -# ?advertising= (easylist.txt: 5935) -/.*\?advertising= -# ?advertiser= (easylist.txt: 5932) -/.*\?advertiser= -# ?advertisement= (easylist.txt: 5931) -/.*\?advertisement= -# ?advert_key= (easylist.txt: 5930) -/.*\?advert_key= -# ?adversion= (easylist.txt: 5929) -/.*\?adversion= -# ?adv_type= (easylist.txt: 5928) -/.*\?adv_type= -# ?adv/id= (easylist.txt: 5927) -/.*\?adv/id= -# ?adunitname= (easylist.txt: 5926) -/.*\?adunitname= -# ?adunitid= (easylist.txt: 5925) -/.*\?adunitid= -# ?adunit_id= (easylist.txt: 5924) -/.*\?adunit_id= -# ?adtype= (easylist.txt: 5923) -/.*\?adtype= -# ?adtechplacementid= (easylist.txt: 5922) -/.*\?adtechplacementid= -# ?adtarget= (easylist.txt: 5921) -/.*\?adtarget= -# ?adTagUrl= (easylist.txt: 5920) -/.*\?adTagUrl= -# ?adtag= (easylist.txt: 5919) -/.*\?adtag= -# ?adslot= (easylist.txt: 5918) -/.*\?adslot= -# ?adsize= (easylist.txt: 5917) -/.*\?adsize= -# ?adsite= (easylist.txt: 5916) -/.*\?adsite= -# ?adsdata= (easylist.txt: 5915) -/.*\?adsdata= -# ?ads= (easylist.txt: 5914) -/.*\?ads= -# ?adpartner= (easylist.txt: 5913) -/.*\?adpartner= -# ?adpage= (easylist.txt: 5912) -/.*\?adpage= -# ?adlocation= (easylist.txt: 5911) -/.*\?adlocation= -# ?adloc= (easylist.txt: 5910) -/.*\?adloc= -# ?adfox_ (easylist.txt: 5909) -/.*\?adfox_ -# ?adformat= (easylist.txt: 5908) -/.*\?adformat= -# ?adflashid= (easylist.txt: 5907) -/.*\?adflashid= -# ?adCount= (easylist.txt: 5906) -/.*\?adCount= -# ?adcontext= (easylist.txt: 5905) -/.*\?adcontext= -# ?adclass= (easylist.txt: 5904) -/.*\?adclass= -# ?adarea= (easylist.txt: 5903) -/.*\?adarea= -# ?ad_width= (easylist.txt: 5902) -/.*\?ad_width= -# ?ad_type= (easylist.txt: 5901) -/.*\?ad_type= -# ?ad_tag= (easylist.txt: 5900) -/.*\?ad_tag= -# ?ad_size= (easylist.txt: 5899) -/.*\?ad_size= -# ?ad_ids= (easylist.txt: 5898) -/.*\?ad_ids= -# ?action=ads& (easylist.txt: 5897) -/.*\?action=ads& -# ?*=x55g%3add4vv4fy. (easylist.txt: 5896) -/.*\?.*=x55g%3add4vv4fy\. -# =webad2& (easylist.txt: 5895) -/.*=webad2& -# =web&ads= (easylist.txt: 5894) -/.*=web&ads= -# =tickerReportAdCallback_ (easylist.txt: 5893) -/.*=tickerReportAdCallback_ -# =textads& (easylist.txt: 5892) -/.*=textads& -# =simpleads/ (easylist.txt: 5891) -/.*=simpleads/ -# =showsearchgoogleads& (easylist.txt: 5890) -/.*=showsearchgoogleads& -# =searchadslider| (easylist.txt: 5889) -/.*=searchadslider$ -# =rightAds_ (easylist.txt: 5888) -/.*=rightAds_ -# =oas_tag. (easylist.txt: 5887) -/.*=oas_tag\. -# =js_ads& (easylist.txt: 5886) -/.*=js_ads& -# =iframe_adv& (easylist.txt: 5885) -/.*=iframe_adv& -# =half-page-ad& (easylist.txt: 5884) -/.*=half-page-ad& -# =GetSponsorAds& (easylist.txt: 5883) -/.*=GetSponsorAds& -# =dynamicwebad& (easylist.txt: 5882) -/.*=dynamicwebad& -# =dynamicads& (easylist.txt: 5881) -/.*=dynamicads& -# =displayAds& (easylist.txt: 5880) -/.*=displayAds& -# =DisplayAd& (easylist.txt: 5879) -/.*=DisplayAd& -# =display_ad& (easylist.txt: 5878) -/.*=display_ad& -# =deliverAdFrame& (easylist.txt: 5877) -/.*=deliverAdFrame& -# =dartad_ (easylist.txt: 5876) -/.*=dartad_ -# =com_ads& (easylist.txt: 5875) -/.*=com_ads& -# =clkads/ (easylist.txt: 5874) -/.*=clkads/ -# =big-ad-switch_ (easylist.txt: 5873) -/.*=big-ad-switch_ -# =banners_ad& (easylist.txt: 5872) -/.*=banners_ad& -# =akiba_ads_ (easylist.txt: 5871) -/.*=akiba_ads_ -# =adView& (easylist.txt: 5870) -/.*=adView& -# =advertorial& (easylist.txt: 5869) -/.*=advertorial& -# =advertiser/ (easylist.txt: 5868) -/.*=advertiser/ -# =advertiser. (easylist.txt: 5867) -/.*=advertiser\. -# =advert/ (easylist.txt: 5866) -/.*=advert/ -# =adunit& (easylist.txt: 5865) -/.*=adunit& -# =adtech_ (easylist.txt: 5864) -/.*=adtech_ -# =adspremiumplacement& (easylist.txt: 5863) -/.*=adspremiumplacement& -# =adslot& (easylist.txt: 5862) -/.*=adslot& -# =adshow& (easylist.txt: 5861) -/.*=adshow& -# =adsfinal. (easylist.txt: 5860) -/.*=adsfinal\. -# =adscripts& (easylist.txt: 5859) -/.*=adscripts& -# =adsCallback& (easylist.txt: 5858) -/.*=adsCallback& -# =adreplacementWrapperReg. (easylist.txt: 5857) -/.*=adreplacementWrapperReg\. -# =admodeliframe& (easylist.txt: 5856) -/.*=admodeliframe& -# =adMenu& (easylist.txt: 5855) -/.*=adMenu& -# =admeld& (easylist.txt: 5854) -/.*=admeld& -# =adlabs& (easylist.txt: 5853) -/.*=adlabs& -# =adexpert& (easylist.txt: 5852) -/.*=adexpert& -# =adcode& (easylist.txt: 5851) -/.*=adcode& -# =adcenter& (easylist.txt: 5850) -/.*=adcenter& -# =adbanner_ (easylist.txt: 5849) -/.*=adbanner_ -# =ad_iframe_ (easylist.txt: 5848) -/.*=ad_iframe_ -# =ad_iframe& (easylist.txt: 5847) -/.*=ad_iframe& -# =ad320x50- (easylist.txt: 5846) -/.*=ad320x50- -# =ad-rectangle- (easylist.txt: 5845) -/.*=ad-rectangle- -# =ad-leaderboard- (easylist.txt: 5844) -/.*=ad-leaderboard- -# ;iframeid=ad_ (easylist.txt: 5843) -/.*;iframeid=ad_ -# ;cue=pre;$object-subrequest (easylist.txt: 5842) -/.*;cue=pre; -# ;adsense_ (easylist.txt: 5841) -/.*;adsense_ -# :8080/ads/ (easylist.txt: 5840) -/.*:8080/ads/ -# ://wrapper.*/a? (easylist.txt: 5839) -/.*://wrapper\..*/a\? -wrapper.*./(.*/)?a\? -# ://synad. (easylist.txt: 5838) -/.*://synad\. -synad.*. -# ://rss.*/~a/ (easylist.txt: 5837) -/.*://rss\..*/~a/ -rss.*./(.*/)?~a/ -# ://promo.$third-party (easylist.txt: 5836) -/.*://promo\. -promo.*. -# ://pop-over. (easylist.txt: 5835) -/.*://pop-over\. -pop-over.*. -# ://ox-*/jstag^ (easylist.txt: 5834) -/.*://ox-.*/jstag[^\w%.-] -ox-*./(.*/)?jstag[^\w%.-] -# ://oas.*@ (easylist.txt: 5833) -/.*://oas\..*@ -oas.*./.*@ -# ://findnsave.*.*/td/portablerop.aspx? (easylist.txt: 5832) -/.*://findnsave\..*\..*/td/portablerop\.aspx\? -findnsave.*./.*\..*/td/portablerop\.aspx\? -findnsave.*.*./(.*/)?td/portablerop\.aspx\? -# ://findnsave.*.*/api/groupon.json? (easylist.txt: 5831) -/.*://findnsave\..*\..*/api/groupon\.json\? -findnsave.*./.*\..*/api/groupon\.json\? -findnsave.*.*./(.*/)?api/groupon\.json\? -# ://feeds.*/~a/ (easylist.txt: 5830) -/.*://feeds\..*/~a/ -feeds.*./(.*/)?~a/ -# ://delivery.*/jstag^ (easylist.txt: 5829) -/.*://delivery\..*/jstag[^\w%.-] -delivery.*./(.*/)?jstag[^\w%.-] -# ://bwp.*/search (easylist.txt: 5828) -/.*://bwp\..*/search -bwp.*./(.*/)?search -# ://banners.$third-party (easylist.txt: 5827) -/.*://banners\. -banners.*. -# ://banner.$third-party (easylist.txt: 5826) -/.*://banner\. -banner.*. -# ://ax-d.*/jstag^ (easylist.txt: 5825) -/.*://ax-d\..*/jstag[^\w%.-] -ax-d.*./(.*/)?jstag[^\w%.-] -# ://affiliates.$third-party (easylist.txt: 5824) -/.*://affiliates\. -affiliates.*. -# ://affiliate.$third-party (easylist.txt: 5823) -/.*://affiliate\. -affiliate.*. -# ://ads. (easylist.txt: 5821) -/.*://ads\. -ads.*. -# ://adcl. (easylist.txt: 5820) -/.*://adcl\. -adcl.*. -# ://ad.*/jstag^ (easylist.txt: 5819) -/.*://ad\..*/jstag[^\w%.-] -ad.*./(.*/)?jstag[^\w%.-] -# ://a.ads. (easylist.txt: 5818) -/.*://a\.ads\. -a.ads.*. -# /~cdn/ads/* (easylist.txt: 5817) -/(.*/)?~cdn/ads/.* -# /zedo_ (easylist.txt: 5816) -/(.*/)?zedo_ -# /zanox_ad/* (easylist.txt: 5815) -/(.*/)?zanox_ad/.* -# /zanox/banner/* (easylist.txt: 5814) -/(.*/)?zanox/banner/.* -# /zalando-ad- (easylist.txt: 5813) -/(.*/)?zalando-ad- -zalando-ad-*. -# /zagcookie_ (easylist.txt: 5812) -/(.*/)?zagcookie_ -# /z/ads/* (easylist.txt: 5811) -/(.*/)?z/ads/.* -# /z-ads. (easylist.txt: 5810) -/(.*/)?z-ads\. -z-ads.*. -# /yume_ad_library_ (easylist.txt: 5809) -/(.*/)?yume_ad_library_ -# /ysmwrapper.js (easylist.txt: 5808) -/(.*/)?ysmwrapper\.js -ysmwrapper.js*. -# /ysmads. (easylist.txt: 5807) -/(.*/)?ysmads\. -ysmads.*. -# /ysc_csc_news (easylist.txt: 5806) -/(.*/)?ysc_csc_news -# /ypad/* (easylist.txt: 5805) -/(.*/)?ypad/.* -# /youradhere_ (easylist.txt: 5804) -/(.*/)?youradhere_ -# /youradhere468- (easylist.txt: 5803) -/(.*/)?youradhere468- -youradhere468-*. -# /youradhere. (easylist.txt: 5802) -/(.*/)?youradhere\. -youradhere.*. -# /yourad1. (easylist.txt: 5801) -/(.*/)?yourad1\. -yourad1.*. -# /your_ad. (easylist.txt: 5800) -/(.*/)?your_ad\. -# /your-ad. (easylist.txt: 5799) -/(.*/)?your-ad\. -your-ad.*. -# /your-ad- (easylist.txt: 5798) -/(.*/)?your-ad- -your-ad-*. -# /yld_mgr/* (easylist.txt: 5797) -/(.*/)?yld_mgr/.* -# /yld/js/* (easylist.txt: 5796) -/(.*/)?yld/js/.* -# /yin-ad/* (easylist.txt: 5795) -/(.*/)?yin-ad/.* -# /yieldmanager/* (easylist.txt: 5794) -/(.*/)?yieldmanager/.* -# /yieldlab. (easylist.txt: 5793) -/(.*/)?yieldlab\. -yieldlab.*. -# /yieldads. (easylist.txt: 5792) -/(.*/)?yieldads\. -yieldads.*. -# /yhs/ads? (easylist.txt: 5791) -/(.*/)?yhs/ads\? -# /yesbaby. (easylist.txt: 5790) -/(.*/)?yesbaby\. -yesbaby.*. -# /yellowpagesads/* (easylist.txt: 5789) -/(.*/)?yellowpagesads/.* -# /yahoofeedproxy. (easylist.txt: 5788) -/(.*/)?yahoofeedproxy\. -yahoofeedproxy.*. -# /yahooadsobject. (easylist.txt: 5787) -/(.*/)?yahooadsobject\. -yahooadsobject.*. -# /yahooadsapi. (easylist.txt: 5786) -/(.*/)?yahooadsapi\. -yahooadsapi.*. -# /yahooads/* (easylist.txt: 5785) -/(.*/)?yahooads/.* -# /yahooads. (easylist.txt: 5784) -/(.*/)?yahooads\. -yahooads.*. -# /YahooAd_ (easylist.txt: 5783) -/(.*/)?YahooAd_ -# /yahoo_overture. (easylist.txt: 5782) -/(.*/)?yahoo_overture\. -# /yahoo/ads. (easylist.txt: 5781) -/(.*/)?yahoo/ads\. -# /yahoo-ads/* (easylist.txt: 5780) -/(.*/)?yahoo-ads/.* -# /yahoo-ad- (easylist.txt: 5779) -/(.*/)?yahoo-ad- -yahoo-ad-*. -# /yads_ (easylist.txt: 5778) -/(.*/)?yads_ -# /yads/* (easylist.txt: 5777) -/(.*/)?yads/.* -# /yads. (easylist.txt: 5776) -/(.*/)?yads\. -yads.*. -# /yads- (easylist.txt: 5775) -/(.*/)?yads- -yads-*. -# /xxxmatch_ (easylist.txt: 5774) -/(.*/)?xxxmatch_ -# /xwords. (easylist.txt: 5773) -/(.*/)?xwords\. -xwords.*. -# /xpiads. (easylist.txt: 5771) -/(.*/)?xpiads\. -xpiads.*. -# /xnxx-ads. (easylist.txt: 5770) -/(.*/)?xnxx-ads\. -xnxx-ads.*. -# /xmladparser. (easylist.txt: 5769) -/(.*/)?xmladparser\. -xmladparser.*. -# /xml/ads_ (easylist.txt: 5768) -/(.*/)?xml/ads_ -# /xml/ad/* (easylist.txt: 5767) -/(.*/)?xml/ad/.* -# /xlayer/layer.php?uid=$script (easylist.txt: 5766) -/(.*/)?xlayer/layer\.php\?uid= -# /xhr/ad/* (easylist.txt: 5765) -/(.*/)?xhr/ad/.* -# /xfiles/ads/* (easylist.txt: 5764) -/(.*/)?xfiles/ads/.* -# /xclicks. (easylist.txt: 5763) -/(.*/)?xclicks\. -xclicks.*. -# /xbanner.php? (easylist.txt: 5762) -/(.*/)?xbanner\.php\? -# /xadvertisement. (easylist.txt: 5761) -/(.*/)?xadvertisement\. -xadvertisement.*. -# /xads.php (easylist.txt: 5760) -/(.*/)?xads\.php -xads.php*. -# /x5advcorner. (easylist.txt: 5759) -/(.*/)?x5advcorner\. -x5advcorner.*. -# /www/js/ad/* (easylist.txt: 5758) -/(.*/)?www/js/ad/.* -# /www/delivery/* (easylist.txt: 5757) -/(.*/)?www/delivery/.* -# /www/deliverx/* (easylist.txt: 5756) -/(.*/)?www/deliverx/.* -# /www/ads/* (easylist.txt: 5755) -/(.*/)?www/ads/.* -# /www/ad/* (easylist.txt: 5754) -/(.*/)?www/ad/.* -# /wwe_ads/* (easylist.txt: 5753) -/(.*/)?wwe_ads/.* -# /wwe_ads. (easylist.txt: 5752) -/(.*/)?wwe_ads\. -# /writelayerad. (easylist.txt: 5751) -/(.*/)?writelayerad\. -writelayerad.*. -# /wrapper/ads/* (easylist.txt: 5750) -/(.*/)?wrapper/ads/.* -# /wpproads. (easylist.txt: 5749) -/(.*/)?wpproads\. -wpproads.*. -# /wpproadds. (easylist.txt: 5748) -/(.*/)?wpproadds\. -wpproadds.*. -# /wpbanners_show.php (easylist.txt: 5747) -/(.*/)?wpbanners_show\.php -# /wpads/iframe. (easylist.txt: 5746) -/(.*/)?wpads/iframe\. -# /wp_pro_ad_system/* (easylist.txt: 5745) -/(.*/)?wp_pro_ad_system/.* -# /wp_ad_250_ (easylist.txt: 5744) -/(.*/)?wp_ad_250_ -# /wp_ad_250. (easylist.txt: 5743) -/(.*/)?wp_ad_250\. -# /wp-srv/ad/* (easylist.txt: 5742) -/(.*/)?wp-srv/ad/.* -# /wp-popup-scheduler/* (easylist.txt: 5741) -/(.*/)?wp-popup-scheduler/.* -# /wp-content/uploads/useful_banner_manager_banners/* (easylist.txt: 5740) -/(.*/)?wp-content/uploads/useful_banner_manager_banners/.* -# /wp-content/plugins/wp-super-popup/*$~stylesheet (easylist.txt: 5739) -/(.*/)?wp-content/plugins/wp-super-popup/.* -# /wp-content/plugins/wp-super-popup-pro/* (easylist.txt: 5738) -/(.*/)?wp-content/plugins/wp-super-popup-pro/.* -# /wp-content/plugins/wp-bannerize/* (easylist.txt: 5737) -/(.*/)?wp-content/plugins/wp-bannerize/.* -# /wp-content/plugins/useful-banner-manager/* (easylist.txt: 5736) -/(.*/)?wp-content/plugins/useful-banner-manager/.* -# /wp-content/plugins/platinumpopup/* (easylist.txt: 5735) -/(.*/)?wp-content/plugins/platinumpopup/.* -# /wp-content/plugins/m-wp-popup/*$~stylesheet (easylist.txt: 5734) -/(.*/)?wp-content/plugins/m-wp-popup/.* -# /wp-content/plugins/fasterim-optin/* (easylist.txt: 5733) -/(.*/)?wp-content/plugins/fasterim-optin/.* -# /wp-content/plugins/bhcb/lock.js (easylist.txt: 5732) -/(.*/)?wp-content/plugins/bhcb/lock\.js -# /wp-content/plugins/banner-manager/* (easylist.txt: 5731) -/(.*/)?wp-content/plugins/banner-manager/.* -# /wp-content/plugins/automatic-social-locker/* (easylist.txt: 5730) -/(.*/)?wp-content/plugins/automatic-social-locker/.* -# /wp-content/plugins/amazon-product-in-a-post-plugin/* (easylist.txt: 5729) -/(.*/)?wp-content/plugins/amazon-product-in-a-post-plugin/.* -# /wp-content/mbp-banner/* (easylist.txt: 5728) -/(.*/)?wp-content/mbp-banner/.* -# /wp-content/ads/* (easylist.txt: 5727) -/(.*/)?wp-content/ads/.* -# /work.php?n=*&size=*&c= (easylist.txt: 5726) -/(.*/)?work\.php\?n=.*&size=.*&c= -# /wordpress-ads-plug-in/* (easylist.txt: 5725) -/(.*/)?wordpress-ads-plug-in/.* -# /wmads. (easylist.txt: 5724) -/(.*/)?wmads\. -wmads.*. -# /wlbetathome/bannerflow/* (easylist.txt: 5723) -/(.*/)?wlbetathome/bannerflow/.* -# /wix-ad. (easylist.txt: 5722) -/(.*/)?wix-ad\. -wix-ad.*. -# /wired/ads/* (easylist.txt: 5721) -/(.*/)?wired/ads/.* -# /wire/ads/* (easylist.txt: 5720) -/(.*/)?wire/ads/.* -# /wipeads/* (easylist.txt: 5719) -/(.*/)?wipeads/.* -# /widgets/sponsored/* (easylist.txt: 5718) -/(.*/)?widgets/sponsored/.* -# /widgets/ads. (easylist.txt: 5717) -/(.*/)?widgets/ads\. -# /widgetadsense. (easylist.txt: 5716) -/(.*/)?widgetadsense\. -widgetadsense.*. -# /widgetad. (easylist.txt: 5715) -/(.*/)?widgetad\. -widgetad.*. -# /widget/ads/* (easylist.txt: 5714) -/(.*/)?widget/ads/.* -# /widget/ads. (easylist.txt: 5713) -/(.*/)?widget/ads\. -# /widget/ad/* (easylist.txt: 5712) -/(.*/)?widget/ad/.* -# /werbebanner/* (easylist.txt: 5711) -/(.*/)?werbebanner/.* -# /welcomeadredirect. (easylist.txt: 5710) -/(.*/)?welcomeadredirect\. -welcomeadredirect.*. -# /welcomead. (easylist.txt: 5709) -/(.*/)?welcomead\. -welcomead.*. -# /welcome_ad. (easylist.txt: 5708) -/(.*/)?welcome_ad\. -# /weeklyAdsLabel. (easylist.txt: 5707) -/(.*/)?weeklyAdsLabel\. -weeklyAdsLabel.*. -# /weborama.js (easylist.txt: 5706) -/(.*/)?weborama\.js -weborama.js*. -# /webmaster_ads/* (easylist.txt: 5705) -/(.*/)?webmaster_ads/.* -# /webmailad. (easylist.txt: 5704) -/(.*/)?webmailad\. -webmailad.*. -# /webadverts/* (easylist.txt: 5703) -/(.*/)?webadverts/.* -# /webadvert3/* (easylist.txt: 5702) -/(.*/)?webadvert3/.* -# /webadvert/* (easylist.txt: 5701) -/(.*/)?webadvert/.* -# /webadvert. (easylist.txt: 5700) -/(.*/)?webadvert\. -webadvert.*. -# /webadserver. (easylist.txt: 5699) -/(.*/)?webadserver\. -webadserver.*. -# /webads_ (easylist.txt: 5698) -/(.*/)?webads_ -# /webads/* (easylist.txt: 5697) -/(.*/)?webads/.* -# /webads. (easylist.txt: 5696) -/(.*/)?webads\. -webads.*. -# /webadimg/* (easylist.txt: 5695) -/(.*/)?webadimg/.* -# /webad? (easylist.txt: 5694) -/(.*/)?webad\? -# /WebAd/* (easylist.txt: 5693) -/(.*/)?WebAd/.* -# /webad. (easylist.txt: 5692) -/(.*/)?webad\. -webad.*. -# /web_ads/* (easylist.txt: 5691) -/(.*/)?web_ads/.* -# /web/ads/* (easylist.txt: 5690) -/(.*/)?web/ads/.* -# /web-ads/* (easylist.txt: 5689) -/(.*/)?web-ads/.* -# /web-ads. (easylist.txt: 5688) -/(.*/)?web-ads\. -web-ads.*. -# /web-ad_ (easylist.txt: 5687) -/(.*/)?web-ad_ -# /weather/ads/* (easylist.txt: 5686) -/(.*/)?weather/ads/.* -# /weather-sponsor/* (easylist.txt: 5685) -/(.*/)?weather-sponsor/.* -# /wbadvert/* (easylist.txt: 5684) -/(.*/)?wbadvert/.* -# /wave-ad- (easylist.txt: 5683) -/(.*/)?wave-ad- -wave-ad-*. -# /watchit_ad. (easylist.txt: 5682) -/(.*/)?watchit_ad\. -# /wallpaperads/* (easylist.txt: 5681) -/(.*/)?wallpaperads/.* -# /wallpaper_ads/* (easylist.txt: 5680) -/(.*/)?wallpaper_ads/.* -# /wahoha. (easylist.txt: 5679) -/(.*/)?wahoha\. -wahoha.*. -# /w/d/capu.php?z=$script,third-party (easylist.txt: 5678) -/(.*/)?w/d/capu\.php\?z= -# /w/ads/* (easylist.txt: 5677) -/(.*/)?w/ads/.* -# /VXLayerAd- (easylist.txt: 5676) -/(.*/)?VXLayerAd- -VXLayerAd-*. -# /vtextads. (easylist.txt: 5675) -/(.*/)?vtextads\. -vtextads.*. -# /vrdinterads- (easylist.txt: 5674) -/(.*/)?vrdinterads- -vrdinterads-*. -# /vplayerad. (easylist.txt: 5673) -/(.*/)?vplayerad\. -vplayerad.*. -# /vpaidadrenderer. (easylist.txt: 5672) -/(.*/)?vpaidadrenderer\. -vpaidadrenderer.*. -# /vpaidad3. (easylist.txt: 5671) -/(.*/)?vpaidad3\. -vpaidad3.*. -# /vogue_ads/* (easylist.txt: 5670) -/(.*/)?vogue_ads/.* -# /vnads/* (easylist.txt: 5669) -/(.*/)?vnads/.* -# /vnads. (easylist.txt: 5668) -/(.*/)?vnads\. -vnads.*. -# /visitoursponsors. (easylist.txt: 5667) -/(.*/)?visitoursponsors\. -visitoursponsors.*. -# /vision/ads/* (easylist.txt: 5666) -/(.*/)?vision/ads/.* -# /virtualgirlhd- (easylist.txt: 5665) -/(.*/)?virtualgirlhd- -virtualgirlhd-*. -# /virtualgirl/* (easylist.txt: 5664) -/(.*/)?virtualgirl/.* -# /virtual_girl_ (easylist.txt: 5663) -/(.*/)?virtual_girl_ -# /virtuagirlhd. (easylist.txt: 5662) -/(.*/)?virtuagirlhd\. -virtuagirlhd.*. -# /virtuagirl3. (easylist.txt: 5661) -/(.*/)?virtuagirl3\. -virtuagirl3.*. -# /virtuagirl/* (easylist.txt: 5660) -/(.*/)?virtuagirl/.* -# /virtuagirl. (easylist.txt: 5659) -/(.*/)?virtuagirl\. -virtuagirl.*. -# /views/ads/* (easylist.txt: 5658) -/(.*/)?views/ads/.* -# /viewid=*/site=*/size= (easylist.txt: 5657) -/(.*/)?viewid=.*/site=.*/size= -# /viewer/rad? (easylist.txt: 5656) -/(.*/)?viewer/rad\? -# /viewbannerad. (easylist.txt: 5655) -/(.*/)?viewbannerad\. -viewbannerad.*. -# /viewad? (easylist.txt: 5654) -/(.*/)?viewad\? -# /viewad/* (easylist.txt: 5653) -/(.*/)?viewad/.* -# /viewad. (easylist.txt: 5652) -/(.*/)?viewad\. -viewad.*. -# /view_banner. (easylist.txt: 5651) -/(.*/)?view_banner\. -# /view/banner/* (easylist.txt: 5650) -/(.*/)?view/banner/.* -# /view/ads/* (easylist.txt: 5649) -/(.*/)?view/ads/.* -# /videowall-ad. (easylist.txt: 5648) -/(.*/)?videowall-ad\. -videowall-ad.*. -# /videostreaming_ads. (easylist.txt: 5647) -/(.*/)?videostreaming_ads\. -# /videojs.ads. (easylist.txt: 5646) -/(.*/)?videojs\.ads\. -videojs.ads.*. -# /VideoAdsServingService/* (easylist.txt: 5645) -/(.*/)?VideoAdsServingService/.* -# /videoads/* (easylist.txt: 5644) -/(.*/)?videoads/.* -# /videoads. (easylist.txt: 5643) -/(.*/)?videoads\. -videoads.*. -# /videoadrenderer. (easylist.txt: 5642) -/(.*/)?videoadrenderer\. -videoadrenderer.*. -# /VideoAdContent? (easylist.txt: 5641) -/(.*/)?VideoAdContent\? -# /videoad_new. (easylist.txt: 5640) -/(.*/)?videoad_new\. -# /VideoAd/* (easylist.txt: 5639) -/(.*/)?VideoAd/.* -# /videoad. (easylist.txt: 5638) -/(.*/)?videoad\. -videoad.*. -# /video_ads/* (easylist.txt: 5637) -/(.*/)?video_ads/.* -# /video_ads. (easylist.txt: 5636) -/(.*/)?video_ads\. -# /video_ad_ (easylist.txt: 5635) -/(.*/)?video_ad_ -# /video_ad. (easylist.txt: 5634) -/(.*/)?video_ad\. -# /video2adrenderer. (easylist.txt: 5633) -/(.*/)?video2adrenderer\. -video2adrenderer.*. -# /video/ads/* (easylist.txt: 5632) -/(.*/)?video/ads/.* -# /video.ads.php? (easylist.txt: 5631) -/(.*/)?video\.ads\.php\? -# /video-ads-player. (easylist.txt: 5630) -/(.*/)?video-ads-player\. -video-ads-player.*. -# /video-ad-overlay. (easylist.txt: 5629) -/(.*/)?video-ad-overlay\. -video-ad-overlay.*. -# /vidadv. (easylist.txt: 5628) -/(.*/)?vidadv\. -vidadv.*. -# /viagogoads. (easylist.txt: 5627) -/(.*/)?viagogoads\. -viagogoads.*. -# /VHDpoppingModels/* (easylist.txt: 5626) -/(.*/)?VHDpoppingModels/.* -# /vghd2.gif (easylist.txt: 5625) -/(.*/)?vghd2\.gif -vghd2.gif*. -# /vghd.swf (easylist.txt: 5624) -/(.*/)?vghd\.swf -vghd.swf*. -# /vghd.gif (easylist.txt: 5623) -/(.*/)?vghd\.gif -vghd.gif*. -# /verticaladrotatorv2. (easylist.txt: 5622) -/(.*/)?verticaladrotatorv2\. -verticaladrotatorv2.*. -# /vert_ad. (easylist.txt: 5621) -/(.*/)?vert_ad\. -# /vert728ad. (easylist.txt: 5620) -/(.*/)?vert728ad\. -vert728ad.*. -# /vericaladtitle. (easylist.txt: 5619) -/(.*/)?vericaladtitle\. -vericaladtitle.*. -# /vendor-ads- (easylist.txt: 5618) -/(.*/)?vendor-ads- -vendor-ads-*. -# /vclkads. (easylist.txt: 5617) -/(.*/)?vclkads\. -vclkads.*. -# /vbvua.js (easylist.txt: 5616) -/(.*/)?vbvua\.js -vbvua.js*. -# /vboard/ads/* (easylist.txt: 5615) -/(.*/)?vboard/ads/.* -# /vb/ads/* (easylist.txt: 5614) -/(.*/)?vb/ads/.* -# /vastads. (easylist.txt: 5613) -/(.*/)?vastads\. -vastads.*. -# /VASTAdPlugin. (easylist.txt: 5612) -/(.*/)?VASTAdPlugin\. -VASTAdPlugin.*. -# /vast_ads_ (easylist.txt: 5611) -/(.*/)?vast_ads_ -# /valueclickvert. (easylist.txt: 5610) -/(.*/)?valueclickvert\. -valueclickvert.*. -# /valueclickbanner. (easylist.txt: 5609) -/(.*/)?valueclickbanner\. -valueclickbanner.*. -# /valueclick. (easylist.txt: 5608) -/(.*/)?valueclick\. -valueclick.*. -# /valueclick-ad. (easylist.txt: 5607) -/(.*/)?valueclick-ad\. -valueclick-ad.*. -# /vads/* (easylist.txt: 5606) -/(.*/)?vads/.* -# /v9/adv/* (easylist.txt: 5605) -/(.*/)?v9/adv/.* -# /v5/ads/* (easylist.txt: 5604) -/(.*/)?v5/ads/.* -# /utep_ad.js (easylist.txt: 5603) -/(.*/)?utep_ad\.js -# /utep/ad/* (easylist.txt: 5602) -/(.*/)?utep/ad/.* -# /usernext. (easylist.txt: 5601) -/(.*/)?usernext\. -usernext.*. -# /userimages/ads/* (easylist.txt: 5600) -/(.*/)?userimages/ads/.* -# /userad/* (easylist.txt: 5599) -/(.*/)?userad/.* -# /userad. (easylist.txt: 5598) -/(.*/)?userad\. -userad.*. -# /user_ads/* (easylist.txt: 5597) -/(.*/)?user_ads/.* -# /user/ads? (easylist.txt: 5596) -/(.*/)?user/ads\? -# /usenext16. (easylist.txt: 5595) -/(.*/)?usenext16\. -usenext16.*. -# /us-ads. (easylist.txt: 5594) -/(.*/)?us-ads\. -us-ads.*. -# /upsellingads/* (easylist.txt: 5593) -/(.*/)?upsellingads/.* -# /uploads/adv_ (easylist.txt: 5592) -/(.*/)?uploads/adv_ -# /uploads/adv/* (easylist.txt: 5591) -/(.*/)?uploads/adv/.* -# /uploads/ads/* (easylist.txt: 5590) -/(.*/)?uploads/ads/.* -# /UploadedAds/* (easylist.txt: 5589) -/(.*/)?UploadedAds/.* -# /uploaded/ads/* (easylist.txt: 5588) -/(.*/)?uploaded/ads/.* -# /upload/ads/* (easylist.txt: 5587) -/(.*/)?upload/ads/.* -# /uplimg/ads/* (easylist.txt: 5586) -/(.*/)?uplimg/ads/.* -# /update_layer/layer_os_new.php (easylist.txt: 5585) -/(.*/)?update_layer/layer_os_new\.php -# /update_ads/* (easylist.txt: 5584) -/(.*/)?update_ads/.* -# /up/ads/* (easylist.txt: 5583) -/(.*/)?up/ads/.* -# /unity/ad/* (easylist.txt: 5582) -/(.*/)?unity/ad/.* -# /unibluead. (easylist.txt: 5581) -/(.*/)?unibluead\. -unibluead.*. -# /ukc-ad. (easylist.txt: 5580) -/(.*/)?ukc-ad\. -ukc-ad.*. -# /uk/ads/* (easylist.txt: 5579) -/(.*/)?uk/ads/.* -# /uk.ads. (easylist.txt: 5578) -/(.*/)?uk\.ads\. -uk.ads.*. -# /ui/adv_ (easylist.txt: 5577) -/(.*/)?ui/adv_ -# /ui/adv. (easylist.txt: 5576) -/(.*/)?ui/adv\. -# /ui/ads/* (easylist.txt: 5575) -/(.*/)?ui/ads/.* -# /ugoads_inner. (easylist.txt: 5574) -/(.*/)?ugoads_inner\. -# /ugoads. (easylist.txt: 5573) -/(.*/)?ugoads\. -ugoads.*. -# /ucstat. (easylist.txt: 5572) -/(.*/)?ucstat\. -ucstat.*. -# /uberlayadrenderer. (easylist.txt: 5571) -/(.*/)?uberlayadrenderer\. -uberlayadrenderer.*. -# /u?pub= (easylist.txt: 5570) -/(.*/)?u\?pub= -# /u/ads/* (easylist.txt: 5569) -/(.*/)?u/ads/.* -# /u-ads. (easylist.txt: 5568) -/(.*/)?u-ads\. -u-ads.*. -# /txtads/* (easylist.txt: 5567) -/(.*/)?txtads/.* -# /txtad. (easylist.txt: 5566) -/(.*/)?txtad\. -txtad.*. -# /txt_adv. (easylist.txt: 5565) -/(.*/)?txt_adv\. -# /txt_ad_ (easylist.txt: 5564) -/(.*/)?txt_ad_ -# /txt_ad. (easylist.txt: 5563) -/(.*/)?txt_ad\. -# /TwtAd_ (easylist.txt: 5562) -/(.*/)?TwtAd_ -# /twgetad3. (easylist.txt: 5561) -/(.*/)?twgetad3\. -twgetad3.*. -# /TWBadbanner. (easylist.txt: 5560) -/(.*/)?TWBadbanner\. -TWBadbanner.*. -# /tvgdartads. (easylist.txt: 5559) -/(.*/)?tvgdartads\. -tvgdartads.*. -# /turbo_ad. (easylist.txt: 5558) -/(.*/)?turbo_ad\. -# /ttz_ad. (easylist.txt: 5557) -/(.*/)?ttz_ad\. -# /tsc.php?*&ses= (easylist.txt: 5556) -/(.*/)?tsc\.php\?.*&ses= -# /tripplead/* (easylist.txt: 5555) -/(.*/)?tripplead/.* -# /tribalad. (easylist.txt: 5554) -/(.*/)?tribalad\. -tribalad.*. -# /triadshow. (easylist.txt: 5553) -/(.*/)?triadshow\. -triadshow.*. -# /tremoradrenderer. (easylist.txt: 5552) -/(.*/)?tremoradrenderer\. -tremoradrenderer.*. -# /travidia/* (easylist.txt: 5551) -/(.*/)?travidia/.* -# /transad. (easylist.txt: 5550) -/(.*/)?transad\. -transad.*. -# /trafficsynergysupportresponse_ (easylist.txt: 5549) -/(.*/)?trafficsynergysupportresponse_ -# /trafficengineads. (easylist.txt: 5548) -/(.*/)?trafficengineads\. -trafficengineads.*. -# /trafficads. (easylist.txt: 5547) -/(.*/)?trafficads\. -trafficads.*. -# /trafficadpdf02. (easylist.txt: 5546) -/(.*/)?trafficadpdf02\. -trafficadpdf02.*. -# /tradedoubler. (easylist.txt: 5545) -/(.*/)?tradedoubler\. -tradedoubler.*. -# /TradeAds/* (easylist.txt: 5544) -/(.*/)?TradeAds/.* -# /tradead_ (easylist.txt: 5543) -/(.*/)?tradead_ -# /trade_punder. (easylist.txt: 5542) -/(.*/)?trade_punder\. -# /tracking/events/* (easylist.txt: 5541) -/(.*/)?tracking/events/.* -# /tracked_ad. (easylist.txt: 5540) -/(.*/)?tracked_ad\. -# /trackads/* (easylist.txt: 5539) -/(.*/)?trackads/.* -# /track_ad_ (easylist.txt: 5538) -/(.*/)?track_ad_ -# /track.php?uid=*.*&d= (easylist.txt: 5537) -/(.*/)?track\.php\?uid=.*\..*&d= -# /track.php?click=*&domain=*&uid=$xmlhttprequest (easylist.txt: 5536) -/(.*/)?track\.php\?click=.*&domain=.*&uid= -# /tr2/ads/* (easylist.txt: 5535) -/(.*/)?tr2/ads/.* -# /towerbannerad/* (easylist.txt: 5534) -/(.*/)?towerbannerad/.* -# /tower_ad_ (easylist.txt: 5533) -/(.*/)?tower_ad_ -# /totemcash1. (easylist.txt: 5532) -/(.*/)?totemcash1\. -totemcash1.*. -# /totemcash/*$image (easylist.txt: 5531) -/(.*/)?totemcash/.* -# /Totem-Cash/* (easylist.txt: 5530) -/(.*/)?Totem-Cash/.* -# /totalmedia/* (easylist.txt: 5529) -/(.*/)?totalmedia/.* -# /torget_ads. (easylist.txt: 5528) -/(.*/)?torget_ads\. -# /tops.ads. (easylist.txt: 5527) -/(.*/)?tops\.ads\. -tops.ads.*. -# /toprightads. (easylist.txt: 5526) -/(.*/)?toprightads\. -toprightads.*. -# /topperad. (easylist.txt: 5525) -/(.*/)?topperad\. -topperad.*. -# /topleftads. (easylist.txt: 5524) -/(.*/)?topleftads\. -topleftads.*. -# /topadvert. (easylist.txt: 5523) -/(.*/)?topadvert\. -topadvert.*. -# /topadv. (easylist.txt: 5522) -/(.*/)?topadv\. -topadv.*. -# /topads| (easylist.txt: 5521) -/(.*/)?topads$ -# /topads_ (easylist.txt: 5520) -/(.*/)?topads_ -# /topads3. (easylist.txt: 5519) -/(.*/)?topads3\. -topads3.*. -# /topads2. (easylist.txt: 5518) -/(.*/)?topads2\. -topads2.*. -# /topads1. (easylist.txt: 5517) -/(.*/)?topads1\. -topads1.*. -# /topads/* (easylist.txt: 5516) -/(.*/)?topads/.* -# /topads. (easylist.txt: 5515) -/(.*/)?topads\. -topads.*. -# /topadheader. (easylist.txt: 5514) -/(.*/)?topadheader\. -topadheader.*. -# /topadfooter. (easylist.txt: 5513) -/(.*/)?topadfooter\. -topadfooter.*. -# /topadbg. (easylist.txt: 5512) -/(.*/)?topadbg\. -topadbg.*. -# /topad_ (easylist.txt: 5511) -/(.*/)?topad_ -# /topad3. (easylist.txt: 5510) -/(.*/)?topad3\. -topad3.*. -# /topad/* (easylist.txt: 5509) -/(.*/)?topad/.* -# /topad. (easylist.txt: 5508) -/(.*/)?topad\. -topad.*. -# /top_adv_ (easylist.txt: 5507) -/(.*/)?top_adv_ -# /top_ads_ (easylist.txt: 5506) -/(.*/)?top_ads_ -# /top_ads/* (easylist.txt: 5505) -/(.*/)?top_ads/.* -# /top_ads. (easylist.txt: 5504) -/(.*/)?top_ads\. -# /top_ad_ (easylist.txt: 5503) -/(.*/)?top_ad_ -# /top_ad/* (easylist.txt: 5502) -/(.*/)?top_ad/.* -# /top_ad. (easylist.txt: 5501) -/(.*/)?top_ad\. -# /top-ads. (easylist.txt: 5500) -/(.*/)?top-ads\. -top-ads.*. -# /top-ad_ (easylist.txt: 5499) -/(.*/)?top-ad_ -# /top-ad. (easylist.txt: 5498) -/(.*/)?top-ad\. -top-ad.*. -# /top-ad- (easylist.txt: 5497) -/(.*/)?top-ad- -top-ad-*. -# /toonad. (easylist.txt: 5496) -/(.*/)?toonad\. -toonad.*. -# /tools/ad. (easylist.txt: 5495) -/(.*/)?tools/ad\. -# /toolkitads. (easylist.txt: 5494) -/(.*/)?toolkitads\. -toolkitads.*. -# /toigoogleads. (easylist.txt: 5493) -/(.*/)?toigoogleads\. -toigoogleads.*. -# /toggleAds. (easylist.txt: 5492) -/(.*/)?toggleAds\. -toggleAds.*. -# /tncms/ads/* (easylist.txt: 5491) -/(.*/)?tncms/ads/.* -# /tmobilead. (easylist.txt: 5490) -/(.*/)?tmobilead\. -tmobilead.*. -# /tmo/ads/* (easylist.txt: 5489) -/(.*/)?tmo/ads/.* -# /tmnadsense. (easylist.txt: 5488) -/(.*/)?tmnadsense\. -tmnadsense.*. -# /tmnadsense- (easylist.txt: 5487) -/(.*/)?tmnadsense- -tmnadsense-*. -# /tl.ads- (easylist.txt: 5486) -/(.*/)?tl\.ads- -tl.ads-*. -# /tizers.php? (easylist.txt: 5485) -/(.*/)?tizers\.php\? -# /title_ad. (easylist.txt: 5484) -/(.*/)?title_ad\. -# /title-ad/* (easylist.txt: 5483) -/(.*/)?title-ad/.* -# /tit-ads. (easylist.txt: 5482) -/(.*/)?tit-ads\. -tit-ads.*. -# /tinyad. (easylist.txt: 5481) -/(.*/)?tinyad\. -tinyad.*. -# /tinlads. (easylist.txt: 5480) -/(.*/)?tinlads\. -tinlads.*. -# /tileads/* (easylist.txt: 5479) -/(.*/)?tileads/.* -# /TILE_ADS/* (easylist.txt: 5478) -/(.*/)?TILE_ADS/.* -# /tikilink? (easylist.txt: 5477) -/(.*/)?tikilink\? -# /tii_ads. (easylist.txt: 5476) -/(.*/)?tii_ads\. -# /tidaladplugin. (easylist.txt: 5475) -/(.*/)?tidaladplugin\. -tidaladplugin.*. -# /tickeradsget. (easylist.txt: 5474) -/(.*/)?tickeradsget\. -tickeradsget.*. -# /thunder/ad. (easylist.txt: 5473) -/(.*/)?thunder/ad\. -# /thumbs/ads/* (easylist.txt: 5472) -/(.*/)?thumbs/ads/.* -# /thirdpartyframedad/* (easylist.txt: 5471) -/(.*/)?thirdpartyframedad/.* -# /thirdpartyads/* (easylist.txt: 5470) -/(.*/)?thirdpartyads/.* -# /thirdparty/ad/* (easylist.txt: 5469) -/(.*/)?thirdparty/ad/.* -# /thebannerserver.net/* (easylist.txt: 5468) -/(.*/)?thebannerserver\.net/.* -thebannerserver.net/.* -# /thdgoogleadsense. (easylist.txt: 5467) -/(.*/)?thdgoogleadsense\. -thdgoogleadsense.*. -# /tg.php?uid= (easylist.txt: 5466) -/(.*/)?tg\.php\?uid= -# /tfs-ad. (easylist.txt: 5465) -/(.*/)?tfs-ad\. -tfs-ad.*. -# /textadspromo_ (easylist.txt: 5464) -/(.*/)?textadspromo_ -# /textads_ (easylist.txt: 5463) -/(.*/)?textads_ -# /textads/* (easylist.txt: 5462) -/(.*/)?textads/.* -# /textads. (easylist.txt: 5461) -/(.*/)?textads\. -textads.*. -# /textads- (easylist.txt: 5460) -/(.*/)?textads- -textads-*. -# /textadrotate. (easylist.txt: 5459) -/(.*/)?textadrotate\. -textadrotate.*. -# /textad_ (easylist.txt: 5458) -/(.*/)?textad_ -# /textad? (easylist.txt: 5457) -/(.*/)?textad\? -# /textad1. (easylist.txt: 5456) -/(.*/)?textad1\. -textad1.*. -# /textad/* (easylist.txt: 5455) -/(.*/)?textad/.* -# /textad. (easylist.txt: 5454) -/(.*/)?textad\. -textad.*. -# /text_ads_ (easylist.txt: 5453) -/(.*/)?text_ads_ -# /text_ads. (easylist.txt: 5452) -/(.*/)?text_ads\. -# /text_ad_ (easylist.txt: 5451) -/(.*/)?text_ad_ -# /text_ad. (easylist.txt: 5450) -/(.*/)?text_ad\. -# /testingad. (easylist.txt: 5449) -/(.*/)?testingad\. -testingad.*. -# /testads/* (easylist.txt: 5448) -/(.*/)?testads/.* -# /templates/adv_ (easylist.txt: 5447) -/(.*/)?templates/adv_ -# /templates/ads/* (easylist.txt: 5446) -/(.*/)?templates/ads/.* -# /templates/ad/* (easylist.txt: 5445) -/(.*/)?templates/ad/.* -# /templates/ad. (easylist.txt: 5444) -/(.*/)?templates/ad\. -# /templateadvimages/* (easylist.txt: 5443) -/(.*/)?templateadvimages/.* -# /template/ad. (easylist.txt: 5442) -/(.*/)?template/ad\. -# /tempads/* (easylist.txt: 5441) -/(.*/)?tempads/.* -# /teletoon_ad. (easylist.txt: 5440) -/(.*/)?teletoon_ad\. -# /technomedia. (easylist.txt: 5439) -/(.*/)?technomedia\. -technomedia.*. -# /teaseimg/ads/* (easylist.txt: 5438) -/(.*/)?teaseimg/ads/.* -# /teamplayer-ads. (easylist.txt: 5437) -/(.*/)?teamplayer-ads\. -teamplayer-ads.*. -# /tdlads/* (easylist.txt: 5436) -/(.*/)?tdlads/.* -# /td_ads/* (easylist.txt: 5435) -/(.*/)?td_ads/.* -# /td-ads- (easylist.txt: 5434) -/(.*/)?td-ads- -td-ads-*. -# /taxonomy-ads. (easylist.txt: 5433) -/(.*/)?taxonomy-ads\. -taxonomy-ads.*. -# /talkads/* (easylist.txt: 5432) -/(.*/)?talkads/.* -# /tagadv_ (easylist.txt: 5431) -/(.*/)?tagadv_ -# /tag_sys. (easylist.txt: 5430) -/(.*/)?tag_sys\. -# /tag_oas. (easylist.txt: 5429) -/(.*/)?tag_oas\. -# /tag_adv/* (easylist.txt: 5428) -/(.*/)?tag_adv/.* -# /tag-adv. (easylist.txt: 5427) -/(.*/)?tag-adv\. -tag-adv.*. -# /tableadnorth. (easylist.txt: 5426) -/(.*/)?tableadnorth\. -tableadnorth.*. -# /tabads/* (easylist.txt: 5425) -/(.*/)?tabads/.* -# /t.php?uid=*.*&src= (easylist.txt: 5424) -/(.*/)?t\.php\?uid=.*\..*&src= -# /t-ads. (easylist.txt: 5423) -/(.*/)?t-ads\. -t-ads.*. -# /systemad_ (easylist.txt: 5422) -/(.*/)?systemad_ -# /systemad. (easylist.txt: 5421) -/(.*/)?systemad\. -systemad.*. -# /system_ad. (easylist.txt: 5420) -/(.*/)?system_ad\. -# /system/ads/* (easylist.txt: 5419) -/(.*/)?system/ads/.* -# /system/ad/* (easylist.txt: 5418) -/(.*/)?system/ad/.* -# /sys/ad/* (easylist.txt: 5417) -/(.*/)?sys/ad/.* -# /syndication/ad. (easylist.txt: 5416) -/(.*/)?syndication/ad\. -# /synad3. (easylist.txt: 5415) -/(.*/)?synad3\. -synad3.*. -# /synad2. (easylist.txt: 5414) -/(.*/)?synad2\. -synad2.*. -# /SWMAdPlayer. (easylist.txt: 5413) -/(.*/)?SWMAdPlayer\. -SWMAdPlayer.*. -# /switchadbanner. (easylist.txt: 5412) -/(.*/)?switchadbanner\. -switchadbanner.*. -# /swfbin/ad3_ (easylist.txt: 5411) -/(.*/)?swfbin/ad3_ -# /swfbin/ad3- (easylist.txt: 5410) -/(.*/)?swfbin/ad3- -# /swfbin/ad- (easylist.txt: 5409) -/(.*/)?swfbin/ad- -# /swf/ads/* (easylist.txt: 5408) -/(.*/)?swf/ads/.* -# /swf/ad- (easylist.txt: 5407) -/(.*/)?swf/ad- -# /svnad/* (easylist.txt: 5406) -/(.*/)?svnad/.* -# /supernorthroomad. (easylist.txt: 5405) -/(.*/)?supernorthroomad\. -supernorthroomad.*. -# /superads_ (easylist.txt: 5404) -/(.*/)?superads_ -# /sugarads- (easylist.txt: 5403) -/(.*/)?sugarads- -sugarads-*. -# /sugar-ads/* (easylist.txt: 5402) -/(.*/)?sugar-ads/.* -# /sugar-ads. (easylist.txt: 5401) -/(.*/)?sugar-ads\. -sugar-ads.*. -# /subs-ads/* (easylist.txt: 5400) -/(.*/)?subs-ads/.* -# /subnavads/* (easylist.txt: 5399) -/(.*/)?subnavads/.* -# /subadz. (easylist.txt: 5398) -/(.*/)?subadz\. -subadz.*. -# /subad2_ (easylist.txt: 5397) -/(.*/)?subad2_ -# /subAd. (easylist.txt: 5396) -/(.*/)?subAd\. -subAd.*. -# /styles/ads/* (easylist.txt: 5395) -/(.*/)?styles/ads/.* -# /styles/ads. (easylist.txt: 5394) -/(.*/)?styles/ads\. -# /style_ad. (easylist.txt: 5393) -/(.*/)?style_ad\. -# /stuff/ad- (easylist.txt: 5392) -/(.*/)?stuff/ad- -# /studioads/* (easylist.txt: 5391) -/(.*/)?studioads/.* -# /streamatepop. (easylist.txt: 5390) -/(.*/)?streamatepop\. -streamatepop.*. -# /streamads. (easylist.txt: 5389) -/(.*/)?streamads\. -streamads.*. -# /stream-ad. (easylist.txt: 5388) -/(.*/)?stream-ad\. -stream-ad.*. -# /storyads. (easylist.txt: 5387) -/(.*/)?storyads\. -storyads.*. -# /storyadcode. (easylist.txt: 5386) -/(.*/)?storyadcode\. -storyadcode.*. -# /story_ads_ (easylist.txt: 5385) -/(.*/)?story_ads_ -# /story_ad. (easylist.txt: 5384) -/(.*/)?story_ad\. -# /stories/ads/* (easylist.txt: 5383) -/(.*/)?stories/ads/.* -# /storage/adv/* (easylist.txt: 5382) -/(.*/)?storage/adv/.* -# /storage/ads/* (easylist.txt: 5381) -/(.*/)?storage/ads/.* -# /stickyad2. (easylist.txt: 5380) -/(.*/)?stickyad2\. -stickyad2.*. -# /stickyad. (easylist.txt: 5379) -/(.*/)?stickyad\. -stickyad.*. -# /sticky_ad. (easylist.txt: 5378) -/(.*/)?sticky_ad\. -# /sticker_ad. (easylist.txt: 5377) -/(.*/)?sticker_ad\. -# /stats/?t_sid= (easylist.txt: 5376) -/(.*/)?stats/\?t_sid= -# /staticadslot. (easylist.txt: 5375) -/(.*/)?staticadslot\. -staticadslot.*. -# /static_ads/* (easylist.txt: 5374) -/(.*/)?static_ads/.* -# /static/js/4728ba74bc.js$~third-party (easylist.txt: 5373) -/(.*/)?static/js/4728ba74bc\.js -# /static/adv/* (easylist.txt: 5372) -/(.*/)?static/adv/.* -# /static/ads/* (easylist.txt: 5371) -/(.*/)?static/ads/.* -# /static/ad_ (easylist.txt: 5370) -/(.*/)?static/ad_ -# /static/ad/* (easylist.txt: 5369) -/(.*/)?static/ad/.* -# /static/ad- (easylist.txt: 5368) -/(.*/)?static/ad- -# /static.ad. (easylist.txt: 5367) -/(.*/)?static\.ad\. -static.ad.*. -# /standard_ads. (easylist.txt: 5366) -/(.*/)?standard_ads\. -# /ssc_ad. (easylist.txt: 5365) -/(.*/)?ssc_ad\. -# /ss3/ads/* (easylist.txt: 5364) -/(.*/)?ss3/ads/.* -# /srv/ad/* (easylist.txt: 5363) -/(.*/)?srv/ad/.* -# /srec_ad_ (easylist.txt: 5362) -/(.*/)?srec_ad_ -# /src/ads_ (easylist.txt: 5361) -/(.*/)?src/ads_ -# /squareads. (easylist.txt: 5360) -/(.*/)?squareads\. -squareads.*. -# /squaread. (easylist.txt: 5359) -/(.*/)?squaread\. -squaread.*. -# /square-ads/* (easylist.txt: 5358) -/(.*/)?square-ads/.* -# /square-ad. (easylist.txt: 5357) -/(.*/)?square-ad\. -square-ad.*. -# /spotxchangevpaid. (easylist.txt: 5356) -/(.*/)?spotxchangevpaid\. -spotxchangevpaid.*. -# /spotxchangeplugin. (easylist.txt: 5355) -/(.*/)?spotxchangeplugin\. -spotxchangeplugin.*. -# /spotx_adapter. (easylist.txt: 5354) -/(.*/)?spotx_adapter\. -# /spotlightads/* (easylist.txt: 5353) -/(.*/)?spotlightads/.* -# /sponsorstrips/* (easylist.txt: 5352) -/(.*/)?sponsorstrips/.* -# /sponsorshipimage- (easylist.txt: 5351) -/(.*/)?sponsorshipimage- -sponsorshipimage-*. -# /sponsorsgif. (easylist.txt: 5350) -/(.*/)?sponsorsgif\. -sponsorsgif.*. -# /sponsors_box. (easylist.txt: 5349) -/(.*/)?sponsors_box\. -# /sponsors/amg.php? (easylist.txt: 5348) -/(.*/)?sponsors/amg\.php\? -# /sponsors/ads/* (easylist.txt: 5347) -/(.*/)?sponsors/ads/.* -# /sponsors.js? (easylist.txt: 5346) -/(.*/)?sponsors\.js\? -# /sponsors-ads/* (easylist.txt: 5345) -/(.*/)?sponsors-ads/.* -# /sponsorpaynetwork. (easylist.txt: 5344) -/(.*/)?sponsorpaynetwork\. -sponsorpaynetwork.*. -# /sponsoringbanner/* (easylist.txt: 5343) -/(.*/)?sponsoringbanner/.* -# /sponsorHeaderDeriv_ (easylist.txt: 5342) -/(.*/)?sponsorHeaderDeriv_ -# /sponsoredlisting. (easylist.txt: 5341) -/(.*/)?sponsoredlisting\. -sponsoredlisting.*. -# /sponsoredlinksiframe. (easylist.txt: 5340) -/(.*/)?sponsoredlinksiframe\. -sponsoredlinksiframe.*. -# /sponsoredlinks? (easylist.txt: 5339) -/(.*/)?sponsoredlinks\? -# /sponsoredlinks/* (easylist.txt: 5338) -/(.*/)?sponsoredlinks/.* -# /sponsoredlinks. (easylist.txt: 5337) -/(.*/)?sponsoredlinks\. -sponsoredlinks.*. -# /sponsoredheadline. (easylist.txt: 5336) -/(.*/)?sponsoredheadline\. -sponsoredheadline.*. -# /sponsoredcontent. (easylist.txt: 5335) -/(.*/)?sponsoredcontent\. -sponsoredcontent.*. -# /sponsoredbanner/* (easylist.txt: 5334) -/(.*/)?sponsoredbanner/.* -# /sponsoredads/* (easylist.txt: 5333) -/(.*/)?sponsoredads/.* -# /sponsored_top. (easylist.txt: 5332) -/(.*/)?sponsored_top\. -# /sponsored_title. (easylist.txt: 5331) -/(.*/)?sponsored_title\. -# /sponsored_text. (easylist.txt: 5330) -/(.*/)?sponsored_text\. -# /sponsored_listings. (easylist.txt: 5329) -/(.*/)?sponsored_listings\. -# /sponsored_links_ (easylist.txt: 5328) -/(.*/)?sponsored_links_ -# /sponsored_links1. (easylist.txt: 5327) -/(.*/)?sponsored_links1\. -# /sponsored_links. (easylist.txt: 5326) -/(.*/)?sponsored_links\. -# /sponsored_link. (easylist.txt: 5325) -/(.*/)?sponsored_link\. -# /sponsored_by. (easylist.txt: 5324) -/(.*/)?sponsored_by\. -# /sponsored_ads/* (easylist.txt: 5323) -/(.*/)?sponsored_ads/.* -# /sponsored_ad_ (easylist.txt: 5322) -/(.*/)?sponsored_ad_ -# /sponsored_ad. (easylist.txt: 5321) -/(.*/)?sponsored_ad\. -# /sponsored-links/* (easylist.txt: 5320) -/(.*/)?sponsored-links/.* -# /sponsored-links- (easylist.txt: 5319) -/(.*/)?sponsored-links- -sponsored-links-*. -# /sponsored-banner- (easylist.txt: 5318) -/(.*/)?sponsored-banner- -sponsored-banner-*. -# /sponsored-backgrounds/* (easylist.txt: 5317) -/(.*/)?sponsored-backgrounds/.* -# /sponsorbg/* (easylist.txt: 5316) -/(.*/)?sponsorbg/.* -# /sponsorbanners/* (easylist.txt: 5315) -/(.*/)?sponsorbanners/.* -# /sponsorads/* (easylist.txt: 5314) -/(.*/)?sponsorads/.* -# /sponsorads. (easylist.txt: 5313) -/(.*/)?sponsorads\. -sponsorads.*. -# /sponsoradds/* (easylist.txt: 5312) -/(.*/)?sponsoradds/.* -# /sponsorad2. (easylist.txt: 5311) -/(.*/)?sponsorad2\. -sponsorad2.*. -# /sponsorad. (easylist.txt: 5310) -/(.*/)?sponsorad\. -sponsorad.*. -# /sponsor_select. (easylist.txt: 5309) -/(.*/)?sponsor_select\. -# /sponsor_ads. (easylist.txt: 5308) -/(.*/)?sponsor_ads\. -# /sponsor/click. (easylist.txt: 5307) -/(.*/)?sponsor/click\. -# /sponsor-links. (easylist.txt: 5306) -/(.*/)?sponsor-links\. -sponsor-links.*. -# /sponsor-box? (easylist.txt: 5305) -/(.*/)?sponsor-box\? -# /sponsor-banner. (easylist.txt: 5304) -/(.*/)?sponsor-banner\. -sponsor-banner.*. -# /sponsor-ad (easylist.txt: 5303) -/(.*/)?sponsor-ad -sponsor-ad*. -# /sponsor%20banners/* (easylist.txt: 5302) -/(.*/)?sponsor%20banners/.* -# /sponslink_ (easylist.txt: 5301) -/(.*/)?sponslink_ -# /sponsimages/* (easylist.txt: 5300) -/(.*/)?sponsimages/.* -# /sponsers.cgi (easylist.txt: 5299) -/(.*/)?sponsers\.cgi -sponsers.cgi*. -# /sponseredlinksros. (easylist.txt: 5298) -/(.*/)?sponseredlinksros\. -sponseredlinksros.*. -# /sponser. (easylist.txt: 5297) -/(.*/)?sponser\. -sponser.*. -# /spons_links_ (easylist.txt: 5296) -/(.*/)?spons_links_ -# /spons/banners/* (easylist.txt: 5295) -/(.*/)?spons/banners/.* -# /sponlink. (easylist.txt: 5294) -/(.*/)?sponlink\. -sponlink.*. -# /spo_show.asp? (easylist.txt: 5293) -/(.*/)?spo_show\.asp\? -# /SplashAd_ (easylist.txt: 5292) -/(.*/)?SplashAd_ -# /splash_ads_ (easylist.txt: 5291) -/(.*/)?splash_ads_ -# /spiderad/* (easylist.txt: 5290) -/(.*/)?spiderad/.* -# /specialfeatureads/* (easylist.txt: 5289) -/(.*/)?specialfeatureads/.* -# /specialads/* (easylist.txt: 5288) -/(.*/)?specialads/.* -# /special_ads/* (easylist.txt: 5287) -/(.*/)?special_ads/.* -# /special_ad. (easylist.txt: 5286) -/(.*/)?special_ad\. -# /special-ads/* (easylist.txt: 5285) -/(.*/)?special-ads/.* -# /spcjs_min. (easylist.txt: 5284) -/(.*/)?spcjs_min\. -# /spcjs.php (easylist.txt: 5283) -/(.*/)?spcjs\.php -spcjs.php*. -# /spc.php (easylist.txt: 5282) -/(.*/)?spc\.php -spc.php*. -# /spark_ad. (easylist.txt: 5281) -/(.*/)?spark_ad\. -# /spacedesc= (easylist.txt: 5280) -/(.*/)?spacedesc= -# /space_ad. (easylist.txt: 5279) -/(.*/)?space_ad\. -# /spac_adx. (easylist.txt: 5278) -/(.*/)?spac_adx\. -# /sp/delivery/* (easylist.txt: 5277) -/(.*/)?sp/delivery/.* -# /someads. (easylist.txt: 5276) -/(.*/)?someads\. -someads.*. -# /some-ad. (easylist.txt: 5275) -/(.*/)?some-ad\. -some-ad.*. -# /somaadscaleskyscraperscript. (easylist.txt: 5274) -/(.*/)?somaadscaleskyscraperscript\. -somaadscaleskyscraperscript.*. -# /socialads/* (easylist.txt: 5273) -/(.*/)?socialads/.* -# /socialads. (easylist.txt: 5272) -/(.*/)?socialads\. -socialads.*. -# /SmpAds. (easylist.txt: 5271) -/(.*/)?SmpAds\. -SmpAds.*. -# /smoozed-ad/* (easylist.txt: 5270) -/(.*/)?smoozed-ad/.* -# /smedia/ad/* (easylist.txt: 5269) -/(.*/)?smedia/ad/.* -# /smeadvertisement/* (easylist.txt: 5268) -/(.*/)?smeadvertisement/.* -# /smb/ads/* (easylist.txt: 5267) -/(.*/)?smb/ads/.* -# /smartlinks.epl? (easylist.txt: 5266) -/(.*/)?smartlinks\.epl\? -# /smartadserver. (easylist.txt: 5265) -/(.*/)?smartadserver\. -smartadserver.*. -# /smartads. (easylist.txt: 5264) -/(.*/)?smartads\. -smartads.*. -# /smartAd? (easylist.txt: 5263) -/(.*/)?smartAd\? -# /smartad. (easylist.txt: 5262) -/(.*/)?smartad\. -smartad.*. -# /smartad- (easylist.txt: 5261) -/(.*/)?smartad- -smartad-*. -# /smart_ad/* (easylist.txt: 5260) -/(.*/)?smart_ad/.* -# /smart-ad-server. (easylist.txt: 5259) -/(.*/)?smart-ad-server\. -smart-ad-server.*. -# /smalltopl. (easylist.txt: 5258) -/(.*/)?smalltopl\. -smalltopl.*. -# /smalladblockbg- (easylist.txt: 5257) -/(.*/)?smalladblockbg- -smalladblockbg-*. -# /smallad- (easylist.txt: 5256) -/(.*/)?smallad- -smallad-*. -# /small_ads/* (easylist.txt: 5255) -/(.*/)?small_ads/.* -# /small_ad_ (easylist.txt: 5254) -/(.*/)?small_ad_ -# /small_ad. (easylist.txt: 5253) -/(.*/)?small_ad\. -# /smalAds. (easylist.txt: 5252) -/(.*/)?smalAds\. -smalAds.*. -# /slidetopad. (easylist.txt: 5251) -/(.*/)?slidetopad\. -slidetopad.*. -# /slideshowintad? (easylist.txt: 5250) -/(.*/)?slideshowintad\? -# /slideshow/ads. (easylist.txt: 5249) -/(.*/)?slideshow/ads\. -# /SliderJobAdList. (easylist.txt: 5248) -/(.*/)?SliderJobAdList\. -SliderJobAdList.*. -# /sliderad3. (easylist.txt: 5247) -/(.*/)?sliderad3\. -sliderad3.*. -# /sliderAd/* (easylist.txt: 5246) -/(.*/)?sliderAd/.* -# /slider_ad. (easylist.txt: 5245) -/(.*/)?slider_ad\. -# /slider.ad. (easylist.txt: 5244) -/(.*/)?slider\.ad\. -slider.ad.*. -# /slider-ad- (easylist.txt: 5243) -/(.*/)?slider-ad- -slider-ad-*. -# /slideinad. (easylist.txt: 5242) -/(.*/)?slideinad\. -slideinad.*. -# /slideadverts/* (easylist.txt: 5241) -/(.*/)?slideadverts/.* -# /slafc.js (easylist.txt: 5240) -/(.*/)?slafc\.js -slafc.js*. -# /skyscraperad. (easylist.txt: 5239) -/(.*/)?skyscraperad\. -skyscraperad.*. -# /skyscraper_ad_ (easylist.txt: 5238) -/(.*/)?skyscraper_ad_ -# /skyscraper-ad. (easylist.txt: 5237) -/(.*/)?skyscraper-ad\. -skyscraper-ad.*. -# /skyframeopenads_ (easylist.txt: 5236) -/(.*/)?skyframeopenads_ -# /skyframeopenads. (easylist.txt: 5235) -/(.*/)?skyframeopenads\. -skyframeopenads.*. -# /skybar_ad. (easylist.txt: 5234) -/(.*/)?skybar_ad\. -# /skybannerview. (easylist.txt: 5233) -/(.*/)?skybannerview\. -skybannerview.*. -# /skyadright. (easylist.txt: 5232) -/(.*/)?skyadright\. -skyadright.*. -# /skyadjs/* (easylist.txt: 5231) -/(.*/)?skyadjs/.* -# /skyad_ (easylist.txt: 5230) -/(.*/)?skyad_ -# /skyad. (easylist.txt: 5229) -/(.*/)?skyad\. -skyad.*. -# /skins/ads/* (easylist.txt: 5228) -/(.*/)?skins/ads/.* -# /skins/ads- (easylist.txt: 5227) -/(.*/)?skins/ads- -# /skinads/* (easylist.txt: 5226) -/(.*/)?skinads/.* -# /skinad. (easylist.txt: 5225) -/(.*/)?skinad\. -skinad.*. -# /skin3/ads/* (easylist.txt: 5224) -/(.*/)?skin3/ads/.* -# /skin/adv/* (easylist.txt: 5223) -/(.*/)?skin/adv/.* -# /skin/ad3/* (easylist.txt: 5222) -/(.*/)?skin/ad3/.* -# /skin/ad/* (easylist.txt: 5221) -/(.*/)?skin/ad/.* -# /size=*/random=*/viewid= (easylist.txt: 5220) -/(.*/)?size=.*/random=.*/viewid= -# /sitewide/ads/* (easylist.txt: 5219) -/(.*/)?sitewide/ads/.* -# /sites/ad_ (easylist.txt: 5218) -/(.*/)?sites/ad_ -# /sitemanagement/ads/* (easylist.txt: 5217) -/(.*/)?sitemanagement/ads/.* -# /siteimages/ads- (easylist.txt: 5216) -/(.*/)?siteimages/ads- -# /siteafs.txt? (easylist.txt: 5215) -/(.*/)?siteafs\.txt\? -# /siteadvert. (easylist.txt: 5214) -/(.*/)?siteadvert\. -siteadvert.*. -# /siteads/* (easylist.txt: 5213) -/(.*/)?siteads/.* -# /siteads. (easylist.txt: 5212) -/(.*/)?siteads\. -siteads.*. -# /site_under. (easylist.txt: 5211) -/(.*/)?site_under\. -# /site_ads/* (easylist.txt: 5210) -/(.*/)?site_ads/.* -# /site_ads. (easylist.txt: 5209) -/(.*/)?site_ads\. -# /site=*/viewid=*/size= (easylist.txt: 5208) -/(.*/)?site=.*/viewid=.*/size= -# /site=*/size=*/viewid= (easylist.txt: 5207) -/(.*/)?site=.*/size=.*/viewid= -# /site/ads? (easylist.txt: 5206) -/(.*/)?site/ads\? -# /site/ads/* (easylist.txt: 5205) -/(.*/)?site/ads/.* -# /site/ad/* (easylist.txt: 5204) -/(.*/)?site/ad/.* -# /site-advert. (easylist.txt: 5203) -/(.*/)?site-advert\. -site-advert.*. -# /site-ads/* (easylist.txt: 5202) -/(.*/)?site-ads/.* -# /sisterads. (easylist.txt: 5201) -/(.*/)?sisterads\. -sisterads.*. -# /singleadextension. (easylist.txt: 5200) -/(.*/)?singleadextension\. -singleadextension.*. -# /simpleadvert/* (easylist.txt: 5199) -/(.*/)?simpleadvert/.* -# /simpleadvert. (easylist.txt: 5198) -/(.*/)?simpleadvert\. -simpleadvert.*. -# /simpleads/* (easylist.txt: 5197) -/(.*/)?simpleads/.* -# /silverads. (easylist.txt: 5196) -/(.*/)?silverads\. -silverads.*. -# /silver/ads/* (easylist.txt: 5195) -/(.*/)?silver/ads/.* -# /siframead. (easylist.txt: 5194) -/(.*/)?siframead\. -siframead.*. -# /sidelinead. (easylist.txt: 5193) -/(.*/)?sidelinead\. -sidelinead.*. -# /sidekickads. (easylist.txt: 5192) -/(.*/)?sidekickads\. -sidekickads.*. -# /sidecol_ad. (easylist.txt: 5191) -/(.*/)?sidecol_ad\. -# /sidebaradvertisement. (easylist.txt: 5190) -/(.*/)?sidebaradvertisement\. -sidebaradvertisement.*. -# /sidebarad/* (easylist.txt: 5189) -/(.*/)?sidebarad/.* -# /sidebar_ads/* (easylist.txt: 5188) -/(.*/)?sidebar_ads/.* -# /sidebar_ad_ (easylist.txt: 5187) -/(.*/)?sidebar_ad_ -# /sidebar_ad. (easylist.txt: 5186) -/(.*/)?sidebar_ad\. -# /sidebar-ads/* (easylist.txt: 5185) -/(.*/)?sidebar-ads/.* -# /sidebar-ad- (easylist.txt: 5184) -/(.*/)?sidebar-ad- -sidebar-ad-*. -# /sideadvtmp. (easylist.txt: 5183) -/(.*/)?sideadvtmp\. -sideadvtmp.*. -# /sideads| (easylist.txt: 5182) -/(.*/)?sideads$ -# /sideads/* (easylist.txt: 5181) -/(.*/)?sideads/.* -# /sideadiframe. (easylist.txt: 5180) -/(.*/)?sideadiframe\. -sideadiframe.*. -# /sidead3. (easylist.txt: 5179) -/(.*/)?sidead3\. -sidead3.*. -# /sidead2. (easylist.txt: 5178) -/(.*/)?sidead2\. -sidead2.*. -# /sidead1. (easylist.txt: 5177) -/(.*/)?sidead1\. -sidead1.*. -# /sidead/* (easylist.txt: 5176) -/(.*/)?sidead/.* -# /sidead. (easylist.txt: 5175) -/(.*/)?sidead\. -sidead.*. -# /side_adverts. (easylist.txt: 5174) -/(.*/)?side_adverts\. -# /side-ads- (easylist.txt: 5173) -/(.*/)?side-ads- -side-ads-*. -# /side-ad. (easylist.txt: 5172) -/(.*/)?side-ad\. -side-ad.*. -# /side-ad- (easylist.txt: 5171) -/(.*/)?side-ad- -side-ad-*. -# /showSp.php? (easylist.txt: 5170) -/(.*/)?showSp\.php\? -# /showsidebar-ad- (easylist.txt: 5169) -/(.*/)?showsidebar-ad- -showsidebar-ad-*. -# /showpost-ad- (easylist.txt: 5168) -/(.*/)?showpost-ad- -showpost-ad-*. -# /showmarketingmaterial. (easylist.txt: 5167) -/(.*/)?showmarketingmaterial\. -showmarketingmaterial.*. -# /showJsAd/* (easylist.txt: 5166) -/(.*/)?showJsAd/.* -# /showindex-ad- (easylist.txt: 5165) -/(.*/)?showindex-ad- -showindex-ad-*. -# /showflashad. (easylist.txt: 5164) -/(.*/)?showflashad\. -showflashad.*. -# /showcasead/* (easylist.txt: 5163) -/(.*/)?showcasead/.* -# /showbanner. (easylist.txt: 5162) -/(.*/)?showbanner\. -showbanner.*. -# /showban.asp? (easylist.txt: 5161) -/(.*/)?showban\.asp\? -# /showadvertising. (easylist.txt: 5160) -/(.*/)?showadvertising\. -showadvertising.*. -# /showadvert. (easylist.txt: 5159) -/(.*/)?showadvert\. -showadvert.*. -# /showads_ (easylist.txt: 5158) -/(.*/)?showads_ -# /showads/* (easylist.txt: 5157) -/(.*/)?showads/.* -# /showads. (easylist.txt: 5156) -/(.*/)?showads\. -showads.*. -# /showadjs. (easylist.txt: 5155) -/(.*/)?showadjs\. -showadjs.*. -# /showadcode. (easylist.txt: 5154) -/(.*/)?showadcode\. -showadcode.*. -# /showad_ (easylist.txt: 5153) -/(.*/)?showad_ -# /showAd300. (easylist.txt: 5152) -/(.*/)?showAd300\. -showAd300.*. -# /showAd300- (easylist.txt: 5151) -/(.*/)?showAd300- -showAd300-*. -# /showad/* (easylist.txt: 5150) -/(.*/)?showad/.* -# /showad. (easylist.txt: 5149) -/(.*/)?showad\. -showad.*. -# /show_ads_ (easylist.txt: 5148) -/(.*/)?show_ads_ -# /show_ads.js (easylist.txt: 5147) -/(.*/)?show_ads\.js -# /show_ad_ (easylist.txt: 5146) -/(.*/)?show_ad_ -# /show_ad. (easylist.txt: 5145) -/(.*/)?show_ad\. -# /show.cgi?adp (easylist.txt: 5144) -/(.*/)?show\.cgi\?adp -# /show.ad? (easylist.txt: 5143) -/(.*/)?show\.ad\? -# /show-ads. (easylist.txt: 5142) -/(.*/)?show-ads\. -show-ads.*. -# /show-ad. (easylist.txt: 5141) -/(.*/)?show-ad\. -show-ad.*. -# /shortmediads/* (easylist.txt: 5140) -/(.*/)?shortmediads/.* -# /shared/ads/* (easylist.txt: 5139) -/(.*/)?shared/ads/.* -# /shared/ads. (easylist.txt: 5138) -/(.*/)?shared/ads\. -# /shared/ad_ (easylist.txt: 5137) -/(.*/)?shared/ad_ -# /share/ads/* (easylist.txt: 5136) -/(.*/)?share/ads/.* -# /sevenl_ad. (easylist.txt: 5135) -/(.*/)?sevenl_ad\. -# /sevenads. (easylist.txt: 5134) -/(.*/)?sevenads\. -sevenads.*. -# /settings/ad. (easylist.txt: 5133) -/(.*/)?settings/ad\. -# /servlet/view/* (easylist.txt: 5132) -/(.*/)?servlet/view/.* -# /services/ads/* (easylist.txt: 5131) -/(.*/)?services/ads/.* -# /service/ads/* (easylist.txt: 5130) -/(.*/)?service/ads/.* -# /servewebads/* (easylist.txt: 5129) -/(.*/)?servewebads/.* -# /server/ads/* (easylist.txt: 5128) -/(.*/)?server/ads/.* -# /Server/AD/* (easylist.txt: 5127) -/(.*/)?Server/AD/.* -# /serveads. (easylist.txt: 5126) -/(.*/)?serveads\. -serveads.*. -# /ServeAd? (easylist.txt: 5125) -/(.*/)?ServeAd\? -# /servead/* (easylist.txt: 5124) -/(.*/)?servead/.* -# /servead. (easylist.txt: 5123) -/(.*/)?servead\. -servead.*. -# /serve.ads. (easylist.txt: 5122) -/(.*/)?serve\.ads\. -serve.ads.*. -# /serv.ads. (easylist.txt: 5121) -/(.*/)?serv\.ads\. -serv.ads.*. -# /seo-ads. (easylist.txt: 5120) -/(.*/)?seo-ads\. -seo-ads.*. -# /securepubads. (easylist.txt: 5119) -/(.*/)?securepubads\. -securepubads.*. -# /secondads_ (easylist.txt: 5118) -/(.*/)?secondads_ -# /secondads. (easylist.txt: 5117) -/(.*/)?secondads\. -secondads.*. -# /searchads/* (easylist.txt: 5116) -/(.*/)?searchads/.* -# /searchad_ (easylist.txt: 5115) -/(.*/)?searchad_ -# /searchad. (easylist.txt: 5114) -/(.*/)?searchad\. -searchad.*. -# /search_ads. (easylist.txt: 5113) -/(.*/)?search_ads\. -# /search/ads_ (easylist.txt: 5112) -/(.*/)?search/ads_ -# /search/ads? (easylist.txt: 5111) -/(.*/)?search/ads\? -# /search/ad/* (easylist.txt: 5110) -/(.*/)?search/ad/.* -# /search.php?uid=*.*&src= (easylist.txt: 5109) -/(.*/)?search\.php\?uid=.*\..*&src= -# /search-ads? (easylist.txt: 5108) -/(.*/)?search-ads\? -# /scrpads. (easylist.txt: 5107) -/(.*/)?scrpads\. -scrpads.*. -# /scrollads/* (easylist.txt: 5106) -/(.*/)?scrollads/.* -# /scripts/zanox- (easylist.txt: 5105) -/(.*/)?scripts/zanox- -# /scripts/feedmeCaf.php?q=*&d=*&ron=$script (easylist.txt: 5104) -/(.*/)?scripts/feedmeCaf\.php\?q=.*&d=.*&ron= -# /scripts/afc/* (easylist.txt: 5103) -/(.*/)?scripts/afc/.* -# /scripts/adv. (easylist.txt: 5102) -/(.*/)?scripts/adv\. -# /scripts/AdService_ (easylist.txt: 5101) -/(.*/)?scripts/AdService_ -# /scripts/ads/* (easylist.txt: 5100) -/(.*/)?scripts/ads/.* -# /scripts/ads. (easylist.txt: 5099) -/(.*/)?scripts/ads\. -# /scripts/ad_ (easylist.txt: 5098) -/(.*/)?scripts/ad_ -# /scripts/ad/* (easylist.txt: 5097) -/(.*/)?scripts/ad/.* -# /scripts/ad. (easylist.txt: 5096) -/(.*/)?scripts/ad\. -# /scripts/ad- (easylist.txt: 5095) -/(.*/)?scripts/ad- -# /script/oas/* (easylist.txt: 5094) -/(.*/)?script/oas/.* -# /script/banniere_*.php?id=*&ref=$script,third-party (easylist.txt: 5093) -/(.*/)?script/banniere_.*\.php\?id=.*&ref= -# /script/ads_ (easylist.txt: 5092) -/(.*/)?script/ads_ -# /script/ads. (easylist.txt: 5091) -/(.*/)?script/ads\. -# /script/ad. (easylist.txt: 5090) -/(.*/)?script/ad\. -# /scaradcontrol. (easylist.txt: 5089) -/(.*/)?scaradcontrol\. -scaradcontrol.*. -# /scanscoutplugin. (easylist.txt: 5088) -/(.*/)?scanscoutplugin\. -scanscoutplugin.*. -# /scanscoutoverlayadrenderer. (easylist.txt: 5087) -/(.*/)?scanscoutoverlayadrenderer\. -scanscoutoverlayadrenderer.*. -# /scanscout. (easylist.txt: 5086) -/(.*/)?scanscout\. -scanscout.*. -# /sb-relevance.js (easylist.txt: 5085) -/(.*/)?sb-relevance\.js -sb-relevance.js*. -# /savvyads. (easylist.txt: 5084) -/(.*/)?savvyads\. -savvyads.*. -# /satnetgoogleads. (easylist.txt: 5083) -/(.*/)?satnetgoogleads\. -satnetgoogleads.*. -# /satnetads. (easylist.txt: 5082) -/(.*/)?satnetads\. -satnetads.*. -# /samsung_ad. (easylist.txt: 5081) -/(.*/)?samsung_ad\. -# /samplead1. (easylist.txt: 5080) -/(.*/)?samplead1\. -samplead1.*. -# /salesad/* (easylist.txt: 5079) -/(.*/)?salesad/.* -# /sailthru.js (easylist.txt: 5078) -/(.*/)?sailthru\.js -sailthru.js*. -# /safead/* (easylist.txt: 5077) -/(.*/)?safead/.* -# /rule34v2/ads/* (easylist.txt: 5076) -/(.*/)?rule34v2/ads/.* -# /rule34/ads/* (easylist.txt: 5075) -/(.*/)?rule34/ads/.* -# /rswebsiteads/* (easylist.txt: 5074) -/(.*/)?rswebsiteads/.* -# /rss2/?np=*&hp=$script,third-party (easylist.txt: 5073) -/(.*/)?rss2/\?np=.*&hp= -# /rss2/?hp=*&np=$script,third-party (easylist.txt: 5072) -/(.*/)?rss2/\?hp=.*&np= -# /rss2/?*&np=*&hp=$script,third-party (easylist.txt: 5071) -/(.*/)?rss2/\?.*&np=.*&hp= -# /rss2/?*&hp=*&np=$script,third-party (easylist.txt: 5070) -/(.*/)?rss2/\?.*&hp=.*&np= -# /rss/ads/* (easylist.txt: 5069) -/(.*/)?rss/ads/.* -# /rsc_ad_ (easylist.txt: 5068) -/(.*/)?rsc_ad_ -# /rsads/* (easylist.txt: 5067) -/(.*/)?rsads/.* -# /rsads.js (easylist.txt: 5066) -/(.*/)?rsads\.js -rsads.js*. -# /rpgetad. (easylist.txt: 5065) -/(.*/)?rpgetad\. -rpgetad.*. -# /rpc/ad/* (easylist.txt: 5064) -/(.*/)?rpc/ad/.* -# /roturl.js (easylist.txt: 5063) -/(.*/)?roturl\.js -roturl.js*. -# /rotatoradbottom. (easylist.txt: 5062) -/(.*/)?rotatoradbottom\. -rotatoradbottom.*. -# /rotatorad300x250. (easylist.txt: 5061) -/(.*/)?rotatorad300x250\. -rotatorad300x250.*. -# /rotationad. (easylist.txt: 5060) -/(.*/)?rotationad\. -rotationad.*. -# /rotation/banner (easylist.txt: 5059) -/(.*/)?rotation/banner -# /rotatingtextad. (easylist.txt: 5058) -/(.*/)?rotatingtextad\. -rotatingtextad.*. -# /rotatingpeels. (easylist.txt: 5057) -/(.*/)?rotatingpeels\. -rotatingpeels.*. -# /rotatingad. (easylist.txt: 5056) -/(.*/)?rotatingad\. -rotatingad.*. -# /rotating_banner.php (easylist.txt: 5055) -/(.*/)?rotating_banner\.php -# /rotatedads2. (easylist.txt: 5054) -/(.*/)?rotatedads2\. -rotatedads2.*. -# /rotatedads13. (easylist.txt: 5053) -/(.*/)?rotatedads13\. -rotatedads13.*. -# /rotatedads1. (easylist.txt: 5052) -/(.*/)?rotatedads1\. -rotatedads1.*. -# /rotateads. (easylist.txt: 5051) -/(.*/)?rotateads\. -rotateads.*. -# /rotads/* (easylist.txt: 5050) -/(.*/)?rotads/.* -# /rotad/* (easylist.txt: 5049) -/(.*/)?rotad/.* -# /root_ad. (easylist.txt: 5048) -/(.*/)?root_ad\. -# /rolloverbannerad. (easylist.txt: 5047) -/(.*/)?rolloverbannerad\. -rolloverbannerad.*. -# /rolloverads/* (easylist.txt: 5046) -/(.*/)?rolloverads/.* -# /rollad. (easylist.txt: 5045) -/(.*/)?rollad\. -rollad.*. -# /righttopads. (easylist.txt: 5044) -/(.*/)?righttopads\. -righttopads.*. -# /rightsideaddisplay. (easylist.txt: 5043) -/(.*/)?rightsideaddisplay\. -rightsideaddisplay.*. -# /rightrailgoogleads. (easylist.txt: 5042) -/(.*/)?rightrailgoogleads\. -rightrailgoogleads.*. -# /rightnavadsanswer. (easylist.txt: 5041) -/(.*/)?rightnavadsanswer\. -rightnavadsanswer.*. -# /rightnavads. (easylist.txt: 5040) -/(.*/)?rightnavads\. -rightnavads.*. -# /rightbanner/* (easylist.txt: 5039) -/(.*/)?rightbanner/.* -# /rightads. (easylist.txt: 5038) -/(.*/)?rightads\. -rightads.*. -# /rightad/* (easylist.txt: 5037) -/(.*/)?rightad/.* -# /rightad. (easylist.txt: 5036) -/(.*/)?rightad\. -rightad.*. -# /right_ads. (easylist.txt: 5035) -/(.*/)?right_ads\. -# /right_ad_ (easylist.txt: 5034) -/(.*/)?right_ad_ -# /right_ad^ (easylist.txt: 5033) -/(.*/)?right_ad[^\w%.-] -# /right_ad. (easylist.txt: 5032) -/(.*/)?right_ad\. -# /right-ad- (easylist.txt: 5031) -/(.*/)?right-ad- -right-ad-*. -# /richoas. (easylist.txt: 5030) -/(.*/)?richoas\. -richoas.*. -# /rhspushads/* (easylist.txt: 5029) -/(.*/)?rhspushads/.* -# /rgads. (easylist.txt: 5028) -/(.*/)?rgads\. -rgads.*. -# /rg-rlog.php$xmlhttprequest (easylist.txt: 5027) -/(.*/)?rg-rlog\.php -rg-rlog.php*. -# /rg-erdr.php$xmlhttprequest (easylist.txt: 5026) -/(.*/)?rg-erdr\.php -rg-erdr.php*. -# /revealads2/* (easylist.txt: 5025) -/(.*/)?revealads2/.* -# /revealads/* (easylist.txt: 5024) -/(.*/)?revealads/.* -# /revealads. (easylist.txt: 5023) -/(.*/)?revealads\. -revealads.*. -# /revealaads/* (easylist.txt: 5022) -/(.*/)?revealaads/.* -# /revealaads. (easylist.txt: 5021) -/(.*/)?revealaads\. -revealaads.*. -# /retrieve-ad. (easylist.txt: 5020) -/(.*/)?retrieve-ad\. -retrieve-ad.*. -# /retrad. (easylist.txt: 5019) -/(.*/)?retrad\. -retrad.*. -# /restorationad- (easylist.txt: 5018) -/(.*/)?restorationad- -restorationad-*. -# /responsive_dfp_ (easylist.txt: 5017) -/(.*/)?responsive_dfp_ -# /responsive_dfp. (easylist.txt: 5016) -/(.*/)?responsive_dfp\. -# /responsive-ads. (easylist.txt: 5015) -/(.*/)?responsive-ads\. -responsive-ads.*. -# /resources/ads_ (easylist.txt: 5014) -/(.*/)?resources/ads_ -# /resources/ads/* (easylist.txt: 5013) -/(.*/)?resources/ads/.* -# /resources/ad. (easylist.txt: 5012) -/(.*/)?resources/ad\. -# /requestmyspacead. (easylist.txt: 5011) -/(.*/)?requestmyspacead\. -requestmyspacead.*. -# /requestadvertisement. (easylist.txt: 5010) -/(.*/)?requestadvertisement\. -requestadvertisement.*. -# /report_ad_ (easylist.txt: 5009) -/(.*/)?report_ad_ -# /report_ad. (easylist.txt: 5008) -/(.*/)?report_ad\. -# /repeat_adv. (easylist.txt: 5007) -/(.*/)?repeat_adv\. -# /renderBanner.do? (easylist.txt: 5006) -/(.*/)?renderBanner\.do\? -# /render-ad/* (easylist.txt: 5005) -/(.*/)?render-ad/.* -# /remove_ads. (easylist.txt: 5004) -/(.*/)?remove_ads\. -# /remove-ads. (easylist.txt: 5003) -/(.*/)?remove-ads\. -remove-ads.*. -# /relevance_ad. (easylist.txt: 5002) -/(.*/)?relevance_ad\. -# /relatedads. (easylist.txt: 5001) -/(.*/)?relatedads\. -relatedads.*. -# /related-ads. (easylist.txt: 5000) -/(.*/)?related-ads\. -related-ads.*. -# /reklame/* (easylist.txt: 4999) -/(.*/)?reklame/.* -# /reklama5. (easylist.txt: 4998) -/(.*/)?reklama5\. -reklama5.*. -# /reklama2. (easylist.txt: 4997) -/(.*/)?reklama2\. -reklama2.*. -# /reklama/* (easylist.txt: 4996) -/(.*/)?reklama/.* -# /reklama.$~stylesheet (easylist.txt: 4995) -/(.*/)?reklama\. -reklama.*. -# /reklam/* (easylist.txt: 4994) -/(.*/)?reklam/.* -# /reklam. (easylist.txt: 4993) -/(.*/)?reklam\. -reklam.*. -# /RefSplDicAdsTopL. (easylist.txt: 4992) -/(.*/)?RefSplDicAdsTopL\. -RefSplDicAdsTopL.*. -# /refreshsyncbannerad? (easylist.txt: 4991) -/(.*/)?refreshsyncbannerad\? -# /refreshads- (easylist.txt: 4990) -/(.*/)?refreshads- -refreshads-*. -# /refads/* (easylist.txt: 4989) -/(.*/)?refads/.* -# /redirect_awe. (easylist.txt: 4988) -/(.*/)?redirect_awe\. -# /rectangle_advertorials_ (easylist.txt: 4987) -/(.*/)?rectangle_advertorials_ -# /rectangle_ad. (easylist.txt: 4986) -/(.*/)?rectangle_ad\. -# /rect_ad. (easylist.txt: 4985) -/(.*/)?rect_ad\. -# /recordadsall. (easylist.txt: 4984) -/(.*/)?recordadsall\. -recordadsall.*. -# /recommendations/ad. (easylist.txt: 4983) -/(.*/)?recommendations/ad\. -# /reclame/* (easylist.txt: 4982) -/(.*/)?reclame/.* -# /reclama/* (easylist.txt: 4981) -/(.*/)?reclama/.* -# /realmedia_mjx_ (easylist.txt: 4980) -/(.*/)?realmedia_mjx_ -# /realmedia_mjx. (easylist.txt: 4979) -/(.*/)?realmedia_mjx\. -# /realmedia_banner_ (easylist.txt: 4978) -/(.*/)?realmedia_banner_ -# /realmedia_banner. (easylist.txt: 4977) -/(.*/)?realmedia_banner\. -# /realmedia/ads/* (easylist.txt: 4976) -/(.*/)?realmedia/ads/.* -# /rcom-video-ads. (easylist.txt: 4975) -/(.*/)?rcom-video-ads\. -rcom-video-ads.*. -# /rcom-ads. (easylist.txt: 4974) -/(.*/)?rcom-ads\. -rcom-ads.*. -# /rcom-ads- (easylist.txt: 4973) -/(.*/)?rcom-ads- -rcom-ads-*. -# /rcolads2. (easylist.txt: 4972) -/(.*/)?rcolads2\. -rcolads2.*. -# /rcolads1. (easylist.txt: 4971) -/(.*/)?rcolads1\. -rcolads1.*. -# /rawtubelivead. (easylist.txt: 4970) -/(.*/)?rawtubelivead\. -rawtubelivead.*. -# /randomads. (easylist.txt: 4969) -/(.*/)?randomads\. -randomads.*. -# /randomad_ (easylist.txt: 4968) -/(.*/)?randomad_ -# /randomad728x90nsfw. (easylist.txt: 4967) -/(.*/)?randomad728x90nsfw\. -randomad728x90nsfw.*. -# /randomad300x250nsfw. (easylist.txt: 4966) -/(.*/)?randomad300x250nsfw\. -randomad300x250nsfw.*. -# /randomad2. (easylist.txt: 4965) -/(.*/)?randomad2\. -randomad2.*. -# /randomad160x600nsfw. (easylist.txt: 4964) -/(.*/)?randomad160x600nsfw\. -randomad160x600nsfw.*. -# /randomad120x600nsfw. (easylist.txt: 4963) -/(.*/)?randomad120x600nsfw\. -randomad120x600nsfw.*. -# /randomad. (easylist.txt: 4962) -/(.*/)?randomad\. -randomad.*. -# /ram/ads/* (easylist.txt: 4961) -/(.*/)?ram/ads/.* -# /RainbowTGXServer/* (easylist.txt: 4960) -/(.*/)?RainbowTGXServer/.* -# /railsad_ (easylist.txt: 4959) -/(.*/)?railsad_ -# /railsad. (easylist.txt: 4958) -/(.*/)?railsad\. -railsad.*. -# /railads. (easylist.txt: 4957) -/(.*/)?railads\. -railads.*. -# /railad. (easylist.txt: 4956) -/(.*/)?railad\. -railad.*. -# /rail_ad_ (easylist.txt: 4955) -/(.*/)?rail_ad_ -# /radopenx? (easylist.txt: 4954) -/(.*/)?radopenx\? -# /radioAdEmbedGPT. (easylist.txt: 4953) -/(.*/)?radioAdEmbedGPT\. -radioAdEmbedGPT.*. -# /radioadembedgenre. (easylist.txt: 4952) -/(.*/)?radioadembedgenre\. -radioadembedgenre.*. -# /radioAdEmbed. (easylist.txt: 4951) -/(.*/)?radioAdEmbed\. -radioAdEmbed.*. -# /r_ads/* (easylist.txt: 4950) -/(.*/)?r_ads/.* -# /quigo_ad (easylist.txt: 4949) -/(.*/)?quigo_ad -# /quick_ads/* (easylist.txt: 4948) -/(.*/)?quick_ads/.* -# /questions/ads/* (easylist.txt: 4947) -/(.*/)?questions/ads/.* -# /quadadvert. (easylist.txt: 4946) -/(.*/)?quadadvert\. -quadadvert.*. -# /qpon_big_ad (easylist.txt: 4945) -/(.*/)?qpon_big_ad -# /qd_ads/* (easylist.txt: 4944) -/(.*/)?qd_ads/.* -# /qandaads/* (easylist.txt: 4943) -/(.*/)?qandaads/.* -# /pushdownAd. (easylist.txt: 4942) -/(.*/)?pushdownAd\. -pushdownAd.*. -# /punder.php (easylist.txt: 4941) -/(.*/)?punder\.php -punder.php*. -# /punder.js (easylist.txt: 4940) -/(.*/)?punder\.js -punder.js*. -# /pullads. (easylist.txt: 4939) -/(.*/)?pullads\. -pullads.*. -# /puff_ad? (easylist.txt: 4938) -/(.*/)?puff_ad\? -# /pubs_aff.asp? (easylist.txt: 4937) -/(.*/)?pubs_aff\.asp\? -# /pubmatic_ (easylist.txt: 4936) -/(.*/)?pubmatic_ -# /publicidade/* (easylist.txt: 4935) -/(.*/)?publicidade/.* -# /publicidade. (easylist.txt: 4934) -/(.*/)?publicidade\. -publicidade.*. -# /publicidad_$~stylesheet (easylist.txt: 4933) -/(.*/)?publicidad_ -# /publicidad/* (easylist.txt: 4932) -/(.*/)?publicidad/.* -# /publicidad.$~object-subrequest,~stylesheet (easylist.txt: 4931) -/(.*/)?publicidad\. -publicidad.*. -# /public/adv/* (easylist.txt: 4930) -/(.*/)?public/adv/.* -# /public/ads/* (easylist.txt: 4929) -/(.*/)?public/ads/.* -# /public/ad? (easylist.txt: 4928) -/(.*/)?public/ad\? -# /public/ad/* (easylist.txt: 4927) -/(.*/)?public/ad/.* -# /pubads_ (easylist.txt: 4926) -/(.*/)?pubads_ -# /pubads. (easylist.txt: 4925) -/(.*/)?pubads\. -pubads.*. -# /pubad. (easylist.txt: 4924) -/(.*/)?pubad\. -pubad.*. -# /pub_images/*$third-party (easylist.txt: 4923) -/(.*/)?pub_images/.* -# /pub/ads/* (easylist.txt: 4922) -/(.*/)?pub/ads/.* -# /pub/ad/* (easylist.txt: 4921) -/(.*/)?pub/ad/.* -# /proxyadcall? (easylist.txt: 4920) -/(.*/)?proxyadcall\? -# /proxxorad. (easylist.txt: 4919) -/(.*/)?proxxorad\. -proxxorad.*. -# /provider_ads/* (easylist.txt: 4918) -/(.*/)?provider_ads/.* -# /provideadcode. (easylist.txt: 4917) -/(.*/)?provideadcode\. -provideadcode.*. -# /protection/ad/* (easylist.txt: 4916) -/(.*/)?protection/ad/.* -# /promotools1. (easylist.txt: 4915) -/(.*/)?promotools1\. -promotools1.*. -# /promotools/* (easylist.txt: 4914) -/(.*/)?promotools/.* -# /promotools. (easylist.txt: 4913) -/(.*/)?promotools\. -promotools.*. -# /promotions/ads? (easylist.txt: 4912) -/(.*/)?promotions/ads\? -# /promotions/ads/* (easylist.txt: 4911) -/(.*/)?promotions/ads/.* -# /promotions/ads. (easylist.txt: 4910) -/(.*/)?promotions/ads\. -# /promotion/geoip/* (easylist.txt: 4909) -/(.*/)?promotion/geoip/.* -# /promoredirect?*&campaign=*&zone= (easylist.txt: 4908) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /promoloaddisplay? (easylist.txt: 4907) -/(.*/)?promoloaddisplay\? -# /promobuttonad. (easylist.txt: 4906) -/(.*/)?promobuttonad\. -promobuttonad.*. -# /promoads/* (easylist.txt: 4905) -/(.*/)?promoads/.* -# /promo300x250. (easylist.txt: 4904) -/(.*/)?promo300x250\. -promo300x250.*. -# /promo300by250. (easylist.txt: 4903) -/(.*/)?promo300by250\. -promo300by250.*. -# /promo/banners/* (easylist.txt: 4902) -/(.*/)?promo/banners/.* -# /promo/affiframe. (easylist.txt: 4901) -/(.*/)?promo/affiframe\. -# /promo/ads/* (easylist.txt: 4900) -/(.*/)?promo/ads/.* -# /promo/ad_ (easylist.txt: 4899) -/(.*/)?promo/ad_ -# /promo-ads/* (easylist.txt: 4898) -/(.*/)?promo-ads/.* -# /projectwonderful_ (easylist.txt: 4897) -/(.*/)?projectwonderful_ -# /prog-sponsor/* (easylist.txt: 4896) -/(.*/)?prog-sponsor/.* -# /production/ads/* (easylist.txt: 4895) -/(.*/)?production/ads/.* -# /product-ads/* (easylist.txt: 4894) -/(.*/)?product-ads/.* -# /product-ad/* (easylist.txt: 4893) -/(.*/)?product-ad/.* -# /processing/impressions.asp? (easylist.txt: 4892) -/(.*/)?processing/impressions\.asp\? -# /processads. (easylist.txt: 4891) -/(.*/)?processads\. -processads.*. -# /processad. (easylist.txt: 4890) -/(.*/)?processad\. -processad.*. -# /proadvertising_ (easylist.txt: 4889) -/(.*/)?proadvertising_ -# /proadvertising. (easylist.txt: 4888) -/(.*/)?proadvertising\. -proadvertising.*. -# /proads/* (easylist.txt: 4887) -/(.*/)?proads/.* -# /PRNAd300x150. (easylist.txt: 4886) -/(.*/)?PRNAd300x150\. -PRNAd300x150.*. -# /printads/* (easylist.txt: 4885) -/(.*/)?printads/.* -# /printad/* (easylist.txt: 4884) -/(.*/)?printad/.* -# /printad. (easylist.txt: 4883) -/(.*/)?printad\. -printad.*. -# /previews/ad/* (easylist.txt: 4882) -/(.*/)?previews/ad/.* -# /prerollads. (easylist.txt: 4881) -/(.*/)?prerollads\. -prerollads.*. -# /prerollad. (easylist.txt: 4880) -/(.*/)?prerollad\. -prerollad.*. -# /premiumadzone. (easylist.txt: 4879) -/(.*/)?premiumadzone\. -premiumadzone.*. -# /premiumads/* (easylist.txt: 4878) -/(.*/)?premiumads/.* -# /premium_ad. (easylist.txt: 4877) -/(.*/)?premium_ad\. -# /premierebtnad/* (easylist.txt: 4876) -/(.*/)?premierebtnad/.* -# /predictad. (easylist.txt: 4875) -/(.*/)?predictad\. -predictad.*. -# /ppd_ads_ (easylist.txt: 4874) -/(.*/)?ppd_ads_ -# /ppd_ads. (easylist.txt: 4873) -/(.*/)?ppd_ads\. -# /pounder-$~image (easylist.txt: 4872) -/(.*/)?pounder- -pounder-*. -# /posts_ad. (easylist.txt: 4871) -/(.*/)?posts_ad\. -# /postprofileverticalad. (easylist.txt: 4870) -/(.*/)?postprofileverticalad\. -postprofileverticalad.*. -# /postprofilehorizontalad. (easylist.txt: 4869) -/(.*/)?postprofilehorizontalad\. -postprofilehorizontalad.*. -# /postprocad. (easylist.txt: 4868) -/(.*/)?postprocad\. -postprocad.*. -# /postad. (easylist.txt: 4867) -/(.*/)?postad\. -postad.*. -# /post_ads_ (easylist.txt: 4866) -/(.*/)?post_ads_ -# /post/ads/* (easylist.txt: 4865) -/(.*/)?post/ads/.* -# /post-ad- (easylist.txt: 4864) -/(.*/)?post-ad- -post-ad-*. -# /popupunder. (easylist.txt: 4863) -/(.*/)?popupunder\. -popupunder.*. -# /popupdfp. (easylist.txt: 4862) -/(.*/)?popupdfp\. -popupdfp.*. -# /popupads. (easylist.txt: 4861) -/(.*/)?popupads\. -popupads.*. -# /popup_code. (easylist.txt: 4860) -/(.*/)?popup_code\. -# /popup_ad. (easylist.txt: 4859) -/(.*/)?popup_ad\. -# /popup3.js (easylist.txt: 4858) -/(.*/)?popup3\.js -popup3.js*. -# /popup2.js (easylist.txt: 4857) -/(.*/)?popup2\.js -popup2.js*. -# /popup-domination/*$~stylesheet (easylist.txt: 4856) -/(.*/)?popup-domination/.* -# /popundr_ (easylist.txt: 4855) -/(.*/)?popundr_ -# /popundr. (easylist.txt: 4854) -/(.*/)?popundr\. -popundr.*. -# /popunders/* (easylist.txt: 4853) -/(.*/)?popunders/.* -# /popunders. (easylist.txt: 4852) -/(.*/)?popunders\. -popunders.*. -# /popunderking. (easylist.txt: 4851) -/(.*/)?popunderking\. -popunderking.*. -# /popundercode. (easylist.txt: 4850) -/(.*/)?popundercode\. -popundercode.*. -# /popunderblogs. (easylist.txt: 4849) -/(.*/)?popunderblogs\. -popunderblogs.*. -# /popunder_ (easylist.txt: 4848) -/(.*/)?popunder_ -# /popunder? (easylist.txt: 4847) -/(.*/)?popunder\? -# /popunder7. (easylist.txt: 4846) -/(.*/)?popunder7\. -popunder7.*. -# /popunder5. (easylist.txt: 4845) -/(.*/)?popunder5\. -popunder5.*. -# /popunder4. (easylist.txt: 4844) -/(.*/)?popunder4\. -popunder4.*. -# /popunder2. (easylist.txt: 4843) -/(.*/)?popunder2\. -popunder2.*. -# /popunder1_ (easylist.txt: 4842) -/(.*/)?popunder1_ -# /popunder1. (easylist.txt: 4841) -/(.*/)?popunder1\. -popunder1.*. -# /popunder/* (easylist.txt: 4840) -/(.*/)?popunder/.* -# /popunder. (easylist.txt: 4839) -/(.*/)?popunder\. -popunder.*. -# /popunder- (easylist.txt: 4838) -/(.*/)?popunder- -popunder-*. -# /popu.js (easylist.txt: 4837) -/(.*/)?popu\.js -popu.js*. -# /popshow.$~stylesheet (easylist.txt: 4836) -/(.*/)?popshow\. -popshow.*. -# /poprotator. (easylist.txt: 4835) -/(.*/)?poprotator\. -poprotator.*. -# /popounder4. (easylist.txt: 4834) -/(.*/)?popounder4\. -popounder4.*. -# /poplivejasmine. (easylist.txt: 4833) -/(.*/)?poplivejasmine\. -poplivejasmine.*. -# /popads_ (easylist.txt: 4832) -/(.*/)?popads_ -# /popads/* (easylist.txt: 4831) -/(.*/)?popads/.* -# /popads. (easylist.txt: 4830) -/(.*/)?popads\. -popads.*. -# /popad. (easylist.txt: 4829) -/(.*/)?popad\. -popad.*. -# /popad- (easylist.txt: 4828) -/(.*/)?popad- -popad-*. -# /pop_under/* (easylist.txt: 4827) -/(.*/)?pop_under/.* -# /pop_under. (easylist.txt: 4826) -/(.*/)?pop_under\. -# /pop_camgirlcity. (easylist.txt: 4825) -/(.*/)?pop_camgirlcity\. -# /pop_adfy. (easylist.txt: 4824) -/(.*/)?pop_adfy\. -# /pop_ad. (easylist.txt: 4823) -/(.*/)?pop_ad\. -# /pop?tid= (easylist.txt: 4822) -/(.*/)?pop\?tid= -# /pop2.js| (easylist.txt: 4821) -/(.*/)?pop2\.js$ -pop2.js -# /pop.js| (easylist.txt: 4820) -/(.*/)?pop\.js$ -pop.js -# /pop-under. (easylist.txt: 4819) -/(.*/)?pop-under\. -pop-under.*. -# /pool/ad/* (easylist.txt: 4818) -/(.*/)?pool/ad/.* -# /pool.ads. (easylist.txt: 4817) -/(.*/)?pool\.ads\. -pool.ads.*. -# /polopoly_fs/ad- (easylist.txt: 4816) -/(.*/)?polopoly_fs/ad- -# /poll-ad- (easylist.txt: 4815) -/(.*/)?poll-ad- -poll-ad-*. -# /poker-ad. (easylist.txt: 4814) -/(.*/)?poker-ad\. -poker-ad.*. -# /plus/ad_ (easylist.txt: 4813) -/(.*/)?plus/ad_ -# /plugins_ads_ (easylist.txt: 4812) -/(.*/)?plugins_ads_ -# /plugins/wp_actionpop/* (easylist.txt: 4811) -/(.*/)?plugins/wp_actionpop/.* -# /plugins/wp125/*$~stylesheet (easylist.txt: 4810) -/(.*/)?plugins/wp125/.* -# /plugins/wp-moreads/*$~stylesheet (easylist.txt: 4809) -/(.*/)?plugins/wp-moreads/.* -# /plugins/page-cornr- (easylist.txt: 4808) -/(.*/)?plugins/page-cornr- -# /plugins/ads/* (easylist.txt: 4807) -/(.*/)?plugins/ads/.* -# /plugins/ad. (easylist.txt: 4806) -/(.*/)?plugins/ad\. -# /plugin/ad/* (easylist.txt: 4805) -/(.*/)?plugin/ad/.* -# /pledgead. (easylist.txt: 4804) -/(.*/)?pledgead\. -pledgead.*. -# /player_ads/* (easylist.txt: 4803) -/(.*/)?player_ads/.* -# /player/ads/* (easylist.txt: 4802) -/(.*/)?player/ads/.* -# /player/ads. (easylist.txt: 4801) -/(.*/)?player/ads\. -# /player/ad/* (easylist.txt: 4800) -/(.*/)?player/ad/.* -# /play/ad/* (easylist.txt: 4799) -/(.*/)?play/ad/.* -# /placements/ad_ (easylist.txt: 4798) -/(.*/)?placements/ad_ -# /placeholder-ad- (easylist.txt: 4797) -/(.*/)?placeholder-ad- -placeholder-ad-*. -# /placead_ (easylist.txt: 4796) -/(.*/)?placead_ -# /place-ads/* (easylist.txt: 4795) -/(.*/)?place-ads/.* -# /pixelads/* (easylist.txt: 4794) -/(.*/)?pixelads/.* -# /pix/ads/* (easylist.txt: 4793) -/(.*/)?pix/ads/.* -# /pitattoad. (easylist.txt: 4792) -/(.*/)?pitattoad\. -pitattoad.*. -# /pilot_ad. (easylist.txt: 4791) -/(.*/)?pilot_ad\. -# /pictures/ads/* (easylist.txt: 4790) -/(.*/)?pictures/ads/.* -# /pictureads/* (easylist.txt: 4789) -/(.*/)?pictureads/.* -# /picture/ad/* (easylist.txt: 4788) -/(.*/)?picture/ad/.* -# /pics/ads/* (easylist.txt: 4787) -/(.*/)?pics/ads/.* -# /pickle-adsystem/* (easylist.txt: 4786) -/(.*/)?pickle-adsystem/.* -# /pic_adv/* (easylist.txt: 4785) -/(.*/)?pic_adv/.* -# /pic/ads/* (easylist.txt: 4784) -/(.*/)?pic/ads/.* -# /phpbanner/banner_ (easylist.txt: 4783) -/(.*/)?phpbanner/banner_ -# /phpadsnew/* (easylist.txt: 4782) -/(.*/)?phpadsnew/.* -# /phpadserver/* (easylist.txt: 4781) -/(.*/)?phpadserver/.* -# /phpads2/* (easylist.txt: 4780) -/(.*/)?phpads2/.* -# /phpads/* (easylist.txt: 4779) -/(.*/)?phpads/.* -# /phpads. (easylist.txt: 4778) -/(.*/)?phpads\. -phpads.*. -# /php/ads/* (easylist.txt: 4777) -/(.*/)?php/ads/.* -# /php/ad/* (easylist.txt: 4776) -/(.*/)?php/ad/.* -# /photogallaryads. (easylist.txt: 4775) -/(.*/)?photogallaryads\. -photogallaryads.*. -# /photoflipper/ads/* (easylist.txt: 4774) -/(.*/)?photoflipper/ads/.* -# /photoads/* (easylist.txt: 4773) -/(.*/)?photoads/.* -# /photoad. (easylist.txt: 4772) -/(.*/)?photoad\. -photoad.*. -# /photo728ad. (easylist.txt: 4771) -/(.*/)?photo728ad\. -photo728ad.*. -# /pgrightsideads. (easylist.txt: 4770) -/(.*/)?pgrightsideads\. -pgrightsideads.*. -# /pgad. (easylist.txt: 4769) -/(.*/)?pgad\. -pgad.*. -# /pfpadv. (easylist.txt: 4768) -/(.*/)?pfpadv\. -pfpadv.*. -# /persadpub/* (easylist.txt: 4767) -/(.*/)?persadpub/.* -# /permanent/ads/* (easylist.txt: 4766) -/(.*/)?permanent/ads/.* -# /performancingads/* (easylist.txt: 4765) -/(.*/)?performancingads/.* -# /performance_ads/* (easylist.txt: 4764) -/(.*/)?performance_ads/.* -# /perfads. (easylist.txt: 4763) -/(.*/)?perfads\. -perfads.*. -# /pencilad. (easylist.txt: 4762) -/(.*/)?pencilad\. -pencilad.*. -# /peeltr. (easylist.txt: 4761) -/(.*/)?peeltr\. -peeltr.*. -# /peeltl. (easylist.txt: 4760) -/(.*/)?peeltl\. -peeltl.*. -# /peeljs.php (easylist.txt: 4759) -/(.*/)?peeljs\.php -peeljs.php*. -# /peelbackscript/ad_ (easylist.txt: 4758) -/(.*/)?peelbackscript/ad_ -# /peelaway_images/* (easylist.txt: 4757) -/(.*/)?peelaway_images/.* -# /peelads/* (easylist.txt: 4756) -/(.*/)?peelads/.* -# /peelad/* (easylist.txt: 4755) -/(.*/)?peelad/.* -# /peelad. (easylist.txt: 4754) -/(.*/)?peelad\. -peelad.*. -# /peel_ads/* (easylist.txt: 4753) -/(.*/)?peel_ads/.* -# /peel1.js (easylist.txt: 4752) -/(.*/)?peel1\.js -peel1.js*. -# /peel/?webscr= (easylist.txt: 4751) -/(.*/)?peel/\?webscr= -# /peel.php? (easylist.txt: 4750) -/(.*/)?peel\.php\? -# /peel.js (easylist.txt: 4749) -/(.*/)?peel\.js -peel.js*. -# /pcad.js? (easylist.txt: 4748) -/(.*/)?pcad\.js\? -# /pc/ads. (easylist.txt: 4747) -/(.*/)?pc/ads\. -# /pb-ads/* (easylist.txt: 4746) -/(.*/)?pb-ads/.* -# /payperpost. (easylist.txt: 4745) -/(.*/)?payperpost\. -payperpost.*. -# /pauseadextension. (easylist.txt: 4744) -/(.*/)?pauseadextension\. -pauseadextension.*. -# /parts/ad/* (easylist.txt: 4743) -/(.*/)?parts/ad/.* -# /partnersadbutler/* (easylist.txt: 4742) -/(.*/)?partnersadbutler/.* -# /partners/get-banner. (easylist.txt: 4741) -/(.*/)?partners/get-banner\. -# /partners/ads/* (easylist.txt: 4740) -/(.*/)?partners/ads/.* -# /partners/ad- (easylist.txt: 4739) -/(.*/)?partners/ad- -# /partnerbanner/* (easylist.txt: 4738) -/(.*/)?partnerbanner/.* -# /partnerbanner. (easylist.txt: 4737) -/(.*/)?partnerbanner\. -partnerbanner.*. -# /partneradwidget. (easylist.txt: 4736) -/(.*/)?partneradwidget\. -partneradwidget.*. -# /partnerads_ (easylist.txt: 4735) -/(.*/)?partnerads_ -# /partnerads/* (easylist.txt: 4734) -/(.*/)?partnerads/.* -# /partnerad. (easylist.txt: 4733) -/(.*/)?partnerad\. -partnerad.*. -# /partner_ads_ (easylist.txt: 4732) -/(.*/)?partner_ads_ -# /partner_ads/* (easylist.txt: 4731) -/(.*/)?partner_ads/.* -# /park_html_functions_general.js (easylist.txt: 4730) -/(.*/)?park_html_functions_general\.js -# /park_html_functions.js (easylist.txt: 4729) -/(.*/)?park_html_functions\.js -# /park_html_functions.*.js (easylist.txt: 4728) -/(.*/)?park_html_functions\..*\.js -# /panelad. (easylist.txt: 4727) -/(.*/)?panelad\. -panelad.*. -# /paidlisting/* (easylist.txt: 4726) -/(.*/)?paidlisting/.* -# /paidads/* (easylist.txt: 4725) -/(.*/)?paidads/.* -# /pages/ads (easylist.txt: 4724) -/(.*/)?pages/ads -# /pagepeelads. (easylist.txt: 4723) -/(.*/)?pagepeelads\. -pagepeelads.*. -# /pagepeel_ (easylist.txt: 4722) -/(.*/)?pagepeel_ -# /pagepeel/* (easylist.txt: 4721) -/(.*/)?pagepeel/.* -# /pagepeel. (easylist.txt: 4720) -/(.*/)?pagepeel\. -pagepeel.*. -# /pagepeel- (easylist.txt: 4719) -/(.*/)?pagepeel- -pagepeel-*. -# /pageear_ (easylist.txt: 4718) -/(.*/)?pageear_ -# /pageear/* (easylist.txt: 4717) -/(.*/)?pageear/.* -# /pageear. (easylist.txt: 4716) -/(.*/)?pageear\. -pageear.*. -# /pagecurl/* (easylist.txt: 4715) -/(.*/)?pagecurl/.* -# /pagecall_dfp_async. (easylist.txt: 4714) -/(.*/)?pagecall_dfp_async\. -# /pageads/* (easylist.txt: 4713) -/(.*/)?pageads/.* -# /pageadimg/* (easylist.txt: 4712) -/(.*/)?pageadimg/.* -# /pagead? (easylist.txt: 4711) -/(.*/)?pagead\? -# /pagead46. (easylist.txt: 4710) -/(.*/)?pagead46\. -pagead46.*. -# /pagead2. (easylist.txt: 4709) -/(.*/)?pagead2\. -pagead2.*. -# /pagead/gen_ (easylist.txt: 4708) -/(.*/)?pagead/gen_ -# /pagead/ads? (easylist.txt: 4707) -/(.*/)?pagead/ads\? -# /page/ad/* (easylist.txt: 4706) -/(.*/)?page/ad/.* -# /page-peel (easylist.txt: 4705) -/(.*/)?page-peel -page-peel*. -# /page-ads. (easylist.txt: 4704) -/(.*/)?page-ads\. -page-ads.*. -# /p8network.js (easylist.txt: 4703) -/(.*/)?p8network\.js -p8network.js*. -# /p2ads/* (easylist.txt: 4702) -/(.*/)?p2ads/.* -# /p2/ads/* (easylist.txt: 4701) -/(.*/)?p2/ads/.* -# /p2-header-ad/* (easylist.txt: 4700) -/(.*/)?p2-header-ad/.* -# /p2-header-ad- (easylist.txt: 4699) -/(.*/)?p2-header-ad- -p2-header-ad-*. -# /ox_ultimate/www/* (easylist.txt: 4698) -/(.*/)?ox_ultimate/www/.* -# /ox/www/* (easylist.txt: 4697) -/(.*/)?ox/www/.* -# /ovt_show.asp? (easylist.txt: 4696) -/(.*/)?ovt_show\.asp\? -# /overture_ (easylist.txt: 4695) -/(.*/)?overture_ -# /overture/*$script,subdocument (easylist.txt: 4694) -/(.*/)?overture/.* -# /overture.$script,stylesheet (easylist.txt: 4693) -/(.*/)?overture\. -overture.*. -# /overlayads. (easylist.txt: 4692) -/(.*/)?overlayads\. -overlayads.*. -# /overlayad. (easylist.txt: 4691) -/(.*/)?overlayad\. -overlayad.*. -# /overlay_ad_ (easylist.txt: 4690) -/(.*/)?overlay_ad_ -# /overlay-ad. (easylist.txt: 4689) -/(.*/)?overlay-ad\. -overlay-ad.*. -# /outbrain-min. (easylist.txt: 4688) -/(.*/)?outbrain-min\. -outbrain-min.*. -# /other/ads/* (easylist.txt: 4687) -/(.*/)?other/ads/.* -# /origin-ad- (easylist.txt: 4686) -/(.*/)?origin-ad- -origin-ad-*. -# /orbitads. (easylist.txt: 4685) -/(.*/)?orbitads\. -orbitads.*. -# /opxads. (easylist.txt: 4684) -/(.*/)?opxads\. -opxads.*. -# /optonlineadcode. (easylist.txt: 4683) -/(.*/)?optonlineadcode\. -optonlineadcode.*. -# /openxtag. (easylist.txt: 4682) -/(.*/)?openxtag\. -openxtag.*. -# /openx_ (easylist.txt: 4681) -/(.*/)?openx_ -# /openx/* (easylist.txt: 4680) -/(.*/)?openx/.* -# /openx. (easylist.txt: 4679) -/(.*/)?openx\. -openx.*. -# /openx- (easylist.txt: 4678) -/(.*/)?openx- -openx-*. -# /openadserver/* (easylist.txt: 4677) -/(.*/)?openadserver/.* -# /openads_ (easylist.txt: 4676) -/(.*/)?openads_ -# /openads2/* (easylist.txt: 4675) -/(.*/)?openads2/.* -# /openads/* (easylist.txt: 4674) -/(.*/)?openads/.* -# /openads. (easylist.txt: 4673) -/(.*/)?openads\. -openads.*. -# /openads- (easylist.txt: 4672) -/(.*/)?openads- -openads-*. -# /openad. (easylist.txt: 4671) -/(.*/)?openad\. -openad.*. -# /ontopadvertising. (easylist.txt: 4670) -/(.*/)?ontopadvertising\. -ontopadvertising.*. -# /onplayerad. (easylist.txt: 4669) -/(.*/)?onplayerad\. -onplayerad.*. -# /onlineads/* (easylist.txt: 4668) -/(.*/)?onlineads/.* -# /online_ads/* (easylist.txt: 4667) -/(.*/)?online_ads/.* -# /online/ads/* (easylist.txt: 4666) -/(.*/)?online/ads/.* -# /onesheet-ad- (easylist.txt: 4665) -/(.*/)?onesheet-ad- -onesheet-ad-*. -# /onecam4ads. (easylist.txt: 4664) -/(.*/)?onecam4ads\. -onecam4ads.*. -# /onead. (easylist.txt: 4663) -/(.*/)?onead\. -onead.*. -# /ome.ads. (easylist.txt: 4662) -/(.*/)?ome\.ads\. -ome.ads.*. -# /omb-ad- (easylist.txt: 4661) -/(.*/)?omb-ad- -omb-ad-*. -# /old/ads- (easylist.txt: 4660) -/(.*/)?old/ads- -# /oiopub-direct/*$~stylesheet (easylist.txt: 4659) -/(.*/)?oiopub-direct/.* -# /oiopub-ads/* (easylist.txt: 4658) -/(.*/)?oiopub-ads/.* -# /oasx/* (easylist.txt: 4657) -/(.*/)?oasx/.* -# /oasisi. (easylist.txt: 4656) -/(.*/)?oasisi\. -oasisi.*. -# /oasisi- (easylist.txt: 4655) -/(.*/)?oasisi- -oasisi-*. -# /oasdefault/* (easylist.txt: 4654) -/(.*/)?oasdefault/.* -# /oascontroller. (easylist.txt: 4653) -/(.*/)?oascontroller\. -oascontroller.*. -# /oasconfig/* (easylist.txt: 4652) -/(.*/)?oasconfig/.* -# /oascentral/* (easylist.txt: 4651) -/(.*/)?oascentral/.* -# /oascentral.$~object-subrequest (easylist.txt: 4650) -/(.*/)?oascentral\. -oascentral.*. -# /oascache/* (easylist.txt: 4649) -/(.*/)?oascache/.* -# /oasbanner_ (easylist.txt: 4648) -/(.*/)?oasbanner_ -# /oasadfunctionlive. (easylist.txt: 4647) -/(.*/)?oasadfunctionlive\. -oasadfunctionlive.*. -# /oasadfunction. (easylist.txt: 4646) -/(.*/)?oasadfunction\. -oasadfunction.*. -# /oasadframe. (easylist.txt: 4645) -/(.*/)?oasadframe\. -oasadframe.*. -# /oasadconnector. (easylist.txt: 4644) -/(.*/)?oasadconnector\. -oasadconnector.*. -# /oas_mjx3. (easylist.txt: 4643) -/(.*/)?oas_mjx3\. -# /oas_mjx2. (easylist.txt: 4642) -/(.*/)?oas_mjx2\. -# /oas_mjx1. (easylist.txt: 4641) -/(.*/)?oas_mjx1\. -# /oas_mjx. (easylist.txt: 4640) -/(.*/)?oas_mjx\. -# /oas_home_ (easylist.txt: 4639) -/(.*/)?oas_home_ -# /oas_handler. (easylist.txt: 4638) -/(.*/)?oas_handler\. -# /oas_ads. (easylist.txt: 4637) -/(.*/)?oas_ads\. -# /oas_ad_ (easylist.txt: 4636) -/(.*/)?oas_ad_ -# /oas_ad/* (easylist.txt: 4635) -/(.*/)?oas_ad/.* -# /oas_ad. (easylist.txt: 4634) -/(.*/)?oas_ad\. -# /OAS/show? (easylist.txt: 4633) -/(.*/)?OAS/show\? -# /oas/oas- (easylist.txt: 4632) -/(.*/)?oas/oas- -# /oas/iframe. (easylist.txt: 4631) -/(.*/)?oas/iframe\. -# /oas/banners/* (easylist.txt: 4630) -/(.*/)?oas/banners/.* -# /oas/ad/* (easylist.txt: 4629) -/(.*/)?oas/ad/.* -# /oas.js (easylist.txt: 4628) -/(.*/)?oas\.js -oas.js*. -# /oas.aspx (easylist.txt: 4627) -/(.*/)?oas\.aspx -oas.aspx*. -# /oas-config. (easylist.txt: 4626) -/(.*/)?oas-config\. -oas-config.*. -# /o2contentad. (easylist.txt: 4625) -/(.*/)?o2contentad\. -o2contentad.*. -# /o2ad. (easylist.txt: 4624) -/(.*/)?o2ad\. -o2ad.*. -# /nymag_ads_ (easylist.txt: 4623) -/(.*/)?nymag_ads_ -# /nymag_ads. (easylist.txt: 4622) -/(.*/)?nymag_ads\. -# /nsfw/sponsors/* (easylist.txt: 4621) -/(.*/)?nsfw/sponsors/.* -# /noticead. (easylist.txt: 4620) -/(.*/)?noticead\. -noticead.*. -# /noodleAdFramed. (easylist.txt: 4619) -/(.*/)?noodleAdFramed\. -noodleAdFramed.*. -# /nonrotatingads/* (easylist.txt: 4618) -/(.*/)?nonrotatingads/.* -# /no_ads. (easylist.txt: 4617) -/(.*/)?no_ads\. -# /nflads. (easylist.txt: 4616) -/(.*/)?nflads\. -nflads.*. -# /nextad/* (easylist.txt: 4615) -/(.*/)?nextad/.* -# /newtopmsgad. (easylist.txt: 4614) -/(.*/)?newtopmsgad\. -newtopmsgad.*. -# /newsmaxadcontrol. (easylist.txt: 4613) -/(.*/)?newsmaxadcontrol\. -newsmaxadcontrol.*. -# /newsletters/ads/* (easylist.txt: 4612) -/(.*/)?newsletters/ads/.* -# /newsletterads/* (easylist.txt: 4611) -/(.*/)?newsletterads/.* -# /newsite/ads/* (easylist.txt: 4610) -/(.*/)?newsite/ads/.* -# /news_ad. (easylist.txt: 4609) -/(.*/)?news_ad\. -# /news/ads/* (easylist.txt: 4608) -/(.*/)?news/ads/.* -# /newrightcolad. (easylist.txt: 4607) -/(.*/)?newrightcolad\. -newrightcolad.*. -# /newimplugs. (easylist.txt: 4606) -/(.*/)?newimplugs\. -newimplugs.*. -# /newimages/ads/* (easylist.txt: 4605) -/(.*/)?newimages/ads/.* -# /newdesign/ad/* (easylist.txt: 4604) -/(.*/)?newdesign/ad/.* -# /newaff/float (easylist.txt: 4603) -/(.*/)?newaff/float -# /newadvert/* (easylist.txt: 4602) -/(.*/)?newadvert/.* -# /newadv/* (easylist.txt: 4601) -/(.*/)?newadv/.* -# /newads/* (easylist.txt: 4600) -/(.*/)?newads/.* -# /newads. (easylist.txt: 4599) -/(.*/)?newads\. -newads.*. -# /newad? (easylist.txt: 4598) -/(.*/)?newad\? -# /newad2? (easylist.txt: 4597) -/(.*/)?newad2\? -# /newad. (easylist.txt: 4596) -/(.*/)?newad\. -newad.*. -# /new_oas. (easylist.txt: 4595) -/(.*/)?new_oas\. -# /new_ads/* (easylist.txt: 4594) -/(.*/)?new_ads/.* -# /new/ads/* (easylist.txt: 4593) -/(.*/)?new/ads/.* -# /new/ad/* (easylist.txt: 4592) -/(.*/)?new/ad/.* -# /new-ads/* (easylist.txt: 4591) -/(.*/)?new-ads/.* -# /neudesicad. (easylist.txt: 4590) -/(.*/)?neudesicad\. -neudesicad.*. -# /network_ad. (easylist.txt: 4589) -/(.*/)?network_ad\. -# /netspiderads3. (easylist.txt: 4588) -/(.*/)?netspiderads3\. -netspiderads3.*. -# /netspiderads2. (easylist.txt: 4587) -/(.*/)?netspiderads2\. -netspiderads2.*. -# /netshelter/* (easylist.txt: 4586) -/(.*/)?netshelter/.* -# /netseerads. (easylist.txt: 4585) -/(.*/)?netseerads\. -netseerads.*. -# /netreachtextads/* (easylist.txt: 4584) -/(.*/)?netreachtextads/.* -# /netads. (easylist.txt: 4583) -/(.*/)?netads\. -netads.*. -# /neoads. (easylist.txt: 4582) -/(.*/)?neoads\. -neoads.*. -# /neo/ads/* (easylist.txt: 4581) -/(.*/)?neo/ads/.* -# /nd_affiliate. (easylist.txt: 4580) -/(.*/)?nd_affiliate\. -# /nbcuadops- (easylist.txt: 4579) -/(.*/)?nbcuadops- -nbcuadops-*. -# /navads/* (easylist.txt: 4578) -/(.*/)?navads/.* -# /navad/* (easylist.txt: 4577) -/(.*/)?navad/.* -# /nativeads/* (easylist.txt: 4576) -/(.*/)?nativeads/.* -# /nativeads- (easylist.txt: 4575) -/(.*/)?nativeads- -nativeads-*. -# /namediaad. (easylist.txt: 4574) -/(.*/)?namediaad\. -namediaad.*. -# /n_ads/* (easylist.txt: 4573) -/(.*/)?n_ads/.* -# /n4403ad. (easylist.txt: 4572) -/(.*/)?n4403ad\. -n4403ad.*. -# /n/adv_ (easylist.txt: 4571) -/(.*/)?n/adv_ -# /mysimpleads/* (easylist.txt: 4570) -/(.*/)?mysimpleads/.* -# /mylayer-ad/* (easylist.txt: 4569) -/(.*/)?mylayer-ad/.* -# /myfreepaysitebanner. (easylist.txt: 4568) -/(.*/)?myfreepaysitebanner\. -myfreepaysitebanner.*. -# /myads/* (easylist.txt: 4566) -/(.*/)?myads/.* -# /my-ad-integration. (easylist.txt: 4565) -/(.*/)?my-ad-integration\. -my-ad-integration.*. -# /my-ad-injector/* (easylist.txt: 4564) -/(.*/)?my-ad-injector/.* -# /multiad/* (easylist.txt: 4563) -/(.*/)?multiad/.* -# /mtvi_ads_ (easylist.txt: 4562) -/(.*/)?mtvi_ads_ -# /MTA-Ad- (easylist.txt: 4561) -/(.*/)?MTA-Ad- -MTA-Ad-*. -# /mstextad? (easylist.txt: 4560) -/(.*/)?mstextad\? -# /msnpopup4. (easylist.txt: 4559) -/(.*/)?msnpopup4\. -msnpopup4.*. -# /msnpopup. (easylist.txt: 4558) -/(.*/)?msnpopup\. -msnpopup.*. -# /msnpopsingle2. (easylist.txt: 4557) -/(.*/)?msnpopsingle2\. -msnpopsingle2.*. -# /msnpop. (easylist.txt: 4556) -/(.*/)?msnpop\. -msnpop.*. -# /msnads1. (easylist.txt: 4555) -/(.*/)?msnads1\. -msnads1.*. -# /msnads/* (easylist.txt: 4554) -/(.*/)?msnads/.* -# /msnadimg. (easylist.txt: 4553) -/(.*/)?msnadimg\. -msnadimg.*. -# /msn-exo- (easylist.txt: 4552) -/(.*/)?msn-exo- -msn-exo-*. -# /msn-1.js (easylist.txt: 4551) -/(.*/)?msn-1\.js -msn-1.js*. -# /msgads. (easylist.txt: 4550) -/(.*/)?msgads\. -msgads.*. -# /mrskinleftside. (easylist.txt: 4549) -/(.*/)?mrskinleftside\. -mrskinleftside.*. -# /mpumessage. (easylist.txt: 4548) -/(.*/)?mpumessage\. -mpumessage.*. -# /mpuguardian. (easylist.txt: 4547) -/(.*/)?mpuguardian\. -mpuguardian.*. -# /mpuad. (easylist.txt: 4546) -/(.*/)?mpuad\. -mpuad.*. -# /mpu-dm.htm (easylist.txt: 4545) -/(.*/)?mpu-dm\.htm -mpu-dm.htm*. -# /mpads/* (easylist.txt: 4544) -/(.*/)?mpads/.* -# /moneyball/ads/* (easylist.txt: 4543) -/(.*/)?moneyball/ads/.* -# /momsads. (easylist.txt: 4542) -/(.*/)?momsads\. -momsads.*. -# /modules_ads. (easylist.txt: 4541) -/(.*/)?modules_ads\. -# /modules/doubleclick/* (easylist.txt: 4540) -/(.*/)?modules/doubleclick/.* -# /modules/adv/* (easylist.txt: 4539) -/(.*/)?modules/adv/.* -# /modules/ads/* (easylist.txt: 4538) -/(.*/)?modules/ads/.* -# /modules/ad_ (easylist.txt: 4537) -/(.*/)?modules/ad_ -# /modules/ad/* (easylist.txt: 4536) -/(.*/)?modules/ad/.* -# /module/ads/* (easylist.txt: 4535) -/(.*/)?module/ads/.* -# /module-ads/* (easylist.txt: 4534) -/(.*/)?module-ads/.* -# /modalad. (easylist.txt: 4533) -/(.*/)?modalad\. -modalad.*. -# /mod_pagepeel_banner/* (easylist.txt: 4532) -/(.*/)?mod_pagepeel_banner/.* -# /mod_ad/* (easylist.txt: 4531) -/(.*/)?mod_ad/.* -# /mobilephonesad/* (easylist.txt: 4530) -/(.*/)?mobilephonesad/.* -# /mobileads/* (easylist.txt: 4529) -/(.*/)?mobileads/.* -# /mobileads. (easylist.txt: 4528) -/(.*/)?mobileads\. -mobileads.*. -# /mobile_ad/* (easylist.txt: 4527) -/(.*/)?mobile_ad/.* -# /mobile_ad. (easylist.txt: 4526) -/(.*/)?mobile_ad\. -# /mobile-ad. (easylist.txt: 4525) -/(.*/)?mobile-ad\. -mobile-ad.*. -# /mnads1. (easylist.txt: 4524) -/(.*/)?mnads1\. -mnads1.*. -# /mmt_ad. (easylist.txt: 4523) -/(.*/)?mmt_ad\. -# /mmsAds. (easylist.txt: 4522) -/(.*/)?mmsAds\. -mmsAds.*. -# /ml9pagepeel. (easylist.txt: 4521) -/(.*/)?ml9pagepeel\. -ml9pagepeel.*. -# /mktad. (easylist.txt: 4520) -/(.*/)?mktad\. -mktad.*. -# /mkadsrv. (easylist.txt: 4519) -/(.*/)?mkadsrv\. -mkadsrv.*. -# /mjx-oas. (easylist.txt: 4518) -/(.*/)?mjx-oas\. -mjx-oas.*. -# /MixBerryAdsProduction/* (easylist.txt: 4517) -/(.*/)?MixBerryAdsProduction/.* -# /miva_ads. (easylist.txt: 4516) -/(.*/)?miva_ads\. -# /misc/ads/* (easylist.txt: 4515) -/(.*/)?misc/ads/.* -# /misc/ads. (easylist.txt: 4514) -/(.*/)?misc/ads\. -# /misc/ad- (easylist.txt: 4513) -/(.*/)?misc/ad- -# /mint/ads/* (easylist.txt: 4512) -/(.*/)?mint/ads/.* -# /minpagead/* (easylist.txt: 4511) -/(.*/)?minpagead/.* -# /minify/ads- (easylist.txt: 4510) -/(.*/)?minify/ads- -# /miniadvert. (easylist.txt: 4509) -/(.*/)?miniadvert\. -miniadvert.*. -# /miniads? (easylist.txt: 4508) -/(.*/)?miniads\? -# /miniadbar/* (easylist.txt: 4507) -/(.*/)?miniadbar/.* -# /mini_ads. (easylist.txt: 4506) -/(.*/)?mini_ads\. -# /mini-ads/* (easylist.txt: 4505) -/(.*/)?mini-ads/.* -# /min/ads/* (easylist.txt: 4504) -/(.*/)?min/ads/.* -# /middleads. (easylist.txt: 4503) -/(.*/)?middleads\. -middleads.*. -# /middle_adv_ (easylist.txt: 4502) -/(.*/)?middle_adv_ -# /microsofttag/* (easylist.txt: 4501) -/(.*/)?microsofttag/.* -# /microads/* (easylist.txt: 4500) -/(.*/)?microads/.* -# /microad. (easylist.txt: 4499) -/(.*/)?microad\. -microad.*. -# /mgid.html (easylist.txt: 4498) -/(.*/)?mgid\.html -mgid.html*. -# /mgid-header. (easylist.txt: 4497) -/(.*/)?mgid-header\. -mgid-header.*. -# /mgid-ad- (easylist.txt: 4496) -/(.*/)?mgid-ad- -mgid-ad-*. -# /metsbanner. (easylist.txt: 4495) -/(.*/)?metsbanner\. -metsbanner.*. -# /metaadserver/* (easylist.txt: 4494) -/(.*/)?metaadserver/.* -# /metaad. (easylist.txt: 4493) -/(.*/)?metaad\. -metaad.*. -# /meme_ad. (easylist.txt: 4492) -/(.*/)?meme_ad\. -# /megaad. (easylist.txt: 4491) -/(.*/)?megaad\. -megaad.*. -# /media_ads/* (easylist.txt: 4490) -/(.*/)?media_ads/.* -# /media/adv/* (easylist.txt: 4489) -/(.*/)?media/adv/.* -# /media/ads/* (easylist.txt: 4488) -/(.*/)?media/ads/.* -# /media/ad/* (easylist.txt: 4487) -/(.*/)?media/ad/.* -# /mDialogAdModule. (easylist.txt: 4486) -/(.*/)?mDialogAdModule\. -mDialogAdModule.*. -# /mda-ads/* (easylist.txt: 4485) -/(.*/)?mda-ads/.* -# /mcad.php (easylist.txt: 4484) -/(.*/)?mcad\.php -mcad.php*. -# /mbn_ad. (easylist.txt: 4483) -/(.*/)?mbn_ad\. -# /mbads? (easylist.txt: 4482) -/(.*/)?mbads\? -# /maxi_ad. (easylist.txt: 4481) -/(.*/)?maxi_ad\. -# /maxadselect. (easylist.txt: 4480) -/(.*/)?maxadselect\. -maxadselect.*. -# /match_ads. (easylist.txt: 4479) -/(.*/)?match_ads\. -# /masterad. (easylist.txt: 4478) -/(.*/)?masterad\. -masterad.*. -# /masonad.gif (easylist.txt: 4477) -/(.*/)?masonad\.gif -masonad.gif*. -# /markpop.js (easylist.txt: 4476) -/(.*/)?markpop\.js -markpop.js*. -# /marketing/banners_ (easylist.txt: 4475) -/(.*/)?marketing/banners_ -# /marketing/banners/* (easylist.txt: 4474) -/(.*/)?marketing/banners/.* -# /marketing-banners/* (easylist.txt: 4473) -/(.*/)?marketing-banners/.* -# /marginaleadservlet? (easylist.txt: 4472) -/(.*/)?marginaleadservlet\? -# /mapquest/Ads/* (easylist.txt: 4471) -/(.*/)?mapquest/Ads/.* -# /mainpagepopupadv1. (easylist.txt: 4470) -/(.*/)?mainpagepopupadv1\. -mainpagepopupadv1.*. -# /mainad. (easylist.txt: 4469) -/(.*/)?mainad\. -mainad.*. -# /main_ad_ (easylist.txt: 4468) -/(.*/)?main_ad_ -# /main_ad/* (easylist.txt: 4467) -/(.*/)?main_ad/.* -# /main_ad. (easylist.txt: 4466) -/(.*/)?main_ad\. -# /main/ads/* (easylist.txt: 4465) -/(.*/)?main/ads/.* -# /main/ad_ (easylist.txt: 4464) -/(.*/)?main/ad_ -# /main/ad/* (easylist.txt: 4463) -/(.*/)?main/ad/.* -# /magic-ads/* (easylist.txt: 4462) -/(.*/)?magic-ads/.* -# /magic-ad/* (easylist.txt: 4461) -/(.*/)?magic-ad/.* -# /magazine/ads. (easylist.txt: 4460) -/(.*/)?magazine/ads\. -# /mad_ad. (easylist.txt: 4459) -/(.*/)?mad_ad\. -# /mad.aspx? (easylist.txt: 4458) -/(.*/)?mad\.aspx\? -# /mac-ad? (easylist.txt: 4457) -/(.*/)?mac-ad\? -# /m0ar_ads. (easylist.txt: 4456) -/(.*/)?m0ar_ads\. -# /lrec_ad. (easylist.txt: 4455) -/(.*/)?lrec_ad\. -# /lotto_ad_ (easylist.txt: 4454) -/(.*/)?lotto_ad_ -# /logoutad. (easylist.txt: 4453) -/(.*/)?logoutad\. -logoutad.*. -# /logoads. (easylist.txt: 4452) -/(.*/)?logoads\. -logoads.*. -# /logo-ads. (easylist.txt: 4451) -/(.*/)?logo-ads\. -logo-ads.*. -# /logad? (easylist.txt: 4450) -/(.*/)?logad\? -# /log_ad_ (easylist.txt: 4449) -/(.*/)?log_ad_ -# /log_ad? (easylist.txt: 4448) -/(.*/)?log_ad\? -# /locker.php?pub=*&gateid=$script (easylist.txt: 4447) -/(.*/)?locker\.php\?pub=.*&gateid= -# /localcom-ad- (easylist.txt: 4446) -/(.*/)?localcom-ad- -localcom-ad-*. -# /localads. (easylist.txt: 4445) -/(.*/)?localads\. -localads.*. -# /LocalAdNet/* (easylist.txt: 4444) -/(.*/)?LocalAdNet/.* -# /localAdData/* (easylist.txt: 4443) -/(.*/)?localAdData/.* -# /LocalAd_ (easylist.txt: 4442) -/(.*/)?LocalAd_ -# /localAd/* (easylist.txt: 4441) -/(.*/)?localAd/.* -# /local_ads_ (easylist.txt: 4440) -/(.*/)?local_ads_ -# /loadTargetUrl? (easylist.txt: 4439) -/(.*/)?loadTargetUrl\? -# /loading_ads. (easylist.txt: 4438) -/(.*/)?loading_ads\. -# /loadadwiz. (easylist.txt: 4437) -/(.*/)?loadadwiz\. -loadadwiz.*. -# /loadadsparam. (easylist.txt: 4436) -/(.*/)?loadadsparam\. -loadadsparam.*. -# /loadadsmainparam. (easylist.txt: 4435) -/(.*/)?loadadsmainparam\. -loadadsmainparam.*. -# /loadadsmain. (easylist.txt: 4434) -/(.*/)?loadadsmain\. -loadadsmain.*. -# /loadads/* (easylist.txt: 4433) -/(.*/)?loadads/.* -# /loadads. (easylist.txt: 4432) -/(.*/)?loadads\. -loadads.*. -# /loadad.aspx? (easylist.txt: 4431) -/(.*/)?loadad\.aspx\? -# /load_ad? (easylist.txt: 4430) -/(.*/)?load_ad\? -# /load-ads| (easylist.txt: 4429) -/(.*/)?load-ads$ -# /livejasmine05. (easylist.txt: 4428) -/(.*/)?livejasmine05\. -livejasmine05.*. -# /livejasmine03. (easylist.txt: 4427) -/(.*/)?livejasmine03\. -livejasmine03.*. -# /livejasmin_ (easylist.txt: 4426) -/(.*/)?livejasmin_ -# /livejasmin2. (easylist.txt: 4425) -/(.*/)?livejasmin2\. -livejasmin2.*. -# /livejasmin/*&id= (easylist.txt: 4424) -/(.*/)?livejasmin/.*&id= -# /livejasmin. (easylist.txt: 4423) -/(.*/)?livejasmin\. -livejasmin.*. -# /liveads. (easylist.txt: 4422) -/(.*/)?liveads\. -liveads.*. -# /livead- (easylist.txt: 4421) -/(.*/)?livead- -livead-*. -# /live_ad. (easylist.txt: 4420) -/(.*/)?live_ad\. -# /links_sponsored_ (easylist.txt: 4419) -/(.*/)?links_sponsored_ -# /linkedads/* (easylist.txt: 4418) -/(.*/)?linkedads/.* -# /linkadv_ (easylist.txt: 4417) -/(.*/)?linkadv_ -# /linkadv. (easylist.txt: 4416) -/(.*/)?linkadv\. -linkadv.*. -# /linkads. (easylist.txt: 4415) -/(.*/)?linkads\. -linkads.*. -# /linkad2. (easylist.txt: 4414) -/(.*/)?linkad2\. -linkad2.*. -# /lijitads. (easylist.txt: 4413) -/(.*/)?lijitads\. -lijitads.*. -# /lijit-ad- (easylist.txt: 4412) -/(.*/)?lijit-ad- -lijit-ad-*. -# /lightboxbannerad^ (easylist.txt: 4411) -/(.*/)?lightboxbannerad[^\w%.-] -# /lightboxad^ (easylist.txt: 4410) -/(.*/)?lightboxad[^\w%.-] -# /lightad. (easylist.txt: 4409) -/(.*/)?lightad\. -lightad.*. -# /lifeshowad/* (easylist.txt: 4408) -/(.*/)?lifeshowad/.* -# /library/ads/* (easylist.txt: 4407) -/(.*/)?library/ads/.* -# /lib/ad.js (easylist.txt: 4406) -/(.*/)?lib/ad\.js -# /lg.php?adid= (easylist.txt: 4405) -/(.*/)?lg\.php\?adid= -# /leftsidebarads. (easylist.txt: 4404) -/(.*/)?leftsidebarads\. -leftsidebarads.*. -# /leftads. (easylist.txt: 4403) -/(.*/)?leftads\. -leftads.*. -# /leftad_ (easylist.txt: 4402) -/(.*/)?leftad_ -# /leftad. (easylist.txt: 4401) -/(.*/)?leftad\. -leftad.*. -# /left_ads. (easylist.txt: 4400) -/(.*/)?left_ads\. -# /left_ad_ (easylist.txt: 4399) -/(.*/)?left_ad_ -# /left-ads. (easylist.txt: 4398) -/(.*/)?left-ads\. -left-ads.*. -# /ledad. (easylist.txt: 4397) -/(.*/)?ledad\. -ledad.*. -# /leaderboardads. (easylist.txt: 4396) -/(.*/)?leaderboardads\. -leaderboardads.*. -# /leaderboardadblock. (easylist.txt: 4395) -/(.*/)?leaderboardadblock\. -leaderboardadblock.*. -# /leaderboardad. (easylist.txt: 4394) -/(.*/)?leaderboardad\. -leaderboardad.*. -# /leaderboard_adv/* (easylist.txt: 4393) -/(.*/)?leaderboard_adv/.* -# /leaderboard_ad/* (easylist.txt: 4392) -/(.*/)?leaderboard_ad/.* -# /leaderboard-advert. (easylist.txt: 4391) -/(.*/)?leaderboard-advert\. -leaderboard-advert.*. -# /leaderad. (easylist.txt: 4390) -/(.*/)?leaderad\. -leaderad.*. -# /leader_ad. (easylist.txt: 4389) -/(.*/)?leader_ad\. -# /leadads/* (easylist.txt: 4388) -/(.*/)?leadads/.* -# /lbl_ad. (easylist.txt: 4387) -/(.*/)?lbl_ad\. -# /lazyad. (easylist.txt: 4386) -/(.*/)?lazyad\. -lazyad.*. -# /layout/ads/* (easylist.txt: 4385) -/(.*/)?layout/ads/.* -# /layout/ad. (easylist.txt: 4384) -/(.*/)?layout/ad\. -# /layout.inc.php?img (easylist.txt: 4383) -/(.*/)?layout\.inc\.php\?img -# /layerads_ (easylist.txt: 4382) -/(.*/)?layerads_ -# /layerads. (easylist.txt: 4381) -/(.*/)?layerads\. -layerads.*. -# /layerads- (easylist.txt: 4380) -/(.*/)?layerads- -layerads-*. -# /LayerAd^ (easylist.txt: 4379) -/(.*/)?LayerAd[^\w%.-] -# /layerad. (easylist.txt: 4378) -/(.*/)?layerad\. -layerad.*. -# /layerad- (easylist.txt: 4377) -/(.*/)?layerad- -layerad-*. -# /layer_ad? (easylist.txt: 4376) -/(.*/)?layer_ad\? -# /layer160x600. (easylist.txt: 4375) -/(.*/)?layer160x600\. -layer160x600.*. -# /layer/ads. (easylist.txt: 4374) -/(.*/)?layer/ads\. -# /layer/ad. (easylist.txt: 4373) -/(.*/)?layer/ad\. -# /layer.php?bid= (easylist.txt: 4372) -/(.*/)?layer\.php\?bid= -# /layer-advert- (easylist.txt: 4371) -/(.*/)?layer-advert- -layer-advert-*. -# /layer-ads. (easylist.txt: 4370) -/(.*/)?layer-ads\. -layer-ads.*. -# /layer-ad. (easylist.txt: 4369) -/(.*/)?layer-ad\. -layer-ad.*. -# /layad. (easylist.txt: 4368) -/(.*/)?layad\. -layad.*. -# /large_ads/* (easylist.txt: 4367) -/(.*/)?large_ads/.* -# /landingadvertisements/* (easylist.txt: 4366) -/(.*/)?landingadvertisements/.* -# /landerbanners/* (easylist.txt: 4365) -/(.*/)?landerbanners/.* -# /kskads. (easylist.txt: 4364) -/(.*/)?kskads\. -kskads.*. -# /kredit-ad. (easylist.txt: 4363) -/(.*/)?kredit-ad\. -kredit-ad.*. -# /kogeePopupAd. (easylist.txt: 4362) -/(.*/)?kogeePopupAd\. -kogeePopupAd.*. -# /keyword_ad. (easylist.txt: 4361) -/(.*/)?keyword_ad\. -# /keyade.js (easylist.txt: 4360) -/(.*/)?keyade\.js -keyade.js*. -# /kantarmedia. (easylist.txt: 4359) -/(.*/)?kantarmedia\. -kantarmedia.*. -# /kampyle.js (easylist.txt: 4358) -/(.*/)?kampyle\.js -kampyle.js*. -# /KalahariAds. (easylist.txt: 4357) -/(.*/)?KalahariAds\. -KalahariAds.*. -# /kaksvpopup. (easylist.txt: 4356) -/(.*/)?kaksvpopup\. -kaksvpopup.*. -# /k_ads/* (easylist.txt: 4355) -/(.*/)?k_ads/.* -# /jumpstartunpaidad. (easylist.txt: 4354) -/(.*/)?jumpstartunpaidad\. -jumpstartunpaidad.*. -# /juicyads_ (easylist.txt: 4353) -/(.*/)?juicyads_ -# /jtcashbanners/* (easylist.txt: 4352) -/(.*/)?jtcashbanners/.* -# /jsVideoPopAd. (easylist.txt: 4351) -/(.*/)?jsVideoPopAd\. -jsVideoPopAd.*. -# /jstextad. (easylist.txt: 4350) -/(.*/)?jstextad\. -jstextad.*. -# /jspopunder. (easylist.txt: 4349) -/(.*/)?jspopunder\. -jspopunder.*. -# /jsplayerads- (easylist.txt: 4348) -/(.*/)?jsplayerads- -jsplayerads-*. -# /json/ad/* (easylist.txt: 4347) -/(.*/)?json/ad/.* -# /jsfiles/ads/* (easylist.txt: 4346) -/(.*/)?jsfiles/ads/.* -# /jsc/ads. (easylist.txt: 4345) -/(.*/)?jsc/ads\. -# /jsadscripts/* (easylist.txt: 4344) -/(.*/)?jsadscripts/.* -# /jsAds/* (easylist.txt: 4343) -/(.*/)?jsAds/.* -# /jsads- (easylist.txt: 4342) -/(.*/)?jsads- -jsads-*. -# /jsad/* (easylist.txt: 4341) -/(.*/)?jsad/.* -# /jsad.php (easylist.txt: 4340) -/(.*/)?jsad\.php -jsad.php*. -# /js_adv_ (easylist.txt: 4339) -/(.*/)?js_adv_ -# /js_ads_ (easylist.txt: 4338) -/(.*/)?js_ads_ -# /js_ads/* (easylist.txt: 4337) -/(.*/)?js_ads/.* -# /js_ad_utf8. (easylist.txt: 4336) -/(.*/)?js_ad_utf8\. -# /js2.ad/size= (easylist.txt: 4335) -/(.*/)?js2\.ad/size= -js2.ad/size= -# /js/youmuffpu.js (easylist.txt: 4334) -/(.*/)?js/youmuffpu\.js -# /js/ppu.$script (easylist.txt: 4333) -/(.*/)?js/ppu\. -# /js/oas. (easylist.txt: 4332) -/(.*/)?js/oas\. -# /js/oas- (easylist.txt: 4331) -/(.*/)?js/oas- -# /js/doubleclick/* (easylist.txt: 4330) -/(.*/)?js/doubleclick/.* -# /js/adv/* (easylist.txt: 4329) -/(.*/)?js/adv/.* -# /js/adv. (easylist.txt: 4328) -/(.*/)?js/adv\. -# /js/ads_ (easylist.txt: 4327) -/(.*/)?js/ads_ -# /js/ads. (easylist.txt: 4326) -/(.*/)?js/ads\. -# /js/ads- (easylist.txt: 4325) -/(.*/)?js/ads- -# /js.ng/size= (easylist.txt: 4324) -/(.*/)?js\.ng/size= -js.ng/size= -# /js.ng/site= (easylist.txt: 4323) -/(.*/)?js\.ng/site= -js.ng/site= -# /js.ng/pagepos= (easylist.txt: 4322) -/(.*/)?js\.ng/pagepos= -js.ng/pagepos= -# /js.ng/channel_ (easylist.txt: 4321) -/(.*/)?js\.ng/channel_ -js.ng/channel_ -# /js.ng/cat= (easylist.txt: 4320) -/(.*/)?js\.ng/cat= -js.ng/cat= -# /js.ad/size= (easylist.txt: 4319) -/(.*/)?js\.ad/size= -js.ad/size= -# /jqueryadvertising. (easylist.txt: 4318) -/(.*/)?jqueryadvertising\. -jqueryadvertising.*. -# /jquery_FOR_AD/* (easylist.txt: 4317) -/(.*/)?jquery_FOR_AD/.* -# /jquery/ad. (easylist.txt: 4316) -/(.*/)?jquery/ad\. -# /jquery.adx. (easylist.txt: 4315) -/(.*/)?jquery\.adx\. -jquery.adx.*. -# /jquery-ads. (easylist.txt: 4314) -/(.*/)?jquery-ads\. -jquery-ads.*. -# /jqads. (easylist.txt: 4313) -/(.*/)?jqads\. -jqads.*. -# /JPlayerAdFoxAdvertisementPlugin. (easylist.txt: 4312) -/(.*/)?JPlayerAdFoxAdvertisementPlugin\. -JPlayerAdFoxAdvertisementPlugin.*. -# /jlist-affiliates/* (easylist.txt: 4311) -/(.*/)?jlist-affiliates/.* -# /jivoxadplayer. (easylist.txt: 4310) -/(.*/)?jivoxadplayer\. -jivoxadplayer.*. -# /jitads. (easylist.txt: 4309) -/(.*/)?jitads\. -jitads.*. -# /jcorner.php?partner= (easylist.txt: 4308) -/(.*/)?jcorner\.php\?partner= -# /javascripts/ads/* (easylist.txt: 4307) -/(.*/)?javascripts/ads/.* -# /javascripts/ads. (easylist.txt: 4306) -/(.*/)?javascripts/ads\. -# /javascript/oas? (easylist.txt: 4305) -/(.*/)?javascript/oas\? -# /javascript/oas. (easylist.txt: 4304) -/(.*/)?javascript/oas\. -# /javascript/ads/* (easylist.txt: 4303) -/(.*/)?javascript/ads/.* -# /javascript/ads. (easylist.txt: 4302) -/(.*/)?javascript/ads\. -# /jamnboad. (easylist.txt: 4301) -/(.*/)?jamnboad\. -jamnboad.*. -# /j/ads.js (easylist.txt: 4300) -/(.*/)?j/ads\.js -# /iwadsense. (easylist.txt: 4299) -/(.*/)?iwadsense\. -iwadsense.*. -# /ispy/ads/* (easylist.txt: 4298) -/(.*/)?ispy/ads/.* -# /isgadvertisement/* (easylist.txt: 4297) -/(.*/)?isgadvertisement/.* -# /iserver/site= (easylist.txt: 4296) -/(.*/)?iserver/site= -# /iserver/ccid= (easylist.txt: 4295) -/(.*/)?iserver/ccid= -# /is.php?ipua_id=*&search_id= (easylist.txt: 4294) -/(.*/)?is\.php\?ipua_id=.*&search_id= -# /ireel/ad*.jpg (easylist.txt: 4293) -/(.*/)?ireel/ad.*\.jpg -# /irc_ad_ (easylist.txt: 4292) -/(.*/)?irc_ad_ -# /iqadcontroller. (easylist.txt: 4291) -/(.*/)?iqadcontroller\. -iqadcontroller.*. -# /iprom-ad/* (easylist.txt: 4290) -/(.*/)?iprom-ad/.* -# /ipadad. (easylist.txt: 4289) -/(.*/)?ipadad\. -ipadad.*. -# /ip-advertising/* (easylist.txt: 4288) -/(.*/)?ip-advertising/.* -# /inx-ad. (easylist.txt: 4287) -/(.*/)?inx-ad\. -inx-ad.*. -# /inviteads/* (easylist.txt: 4286) -/(.*/)?inviteads/.* -# /invideoad. (easylist.txt: 4285) -/(.*/)?invideoad\. -invideoad.*. -# /inventory/ad/* (easylist.txt: 4284) -/(.*/)?inventory/ad/.* -# /inv/ads/* (easylist.txt: 4283) -/(.*/)?inv/ads/.* -# /introduction_ad. (easylist.txt: 4282) -/(.*/)?introduction_ad\. -# /intextads. (easylist.txt: 4281) -/(.*/)?intextads\. -intextads.*. -# /intextadd/* (easylist.txt: 4280) -/(.*/)?intextadd/.* -# /interstitial_ad. (easylist.txt: 4279) -/(.*/)?interstitial_ad\. -# /interstitial-ad? (easylist.txt: 4278) -/(.*/)?interstitial-ad\? -# /interstitial-ad/* (easylist.txt: 4277) -/(.*/)?interstitial-ad/.* -# /interstitial-ad. (easylist.txt: 4276) -/(.*/)?interstitial-ad\. -interstitial-ad.*. -# /internetad/* (easylist.txt: 4275) -/(.*/)?internetad/.* -# /internet_ad_ (easylist.txt: 4274) -/(.*/)?internet_ad_ -# /internal-ad- (easylist.txt: 4273) -/(.*/)?internal-ad- -internal-ad-*. -# /internAds. (easylist.txt: 4272) -/(.*/)?internAds\. -internAds.*. -# /intermediate-ad- (easylist.txt: 4271) -/(.*/)?intermediate-ad- -intermediate-ad-*. -# /interface/ads/* (easylist.txt: 4270) -/(.*/)?interface/ads/.* -# /interad. (easylist.txt: 4269) -/(.*/)?interad\. -interad.*. -# /intellitext. (easylist.txt: 4268) -/(.*/)?intellitext\. -intellitext.*. -# /intelliad. (easylist.txt: 4267) -/(.*/)?intelliad\. -intelliad.*. -# /instreamad/* (easylist.txt: 4266) -/(.*/)?instreamad/.* -# /insertads. (easylist.txt: 4265) -/(.*/)?insertads\. -insertads.*. -# /insertAd. (easylist.txt: 4264) -/(.*/)?insertAd\. -insertAd.*. -# /inquirer/ads/* (easylist.txt: 4263) -/(.*/)?inquirer/ads/.* -# /innerads. (easylist.txt: 4262) -/(.*/)?innerads\. -innerads.*. -# /inner-ads/* (easylist.txt: 4261) -/(.*/)?inner-ads/.* -# /inner-ads- (easylist.txt: 4260) -/(.*/)?inner-ads- -inner-ads-*. -# /inlinetextads? (easylist.txt: 4259) -/(.*/)?inlinetextads\? -# /inlineads/* (easylist.txt: 4258) -/(.*/)?inlineads/.* -# /inline_ads. (easylist.txt: 4257) -/(.*/)?inline_ads\. -# /inline_ad_ (easylist.txt: 4256) -/(.*/)?inline_ad_ -# /inline_ad. (easylist.txt: 4255) -/(.*/)?inline_ad\. -# /INjspopunder. (easylist.txt: 4254) -/(.*/)?INjspopunder\. -INjspopunder.*. -# /injectad. (easylist.txt: 4253) -/(.*/)?injectad\. -injectad.*. -# /initlayeredwelcomead- (easylist.txt: 4252) -/(.*/)?initlayeredwelcomead- -initlayeredwelcomead-*. -# /initdefineads. (easylist.txt: 4251) -/(.*/)?initdefineads\. -initdefineads.*. -# /inhouse_ads/* (easylist.txt: 4250) -/(.*/)?inhouse_ads/.* -# /index_ads. (easylist.txt: 4249) -/(.*/)?index_ads\. -# /index_ad/* (easylist.txt: 4248) -/(.*/)?index_ad/.* -# /index-ad. (easylist.txt: 4247) -/(.*/)?index-ad\. -index-ad.*. -# /index-ad- (easylist.txt: 4246) -/(.*/)?index-ad- -index-ad-*. -# /incmpuad. (easylist.txt: 4245) -/(.*/)?incmpuad\. -incmpuad.*. -# /includes/ads_ (easylist.txt: 4244) -/(.*/)?includes/ads_ -# /includes/ads/* (easylist.txt: 4243) -/(.*/)?includes/ads/.* -# /includes/ad_ (easylist.txt: 4242) -/(.*/)?includes/ad_ -# /includes/ad. (easylist.txt: 4241) -/(.*/)?includes/ad\. -# /included_ads/* (easylist.txt: 4240) -/(.*/)?included_ads/.* -# /include/adsdaq (easylist.txt: 4239) -/(.*/)?include/adsdaq -# /include/ads/* (easylist.txt: 4238) -/(.*/)?include/ads/.* -# /include/ad_ (easylist.txt: 4237) -/(.*/)?include/ad_ -# /include/ad/* (easylist.txt: 4236) -/(.*/)?include/ad/.* -# /inc_v2/ad_ (easylist.txt: 4235) -/(.*/)?inc_v2/ad_ -# /inc_ads. (easylist.txt: 4234) -/(.*/)?inc_ads\. -# /inc_ad_ (easylist.txt: 4233) -/(.*/)?inc_ad_ -# /inc_ad. (easylist.txt: 4232) -/(.*/)?inc_ad\. -# /inc/ads/* (easylist.txt: 4231) -/(.*/)?inc/ads/.* -# /inc/ad. (easylist.txt: 4230) -/(.*/)?inc/ad\. -# /inc/ad- (easylist.txt: 4229) -/(.*/)?inc/ad- -# /inad. (easylist.txt: 4228) -/(.*/)?inad\. -inad.*. -# /impopup/* (easylist.txt: 4227) -/(.*/)?impopup/.* -# /impop. (easylist.txt: 4226) -/(.*/)?impop\. -impop.*. -# /imp.ads/* (easylist.txt: 4225) -/(.*/)?imp\.ads/.* -imp.ads/.* -# /imlive5. (easylist.txt: 4224) -/(.*/)?imlive5\. -imlive5.*. -# /imlive300_ (easylist.txt: 4223) -/(.*/)?imlive300_ -# /imlive.gif (easylist.txt: 4222) -/(.*/)?imlive\.gif -imlive.gif*. -# /imgs/ads/* (easylist.txt: 4221) -/(.*/)?imgs/ads/.* -# /imgs/ad/* (easylist.txt: 4220) -/(.*/)?imgs/ad/.* -# /imgaffl/* (easylist.txt: 4219) -/(.*/)?imgaffl/.* -# /imgads/* (easylist.txt: 4218) -/(.*/)?imgads/.* -# /imgAdITN. (easylist.txt: 4217) -/(.*/)?imgAdITN\. -imgAdITN.*. -# /imgad_ (easylist.txt: 4216) -/(.*/)?imgad_ -# /imgad? (easylist.txt: 4215) -/(.*/)?imgad\? -# /imgad. (easylist.txt: 4214) -/(.*/)?imgad\. -imgad.*. -# /img_adv/* (easylist.txt: 4213) -/(.*/)?img_adv/.* -# /img_ads/* (easylist.txt: 4212) -/(.*/)?img_ads/.* -# /img_ad_ (easylist.txt: 4211) -/(.*/)?img_ad_ -# /img_ad/* (easylist.txt: 4210) -/(.*/)?img_ad/.* -# /img3/ads/* (easylist.txt: 4209) -/(.*/)?img3/ads/.* -# /img2/ad/* (easylist.txt: 4208) -/(.*/)?img2/ad/.* -# /img/aff/* (easylist.txt: 4207) -/(.*/)?img/aff/.* -# /img/adv/* (easylist.txt: 4206) -/(.*/)?img/adv/.* -# /img/adv. (easylist.txt: 4205) -/(.*/)?img/adv\. -# /img/ads/* (easylist.txt: 4204) -/(.*/)?img/ads/.* -# /img/ad_ (easylist.txt: 4203) -/(.*/)?img/ad_ -# /img/ad/* (easylist.txt: 4202) -/(.*/)?img/ad/.* -# /img/ad. (easylist.txt: 4201) -/(.*/)?img/ad\. -# /img/ad- (easylist.txt: 4200) -/(.*/)?img/ad- -# /img/_ad. (easylist.txt: 4199) -/(.*/)?img/_ad\. -# /img.ads. (easylist.txt: 4198) -/(.*/)?img\.ads\. -img.ads.*. -# /img-ads/* (easylist.txt: 4197) -/(.*/)?img-ads/.* -# /imfloat. (easylist.txt: 4196) -/(.*/)?imfloat\. -imfloat.*. -# /imagesadspro/* (easylist.txt: 4195) -/(.*/)?imagesadspro/.* -# /images_ads/* (easylist.txt: 4194) -/(.*/)?images_ads/.* -# /images_ad/* (easylist.txt: 4193) -/(.*/)?images_ad/.* -# /images2/ads/* (easylist.txt: 4192) -/(.*/)?images2/ads/.* -# /images1/ad_ (easylist.txt: 4191) -/(.*/)?images1/ad_ -# /images/vghd (easylist.txt: 4190) -/(.*/)?images/vghd -# /images/sponsored/* (easylist.txt: 4189) -/(.*/)?images/sponsored/.* -# /images/sponsored. (easylist.txt: 4188) -/(.*/)?images/sponsored\. -# /images/livejasmin/* (easylist.txt: 4187) -/(.*/)?images/livejasmin/.* -# /images/gads_ (easylist.txt: 4186) -/(.*/)?images/gads_ -# /images/bg_ad/* (easylist.txt: 4185) -/(.*/)?images/bg_ad/.* -# /images/awebanner (easylist.txt: 4184) -/(.*/)?images/awebanner -# /images/affs/* (easylist.txt: 4183) -/(.*/)?images/affs/.* -# /images/aff- (easylist.txt: 4182) -/(.*/)?images/aff- -# /images/adver- (easylist.txt: 4181) -/(.*/)?images/adver- -# /images/adv_ (easylist.txt: 4180) -/(.*/)?images/adv_ -# /images/adv/* (easylist.txt: 4179) -/(.*/)?images/adv/.* -# /images/adv. (easylist.txt: 4178) -/(.*/)?images/adv\. -# /images/adv- (easylist.txt: 4177) -/(.*/)?images/adv- -# /images/ads_ (easylist.txt: 4176) -/(.*/)?images/ads_ -# /images/ads/* (easylist.txt: 4175) -/(.*/)?images/ads/.* -# /images/ads. (easylist.txt: 4174) -/(.*/)?images/ads\. -# /images/ads- (easylist.txt: 4173) -/(.*/)?images/ads- -# /images/adds/* (easylist.txt: 4172) -/(.*/)?images/adds/.* -# /images/ad2/* (easylist.txt: 4171) -/(.*/)?images/ad2/.* -# /images/ad/* (easylist.txt: 4170) -/(.*/)?images/ad/.* -# /images/ad- (easylist.txt: 4168) -/(.*/)?images/ad- -# /images.adv/* (easylist.txt: 4167) -/(.*/)?images\.adv/.* -images.adv/.* -# /images.ads. (easylist.txt: 4166) -/(.*/)?images\.ads\. -images.ads.*. -# /images-v2/ad_ (easylist.txt: 4165) -/(.*/)?images-v2/ad_ -# /images-ad/* (easylist.txt: 4164) -/(.*/)?images-ad/.* -# /imagecache_ads/* (easylist.txt: 4163) -/(.*/)?imagecache_ads/.* -# /imageads/* (easylist.txt: 4162) -/(.*/)?imageads/.* -# /image_ads/* (easylist.txt: 4161) -/(.*/)?image_ads/.* -# /image/affiliate/* (easylist.txt: 4160) -/(.*/)?image/affiliate/.* -# /image/adv/* (easylist.txt: 4159) -/(.*/)?image/adv/.* -# /image/ads_ (easylist.txt: 4158) -/(.*/)?image/ads_ -# /image/ads/* (easylist.txt: 4157) -/(.*/)?image/ads/.* -# /image/ad/* (easylist.txt: 4156) -/(.*/)?image/ad/.* -# /imads.js (easylist.txt: 4155) -/(.*/)?imads\.js -imads.js*. -# /imaads. (easylist.txt: 4154) -/(.*/)?imaads\. -imaads.*. -# /ima/ads_ (easylist.txt: 4153) -/(.*/)?ima/ads_ -# /im.cams. (easylist.txt: 4152) -/(.*/)?im\.cams\. -im.cams.*. -# /im-popup/* (easylist.txt: 4151) -/(.*/)?im-popup/.* -# /im-ad/im-rotator2. (easylist.txt: 4150) -/(.*/)?im-ad/im-rotator2\. -# /im-ad/im-rotator. (easylist.txt: 4149) -/(.*/)?im-ad/im-rotator\. -# /ilivid-ad- (easylist.txt: 4148) -/(.*/)?ilivid-ad- -ilivid-ad-*. -# /ignitecampaigns.com/* (easylist.txt: 4147) -/(.*/)?ignitecampaigns\.com/.* -ignitecampaigns.com/.* -# /ignite.partnerembed.js (easylist.txt: 4146) -/(.*/)?ignite\.partnerembed\.js -ignite.partnerembed.js*. -# /ifrm_ads/* (easylist.txt: 4145) -/(.*/)?ifrm_ads/.* -# /iframes/ad/* (easylist.txt: 4144) -/(.*/)?iframes/ad/.* -# /iframedartad. (easylist.txt: 4143) -/(.*/)?iframedartad\. -iframedartad.*. -# /iframeadsensewrapper. (easylist.txt: 4142) -/(.*/)?iframeadsensewrapper\. -iframeadsensewrapper.*. -# /iframeadsense. (easylist.txt: 4141) -/(.*/)?iframeadsense\. -iframeadsense.*. -# /iframeads/* (easylist.txt: 4140) -/(.*/)?iframeads/.* -# /iframeads. (easylist.txt: 4139) -/(.*/)?iframeads\. -iframeads.*. -# /iframeadcontent. (easylist.txt: 4138) -/(.*/)?iframeadcontent\. -iframeadcontent.*. -# /iframead_ (easylist.txt: 4137) -/(.*/)?iframead_ -# /iframead/* (easylist.txt: 4136) -/(.*/)?iframead/.* -# /iframead. (easylist.txt: 4135) -/(.*/)?iframead\. -iframead.*. -# /iframe_sponsor_ (easylist.txt: 4134) -/(.*/)?iframe_sponsor_ -# /iframe_chitika_ (easylist.txt: 4133) -/(.*/)?iframe_chitika_ -# /iframe_ads_ (easylist.txt: 4132) -/(.*/)?iframe_ads_ -# /iframe_ads/* (easylist.txt: 4131) -/(.*/)?iframe_ads/.* -# /iframe_ad_ (easylist.txt: 4130) -/(.*/)?iframe_ad_ -# /iframe_ad? (easylist.txt: 4129) -/(.*/)?iframe_ad\? -# /iframe_ad. (easylist.txt: 4128) -/(.*/)?iframe_ad\. -# /iframe/ads/* (easylist.txt: 4127) -/(.*/)?iframe/ads/.* -# /iframe/ad_ (easylist.txt: 4126) -/(.*/)?iframe/ad_ -# /iframe/ad/* (easylist.txt: 4125) -/(.*/)?iframe/ad/.* -# /iframe.ad/* (easylist.txt: 4124) -/(.*/)?iframe\.ad/.* -iframe.ad/.* -# /iframe-mgid- (easylist.txt: 4123) -/(.*/)?iframe-mgid- -iframe-mgid-*. -# /iframe-ads/* (easylist.txt: 4122) -/(.*/)?iframe-ads/.* -# /iframe-ad/* (easylist.txt: 4121) -/(.*/)?iframe-ad/.* -# /iframe-ad. (easylist.txt: 4120) -/(.*/)?iframe-ad\. -iframe-ad.*. -# /ifolder-ads. (easylist.txt: 4119) -/(.*/)?ifolder-ads\. -ifolder-ads.*. -# /idevaffiliate/banners/* (easylist.txt: 4118) -/(.*/)?idevaffiliate/banners/.* -# /icon_advertising_ (easylist.txt: 4117) -/(.*/)?icon_advertising_ -# /icon_ads_ (easylist.txt: 4116) -/(.*/)?icon_ads_ -# /icon_ad. (easylist.txt: 4115) -/(.*/)?icon_ad\. -# /IBNjspopunder. (easylist.txt: 4114) -/(.*/)?IBNjspopunder\. -IBNjspopunder.*. -# /iabadvertisingplugin.swf (easylist.txt: 4113) -/(.*/)?iabadvertisingplugin\.swf -iabadvertisingplugin.swf*. -# /ia/ads/* (easylist.txt: 4112) -/(.*/)?ia/ads/.* -# /i_ads. (easylist.txt: 4111) -/(.*/)?i_ads\. -# /i/adv/* (easylist.txt: 4110) -/(.*/)?i/adv/.* -# /i/ads/* (easylist.txt: 4109) -/(.*/)?i/ads/.* -# /hubxt.*/js/ht.js (easylist.txt: 4108) -/(.*/)?hubxt\..*/js/ht\.js -hubxt.*./(.*/)?js/ht\.js -# /hubxt.*/js/eht.js? (easylist.txt: 4107) -/(.*/)?hubxt\..*/js/eht\.js\? -hubxt.*./(.*/)?js/eht\.js\? -# /httpads/* (easylist.txt: 4106) -/(.*/)?httpads/.* -# /htmlads/* (easylist.txt: 4105) -/(.*/)?htmlads/.* -# /html/sponsors/* (easylist.txt: 4104) -/(.*/)?html/sponsors/.* -# /html/ads_ (easylist.txt: 4103) -/(.*/)?html/ads_ -# /html/ads/* (easylist.txt: 4102) -/(.*/)?html/ads/.* -# /html/ad/* (easylist.txt: 4101) -/(.*/)?html/ad/.* -# /html/ad. (easylist.txt: 4100) -/(.*/)?html/ad\. -# /html.ng/* (easylist.txt: 4099) -/(.*/)?html\.ng/.* -html.ng/.* -# /ht.js?site_ (easylist.txt: 4098) -/(.*/)?ht\.js\?site_ -# /hpcwire/ads/* (easylist.txt: 4097) -/(.*/)?hpcwire/ads/.* -# /hoverad. (easylist.txt: 4096) -/(.*/)?hoverad\. -hoverad.*. -# /houseads? (easylist.txt: 4095) -/(.*/)?houseads\? -# /houseads/* (easylist.txt: 4094) -/(.*/)?houseads/.* -# /houseads. (easylist.txt: 4093) -/(.*/)?houseads\. -houseads.*. -# /housead_ (easylist.txt: 4092) -/(.*/)?housead_ -# /housead/* (easylist.txt: 4091) -/(.*/)?housead/.* -# /housead. (easylist.txt: 4090) -/(.*/)?housead\. -housead.*. -# /house_ads/* (easylist.txt: 4089) -/(.*/)?house_ads/.* -# /house_ad_ (easylist.txt: 4088) -/(.*/)?house_ad_ -# /house_ad- (easylist.txt: 4087) -/(.*/)?house_ad- -# /house-ads/* (easylist.txt: 4086) -/(.*/)?house-ads/.* -# /house-ad/* (easylist.txt: 4085) -/(.*/)?house-ad/.* -# /house-ad. (easylist.txt: 4084) -/(.*/)?house-ad\. -house-ad.*. -# /hostkey-ad. (easylist.txt: 4083) -/(.*/)?hostkey-ad\. -hostkey-ad.*. -# /hosting/ads/* (easylist.txt: 4082) -/(.*/)?hosting/ads/.* -# /hostgator-ad. (easylist.txt: 4081) -/(.*/)?hostgator-ad\. -hostgator-ad.*. -# /hostedbannerads. (easylist.txt: 4080) -/(.*/)?hostedbannerads\. -hostedbannerads.*. -# /hostedads. (easylist.txt: 4079) -/(.*/)?hostedads\. -hostedads.*. -# /horizontalAd. (easylist.txt: 4078) -/(.*/)?horizontalAd\. -horizontalAd.*. -# /horizontal_advert_ (easylist.txt: 4077) -/(.*/)?horizontal_advert_ -# /HompageStickyAd. (easylist.txt: 4076) -/(.*/)?HompageStickyAd\. -HompageStickyAd.*. -# /HomeStaticAds/* (easylist.txt: 4075) -/(.*/)?HomeStaticAds/.* -# /homeslideadtop/* (easylist.txt: 4074) -/(.*/)?homeslideadtop/.* -# /homepageadvertright. (easylist.txt: 4073) -/(.*/)?homepageadvertright\. -homepageadvertright.*. -# /homepage_ad_ (easylist.txt: 4071) -/(.*/)?homepage_ad_ -# /homepage/ads/* (easylist.txt: 4070) -/(.*/)?homepage/ads/.* -# /homepage-ads/* (easylist.txt: 4069) -/(.*/)?homepage-ads/.* -# /homeoutside/ads/* (easylist.txt: 4068) -/(.*/)?homeoutside/ads/.* -# /home_adv. (easylist.txt: 4067) -/(.*/)?home_adv\. -# /home30/ad. (easylist.txt: 4066) -/(.*/)?home30/ad\. -# /home/sponsor_ (easylist.txt: 4065) -/(.*/)?home/sponsor_ -# /home/ads_ (easylist.txt: 4064) -/(.*/)?home/ads_ -# /home/ads/* (easylist.txt: 4063) -/(.*/)?home/ads/.* -# /home/ads- (easylist.txt: 4062) -/(.*/)?home/ads- -# /home/ad_ (easylist.txt: 4061) -/(.*/)?home/ad_ -# /home/_ads (easylist.txt: 4060) -/(.*/)?home/_ads -# /holl_ad. (easylist.txt: 4059) -/(.*/)?holl_ad\. -# /hitbar_ad_ (easylist.txt: 4058) -/(.*/)?hitbar_ad_ -# /hikaku/banner/* (easylist.txt: 4057) -/(.*/)?hikaku/banner/.* -# /hiadone_ (easylist.txt: 4056) -/(.*/)?hiadone_ -# /Heat_Ad. (easylist.txt: 4055) -/(.*/)?Heat_Ad\. -# /headvert. (easylist.txt: 4054) -/(.*/)?headvert\. -headvert.*. -# /headermktgpromoads. (easylist.txt: 4053) -/(.*/)?headermktgpromoads\. -headermktgpromoads.*. -# /headerAdvertismentTab. (easylist.txt: 4052) -/(.*/)?headerAdvertismentTab\. -headerAdvertismentTab.*. -# /headerads1. (easylist.txt: 4051) -/(.*/)?headerads1\. -headerads1.*. -# /headerads. (easylist.txt: 4050) -/(.*/)?headerads\. -headerads.*. -# /headeradd2. (easylist.txt: 4049) -/(.*/)?headeradd2\. -headeradd2.*. -# /headerad. (easylist.txt: 4048) -/(.*/)?headerad\. -headerad.*. -# /header_ads_ (easylist.txt: 4047) -/(.*/)?header_ads_ -# /header_ad_ (easylist.txt: 4046) -/(.*/)?header_ad_ -# /header-ad. (easylist.txt: 4045) -/(.*/)?header-ad\. -header-ad.*. -# /hdadvertisment- (easylist.txt: 4044) -/(.*/)?hdadvertisment- -hdadvertisment-*. -# /hcm_ads/* (easylist.txt: 4043) -/(.*/)?hcm_ads/.* -# /Handlers/Ads. (easylist.txt: 4042) -/(.*/)?Handlers/Ads\. -# /hads- (easylist.txt: 4041) -/(.*/)?hads- -hads-*. -# /gutterAd. (easylist.txt: 4040) -/(.*/)?gutterAd\. -gutterAd.*. -# /GujAd/* (easylist.txt: 4039) -/(.*/)?GujAd/.* -# /gujAd. (easylist.txt: 4038) -/(.*/)?gujAd\. -gujAd.*. -# /guardrailad_ (easylist.txt: 4037) -/(.*/)?guardrailad_ -# /guardianleader. (easylist.txt: 4036) -/(.*/)?guardianleader\. -guardianleader.*. -# /gtv_ads. (easylist.txt: 4035) -/(.*/)?gtv_ads\. -# /gtags/pin_tag. (easylist.txt: 4034) -/(.*/)?gtags/pin_tag\. -# /gt6skyadtop. (easylist.txt: 4033) -/(.*/)?gt6skyadtop\. -gt6skyadtop.*. -# /groupon/ads/* (easylist.txt: 4032) -/(.*/)?groupon/ads/.* -# /grid-ad. (easylist.txt: 4031) -/(.*/)?grid-ad\. -grid-ad.*. -# /graphics/ads/* (easylist.txt: 4030) -/(.*/)?graphics/ads/.* -# /graphics/ad_ (easylist.txt: 4029) -/(.*/)?graphics/ad_ -# /gpt_ads- (easylist.txt: 4028) -/(.*/)?gpt_ads- -# /googlempu. (easylist.txt: 4027) -/(.*/)?googlempu\. -googlempu.*. -# /googleleads. (easylist.txt: 4026) -/(.*/)?googleleads\. -googleleads.*. -# /googleleader. (easylist.txt: 4025) -/(.*/)?googleleader\. -googleleader.*. -# /googleheadad. (easylist.txt: 4024) -/(.*/)?googleheadad\. -googleheadad.*. -# /googlecontextualads. (easylist.txt: 4023) -/(.*/)?googlecontextualads\. -googlecontextualads.*. -# /googleafvadrenderer. (easylist.txt: 4022) -/(.*/)?googleafvadrenderer\. -googleafvadrenderer.*. -# /googleafs. (easylist.txt: 4021) -/(.*/)?googleafs\. -googleafs.*. -# /googleafc. (easylist.txt: 4020) -/(.*/)?googleafc\. -googleafc.*. -# /googleadunit? (easylist.txt: 4019) -/(.*/)?googleadunit\? -# /googleAdTaggingSubSec. (easylist.txt: 4018) -/(.*/)?googleAdTaggingSubSec\. -googleAdTaggingSubSec.*. -# /googleadsense. (easylist.txt: 4017) -/(.*/)?googleadsense\. -googleadsense.*. -# /googleAdScripts. (easylist.txt: 4016) -/(.*/)?googleAdScripts\. -googleAdScripts.*. -# /googleadsafs_ (easylist.txt: 4015) -/(.*/)?googleadsafs_ -# /googleadsafc_ (easylist.txt: 4014) -/(.*/)?googleadsafc_ -# /googleads_ (easylist.txt: 4013) -/(.*/)?googleads_ -# /googleads3widetext. (easylist.txt: 4012) -/(.*/)?googleads3widetext\. -googleads3widetext.*. -# /googleads2. (easylist.txt: 4011) -/(.*/)?googleads2\. -googleads2.*. -# /googleads1. (easylist.txt: 4010) -/(.*/)?googleads1\. -googleads1.*. -# /googleads/* (easylist.txt: 4009) -/(.*/)?googleads/.* -# /googleads. (easylist.txt: 4008) -/(.*/)?googleads\. -googleads.*. -# /googleads- (easylist.txt: 4007) -/(.*/)?googleads- -googleads-*. -# /googleadright. (easylist.txt: 4006) -/(.*/)?googleadright\. -googleadright.*. -# /googleadiframe_ (easylist.txt: 4005) -/(.*/)?googleadiframe_ -# /googleadhtml/* (easylist.txt: 4004) -/(.*/)?googleadhtml/.* -# /googleadhpbot. (easylist.txt: 4003) -/(.*/)?googleadhpbot\. -googleadhpbot.*. -# /googleadhp. (easylist.txt: 4002) -/(.*/)?googleadhp\. -googleadhp.*. -# /googleaddisplayframe. (easylist.txt: 4001) -/(.*/)?googleaddisplayframe\. -googleaddisplayframe.*. -# /googleaddfooter. (easylist.txt: 4000) -/(.*/)?googleaddfooter\. -googleaddfooter.*. -# /googleadcode. (easylist.txt: 3999) -/(.*/)?googleadcode\. -googleadcode.*. -# /GoogleAdBg. (easylist.txt: 3998) -/(.*/)?GoogleAdBg\. -GoogleAdBg.*. -# /googlead_ (easylist.txt: 3997) -/(.*/)?googlead_ -# /googlead336x280. (easylist.txt: 3996) -/(.*/)?googlead336x280\. -googlead336x280.*. -# /GoogleAd300. (easylist.txt: 3995) -/(.*/)?GoogleAd300\. -GoogleAd300.*. -# /googlead160. (easylist.txt: 3994) -/(.*/)?googlead160\. -googlead160.*. -# /googlead1. (easylist.txt: 3993) -/(.*/)?googlead1\. -googlead1.*. -# /googlead. (easylist.txt: 3992) -/(.*/)?googlead\. -googlead.*. -# /googlead- (easylist.txt: 3991) -/(.*/)?googlead- -googlead-*. -# /google_radlinks_ (easylist.txt: 3990) -/(.*/)?google_radlinks_ -# /google_lander2.js (easylist.txt: 3989) -/(.*/)?google_lander2\.js -# /google_caf.js? (easylist.txt: 3988) -/(.*/)?google_caf\.js\? -# /google_afs_widget/* (easylist.txt: 3987) -/(.*/)?google_afs_widget/.* -# /google_afs. (easylist.txt: 3986) -/(.*/)?google_afs\. -# /google_afc_ (easylist.txt: 3985) -/(.*/)?google_afc_ -# /google_afc. (easylist.txt: 3984) -/(.*/)?google_afc\. -# /google_adv/* (easylist.txt: 3983) -/(.*/)?google_adv/.* -# /google_ads_ (easylist.txt: 3982) -/(.*/)?google_ads_ -# /google_ads/* (easylist.txt: 3981) -/(.*/)?google_ads/.* -# /google_ads. (easylist.txt: 3980) -/(.*/)?google_ads\. -# /google_ad_ (easylist.txt: 3979) -/(.*/)?google_ad_ -# /google_ad. (easylist.txt: 3978) -/(.*/)?google_ad\. -# /google728. (easylist.txt: 3977) -/(.*/)?google728\. -google728.*. -# /google160. (easylist.txt: 3976) -/(.*/)?google160\. -google160.*. -# /google/adv. (easylist.txt: 3975) -/(.*/)?google/adv\. -# /google/ad? (easylist.txt: 3974) -/(.*/)?google/ad\? -# /google-afc. (easylist.txt: 3973) -/(.*/)?google-afc\. -google-afc.*. -# /google-afc- (easylist.txt: 3972) -/(.*/)?google-afc- -google-afc-*. -# /google-adwords (easylist.txt: 3971) -/(.*/)?google-adwords -google-adwords*. -# /google-adverts- (easylist.txt: 3970) -/(.*/)?google-adverts- -google-adverts-*. -# /google-adsense. (easylist.txt: 3969) -/(.*/)?google-adsense\. -google-adsense.*. -# /google-adsense- (easylist.txt: 3968) -/(.*/)?google-adsense- -google-adsense-*. -# /google-ads/* (easylist.txt: 3967) -/(.*/)?google-ads/.* -# /google-ads. (easylist.txt: 3966) -/(.*/)?google-ads\. -google-ads.*. -# /google-ad? (easylist.txt: 3965) -/(.*/)?google-ad\? -# /google-ad- (easylist.txt: 3964) -/(.*/)?google-ad- -google-ad-*. -# /googad300by600. (easylist.txt: 3963) -/(.*/)?googad300by600\. -googad300by600.*. -# /globalbannerad. (easylist.txt: 3962) -/(.*/)?globalbannerad\. -globalbannerad.*. -# /globaladprostyles. (easylist.txt: 3961) -/(.*/)?globaladprostyles\. -globaladprostyles.*. -# /globalad. (easylist.txt: 3960) -/(.*/)?globalad\. -globalad.*. -# /global/ads/* (easylist.txt: 3959) -/(.*/)?global/ads/.* -# /global/ads. (easylist.txt: 3958) -/(.*/)?global/ads\. -# /global/ad/* (easylist.txt: 3957) -/(.*/)?global/ad/.* -# /global-ads_ (easylist.txt: 3956) -/(.*/)?global-ads_ -# /glam_ads. (easylist.txt: 3955) -/(.*/)?glam_ads\. -# /glam728. (easylist.txt: 3954) -/(.*/)?glam728\. -glam728.*. -# /glam300. (easylist.txt: 3953) -/(.*/)?glam300\. -glam300.*. -# /glam160. (easylist.txt: 3952) -/(.*/)?glam160\. -glam160.*. -# /gifs/ads/* (easylist.txt: 3951) -/(.*/)?gifs/ads/.* -# /ggadsense. (easylist.txt: 3950) -/(.*/)?ggadsense\. -ggadsense.*. -# /gfx/ads/* (easylist.txt: 3949) -/(.*/)?gfx/ads/.* -# /gfx/ad/* (easylist.txt: 3948) -/(.*/)?gfx/ad/.* -# /gexternalad. (easylist.txt: 3947) -/(.*/)?gexternalad\. -gexternalad.*. -# /getwebsitead/* (easylist.txt: 3946) -/(.*/)?getwebsitead/.* -# /getvideoad. (easylist.txt: 3945) -/(.*/)?getvideoad\. -getvideoad.*. -# /getvdopiaads. (easylist.txt: 3944) -/(.*/)?getvdopiaads\. -getvdopiaads.*. -# /GetVASTAd? (easylist.txt: 3943) -/(.*/)?GetVASTAd\? -# /getTextAD. (easylist.txt: 3942) -/(.*/)?getTextAD\. -getTextAD.*. -# /getsponslinksauto. (easylist.txt: 3941) -/(.*/)?getsponslinksauto\. -getsponslinksauto.*. -# /getsponslinks. (easylist.txt: 3940) -/(.*/)?getsponslinks\. -getsponslinks.*. -# /getsad.php? (easylist.txt: 3939) -/(.*/)?getsad\.php\? -# /getrcmd.js? (easylist.txt: 3938) -/(.*/)?getrcmd\.js\? -# /getmyad/* (easylist.txt: 3937) -/(.*/)?getmyad/.* -# /getmdhlink. (easylist.txt: 3936) -/(.*/)?getmdhlink\. -getmdhlink.*. -# /getmdhlayer. (easylist.txt: 3935) -/(.*/)?getmdhlayer\. -getmdhlayer.*. -# /getmarketplaceads. (easylist.txt: 3934) -/(.*/)?getmarketplaceads\. -getmarketplaceads.*. -# /getJsonAds? (easylist.txt: 3933) -/(.*/)?getJsonAds\? -# /getinlineads/* (easylist.txt: 3932) -/(.*/)?getinlineads/.* -# /gethalfpagead. (easylist.txt: 3931) -/(.*/)?gethalfpagead\. -gethalfpagead.*. -# /getfeaturedadsforshow. (easylist.txt: 3930) -/(.*/)?getfeaturedadsforshow\. -getfeaturedadsforshow.*. -# /getdigitalad/* (easylist.txt: 3929) -/(.*/)?getdigitalad/.* -# /getbanner.php? (easylist.txt: 3928) -/(.*/)?getbanner\.php\? -# /getbanner.cfm? (easylist.txt: 3927) -/(.*/)?getbanner\.cfm\? -# /getban.php? (easylist.txt: 3926) -/(.*/)?getban\.php\? -# /getarticleadvertimageservlet? (easylist.txt: 3925) -/(.*/)?getarticleadvertimageservlet\? -# /GetADVOverlay. (easylist.txt: 3924) -/(.*/)?GetADVOverlay\. -GetADVOverlay.*. -# /getadverts? (easylist.txt: 3923) -/(.*/)?getadverts\? -# /getadvertiserimage. (easylist.txt: 3922) -/(.*/)?getadvertiserimage\. -getadvertiserimage.*. -# /getAdvertisement^ (easylist.txt: 3921) -/(.*/)?getAdvertisement[^\w%.-] -# /getadvertimageservlet? (easylist.txt: 3920) -/(.*/)?getadvertimageservlet\? -# /getads| (easylist.txt: 3919) -/(.*/)?getads$ -# /getAdsForClient? (easylist.txt: 3918) -/(.*/)?getAdsForClient\? -# /getadsettingsjs? (easylist.txt: 3917) -/(.*/)?getadsettingsjs\? -# /getadserver. (easylist.txt: 3916) -/(.*/)?getadserver\. -getadserver.*. -# /getads? (easylist.txt: 3915) -/(.*/)?getads\? -# /getads/* (easylist.txt: 3914) -/(.*/)?getads/.* -# /getads. (easylist.txt: 3913) -/(.*/)?getads\. -getads.*. -# /getads- (easylist.txt: 3912) -/(.*/)?getads- -getads-*. -# /getadframe. (easylist.txt: 3911) -/(.*/)?getadframe\. -getadframe.*. -# /GetAdForCallBack? (easylist.txt: 3910) -/(.*/)?GetAdForCallBack\? -# /getadds. (easylist.txt: 3909) -/(.*/)?getadds\. -getadds.*. -# /getadcontent. (easylist.txt: 3908) -/(.*/)?getadcontent\. -getadcontent.*. -# /getad? (easylist.txt: 3907) -/(.*/)?getad\? -# /getad/* (easylist.txt: 3906) -/(.*/)?getad/.* -# /getad. (easylist.txt: 3905) -/(.*/)?getad\. -getad.*. -# /get_banner.asp? (easylist.txt: 3904) -/(.*/)?get_banner\.asp\? -# /get_ads/* (easylist.txt: 3903) -/(.*/)?get_ads/.* -# /get_ads. (easylist.txt: 3902) -/(.*/)?get_ads\. -# /get_ad_ (easylist.txt: 3901) -/(.*/)?get_ad_ -# /get/ad? (easylist.txt: 3900) -/(.*/)?get/ad\? -# /get/ad/* (easylist.txt: 3899) -/(.*/)?get/ad/.* -# /get/ad. (easylist.txt: 3898) -/(.*/)?get/ad\. -# /get.ad? (easylist.txt: 3897) -/(.*/)?get\.ad\? -# /get.*/get.$script (easylist.txt: 3896) -/(.*/)?get\..*/get\. -get.*./(.*/)?get\. -# /get-advert- (easylist.txt: 3895) -/(.*/)?get-advert- -get-advert-*. -# /get-ad. (easylist.txt: 3894) -/(.*/)?get-ad\. -get-ad.*. -# /ges_ads/* (easylist.txt: 3893) -/(.*/)?ges_ads/.* -# /GeoDynBanner.php?wmid= (easylist.txt: 3892) -/(.*/)?GeoDynBanner\.php\?wmid= -# /geobox.html (easylist.txt: 3891) -/(.*/)?geobox\.html -geobox.html*. -# /geoad/* (easylist.txt: 3890) -/(.*/)?geoad/.* -# /geo_banner.htm? (easylist.txt: 3889) -/(.*/)?geo_banner\.htm\? -# /geo/ads. (easylist.txt: 3888) -/(.*/)?geo/ads\. -# /geo-ads_ (easylist.txt: 3887) -/(.*/)?geo-ads_ -# /genericrichmediabannerad/* (easylist.txt: 3886) -/(.*/)?genericrichmediabannerad/.* -# /generic.ads. (easylist.txt: 3885) -/(.*/)?generic\.ads\. -generic.ads.*. -# /generateplayerads. (easylist.txt: 3884) -/(.*/)?generateplayerads\. -generateplayerads.*. -# /generated/key.js? (easylist.txt: 3883) -/(.*/)?generated/key\.js\? -# /generateadtag. (easylist.txt: 3882) -/(.*/)?generateadtag\. -generateadtag.*. -# /generate_ads. (easylist.txt: 3881) -/(.*/)?generate_ads\. -# /generate_ad. (easylist.txt: 3880) -/(.*/)?generate_ad\. -# /general/ads (easylist.txt: 3879) -/(.*/)?general/ads -# /general-ad- (easylist.txt: 3878) -/(.*/)?general-ad- -general-ad-*. -# /genads/* (easylist.txt: 3877) -/(.*/)?genads/.* -# /gen_ads_ (easylist.txt: 3876) -/(.*/)?gen_ads_ -# /geitonpop. (easylist.txt: 3875) -/(.*/)?geitonpop\. -geitonpop.*. -# /gazette/ads/* (easylist.txt: 3874) -/(.*/)?gazette/ads/.* -# /gatewayAds. (easylist.txt: 3873) -/(.*/)?gatewayAds\. -gatewayAds.*. -# /gate-ad- (easylist.txt: 3872) -/(.*/)?gate-ad- -gate-ad-*. -# /gannett/ads/* (easylist.txt: 3871) -/(.*/)?gannett/ads/.* -# /GAN_Ads/* (easylist.txt: 3870) -/(.*/)?GAN_Ads/.* -# /gamersad. (easylist.txt: 3869) -/(.*/)?gamersad\. -gamersad.*. -# /gameadsync. (easylist.txt: 3868) -/(.*/)?gameadsync\. -gameadsync.*. -# /gamead/* (easylist.txt: 3867) -/(.*/)?gamead/.* -# /game-ads. (easylist.txt: 3866) -/(.*/)?game-ads\. -game-ads.*. -# /gamads/* (easylist.txt: 3865) -/(.*/)?gamads/.* -# /gam_ads. (easylist.txt: 3864) -/(.*/)?gam_ads\. -# /gam_ad_ (easylist.txt: 3863) -/(.*/)?gam_ad_ -# /gam_ad. (easylist.txt: 3862) -/(.*/)?gam_ad\. -# /gam.html? (easylist.txt: 3861) -/(.*/)?gam\.html\? -# /galleryad. (easylist.txt: 3860) -/(.*/)?galleryad\. -galleryad.*. -# /gafv_adapter. (easylist.txt: 3859) -/(.*/)?gafv_adapter\. -# /gafsads? (easylist.txt: 3858) -/(.*/)?gafsads\? -# /gafc.js (easylist.txt: 3857) -/(.*/)?gafc\.js -gafc.js*. -# /gads.js (easylist.txt: 3856) -/(.*/)?gads\.js -gads.js*. -# /gads.html (easylist.txt: 3855) -/(.*/)?gads\.html -gads.html*. -# /gadgets/ad/* (easylist.txt: 3854) -/(.*/)?gadgets/ad/.* -# /fwadmanager. (easylist.txt: 3853) -/(.*/)?fwadmanager\. -fwadmanager.*. -# /fuseads/* (easylist.txt: 3852) -/(.*/)?fuseads/.* -# /fulladbazee. (easylist.txt: 3851) -/(.*/)?fulladbazee\. -fulladbazee.*. -# /fullad. (easylist.txt: 3850) -/(.*/)?fullad\. -fullad.*. -# /full/ads/* (easylist.txt: 3849) -/(.*/)?full/ads/.* -# /ftp/adv/* (easylist.txt: 3848) -/(.*/)?ftp/adv/.* -# /frontpagead/* (easylist.txt: 3847) -/(.*/)?frontpagead/.* -# /frontend/ads/* (easylist.txt: 3846) -/(.*/)?frontend/ads/.* -# /frnads. (easylist.txt: 3845) -/(.*/)?frnads\. -frnads.*. -# /friendfinder_ (easylist.txt: 3844) -/(.*/)?friendfinder_ -# /frequencyads. (easylist.txt: 3843) -/(.*/)?frequencyads\. -frequencyads.*. -# /freead2. (easylist.txt: 3842) -/(.*/)?freead2\. -freead2.*. -# /freead. (easylist.txt: 3841) -/(.*/)?freead\. -freead.*. -# /frameadsz. (easylist.txt: 3840) -/(.*/)?frameadsz\. -frameadsz.*. -# /frameads_ (easylist.txt: 3839) -/(.*/)?frameads_ -# /frameads1. (easylist.txt: 3838) -/(.*/)?frameads1\. -frameads1.*. -# /frameads. (easylist.txt: 3837) -/(.*/)?frameads\. -frameads.*. -# /framead_ (easylist.txt: 3836) -/(.*/)?framead_ -# /framead/* (easylist.txt: 3835) -/(.*/)?framead/.* -# /framead. (easylist.txt: 3834) -/(.*/)?framead\. -framead.*. -# /framead- (easylist.txt: 3833) -/(.*/)?framead- -framead-*. -# /frame_ads_ (easylist.txt: 3832) -/(.*/)?frame_ads_ -# /forums/ad/* (easylist.txt: 3831) -/(.*/)?forums/ad/.* -# /forum/ads/* (easylist.txt: 3830) -/(.*/)?forum/ads/.* -# /forads. (easylist.txt: 3829) -/(.*/)?forads\. -forads.*. -# /footertextads. (easylist.txt: 3828) -/(.*/)?footertextads\. -footertextads.*. -# /footerads/* (easylist.txt: 3827) -/(.*/)?footerads/.* -# /footerads. (easylist.txt: 3826) -/(.*/)?footerads\. -footerads.*. -# /footerad? (easylist.txt: 3825) -/(.*/)?footerad\? -# /footerad. (easylist.txt: 3824) -/(.*/)?footerad\. -footerad.*. -# /footer_ads. (easylist.txt: 3823) -/(.*/)?footer_ads\. -# /footer_ad_ (easylist.txt: 3822) -/(.*/)?footer_ad_ -# /footer_ad. (easylist.txt: 3821) -/(.*/)?footer_ad\. -# /footer-ads/* (easylist.txt: 3820) -/(.*/)?footer-ads/.* -# /footer-ad. (easylist.txt: 3819) -/(.*/)?footer-ad\. -footer-ad.*. -# /footer-ad- (easylist.txt: 3818) -/(.*/)?footer-ad- -footer-ad-*. -# /footad. (easylist.txt: 3817) -/(.*/)?footad\. -footad.*. -# /footad- (easylist.txt: 3816) -/(.*/)?footad- -footad-*. -# /fn_ads. (easylist.txt: 3815) -/(.*/)?fn_ads\. -# /flyers/ads/* (easylist.txt: 3814) -/(.*/)?flyers/ads/.* -# /flyads/* (easylist.txt: 3813) -/(.*/)?flyads/.* -# /flyad/* (easylist.txt: 3812) -/(.*/)?flyad/.* -# /flyad. (easylist.txt: 3811) -/(.*/)?flyad\. -flyad.*. -# /flvads/* (easylist.txt: 3810) -/(.*/)?flvads/.* -# /flvad_ (easylist.txt: 3809) -/(.*/)?flvad_ -# /flv-ad- (easylist.txt: 3808) -/(.*/)?flv-ad- -flv-ad-*. -# /floaty_rotator (easylist.txt: 3807) -/(.*/)?floaty_rotator -# /floatingads. (easylist.txt: 3806) -/(.*/)?floatingads\. -floatingads.*. -# /FloatingAd_ (easylist.txt: 3805) -/(.*/)?FloatingAd_ -# /floatingad. (easylist.txt: 3804) -/(.*/)?floatingad\. -floatingad.*. -# /floater_ad. (easylist.txt: 3803) -/(.*/)?floater_ad\. -# /floatadv. (easylist.txt: 3802) -/(.*/)?floatadv\. -floatadv.*. -# /floatads. (easylist.txt: 3801) -/(.*/)?floatads\. -floatads.*. -# /floatad_ (easylist.txt: 3800) -/(.*/)?floatad_ -# /float_ad. (easylist.txt: 3799) -/(.*/)?float_ad\. -# /float-ads/* (easylist.txt: 3798) -/(.*/)?float-ads/.* -# /flirt4free. (easylist.txt: 3797) -/(.*/)?flirt4free\. -flirt4free.*. -# /fliionosadcapture- (easylist.txt: 3796) -/(.*/)?fliionosadcapture- -fliionosadcapture-*. -# /flexads? (easylist.txt: 3795) -/(.*/)?flexads\? -# /fleshlightcash_ (easylist.txt: 3794) -/(.*/)?fleshlightcash_ -# /fleshlight. (easylist.txt: 3793) -/(.*/)?fleshlight\. -fleshlight.*. -# /flesh_banner (easylist.txt: 3792) -/(.*/)?flesh_banner -# /flatad. (easylist.txt: 3791) -/(.*/)?flatad\. -flatad.*. -# /flashpeelads/* (easylist.txt: 3790) -/(.*/)?flashpeelads/.* -# /flashads/* (easylist.txt: 3789) -/(.*/)?flashads/.* -# /flashads. (easylist.txt: 3788) -/(.*/)?flashads\. -flashads.*. -# /flashad3. (easylist.txt: 3787) -/(.*/)?flashad3\. -flashad3.*. -# /flashad. (easylist.txt: 3786) -/(.*/)?flashad\. -flashad.*. -# /flash_ads. (easylist.txt: 3785) -/(.*/)?flash_ads\. -# /flash/advertis (easylist.txt: 3784) -/(.*/)?flash/advertis -# /flash/ads/* (easylist.txt: 3783) -/(.*/)?flash/ads/.* -# /flash/ad_ (easylist.txt: 3782) -/(.*/)?flash/ad_ -# /flash/ad/* (easylist.txt: 3781) -/(.*/)?flash/ad/.* -# /flash-ads/* (easylist.txt: 3780) -/(.*/)?flash-ads/.* -# /flash-ads. (easylist.txt: 3779) -/(.*/)?flash-ads\. -flash-ads.*. -# /flag_ads. (easylist.txt: 3778) -/(.*/)?flag_ads\. -# /first-ad_ (easylist.txt: 3777) -/(.*/)?first-ad_ -# /finads. (easylist.txt: 3776) -/(.*/)?finads\. -finads.*. -# /fimserve. (easylist.txt: 3775) -/(.*/)?fimserve\. -fimserve.*. -# /filter.php?pro$script (easylist.txt: 3774) -/(.*/)?filter\.php\?pro -# /files/ads/* (easylist.txt: 3773) -/(.*/)?files/ads/.* -# /files/ads- (easylist.txt: 3772) -/(.*/)?files/ads- -# /files/ad/* (easylist.txt: 3771) -/(.*/)?files/ad/.* -# /files/ad- (easylist.txt: 3770) -/(.*/)?files/ad- -# /file/ad. (easylist.txt: 3769) -/(.*/)?file/ad\. -# /feedads. (easylist.txt: 3768) -/(.*/)?feedads\. -feedads.*. -# /featuredadshome. (easylist.txt: 3767) -/(.*/)?featuredadshome\. -featuredadshome.*. -# /fea_ads. (easylist.txt: 3766) -/(.*/)?fea_ads\. -# /fc_ads. (easylist.txt: 3765) -/(.*/)?fc_ads\. -# /fbads/* (easylist.txt: 3764) -/(.*/)?fbads/.* -# /fatads. (easylist.txt: 3763) -/(.*/)?fatads\. -fatads.*. -# /fastclick728. (easylist.txt: 3762) -/(.*/)?fastclick728\. -fastclick728.*. -# /fastclick160. (easylist.txt: 3761) -/(.*/)?fastclick160\. -fastclick160.*. -# /fan-ads.$script (easylist.txt: 3760) -/(.*/)?fan-ads\. -fan-ads.*. -# /facebooksex. (easylist.txt: 3759) -/(.*/)?facebooksex\. -facebooksex.*. -# /facebookaff2/* (easylist.txt: 3758) -/(.*/)?facebookaff2/.* -# /facebookaff/* (easylist.txt: 3757) -/(.*/)?facebookaff/.* -# /eyewondermanagement28. (easylist.txt: 3756) -/(.*/)?eyewondermanagement28\. -eyewondermanagement28.*. -# /eyewondermanagement. (easylist.txt: 3755) -/(.*/)?eyewondermanagement\. -eyewondermanagement.*. -# /externalhtmladrenderer. (easylist.txt: 3754) -/(.*/)?externalhtmladrenderer\. -externalhtmladrenderer.*. -# /externalads/* (easylist.txt: 3753) -/(.*/)?externalads/.* -# /ExternalAdNetworkViewlogLogServlet? (easylist.txt: 3752) -/(.*/)?ExternalAdNetworkViewlogLogServlet\? -# /externalad. (easylist.txt: 3751) -/(.*/)?externalad\. -externalad.*. -# /external_ads. (easylist.txt: 3750) -/(.*/)?external_ads\. -# /external/ads/* (easylist.txt: 3749) -/(.*/)?external/ads/.* -# /external/ad/* (easylist.txt: 3748) -/(.*/)?external/ad/.* -# /external/ad. (easylist.txt: 3747) -/(.*/)?external/ad\. -# /extendedadvert. (easylist.txt: 3746) -/(.*/)?extendedadvert\. -extendedadvert.*. -# /extadv/* (easylist.txt: 3745) -/(.*/)?extadv/.* -# /ext_ads. (easylist.txt: 3744) -/(.*/)?ext_ads\. -# /ext/ads/* (easylist.txt: 3743) -/(.*/)?ext/ads/.* -# /exports/tour_20/* (easylist.txt: 3742) -/(.*/)?exports/tour_20/.* -# /exports/tour/*$third-party (easylist.txt: 3741) -/(.*/)?exports/tour/.* -# /expop.js (easylist.txt: 3740) -/(.*/)?expop\.js -expop.js*. -# /expandy-ads. (easylist.txt: 3739) -/(.*/)?expandy-ads\. -expandy-ads.*. -# /expandingads. (easylist.txt: 3738) -/(.*/)?expandingads\. -expandingads.*. -# /expandable_ad? (easylist.txt: 3737) -/(.*/)?expandable_ad\? -# /expandable_ad.php (easylist.txt: 3736) -/(.*/)?expandable_ad\.php -# /exoclickright3. (easylist.txt: 3735) -/(.*/)?exoclickright3\. -exoclickright3.*. -# /exoclickright2. (easylist.txt: 3734) -/(.*/)?exoclickright2\. -exoclickright2.*. -# /exoclickright1. (easylist.txt: 3733) -/(.*/)?exoclickright1\. -exoclickright1.*. -# /exoclickright. (easylist.txt: 3732) -/(.*/)?exoclickright\. -exoclickright.*. -# /exoclick. (easylist.txt: 3731) -/(.*/)?exoclick\. -exoclick.*. -# /exobanner. (easylist.txt: 3730) -/(.*/)?exobanner\. -exobanner.*. -# /exo120x60. (easylist.txt: 3729) -/(.*/)?exo120x60\. -exo120x60.*. -# /exitsplash. (easylist.txt: 3728) -/(.*/)?exitsplash\. -exitsplash.*. -# /exitpopup. (easylist.txt: 3727) -/(.*/)?exitpopup\. -exitpopup.*. -# /exitpopunder_ (easylist.txt: 3726) -/(.*/)?exitpopunder_ -# /exitpopunder. (easylist.txt: 3725) -/(.*/)?exitpopunder\. -exitpopunder.*. -# /exitpop. (easylist.txt: 3724) -/(.*/)?exitpop\. -exitpop.*. -# /exit_popup (easylist.txt: 3723) -/(.*/)?exit_popup -# /exchange_banner_ (easylist.txt: 3722) -/(.*/)?exchange_banner_ -# /excellence/ads/* (easylist.txt: 3721) -/(.*/)?excellence/ads/.* -# /event.ng/* (easylist.txt: 3720) -/(.*/)?event\.ng/.* -event.ng/.* -# /euads/* (easylist.txt: 3719) -/(.*/)?euads/.* -# /esi/ads/* (easylist.txt: 3717) -/(.*/)?esi/ads/.* -# /eshopoffer. (easylist.txt: 3716) -/(.*/)?eshopoffer\. -eshopoffer.*. -# /eros.htm (easylist.txt: 3715) -/(.*/)?eros\.htm -eros.htm*. -# /erobanner. (easylist.txt: 3714) -/(.*/)?erobanner\. -erobanner.*. -# /eroadvertorial3. (easylist.txt: 3713) -/(.*/)?eroadvertorial3\. -eroadvertorial3.*. -# /eroadvertorial2. (easylist.txt: 3712) -/(.*/)?eroadvertorial2\. -eroadvertorial2.*. -# /eroadvertising. (easylist.txt: 3711) -/(.*/)?eroadvertising\. -eroadvertising.*. -# /eroads. (easylist.txt: 3710) -/(.*/)?eroads\. -eroads.*. -# /eroad2. (easylist.txt: 3709) -/(.*/)?eroad2\. -eroad2.*. -# /eroad.php (easylist.txt: 3708) -/(.*/)?eroad\.php -eroad.php*. -# /ero_line_ (easylist.txt: 3707) -/(.*/)?ero_line_ -# /ero_hosted_ (easylist.txt: 3706) -/(.*/)?ero_hosted_ -# /ero.htm (easylist.txt: 3705) -/(.*/)?ero\.htm -ero.htm*. -# /ero-advertising. (easylist.txt: 3704) -/(.*/)?ero-advertising\. -ero-advertising.*. -# /ero-ads_ (easylist.txt: 3703) -/(.*/)?ero-ads_ -# /ero-ads- (easylist.txt: 3702) -/(.*/)?ero-ads- -ero-ads-*. -# /ero-1. (easylist.txt: 3701) -/(.*/)?ero-1\. -ero-1.*. -# /ept_in.php? (easylist.txt: 3700) -/(.*/)?ept_in\.php\? -# /eporner-banner- (easylist.txt: 3699) -/(.*/)?eporner-banner- -eporner-banner-*. -# /eplanningv4. (easylist.txt: 3698) -/(.*/)?eplanningv4\. -eplanningv4.*. -# /eng/ads/* (easylist.txt: 3697) -/(.*/)?eng/ads/.* -# /en/ads/* (easylist.txt: 3696) -/(.*/)?en/ads/.* -# /ems/ads. (easylist.txt: 3695) -/(.*/)?ems/ads\. -# /EmreAds. (easylist.txt: 3694) -/(.*/)?EmreAds\. -EmreAds.*. -# /emediatead. (easylist.txt: 3693) -/(.*/)?emediatead\. -emediatead.*. -# /embed_ad. (easylist.txt: 3692) -/(.*/)?embed_ad\. -# /emailads/* (easylist.txt: 3691) -/(.*/)?emailads/.* -# /eht.js?site_ (easylist.txt: 3690) -/(.*/)?eht\.js\?site_ -# /editable/ads/* (easylist.txt: 3689) -/(.*/)?editable/ads/.* -# /ecom/magnet. (easylist.txt: 3688) -/(.*/)?ecom/magnet\. -# /eco_ads/* (easylist.txt: 3687) -/(.*/)?eco_ads/.* -# /ebayad. (easylist.txt: 3686) -/(.*/)?ebayad\. -ebayad.*. -# /ebay_ads/* (easylist.txt: 3685) -/(.*/)?ebay_ads/.* -# /easyazon- (easylist.txt: 3684) -/(.*/)?easyazon- -easyazon-*. -# /easyadstrack. (easylist.txt: 3683) -/(.*/)?easyadstrack\. -easyadstrack.*. -# /easyads/* (easylist.txt: 3682) -/(.*/)?easyads/.* -# /easyads. (easylist.txt: 3681) -/(.*/)?easyads\. -easyads.*. -# /eas_tag.1.0.js (easylist.txt: 3680) -/(.*/)?eas_tag\.1\.0\.js -# /eas_fif. (easylist.txt: 3679) -/(.*/)?eas_fif\. -# /eas?cu=*;ord= (easylist.txt: 3678) -/(.*/)?eas\?cu=.*;ord= -# /eas?cu=*;cre= (easylist.txt: 3677) -/(.*/)?eas\?cu=.*;cre= -# /eas?camp=*;cre= (easylist.txt: 3676) -/(.*/)?eas\?camp=.*;cre= -# /eas?*^easformat= (easylist.txt: 3675) -/(.*/)?eas\?.*[^\w%.-]easformat= -# /eas-fif.htm (easylist.txt: 3674) -/(.*/)?eas-fif\.htm -eas-fif.htm*. -# /e-vertising/* (easylist.txt: 3673) -/(.*/)?e-vertising/.* -# /e-advertising/* (easylist.txt: 3672) -/(.*/)?e-advertising/.* -# /dynbanner/flash/* (easylist.txt: 3671) -/(.*/)?dynbanner/flash/.* -# /dynanews/ad- (easylist.txt: 3670) -/(.*/)?dynanews/ad- -# /dynamicvideoad? (easylist.txt: 3669) -/(.*/)?dynamicvideoad\? -# /dynamiccsad? (easylist.txt: 3668) -/(.*/)?dynamiccsad\? -# /dynamicad? (easylist.txt: 3667) -/(.*/)?dynamicad\? -# /DynamicAd/* (easylist.txt: 3666) -/(.*/)?DynamicAd/.* -# /dynamic_ads/* (easylist.txt: 3665) -/(.*/)?dynamic_ads/.* -# /dynamic/ads/* (easylist.txt: 3664) -/(.*/)?dynamic/ads/.* -# /dynamic-ad- (easylist.txt: 3663) -/(.*/)?dynamic-ad- -dynamic-ad-*. -# /dyn_banners_ (easylist.txt: 3662) -/(.*/)?dyn_banners_ -# /dyn_banner. (easylist.txt: 3661) -/(.*/)?dyn_banner\. -# /dxd/ads/* (easylist.txt: 3660) -/(.*/)?dxd/ads/.* -# /dtmads/* (easylist.txt: 3659) -/(.*/)?dtmads/.* -# /dtim300x250.$script (easylist.txt: 3658) -/(.*/)?dtim300x250\. -dtim300x250.*. -# /dtiadvert125x125. (easylist.txt: 3657) -/(.*/)?dtiadvert125x125\. -dtiadvert125x125.*. -# /dspads. (easylist.txt: 3656) -/(.*/)?dspads\. -dspads.*. -# /dsg/bnn/* (easylist.txt: 3655) -/(.*/)?dsg/bnn/.* -# /dropdown_ad. (easylist.txt: 3654) -/(.*/)?dropdown_ad\. -# /droelf.kit/a/* (easylist.txt: 3653) -/(.*/)?droelf\.kit/a/.* -droelf.kit/a/.* -# /drivingrevenue/* (easylist.txt: 3652) -/(.*/)?drivingrevenue/.* -# /driveragentad2. (easylist.txt: 3651) -/(.*/)?driveragentad2\. -driveragentad2.*. -# /driveragentad1. (easylist.txt: 3650) -/(.*/)?driveragentad1\. -driveragentad1.*. -# /drawad. (easylist.txt: 3649) -/(.*/)?drawad\. -drawad.*. -# /download/ads (easylist.txt: 3648) -/(.*/)?download/ads -# /download/ad/* (easylist.txt: 3647) -/(.*/)?download/ad/.* -# /download/ad. (easylist.txt: 3646) -/(.*/)?download/ad\. -# /downads. (easylist.txt: 3645) -/(.*/)?downads\. -downads.*. -# /doublepimp2.js (easylist.txt: 3644) -/(.*/)?doublepimp2\.js -doublepimp2.js*. -# /doubleclicktag. (easylist.txt: 3643) -/(.*/)?doubleclicktag\. -doubleclicktag.*. -# /doubleclickplugin. (easylist.txt: 3642) -/(.*/)?doubleclickplugin\. -doubleclickplugin.*. -# /doubleclickloader. (easylist.txt: 3641) -/(.*/)?doubleclickloader\. -doubleclickloader.*. -# /doubleclickinstreamad. (easylist.txt: 3640) -/(.*/)?doubleclickinstreamad\. -doubleclickinstreamad.*. -# /doubleclickcontainer. (easylist.txt: 3639) -/(.*/)?doubleclickcontainer\. -doubleclickcontainer.*. -# /doubleclickbannerad? (easylist.txt: 3638) -/(.*/)?doubleclickbannerad\? -# /doubleclickads? (easylist.txt: 3637) -/(.*/)?doubleclickads\? -# /doubleclickads/* (easylist.txt: 3636) -/(.*/)?doubleclickads/.* -# /doubleclickad. (easylist.txt: 3635) -/(.*/)?doubleclickad\. -doubleclickad.*. -# /doubleclick_ads/* (easylist.txt: 3634) -/(.*/)?doubleclick_ads/.* -# /doubleclick_ads. (easylist.txt: 3633) -/(.*/)?doubleclick_ads\. -# /doubleclick/iframe. (easylist.txt: 3632) -/(.*/)?doubleclick/iframe\. -# /doubleclick.swf (easylist.txt: 3631) -/(.*/)?doubleclick\.swf -doubleclick.swf*. -# /doubleclick.php (easylist.txt: 3630) -/(.*/)?doubleclick\.php -doubleclick.php*. -# /doubleclick.js (easylist.txt: 3629) -/(.*/)?doubleclick\.js -doubleclick.js*. -# /doubleclick.aspx (easylist.txt: 3628) -/(.*/)?doubleclick\.aspx -doubleclick.aspx*. -# /doors/ads/* (easylist.txt: 3627) -/(.*/)?doors/ads/.* -# /door/ads/* (easylist.txt: 3626) -/(.*/)?door/ads/.* -# /domainads/* (easylist.txt: 3625) -/(.*/)?domainads/.* -# /dnsads. (easylist.txt: 3624) -/(.*/)?dnsads\. -dnsads.*. -# /dns_ad/* (easylist.txt: 3623) -/(.*/)?dns_ad/.* -# /dne_ad. (easylist.txt: 3622) -/(.*/)?dne_ad\. -# /dmn-advert. (easylist.txt: 3621) -/(.*/)?dmn-advert\. -dmn-advert.*. -# /dlfeatads. (easylist.txt: 3620) -/(.*/)?dlfeatads\. -dlfeatads.*. -# /divad/* (easylist.txt: 3619) -/(.*/)?divad/.* -# /div-ads. (easylist.txt: 3618) -/(.*/)?div-ads\. -div-ads.*. -# /displaybanner/* (easylist.txt: 3617) -/(.*/)?displaybanner/.* -# /displayadsiframe. (easylist.txt: 3616) -/(.*/)?displayadsiframe\. -displayadsiframe.*. -# /displayads3. (easylist.txt: 3615) -/(.*/)?displayads3\. -displayads3.*. -# /displayads2. (easylist.txt: 3614) -/(.*/)?displayads2\. -displayads2.*. -# /displayads1. (easylist.txt: 3613) -/(.*/)?displayads1\. -displayads1.*. -# /displayads/* (easylist.txt: 3612) -/(.*/)?displayads/.* -# /displayads. (easylist.txt: 3611) -/(.*/)?displayads\. -displayads.*. -# /displayadleader. (easylist.txt: 3610) -/(.*/)?displayadleader\. -displayadleader.*. -# /displayadiframe. (easylist.txt: 3609) -/(.*/)?displayadiframe\. -displayadiframe.*. -# /displayadbanner_ (easylist.txt: 3608) -/(.*/)?displayadbanner_ -# /displayad? (easylist.txt: 3607) -/(.*/)?displayad\? -# /displayad/* (easylist.txt: 3606) -/(.*/)?displayad/.* -# /displayad. (easylist.txt: 3605) -/(.*/)?displayad\. -displayad.*. -# /display_ad (easylist.txt: 3604) -/(.*/)?display_ad -# /display?ad_ (easylist.txt: 3603) -/(.*/)?display\?ad_ -# /display.ad. (easylist.txt: 3602) -/(.*/)?display\.ad\. -display.ad.*. -# /display-ads/* (easylist.txt: 3601) -/(.*/)?display-ads/.* -# /display-ads- (easylist.txt: 3600) -/(.*/)?display-ads- -display-ads-*. -# /display-ad/* (easylist.txt: 3599) -/(.*/)?display-ad/.* -# /DispAd_ (easylist.txt: 3598) -/(.*/)?DispAd_ -# /discuss_ad/* (easylist.txt: 3597) -/(.*/)?discuss_ad/.* -# /directrev. (easylist.txt: 3596) -/(.*/)?directrev\. -directrev.*. -# /directadvert. (easylist.txt: 3595) -/(.*/)?directadvert\. -directadvert.*. -# /directads. (easylist.txt: 3594) -/(.*/)?directads\. -directads.*. -# /direct_ads. (easylist.txt: 3593) -/(.*/)?direct_ads\. -# /dinclinx.com/* (easylist.txt: 3592) -/(.*/)?dinclinx\.com/.* -dinclinx.com/.* -# /digg_ads_ (easylist.txt: 3591) -/(.*/)?digg_ads_ -# /digg_ads. (easylist.txt: 3590) -/(.*/)?digg_ads\. -# /digest/ads. (easylist.txt: 3589) -/(.*/)?digest/ads\. -# /dig_ad. (easylist.txt: 3588) -/(.*/)?dig_ad\. -# /dif/?cid (easylist.txt: 3587) -/(.*/)?dif/\?cid -# /dictionary/ads/* (easylist.txt: 3586) -/(.*/)?dictionary/ads/.* -# /dfpsearchads. (easylist.txt: 3585) -/(.*/)?dfpsearchads\. -dfpsearchads.*. -# /dfpsds. (easylist.txt: 3584) -/(.*/)?dfpsds\. -dfpsds.*. -# /dfpads. (easylist.txt: 3583) -/(.*/)?dfpads\. -dfpads.*. -# /dfp_delivery.js (easylist.txt: 3582) -/(.*/)?dfp_delivery\.js -# /dfp_ads/* (easylist.txt: 3581) -/(.*/)?dfp_ads/.* -# /dfp/jquery. (easylist.txt: 3580) -/(.*/)?dfp/jquery\. -# /dfp/head/* (easylist.txt: 3579) -/(.*/)?dfp/head/.* -# /dfp/dc.js (easylist.txt: 3578) -/(.*/)?dfp/dc\.js -# /dfp/blocks/* (easylist.txt: 3577) -/(.*/)?dfp/blocks/.* -# /dfp/async. (easylist.txt: 3576) -/(.*/)?dfp/async\. -# /dfp.js (easylist.txt: 3575) -/(.*/)?dfp\.js -dfp.js*. -# /dfp-custom/* (easylist.txt: 3574) -/(.*/)?dfp-custom/.* -# /devicead/* (easylist.txt: 3573) -/(.*/)?devicead/.* -# /develop/ads_ (easylist.txt: 3572) -/(.*/)?develop/ads_ -# /design/ads/* (easylist.txt: 3571) -/(.*/)?design/ads/.* -# /descpopup.js (easylist.txt: 3570) -/(.*/)?descpopup\.js -descpopup.js*. -# /DemoAd. (easylist.txt: 3569) -/(.*/)?DemoAd\. -DemoAd.*. -# /demo/ads/* (easylist.txt: 3568) -/(.*/)?demo/ads/.* -# /delivery_ads/* (easylist.txt: 3567) -/(.*/)?delivery_ads/.* -# /delivery/vbafr.php (easylist.txt: 3566) -/(.*/)?delivery/vbafr\.php -# /delivery/spc. (easylist.txt: 3565) -/(.*/)?delivery/spc\. -# /delivery/lg. (easylist.txt: 3564) -/(.*/)?delivery/lg\. -# /delivery/fl. (easylist.txt: 3563) -/(.*/)?delivery/fl\. -# /delivery/fc. (easylist.txt: 3562) -/(.*/)?delivery/fc\. -# /delivery/avw. (easylist.txt: 3561) -/(.*/)?delivery/avw\. -# /delivery/apu.php (easylist.txt: 3560) -/(.*/)?delivery/apu\.php -# /delivery/al.php (easylist.txt: 3559) -/(.*/)?delivery/al\.php -# /delivery/ag. (easylist.txt: 3558) -/(.*/)?delivery/ag\. -# /delivery/afr. (easylist.txt: 3557) -/(.*/)?delivery/afr\. -# /delivery/*?advplaces= (easylist.txt: 3556) -/(.*/)?delivery/.*\?advplaces= -# /delivery.php?rnd= (easylist.txt: 3555) -/(.*/)?delivery\.php\?rnd= -# /delivery.php?pool_id= (easylist.txt: 3554) -/(.*/)?delivery\.php\?pool_id= -# /delivery.ads. (easylist.txt: 3553) -/(.*/)?delivery\.ads\. -delivery.ads.*. -# /deliversds. (easylist.txt: 3552) -/(.*/)?deliversds\. -deliversds.*. -# /deliversd/* (easylist.txt: 3551) -/(.*/)?deliversd/.* -# /deliverjs.nmi? (easylist.txt: 3550) -/(.*/)?deliverjs\.nmi\? -# /deliverads. (easylist.txt: 3549) -/(.*/)?deliverads\. -deliverads.*. -# /deliverad/* (easylist.txt: 3548) -/(.*/)?deliverad/.* -# /deliver.nmi? (easylist.txt: 3547) -/(.*/)?deliver\.nmi\? -# /deliver.jphp? (easylist.txt: 3546) -/(.*/)?deliver\.jphp\? -# /delayedad. (easylist.txt: 3545) -/(.*/)?delayedad\. -delayedad.*. -# /defersds. (easylist.txt: 3544) -/(.*/)?defersds\. -defersds.*. -# /deferads. (easylist.txt: 3543) -/(.*/)?deferads\. -deferads.*. -# /defer_ads. (easylist.txt: 3542) -/(.*/)?defer_ads\. -# /defaults_ads/* (easylist.txt: 3541) -/(.*/)?defaults_ads/.* -# /defaultad? (easylist.txt: 3540) -/(.*/)?defaultad\? -# /default_oas. (easylist.txt: 3539) -/(.*/)?default_oas\. -# /default_adv. (easylist.txt: 3538) -/(.*/)?default_adv\. -# /default_ads/* (easylist.txt: 3537) -/(.*/)?default_ads/.* -# /default/ads/* (easylist.txt: 3536) -/(.*/)?default/ads/.* -# /default-adv/* (easylist.txt: 3535) -/(.*/)?default-adv/.* -# /de/ads/* (easylist.txt: 3534) -/(.*/)?de/ads/.* -# /ddlads/* (easylist.txt: 3533) -/(.*/)?ddlads/.* -# /dcloadads/* (easylist.txt: 3532) -/(.*/)?dcloadads/.* -# /dclk_ads_ (easylist.txt: 3531) -/(.*/)?dclk_ads_ -# /dclk_ads. (easylist.txt: 3530) -/(.*/)?dclk_ads\. -# /dclk/dfp/* (easylist.txt: 3529) -/(.*/)?dclk/dfp/.* -# /dblclickad. (easylist.txt: 3528) -/(.*/)?dblclickad\. -dblclickad.*. -# /dblclick. (easylist.txt: 3527) -/(.*/)?dblclick\. -dblclick.*. -# /dateads. (easylist.txt: 3526) -/(.*/)?dateads\. -dateads.*. -# /data/init?site_id= (easylist.txt: 3525) -/(.*/)?data/init\?site_id= -# /data/init2?site_id= (easylist.txt: 3524) -/(.*/)?data/init2\?site_id= -# /data/ads/* (easylist.txt: 3523) -/(.*/)?data/ads/.* -# /dartfunctions. (easylist.txt: 3522) -/(.*/)?dartfunctions\. -dartfunctions.*. -# /dartcall. (easylist.txt: 3521) -/(.*/)?dartcall\. -dartcall.*. -# /dartads. (easylist.txt: 3520) -/(.*/)?dartads\. -dartads.*. -# /dartadengine2. (easylist.txt: 3519) -/(.*/)?dartadengine2\. -dartadengine2.*. -# /dartadengine. (easylist.txt: 3518) -/(.*/)?dartadengine\. -dartadengine.*. -# /dartad/* (easylist.txt: 3517) -/(.*/)?dartad/.* -# /dart_enhancements/* (easylist.txt: 3516) -/(.*/)?dart_enhancements/.* -# /dart_ads/* (easylist.txt: 3515) -/(.*/)?dart_ads/.* -# /dart_ads. (easylist.txt: 3514) -/(.*/)?dart_ads\. -# /daily/ads/* (easylist.txt: 3513) -/(.*/)?daily/ads/.* -# /d/ads/* (easylist.txt: 3512) -/(.*/)?d/ads/.* -# /cwggoogleadshow. (easylist.txt: 3511) -/(.*/)?cwggoogleadshow\. -cwggoogleadshow.*. -# /cvs/ads/* (easylist.txt: 3510) -/(.*/)?cvs/ads/.* -# /cutead. (easylist.txt: 3509) -/(.*/)?cutead\. -cutead.*. -# /customerad_ (easylist.txt: 3508) -/(.*/)?customerad_ -# /customcontrols/ads/* (easylist.txt: 3507) -/(.*/)?customcontrols/ads/.* -# /customadsense. (easylist.txt: 3506) -/(.*/)?customadsense\. -customadsense.*. -# /customads/* (easylist.txt: 3505) -/(.*/)?customads/.* -# /customadmode. (easylist.txt: 3504) -/(.*/)?customadmode\. -customadmode.*. -# /customad. (easylist.txt: 3503) -/(.*/)?customad\. -customad.*. -# /custom_ads/* (easylist.txt: 3502) -/(.*/)?custom_ads/.* -# /custom11x5ad. (easylist.txt: 3501) -/(.*/)?custom11x5ad\. -custom11x5ad.*. -# /custom/doubleclick/* (easylist.txt: 3500) -/(.*/)?custom/doubleclick/.* -# /custom/ads (easylist.txt: 3499) -/(.*/)?custom/ads -# /custads/* (easylist.txt: 3498) -/(.*/)?custads/.* -# /curveball/ads/* (easylist.txt: 3497) -/(.*/)?curveball/ads/.* -# /curlad. (easylist.txt: 3496) -/(.*/)?curlad\. -curlad.*. -# /cubeads_ (easylist.txt: 3495) -/(.*/)?cubeads_ -# /cubeads/* (easylist.txt: 3494) -/(.*/)?cubeads/.* -# /cubead. (easylist.txt: 3493) -/(.*/)?cubead\. -cubead.*. -# /cube_ads/* (easylist.txt: 3492) -/(.*/)?cube_ads/.* -# /ctamlive160x160. (easylist.txt: 3491) -/(.*/)?ctamlive160x160\. -ctamlive160x160.*. -# /cssjs/ads/* (easylist.txt: 3490) -/(.*/)?cssjs/ads/.* -# /css/adv. (easylist.txt: 3489) -/(.*/)?css/adv\. -# /css/adsense (easylist.txt: 3488) -/(.*/)?css/adsense -# /css/ads. (easylist.txt: 3487) -/(.*/)?css/ads\. -# /css/ads- (easylist.txt: 3486) -/(.*/)?css/ads- -# /css/ad. (easylist.txt: 3485) -/(.*/)?css/ad\. -# /csp/ads? (easylist.txt: 3484) -/(.*/)?csp/ads\? -# /crossoverad- (easylist.txt: 3483) -/(.*/)?crossoverad- -crossoverad-*. -# /cramitin/ads_ (easylist.txt: 3482) -/(.*/)?cramitin/ads_ -# /cpxads. (easylist.txt: 3481) -/(.*/)?cpxads\. -cpxads.*. -# /cpx_ads. (easylist.txt: 3480) -/(.*/)?cpx_ads\. -# /cpx-ad. (easylist.txt: 3479) -/(.*/)?cpx-ad\. -cpx-ad.*. -# /cpmrect. (easylist.txt: 3478) -/(.*/)?cpmrect\. -cpmrect.*. -# /cpmcampaigns/* (easylist.txt: 3477) -/(.*/)?cpmcampaigns/.* -# /cpmbanner. (easylist.txt: 3476) -/(.*/)?cpmbanner\. -cpmbanner.*. -# /cpm_ad. (easylist.txt: 3475) -/(.*/)?cpm_ad\. -# /cpm728. (easylist.txt: 3474) -/(.*/)?cpm728\. -cpm728.*. -# /cpm160. (easylist.txt: 3473) -/(.*/)?cpm160\. -cpm160.*. -# /coxads/* (easylist.txt: 3472) -/(.*/)?coxads/.* -# /country_ad. (easylist.txt: 3471) -/(.*/)?country_ad\. -# /cornersmall.swf (easylist.txt: 3470) -/(.*/)?cornersmall\.swf -cornersmall.swf*. -# /cornerbig.swf (easylist.txt: 3469) -/(.*/)?cornerbig\.swf -cornerbig.swf*. -# /corner_ads/* (easylist.txt: 3468) -/(.*/)?corner_ads/.* -# /corner-ad. (easylist.txt: 3467) -/(.*/)?corner-ad\. -corner-ad.*. -# /coread/* (easylist.txt: 3466) -/(.*/)?coread/.* -# /core/ads/* (easylist.txt: 3465) -/(.*/)?core/ads/.* -# /core/ad/* (easylist.txt: 3464) -/(.*/)?core/ad/.* -# /core-ads- (easylist.txt: 3463) -/(.*/)?core-ads- -core-ads-*. -# /convertjsontoad. (easylist.txt: 3462) -/(.*/)?convertjsontoad\. -convertjsontoad.*. -# /controllerimg/adv/* (easylist.txt: 3461) -/(.*/)?controllerimg/adv/.* -# /controller/ads/* (easylist.txt: 3460) -/(.*/)?controller/ads/.* -# /contribute_ad. (easylist.txt: 3459) -/(.*/)?contribute_ad\. -# /contpop.js| (easylist.txt: 3458) -/(.*/)?contpop\.js$ -contpop.js -# /contextualad. (easylist.txt: 3457) -/(.*/)?contextualad\. -contextualad.*. -# /contextads. (easylist.txt: 3456) -/(.*/)?contextads\. -contextads.*. -# /contextad. (easylist.txt: 3455) -/(.*/)?contextad\. -contextad.*. -# /context_ads. (easylist.txt: 3454) -/(.*/)?context_ads\. -# /context_ad/* (easylist.txt: 3453) -/(.*/)?context_ad/.* -# /contentad| (easylist.txt: 3452) -/(.*/)?contentad$ -# /contentadxxl. (easylist.txt: 3451) -/(.*/)?contentadxxl\. -contentadxxl.*. -# /contentadvert1. (easylist.txt: 3450) -/(.*/)?contentadvert1\. -contentadvert1.*. -# /contentAdServlet? (easylist.txt: 3449) -/(.*/)?contentAdServlet\? -# /contentad_ (easylist.txt: 3448) -/(.*/)?contentad_ -# /contentad/* (easylist.txt: 3447) -/(.*/)?contentad/.* -# /contentAd. (easylist.txt: 3446) -/(.*/)?contentAd\. -contentAd.*. -# /content_ad_ (easylist.txt: 3445) -/(.*/)?content_ad_ -# /content_ad. (easylist.txt: 3444) -/(.*/)?content_ad\. -# /content/adv/* (easylist.txt: 3443) -/(.*/)?content/adv/.* -# /content/ads/* (easylist.txt: 3442) -/(.*/)?content/ads/.* -# /content/ad_ (easylist.txt: 3441) -/(.*/)?content/ad_ -# /content/ad/* (easylist.txt: 3440) -/(.*/)?content/ad/.* -# /content-ads. (easylist.txt: 3439) -/(.*/)?content-ads\. -content-ads.*. -# /contaxe_ (easylist.txt: 3438) -/(.*/)?contaxe_ -# /contads. (easylist.txt: 3437) -/(.*/)?contads\. -contads.*. -# /cont-adv. (easylist.txt: 3436) -/(.*/)?cont-adv\. -cont-adv.*. -# /configspace/ads/* (easylist.txt: 3435) -/(.*/)?configspace/ads/.* -# /conad_ (easylist.txt: 3434) -/(.*/)?conad_ -# /conad. (easylist.txt: 3433) -/(.*/)?conad\. -conad.*. -# /components/ads_ (easylist.txt: 3432) -/(.*/)?components/ads_ -# /components/ads/* (easylist.txt: 3431) -/(.*/)?components/ads/.* -# /compban.html? (easylist.txt: 3430) -/(.*/)?compban\.html\? -# /companionAdFunc. (easylist.txt: 3429) -/(.*/)?companionAdFunc\. -companionAdFunc.*. -# /companion_ads. (easylist.txt: 3428) -/(.*/)?companion_ads\. -# /companion_ad. (easylist.txt: 3427) -/(.*/)?companion_ad\. -# /commspace_ad. (easylist.txt: 3426) -/(.*/)?commspace_ad\. -# /commons/ad/* (easylist.txt: 3425) -/(.*/)?commons/ad/.* -# /common_ad. (easylist.txt: 3424) -/(.*/)?common_ad\. -# /common/results.htm?block=*[colorAdSeparator]$subdocument,~third-party (easylist.txt: 3423) -/(.*/)?common/results\.htm\?block=.*\[colorAdSeparator\] -# /common/dart_wrapper_ (easylist.txt: 3422) -/(.*/)?common/dart_wrapper_ -# /common/adv_ (easylist.txt: 3421) -/(.*/)?common/adv_ -# /common/ads/* (easylist.txt: 3420) -/(.*/)?common/ads/.* -# /common/ad_ (easylist.txt: 3419) -/(.*/)?common/ad_ -# /common/ad/* (easylist.txt: 3418) -/(.*/)?common/ad/.* -# /common/ad. (easylist.txt: 3417) -/(.*/)?common/ad\. -# /common-ads/* (easylist.txt: 3416) -/(.*/)?common-ads/.* -# /commercial_top. (easylist.txt: 3415) -/(.*/)?commercial_top\. -# /commercial_horizontal. (easylist.txt: 3414) -/(.*/)?commercial_horizontal\. -# /comment-ad. (easylist.txt: 3413) -/(.*/)?comment-ad\. -comment-ad.*. -# /comment-ad- (easylist.txt: 3412) -/(.*/)?comment-ad- -comment-ad-*. -# /combo?darla/* (easylist.txt: 3411) -/(.*/)?combo\?darla/.* -# /com/ads/* (easylist.txt: 3410) -/(.*/)?com/ads/.* -# /columnads/* (easylist.txt: 3409) -/(.*/)?columnads/.* -# /columnadcounter. (easylist.txt: 3408) -/(.*/)?columnadcounter\. -columnadcounter.*. -# /colorscheme/ads/* (easylist.txt: 3407) -/(.*/)?colorscheme/ads/.* -# /collisionadmarker. (easylist.txt: 3406) -/(.*/)?collisionadmarker\. -collisionadmarker.*. -# /coldseal_ad. (easylist.txt: 3405) -/(.*/)?coldseal_ad\. -# /codaadconfig. (easylist.txt: 3404) -/(.*/)?codaadconfig\. -codaadconfig.*. -# /cnxad- (easylist.txt: 3403) -/(.*/)?cnxad- -cnxad-*. -# /cnnslads. (easylist.txt: 3402) -/(.*/)?cnnslads\. -cnnslads.*. -# /cnads.js (easylist.txt: 3401) -/(.*/)?cnads\.js -cnads.js*. -# /cn-advert. (easylist.txt: 3400) -/(.*/)?cn-advert\. -cn-advert.*. -# /cms/js/ad_ (easylist.txt: 3399) -/(.*/)?cms/js/ad_ -# /cms/ads/* (easylist.txt: 3398) -/(.*/)?cms/ads/.* -# /cm/ads/* (easylist.txt: 3397) -/(.*/)?cm/ads/.* -# /clkads. (easylist.txt: 3396) -/(.*/)?clkads\. -clkads.*. -# /clients/ads/* (easylist.txt: 3395) -/(.*/)?clients/ads/.* -# /clickunder. (easylist.txt: 3394) -/(.*/)?clickunder\. -clickunder.*. -# /clicksor. (easylist.txt: 3393) -/(.*/)?clicksor\. -clicksor.*. -# /clickboothad. (easylist.txt: 3392) -/(.*/)?clickboothad\. -clickboothad.*. -# /click/creative/* (easylist.txt: 3391) -/(.*/)?click/creative/.* -# /click/ads_ (easylist.txt: 3390) -/(.*/)?click/ads_ -# /classifieds/banners/* (easylist.txt: 3389) -/(.*/)?classifieds/banners/.* -# /ClassAds/* (easylist.txt: 3388) -/(.*/)?ClassAds/.* -# /clarityray.js (easylist.txt: 3387) -/(.*/)?clarityray\.js -clarityray.js*. -# /ck.php?nids (easylist.txt: 3386) -/(.*/)?ck\.php\?nids -# /cjadsprite. (easylist.txt: 3385) -/(.*/)?cjadsprite\. -cjadsprite.*. -# /circads. (easylist.txt: 3384) -/(.*/)?circads\. -circads.*. -# /ciaad. (easylist.txt: 3383) -/(.*/)?ciaad\. -ciaad.*. -# /chrome-ad. (easylist.txt: 3382) -/(.*/)?chrome-ad\. -chrome-ad.*. -# /chitika-ad? (easylist.txt: 3381) -/(.*/)?chitika-ad\? -# /chinaadclient. (easylist.txt: 3380) -/(.*/)?chinaadclient\. -chinaadclient.*. -# /checkm8header_ (easylist.txt: 3379) -/(.*/)?checkm8header_ -# /checkm8footer_ (easylist.txt: 3378) -/(.*/)?checkm8footer_ -# /channelblockads. (easylist.txt: 3377) -/(.*/)?channelblockads\. -channelblockads.*. -# /cgi/ad_ (easylist.txt: 3376) -/(.*/)?cgi/ad_ -# /cgi-exe/ad. (easylist.txt: 3375) -/(.*/)?cgi-exe/ad\. -# /cgi-bin/ads_ (easylist.txt: 3374) -/(.*/)?cgi-bin/ads_ -# /cgi-bin/ads/* (easylist.txt: 3373) -/(.*/)?cgi-bin/ads/.* -# /cgi-bin/ads. (easylist.txt: 3372) -/(.*/)?cgi-bin/ads\. -# /cgi-bin/ad/* (easylist.txt: 3371) -/(.*/)?cgi-bin/ad/.* -# /ceoads/* (easylist.txt: 3370) -/(.*/)?ceoads/.* -# /centralresource/ad_ (easylist.txt: 3369) -/(.*/)?centralresource/ad_ -# /central/ads/* (easylist.txt: 3368) -/(.*/)?central/ads/.* -# /centerads. (easylist.txt: 3367) -/(.*/)?centerads\. -centerads.*. -# /cdn.ads. (easylist.txt: 3366) -/(.*/)?cdn\.ads\. -cdn.ads.*. -# /cci-ads- (easylist.txt: 3365) -/(.*/)?cci-ads- -cci-ads-*. -# /cb.php?sub$script,third-party (easylist.txt: 3364) -/(.*/)?cb\.php\?sub -# /catfishads/* (easylist.txt: 3363) -/(.*/)?catfishads/.* -# /category-sponsorship/* (easylist.txt: 3362) -/(.*/)?category-sponsorship/.* -# /cashad2. (easylist.txt: 3361) -/(.*/)?cashad2\. -cashad2.*. -# /cashad. (easylist.txt: 3360) -/(.*/)?cashad\. -cashad.*. -# /carsadtaggenerator.js (easylist.txt: 3359) -/(.*/)?carsadtaggenerator\.js -carsadtaggenerator.js*. -# /carbonads/* (easylist.txt: 3358) -/(.*/)?carbonads/.* -# /carbonads- (easylist.txt: 3357) -/(.*/)?carbonads- -carbonads-*. -# /campus/ads/* (easylist.txt: 3356) -/(.*/)?campus/ads/.* -# /campaign/advertiser_ (easylist.txt: 3355) -/(.*/)?campaign/advertiser_ -# /camfuzeads/* (easylist.txt: 3354) -/(.*/)?camfuzeads/.* -# /camaoAdsenseHomepage. (easylist.txt: 3353) -/(.*/)?camaoAdsenseHomepage\. -camaoAdsenseHomepage.*. -# /camaoadsense. (easylist.txt: 3352) -/(.*/)?camaoadsense\. -camaoadsense.*. -# /callAdserver? (easylist.txt: 3351) -/(.*/)?callAdserver\? -# /callads5. (easylist.txt: 3350) -/(.*/)?callads5\. -callads5.*. -# /call_ads/* (easylist.txt: 3349) -/(.*/)?call_ads/.* -# /call/pubj/* (easylist.txt: 3348) -/(.*/)?call/pubj/.* -# /call/pubif/* (easylist.txt: 3347) -/(.*/)?call/pubif/.* -# /calendar-ads/* (easylist.txt: 3346) -/(.*/)?calendar-ads/.* -# /cads-min.js (easylist.txt: 3345) -/(.*/)?cads-min\.js -cads-min.js*. -# /cache/ads_ (easylist.txt: 3344) -/(.*/)?cache/ads_ -# /bytemark_ad. (easylist.txt: 3343) -/(.*/)?bytemark_ad\. -# /buzz/ads/* (easylist.txt: 3342) -/(.*/)?buzz/ads/.* -# /buysellads. (easylist.txt: 3341) -/(.*/)?buysellads\. -buysellads.*. -# /buysellads- (easylist.txt: 3340) -/(.*/)?buysellads- -buysellads-*. -# /buyer/dyad/* (easylist.txt: 3339) -/(.*/)?buyer/dyad/.* -# /buyclicks/* (easylist.txt: 3338) -/(.*/)?buyclicks/.* -# /buyad. (easylist.txt: 3337) -/(.*/)?buyad\. -buyad.*. -# /buttonads/* (easylist.txt: 3336) -/(.*/)?buttonads/.* -# /buttonads. (easylist.txt: 3335) -/(.*/)?buttonads\. -buttonads.*. -# /buttonad/* (easylist.txt: 3334) -/(.*/)?buttonad/.* -# /button_ads/* (easylist.txt: 3333) -/(.*/)?button_ads/.* -# /butler.php?type= (easylist.txt: 3332) -/(.*/)?butler\.php\?type= -# /burt/adv_ (easylist.txt: 3331) -/(.*/)?burt/adv_ -# /buddyw_ad. (easylist.txt: 3330) -/(.*/)?buddyw_ad\. -# /bucketads. (easylist.txt: 3329) -/(.*/)?bucketads\. -bucketads.*. -# /btn_ad_ (easylist.txt: 3328) -/(.*/)?btn_ad_ -# /btmadsx. (easylist.txt: 3327) -/(.*/)?btmadsx\. -btmadsx.*. -# /btmads. (easylist.txt: 3326) -/(.*/)?btmads\. -btmads.*. -# /btbuckets/btb.js (easylist.txt: 3325) -/(.*/)?btbuckets/btb\.js -# /bserver/* (easylist.txt: 3324) -/(.*/)?bserver/.* -# /brightcovead. (easylist.txt: 3323) -/(.*/)?brightcovead\. -brightcovead.*. -# /breakad_ (easylist.txt: 3322) -/(.*/)?breakad_ -# /boxad_ (easylist.txt: 3321) -/(.*/)?boxad_ -# /boxad3. (easylist.txt: 3320) -/(.*/)?boxad3\. -boxad3.*. -# /boxad2. (easylist.txt: 3319) -/(.*/)?boxad2\. -boxad2.*. -# /boxad1. (easylist.txt: 3318) -/(.*/)?boxad1\. -boxad1.*. -# /boxad. (easylist.txt: 3317) -/(.*/)?boxad\. -boxad.*. -# /box_ads_ (easylist.txt: 3316) -/(.*/)?box_ads_ -# /box_ad_ (easylist.txt: 3315) -/(.*/)?box_ad_ -# /bottomsidead/* (easylist.txt: 3314) -/(.*/)?bottomsidead/.* -# /bottomads. (easylist.txt: 3313) -/(.*/)?bottomads\. -bottomads.*. -# /bottomad/* (easylist.txt: 3312) -/(.*/)?bottomad/.* -# /bottomad. (easylist.txt: 3311) -/(.*/)?bottomad\. -bottomad.*. -# /bottom_adv_ (easylist.txt: 3310) -/(.*/)?bottom_adv_ -# /bottom_adv. (easylist.txt: 3309) -/(.*/)?bottom_adv\. -# /bottom_ads. (easylist.txt: 3308) -/(.*/)?bottom_ads\. -# /bottom_ad. (easylist.txt: 3307) -/(.*/)?bottom_ad\. -# /bottom-advert- (easylist.txt: 3306) -/(.*/)?bottom-advert- -bottom-advert-*. -# /bottom-ads. (easylist.txt: 3305) -/(.*/)?bottom-ads\. -bottom-ads.*. -# /bottom-ad- (easylist.txt: 3304) -/(.*/)?bottom-ad- -bottom-ad-*. -# /boomad. (easylist.txt: 3303) -/(.*/)?boomad\. -boomad.*. -# /bookads2. (easylist.txt: 3302) -/(.*/)?bookads2\. -bookads2.*. -# /bookads. (easylist.txt: 3301) -/(.*/)?bookads\. -bookads.*. -# /bookad/* (easylist.txt: 3300) -/(.*/)?bookad/.* -# /BOM/Ads/* (easylist.txt: 3299) -/(.*/)?BOM/Ads/.* -# /bodyads/* (easylist.txt: 3298) -/(.*/)?bodyads/.* -# /bnrsrv. (easylist.txt: 3297) -/(.*/)?bnrsrv\. -bnrsrv.*. -# /bnrimg. (easylist.txt: 3296) -/(.*/)?bnrimg\. -bnrimg.*. -# /bnrad/* (easylist.txt: 3295) -/(.*/)?bnrad/.* -# /bnr_show.php?id=$script (easylist.txt: 3294) -/(.*/)?bnr_show\.php\?id= -# /bnr.php? (easylist.txt: 3293) -/(.*/)?bnr\.php\? -# /bmndoubleclickad. (easylist.txt: 3292) -/(.*/)?bmndoubleclickad\. -bmndoubleclickad.*. -# /blogoas- (easylist.txt: 3291) -/(.*/)?blogoas- -blogoas-*. -# /bloggerex. (easylist.txt: 3290) -/(.*/)?bloggerex\. -bloggerex.*. -# /blogadsbg. (easylist.txt: 3289) -/(.*/)?blogadsbg\. -blogadsbg.*. -# /blogads_ (easylist.txt: 3288) -/(.*/)?blogads_ -# /blogads3/* (easylist.txt: 3287) -/(.*/)?blogads3/.* -# /blogads2_ (easylist.txt: 3286) -/(.*/)?blogads2_ -# /blogads/* (easylist.txt: 3285) -/(.*/)?blogads/.* -# /blogads. (easylist.txt: 3284) -/(.*/)?blogads\. -blogads.*. -# /blogads- (easylist.txt: 3283) -/(.*/)?blogads- -blogads-*. -# /blogad_ (easylist.txt: 3282) -/(.*/)?blogad_ -# /blogad02. (easylist.txt: 3281) -/(.*/)?blogad02\. -blogad02.*. -# /blogad. (easylist.txt: 3280) -/(.*/)?blogad\. -blogad.*. -# /blog_ads/* (easylist.txt: 3279) -/(.*/)?blog_ads/.* -# /blog_ad? (easylist.txt: 3278) -/(.*/)?blog_ad\? -# /blog/ads/* (easylist.txt: 3277) -/(.*/)?blog/ads/.* -# /blog-ad- (easylist.txt: 3276) -/(.*/)?blog-ad- -blog-ad-*. -# /blocks/ads/* (easylist.txt: 3275) -/(.*/)?blocks/ads/.* -# /blockad_ (easylist.txt: 3274) -/(.*/)?blockad_ -# /bkgrndads/* (easylist.txt: 3273) -/(.*/)?bkgrndads/.* -# /bizad. (easylist.txt: 3272) -/(.*/)?bizad\. -bizad.*. -# /binary/ad/* (easylist.txt: 3271) -/(.*/)?binary/ad/.* -# /bin/ads/* (easylist.txt: 3270) -/(.*/)?bin/ads/.* -# /bigtopl.swf (easylist.txt: 3269) -/(.*/)?bigtopl\.swf -bigtopl.swf*. -# /bigboxad. (easylist.txt: 3268) -/(.*/)?bigboxad\. -bigboxad.*. -# /bigads/* (easylist.txt: 3267) -/(.*/)?bigads/.* -# /bigad_ (easylist.txt: 3266) -/(.*/)?bigad_ -# /bigad. (easylist.txt: 3265) -/(.*/)?bigad\. -bigad.*. -# /bi_affiliate.js (easylist.txt: 3264) -/(.*/)?bi_affiliate\.js -# /bgads/* (easylist.txt: 3263) -/(.*/)?bgads/.* -# /bg_ads_ (easylist.txt: 3262) -/(.*/)?bg_ads_ -# /bg/ads/* (easylist.txt: 3261) -/(.*/)?bg/ads/.* -# /bg-advert- (easylist.txt: 3260) -/(.*/)?bg-advert- -bg-advert-*. -# /bftv/ads/* (easylist.txt: 3259) -/(.*/)?bftv/ads/.* -# /betrad.js (easylist.txt: 3258) -/(.*/)?betrad\.js -betrad.js*. -# /beta-ad. (easylist.txt: 3257) -/(.*/)?beta-ad\. -beta-ad.*. -# /behaviorads/* (easylist.txt: 3256) -/(.*/)?behaviorads/.* -# /beacon/ad/* (easylist.txt: 3255) -/(.*/)?beacon/ad/.* -# /bdcustomadsense- (easylist.txt: 3254) -/(.*/)?bdcustomadsense- -bdcustomadsense-*. -# /bckgrnd_ad. (easylist.txt: 3253) -/(.*/)?bckgrnd_ad\. -# /bbad9. (easylist.txt: 3252) -/(.*/)?bbad9\. -bbad9.*. -# /bbad8. (easylist.txt: 3251) -/(.*/)?bbad8\. -bbad8.*. -# /bbad7. (easylist.txt: 3250) -/(.*/)?bbad7\. -bbad7.*. -# /bbad6. (easylist.txt: 3249) -/(.*/)?bbad6\. -bbad6.*. -# /bbad5. (easylist.txt: 3248) -/(.*/)?bbad5\. -bbad5.*. -# /bbad4. (easylist.txt: 3247) -/(.*/)?bbad4\. -bbad4.*. -# /bbad3. (easylist.txt: 3246) -/(.*/)?bbad3\. -bbad3.*. -# /bbad2. (easylist.txt: 3245) -/(.*/)?bbad2\. -bbad2.*. -# /bbad10. (easylist.txt: 3244) -/(.*/)?bbad10\. -bbad10.*. -# /bbad1. (easylist.txt: 3243) -/(.*/)?bbad1\. -bbad1.*. -# /bbad. (easylist.txt: 3242) -/(.*/)?bbad\. -bbad.*. -# /basic/ad/* (easylist.txt: 3241) -/(.*/)?basic/ad/.* -# /baselinead. (easylist.txt: 3240) -/(.*/)?baselinead\. -baselinead.*. -# /baseAd. (easylist.txt: 3239) -/(.*/)?baseAd\. -baseAd.*. -# /bar-ad. (easylist.txt: 3238) -/(.*/)?bar-ad\. -bar-ad.*. -# /bansrc/* (easylist.txt: 3237) -/(.*/)?bansrc/.* -# /bannery/*?banner= (easylist.txt: 3236) -/(.*/)?bannery/.*\?banner= -# /bannerwerbung/* (easylist.txt: 3235) -/(.*/)?bannerwerbung/.* -# /bannerview.*? (easylist.txt: 3234) -/(.*/)?bannerview\..*\? -bannerview.*./.*\? -# /bannersyndication. (easylist.txt: 3233) -/(.*/)?bannersyndication\. -bannersyndication.*. -# /bannerserver? (easylist.txt: 3232) -/(.*/)?bannerserver\? -# /bannerserver3| (easylist.txt: 3231) -/(.*/)?bannerserver3$ -# /bannerserver3/* (easylist.txt: 3230) -/(.*/)?bannerserver3/.* -# /bannerserver/* (easylist.txt: 3229) -/(.*/)?bannerserver/.* -# /bannerserve/* (easylist.txt: 3228) -/(.*/)?bannerserve/.* -# /bannerscript/* (easylist.txt: 3227) -/(.*/)?bannerscript/.* -# /bannersAds_ (easylist.txt: 3226) -/(.*/)?bannersAds_ -# /banners_rotation. (easylist.txt: 3225) -/(.*/)?banners_rotation\. -# /banners/promo/* (easylist.txt: 3224) -/(.*/)?banners/promo/.* -# /banners/googlebanner (easylist.txt: 3223) -/(.*/)?banners/googlebanner -# /banners/ffadult/* (easylist.txt: 3222) -/(.*/)?banners/ffadult/.* -# /banners/affiliate/* (easylist.txt: 3221) -/(.*/)?banners/affiliate/.* -# /banners/affil/* (easylist.txt: 3220) -/(.*/)?banners/affil/.* -# /banners/aff. (easylist.txt: 3219) -/(.*/)?banners/aff\. -# /banners/adv_ (easylist.txt: 3218) -/(.*/)?banners/adv_ -# /banners/adv/* (easylist.txt: 3217) -/(.*/)?banners/adv/.* -# /banners/ads/* (easylist.txt: 3216) -/(.*/)?banners/ads/.* -# /banners/ads. (easylist.txt: 3215) -/(.*/)?banners/ads\. -# /banners/ads- (easylist.txt: 3214) -/(.*/)?banners/ads- -# /banners/ad_ (easylist.txt: 3213) -/(.*/)?banners/ad_ -# /banners/ad11. (easylist.txt: 3212) -/(.*/)?banners/ad11\. -# /banners/ad10. (easylist.txt: 3211) -/(.*/)?banners/ad10\. -# /banners/ad/* (easylist.txt: 3210) -/(.*/)?banners/ad/.* -# /banners/728 (easylist.txt: 3209) -/(.*/)?banners/728 -# /banners/468 (easylist.txt: 3208) -/(.*/)?banners/468 -# /banners/460 (easylist.txt: 3207) -/(.*/)?banners/460 -# /banners/300 (easylist.txt: 3206) -/(.*/)?banners/300 -# /banners/160 (easylist.txt: 3205) -/(.*/)?banners/160 -# /banners.php?id (easylist.txt: 3204) -/(.*/)?banners\.php\?id -# /banners.cgi? (easylist.txt: 3203) -/(.*/)?banners\.cgi\? -# /banners.*&iframe= (easylist.txt: 3202) -/(.*/)?banners\..*&iframe= -banners.*./.*&iframe= -# /bannerrotation/* (easylist.txt: 3201) -/(.*/)?bannerrotation/.* -# /bannerrotation. (easylist.txt: 3200) -/(.*/)?bannerrotation\. -bannerrotation.*. -# /bannerrotater/* (easylist.txt: 3199) -/(.*/)?bannerrotater/.* -# /bannerrotate. (easylist.txt: 3198) -/(.*/)?bannerrotate\. -bannerrotate.*. -# /bannerpump. (easylist.txt: 3197) -/(.*/)?bannerpump\. -bannerpump.*. -# /bannermvt. (easylist.txt: 3196) -/(.*/)?bannermvt\. -bannermvt.*. -# /bannermanager/* (easylist.txt: 3195) -/(.*/)?bannermanager/.* -# /bannermaker/* (easylist.txt: 3194) -/(.*/)?bannermaker/.* -# /bannerjs.php? (easylist.txt: 3193) -/(.*/)?bannerjs\.php\? -# /bannerinc. (easylist.txt: 3192) -/(.*/)?bannerinc\. -bannerinc.*. -# /bannerframeopenads_ (easylist.txt: 3191) -/(.*/)?bannerframeopenads_ -# /bannerframeopenads. (easylist.txt: 3190) -/(.*/)?bannerframeopenads\. -bannerframeopenads.*. -# /bannerframe.*? (easylist.txt: 3189) -/(.*/)?bannerframe\..*\? -bannerframe.*./.*\? -# /bannerfile/ad_ (easylist.txt: 3188) -/(.*/)?bannerfile/ad_ -# /bannerfarm/* (easylist.txt: 3187) -/(.*/)?bannerfarm/.* -# /bannerfarm. (easylist.txt: 3186) -/(.*/)?bannerfarm\. -bannerfarm.*. -# /bannerexchange/* (easylist.txt: 3185) -/(.*/)?bannerexchange/.* -# /bannerdeliver.php (easylist.txt: 3184) -/(.*/)?bannerdeliver\.php -bannerdeliver.php*. -# /bannerconduit. (easylist.txt: 3183) -/(.*/)?bannerconduit\. -bannerconduit.*. -# /bannercode.php (easylist.txt: 3182) -/(.*/)?bannercode\.php -bannercode.php*. -# /banneradviva. (easylist.txt: 3181) -/(.*/)?banneradviva\. -banneradviva.*. -# /banneradverts/* (easylist.txt: 3180) -/(.*/)?banneradverts/.* -# /banneradsgenerator. (easylist.txt: 3179) -/(.*/)?banneradsgenerator\. -banneradsgenerator.*. -# /banneradsajax. (easylist.txt: 3178) -/(.*/)?banneradsajax\. -banneradsajax.*. -# /bannerads/* (easylist.txt: 3177) -/(.*/)?bannerads/.* -# /bannerads. (easylist.txt: 3176) -/(.*/)?bannerads\. -bannerads.*. -# /bannerads- (easylist.txt: 3175) -/(.*/)?bannerads- -bannerads-*. -# /bannerad_ (easylist.txt: 3174) -/(.*/)?bannerad_ -# /bannerad6. (easylist.txt: 3173) -/(.*/)?bannerad6\. -bannerad6.*. -# /bannerad3. (easylist.txt: 3172) -/(.*/)?bannerad3\. -bannerad3.*. -# /bannerad2- (easylist.txt: 3171) -/(.*/)?bannerad2- -bannerad2-*. -# /bannerad1- (easylist.txt: 3170) -/(.*/)?bannerad1- -bannerad1-*. -# /bannerad/* (easylist.txt: 3169) -/(.*/)?bannerad/.* -# /bannerad. (easylist.txt: 3168) -/(.*/)?bannerad\. -bannerad.*. -# /banner_zedo/* (easylist.txt: 3167) -/(.*/)?banner_zedo/.* -# /banner_zanox/* (easylist.txt: 3166) -/(.*/)?banner_zanox/.* -# /banner_view. (easylist.txt: 3165) -/(.*/)?banner_view\. -# /banner_skyscraper. (easylist.txt: 3164) -/(.*/)?banner_skyscraper\. -# /banner_OAS.js (easylist.txt: 3163) -/(.*/)?banner_OAS\.js -# /banner_js.*? (easylist.txt: 3162) -/(.*/)?banner_js\..*\? -# /banner_image.php? (easylist.txt: 3161) -/(.*/)?banner_image\.php\? -# /banner_iframe_ (easylist.txt: 3160) -/(.*/)?banner_iframe_ -# /banner_file.php? (easylist.txt: 3159) -/(.*/)?banner_file\.php\? -# /banner_db.php? (easylist.txt: 3158) -/(.*/)?banner_db\.php\? -# /banner_control.php? (easylist.txt: 3157) -/(.*/)?banner_control\.php\? -# /banner_adv/* (easylist.txt: 3156) -/(.*/)?banner_adv/.* -# /banner_ads_ (easylist.txt: 3155) -/(.*/)?banner_ads_ -# /banner_ads/* (easylist.txt: 3154) -/(.*/)?banner_ads/.* -# /banner_ads. (easylist.txt: 3153) -/(.*/)?banner_ads\. -# /banner_ad_ (easylist.txt: 3152) -/(.*/)?banner_ad_ -# /banner_ad. (easylist.txt: 3151) -/(.*/)?banner_ad\. -# /banner_468x (easylist.txt: 3150) -/(.*/)?banner_468x -# /banner_468. (easylist.txt: 3149) -/(.*/)?banner_468\. -# /banner_125x (easylist.txt: 3148) -/(.*/)?banner_125x -# /banner728x90_ (easylist.txt: 3147) -/(.*/)?banner728x90_ -# /banner468x80. (easylist.txt: 3146) -/(.*/)?banner468x80\. -banner468x80.*. -# /banner468x60. (easylist.txt: 3145) -/(.*/)?banner468x60\. -banner468x60.*. -# /banner468a. (easylist.txt: 3144) -/(.*/)?banner468a\. -banner468a.*. -# /banner468_ (easylist.txt: 3143) -/(.*/)?banner468_ -# /banner468. (easylist.txt: 3142) -/(.*/)?banner468\. -banner468.*. -# /banner460x80. (easylist.txt: 3141) -/(.*/)?banner460x80\. -banner460x80.*. -# /banner20468x60. (easylist.txt: 3140) -/(.*/)?banner20468x60\. -banner20468x60.*. -# /banner160x600- (easylist.txt: 3139) -/(.*/)?banner160x600- -banner160x600-*. -# /banner/virtuagirl (easylist.txt: 3138) -/(.*/)?banner/virtuagirl -# /banner/sponsor_ (easylist.txt: 3137) -/(.*/)?banner/sponsor_ -# /banner/rtads/* (easylist.txt: 3136) -/(.*/)?banner/rtads/.* -# /banner/affiliate/* (easylist.txt: 3135) -/(.*/)?banner/affiliate/.* -# /banner/adv_ (easylist.txt: 3134) -/(.*/)?banner/adv_ -# /banner/adv/* (easylist.txt: 3133) -/(.*/)?banner/adv/.* -# /banner/ad_ (easylist.txt: 3132) -/(.*/)?banner/ad_ -# /banner/ad/* (easylist.txt: 3131) -/(.*/)?banner/ad/.* -# /banner/ad. (easylist.txt: 3130) -/(.*/)?banner/ad\. -# /banner/700 (easylist.txt: 3129) -/(.*/)?banner/700 -# /banner/468 (easylist.txt: 3128) -/(.*/)?banner/468 -# /banner.ws? (easylist.txt: 3127) -/(.*/)?banner\.ws\? -# /banner.php (easylist.txt: 3126) -/(.*/)?banner\.php -banner.php*. -# /banner.htm? (easylist.txt: 3125) -/(.*/)?banner\.htm\? -# /banner.gif? (easylist.txt: 3124) -/(.*/)?banner\.gif\? -# /banner.cgi? (easylist.txt: 3123) -/(.*/)?banner\.cgi\? -# /banner.ca? (easylist.txt: 3122) -/(.*/)?banner\.ca\? -# /banner.asp?$third-party (easylist.txt: 3121) -/(.*/)?banner\.asp\? -# /banner-ads/* (easylist.txt: 3120) -/(.*/)?banner-ads/.* -# /banner-ad_ (easylist.txt: 3119) -/(.*/)?banner-ad_ -# /banner-ad/* (easylist.txt: 3118) -/(.*/)?banner-ad/.* -# /banner-ad. (easylist.txt: 3117) -/(.*/)?banner-ad\. -banner-ad.*. -# /banner-ad- (easylist.txt: 3116) -/(.*/)?banner-ad- -banner-ad-*. -# /Banner-300x250. (easylist.txt: 3115) -/(.*/)?Banner-300x250\. -Banner-300x250.*. -# /banmanpro/* (easylist.txt: 3114) -/(.*/)?banmanpro/.* -# /banman/* (easylist.txt: 3113) -/(.*/)?banman/.* -# /banman.asp? (easylist.txt: 3112) -/(.*/)?banman\.asp\? -# /banimpress. (easylist.txt: 3111) -/(.*/)?banimpress\. -banimpress.*. -# /ban_m.php? (easylist.txt: 3110) -/(.*/)?ban_m\.php\? -# /ban_ad. (easylist.txt: 3109) -/(.*/)?ban_ad\. -# /ban728x90. (easylist.txt: 3108) -/(.*/)?ban728x90\. -ban728x90.*. -# /ban728.php (easylist.txt: 3107) -/(.*/)?ban728\.php -ban728.php*. -# /ban728.html (easylist.txt: 3106) -/(.*/)?ban728\.html -ban728.html*. -# /ban300.php (easylist.txt: 3105) -/(.*/)?ban300\.php -ban300.php*. -# /ban300.html (easylist.txt: 3104) -/(.*/)?ban300\.html -ban300.html*. -# /ban160.php (easylist.txt: 3103) -/(.*/)?ban160\.php -ban160.php*. -# /ban.php? (easylist.txt: 3102) -/(.*/)?ban\.php\? -# /badge_ad_ (easylist.txt: 3101) -/(.*/)?badge_ad_ -# /backlinxxx/js/* (easylist.txt: 3100) -/(.*/)?backlinxxx/js/.* -# /backgroundAdvertising. (easylist.txt: 3099) -/(.*/)?backgroundAdvertising\. -backgroundAdvertising.*. -# /BackgroundAd40. (easylist.txt: 3098) -/(.*/)?BackgroundAd40\. -BackgroundAd40.*. -# /background_ad_ (easylist.txt: 3097) -/(.*/)?background_ad_ -# /back-ad. (easylist.txt: 3096) -/(.*/)?back-ad\. -back-ad.*. -# /b.ads. (easylist.txt: 3095) -/(.*/)?b\.ads\. -b.ads.*. -# /awepop. (easylist.txt: 3094) -/(.*/)?awepop\. -awepop.*. -# /awempire. (easylist.txt: 3093) -/(.*/)?awempire\. -awempire.*. -# /awe2.js (easylist.txt: 3092) -/(.*/)?awe2\.js -awe2.js*. -# /auto_ad_ (easylist.txt: 3091) -/(.*/)?auto_ad_ -# /austria_ad. (easylist.txt: 3090) -/(.*/)?austria_ad\. -# /auditudebanners. (easylist.txt: 3089) -/(.*/)?auditudebanners\. -auditudebanners.*. -# /auditudeadunit. (easylist.txt: 3088) -/(.*/)?auditudeadunit\. -auditudeadunit.*. -# /audioads/* (easylist.txt: 3087) -/(.*/)?audioads/.* -# /audio-ads/* (easylist.txt: 3086) -/(.*/)?audio-ads/.* -# /au2m8_preloader/* (easylist.txt: 3085) -/(.*/)?au2m8_preloader/.* -# /AttractiveAdsCube. (easylist.txt: 3084) -/(.*/)?AttractiveAdsCube\. -AttractiveAdsCube.*. -# /AttractiveAds_ (easylist.txt: 3083) -/(.*/)?AttractiveAds_ -# /AttractiveAds/* (easylist.txt: 3082) -/(.*/)?AttractiveAds/.* -# /atrads. (easylist.txt: 3081) -/(.*/)?atrads\. -atrads.*. -# /atnads/* (easylist.txt: 3080) -/(.*/)?atnads/.* -# /athena/tag/? (easylist.txt: 3079) -/(.*/)?athena/tag/\? -# /asyncspc. (easylist.txt: 3078) -/(.*/)?asyncspc\. -asyncspc.*. -# /asyncadload. (easylist.txt: 3076) -/(.*/)?asyncadload\. -asyncadload.*. -# /ast/ads/* (easylist.txt: 3075) -/(.*/)?ast/ads/.* -# /assets/sponsored/* (easylist.txt: 3074) -/(.*/)?assets/sponsored/.* -# /assets/doubleclick/* (easylist.txt: 3073) -/(.*/)?assets/doubleclick/.* -# /assets/adv/* (easylist.txt: 3072) -/(.*/)?assets/adv/.* -# /assets/ads_ (easylist.txt: 3071) -/(.*/)?assets/ads_ -# /assets/ads/* (easylist.txt: 3070) -/(.*/)?assets/ads/.* -# /assets/ads- (easylist.txt: 3069) -/(.*/)?assets/ads- -# /assets/ad/* (easylist.txt: 3068) -/(.*/)?assets/ad/.* -# /assets/ad- (easylist.txt: 3067) -/(.*/)?assets/ad- -# /asset/adv/* (easylist.txt: 3066) -/(.*/)?asset/adv/.* -# /asset/ad/* (easylist.txt: 3065) -/(.*/)?asset/ad/.* -# /aspbanner_inc.asp? (easylist.txt: 3064) -/(.*/)?aspbanner_inc\.asp\? -# /aseadnshow. (easylist.txt: 3063) -/(.*/)?aseadnshow\. -aseadnshow.*. -# /as_u/ads/* (easylist.txt: 3062) -/(.*/)?as_u/ads/.* -# /as3overstreamplatformadapter. (easylist.txt: 3061) -/(.*/)?as3overstreamplatformadapter\. -as3overstreamplatformadapter.*. -# /as/gb?stid= (easylist.txt: 3060) -/(.*/)?as/gb\?stid= -# /as/gb2?stid= (easylist.txt: 3059) -/(.*/)?as/gb2\?stid= -# /artimediatargetads. (easylist.txt: 3058) -/(.*/)?artimediatargetads\. -artimediatargetads.*. -# /articleSponsorDeriv_ (easylist.txt: 3057) -/(.*/)?articleSponsorDeriv_ -# /article_ad. (easylist.txt: 3056) -/(.*/)?article_ad\. -# /Article-Ad- (easylist.txt: 3055) -/(.*/)?Article-Ad- -Article-Ad-*. -# /aptads/* (easylist.txt: 3054) -/(.*/)?aptads/.* -# /app/ads/* (easylist.txt: 3053) -/(.*/)?app/ads/.* -# /app/ads. (easylist.txt: 3052) -/(.*/)?app/ads\. -# /app.ads. (easylist.txt: 3051) -/(.*/)?app\.ads\. -app.ads.*. -# /app.ads- (easylist.txt: 3050) -/(.*/)?app\.ads- -app.ads-*. -# /apopwin. (easylist.txt: 3049) -/(.*/)?apopwin\. -apopwin.*. -# /api/ads/* (easylist.txt: 3048) -/(.*/)?api/ads/.* -# /api/ad/* (easylist.txt: 3047) -/(.*/)?api/ad/.* -# /api.ad. (easylist.txt: 3046) -/(.*/)?api\.ad\. -api.ad.*. -# /anyad.js (easylist.txt: 3045) -/(.*/)?anyad\.js -anyad.js*. -# /announce/adv/* (easylist.txt: 3044) -/(.*/)?announce/adv/.* -# /annonser/* (easylist.txt: 3043) -/(.*/)?annonser/.* -# /annonser. (easylist.txt: 3042) -/(.*/)?annonser\. -annonser.*. -# /annonse/* (easylist.txt: 3041) -/(.*/)?annonse/.* -# /anchorad. (easylist.txt: 3039) -/(.*/)?anchorad\. -anchorad.*. -# /amzn_omakase. (easylist.txt: 3038) -/(.*/)?amzn_omakase\. -# /amzn_ads. (easylist.txt: 3037) -/(.*/)?amzn_ads\. -# /amazon/widget/* (easylist.txt: 3036) -/(.*/)?amazon/widget/.* -# /amazon/iframeproxy- (easylist.txt: 3035) -/(.*/)?amazon/iframeproxy- -# /am/ads. (easylist.txt: 3034) -/(.*/)?am/ads\. -# /alwebad_ (easylist.txt: 3033) -/(.*/)?alwebad_ -# /alternet.ad? (easylist.txt: 3032) -/(.*/)?alternet\.ad\? -# /all_ads/* (easylist.txt: 3031) -/(.*/)?all_ads/.* -# /all/ad/* (easylist.txt: 3030) -/(.*/)?all/ad/.* -# /ak/ads/* (easylist.txt: 3029) -/(.*/)?ak/ads/.* -# /ak-ads- (easylist.txt: 3028) -/(.*/)?ak-ads- -ak-ads-*. -# /ajs?auid= (easylist.txt: 3027) -/(.*/)?ajs\?auid= -# /ajs.php? (easylist.txt: 3026) -/(.*/)?ajs\.php\? -# /ajrotator/* (easylist.txt: 3025) -/(.*/)?ajrotator/.* -# /ajaxads. (easylist.txt: 3024) -/(.*/)?ajaxads\. -ajaxads.*. -# /ajaxAd? (easylist.txt: 3023) -/(.*/)?ajaxAd\? -# /ajax/ads/* (easylist.txt: 3022) -/(.*/)?ajax/ads/.* -# /ajax/ad/* (easylist.txt: 3021) -/(.*/)?ajax/ad/.* -# /ajax-advert. (easylist.txt: 3020) -/(.*/)?ajax-advert\. -ajax-advert.*. -# /ajax-advert- (easylist.txt: 3019) -/(.*/)?ajax-advert- -ajax-advert-*. -# /ajax-ad/* (easylist.txt: 3018) -/(.*/)?ajax-ad/.* -# /ahmestatic/ads/* (easylist.txt: 3017) -/(.*/)?ahmestatic/ads/.* -# /afr?auid= (easylist.txt: 3016) -/(.*/)?afr\?auid= -# /afr.php? (easylist.txt: 3015) -/(.*/)?afr\.php\? -# /affpic/* (easylist.txt: 3014) -/(.*/)?affpic/.* -# /affliate-banners/* (easylist.txt: 3013) -/(.*/)?affliate-banners/.* -# /affimg/* (easylist.txt: 3012) -/(.*/)?affimg/.* -# /affimages/* (easylist.txt: 3011) -/(.*/)?affimages/.* -# /affilitebanners/* (easylist.txt: 3010) -/(.*/)?affilitebanners/.* -# /affilinet/* (easylist.txt: 3009) -/(.*/)?affilinet/.* -# /affiliationcash. (easylist.txt: 3008) -/(.*/)?affiliationcash\. -affiliationcash.*. -# /affiliation/* (easylist.txt: 3007) -/(.*/)?affiliation/.* -# /affiliatewiz/* (easylist.txt: 3006) -/(.*/)?affiliatewiz/.* -# /affiliatetags/* (easylist.txt: 3005) -/(.*/)?affiliatetags/.* -# /affiliateserver. (easylist.txt: 3004) -/(.*/)?affiliateserver\. -affiliateserver.*. -# /affiliates/contextual. (easylist.txt: 3003) -/(.*/)?affiliates/contextual\. -# /affiliates/ban (easylist.txt: 3002) -/(.*/)?affiliates/ban -# /affiliates/*/show_banner. (easylist.txt: 3001) -/(.*/)?affiliates/.*/show_banner\. -# /affiliates.*.aspx? (easylist.txt: 3000) -/(.*/)?affiliates\..*\.aspx\? -affiliates.*./.*\.aspx\? -# /affiliateimages/* (easylist.txt: 2999) -/(.*/)?affiliateimages/.* -# /affiliatebanners/* (easylist.txt: 2998) -/(.*/)?affiliatebanners/.* -# /affiliatebanner/* (easylist.txt: 2997) -/(.*/)?affiliatebanner/.* -# /affiliateadvertisement. (easylist.txt: 2996) -/(.*/)?affiliateadvertisement\. -affiliateadvertisement.*. -# /affiliateads/* (easylist.txt: 2995) -/(.*/)?affiliateads/.* -# /affiliate_show_iframe. (easylist.txt: 2994) -/(.*/)?affiliate_show_iframe\. -# /affiliate_show_banner. (easylist.txt: 2993) -/(.*/)?affiliate_show_banner\. -# /affiliate_resources/* (easylist.txt: 2992) -/(.*/)?affiliate_resources/.* -# /affiliate_base/banners/* (easylist.txt: 2991) -/(.*/)?affiliate_base/banners/.* -# /affiliate_banners/* (easylist.txt: 2990) -/(.*/)?affiliate_banners/.* -# /affiliate_banner/* (easylist.txt: 2989) -/(.*/)?affiliate_banner/.* -# /affiliate/small_banner/* (easylist.txt: 2988) -/(.*/)?affiliate/small_banner/.* -# /affiliate/script.php? (easylist.txt: 2987) -/(.*/)?affiliate/script\.php\? -# /affiliate/promo/* (easylist.txt: 2986) -/(.*/)?affiliate/promo/.* -# /affiliate/promo- (easylist.txt: 2985) -/(.*/)?affiliate/promo- -# /affiliate/banners/* (easylist.txt: 2984) -/(.*/)?affiliate/banners/.* -# /affiliate/banner/* (easylist.txt: 2983) -/(.*/)?affiliate/banner/.* -# /affiliate/ads/* (easylist.txt: 2982) -/(.*/)?affiliate/ads/.* -# /affiliate/ad/* (easylist.txt: 2981) -/(.*/)?affiliate/ad/.* -# /affiliate-content/* (easylist.txt: 2980) -/(.*/)?affiliate-content/.* -# /Affiliate-Banner- (easylist.txt: 2979) -/(.*/)?Affiliate-Banner- -Affiliate-Banner-*. -# /affilatebanner. (easylist.txt: 2978) -/(.*/)?affilatebanner\. -affilatebanner.*. -# /affclick/* (easylist.txt: 2977) -/(.*/)?affclick/.* -# /affbeat/banners/* (easylist.txt: 2976) -/(.*/)?affbeat/banners/.* -# /affbanners/* (easylist.txt: 2975) -/(.*/)?affbanners/.* -# /affbanner/* (easylist.txt: 2974) -/(.*/)?affbanner/.* -# /affads/* (easylist.txt: 2973) -/(.*/)?affads/.* -# /affad? (easylist.txt: 2972) -/(.*/)?affad\? -# /aff_i?offer_id= (easylist.txt: 2971) -/(.*/)?aff_i\?offer_id= -# /aff_frame. (easylist.txt: 2970) -/(.*/)?aff_frame\. -# /aff_banners/* (easylist.txt: 2969) -/(.*/)?aff_banners/.* -# /aff_ad? (easylist.txt: 2968) -/(.*/)?aff_ad\? -# /aff/images/* (easylist.txt: 2967) -/(.*/)?aff/images/.* -# /aff/ads_ (easylist.txt: 2966) -/(.*/)?aff/ads_ -# /aff.htm (easylist.txt: 2965) -/(.*/)?aff\.htm -aff.htm*. -# /aff-exchange/* (easylist.txt: 2964) -/(.*/)?aff-exchange/.* -# /afdsafads/* (easylist.txt: 2963) -/(.*/)?afdsafads/.* -# /afcsearchads. (easylist.txt: 2962) -/(.*/)?afcsearchads\. -afcsearchads.*. -# /afcads. (easylist.txt: 2961) -/(.*/)?afcads\. -afcads.*. -# /afc-match?q= (easylist.txt: 2960) -/(.*/)?afc-match\?q= -# /adztop. (easylist.txt: 2959) -/(.*/)?adztop\. -adztop.*. -# /adzonetop. (easylist.txt: 2958) -/(.*/)?adzonetop\. -adzonetop.*. -# /adzonesidead. (easylist.txt: 2957) -/(.*/)?adzonesidead\. -adzonesidead.*. -# /adzones/* (easylist.txt: 2956) -/(.*/)?adzones/.* -# /adzoneright. (easylist.txt: 2955) -/(.*/)?adzoneright\. -adzoneright.*. -# /adzoneplayerright. (easylist.txt: 2954) -/(.*/)?adzoneplayerright\. -adzoneplayerright.*. -# /adzonelegend. (easylist.txt: 2953) -/(.*/)?adzonelegend\. -adzonelegend.*. -# /adzoneleft. (easylist.txt: 2952) -/(.*/)?adzoneleft\. -adzoneleft.*. -# /adzonecenteradhomepage. (easylist.txt: 2951) -/(.*/)?adzonecenteradhomepage\. -adzonecenteradhomepage.*. -# /adzonebottom. (easylist.txt: 2950) -/(.*/)?adzonebottom\. -adzonebottom.*. -# /adzonebelowplayer. (easylist.txt: 2949) -/(.*/)?adzonebelowplayer\. -adzonebelowplayer.*. -# /AdZoneAdXp. (easylist.txt: 2948) -/(.*/)?AdZoneAdXp\. -AdZoneAdXp.*. -# /adzone_ (easylist.txt: 2947) -/(.*/)?adzone_ -# /adzone4. (easylist.txt: 2946) -/(.*/)?adzone4\. -adzone4.*. -# /adzone/* (easylist.txt: 2945) -/(.*/)?adzone/.* -# /adzone. (easylist.txt: 2944) -/(.*/)?adzone\. -adzone.*. -# /adzilla/* (easylist.txt: 2943) -/(.*/)?adzilla/.* -# /adzerk2_ (easylist.txt: 2942) -/(.*/)?adzerk2_ -# /adzbotm. (easylist.txt: 2941) -/(.*/)?adzbotm\. -adzbotm.*. -# /adyea. (easylist.txt: 2940) -/(.*/)?adyea\. -adyea.*. -# /adyard300. (easylist.txt: 2939) -/(.*/)?adyard300\. -adyard300.*. -# /adyard. (easylist.txt: 2938) -/(.*/)?adyard\. -adyard.*. -# /adxx.php? (easylist.txt: 2937) -/(.*/)?adxx\.php\? -# /adxsite. (easylist.txt: 2936) -/(.*/)?adxsite\. -adxsite.*. -# /adx_iframe_ (easylist.txt: 2935) -/(.*/)?adx_iframe_ -# /adx_flash. (easylist.txt: 2934) -/(.*/)?adx_flash\. -# /adx_exo_ (easylist.txt: 2933) -/(.*/)?adx_exo_ -# /adx2. (easylist.txt: 2932) -/(.*/)?adx2\. -adx2.*. -# /adx160. (easylist.txt: 2931) -/(.*/)?adx160\. -adx160.*. -# /adx/ads? (easylist.txt: 2930) -/(.*/)?adx/ads\? -# /adwriter2. (easylist.txt: 2928) -/(.*/)?adwriter2\. -adwriter2.*. -# /adwrapperiframe. (easylist.txt: 2927) -/(.*/)?adwrapperiframe\. -adwrapperiframe.*. -# /adwrapper/* (easylist.txt: 2926) -/(.*/)?adwrapper/.* -# /adworx_ (easylist.txt: 2925) -/(.*/)?adworx_ -# /adworx. (easylist.txt: 2924) -/(.*/)?adworx\. -adworx.*. -# /adworldmedia/* (easylist.txt: 2923) -/(.*/)?adworldmedia/.* -# /adworks/* (easylist.txt: 2922) -/(.*/)?adworks/.* -# /adWorking/* (easylist.txt: 2920) -/(.*/)?adWorking/.* -# /adwordstracking.js (easylist.txt: 2919) -/(.*/)?adwordstracking\.js -adwordstracking.js*. -# /adwords/* (easylist.txt: 2918) -/(.*/)?adwords/.* -# /adwolf. (easylist.txt: 2916) -/(.*/)?adwolf\. -adwolf.*. -# /adwizard_ (easylist.txt: 2915) -/(.*/)?adwizard_ -# /adwizard. (easylist.txt: 2914) -/(.*/)?adwizard\. -adwizard.*. -# /adwiz/* (easylist.txt: 2913) -/(.*/)?adwiz/.* -# /adwiz. (easylist.txt: 2912) -/(.*/)?adwiz\. -adwiz.*. -# /adWiseShopPlus1. (easylist.txt: 2911) -/(.*/)?adWiseShopPlus1\. -adWiseShopPlus1.*. -# /adwise/* (easylist.txt: 2910) -/(.*/)?adwise/.* -# /adwidgets/* (easylist.txt: 2909) -/(.*/)?adwidgets/.* -# /adwidget/* (easylist.txt: 2908) -/(.*/)?adwidget/.* -# /adweb33. (easylist.txt: 2907) -/(.*/)?adweb33\. -adweb33.*. -# /adweb2. (easylist.txt: 2906) -/(.*/)?adweb2\. -adweb2.*. -# /adweb. (easylist.txt: 2905) -/(.*/)?adweb\. -adweb.*. -# /adw2.shtml (easylist.txt: 2904) -/(.*/)?adw2\.shtml -adw2.shtml*. -# /adw.shtml (easylist.txt: 2903) -/(.*/)?adw\.shtml -adw.shtml*. -# /advzones/* (easylist.txt: 2902) -/(.*/)?advzones/.* -# /AdvWindow/* (easylist.txt: 2901) -/(.*/)?AdvWindow/.* -# /advweb. (easylist.txt: 2900) -/(.*/)?advweb\. -advweb.*. -# /advtemplate_ (easylist.txt: 2899) -/(.*/)?advtemplate_ -# /advtemplate/* (easylist.txt: 2898) -/(.*/)?advtemplate/.* -# /advtarget/* (easylist.txt: 2897) -/(.*/)?advtarget/.* -# /advt2. (easylist.txt: 2896) -/(.*/)?advt2\. -advt2.*. -# /advt/* (easylist.txt: 2895) -/(.*/)?advt/.* -# /advt. (easylist.txt: 2894) -/(.*/)?advt\. -advt.*. -# /advshow. (easylist.txt: 2893) -/(.*/)?advshow\. -advshow.*. -# /advscripts/* (easylist.txt: 2892) -/(.*/)?advscripts/.* -# /advscript. (easylist.txt: 2891) -/(.*/)?advscript\. -advscript.*. -# /advs/* (easylist.txt: 2890) -/(.*/)?advs/.* -# /advs.ads. (easylist.txt: 2889) -/(.*/)?advs\.ads\. -advs.ads.*. -# /advrotator. (easylist.txt: 2888) -/(.*/)?advrotator\. -advrotator.*. -# /advris/* (easylist.txt: 2887) -/(.*/)?advris/.* -# /advpreload. (easylist.txt: 2886) -/(.*/)?advpreload\. -advpreload.*. -# /advPop. (easylist.txt: 2885) -/(.*/)?advPop\. -advPop.*. -# /advpartnerinit. (easylist.txt: 2884) -/(.*/)?advpartnerinit\. -advpartnerinit.*. -# /advolatility. (easylist.txt: 2883) -/(.*/)?advolatility\. -advolatility.*. -# /advloader. (easylist.txt: 2882) -/(.*/)?advloader\. -advloader.*. -# /advlink300. (easylist.txt: 2881) -/(.*/)?advlink300\. -advlink300.*. -# /adVisit. (easylist.txt: 2880) -/(.*/)?adVisit\. -adVisit.*. -# /advision. (easylist.txt: 2879) -/(.*/)?advision\. -advision.*. -# /advinfo. (easylist.txt: 2878) -/(.*/)?advinfo\. -advinfo.*. -# /adviframe/* (easylist.txt: 2877) -/(.*/)?adviframe/.* -# /adviewer. (easylist.txt: 2876) -/(.*/)?adviewer\. -adviewer.*. -# /adviewed. (easylist.txt: 2875) -/(.*/)?adviewed\. -adviewed.*. -# /adviewas3. (easylist.txt: 2874) -/(.*/)?adviewas3\. -adviewas3.*. -# /adview_ (easylist.txt: 2873) -/(.*/)?adview_ -# /adview? (easylist.txt: 2872) -/(.*/)?adview\? -# /adview/* (easylist.txt: 2871) -/(.*/)?adview/.* -# /adview. (easylist.txt: 2870) -/(.*/)?adview\. -adview.*. -# /advice-ads. (easylist.txt: 2869) -/(.*/)?advice-ads\. -advice-ads.*. -# /advhd. (easylist.txt: 2868) -/(.*/)?advhd\. -advhd.*. -# /advfiles/* (easylist.txt: 2867) -/(.*/)?advfiles/.* -# /advf1. (easylist.txt: 2866) -/(.*/)?advf1\. -advf1.*. -# /advertwebapp. (easylist.txt: 2865) -/(.*/)?advertwebapp\. -advertwebapp.*. -# /advertverticallong. (easylist.txt: 2864) -/(.*/)?advertverticallong\. -advertverticallong.*. -# /adverttop. (easylist.txt: 2863) -/(.*/)?adverttop\. -adverttop.*. -# /advertstub. (easylist.txt: 2862) -/(.*/)?advertstub\. -advertstub.*. -# /advertsquare. (easylist.txt: 2861) -/(.*/)?advertsquare\. -advertsquare.*. -# /advertsky. (easylist.txt: 2860) -/(.*/)?advertsky\. -advertsky.*. -# /advertserve. (easylist.txt: 2859) -/(.*/)?advertserve\. -advertserve.*. -# /adverts_ (easylist.txt: 2858) -/(.*/)?adverts_ -# /adverts/* (easylist.txt: 2857) -/(.*/)?adverts/.* -# /adverts. (easylist.txt: 2856) -/(.*/)?adverts\. -adverts.*. -# /advertright. (easylist.txt: 2855) -/(.*/)?advertright\. -advertright.*. -# /advertrail. (easylist.txt: 2854) -/(.*/)?advertrail\. -advertrail.*. -# /advertpro/* (easylist.txt: 2853) -/(.*/)?advertpro/.* -# /advertpixelmedia1. (easylist.txt: 2852) -/(.*/)?advertpixelmedia1\. -advertpixelmedia1.*. -# /advertphp/* (easylist.txt: 2851) -/(.*/)?advertphp/.* -# /advertorials/* (easylist.txt: 2850) -/(.*/)?advertorials/.* -# /advertorial_ (easylist.txt: 2849) -/(.*/)?advertorial_ -# /advertorial/* (easylist.txt: 2848) -/(.*/)?advertorial/.* -# /advertmsig. (easylist.txt: 2847) -/(.*/)?advertmsig\. -advertmsig.*. -# /advertmedia/* (easylist.txt: 2846) -/(.*/)?advertmedia/.* -# /advertlayer. (easylist.txt: 2845) -/(.*/)?advertlayer\. -advertlayer.*. -# /advertize_ (easylist.txt: 2844) -/(.*/)?advertize_ -# /advertisments/* (easylist.txt: 2843) -/(.*/)?advertisments/.* -# /advertisment_ (easylist.txt: 2842) -/(.*/)?advertisment_ -# /advertisment1- (easylist.txt: 2841) -/(.*/)?advertisment1- -advertisment1-*. -# /advertisment/* (easylist.txt: 2840) -/(.*/)?advertisment/.* -# /advertisment. (easylist.txt: 2839) -/(.*/)?advertisment\. -advertisment.*. -# /advertisment- (easylist.txt: 2838) -/(.*/)?advertisment- -advertisment-*. -# /advertisingwidgets/* (easylist.txt: 2837) -/(.*/)?advertisingwidgets/.* -# /advertisings. (easylist.txt: 2836) -/(.*/)?advertisings\. -advertisings.*. -# /advertisingmodule. (easylist.txt: 2835) -/(.*/)?advertisingmodule\. -advertisingmodule.*. -# /advertisingmanual. (easylist.txt: 2834) -/(.*/)?advertisingmanual\. -advertisingmanual.*. -# /advertisinglinks_ (easylist.txt: 2833) -/(.*/)?advertisinglinks_ -# /AdvertisingIsPresent6? (easylist.txt: 2832) -/(.*/)?AdvertisingIsPresent6\? -# /advertisingimageexte/* (easylist.txt: 2831) -/(.*/)?advertisingimageexte/.* -# /advertisingcontent/* (easylist.txt: 2830) -/(.*/)?advertisingcontent/.* -# /advertisingbutton. (easylist.txt: 2829) -/(.*/)?advertisingbutton\. -advertisingbutton.*. -# /advertisingbanner_ (easylist.txt: 2828) -/(.*/)?advertisingbanner_ -# /advertisingbanner1. (easylist.txt: 2827) -/(.*/)?advertisingbanner1\. -advertisingbanner1.*. -# /advertisingbanner/* (easylist.txt: 2826) -/(.*/)?advertisingbanner/.* -# /advertisingbanner. (easylist.txt: 2825) -/(.*/)?advertisingbanner\. -advertisingbanner.*. -# /advertising_ (easylist.txt: 2824) -/(.*/)?advertising_ -# /advertising? (easylist.txt: 2823) -/(.*/)?advertising\? -# /advertising300x250. (easylist.txt: 2822) -/(.*/)?advertising300x250\. -advertising300x250.*. -# /advertising2. (easylist.txt: 2821) -/(.*/)?advertising2\. -advertising2.*. -# /advertising02. (easylist.txt: 2820) -/(.*/)?advertising02\. -advertising02.*. -# /advertising. (easylist.txt: 2818) -/(.*/)?advertising\. -advertising.*. -# /advertisewithus_ (easylist.txt: 2816) -/(.*/)?advertisewithus_ -# /advertises/* (easylist.txt: 2815) -/(.*/)?advertises/.* -# /advertiserwidget. (easylist.txt: 2814) -/(.*/)?advertiserwidget\. -advertiserwidget.*. -# /advertisementview/* (easylist.txt: 2809) -/(.*/)?advertisementview/.* -# /AdvertisementShare. (easylist.txt: 2808) -/(.*/)?AdvertisementShare\. -AdvertisementShare.*. -# /advertisements_ (easylist.txt: 2807) -/(.*/)?advertisements_ -# /advertisements2. (easylist.txt: 2806) -/(.*/)?advertisements2\. -advertisements2.*. -# /advertisements/* (easylist.txt: 2805) -/(.*/)?advertisements/.* -# /advertisements. (easylist.txt: 2804) -/(.*/)?advertisements\. -advertisements.*. -# /advertisements- (easylist.txt: 2803) -/(.*/)?advertisements- -advertisements-*. -# /advertisementrotation. (easylist.txt: 2802) -/(.*/)?advertisementrotation\. -advertisementrotation.*. -# /advertisementmapping. (easylist.txt: 2801) -/(.*/)?advertisementmapping\. -advertisementmapping.*. -# /advertisementheader. (easylist.txt: 2800) -/(.*/)?advertisementheader\. -advertisementheader.*. -# /advertisementAPI/* (easylist.txt: 2799) -/(.*/)?advertisementAPI/.* -# /advertisement_ (easylist.txt: 2798) -/(.*/)?advertisement_ -# /advertisement3. (easylist.txt: 2797) -/(.*/)?advertisement3\. -advertisement3.*. -# /advertisement2. (easylist.txt: 2796) -/(.*/)?advertisement2\. -advertisement2.*. -# /advertisement160. (easylist.txt: 2795) -/(.*/)?advertisement160\. -advertisement160.*. -# /advertisement1. (easylist.txt: 2794) -/(.*/)?advertisement1\. -advertisement1.*. -# /advertisement/* (easylist.txt: 2793) -/(.*/)?advertisement/.* -# /advertisement. (easylist.txt: 2792) -/(.*/)?advertisement\. -advertisement.*. -# /advertisement- (easylist.txt: 2791) -/(.*/)?advertisement- -advertisement-*. -# /advertisehere. (easylist.txt: 2790) -/(.*/)?advertisehere\. -advertisehere.*. -# /advertise_ (easylist.txt: 2789) -/(.*/)?advertise_ -# /advertise125x125. (easylist.txt: 2788) -/(.*/)?advertise125x125\. -advertise125x125.*. -# /advertise/* (easylist.txt: 2787) -/(.*/)?advertise/.* -# /advertise- (easylist.txt: 2785) -/(.*/)?advertise- -advertise-*. -# /advertical. (easylist.txt: 2784) -/(.*/)?advertical\. -advertical.*. -# /adverthorisontalfullwidth. (easylist.txt: 2783) -/(.*/)?adverthorisontalfullwidth\. -adverthorisontalfullwidth.*. -# /adverth. (easylist.txt: 2782) -/(.*/)?adverth\. -adverth.*. -# /advertguruonline1. (easylist.txt: 2781) -/(.*/)?advertguruonline1\. -advertguruonline1.*. -# /advertbox. (easylist.txt: 2780) -/(.*/)?advertbox\. -advertbox.*. -# /advertbanner2. (easylist.txt: 2779) -/(.*/)?advertbanner2\. -advertbanner2.*. -# /advertbanner. (easylist.txt: 2778) -/(.*/)?advertbanner\. -advertbanner.*. -# /advert_ (easylist.txt: 2777) -/(.*/)?advert_ -# /advert? (easylist.txt: 2776) -/(.*/)?advert\? -# /advert6. (easylist.txt: 2775) -/(.*/)?advert6\. -advert6.*. -# /advert5. (easylist.txt: 2774) -/(.*/)?advert5\. -advert5.*. -# /advert4. (easylist.txt: 2773) -/(.*/)?advert4\. -advert4.*. -# /advert37. (easylist.txt: 2772) -/(.*/)?advert37\. -advert37.*. -# /advert36. (easylist.txt: 2771) -/(.*/)?advert36\. -advert36.*. -# /advert35. (easylist.txt: 2770) -/(.*/)?advert35\. -advert35.*. -# /advert34. (easylist.txt: 2769) -/(.*/)?advert34\. -advert34.*. -# /advert33. (easylist.txt: 2768) -/(.*/)?advert33\. -advert33.*. -# /advert32. (easylist.txt: 2767) -/(.*/)?advert32\. -advert32.*. -# /advert31. (easylist.txt: 2766) -/(.*/)?advert31\. -advert31.*. -# /advert3. (easylist.txt: 2765) -/(.*/)?advert3\. -advert3.*. -# /advert2. (easylist.txt: 2764) -/(.*/)?advert2\. -advert2.*. -# /advert1/* (easylist.txt: 2763) -/(.*/)?advert1/.* -# /advert1. (easylist.txt: 2762) -/(.*/)?advert1\. -advert1.*. -# /advert01. (easylist.txt: 2761) -/(.*/)?advert01\. -advert01.*. -# /advert/* (easylist.txt: 2760) -/(.*/)?advert/.* -# /advert. (easylist.txt: 2759) -/(.*/)?advert\. -advert.*. -# /advert- (easylist.txt: 2758) -/(.*/)?advert- -advert-*. -# /adversting? (easylist.txt: 2757) -/(.*/)?adversting\? -# /adversting/* (easylist.txt: 2756) -/(.*/)?adversting/.* -# /adverserve. (easylist.txt: 2755) -/(.*/)?adverserve\. -adverserve.*. -# /adverfisement2. (easylist.txt: 2754) -/(.*/)?adverfisement2\. -adverfisement2.*. -# /adverfisement. (easylist.txt: 2753) -/(.*/)?adverfisement\. -adverfisement.*. -# /adver_hor. (easylist.txt: 2752) -/(.*/)?adver_hor\. -# /adver. (easylist.txt: 2751) -/(.*/)?adver\. -adver.*. -# /adver-left. (easylist.txt: 2750) -/(.*/)?adver-left\. -adver-left.*. -# /advengine. (easylist.txt: 2749) -/(.*/)?advengine\. -advengine.*. -# /advdoc/* (easylist.txt: 2748) -/(.*/)?advdoc/.* -# /advdl. (easylist.txt: 2747) -/(.*/)?advdl\. -advdl.*. -# /advcounter. (easylist.txt: 2746) -/(.*/)?advcounter\. -advcounter.*. -# /advcontents. (easylist.txt: 2745) -/(.*/)?advcontents\. -advcontents.*. -# /advbanners/* (easylist.txt: 2744) -/(.*/)?advbanners/.* -# /advbanner/* (easylist.txt: 2743) -/(.*/)?advbanner/.* -# /advault. (easylist.txt: 2742) -/(.*/)?advault\. -advault.*. -# /advanced-ads- (easylist.txt: 2741) -/(.*/)?advanced-ads- -advanced-ads-*. -# /advaluewriter. (easylist.txt: 2740) -/(.*/)?advaluewriter\. -advaluewriter.*. -# /advalue_ (easylist.txt: 2739) -/(.*/)?advalue_ -# /advalue/* (easylist.txt: 2738) -/(.*/)?advalue/.* -# /adv_vertical. (easylist.txt: 2737) -/(.*/)?adv_vertical\. -# /adv_vert. (easylist.txt: 2736) -/(.*/)?adv_vert\. -# /adv_top. (easylist.txt: 2735) -/(.*/)?adv_top\. -# /adv_teasers. (easylist.txt: 2734) -/(.*/)?adv_teasers\. -# /adv_server. (easylist.txt: 2733) -/(.*/)?adv_server\. -# /adv_script_ (easylist.txt: 2732) -/(.*/)?adv_script_ -# /adv_player_ (easylist.txt: 2731) -/(.*/)?adv_player_ -# /adv_out. (easylist.txt: 2730) -/(.*/)?adv_out\. -# /adv_manager_ (easylist.txt: 2729) -/(.*/)?adv_manager_ -# /adv_link. (easylist.txt: 2728) -/(.*/)?adv_link\. -# /adv_library3. (easylist.txt: 2727) -/(.*/)?adv_library3\. -# /adv_left_ (easylist.txt: 2726) -/(.*/)?adv_left_ -# /adv_image/* (easylist.txt: 2725) -/(.*/)?adv_image/.* -# /adv_horiz. (easylist.txt: 2724) -/(.*/)?adv_horiz\. -# /adv_frame/* (easylist.txt: 2723) -/(.*/)?adv_frame/.* -# /adv_flash. (easylist.txt: 2722) -/(.*/)?adv_flash\. -# /adv_display. (easylist.txt: 2721) -/(.*/)?adv_display\. -# /adv_burt_ (easylist.txt: 2720) -/(.*/)?adv_burt_ -# /adv_box_ (easylist.txt: 2719) -/(.*/)?adv_box_ -# /adv_banner_ (easylist.txt: 2718) -/(.*/)?adv_banner_ -# /adv_background/* (easylist.txt: 2717) -/(.*/)?adv_background/.* -# /adv_468. (easylist.txt: 2716) -/(.*/)?adv_468\. -# /adv_2. (easylist.txt: 2715) -/(.*/)?adv_2\. -# /adv8. (easylist.txt: 2714) -/(.*/)?adv8\. -adv8.*. -# /adv6. (easylist.txt: 2713) -/(.*/)?adv6\. -adv6.*. -# /adv5. (easylist.txt: 2712) -/(.*/)?adv5\. -adv5.*. -# /Adv468. (easylist.txt: 2711) -/(.*/)?Adv468\. -Adv468.*. -# /adv4. (easylist.txt: 2710) -/(.*/)?adv4\. -adv4.*. -# /adv3. (easylist.txt: 2709) -/(.*/)?adv3\. -adv3.*. -# /adv2. (easylist.txt: 2708) -/(.*/)?adv2\. -adv2.*. -# /adv180x150. (easylist.txt: 2707) -/(.*/)?adv180x150\. -adv180x150.*. -# /Adv150. (easylist.txt: 2706) -/(.*/)?Adv150\. -Adv150.*. -# /adv1. (easylist.txt: 2705) -/(.*/)?adv1\. -adv1.*. -# /adv03. (easylist.txt: 2704) -/(.*/)?adv03\. -adv03.*. -# /adv02. (easylist.txt: 2703) -/(.*/)?adv02\. -adv02.*. -# /adv/topBanners. (easylist.txt: 2702) -/(.*/)?adv/topBanners\. -# /adv/sprintf- (easylist.txt: 2701) -/(.*/)?adv/sprintf- -# /adv/sponsor/* (easylist.txt: 2700) -/(.*/)?adv/sponsor/.* -# /adv/skin_ (easylist.txt: 2699) -/(.*/)?adv/skin_ -# /adv/skin. (easylist.txt: 2698) -/(.*/)?adv/skin\. -# /adv/search. (easylist.txt: 2697) -/(.*/)?adv/search\. -# /adv/script2. (easylist.txt: 2696) -/(.*/)?adv/script2\. -# /adv/script1. (easylist.txt: 2695) -/(.*/)?adv/script1\. -# /adv/rdb. (easylist.txt: 2694) -/(.*/)?adv/rdb\. -# /adv/preroll_ (easylist.txt: 2693) -/(.*/)?adv/preroll_ -# /adv/mobile/* (easylist.txt: 2692) -/(.*/)?adv/mobile/.* -# /adv/mjx. (easylist.txt: 2691) -/(.*/)?adv/mjx\. -# /adv/managers/* (easylist.txt: 2690) -/(.*/)?adv/managers/.* -# /adv/lrec_ (easylist.txt: 2689) -/(.*/)?adv/lrec_ -# /adv/kelkoo_ (easylist.txt: 2688) -/(.*/)?adv/kelkoo_ -# /adv/kelkoo/* (easylist.txt: 2687) -/(.*/)?adv/kelkoo/.* -# /adv/interstitial. (easylist.txt: 2686) -/(.*/)?adv/interstitial\. -# /adv/box- (easylist.txt: 2685) -/(.*/)?adv/box- -# /adv/bottomBanners. (easylist.txt: 2684) -/(.*/)?adv/bottomBanners\. -# /adv/banner1/* (easylist.txt: 2683) -/(.*/)?adv/banner1/.* -# /adv/banner/* (easylist.txt: 2682) -/(.*/)?adv/banner/.* -# /adv/background/* (easylist.txt: 2681) -/(.*/)?adv/background/.* -# /adv/adv_ (easylist.txt: 2680) -/(.*/)?adv/adv_ -# /adv/ads/* (easylist.txt: 2679) -/(.*/)?adv/ads/.* -# /adv/adriver (easylist.txt: 2678) -/(.*/)?adv/adriver -# /adv.png (easylist.txt: 2677) -/(.*/)?adv\.png -adv.png*. -# /adv.php (easylist.txt: 2676) -/(.*/)?adv\.php -adv.php*. -# /adv.jsp (easylist.txt: 2675) -/(.*/)?adv\.jsp -adv.jsp*. -# /adv.html (easylist.txt: 2674) -/(.*/)?adv\.html -adv.html*. -# /adv.css? (easylist.txt: 2673) -/(.*/)?adv\.css\? -# /adv.asp (easylist.txt: 2672) -/(.*/)?adv\.asp -adv.asp*. -# /adv-socialbar- (easylist.txt: 2671) -/(.*/)?adv-socialbar- -adv-socialbar-*. -# /adv-scroll. (easylist.txt: 2670) -/(.*/)?adv-scroll\. -adv-scroll.*. -# /adv-f. (easylist.txt: 2669) -/(.*/)?adv-f\. -adv-f.*. -# /adv-ext- (easylist.txt: 2668) -/(.*/)?adv-ext- -adv-ext-*. -# /adv-expand/* (easylist.txt: 2667) -/(.*/)?adv-expand/.* -# /adv-div- (easylist.txt: 2666) -/(.*/)?adv-div- -adv-div-*. -# /adv-banners/* (easylist.txt: 2665) -/(.*/)?adv-banners/.* -# /adv-bannerize- (easylist.txt: 2664) -/(.*/)?adv-bannerize- -adv-bannerize-*. -# /adv-banner. (easylist.txt: 2663) -/(.*/)?adv-banner\. -adv-banner.*. -# /adv-2. (easylist.txt: 2662) -/(.*/)?adv-2\. -adv-2.*. -# /adv-1. (easylist.txt: 2661) -/(.*/)?adv-1\. -adv-1.*. -# /aduxads/* (easylist.txt: 2660) -/(.*/)?aduxads/.* -# /aduxads. (easylist.txt: 2659) -/(.*/)?aduxads\. -aduxads.*. -# /adutils. (easylist.txt: 2658) -/(.*/)?adutils\. -adutils.*. -# /adutil. (easylist.txt: 2657) -/(.*/)?adutil\. -adutil.*. -# /adunix. (easylist.txt: 2656) -/(.*/)?adunix\. -adunix.*. -# /adunittop| (easylist.txt: 2655) -/(.*/)?adunittop$ -# /adunits? (easylist.txt: 2654) -/(.*/)?adunits\? -# /adunits/* (easylist.txt: 2653) -/(.*/)?adunits/.* -# /adunits. (easylist.txt: 2652) -/(.*/)?adunits\. -adunits.*. -# /adunit/* (easylist.txt: 2651) -/(.*/)?adunit/.* -# /adunit. (easylist.txt: 2650) -/(.*/)?adunit\. -adunit.*. -# /adultimate. (easylist.txt: 2649) -/(.*/)?adultimate\. -adultimate.*. -# /adultadworldpop_ (easylist.txt: 2648) -/(.*/)?adultadworldpop_ -# /adtype= (easylist.txt: 2647) -/(.*/)?adtype= -# /adtype. (easylist.txt: 2646) -/(.*/)?adtype\. -adtype.*. -# /adtxt. (easylist.txt: 2645) -/(.*/)?adtxt\. -adtxt.*. -# /adtvideo. (easylist.txt: 2644) -/(.*/)?adtvideo\. -adtvideo.*. -# /adttext. (easylist.txt: 2643) -/(.*/)?adttext\. -adttext.*. -# /adttext- (easylist.txt: 2642) -/(.*/)?adttext- -adttext-*. -# /adtraff. (easylist.txt: 2641) -/(.*/)?adtraff\. -adtraff.*. -# /adtracking/* (easylist.txt: 2640) -/(.*/)?adtracking/.* -# /adtracking. (easylist.txt: 2639) -/(.*/)?adtracking\. -adtracking.*. -# /adtracker? (easylist.txt: 2638) -/(.*/)?adtracker\? -# /adtracker/* (easylist.txt: 2637) -/(.*/)?adtracker/.* -# /adtracker. (easylist.txt: 2636) -/(.*/)?adtracker\. -adtracker.*. -# /adtrack/* (easylist.txt: 2635) -/(.*/)?adtrack/.* -# /adtrack. (easylist.txt: 2634) -/(.*/)?adtrack\. -adtrack.*. -# /adtopsky. (easylist.txt: 2633) -/(.*/)?adtopsky\. -adtopsky.*. -# /adtopright. (easylist.txt: 2632) -/(.*/)?adtopright\. -adtopright.*. -# /adtopmidsky. (easylist.txt: 2631) -/(.*/)?adtopmidsky\. -adtopmidsky.*. -# /adtopleft. (easylist.txt: 2630) -/(.*/)?adtopleft\. -adtopleft.*. -# /adtopcenter. (easylist.txt: 2629) -/(.*/)?adtopcenter\. -adtopcenter.*. -# /adtop728. (easylist.txt: 2628) -/(.*/)?adtop728\. -adtop728.*. -# /adtop300. (easylist.txt: 2627) -/(.*/)?adtop300\. -adtop300.*. -# /adtop160. (easylist.txt: 2626) -/(.*/)?adtop160\. -adtop160.*. -# /adtop. (easylist.txt: 2625) -/(.*/)?adtop\. -adtop.*. -# /adtooltip/* (easylist.txt: 2624) -/(.*/)?adtooltip/.* -# /adtools2. (easylist.txt: 2623) -/(.*/)?adtools2\. -adtools2.*. -# /adtools/* (easylist.txt: 2622) -/(.*/)?adtools/.* -# /adtool/* (easylist.txt: 2621) -/(.*/)?adtool/.* -# /adtonomy. (easylist.txt: 2620) -/(.*/)?adtonomy\. -adtonomy.*. -# /adtomo/* (easylist.txt: 2619) -/(.*/)?adtomo/.* -# /adtology. (easylist.txt: 2618) -/(.*/)?adtology\. -adtology.*. -# /adtitle. (easylist.txt: 2617) -/(.*/)?adtitle\. -adtitle.*. -# /adtimage. (easylist.txt: 2616) -/(.*/)?adtimage\. -adtimage.*. -# /adtextmpu2. (easylist.txt: 2615) -/(.*/)?adtextmpu2\. -adtextmpu2.*. -# /adtext_ (easylist.txt: 2614) -/(.*/)?adtext_ -# /adtext4. (easylist.txt: 2613) -/(.*/)?adtext4\. -adtext4.*. -# /adtext2. (easylist.txt: 2612) -/(.*/)?adtext2\. -adtext2.*. -# /adtext. (easylist.txt: 2611) -/(.*/)?adtext\. -adtext.*. -# /adtest/* (easylist.txt: 2610) -/(.*/)?adtest/.* -# /adtest. (easylist.txt: 2609) -/(.*/)?adtest\. -adtest.*. -# /adtechscript. (easylist.txt: 2608) -/(.*/)?adtechscript\. -adtechscript.*. -# /adtechHeader. (easylist.txt: 2607) -/(.*/)?adtechHeader\. -adtechHeader.*. -# /adtechglobalsettings.js (easylist.txt: 2606) -/(.*/)?adtechglobalsettings\.js -adtechglobalsettings.js*. -# /adtech_ (easylist.txt: 2605) -/(.*/)?adtech_ -# /adtech; (easylist.txt: 2604) -/(.*/)?adtech; -# /adtech/* (easylist.txt: 2603) -/(.*/)?adtech/.* -# /adtech. (easylist.txt: 2602) -/(.*/)?adtech\. -adtech.*. -# /adtech- (easylist.txt: 2601) -/(.*/)?adtech- -adtech-*. -# /adtaobao. (easylist.txt: 2600) -/(.*/)?adtaobao\. -adtaobao.*. -# /adtaily_ (easylist.txt: 2599) -/(.*/)?adtaily_ -# /adtagtranslator. (easylist.txt: 2598) -/(.*/)?adtagtranslator\. -adtagtranslator.*. -# /adtagtc. (easylist.txt: 2597) -/(.*/)?adtagtc\. -adtagtc.*. -# /adtags/* (easylist.txt: 2596) -/(.*/)?adtags/.* -# /adtags. (easylist.txt: 2595) -/(.*/)?adtags\. -adtags.*. -# /adTagRequest. (easylist.txt: 2594) -/(.*/)?adTagRequest\. -adTagRequest.*. -# /adtago. (easylist.txt: 2593) -/(.*/)?adtago\. -adtago.*. -# /adtaggingsubsec. (easylist.txt: 2592) -/(.*/)?adtaggingsubsec\. -adtaggingsubsec.*. -# /adtagcms. (easylist.txt: 2591) -/(.*/)?adtagcms\. -adtagcms.*. -# /adtag_ (easylist.txt: 2590) -/(.*/)?adtag_ -# /adtag? (easylist.txt: 2589) -/(.*/)?adtag\? -# /adtag/* (easylist.txt: 2588) -/(.*/)?adtag/.* -# /adtag. (easylist.txt: 2587) -/(.*/)?adtag\. -adtag.*. -# /adtadd1. (easylist.txt: 2586) -/(.*/)?adtadd1\. -adtadd1.*. -# /adtabs. (easylist.txt: 2585) -/(.*/)?adtabs\. -adtabs.*. -# /adtable_ (easylist.txt: 2584) -/(.*/)?adtable_ -# /ads~adsize~ (easylist.txt: 2583) -/(.*/)?ads~adsize~ -# /adsystem/* (easylist.txt: 2582) -/(.*/)?adsystem/.* -# /adsystem. (easylist.txt: 2581) -/(.*/)?adsystem\. -adsystem.*. -# /adsys/* (easylist.txt: 2580) -/(.*/)?adsys/.* -# /adsys. (easylist.txt: 2579) -/(.*/)?adsys\. -adsys.*. -# /adsyndication/* (easylist.txt: 2578) -/(.*/)?adsyndication/.* -# /adsyndication. (easylist.txt: 2577) -/(.*/)?adsyndication\. -adsyndication.*. -# /adsync/* (easylist.txt: 2576) -/(.*/)?adsync/.* -# /adsxml/* (easylist.txt: 2575) -/(.*/)?adsxml/.* -# /adsx_728. (easylist.txt: 2574) -/(.*/)?adsx_728\. -# /adsx728. (easylist.txt: 2573) -/(.*/)?adsx728\. -adsx728.*. -# /adsx/* (easylist.txt: 2572) -/(.*/)?adsx/.* -# /adswrapperintl. (easylist.txt: 2571) -/(.*/)?adswrapperintl\. -adswrapperintl.*. -# /adswrapper3. (easylist.txt: 2570) -/(.*/)?adswrapper3\. -adswrapper3.*. -# /adswrapper. (easylist.txt: 2569) -/(.*/)?adswrapper\. -adswrapper.*. -# /adsword. (easylist.txt: 2568) -/(.*/)?adsword\. -adsword.*. -# /adswidejs. (easylist.txt: 2567) -/(.*/)?adswidejs\. -adswidejs.*. -# /adswide. (easylist.txt: 2566) -/(.*/)?adswide\. -adswide.*. -# /adsweb. (easylist.txt: 2565) -/(.*/)?adsweb\. -adsweb.*. -# /adswap/* (easylist.txt: 2564) -/(.*/)?adswap/.* -# /adswap. (easylist.txt: 2563) -/(.*/)?adswap\. -adswap.*. -# /adswap- (easylist.txt: 2562) -/(.*/)?adswap- -adswap-*. -# /adsvr2. (easylist.txt: 2561) -/(.*/)?adsvr2\. -adsvr2.*. -# /adsvr. (easylist.txt: 2560) -/(.*/)?adsvr\. -adsvr.*. -# /adsvo. (easylist.txt: 2559) -/(.*/)?adsvo\. -adsvo.*. -# /adsvariables. (easylist.txt: 2558) -/(.*/)?adsvariables\. -adsvariables.*. -# /adsup. (easylist.txt: 2557) -/(.*/)?adsup\. -adsup.*. -# /adsummos2. (easylist.txt: 2556) -/(.*/)?adsummos2\. -adsummos2.*. -# /adsummos. (easylist.txt: 2555) -/(.*/)?adsummos\. -adsummos.*. -# /adstyle. (easylist.txt: 2554) -/(.*/)?adstyle\. -adstyle.*. -# /adstx. (easylist.txt: 2553) -/(.*/)?adstx\. -adstx.*. -# /adstubs/* (easylist.txt: 2552) -/(.*/)?adstubs/.* -# /adstube/* (easylist.txt: 2551) -/(.*/)?adstube/.* -# /adstub. (easylist.txt: 2550) -/(.*/)?adstub\. -adstub.*. -# /adstrm/* (easylist.txt: 2549) -/(.*/)?adstrm/.* -# /adstrk. (easylist.txt: 2548) -/(.*/)?adstrk\. -adstrk.*. -# /adStrip. (easylist.txt: 2547) -/(.*/)?adStrip\. -adStrip.*. -# /adstreamjscontroller. (easylist.txt: 2546) -/(.*/)?adstreamjscontroller\. -adstreamjscontroller.*. -# /adstream_ (easylist.txt: 2545) -/(.*/)?adstream_ -# /adstream. (easylist.txt: 2544) -/(.*/)?adstream\. -adstream.*. -# /adStrategies/* (easylist.txt: 2543) -/(.*/)?adStrategies/.* -# /adstract/* (easylist.txt: 2542) -/(.*/)?adstract/.* -# /adstracking. (easylist.txt: 2541) -/(.*/)?adstracking\. -adstracking.*. -# /adstorage. (easylist.txt: 2540) -/(.*/)?adstorage\. -adstorage.*. -# /adstop_ (easylist.txt: 2539) -/(.*/)?adstop_ -# /adstop728. (easylist.txt: 2538) -/(.*/)?adstop728\. -adstop728.*. -# /adstop. (easylist.txt: 2537) -/(.*/)?adstop\. -adstop.*. -# /adstitle. (easylist.txt: 2536) -/(.*/)?adstitle\. -adstitle.*. -# /adstemplate/* (easylist.txt: 2535) -/(.*/)?adstemplate/.* -# /adstatic/* (easylist.txt: 2534) -/(.*/)?adstatic/.* -# /adstatic. (easylist.txt: 2533) -/(.*/)?adstatic\. -adstatic.*. -# /adstakeover. (easylist.txt: 2532) -/(.*/)?adstakeover\. -adstakeover.*. -# /adstacodaeu. (easylist.txt: 2531) -/(.*/)?adstacodaeu\. -adstacodaeu.*. -# /adssrv. (easylist.txt: 2530) -/(.*/)?adssrv\. -adssrv.*. -# /adssp. (easylist.txt: 2529) -/(.*/)?adssp\. -adssp.*. -# /adsshow/* (easylist.txt: 2528) -/(.*/)?adsshow/.* -# /AdsShow. (easylist.txt: 2527) -/(.*/)?AdsShow\. -AdsShow.*. -# /adsserver. (easylist.txt: 2526) -/(.*/)?adsserver\. -adsserver.*. -# /adsserv. (easylist.txt: 2525) -/(.*/)?adsserv\. -adsserv.*. -# /adsscript. (easylist.txt: 2524) -/(.*/)?adsscript\. -adsscript.*. -# /adss.asp (easylist.txt: 2523) -/(.*/)?adss\.asp -adss.asp*. -# /adsrv2/* (easylist.txt: 2522) -/(.*/)?adsrv2/.* -# /adsrv/* (easylist.txt: 2521) -/(.*/)?adsrv/.* -# /adsrv. (easylist.txt: 2520) -/(.*/)?adsrv\. -adsrv.*. -# /adsrules/* (easylist.txt: 2519) -/(.*/)?adsrules/.* -# /adsrule. (easylist.txt: 2518) -/(.*/)?adsrule\. -adsrule.*. -# /adsrotator. (easylist.txt: 2517) -/(.*/)?adsrotator\. -adsrotator.*. -# /AdsRotateNEWHeader. (easylist.txt: 2516) -/(.*/)?AdsRotateNEWHeader\. -AdsRotateNEWHeader.*. -# /AdsRotateNEW2right. (easylist.txt: 2515) -/(.*/)?AdsRotateNEW2right\. -AdsRotateNEW2right.*. -# /AdsRotateNEW1right. (easylist.txt: 2514) -/(.*/)?AdsRotateNEW1right\. -AdsRotateNEW1right.*. -# /adsrotateheader. (easylist.txt: 2513) -/(.*/)?adsrotateheader\. -adsrotateheader.*. -# /adsrotate2left. (easylist.txt: 2512) -/(.*/)?adsrotate2left\. -adsrotate2left.*. -# /adsrotate1right. (easylist.txt: 2511) -/(.*/)?adsrotate1right\. -adsrotate1right.*. -# /adsrotate1left. (easylist.txt: 2510) -/(.*/)?adsrotate1left\. -adsrotate1left.*. -# /adsrotate. (easylist.txt: 2509) -/(.*/)?adsrotate\. -adsrotate.*. -# /adsrot2. (easylist.txt: 2508) -/(.*/)?adsrot2\. -adsrot2.*. -# /adsrot. (easylist.txt: 2507) -/(.*/)?adsrot\. -adsrot.*. -# /adsright. (easylist.txt: 2506) -/(.*/)?adsright\. -adsright.*. -# /adsrich. (easylist.txt: 2505) -/(.*/)?adsrich\. -adsrich.*. -# /adsresources/* (easylist.txt: 2504) -/(.*/)?adsresources/.* -# /adsreporting/* (easylist.txt: 2503) -/(.*/)?adsreporting/.* -# /adsremote. (easylist.txt: 2502) -/(.*/)?adsremote\. -adsremote.*. -# /adsrc300. (easylist.txt: 2501) -/(.*/)?adsrc300\. -adsrc300.*. -# /adsrc. (easylist.txt: 2500) -/(.*/)?adsrc\. -adsrc.*. -# /adsquareleft. (easylist.txt: 2499) -/(.*/)?adsquareleft\. -adsquareleft.*. -# /adsquare. (easylist.txt: 2498) -/(.*/)?adsquare\. -adsquare.*. -# /adsq/* (easylist.txt: 2497) -/(.*/)?adsq/.* -# /AdsPublisher. (easylist.txt: 2496) -/(.*/)?AdsPublisher\. -AdsPublisher.*. -# /adspro/* (easylist.txt: 2495) -/(.*/)?adspro/.* -# /adspots/* (easylist.txt: 2494) -/(.*/)?adspots/.* -# /adspot_ (easylist.txt: 2493) -/(.*/)?adspot_ -# /adspot/* (easylist.txt: 2492) -/(.*/)?adspot/.* -# /adspot. (easylist.txt: 2491) -/(.*/)?adspot\. -adspot.*. -# /adsponsor. (easylist.txt: 2490) -/(.*/)?adsponsor\. -adsponsor.*. -# /adsplupu. (easylist.txt: 2489) -/(.*/)?adsplupu\. -adsplupu.*. -# /adsPlugin/* (easylist.txt: 2488) -/(.*/)?adsPlugin/.* -# /AdsPlugin. (easylist.txt: 2487) -/(.*/)?AdsPlugin\. -AdsPlugin.*. -# /Adsplex- (easylist.txt: 2486) -/(.*/)?Adsplex- -Adsplex-*. -# /adsplay. (easylist.txt: 2485) -/(.*/)?adsplay\. -adsplay.*. -# /adspeeler/* (easylist.txt: 2484) -/(.*/)?adspeeler/.* -# /adspan. (easylist.txt: 2483) -/(.*/)?adspan\. -adspan.*. -# /adspacer. (easylist.txt: 2482) -/(.*/)?adspacer\. -adspacer.*. -# /adspace? (easylist.txt: 2481) -/(.*/)?adspace\? -# /adspace2. (easylist.txt: 2480) -/(.*/)?adspace2\. -adspace2.*. -# /AdSpace160x60. (easylist.txt: 2479) -/(.*/)?AdSpace160x60\. -AdSpace160x60.*. -# /adspace1. (easylist.txt: 2478) -/(.*/)?adspace1\. -adspace1.*. -# /adspace/* (easylist.txt: 2477) -/(.*/)?adspace/.* -# /adspace. (easylist.txt: 2476) -/(.*/)?adspace\. -adspace.*. -# /adsp/* (easylist.txt: 2475) -/(.*/)?adsp/.* -# /adsoverlay_ (easylist.txt: 2474) -/(.*/)?adsoverlay_ -# /adsource_ (easylist.txt: 2473) -/(.*/)?adsource_ -# /adsopenx/* (easylist.txt: 2472) -/(.*/)?adsopenx/.* -# /adsonar. (easylist.txt: 2471) -/(.*/)?adsonar\. -adsonar.*. -# /adsniptrack. (easylist.txt: 2470) -/(.*/)?adsniptrack\. -adsniptrack.*. -# /adsnippet. (easylist.txt: 2469) -/(.*/)?adsnippet\. -adsnippet.*. -# /adsnip. (easylist.txt: 2468) -/(.*/)?adsnip\. -adsnip.*. -# /adsnew/* (easylist.txt: 2467) -/(.*/)?adsnew/.* -# /adsnew. (easylist.txt: 2466) -/(.*/)?adsnew\. -adsnew.*. -# /adsmodules/* (easylist.txt: 2465) -/(.*/)?adsmodules/.* -# /adsmm.dll/* (easylist.txt: 2464) -/(.*/)?adsmm\.dll/.* -adsmm.dll/.* -# /adsmedia_ (easylist.txt: 2463) -/(.*/)?adsmedia_ -# /adsManagerV2. (easylist.txt: 2462) -/(.*/)?adsManagerV2\. -adsManagerV2.*. -# /adsmanager/* (easylist.txt: 2461) -/(.*/)?adsmanager/.* -# /adsmanagement/* (easylist.txt: 2460) -/(.*/)?adsmanagement/.* -# /adsm2. (easylist.txt: 2459) -/(.*/)?adsm2\. -adsm2.*. -# /adslugs/* (easylist.txt: 2458) -/(.*/)?adslugs/.* -# /adslug_ (easylist.txt: 2457) -/(.*/)?adslug_ -# /adslug- (easylist.txt: 2456) -/(.*/)?adslug- -adslug-*. -# /adslots. (easylist.txt: 2455) -/(.*/)?adslots\. -adslots.*. -# /adsline. (easylist.txt: 2454) -/(.*/)?adsline\. -adsline.*. -# /adslides. (easylist.txt: 2453) -/(.*/)?adslides\. -adslides.*. -# /adslide. (easylist.txt: 2452) -/(.*/)?adslide\. -adslide.*. -# /adskyscraper. (easylist.txt: 2451) -/(.*/)?adskyscraper\. -adskyscraper.*. -# /adskyright. (easylist.txt: 2450) -/(.*/)?adskyright\. -adskyright.*. -# /adsky. (easylist.txt: 2449) -/(.*/)?adsky\. -adsky.*. -# /adskin/* (easylist.txt: 2448) -/(.*/)?adskin/.* -# /adsjs. (easylist.txt: 2447) -/(.*/)?adsjs\. -adsjs.*. -# /adsites/* (easylist.txt: 2446) -/(.*/)?adsites/.* -# /adsite/* (easylist.txt: 2445) -/(.*/)?adsite/.* -# /adsinsert. (easylist.txt: 2444) -/(.*/)?adsinsert\. -adsinsert.*. -# /adsindie/* (easylist.txt: 2443) -/(.*/)?adsindie/.* -# /adsinclude. (easylist.txt: 2442) -/(.*/)?adsinclude\. -adsinclude.*. -# /adsImg/* (easylist.txt: 2441) -/(.*/)?adsImg/.* -# /adsimages/* (easylist.txt: 2440) -/(.*/)?adsimages/.* -# /adsimage/* (easylist.txt: 2439) -/(.*/)?adsimage/.* -# /adsign. (easylist.txt: 2438) -/(.*/)?adsign\. -adsign.*. -# /adsiframe/* (easylist.txt: 2437) -/(.*/)?adsiframe/.* -# /adsiframe. (easylist.txt: 2436) -/(.*/)?adsiframe\. -adsiframe.*. -# /adsidebarrect. (easylist.txt: 2435) -/(.*/)?adsidebarrect\. -adsidebarrect.*. -# /adsidebar. (easylist.txt: 2434) -/(.*/)?adsidebar\. -adsidebar.*. -# /adsicon/* (easylist.txt: 2433) -/(.*/)?adsicon/.* -# /adsico3. (easylist.txt: 2432) -/(.*/)?adsico3\. -adsico3.*. -# /adsico2. (easylist.txt: 2431) -/(.*/)?adsico2\. -adsico2.*. -# /adsico. (easylist.txt: 2430) -/(.*/)?adsico\. -adsico.*. -# /adsi-j. (easylist.txt: 2429) -/(.*/)?adsi-j\. -adsi-j.*. -# /adshtml2/* (easylist.txt: 2428) -/(.*/)?adshtml2/.* -# /adshow_ (easylist.txt: 2427) -/(.*/)?adshow_ -# /adshow? (easylist.txt: 2426) -/(.*/)?adshow\? -# /adshow/* (easylist.txt: 2425) -/(.*/)?adshow/.* -# /adshow. (easylist.txt: 2424) -/(.*/)?adshow\. -adshow.*. -# /adshow- (easylist.txt: 2423) -/(.*/)?adshow- -adshow-*. -# /adsheader. (easylist.txt: 2422) -/(.*/)?adsheader\. -adsheader.*. -# /adshare3. (easylist.txt: 2421) -/(.*/)?adshare3\. -adshare3.*. -# /adshare/* (easylist.txt: 2420) -/(.*/)?adshare/.* -# /adshare. (easylist.txt: 2419) -/(.*/)?adshare\. -adshare.*. -# /adshandler. (easylist.txt: 2418) -/(.*/)?adshandler\. -adshandler.*. -# /adsGooglePP3. (easylist.txt: 2417) -/(.*/)?adsGooglePP3\. -adsGooglePP3.*. -# /adsgame. (easylist.txt: 2416) -/(.*/)?adsgame\. -adsgame.*. -# /adsfuse- (easylist.txt: 2415) -/(.*/)?adsfuse- -adsfuse-*. -# /adsframe. (easylist.txt: 2414) -/(.*/)?adsframe\. -adsframe.*. -# /adsfolder/* (easylist.txt: 2413) -/(.*/)?adsfolder/.* -# /adsfloat. (easylist.txt: 2412) -/(.*/)?adsfloat\. -adsfloat.*. -# /adsfinal. (easylist.txt: 2411) -/(.*/)?adsfinal\. -adsfinal.*. -# /adsfiles. (easylist.txt: 2410) -/(.*/)?adsfiles\. -adsfiles.*. -# /adsfile. (easylist.txt: 2409) -/(.*/)?adsfile\. -adsfile.*. -# /adsfetch. (easylist.txt: 2408) -/(.*/)?adsfetch\. -adsfetch.*. -# /adsfac. (easylist.txt: 2407) -/(.*/)?adsfac\. -adsfac.*. -# /adsetup_ (easylist.txt: 2406) -/(.*/)?adsetup_ -# /adsetup. (easylist.txt: 2405) -/(.*/)?adsetup\. -adsetup.*. -# /adsession_ (easylist.txt: 2404) -/(.*/)?adsession_ -# /adsession. (easylist.txt: 2403) -/(.*/)?adsession\. -adsession.*. -# /adserv|*|adtech; (easylist.txt: 2402) -/(.*/)?adserv\|.*\|adtech; -# /AdServlet? (easylist.txt: 2401) -/(.*/)?AdServlet\? -# /adserving_ (easylist.txt: 2400) -/(.*/)?adserving_ -# /adserving/* (easylist.txt: 2399) -/(.*/)?adserving/.* -# /adserving. (easylist.txt: 2398) -/(.*/)?adserving\. -adserving.*. -# /adservice| (easylist.txt: 2397) -/(.*/)?adservice$ -# /adservices/* (easylist.txt: 2396) -/(.*/)?adservices/.* -# /adservice/* (easylist.txt: 2395) -/(.*/)?adservice/.* -# /adservice. (easylist.txt: 2394) -/(.*/)?adservice\. -adservice.*. -# /adservice- (easylist.txt: 2393) -/(.*/)?adservice- -adservice-*. -# /adservervastvideovizu. (easylist.txt: 2392) -/(.*/)?adservervastvideovizu\. -adservervastvideovizu.*. -# /adserverstore. (easylist.txt: 2391) -/(.*/)?adserverstore\. -adserverstore.*. -# /adserversolutions/* (easylist.txt: 2390) -/(.*/)?adserversolutions/.* -# /adservers- (easylist.txt: 2389) -/(.*/)?adservers- -adservers-*. -# /adserverpub? (easylist.txt: 2388) -/(.*/)?adserverpub\? -# /adserverdata. (easylist.txt: 2387) -/(.*/)?adserverdata\. -adserverdata.*. -# /adserver_ (easylist.txt: 2386) -/(.*/)?adserver_ -# /adserver? (easylist.txt: 2385) -/(.*/)?adserver\? -# /adserver8strip. (easylist.txt: 2384) -/(.*/)?adserver8strip\. -adserver8strip.*. -# /adserver7/* (easylist.txt: 2383) -/(.*/)?adserver7/.* -# /adserver3. (easylist.txt: 2382) -/(.*/)?adserver3\. -adserver3.*. -# /adserver2/* (easylist.txt: 2381) -/(.*/)?adserver2/.* -# /adserver2. (easylist.txt: 2380) -/(.*/)?adserver2\. -adserver2.*. -# /adserver1. (easylist.txt: 2379) -/(.*/)?adserver1\. -adserver1.*. -# /adserver1- (easylist.txt: 2378) -/(.*/)?adserver1- -adserver1-*. -# /adserver/* (easylist.txt: 2377) -/(.*/)?adserver/.* -# /adserver. (easylist.txt: 2376) -/(.*/)?adserver\. -adserver.*. -# /adserver- (easylist.txt: 2375) -/(.*/)?adserver- -adserver-*. -# /adserve_ (easylist.txt: 2374) -/(.*/)?adserve_ -# /adserve/* (easylist.txt: 2373) -/(.*/)?adserve/.* -# /adserve. (easylist.txt: 2372) -/(.*/)?adserve\. -adserve.*. -# /adserve- (easylist.txt: 2371) -/(.*/)?adserve- -adserve-*. -# /adserv_ (easylist.txt: 2370) -/(.*/)?adserv_ -# /adserv3. (easylist.txt: 2369) -/(.*/)?adserv3\. -adserv3.*. -# /adserv2. (easylist.txt: 2368) -/(.*/)?adserv2\. -adserv2.*. -# /adserv1. (easylist.txt: 2367) -/(.*/)?adserv1\. -adserv1.*. -# /adserv/* (easylist.txt: 2366) -/(.*/)?adserv/.* -# /adserv. (easylist.txt: 2365) -/(.*/)?adserv\. -adserv.*. -# /adser/* (easylist.txt: 2364) -/(.*/)?adser/.* -# /adseperator_ (easylist.txt: 2363) -/(.*/)?adseperator_ -# /adseo/* (easylist.txt: 2362) -/(.*/)?adseo/.* -# /adseo. (easylist.txt: 2361) -/(.*/)?adseo\. -adseo.*. -# /adsenze. (easylist.txt: 2360) -/(.*/)?adsenze\. -adsenze.*. -# /adsensev2. (easylist.txt: 2359) -/(.*/)?adsensev2\. -adsensev2.*. -# /adsensets. (easylist.txt: 2358) -/(.*/)?adsensets\. -adsensets.*. -# /adsensegoogle. (easylist.txt: 2357) -/(.*/)?adsensegoogle\. -adsensegoogle.*. -# /adsensegb. (easylist.txt: 2356) -/(.*/)?adsensegb\. -adsensegb.*. -# /AdsenseBlockView. (easylist.txt: 2355) -/(.*/)?AdsenseBlockView\. -AdsenseBlockView.*. -# /adsense_ (easylist.txt: 2354) -/(.*/)?adsense_ -# /adsense? (easylist.txt: 2353) -/(.*/)?adsense\? -# /adsense5. (easylist.txt: 2352) -/(.*/)?adsense5\. -adsense5.*. -# /adsense4. (easylist.txt: 2351) -/(.*/)?adsense4\. -adsense4.*. -# /adsense3. (easylist.txt: 2350) -/(.*/)?adsense3\. -adsense3.*. -# /adsense250. (easylist.txt: 2349) -/(.*/)?adsense250\. -adsense250.*. -# /adsense24. (easylist.txt: 2348) -/(.*/)?adsense24\. -adsense24.*. -# /adsense23. (easylist.txt: 2347) -/(.*/)?adsense23\. -adsense23.*. -# /adsense2. (easylist.txt: 2346) -/(.*/)?adsense2\. -adsense2.*. -# /adsense1. (easylist.txt: 2345) -/(.*/)?adsense1\. -adsense1.*. -# /adsense/* (easylist.txt: 2344) -/(.*/)?adsense/.* -# /adsense. (easylist.txt: 2343) -/(.*/)?adsense\. -adsense.*. -# /adsense- (easylist.txt: 2342) -/(.*/)?adsense- -adsense-*. -# /adsEnd. (easylist.txt: 2341) -/(.*/)?adsEnd\. -adsEnd.*. -# /adsenceSearchTop. (easylist.txt: 2340) -/(.*/)?adsenceSearchTop\. -adsenceSearchTop.*. -# /adsenceSearch. (easylist.txt: 2339) -/(.*/)?adsenceSearch\. -adsenceSearch.*. -# /adsence. (easylist.txt: 2338) -/(.*/)?adsence\. -adsence.*. -# /adseller/* (easylist.txt: 2337) -/(.*/)?adseller/.* -# /adsegmentation. (easylist.txt: 2336) -/(.*/)?adsegmentation\. -adsegmentation.*. -# /adsecondary. (easylist.txt: 2335) -/(.*/)?adsecondary\. -adsecondary.*. -# /adSearch? (easylist.txt: 2334) -/(.*/)?adSearch\? -# /adsearch. (easylist.txt: 2333) -/(.*/)?adsearch\. -adsearch.*. -# /adsDynLoad/* (easylist.txt: 2332) -/(.*/)?adsDynLoad/.* -# /adsdyn160x160. (easylist.txt: 2331) -/(.*/)?adsdyn160x160\. -adsdyn160x160.*. -# /adsdm. (easylist.txt: 2330) -/(.*/)?adsdm\. -adsdm.*. -# /adsdfp/* (easylist.txt: 2329) -/(.*/)?adsdfp/.* -# /adsdelivery. (easylist.txt: 2328) -/(.*/)?adsdelivery\. -adsdelivery.*. -# /adsDateValidation. (easylist.txt: 2327) -/(.*/)?adsDateValidation\. -adsDateValidation.*. -# /adsdaqsky_ (easylist.txt: 2326) -/(.*/)?adsdaqsky_ -# /adsdaqbox_ (easylist.txt: 2325) -/(.*/)?adsdaqbox_ -# /adsdaqbanner_ (easylist.txt: 2324) -/(.*/)?adsdaqbanner_ -# /adsdaq_ (easylist.txt: 2323) -/(.*/)?adsdaq_ -# /adscroll. (easylist.txt: 2322) -/(.*/)?adscroll\. -adscroll.*. -# /adscripts3. (easylist.txt: 2321) -/(.*/)?adscripts3\. -adscripts3.*. -# /adscripts2. (easylist.txt: 2320) -/(.*/)?adscripts2\. -adscripts2.*. -# /adscripts1. (easylist.txt: 2319) -/(.*/)?adscripts1\. -adscripts1.*. -# /adscripts/* (easylist.txt: 2318) -/(.*/)?adscripts/.* -# /adscript_ (easylist.txt: 2317) -/(.*/)?adscript_ -# /adscript1. (easylist.txt: 2316) -/(.*/)?adscript1\. -adscript1.*. -# /adscript. (easylist.txt: 2315) -/(.*/)?adscript\. -adscript.*. -# /adscpv/* (easylist.txt: 2314) -/(.*/)?adscpv/.* -# /adscontent2. (easylist.txt: 2313) -/(.*/)?adscontent2\. -adscontent2.*. -# /adscontent. (easylist.txt: 2312) -/(.*/)?adscontent\. -adscontent.*. -# /adscluster. (easylist.txt: 2311) -/(.*/)?adscluster\. -adscluster.*. -# /adscloud. (easylist.txt: 2310) -/(.*/)?adscloud\. -adscloud.*. -# /adscaleskyscraper. (easylist.txt: 2309) -/(.*/)?adscaleskyscraper\. -adscaleskyscraper.*. -# /adscalecontentad. (easylist.txt: 2308) -/(.*/)?adscalecontentad\. -adscalecontentad.*. -# /adscalebigsize. (easylist.txt: 2307) -/(.*/)?adscalebigsize\. -adscalebigsize.*. -# /adscale_ (easylist.txt: 2306) -/(.*/)?adscale_ -# /adscale1. (easylist.txt: 2305) -/(.*/)?adscale1\. -adscale1.*. -# /adscale. (easylist.txt: 2304) -/(.*/)?adscale\. -adscale.*. -# /adsbygoogle. (easylist.txt: 2303) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# /adsbycurse. (easylist.txt: 2302) -/(.*/)?adsbycurse\. -adsbycurse.*. -# /adsby. (easylist.txt: 2301) -/(.*/)?adsby\. -adsby.*. -# /adsbox. (easylist.txt: 2300) -/(.*/)?adsbox\. -adsbox.*. -# /adsbannerjs. (easylist.txt: 2299) -/(.*/)?adsbannerjs\. -adsbannerjs.*. -# /adsbanner/* (easylist.txt: 2298) -/(.*/)?adsbanner/.* -# /adsbanner. (easylist.txt: 2297) -/(.*/)?adsbanner\. -adsbanner.*. -# /adsbanner- (easylist.txt: 2296) -/(.*/)?adsbanner- -adsbanner-*. -# /adsatt. (easylist.txt: 2295) -/(.*/)?adsatt\. -adsatt.*. -# /adsAPI. (easylist.txt: 2294) -/(.*/)?adsAPI\. -adsAPI.*. -# /adsandtps/* (easylist.txt: 2293) -/(.*/)?adsandtps/.* -# /adsandbox. (easylist.txt: 2292) -/(.*/)?adsandbox\. -adsandbox.*. -# /adsample. (easylist.txt: 2291) -/(.*/)?adsample\. -adsample.*. -# /adsame. (easylist.txt: 2290) -/(.*/)?adsame\. -adsame.*. -# /adsales/* (easylist.txt: 2289) -/(.*/)?adsales/.* -# /AdsAjaxRefresh. (easylist.txt: 2288) -/(.*/)?AdsAjaxRefresh\. -AdsAjaxRefresh.*. -# /adsadview. (easylist.txt: 2287) -/(.*/)?adsadview\. -adsadview.*. -# /adsadclient31. (easylist.txt: 2286) -/(.*/)?adsadclient31\. -adsadclient31.*. -# /adsa728. (easylist.txt: 2285) -/(.*/)?adsa728\. -adsa728.*. -# /adsa468. (easylist.txt: 2284) -/(.*/)?adsa468\. -adsa468.*. -# /ads_yahoo. (easylist.txt: 2283) -/(.*/)?ads_yahoo\. -# /Ads_WFC. (easylist.txt: 2282) -/(.*/)?Ads_WFC\. -# /ads_view. (easylist.txt: 2281) -/(.*/)?ads_view\. -# /ads_ui. (easylist.txt: 2280) -/(.*/)?ads_ui\. -# /ads_topbar_ (easylist.txt: 2279) -/(.*/)?ads_topbar_ -# /ads_top_ (easylist.txt: 2278) -/(.*/)?ads_top_ -# /ads_text_ (easylist.txt: 2277) -/(.*/)?ads_text_ -# /ads_start. (easylist.txt: 2276) -/(.*/)?ads_start\. -# /ads_sidebar. (easylist.txt: 2275) -/(.*/)?ads_sidebar\. -# /ads_show_ (easylist.txt: 2274) -/(.*/)?ads_show_ -# /ads_server_ (easylist.txt: 2273) -/(.*/)?ads_server_ -# /ads_reporting/* (easylist.txt: 2272) -/(.*/)?ads_reporting/.* -# /ads_redirect. (easylist.txt: 2271) -/(.*/)?ads_redirect\. -# /ads_r. (easylist.txt: 2270) -/(.*/)?ads_r\. -# /ads_pro/* (easylist.txt: 2269) -/(.*/)?ads_pro/.* -# /ads_premium. (easylist.txt: 2268) -/(.*/)?ads_premium\. -# /ads_php/* (easylist.txt: 2267) -/(.*/)?ads_php/.* -# /ads_patron. (easylist.txt: 2266) -/(.*/)?ads_patron\. -# /ads_openx_ (easylist.txt: 2265) -/(.*/)?ads_openx_ -# /ads_new/* (easylist.txt: 2264) -/(.*/)?ads_new/.* -# /ads_new. (easylist.txt: 2263) -/(.*/)?ads_new\. -# /ads_min_ (easylist.txt: 2262) -/(.*/)?ads_min_ -# /ads_medrec_ (easylist.txt: 2261) -/(.*/)?ads_medrec_ -# /ads_manager. (easylist.txt: 2260) -/(.*/)?ads_manager\. -# /ads_loader. (easylist.txt: 2259) -/(.*/)?ads_loader\. -# /ads_load/* (easylist.txt: 2258) -/(.*/)?ads_load/.* -# /ads_left_ (easylist.txt: 2257) -/(.*/)?ads_left_ -# /ads_leaderboard_ (easylist.txt: 2256) -/(.*/)?ads_leaderboard_ -# /ads_images/* (easylist.txt: 2255) -/(.*/)?ads_images/.* -# /ads_image/* (easylist.txt: 2254) -/(.*/)?ads_image/.* -# /ads_iframe. (easylist.txt: 2253) -/(.*/)?ads_iframe\. -# /ads_ifr. (easylist.txt: 2252) -/(.*/)?ads_ifr\. -# /ads_home_ (easylist.txt: 2251) -/(.*/)?ads_home_ -# /ads_google. (easylist.txt: 2250) -/(.*/)?ads_google\. -# /ads_gnm/* (easylist.txt: 2249) -/(.*/)?ads_gnm/.* -# /ads_global. (easylist.txt: 2248) -/(.*/)?ads_global\. -# /ads_gallery/* (easylist.txt: 2247) -/(.*/)?ads_gallery/.* -# /ads_frame. (easylist.txt: 2246) -/(.*/)?ads_frame\. -# /ads_footer. (easylist.txt: 2245) -/(.*/)?ads_footer\. -# /Ads_Fix. (easylist.txt: 2244) -/(.*/)?Ads_Fix\. -# /ads_files/* (easylist.txt: 2243) -/(.*/)?ads_files/.* -# /ads_event. (easylist.txt: 2242) -/(.*/)?ads_event\. -# /ads_display. (easylist.txt: 2241) -/(.*/)?ads_display\. -# /ads_dfp/* (easylist.txt: 2240) -/(.*/)?ads_dfp/.* -# /ads_controller. (easylist.txt: 2239) -/(.*/)?ads_controller\. -# /ads_config. (easylist.txt: 2238) -/(.*/)?ads_config\. -# /ads_codes/* (easylist.txt: 2237) -/(.*/)?ads_codes/.* -# /ads_code_ (easylist.txt: 2236) -/(.*/)?ads_code_ -# /ads_code. (easylist.txt: 2235) -/(.*/)?ads_code\. -# /ads_box_ (easylist.txt: 2234) -/(.*/)?ads_box_ -# /ads_bottom_ (easylist.txt: 2233) -/(.*/)?ads_bottom_ -# /ads_bottom. (easylist.txt: 2232) -/(.*/)?ads_bottom\. -# /ads_bg. (easylist.txt: 2231) -/(.*/)?ads_bg\. -# /ads_banners/* (easylist.txt: 2230) -/(.*/)?ads_banners/.* -# /ads_banner_ (easylist.txt: 2229) -/(.*/)?ads_banner_ -# /ads_ad_ (easylist.txt: 2228) -/(.*/)?ads_ad_ -# /ads_728_ (easylist.txt: 2227) -/(.*/)?ads_728_ -# /ads_6. (easylist.txt: 2226) -/(.*/)?ads_6\. -# /ads_300_ (easylist.txt: 2225) -/(.*/)?ads_300_ -# /ads_300. (easylist.txt: 2224) -/(.*/)?ads_300\. -# /ads_3. (easylist.txt: 2223) -/(.*/)?ads_3\. -# /ads_160_ (easylist.txt: 2222) -/(.*/)?ads_160_ -# /ads_1. (easylist.txt: 2221) -/(.*/)?ads_1\. -# /ads?zone_id= (easylist.txt: 2220) -/(.*/)?ads\?zone_id= -# /ads?zone= (easylist.txt: 2219) -/(.*/)?ads\?zone= -# /ads?spaceid (easylist.txt: 2218) -/(.*/)?ads\?spaceid -# /ads?id= (easylist.txt: 2217) -/(.*/)?ads\?id= -# /ads?callback (easylist.txt: 2216) -/(.*/)?ads\?callback -# /ads?apid (easylist.txt: 2215) -/(.*/)?ads\?apid -# /ads9/* (easylist.txt: 2214) -/(.*/)?ads9/.* -# /ads9. (easylist.txt: 2213) -/(.*/)?ads9\. -ads9.*. -# /ads88. (easylist.txt: 2212) -/(.*/)?ads88\. -ads88.*. -# /ads8/* (easylist.txt: 2211) -/(.*/)?ads8/.* -# /ads8. (easylist.txt: 2210) -/(.*/)?ads8\. -ads8.*. -# /ads790. (easylist.txt: 2209) -/(.*/)?ads790\. -ads790.*. -# /ads728x90a. (easylist.txt: 2208) -/(.*/)?ads728x90a\. -ads728x90a.*. -# /ads728x90_ (easylist.txt: 2207) -/(.*/)?ads728x90_ -# /ads728adn2. (easylist.txt: 2206) -/(.*/)?ads728adn2\. -ads728adn2.*. -# /ads728. (easylist.txt: 2205) -/(.*/)?ads728\. -ads728.*. -# /ads7/* (easylist.txt: 2204) -/(.*/)?ads7/.* -# /ads7. (easylist.txt: 2203) -/(.*/)?ads7\. -ads7.*. -# /ads620x60/* (easylist.txt: 2202) -/(.*/)?ads620x60/.* -# /ads600- (easylist.txt: 2201) -/(.*/)?ads600- -ads600-*. -# /ads6/* (easylist.txt: 2200) -/(.*/)?ads6/.* -# /ads6. (easylist.txt: 2199) -/(.*/)?ads6\. -ads6.*. -# /ads5t. (easylist.txt: 2198) -/(.*/)?ads5t\. -ads5t.*. -# /ads5/* (easylist.txt: 2197) -/(.*/)?ads5/.* -# /ads5. (easylist.txt: 2196) -/(.*/)?ads5\. -ads5.*. -# /ads4n. (easylist.txt: 2195) -/(.*/)?ads4n\. -ads4n.*. -# /ads4j. (easylist.txt: 2194) -/(.*/)?ads4j\. -ads4j.*. -# /ads468x60_ (easylist.txt: 2193) -/(.*/)?ads468x60_ -# /ads468x60. (easylist.txt: 2192) -/(.*/)?ads468x60\. -ads468x60.*. -# /ads468. (easylist.txt: 2191) -/(.*/)?ads468\. -ads468.*. -# /ads4/* (easylist.txt: 2190) -/(.*/)?ads4/.* -# /ads300x250px. (easylist.txt: 2188) -/(.*/)?ads300x250px\. -ads300x250px.*. -# /ads300x250_ (easylist.txt: 2187) -/(.*/)?ads300x250_ -# /ads300X2502. (easylist.txt: 2186) -/(.*/)?ads300X2502\. -ads300X2502.*. -# /ads300x250. (easylist.txt: 2185) -/(.*/)?ads300x250\. -ads300x250.*. -# /ads300adn2. (easylist.txt: 2184) -/(.*/)?ads300adn2\. -ads300adn2.*. -# /ads300. (easylist.txt: 2183) -/(.*/)?ads300\. -ads300.*. -# /ads3/* (easylist.txt: 2182) -/(.*/)?ads3/.* -# /ads3. (easylist.txt: 2181) -/(.*/)?ads3\. -ads3.*. -# /ads2x300new. (easylist.txt: 2180) -/(.*/)?ads2x300new\. -ads2x300new.*. -# /ads2_ (easylist.txt: 2179) -/(.*/)?ads2_ -# /ads210. (easylist.txt: 2178) -/(.*/)?ads210\. -ads210.*. -# /ads2013/* (easylist.txt: 2177) -/(.*/)?ads2013/.* -# /ads2012/* (easylist.txt: 2176) -/(.*/)?ads2012/.* -# /ads2/* (easylist.txt: 2175) -/(.*/)?ads2/.* -# /ads2. (easylist.txt: 2174) -/(.*/)?ads2\. -ads2.*. -# /ads18. (easylist.txt: 2173) -/(.*/)?ads18\. -ads18.*. -# /ads160x600px. (easylist.txt: 2172) -/(.*/)?ads160x600px\. -ads160x600px.*. -# /ads160x600. (easylist.txt: 2171) -/(.*/)?ads160x600\. -ads160x600.*. -# /ads160x600- (easylist.txt: 2170) -/(.*/)?ads160x600- -ads160x600-*. -# /ads160. (easylist.txt: 2169) -/(.*/)?ads160\. -ads160.*. -# /ads125_ (easylist.txt: 2168) -/(.*/)?ads125_ -# /ads125. (easylist.txt: 2167) -/(.*/)?ads125\. -ads125.*. -# /ads12. (easylist.txt: 2166) -/(.*/)?ads12\. -ads12.*. -# /ads11/* (easylist.txt: 2165) -/(.*/)?ads11/.* -# /ads11. (easylist.txt: 2164) -/(.*/)?ads11\. -ads11.*. -# /ads100. (easylist.txt: 2163) -/(.*/)?ads100\. -ads100.*. -# /ads10/* (easylist.txt: 2162) -/(.*/)?ads10/.* -# /ads10. (easylist.txt: 2161) -/(.*/)?ads10\. -ads10.*. -# /ads1/* (easylist.txt: 2160) -/(.*/)?ads1/.* -# /ads1. (easylist.txt: 2159) -/(.*/)?ads1\. -ads1.*. -# /ads09a/* (easylist.txt: 2158) -/(.*/)?ads09a/.* -# /ads05. (easylist.txt: 2157) -/(.*/)?ads05\. -ads05.*. -# /ads01. (easylist.txt: 2156) -/(.*/)?ads01\. -ads01.*. -# /ads0. (easylist.txt: 2155) -/(.*/)?ads0\. -ads0.*. -# /ads/zone/* (easylist.txt: 2154) -/(.*/)?ads/zone/.* -# /ads/yahoo/* (easylist.txt: 2153) -/(.*/)?ads/yahoo/.* -# /ads/xtcore. (easylist.txt: 2152) -/(.*/)?ads/xtcore\. -# /ads/www/* (easylist.txt: 2151) -/(.*/)?ads/www/.* -# /ads/writecapture. (easylist.txt: 2150) -/(.*/)?ads/writecapture\. -# /ads/widget. (easylist.txt: 2149) -/(.*/)?ads/widget\. -# /ads/widebanner. (easylist.txt: 2148) -/(.*/)?ads/widebanner\. -# /ads/welcomescreen. (easylist.txt: 2147) -/(.*/)?ads/welcomescreen\. -# /ads/webplayer. (easylist.txt: 2146) -/(.*/)?ads/webplayer\. -# /ads/web/* (easylist.txt: 2145) -/(.*/)?ads/web/.* -# /ads/vip_ (easylist.txt: 2144) -/(.*/)?ads/vip_ -# /ads/views/* (easylist.txt: 2143) -/(.*/)?ads/views/.* -# /ads/view. (easylist.txt: 2142) -/(.*/)?ads/view\. -# /ads/video_ (easylist.txt: 2141) -/(.*/)?ads/video_ -# /ads/video/* (easylist.txt: 2140) -/(.*/)?ads/video/.* -# /ads/vg/* (easylist.txt: 2139) -/(.*/)?ads/vg/.* -# /ads/vertical/* (easylist.txt: 2138) -/(.*/)?ads/vertical/.* -# /ads/txt_ (easylist.txt: 2137) -/(.*/)?ads/txt_ -# /ads/triggers/* (easylist.txt: 2136) -/(.*/)?ads/triggers/.* -# /ads/tracker/* (easylist.txt: 2135) -/(.*/)?ads/tracker/.* -# /ads/tr_ (easylist.txt: 2134) -/(.*/)?ads/tr_ -# /ads/top. (easylist.txt: 2133) -/(.*/)?ads/top\. -# /ads/top- (easylist.txt: 2132) -/(.*/)?ads/top- -# /ads/tile- (easylist.txt: 2131) -/(.*/)?ads/tile- -# /ads/third- (easylist.txt: 2130) -/(.*/)?ads/third- -# /ads/text/* (easylist.txt: 2129) -/(.*/)?ads/text/.* -# /ads/targeting. (easylist.txt: 2128) -/(.*/)?ads/targeting\. -# /ads/takeovers/* (easylist.txt: 2127) -/(.*/)?ads/takeovers/.* -# /ads/syndicated/* (easylist.txt: 2126) -/(.*/)?ads/syndicated/.* -# /ads/swfobject. (easylist.txt: 2125) -/(.*/)?ads/swfobject\. -# /ads/sub/* (easylist.txt: 2124) -/(.*/)?ads/sub/.* -# /ads/storysponsors/* (easylist.txt: 2123) -/(.*/)?ads/storysponsors/.* -# /ads/square3. (easylist.txt: 2122) -/(.*/)?ads/square3\. -# /ads/square2. (easylist.txt: 2121) -/(.*/)?ads/square2\. -# /ads/square. (easylist.txt: 2120) -/(.*/)?ads/square\. -# /ads/square- (easylist.txt: 2119) -/(.*/)?ads/square- -# /ads/sponsor (easylist.txt: 2118) -/(.*/)?ads/sponsor -# /ads/spacer. (easylist.txt: 2117) -/(.*/)?ads/spacer\. -# /ads/sky_ (easylist.txt: 2116) -/(.*/)?ads/sky_ -# /ads/skins/* (easylist.txt: 2115) -/(.*/)?ads/skins/.* -# /ads/sitewide_ (easylist.txt: 2114) -/(.*/)?ads/sitewide_ -# /ads/sidedoor/* (easylist.txt: 2113) -/(.*/)?ads/sidedoor/.* -# /ads/sidebar- (easylist.txt: 2112) -/(.*/)?ads/sidebar- -# /ads/side- (easylist.txt: 2111) -/(.*/)?ads/side- -# /ads/show/* (easylist.txt: 2110) -/(.*/)?ads/show/.* -# /ads/show. (easylist.txt: 2109) -/(.*/)?ads/show\. -# /ads/serveIt/* (easylist.txt: 2108) -/(.*/)?ads/serveIt/.* -# /ads/select/* (easylist.txt: 2107) -/(.*/)?ads/select/.* -# /ads/scripts/* (easylist.txt: 2106) -/(.*/)?ads/scripts/.* -# /ads/scriptinject. (easylist.txt: 2105) -/(.*/)?ads/scriptinject\. -# /ads/rotate_ (easylist.txt: 2104) -/(.*/)?ads/rotate_ -# /ads/rotate/* (easylist.txt: 2103) -/(.*/)?ads/rotate/.* -# /ads/ringtone_ (easylist.txt: 2102) -/(.*/)?ads/ringtone_ -# /ads/right/* (easylist.txt: 2101) -/(.*/)?ads/right/.* -# /ads/right. (easylist.txt: 2100) -/(.*/)?ads/right\. -# /ads/reskins/* (easylist.txt: 2099) -/(.*/)?ads/reskins/.* -# /ads/request. (easylist.txt: 2098) -/(.*/)?ads/request\. -# /Ads/Refresher. (easylist.txt: 2097) -/(.*/)?Ads/Refresher\. -# /ads/rectangle_ (easylist.txt: 2096) -/(.*/)?ads/rectangle_ -# /ads/rect_ (easylist.txt: 2095) -/(.*/)?ads/rect_ -# /ads/real_ (easylist.txt: 2094) -/(.*/)?ads/real_ -# /ads/rawstory_ (easylist.txt: 2093) -/(.*/)?ads/rawstory_ -# /ads/rail- (easylist.txt: 2092) -/(.*/)?ads/rail- -# /AdS/RAD. (easylist.txt: 2091) -/(.*/)?AdS/RAD\. -# /ads/proxy- (easylist.txt: 2090) -/(.*/)?ads/proxy- -# /ads/proximic. (easylist.txt: 2089) -/(.*/)?ads/proximic\. -# /ads/promo_ (easylist.txt: 2088) -/(.*/)?ads/promo_ -# /ads/profile/* (easylist.txt: 2087) -/(.*/)?ads/profile/.* -# /ads/preroll_ (easylist.txt: 2086) -/(.*/)?ads/preroll_ -# /ads/preroll/* (easylist.txt: 2085) -/(.*/)?ads/preroll/.* -# /ads/preroll- (easylist.txt: 2084) -/(.*/)?ads/preroll- -# /ads/preloader/* (easylist.txt: 2083) -/(.*/)?ads/preloader/.* -# /ads/postscribe. (easylist.txt: 2082) -/(.*/)?ads/postscribe\. -# /ads/post- (easylist.txt: 2081) -/(.*/)?ads/post- -# /ads/popup_ (easylist.txt: 2080) -/(.*/)?ads/popup_ -# /ads/popup. (easylist.txt: 2079) -/(.*/)?ads/popup\. -# /ads/popshow. (easylist.txt: 2078) -/(.*/)?ads/popshow\. -# /ads/popout. (easylist.txt: 2077) -/(.*/)?ads/popout\. -# /ads/pop. (easylist.txt: 2076) -/(.*/)?ads/pop\. -# /ads/plugs/* (easylist.txt: 2075) -/(.*/)?ads/plugs/.* -# /ads/player- (easylist.txt: 2074) -/(.*/)?ads/player- -# /ads/pencil/* (easylist.txt: 2073) -/(.*/)?ads/pencil/.* -# /ads/payload/* (easylist.txt: 2072) -/(.*/)?ads/payload/.* -# /ads/panel. (easylist.txt: 2071) -/(.*/)?ads/panel\. -# /ads/page. (easylist.txt: 2070) -/(.*/)?ads/page\. -# /ads/p/* (easylist.txt: 2069) -/(.*/)?ads/p/.* -# /ads/overlay/* (easylist.txt: 2068) -/(.*/)?ads/overlay/.* -# /ads/overlay- (easylist.txt: 2067) -/(.*/)?ads/overlay- -# /ads/outbrain? (easylist.txt: 2066) -/(.*/)?ads/outbrain\? -# /ads/oscar/* (easylist.txt: 2065) -/(.*/)?ads/oscar/.* -# /ads/original/* (easylist.txt: 2064) -/(.*/)?ads/original/.* -# /ads/oas_ (easylist.txt: 2063) -/(.*/)?ads/oas_ -# /ads/oas/* (easylist.txt: 2062) -/(.*/)?ads/oas/.* -# /ads/oas- (easylist.txt: 2061) -/(.*/)?ads/oas- -# /ads/ninemsn. (easylist.txt: 2060) -/(.*/)?ads/ninemsn\. -# /ads/navbar/* (easylist.txt: 2059) -/(.*/)?ads/navbar/.* -# /ads/mt_ (easylist.txt: 2058) -/(.*/)?ads/mt_ -# /ads/msn/* (easylist.txt: 2057) -/(.*/)?ads/msn/.* -# /ads/mpu? (easylist.txt: 2056) -/(.*/)?ads/mpu\? -# /ads/mpu2? (easylist.txt: 2055) -/(.*/)?ads/mpu2\? -# /ads/mpu/* (easylist.txt: 2054) -/(.*/)?ads/mpu/.* -# /ads/motherless. (easylist.txt: 2053) -/(.*/)?ads/motherless\. -# /ads/middle/* (easylist.txt: 2052) -/(.*/)?ads/middle/.* -# /ads/menu_ (easylist.txt: 2051) -/(.*/)?ads/menu_ -# /ads/masthead_ (easylist.txt: 2050) -/(.*/)?ads/masthead_ -# /ads/marketing/* (easylist.txt: 2049) -/(.*/)?ads/marketing/.* -# /ads/main. (easylist.txt: 2048) -/(.*/)?ads/main\. -# /ads/load. (easylist.txt: 2047) -/(.*/)?ads/load\. -# /ads/leaderbox. (easylist.txt: 2046) -/(.*/)?ads/leaderbox\. -# /ads/leaderboard_ (easylist.txt: 2045) -/(.*/)?ads/leaderboard_ -# /ads/leaderboard? (easylist.txt: 2044) -/(.*/)?ads/leaderboard\? -# /ads/leaderboard/* (easylist.txt: 2043) -/(.*/)?ads/leaderboard/.* -# /ads/leaderboard. (easylist.txt: 2042) -/(.*/)?ads/leaderboard\. -# /ads/leaderboard- (easylist.txt: 2041) -/(.*/)?ads/leaderboard- -# /ads/layer. (easylist.txt: 2040) -/(.*/)?ads/layer\. -# /ads/labels/* (easylist.txt: 2039) -/(.*/)?ads/labels/.* -# /ads/jsbannertext. (easylist.txt: 2038) -/(.*/)?ads/jsbannertext\. -# /ads/js_ (easylist.txt: 2037) -/(.*/)?ads/js_ -# /ads/js/* (easylist.txt: 2036) -/(.*/)?ads/js/.* -# /ads/js. (easylist.txt: 2035) -/(.*/)?ads/js\. -# /ads/interstitial/* (easylist.txt: 2034) -/(.*/)?ads/interstitial/.* -# /ads/interstitial. (easylist.txt: 2033) -/(.*/)?ads/interstitial\. -# /ads/inner_ (easylist.txt: 2032) -/(.*/)?ads/inner_ -# /ads/inline. (easylist.txt: 2031) -/(.*/)?ads/inline\. -# /Ads/InFullScreen. (easylist.txt: 2030) -/(.*/)?Ads/InFullScreen\. -# /ads/indexsponsors/* (easylist.txt: 2029) -/(.*/)?ads/indexsponsors/.* -# /ads/index. (easylist.txt: 2028) -/(.*/)?ads/index\. -# /ads/index- (easylist.txt: 2027) -/(.*/)?ads/index- -# /ads/img/* (easylist.txt: 2026) -/(.*/)?ads/img/.* -# /ads/imbox- (easylist.txt: 2025) -/(.*/)?ads/imbox- -# /ads/images/* (easylist.txt: 2024) -/(.*/)?ads/images/.* -# /ads/image/* (easylist.txt: 2023) -/(.*/)?ads/image/.* -# /ads/im2. (easylist.txt: 2022) -/(.*/)?ads/im2\. -# /ads/iframe (easylist.txt: 2021) -/(.*/)?ads/iframe -# /ads/htmlparser. (easylist.txt: 2020) -/(.*/)?ads/htmlparser\. -# /ads/html/* (easylist.txt: 2019) -/(.*/)?ads/html/.* -# /ads/house_ (easylist.txt: 2018) -/(.*/)?ads/house_ -# /ads/house/* (easylist.txt: 2017) -/(.*/)?ads/house/.* -# /ads/horizontal/* (easylist.txt: 2016) -/(.*/)?ads/horizontal/.* -# /ads/homepage/* (easylist.txt: 2015) -/(.*/)?ads/homepage/.* -# /ads/home/* (easylist.txt: 2014) -/(.*/)?ads/home/.* -# /ads/header_ (easylist.txt: 2013) -/(.*/)?ads/header_ -# /ads/header/* (easylist.txt: 2012) -/(.*/)?ads/header/.* -# /ads/header- (easylist.txt: 2011) -/(.*/)?ads/header- -# /ads/head. (easylist.txt: 2010) -/(.*/)?ads/head\. -# /ads/gray/* (easylist.txt: 2009) -/(.*/)?ads/gray/.* -# /ads/gpt_ (easylist.txt: 2008) -/(.*/)?ads/gpt_ -# /ads/gpt/* (easylist.txt: 2007) -/(.*/)?ads/gpt/.* -# /ads/google_ (easylist.txt: 2006) -/(.*/)?ads/google_ -# /ads/google2. (easylist.txt: 2005) -/(.*/)?ads/google2\. -# /ads/google1. (easylist.txt: 2004) -/(.*/)?ads/google1\. -# /ads/generator/* (easylist.txt: 2003) -/(.*/)?ads/generator/.* -# /ads/generatedHTML/* (easylist.txt: 2002) -/(.*/)?ads/generatedHTML/.* -# /ads/g/* (easylist.txt: 2001) -/(.*/)?ads/g/.* -# /ads/freewheel/* (easylist.txt: 2000) -/(.*/)?ads/freewheel/.* -# /ads/footer_ (easylist.txt: 1999) -/(.*/)?ads/footer_ -# /ads/footer. (easylist.txt: 1998) -/(.*/)?ads/footer\. -# /ads/footer- (easylist.txt: 1997) -/(.*/)?ads/footer- -# /ads/flashbanners/* (easylist.txt: 1996) -/(.*/)?ads/flashbanners/.* -# /ads/flash_ (easylist.txt: 1995) -/(.*/)?ads/flash_ -# /ads/flash/* (easylist.txt: 1994) -/(.*/)?ads/flash/.* -# /ads/fb- (easylist.txt: 1993) -/(.*/)?ads/fb- -# /ads/exit. (easylist.txt: 1992) -/(.*/)?ads/exit\. -# /ads/empty. (easylist.txt: 1991) -/(.*/)?ads/empty\. -# /ads/elementViewability. (easylist.txt: 1990) -/(.*/)?ads/elementViewability\. -# /ads/displaytrust. (easylist.txt: 1989) -/(.*/)?ads/displaytrust\. -# /ads/display/* (easylist.txt: 1988) -/(.*/)?ads/display/.* -# /ads/directory/* (easylist.txt: 1987) -/(.*/)?ads/directory/.* -# /ads/dhtml/* (easylist.txt: 1986) -/(.*/)?ads/dhtml/.* -# /ads/dfp/* (easylist.txt: 1985) -/(.*/)?ads/dfp/.* -# /ads/dfp. (easylist.txt: 1984) -/(.*/)?ads/dfp\. -# /ads/design- (easylist.txt: 1983) -/(.*/)?ads/design- -# /ads/default_ (easylist.txt: 1982) -/(.*/)?ads/default_ -# /ads/dart. (easylist.txt: 1981) -/(.*/)?ads/dart\. -# /ads/daily_ (easylist.txt: 1980) -/(.*/)?ads/daily_ -# /ads/daily. (easylist.txt: 1979) -/(.*/)?ads/daily\. -# /ads/cube- (easylist.txt: 1978) -/(.*/)?ads/cube- -# /ads/creatives/* (easylist.txt: 1977) -/(.*/)?ads/creatives/.* -# /ads/create_ (easylist.txt: 1976) -/(.*/)?ads/create_ -# /ads/contextuallinks/* (easylist.txt: 1975) -/(.*/)?ads/contextuallinks/.* -# /ads/contextual_ (easylist.txt: 1974) -/(.*/)?ads/contextual_ -# /ads/contextual. (easylist.txt: 1973) -/(.*/)?ads/contextual\. -# /ads/configuration/* (easylist.txt: 1972) -/(.*/)?ads/configuration/.* -# /ads/config/* (easylist.txt: 1971) -/(.*/)?ads/config/.* -# /ads/common/* (easylist.txt: 1970) -/(.*/)?ads/common/.* -# /ads/cnvideo/* (easylist.txt: 1969) -/(.*/)?ads/cnvideo/.* -# /ads/click_ (easylist.txt: 1968) -/(.*/)?ads/click_ -# /ads/checkViewport. (easylist.txt: 1967) -/(.*/)?ads/checkViewport\. -# /ads/center. (easylist.txt: 1966) -/(.*/)?ads/center\. -# /ads/center- (easylist.txt: 1965) -/(.*/)?ads/center- -# /ads/cbr. (easylist.txt: 1964) -/(.*/)?ads/cbr\. -# /Ads/Builder. (easylist.txt: 1963) -/(.*/)?Ads/Builder\. -# /ads/btbuckets/* (easylist.txt: 1962) -/(.*/)?ads/btbuckets/.* -# /ads/bt/* (easylist.txt: 1961) -/(.*/)?ads/bt/.* -# /ads/branding/* (easylist.txt: 1960) -/(.*/)?ads/branding/.* -# /ads/box/* (easylist.txt: 1959) -/(.*/)?ads/box/.* -# /ads/bottom/* (easylist.txt: 1958) -/(.*/)?ads/bottom/.* -# /ads/bottom. (easylist.txt: 1957) -/(.*/)?ads/bottom\. -# /ads/blank. (easylist.txt: 1956) -/(.*/)?ads/blank\. -# /Ads/Biz_ (easylist.txt: 1955) -/(.*/)?Ads/Biz_ -# /ads/bilar/* (easylist.txt: 1954) -/(.*/)?ads/bilar/.* -# /ads/behicon. (easylist.txt: 1953) -/(.*/)?ads/behicon\. -# /ads/beacon. (easylist.txt: 1952) -/(.*/)?ads/beacon\. -# /ads/base. (easylist.txt: 1951) -/(.*/)?ads/base\. -# /ads/banners/* (easylist.txt: 1950) -/(.*/)?ads/banners/.* -# /ads/banner_ (easylist.txt: 1949) -/(.*/)?ads/banner_ -# /ads/banner01. (easylist.txt: 1948) -/(.*/)?ads/banner01\. -# /ads/banner/* (easylist.txt: 1947) -/(.*/)?ads/banner/.* -# /ads/banner. (easylist.txt: 1946) -/(.*/)?ads/banner\. -# /ads/banner- (easylist.txt: 1945) -/(.*/)?ads/banner- -# /ads/b/* (easylist.txt: 1944) -/(.*/)?ads/b/.* -# /ads/async/* (easylist.txt: 1943) -/(.*/)?ads/async/.* -# /ads/assets/* (easylist.txt: 1942) -/(.*/)?ads/assets/.* -# /ads/as_header. (easylist.txt: 1941) -/(.*/)?ads/as_header\. -# /ads/aff- (easylist.txt: 1940) -/(.*/)?ads/aff- -# /ads/afc/* (easylist.txt: 1939) -/(.*/)?ads/afc/.* -# /ads/adv/* (easylist.txt: 1938) -/(.*/)?ads/adv/.* -# /ads/ads_ (easylist.txt: 1937) -/(.*/)?ads/ads_ -# /ads/ads/* (easylist.txt: 1936) -/(.*/)?ads/ads/.* -# /ads/ads. (easylist.txt: 1935) -/(.*/)?ads/ads\. -# /ads/ads-$~stylesheet (easylist.txt: 1934) -/(.*/)?ads/ads- -# /Ads/adrp0. (easylist.txt: 1933) -/(.*/)?Ads/adrp0\. -# /ads/adrime/* (easylist.txt: 1932) -/(.*/)?ads/adrime/.* -# /ads/ad_ (easylist.txt: 1931) -/(.*/)?ads/ad_ -# /ads/ad. (easylist.txt: 1930) -/(.*/)?ads/ad\. -# /ads/ad- (easylist.txt: 1929) -/(.*/)?ads/ad- -# /ads/acctid= (easylist.txt: 1928) -/(.*/)?ads/acctid= -# /ads/a. (easylist.txt: 1927) -/(.*/)?ads/a\. -# /ads/?QAPS_ (easylist.txt: 1926) -/(.*/)?ads/\?QAPS_ -# /ads/728b. (easylist.txt: 1925) -/(.*/)?ads/728b\. -# /ads/728. (easylist.txt: 1924) -/(.*/)?ads/728\. -# /ads/468a. (easylist.txt: 1923) -/(.*/)?ads/468a\. -# /ads/468. (easylist.txt: 1922) -/(.*/)?ads/468\. -# /ads/300x120_ (easylist.txt: 1921) -/(.*/)?ads/300x120_ -# /ads/3002. (easylist.txt: 1920) -/(.*/)?ads/3002\. -# /ads/300. (easylist.txt: 1919) -/(.*/)?ads/300\. -# /ads/3.0/* (easylist.txt: 1918) -/(.*/)?ads/3\.0/.* -# /ads/250x120_ (easylist.txt: 1917) -/(.*/)?ads/250x120_ -# /ads/2010/* (easylist.txt: 1916) -/(.*/)?ads/2010/.* -# /ads/2.0/* (easylist.txt: 1915) -/(.*/)?ads/2\.0/.* -# /ads/160/* (easylist.txt: 1914) -/(.*/)?ads/160/.* -# /ads/160. (easylist.txt: 1913) -/(.*/)?ads/160\. -# /ads/125r. (easylist.txt: 1912) -/(.*/)?ads/125r\. -# /ads/125l. (easylist.txt: 1911) -/(.*/)?ads/125l\. -# /ads.w3c. (easylist.txt: 1910) -/(.*/)?ads\.w3c\. -ads.w3c.*. -# /ads.v5.js (easylist.txt: 1909) -/(.*/)?ads\.v5\.js -ads.v5.js*. -# /ads.swf (easylist.txt: 1908) -/(.*/)?ads\.swf -ads.swf*. -# /ads.png (easylist.txt: 1907) -/(.*/)?ads\.png -ads.png*. -# /ads.pl? (easylist.txt: 1906) -/(.*/)?ads\.pl\? -# /ads.php (easylist.txt: 1905) -/(.*/)?ads\.php -ads.php*. -# /ads.pbs (easylist.txt: 1904) -/(.*/)?ads\.pbs -ads.pbs*. -# /ads.jsp (easylist.txt: 1903) -/(.*/)?ads\.jsp -ads.jsp*. -# /ads.json? (easylist.txt: 1902) -/(.*/)?ads\.json\? -# /ads.js? (easylist.txt: 1901) -/(.*/)?ads\.js\? -# /ads.js/* (easylist.txt: 1900) -/(.*/)?ads\.js/.* -ads.js/.* -# /ads.js. (easylist.txt: 1899) -/(.*/)?ads\.js\. -ads.js.*. -# /ads.htm (easylist.txt: 1898) -/(.*/)?ads\.htm -ads.htm*. -# /ads.gif (easylist.txt: 1897) -/(.*/)?ads\.gif -ads.gif*. -# /ads.dll/* (easylist.txt: 1896) -/(.*/)?ads\.dll/.* -ads.dll/.* -# /ads.css (easylist.txt: 1895) -/(.*/)?ads\.css -ads.css*. -# /ads.cfm? (easylist.txt: 1894) -/(.*/)?ads\.cfm\? -# /ads.aspx (easylist.txt: 1893) -/(.*/)?ads\.aspx -ads.aspx*. -# /ads.asp? (easylist.txt: 1892) -/(.*/)?ads\.asp\? -# /Ads.ashx (easylist.txt: 1891) -/(.*/)?Ads\.ashx -Ads.ashx*. -# /ads-top. (easylist.txt: 1890) -/(.*/)?ads-top\. -ads-top.*. -# /ads-sky| (easylist.txt: 1889) -/(.*/)?ads-sky$ -# /ads-skyscraper. (easylist.txt: 1888) -/(.*/)?ads-skyscraper\. -ads-skyscraper.*. -# /ads-service. (easylist.txt: 1887) -/(.*/)?ads-service\. -ads-service.*. -# /ads-segmentjs. (easylist.txt: 1886) -/(.*/)?ads-segmentjs\. -ads-segmentjs.*. -# /ads-scroller- (easylist.txt: 1885) -/(.*/)?ads-scroller- -ads-scroller-*. -# /ads-screen. (easylist.txt: 1884) -/(.*/)?ads-screen\. -ads-screen.*. -# /ads-sa. (easylist.txt: 1883) -/(.*/)?ads-sa\. -ads-sa.*. -# /ads-right. (easylist.txt: 1882) -/(.*/)?ads-right\. -ads-right.*. -# /ads-reviews- (easylist.txt: 1881) -/(.*/)?ads-reviews- -ads-reviews-*. -# /ads-request. (easylist.txt: 1880) -/(.*/)?ads-request\. -ads-request.*. -# /ads-rec| (easylist.txt: 1879) -/(.*/)?ads-rec$ -# /ads-rectangle. (easylist.txt: 1878) -/(.*/)?ads-rectangle\. -ads-rectangle.*. -# /ads-pd. (easylist.txt: 1877) -/(.*/)?ads-pd\. -ads-pd.*. -# /ads-nodep. (easylist.txt: 1876) -/(.*/)?ads-nodep\. -ads-nodep.*. -# /ads-new. (easylist.txt: 1875) -/(.*/)?ads-new\. -ads-new.*. -# /ads-net. (easylist.txt: 1874) -/(.*/)?ads-net\. -ads-net.*. -# /ads-min. (easylist.txt: 1873) -/(.*/)?ads-min\. -ads-min.*. -# /ads-leader| (easylist.txt: 1872) -/(.*/)?ads-leader$ -# /ads-holder. (easylist.txt: 1871) -/(.*/)?ads-holder\. -ads-holder.*. -# /ads-header- (easylist.txt: 1870) -/(.*/)?ads-header- -ads-header-*. -# /ads-gpt. (easylist.txt: 1869) -/(.*/)?ads-gpt\. -ads-gpt.*. -# /ads-footer. (easylist.txt: 1868) -/(.*/)?ads-footer\. -ads-footer.*. -# /ads-foot. (easylist.txt: 1867) -/(.*/)?ads-foot\. -ads-foot.*. -# /ads-common. (easylist.txt: 1866) -/(.*/)?ads-common\. -ads-common.*. -# /ads-blogs- (easylist.txt: 1865) -/(.*/)?ads-blogs- -ads-blogs-*. -# /ads-banner (easylist.txt: 1864) -/(.*/)?ads-banner -ads-banner*. -# /ads-arc. (easylist.txt: 1863) -/(.*/)?ads-arc\. -ads-arc.*. -# /ads-admin. (easylist.txt: 1862) -/(.*/)?ads-admin\. -ads-admin.*. -# /ads-300. (easylist.txt: 1861) -/(.*/)?ads-300\. -ads-300.*. -# /ads-300- (easylist.txt: 1860) -/(.*/)?ads-300- -ads-300-*. -# /ads-250. (easylist.txt: 1859) -/(.*/)?ads-250\. -ads-250.*. -# /ads-2. (easylist.txt: 1858) -/(.*/)?ads-2\. -ads-2.*. -# /ads-1. (easylist.txt: 1857) -/(.*/)?ads-1\. -ads-1.*. -# /ads-07. (easylist.txt: 1856) -/(.*/)?ads-07\. -ads-07.*. -# /ads-06. (easylist.txt: 1855) -/(.*/)?ads-06\. -ads-06.*. -# /ads-05. (easylist.txt: 1854) -/(.*/)?ads-05\. -ads-05.*. -# /ads-04. (easylist.txt: 1853) -/(.*/)?ads-04\. -ads-04.*. -# /ads-03. (easylist.txt: 1852) -/(.*/)?ads-03\. -ads-03.*. -# /ads-02. (easylist.txt: 1851) -/(.*/)?ads-02\. -ads-02.*. -# /ads-01. (easylist.txt: 1850) -/(.*/)?ads-01\. -ads-01.*. -# /adruptive. (easylist.txt: 1849) -/(.*/)?adruptive\. -adruptive.*. -# /adrun. (easylist.txt: 1848) -/(.*/)?adrun\. -adrun.*. -# /adrotv2. (easylist.txt: 1847) -/(.*/)?adrotv2\. -adrotv2.*. -# /adrotator_ (easylist.txt: 1846) -/(.*/)?adrotator_ -# /adrotator2. (easylist.txt: 1845) -/(.*/)?adrotator2\. -adrotator2.*. -# /adrotator/* (easylist.txt: 1844) -/(.*/)?adrotator/.* -# /adrotator. (easylist.txt: 1843) -/(.*/)?adrotator\. -adrotator.*. -# /adrotation. (easylist.txt: 1842) -/(.*/)?adrotation\. -adrotation.*. -# /adrotate/* (easylist.txt: 1841) -/(.*/)?adrotate/.* -# /adrotate. (easylist.txt: 1840) -/(.*/)?adrotate\. -adrotate.*. -# /adrotate- (easylist.txt: 1839) -/(.*/)?adrotate- -adrotate-*. -# /adrotat. (easylist.txt: 1838) -/(.*/)?adrotat\. -adrotat.*. -# /adrot_ (easylist.txt: 1837) -/(.*/)?adrot_ -# /adrot. (easylist.txt: 1836) -/(.*/)?adrot\. -adrot.*. -# /adroot/* (easylist.txt: 1835) -/(.*/)?adroot/.* -# /adrollpixel. (easylist.txt: 1834) -/(.*/)?adrollpixel\. -adrollpixel.*. -# /adroller. (easylist.txt: 1833) -/(.*/)?adroller\. -adroller.*. -# /adRoll. (easylist.txt: 1832) -/(.*/)?adRoll\. -adRoll.*. -# /adrolays. (easylist.txt: 1831) -/(.*/)?adrolays\. -adrolays.*. -# /adrobot. (easylist.txt: 1830) -/(.*/)?adrobot\. -adrobot.*. -# /adriver_$~object-subrequest (easylist.txt: 1829) -/(.*/)?adriver_ -# /adriver/* (easylist.txt: 1828) -/(.*/)?adriver/.* -# /adriver.$~object-subrequest (easylist.txt: 1827) -/(.*/)?adriver\. -adriver.*. -# /adrightcol. (easylist.txt: 1826) -/(.*/)?adrightcol\. -adrightcol.*. -# /adright/* (easylist.txt: 1825) -/(.*/)?adright/.* -# /adright. (easylist.txt: 1824) -/(.*/)?adright\. -adright.*. -# /adrevolver/* (easylist.txt: 1823) -/(.*/)?adrevolver/.* -# /adrevenue/* (easylist.txt: 1822) -/(.*/)?adrevenue/.* -# /adrequisitor- (easylist.txt: 1821) -/(.*/)?adrequisitor- -adrequisitor-*. -# /adrequestvo. (easylist.txt: 1820) -/(.*/)?adrequestvo\. -adrequestvo.*. -# /adrequests. (easylist.txt: 1819) -/(.*/)?adrequests\. -adrequests.*. -# /adrequest. (easylist.txt: 1818) -/(.*/)?adrequest\. -adrequest.*. -# /adreplace728x90. (easylist.txt: 1817) -/(.*/)?adreplace728x90\. -adreplace728x90.*. -# /adreplace160x600. (easylist.txt: 1816) -/(.*/)?adreplace160x600\. -adreplace160x600.*. -# /adreplace/* (easylist.txt: 1815) -/(.*/)?adreplace/.* -# /adrendererfactory. (easylist.txt: 1814) -/(.*/)?adrendererfactory\. -adrendererfactory.*. -# /adremote. (easylist.txt: 1813) -/(.*/)?adremote\. -adremote.*. -# /adreload? (easylist.txt: 1812) -/(.*/)?adreload\? -# /adreload. (easylist.txt: 1811) -/(.*/)?adreload\. -adreload.*. -# /adrelated. (easylist.txt: 1810) -/(.*/)?adrelated\. -adrelated.*. -# /adrefresh. (easylist.txt: 1809) -/(.*/)?adrefresh\. -adrefresh.*. -# /adrefresh- (easylist.txt: 1808) -/(.*/)?adrefresh- -adrefresh-*. -# /adrectanglebanner? (easylist.txt: 1807) -/(.*/)?adrectanglebanner\? -# /adrec. (easylist.txt: 1806) -/(.*/)?adrec\. -adrec.*. -# /adreadytractions. (easylist.txt: 1805) -/(.*/)?adreadytractions\. -adreadytractions.*. -# /adreactor/* (easylist.txt: 1804) -/(.*/)?adreactor/.* -# /adrawdata/* (easylist.txt: 1803) -/(.*/)?adrawdata/.* -# /adratio. (easylist.txt: 1802) -/(.*/)?adratio\. -adratio.*. -# /adquality/* (easylist.txt: 1801) -/(.*/)?adquality/.* -# /AdPub/* (easylist.txt: 1800) -/(.*/)?AdPub/.* -# /adproxy/* (easylist.txt: 1799) -/(.*/)?adproxy/.* -# /adproxy. (easylist.txt: 1798) -/(.*/)?adproxy\. -adproxy.*. -# /adprovider. (easylist.txt: 1797) -/(.*/)?adprovider\. -adprovider.*. -# /adprove_ (easylist.txt: 1796) -/(.*/)?adprove_ -# /adproducts/* (easylist.txt: 1795) -/(.*/)?adproducts/.* -# /adprime. (easylist.txt: 1794) -/(.*/)?adprime\. -adprime.*. -# /AdPreview/* (easylist.txt: 1793) -/(.*/)?AdPreview/.* -# /AdPostInjectAsync. (easylist.txt: 1792) -/(.*/)?AdPostInjectAsync\. -AdPostInjectAsync.*. -# /adpositionsizein- (easylist.txt: 1791) -/(.*/)?adpositionsizein- -adpositionsizein-*. -# /adPositions. (easylist.txt: 1790) -/(.*/)?adPositions\. -adPositions.*. -# /adpopup. (easylist.txt: 1789) -/(.*/)?adpopup\. -adpopup.*. -# /adpop32. (easylist.txt: 1788) -/(.*/)?adpop32\. -adpop32.*. -# /adpop. (easylist.txt: 1787) -/(.*/)?adpop\. -adpop.*. -# /adpool/* (easylist.txt: 1786) -/(.*/)?adpool/.* -# /adpolestar/* (easylist.txt: 1785) -/(.*/)?adpolestar/.* -# /adpoint. (easylist.txt: 1784) -/(.*/)?adpoint\. -adpoint.*. -# /adplugin_ (easylist.txt: 1783) -/(.*/)?adplugin_ -# /adplugin. (easylist.txt: 1782) -/(.*/)?adplugin\. -adplugin.*. -# /adplayer/* (easylist.txt: 1781) -/(.*/)?adplayer/.* -# /adplayer. (easylist.txt: 1780) -/(.*/)?adplayer\. -adplayer.*. -# /adplayer- (easylist.txt: 1779) -/(.*/)?adplayer- -adplayer-*. -# /adplay. (easylist.txt: 1778) -/(.*/)?adplay\. -adplay.*. -# /adplacement. (easylist.txt: 1777) -/(.*/)?adplacement\. -adplacement.*. -# /adplace5_ (easylist.txt: 1776) -/(.*/)?adplace5_ -# /adplace/* (easylist.txt: 1775) -/(.*/)?adplace/.* -# /adpix/* (easylist.txt: 1774) -/(.*/)?adpix/.* -# /adping. (easylist.txt: 1773) -/(.*/)?adping\. -adping.*. -# /adpictures/* (easylist.txt: 1772) -/(.*/)?adpictures/.* -# /adpicture2| (easylist.txt: 1771) -/(.*/)?adpicture2$ -# /adpicture2. (easylist.txt: 1770) -/(.*/)?adpicture2\. -adpicture2.*. -# /adpicture1| (easylist.txt: 1769) -/(.*/)?adpicture1$ -# /adpicture1. (easylist.txt: 1768) -/(.*/)?adpicture1\. -adpicture1.*. -# /adpicture. (easylist.txt: 1767) -/(.*/)?adpicture\. -adpicture.*. -# /adpic/* (easylist.txt: 1766) -/(.*/)?adpic/.* -# /adpic. (easylist.txt: 1765) -/(.*/)?adpic\. -adpic.*. -# /adperfdemo. (easylist.txt: 1763) -/(.*/)?adperfdemo\. -adperfdemo.*. -# /adperf_ (easylist.txt: 1762) -/(.*/)?adperf_ -# /adpeeps/* (easylist.txt: 1761) -/(.*/)?adpeeps/.* -# /adpeeps. (easylist.txt: 1760) -/(.*/)?adpeeps\. -adpeeps.*. -# /adpatch. (easylist.txt: 1759) -/(.*/)?adpatch\. -adpatch.*. -# /adparts/* (easylist.txt: 1758) -/(.*/)?adparts/.* -# /adpartner. (easylist.txt: 1757) -/(.*/)?adpartner\. -adpartner.*. -# /adpanelcontent. (easylist.txt: 1756) -/(.*/)?adpanelcontent\. -adpanelcontent.*. -# /adpanel/* (easylist.txt: 1755) -/(.*/)?adpanel/.* -# /adpan/* (easylist.txt: 1754) -/(.*/)?adpan/.* -# /adpages/* (easylist.txt: 1753) -/(.*/)?adpages/.* -# /adpagem. (easylist.txt: 1752) -/(.*/)?adpagem\. -adpagem.*. -# /adpage/* (easylist.txt: 1751) -/(.*/)?adpage/.* -# /adpage. (easylist.txt: 1750) -/(.*/)?adpage\. -adpage.*. -# /adpage- (easylist.txt: 1749) -/(.*/)?adpage- -adpage-*. -# /adp.htm (easylist.txt: 1748) -/(.*/)?adp\.htm -adp.htm*. -# /adp-pro/* (easylist.txt: 1747) -/(.*/)?adp-pro/.* -# /adoverride. (easylist.txt: 1746) -/(.*/)?adoverride\. -adoverride.*. -# /adoverlayplugin. (easylist.txt: 1745) -/(.*/)?adoverlayplugin\. -adoverlayplugin.*. -# /adoverlay/* (easylist.txt: 1744) -/(.*/)?adoverlay/.* -# /adoverlay. (easylist.txt: 1743) -/(.*/)?adoverlay\. -adoverlay.*. -# /adotubeplugin. (easylist.txt: 1742) -/(.*/)?adotubeplugin\. -adotubeplugin.*. -# /adotube_adapter. (easylist.txt: 1741) -/(.*/)?adotube_adapter\. -# /ados.js (easylist.txt: 1740) -/(.*/)?ados\.js -ados.js*. -# /adorika728. (easylist.txt: 1739) -/(.*/)?adorika728\. -adorika728.*. -# /adorika300. (easylist.txt: 1738) -/(.*/)?adorika300\. -adorika300.*. -# /adoptions. (easylist.txt: 1737) -/(.*/)?adoptions\. -adoptions.*. -# /adoptionicon. (easylist.txt: 1736) -/(.*/)?adoptionicon\. -adoptionicon.*. -# /AdOptimizer. (easylist.txt: 1735) -/(.*/)?AdOptimizer\. -AdOptimizer.*. -# /adops/* (easylist.txt: 1734) -/(.*/)?adops/.* -# /adops. (easylist.txt: 1733) -/(.*/)?adops\. -adops.*. -# /adonly468. (easylist.txt: 1732) -/(.*/)?adonly468\. -adonly468.*. -# /adonline. (easylist.txt: 1731) -/(.*/)?adonline\. -adonline.*. -# /adometry? (easylist.txt: 1730) -/(.*/)?adometry\? -# /adometry. (easylist.txt: 1729) -/(.*/)?adometry\. -adometry.*. -# /adometry- (easylist.txt: 1728) -/(.*/)?adometry- -adometry-*. -# /adocean. (easylist.txt: 1727) -/(.*/)?adocean\. -adocean.*. -# /adobject. (easylist.txt: 1726) -/(.*/)?adobject\. -adobject.*. -# /adnotice. (easylist.txt: 1725) -/(.*/)?adnotice\. -adnotice.*. -# /adnl. (easylist.txt: 1724) -/(.*/)?adnl\. -adnl.*. -# /adng.html (easylist.txt: 1723) -/(.*/)?adng\.html -adng.html*. -# /adnexus- (easylist.txt: 1722) -/(.*/)?adnexus- -adnexus-*. -# /AdNewsclip15. (easylist.txt: 1720) -/(.*/)?AdNewsclip15\. -AdNewsclip15.*. -# /AdNewsclip14. (easylist.txt: 1719) -/(.*/)?AdNewsclip14\. -AdNewsclip14.*. -# /adnews. (easylist.txt: 1718) -/(.*/)?adnews\. -adnews.*. -# /adnew2. (easylist.txt: 1717) -/(.*/)?adnew2\. -adnew2.*. -# /adnetwork_ (easylist.txt: 1716) -/(.*/)?adnetwork_ -# /adnetwork468. (easylist.txt: 1715) -/(.*/)?adnetwork468\. -adnetwork468.*. -# /adnetwork300. (easylist.txt: 1714) -/(.*/)?adnetwork300\. -adnetwork300.*. -# /adnetwork/* (easylist.txt: 1713) -/(.*/)?adnetwork/.* -# /adnetmedia. (easylist.txt: 1711) -/(.*/)?adnetmedia\. -adnetmedia.*. -# /adnet2. (easylist.txt: 1710) -/(.*/)?adnet2\. -adnet2.*. -# /ADNet/* (easylist.txt: 1709) -/(.*/)?ADNet/.* -# /adnet. (easylist.txt: 1708) -/(.*/)?adnet\. -adnet.*. -# /adNdsoft/* (easylist.txt: 1707) -/(.*/)?adNdsoft/.* -# /adnap/* (easylist.txt: 1706) -/(.*/)?adnap/.* -# /admonitor. (easylist.txt: 1705) -/(.*/)?admonitor\. -admonitor.*. -# /admonitor- (easylist.txt: 1704) -/(.*/)?admonitor- -admonitor-*. -# /admob. (easylist.txt: 1703) -/(.*/)?admob\. -admob.*. -# /admixer_ (easylist.txt: 1702) -/(.*/)?admixer_ -# /admixer- (easylist.txt: 1701) -/(.*/)?admixer- -admixer-*. -# /adminibanner2. (easylist.txt: 1700) -/(.*/)?adminibanner2\. -adminibanner2.*. -# /admin/sponsors/* (easylist.txt: 1699) -/(.*/)?admin/sponsors/.* -# /admin/banners/* (easylist.txt: 1698) -/(.*/)?admin/banners/.* -# /admin/ad_ (easylist.txt: 1697) -/(.*/)?admin/ad_ -# /admicro_ (easylist.txt: 1696) -/(.*/)?admicro_ -# /admicro2. (easylist.txt: 1695) -/(.*/)?admicro2\. -admicro2.*. -# /admgr. (easylist.txt: 1694) -/(.*/)?admgr\. -admgr.*. -# /admez/* (easylist.txt: 1693) -/(.*/)?admez/.* -# /admez. (easylist.txt: 1692) -/(.*/)?admez\. -admez.*. -# /admeta. (easylist.txt: 1691) -/(.*/)?admeta\. -admeta.*. -# /admentorserve. (easylist.txt: 1690) -/(.*/)?admentorserve\. -admentorserve.*. -# /admentorasp/* (easylist.txt: 1689) -/(.*/)?admentorasp/.* -# /admentor302/* (easylist.txt: 1688) -/(.*/)?admentor302/.* -# /admentor/* (easylist.txt: 1687) -/(.*/)?admentor/.* -# /admeldscript. (easylist.txt: 1686) -/(.*/)?admeldscript\. -admeldscript.*. -# /admeld_ (easylist.txt: 1685) -/(.*/)?admeld_ -# /admeld/* (easylist.txt: 1684) -/(.*/)?admeld/.* -# /admeld. (easylist.txt: 1683) -/(.*/)?admeld\. -admeld.*. -# /admega. (easylist.txt: 1682) -/(.*/)?admega\. -admega.*. -# /admedia/* (easylist.txt: 1681) -/(.*/)?admedia/.* -# /admedia. (easylist.txt: 1680) -/(.*/)?admedia\. -admedia.*. -# /admeasure. (easylist.txt: 1679) -/(.*/)?admeasure\. -admeasure.*. -# /admaxads. (easylist.txt: 1678) -/(.*/)?admaxads\. -admaxads.*. -# /admax/* (easylist.txt: 1677) -/(.*/)?admax/.* -# /admatik. (easylist.txt: 1675) -/(.*/)?admatik\. -admatik.*. -# /admatcherclient. (easylist.txt: 1674) -/(.*/)?admatcherclient\. -admatcherclient.*. -# /admatcher.$~object-subrequest,~xmlhttprequest (easylist.txt: 1673) -/(.*/)?admatcher\. -admatcher.*. -# /admatch- (easylist.txt: 1672) -/(.*/)?admatch- -admatch-*. -# /admaster? (easylist.txt: 1671) -/(.*/)?admaster\? -# /admaster. (easylist.txt: 1670) -/(.*/)?admaster\. -admaster.*. -# /admarvel. (easylist.txt: 1669) -/(.*/)?admarvel\. -admarvel.*. -# /adMarketplace. (easylist.txt: 1668) -/(.*/)?adMarketplace\. -adMarketplace.*. -# /admarket/* (easylist.txt: 1667) -/(.*/)?admarket/.* -# /admarker_ (easylist.txt: 1666) -/(.*/)?admarker_ -# /admarker. (easylist.txt: 1665) -/(.*/)?admarker\. -admarker.*. -# /admantx/* (easylist.txt: 1664) -/(.*/)?admantx/.* -# /admantx. (easylist.txt: 1663) -/(.*/)?admantx\. -admantx.*. -# /admantx- (easylist.txt: 1662) -/(.*/)?admantx- -admantx-*. -# /admanproxy. (easylist.txt: 1661) -/(.*/)?admanproxy\. -admanproxy.*. -# /admanagerstatus/* (easylist.txt: 1660) -/(.*/)?admanagerstatus/.* -# /admanagers/* (easylist.txt: 1659) -/(.*/)?admanagers/.* -# /admanager_ (easylist.txt: 1658) -/(.*/)?admanager_ -# /admanager3. (easylist.txt: 1657) -/(.*/)?admanager3\. -admanager3.*. -# /admanager/*$~object-subrequest (easylist.txt: 1656) -/(.*/)?admanager/.* -# /admanager.$~object-subrequest (easylist.txt: 1655) -/(.*/)?admanager\. -admanager.*. -# /admanagementadvanced. (easylist.txt: 1654) -/(.*/)?admanagementadvanced\. -admanagementadvanced.*. -# /admanagement/* (easylist.txt: 1653) -/(.*/)?admanagement/.* -# /adman/* (easylist.txt: 1652) -/(.*/)?adman/.* -# /adman. (easylist.txt: 1651) -/(.*/)?adman\. -adman.*. -# /adman- (easylist.txt: 1650) -/(.*/)?adman- -adman-*. -# /admain| (easylist.txt: 1649) -/(.*/)?admain$ -# /admain. (easylist.txt: 1648) -/(.*/)?admain\. -admain.*. -# /adm/ad/* (easylist.txt: 1647) -/(.*/)?adm/ad/.* -# /adlog.php? (easylist.txt: 1646) -/(.*/)?adlog\.php\? -# /adlock300. (easylist.txt: 1645) -/(.*/)?adlock300\. -adlock300.*. -# /adloader. (easylist.txt: 1644) -/(.*/)?adloader\. -adloader.*. -# /adload. (easylist.txt: 1643) -/(.*/)?adload\. -adload.*. -# /adlist_ (easylist.txt: 1642) -/(.*/)?adlist_ -# /adlinks_ (easylist.txt: 1641) -/(.*/)?adlinks_ -# /adlinks2. (easylist.txt: 1640) -/(.*/)?adlinks2\. -adlinks2.*. -# /adlinks. (easylist.txt: 1639) -/(.*/)?adlinks\. -adlinks.*. -# /adlink_ (easylist.txt: 1638) -/(.*/)?adlink_ -# /adLink728. (easylist.txt: 1637) -/(.*/)?adLink728\. -adLink728.*. -# /adlink/* (easylist.txt: 1636) -/(.*/)?adlink/.* -# /adlink. (easylist.txt: 1635) -/(.*/)?adlink\. -adlink.*. -# /adlink- (easylist.txt: 1634) -/(.*/)?adlink- -adlink-*. -# /adlift4_ (easylist.txt: 1632) -/(.*/)?adlift4_ -# /adlift4. (easylist.txt: 1631) -/(.*/)?adlift4\. -adlift4.*. -# /adlib. (easylist.txt: 1630) -/(.*/)?adlib\. -adlib.*. -# /adlesse. (easylist.txt: 1629) -/(.*/)?adlesse\. -adlesse.*. -# /adlens- (easylist.txt: 1628) -/(.*/)?adlens- -adlens-*. -# /adleftsidebar. (easylist.txt: 1627) -/(.*/)?adleftsidebar\. -adleftsidebar.*. -# /adleft/* (easylist.txt: 1626) -/(.*/)?adleft/.* -# /adleft. (easylist.txt: 1625) -/(.*/)?adleft\. -adleft.*. -# /adleaderboardtop. (easylist.txt: 1624) -/(.*/)?adleaderboardtop\. -adleaderboardtop.*. -# /adleader. (easylist.txt: 1623) -/(.*/)?adleader\. -adleader.*. -# /adlead. (easylist.txt: 1622) -/(.*/)?adlead\. -adlead.*. -# /adlayer/* (easylist.txt: 1621) -/(.*/)?adlayer/.* -# /adlayer. (easylist.txt: 1620) -/(.*/)?adlayer\. -adlayer.*. -# /adlargefooter2. (easylist.txt: 1619) -/(.*/)?adlargefooter2\. -adlargefooter2.*. -# /adlargefooter. (easylist.txt: 1618) -/(.*/)?adlargefooter\. -adlargefooter.*. -# /adlantisloader. (easylist.txt: 1617) -/(.*/)?adlantisloader\. -adlantisloader.*. -# /adlantis. (easylist.txt: 1616) -/(.*/)?adlantis\. -adlantis.*. -# /adlandr. (easylist.txt: 1615) -/(.*/)?adlandr\. -adlandr.*. -# /AdLanding. (easylist.txt: 1614) -/(.*/)?AdLanding\. -AdLanding.*. -# /adlabs.js (easylist.txt: 1613) -/(.*/)?adlabs\.js -adlabs.js*. -# /adlabel_ (easylist.txt: 1612) -/(.*/)?adlabel_ -# /adlabel. (easylist.txt: 1611) -/(.*/)?adlabel\. -adlabel.*. -# /adl.php (easylist.txt: 1610) -/(.*/)?adl\.php -adl.php*. -# /adkeys. (easylist.txt: 1609) -/(.*/)?adkeys\. -adkeys.*. -# /adjuggler? (easylist.txt: 1608) -/(.*/)?adjuggler\? -# /adjug. (easylist.txt: 1607) -/(.*/)?adjug\. -adjug.*. -# /adjsmp. (easylist.txt: 1606) -/(.*/)?adjsmp\. -adjsmp.*. -# /adjs_ (easylist.txt: 1605) -/(.*/)?adjs_ -# /adjs? (easylist.txt: 1604) -/(.*/)?adjs\? -# /adjs/* (easylist.txt: 1603) -/(.*/)?adjs/.* -# /adjs. (easylist.txt: 1602) -/(.*/)?adjs\. -adjs.*. -# /adjk. (easylist.txt: 1601) -/(.*/)?adjk\. -adjk.*. -# /adj.php? (easylist.txt: 1600) -/(.*/)?adj\.php\? -# /adixs. (easylist.txt: 1599) -/(.*/)?adixs\. -adixs.*. -# /adition. (easylist.txt: 1598) -/(.*/)?adition\. -adition.*. -# /adiquity. (easylist.txt: 1596) -/(.*/)?adiquity\. -adiquity.*. -# /adinterax. (easylist.txt: 1595) -/(.*/)?adinterax\. -adinterax.*. -# /adinsertjuicy. (easylist.txt: 1594) -/(.*/)?adinsertjuicy\. -adinsertjuicy.*. -# /adinsertionplugin. (easylist.txt: 1593) -/(.*/)?adinsertionplugin\. -adinsertionplugin.*. -# /adinsert. (easylist.txt: 1592) -/(.*/)?adinsert\. -adinsert.*. -# /adinjector_ (easylist.txt: 1591) -/(.*/)?adinjector_ -# /adinjector. (easylist.txt: 1590) -/(.*/)?adinjector\. -adinjector.*. -# /adinject. (easylist.txt: 1589) -/(.*/)?adinject\. -adinject.*. -# /adinit. (easylist.txt: 1588) -/(.*/)?adinit\. -adinit.*. -# /adindicatortext. (easylist.txt: 1587) -/(.*/)?adindicatortext\. -adindicatortext.*. -# /adindex/* (easylist.txt: 1586) -/(.*/)?adindex/.* -# /adinclude/* (easylist.txt: 1585) -/(.*/)?adinclude/.* -# /adinclude. (easylist.txt: 1584) -/(.*/)?adinclude\. -adinclude.*. -# /adinator/* (easylist.txt: 1583) -/(.*/)?adinator/.* -# /adimg/* (easylist.txt: 1582) -/(.*/)?adimg/.* -# /adimg. (easylist.txt: 1581) -/(.*/)?adimg\. -adimg.*. -# /adimages/*$~subdocument (easylist.txt: 1580) -/(.*/)?adimages/.* -# /adimages. (easylist.txt: 1579) -/(.*/)?adimages\. -adimages.*. -# /adimage? (easylist.txt: 1578) -/(.*/)?adimage\? -# /adimage/* (easylist.txt: 1577) -/(.*/)?adimage/.* -# /adimage. (easylist.txt: 1576) -/(.*/)?adimage\. -adimage.*. -# /adim.html?ad (easylist.txt: 1575) -/(.*/)?adim\.html\?ad -# /adifyoverlay. (easylist.txt: 1574) -/(.*/)?adifyoverlay\. -adifyoverlay.*. -# /adifyids. (easylist.txt: 1573) -/(.*/)?adifyids\. -adifyids.*. -# /adifyad. (easylist.txt: 1572) -/(.*/)?adifyad\. -adifyad.*. -# /adify_ (easylist.txt: 1571) -/(.*/)?adify_ -# /adiframe|*|adtech; (easylist.txt: 1570) -/(.*/)?adiframe\|.*\|adtech; -# /adiframetop. (easylist.txt: 1569) -/(.*/)?adiframetop\. -adiframetop.*. -# /adiframem2. (easylist.txt: 1568) -/(.*/)?adiframem2\. -adiframem2.*. -# /adiframem1. (easylist.txt: 1567) -/(.*/)?adiframem1\. -adiframem1.*. -# /adiframeanchor. (easylist.txt: 1566) -/(.*/)?adiframeanchor\. -adiframeanchor.*. -# /adiframe_ (easylist.txt: 1565) -/(.*/)?adiframe_ -# /adiframe? (easylist.txt: 1564) -/(.*/)?adiframe\? -# /adiframe9. (easylist.txt: 1563) -/(.*/)?adiframe9\. -adiframe9.*. -# /adiframe7. (easylist.txt: 1562) -/(.*/)?adiframe7\. -adiframe7.*. -# /adiframe2. (easylist.txt: 1561) -/(.*/)?adiframe2\. -adiframe2.*. -# /adiframe18. (easylist.txt: 1560) -/(.*/)?adiframe18\. -adiframe18.*. -# /adiframe1. (easylist.txt: 1559) -/(.*/)?adiframe1\. -adiframe1.*. -# /adiframe/* (easylist.txt: 1558) -/(.*/)?adiframe/.* -# /adiframe. (easylist.txt: 1557) -/(.*/)?adiframe\. -adiframe.*. -# /adicon_ (easylist.txt: 1556) -/(.*/)?adicon_ -# /adhug_ (easylist.txt: 1555) -/(.*/)?adhug_ -# /adhub. (easylist.txt: 1554) -/(.*/)?adhub\. -adhub.*. -# /adhtml/* (easylist.txt: 1553) -/(.*/)?adhtml/.* -# /adhref. (easylist.txt: 1552) -/(.*/)?adhref\. -adhref.*. -# /adhood. (easylist.txt: 1550) -/(.*/)?adhood\. -adhood.*. -# /adhomepage2. (easylist.txt: 1549) -/(.*/)?adhomepage2\. -adhomepage2.*. -# /adhomepage. (easylist.txt: 1548) -/(.*/)?adhomepage\. -adhomepage.*. -# /adhints/* (easylist.txt: 1547) -/(.*/)?adhints/.* -# /adhese_ (easylist.txt: 1546) -/(.*/)?adhese_ -# /adhese. (easylist.txt: 1545) -/(.*/)?adhese\. -adhese.*. -# /adheading_ (easylist.txt: 1544) -/(.*/)?adheading_ -# /adheadertxt. (easylist.txt: 1543) -/(.*/)?adheadertxt\. -adheadertxt.*. -# /adheader. (easylist.txt: 1542) -/(.*/)?adheader\. -adheader.*. -# /adhandlers2. (easylist.txt: 1541) -/(.*/)?adhandlers2\. -adhandlers2.*. -# /adhandlers- (easylist.txt: 1540) -/(.*/)?adhandlers- -adhandlers-*. -# /adhandler/*$~subdocument (easylist.txt: 1539) -/(.*/)?adhandler/.* -# /adhandler. (easylist.txt: 1538) -/(.*/)?adhandler\. -adhandler.*. -# /adhalfbanner. (easylist.txt: 1537) -/(.*/)?adhalfbanner\. -adhalfbanner.*. -# /adhads. (easylist.txt: 1536) -/(.*/)?adhads\. -adhads.*. -# /adguru. (easylist.txt: 1535) -/(.*/)?adguru\. -adguru.*. -# /adguard. (easylist.txt: 1534) -/(.*/)?adguard\. -adguard.*. -# /adgraphics/* (easylist.txt: 1533) -/(.*/)?adgraphics/.* -# /adgooglefull2. (easylist.txt: 1532) -/(.*/)?adgooglefull2\. -adgooglefull2.*. -# /adgitize- (easylist.txt: 1531) -/(.*/)?adgitize- -adgitize-*. -# /adgetter. (easylist.txt: 1530) -/(.*/)?adgetter\. -adgetter.*. -# /adGet. (easylist.txt: 1529) -/(.*/)?adGet\. -adGet.*. -# /adgeo/* (easylist.txt: 1528) -/(.*/)?adgeo/.* -# /adgenerator. (easylist.txt: 1527) -/(.*/)?adgenerator\. -adgenerator.*. -# /adgearsegmentation. (easylist.txt: 1526) -/(.*/)?adgearsegmentation\. -adgearsegmentation.*. -# /adgear2- (easylist.txt: 1525) -/(.*/)?adgear2- -adgear2-*. -# /adgear1- (easylist.txt: 1524) -/(.*/)?adgear1- -adgear1-*. -# /adgear/* (easylist.txt: 1523) -/(.*/)?adgear/.* -# /adgear.js (easylist.txt: 1522) -/(.*/)?adgear\.js -adgear.js*. -# /adgalleryheader. (easylist.txt: 1521) -/(.*/)?adgalleryheader\. -adgalleryheader.*. -# /adgallery3| (easylist.txt: 1520) -/(.*/)?adgallery3$ -# /adgallery3. (easylist.txt: 1519) -/(.*/)?adgallery3\. -adgallery3.*. -# /adgallery2| (easylist.txt: 1518) -/(.*/)?adgallery2$ -# /adgallery2. (easylist.txt: 1517) -/(.*/)?adgallery2\. -adgallery2.*. -# /adgallery1| (easylist.txt: 1516) -/(.*/)?adgallery1$ -# /adgallery1. (easylist.txt: 1515) -/(.*/)?adgallery1\. -adgallery1.*. -# /adfunctions. (easylist.txt: 1514) -/(.*/)?adfunctions\. -adfunctions.*. -# /adfunction. (easylist.txt: 1513) -/(.*/)?adfunction\. -adfunction.*. -# /adfuncs. (easylist.txt: 1512) -/(.*/)?adfuncs\. -adfuncs.*. -# /adfshow? (easylist.txt: 1511) -/(.*/)?adfshow\? -# /adfrm. (easylist.txt: 1510) -/(.*/)?adfrm\. -adfrm.*. -# /adfrequencycapping. (easylist.txt: 1509) -/(.*/)?adfrequencycapping\. -adfrequencycapping.*. -# /adframewrapper. (easylist.txt: 1508) -/(.*/)?adframewrapper\. -adframewrapper.*. -# /adframetop. (easylist.txt: 1507) -/(.*/)?adframetop\. -adframetop.*. -# /adframemiddle. (easylist.txt: 1506) -/(.*/)?adframemiddle\. -adframemiddle.*. -# /adframecommon. (easylist.txt: 1505) -/(.*/)?adframecommon\. -adframecommon.*. -# /adframebottom. (easylist.txt: 1504) -/(.*/)?adframebottom\. -adframebottom.*. -# /adframe_ (easylist.txt: 1503) -/(.*/)?adframe_ -# /adframe? (easylist.txt: 1502) -/(.*/)?adframe\? -# /adframe728bot. (easylist.txt: 1501) -/(.*/)?adframe728bot\. -adframe728bot.*. -# /adframe728b2. (easylist.txt: 1500) -/(.*/)?adframe728b2\. -adframe728b2.*. -# /adframe728b. (easylist.txt: 1499) -/(.*/)?adframe728b\. -adframe728b.*. -# /adframe728a. (easylist.txt: 1498) -/(.*/)?adframe728a\. -adframe728a.*. -# /adframe468. (easylist.txt: 1497) -/(.*/)?adframe468\. -adframe468.*. -# /adframe2. (easylist.txt: 1496) -/(.*/)?adframe2\. -adframe2.*. -# /adframe120x240. (easylist.txt: 1495) -/(.*/)?adframe120x240\. -adframe120x240.*. -# /adframe120. (easylist.txt: 1494) -/(.*/)?adframe120\. -adframe120.*. -# /adframe/* (easylist.txt: 1493) -/(.*/)?adframe/.* -# /adframe. (easylist.txt: 1492) -/(.*/)?adframe\. -adframe.*. -# /adfr. (easylist.txt: 1491) -/(.*/)?adfr\. -adfr.*. -# /adfox. (easylist.txt: 1490) -/(.*/)?adfox\. -adfox.*. -# /adforums/* (easylist.txt: 1489) -/(.*/)?adforums/.* -# /adformats/* (easylist.txt: 1488) -/(.*/)?adformats/.* -# /adforge. (easylist.txt: 1487) -/(.*/)?adforge\. -adforge.*. -# /adforgame728x90_ (easylist.txt: 1486) -/(.*/)?adforgame728x90_ -# /adforgame728x90. (easylist.txt: 1485) -/(.*/)?adforgame728x90\. -adforgame728x90.*. -# /adforgame160x600. (easylist.txt: 1484) -/(.*/)?adforgame160x600\. -adforgame160x600.*. -# /adfootright. (easylist.txt: 1483) -/(.*/)?adfootright\. -adfootright.*. -# /adfootleft. (easylist.txt: 1482) -/(.*/)?adfootleft\. -adfootleft.*. -# /adFooterBG. (easylist.txt: 1481) -/(.*/)?adFooterBG\. -adFooterBG.*. -# /adfooter. (easylist.txt: 1480) -/(.*/)?adfooter\. -adfooter.*. -# /adfootcenter. (easylist.txt: 1479) -/(.*/)?adfootcenter\. -adfootcenter.*. -# /adfolder/* (easylist.txt: 1478) -/(.*/)?adfolder/.* -# /adfly/* (easylist.txt: 1477) -/(.*/)?adfly/.* -# /adflashes/* (easylist.txt: 1476) -/(.*/)?adflashes/.* -# /adflash. (easylist.txt: 1475) -/(.*/)?adflash\. -adflash.*. -# /adfillers/* (easylist.txt: 1474) -/(.*/)?adfillers/.* -# /adfiles/* (easylist.txt: 1473) -/(.*/)?adfiles/.* -# /adfiles. (easylist.txt: 1472) -/(.*/)?adfiles\. -adfiles.*. -# /adfile/* (easylist.txt: 1471) -/(.*/)?adfile/.* -# /adfile. (easylist.txt: 1470) -/(.*/)?adfile\. -adfile.*. -# /adfever_ (easylist.txt: 1469) -/(.*/)?adfever_ -# /adfetcher? (easylist.txt: 1468) -/(.*/)?adfetcher\? -# /adfetch? (easylist.txt: 1467) -/(.*/)?adfetch\? -# /adfetch. (easylist.txt: 1466) -/(.*/)?adfetch\. -adfetch.*. -# /adfeedtestview. (easylist.txt: 1465) -/(.*/)?adfeedtestview\. -adfeedtestview.*. -# /adfeedback/* (easylist.txt: 1464) -/(.*/)?adfeedback/.* -# /adfeed. (easylist.txt: 1463) -/(.*/)?adfeed\. -adfeed.*. -# /adfarm/* (easylist.txt: 1462) -/(.*/)?adfarm/.* -# /adfactory_ (easylist.txt: 1459) -/(.*/)?adfactory_ -# /adfactory- (easylist.txt: 1457) -/(.*/)?adfactory- -adfactory-*. -# /adfactor_ (easylist.txt: 1456) -/(.*/)?adfactor_ -# /adfactor/* (easylist.txt: 1455) -/(.*/)?adfactor/.* -# /adf.cgi? (easylist.txt: 1454) -/(.*/)?adf\.cgi\? -# /adexternal. (easylist.txt: 1453) -/(.*/)?adexternal\. -adexternal.*. -# /adexclude/* (easylist.txt: 1452) -/(.*/)?adexclude/.* -# /adexample? (easylist.txt: 1451) -/(.*/)?adexample\? -# /adevents. (easylist.txt: 1450) -/(.*/)?adevents\. -adevents.*. -# /adevent. (easylist.txt: 1449) -/(.*/)?adevent\. -adevent.*. -# /adError/* (easylist.txt: 1448) -/(.*/)?adError/.* -# /aderlee_ads. (easylist.txt: 1447) -/(.*/)?aderlee_ads\. -# /adentry. (easylist.txt: 1446) -/(.*/)?adentry\. -adentry.*. -# /adengine_ (easylist.txt: 1445) -/(.*/)?adengine_ -# /adengine/* (easylist.txt: 1444) -/(.*/)?adengine/.* -# /adengage_ (easylist.txt: 1443) -/(.*/)?adengage_ -# /adengage6. (easylist.txt: 1442) -/(.*/)?adengage6\. -adengage6.*. -# /adengage5. (easylist.txt: 1441) -/(.*/)?adengage5\. -adengage5.*. -# /adengage4. (easylist.txt: 1440) -/(.*/)?adengage4\. -adengage4.*. -# /adengage3. (easylist.txt: 1439) -/(.*/)?adengage3\. -adengage3.*. -# /adengage2. (easylist.txt: 1438) -/(.*/)?adengage2\. -adengage2.*. -# /adengage1. (easylist.txt: 1437) -/(.*/)?adengage1\. -adengage1.*. -# /adengage0. (easylist.txt: 1436) -/(.*/)?adengage0\. -adengage0.*. -# /adengage/* (easylist.txt: 1435) -/(.*/)?adengage/.* -# /adengage. (easylist.txt: 1434) -/(.*/)?adengage\. -adengage.*. -# /adengage- (easylist.txt: 1433) -/(.*/)?adengage- -adengage-*. -# /adedge/* (easylist.txt: 1432) -/(.*/)?adedge/.* -# /addyn|*|adtech; (easylist.txt: 1431) -/(.*/)?addyn\|.*\|adtech; -# /addyn|*;adtech; (easylist.txt: 1430) -/(.*/)?addyn\|.*;adtech; -# /addyn/3.0/* (easylist.txt: 1429) -/(.*/)?addyn/3\.0/.* -# /adds_banner/* (easylist.txt: 1428) -/(.*/)?adds_banner/.* -# /addon/ad/* (easylist.txt: 1427) -/(.*/)?addon/ad/.* -# /addisplay. (easylist.txt: 1426) -/(.*/)?addisplay\. -addisplay.*. -# /addeliverymodule/* (easylist.txt: 1425) -/(.*/)?addeliverymodule/.* -# /addelivery/* (easylist.txt: 1424) -/(.*/)?addelivery/.* -# /addefend/* (easylist.txt: 1423) -/(.*/)?addefend/.* -# /addefend. (easylist.txt: 1422) -/(.*/)?addefend\. -addefend.*. -# /addeals/* (easylist.txt: 1421) -/(.*/)?addeals/.* -# /addatasandbox? (easylist.txt: 1420) -/(.*/)?addatasandbox\? -# /addata. (easylist.txt: 1419) -/(.*/)?addata\. -addata.*. -# /add728. (easylist.txt: 1418) -/(.*/)?add728\. -add728.*. -# /adcycle/* (easylist.txt: 1417) -/(.*/)?adcycle/.* -# /adcycle. (easylist.txt: 1416) -/(.*/)?adcycle\. -adcycle.*. -# /adcss/* (easylist.txt: 1415) -/(.*/)?adcss/.* -# /adcreative/* (easylist.txt: 1414) -/(.*/)?adcreative/.* -# /adcreative. (easylist.txt: 1413) -/(.*/)?adcreative\. -adcreative.*. -# /adcounter. (easylist.txt: 1412) -/(.*/)?adcounter\. -adcounter.*. -# /adcount. (easylist.txt: 1411) -/(.*/)?adcount\. -adcount.*. -# /adcore_ (easylist.txt: 1410) -/(.*/)?adcore_ -# /adcore. (easylist.txt: 1409) -/(.*/)?adcore\. -adcore.*. -# /adcontroller. (easylist.txt: 1408) -/(.*/)?adcontroller\. -adcontroller.*. -# /adcontrol/* (easylist.txt: 1407) -/(.*/)?adcontrol/.* -# /adcontrol. (easylist.txt: 1406) -/(.*/)?adcontrol\. -adcontrol.*. -# /adcontents_ (easylist.txt: 1405) -/(.*/)?adcontents_ -# /adcontent/* (easylist.txt: 1404) -/(.*/)?adcontent/.* -# /adcontent.$~object-subrequest (easylist.txt: 1403) -/(.*/)?adcontent\. -adcontent.*. -# /adcontainer? (easylist.txt: 1402) -/(.*/)?adcontainer\? -# /adconfig/* (easylist.txt: 1401) -/(.*/)?adconfig/.* -# /adconfig.xml? (easylist.txt: 1400) -/(.*/)?adconfig\.xml\? -# /adconfig.js (easylist.txt: 1399) -/(.*/)?adconfig\.js -adconfig.js*. -# /adcomponent/* (easylist.txt: 1398) -/(.*/)?adcomponent/.* -# /adcomp. (easylist.txt: 1397) -/(.*/)?adcomp\. -adcomp.*. -# /adcommon? (easylist.txt: 1396) -/(.*/)?adcommon\? -# /adcollector. (easylist.txt: 1395) -/(.*/)?adcollector\. -adcollector.*. -# /adcodes/* (easylist.txt: 1394) -/(.*/)?adcodes/.* -# /adcode_ (easylist.txt: 1393) -/(.*/)?adcode_ -# /adcode/* (easylist.txt: 1392) -/(.*/)?adcode/.* -# /adcode. (easylist.txt: 1391) -/(.*/)?adcode\. -adcode.*. -# /adclutter. (easylist.txt: 1390) -/(.*/)?adclutter\. -adclutter.*. -# /adclixad. (easylist.txt: 1389) -/(.*/)?adclixad\. -adclixad.*. -# /adclix. (easylist.txt: 1388) -/(.*/)?adclix\. -adclix.*. -# /adclient/* (easylist.txt: 1387) -/(.*/)?adclient/.* -# /adclient. (easylist.txt: 1386) -/(.*/)?adclient\. -adclient.*. -# /adclient- (easylist.txt: 1385) -/(.*/)?adclient- -adclient-*. -# /adclick/* (easylist.txt: 1384) -/(.*/)?adclick/.* -# /adclick. (easylist.txt: 1383) -/(.*/)?adclick\. -adclick.*. -# /adcircle. (easylist.txt: 1382) -/(.*/)?adcircle\. -adcircle.*. -# /adchoicesv4. (easylist.txt: 1381) -/(.*/)?adchoicesv4\. -adchoicesv4.*. -# /adchoiceslogo. (easylist.txt: 1380) -/(.*/)?adchoiceslogo\. -adchoiceslogo.*. -# /adchoicesicon. (easylist.txt: 1379) -/(.*/)?adchoicesicon\. -adchoicesicon.*. -# /adchoicesfooter. (easylist.txt: 1378) -/(.*/)?adchoicesfooter\. -adchoicesfooter.*. -# /adchoices_ (easylist.txt: 1377) -/(.*/)?adchoices_ -# /adchoices2. (easylist.txt: 1376) -/(.*/)?adchoices2\. -adchoices2.*. -# /adchoices16. (easylist.txt: 1375) -/(.*/)?adchoices16\. -adchoices16.*. -# /adchoices/* (easylist.txt: 1374) -/(.*/)?adchoices/.* -# /adchoices. (easylist.txt: 1373) -/(.*/)?adchoices\. -adchoices.*. -# /adchoices- (easylist.txt: 1372) -/(.*/)?adchoices- -adchoices-*. -# /adchoice_ (easylist.txt: 1371) -/(.*/)?adchoice_ -# /adchoice/* (easylist.txt: 1370) -/(.*/)?adchoice/.* -# /adchoice. (easylist.txt: 1369) -/(.*/)?adchoice\. -adchoice.*. -# /adcheck? (easylist.txt: 1368) -/(.*/)?adcheck\? -# /adcheck. (easylist.txt: 1367) -/(.*/)?adcheck\. -adcheck.*. -# /adchannel_ (easylist.txt: 1366) -/(.*/)?adchannel_ -# /adchain. (easylist.txt: 1365) -/(.*/)?adchain\. -adchain.*. -# /adchain- (easylist.txt: 1364) -/(.*/)?adchain- -adchain-*. -# /adcgi? (easylist.txt: 1363) -/(.*/)?adcgi\? -# /adcframe. (easylist.txt: 1362) -/(.*/)?adcframe\. -adcframe.*. -# /adcentral. (easylist.txt: 1361) -/(.*/)?adcentral\. -adcentral.*. -# /adcenter.$script (easylist.txt: 1360) -/(.*/)?adcenter\. -adcenter.*. -# /adcell/* (easylist.txt: 1359) -/(.*/)?adcell/.* -# /adcdn. (easylist.txt: 1358) -/(.*/)?adcdn\. -adcdn.*. -# /adcde.js (easylist.txt: 1357) -/(.*/)?adcde\.js -adcde.js*. -# /adcast_ (easylist.txt: 1356) -/(.*/)?adcast_ -# /adcast01_ (easylist.txt: 1355) -/(.*/)?adcast01_ -# /adcash. (easylist.txt: 1354) -/(.*/)?adcash\. -adcash.*. -# /adcash- (easylist.txt: 1353) -/(.*/)?adcash- -adcash-*. -# /adcampaigns/* (easylist.txt: 1352) -/(.*/)?adcampaigns/.* -# /adcalloverride. (easylist.txt: 1351) -/(.*/)?adcalloverride\. -adcalloverride.*. -# /adcall. (easylist.txt: 1350) -/(.*/)?adcall\. -adcall.*. -# /adcache. (easylist.txt: 1349) -/(.*/)?adcache\. -adcache.*. -# /adbytes. (easylist.txt: 1348) -/(.*/)?adbytes\. -adbytes.*. -# /adbutler/* (easylist.txt: 1347) -/(.*/)?adbutler/.* -# /adbureau. (easylist.txt: 1346) -/(.*/)?adbureau\. -adbureau.*. -# /adbug_ (easylist.txt: 1345) -/(.*/)?adbug_ -# /adbucks/* (easylist.txt: 1344) -/(.*/)?adbucks/.* -# /adbriteincright. (easylist.txt: 1343) -/(.*/)?adbriteincright\. -adbriteincright.*. -# /adbriteincleft2. (easylist.txt: 1342) -/(.*/)?adbriteincleft2\. -adbriteincleft2.*. -# /adbriteinc. (easylist.txt: 1341) -/(.*/)?adbriteinc\. -adbriteinc.*. -# /adbrite_ (easylist.txt: 1340) -/(.*/)?adbrite_ -# /adbrite2. (easylist.txt: 1339) -/(.*/)?adbrite2\. -adbrite2.*. -# /adbrite/* (easylist.txt: 1338) -/(.*/)?adbrite/.* -# /adbrite. (easylist.txt: 1337) -/(.*/)?adbrite\. -adbrite.*. -# /adbrite- (easylist.txt: 1336) -/(.*/)?adbrite- -adbrite-*. -# /adboxtable- (easylist.txt: 1335) -/(.*/)?adboxtable- -adboxtable-*. -# /adboxes/* (easylist.txt: 1334) -/(.*/)?adboxes/.* -# /adboxbk. (easylist.txt: 1333) -/(.*/)?adboxbk\. -adboxbk.*. -# /adbox_ (easylist.txt: 1332) -/(.*/)?adbox_ -# /adbox2. (easylist.txt: 1331) -/(.*/)?adbox2\. -adbox2.*. -# /adbox1. (easylist.txt: 1330) -/(.*/)?adbox1\. -adbox1.*. -# /adbox/* (easylist.txt: 1329) -/(.*/)?adbox/.* -# /adbox. (easylist.txt: 1328) -/(.*/)?adbox\. -adbox.*. -# /adbottom. (easylist.txt: 1327) -/(.*/)?adbottom\. -adbottom.*. -# /adbotright. (easylist.txt: 1326) -/(.*/)?adbotright\. -adbotright.*. -# /adbotleft. (easylist.txt: 1325) -/(.*/)?adbotleft\. -adbotleft.*. -# /adbot_ (easylist.txt: 1324) -/(.*/)?adbot_ -# /adbot728. (easylist.txt: 1323) -/(.*/)?adbot728\. -adbot728.*. -# /adbot300. (easylist.txt: 1322) -/(.*/)?adbot300\. -adbot300.*. -# /adbot160. (easylist.txt: 1321) -/(.*/)?adbot160\. -adbot160.*. -# /adborder. (easylist.txt: 1320) -/(.*/)?adborder\. -adborder.*. -# /adboost. (easylist.txt: 1319) -/(.*/)?adboost\. -adboost.*. -# /adbn? (easylist.txt: 1318) -/(.*/)?adbn\? -# /adblockr. (easylist.txt: 1317) -/(.*/)?adblockr\. -adblockr.*. -# /adblockl. (easylist.txt: 1316) -/(.*/)?adblockl\. -adblockl.*. -# /adblock?id= (easylist.txt: 1315) -/(.*/)?adblock\?id= -# /adblock26. (easylist.txt: 1314) -/(.*/)?adblock26\. -adblock26.*. -# /adblock.js (easylist.txt: 1313) -/(.*/)?adblock\.js -adblock.js*. -# /adblock.ash (easylist.txt: 1312) -/(.*/)?adblock\.ash -adblock.ash*. -# /adblob. (easylist.txt: 1311) -/(.*/)?adblob\. -adblob.*. -# /adblade-publisher-tools/* (easylist.txt: 1310) -/(.*/)?adblade-publisher-tools/.* -# /adbg.jpg (easylist.txt: 1309) -/(.*/)?adbg\.jpg -adbg.jpg*. -# /adbetween/* (easylist.txt: 1308) -/(.*/)?adbetween/.* -# /adbebi_ (easylist.txt: 1307) -/(.*/)?adbebi_ -# /adbeacon. (easylist.txt: 1306) -/(.*/)?adbeacon\. -adbeacon.*. -# /adbase. (easylist.txt: 1305) -/(.*/)?adbase\. -adbase.*. -# /adbars. (easylist.txt: 1304) -/(.*/)?adbars\. -adbars.*. -# /adbar_ (easylist.txt: 1303) -/(.*/)?adbar_ -# /adbar2_ (easylist.txt: 1302) -/(.*/)?adbar2_ -# /adbar/* (easylist.txt: 1301) -/(.*/)?adbar/.* -# /adbar. (easylist.txt: 1300) -/(.*/)?adbar\. -adbar.*. -# /adbanners/* (easylist.txt: 1299) -/(.*/)?adbanners/.* -# /adbanner_ (easylist.txt: 1298) -/(.*/)?adbanner_ -# /adbanner2. (easylist.txt: 1297) -/(.*/)?adbanner2\. -adbanner2.*. -# /adbanner/* (easylist.txt: 1296) -/(.*/)?adbanner/.* -# /adbanner. (easylist.txt: 1295) -/(.*/)?adbanner\. -adbanner.*. -# /adban. (easylist.txt: 1294) -/(.*/)?adban\. -adban.*. -# /adback? (easylist.txt: 1293) -/(.*/)?adback\? -# /adback. (easylist.txt: 1292) -/(.*/)?adback\. -adback.*. -# /adb.js?tag= (easylist.txt: 1291) -/(.*/)?adb\.js\?tag= -# /adasset4/* (easylist.txt: 1290) -/(.*/)?adasset4/.* -# /adasset/* (easylist.txt: 1289) -/(.*/)?adasset/.* -# /adarena/* (easylist.txt: 1288) -/(.*/)?adarena/.* -# /adaptvexchangevastvideo. (easylist.txt: 1287) -/(.*/)?adaptvexchangevastvideo\. -adaptvexchangevastvideo.*. -# /adaptvadservervastvideo. (easylist.txt: 1286) -/(.*/)?adaptvadservervastvideo\. -adaptvadservervastvideo.*. -# /adaptvadplayer. (easylist.txt: 1285) -/(.*/)?adaptvadplayer\. -adaptvadplayer.*. -# /adanim/* (easylist.txt: 1284) -/(.*/)?adanim/.* -# /adanalytics. (easylist.txt: 1283) -/(.*/)?adanalytics\. -adanalytics.*. -# /adaffiliate_ (easylist.txt: 1282) -/(.*/)?adaffiliate_ -# /adactions. (easylist.txt: 1281) -/(.*/)?adactions\. -adactions.*. -# /ad_www_ (easylist.txt: 1280) -/(.*/)?ad_www_ -# /ad_wrapper. (easylist.txt: 1279) -/(.*/)?ad_wrapper\. -# /ad_width/* (easylist.txt: 1278) -/(.*/)?ad_width/.* -# /ad_wide_ (easylist.txt: 1277) -/(.*/)?ad_wide_ -# /ad_view_ (easylist.txt: 1276) -/(.*/)?ad_view_ -# /ad_video1. (easylist.txt: 1275) -/(.*/)?ad_video1\. -# /ad_video.htm (easylist.txt: 1274) -/(.*/)?ad_video\.htm -# /ad_vertical. (easylist.txt: 1273) -/(.*/)?ad_vertical\. -# /ad_vert. (easylist.txt: 1272) -/(.*/)?ad_vert\. -# /ad_ver/* (easylist.txt: 1271) -/(.*/)?ad_ver/.* -# /ad_utils/* (easylist.txt: 1270) -/(.*/)?ad_utils/.* -# /ad_utils. (easylist.txt: 1269) -/(.*/)?ad_utils\. -# /ad_util. (easylist.txt: 1268) -/(.*/)?ad_util\. -# /ad_upload/* (easylist.txt: 1267) -/(.*/)?ad_upload/.* -# /ad_units/* (easylist.txt: 1266) -/(.*/)?ad_units/.* -# /ad_units. (easylist.txt: 1265) -/(.*/)?ad_units\. -# /ad_txt. (easylist.txt: 1264) -/(.*/)?ad_txt\. -# /ad_tpl. (easylist.txt: 1263) -/(.*/)?ad_tpl\. -# /ad_tower_ (easylist.txt: 1262) -/(.*/)?ad_tower_ -# /ad_topgray2. (easylist.txt: 1261) -/(.*/)?ad_topgray2\. -# /ad_top_ (easylist.txt: 1260) -/(.*/)?ad_top_ -# /ad_top/* (easylist.txt: 1259) -/(.*/)?ad_top/.* -# /ad_top. (easylist.txt: 1258) -/(.*/)?ad_top\. -# /ad_title_ (easylist.txt: 1257) -/(.*/)?ad_title_ -# /ad_timer. (easylist.txt: 1256) -/(.*/)?ad_timer\. -# /ad_tile/* (easylist.txt: 1255) -/(.*/)?ad_tile/.* -# /ad_tickets. (easylist.txt: 1254) -/(.*/)?ad_tickets\. -# /ad_text_ (easylist.txt: 1253) -/(.*/)?ad_text_ -# /ad_text. (easylist.txt: 1252) -/(.*/)?ad_text\. -# /ad_tags_ (easylist.txt: 1251) -/(.*/)?ad_tags_ -# /ad_tag_ (easylist.txt: 1250) -/(.*/)?ad_tag_ -# /ad_tag. (easylist.txt: 1249) -/(.*/)?ad_tag\. -# /ad_tab. (easylist.txt: 1248) -/(.*/)?ad_tab\. -# /ad_system/* (easylist.txt: 1247) -/(.*/)?ad_system/.* -# /ad_syshome. (easylist.txt: 1246) -/(.*/)?ad_syshome\. -# /ad_sys/* (easylist.txt: 1245) -/(.*/)?ad_sys/.* -# /ad_supertile/* (easylist.txt: 1244) -/(.*/)?ad_supertile/.* -# /ad_styling_ (easylist.txt: 1243) -/(.*/)?ad_styling_ -# /ad_stem/* (easylist.txt: 1242) -/(.*/)?ad_stem/.* -# /ad_status. (easylist.txt: 1241) -/(.*/)?ad_status\. -# /ad_srv. (easylist.txt: 1240) -/(.*/)?ad_srv\. -# /ad_squares. (easylist.txt: 1239) -/(.*/)?ad_squares\. -# /ad_square_ (easylist.txt: 1238) -/(.*/)?ad_square_ -# /ad_square. (easylist.txt: 1237) -/(.*/)?ad_square\. -# /ad_spot. (easylist.txt: 1236) -/(.*/)?ad_spot\. -# /ad_space. (easylist.txt: 1235) -/(.*/)?ad_space\. -# /ad_slideout. (easylist.txt: 1234) -/(.*/)?ad_slideout\. -# /ad_skyscraper. (easylist.txt: 1233) -/(.*/)?ad_skyscraper\. -# /ad_sky. (easylist.txt: 1232) -/(.*/)?ad_sky\. -# /ad_skin_ (easylist.txt: 1231) -/(.*/)?ad_skin_ -# /ad_sizes= (easylist.txt: 1230) -/(.*/)?ad_sizes= -# /ad_sidebar/* (easylist.txt: 1229) -/(.*/)?ad_sidebar/.* -# /ad_side. (easylist.txt: 1228) -/(.*/)?ad_side\. -# /ad_show? (easylist.txt: 1227) -/(.*/)?ad_show\? -# /ad_show. (easylist.txt: 1226) -/(.*/)?ad_show\. -# /ad_shared/* (easylist.txt: 1225) -/(.*/)?ad_shared/.* -# /ad_servlet. (easylist.txt: 1224) -/(.*/)?ad_servlet\. -# /ad_server/* (easylist.txt: 1223) -/(.*/)?ad_server/.* -# /ad_server. (easylist.txt: 1222) -/(.*/)?ad_server\. -# /ad_serve_ (easylist.txt: 1221) -/(.*/)?ad_serve_ -# /ad_serve. (easylist.txt: 1220) -/(.*/)?ad_serve\. -# /ad_serv. (easylist.txt: 1219) -/(.*/)?ad_serv\. -# /ad_scroller. (easylist.txt: 1218) -/(.*/)?ad_scroller\. -# /ad_script_ (easylist.txt: 1217) -/(.*/)?ad_script_ -# /ad_script. (easylist.txt: 1216) -/(.*/)?ad_script\. -# /ad_rotator_ (easylist.txt: 1215) -/(.*/)?ad_rotator_ -# /ad_rotator/* (easylist.txt: 1214) -/(.*/)?ad_rotator/.* -# /ad_rotator. (easylist.txt: 1213) -/(.*/)?ad_rotator\. -# /ad_rotation. (easylist.txt: 1212) -/(.*/)?ad_rotation\. -# /ad_right_ (easylist.txt: 1211) -/(.*/)?ad_right_ -# /ad_right. (easylist.txt: 1210) -/(.*/)?ad_right\. -# /ad_resize. (easylist.txt: 1209) -/(.*/)?ad_resize\. -# /ad_request. (easylist.txt: 1208) -/(.*/)?ad_request\. -# /ad_req. (easylist.txt: 1207) -/(.*/)?ad_req\. -# /ad_rentangle. (easylist.txt: 1206) -/(.*/)?ad_rentangle\. -# /ad_renderv4_ (easylist.txt: 1205) -/(.*/)?ad_renderv4_ -# /ad_render_ (easylist.txt: 1204) -/(.*/)?ad_render_ -# /ad_reloader_ (easylist.txt: 1203) -/(.*/)?ad_reloader_ -# /ad_refresher. (easylist.txt: 1202) -/(.*/)?ad_refresher\. -# /ad_refresh. (easylist.txt: 1201) -/(.*/)?ad_refresh\. -# /ad_rectangle_ (easylist.txt: 1200) -/(.*/)?ad_rectangle_ -# /ad_print. (easylist.txt: 1199) -/(.*/)?ad_print\. -# /ad_preroll- (easylist.txt: 1198) -/(.*/)?ad_preroll- -# /ad_premium_ (easylist.txt: 1197) -/(.*/)?ad_premium_ -# /ad_premium. (easylist.txt: 1196) -/(.*/)?ad_premium\. -# /ad_position_ (easylist.txt: 1195) -/(.*/)?ad_position_ -# /ad_position= (easylist.txt: 1194) -/(.*/)?ad_position= -# /ad_pos= (easylist.txt: 1193) -/(.*/)?ad_pos= -# /ad_popup_ (easylist.txt: 1192) -/(.*/)?ad_popup_ -# /ad_pop1. (easylist.txt: 1191) -/(.*/)?ad_pop1\. -# /ad_pop. (easylist.txt: 1190) -/(.*/)?ad_pop\. -# /ad_pics/* (easylist.txt: 1189) -/(.*/)?ad_pics/.* -# /ad_peel/* (easylist.txt: 1188) -/(.*/)?ad_peel/.* -# /ad_parts. (easylist.txt: 1187) -/(.*/)?ad_parts\. -# /ad_paper_ (easylist.txt: 1186) -/(.*/)?ad_paper_ -# /ad_page_ (easylist.txt: 1185) -/(.*/)?ad_page_ -# /ad_overlay. (easylist.txt: 1184) -/(.*/)?ad_overlay\. -# /ad_option_ (easylist.txt: 1183) -/(.*/)?ad_option_ -# /ad_ops/* (easylist.txt: 1182) -/(.*/)?ad_ops/.* -# /ad_offersmail_ (easylist.txt: 1181) -/(.*/)?ad_offersmail_ -# /ad_oas/* (easylist.txt: 1180) -/(.*/)?ad_oas/.* -# /ad_notice. (easylist.txt: 1179) -/(.*/)?ad_notice\. -# /ad_note. (easylist.txt: 1178) -/(.*/)?ad_note\. -# /ad_news. (easylist.txt: 1177) -/(.*/)?ad_news\. -# /ad_navigbar_ (easylist.txt: 1176) -/(.*/)?ad_navigbar_ -# /ad_multi_ (easylist.txt: 1175) -/(.*/)?ad_multi_ -# /ad_mpu. (easylist.txt: 1174) -/(.*/)?ad_mpu\. -# /ad_mobile. (easylist.txt: 1173) -/(.*/)?ad_mobile\. -# /ad_mini_ (easylist.txt: 1172) -/(.*/)?ad_mini_ -# /ad_medium_ (easylist.txt: 1171) -/(.*/)?ad_medium_ -# /ad_media/* (easylist.txt: 1170) -/(.*/)?ad_media/.* -# /ad_mbox. (easylist.txt: 1169) -/(.*/)?ad_mbox\. -# /ad_master_ (easylist.txt: 1168) -/(.*/)?ad_master_ -# /ad_manager/* (easylist.txt: 1167) -/(.*/)?ad_manager/.* -# /ad_manager. (easylist.txt: 1166) -/(.*/)?ad_manager\. -# /ad_manage. (easylist.txt: 1165) -/(.*/)?ad_manage\. -# /ad_lomadee. (easylist.txt: 1164) -/(.*/)?ad_lomadee\. -# /ad_log_ (easylist.txt: 1163) -/(.*/)?ad_log_ -# /ad_locations/* (easylist.txt: 1162) -/(.*/)?ad_locations/.* -# /ad_loader2. (easylist.txt: 1161) -/(.*/)?ad_loader2\. -# /ad_loader. (easylist.txt: 1160) -/(.*/)?ad_loader\. -# /ad_load. (easylist.txt: 1159) -/(.*/)?ad_load\. -# /ad_listpage. (easylist.txt: 1158) -/(.*/)?ad_listpage\. -# /ad_links/* (easylist.txt: 1157) -/(.*/)?ad_links/.* -# /ad_link. (easylist.txt: 1156) -/(.*/)?ad_link\. -# /ad_legend_ (easylist.txt: 1155) -/(.*/)?ad_legend_ -# /ad_left_ (easylist.txt: 1154) -/(.*/)?ad_left_ -# /ad_left. (easylist.txt: 1153) -/(.*/)?ad_left\. -# /ad_leaderboard/* (easylist.txt: 1152) -/(.*/)?ad_leaderboard/.* -# /ad_leaderboard. (easylist.txt: 1151) -/(.*/)?ad_leaderboard\. -# /ad_leader_ (easylist.txt: 1150) -/(.*/)?ad_leader_ -# /ad_leader. (easylist.txt: 1149) -/(.*/)?ad_leader\. -# /ad_large. (easylist.txt: 1148) -/(.*/)?ad_large\. -# /ad_label_ (easylist.txt: 1147) -/(.*/)?ad_label_ -# /ad_label728. (easylist.txt: 1146) -/(.*/)?ad_label728\. -# /ad_label2_ (easylist.txt: 1145) -/(.*/)?ad_label2_ -# /ad_keywords. (easylist.txt: 1144) -/(.*/)?ad_keywords\. -# /ad_jnaught/* (easylist.txt: 1143) -/(.*/)?ad_jnaught/.* -# /ad_insert. (easylist.txt: 1142) -/(.*/)?ad_insert\. -# /ad_index_ (easylist.txt: 1141) -/(.*/)?ad_index_ -# /ad_include. (easylist.txt: 1140) -/(.*/)?ad_include\. -# /ad_img/* (easylist.txt: 1139) -/(.*/)?ad_img/.* -# /ad_img. (easylist.txt: 1138) -/(.*/)?ad_img\. -# /ad_images/* (easylist.txt: 1137) -/(.*/)?ad_images/.* -# /ad_image2. (easylist.txt: 1136) -/(.*/)?ad_image2\. -# /ad_image. (easylist.txt: 1135) -/(.*/)?ad_image\. -# /ad_iframe_ (easylist.txt: 1134) -/(.*/)?ad_iframe_ -# /ad_iframe. (easylist.txt: 1133) -/(.*/)?ad_iframe\. -# /ad_icons/* (easylist.txt: 1132) -/(.*/)?ad_icons/.* -# /ad_html/* (easylist.txt: 1131) -/(.*/)?ad_html/.* -# /ad_horizontal. (easylist.txt: 1130) -/(.*/)?ad_horizontal\. -# /ad_horiz. (easylist.txt: 1129) -/(.*/)?ad_horiz\. -# /ad_horisontal. (easylist.txt: 1128) -/(.*/)?ad_horisontal\. -# /ad_homepage_ (easylist.txt: 1127) -/(.*/)?ad_homepage_ -# /ad_home_ (easylist.txt: 1126) -/(.*/)?ad_home_ -# /ad_home2011_ (easylist.txt: 1125) -/(.*/)?ad_home2011_ -# /ad_holder/* (easylist.txt: 1124) -/(.*/)?ad_holder/.* -# /ad_height/* (easylist.txt: 1123) -/(.*/)?ad_height/.* -# /ad_header_ (easylist.txt: 1122) -/(.*/)?ad_header_ -# /ad_header. (easylist.txt: 1121) -/(.*/)?ad_header\. -# /ad_head_ (easylist.txt: 1120) -/(.*/)?ad_head_ -# /ad_hcr_ (easylist.txt: 1119) -/(.*/)?ad_hcr_ -# /ad_hcl_ (easylist.txt: 1118) -/(.*/)?ad_hcl_ -# /ad_h.css? (easylist.txt: 1117) -/(.*/)?ad_h\.css\? -# /ad_google. (easylist.txt: 1116) -/(.*/)?ad_google\. -# /ad_gif_ (easylist.txt: 1115) -/(.*/)?ad_gif_ -# /ad_gif/* (easylist.txt: 1114) -/(.*/)?ad_gif/.* -# /ad_generator? (easylist.txt: 1113) -/(.*/)?ad_generator\? -# /ad_generator. (easylist.txt: 1112) -/(.*/)?ad_generator\. -# /ad_function. (easylist.txt: 1111) -/(.*/)?ad_function\. -# /ad_frm. (easylist.txt: 1110) -/(.*/)?ad_frm\. -# /ad_frame? (easylist.txt: 1109) -/(.*/)?ad_frame\? -# /ad_frame. (easylist.txt: 1108) -/(.*/)?ad_frame\. -# /ad_forum_ (easylist.txt: 1107) -/(.*/)?ad_forum_ -# /ad_footer_ (easylist.txt: 1106) -/(.*/)?ad_footer_ -# /ad_footer. (easylist.txt: 1105) -/(.*/)?ad_footer\. -# /ad_folder/* (easylist.txt: 1104) -/(.*/)?ad_folder/.* -# /ad_floater. (easylist.txt: 1103) -/(.*/)?ad_floater\. -# /ad_flat_ (easylist.txt: 1102) -/(.*/)?ad_flat_ -# /ad_flash/* (easylist.txt: 1101) -/(.*/)?ad_flash/.* -# /ad_filmstrip/* (easylist.txt: 1100) -/(.*/)?ad_filmstrip/.* -# /ad_filler. (easylist.txt: 1099) -/(.*/)?ad_filler\. -# /ad_fill. (easylist.txt: 1098) -/(.*/)?ad_fill\. -# /ad_files/* (easylist.txt: 1097) -/(.*/)?ad_files/.* -# /ad_file/* (easylist.txt: 1096) -/(.*/)?ad_file/.* -# /ad_feed. (easylist.txt: 1095) -/(.*/)?ad_feed\. -# /ad_entry_ (easylist.txt: 1094) -/(.*/)?ad_entry_ -# /ad_engine? (easylist.txt: 1093) -/(.*/)?ad_engine\? -# /ad_editorials_ (easylist.txt: 1092) -/(.*/)?ad_editorials_ -# /ad_ebound. (easylist.txt: 1091) -/(.*/)?ad_ebound\. -# /ad_drivers/* (easylist.txt: 1090) -/(.*/)?ad_drivers/.* -# /ad_display_ (easylist.txt: 1089) -/(.*/)?ad_display_ -# /ad_display. (easylist.txt: 1088) -/(.*/)?ad_display\. -# /ad_dir/* (easylist.txt: 1087) -/(.*/)?ad_dir/.* -# /ad_digital. (easylist.txt: 1086) -/(.*/)?ad_digital\. -# /ad_detect. (easylist.txt: 1085) -/(.*/)?ad_detect\. -# /ad_data/* (easylist.txt: 1084) -/(.*/)?ad_data/.* -# /ad_creatives. (easylist.txt: 1083) -/(.*/)?ad_creatives\. -# /ad_counter_ (easylist.txt: 1082) -/(.*/)?ad_counter_ -# /ad_counter. (easylist.txt: 1081) -/(.*/)?ad_counter\. -# /ad_count. (easylist.txt: 1080) -/(.*/)?ad_count\. -# /ad_contents/* (easylist.txt: 1079) -/(.*/)?ad_contents/.* -# /ad_content. (easylist.txt: 1078) -/(.*/)?ad_content\. -# /ad_container_ (easylist.txt: 1077) -/(.*/)?ad_container_ -# /ad_configurations_ (easylist.txt: 1076) -/(.*/)?ad_configurations_ -# /ad_configuration. (easylist.txt: 1075) -/(.*/)?ad_configuration\. -# /ad_commonside_ (easylist.txt: 1074) -/(.*/)?ad_commonside_ -# /ad_commonside. (easylist.txt: 1073) -/(.*/)?ad_commonside\. -# /ad_code. (easylist.txt: 1072) -/(.*/)?ad_code\. -# /ad_choices_ (easylist.txt: 1071) -/(.*/)?ad_choices_ -# /ad_choices. (easylist.txt: 1070) -/(.*/)?ad_choices\. -# /ad_check. (easylist.txt: 1069) -/(.*/)?ad_check\. -# /ad_caption. (easylist.txt: 1068) -/(.*/)?ad_caption\. -# /ad_campaigns/* (easylist.txt: 1067) -/(.*/)?ad_campaigns/.* -# /ad_cache/* (easylist.txt: 1066) -/(.*/)?ad_cache/.* -# /ad_button. (easylist.txt: 1065) -/(.*/)?ad_button\. -# /ad_bsb. (easylist.txt: 1064) -/(.*/)?ad_bsb\. -# /ad_box_ (easylist.txt: 1063) -/(.*/)?ad_box_ -# /ad_box? (easylist.txt: 1062) -/(.*/)?ad_box\? -# /ad_box2. (easylist.txt: 1061) -/(.*/)?ad_box2\. -# /ad_box1. (easylist.txt: 1060) -/(.*/)?ad_box1\. -# /ad_box. (easylist.txt: 1059) -/(.*/)?ad_box\. -# /ad_bottom. (easylist.txt: 1058) -/(.*/)?ad_bottom\. -# /ad_bot. (easylist.txt: 1057) -/(.*/)?ad_bot\. -# /ad_bomb/* (easylist.txt: 1056) -/(.*/)?ad_bomb/.* -# /ad_blog. (easylist.txt: 1055) -/(.*/)?ad_blog\. -# /ad_big_ (easylist.txt: 1054) -/(.*/)?ad_big_ -# /ad_base. (easylist.txt: 1053) -/(.*/)?ad_base\. -# /ad_bar_ (easylist.txt: 1052) -/(.*/)?ad_bar_ -# /ad_banners/* (easylist.txt: 1051) -/(.*/)?ad_banners/.* -# /ad_bannerPool- (easylist.txt: 1050) -/(.*/)?ad_bannerPool- -# /ad_banner_ (easylist.txt: 1049) -/(.*/)?ad_banner_ -# /ad_banner2. (easylist.txt: 1048) -/(.*/)?ad_banner2\. -# /ad_banner1. (easylist.txt: 1047) -/(.*/)?ad_banner1\. -# /ad_banner/* (easylist.txt: 1046) -/(.*/)?ad_banner/.* -# /ad_banner. (easylist.txt: 1045) -/(.*/)?ad_banner\. -# /Ad_Arub_ (easylist.txt: 1044) -/(.*/)?Ad_Arub_ -# /ad_art/* (easylist.txt: 1043) -/(.*/)?ad_art/.* -# /ad_area. (easylist.txt: 1042) -/(.*/)?ad_area\. -# /ad_agency/* (easylist.txt: 1041) -/(.*/)?ad_agency/.* -# /ad_960x90_ (easylist.txt: 1040) -/(.*/)?ad_960x90_ -# /ad_728_ (easylist.txt: 1039) -/(.*/)?ad_728_ -# /ad_728. (easylist.txt: 1038) -/(.*/)?ad_728\. -# /ad_600x160_ (easylist.txt: 1037) -/(.*/)?ad_600x160_ -# /ad_600_ (easylist.txt: 1036) -/(.*/)?ad_600_ -# /ad_300_ (easylist.txt: 1035) -/(.*/)?ad_300_ -# /ad_300250. (easylist.txt: 1034) -/(.*/)?ad_300250\. -# /ad_300. (easylist.txt: 1033) -/(.*/)?ad_300\. -# /ad_250x250_ (easylist.txt: 1032) -/(.*/)?ad_250x250_ -# /ad_234x60_ (easylist.txt: 1031) -/(.*/)?ad_234x60_ -# /ad_200x90_ (easylist.txt: 1030) -/(.*/)?ad_200x90_ -# /ad_120_ (easylist.txt: 1029) -/(.*/)?ad_120_ -# /ad?type= (easylist.txt: 1028) -/(.*/)?ad\?type= -# /ad?sponsor= (easylist.txt: 1027) -/(.*/)?ad\?sponsor= -# /ad?pos_ (easylist.txt: 1026) -/(.*/)?ad\?pos_ -# /ad?iframe_ (easylist.txt: 1025) -/(.*/)?ad\?iframe_ -# /ad?currentview= (easylist.txt: 1024) -/(.*/)?ad\?currentview= -# /ad?count= (easylist.txt: 1023) -/(.*/)?ad\?count= -# /ad?cid= (easylist.txt: 1022) -/(.*/)?ad\?cid= -# /ad?channel= (easylist.txt: 1021) -/(.*/)?ad\?channel= -# /ad8. (easylist.txt: 1020) -/(.*/)?ad8\. -ad8.*. -# /ad728x90. (easylist.txt: 1019) -/(.*/)?ad728x90\. -ad728x90.*. -# /ad728x15_ (easylist.txt: 1018) -/(.*/)?ad728x15_ -# /ad728x15. (easylist.txt: 1017) -/(.*/)?ad728x15\. -ad728x15.*. -# /ad728x. (easylist.txt: 1016) -/(.*/)?ad728x\. -ad728x.*. -# /ad728ws. (easylist.txt: 1015) -/(.*/)?ad728ws\. -ad728ws.*. -# /ad728w. (easylist.txt: 1014) -/(.*/)?ad728w\. -ad728w.*. -# /ad728t. (easylist.txt: 1013) -/(.*/)?ad728t\. -ad728t.*. -# /ad728s. (easylist.txt: 1012) -/(.*/)?ad728s\. -ad728s.*. -# /ad728home. (easylist.txt: 1011) -/(.*/)?ad728home\. -ad728home.*. -# /ad728f2. (easylist.txt: 1010) -/(.*/)?ad728f2\. -ad728f2.*. -# /ad728f. (easylist.txt: 1009) -/(.*/)?ad728f\. -ad728f.*. -# /ad728. (easylist.txt: 1008) -/(.*/)?ad728\. -ad728.*. -# /ad728- (easylist.txt: 1007) -/(.*/)?ad728- -ad728-*. -# /ad7. (easylist.txt: 1006) -/(.*/)?ad7\. -ad7.*. -# /ad600x330. (easylist.txt: 1005) -/(.*/)?ad600x330\. -ad600x330.*. -# /ad600x250. (easylist.txt: 1004) -/(.*/)?ad600x250\. -ad600x250.*. -# /ad6. (easylist.txt: 1003) -/(.*/)?ad6\. -ad6.*. -# /ad5. (easylist.txt: 1002) -/(.*/)?ad5\. -ad5.*. -# /ad4i. (easylist.txt: 1001) -/(.*/)?ad4i\. -ad4i.*. -# /ad468x80. (easylist.txt: 1000) -/(.*/)?ad468x80\. -ad468x80.*. -# /ad468x60. (easylist.txt: 999) -/(.*/)?ad468x60\. -ad468x60.*. -# /ad468. (easylist.txt: 998) -/(.*/)?ad468\. -ad468.*. -# /ad41_ (easylist.txt: 997) -/(.*/)?ad41_ -# /ad3i. (easylist.txt: 995) -/(.*/)?ad3i\. -ad3i.*. -# /ad3_ima. (easylist.txt: 994) -/(.*/)?ad3_ima\. -# /ad350. (easylist.txt: 993) -/(.*/)?ad350\. -ad350.*. -# /ad300x250_ (easylist.txt: 992) -/(.*/)?ad300x250_ -# /ad300x250. (easylist.txt: 991) -/(.*/)?ad300x250\. -ad300x250.*. -# /ad300x250- (easylist.txt: 990) -/(.*/)?ad300x250- -ad300x250-*. -# /ad300x145. (easylist.txt: 989) -/(.*/)?ad300x145\. -ad300x145.*. -# /ad300x. (easylist.txt: 988) -/(.*/)?ad300x\. -ad300x.*. -# /ad300ws. (easylist.txt: 987) -/(.*/)?ad300ws\. -ad300ws.*. -# /ad300s. (easylist.txt: 986) -/(.*/)?ad300s\. -ad300s.*. -# /ad300home. (easylist.txt: 985) -/(.*/)?ad300home\. -ad300home.*. -# /ad300f2. (easylist.txt: 984) -/(.*/)?ad300f2\. -ad300f2.*. -# /ad300f. (easylist.txt: 983) -/(.*/)?ad300f\. -ad300f.*. -# /ad300. (easylist.txt: 982) -/(.*/)?ad300\. -ad300.*. -# /ad2you/* (easylist.txt: 980) -/(.*/)?ad2you/.* -# /ad2push. (easylist.txt: 979) -/(.*/)?ad2push\. -ad2push.*. -# /ad2gather. (easylist.txt: 978) -/(.*/)?ad2gather\. -ad2gather.*. -# /ad2gate. (easylist.txt: 977) -/(.*/)?ad2gate\. -ad2gate.*. -# /ad2con. (easylist.txt: 976) -/(.*/)?ad2con\. -ad2con.*. -# /ad2border. (easylist.txt: 975) -/(.*/)?ad2border\. -ad2border.*. -# /ad2_ (easylist.txt: 974) -/(.*/)?ad2_ -# /ad290x60_ (easylist.txt: 973) -/(.*/)?ad290x60_ -# /ad247realmedia/* (easylist.txt: 972) -/(.*/)?ad247realmedia/.* -# /ad24/* (easylist.txt: 971) -/(.*/)?ad24/.* -# /ad234. (easylist.txt: 970) -/(.*/)?ad234\. -ad234.*. -# /ad2010. (easylist.txt: 969) -/(.*/)?ad2010\. -ad2010.*. -# /ad2/res/* (easylist.txt: 968) -/(.*/)?ad2/res/.* -# /ad2/index. (easylist.txt: 967) -/(.*/)?ad2/index\. -# /ad2-728- (easylist.txt: 965) -/(.*/)?ad2-728- -ad2-728-*. -# /ad1x1home. (easylist.txt: 964) -/(.*/)?ad1x1home\. -ad1x1home.*. -# /ad1r. (easylist.txt: 963) -/(.*/)?ad1r\. -ad1r.*. -# /ad1place. (easylist.txt: 962) -/(.*/)?ad1place\. -ad1place.*. -# /ad1_ (easylist.txt: 961) -/(.*/)?ad1_ -# /ad160x600. (easylist.txt: 960) -/(.*/)?ad160x600\. -ad160x600.*. -# /ad160k. (easylist.txt: 959) -/(.*/)?ad160k\. -ad160k.*. -# /ad160. (easylist.txt: 958) -/(.*/)?ad160\. -ad160.*. -# /ad16. (easylist.txt: 957) -/(.*/)?ad16\. -ad16.*. -# /ad15. (easylist.txt: 956) -/(.*/)?ad15\. -ad15.*. -# /ad136/* (easylist.txt: 955) -/(.*/)?ad136/.* -# /ad134m/* (easylist.txt: 954) -/(.*/)?ad134m/.* -# /ad132m/* (easylist.txt: 953) -/(.*/)?ad132m/.* -# /ad132m. (easylist.txt: 952) -/(.*/)?ad132m\. -ad132m.*. -# /ad125x125. (easylist.txt: 951) -/(.*/)?ad125x125\. -ad125x125.*. -# /ad125b. (easylist.txt: 950) -/(.*/)?ad125b\. -ad125b.*. -# /ad125. (easylist.txt: 949) -/(.*/)?ad125\. -ad125.*. -# /ad120x60. (easylist.txt: 948) -/(.*/)?ad120x60\. -ad120x60.*. -# /ad12. (easylist.txt: 947) -/(.*/)?ad12\. -ad12.*. -# /ad1/index. (easylist.txt: 946) -/(.*/)?ad1/index\. -# /ad1-728- (easylist.txt: 944) -/(.*/)?ad1-728- -ad1-728-*. -# /ad02/background_ (easylist.txt: 943) -/(.*/)?ad02/background_ -# /ad01. (easylist.txt: 942) -/(.*/)?ad01\. -ad01.*. -# /ad000/* (easylist.txt: 941) -/(.*/)?ad000/.* -# /ad/view/* (easylist.txt: 939) -/(.*/)?ad/view/.* -# /ad/top_ (easylist.txt: 938) -/(.*/)?ad/top_ -# /ad/top3. (easylist.txt: 937) -/(.*/)?ad/top3\. -# /ad/top2. (easylist.txt: 936) -/(.*/)?ad/top2\. -# /ad/top1. (easylist.txt: 935) -/(.*/)?ad/top1\. -# /ad/top/* (easylist.txt: 934) -/(.*/)?ad/top/.* -# /ad/top. (easylist.txt: 933) -/(.*/)?ad/top\. -# /ad/timing. (easylist.txt: 932) -/(.*/)?ad/timing\. -# /ad/textlinks/* (easylist.txt: 931) -/(.*/)?ad/textlinks/.* -# /ad/takeover/* (easylist.txt: 930) -/(.*/)?ad/takeover/.* -# /ad/swf/* (easylist.txt: 929) -/(.*/)?ad/swf/.* -# /ad/superbanner. (easylist.txt: 928) -/(.*/)?ad/superbanner\. -# /ad/status? (easylist.txt: 927) -/(.*/)?ad/status\? -# /ad/sponsors/* (easylist.txt: 926) -/(.*/)?ad/sponsors/.* -# /ad/sponsored- (easylist.txt: 925) -/(.*/)?ad/sponsored- -# /ad/spacer. (easylist.txt: 924) -/(.*/)?ad/spacer\. -# /ad/small- (easylist.txt: 923) -/(.*/)?ad/small- -# /ad/skyscrapper. (easylist.txt: 922) -/(.*/)?ad/skyscrapper\. -# /ad/skyscraper. (easylist.txt: 921) -/(.*/)?ad/skyscraper\. -# /ad/skin_ (easylist.txt: 920) -/(.*/)?ad/skin_ -# /ad/side_ (easylist.txt: 919) -/(.*/)?ad/side_ -# /ad/show. (easylist.txt: 918) -/(.*/)?ad/show\. -# /ad/serve. (easylist.txt: 917) -/(.*/)?ad/serve\. -# /ad/select? (easylist.txt: 916) -/(.*/)?ad/select\? -# /ad/script/* (easylist.txt: 915) -/(.*/)?ad/script/.* -# /ad/rotate? (easylist.txt: 914) -/(.*/)?ad/rotate\? -# /ad/right2. (easylist.txt: 913) -/(.*/)?ad/right2\. -# /ad/request? (easylist.txt: 912) -/(.*/)?ad/request\? -# /ad/reklamy. (easylist.txt: 911) -/(.*/)?ad/reklamy\. -# /ad/rectangle. (easylist.txt: 910) -/(.*/)?ad/rectangle\. -# /ad/realclick/* (easylist.txt: 909) -/(.*/)?ad/realclick/.* -# /ad/realclick. (easylist.txt: 908) -/(.*/)?ad/realclick\. -# /ad/random_ (easylist.txt: 907) -/(.*/)?ad/random_ -# /ad/quigo/* (easylist.txt: 906) -/(.*/)?ad/quigo/.* -# /ad/preview/* (easylist.txt: 905) -/(.*/)?ad/preview/.* -# /ad/popup. (easylist.txt: 904) -/(.*/)?ad/popup\. -# /ad/pong? (easylist.txt: 903) -/(.*/)?ad/pong\? -# /ad/player| (easylist.txt: 902) -/(.*/)?ad/player$ -# /ad/omakasa. (easylist.txt: 901) -/(.*/)?ad/omakasa\. -# /ad/network/* (easylist.txt: 900) -/(.*/)?ad/network/.* -# /ad/mpu/* (easylist.txt: 899) -/(.*/)?ad/mpu/.* -# /ad/middle. (easylist.txt: 898) -/(.*/)?ad/middle\. -# /ad/logo/* (easylist.txt: 897) -/(.*/)?ad/logo/.* -# /ad/login- (easylist.txt: 896) -/(.*/)?ad/login- -# /ad/log/* (easylist.txt: 895) -/(.*/)?ad/log/.* -# /ad/loading. (easylist.txt: 894) -/(.*/)?ad/loading\. -# /ad/load_ (easylist.txt: 893) -/(.*/)?ad/load_ -# /ad/load. (easylist.txt: 892) -/(.*/)?ad/load\. -# /ad/live- (easylist.txt: 891) -/(.*/)?ad/live- -# /ad/listing- (easylist.txt: 890) -/(.*/)?ad/listing- -# /ad/leaderboard. (easylist.txt: 889) -/(.*/)?ad/leaderboard\. -# /ad/jsonp/* (easylist.txt: 888) -/(.*/)?ad/jsonp/.* -# /ad/inventory/* (easylist.txt: 887) -/(.*/)?ad/inventory/.* -# /ad/integral- (easylist.txt: 886) -/(.*/)?ad/integral- -# /ad/inline? (easylist.txt: 885) -/(.*/)?ad/inline\? -# /ad/index_ (easylist.txt: 884) -/(.*/)?ad/index_ -# /ad/index/* (easylist.txt: 883) -/(.*/)?ad/index/.* -# /ad/index. (easylist.txt: 882) -/(.*/)?ad/index\. -# /ad/img/* (easylist.txt: 881) -/(.*/)?ad/img/.* -# /ad/image/* (easylist.txt: 880) -/(.*/)?ad/image/.* -# /ad/iframe/* (easylist.txt: 879) -/(.*/)?ad/iframe/.* -# /ad/iframe. (easylist.txt: 878) -/(.*/)?ad/iframe\. -# /ad/html/* (easylist.txt: 877) -/(.*/)?ad/html/.* -# /ad/google_ (easylist.txt: 876) -/(.*/)?ad/google_ -# /ad/google/* (easylist.txt: 875) -/(.*/)?ad/google/.* -# /ad/getbanandfile? (easylist.txt: 874) -/(.*/)?ad/getbanandfile\? -# /ad/getban? (easylist.txt: 873) -/(.*/)?ad/getban\? -# /ad/generate? (easylist.txt: 872) -/(.*/)?ad/generate\? -# /ad/framed? (easylist.txt: 871) -/(.*/)?ad/framed\? -# /ad/frame1. (easylist.txt: 870) -/(.*/)?ad/frame1\. -# /AD/Footer_ (easylist.txt: 869) -/(.*/)?AD/Footer_ -# /ad/files/* (easylist.txt: 868) -/(.*/)?ad/files/.* -# /ad/extra_ (easylist.txt: 867) -/(.*/)?ad/extra_ -# /ad/extra/* (easylist.txt: 866) -/(.*/)?ad/extra/.* -# /ad/empty. (easylist.txt: 865) -/(.*/)?ad/empty\. -# /ad/directcall/* (easylist.txt: 864) -/(.*/)?ad/directcall/.* -# /ad/css/* (easylist.txt: 863) -/(.*/)?ad/css/.* -# /ad/cpmstar/* (easylist.txt: 862) -/(.*/)?ad/cpmstar/.* -# /ad/content/* (easylist.txt: 861) -/(.*/)?ad/content/.* -# /ad/commons/* (easylist.txt: 860) -/(.*/)?ad/commons/.* -# /ad/common_ (easylist.txt: 859) -/(.*/)?ad/common_ -# /ad/common/* (easylist.txt: 858) -/(.*/)?ad/common/.* -# /ad/card- (easylist.txt: 857) -/(.*/)?ad/card- -# /ad/bottom. (easylist.txt: 856) -/(.*/)?ad/bottom\. -# /ad/blog_ (easylist.txt: 855) -/(.*/)?ad/blog_ -# /ad/blank. (easylist.txt: 854) -/(.*/)?ad/blank\. -# /ad/bin/* (easylist.txt: 853) -/(.*/)?ad/bin/.* -# /ad/behavpixel. (easylist.txt: 852) -/(.*/)?ad/behavpixel\. -# /ad/banners/* (easylist.txt: 851) -/(.*/)?ad/banners/.* -# /ad/bannerimg/* (easylist.txt: 850) -/(.*/)?ad/bannerimg/.* -# /ad/bannerdetails/* (easylist.txt: 849) -/(.*/)?ad/bannerdetails/.* -# /ad/banner_ (easylist.txt: 848) -/(.*/)?ad/banner_ -# /ad/banner? (easylist.txt: 847) -/(.*/)?ad/banner\? -# /ad/banner/* (easylist.txt: 846) -/(.*/)?ad/banner/.* -# /ad/banner. (easylist.txt: 845) -/(.*/)?ad/banner\. -# /ad/audsci. (easylist.txt: 844) -/(.*/)?ad/audsci\. -# /ad/article_ (easylist.txt: 843) -/(.*/)?ad/article_ -# /ad/afc_ (easylist.txt: 842) -/(.*/)?ad/afc_ -# /ad/a.aspx? (easylist.txt: 841) -/(.*/)?ad/a\.aspx\? -# /ad/?site= (easylist.txt: 840) -/(.*/)?ad/\?site= -# /ad/?section= (easylist.txt: 839) -/(.*/)?ad/\?section= -# /ad/?host= (easylist.txt: 838) -/(.*/)?ad/\?host= -# /ad/960x60. (easylist.txt: 837) -/(.*/)?ad/960x60\. -# /ad/940- (easylist.txt: 836) -/(.*/)?ad/940- -# /ad/938- (easylist.txt: 835) -/(.*/)?ad/938- -# /ad/728- (easylist.txt: 834) -/(.*/)?ad/728- -# /ad/600- (easylist.txt: 833) -/(.*/)?ad/600- -# /ad/130- (easylist.txt: 832) -/(.*/)?ad/130- -# /ad.ytn. (easylist.txt: 831) -/(.*/)?ad\.ytn\. -ad.ytn.*. -# /ad.view? (easylist.txt: 830) -/(.*/)?ad\.view\? -# /ad.valary? (easylist.txt: 829) -/(.*/)?ad\.valary\? -# /ad.serve. (easylist.txt: 828) -/(.*/)?ad\.serve\. -ad.serve.*. -# /ad.sense/* (easylist.txt: 827) -/(.*/)?ad\.sense/.* -ad.sense/.* -# /ad.redirect. (easylist.txt: 826) -/(.*/)?ad\.redirect\. -ad.redirect.*. -# /ad.popup? (easylist.txt: 825) -/(.*/)?ad\.popup\? -# /ad.php| (easylist.txt: 824) -/(.*/)?ad\.php$ -ad.php -# /ad.php? (easylist.txt: 823) -/(.*/)?ad\.php\? -# /ad.php3? (easylist.txt: 822) -/(.*/)?ad\.php3\? -# /ad.min. (easylist.txt: 821) -/(.*/)?ad\.min\. -ad.min.*. -# /ad.mason? (easylist.txt: 820) -/(.*/)?ad\.mason\? -# /ad.jsp? (easylist.txt: 819) -/(.*/)?ad\.jsp\? -# /ad.info. (easylist.txt: 818) -/(.*/)?ad\.info\. -ad.info.*. -# /ad.html? (easylist.txt: 817) -/(.*/)?ad\.html\? -# /ad.gif| (easylist.txt: 816) -/(.*/)?ad\.gif$ -ad.gif -# /ad.epl? (easylist.txt: 815) -/(.*/)?ad\.epl\? -# /ad.css? (easylist.txt: 814) -/(.*/)?ad\.css\? -# /ad.code? (easylist.txt: 813) -/(.*/)?ad\.code\? -# /ad.cgi? (easylist.txt: 812) -/(.*/)?ad\.cgi\? -# /ad.aspx? (easylist.txt: 811) -/(.*/)?ad\.aspx\? -# /ad.asp? (easylist.txt: 810) -/(.*/)?ad\.asp\? -# /ad.ashx? (easylist.txt: 809) -/(.*/)?ad\.ashx\? -# /ad.ams. (easylist.txt: 808) -/(.*/)?ad\.ams\. -ad.ams.*. -# /ad-view- (easylist.txt: 807) -/(.*/)?ad-view- -ad-view-*. -# /ad-verticalbar. (easylist.txt: 806) -/(.*/)?ad-verticalbar\. -ad-verticalbar.*. -# /ad-vertical- (easylist.txt: 805) -/(.*/)?ad-vertical- -ad-vertical-*. -# /ad-vert. (easylist.txt: 804) -/(.*/)?ad-vert\. -ad-vert.*. -# /ad-utilities. (easylist.txt: 803) -/(.*/)?ad-utilities\. -ad-utilities.*. -# /ad-updated- (easylist.txt: 802) -/(.*/)?ad-updated- -ad-updated-*. -# /ad-unit- (easylist.txt: 801) -/(.*/)?ad-unit- -ad-unit-*. -# /ad-topbanner- (easylist.txt: 800) -/(.*/)?ad-topbanner- -ad-topbanner-*. -# /ad-top/* (easylist.txt: 799) -/(.*/)?ad-top/.* -# /ad-top. (easylist.txt: 798) -/(.*/)?ad-top\. -ad-top.*. -# /ad-top- (easylist.txt: 797) -/(.*/)?ad-top- -ad-top-*. -# /ad-title. (easylist.txt: 796) -/(.*/)?ad-title\. -ad-title.*. -# /ad-text. (easylist.txt: 795) -/(.*/)?ad-text\. -ad-text.*. -# /ad-template/* (easylist.txt: 794) -/(.*/)?ad-template/.* -# /ad-template. (easylist.txt: 793) -/(.*/)?ad-template\. -ad-template.*. -# /ad-tandem. (easylist.txt: 792) -/(.*/)?ad-tandem\. -ad-tandem.*. -# /ad-tag2. (easylist.txt: 791) -/(.*/)?ad-tag2\. -ad-tag2.*. -# /ad-styles. (easylist.txt: 790) -/(.*/)?ad-styles\. -ad-styles.*. -# /ad-studio/* (easylist.txt: 789) -/(.*/)?ad-studio/.* -# /ad-strip. (easylist.txt: 788) -/(.*/)?ad-strip\. -ad-strip.*. -# /ad-sprite. (easylist.txt: 787) -/(.*/)?ad-sprite\. -ad-sprite.*. -# /ad-specs. (easylist.txt: 786) -/(.*/)?ad-specs\. -ad-specs.*. -# /ad-source/* (easylist.txt: 785) -/(.*/)?ad-source/.* -# /ad-skyscraper. (easylist.txt: 784) -/(.*/)?ad-skyscraper\. -ad-skyscraper.*. -# /ad-sidebar- (easylist.txt: 783) -/(.*/)?ad-sidebar- -ad-sidebar-*. -# /ad-side/* (easylist.txt: 782) -/(.*/)?ad-side/.* -# /ad-server/* (easylist.txt: 781) -/(.*/)?ad-server/.* -# /ad-server. (easylist.txt: 780) -/(.*/)?ad-server\. -ad-server.*. -# /ad-serve? (easylist.txt: 779) -/(.*/)?ad-serve\? -# /ad-rotator- (easylist.txt: 778) -/(.*/)?ad-rotator- -ad-rotator-*. -# /ad-ros- (easylist.txt: 777) -/(.*/)?ad-ros- -ad-ros-*. -# /ad-right2. (easylist.txt: 776) -/(.*/)?ad-right2\. -ad-right2.*. -# /ad-refresh. (easylist.txt: 775) -/(.*/)?ad-refresh\. -ad-refresh.*. -# /ad-refresh- (easylist.txt: 774) -/(.*/)?ad-refresh- -ad-refresh-*. -# /ad-record. (easylist.txt: 773) -/(.*/)?ad-record\. -ad-record.*. -# /ad-pub. (easylist.txt: 772) -/(.*/)?ad-pub\. -ad-pub.*. -# /ad-position- (easylist.txt: 771) -/(.*/)?ad-position- -ad-position-*. -# /ad-point/* (easylist.txt: 770) -/(.*/)?ad-point/.* -# /ad-plate/* (easylist.txt: 769) -/(.*/)?ad-plate/.* -# /ad-page/* (easylist.txt: 768) -/(.*/)?ad-page/.* -# /ad-openx. (easylist.txt: 767) -/(.*/)?ad-openx\. -ad-openx.*. -# /ad-offer1. (easylist.txt: 766) -/(.*/)?ad-offer1\. -ad-offer1.*. -# /ad-nytimes. (easylist.txt: 765) -/(.*/)?ad-nytimes\. -ad-nytimes.*. -# /ad-modules/* (easylist.txt: 764) -/(.*/)?ad-modules/.* -# /ad-minister/* (easylist.txt: 763) -/(.*/)?ad-minister/.* -# /ad-minister. (easylist.txt: 762) -/(.*/)?ad-minister\. -ad-minister.*. -# /ad-minister- (easylist.txt: 761) -/(.*/)?ad-minister- -ad-minister-*. -# /ad-methods. (easylist.txt: 760) -/(.*/)?ad-methods\. -ad-methods.*. -# /ad-maven- (easylist.txt: 759) -/(.*/)?ad-maven- -ad-maven-*. -# /ad-managment/* (easylist.txt: 758) -/(.*/)?ad-managment/.* -# /ad-manager/* (easylist.txt: 757) -/(.*/)?ad-manager/.* -# /ad-logger/* (easylist.txt: 756) -/(.*/)?ad-logger/.* -# /ad-loading. (easylist.txt: 754) -/(.*/)?ad-loading\. -ad-loading.*. -# /ad-loader. (easylist.txt: 753) -/(.*/)?ad-loader\. -ad-loader.*. -# /ad-loader- (easylist.txt: 752) -/(.*/)?ad-loader- -ad-loader-*. -# /ad-link/* (easylist.txt: 751) -/(.*/)?ad-link/.* -# /ad-lil. (easylist.txt: 750) -/(.*/)?ad-lil\. -ad-lil.*. -# /ad-letter. (easylist.txt: 749) -/(.*/)?ad-letter\. -ad-letter.*. -# /ad-left. (easylist.txt: 748) -/(.*/)?ad-left\. -ad-left.*. -# /ad-leaderboard. (easylist.txt: 747) -/(.*/)?ad-leaderboard\. -ad-leaderboard.*. -# /ad-layout/*$~script,~stylesheet (easylist.txt: 746) -/(.*/)?ad-layout/.* -# /ad-layering- (easylist.txt: 745) -/(.*/)?ad-layering- -ad-layering-*. -# /ad-label. (easylist.txt: 744) -/(.*/)?ad-label\. -ad-label.*. -# /ad-label- (easylist.txt: 743) -/(.*/)?ad-label- -ad-label-*. -# /ad-issue. (easylist.txt: 742) -/(.*/)?ad-issue\. -ad-issue.*. -# /ad-int- (easylist.txt: 741) -/(.*/)?ad-int- -ad-int-*. -# /ad-injection/* (easylist.txt: 740) -/(.*/)?ad-injection/.* -# /ad-inject/* (easylist.txt: 739) -/(.*/)?ad-inject/.* -# /ad-indicator- (easylist.txt: 738) -/(.*/)?ad-indicator- -ad-indicator-*. -# /ad-ina. (easylist.txt: 737) -/(.*/)?ad-ina\. -ad-ina.*. -# /ad-images/* (easylist.txt: 736) -/(.*/)?ad-images/.* -# /ad-image. (easylist.txt: 735) -/(.*/)?ad-image\. -ad-image.*. -# /ad-iframe? (easylist.txt: 734) -/(.*/)?ad-iframe\? -# /ad-iframe. (easylist.txt: 733) -/(.*/)?ad-iframe\. -ad-iframe.*. -# /ad-iframe- (easylist.txt: 732) -/(.*/)?ad-iframe- -ad-iframe-*. -# /ad-ifr. (easylist.txt: 731) -/(.*/)?ad-ifr\. -ad-ifr.*. -# /ad-identifier. (easylist.txt: 730) -/(.*/)?ad-identifier\. -ad-identifier.*. -# /ad-hug. (easylist.txt: 729) -/(.*/)?ad-hug\. -ad-hug.*. -# /ad-home- (easylist.txt: 728) -/(.*/)?ad-home- -ad-home-*. -# /ad-header. (easylist.txt: 727) -/(.*/)?ad-header\. -ad-header.*. -# /ad-hcm. (easylist.txt: 726) -/(.*/)?ad-hcm\. -ad-hcm.*. -# /ad-half_ (easylist.txt: 725) -/(.*/)?ad-half_ -# /ad-gallery.$~stylesheet (easylist.txt: 724) -/(.*/)?ad-gallery\. -ad-gallery.*. -# /ad-frame/* (easylist.txt: 723) -/(.*/)?ad-frame/.* -# /ad-frame. (easylist.txt: 722) -/(.*/)?ad-frame\. -ad-frame.*. -# /ad-format. (easylist.txt: 721) -/(.*/)?ad-format\. -ad-format.*. -# /ad-flashgame. (easylist.txt: 720) -/(.*/)?ad-flashgame\. -ad-flashgame.*. -# /ad-fix- (easylist.txt: 719) -/(.*/)?ad-fix- -ad-fix-*. -# /ad-feedback. (easylist.txt: 718) -/(.*/)?ad-feedback\. -ad-feedback.*. -# /ad-feature- (easylist.txt: 717) -/(.*/)?ad-feature- -ad-feature-*. -# /ad-exchange. (easylist.txt: 716) -/(.*/)?ad-exchange\. -ad-exchange.*. -# /ad-engine. (easylist.txt: 715) -/(.*/)?ad-engine\. -ad-engine.*. -# /ad-emea. (easylist.txt: 714) -/(.*/)?ad-emea\. -ad-emea.*. -# /ad-creatives/* (easylist.txt: 713) -/(.*/)?ad-creatives/.* -# /ad-creatives- (easylist.txt: 712) -/(.*/)?ad-creatives- -ad-creatives-*. -# /ad-choices. (easylist.txt: 711) -/(.*/)?ad-choices\. -ad-choices.*. -# /ad-choices- (easylist.txt: 710) -/(.*/)?ad-choices- -ad-choices-*. -# /ad-channel- (easylist.txt: 709) -/(.*/)?ad-channel- -ad-channel-*. -# /ad-cdn. (easylist.txt: 708) -/(.*/)?ad-cdn\. -ad-cdn.*. -# /ad-callback. (easylist.txt: 707) -/(.*/)?ad-callback\. -ad-callback.*. -# /ad-button1. (easylist.txt: 706) -/(.*/)?ad-button1\. -ad-button1.*. -# /ad-builder. (easylist.txt: 705) -/(.*/)?ad-builder\. -ad-builder.*. -# /ad-boxes- (easylist.txt: 704) -/(.*/)?ad-boxes- -ad-boxes-*. -# /ad-box- (easylist.txt: 703) -/(.*/)?ad-box- -ad-box-*. -# /ad-bottom. (easylist.txt: 702) -/(.*/)?ad-bottom\. -ad-bottom.*. -# /ad-bin/* (easylist.txt: 701) -/(.*/)?ad-bin/.* -# /ad-bckg. (easylist.txt: 700) -/(.*/)?ad-bckg\. -ad-bckg.*. -# /ad-banner. (easylist.txt: 699) -/(.*/)?ad-banner\. -ad-banner.*. -# /ad-banner- (easylist.txt: 698) -/(.*/)?ad-banner- -ad-banner-*. -# /ad-background. (easylist.txt: 697) -/(.*/)?ad-background\. -ad-background.*. -# /ad-audit. (easylist.txt: 696) -/(.*/)?ad-audit\. -ad-audit.*. -# /ad-amz. (easylist.txt: 695) -/(.*/)?ad-amz\. -ad-amz.*. -# /ad-600- (easylist.txt: 694) -/(.*/)?ad-600- -ad-600-*. -# /ad-468- (easylist.txt: 693) -/(.*/)?ad-468- -ad-468-*. -# /ad-410x300. (easylist.txt: 692) -/(.*/)?ad-410x300\. -ad-410x300.*. -# /ad-350x350- (easylist.txt: 691) -/(.*/)?ad-350x350- -ad-350x350-*. -# /ad-300x254. (easylist.txt: 690) -/(.*/)?ad-300x254\. -ad-300x254.*. -# /ad-300x250. (easylist.txt: 689) -/(.*/)?ad-300x250\. -ad-300x250.*. -# /ad-300topleft. (easylist.txt: 688) -/(.*/)?ad-300topleft\. -ad-300topleft.*. -# /ad-125. (easylist.txt: 687) -/(.*/)?ad-125\. -ad-125.*. -# /ad%20images/* (easylist.txt: 686) -/(.*/)?ad%20images/.* -# /ad%20banners/* (easylist.txt: 685) -/(.*/)?ad%20banners/.* -# /active-ad- (easylist.txt: 684) -/(.*/)?active-ad- -active-ad-*. -# /acc_random= (easylist.txt: 683) -/(.*/)?acc_random= -# /AbvProductAds/* (easylist.txt: 682) -/(.*/)?AbvProductAds/.* -# /abvAds_ (easylist.txt: 681) -/(.*/)?abvAds_ -# /absolutebm.aspx? (easylist.txt: 680) -/(.*/)?absolutebm\.aspx\? -# /about-these-ads. (easylist.txt: 679) -/(.*/)?about-these-ads\. -about-these-ads.*. -# /abnl/?narodads^ (easylist.txt: 678) -/(.*/)?abnl/\?narodads[^\w%.-] -# /abnl/?begun^ (easylist.txt: 677) -/(.*/)?abnl/\?begun[^\w%.-] -# /abmw/* (easylist.txt: 676) -/(.*/)?abmw/.* -# /abmw.asp (easylist.txt: 675) -/(.*/)?abmw\.asp -abmw.asp*. -# /abm.aspx (easylist.txt: 674) -/(.*/)?abm\.aspx -abm.aspx*. -# /abm.asp? (easylist.txt: 673) -/(.*/)?abm\.asp\? -# /ABAdsv1. (easylist.txt: 672) -/(.*/)?ABAdsv1\. -ABAdsv1.*. -# /aamsz= (easylist.txt: 671) -/(.*/)?aamsz= -# /a3/?sub=$third-party (easylist.txt: 670) -/(.*/)?a3/\?sub= -# /a2/ads/* (easylist.txt: 669) -/(.*/)?a2/ads/.* -# /a2/?sub=$third-party (easylist.txt: 668) -/(.*/)?a2/\?sub= -# /a1/*?sub=$third-party (easylist.txt: 667) -/(.*/)?a1/.*\?sub= -# /a/display.php? (easylist.txt: 666) -/(.*/)?a/display\.php\? -# /a/ads/* (easylist.txt: 665) -/(.*/)?a/ads/.* -# /_svc/ad/* (easylist.txt: 664) -/(.*/)?_svc/ad/.* -# /_scripts/_oas/* (easylist.txt: 663) -/(.*/)?_scripts/_oas/.* -# /_js2/oas. (easylist.txt: 662) -/(.*/)?_js2/oas\. -# /_img/ad_ (easylist.txt: 661) -/(.*/)?_img/ad_ -# /_global/ads/* (easylist.txt: 660) -/(.*/)?_global/ads/.* -# /_affiliatebanners/* (easylist.txt: 659) -/(.*/)?_affiliatebanners/.* -# /_ads/* (easylist.txt: 658) -/(.*/)?_ads/.* -# /_30/ads/* (easylist.txt: 657) -/(.*/)?_30/ads/.* -# /_/ads/* (easylist.txt: 656) -/(.*/)?_/ads/.* -# /?view=ad (easylist.txt: 655) -/(.*/)?\?view=ad -# /?advideo/* (easylist.txt: 654) -/(.*/)?\?advideo/.* -# /?adv_partner (easylist.txt: 653) -/(.*/)?\?adv_partner -# /?addyn|* (easylist.txt: 652) -/(.*/)?\?addyn\|.* -# /728x90banner. (easylist.txt: 651) -/(.*/)?728x90banner\. -728x90banner.*. -# /728x80topad. (easylist.txt: 650) -/(.*/)?728x80topad\. -728x80topad.*. -# /728_ad_ (easylist.txt: 649) -/(.*/)?728_ad_ -# /468xads. (easylist.txt: 648) -/(.*/)?468xads\. -468xads.*. -# /468ad. (easylist.txt: 647) -/(.*/)?468ad\. -468ad.*. -# /468-banner. (easylist.txt: 646) -/(.*/)?468-banner\. -468-banner.*. -# /3pt_ads. (easylist.txt: 645) -/(.*/)?3pt_ads\. -# /336x280ads. (easylist.txt: 644) -/(.*/)?336x280ads\. -336x280ads.*. -# /300x500_ad (easylist.txt: 643) -/(.*/)?300x500_ad -# /300x250advert. (easylist.txt: 642) -/(.*/)?300x250advert\. -300x250advert.*. -# /300x250ads. (easylist.txt: 641) -/(.*/)?300x250ads\. -300x250ads.*. -# /300x250adbg. (easylist.txt: 640) -/(.*/)?300x250adbg\. -300x250adbg.*. -# /300x250ad. (easylist.txt: 639) -/(.*/)?300x250ad\. -300x250ad.*. -# /300by250ad. (easylist.txt: 638) -/(.*/)?300by250ad\. -300by250ad.*. -# /300ad. (easylist.txt: 637) -/(.*/)?300ad\. -300ad.*. -# /300_ad_ (easylist.txt: 636) -/(.*/)?300_ad_ -# /300250_ad- (easylist.txt: 635) -/(.*/)?300250_ad- -# /300-ad- (easylist.txt: 634) -/(.*/)?300-ad- -300-ad-*. -# /250x250_advert_ (easylist.txt: 633) -/(.*/)?250x250_advert_ -# /24adscript. (easylist.txt: 632) -/(.*/)?24adscript\. -24adscript.*. -# /24-7ads. (easylist.txt: 631) -/(.*/)?24-7ads\. -24-7ads.*. -# /2015/ads/* (easylist.txt: 630) -/(.*/)?2015/ads/.* -# /2014/ads/* (easylist.txt: 629) -/(.*/)?2014/ads/.* -# /2013/ads/* (easylist.txt: 628) -/(.*/)?2013/ads/.* -# /2011/ads/* (easylist.txt: 627) -/(.*/)?2011/ads/.* -# /2010main/ad/* (easylist.txt: 626) -/(.*/)?2010main/ad/.* -# /2010/ads/* (easylist.txt: 625) -/(.*/)?2010/ads/.* -# /1afr.php? (easylist.txt: 624) -/(.*/)?1afr\.php\? -# /1912/ads/* (easylist.txt: 623) -/(.*/)?1912/ads/.* -# /17/ads/* (easylist.txt: 622) -/(.*/)?17/ads/.* -# /160_ad_ (easylist.txt: 621) -/(.*/)?160_ad_ -# /126_ad. (easylist.txt: 620) -/(.*/)?126_ad\. -# /125x125ad. (easylist.txt: 619) -/(.*/)?125x125ad\. -125x125ad.*. -# /125x125_banner. (easylist.txt: 618) -/(.*/)?125x125_banner\. -# /125x125_ADS/* (easylist.txt: 617) -/(.*/)?125x125_ADS/.* -# /120ads/* (easylist.txt: 616) -/(.*/)?120ads/.* -# /120ad. (easylist.txt: 615) -/(.*/)?120ad\. -120ad.*. -# /1/ads/* (easylist.txt: 614) -/(.*/)?1/ads/.* -# /04/ads- (easylist.txt: 613) -/(.*/)?04/ads- -# /0/ads/* (easylist.txt: 612) -/(.*/)?0/ads/.* -# /!advert_ (easylist.txt: 611) -/(.*/)?!advert_ -# .zw/ads/ (easylist.txt: 610) -/.*\.zw/ads/ -.*.zw/ads/ -# .zm/ads/ (easylist.txt: 609) -/.*\.zm/ads/ -.*.zm/ads/ -# .za/ads/ (easylist.txt: 608) -/.*\.za/ads/ -.*.za/ads/ -# .za/ads. (easylist.txt: 607) -/.*\.za/ads\. -.*.za/ads\. -# .xxx/ads/ (easylist.txt: 606) -/.*\.xxx/ads/ -.*.xxx/ads/ -# .ws/ads/ (easylist.txt: 605) -/.*\.ws/ads/ -.*.ws/ads/ -# .widgets.ad? (easylist.txt: 604) -/.*\.widgets\.ad\? -# .vert.ad. (easylist.txt: 603) -/.*\.vert\.ad\. -.*.vert.ad.*. -# .utils.ads. (easylist.txt: 602) -/.*\.utils\.ads\. -.*.utils.ads.*. -# .us/ads/ (easylist.txt: 601) -/.*\.us/ads/ -.*.us/ads/ -# .uk/adv/ (easylist.txt: 600) -/.*\.uk/adv/ -.*.uk/adv/ -# .uk/ads/ (easylist.txt: 599) -/.*\.uk/ads/ -.*.uk/ads/ -# .tz/ads/ (easylist.txt: 598) -/.*\.tz/ads/ -.*.tz/ads/ -# .twoads. (easylist.txt: 597) -/.*\.twoads\. -.*.twoads.*. -# .tv/ads/ (easylist.txt: 596) -/.*\.tv/ads/ -.*.tv/ads/ -# .tv/ads. (easylist.txt: 595) -/.*\.tv/ads\. -.*.tv/ads\. -# .tv/adl. (easylist.txt: 594) -/.*\.tv/adl\. -.*.tv/adl\. -# .topad. (easylist.txt: 593) -/.*\.topad\. -.*.topad.*. -# .to/ads/ (easylist.txt: 592) -/.*\.to/ads/ -.*.to/ads/ -# .th/ads/ (easylist.txt: 591) -/.*\.th/ads/ -.*.th/ads/ -# .textads. (easylist.txt: 590) -/.*\.textads\. -.*.textads.*. -# .text-link-ads. (easylist.txt: 589) -/.*\.text-link-ads\. -.*.text-link-ads.*. -# .swf?popupiniframe= (easylist.txt: 588) -/.*\.swf\?popupiniframe= -# .swf?link=http (easylist.txt: 587) -/.*\.swf\?link=http -# .swf?link1=http (easylist.txt: 586) -/.*\.swf\?link1=http -# .swf?iurl=http (easylist.txt: 585) -/.*\.swf\?iurl=http -# .swf?clickthru= (easylist.txt: 584) -/.*\.swf\?clickthru= -# .swf?clicktag= (easylist.txt: 583) -/.*\.swf\?clicktag= -# .swf?click= (easylist.txt: 582) -/.*\.swf\?click= -# .swf?ad= (easylist.txt: 581) -/.*\.swf\?ad= -# .swf?2&clicktag= (easylist.txt: 580) -/.*\.swf\?2&clicktag= -# .swf?1&clicktag= (easylist.txt: 579) -/.*\.swf\?1&clicktag= -# .streamads. (easylist.txt: 578) -/.*\.streamads\. -.*.streamads.*. -# .sponsorads. (easylist.txt: 577) -/.*\.sponsorads\. -.*.sponsorads.*. -# .spider.ad/ (easylist.txt: 576) -/.*\.spider\.ad/ -.*.spider.ad -# .sk/ads/ (easylist.txt: 575) -/.*\.sk/ads/ -.*.sk/ads/ -# .show_ad_ (easylist.txt: 574) -/.*\.show_ad_ -# .shortcuts.search. (easylist.txt: 573) -/.*\.shortcuts\.search\. -.*.shortcuts.search.*. -# .se/ads/ (easylist.txt: 572) -/.*\.se/ads/ -.*.se/ads/ -# .se/?placement=$script,subdocument,third-party (easylist.txt: 571) -/.*\.se/\?placement= -.*.se/\?placement= -# .rolloverad. (easylist.txt: 570) -/.*\.rolloverad\. -.*.rolloverad.*. -# .refit.ads. (easylist.txt: 569) -/.*\.refit\.ads\. -.*.refit.ads.*. -# .popupvideoad. (easylist.txt: 568) -/.*\.popupvideoad\. -.*.popupvideoad.*. -# .popup_im. (easylist.txt: 567) -/.*\.popup_im\. -# .popunder.js (easylist.txt: 566) -/.*\.popunder\.js -.*.popunder.js*. -# .pl/ads/ (easylist.txt: 565) -/.*\.pl/ads/ -.*.pl/ads/ -# .pk/ads/ (easylist.txt: 564) -/.*\.pk/ads/ -.*.pk/ads/ -# .php?zoneid= (easylist.txt: 563) -/.*\.php\?zoneid= -# .php?zone_id= (easylist.txt: 562) -/.*\.php\?zone_id= -# .php?nats= (easylist.txt: 561) -/.*\.php\?nats= -# .php?clicktag= (easylist.txt: 560) -/.*\.php\?clicktag= -# .php?affid= (easylist.txt: 559) -/.*\.php\?affid= -# .php?adv_ (easylist.txt: 558) -/.*\.php\?adv_ -# .php?adv= (easylist.txt: 557) -/.*\.php\?adv= -# .php?adsid= (easylist.txt: 556) -/.*\.php\?adsid= -# .php?ad_ (easylist.txt: 555) -/.*\.php\?ad_ -# .php?ad= (easylist.txt: 554) -/.*\.php\?ad= -# .php/ads/ (easylist.txt: 553) -/.*\.php/ads/ -.*.php/ads/ -# .php/ad/ (easylist.txt: 552) -/.*\.php/ad/ -.*.php/ad/ -# .ph/ads/ (easylist.txt: 551) -/.*\.ph/ads/ -.*.ph/ads/ -# .org/pops.js (easylist.txt: 550) -/.*\.org/pops\.js -.*.org/pops\.js -# .org/gads/ (easylist.txt: 549) -/.*\.org/gads/ -.*.org/gads/ -# .org/exit.js (easylist.txt: 548) -/.*\.org/exit\.js -.*.org/exit\.js -# .org/adv/ (easylist.txt: 547) -/.*\.org/adv/ -.*.org/adv/ -# .org/ads_ (easylist.txt: 546) -/.*\.org/ads_ -.*.org/ads_ -# .org/ads/ (easylist.txt: 545) -/.*\.org/ads/ -.*.org/ads/ -# .org/ads- (easylist.txt: 544) -/.*\.org/ads- -.*.org/ads- -# .org/adgallery1 (easylist.txt: 543) -/.*\.org/adgallery1 -.*.org/adgallery1 -# .org/ad_ (easylist.txt: 542) -/.*\.org/ad_ -.*.org/ad_ -# .org/ad/ (easylist.txt: 541) -/.*\.org/ad/ -.*.org/ad/ -# .org/ad. (easylist.txt: 540) -/.*\.org/ad\. -.*.org/ad\. -# .org/ad- (easylist.txt: 539) -/.*\.org/ad- -.*.org/ad- -# .openxtag.min.js (easylist.txt: 538) -/.*\.openxtag\.min\.js -.*.openxtag.min.js*. -# .openxtag.js (easylist.txt: 537) -/.*\.openxtag\.js -.*.openxtag.js*. -# .openx. (easylist.txt: 536) -/.*\.openx\. -.*.openx.*. -# .openad. (easylist.txt: 535) -/.*\.openad\. -.*.openad.*. -# .oasfile. (easylist.txt: 534) -/.*\.oasfile\. -.*.oasfile.*. -# .nz/ads/ (easylist.txt: 533) -/.*\.nz/ads/ -.*.nz/ads/ -# .nu/ads/ (easylist.txt: 532) -/.*\.nu/ads/ -.*.nu/ads/ -# .no/ads/ (easylist.txt: 531) -/.*\.no/ads/ -.*.no/ads/ -# .nl/ads/ (easylist.txt: 530) -/.*\.nl/ads/ -.*.nl/ads/ -# .nl/ad2/ (easylist.txt: 529) -/.*\.nl/ad2/ -.*.nl/ad2/ -# .net/vghd_ (easylist.txt: 528) -/.*\.net/vghd_ -.*.net/vghd_ -# .net/pops.js (easylist.txt: 527) -/.*\.net/pops\.js -.*.net/pops\.js -# .net/pfadj/ (easylist.txt: 526) -/.*\.net/pfadj/ -.*.net/pfadj/ -# .net/noidadx/ (easylist.txt: 525) -/.*\.net/noidadx/ -.*.net/noidadx/ -# .net/gads/ (easylist.txt: 524) -/.*\.net/gads/ -.*.net/gads/ -# .net/flashads (easylist.txt: 523) -/.*\.net/flashads -.*.net/flashads -# .net/bnr/ (easylist.txt: 522) -/.*\.net/bnr/ -.*.net/bnr/ -# .net/affiliate/ (easylist.txt: 521) -/.*\.net/affiliate/ -.*.net/affiliate/ -# .net/adv/ (easylist.txt: 520) -/.*\.net/adv/ -.*.net/adv/ -# .net/adt? (easylist.txt: 519) -/.*\.net/adt\? -.*.net/adt\? -# .net/ads_ (easylist.txt: 518) -/.*\.net/ads_ -.*.net/ads_ -# .net/ads? (easylist.txt: 517) -/.*\.net/ads\? -.*.net/ads\? -# .net/ads/ (easylist.txt: 516) -/.*\.net/ads/ -.*.net/ads/ -# .net/ads. (easylist.txt: 515) -/.*\.net/ads\. -.*.net/ads\. -# .net/ads- (easylist.txt: 514) -/.*\.net/ads- -.*.net/ads- -# .net/adj; (easylist.txt: 513) -/.*\.net/adj; -.*.net/adj; -# .net/adgallery (easylist.txt: 512) -/.*\.net/adgallery -.*.net/adgallery -# .net/ad_ (easylist.txt: 511) -/.*\.net/ad_ -.*.net/ad_ -# .net/ad2/ (easylist.txt: 510) -/.*\.net/ad2/ -.*.net/ad2/ -# .net/ad/$~object-subrequest (easylist.txt: 509) -/.*\.net/ad/ -.*.net/ad/ -# .net/ad- (easylist.txt: 508) -/.*\.net/ad- -.*.net/ad- -# .net/_adv/ (easylist.txt: 507) -/.*\.net/_adv/ -.*.net/_adv/ -# .name/ads/ (easylist.txt: 506) -/.*\.name/ads/ -.*.name/ads/ -# .my/ads/ (easylist.txt: 505) -/.*\.my/ads/ -.*.my/ads/ -# .mx/ads/ (easylist.txt: 504) -/.*\.mx/ads/ -.*.mx/ads/ -# .mv/ads/ (easylist.txt: 503) -/.*\.mv/ads/ -.*.mv/ads/ -# .mobileads. (easylist.txt: 502) -/.*\.mobileads\. -.*.mobileads.*. -# .me/ads/ (easylist.txt: 501) -/.*\.me/ads/ -.*.me/ads/ -# .me/ads- (easylist.txt: 500) -/.*\.me/ads- -.*.me/ads- -# .lk/ads/ (easylist.txt: 499) -/.*\.lk/ads/ -.*.lk/ads/ -# .link/ads/ (easylist.txt: 498) -/.*\.link/ads/ -.*.link/ads/ -# .lazyload-ad. (easylist.txt: 497) -/.*\.lazyload-ad\. -.*.lazyload-ad.*. -# .lazyload-ad- (easylist.txt: 496) -/.*\.lazyload-ad- -.*.lazyload-ad-*. -# .ke/ads/ (easylist.txt: 495) -/.*\.ke/ads/ -.*.ke/ads/ -# .jsp?adcode= (easylist.txt: 494) -/.*\.jsp\?adcode= -# .jp/ads/ (easylist.txt: 493) -/.*\.jp/ads/ -.*.jp/ads/ -# .is/ads/ (easylist.txt: 492) -/.*\.is/ads/ -.*.is/ads/ -# .internads. (easylist.txt: 491) -/.*\.internads\. -.*.internads.*. -# .intad/ (easylist.txt: 490) -/.*\.intad/ -.*.intad -# .intad. (easylist.txt: 489) -/.*\.intad\. -.*.intad.*. -# .initdoubleclickadselementcontent? (easylist.txt: 488) -/.*\.initdoubleclickadselementcontent\? -# .info/ads/ (easylist.txt: 487) -/.*\.info/ads/ -.*.info/ads/ -# .info/ads- (easylist.txt: 486) -/.*\.info/ads- -.*.info/ads- -# .info/ad_ (easylist.txt: 485) -/.*\.info/ad_ -.*.info/ad_ -# .in/ads/ (easylist.txt: 484) -/.*\.in/ads/ -.*.in/ads/ -# .il/ads/ (easylist.txt: 483) -/.*\.il/ads/ -.*.il/ads/ -# .ie/ads/ (easylist.txt: 482) -/.*\.ie/ads/ -.*.ie/ads/ -# .iads.js (easylist.txt: 481) -/.*\.iads\.js -.*.iads.js*. -# .html?clicktag= (easylist.txt: 480) -/.*\.html\?clicktag= -# .html?ad_ (easylist.txt: 479) -/.*\.html\?ad_ -# .html?ad= (easylist.txt: 478) -/.*\.html\?ad= -# .HomepageAdvertismentBottom. (easylist.txt: 477) -/.*\.HomepageAdvertismentBottom\. -.*.HomepageAdvertismentBottom.*. -# .homad. (easylist.txt: 476) -/.*\.homad\. -.*.homad.*. -# .hk/ads/ (easylist.txt: 475) -/.*\.hk/ads/ -.*.hk/ads/ -# .gr/ads/ (easylist.txt: 474) -/.*\.gr/ads/ -.*.gr/ads/ -# .gif?ad= (easylist.txt: 473) -/.*\.gif\?ad= -# .gg/ads/ (easylist.txt: 472) -/.*\.gg/ads/ -.*.gg/ads/ -# .fm/ads/ (easylist.txt: 471) -/.*\.fm/ads/ -.*.fm/ads/ -# .exp_ad- (easylist.txt: 470) -/.*\.exp_ad- -# .eu/adv/ (easylist.txt: 469) -/.*\.eu/adv/ -.*.eu/adv/ -# .eu/ads/ (easylist.txt: 468) -/.*\.eu/ads/ -.*.eu/ads/ -# .eg/ads/ (easylist.txt: 467) -/.*\.eg/ads/ -.*.eg/ads/ -# .displayAds& (easylist.txt: 466) -/.*\.displayAds& -# .digital/ads/ (easylist.txt: 465) -/.*\.digital/ads/ -.*.digital/ads/ -# .dartconfig.js (easylist.txt: 464) -/.*\.dartconfig\.js -.*.dartconfig.js*. -# .cz/bannery/ (easylist.txt: 463) -/.*\.cz/bannery/ -.*.cz/bannery/ -# .cz/affil/ (easylist.txt: 462) -/.*\.cz/affil/ -.*.cz/affil/ -# .com/video-ad- (easylist.txt: 461) -/.*\.com/video-ad- -.*.com/video-ad- -# .com/ss/ad/ (easylist.txt: 460) -/.*\.com/ss/ad/ -.*.com/ss/ad/ -# .com/promodisplay? (easylist.txt: 459) -/.*\.com/promodisplay\? -.*.com/promodisplay\? -# .com/pm/ad- (easylist.txt: 458) -/.*\.com/pm/ad- -.*.com/pm/ad- -# .com/peels/ (easylist.txt: 457) -/.*\.com/peels/ -.*.com/peels/ -# .com/miads/ (easylist.txt: 456) -/.*\.com/miads/ -.*.com/miads/ -# .com/js/adsense (easylist.txt: 455) -/.*\.com/js/adsense -.*.com/js/adsense -# .com/js/ads/ (easylist.txt: 454) -/.*\.com/js/ads/ -.*.com/js/ads/ -# .com/js/ad. (easylist.txt: 453) -/.*\.com/js/ad\. -.*.com/js/ad\. -# .com/js.ng/ (easylist.txt: 452) -/.*\.com/js\.ng/ -.*.com/js\.ng/ -# .com/iplgadshow (easylist.txt: 451) -/.*\.com/iplgadshow -.*.com/iplgadshow -# .com/im_ad/ (easylist.txt: 450) -/.*\.com/im_ad/ -.*.com/im_ad/ -# .com/im-ad/ (easylist.txt: 449) -/.*\.com/im-ad/ -.*.com/im-ad/ -# .com/gads/ (easylist.txt: 448) -/.*\.com/gads/ -.*.com/gads/ -# .com/doubleclick/ (easylist.txt: 447) -/.*\.com/doubleclick/ -.*.com/doubleclick/ -# .com/bads/ (easylist.txt: 446) -/.*\.com/bads/ -.*.com/bads/ -# .com/adz/ (easylist.txt: 445) -/.*\.com/adz/ -.*.com/adz/ -# .com/adx_ (easylist.txt: 444) -/.*\.com/adx_ -.*.com/adx_ -# .com/adx/ (easylist.txt: 443) -/.*\.com/adx/ -.*.com/adx/ -# .com/adv_ (easylist.txt: 442) -/.*\.com/adv_ -.*.com/adv_ -# .com/adv? (easylist.txt: 441) -/.*\.com/adv\? -.*.com/adv\? -# .com/adv3/ (easylist.txt: 440) -/.*\.com/adv3/ -.*.com/adv3/ -# .com/adv/ (easylist.txt: 439) -/.*\.com/adv/ -.*.com/adv/ -# .com/ads_ (easylist.txt: 438) -/.*\.com/ads_ -.*.com/ads_ -# .com/ads? (easylist.txt: 437) -/.*\.com/ads\? -.*.com/ads\? -# .com/ads/$image,object,subdocument (easylist.txt: 436) -/.*\.com/ads/ -.*.com/ads/ -# .com/ads. (easylist.txt: 435) -/.*\.com/ads\. -.*.com/ads\. -# .com/ads- (easylist.txt: 434) -/.*\.com/ads- -.*.com/ads- -# .com/adpicture (easylist.txt: 433) -/.*\.com/adpicture -.*.com/adpicture -# .com/adlib_ (easylist.txt: 432) -/.*\.com/adlib_ -.*.com/adlib_ -# .com/adlib/ (easylist.txt: 431) -/.*\.com/adlib/ -.*.com/adlib/ -# .com/adinf/ (easylist.txt: 430) -/.*\.com/adinf/ -.*.com/adinf/ -# .com/adgallery (easylist.txt: 429) -/.*\.com/adgallery -.*.com/adgallery -# .com/adds/ (easylist.txt: 428) -/.*\.com/adds/ -.*.com/adds/ -# .com/adclk? (easylist.txt: 427) -/.*\.com/adclk\? -.*.com/adclk\? -# .com/ad? (easylist.txt: 426) -/.*\.com/ad\? -.*.com/ad\? -# .com/ad6/ (easylist.txt: 425) -/.*\.com/ad6/ -.*.com/ad6/ -# .com/ad2/ (easylist.txt: 424) -/.*\.com/ad2/ -.*.com/ad2/ -# .com/a?size (easylist.txt: 420) -/.*\.com/a\?size -.*.com/a\?size -# .com/a?pagetype (easylist.txt: 419) -/.*\.com/a\?pagetype -.*.com/a\?pagetype -# .com/a?network (easylist.txt: 418) -/.*\.com/a\?network -.*.com/a\?network -# .com/?wid= (easylist.txt: 417) -/.*\.com/\?wid= -.*.com/\?wid= -# .com/?ad= (easylist.txt: 416) -/.*\.com/\?ad= -.*.com/\?ad= -# .co/ads? (easylist.txt: 415) -/.*\.co/ads\? -.*.co/ads\? -# .co/ads/ (easylist.txt: 414) -/.*\.co/ads/ -.*.co/ads/ -# .clkads. (easylist.txt: 413) -/.*\.clkads\. -.*.clkads.*. -# .ch/adv/ (easylist.txt: 412) -/.*\.ch/adv/ -.*.ch/adv/ -# .ch/ads/ (easylist.txt: 411) -/.*\.ch/ads/ -.*.ch/ads/ -# .cgi?ad= (easylist.txt: 410) -/.*\.cgi\?ad= -# .cfm?advideo% (easylist.txt: 409) -/.*\.cfm\?advideo% -# .cfm?ad= (easylist.txt: 408) -/.*\.cfm\?ad= -# .cc/ads/ (easylist.txt: 407) -/.*\.cc/ads/ -.*.cc/ads/ -# .ca/ads/ (easylist.txt: 406) -/.*\.ca/ads/ -.*.ca/ads/ -# .bz/ads/ (easylist.txt: 405) -/.*\.bz/ads/ -.*.bz/ads/ -# .br/ads/ (easylist.txt: 404) -/.*\.br/ads/ -.*.br/ads/ -# .box.ad. (easylist.txt: 403) -/.*\.box\.ad\. -.*.box.ad.*. -# .bns1.net/ (easylist.txt: 402) -/.*\.bns1\.net/ -.*.bns1.net -# .biz/ads/ (easylist.txt: 401) -/.*\.biz/ads/ -.*.biz/ads/ -# .biz/ad2/ (easylist.txt: 400) -/.*\.biz/ad2/ -.*.biz/ad2/ -# .biz/ad/ (easylist.txt: 399) -/.*\.biz/ad/ -.*.biz/ad/ -# .biz/ad. (easylist.txt: 398) -/.*\.biz/ad\. -.*.biz/ad\. -# .be/ads/ (easylist.txt: 397) -/.*\.be/ads/ -.*.be/ads/ -# .bbn.by/ (easylist.txt: 396) -/.*\.bbn\.by/ -.*.bbn.by -# .banner%20ad. (easylist.txt: 395) -/.*\.banner%20ad\. -# .az/adv/ (easylist.txt: 394) -/.*\.az/adv/ -.*.az/adv/ -# .au/ads/ (easylist.txt: 393) -/.*\.au/ads/ -.*.au/ads/ -# .at/ads/ (easylist.txt: 392) -/.*\.at/ads/ -.*.at/ads/ -# .aspx?adid= (easylist.txt: 391) -/.*\.aspx\?adid= -# .aspx?ad= (easylist.txt: 390) -/.*\.aspx\?ad= -# .asp?coad (easylist.txt: 389) -/.*\.asp\?coad -# .ashx?AdID= (easylist.txt: 388) -/.*\.ashx\?AdID= -# .ashx?ad= (easylist.txt: 387) -/.*\.ashx\?ad= -# .ar/ads/ (easylist.txt: 386) -/.*\.ar/ads/ -.*.ar/ads/ -# .ae/ads/ (easylist.txt: 385) -/.*\.ae/ads/ -.*.ae/ads/ -# .adwolf. (easylist.txt: 384) -/.*\.adwolf\. -.*.adwolf.*. -# .advertmarket. (easylist.txt: 383) -/.*\.advertmarket\. -.*.advertmarket.*. -# .AdvertismentBottom. (easylist.txt: 382) -/.*\.AdvertismentBottom\. -.*.AdvertismentBottom.*. -# .adv.cdn. (easylist.txt: 380) -/.*\.adv\.cdn\. -.*.adv.cdn.*. -# .adtooltip& (easylist.txt: 379) -/.*\.adtooltip& -# .adtech_ (easylist.txt: 378) -/.*\.adtech_ -# .adsremote. (easylist.txt: 377) -/.*\.adsremote\. -.*.adsremote.*. -# .adspace. (easylist.txt: 376) -/.*\.adspace\. -.*.adspace.*. -# .adserver1. (easylist.txt: 374) -/.*\.adserver1\. -.*.adserver1.*. -# .adserver01. (easylist.txt: 373) -/.*\.adserver01\. -.*.adserver01.*. -# .adserver. (easylist.txt: 372) -/.*\.adserver\. -.*.adserver.*. -# .adserv/ (easylist.txt: 371) -/.*\.adserv/ -.*.adserv -# .adsense. (easylist.txt: 370) -/.*\.adsense\. -.*.adsense.*. -# .adsbox. (easylist.txt: 369) -/.*\.adsbox\. -.*.adsbox.*. -# .ads_clickthru. (easylist.txt: 368) -/.*\.ads_clickthru\. -# .ads3- (easylist.txt: 367) -/.*\.ads3- -.*.ads3-*. -# .ads2- (easylist.txt: 366) -/.*\.ads2- -.*.ads2-*. -# .ads1. (easylist.txt: 365) -/.*\.ads1\. -.*.ads1.*. -# .ads1- (easylist.txt: 364) -/.*\.ads1- -.*.ads1-*. -# .ads.zones. (easylist.txt: 363) -/.*\.ads\.zones\. -.*.ads.zones.*. -# .ads.loader- (easylist.txt: 362) -/.*\.ads\.loader- -.*.ads.loader-*. -# .ads.darla. (easylist.txt: 361) -/.*\.ads\.darla\. -.*.ads.darla.*. -# .ads.css (easylist.txt: 360) -/.*\.ads\.css -.*.ads.css*. -# .ads.core. (easylist.txt: 359) -/.*\.ads\.core\. -.*.ads.core.*. -# .ads.controller. (easylist.txt: 358) -/.*\.ads\.controller\. -.*.ads.controller.*. -# .ads-tool. (easylist.txt: 357) -/.*\.ads-tool\. -.*.ads-tool.*. -# .ads-min. (easylist.txt: 356) -/.*\.ads-min\. -.*.ads-min.*. -# .ads-lazy. (easylist.txt: 355) -/.*\.ads-lazy\. -.*.ads-lazy.*. -# .ads-and-tracking. (easylist.txt: 354) -/.*\.ads-and-tracking\. -.*.ads-and-tracking.*. -# .adru. (easylist.txt: 353) -/.*\.adru\. -.*.adru.*. -# .adrotate. (easylist.txt: 352) -/.*\.adrotate\. -.*.adrotate.*. -# .adriver.$~object-subrequest (easylist.txt: 351) -/.*\.adriver\. -.*.adriver.*. -# .adplacement= (easylist.txt: 349) -/.*\.adplacement= -# .adpartner. (easylist.txt: 348) -/.*\.adpartner\. -.*.adpartner.*. -# .admarvel. (easylist.txt: 346) -/.*\.admarvel\. -.*.admarvel.*. -# .adgearpubs. (easylist.txt: 344) -/.*\.adgearpubs\. -.*.adgearpubs.*. -# .adframesrc. (easylist.txt: 343) -/.*\.adframesrc\. -.*.adframesrc.*. -# .adforge. (easylist.txt: 342) -/.*\.adforge\. -.*.adforge.*. -# .adcenter. (easylist.txt: 341) -/.*\.adcenter\. -.*.adcenter.*. -# .adbutler- (easylist.txt: 340) -/.*\.adbutler- -.*.adbutler-*. -# .adbanner. (easylist.txt: 339) -/.*\.adbanner\. -.*.adbanner.*. -# .ad1.nspace (easylist.txt: 338) -/.*\.ad1\.nspace -.*.ad1.nspace*. -# .ad/tag. (easylist.txt: 337) -/.*\.ad/tag\. -.*.ad/tag\. -# .ad/scripts/ (easylist.txt: 336) -/.*\.ad/scripts/ -.*.ad/scripts/ -# .ad/script/ (easylist.txt: 335) -/.*\.ad/script/ -.*.ad/script/ -# .ad/positions/ (easylist.txt: 334) -/.*\.ad/positions/ -.*.ad/positions/ -# .ad/content/ (easylist.txt: 333) -/.*\.ad/content/ -.*.ad/content/ -# .ad.premiere. (easylist.txt: 332) -/.*\.ad\.premiere\. -.*.ad.premiere.*. -# .ad.page. (easylist.txt: 331) -/.*\.ad\.page\. -.*.ad.page.*. -# .ad.json? (easylist.txt: 330) -/.*\.ad\.json\? -# .ad.footer. (easylist.txt: 329) -/.*\.ad\.footer\. -.*.ad.footer.*. -# .ad.final. (easylist.txt: 328) -/.*\.ad\.final\. -.*.ad.final.*. -# .ad-traffic. (easylist.txt: 327) -/.*\.ad-traffic\. -.*.ad-traffic.*. -# .ad-sys. (easylist.txt: 326) -/.*\.ad-sys\. -.*.ad-sys.*. -# .ad-cloud. (easylist.txt: 325) -/.*\.ad-cloud\. -.*.ad-cloud.*. -# .ace.advertising. (easylist.txt: 324) -/.*\.ace\.advertising\. -.*.ace.advertising.*. -# .a3s?n=*&zone_id= (easylist.txt: 323) -/.*\.a3s\?n=.*&zone_id= -# .1d/ads/ (easylist.txt: 322) -/.*\.1d/ads/ -.*.1d/ads/ -# -your-ads-here. (easylist.txt: 321) -/.*-your-ads-here\. -.*-your-ads-here.*. -# -webad1. (easylist.txt: 320) -/.*-webad1\. -.*-webad1.*. -# -Web-Advert. (easylist.txt: 319) -/.*-Web-Advert\. -.*-Web-Advert.*. -# -web-advert- (easylist.txt: 318) -/.*-web-advert- -.*-web-advert-*. -# -Web-Ads. (easylist.txt: 317) -/.*-Web-Ads\. -.*-Web-Ads.*. -# -Web-Ad. (easylist.txt: 316) -/.*-Web-Ad\. -.*-Web-Ad.*. -# -web-ad- (easylist.txt: 315) -/.*-web-ad- -.*-web-ad-*. -# -video-ads/ (easylist.txt: 314) -/.*-video-ads/ -.*-video-ads -# -us/ads/ (easylist.txt: 313) -/.*-us/ads/ -.*-us/ads/ -# -top-ads. (easylist.txt: 312) -/.*-top-ads\. -.*-top-ads.*. -# -top-ad. (easylist.txt: 311) -/.*-top-ad\. -.*-top-ad.*. -# -third-ad. (easylist.txt: 310) -/.*-third-ad\. -.*-third-ad.*. -# -theme/ads/ (easylist.txt: 309) -/.*-theme/ads/ -.*-theme/ads/ -# -text-ads. (easylist.txt: 308) -/.*-text-ads\. -.*-text-ads.*. -# -template-ads/ (easylist.txt: 307) -/.*-template-ads/ -.*-template-ads -# -strip-ads- (easylist.txt: 306) -/.*-strip-ads- -.*-strip-ads-*. -# -sponsored-links- (easylist.txt: 305) -/.*-sponsored-links- -.*-sponsored-links-*. -# -sponsor-ad. (easylist.txt: 304) -/.*-sponsor-ad\. -.*-sponsor-ad.*. -# -source/ads/ (easylist.txt: 303) -/.*-source/ads/ -.*-source/ads/ -# -small-ad. (easylist.txt: 302) -/.*-small-ad\. -.*-small-ad.*. -# -skyscrapper160x600. (easylist.txt: 301) -/.*-skyscrapper160x600\. -.*-skyscrapper160x600.*. -# -Skyscraper-Ad. (easylist.txt: 300) -/.*-Skyscraper-Ad\. -.*-Skyscraper-Ad.*. -# -side-ad- (easylist.txt: 299) -/.*-side-ad- -.*-side-ad-*. -# -show-ads. (easylist.txt: 298) -/.*-show-ads\. -.*-show-ads.*. -# -seasonal-ad. (easylist.txt: 297) -/.*-seasonal-ad\. -.*-seasonal-ad.*. -# -scrollads. (easylist.txt: 296) -/.*-scrollads\. -.*-scrollads.*. -# -rollout-ad- (easylist.txt: 295) -/.*-rollout-ad- -.*-rollout-ad-*. -# -rightrailad- (easylist.txt: 294) -/.*-rightrailad- -.*-rightrailad-*. -# -right-ad. (easylist.txt: 293) -/.*-right-ad\. -.*-right-ad.*. -# -Results-Sponsored. (easylist.txt: 292) -/.*-Results-Sponsored\. -.*-Results-Sponsored.*. -# -rectangle/ad- (easylist.txt: 291) -/.*-rectangle/ad- -.*-rectangle/ad- -# -publicidad. (easylist.txt: 290) -/.*-publicidad\. -.*-publicidad.*. -# -printhousead- (easylist.txt: 289) -/.*-printhousead- -.*-printhousead-*. -# -pri/adv- (easylist.txt: 288) -/.*-pri/adv- -.*-pri/adv- -# -popup-ads- (easylist.txt: 287) -/.*-popup-ads- -.*-popup-ads-*. -# -popup-ad. (easylist.txt: 286) -/.*-popup-ad\. -.*-popup-ad.*. -# -popunder. (easylist.txt: 285) -/.*-popunder\. -.*-popunder.*. -# -popexit. (easylist.txt: 284) -/.*-popexit\. -.*-popexit.*. -# -pop-under/ (easylist.txt: 283) -/.*-pop-under/ -.*-pop-under -# -permads. (easylist.txt: 282) -/.*-permads\. -.*-permads.*. -# -peel-ads- (easylist.txt: 281) -/.*-peel-ads- -.*-peel-ads-*. -# -panel_ad_ (easylist.txt: 280) -/.*-panel_ad_ -# -panel-ad. (easylist.txt: 279) -/.*-panel-ad\. -.*-panel-ad.*. -# -page-peel/ (easylist.txt: 278) -/.*-page-peel/ -.*-page-peel -# -page-ad? (easylist.txt: 277) -/.*-page-ad\? -# -page-ad. (easylist.txt: 276) -/.*-page-ad\. -.*-page-ad.*. -# -online-advert. (easylist.txt: 275) -/.*-online-advert\. -.*-online-advert.*. -# -NewStockAd- (easylist.txt: 274) -/.*-NewStockAd- -.*-NewStockAd-*. -# -newsletter-ad- (easylist.txt: 273) -/.*-newsletter-ad- -.*-newsletter-ad-*. -# -news-ad- (easylist.txt: 272) -/.*-news-ad- -.*-news-ad-*. -# -NewAd. (easylist.txt: 271) -/.*-NewAd\. -.*-NewAd.*. -# -load-ads. (easylist.txt: 270) -/.*-load-ads\. -.*-load-ads.*. -# -leaderboard-ad- (easylist.txt: 269) -/.*-leaderboard-ad- -.*-leaderboard-ad-*. -# -layer-ads/ (easylist.txt: 268) -/.*-layer-ads/ -.*-layer-ads -# -layer-ad. (easylist.txt: 267) -/.*-layer-ad\. -.*-layer-ad.*. -# -intern-ads/ (easylist.txt: 266) -/.*-intern-ads/ -.*-intern-ads -# -inspire-ad. (easylist.txt: 265) -/.*-inspire-ad\. -.*-inspire-ad.*. -# -img/ads/ (easylist.txt: 264) -/.*-img/ads/ -.*-img/ads/ -# -images/ad- (easylist.txt: 263) -/.*-images/ad- -.*-images/ad- -# -image/Ads/ (easylist.txt: 262) -/.*-image/Ads/ -.*-image/Ads/ -# -image-ad. (easylist.txt: 261) -/.*-image-ad\. -.*-image-ad.*. -# -iframe-ads/ (easylist.txt: 260) -/.*-iframe-ads/ -.*-iframe-ads -# -iframe-ad. (easylist.txt: 259) -/.*-iframe-ad\. -.*-iframe-ad.*. -# -housead- (easylist.txt: 258) -/.*-housead- -.*-housead-*. -# -gpt-ad- (easylist.txt: 257) -/.*-gpt-ad- -.*-gpt-ad-*. -# -google2-ad- (easylist.txt: 256) -/.*-google2-ad- -.*-google2-ad-*. -# -google-ads/ (easylist.txt: 255) -/.*-google-ads/ -.*-google-ads -# -google-ads- (easylist.txt: 254) -/.*-google-ads- -.*-google-ads-*. -# -games/ads/ (easylist.txt: 253) -/.*-games/ads/ -.*-games/ads/ -# -gallery_ad/ (easylist.txt: 252) -/.*-gallery_ad/ -# -footerads. (easylist.txt: 251) -/.*-footerads\. -.*-footerads.*. -# -footerads- (easylist.txt: 250) -/.*-footerads- -.*-footerads-*. -# -floorboard-ads/ (easylist.txt: 249) -/.*-floorboard-ads/ -.*-floorboard-ads -# -floater_ads_ (easylist.txt: 248) -/.*-floater_ads_ -# -fleshlight2. (easylist.txt: 247) -/.*-fleshlight2\. -.*-fleshlight2.*. -# -feed-ads. (easylist.txt: 246) -/.*-feed-ads\. -.*-feed-ads.*. -# -featured-ads/ (easylist.txt: 245) -/.*-featured-ads/ -.*-featured-ads -# -featured-ads. (easylist.txt: 244) -/.*-featured-ads\. -.*-featured-ads.*. -# -fe-ads/ (easylist.txt: 243) -/.*-fe-ads/ -.*-fe-ads -# -euads. (easylist.txt: 242) -/.*-euads\. -.*-euads.*. -# -dfp-ads/ (easylist.txt: 241) -/.*-dfp-ads/ -.*-dfp-ads -# -cpm-ads. (easylist.txt: 240) -/.*-cpm-ads\. -.*-cpm-ads.*. -# -cpm-ad. (easylist.txt: 239) -/.*-cpm-ad\. -.*-cpm-ad.*. -# -contest-ad. (easylist.txt: 238) -/.*-contest-ad\. -.*-contest-ad.*. -# -content-ad. (easylist.txt: 237) -/.*-content-ad\. -.*-content-ad.*. -# -box2-ad? (easylist.txt: 236) -/.*-box2-ad\? -# -Box-Ad. (easylist.txt: 235) -/.*-Box-Ad\. -.*-Box-Ad.*. -# -book-ad- (easylist.txt: 234) -/.*-book-ad- -.*-book-ad-*. -# -blog-ad- (easylist.txt: 233) -/.*-blog-ad- -.*-blog-ad-*. -# -bin/ad_ (easylist.txt: 232) -/.*-bin/ad_ -.*-bin/ad_ -# -billboard-ads/ (easylist.txt: 231) -/.*-billboard-ads/ -.*-billboard-ads -# -bg_ads. (easylist.txt: 230) -/.*-bg_ads\. -# -bannerads/ (easylist.txt: 229) -/.*-bannerads/ -.*-bannerads -# -banner468x60. (easylist.txt: 228) -/.*-banner468x60\. -.*-banner468x60.*. -# -banner300x250. (easylist.txt: 227) -/.*-banner300x250\. -.*-banner300x250.*. -# -banner.swf? (easylist.txt: 226) -/.*-banner\.swf\? -# -banner-ads/ (easylist.txt: 225) -/.*-banner-ads/ -.*-banner-ads -# -banner-ads- (easylist.txt: 224) -/.*-banner-ads- -.*-banner-ads-*. -# -banner-ad/ (easylist.txt: 223) -/.*-banner-ad/ -.*-banner-ad -# -banner-ad. (easylist.txt: 222) -/.*-banner-ad\. -.*-banner-ad.*. -# -banner-ad- (easylist.txt: 221) -/.*-banner-ad- -.*-banner-ad-*. -# -banner-768. (easylist.txt: 220) -/.*-banner-768\. -.*-banner-768.*. -# -article-advert- (easylist.txt: 219) -/.*-article-advert- -.*-article-advert-*. -# -article-ads- (easylist.txt: 218) -/.*-article-ads- -.*-article-ads-*. -# -affiliates/img_ (easylist.txt: 217) -/.*-affiliates/img_ -.*-affiliates/img_ -# -affiliate-link. (easylist.txt: 216) -/.*-affiliate-link\. -.*-affiliate-link.*. -# -adwords. (easylist.txt: 215) -/.*-adwords\. -.*-adwords.*. -# -advertisment- (easylist.txt: 214) -/.*-advertisment- -.*-advertisment-*. -# -advertising_ (easylist.txt: 213) -/.*-advertising_ -# -advertisement_ (easylist.txt: 212) -/.*-advertisement_ -# -advertisement. (easylist.txt: 211) -/.*-advertisement\. -.*-advertisement.*. -# -advertisement-icon. (easylist.txt: 210) -/.*-advertisement-icon\. -.*-advertisement-icon.*. -# -advertise01. (easylist.txt: 209) -/.*-advertise01\. -.*-advertise01.*. -# -advertise/ (easylist.txt: 208) -/.*-advertise/ -.*-advertise -# -advert_August. (easylist.txt: 206) -/.*-advert_August\. -# -advert3. (easylist.txt: 205) -/.*-advert3\. -.*-advert3.*. -# -advert2. (easylist.txt: 204) -/.*-advert2\. -.*-advert2.*. -# -advert1. (easylist.txt: 203) -/.*-advert1\. -.*-advert1.*. -# -advert.swf (easylist.txt: 202) -/.*-advert\.swf -.*-advert.swf*. -# -advert.jpg? (easylist.txt: 201) -/.*-advert\.jpg\? -# -advert-label- (easylist.txt: 200) -/.*-advert-label- -.*-advert-label-*. -# -adv.js (easylist.txt: 199) -/.*-adv\.js -.*-adv.js*. -# -adv.jpg (easylist.txt: 198) -/.*-adv\.jpg -.*-adv.jpg*. -# -adv-v1/ (easylist.txt: 197) -/.*-adv-v1/ -.*-adv-v1 -# -adtrack. (easylist.txt: 196) -/.*-adtrack\. -.*-adtrack.*. -# -adtopbanner- (easylist.txt: 195) -/.*-adtopbanner- -.*-adtopbanner-*. -# -adtechfront. (easylist.txt: 194) -/.*-adtechfront\. -.*-adtechfront.*. -# -adsystem- (easylist.txt: 193) -/.*-adsystem- -.*-adsystem-*. -# -adswizz- (easylist.txt: 192) -/.*-adswizz- -.*-adswizz-*. -# -adspot- (easylist.txt: 191) -/.*-adspot- -.*-adspot-*. -# -adspace_ (easylist.txt: 190) -/.*-adspace_ -# -adspace. (easylist.txt: 189) -/.*-adspace\. -.*-adspace.*. -# -adsonar. (easylist.txt: 188) -/.*-adsonar\. -.*-adsonar.*. -# -adserver/ (easylist.txt: 187) -/.*-adserver/ -.*-adserver -# -adserver- (easylist.txt: 186) -/.*-adserver- -.*-adserver-*. -# -adsense2. (easylist.txt: 185) -/.*-adsense2\. -.*-adsense2.*. -# -adscript. (easylist.txt: 184) -/.*-adscript\. -.*-adscript.*. -# -Ads_Billboard_ (easylist.txt: 183) -/.*-Ads_Billboard_ -# -ads_9_3. (easylist.txt: 182) -/.*-ads_9_3\. -# -Ads_728x902. (easylist.txt: 181) -/.*-Ads_728x902\. -# -ads/static- (easylist.txt: 180) -/.*-ads/static- -.*-ads/static- -# -ads/oas/ (easylist.txt: 179) -/.*-ads/oas/ -.*-ads/oas/ -# -ads/img/ (easylist.txt: 178) -/.*-ads/img/ -.*-ads/img/ -# -ads/ad- (easylist.txt: 177) -/.*-ads/ad- -.*-ads/ad- -# -ads/728x (easylist.txt: 176) -/.*-ads/728x -.*-ads/728x -# -ads.swf (easylist.txt: 175) -/.*-ads\.swf -.*-ads.swf*. -# -ads.php? (easylist.txt: 174) -/.*-ads\.php\? -# -ads.js? (easylist.txt: 173) -/.*-ads\.js\? -# -ads.gif (easylist.txt: 172) -/.*-ads\.gif -.*-ads.gif*. -# -ads.generated. (easylist.txt: 171) -/.*-ads\.generated\. -.*-ads.generated.*. -# -ads-widget? (easylist.txt: 170) -/.*-ads-widget\? -# -ads-right. (easylist.txt: 169) -/.*-ads-right\. -.*-ads-right.*. -# -ads-placement. (easylist.txt: 168) -/.*-ads-placement\. -.*-ads-placement.*. -# -ads-ns. (easylist.txt: 167) -/.*-ads-ns\. -.*-ads-ns.*. -# -ads-manager/ (easylist.txt: 166) -/.*-ads-manager/ -.*-ads-manager -# -ads-management/ (easylist.txt: 165) -/.*-ads-management/ -.*-ads-management -# -ads-init& (easylist.txt: 164) -/.*-ads-init& -# -ads-iframe. (easylist.txt: 163) -/.*-ads-iframe\. -.*-ads-iframe.*. -# -ads-bottom. (easylist.txt: 162) -/.*-ads-bottom\. -.*-ads-bottom.*. -# -ads-banner. (easylist.txt: 161) -/.*-ads-banner\. -.*-ads-banner.*. -# -ads-728x (easylist.txt: 160) -/.*-ads-728x -.*-ads-728x*. -# -ads-180x (easylist.txt: 159) -/.*-ads-180x -.*-ads-180x*. -# -adrotation. (easylist.txt: 158) -/.*-adrotation\. -.*-adrotation.*. -# -adnow. (easylist.txt: 157) -/.*-adnow\. -.*-adnow.*. -# -admarvel/ (easylist.txt: 156) -/.*-admarvel/ -.*-admarvel -# -adimage- (easylist.txt: 155) -/.*-adimage- -.*-adimage-*. -# -adhere2. (easylist.txt: 154) -/.*-adhere2\. -.*-adhere2.*. -# -adhelper. (easylist.txt: 153) -/.*-adhelper\. -.*-adhelper.*. -# -adchain. (easylist.txt: 152) -/.*-adchain\. -.*-adchain.*. -# -adcentre. (easylist.txt: 151) -/.*-adcentre\. -.*-adcentre.*. -# -adblack- (easylist.txt: 150) -/.*-adblack- -.*-adblack-*. -# -adap. (easylist.txt: 149) -/.*-adap\. -.*-adap.*. -# -ad_leaderboard/ (easylist.txt: 148) -/.*-ad_leaderboard/ -# -ad_injector/ (easylist.txt: 147) -/.*-ad_injector/ -# -ad_banner- (easylist.txt: 146) -/.*-ad_banner- -# -ad_125x125. (easylist.txt: 145) -/.*-ad_125x125\. -# -ad5. (easylist.txt: 144) -/.*-ad5\. -.*-ad5.*. -# -ad4. (easylist.txt: 143) -/.*-ad4\. -.*-ad4.*. -# -Ad300x90- (easylist.txt: 142) -/.*-Ad300x90- -.*-Ad300x90-*. -# -Ad300x250. (easylist.txt: 141) -/.*-Ad300x250\. -.*-Ad300x250.*. -# -ad3. (easylist.txt: 140) -/.*-ad3\. -.*-ad3.*. -# -ad2_ (easylist.txt: 139) -/.*-ad2_ -# -ad2. (easylist.txt: 138) -/.*-ad2\. -.*-ad2.*. -# -ad1. (easylist.txt: 137) -/.*-ad1\. -.*-ad1.*. -# -ad03. (easylist.txt: 136) -/.*-ad03\. -.*-ad03.*. -# -ad/right_ (easylist.txt: 135) -/.*-ad/right_ -.*-ad/right_ -# -ad/main. (easylist.txt: 134) -/.*-ad/main\. -.*-ad/main\. -# -ad.php? (easylist.txt: 133) -/.*-ad\.php\? -# -ad.jsp| (easylist.txt: 132) -/.*-ad\.jsp$ -.*-ad.jsp -# -ad.jpg? (easylist.txt: 131) -/.*-ad\.jpg\? -# -ad.jpg.pagespeed. (easylist.txt: 130) -/.*-ad\.jpg\.pagespeed\. -.*-ad.jpg.pagespeed.*. -# -ad-zone. (easylist.txt: 129) -/.*-ad-zone\. -.*-ad-zone.*. -# -ad-vertical- (easylist.txt: 128) -/.*-ad-vertical- -.*-ad-vertical-*. -# -ad-util. (easylist.txt: 127) -/.*-ad-util\. -.*-ad-util.*. -# -ad-util- (easylist.txt: 126) -/.*-ad-util- -.*-ad-util-*. -# -ad-unit/ (easylist.txt: 125) -/.*-ad-unit/ -.*-ad-unit -# -ad-unit. (easylist.txt: 124) -/.*-ad-unit\. -.*-ad-unit.*. -# -ad-top. (easylist.txt: 123) -/.*-ad-top\. -.*-ad-top.*. -# -ad-tile. (easylist.txt: 122) -/.*-ad-tile\. -.*-ad-tile.*. -# -ad-switcher. (easylist.txt: 121) -/.*-ad-switcher\. -.*-ad-switcher.*. -# -ad-sidebar- (easylist.txt: 120) -/.*-ad-sidebar- -.*-ad-sidebar-*. -# -ad-server/ (easylist.txt: 119) -/.*-ad-server/ -.*-ad-server -# -ad-rotators/ (easylist.txt: 118) -/.*-ad-rotators/ -.*-ad-rotators -# -ad-right. (easylist.txt: 117) -/.*-ad-right\. -.*-ad-right.*. -# -ad-new_ (easylist.txt: 116) -/.*-ad-new_ -# -ad-mpu+ (easylist.txt: 115) -/.*-ad-mpu\+ -# -ad-marker. (easylist.txt: 114) -/.*-ad-marker\. -.*-ad-marker.*. -# -ad-manager/$~stylesheet (easylist.txt: 113) -/.*-ad-manager/ -.*-ad-manager -# -ad-loading. (easylist.txt: 112) -/.*-ad-loading\. -.*-ad-loading.*. -# -ad-limits. (easylist.txt: 111) -/.*-ad-limits\. -.*-ad-limits.*. -# -ad-left. (easylist.txt: 110) -/.*-ad-left\. -.*-ad-left.*. -# -ad-large. (easylist.txt: 109) -/.*-ad-large\. -.*-ad-large.*. -# -ad-iframe/ (easylist.txt: 108) -/.*-ad-iframe/ -.*-ad-iframe -# -ad-hrule. (easylist.txt: 107) -/.*-ad-hrule\. -.*-ad-hrule.*. -# -ad-hrule- (easylist.txt: 106) -/.*-ad-hrule- -.*-ad-hrule-*. -# -ad-home. (easylist.txt: 105) -/.*-ad-home\. -.*-ad-home.*. -# -ad-gif1- (easylist.txt: 104) -/.*-ad-gif1- -.*-ad-gif1-*. -# -ad-gif- (easylist.txt: 103) -/.*-ad-gif- -.*-ad-gif-*. -# -ad-exo- (easylist.txt: 102) -/.*-ad-exo- -.*-ad-exo-*. -# -ad-ero- (easylist.txt: 101) -/.*-ad-ero- -.*-ad-ero-*. -# -ad-data/ (easylist.txt: 100) -/.*-ad-data/ -.*-ad-data -# -ad-cube. (easylist.txt: 99) -/.*-ad-cube\. -.*-ad-cube.*. -# -ad-column- (easylist.txt: 98) -/.*-ad-column- -.*-ad-column-*. -# -ad-choices. (easylist.txt: 97) -/.*-ad-choices\. -.*-ad-choices.*. -# -ad-category- (easylist.txt: 96) -/.*-ad-category- -.*-ad-category-*. -# -ad-button- (easylist.txt: 95) -/.*-ad-button- -.*-ad-button-*. -# -ad-bottom- (easylist.txt: 94) -/.*-ad-bottom- -.*-ad-bottom-*. -# -ad-big. (easylist.txt: 93) -/.*-ad-big\. -.*-ad-big.*. -# -ad-banner. (easylist.txt: 92) -/.*-ad-banner\. -.*-ad-banner.*. -# -ad-400. (easylist.txt: 91) -/.*-ad-400\. -.*-ad-400.*. -# -ad-340x400- (easylist.txt: 90) -/.*-ad-340x400- -.*-ad-340x400-*. -# -ad-336x280- (easylist.txt: 89) -/.*-ad-336x280- -.*-ad-336x280-*. -# -ad-313x232. (easylist.txt: 88) -/.*-ad-313x232\. -.*-ad-313x232.*. -# -ad-300x250. (easylist.txt: 87) -/.*-ad-300x250\. -.*-ad-300x250.*. -# -ad-24x24. (easylist.txt: 86) -/.*-ad-24x24\. -.*-ad-24x24.*. -# -ad-200x200- (easylist.txt: 85) -/.*-ad-200x200- -.*-ad-200x200-*. -# -ad-180x150px. (easylist.txt: 84) -/.*-ad-180x150px\. -.*-ad-180x150px.*. -# -ad-001- (easylist.txt: 83) -/.*-ad-001- -.*-ad-001-*. -# -300x100ad2. (easylist.txt: 82) -/.*-300x100ad2\. -.*-300x100ad2.*. -# -2011ad_ (easylist.txt: 81) -/.*-2011ad_ -# -2/ads/ (easylist.txt: 80) -/.*-2/ads/ -.*-2/ads/ -# +adverts/ (easylist.txt: 79) -/.*\+adverts/ -# +advertorial. (easylist.txt: 78) -/.*\+advertorial\. -# &view=ad& (easylist.txt: 77) -/.*&view=ad& -# &videoadid= (easylist.txt: 76) -/.*&videoadid= -# &video_ads_ (easylist.txt: 75) -/.*&video_ads_ -# &UrlAdParam= (easylist.txt: 74) -/.*&UrlAdParam= -# &type=ad& (easylist.txt: 73) -/.*&type=ad& -# &strategy=adsense& (easylist.txt: 72) -/.*&strategy=adsense& -# &smart_ad_ (easylist.txt: 71) -/.*&smart_ad_ -# &smallad= (easylist.txt: 70) -/.*&smallad= -# &simple_ad_ (easylist.txt: 69) -/.*&simple_ad_ -# &showad= (easylist.txt: 68) -/.*&showad= -# &show_ad_ (easylist.txt: 67) -/.*&show_ad_ -# &prvtof=*&poru= (easylist.txt: 66) -/.*&prvtof=.*&poru= -# &program=revshare& (easylist.txt: 65) -/.*&program=revshare& -# &popunder= (easylist.txt: 64) -/.*&popunder= -# &maxads= (easylist.txt: 63) -/.*&maxads= -# &largead= (easylist.txt: 62) -/.*&largead= -# &jumpstartadformat= (easylist.txt: 61) -/.*&jumpstartadformat= -# &googleadword= (easylist.txt: 60) -/.*&googleadword= -# &gIncludeExternalAds= (easylist.txt: 59) -/.*&gIncludeExternalAds= -# &expandable_ad_ (easylist.txt: 58) -/.*&expandable_ad_ -# &displayads= (easylist.txt: 57) -/.*&displayads= -# &customSizeAd= (easylist.txt: 56) -/.*&customSizeAd= -# &clicktag=http (easylist.txt: 55) -/.*&clicktag=http -# &banner_id= (easylist.txt: 54) -/.*&banner_id= -# &adzone= (easylist.txt: 53) -/.*&adzone= -# &advtile= (easylist.txt: 52) -/.*&advtile= -# &advid= (easylist.txt: 51) -/.*&advid= -# &advertiserid= (easylist.txt: 50) -/.*&advertiserid= -# &advert_ (easylist.txt: 49) -/.*&advert_ -# &adv_keywords= (easylist.txt: 48) -/.*&adv_keywords= -# &adurl= (easylist.txt: 47) -/.*&adurl= -# &adunit= (easylist.txt: 46) -/.*&adunit= -# &adType=PREROLL& (easylist.txt: 45) -/.*&adType=PREROLL& -# &adstype= (easylist.txt: 44) -/.*&adstype= -# &adspace= (easylist.txt: 43) -/.*&adspace= -# &adsourceid= (easylist.txt: 42) -/.*&adsourceid= -# &adslots= (easylist.txt: 41) -/.*&adslots= -# &adslot= (easylist.txt: 40) -/.*&adslot= -# &adsize= (easylist.txt: 39) -/.*&adsize= -# &adserver= (easylist.txt: 38) -/.*&adserver= -# &adsafe= (easylist.txt: 37) -/.*&adsafe= -# &adpageurl= (easylist.txt: 36) -/.*&adpageurl= -# &adnum= (easylist.txt: 35) -/.*&adnum= -# &adnet= (easylist.txt: 34) -/.*&adnet= -# &adname= (easylist.txt: 33) -/.*&adname= -# &admid= (easylist.txt: 32) -/.*&admid= -# &admeld_ (easylist.txt: 31) -/.*&admeld_ -# &adgroupid= (easylist.txt: 30) -/.*&adgroupid= -# &adcount= (easylist.txt: 29) -/.*&adcount= -# &adclient= (easylist.txt: 28) -/.*&adclient= -# &adbannerid= (easylist.txt: 27) -/.*&adbannerid= -# &ad_zones= (easylist.txt: 26) -/.*&ad_zones= -# &ad_url= (easylist.txt: 25) -/.*&ad_url= -# &ad_type_ (easylist.txt: 24) -/.*&ad_type_ -# &ad_type= (easylist.txt: 23) -/.*&ad_type= -# &ad_number= (easylist.txt: 22) -/.*&ad_number= -# &ad_network_ (easylist.txt: 21) -/.*&ad_network_ -# &ad_keyword= (easylist.txt: 20) -/.*&ad_keyword= -# &ad_height= (easylist.txt: 19) -/.*&ad_height= -# &ad_classid= (easylist.txt: 18) -/.*&ad_classid= -# &ad_channel= (easylist.txt: 17) -/.*&ad_channel= -# &ad_box_ (easylist.txt: 16) -/.*&ad_box_ #ab2p-block-dnt-R1 {+client-header-tagger{ab2p-block-dnt-R1} \ } -# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|107.150.17.66|20fuck.com|20men.com|22fuck.com|23.226.134.115|23.226.134.116|23.226.138.28|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina+easylist.txt: 1159) +# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tb001.xyz|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina.txt: 1177) /(.*/)?images/.*\.gif #ab2p-block-dnt-R2 {+client-header-tagger{ab2p-block-dnt-R2} \ } -# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina+easylist.txt: 4612) +# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tb001.xyz|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina.txt: 4590) .sinaimg.cn/.*\.gif #ab2p-block-dnt-R3 {+client-header-tagger{ab2p-block-dnt-R3} \ } -# ||109.201.134.110^$domain=04stream.com (easylistchina+easylist.txt: 39580) -.109.201.134.110 -# ||109.201.134.110^$domain=04stream.com (easylist.txt: 29095) -.109.201.134.110 +# ||chinaacc.com^$domain=100ksw.com (easylistchina.txt: 2414) +.chinaacc.com #ab2p-block-dnt-R4 {+client-header-tagger{ab2p-block-dnt-R4} \ } -# ||chinaacc.com^$domain=100ksw.com (easylistchina+easylist.txt: 2428) -.chinaacc.com +# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina.txt: 1184) +/(.*/)?images/moe #ab2p-block-dnt-R5 {+client-header-tagger{ab2p-block-dnt-R5} \ } -# ||2mdn.net^$object-subrequest,third-party,domain=101cargames.com|1025thebull.com|1031iheartaustin.com|1037theq.com|1041beat.com|1053kissfm.com|1057ezrock.com|1067litefm.com|10news.com|1310news.com|247comedy.com|3news.co.nz|49ers.com|610cktb.com|680news.com|700wlw.com|850koa.com|923jackfm.com|92q.com|940winz.com|94hjy.com|99kisscountry.com|abc15.com|abc2news.com|abcactionnews.com|am1300thezone.com|ap.org|atlantafalcons.com|automobilemag.com|automotive.com|azcardinals.com|baltimoreravens.com|baynews9.com|bbc.co.uk|bbc.com|belfasttelegraph.co.uk|bengals.com|bet.com|big1059.com|bigdog1009.ca|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boom973.com|boom997.com|boomphilly.com|box10.com|brisbanetimes.com.au|buccaneers.com|buffalobills.com|bullz-eye.com|calgaryherald.com|caller.com|canada.com|capitalfm.ca|cbslocal.com|cbsnews.com|cbssports.com|channel955.com|chargers.com|chez106.com|chfi.com|chicagobears.com|chicagotribune.com|cj104.com|cjad.com|cjbk.com|clevelandbrowns.com|cnet.com|coast933.com|colts.com|commercialappeal.com|country1011.com|country1043.com|country1067.com|country600.com|courierpress.com|cp24.com|cricketcountry.com|csmonitor.com|ctvnews.ca|dallascowboys.com|denverbroncos.com|detroitlions.com|drive.com.au|earthcam.com|easyrecipesite.com|edmontonjournal.com|egirlgames.net|elvisduran.com|enjoydressup.com|entrepreneur.com|eonline.com|escapegames.com|euronews.com|eveningecho.ie|fm98wjlb.com|foodnetwork.ca|four.co.nz|foxradio.ca|foxsportsradio.com|gamingbolt.com|ghananation.com|giantbomb.com|giants.com|globalnews.ca|globalpost.com|globaltoronto.com|globaltv.com|globaltvbc.com|globaltvcalgary.com|go.com|gorillanation.com|gosanangelo.com|hallelujah1051.com|hellobeautiful.com|heraldsun.com.au|hgtv.ca|hiphopnc.com|hot1041stl.com|hotair.com|hothiphopdetroit.com|hotspotatl.com|houstontexans.com|ibtimes.co.uk|ign.com|iheart.com|independent.ie|independentmail.com|indyhiphop.com|ipowerrichmond.com|jackfm.ca|jaguars.com|jwplatform.com|kase101.com|kcchiefs.com|kcci.com|kcra.com|kdvr.com|kfiam640.com|kgbx.com|khow.com|kiisfm.com|kiss925.com|kissnorthbay.com|kisssoo.com|kisstimmins.com|kitsapsun.com|kitv.com|kjrh.com|knoxnews.com|kogo.com|komonews.com|kshb.com|kwgn.com|kxan.com|kysdc.com|latimes.com|latinchat.com|leaderpost.com|livestream.com|local8now.com|magic96.com|majorleaguegaming.com|metacafe.com|miamidolphins.com|mix923fm.com|moneycontrol.com|montrealgazette.com|motorcyclistonline.com|moviemistakes.com|mtv.ca|myboom1029.com|mycolumbuspower.com|myezrock.com|naplesnews.com|nationalpost.com|nba.com|ndtv.com|neworleanssaints.com|news1130.com|newsinc.com|newsmax.com|newsmaxhealth.com|newsnet5.com|newsone.com|newstalk1010.com|newstalk1130.com|newyorkjets.com|nydailynews.com|nymag.com|oldschoolcincy.com|ottawacitizen.com|packers.com|panthers.com|patriots.com|pcworld.com|philadelphiaeagles.com|play.it|player.screenwavemedia.com|prowrestling.com|q92timmins.com|raaga.com|radio.com|radionowindy.com|raiders.com|rapbasement.com|redding.com|redskins.com|reporternews.com|reuters.com|rollingstone.com|rootsports.com|rottentomatoes.com|seahawks.com|sherdog.com|skynews.com.au|slice.ca|smh.com.au|sploder.com|sportsnet590.ca|sportsnet960.ca|springboardplatform.com|steelers.com|stlouisrams.com|streetfire.net|stuff.co.nz|tcpalm.com|telegraph.co.uk|theage.com.au|theaustralian.com.au|thebeatdfw.com|theboxhouston.com|thedenverchannel.com|thedrocks.com|theindychannel.com|theprovince.com|thestarphoenix.com|tide.com|timescolonist.com|timeslive.co.za|timesrecordnews.com|titansonline.com|totaljerkface.com|townhall.com|tripadvisor.ca|tripadvisor.co.uk|tripadvisor.co.za|tripadvisor.com|tripadvisor.com.au|tripadvisor.com.my|tripadvisor.com.sg|tripadvisor.ie|tripadvisor.in|turnto23.com|tvone.tv|twitch.tv|twitchy.com|usmagazine.com|vancouversun.com|vcstar.com|veetle.com|vice.com|videojug.com|viki.com|vikings.com|virginradio.ca|vzaar.com|wapt.com|washingtonpost.com|washingtontimes.com|wcpo.com|wdfn.com|weather.com|wescfm.com|wgci.com|wibw.com|wikihow.com|windsorstar.com|wiod.com|wiznation.com|wjdx.com|wkyt.com|wor710.com|wptv.com|wsj.com|wxyz.com|wyff4.com|yahoo.com|youtube.com|z100.com|zhiphopcleveland.com (easylistchina+easylist.txt: 34784) -.2mdn.net -# ||2mdn.net^$object-subrequest,third-party,domain=101cargames.com|1025thebull.com|1031iheartaustin.com|1037theq.com|1041beat.com|1053kissfm.com|1057ezrock.com|1067litefm.com|10news.com|1310news.com|247comedy.com|3news.co.nz|49ers.com|610cktb.com|680news.com|700wlw.com|850koa.com|923jackfm.com|92q.com|940winz.com|94hjy.com|99kisscountry.com|abc15.com|abc2news.com|abcactionnews.com|am1300thezone.com|ap.org|atlantafalcons.com|automobilemag.com|automotive.com|azcardinals.com|baltimoreravens.com|baynews9.com|bbc.co.uk|bbc.com|belfasttelegraph.co.uk|bengals.com|bet.com|big1059.com|bigdog1009.ca|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boom973.com|boom997.com|boomphilly.com|box10.com|brisbanetimes.com.au|buccaneers.com|buffalobills.com|bullz-eye.com|calgaryherald.com|caller.com|canada.com|capitalfm.ca|cbslocal.com|cbsnews.com|cbssports.com|channel955.com|chargers.com|chez106.com|chfi.com|chicagobears.com|chicagotribune.com|cj104.com|cjad.com|cjbk.com|clevelandbrowns.com|cnet.com|coast933.com|colts.com|commercialappeal.com|country1011.com|country1043.com|country1067.com|country600.com|courierpress.com|cp24.com|cricketcountry.com|csmonitor.com|ctvnews.ca|dallascowboys.com|denverbroncos.com|detroitlions.com|drive.com.au|earthcam.com|easyrecipesite.com|edmontonjournal.com|egirlgames.net|elvisduran.com|enjoydressup.com|entrepreneur.com|eonline.com|escapegames.com|euronews.com|eveningecho.ie|fm98wjlb.com|foodnetwork.ca|four.co.nz|foxradio.ca|foxsportsradio.com|gamingbolt.com|ghananation.com|giantbomb.com|giants.com|globalnews.ca|globalpost.com|globaltoronto.com|globaltv.com|globaltvbc.com|globaltvcalgary.com|go.com|gorillanation.com|gosanangelo.com|hallelujah1051.com|hellobeautiful.com|heraldsun.com.au|hgtv.ca|hiphopnc.com|hot1041stl.com|hotair.com|hothiphopdetroit.com|hotspotatl.com|houstontexans.com|ibtimes.co.uk|ign.com|iheart.com|independent.ie|independentmail.com|indyhiphop.com|ipowerrichmond.com|jackfm.ca|jaguars.com|jwplatform.com|kase101.com|kcchiefs.com|kcci.com|kcra.com|kdvr.com|kfiam640.com|kgbx.com|khow.com|kiisfm.com|kiss925.com|kissnorthbay.com|kisssoo.com|kisstimmins.com|kitsapsun.com|kitv.com|kjrh.com|knoxnews.com|kogo.com|komonews.com|kshb.com|kwgn.com|kxan.com|kysdc.com|latimes.com|latinchat.com|leaderpost.com|livestream.com|local8now.com|magic96.com|majorleaguegaming.com|metacafe.com|miamidolphins.com|mix923fm.com|moneycontrol.com|montrealgazette.com|motorcyclistonline.com|moviemistakes.com|mtv.ca|myboom1029.com|mycolumbuspower.com|myezrock.com|naplesnews.com|nationalpost.com|nba.com|ndtv.com|neworleanssaints.com|news1130.com|newsinc.com|newsmax.com|newsmaxhealth.com|newsnet5.com|newsone.com|newstalk1010.com|newstalk1130.com|newyorkjets.com|nydailynews.com|nymag.com|oldschoolcincy.com|ottawacitizen.com|packers.com|panthers.com|patriots.com|pcworld.com|philadelphiaeagles.com|play.it|player.screenwavemedia.com|prowrestling.com|q92timmins.com|raaga.com|radio.com|radionowindy.com|raiders.com|rapbasement.com|redding.com|redskins.com|reporternews.com|reuters.com|rollingstone.com|rootsports.com|rottentomatoes.com|seahawks.com|sherdog.com|skynews.com.au|slice.ca|smh.com.au|sploder.com|sportsnet590.ca|sportsnet960.ca|springboardplatform.com|steelers.com|stlouisrams.com|streetfire.net|stuff.co.nz|tcpalm.com|telegraph.co.uk|theage.com.au|theaustralian.com.au|thebeatdfw.com|theboxhouston.com|thedenverchannel.com|thedrocks.com|theindychannel.com|theprovince.com|thestarphoenix.com|tide.com|timescolonist.com|timeslive.co.za|timesrecordnews.com|titansonline.com|totaljerkface.com|townhall.com|tripadvisor.ca|tripadvisor.co.uk|tripadvisor.co.za|tripadvisor.com|tripadvisor.com.au|tripadvisor.com.my|tripadvisor.com.sg|tripadvisor.ie|tripadvisor.in|turnto23.com|tvone.tv|twitch.tv|twitchy.com|usmagazine.com|vancouversun.com|vcstar.com|veetle.com|vice.com|videojug.com|viki.com|vikings.com|virginradio.ca|vzaar.com|wapt.com|washingtonpost.com|washingtontimes.com|wcpo.com|wdfn.com|weather.com|wescfm.com|wgci.com|wibw.com|wikihow.com|windsorstar.com|wiod.com|wiznation.com|wjdx.com|wkyt.com|wor710.com|wptv.com|wsj.com|wxyz.com|wyff4.com|yahoo.com|youtube.com|z100.com|zhiphopcleveland.com (easylist.txt: 24299) -.2mdn.net +# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina.txt: 1159) +/(.*/)?config\. +config.*. #ab2p-block-dnt-R6 {+client-header-tagger{ab2p-block-dnt-R6} \ } -# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina+easylist.txt: 1166) -/(.*/)?images/moe +# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina.txt: 1228) +/(.*/)?Sitefiles/.* #ab2p-block-dnt-R7 {+client-header-tagger{ab2p-block-dnt-R7} \ } -# /skin/1212/bg$domain=114la.com|ylmf.com (easylistchina+easylist.txt: 1214) -/(.*/)?skin/1212/bg -# /material/vph.$domain=114la.com|ylmf.com (easylistchina+easylist.txt: 1189) -/(.*/)?material/vph\. +# ||sohucs.com^*_gif$domain=12580sky.com (easylistchina.txt: 4633) +.sohucs.com/.*_gif #ab2p-block-dnt-R8 {+client-header-tagger{ab2p-block-dnt-R8} \ } -# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina+easylist.txt: 1139) -/(.*/)?config\. -config.*. +# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina.txt: 1118) +/.*\.gif$ +.*.gif #ab2p-block-dnt-R9 {+client-header-tagger{ab2p-block-dnt-R9} \ } -# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina+easylist.txt: 1213) -/(.*/)?Sitefiles/.* +# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina.txt: 1116) +/.*\.com/x/ +.*.com/x/ #ab2p-block-dnt-R10 {+client-header-tagger{ab2p-block-dnt-R10} \ } -# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina+easylist.txt: 1094) -/.*\.gif$ -.*.gif +# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina.txt: 1279) +/(.*/)?ts\.js #ab2p-block-dnt-R11 {+client-header-tagger{ab2p-block-dnt-R11} \ } -# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina+easylist.txt: 1092) -/.*\.com/x/ -.*.com/x/ +# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina.txt: 4822) +.tinypic.com #ab2p-block-dnt-R12 {+client-header-tagger{ab2p-block-dnt-R12} \ } -# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina+easylist.txt: 1265) -/(.*/)?ts\.js +# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84fn.com|99ee1.com|99re5.com|99rr6.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|caoliuzx.com|cililian.me|fdzone.org|izzs.cc|jisuzhibo.net|links.hjav.in|liulanmi.com|sbme.me|taohuazu.tw|thzhd.net|ttdyy.tv|xinqixi.com|xxxbt.com|youb444.com|zhiboche.com (easylistchina.txt: 4589) +.sinaimg.cn #ab2p-block-dnt-R13 {+client-header-tagger{ab2p-block-dnt-R13} \ } -# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina+easylist.txt: 4844) -.tinypic.com +# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1229) +/(.*/)?skin/tb12/.* +# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1192) +/(.*/)?img/skin/.*_bg\. #ab2p-block-dnt-R14 {+client-header-tagger{ab2p-block-dnt-R14} \ } -# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84zr.com|99re.city|99re.co|99re.net|99re.org|99re6.com|99re8.com|99rehomes.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|cao1024.com|caoliuzx.com|cililian.me|fdzone.org|jisuzhibo.net|links.hjav.in|liulanmi.com|lululu.club|lululu.lu|ml.gg|sbme.me|taohuazu.tw|ttdyy.tv|xinqixi.com|xxxbt.com|zhiboche.com (easylistchina+easylist.txt: 4611) -.sinaimg.cn +# |http:$script,domain=189so.cn (easylistchina.txt: 1269) #ab2p-block-dnt-R15 {+client-header-tagger{ab2p-block-dnt-R15} \ } -# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina+easylist.txt: 1215) -/(.*/)?skin/tb12/.* -# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina+easylist.txt: 1174) -/(.*/)?img/skin/.*_bg\. +# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina.txt: 3456) +.imgmega.com/i/.*\.gif #ab2p-block-dnt-R16 {+client-header-tagger{ab2p-block-dnt-R16} \ } -# |http:$script,domain=189so.cn (easylistchina+easylist.txt: 1255) +# ||imgur.com^*.gif$domain=18p2p.com (easylistchina.txt: 3468) +.imgur.com/.*\.gif #ab2p-block-dnt-R17 {+client-header-tagger{ab2p-block-dnt-R17} \ } -# /adpost_$domain=18avday.cc|18avday.com (easylistchina+easylist.txt: 1117) -/(.*/)?adpost_ -# /adpost.$domain=18avday.cc|18avday.com (easylistchina+easylist.txt: 1116) -/(.*/)?adpost\. -adpost.*. +# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina.txt: 2388) +.cdndm.com/3/2015/ #ab2p-block-dnt-R18 {+client-header-tagger{ab2p-block-dnt-R18} \ } -# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina+easylist.txt: 3471) -.imgmega.com/i/.*\.gif +# |http://*/adblock$domain=26766.com (easylistchina.txt: 1275) +/(.*/)?adblock #ab2p-block-dnt-R19 {+client-header-tagger{ab2p-block-dnt-R19} \ } -# ||imgur.com^*.gif$domain=18p2p.com (easylistchina+easylist.txt: 3483) -.imgur.com/.*\.gif +# /the_top$domain=28188.com|28188.net (easylistchina.txt: 1235) +/(.*/)?the_top +# /banner.js$domain=28188.com|28188.net (easylistchina.txt: 1151) +/(.*/)?banner\.js +banner.js*. #ab2p-block-dnt-R20 {+client-header-tagger{ab2p-block-dnt-R20} \ } -# /images/banners/*$domain=19rus.info|1tvnet.ru|arendator.ru|biwork.ru|bvedomosti.ru|cars.ru|csmania.ru|fitsport.ru|fuzz-magazine.ru|gamegpu.ru|hd-systems.com.ua|itexpert.org.ua|karelia.ru|km.ru|mebelminsk.by|moscow-post.com|nakanune.ru|newizv.ru|ngregion.ru|poiskvps.ru|pretenziy.ru|rbc.ru|ridna.ua|rtr24.ru|ruslife.eu|sevastopol.su|skoda-club.org.ua|starkosino.ru|vjazhi.ru|vp-news.ru|vsatke.ru|zrenue.com|谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎 (advblock.txt: 5387) -/(.*/)?images/banners/.* +# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina.txt: 4564) +.sinaimg.cn/large/ #ab2p-block-dnt-R21 {+client-header-tagger{ab2p-block-dnt-R21} \ } -# ||windows.net/script/p.js$domain=1fichier.com|limetorrents.cc|primewire.ag|thepiratebay.銇裤倱銇 (easylistchina+easylist.txt: 45606) -.windows.net/script/p\.js -# ||windows.net/script/p.js$domain=1fichier.com|limetorrents.cc|primewire.ag|thepiratebay.銇裤倱銇 (easylist.txt: 35121) -.windows.net/script/p\.js +# ||qpic.cn^$domain=360-bo.com|pptiyu.com (easylistchina.txt: 4318) +.qpic.cn #ab2p-block-dnt-R22 {+client-header-tagger{ab2p-block-dnt-R22} \ } -# ||megogo.net^*?autoplay=1$domain=1kinobig.ru|hdkinomax.com|kino-dom.tv (advblock.txt: 6040) -.megogo.net/.*\?autoplay=1 +# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina.txt: 1136) +/(.*/)?ad2014\.js +ad2014.js*. #ab2p-block-dnt-R23 {+client-header-tagger{ab2p-block-dnt-R23} \ } -# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina+easylist.txt: 2402) -.cdndm.com/3/2015/ +# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina.txt: 1212) +/(.*/)?mydisplay\.php\?i= #ab2p-block-dnt-R24 {+client-header-tagger{ab2p-block-dnt-R24} \ } -# ||adfox.ru/*/getCode?$domain=1tv.ru (advblock.txt: 5452) -.adfox.ru/.*/getCode\? +# /xiaoshuo.js$domain=45zw.com (easylistchina.txt: 1252) +/(.*/)?xiaoshuo\.js +xiaoshuo.js*. #ab2p-block-dnt-R25 {+client-header-tagger{ab2p-block-dnt-R25} \ } -# .ru/*.swf|$third-party,domain=21forum.ru|afisha21.ru|cheb.ru|cheb.ws|cheboksary.ws|kugesi.ru|na-svyazi.ru|zarulem.ws (advblock.txt: 7075) -/.*\.ru/.*\.swf$ -.*.ru/.*\.swf$ +# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1180) +/(.*/)?images/888\.gif +# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1178) +/(.*/)?images/.*gamble +# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1170) +/(.*/)?gennie_b\.htm #ab2p-block-dnt-R26 {+client-header-tagger{ab2p-block-dnt-R26} \ } -# /uploads/*$object,domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7069) -/(.*/)?uploads/.* -# /img/bg/*$domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7068) -/(.*/)?img/bg/.* -# /img/*$object,domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7067) -/(.*/)?img/.* +# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina.txt: 1193) +/(.*/)?ipower\.htm +ipower.htm*. #ab2p-block-dnt-R27 {+client-header-tagger{ab2p-block-dnt-R27} \ } -# /ads/*$domain=240513.com|ozdpt.com (easylistchina+easylist.txt: 1118) -/(.*/)?ads/.* +# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina.txt: 1196) +/(.*/)?js/gTool\.js #ab2p-block-dnt-R28 {+client-header-tagger{ab2p-block-dnt-R28} \ } -# ||com/s/$script,subdocument,domain=24warez.ru|anideshka.ru|anilost.com|artero.ru|babestar.ru|best-xxx.net|bestcamsxxx.com|bestrepack.net|bigtorrent.org|bookitut.ru|demotivators.to|drochunov.net|eroox.ru|exoticvideo.net|filmasik.net|filmomax.com|fotooplata.ru|free-torrents.org|freebie.net.ua|freepublish.ru|gidporno.com|girlstop.info|guide-box.ru|hentaiz.org|huyandex.com|i-pic.ru|iarex.ru|imgmoney.ru|kino-zal.kz|kinohost.nov.ru|kinoonlain.org|kritka.net|leporno.org|leporno.ws|mega-track.org|mnogohlama.ru|moresofta.com|ontracker.ru|palevo.com|pic4you.ru|pic5you.ru|pics-money.ru|politland.ru|porn-news.org|porno-gid.info|porno-torrent.biz|porno-torrents.ru|pornoboss.tv|pornoero.com|pornogovno.ru|pornomage.net|pornorip.biz|pornorun.com|pornovizion.com|prisnilos.su|privsex.ru|promotevid.ru|raketa-tv.com|rosporn.com|ru-admin.net|seasonvar.ru|seti-ceti.ru|sibiryak-soft.org|suero.tv|tedkino.com|tyt-kinofilm.ru|uploadimagex.com|uptube.su|uvideos.ru|v-chulkahh.ru|video-magnet.com|vodkov.net|vodvore.net|vserisunki.ru|vzale.tv|wifilm.ru|x-zona.org|xxlbunny.com|xxx-russian.ru|xyu.tv (advblock.txt: 3349) +# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|downhhh.com|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina.txt: 1067) #ab2p-block-dnt-R29 {+client-header-tagger{ab2p-block-dnt-R29} \ } -# |http://*/adblock$domain=26766.com (easylistchina+easylist.txt: 1261) -/(.*/)?adblock +# ||wal8.com^$domain=52jifenbao.net (easylistchina.txt: 4974) +.wal8.com +# ||qiniudn.com^$domain=52jifenbao.net (easylistchina.txt: 4283) +.qiniudn.com #ab2p-block-dnt-R30 {+client-header-tagger{ab2p-block-dnt-R30} \ } -# /the_top$domain=28188.com|28188.net (easylistchina+easylist.txt: 1221) -/(.*/)?the_top -# /banner.js$domain=28188.com|28188.net (easylistchina+easylist.txt: 1131) -/(.*/)?banner\.js -banner.js*. +# ||tietuku.com^$domain=5ydj.com|99ee1.com|99re5.com|99rr6.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina.txt: 4793) +.tietuku.com #ab2p-block-dnt-R31 {+client-header-tagger{ab2p-block-dnt-R31} \ } -# |http:$subdocument,third-party,domain=2ad.in|ad2links.com|adf.ly|adfoc.us|adv.li|adyou.me|allmyvideos.net|ay.gy|fuestfka.com|imgmega.com|j.gs|linkbucksmedia.com|mortastica.com|prodsetter-in.com|q.gs|sh.st|shr77.com|sonomerit.com|ssovgoxbvppy.net|thevideo.me|twer.info|u.bb|vidspot.net (easylistchina+easylist.txt: 41919) -# |http:$subdocument,third-party,domain=2ad.in|ad2links.com|adf.ly|adfoc.us|adv.li|adyou.me|allmyvideos.net|ay.gy|fuestfka.com|imgmega.com|j.gs|linkbucksmedia.com|mortastica.com|prodsetter-in.com|q.gs|sh.st|shr77.com|sonomerit.com|ssovgoxbvppy.net|thevideo.me|twer.info|u.bb|vidspot.net (easylist.txt: 31434) +# ||media.*.gif$domain=6668.se (easylistchina.txt: 3913) +.media.*./.*\.gif +.media.*.gif*. #ab2p-block-dnt-R32 {+client-header-tagger{ab2p-block-dnt-R32} \ } -# |https:$subdocument,third-party,domain=2ad.in|adf.ly|adfoc.us|adjet.biz|adv.li|ay.gy|j.gs|linkbucksmedia.com|q.gs|sh.st|tvbximak.com|u.bb (easylistchina+easylist.txt: 41924) -# |https:$subdocument,third-party,domain=2ad.in|adf.ly|adfoc.us|adjet.biz|adv.li|ay.gy|j.gs|linkbucksmedia.com|q.gs|sh.st|tvbximak.com|u.bb (easylist.txt: 31439) +# /js/top.js$domain=8comic.com|comicvip.com (easylistchina.txt: 1198) +/(.*/)?js/top\.js #ab2p-block-dnt-R33 {+client-header-tagger{ab2p-block-dnt-R33} \ } -# ||softexter.com^$popup,domain=2drive.net (easylistchina+easylist.txt: 46183) -.softexter.com -# ||softexter.com^$popup,domain=2drive.net (easylist.txt: 35698) -.softexter.com +# ||meimb.com^$domain=94as.com (easylistchina.txt: 3919) +.meimb.com #ab2p-block-dnt-R34 {+client-header-tagger{ab2p-block-dnt-R34} \ } -# ||xplian.com^$domain=2mm.tv (easylistchina+easylist.txt: 5197) -.xplian.com +# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1278) +/(.*/)?t\.js +# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1277) +/(.*/)?p +# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1201) +/(.*/)?jsc/stat\.js +# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1200) +/(.*/)?jsc/Copy\.js +# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1199) +/(.*/)?jsc/book_ #ab2p-block-dnt-R35 {+client-header-tagger{ab2p-block-dnt-R35} \ } -# ||href.li^$popup,domain=300mblink.com (easylistchina+easylist.txt: 46153) -.href.li -# ||href.li^$popup,domain=300mblink.com (easylist.txt: 35668) -.href.li +# ||chuantu.biz^$domain=99ee1.com|99re5.com|99rr6.com (easylistchina.txt: 2461) +.chuantu.biz #ab2p-block-dnt-R36 {+client-header-tagger{ab2p-block-dnt-R36} \ } -# ||qpic.cn^$domain=360-bo.com|54xr.com|pptiyu.com|xrba.net (easylistchina+easylist.txt: 4328) -.qpic.cn +# |http:$image,third-party,domain=99files.net (easylistchina.txt: 1268) #ab2p-block-dnt-R37 {+client-header-tagger{ab2p-block-dnt-R37} \ } -# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina+easylist.txt: 4576) -.sinaimg.cn/large/ +# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina.txt: 1104) +.taobao.com #ab2p-block-dnt-R38 {+client-header-tagger{ab2p-block-dnt-R38} \ } -# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina+easylist.txt: 1112) -/(.*/)?ad2014\.js -ad2014.js*. +# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina.txt: 4572) +.sinaimg.cn/large/ec76730dgw #ab2p-block-dnt-R39 {+client-header-tagger{ab2p-block-dnt-R39} \ } -# /smw.js$script,domain=3dnews.ru (advblock.txt: 5396) -/(.*/)?smw\.js -smw.js*. +# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina.txt: 1281) +t.cn #ab2p-block-dnt-R40 {+client-header-tagger{ab2p-block-dnt-R40} \ } -# ||doubleclick.net^$third-party,domain=3news.co.nz|92q.com|abc-7.com|addictinggames.com|allbusiness.com|bizjournals.com|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boomphilly.com|break.com|cbc.ca|cbs19.tv|cbs3springfield.com|cbslocal.com|complex.com|dailymail.co.uk|darkhorizons.com|doubleviking.com|euronews.com|extratv.com|fandango.com|fox19.com|fox5vegas.com|gorillanation.com|hawaiinewsnow.com|hellobeautiful.com|hiphopnc.com|hot1041stl.com|hothiphopdetroit.com|hotspotatl.com|hulu.com|imdb.com|indiatimes.com|indyhiphop.com|ipowerrichmond.com|joblo.com|kcra.com|kctv5.com|ketv.com|koat.com|koco.com|kolotv.com|kpho.com|kptv.com|ksat.com|ksbw.com|ksfy.com|ksl.com|kypost.com|kysdc.com|live5news.com|livestation.com|livestream.com|metro.us|metronews.ca|miamiherald.com|my9nj.com|myboom1029.com|mycolumbuspower.com|nbcrightnow.com|neatorama.com|necn.com|neopets.com|news.com.au|news4jax.com|newsone.com|nintendoeverything.com|oldschoolcincy.com|pagesuite-professional.co.uk|pandora.com|play.it|player.theplatform.com|radio.com|radionowindy.com|rottentomatoes.com|sbsun.com|shacknews.com|sk-gaming.com|ted.com|thebeatdfw.com|theboxhouston.com|theglobeandmail.com|timesnow.tv|tv2.no|twitch.tv|ustream.tv|wapt.com|washingtonpost.com|wate.com|wbaltv.com|wcvb.com|wdrb.com|wdsu.com|wflx.com|wfmz.com|wfsb.com|wgal.com|whdh.com|wired.com|wisn.com|wiznation.com|wlky.com|wlns.com|wlwt.com|wmur.com|wnem.com|wowt.com|wral.com|wsj.com|wsmv.com|wsvn.com|wtae.com|wthr.com|wxii12.com|wyff4.com|yahoo.com|youtube-nocookie.com|youtube.com|zhiphopcleveland.com (easylistchina+easylist.txt: 36068) -.doubleclick.net -# ||doubleclick.net^$third-party,domain=3news.co.nz|92q.com|abc-7.com|addictinggames.com|allbusiness.com|bizjournals.com|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boomphilly.com|break.com|cbc.ca|cbs19.tv|cbs3springfield.com|cbslocal.com|complex.com|dailymail.co.uk|darkhorizons.com|doubleviking.com|euronews.com|extratv.com|fandango.com|fox19.com|fox5vegas.com|gorillanation.com|hawaiinewsnow.com|hellobeautiful.com|hiphopnc.com|hot1041stl.com|hothiphopdetroit.com|hotspotatl.com|hulu.com|imdb.com|indiatimes.com|indyhiphop.com|ipowerrichmond.com|joblo.com|kcra.com|kctv5.com|ketv.com|koat.com|koco.com|kolotv.com|kpho.com|kptv.com|ksat.com|ksbw.com|ksfy.com|ksl.com|kypost.com|kysdc.com|live5news.com|livestation.com|livestream.com|metro.us|metronews.ca|miamiherald.com|my9nj.com|myboom1029.com|mycolumbuspower.com|nbcrightnow.com|neatorama.com|necn.com|neopets.com|news.com.au|news4jax.com|newsone.com|nintendoeverything.com|oldschoolcincy.com|pagesuite-professional.co.uk|pandora.com|play.it|player.theplatform.com|radio.com|radionowindy.com|rottentomatoes.com|sbsun.com|shacknews.com|sk-gaming.com|ted.com|thebeatdfw.com|theboxhouston.com|theglobeandmail.com|timesnow.tv|tv2.no|twitch.tv|ustream.tv|wapt.com|washingtonpost.com|wate.com|wbaltv.com|wcvb.com|wdrb.com|wdsu.com|wflx.com|wfmz.com|wfsb.com|wgal.com|whdh.com|wired.com|wisn.com|wiznation.com|wlky.com|wlns.com|wlwt.com|wmur.com|wnem.com|wowt.com|wral.com|wsj.com|wsmv.com|wsvn.com|wtae.com|wthr.com|wxii12.com|wyff4.com|yahoo.com|youtube-nocookie.com|youtube.com|zhiphopcleveland.com (easylist.txt: 25583) -.doubleclick.net +# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina.txt: 1061) +/(.*/)?\? #ab2p-block-dnt-R41 {+client-header-tagger{ab2p-block-dnt-R41} \ } -# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina+easylist.txt: 1197) -/(.*/)?mydisplay\.php\?i= +# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1124) +/(.*/)?2015new\.js +2015new.js*. #ab2p-block-dnt-R42 {+client-header-tagger{ab2p-block-dnt-R42} \ } -# /xiaoshuo.js$domain=45zw.com (easylistchina+easylist.txt: 1238) -/(.*/)?xiaoshuo\.js -xiaoshuo.js*. +# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1273) +/(.*/)?83/ #ab2p-block-dnt-R43 {+client-header-tagger{ab2p-block-dnt-R43} \ } -# ||schenkelklopfer.org^$popup,domain=4fuckr.com (easylistchina+easylist.txt: 46180) -.schenkelklopfer.org -# ||jokertraffic.com^$popup,domain=4fuckr.com (easylistchina+easylist.txt: 46160) -.jokertraffic.com -# ||schenkelklopfer.org^$domain=4fuckr.com (easylistchina+easylist.txt: 44676) -.schenkelklopfer.org -# ||jokertraffic.com^$domain=4fuckr.com (easylistchina+easylist.txt: 43610) -.jokertraffic.com -# ||schenkelklopfer.org^$popup,domain=4fuckr.com (easylist.txt: 35695) -.schenkelklopfer.org -# ||jokertraffic.com^$popup,domain=4fuckr.com (easylist.txt: 35675) -.jokertraffic.com -# ||schenkelklopfer.org^$domain=4fuckr.com (easylist.txt: 34191) -.schenkelklopfer.org -# ||jokertraffic.com^$domain=4fuckr.com (easylist.txt: 33125) -.jokertraffic.com +# ||bp.blogspot.com^$domain=avmimi.com (easylistchina.txt: 2297) +.bp.blogspot.com #ab2p-block-dnt-R44 {+client-header-tagger{ab2p-block-dnt-R44} \ } -# ||youtube.com/embed/$domain=4put.ru (advblock.txt: 6621) -.youtube.com/embed/ +# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina.txt: 4740) +.taobaocdn.com/imgextra/ #ab2p-block-dnt-R45 {+client-header-tagger{ab2p-block-dnt-R45} \ } -# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1162) -/(.*/)?images/888\.gif -# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1160) -/(.*/)?images/.*gamble -# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1152) -/(.*/)?gennie_b\.htm +# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina.txt: 4912) +.upload.chinaz.com/20.*\.gif #ab2p-block-dnt-R46 {+client-header-tagger{ab2p-block-dnt-R46} \ } -# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1175) -/(.*/)?ipower\.htm -ipower.htm*. +# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina.txt: 3428) +.img.china.alibaba.com/img/ibank/ #ab2p-block-dnt-R47 {+client-header-tagger{ab2p-block-dnt-R47} \ } -# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina+easylist.txt: 1179) -/(.*/)?js/gTool\.js +# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina.txt: 1174) +/(.*/)?house/images/.* #ab2p-block-dnt-R48 {+client-header-tagger{ab2p-block-dnt-R48} \ } -# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina+easylist.txt: 1044) +# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina.txt: 1280) +rc.sz.zj.cn/.*\.swf #ab2p-block-dnt-R49 {+client-header-tagger{ab2p-block-dnt-R49} \ } -# ||wal8.com^$domain=52jifenbao.net (easylistchina+easylist.txt: 4997) -.wal8.com -# ||qiniudn.com^$domain=52jifenbao.net (easylistchina+easylist.txt: 4291) -.qiniudn.com +# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina.txt: 3954) +.momoshop.com.tw/league/ #ab2p-block-dnt-R50 {+client-header-tagger{ab2p-block-dnt-R50} \ } -# ||tietuku.com^$domain=5ydj.com|99re.city|99re.net|99re6.com|99re8.com|99rehomes.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina+easylist.txt: 4816) -.tietuku.com +# ||acg.tv^$object,domain=bilibili.com (easylistchina.txt: 1979) +.acg.tv #ab2p-block-dnt-R51 {+client-header-tagger{ab2p-block-dnt-R51} \ } -# ||netdna-cdn.com^*-Background-1280x10241.$domain=7daysindubai.com (easylistchina+easylist.txt: 40678) -.netdna-cdn.com/.*-Background-1280x10241\. -# ||netdna-cdn.com/wp-content/plugins/background-manager/$domain=7daysindubai.com (easylistchina+easylist.txt: 40676) -.netdna-cdn.com/wp-content/plugins/background-manager/ -# ||netdna-cdn.com^*-Background-1280x10241.$domain=7daysindubai.com (easylist.txt: 30193) -.netdna-cdn.com/.*-Background-1280x10241\. -# ||netdna-cdn.com/wp-content/plugins/background-manager/$domain=7daysindubai.com (easylist.txt: 30191) -.netdna-cdn.com/wp-content/plugins/background-manager/ +# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina.txt: 3149) +.hdslb.com/u_user/ #ab2p-block-dnt-R52 {+client-header-tagger{ab2p-block-dnt-R52} \ } -# /float.js$domain=8888eee.com|xav4.com|xav5.com|xav6.com|xav7.com|xav8.com|xav9.com|xiaav.cc|xiaav.me (easylistchina+easylist.txt: 1146) -/(.*/)?float\.js -float.js*. -# /attachment/Mon_$domain=8888eee.com|xav4.com|xav5.com|xav6.com|xav7.com|xav8.com|xav9.com|xiaav.cc|xiaav.me (easylistchina+easylist.txt: 1128) -/(.*/)?attachment/Mon_ +# /images/tuangou$domain=bjxxw.com (easylistchina.txt: 1185) +/(.*/)?images/tuangou #ab2p-block-dnt-R53 {+client-header-tagger{ab2p-block-dnt-R53} \ } -# /js/top.js$domain=8comic.com|comicvip.com (easylistchina+easylist.txt: 1182) -/(.*/)?js/top\.js +# ||85rere.com^$popup,domain=btbbt.cc (easylistchina.txt: 1071) +.85rere.com #ab2p-block-dnt-R54 {+client-header-tagger{ab2p-block-dnt-R54} \ } -# /js/alls_$domain=911-sss.com|911semm.com|911semm.info|911seqq.info|913sss.com|kuaisou222.com|ylgbt.info|ylgxxbt.com (easylistchina+easylist.txt: 1178) -/(.*/)?js/alls_ +# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina.txt: 1234) +/(.*/)?tb780x90\.gif +tb780x90.gif*. #ab2p-block-dnt-R55 {+client-header-tagger{ab2p-block-dnt-R55} \ } -# ||meimb.com^$domain=94as.com (easylistchina+easylist.txt: 3928) -.meimb.com +# /d125.260.gif$domain=btup.net (easylistchina.txt: 1161) +/(.*/)?d125\.260\.gif +d125.260.gif*. #ab2p-block-dnt-R56 {+client-header-tagger{ab2p-block-dnt-R56} \ } -# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1264) -/(.*/)?t\.js -# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1263) -/(.*/)?p -# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1185) -/(.*/)?jsc/stat\.js -# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1184) -/(.*/)?jsc/Copy\.js -# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1183) -/(.*/)?jsc/book_ +# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina.txt: 1168) +/(.*/)?gamepic/.* #ab2p-block-dnt-R57 {+client-header-tagger{ab2p-block-dnt-R57} \ } -# |http:$image,third-party,domain=99files.net (easylistchina+easylist.txt: 1254) +# ||duapp.com^$domain=ccav1.com (easylistchina.txt: 2726) +.duapp.com #ab2p-block-dnt-R58 {+client-header-tagger{ab2p-block-dnt-R58} \ } -# ||tumblr.com^$domain=99re.co|99re.org (easylistchina+easylist.txt: 4878) -.tumblr.com +# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina.txt: 1270) #ab2p-block-dnt-R59 {+client-header-tagger{ab2p-block-dnt-R59} \ } -# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina+easylist.txt: 1079) -.taobao.com +# |http://*/bn/$domain=chimatong.com (easylistchina.txt: 1276) +/(.*/)?bn/ #ab2p-block-dnt-R60 {+client-header-tagger{ab2p-block-dnt-R60} \ } -# /somebody-$image,domain=aallenbwest.com|activistpost.com|addictinginfo.org|alfonzorachel.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45938) -/(.*/)?somebody- -somebody-*. -# /somebody-$image,domain=aallenbwest.com|activistpost.com|addictinginfo.org|alfonzorachel.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35453) -/(.*/)?somebody- -somebody-*. +# /sda/*$domain=chineseinla.com (easylistchina.txt: 1225) +/(.*/)?sda/.* +# /images/content/1436/*$domain=chineseinla.com (easylistchina.txt: 1183) +/(.*/)?images/content/1436/.* #ab2p-block-dnt-R61 {+client-header-tagger{ab2p-block-dnt-R61} \ } -# ||edgedatg.com^*/AdCountdownPlugin.swf$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 42852) -.edgedatg.com/.*/AdCountdownPlugin\.swf -# ||abc.com/abcvideo/*/mp4/*_Promo_$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 42014) -.abc.com/abcvideo/.*/mp4/.*_Promo_ -# ||edgedatg.com^*/AdCountdownPlugin.swf$object-subrequest,domain=abc.go.com (easylist.txt: 32367) -.edgedatg.com/.*/AdCountdownPlugin\.swf -# ||abc.com/abcvideo/*/mp4/*_Promo_$object-subrequest,domain=abc.go.com (easylist.txt: 31529) -.abc.com/abcvideo/.*/mp4/.*_Promo_ +# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina.txt: 5276) +.youtube.com/embed/.*&autoplay=1& #ab2p-block-dnt-R62 {+client-header-tagger{ab2p-block-dnt-R62} \ } -# ||doubleclick.net/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easylistchina+easylist.txt: 35999) -.doubleclick.net/crossdomain\.xml -# ||doubleclick.net/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easylist.txt: 25514) -.doubleclick.net/crossdomain\.xml +# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina.txt: 4743) +.taobaocdn.com #ab2p-block-dnt-R63 {+client-header-tagger{ab2p-block-dnt-R63} \ } -# ||rackcdn.com/*Rails_$domain=accesshollywood.com (easylistchina+easylist.txt: 44520) -.rackcdn.com/.*Rails_ -# ||rackcdn.com/*Rails_$domain=accesshollywood.com (easylist.txt: 34035) -.rackcdn.com/.*Rails_ +# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina.txt: 4864) +.tw.partner.buy.yahoo.com #ab2p-block-dnt-R64 {+client-header-tagger{ab2p-block-dnt-R64} \ } -# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina+easylist.txt: 4592) -.sinaimg.cn/large/ec76730dgw +# /assets/images/banner$domain=cpbl.com.tw (easylistchina.txt: 1144) +/(.*/)?assets/images/banner #ab2p-block-dnt-R65 {+client-header-tagger{ab2p-block-dnt-R65} \ } -# ||googleusercontent.com^*/s468/$domain=activistpost.com (easylistchina+easylist.txt: 43256) -.googleusercontent.com/.*/s468/ -# ||googleusercontent.com^*/s220/$domain=activistpost.com (easylistchina+easylist.txt: 43255) -.googleusercontent.com/.*/s220/ -# ||googleusercontent.com^*/s468/$domain=activistpost.com (easylist.txt: 32771) -.googleusercontent.com/.*/s468/ -# ||googleusercontent.com^*/s220/$domain=activistpost.com (easylist.txt: 32770) -.googleusercontent.com/.*/s220/ +# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina.txt: 1155) +/(.*/)?biz_icon/.* #ab2p-block-dnt-R66 {+client-header-tagger{ab2p-block-dnt-R66} \ } -# |https://$script,third-party,domain=activistpost.com|addictinginfo.org|ailyheadlines.net|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46063) -# |https://$script,third-party,domain=activistpost.com|addictinginfo.org|ailyheadlines.net|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35578) +# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina.txt: 4366) +.rakuten-static.com +# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina.txt: 4184) +.pic.pimg.tw/cwyuni/.*\.gif\?v= #ab2p-block-dnt-R67 {+client-header-tagger{ab2p-block-dnt-R67} \ } -# |http://$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46061) -# |http://$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35576) +# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina.txt: 4577) +.sinaimg.cn/mw1024/6283e.*\.jpg +# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina.txt: 4001) +.mygeek.cn/pic_ #ab2p-block-dnt-R68 {+client-header-tagger{ab2p-block-dnt-R68} \ } -# /mobius-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45936) -/(.*/)?mobius- -mobius-*. -# /bismuth/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45932) -/(.*/)?bismuth/.* -# /mobius-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35451) -/(.*/)?mobius- -mobius-*. -# /bismuth/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35447) -/(.*/)?bismuth/.* +# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina.txt: 1285) +.005.tv/data/attachment/forum/.*\.gif #ab2p-block-dnt-R69 {+client-header-tagger{ab2p-block-dnt-R69} \ } -# /rubidium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45937) -/(.*/)?rubidium/.* -# /hallon-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45935) -/(.*/)?hallon- -hallon-*. -# /farrel*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45934) -/(.*/)?farrel.*\. -farrel*./.*\. -farrel*.*. -# /caesium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45933) -/(.*/)?caesium/.* -# /authenv*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45931) -/(.*/)?authenv.*\. -authenv*./.*\. -authenv*.*. -# /astatine/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45930) -/(.*/)?astatine/.* -# /rubidium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35452) -/(.*/)?rubidium/.* -# /hallon-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35450) -/(.*/)?hallon- -hallon-*. -# /farrel*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35449) -/(.*/)?farrel.*\. -farrel*./.*\. -farrel*.*. -# /caesium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35448) -/(.*/)?caesium/.* -# /authenv*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35446) -/(.*/)?authenv.*\. -authenv*./.*\. -authenv*.*. -# /astatine/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35445) -/(.*/)?astatine/.* +# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina.txt: 1141) +/(.*/)?aeiou/.* #ab2p-block-dnt-R70 {+client-header-tagger{ab2p-block-dnt-R70} \ } -# |https://$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativeintel.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|sportsmole.co.uk|stevedeace.com|techtimes.com|unilad.co.uk|weaponsmedia.com (easylistchina+easylist.txt: 46062) -# |https://$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativeintel.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|sportsmole.co.uk|stevedeace.com|techtimes.com|unilad.co.uk|weaponsmedia.com (easylist.txt: 35577) +# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina.txt: 1250) +/(.*/)?wxhfm\.html +wxhfm.html*. +# /wxh.js$domain=dm5.com|dm5.hk (easylistchina.txt: 1249) +/(.*/)?wxh\.js +wxh.js*. #ab2p-block-dnt-R71 {+client-header-tagger{ab2p-block-dnt-R71} \ } -# ||bit.ly^$subdocument,domain=adf.ly (easylistchina+easylist.txt: 39854) -.bit.ly -# ||adf.ly/?$subdocument,~third-party,domain=adf.ly (easylistchina+easylist.txt: 39669) -.adf.ly/\? -# ||bit.ly^$subdocument,domain=adf.ly (easylist.txt: 29369) -.bit.ly -# ||adf.ly/?$subdocument,~third-party,domain=adf.ly (easylist.txt: 29184) -.adf.ly/\? +# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina.txt: 4742) +.taobaocdn.com #ab2p-block-dnt-R72 {+client-header-tagger{ab2p-block-dnt-R72} \ } -# /3market.php?$domain=adf.ly|j.gs|q.gs|u.bb (easylistchina+easylist.txt: 41903) -/(.*/)?3market\.php\? -# /3market.php?$domain=adf.ly|j.gs|q.gs|u.bb (easylist.txt: 31418) -/(.*/)?3market\.php\? +# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina.txt: 1152) +/(.*/)?banner/.* #ab2p-block-dnt-R73 {+client-header-tagger{ab2p-block-dnt-R73} \ } -# /market.php?$domain=adf.ly|u.bb (easylistchina+easylist.txt: 41912) -/(.*/)?market\.php\? -# /market.php?$domain=adf.ly|u.bb (easylist.txt: 31427) -/(.*/)?market\.php\? +# ||1.baidu.com^$popup,domain=douban.com (easylistchina.txt: 1069) +.1.baidu.com #ab2p-block-dnt-R74 {+client-header-tagger{ab2p-block-dnt-R74} \ } -# ||newsgate.pw^$popup,domain=adjet.biz (easylistchina+easylist.txt: 46169) -.newsgate.pw -# ||newsgate.pw^$popup,domain=adjet.biz (easylist.txt: 35684) -.newsgate.pw +# /static/media/curl.swf$domain=duba.com (easylistchina.txt: 1231) +/(.*/)?static/media/curl\.swf #ab2p-block-dnt-R75 {+client-header-tagger{ab2p-block-dnt-R75} \ } -# ||rmbn.net^$third-party,domain=adultmult.tv (advblock.txt: 6650) -.rmbn.net -# ||com^$script,domain=adultmult.tv (advblock.txt: 6645) -# ||adultmult.tv^$object,stylesheet,domain=adultmult.tv (advblock.txt: 6643) -.adultmult.tv +# |http:$domain=e.70e.com|e701.net (easylistchina.txt: 1267) #ab2p-block-dnt-R76 {+client-header-tagger{ab2p-block-dnt-R76} \ } -# ||dumedia.ru^$domain=adultmult.tv|moonwalk.cc (advblock.txt: 6646) -.dumedia.ru -# ||am15.net^$third-party,domain=adultmult.tv|moonwalk.cc (advblock.txt: 6644) -.am15.net +# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina.txt: 1164) +/(.*/)?EZ-YAHOO/.* #ab2p-block-dnt-R77 {+client-header-tagger{ab2p-block-dnt-R77} \ } -# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina+easylist.txt: 1267) -t.cn +# /pagead/*$domain=fankudo.com (easylistchina.txt: 1221) +/(.*/)?pagead/.* #ab2p-block-dnt-R78 {+client-header-tagger{ab2p-block-dnt-R78} \ } -# /http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+/$script,third-party,domain=affluentinvestor.com|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|allthumbsgaming.com|barbwire.com|bighealthreport.com|bulletsfirst.net|cheatsheet.com|clashdaily.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|creationrevolution.com|dailysurge.com|dccrimestories.com|drginaloudon.com|drhotze.com|eaglerising.com|freedomoutpost.com|godfatherpolitics.com|instigatornews.com|joeforamerica.com|libertyalliance.com|libertymafia.com|libertyunyielding.com|mediafire.com|menrec.com|nickadamsinamerica.com|patriot.tv|patriotoutdoornews.com|photobucket.com|pitgrit.com|politicaloutcast.com|primewire.ag|promptfile.com|quinhillyer.com|shark-tank.com|stevedeace.com|themattwalshblog.com|therealside.com|tinypic.com|victoriajackson.com|zionica.com (easylistchina+easylist.txt: 41911) -/(.*/)?http://\[a-zA-Z0-9-\]\+\\\.\[a-z\]\+\\/\..*\[a-zA-Z0-9\]\+/ -/http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+ -# /http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+/$script,third-party,domain=affluentinvestor.com|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|allthumbsgaming.com|barbwire.com|bighealthreport.com|bulletsfirst.net|cheatsheet.com|clashdaily.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|creationrevolution.com|dailysurge.com|dccrimestories.com|drginaloudon.com|drhotze.com|eaglerising.com|freedomoutpost.com|godfatherpolitics.com|instigatornews.com|joeforamerica.com|libertyalliance.com|libertymafia.com|libertyunyielding.com|mediafire.com|menrec.com|nickadamsinamerica.com|patriot.tv|patriotoutdoornews.com|photobucket.com|pitgrit.com|politicaloutcast.com|primewire.ag|promptfile.com|quinhillyer.com|shark-tank.com|stevedeace.com|themattwalshblog.com|therealside.com|tinypic.com|victoriajackson.com|zionica.com (easylist.txt: 31426) -/(.*/)?http://\[a-zA-Z0-9-\]\+\\\.\[a-z\]\+\\/\..*\[a-zA-Z0-9\]\+/ -/http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+ +# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina.txt: 1160) +/(.*/)?cooperation/.* #ab2p-block-dnt-R79 {+client-header-tagger{ab2p-block-dnt-R79} \ } -# /images/banners_$domain=agronews.ru|agrotv.ru (advblock.txt: 5388) -/(.*/)?images/banners_ +# ||k.youku.com^$domain=flvcd.com (easylistchina.txt: 3690) +.k.youku.com #ab2p-block-dnt-R80 {+client-header-tagger{ab2p-block-dnt-R80} \ } -# ||cloudfront.net/ccmtblv2.png$domain=aim.org (easylistchina+easylist.txt: 42549) -.cloudfront.net/ccmtblv2\.png -# ||cloudfront.net/ccmtblv2.png$domain=aim.org (easylist.txt: 32064) -.cloudfront.net/ccmtblv2\.png +# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina.txt: 2474) +.cj.qidian.com/Picture/ #ab2p-block-dnt-R81 {+client-header-tagger{ab2p-block-dnt-R81} \ } -# ||akiba.ookami-cdn.net/images/subby.jpg$domain=akiba-online.com (easylistchina+easylist.txt: 42111) -.akiba.ookami-cdn.net/images/subby\.jpg -# ||akiba.ookami-cdn.net/images/subby.jpg$domain=akiba-online.com (easylist.txt: 31626) -.akiba.ookami-cdn.net/images/subby\.jpg +# /jquery.$domain=game.macx.cn (easylistchina.txt: 1194) +/(.*/)?jquery\. +jquery.*. #ab2p-block-dnt-R82 {+client-header-tagger{ab2p-block-dnt-R82} \ } -# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina+easylist.txt: 1038) -/(.*/)?\? +# ||8kele.com^$~collapse,domain=gamer.com.tw (easylistchina.txt: 1887) +.8kele.com +# /web/ad/*$domain=gamer.com.tw (easylistchina.txt: 1243) +/(.*/)?web/ad/.* +# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1169) +/(.*/)?gamer/.* +# /baha/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1150) +/(.*/)?baha/.* #ab2p-block-dnt-R83 {+client-header-tagger{ab2p-block-dnt-R83} \ } -# |http:$popup,third-party,domain=allmyvideos.net|embed.videoweed.es|extreme-board.com|fastspics.net|filepost.com|filmovizija.com|go4up.com|imagebam.com|imagefruit.com|imageporter.com|imgbox.com|imgmade.com|imgshots.com|imgsin.com|imgspice.com|load.to|mofunzone.com|openload.co|promptfile.com|putlocker.is|thevideo.me|twer.info|vidspot.net|watchcartoononline.com|xtshare.com|youwatch.org (easylistchina+easylist.txt: 46104) -# |http:$popup,third-party,domain=allmyvideos.net|embed.videoweed.es|extreme-board.com|fastspics.net|filepost.com|filmovizija.com|go4up.com|imagebam.com|imagefruit.com|imageporter.com|imgbox.com|imgmade.com|imgshots.com|imgsin.com|imgspice.com|load.to|mofunzone.com|openload.co|promptfile.com|putlocker.is|thevideo.me|twer.info|vidspot.net|watchcartoononline.com|xtshare.com|youwatch.org (easylist.txt: 35619) +# /marketing/cover/*$domain=geekpark.net (easylistchina.txt: 1204) +/(.*/)?marketing/cover/.* #ab2p-block-dnt-R84 {+client-header-tagger{ab2p-block-dnt-R84} \ } -# .info^$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|royalvids.eu|tvmuse.com|tvmuse.eu|vidspot.net|vidtomp3.com (easylistchina+easylist.txt: 41899) -/.*\.info[^\w%.-] -.*.info -# .info^$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|royalvids.eu|tvmuse.com|tvmuse.eu|vidspot.net|vidtomp3.com (easylist.txt: 31414) -/.*\.info[^\w%.-] -.*.info +# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina.txt: 3475) +.info.lm.tv.sohu.com #ab2p-block-dnt-R85 {+client-header-tagger{ab2p-block-dnt-R85} \ } -# ^guid=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylistchina+easylist.txt: 41918) -/(.*[^\w%.-])?guid= -# ?random=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylistchina+easylist.txt: 41917) -/.*\?random= -# ^guid=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylist.txt: 31433) -/(.*[^\w%.-])?guid= -# ?random=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylist.txt: 31432) -/.*\?random= +# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina.txt: 4835) +.top.taobao.com/interface_v2\.php\? #ab2p-block-dnt-R86 {+client-header-tagger{ab2p-block-dnt-R86} \ } -# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina+easylist.txt: 1100) -/(.*/)?2015new\.js -2015new.js*. +# /bao/uploaded/*$domain=hacg.lol (easylistchina.txt: 1154) +/(.*/)?bao/uploaded/.* +# ||taobao.com$popup,domain=hacg.lol (easylistchina.txt: 1103) +.taobao.com*. #ab2p-block-dnt-R87 {+client-header-tagger{ab2p-block-dnt-R87} \ } -# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina+easylist.txt: 1259) -/(.*/)?83/ +# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina.txt: 1181) +/(.*/)?Images/ak47/.* #ab2p-block-dnt-R88 {+client-header-tagger{ab2p-block-dnt-R88} \ } -# ||titanbrowser.com^$popup,domain=amaderforum.com (easylistchina+easylist.txt: 46193) -.titanbrowser.com -# ||findgrid.com^$popup,domain=amaderforum.com (easylistchina+easylist.txt: 46131) -.findgrid.com -# ||titanbrowser.com^$popup,domain=amaderforum.com (easylist.txt: 35708) -.titanbrowser.com -# ||findgrid.com^$popup,domain=amaderforum.com (easylist.txt: 35646) -.findgrid.com +# ||51img1.com^$domain=hdscg.com (easylistchina.txt: 1664) +.51img1.com #ab2p-block-dnt-R89 {+client-header-tagger{ab2p-block-dnt-R89} \ } -# ||goo.gl^$popup,domain=amaderforum.com|jumbofile.net|videomega.tv (easylistchina+easylist.txt: 46146) -.goo.gl -# ||goo.gl^$popup,domain=amaderforum.com|jumbofile.net|videomega.tv (easylist.txt: 35661) -.goo.gl +# ||xldytt.com^$popup,domain=henbt.com (easylistchina.txt: 1107) +.xldytt.com #ab2p-block-dnt-R90 {+client-header-tagger{ab2p-block-dnt-R90} \ } -# /images/branding/*$domain=amovies.tv|cybergame.tv|dfiles.ru|filmz.ru (advblock.txt: 5390) -/(.*/)?images/branding/.* +# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina.txt: 4431) +.s.yimg.com/ja/ap/ #ab2p-block-dnt-R91 {+client-header-tagger{ab2p-block-dnt-R91} \ } -# /images/brand/*$domain=amuzic.ru|emuzic.ru|pikabu.ru (advblock.txt: 5389) -/(.*/)?images/brand/.* +# /nfs/ad/*$domain=hkbici.com (easylistchina.txt: 1216) +/(.*/)?nfs/ad/.* +# /attachment/ad/*$domain=hkbici.com (easylistchina.txt: 1147) +/(.*/)?attachment/ad/.* #ab2p-block-dnt-R92 {+client-header-tagger{ab2p-block-dnt-R92} \ } -# ||spendcrazy.net^$popup,third-party,domain=animegalaxy.net|animenova.tv|animetoon.tv|animewow.eu|gogoanime.com|goodanime.eu|gooddrama.net|toonget.com (easylistchina+easylist.txt: 46185) -.spendcrazy.net -# ||spendcrazy.net^$popup,third-party,domain=animegalaxy.net|animenova.tv|animetoon.tv|animewow.eu|gogoanime.com|goodanime.eu|gooddrama.net|toonget.com (easylist.txt: 35700) -.spendcrazy.net +# ||megalife.com.hk^$domain=hkgolden.com (easylistchina.txt: 3916) +.megalife.com.hk #ab2p-block-dnt-R93 {+client-header-tagger{ab2p-block-dnt-R93} \ } -# ||adcdn.tv^$domain=anistar.ru (advblock.txt: 5451) -.adcdn.tv +# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk (easylistchina.txt: 1271) #ab2p-block-dnt-R94 {+client-header-tagger{ab2p-block-dnt-R94} \ } -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 46099) -.youtube.com/yva_video\?adformat= -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com (easylist.txt: 35614) -.youtube.com/yva_video\?adformat= +# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina.txt: 1423) +.163.com/special/ #ab2p-block-dnt-R95 {+client-header-tagger{ab2p-block-dnt-R95} \ } -# /rotator.js|$domain=antistarforce.com|rustorka.com|rustorka.net (advblock.txt: 5395) -/(.*/)?rotator\.js$ -rotator.js -# .js?rt=$domain=antistarforce.com|rustorka.com|rustorka.net (advblock.txt: 5370) -/.*\.js\?rt= +# ||alicdn.com^*.jpg$domain=htai.me (easylistchina.txt: 2071) +.alicdn.com/.*\.jpg +# ||alicdn.com^*.gif$domain=htai.me (easylistchina.txt: 2070) +.alicdn.com/.*\.gif #ab2p-block-dnt-R96 {+client-header-tagger{ab2p-block-dnt-R96} \ } -# ||ru/code/$script,domain=aphorisme.ru|kinopod.ru|mp3ray.ru|tusnya.net (advblock.txt: 3255) +# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina.txt: 3527) +.item.taobao.com #ab2p-block-dnt-R97 {+client-header-tagger{ab2p-block-dnt-R97} \ } -# ||pladform.ru^$domain=api.cybergame.tv (advblock.txt: 6227) -.pladform.ru +# /tres/recommend/*$domain=ifeng.com (easylistchina.txt: 1237) +/(.*/)?tres/recommend/.* #ab2p-block-dnt-R98 {+client-header-tagger{ab2p-block-dnt-R98} \ } -# ||gpawireservices.com/input/files/*.gif$domain=archerywire.com (easylistchina+easylist.txt: 40365) -.gpawireservices.com/input/files/.*\.gif -# ||gpawireservices.com/input/files/*.gif$domain=archerywire.com (easylist.txt: 29880) -.gpawireservices.com/input/files/.*\.gif +# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina.txt: 1133) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ +/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf +# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina.txt: 1095) +.miaozhen.com #ab2p-block-dnt-R99 {+client-header-tagger{ab2p-block-dnt-R99} \ } -# /images/partners/*$domain=argumenti.ru|fonarevka.ru|profit-maker.org (advblock.txt: 5391) -/(.*/)?images/partners/.* +# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina.txt: 1134) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ +/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) #ab2p-block-dnt-R100 {+client-header-tagger{ab2p-block-dnt-R100} \ } -# ||cloudfront.net/hot/ars.dart/$domain=arstechnica.com (easylistchina+easylist.txt: 42550) -.cloudfront.net/hot/ars\.dart/ -# ||cloudfront.net/hot/ars.dart/$domain=arstechnica.com (easylist.txt: 32065) -.cloudfront.net/hot/ars\.dart/ +# ||imgchr.com^$domain=iyejie.com (easylistchina.txt: 3453) +.imgchr.com #ab2p-block-dnt-R101 {+client-header-tagger{ab2p-block-dnt-R101} \ } -# ||patrickjames.com/images/$domain=askandyaboutclothes.com (easylistchina+easylist.txt: 44318) -.patrickjames.com/images/ -# ||patrickjames.com/images/$domain=askandyaboutclothes.com (easylist.txt: 33833) -.patrickjames.com/images/ +# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina.txt: 4392) +.riju.com/pr/ +# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina.txt: 3630) +.jpunion.com +# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1191) +/(.*/)?img/kana\.jpg +# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1190) +/(.*/)?img/disc\.jpg #ab2p-block-dnt-R102 {+client-header-tagger{ab2p-block-dnt-R102} \ } -# ||174.143.241.129^$domain=astalavista.com (easylistchina+easylist.txt: 41945) -.174.143.241.129 -# ||174.143.241.129^$domain=astalavista.com (easylist.txt: 31460) -.174.143.241.129 +# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina.txt: 4321) +.qq.com/bqq_qfpic/ #ab2p-block-dnt-R103 {+client-header-tagger{ab2p-block-dnt-R103} \ } -# ||playlist.yahoo.com/makeplaylist.dll?$domain=au.tv.yahoo.com (easylistchina+easylist.txt: 44393) -.playlist.yahoo.com/makeplaylist\.dll\? -# ||playlist.yahoo.com/makeplaylist.dll?$domain=au.tv.yahoo.com (easylist.txt: 33908) -.playlist.yahoo.com/makeplaylist\.dll\? +# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina.txt: 1132) +/(.*/)?\?age=1& #ab2p-block-dnt-R104 {+client-header-tagger{ab2p-block-dnt-R104} \ } -# ||ibsrv.net/royalpurple/$domain=audiforums.com (easylistchina+easylist.txt: 43415) -.ibsrv.net/royalpurple/ -# ||ibsrv.net/*forumsponsor$domain=audiforums.com (easylistchina+easylist.txt: 43414) -.ibsrv.net/.*forumsponsor -# ||ibsrv.net/royalpurple/$domain=audiforums.com (easylist.txt: 32930) -.ibsrv.net/royalpurple/ -# ||ibsrv.net/*forumsponsor$domain=audiforums.com (easylist.txt: 32929) -.ibsrv.net/.*forumsponsor +# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina.txt: 1187) +/(.*/)?img/.*\.gif #ab2p-block-dnt-R105 {+client-header-tagger{ab2p-block-dnt-R105} \ } -# ||augusta.com/sites/*/yca_plugin/yahoo.js$domain=augusta.com (easylistchina+easylist.txt: 42241) -.augusta.com/sites/.*/yca_plugin/yahoo\.js -# ||augusta.com/sites/*/yca_plugin/yahoo.js$domain=augusta.com (easylist.txt: 31756) -.augusta.com/sites/.*/yca_plugin/yahoo\.js +# .fancybox.$domain=life.com.tw (easylistchina.txt: 1117) +/.*\.fancybox\. +.*.fancybox.*. #ab2p-block-dnt-R106 {+client-header-tagger{ab2p-block-dnt-R106} \ } -# ||videoplaza.com^$object-subrequest,third-party,domain=autoexpress.co.uk|evo.co.uk|givemefootball.com|mensfitness.co.uk|mpora.com|tribalfootball.com (easylistchina+easylist.txt: 37928) -.videoplaza.com -# ||videoplaza.com^$object-subrequest,third-party,domain=autoexpress.co.uk|evo.co.uk|givemefootball.com|mensfitness.co.uk|mpora.com|tribalfootball.com (easylist.txt: 27443) -.videoplaza.com +# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina.txt: 4795) +.tietuku.com/.*\.gif #ab2p-block-dnt-R107 {+client-header-tagger{ab2p-block-dnt-R107} \ } -# ||avaxnews.net/yb_$subdocument,domain=avaxhm.com (easylistchina+easylist.txt: 42249) -.avaxnews.net/yb_ -# ||avaxnews.net/yb_$subdocument,domain=avaxhm.com (easylist.txt: 31764) -.avaxnews.net/yb_ +# ||gp.jstv.com^$domain=live.jstv.com (easylistchina.txt: 3028) +.gp.jstv.com #ab2p-block-dnt-R108 {+client-header-tagger{ab2p-block-dnt-R108} \ } -# ||bp.blogspot.com^$domain=avmimi.com (easylistchina+easylist.txt: 2311) -.bp.blogspot.com +# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina.txt: 1162) +/(.*/)?da\.aspx$ +da.aspx #ab2p-block-dnt-R109 {+client-header-tagger{ab2p-block-dnt-R109} \ } -# ||goo.gl^$subdocument,domain=backin.net|uploadlw.com (easylistchina+easylist.txt: 40352) -.goo.gl -# ||goo.gl^$subdocument,domain=backin.net|uploadlw.com (easylist.txt: 29867) -.goo.gl +# /js/index_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1197) +/(.*/)?js/index_ +# .com/js/l_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1114) +/.*\.com/js/l_ +.*.com/js/l_ #ab2p-block-dnt-R110 {+client-header-tagger{ab2p-block-dnt-R110} \ } -# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina+easylist.txt: 4759) -.taobaocdn.com/imgextra/ +# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina.txt: 1717) +.55.la/anonymous/banner/ #ab2p-block-dnt-R111 {+client-header-tagger{ab2p-block-dnt-R111} \ } -# ||site-rips.org^$popup,domain=backupload.net (easylistchina+easylist.txt: 47093) -.site-rips.org -# ||site-rips.org^$popup,domain=backupload.net (easylist.txt: 36608) -.site-rips.org +# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina.txt: 4131) +.pchome.com.tw/iframe/ #ab2p-block-dnt-R112 {+client-header-tagger{ab2p-block-dnt-R112} \ } -# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina+easylist.txt: 4936) -.upload.chinaz.com/20.*\.gif +# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina.txt: 3591) +.jiaoyou8.com #ab2p-block-dnt-R113 {+client-header-tagger{ab2p-block-dnt-R113} \ } -# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina+easylist.txt: 3443) -.img.china.alibaba.com/img/ibank/ +# ||picuphost.com^$domain=mmload.info (easylistchina.txt: 4195) +.picuphost.com #ab2p-block-dnt-R114 {+client-header-tagger{ab2p-block-dnt-R114} \ } -# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina+easylist.txt: 1156) -/(.*/)?house/images/.* +# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina.txt: 3300) +.i.alipayobjects.com/i/ecmng/ #ab2p-block-dnt-R115 {+client-header-tagger{ab2p-block-dnt-R115} \ } -# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina+easylist.txt: 1266) -rc.sz.zj.cn/.*\.swf +# /js/adBom.js$domain=myqcloud.com (easylistchina.txt: 1195) +/(.*/)?js/adBom\.js #ab2p-block-dnt-R116 {+client-header-tagger{ab2p-block-dnt-R116} \ } -# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina+easylist.txt: 3967) -.momoshop.com.tw/league/ +# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina.txt: 5067) +.www.china.com.cn/node_ #ab2p-block-dnt-R117 {+client-header-tagger{ab2p-block-dnt-R117} \ } -# /btcclicksskyscraper.png$domain=best-bitcoin-faucet.eu|best-free-faucet.eu|bitcoin-best-faucet.eu|bitcoin-cloud.eu|bitcoin-faucet.eu|bitcoin-free-faucet.eu|free-bitcoin-faucet.eu|get-bitcoins-free.eu|get-free-bitcoin.eu|win-free-bitcoins.eu (easylistchina+easylist.txt: 41907) -/(.*/)?btcclicksskyscraper\.png -btcclicksskyscraper.png*. -# /btcclicksskyscraper.png$domain=best-bitcoin-faucet.eu|best-free-faucet.eu|bitcoin-best-faucet.eu|bitcoin-cloud.eu|bitcoin-faucet.eu|bitcoin-free-faucet.eu|free-bitcoin-faucet.eu|get-bitcoins-free.eu|get-free-bitcoin.eu|win-free-bitcoins.eu (easylist.txt: 31422) -/(.*/)?btcclicksskyscraper\.png -btcclicksskyscraper.png*. +# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina.txt: 1264) +/.*_iframe\.htm$ #ab2p-block-dnt-R118 {+client-header-tagger{ab2p-block-dnt-R118} \ } -# ||finegame.org^$popup,domain=bestreams.net (easylistchina+easylist.txt: 46132) -.finegame.org -# ||finegame.org^$popup,domain=bestreams.net (easylist.txt: 35647) -.finegame.org +# .com/tps/$domain=ocucn.com (easylistchina.txt: 1115) +/.*\.com/tps/ +.*.com/tps/ #ab2p-block-dnt-R119 {+client-header-tagger{ab2p-block-dnt-R119} \ } -# ||caphyon.com/img/press/caphyon/small-logo.png$domain=better-explorer.com (easylistchina+easylist.txt: 42457) -.caphyon.com/img/press/caphyon/small-logo\.png -# ||caphyon.com/img/press/caphyon/small-logo.png$domain=better-explorer.com (easylist.txt: 31972) -.caphyon.com/img/press/caphyon/small-logo\.png +# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina.txt: 1239) +/(.*/)?upload/gad/.* #ab2p-block-dnt-R120 {+client-header-tagger{ab2p-block-dnt-R120} \ } -# ||acg.tv^$object,domain=bilibili.com (easylistchina+easylist.txt: 1991) -.acg.tv +# ||baidu.com^$domain=pos.baidu.com (easylistchina.txt: 2177) +.baidu.com #ab2p-block-dnt-R121 {+client-header-tagger{ab2p-block-dnt-R121} \ } -# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina+easylist.txt: 3167) -.hdslb.com/u_user/ +# ||imgbus.com^$domain=qiannao.com|ref.so (easylistchina.txt: 3450) +.imgbus.com #ab2p-block-dnt-R122 {+client-header-tagger{ab2p-block-dnt-R122} \ } -# /images/tuangou$domain=bjxxw.com (easylistchina+easylist.txt: 1167) -/(.*/)?images/tuangou +# /950-90.gif$domain=qire213.com (easylistchina.txt: 1131) +/(.*/)?950-90\.gif +950-90.gif*. #ab2p-block-dnt-R123 {+client-header-tagger{ab2p-block-dnt-R123} \ } -# ||apress-barmen.ru^$third-party,domain=blizko.ru (advblock.txt: 5504) -.apress-barmen.ru +# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1253) +/(.*/)?xybgg\.gif +xybgg.gif*. +# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1189) +/(.*/)?img/br650\.gif +# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1188) +/(.*/)?img/br300\.gif #ab2p-block-dnt-R124 {+client-header-tagger{ab2p-block-dnt-R124} \ } -# ||wordpress.com^*_reskin-$image,domain=bossip.com (easylistchina+easylist.txt: 45636) -.wordpress.com/.*_reskin- -# ||wordpress.com^*_reskin-$image,domain=bossip.com (easylist.txt: 35151) -.wordpress.com/.*_reskin- +# ||howbbs.net^$domain=ref.so (easylistchina.txt: 3245) +.howbbs.net #ab2p-block-dnt-R125 {+client-header-tagger{ab2p-block-dnt-R125} \ } -# ||snapapp.com^$third-party,domain=bostonmagazine.com (easylistchina+easylist.txt: 40941) -.snapapp.com -# ||snapapp.com^$third-party,domain=bostonmagazine.com (easylist.txt: 30456) -.snapapp.com +# /afp/*$domain=scol.com.cn (easylistchina.txt: 1143) +/(.*/)?afp/.* #ab2p-block-dnt-R126 {+client-header-tagger{ab2p-block-dnt-R126} \ } -# ||amazonaws.com/digitalcinemanec.swf$domain=boxoffice.com (easylistchina+easylist.txt: 39745) -.amazonaws.com/digitalcinemanec\.swf -# ||amazonaws.com/digitalcinemanec.swf$domain=boxoffice.com (easylist.txt: 29260) -.amazonaws.com/digitalcinemanec\.swf +# /images/20$domain=sex169.info|sex169.org (easylistchina.txt: 1179) +/(.*/)?images/20 #ab2p-block-dnt-R127 {+client-header-tagger{ab2p-block-dnt-R127} \ } -# ||213.174.140.38^*/msn-*.js$domain=boyfriendtv.com|pornoxo.com (easylistchina+easylist.txt: 46231) -.213.174.140.38/.*/msn-.*\.js -# ||213.174.140.38^*/msn-*.js$domain=boyfriendtv.com|pornoxo.com (easylist.txt: 35746) -.213.174.140.38/.*/msn-.*\.js +# ||iweek.ly^$domain=share.popgo.org (easylistchina.txt: 3556) +.iweek.ly #ab2p-block-dnt-R128 {+client-header-tagger{ab2p-block-dnt-R128} \ } -# ||dotua.org/player.$image,domain=brb.to|cxz.to|fs.to (advblock.txt: 5659) -.dotua.org/player\. -# ||dotua.org/img.$image,domain=brb.to|cxz.to|fs.to (advblock.txt: 5658) -.dotua.org/img\. +# ||url.cn^$domain=shuajizhijia.com (easylistchina.txt: 4915) +.url.cn #ab2p-block-dnt-R129 {+client-header-tagger{ab2p-block-dnt-R129} \ } -# ||85rere.com^$popup,domain=btbbt.cc (easylistchina+easylist.txt: 1048) -.85rere.com +# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina.txt: 4794) +.tietuku.com #ab2p-block-dnt-R130 {+client-header-tagger{ab2p-block-dnt-R130} \ } -# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina+easylist.txt: 1220) -/(.*/)?tb780x90\.gif -tb780x90.gif*. +# /ycpiframe.aspx$domain=strtv.cn (easylistchina.txt: 1254) +/(.*/)?ycpiframe\.aspx +ycpiframe.aspx*. #ab2p-block-dnt-R131 {+client-header-tagger{ab2p-block-dnt-R131} \ } -# /d125.260.gif$domain=btup.net (easylistchina+easylist.txt: 1141) -/(.*/)?d125\.260\.gif -d125.260.gif*. +# /sungg/*$domain=sun0769.com (easylistchina.txt: 1232) +/(.*/)?sungg/.* #ab2p-block-dnt-R132 {+client-header-tagger{ab2p-block-dnt-R132} \ } -# ||amazonaws.com/cdn/ipfc/$object,domain=caclubindia.com (easylistchina+easylist.txt: 42139) -.amazonaws.com/cdn/ipfc/ -# ||amazonaws.com/cdn/campaign/$domain=caclubindia.com (easylistchina+easylist.txt: 42138) -.amazonaws.com/cdn/campaign/ -# ||amazonaws.com/cdn/ipfc/$object,domain=caclubindia.com (easylist.txt: 31654) -.amazonaws.com/cdn/ipfc/ -# ||amazonaws.com/cdn/campaign/$domain=caclubindia.com (easylist.txt: 31653) -.amazonaws.com/cdn/campaign/ +# ||junph.cn^$domain=tiexue.net (easylistchina.txt: 3665) +.junph.cn #ab2p-block-dnt-R133 {+client-header-tagger{ab2p-block-dnt-R133} \ } -# ||imgbus.com^$domain=cao1024.com|qiannao.com|ref.so (easylistchina+easylist.txt: 3465) -.imgbus.com +# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina.txt: 5293) +.yupoo.com/3126961304/ #ab2p-block-dnt-R134 {+client-header-tagger{ab2p-block-dnt-R134} \ } -# ||cc/banners/$domain=capricornus.cc|moonwalk.cc (advblock.txt: 5579) +# /img/*$image,domain=txzqw.com (easylistchina.txt: 1186) +/(.*/)?img/.* +# /gif/*$image,domain=txzqw.com (easylistchina.txt: 1171) +/(.*/)?gif/.* #ab2p-block-dnt-R135 {+client-header-tagger{ab2p-block-dnt-R135} \ } -# ||gpm-digital.com^$object-subrequest,domain=carambatv.ru|goodgame.ru (advblock.txt: 5807) -.gpm-digital.com +# /lagou-$domain=uisdc.com (easylistchina.txt: 1203) +/(.*/)?lagou- +lagou-*. #ab2p-block-dnt-R136 {+client-header-tagger{ab2p-block-dnt-R136} \ } -# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina+easylist.txt: 1150) -/(.*/)?gamepic/.* +# /bannerpic/*$domain=uopera.net (easylistchina.txt: 1153) +/(.*/)?bannerpic/.* #ab2p-block-dnt-R137 {+client-header-tagger{ab2p-block-dnt-R137} \ } -# ||alidw.net^$domain=cbs.com (easylistchina+easylist.txt: 46075) -.alidw.net -# ||ailde.com^$domain=cbs.com (easylistchina+easylist.txt: 46074) -.ailde.com -# /ailde.$domain=cbs.com (easylistchina+easylist.txt: 46072) -/(.*/)?ailde\. -ailde.*. -# ||doubleclick.net/gampad/ads?*^vpos^$domain=cbs.com (easylistchina+easylist.txt: 42797) -.doubleclick.net/gampad/ads\?.*[^\w%.-]vpos[^\w%.-] -# ||alidw.net^$domain=cbs.com (easylist.txt: 35590) -.alidw.net -# ||ailde.com^$domain=cbs.com (easylist.txt: 35589) -.ailde.com -# /ailde.$domain=cbs.com (easylist.txt: 35587) -/(.*/)?ailde\. -ailde.*. -# ||doubleclick.net/gampad/ads?*^vpos^$domain=cbs.com (easylist.txt: 32312) -.doubleclick.net/gampad/ads\?.*[^\w%.-]vpos[^\w%.-] +# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina.txt: 4465) +.sdo.com #ab2p-block-dnt-R138 {+client-header-tagger{ab2p-block-dnt-R138} \ } -# ||flv.sales.cbs.com^$object-subrequest,domain=cbs.com|cbsnews.com|twitch.tv (easylistchina+easylist.txt: 43057) -.flv.sales.cbs.com -# ||flv.sales.cbs.com^$object-subrequest,domain=cbs.com|cbsnews.com|twitch.tv (easylist.txt: 32572) -.flv.sales.cbs.com +# /friends/*$image,domain=v2ex.com (easylistchina.txt: 1165) +/(.*/)?friends/.* +# /assets/sidebar/*$domain=v2ex.com (easylistchina.txt: 1145) +/(.*/)?assets/sidebar/.* #ab2p-block-dnt-R139 {+client-header-tagger{ab2p-block-dnt-R139} \ } -# ||adm.fwmrm.net/crossdomain.xml$domain=cc.com|mtv.com (easylistchina+easylist.txt: 35045) -.adm.fwmrm.net/crossdomain\.xml -# ||adm.fwmrm.net/crossdomain.xml$domain=cc.com|mtv.com (easylist.txt: 24560) -.adm.fwmrm.net/crossdomain\.xml +# ||alicdn.com^$domain=wangyueblog.com|xiadele.com|xm9x.net (easylistchina.txt: 2069) +.alicdn.com #ab2p-block-dnt-R140 {+client-header-tagger{ab2p-block-dnt-R140} \ } -# ||duapp.com^$domain=ccav1.com (easylistchina+easylist.txt: 2745) -.duapp.com +# ||imgur.com^$domain=wgun.net (easylistchina.txt: 3467) +.imgur.com #ab2p-block-dnt-R141 {+client-header-tagger{ab2p-block-dnt-R141} \ } -# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina+easylist.txt: 1256) +# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina.txt: 4914) +.uploadhouse.com/.*\.gif #ab2p-block-dnt-R142 {+client-header-tagger{ab2p-block-dnt-R142} \ } -# ||censor.net.ua^$subdocument,domain=censor.net.ua (advblock.txt: 5582) -.censor.net.ua +# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina.txt: 1246) +/(.*/)?wp-content/uploads/.*vpn +# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina.txt: 1245) +/(.*/)?wp-content/uploads/.*hidemyass +# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina.txt: 1244) +/(.*/)?Webbanner_ +# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina.txt: 1137) +/(.*/)?ad_nydus\.png #ab2p-block-dnt-R143 {+client-header-tagger{ab2p-block-dnt-R143} \ } -# ||bips.channel4.com^*/backgrounds/$image,domain=channel4.com (easylistchina+easylist.txt: 42336) -.bips.channel4.com/.*/backgrounds/ -# ||bips.channel4.com^*/backgrounds/$image,domain=channel4.com (easylist.txt: 31851) -.bips.channel4.com/.*/backgrounds/ +# /attachment/album/*$domain=www.52hardware.com (easylistchina.txt: 1148) +/(.*/)?attachment/album/.* #ab2p-block-dnt-R144 {+client-header-tagger{ab2p-block-dnt-R144} \ } -# ||aliimg.com^$domain=chem21.info (advblock.txt: 5462) -.aliimg.com +# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina.txt: 5407) +.zsg.kimi.com.tw +# .html|$domain=www.gamer.com.tw (easylistchina.txt: 1119) +/.*\.html$ +.*.html #ab2p-block-dnt-R145 {+client-header-tagger{ab2p-block-dnt-R145} \ } -# |http://*/bn/$domain=chimatong.com (easylistchina+easylist.txt: 1262) -/(.*/)?bn/ +# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina.txt: 4065) +.nmgnews.com.cn/swf/0/10/ #ab2p-block-dnt-R146 {+client-header-tagger{ab2p-block-dnt-R146} \ } -# /sda/*$domain=chineseinla.com (easylistchina+easylist.txt: 1210) -/(.*/)?sda/.* -# /images/content/1436/*$domain=chineseinla.com (easylistchina+easylist.txt: 1165) -/(.*/)?images/content/1436/.* +# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina.txt: 3420) +.img*./.*\.itiexue\.net/2.*\.gif +.img*.itiexue.net/2.*\.gif #ab2p-block-dnt-R147 {+client-header-tagger{ab2p-block-dnt-R147} \ } -# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina+easylist.txt: 5302) -.youtube.com/embed/.*&autoplay=1& +# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1108) +.xmds.opd2c.com +# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1097) +.moezone.taobao.com +# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1073) +.acgpost.taobao.com +# /item.htm?$popup,domain=www.tsdm.net (easylistchina.txt: 1063) +/(.*/)?item\.htm\? #ab2p-block-dnt-R148 {+client-header-tagger{ab2p-block-dnt-R148} \ } -# ||cloudfront.net/pop?$domain=clipconverter.cc (easylistchina+easylist.txt: 42551) -.cloudfront.net/pop\? -# ||cloudfront.net/pop?$domain=clipconverter.cc (easylist.txt: 32066) -.cloudfront.net/pop\? +# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina.txt: 5311) +.yytcdn.com/swf/plugins_new\.xml\? #ab2p-block-dnt-R149 {+client-header-tagger{ab2p-block-dnt-R149} \ } -# ||images-amazon.com^$domain=cloudfront.net (easylistchina+easylist.txt: 40426) -.images-amazon.com -# ||images-amazon.com^$domain=cloudfront.net (easylist.txt: 29941) -.images-amazon.com +# /r/video/*$domain=youxi.baidu.com (easylistchina.txt: 1223) +/(.*/)?r/video/.* #ab2p-block-dnt-R150 {+client-header-tagger{ab2p-block-dnt-R150} \ } -# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina+easylist.txt: 4762) -.taobaocdn.com +# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina.txt: 3021) +.googleusercontent.com/.*=w800-h352-no #ab2p-block-dnt-R151 {+client-header-tagger{ab2p-block-dnt-R151} \ } -# ||cnn.com^*/ad_policy.xml$object-subrequest,domain=cnn.com (easylistchina+easylist.txt: 42564) -.cnn.com/.*/ad_policy\.xml -# ||cnn.com^*/ad_policy.xml$object-subrequest,domain=cnn.com (easylist.txt: 32079) -.cnn.com/.*/ad_policy\.xml +# ||srcdd.com^$domain=zasv.com (easylistchina.txt: 4650) +.srcdd.com #ab2p-block-dnt-R152 {+client-header-tagger{ab2p-block-dnt-R152} \ } -# ||wp.com^*/coedmagazine3/gads/$domain=coedmagazine.com (easylistchina+easylist.txt: 45656) -.wp.com/.*/coedmagazine3/gads/ -# ||wp.com^*/linkwidgets/$domain=coedmagazine.com (easylistchina+easylist.txt: 41198) -.wp.com/.*/linkwidgets/ -# ||wp.com^*/coedmagazine3/gads/$domain=coedmagazine.com (easylist.txt: 35171) -.wp.com/.*/coedmagazine3/gads/ -# ||wp.com^*/linkwidgets/$domain=coedmagazine.com (easylist.txt: 30713) -.wp.com/.*/linkwidgets/ - -#ab2p-block-dnt-R153 -{+client-header-tagger{ab2p-block-dnt-R153} \ -} -# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina+easylist.txt: 4888) -.tw.partner.buy.yahoo.com - -#ab2p-block-dnt-R154 -{+client-header-tagger{ab2p-block-dnt-R154} \ -} -# ||yolasite.com/resources/$domain=coolsport.tv (easylistchina+easylist.txt: 45761) -.yolasite.com/resources/ -# ||yolasite.com/resources/$domain=coolsport.tv (easylist.txt: 35276) -.yolasite.com/resources/ - -#ab2p-block-dnt-R155 -{+client-header-tagger{ab2p-block-dnt-R155} \ -} -# .com/b?z=$domain=couchtuner.eu|zzstream.li (easylistchina+easylist.txt: 41896) -/.*\.com/b\?z= -.*.com/b\?z= -# .com/b?z=$domain=couchtuner.eu|zzstream.li (easylist.txt: 31411) -/.*\.com/b\?z= -.*.com/b\?z= - -#ab2p-block-dnt-R156 -{+client-header-tagger{ab2p-block-dnt-R156} \ -} -# ||imgur.com/i2iBMaD.gif$domain=cpahero.com (easylistchina+easylist.txt: 43480) -.imgur.com/i2iBMaD\.gif -# ||imgur.com/i2iBMaD.gif$domain=cpahero.com (easylist.txt: 32995) -.imgur.com/i2iBMaD\.gif - -#ab2p-block-dnt-R157 -{+client-header-tagger{ab2p-block-dnt-R157} \ -} -# /assets/images/banner$domain=cpbl.com.tw (easylistchina+easylist.txt: 1123) -/(.*/)?assets/images/banner - -#ab2p-block-dnt-R158 -{+client-header-tagger{ab2p-block-dnt-R158} \ -} -# ||goo.gl^$image,domain=cracksfiles.com (easylistchina+easylist.txt: 40351) -.goo.gl -# ||goo.gl^$image,domain=cracksfiles.com (easylist.txt: 29866) -.goo.gl - -#ab2p-block-dnt-R159 -{+client-header-tagger{ab2p-block-dnt-R159} \ -} -# ||lylebarn.com/crashwidget/$domain=crash.net (easylistchina+easylist.txt: 40561) -.lylebarn.com/crashwidget/ -# ||lylebarn.com/crashwidget/$domain=crash.net (easylist.txt: 30076) -.lylebarn.com/crashwidget/ - -#ab2p-block-dnt-R160 -{+client-header-tagger{ab2p-block-dnt-R160} \ -} -# /files/!modules/*$domain=crazys.info|ucrazy.ru (advblock.txt: 5382) -/(.*/)?files/!modules/.* - -#ab2p-block-dnt-R161 -{+client-header-tagger{ab2p-block-dnt-R161} \ -} -# ||amazonaws.com/newscloud-production/*/backgrounds/$domain=crescent-news.com|daily-jeff.com|recordpub.com|state-journal.com|the-daily-record.com|the-review.com|times-gazette.com (easylistchina+easylist.txt: 39749) -.amazonaws.com/newscloud-production/.*/backgrounds/ -# ||amazonaws.com/newscloud-production/*/backgrounds/$domain=crescent-news.com|daily-jeff.com|recordpub.com|state-journal.com|the-daily-record.com|the-review.com|times-gazette.com (easylist.txt: 29264) -.amazonaws.com/newscloud-production/.*/backgrounds/ - -#ab2p-block-dnt-R162 -{+client-header-tagger{ab2p-block-dnt-R162} \ -} -# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina+easylist.txt: 1135) -/(.*/)?biz_icon/.* - -#ab2p-block-dnt-R163 -{+client-header-tagger{ab2p-block-dnt-R163} \ -} -# ||akamaihd.net/preroll*.mp4?$domain=csnnw.com (easylistchina+easylist.txt: 39725) -.akamaihd.net/preroll.*\.mp4\? -# ||akamaihd.net/preroll*.mp4?$domain=csnnw.com (easylist.txt: 29240) -.akamaihd.net/preroll.*\.mp4\? - -#ab2p-block-dnt-R164 -{+client-header-tagger{ab2p-block-dnt-R164} \ -} -# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina+easylist.txt: 4376) -.rakuten-static.com -# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina+easylist.txt: 4194) -.pic.pimg.tw/cwyuni/.*\.gif\?v= - -#ab2p-block-dnt-R165 -{+client-header-tagger{ab2p-block-dnt-R165} \ -} -# .adriver.$object-subrequest,domain=cybergame.tv|smotri.com (advblock.txt: 5368) -/.*\.adriver\. -.*.adriver.*. - -#ab2p-block-dnt-R166 -{+client-header-tagger{ab2p-block-dnt-R166} \ -} -# ||mzstatic.com^$image,object-subrequest,domain=dailymotion.com (easylistchina+easylist.txt: 40666) -.mzstatic.com -# ||mzstatic.com^$image,object-subrequest,domain=dailymotion.com (easylist.txt: 30181) -.mzstatic.com - -#ab2p-block-dnt-R167 -{+client-header-tagger{ab2p-block-dnt-R167} \ -} -# ||phobos.apple.com^$image,domain=dailymotion.com|youtube.com (easylistchina+easylist.txt: 40754) -.phobos.apple.com -# ||phobos.apple.com^$image,domain=dailymotion.com|youtube.com (easylist.txt: 30269) -.phobos.apple.com - -#ab2p-block-dnt-R168 -{+client-header-tagger{ab2p-block-dnt-R168} \ -} -# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina+easylist.txt: 4597) -.sinaimg.cn/mw1024/6283e.*\.jpg -# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina+easylist.txt: 4013) -.mygeek.cn/pic_ - -#ab2p-block-dnt-R169 -{+client-header-tagger{ab2p-block-dnt-R169} \ -} -# ||screenshot.ru^$domain=darkmoney.cc (advblock.txt: 6378) -.screenshot.ru - -#ab2p-block-dnt-R170 -{+client-header-tagger{ab2p-block-dnt-R170} \ -} -# ||bangstage.com^$popup,domain=datacloud.to (easylistchina+easylist.txt: 46113) -.bangstage.com -# ||bangstage.com^$popup,domain=datacloud.to (easylist.txt: 35628) -.bangstage.com - -#ab2p-block-dnt-R171 -{+client-header-tagger{ab2p-block-dnt-R171} \ -} -# ||googleapis.com/dfh/$image,domain=datafilehost.com (easylistchina+easylist.txt: 43254) -.googleapis.com/dfh/ -# ||googleapis.com/dfh/$image,domain=datafilehost.com (easylist.txt: 32769) -.googleapis.com/dfh/ - -#ab2p-block-dnt-R172 -{+client-header-tagger{ab2p-block-dnt-R172} \ -} -# ||fuzface.com/dcrtv/ad$domain=dcrtv.com (easylistchina+easylist.txt: 43136) -.fuzface.com/dcrtv/ad -# ||fuzface.com/dcrtv/ad$domain=dcrtv.com (easylist.txt: 32651) -.fuzface.com/dcrtv/ad - -#ab2p-block-dnt-R173 -{+client-header-tagger{ab2p-block-dnt-R173} \ -} -# ||b117f8da23446a91387efea0e428392a.pl^$domain=ddlvalley.net (easylistchina+easylist.txt: 39800) -.b117f8da23446a91387efea0e428392a.pl -# ||b117f8da23446a91387efea0e428392a.pl^$domain=ddlvalley.net (easylist.txt: 29315) -.b117f8da23446a91387efea0e428392a.pl - -#ab2p-block-dnt-R174 -{+client-header-tagger{ab2p-block-dnt-R174} \ -} -# /assets/_takeover/*$domain=deadspin.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com (easylistchina+easylist.txt: 41906) -/(.*/)?assets/_takeover/.* -# /assets/_takeover/*$domain=deadspin.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com (easylist.txt: 31421) -/(.*/)?assets/_takeover/.* - -#ab2p-block-dnt-R175 -{+client-header-tagger{ab2p-block-dnt-R175} \ -} -# ||cloudfront.net^*/shaadi.com/$domain=deccanchronicle.com (easylistchina+easylist.txt: 42552) -.cloudfront.net/.*/shaadi\.com/ -# ||cloudfront.net^*/shaadi.com/$domain=deccanchronicle.com (easylist.txt: 32067) -.cloudfront.net/.*/shaadi\.com/ - -#ab2p-block-dnt-R176 -{+client-header-tagger{ab2p-block-dnt-R176} \ -} -# ||zmovie.tv^$popup,domain=deditv.com|vidbox.net (easylistchina+easylist.txt: 46219) -.zmovie.tv -# ||zmovie.tv^$popup,domain=deditv.com|vidbox.net (easylist.txt: 35734) -.zmovie.tv - -#ab2p-block-dnt-R177 -{+client-header-tagger{ab2p-block-dnt-R177} \ -} -# ||objects.tremormedia.com/embed/swf/acudeo.swf$object-subrequest,domain=deluxemusic.tv.staging.ipercast.net (easylistchina+easylist.txt: 44241) -.objects.tremormedia.com/embed/swf/acudeo\.swf -# ||objects.tremormedia.com/embed/swf/acudeo.swf$object-subrequest,domain=deluxemusic.tv.staging.ipercast.net (easylist.txt: 33756) -.objects.tremormedia.com/embed/swf/acudeo\.swf - -#ab2p-block-dnt-R178 -{+client-header-tagger{ab2p-block-dnt-R178} \ -} -# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina+easylist.txt: 1271) -.005.tv/data/attachment/forum/.*\.gif - -#ab2p-block-dnt-R179 -{+client-header-tagger{ab2p-block-dnt-R179} \ -} -# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina+easylist.txt: 1120) -/(.*/)?aeiou/.* - -#ab2p-block-dnt-R180 -{+client-header-tagger{ab2p-block-dnt-R180} \ -} -# ||photobucket.com/albums/cc94/dl4all/temp/enginesong.gif$domain=dl4all.com (easylistchina+easylist.txt: 44357) -.photobucket.com/albums/cc94/dl4all/temp/enginesong\.gif -# ||photobucket.com/albums/cc94/dl4all/temp/enginesong.gif$domain=dl4all.com (easylist.txt: 33872) -.photobucket.com/albums/cc94/dl4all/temp/enginesong\.gif - -#ab2p-block-dnt-R181 -{+client-header-tagger{ab2p-block-dnt-R181} \ -} -# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina+easylist.txt: 1236) -/(.*/)?wxhfm\.html -wxhfm.html*. -# /wxh.js$domain=dm5.com|dm5.hk (easylistchina+easylist.txt: 1235) -/(.*/)?wxh\.js -wxh.js*. - -#ab2p-block-dnt-R182 -{+client-header-tagger{ab2p-block-dnt-R182} \ -} -# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina+easylist.txt: 4761) -.taobaocdn.com - -#ab2p-block-dnt-R183 -{+client-header-tagger{ab2p-block-dnt-R183} \ -} -# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina+easylist.txt: 1132) -/(.*/)?banner/.* - -#ab2p-block-dnt-R184 -{+client-header-tagger{ab2p-block-dnt-R184} \ -} -# ||1.baidu.com^$popup,domain=douban.com (easylistchina+easylist.txt: 1046) -.1.baidu.com - -#ab2p-block-dnt-R185 -{+client-header-tagger{ab2p-block-dnt-R185} \ -} -# ||amazonaws.com^$script,domain=dsero.com|ginormousbargains.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com|unfair.co (easylistchina+easylist.txt: 46076) -.amazonaws.com -# ||amazonaws.com^$script,domain=dsero.com|ginormousbargains.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com|unfair.co (easylist.txt: 35591) -.amazonaws.com - -#ab2p-block-dnt-R186 -{+client-header-tagger{ab2p-block-dnt-R186} \ -} -# ||zapto.org^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46097) -.zapto.org -# ||sytes.net^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46093) -.sytes.net -# ||servequake.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46091) -.servequake.com -# ||servepics.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46090) -.servepics.com -# ||servemp3.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46089) -.servemp3.com -# ||servebeer.com^$domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46088) -.servebeer.com -# ||no-ip.biz^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46086) -.no-ip.biz -# ||zapto.org^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35612) -.zapto.org -# ||sytes.net^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35608) -.sytes.net -# ||servequake.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35606) -.servequake.com -# ||servepics.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35605) -.servepics.com -# ||servemp3.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35604) -.servemp3.com -# ||servebeer.com^$domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35603) -.servebeer.com -# ||no-ip.biz^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35601) -.no-ip.biz - -#ab2p-block-dnt-R187 -{+client-header-tagger{ab2p-block-dnt-R187} \ -} -# /static/media/curl.swf$domain=duba.com (easylistchina+easylist.txt: 1217) -/(.*/)?static/media/curl\.swf - -#ab2p-block-dnt-R188 -{+client-header-tagger{ab2p-block-dnt-R188} \ -} -# |http:$domain=e.70e.com|e701.net (easylistchina+easylist.txt: 1253) - -#ab2p-block-dnt-R189 -{+client-header-tagger{ab2p-block-dnt-R189} \ -} -# //rs.mail.ru/b$domain=e.mail.ru (advblock.txt: 6806) -rs.mail.ru/b - -#ab2p-block-dnt-R190 -{+client-header-tagger{ab2p-block-dnt-R190} \ -} -# ||adriver.ru/cgi-bin/erle.cgi?$object-subrequest,domain=echo.msk.ru (advblock.txt: 5454) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-block-dnt-R191 -{+client-header-tagger{ab2p-block-dnt-R191} \ -} -# ||adriver.ru/cgi-bin/click.$popup,domain=edinstvennaya.ua|gazeta.ua (advblock.txt: 113) -.adriver.ru/cgi-bin/click\. - -#ab2p-block-dnt-R192 -{+client-header-tagger{ab2p-block-dnt-R192} \ -} -# ||rackcdn.com/banner/$domain=enjore.com (easylistchina+easylist.txt: 40819) -.rackcdn.com/banner/ -# ||rackcdn.com/banner/$domain=enjore.com (easylist.txt: 30334) -.rackcdn.com/banner/ - -#ab2p-block-dnt-R193 -{+client-header-tagger{ab2p-block-dnt-R193} \ -} -# ||amazonaws.com^*MPU%20Banner.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42146) -.amazonaws.com/.*MPU%20Banner\.jpg -# ||amazonaws.com^*-Banner.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42144) -.amazonaws.com/.*-Banner\.jpg -# ||amazonaws.com^*-ad.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42143) -.amazonaws.com/.*-ad\.jpg -# ||amazonaws.com^*MPU%20Banner.jpg$domain=ewn.co.za (easylist.txt: 31661) -.amazonaws.com/.*MPU%20Banner\.jpg -# ||amazonaws.com^*-Banner.jpg$domain=ewn.co.za (easylist.txt: 31659) -.amazonaws.com/.*-Banner\.jpg -# ||amazonaws.com^*-ad.jpg$domain=ewn.co.za (easylist.txt: 31658) -.amazonaws.com/.*-ad\.jpg - -#ab2p-block-dnt-R194 -{+client-header-tagger{ab2p-block-dnt-R194} \ -} -# ^utm_source=$popup,domain=exashare.com|sex.com|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 46103) -/(.*[^\w%.-])?utm_source= -# ^utm_source=$popup,domain=exashare.com|sex.com|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 35618) -/(.*[^\w%.-])?utm_source= - -#ab2p-block-dnt-R195 -{+client-header-tagger{ab2p-block-dnt-R195} \ -} -# |https://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylistchina+easylist.txt: 45862) -# |http://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylistchina+easylist.txt: 45861) -# |https://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylist.txt: 35377) -# |http://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylist.txt: 35376) - -#ab2p-block-dnt-R196 -{+client-header-tagger{ab2p-block-dnt-R196} \ -} -# |http://$image,domain=explosm.net (easylistchina+easylist.txt: 46060) -# |http://$image,domain=explosm.net (easylist.txt: 35575) - -#ab2p-block-dnt-R197 -{+client-header-tagger{ab2p-block-dnt-R197} \ -} -# |https://$script,third-party,domain=extremetech.com (easylistchina+easylist.txt: 45854) -# |http://$script,third-party,domain=extremetech.com (easylistchina+easylist.txt: 45853) -# .xyz^$domain=extremetech.com (easylistchina+easylist.txt: 41901) -/.*\.xyz[^\w%.-] -.*.xyz -# ||cloudfront.net^$script,domain=extremetech.com (easylistchina+easylist.txt: 39970) -.cloudfront.net -# |https://$script,third-party,domain=extremetech.com (easylist.txt: 35369) -# |http://$script,third-party,domain=extremetech.com (easylist.txt: 35368) -# .xyz^$domain=extremetech.com (easylist.txt: 31416) -/.*\.xyz[^\w%.-] -.*.xyz -# ||cloudfront.net^$script,domain=extremetech.com (easylist.txt: 29485) -.cloudfront.net - -#ab2p-block-dnt-R198 -{+client-header-tagger{ab2p-block-dnt-R198} \ -} -# ||rackcdn.com^$popup,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47092) -.rackcdn.com -# |http://*?*^id^$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47070) -/.*\?.*[^\w%.-]id[^\w%.-] -# |http://*?*=$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47069) -/.*\?.*= -# ||rackcdn.com^$popup,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36607) -.rackcdn.com -# |http://*?*^id^$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36585) -/.*\?.*[^\w%.-]id[^\w%.-] -# |http://*?*=$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36584) -/.*\?.*= - -#ab2p-block-dnt-R199 -{+client-header-tagger{ab2p-block-dnt-R199} \ -} -# ||msecnd.net/script/$script,domain=eztv.ag|firedrive.com|limetorrents.cc|monova.org|sankakucomplex.com|sockshare.com|ukpirate.org|unblocked.la|userscloud.com|yourbittorrent.com (easylistchina+easylist.txt: 44041) -.msecnd.net/script/ -# ||msecnd.net/script/$script,domain=eztv.ag|firedrive.com|limetorrents.cc|monova.org|sankakucomplex.com|sockshare.com|ukpirate.org|unblocked.la|userscloud.com|yourbittorrent.com (easylist.txt: 33556) -.msecnd.net/script/ - -#ab2p-block-dnt-R200 -{+client-header-tagger{ab2p-block-dnt-R200} \ -} -# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina+easylist.txt: 1145) -/(.*/)?EZ-YAHOO/.* - -#ab2p-block-dnt-R201 -{+client-header-tagger{ab2p-block-dnt-R201} \ -} -# ||onlytrailer.ru/embed/$domain=f-picture.net|filmasik.net|radikal.ru (advblock.txt: 6179) -.onlytrailer.ru/embed/ - -#ab2p-block-dnt-R202 -{+client-header-tagger{ab2p-block-dnt-R202} \ -} -# ||fbcdn.net^*/flyers/$domain=facebook.com (easylistchina+easylist.txt: 42971) -.fbcdn.net/.*/flyers/ -# ||bing.com/fblogout?$subdocument,domain=facebook.com (easylistchina+easylist.txt: 42334) -.bing.com/fblogout\? -# ||fbcdn.net^*/flyers/$domain=facebook.com (easylist.txt: 32486) -.fbcdn.net/.*/flyers/ -# ||bing.com/fblogout?$subdocument,domain=facebook.com (easylist.txt: 31849) -.bing.com/fblogout\? - -#ab2p-block-dnt-R203 -{+client-header-tagger{ab2p-block-dnt-R203} \ -} -# /pagead/*$domain=fankudo.com (easylistchina+easylist.txt: 1206) -/(.*/)?pagead/.* - -#ab2p-block-dnt-R204 -{+client-header-tagger{ab2p-block-dnt-R204} \ -} -# ||mediaspanonline.com^*_Background.$domain=farmingshow.com (easylistchina+easylist.txt: 43924) -.mediaspanonline.com/.*_Background\. -# ||mediaspanonline.com^*_Background.$domain=farmingshow.com (easylist.txt: 33439) -.mediaspanonline.com/.*_Background\. - -#ab2p-block-dnt-R205 -{+client-header-tagger{ab2p-block-dnt-R205} \ -} -# ||mediaspanonline.com^*_Background_$domain=farmingshow.com|radiosport.co.nz (easylistchina+easylist.txt: 43925) -.mediaspanonline.com/.*_Background_ -# ||mediaspanonline.com^*_Background_$domain=farmingshow.com|radiosport.co.nz (easylist.txt: 33440) -.mediaspanonline.com/.*_Background_ - -#ab2p-block-dnt-R206 -{+client-header-tagger{ab2p-block-dnt-R206} \ -} -# ||ruralpressevents.com/agquip/logos/$domain=farmonline.com.au (easylistchina+easylist.txt: 40860) -.ruralpressevents.com/agquip/logos/ -# ||ruralpressevents.com/agquip/logos/$domain=farmonline.com.au (easylist.txt: 30375) -.ruralpressevents.com/agquip/logos/ - -#ab2p-block-dnt-R207 -{+client-header-tagger{ab2p-block-dnt-R207} \ -} -# ||bit.ly^$popup,domain=fastvideo.eu|rapidvideo.org|sh.st (easylistchina+easylist.txt: 46115) -.bit.ly -# ||bit.ly^$popup,domain=fastvideo.eu|rapidvideo.org|sh.st (easylist.txt: 35630) -.bit.ly - -#ab2p-block-dnt-R208 -{+client-header-tagger{ab2p-block-dnt-R208} \ -} -# ||cityads.ru/click-$popup,domain=fayloobmennik.net|lovekinozal.ru|rusfolder.com|rutor.org (advblock.txt: 130) -.cityads.ru/click- - -#ab2p-block-dnt-R209 -{+client-header-tagger{ab2p-block-dnt-R209} \ -} -# ||cloudfront.net^*banner$domain=fiaformulae.com (easylistchina+easylist.txt: 39972) -.cloudfront.net/.*banner -# ||cloudfront.net^*ad$domain=fiaformulae.com (easylistchina+easylist.txt: 39971) -.cloudfront.net/.*ad -# ||cloudfront.net^*banner$domain=fiaformulae.com (easylist.txt: 29487) -.cloudfront.net/.*banner -# ||cloudfront.net^*ad$domain=fiaformulae.com (easylist.txt: 29486) -.cloudfront.net/.*ad - -#ab2p-block-dnt-R210 -{+client-header-tagger{ab2p-block-dnt-R210} \ -} -# ||leaderdownload.com^$popup,domain=fiberupload.net (easylistchina+easylist.txt: 46162) -.leaderdownload.com -# ||leaderdownload.com^$popup,domain=fiberupload.net (easylist.txt: 35677) -.leaderdownload.com - -#ab2p-block-dnt-R211 -{+client-header-tagger{ab2p-block-dnt-R211} \ -} -# ||74.86.208.249^$domain=fijivillage.com (easylistchina+easylist.txt: 41988) -.74.86.208.249 -# ||74.86.208.249^$domain=fijivillage.com (easylist.txt: 31503) -.74.86.208.249 - -#ab2p-block-dnt-R212 -{+client-header-tagger{ab2p-block-dnt-R212} \ -} -# ||kalemaro.com^$popup,domain=filatak.com (easylistchina+easylist.txt: 46161) -.kalemaro.com -# ||kalemaro.com^$popup,domain=filatak.com (easylist.txt: 35676) -.kalemaro.com - -#ab2p-block-dnt-R213 -{+client-header-tagger{ab2p-block-dnt-R213} \ -} -# ||109.236.82.94^$domain=fileforever.net (easylistchina+easylist.txt: 41938) -.109.236.82.94 -# ||109.236.82.94^$domain=fileforever.net (easylist.txt: 31453) -.109.236.82.94 - -#ab2p-block-dnt-R214 -{+client-header-tagger{ab2p-block-dnt-R214} \ -} -# ||moevideo.net/framevideo/$domain=fileplaneta.com|freezpic.ru|mediapapa.org (advblock.txt: 6076) -.moevideo.net/framevideo/ - -#ab2p-block-dnt-R215 -{+client-header-tagger{ab2p-block-dnt-R215} \ -} -# ||itunes.apple.com^$popup,domain=fillinn.com (easylistchina+easylist.txt: 41308) -.itunes.apple.com -# ||itunes.apple.com^$popup,domain=fillinn.com (easylist.txt: 30823) -.itunes.apple.com - -#ab2p-block-dnt-R216 -{+client-header-tagger{ab2p-block-dnt-R216} \ -} -# ||photo4sell.com^$popup,domain=filmovizija.com (easylistchina+easylist.txt: 46174) -.photo4sell.com -# ||217.79.184.79^$domain=filmovizija.com (easylistchina+easylist.txt: 41958) -.217.79.184.79 -# ||photo4sell.com^$popup,domain=filmovizija.com (easylist.txt: 35689) -.photo4sell.com -# ||217.79.184.79^$domain=filmovizija.com (easylist.txt: 31473) -.217.79.184.79 - -#ab2p-block-dnt-R217 -{+client-header-tagger{ab2p-block-dnt-R217} \ -} -# |https://$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 45882) -# |http://$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 45881) -# |https://$script,third-party,domain=filmovizija.in (easylist.txt: 35397) -# |http://$script,third-party,domain=filmovizija.in (easylist.txt: 35396) - -#ab2p-block-dnt-R218 -{+client-header-tagger{ab2p-block-dnt-R218} \ -} -# ||ancestrydata.com/widget.html?$domain=findagrave.com (easylistchina+easylist.txt: 39761) -.ancestrydata.com/widget\.html\? -# ||ancestrydata.com/widget.html?$domain=findagrave.com (easylist.txt: 29276) -.ancestrydata.com/widget\.html\? - -#ab2p-block-dnt-R219 -{+client-header-tagger{ab2p-block-dnt-R219} \ -} -# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina+easylist.txt: 1140) -/(.*/)?cooperation/.* - -#ab2p-block-dnt-R220 -{+client-header-tagger{ab2p-block-dnt-R220} \ -} -# ||ad.adriver.ru^$domain=firstrownow.eu|kyivpost.com|uatoday.tv|unian.info (easylistchina+easylist.txt: 39624) -.ad.adriver.ru -# ||ad.adriver.ru^$domain=firstrownow.eu|kyivpost.com|uatoday.tv|unian.info (easylist.txt: 29139) -.ad.adriver.ru - -#ab2p-block-dnt-R221 -{+client-header-tagger{ab2p-block-dnt-R221} \ -} -# |http://li.ru/go?$popup,domain=fishki.net (advblock.txt: 29) -li.ru/go\? - -#ab2p-block-dnt-R222 -{+client-header-tagger{ab2p-block-dnt-R222} \ -} -# ||vibeo.to^$popup,domain=flashx.tv (easylistchina+easylist.txt: 46204) -.vibeo.to -# ||free-stream.tv^$popup,domain=flashx.tv (easylistchina+easylist.txt: 46138) -.free-stream.tv -# ||vibeo.to^$popup,domain=flashx.tv (easylist.txt: 35719) -.vibeo.to -# ||free-stream.tv^$popup,domain=flashx.tv (easylist.txt: 35653) -.free-stream.tv - -#ab2p-block-dnt-R223 -{+client-header-tagger{ab2p-block-dnt-R223} \ -} -# ||k.youku.com^$domain=flvcd.com (easylistchina+easylist.txt: 3698) -.k.youku.com - -#ab2p-block-dnt-R224 -{+client-header-tagger{ab2p-block-dnt-R224} \ -} -# ||m.uploadedit.com^$third-party,domain=flysat.com (easylistchina+easylist.txt: 40563) -.m.uploadedit.com -# ||m.uploadedit.com^$third-party,domain=flysat.com (easylist.txt: 30078) -.m.uploadedit.com - -#ab2p-block-dnt-R225 -{+client-header-tagger{ab2p-block-dnt-R225} \ -} -# ||rq.adfox.ru^$domain=fontanka.ru (advblock.txt: 6325) -.rq.adfox.ru - -#ab2p-block-dnt-R226 -{+client-header-tagger{ab2p-block-dnt-R226} \ -} -# /upload/rk/*$domain=footballreview.ru|innov.ru|newkaliningrad.ru|seonews.ru (advblock.txt: 5400) -/(.*/)?upload/rk/.* - -#ab2p-block-dnt-R227 -{+client-header-tagger{ab2p-block-dnt-R227} \ -} -# ||srvv.co^$domain=foreverceleb.com (easylistchina+easylist.txt: 40961) -.srvv.co -# ||srvv.co^$domain=foreverceleb.com (easylist.txt: 30476) -.srvv.co - -#ab2p-block-dnt-R228 -{+client-header-tagger{ab2p-block-dnt-R228} \ -} -# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina+easylist.txt: 2486) -.cj.qidian.com/Picture/ - -#ab2p-block-dnt-R229 -{+client-header-tagger{ab2p-block-dnt-R229} \ -} -# -torrent.*/t/$script,domain=free-torrent.org|free-torrents.org|game-torrent.info (advblock.txt: 5367) -/.*-torrent\..*/t/ -.*-torrent.*./(.*/)?t/ -# -torrent.*/forum/$object,domain=free-torrent.org|free-torrents.org|game-torrent.info (advblock.txt: 5366) -/.*-torrent\..*/forum/ -.*-torrent.*./(.*/)?forum/ - -#ab2p-block-dnt-R230 -{+client-header-tagger{ab2p-block-dnt-R230} \ -} -# .space^$third-party,domain=free-torrent.org|free-torrents.org|game-torrent.info|jpgstore.ru|pics2pay.ru (advblock.txt: 5373) -/.*\.space[^\w%.-] -.*.space - -#ab2p-block-dnt-R231 -{+client-header-tagger{ab2p-block-dnt-R231} \ -} -# $third-party,script,domain=free-torrents.org|hentaichan.ru|nude-moon.com (advblock.txt: 5365) - - -#ab2p-block-dnt-R232 -{+client-header-tagger{ab2p-block-dnt-R232} \ -} -# ||ruorange.org^$popup,domain=freezpic.ru (advblock.txt: 173) -.ruorange.org - -#ab2p-block-dnt-R233 -{+client-header-tagger{ab2p-block-dnt-R233} \ -} -# ||pik-tv.com/embed/$domain=freshrecords.ru (advblock.txt: 6215) -.pik-tv.com/embed/ - -#ab2p-block-dnt-R234 -{+client-header-tagger{ab2p-block-dnt-R234} \ -} -# ||casinobonusdeal.com^$subdocument,domain=frombar.com|gledaisport.com|smotrisport.com|sportcategory.com|sportlemon.org|sportlemon.tv (easylistchina+easylist.txt: 39924) -.casinobonusdeal.com -# ||casinobonusdeal.com^$subdocument,domain=frombar.com|gledaisport.com|smotrisport.com|sportcategory.com|sportlemon.org|sportlemon.tv (easylist.txt: 29439) -.casinobonusdeal.com - -#ab2p-block-dnt-R235 -{+client-header-tagger{ab2p-block-dnt-R235} \ -} -# ||rackcdn.com/brokers/$third-party,domain=fxempire.com|fxempire.de|fxempire.it|fxempire.nl (easylistchina+easylist.txt: 40820) -.rackcdn.com/brokers/ -# ||rackcdn.com/brokers/$third-party,domain=fxempire.com|fxempire.de|fxempire.it|fxempire.nl (easylist.txt: 30335) -.rackcdn.com/brokers/ - -#ab2p-block-dnt-R236 -{+client-header-tagger{ab2p-block-dnt-R236} \ -} -# ||thebestbookies.com^$popup,domain=f谋rstrowsports.eu (easylistchina+easylist.txt: 46190) -.thebestbookies.com -# ||thebestbookies.com^$popup,domain=f谋rstrowsports.eu (easylist.txt: 35705) -.thebestbookies.com - -#ab2p-block-dnt-R237 -{+client-header-tagger{ab2p-block-dnt-R237} \ -} -# /static/banners/*$domain=gagadget.com|maxpark.com|vse-sto.com.ua (advblock.txt: 5397) -/(.*/)?static/banners/.* - -#ab2p-block-dnt-R238 -{+client-header-tagger{ab2p-block-dnt-R238} \ -} -# /jquery.$domain=game.macx.cn (easylistchina+easylist.txt: 1176) -/(.*/)?jquery\. -jquery.*. - -#ab2p-block-dnt-R239 -{+client-header-tagger{ab2p-block-dnt-R239} \ -} -# /web/ad/*$domain=gamer.com.tw (easylistchina+easylist.txt: 1229) -/(.*/)?web/ad/.* -# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina+easylist.txt: 1151) -/(.*/)?gamer/.* -# /baha/*$subdocument,domain=gamer.com.tw (easylistchina+easylist.txt: 1130) -/(.*/)?baha/.* - -#ab2p-block-dnt-R240 -{+client-header-tagger{ab2p-block-dnt-R240} \ -} -# ||imagebam.com/download/$image,domain=ganool.com (easylistchina+easylist.txt: 43443) -.imagebam.com/download/ -# ||idup.in/embed$third-party,domain=ganool.com (easylistchina+easylist.txt: 40417) -.idup.in/embed -# ||imagebam.com/download/$image,domain=ganool.com (easylist.txt: 32958) -.imagebam.com/download/ -# ||idup.in/embed$third-party,domain=ganool.com (easylist.txt: 29932) -.idup.in/embed - -#ab2p-block-dnt-R241 -{+client-header-tagger{ab2p-block-dnt-R241} \ -} -# /\/[0-9].*\-.*\-[a-z0-9]{4}/$script,xmlhttprequest,domain=gaytube.com|keezmovies.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 46222) -/(.*/)?\\/\[0-9\]\..*\\-\..*\\-\[a-z0-9\]\{4\}/ -/\/[0-9].*\-.*\-[a-z0-9]{4} -# /\/[0-9].*\-.*\-[a-z0-9]{4}/$script,xmlhttprequest,domain=gaytube.com|keezmovies.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylist.txt: 35737) -/(.*/)?\\/\[0-9\]\..*\\-\..*\\-\[a-z0-9\]\{4\}/ -/\/[0-9].*\-.*\-[a-z0-9]{4} - -#ab2p-block-dnt-R242 -{+client-header-tagger{ab2p-block-dnt-R242} \ -} -# ||captchaad.com/captchaad.js$domain=gca.sh (easylistchina+easylist.txt: 42462) -.captchaad.com/captchaad\.js -# ||captchaad.com/captchaad.js$domain=gca.sh (easylist.txt: 31977) -.captchaad.com/captchaad\.js - -#ab2p-block-dnt-R243 -{+client-header-tagger{ab2p-block-dnt-R243} \ -} -# ||4548621445004054774f0039660873e9ae60d8fb.googledrive.com^$domain=gearshout.net (advblock.txt: 5434) -.4548621445004054774f0039660873e9ae60d8fb.googledrive.com - -#ab2p-block-dnt-R244 -{+client-header-tagger{ab2p-block-dnt-R244} \ -} -# /marketing/cover/*$domain=geekpark.net (easylistchina+easylist.txt: 1188) -/(.*/)?marketing/cover/.* - -#ab2p-block-dnt-R245 -{+client-header-tagger{ab2p-block-dnt-R245} \ -} -# ||thedoujin.com^$domain=gelbooru.com (easylistchina+easylist.txt: 46922) -.thedoujin.com -# ||twitch.tv/widgets/live_embed_player.swf$domain=gelbooru.com (easylistchina+easylist.txt: 45298) -.twitch.tv/widgets/live_embed_player\.swf -# ||thedoujin.com^$domain=gelbooru.com (easylist.txt: 36437) -.thedoujin.com -# ||twitch.tv/widgets/live_embed_player.swf$domain=gelbooru.com (easylist.txt: 34813) -.twitch.tv/widgets/live_embed_player\.swf - -#ab2p-block-dnt-R246 -{+client-header-tagger{ab2p-block-dnt-R246} \ -} -# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina+easylist.txt: 3490) -.info.lm.tv.sohu.com - -#ab2p-block-dnt-R247 -{+client-header-tagger{ab2p-block-dnt-R247} \ -} -# ||wordpress.com^*/amazon2-center-top.$domain=gigaom.com (easylistchina+easylist.txt: 45632) -.wordpress.com/.*/amazon2-center-top\. -# ||wordpress.com^*/amazon2-center-top.$domain=gigaom.com (easylist.txt: 35147) -.wordpress.com/.*/amazon2-center-top\. - -#ab2p-block-dnt-R248 -{+client-header-tagger{ab2p-block-dnt-R248} \ -} -# ||video-cdn.abcnews.com^*_ad_$object-subrequest,domain=go.com (easylistchina+easylist.txt: 45411) -.video-cdn.abcnews.com/.*_ad_ -# ||video-cdn.abcnews.com^*_ad_$object-subrequest,domain=go.com (easylist.txt: 34926) -.video-cdn.abcnews.com/.*_ad_ - -#ab2p-block-dnt-R249 -{+client-header-tagger{ab2p-block-dnt-R249} \ -} -# /^https?://goodgame\.ru/[a-z0-9]+$/$subdocument,domain=goodgame.ru (advblock.txt: 5378) -/(.*/)?[^\w%.-]https\?://goodgame\\\.ru/\[a-z0-9\]\+\$/ -/^https?://goodgame\.ru/[a-z0-9]+$ - -#ab2p-block-dnt-R250 -{+client-header-tagger{ab2p-block-dnt-R250} \ -} -# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina+easylist.txt: 4856) -.top.taobao.com/interface_v2\.php\? - -#ab2p-block-dnt-R251 -{+client-header-tagger{ab2p-block-dnt-R251} \ -} -# ||dropbox.com^*/aff-resources/$domain=gramfeed.com (easylistchina+easylist.txt: 40179) -.dropbox.com/.*/aff-resources/ -# ||dropbox.com^*/aff-resources/$domain=gramfeed.com (easylist.txt: 29694) -.dropbox.com/.*/aff-resources/ - -#ab2p-block-dnt-R252 -{+client-header-tagger{ab2p-block-dnt-R252} \ -} -# ||megaswf.com/file/$domain=gruntig.net (easylistchina+easylist.txt: 43936) -.megaswf.com/file/ -# ||gruntig2008.opendrive.com^$domain=gruntig.net (easylistchina+easylist.txt: 43278) -.gruntig2008.opendrive.com -# ||megaswf.com/file/$domain=gruntig.net (easylist.txt: 33451) -.megaswf.com/file/ -# ||gruntig2008.opendrive.com^$domain=gruntig.net (easylist.txt: 32793) -.gruntig2008.opendrive.com - -#ab2p-block-dnt-R253 -{+client-header-tagger{ab2p-block-dnt-R253} \ -} -# ||amazonaws.com/banner/$domain=gserp.com (easylistchina+easylist.txt: 39741) -.amazonaws.com/banner/ -# ||amazonaws.com/banner/$domain=gserp.com (easylist.txt: 29256) -.amazonaws.com/banner/ - -#ab2p-block-dnt-R254 -{+client-header-tagger{ab2p-block-dnt-R254} \ -} -# /bao/uploaded/*$domain=hacg.lol (easylistchina+easylist.txt: 1134) -/(.*/)?bao/uploaded/.* - -#ab2p-block-dnt-R255 -{+client-header-tagger{ab2p-block-dnt-R255} \ -} -# ||rackcdn.com^*/banners/$domain=hanime.tv (easylistchina+easylist.txt: 46823) -.rackcdn.com/.*/banners/ -# ||rackcdn.com^*/banners/$domain=hanime.tv (easylist.txt: 36338) -.rackcdn.com/.*/banners/ - -#ab2p-block-dnt-R256 -{+client-header-tagger{ab2p-block-dnt-R256} \ -} -# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina+easylist.txt: 1163) -/(.*/)?Images/ak47/.* - -#ab2p-block-dnt-R257 -{+client-header-tagger{ab2p-block-dnt-R257} \ -} -# ||amazonaws.com/kbnetworkz/$domain=hardforum.com (easylistchina+easylist.txt: 42141) -.amazonaws.com/kbnetworkz/ -# ||amazonaws.com/kbnetworkz/$domain=hardforum.com (easylist.txt: 31656) -.amazonaws.com/kbnetworkz/ - -#ab2p-block-dnt-R258 -{+client-header-tagger{ab2p-block-dnt-R258} \ -} -# |http://$script,third-party,domain=have69.net|i-gay.org (easylistchina+easylist.txt: 46226) -# |http://$script,third-party,domain=have69.net|i-gay.org (easylist.txt: 35741) - -#ab2p-block-dnt-R259 -{+client-header-tagger{ab2p-block-dnt-R259} \ -} -# ||tracker.hdclub.com.ua/dox/$domain=hdclub.org|tracker.hdclub.com.ua (advblock.txt: 6484) -.tracker.hdclub.com.ua/dox/ - -#ab2p-block-dnt-R260 -{+client-header-tagger{ab2p-block-dnt-R260} \ -} -# ||rackcdn.com^$domain=hdkinomax.com (advblock.txt: 6284) -.rackcdn.com - -#ab2p-block-dnt-R261 -{+client-header-tagger{ab2p-block-dnt-R261} \ -} -# ||51img1.com^$domain=hdscg.com|v8gay.com (easylistchina+easylist.txt: 1669) -.51img1.com - -#ab2p-block-dnt-R262 -{+client-header-tagger{ab2p-block-dnt-R262} \ -} -# ||youtube.com^$domain=help2play.com|otvetes.com|vkonagt.com (advblock.txt: 208) -.youtube.com - -#ab2p-block-dnt-R263 -{+client-header-tagger{ab2p-block-dnt-R263} \ -} -# ||xldytt.com^$popup,domain=henbt.com (easylistchina+easylist.txt: 1083) -.xldytt.com - -#ab2p-block-dnt-R264 -{+client-header-tagger{ab2p-block-dnt-R264} \ -} -# ||avetirus.ru^$domain=hentaiz.org (advblock.txt: 5518) -.avetirus.ru - -#ab2p-block-dnt-R265 -{+client-header-tagger{ab2p-block-dnt-R265} \ -} -# ||watchclip.tv^$popup,domain=hipfile.com (easylistchina+easylist.txt: 46210) -.watchclip.tv -# ||watchclip.tv^$popup,domain=hipfile.com (easylist.txt: 35725) -.watchclip.tv - -#ab2p-block-dnt-R266 -{+client-header-tagger{ab2p-block-dnt-R266} \ -} -# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina+easylist.txt: 4441) -.s.yimg.com/ja/ap/ - -#ab2p-block-dnt-R267 -{+client-header-tagger{ab2p-block-dnt-R267} \ -} -# /nfs/ad/*$domain=hkbici.com (easylistchina+easylist.txt: 1201) -/(.*/)?nfs/ad/.* -# /attachment/ad/*$domain=hkbici.com (easylistchina+easylist.txt: 1126) -/(.*/)?attachment/ad/.* - -#ab2p-block-dnt-R268 -{+client-header-tagger{ab2p-block-dnt-R268} \ -} -# ||megalife.com.hk^$domain=hkgolden.com (easylistchina+easylist.txt: 3925) -.megalife.com.hk - -#ab2p-block-dnt-R269 -{+client-header-tagger{ab2p-block-dnt-R269} \ -} -# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk|wwledsbb.net (easylistchina+easylist.txt: 1257) - -#ab2p-block-dnt-R270 -{+client-header-tagger{ab2p-block-dnt-R270} \ -} -# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina+easylist.txt: 1413) -.163.com/special/ - -#ab2p-block-dnt-R271 -{+client-header-tagger{ab2p-block-dnt-R271} \ -} -# ||alicdn.com^*.jpg$domain=htai.me (easylistchina+easylist.txt: 2081) -.alicdn.com/.*\.jpg -# ||alicdn.com^*.gif$domain=htai.me (easylistchina+easylist.txt: 2080) -.alicdn.com/.*\.gif - -#ab2p-block-dnt-R272 -{+client-header-tagger{ab2p-block-dnt-R272} \ -} -# ||google.com.eg/url?$popup,domain=hulkload.com (easylistchina+easylist.txt: 46147) -.google.com.eg/url\? -# ||google.com.eg/url?$popup,domain=hulkload.com (easylist.txt: 35662) -.google.com.eg/url\? - -#ab2p-block-dnt-R273 -{+client-header-tagger{ab2p-block-dnt-R273} \ -} -# ||gotupload.com^$subdocument,domain=hulkshare.com (easylistchina+easylist.txt: 43260) -.gotupload.com -# ||gotupload.com^$subdocument,domain=hulkshare.com (easylist.txt: 32775) -.gotupload.com - -#ab2p-block-dnt-R274 -{+client-header-tagger{ab2p-block-dnt-R274} \ -} -# /forum/images/*$object,domain=hvosty.ru|vsehvosty.ru (advblock.txt: 5383) -/(.*/)?forum/images/.* - -#ab2p-block-dnt-R275 -{+client-header-tagger{ab2p-block-dnt-R275} \ -} -# ||noiseblocker.de^$domain=hw-lab.com (advblock.txt: 6139) -.noiseblocker.de -# ||antec.com/*/web_banner/$domain=hw-lab.com (advblock.txt: 5495) -.antec.com/.*/web_banner/ - -#ab2p-block-dnt-R276 -{+client-header-tagger{ab2p-block-dnt-R276} \ -} -# ||hwcdn.net^$domain=i24news.tv|newindianexpress.com (easylistchina+easylist.txt: 40402) -.hwcdn.net -# ||hwcdn.net^$domain=i24news.tv|newindianexpress.com (easylist.txt: 29917) -.hwcdn.net - -#ab2p-block-dnt-R277 -{+client-header-tagger{ab2p-block-dnt-R277} \ -} -# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina+easylist.txt: 3542) -.item.taobao.com - -#ab2p-block-dnt-R278 -{+client-header-tagger{ab2p-block-dnt-R278} \ -} -# ||axisbank.com/shopaholics-festival/$domain=ibnlive.in.com (easylistchina+easylist.txt: 39796) -.axisbank.com/shopaholics-festival/ -# ||axisbank.com/shopaholics-festival/$domain=ibnlive.in.com (easylist.txt: 29311) -.axisbank.com/shopaholics-festival/ - -#ab2p-block-dnt-R279 -{+client-header-tagger{ab2p-block-dnt-R279} \ -} -# /tres/recommend/*$domain=ifeng.com (easylistchina+easylist.txt: 1223) -/(.*/)?tres/recommend/.* - -#ab2p-block-dnt-R280 -{+client-header-tagger{ab2p-block-dnt-R280} \ -} -# ||ru/code/$domain=imageban.ru|tekst-pesni-tut.ru (advblock.txt: 3343) - -#ab2p-block-dnt-R281 -{+client-header-tagger{ab2p-block-dnt-R281} \ -} -# ||wordpress.com^*_250x2501.$domain=inspirationfeed.com (easylistchina+easylist.txt: 45635) -.wordpress.com/.*_250x2501\. -# ||wordpress.com^*/mediatemple.jpg$domain=inspirationfeed.com (easylistchina+easylist.txt: 45634) -.wordpress.com/.*/mediatemple\.jpg -# ||wordpress.com^*-banner-$domain=inspirationfeed.com (easylistchina+easylist.txt: 45631) -.wordpress.com/.*-banner- -# ||wordpress.com^*_250x2501.$domain=inspirationfeed.com (easylist.txt: 35150) -.wordpress.com/.*_250x2501\. -# ||wordpress.com^*/mediatemple.jpg$domain=inspirationfeed.com (easylist.txt: 35149) -.wordpress.com/.*/mediatemple\.jpg -# ||wordpress.com^*-banner-$domain=inspirationfeed.com (easylist.txt: 35146) -.wordpress.com/.*-banner- - -#ab2p-block-dnt-R282 -{+client-header-tagger{ab2p-block-dnt-R282} \ -} -# $third-party,object,subdocument,domain=ints.rusfolder.com|ints.rusfolder.net|piccash.net|pornolab.net (advblock.txt: 5364) - - -#ab2p-block-dnt-R283 -{+client-header-tagger{ab2p-block-dnt-R283} \ -} -# ||rackspacecloud.com/Broker%20Buttons/$domain=investing.com (easylistchina+easylist.txt: 40822) -.rackspacecloud.com/Broker%20Buttons/ -# ||rackspacecloud.com/Broker%20Buttons/$domain=investing.com (easylist.txt: 30337) -.rackspacecloud.com/Broker%20Buttons/ - -#ab2p-block-dnt-R284 -{+client-header-tagger{ab2p-block-dnt-R284} \ -} -# ||livecrics.livet20worldcup.com/video.php$domain=iplstream.com (easylistchina+easylist.txt: 40530) -.livecrics.livet20worldcup.com/video\.php -# ||livecrics.livet20worldcup.com/video.php$domain=iplstream.com (easylist.txt: 30045) -.livecrics.livet20worldcup.com/video\.php - -#ab2p-block-dnt-R285 -{+client-header-tagger{ab2p-block-dnt-R285} \ -} -# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina+easylist.txt: 1109) -/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ -/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf -# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina+easylist.txt: 1071) -.miaozhen.com - -#ab2p-block-dnt-R286 -{+client-header-tagger{ab2p-block-dnt-R286} \ -} -# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina+easylist.txt: 1110) -/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ -/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) - -#ab2p-block-dnt-R287 -{+client-header-tagger{ab2p-block-dnt-R287} \ -} -# ||dfs.digitalaccess.ru^$object-subrequest,domain=ivi.ru (advblock.txt: 5646) -.dfs.digitalaccess.ru - -#ab2p-block-dnt-R288 -{+client-header-tagger{ab2p-block-dnt-R288} \ -} -# ||imgchr.com^$domain=iyejie.com (easylistchina+easylist.txt: 3468) -.imgchr.com - -#ab2p-block-dnt-R289 -{+client-header-tagger{ab2p-block-dnt-R289} \ -} -# ||sinaimg.cn^$domain=izzs.cc (easylistchina+easylist.txt: 5454) -.sinaimg.cn - -#ab2p-block-dnt-R290 -{+client-header-tagger{ab2p-block-dnt-R290} \ -} -# ||brightcove.com/js/BrightcoveExperiences.js$domain=java-forums.org (easylistchina+easylist.txt: 42390) -.brightcove.com/js/BrightcoveExperiences\.js -# ||brightcove.com/js/BrightcoveExperiences.js$domain=java-forums.org (easylist.txt: 31905) -.brightcove.com/js/BrightcoveExperiences\.js - -#ab2p-block-dnt-R291 -{+client-header-tagger{ab2p-block-dnt-R291} \ -} -# ||most3.ykt.ru/vast/$xmlhttprequest,domain=joker.ykt.ru (advblock.txt: 6085) -.most3.ykt.ru/vast/ - -#ab2p-block-dnt-R292 -{+client-header-tagger{ab2p-block-dnt-R292} \ -} -# /joynew.css?$domain=joyreactor.cc|reactor.cc (advblock.txt: 5392) -/(.*/)?joynew\.css\? - -#ab2p-block-dnt-R293 -{+client-header-tagger{ab2p-block-dnt-R293} \ -} -# ||blogsmithmedia.com^*wallpaper$image,domain=joystiq.com (easylistchina+easylist.txt: 42370) -.blogsmithmedia.com/.*wallpaper -# ||blogsmithmedia.com^*wallpaper$image,domain=joystiq.com (easylist.txt: 31885) -.blogsmithmedia.com/.*wallpaper - -#ab2p-block-dnt-R294 -{+client-header-tagger{ab2p-block-dnt-R294} \ -} -# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 4402) -.riju.com/pr/ -# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 3640) -.jpunion.com -# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 1173) -/(.*/)?img/kana\.jpg -# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 1172) -/(.*/)?img/disc\.jpg - -#ab2p-block-dnt-R295 -{+client-header-tagger{ab2p-block-dnt-R295} \ -} -# ||com^$popup,domain=kartinka.in (advblock.txt: 32) - -#ab2p-block-dnt-R296 -{+client-header-tagger{ab2p-block-dnt-R296} \ -} -# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina+easylist.txt: 4331) -.qq.com/bqq_qfpic/ - -#ab2p-block-dnt-R297 -{+client-header-tagger{ab2p-block-dnt-R297} \ -} -# ||v.adfox.ru^$object-subrequest,domain=kg-portal.ru|tvc.ru|tvzvezda.ru|zoomby.ru (advblock.txt: 6531) -.v.adfox.ru - -#ab2p-block-dnt-R298 -{+client-header-tagger{ab2p-block-dnt-R298} \ -} -# ||toptrailers.net^$popup,domain=kingfiles.net|uploadrocket.net (easylistchina+easylist.txt: 46196) -.toptrailers.net -# ||toptrailers.net^$popup,domain=kingfiles.net|uploadrocket.net (easylist.txt: 35711) -.toptrailers.net - -#ab2p-block-dnt-R299 -{+client-header-tagger{ab2p-block-dnt-R299} \ -} -# ||g-tv.ru^*&auto_play=1$domain=kino-dom.tv (advblock.txt: 5759) -.g-tv.ru/.*&auto_play=1 - -#ab2p-block-dnt-R300 -{+client-header-tagger{ab2p-block-dnt-R300} \ -} -# /swf/*$domain=kino-live.org|riper.am (advblock.txt: 5398) -/(.*/)?swf/.* -# /js/init.js$domain=kino-live.org|riper.am (advblock.txt: 5393) -/(.*/)?js/init\.js -# /images/*-banners.$domain=kino-live.org|riper.am (advblock.txt: 5386) -/(.*/)?images/.*-banners\. -# /css/styles.css$domain=kino-live.org|riper.am (advblock.txt: 5381) -/(.*/)?css/styles\.css - -#ab2p-block-dnt-R301 -{+client-header-tagger{ab2p-block-dnt-R301} \ -} -# ||data.videonow.ru^$domain=kinonews.ru|lifenews.ru|sport-express.ru (advblock.txt: 5630) -.data.videonow.ru - -#ab2p-block-dnt-R302 -{+client-header-tagger{ab2p-block-dnt-R302} \ -} -# ||cdn.kinoprofi.net/vasp$object-subrequest,domain=kinoprofi.net (advblock.txt: 5580) -.cdn.kinoprofi.net/vasp - -#ab2p-block-dnt-R303 -{+client-header-tagger{ab2p-block-dnt-R303} \ -} -# /com.js$domain=kinox.to (easylistchina+easylist.txt: 41909) -/(.*/)?com\.js -com.js*. -# /com.js$domain=kinox.to (easylist.txt: 31424) -/(.*/)?com\.js -com.js*. - -#ab2p-block-dnt-R304 -{+client-header-tagger{ab2p-block-dnt-R304} \ -} -# ||cdn77.org^$script,domain=kinox.to|movie4k.to|thevideo.me|unblocked.la|vidup.me (easylistchina+easylist.txt: 42498) -.cdn77.org -# ||cdn77.org^$script,domain=kinox.to|movie4k.to|thevideo.me|unblocked.la|vidup.me (easylist.txt: 32013) -.cdn77.org - -#ab2p-block-dnt-R305 -{+client-header-tagger{ab2p-block-dnt-R305} \ -} -# /rklm/*$domain=kirovnet.ru|ui.ua (advblock.txt: 5394) -/(.*/)?rklm/.* - -#ab2p-block-dnt-R306 -{+client-header-tagger{ab2p-block-dnt-R306} \ -} -# ||travelplus.tv^$third-party,domain=kissanime.com (easylistchina+easylist.txt: 41071) -.travelplus.tv -# ||travelplus.tv^$third-party,domain=kissanime.com (easylist.txt: 30586) -.travelplus.tv - -#ab2p-block-dnt-R307 -{+client-header-tagger{ab2p-block-dnt-R307} \ -} -# ||koob.ru/*.php?*=$domain=klex.ru (advblock.txt: 5960) -.koob.ru/.*\.php\?.*= - -#ab2p-block-dnt-R308 -{+client-header-tagger{ab2p-block-dnt-R308} \ -} -# ||bmu.img.com.ua^$domain=korrespondent.net (advblock.txt: 5560) -.bmu.img.com.ua - -#ab2p-block-dnt-R309 -{+client-header-tagger{ab2p-block-dnt-R309} \ -} -# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina+easylist.txt: 1108) -/(.*/)?\?age=1& - -#ab2p-block-dnt-R310 -{+client-header-tagger{ab2p-block-dnt-R310} \ -} -# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina+easylist.txt: 1169) -/(.*/)?img/.*\.gif - -#ab2p-block-dnt-R311 -{+client-header-tagger{ab2p-block-dnt-R311} \ -} -# ||porn101.com^$popup,domain=lexsteele.com (easylistchina+easylist.txt: 47087) -.porn101.com -# ||porn101.com^$popup,domain=lexsteele.com (easylist.txt: 36602) -.porn101.com - -#ab2p-block-dnt-R312 -{+client-header-tagger{ab2p-block-dnt-R312} \ -} -# .fancybox.$domain=life.com.tw (easylistchina+easylist.txt: 1093) -/.*\.fancybox\. -.*.fancybox.*. - -#ab2p-block-dnt-R313 -{+client-header-tagger{ab2p-block-dnt-R313} \ -} -# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina+easylist.txt: 4818) -.tietuku.com/.*\.gif - -#ab2p-block-dnt-R314 -{+client-header-tagger{ab2p-block-dnt-R314} \ -} -# ||bp.blogspot.com^*banner*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42383) -.bp.blogspot.com/.*banner.*\.jpg -# ||bp.blogspot.com^*/poster*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42382) -.bp.blogspot.com/.*/poster.*\.jpg -# ||bp.blogspot.com^*%2bad*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42381) -.bp.blogspot.com/.*%2bad.*\.jpg -# ||bp.blogspot.com^*banner*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31898) -.bp.blogspot.com/.*banner.*\.jpg -# ||bp.blogspot.com^*/poster*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31897) -.bp.blogspot.com/.*/poster.*\.jpg -# ||bp.blogspot.com^*%2bad*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31896) -.bp.blogspot.com/.*%2bad.*\.jpg - -#ab2p-block-dnt-R315 -{+client-header-tagger{ab2p-block-dnt-R315} \ -} -# ||masqforo.com^$third-party,domain=linkbucks.com (easylistchina+easylist.txt: 40574) -.masqforo.com -# ||masqforo.com^$third-party,domain=linkbucks.com (easylist.txt: 30089) -.masqforo.com - -#ab2p-block-dnt-R316 -{+client-header-tagger{ab2p-block-dnt-R316} \ -} -# |http://$script,subdocument,third-party,domain=linkshrink.net (easylistchina+easylist.txt: 45925) -# |http://$script,subdocument,third-party,domain=linkshrink.net (easylist.txt: 35440) - -#ab2p-block-dnt-R317 -{+client-header-tagger{ab2p-block-dnt-R317} \ -} -# ||gp.jstv.com^$domain=live.jstv.com (easylistchina+easylist.txt: 3046) -.gp.jstv.com - -#ab2p-block-dnt-R318 -{+client-header-tagger{ab2p-block-dnt-R318} \ -} -# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina+easylist.txt: 1142) -/(.*/)?da\.aspx$ -da.aspx - -#ab2p-block-dnt-R319 -{+client-header-tagger{ab2p-block-dnt-R319} \ -} -# ||mp3albomov.net^$popup,domain=lossless-galaxy.ru (advblock.txt: 37) -.mp3albomov.net - -#ab2p-block-dnt-R320 -{+client-header-tagger{ab2p-block-dnt-R320} \ -} -# /js/index_right$domain=lt57.com|ltwbook.com|ltxsw.com (easylistchina+easylist.txt: 1181) -/(.*/)?js/index_right -# /js/index_*68860.js$domain=lt57.com|ltwbook.com|ltxsw.com (easylistchina+easylist.txt: 1180) -/(.*/)?js/index_.*68860\.js - -#ab2p-block-dnt-R321 -{+client-header-tagger{ab2p-block-dnt-R321} \ -} -# ||qndown.com^$domain=lululu8.net (easylistchina+easylist.txt: 4326) -.qndown.com - -#ab2p-block-dnt-R322 -{+client-header-tagger{ab2p-block-dnt-R322} \ -} -# ||abbigli.com^$popup,domain=luxtorrents.com (advblock.txt: 30) -.abbigli.com - -#ab2p-block-dnt-R323 -{+client-header-tagger{ab2p-block-dnt-R323} \ -} -# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina+easylist.txt: 1724) -.55.la/anonymous/banner/ - -#ab2p-block-dnt-R324 -{+client-header-tagger{ab2p-block-dnt-R324} \ -} -# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina+easylist.txt: 4140) -.pchome.com.tw/iframe/ - -#ab2p-block-dnt-R325 -{+client-header-tagger{ab2p-block-dnt-R325} \ -} -# ||c-cdn.coub.com^$script,domain=mail.ru (advblock.txt: 6811) -.c-cdn.coub.com -# /brandingVideo.js$domain=mail.ru (advblock.txt: 6810) -/(.*/)?brandingVideo\.js -brandingVideo.js*. - -#ab2p-block-dnt-R326 -{+client-header-tagger{ab2p-block-dnt-R326} \ -} -# ||beap.gemini.yahoo.com^$popup,domain=mail.yahoo.com (easylistchina+easylist.txt: 46114) -.beap.gemini.yahoo.com -# ||beap.gemini.yahoo.com^$popup,domain=mail.yahoo.com (easylist.txt: 35629) -.beap.gemini.yahoo.com - -#ab2p-block-dnt-R327 -{+client-header-tagger{ab2p-block-dnt-R327} \ -} -# ||pagefair.com/static/adblock_detection/js/d.min.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 46087) -.pagefair.com/static/adblock_detection/js/d\.min\.js -# ||mlg-ad-ops.s3.amazonaws.com^$domain=majorleaguegaming.com (easylistchina+easylist.txt: 43997) -.mlg-ad-ops.s3.amazonaws.com -# ||pagefair.com/static/adblock_detection/js/d.min.js$domain=majorleaguegaming.com (easylist.txt: 35602) -.pagefair.com/static/adblock_detection/js/d\.min\.js -# ||mlg-ad-ops.s3.amazonaws.com^$domain=majorleaguegaming.com (easylist.txt: 33512) -.mlg-ad-ops.s3.amazonaws.com - -#ab2p-block-dnt-R328 -{+client-header-tagger{ab2p-block-dnt-R328} \ -} -# ||wambacdn.net/images/upload/adv/$domain=mamba.ru (easylistchina+easylist.txt: 45499) -.wambacdn.net/images/upload/adv/ -# ||wambacdn.net/images/upload/adv/$domain=mamba.ru (easylist.txt: 35014) -.wambacdn.net/images/upload/adv/ - -#ab2p-block-dnt-R329 -{+client-header-tagger{ab2p-block-dnt-R329} \ -} -# ||mfcdn.net/store/banners/$domain=mangafox.me (easylistchina+easylist.txt: 43965) -.mfcdn.net/store/banners/ -# ||mfcdn.net/store/banners/$domain=mangafox.me (easylist.txt: 33480) -.mfcdn.net/store/banners/ - -#ab2p-block-dnt-R330 -{+client-header-tagger{ab2p-block-dnt-R330} \ -} -# ||indianmasala.com^$popup,third-party,domain=masalaboard.com (easylistchina+easylist.txt: 38515) -.indianmasala.com -# ||indianmasala.com^$popup,third-party,domain=masalaboard.com (easylist.txt: 28030) -.indianmasala.com - -#ab2p-block-dnt-R331 -{+client-header-tagger{ab2p-block-dnt-R331} \ -} -# ||firepic.org^$domain=mega-pics-money.ru (advblock.txt: 5719) -.firepic.org - -#ab2p-block-dnt-R332 -{+client-header-tagger{ab2p-block-dnt-R332} \ -} -# ||orange-pic.net^$domain=megaimg.ru (advblock.txt: 6185) -.orange-pic.net - -#ab2p-block-dnt-R333 -{+client-header-tagger{ab2p-block-dnt-R333} \ -} -# ||bazr.ru/player?playlistId=$domain=megaresheba.ru|muzofon.com|teledidar.tv (advblock.txt: 5533) -.bazr.ru/player\?playlistId= - -#ab2p-block-dnt-R334 -{+client-header-tagger{ab2p-block-dnt-R334} \ -} -# ||vcdn.biz/*_mggads/$domain=megogo.net (advblock.txt: 6536) -.vcdn.biz/.*_mggads/ -# _advideo/$object-subrequest,domain=megogo.net (advblock.txt: 5406) -/.*_advideo/ -# /u_vod/1/*$object-subrequest,domain=megogo.net (advblock.txt: 5399) -/(.*/)?u_vod/1/.* - -#ab2p-block-dnt-R335 -{+client-header-tagger{ab2p-block-dnt-R335} \ -} -# ||memorygapdotorg.files.wordpress.com^*allamerican3.jpg$domain=memoryholeblog.com (easylistchina+easylist.txt: 43943) -.memorygapdotorg.files.wordpress.com/.*allamerican3\.jpg -# ||memorygapdotorg.files.wordpress.com^*allamerican3.jpg$domain=memoryholeblog.com (easylist.txt: 33458) -.memorygapdotorg.files.wordpress.com/.*allamerican3\.jpg - -#ab2p-block-dnt-R336 -{+client-header-tagger{ab2p-block-dnt-R336} \ -} -# ||ge.tt/api/$domain=mhktricks.net (easylistchina+easylist.txt: 40317) -.ge.tt/api/ -# ||ge.tt/api/$domain=mhktricks.net (easylist.txt: 29832) -.ge.tt/api/ - -#ab2p-block-dnt-R337 -{+client-header-tagger{ab2p-block-dnt-R337} \ -} -# /clickpop.js$domain=miliblog.co.uk (easylistchina+easylist.txt: 41908) -/(.*/)?clickpop\.js -clickpop.js*. -# /clickpop.js$domain=miliblog.co.uk (easylist.txt: 31423) -/(.*/)?clickpop\.js -clickpop.js*. - -#ab2p-block-dnt-R338 -{+client-header-tagger{ab2p-block-dnt-R338} \ -} -# ||plista.com/async.js$domain=mirror.co.uk (easylistchina+easylist.txt: 40766) -.plista.com/async\.js -# ||plista.com/async.js$domain=mirror.co.uk (easylist.txt: 30281) -.plista.com/async\.js - -#ab2p-block-dnt-R339 -{+client-header-tagger{ab2p-block-dnt-R339} \ -} -# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina+easylist.txt: 3604) -.jiaoyou8.com - -#ab2p-block-dnt-R340 -{+client-header-tagger{ab2p-block-dnt-R340} \ -} -# ||picuphost.com^$domain=mmload.info (easylistchina+easylist.txt: 4205) -.picuphost.com - -#ab2p-block-dnt-R341 -{+client-header-tagger{ab2p-block-dnt-R341} \ -} -# ||netdna-cdn.com^$domain=modovideo.com|mooshare.biz (easylistchina+easylist.txt: 44119) -.netdna-cdn.com -# ||netdna-cdn.com^$domain=modovideo.com|mooshare.biz (easylist.txt: 33634) -.netdna-cdn.com - -#ab2p-block-dnt-R342 -{+client-header-tagger{ab2p-block-dnt-R342} \ -} -# ||pladform.ru^$object,object-subrequest,subdocument,domain=molodejj.tv|smotri.com (advblock.txt: 6228) -.pladform.ru - -#ab2p-block-dnt-R343 -{+client-header-tagger{ab2p-block-dnt-R343} \ -} -# ||winvideo.org^$domain=moonwalk.cc (advblock.txt: 6651) -.winvideo.org -# ||mxtads.com^$domain=moonwalk.cc (advblock.txt: 6649) -.mxtads.com -# $popup,domain=moonwalk.cc (advblock.txt: 27) - - -#ab2p-block-dnt-R344 -{+client-header-tagger{ab2p-block-dnt-R344} \ -} -# /zvooq.css$domain=moskva.fm|piter.fm (advblock.txt: 5403) -/(.*/)?zvooq\.css -zvooq.css*. - -#ab2p-block-dnt-R345 -{+client-header-tagger{ab2p-block-dnt-R345} \ -} -# ||amazonaws.com/ansible.js$domain=motherjones.com (easylistchina+easylist.txt: 39740) -.amazonaws.com/ansible\.js -# ||amazonaws.com/ansible.js$domain=motherjones.com (easylist.txt: 29255) -.amazonaws.com/ansible\.js - -#ab2p-block-dnt-R346 -{+client-header-tagger{ab2p-block-dnt-R346} \ -} -# ||aolcdn.com/os/movies/css-js/sprite/*-wallpaper?$domain=moviefone.com (easylistchina+easylist.txt: 42193) -.aolcdn.com/os/movies/css-js/sprite/.*-wallpaper\? -# ||aolcdn.com/os/movies/css-js/sprite/*-wallpaper?$domain=moviefone.com (easylist.txt: 31708) -.aolcdn.com/os/movies/css-js/sprite/.*-wallpaper\? - -#ab2p-block-dnt-R347 -{+client-header-tagger{ab2p-block-dnt-R347} \ -} -# ||click.aliexpress.com^$popup,domain=multiupfile.com (easylistchina+easylist.txt: 46118) -.click.aliexpress.com -# ||click.aliexpress.com^$popup,domain=multiupfile.com (easylist.txt: 35633) -.click.aliexpress.com - -#ab2p-block-dnt-R348 -{+client-header-tagger{ab2p-block-dnt-R348} \ -} -# ||planeta-online.tv^$domain=my-hit.org (advblock.txt: 6229) -.planeta-online.tv - -#ab2p-block-dnt-R349 -{+client-header-tagger{ab2p-block-dnt-R349} \ -} -# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina+easylist.txt: 3316) -.i.alipayobjects.com/i/ecmng/ - -#ab2p-block-dnt-R350 -{+client-header-tagger{ab2p-block-dnt-R350} \ -} -# ||nimbb.com^$domain=my.rsscache.com (easylistchina+easylist.txt: 44177) -.nimbb.com -# ||nimbb.com^$domain=my.rsscache.com (easylist.txt: 33692) -.nimbb.com - -#ab2p-block-dnt-R351 -{+client-header-tagger{ab2p-block-dnt-R351} \ -} -# /js/adBom.js$domain=myqcloud.com (easylistchina+easylist.txt: 1177) -/(.*/)?js/adBom\.js - -#ab2p-block-dnt-R352 -{+client-header-tagger{ab2p-block-dnt-R352} \ -} -# ||namba.kg^$popup,domain=namba.kg (advblock.txt: 38) -.namba.kg - -#ab2p-block-dnt-R353 -{+client-header-tagger{ab2p-block-dnt-R353} \ -} -# /www/base/*&cb=$domain=namba.kg|namba.tj (advblock.txt: 5402) -/(.*/)?www/base/.*&cb= -# /banner_fullscreen.js|$domain=namba.kg|namba.tj (advblock.txt: 5380) -/(.*/)?banner_fullscreen\.js$ - -#ab2p-block-dnt-R354 -{+client-header-tagger{ab2p-block-dnt-R354} \ -} -# ||namba.tj^$popup,domain=namba.tj (advblock.txt: 39) -.namba.tj - -#ab2p-block-dnt-R355 -{+client-header-tagger{ab2p-block-dnt-R355} \ -} -# ||hide.me^$popup,domain=ncrypt.in (easylistchina+easylist.txt: 46149) -.hide.me -# ||5.199.170.67^$domain=ncrypt.in (easylistchina+easylist.txt: 41980) -.5.199.170.67 -# ||hide.me^$popup,domain=ncrypt.in (easylist.txt: 35664) -.hide.me -# ||5.199.170.67^$domain=ncrypt.in (easylist.txt: 31495) -.5.199.170.67 - -#ab2p-block-dnt-R356 -{+client-header-tagger{ab2p-block-dnt-R356} \ -} -# ||amazonaws.com^*=taboola-$script,domain=ndtv.com (easylistchina+easylist.txt: 39759) -.amazonaws.com/.*=taboola- -# ||amazonaws.com^*&dontMissWithoutHeader=$script,domain=ndtv.com (easylistchina+easylist.txt: 39758) -.amazonaws.com/.*&dontMissWithoutHeader= -# ||amazonaws.com/player.php?vidurl=$object-subrequest,domain=ndtv.com (easylistchina+easylist.txt: 39751) -.amazonaws.com/player\.php\?vidurl= -# ||amazonaws.com/crossdomain.xml$object-subrequest,domain=ndtv.com (easylistchina+easylist.txt: 39744) -.amazonaws.com/crossdomain\.xml -# ||amazonaws.com^*=taboola-$script,domain=ndtv.com (easylist.txt: 29274) -.amazonaws.com/.*=taboola- -# ||amazonaws.com^*&dontMissWithoutHeader=$script,domain=ndtv.com (easylist.txt: 29273) -.amazonaws.com/.*&dontMissWithoutHeader= -# ||amazonaws.com/player.php?vidurl=$object-subrequest,domain=ndtv.com (easylist.txt: 29266) -.amazonaws.com/player\.php\?vidurl= -# ||amazonaws.com/crossdomain.xml$object-subrequest,domain=ndtv.com (easylist.txt: 29259) -.amazonaws.com/crossdomain\.xml - -#ab2p-block-dnt-R357 -{+client-header-tagger{ab2p-block-dnt-R357} \ -} -# ||single-vergleich.de^$popup,domain=netload.in (easylistchina+easylist.txt: 46182) -.single-vergleich.de -# ||6angebot.ch^$third-party,domain=netload.in (easylistchina+easylist.txt: 39606) -.6angebot.ch -# ||single-vergleich.de^$popup,domain=netload.in (easylist.txt: 35697) -.single-vergleich.de -# ||6angebot.ch^$third-party,domain=netload.in (easylist.txt: 29121) -.6angebot.ch - -#ab2p-block-dnt-R358 -{+client-header-tagger{ab2p-block-dnt-R358} \ -} -# ||ngfiles.com/bg-skins/sponsored/skins/$domain=newgrounds.com (easylistchina+easylist.txt: 44167) -.ngfiles.com/bg-skins/sponsored/skins/ -# ||ngfiles.com/bg-skins/sponsored/skins/$domain=newgrounds.com (easylist.txt: 33682) -.ngfiles.com/bg-skins/sponsored/skins/ - -#ab2p-block-dnt-R359 -{+client-header-tagger{ab2p-block-dnt-R359} \ -} -# ||aviasales.ru/partners/$domain=newrbk.ru (advblock.txt: 5521) -.aviasales.ru/partners/ - -#ab2p-block-dnt-R360 -{+client-header-tagger{ab2p-block-dnt-R360} \ -} -# ||rentalcars.com/affxml/$domain=news-headlines.co.za (easylistchina+easylist.txt: 40844) -.rentalcars.com/affxml/ -# ||rentalcars.com/affxml/$domain=news-headlines.co.za (easylist.txt: 30359) -.rentalcars.com/affxml/ - -#ab2p-block-dnt-R361 -{+client-header-tagger{ab2p-block-dnt-R361} \ -} -# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina+easylist.txt: 5091) -.www.china.com.cn/node_ - -#ab2p-block-dnt-R362 -{+client-header-tagger{ab2p-block-dnt-R362} \ -} -# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina+easylist.txt: 1250) -/.*_iframe\.htm$ - -#ab2p-block-dnt-R363 -{+client-header-tagger{ab2p-block-dnt-R363} \ -} -# ||newscdn.com.au^*/desktop-bg-body.png$domain=news.com.au (easylistchina+easylist.txt: 44146) -.newscdn.com.au/.*/desktop-bg-body\.png -# ||newscdn.com.au^*/desktop-bg-body.png$domain=news.com.au (easylist.txt: 33661) -.newscdn.com.au/.*/desktop-bg-body\.png - -#ab2p-block-dnt-R364 -{+client-header-tagger{ab2p-block-dnt-R364} \ -} -# ||connectok.com/brightcove/?$domain=newsok.com (easylistchina+easylist.txt: 39986) -.connectok.com/brightcove/\? -# ||connectok.com/brightcove/?$domain=newsok.com (easylist.txt: 29501) -.connectok.com/brightcove/\? - -#ab2p-block-dnt-R365 -{+client-header-tagger{ab2p-block-dnt-R365} \ -} -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=nfl.com|viki.com (easylistchina+easylist.txt: 45781) -.youtube.com/yva_video\?adformat= -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=nfl.com|viki.com (easylist.txt: 35296) -.youtube.com/yva_video\?adformat= - -#ab2p-block-dnt-R366 -{+client-header-tagger{ab2p-block-dnt-R366} \ -} -# ||hostingkartinok.com/uploads/images/$domain=nikolaev-city.net (advblock.txt: 5844) -.hostingkartinok.com/uploads/images/ - -#ab2p-block-dnt-R367 -{+client-header-tagger{ab2p-block-dnt-R367} \ -} -# ||info^$popup,domain=nnm.me|serialu.net (advblock.txt: 35) - -#ab2p-block-dnt-R368 -{+client-header-tagger{ab2p-block-dnt-R368} \ -} -# ||oboom.com/assets/raw/$media,domain=oboom.com (easylistchina+easylist.txt: 44242) -.oboom.com/assets/raw/ -# ||oboom.com/assets/raw/$media,domain=oboom.com (easylist.txt: 33757) -.oboom.com/assets/raw/ - -#ab2p-block-dnt-R369 -{+client-header-tagger{ab2p-block-dnt-R369} \ -} -# .com/tps/$domain=ocucn.com (easylistchina+easylist.txt: 1091) -/.*\.com/tps/ -.*.com/tps/ - -#ab2p-block-dnt-R370 -{+client-header-tagger{ab2p-block-dnt-R370} \ -} -# ||cloudfront.net/*/takeover/$domain=offers.com (easylistchina+easylist.txt: 42548) -.cloudfront.net/.*/takeover/ -# ||cloudfront.net/*/takeover/$domain=offers.com (easylist.txt: 32063) -.cloudfront.net/.*/takeover/ - -#ab2p-block-dnt-R371 -{+client-header-tagger{ab2p-block-dnt-R371} \ -} -# ||wp.com^*/downloadlink$domain=onhax.net (easylistchina+easylist.txt: 45658) -.wp.com/.*/downloadlink -# ||wp.com^*/dlinks/$domain=onhax.net (easylistchina+easylist.txt: 45657) -.wp.com/.*/dlinks/ -# ||wp.com^*/downloadlink$domain=onhax.net (easylist.txt: 35173) -.wp.com/.*/downloadlink -# ||wp.com^*/dlinks/$domain=onhax.net (easylist.txt: 35172) -.wp.com/.*/dlinks/ - -#ab2p-block-dnt-R372 -{+client-header-tagger{ab2p-block-dnt-R372} \ -} -# ||rutube.ru/embed/$domain=ontracker.ru (advblock.txt: 6360) -.rutube.ru/embed/ - -#ab2p-block-dnt-R373 -{+client-header-tagger{ab2p-block-dnt-R373} \ -} -# ||rubiconproject.com^$domain=optimized-by.rubiconproject.com (easylistchina+easylist.txt: 44628) -.rubiconproject.com -# ||rubiconproject.com^$domain=optimized-by.rubiconproject.com (easylist.txt: 34143) -.rubiconproject.com - -#ab2p-block-dnt-R374 -{+client-header-tagger{ab2p-block-dnt-R374} \ -} -# ||209.62.111.179/ad.aspx$domain=pachanyc.com (easylistchina+easylist.txt: 41955) -.209.62.111.179/ad\.aspx -# ||209.62.111.179/ad.aspx$domain=pachanyc.com (easylist.txt: 31470) -.209.62.111.179/ad\.aspx - -#ab2p-block-dnt-R375 -{+client-header-tagger{ab2p-block-dnt-R375} \ -} -# |https://$script,third-party,domain=patheos.com (easylistchina+easylist.txt: 45845) -# |http://$script,third-party,domain=patheos.com (easylistchina+easylist.txt: 45844) -# |https://$script,third-party,domain=patheos.com (easylist.txt: 35360) -# |http://$script,third-party,domain=patheos.com (easylist.txt: 35359) - -#ab2p-block-dnt-R376 -{+client-header-tagger{ab2p-block-dnt-R376} \ -} -# ||roomguru.ru/SearchBox/$domain=pavelkesh.ru (advblock.txt: 6319) -.roomguru.ru/SearchBox/ - -#ab2p-block-dnt-R377 -{+client-header-tagger{ab2p-block-dnt-R377} \ -} -# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina+easylist.txt: 1225) -/(.*/)?upload/gad/.* - -#ab2p-block-dnt-R378 -{+client-header-tagger{ab2p-block-dnt-R378} \ -} -# ||rackcdn.com/*skin-$domain=pcgamesn.com (easylistchina+easylist.txt: 44521) -.rackcdn.com/.*skin- -# ||rackcdn.com/*skin-$domain=pcgamesn.com (easylist.txt: 34036) -.rackcdn.com/.*skin- - -#ab2p-block-dnt-R379 -{+client-header-tagger{ab2p-block-dnt-R379} \ -} -# |https://$script,third-party,domain=photobucket.com (easylistchina+easylist.txt: 45897) -# |http://$script,third-party,domain=photobucket.com (easylistchina+easylist.txt: 45896) -# |https://$script,third-party,domain=photobucket.com (easylist.txt: 35412) -# |http://$script,third-party,domain=photobucket.com (easylist.txt: 35411) - -#ab2p-block-dnt-R380 -{+client-header-tagger{ab2p-block-dnt-R380} \ -} -# ||phpbb-phpbb*.x-tk.ru^$domain=phpbb3.x-tk.ru (advblock.txt: 6207) -.phpbb-phpbb*./.*\.x-tk\.ru[^\w%.-] -.phpbb-phpbb*.x-tk.ru -# ||forum-gta.com^$script,domain=phpbb3.x-tk.ru (advblock.txt: 5734) -.forum-gta.com - -#ab2p-block-dnt-R381 -{+client-header-tagger{ab2p-block-dnt-R381} \ -} -# ||letitbit-porno.com^$popup,domain=pic2profit.com (advblock.txt: 36) -.letitbit-porno.com - -#ab2p-block-dnt-R382 -{+client-header-tagger{ab2p-block-dnt-R382} \ -} -# ||slavakirkudu.ru^$domain=picforall.ru (advblock.txt: 6403) -.slavakirkudu.ru - -#ab2p-block-dnt-R383 -{+client-header-tagger{ab2p-block-dnt-R383} \ -} -# ||garmin.ru/virb/?$popup,domain=pikabu.ru (advblock.txt: 148) -.garmin.ru/virb/\? - -#ab2p-block-dnt-R384 -{+client-header-tagger{ab2p-block-dnt-R384} \ -} -# /static/js/pop*.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 41915) -/(.*/)?static/js/pop.*\.js -# /poptest.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 41914) -/(.*/)?poptest\.js -poptest.js*. -# /static/js/pop*.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 31430) -/(.*/)?static/js/pop.*\.js -# /poptest.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 31429) -/(.*/)?poptest\.js -poptest.js*. - -#ab2p-block-dnt-R385 -{+client-header-tagger{ab2p-block-dnt-R385} \ -} -# ||teslagear.ru^$object-subrequest,domain=pladform.ru|smotri.com (advblock.txt: 6458) -.teslagear.ru - -#ab2p-block-dnt-R386 -{+client-header-tagger{ab2p-block-dnt-R386} \ -} -# ||deltamarket.com.ua^$domain=planetaua.net (advblock.txt: 5642) -.deltamarket.com.ua - -#ab2p-block-dnt-R387 -{+client-header-tagger{ab2p-block-dnt-R387} \ -} -# ||akamaihd.net^*/ads/$domain=player.theplatform.com (easylistchina+easylist.txt: 42109) -.akamaihd.net/.*/ads/ -# ||akamaihd.net^*/ads/$domain=player.theplatform.com (easylist.txt: 31624) -.akamaihd.net/.*/ads/ - -#ab2p-block-dnt-R388 -{+client-header-tagger{ab2p-block-dnt-R388} \ -} -# ||adfox.ru^$object-subrequest,domain=player.vgtrk.com (advblock.txt: 5453) -.adfox.ru - -#ab2p-block-dnt-R389 -{+client-header-tagger{ab2p-block-dnt-R389} \ -} -# ||bigcommerce.com^*/product_images/$domain=politicalears.com (easylistchina+easylist.txt: 39848) -.bigcommerce.com/.*/product_images/ -# ||bigcommerce.com^*/product_images/$domain=politicalears.com (easylist.txt: 29363) -.bigcommerce.com/.*/product_images/ - -#ab2p-block-dnt-R390 -{+client-header-tagger{ab2p-block-dnt-R390} \ -} -# ||politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/$script,domain=politicususa.com (easylistchina+easylist.txt: 44411) -.politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/ -# ||politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/$script,domain=politicususa.com (easylist.txt: 33926) -.politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/ - -#ab2p-block-dnt-R391 -{+client-header-tagger{ab2p-block-dnt-R391} \ -} -# ||celebjihad.com/widget/widget.js$domain=popbytes.com (easylistchina+easylist.txt: 42500) -.celebjihad.com/widget/widget\.js -# ||celebjihad.com/widget/widget.js$domain=popbytes.com (easylist.txt: 32015) -.celebjihad.com/widget/widget\.js - -#ab2p-block-dnt-R392 -{+client-header-tagger{ab2p-block-dnt-R392} \ -} -# ||phncdn.com/css/campaign.css?$domain=pornhub.com (easylistchina+easylist.txt: 46678) -.phncdn.com/css/campaign\.css\? -# ||phncdn.com/css/campaign.css?$domain=pornhub.com (easylist.txt: 36193) -.phncdn.com/css/campaign\.css\? - -#ab2p-block-dnt-R393 -{+client-header-tagger{ab2p-block-dnt-R393} \ -} -# |https://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46228) -# |https://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46227) -# |http://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46225) -# |http://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46224) -# |https://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35743) -# |https://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35742) -# |http://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35740) -# |http://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35739) - -#ab2p-block-dnt-R394 -{+client-header-tagger{ab2p-block-dnt-R394} \ -} -# ||reine.ru$image,domain=pornolab.net (advblock.txt: 6297) -.reine.ru*. - -#ab2p-block-dnt-R395 -{+client-header-tagger{ab2p-block-dnt-R395} \ -} -# ||baidu.com^$domain=pos.baidu.com (easylistchina+easylist.txt: 2187) -.baidu.com - -#ab2p-block-dnt-R396 -{+client-header-tagger{ab2p-block-dnt-R396} \ -} -# ||cdn.totalfratmove.com^$image,domain=postgradproblems.com (easylistchina+easylist.txt: 39938) -.cdn.totalfratmove.com -# ||cdn.totalfratmove.com^$image,domain=postgradproblems.com (easylist.txt: 29453) -.cdn.totalfratmove.com - -#ab2p-block-dnt-R397 -{+client-header-tagger{ab2p-block-dnt-R397} \ -} -# ||pr-cy.ru^*.swf^$domain=pr-cy.ru (advblock.txt: 6251) -.pr-cy.ru/.*\.swf[^\w%.-] - -#ab2p-block-dnt-R398 -{+client-header-tagger{ab2p-block-dnt-R398} \ -} -# ||zanox.com^$popup,domain=pregen.net (easylistchina+easylist.txt: 46217) -.zanox.com -# ||zanox.com^$popup,domain=pregen.net (easylist.txt: 35732) -.zanox.com - -#ab2p-block-dnt-R399 -{+client-header-tagger{ab2p-block-dnt-R399} \ -} -# ||prime.ms^$domain=primejailbait.com (easylistchina+easylist.txt: 41682) -.prime.ms -# ||prime.ms^$domain=primejailbait.com (easylist.txt: 31197) -.prime.ms - -#ab2p-block-dnt-R400 -{+client-header-tagger{ab2p-block-dnt-R400} \ -} -# |https://$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45888) -# |http://$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45887) -# |https://$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35403) -# |http://$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35402) - -#ab2p-block-dnt-R401 -{+client-header-tagger{ab2p-block-dnt-R401} \ -} -# ||maases.com/i/br/$domain=promodj.com (easylistchina+easylist.txt: 40564) -.maases.com/i/br/ -# ||maases.com/i/br/$domain=promodj.com (easylist.txt: 30079) -.maases.com/i/br/ - -#ab2p-block-dnt-R402 -{+client-header-tagger{ab2p-block-dnt-R402} \ -} -# |https://$script,third-party,domain=promptfile.com (easylistchina+easylist.txt: 45872) -# |http://$script,third-party,domain=promptfile.com (easylistchina+easylist.txt: 45871) -# |https://$script,third-party,domain=promptfile.com (easylist.txt: 35387) -# |http://$script,third-party,domain=promptfile.com (easylist.txt: 35386) - -#ab2p-block-dnt-R403 -{+client-header-tagger{ab2p-block-dnt-R403} \ -} -# ||fashionsaga.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 46128) -.fashionsaga.com -# ||fashionsaga.com^$popup,domain=putlocker.is (easylist.txt: 35643) -.fashionsaga.com - -#ab2p-block-dnt-R404 -{+client-header-tagger{ab2p-block-dnt-R404} \ -} -# /950-90.gif$domain=qire213.com (easylistchina+easylist.txt: 1107) -/(.*/)?950-90\.gif -950-90.gif*. - -#ab2p-block-dnt-R405 -{+client-header-tagger{ab2p-block-dnt-R405} \ -} -# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1239) -/(.*/)?xybgg\.gif -xybgg.gif*. -# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1171) -/(.*/)?img/br650\.gif -# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1170) -/(.*/)?img/br300\.gif - -#ab2p-block-dnt-R406 -{+client-header-tagger{ab2p-block-dnt-R406} \ -} -# ||dyncdn.me/static/20/js/expla*.js$domain=rarbg.to|rarbg.unblocked.la|rarbgmirror.com (easylistchina+easylist.txt: 42826) -.dyncdn.me/static/20/js/expla.*\.js -# ||dyncdn.me/static/20/js/expla*.js$domain=rarbg.to|rarbg.unblocked.la|rarbgmirror.com (easylist.txt: 32341) -.dyncdn.me/static/20/js/expla.*\.js - -#ab2p-block-dnt-R407 -{+client-header-tagger{ab2p-block-dnt-R407} \ -} -# ^utm_medium=pops^$popup,domain=ratedporntube.com|sextuberate.com (easylistchina+easylist.txt: 47068) -/(.*[^\w%.-])?utm_medium=pops[^\w%.-] -# ^utm_medium=pops^$popup,domain=ratedporntube.com|sextuberate.com (easylist.txt: 36583) -/(.*[^\w%.-])?utm_medium=pops[^\w%.-] - -#ab2p-block-dnt-R408 -{+client-header-tagger{ab2p-block-dnt-R408} \ -} -# ||tripadvisor.com/WidgetEmbed-*&partnerId=$domain=rbth.co.uk|rbth.com (easylistchina+easylist.txt: 41081) -.tripadvisor.com/WidgetEmbed-.*&partnerId= -# ||tripadvisor.com/WidgetEmbed-*&partnerId=$domain=rbth.co.uk|rbth.com (easylist.txt: 30596) -.tripadvisor.com/WidgetEmbed-.*&partnerId= - -#ab2p-block-dnt-R409 -{+client-header-tagger{ab2p-block-dnt-R409} \ -} -# ||cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:*.mp3$domain=rdio.com (easylistchina+easylist.txt: 42556) -.cmodmedia*./.*\.live\.streamtheworld\.com/media/cm-audio/cm:.*\.mp3 -.cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:.*\.mp3 -# ||cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:*.mp3$domain=rdio.com (easylist.txt: 32071) -.cmodmedia*./.*\.live\.streamtheworld\.com/media/cm-audio/cm:.*\.mp3 -.cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:.*\.mp3 - -#ab2p-block-dnt-R410 -{+client-header-tagger{ab2p-block-dnt-R410} \ -} -# ||netdna-cdn.com^*-300x250.$domain=readersdigest.co.uk (easylistchina+easylist.txt: 40677) -.netdna-cdn.com/.*-300x250\. -# ||netdna-cdn.com^*-300x250.$domain=readersdigest.co.uk (easylist.txt: 30192) -.netdna-cdn.com/.*-300x250\. - -#ab2p-block-dnt-R411 -{+client-header-tagger{ab2p-block-dnt-R411} \ -} -# ||porn4free.tv^$popup,domain=redtube.cc (easylistchina+easylist.txt: 47088) -.porn4free.tv -# ||porn4free.tv^$popup,domain=redtube.cc (easylist.txt: 36603) -.porn4free.tv - -#ab2p-block-dnt-R412 -{+client-header-tagger{ab2p-block-dnt-R412} \ -} -# ||howbbs.net^$domain=ref.so (easylistchina+easylist.txt: 3263) -.howbbs.net - -#ab2p-block-dnt-R413 -{+client-header-tagger{ab2p-block-dnt-R413} \ -} -# ||restotv.ru/promo/$domain=restoclub.ru (advblock.txt: 6303) -.restotv.ru/promo/ - -#ab2p-block-dnt-R414 -{+client-header-tagger{ab2p-block-dnt-R414} \ -} -# ||static.crowdscience.com/max-*.js?callback=crowdScienceCallback$domain=reuters.com (easylistchina+easylist.txt: 46069) -.static.crowdscience.com/max-.*\.js\?callback=crowdScienceCallback -# ||static.crowdscience.com/max-*.js?callback=crowdScienceCallback$domain=reuters.com (easylist.txt: 35584) -.static.crowdscience.com/max-.*\.js\?callback=crowdScienceCallback - -#ab2p-block-dnt-R415 -{+client-header-tagger{ab2p-block-dnt-R415} \ -} -# ||dgrad-host.com/banner.$domain=rootden.ru (advblock.txt: 5647) -.dgrad-host.com/banner\. - -#ab2p-block-dnt-R416 -{+client-header-tagger{ab2p-block-dnt-R416} \ -} -# ||wtprn.com/images/$domain=rprradio.com (easylistchina+easylist.txt: 41204) -.wtprn.com/images/ -# ||wtprn.com/images/$domain=rprradio.com (easylist.txt: 30719) -.wtprn.com/images/ - -#ab2p-block-dnt-R417 -{+client-header-tagger{ab2p-block-dnt-R417} \ -} -# ||vcdn.biz^$domain=rusfolder.com|rusfolder.net|rutube.ru (advblock.txt: 6537) -.vcdn.biz - -#ab2p-block-dnt-R418 -{+client-header-tagger{ab2p-block-dnt-R418} \ -} -# //94.198.53.135^$object,subdocument,domain=rutracker.org (advblock.txt: 5376) -94.198.53.135 -# //195.82.146.52^$domain=rutracker.org (advblock.txt: 5375) -195.82.146.52 - -#ab2p-block-dnt-R419 -{+client-header-tagger{ab2p-block-dnt-R419} \ -} -# ||dhgate.com^$third-party,domain=sammyhub.com (easylistchina+easylist.txt: 40137) -.dhgate.com -# ||dhgate.com^$third-party,domain=sammyhub.com (easylist.txt: 29652) -.dhgate.com - -#ab2p-block-dnt-R420 -{+client-header-tagger{ab2p-block-dnt-R420} \ -} -# /afp/*$domain=scol.com.cn (easylistchina+easylist.txt: 1122) -/(.*/)?afp/.* - -#ab2p-block-dnt-R421 -{+client-header-tagger{ab2p-block-dnt-R421} \ -} -# ||fastpic.ru^$domain=screenlist.ru (advblock.txt: 5701) -.fastpic.ru - -#ab2p-block-dnt-R422 -{+client-header-tagger{ab2p-block-dnt-R422} \ -} -# ||rackcdn.com^$script,domain=search.aol.com (easylistchina+easylist.txt: 40821) -.rackcdn.com -# ||rackcdn.com^$script,domain=search.aol.com (easylist.txt: 30336) -.rackcdn.com - -#ab2p-block-dnt-R423 -{+client-header-tagger{ab2p-block-dnt-R423} \ -} -# ||r.search.yahoo.com/_ylt=*;_ylu=*.r.msn.com$popup,domain=search.yahoo.com (easylistchina+easylist.txt: 46178) -.r.search.yahoo.com/_ylt=.*;_ylu=.*\.r\.msn\.com -# ||r.search.yahoo.com/_ylt=*;_ylu=*.r.msn.com$popup,domain=search.yahoo.com (easylist.txt: 35693) -.r.search.yahoo.com/_ylt=.*;_ylu=.*\.r\.msn\.com - -#ab2p-block-dnt-R424 -{+client-header-tagger{ab2p-block-dnt-R424} \ -} -# ||datalock.ru^*player.swf|$domain=seasonvar.ru (advblock.txt: 5631) -.datalock.ru/.*player\.swf$ - -#ab2p-block-dnt-R425 -{+client-header-tagger{ab2p-block-dnt-R425} \ -} -# ||pamaradio.com^$popup,domain=secureupload.eu (easylistchina+easylist.txt: 46172) -.pamaradio.com -# ||pamaradio.com^$popup,domain=secureupload.eu (easylist.txt: 35687) -.pamaradio.com - -#ab2p-block-dnt-R426 -{+client-header-tagger{ab2p-block-dnt-R426} \ -} -# /sendspace-pop.$popup,domain=sendspace.com (easylistchina+easylist.txt: 46102) -/(.*/)?sendspace-pop\. -sendspace-pop.*. -# ||216.151.186.5^*/serve.php?$domain=sendspace.com (easylistchina+easylist.txt: 41957) -.216.151.186.5/.*/serve\.php\? -# /sendspace-pop.$popup,domain=sendspace.com (easylist.txt: 35617) -/(.*/)?sendspace-pop\. -sendspace-pop.*. -# ||216.151.186.5^*/serve.php?$domain=sendspace.com (easylist.txt: 31472) -.216.151.186.5/.*/serve\.php\? - -#ab2p-block-dnt-R427 -{+client-header-tagger{ab2p-block-dnt-R427} \ -} -# /images/20$domain=sex169.info|sex169.org (easylistchina+easylist.txt: 1161) -/(.*/)?images/20 - -#ab2p-block-dnt-R428 -{+client-header-tagger{ab2p-block-dnt-R428} \ -} -# ||iweek.ly^$domain=share.popgo.org (easylistchina+easylist.txt: 3570) -.iweek.ly - -#ab2p-block-dnt-R429 -{+client-header-tagger{ab2p-block-dnt-R429} \ -} -# ||hcdn.co/scripts/shadowbox/shadowbox.js$domain=shared.sx (easylistchina+easylist.txt: 43316) -.hcdn.co/scripts/shadowbox/shadowbox\.js -# ||hcdn.co/scripts/shadowbox/shadowbox.js$domain=shared.sx (easylist.txt: 32831) -.hcdn.co/scripts/shadowbox/shadowbox\.js - -#ab2p-block-dnt-R430 -{+client-header-tagger{ab2p-block-dnt-R430} \ -} -# ||truckingunlimited.com^$popup,domain=sharpfile.com (easylistchina+easylist.txt: 41363) -.truckingunlimited.com -# ||truckingunlimited.com^$popup,domain=sharpfile.com (easylist.txt: 30878) -.truckingunlimited.com - -#ab2p-block-dnt-R431 -{+client-header-tagger{ab2p-block-dnt-R431} \ -} -# ||wp.com^*/banners/$domain=showbiz411.com (easylistchina+easylist.txt: 45655) -.wp.com/.*/banners/ -# ||wp.com^*/banners/$domain=showbiz411.com (easylist.txt: 35170) -.wp.com/.*/banners/ - -#ab2p-block-dnt-R432 -{+client-header-tagger{ab2p-block-dnt-R432} \ -} -# ||url.cn^$domain=shuajizhijia.com (easylistchina+easylist.txt: 4939) -.url.cn - -#ab2p-block-dnt-R433 -{+client-header-tagger{ab2p-block-dnt-R433} \ -} -# /helper/special$domain=siliconrus.com|tjournal.ru (advblock.txt: 5385) -/(.*/)?helper/special - -#ab2p-block-dnt-R434 -{+client-header-tagger{ab2p-block-dnt-R434} \ -} -# ||gratuit.niloo.fr^$popup,domain=simophone.com (easylistchina+easylist.txt: 46148) -.gratuit.niloo.fr -# ||gratuit.niloo.fr^$popup,domain=simophone.com (easylist.txt: 35663) -.gratuit.niloo.fr - -#ab2p-block-dnt-R435 -{+client-header-tagger{ab2p-block-dnt-R435} \ -} -# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina+easylist.txt: 4817) -.tietuku.com - -#ab2p-block-dnt-R436 -{+client-header-tagger{ab2p-block-dnt-R436} \ -} -# ||prod-skybet.s3.amazonaws.com^$domain=skysports.com (easylistchina+easylist.txt: 40794) -.prod-skybet.s3.amazonaws.com -# ||prod-skybet.s3.amazonaws.com^$domain=skysports.com (easylist.txt: 30309) -.prod-skybet.s3.amazonaws.com - -#ab2p-block-dnt-R437 -{+client-header-tagger{ab2p-block-dnt-R437} \ -} -# ||cloudfront.net/images/amazon/$domain=slader.com (easylistchina+easylist.txt: 39965) -.cloudfront.net/images/amazon/ -# ||amazonaws.com/images/a/$domain=slader.com (easylistchina+easylist.txt: 39747) -.amazonaws.com/images/a/ -# ||cloudfront.net/images/amazon/$domain=slader.com (easylist.txt: 29480) -.cloudfront.net/images/amazon/ -# ||amazonaws.com/images/a/$domain=slader.com (easylist.txt: 29262) -.amazonaws.com/images/a/ - -#ab2p-block-dnt-R438 -{+client-header-tagger{ab2p-block-dnt-R438} \ -} -# ||devtools2.networkcities.net/wp-content/uploads/output_trLIFi.gif$domain=smallseotools.com (easylistchina+easylist.txt: 42751) -.devtools2.networkcities.net/wp-content/uploads/output_trLIFi\.gif -# ||devtools2.networkcities.net/wp-content/uploads/output_trLIFi.gif$domain=smallseotools.com (easylist.txt: 32266) -.devtools2.networkcities.net/wp-content/uploads/output_trLIFi\.gif - -#ab2p-block-dnt-R439 -{+client-header-tagger{ab2p-block-dnt-R439} \ -} -# ||bookingbuddy.com/js/bookingbuddy.strings.php?$domain=smartertravel.com (easylistchina+easylist.txt: 42377) -.bookingbuddy.com/js/bookingbuddy\.strings\.php\? -# ||bookingbuddy.com/js/bookingbuddy.strings.php?$domain=smartertravel.com (easylist.txt: 31892) -.bookingbuddy.com/js/bookingbuddy\.strings\.php\? - -#ab2p-block-dnt-R440 -{+client-header-tagger{ab2p-block-dnt-R440} \ -} -# ||gpm-digital.com^$domain=smexo.tv (advblock.txt: 6648) -.gpm-digital.com -# ||googlesyndication.com^$domain=smexo.tv (advblock.txt: 6647) -.googlesyndication.com - -#ab2p-block-dnt-R441 -{+client-header-tagger{ab2p-block-dnt-R441} \ -} -# ||smi2.tv/aa/$script,domain=smi2.ru (advblock.txt: 6406) -.smi2.tv/aa/ - -#ab2p-block-dnt-R442 -{+client-header-tagger{ab2p-block-dnt-R442} \ -} -# /?placement=$script,domain=sockshare.com (easylistchina+easylist.txt: 41904) -/(.*/)?\?placement= -# /?placement=$script,domain=sockshare.com (easylist.txt: 31419) -/(.*/)?\?placement= - -#ab2p-block-dnt-R443 -{+client-header-tagger{ab2p-block-dnt-R443} \ -} -# ||softpedia-static.com/images/afh/$domain=softpedia.com (easylistchina+easylist.txt: 44831) -.softpedia-static.com/images/afh/ -# ||softpedia-static.com/images/afh/$domain=softpedia.com (easylist.txt: 34346) -.softpedia-static.com/images/afh/ - -#ab2p-block-dnt-R444 -{+client-header-tagger{ab2p-block-dnt-R444} \ -} -# ||songspk.name/fidelity.html$domain=songs.pk|songspk.name (easylistchina+easylist.txt: 44841) -.songspk.name/fidelity\.html -# ||songspk.name/fidelity.html$domain=songs.pk|songspk.name (easylist.txt: 34356) -.songspk.name/fidelity\.html - -#ab2p-block-dnt-R445 -{+client-header-tagger{ab2p-block-dnt-R445} \ -} -# ||amazonaws.com^*/site-takeover/$domain=songza.com (easylistchina+easylist.txt: 42145) -.amazonaws.com/.*/site-takeover/ -# ||amazonaws.com^*/site-takeover/$domain=songza.com (easylist.txt: 31660) -.amazonaws.com/.*/site-takeover/ - -#ab2p-block-dnt-R446 -{+client-header-tagger{ab2p-block-dnt-R446} \ -} -# ||sinaimg.cn/large/*.gif$domain=souqiu8.com|zhaofuli.club (easylistchina+easylist.txt: 4577) -.sinaimg.cn/large/.*\.gif - -#ab2p-block-dnt-R447 -{+client-header-tagger{ab2p-block-dnt-R447} \ -} -# |https://$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45919) -# |http://$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45918) -# ||wistia.net/embed/$domain=speedtest.net (easylistchina+easylist.txt: 45616) -.wistia.net/embed/ -# |https://$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35434) -# |http://$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35433) -# ||wistia.net/embed/$domain=speedtest.net (easylist.txt: 35131) -.wistia.net/embed/ - -#ab2p-block-dnt-R448 -{+client-header-tagger{ab2p-block-dnt-R448} \ -} -# ||media.mtvnservices.com/player/scripts/mtvn_player_control.js$domain=spike.com (easylistchina+easylist.txt: 43913) -.media.mtvnservices.com/player/scripts/mtvn_player_control\.js -# ||media.mtvnservices.com/player/scripts/mtvn_player_control.js$domain=spike.com (easylist.txt: 33428) -.media.mtvnservices.com/player/scripts/mtvn_player_control\.js - -#ab2p-block-dnt-R449 -{+client-header-tagger{ab2p-block-dnt-R449} \ -} -# |http://*=*&$third-party,xmlhttprequest,domain=sporcle.com (easylistchina+easylist.txt: 46073) -/.*=.*& -# .com/lib/f=$third-party,xmlhttprequest,domain=sporcle.com (easylistchina+easylist.txt: 46071) -/.*\.com/lib/f= -.*.com/lib/f= -# ||spcontentcdn.net^$domain=sporcle.com (easylistchina+easylist.txt: 44857) -.spcontentcdn.net -# ||d6vwe9xdz9i45.cloudfront.net/psa.js$domain=sporcle.com (easylistchina+easylist.txt: 42663) -.d6vwe9xdz9i45.cloudfront.net/psa\.js -# |http://*.com^*|*$script,third-party,domain=sporcle.com (easylistchina+easylist.txt: 41920) -/.*\.com[^\w%.-].*\|.* -.*.com/.*\|.* -# |http://*=*&$third-party,xmlhttprequest,domain=sporcle.com (easylist.txt: 35588) -/.*=.*& -# .com/lib/f=$third-party,xmlhttprequest,domain=sporcle.com (easylist.txt: 35586) -/.*\.com/lib/f= -.*.com/lib/f= -# ||spcontentcdn.net^$domain=sporcle.com (easylist.txt: 34372) -.spcontentcdn.net -# ||d6vwe9xdz9i45.cloudfront.net/psa.js$domain=sporcle.com (easylist.txt: 32178) -.d6vwe9xdz9i45.cloudfront.net/psa\.js -# |http://*.com^*|*$script,third-party,domain=sporcle.com (easylist.txt: 31435) -/.*\.com[^\w%.-].*\|.* -.*.com/.*\|.* - -#ab2p-block-dnt-R450 -{+client-header-tagger{ab2p-block-dnt-R450} \ -} -# ||tumblr.com^*/tumblr_mht2lq0XUC1rmg71eo1_500.gif$domain=stocporn.com (easylistchina+easylist.txt: 41764) -.tumblr.com/.*/tumblr_mht2lq0XUC1rmg71eo1_500\.gif -# ||tumblr.com^*/tumblr_mht2lq0XUC1rmg71eo1_500.gif$domain=stocporn.com (easylist.txt: 31279) -.tumblr.com/.*/tumblr_mht2lq0XUC1rmg71eo1_500\.gif - -#ab2p-block-dnt-R451 -{+client-header-tagger{ab2p-block-dnt-R451} \ -} -# ||lp.longtailvideo.com^$domain=stopgame.ru (advblock.txt: 6009) -.lp.longtailvideo.com - -#ab2p-block-dnt-R452 -{+client-header-tagger{ab2p-block-dnt-R452} \ -} -# /ycpiframe.aspx$domain=strtv.cn (easylistchina+easylist.txt: 1240) -/(.*/)?ycpiframe\.aspx -ycpiframe.aspx*. - -#ab2p-block-dnt-R453 -{+client-header-tagger{ab2p-block-dnt-R453} \ -} -# ||stuff.priceme.co.nz^$domain=stuff.co.nz (easylistchina+easylist.txt: 44939) -.stuff.priceme.co.nz -# ||beyondd.co.nz/ezibuy/$third-party,domain=stuff.co.nz (easylistchina+easylist.txt: 42327) -.beyondd.co.nz/ezibuy/ -# ||neighbourly.co.nz^$subdocument,domain=stuff.co.nz (easylistchina+easylist.txt: 40672) -.neighbourly.co.nz -# ||stuff.priceme.co.nz^$domain=stuff.co.nz (easylist.txt: 34454) -.stuff.priceme.co.nz -# ||beyondd.co.nz/ezibuy/$third-party,domain=stuff.co.nz (easylist.txt: 31842) -.beyondd.co.nz/ezibuy/ -# ||neighbourly.co.nz^$subdocument,domain=stuff.co.nz (easylist.txt: 30187) -.neighbourly.co.nz - -#ab2p-block-dnt-R454 -{+client-header-tagger{ab2p-block-dnt-R454} \ -} -# /sungg/*$domain=sun0769.com (easylistchina+easylist.txt: 1218) -/(.*/)?sungg/.* - -#ab2p-block-dnt-R455 -{+client-header-tagger{ab2p-block-dnt-R455} \ -} -# ||fuckandcdn.com/sun/sunstatic/frms/$subdocument,domain=sunporno.com (easylistchina+easylist.txt: 46434) -.fuckandcdn.com/sun/sunstatic/frms/ -# ||fuckandcdn.com/sun/sunstatic/frms/$subdocument,domain=sunporno.com (easylist.txt: 35949) -.fuckandcdn.com/sun/sunstatic/frms/ - -#ab2p-block-dnt-R456 -{+client-header-tagger{ab2p-block-dnt-R456} \ -} -# ||imgur.com^$image,domain=talksport.com (easylistchina+easylist.txt: 40443) -.imgur.com -# ||imgur.com^$image,domain=talksport.com (easylist.txt: 29958) -.imgur.com - -#ab2p-block-dnt-R457 -{+client-header-tagger{ab2p-block-dnt-R457} \ -} -# ^user_id^*^stream_id^$script,domain=tapochek.net|unionpeer.org (advblock.txt: 5405) -/(.*[^\w%.-])?user_id[^\w%.-].*[^\w%.-]stream_id[^\w%.-] - -#ab2p-block-dnt-R458 -{+client-header-tagger{ab2p-block-dnt-R458} \ -} -# ||tbs.com^*/ad_policy.xml$object-subrequest,domain=tbs.com (easylistchina+easylist.txt: 44991) -.tbs.com/.*/ad_policy\.xml -# ||tbs.com^*/ad_policy.xml$object-subrequest,domain=tbs.com (easylist.txt: 34506) -.tbs.com/.*/ad_policy\.xml - -#ab2p-block-dnt-R459 -{+client-header-tagger{ab2p-block-dnt-R459} \ -} -# ||fileparadox.in/free$popup,domain=tdarkangel.com (easylistchina+easylist.txt: 47076) -.fileparadox.in/free -# ||fileparadox.in/free$popup,domain=tdarkangel.com (easylist.txt: 36591) -.fileparadox.in/free - -#ab2p-block-dnt-R460 -{+client-header-tagger{ab2p-block-dnt-R460} \ -} -# ||amazonaws.com/videos/$domain=technewstoday.com (easylistchina+easylist.txt: 42142) -.amazonaws.com/videos/ -# ||amazonaws.com/videos/$domain=technewstoday.com (easylist.txt: 31657) -.amazonaws.com/videos/ - -#ab2p-block-dnt-R461 -{+client-header-tagger{ab2p-block-dnt-R461} \ -} -# ||tpucdn.com/images/bnnrs/$domain=techpowerup.com (easylistchina+easylist.txt: 45245) -.tpucdn.com/images/bnnrs/ -# ||tpucdn.com/images/b/$domain=techpowerup.com (easylistchina+easylist.txt: 45244) -.tpucdn.com/images/b/ -# ||tpucdn.com/images/bnnrs/$domain=techpowerup.com (easylist.txt: 34760) -.tpucdn.com/images/bnnrs/ -# ||tpucdn.com/images/b/$domain=techpowerup.com (easylist.txt: 34759) -.tpucdn.com/images/b/ - -#ab2p-block-dnt-R462 -{+client-header-tagger{ab2p-block-dnt-R462} \ -} -# ||pladform.ru/player?pl=35495$domain=teledidar.tv (advblock.txt: 6226) -.pladform.ru/player\?pl=35495 - -#ab2p-block-dnt-R463 -{+client-header-tagger{ab2p-block-dnt-R463} \ -} -# ||histats.com/js15.js$domain=televisaofutebol.com (easylistchina+easylist.txt: 46080) -.histats.com/js15\.js -# ||histats.com/js15.js$domain=televisaofutebol.com (easylist.txt: 35595) -.histats.com/js15\.js - -#ab2p-block-dnt-R464 -{+client-header-tagger{ab2p-block-dnt-R464} \ -} -# ||wordpress.com^*/chive-skin-$image,domain=thechive.com (easylistchina+easylist.txt: 45633) -.wordpress.com/.*/chive-skin- -# ||wordpress.com^*/chive-skin-$image,domain=thechive.com (easylist.txt: 35148) -.wordpress.com/.*/chive-skin- - -#ab2p-block-dnt-R465 -{+client-header-tagger{ab2p-block-dnt-R465} \ -} -# ||wpcomwidgets.com^$domain=thegrio.com (easylistchina+easylist.txt: 45659) -.wpcomwidgets.com -# ||wpcomwidgets.com^$domain=thegrio.com (easylist.txt: 35174) -.wpcomwidgets.com - -#ab2p-block-dnt-R466 -{+client-header-tagger{ab2p-block-dnt-R466} \ -} -# ||filmreel.tv^$domain=thepiratebay.si (easylistchina+easylist.txt: 40263) -.filmreel.tv -# ||filmreel.tv^$domain=thepiratebay.si (easylist.txt: 29778) -.filmreel.tv - -#ab2p-block-dnt-R467 -{+client-header-tagger{ab2p-block-dnt-R467} \ -} -# ||goo.gl^$popup,domain=thisav.com (easylistchina+easylist.txt: 47077) -.goo.gl -# ||goo.gl^$popup,domain=thisav.com (easylist.txt: 36592) -.goo.gl - -#ab2p-block-dnt-R468 -{+client-header-tagger{ab2p-block-dnt-R468} \ -} -# ||serving.portal.dmflex.com^$domain=thisdaylive.com (easylistchina+easylist.txt: 40899) -.serving.portal.dmflex.com -# ||serving.portal.dmflex.com^$domain=thisdaylive.com (easylist.txt: 30414) -.serving.portal.dmflex.com - -#ab2p-block-dnt-R469 -{+client-header-tagger{ab2p-block-dnt-R469} \ -} -# ||netdna-cdn.com^*/tiwib-lootr-ad.png$domain=thisiswhyimbroke.com (easylistchina+easylist.txt: 44120) -.netdna-cdn.com/.*/tiwib-lootr-ad\.png -# ||netdna-cdn.com^*/tiwib-lootr-ad.png$domain=thisiswhyimbroke.com (easylist.txt: 33635) -.netdna-cdn.com/.*/tiwib-lootr-ad\.png - -#ab2p-block-dnt-R470 -{+client-header-tagger{ab2p-block-dnt-R470} \ -} -# ||junph.cn^$domain=tiexue.net (easylistchina+easylist.txt: 3673) -.junph.cn - -#ab2p-block-dnt-R471 -{+client-header-tagger{ab2p-block-dnt-R471} \ -} -# ||booking.com/general.html?$domain=timeout.com (easylistchina+easylist.txt: 39875) -.booking.com/general\.html\? -# ||booking.com/general.html?$domain=timeout.com (easylist.txt: 29390) -.booking.com/general\.html\? - -#ab2p-block-dnt-R472 -{+client-header-tagger{ab2p-block-dnt-R472} \ -} -# ||tinychat.com/channel?frame=true&$subdocument,domain=tinypaste.com (easylistchina+easylist.txt: 45184) -.tinychat.com/channel\?frame=true& -# ||tinychat.com/channel?frame=true&$subdocument,domain=tinypaste.com (easylist.txt: 34699) -.tinychat.com/channel\?frame=true& - -#ab2p-block-dnt-R473 -{+client-header-tagger{ab2p-block-dnt-R473} \ -} -# ||tmz.vo.llnwd.net^*/sponsorship/$domain=tmz.com (easylistchina+easylist.txt: 45192) -.tmz.vo.llnwd.net/.*/sponsorship/ -# ||tmz.vo.llnwd.net^*/sponsorship/$domain=tmz.com (easylist.txt: 34707) -.tmz.vo.llnwd.net/.*/sponsorship/ - -#ab2p-block-dnt-R474 -{+client-header-tagger{ab2p-block-dnt-R474} \ -} -# ||194.14.0.39/pia_wide.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylistchina+easylist.txt: 41951) -.194.14.0.39/pia_wide\.png -# ||194.14.0.39/pia.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylistchina+easylist.txt: 41950) -.194.14.0.39/pia\.png -# ||194.14.0.39/pia_wide.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylist.txt: 31466) -.194.14.0.39/pia_wide\.png -# ||194.14.0.39/pia.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylist.txt: 31465) -.194.14.0.39/pia\.png - -#ab2p-block-dnt-R475 -{+client-header-tagger{ab2p-block-dnt-R475} \ -} -# ||kxcdn.com/dlbutton3.png$domain=torlock.com (easylistchina+easylist.txt: 43712) -.kxcdn.com/dlbutton3\.png -# ||kxcdn.com/dlbutton1.png$domain=torlock.com (easylistchina+easylist.txt: 43711) -.kxcdn.com/dlbutton1\.png -# ||kxcdn.com/dlbutton3.png$domain=torlock.com (easylist.txt: 33227) -.kxcdn.com/dlbutton3\.png -# ||kxcdn.com/dlbutton1.png$domain=torlock.com (easylist.txt: 33226) -.kxcdn.com/dlbutton1\.png - -#ab2p-block-dnt-R476 -{+client-header-tagger{ab2p-block-dnt-R476} \ -} -# ||aiosearch.com^$popup,domain=torrent-finder.info (easylistchina+easylist.txt: 46110) -.aiosearch.com -# ||aiosearch.com^$popup,domain=torrent-finder.info (easylist.txt: 35625) -.aiosearch.com - -#ab2p-block-dnt-R477 -{+client-header-tagger{ab2p-block-dnt-R477} \ -} -# ||runetki.tv^$popup,domain=torrent-pirat.com (advblock.txt: 40) -.runetki.tv - -#ab2p-block-dnt-R478 -{+client-header-tagger{ab2p-block-dnt-R478} \ -} -# ||vizortv.com^$subdocument,domain=torrentszona.com (advblock.txt: 6948) -.vizortv.com -# ||torrentsporno.com^$subdocument,domain=torrentszona.com (advblock.txt: 6946) -.torrentsporno.com -# ||torrentsline.com^$subdocument,domain=torrentszona.com (advblock.txt: 6945) -.torrentsline.com -# ||torrentsfilm.com^$subdocument,domain=torrentszona.com (advblock.txt: 6944) -.torrentsfilm.com -# ||onlinepsyholog.com^$subdocument,domain=torrentszona.com (advblock.txt: 6943) -.onlinepsyholog.com -# ||luxtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6942) -.luxtorrents.com -# ||listtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6941) -.listtorrents.com -# ||lifetorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6939) -.lifetorrents.com -# ||kinovizor.com^$subdocument,domain=torrentszona.com (advblock.txt: 6938) -.kinovizor.com -# ||funtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6937) -.funtorrents.com - -#ab2p-block-dnt-R479 -{+client-header-tagger{ab2p-block-dnt-R479} \ -} -# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina+easylist.txt: 5321) -.yupoo.com/3126961304/ - -#ab2p-block-dnt-R480 -{+client-header-tagger{ab2p-block-dnt-R480} \ -} -# ||t8.*.com/?$xmlhttprequest,domain=tube8.com (easylistchina+easylist.txt: 46910) -.t8.*./.*\.com/\? -.t8.*.com/\? -# ||t8.*.com/?$xmlhttprequest,domain=tube8.com (easylist.txt: 36425) -.t8.*./.*\.com/\? -.t8.*.com/\? - -#ab2p-block-dnt-R481 -{+client-header-tagger{ab2p-block-dnt-R481} \ -} -# ||cwer.ws^$popup,domain=turbobit.net (advblock.txt: 33) -.cwer.ws - -#ab2p-block-dnt-R482 -{+client-header-tagger{ab2p-block-dnt-R482} \ -} -# ||limbohost.net^$popup,domain=tusfiles.net (easylistchina+easylist.txt: 46163) -.limbohost.net -# ||limbohost.net^$popup,domain=tusfiles.net (easylist.txt: 35678) -.limbohost.net - -#ab2p-block-dnt-R483 -{+client-header-tagger{ab2p-block-dnt-R483} \ -} -# ||videoplaza.tv^$object-subrequest,third-party,domain=tv4play.se (easylistchina+easylist.txt: 37931) -.videoplaza.tv -# ||videoplaza.tv^$object-subrequest,third-party,domain=tv4play.se (easylist.txt: 27446) -.videoplaza.tv - -#ab2p-block-dnt-R484 -{+client-header-tagger{ab2p-block-dnt-R484} \ -} -# ||84.234.22.104/ads/$domain=tvcatchup.com (easylistchina+easylist.txt: 41990) -.84.234.22.104/ads/ -# ||84.234.22.104/ads/$domain=tvcatchup.com (easylist.txt: 31505) -.84.234.22.104/ads/ - -#ab2p-block-dnt-R485 -{+client-header-tagger{ab2p-block-dnt-R485} \ -} -# ||zoomin.tv/video/*.flv$third-party,domain=twitch.tv (easylistchina+easylist.txt: 41242) -.zoomin.tv/video/.*\.flv -# ||zoomin.tv/video/*.flv$third-party,domain=twitch.tv (easylist.txt: 30757) -.zoomin.tv/video/.*\.flv - -#ab2p-block-dnt-R486 -{+client-header-tagger{ab2p-block-dnt-R486} \ -} -# ||ictv-ic-ec.indieclicktv.com/media/videos/$object-subrequest,domain=twitchfilm.com (easylistchina+easylist.txt: 43424) -.ictv-ic-ec.indieclicktv.com/media/videos/ -# ||ictv-ic-ec.indieclicktv.com/media/videos/$object-subrequest,domain=twitchfilm.com (easylist.txt: 32939) -.ictv-ic-ec.indieclicktv.com/media/videos/ - -#ab2p-block-dnt-R487 -{+client-header-tagger{ab2p-block-dnt-R487} \ -} -# /img/*$image,domain=txzqw.com (easylistchina+easylist.txt: 1168) -/(.*/)?img/.* -# /gif/*$image,domain=txzqw.com (easylistchina+easylist.txt: 1153) -/(.*/)?gif/.* - -#ab2p-block-dnt-R488 -{+client-header-tagger{ab2p-block-dnt-R488} \ -} -# ||itv.com/priority/$object-subrequest,domain=u.tv (easylistchina+easylist.txt: 43575) -.itv.com/priority/ -# ||itv.com/priority/$object-subrequest,domain=u.tv (easylist.txt: 33090) -.itv.com/priority/ - -#ab2p-block-dnt-R489 -{+client-header-tagger{ab2p-block-dnt-R489} \ -} -# /nexp/dok2v=*/cloudflare/rocket.js$script,domain=ubuntugeek.com (easylistchina+easylist.txt: 41913) -/(.*/)?nexp/dok2v=.*/cloudflare/rocket\.js -# /nexp/dok2v=*/cloudflare/rocket.js$script,domain=ubuntugeek.com (easylist.txt: 31428) -/(.*/)?nexp/dok2v=.*/cloudflare/rocket\.js - -#ab2p-block-dnt-R490 -{+client-header-tagger{ab2p-block-dnt-R490} \ -} -# /lagou-$domain=uisdc.com (easylistchina+easylist.txt: 1187) -/(.*/)?lagou- -lagou-*. - -#ab2p-block-dnt-R491 -{+client-header-tagger{ab2p-block-dnt-R491} \ -} -# ||ustatik.com/_img/promo/takeovers_$domain=ultimate-guitar.com (easylistchina+easylist.txt: 45386) -.ustatik.com/_img/promo/takeovers_ -# ||ustatik.com/_img/promo/takeovers/$domain=ultimate-guitar.com (easylistchina+easylist.txt: 45385) -.ustatik.com/_img/promo/takeovers/ -# ||ustatik.com/_img/promo/takeovers_$domain=ultimate-guitar.com (easylist.txt: 34901) -.ustatik.com/_img/promo/takeovers_ -# ||ustatik.com/_img/promo/takeovers/$domain=ultimate-guitar.com (easylist.txt: 34900) -.ustatik.com/_img/promo/takeovers/ - -#ab2p-block-dnt-R492 -{+client-header-tagger{ab2p-block-dnt-R492} \ -} -# .cloudfront.net^$domain=unionpeer.org (advblock.txt: 1852) -/.*\.cloudfront\.net[^\w%.-] -.*.cloudfront.net - -#ab2p-block-dnt-R493 -{+client-header-tagger{ab2p-block-dnt-R493} \ -} -# ||postimg.org/998w2sb0b/blackops2hack.gif$domain=unknowncheats.me (easylistchina+easylist.txt: 44425) -.postimg.org/998w2sb0b/blackops2hack\.gif -# ||ilikecheats.net/images/$image,domain=unknowncheats.me (easylistchina+easylist.txt: 43439) -.ilikecheats.net/images/ -# ||postimg.org/998w2sb0b/blackops2hack.gif$domain=unknowncheats.me (easylist.txt: 33940) -.postimg.org/998w2sb0b/blackops2hack\.gif -# ||ilikecheats.net/images/$image,domain=unknowncheats.me (easylist.txt: 32954) -.ilikecheats.net/images/ - -#ab2p-block-dnt-R494 -{+client-header-tagger{ab2p-block-dnt-R494} \ -} -# /bannerpic/*$domain=uopera.net (easylistchina+easylist.txt: 1133) -/(.*/)?bannerpic/.* - -#ab2p-block-dnt-R495 -{+client-header-tagger{ab2p-block-dnt-R495} \ -} -# ||short.zain.biz^$popup,domain=up09.com (easylistchina+easylist.txt: 46181) -.short.zain.biz -# ||short.zain.biz^$popup,domain=up09.com (easylist.txt: 35696) -.short.zain.biz - -#ab2p-block-dnt-R496 -{+client-header-tagger{ab2p-block-dnt-R496} \ -} -# ||hexupload.com^*.gif$domain=uploadbaz.com (easylistchina+easylist.txt: 43340) -.hexupload.com/.*\.gif -# ||hexupload.com^*.gif$domain=uploadbaz.com (easylist.txt: 32855) -.hexupload.com/.*\.gif - -#ab2p-block-dnt-R497 -{+client-header-tagger{ab2p-block-dnt-R497} \ -} -# ||adf.ly^$popup,domain=uploadcore.com|urgrove.com (easylistchina+easylist.txt: 46107) -.adf.ly -# ||adf.ly^$popup,domain=uploadcore.com|urgrove.com (easylist.txt: 35622) -.adf.ly - -#ab2p-block-dnt-R498 -{+client-header-tagger{ab2p-block-dnt-R498} \ -} -# ||spyw.com^$domain=uploadlw.com (easylistchina+easylist.txt: 44875) -.spyw.com -# ||vze.com^$domain=uploadlw.com (easylistchina+easylist.txt: 41147) -.vze.com -# ||milanomoda.info^$domain=uploadlw.com (easylistchina+easylist.txt: 40617) -.milanomoda.info -# ||spyw.com^$domain=uploadlw.com (easylist.txt: 34390) -.spyw.com -# ||vze.com^$domain=uploadlw.com (easylist.txt: 30662) -.vze.com -# ||milanomoda.info^$domain=uploadlw.com (easylist.txt: 30132) -.milanomoda.info - -#ab2p-block-dnt-R499 -{+client-header-tagger{ab2p-block-dnt-R499} \ -} -# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina+easylist.txt: 4475) -.sdo.com - -#ab2p-block-dnt-R500 -{+client-header-tagger{ab2p-block-dnt-R500} \ -} -# /friends/*$image,domain=v2ex.com (easylistchina+easylist.txt: 1147) -/(.*/)?friends/.* -# /assets/sidebar/*$domain=v2ex.com (easylistchina+easylist.txt: 1124) -/(.*/)?assets/sidebar/.* - -#ab2p-block-dnt-R501 -{+client-header-tagger{ab2p-block-dnt-R501} \ -} -# ||nesk.co^$popup,domain=veehd.com (easylistchina+easylist.txt: 46168) -.nesk.co -# ||nesk.co^$popup,domain=veehd.com (easylist.txt: 35683) -.nesk.co - -#ab2p-block-dnt-R502 -{+client-header-tagger{ab2p-block-dnt-R502} \ -} -# /uploads/payad/*$domain=via-midgard.info|via-midgard1.info (advblock.txt: 5401) -/(.*/)?uploads/payad/.* - -#ab2p-block-dnt-R503 -{+client-header-tagger{ab2p-block-dnt-R503} \ -} -# ||moevideo.net/getit/$object-subrequest,domain=videochart.net (easylistchina+easylist.txt: 44008) -.moevideo.net/getit/ -# ||moevideo.net/getit/$object-subrequest,domain=videochart.net (easylist.txt: 33523) -.moevideo.net/getit/ - -#ab2p-block-dnt-R504 -{+client-header-tagger{ab2p-block-dnt-R504} \ -} -# ||vidspot.net^$subdocument,domain=vidspot.net (easylistchina+easylist.txt: 45444) -.vidspot.net -# ||vidspot.net^$subdocument,domain=vidspot.net (easylist.txt: 34959) -.vidspot.net - -#ab2p-block-dnt-R505 -{+client-header-tagger{ab2p-block-dnt-R505} \ -} -# ||babereporters.info^$popup,domain=viewcube.org (easylistchina+easylist.txt: 41813) -.babereporters.info -# ||babereporters.info^$popup,domain=viewcube.org (easylist.txt: 31328) -.babereporters.info - -#ab2p-block-dnt-R506 -{+client-header-tagger{ab2p-block-dnt-R506} \ -} -# /wp-content/plugins/wbounce/*$script,domain=viralcraze.net (easylistchina+easylist.txt: 41916) -/(.*/)?wp-content/plugins/wbounce/.* -# /wp-content/plugins/wbounce/*$script,domain=viralcraze.net (easylist.txt: 31431) -/(.*/)?wp-content/plugins/wbounce/.* - -#ab2p-block-dnt-R507 -{+client-header-tagger{ab2p-block-dnt-R507} \ -} -# ||jizz.best^$popup,domain=vivo.sx (easylistchina+easylist.txt: 46159) -.jizz.best -# ||jizz.best^$popup,domain=vivo.sx (easylist.txt: 35674) -.jizz.best - -#ab2p-block-dnt-R508 -{+client-header-tagger{ab2p-block-dnt-R508} \ -} -# ||safe.vk-saver.in.ua^$domain=vk-saver.in.ua (advblock.txt: 6369) -.safe.vk-saver.in.ua - -#ab2p-block-dnt-R509 -{+client-header-tagger{ab2p-block-dnt-R509} \ -} -# ||superfish.com^$domain=vk.com (advblock.txt: 6439) -.superfish.com - -#ab2p-block-dnt-R510 -{+client-header-tagger{ab2p-block-dnt-R510} \ -} -# ||video.thestaticvube.com/video/*.mp4$object-subrequest,domain=vube.com (easylistchina+easylist.txt: 45414) -.video.thestaticvube.com/video/.*\.mp4 -# ||video.thestaticvube.com/video/*.mp4$object-subrequest,domain=vube.com (easylist.txt: 34929) -.video.thestaticvube.com/video/.*\.mp4 - -#ab2p-block-dnt-R511 -{+client-header-tagger{ab2p-block-dnt-R511} \ -} -# .ru/inc/$subdocument,domain=vz.ru (advblock.txt: 5372) -/.*\.ru/inc/ -.*.ru/inc/ - -#ab2p-block-dnt-R512 -{+client-header-tagger{ab2p-block-dnt-R512} \ -} -# ||alicdn.com^$domain=wangyueblog.com|xiadele.com (easylistchina+easylist.txt: 2079) -.alicdn.com - -#ab2p-block-dnt-R513 -{+client-header-tagger{ab2p-block-dnt-R513} \ -} -# ||twt-static.washtimes.com^$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45923) -.twt-static.washtimes.com -# ||twt-static.washtimes.com^$script,domain=washingtontimes.com (easylist.txt: 35438) -.twt-static.washtimes.com - -#ab2p-block-dnt-R514 -{+client-header-tagger{ab2p-block-dnt-R514} \ -} -# ||wegrin.com^$popup,domain=watchfreemovies.ch (easylistchina+easylist.txt: 46211) -.wegrin.com -# ||wegrin.com^$popup,domain=watchfreemovies.ch (easylist.txt: 35726) -.wegrin.com - -#ab2p-block-dnt-R515 -{+client-header-tagger{ab2p-block-dnt-R515} \ -} -# ||whtsrv3.com^*==$domain=webhostingtalk.com (easylistchina+easylist.txt: 45598) -.whtsrv3.com/.*== -# /*;sz=*;ord=$domain=webhostingtalk.com (easylistchina+easylist.txt: 41902) -/(.*/)?.*;sz=.*;ord= -/.*;sz=.*;ord= -# ||whtsrv3.com^*==$domain=webhostingtalk.com (easylist.txt: 35113) -.whtsrv3.com/.*== -# /*;sz=*;ord=$domain=webhostingtalk.com (easylist.txt: 31417) -/(.*/)?.*;sz=.*;ord= -/.*;sz=.*;ord= - -#ab2p-block-dnt-R516 -{+client-header-tagger{ab2p-block-dnt-R516} \ -} -# ||ientrymail.com/webheadtools$domain=webpronews.com (easylistchina+easylist.txt: 43432) -.ientrymail.com/webheadtools -# ||ientrymail.com/webheadtools$domain=webpronews.com (easylist.txt: 32947) -.ientrymail.com/webheadtools - -#ab2p-block-dnt-R517 -{+client-header-tagger{ab2p-block-dnt-R517} \ -} -# ||static.plista.com^$script,domain=wg-gesucht.de (easylistchina+easylist.txt: 44890) -.static.plista.com -# ||static.plista.com^$script,domain=wg-gesucht.de (easylist.txt: 34405) -.static.plista.com - -#ab2p-block-dnt-R518 -{+client-header-tagger{ab2p-block-dnt-R518} \ -} -# ||imgur.com^$domain=wgun.net (easylistchina+easylist.txt: 3482) -.imgur.com - -#ab2p-block-dnt-R519 -{+client-header-tagger{ab2p-block-dnt-R519} \ -} -# ||getresponse.com^$domain=wigflip.com (easylistchina+easylist.txt: 43210) -.getresponse.com -# ||getresponse.com^$domain=wigflip.com (easylist.txt: 32725) -.getresponse.com - -#ab2p-block-dnt-R520 -{+client-header-tagger{ab2p-block-dnt-R520} \ -} -# ||85.17.254.150^*.php?$domain=wiretarget.com (easylistchina+easylist.txt: 41991) -.85.17.254.150/.*\.php\? -# ||85.17.254.150^*.php?$domain=wiretarget.com (easylist.txt: 31506) -.85.17.254.150/.*\.php\? - -#ab2p-block-dnt-R521 -{+client-header-tagger{ab2p-block-dnt-R521} \ -} -# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina+easylist.txt: 4938) -.uploadhouse.com/.*\.gif - -#ab2p-block-dnt-R522 -{+client-header-tagger{ab2p-block-dnt-R522} \ -} -# ||212.7.200.164^$domain=wjunction.com (easylistchina+easylist.txt: 41956) -.212.7.200.164 -# ||212.7.200.164^$domain=wjunction.com (easylist.txt: 31471) -.212.7.200.164 - -#ab2p-block-dnt-R523 -{+client-header-tagger{ab2p-block-dnt-R523} \ -} -# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1232) -/(.*/)?wp-content/uploads/.*vpn -# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1231) -/(.*/)?wp-content/uploads/.*hidemyass -# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1230) -/(.*/)?Webbanner_ -# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1113) -/(.*/)?ad_nydus\.png - -#ab2p-block-dnt-R524 -{+client-header-tagger{ab2p-block-dnt-R524} \ -} -# /attachment/album/*$domain=www.52hardware.com (easylistchina+easylist.txt: 1127) -/(.*/)?attachment/album/.* - -#ab2p-block-dnt-R525 -{+client-header-tagger{ab2p-block-dnt-R525} \ -} -# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina+easylist.txt: 5433) -.zsg.kimi.com.tw -# .html|$domain=www.gamer.com.tw (easylistchina+easylist.txt: 1095) -/.*\.html$ -.*.html - -#ab2p-block-dnt-R526 -{+client-header-tagger{ab2p-block-dnt-R526} \ -} -# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina+easylist.txt: 4074) -.nmgnews.com.cn/swf/0/10/ - -#ab2p-block-dnt-R527 -{+client-header-tagger{ab2p-block-dnt-R527} \ -} -# .info^$script,domain=www.pornhub.com (easylistchina+easylist.txt: 46221) -/.*\.info[^\w%.-] -.*.info -# .info^$script,domain=www.pornhub.com (easylist.txt: 35736) -/.*\.info[^\w%.-] -.*.info - -#ab2p-block-dnt-R528 -{+client-header-tagger{ab2p-block-dnt-R528} \ -} -# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina+easylist.txt: 3435) -.img*./.*\.itiexue\.net/2.*\.gif -.img*.itiexue.net/2.*\.gif - -#ab2p-block-dnt-R529 -{+client-header-tagger{ab2p-block-dnt-R529} \ -} -# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1084) -.xmds.opd2c.com -# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1073) -.moezone.taobao.com -# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1050) -.acgpost.taobao.com -# /item.htm?$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1040) -/(.*/)?item\.htm\? - -#ab2p-block-dnt-R530 -{+client-header-tagger{ab2p-block-dnt-R530} \ -} -# ||88.208.23.$third-party,domain=xhamster.com (easylistchina+easylist.txt: 41393) -.88.208.23.*. -# ||88.208.23.$third-party,domain=xhamster.com (easylist.txt: 30908) -.88.208.23.*. - -#ab2p-block-dnt-R531 -{+client-header-tagger{ab2p-block-dnt-R531} \ -} -# ||meinbonusxxl.de^$domain=xup.in (easylistchina+easylist.txt: 43938) -.meinbonusxxl.de -# ||meinbonusxxl.de^$domain=xup.in (easylist.txt: 33453) -.meinbonusxxl.de - -#ab2p-block-dnt-R532 -{+client-header-tagger{ab2p-block-dnt-R532} \ -} -# ||fc2.com^$popup,domain=xvideos.com (easylistchina+easylist.txt: 47075) -.fc2.com -# ||fc2.com^$popup,domain=xvideos.com (easylist.txt: 36590) -.fc2.com - -#ab2p-block-dnt-R533 -{+client-header-tagger{ab2p-block-dnt-R533} \ -} -# ||109.201.146.142^$domain=xxxbunker.com (easylistchina+easylist.txt: 46229) -.109.201.146.142 -# ||109.201.146.142^$domain=xxxbunker.com (easylist.txt: 35744) -.109.201.146.142 - -#ab2p-block-dnt-R534 -{+client-header-tagger{ab2p-block-dnt-R534} \ -} -# ||yimg.com^*_west.swf$domain=yahoo.com (easylistchina+easylist.txt: 45757) -.yimg.com/.*_west\.swf -# ||yimg.com^*_north.swf$domain=yahoo.com (easylistchina+easylist.txt: 45756) -.yimg.com/.*_north\.swf -# ||yimg.com^*_east.swf$domain=yahoo.com (easylistchina+easylist.txt: 45755) -.yimg.com/.*_east\.swf -# ||yimg.com^*/yfpadobject.js$domain=yahoo.com (easylistchina+easylist.txt: 45754) -.yimg.com/.*/yfpadobject\.js -# ||yimg.com^*/yad*.js$domain=yahoo.com (easylistchina+easylist.txt: 45752) -.yimg.com/.*/yad.*\.js -# ||yimg.com^*/ya-answers-dmros-ssl-min.js$domain=yahoo.com (easylistchina+easylist.txt: 45751) -.yimg.com/.*/ya-answers-dmros-ssl-min\.js -# ||yimg.com^*/darla-secure-pre-min.js$domain=yahoo.com (easylistchina+easylist.txt: 45748) -.yimg.com/.*/darla-secure-pre-min\.js -# ||yimg.com^*/billboardv2r5min.js$domain=yahoo.com (easylistchina+easylist.txt: 45747) -.yimg.com/.*/billboardv2r5min\.js -# ||yimg.com/rq/darla/$domain=yahoo.com (easylistchina+easylist.txt: 45746) -.yimg.com/rq/darla/ -# ||yimg.com/la/i/wan/widgets/wjobs/$subdocument,domain=yahoo.com (easylistchina+easylist.txt: 45745) -.yimg.com/la/i/wan/widgets/wjobs/ -# ||yimg.com/i/i/de/cat/yahoo.html$domain=yahoo.com (easylistchina+easylist.txt: 45744) -.yimg.com/i/i/de/cat/yahoo\.html -# ||yimg.com/hl/ap/default/*_background$image,domain=yahoo.com (easylistchina+easylist.txt: 45743) -.yimg.com/hl/ap/default/.*_background -# ||yimg.com/hl/ap/*_takeover_$domain=yahoo.com (easylistchina+easylist.txt: 45742) -.yimg.com/hl/ap/.*_takeover_ -# ||yimg.com/dh/ap/default/*/skins_$image,domain=yahoo.com (easylistchina+easylist.txt: 45741) -.yimg.com/dh/ap/default/.*/skins_ -# ||yimg.com/cv/eng/*/970x250_$domain=yahoo.com (easylistchina+easylist.txt: 45740) -.yimg.com/cv/eng/.*/970x250_ -# ||yimg.com/cv/eng/*/635x100_$domain=yahoo.com (easylistchina+easylist.txt: 45739) -.yimg.com/cv/eng/.*/635x100_ -# ||yimg.com/cv/eng/*.webm$domain=yahoo.com (easylistchina+easylist.txt: 45738) -.yimg.com/cv/eng/.*\.webm -# ||yimg.com/cv/ae/us/audience/$image,domain=yahoo.com (easylistchina+easylist.txt: 45737) -.yimg.com/cv/ae/us/audience/ -# ||yimg.com/cv/ae/ca/audience/$image,domain=yahoo.com (easylistchina+easylist.txt: 45736) -.yimg.com/cv/ae/ca/audience/ -# ||yimg.com/ao/adv/$script,domain=yahoo.com (easylistchina+easylist.txt: 45735) -.yimg.com/ao/adv/ -# ||http.atlas.cdn.yimg.com/yamplus/video_*.mp4?$object-subrequest,domain=yahoo.com (easylistchina+easylist.txt: 43384) -.http.atlas.cdn.yimg.com/yamplus/video_.*\.mp4\? -# ||yimg.com^*_skin_$domain=yahoo.com (easylistchina+easylist.txt: 41224) -.yimg.com/.*_skin_ -# ||yimg.com^*/dianominewwidget2.html$domain=yahoo.com (easylistchina+easylist.txt: 41221) -.yimg.com/.*/dianominewwidget2\.html -# ||bankrate.com^$subdocument,domain=yahoo.com (easylistchina+easylist.txt: 39811) -.bankrate.com -# ||yimg.com^*_west.swf$domain=yahoo.com (easylist.txt: 35272) -.yimg.com/.*_west\.swf -# ||yimg.com^*_north.swf$domain=yahoo.com (easylist.txt: 35271) -.yimg.com/.*_north\.swf -# ||yimg.com^*_east.swf$domain=yahoo.com (easylist.txt: 35270) -.yimg.com/.*_east\.swf -# ||yimg.com^*/yfpadobject.js$domain=yahoo.com (easylist.txt: 35269) -.yimg.com/.*/yfpadobject\.js -# ||yimg.com^*/yad*.js$domain=yahoo.com (easylist.txt: 35267) -.yimg.com/.*/yad.*\.js -# ||yimg.com^*/ya-answers-dmros-ssl-min.js$domain=yahoo.com (easylist.txt: 35266) -.yimg.com/.*/ya-answers-dmros-ssl-min\.js -# ||yimg.com^*/darla-secure-pre-min.js$domain=yahoo.com (easylist.txt: 35263) -.yimg.com/.*/darla-secure-pre-min\.js -# ||yimg.com^*/billboardv2r5min.js$domain=yahoo.com (easylist.txt: 35262) -.yimg.com/.*/billboardv2r5min\.js -# ||yimg.com/rq/darla/$domain=yahoo.com (easylist.txt: 35261) -.yimg.com/rq/darla/ -# ||yimg.com/la/i/wan/widgets/wjobs/$subdocument,domain=yahoo.com (easylist.txt: 35260) -.yimg.com/la/i/wan/widgets/wjobs/ -# ||yimg.com/i/i/de/cat/yahoo.html$domain=yahoo.com (easylist.txt: 35259) -.yimg.com/i/i/de/cat/yahoo\.html -# ||yimg.com/hl/ap/default/*_background$image,domain=yahoo.com (easylist.txt: 35258) -.yimg.com/hl/ap/default/.*_background -# ||yimg.com/hl/ap/*_takeover_$domain=yahoo.com (easylist.txt: 35257) -.yimg.com/hl/ap/.*_takeover_ -# ||yimg.com/dh/ap/default/*/skins_$image,domain=yahoo.com (easylist.txt: 35256) -.yimg.com/dh/ap/default/.*/skins_ -# ||yimg.com/cv/eng/*/970x250_$domain=yahoo.com (easylist.txt: 35255) -.yimg.com/cv/eng/.*/970x250_ -# ||yimg.com/cv/eng/*/635x100_$domain=yahoo.com (easylist.txt: 35254) -.yimg.com/cv/eng/.*/635x100_ -# ||yimg.com/cv/eng/*.webm$domain=yahoo.com (easylist.txt: 35253) -.yimg.com/cv/eng/.*\.webm -# ||yimg.com/cv/ae/us/audience/$image,domain=yahoo.com (easylist.txt: 35252) -.yimg.com/cv/ae/us/audience/ -# ||yimg.com/cv/ae/ca/audience/$image,domain=yahoo.com (easylist.txt: 35251) -.yimg.com/cv/ae/ca/audience/ -# ||yimg.com/ao/adv/$script,domain=yahoo.com (easylist.txt: 35250) -.yimg.com/ao/adv/ -# ||http.atlas.cdn.yimg.com/yamplus/video_*.mp4?$object-subrequest,domain=yahoo.com (easylist.txt: 32899) -.http.atlas.cdn.yimg.com/yamplus/video_.*\.mp4\? -# ||yimg.com^*_skin_$domain=yahoo.com (easylist.txt: 30739) -.yimg.com/.*_skin_ -# ||yimg.com^*/dianominewwidget2.html$domain=yahoo.com (easylist.txt: 30736) -.yimg.com/.*/dianominewwidget2\.html -# ||bankrate.com^$subdocument,domain=yahoo.com (easylist.txt: 29326) -.bankrate.com - -#ab2p-block-dnt-R535 -{+client-header-tagger{ab2p-block-dnt-R535} \ -} -# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina+easylist.txt: 5338) -.yytcdn.com/swf/plugins_new\.xml\? - -#ab2p-block-dnt-R536 -{+client-header-tagger{ab2p-block-dnt-R536} \ -} -# ||uselessjunk.com^$domain=yoloselfie.com (easylistchina+easylist.txt: 41772) -.uselessjunk.com -# ||uselessjunk.com^$domain=yoloselfie.com (easylist.txt: 31287) -.uselessjunk.com - -#ab2p-block-dnt-R537 -{+client-header-tagger{ab2p-block-dnt-R537} \ -} -# ||youporn.com^$script,domain=youporn.com (easylistchina+easylist.txt: 47051) -.youporn.com -# ||phncdn.com/cb/youpornwebfront/css/skin.css$domain=youporn.com (easylistchina+easylist.txt: 46677) -.phncdn.com/cb/youpornwebfront/css/skin\.css -# ||phncdn.com/cb/youpornwebfront/css/babes.css$domain=youporn.com (easylistchina+easylist.txt: 46676) -.phncdn.com/cb/youpornwebfront/css/babes\.css -# ||youporn.com^$script,domain=youporn.com (easylist.txt: 36566) -.youporn.com -# ||phncdn.com/cb/youpornwebfront/css/skin.css$domain=youporn.com (easylist.txt: 36192) -.phncdn.com/cb/youpornwebfront/css/skin\.css -# ||phncdn.com/cb/youpornwebfront/css/babes.css$domain=youporn.com (easylist.txt: 36191) -.phncdn.com/cb/youpornwebfront/css/babes\.css - -#ab2p-block-dnt-R538 -{+client-header-tagger{ab2p-block-dnt-R538} \ -} -# ||youporn.com^$script,subdocument,domain=youporngay.com (easylistchina+easylist.txt: 47052) -.youporn.com -# ||youporn.com^$script,subdocument,domain=youporngay.com (easylist.txt: 36567) -.youporn.com - -#ab2p-block-dnt-R539 -{+client-header-tagger{ab2p-block-dnt-R539} \ -} -# ||ytimg.com^*_banner$domain=youtube.com (easylistchina+easylist.txt: 45794) -.ytimg.com/.*_banner -# ||ytimg.com^*/new_watch_background_*.jpg?$domain=youtube.com (easylistchina+easylist.txt: 45793) -.ytimg.com/.*/new_watch_background_.*\.jpg\? -# ||ytimg.com^*/new_watch_background.jpg?$domain=youtube.com (easylistchina+easylist.txt: 45792) -.ytimg.com/.*/new_watch_background\.jpg\? -# ||google.com/jsapi?autoload=*%22ads%22$script,domain=youtube.com (easylistchina+easylist.txt: 43253) -.google.com/jsapi\?autoload=.*%22ads%22 -# ||espn.vad.go.com^$domain=youtube.com (easylistchina+easylist.txt: 42897) -.espn.vad.go.com -# ||topspin.net/secure/media/$image,domain=youtube.com (easylistchina+easylist.txt: 41058) -.topspin.net/secure/media/ -# ||ytimg.com^*_banner$domain=youtube.com (easylist.txt: 35309) -.ytimg.com/.*_banner -# ||ytimg.com^*/new_watch_background_*.jpg?$domain=youtube.com (easylist.txt: 35308) -.ytimg.com/.*/new_watch_background_.*\.jpg\? -# ||ytimg.com^*/new_watch_background.jpg?$domain=youtube.com (easylist.txt: 35307) -.ytimg.com/.*/new_watch_background\.jpg\? -# ||google.com/jsapi?autoload=*%22ads%22$script,domain=youtube.com (easylist.txt: 32768) -.google.com/jsapi\?autoload=.*%22ads%22 -# ||espn.vad.go.com^$domain=youtube.com (easylist.txt: 32412) -.espn.vad.go.com -# ||topspin.net/secure/media/$image,domain=youtube.com (easylist.txt: 30573) -.topspin.net/secure/media/ - -#ab2p-block-dnt-R540 -{+client-header-tagger{ab2p-block-dnt-R540} \ -} -# ||vids.ma^$domain=youwatch.org (easylistchina+easylist.txt: 45441) -.vids.ma -# ||vids.ma^$domain=youwatch.org (easylist.txt: 34956) -.vids.ma - -#ab2p-block-dnt-R541 -{+client-header-tagger{ab2p-block-dnt-R541} \ -} -# /r/video/*$domain=youxi.baidu.com (easylistchina+easylist.txt: 1208) -/(.*/)?r/video/.* - -#ab2p-block-dnt-R542 -{+client-header-tagger{ab2p-block-dnt-R542} \ -} -# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina+easylist.txt: 3039) -.googleusercontent.com/.*=w800-h352-no - -#ab2p-block-dnt-R543 -{+client-header-tagger{ab2p-block-dnt-R543} \ -} -# ||srcdd.com^$domain=zasv.com (easylistchina+easylist.txt: 4668) -.srcdd.com - -#ab2p-block-dnt-R544 -{+client-header-tagger{ab2p-block-dnt-R544} \ -} -# ||ip-ads.de^$domain=zattoo.com (easylistchina+easylist.txt: 43546) -.ip-ads.de -# ||emsservice.de/videos/$domain=zattoo.com (easylistchina+easylist.txt: 42874) -.emsservice.de/videos/ -# ||emsservice.de.s3.amazonaws.com/videos/$domain=zattoo.com (easylistchina+easylist.txt: 42873) -.emsservice.de.s3.amazonaws.com/videos/ -# ||ip-ads.de^$domain=zattoo.com (easylist.txt: 33061) -.ip-ads.de -# ||emsservice.de/videos/$domain=zattoo.com (easylist.txt: 32389) -.emsservice.de/videos/ -# ||emsservice.de.s3.amazonaws.com/videos/$domain=zattoo.com (easylist.txt: 32388) -.emsservice.de.s3.amazonaws.com/videos/ - -#ab2p-block-dnt-R545 -{+client-header-tagger{ab2p-block-dnt-R545} \ -} -# ||178.209.48.7^$domain=zerohedge.com (easylistchina+easylist.txt: 41947) -.178.209.48.7 -# ||178.209.48.7^$domain=zerohedge.com (easylist.txt: 31462) -.178.209.48.7 - -#ab2p-block-dnt-R546 -{+client-header-tagger{ab2p-block-dnt-R546} \ -} -# ||sinaimg.cn/large/*.jpg?$domain=zhaofuli.club (easylistchina+easylist.txt: 4578) -.sinaimg.cn/large/.*\.jpg\? - -#ab2p-block-dnt-R547 -{+client-header-tagger{ab2p-block-dnt-R547} \ -} -# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina+easylist.txt: 1069) +# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina.txt: 1093) .kanzipai.com -#ab2p-block-dnt-R548 -{+client-header-tagger{ab2p-block-dnt-R548} \ +#ab2p-block-dnt-Rn153 +{+client-header-tagger{ab2p-block-dnt-Rn153} \ } -# ||zloy.im^$domain=zloy.bz (advblock.txt: 6631) -.zloy.im - -#ab2p-block-dnt-R549 -{+client-header-tagger{ab2p-block-dnt-R549} \ -} -# ||v*.zoomby.ru/video/$object-subrequest,domain=zoomby.ru (advblock.txt: 6527) -.v*./.*\.zoomby\.ru/video/ -.v*.zoomby.ru/video/ - -#ab2p-block-dnt-R550 -{+client-header-tagger{ab2p-block-dnt-R550} \ -} -# ||moneycaptcha.ru/swf/$domain=写械褌褋泻懈泄-屑懈褉.net (advblock.txt: 6082) -.moneycaptcha.ru/swf/ - -#ab2p-block-dnt-Rn551 -{+client-header-tagger{ab2p-block-dnt-Rn551} \ -} -# |http://*/gg/$domain=~11185.cn (easylistchina+easylist.txt: 251) +# |http://*/gg/$domain=~11185.cn (easylistchina.txt: 260) /(.*/)?gg/ -#ab2p-block-dnt-Rn552 -{+client-header-tagger{ab2p-block-dnt-Rn552} \ +#ab2p-block-dnt-Rn154 +{+client-header-tagger{ab2p-block-dnt-Rn154} \ } -# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina+easylist.txt: 791) +# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina.txt: 808) .img.uu1001.cn -#ab2p-block-dnt-Rn553 -{+client-header-tagger{ab2p-block-dnt-Rn553} \ +#ab2p-block-dnt-Rn155 +{+client-header-tagger{ab2p-block-dnt-Rn155} \ } -# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina+easylist.txt: 927) +# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina.txt: 948) .tanx.com -#ab2p-block-dnt-Rn554 -{+client-header-tagger{ab2p-block-dnt-Rn554} \ +#ab2p-block-dnt-Rn156 +{+client-header-tagger{ab2p-block-dnt-Rn156} \ } -# /ad-local.$domain=~ad-local.de (easylistchina+easylist.txt: 11240) -/(.*/)?ad-local\. -ad-local.*. -# /ad-local.$domain=~ad-local.de (easylist.txt: 755) -/(.*/)?ad-local\. -ad-local.*. - -#ab2p-block-dnt-Rn555 -{+client-header-tagger{ab2p-block-dnt-Rn555} \ -} -# .com/ad.$domain=~ad-tuning.de (easylistchina+easylist.txt: 10906) -/.*\.com/ad\. -.*.com/ad\. -# .com/ad.$domain=~ad-tuning.de (easylist.txt: 421) -/.*\.com/ad\. -.*.com/ad\. - -#ab2p-block-dnt-Rn556 -{+client-header-tagger{ab2p-block-dnt-Rn556} \ -} -# ||46.246.120.230^$third-party,domain=~adexprt.com.ip (easylistchina+easylist.txt: 34806) -.46.246.120.230 -# ||46.246.120.230^$third-party,domain=~adexprt.com.ip (easylist.txt: 24321) -.46.246.120.230 - -#ab2p-block-dnt-Rn557 -{+client-header-tagger{ab2p-block-dnt-Rn557} \ -} -# /adfactory.$domain=~adfactory.rocks (easylistchina+easylist.txt: 11943) -/(.*/)?adfactory\. -adfactory.*. -# /adfactory.$domain=~adfactory.rocks (easylist.txt: 1458) -/(.*/)?adfactory\. -adfactory.*. - -#ab2p-block-dnt-Rn558 -{+client-header-tagger{ab2p-block-dnt-Rn558} \ -} -# /adhost.$domain=~adhost.dk (easylistchina+easylist.txt: 12036) -/(.*/)?adhost\. -adhost.*. -# /adhost.$domain=~adhost.dk (easylist.txt: 1551) -/(.*/)?adhost\. -adhost.*. - -#ab2p-block-dnt-Rn559 -{+client-header-tagger{ab2p-block-dnt-Rn559} \ -} -# /adiro.$domain=~adiro.se (easylistchina+easylist.txt: 12082) -/(.*/)?adiro\. -adiro.*. -# /adiro.$domain=~adiro.se (easylist.txt: 1597) -/(.*/)?adiro\. -adiro.*. - -#ab2p-block-dnt-Rn560 -{+client-header-tagger{ab2p-block-dnt-Rn560} \ -} -# .adlabs.$domain=~adlabs.ru (easylistchina+easylist.txt: 10830) -/.*\.adlabs\. -.*.adlabs.*. -# .adlabs.$domain=~adlabs.ru (easylist.txt: 345) -/.*\.adlabs\. -.*.adlabs.*. - -#ab2p-block-dnt-Rn561 -{+client-header-tagger{ab2p-block-dnt-Rn561} \ -} -# /adline.$domain=~adline.co.il (easylistchina+easylist.txt: 12118) -/(.*/)?adline\. -adline.*. -# /adline.$domain=~adline.co.il (easylist.txt: 1633) -/(.*/)?adline\. -adline.*. - -#ab2p-block-dnt-Rn562 -{+client-header-tagger{ab2p-block-dnt-Rn562} \ -} -# ||62.27.51.163^$third-party,domain=~adlive.de.ip (easylistchina+easylist.txt: 34818) -.62.27.51.163 -# ||62.27.51.163^$third-party,domain=~adlive.de.ip (easylist.txt: 24333) -.62.27.51.163 - -#ab2p-block-dnt-Rn563 -{+client-header-tagger{ab2p-block-dnt-Rn563} \ -} -# /admax.$domain=~admax.cn|~admax.co|~admax.eu|~admax.fi|~admax.info|~admax.net|~admax.nu|~admax.org|~admax.se|~admax.us (easylistchina+easylist.txt: 12161) -/(.*/)?admax\. -admax.*. -# /admax.$domain=~admax.cn|~admax.co|~admax.eu|~admax.fi|~admax.info|~admax.net|~admax.nu|~admax.org|~admax.se|~admax.us (easylist.txt: 1676) -/(.*/)?admax\. -admax.*. - -#ab2p-block-dnt-Rn564 -{+client-header-tagger{ab2p-block-dnt-Rn564} \ -} -# /adnetwork.$domain=~adnetwork.ie (easylistchina+easylist.txt: 12197) -/(.*/)?adnetwork\. -adnetwork.*. -# /adnetwork.$domain=~adnetwork.ie (easylist.txt: 1712) -/(.*/)?adnetwork\. -adnetwork.*. - -#ab2p-block-dnt-Rn565 -{+client-header-tagger{ab2p-block-dnt-Rn565} \ -} -# .adnetwork.$domain=~adnetwork.ie|~adnetwork.sk (easylistchina+easylist.txt: 10832) -/.*\.adnetwork\. -.*.adnetwork.*. -# .adnetwork.$domain=~adnetwork.ie|~adnetwork.sk (easylist.txt: 347) -/.*\.adnetwork\. -.*.adnetwork.*. - -#ab2p-block-dnt-Rn566 -{+client-header-tagger{ab2p-block-dnt-Rn566} \ -} -# /adnext.$domain=~adnext.pl (easylistchina+easylist.txt: 12206) -/(.*/)?adnext\. -adnext.*. -# /adnext.$domain=~adnext.pl (easylist.txt: 1721) -/(.*/)?adnext\. -adnext.*. - -#ab2p-block-dnt-Rn567 -{+client-header-tagger{ab2p-block-dnt-Rn567} \ -} -# /adphoto.$domain=~adphoto.fr (easylistchina+easylist.txt: 12249) -/(.*/)?adphoto\. -adphoto.*. -# /adphoto.$domain=~adphoto.fr (easylist.txt: 1764) -/(.*/)?adphoto\. -adphoto.*. - -#ab2p-block-dnt-Rn568 -{+client-header-tagger{ab2p-block-dnt-Rn568} \ -} -# .adresult.$domain=~adresult.ch (easylistchina+easylist.txt: 10835) -/.*\.adresult\. -.*.adresult.*. -# .adresult.$domain=~adresult.ch (easylist.txt: 350) -/.*\.adresult\. -.*.adresult.*. - -#ab2p-block-dnt-Rn569 -{+client-header-tagger{ab2p-block-dnt-Rn569} \ -} -# /ads4.$domain=~ads4.city (easylistchina+easylist.txt: 12674) -/(.*/)?ads4\. -ads4.*. -# /ads4.$domain=~ads4.city (easylist.txt: 2189) -/(.*/)?ads4\. -ads4.*. - -#ab2p-block-dnt-Rn570 -{+client-header-tagger{ab2p-block-dnt-Rn570} \ -} -# .adService.$domain=~adservice.com (easylistchina+easylist.txt: 10860) -/.*\.adService\. -.*.adService.*. -# .adService.$domain=~adservice.com (easylist.txt: 375) -/.*\.adService\. -.*.adService.*. - -#ab2p-block-dnt-Rn571 -{+client-header-tagger{ab2p-block-dnt-Rn571} \ -} -# ||199.102.225.178^$third-party,domain=~adsimilate.ip (easylistchina+easylist.txt: 34763) -.199.102.225.178 -# ||199.102.225.178^$third-party,domain=~adsimilate.ip (easylist.txt: 24278) -.199.102.225.178 - -#ab2p-block-dnt-Rn572 -{+client-header-tagger{ab2p-block-dnt-Rn572} \ -} -# ||graphics.pop6.com/javascript/$script,third-party,domain=~adultfriendfinder.co.uk|~adultfriendfinder.com (easylistchina+easylist.txt: 41570) -.graphics.pop6.com/javascript/ -# ||graphics.pop6.com/javascript/$script,third-party,domain=~adultfriendfinder.co.uk|~adultfriendfinder.com (easylist.txt: 31085) -.graphics.pop6.com/javascript/ - -#ab2p-block-dnt-Rn573 -{+client-header-tagger{ab2p-block-dnt-Rn573} \ -} -# ://adv.$domain=~adv.ru|~adv.vg|~advids.co|~farapp.com|~forex-tv-online.com|~typeform.com|~welaika.com (easylistchina+easylist.txt: 16307) -/.*://adv\. -adv.*. -# ://adv.$domain=~adv.ru|~adv.vg|~advids.co|~farapp.com|~forex-tv-online.com|~typeform.com|~welaika.com (easylist.txt: 5822) -/.*://adv\. -adv.*. - -#ab2p-block-dnt-Rn574 -{+client-header-tagger{ab2p-block-dnt-Rn574} \ -} -# .advert.$domain=~advert.ly (easylistchina+easylist.txt: 10866) -/.*\.advert\. -.*.advert.*. -# .advert.$domain=~advert.ly (easylist.txt: 381) -/.*\.advert\. -.*.advert.*. - -#ab2p-block-dnt-Rn575 -{+client-header-tagger{ab2p-block-dnt-Rn575} \ -} -# /advertise.$domain=~advertise.apartments.com|~advertise.bingads.microsoft.com (easylistchina+easylist.txt: 13271) -/(.*/)?advertise\. -advertise.*. -# /advertise.$domain=~advertise.apartments.com|~advertise.bingads.microsoft.com (easylist.txt: 2786) -/(.*/)?advertise\. -advertise.*. - -#ab2p-block-dnt-Rn576 -{+client-header-tagger{ab2p-block-dnt-Rn576} \ -} -# /advertiser.$domain=~advertiser.growmobile.com|~panel.rightflow.com (easylistchina+easylist.txt: 13295) -/(.*/)?advertiser\. -advertiser.*. -# /advertiser.$domain=~advertiser.growmobile.com|~panel.rightflow.com (easylist.txt: 2810) -/(.*/)?advertiser\. -advertiser.*. - -#ab2p-block-dnt-Rn577 -{+client-header-tagger{ab2p-block-dnt-Rn577} \ -} -# /adworks.$domain=~adworks.co.il (easylistchina+easylist.txt: 13406) -/(.*/)?adworks\. -adworks.*. -# /adworks.$domain=~adworks.co.il (easylist.txt: 2921) -/(.*/)?adworks\. -adworks.*. - -#ab2p-block-dnt-Rn578 -{+client-header-tagger{ab2p-block-dnt-Rn578} \ -} -# /adx.$domain=~adx.uk.com (easylistchina+easylist.txt: 13414) -/(.*/)?adx\. -adx.*. -# /adx.$domain=~adx.uk.com (easylist.txt: 2929) -/(.*/)?adx\. -adx.*. - -#ab2p-block-dnt-Rn579 -{+client-header-tagger{ab2p-block-dnt-Rn579} \ -} -# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina+easylist.txt: 928) +# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina.txt: 949) .taobao.com/go/ -#ab2p-block-dnt-Rn580 -{+client-header-tagger{ab2p-block-dnt-Rn580} \ +#ab2p-block-dnt-Rn157 +{+client-header-tagger{ab2p-block-dnt-Rn157} \ } -# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina+easylist.txt: 648) +# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina.txt: 663) .alimama.cn -#ab2p-block-dnt-Rn581 -{+client-header-tagger{ab2p-block-dnt-Rn581} \ +#ab2p-block-dnt-Rn158 +{+client-header-tagger{ab2p-block-dnt-Rn158} \ } -# /annonse.$domain=~annonse.nu (easylistchina+easylist.txt: 13525) -/(.*/)?annonse\. -annonse.*. -# /annonse.$domain=~annonse.nu (easylist.txt: 3040) -/(.*/)?annonse\. -annonse.*. - -#ab2p-block-dnt-Rn582 -{+client-header-tagger{ab2p-block-dnt-Rn582} \ -} -# ||173.225.186.54^$third-party,domain=~apps.su.ip (easylistchina+easylist.txt: 39585) -.173.225.186.54 -# ||173.225.186.54^$third-party,domain=~apps.su.ip (easylist.txt: 29100) -.173.225.186.54 - -#ab2p-block-dnt-Rn583 -{+client-header-tagger{ab2p-block-dnt-Rn583} \ -} -# /asyncjs.$domain=~asyncjs.com (easylistchina+easylist.txt: 13562) -/(.*/)?asyncjs\. -asyncjs.*. -# /asyncjs.$domain=~asyncjs.com (easylist.txt: 3077) -/(.*/)?asyncjs\. -asyncjs.*. - -#ab2p-block-dnt-Rn584 -{+client-header-tagger{ab2p-block-dnt-Rn584} \ -} -# ||livejasmin.com^$third-party,domain=~awempire.com (easylistchina+easylist.txt: 41613) -.livejasmin.com -# ||livejasmin.com^$third-party,domain=~awempire.com (easylist.txt: 31128) -.livejasmin.com - -#ab2p-block-dnt-Rn585 -{+client-header-tagger{ab2p-block-dnt-Rn585} \ -} -# /advertiser/*$domain=~bingads.microsoft.com|~mobileapptracking.com|~trialpay.com (easylistchina+easylist.txt: 13296) -/(.*/)?advertiser/.* -# /advertiser/*$domain=~bingads.microsoft.com|~mobileapptracking.com|~trialpay.com (easylist.txt: 2811) -/(.*/)?advertiser/.* - -#ab2p-block-dnt-Rn586 -{+client-header-tagger{ab2p-block-dnt-Rn586} \ -} -# /blockadblock.$domain=~blockadblock.com (easylistchina+easylist.txt: 17022) -/(.*/)?blockadblock\. -blockadblock.*. -# /blockadblock.$domain=~blockadblock.com (easylist.txt: 6537) -/(.*/)?blockadblock\. -blockadblock.*. - -#ab2p-block-dnt-Rn587 -{+client-header-tagger{ab2p-block-dnt-Rn587} \ -} -# ||216.41.211.36/widget/$third-party,domain=~bpaww.com.ip (easylistchina+easylist.txt: 39593) -.216.41.211.36/widget/ -# ||216.41.211.36/widget/$third-party,domain=~bpaww.com.ip (easylist.txt: 29108) -.216.41.211.36/widget/ - -#ab2p-block-dnt-Rn588 -{+client-header-tagger{ab2p-block-dnt-Rn588} \ -} -# ||bt.kiev.ua^$domain=~bt.kiev.ua (advblock.txt: 873) -.bt.kiev.ua - -#ab2p-block-dnt-Rn589 -{+client-header-tagger{ab2p-block-dnt-Rn589} \ -} -# ||carnage.ru^$popup,domain=~carnage.ru|~karnage.ru|~sesterce.ru (advblock.txt: 126) -.carnage.ru - -#ab2p-block-dnt-Rn590 -{+client-header-tagger{ab2p-block-dnt-Rn590} \ -} -# .com/ad/$~third-party,domain=~channel4.com|~mediaplex.com (easylistchina+easylist.txt: 10908) -/.*\.com/ad/ -.*.com/ad/ -# .com/ad/$~third-party,domain=~channel4.com|~mediaplex.com (easylist.txt: 423) -/.*\.com/ad/ -.*.com/ad/ - -#ab2p-block-dnt-Rn591 -{+client-header-tagger{ab2p-block-dnt-Rn591} \ -} -# ||clickad.com.ua^$domain=~clickad.com.ua (advblock.txt: 895) -.clickad.com.ua - -#ab2p-block-dnt-Rn592 -{+client-header-tagger{ab2p-block-dnt-Rn592} \ -} -# ||complexmedianetwork.com/cdn/agenda.complex.com/$domain=~complex.com (easylistchina+easylist.txt: 39981) -.complexmedianetwork.com/cdn/agenda\.complex\.com/ -# ||complexmedianetwork.com/cdn/agenda.complex.com/$domain=~complex.com (easylist.txt: 29496) -.complexmedianetwork.com/cdn/agenda\.complex\.com/ - -#ab2p-block-dnt-Rn593 -{+client-header-tagger{ab2p-block-dnt-Rn593} \ -} -# ||pubdirecte.com^$third-party,domain=~debrideurstream.fr (easylistchina+easylist.txt: 37303) -.pubdirecte.com -# ||pubdirecte.com^$third-party,domain=~debrideurstream.fr (easylist.txt: 26818) -.pubdirecte.com - -#ab2p-block-dnt-Rn594 -{+client-header-tagger{ab2p-block-dnt-Rn594} \ -} -# ||204.93.181.78^$third-party,domain=~discountmags.ip (easylistchina+easylist.txt: 34772) -.204.93.181.78 -# ||204.93.181.78^$third-party,domain=~discountmags.ip (easylist.txt: 24287) -.204.93.181.78 - -#ab2p-block-dnt-Rn595 -{+client-header-tagger{ab2p-block-dnt-Rn595} \ -} -# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina+easylist.txt: 1988) +# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina.txt: 1976) .acg.178.com/.*/t_ -#ab2p-block-dnt-Rn596 -{+client-header-tagger{ab2p-block-dnt-Rn596} \ +#ab2p-block-dnt-Rn159 +{+client-header-tagger{ab2p-block-dnt-Rn159} \ } -# /duilian.$domain=~duilian.msra.cn (easylistchina+easylist.txt: 142) +# /duilian.$domain=~duilian.msra.cn (easylistchina.txt: 145) /(.*/)?duilian\. duilian.*. -#ab2p-block-dnt-Rn597 -{+client-header-tagger{ab2p-block-dnt-Rn597} \ +#ab2p-block-dnt-Rn160 +{+client-header-tagger{ab2p-block-dnt-Rn160} \ } -# ||217.115.147.241/media/$third-party,domain=~elb-kind.de.ip (easylistchina+easylist.txt: 39594) -.217.115.147.241/media/ -# ||217.115.147.241/media/$third-party,domain=~elb-kind.de.ip (easylist.txt: 29109) -.217.115.147.241/media/ - -#ab2p-block-dnt-Rn598 -{+client-header-tagger{ab2p-block-dnt-Rn598} \ -} -# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina+easylist.txt: 875) +# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina.txt: 894) .offcn.com -#ab2p-block-dnt-Rn599 -{+client-header-tagger{ab2p-block-dnt-Rn599} \ +#ab2p-block-dnt-Rn161 +{+client-header-tagger{ab2p-block-dnt-Rn161} \ } -# /etology.$domain=~etology.com (easylistchina+easylist.txt: 14203) -/(.*/)?etology\. -etology.*. -# /etology.$domain=~etology.com (easylist.txt: 3718) -/(.*/)?etology\. -etology.*. - -#ab2p-block-dnt-Rn600 -{+client-header-tagger{ab2p-block-dnt-Rn600} \ -} -# ||encyclopediadramatica.es/edf/$domain=~forum.encyclopediadramatica.es (easylistchina+easylist.txt: 42877) -.encyclopediadramatica.es/edf/ -# ||encyclopediadramatica.es/edf/$domain=~forum.encyclopediadramatica.es (easylist.txt: 32392) -.encyclopediadramatica.es/edf/ - -#ab2p-block-dnt-Rn601 -{+client-header-tagger{ab2p-block-dnt-Rn601} \ -} -# ||encyclopediadramatica.se/edf/$domain=~forum.encyclopediadramatica.se (easylistchina+easylist.txt: 42880) -.encyclopediadramatica.se/edf/ -# ||encyclopediadramatica.se/edf/$domain=~forum.encyclopediadramatica.se (easylist.txt: 32395) -.encyclopediadramatica.se/edf/ - -#ab2p-block-dnt-Rn602 -{+client-header-tagger{ab2p-block-dnt-Rn602} \ -} -# ||amazonaws.com/fotomag/$domain=~fotomag.com.ua (advblock.txt: 789) -.amazonaws.com/fotomag/ - -#ab2p-block-dnt-Rn603 -{+client-header-tagger{ab2p-block-dnt-Rn603} \ -} -# ||yourfuckbook.com^$third-party,domain=~fuckbookhookups.com (easylistchina+easylist.txt: 39469) -.yourfuckbook.com -# ||yourfuckbook.com^$third-party,domain=~fuckbookhookups.com (easylist.txt: 28984) -.yourfuckbook.com - -#ab2p-block-dnt-Rn604 -{+client-header-tagger{ab2p-block-dnt-Rn604} \ -} -# /floatad.$domain=~fwxgx.com (easylistchina+easylist.txt: 147) +# /floatad.$domain=~fwxgx.com (easylistchina.txt: 151) /(.*/)?floatad\. floatad.*. -#ab2p-block-dnt-Rn605 -{+client-header-tagger{ab2p-block-dnt-Rn605} \ +#ab2p-block-dnt-Rn162 +{+client-header-tagger{ab2p-block-dnt-Rn162} \ } -# ||online.ua/goods/$domain=~goods.ua (advblock.txt: 6174) -.online.ua/goods/ - -#ab2p-block-dnt-Rn606 -{+client-header-tagger{ab2p-block-dnt-Rn606} \ -} -# ||d2a0bnlkc0czvp.cloudfront.net^$domain=~gowatchit.com (easylistchina+easylist.txt: 40042) -.d2a0bnlkc0czvp.cloudfront.net -# ||d2a0bnlkc0czvp.cloudfront.net^$domain=~gowatchit.com (easylist.txt: 29557) -.d2a0bnlkc0czvp.cloudfront.net - -#ab2p-block-dnt-Rn607 -{+client-header-tagger{ab2p-block-dnt-Rn607} \ -} -# |http://gg.$third-party,domain=~guagua.cn (easylistchina+easylist.txt: 261) +# |http://gg.$third-party,domain=~guagua.cn (easylistchina.txt: 270) gg.*. -#ab2p-block-dnt-Rn608 -{+client-header-tagger{ab2p-block-dnt-Rn608} \ +#ab2p-block-dnt-Rn163 +{+client-header-tagger{ab2p-block-dnt-Rn163} \ } -# ||hitex.com.ua^$domain=~hitex.com.ua (advblock.txt: 1057) -.hitex.com.ua - -#ab2p-block-dnt-Rn609 -{+client-header-tagger{ab2p-block-dnt-Rn609} \ -} -# /advertisers/*$domain=~home.tapjoy.com|~panel.rightflow.com (easylistchina+easylist.txt: 13298) -/(.*/)?advertisers/.* -# /advertisers/*$domain=~home.tapjoy.com|~panel.rightflow.com (easylist.txt: 2813) -/(.*/)?advertisers/.* - -#ab2p-block-dnt-Rn610 -{+client-header-tagger{ab2p-block-dnt-Rn610} \ -} -# ||108.166.93.81/rotate/$domain=~infowars.com.ip (easylistchina+easylist.txt: 39579) -.108.166.93.81/rotate/ -# ||108.166.93.81/rotate/$domain=~infowars.com.ip (easylist.txt: 29094) -.108.166.93.81/rotate/ - -#ab2p-block-dnt-Rn611 -{+client-header-tagger{ab2p-block-dnt-Rn611} \ -} -# ||itsellservice.com.ua^$domain=~itsellservice.com.ua (advblock.txt: 1109) -.itsellservice.com.ua - -#ab2p-block-dnt-Rn612 -{+client-header-tagger{ab2p-block-dnt-Rn612} \ -} -# ||itsmygame.com.ua^$domain=~itsmygame.com.ua (advblock.txt: 1110) -.itsmygame.com.ua - -#ab2p-block-dnt-Rn613 -{+client-header-tagger{ab2p-block-dnt-Rn613} \ -} -# ||adf.ly/js/$third-party,domain=~j.gs|~q.gs (easylistchina+easylist.txt: 39671) -.adf.ly/js/ -# ||adf.ly/js/$third-party,domain=~j.gs|~q.gs (easylist.txt: 29186) -.adf.ly/js/ - -#ab2p-block-dnt-Rn614 -{+client-header-tagger{ab2p-block-dnt-Rn614} \ -} -# ||go.jetswap.com^$domain=~jetswap.com (advblock.txt: 2318) -.go.jetswap.com - -#ab2p-block-dnt-Rn615 -{+client-header-tagger{ab2p-block-dnt-Rn615} \ -} -# ||bw.pronto.ru^$domain=~job.ru (advblock.txt: 2068) -.bw.pronto.ru - -#ab2p-block-dnt-Rn616 -{+client-header-tagger{ab2p-block-dnt-Rn616} \ -} -# ||ad2games.com^$third-party,domain=~jobvite.com (easylistchina+easylist.txt: 34904) -.ad2games.com -# ||ad2games.com^$third-party,domain=~jobvite.com (easylist.txt: 24419) -.ad2games.com - -#ab2p-block-dnt-Rn617 -{+client-header-tagger{ab2p-block-dnt-Rn617} \ -} -# ||kinofilms.com.ua^$domain=~kinofilms.com.ua (advblock.txt: 1131) -.kinofilms.com.ua - -#ab2p-block-dnt-Rn618 -{+client-header-tagger{ab2p-block-dnt-Rn618} \ -} -# //rs.mail.ru/b$third-party,domain=~km.ru (advblock.txt: 6830) -rs.mail.ru/b - -#ab2p-block-dnt-Rn619 -{+client-header-tagger{ab2p-block-dnt-Rn619} \ -} -# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina+easylist.txt: 4409) +# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina.txt: 4399) .rm.sina.com.cn -#ab2p-block-dnt-Rn620 -{+client-header-tagger{ab2p-block-dnt-Rn620} \ +#ab2p-block-dnt-Rn164 +{+client-header-tagger{ab2p-block-dnt-Rn164} \ } -# .leads.su/$domain=~leads.su (advblock.txt: 1853) -/.*\.leads\.su/ -.*.leads.su +# ||lianmeng.360.cn^$domain=~lianmeng.360.cn (easylistchina.txt: 861) +.lianmeng.360.cn -#ab2p-block-dnt-Rn621 -{+client-header-tagger{ab2p-block-dnt-Rn621} \ +#ab2p-block-dnt-Rn165 +{+client-header-tagger{ab2p-block-dnt-Rn165} \ } -# ||209.15.224.6^$third-party,domain=~liverail-mlgtv.ip (easylistchina+easylist.txt: 39592) -.209.15.224.6 -# ||209.15.224.6^$third-party,domain=~liverail-mlgtv.ip (easylist.txt: 29107) -.209.15.224.6 +# ||bahamut.com.tw^*/2KU/*?v=$~collapse,image,domain=~m.gamer.com.tw (easylistchina.txt: 2144) +.bahamut.com.tw/.*/2KU/.*\?v= -#ab2p-block-dnt-Rn622 -{+client-header-tagger{ab2p-block-dnt-Rn622} \ +#ab2p-block-dnt-Rn166 +{+client-header-tagger{ab2p-block-dnt-Rn166} \ } -# ||magnet.kiev.ua^$domain=~magnet.kiev.ua (advblock.txt: 1193) -.magnet.kiev.ua - -#ab2p-block-dnt-Rn623 -{+client-header-tagger{ab2p-block-dnt-Rn623} \ -} -# ||95.131.238.35^$third-party,domain=~maltatoday.mt.ip (easylistchina+easylist.txt: 39610) -.95.131.238.35 -# ||95.131.238.35^$third-party,domain=~maltatoday.mt.ip (easylist.txt: 29125) -.95.131.238.35 - -#ab2p-block-dnt-Rn624 -{+client-header-tagger{ab2p-block-dnt-Rn624} \ -} -# ||mambo.kiev.ua^$domain=~mambo.kiev.ua (advblock.txt: 1196) -.mambo.kiev.ua - -#ab2p-block-dnt-Rn625 -{+client-header-tagger{ab2p-block-dnt-Rn625} \ -} -# ||mgid.com^$third-party,domain=~marketgid.com|~marketgid.com.ua (easylistchina+easylist.txt: 36875) -.mgid.com -# ||mgid.com^$third-party,domain=~marketgid.com|~marketgid.com.ua (easylist.txt: 26390) -.mgid.com - -#ab2p-block-dnt-Rn626 -{+client-header-tagger{ab2p-block-dnt-Rn626} \ -} -# ||dt07.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylistchina+easylist.txt: 36106) -.dt07.net -# ||dt00.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylistchina+easylist.txt: 36105) -.dt00.net -# ||dt07.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylist.txt: 25621) -.dt07.net -# ||dt00.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylist.txt: 25620) -.dt00.net - -#ab2p-block-dnt-Rn627 -{+client-header-tagger{ab2p-block-dnt-Rn627} \ -} -# -advertise.$domain=~mb-advertise.gr (easylistchina+easylist.txt: 10692) -/.*-advertise\. -.*-advertise.*. -# -advertise.$domain=~mb-advertise.gr (easylist.txt: 207) -/.*-advertise\. -.*-advertise.*. - -#ab2p-block-dnt-Rn628 -{+client-header-tagger{ab2p-block-dnt-Rn628} \ -} -# /adfarm.$~third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 11946) -/(.*/)?adfarm\. -adfarm.*. -# /adfarm.$~image,third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 11945) -/(.*/)?adfarm\. -adfarm.*. -# .com/ad/$~image,third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 10907) -/.*\.com/ad/ -.*.com/ad/ -# /adfarm.$~third-party,domain=~mediaplex.com (easylist.txt: 1461) -/(.*/)?adfarm\. -adfarm.*. -# /adfarm.$~image,third-party,domain=~mediaplex.com (easylist.txt: 1460) -/(.*/)?adfarm\. -adfarm.*. -# .com/ad/$~image,third-party,domain=~mediaplex.com (easylist.txt: 422) -/.*\.com/ad/ -.*.com/ad/ - -#ab2p-block-dnt-Rn629 -{+client-header-tagger{ab2p-block-dnt-Rn629} \ -} -# ||meganews.kiev.ua^$domain=~meganews.kiev.ua (advblock.txt: 1221) -.meganews.kiev.ua - -#ab2p-block-dnt-Rn630 -{+client-header-tagger{ab2p-block-dnt-Rn630} \ -} -# ||anyfiles.ru^$domain=~moi-progi.ru (advblock.txt: 796) -.anyfiles.ru - -#ab2p-block-dnt-Rn631 -{+client-header-tagger{ab2p-block-dnt-Rn631} \ -} -# ||adm.fwmrm.net/p/msnbc_live/$object-subrequest,third-party,domain=~msnbc.msn.com|~www.nbcnews.com (easylistchina+easylist.txt: 35046) -.adm.fwmrm.net/p/msnbc_live/ -# ||adm.fwmrm.net/p/msnbc_live/$object-subrequest,third-party,domain=~msnbc.msn.com|~www.nbcnews.com (easylist.txt: 24561) -.adm.fwmrm.net/p/msnbc_live/ - -#ab2p-block-dnt-Rn632 -{+client-header-tagger{ab2p-block-dnt-Rn632} \ -} -# ||mydirtyhobby.com^$third-party,domain=~my-dirty-hobby.com|~mydirtyhobby.de (easylistchina+easylist.txt: 40654) -.mydirtyhobby.com -# ||mydirtyhobby.com^$third-party,domain=~my-dirty-hobby.com|~mydirtyhobby.de (easylist.txt: 30169) -.mydirtyhobby.com - -#ab2p-block-dnt-Rn633 -{+client-header-tagger{ab2p-block-dnt-Rn633} \ -} -# //rs.mail.ru/b*.swf|$domain=~my.mail.ru (advblock.txt: 6809) -rs.mail.ru/b.*\.swf$ - -#ab2p-block-dnt-Rn634 -{+client-header-tagger{ab2p-block-dnt-Rn634} \ -} -# /mydirtyhobby.$domain=~mydirtyhobby.com|~mydirtyhobby.de (easylistchina+easylist.txt: 15052) -/(.*/)?mydirtyhobby\. -mydirtyhobby.*. -# /mydirtyhobby.$domain=~mydirtyhobby.com|~mydirtyhobby.de (easylist.txt: 4567) -/(.*/)?mydirtyhobby\. -mydirtyhobby.*. - -#ab2p-block-dnt-Rn635 -{+client-header-tagger{ab2p-block-dnt-Rn635} \ -} -# /images/ad.$domain=~ngohq.com (easylistchina+easylist.txt: 14654) -/(.*/)?images/ad\. -# /images/ad.$domain=~ngohq.com (easylist.txt: 4169) -/(.*/)?images/ad\. - -#ab2p-block-dnt-Rn636 -{+client-header-tagger{ab2p-block-dnt-Rn636} \ -} -# ||novostimira.$domain=~novostimira.com|~novostimira.com.ua|~novostimira.ua (advblock.txt: 1806) -.novostimira.*. - -#ab2p-block-dnt-Rn637 -{+client-header-tagger{ab2p-block-dnt-Rn637} \ -} -# ||nster.net^$third-party,domain=~nster.com (easylistchina+easylist.txt: 37034) -.nster.net -# ||nster.net^$third-party,domain=~nster.com (easylist.txt: 26549) -.nster.net - -#ab2p-block-dnt-Rn638 -{+client-header-tagger{ab2p-block-dnt-Rn638} \ -} -# /advertising-$domain=~outbrain.com (easylistchina+easylist.txt: 13302) -/(.*/)?advertising- -advertising-*. -# /advertising-$domain=~outbrain.com (easylist.txt: 2817) -/(.*/)?advertising- -advertising-*. - -#ab2p-block-dnt-Rn639 -{+client-header-tagger{ab2p-block-dnt-Rn639} \ -} -# ?advertiserid=$domain=~outbrain.com|~seek.co.nz|~seek.com.au (easylistchina+easylist.txt: 16419) -/.*\?advertiserid= -# ?advertiserid=$domain=~outbrain.com|~seek.co.nz|~seek.com.au (easylist.txt: 5934) -/.*\?advertiserid= - -#ab2p-block-dnt-Rn640 -{+client-header-tagger{ab2p-block-dnt-Rn640} \ -} -# ||ozone.ru^$third-party,domain=~ozon.ru|~ozonru.co.il|~ozonru.com|~ozonru.eu|~ozonru.kz (easylistchina+easylist.txt: 39175) -.ozone.ru -# ||ozone.ru^$third-party,domain=~ozon.ru|~ozonru.co.il|~ozonru.com|~ozonru.eu|~ozonru.kz (easylist.txt: 28690) -.ozone.ru - -#ab2p-block-dnt-Rn641 -{+client-header-tagger{ab2p-block-dnt-Rn641} \ -} -# ||173.199.120.7/delivery/$domain=~p2p.adserver.ip (easylistchina+easylist.txt: 39584) -.173.199.120.7/delivery/ -# ||87.230.102.24^$third-party,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 34831) -.87.230.102.24 -# ||209.222.8.217^$third-party,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 34774) -.209.222.8.217 -# ||173.199.120.7/delivery/$domain=~p2p.adserver.ip (easylist.txt: 29099) -.173.199.120.7/delivery/ -# ||87.230.102.24^$third-party,domain=~p2p.adserver.ip (easylist.txt: 24346) -.87.230.102.24 -# ||209.222.8.217^$third-party,domain=~p2p.adserver.ip (easylist.txt: 24289) -.209.222.8.217 - -#ab2p-block-dnt-Rn642 -{+client-header-tagger{ab2p-block-dnt-Rn642} \ -} -# ?advertiser_id=$domain=~panel.rightflow.com (easylistchina+easylist.txt: 16418) -/.*\?advertiser_id= -# /advertisers.$image,script,subdocument,domain=~panel.rightflow.com (easylistchina+easylist.txt: 13297) -/(.*/)?advertisers\. -advertisers.*. -# ?advertiser_id=$domain=~panel.rightflow.com (easylist.txt: 5933) -/.*\?advertiser_id= -# /advertisers.$image,script,subdocument,domain=~panel.rightflow.com (easylist.txt: 2812) -/(.*/)?advertisers\. -advertisers.*. - -#ab2p-block-dnt-Rn643 -{+client-header-tagger{ab2p-block-dnt-Rn643} \ -} -# /adwords.$domain=~ppc.ee (easylistchina+easylist.txt: 13402) -/(.*/)?adwords\. -adwords.*. -# /adwords.$domain=~ppc.ee (easylist.txt: 2917) -/(.*/)?adwords\. -adwords.*. - -#ab2p-block-dnt-Rn644 -{+client-header-tagger{ab2p-block-dnt-Rn644} \ -} -# ||qs.kiev.ua^$domain=~qs.kiev.ua (advblock.txt: 1400) -.qs.kiev.ua - -#ab2p-block-dnt-Rn645 -{+client-header-tagger{ab2p-block-dnt-Rn645} \ -} -# /redtram.$domain=~redtram.com|~redtram.fm (advblock.txt: 522) -/(.*/)?redtram\. -redtram.*. -# .redtram.$domain=~redtram.com|~redtram.fm (advblock.txt: 328) -/.*\.redtram\. -.*.redtram.*. - -#ab2p-block-dnt-Rn646 -{+client-header-tagger{ab2p-block-dnt-Rn646} \ -} -# ||rozetka.com.ua^$domain=~rozetka.com.ua (advblock.txt: 1451) -.rozetka.com.ua - -#ab2p-block-dnt-Rn647 -{+client-header-tagger{ab2p-block-dnt-Rn647} \ -} -# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina+easylist.txt: 245) +# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina.txt: 254) /.*\.tw/ad/ .*.tw/ad/ -#ab2p-block-dnt-Rn648 -{+client-header-tagger{ab2p-block-dnt-Rn648} \ +#ab2p-block-dnt-Rn167 +{+client-header-tagger{ab2p-block-dnt-Rn167} \ } -# |http://*/js/ad.$domain=~sac.net.cn (easylistchina+easylist.txt: 255) +# |http://*/js/ad.$domain=~sac.net.cn (easylistchina.txt: 264) /(.*/)?js/ad\. -#ab2p-block-dnt-Rn649 -{+client-header-tagger{ab2p-block-dnt-Rn649} \ +#ab2p-block-dnt-Rn168 +{+client-header-tagger{ab2p-block-dnt-Rn168} \ } -# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina+easylist.txt: 710) +# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina.txt: 726) .dotmore.com.tw -#ab2p-block-dnt-Rn650 -{+client-header-tagger{ab2p-block-dnt-Rn650} \ +#ab2p-block-dnt-Rn169 +{+client-header-tagger{ab2p-block-dnt-Rn169} \ } -# ||sedo.cachefly.net^$domain=~sedoparking.com (easylistchina+easylist.txt: 44709) -.sedo.cachefly.net -# ||sedo.cachefly.net^$domain=~sedoparking.com (easylist.txt: 34224) -.sedo.cachefly.net - -#ab2p-block-dnt-Rn651 -{+client-header-tagger{ab2p-block-dnt-Rn651} \ -} -# ||seo24.com.ua^$domain=~seo24.com.ua (advblock.txt: 1489) -.seo24.com.ua - -#ab2p-block-dnt-Rn652 -{+client-header-tagger{ab2p-block-dnt-Rn652} \ -} -# ||sextalk.com.ru^$domain=~sextalk.com.ru (advblock.txt: 1507) -.sextalk.com.ru - -#ab2p-block-dnt-Rn653 -{+client-header-tagger{ab2p-block-dnt-Rn653} \ -} -# ||188.138.1.45^$third-party,domain=~shatecraft.com.ip (easylistchina+easylist.txt: 34759) -.188.138.1.45 -# ||188.138.1.45^$third-party,domain=~shatecraft.com.ip (easylist.txt: 24274) -.188.138.1.45 - -#ab2p-block-dnt-Rn654 -{+client-header-tagger{ab2p-block-dnt-Rn654} \ -} -# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina+easylist.txt: 5001) +# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina.txt: 4978) .wan.sogoucdn.com/cdn/flash/ -#ab2p-block-dnt-Rn655 -{+client-header-tagger{ab2p-block-dnt-Rn655} \ +#ab2p-block-dnt-Rn170 +{+client-header-tagger{ab2p-block-dnt-Rn170} \ } -# /homepage_ads/*$domain=~swedishbeauty.com (easylistchina+easylist.txt: 14557) -/(.*/)?homepage_ads/.* -# /homepage_ads/*$domain=~swedishbeauty.com (easylist.txt: 4072) -/(.*/)?homepage_ads/.* - -#ab2p-block-dnt-Rn656 -{+client-header-tagger{ab2p-block-dnt-Rn656} \ -} -# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina+easylist.txt: 3370) +# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina.txt: 3355) .ifengimg.com/mappa/ -#ab2p-block-dnt-Rn657 -{+client-header-tagger{ab2p-block-dnt-Rn657} \ +#ab2p-block-dnt-Rn171 +{+client-header-tagger{ab2p-block-dnt-Rn171} \ } -# /advertising/*$~xmlhttprequest,domain=~temple.edu (easylistchina+easylist.txt: 13304) -/(.*/)?advertising/.* -# /advertising/*$~xmlhttprequest,domain=~temple.edu (easylist.txt: 2819) -/(.*/)?advertising/.* - -#ab2p-block-dnt-Rn658 -{+client-header-tagger{ab2p-block-dnt-Rn658} \ -} -# ||208.43.84.120/trueswordsa3.gif$third-party,domain=~trueswords.com.ip (easylistchina+easylist.txt: 39591) -.208.43.84.120/trueswordsa3\.gif -# ||208.43.84.120/trueswordsa3.gif$third-party,domain=~trueswords.com.ip (easylist.txt: 29106) -.208.43.84.120/trueswordsa3\.gif - -#ab2p-block-dnt-Rn659 -{+client-header-tagger{ab2p-block-dnt-Rn659} \ -} -# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina+easylist.txt: 73) +# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina.txt: 70) .s.yimg.com/.*/flash_general_ -#ab2p-block-dnt-Rn660 -{+client-header-tagger{ab2p-block-dnt-Rn660} \ +#ab2p-block-dnt-Rn172 +{+client-header-tagger{ab2p-block-dnt-Rn172} \ } -# /ad4.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11481) -/(.*/)?ad4\. -ad4.*. -# /ad3.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11466) -/(.*/)?ad3\. -ad3.*. -# /ad2.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11451) -/(.*/)?ad2\. -ad2.*. -# /ad1.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11430) -/(.*/)?ad1\. -ad1.*. -# /ad0.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11425) -/(.*/)?ad0\. -ad0.*. -# /ad4.$domain=~vereinslinie.de (easylist.txt: 996) -/(.*/)?ad4\. -ad4.*. -# /ad3.$domain=~vereinslinie.de (easylist.txt: 981) -/(.*/)?ad3\. -ad3.*. -# /ad2.$domain=~vereinslinie.de (easylist.txt: 966) -/(.*/)?ad2\. -ad2.*. -# /ad1.$domain=~vereinslinie.de (easylist.txt: 945) -/(.*/)?ad1\. -ad1.*. -# /ad0.$domain=~vereinslinie.de (easylist.txt: 940) -/(.*/)?ad0\. -ad0.*. - -#ab2p-block-dnt-Rn661 -{+client-header-tagger{ab2p-block-dnt-Rn661} \ -} -# ||viprelax.com.ua^$domain=~viprelax.com.ua (advblock.txt: 1679) -.viprelax.com.ua - -#ab2p-block-dnt-Rn662 -{+client-header-tagger{ab2p-block-dnt-Rn662} \ -} -# ||ero.ru^$third-party,domain=~vpets.ru (advblock.txt: 2237) -.ero.ru - -#ab2p-block-dnt-Rn663 -{+client-header-tagger{ab2p-block-dnt-Rn663} \ -} -# ||wau.com.ua^$domain=~wau.com.ua (advblock.txt: 1707) -.wau.com.ua - -#ab2p-block-dnt-Rn664 -{+client-header-tagger{ab2p-block-dnt-Rn664} \ -} -# ||wave525.com.ua^$domain=~wave525.com.ua (advblock.txt: 1708) -.wave525.com.ua - -#ab2p-block-dnt-Rn665 -{+client-header-tagger{ab2p-block-dnt-Rn665} \ -} -# ||worldofrest.com.ua^$domain=~worldofrest.com.ua (advblock.txt: 1736) -.worldofrest.com.ua - -#ab2p-block-dnt-Rn666 -{+client-header-tagger{ab2p-block-dnt-Rn666} \ -} -# ||cpm.wargaming.net^$popup,domain=~worldoftanks.ru (advblock.txt: 134) -.cpm.wargaming.net - -#ab2p-block-dnt-Rn667 -{+client-header-tagger{ab2p-block-dnt-Rn667} \ -} -# ||69.50.226.158^$third-party,domain=~worth1000.com.ip (easylistchina+easylist.txt: 39605) -.69.50.226.158 -# ||69.50.226.158^$third-party,domain=~worth1000.com.ip (easylist.txt: 29120) -.69.50.226.158 - -#ab2p-block-dnt-Rn668 -{+client-header-tagger{ab2p-block-dnt-Rn668} \ -} -# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina+easylist.txt: 4056) +# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina.txt: 4047) .news.sina.com.cn/pfpnews/js/libweb\.js -# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina+easylist.txt: 2593) +# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina.txt: 2579) .d5.sina.com.cn -#ab2p-block-dnt-Rn669 -{+client-header-tagger{ab2p-block-dnt-Rn669} \ +#ab2p-block-dnt-Rn173 +{+client-header-tagger{ab2p-block-dnt-Rn173} \ } -# /xtendmedia.$domain=~xtendmedia.dk (easylistchina+easylist.txt: 16257) -/(.*/)?xtendmedia\. -xtendmedia.*. -# /xtendmedia.$domain=~xtendmedia.dk (easylist.txt: 5772) -/(.*/)?xtendmedia\. -xtendmedia.*. - -#ab2p-block-dnt-Rn670 -{+client-header-tagger{ab2p-block-dnt-Rn670} \ -} -# ||yimg.com/no/$domain=~yahoo.com (easylistchina+easylist.txt: 5262) +# ||yimg.com/no/$domain=~yahoo.com (easylistchina.txt: 5236) .yimg.com/no/ -#ab2p-block-dnt-Rn671 -{+client-header-tagger{ab2p-block-dnt-Rn671} \ +#ab2p-block-dnt-Rn174 +{+client-header-tagger{ab2p-block-dnt-Rn174} \ } -# /picad/*$domain=~ychr.com (easylistchina+easylist.txt: 195) +# /picad/*$domain=~ychr.com (easylistchina.txt: 203) /(.*/)?picad/.* -#ab2p-block-dnt-Rn672 -{+client-header-tagger{ab2p-block-dnt-Rn672} \ +#ab2p-block-dnt-Rn175 +{+client-header-tagger{ab2p-block-dnt-Rn175} \ } -# ||114la.com^$third-party,domain=~ylmf.com (easylistchina+easylist.txt: 514) +# ||114la.com^$third-party,domain=~ylmf.com (easylistchina.txt: 527) .114la.com -#ab2p-block-dnt-Rn673 -{+client-header-tagger{ab2p-block-dnt-Rn673} \ -} -# ||173.245.86.115^$domain=~yobt.com.ip (easylistchina+easylist.txt: 38689) -.173.245.86.115 -# ||173.245.86.115^$domain=~yobt.com.ip (easylist.txt: 28204) -.173.245.86.115 - -#ab2p-block-dnt-Rn674 -{+client-header-tagger{ab2p-block-dnt-Rn674} \ -} -# _reklama_$domain=~youtube.com (easylistchina+easylist.txt: 16895) -/.*_reklama_ -# _reklama_$domain=~youtube.com (easylist.txt: 6410) -/.*_reklama_ - -#ab2p-block-dnt-Rn675 -{+client-header-tagger{ab2p-block-dnt-Rn675} \ -} -# ||zzima.com^$popup,domain=~zzima.com (advblock.txt: 199) -.zzima.com - #ab2p-block-elem { \ } TAG:^ab2p-block-elem$ -# ||ymages.org/prepop.php$popup (easylistchina+easylist.txt: 47094) -.ymages.org/prepop\.php -# ||r18.com/*utm_source$popup (easylistchina+easylist.txt: 47091) -.r18.com/.*utm_source -# ||publicagent.com/bigzpup.php$popup (easylistchina+easylist.txt: 47090) -.publicagent.com/bigzpup\.php -# ||pornuppz.info/out.php$popup (easylistchina+easylist.txt: 47089) -.pornuppz.info/out\.php -# ||pop.mrstiff.com^$popup (easylistchina+easylist.txt: 47086) -.pop.mrstiff.com -# ||pop.fapxl.com^$popup (easylistchina+easylist.txt: 47085) -.pop.fapxl.com -# ||pinporn.com/popunder/$popup (easylistchina+easylist.txt: 47084) -.pinporn.com/popunder/ -# ||namethatporn.com/ntpoo$popup (easylistchina+easylist.txt: 47083) -.namethatporn.com/ntpoo -# ||movies.askjolene.com/c64?clickid=$popup (easylistchina+easylist.txt: 47082) -.movies.askjolene.com/c64\?clickid= -# ||imagebam.com/redirect_awe.php$popup (easylistchina+easylist.txt: 47081) -.imagebam.com/redirect_awe\.php -# ||heganteens.com/exo.php$popup (easylistchina+easylist.txt: 47080) -.heganteens.com/exo\.php -# ||hegansex.com/exo.php$popup (easylistchina+easylist.txt: 47079) -.hegansex.com/exo\.php -# ||h2porn.com/pu.php$popup (easylistchina+easylist.txt: 47078) -.h2porn.com/pu\.php -# ||fantastube.com/track.php$popup (easylistchina+easylist.txt: 47074) -.fantastube.com/track\.php -# ||fantasti.cc^*?ad=$popup (easylistchina+easylist.txt: 47073) -.fantasti.cc/.*\?ad= -# ||eporner.com/pop.php$popup (easylistchina+easylist.txt: 47072) -.eporner.com/pop\.php -# ||ad.userporn.com^$popup (easylistchina+easylist.txt: 47071) -.ad.userporn.com -# ||zazzybabes.com/misc/virtuagirl-skin.js (easylistchina+easylist.txt: 47066) -.zazzybabes.com/misc/virtuagirl-skin\.js -# ||yuvutu.com^*/banners/ (easylistchina+easylist.txt: 47065) -.yuvutu.com/.*/banners/ -# ||yumymilf.com^*/banners/ (easylistchina+easylist.txt: 47064) -.yumymilf.com/.*/banners/ -# ||yporn.tv/uploads/flv_player/midroll_images/ (easylistchina+easylist.txt: 47063) -.yporn.tv/uploads/flv_player/midroll_images/ -# ||yporn.tv/uploads/flv_player/commercials/ (easylistchina+easylist.txt: 47062) -.yporn.tv/uploads/flv_player/commercials/ -# ||youx.xxx/thumb_top/ (easylistchina+easylist.txt: 47061) -.youx.xxx/thumb_top/ -# ||youtubelike.com/ftt2/toplists/ (easylistchina+easylist.txt: 47060) -.youtubelike.com/ftt2/toplists/ -# ||yourlust.com/im/postroll.html (easylistchina+easylist.txt: 47059) -.yourlust.com/im/postroll\.html -# ||yourlust.com/im/onpause.html (easylistchina+easylist.txt: 47058) -.yourlust.com/im/onpause\.html -# ||yourdarkdesires.com/3.html (easylistchina+easylist.txt: 47057) -.yourdarkdesires.com/3\.html -# ||yourdarkdesires.com/2.html (easylistchina+easylist.txt: 47056) -.yourdarkdesires.com/2\.html -# ||yourdarkdesires.com/1.html (easylistchina+easylist.txt: 47055) -.yourdarkdesires.com/1\.html -# ||yourdailygirls.com/vanilla/process.php (easylistchina+easylist.txt: 47054) -.yourdailygirls.com/vanilla/process\.php -# ||youporn.com^$subdocument,~third-party (easylistchina+easylist.txt: 47053) -.youporn.com -# ||youporn.com/watch_postroll/ (easylistchina+easylist.txt: 47050) -.youporn.com/watch_postroll/ -# ||youporn.com/capedorset/ (easylistchina+easylist.txt: 47049) -.youporn.com/capedorset/ -# ||youporn-hub.com/newlcd.js (easylistchina+easylist.txt: 47048) -.youporn-hub.com/newlcd\.js -# ||youporn-hub.com/lcdscript.js (easylistchina+easylist.txt: 47047) -.youporn-hub.com/lcdscript\.js -# ||youngpornvideos.com/images/wmasterthecoolporn/ (easylistchina+easylist.txt: 47046) -.youngpornvideos.com/images/wmasterthecoolporn/ -# ||youngpornvideos.com/images/webmasterdelightlinks/ (easylistchina+easylist.txt: 47045) -.youngpornvideos.com/images/webmasterdelightlinks/ -# ||youngpornvideos.com/images/teencash/ (easylistchina+easylist.txt: 47044) -.youngpornvideos.com/images/teencash/ -# ||youngpornvideos.com/images/mofoscash/ (easylistchina+easylist.txt: 47043) -.youngpornvideos.com/images/mofoscash/ -# ||youngpornvideos.com/images/glamglam/ (easylistchina+easylist.txt: 47042) -.youngpornvideos.com/images/glamglam/ -# ||youngpornvideos.com/images/bangbros/ (easylistchina+easylist.txt: 47041) -.youngpornvideos.com/images/bangbros/ -# ||youjizz.com^$~third-party,xmlhttprequest (easylistchina+easylist.txt: 47040) -.youjizz.com -# ||youjizz.com^$subdocument,~third-party (easylistchina+easylist.txt: 47039) -.youjizz.com -# ||youjizz.com/vivid/ (easylistchina+easylist.txt: 47038) -.youjizz.com/vivid/ -# ||youaresogay.com/*.html (easylistchina+easylist.txt: 47037) -.youaresogay.com/.*\.html -# ||yobt.tv/rec/ (easylistchina+easylist.txt: 47036) -.yobt.tv/rec/ -# ||yobt.tv/js/ttu.js (easylistchina+easylist.txt: 47035) -.yobt.tv/js/ttu\.js -# ||yobt.com/rec/ (easylistchina+easylist.txt: 47034) -.yobt.com/rec/ -# ||yea.xxx/img/creatives/ (easylistchina+easylist.txt: 47033) -.yea.xxx/img/creatives/ -# ||xxxymovies.com/js/win.js (easylistchina+easylist.txt: 47032) -.xxxymovies.com/js/win\.js -# ||xxxxsextube.com/*.html$subdocument (easylistchina+easylist.txt: 47031) -.xxxxsextube.com/.*\.html -# ||xxxporntalk.com/images/ (easylistchina+easylist.txt: 47030) -.xxxporntalk.com/images/ -# ||xxxlinks.es/xvideos.js (easylistchina+easylist.txt: 47029) -.xxxlinks.es/xvideos\.js -# ||xxxkinky.com/pap.js (easylistchina+easylist.txt: 47028) -.xxxkinky.com/pap\.js -# ||xxxhost.me/xpw.gif (easylistchina+easylist.txt: 47027) -.xxxhost.me/xpw\.gif -# ||xxxgames.biz^*/sponsors/ (easylistchina+easylist.txt: 47026) -.xxxgames.biz/.*/sponsors/ -# ||xxxfile.net^*/netload_premium.gif (easylistchina+easylist.txt: 47025) -.xxxfile.net/.*/netload_premium\.gif -# ||xxxblink.com/rec/ (easylistchina+easylist.txt: 47024) -.xxxblink.com/rec/ -# ||xxxblink.com/js/pops. (easylistchina+easylist.txt: 47023) -.xxxblink.com/js/pops\. -# ||xxvideo.us/playertext.html (easylistchina+easylist.txt: 47022) -.xxvideo.us/playertext\.html -# ||xxvideo.us/bnr.js (easylistchina+easylist.txt: 47021) -.xxvideo.us/bnr\.js -# ||xxvideo.us/ad728x15 (easylistchina+easylist.txt: 47020) -.xxvideo.us/ad728x15 -# ||xxnxx.eu/index.php?xyz_lbx= (easylistchina+easylist.txt: 47019) -.xxnxx.eu/index\.php\?xyz_lbx= -# ||xvideohost.com/hor_banner.php (easylistchina+easylist.txt: 47018) -.xvideohost.com/hor_banner\.php -# ||xtravids.com/pop.php (easylistchina+easylist.txt: 47017) -.xtravids.com/pop\.php -# ||xogogo.com/images/latestpt.gif (easylistchina+easylist.txt: 47016) -.xogogo.com/images/latestpt\.gif -# ||xhcdn.com^*/ads_ (easylistchina+easylist.txt: 47015) -.xhcdn.com/.*/ads_ -# ||xhamsterpremiumpass.com/premium_scenes.html (easylistchina+easylist.txt: 47014) -.xhamsterpremiumpass.com/premium_scenes\.html -# ||xhamster.com/js/xpu.js (easylistchina+easylist.txt: 47013) -.xhamster.com/js/xpu\.js -# ||xhamster.com/ads/ (easylistchina+easylist.txt: 47012) -.xhamster.com/ads/ -# ||xfanz.com^*_banner_ (easylistchina+easylist.txt: 47011) -.xfanz.com/.*_banner_ -# ||xcritic.com/img/200x150_ (easylistchina+easylist.txt: 47010) -.xcritic.com/img/200x150_ -# ||xcritic.com/images/watch- (easylistchina+easylist.txt: 47009) -.xcritic.com/images/watch- -# ||xcritic.com/images/rent- (easylistchina+easylist.txt: 47008) -.xcritic.com/images/rent- -# ||xcritic.com/images/buy- (easylistchina+easylist.txt: 47007) -.xcritic.com/images/buy- -# ||xbutter.com/js/pop-er.js (easylistchina+easylist.txt: 47006) -.xbutter.com/js/pop-er\.js -# ||xbutter.com/geturl.php/ (easylistchina+easylist.txt: 47005) -.xbutter.com/geturl\.php/ -# ||xbutter.com/adz.html (easylistchina+easylist.txt: 47004) -.xbutter.com/adz\.html -# ||xbooru.com/block/adblocks.js (easylistchina+easylist.txt: 47003) -.xbooru.com/block/adblocks\.js -# ||xbabe.com/iframes/ (easylistchina+easylist.txt: 47002) -.xbabe.com/iframes/ -# ||x3xtube.com/banner_rotating_ (easylistchina+easylist.txt: 47001) -.x3xtube.com/banner_rotating_ -# ||x.vipergirls.to^ (easylistchina+easylist.txt: 47000) -.x.vipergirls.to -# ||x.eroticity.net^ (easylistchina+easylist.txt: 46999) -.x.eroticity.net -# ||wunbuck.com/iframes/aaw_leaderboard.html (easylistchina+easylist.txt: 46998) -.wunbuck.com/iframes/aaw_leaderboard\.html -# ||wunbuck.com/_odd_images/banners/ (easylistchina+easylist.txt: 46997) -.wunbuck.com/_odd_images/banners/ -# ||wrenchtube.com/poppt.js (easylistchina+easylist.txt: 46996) -.wrenchtube.com/poppt\.js -# ||wowomg.com/*.html (easylistchina+easylist.txt: 46995) -.wowomg.com/.*\.html -# ||worldsex.com/c/ (easylistchina+easylist.txt: 46994) -.worldsex.com/c/ -# ||wikiporno.org/header21.html (easylistchina+easylist.txt: 46993) -.wikiporno.org/header21\.html -# ||wikiporno.org/header2.html (easylistchina+easylist.txt: 46992) -.wikiporno.org/header2\.html -# ||wiki-stars.com/trade/ (easylistchina+easylist.txt: 46991) -.wiki-stars.com/trade/ -# ||wiki-stars.com/thumb_if.php? (easylistchina+easylist.txt: 46990) -.wiki-stars.com/thumb_if\.php\? -# ||whozacunt.com/images/banner_ (easylistchina+easylist.txt: 46989) -.whozacunt.com/images/banner_ -# ||whozacunt.com/images/*_300x200_ (easylistchina+easylist.txt: 46988) -.whozacunt.com/images/.*_300x200_ -# ||whozacunt.com/images/*-300x250. (easylistchina+easylist.txt: 46987) -.whozacunt.com/images/.*-300x250\. -# ||whitedolly.com/wcf/images/redbar/logo_neu.gif (easylistchina+easylist.txt: 46986) -.whitedolly.com/wcf/images/redbar/logo_neu\.gif -# ||wetpussygames.com/images/promo/ (easylistchina+easylist.txt: 46985) -.wetpussygames.com/images/promo/ -# ||wetplace.com/wetplace_html/ (easylistchina+easylist.txt: 46984) -.wetplace.com/wetplace_html/ -# ||wetplace.com/js/adpwetplace (easylistchina+easylist.txt: 46983) -.wetplace.com/js/adpwetplace -# ||wetplace.com/iframes/$subdocument (easylistchina+easylist.txt: 46982) -.wetplace.com/iframes/ -# ||wegcash.com/click/ (easylistchina+easylist.txt: 46981) -.wegcash.com/click/ -# ||weberotic.net/banners/ (easylistchina+easylist.txt: 46980) -.weberotic.net/banners/ -# ||watchindianporn.net/js/pu.js (easylistchina+easylist.txt: 46979) -.watchindianporn.net/js/pu\.js -# ||watch2porn.net/pads2.js (easylistchina+easylist.txt: 46978) -.watch2porn.net/pads2\.js -# ||wankspider.com/js/wankspider.js (easylistchina+easylist.txt: 46977) -.wankspider.com/js/wankspider\.js -# ||wank.to/partner/ (easylistchina+easylist.txt: 46976) -.wank.to/partner/ -# ||vstreamcdn.com^*/ads/ (easylistchina+easylist.txt: 46975) -.vstreamcdn.com/.*/ads/ -# ||voyeurhit.com/related/voyeurhit.php?t_sid= (easylistchina+easylist.txt: 46974) -.voyeurhit.com/related/voyeurhit\.php\?t_sid= -# ||voyeurhit.com/contents/content_sources/ (easylistchina+easylist.txt: 46973) -.voyeurhit.com/contents/content_sources/ -# ||vivatube.com/upload/banners/ (easylistchina+easylist.txt: 46972) -.vivatube.com/upload/banners/ -# ||viralporn.com^*/popnew.js (easylistchina+easylist.txt: 46971) -.viralporn.com/.*/popnew\.js -# ||vidgrab.net/pads2.js (easylistchina+easylist.txt: 46970) -.vidgrab.net/pads2\.js -# ||vidgrab.net/images/adsbar (easylistchina+easylist.txt: 46969) -.vidgrab.net/images/adsbar -# ||vidgrab.net/bnr.js (easylistchina+easylist.txt: 46968) -.vidgrab.net/bnr\.js -# ||vidgrab.net/adsbar.png (easylistchina+easylist.txt: 46967) -.vidgrab.net/adsbar\.png -# ||videos.com^*/jsp.js (easylistchina+easylist.txt: 46966) -.videos.com/.*/jsp\.js -# ||videarn.com/vibrate.js (easylistchina+easylist.txt: 46965) -.videarn.com/vibrate\.js -# ||vid2c.com/pp.js (easylistchina+easylist.txt: 46964) -.vid2c.com/pp\.js -# ||vid2c.com/pap.js (easylistchina+easylist.txt: 46963) -.vid2c.com/pap\.js -# ||vid2c.com/js/pp.js (easylistchina+easylist.txt: 46962) -.vid2c.com/js/pp\.js -# ||vid2c.com/js/atxpp.js? (easylistchina+easylist.txt: 46961) -.vid2c.com/js/atxpp\.js\? -# ||vibraporn.com/vg/ (easylistchina+easylist.txt: 46960) -.vibraporn.com/vg/ -# ||upornia.com/contents/content_sources/ (easylistchina+easylist.txt: 46959) -.upornia.com/contents/content_sources/ -# ||updatetube.com/js/adpupdatetube (easylistchina+easylist.txt: 46958) -.updatetube.com/js/adpupdatetube -# ||unoxxx.com/pages/en_player_video_right.html (easylistchina+easylist.txt: 46957) -.unoxxx.com/pages/en_player_video_right\.html -# ||unblockedpiratebay.com/static/img/bar.gif (easylistchina+easylist.txt: 46956) -.unblockedpiratebay.com/static/img/bar\.gif -# ||ukrainamateurs.com/images/banners/ (easylistchina+easylist.txt: 46955) -.ukrainamateurs.com/images/banners/ -# ||uflash.tv^*/affiliates/ (easylistchina+easylist.txt: 46954) -.uflash.tv/.*/affiliates/ -# ||twofuckers.com/brazzers (easylistchina+easylist.txt: 46953) -.twofuckers.com/brazzers -# ||twinsporn.net/images/free-penis-pills.png (easylistchina+easylist.txt: 46952) -.twinsporn.net/images/free-penis-pills\.png -# ||twinsporn.net/images/delay.gif (easylistchina+easylist.txt: 46951) -.twinsporn.net/images/delay\.gif -# ||turboimagehost.com/p1.js (easylistchina+easylist.txt: 46950) -.turboimagehost.com/p1\.js -# ||tubedupe.com/side_two.html (easylistchina+easylist.txt: 46949) -.tubedupe.com/side_two\.html -# ||tubedupe.com/footer_four.html (easylistchina+easylist.txt: 46948) -.tubedupe.com/footer_four\.html -# ||tubecup.org/?t_sid= (easylistchina+easylist.txt: 46947) -.tubecup.org/\?t_sid= -# ||tubecup.com/js/1.js (easylistchina+easylist.txt: 46946) -.tubecup.com/js/1\.js -# ||tubecup.com/contents/content_sources/ (easylistchina+easylist.txt: 46945) -.tubecup.com/contents/content_sources/ -# ||tube8.com^$subdocument,~third-party (easylistchina+easylist.txt: 46944) -.tube8.com -# ||tube8.com/sugarcrush/ (easylistchina+easylist.txt: 46943) -.tube8.com/sugarcrush/ -# ||tube8.com/penthouse/ (easylistchina+easylist.txt: 46942) -.tube8.com/penthouse/ -# ||trovaporno.com/image/incontri$image (easylistchina+easylist.txt: 46941) -.trovaporno.com/image/incontri -# ||tnaflix.com^*_promo.jpg (easylistchina+easylist.txt: 46940) -.tnaflix.com/.*_promo\.jpg -# ||tnaflix.com/flixPlayerImages/ (easylistchina+easylist.txt: 46939) -.tnaflix.com/flixPlayerImages/ -# ||tnaflix.com/banner/ (easylistchina+easylist.txt: 46938) -.tnaflix.com/banner/ -# ||tjoob.com/kellyban.gif (easylistchina+easylist.txt: 46937) -.tjoob.com/kellyban\.gif -# ||tjoob.com/bgbb.jpg (easylistchina+easylist.txt: 46936) -.tjoob.com/bgbb\.jpg -# ||titsintops.com/rotate/ (easylistchina+easylist.txt: 46935) -.titsintops.com/rotate/ -# ||titsintops.com/intersitial/ (easylistchina+easylist.txt: 46934) -.titsintops.com/intersitial/ -# ||timtube.com/traffic.js (easylistchina+easylist.txt: 46933) -.timtube.com/traffic\.js -# ||thumblogger.com/thumblog/top_banner_silver.js (easylistchina+easylist.txt: 46932) -.thumblogger.com/thumblog/top_banner_silver\.js -# ||thisav.com/js/thisav_pop.js (easylistchina+easylist.txt: 46931) -.thisav.com/js/thisav_pop\.js -# ||thisav.com/js/pu.js (easylistchina+easylist.txt: 46930) -.thisav.com/js/pu\.js -# ||thinkexist.com/images/afm.js (easylistchina+easylist.txt: 46929) -.thinkexist.com/images/afm\.js -# ||thepornomatrix.com/images/1- (easylistchina+easylist.txt: 46928) -.thepornomatrix.com/images/1- -# ||theporncore.com/contents/content_sources/ (easylistchina+easylist.txt: 46927) -.theporncore.com/contents/content_sources/ -# ||thenipslip.com/mfcbanner.gif (easylistchina+easylist.txt: 46926) -.thenipslip.com/mfcbanner\.gif -# ||thenipslip.com/GGWDrunkenAd.jpg (easylistchina+easylist.txt: 46925) -.thenipslip.com/GGWDrunkenAd\.jpg -# ||thenewporn.com/js/adpthenewporn (easylistchina+easylist.txt: 46924) -.thenewporn.com/js/adpthenewporn -# ||thehun.net^*/banners/ (easylistchina+easylist.txt: 46923) -.thehun.net/.*/banners/ -# ||the-feeding-tube.com^*/Topbanner.php (easylistchina+easylist.txt: 46921) -.the-feeding-tube.com/.*/Topbanner\.php -# ||the-analist.info^*150x150 (easylistchina+easylist.txt: 46920) -.the-analist.info/.*150x150 -# ||the-analist.info^*150sq (easylistchina+easylist.txt: 46919) -.the-analist.info/.*150sq -# ||the-analist.info^*150-150 (easylistchina+easylist.txt: 46918) -.the-analist.info/.*150-150 -# ||temptingangels.org/media/banners/ (easylistchina+easylist.txt: 46917) -.temptingangels.org/media/banners/ -# ||temptingangels.org/banner/ (easylistchina+easylist.txt: 46916) -.temptingangels.org/banner/ -# ||teentube18.com/js/realamateurtube.js (easylistchina+easylist.txt: 46915) -.teentube18.com/js/realamateurtube\.js -# ||teensexcraze.com/awesome/leader.html (easylistchina+easylist.txt: 46914) -.teensexcraze.com/awesome/leader\.html -# ||teensanalfactor.com/best/ (easylistchina+easylist.txt: 46913) -.teensanalfactor.com/best/ -# ||taxidrivermovie.com/mrskin_runner/ (easylistchina+easylist.txt: 46912) -.taxidrivermovie.com/mrskin_runner/ -# ||tabletporn.com/images/pinkvisualpad- (easylistchina+easylist.txt: 46911) -.tabletporn.com/images/pinkvisualpad- -# ||sxx.com/js/lj.js (easylistchina+easylist.txt: 46909) -.sxx.com/js/lj\.js -# ||svscomics.com^*/dtrotator.js (easylistchina+easylist.txt: 46908) -.svscomics.com/.*/dtrotator\.js -# ||sunporno.com/js/flirt/serve.js (easylistchina+easylist.txt: 46907) -.sunporno.com/js/flirt/serve\.js -# ||submityourflicks.com/banner/ (easylistchina+easylist.txt: 46906) -.submityourflicks.com/banner/ -# ||stolenvideos.net/stolen.js (easylistchina+easylist.txt: 46905) -.stolenvideos.net/stolen\.js -# ||stockingstv.com/partners/ (easylistchina+easylist.txt: 46904) -.stockingstv.com/partners/ -# ||static.kinghost.com^ (easylistchina+easylist.txt: 46903) -.static.kinghost.com -# ||static.flabber.net^*background (easylistchina+easylist.txt: 46902) -.static.flabber.net/.*background -# ||starcelebs.com/logos/$image (easylistchina+easylist.txt: 46901) -.starcelebs.com/logos/ -# ||springbreaktubegirls.com/js/springpop.js (easylistchina+easylist.txt: 46900) -.springbreaktubegirls.com/js/springpop\.js -# ||spankbang.com/gateway/ (easylistchina+easylist.txt: 46899) -.spankbang.com/gateway/ -# ||songs.pk/ie/ietext.html (easylistchina+easylist.txt: 46898) -.songs.pk/ie/ietext\.html -# ||socaseiras.com.br/banners.php? (easylistchina+easylist.txt: 46897) -.socaseiras.com.br/banners\.php\? -# ||socaseiras.com.br/banner_ (easylistchina+easylist.txt: 46896) -.socaseiras.com.br/banner_ -# ||socaseiras.com.br/arquivos/banners/ (easylistchina+easylist.txt: 46895) -.socaseiras.com.br/arquivos/banners/ -# ||smutmodels.com/sponsors/ (easylistchina+easylist.txt: 46894) -.smutmodels.com/sponsors/ -# ||slinky.com.au/banners/ (easylistchina+easylist.txt: 46893) -.slinky.com.au/banners/ -# ||skimtube.com/kellyban.gif (easylistchina+easylist.txt: 46892) -.skimtube.com/kellyban\.gif -# ||site.img.4tube.com^ (easylistchina+easylist.txt: 46891) -.site.img.4tube.com -# ||sillusions.ws^*/vpn-banner.gif (easylistchina+easylist.txt: 46890) -.sillusions.ws/.*/vpn-banner\.gif -# ||sillusions.ws^*/pr0pop.js (easylistchina+easylist.txt: 46889) -.sillusions.ws/.*/pr0pop\.js -# ||signbucksdaily.com/data/promo/ (easylistchina+easylist.txt: 46888) -.signbucksdaily.com/data/promo/ -# ||signbucks.com/s/bns/ (easylistchina+easylist.txt: 46887) -.signbucks.com/s/bns/ -# ||shy-cams.com/tube.js (easylistchina+easylist.txt: 46886) -.shy-cams.com/tube\.js -# ||shooshtimeinc.com/under.php (easylistchina+easylist.txt: 46885) -.shooshtimeinc.com/under\.php -# ||shooshtime.com/images/chosenplugs/ (easylistchina+easylist.txt: 46884) -.shooshtime.com/images/chosenplugs/ -# ||shooshtime.com/ads/ (easylistchina+easylist.txt: 46883) -.shooshtime.com/ads/ -# ||sharew.org/modalfiles/ (easylistchina+easylist.txt: 46882) -.sharew.org/modalfiles/ -# ||shanbara.jp/okusamadx.gif (easylistchina+easylist.txt: 46881) -.shanbara.jp/okusamadx\.gif -# ||shanbara.jp/300_200plus.jpg (easylistchina+easylist.txt: 46880) -.shanbara.jp/300_200plus\.jpg -# ||sexytime.com/img/sexytime_anima.gif (easylistchina+easylist.txt: 46879) -.sexytime.com/img/sexytime_anima\.gif -# ||sexyshare.net//banners/ (easylistchina+easylist.txt: 46878) -# ||sexyfuckgames.com/images/promo/ (easylistchina+easylist.txt: 46877) -.sexyfuckgames.com/images/promo/ -# ||sexyclips.org/i/130x500.gif (easylistchina+easylist.txt: 46876) -.sexyclips.org/i/130x500\.gif -# ||sexyclips.org/banners/ (easylistchina+easylist.txt: 46875) -.sexyclips.org/banners/ -# ||sexyandshocking.com/mzpop.js (easylistchina+easylist.txt: 46874) -.sexyandshocking.com/mzpop\.js -# ||sexyandfunny.com/images/totem (easylistchina+easylist.txt: 46873) -.sexyandfunny.com/images/totem -# ||sexy-toons.org/interface/pub/ (easylistchina+easylist.txt: 46872) -.sexy-toons.org/interface/pub/ -# ||sexy-toons.org/interface/partenariat/ (easylistchina+easylist.txt: 46871) -.sexy-toons.org/interface/partenariat/ -# ||sexvines.co/images/cp (easylistchina+easylist.txt: 46870) -.sexvines.co/images/cp -# ||sexuhot.com/splayer.js (easylistchina+easylist.txt: 46869) -.sexuhot.com/splayer\.js -# ||sexuhot.com/images/xbanner (easylistchina+easylist.txt: 46868) -.sexuhot.com/images/xbanner -# ||sextubebox.com/ab2.shtml (easylistchina+easylist.txt: 46867) -.sextubebox.com/ab2\.shtml -# ||sextubebox.com/ab1.shtml (easylistchina+easylist.txt: 46866) -.sextubebox.com/ab1\.shtml -# ||sextube.com/lj.js (easylistchina+easylist.txt: 46865) -.sextube.com/lj\.js -# ||sexseeimage.com^*/banner.gif (easylistchina+easylist.txt: 46864) -.sexseeimage.com/.*/banner\.gif -# ||sexmummy.com/footer.htm (easylistchina+easylist.txt: 46863) -.sexmummy.com/footer\.htm -# ||sexmummy.com/float.htm (easylistchina+easylist.txt: 46862) -.sexmummy.com/float\.htm -# ||sexilation.com/wp-content/uploads/2013/01/Untitled-1.jpg (easylistchina+easylist.txt: 46861) -.sexilation.com/wp-content/uploads/2013/01/Untitled-1\.jpg -# ||sex3dtoons.com/im/ (easylistchina+easylist.txt: 46860) -.sex3dtoons.com/im/ -# ||sex3.com/if/ (easylistchina+easylist.txt: 46859) -.sex3.com/if/ -# ||sex.com/images/*/banner_ (easylistchina+easylist.txt: 46858) -.sex.com/images/.*/banner_ -# ||sex-techniques-and-positions.com/banners (easylistchina+easylist.txt: 46857) -.sex-techniques-and-positions.com/banners -# ||sex-techniques-and-positions.com/123ima/ (easylistchina+easylist.txt: 46856) -.sex-techniques-and-positions.com/123ima/ -# ||serveporn.com/images/plug-in.jpg (easylistchina+easylist.txt: 46855) -.serveporn.com/images/plug-in\.jpg -# ||serveporn.com/images/a-en.jpg (easylistchina+easylist.txt: 46854) -.serveporn.com/images/a-en\.jpg -# ||sensualgirls.org/media/banners/ (easylistchina+easylist.txt: 46853) -.sensualgirls.org/media/banners/ -# ||sensualgirls.org/banner/ (easylistchina+easylist.txt: 46852) -.sensualgirls.org/banner/ -# ||seemygf.com/webmasters/ (easylistchina+easylist.txt: 46851) -.seemygf.com/webmasters/ -# ||seaporn.org/scripts/life.js (easylistchina+easylist.txt: 46850) -.seaporn.org/scripts/life\.js -# ||scorevideos.com/banner/ (easylistchina+easylist.txt: 46849) -.scorevideos.com/banner/ -# ||scorehd.com/banner/ (easylistchina+easylist.txt: 46848) -.scorehd.com/banner/ -# ||s.xvideos.com^$subdocument (easylistchina+easylist.txt: 46847) -.s.xvideos.com -# ||rusdosug.com/Fotos/Banners/ (easylistchina+easylist.txt: 46846) -.rusdosug.com/Fotos/Banners/ -# ||rude.com/js/PopupWindow.js (easylistchina+easylist.txt: 46845) -.rude.com/js/PopupWindow\.js -# ||rikotachibana.org/wp-content/banner/ (easylistchina+easylist.txt: 46844) -.rikotachibana.org/wp-content/banner/ -# ||rextube.com/plug/iframe.asp? (easylistchina+easylist.txt: 46843) -.rextube.com/plug/iframe\.asp\? -# ||rev.fapdu.com^ (easylistchina+easylist.txt: 46842) -.rev.fapdu.com -# ||redtubefiles.com^*/skins/ (easylistchina+easylist.txt: 46841) -.redtubefiles.com/.*/skins/ -# ||redtubefiles.com^*/banner/ (easylistchina+easylist.txt: 46840) -.redtubefiles.com/.*/banner/ -# ||redtube.com^*/banner/ (easylistchina+easylist.txt: 46839) -.redtube.com/.*/banner/ -# ||redtube.com^$subdocument,~third-party (easylistchina+easylist.txt: 46838) -.redtube.com -# ||redtube.com/wierd/ (easylistchina+easylist.txt: 46837) -.redtube.com/wierd/ -# ||redtube.com/sexychicks/ (easylistchina+easylist.txt: 46836) -.redtube.com/sexychicks/ -# ||redtube.com/nymphos/ (easylistchina+easylist.txt: 46835) -.redtube.com/nymphos/ -# ||redtube.com/bestporn/ (easylistchina+easylist.txt: 46834) -.redtube.com/bestporn/ -# ||redtube.com/barelylegal/ (easylistchina+easylist.txt: 46833) -.redtube.com/barelylegal/ -# ||redtube.cc/images/bongacams.png (easylistchina+easylist.txt: 46832) -.redtube.cc/images/bongacams\.png -# ||realhomesex.net/pop/ (easylistchina+easylist.txt: 46831) -.realhomesex.net/pop/ -# ||realhomesex.net/floater.js (easylistchina+easylist.txt: 46830) -.realhomesex.net/floater\.js -# ||realhomesex.net/ae/$subdocument (easylistchina+easylist.txt: 46829) -.realhomesex.net/ae/ -# ||realhomesex.net/*.html$subdocument (easylistchina+easylist.txt: 46828) -.realhomesex.net/.*\.html -# ||realgfporn.com/js/realgfporn.js (easylistchina+easylist.txt: 46827) -.realgfporn.com/js/realgfporn\.js -# ||realgfporn.com/js/popall.js (easylistchina+easylist.txt: 46826) -.realgfporn.com/js/popall\.js -# ||rampant.tv/images/sexypics/ (easylistchina+easylist.txt: 46825) -.rampant.tv/images/sexypics/ -# ||raincoatreviews.com/images/banners/ (easylistchina+easylist.txt: 46824) -.raincoatreviews.com/images/banners/ -# ||r.radikal.ru^ (easylistchina+easylist.txt: 46822) -.r.radikal.ru -# ||pwpwpoker.com/images/banners/ (easylistchina+easylist.txt: 46821) -.pwpwpoker.com/images/banners/ -# ||pwpwpoker.com/images/*/strip_poker_ (easylistchina+easylist.txt: 46820) -.pwpwpoker.com/images/.*/strip_poker_ -# ||puteros.com/publisecciones/ (easylistchina+easylist.txt: 46819) -.puteros.com/publisecciones/ -# ||putascaseiras.com/botao/ (easylistchina+easylist.txt: 46818) -.putascaseiras.com/botao/ -# ||purpleporno.com/pop*.js (easylistchina+easylist.txt: 46817) -.purpleporno.com/pop.*\.js -# ||purepornvids.com/randomadseb. (easylistchina+easylist.txt: 46816) -.purepornvids.com/randomadseb\. -# ||purelynsfw.com^*/banners/ (easylistchina+easylist.txt: 46815) -.purelynsfw.com/.*/banners/ -# ||pureandsexy.org/banner/ (easylistchina+easylist.txt: 46814) -.pureandsexy.org/banner/ -# ||pr-static.tnaflix.com^ (easylistchina+easylist.txt: 46813) -.pr-static.tnaflix.com -# ||pr-static.empflix.com^ (easylistchina+easylist.txt: 46812) -.pr-static.empflix.com -# ||pornxs.com/js/files/jasminNew (easylistchina+easylist.txt: 46811) -.pornxs.com/js/files/jasminNew -# ||pornwikileaks.com/adultdvd.com.jpg (easylistchina+easylist.txt: 46810) -.pornwikileaks.com/adultdvd\.com\.jpg -# ||pornvideoxo.com^$subdocument,~third-party (easylistchina+easylist.txt: 46809) -.pornvideoxo.com -# ||pornup.me/js/pp.js (easylistchina+easylist.txt: 46808) -.pornup.me/js/pp\.js -# ||porntube.com/ads| (easylistchina+easylist.txt: 46807) -.porntube.com/ads$ -# ||porntalk.com/rec/ (easylistchina+easylist.txt: 46806) -.porntalk.com/rec/ -# ||porntalk.com/img/banners/ (easylistchina+easylist.txt: 46805) -.porntalk.com/img/banners/ -# ||pornstreet.com/siteunder.js (easylistchina+easylist.txt: 46804) -.pornstreet.com/siteunder\.js -# ||pornstarterritory.com^*/alsbanner (easylistchina+easylist.txt: 46803) -.pornstarterritory.com/.*/alsbanner -# ||pornstarterritory.com//images/bannernew.jpg (easylistchina+easylist.txt: 46802) -# ||pornstarlabs.com/spons/ (easylistchina+easylist.txt: 46801) -.pornstarlabs.com/spons/ -# ||pornslash.com/images/pr.jpg (easylistchina+easylist.txt: 46800) -.pornslash.com/images/pr\.jpg -# ||pornslash.com/images/downicon.png (easylistchina+easylist.txt: 46799) -.pornslash.com/images/downicon\.png -# ||pornslash.com/images/cbt.gif (easylistchina+easylist.txt: 46798) -.pornslash.com/images/cbt\.gif -# ||pornslash.com/images/cbside.gif (easylistchina+easylist.txt: 46797) -.pornslash.com/images/cbside\.gif -# ||pornslash.com/images/a.gif (easylistchina+easylist.txt: 46796) -.pornslash.com/images/a\.gif -# ||pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia*.js (easylistchina+easylist.txt: 46795) -.pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharingnew/$subdocument,~third-party (easylistchina+easylist.txt: 46794) -.pornsharing.com/App_Themes/pornsharingnew/ -# ||pornsharing.com/App_Themes/pornsharianew/js/adppornsharia*.js (easylistchina+easylist.txt: 46793) -.pornsharing.com/App_Themes/pornsharianew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharianew/$subdocument,~third-party (easylistchina+easylist.txt: 46792) -.pornsharing.com/App_Themes/pornsharianew/ -# ||pornsharia.com^*/js/pcin.js (easylistchina+easylist.txt: 46791) -.pornsharia.com/.*/js/pcin\.js -# ||pornsharia.com^*/exo- (easylistchina+easylist.txt: 46790) -.pornsharia.com/.*/exo- -# ||pornsharia.com^*/adppornsharia.js (easylistchina+easylist.txt: 46789) -.pornsharia.com/.*/adppornsharia\.js -# ||pornsharia.com/Images/Sponsors/ (easylistchina+easylist.txt: 46788) -.pornsharia.com/Images/Sponsors/ -# ||pornshare.biz/2.js (easylistchina+easylist.txt: 46787) -.pornshare.biz/2\.js -# ||pornshare.biz/1.js (easylistchina+easylist.txt: 46786) -.pornshare.biz/1\.js -# ||pornreleasez.com/prpop.js (easylistchina+easylist.txt: 46785) -.pornreleasez.com/prpop\.js -# ||pornper.com^*/pp.js (easylistchina+easylist.txt: 46784) -.pornper.com/.*/pp\.js -# ||pornper.com/mlr/ (easylistchina+easylist.txt: 46783) -.pornper.com/mlr/ -# ||pornoxo.com/tradethumbs/ (easylistchina+easylist.txt: 46782) -.pornoxo.com/tradethumbs/ -# ||pornoxo.com/pxo/$subdocument (easylistchina+easylist.txt: 46781) -.pornoxo.com/pxo/ -# ||pornosexxxtits.com/rec/ (easylistchina+easylist.txt: 46780) -.pornosexxxtits.com/rec/ -# ||pornorips.com^*/rotate*.php (easylistchina+easylist.txt: 46779) -.pornorips.com/.*/rotate.*\.php -# ||pornorips.com^*/rda.js (easylistchina+easylist.txt: 46778) -.pornorips.com/.*/rda\.js -# ||pornorips.com/hwpop.js (easylistchina+easylist.txt: 46777) -.pornorips.com/hwpop\.js -# ||pornomovies.com/pop/ (easylistchina+easylist.txt: 46776) -.pornomovies.com/pop/ -# ||pornomovies.com/js/1/login_bonus (easylistchina+easylist.txt: 46775) -.pornomovies.com/js/1/login_bonus -# ||pornoinside.com/efpop.js (easylistchina+easylist.txt: 46774) -.pornoinside.com/efpop\.js -# ||pornoid.com/pornoid_html/ (easylistchina+easylist.txt: 46773) -.pornoid.com/pornoid_html/ -# ||pornoid.com/js/adppornoid (easylistchina+easylist.txt: 46772) -.pornoid.com/js/adppornoid -# ||pornoid.com/iframes/bottom (easylistchina+easylist.txt: 46771) -.pornoid.com/iframes/bottom -# ||pornoid.com/contents/content_sources/ (easylistchina+easylist.txt: 46770) -.pornoid.com/contents/content_sources/ -# ||pornnavigate.com/feeds/delivery.php? (easylistchina+easylist.txt: 46769) -.pornnavigate.com/feeds/delivery\.php\? -# ||pornmade.com/images/cb (easylistchina+easylist.txt: 46768) -.pornmade.com/images/cb -# ||pornmade.com/images/az.gif (easylistchina+easylist.txt: 46767) -.pornmade.com/images/az\.gif -# ||pornmade.com/images/404vz.gif (easylistchina+easylist.txt: 46766) -.pornmade.com/images/404vz\.gif -# ||pornizer.com/_Themes/javascript/cts.js? (easylistchina+easylist.txt: 46765) -.pornizer.com/_Themes/javascript/cts\.js\? -# ||pornhub.phncdn.com/misc/xml/preroll.xml (easylistchina+easylist.txt: 46764) -.pornhub.phncdn.com/misc/xml/preroll\.xml -# ||pornhub.phncdn.com/images/campaign-backgrounds/ (easylistchina+easylist.txt: 46763) -.pornhub.phncdn.com/images/campaign-backgrounds/ -# ||pornhub.com/pics/latest/$xmlhttprequest (easylistchina+easylist.txt: 46762) -.pornhub.com/pics/latest/ -# ||pornhub.com/jpg/ (easylistchina+easylist.txt: 46761) -.pornhub.com/jpg/ -# ||pornhub.com/front/alternative/ (easylistchina+easylist.txt: 46760) -.pornhub.com/front/alternative/ -# ||pornhub.com/channels/pay/ (easylistchina+easylist.txt: 46759) -.pornhub.com/channels/pay/ -# ||pornhub.com/catagories/costume/ (easylistchina+easylist.txt: 46758) -.pornhub.com/catagories/costume/ -# ||pornfanplace.com/rec/ (easylistchina+easylist.txt: 46757) -.pornfanplace.com/rec/ -# ||pornfanplace.com/js/pops. (easylistchina+easylist.txt: 46756) -.pornfanplace.com/js/pops\. -# ||pornerbros.com/rec/$subdocument (easylistchina+easylist.txt: 46755) -.pornerbros.com/rec/ -# ||pornerbros.com/p_bnrs/ (easylistchina+easylist.txt: 46754) -.pornerbros.com/p_bnrs/ -# ||porncor.com/sitelist.php (easylistchina+easylist.txt: 46753) -.porncor.com/sitelist\.php -# ||pornbus.org/includes/js/layer.js (easylistchina+easylist.txt: 46752) -.pornbus.org/includes/js/layer\.js -# ||pornbus.org/includes/js/exa.js (easylistchina+easylist.txt: 46751) -.pornbus.org/includes/js/exa\.js -# ||pornbus.org/includes/js/ex.js (easylistchina+easylist.txt: 46750) -.pornbus.org/includes/js/ex\.js -# ||pornbus.org/includes/js/cat.js (easylistchina+easylist.txt: 46749) -.pornbus.org/includes/js/cat\.js -# ||pornbus.org/includes/js/bgcont.js (easylistchina+easylist.txt: 46748) -.pornbus.org/includes/js/bgcont\.js -# ||pornbb.org/images/rotation/$image (easylistchina+easylist.txt: 46747) -.pornbb.org/images/rotation/ -# ||pornbb.org/adsnov. (easylistchina+easylist.txt: 46746) -.pornbb.org/adsnov\. -# ||pornbay.org/popup.js (easylistchina+easylist.txt: 46745) -.pornbay.org/popup\.js -# ||pornbanana.com/pornbanana/deals/ (easylistchina+easylist.txt: 46744) -.pornbanana.com/pornbanana/deals/ -# ||pornarchive.net/images/cb (easylistchina+easylist.txt: 46743) -.pornarchive.net/images/cb -# ||pornalized.com/pornalized_html/closetoplay_ (easylistchina+easylist.txt: 46742) -.pornalized.com/pornalized_html/closetoplay_ -# ||pornalized.com/js/adppornalized5.js (easylistchina+easylist.txt: 46741) -.pornalized.com/js/adppornalized5\.js -# ||pornalized.com/contents/content_sources/ (easylistchina+easylist.txt: 46740) -.pornalized.com/contents/content_sources/ -# ||porn8x.net/js/popup.js (easylistchina+easylist.txt: 46739) -.porn8x.net/js/popup\.js -# ||porn8x.net/js/outtrade.js (easylistchina+easylist.txt: 46738) -.porn8x.net/js/outtrade\.js -# ||porn4down.com^*/ryuvuong.gif (easylistchina+easylist.txt: 46737) -.porn4down.com/.*/ryuvuong\.gif -# ||porn.com/js/pu.js (easylistchina+easylist.txt: 46736) -.porn.com/js/pu\.js -# ||porn.com/assets/partner_ (easylistchina+easylist.txt: 46735) -.porn.com/assets/partner_ -# ||porn-w.org/images/zevera.png (easylistchina+easylist.txt: 46734) -.porn-w.org/images/zevera\.png -# ||porn-w.org/images/cosy/ (easylistchina+easylist.txt: 46733) -.porn-w.org/images/cosy/ -# ||porn-w.org/images/chs.gif (easylistchina+easylist.txt: 46732) -.porn-w.org/images/chs\.gif -# ||pontoperdido.com/js/webmessenger.js (easylistchina+easylist.txt: 46731) -.pontoperdido.com/js/webmessenger\.js -# ||poguide.com/cdn/images/ad*.gif (easylistchina+easylist.txt: 46730) -.poguide.com/cdn/images/ad.*\.gif -# ||pnet.co.za/jobsearch_iframe_ (easylistchina+easylist.txt: 46729) -.pnet.co.za/jobsearch_iframe_ -# ||plumper6.com/images/ban_pp.jpg (easylistchina+easylist.txt: 46728) -.plumper6.com/images/ban_pp\.jpg -# ||playgirl.com/pg/media/prolong_ad.png (easylistchina+easylist.txt: 46727) -.playgirl.com/pg/media/prolong_ad\.png -# ||planetsuzy.org/kakiframe/ (easylistchina+easylist.txt: 46726) -.planetsuzy.org/kakiframe/ -# ||placepictures.com/Frame.aspx? (easylistchina+easylist.txt: 46725) -.placepictures.com/Frame\.aspx\? -# ||pixroute.com/spl.js (easylistchina+easylist.txt: 46724) -.pixroute.com/spl\.js -# ||pixhost.org/js/jquery_show2.js (easylistchina+easylist.txt: 46723) -.pixhost.org/js/jquery_show2\.js -# ||pixhost.org/image/rotate/ (easylistchina+easylist.txt: 46722) -.pixhost.org/image/rotate/ -# ||pixhost.org/image/cu/ (easylistchina+easylist.txt: 46721) -.pixhost.org/image/cu/ -# ||pinkrod.com/pinkrod_html/ (easylistchina+easylist.txt: 46720) -.pinkrod.com/pinkrod_html/ -# ||pinkrod.com/js/adppinkrod (easylistchina+easylist.txt: 46719) -.pinkrod.com/js/adppinkrod -# ||pinkrod.com/iframes/ (easylistchina+easylist.txt: 46718) -.pinkrod.com/iframes/ -# ||pinkems.com/images/buttons/ (easylistchina+easylist.txt: 46717) -.pinkems.com/images/buttons/ -# ||pink-o-rama.com/Teendreams (easylistchina+easylist.txt: 46716) -.pink-o-rama.com/Teendreams -# ||pink-o-rama.com/Royalcash/ (easylistchina+easylist.txt: 46715) -.pink-o-rama.com/Royalcash/ -# ||pink-o-rama.com/Privatecash (easylistchina+easylist.txt: 46714) -.pink-o-rama.com/Privatecash -# ||pink-o-rama.com/Pimproll/ (easylistchina+easylist.txt: 46713) -.pink-o-rama.com/Pimproll/ -# ||pink-o-rama.com/Nscash (easylistchina+easylist.txt: 46712) -.pink-o-rama.com/Nscash -# ||pink-o-rama.com/Longbucks/ (easylistchina+easylist.txt: 46711) -.pink-o-rama.com/Longbucks/ -# ||pink-o-rama.com/Karups (easylistchina+easylist.txt: 46710) -.pink-o-rama.com/Karups -# ||pink-o-rama.com/Gammae (easylistchina+easylist.txt: 46709) -.pink-o-rama.com/Gammae -# ||pink-o-rama.com/Fuckyou (easylistchina+easylist.txt: 46708) -.pink-o-rama.com/Fuckyou -# ||pink-o-rama.com/Fetishhits (easylistchina+easylist.txt: 46707) -.pink-o-rama.com/Fetishhits -# ||pink-o-rama.com/Brothersincash (easylistchina+easylist.txt: 46706) -.pink-o-rama.com/Brothersincash -# ||pink-o-rama.com/Blazingbucks (easylistchina+easylist.txt: 46705) -.pink-o-rama.com/Blazingbucks -# ||pimpandhost.com/static/i/*-pah.jpg (easylistchina+easylist.txt: 46704) -.pimpandhost.com/static/i/.*-pah\.jpg -# ||pimpandhost.com/static/html/iframe.html (easylistchina+easylist.txt: 46703) -.pimpandhost.com/static/html/iframe\.html -# ||pimpandhost.com/images/pah-download.gif (easylistchina+easylist.txt: 46702) -.pimpandhost.com/images/pah-download\.gif -# ||picxme.com/rec/ (easylistchina+easylist.txt: 46701) -.picxme.com/rec/ -# ||picxme.com/js/pops. (easylistchina+easylist.txt: 46700) -.picxme.com/js/pops\. -# ||picturevip.com/imagehost/top_banners.html (easylistchina+easylist.txt: 46699) -.picturevip.com/imagehost/top_banners\.html -# ||picturescream.com/top_banners.html (easylistchina+easylist.txt: 46698) -.picturescream.com/top_banners\.html -# ||picturescream.com/porn_movies.gif (easylistchina+easylist.txt: 46697) -.picturescream.com/porn_movies\.gif -# ||picturedip.com/windowfiles/dhtmlwindow.css (easylistchina+easylist.txt: 46696) -.picturedip.com/windowfiles/dhtmlwindow\.css -# ||picturedip.com/modalfiles/modal.js (easylistchina+easylist.txt: 46695) -.picturedip.com/modalfiles/modal\.js -# ||picsexhub.com/rec/ (easylistchina+easylist.txt: 46694) -.picsexhub.com/rec/ -# ||picsexhub.com/js/pops2. (easylistchina+easylist.txt: 46693) -.picsexhub.com/js/pops2\. -# ||picsexhub.com/js/pops. (easylistchina+easylist.txt: 46692) -.picsexhub.com/js/pops\. -# ||picp2.com/img/putv (easylistchina+easylist.txt: 46691) -.picp2.com/img/putv -# ||picleet.com/inter_picleet.js (easylistchina+easylist.txt: 46690) -.picleet.com/inter_picleet\.js -# ||pichunter.com/deals/ (easylistchina+easylist.txt: 46689) -.pichunter.com/deals/ -# ||pichunter.com/creatives/ (easylistchina+easylist.txt: 46688) -.pichunter.com/creatives/ -# ||phun.org/phun/gfx/banner/ (easylistchina+easylist.txt: 46687) -.phun.org/phun/gfx/banner/ -# ||phncdn.com/mobile/js/interstitial-min.js? (easylistchina+easylist.txt: 46686) -.phncdn.com/mobile/js/interstitial-min\.js\? -# ||phncdn.com/images/skin/ (easylistchina+easylist.txt: 46685) -.phncdn.com/images/skin/ -# ||phncdn.com/images/premium_ (easylistchina+easylist.txt: 46684) -.phncdn.com/images/premium_ -# ||phncdn.com/images/premium/ (easylistchina+easylist.txt: 46683) -.phncdn.com/images/premium/ -# ||phncdn.com/images/banners/ (easylistchina+easylist.txt: 46682) -.phncdn.com/images/banners/ -# ||phncdn.com/images/*_skin_ (easylistchina+easylist.txt: 46681) -.phncdn.com/images/.*_skin_ -# ||phncdn.com/images/*_skin. (easylistchina+easylist.txt: 46680) -.phncdn.com/images/.*_skin\. -# ||phncdn.com/iframe (easylistchina+easylist.txt: 46679) -.phncdn.com/iframe -# ||perfectgirls.net/b/ (easylistchina+easylist.txt: 46675) -.perfectgirls.net/b/ -# ||pastime.biz^*/personalad*.jpg (easylistchina+easylist.txt: 46674) -.pastime.biz/.*/personalad.*\.jpg -# ||pastime.biz/images/interracial-porn.gif (easylistchina+easylist.txt: 46673) -.pastime.biz/images/interracial-porn\.gif -# ||pastime.biz/images/iloveint.gif (easylistchina+easylist.txt: 46672) -.pastime.biz/images/iloveint\.gif -# ||partners.xhamster.com^ (easylistchina+easylist.txt: 46671) -.partners.xhamster.com -# ||oporn.com/js/wspop.js (easylistchina+easylist.txt: 46670) -.oporn.com/js/wspop\.js -# ||openjavascript.com/jtools/jads. (easylistchina+easylist.txt: 46669) -.openjavascript.com/jtools/jads\. -# ||onlinestars.net/br/ (easylistchina+easylist.txt: 46668) -.onlinestars.net/br/ -# ||onlinestars.net/ban/ (easylistchina+easylist.txt: 46667) -.onlinestars.net/ban/ -# ||onhercam.tv^*/banners/ (easylistchina+easylist.txt: 46666) -.onhercam.tv/.*/banners/ -# ||olderhill.com^*.html| (easylistchina+easylist.txt: 46665) -.olderhill.com/.*\.html$ -# ||olderhill.com/ubr.js (easylistchina+easylist.txt: 46664) -.olderhill.com/ubr\.js -# ||oasisactive.com^*/oasis-widget.html (easylistchina+easylist.txt: 46663) -.oasisactive.com/.*/oasis-widget\.html -# ||nuvid.com/videos_banner.html (easylistchina+easylist.txt: 46662) -.nuvid.com/videos_banner\.html -# ||nudography.com/photos/banners/ (easylistchina+easylist.txt: 46661) -.nudography.com/photos/banners/ -# ||nudevista.com^*/nv-com.min.js (easylistchina+easylist.txt: 46660) -.nudevista.com/.*/nv-com\.min\.js -# ||nudevista.com/_/teasernet (easylistchina+easylist.txt: 46659) -.nudevista.com/_/teasernet -# ||nudevista.com/_/pp. (easylistchina+easylist.txt: 46658) -.nudevista.com/_/pp\. -# ||nudevista.com/_/exo_ (easylistchina+easylist.txt: 46657) -.nudevista.com/_/exo_ -# ||nudebabes.ws/galleries/banners/ (easylistchina+easylist.txt: 46656) -.nudebabes.ws/galleries/banners/ -# ||nude.hu/banners/ (easylistchina+easylist.txt: 46655) -.nude.hu/banners/ -# ||ns4w.org/images/vod_ (easylistchina+easylist.txt: 46654) -.ns4w.org/images/vod_ -# ||ns4w.org/images/promo/ (easylistchina+easylist.txt: 46653) -.ns4w.org/images/promo/ -# ||ns4w.org/gsm.js (easylistchina+easylist.txt: 46652) -.ns4w.org/gsm\.js -# ||novoporn.com/imagelinks/ (easylistchina+easylist.txt: 46651) -.novoporn.com/imagelinks/ -# ||nonktube.com/popembed.js (easylistchina+easylist.txt: 46650) -.nonktube.com/popembed\.js -# ||nonktube.com/nuevox/midroll.php? (easylistchina+easylist.txt: 46649) -.nonktube.com/nuevox/midroll\.php\? -# ||nonktube.com/brazzers/ (easylistchina+easylist.txt: 46648) -.nonktube.com/brazzers/ -# ||niceyoungteens.com/mct.js (easylistchina+easylist.txt: 46647) -.niceyoungteens.com/mct\.js -# ||niceyoungteens.com/ero-advertising (easylistchina+easylist.txt: 46646) -.niceyoungteens.com/ero-advertising -# ||newcelebnipslips.com/nipslipop.js (easylistchina+easylist.txt: 46645) -.newcelebnipslips.com/nipslipop\.js -# ||netronline.com/Include/burst.js (easylistchina+easylist.txt: 46644) -.netronline.com/Include/burst\.js -# ||netasdesalim.com/js/netas (easylistchina+easylist.txt: 46643) -.netasdesalim.com/js/netas -# ||naughtyblog.org/pr1pop.js (easylistchina+easylist.txt: 46642) -.naughtyblog.org/pr1pop\.js -# ||naughty.com/js/popJava.js (easylistchina+easylist.txt: 46641) -.naughty.com/js/popJava\.js -# ||namethatpornstar.com/topphotos/ (easylistchina+easylist.txt: 46640) -.namethatpornstar.com/topphotos/ -# ||naked-sluts.us/prpop.js (easylistchina+easylist.txt: 46639) -.naked-sluts.us/prpop\.js -# ||myslavegirl.org/follow/go.js (easylistchina+easylist.txt: 46638) -.myslavegirl.org/follow/go\.js -# ||myhentai.tv/popsstuff. (easylistchina+easylist.txt: 46637) -.myhentai.tv/popsstuff\. -# ||mygirlfriendvids.net/js/popall1.js (easylistchina+easylist.txt: 46636) -.mygirlfriendvids.net/js/popall1\.js -# ||mydailytube.com/nothing/ (easylistchina+easylist.txt: 46635) -.mydailytube.com/nothing/ -# ||my-pornbase.com/banner/ (easylistchina+easylist.txt: 46634) -.my-pornbase.com/banner/ -# ||mrstiff.com/view/movie/finished/ (easylistchina+easylist.txt: 46633) -.mrstiff.com/view/movie/finished/ -# ||mrstiff.com/view/movie/bar/ (easylistchina+easylist.txt: 46632) -.mrstiff.com/view/movie/bar/ -# ||mrstiff.com/view/context/ (easylistchina+easylist.txt: 46631) -.mrstiff.com/view/context/ -# ||mrstiff.com/uploads/paysite/ (easylistchina+easylist.txt: 46630) -.mrstiff.com/uploads/paysite/ -# ||mrskin.com/data/mrskincash/$third-party (easylistchina+easylist.txt: 46629) -.mrskin.com/data/mrskincash/ -# ||mp3musicengine.com/images/freewatchtv1. (easylistchina+easylist.txt: 46628) -.mp3musicengine.com/images/freewatchtv1\. -# ||mp3musicengine.com/bearshare_logo. (easylistchina+easylist.txt: 46627) -.mp3musicengine.com/bearshare_logo\. -# ||motherman.com/*.html (easylistchina+easylist.txt: 46626) -.motherman.com/.*\.html -# ||motherless.com/images/banners/ (easylistchina+easylist.txt: 46625) -.motherless.com/images/banners/ -# ||morebabes.to/morebabes.js (easylistchina+easylist.txt: 46624) -.morebabes.to/morebabes\.js -# ||morazzia.com^*/banners/ (easylistchina+easylist.txt: 46623) -.morazzia.com/.*/banners/ -# ||monstertube.com/images/vjoin_ (easylistchina+easylist.txt: 46622) -.monstertube.com/images/vjoin_ -# ||monstertube.com/images/vjoin. (easylistchina+easylist.txt: 46621) -.monstertube.com/images/vjoin\. -# ||monstertube.com/images/bottom-features.jpg (easylistchina+easylist.txt: 46620) -.monstertube.com/images/bottom-features\.jpg -# ||monstertube.com/images/access_ (easylistchina+easylist.txt: 46619) -.monstertube.com/images/access_ -# ||monstercockz.com/eds/ (easylistchina+easylist.txt: 46618) -.monstercockz.com/eds/ -# ||monstercockz.com/cont/ (easylistchina+easylist.txt: 46617) -.monstercockz.com/cont/ -# ||mobilepornmovies.com/images/banners/ (easylistchina+easylist.txt: 46616) -.mobilepornmovies.com/images/banners/ -# ||miragepics.com/images/11361497289209202613.jpg (easylistchina+easylist.txt: 46615) -.miragepics.com/images/11361497289209202613\.jpg -# ||milkmanbook.com/dat/promo/ (easylistchina+easylist.txt: 46614) -.milkmanbook.com/dat/promo/ -# ||merb.ca/banner/ (easylistchina+easylist.txt: 46613) -.merb.ca/banner/ -# ||meendo.com/promos/ (easylistchina+easylist.txt: 46612) -.meendo.com/promos/ -# ||media1.realgfporn.com^$subdocument (easylistchina+easylist.txt: 46611) -.media1.realgfporn.com -# ||meatspin.com/images/fl.gif (easylistchina+easylist.txt: 46610) -.meatspin.com/images/fl\.gif -# ||meatspin.com/facebookchatlist.php (easylistchina+easylist.txt: 46609) -.meatspin.com/facebookchatlist\.php -# ||maxjizztube.com/downloadfreemovies.php (easylistchina+easylist.txt: 46608) -.maxjizztube.com/downloadfreemovies\.php -# ||matureworld.ws/images/banners/ (easylistchina+easylist.txt: 46607) -.matureworld.ws/images/banners/ -# ||mallandrinhas.net/flutuante (easylistchina+easylist.txt: 46606) -.mallandrinhas.net/flutuante -# ||madthumbs.com/madthumbs/sponsor/ (easylistchina+easylist.txt: 46605) -.madthumbs.com/madthumbs/sponsor/ -# ||madmovs.com/rec/ (easylistchina+easylist.txt: 46604) -.madmovs.com/rec/ -# ||m2.xhamster.com^ (easylistchina+easylist.txt: 46603) -.m2.xhamster.com -# ||lw1.cdmediaworld.com^ (easylistchina+easylist.txt: 46602) -.lw1.cdmediaworld.com -# ||lukeisback.com^*/250.gif (easylistchina+easylist.txt: 46601) -.lukeisback.com/.*/250\.gif -# ||lukeisback.com/images/boxes/ (easylistchina+easylist.txt: 46600) -.lukeisback.com/images/boxes/ -# ||lucidsponge.pl/pop_ (easylistchina+easylist.txt: 46599) -.lucidsponge.pl/pop_ -# ||lubetube.com/js/cspop.js (easylistchina+easylist.txt: 46598) -.lubetube.com/js/cspop\.js -# ||livedoor.jp^*/bnr/bnr- (easylistchina+easylist.txt: 46597) -.livedoor.jp/.*/bnr/bnr- -# ||liveandchat.tv/bana-/ (easylistchina+easylist.txt: 46596) -.liveandchat.tv/bana-/ -# ||live-porn.tv/adds/ (easylistchina+easylist.txt: 46595) -.live-porn.tv/adds/ -# ||literotica.com/images/lit_banners/ (easylistchina+easylist.txt: 46594) -.literotica.com/images/lit_banners/ -# ||literotica.com/images/banners/ (easylistchina+easylist.txt: 46593) -.literotica.com/images/banners/ -# ||linksave.in/fopen.html (easylistchina+easylist.txt: 46592) -.linksave.in/fopen\.html -# ||lesbian.hu/banners/ (easylistchina+easylist.txt: 46591) -.lesbian.hu/banners/ -# ||laxtime.com/rotation/ (easylistchina+easylist.txt: 46590) -.laxtime.com/rotation/ -# ||kyte.tv/flash/MarbachAdvertsDartInstream. (easylistchina+easylist.txt: 46589) -.kyte.tv/flash/MarbachAdvertsDartInstream\. -# ||kuntfutube.com/kellyban.gif (easylistchina+easylist.txt: 46588) -.kuntfutube.com/kellyban\.gif -# ||kuiken.co/inc/ex.js (easylistchina+easylist.txt: 46587) -.kuiken.co/inc/ex\.js -# ||krasview.ru/resource/a.php (easylistchina+easylist.txt: 46586) -.krasview.ru/resource/a\.php -# ||krasview.ru/content/$object (easylistchina+easylist.txt: 46585) -.krasview.ru/content/ -# ||konachan.com/images/bam/ (easylistchina+easylist.txt: 46584) -.konachan.com/images/bam/ -# ||kindgirls.com/banners2/ (easylistchina+easylist.txt: 46583) -.kindgirls.com/banners2/ -# ||keezmovies.com/iframe.html? (easylistchina+easylist.txt: 46582) -.keezmovies.com/iframe\.html\? -# ||kaotic.com^*/popnew.js (easylistchina+easylist.txt: 46581) -.kaotic.com/.*/popnew\.js -# ||justporno.tv/ad/ (easylistchina+easylist.txt: 46580) -.justporno.tv/ad/ -# ||julesjordanvideo.com/flash/$object (easylistchina+easylist.txt: 46579) -.julesjordanvideo.com/flash/ -# ||javsin.com/vip.html (easylistchina+easylist.txt: 46578) -.javsin.com/vip\.html -# ||javporn.in/clicunder.js (easylistchina+easylist.txt: 46577) -.javporn.in/clicunder\.js -# ||jav-porn.net/js/popup.js (easylistchina+easylist.txt: 46576) -.jav-porn.net/js/popup\.js -# ||jav-porn.net/js/popout.js (easylistchina+easylist.txt: 46575) -.jav-porn.net/js/popout\.js -# ||jailbaitgallery.com/banners300/ (easylistchina+easylist.txt: 46574) -.jailbaitgallery.com/banners300/ -# ||iseekgirls.com^*/banners/ (easylistchina+easylist.txt: 46573) -.iseekgirls.com/.*/banners/ -# ||iseekgirls.com/rotating_ (easylistchina+easylist.txt: 46572) -.iseekgirls.com/rotating_ -# ||iseekgirls.com/js/fabulous.js (easylistchina+easylist.txt: 46571) -.iseekgirls.com/js/fabulous\.js -# ||iseekgirls.com/g/pandoracash/ (easylistchina+easylist.txt: 46570) -.iseekgirls.com/g/pandoracash/ -# ||intporn.org/scripts/asma.js (easylistchina+easylist.txt: 46569) -.intporn.org/scripts/asma\.js -# ||intporn.com^*/asma.js (easylistchina+easylist.txt: 46568) -.intporn.com/.*/asma\.js -# ||intporn.com^*/21s.js (easylistchina+easylist.txt: 46567) -.intporn.com/.*/21s\.js -# ||indexxx.com^*/banners/ (easylistchina+easylist.txt: 46566) -.indexxx.com/.*/banners/ -# ||imperia-of-hentai.net/banner/ (easylistchina+easylist.txt: 46565) -.imperia-of-hentai.net/banner/ -# ||imgwet.com/aa/ (easylistchina+easylist.txt: 46564) -.imgwet.com/aa/ -# ||imghost.us.to/xxx/content/system/js/iframe.html (easylistchina+easylist.txt: 46563) -.imghost.us.to/xxx/content/system/js/iframe\.html -# ||imgflare.com^*/splash.php (easylistchina+easylist.txt: 46562) -.imgflare.com/.*/splash\.php -# ||imgflare.com/exo.html (easylistchina+easylist.txt: 46561) -.imgflare.com/exo\.html -# ||imgbabes.com^*/splash.php (easylistchina+easylist.txt: 46560) -.imgbabes.com/.*/splash\.php -# ||imgbabes.com/ja.html (easylistchina+easylist.txt: 46559) -.imgbabes.com/ja\.html -# ||imgbabes.com/ero-foo.html (easylistchina+easylist.txt: 46558) -.imgbabes.com/ero-foo\.html -# ||imgbabes.com/element.js (easylistchina+easylist.txt: 46557) -.imgbabes.com/element\.js -# ||imagetwist.com/lj.js (easylistchina+easylist.txt: 46556) -.imagetwist.com/lj\.js -# ||imagetwist.com/imagetwist*.js (easylistchina+easylist.txt: 46555) -.imagetwist.com/imagetwist.*\.js -# ||imagesnake.com/includes/js/pops.js (easylistchina+easylist.txt: 46554) -.imagesnake.com/includes/js/pops\.js -# ||imagesnake.com/includes/js/layer.js (easylistchina+easylist.txt: 46553) -.imagesnake.com/includes/js/layer\.js -# ||imagesnake.com/includes/js/cat.js (easylistchina+easylist.txt: 46552) -.imagesnake.com/includes/js/cat\.js -# ||imageshack.us^*/bannng.jpg (easylistchina+easylist.txt: 46551) -.imageshack.us/.*/bannng\.jpg -# ||imagepost.com/stuff/ (easylistchina+easylist.txt: 46550) -.imagepost.com/stuff/ -# ||imagepost.com/includes/dating/ (easylistchina+easylist.txt: 46549) -.imagepost.com/includes/dating/ -# ||imageporter.com/smate.html (easylistchina+easylist.txt: 46548) -.imageporter.com/smate\.html -# ||imageporter.com/ro-7bgsd.html (easylistchina+easylist.txt: 46547) -.imageporter.com/ro-7bgsd\.html -# ||imagehyper.com/prom/ (easylistchina+easylist.txt: 46546) -.imagehyper.com/prom/ -# ||imagefruit.com^*/pops.js (easylistchina+easylist.txt: 46545) -.imagefruit.com/.*/pops\.js -# ||imagedunk.com^*_imagedunk.js (easylistchina+easylist.txt: 46544) -.imagedunk.com/.*_imagedunk\.js -# ||imagecarry.com/top (easylistchina+easylist.txt: 46543) -.imagecarry.com/top -# ||imagecarry.com/down (easylistchina+easylist.txt: 46542) -.imagecarry.com/down -# ||imagearn.com/img/picBanner.swf (easylistchina+easylist.txt: 46541) -.imagearn.com/img/picBanner\.swf -# ||hustler.com/backout-script/ (easylistchina+easylist.txt: 46540) -.hustler.com/backout-script/ -# ||hungangels.com/vboard/friends/ (easylistchina+easylist.txt: 46539) -.hungangels.com/vboard/friends/ -# ||hottubeclips.com/stxt/banners/ (easylistchina+easylist.txt: 46538) -.hottubeclips.com/stxt/banners/ -# ||hottestgirlsofmyspace.net/smallpics/fb-150x150.gif (easylistchina+easylist.txt: 46537) -.hottestgirlsofmyspace.net/smallpics/fb-150x150\.gif -# ||hottestgirlsofmyspace.net/smallpics/300x200b.gif (easylistchina+easylist.txt: 46536) -.hottestgirlsofmyspace.net/smallpics/300x200b\.gif -# ||hotshame.com/js/adphotshame (easylistchina+easylist.txt: 46535) -.hotshame.com/js/adphotshame -# ||hotshame.com/iframes/ (easylistchina+easylist.txt: 46534) -.hotshame.com/iframes/ -# ||hotshame.com/hotshame_html/ (easylistchina+easylist.txt: 46533) -.hotshame.com/hotshame_html/ -# ||hotsashagrey.com^*/throated.jpg (easylistchina+easylist.txt: 46532) -.hotsashagrey.com/.*/throated\.jpg -# ||hotsashagrey.com^*/squ-fantasygirlsasha-001.gif (easylistchina+easylist.txt: 46531) -.hotsashagrey.com/.*/squ-fantasygirlsasha-001\.gif -# ||hotsashagrey.com^*/PeterNorth-800x350.jpg (easylistchina+easylist.txt: 46530) -.hotsashagrey.com/.*/PeterNorth-800x350\.jpg -# ||hotsashagrey.com^*/New_Sensations-1091.gif (easylistchina+easylist.txt: 46529) -.hotsashagrey.com/.*/New_Sensations-1091\.gif -# ||hotsashagrey.com^*/Anabolic.jpg (easylistchina+easylist.txt: 46528) -.hotsashagrey.com/.*/Anabolic\.jpg -# ||hotkellymadison.com^*/pf_640x100.jpg (easylistchina+easylist.txt: 46527) -.hotkellymadison.com/.*/pf_640x100\.jpg -# ||hotkellymadison.com^*/km_300x300.gif (easylistchina+easylist.txt: 46526) -.hotkellymadison.com/.*/km_300x300\.gif -# ||hotkellymadison.com^*/kelly4.jpg (easylistchina+easylist.txt: 46525) -.hotkellymadison.com/.*/kelly4\.jpg -# ||hotkellymadison.com^*/kelly1.jpg (easylistchina+easylist.txt: 46524) -.hotkellymadison.com/.*/kelly1\.jpg -# ||hotdylanryder.com^*/wicked.gif (easylistchina+easylist.txt: 46523) -.hotdylanryder.com/.*/wicked\.gif -# ||hotdylanryder.com^*/pf_640x100.jpg (easylistchina+easylist.txt: 46522) -.hotdylanryder.com/.*/pf_640x100\.jpg -# ||hotdylanryder.com^*/iframes_174.jpg (easylistchina+easylist.txt: 46521) -.hotdylanryder.com/.*/iframes_174\.jpg -# ||hotdylanryder.com^*/dylan_350x250_01.jpg (easylistchina+easylist.txt: 46520) -.hotdylanryder.com/.*/dylan_350x250_01\.jpg -# ||hotdylanryder.com^*/Big-Tits-Like-Big-Dicks.jpg (easylistchina+easylist.txt: 46519) -.hotdylanryder.com/.*/Big-Tits-Like-Big-Dicks\.jpg -# ||hotdevonmichaels.com^*/wicked.gif (easylistchina+easylist.txt: 46518) -.hotdevonmichaels.com/.*/wicked\.gif -# ||hotdevonmichaels.com^*/streamate2.jpg (easylistchina+easylist.txt: 46517) -.hotdevonmichaels.com/.*/streamate2\.jpg -# ||hotdevonmichaels.com^*/pf_640x1001.jpg (easylistchina+easylist.txt: 46516) -.hotdevonmichaels.com/.*/pf_640x1001\.jpg -# ||hornywhores.net/img/zevera_rec.jpg (easylistchina+easylist.txt: 46515) -.hornywhores.net/img/zevera_rec\.jpg -# ||hornywhores.net/img/double.jpg (easylistchina+easylist.txt: 46514) -.hornywhores.net/img/double\.jpg -# ||hornywhores.net/hw$script (easylistchina+easylist.txt: 46513) -.hornywhores.net/hw -# ||hornygamer.com/images/promo/ (easylistchina+easylist.txt: 46512) -.hornygamer.com/images/promo/ -# ||homeprivatevids.com/banners.shtml (easylistchina+easylist.txt: 46511) -.homeprivatevids.com/banners\.shtml -# ||homeprivatevids.com/banner2.shtml (easylistchina+easylist.txt: 46510) -.homeprivatevids.com/banner2\.shtml -# ||homemademoviez.com^$subdocument (easylistchina+easylist.txt: 46509) -.homemademoviez.com -# ||homegrownfreaks.net/homegfreaks.js (easylistchina+easylist.txt: 46508) -.homegrownfreaks.net/homegfreaks\.js -# ||hollywoodoops.com/img/*banner (easylistchina+easylist.txt: 46507) -.hollywoodoops.com/img/.*banner -# ||hollyscoop.com/sites/*/skins/ (easylistchina+easylist.txt: 46506) -.hollyscoop.com/sites/.*/skins/ -# ||hidefporn.ws/nitro.png (easylistchina+easylist.txt: 46505) -.hidefporn.ws/nitro\.png -# ||hidefporn.ws/img.png (easylistchina+easylist.txt: 46504) -.hidefporn.ws/img\.png -# ||hidefporn.ws/client (easylistchina+easylist.txt: 46503) -.hidefporn.ws/client -# ||hidefporn.ws/055.jpg (easylistchina+easylist.txt: 46502) -.hidefporn.ws/055\.jpg -# ||hidefporn.ws/05.jpg (easylistchina+easylist.txt: 46501) -.hidefporn.ws/05\.jpg -# ||hidefporn.ws/04.jpg (easylistchina+easylist.txt: 46500) -.hidefporn.ws/04\.jpg -# ||hgimg.com/js/beacon. (easylistchina+easylist.txt: 46499) -.hgimg.com/js/beacon\. -# ||heraldnetdailydeal.com/widgets/DailyDealWidget300x250 (easylistchina+easylist.txt: 46498) -.heraldnetdailydeal.com/widgets/DailyDealWidget300x250 -# ||heraldnet.com/section/iFrame_AutosInternetSpecials? (easylistchina+easylist.txt: 46497) -.heraldnet.com/section/iFrame_AutosInternetSpecials\? -# ||hentaistream.com/wp-includes/images/mofos/webcams_ (easylistchina+easylist.txt: 46496) -.hentaistream.com/wp-includes/images/mofos/webcams_ -# ||hentaistream.com/wp-includes/images/bg- (easylistchina+easylist.txt: 46495) -.hentaistream.com/wp-includes/images/bg- -# ||hentaistream.com/out/ (easylistchina+easylist.txt: 46494) -.hentaistream.com/out/ -# ||hentairules.net/pop_$script (easylistchina+easylist.txt: 46493) -.hentairules.net/pop_ -# ||hentai-foundry.com/themes/Hentai/images/hu/hu.jpg (easylistchina+easylist.txt: 46492) -.hentai-foundry.com/themes/Hentai/images/hu/hu\.jpg -# ||hentai-foundry.com/themes/*Banner (easylistchina+easylist.txt: 46491) -.hentai-foundry.com/themes/.*Banner -# ||hentai-foundry.com/themes/*/add$image (easylistchina+easylist.txt: 46490) -.hentai-foundry.com/themes/.*/add -# ||hellporno.com/iframes/ (easylistchina+easylist.txt: 46489) -.hellporno.com/iframes/ -# ||hebus.com/p/hebusx/ (easylistchina+easylist.txt: 46488) -.hebus.com/p/hebusx/ -# ||heavy-r.com/js/imbox.js (easylistchina+easylist.txt: 46487) -.heavy-r.com/js/imbox\.js -# ||heavy-r.com/a/ (easylistchina+easylist.txt: 46486) -.heavy-r.com/a/ -# ||hdzog.com/hdzog.php?t_sid= (easylistchina+easylist.txt: 46485) -.hdzog.com/hdzog\.php\?t_sid= -# ||hdzog.com/contents/cst/ (easylistchina+easylist.txt: 46484) -.hdzog.com/contents/cst/ -# ||hdzog.com/contents/content_sources/ (easylistchina+easylist.txt: 46483) -.hdzog.com/contents/content_sources/ -# ||hdporn.net/images/hd-porn-banner.gif (easylistchina+easylist.txt: 46482) -.hdporn.net/images/hd-porn-banner\.gif -# ||hdporn.in/rec/$subdocument (easylistchina+easylist.txt: 46481) -.hdporn.in/rec/ -# ||hdporn.in/js/pops2. (easylistchina+easylist.txt: 46480) -.hdporn.in/js/pops2\. -# ||hdporn.in/js/focus.*.js (easylistchina+easylist.txt: 46479) -.hdporn.in/js/focus\..*\.js -# ||hdporn.in/images/rec/ (easylistchina+easylist.txt: 46478) -.hdporn.in/images/rec/ -# ||hcomicbook.com^*_banner1.gif (easylistchina+easylist.txt: 46477) -.hcomicbook.com/.*_banner1\.gif -# ||hcomicbook.com/js/hcb-$script (easylistchina+easylist.txt: 46476) -.hcomicbook.com/js/hcb- -# ||hcomicbook.com/banner/ (easylistchina+easylist.txt: 46475) -.hcomicbook.com/banner/ -# ||hclips.com/js/m.js (easylistchina+easylist.txt: 46474) -.hclips.com/js/m\.js -# ||hawaiipornblog.com/post_images/ (easylistchina+easylist.txt: 46473) -.hawaiipornblog.com/post_images/ -# ||hardsextube.com/zone.php (easylistchina+easylist.txt: 46472) -.hardsextube.com/zone\.php -# ||hardsextube.com/testxml.php (easylistchina+easylist.txt: 46471) -.hardsextube.com/testxml\.php -# ||hardsextube.com/preroll/getiton/ (easylistchina+easylist.txt: 46470) -.hardsextube.com/preroll/getiton/ -# ||hardsextube.com/pornstars/$xmlhttprequest (easylistchina+easylist.txt: 46469) -.hardsextube.com/pornstars/ -# ||hardcoresexgif.com/wp-content/msn.js (easylistchina+easylist.txt: 46468) -.hardcoresexgif.com/wp-content/msn\.js -# ||hanksgalleries.com/vg_ad_ (easylistchina+easylist.txt: 46467) -.hanksgalleries.com/vg_ad_ -# ||hanksgalleries.com/stxt_ (easylistchina+easylist.txt: 46466) -.hanksgalleries.com/stxt_ -# ||hanksgalleries.com/galleryimgs/ (easylistchina+easylist.txt: 46465) -.hanksgalleries.com/galleryimgs/ -# ||hanksgalleries.com/gallery- (easylistchina+easylist.txt: 46464) -.hanksgalleries.com/gallery- -# ||hanksgalleries.com/aff- (easylistchina+easylist.txt: 46463) -.hanksgalleries.com/aff- -# ||h2porn.com/contents/content_sources/ (easylistchina+easylist.txt: 46462) -.h2porn.com/contents/content_sources/ -# ||gspcdn.com^*/banners/ (easylistchina+easylist.txt: 46461) -.gspcdn.com/.*/banners/ -# ||grannysexforum.com/filter.php (easylistchina+easylist.txt: 46460) -.grannysexforum.com/filter\.php -# ||gotgayporn.com/Watermarks/ (easylistchina+easylist.txt: 46459) -.gotgayporn.com/Watermarks/ -# ||goldporntube.com/iframes/ (easylistchina+easylist.txt: 46458) -.goldporntube.com/iframes/ -# ||gloryholegirlz.com/images/banners/ (easylistchina+easylist.txt: 46457) -.gloryholegirlz.com/images/banners/ -# ||glamour.cz/banners/ (easylistchina+easylist.txt: 46456) -.glamour.cz/banners/ -# ||girlsofdesire.org/media/banners/ (easylistchina+easylist.txt: 46455) -.girlsofdesire.org/media/banners/ -# ||girlsofdesire.org/banner/ (easylistchina+easylist.txt: 46454) -.girlsofdesire.org/banner/ -# ||girlsnaked.net/gallery/banners/ (easylistchina+easylist.txt: 46453) -.girlsnaked.net/gallery/banners/ -# ||girlsintube.com/images/get-free-server.jpg (easylistchina+easylist.txt: 46452) -.girlsintube.com/images/get-free-server\.jpg -# ||girlsfromprague.eu^*468x (easylistchina+easylist.txt: 46451) -.girlsfromprague.eu/.*468x -# ||girlsfromprague.eu/banners/ (easylistchina+easylist.txt: 46450) -.girlsfromprague.eu/banners/ -# ||girlsfrombudapest.eu/banners/ (easylistchina+easylist.txt: 46449) -.girlsfrombudapest.eu/banners/ -# ||girlfriendvideos.com/pcode.js (easylistchina+easylist.txt: 46448) -.girlfriendvideos.com/pcode\.js -# ||gina-lynn.net/pr4.html (easylistchina+easylist.txt: 46447) -.gina-lynn.net/pr4\.html -# ||ghettotube.com/images/banners/ (easylistchina+easylist.txt: 46446) -.ghettotube.com/images/banners/ -# ||gggtube.com/images/banners/ (easylistchina+easylist.txt: 46445) -.gggtube.com/images/banners/ -# ||gaytube.com/chacha/ (easylistchina+easylist.txt: 46444) -.gaytube.com/chacha/ -# ||gayporntimes.com^*/CockyBoys-July-2012.jpg (easylistchina+easylist.txt: 46443) -.gayporntimes.com/.*/CockyBoys-July-2012\.jpg -# ||gayporntimes.com^*/Bel-Ami-Mick-Lovell-July-2012.jpeg (easylistchina+easylist.txt: 46442) -.gayporntimes.com/.*/Bel-Ami-Mick-Lovell-July-2012\.jpeg -# ||gayporntimes.com/img/GP_Heroes.jpg (easylistchina+easylist.txt: 46441) -.gayporntimes.com/img/GP_Heroes\.jpg -# ||gapeandfist.com/uploads/thumbs/ (easylistchina+easylist.txt: 46440) -.gapeandfist.com/uploads/thumbs/ -# ||gamesofdesire.com/images/banners/ (easylistchina+easylist.txt: 46439) -.gamesofdesire.com/images/banners/ -# ||gals4free.net/images/banners/ (easylistchina+easylist.txt: 46438) -.gals4free.net/images/banners/ -# ||galleries-pornstar.com/thumb_top/ (easylistchina+easylist.txt: 46437) -.galleries-pornstar.com/thumb_top/ -# ||funny-games.biz/banners/ (easylistchina+easylist.txt: 46436) -.funny-games.biz/banners/ -# ||fuckuh.com/pr_ad.swf (easylistchina+easylist.txt: 46435) -.fuckuh.com/pr_ad\.swf -# ||freepornvs.com/im.js (easylistchina+easylist.txt: 46433) -.freepornvs.com/im\.js -# ||freeporninhd.com/images/cbzide. (easylistchina+easylist.txt: 46432) -.freeporninhd.com/images/cbzide\. -# ||freeporninhd.com/images/cbside. (easylistchina+easylist.txt: 46431) -.freeporninhd.com/images/cbside\. -# ||freeporn.to/wpbanner/ (easylistchina+easylist.txt: 46430) -.freeporn.to/wpbanner/ -# ||freeones.com/images/freeones/sidewidget/$image (easylistchina+easylist.txt: 46429) -.freeones.com/images/freeones/sidewidget/ -# ||freeimgup.com/xxx/content/system/js/iframe.html (easylistchina+easylist.txt: 46428) -.freeimgup.com/xxx/content/system/js/iframe\.html -# ||freebunker.com^*/raw.js (easylistchina+easylist.txt: 46427) -.freebunker.com/.*/raw\.js -# ||freebunker.com^*/pops.js (easylistchina+easylist.txt: 46426) -.freebunker.com/.*/pops\.js -# ||freebunker.com^*/oc.js (easylistchina+easylist.txt: 46425) -.freebunker.com/.*/oc\.js -# ||freebunker.com^*/layer.js (easylistchina+easylist.txt: 46424) -.freebunker.com/.*/layer\.js -# ||freebunker.com^*/exa.js (easylistchina+easylist.txt: 46423) -.freebunker.com/.*/exa\.js -# ||freebunker.com^*/ex.js (easylistchina+easylist.txt: 46422) -.freebunker.com/.*/ex\.js -# ||freebunker.com/includes/js/cat.js (easylistchina+easylist.txt: 46421) -.freebunker.com/includes/js/cat\.js -# ||free-celebrity-tube.com/js/freeceleb.js (easylistchina+easylist.txt: 46420) -.free-celebrity-tube.com/js/freeceleb\.js -# ||floppy-tits.com/iframes/ (easylistchina+easylist.txt: 46419) -.floppy-tits.com/iframes/ -# ||fleshbot.com/wp-content/themes/fbdesktop_aff/images/af (easylistchina+easylist.txt: 46418) -.fleshbot.com/wp-content/themes/fbdesktop_aff/images/af -# ||fingerslam.com/*.html (easylistchina+easylist.txt: 46417) -.fingerslam.com/.*\.html -# ||finehub.com/p3.js (easylistchina+easylist.txt: 46416) -.finehub.com/p3\.js -# ||filthyrx.com/rx.js (easylistchina+easylist.txt: 46415) -.filthyrx.com/rx\.js -# ||filthyrx.com/inline.php? (easylistchina+easylist.txt: 46414) -.filthyrx.com/inline\.php\? -# ||filthyrx.com/images/porno/ (easylistchina+easylist.txt: 46413) -.filthyrx.com/images/porno/ -# ||fileshare.ro^*/dhtmlwindow.js (easylistchina+easylist.txt: 46412) -.fileshare.ro/.*/dhtmlwindow\.js -# ||fetishok.com/rec/$subdocument (easylistchina+easylist.txt: 46411) -.fetishok.com/rec/ -# ||fetishok.com/js/focus.$script (easylistchina+easylist.txt: 46410) -.fetishok.com/js/focus\. -# ||femdom-fetish-tube.com/popfemdom.js (easylistchina+easylist.txt: 46409) -.femdom-fetish-tube.com/popfemdom\.js -# ||fastpic.ru/js_h2.jpg (easylistchina+easylist.txt: 46408) -.fastpic.ru/js_h2\.jpg -# ||fastpic.ru/js_f2.jpg (easylistchina+easylist.txt: 46407) -.fastpic.ru/js_f2\.jpg -# ||fapdick.com/uploads/fap_ (easylistchina+easylist.txt: 46406) -.fapdick.com/uploads/fap_ -# ||fapdick.com/uploads/1fap_ (easylistchina+easylist.txt: 46405) -.fapdick.com/uploads/1fap_ -# ||fantasti.cc/_special/ (easylistchina+easylist.txt: 46404) -.fantasti.cc/_special/ -# ||extremetube.com/player_related? (easylistchina+easylist.txt: 46403) -.extremetube.com/player_related\? -# ||extreme-board.com/bannrs/ (easylistchina+easylist.txt: 46402) -.extreme-board.com/bannrs/ -# ||exit.macandbumble.com^ (easylistchina+easylist.txt: 46401) -.exit.macandbumble.com -# ||exhentai.net/img/aaf1.gif (easylistchina+easylist.txt: 46400) -.exhentai.net/img/aaf1\.gif -# ||eskimotube.com/kellyban.gif (easylistchina+easylist.txt: 46399) -.eskimotube.com/kellyban\.gif -# ||eroprofile.com/js/pu*.js (easylistchina+easylist.txt: 46398) -.eroprofile.com/js/pu.*\.js -# ||eporner.com^$subdocument,~third-party (easylistchina+easylist.txt: 46397) -.eporner.com -# ||eporner.com/pjsall-*.js (easylistchina+easylist.txt: 46396) -.eporner.com/pjsall-.*\.js -# ||eporner.com/dot/$script (easylistchina+easylist.txt: 46395) -.eporner.com/dot/ -# ||eporner.com/cppb/ (easylistchina+easylist.txt: 46394) -.eporner.com/cppb/ -# ||epicwank.com/social/jquery.stp.min.js (easylistchina+easylist.txt: 46393) -.epicwank.com/social/jquery\.stp\.min\.js -# ||entensity.net/crap/ (easylistchina+easylist.txt: 46392) -.entensity.net/crap/ -# ||empireamateurs.com/images/*banner (easylistchina+easylist.txt: 46391) -.empireamateurs.com/images/.*banner -# ||empflix.com/embedding_player/600x474_ (easylistchina+easylist.txt: 46390) -.empflix.com/embedding_player/600x474_ -# ||egoporn.com/videotop.gif (easylistchina+easylist.txt: 46389) -.egoporn.com/videotop\.gif -# ||egoporn.com/themagic.js (easylistchina+easylist.txt: 46388) -.egoporn.com/themagic\.js -# ||efukt.com^*.php$subdocument (easylistchina+easylist.txt: 46387) -.efukt.com/.*\.php -# ||eccie.net/eros/ (easylistchina+easylist.txt: 46386) -.eccie.net/eros/ -# ||eccie.net/buploads/ (easylistchina+easylist.txt: 46385) -.eccie.net/buploads/ -# ||easypic.com/js/easypicads.js (easylistchina+easylist.txt: 46384) -.easypic.com/js/easypicads\.js -# ||dusttube.com/pop*.js (easylistchina+easylist.txt: 46383) -.dusttube.com/pop.*\.js -# ||drtuber.com^*/aff_banner.swf (easylistchina+easylist.txt: 46382) -.drtuber.com/.*/aff_banner\.swf -# ||drtuber.com/templates/frontend/white/js/embed.js? (easylistchina+easylist.txt: 46381) -.drtuber.com/templates/frontend/white/js/embed\.js\? -# ||drtuber.com/promo/banners/ (easylistchina+easylist.txt: 46380) -.drtuber.com/promo/banners/ -# ||dronporn.com/tizer.html (easylistchina+easylist.txt: 46379) -.dronporn.com/tizer\.html -# ||dronporn.com/main-video-place.html (easylistchina+easylist.txt: 46378) -.dronporn.com/main-video-place\.html -# ||dot2.eporner.com^ (easylistchina+easylist.txt: 46377) -.dot2.eporner.com -# ||dot.eporner.com^ (easylistchina+easylist.txt: 46376) -.dot.eporner.com -# ||dominationtube.com/exit.js (easylistchina+easylist.txt: 46375) -.dominationtube.com/exit\.js -# ||dixyporn.com/include/ (easylistchina+easylist.txt: 46374) -.dixyporn.com/include/ -# ||dirtypriest.com/sexpics/ (easylistchina+easylist.txt: 46373) -.dirtypriest.com/sexpics/ -# ||dickbig.net/scr/ (easylistchina+easylist.txt: 46372) -.dickbig.net/scr/ -# ||diamond-tgp.com/fp.js (easylistchina+easylist.txt: 46371) -.diamond-tgp.com/fp\.js -# ||devatube.com/img/partners/ (easylistchina+easylist.txt: 46370) -.devatube.com/img/partners/ -# ||destroymilf.com/popup%20floater.js (easylistchina+easylist.txt: 46369) -.destroymilf.com/popup%20floater\.js -# ||depic.me/banners/ (easylistchina+easylist.txt: 46368) -.depic.me/banners/ -# ||deliciousbabes.org/media/banners/ (easylistchina+easylist.txt: 46367) -.deliciousbabes.org/media/banners/ -# ||deliciousbabes.org/banner/ (easylistchina+easylist.txt: 46366) -.deliciousbabes.org/banner/ -# ||definefetish.com/df/js/dpcm.js (easylistchina+easylist.txt: 46365) -.definefetish.com/df/js/dpcm\.js -# ||definebabe.com/sponsor/ (easylistchina+easylist.txt: 46364) -.definebabe.com/sponsor/ -# ||definebabe.com/db/js/pcme.js (easylistchina+easylist.txt: 46363) -.definebabe.com/db/js/pcme\.js -# ||definebabe.com/db/images/leftnav/webcams2.png (easylistchina+easylist.txt: 46362) -.definebabe.com/db/images/leftnav/webcams2\.png -# ||data18.com^*/banners/ (easylistchina+easylist.txt: 46361) -.data18.com/.*/banners/ -# ||damimage.com^*/DocaWedrOJPPx.png (easylistchina+easylist.txt: 46360) -.damimage.com/.*/DocaWedrOJPPx\.png -# ||creepshots.com^*/250x250_ (easylistchina+easylist.txt: 46359) -.creepshots.com/.*/250x250_ -# ||creatives.pichunter.com^ (easylistchina+easylist.txt: 46358) -.creatives.pichunter.com -# ||creatives.cliphunter.com^ (easylistchina+easylist.txt: 46357) -.creatives.cliphunter.com -# ||creampietubeporn.com/porn.html (easylistchina+easylist.txt: 46356) -.creampietubeporn.com/porn\.html -# ||creampietubeporn.com/ctp.html (easylistchina+easylist.txt: 46355) -.creampietubeporn.com/ctp\.html -# ||crazyshit.com/p0pzIn.js (easylistchina+easylist.txt: 46354) -.crazyshit.com/p0pzIn\.js -# ||crackwhoreconfessions.com/images/banners/ (easylistchina+easylist.txt: 46353) -.crackwhoreconfessions.com/images/banners/ -# ||coolmovs.com/rec/$subdocument (easylistchina+easylist.txt: 46352) -.coolmovs.com/rec/ -# ||coolmovs.com/js/focus.*.js (easylistchina+easylist.txt: 46351) -.coolmovs.com/js/focus\..*\.js -# ||comdotgame.com/vgirl/ (easylistchina+easylist.txt: 46350) -.comdotgame.com/vgirl/ -# ||clips-and-pics.org/clipsandpics.js (easylistchina+easylist.txt: 46349) -.clips-and-pics.org/clipsandpics\.js -# ||chubby-ocean.com/banner/ (easylistchina+easylist.txt: 46348) -.chubby-ocean.com/banner/ -# ||chanweb.info/en/adult/hc/local_include/ (easylistchina+easylist.txt: 46347) -.chanweb.info/en/adult/hc/local_include/ -# ||cfake.com/images/a/ (easylistchina+easylist.txt: 46346) -.cfake.com/images/a/ -# ||celebritypink.com/bannedcelebs- (easylistchina+easylist.txt: 46345) -.celebritypink.com/bannedcelebs- -# ||celeb.gate.cc/misc/event_*.js (easylistchina+easylist.txt: 46344) -.celeb.gate.cc/misc/event_.*\.js -# ||celeb.gate.cc/banner/ (easylistchina+easylist.txt: 46343) -.celeb.gate.cc/banner/ -# ||canadianhottie.ca/images/banners/ (easylistchina+easylist.txt: 46342) -.canadianhottie.ca/images/banners/ -# ||cameltoe.com^*/banners/ (easylistchina+easylist.txt: 46341) -.cameltoe.com/.*/banners/ -# ||bustnow.com^*/sponsors/ (easylistchina+easylist.txt: 46340) -.bustnow.com/.*/sponsors/ -# ||bustnow.com^*/999.js.php (easylistchina+easylist.txt: 46339) -.bustnow.com/.*/999\.js\.php -# ||bustnow.com/xv/x/002.php (easylistchina+easylist.txt: 46338) -.bustnow.com/xv/x/002\.php -# ||bustnow.com/xv/ad/ (easylistchina+easylist.txt: 46337) -.bustnow.com/xv/ad/ -# ||bunnylust.com/sponsors/ (easylistchina+easylist.txt: 46336) -.bunnylust.com/sponsors/ -# ||brcache.madthumbs.com^ (easylistchina+easylist.txt: 46335) -.brcache.madthumbs.com -# ||bravotube.net/if/$subdocument (easylistchina+easylist.txt: 46334) -.bravotube.net/if/ -# ||bravotube.net/dp.html (easylistchina+easylist.txt: 46333) -.bravotube.net/dp\.html -# ||bravotube.net/dd$subdocument (easylistchina+easylist.txt: 46332) -.bravotube.net/dd -# ||bralesscelebs.com/320x240ps.gif (easylistchina+easylist.txt: 46331) -.bralesscelebs.com/320x240ps\.gif -# ||bralesscelebs.com/160x600ps.gif (easylistchina+easylist.txt: 46330) -.bralesscelebs.com/160x600ps\.gif -# ||bralesscelebs.com/160x600hcp.gif (easylistchina+easylist.txt: 46329) -.bralesscelebs.com/160x600hcp\.gif -# ||bralesscelebs.com/*banner (easylistchina+easylist.txt: 46328) -.bralesscelebs.com/.*banner -# ||boobieblog.com/TilaTequilaBackdoorBanner2.jpg (easylistchina+easylist.txt: 46327) -.boobieblog.com/TilaTequilaBackdoorBanner2\.jpg -# ||boobieblog.com/submityourbitchbanner3.jpg (easylistchina+easylist.txt: 46326) -.boobieblog.com/submityourbitchbanner3\.jpg -# ||boneprone.com/premium.html (easylistchina+easylist.txt: 46325) -.boneprone.com/premium\.html -# ||bonbonsex.com/js/workhome.js (easylistchina+easylist.txt: 46324) -.bonbonsex.com/js/workhome\.js -# ||bonbonsex.com/js/dl/bottom.js (easylistchina+easylist.txt: 46323) -.bonbonsex.com/js/dl/bottom\.js -# ||bonbonme.com/js/rightbanner.js (easylistchina+easylist.txt: 46322) -.bonbonme.com/js/rightbanner\.js -# ||bonbonme.com/js/dticash/ (easylistchina+easylist.txt: 46321) -.bonbonme.com/js/dticash/ -# ||bonbonme.com/js/cams.js (easylistchina+easylist.txt: 46320) -.bonbonme.com/js/cams\.js -# ||bob.crazyshit.com^ (easylistchina+easylist.txt: 46319) -.bob.crazyshit.com -# ||blackredtube.com/fadebox2.js (easylistchina+easylist.txt: 46318) -.blackredtube.com/fadebox2\.js -# ||blackonasianblog.com/uploads/banners/ (easylistchina+easylist.txt: 46317) -.blackonasianblog.com/uploads/banners/ -# ||bigxvideos.com/rec/ (easylistchina+easylist.txt: 46316) -.bigxvideos.com/rec/ -# ||bigxvideos.com/js/popu. (easylistchina+easylist.txt: 46315) -.bigxvideos.com/js/popu\. -# ||bigxvideos.com/js/pops2. (easylistchina+easylist.txt: 46314) -.bigxvideos.com/js/pops2\. -# ||bigxvideos.com/js/focus.*.js (easylistchina+easylist.txt: 46313) -.bigxvideos.com/js/focus\..*\.js -# ||bigboobs.hu/banners/ (easylistchina+easylist.txt: 46312) -.bigboobs.hu/banners/ -# ||bellyboner.com/facebookchatlist.php (easylistchina+easylist.txt: 46311) -.bellyboner.com/facebookchatlist\.php -# ||befuck.com/js/adpbefuck (easylistchina+easylist.txt: 46310) -.befuck.com/js/adpbefuck -# ||befuck.com/befuck_html/ (easylistchina+easylist.txt: 46309) -.befuck.com/befuck_html/ -# ||banners.cams.com^ (easylistchina+easylist.txt: 46308) -.banners.cams.com -# ||banner1.pornhost.com^ (easylistchina+easylist.txt: 46307) -.banner1.pornhost.com -# ||bangyoulater.com/pages/aff.php (easylistchina+easylist.txt: 46306) -.bangyoulater.com/pages/aff\.php -# ||bangyoulater.com/images/banners_ (easylistchina+easylist.txt: 46305) -.bangyoulater.com/images/banners_ -# ||bagslap.com/*.html (easylistchina+easylist.txt: 46304) -.bagslap.com/.*\.html -# ||badjojo.com/js/scripts- (easylistchina+easylist.txt: 46303) -.badjojo.com/js/scripts- -# ||badjojo.com/b2s.php (easylistchina+easylist.txt: 46302) -.badjojo.com/b2s\.php -# ||babesmachine.com/html/ (easylistchina+easylist.txt: 46301) -.babesmachine.com/html/ -# ||babeshows.co.uk^*banner (easylistchina+easylist.txt: 46300) -.babeshows.co.uk/.*banner -# ||babeshows.co.uk/fvn53.jpg (easylistchina+easylist.txt: 46299) -.babeshows.co.uk/fvn53\.jpg -# ||babesandstars.com/thumbs/paysites/ (easylistchina+easylist.txt: 46298) -.babesandstars.com/thumbs/paysites/ -# ||babesandstars.com/images/a/ (easylistchina+easylist.txt: 46297) -.babesandstars.com/images/a/ -# ||babepicture.co.uk^*banner (easylistchina+easylist.txt: 46296) -.babepicture.co.uk/.*banner -# ||babedrop.com/babelogger_images/ (easylistchina+easylist.txt: 46295) -.babedrop.com/babelogger_images/ -# ||babblesex.com/js/misc.js (easylistchina+easylist.txt: 46294) -.babblesex.com/js/misc\.js -# ||axatube.com/dos.html (easylistchina+easylist.txt: 46293) -.axatube.com/dos\.html -# ||avn.com/templates/avnav/skins/ (easylistchina+easylist.txt: 46292) -.avn.com/templates/avnav/skins/ -# ||asspoint.com/images/banners/ (easylistchina+easylist.txt: 46291) -.asspoint.com/images/banners/ -# ||asianpornmovies.com/images/banners/ (easylistchina+easylist.txt: 46290) -.asianpornmovies.com/images/banners/ -# ||asgayas.com/popin.js (easylistchina+easylist.txt: 46289) -.asgayas.com/popin\.js -# ||asgayas.com/floater/ (easylistchina+easylist.txt: 46288) -.asgayas.com/floater/ -# ||asexstories.com/010ads/ (easylistchina+easylist.txt: 46287) -.asexstories.com/010ads/ -# ||arionmovies.com/*/popup.php (easylistchina+easylist.txt: 46286) -.arionmovies.com/.*/popup\.php -# ||anysex.com/content_sources/ (easylistchina+easylist.txt: 46285) -.anysex.com/content_sources/ -# ||anysex.com/b/ (easylistchina+easylist.txt: 46284) -.anysex.com/b/ -# ||angelshack.com/images/under-video.png (easylistchina+easylist.txt: 46283) -.angelshack.com/images/under-video\.png -# ||andtube.com/ban_ (easylistchina+easylist.txt: 46282) -.andtube.com/ban_ -# ||analtubegirls.com/js/realamateurtube.js (easylistchina+easylist.txt: 46281) -.analtubegirls.com/js/realamateurtube\.js -# ||analpornpix.com/agent.php? (easylistchina+easylist.txt: 46280) -.analpornpix.com/agent\.php\? -# ||amateurfarm.net/layer.js (easylistchina+easylist.txt: 46279) -.amateurfarm.net/layer\.js -# ||amateuralbum.net/affb.html (easylistchina+easylist.txt: 46278) -.amateuralbum.net/affb\.html -# ||amateur-streams.com^*/popup.js (easylistchina+easylist.txt: 46277) -.amateur-streams.com/.*/popup\.js -# ||amateur-desire.com/pics/sm_ (easylistchina+easylist.txt: 46276) -.amateur-desire.com/pics/sm_ -# ||amateur-desire.com/pics/724x90d.jpg (easylistchina+easylist.txt: 46275) -.amateur-desire.com/pics/724x90d\.jpg -# ||amadorastube.com^*/banner_ (easylistchina+easylist.txt: 46274) -.amadorastube.com/.*/banner_ -# ||alotporn.com^*/js/oopopw.js (easylistchina+easylist.txt: 46273) -.alotporn.com/.*/js/oopopw\.js -# ||alotporn.com/media/banners/ (easylistchina+easylist.txt: 46272) -.alotporn.com/media/banners/ -# ||alladultnetwork.tv/main/videoadroll.xml (easylistchina+easylist.txt: 46271) -.alladultnetwork.tv/main/videoadroll\.xml -# ||affiliates.goodvibes.com^ (easylistchina+easylist.txt: 46270) -.affiliates.goodvibes.com -# ||adultwork.com/images/AWBanners/ (easylistchina+easylist.txt: 46269) -.adultwork.com/images/AWBanners/ -# ||adultfyi.com/images/banners/ (easylistchina+easylist.txt: 46268) -.adultfyi.com/images/banners/ -# ||adultfilmdatabase.com/graphics/banners/ (easylistchina+easylist.txt: 46267) -.adultfilmdatabase.com/graphics/banners/ -# ||adultdvdtalk.com/studios/ (easylistchina+easylist.txt: 46266) -.adultdvdtalk.com/studios/ -# ||adult-sex-games.com/images/promo/ (easylistchina+easylist.txt: 46265) -.adult-sex-games.com/images/promo/ -# ||adult-profit-files.com/banner (easylistchina+easylist.txt: 46264) -.adult-profit-files.com/banner -# ||ads.xxxbunker.com^ (easylistchina+easylist.txt: 46263) -.ads.xxxbunker.com -# ||adrive.com/images/fc_banner.jpg (easylistchina+easylist.txt: 46262) -.adrive.com/images/fc_banner\.jpg -# ||ad.userporn.com^ (easylistchina+easylist.txt: 46261) -.ad.userporn.com -# ||ad.thisav.com^ (easylistchina+easylist.txt: 46260) -.ad.thisav.com -# ||ad.slutload.com^ (easylistchina+easylist.txt: 46259) -.ad.slutload.com -# ||ad.eporner.com^ (easylistchina+easylist.txt: 46258) -.ad.eporner.com -# ||absoluporn.com/code/pub/ (easylistchina+easylist.txt: 46257) -.absoluporn.com/code/pub/ -# ||abc-celebs.com/spons/ (easylistchina+easylist.txt: 46256) -.abc-celebs.com/spons/ -# ||a.killergram-girls.com^ (easylistchina+easylist.txt: 46255) -.a.killergram-girls.com -# ||a.heavy-r.com^ (easylistchina+easylist.txt: 46254) -.a.heavy-r.com -# ||a.eporner.com^ (easylistchina+easylist.txt: 46253) -.a.eporner.com -# ||64.62.202.124^*/cumlouder.jpg (easylistchina+easylist.txt: 46252) -.64.62.202.124/.*/cumlouder\.jpg -# ||5ilthy.com/porn.php (easylistchina+easylist.txt: 46251) -.5ilthy.com/porn\.php -# ||4ufrom.me/xpw.gif (easylistchina+easylist.txt: 46250) -.4ufrom.me/xpw\.gif -# ||3yen.com/wfn_ (easylistchina+easylist.txt: 46249) -.3yen.com/wfn_ -# ||3xupdate.com^*/ryusharepremium.gif (easylistchina+easylist.txt: 46248) -.3xupdate.com/.*/ryusharepremium\.gif -# ||3xupdate.com^*/ryushare2.gif (easylistchina+easylist.txt: 46247) -.3xupdate.com/.*/ryushare2\.gif -# ||3xupdate.com^*/ryushare.gif (easylistchina+easylist.txt: 46246) -.3xupdate.com/.*/ryushare\.gif -# ||3movs.com/contents/content_sources/ (easylistchina+easylist.txt: 46245) -.3movs.com/contents/content_sources/ -# ||2adultflashgames.com/teaser/teaser.swf (easylistchina+easylist.txt: 46244) -.2adultflashgames.com/teaser/teaser\.swf -# ||2adultflashgames.com/img/ (easylistchina+easylist.txt: 46243) -.2adultflashgames.com/img/ -# ||2adultflashgames.com/images/v12.gif (easylistchina+easylist.txt: 46242) -.2adultflashgames.com/images/v12\.gif -# ||24porn7.com/toonad/ (easylistchina+easylist.txt: 46241) -.24porn7.com/toonad/ -# ||24porn7.com/right3.php (easylistchina+easylist.txt: 46240) -.24porn7.com/right3\.php -# ||24porn7.com/odd.php (easylistchina+easylist.txt: 46239) -.24porn7.com/odd\.php -# ||24porn7.com/imads/ (easylistchina+easylist.txt: 46238) -.24porn7.com/imads/ -# ||24porn7.com/float/float_adplib.js (easylistchina+easylist.txt: 46237) -.24porn7.com/float/float_adplib\.js -# ||24porn7.com/ebanners/ (easylistchina+easylist.txt: 46236) -.24porn7.com/ebanners/ -# ||24porn7.com/banned/ (easylistchina+easylist.txt: 46235) -.24porn7.com/banned/ -# ||24porn7.com/300.php (easylistchina+easylist.txt: 46234) -.24porn7.com/300\.php -# ||24porn7.com/24roll.html (easylistchina+easylist.txt: 46233) -.24porn7.com/24roll\.html -# ||244pix.com/webop.jpg (easylistchina+easylist.txt: 46232) -.244pix.com/webop\.jpg -# ||213.174.140.38/bftv/js/msn- (easylistchina+easylist.txt: 46230) -.213.174.140.38/bftv/js/msn- -# ||ziddu.com/onclickpop.php$popup (easylistchina+easylist.txt: 46218) -.ziddu.com/onclickpop\.php -# ||youwatch.org^*^crr^$popup (easylistchina+easylist.txt: 46216) -.youwatch.org/.*[^\w%.-]crr[^\w%.-] -# ||youwatch.org^*^ban^$popup (easylistchina+easylist.txt: 46215) -.youwatch.org/.*[^\w%.-]ban[^\w%.-] -# ||youwatch.org/vids*.html$popup (easylistchina+easylist.txt: 46214) -.youwatch.org/vids.*\.html -# ||yasni.ca/ad_pop.php$popup (easylistchina+easylist.txt: 46213) -.yasni.ca/ad_pop\.php -# ||whies.info^$popup (easylistchina+easylist.txt: 46212) -.whies.info -# ||watch-movies.net.in/popup.php$popup (easylistchina+easylist.txt: 46209) -.watch-movies.net.in/popup\.php -# ||vodu.ch/play_video.php$popup (easylistchina+easylist.txt: 46208) -.vodu.ch/play_video\.php -# ||virtualtourist.com/commerce/popunder/$popup (easylistchina+easylist.txt: 46207) -.virtualtourist.com/commerce/popunder/ -# ||vidspot.net^*http$popup (easylistchina+easylist.txt: 46206) -.vidspot.net/.*http -# ||vidhog.com/ilivid-redirect.php$popup (easylistchina+easylist.txt: 46205) -.vidhog.com/ilivid-redirect\.php -# ||tripadvisor.*/SimilarHotelsPopunder?$popup (easylistchina+easylist.txt: 46203) -.tripadvisor.*./(.*/)?SimilarHotelsPopunder\? -# ||tripadvisor.*/rulebasedpopunder?$popup (easylistchina+easylist.txt: 46202) -.tripadvisor.*./(.*/)?rulebasedpopunder\? -# ||trans.youwatch.org^$popup (easylistchina+easylist.txt: 46201) -.trans.youwatch.org -# ||tozer.youwatch.org^$popup (easylistchina+easylist.txt: 46200) -.tozer.youwatch.org -# ||torrentz.eu/p/$popup (easylistchina+easylist.txt: 46199) -.torrentz.eu/p/ -# ||torrentz.*/wgmpop/$popup (easylistchina+easylist.txt: 46198) -.torrentz.*./(.*/)?wgmpop/ -# ||torrentz.*/mgidpop/$popup (easylistchina+easylist.txt: 46197) -.torrentz.*./(.*/)?mgidpop/ -# ||tny.cz/red/first.php$popup (easylistchina+easylist.txt: 46195) -.tny.cz/red/first\.php -# ||titanshare.to/download-extern.php?type=*&n=$popup (easylistchina+easylist.txt: 46194) -.titanshare.to/download-extern\.php\?type=.*&n= -# ||thevideo.me/script/$popup (easylistchina+easylist.txt: 46192) -.thevideo.me/script/ -# ||thesource.com/magicshave/$popup (easylistchina+easylist.txt: 46191) -.thesource.com/magicshave/ -# ||subs4free.com/_pop_link.php$popup (easylistchina+easylist.txt: 46189) -.subs4free.com/_pop_link\.php -# ||streamtunerhd.com/signup?$popup,third-party (easylistchina+easylist.txt: 46188) -.streamtunerhd.com/signup\? -# ||streamcloud.eu/deliver.php$popup (easylistchina+easylist.txt: 46187) -.streamcloud.eu/deliver\.php -# ||sponsorselect.com/Common/LandingPage.aspx?eu=$popup (easylistchina+easylist.txt: 46186) -.sponsorselect.com/Common/LandingPage\.aspx\?eu= -# ||songspk.cc/pop*.html$popup (easylistchina+easylist.txt: 46184) -.songspk.cc/pop.*\.html -# ||rediff.com/uim/ads/$popup (easylistchina+easylist.txt: 46179) -.rediff.com/uim/ads/ -# ||pop.billionuploads.com^$popup (easylistchina+easylist.txt: 46177) -.pop.billionuploads.com -# ||playhd.eu/test$popup (easylistchina+easylist.txt: 46176) -.playhd.eu/test -# ||plarium.com/play/*adCampaign=$popup (easylistchina+easylist.txt: 46175) -.plarium.com/play/.*adCampaign= -# ||park.above.com^$popup (easylistchina+easylist.txt: 46173) -.park.above.com -# ||oddschecker.com/clickout.htm?type=takeover-$popup (easylistchina+easylist.txt: 46171) -.oddschecker.com/clickout\.htm\?type=takeover- -# ||nosteam.ro/pma/$popup (easylistchina+easylist.txt: 46170) -.nosteam.ro/pma/ -# ||multiupload.nl/popunder/$popup (easylistchina+easylist.txt: 46167) -.multiupload.nl/popunder/ -# ||miniurls.co^*?ref=$popup (easylistchina+easylist.txt: 46166) -.miniurls.co/.*\?ref= -# ||military.com/data/popup/new_education_popunder.htm$popup (easylistchina+easylist.txt: 46165) -.military.com/data/popup/new_education_popunder\.htm -# ||linkbucks.com^*/?*=$popup (easylistchina+easylist.txt: 46164) -.linkbucks.com/.*/\?.*= -# ||itv.com/itv/adclick/$popup (easylistchina+easylist.txt: 46158) -.itv.com/itv/adclick/ -# ||intradayfun.com/news_intradayfun.com.html$popup (easylistchina+easylist.txt: 46157) -.intradayfun.com/news_intradayfun\.com\.html -# ||imageshack.us/newuploader_ad.php$popup (easylistchina+easylist.txt: 46156) -.imageshack.us/newuploader_ad\.php -# ||imageshack.us/ads/$popup (easylistchina+easylist.txt: 46155) -.imageshack.us/ads/ -# ||ifly.com/trip-plan/ifly-trip?*&ad=$popup (easylistchina+easylist.txt: 46154) -.ifly.com/trip-plan/ifly-trip\?.*&ad= -# ||houndmirror.com/out.php$popup (easylistchina+easylist.txt: 46152) -.houndmirror.com/out\.php -# ||homets.info/queen_file?$popup (easylistchina+easylist.txt: 46151) -.homets.info/queen_file\? -# ||homerun.re/adServe/$popup (easylistchina+easylist.txt: 46150) -.homerun.re/adServe/ -# ||gamezadvisor.com/popup.php$popup (easylistchina+easylist.txt: 46145) -.gamezadvisor.com/popup\.php -# ||fullonsms.com/sid.html$popup (easylistchina+easylist.txt: 46144) -.fullonsms.com/sid\.html -# ||fullonsms.com/quikrad.html$popup (easylistchina+easylist.txt: 46143) -.fullonsms.com/quikrad\.html -# ||fullonsms.com/quikr.html$popup (easylistchina+easylist.txt: 46142) -.fullonsms.com/quikr\.html -# ||fullonsms.com/mixpop.html$popup (easylistchina+easylist.txt: 46141) -.fullonsms.com/mixpop\.html -# ||fullonsms.com/blank.php$popup (easylistchina+easylist.txt: 46140) -.fullonsms.com/blank\.php -# ||freean.us^*?ref=$popup (easylistchina+easylist.txt: 46139) -.freean.us/.*\?ref= -# ||free-filehost.net/pop/$popup (easylistchina+easylist.txt: 46137) -.free-filehost.net/pop/ -# ||flashx.tv/frame/$popup (easylistchina+easylist.txt: 46136) -.flashx.tv/frame/ -# ||flashx.tv/ads/$popup (easylistchina+easylist.txt: 46135) -.flashx.tv/ads/ -# ||firedrive.com/tools/$popup (easylistchina+easylist.txt: 46134) -.firedrive.com/tools/ -# ||firedrive.com/appresources/$popup (easylistchina+easylist.txt: 46133) -.firedrive.com/appresources/ -# ||filmon.com^*&adn=$popup (easylistchina+easylist.txt: 46130) -.filmon.com/.*&adn= -# ||filepost.com/default_popup.html$popup (easylistchina+easylist.txt: 46129) -.filepost.com/default_popup\.html -# ||f-picture.net/Misc/JumpClick?$popup (easylistchina+easylist.txt: 46127) -.f-picture.net/Misc/JumpClick\? -# ||exashare.com^*&h=$popup,~third-party (easylistchina+easylist.txt: 46126) -.exashare.com/.*&h= -# ||edomz.com/re.php?mid=$popup (easylistchina+easylist.txt: 46125) -.edomz.com/re\.php\?mid= -# ||eafyfsuh.net^*/?name=$popup (easylistchina+easylist.txt: 46124) -.eafyfsuh.net/.*/\?name= -# ||deb.gs^*?ref=$popup (easylistchina+easylist.txt: 46123) -.deb.gs/.*\?ref= -# ||damoh.muzu.tv^$popup (easylistchina+easylist.txt: 46122) -.damoh.muzu.tv -# ||conservativepost.com/pu/$popup (easylistchina+easylist.txt: 46121) -.conservativepost.com/pu/ -# ||comicbookmovie.com/plugins/ads/$popup (easylistchina+easylist.txt: 46120) -.comicbookmovie.com/plugins/ads/ -# ||cloudzilla.to/cam/wpop.php$popup (easylistchina+easylist.txt: 46119) -.cloudzilla.to/cam/wpop\.php -# ||channel4.com/ad/$popup (easylistchina+easylist.txt: 46117) -.channel4.com/ad/ -# ||casino-x.com^*&promo$popup (easylistchina+easylist.txt: 46116) -.casino-x.com/.*&promo -# ||avalanchers.com/out/$popup (easylistchina+easylist.txt: 46112) -.avalanchers.com/out/ -# ||allmyvideos.net^*?p=$popup (easylistchina+easylist.txt: 46111) -.allmyvideos.net/.*\?p= -# ||adyou.me/bug/adcash$popup (easylistchina+easylist.txt: 46109) -.adyou.me/bug/adcash -# ||adx.kat.ph^$popup (easylistchina+easylist.txt: 46108) -.adx.kat.ph -# ||4fuckr.com/api.php$popup (easylistchina+easylist.txt: 46106) -.4fuckr.com/api\.php -# ||104.239.139.5/display/$popup (easylistchina+easylist.txt: 46105) -.104.239.139.5/display/ -# ||ytconv.net/site/adblock_detect (easylistchina+easylist.txt: 46096) -.ytconv.net/site/adblock_detect -# ||watchfreeinhd.com/js/adblocker.js (easylistchina+easylist.txt: 46095) -.watchfreeinhd.com/js/adblocker\.js -# ||vapingunderground.com/js/vapingunderground/fucking_adblock.js (easylistchina+easylist.txt: 46094) -.vapingunderground.com/js/vapingunderground/fucking_adblock\.js -# ||sportspyder.com/assets/application-$script (easylistchina+easylist.txt: 46092) -.sportspyder.com/assets/application- -# ||nintendolife.com^*/adblock.jpg (easylistchina+easylist.txt: 46085) -.nintendolife.com/.*/adblock\.jpg -# ||joindota.com/img/*MR_$image (easylistchina+easylist.txt: 46084) -.joindota.com/img/.*MR_ -# ||joindota.com/img/*LB_$image (easylistchina+easylist.txt: 46083) -.joindota.com/img/.*LB_ -# ||http.anno.channel4.com*_*_*_ (easylistchina+easylist.txt: 46082) -.http.anno.channel4.com*./.*_.*_.*_ -# ||http.anno.channel4.com*- (easylistchina+easylist.txt: 46081) -.http.anno.channel4.com*./.*- -.http.anno.channel4.com*-*. -# ||getdebrid.com/blocker.js (easylistchina+easylist.txt: 46079) -.getdebrid.com/blocker\.js -# ||channel4.com^*.tidaltv.com$object-subrequest (easylistchina+easylist.txt: 46078) -.channel4.com/.*\.tidaltv\.com -# ||channel4.com^*.innovid.com$object-subrequest (easylistchina+easylist.txt: 46077) -.channel4.com/.*\.innovid\.com -# ||www.infowars.com/*.png$image (easylistchina+easylist.txt: 46067) -.www.infowars.com/.*\.png -# ||thegatewaypundit.com^*.png$image (easylistchina+easylist.txt: 46066) -.thegatewaypundit.com/.*\.png -# ||supercheats.com/js/yavli.js (easylistchina+easylist.txt: 46065) -.supercheats.com/js/yavli\.js -# ||cheatsheet.com^$image,~third-party (easylistchina+easylist.txt: 46064) -.cheatsheet.com -# /\.sharesix\.com/.*[a-zA-Z0-9]{4}/$script (easylistchina+easylist.txt: 45928) -/(.*/)?\\\.sharesix\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.sharesix\.com/.*[a-zA-Z0-9]{4} -# /\.filenuke\.com/.*[a-zA-Z0-9]{4}/$script (easylistchina+easylist.txt: 45927) -/(.*/)?\\\.filenuke\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.filenuke\.com/.*[a-zA-Z0-9]{4} -# ||zurrieqfc.com/images/banners/ (easylistchina+easylist.txt: 45833) -.zurrieqfc.com/images/banners/ -# ||zshares.net/fm.html (easylistchina+easylist.txt: 45832) -.zshares.net/fm\.html -# ||zpag.es/b/ (easylistchina+easylist.txt: 45831) -.zpag.es/b/ -# ||zorrovpn.com/static/img/promo/ (easylistchina+easylist.txt: 45830) -.zorrovpn.com/static/img/promo/ -# ||zophar.net/files/tf_ (easylistchina+easylist.txt: 45829) -.zophar.net/files/tf_ -# ||zoozle.org/if.php?q= (easylistchina+easylist.txt: 45828) -.zoozle.org/if\.php\?q= -# ||zoover.*/shared/bannerpages/darttagsbanner.aspx? (easylistchina+easylist.txt: 45827) -.zoover.*./(.*/)?shared/bannerpages/darttagsbanner\.aspx\? -# ||zootoday.com/pub/21publish/Zoo-navtop-poker.gif (easylistchina+easylist.txt: 45826) -.zootoday.com/pub/21publish/Zoo-navtop-poker\.gif -# ||zootoday.com/pub/21publish/Zoo-navtop-casino_ (easylistchina+easylist.txt: 45825) -.zootoday.com/pub/21publish/Zoo-navtop-casino_ -# ||zoomin.tv/decagonhandler/ (easylistchina+easylist.txt: 45824) -.zoomin.tv/decagonhandler/ -# ||zoneradio.co.za/img/banners/ (easylistchina+easylist.txt: 45823) -.zoneradio.co.za/img/banners/ -# ||zonein.tv/add$subdocument (easylistchina+easylist.txt: 45822) -.zonein.tv/add -# ||zomobo.net/images/removeads.png (easylistchina+easylist.txt: 45821) -.zomobo.net/images/removeads\.png -# ||zombiegamer.co.za/wp-content/uploads/*-skin- (easylistchina+easylist.txt: 45820) -.zombiegamer.co.za/wp-content/uploads/.*-skin- -# ||zipcode.org/site_images/flash/zip_v.swf (easylistchina+easylist.txt: 45819) -.zipcode.org/site_images/flash/zip_v\.swf -# ||zigzag.co.za/images/oww- (easylistchina+easylist.txt: 45818) -.zigzag.co.za/images/oww- -# ||ziddu.com/images/wxdfast/ (easylistchina+easylist.txt: 45817) -.ziddu.com/images/wxdfast/ -# ||ziddu.com/images/globe7.gif (easylistchina+easylist.txt: 45816) -.ziddu.com/images/globe7\.gif -# ||ziddu.com/images/140x150_egglad.gif (easylistchina+easylist.txt: 45815) -.ziddu.com/images/140x150_egglad\.gif -# ||zeropaid.com^*/94.jpg (easylistchina+easylist.txt: 45814) -.zeropaid.com/.*/94\.jpg -# ||zeropaid.com/images/ (easylistchina+easylist.txt: 45813) -.zeropaid.com/images/ -# ||zerochan.net/skyscraper.html (easylistchina+easylist.txt: 45812) -.zerochan.net/skyscraper\.html -# ||zeetvusa.com/images/SevaWeb.gif (easylistchina+easylist.txt: 45811) -.zeetvusa.com/images/SevaWeb\.gif -# ||zeetvusa.com/images/hightlow.jpg (easylistchina+easylist.txt: 45810) -.zeetvusa.com/images/hightlow\.jpg -# ||zeetvusa.com/images/CARIBBEN.jpg (easylistchina+easylist.txt: 45809) -.zeetvusa.com/images/CARIBBEN\.jpg -# ||zbc.co.zw^*/banners/ (easylistchina+easylist.txt: 45808) -.zbc.co.zw/.*/banners/ -# ||zawya.com/brands/ (easylistchina+easylist.txt: 45807) -.zawya.com/brands/ -# ||zawya.com/ads/ (easylistchina+easylist.txt: 45806) -.zawya.com/ads/ -# ||zattoo.com/ads/ (easylistchina+easylist.txt: 45805) -.zattoo.com/ads/ -# ||zap2it.com/wp-content/themes/overmind/js/zcode- (easylistchina+easylist.txt: 45804) -.zap2it.com/wp-content/themes/overmind/js/zcode- -# ||zanews.co.za^*/banners/ (easylistchina+easylist.txt: 45803) -.zanews.co.za/.*/banners/ -# ||zamimg.com/shared/minifeatures/ (easylistchina+easylist.txt: 45802) -.zamimg.com/shared/minifeatures/ -# ||zamimg.com/images/skins/ (easylistchina+easylist.txt: 45801) -.zamimg.com/images/skins/ -# ||zambiz.co.zm/banners/ (easylistchina+easylist.txt: 45800) -.zambiz.co.zm/banners/ -# ||zam.com/i/promos/*-skin. (easylistchina+easylist.txt: 45799) -.zam.com/i/promos/.*-skin\. -# ||zads.care2.com^ (easylistchina+easylist.txt: 45798) -.zads.care2.com -# ||zabasearch.com/search_box.php?*&adword= (easylistchina+easylist.txt: 45797) -.zabasearch.com/search_box\.php\?.*&adword= -# ||yudu.com^*_intro_ads (easylistchina+easylist.txt: 45796) -.yudu.com/.*_intro_ads -# ||ytmnd.com/ugh (easylistchina+easylist.txt: 45795) -.ytmnd.com/ugh -# ||ysm.yahoo.com^ (easylistchina+easylist.txt: 45791) -.ysm.yahoo.com -# ||yrt7dgkf.exashare.com^ (easylistchina+easylist.txt: 45790) -.yrt7dgkf.exashare.com -# ||yp.mo^*/ads/ (easylistchina+easylist.txt: 45789) -.yp.mo/.*/ads/ -# ||youwatch.org/vod-str.html (easylistchina+easylist.txt: 45788) -.youwatch.org/vod-str\.html -# ||youwatch.org/iframe1.html (easylistchina+easylist.txt: 45787) -.youwatch.org/iframe1\.html -# ||youwatch.org/driba.html (easylistchina+easylist.txt: 45786) -.youwatch.org/driba\.html -# ||youwatch.org/9elawi.html (easylistchina+easylist.txt: 45785) -.youwatch.org/9elawi\.html -# ||youtubeproxy.pk/images/lahore.jpg (easylistchina+easylist.txt: 45784) -.youtubeproxy.pk/images/lahore\.jpg -# ||youtubeproxy.pk/images/Lahore.fm.jpg (easylistchina+easylist.txt: 45783) -.youtubeproxy.pk/images/Lahore\.fm\.jpg -# ||youtubeproxy.pk/images/Indiansongs.pk.jpg (easylistchina+easylist.txt: 45782) -.youtubeproxy.pk/images/Indiansongs\.pk\.jpg -# ||youtube-mp3.org/acode/ (easylistchina+easylist.txt: 45780) -.youtube-mp3.org/acode/ -# ||youserials.com/i/banner_pos.jpg (easylistchina+easylist.txt: 45779) -.youserials.com/i/banner_pos\.jpg -# ||yourwire.net/images/refssder.gif (easylistchina+easylist.txt: 45778) -.yourwire.net/images/refssder\.gif -# ||yourradioplace.com/images/banners/ (easylistchina+easylist.txt: 45777) -.yourradioplace.com/images/banners/ -# ||yourradioplace.com//images/banners/ (easylistchina+easylist.txt: 45776) -# ||yourmuze.fm/images/banner_ym.png (easylistchina+easylist.txt: 45775) -.yourmuze.fm/images/banner_ym\.png -# ||yourmuze.fm/images/audionow.png (easylistchina+easylist.txt: 45774) -.yourmuze.fm/images/audionow\.png -# ||yourmovies.com.au^*/side_panels_ (easylistchina+easylist.txt: 45773) -.yourmovies.com.au/.*/side_panels_ -# ||yourindustrynews.com/ads/ (easylistchina+easylist.txt: 45772) -.yourindustrynews.com/ads/ -# ||yourfilehost.com/ads/ (easylistchina+easylist.txt: 45771) -.yourfilehost.com/ads/ -# ||yourepeat.com^*/skins/ (easylistchina+easylist.txt: 45770) -.yourepeat.com/.*/skins/ -# ||yourepeat.com/revive_wrapper? (easylistchina+easylist.txt: 45769) -.yourepeat.com/revive_wrapper\? -# ||yourbittorrent.com/images/lumovies.js (easylistchina+easylist.txt: 45768) -.yourbittorrent.com/images/lumovies\.js -# ||yourbittorrent.com/downloadnow.png (easylistchina+easylist.txt: 45767) -.yourbittorrent.com/downloadnow\.png -# ||youngrider.com/images/sponsorships/ (easylistchina+easylist.txt: 45766) -.youngrider.com/images/sponsorships/ -# ||youconvertit.com/_images/*ad.png (easylistchina+easylist.txt: 45765) -.youconvertit.com/_images/.*ad\.png -# ||yorkshirecoastradio.com/resources/creative/ (easylistchina+easylist.txt: 45764) -.yorkshirecoastradio.com/resources/creative/ -# ||yopmail.com/fbd.js (easylistchina+easylist.txt: 45763) -.yopmail.com/fbd\.js -# ||yomzansi.com^*-300x250. (easylistchina+easylist.txt: 45762) -.yomzansi.com/.*-300x250\. -# ||ynaija.com^*300X300 (easylistchina+easylist.txt: 45760) -.ynaija.com/.*300X300 -# ||ynaija.com^*300x250 (easylistchina+easylist.txt: 45759) -.ynaija.com/.*300x250 -# ||ynaija.com^*/ad. (easylistchina+easylist.txt: 45758) -.ynaija.com/.*/ad\. -# ||yimg.com^*/yad.html (easylistchina+easylist.txt: 45753) -.yimg.com/.*/yad\.html -# ||yimg.com^*/flash/promotions/ (easylistchina+easylist.txt: 45750) -.yimg.com/.*/flash/promotions/ -# ||yimg.com^*/fairfax/$image (easylistchina+easylist.txt: 45749) -.yimg.com/.*/fairfax/ -# ||yimg.com/a/1-$~stylesheet (easylistchina+easylist.txt: 45734) -.yimg.com/a/1- -# ||yimg.com/*300x250$image,object (easylistchina+easylist.txt: 45733) -.yimg.com/.*300x250 -# ||yfrog.com/ym.php? (easylistchina+easylist.txt: 45732) -.yfrog.com/ym\.php\? -# ||yfrog.com/images/weezer-bloggie-bg.png (easylistchina+easylist.txt: 45731) -.yfrog.com/images/weezer-bloggie-bg\.png -# ||yfrog.com/images/contests/ (easylistchina+easylist.txt: 45730) -.yfrog.com/images/contests/ -# ||yfmghana.com/images/banners/ (easylistchina+easylist.txt: 45729) -.yfmghana.com/images/banners/ -# ||yesbeby.whies.info^ (easylistchina+easylist.txt: 45728) -.yesbeby.whies.info -# ||yellowpageskenya.com/sponsored/ (easylistchina+easylist.txt: 45727) -.yellowpageskenya.com/sponsored/ -# ||yellowpages.ly^*/sponsors/ (easylistchina+easylist.txt: 45726) -.yellowpages.ly/.*/sponsors/ -# ||yellowpages.ly/user_media/banner/ (easylistchina+easylist.txt: 45725) -.yellowpages.ly/user_media/banner/ -# ||yellowpages.com.lb/uploaded/banners/ (easylistchina+easylist.txt: 45724) -.yellowpages.com.lb/uploaded/banners/ -# ||yellowpages.com.jo/banners/ (easylistchina+easylist.txt: 45723) -.yellowpages.com.jo/banners/ -# ||yellowpages.ae/UI/WM/ (easylistchina+easylist.txt: 45722) -.yellowpages.ae/UI/WM/ -# ||yellowpages.ae/UI/WA/ (easylistchina+easylist.txt: 45721) -.yellowpages.ae/UI/WA/ -# ||yellowpages.ae/UI/ST/ (easylistchina+easylist.txt: 45720) -.yellowpages.ae/UI/ST/ -# ||yellowpages.ae/UI/SR/ (easylistchina+easylist.txt: 45719) -.yellowpages.ae/UI/SR/ -# ||yellowpages.ae/UI/MR/ (easylistchina+easylist.txt: 45718) -.yellowpages.ae/UI/MR/ -# ||yellowpages.ae/UI/LB/ (easylistchina+easylist.txt: 45717) -.yellowpages.ae/UI/LB/ -# ||yellowpages.ae/UI/FC/ (easylistchina+easylist.txt: 45716) -.yellowpages.ae/UI/FC/ -# ||yellowpage-jp.com/images/banners/ (easylistchina+easylist.txt: 45715) -.yellowpage-jp.com/images/banners/ -# ||yellow.co.ke/img/top_banner/ (easylistchina+easylist.txt: 45714) -.yellow.co.ke/img/top_banner/ -# ||yellow.co.ke/img/right_side/ (easylistchina+easylist.txt: 45713) -.yellow.co.ke/img/right_side/ -# ||yellow.co.ke/img/left_side/ (easylistchina+easylist.txt: 45712) -.yellow.co.ke/img/left_side/ -# ||yea.uploadimagex.com^ (easylistchina+easylist.txt: 45711) -.yea.uploadimagex.com -# ||yavideo.tv/ajaxlog.txt? (easylistchina+easylist.txt: 45710) -.yavideo.tv/ajaxlog\.txt\? -# ||yasni.*/design/relaunch/gfx/elitepartner_ (easylistchina+easylist.txt: 45709) -.yasni.*./(.*/)?design/relaunch/gfx/elitepartner_ -# ||yarisworld.com^*/banners/ (easylistchina+easylist.txt: 45708) -.yarisworld.com/.*/banners/ -# ||yardbarker.com/asset/asset_source/*?ord=$subdocument (easylistchina+easylist.txt: 45707) -.yardbarker.com/asset/asset_source/.*\?ord= -# ||yamivideo.com^*/download_video.jpg (easylistchina+easylist.txt: 45706) -.yamivideo.com/.*/download_video\.jpg -# ||yamgo.mobi/images/banner/ (easylistchina+easylist.txt: 45705) -.yamgo.mobi/images/banner/ -# ||yahoo.com^*/eyc-themis? (easylistchina+easylist.txt: 45704) -.yahoo.com/.*/eyc-themis\? -# ||yahoo.com/ysmload.html? (easylistchina+easylist.txt: 45703) -.yahoo.com/ysmload\.html\? -# ||yahoo.com/sdarla/ (easylistchina+easylist.txt: 45702) -.yahoo.com/sdarla/ -# ||yahoo.com/neo/darla/ (easylistchina+easylist.txt: 45701) -.yahoo.com/neo/darla/ -# ||yahoo.com/livewords/ (easylistchina+easylist.txt: 45700) -.yahoo.com/livewords/ -# ||yahoo.com/darla/ (easylistchina+easylist.txt: 45699) -.yahoo.com/darla/ -# ||yahoo.com/contextual-shortcuts (easylistchina+easylist.txt: 45698) -.yahoo.com/contextual-shortcuts -# ||yahoo.com/__darla/ (easylistchina+easylist.txt: 45697) -.yahoo.com/__darla/ -# ||yahoo.*/serv?s= (easylistchina+easylist.txt: 45696) -.yahoo.*./(.*/)?serv\?s= -# ||xup.in/layer.php (easylistchina+easylist.txt: 45695) -.xup.in/layer\.php -# ||xtremesystems.org/forums/brotator/ (easylistchina+easylist.txt: 45694) -.xtremesystems.org/forums/brotator/ -# ||xsreviews.co.uk/style/bgg2.jpg (easylistchina+easylist.txt: 45693) -.xsreviews.co.uk/style/bgg2\.jpg -# ||xscores.com/livescore/banners/ (easylistchina+easylist.txt: 45692) -.xscores.com/livescore/banners/ -# ||xoops-theme.com/images/banners/ (easylistchina+easylist.txt: 45691) -.xoops-theme.com/images/banners/ -# ||xomreviews.com/sponsors/ (easylistchina+easylist.txt: 45690) -.xomreviews.com/sponsors/ -# ||xiaopan.co/Reaver.png (easylistchina+easylist.txt: 45689) -.xiaopan.co/Reaver\.png -# ||xboxgaming.co.za^*/images/background/ (easylistchina+easylist.txt: 45688) -.xboxgaming.co.za/.*/images/background/ -# ||xbox-scene.com/crave/logo_on_white_s160.jpg (easylistchina+easylist.txt: 45687) -.xbox-scene.com/crave/logo_on_white_s160\.jpg -# ||xbox-hq.com/html/images/banners/ (easylistchina+easylist.txt: 45686) -.xbox-hq.com/html/images/banners/ -# ||xbitlabs.com/images/banners/ (easylistchina+easylist.txt: 45685) -.xbitlabs.com/images/banners/ -# ||xbitlabs.com/cms/module_banners/ (easylistchina+easylist.txt: 45684) -.xbitlabs.com/cms/module_banners/ -# ||x.castanet.net^ (easylistchina+easylist.txt: 45683) -.x.castanet.net -# ||www2.sys-con.com^*.cfm (easylistchina+easylist.txt: 45682) -.www2.sys-con.com/.*\.cfm -# ||wwbf.com/b/topbanner.htm (easylistchina+easylist.txt: 45681) -.wwbf.com/b/topbanner\.htm -# ||wwaytv3.com^*/curlypage.js (easylistchina+easylist.txt: 45680) -.wwaytv3.com/.*/curlypage\.js -# ||wvbr.com/images/banner/ (easylistchina+easylist.txt: 45679) -.wvbr.com/images/banner/ -# ||wunderground.com^*/wuss_300ad2.php? (easylistchina+easylist.txt: 45678) -.wunderground.com/.*/wuss_300ad2\.php\? -# ||wunderground.com/geo/swfad/ (easylistchina+easylist.txt: 45677) -.wunderground.com/geo/swfad/ -# ||wttrend.com/images/hs.jpg (easylistchina+easylist.txt: 45676) -.wttrend.com/images/hs\.jpg -# ||wsj.net/internal/krux.js (easylistchina+easylist.txt: 45675) -.wsj.net/internal/krux\.js -# ||wshh.me/vast/ (easylistchina+easylist.txt: 45674) -.wshh.me/vast/ -# ||wrmf.com/upload/*_Webskin_ (easylistchina+easylist.txt: 45673) -.wrmf.com/upload/.*_Webskin_ -# ||wrlr.fm/images/banners/ (easylistchina+easylist.txt: 45672) -.wrlr.fm/images/banners/ -# ||wrko.com^*/sponsors/ (easylistchina+easylist.txt: 45671) -.wrko.com/.*/sponsors/ -# ||wrko.com/sites/wrko.com/files/poll/*_285x95.jpg (easylistchina+easylist.txt: 45670) -.wrko.com/sites/wrko\.com/files/poll/.*_285x95\.jpg -# ||wrcjfm.org/images/banners/ (easylistchina+easylist.txt: 45669) -.wrcjfm.org/images/banners/ -# ||wrc.com/swf/homeclock_edox_hori.swf (easylistchina+easylist.txt: 45668) -.wrc.com/swf/homeclock_edox_hori\.swf -# ||wrc.com/img/sponsors- (easylistchina+easylist.txt: 45667) -.wrc.com/img/sponsors- -# ||wranglerforum.com/images/sponsor/ (easylistchina+easylist.txt: 45666) -.wranglerforum.com/images/sponsor/ -# ||wqxe.com/images/sponsors/ (easylistchina+easylist.txt: 45665) -.wqxe.com/images/sponsors/ -# ||wqam.com/partners/ (easylistchina+easylist.txt: 45664) -.wqam.com/partners/ -# ||wqah.com/images/banners/ (easylistchina+easylist.txt: 45663) -.wqah.com/images/banners/ -# ||wptmag.com/promo/ (easylistchina+easylist.txt: 45662) -.wptmag.com/promo/ -# ||wpdaddy.com^*/banners/ (easylistchina+easylist.txt: 45661) -.wpdaddy.com/.*/banners/ -# ||wpcv.com/includes/header_banner.htm (easylistchina+easylist.txt: 45660) -.wpcv.com/includes/header_banner\.htm -# ||wp.com/wp-content/themes/vip/tctechcrunch/images/tc_*_skin.jpg (easylistchina+easylist.txt: 45654) -.wp.com/wp-content/themes/vip/tctechcrunch/images/tc_.*_skin\.jpg -# ||wowwiki.com/__varnish_ (easylistchina+easylist.txt: 45653) -.wowwiki.com/__varnish_ -# ||wowhead.com/uploads/skins/$image (easylistchina+easylist.txt: 45652) -.wowhead.com/uploads/skins/ -# ||worthofweb.com/images/wow-ad- (easylistchina+easylist.txt: 45651) -.worthofweb.com/images/wow-ad- -# ||worldstagegroup.com/worldstagenew/banner/ (easylistchina+easylist.txt: 45650) -.worldstagegroup.com/worldstagenew/banner/ -# ||worldstagegroup.com/banner/ (easylistchina+easylist.txt: 45649) -.worldstagegroup.com/banner/ -# ||worldstadiums.com/world_stadiums/bugarrishoes/ (easylistchina+easylist.txt: 45648) -.worldstadiums.com/world_stadiums/bugarrishoes/ -# ||worldometers.info/L728.html (easylistchina+easylist.txt: 45647) -.worldometers.info/L728\.html -# ||worldometers.info/L300R.html (easylistchina+easylist.txt: 45646) -.worldometers.info/L300R\.html -# ||worldometers.info/L300L.html (easylistchina+easylist.txt: 45645) -.worldometers.info/L300L\.html -# ||worldarchitecturenews.com/flash_banners/ (easylistchina+easylist.txt: 45644) -.worldarchitecturenews.com/flash_banners/ -# ||worldarchitecturenews.com/banner/ (easylistchina+easylist.txt: 45643) -.worldarchitecturenews.com/banner/ -# ||workingdays.us/pub_ (easylistchina+easylist.txt: 45642) -.workingdays.us/pub_ -# ||workingdays.org/pub_ (easylistchina+easylist.txt: 45641) -.workingdays.org/pub_ -# ||workingdays.ca/pub_ (easylistchina+easylist.txt: 45640) -.workingdays.ca/pub_ -# ||work-day.co.uk/pub_ (easylistchina+easylist.txt: 45639) -.work-day.co.uk/pub_ -# ||wordwebonline.com/img/122x36ccbanner.png (easylistchina+easylist.txt: 45638) -.wordwebonline.com/img/122x36ccbanner\.png -# ||wordreference.com/*/publ/ (easylistchina+easylist.txt: 45637) -.wordreference.com/.*/publ/ -# ||worddictionary.co.uk/static//inpage-affinity/ (easylistchina+easylist.txt: 45630) -.worddictionary.co.uk/static//inpage-affinity/ -# ||wolf-howl.com/wp-content/banners/ (easylistchina+easylist.txt: 45629) -.wolf-howl.com/wp-content/banners/ -# ||wnst.net/img/coupon/ (easylistchina+easylist.txt: 45628) -.wnst.net/img/coupon/ -# ||wnpv1440.com/images/banners/ (easylistchina+easylist.txt: 45627) -.wnpv1440.com/images/banners/ -# ||wned.org/underwriting/sponsors/ (easylistchina+easylist.txt: 45626) -.wned.org/underwriting/sponsors/ -# ||wlrfm.com/images/banners/ (easylistchina+easylist.txt: 45625) -.wlrfm.com/images/banners/ -# ||wlcr.org/banners/ (easylistchina+easylist.txt: 45624) -.wlcr.org/banners/ -# ||wksu.org/graphics/banners/ (easylistchina+easylist.txt: 45623) -.wksu.org/graphics/banners/ -# ||wjunction.com/images/rectangle (easylistchina+easylist.txt: 45622) -.wjunction.com/images/rectangle -# ||wjunction.com/images/constant/ (easylistchina+easylist.txt: 45621) -.wjunction.com/images/constant/ -# ||wjunction.com/images/468x60 (easylistchina+easylist.txt: 45620) -.wjunction.com/images/468x60 -# ||wjie.org/media/img/sponsers/ (easylistchina+easylist.txt: 45619) -.wjie.org/media/img/sponsers/ -# ||witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ (easylistchina+easylist.txt: 45618) -.witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ -# ||witbankspurs.co.za/layout_images/sponsor.jpg (easylistchina+easylist.txt: 45617) -.witbankspurs.co.za/layout_images/sponsor\.jpg -# ||wiretarget.com/a_$subdocument (easylistchina+easylist.txt: 45615) -.wiretarget.com/a_ -# ||wirenh.com/images/banners/ (easylistchina+easylist.txt: 45614) -.wirenh.com/images/banners/ -# ||wired.com/images/xrail/*/samsung_layar_ (easylistchina+easylist.txt: 45613) -.wired.com/images/xrail/.*/samsung_layar_ -# ||wipfilms.net^*/instant-video.png (easylistchina+easylist.txt: 45612) -.wipfilms.net/.*/instant-video\.png -# ||wipfilms.net^*/amazon.png (easylistchina+easylist.txt: 45611) -.wipfilms.net/.*/amazon\.png -# ||winsupersite.com^*/roadblock. (easylistchina+easylist.txt: 45610) -.winsupersite.com/.*/roadblock\. -# ||winpcap.org/assets/image/banner_ (easylistchina+easylist.txt: 45609) -.winpcap.org/assets/image/banner_ -# ||winnfm.com/grfx/banners/ (easylistchina+easylist.txt: 45608) -.winnfm.com/grfx/banners/ -# ||windowsitpro.com^*/roadblock. (easylistchina+easylist.txt: 45607) -.windowsitpro.com/.*/roadblock\. -# ||wildtangent.com/leaderboard? (easylistchina+easylist.txt: 45605) -.wildtangent.com/leaderboard\? -# ||wikinvest.com/wikinvest/images/zap_trade_ (easylistchina+easylist.txt: 45604) -.wikinvest.com/wikinvest/images/zap_trade_ -# ||wikinvest.com/wikinvest/ads/ (easylistchina+easylist.txt: 45603) -.wikinvest.com/wikinvest/ads/ -# ||wikia.com/__varnish_ (easylistchina+easylist.txt: 45602) -.wikia.com/__varnish_ -# ||wiilovemario.com/images/fc-twin-play-nes-snes-cartridges.png (easylistchina+easylist.txt: 45601) -.wiilovemario.com/images/fc-twin-play-nes-snes-cartridges\.png -# ||widih.org/banners/ (easylistchina+easylist.txt: 45600) -.widih.org/banners/ -# ||widget.directory.dailycommercial.com^ (easylistchina+easylist.txt: 45599) -.widget.directory.dailycommercial.com -# ||whoownsfacebook.com/images/topbanner.gif (easylistchina+easylist.txt: 45597) -.whoownsfacebook.com/images/topbanner\.gif -# ||whois.net/images/banners/ (easylistchina+easylist.txt: 45596) -.whois.net/images/banners/ -# ||whois.net/dombot.php? (easylistchina+easylist.txt: 45595) -.whois.net/dombot\.php\? -# ||whoer.net/images/vpnlab20_ (easylistchina+easylist.txt: 45594) -.whoer.net/images/vpnlab20_ -# ||whoer.net/images/vlab50_ (easylistchina+easylist.txt: 45593) -.whoer.net/images/vlab50_ -# ||whoer.net/images/pb/ (easylistchina+easylist.txt: 45592) -.whoer.net/images/pb/ -# ||who.is/images/domain-transfer2.jpg (easylistchina+easylist.txt: 45591) -.who.is/images/domain-transfer2\.jpg -# ||whitepages.ae/images/UI/WS/ (easylistchina+easylist.txt: 45590) -.whitepages.ae/images/UI/WS/ -# ||whitepages.ae/images/UI/SRB/ (easylistchina+easylist.txt: 45589) -.whitepages.ae/images/UI/SRB/ -# ||whitepages.ae/images/UI/SRA/ (easylistchina+easylist.txt: 45588) -.whitepages.ae/images/UI/SRA/ -# ||whitepages.ae/images/UI/SR/ (easylistchina+easylist.txt: 45587) -.whitepages.ae/images/UI/SR/ -# ||whitepages.ae/images/UI/MR/ (easylistchina+easylist.txt: 45586) -.whitepages.ae/images/UI/MR/ -# ||whitepages.ae/images/UI/LB/ (easylistchina+easylist.txt: 45585) -.whitepages.ae/images/UI/LB/ -# ||whitepages.ae/images/UI/FC/ (easylistchina+easylist.txt: 45584) -.whitepages.ae/images/UI/FC/ -# ||whistleout.com.au/imagelibrary/ads/wo_skin_ (easylistchina+easylist.txt: 45583) -.whistleout.com.au/imagelibrary/ads/wo_skin_ -# ||whispersinthecorridors.com/banner (easylistchina+easylist.txt: 45582) -.whispersinthecorridors.com/banner -# ||wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system.png (easylistchina+easylist.txt: 45581) -.wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system\.png -# ||wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100.gif (easylistchina+easylist.txt: 45580) -.wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100\.gif -# ||wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila.jpg (easylistchina+easylist.txt: 45579) -.wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila\.jpg -# ||wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup.gif (easylistchina+easylist.txt: 45578) -.wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup\.gif -# ||whdh.com/images/promotions/ (easylistchina+easylist.txt: 45577) -.whdh.com/images/promotions/ -# ||whatsthescore.com/logos/icons/bookmakers/ (easylistchina+easylist.txt: 45576) -.whatsthescore.com/logos/icons/bookmakers/ -# ||whatsontv.co.uk^*/promo/ (easylistchina+easylist.txt: 45575) -.whatsontv.co.uk/.*/promo/ -# ||whatsonstage.com/images/sitetakeover/ (easylistchina+easylist.txt: 45574) -.whatsonstage.com/images/sitetakeover/ -# ||whatsonnamibia.com/images/banners/ (easylistchina+easylist.txt: 45573) -.whatsonnamibia.com/images/banners/ -# ||whatson.co.za/img/hp.png (easylistchina+easylist.txt: 45572) -.whatson.co.za/img/hp\.png -# ||whatsnewonnetflix.com/assets/blockless-ad- (easylistchina+easylist.txt: 45571) -.whatsnewonnetflix.com/assets/blockless-ad- -# ||whatsabyte.com/images/Acronis_Banners/ (easylistchina+easylist.txt: 45570) -.whatsabyte.com/images/Acronis_Banners/ -# ||whatreallyhappened.com/webpageimages/banners/uwslogosm.jpg (easylistchina+easylist.txt: 45569) -.whatreallyhappened.com/webpageimages/banners/uwslogosm\.jpg -# ||whatmyip.co/images/speedcoin_ (easylistchina+easylist.txt: 45568) -.whatmyip.co/images/speedcoin_ -# ||whatmobile.com.pk/banners/ (easylistchina+easylist.txt: 45567) -.whatmobile.com.pk/banners/ -# ||whatismyip.org/ez_display_au_fillslot.js (easylistchina+easylist.txt: 45566) -.whatismyip.org/ez_display_au_fillslot\.js -# ||whatismyip.com/images/vyprvpn_ (easylistchina+easylist.txt: 45565) -.whatismyip.com/images/vyprvpn_ -# ||whatismyip.com/images/VYPR__125x125.png (easylistchina+easylist.txt: 45564) -.whatismyip.com/images/VYPR__125x125\.png -# ||wgfaradio.com/images/banners/ (easylistchina+easylist.txt: 45563) -.wgfaradio.com/images/banners/ -# ||werlv.com^*banner (easylistchina+easylist.txt: 45562) -.werlv.com/.*banner -# ||weknowmemes.com/sidesky. (easylistchina+easylist.txt: 45561) -.weknowmemes.com/sidesky\. -# ||wegoted.com/uploads/sponsors/ (easylistchina+easylist.txt: 45560) -.wegoted.com/uploads/sponsors/ -# ||wegoted.com/uploads/memsponsor/ (easylistchina+easylist.txt: 45559) -.wegoted.com/uploads/memsponsor/ -# ||wegoted.com/includes/biogreen.swf (easylistchina+easylist.txt: 45558) -.wegoted.com/includes/biogreen\.swf -# ||weei.com^*_banner.jpg (easylistchina+easylist.txt: 45557) -.weei.com/.*_banner\.jpg -# ||weei.com^*/sponsors/ (easylistchina+easylist.txt: 45556) -.weei.com/.*/sponsors/ -# ||weddingtv.com/src/baners/ (easylistchina+easylist.txt: 45555) -.weddingtv.com/src/baners/ -# ||webstatschecker.com/links/ (easylistchina+easylist.txt: 45554) -.webstatschecker.com/links/ -# ||websitehome.co.uk/seoheap/cheap-web-hosting.gif (easylistchina+easylist.txt: 45553) -.websitehome.co.uk/seoheap/cheap-web-hosting\.gif -# ||webnewswire.com/images/banner (easylistchina+easylist.txt: 45552) -.webnewswire.com/images/banner -# ||webmastercrunch.com^*/hostgator300x30.gif (easylistchina+easylist.txt: 45551) -.webmastercrunch.com/.*/hostgator300x30\.gif -# ||webmaster.extabit.com^ (easylistchina+easylist.txt: 45550) -.webmaster.extabit.com -# ||webmailnotifier.mozdev.org/etc/af/ (easylistchina+easylist.txt: 45549) -.webmailnotifier.mozdev.org/etc/af/ -# ||webhostranking.com/images/bluehost-coupon-banner-1.gif (easylistchina+easylist.txt: 45548) -.webhostranking.com/images/bluehost-coupon-banner-1\.gif -# ||webhostingtalk.com/images/style/lw-header.png (easylistchina+easylist.txt: 45547) -.webhostingtalk.com/images/style/lw-header\.png -# ||webhostingtalk.com/images/style/lw-160x400.jpg (easylistchina+easylist.txt: 45546) -.webhostingtalk.com/images/style/lw-160x400\.jpg -# ||webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ (easylistchina+easylist.txt: 45545) -.webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ -# ||webdesignerdepot.com/wp-content/plugins/md-popup/ (easylistchina+easylist.txt: 45544) -.webdesignerdepot.com/wp-content/plugins/md-popup/ -# ||weatheroffice.gc.ca/banner/ (easylistchina+easylist.txt: 45543) -.weatheroffice.gc.ca/banner/ -# ||weatherbug.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 45542) -.weatherbug.com/.*/ova-jw\.swf -# ||weather365.net/images/banners/ (easylistchina+easylist.txt: 45541) -.weather365.net/images/banners/ -# ||wearetennis.com/img/common/logo_bnp_ (easylistchina+easylist.txt: 45540) -.wearetennis.com/img/common/logo_bnp_ -# ||wearetennis.com/img/common/bnp-logo.png (easylistchina+easylist.txt: 45539) -.wearetennis.com/img/common/bnp-logo\.png -# ||wearetennis.com/img/common/bnp-logo- (easylistchina+easylist.txt: 45538) -.wearetennis.com/img/common/bnp-logo- -# ||wealthycashmagnet.com/upload/banners/ (easylistchina+easylist.txt: 45537) -.wealthycashmagnet.com/upload/banners/ -# ||wdwinfo.com/js/swap.js (easylistchina+easylist.txt: 45536) -.wdwinfo.com/js/swap\.js -# ||wctk.com/banner_rotator.php (easylistchina+easylist.txt: 45535) -.wctk.com/banner_rotator\.php -# ||wcbm.com/includes/clientgraphics/ (easylistchina+easylist.txt: 45534) -.wcbm.com/includes/clientgraphics/ -# ||wbj.pl/im/partners.gif (easylistchina+easylist.txt: 45533) -.wbj.pl/im/partners\.gif -# ||wbgo.org^*/banners/ (easylistchina+easylist.txt: 45532) -.wbgo.org/.*/banners/ -# ||wbal.com/absolutebm/banners/ (easylistchina+easylist.txt: 45531) -.wbal.com/absolutebm/banners/ -# ||way2sms.com/w2sv5/js/fo_ (easylistchina+easylist.txt: 45530) -.way2sms.com/w2sv5/js/fo_ -# ||wavelengthcalculator.com/banner (easylistchina+easylist.txt: 45529) -.wavelengthcalculator.com/banner -# ||waterford-today.ie^*/banners/ (easylistchina+easylist.txt: 45528) -.waterford-today.ie/.*/banners/ -# ||watchwwelive.net^*/long_ban2.jpg (easylistchina+easylist.txt: 45527) -.watchwwelive.net/.*/long_ban2\.jpg -# ||watchwwelive.net^*/big_ban.gif (easylistchina+easylist.txt: 45526) -.watchwwelive.net/.*/big_ban\.gif -# ||watchuseek.com/site/forabar/zixenflashwatch.swf (easylistchina+easylist.txt: 45525) -.watchuseek.com/site/forabar/zixenflashwatch\.swf -# ||watchuseek.com/media/wus-image.jpg (easylistchina+easylist.txt: 45524) -.watchuseek.com/media/wus-image\.jpg -# ||watchuseek.com/media/longines_legenddiver.gif (easylistchina+easylist.txt: 45523) -.watchuseek.com/media/longines_legenddiver\.gif -# ||watchuseek.com/media/clerc-final.jpg (easylistchina+easylist.txt: 45522) -.watchuseek.com/media/clerc-final\.jpg -# ||watchuseek.com/media/banner_ (easylistchina+easylist.txt: 45521) -.watchuseek.com/media/banner_ -# ||watchuseek.com/media/1900x220_ (easylistchina+easylist.txt: 45520) -.watchuseek.com/media/1900x220_ -# ||watchuseek.com/media/*_250x250 (easylistchina+easylist.txt: 45519) -.watchuseek.com/media/.*_250x250 -# ||watchuseek.com/media/*-banner- (easylistchina+easylist.txt: 45518) -.watchuseek.com/media/.*-banner- -# ||watchuseek.com/flashwatchwus.swf (easylistchina+easylist.txt: 45517) -.watchuseek.com/flashwatchwus\.swf -# ||watchseries.eu/js/csspopup.js (easylistchina+easylist.txt: 45516) -.watchseries.eu/js/csspopup\.js -# ||watchseries.eu/images/download.png (easylistchina+easylist.txt: 45515) -.watchseries.eu/images/download\.png -# ||watchseries.eu/images/affiliate_buzz.gif (easylistchina+easylist.txt: 45514) -.watchseries.eu/images/affiliate_buzz\.gif -# ||watchop.com/player/watchonepiece-gao-gamebox.swf (easylistchina+easylist.txt: 45513) -.watchop.com/player/watchonepiece-gao-gamebox\.swf -# ||watchfreemovies.ch/js/lmst.js (easylistchina+easylist.txt: 45512) -.watchfreemovies.ch/js/lmst\.js -# ||watchcartoononline.com^*/530x90. (easylistchina+easylist.txt: 45511) -.watchcartoononline.com/.*/530x90\. -# ||watchcartoononline.com/inc/siteskin. (easylistchina+easylist.txt: 45510) -.watchcartoononline.com/inc/siteskin\. -# ||washtimes.net/banners/ (easylistchina+easylist.txt: 45509) -.washtimes.net/banners/ -# ||washtimes.com/static/images/SelectAutoWeather_v2.gif (easylistchina+easylist.txt: 45508) -.washtimes.com/static/images/SelectAutoWeather_v2\.gif -# ||washtimes.com/js/dart. (easylistchina+easylist.txt: 45507) -.washtimes.com/js/dart\. -# ||washpost.com^*/cmag_sponsor3.php? (easylistchina+easylist.txt: 45506) -.washpost.com/.*/cmag_sponsor3\.php\? -# ||washingtonpost.com/wp-srv/javascript/piggy-back-on-ads.js (easylistchina+easylist.txt: 45505) -.washingtonpost.com/wp-srv/javascript/piggy-back-on-ads\.js -# ||warriorforum.com/vbppb/ (easylistchina+easylist.txt: 45504) -.warriorforum.com/vbppb/ -# ||wardsauto.com^*/pm_doubleclick/ (easylistchina+easylist.txt: 45503) -.wardsauto.com/.*/pm_doubleclick/ -# ||waoanime.tv/playerimg.jpg (easylistchina+easylist.txt: 45502) -.waoanime.tv/playerimg\.jpg -# ||wantitall.co.za/images/banners/ (easylistchina+easylist.txt: 45501) -.wantitall.co.za/images/banners/ -# ||wantedinmilan.com/images/banner/ (easylistchina+easylist.txt: 45500) -.wantedinmilan.com/images/banner/ -# ||walshfreedom.com^*/liberty-luxury.png (easylistchina+easylist.txt: 45498) -.walshfreedom.com/.*/liberty-luxury\.png -# ||walshfreedom.com^*-300x250. (easylistchina+easylist.txt: 45497) -.walshfreedom.com/.*-300x250\. -# ||wallpaper.com/themes/takeovers/$image (easylistchina+easylist.txt: 45496) -.wallpaper.com/themes/takeovers/ -# ||wadldetroit.com/images/banners/ (easylistchina+easylist.txt: 45495) -.wadldetroit.com/images/banners/ -# ||waamradio.com/images/sponsors/ (easylistchina+easylist.txt: 45494) -.waamradio.com/images/sponsors/ -# ||w.homes.yahoo.net^ (easylistchina+easylist.txt: 45493) -.w.homes.yahoo.net -# ||vpsboard.com/display/ (easylistchina+easylist.txt: 45492) -.vpsboard.com/display/ -# ||vox-cdn.com/campaigns_images/ (easylistchina+easylist.txt: 45491) -.vox-cdn.com/campaigns_images/ -# ||vosizneias.com/perms/ (easylistchina+easylist.txt: 45490) -.vosizneias.com/perms/ -# ||vortez.co.uk^*skyscraper.jpg (easylistchina+easylist.txt: 45489) -.vortez.co.uk/.*skyscraper\.jpg -# ||vortez.co.uk^*120x600.swf (easylistchina+easylist.txt: 45488) -.vortez.co.uk/.*120x600\.swf -# ||vonradio.com/grfx/banners/ (easylistchina+easylist.txt: 45487) -.vonradio.com/grfx/banners/ -# ||vondroid.com/site-img/*-adv-ex- (easylistchina+easylist.txt: 45486) -.vondroid.com/site-img/.*-adv-ex- -# ||voicesvancouver.com/images/stories/banners/ (easylistchina+easylist.txt: 45485) -.voicesvancouver.com/images/stories/banners/ -# ||voicesvancouver.com/images/leaderBoards/ (easylistchina+easylist.txt: 45484) -.voicesvancouver.com/images/leaderBoards/ -# ||voicestoronto.com/images/stories/banners/ (easylistchina+easylist.txt: 45483) -.voicestoronto.com/images/stories/banners/ -# ||voicestoronto.com/images/leaderBoards/ (easylistchina+easylist.txt: 45482) -.voicestoronto.com/images/leaderBoards/ -# ||voicesottawa.com/images/stories/banners/ (easylistchina+easylist.txt: 45481) -.voicesottawa.com/images/stories/banners/ -# ||voicesottawa.com/images/leaderBoards/ (easylistchina+easylist.txt: 45480) -.voicesottawa.com/images/leaderBoards/ -# ||voicesedmonton.com/images/stories/banners/ (easylistchina+easylist.txt: 45479) -.voicesedmonton.com/images/stories/banners/ -# ||voicesedmonton.com/images/leaderBoards/ (easylistchina+easylist.txt: 45478) -.voicesedmonton.com/images/leaderBoards/ -# ||voicescalgary.com/images/stories/banners/ (easylistchina+easylist.txt: 45477) -.voicescalgary.com/images/stories/banners/ -# ||voicescalgary.com/images/leaderBoards/ (easylistchina+easylist.txt: 45476) -.voicescalgary.com/images/leaderBoards/ -# ||vogue.in/node/*?section= (easylistchina+easylist.txt: 45475) -.vogue.in/node/.*\?section= -# ||vodo.net/static/images/promotion/utorrent_plus_buy.png (easylistchina+easylist.txt: 45474) -.vodo.net/static/images/promotion/utorrent_plus_buy\.png -# ||vodlocker.com/images/acenter.png (easylistchina+easylist.txt: 45473) -.vodlocker.com/images/acenter\.png -# ||vnbitcoin.org/gawminers.png (easylistchina+easylist.txt: 45472) -.vnbitcoin.org/gawminers\.png -# ||vnbitcoin.org/140_350.jpg (easylistchina+easylist.txt: 45471) -.vnbitcoin.org/140_350\.jpg -# ||vitalmtb.com/assets/vital.aba- (easylistchina+easylist.txt: 45470) -.vitalmtb.com/assets/vital\.aba- -# ||vitalmtb.com/assets/ablock- (easylistchina+easylist.txt: 45469) -.vitalmtb.com/assets/ablock- -# ||vitalmtb.com/api/ (easylistchina+easylist.txt: 45468) -.vitalmtb.com/api/ -# ||vitalfootball.co.uk^*/partners/ (easylistchina+easylist.txt: 45467) -.vitalfootball.co.uk/.*/partners/ -# ||vitalfootball.co.uk/app-interstitial/ (easylistchina+easylist.txt: 45466) -.vitalfootball.co.uk/app-interstitial/ -# ||vistandpoint.com/images/banners/ (easylistchina+easylist.txt: 45465) -.vistandpoint.com/images/banners/ -# ||virtualtourist.com/adp/ (easylistchina+easylist.txt: 45464) -.virtualtourist.com/adp/ -# ||virtual-hideout.net/banner (easylistchina+easylist.txt: 45463) -.virtual-hideout.net/banner -# ||virginislandsthisweek.com/images/728- (easylistchina+easylist.txt: 45462) -.virginislandsthisweek.com/images/728- -# ||virginislandsthisweek.com/images/336- (easylistchina+easylist.txt: 45461) -.virginislandsthisweek.com/images/336- -# ||vipleague.se/js/vip.js (easylistchina+easylist.txt: 45460) -.vipleague.se/js/vip\.js -# ||vipleague.me/blackwhite/ (easylistchina+easylist.txt: 45459) -.vipleague.me/blackwhite/ -# ||vipi.tv/ad.php (easylistchina+easylist.txt: 45458) -.vipi.tv/ad\.php -# ||vipbox.tv/js/layer.js (easylistchina+easylist.txt: 45457) -.vipbox.tv/js/layer\.js -# ||vipbox.tv/js/layer- (easylistchina+easylist.txt: 45456) -.vipbox.tv/js/layer- -# ||vipbox.tv/blackwhite/ (easylistchina+easylist.txt: 45455) -.vipbox.tv/blackwhite/ -# ||vipbox.sx/blackwhite/ (easylistchina+easylist.txt: 45454) -.vipbox.sx/blackwhite/ -# ||vipbox.eu/pu/ (easylistchina+easylist.txt: 45453) -.vipbox.eu/pu/ -# ||vipbox.co^*/pu.js (easylistchina+easylist.txt: 45452) -.vipbox.co/.*/pu\.js -# ||vipbox.co/js/bn.js (easylistchina+easylist.txt: 45451) -.vipbox.co/js/bn\.js -# ||vinaora.com/xmedia/hosting/ (easylistchina+easylist.txt: 45450) -.vinaora.com/xmedia/hosting/ -# ||villagevoice.com/img/VDotDFallback-large.gif (easylistchina+easylist.txt: 45449) -.villagevoice.com/img/VDotDFallback-large\.gif -# ||viewdocsonline.com/images/banners/ (easylistchina+easylist.txt: 45448) -.viewdocsonline.com/images/banners/ -# ||vidvib.com/vidvibpopb. (easylistchina+easylist.txt: 45447) -.vidvib.com/vidvibpopb\. -# ||vidvib.com/vidvibpopa. (easylistchina+easylist.txt: 45446) -.vidvib.com/vidvibpopa\. -# ||vidspot.net^*/pu.js (easylistchina+easylist.txt: 45445) -.vidspot.net/.*/pu\.js -# ||vidspot.net/s/xfs.min.js? (easylistchina+easylist.txt: 45443) -.vidspot.net/s/xfs\.min\.js\? -# ||vidspot.net/player/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 45442) -.vidspot.net/player/ova-jw\.swf -# ||vidhog.com/images/download_banner_ (easylistchina+easylist.txt: 45440) -.vidhog.com/images/download_banner_ -# ||videowood.tv/pop2 (easylistchina+easylist.txt: 45439) -.videowood.tv/pop2 -# ||videowood.tv/assets/js/popup.js (easylistchina+easylist.txt: 45438) -.videowood.tv/assets/js/popup\.js -# ||videowood.tv/ads (easylistchina+easylist.txt: 45437) -.videowood.tv/ads -# ||videositeprofits.com^*/banner.jpg (easylistchina+easylist.txt: 45436) -.videositeprofits.com/.*/banner\.jpg -# ||videos.mediaite.com/decor/live/white_alpha_60. (easylistchina+easylist.txt: 45435) -.videos.mediaite.com/decor/live/white_alpha_60\. -# ||videos.com/click? (easylistchina+easylist.txt: 45434) -.videos.com/click\? -# ||videopediaworld.com/nuevo/plugins/midroll. (easylistchina+easylist.txt: 45433) -.videopediaworld.com/nuevo/plugins/midroll\. -# ||videolan.org/images/events/animated_packliberte.gif (easylistchina+easylist.txt: 45432) -.videolan.org/images/events/animated_packliberte\.gif -# ||videogamesblogger.com^*/scripts/takeover.js (easylistchina+easylist.txt: 45431) -.videogamesblogger.com/.*/scripts/takeover\.js -# ||videogamesblogger.com/takeover.html (easylistchina+easylist.txt: 45430) -.videogamesblogger.com/takeover\.html -# ||videogamer.com^*/css/skins/$stylesheet (easylistchina+easylist.txt: 45429) -.videogamer.com/.*/css/skins/ -# ||videogamer.com/videogamer*/skins/ (easylistchina+easylist.txt: 45428) -.videogamer.com/videogamer.*/skins/ -# ||videodownloadtoolbar.com/fancybox/ (easylistchina+easylist.txt: 45427) -.videodownloadtoolbar.com/fancybox/ -# ||videodorm.org/player/yume-h.swf$object-subrequest (easylistchina+easylist.txt: 45426) -.videodorm.org/player/yume-h\.swf -# ||videobull.to/wp-content/themes/videozoom/images/stream-hd-button.gif (easylistchina+easylist.txt: 45425) -.videobull.to/wp-content/themes/videozoom/images/stream-hd-button\.gif -# ||videobull.to/wp-content/themes/videozoom/images/gotowatchnow.png (easylistchina+easylist.txt: 45424) -.videobull.to/wp-content/themes/videozoom/images/gotowatchnow\.png -# ||videobull.com^*/amazon_ico.png (easylistchina+easylist.txt: 45423) -.videobull.com/.*/amazon_ico\.png -# ||videobull.com/wp-content/themes/*/watch-now.jpg (easylistchina+easylist.txt: 45422) -.videobull.com/wp-content/themes/.*/watch-now\.jpg -# ||videobash.com/images/playboy/ (easylistchina+easylist.txt: 45421) -.videobash.com/images/playboy/ -# ||videobam.com/this-pays-for-bandwidth/ (easylistchina+easylist.txt: 45420) -.videobam.com/this-pays-for-bandwidth/ -# ||videobam.com/images/banners/ (easylistchina+easylist.txt: 45419) -.videobam.com/images/banners/ -# ||video44.net/gogo/yume-h.swf$object-subrequest (easylistchina+easylist.txt: 45418) -.video44.net/gogo/yume-h\.swf -# ||video44.net/gogo/qc.js (easylistchina+easylist.txt: 45417) -.video44.net/gogo/qc\.js -# ||video44.net/gogo/a_d_s. (easylistchina+easylist.txt: 45416) -.video44.net/gogo/a_d_s\. -# ||video2mp3.net/images/download_button.png (easylistchina+easylist.txt: 45415) -.video2mp3.net/images/download_button\.png -# ||video.abc.com^*/promos/$object-subrequest (easylistchina+easylist.txt: 45413) -.video.abc.com/.*/promos/ -# ||video.abc.com^*/ads/ (easylistchina+easylist.txt: 45412) -.video.abc.com/.*/ads/ -# ||video-cdn.abcnews.com/ad_$object-subrequest (easylistchina+easylist.txt: 45410) -.video-cdn.abcnews.com/ad_ -# ||vidds.net/pads*.js (easylistchina+easylist.txt: 45409) -.vidds.net/pads.*\.js -# ||vidbull.com/tags/vidbull_bnr.png (easylistchina+easylist.txt: 45408) -.vidbull.com/tags/vidbull_bnr\.png -# ||vice-ads-cdn.vice.com^ (easylistchina+easylist.txt: 45407) -.vice-ads-cdn.vice.com -# ||viator.com/analytics/percent_mobile_hash.js (easylistchina+easylist.txt: 45406) -.viator.com/analytics/percent_mobile_hash\.js -# ||viamichelin.co.uk/htm/cmn/afs*.htm? (easylistchina+easylist.txt: 45405) -.viamichelin.co.uk/htm/cmn/afs.*\.htm\? -# ||viadeo.com/pub/ (easylistchina+easylist.txt: 45404) -.viadeo.com/pub/ -# ||vhd.me/custom/interstitial (easylistchina+easylist.txt: 45403) -.vhd.me/custom/interstitial -# ||vfs-uk-in.com/images/webbanner- (easylistchina+easylist.txt: 45402) -.vfs-uk-in.com/images/webbanner- -# ||verzing.com/popup (easylistchina+easylist.txt: 45401) -.verzing.com/popup -# ||verzend.be/images/download.png (easylistchina+easylist.txt: 45400) -.verzend.be/images/download\.png -# ||verizon.com/ads/ (easylistchina+easylist.txt: 45399) -.verizon.com/ads/ -# ||verdict.abc.go.com^ (easylistchina+easylist.txt: 45398) -.verdict.abc.go.com -# ||vehix.com/tags/default.imu?$subdocument (easylistchina+easylist.txt: 45397) -.vehix.com/tags/default\.imu\? -# ||vcdq.com^*/ad.html (easylistchina+easylist.txt: 45396) -.vcdq.com/.*/ad\.html -# ||vcdq.com/tag.html (easylistchina+easylist.txt: 45395) -.vcdq.com/tag\.html -# ||vault.starproperty.my/widget/ (easylistchina+easylist.txt: 45394) -.vault.starproperty.my/widget/ -# ||vasco.co.za/images/banners/ (easylistchina+easylist.txt: 45393) -.vasco.co.za/images/banners/ -# ||vanityfair.com/custom/ebook-ad-bookbiz (easylistchina+easylist.txt: 45392) -.vanityfair.com/custom/ebook-ad-bookbiz -# ||valuewalk.com//?$script (easylistchina+easylist.txt: 45391) -# ||valleyplanet.com/images/banners/ (easylistchina+easylist.txt: 45390) -.valleyplanet.com/images/banners/ -# ||val.fm/images/banners/ (easylistchina+easylist.txt: 45389) -.val.fm/images/banners/ -# ||uvnc.com/img/housecall. (easylistchina+easylist.txt: 45388) -.uvnc.com/img/housecall\. -# ||ustream.tv/takeover/ (easylistchina+easylist.txt: 45387) -.ustream.tv/takeover/ -# ||usforacle.com^*-300x250.gif (easylistchina+easylist.txt: 45384) -.usforacle.com/.*-300x250\.gif -# ||usenet-crawler.com/purevpn.png (easylistchina+easylist.txt: 45383) -.usenet-crawler.com/purevpn\.png -# ||usenet-crawler.com/astraweb.png (easylistchina+easylist.txt: 45382) -.usenet-crawler.com/astraweb\.png -# ||uschess.org/images/banners/ (easylistchina+easylist.txt: 45381) -.uschess.org/images/banners/ -# ||usatodayhss.com/images/*skin (easylistchina+easylist.txt: 45380) -.usatodayhss.com/images/.*skin -# ||usatoday.net^*/lb-agate.png (easylistchina+easylist.txt: 45379) -.usatoday.net/.*/lb-agate\.png -# ||usanetwork.com/_js/ad.js (easylistchina+easylist.txt: 45378) -.usanetwork.com/_js/ad\.js -# ||urlgone.com^*/banners/ (easylistchina+easylist.txt: 45377) -.urlgone.com/.*/banners/ -# ||urlcash.org/newpop.js (easylistchina+easylist.txt: 45376) -.urlcash.org/newpop\.js -# ||urlcash.org/banners/ (easylistchina+easylist.txt: 45375) -.urlcash.org/banners/ -# ||urlcash.org/abp/ (easylistchina+easylist.txt: 45374) -.urlcash.org/abp/ -# ||urlcash.net/random*.php (easylistchina+easylist.txt: 45373) -.urlcash.net/random.*\.php -# ||urlcash.net/newpop.js (easylistchina+easylist.txt: 45372) -.urlcash.net/newpop\.js -# ||urethanes-technology-international.com^*/banners/ (easylistchina+easylist.txt: 45371) -.urethanes-technology-international.com/.*/banners/ -# ||urbanvelo.org/sidebarbanner/ (easylistchina+easylist.txt: 45370) -.urbanvelo.org/sidebarbanner/ -# ||urbanfonts.com/images/fonts_com/ (easylistchina+easylist.txt: 45369) -.urbanfonts.com/images/fonts_com/ -# ||urbanchristiannews.com/ucn/sidebar- (easylistchina+easylist.txt: 45368) -.urbanchristiannews.com/ucn/sidebar- -# ||uptobox.com/images/downloaden.gif (easylistchina+easylist.txt: 45367) -.uptobox.com/images/downloaden\.gif -# ||uptobox.com/images/download.png (easylistchina+easylist.txt: 45366) -.uptobox.com/images/download\.png -# ||uptobox.com/ayl.js (easylistchina+easylist.txt: 45365) -.uptobox.com/ayl\.js -# ||uploadlw.com^*/download_button.gif (easylistchina+easylist.txt: 45364) -.uploadlw.com/.*/download_button\.gif -# ||uploadlw.com^*/download-now (easylistchina+easylist.txt: 45363) -.uploadlw.com/.*/download-now -# ||uploadlw.com/js/cash.js (easylistchina+easylist.txt: 45362) -.uploadlw.com/js/cash\.js -# ||uploading.com/static/banners/ (easylistchina+easylist.txt: 45361) -.uploading.com/static/banners/ -# ||uploadedtrend.com/turboflirt.gif (easylistchina+easylist.txt: 45360) -.uploadedtrend.com/turboflirt\.gif -# ||uploaded.to/img/e/ad/ (easylistchina+easylist.txt: 45359) -.uploaded.to/img/e/ad/ -# ||uploaded.net/js2/downloadam.js (easylistchina+easylist.txt: 45358) -.uploaded.net/js2/downloadam\.js -# ||uploadcore.com/images/*-Rad.png (easylistchina+easylist.txt: 45357) -.uploadcore.com/images/.*-Rad\.png -# ||uploadcore.com/images/*-mad.jpg (easylistchina+easylist.txt: 45356) -.uploadcore.com/images/.*-mad\.jpg -# ||uploadcore.com/images/*-Lad.jpg (easylistchina+easylist.txt: 45355) -.uploadcore.com/images/.*-Lad\.jpg -# ||uploadbaz.com^*-728-$object (easylistchina+easylist.txt: 45354) -.uploadbaz.com/.*-728- -# ||upload.ee/image/*/B_descarga_tipo12.gif (easylistchina+easylist.txt: 45353) -.upload.ee/image/.*/B_descarga_tipo12\.gif -# ||universalhub.com/bban/ (easylistchina+easylist.txt: 45352) -.universalhub.com/bban/ -# ||uniquefm.gm/images/banners/ (easylistchina+easylist.txt: 45351) -.uniquefm.gm/images/banners/ -# ||uniindia.net/eng/banners/ (easylistchina+easylist.txt: 45350) -.uniindia.net/eng/banners/ -# ||uniindia.com/eng/bannertopright.php (easylistchina+easylist.txt: 45349) -.uniindia.com/eng/bannertopright\.php -# ||uniindia.com/eng/banners/ (easylistchina+easylist.txt: 45348) -.uniindia.com/eng/banners/ -# ||uniindia.com/eng/bannerrightside.php (easylistchina+easylist.txt: 45347) -.uniindia.com/eng/bannerrightside\.php -# ||uniindia.com/eng/bannerheader.php (easylistchina+easylist.txt: 45346) -.uniindia.com/eng/bannerheader\.php -# ||uniindia.com/eng/bannerbottom.php (easylistchina+easylist.txt: 45345) -.uniindia.com/eng/bannerbottom\.php -# ||unicast.msn.com^ (easylistchina+easylist.txt: 45344) -.unicast.msn.com -# ||unicast.ign.com^ (easylistchina+easylist.txt: 45343) -.unicast.ign.com -# ||uncoached.com/smallpics/ashley (easylistchina+easylist.txt: 45342) -.uncoached.com/smallpics/ashley -# ||unblockt.com/scrape_if.php (easylistchina+easylist.txt: 45341) -.unblockt.com/scrape_if\.php -# ||unblockedpiratebay.com/external/$image (easylistchina+easylist.txt: 45340) -.unblockedpiratebay.com/external/ -# ||unawave.de/templates/unawave/a/$image (easylistchina+easylist.txt: 45339) -.unawave.de/templates/unawave/a/ -# ||unawave.de/medien/wbwso-$image (easylistchina+easylist.txt: 45338) -.unawave.de/medien/wbwso- -# ||unawave.de/medien/ama/$image (easylistchina+easylist.txt: 45337) -.unawave.de/medien/ama/ -# ||unawave.de/medien/a/w-ama-$image (easylistchina+easylist.txt: 45336) -.unawave.de/medien/a/w-ama- -# ||umbrelladetective.com/uploaded_files/banners/ (easylistchina+easylist.txt: 45335) -.umbrelladetective.com/uploaded_files/banners/ -# ||ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners.swf (easylistchina+easylist.txt: 45334) -.ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners\.swf -# ||ultimatewindowssecurity.com/images/spale.swf (easylistchina+easylist.txt: 45333) -.ultimatewindowssecurity.com/images/spale\.swf -# ||ultimatewindowssecurity.com/images/patchzone-resource-80x490.jpg (easylistchina+easylist.txt: 45332) -.ultimatewindowssecurity.com/images/patchzone-resource-80x490\.jpg -# ||ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool.jpg (easylistchina+easylist.txt: 45331) -.ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool\.jpg -# ||ultimatehandyman.org/bh1.gif (easylistchina+easylist.txt: 45330) -.ultimatehandyman.org/bh1\.gif -# ||ultimatehandyman.co.uk/ban.txt (easylistchina+easylist.txt: 45329) -.ultimatehandyman.co.uk/ban\.txt -# ||ultimate-guitar.com^*/takeover/ (easylistchina+easylist.txt: 45328) -.ultimate-guitar.com/.*/takeover/ -# ||ultimate-guitar.com/bgd/main_$image (easylistchina+easylist.txt: 45327) -.ultimate-guitar.com/bgd/main_ -# ||ultimate-guitar.com/_img/promo/takeovers/ (easylistchina+easylist.txt: 45326) -.ultimate-guitar.com/_img/promo/takeovers/ -# ||ultimate-guitar.com/_img/bgd/bgd_main_ (easylistchina+easylist.txt: 45325) -.ultimate-guitar.com/_img/bgd/bgd_main_ -# ||ukradioplayer.kerrangradio.co.uk^*/icon_apple.png (easylistchina+easylist.txt: 45324) -.ukradioplayer.kerrangradio.co.uk/.*/icon_apple\.png -# ||ukradioplayer.kerrangradio.co.uk^*/icon_amazon.png (easylistchina+easylist.txt: 45323) -.ukradioplayer.kerrangradio.co.uk/.*/icon_amazon\.png -# ||ukfindit.com/wipedebtclean.png (easylistchina+easylist.txt: 45322) -.ukfindit.com/wipedebtclean\.png -# ||ukfindit.com/images/*_125x125.gif (easylistchina+easylist.txt: 45321) -.ukfindit.com/images/.*_125x125\.gif -# ||ukcast.co/rbt728.php (easylistchina+easylist.txt: 45320) -.ukcast.co/rbt728\.php -# ||ukcast.co/pubfit.php (easylistchina+easylist.txt: 45319) -.ukcast.co/pubfit\.php -# ||ukcampsite.co.uk/banners/ (easylistchina+easylist.txt: 45318) -.ukcampsite.co.uk/banners/ -# ||ukbusinessforums.co.uk/adblock/ (easylistchina+easylist.txt: 45317) -.ukbusinessforums.co.uk/adblock/ -# ||uk-mkivs.net/uploads/banners/ (easylistchina+easylist.txt: 45316) -.uk-mkivs.net/uploads/banners/ -# ||ujfm.co.za/images/banners/ (easylistchina+easylist.txt: 45315) -.ujfm.co.za/images/banners/ -# ||uimserv.net^ (easylistchina+easylist.txt: 45314) -.uimserv.net -# ||ugo.com/takeover/ (easylistchina+easylist.txt: 45313) -.ugo.com/takeover/ -# ||ufonts.com/gfx/uFonts_Banner5.png (easylistchina+easylist.txt: 45312) -.ufonts.com/gfx/uFonts_Banner5\.png -# ||ubuntugeek.com^*/rocket.js (easylistchina+easylist.txt: 45311) -.ubuntugeek.com/.*/rocket\.js -# ||ubuntugeek.com/images/ubuntu1.png (easylistchina+easylist.txt: 45310) -.ubuntugeek.com/images/ubuntu1\.png -# ||ubuntugeek.com/images/od.jpg (easylistchina+easylist.txt: 45309) -.ubuntugeek.com/images/od\.jpg -# ||ubuntugeek.com/images/dnsstock.png (easylistchina+easylist.txt: 45308) -.ubuntugeek.com/images/dnsstock\.png -# ||uberhumor.com/iframe$subdocument (easylistchina+easylist.txt: 45307) -.uberhumor.com/iframe -# ||uberhumor.com/*btf.html$subdocument (easylistchina+easylist.txt: 45306) -.uberhumor.com/.*btf\.html -# ||ua.badongo.com^ (easylistchina+easylist.txt: 45305) -.ua.badongo.com -# ||u.tv/utvplayer/jwplayer/ova.swf (easylistchina+easylist.txt: 45304) -.u.tv/utvplayer/jwplayer/ova\.swf -# ||u.tv/images/sponsors/ (easylistchina+easylist.txt: 45303) -.u.tv/images/sponsors/ -# ||u.tv/images/misc/progressive.png (easylistchina+easylist.txt: 45302) -.u.tv/images/misc/progressive\.png -# ||txfm.ie^*/itunes-16x16.png (easylistchina+easylist.txt: 45301) -.txfm.ie/.*/itunes-16x16\.png -# ||txfm.ie^*/amazon-16x16.png (easylistchina+easylist.txt: 45300) -.txfm.ie/.*/amazon-16x16\.png -# ||twnmm.com^*/sponsored_logo. (easylistchina+easylist.txt: 45299) -.twnmm.com/.*/sponsored_logo\. -# ||twitch.tv/ad/*=preroll (easylistchina+easylist.txt: 45297) -.twitch.tv/ad/.*=preroll -# ||twentyfour7football.com^*/gpprint.jpg (easylistchina+easylist.txt: 45296) -.twentyfour7football.com/.*/gpprint\.jpg -# ||tweaktown.com/cms/includes/i*.php (easylistchina+easylist.txt: 45295) -.tweaktown.com/cms/includes/i.*\.php -# ||tvsubtitles.net/banners/ (easylistchina+easylist.txt: 45294) -.tvsubtitles.net/banners/ -# ||tvguide.com^*/ecommerce/ (easylistchina+easylist.txt: 45293) -.tvguide.com/.*/ecommerce/ -# ||tvducky.com/imgs/graboid. (easylistchina+easylist.txt: 45292) -.tvducky.com/imgs/graboid\. -# ||tvcatchup.com/wowee/ (easylistchina+easylist.txt: 45291) -.tvcatchup.com/wowee/ -# ||tvbrowser.org/logo_df_tvsponsor_ (easylistchina+easylist.txt: 45290) -.tvbrowser.org/logo_df_tvsponsor_ -# ||tv4chan.com/iframes/ (easylistchina+easylist.txt: 45289) -.tv4chan.com/iframes/ -# ||tv3.ie^*/sponsor. (easylistchina+easylist.txt: 45288) -.tv3.ie/.*/sponsor\. -# ||tuspics.net/onlyPopupOnce.js (easylistchina+easylist.txt: 45287) -.tuspics.net/onlyPopupOnce\.js -# ||tusfiles.net/images/tusfilesb.gif (easylistchina+easylist.txt: 45286) -.tusfiles.net/images/tusfilesb\.gif -# ||tusfiles.net/i/dll.png (easylistchina+easylist.txt: 45285) -.tusfiles.net/i/dll\.png -# ||turnstylenews.com^*/sponsors.png (easylistchina+easylist.txt: 45284) -.turnstylenews.com/.*/sponsors\.png -# ||turboyourpc.com/images/affiliates/ (easylistchina+easylist.txt: 45283) -.turboyourpc.com/images/affiliates/ -# ||turboimagehost.com/p.js (easylistchina+easylist.txt: 45282) -.turboimagehost.com/p\.js -# ||turboimagehost.com/b728_ (easylistchina+easylist.txt: 45281) -.turboimagehost.com/b728_ -# ||turboimagehost.com/b728. (easylistchina+easylist.txt: 45280) -.turboimagehost.com/b728\. -# ||turboimagehost.com/b300_ (easylistchina+easylist.txt: 45279) -.turboimagehost.com/b300_ -# ||turboimagehost.com/b300. (easylistchina+easylist.txt: 45278) -.turboimagehost.com/b300\. -# ||turboimagehost.com/728*.html^ (easylistchina+easylist.txt: 45277) -.turboimagehost.com/728.*\.html[^\w%.-] -# ||turboimagehost.com/300*.html^ (easylistchina+easylist.txt: 45276) -.turboimagehost.com/300.*\.html[^\w%.-] -# ||turbobit.net/pics/7z1xla23ay_ (easylistchina+easylist.txt: 45275) -.turbobit.net/pics/7z1xla23ay_ -# ||turbobit.net/oexktl/muzebra_ (easylistchina+easylist.txt: 45274) -.turbobit.net/oexktl/muzebra_ -# ||turbobit.net/js/acontrol.js? (easylistchina+easylist.txt: 45273) -.turbobit.net/js/acontrol\.js\? -# ||tune.pk/plugins/cb_tunepk/ads/ (easylistchina+easylist.txt: 45272) -.tune.pk/plugins/cb_tunepk/ads/ -# ||tullahomanews.com/news/tn-popup.js (easylistchina+easylist.txt: 45271) -.tullahomanews.com/news/tn-popup\.js -# ||tullahomanews.com/news/banners/ (easylistchina+easylist.txt: 45270) -.tullahomanews.com/news/banners/ -# ||tubeplus.me/resources/js/codec.js (easylistchina+easylist.txt: 45269) -.tubeplus.me/resources/js/codec\.js -# ||tubehome.com/imgs/undressme (easylistchina+easylist.txt: 45268) -.tubehome.com/imgs/undressme -# ||tsn.ca^*_sponsor. (easylistchina+easylist.txt: 45267) -.tsn.ca/.*_sponsor\. -# ||tsdmemphis.com/images/banners/ (easylistchina+easylist.txt: 45266) -.tsdmemphis.com/images/banners/ -# ||tsatic-cdn.net/takeovers/$image (easylistchina+easylist.txt: 45265) -.tsatic-cdn.net/takeovers/ -# ||trutv.com/includes/mods/iframes/mgid-blog.php (easylistchina+easylist.txt: 45264) -.trutv.com/includes/mods/iframes/mgid-blog\.php -# ||trustedreviews.com/mobile/widgets/html/promoted-phones? (easylistchina+easylist.txt: 45263) -.trustedreviews.com/mobile/widgets/html/promoted-phones\? -# ||trunews.com^*/Webbanner.jpg (easylistchina+easylist.txt: 45262) -.trunews.com/.*/Webbanner\.jpg -# ||trucktrend.com^*_160x200_ (easylistchina+easylist.txt: 45261) -.trucktrend.com/.*_160x200_ -# ||trucknetuk.com^*/sponsors/ (easylistchina+easylist.txt: 45260) -.trucknetuk.com/.*/sponsors/ -# ||truck1.eu/_BANNERS_/ (easylistchina+easylist.txt: 45259) -.truck1.eu/_BANNERS_/ -# ||triplehfm.com.au/images/banners/ (easylistchina+easylist.txt: 45258) -.triplehfm.com.au/images/banners/ -# ||tripadvisor.com^*/skyscraper.jpg (easylistchina+easylist.txt: 45257) -.tripadvisor.com/.*/skyscraper\.jpg -# ||tripadvisor.com/adp/ (easylistchina+easylist.txt: 45256) -.tripadvisor.com/adp/ -# ||tripadvisor.*/adp/adp-$subdocument (easylistchina+easylist.txt: 45255) -.tripadvisor.*./(.*/)?adp/adp- -# ||tribune242.com/pubfiles/ (easylistchina+easylist.txt: 45254) -.tribune242.com/pubfiles/ -# ||tribune.com.ng/images/banners/ (easylistchina+easylist.txt: 45253) -.tribune.com.ng/images/banners/ -# ||trgoals.es/adk.html (easylistchina+easylist.txt: 45252) -.trgoals.es/adk\.html -# ||trailrunnermag.com/images/takeovers/ (easylistchina+easylist.txt: 45251) -.trailrunnermag.com/images/takeovers/ -# ||traduguide.com/banner/ (easylistchina+easylist.txt: 45250) -.traduguide.com/banner/ -# ||tradewinds.vi/images/banners/ (easylistchina+easylist.txt: 45249) -.tradewinds.vi/images/banners/ -# ||tracksat.com^*/banners/ (easylistchina+easylist.txt: 45248) -.tracksat.com/.*/banners/ -# ||trackitdown.net/skins/*_campaign/ (easylistchina+easylist.txt: 45247) -.trackitdown.net/skins/.*_campaign/ -# ||tracking.hostgator.com^ (easylistchina+easylist.txt: 45246) -.tracking.hostgator.com -# ||tpb.piraten.lu/static/img/bar.gif (easylistchina+easylist.txt: 45243) -.tpb.piraten.lu/static/img/bar\.gif -# ||toywiz.com/lower-caption-global.html (easylistchina+easylist.txt: 45242) -.toywiz.com/lower-caption-global\.html -# ||toynewsi.com/a/ (easylistchina+easylist.txt: 45241) -.toynewsi.com/a/ -# ||toynews-online.biz/media/banners/ (easylistchina+easylist.txt: 45240) -.toynews-online.biz/media/banners/ -# ||townhall.com^*/ads/ (easylistchina+easylist.txt: 45239) -.townhall.com/.*/ads/ -# ||toucharcade.com/wp-content/uploads/skins/ (easylistchina+easylist.txt: 45238) -.toucharcade.com/wp-content/uploads/skins/ -# ||toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin.jpg (easylistchina+easylist.txt: 45237) -.toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin\.jpg -# ||toucharcade.com/wp-content/themes/*_background_*.jpg (easylistchina+easylist.txt: 45236) -.toucharcade.com/wp-content/themes/.*_background_.*\.jpg -# ||totalguitar.net/images/tgMagazineBanner.gif (easylistchina+easylist.txt: 45235) -.totalguitar.net/images/tgMagazineBanner\.gif -# ||totalguitar.net/images/*_125X125.jpg (easylistchina+easylist.txt: 45234) -.totalguitar.net/images/.*_125X125\.jpg -# ||totalcmd.pl/img/olszak. (easylistchina+easylist.txt: 45233) -.totalcmd.pl/img/olszak\. -# ||totalcmd.pl/img/nucom. (easylistchina+easylist.txt: 45232) -.totalcmd.pl/img/nucom\. -# ||totalcmd.pl/img/billboard_ (easylistchina+easylist.txt: 45231) -.totalcmd.pl/img/billboard_ -# ||total-croatia-news.com/images/banners/ (easylistchina+easylist.txt: 45230) -.total-croatia-news.com/images/banners/ -# ||toshiba.com^*/toshibapromowidget/ (easylistchina+easylist.txt: 45229) -.toshiba.com/.*/toshibapromowidget/ -# ||toshiba.com^*/bookingpromowidget/ (easylistchina+easylist.txt: 45228) -.toshiba.com/.*/bookingpromowidget/ -# ||torrentz.*/mgid/ (easylistchina+easylist.txt: 45227) -.torrentz.*./(.*/)?mgid/ -# ||torrentv.org/images/tsdls.jpg (easylistchina+easylist.txt: 45226) -.torrentv.org/images/tsdls\.jpg -# ||torrentv.org/images/tsdd.jpg (easylistchina+easylist.txt: 45225) -.torrentv.org/images/tsdd\.jpg -# ||torrents.net/wiget.js (easylistchina+easylist.txt: 45224) -.torrents.net/wiget\.js -# ||torrents.net/btguard.gif (easylistchina+easylist.txt: 45223) -.torrents.net/btguard\.gif -# ||torrentroom.com/js/torrents.js (easylistchina+easylist.txt: 45222) -.torrentroom.com/js/torrents\.js -# ||torrentproject.org/out/ (easylistchina+easylist.txt: 45221) -.torrentproject.org/out/ -# ||torrentfusion.com/FastDownload.html (easylistchina+easylist.txt: 45220) -.torrentfusion.com/FastDownload\.html -# ||torrentfunk.com/affprofslider.js (easylistchina+easylist.txt: 45219) -.torrentfunk.com/affprofslider\.js -# ||torrentfreak.com/images/vuze.png (easylistchina+easylist.txt: 45218) -.torrentfreak.com/images/vuze\.png -# ||torrentfreak.com/images/torguard.gif (easylistchina+easylist.txt: 45217) -.torrentfreak.com/images/torguard\.gif -# ||torrenteditor.com/img/graphical-network-monitor.gif (easylistchina+easylist.txt: 45216) -.torrenteditor.com/img/graphical-network-monitor\.gif -# ||torrentcrazy.com/pnd.js (easylistchina+easylist.txt: 45215) -.torrentcrazy.com/pnd\.js -# ||torrentcrazy.com/img/wx.png (easylistchina+easylist.txt: 45214) -.torrentcrazy.com/img/wx\.png -# ||torrentbox.sx/img/download_direct.png (easylistchina+easylist.txt: 45213) -.torrentbox.sx/img/download_direct\.png -# ||torrentbit.net/images/1click/button-long.png (easylistchina+easylist.txt: 45212) -.torrentbit.net/images/1click/button-long\.png -# ||torrent.cd/images/sp/ (easylistchina+easylist.txt: 45211) -.torrent.cd/images/sp/ -# ||torrent.cd/images/main_big_msoft.jpg (easylistchina+easylist.txt: 45210) -.torrent.cd/images/main_big_msoft\.jpg -# ||torrent.cd/images/big_use.gif (easylistchina+easylist.txt: 45209) -.torrent.cd/images/big_use\.gif -# ||torrent.cd/images/banner- (easylistchina+easylist.txt: 45208) -.torrent.cd/images/banner- -# ||torrent-finder.info/cont.php (easylistchina+easylist.txt: 45207) -.torrent-finder.info/cont\.php -# ||torrent-finder.info/cont.html (easylistchina+easylist.txt: 45206) -.torrent-finder.info/cont\.html -# ||toptenreviews.com/flash/ (easylistchina+easylist.txt: 45205) -.toptenreviews.com/flash/ -# ||topix.com/ajax/krillion/ (easylistchina+easylist.txt: 45204) -.topix.com/ajax/krillion/ -# ||topfriv.com/popup.js (easylistchina+easylist.txt: 45203) -.topfriv.com/popup\.js -# ||topalternate.com/assets/sponsored_links- (easylistchina+easylist.txt: 45202) -.topalternate.com/assets/sponsored_links- -# ||toonzone.net^*/placements.php? (easylistchina+easylist.txt: 45201) -.toonzone.net/.*/placements\.php\? -# ||toonova.com/images/site/front/xgift- (easylistchina+easylist.txt: 45200) -.toonova.com/images/site/front/xgift- -# ||toomuchnews.com/dropin/ (easylistchina+easylist.txt: 45199) -.toomuchnews.com/dropin/ -# ||toolslib.net/assets/img/a_dvt/ (easylistchina+easylist.txt: 45198) -.toolslib.net/assets/img/a_dvt/ -# ||tomshardware.com/price/widget/?$xmlhttprequest (easylistchina+easylist.txt: 45197) -.tomshardware.com/price/widget/\? -# ||tomshardware.com/indexAjax.php?ctrl=ajax_pricegrabber$xmlhttprequest (easylistchina+easylist.txt: 45196) -.tomshardware.com/indexAjax\.php\?ctrl=ajax_pricegrabber -# ||tom.itv.com^ (easylistchina+easylist.txt: 45195) -.tom.itv.com -# ||tny.cz/oo/ (easylistchina+easylist.txt: 45194) -.tny.cz/oo/ -# ||tnij.org/rotator (easylistchina+easylist.txt: 45193) -.tnij.org/rotator -# ||tmz.vo.llnwd.net^*/images/*skin (easylistchina+easylist.txt: 45191) -.tmz.vo.llnwd.net/.*/images/.*skin -# ||tmcs.net^ (easylistchina+easylist.txt: 45190) -.tmcs.net -# ||titantv.com/gravity.ashx (easylistchina+easylist.txt: 45189) -.titantv.com/gravity\.ashx -# ||titantorrent.to^*/buttons/download.gif (easylistchina+easylist.txt: 45188) -.titantorrent.to/.*/buttons/download\.gif -# ||titanshare.to/images/buttons/download.gif (easylistchina+easylist.txt: 45187) -.titanshare.to/images/buttons/download\.gif -# ||tinyurl.com/firefox_banner_ (easylistchina+easylist.txt: 45186) -.tinyurl.com/firefox_banner_ -# ||tinypaste.com/public/images/480.png (easylistchina+easylist.txt: 45185) -.tinypaste.com/public/images/480\.png -# ||tindleradio.net/banners/ (easylistchina+easylist.txt: 45183) -.tindleradio.net/banners/ -# ||timestalks.com/images/sponsor- (easylistchina+easylist.txt: 45182) -.timestalks.com/images/sponsor- -# ||timesofoman.com^*/banner/ (easylistchina+easylist.txt: 45181) -.timesofoman.com/.*/banner/ -# ||timesofoman.com/siteImages/MyBannerImages/ (easylistchina+easylist.txt: 45180) -.timesofoman.com/siteImages/MyBannerImages/ -# ||timesofoman.com/FrontInc/top.aspx (easylistchina+easylist.txt: 45179) -.timesofoman.com/FrontInc/top\.aspx -# ||timesnow.tv/googlehome.cms (easylistchina+easylist.txt: 45178) -.timesnow.tv/googlehome\.cms -# ||times.co.sz/files/banners/ (easylistchina+easylist.txt: 45177) -.times.co.sz/files/banners/ -# ||times-herald.com/pubfiles/ (easylistchina+easylist.txt: 45176) -.times-herald.com/pubfiles/ -# ||timeinc.net^*/recirc.js (easylistchina+easylist.txt: 45175) -.timeinc.net/.*/recirc\.js -# ||timeinc.net/*/i/oba-compliance.png (easylistchina+easylist.txt: 45174) -.timeinc.net/.*/i/oba-compliance\.png -# ||time4tv.com/tlv. (easylistchina+easylist.txt: 45173) -.time4tv.com/tlv\. -# ||tigerdroppings.com^*&adcode= (easylistchina+easylist.txt: 45172) -.tigerdroppings.com/.*&adcode= -# ||ticketnetwork.com/images/affiliates/ (easylistchina+easylist.txt: 45171) -.ticketnetwork.com/images/affiliates/ -# ||thunder106.com//wp-content/banners/ (easylistchina+easylist.txt: 45170) -# ||thisisanfield.com^*takeover (easylistchina+easylist.txt: 45169) -.thisisanfield.com/.*takeover -# ||thirdage.com^*_banner.php (easylistchina+easylist.txt: 45168) -.thirdage.com/.*_banner\.php -# ||thinkingwithportals.com^*-skyscraper.swf (easylistchina+easylist.txt: 45167) -.thinkingwithportals.com/.*-skyscraper\.swf -# ||thinkingwithportals.com/images/*-skyscraper. (easylistchina+easylist.txt: 45166) -.thinkingwithportals.com/images/.*-skyscraper\. -# ||thinkbroadband.com/uploads/banners/ (easylistchina+easylist.txt: 45165) -.thinkbroadband.com/uploads/banners/ -# ||theyeshivaworld.com/yw/ (easylistchina+easylist.txt: 45164) -.theyeshivaworld.com/yw/ -# ||thewindowsclub.com^*/banner_ (easylistchina+easylist.txt: 45163) -.thewindowsclub.com/.*/banner_ -# ||thewb.com/thewb/swf/tmz-adblock/ (easylistchina+easylist.txt: 45162) -.thewb.com/thewb/swf/tmz-adblock/ -# ||thevoicebw.com^*325x290.jpg (easylistchina+easylist.txt: 45161) -.thevoicebw.com/.*325x290\.jpg -# ||thevideo.me/js/popup.min.js (easylistchina+easylist.txt: 45160) -.thevideo.me/js/popup\.min\.js -# ||thevideo.me/js/jspc.js (easylistchina+easylist.txt: 45159) -.thevideo.me/js/jspc\.js -# ||thevideo.me/js/jsmpc.js (easylistchina+easylist.txt: 45158) -.thevideo.me/js/jsmpc\.js -# ||thevideo.me/creatives/ (easylistchina+easylist.txt: 45157) -.thevideo.me/creatives/ -# ||thevideo.me/cgi-bin/get_creatives.cgi? (easylistchina+easylist.txt: 45156) -.thevideo.me/cgi-bin/get_creatives\.cgi\? -# ||thetvdb.com/images/jriver_banner.png (easylistchina+easylist.txt: 45155) -.thetvdb.com/images/jriver_banner\.png -# ||thetvdb.com/images/frugal.gif (easylistchina+easylist.txt: 45154) -.thetvdb.com/images/frugal\.gif -# ||thetimes.co.uk/public/encounters/ (easylistchina+easylist.txt: 45153) -.thetimes.co.uk/public/encounters/ -# ||theticketmiami.com/Pics/listenlive/*-Right.jpg (easylistchina+easylist.txt: 45152) -.theticketmiami.com/Pics/listenlive/.*-Right\.jpg -# ||theticketmiami.com/Pics/listenlive/*-Left.jpg (easylistchina+easylist.txt: 45151) -.theticketmiami.com/Pics/listenlive/.*-Left\.jpg -# ||thesweetscience.com/images/banners/ (easylistchina+easylist.txt: 45150) -.thesweetscience.com/images/banners/ -# ||thesurvivalistblog.net^*-banner- (easylistchina+easylist.txt: 45149) -.thesurvivalistblog.net/.*-banner- -# ||thesundaily.my/sites/default/files/twinskyscrapers (easylistchina+easylist.txt: 45148) -.thesundaily.my/sites/default/files/twinskyscrapers -# ||thesuburban.com/universe/addsspace/ (easylistchina+easylist.txt: 45147) -.thesuburban.com/universe/addsspace/ -# ||thesuburban.com/universe/adds/ (easylistchina+easylist.txt: 45146) -.thesuburban.com/universe/adds/ -# ||thestkittsnevisobserver.com/images/banners/ (easylistchina+easylist.txt: 45145) -.thestkittsnevisobserver.com/images/banners/ -# ||thestandard.com.ph^*/banner/ (easylistchina+easylist.txt: 45144) -.thestandard.com.ph/.*/banner/ -# ||thestandard.com.hk/rotate_ (easylistchina+easylist.txt: 45143) -.thestandard.com.hk/rotate_ -# ||thestandard.com.hk/banners/ (easylistchina+easylist.txt: 45142) -.thestandard.com.hk/banners/ -# ||thessdreview.com^*/owc-new-gif1.gif (easylistchina+easylist.txt: 45141) -.thessdreview.com/.*/owc-new-gif1\.gif -# ||thessdreview.com^*/owc-full-banner.jpg (easylistchina+easylist.txt: 45140) -.thessdreview.com/.*/owc-full-banner\.jpg -# ||thessdreview.com^*/amazon-buy (easylistchina+easylist.txt: 45139) -.thessdreview.com/.*/amazon-buy -# ||thessdreview.com^*-bg.jpg (easylistchina+easylist.txt: 45138) -.thessdreview.com/.*-bg\.jpg -# ||thessdreview.com^*-bg-banner- (easylistchina+easylist.txt: 45137) -.thessdreview.com/.*-bg-banner- -# ||thessdreview.com/wp-content/uploads/*/930x64_ (easylistchina+easylist.txt: 45136) -.thessdreview.com/wp-content/uploads/.*/930x64_ -# ||thespiritsbusiness.com^*/Banner150 (easylistchina+easylist.txt: 45135) -.thespiritsbusiness.com/.*/Banner150 -# ||thesource.com/magicshave/ (easylistchina+easylist.txt: 45134) -.thesource.com/magicshave/ -# ||thesentinel.com^*/banners/ (easylistchina+easylist.txt: 45133) -.thesentinel.com/.*/banners/ -# ||therugbyforum.com/trf-images/sponsors/ (easylistchina+easylist.txt: 45132) -.therugbyforum.com/trf-images/sponsors/ -# ||theradiomagazine.co.uk/images/bionics.jpg (easylistchina+easylist.txt: 45131) -.theradiomagazine.co.uk/images/bionics\.jpg -# ||theradiomagazine.co.uk/banners/ (easylistchina+easylist.txt: 45130) -.theradiomagazine.co.uk/banners/ -# ||thepreparednessreview.com/wp-content/uploads/*_185x185.jpg (easylistchina+easylist.txt: 45129) -.thepreparednessreview.com/wp-content/uploads/.*_185x185\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*_175x175.jpg (easylistchina+easylist.txt: 45128) -.thepreparednessreview.com/wp-content/uploads/.*_175x175\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*/250x125- (easylistchina+easylist.txt: 45127) -.thepreparednessreview.com/wp-content/uploads/.*/250x125- -# ||theportugalnews.com/uploads/banner/ (easylistchina+easylist.txt: 45126) -.theportugalnews.com/uploads/banner/ -# ||theplanetweekly.com/images/banners/ (easylistchina+easylist.txt: 45125) -.theplanetweekly.com/images/banners/ -# ||thephuketnews.com/photo/banner/ (easylistchina+easylist.txt: 45124) -.thephuketnews.com/photo/banner/ -# ||thepeninsulaqatar.com^*/banners/ (easylistchina+easylist.txt: 45123) -.thepeninsulaqatar.com/.*/banners/ -# ||thepeak.fm/images/banners/ (easylistchina+easylist.txt: 45122) -.thepeak.fm/images/banners/ -# ||thepaper24-7.com/SiteImages/Tile/ (easylistchina+easylist.txt: 45121) -.thepaper24-7.com/SiteImages/Tile/ -# ||thepaper24-7.com/SiteImages/Banner/ (easylistchina+easylist.txt: 45120) -.thepaper24-7.com/SiteImages/Banner/ -# ||theorganicprepper.ca/images/banners/ (easylistchina+easylist.txt: 45119) -.theorganicprepper.ca/images/banners/ -# ||theonion.com/ads/ (easylistchina+easylist.txt: 45118) -.theonion.com/ads/ -# ||theolympian.com/static/images/weathersponsor/ (easylistchina+easylist.txt: 45117) -.theolympian.com/static/images/weathersponsor/ -# ||theoldie.co.uk/Banners/ (easylistchina+easylist.txt: 45116) -.theoldie.co.uk/Banners/ -# ||thenonleaguefootballpaper.com^*/Lovell-Soccer.jpg (easylistchina+easylist.txt: 45115) -.thenonleaguefootballpaper.com/.*/Lovell-Soccer\.jpg -# ||thenonleaguefootballpaper.com^*/J4K-new-range-pictures.jpg (easylistchina+easylist.txt: 45114) -.thenonleaguefootballpaper.com/.*/J4K-new-range-pictures\.jpg -# ||thenonleaguefootballpaper.com^*/image-non-league.jpeg (easylistchina+easylist.txt: 45113) -.thenonleaguefootballpaper.com/.*/image-non-league\.jpeg -# ||thenonleaguefootballpaper.com^*/Budweiser.jpg (easylistchina+easylist.txt: 45112) -.thenonleaguefootballpaper.com/.*/Budweiser\.jpg -# ||thenonleaguefootballpaper.com^*/ADIDAS_11PRO_WHITEOUT.jpg (easylistchina+easylist.txt: 45111) -.thenonleaguefootballpaper.com/.*/ADIDAS_11PRO_WHITEOUT\.jpg -# ||thenonleaguefootballpaper.com^*/140x140_ (easylistchina+easylist.txt: 45110) -.thenonleaguefootballpaper.com/.*/140x140_ -# ||thenonleaguefootballpaper.com^*-140x300- (easylistchina+easylist.txt: 45109) -.thenonleaguefootballpaper.com/.*-140x300- -# ||thenextweb.com^*/canvas.php?$xmlhttprequest (easylistchina+easylist.txt: 45108) -.thenextweb.com/.*/canvas\.php\? -# ||thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ (easylistchina+easylist.txt: 45107) -.thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ -# ||thenewjournalandguide.com/images/banners/ (easylistchina+easylist.txt: 45106) -.thenewjournalandguide.com/images/banners/ -# ||thenewage.co.za/Image/kingprice.gif (easylistchina+easylist.txt: 45105) -.thenewage.co.za/Image/kingprice\.gif -# ||thenationonlineng.net^*/banners/ (easylistchina+easylist.txt: 45104) -.thenationonlineng.net/.*/banners/ -# ||thenassauguardian.com/images/banners/ (easylistchina+easylist.txt: 45103) -.thenassauguardian.com/images/banners/ -# ||themittani.com/sites/*-skin (easylistchina+easylist.txt: 45102) -.themittani.com/sites/.*-skin -# ||themiscellany.org/images/banners/ (easylistchina+easylist.txt: 45101) -.themiscellany.org/images/banners/ -# ||themis.yahoo.com^ (easylistchina+easylist.txt: 45100) -.themis.yahoo.com -# ||themis-media.com/media/global/images/cskins/ (easylistchina+easylist.txt: 45099) -.themis-media.com/media/global/images/cskins/ -# ||theminiforum.co.uk/images/banners/ (easylistchina+easylist.txt: 45098) -.theminiforum.co.uk/images/banners/ -# ||themidweeksun.co.bw/images/banners/ (easylistchina+easylist.txt: 45097) -.themidweeksun.co.bw/images/banners/ -# ||themag.co.uk/assets/BV200x90TOPBANNER.png (easylistchina+easylist.txt: 45096) -.themag.co.uk/assets/BV200x90TOPBANNER\.png -# ||thelyricarchive.com/new/view/ (easylistchina+easylist.txt: 45095) -.thelyricarchive.com/new/view/ -# ||thelodownny.com/leslog/ads/ (easylistchina+easylist.txt: 45094) -.thelodownny.com/leslog/ads/ -# ||thelocal.com/scripts/fancybox/ (easylistchina+easylist.txt: 45093) -.thelocal.com/scripts/fancybox/ -# ||theliberianjournal.com/flash/banner (easylistchina+easylist.txt: 45092) -.theliberianjournal.com/flash/banner -# ||theleader.info/banner (easylistchina+easylist.txt: 45091) -.theleader.info/banner -# ||thelakewoodscoop.com^*banner (easylistchina+easylist.txt: 45090) -.thelakewoodscoop.com/.*banner -# ||thejournal.ie/media/hpto/ (easylistchina+easylist.txt: 45089) -.thejournal.ie/media/hpto/ -# ||thejointblog.com^*/dablab.gif (easylistchina+easylist.txt: 45088) -.thejointblog.com/.*/dablab\.gif -# ||thejointblog.com/wp-content/uploads/*-235x (easylistchina+easylist.txt: 45087) -.thejointblog.com/wp-content/uploads/.*-235x -# ||thejesperbay.com^ (easylistchina+easylist.txt: 45086) -.thejesperbay.com -# ||theispguide.com/topbanner.asp? (easylistchina+easylist.txt: 45085) -.theispguide.com/topbanner\.asp\? -# ||theispguide.com/premiumisp.html (easylistchina+easylist.txt: 45084) -.theispguide.com/premiumisp\.html -# ||theindependentbd.com^*/banner/ (easylistchina+easylist.txt: 45083) -.theindependentbd.com/.*/banner/ -# ||thehubsa.co.za^*/sponsor_ (easylistchina+easylist.txt: 45082) -.thehubsa.co.za/.*/sponsor_ -# ||thehindu.com/multimedia/*/sivananda_sponsorch_ (easylistchina+easylist.txt: 45081) -.thehindu.com/multimedia/.*/sivananda_sponsorch_ -# ||thehighstreetweb.com^*/banners/ (easylistchina+easylist.txt: 45080) -.thehighstreetweb.com/.*/banners/ -# ||thehealthcareblog.com/files/*/THCB-Validic-jpg-opt.jpg (easylistchina+easylist.txt: 45079) -.thehealthcareblog.com/files/.*/THCB-Validic-jpg-opt\.jpg -# ||thehealthcareblog.com/files/*/athena-300.jpg (easylistchina+easylist.txt: 45078) -.thehealthcareblog.com/files/.*/athena-300\.jpg -# ||thehealthcareblog.com/files/*/American-Resident-Project-Logo- (easylistchina+easylist.txt: 45077) -.thehealthcareblog.com/files/.*/American-Resident-Project-Logo- -# ||thefrontierpost.com/media/banner/ (easylistchina+easylist.txt: 45076) -.thefrontierpost.com/media/banner/ -# ||thefile.me^*.php?*zoneid (easylistchina+easylist.txt: 45075) -.thefile.me/.*\.php\?.*zoneid -# ||theenglishgarden.co.uk^*/bannerImage. (easylistchina+easylist.txt: 45074) -.theenglishgarden.co.uk/.*/bannerImage\. -# ||theedinburghreporter.co.uk/hmbanner/ (easylistchina+easylist.txt: 45073) -.theedinburghreporter.co.uk/hmbanner/ -# ||thedomainstat.com/filemanager/userfiles/banners/ (easylistchina+easylist.txt: 45072) -.thedomainstat.com/filemanager/userfiles/banners/ -# ||thedirectory.co.zw/banners/ (easylistchina+easylist.txt: 45071) -.thedirectory.co.zw/banners/ -# ||theday.com/assets/images/sponsorlogos/ (easylistchina+easylist.txt: 45070) -.theday.com/assets/images/sponsorlogos/ -# ||thedailystar.net^*/scbbd.gif (easylistchina+easylist.txt: 45069) -.thedailystar.net/.*/scbbd\.gif -# ||thedailystar.net^*/footer-sticky-add/ (easylistchina+easylist.txt: 45068) -.thedailystar.net/.*/footer-sticky-add/ -# ||thedailystar.net^*/aritel-logo.jpg (easylistchina+easylist.txt: 45067) -.thedailystar.net/.*/aritel-logo\.jpg -# ||thedailystar.net^*/Animation-200-X-30.gif (easylistchina+easylist.txt: 45066) -.thedailystar.net/.*/Animation-200-X-30\.gif -# ||thedailystar.net^*/400-x-120-pixel.jpg (easylistchina+easylist.txt: 45065) -.thedailystar.net/.*/400-x-120-pixel\.jpg -# ||thedailysheeple.com/images/banners/ (easylistchina+easylist.txt: 45064) -.thedailysheeple.com/images/banners/ -# ||thedailypaul.com/images/amzn- (easylistchina+easylist.txt: 45063) -.thedailypaul.com/images/amzn- -# ||thedailymeal.net^*/featured_partners/ (easylistchina+easylist.txt: 45062) -.thedailymeal.net/.*/featured_partners/ -# ||thedailymeal.com^*_sponsoredby.png (easylistchina+easylist.txt: 45061) -.thedailymeal.com/.*_sponsoredby\.png -# ||thedailymash.co.uk/templates/mashtastic/gutters/ (easylistchina+easylist.txt: 45060) -.thedailymash.co.uk/templates/mashtastic/gutters/ -# ||thedailyherald.com/images/banners/ (easylistchina+easylist.txt: 45059) -.thedailyherald.com/images/banners/ -# ||thecsuite.co.uk^*/banners/ (easylistchina+easylist.txt: 45058) -.thecsuite.co.uk/.*/banners/ -# ||thecorrsmisc.com/msb_banner.jpg (easylistchina+easylist.txt: 45057) -.thecorrsmisc.com/msb_banner\.jpg -# ||thecorrsmisc.com/brokenthread.jpg (easylistchina+easylist.txt: 45056) -.thecorrsmisc.com/brokenthread\.jpg -# ||thecorrsmisc.com/10feet_banner.gif (easylistchina+easylist.txt: 45055) -.thecorrsmisc.com/10feet_banner\.gif -# ||thecnj.com/images/hotel-banner.jpg (easylistchina+easylist.txt: 45054) -.thecnj.com/images/hotel-banner\.jpg -# ||thecitizen.co.tz^*/banners/ (easylistchina+easylist.txt: 45053) -.thecitizen.co.tz/.*/banners/ -# ||thechive.files.wordpress.com^*-wallpaper- (easylistchina+easylist.txt: 45052) -.thechive.files.wordpress.com/.*-wallpaper- -# ||thecharlottepost.com/cache/sql/fba/ (easylistchina+easylist.txt: 45051) -.thecharlottepost.com/cache/sql/fba/ -# ||thecenturion.co.za^*/banners/ (easylistchina+easylist.txt: 45050) -.thecenturion.co.za/.*/banners/ -# ||thecatholicuniverse.com^*-banner- (easylistchina+easylist.txt: 45049) -.thecatholicuniverse.com/.*-banner- -# ||thecatholicuniverse.com^*-advert- (easylistchina+easylist.txt: 45048) -.thecatholicuniverse.com/.*-advert- -# ||thecatholicuniverse.com^*-ad. (easylistchina+easylist.txt: 45047) -.thecatholicuniverse.com/.*-ad\. -# ||thebusinessdesk.com/assets/_files/banners/ (easylistchina+easylist.txt: 45046) -.thebusinessdesk.com/assets/_files/banners/ -# ||theburningplatform.com/wp-content/uploads/*_180x150.gif (easylistchina+easylist.txt: 45045) -.theburningplatform.com/wp-content/uploads/.*_180x150\.gif -# ||thebulls.co.za^*/sponsors/ (easylistchina+easylist.txt: 45044) -.thebulls.co.za/.*/sponsors/ -# ||thebull.com.au/admin/uploads/banners/ (easylistchina+easylist.txt: 45043) -.thebull.com.au/admin/uploads/banners/ -# ||theblaze.com^*_background_ (easylistchina+easylist.txt: 45042) -.theblaze.com/.*_background_ -# ||theblaze.com^*-interstitial- (easylistchina+easylist.txt: 45041) -.theblaze.com/.*-interstitial- -# ||theblaze.com^*-backgroundwide- (easylistchina+easylist.txt: 45040) -.theblaze.com/.*-backgroundwide- -# ||theblaze.com^*-background2- (easylistchina+easylist.txt: 45039) -.theblaze.com/.*-background2- -# ||theblaze.com^*-background- (easylistchina+easylist.txt: 45038) -.theblaze.com/.*-background- -# ||thebeat99.com/cmsadmin/banner/ (easylistchina+easylist.txt: 45037) -.thebeat99.com/cmsadmin/banner/ -# ||thebay.co.uk/banners/ (easylistchina+easylist.txt: 45036) -.thebay.co.uk/banners/ -# ||theattractionforums.com/images/rbsbanners/ (easylistchina+easylist.txt: 45035) -.theattractionforums.com/images/rbsbanners/ -# ||theasiantoday.com/image/banners/ (easylistchina+easylist.txt: 45034) -.theasiantoday.com/image/banners/ -# ||theartnewspaper.com/aads/ (easylistchina+easylist.txt: 45033) -.theartnewspaper.com/aads/ -# ||theaquarian.com^*/banners/ (easylistchina+easylist.txt: 45032) -.theaquarian.com/.*/banners/ -# ||theafricachannel.com^*/promos/ (easylistchina+easylist.txt: 45031) -.theafricachannel.com/.*/promos/ -# ||theactivetimes.net^*/featured_partners/ (easylistchina+easylist.txt: 45030) -.theactivetimes.net/.*/featured_partners/ -# ||the-numbers.com^*/allposters/ (easylistchina+easylist.txt: 45029) -.the-numbers.com/.*/allposters/ -# ||thaivisa.com/promotions/banners/ (easylistchina+easylist.txt: 45028) -.thaivisa.com/promotions/banners/ -# ||tfd.com^*/grammarly/ (easylistchina+easylist.txt: 45027) -.tfd.com/.*/grammarly/ -# ||textpattern.com/images/117.gif (easylistchina+easylist.txt: 45026) -.textpattern.com/images/117\.gif -# ||testseek.com/price_pricegrabber_ (easylistchina+easylist.txt: 45025) -.testseek.com/price_pricegrabber_ -# ||terafile.co/i/banners/ (easylistchina+easylist.txt: 45024) -.terafile.co/i/banners/ -# ||tentonhammer.com^*/takeovers/ (easylistchina+easylist.txt: 45023) -.tentonhammer.com/.*/takeovers/ -# ||tennisworldusa.org/banners/ (easylistchina+easylist.txt: 45022) -.tennisworldusa.org/banners/ -# ||tennischannel.com/tc-button-gif.gif (easylistchina+easylist.txt: 45021) -.tennischannel.com/tc-button-gif\.gif -# ||tennischannel.com/prud.jpg (easylistchina+easylist.txt: 45020) -.tennischannel.com/prud\.jpg -# ||tenmanga.com/files/js/site_skin.js (easylistchina+easylist.txt: 45019) -.tenmanga.com/files/js/site_skin\.js -# ||tenmanga.com/files/js/manga_$subdocument (easylistchina+easylist.txt: 45018) -.tenmanga.com/files/js/manga_ -# ||ten-tenths.com/sidebar.html (easylistchina+easylist.txt: 45017) -.ten-tenths.com/sidebar\.html -# ||templatesbox.com^*/banners/ (easylistchina+easylist.txt: 45016) -.templatesbox.com/.*/banners/ -# ||telegraphindia.com^*/hoabanner. (easylistchina+easylist.txt: 45015) -.telegraphindia.com/.*/hoabanner\. -# ||telegraphindia.com^*/banners/ (easylistchina+easylist.txt: 45014) -.telegraphindia.com/.*/banners/ -# ||telegraph.co.uk/sponsored/ (easylistchina+easylist.txt: 45013) -.telegraph.co.uk/sponsored/ -# ||telegraph.co.uk/international/$subdocument (easylistchina+easylist.txt: 45012) -.telegraph.co.uk/international/ -# ||telecomtiger.com^*_640x480_ (easylistchina+easylist.txt: 45011) -.telecomtiger.com/.*_640x480_ -# ||telecomtiger.com^*_250x250_ (easylistchina+easylist.txt: 45010) -.telecomtiger.com/.*_250x250_ -# ||tehrantimes.com/images/banners/ (easylistchina+easylist.txt: 45009) -.tehrantimes.com/images/banners/ -# ||teesupport.com/wp-content/themes/ts-blog/images/cp- (easylistchina+easylist.txt: 45008) -.teesupport.com/wp-content/themes/ts-blog/images/cp- -# ||teesoft.info/images/uniblue.png (easylistchina+easylist.txt: 45007) -.teesoft.info/images/uniblue\.png -# ||techtree.com^*/jquery.catfish.js (easylistchina+easylist.txt: 45006) -.techtree.com/.*/jquery\.catfish\.js -# ||techtarget.com^*/leaderboard.html (easylistchina+easylist.txt: 45005) -.techtarget.com/.*/leaderboard\.html -# ||techsupportforum.com^*/banners/ (easylistchina+easylist.txt: 45004) -.techsupportforum.com/.*/banners/ -# ||techradar.com^*/img/*_takeover_ (easylistchina+easylist.txt: 45003) -.techradar.com/.*/img/.*_takeover_ -# ||techpowerup.com/images/bnnrs/ (easylistchina+easylist.txt: 45002) -.techpowerup.com/images/bnnrs/ -# ||technomag.co.zw^*/TakeOverCampaign. (easylistchina+easylist.txt: 45001) -.technomag.co.zw/.*/TakeOverCampaign\. -# ||technewsworld.com/images/sda/ (easylistchina+easylist.txt: 45000) -.technewsworld.com/images/sda/ -# ||technewsdaily.com/crime-stats/local_crime_stats.php (easylistchina+easylist.txt: 44999) -.technewsdaily.com/crime-stats/local_crime_stats\.php -# ||techhive.com/ads/ (easylistchina+easylist.txt: 44998) -.techhive.com/ads/ -# ||techexams.net/banners/ (easylistchina+easylist.txt: 44997) -.techexams.net/banners/ -# ||techcentral.co.za^*/wallpaper- (easylistchina+easylist.txt: 44996) -.techcentral.co.za/.*/wallpaper- -# ||techcentral.co.za^*/background-manager/ (easylistchina+easylist.txt: 44995) -.techcentral.co.za/.*/background-manager/ -# ||techcentral.co.za^*-wallpaper- (easylistchina+easylist.txt: 44994) -.techcentral.co.za/.*-wallpaper- -# ||teamfourstar.com/img/918thefan.jpg (easylistchina+easylist.txt: 44993) -.teamfourstar.com/img/918thefan\.jpg -# ||tdfimg.com/go/*.html (easylistchina+easylist.txt: 44992) -.tdfimg.com/go/.*\.html -# ||tbib.org/kona/ (easylistchina+easylist.txt: 44990) -.tbib.org/kona/ -# ||taxsutra.com^*/banner/ (easylistchina+easylist.txt: 44989) -.taxsutra.com/.*/banner/ -# ||taxidrivermovie.com/style/sk-p.js (easylistchina+easylist.txt: 44988) -.taxidrivermovie.com/style/sk-p\.js -# ||tastro.org/x/ads*.php (easylistchina+easylist.txt: 44987) -.tastro.org/x/ads.*\.php -# ||targetedtopic.com^ (easylistchina+easylist.txt: 44986) -.targetedtopic.com -# ||targetedinfo.com^ (easylistchina+easylist.txt: 44985) -.targetedinfo.com -# ||tanzanite.infomine.com^ (easylistchina+easylist.txt: 44984) -.tanzanite.infomine.com -# ||tampermonkey.net^*.*.$subdocument (easylistchina+easylist.txt: 44983) -.tampermonkey.net/.*\..*\. -# ||tampermonkey.net/bner/ (easylistchina+easylist.txt: 44982) -.tampermonkey.net/bner/ -# ||talksport.co.uk^*/ts_takeover/ (easylistchina+easylist.txt: 44981) -.talksport.co.uk/.*/ts_takeover/ -# ||talkradioeurope.net/images/banners/ (easylistchina+easylist.txt: 44980) -.talkradioeurope.net/images/banners/ -# ||talkradioeurope.com/images/banners/ (easylistchina+easylist.txt: 44979) -.talkradioeurope.com/images/banners/ -# ||talkphotography.co.uk/images/externallogos/banners/ (easylistchina+easylist.txt: 44978) -.talkphotography.co.uk/images/externallogos/banners/ -# ||talkgold.com/bans/ (easylistchina+easylist.txt: 44977) -.talkgold.com/bans/ -# ||talkers.com/images/banners/ (easylistchina+easylist.txt: 44976) -.talkers.com/images/banners/ -# ||talkers.com/imagebase/ (easylistchina+easylist.txt: 44975) -.talkers.com/imagebase/ -# ||take40.com/images/takeover/ (easylistchina+easylist.txt: 44974) -.take40.com/images/takeover/ -# ||take40.com/css/takeover.css (easylistchina+easylist.txt: 44973) -.take40.com/css/takeover\.css -# ||taiwannews.com.tw/etn/images/banner_ (easylistchina+easylist.txt: 44972) -.taiwannews.com.tw/etn/images/banner_ -# ||taipeitimes.com/js/gad.js? (easylistchina+easylist.txt: 44971) -.taipeitimes.com/js/gad\.js\? -# ||tabloidmedia.co.za/images/signs2.swf (easylistchina+easylist.txt: 44970) -.tabloidmedia.co.za/images/signs2\.swf -# ||tabla.com.sg/SIA.jpg (easylistchina+easylist.txt: 44969) -.tabla.com.sg/SIA\.jpg -# ||sythe.org/clientscript/agold.png (easylistchina+easylist.txt: 44968) -.sythe.org/clientscript/agold\.png -# ||sythe.org/bnrs/ (easylistchina+easylist.txt: 44967) -.sythe.org/bnrs/ -# ||systemexplorer.net/sessg.php (easylistchina+easylist.txt: 44966) -.systemexplorer.net/sessg\.php -# ||sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/$image (easylistchina+easylist.txt: 44965) -.sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/ -# ||sxc.hu/img/banner (easylistchina+easylist.txt: 44964) -.sxc.hu/img/banner -# ||swoknews.com/images/banners/ (easylistchina+easylist.txt: 44963) -.swoknews.com/images/banners/ -# ||swimnewslibrary.com^*_960x120.jpg (easylistchina+easylist.txt: 44962) -.swimnewslibrary.com/.*_960x120\.jpg -# ||swimnews.com^*/banner_ (easylistchina+easylist.txt: 44961) -.swimnews.com/.*/banner_ -# ||swiftco.net/banner/ (easylistchina+easylist.txt: 44960) -.swiftco.net/banner/ -# ||sweepsadvantage.com/336x230-2.php (easylistchina+easylist.txt: 44959) -.sweepsadvantage.com/336x230-2\.php -# ||swedishwire.com/images/banners/ (easylistchina+easylist.txt: 44958) -.swedishwire.com/images/banners/ -# ||swampbuggy.com/media/images/banners/ (easylistchina+easylist.txt: 44957) -.swampbuggy.com/media/images/banners/ -# ||swagmp3.com/cdn-cgi/pe/ (easylistchina+easylist.txt: 44956) -.swagmp3.com/cdn-cgi/pe/ -# ||surfthechannel.com/promo/ (easylistchina+easylist.txt: 44955) -.surfthechannel.com/promo/ -# ||superplatyna.com/automater.swf (easylistchina+easylist.txt: 44954) -.superplatyna.com/automater\.swf -# ||supermonitoring.com/images/banners/ (easylistchina+easylist.txt: 44953) -.supermonitoring.com/images/banners/ -# ||supermarket.co.za/images/advetising/ (easylistchina+easylist.txt: 44952) -.supermarket.co.za/images/advetising/ -# ||superbike-news.co.uk/absolutebm/banners/ (easylistchina+easylist.txt: 44951) -.superbike-news.co.uk/absolutebm/banners/ -# ||suntimes.com^*/banners/ (easylistchina+easylist.txt: 44950) -.suntimes.com/.*/banners/ -# ||sunshineradio.ie/images/banners/ (easylistchina+easylist.txt: 44949) -.sunshineradio.ie/images/banners/ -# ||sunriseradio.com/js/rbanners.js (easylistchina+easylist.txt: 44948) -.sunriseradio.com/js/rbanners\.js -# ||sun-fm.com/resources/creative/ (easylistchina+easylist.txt: 44947) -.sun-fm.com/resources/creative/ -# ||sulekha.com^*/sulekhabanner.aspx (easylistchina+easylist.txt: 44946) -.sulekha.com/.*/sulekhabanner\.aspx -# ||sulekha.com^*/bannerhelper.html (easylistchina+easylist.txt: 44945) -.sulekha.com/.*/bannerhelper\.html -# ||succeed.co.za^*/banner_ (easylistchina+easylist.txt: 44944) -.succeed.co.za/.*/banner_ -# ||subs4free.com^*/wh4_s4f_$script (easylistchina+easylist.txt: 44943) -.subs4free.com/.*/wh4_s4f_ -# ||submarinecablemap.com^*-sponsored.png (easylistchina+easylist.txt: 44942) -.submarinecablemap.com/.*-sponsored\.png -# ||stv.tv/img/player/stvplayer-sponsorstrip- (easylistchina+easylist.txt: 44941) -.stv.tv/img/player/stvplayer-sponsorstrip- -# ||stuff.tv/client/skinning/ (easylistchina+easylist.txt: 44940) -.stuff.tv/client/skinning/ -# ||stuff.co.nz/stuff/widgets/lifedirect/ (easylistchina+easylist.txt: 44938) -.stuff.co.nz/stuff/widgets/lifedirect/ -# ||stuff.co.nz/stuff/tom/mags-widget/ (easylistchina+easylist.txt: 44937) -.stuff.co.nz/stuff/tom/mags-widget/ -# ||stuff.co.nz/stuff/misc/flying-flowers/ (easylistchina+easylist.txt: 44936) -.stuff.co.nz/stuff/misc/flying-flowers/ -# ||stuff.co.nz/stuff/*banner (easylistchina+easylist.txt: 44935) -.stuff.co.nz/stuff/.*banner -# ||stuff.co.nz/interactives/stuff-bayleys/ (easylistchina+easylist.txt: 44934) -.stuff.co.nz/interactives/stuff-bayleys/ -# ||stuff.co.nz/files/NZBoatM4Gwidget.html (easylistchina+easylist.txt: 44933) -.stuff.co.nz/files/NZBoatM4Gwidget\.html -# ||stuff.co.nz/clientdev/production/iframes/ (easylistchina+easylist.txt: 44932) -.stuff.co.nz/clientdev/production/iframes/ -# ||stuff.co.nz/1361239022/107/8323107.jpg (easylistchina+easylist.txt: 44931) -.stuff.co.nz/1361239022/107/8323107\.jpg -# ||stuff.co.nz/1319769787/395/5871395.jpg (easylistchina+easylist.txt: 44930) -.stuff.co.nz/1319769787/395/5871395\.jpg -# ||student-jobs.co.uk/banner. (easylistchina+easylist.txt: 44929) -.student-jobs.co.uk/banner\. -# ||streams.tv/js/slidingbanner.js (easylistchina+easylist.txt: 44928) -.streams.tv/js/slidingbanner\.js -# ||streams.tv/js/pu.js (easylistchina+easylist.txt: 44927) -.streams.tv/js/pu\.js -# ||streams.tv/js/bn5.js (easylistchina+easylist.txt: 44926) -.streams.tv/js/bn5\.js -# ||streamguys.com^*/amazon.png (easylistchina+easylist.txt: 44925) -.streamguys.com/.*/amazon\.png -# ||streamcloud.eu/deliver.php (easylistchina+easylist.txt: 44924) -.streamcloud.eu/deliver\.php -# ||stream2watch.me/yield.html (easylistchina+easylist.txt: 44923) -.stream2watch.me/yield\.html -# ||stream2watch.me/Los_Br.png (easylistchina+easylist.txt: 44922) -.stream2watch.me/Los_Br\.png -# ||stream2watch.me/images/hd1.png (easylistchina+easylist.txt: 44921) -.stream2watch.me/images/hd1\.png -# ||stream2watch.me/ed (easylistchina+easylist.txt: 44920) -.stream2watch.me/ed -# ||stream2watch.me/eadt.php (easylistchina+easylist.txt: 44919) -.stream2watch.me/eadt\.php -# ||stream2watch.me/eadb.php (easylistchina+easylist.txt: 44918) -.stream2watch.me/eadb\.php -# ||stream2watch.me/chat1.html (easylistchina+easylist.txt: 44917) -.stream2watch.me/chat1\.html -# ||stream2watch.me/ad10.html (easylistchina+easylist.txt: 44916) -.stream2watch.me/ad10\.html -# ||stream2watch.me/ad.html (easylistchina+easylist.txt: 44915) -.stream2watch.me/ad\.html -# ||stream2watch.me/_$subdocument (easylistchina+easylist.txt: 44914) -.stream2watch.me/_ -# ||stream2watch.me/900yahoo.html (easylistchina+easylist.txt: 44913) -.stream2watch.me/900yahoo\.html -# ||stream2watch.me/900rev.html (easylistchina+easylist.txt: 44912) -.stream2watch.me/900rev\.html -# ||stream2watch.me/600pick.png (easylistchina+easylist.txt: 44911) -.stream2watch.me/600pick\.png -# ||stream2watch.co/images/hd1.png (easylistchina+easylist.txt: 44910) -.stream2watch.co/images/hd1\.png -# ||stream2watch.co/frames/ (easylistchina+easylist.txt: 44909) -.stream2watch.co/frames/ -# ||stream.heavenmedia.net^ (easylistchina+easylist.txt: 44908) -.stream.heavenmedia.net -# ||strategypage.com^*_banner (easylistchina+easylist.txt: 44907) -.strategypage.com/.*_banner -# ||storewidget.pcauthority.com.au^ (easylistchina+easylist.txt: 44906) -.storewidget.pcauthority.com.au -# ||stopstream.com/ads/ (easylistchina+easylist.txt: 44905) -.stopstream.com/ads/ -# ||stopforumspam.com/img/snelserver.swf (easylistchina+easylist.txt: 44904) -.stopforumspam.com/img/snelserver\.swf -# ||stockhouse.com^*-300x75.gif (easylistchina+easylist.txt: 44903) -.stockhouse.com/.*-300x75\.gif -# ||stlyrics.com^*_st.js (easylistchina+easylist.txt: 44902) -.stlyrics.com/.*_st\.js -# ||stlyrics.com^*_az.js (easylistchina+easylist.txt: 44901) -.stlyrics.com/.*_az\.js -# ||stltoday.com^*_sponsor.gif (easylistchina+easylist.txt: 44900) -.stltoday.com/.*_sponsor\.gif -# ||stjohntradewindsnews.com/images/banners/ (easylistchina+easylist.txt: 44899) -.stjohntradewindsnews.com/images/banners/ -# ||sticker.yadro.ru/ad/ (easylistchina+easylist.txt: 44898) -.sticker.yadro.ru/ad/ -# ||steroid.com/dsoct09.swf (easylistchina+easylist.txt: 44897) -.steroid.com/dsoct09\.swf -# ||steroid.com/banner/ (easylistchina+easylist.txt: 44896) -.steroid.com/banner/ -# ||sternfannetwork.com/forum/images/banners/ (easylistchina+easylist.txt: 44895) -.sternfannetwork.com/forum/images/banners/ -# ||steambuy.com/steambuy.gif (easylistchina+easylist.txt: 44894) -.steambuy.com/steambuy\.gif -# ||steamanalyst.com/a/www/ (easylistchina+easylist.txt: 44893) -.steamanalyst.com/a/www/ -# ||staticworld.net/images/*_pcwskin_ (easylistchina+easylist.txt: 44892) -.staticworld.net/images/.*_pcwskin_ -# ||staticneo.com/neoassets/iframes/leaderboard_bottom. (easylistchina+easylist.txt: 44891) -.staticneo.com/neoassets/iframes/leaderboard_bottom\. -# ||static.nfl.com^*-background- (easylistchina+easylist.txt: 44889) -.static.nfl.com/.*-background- -# ||static.hltv.org//images/gofastbg.png (easylistchina+easylist.txt: 44888) -# ||static.hd-trailers.net/js/javascript_*.js| (easylistchina+easylist.txt: 44887) -.static.hd-trailers.net/js/javascript_.*\.js$ -# ||static-economist.com^*/timekeeper-by-rolex-medium.png (easylistchina+easylist.txt: 44886) -.static-economist.com/.*/timekeeper-by-rolex-medium\.png -# ||startxchange.com/bnr.php (easylistchina+easylist.txt: 44885) -.startxchange.com/bnr\.php -# ||star883.org^*/sponsors. (easylistchina+easylist.txt: 44884) -.star883.org/.*/sponsors\. -# ||standardmedia.co.ke/flash/ (easylistchina+easylist.txt: 44883) -.standardmedia.co.ke/flash/ -# ||standard.net/sites/default/files/images/wallpapers/ (easylistchina+easylist.txt: 44882) -.standard.net/sites/default/files/images/wallpapers/ -# ||stagnitomedia.com/view-banner- (easylistchina+easylist.txt: 44881) -.stagnitomedia.com/view-banner- -# ||stad.com/googlefoot2.php? (easylistchina+easylist.txt: 44880) -.stad.com/googlefoot2\.php\? -# ||st701.com/stomp/banners/ (easylistchina+easylist.txt: 44879) -.st701.com/stomp/banners/ -# ||ssl-images-amazon.com/images/*/browser-scripts/da- (easylistchina+easylist.txt: 44878) -.ssl-images-amazon.com/images/.*/browser-scripts/da- -# ||srv.thespacereporter.com^ (easylistchina+easylist.txt: 44877) -.srv.thespacereporter.com -# ||squadedit.com/img/peanuts/ (easylistchina+easylist.txt: 44876) -.squadedit.com/img/peanuts/ -# ||spycss.com/images/hostgator.gif (easylistchina+easylist.txt: 44874) -.spycss.com/images/hostgator\.gif -# ||spreaker.net/spots/ (easylistchina+easylist.txt: 44873) -.spreaker.net/spots/ -# ||spotflux.com/service/partner.php (easylistchina+easylist.txt: 44872) -.spotflux.com/service/partner\.php -# ||sportcategory.org/pu/ (easylistchina+easylist.txt: 44871) -.sportcategory.org/pu/ -# ||sportcategory.com/ads/ (easylistchina+easylist.txt: 44870) -.sportcategory.com/ads/ -# ||sporcle.com/adn/yak.php? (easylistchina+easylist.txt: 44869) -.sporcle.com/adn/yak\.php\? -# ||sponsors.webosroundup.com^ (easylistchina+easylist.txt: 44868) -.sponsors.webosroundup.com -# ||sponsors.s2ki.com^ (easylistchina+easylist.txt: 44867) -.sponsors.s2ki.com -# ||spicegrenada.com/images/banners/ (easylistchina+easylist.txt: 44866) -.spicegrenada.com/images/banners/ -# ||speroforum.com/images/sponsor_ (easylistchina+easylist.txt: 44865) -.speroforum.com/images/sponsor_ -# ||speedvideo.net/img/playerFk.gif (easylistchina+easylist.txt: 44864) -.speedvideo.net/img/playerFk\.gif -# ||speedvid.net/ad.htm (easylistchina+easylist.txt: 44863) -.speedvid.net/ad\.htm -# ||speedtv.com^*/tissot-logo.png (easylistchina+easylist.txt: 44862) -.speedtv.com/.*/tissot-logo\.png -# ||speedtv.com/js/interstitial.js (easylistchina+easylist.txt: 44861) -.speedtv.com/js/interstitial\.js -# ||speedtv.com.edgesuite.net/img/monthly/takeovers/ (easylistchina+easylist.txt: 44860) -.speedtv.com.edgesuite.net/img/monthly/takeovers/ -# ||speedtest.net/flash/60speedify$object-subrequest (easylistchina+easylist.txt: 44859) -.speedtest.net/flash/60speedify -# ||speedtest.net/flash/59rvvrpc-$object-subrequest (easylistchina+easylist.txt: 44858) -.speedtest.net/flash/59rvvrpc- -# ||spartoo.eu/footer_tag_iframe_ (easylistchina+easylist.txt: 44856) -.spartoo.eu/footer_tag_iframe_ -# ||spaceweather.com/abdfeeter/$image (easylistchina+easylist.txt: 44855) -.spaceweather.com/abdfeeter/ -# ||space.com/promo/ (easylistchina+easylist.txt: 44854) -.space.com/promo/ -# ||sowetanlive.co.za/banners/ (easylistchina+easylist.txt: 44853) -.sowetanlive.co.za/banners/ -# ||southafricab2b.co.za/banners/ (easylistchina+easylist.txt: 44852) -.southafricab2b.co.za/banners/ -# ||sourceforge.net/images/ban/ (easylistchina+easylist.txt: 44851) -.sourceforge.net/images/ban/ -# ||sourcefed.com/wp-content/uploads/*/netflix4.jpg (easylistchina+easylist.txt: 44850) -.sourcefed.com/wp-content/uploads/.*/netflix4\.jpg -# ||soundtracklyrics.net^*_az.js (easylistchina+easylist.txt: 44849) -.soundtracklyrics.net/.*_az\.js -# ||soundspheremag.com/images/banners/ (easylistchina+easylist.txt: 44848) -.soundspheremag.com/images/banners/ -# ||soundcloud.com/promoted/ (easylistchina+easylist.txt: 44847) -.soundcloud.com/promoted/ -# ||soundcloud.com/audio-ad? (easylistchina+easylist.txt: 44846) -.soundcloud.com/audio-ad\? -# ||sorcerers.net/images/aff/ (easylistchina+easylist.txt: 44845) -.sorcerers.net/images/aff/ -# ||sootoday.com/uploads/banners/ (easylistchina+easylist.txt: 44844) -.sootoday.com/uploads/banners/ -# ||songspk.name/textlinks/ (easylistchina+easylist.txt: 44843) -.songspk.name/textlinks/ -# ||songspk.name/imagepk.gif (easylistchina+easylist.txt: 44842) -.songspk.name/imagepk\.gif -# ||songspk.link/textlinks/ (easylistchina+easylist.txt: 44840) -.songspk.link/textlinks/ -# ||songs.pk/textlinks/ (easylistchina+easylist.txt: 44839) -.songs.pk/textlinks/ -# ||someecards.com^*/images/skin/ (easylistchina+easylist.txt: 44838) -.someecards.com/.*/images/skin/ -# ||solvater.com/images/hd.jpg (easylistchina+easylist.txt: 44837) -.solvater.com/images/hd\.jpg -# ||solomonstarnews.com/images/banners/ (easylistchina+easylist.txt: 44836) -.solomonstarnews.com/images/banners/ -# ||soldierx.com/system/files/images/sx-mini-1.jpg (easylistchina+easylist.txt: 44835) -.soldierx.com/system/files/images/sx-mini-1\.jpg -# ||softpedia.com/*_square. (easylistchina+easylist.txt: 44834) -.softpedia.com/.*_square\. -# ||softpedia.com/*_rect. (easylistchina+easylist.txt: 44833) -.softpedia.com/.*_rect\. -# ||softpedia.com/*_longrect. (easylistchina+easylist.txt: 44832) -.softpedia.com/.*_longrect\. -# ||softpedia-static.com/images/afg/ (easylistchina+easylist.txt: 44830) -.softpedia-static.com/images/afg/ -# ||softpedia-static.com/images/aff/ (easylistchina+easylist.txt: 44829) -.softpedia-static.com/images/aff/ -# ||softpedia-static.com/images/*.png?v (easylistchina+easylist.txt: 44828) -.softpedia-static.com/images/.*\.png\?v -# ||softpedia-static.com/images/*.jpg?v (easylistchina+easylist.txt: 44827) -.softpedia-static.com/images/.*\.jpg\?v -# ||softonic.com/specials_leaderboard/ (easylistchina+easylist.txt: 44826) -.softonic.com/specials_leaderboard/ -# ||softcab.com/google.php? (easylistchina+easylist.txt: 44825) -.softcab.com/google\.php\? -# ||socsa.org.za/images/banners/ (easylistchina+easylist.txt: 44824) -.socsa.org.za/images/banners/ -# ||sockshare.com^*_728.php (easylistchina+easylist.txt: 44823) -.sockshare.com/.*_728\.php -# ||sockshare.com^*.php?*title$subdocument (easylistchina+easylist.txt: 44822) -.sockshare.com/.*\.php\?.*title -# ||sockshare.com/rev/ (easylistchina+easylist.txt: 44821) -.sockshare.com/rev/ -# ||sockshare.com/moo.php (easylistchina+easylist.txt: 44820) -.sockshare.com/moo\.php -# ||sockshare.com/*.php?embed*type=$subdocument (easylistchina+easylist.txt: 44819) -.sockshare.com/.*\.php\?embed.*type= -# ||socialstreamingplayer.crystalmedianetworks.com//async/banner/ (easylistchina+easylist.txt: 44818) -# ||soccerway.com/img/betting/ (easylistchina+easylist.txt: 44817) -.soccerway.com/img/betting/ -# ||soccerway.com/buttons/120x90_ (easylistchina+easylist.txt: 44816) -.soccerway.com/buttons/120x90_ -# ||soccervista.com/sporting.gif (easylistchina+easylist.txt: 44815) -.soccervista.com/sporting\.gif -# ||soccervista.com/bonus.html (easylistchina+easylist.txt: 44814) -.soccervista.com/bonus\.html -# ||soccervista.com/bahforgif.gif (easylistchina+easylist.txt: 44813) -.soccervista.com/bahforgif\.gif -# ||soccerlens.com/files1/ (easylistchina+easylist.txt: 44812) -.soccerlens.com/files1/ -# ||snopes.com^*/tribalbox.asp (easylistchina+easylist.txt: 44811) -.snopes.com/.*/tribalbox\.asp -# ||snopes.com^*/casalesky.asp (easylistchina+easylist.txt: 44810) -.snopes.com/.*/casalesky\.asp -# ||snopes.com^*/casalebox.asp (easylistchina+easylist.txt: 44809) -.snopes.com/.*/casalebox\.asp -# ||snopes.com^*/casalebanner.asp (easylistchina+easylist.txt: 44808) -.snopes.com/.*/casalebanner\.asp -# ||snopes.com/common/include/$subdocument (easylistchina+easylist.txt: 44807) -.snopes.com/common/include/ -# ||snimg.com/image/sponsors/ (easylistchina+easylist.txt: 44806) -.snimg.com/image/sponsors/ -# ||smwcentral.net/html/$image (easylistchina+easylist.txt: 44805) -.smwcentral.net/html/ -# ||smotrisport.com/ads/ (easylistchina+easylist.txt: 44804) -.smotrisport.com/ads/ -# ||smoothjazznetwork.com/images/buyicon.jpg (easylistchina+easylist.txt: 44803) -.smoothjazznetwork.com/images/buyicon\.jpg -# ||smn-news.com/images/flash/ (easylistchina+easylist.txt: 44802) -.smn-news.com/images/flash/ -# ||smn-news.com/images/banners/ (easylistchina+easylist.txt: 44801) -.smn-news.com/images/banners/ -# ||smile904.fm/images/banners/ (easylistchina+easylist.txt: 44800) -.smile904.fm/images/banners/ -# ||smh.com.au/images/promo/ (easylistchina+easylist.txt: 44799) -.smh.com.au/images/promo/ -# ||smh.com.au/compareandsave/ (easylistchina+easylist.txt: 44798) -.smh.com.au/compareandsave/ -# ||smashingapps.com/banner/ (easylistchina+easylist.txt: 44797) -.smashingapps.com/banner/ -# ||smartname.com/scripts/google_afd_v2.js (easylistchina+easylist.txt: 44796) -.smartname.com/scripts/google_afd_v2\.js -# ||smartmoney.net^*-sponsor- (easylistchina+easylist.txt: 44795) -.smartmoney.net/.*-sponsor- -# ||smartearningsecrets.com^*/FameThemes.png (easylistchina+easylist.txt: 44794) -.smartearningsecrets.com/.*/FameThemes\.png -# ||smartcompany.com.au/images/stories/sponsored-posts/ (easylistchina+easylist.txt: 44793) -.smartcompany.com.au/images/stories/sponsored-posts/ -# ||slyck.com/pics/*304x83_ (easylistchina+easylist.txt: 44792) -.slyck.com/pics/.*304x83_ -# ||slickvid.com/js/fun2.js (easylistchina+easylist.txt: 44791) -.slickvid.com/js/fun2\.js -# ||slickvid.com/js/fun.js (easylistchina+easylist.txt: 44790) -.slickvid.com/js/fun\.js -# ||slayradio.org/images/c64audio.com.gif (easylistchina+easylist.txt: 44789) -.slayradio.org/images/c64audio\.com\.gif -# ||slashgear.com/static/banners/ (easylistchina+easylist.txt: 44788) -.slashgear.com/static/banners/ -# ||slader.com/amazon-modal/ (easylistchina+easylist.txt: 44787) -.slader.com/amazon-modal/ -# ||slacker.com^*/getspot/?spotid= (easylistchina+easylist.txt: 44786) -.slacker.com/.*/getspot/\?spotid= -# ||slacker.com^*/ads.js (easylistchina+easylist.txt: 44785) -.slacker.com/.*/ads\.js -# ||slacker.com^*/adnetworks.swf (easylistchina+easylist.txt: 44784) -.slacker.com/.*/adnetworks\.swf -# ||slacker.com/wsv1/getspot/?$object-subrequest (easylistchina+easylist.txt: 44783) -.slacker.com/wsv1/getspot/\? -# ||skyvalleychronicle.com/999/images/ban (easylistchina+easylist.txt: 44782) -.skyvalleychronicle.com/999/images/ban -# ||skysports.com/images/skybet.png (easylistchina+easylist.txt: 44781) -.skysports.com/images/skybet\.png -# ||skynews.com.au/elements/img/sponsor/ (easylistchina+easylist.txt: 44780) -.skynews.com.au/elements/img/sponsor/ -# ||skilouise.com/images/sponsors/ (easylistchina+easylist.txt: 44779) -.skilouise.com/images/sponsors/ -# ||sk-gaming.com/www/skdelivery/ (easylistchina+easylist.txt: 44778) -.sk-gaming.com/www/skdelivery/ -# ||sk-gaming.com/image/takeover_ (easylistchina+easylist.txt: 44777) -.sk-gaming.com/image/takeover_ -# ||sk-gaming.com/image/pts/ (easylistchina+easylist.txt: 44776) -.sk-gaming.com/image/pts/ -# ||sk-gaming.com/image/acersocialw.gif (easylistchina+easylist.txt: 44775) -.sk-gaming.com/image/acersocialw\.gif -# ||siteslike.com/js/fpa.js (easylistchina+easylist.txt: 44774) -.siteslike.com/js/fpa\.js -# ||siteslike.com/images/celeb (easylistchina+easylist.txt: 44773) -.siteslike.com/images/celeb -# ||sitesfrog.com/images/banner/ (easylistchina+easylist.txt: 44772) -.sitesfrog.com/images/banner/ -# ||sitedata.info/doctor/ (easylistchina+easylist.txt: 44771) -.sitedata.info/doctor/ -# ||sisters-magazine.com^*/Banners/ (easylistchina+easylist.txt: 44770) -.sisters-magazine.com/.*/Banners/ -# ||silverdoctors.com^*/Silver-Shield-2015.jpg (easylistchina+easylist.txt: 44769) -.silverdoctors.com/.*/Silver-Shield-2015\.jpg -# ||siliconrepublic.com/fs/img/partners/ (easylistchina+easylist.txt: 44768) -.siliconrepublic.com/fs/img/partners/ -# ||sigalert.com/getunit.asp?$subdocument (easylistchina+easylist.txt: 44767) -.sigalert.com/getunit\.asp\? -# ||sify.com^*/gads_ (easylistchina+easylist.txt: 44766) -.sify.com/.*/gads_ -# ||sify.com/images/games/gadvt/ (easylistchina+easylist.txt: 44765) -.sify.com/images/games/gadvt/ -# ||sickipedia.org/static/images/banners/ (easylistchina+easylist.txt: 44764) -.sickipedia.org/static/images/banners/ -# ||sicilianelmondo.com/banner/ (easylistchina+easylist.txt: 44763) -.sicilianelmondo.com/banner/ -# ||siberiantimes.com/upload/banners/ (easylistchina+easylist.txt: 44762) -.siberiantimes.com/upload/banners/ -# ||shtfplan.com/images/banners/ (easylistchina+easylist.txt: 44761) -.shtfplan.com/images/banners/ -# ||shroomery.org/images/www.shroomery.org.please.png (easylistchina+easylist.txt: 44760) -.shroomery.org/images/www\.shroomery\.org\.please\.png -# ||shroomery.org/images/shroomery.please.png (easylistchina+easylist.txt: 44759) -.shroomery.org/images/shroomery\.please\.png -# ||shroomery.org/bnr/ (easylistchina+easylist.txt: 44758) -.shroomery.org/bnr/ -# ||shroomery.org/bimg/ (easylistchina+easylist.txt: 44757) -.shroomery.org/bimg/ -# ||showstreet.com/banner. (easylistchina+easylist.txt: 44756) -.showstreet.com/banner\. -# ||showsport-tv.com/images/xtreamfile.jpg (easylistchina+easylist.txt: 44755) -.showsport-tv.com/images/xtreamfile\.jpg -# ||showbusinessweekly.com/imgs/hed/ (easylistchina+easylist.txt: 44754) -.showbusinessweekly.com/imgs/hed/ -# ||show-links.tv/layer.php (easylistchina+easylist.txt: 44753) -.show-links.tv/layer\.php -# ||shoutmeloud.com^*/hostgator- (easylistchina+easylist.txt: 44752) -.shoutmeloud.com/.*/hostgator- -# ||shortlist.com^*-takeover. (easylistchina+easylist.txt: 44751) -.shortlist.com/.*-takeover\. -# ||shortlist.com/resource/cache/*skin (easylistchina+easylist.txt: 44750) -.shortlist.com/resource/cache/.*skin -# ||shortcuts.search.yahoo.com^*&callback=yahoo.shortcuts.utils.setdittoadcontents& (easylistchina+easylist.txt: 44749) -.shortcuts.search.yahoo.com/.*&callback=yahoo\.shortcuts\.utils\.setdittoadcontents& -# ||shopwiki.com/banner_iframe/ (easylistchina+easylist.txt: 44748) -.shopwiki.com/banner_iframe/ -# ||shops.tgdaily.com^*&widget= (easylistchina+easylist.txt: 44747) -.shops.tgdaily.com/.*&widget= -# ||shoppingpartners2.futurenet.com^ (easylistchina+easylist.txt: 44746) -.shoppingpartners2.futurenet.com -# ||shopping.stylelist.com/widget? (easylistchina+easylist.txt: 44745) -.shopping.stylelist.com/widget\? -# ||shop.sportsmole.co.uk/pages/deeplink/ (easylistchina+easylist.txt: 44744) -.shop.sportsmole.co.uk/pages/deeplink/ -# ||shop.com/cc.class/dfp? (easylistchina+easylist.txt: 44743) -.shop.com/cc\.class/dfp\? -# ||shodanhq.com/images/s/acehackware-obscured.jpg (easylistchina+easylist.txt: 44742) -.shodanhq.com/images/s/acehackware-obscured\.jpg -# ||sherdog.com/index/load-banner? (easylistchina+easylist.txt: 44741) -.sherdog.com/index/load-banner\? -# ||shazam.com^*/stores/ (easylistchina+easylist.txt: 44740) -.shazam.com/.*/stores/ -# ||sharkscope.com/images/verts/$image (easylistchina+easylist.txt: 44739) -.sharkscope.com/images/verts/ -# ||sharetera.com/promo.php? (easylistchina+easylist.txt: 44738) -.sharetera.com/promo\.php\? -# ||sharetera.com/images/icon_download.png (easylistchina+easylist.txt: 44737) -.sharetera.com/images/icon_download\.png -# ||sharesix.com/a/images/watch-bnr.gif (easylistchina+easylist.txt: 44736) -.sharesix.com/a/images/watch-bnr\.gif -# ||sharephile.com/js/pw.js (easylistchina+easylist.txt: 44735) -.sharephile.com/js/pw\.js -# ||sharebeast.com/topbar.js (easylistchina+easylist.txt: 44734) -.sharebeast.com/topbar\.js -# ||share-links.biz^*/hs.gif (easylistchina+easylist.txt: 44733) -.share-links.biz/.*/hs\.gif -# ||share-links.biz^*/hisp.gif (easylistchina+easylist.txt: 44732) -.share-links.biz/.*/hisp\.gif -# ||share-links.biz/get/cmm/ (easylistchina+easylist.txt: 44731) -.share-links.biz/get/cmm/ -# ||shanghaiexpat.com^*/wallpaper_ (easylistchina+easylist.txt: 44730) -.shanghaiexpat.com/.*/wallpaper_ -# ||shanghaidaily.com/include/bettertraffic.asp (easylistchina+easylist.txt: 44729) -.shanghaidaily.com/include/bettertraffic\.asp -# ||shadowpool.info/images/banner- (easylistchina+easylist.txt: 44728) -.shadowpool.info/images/banner- -# ||sfx.ms/AppInsights-$script (easylistchina+easylist.txt: 44727) -.sfx.ms/AppInsights- -# ||sfltimes.com/images/banners/ (easylistchina+easylist.txt: 44726) -.sfltimes.com/images/banners/ -# ||sfbaytimes.com/img-cont/banners (easylistchina+easylist.txt: 44725) -.sfbaytimes.com/img-cont/banners -# ||sexmummy.com/avnadsbanner. (easylistchina+easylist.txt: 44724) -.sexmummy.com/avnadsbanner\. -# ||sermonaudio.com/images/sponsors/ (easylistchina+easylist.txt: 44723) -.sermonaudio.com/images/sponsors/ -# ||serialzz.us/ad.js (easylistchina+easylist.txt: 44722) -.serialzz.us/ad\.js -# ||serials.ws^*/logo.gif (easylistchina+easylist.txt: 44721) -.serials.ws/.*/logo\.gif -# ||serial.sw.cracks.me.uk/img/logo.gif (easylistchina+easylist.txt: 44720) -.serial.sw.cracks.me.uk/img/logo\.gif -# ||sensongs.com/nfls/ (easylistchina+easylist.txt: 44719) -.sensongs.com/nfls/ -# ||sendspace.com^*?zone= (easylistchina+easylist.txt: 44718) -.sendspace.com/.*\?zone= -# ||sendspace.com/images/shutter.png (easylistchina+easylist.txt: 44717) -.sendspace.com/images/shutter\.png -# ||sendspace.com/defaults/framer.html?z= (easylistchina+easylist.txt: 44716) -.sendspace.com/defaults/framer\.html\?z= -# ||segmentnext.com/javascripts/interstitial.client.js (easylistchina+easylist.txt: 44715) -.segmentnext.com/javascripts/interstitial\.client\.js -# ||seeingwithsound.com/noad.gif (easylistchina+easylist.txt: 44714) -.seeingwithsound.com/noad\.gif -# ||seedboxes.cc/images/seedad.jpg (easylistchina+easylist.txt: 44713) -.seedboxes.cc/images/seedad\.jpg -# ||sedoparking.com/registrar/dopark.js (easylistchina+easylist.txt: 44712) -.sedoparking.com/registrar/dopark\.js -# ||sedoparking.com/jspartner/ (easylistchina+easylist.txt: 44711) -.sedoparking.com/jspartner/ -# ||sedoparking.com/images/js_preloader.gif (easylistchina+easylist.txt: 44710) -.sedoparking.com/images/js_preloader\.gif -# ||securitywonks.net/promotions/ (easylistchina+easylist.txt: 44708) -.securitywonks.net/promotions/ -# ||securitymattersmag.com/scripts/popup.js (easylistchina+easylist.txt: 44707) -.securitymattersmag.com/scripts/popup\.js -# ||secureupload.eu/js/poad.js (easylistchina+easylist.txt: 44706) -.secureupload.eu/js/poad\.js -# ||secureupload.eu/gfx/freedl.png (easylistchina+easylist.txt: 44705) -.secureupload.eu/gfx/freedl\.png -# ||secureupload.eu/gfx/dlbtn.png (easylistchina+easylist.txt: 44704) -.secureupload.eu/gfx/dlbtn\.png -# ||sectools.org/shared/images/p/$image (easylistchina+easylist.txt: 44703) -.sectools.org/shared/images/p/ -# ||seclists.org/shared/images/p/$image (easylistchina+easylist.txt: 44702) -.seclists.org/shared/images/p/ -# ||sebar.thand.info^ (easylistchina+easylist.txt: 44701) -.sebar.thand.info -# ||seatguru.com/deals? (easylistchina+easylist.txt: 44700) -.seatguru.com/deals\? -# ||searchtempest.com/clhimages/aocbanner.jpg (easylistchina+easylist.txt: 44699) -.searchtempest.com/clhimages/aocbanner\.jpg -# ||searchignited.com^ (easylistchina+easylist.txt: 44698) -.searchignited.com -# ||searchenginejournal.com^*/sponsored- (easylistchina+easylist.txt: 44697) -.searchenginejournal.com/.*/sponsored- -# ||searchenginejournal.com^*/sej-bg-takeover/ (easylistchina+easylist.txt: 44696) -.searchenginejournal.com/.*/sej-bg-takeover/ -# ||searchenginejournal.com^*-takeover- (easylistchina+easylist.txt: 44695) -.searchenginejournal.com/.*-takeover- -# ||search.triadcars.news-record.com/autos/widgets/featuredautos.php (easylistchina+easylist.txt: 44694) -.search.triadcars.news-record.com/autos/widgets/featuredautos\.php -# ||search.triadcareers.news-record.com/jobs/search/results?*&isfeatured=y& (easylistchina+easylist.txt: 44693) -.search.triadcareers.news-record.com/jobs/search/results\?.*&isfeatured=y& -# ||search.ch/htmlbanner.html (easylistchina+easylist.txt: 44692) -.search.ch/htmlbanner\.html -# ||search.ch/acs/ (easylistchina+easylist.txt: 44691) -.search.ch/acs/ -# ||search-torrent.com/images/videox/ (easylistchina+easylist.txt: 44690) -.search-torrent.com/images/videox/ -# ||sdancelive.com/images/banners/ (easylistchina+easylist.txt: 44689) -.sdancelive.com/images/banners/ -# ||scriptmafia.org/banner.gif (easylistchina+easylist.txt: 44688) -.scriptmafia.org/banner\.gif -# ||scriptcopy.com/tpl/phplb/search.jpg (easylistchina+easylist.txt: 44687) -.scriptcopy.com/tpl/phplb/search\.jpg -# ||scribol.com/broadspring.js (easylistchina+easylist.txt: 44686) -.scribol.com/broadspring\.js -# ||screenlist.ru/porevo.js (easylistchina+easylist.txt: 44685) -.screenlist.ru/porevo\.js -# ||screenlist.ru/dodopo.js (easylistchina+easylist.txt: 44684) -.screenlist.ru/dodopo\.js -# ||screencrave.com/show/ (easylistchina+easylist.txt: 44683) -.screencrave.com/show/ -# ||screenafrica.com/jquery.jcarousel.min.js (easylistchina+easylist.txt: 44682) -.screenafrica.com/jquery\.jcarousel\.min\.js -# ||screen4u.net/templates/banner.html (easylistchina+easylist.txt: 44681) -.screen4u.net/templates/banner\.html -# ||scoot.co.uk/delivery.php (easylistchina+easylist.txt: 44680) -.scoot.co.uk/delivery\.php -# ||scoop.co.nz/xl?c$subdocument (easylistchina+easylist.txt: 44679) -.scoop.co.nz/xl\?c -# ||scmagazine.com.au/Utils/SkinCSS.ashx?skinID= (easylistchina+easylist.txt: 44678) -.scmagazine.com.au/Utils/SkinCSS\.ashx\?skinID= -# ||scientopia.org/public_html/clr_lympholyte_banner.gif (easylistchina+easylist.txt: 44677) -.scientopia.org/public_html/clr_lympholyte_banner\.gif -# ||sceper.eu/wp-content/banners.min.js (easylistchina+easylist.txt: 44675) -.sceper.eu/wp-content/banners\.min\.js -# ||scenicreflections.com/dhtmlpopup/ (easylistchina+easylist.txt: 44674) -.scenicreflections.com/dhtmlpopup/ -# ||sbnation.com/campaigns_images/ (easylistchina+easylist.txt: 44673) -.sbnation.com/campaigns_images/ -# ||saysuncle.com^*ad.jpg (easylistchina+easylist.txt: 44672) -.saysuncle.com/.*ad\.jpg -# ||sayellow.com/Clients/Banners/ (easylistchina+easylist.txt: 44671) -.sayellow.com/Clients/Banners/ -# ||sawlive.tv/ad (easylistchina+easylist.txt: 44670) -.sawlive.tv/ad -# ||saveondish.com/banner3.jpg (easylistchina+easylist.txt: 44669) -.saveondish.com/banner3\.jpg -# ||saveondish.com/banner2.jpg (easylistchina+easylist.txt: 44668) -.saveondish.com/banner2\.jpg -# ||savefrom.net/img/a1d/ (easylistchina+easylist.txt: 44667) -.savefrom.net/img/a1d/ -# ||satopsites.com^*/banners/ (easylistchina+easylist.txt: 44666) -.satopsites.com/.*/banners/ -# ||satnews.com/images/MSMPromoSubSky.jpg (easylistchina+easylist.txt: 44665) -.satnews.com/images/MSMPromoSubSky\.jpg -# ||satnews.com/images/MITEQ_sky.jpg (easylistchina+easylist.txt: 44664) -.satnews.com/images/MITEQ_sky\.jpg -# ||satellites.co.uk/images/sponsors/ (easylistchina+easylist.txt: 44663) -.satellites.co.uk/images/sponsors/ -# ||satelliteguys.us/pulsepoint_ (easylistchina+easylist.txt: 44662) -.satelliteguys.us/pulsepoint_ -# ||satelliteguys.us/burst_ (easylistchina+easylist.txt: 44661) -.satelliteguys.us/burst_ -# ||sat24.com/bannerdetails.aspx? (easylistchina+easylist.txt: 44660) -.sat24.com/bannerdetails\.aspx\? -# ||sarugbymag.co.za^*-wallpaper2. (easylistchina+easylist.txt: 44659) -.sarugbymag.co.za/.*-wallpaper2\. -# ||sarasotatalkradio.com^*-200x200.jpg (easylistchina+easylist.txt: 44658) -.sarasotatalkradio.com/.*-200x200\.jpg -# ||sapeople.com/wp-content/uploads/wp-banners/ (easylistchina+easylist.txt: 44657) -.sapeople.com/wp-content/uploads/wp-banners/ -# ||samsung.com/ph/nextisnow/files/javascript.js (easylistchina+easylist.txt: 44656) -.samsung.com/ph/nextisnow/files/javascript\.js -# ||samoatimes.co.nz^*/banner468x60/ (easylistchina+easylist.txt: 44655) -.samoatimes.co.nz/.*/banner468x60/ -# ||samoaobserver.ws^*/banner/ (easylistchina+easylist.txt: 44654) -.samoaobserver.ws/.*/banner/ -# ||sameip.org/images/froghost.gif (easylistchina+easylist.txt: 44653) -.sameip.org/images/froghost\.gif -# ||salfordonline.com/sponsors2/ (easylistchina+easylist.txt: 44652) -.salfordonline.com/sponsors2/ -# ||salfordonline.com/sponsors/ (easylistchina+easylist.txt: 44651) -.salfordonline.com/sponsors/ -# ||sail-world.com/rotate/ (easylistchina+easylist.txt: 44650) -.sail-world.com/rotate/ -# ||sagoodnews.co.za/templates/ubuntu-deals/ (easylistchina+easylist.txt: 44649) -.sagoodnews.co.za/templates/ubuntu-deals/ -# ||safelinks.eu/open.js (easylistchina+easylist.txt: 44648) -.safelinks.eu/open\.js -# ||saf.org/wp-content/uploads/*/women_guns192x50.png (easylistchina+easylist.txt: 44647) -.saf.org/wp-content/uploads/.*/women_guns192x50\.png -# ||saf.org/wp-content/uploads/*/theGunMagbanner.png (easylistchina+easylist.txt: 44646) -.saf.org/wp-content/uploads/.*/theGunMagbanner\.png -# ||sacommercialpropnews.co.za/files/banners/ (easylistchina+easylist.txt: 44645) -.sacommercialpropnews.co.za/files/banners/ -# ||sacbee.com/static/dealsaver/ (easylistchina+easylist.txt: 44644) -.sacbee.com/static/dealsaver/ -# ||saabsunited.com/wp-content/uploads/werbung- (easylistchina+easylist.txt: 44643) -.saabsunited.com/wp-content/uploads/werbung- -# ||saabsunited.com/wp-content/uploads/USACANADA.jpg (easylistchina+easylist.txt: 44642) -.saabsunited.com/wp-content/uploads/USACANADA\.jpg -# ||saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC.gif (easylistchina+easylist.txt: 44641) -.saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC\.gif -# ||saabsunited.com/wp-content/uploads/rbm21.jpg (easylistchina+easylist.txt: 44640) -.saabsunited.com/wp-content/uploads/rbm21\.jpg -# ||saabsunited.com/wp-content/uploads/ban- (easylistchina+easylist.txt: 44639) -.saabsunited.com/wp-content/uploads/ban- -# ||saabsunited.com/wp-content/uploads/180x460_ (easylistchina+easylist.txt: 44638) -.saabsunited.com/wp-content/uploads/180x460_ -# ||saabsunited.com/wp-content/uploads/*_banner_ (easylistchina+easylist.txt: 44637) -.saabsunited.com/wp-content/uploads/.*_banner_ -# ||saabsunited.com/wp-content/uploads/*-banner. (easylistchina+easylist.txt: 44636) -.saabsunited.com/wp-content/uploads/.*-banner\. -# ||saabsunited.com/wp-content/uploads/*-banner- (easylistchina+easylist.txt: 44635) -.saabsunited.com/wp-content/uploads/.*-banner- -# ||s.yimg.com^*/audience/ (easylistchina+easylist.txt: 44634) -.s.yimg.com/.*/audience/ -# ||s.imwx.com^*/wx-a21-plugthis.js (easylistchina+easylist.txt: 44633) -.s.imwx.com/.*/wx-a21-plugthis\.js -# ||rustourismnews.com/images/banners/ (easylistchina+easylist.txt: 44632) -.rustourismnews.com/images/banners/ -# ||russianireland.com/images/banners/ (easylistchina+easylist.txt: 44631) -.russianireland.com/images/banners/ -# ||runt-of-the-web.com/wrap1.jpg (easylistchina+easylist.txt: 44630) -.runt-of-the-web.com/wrap1\.jpg -# ||rugbyweek.com^*/sponsors/ (easylistchina+easylist.txt: 44629) -.rugbyweek.com/.*/sponsors/ -# ||rtcc.org/systems/sponsors/ (easylistchina+easylist.txt: 44627) -.rtcc.org/systems/sponsors/ -# ||rt.com/static/img/banners/ (easylistchina+easylist.txt: 44626) -.rt.com/static/img/banners/ -# ||rt.com/banner/ (easylistchina+easylist.txt: 44625) -.rt.com/banner/ -# ||rss2search.com/delivery/ (easylistchina+easylist.txt: 44624) -.rss2search.com/delivery/ -# ||rsbuddy.com/campaign/ (easylistchina+easylist.txt: 44623) -.rsbuddy.com/campaign/ -# ||rpt.anchorfree.net^ (easylistchina+easylist.txt: 44622) -.rpt.anchorfree.net -# ||rpgwatch.com^*/banner/ (easylistchina+easylist.txt: 44621) -.rpgwatch.com/.*/banner/ -# ||routesonline.com/banner/ (easylistchina+easylist.txt: 44620) -.routesonline.com/banner/ -# ||routes-news.com/images/banners/ (easylistchina+easylist.txt: 44619) -.routes-news.com/images/banners/ -# ||routerpasswords.com/routers.jpg (easylistchina+easylist.txt: 44618) -.routerpasswords.com/routers\.jpg -# ||rough-polished.com/upload/bx/ (easylistchina+easylist.txt: 44617) -.rough-polished.com/upload/bx/ -# ||rotoworld.com^*&sponsor=$subdocument (easylistchina+easylist.txt: 44616) -.rotoworld.com/.*&sponsor= -# ||roseindia.net^*/banners/ (easylistchina+easylist.txt: 44615) -.roseindia.net/.*/banners/ -# ||rootsweb.com/js/o*.js (easylistchina+easylist.txt: 44614) -.rootsweb.com/js/o.*\.js -# ||romhustler.net/square.js (easylistchina+easylist.txt: 44613) -.romhustler.net/square\.js -# ||rom-freaks.net/popup.php (easylistchina+easylist.txt: 44612) -.rom-freaks.net/popup\.php -# ||rollingstone.co.za/images/banners/ (easylistchina+easylist.txt: 44611) -.rollingstone.co.za/images/banners/ -# ||rok.com.com/rok-get? (easylistchina+easylist.txt: 44610) -.rok.com.com/rok-get\? -# ||rojadirecta.ge^*/pu.js (easylistchina+easylist.txt: 44609) -.rojadirecta.ge/.*/pu\.js -# ||roia.com^ (easylistchina+easylist.txt: 44608) -.roia.com -# ||rodfile.com/images/esr.gif (easylistchina+easylist.txt: 44607) -.rodfile.com/images/esr\.gif -# ||rocvideo.tv/pu/$subdocument (easylistchina+easylist.txt: 44606) -.rocvideo.tv/pu/ -# ||rockthebells.net/images/bot_banner_ (easylistchina+easylist.txt: 44605) -.rockthebells.net/images/bot_banner_ -# ||rockthebells.net/images/banners/ (easylistchina+easylist.txt: 44604) -.rockthebells.net/images/banners/ -# ||rocktelevision.com^*_banner_ (easylistchina+easylist.txt: 44603) -.rocktelevision.com/.*_banner_ -# ||rocksound.tv/images/uploads/*-rocksound-1920x1000_ (easylistchina+easylist.txt: 44602) -.rocksound.tv/images/uploads/.*-rocksound-1920x1000_ -# ||rockettheme.com/aff/ (easylistchina+easylist.txt: 44601) -.rockettheme.com/aff/ -# ||robhasawebsite.com^*/shop-amazon. (easylistchina+easylist.txt: 44600) -.robhasawebsite.com/.*/shop-amazon\. -# ||robhasawebsite.com^*/amazon- (easylistchina+easylist.txt: 44599) -.robhasawebsite.com/.*/amazon- -# ||rlsbb.com/wp-content/uploads/smoke.jpg (easylistchina+easylist.txt: 44598) -.rlsbb.com/wp-content/uploads/smoke\.jpg -# ||rlsbb.com/wp-content/uploads/izilol.gif (easylistchina+easylist.txt: 44597) -.rlsbb.com/wp-content/uploads/izilol\.gif -# ||rislivetv.com/ad*.php (easylistchina+easylist.txt: 44596) -.rislivetv.com/ad.*\.php -# ||ringostrack.com^*/amazon-buy.gif (easylistchina+easylist.txt: 44595) -.ringostrack.com/.*/amazon-buy\.gif -# ||rightsidenews.com/images/banners/ (easylistchina+easylist.txt: 44594) -.rightsidenews.com/images/banners/ -# ||riderfans.com/other/ (easylistchina+easylist.txt: 44593) -.riderfans.com/other/ -# ||richmedia.yimg.com^ (easylistchina+easylist.txt: 44592) -.richmedia.yimg.com -# ||richardroeper.com/assets/banner/ (easylistchina+easylist.txt: 44591) -.richardroeper.com/assets/banner/ -# ||rghost.ru/download/a/*/banner_download_ (easylistchina+easylist.txt: 44590) -.rghost.ru/download/a/.*/banner_download_ -# ||rfu.com/js/jquery.jcarousel.js (easylistchina+easylist.txt: 44589) -.rfu.com/js/jquery\.jcarousel\.js -# ||revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2.gif (easylistchina+easylist.txt: 44588) -.revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2\.gif -# ||reviewcentre.com/cinergy-adv.php (easylistchina+easylist.txt: 44587) -.reviewcentre.com/cinergy-adv\.php -# ||reuters.com/reuters_gpt_bootstrap*.js (easylistchina+easylist.txt: 44586) -.reuters.com/reuters_gpt_bootstrap.*\.js -# ||reuters.com/reuters_bootstrap.js (easylistchina+easylist.txt: 44585) -.reuters.com/reuters_bootstrap\.js -# ||retrevo.com^*/pcwframe.jsp? (easylistchina+easylist.txt: 44584) -.retrevo.com/.*/pcwframe\.jsp\? -# ||retrevo.com/m/google?q= (easylistchina+easylist.txt: 44583) -.retrevo.com/m/google\?q= -# ||replacementdocs.com^*/popup.js (easylistchina+easylist.txt: 44582) -.replacementdocs.com/.*/popup\.js -# ||relink.us/js/ibunkerslide.js (easylistchina+easylist.txt: 44581) -.relink.us/js/ibunkerslide\.js -# ||releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40.jpg (easylistchina+easylist.txt: 44580) -.releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40\.jpg -# ||releaselog.net/468.htm (easylistchina+easylist.txt: 44579) -.releaselog.net/468\.htm -# ||rejournal.com^*/images/homepage/ (easylistchina+easylist.txt: 44578) -.rejournal.com/.*/images/homepage/ -# ||rejournal.com/users/blinks/ (easylistchina+easylist.txt: 44577) -.rejournal.com/users/blinks/ -# ||rejournal.com/images/banners/ (easylistchina+easylist.txt: 44576) -.rejournal.com/images/banners/ -# ||regnow.img.digitalriver.com/vendor/37587/ud_box$third-party (easylistchina+easylist.txt: 44575) -.regnow.img.digitalriver.com/vendor/37587/ud_box -# ||regmender.com^*/banner336x280. (easylistchina+easylist.txt: 44574) -.regmender.com/.*/banner336x280\. -# ||reelzchannel.com^*-skin- (easylistchina+easylist.txt: 44573) -.reelzchannel.com/.*-skin- -# ||redvase.bravenet.com^ (easylistchina+easylist.txt: 44572) -.redvase.bravenet.com -# ||redpepper.org.uk/ad- (easylistchina+easylist.txt: 44571) -.redpepper.org.uk/ad- -# ||rednationonline.ca/Portals/0/derbystar_leaderboard.jpg (easylistchina+easylist.txt: 44570) -.rednationonline.ca/Portals/0/derbystar_leaderboard\.jpg -# ||rediff.com/worldrediff/pix/$subdocument (easylistchina+easylist.txt: 44569) -.rediff.com/worldrediff/pix/ -# ||reddit.com^*_sponsor.png? (easylistchina+easylist.txt: 44568) -.reddit.com/.*_sponsor\.png\? -# ||red.bayimg.net^ (easylistchina+easylist.txt: 44567) -.red.bayimg.net -# ||reason.org/UserFiles/web-fin1.gif (easylistchina+easylist.txt: 44566) -.reason.org/UserFiles/web-fin1\.gif -# ||realitytvworld.com/includes/rtvw-jscript.js (easylistchina+easylist.txt: 44565) -.realitytvworld.com/includes/rtvw-jscript\.js -# ||realitytvworld.com/burst.js (easylistchina+easylist.txt: 44564) -.realitytvworld.com/burst\.js -# ||readingeagle.com/lib/dailysponser.js (easylistchina+easylist.txt: 44563) -.readingeagle.com/lib/dailysponser\.js -# ||rc.feedsportal.com/r/*/rc.img (easylistchina+easylist.txt: 44562) -.rc.feedsportal.com/r/.*/rc\.img -# ||raysindex.com/wp-content/uploads/*/dolmansept2012flash.swf (easylistchina+easylist.txt: 44561) -.raysindex.com/wp-content/uploads/.*/dolmansept2012flash\.swf -# ||rawstory.com^*/ads/ (easylistchina+easylist.txt: 44560) -.rawstory.com/.*/ads/ -# ||rawstory.com^*.php?code=bottom (easylistchina+easylist.txt: 44559) -.rawstory.com/.*\.php\?code=bottom -# ||rawstory.com/givememyrawjuggler.php (easylistchina+easylist.txt: 44558) -.rawstory.com/givememyrawjuggler\.php -# ||rawstory.com/givememyrawgfpdirect.php? (easylistchina+easylist.txt: 44557) -.rawstory.com/givememyrawgfpdirect\.php\? -# ||rawstory.com/givememyrawgfp.php? (easylistchina+easylist.txt: 44556) -.rawstory.com/givememyrawgfp\.php\? -# ||ravchat.com/img/reversephone.gif (easylistchina+easylist.txt: 44555) -.ravchat.com/img/reversephone\.gif -# ||ratio-magazine.com/images/banners/ (easylistchina+easylist.txt: 44554) -.ratio-magazine.com/images/banners/ -# ||rapidvideo.tv/images/pl.jpg (easylistchina+easylist.txt: 44553) -.rapidvideo.tv/images/pl\.jpg -# ||rapidvideo.org/images/pl_box_rapid.jpg (easylistchina+easylist.txt: 44552) -.rapidvideo.org/images/pl_box_rapid\.jpg -# ||rapidtvnews.com^*BannerAd. (easylistchina+easylist.txt: 44551) -.rapidtvnews.com/.*BannerAd\. -# ||rapidshare.com/promo/$image (easylistchina+easylist.txt: 44550) -.rapidshare.com/promo/ -# ||rapidsafe.de/eislogo.gif (easylistchina+easylist.txt: 44549) -.rapidsafe.de/eislogo\.gif -# ||rapidlibrary.com/banner_*.png (easylistchina+easylist.txt: 44548) -.rapidlibrary.com/banner_.*\.png -# ||rapidlibrary.com/baner*.png (easylistchina+easylist.txt: 44547) -.rapidlibrary.com/baner.*\.png -# ||rapidgator.net/images/pics/button.png (easylistchina+easylist.txt: 44546) -.rapidgator.net/images/pics/button\.png -# ||rapidgator.net/images/banners/ (easylistchina+easylist.txt: 44545) -.rapidgator.net/images/banners/ -# ||rapidgamez.com/images/ (easylistchina+easylist.txt: 44544) -.rapidgamez.com/images/ -# ||rapidfiledownload.com^*/btn-input-download.png (easylistchina+easylist.txt: 44543) -.rapidfiledownload.com/.*/btn-input-download\.png -# ||rainbowpages.lk/images/banners/ (easylistchina+easylist.txt: 44542) -.rainbowpages.lk/images/banners/ -# ||ragezone.com/output.php/ (easylistchina+easylist.txt: 44541) -.ragezone.com/output\.php/ -# ||ragezone.com/index.php/$subdocument (easylistchina+easylist.txt: 44540) -.ragezone.com/index\.php/ -# ||radiozindagi.com/sponsors/ (easylistchina+easylist.txt: 44539) -.radiozindagi.com/sponsors/ -# ||radiowavesforum.com/rw/radioapp.gif (easylistchina+easylist.txt: 44538) -.radiowavesforum.com/rw/radioapp\.gif -# ||radiowave.com.na/images/banners/ (easylistchina+easylist.txt: 44537) -.radiowave.com.na/images/banners/ -# ||radiotoday.co.uk/a/ (easylistchina+easylist.txt: 44536) -.radiotoday.co.uk/a/ -# ||radioreference.com^*_banner_ (easylistchina+easylist.txt: 44535) -.radioreference.com/.*_banner_ -# ||radioreference.com/i/p4/tp/smPortalBanner.gif (easylistchina+easylist.txt: 44534) -.radioreference.com/i/p4/tp/smPortalBanner\.gif -# ||radioloyalty.com/newPlayer/loadbanner.html? (easylistchina+easylist.txt: 44533) -.radioloyalty.com/newPlayer/loadbanner\.html\? -# ||radioinfo.com^*/575x112- (easylistchina+easylist.txt: 44532) -.radioinfo.com/.*/575x112- -# ||radioinfo.com/270x270/ (easylistchina+easylist.txt: 44531) -.radioinfo.com/270x270/ -# ||radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg.swf (easylistchina+easylist.txt: 44530) -.radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg\.swf -# ||radioasiafm.com^*-300x250. (easylistchina+easylist.txt: 44529) -.radioasiafm.com/.*-300x250\. -# ||radio786.co.za/images/banners/ (easylistchina+easylist.txt: 44528) -.radio786.co.za/images/banners/ -# ||radio4fm.com/promotion/ (easylistchina+easylist.txt: 44527) -.radio4fm.com/promotion/ -# ||radio4fm.com/images/background/ (easylistchina+easylist.txt: 44526) -.radio4fm.com/images/background/ -# ||radio.com/rotatable? (easylistchina+easylist.txt: 44525) -.radio.com/rotatable\? -# ||radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr.swf? (easylistchina+easylist.txt: 44524) -.radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr\.swf\? -# ||rad.msn.com^ (easylistchina+easylist.txt: 44523) -.rad.msn.com -# ||rad.microsoft.com^ (easylistchina+easylist.txt: 44522) -.rad.microsoft.com -# ||racinguk.com/images/site/foot_ (easylistchina+easylist.txt: 44519) -.racinguk.com/images/site/foot_ -# ||racingpost.com^*_607x30.2.0.gif (easylistchina+easylist.txt: 44518) -.racingpost.com/.*_607x30\.2\.0\.gif -# ||racingpost.com/ads/ (easylistchina+easylist.txt: 44517) -.racingpost.com/ads/ -# ||race-dezert.com^*/sponsor- (easylistchina+easylist.txt: 44516) -.race-dezert.com/.*/sponsor- -# ||race-dezert.com/images/wrap- (easylistchina+easylist.txt: 44515) -.race-dezert.com/images/wrap- -# ||quoteland.com/images/banner2.swf (easylistchina+easylist.txt: 44514) -.quoteland.com/images/banner2\.swf -# ||quicksilverscreen.com/img/moviesforfree.jpg (easylistchina+easylist.txt: 44513) -.quicksilverscreen.com/img/moviesforfree\.jpg -# ||quickpwn.com^$subdocument (easylistchina+easylist.txt: 44512) -.quickpwn.com -# ||quickmeme.com/media/rostile (easylistchina+easylist.txt: 44511) -.quickmeme.com/media/rostile -# ||queenshare.com/popx.js (easylistchina+easylist.txt: 44510) -.queenshare.com/popx\.js -# ||qualityhealth.com^*/banner.jsp? (easylistchina+easylist.txt: 44509) -.qualityhealth.com/.*/banner\.jsp\? -# ||qrz.com/pix/*.gif (easylistchina+easylist.txt: 44508) -.qrz.com/pix/.*\.gif -# ||qiksilver.net^*/banners/ (easylistchina+easylist.txt: 44507) -.qiksilver.net/.*/banners/ -# ||qatar-tribune.com/images/banners/ (easylistchina+easylist.txt: 44506) -.qatar-tribune.com/images/banners/ -# ||q1075.com/images/banners/ (easylistchina+easylist.txt: 44505) -.q1075.com/images/banners/ -# ||pv-tech.org/images/suntech_m2fbblew.png (easylistchina+easylist.txt: 44504) -.pv-tech.org/images/suntech_m2fbblew\.png -# ||pv-tech.org/images/footer_logos/ (easylistchina+easylist.txt: 44503) -.pv-tech.org/images/footer_logos/ -# ||putlocker.mn^*/stream-hd.gif (easylistchina+easylist.txt: 44502) -.putlocker.mn/.*/stream-hd\.gif -# ||putlocker.mn^*/download.gif (easylistchina+easylist.txt: 44501) -.putlocker.mn/.*/download\.gif -# ||putlocker.is/images/banner (easylistchina+easylist.txt: 44500) -.putlocker.is/images/banner -# ||pushsquare.com/wp-content/themes/pushsquare/skins/ (easylistchina+easylist.txt: 44499) -.pushsquare.com/wp-content/themes/pushsquare/skins/ -# ||punksbusted.com^*/clanwarz-portal.jpg (easylistchina+easylist.txt: 44498) -.punksbusted.com/.*/clanwarz-portal\.jpg -# ||punksbusted.com/images/ventrilo/ (easylistchina+easylist.txt: 44497) -.punksbusted.com/images/ventrilo/ -# ||punchng.com^*/wp-banners/ (easylistchina+easylist.txt: 44496) -.punchng.com/.*/wp-banners/ -# ||punch.cdn.ng^*/wp-banners/ (easylistchina+easylist.txt: 44495) -.punch.cdn.ng/.*/wp-banners/ -# ||pumasrugbyunion.com/images/sponsors/ (easylistchina+easylist.txt: 44494) -.pumasrugbyunion.com/images/sponsors/ -# ||pulsetv.com/banner/ (easylistchina+easylist.txt: 44493) -.pulsetv.com/banner/ -# ||publicservice.co.uk^*/spons_ (easylistchina+easylist.txt: 44492) -.publicservice.co.uk/.*/spons_ -# ||publicradio.org^*/banners/ (easylistchina+easylist.txt: 44491) -.publicradio.org/.*/banners/ -# ||publicityupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 44490) -.publicityupdate.co.za/temp/banner_ -# ||publichd.eu/images/directdownload.png (easylistchina+easylist.txt: 44489) -.publichd.eu/images/directdownload\.png -# ||publichd.eu/images/direct.download.ico (easylistchina+easylist.txt: 44488) -.publichd.eu/images/direct\.download\.ico -# ||ptf.com/js/rc_banner.js (easylistchina+easylist.txt: 44487) -.ptf.com/js/rc_banner\.js -# ||ptf.com/js/ptf_rc_*.js (easylistchina+easylist.txt: 44486) -.ptf.com/js/ptf_rc_.*\.js -# ||ptf.com/js/fdm_banner.js (easylistchina+easylist.txt: 44485) -.ptf.com/js/fdm_banner\.js -# ||ptf.com/fdm_frame_ (easylistchina+easylist.txt: 44484) -.ptf.com/fdm_frame_ -# ||psgroove.com/images/*.jpg| (easylistchina+easylist.txt: 44483) -.psgroove.com/images/.*\.jpg$ -# ||ps3crunch.net/forum/images/gamers/ (easylistchina+easylist.txt: 44482) -.ps3crunch.net/forum/images/gamers/ -# ||proxycape.com/blah.js (easylistchina+easylist.txt: 44481) -.proxycape.com/blah\.js -# ||proxy.org/ah.html (easylistchina+easylist.txt: 44480) -.proxy.org/ah\.html -# ||proxy.org/af.html (easylistchina+easylist.txt: 44479) -.proxy.org/af\.html -# ||proxy-list.org/img/isellsite.gif (easylistchina+easylist.txt: 44478) -.proxy-list.org/img/isellsite\.gif -# ||propertyeu.info/peu_storage_banners/ (easylistchina+easylist.txt: 44477) -.propertyeu.info/peu_storage_banners/ -# ||propakistani.pk/wp-content/themes/propakistani/images/776.jpg (easylistchina+easylist.txt: 44476) -.propakistani.pk/wp-content/themes/propakistani/images/776\.jpg -# ||propakistani.pk/wp-content/*/warid.jpg (easylistchina+easylist.txt: 44475) -.propakistani.pk/wp-content/.*/warid\.jpg -# ||propakistani.pk/data/zong.html (easylistchina+easylist.txt: 44474) -.propakistani.pk/data/zong\.html -# ||propakistani.pk/data/warid_top1.html (easylistchina+easylist.txt: 44473) -.propakistani.pk/data/warid_top1\.html -# ||promo.fileforum.com^ (easylistchina+easylist.txt: 44472) -.promo.fileforum.com -# ||projectorcentral.com/bblaster.cfm?$image (easylistchina+easylist.txt: 44471) -.projectorcentral.com/bblaster\.cfm\? -# ||projectfreetv.ch/adblock/ (easylistchina+easylist.txt: 44470) -.projectfreetv.ch/adblock/ -# ||project-for-sell.com/_google.php (easylistchina+easylist.txt: 44469) -.project-for-sell.com/_google\.php -# ||professionalmuscle.com/PL2.gif (easylistchina+easylist.txt: 44468) -.professionalmuscle.com/PL2\.gif -# ||professionalmuscle.com/phil1.jpg (easylistchina+easylist.txt: 44467) -.professionalmuscle.com/phil1\.jpg -# ||professionalmuscle.com/featured-concreter.jpg (easylistchina+easylist.txt: 44466) -.professionalmuscle.com/featured-concreter\.jpg -# ||professionalmuscle.com/220x105%20ver2.gif (easylistchina+easylist.txt: 44465) -.professionalmuscle.com/220x105%20ver2\.gif -# ||professionalmuscle.com/*banner (easylistchina+easylist.txt: 44464) -.professionalmuscle.com/.*banner -# ||pro-clockers.com/images/banners/ (easylistchina+easylist.txt: 44463) -.pro-clockers.com/images/banners/ -# ||privateproperty.co.za^*/siteTakeover/ (easylistchina+easylist.txt: 44462) -.privateproperty.co.za/.*/siteTakeover/ -# ||prisonplanet.com^*banner (easylistchina+easylist.txt: 44461) -.prisonplanet.com/.*banner -# ||printfriendly.com/a/lijit/ (easylistchina+easylist.txt: 44460) -.printfriendly.com/a/lijit/ -# ||primewire.in/load_link.php? (easylistchina+easylist.txt: 44459) -.primewire.in/load_link\.php\? -# ||primewire.guru/pagetop.php (easylistchina+easylist.txt: 44458) -.primewire.guru/pagetop\.php -# ||primewire.guru/load_link.php? (easylistchina+easylist.txt: 44457) -.primewire.guru/load_link\.php\? -# ||primewire.ag/load_link.php? (easylistchina+easylist.txt: 44456) -.primewire.ag/load_link\.php\? -# ||primewire.ag/js/jquery*.js (easylistchina+easylist.txt: 44455) -.primewire.ag/js/jquery.*\.js -# ||primewire.ag/frame_header.php?$subdocument (easylistchina+easylist.txt: 44454) -.primewire.ag/frame_header\.php\? -# ||primenews.com.bd/add/ (easylistchina+easylist.txt: 44453) -.primenews.com.bd/add/ -# ||pressrepublican.com/wallpaper/ (easylistchina+easylist.txt: 44452) -.pressrepublican.com/wallpaper/ -# ||prerollads.ign.com^ (easylistchina+easylist.txt: 44451) -.prerollads.ign.com -# ||prepperwebsite.com/wp-content/uploads/*_250x250.jpg (easylistchina+easylist.txt: 44450) -.prepperwebsite.com/wp-content/uploads/.*_250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*_250x150.png (easylistchina+easylist.txt: 44449) -.prepperwebsite.com/wp-content/uploads/.*_250x150\.png -# ||prepperwebsite.com/wp-content/uploads/*/tsepulveda-1.jpg (easylistchina+easylist.txt: 44448) -.prepperwebsite.com/wp-content/uploads/.*/tsepulveda-1\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/PW-Ad.jpg (easylistchina+easylist.txt: 44447) -.prepperwebsite.com/wp-content/uploads/.*/PW-Ad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/jihad.jpg (easylistchina+easylist.txt: 44446) -.prepperwebsite.com/wp-content/uploads/.*/jihad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/FME-Red-CAP.jpg (easylistchina+easylist.txt: 44445) -.prepperwebsite.com/wp-content/uploads/.*/FME-Red-CAP\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/DeadwoodStove-PW.gif (easylistchina+easylist.txt: 44444) -.prepperwebsite.com/wp-content/uploads/.*/DeadwoodStove-PW\.gif -# ||prepperwebsite.com/wp-content/uploads/*/apmgoldmembership250x250.jpg (easylistchina+easylist.txt: 44443) -.prepperwebsite.com/wp-content/uploads/.*/apmgoldmembership250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/250x250- (easylistchina+easylist.txt: 44442) -.prepperwebsite.com/wp-content/uploads/.*/250x250- -# ||prepperwebsite.com/wp-content/uploads/*-250x250.jpg (easylistchina+easylist.txt: 44441) -.prepperwebsite.com/wp-content/uploads/.*-250x250\.jpg -# ||preppersmallbiz.com/wp-content/uploads/*/PSB-Support.jpg (easylistchina+easylist.txt: 44440) -.preppersmallbiz.com/wp-content/uploads/.*/PSB-Support\.jpg -# ||premierleague.com^*/sponsor_ (easylistchina+easylist.txt: 44439) -.premierleague.com/.*/sponsor_ -# ||prehackshub.com/js/popup-wide.js (easylistchina+easylist.txt: 44438) -.prehackshub.com/js/popup-wide\.js -# ||preev.com/ad| (easylistchina+easylist.txt: 44437) -.preev.com/ad$ -# ||preev.com/ads| (easylistchina+easylist.txt: 44436) -.preev.com/ads$ -# ||praguepost.com/images/banners/ (easylistchina+easylist.txt: 44435) -.praguepost.com/images/banners/ -# ||pr0gramm.com/wm/ (easylistchina+easylist.txt: 44434) -.pr0gramm.com/wm/ -# ||pqarchiver.com^*/utilstextlinksxml.js (easylistchina+easylist.txt: 44433) -.pqarchiver.com/.*/utilstextlinksxml\.js -# ||powvideo.net/ban/ (easylistchina+easylist.txt: 44432) -.powvideo.net/ban/ -# ||powerbot.org^*/ads/ (easylistchina+easylist.txt: 44431) -.powerbot.org/.*/ads/ -# ||power977.com/images/banners/ (easylistchina+easylist.txt: 44430) -.power977.com/images/banners/ -# ||power1035fm.com^*/banners/ (easylistchina+easylist.txt: 44429) -.power1035fm.com/.*/banners/ -# ||poststar.com^*/promos/ (easylistchina+easylist.txt: 44428) -.poststar.com/.*/promos/ -# ||poststar.com^*/dealwidget.php? (easylistchina+easylist.txt: 44427) -.poststar.com/.*/dealwidget\.php\? -# ||poststar.com^*/ad_ (easylistchina+easylist.txt: 44426) -.poststar.com/.*/ad_ -# ||postcrescent.com^*/promos/ (easylistchina+easylist.txt: 44424) -.postcrescent.com/.*/promos/ -# ||postadsnow.com/panbanners/ (easylistchina+easylist.txt: 44423) -.postadsnow.com/panbanners/ -# ||positivehealth.com^*/TopicbannerAvatar/ (easylistchina+easylist.txt: 44422) -.positivehealth.com/.*/TopicbannerAvatar/ -# ||positivehealth.com^*/BannerAvatar/ (easylistchina+easylist.txt: 44421) -.positivehealth.com/.*/BannerAvatar/ -# ||porttechnology.org/images/partners/ (easylistchina+easylist.txt: 44420) -.porttechnology.org/images/partners/ -# ||portmiamiwebcam.com/images/sling_ (easylistchina+easylist.txt: 44419) -.portmiamiwebcam.com/images/sling_ -# ||portlanddailysun.me/images/banners/ (easylistchina+easylist.txt: 44418) -.portlanddailysun.me/images/banners/ -# ||portevergladeswebcam.com^*-WebCamBannerFall_ (easylistchina+easylist.txt: 44417) -.portevergladeswebcam.com/.*-WebCamBannerFall_ -# ||portevergladeswebcam.com^*-Ad.jpg (easylistchina+easylist.txt: 44416) -.portevergladeswebcam.com/.*-Ad\.jpg -# ||portcanaveralwebcam.com/images/ad_ (easylistchina+easylist.txt: 44415) -.portcanaveralwebcam.com/images/ad_ -# ||pornevo.com/events_ (easylistchina+easylist.txt: 44414) -.pornevo.com/events_ -# ||pop-over.powered-by.justplayzone.com^ (easylistchina+easylist.txt: 44413) -.pop-over.powered-by.justplayzone.com -# ||pons.eu^*/lingeniobanner.swf (easylistchina+easylist.txt: 44412) -.pons.eu/.*/lingeniobanner\.swf -# ||politicususa.com/psa/ (easylistchina+easylist.txt: 44410) -.politicususa.com/psa/ -# ||politico.com^*_skin_ (easylistchina+easylist.txt: 44409) -.politico.com/.*_skin_ -# ||politicalwire.com/images/*-sponsor.jpg (easylistchina+easylist.txt: 44408) -.politicalwire.com/images/.*-sponsor\.jpg -# ||policeprofessional.com/files/pictures- (easylistchina+easylist.txt: 44407) -.policeprofessional.com/files/pictures- -# ||policeprofessional.com/files/banners- (easylistchina+easylist.txt: 44406) -.policeprofessional.com/files/banners- -# ||police-car-photos.com/pictures/sponsors/ (easylistchina+easylist.txt: 44405) -.police-car-photos.com/pictures/sponsors/ -# ||pokernews.com/preroll.php? (easylistchina+easylist.txt: 44404) -.pokernews.com/preroll\.php\? -# ||pokernews.com/b/ (easylistchina+easylist.txt: 44403) -.pokernews.com/b/ -# ||pogo.com/v/*/js/ad.js (easylistchina+easylist.txt: 44402) -.pogo.com/v/.*/js/ad\.js -# ||pocketpcaddict.com/forums/images/banners/ (easylistchina+easylist.txt: 44401) -.pocketpcaddict.com/forums/images/banners/ -# ||pocket-lint.com/images/bytemarkad. (easylistchina+easylist.txt: 44400) -.pocket-lint.com/images/bytemarkad\. -# ||pmm.people.com.cn^ (easylistchina+easylist.txt: 44399) -.pmm.people.com.cn -# ||plundermedia.com*rectangle- (easylistchina+easylist.txt: 44398) -.plundermedia.com*./.*rectangle- -.plundermedia.com*rectangle-*. -# ||plunderguide.com/rectangle2.html (easylistchina+easylist.txt: 44397) -.plunderguide.com/rectangle2\.html -# ||plunderguide.com/leaderboard-gor.html (easylistchina+easylist.txt: 44396) -.plunderguide.com/leaderboard-gor\.html -# ||plsn.com/images/PLSN-Bg1.jpg (easylistchina+easylist.txt: 44395) -.plsn.com/images/PLSN-Bg1\.jpg -# ||playtowerdefensegames.com/ptdg-gao-gamebox-homepage.swf (easylistchina+easylist.txt: 44394) -.playtowerdefensegames.com/ptdg-gao-gamebox-homepage\.swf -# ||playhub.com/js/popup-wide.js (easylistchina+easylist.txt: 44392) -.playhub.com/js/popup-wide\.js -# ||playhd.eu^*.html|$subdocument (easylistchina+easylist.txt: 44391) -.playhd.eu/.*\.html$ -# ||playgroundmag.net^*/wallpaperpgesp_$image (easylistchina+easylist.txt: 44390) -.playgroundmag.net/.*/wallpaperpgesp_ -# ||playgames2.com/rand100x100.php (easylistchina+easylist.txt: 44389) -.playgames2.com/rand100x100\.php -# ||playgames2.com/mmoout.php (easylistchina+easylist.txt: 44388) -.playgames2.com/mmoout\.php -# ||playgames2.com/default160x160.php (easylistchina+easylist.txt: 44387) -.playgames2.com/default160x160\.php -# ||playgames2.com/ban300- (easylistchina+easylist.txt: 44386) -.playgames2.com/ban300- -# ||player.insuranceandhealth.com^ (easylistchina+easylist.txt: 44385) -.player.insuranceandhealth.com -# ||player.alloutwedding.com^ (easylistchina+easylist.txt: 44384) -.player.alloutwedding.com -# ||player.accoona.com^ (easylistchina+easylist.txt: 44383) -.player.accoona.com -# ||player.800directories.com^ (easylistchina+easylist.txt: 44382) -.player.800directories.com -# ||player.1stcreditrepairs.com^ (easylistchina+easylist.txt: 44381) -.player.1stcreditrepairs.com -# ||player.1800coupon.com^ (easylistchina+easylist.txt: 44380) -.player.1800coupon.com -# ||play4movie.com/banner/ (easylistchina+easylist.txt: 44379) -.play4movie.com/banner/ -# ||planetlotus.org/images/partners/ (easylistchina+easylist.txt: 44378) -.planetlotus.org/images/partners/ -# ||planecrashinfo.com/images/advertize1.gif (easylistchina+easylist.txt: 44377) -.planecrashinfo.com/images/advertize1\.gif -# ||pixhost.org/image/fik1.jpg (easylistchina+easylist.txt: 44376) -.pixhost.org/image/fik1\.jpg -# ||pittnews.com/modules/mod_novarp/ (easylistchina+easylist.txt: 44375) -.pittnews.com/modules/mod_novarp/ -# ||pitchero.com^*/toolstation.gif (easylistchina+easylist.txt: 44374) -.pitchero.com/.*/toolstation\.gif -# ||pirateproxy.nl/inc/ex.js (easylistchina+easylist.txt: 44373) -.pirateproxy.nl/inc/ex\.js -# ||piratefm.co.uk/resources/creative/ (easylistchina+easylist.txt: 44372) -.piratefm.co.uk/resources/creative/ -# ||pinknews.co.uk/newweb/ (easylistchina+easylist.txt: 44371) -.pinknews.co.uk/newweb/ -# ||pinknews.co.uk/gsky. (easylistchina+easylist.txt: 44370) -.pinknews.co.uk/gsky\. -# ||pinkbike.org^*/skins/ (easylistchina+easylist.txt: 44369) -.pinkbike.org/.*/skins/ -# ||picsee.net/clk.js (easylistchina+easylist.txt: 44368) -.picsee.net/clk\.js -# ||pickmeupnews.com/cfopop.js (easylistchina+easylist.txt: 44367) -.pickmeupnews.com/cfopop\.js -# ||physorg.com^*/addetect.js (easylistchina+easylist.txt: 44366) -.physorg.com/.*/addetect\.js -# ||phuketwan.com/img/b/ (easylistchina+easylist.txt: 44365) -.phuketwan.com/img/b/ -# ||phuketgazette.net^*/banners/ (easylistchina+easylist.txt: 44364) -.phuketgazette.net/.*/banners/ -# ||phuketgazette.net/banners/ (easylistchina+easylist.txt: 44363) -.phuketgazette.net/banners/ -# ||phuket-post.com/img/a/ (easylistchina+easylist.txt: 44362) -.phuket-post.com/img/a/ -# ||phpmotion.com/images/banners-webhosts/ (easylistchina+easylist.txt: 44361) -.phpmotion.com/images/banners-webhosts/ -# ||phpbb.com/theme/images/hosting/hostmonster-downloads.gif (easylistchina+easylist.txt: 44360) -.phpbb.com/theme/images/hosting/hostmonster-downloads\.gif -# ||phpbb.com/theme/images/bg_forumatic_front_page.png (easylistchina+easylist.txt: 44359) -.phpbb.com/theme/images/bg_forumatic_front_page\.png -# ||photosupload.net/photosupload.js (easylistchina+easylist.txt: 44358) -.photosupload.net/photosupload\.js -# ||photo.net/equipment/pg-160^ (easylistchina+easylist.txt: 44356) -.photo.net/equipment/pg-160[^\w%.-] -# ||phoronix.com/phxforums-thread-show.php (easylistchina+easylist.txt: 44355) -.phoronix.com/phxforums-thread-show\.php -# ||phonescoop.com^*/a_tab.gif (easylistchina+easylist.txt: 44354) -.phonescoop.com/.*/a_tab\.gif -# ||phonebunch.com/images/flipkart_offers_alt.jpg (easylistchina+easylist.txt: 44353) -.phonebunch.com/images/flipkart_offers_alt\.jpg -# ||phonearena.com/images/banners/ (easylistchina+easylist.txt: 44352) -.phonearena.com/images/banners/ -# ||phnompenhpost.com^*/banner_ (easylistchina+easylist.txt: 44351) -.phnompenhpost.com/.*/banner_ -# ||phnompenhpost.com/images/stories/banner/ (easylistchina+easylist.txt: 44350) -.phnompenhpost.com/images/stories/banner/ -# ||phillytrib.com/images/banners/ (easylistchina+easylist.txt: 44349) -.phillytrib.com/images/banners/ -# ||phantom.ie^*/banners/ (easylistchina+easylist.txt: 44348) -.phantom.ie/.*/banners/ -# ||pghcitypaper.com/general/modalbox/modalbox.js (easylistchina+easylist.txt: 44347) -.pghcitypaper.com/general/modalbox/modalbox\.js -# ||pgatour.com^*/featurebillboard_ (easylistchina+easylist.txt: 44346) -.pgatour.com/.*/featurebillboard_ -# ||pettube.com/images/*-partner. (easylistchina+easylist.txt: 44345) -.pettube.com/images/.*-partner\. -# ||petri.co.il/wp-content/uploads/banner700x475_ (easylistchina+easylist.txt: 44344) -.petri.co.il/wp-content/uploads/banner700x475_ -# ||petri.co.il/wp-content/uploads/banner1000x75_ (easylistchina+easylist.txt: 44343) -.petri.co.il/wp-content/uploads/banner1000x75_ -# ||petri.co.il/media/$image (easylistchina+easylist.txt: 44342) -.petri.co.il/media/ -# ||peruthisweek.com/uploads/sponsor_image/ (easylistchina+easylist.txt: 44341) -.peruthisweek.com/uploads/sponsor_image/ -# ||perezhilton.com/images/ask/ (easylistchina+easylist.txt: 44340) -.perezhilton.com/images/ask/ -# ||penguin-news.com/images/banners/ (easylistchina+easylist.txt: 44339) -.penguin-news.com/images/banners/ -# ||pedestrian.tv/_crunk/wp-content/files_flutter/ (easylistchina+easylist.txt: 44338) -.pedestrian.tv/_crunk/wp-content/files_flutter/ -# ||pechextreme.com^*/banners/ (easylistchina+easylist.txt: 44337) -.pechextreme.com/.*/banners/ -# ||pechextreme.com^*/banner. (easylistchina+easylist.txt: 44336) -.pechextreme.com/.*/banner\. -# ||pe.com^*/biice2scripts.js (easylistchina+easylist.txt: 44335) -.pe.com/.*/biice2scripts\.js -# ||pcworld.com/templates/video/popup.jsp?*&flv=/pcw/ads/ (easylistchina+easylist.txt: 44334) -.pcworld.com/templates/video/popup\.jsp\?.*&flv=/pcw/ads/ -# ||pcworld.com/images/*_vidmod_316x202_ (easylistchina+easylist.txt: 44333) -.pcworld.com/images/.*_vidmod_316x202_ -# ||pcworld.com/ads/ (easylistchina+easylist.txt: 44332) -.pcworld.com/ads/ -# ||pcworld.co.nz^*_siteskin_ (easylistchina+easylist.txt: 44331) -.pcworld.co.nz/.*_siteskin_ -# ||pcr-online.biz/static/banners/ (easylistchina+easylist.txt: 44330) -.pcr-online.biz/static/banners/ -# ||pcpro.co.uk^*skin_wide. (easylistchina+easylist.txt: 44329) -.pcpro.co.uk/.*skin_wide\. -# ||pcpro.co.uk^*/pcprositeskin (easylistchina+easylist.txt: 44328) -.pcpro.co.uk/.*/pcprositeskin -# ||pcpro.co.uk/images/skins/ (easylistchina+easylist.txt: 44327) -.pcpro.co.uk/images/skins/ -# ||pcpro.co.uk/images/*_siteskin (easylistchina+easylist.txt: 44326) -.pcpro.co.uk/images/.*_siteskin -# ||pcmag.com/blogshome/logicbuy.js (easylistchina+easylist.txt: 44325) -.pcmag.com/blogshome/logicbuy\.js -# ||pcauthority.com.au^*/skins/ (easylistchina+easylist.txt: 44324) -.pcauthority.com.au/.*/skins/ -# ||pcadvisor.co.uk/graphics/sponsored/ (easylistchina+easylist.txt: 44323) -.pcadvisor.co.uk/graphics/sponsored/ -# ||pbsrc.com^*/sponsor/ (easylistchina+easylist.txt: 44322) -.pbsrc.com/.*/sponsor/ -# ||pbsrc.com/sponsor/ (easylistchina+easylist.txt: 44321) -.pbsrc.com/sponsor/ -# ||pbs.org^*/sponsors/ (easylistchina+easylist.txt: 44320) -.pbs.org/.*/sponsors/ -# ||payplay.fm^*/mastercs.js (easylistchina+easylist.txt: 44319) -.payplay.fm/.*/mastercs\.js -# ||pasadenajournal.com/images/banners/ (easylistchina+easylist.txt: 44317) -.pasadenajournal.com/images/banners/ -# ||partners-z.com^ (easylistchina+easylist.txt: 44316) -.partners-z.com -# ||parlemagazine.com/images/banners/ (easylistchina+easylist.txt: 44315) -.parlemagazine.com/images/banners/ -# ||pardaphash.com/direct/tracker/add/ (easylistchina+easylist.txt: 44314) -.pardaphash.com/direct/tracker/add/ -# ||paradoxwikis.com/Sidebar.jpg (easylistchina+easylist.txt: 44313) -.paradoxwikis.com/Sidebar\.jpg -# ||parade.com/images/skins/ (easylistchina+easylist.txt: 44312) -.parade.com/images/skins/ -# ||pandora.com^*/mediaserverPublicRedirect.jsp (easylistchina+easylist.txt: 44311) -.pandora.com/.*/mediaserverPublicRedirect\.jsp -# ||pan2.ephotozine.com^$image (easylistchina+easylist.txt: 44310) -.pan2.ephotozine.com -# ||paktribune.com^*/banner (easylistchina+easylist.txt: 44309) -.paktribune.com/.*/banner -# ||pakistantoday.com.pk^*/karachi_houston_PakistanToday.jpg (easylistchina+easylist.txt: 44308) -.pakistantoday.com.pk/.*/karachi_houston_PakistanToday\.jpg -# ||paisalive.com/include/popup.js (easylistchina+easylist.txt: 44307) -.paisalive.com/include/popup\.js -# ||pagesinventory.com/_data/img/*_125x400_ (easylistchina+easylist.txt: 44306) -.pagesinventory.com/_data/img/.*_125x400_ -# ||pacificnewscenter.com/images/banners/ (easylistchina+easylist.txt: 44305) -.pacificnewscenter.com/images/banners/ -# ||p2pnet.net/images/$image (easylistchina+easylist.txt: 44304) -.p2pnet.net/images/ -# ||ozy.com^*/interstitial/ (easylistchina+easylist.txt: 44303) -.ozy.com/.*/interstitial/ -# ||ozy.com/modules/_common/ozy/pushdown/ (easylistchina+easylist.txt: 44302) -.ozy.com/modules/_common/ozy/pushdown/ -# ||ozy.com/modules/_common/ozy/full_width/ (easylistchina+easylist.txt: 44301) -.ozy.com/modules/_common/ozy/full_width/ -# ||ozy.com/modules/_common/ozy/blade/ (easylistchina+easylist.txt: 44300) -.ozy.com/modules/_common/ozy/blade/ -# ||ozqul.com^*/webbanners.png (easylistchina+easylist.txt: 44299) -.ozqul.com/.*/webbanners\.png -# ||oyetimes.com/join/advertisers.html (easylistchina+easylist.txt: 44298) -.oyetimes.com/join/advertisers\.html -# ||ox.furaffinity.net^ (easylistchina+easylist.txt: 44297) -.ox.furaffinity.net -# ||ox-d.wetransfer.com^ (easylistchina+easylist.txt: 44296) -.ox-d.wetransfer.com -# ||ox-d.sbnation.com^ (easylistchina+easylist.txt: 44295) -.ox-d.sbnation.com -# ||ox-d.rantsports.com^ (easylistchina+easylist.txt: 44294) -.ox-d.rantsports.com -# ||ow.ly^*/hootsuite_promo.jpg (easylistchina+easylist.txt: 44293) -.ow.ly/.*/hootsuite_promo\.jpg -# ||ovfile.com/player/jwadplugin.swf$object-subrequest (easylistchina+easylist.txt: 44292) -.ovfile.com/player/jwadplugin\.swf -# ||overclockers.co.uk^*/background/ (easylistchina+easylist.txt: 44291) -.overclockers.co.uk/.*/background/ -# ||overclock3d.net/img/pcp.jpg (easylistchina+easylist.txt: 44290) -.overclock3d.net/img/pcp\.jpg -# ||outofaces.com/*.html$subdocument (easylistchina+easylist.txt: 44289) -.outofaces.com/.*\.html -# ||outlookmoney.com/sharekhan_ad.jpg (easylistchina+easylist.txt: 44288) -.outlookmoney.com/sharekhan_ad\.jpg -# ||outlookindia.com/image/banner_ (easylistchina+easylist.txt: 44287) -.outlookindia.com/image/banner_ -# ||ourmanga.com/funklicks (easylistchina+easylist.txt: 44286) -.ourmanga.com/funklicks -# ||oteupload.com/images/iLivid-download- (easylistchina+easylist.txt: 44285) -.oteupload.com/images/iLivid-download- -# ||osdir.com/ml/$subdocument (easylistchina+easylist.txt: 44284) -.osdir.com/ml/ -# ||orlandosentinel2.com^*-sponsorship- (easylistchina+easylist.txt: 44283) -.orlandosentinel2.com/.*-sponsorship- -# ||orkut.gmodules.com^/promote.xml (easylistchina+easylist.txt: 44282) -.orkut.gmodules.com//promote\.xml -# ||orissadiary.com/img/*-banner.gif (easylistchina+easylist.txt: 44281) -.orissadiary.com/img/.*-banner\.gif -# ||originalfm.com/images/hotspots/ (easylistchina+easylist.txt: 44280) -.originalfm.com/images/hotspots/ -# ||oraclebroadcasting.com/images/hempusa_330.gif (easylistchina+easylist.txt: 44279) -.oraclebroadcasting.com/images/hempusa_330\.gif -# ||oraclebroadcasting.com/images/extendovite300.gif (easylistchina+easylist.txt: 44278) -.oraclebroadcasting.com/images/extendovite300\.gif -# ||oraclebroadcasting.com/images/enerfood-300x90.gif (easylistchina+easylist.txt: 44277) -.oraclebroadcasting.com/images/enerfood-300x90\.gif -# ||optimum.net/utilities/doubleclicktargeting (easylistchina+easylist.txt: 44276) -.optimum.net/utilities/doubleclicktargeting -# ||optics.org/banners/ (easylistchina+easylist.txt: 44275) -.optics.org/banners/ -# ||oprah.com^*-300x335.jpg (easylistchina+easylist.txt: 44274) -.oprah.com/.*-300x335\.jpg -# ||opensubtitles.org/gfx/banners_campaigns/ (easylistchina+easylist.txt: 44273) -.opensubtitles.org/gfx/banners_campaigns/ -# ||opencurrency.com/wp-content/uploads/*-aocs-sidebar-commodity-bank.png (easylistchina+easylist.txt: 44272) -.opencurrency.com/wp-content/uploads/.*-aocs-sidebar-commodity-bank\.png -# ||opednews.com^*/iframe.php? (easylistchina+easylist.txt: 44271) -.opednews.com/.*/iframe\.php\? -# ||onvasortir.com/maximemo-pense-bete-ovs.png (easylistchina+easylist.txt: 44270) -.onvasortir.com/maximemo-pense-bete-ovs\.png -# ||onrpg.com^*.php?$xmlhttprequest (easylistchina+easylist.txt: 44269) -.onrpg.com/.*\.php\? -# ||onlygoodmovies.com/netflix.gif (easylistchina+easylist.txt: 44268) -.onlygoodmovies.com/netflix\.gif -# ||onlineshopping.co.za/expop/ (easylistchina+easylist.txt: 44267) -.onlineshopping.co.za/expop/ -# ||onlinerealgames.com/google$subdocument (easylistchina+easylist.txt: 44266) -.onlinerealgames.com/google -# ||onlinenews.com.pk/onlinenews-admin/banners/ (easylistchina+easylist.txt: 44265) -.onlinenews.com.pk/onlinenews-admin/banners/ -# ||onlinemarketnews.org^*/silver72890.gif (easylistchina+easylist.txt: 44264) -.onlinemarketnews.org/.*/silver72890\.gif -# ||onlinemarketnews.org^*/silver300600.gif (easylistchina+easylist.txt: 44263) -.onlinemarketnews.org/.*/silver300600\.gif -# ||onlinekeystore.com/skin1/images/side- (easylistchina+easylist.txt: 44262) -.onlinekeystore.com/skin1/images/side- -# ||onionstatic.com/sponsored/ (easylistchina+easylist.txt: 44261) -.onionstatic.com/sponsored/ -# ||onepieceofbleach.com/onepieceofbleach-gao- (easylistchina+easylist.txt: 44260) -.onepieceofbleach.com/onepieceofbleach-gao- -# ||one-delivery.co.uk^*/sensitivedating.png (easylistchina+easylist.txt: 44259) -.one-delivery.co.uk/.*/sensitivedating\.png -# ||oncyprus.com^*/banners/ (easylistchina+easylist.txt: 44258) -.oncyprus.com/.*/banners/ -# ||on.net/images/gon_nodestore.jpg (easylistchina+easylist.txt: 44257) -.on.net/images/gon_nodestore\.jpg -# ||omgpop.com/dc? (easylistchina+easylist.txt: 44256) -.omgpop.com/dc\? -# ||oldgames.sk/images/topbar/ (easylistchina+easylist.txt: 44255) -.oldgames.sk/images/topbar/ -# ||okcupid.com/daisy?$subdocument (easylistchina+easylist.txt: 44254) -.okcupid.com/daisy\? -# ||okccdn.com/media/img/takeovers/ (easylistchina+easylist.txt: 44253) -.okccdn.com/media/img/takeovers/ -# ||oilprice.com/oiopub/ (easylistchina+easylist.txt: 44252) -.oilprice.com/oiopub/ -# ||oilprice.com/images/sponsors/ (easylistchina+easylist.txt: 44251) -.oilprice.com/images/sponsors/ -# ||oilprice.com/images/banners/ (easylistchina+easylist.txt: 44250) -.oilprice.com/images/banners/ -# ||ohmygore.com/ef_pub*.php (easylistchina+easylist.txt: 44249) -.ohmygore.com/ef_pub.*\.php -# ||oddschecker.com^*/takeover/ (easylistchina+easylist.txt: 44248) -.oddschecker.com/.*/takeover/ -# ||ocp.cbssports.com/pacific/request.jsp? (easylistchina+easylist.txt: 44247) -.ocp.cbssports.com/pacific/request\.jsp\? -# ||ocforums.com/adj/ (easylistchina+easylist.txt: 44246) -.ocforums.com/adj/ -# ||observer.ug/images/banners/ (easylistchina+easylist.txt: 44245) -.observer.ug/images/banners/ -# ||observer.org.sz/files/banners/ (easylistchina+easylist.txt: 44244) -.observer.org.sz/files/banners/ -# ||observer.com.na/images/banners/ (easylistchina+easylist.txt: 44243) -.observer.com.na/images/banners/ -# ||oascentral.newsmax.com^ (easylistchina+easylist.txt: 44240) -.oascentral.newsmax.com -# ||oascentral.hosted.ap.org^ (easylistchina+easylist.txt: 44239) -.oascentral.hosted.ap.org -# ||oascentral.chron.com^ (easylistchina+easylist.txt: 44238) -.oascentral.chron.com -# ||oasc07.citywire.co.uk^ (easylistchina+easylist.txt: 44237) -.oasc07.citywire.co.uk -# ||oas.skyscanner.net^ (easylistchina+easylist.txt: 44236) -.oas.skyscanner.net -# ||oas.autotrader.co.uk^ (easylistchina+easylist.txt: 44235) -.oas.autotrader.co.uk -# ||oanda.com/wandacache/wf-banner- (easylistchina+easylist.txt: 44234) -.oanda.com/wandacache/wf-banner- -# ||nznewsuk.co.uk/banners/ (easylistchina+easylist.txt: 44233) -.nznewsuk.co.uk/banners/ -# ||nzbking.com/static/nzbdrive_banner.swf (easylistchina+easylist.txt: 44232) -.nzbking.com/static/nzbdrive_banner\.swf -# ||nzbindex.nl/images/banners/ (easylistchina+easylist.txt: 44231) -.nzbindex.nl/images/banners/ -# ||nytimes.com^*-sponsor- (easylistchina+easylist.txt: 44230) -.nytimes.com/.*-sponsor- -# ||nytimes.com/ads/ (easylistchina+easylist.txt: 44229) -.nytimes.com/ads/ -# ||nyt.com^*-sponsor- (easylistchina+easylist.txt: 44228) -.nyt.com/.*-sponsor- -# ||nyrej.com/c/ (easylistchina+easylist.txt: 44227) -.nyrej.com/c/ -# ||nypost.com^*/takeovers/ (easylistchina+easylist.txt: 44226) -.nypost.com/.*/takeovers/ -# ||nymag.com^*/metrony_ (easylistchina+easylist.txt: 44225) -.nymag.com/.*/metrony_ -# ||nymag.com/scripts/skintakeover.js (easylistchina+easylist.txt: 44224) -.nymag.com/scripts/skintakeover\.js -# ||nymag.com/partners/ (easylistchina+easylist.txt: 44223) -.nymag.com/partners/ -# ||nydailynews.com^*-reskin- (easylistchina+easylist.txt: 44222) -.nydailynews.com/.*-reskin- -# ||nydailynews.com/PCRichards/ (easylistchina+easylist.txt: 44221) -.nydailynews.com/PCRichards/ -# ||nydailynews.com/img/sponsor/ (easylistchina+easylist.txt: 44220) -.nydailynews.com/img/sponsor/ -# ||nyaa.se/al (easylistchina+easylist.txt: 44219) -.nyaa.se/al -# ||nyaa.se/aj (easylistchina+easylist.txt: 44218) -.nyaa.se/aj -# ||nyaa.se/ai (easylistchina+easylist.txt: 44217) -.nyaa.se/ai -# ||nyaa.se/ah (easylistchina+easylist.txt: 44216) -.nyaa.se/ah -# ||nyaa.se/ag (easylistchina+easylist.txt: 44215) -.nyaa.se/ag -# ||nuvo.net^*/FooterPromoButtons.html (easylistchina+easylist.txt: 44214) -.nuvo.net/.*/FooterPromoButtons\.html -# ||nuttynewstoday.com/images/percento-banner.jpg (easylistchina+easylist.txt: 44213) -.nuttynewstoday.com/images/percento-banner\.jpg -# ||nuttynewstoday.com/images/hostwink.jpg (easylistchina+easylist.txt: 44212) -.nuttynewstoday.com/images/hostwink\.jpg -# ||nutritionhorizon.com/content/flash_loaders/$object (easylistchina+easylist.txt: 44211) -.nutritionhorizon.com/content/flash_loaders/ -# ||nutritionhorizon.com/content/banners/ (easylistchina+easylist.txt: 44210) -.nutritionhorizon.com/content/banners/ -# ||numberempire.com/images/b/ (easylistchina+easylist.txt: 44209) -.numberempire.com/images/b/ -# ||nufc.com^*_360x120.gif (easylistchina+easylist.txt: 44208) -.nufc.com/.*_360x120\.gif -# ||nufc.com^*/The%20Gate_NUFC.com%20banner_%2016.8.13.gif (easylistchina+easylist.txt: 44207) -.nufc.com/.*/The%20Gate_NUFC\.com%20banner_%2016\.8\.13\.gif -# ||nufc.com^*/skyscraper.gif (easylistchina+easylist.txt: 44206) -.nufc.com/.*/skyscraper\.gif -# ||nufc.com^*/mjs-2013-11.png (easylistchina+easylist.txt: 44205) -.nufc.com/.*/mjs-2013-11\.png -# ||nufc.com^*/altoonative_Cardiff.gif (easylistchina+easylist.txt: 44204) -.nufc.com/.*/altoonative_Cardiff\.gif -# ||nufc.com/forddirectbanner.js (easylistchina+easylist.txt: 44203) -.nufc.com/forddirectbanner\.js -# ||nu2.nu^*_banner. (easylistchina+easylist.txt: 44202) -.nu2.nu/.*_banner\. -# ||nu2.nu^*/sponsor/ (easylistchina+easylist.txt: 44201) -.nu2.nu/.*/sponsor/ -# ||ntdtv.com^*/adv/ (easylistchina+easylist.txt: 44200) -.ntdtv.com/.*/adv/ -# ||nowwatchtvlive.com/revenuehits.html (easylistchina+easylist.txt: 44199) -.nowwatchtvlive.com/revenuehits\.html -# ||nowwatchtvlive.com/matomyads.php (easylistchina+easylist.txt: 44198) -.nowwatchtvlive.com/matomyads\.php -# ||nowgoal.com/images/foreign/ (easylistchina+easylist.txt: 44197) -.nowgoal.com/images/foreign/ -# ||novamov.com/images/download_video.jpg (easylistchina+easylist.txt: 44196) -.novamov.com/images/download_video\.jpg -# ||notebook-driver.com/wp-content/images/banner_ (easylistchina+easylist.txt: 44195) -.notebook-driver.com/wp-content/images/banner_ -# ||notdoppler.com^*-promo-siteskin. (easylistchina+easylist.txt: 44194) -.notdoppler.com/.*-promo-siteskin\. -# ||notdoppler.com^*-promo-homepageskin.png (easylistchina+easylist.txt: 44193) -.notdoppler.com/.*-promo-homepageskin\.png -# ||notalwaysromantic.com/images/banner- (easylistchina+easylist.txt: 44192) -.notalwaysromantic.com/images/banner- -# ||nosteam.ro^*/messagesprop.js (easylistchina+easylist.txt: 44191) -.nosteam.ro/.*/messagesprop\.js -# ||nosteam.ro^*/messages.js (easylistchina+easylist.txt: 44190) -.nosteam.ro/.*/messages\.js -# ||nosteam.ro^*/gamedvprop.js (easylistchina+easylist.txt: 44189) -.nosteam.ro/.*/gamedvprop\.js -# ||nosteam.ro^*/compressed.ggotab36.js (easylistchina+easylist.txt: 44188) -.nosteam.ro/.*/compressed\.ggotab36\.js -# ||norwaypost.no/images/banners/ (easylistchina+easylist.txt: 44187) -.norwaypost.no/images/banners/ -# ||northjersey.com^*_Sponsor. (easylistchina+easylist.txt: 44186) -.northjersey.com/.*_Sponsor\. -# ||noram.srv.ysm.yahoo.com^ (easylistchina+easylist.txt: 44185) -.noram.srv.ysm.yahoo.com -# ||nodevice.com/images/banners/ (easylistchina+easylist.txt: 44184) -.nodevice.com/images/banners/ -# ||nmimg.net/css/takeover_ (easylistchina+easylist.txt: 44183) -.nmimg.net/css/takeover_ -# ||nme.com/themes/takeovers/ (easylistchina+easylist.txt: 44182) -.nme.com/themes/takeovers/ -# ||nme.com/js/takeoverlay.js (easylistchina+easylist.txt: 44181) -.nme.com/js/takeoverlay\.js -# ||nmap.org/shared/images/p/$image (easylistchina+easylist.txt: 44180) -.nmap.org/shared/images/p/ -# ||nitrobahn.com.s3.amazonaws.com/theme/getclickybadge.gif (easylistchina+easylist.txt: 44179) -.nitrobahn.com.s3.amazonaws.com/theme/getclickybadge\.gif -# ||nirsoft.net/banners/ (easylistchina+easylist.txt: 44178) -.nirsoft.net/banners/ -# ||nijobfinder.co.uk/affiliates/ (easylistchina+easylist.txt: 44176) -.nijobfinder.co.uk/affiliates/ -# ||niggasbelike.com/wp-content/themes/zeecorporate/images/b.jpg (easylistchina+easylist.txt: 44175) -.niggasbelike.com/wp-content/themes/zeecorporate/images/b\.jpg -# ||nigerianyellowpages.com/images/banners/ (easylistchina+easylist.txt: 44174) -.nigerianyellowpages.com/images/banners/ -# ||nigerianbulletin.com^*/Siropu/ (easylistchina+easylist.txt: 44173) -.nigerianbulletin.com/.*/Siropu/ -# ||nigeriamasterweb.com/Masterweb/banners_pic/ (easylistchina+easylist.txt: 44172) -.nigeriamasterweb.com/Masterweb/banners_pic/ -# ||nigeriafootball.com/img/affiliate_ (easylistchina+easylist.txt: 44171) -.nigeriafootball.com/img/affiliate_ -# ||nichepursuits.com/wp-content/uploads/*/long-tail-pro-banner.gif (easylistchina+easylist.txt: 44170) -.nichepursuits.com/wp-content/uploads/.*/long-tail-pro-banner\.gif -# ||ngrguardiannews.com/images/banners/ (easylistchina+easylist.txt: 44169) -.ngrguardiannews.com/images/banners/ -# ||ngohq.com/images/ad.jpg$~collapse (easylistchina+easylist.txt: 44168) -.ngohq.com/images/ad\.jpg -# ||nflcdn.com^*/partner-type/$~stylesheet (easylistchina+easylist.txt: 44166) -.nflcdn.com/.*/partner-type/ -# ||nfl.com^*/page-background-image.jpg (easylistchina+easylist.txt: 44165) -.nfl.com/.*/page-background-image\.jpg -# ||nfl.com/assets/images/hp-poweredby- (easylistchina+easylist.txt: 44164) -.nfl.com/assets/images/hp-poweredby- -# ||nextstl.com/images/banners/ (easylistchina+easylist.txt: 44163) -.nextstl.com/images/banners/ -# ||nextbigwhat.com/wp-content/uploads/*ccavenue (easylistchina+easylist.txt: 44162) -.nextbigwhat.com/wp-content/uploads/.*ccavenue -# ||nextag.com^*/NextagSponsoredProducts.jsp? (easylistchina+easylist.txt: 44161) -.nextag.com/.*/NextagSponsoredProducts\.jsp\? -# ||newvision.co.ug/rightsidepopup/ (easylistchina+easylist.txt: 44160) -.newvision.co.ug/rightsidepopup/ -# ||newvision.co.ug/banners/ (easylistchina+easylist.txt: 44159) -.newvision.co.ug/banners/ -# ||newverhost.com/css/pp.js (easylistchina+easylist.txt: 44158) -.newverhost.com/css/pp\.js -# ||newverhost.com/css/onload.js (easylistchina+easylist.txt: 44157) -.newverhost.com/css/onload\.js -# ||newsweek.com^*interstitial.js (easylistchina+easylist.txt: 44156) -.newsweek.com/.*interstitial\.js -# ||newsvine.com/jenga/widget/ (easylistchina+easylist.txt: 44155) -.newsvine.com/jenga/widget/ -# ||newsvine.com//jenga/widget/ (easylistchina+easylist.txt: 44154) -# ||newsudanvision.com/images/Carjunctionadvert.gif (easylistchina+easylist.txt: 44153) -.newsudanvision.com/images/Carjunctionadvert\.gif -# ||newsudanvision.com/images/banners/ (easylistchina+easylist.txt: 44152) -.newsudanvision.com/images/banners/ -# ||newstrackindia.com/images/hairfallguru728x90.jpg (easylistchina+easylist.txt: 44151) -.newstrackindia.com/images/hairfallguru728x90\.jpg -# ||newstatesman.com/sites/all/themes/*_1280x2000.$image (easylistchina+easylist.txt: 44150) -.newstatesman.com/sites/all/themes/.*_1280x2000\. -# ||newsreview.com/images/promo.gif (easylistchina+easylist.txt: 44149) -.newsreview.com/images/promo\.gif -# ||newsonjapan.com^*/banner/ (easylistchina+easylist.txt: 44148) -.newsonjapan.com/.*/banner/ -# ||newsday.co.tt/banner/ (easylistchina+easylist.txt: 44147) -.newsday.co.tt/banner/ -# ||newscdn.com.au^*/aldi/ (easylistchina+easylist.txt: 44145) -.newscdn.com.au/.*/aldi/ -# ||newsbusters.org^*/banners/ (easylistchina+easylist.txt: 44144) -.newsbusters.org/.*/banners/ -# ||news.com.au^*/public/img/p/$image (easylistchina+easylist.txt: 44143) -.news.com.au/.*/public/img/p/ -# ||news.com.au^*/promotions/ (easylistchina+easylist.txt: 44142) -.news.com.au/.*/promotions/ -# ||news.com.au^*/promos/ (easylistchina+easylist.txt: 44141) -.news.com.au/.*/promos/ -# ||news.com.au^*/images/*-bg.jpg (easylistchina+easylist.txt: 44140) -.news.com.au/.*/images/.*-bg\.jpg -# ||news.com.au^*-promo$image (easylistchina+easylist.txt: 44139) -.news.com.au/.*-promo -# ||news.com.au/news/vodafone/$object (easylistchina+easylist.txt: 44138) -.news.com.au/news/vodafone/ -# ||news.com.au/cs/*/bg-body.jpg (easylistchina+easylist.txt: 44137) -.news.com.au/cs/.*/bg-body\.jpg -# ||news.am/pic/bnr/ (easylistchina+easylist.txt: 44136) -.news.am/pic/bnr/ -# ||news-record.com/app/deal/ (easylistchina+easylist.txt: 44135) -.news-record.com/app/deal/ -# ||news-leader.com^*/banner.js (easylistchina+easylist.txt: 44134) -.news-leader.com/.*/banner\.js -# ||newpct.com/soporte/ (easylistchina+easylist.txt: 44133) -.newpct.com/soporte/ -# ||newoxfordreview.org/banners/ad- (easylistchina+easylist.txt: 44132) -.newoxfordreview.org/banners/ad- -# ||newipnow.com/ad-js.php (easylistchina+easylist.txt: 44131) -.newipnow.com/ad-js\.php -# ||newburytoday.co.uk^*-WillisAinsworth1.gif (easylistchina+easylist.txt: 44130) -.newburytoday.co.uk/.*-WillisAinsworth1\.gif -# ||newalbumreleases.net/banners/ (easylistchina+easylist.txt: 44129) -.newalbumreleases.net/banners/ -# ||newafricanmagazine.com/images/banners/ (easylistchina+easylist.txt: 44128) -.newafricanmagazine.com/images/banners/ -# ||networx.com/widget.php?aff_id=$script (easylistchina+easylist.txt: 44127) -.networx.com/widget\.php\?aff_id= -# ||networkwestvirginia.com/uploads/user_banners/ (easylistchina+easylist.txt: 44126) -.networkwestvirginia.com/uploads/user_banners/ -# ||network.sofeminine.co.uk^ (easylistchina+easylist.txt: 44125) -.network.sofeminine.co.uk -# ||netupd8.com^*/ads/ (easylistchina+easylist.txt: 44124) -.netupd8.com/.*/ads/ -# ||netsplit.de/links/rootado.gif (easylistchina+easylist.txt: 44123) -.netsplit.de/links/rootado\.gif -# ||netspidermm.indiatimes.com^ (easylistchina+easylist.txt: 44122) -.netspidermm.indiatimes.com -# ||netindian.in/frontsquare*.php (easylistchina+easylist.txt: 44121) -.netindian.in/frontsquare.*\.php -# ||nest.youwatch.org^ (easylistchina+easylist.txt: 44118) -.nest.youwatch.org -# ||nesn.com/img/sponsors/ (easylistchina+easylist.txt: 44117) -.nesn.com/img/sponsors/ -# ||nesn.com/img/nesn-nation/header-dunkin.jpg (easylistchina+easylist.txt: 44116) -.nesn.com/img/nesn-nation/header-dunkin\.jpg -# ||nesn.com/img/nesn-nation/bg- (easylistchina+easylist.txt: 44115) -.nesn.com/img/nesn-nation/bg- -# ||nerej.com/c/ (easylistchina+easylist.txt: 44114) -.nerej.com/c/ -# ||neowin.net/images/atlas/aww (easylistchina+easylist.txt: 44113) -.neowin.net/images/atlas/aww -# ||neoseeker.com/a_pane.php (easylistchina+easylist.txt: 44112) -.neoseeker.com/a_pane\.php -# ||nemesistv.info/jQuery.NagAds1.min.js (easylistchina+easylist.txt: 44111) -.nemesistv.info/jQuery\.NagAds1\.min\.js -# ||nearlygood.com^*/_aff.php? (easylistchina+easylist.txt: 44110) -.nearlygood.com/.*/_aff\.php\? -# ||ndtv.com^*/sponsors/ (easylistchina+easylist.txt: 44109) -.ndtv.com/.*/sponsors/ -# ||ndtv.com^*/banner/ (easylistchina+easylist.txt: 44108) -.ndtv.com/.*/banner/ -# ||ncrypt.in^*/layer.$script (easylistchina+easylist.txt: 44107) -.ncrypt.in/.*/layer\. -# ||ncrypt.in/javascript/jquery.msgbox.min.js (easylistchina+easylist.txt: 44106) -.ncrypt.in/javascript/jquery\.msgbox\.min\.js -# ||ncrypt.in/images/useful/ (easylistchina+easylist.txt: 44105) -.ncrypt.in/images/useful/ -# ||ncrypt.in/images/banner (easylistchina+easylist.txt: 44104) -.ncrypt.in/images/banner -# ||ncrypt.in/images/a/ (easylistchina+easylist.txt: 44103) -.ncrypt.in/images/a/ -# ||ncrypt.in/images/1.gif (easylistchina+easylist.txt: 44102) -.ncrypt.in/images/1\.gif -# ||nciku.com^*banner (easylistchina+easylist.txt: 44101) -.nciku.com/.*banner -# ||nbr.co.nz^*-WingBanner_ (easylistchina+easylist.txt: 44100) -.nbr.co.nz/.*-WingBanner_ -# ||naukimg.com/banner/ (easylistchina+easylist.txt: 44099) -.naukimg.com/banner/ -# ||naturalnews.com/sba/ (easylistchina+easylist.txt: 44098) -.naturalnews.com/sba/ -# ||nativetimes.com/images/banners/ (easylistchina+easylist.txt: 44097) -.nativetimes.com/images/banners/ -# ||nationmultimedia.com/new/js/nation_popup.js (easylistchina+easylist.txt: 44096) -.nationmultimedia.com/new/js/nation_popup\.js -# ||nationmultimedia.com/home/banner/ (easylistchina+easylist.txt: 44095) -.nationmultimedia.com/home/banner/ -# ||nationalturk.com^*/banner (easylistchina+easylist.txt: 44094) -.nationalturk.com/.*/banner -# ||nationalreview.com/images/display_300x600- (easylistchina+easylist.txt: 44093) -.nationalreview.com/images/display_300x600- -# ||nationaljournal.com/js/njg.js (easylistchina+easylist.txt: 44092) -.nationaljournal.com/js/njg\.js -# ||nation.sc/images/pub (easylistchina+easylist.txt: 44091) -.nation.sc/images/pub -# ||nation.sc/images/banners/ (easylistchina+easylist.txt: 44090) -.nation.sc/images/banners/ -# ||nation.lk^*/banners/ (easylistchina+easylist.txt: 44089) -.nation.lk/.*/banners/ -# ||nation.co.ke^*_bg.png (easylistchina+easylist.txt: 44088) -.nation.co.ke/.*_bg\.png -# ||nairaland.com/dynamic/$image (easylistchina+easylist.txt: 44087) -.nairaland.com/dynamic/ -# ||nairaland.com/contents/$image (easylistchina+easylist.txt: 44086) -.nairaland.com/contents/ -# ||naij.com^*/branding/ (easylistchina+easylist.txt: 44085) -.naij.com/.*/branding/ -# ||mywot.net/files/wotcert/vipre.png (easylistchina+easylist.txt: 44084) -.mywot.net/files/wotcert/vipre\.png -# ||myway.com/gca_iframe.html (easylistchina+easylist.txt: 44083) -.myway.com/gca_iframe\.html -# ||mysuncoast.com^*/sponsors/ (easylistchina+easylist.txt: 44082) -.mysuncoast.com/.*/sponsors/ -# ||mysuncoast.com/app/wallpaper/ (easylistchina+easylist.txt: 44081) -.mysuncoast.com/app/wallpaper/ -# ||mysubtitles.com^*_banner.jpg (easylistchina+easylist.txt: 44080) -.mysubtitles.com/.*_banner\.jpg -# ||myspacecdn.com/cms/*_skin_ (easylistchina+easylist.txt: 44079) -.myspacecdn.com/cms/.*_skin_ -# ||myshadibridalexpo.com/banner/ (easylistchina+easylist.txt: 44078) -.myshadibridalexpo.com/banner/ -# ||mysafesearch.co.uk/adds/ (easylistchina+easylist.txt: 44077) -.mysafesearch.co.uk/adds/ -# ||myrls.me/open.js (easylistchina+easylist.txt: 44076) -.myrls.me/open\.js -# ||myretrotv.com^*_vertbnr.jpg (easylistchina+easylist.txt: 44075) -.myretrotv.com/.*_vertbnr\.jpg -# ||myretrotv.com^*_horbnr.jpg (easylistchina+easylist.txt: 44074) -.myretrotv.com/.*_horbnr\.jpg -# ||myproperty.co.za/banners/ (easylistchina+easylist.txt: 44073) -.myproperty.co.za/banners/ -# ||mypremium.tv^*/bpad.htm (easylistchina+easylist.txt: 44072) -.mypremium.tv/.*/bpad\.htm -# ||mypiratebay.cl^$subdocument (easylistchina+easylist.txt: 44071) -.mypiratebay.cl -# ||mypbrand.com/wp-content/uploads/*banner (easylistchina+easylist.txt: 44070) -.mypbrand.com/wp-content/uploads/.*banner -# ||myiplayer.eu/ad (easylistchina+easylist.txt: 44069) -.myiplayer.eu/ad -# ||mygaming.co.za/news/wp-content/wallpapers/ (easylistchina+easylist.txt: 44068) -.mygaming.co.za/news/wp-content/wallpapers/ -# ||myfpscheats.com/bannerimg.jpg (easylistchina+easylist.txt: 44067) -.myfpscheats.com/bannerimg\.jpg -# ||myfax.com/free/images/sendfax/cp_coffee_660x80.swf (easylistchina+easylist.txt: 44066) -.myfax.com/free/images/sendfax/cp_coffee_660x80\.swf -# ||mycentraljersey.com^*/sponsor_ (easylistchina+easylist.txt: 44065) -.mycentraljersey.com/.*/sponsor_ -# ||mybroadband.co.za/news/wp-content/wallpapers/ (easylistchina+easylist.txt: 44064) -.mybroadband.co.za/news/wp-content/wallpapers/ -# ||myam1230.com/images/banners/ (easylistchina+easylist.txt: 44063) -.myam1230.com/images/banners/ -# ||my-link.pro/rotatingBanner.js (easylistchina+easylist.txt: 44062) -.my-link.pro/rotatingBanner\.js -# ||muthafm.com^*/partners.png (easylistchina+easylist.txt: 44061) -.muthafm.com/.*/partners\.png -# ||mustangevolution.com^*/banners/ (easylistchina+easylist.txt: 44060) -.mustangevolution.com/.*/banners/ -# ||mustangevolution.com^*/banner/ (easylistchina+easylist.txt: 44059) -.mustangevolution.com/.*/banner/ -# ||mustangevolution.com/images/300x100_ (easylistchina+easylist.txt: 44058) -.mustangevolution.com/images/300x100_ -# ||musictarget.com*/! (easylistchina+easylist.txt: 44057) -.musictarget.com*./(.*/)?! -# ||musicremedy.com/banner/ (easylistchina+easylist.txt: 44056) -.musicremedy.com/banner/ -# ||musicplayon.com/banner? (easylistchina+easylist.txt: 44055) -.musicplayon.com/banner\? -# ||musicmaza.com/bannerdyn (easylistchina+easylist.txt: 44054) -.musicmaza.com/bannerdyn -# ||music.yahoo.com/get-free-html (easylistchina+easylist.txt: 44053) -.music.yahoo.com/get-free-html -# ||murdermysteries.com/banners-murder/ (easylistchina+easylist.txt: 44052) -.murdermysteries.com/banners-murder/ -# ||multiupload.biz/r_ads2 (easylistchina+easylist.txt: 44051) -.multiupload.biz/r_ads2 -# ||multiup.org/img/sonyoutube_long.gif (easylistchina+easylist.txt: 44050) -.multiup.org/img/sonyoutube_long\.gif -# ||muchmusic.com^*/leaderboard_frame_obiwan.html (easylistchina+easylist.txt: 44049) -.muchmusic.com/.*/leaderboard_frame_obiwan\.html -# ||muchmusic.com^*/bigbox_frame_resizer.html (easylistchina+easylist.txt: 44048) -.muchmusic.com/.*/bigbox_frame_resizer\.html -# ||muchmusic.com/images/*-skin.png (easylistchina+easylist.txt: 44047) -.muchmusic.com/images/.*-skin\.png -# ||mtvnimages.com/images/skins/$image (easylistchina+easylist.txt: 44046) -.mtvnimages.com/images/skins/ -# ||mtv.co.uk^*/btn_itunes.png (easylistchina+easylist.txt: 44045) -.mtv.co.uk/.*/btn_itunes\.png -# ||mtbr.com/ajax/hotdeals/ (easylistchina+easylist.txt: 44044) -.mtbr.com/ajax/hotdeals/ -# ||msw.ms^*/jquery.MSWPagePeel- (easylistchina+easylist.txt: 44043) -.msw.ms/.*/jquery\.MSWPagePeel- -# ||msn.com/?adunitid (easylistchina+easylist.txt: 44042) -.msn.com/\?adunitid -# ||mp3skull.com/call_banner_exec_new. (easylistchina+easylist.txt: 44040) -.mp3skull.com/call_banner_exec_new\. -# ||mp3s.su/uploads/___/djz_to.png (easylistchina+easylist.txt: 44039) -.mp3s.su/uploads/___/djz_to\.png -# ||mp3mediaworld.com*/! (easylistchina+easylist.txt: 44038) -.mp3mediaworld.com*./(.*/)?! -# ||mp3li.net^*banner (easylistchina+easylist.txt: 44037) -.mp3li.net/.*banner -# ||mp3.li/images/md_banner_ (easylistchina+easylist.txt: 44036) -.mp3.li/images/md_banner_ -# ||mp.adverts.itv.com/priority/*.mp4$object-subrequest (easylistchina+easylist.txt: 44035) -.mp.adverts.itv.com/priority/.*\.mp4 -# ||movzap.com/zad.html (easylistchina+easylist.txt: 44034) -.movzap.com/zad\.html -# ||movzap.com/aad.html (easylistchina+easylist.txt: 44033) -.movzap.com/aad\.html -# ||movstreaming.com/images/edhim.jpg (easylistchina+easylist.txt: 44032) -.movstreaming.com/images/edhim\.jpg -# ||movizland.com/images/banners/ (easylistchina+easylist.txt: 44031) -.movizland.com/images/banners/ -# ||moviewallpaper.net/js/mwpopunder.js (easylistchina+easylist.txt: 44030) -.moviewallpaper.net/js/mwpopunder\.js -# ||movie4k.tv/e.js (easylistchina+easylist.txt: 44029) -.movie4k.tv/e\.js -# ||movie4k.to/*.js (easylistchina+easylist.txt: 44028) -.movie4k.to/.*\.js -# ||movie2kto.ws/popup (easylistchina+easylist.txt: 44027) -.movie2kto.ws/popup -# ||movie2k.tl/serve.php (easylistchina+easylist.txt: 44026) -.movie2k.tl/serve\.php -# ||movie2k.tl/layers/ (easylistchina+easylist.txt: 44025) -.movie2k.tl/layers/ -# ||mouthshut.com^*/zedo.aspx (easylistchina+easylist.txt: 44024) -.mouthshut.com/.*/zedo\.aspx -# ||mousesteps.com/images/banners/ (easylistchina+easylist.txt: 44023) -.mousesteps.com/images/banners/ -# ||mountainbuzz.com/attachments/banners/ (easylistchina+easylist.txt: 44022) -.mountainbuzz.com/attachments/banners/ -# ||motorweek.org^*/sponsor_logos/ (easylistchina+easylist.txt: 44021) -.motorweek.org/.*/sponsor_logos/ -# ||motortrader.com.my/skinner/ (easylistchina+easylist.txt: 44020) -.motortrader.com.my/skinner/ -# ||motorhomefacts.com/images/banners/ (easylistchina+easylist.txt: 44019) -.motorhomefacts.com/images/banners/ -# ||motorcycles-motorbikes.com/pictures/sponsors/ (easylistchina+easylist.txt: 44018) -.motorcycles-motorbikes.com/pictures/sponsors/ -# ||morningstaronline.co.uk/offsite/progressive-listings/ (easylistchina+easylist.txt: 44017) -.morningstaronline.co.uk/offsite/progressive-listings/ -# ||morefree.net/wp-content/uploads/*/mauritanie.gif (easylistchina+easylist.txt: 44016) -.morefree.net/wp-content/uploads/.*/mauritanie\.gif -# ||morefmphilly.com^*/sponsors/ (easylistchina+easylist.txt: 44015) -.morefmphilly.com/.*/sponsors/ -# ||monster.com/null&pp (easylistchina+easylist.txt: 44014) -.monster.com/null&pp -# ||monkeygamesworld.com/images/banners/ (easylistchina+easylist.txt: 44013) -.monkeygamesworld.com/images/banners/ -# ||monitor.co.ug/image/view/*/468/ (easylistchina+easylist.txt: 44012) -.monitor.co.ug/image/view/.*/468/ -# ||monitor.co.ug/image/view/*/120/ (easylistchina+easylist.txt: 44011) -.monitor.co.ug/image/view/.*/120/ -# ||moneymedics.biz/upload/banners/ (easylistchina+easylist.txt: 44010) -.moneymedics.biz/upload/banners/ -# ||moneymakerdiscussion.com/mmd-banners/ (easylistchina+easylist.txt: 44009) -.moneymakerdiscussion.com/mmd-banners/ -# ||mochiads.com/srv/ (easylistchina+easylist.txt: 44007) -.mochiads.com/srv/ -# ||mobilephonetalk.com/eurovps.swf (easylistchina+easylist.txt: 44006) -.mobilephonetalk.com/eurovps\.swf -# ||mob.org/banner/ (easylistchina+easylist.txt: 44005) -.mob.org/banner/ -# ||mnn.com^*/120x60/ (easylistchina+easylist.txt: 44004) -.mnn.com/.*/120x60/ -# ||mnn.com/sites/*/popups/AllstatePopup$script (easylistchina+easylist.txt: 44003) -.mnn.com/sites/.*/popups/AllstatePopup -# ||mmosite.com/sponsor/ (easylistchina+easylist.txt: 44002) -.mmosite.com/sponsor/ -# ||mmorpg.com/images/skins/ (easylistchina+easylist.txt: 44001) -.mmorpg.com/images/skins/ -# ||mmorpg.com/images/mr_ss_ (easylistchina+easylist.txt: 44000) -.mmorpg.com/images/mr_ss_ -# ||mmorpg.com/images/*_hots_r0.jpg (easylistchina+easylist.txt: 43999) -.mmorpg.com/images/.*_hots_r0\.jpg -# ||mmoculture.com/wp-content/uploads/*-background- (easylistchina+easylist.txt: 43998) -.mmoculture.com/wp-content/uploads/.*-background- -# ||mlb.com^*/sponsorship/ (easylistchina+easylist.txt: 43996) -.mlb.com/.*/sponsorship/ -# ||mlb.com/images/*_videoskin_*.jpg (easylistchina+easylist.txt: 43995) -.mlb.com/images/.*_videoskin_.*\.jpg -# ||mizzima.com/images/banners/ (easylistchina+easylist.txt: 43994) -.mizzima.com/images/banners/ -# ||mixx96.com/images/banners/ (easylistchina+easylist.txt: 43993) -.mixx96.com/images/banners/ -# ||mixfm.co.za^*/tallspon (easylistchina+easylist.txt: 43992) -.mixfm.co.za/.*/tallspon -# ||mixfm.co.za/images/banner (easylistchina+easylist.txt: 43991) -.mixfm.co.za/images/banner -# ||misterwhat.co.uk/business-company-300/ (easylistchina+easylist.txt: 43990) -.misterwhat.co.uk/business-company-300/ -# ||mirrorstack.com/?q=r_ads (easylistchina+easylist.txt: 43989) -.mirrorstack.com/\?q=r_ads -# ||mirrorcreator.com/js/pu_ad.js (easylistchina+easylist.txt: 43988) -.mirrorcreator.com/js/pu_ad\.js -# ||mirrorcreator.com/js/mpop.js (easylistchina+easylist.txt: 43987) -.mirrorcreator.com/js/mpop\.js -# ||mirror.co.uk^*_promos_ (easylistchina+easylist.txt: 43986) -.mirror.co.uk/.*_promos_ -# ||mirror.co.uk^*/sponsors/ (easylistchina+easylist.txt: 43985) -.mirror.co.uk/.*/sponsors/ -# ||mirror.co.uk^*/gutters/ (easylistchina+easylist.txt: 43984) -.mirror.co.uk/.*/gutters/ -# ||minnpost.com^*/sponsor/ (easylistchina+easylist.txt: 43983) -.minnpost.com/.*/sponsor/ -# ||mininova.org/js/vidukilayer.js (easylistchina+easylist.txt: 43982) -.mininova.org/js/vidukilayer\.js -# ||miniclipcdn.com/images/takeovers/ (easylistchina+easylist.txt: 43981) -.miniclipcdn.com/images/takeovers/ -# ||mindfood.com/upload/images/wallpaper_images/ (easylistchina+easylist.txt: 43980) -.mindfood.com/upload/images/wallpaper_images/ -# ||milanounited.co.za/images/sponsor_ (easylistchina+easylist.txt: 43979) -.milanounited.co.za/images/sponsor_ -# ||mikejung.biz/images/*/728x90xLiquidWeb_ (easylistchina+easylist.txt: 43978) -.mikejung.biz/images/.*/728x90xLiquidWeb_ -# ||mightyupload.com/popuu.js (easylistchina+easylist.txt: 43977) -.mightyupload.com/popuu\.js -# ||midlandsradio.fm/bms/ (easylistchina+easylist.txt: 43976) -.midlandsradio.fm/bms/ -# ||middle-east-online.com^*/meoadv/ (easylistchina+easylist.txt: 43975) -.middle-east-online.com/.*/meoadv/ -# ||michronicleonline.com/images/banners/ (easylistchina+easylist.txt: 43974) -.michronicleonline.com/images/banners/ -# ||micast.tv/clean.php (easylistchina+easylist.txt: 43973) -.micast.tv/clean\.php -# ||miamiherald.com^*/teamfanshop/ (easylistchina+easylist.txt: 43972) -.miamiherald.com/.*/teamfanshop/ -# ||miamiherald.com^*/dealsaver/ (easylistchina+easylist.txt: 43971) -.miamiherald.com/.*/dealsaver/ -# ||mi-pro.co.uk/banners/ (easylistchina+easylist.txt: 43970) -.mi-pro.co.uk/banners/ -# ||mhvillage.com/ppc.php? (easylistchina+easylist.txt: 43969) -.mhvillage.com/ppc\.php\? -# ||mgnetwork.com/dealtaker/ (easylistchina+easylist.txt: 43968) -.mgnetwork.com/dealtaker/ -# ||mgid.com/ban/ (easylistchina+easylist.txt: 43967) -.mgid.com/ban/ -# ||mg.co.za^*/wallpaper (easylistchina+easylist.txt: 43966) -.mg.co.za/.*/wallpaper -# ||mfcdn.net/media/game321/$image (easylistchina+easylist.txt: 43964) -.mfcdn.net/media/game321/ -# ||mfcdn.net/media/*right (easylistchina+easylist.txt: 43963) -.mfcdn.net/media/.*right -# ||mfcdn.net/media/*left (easylistchina+easylist.txt: 43962) -.mfcdn.net/media/.*left -# ||metromedia.co.za/bannersys/banners/ (easylistchina+easylist.txt: 43961) -.metromedia.co.za/bannersys/banners/ -# ||metrolyrics.com/js/min/tonefuse.js (easylistchina+easylist.txt: 43960) -.metrolyrics.com/js/min/tonefuse\.js -# ||metradar.ch^*/banner_ (easylistchina+easylist.txt: 43959) -.metradar.ch/.*/banner_ -# ||meteox.com/bannerdetails.aspx? (easylistchina+easylist.txt: 43958) -.meteox.com/bannerdetails\.aspx\? -# ||meteox.co.uk/bannerdetails.aspx? (easylistchina+easylist.txt: 43957) -.meteox.co.uk/bannerdetails\.aspx\? -# ||meteovista.co.uk/go/banner/ (easylistchina+easylist.txt: 43956) -.meteovista.co.uk/go/banner/ -# ||meteomedia.com^*&placement (easylistchina+easylist.txt: 43955) -.meteomedia.com/.*&placement -# ||messianictimes.com/images/Word%20of%20Messiah%20Ministries1.png (easylistchina+easylist.txt: 43954) -.messianictimes.com/images/Word%20of%20Messiah%20Ministries1\.png -# ||messianictimes.com/images/MJBI.org.gif (easylistchina+easylist.txt: 43953) -.messianictimes.com/images/MJBI\.org\.gif -# ||messianictimes.com/images/Jews%20for%20Jesus%20Banner.png (easylistchina+easylist.txt: 43952) -.messianictimes.com/images/Jews%20for%20Jesus%20Banner\.png -# ||messianictimes.com/images/Israel%20Today%20Logo.png (easylistchina+easylist.txt: 43951) -.messianictimes.com/images/Israel%20Today%20Logo\.png -# ||messianictimes.com/images/banners/ (easylistchina+easylist.txt: 43950) -.messianictimes.com/images/banners/ -# ||messianictimes.com/images/4-13/reach.jpg (easylistchina+easylist.txt: 43949) -.messianictimes.com/images/4-13/reach\.jpg -# ||messianictimes.com/images/1-13/ba_mhfinal_ (easylistchina+easylist.txt: 43948) -.messianictimes.com/images/1-13/ba_mhfinal_ -# ||merriam-webster.com^*/accipiter.js (easylistchina+easylist.txt: 43947) -.merriam-webster.com/.*/accipiter\.js -# ||merriam-webster.com/creative.php? (easylistchina+easylist.txt: 43946) -.merriam-webster.com/creative\.php\? -# ||mentalfloss.com^*-skin- (easylistchina+easylist.txt: 43945) -.mentalfloss.com/.*-skin- -# ||menafn.com^*/banner_ (easylistchina+easylist.txt: 43944) -.menafn.com/.*/banner_ -# ||memory-alpha.org/__varnish_liftium/ (easylistchina+easylist.txt: 43942) -.memory-alpha.org/__varnish_liftium/ -# ||meizufans.eu/vifocal.gif (easylistchina+easylist.txt: 43941) -.meizufans.eu/vifocal\.gif -# ||meizufans.eu/merimobiles.gif (easylistchina+easylist.txt: 43940) -.meizufans.eu/merimobiles\.gif -# ||meizufans.eu/efox.gif (easylistchina+easylist.txt: 43939) -.meizufans.eu/efox\.gif -# ||megauploadtrend.com/iframe/if.php? (easylistchina+easylist.txt: 43937) -.megauploadtrend.com/iframe/if\.php\? -# ||megashares.com/cache_program_banner.html (easylistchina+easylist.txt: 43935) -.megashares.com/cache_program_banner\.html -# ||megasearch.us/turboflirt.gif (easylistchina+easylist.txt: 43934) -.megasearch.us/turboflirt\.gif -# ||megasearch.us/ifx/ifx.php? (easylistchina+easylist.txt: 43933) -.megasearch.us/ifx/ifx\.php\? -# ||meetic.com/js/*/site_under_ (easylistchina+easylist.txt: 43932) -.meetic.com/js/.*/site_under_ -# ||medicaldaily.com/views/images/banners/ (easylistchina+easylist.txt: 43931) -.medicaldaily.com/views/images/banners/ -# ||mediaweek.com.au/storage/*_234x234.jpg? (easylistchina+easylist.txt: 43930) -.mediaweek.com.au/storage/.*_234x234\.jpg\? -# ||mediaupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 43929) -.mediaupdate.co.za/temp/banner_ -# ||mediaticks.com/images/genx.jpg (easylistchina+easylist.txt: 43928) -.mediaticks.com/images/genx\.jpg -# ||mediaticks.com/images/genx-infotech.jpg (easylistchina+easylist.txt: 43927) -.mediaticks.com/images/genx-infotech\.jpg -# ||mediaticks.com/bollywood.jpg (easylistchina+easylist.txt: 43926) -.mediaticks.com/bollywood\.jpg -# ||mediaspanonline.com/inc.php?uri=/&bannerPositions= (easylistchina+easylist.txt: 43923) -.mediaspanonline.com/inc\.php\?uri=/&bannerPositions= -# ||mediaspanonline.com/images/buy-itunes.png (easylistchina+easylist.txt: 43922) -.mediaspanonline.com/images/buy-itunes\.png -# ||mediamgr.ugo.com^ (easylistchina+easylist.txt: 43921) -.mediamgr.ugo.com -# ||mediafiretrend.com/turboflirt.gif (easylistchina+easylist.txt: 43920) -.mediafiretrend.com/turboflirt\.gif -# ||mediafiretrend.com/ifx/ifx.php? (easylistchina+easylist.txt: 43919) -.mediafiretrend.com/ifx/ifx\.php\? -# ||mediafire.re/popup.js (easylistchina+easylist.txt: 43918) -.mediafire.re/popup\.js -# ||mediafire.com^*/rockmelt_tabcontent.jpg (easylistchina+easylist.txt: 43917) -.mediafire.com/.*/rockmelt_tabcontent\.jpg -# ||mediafire.com^*/linkto/default-$subdocument (easylistchina+easylist.txt: 43916) -.mediafire.com/.*/linkto/default- -# ||mediafire.com/templates/linkto/ (easylistchina+easylist.txt: 43915) -.mediafire.com/templates/linkto/ -# ||mediafire.com/images/rockmelt/ (easylistchina+easylist.txt: 43914) -.mediafire.com/images/rockmelt/ -# ||media.abc.go.com^*/callouts/ (easylistchina+easylist.txt: 43912) -.media.abc.go.com/.*/callouts/ -# ||media-mgmt.armorgames.com^ (easylistchina+easylist.txt: 43911) -.media-mgmt.armorgames.com -# ||media-imdb.com^*/clicktale-$script (easylistchina+easylist.txt: 43910) -.media-imdb.com/.*/clicktale- -# ||media-imdb.com^*/affiliates/ (easylistchina+easylist.txt: 43909) -.media-imdb.com/.*/affiliates/ -# ||media-imdb.com/images/*/mptv_banner_ (easylistchina+easylist.txt: 43908) -.media-imdb.com/images/.*/mptv_banner_ -# ||media-delivery.armorgames.com^ (easylistchina+easylist.txt: 43907) -.media-delivery.armorgames.com -# ||medhelp.org/hserver/ (easylistchina+easylist.txt: 43906) -.medhelp.org/hserver/ -# ||mechodownload.com/forum/images/affiliates/ (easylistchina+easylist.txt: 43905) -.mechodownload.com/forum/images/affiliates/ -# ||meanjin.com.au/static/images/sponsors.jpg (easylistchina+easylist.txt: 43904) -.meanjin.com.au/static/images/sponsors\.jpg -# ||mealsandsteals.sandiego6.com^ (easylistchina+easylist.txt: 43903) -.mealsandsteals.sandiego6.com -# ||mcvuk.com/static/banners/ (easylistchina+easylist.txt: 43902) -.mcvuk.com/static/banners/ -# ||mcstatic.com^*/billboard_ (easylistchina+easylist.txt: 43901) -.mcstatic.com/.*/billboard_ -# ||mcsesports.com/images/sponsors/ (easylistchina+easylist.txt: 43900) -.mcsesports.com/images/sponsors/ -# ||mcnews.com.au/banners/ (easylistchina+easylist.txt: 43899) -.mcnews.com.au/banners/ -# ||mcjonline.com/filemanager/userfiles/banners/ (easylistchina+easylist.txt: 43898) -.mcjonline.com/filemanager/userfiles/banners/ -# ||mccont.com/takeover/ (easylistchina+easylist.txt: 43897) -.mccont.com/takeover/ -# ||mccont.com/sda/ (easylistchina+easylist.txt: 43896) -.mccont.com/sda/ -# ||mccont.com/campaign%20management/ (easylistchina+easylist.txt: 43895) -.mccont.com/campaign%20management/ -# ||mbl.is/mm/augl/ (easylistchina+easylist.txt: 43894) -.mbl.is/mm/augl/ -# ||mbl.is/augl/ (easylistchina+easylist.txt: 43893) -.mbl.is/augl/ -# ||mb.hockeybuzz.com^ (easylistchina+easylist.txt: 43892) -.mb.hockeybuzz.com -# ||mb.com.ph^*/skyscraper- (easylistchina+easylist.txt: 43891) -.mb.com.ph/.*/skyscraper- -# ||maxgames.com^*/sponsor_ (easylistchina+easylist.txt: 43890) -.maxgames.com/.*/sponsor_ -# ||maxconsole.com/maxconsole/banners/ (easylistchina+easylist.txt: 43889) -.maxconsole.com/maxconsole/banners/ -# ||mauritiusnews.co.uk/images/banners/ (easylistchina+easylist.txt: 43888) -.mauritiusnews.co.uk/images/banners/ -# ||mathforum.org/images/tutor.gif (easylistchina+easylist.txt: 43887) -.mathforum.org/images/tutor\.gif -# ||mashable.com/tripleclick.html (easylistchina+easylist.txt: 43886) -.mashable.com/tripleclick\.html -# ||mary.com/728_header.php (easylistchina+easylist.txt: 43885) -.mary.com/728_header\.php -# ||marketplace.org^*/support_block/ (easylistchina+easylist.txt: 43884) -.marketplace.org/.*/support_block/ -# ||marketnewsvideo.com/mnvport160.gif (easylistchina+easylist.txt: 43883) -.marketnewsvideo.com/mnvport160\.gif -# ||marketnewsvideo.com/etfchannel/evfad1.gif (easylistchina+easylist.txt: 43882) -.marketnewsvideo.com/etfchannel/evfad1\.gif -# ||marketintelligencecenter.com/images/brokers/ (easylistchina+easylist.txt: 43881) -.marketintelligencecenter.com/images/brokers/ -# ||marketingupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 43880) -.marketingupdate.co.za/temp/banner_ -# ||marketingsolutions.yahoo.com^ (easylistchina+easylist.txt: 43879) -.marketingsolutions.yahoo.com -# ||marketingpilgrim.com/wp-content/uploads/*/trackur.com- (easylistchina+easylist.txt: 43878) -.marketingpilgrim.com/wp-content/uploads/.*/trackur\.com- -# ||marineterms.com/images/banners/ (easylistchina+easylist.txt: 43877) -.marineterms.com/images/banners/ -# ||marengo-uniontimes.com/images/banners/ (easylistchina+easylist.txt: 43876) -.marengo-uniontimes.com/images/banners/ -# ||maravipost.com/images/banners/ (easylistchina+easylist.txt: 43875) -.maravipost.com/images/banners/ -# ||mapsofindia.com/widgets/tribalfusionboxadd.html (easylistchina+easylist.txt: 43874) -.mapsofindia.com/widgets/tribalfusionboxadd\.html -# ||manxradio.com^*/banners_ (easylistchina+easylist.txt: 43873) -.manxradio.com/.*/banners_ -# ||manutd.com^*/Sponsors/ (easylistchina+easylist.txt: 43872) -.manutd.com/.*/Sponsors/ -# ||manilatimes.net/images/banners/ (easylistchina+easylist.txt: 43871) -.manilatimes.net/images/banners/ -# ||manicapost.com^*/banners/ (easylistchina+easylist.txt: 43870) -.manicapost.com/.*/banners/ -# ||maniastreaming.com/pp2/ (easylistchina+easylist.txt: 43869) -.maniastreaming.com/pp2/ -# ||mani-admin-plugin.com^*/banners/ (easylistchina+easylist.txt: 43868) -.mani-admin-plugin.com/.*/banners/ -# ||manhattantimesnews.com/images/banners/ (easylistchina+easylist.txt: 43867) -.manhattantimesnews.com/images/banners/ -# ||mangaupdates.com/affiliates/ (easylistchina+easylist.txt: 43866) -.mangaupdates.com/affiliates/ -# ||mangarush.com/xtend.php (easylistchina+easylist.txt: 43865) -.mangarush.com/xtend\.php -# ||mangareader.net/images/800-x-100 (easylistchina+easylist.txt: 43864) -.mangareader.net/images/800-x-100 -# ||mangafox.com/media/game321/ (easylistchina+easylist.txt: 43863) -.mangafox.com/media/game321/ -# ||malwaredomains.com/ra.jpg (easylistchina+easylist.txt: 43862) -.malwaredomains.com/ra\.jpg -# ||maltatoday.com.mt/ui_frontend/display_external_module/ (easylistchina+easylist.txt: 43861) -.maltatoday.com.mt/ui_frontend/display_external_module/ -# ||malaysiakini.com/misc/banners/ (easylistchina+easylist.txt: 43860) -.malaysiakini.com/misc/banners/ -# ||malaysiabay.org^*creatives.php? (easylistchina+easylist.txt: 43859) -.malaysiabay.org/.*creatives\.php\? -# ||malaysiabay.org^*/creative.js (easylistchina+easylist.txt: 43858) -.malaysiabay.org/.*/creative\.js -# ||makeagif.com/parts/fiframe.php (easylistchina+easylist.txt: 43857) -.makeagif.com/parts/fiframe\.php -# ||majorgeeks.com^*/banners/ (easylistchina+easylist.txt: 43856) -.majorgeeks.com/.*/banners/ -# ||majorgeeks.com/images/mg120.jpg (easylistchina+easylist.txt: 43855) -.majorgeeks.com/images/mg120\.jpg -# ||majorgeeks.com/images/mb-hb-2.jpg (easylistchina+easylist.txt: 43854) -.majorgeeks.com/images/mb-hb-2\.jpg -# ||majorgeeks.com/images/download_sd_ (easylistchina+easylist.txt: 43853) -.majorgeeks.com/images/download_sd_ -# ||majorgeeks.com/images/*_336x280.jpg (easylistchina+easylist.txt: 43852) -.majorgeeks.com/images/.*_336x280\.jpg -# ||majorgeeks.com/aff/ (easylistchina+easylist.txt: 43851) -.majorgeeks.com/aff/ -# ||mailinator.com^*/clickbanner.jpg (easylistchina+easylist.txt: 43850) -.mailinator.com/.*/clickbanner\.jpg -# ||mailinator.com/images/abine/leaderboard- (easylistchina+easylist.txt: 43849) -.mailinator.com/images/abine/leaderboard- -# ||mail.yahoo.com/neo/mbimg?av/curveball/ds/ (easylistchina+easylist.txt: 43848) -.mail.yahoo.com/neo/mbimg\?av/curveball/ds/ -# ||mail.yahoo.com/mc/md.php? (easylistchina+easylist.txt: 43847) -.mail.yahoo.com/mc/md\.php\? -# ||madville.com/afs.php (easylistchina+easylist.txt: 43846) -.madville.com/afs\.php -# ||madskristensen.net/discount2.js (easylistchina+easylist.txt: 43845) -.madskristensen.net/discount2\.js -# ||mads.dailymail.co.uk^ (easylistchina+easylist.txt: 43844) -.mads.dailymail.co.uk -# ||madamenoire.com/wp-content/*_Reskin-$image (easylistchina+easylist.txt: 43843) -.madamenoire.com/wp-content/.*_Reskin- -# ||macworld.com/ads/ (easylistchina+easylist.txt: 43842) -.macworld.com/ads/ -# ||macworld.co.uk^*/textdeals/ (easylistchina+easylist.txt: 43841) -.macworld.co.uk/.*/textdeals/ -# ||macworld.co.uk/promo/ (easylistchina+easylist.txt: 43840) -.macworld.co.uk/promo/ -# ||macupdate.com/js/google_service.js (easylistchina+easylist.txt: 43839) -.macupdate.com/js/google_service\.js -# ||macobserver.com^*/deal_brothers/ (easylistchina+easylist.txt: 43838) -.macobserver.com/.*/deal_brothers/ -# ||macobserver.com/js/givetotmo.js (easylistchina+easylist.txt: 43837) -.macobserver.com/js/givetotmo\.js -# ||macmillandictionary.com/info/frame.html?zone= (easylistchina+easylist.txt: 43836) -.macmillandictionary.com/info/frame\.html\?zone= -# ||maciverse.mangoco.netdna-cdn.com^*banner (easylistchina+easylist.txt: 43835) -.maciverse.mangoco.netdna-cdn.com/.*banner -# ||macintouch.com/images/owc_ (easylistchina+easylist.txt: 43834) -.macintouch.com/images/owc_ -# ||macintouch.com/images/amaz_ (easylistchina+easylist.txt: 43833) -.macintouch.com/images/amaz_ -# ||machovideo.com/img/site/postimg2/rotate.php (easylistchina+easylist.txt: 43832) -.machovideo.com/img/site/postimg2/rotate\.php -# ||macblurayplayer.com/image/amazon- (easylistchina+easylist.txt: 43831) -.macblurayplayer.com/image/amazon- -# ||macaunews.com.mo/images/stories/banners/ (easylistchina+easylist.txt: 43830) -.macaunews.com.mo/images/stories/banners/ -# ||macaudailytimes.com.mo/files/banners/ (easylistchina+easylist.txt: 43829) -.macaudailytimes.com.mo/files/banners/ -# ||m4carbine.net/tabs/ (easylistchina+easylist.txt: 43828) -.m4carbine.net/tabs/ -# ||m-w.com/creative.php (easylistchina+easylist.txt: 43827) -.m-w.com/creative\.php -# ||lyricsfreak.com^*/overlay.js (easylistchina+easylist.txt: 43826) -.lyricsfreak.com/.*/overlay\.js -# ||lyrics5ab.com/wp-content/add$subdocument (easylistchina+easylist.txt: 43825) -.lyrics5ab.com/wp-content/add -# ||lygo.com/scripts/catman/ (easylistchina+easylist.txt: 43824) -.lygo.com/scripts/catman/ -# ||lycos.com/catman/ (easylistchina+easylist.txt: 43823) -.lycos.com/catman/ -# ||lw2.gamecopyworld.com^ (easylistchina+easylist.txt: 43822) -.lw2.gamecopyworld.com -# ||lw1.lnkworld.com^$subdocument (easylistchina+easylist.txt: 43821) -.lw1.lnkworld.com -# ||lw1.gamecopyworld.com^$subdocument (easylistchina+easylist.txt: 43820) -.lw1.gamecopyworld.com -# ||luxury4play.com^*/ads/ (easylistchina+easylist.txt: 43819) -.luxury4play.com/.*/ads/ -# ||luckyshare.net/images/sda/ (easylistchina+easylist.txt: 43818) -.luckyshare.net/images/sda/ -# ||luckyshare.net/images/2top.png (easylistchina+easylist.txt: 43817) -.luckyshare.net/images/2top\.png -# ||luckyshare.net/images/1gotlucky.png (easylistchina+easylist.txt: 43816) -.luckyshare.net/images/1gotlucky\.png -# ||lucianne.com^*_*.html (easylistchina+easylist.txt: 43815) -.lucianne.com/.*_.*\.html -# ||lshunter.tv^*&task=getbets$xmlhttprequest (easylistchina+easylist.txt: 43814) -.lshunter.tv/.*&task=getbets -# ||lshunter.tv/images/bets/ (easylistchina+easylist.txt: 43813) -.lshunter.tv/images/bets/ -# ||lowyat.net/mainpage/background.jpg (easylistchina+easylist.txt: 43812) -.lowyat.net/mainpage/background\.jpg -# ||lowyat.net/lowyat/lowyat-bg.jpg (easylistchina+easylist.txt: 43811) -.lowyat.net/lowyat/lowyat-bg\.jpg -# ||lowendbox.com/wp-content/themes/leb/banners/ (easylistchina+easylist.txt: 43810) -.lowendbox.com/wp-content/themes/leb/banners/ -# ||lowellsun.com/litebanner/ (easylistchina+easylist.txt: 43809) -.lowellsun.com/litebanner/ -# ||lowbird.com/lbpun.php (easylistchina+easylist.txt: 43808) -.lowbird.com/lbpun\.php -# ||lowbird.com/lbpu.php (easylistchina+easylist.txt: 43807) -.lowbird.com/lbpu\.php -# ||lostrabbitmedia.com/images/banners/ (easylistchina+easylist.txt: 43806) -.lostrabbitmedia.com/images/banners/ -# ||looky.hyves.org^ (easylistchina+easylist.txt: 43805) -.looky.hyves.org -# ||lookbook.nu^*.html?$subdocument (easylistchina+easylist.txt: 43804) -.lookbook.nu/.*\.html\? -# ||lookbook.nu/show_skyscraper.html (easylistchina+easylist.txt: 43803) -.lookbook.nu/show_skyscraper\.html -# ||lookbook.nu/show_leaderboard.html (easylistchina+easylist.txt: 43802) -.lookbook.nu/show_leaderboard\.html -# ||londonstockexchange.com^*/fx.gif (easylistchina+easylist.txt: 43801) -.londonstockexchange.com/.*/fx\.gif -# ||londonprivaterentals.standard.co.uk^ (easylistchina+easylist.txt: 43800) -.londonprivaterentals.standard.co.uk -# ||london2012.com/imgml/partners/footer/ (easylistchina+easylist.txt: 43799) -.london2012.com/imgml/partners/footer/ -# ||london2012.com/img/sponsors/ (easylistchina+easylist.txt: 43798) -.london2012.com/img/sponsors/ -# ||lolzbook.com/test/ (easylistchina+easylist.txt: 43797) -.lolzbook.com/test/ -# ||loleasy.com^*/adsmanager.js (easylistchina+easylist.txt: 43796) -.loleasy.com/.*/adsmanager\.js -# ||loleasy.com/promo/ (easylistchina+easylist.txt: 43795) -.loleasy.com/promo/ -# ||logotv.com/content/skins/ (easylistchina+easylist.txt: 43794) -.logotv.com/content/skins/ -# ||logoopenstock.com/img/banners/ (easylistchina+easylist.txt: 43793) -.logoopenstock.com/img/banners/ -# ||locanto.co.za/run/afcbackfill/ (easylistchina+easylist.txt: 43792) -.locanto.co.za/run/afcbackfill/ -# ||localvictory.com^*/Trailblazer-Ad.png (easylistchina+easylist.txt: 43791) -.localvictory.com/.*/Trailblazer-Ad\.png -# ||localdirectories.com.au^*/bannerimages/ (easylistchina+easylist.txt: 43790) -.localdirectories.com.au/.*/bannerimages/ -# ||lmgtfy.com/s/images/ls_ (easylistchina+easylist.txt: 43789) -.lmgtfy.com/s/images/ls_ -# ||ll.a.hulu.com^ (easylistchina+easylist.txt: 43788) -.ll.a.hulu.com -# ||livingscoop.com/vastload.php (easylistchina+easylist.txt: 43787) -.livingscoop.com/vastload\.php -# ||livetvcenter.com/satellitedirect_ (easylistchina+easylist.txt: 43786) -.livetvcenter.com/satellitedirect_ -# ||livetv.ru/mb/ (easylistchina+easylist.txt: 43785) -.livetv.ru/mb/ -# ||livetradingnews.com/wp-content/uploads/vamp_cigarettes.png (easylistchina+easylist.txt: 43784) -.livetradingnews.com/wp-content/uploads/vamp_cigarettes\.png -# ||livestream.com^*/overlay/ (easylistchina+easylist.txt: 43783) -.livestream.com/.*/overlay/ -# ||livesearch.ninemsn.com.au^$subdocument (easylistchina+easylist.txt: 43782) -.livesearch.ninemsn.com.au -# ||livescore.in/res/image/bookmaker-list.png (easylistchina+easylist.txt: 43781) -.livescore.in/res/image/bookmaker-list\.png -# ||liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn.gif (easylistchina+easylist.txt: 43780) -.liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn\.gif -# ||livejasmin.com/freechat.php (easylistchina+easylist.txt: 43779) -.livejasmin.com/freechat\.php -# ||live-proxy.com/vectrotunnel-logo.jpg (easylistchina+easylist.txt: 43778) -.live-proxy.com/vectrotunnel-logo\.jpg -# ||live-proxy.com/hide-my-ass.gif (easylistchina+easylist.txt: 43777) -.live-proxy.com/hide-my-ass\.gif -# ||littleindia.com/files/banners/ (easylistchina+easylist.txt: 43776) -.littleindia.com/files/banners/ -# ||liquidcompass.net^*/purchase_ (easylistchina+easylist.txt: 43775) -.liquidcompass.net/.*/purchase_ -# ||liquidcompass.net/playerapi/redirect/ (easylistchina+easylist.txt: 43774) -.liquidcompass.net/playerapi/redirect/ -# ||lionsrugby.co.za^*/sponsors. (easylistchina+easylist.txt: 43773) -.lionsrugby.co.za/.*/sponsors\. -# ||linuxtopia.org/includes/$subdocument (easylistchina+easylist.txt: 43772) -.linuxtopia.org/includes/ -# ||linuxsat-support.com/vsa_banners/ (easylistchina+easylist.txt: 43771) -.linuxsat-support.com/vsa_banners/ -# ||linuxmint.com/pictures/sponsors/ (easylistchina+easylist.txt: 43770) -.linuxmint.com/pictures/sponsors/ -# ||linuxmint.com/img/sponsor/ (easylistchina+easylist.txt: 43769) -.linuxmint.com/img/sponsor/ -# ||linuxinsider.com/images/sda/ (easylistchina+easylist.txt: 43768) -.linuxinsider.com/images/sda/ -# ||linksrank.com/links/ (easylistchina+easylist.txt: 43767) -.linksrank.com/links/ -# ||linksave.in^*/downloadbutton_highspeed.png (easylistchina+easylist.txt: 43766) -.linksave.in/.*/downloadbutton_highspeed\.png -# ||linksave.in/img/downloadbutton_sh.png (easylistchina+easylist.txt: 43765) -.linksave.in/img/downloadbutton_sh\.png -# ||linksave.in/img/downloadbutton_hs.png (easylistchina+easylist.txt: 43764) -.linksave.in/img/downloadbutton_hs\.png -# ||linksave.in/img/downloadbutton_alt.png (easylistchina+easylist.txt: 43763) -.linksave.in/img/downloadbutton_alt\.png -# ||linksafe.info^*/mirror.png (easylistchina+easylist.txt: 43762) -.linksafe.info/.*/mirror\.png -# ||linkmoon.net/banners/ (easylistchina+easylist.txt: 43761) -.linkmoon.net/banners/ -# ||linkfm.co.za/images/banners/ (easylistchina+easylist.txt: 43760) -.linkfm.co.za/images/banners/ -# ||linkcentre.com/top_fp.php (easylistchina+easylist.txt: 43759) -.linkcentre.com/top_fp\.php -# ||linguee.com/banner/ (easylistchina+easylist.txt: 43758) -.linguee.com/banner/ -# ||limetorrentlinkmix.com/rd18/dop.js (easylistchina+easylist.txt: 43757) -.limetorrentlinkmix.com/rd18/dop\.js -# ||limesurvey.org/images/banners/ (easylistchina+easylist.txt: 43756) -.limesurvey.org/images/banners/ -# ||lifetips.com/sponsors/ (easylistchina+easylist.txt: 43755) -.lifetips.com/sponsors/ -# ||lifeinqueensland.com/images/156x183a_ (easylistchina+easylist.txt: 43754) -.lifeinqueensland.com/images/156x183a_ -# ||life.imagepix.org^ (easylistchina+easylist.txt: 43753) -.life.imagepix.org -# ||licensing.biz/media/banners/ (easylistchina+easylist.txt: 43752) -.licensing.biz/media/banners/ -# ||libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300.gif? (easylistchina+easylist.txt: 43751) -.libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300\.gif\? -# ||lfgcomic.com/wp-content/uploads/*/PageSkin_ (easylistchina+easylist.txt: 43750) -.lfgcomic.com/wp-content/uploads/.*/PageSkin_ -# ||lfcimages.com^*/sponsor- (easylistchina+easylist.txt: 43749) -.lfcimages.com/.*/sponsor- -# ||lfcimages.com^*/partner- (easylistchina+easylist.txt: 43748) -.lfcimages.com/.*/partner- -# ||letswatchsomething.com/images/filestreet_banner.jpg (easylistchina+easylist.txt: 43747) -.letswatchsomething.com/images/filestreet_banner\.jpg -# ||letour.fr/img/v6/sprite_partners_2x.png (easylistchina+easylist.txt: 43746) -.letour.fr/img/v6/sprite_partners_2x\.png -# ||letitbit.net/images/other/inst_forex_ (easylistchina+easylist.txt: 43745) -.letitbit.net/images/other/inst_forex_ -# ||lespagesjaunesafrique.com/bandeaux/ (easylistchina+easylist.txt: 43744) -.lespagesjaunesafrique.com/bandeaux/ -# ||lens101.com/images/banner.jpg (easylistchina+easylist.txt: 43743) -.lens101.com/images/banner\.jpg -# ||legalbusinessonline.com/popup/albpartners.aspx (easylistchina+easylist.txt: 43742) -.legalbusinessonline.com/popup/albpartners\.aspx -# ||lecydre.com/proxy.png (easylistchina+easylist.txt: 43741) -.lecydre.com/proxy\.png -# ||learnspanishtoday.com/aff/img/banners/ (easylistchina+easylist.txt: 43740) -.learnspanishtoday.com/aff/img/banners/ -# ||learnphotoediting.net/banners/ (easylistchina+easylist.txt: 43739) -.learnphotoediting.net/banners/ -# ||leagueunlimited.com/images/rooty/ (easylistchina+easylist.txt: 43738) -.leagueunlimited.com/images/rooty/ -# ||leadership.ng/cheki- (easylistchina+easylist.txt: 43737) -.leadership.ng/cheki- -# ||leader.co.za/leadership/banners/ (easylistchina+easylist.txt: 43736) -.leader.co.za/leadership/banners/ -# ||lazygirls.info/click.php (easylistchina+easylist.txt: 43735) -.lazygirls.info/click\.php -# ||lazygamer.net/kalahari.gif (easylistchina+easylist.txt: 43734) -.lazygamer.net/kalahari\.gif -# ||latex-community.org/images/banners/ (easylistchina+easylist.txt: 43733) -.latex-community.org/images/banners/ -# ||lasttorrents.org/pcmadd.swf (easylistchina+easylist.txt: 43732) -.lasttorrents.org/pcmadd\.swf -# ||lastminute.com^*/universal.html? (easylistchina+easylist.txt: 43731) -.lastminute.com/.*/universal\.html\? -# ||laredodaily.com/images/banners/ (easylistchina+easylist.txt: 43730) -.laredodaily.com/images/banners/ -# ||laptopmag.com/images/sponsorships/ (easylistchina+easylist.txt: 43729) -.laptopmag.com/images/sponsorships/ -# ||laobserved.com/tch-ad.jpg (easylistchina+easylist.txt: 43728) -.laobserved.com/tch-ad\.jpg -# ||lankabusinessonline.com/images/banners/ (easylistchina+easylist.txt: 43727) -.lankabusinessonline.com/images/banners/ -# ||lancasteronline.com^*/weather_sponsor.gif (easylistchina+easylist.txt: 43726) -.lancasteronline.com/.*/weather_sponsor\.gif -# ||lancasteronline.com^*/done_deal/ (easylistchina+easylist.txt: 43725) -.lancasteronline.com/.*/done_deal/ -# ||laliga.es/img/patrocinadores- (easylistchina+easylist.txt: 43724) -.laliga.es/img/patrocinadores- -# ||lake-link.com/images/sponsorLogos/ (easylistchina+easylist.txt: 43723) -.lake-link.com/images/sponsorLogos/ -# ||lagacetanewspaper.com^*/banners/ (easylistchina+easylist.txt: 43722) -.lagacetanewspaper.com/.*/banners/ -# ||labx.com/web/banners/ (easylistchina+easylist.txt: 43721) -.labx.com/web/banners/ -# ||labtimes.org/banner/ (easylistchina+easylist.txt: 43720) -.labtimes.org/banner/ -# ||l4dmaps.com/img/right_gameservers.gif (easylistchina+easylist.txt: 43719) -.l4dmaps.com/img/right_gameservers\.gif -# ||l4dmaps.com/i/right_dllme.gif (easylistchina+easylist.txt: 43718) -.l4dmaps.com/i/right_dllme\.gif -# ||l.yimg.com/mq/a/ (easylistchina+easylist.txt: 43717) -.l.yimg.com/mq/a/ -# ||l.yimg.com/ao/i/ad/ (easylistchina+easylist.txt: 43716) -.l.yimg.com/ao/i/ad/ -# ||l.yimg.com/a/i/*_wallpaper$image (easylistchina+easylist.txt: 43715) -.l.yimg.com/a/i/.*_wallpaper -# ||kyivpost.com/media/banners/ (easylistchina+easylist.txt: 43714) -.kyivpost.com/media/banners/ -# ||kxlh.com/images/banner/ (easylistchina+easylist.txt: 43713) -.kxlh.com/images/banner/ -# ||kwikupload.com/images/dlbtn.png (easylistchina+easylist.txt: 43710) -.kwikupload.com/images/dlbtn\.png -# ||kwanalu.co.za/upload/ad/ (easylistchina+easylist.txt: 43709) -.kwanalu.co.za/upload/ad/ -# ||kvcr.org^*/sponsors/ (easylistchina+easylist.txt: 43708) -.kvcr.org/.*/sponsors/ -# ||kuwaittimes.net/banners/ (easylistchina+easylist.txt: 43707) -.kuwaittimes.net/banners/ -# ||kukuplay.com/upload/*.swf (easylistchina+easylist.txt: 43706) -.kukuplay.com/upload/.*\.swf -# ||kuiken.co/static/w.js (easylistchina+easylist.txt: 43705) -.kuiken.co/static/w\.js -# ||ktradionetwork.com^*/banners/ (easylistchina+easylist.txt: 43704) -.ktradionetwork.com/.*/banners/ -# ||kstp.com^*/flexhousepromotions/ (easylistchina+easylist.txt: 43703) -.kstp.com/.*/flexhousepromotions/ -# ||ksstradio.com/wp-content/banners/ (easylistchina+easylist.txt: 43702) -.ksstradio.com/wp-content/banners/ -# ||krzk.com/uploads/banners/ (easylistchina+easylist.txt: 43701) -.krzk.com/uploads/banners/ -# ||kron.com/uploads/*-ad-$image (easylistchina+easylist.txt: 43700) -.kron.com/uploads/.*-ad- -# ||krebsonsecurity.com/b-kb/ (easylistchina+easylist.txt: 43699) -.krebsonsecurity.com/b-kb/ -# ||krebsonsecurity.com/b-ga/ (easylistchina+easylist.txt: 43698) -.krebsonsecurity.com/b-ga/ -# ||krapps.com^*-banner- (easylistchina+easylist.txt: 43697) -.krapps.com/.*-banner- -# ||kovideo.net^*.php?user_ (easylistchina+easylist.txt: 43696) -.kovideo.net/.*\.php\?user_ -# ||koreatimes.co.kr/www/images/bn/ (easylistchina+easylist.txt: 43695) -.koreatimes.co.kr/www/images/bn/ -# ||koreatimes.co.kr/upload/ad/ (easylistchina+easylist.txt: 43694) -.koreatimes.co.kr/upload/ad/ -# ||koreatimes.co.kr/images/bn/ (easylistchina+easylist.txt: 43693) -.koreatimes.co.kr/images/bn/ -# ||koreatimes.co.kr/ad/ (easylistchina+easylist.txt: 43692) -.koreatimes.co.kr/ad/ -# ||koreanmovie.com/img/banner/banner.jpg (easylistchina+easylist.txt: 43691) -.koreanmovie.com/img/banner/banner\.jpg -# ||koraliga.com/open.js (easylistchina+easylist.txt: 43690) -.koraliga.com/open\.js -# ||kontraband.com/media/takeovers/ (easylistchina+easylist.txt: 43689) -.kontraband.com/media/takeovers/ -# ||kongregate.com/images/help_devs_*.png (easylistchina+easylist.txt: 43688) -.kongregate.com/images/help_devs_.*\.png -# ||kompas.com/js_kompasads.php (easylistchina+easylist.txt: 43687) -.kompas.com/js_kompasads\.php -# ||komando.com^*/k2-interstitial.min.js? (easylistchina+easylist.txt: 43686) -.komando.com/.*/k2-interstitial\.min\.js\? -# ||kob.com/kobtvimages/flexhousepromotions/ (easylistchina+easylist.txt: 43685) -.kob.com/kobtvimages/flexhousepromotions/ -# ||knpr.org/common/sponsors/ (easylistchina+easylist.txt: 43684) -.knpr.org/common/sponsors/ -# ||knowthecause.com/images/banners/ (easylistchina+easylist.txt: 43683) -.knowthecause.com/images/banners/ -# ||knowledgespeak.com/images/banner/ (easylistchina+easylist.txt: 43682) -.knowledgespeak.com/images/banner/ -# ||knowfree.net^*/ezm125x125.gif (easylistchina+easylist.txt: 43681) -.knowfree.net/.*/ezm125x125\.gif -# ||knco.com/wp-content/uploads/wpt/ (easylistchina+easylist.txt: 43680) -.knco.com/wp-content/uploads/wpt/ -# ||kncminer.com/userfiles/image/250_240.jpg (easylistchina+easylist.txt: 43679) -.kncminer.com/userfiles/image/250_240\.jpg -# ||knbr.com^*/banners/ (easylistchina+easylist.txt: 43678) -.knbr.com/.*/banners/ -# ||klm.com^*/fls_redirect.html (easylistchina+easylist.txt: 43677) -.klm.com/.*/fls_redirect\.html -# ||klkdccs.net/pjs/yavli-tools.js (easylistchina+easylist.txt: 43676) -.klkdccs.net/pjs/yavli-tools\.js -# ||klfm967.co.uk/resources/creative/ (easylistchina+easylist.txt: 43675) -.klfm967.co.uk/resources/creative/ -# ||kleisauke.nl/static/img/bar.gif (easylistchina+easylist.txt: 43674) -.kleisauke.nl/static/img/bar\.gif -# ||klav1230am.com^*/banners/ (easylistchina+easylist.txt: 43673) -.klav1230am.com/.*/banners/ -# ||kjul1047.com^*/clientgraphics/ (easylistchina+easylist.txt: 43672) -.kjul1047.com/.*/clientgraphics/ -# ||kjlhradio.com^*/banners/ (easylistchina+easylist.txt: 43671) -.kjlhradio.com/.*/banners/ -# ||kjlhradio.com^*-300x250. (easylistchina+easylist.txt: 43670) -.kjlhradio.com/.*-300x250\. -# ||kitz.co.uk/files/jump2/ (easylistchina+easylist.txt: 43669) -.kitz.co.uk/files/jump2/ -# ||kitguru.net/wp-content/wrap.jpg (easylistchina+easylist.txt: 43668) -.kitguru.net/wp-content/wrap\.jpg -# ||kitguru.net/wp-content/banners/ (easylistchina+easylist.txt: 43667) -.kitguru.net/wp-content/banners/ -# ||kitguru.net/?kitguru_wrapjs=1&ver= (easylistchina+easylist.txt: 43666) -.kitguru.net/\?kitguru_wrapjs=1&ver= -# ||kitco.com^*/banners/ (easylistchina+easylist.txt: 43665) -.kitco.com/.*/banners/ -# ||kitco.com/ssi/market_ox_deanmg.stm (easylistchina+easylist.txt: 43664) -.kitco.com/ssi/market_ox_deanmg\.stm -# ||kitco.com/ssi/home_ox_deanmg.stm (easylistchina+easylist.txt: 43663) -.kitco.com/ssi/home_ox_deanmg\.stm -# ||kitco.com/ssi/dmg_banner_001.stm (easylistchina+easylist.txt: 43662) -.kitco.com/ssi/dmg_banner_001\.stm -# ||kirupa.com/supporter/ (easylistchina+easylist.txt: 43661) -.kirupa.com/supporter/ -# ||kinox.tv/g.js (easylistchina+easylist.txt: 43660) -.kinox.tv/g\.js -# ||kinox.to/com/ (easylistchina+easylist.txt: 43659) -.kinox.to/com/ -# ||kinox.to/392i921321.js (easylistchina+easylist.txt: 43658) -.kinox.to/392i921321\.js -# ||kingofsat.net/pub/ (easylistchina+easylist.txt: 43657) -.kingofsat.net/pub/ -# ||kingfiles.net/images/bt.png (easylistchina+easylist.txt: 43656) -.kingfiles.net/images/bt\.png -# ||kickoff.com/images/sleeves/ (easylistchina+easylist.txt: 43655) -.kickoff.com/images/sleeves/ -# ||kickasstorrent.ph/kat_adplib.js (easylistchina+easylist.txt: 43654) -.kickasstorrent.ph/kat_adplib\.js -# ||khon2.com^*/sponsors/ (easylistchina+easylist.txt: 43653) -.khon2.com/.*/sponsors/ -# ||khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N.jpg (easylistchina+easylist.txt: 43652) -.khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N\.jpg -# ||khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN.jpg (easylistchina+easylist.txt: 43651) -.khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN\.jpg -# ||kfog.com^*/banners/ (easylistchina+easylist.txt: 43650) -.kfog.com/.*/banners/ -# ||keygen-fm.ru/images/*.swf (easylistchina+easylist.txt: 43649) -.keygen-fm.ru/images/.*\.swf -# ||kexp.org^*/sponsoredby. (easylistchina+easylist.txt: 43648) -.kexp.org/.*/sponsoredby\. -# ||kexp.org^*/sponsor- (easylistchina+easylist.txt: 43647) -.kexp.org/.*/sponsor- -# ||kewlshare.com/reward.html (easylistchina+easylist.txt: 43646) -.kewlshare.com/reward\.html -# ||kermit.macnn.com^ (easylistchina+easylist.txt: 43645) -.kermit.macnn.com -# ||kephyr.com/spywarescanner/banner1.gif (easylistchina+easylist.txt: 43644) -.kephyr.com/spywarescanner/banner1\.gif -# ||kentonline.co.uk/weatherimages/sponsor_ (easylistchina+easylist.txt: 43643) -.kentonline.co.uk/weatherimages/sponsor_ -# ||kentonline.co.uk/weatherimages/SEW.jpg (easylistchina+easylist.txt: 43642) -.kentonline.co.uk/weatherimages/SEW\.jpg -# ||kentonline.co.uk/weatherimages/Britelite.gif (easylistchina+easylist.txt: 43641) -.kentonline.co.uk/weatherimages/Britelite\.gif -# ||kendrickcoleman.com/images/banners/ (easylistchina+easylist.txt: 43640) -.kendrickcoleman.com/images/banners/ -# ||keepvid.com/images/winxdvd- (easylistchina+easylist.txt: 43639) -.keepvid.com/images/winxdvd- -# ||keepvid.com/images/ilivid- (easylistchina+easylist.txt: 43638) -.keepvid.com/images/ilivid- -# ||keepthelighton.vpsboard.com^ (easylistchina+easylist.txt: 43637) -.keepthelighton.vpsboard.com -# ||keenspot.com/images/headerbar- (easylistchina+easylist.txt: 43636) -.keenspot.com/images/headerbar- -# ||kdoctv.net/images/banners/ (easylistchina+easylist.txt: 43635) -.kdoctv.net/images/banners/ -# ||kdnuggets.com/aps/ (easylistchina+easylist.txt: 43634) -.kdnuggets.com/aps/ -# ||kcrw.com/collage-images/itunes.gif (easylistchina+easylist.txt: 43633) -.kcrw.com/collage-images/itunes\.gif -# ||kcrw.com/collage-images/amazon.gif (easylistchina+easylist.txt: 43632) -.kcrw.com/collage-images/amazon\.gif -# ||kblx.com/upload/takeover_ (easylistchina+easylist.txt: 43631) -.kblx.com/upload/takeover_ -# ||kbcradio.eu/img/banner/ (easylistchina+easylist.txt: 43630) -.kbcradio.eu/img/banner/ -# ||kavkisfile.com/images/ly.gif (easylistchina+easylist.txt: 43629) -.kavkisfile.com/images/ly\.gif -# ||kavkisfile.com/images/ly-mini.gif (easylistchina+easylist.txt: 43628) -.kavkisfile.com/images/ly-mini\.gif -# ||kat-ads.torrenticity.com^ (easylistchina+easylist.txt: 43627) -.kat-ads.torrenticity.com -# ||kassfm.co.ke/images/moneygram.gif (easylistchina+easylist.txt: 43626) -.kassfm.co.ke/images/moneygram\.gif -# ||kansascity.com/images/touts/ds_ (easylistchina+easylist.txt: 43625) -.kansascity.com/images/touts/ds_ -# ||kamcity.com/menu/banners/ (easylistchina+easylist.txt: 43624) -.kamcity.com/menu/banners/ -# ||kamcity.com/banager/banners/ (easylistchina+easylist.txt: 43623) -.kamcity.com/banager/banners/ -# ||kaieteurnewsonline.com/revenue/ (easylistchina+easylist.txt: 43622) -.kaieteurnewsonline.com/revenue/ -# ||juventus.com/pics/sponsors/ (easylistchina+easylist.txt: 43621) -.juventus.com/pics/sponsors/ -# ||justsomething.co/wp-content/uploads/*-250x250. (easylistchina+easylist.txt: 43620) -.justsomething.co/wp-content/uploads/.*-250x250\. -# ||just-download.com/banner/ (easylistchina+easylist.txt: 43619) -.just-download.com/banner/ -# ||junocloud.me/promos/ (easylistchina+easylist.txt: 43618) -.junocloud.me/promos/ -# ||jumptags.com/joozit/presentation/images/banners/ (easylistchina+easylist.txt: 43617) -.jumptags.com/joozit/presentation/images/banners/ -# ||jozikids.co.za/uploadimages/140x140_ (easylistchina+easylist.txt: 43616) -.jozikids.co.za/uploadimages/140x140_ -# ||jozikids.co.za/uploadimages/*_140x140_ (easylistchina+easylist.txt: 43615) -.jozikids.co.za/uploadimages/.*_140x140_ -# ||joursouvres.fr^*/pub_ (easylistchina+easylist.txt: 43614) -.joursouvres.fr/.*/pub_ -# ||journeychristiannews.com/images/banners/ (easylistchina+easylist.txt: 43613) -.journeychristiannews.com/images/banners/ -# ||journal-news.net/annoyingpopup/ (easylistchina+easylist.txt: 43612) -.journal-news.net/annoyingpopup/ -# ||joomladigger.com/images/banners/ (easylistchina+easylist.txt: 43611) -.joomladigger.com/images/banners/ -# ||joindota.com/wp-content/*.png$image (easylistchina+easylist.txt: 43609) -.joindota.com/wp-content/.*\.png -# ||johngaltfla.com/wordpress/wp-content/uploads/*/TB2K_LOGO.jpg (easylistchina+easylist.txt: 43608) -.johngaltfla.com/wordpress/wp-content/uploads/.*/TB2K_LOGO\.jpg -# ||johngaltfla.com/wordpress/wp-content/uploads/*/jmcs_specaialbanner.jpg (easylistchina+easylist.txt: 43607) -.johngaltfla.com/wordpress/wp-content/uploads/.*/jmcs_specaialbanner\.jpg -# ||johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions.png (easylistchina+easylist.txt: 43606) -.johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions\.png -# ||johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge.jpg (easylistchina+easylist.txt: 43605) -.johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge\.jpg -# ||johnbridge.com/vbulletin/banner_rotate.js (easylistchina+easylist.txt: 43604) -.johnbridge.com/vbulletin/banner_rotate\.js -# ||jillianmichaels.com/images/publicsite/advertisingslug.gif (easylistchina+easylist.txt: 43603) -.jillianmichaels.com/images/publicsite/advertisingslug\.gif -# ||jheberg.net/img/mp.png (easylistchina+easylist.txt: 43602) -.jheberg.net/img/mp\.png -# ||jewishyellow.com/pics/banners/ (easylistchina+easylist.txt: 43601) -.jewishyellow.com/pics/banners/ -# ||jewishvoiceny.com/ban2/ (easylistchina+easylist.txt: 43600) -.jewishvoiceny.com/ban2/ -# ||jewishtribune.ca^*/banners/ (easylistchina+easylist.txt: 43599) -.jewishtribune.ca/.*/banners/ -# ||jewishtimes-sj.com/rop/ (easylistchina+easylist.txt: 43598) -.jewishtimes-sj.com/rop/ -# ||jewishnews.co.uk^*banner (easylistchina+easylist.txt: 43597) -.jewishnews.co.uk/.*banner -# ||jewishexponent.com^*/banners/ (easylistchina+easylist.txt: 43596) -.jewishexponent.com/.*/banners/ -# ||jebril.com/sites/default/files/images/top-banners/ (easylistchina+easylist.txt: 43595) -.jebril.com/sites/default/files/images/top-banners/ -# ||jdownloader.org^*/smbanner.png (easylistchina+easylist.txt: 43594) -.jdownloader.org/.*/smbanner\.png -# ||jdownloader.org/_media/screenshots/banner.png (easylistchina+easylist.txt: 43593) -.jdownloader.org/_media/screenshots/banner\.png -# ||jazzandblues.org^*/iTunes_ (easylistchina+easylist.txt: 43592) -.jazzandblues.org/.*/iTunes_ -# ||jayisgames.com/maxcdn_160x250.png (easylistchina+easylist.txt: 43591) -.jayisgames.com/maxcdn_160x250\.png -# ||javascript-coder.com^*/make-form-without-coding.png (easylistchina+easylist.txt: 43590) -.javascript-coder.com/.*/make-form-without-coding\.png -# ||javascript-coder.com^*/form-submit-larger.jpg (easylistchina+easylist.txt: 43589) -.javascript-coder.com/.*/form-submit-larger\.jpg -# ||javamex.com/images/AdFrenchVocabGamesAnim.gif (easylistchina+easylist.txt: 43588) -.javamex.com/images/AdFrenchVocabGamesAnim\.gif -# ||jango.com/assets/promo/1600x1000- (easylistchina+easylist.txt: 43587) -.jango.com/assets/promo/1600x1000- -# ||jame-world.com^*/adv/ (easylistchina+easylist.txt: 43586) -.jame-world.com/.*/adv/ -# ||jamaica-gleaner.com/images/promo/ (easylistchina+easylist.txt: 43585) -.jamaica-gleaner.com/images/promo/ -# ||ixquick.nl/graphics/banner_ (easylistchina+easylist.txt: 43584) -.ixquick.nl/graphics/banner_ -# ||iwebtool.com^*/bannerview.php (easylistchina+easylist.txt: 43583) -.iwebtool.com/.*/bannerview\.php -# ||iurfm.com/images/sponsors/ (easylistchina+easylist.txt: 43582) -.iurfm.com/images/sponsors/ -# ||itworld.com/slideshow/iframe/topimu/ (easylistchina+easylist.txt: 43581) -.itworld.com/slideshow/iframe/topimu/ -# ||itwebafrica.com/images/logos/ (easylistchina+easylist.txt: 43580) -.itwebafrica.com/images/logos/ -# ||itweb.co.za^*sponsoredby (easylistchina+easylist.txt: 43579) -.itweb.co.za/.*sponsoredby -# ||itweb.co.za/sidelogos/ (easylistchina+easylist.txt: 43578) -.itweb.co.za/sidelogos/ -# ||itweb.co.za/logos/ (easylistchina+easylist.txt: 43577) -.itweb.co.za/logos/ -# ||itweb.co.za/banners/ (easylistchina+easylist.txt: 43576) -.itweb.co.za/banners/ -# ||itv.com/adexplore/*/config.xml (easylistchina+easylist.txt: 43574) -.itv.com/adexplore/.*/config\.xml -# ||itpro.co.uk/images/skins/ (easylistchina+easylist.txt: 43573) -.itpro.co.uk/images/skins/ -# ||italiangenealogy.com/images/banners/ (easylistchina+easylist.txt: 43572) -.italiangenealogy.com/images/banners/ -# ||isxdead.com/images/showbox.png (easylistchina+easylist.txt: 43571) -.isxdead.com/images/showbox\.png -# ||isup.me/images/dotbiz_banner.jpg (easylistchina+easylist.txt: 43570) -.isup.me/images/dotbiz_banner\.jpg -# ||israeltoday.co.il^*/promo/ (easylistchina+easylist.txt: 43569) -.israeltoday.co.il/.*/promo/ -# ||israelidiamond.co.il^*/bannerdisplay.aspx? (easylistchina+easylist.txt: 43568) -.israelidiamond.co.il/.*/bannerdisplay\.aspx\? -# ||israeldefense.com/_Uploads/dbsBanners/ (easylistchina+easylist.txt: 43567) -.israeldefense.com/_Uploads/dbsBanners/ -# ||isportconnect.com//images/banners/ (easylistchina+easylist.txt: 43566) -# ||island.lk/userfiles/image/danweem/ (easylistchina+easylist.txt: 43565) -.island.lk/userfiles/image/danweem/ -# ||islamicfocus.co.za/images/banners/ (easylistchina+easylist.txt: 43564) -.islamicfocus.co.za/images/banners/ -# ||islamicfinder.org/cimage/ (easylistchina+easylist.txt: 43563) -.islamicfinder.org/cimage/ -# ||isitnormal.com/img/iphone_hp_promo_wide.png (easylistchina+easylist.txt: 43562) -.isitnormal.com/img/iphone_hp_promo_wide\.png -# ||isitdownrightnow.com/graphics/speedupmypc*.png (easylistchina+easylist.txt: 43561) -.isitdownrightnow.com/graphics/speedupmypc.*\.png -# ||irv2.com/images/sponsors/ (easylistchina+easylist.txt: 43560) -.irv2.com/images/sponsors/ -# ||irv2.com/forums/*show_banner (easylistchina+easylist.txt: 43559) -.irv2.com/forums/.*show_banner -# ||irv2.com/attachments/banners/ (easylistchina+easylist.txt: 43558) -.irv2.com/attachments/banners/ -# ||ironsquid.tv/data/uploads/sponsors/ (easylistchina+easylist.txt: 43557) -.ironsquid.tv/data/uploads/sponsors/ -# ||ironspider.ca/pics/hostgator_green120x600.gif (easylistchina+easylist.txt: 43556) -.ironspider.ca/pics/hostgator_green120x600\.gif -# ||ironmagazine.com^*/banners.php (easylistchina+easylist.txt: 43555) -.ironmagazine.com/.*/banners\.php -# ||irishracing.com/graphics/books (easylistchina+easylist.txt: 43554) -.irishracing.com/graphics/books -# ||irishdictionary.ie/view/images/ispaces-makes-any-computer.jpg (easylistchina+easylist.txt: 43553) -.irishdictionary.ie/view/images/ispaces-makes-any-computer\.jpg -# ||irishdev.com/files/banners/ (easylistchina+easylist.txt: 43552) -.irishdev.com/files/banners/ -# ||irishamericannews.com/images/banners/ (easylistchina+easylist.txt: 43551) -.irishamericannews.com/images/banners/ -# ||irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/*DealsBanner_ (easylistchina+easylist.txt: 43550) -.irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/.*DealsBanner_ -# ||iptools.com/sky.php (easylistchina+easylist.txt: 43549) -.iptools.com/sky\.php -# ||ipinfodb.com/img/adds/ (easylistchina+easylist.txt: 43548) -.ipinfodb.com/img/adds/ -# ||ipaddress.com/banner/ (easylistchina+easylist.txt: 43547) -.ipaddress.com/banner/ -# ||ip-adress.com/superb/ (easylistchina+easylist.txt: 43545) -.ip-adress.com/superb/ -# ||ip-adress.com/i/ewa/ (easylistchina+easylist.txt: 43544) -.ip-adress.com/i/ewa/ -# ||intoday.in/btstryad.html (easylistchina+easylist.txt: 43543) -.intoday.in/btstryad\.html -# ||internationalmeetingsreview.com//uploads/banner/ (easylistchina+easylist.txt: 43542) -# ||international.to/link_unit.html (easylistchina+easylist.txt: 43541) -.international.to/link_unit\.html -# ||international.to/large.html (easylistchina+easylist.txt: 43540) -.international.to/large\.html -# ||international.to/600.html (easylistchina+easylist.txt: 43539) -.international.to/600\.html -# ||interfacelift.com^*/artistsvalley_160x90_ (easylistchina+easylist.txt: 43538) -.interfacelift.com/.*/artistsvalley_160x90_ -# ||interfacelift.com/inc_new/$subdocument (easylistchina+easylist.txt: 43537) -.interfacelift.com/inc_new/ -# ||interest.co.nz^*_skin_ (easylistchina+easylist.txt: 43536) -.interest.co.nz/.*_skin_ -# ||interest.co.nz^*_skin. (easylistchina+easylist.txt: 43535) -.interest.co.nz/.*_skin\. -# ||interest.co.nz/banners/ (easylistchina+easylist.txt: 43534) -.interest.co.nz/banners/ -# ||intelseek.com/intelseekads/ (easylistchina+easylist.txt: 43533) -.intelseek.com/intelseekads/ -# ||intellicast.com/travel/cheapflightswidget.htm (easylistchina+easylist.txt: 43532) -.intellicast.com/travel/cheapflightswidget\.htm -# ||intellicast.com/outsidein.js (easylistchina+easylist.txt: 43531) -.intellicast.com/outsidein\.js -# ||intel.com/sites/wap/global/wap.js (easylistchina+easylist.txt: 43530) -.intel.com/sites/wap/global/wap\.js -# ||inspirefirst.com^*/banners/ (easylistchina+easylist.txt: 43529) -.inspirefirst.com/.*/banners/ -# ||insideyork.co.uk/assets/images/sponsors/ (easylistchina+easylist.txt: 43528) -.insideyork.co.uk/assets/images/sponsors/ -# ||insidethe.agency^*-300x250. (easylistchina+easylist.txt: 43527) -.insidethe.agency/.*-300x250\. -# ||insidehw.com/images/banners/ (easylistchina+easylist.txt: 43526) -.insidehw.com/images/banners/ -# ||insidedp.com/images/banners/ (easylistchina+easylist.txt: 43525) -.insidedp.com/images/banners/ -# ||insidebutlercounty.com/images/468- (easylistchina+easylist.txt: 43524) -.insidebutlercounty.com/images/468- -# ||insidebutlercounty.com/images/300- (easylistchina+easylist.txt: 43523) -.insidebutlercounty.com/images/300- -# ||insidebutlercounty.com/images/200- (easylistchina+easylist.txt: 43522) -.insidebutlercounty.com/images/200- -# ||insidebutlercounty.com/images/180- (easylistchina+easylist.txt: 43521) -.insidebutlercounty.com/images/180- -# ||insidebutlercounty.com/images/160- (easylistchina+easylist.txt: 43520) -.insidebutlercounty.com/images/160- -# ||insidebutlercounty.com/images/100- (easylistchina+easylist.txt: 43519) -.insidebutlercounty.com/images/100- -# ||inquirer.net/wp-content/themes/news/images/wallpaper_ (easylistchina+easylist.txt: 43518) -.inquirer.net/wp-content/themes/news/images/wallpaper_ -# ||inkscapeforum.com/images/banners/ (easylistchina+easylist.txt: 43517) -.inkscapeforum.com/images/banners/ -# ||injpn.net/images/banners/ (easylistchina+easylist.txt: 43516) -.injpn.net/images/banners/ -# ||ingdirect.com^*/adwizard/ (easylistchina+easylist.txt: 43515) -.ingdirect.com/.*/adwizard/ -# ||infoseek.co.jp/isweb/clip.html (easylistchina+easylist.txt: 43514) -.infoseek.co.jp/isweb/clip\.html -# ||infosecisland.com/ajax/viewbanner/ (easylistchina+easylist.txt: 43513) -.infosecisland.com/ajax/viewbanner/ -# ||informer.com/js/onexit*.js (easylistchina+easylist.txt: 43512) -.informer.com/js/onexit.*\.js -# ||informe.com/img/banner_ (easylistchina+easylist.txt: 43511) -.informe.com/img/banner_ -# ||infoq.com^*/banners/ (easylistchina+easylist.txt: 43510) -.infoq.com/.*/banners/ -# ||infobetting.com/bookmaker/ (easylistchina+easylist.txt: 43509) -.infobetting.com/bookmaker/ -# ||infobetting.com/b/ (easylistchina+easylist.txt: 43508) -.infobetting.com/b/ -# ||info.sciencedaily.com/api/ (easylistchina+easylist.txt: 43507) -.info.sciencedaily.com/api/ -# ||info.break.com^*/sponsors/ (easylistchina+easylist.txt: 43506) -.info.break.com/.*/sponsors/ -# ||industryabout.com/images/banners/ (easylistchina+easylist.txt: 43505) -.industryabout.com/images/banners/ -# ||indiatimes.com/google$subdocument (easylistchina+easylist.txt: 43504) -.indiatimes.com/google -# ||indiatimes.com/articleshow_google_$subdocument (easylistchina+easylist.txt: 43503) -.indiatimes.com/articleshow_google_ -# ||indiantelevision.com/banner/ (easylistchina+easylist.txt: 43502) -.indiantelevision.com/banner/ -# ||indianexpress.com^*/banner/ (easylistchina+easylist.txt: 43501) -.indianexpress.com/.*/banner/ -# ||indiainfoline.com/wc/ads/ (easylistchina+easylist.txt: 43500) -.indiainfoline.com/wc/ads/ -# ||india.com^*-sponsor. (easylistchina+easylist.txt: 43499) -.india.com/.*-sponsor\. -# ||india.com/zeenews_head2n.jpg (easylistchina+easylist.txt: 43498) -.india.com/zeenews_head2n\.jpg -# ||india.com/ads/jw/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 43497) -.india.com/ads/jw/ova-jw\.swf -# ||indepthafrica.com^*/Banner-canreach.gif (easylistchina+easylist.txt: 43496) -.indepthafrica.com/.*/Banner-canreach\.gif -# ||independent.co.uk^*/partners/ (easylistchina+easylist.txt: 43495) -.independent.co.uk/.*/partners/ -# ||independent.co.uk^*/300unit/ (easylistchina+easylist.txt: 43494) -.independent.co.uk/.*/300unit/ -# ||independent.co.uk/multimedia/archive/$subdocument (easylistchina+easylist.txt: 43493) -.independent.co.uk/multimedia/archive/ -# ||independent.co.uk/kelkoo/ (easylistchina+easylist.txt: 43492) -.independent.co.uk/kelkoo/ -# ||independent.co.ug/images/banners/ (easylistchina+easylist.txt: 43491) -.independent.co.ug/images/banners/ -# ||indeed.com/ads/ (easylistchina+easylist.txt: 43490) -.indeed.com/ads/ -# ||incentivetravel.co.uk/images/banners/ (easylistchina+easylist.txt: 43489) -.incentivetravel.co.uk/images/banners/ -# ||inanyevent.ch/images/banners/ (easylistchina+easylist.txt: 43488) -.inanyevent.ch/images/banners/ -# ||in.com^*/170x50_ (easylistchina+easylist.txt: 43487) -.in.com/.*/170x50_ -# ||in.com/addIframe/ (easylistchina+easylist.txt: 43486) -.in.com/addIframe/ -# ||impulsedriven.com/app_images/wallpaper/ (easylistchina+easylist.txt: 43485) -.impulsedriven.com/app_images/wallpaper/ -# ||impactradio.co.za^*/banners/ (easylistchina+easylist.txt: 43484) -.impactradio.co.za/.*/banners/ -# ||imouto.org/images/mangagamer/ (easylistchina+easylist.txt: 43483) -.imouto.org/images/mangagamer/ -# ||imouto.org/images/jlist/ (easylistchina+easylist.txt: 43482) -.imouto.org/images/jlist/ -# ||imgur.com/include/zedoinviewstub1621.html (easylistchina+easylist.txt: 43481) -.imgur.com/include/zedoinviewstub1621\.html -# ||imgshots.com/includes/js/layer.js (easylistchina+easylist.txt: 43479) -.imgshots.com/includes/js/layer\.js -# ||imgchili.net/lj.js (easylistchina+easylist.txt: 43478) -.imgchili.net/lj\.js -# ||imgchili.net/js/showa.js (easylistchina+easylist.txt: 43477) -.imgchili.net/js/showa\.js -# ||imgcarry.com^*/oc.js (easylistchina+easylist.txt: 43476) -.imgcarry.com/.*/oc\.js -# ||imgburn.com/images/your3gift.gif (easylistchina+easylist.txt: 43475) -.imgburn.com/images/your3gift\.gif -# ||imgburn.com/images/ddigest_ (easylistchina+easylist.txt: 43474) -.imgburn.com/images/ddigest_ -# ||imgah.com/traffic$subdocument (easylistchina+easylist.txt: 43473) -.imgah.com/traffic -# ||img*.i-comers.com^ (easylistchina+easylist.txt: 43472) -.img*./.*\.i-comers\.com[^\w%.-] -.img*.i-comers.com -# ||imfdb.org^*/FoG-300x250.jpg (easylistchina+easylist.txt: 43471) -.imfdb.org/.*/FoG-300x250\.jpg -# ||imdb.com/images/*/scriptloader.$subdocument (easylistchina+easylist.txt: 43470) -.imdb.com/images/.*/scriptloader\. -# ||imcdb.org/res/cth_ (easylistchina+easylist.txt: 43469) -.imcdb.org/res/cth_ -# ||imagevenue.com/interstitial. (easylistchina+easylist.txt: 43468) -.imagevenue.com/interstitial\. -# ||imagetoupload.com/images/87633952425570896161.jpg (easylistchina+easylist.txt: 43467) -.imagetoupload.com/images/87633952425570896161\.jpg -# ||imagesnake.com^*/oc.js (easylistchina+easylist.txt: 43466) -.imagesnake.com/.*/oc\.js -# ||imageshack.us/ym.php? (easylistchina+easylist.txt: 43465) -.imageshack.us/ym\.php\? -# ||imageshack.us/images/contests/*/lp-bg.jpg (easylistchina+easylist.txt: 43464) -.imageshack.us/images/contests/.*/lp-bg\.jpg -# ||images.sharkscope.com/everest/twister.jpg (easylistchina+easylist.txt: 43463) -.images.sharkscope.com/everest/twister\.jpg -# ||images.sharkscope.com/acr/*_Ad- (easylistchina+easylist.txt: 43462) -.images.sharkscope.com/acr/.*_Ad- -# ||images.mmorpg.com/images/*skin (easylistchina+easylist.txt: 43461) -.images.mmorpg.com/images/.*skin -# ||images.globes.co.il^*/fixedpromoright. (easylistchina+easylist.txt: 43460) -.images.globes.co.il/.*/fixedpromoright\. -# ||images.bitreactor.to/designs/ (easylistchina+easylist.txt: 43459) -.images.bitreactor.to/designs/ -# ||images-amazon.com^*/marqueepushdown/ (easylistchina+easylist.txt: 43458) -.images-amazon.com/.*/marqueepushdown/ -# ||images-amazon.com/images/*/da-us/da-$script (easylistchina+easylist.txt: 43457) -.images-amazon.com/images/.*/da-us/da- -# ||images-amazon.com/images/*/browser-scripts/dae- (easylistchina+easylist.txt: 43456) -.images-amazon.com/images/.*/browser-scripts/dae- -# ||images-amazon.com/images/*/browser-scripts/da- (easylistchina+easylist.txt: 43455) -.images-amazon.com/images/.*/browser-scripts/da- -# ||imagerise.com/ir2.js (easylistchina+easylist.txt: 43454) -.imagerise.com/ir2\.js -# ||imagerise.com/ir.js (easylistchina+easylist.txt: 43453) -.imagerise.com/ir\.js -# ||imageporter.com/someo.html (easylistchina+easylist.txt: 43452) -.imageporter.com/someo\.html -# ||imageporter.com/micromoo.html (easylistchina+easylist.txt: 43451) -.imageporter.com/micromoo\.html -# ||imageporter.com/hiokax.js (easylistchina+easylist.txt: 43450) -.imageporter.com/hiokax\.js -# ||imagepix.org/Images/imageput.jpg (easylistchina+easylist.txt: 43449) -.imagepix.org/Images/imageput\.jpg -# ||imagefruit.com/includes/js/layer.js (easylistchina+easylist.txt: 43448) -.imagefruit.com/includes/js/layer\.js -# ||imagefruit.com/includes/js/ex.js (easylistchina+easylist.txt: 43447) -.imagefruit.com/includes/js/ex\.js -# ||imagefruit.com/includes/js/bgcont.js (easylistchina+easylist.txt: 43446) -.imagefruit.com/includes/js/bgcont\.js -# ||imagebam.com/img/coolstuffbro.jpg (easylistchina+easylist.txt: 43445) -.imagebam.com/img/coolstuffbro\.jpg -# ||imagebam.com/download_button.png (easylistchina+easylist.txt: 43444) -.imagebam.com/download_button\.png -# ||imads.rediff.com^ (easylistchina+easylist.txt: 43442) -.imads.rediff.com -# ||iloveim.com/cadv (easylistchina+easylist.txt: 43441) -.iloveim.com/cadv -# ||iload.to/img/ul/impopi.js (easylistchina+easylist.txt: 43440) -.iload.to/img/ul/impopi\.js -# ||ilcorsaronero.info/home.gif (easylistchina+easylist.txt: 43438) -.ilcorsaronero.info/home\.gif -# ||ijoomla.com/aff/banners/ (easylistchina+easylist.txt: 43437) -.ijoomla.com/aff/banners/ -# ||ijn.com/images/banners/ (easylistchina+easylist.txt: 43436) -.ijn.com/images/banners/ -# ||iftn.ie/images/data/banners/ (easylistchina+easylist.txt: 43435) -.iftn.ie/images/data/banners/ -# ||iframe.travel.yahoo.com^ (easylistchina+easylist.txt: 43434) -.iframe.travel.yahoo.com -# ||ifilm.com/website/*-skin- (easylistchina+easylist.txt: 43433) -.ifilm.com/website/.*-skin- -# ||idg.com.au^*_skin.jpg (easylistchina+easylist.txt: 43431) -.idg.com.au/.*_skin\.jpg -# ||idg.com.au/images/*_promo$image (easylistchina+easylist.txt: 43430) -.idg.com.au/images/.*_promo -# ||idg.com.au/files/skins/ (easylistchina+easylist.txt: 43429) -.idg.com.au/files/skins/ -# ||idesitv.com^*/loadbanners. (easylistchina+easylist.txt: 43428) -.idesitv.com/.*/loadbanners\. -# ||iddin.com/img/chatwing_banner_ (easylistchina+easylist.txt: 43427) -.iddin.com/img/chatwing_banner_ -# ||iddin.com/img/chatwing_banner. (easylistchina+easylist.txt: 43426) -.iddin.com/img/chatwing_banner\. -# ||icydk.com^*/title_visit_sponsors. (easylistchina+easylist.txt: 43425) -.icydk.com/.*/title_visit_sponsors\. -# ||icrt.com.tw/downloads/banner/ (easylistchina+easylist.txt: 43423) -.icrt.com.tw/downloads/banner/ -# ||iconeye.com/images/banners/ (easylistchina+easylist.txt: 43422) -.iconeye.com/images/banners/ -# ||icelandreview.com^*/auglysingar/ (easylistchina+easylist.txt: 43421) -.icelandreview.com/.*/auglysingar/ -# ||iceinspace.com.au/iisads/ (easylistchina+easylist.txt: 43420) -.iceinspace.com.au/iisads/ -# ||ibtimes.com^*/sponsor_ (easylistchina+easylist.txt: 43419) -.ibtimes.com/.*/sponsor_ -# ||ibtimes.com^*&popunder (easylistchina+easylist.txt: 43418) -.ibtimes.com/.*&popunder -# ||ibtimes.com/banner/ (easylistchina+easylist.txt: 43417) -.ibtimes.com/banner/ -# ||ibsrv.net/sponsors/ (easylistchina+easylist.txt: 43416) -.ibsrv.net/sponsors/ -# ||ibsrv.net/*_215x30_ (easylistchina+easylist.txt: 43413) -.ibsrv.net/.*_215x30_ -# ||ibsrv.net/*_215x30. (easylistchina+easylist.txt: 43412) -.ibsrv.net/.*_215x30\. -# ||ibsrv.net/*214x30. (easylistchina+easylist.txt: 43411) -.ibsrv.net/.*214x30\. -# ||ibrod.tv/ib.php (easylistchina+easylist.txt: 43410) -.ibrod.tv/ib\.php -# ||ibnlive.in.com^*/ibn_*_banner_ (easylistchina+easylist.txt: 43409) -.ibnlive.in.com/.*/ibn_.*_banner_ -# ||ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ (easylistchina+easylist.txt: 43408) -.ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ -# ||ibanners.empoweredcomms.com.au^ (easylistchina+easylist.txt: 43407) -.ibanners.empoweredcomms.com.au -# ||ians.in/iansad/ (easylistchina+easylist.txt: 43406) -.ians.in/iansad/ -# ||i3investor.com^*/partner/ (easylistchina+easylist.txt: 43405) -.i3investor.com/.*/partner/ -# ||i3investor.com^*/offer_ (easylistchina+easylist.txt: 43404) -.i3investor.com/.*/offer_ -# ||i.neoseeker.com/d/$subdocument (easylistchina+easylist.txt: 43403) -.i.neoseeker.com/d/ -# ||i.i.com.com/cnwk.1d/*/tt_post_dl.jpg (easylistchina+easylist.txt: 43402) -.i.i.com.com/cnwk\.1d/.*/tt_post_dl\.jpg -# ||i.com.com^*/vendor_bg_ (easylistchina+easylist.txt: 43401) -.i.com.com/.*/vendor_bg_ -# ||i-tech.com.au^*/banner/ (easylistchina+easylist.txt: 43400) -.i-tech.com.au/.*/banner/ -# ||i-sgcm.com/pagetakeover/ (easylistchina+easylist.txt: 43399) -.i-sgcm.com/pagetakeover/ -# ||hypemagazine.co.za/assets/bg/ (easylistchina+easylist.txt: 43398) -.hypemagazine.co.za/assets/bg/ -# ||hwinfo.com/images/se2banner.png (easylistchina+easylist.txt: 43397) -.hwinfo.com/images/se2banner\.png -# ||hwinfo.com/images/lansweeper.jpg (easylistchina+easylist.txt: 43396) -.hwinfo.com/images/lansweeper\.jpg -# ||hwbot.org/banner.img (easylistchina+easylist.txt: 43395) -.hwbot.org/banner\.img -# ||hurriyetdailynews.com/images/*_100x250_ (easylistchina+easylist.txt: 43394) -.hurriyetdailynews.com/images/.*_100x250_ -# ||hummy.org.uk^*/brotator/ (easylistchina+easylist.txt: 43393) -.hummy.org.uk/.*/brotator/ -# ||hulu.com/v3/revenue/ (easylistchina+easylist.txt: 43392) -.hulu.com/v3/revenue/ -# ||hulu.com/beacon/*=adauditerror (easylistchina+easylist.txt: 43391) -.hulu.com/beacon/.*=adauditerror -# ||hulkshare.oncdn.com^*/removeads. (easylistchina+easylist.txt: 43390) -.hulkshare.oncdn.com/.*/removeads\. -# ||hulkshare.com^*/adsmanager.js (easylistchina+easylist.txt: 43389) -.hulkshare.com/.*/adsmanager\.js -# ||hulkshare.com/promo/ (easylistchina+easylist.txt: 43388) -.hulkshare.com/promo/ -# ||hulkload.com/recommended/ (easylistchina+easylist.txt: 43387) -.hulkload.com/recommended/ -# ||hulkload.com/b/ (easylistchina+easylist.txt: 43386) -.hulkload.com/b/ -# ||hulkfile.eu/images/africa.gif (easylistchina+easylist.txt: 43385) -.hulkfile.eu/images/africa\.gif -# ||htmldog.com/r10/flowers/ (easylistchina+easylist.txt: 43383) -.htmldog.com/r10/flowers/ -# ||hqfooty.tv/ad (easylistchina+easylist.txt: 43382) -.hqfooty.tv/ad -# ||hpfanficarchive.com/freecoins2.jpg (easylistchina+easylist.txt: 43381) -.hpfanficarchive.com/freecoins2\.jpg -# ||howwemadeitinafrica.com^*/dhl-hdr.gif (easylistchina+easylist.txt: 43380) -.howwemadeitinafrica.com/.*/dhl-hdr\.gif -# ||howtogermany.com/banner/ (easylistchina+easylist.txt: 43379) -.howtogermany.com/banner/ -# ||howtogeek.com/go/ (easylistchina+easylist.txt: 43378) -.howtogeek.com/go/ -# ||houseoftravel.co.nz/flash/banner/ (easylistchina+easylist.txt: 43377) -.houseoftravel.co.nz/flash/banner/ -# ||houndmirror.com/images/XmkuP.gif (easylistchina+easylist.txt: 43376) -.houndmirror.com/images/XmkuP\.gif -# ||hothardware.com^*_staticbanner_*.jpg (easylistchina+easylist.txt: 43375) -.hothardware.com/.*_staticbanner_.*\.jpg -# ||hothardware.com/pgmerchanttable.aspx? (easylistchina+easylist.txt: 43374) -.hothardware.com/pgmerchanttable\.aspx\? -# ||hotgamesforgirls.com/html/$subdocument (easylistchina+easylist.txt: 43373) -.hotgamesforgirls.com/html/ -# ||hotfiletrend.com/dlp.gif (easylistchina+easylist.txt: 43372) -.hotfiletrend.com/dlp\.gif -# ||hotfilesearch.com/includes/images/mov_ (easylistchina+easylist.txt: 43371) -.hotfilesearch.com/includes/images/mov_ -# ||hotfile.com^*/banners/ (easylistchina+easylist.txt: 43370) -.hotfile.com/.*/banners/ -# ||hotbollywoodactress.net/freedatingindia.gif (easylistchina+easylist.txt: 43369) -.hotbollywoodactress.net/freedatingindia\.gif -# ||hotbollywoodactress.net/ff2.gif (easylistchina+easylist.txt: 43368) -.hotbollywoodactress.net/ff2\.gif -# ||hot-scene.com/cpop.js (easylistchina+easylist.txt: 43367) -.hot-scene.com/cpop\.js -# ||hostsearch.com/creative/ (easylistchina+easylist.txt: 43366) -.hostsearch.com/creative/ -# ||hostratings.co.uk/zeepeel. (easylistchina+easylist.txt: 43365) -.hostratings.co.uk/zeepeel\. -# ||hostingdedi.com/wp-content/uploads/add$subdocument (easylistchina+easylist.txt: 43364) -.hostingdedi.com/wp-content/uploads/add -# ||hostingbulk.com/zad.html (easylistchina+easylist.txt: 43363) -.hostingbulk.com/zad\.html -# ||hostingbulk.com/aad.html (easylistchina+easylist.txt: 43362) -.hostingbulk.com/aad\.html -# ||horriblesubs.info/playasia (easylistchina+easylist.txt: 43361) -.horriblesubs.info/playasia -# ||horizonsunlimited.com/alogos/ (easylistchina+easylist.txt: 43360) -.horizonsunlimited.com/alogos/ -# ||hongkongindians.com/advimages/ (easylistchina+easylist.txt: 43359) -.hongkongindians.com/advimages/ -# ||hongfire.com/banner/ (easylistchina+easylist.txt: 43358) -.hongfire.com/banner/ -# ||honda-tech.com/*-140x90.gif (easylistchina+easylist.txt: 43357) -.honda-tech.com/.*-140x90\.gif -# ||homeschoolmath.net/a/ (easylistchina+easylist.txt: 43356) -.homeschoolmath.net/a/ -# ||holyfragger.com/images/skins/ (easylistchina+easylist.txt: 43355) -.holyfragger.com/images/skins/ -# ||holyfamilyradio.org/banners/ (easylistchina+easylist.txt: 43354) -.holyfamilyradio.org/banners/ -# ||hollywoodbackwash.com/glam/ (easylistchina+easylist.txt: 43353) -.hollywoodbackwash.com/glam/ -# ||hockeybuzz.com/mb/b? (easylistchina+easylist.txt: 43352) -.hockeybuzz.com/mb/b\? -# ||hltv.org/images/csLucky.swf (easylistchina+easylist.txt: 43351) -.hltv.org/images/csLucky\.swf -# ||hltv.org//images/csgofastsky.png (easylistchina+easylist.txt: 43350) -# ||hkclubbing.com/images/banners/ (easylistchina+easylist.txt: 43349) -.hkclubbing.com/images/banners/ -# ||hitechlegion.com/images/banners/ (easylistchina+easylist.txt: 43348) -.hitechlegion.com/images/banners/ -# ||hipforums.com/newforums/calendarcolumn.php?cquery=bush (easylistchina+easylist.txt: 43347) -.hipforums.com/newforums/calendarcolumn\.php\?cquery=bush -# ||hipforums.com/images/banners/ (easylistchina+easylist.txt: 43346) -.hipforums.com/images/banners/ -# ||highdefjunkies.com^*/sponsor.jpg (easylistchina+easylist.txt: 43345) -.highdefjunkies.com/.*/sponsor\.jpg -# ||highdefjunkies.com^*/monoprice.jpg (easylistchina+easylist.txt: 43344) -.highdefjunkies.com/.*/monoprice\.jpg -# ||highdefjunkies.com^*/cp.gif (easylistchina+easylist.txt: 43343) -.highdefjunkies.com/.*/cp\.gif -# ||highdefjunkies.com/images/misc/kindlejoin.jpg (easylistchina+easylist.txt: 43342) -.highdefjunkies.com/images/misc/kindlejoin\.jpg -# ||hickoryrecord.com/app/deal/ (easylistchina+easylist.txt: 43341) -.hickoryrecord.com/app/deal/ -# ||herzeleid.com/files/images/banners/ (easylistchina+easylist.txt: 43339) -.herzeleid.com/files/images/banners/ -# ||herold.at^*.swf?*&linktarget=_blank (easylistchina+easylist.txt: 43338) -.herold.at/.*\.swf\?.*&linktarget=_blank -# ||herold.at/images/dealofday.swf (easylistchina+easylist.txt: 43337) -.herold.at/images/dealofday\.swf -# ||herold.at/fs/orgimg/*.swf?baseurl=http%3a%2f%2fwww.*&linktarget=_blank$object (easylistchina+easylist.txt: 43336) -.herold.at/fs/orgimg/.*\.swf\?baseurl=http%3a%2f%2fwww\..*&linktarget=_blank -# ||heraldsun.com.au^*/images/sideskins- (easylistchina+easylist.txt: 43335) -.heraldsun.com.au/.*/images/sideskins- -# ||heraldm.com^*/banner/ (easylistchina+easylist.txt: 43334) -.heraldm.com/.*/banner/ -# ||heraldm.com/iframe/ (easylistchina+easylist.txt: 43333) -.heraldm.com/iframe/ -# ||heraldm.com/hb/imad/ (easylistchina+easylist.txt: 43332) -.heraldm.com/hb/imad/ -# ||hentaistream.com/wp-includes/images/$object (easylistchina+easylist.txt: 43331) -.hentaistream.com/wp-includes/images/ -# ||hentaihaven.org/wp-content/banners/ (easylistchina+easylist.txt: 43330) -.hentaihaven.org/wp-content/banners/ -# ||hentai2read.com/ios/swf/ (easylistchina+easylist.txt: 43329) -.hentai2read.com/ios/swf/ -# ||helsinkitimes.fi^*/banners/ (easylistchina+easylist.txt: 43328) -.helsinkitimes.fi/.*/banners/ -# ||hejban.youwatch.org^ (easylistchina+easylist.txt: 43327) -.hejban.youwatch.org -# ||heatworld.com^*_300x160.jpg (easylistchina+easylist.txt: 43326) -.heatworld.com/.*_300x160\.jpg -# ||heatworld.com/upload/takeovers/ (easylistchina+easylist.txt: 43325) -.heatworld.com/upload/takeovers/ -# ||heatworld.com/images/*_83x76_ (easylistchina+easylist.txt: 43324) -.heatworld.com/images/.*_83x76_ -# ||hearse.com^*/billboards/ (easylistchina+easylist.txt: 43323) -.hearse.com/.*/billboards/ -# ||healthfreedoms.org/assets/swf/320x320_ (easylistchina+easylist.txt: 43322) -.healthfreedoms.org/assets/swf/320x320_ -# ||headlineplanet.com/home/burstbox.html (easylistchina+easylist.txt: 43321) -.headlineplanet.com/home/burstbox\.html -# ||headlineplanet.com/home/box.html (easylistchina+easylist.txt: 43320) -.headlineplanet.com/home/box\.html -# ||hdtvtest.co.uk^*/pricerunner.php (easylistchina+easylist.txt: 43319) -.hdtvtest.co.uk/.*/pricerunner\.php -# ||hdtvtest.co.uk/image/partner/$image (easylistchina+easylist.txt: 43318) -.hdtvtest.co.uk/image/partner/ -# ||hd-bb.org^*/dl4fbanner.gif (easylistchina+easylist.txt: 43317) -.hd-bb.org/.*/dl4fbanner\.gif -# ||hawkesbaytoday.co.nz/nz_regionals/marketplace/ (easylistchina+easylist.txt: 43315) -.hawkesbaytoday.co.nz/nz_regionals/marketplace/ -# ||hawkesbay.co.nz/images/banners/ (easylistchina+easylist.txt: 43314) -.hawkesbay.co.nz/images/banners/ -# ||hawaiireporter.com^*_300x400.jpg (easylistchina+easylist.txt: 43313) -.hawaiireporter.com/.*_300x400\.jpg -# ||hawaiireporter.com^*/winnerscampad.jpg (easylistchina+easylist.txt: 43312) -.hawaiireporter.com/.*/winnerscampad\.jpg -# ||hawaiireporter.com^*/upandruningy.jpg (easylistchina+easylist.txt: 43311) -.hawaiireporter.com/.*/upandruningy\.jpg -# ||hawaiireporter.com^*/js.jpg (easylistchina+easylist.txt: 43310) -.hawaiireporter.com/.*/js\.jpg -# ||hawaiireporter.com^*/463%C3%9757-Kamaaina.jpg (easylistchina+easylist.txt: 43309) -.hawaiireporter.com/.*/463%C3%9757-Kamaaina\.jpg -# ||hawaiireporter.com^*-300x250.jpg (easylistchina+easylist.txt: 43308) -.hawaiireporter.com/.*-300x250\.jpg -# ||hardwareheaven.com/wp-content/*_skin_ (easylistchina+easylist.txt: 43307) -.hardwareheaven.com/wp-content/.*_skin_ -# ||hardwareheaven.com/styles/*/frontpage/backdrop.jpg (easylistchina+easylist.txt: 43306) -.hardwareheaven.com/styles/.*/frontpage/backdrop\.jpg -# ||happierabroad.com/Images/banner (easylistchina+easylist.txt: 43305) -.happierabroad.com/Images/banner -# ||hancinema.net/images/watch-now (easylistchina+easylist.txt: 43304) -.hancinema.net/images/watch-now -# ||hancinema.net/images/banner_ (easylistchina+easylist.txt: 43303) -.hancinema.net/images/banner_ -# ||hahasport.com/ads/ (easylistchina+easylist.txt: 43302) -.hahasport.com/ads/ -# ||hackingchinese.com/media/skritter5.jpg (easylistchina+easylist.txt: 43301) -.hackingchinese.com/media/skritter5\.jpg -# ||hackingchinese.com/media/pleco.png (easylistchina+easylist.txt: 43300) -.hackingchinese.com/media/pleco\.png -# ||hackingchinese.com/media/hellochinese.jpg (easylistchina+easylist.txt: 43299) -.hackingchinese.com/media/hellochinese\.jpg -# ||hackingchinese.com/media/hcw4.png (easylistchina+easylist.txt: 43298) -.hackingchinese.com/media/hcw4\.png -# ||ha.ckers.org/images/sectheory-bot.png (easylistchina+easylist.txt: 43297) -.ha.ckers.org/images/sectheory-bot\.png -# ||ha.ckers.org/images/nto_top.png (easylistchina+easylist.txt: 43296) -.ha.ckers.org/images/nto_top\.png -# ||ha.ckers.org/images/fallingrock-bot.png (easylistchina+easylist.txt: 43295) -.ha.ckers.org/images/fallingrock-bot\.png -# ||h33t.to/images/button_direct.png (easylistchina+easylist.txt: 43294) -.h33t.to/images/button_direct\.png -# ||gwinnettdailypost.com/1.iframe.asp? (easylistchina+easylist.txt: 43293) -.gwinnettdailypost.com/1\.iframe\.asp\? -# ||guru99.com/images/adblocker/ (easylistchina+easylist.txt: 43292) -.guru99.com/images/adblocker/ -# ||gurgle.com/modules/mod_m10banners/ (easylistchina+easylist.txt: 43291) -.gurgle.com/modules/mod_m10banners/ -# ||guns.ru^*/banners/ (easylistchina+easylist.txt: 43290) -.guns.ru/.*/banners/ -# ||guns.ru^*/banner/ (easylistchina+easylist.txt: 43289) -.guns.ru/.*/banner/ -# ||gunfreezone.net^*_ad.jpg (easylistchina+easylist.txt: 43288) -.gunfreezone.net/.*_ad\.jpg -# ||gumtree.com^*/dart_wrapper_ (easylistchina+easylist.txt: 43287) -.gumtree.com/.*/dart_wrapper_ -# ||gulfnews.com^*/channelSponsorImage/ (easylistchina+easylist.txt: 43286) -.gulfnews.com/.*/channelSponsorImage/ -# ||gulf-daily-news.com/180x150.htm (easylistchina+easylist.txt: 43285) -.gulf-daily-news.com/180x150\.htm -# ||guardian.bz/images/banners/ (easylistchina+easylist.txt: 43284) -.guardian.bz/images/banners/ -# ||gtweekly.com/images/banners/ (easylistchina+easylist.txt: 43283) -.gtweekly.com/images/banners/ -# ||gtsplus.net*/pantop.html (easylistchina+easylist.txt: 43282) -.gtsplus.net*./(.*/)?pantop\.html -# ||gtsplus.net*/panbottom.html (easylistchina+easylist.txt: 43281) -.gtsplus.net*./(.*/)?panbottom\.html -# ||gtop100.com/a_images/show-a.php? (easylistchina+easylist.txt: 43280) -.gtop100.com/a_images/show-a\.php\? -# ||gsprating.com/gap/image.php? (easylistchina+easylist.txt: 43279) -.gsprating.com/gap/image\.php\? -# ||greyorgray.com/images/hdtv-genie-gog.jpg (easylistchina+easylist.txt: 43277) -.greyorgray.com/images/hdtv-genie-gog\.jpg -# ||greyorgray.com/images/Fast%20Business%20Loans%20Ad.jpg (easylistchina+easylist.txt: 43276) -.greyorgray.com/images/Fast%20Business%20Loans%20Ad\.jpg -# ||greenoptimistic.com/images/electrician2.png (easylistchina+easylist.txt: 43275) -.greenoptimistic.com/images/electrician2\.png -# ||green.virtual-nights.com^ (easylistchina+easylist.txt: 43274) -.green.virtual-nights.com -# ||greatgirlsgames.com/a/skyscraper.php (easylistchina+easylist.txt: 43273) -.greatgirlsgames.com/a/skyscraper\.php -# ||greatgirlsgames.com/100x100.php (easylistchina+easylist.txt: 43272) -.greatgirlsgames.com/100x100\.php -# ||greaterkashmir.com/adds_ (easylistchina+easylist.txt: 43271) -.greaterkashmir.com/adds_ -# ||greatdeals.co.ke/images/banners/ (easylistchina+easylist.txt: 43270) -.greatdeals.co.ke/images/banners/ -# ||greatandhra.com/images/*_ga_ (easylistchina+easylist.txt: 43269) -.greatandhra.com/images/.*_ga_ -# ||graphic.com.gh/images/banners/ (easylistchina+easylist.txt: 43268) -.graphic.com.gh/images/banners/ -# ||grapevine.is/media/flash/*.swf (easylistchina+easylist.txt: 43267) -.grapevine.is/media/flash/.*\.swf -# ||grammar-monster.com/scripts/$subdocument (easylistchina+easylist.txt: 43266) -.grammar-monster.com/scripts/ -# ||gq.co.za^*/sitetakeover/ (easylistchina+easylist.txt: 43265) -.gq.co.za/.*/sitetakeover/ -# ||gp3series.com^*/Partners/ (easylistchina+easylist.txt: 43264) -.gp3series.com/.*/Partners/ -# ||gowilkes.com/other/ (easylistchina+easylist.txt: 43263) -.gowilkes.com/other/ -# ||gowilkes.com/cj/ (easylistchina+easylist.txt: 43262) -.gowilkes.com/cj/ -# ||gov-auctions.org^*/banner/ (easylistchina+easylist.txt: 43261) -.gov-auctions.org/.*/banner/ -# ||gospel1190.net/rotatorimages/ (easylistchina+easylist.txt: 43259) -.gospel1190.net/rotatorimages/ -# ||gopride.com^*/banners/ (easylistchina+easylist.txt: 43258) -.gopride.com/.*/banners/ -# ||gooster.co.uk/js/ov.js.php (easylistchina+easylist.txt: 43257) -.gooster.co.uk/js/ov\.js\.php -# ||goodgearguide.com.au/files/skins/ (easylistchina+easylist.txt: 43252) -.goodgearguide.com.au/files/skins/ -# ||goodanime.net/images/crazy*.jpg (easylistchina+easylist.txt: 43251) -.goodanime.net/images/crazy.*\.jpg -# ||gonzagamer.com/uci/popover.js (easylistchina+easylist.txt: 43250) -.gonzagamer.com/uci/popover\.js -# ||gomlab.com/img/banner/ (easylistchina+easylist.txt: 43249) -.gomlab.com/img/banner/ -# ||golf365.com^*/site-bg- (easylistchina+easylist.txt: 43248) -.golf365.com/.*/site-bg- -# ||golf365.co.za^*/site-bg- (easylistchina+easylist.txt: 43247) -.golf365.co.za/.*/site-bg- -# ||goldenskate.com/sponsors/ (easylistchina+easylist.txt: 43246) -.goldenskate.com/sponsors/ -# ||gold1013fm.com/promotion/ (easylistchina+easylist.txt: 43245) -.gold1013fm.com/promotion/ -# ||gold1013fm.com/images/background/ (easylistchina+easylist.txt: 43244) -.gold1013fm.com/images/background/ -# ||gold-prices.biz^*_400x300.gif (easylistchina+easylist.txt: 43243) -.gold-prices.biz/.*_400x300\.gif -# ||gold-prices.biz/gold_trading_leader.gif (easylistchina+easylist.txt: 43242) -.gold-prices.biz/gold_trading_leader\.gif -# ||gokunming.com/images/prom/ (easylistchina+easylist.txt: 43241) -.gokunming.com/images/prom/ -# ||godisageek.com/amazon.png (easylistchina+easylist.txt: 43240) -.godisageek.com/amazon\.png -# ||goauto.com.au/mellor/mellor.nsf/toy$subdocument (easylistchina+easylist.txt: 43239) -.goauto.com.au/mellor/mellor\.nsf/toy -# ||goal.com^*/branding/ (easylistchina+easylist.txt: 43238) -.goal.com/.*/branding/ -# ||goal.com^*/betting/$~stylesheet (easylistchina+easylist.txt: 43237) -.goal.com/.*/betting/ -# ||go4up.com/assets/img/download-button.png (easylistchina+easylist.txt: 43236) -.go4up.com/assets/img/download-button\.png -# ||go4up.com/assets/img/d0.png (easylistchina+easylist.txt: 43235) -.go4up.com/assets/img/d0\.png -# ||glocktalk.com/forums/images/banners/ (easylistchina+easylist.txt: 43234) -.glocktalk.com/forums/images/banners/ -# ||globaltimes.cn/desktopmodules/bannerdisplay/ (easylistchina+easylist.txt: 43233) -.globaltimes.cn/desktopmodules/bannerdisplay/ -# ||globalsecurity.org/_inc/frames/ (easylistchina+easylist.txt: 43232) -.globalsecurity.org/_inc/frames/ -# ||gledaisport.com/ads/ (easylistchina+easylist.txt: 43231) -.gledaisport.com/ads/ -# ||glassdoor.com/getAdSlotContentsAjax.htm? (easylistchina+easylist.txt: 43230) -.glassdoor.com/getAdSlotContentsAjax\.htm\? -# ||glamourviews.com/home/zones? (easylistchina+easylist.txt: 43229) -.glamourviews.com/home/zones\? -# ||glam.com^*/affiliate/ (easylistchina+easylist.txt: 43228) -.glam.com/.*/affiliate/ -# ||gizmochina.com^*/landvo-l600-pro-feature.jpg (easylistchina+easylist.txt: 43227) -.gizmochina.com/.*/landvo-l600-pro-feature\.jpg -# ||gizmochina.com^*/kingsing-t8-advert.jpg (easylistchina+easylist.txt: 43226) -.gizmochina.com/.*/kingsing-t8-advert\.jpg -# ||gizmochina.com^*/100002648432985.gif (easylistchina+easylist.txt: 43225) -.gizmochina.com/.*/100002648432985\.gif -# ||gizmochina.com/images/blackview.jpg (easylistchina+easylist.txt: 43224) -.gizmochina.com/images/blackview\.jpg -# ||girlsgames.biz/games/partner*.php (easylistchina+easylist.txt: 43223) -.girlsgames.biz/games/partner.*\.php -# ||girlguides.co.za/images/banners/ (easylistchina+easylist.txt: 43222) -.girlguides.co.za/images/banners/ -# ||gigaom2.files.wordpress.com^*-center-top$image (easylistchina+easylist.txt: 43221) -.gigaom2.files.wordpress.com/.*-center-top -# ||giftguide.savannahnow.com/giftguide/widgets/ (easylistchina+easylist.txt: 43220) -.giftguide.savannahnow.com/giftguide/widgets/ -# ||ghananewsagency.org/assets/banners/ (easylistchina+easylist.txt: 43219) -.ghananewsagency.org/assets/banners/ -# ||ghafla.co.ke/images/bgmax/ (easylistchina+easylist.txt: 43218) -.ghafla.co.ke/images/bgmax/ -# ||ghafla.co.ke/images/banners/ (easylistchina+easylist.txt: 43217) -.ghafla.co.ke/images/banners/ -# ||ghacks.net/skin- (easylistchina+easylist.txt: 43216) -.ghacks.net/skin- -# ||gfx.infomine.com^ (easylistchina+easylist.txt: 43215) -.gfx.infomine.com -# ||gfi.com/blog/wp-content/uploads/*-BlogBanner (easylistchina+easylist.txt: 43214) -.gfi.com/blog/wp-content/uploads/.*-BlogBanner -# ||getthekick.eu^*/banners/ (easylistchina+easylist.txt: 43213) -.getthekick.eu/.*/banners/ -# ||getsurrey.co.uk^*/bg_takeover_ (easylistchina+easylist.txt: 43212) -.getsurrey.co.uk/.*/bg_takeover_ -# ||getrichslowly.org/blog/img/banner/ (easylistchina+easylist.txt: 43211) -.getrichslowly.org/blog/img/banner/ -# ||getreading.co.uk/static/img/bg_takeover_ (easylistchina+easylist.txt: 43209) -.getreading.co.uk/static/img/bg_takeover_ -# ||getprice.com.au/searchwidget.aspx?$subdocument (easylistchina+easylist.txt: 43208) -.getprice.com.au/searchwidget\.aspx\? -# ||getfoxyproxy.org/images/abine/ (easylistchina+easylist.txt: 43207) -.getfoxyproxy.org/images/abine/ -# ||get.thefile.me^ (easylistchina+easylist.txt: 43206) -.get.thefile.me -# ||get-bitcoins-free.eu/img/blackred728smallsize.gif (easylistchina+easylist.txt: 43205) -.get-bitcoins-free.eu/img/blackred728smallsize\.gif -# ||gestetnerupdates.com^*/perfect-auto-collision_banner.gif (easylistchina+easylist.txt: 43204) -.gestetnerupdates.com/.*/perfect-auto-collision_banner\.gif -# ||gestetnerupdates.com^*/Gestetner-Miles.gif (easylistchina+easylist.txt: 43203) -.gestetnerupdates.com/.*/Gestetner-Miles\.gif -# ||gestetnerupdates.com^*/eagle-sewer.gif (easylistchina+easylist.txt: 43202) -.gestetnerupdates.com/.*/eagle-sewer\.gif -# ||gestetnerupdates.com^*/chesed-shel-emes-600x75.gif (easylistchina+easylist.txt: 43201) -.gestetnerupdates.com/.*/chesed-shel-emes-600x75\.gif -# ||geoshopping.nzherald.co.nz^ (easylistchina+easylist.txt: 43200) -.geoshopping.nzherald.co.nz -# ||geometria.tv/banners/ (easylistchina+easylist.txt: 43199) -.geometria.tv/banners/ -# ||geocities.yahoo.*/js/sq. (easylistchina+easylist.txt: 43198) -.geocities.yahoo.*./(.*/)?js/sq\. -# ||geocities.com/js_source/ (easylistchina+easylist.txt: 43197) -.geocities.com/js_source/ -# ||gentoo.org/images/sponsors/ (easylistchina+easylist.txt: 43196) -.gentoo.org/images/sponsors/ -# ||generalfiles.me^*/download_sponsored. (easylistchina+easylist.txt: 43195) -.generalfiles.me/.*/download_sponsored\. -# ||gelbooru.com/protech.php$subdocument (easylistchina+easylist.txt: 43194) -.gelbooru.com/protech\.php -# ||gelbooru.com/poll.php$subdocument (easylistchina+easylist.txt: 43193) -.gelbooru.com/poll\.php -# ||gelbooru.com/lk.php$subdocument (easylistchina+easylist.txt: 43192) -.gelbooru.com/lk\.php -# ||geeklab.info^*/billy.png (easylistchina+easylist.txt: 43191) -.geeklab.info/.*/billy\.png -# ||geckoforums.net/banners/ (easylistchina+easylist.txt: 43190) -.geckoforums.net/banners/ -# ||gcnlive.com/assets/sponsorsPlayer/ (easylistchina+easylist.txt: 43189) -.gcnlive.com/assets/sponsorsPlayer/ -# ||gcnlive.com/assets/sponsors/ (easylistchina+easylist.txt: 43188) -.gcnlive.com/assets/sponsors/ -# ||gbrej.com/c/ (easylistchina+easylist.txt: 43187) -.gbrej.com/c/ -# ||gbatemp.net/images/ab/ (easylistchina+easylist.txt: 43186) -.gbatemp.net/images/ab/ -# ||gaynz.gen.nz/mysa/banners/ (easylistchina+easylist.txt: 43185) -.gaynz.gen.nz/mysa/banners/ -# ||gaynz.com/mysa/banners/ (easylistchina+easylist.txt: 43184) -.gaynz.com/mysa/banners/ -# ||gaydarradio.com/userportal/miva/ (easylistchina+easylist.txt: 43183) -.gaydarradio.com/userportal/miva/ -# ||gawkerassets.com^*/background.jpg (easylistchina+easylist.txt: 43182) -.gawkerassets.com/.*/background\.jpg -# ||gateprep.com/templates/default/images/promo/ (easylistchina+easylist.txt: 43181) -.gateprep.com/templates/default/images/promo/ -# ||gasgoo.com/promo/ (easylistchina+easylist.txt: 43180) -.gasgoo.com/promo/ -# ||garrysmod.org/img/sad/ (easylistchina+easylist.txt: 43179) -.garrysmod.org/img/sad/ -# ||gappon.com/images/hot2.gif (easylistchina+easylist.txt: 43178) -.gappon.com/images/hot2\.gif -# ||ganool.com/wp-content/uploads/*/matrix303.gif (easylistchina+easylist.txt: 43177) -.ganool.com/wp-content/uploads/.*/matrix303\.gif -# ||ganool.com/wp-content/uploads/*/Javtoys300250..gif (easylistchina+easylist.txt: 43176) -.ganool.com/wp-content/uploads/.*/Javtoys300250\.\.gif -# ||ganool.com/pup.js (easylistchina+easylist.txt: 43175) -.ganool.com/pup\.js -# ||gamingsquid.com/wp-content/banners/ (easylistchina+easylist.txt: 43174) -.gamingsquid.com/wp-content/banners/ -# ||gamevid.com/13/ads/ (easylistchina+easylist.txt: 43173) -.gamevid.com/13/ads/ -# ||gametrailers.com^*/webskin_ (easylistchina+easylist.txt: 43172) -.gametrailers.com/.*/webskin_ -# ||gameshark.com^*/pageskin- (easylistchina+easylist.txt: 43171) -.gameshark.com/.*/pageskin- -# ||gamesgames.com/vda/ (easylistchina+easylist.txt: 43170) -.gamesgames.com/vda/ -# ||gamesfreez.com/banner/ (easylistchina+easylist.txt: 43169) -.gamesfreez.com/banner/ -# ||gamesforwork.com^*/dropalink_small.gif (easylistchina+easylist.txt: 43168) -.gamesforwork.com/.*/dropalink_small\.gif -# ||gameserpent.com/vc*.php (easylistchina+easylist.txt: 43167) -.gameserpent.com/vc.*\.php -# ||gameserpent.com/kit*.php (easylistchina+easylist.txt: 43166) -.gameserpent.com/kit.*\.php -# ||gamersbook.com^*/banners/ (easylistchina+easylist.txt: 43165) -.gamersbook.com/.*/banners/ -# ||gamerant.com/ads/ (easylistchina+easylist.txt: 43164) -.gamerant.com/ads/ -# ||gamepressure.com/ajax/f2p.asp (easylistchina+easylist.txt: 43163) -.gamepressure.com/ajax/f2p\.asp -# ||gameplanet.co.nz^*-takeover.jpg (easylistchina+easylist.txt: 43162) -.gameplanet.co.nz/.*-takeover\.jpg -# ||gamemakerblog.com/gma/gatob.php (easylistchina+easylist.txt: 43161) -.gamemakerblog.com/gma/gatob\.php -# ||gameknot.com/amaster.pl?j= (easylistchina+easylist.txt: 43160) -.gameknot.com/amaster\.pl\?j= -# ||gamecopyworld.eu*/! (easylistchina+easylist.txt: 43159) -.gamecopyworld.eu*./(.*/)?! -# ||gamecopyworld.com^*/vg_160x120_ (easylistchina+easylist.txt: 43158) -.gamecopyworld.com/.*/vg_160x120_ -# ||gamecopyworld.com/games/js/abd.js (easylistchina+easylist.txt: 43157) -.gamecopyworld.com/games/js/abd\.js -# ||gamecopyworld.com/games/i/if6.gif (easylistchina+easylist.txt: 43156) -.gamecopyworld.com/games/i/if6\.gif -# ||gamecopyworld.com*/! (easylistchina+easylist.txt: 43155) -.gamecopyworld.com*./(.*/)?! -# ||gameads.digyourowngrave.com^ (easylistchina+easylist.txt: 43154) -.gameads.digyourowngrave.com -# ||game1games.com/exchange/ (easylistchina+easylist.txt: 43153) -.game1games.com/exchange/ -# ||gamblinginsider.com^*/partner_events.php (easylistchina+easylist.txt: 43152) -.gamblinginsider.com/.*/partner_events\.php -# ||gallerysense.se/site/getBannerCode (easylistchina+easylist.txt: 43151) -.gallerysense.se/site/getBannerCode -# ||gallerynova.se^*/jquery.bpopup.min.js (easylistchina+easylist.txt: 43150) -.gallerynova.se/.*/jquery\.bpopup\.min\.js -# ||galatta.com^*/banners/ (easylistchina+easylist.txt: 43149) -.galatta.com/.*/banners/ -# ||galatta.com^*/bannerimages/ (easylistchina+easylist.txt: 43148) -.galatta.com/.*/bannerimages/ -# ||gaeatimes.com/ctad/ (easylistchina+easylist.txt: 43147) -.gaeatimes.com/ctad/ -# ||gadgetshowlive.net^*/banners/ (easylistchina+easylist.txt: 43146) -.gadgetshowlive.net/.*/banners/ -# ||gadgetmac.com^*/sponsors/ (easylistchina+easylist.txt: 43145) -.gadgetmac.com/.*/sponsors/ -# ||gadget.co.za/siteimages/banners/ (easylistchina+easylist.txt: 43144) -.gadget.co.za/siteimages/banners/ -# ||gaccwest.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43143) -.gaccwest.com/uploads/tx_bannermanagement/ -# ||gaccsouth.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43142) -.gaccsouth.com/uploads/tx_bannermanagement/ -# ||gaccny.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43141) -.gaccny.com/uploads/tx_bannermanagement/ -# ||gaccmidwest.org/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43140) -.gaccmidwest.org/uploads/tx_bannermanagement/ -# ||gabzfm.com/images/banners/ (easylistchina+easylist.txt: 43139) -.gabzfm.com/images/banners/ -# ||g.brothersoft.com^ (easylistchina+easylist.txt: 43138) -.g.brothersoft.com -# ||f谋rstrowsports.eu/pu/ (easylistchina+easylist.txt: 43137) -.f谋rstrowsports.eu/pu/ -# ||futbol24.com/f24/rek/$~xmlhttprequest (easylistchina+easylist.txt: 43135) -.futbol24.com/f24/rek/ -# ||fuse.tv/images/sponsor/ (easylistchina+easylist.txt: 43134) -.fuse.tv/images/sponsor/ -# ||funpic.org/layer.php? (easylistchina+easylist.txt: 43133) -.funpic.org/layer\.php\? -# ||funpic.de/layer.php? (easylistchina+easylist.txt: 43132) -.funpic.de/layer\.php\? -# ||fulltv.tv/pub_ (easylistchina+easylist.txt: 43131) -.fulltv.tv/pub_ -# ||fullrip.net/images/download- (easylistchina+easylist.txt: 43130) -.fullrip.net/images/download- -# ||fulhamfc.com/i/partner/ (easylistchina+easylist.txt: 43129) -.fulhamfc.com/i/partner/ -# ||fugitive.com^*-468x60web. (easylistchina+easylist.txt: 43128) -.fugitive.com/.*-468x60web\. -# ||fudzilla.com^*/banners/ (easylistchina+easylist.txt: 43127) -.fudzilla.com/.*/banners/ -# ||ftlauderdalewebcam.com^*-WebCamBannerFall_ (easylistchina+easylist.txt: 43126) -.ftlauderdalewebcam.com/.*-WebCamBannerFall_ -# ||ftlauderdalewebcam.com/images/*webcambanner (easylistchina+easylist.txt: 43125) -.ftlauderdalewebcam.com/images/.*webcambanner -# ||ftdworld.net/images/banners/ (easylistchina+easylist.txt: 43124) -.ftdworld.net/images/banners/ -# ||fscheetahs.co.za/images/Sponsers/ (easylistchina+easylist.txt: 43123) -.fscheetahs.co.za/images/Sponsers/ -# ||frozen-roms.me/popup.php (easylistchina+easylist.txt: 43122) -.frozen-roms.me/popup\.php -# ||frozen-roms.in/popup.php (easylistchina+easylist.txt: 43121) -.frozen-roms.in/popup\.php -# ||frombar.com/ads/ (easylistchina+easylist.txt: 43120) -.frombar.com/ads/ -# ||friday-ad.co.uk/endeca/afccontainer.aspx (easylistchina+easylist.txt: 43119) -.friday-ad.co.uk/endeca/afccontainer\.aspx -# ||friday-ad.co.uk/banner.js? (easylistchina+easylist.txt: 43118) -.friday-ad.co.uk/banner\.js\? -# ||freshremix.ru/images/ffdownloader1.jpg (easylistchina+easylist.txt: 43117) -.freshremix.ru/images/ffdownloader1\.jpg -# ||freshremix.org/templates/freshremix_eng/images/300.gif (easylistchina+easylist.txt: 43116) -.freshremix.org/templates/freshremix_eng/images/300\.gif -# ||freshplaza.com/b/ (easylistchina+easylist.txt: 43115) -.freshplaza.com/b/ -# ||fresh-weather.com/popup1.gif (easylistchina+easylist.txt: 43114) -.fresh-weather.com/popup1\.gif -# ||frenchradiolondon.com/data/carousel/ (easylistchina+easylist.txt: 43113) -.frenchradiolondon.com/data/carousel/ -# ||freeworldgroup.com/banner (easylistchina+easylist.txt: 43112) -.freeworldgroup.com/banner -# ||freevermontradio.org/pictures/lauren_Stagnitti.jpg (easylistchina+easylist.txt: 43111) -.freevermontradio.org/pictures/lauren_Stagnitti\.jpg -# ||freetypinggame.net/burst720.asp (easylistchina+easylist.txt: 43110) -.freetypinggame.net/burst720\.asp -# ||freetv-video.ca^*/popover-load-js.php? (easylistchina+easylist.txt: 43109) -.freetv-video.ca/.*/popover-load-js\.php\? -# ||freestockcharts.com/symbolhit.aspx$subdocument (easylistchina+easylist.txt: 43108) -.freestockcharts.com/symbolhit\.aspx -# ||freesoftwaremagazine.com/extras/ (easylistchina+easylist.txt: 43107) -.freesoftwaremagazine.com/extras/ -# ||freeroms.com/skyscraper_ (easylistchina+easylist.txt: 43106) -.freeroms.com/skyscraper_ -# ||freeroms.com/bigbox_ (easylistchina+easylist.txt: 43105) -.freeroms.com/bigbox_ -# ||freeroms.com/bigbox.html (easylistchina+easylist.txt: 43104) -.freeroms.com/bigbox\.html -# ||freepornsubmits.com/ads/ (easylistchina+easylist.txt: 43103) -.freepornsubmits.com/ads/ -# ||freenode.net/images/freenode_osuosl.png (easylistchina+easylist.txt: 43102) -.freenode.net/images/freenode_osuosl\.png -# ||freenode.net/images/ack_privateinternetaccess-freenode.png (easylistchina+easylist.txt: 43101) -.freenode.net/images/ack_privateinternetaccess-freenode\.png -# ||freeminecraft.me/mw3.png (easylistchina+easylist.txt: 43100) -.freeminecraft.me/mw3\.png -# ||freemediatv.com/images/inmemoryofmichael.jpg (easylistchina+easylist.txt: 43099) -.freemediatv.com/images/inmemoryofmichael\.jpg -# ||freeappaday.com/nimgs/bb/ (easylistchina+easylist.txt: 43098) -.freeappaday.com/nimgs/bb/ -# ||freeads.co.uk/ctx.php? (easylistchina+easylist.txt: 43097) -.freeads.co.uk/ctx\.php\? -# ||free-webhosts.com/images/a/ (easylistchina+easylist.txt: 43096) -.free-webhosts.com/images/a/ -# ||free-tv-video-online.me/season-side- (easylistchina+easylist.txt: 43095) -.free-tv-video-online.me/season-side- -# ||free-tv-video-online.me/episode-buttom- (easylistchina+easylist.txt: 43094) -.free-tv-video-online.me/episode-buttom- -# ||free-tv-video-online.me/300s.html (easylistchina+easylist.txt: 43093) -.free-tv-video-online.me/300s\.html -# ||free-torrents.org^*/banners/ (easylistchina+easylist.txt: 43092) -.free-torrents.org/.*/banners/ -# ||free-times.com/image/pool/ (easylistchina+easylist.txt: 43091) -.free-times.com/image/pool/ -# ||fredmiranda.com/buzz/canondble-600x90.jpg (easylistchina+easylist.txt: 43090) -.fredmiranda.com/buzz/canondble-600x90\.jpg -# ||freakshare.com/yild.js (easylistchina+easylist.txt: 43089) -.freakshare.com/yild\.js -# ||fpscheats.com/fpsbanner.jpg (easylistchina+easylist.txt: 43088) -.fpscheats.com/fpsbanner\.jpg -# ||fpscheats.com/banner-img.jpg (easylistchina+easylist.txt: 43087) -.fpscheats.com/banner-img\.jpg -# ||foxsportsradio.com/pages/second300x250iframe.html (easylistchina+easylist.txt: 43086) -.foxsportsradio.com/pages/second300x250iframe\.html -# ||foxsports540.com/images/banner2.png (easylistchina+easylist.txt: 43085) -.foxsports540.com/images/banner2\.png -# ||foxsports540.com/images/banner1.png (easylistchina+easylist.txt: 43084) -.foxsports540.com/images/banner1\.png -# ||foxsports.com^*_skin_ (easylistchina+easylist.txt: 43083) -.foxsports.com/.*_skin_ -# ||foxsports.com^*/Sponsors/ (easylistchina+easylist.txt: 43082) -.foxsports.com/.*/Sponsors/ -# ||foxsports.com^*-skin_ (easylistchina+easylist.txt: 43081) -.foxsports.com/.*-skin_ -# ||foxsports.com^*-Skin- (easylistchina+easylist.txt: 43080) -.foxsports.com/.*-Skin- -# ||foxsports.com/component/xml/SBMarketingTakeOverPromos (easylistchina+easylist.txt: 43079) -.foxsports.com/component/xml/SBMarketingTakeOverPromos -# ||foxsports.com/component/*_wallpaper_$image (easylistchina+easylist.txt: 43078) -.foxsports.com/component/.*_wallpaper_ -# ||foxsports.com.au^*/sponsor/ (easylistchina+easylist.txt: 43077) -.foxsports.com.au/.*/sponsor/ -# ||foxsoccer2go.com/namedImage/*/backgroundSkin.jpg (easylistchina+easylist.txt: 43076) -.foxsoccer2go.com/namedImage/.*/backgroundSkin\.jpg -# ||foxbusiness.com/html/google_homepage_promo (easylistchina+easylist.txt: 43075) -.foxbusiness.com/html/google_homepage_promo -# ||forward.com/workspace/assets/newimages/amazon.png (easylistchina+easylist.txt: 43074) -.forward.com/workspace/assets/newimages/amazon\.png -# ||forumw.org/images/uploading.gif (easylistchina+easylist.txt: 43073) -.forumw.org/images/uploading\.gif -# ||forumimg.ipmart.com/swf/ipmart_forum/banner (easylistchina+easylist.txt: 43072) -.forumimg.ipmart.com/swf/ipmart_forum/banner -# ||forexpeacearmy.com/images/banners/ (easylistchina+easylist.txt: 43071) -.forexpeacearmy.com/images/banners/ -# ||foreignersinuk.co.uk^*/banner/ (easylistchina+easylist.txt: 43070) -.foreignersinuk.co.uk/.*/banner/ -# ||fordforums.com.au/logos/ (easylistchina+easylist.txt: 43069) -.fordforums.com.au/logos/ -# ||footballtradedirectory.com^*banner (easylistchina+easylist.txt: 43068) -.footballtradedirectory.com/.*banner -# ||footballshirtculture.com/images/e12b.jpg (easylistchina+easylist.txt: 43067) -.footballshirtculture.com/images/e12b\.jpg -# ||football-italia.net/imgs/moveyourmouse.gif (easylistchina+easylist.txt: 43066) -.football-italia.net/imgs/moveyourmouse\.gif -# ||foodingredientsfirst.com/content/flash_loaders/loadskyscraper.swf (easylistchina+easylist.txt: 43065) -.foodingredientsfirst.com/content/flash_loaders/loadskyscraper\.swf -# ||foodingredientsfirst.com/content/flash_loaders/loadlargetile.swf (easylistchina+easylist.txt: 43064) -.foodingredientsfirst.com/content/flash_loaders/loadlargetile\.swf -# ||foodingredientsfirst.com/content/banners/ (easylistchina+easylist.txt: 43063) -.foodingredientsfirst.com/content/banners/ -# ||fncstatic.com^*/sponsored-by.gif (easylistchina+easylist.txt: 43062) -.fncstatic.com/.*/sponsored-by\.gif -# ||fmr.co.za^*/banners/ (easylistchina+easylist.txt: 43061) -.fmr.co.za/.*/banners/ -# ||flyordie.com/games/online/ca.html (easylistchina+easylist.txt: 43060) -.flyordie.com/games/online/ca\.html -# ||flyordie.com/games/free/b/ (easylistchina+easylist.txt: 43059) -.flyordie.com/games/free/b/ -# ||flvto.biz/scripts/banners.php? (easylistchina+easylist.txt: 43058) -.flvto.biz/scripts/banners\.php\? -# ||flopturnriver.com*/banners/ (easylistchina+easylist.txt: 43056) -.flopturnriver.com*./(.*/)?banners/ -# ||flightradar24.com/_includes/sections/airportAd.php (easylistchina+easylist.txt: 43055) -.flightradar24.com/_includes/sections/airportAd\.php -# ||flicks.co.nz/takeovercss/ (easylistchina+easylist.txt: 43054) -.flicks.co.nz/takeovercss/ -# ||flicks.co.nz/images/takeovers/ (easylistchina+easylist.txt: 43053) -.flicks.co.nz/images/takeovers/ -# ||fleetwatch.co.za/images/banners/ (easylistchina+easylist.txt: 43052) -.fleetwatch.co.za/images/banners/ -# ||flatpanelshd.com/pictures/*banner (easylistchina+easylist.txt: 43051) -.flatpanelshd.com/pictures/.*banner -# ||flashy8.com/banner/ (easylistchina+easylist.txt: 43050) -.flashy8.com/banner/ -# ||flashx.tv^*/counterck.html (easylistchina+easylist.txt: 43049) -.flashx.tv/.*/counterck\.html -# ||flashx.tv/nuevo/player/js/anya.js (easylistchina+easylist.txt: 43048) -.flashx.tv/nuevo/player/js/anya\.js -# ||flashx.tv/img/download_ (easylistchina+easylist.txt: 43047) -.flashx.tv/img/download_ -# ||flashtv.co/class/adjsxxs.js (easylistchina+easylist.txt: 43046) -.flashtv.co/class/adjsxxs\.js -# ||flashtv.co/adds/ (easylistchina+easylist.txt: 43045) -.flashtv.co/adds/ -# ||flashscore.com/res/image/bookmaker-list.png (easylistchina+easylist.txt: 43044) -.flashscore.com/res/image/bookmaker-list\.png -# ||flameload.com/onvertise. (easylistchina+easylist.txt: 43043) -.flameload.com/onvertise\. -# ||fiverr.com/javascripts/conversion.js (easylistchina+easylist.txt: 43042) -.fiverr.com/javascripts/conversion\.js -# ||fishchannel.com/images/sponsors/ (easylistchina+easylist.txt: 43041) -.fishchannel.com/images/sponsors/ -# ||firsttoknow.com^*/page-criteo- (easylistchina+easylist.txt: 43040) -.firsttoknow.com/.*/page-criteo- -# ||firstrowusa.eu/js/pu.js (easylistchina+easylist.txt: 43039) -.firstrowusa.eu/js/pu\.js -# ||firstrowusa.eu/js/bn.js (easylistchina+easylist.txt: 43038) -.firstrowusa.eu/js/bn\.js -# ||firstrowsports.li/frame/ (easylistchina+easylist.txt: 43037) -.firstrowsports.li/frame/ -# ||firstrows.biz/js/pu.js (easylistchina+easylist.txt: 43036) -.firstrows.biz/js/pu\.js -# ||firstrows.biz/js/bn.js (easylistchina+easylist.txt: 43035) -.firstrows.biz/js/bn\.js -# ||firstpost.in^*/promo/ (easylistchina+easylist.txt: 43034) -.firstpost.in/.*/promo/ -# ||firstpost.com^*_sponsored. (easylistchina+easylist.txt: 43033) -.firstpost.com/.*_sponsored\. -# ||firstpost.com^*_skin_ (easylistchina+easylist.txt: 43032) -.firstpost.com/.*_skin_ -# ||firstpost.com^*/sponsered- (easylistchina+easylist.txt: 43031) -.firstpost.com/.*/sponsered- -# ||firstpost.com/promo/ (easylistchina+easylist.txt: 43030) -.firstpost.com/promo/ -# ||firstnationsvoice.com/images/weblinks.swf (easylistchina+easylist.txt: 43029) -.firstnationsvoice.com/images/weblinks\.swf -# ||firingsquad.com^*/sponsor_row.gif (easylistchina+easylist.txt: 43028) -.firingsquad.com/.*/sponsor_row\.gif -# ||firedrive.com/appresources/ (easylistchina+easylist.txt: 43027) -.firedrive.com/appresources/ -# ||firedrive.com/appdata/ (easylistchina+easylist.txt: 43026) -.firedrive.com/appdata/ -# ||finextra.com^*/pantiles/ (easylistchina+easylist.txt: 43025) -.finextra.com/.*/pantiles/ -# ||finextra.com^*/leaderboards/ (easylistchina+easylist.txt: 43024) -.finextra.com/.*/leaderboards/ -# ||findthebest-sw.com/sponsor_event? (easylistchina+easylist.txt: 43023) -.findthebest-sw.com/sponsor_event\? -# ||findnsave.idahostatesman.com^ (easylistchina+easylist.txt: 43022) -.findnsave.idahostatesman.com -# ||findit.com.mt/viewer/ (easylistchina+easylist.txt: 43021) -.findit.com.mt/viewer/ -# ||findit.com.mt/dynimage/boxbanner/ (easylistchina+easylist.txt: 43020) -.findit.com.mt/dynimage/boxbanner/ -# ||findicons.com^*/125x125/ (easylistchina+easylist.txt: 43019) -.findicons.com/.*/125x125/ -# ||findfreegraphics.com/underp.js (easylistchina+easylist.txt: 43018) -.findfreegraphics.com/underp\.js -# ||findfiles.com/images/knife-dancing-1.gif (easylistchina+easylist.txt: 43017) -.findfiles.com/images/knife-dancing-1\.gif -# ||findfiles.com/images/icatchallfree.png (easylistchina+easylist.txt: 43016) -.findfiles.com/images/icatchallfree\.png -# ||financialsamurai.com/wp-content/uploads/*/sliced-alternative-10000.jpg (easylistchina+easylist.txt: 43015) -.financialsamurai.com/wp-content/uploads/.*/sliced-alternative-10000\.jpg -# ||financialnewsandtalk.com/scripts/slideshow-sponsors.js (easylistchina+easylist.txt: 43014) -.financialnewsandtalk.com/scripts/slideshow-sponsors\.js -# ||fimserve.ign.com^ (easylistchina+easylist.txt: 43013) -.fimserve.ign.com -# ||filmsite.org/dart-zones.js (easylistchina+easylist.txt: 43012) -.filmsite.org/dart-zones\.js -# ||filmovizija.com/Images/photo4sell.jpg (easylistchina+easylist.txt: 43011) -.filmovizija.com/Images/photo4sell\.jpg -# ||filmovizija.com/Images/ludovanjeaffilate.jpg (easylistchina+easylist.txt: 43010) -.filmovizija.com/Images/ludovanjeaffilate\.jpg -# ||filmey.com/Filmey.Ad.js (easylistchina+easylist.txt: 43009) -.filmey.com/Filmey\.Ad\.js -# ||filipinojournal.com/images/banners/ (easylistchina+easylist.txt: 43008) -.filipinojournal.com/images/banners/ -# ||filestream.me/requirements/images/ed.gif (easylistchina+easylist.txt: 43007) -.filestream.me/requirements/images/ed\.gif -# ||filestream.me/requirements/images/cialis_generic.gif (easylistchina+easylist.txt: 43006) -.filestream.me/requirements/images/cialis_generic\.gif -# ||filespazz.com^*/copyartwork_side_banner.gif (easylistchina+easylist.txt: 43005) -.filespazz.com/.*/copyartwork_side_banner\.gif -# ||filespazz.com/imx/template_r2_c3.jpg (easylistchina+easylist.txt: 43004) -.filespazz.com/imx/template_r2_c3\.jpg -# ||filespart.com/ot/fast.aspx? (easylistchina+easylist.txt: 43003) -.filespart.com/ot/fast\.aspx\? -# ||fileshut.com/etc/links.php?q= (easylistchina+easylist.txt: 43002) -.fileshut.com/etc/links\.php\?q= -# ||filesharingtalk.com/fst/8242/ (easylistchina+easylist.txt: 43001) -.filesharingtalk.com/fst/8242/ -# ||files.wordpress.com/*-reskin. (easylistchina+easylist.txt: 43000) -.files.wordpress.com/.*-reskin\. -# ||filerio.in^*/jquery.interstitial. (easylistchina+easylist.txt: 42999) -.filerio.in/.*/jquery\.interstitial\. -# ||fileplanet.com/fileblog/sub-no-ad.shtml (easylistchina+easylist.txt: 42998) -.fileplanet.com/fileblog/sub-no-ad\.shtml -# ||fileom.com/img/instadownload2.png (easylistchina+easylist.txt: 42997) -.fileom.com/img/instadownload2\.png -# ||fileom.com/img/downloadnow.png (easylistchina+easylist.txt: 42996) -.fileom.com/img/downloadnow\.png -# ||filegaga.com/ot/fast.php? (easylistchina+easylist.txt: 42995) -.filegaga.com/ot/fast\.php\? -# ||fileflyer.com/img/dap_banner_ (easylistchina+easylist.txt: 42994) -.fileflyer.com/img/dap_banner_ -# ||filedino.com/imagesn/downloadgif.gif (easylistchina+easylist.txt: 42993) -.filedino.com/imagesn/downloadgif\.gif -# ||file2hd.com/sweet.jpg (easylistchina+easylist.txt: 42992) -.file2hd.com/sweet\.jpg -# ||file.org^*/images/promo/ (easylistchina+easylist.txt: 42991) -.file.org/.*/images/promo/ -# ||file.org/fo/scripts/download_helpopt.js (easylistchina+easylist.txt: 42990) -.file.org/fo/scripts/download_helpopt\.js -# ||fijitimes.com/images/bspxchange.gif (easylistchina+easylist.txt: 42989) -.fijitimes.com/images/bspxchange\.gif -# ||fightersonlymag.com/images/banners/ (easylistchina+easylist.txt: 42988) -.fightersonlymag.com/images/banners/ -# ||fiberupload.org/300en.png (easylistchina+easylist.txt: 42987) -.fiberupload.org/300en\.png -# ||fiba.com/Content/Sponsors/ (easylistchina+easylist.txt: 42986) -.fiba.com/Content/Sponsors/ -# ||fhm.com^*_banner.png (easylistchina+easylist.txt: 42985) -.fhm.com/.*_banner\.png -# ||fhm.com^*_background.jpg (easylistchina+easylist.txt: 42984) -.fhm.com/.*_background\.jpg -# ||fhm.com/images/sportsbutton.gif (easylistchina+easylist.txt: 42983) -.fhm.com/images/sportsbutton\.gif -# ||fhm.com/images/casinobutton.gif (easylistchina+easylist.txt: 42982) -.fhm.com/images/casinobutton\.gif -# ||fgfx.co.uk/banner.js? (easylistchina+easylist.txt: 42981) -.fgfx.co.uk/banner\.js\? -# ||ffiles.com/counters.js (easylistchina+easylist.txt: 42980) -.ffiles.com/counters\.js -# ||fever.fm^*/sposor- (easylistchina+easylist.txt: 42979) -.fever.fm/.*/sposor- -# ||fever.fm^*/campaigns/ (easylistchina+easylist.txt: 42978) -.fever.fm/.*/campaigns/ -# ||feiwei.tv^*/sandbox.html (easylistchina+easylist.txt: 42977) -.feiwei.tv/.*/sandbox\.html -# ||feedsportal.com/videoserve/ (easylistchina+easylist.txt: 42976) -.feedsportal.com/videoserve/ -# ||feedsportal.com/creative/ (easylistchina+easylist.txt: 42975) -.feedsportal.com/creative/ -# ||feeds.feedburner.com/*.gif (easylistchina+easylist.txt: 42974) -.feeds.feedburner.com/.*\.gif -# ||feedly.com/amazon.$xmlhttprequest (easylistchina+easylist.txt: 42973) -.feedly.com/amazon\. -# ||feed-the-beast.com^*/gamevox.png (easylistchina+easylist.txt: 42972) -.feed-the-beast.com/.*/gamevox\.png -# ||fastvideo.eu/images/pl_box_rapid.jpg (easylistchina+easylist.txt: 42970) -.fastvideo.eu/images/pl_box_rapid\.jpg -# ||fastvideo.eu/images/down.png (easylistchina+easylist.txt: 42969) -.fastvideo.eu/images/down\.png -# ||fastpic.ru/dox (easylistchina+easylist.txt: 42968) -.fastpic.ru/dox -# ||fastcompany.com/sites/*/interstitial.js (easylistchina+easylist.txt: 42967) -.fastcompany.com/sites/.*/interstitial\.js -# ||farmville.com/promo_bar.php (easylistchina+easylist.txt: 42966) -.farmville.com/promo_bar\.php -# ||fark.com/cgi/buzzfeed_link.pl (easylistchina+easylist.txt: 42965) -.fark.com/cgi/buzzfeed_link\.pl -# ||fansshare.com/va/?$subdocument (easylistchina+easylist.txt: 42964) -.fansshare.com/va/\? -# ||fanfusion.org/as.js (easylistchina+easylist.txt: 42963) -.fanfusion.org/as\.js -# ||fancystreems.com/300x2503.php (easylistchina+easylist.txt: 42962) -.fancystreems.com/300x2503\.php -# ||fan.twitch.tv^ (easylistchina+easylist.txt: 42961) -.fan.twitch.tv -# ||famouspornstarstube.com/images/sponsors/ (easylistchina+easylist.txt: 42960) -.famouspornstarstube.com/images/sponsors/ -# ||familylawweek.co.uk/bin_1/ (easylistchina+easylist.txt: 42959) -.familylawweek.co.uk/bin_1/ -# ||fallout3nexus.com^*/300x600.php (easylistchina+easylist.txt: 42958) -.fallout3nexus.com/.*/300x600\.php -# ||fakku.net/static/seele-$subdocument (easylistchina+easylist.txt: 42957) -.fakku.net/static/seele- -# ||facenfacts.com^*/ads/ (easylistchina+easylist.txt: 42956) -.facenfacts.com/.*/ads/ -# ||faadooengineers.com/ads/ (easylistchina+easylist.txt: 42955) -.faadooengineers.com/ads/ -# ||f1today.net^*/sponsors/ (easylistchina+easylist.txt: 42954) -.f1today.net/.*/sponsors/ -# ||eztv.ag/js/openback*.js (easylistchina+easylist.txt: 42953) -.eztv.ag/js/openback.*\.js -# ||ezmoviestv.com^*/ad-for-ezmovies.png (easylistchina+easylist.txt: 42952) -.ezmoviestv.com/.*/ad-for-ezmovies\.png -# ||extremeoverclocking.com/template_images/it120x240.gif (easylistchina+easylist.txt: 42951) -.extremeoverclocking.com/template_images/it120x240\.gif -# ||extratorrent.cc/tz (easylistchina+easylist.txt: 42950) -.extratorrent.cc/tz -# ||extratorrent.cc/scripts/pp_ (easylistchina+easylist.txt: 42949) -.extratorrent.cc/scripts/pp_ -# ||extratorrent.cc/scripts/bo1o.js (easylistchina+easylist.txt: 42948) -.extratorrent.cc/scripts/bo1o\.js -# ||extratorrent.cc/images/wintoolspro.gif (easylistchina+easylist.txt: 42947) -.extratorrent.cc/images/wintoolspro\.gif -# ||expreview.com/exp2/ (easylistchina+easylist.txt: 42946) -.expreview.com/exp2/ -# ||expressmilwaukee.com/engines/backgrounds/js/backgrounds.js (easylistchina+easylist.txt: 42945) -.expressmilwaukee.com/engines/backgrounds/js/backgrounds\.js -# ||express.co.uk^*/sponsored/ (easylistchina+easylist.txt: 42944) -.express.co.uk/.*/sponsored/ -# ||expertreviews.co.uk^*/skins/ (easylistchina+easylist.txt: 42943) -.expertreviews.co.uk/.*/skins/ -# ||expertreviews.co.uk/?act=widgets. (easylistchina+easylist.txt: 42942) -.expertreviews.co.uk/\?act=widgets\. -# ||expatwomen.com/expat-women-sponsors/ (easylistchina+easylist.txt: 42941) -.expatwomen.com/expat-women-sponsors/ -# ||expatexchange.com/banner/ (easylistchina+easylist.txt: 42940) -.expatexchange.com/banner/ -# ||excite.com/gca_iframe.html (easylistchina+easylist.txt: 42939) -.excite.com/gca_iframe\.html -# ||exchangerates.org.uk/images/200x200_ (easylistchina+easylist.txt: 42938) -.exchangerates.org.uk/images/200x200_ -# ||exchangerates.org.uk/images/150_60_ (easylistchina+easylist.txt: 42937) -.exchangerates.org.uk/images/150_60_ -# ||exchangerates.org.uk/images-NEW/tor.gif (easylistchina+easylist.txt: 42936) -.exchangerates.org.uk/images-NEW/tor\.gif -# ||exceluser.com^*/pub/rotate_ (easylistchina+easylist.txt: 42935) -.exceluser.com/.*/pub/rotate_ -# ||exashare.com^*?*cbrandom=$script (easylistchina+easylist.txt: 42934) -.exashare.com/.*\?.*cbrandom= -# ||exashare.com/vod_stream.html (easylistchina+easylist.txt: 42933) -.exashare.com/vod_stream\.html -# ||exashare.com/playerexa.jpg (easylistchina+easylist.txt: 42932) -.exashare.com/playerexa\.jpg -# ||exashare.com/player_file.jpg (easylistchina+easylist.txt: 42931) -.exashare.com/player_file\.jpg -# ||exashare.com/player_begin.jpg (easylistchina+easylist.txt: 42930) -.exashare.com/player_begin\.jpg -# ||exashare.com/hq_stream.html (easylistchina+easylist.txt: 42929) -.exashare.com/hq_stream\.html -# ||ex1.gamecopyworld.com^$subdocument (easylistchina+easylist.txt: 42928) -.ex1.gamecopyworld.com -# ||ewrc-results.com/images/horni_ewrc_result_banner3.jpg (easylistchina+easylist.txt: 42927) -.ewrc-results.com/images/horni_ewrc_result_banner3\.jpg -# ||eweek.com^*/sponsored- (easylistchina+easylist.txt: 42926) -.eweek.com/.*/sponsored- -# ||eweek.com/widgets/ibmtco/ (easylistchina+easylist.txt: 42925) -.eweek.com/widgets/ibmtco/ -# ||eweek.com/images/stories/marketing/ (easylistchina+easylist.txt: 42924) -.eweek.com/images/stories/marketing/ -# ||evony.com/sevonyadvs2. (easylistchina+easylist.txt: 42923) -.evony.com/sevonyadvs2\. -# ||evolutionm.net/SponsorLogos/ (easylistchina+easylist.txt: 42922) -.evolutionm.net/SponsorLogos/ -# ||everythingsysadmin.com^*_sw_banner120x600_ (easylistchina+easylist.txt: 42921) -.everythingsysadmin.com/.*_sw_banner120x600_ -# ||evernote.com/prom/img/ (easylistchina+easylist.txt: 42920) -.evernote.com/prom/img/ -# ||eventful.com/tools/click/url? (easylistchina+easylist.txt: 42919) -.eventful.com/tools/click/url\? -# ||eve-search.com/gge.gif (easylistchina+easylist.txt: 42918) -.eve-search.com/gge\.gif -# ||eva.ucas.com^ (easylistchina+easylist.txt: 42917) -.eva.ucas.com -# ||euroweb.com^*/banner/ (easylistchina+easylist.txt: 42916) -.euroweb.com/.*/banner/ -# ||europeonline-magazine.eu/nuroa/ (easylistchina+easylist.txt: 42915) -.europeonline-magazine.eu/nuroa/ -# ||europeonline-magazine.eu/banner/ (easylistchina+easylist.txt: 42914) -.europeonline-magazine.eu/banner/ -# ||european-rubber-journal.com/160x600px_ (easylistchina+easylist.txt: 42913) -.european-rubber-journal.com/160x600px_ -# ||euronews.com/media/farnborough/farnborough_wp.jpg (easylistchina+easylist.txt: 42912) -.euronews.com/media/farnborough/farnborough_wp\.jpg -# ||euroleague.net^*/sponsors- (easylistchina+easylist.txt: 42911) -.euroleague.net/.*/sponsors- -# ||eurogamer.net^*/takeovers/ (easylistchina+easylist.txt: 42910) -.eurogamer.net/.*/takeovers/ -# ||eurogamer.net/quad.php (easylistchina+easylist.txt: 42909) -.eurogamer.net/quad\.php -# ||eurodict.com/images/banner_ (easylistchina+easylist.txt: 42908) -.eurodict.com/images/banner_ -# ||eurocupbasketball.com^*/sponsors- (easylistchina+easylist.txt: 42907) -.eurocupbasketball.com/.*/sponsors- -# ||eurochannel.com/images/banners/ (easylistchina+easylist.txt: 42906) -.eurochannel.com/images/banners/ -# ||euphonik.dj/img/sponsors- (easylistchina+easylist.txt: 42905) -.euphonik.dj/img/sponsors- -# ||etidbits.com/300x250news.php (easylistchina+easylist.txt: 42904) -.etidbits.com/300x250news\.php -# ||eteknix.com/wp-content/uploads/*Takeover (easylistchina+easylist.txt: 42903) -.eteknix.com/wp-content/uploads/.*Takeover -# ||eteknix.com/wp-content/uploads/*skin (easylistchina+easylist.txt: 42902) -.eteknix.com/wp-content/uploads/.*skin -# ||esus.com/images/regiochat_logo.png (easylistchina+easylist.txt: 42901) -.esus.com/images/regiochat_logo\.png -# ||essayscam.org^*/ads.js (easylistchina+easylist.txt: 42900) -.essayscam.org/.*/ads\.js -# ||essayinfo.com/img/125x125_ (easylistchina+easylist.txt: 42899) -.essayinfo.com/img/125x125_ -# ||espn1320.net/get_preroll.php? (easylistchina+easylist.txt: 42898) -.espn1320.net/get_preroll\.php\? -# ||espn.go.com/ads/ (easylistchina+easylist.txt: 42896) -.espn.go.com/ads/ -# ||espn.co.uk^*/viagogo_sports.html (easylistchina+easylist.txt: 42895) -.espn.co.uk/.*/viagogo_sports\.html -# ||espn.co.uk/espnuk/williamhill_ (easylistchina+easylist.txt: 42894) -.espn.co.uk/espnuk/williamhill_ -# ||espn.co.uk/espnuk/williamhill/ (easylistchina+easylist.txt: 42893) -.espn.co.uk/espnuk/williamhill/ -# ||escapementmagazine.com/wp-content/banners/ (easylistchina+easylist.txt: 42892) -.escapementmagazine.com/wp-content/banners/ -# ||eq2flames.com/images/styles/eq2/images/banner (easylistchina+easylist.txt: 42891) -.eq2flames.com/images/styles/eq2/images/banner -# ||eprop.co.za/images/banners/ (easylistchina+easylist.txt: 42890) -.eprop.co.za/images/banners/ -# ||episodic.com^*/logos/player- (easylistchina+easylist.txt: 42889) -.episodic.com/.*/logos/player- -# ||epictv.com/sites/default/files/290x400_ (easylistchina+easylist.txt: 42888) -.epictv.com/sites/default/files/290x400_ -# ||epicshare.net/p1.js (easylistchina+easylist.txt: 42887) -.epicshare.net/p1\.js -# ||environmental-finance.com^*rotate.gif (easylistchina+easylist.txt: 42886) -.environmental-finance.com/.*rotate\.gif -# ||environmental-finance.com^*banner (easylistchina+easylist.txt: 42885) -.environmental-finance.com/.*banner -# ||enigmagroup.org/clients/privatetunnels.swf (easylistchina+easylist.txt: 42884) -.enigmagroup.org/clients/privatetunnels\.swf -# ||englishtips.org/b/ (easylistchina+easylist.txt: 42883) -.englishtips.org/b/ -# ||england.fm/i/ducksunited120x60english.gif (easylistchina+easylist.txt: 42882) -.england.fm/i/ducksunited120x60english\.gif -# ||energytribune.com/res/banner/ (easylistchina+easylist.txt: 42881) -.energytribune.com/res/banner/ -# ||encyclopediadramatica.es/spon/ (easylistchina+easylist.txt: 42879) -.encyclopediadramatica.es/spon/ -# ||encyclopediadramatica.es/lanhell.js (easylistchina+easylist.txt: 42878) -.encyclopediadramatica.es/lanhell\.js -# ||emuleday.com/cpxt_$subdocument (easylistchina+easylist.txt: 42876) -.emuleday.com/cpxt_ -# ||emule-top50.com/extras/$subdocument (easylistchina+easylist.txt: 42875) -.emule-top50.com/extras/ -# ||empirestatenews.net/Banners/ (easylistchina+easylist.txt: 42872) -.empirestatenews.net/Banners/ -# ||emoneyspace.com/b.php (easylistchina+easylist.txt: 42871) -.emoneyspace.com/b\.php -# ||emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy.gif (easylistchina+easylist.txt: 42870) -.emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy\.gif -# ||elocallink.tv^*/showgif.php? (easylistchina+easylist.txt: 42869) -.elocallink.tv/.*/showgif\.php\? -# ||elivetv.in/pop/ (easylistchina+easylist.txt: 42868) -.elivetv.in/pop/ -# ||elgg.org/images/hostupon_banner.gif (easylistchina+easylist.txt: 42867) -.elgg.org/images/hostupon_banner\.gif -# ||elevenmyanmar.com/images/banners/ (easylistchina+easylist.txt: 42866) -.elevenmyanmar.com/images/banners/ -# ||electronicsfeed.com/bximg/ (easylistchina+easylist.txt: 42865) -.electronicsfeed.com/bximg/ -# ||electricenergyonline.com^*/bannieres/ (easylistchina+easylist.txt: 42864) -.electricenergyonline.com/.*/bannieres/ -# ||ekantipur.com/uploads/banner/ (easylistchina+easylist.txt: 42863) -.ekantipur.com/uploads/banner/ -# ||ejpress.org/img/banners/ (easylistchina+easylist.txt: 42862) -.ejpress.org/img/banners/ -# ||ejpress.org/images/banners/ (easylistchina+easylist.txt: 42861) -.ejpress.org/images/banners/ -# ||ejb.com/300_250 (easylistchina+easylist.txt: 42860) -.ejb.com/300_250 -# ||ehow.com/media/ad.html^ (easylistchina+easylist.txt: 42859) -.ehow.com/media/ad\.html[^\w%.-] -# ||ehow.com/marketing/ (easylistchina+easylist.txt: 42858) -.ehow.com/marketing/ -# ||ehow.com/images/brands/ (easylistchina+easylist.txt: 42857) -.ehow.com/images/brands/ -# ||ehow.co.uk/frames/directas_ (easylistchina+easylist.txt: 42856) -.ehow.co.uk/frames/directas_ -# ||egamer.co.za^*-background- (easylistchina+easylist.txt: 42855) -.egamer.co.za/.*-background- -# ||educationbusinessuk.net/images/stage.gif (easylistchina+easylist.txt: 42854) -.educationbusinessuk.net/images/stage\.gif -# ||edmunds.com/api/savesegment? (easylistchina+easylist.txt: 42853) -.edmunds.com/api/savesegment\? -# ||ed2k.2x4u.de/mfc/ (easylistchina+easylist.txt: 42851) -.ed2k.2x4u.de/mfc/ -# ||ecostream.tv/js/pu.js (easylistchina+easylist.txt: 42850) -.ecostream.tv/js/pu\.js -# ||ecostream.tv/assets/js/pu.min.js (easylistchina+easylist.txt: 42849) -.ecostream.tv/assets/js/pu\.min\.js -# ||economist.com^*/timekeeper-by-rolex-medium.png (easylistchina+easylist.txt: 42848) -.economist.com/.*/timekeeper-by-rolex-medium\.png -# ||economist.com.na^*/banners/ (easylistchina+easylist.txt: 42847) -.economist.com.na/.*/banners/ -# ||ecommerce-journal.com/specdata.php? (easylistchina+easylist.txt: 42846) -.ecommerce-journal.com/specdata\.php\? -# ||eclipse.org/membership/promo/images/ (easylistchina+easylist.txt: 42845) -.eclipse.org/membership/promo/images/ -# ||ebuddy.com/web_banners_ (easylistchina+easylist.txt: 42844) -.ebuddy.com/web_banners_ -# ||ebuddy.com/web_banners/ (easylistchina+easylist.txt: 42843) -.ebuddy.com/web_banners/ -# ||ebuddy.com/textlink.php? (easylistchina+easylist.txt: 42842) -.ebuddy.com/textlink\.php\? -# ||ebookshare.net^*/streamdirect160x600_ (easylistchina+easylist.txt: 42841) -.ebookshare.net/.*/streamdirect160x600_ -# ||ebookshare.net/pages/lt.html (easylistchina+easylist.txt: 42840) -.ebookshare.net/pages/lt\.html -# ||ebizmbainc.netdna-cdn.com/images/tab_sponsors.gif (easylistchina+easylist.txt: 42839) -.ebizmbainc.netdna-cdn.com/images/tab_sponsors\.gif -# ||ebizblitz.co.za/upload/ad/ (easylistchina+easylist.txt: 42838) -.ebizblitz.co.za/upload/ad/ -# ||ebaystatic.com/aw/signin/*_wallpaper_$image (easylistchina+easylist.txt: 42837) -.ebaystatic.com/aw/signin/.*_wallpaper_ -# ||ebaystatic.com/aw/pics/signin/*_signInSkin_ (easylistchina+easylist.txt: 42836) -.ebaystatic.com/aw/pics/signin/.*_signInSkin_ -# ||ebayrtm.com/rtm?RtmIt (easylistchina+easylist.txt: 42835) -.ebayrtm.com/rtm\?RtmIt -# ||ebayrtm.com/rtm?RtmCmd*&enc= (easylistchina+easylist.txt: 42834) -.ebayrtm.com/rtm\?RtmCmd.*&enc= -# ||eatsleepsport.com/images/manorgaming1.jpg (easylistchina+easylist.txt: 42833) -.eatsleepsport.com/images/manorgaming1\.jpg -# ||easybytez.com/pop3.js (easylistchina+easylist.txt: 42832) -.easybytez.com/pop3\.js -# ||eastonline.eu/images/eng_banner_ (easylistchina+easylist.txt: 42831) -.eastonline.eu/images/eng_banner_ -# ||eastonline.eu/images/banners/ (easylistchina+easylist.txt: 42830) -.eastonline.eu/images/banners/ -# ||earthmoversmagazine.co.uk/nimg/ (easylistchina+easylist.txt: 42829) -.earthmoversmagazine.co.uk/nimg/ -# ||earthlink.net^*/promos/ (easylistchina+easylist.txt: 42828) -.earthlink.net/.*/promos/ -# ||e90post.com/forums/images/banners/ (easylistchina+easylist.txt: 42827) -.e90post.com/forums/images/banners/ -# ||dyncdn.celebuzz.com/assets/ (easylistchina+easylist.txt: 42825) -.dyncdn.celebuzz.com/assets/ -# ||dwarfgames.com/pub/728_top. (easylistchina+easylist.txt: 42824) -.dwarfgames.com/pub/728_top\. -# ||dvdvideosoft.com^*/banners/ (easylistchina+easylist.txt: 42823) -.dvdvideosoft.com/.*/banners/ -# ||dustcoin.com^*/image/ad- (easylistchina+easylist.txt: 42822) -.dustcoin.com/.*/image/ad- -# ||durbannews.co.za^*_new728x60.gif (easylistchina+easylist.txt: 42821) -.durbannews.co.za/.*_new728x60\.gif -# ||dump8.com/wget_2leep_bottom.php (easylistchina+easylist.txt: 42820) -.dump8.com/wget_2leep_bottom\.php -# ||dump8.com/wget.php (easylistchina+easylist.txt: 42819) -.dump8.com/wget\.php -# ||dump8.com/tiz/ (easylistchina+easylist.txt: 42818) -.dump8.com/tiz/ -# ||duckload.com/js/abp.php? (easylistchina+easylist.txt: 42817) -.duckload.com/js/abp\.php\? -# ||duckduckgo.com/y.js (easylistchina+easylist.txt: 42816) -.duckduckgo.com/y\.js -# ||duckduckgo.com/m.js?*&o=a (easylistchina+easylist.txt: 42815) -.duckduckgo.com/m\.js\?.*&o=a -# ||duckduckgo.com/i.js?o=a& (easylistchina+easylist.txt: 42814) -.duckduckgo.com/i\.js\?o=a& -# ||dubcnm.com/Adon/ (easylistchina+easylist.txt: 42813) -.dubcnm.com/Adon/ -# ||dsogaming.com/interstitial/ (easylistchina+easylist.txt: 42812) -.dsogaming.com/interstitial/ -# ||droidgamers.com/images/banners/ (easylistchina+easylist.txt: 42811) -.droidgamers.com/images/banners/ -# ||driverdb.com^*/banners/ (easylistchina+easylist.txt: 42810) -.driverdb.com/.*/banners/ -# ||drivearchive.co.uk/images/amazon. (easylistchina+easylist.txt: 42809) -.drivearchive.co.uk/images/amazon\. -# ||drivearchive.co.uk/amazon/ (easylistchina+easylist.txt: 42808) -.drivearchive.co.uk/amazon/ -# ||drhinternet.net/mwimgsent/ (easylistchina+easylist.txt: 42807) -.drhinternet.net/mwimgsent/ -# ||dreamscene.org^*_Banner. (easylistchina+easylist.txt: 42806) -.dreamscene.org/.*_Banner\. -# ||dramabay.com/y/$subdocument (easylistchina+easylist.txt: 42805) -.dramabay.com/y/ -# ||dpstatic.com/s/ad.js (easylistchina+easylist.txt: 42804) -.dpstatic.com/s/ad\.js -# ||dpstatic.com/banner.png? (easylistchina+easylist.txt: 42803) -.dpstatic.com/banner\.png\? -# ||dprogram.net^*/rightsprites.png (easylistchina+easylist.txt: 42802) -.dprogram.net/.*/rightsprites\.png -# ||downloadian.com/assets/banner.jpg (easylistchina+easylist.txt: 42801) -.downloadian.com/assets/banner\.jpg -# ||downloadbox.to/Leadertop.html (easylistchina+easylist.txt: 42800) -.downloadbox.to/Leadertop\.html -# ||downforeveryoneorjustme.com/images/dotbiz_banner.jpg (easylistchina+easylist.txt: 42799) -.downforeveryoneorjustme.com/images/dotbiz_banner\.jpg -# ||doubleviking.com/ss.html (easylistchina+easylist.txt: 42798) -.doubleviking.com/ss\.html -# ||dota-trade.com/img/branding_ (easylistchina+easylist.txt: 42796) -.dota-trade.com/img/branding_ -# ||dontblockme.modaco.com^ (easylistchina+easylist.txt: 42795) -.dontblockme.modaco.com -# ||dominicantoday.com/stor/banners/ (easylistchina+easylist.txt: 42794) -.dominicantoday.com/stor/banners/ -# ||domaintools.com/partners/ (easylistchina+easylist.txt: 42793) -.domaintools.com/partners/ -# ||domaintools.com/marketing/ (easylistchina+easylist.txt: 42792) -.domaintools.com/marketing/ -# ||domaintools.com/eurodns_ (easylistchina+easylist.txt: 42791) -.domaintools.com/eurodns_ -# ||domainmarket.com/mm/ (easylistchina+easylist.txt: 42790) -.domainmarket.com/mm/ -# ||dogechain.info/content/img/a (easylistchina+easylist.txt: 42789) -.dogechain.info/content/img/a -# ||doge-dice.com/images/outpost.png (easylistchina+easylist.txt: 42788) -.doge-dice.com/images/outpost\.png -# ||doge-dice.com/images/faucet.jpg (easylistchina+easylist.txt: 42787) -.doge-dice.com/images/faucet\.jpg -# ||dnsstuff.com/dnsmedia/images/ft.banner. (easylistchina+easylist.txt: 42786) -.dnsstuff.com/dnsmedia/images/ft\.banner\. -# ||dnsstuff.com/dnsmedia/images/*_banner.jpg (easylistchina+easylist.txt: 42785) -.dnsstuff.com/dnsmedia/images/.*_banner\.jpg -# ||dl4all.com^*/hotfile.gif (easylistchina+easylist.txt: 42784) -.dl4all.com/.*/hotfile\.gif -# ||dl4all.com/img/download.jpg (easylistchina+easylist.txt: 42783) -.dl4all.com/img/download\.jpg -# ||dl4all.com/data4.files/dpopupwindow.js (easylistchina+easylist.txt: 42782) -.dl4all.com/data4\.files/dpopupwindow\.js -# ||dl-protect.com/pop.js (easylistchina+easylist.txt: 42781) -.dl-protect.com/pop\.js -# ||djtunes.com^*/adbg/ (easylistchina+easylist.txt: 42780) -.djtunes.com/.*/adbg/ -# ||djmag.com/sites/default/files/takeover/ (easylistchina+easylist.txt: 42779) -.djmag.com/sites/default/files/takeover/ -# ||djmag.co.uk/sites/default/files/takeover/ (easylistchina+easylist.txt: 42778) -.djmag.co.uk/sites/default/files/takeover/ -# ||djluv.in/android.gif (easylistchina+easylist.txt: 42777) -.djluv.in/android\.gif -# ||diytrade.com/diyep/dir?page=common/ppadv& (easylistchina+easylist.txt: 42776) -.diytrade.com/diyep/dir\?page=common/ppadv& -# ||divxstage.eu/images/download.png (easylistchina+easylist.txt: 42775) -.divxstage.eu/images/download\.png -# ||divxme.com/images/play.png (easylistchina+easylist.txt: 42774) -.divxme.com/images/play\.png -# ||dividendchannel.com/toprankedsm.gif (easylistchina+easylist.txt: 42773) -.dividendchannel.com/toprankedsm\.gif -# ||distrowatch.com^*/advanced-admin. (easylistchina+easylist.txt: 42772) -.distrowatch.com/.*/advanced-admin\. -# ||distrowatch.com^*/3cx.png (easylistchina+easylist.txt: 42771) -.distrowatch.com/.*/3cx\.png -# ||distrowatch.com^*-*.gif (easylistchina+easylist.txt: 42770) -.distrowatch.com/.*-.*\.gif -# ||distrowatch.com/images/kokoku/ (easylistchina+easylist.txt: 42769) -.distrowatch.com/images/kokoku/ -# ||distrogeeks.com/images/sponsors/ (easylistchina+easylist.txt: 42768) -.distrogeeks.com/images/sponsors/ -# ||display.superbay.net^ (easylistchina+easylist.txt: 42767) -.display.superbay.net -# ||dispatch.com^*/dpcpopunder.js (easylistchina+easylist.txt: 42766) -.dispatch.com/.*/dpcpopunder\.js -# ||dishusa.net/templates/flero/images/book_sprava.gif (easylistchina+easylist.txt: 42765) -.dishusa.net/templates/flero/images/book_sprava\.gif -# ||dippic.com/images/banner (easylistchina+easylist.txt: 42764) -.dippic.com/images/banner -# ||diplodocs.com/shopping/sol.js (easylistchina+easylist.txt: 42763) -.diplodocs.com/shopping/sol\.js -# ||digzip.com^*baner.swf (easylistchina+easylist.txt: 42762) -.digzip.com/.*baner\.swf -# ||digitizor.com/wp-content/digimages/xsoftspyse.png (easylistchina+easylist.txt: 42761) -.digitizor.com/wp-content/digimages/xsoftspyse\.png -# ||digitalreality.co.nz^*/360_hacks_banner.gif (easylistchina+easylist.txt: 42760) -.digitalreality.co.nz/.*/360_hacks_banner\.gif -# ||digitaljournal.com/promo/ (easylistchina+easylist.txt: 42759) -.digitaljournal.com/promo/ -# ||digdug.divxnetworks.com^ (easylistchina+easylist.txt: 42758) -.digdug.divxnetworks.com -# ||dictionary.com^*/serp_to/ (easylistchina+easylist.txt: 42757) -.dictionary.com/.*/serp_to/ -# ||dictionary.cambridge.org/info/frame.html?zone= (easylistchina+easylist.txt: 42756) -.dictionary.cambridge.org/info/frame\.html\?zone= -# ||diamondworld.net/admin/getresource.aspx? (easylistchina+easylist.txt: 42755) -.diamondworld.net/admin/getresource\.aspx\? -# ||di.fm^*/ads/webplayer (easylistchina+easylist.txt: 42754) -.di.fm/.*/ads/webplayer -# ||dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ (easylistchina+easylist.txt: 42753) -.dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ -# ||devx.com/devx/3174.gif (easylistchina+easylist.txt: 42752) -.devx.com/devx/3174\.gif -# ||devshed.com/images/backgrounds/$image (easylistchina+easylist.txt: 42750) -.devshed.com/images/backgrounds/ -# ||devour.com/*skin (easylistchina+easylist.txt: 42749) -.devour.com/.*skin -# ||devicemag.com^$subdocument,~third-party (easylistchina+easylist.txt: 42748) -.devicemag.com -# ||develop-online.net/static/banners/ (easylistchina+easylist.txt: 42747) -.develop-online.net/static/banners/ -# ||detroitindependent.net/images/ad_ (easylistchina+easylist.txt: 42746) -.detroitindependent.net/images/ad_ -# ||detnews.com^*/sponsor/ (easylistchina+easylist.txt: 42745) -.detnews.com/.*/sponsor/ -# ||desixpress.co.uk/image/banners/ (easylistchina+easylist.txt: 42744) -.desixpress.co.uk/image/banners/ -# ||desiretoinspire.net^*125x125 (easylistchina+easylist.txt: 42743) -.desiretoinspire.net/.*125x125 -# ||desiretoinspire.net^*/mgbanner.gif (easylistchina+easylist.txt: 42742) -.desiretoinspire.net/.*/mgbanner\.gif -# ||desiretoinspire.net/storage/layout/royalcountessad.gif (easylistchina+easylist.txt: 42741) -.desiretoinspire.net/storage/layout/royalcountessad\.gif -# ||desiretoinspire.net/storage/layout/modmaxbanner.gif (easylistchina+easylist.txt: 42740) -.desiretoinspire.net/storage/layout/modmaxbanner\.gif -# ||deshvidesh.com/banner/ (easylistchina+easylist.txt: 42739) -.deshvidesh.com/banner/ -# ||deseretnews.com/img/sponsors/ (easylistchina+easylist.txt: 42738) -.deseretnews.com/img/sponsors/ -# ||depositphotos.com^$subdocument,third-party (easylistchina+easylist.txt: 42737) -.depositphotos.com -# ||depic.me/bann/ (easylistchina+easylist.txt: 42736) -.depic.me/bann/ -# ||demonoid.unblockt.com/cached/$subdocument (easylistchina+easylist.txt: 42735) -.demonoid.unblockt.com/cached/ -# ||demerarawaves.com/images/banners/ (easylistchina+easylist.txt: 42734) -.demerarawaves.com/images/banners/ -# ||delvenetworks.com^*/acudeo.swf$object-subrequest,~third-party (easylistchina+easylist.txt: 42733) -.delvenetworks.com/.*/acudeo\.swf -# ||defensereview.com^*_banner_ (easylistchina+easylist.txt: 42732) -.defensereview.com/.*_banner_ -# ||defenceweb.co.za/logos/ (easylistchina+easylist.txt: 42731) -.defenceweb.co.za/logos/ -# ||defenceweb.co.za/images/sponsorlogos/ (easylistchina+easylist.txt: 42730) -.defenceweb.co.za/images/sponsorlogos/ -# ||decryptedtech.com/images/banners/ (easylistchina+easylist.txt: 42729) -.decryptedtech.com/images/banners/ -# ||deccanchronicle.com^*/shaadi.com/ (easylistchina+easylist.txt: 42728) -.deccanchronicle.com/.*/shaadi\.com/ -# ||deccanchronicle.com^*-searchquad-300100.swf (easylistchina+easylist.txt: 42727) -.deccanchronicle.com/.*-searchquad-300100\.swf -# ||deccanchronicle.com^*-banner- (easylistchina+easylist.txt: 42726) -.deccanchronicle.com/.*-banner- -# ||decadeforum.com/images/misc/download2.png (easylistchina+easylist.txt: 42725) -.decadeforum.com/images/misc/download2\.png -# ||deborah-bickel.de/banners/ (easylistchina+easylist.txt: 42724) -.deborah-bickel.de/banners/ -# ||deals.ledgertranscript.com^ (easylistchina+easylist.txt: 42723) -.deals.ledgertranscript.com -# ||deals.iphonehacks.com^$subdocument (easylistchina+easylist.txt: 42722) -.deals.iphonehacks.com -# ||deals.cultofmac.com^$subdocument (easylistchina+easylist.txt: 42721) -.deals.cultofmac.com -# ||ddl2.com/header.php? (easylistchina+easylist.txt: 42720) -.ddl2.com/header\.php\? -# ||ddccdn.com/js/google_ (easylistchina+easylist.txt: 42719) -.ddccdn.com/js/google_ -# ||dcourier.com/SiteImages/Banner/ (easylistchina+easylist.txt: 42718) -.dcourier.com/SiteImages/Banner/ -# ||dcad.watersoul.com^ (easylistchina+easylist.txt: 42717) -.dcad.watersoul.com -# ||dbstalk.com/sponsors/ (easylistchina+easylist.txt: 42716) -.dbstalk.com/sponsors/ -# ||dayport.com/ads/ (easylistchina+easylist.txt: 42715) -.dayport.com/ads/ -# ||davesite.com^*/aff/ (easylistchina+easylist.txt: 42714) -.davesite.com/.*/aff/ -# ||datpiff.com/skins/misc/ (easylistchina+easylist.txt: 42713) -.datpiff.com/skins/misc/ -# ||darknet.org.uk^*/do468. (easylistchina+easylist.txt: 42712) -.darknet.org.uk/.*/do468\. -# ||darknet.org.uk^*-250x250. (easylistchina+easylist.txt: 42711) -.darknet.org.uk/.*-250x250\. -# ||darknet.org.uk/images/acunetix_ (easylistchina+easylist.txt: 42710) -.darknet.org.uk/images/acunetix_ -# ||damnlol.com/damnlol.com.*.js (easylistchina+easylist.txt: 42709) -.damnlol.com/damnlol\.com\..*\.js -# ||damnlol.com/a/leaderboard.php (easylistchina+easylist.txt: 42708) -.damnlol.com/a/leaderboard\.php -# ||dailywritingtips.com^*/publisher2.gif (easylistchina+easylist.txt: 42707) -.dailywritingtips.com/.*/publisher2\.gif -# ||dailytrust.info/images/dangote.swf (easylistchina+easylist.txt: 42706) -.dailytrust.info/images/dangote\.swf -# ||dailytrust.info/images/banners/ (easylistchina+easylist.txt: 42705) -.dailytrust.info/images/banners/ -# ||dailytimes.com.pk/banners/ (easylistchina+easylist.txt: 42704) -.dailytimes.com.pk/banners/ -# ||dailysabah.com/banner/ (easylistchina+easylist.txt: 42703) -.dailysabah.com/banner/ -# ||dailypuppy.com/images/livestrong/ls_diet_120x90_1.gif (easylistchina+easylist.txt: 42702) -.dailypuppy.com/images/livestrong/ls_diet_120x90_1\.gif -# ||dailypioneer.com/images/banners/ (easylistchina+easylist.txt: 42701) -.dailypioneer.com/images/banners/ -# ||dailynews.lk^*/webadz/ (easylistchina+easylist.txt: 42700) -.dailynews.lk/.*/webadz/ -# ||dailynews.gov.bw^*/banner_ (easylistchina+easylist.txt: 42699) -.dailynews.gov.bw/.*/banner_ -# ||dailynews.co.zw^*-takeover. (easylistchina+easylist.txt: 42698) -.dailynews.co.zw/.*-takeover\. -# ||dailynews.co.tz/images/banners/ (easylistchina+easylist.txt: 42697) -.dailynews.co.tz/images/banners/ -# ||dailymotion.com/skin/data/default/partner/$~stylesheet (easylistchina+easylist.txt: 42696) -.dailymotion.com/skin/data/default/partner/ -# ||dailymotion.com/images/ie.png (easylistchina+easylist.txt: 42695) -.dailymotion.com/images/ie\.png -# ||dailymirror.lk/media/images/Nawaloka- (easylistchina+easylist.txt: 42694) -.dailymirror.lk/media/images/Nawaloka- -# ||dailymail.co.uk^*/promoboxes/ (easylistchina+easylist.txt: 42693) -.dailymail.co.uk/.*/promoboxes/ -# ||dailymail.co.uk/modules/commercial/ (easylistchina+easylist.txt: 42692) -.dailymail.co.uk/modules/commercial/ -# ||dailymail.co.uk/i/pix/ebay/ (easylistchina+easylist.txt: 42691) -.dailymail.co.uk/i/pix/ebay/ -# ||dailyhome.com/leaderboard_banner (easylistchina+easylist.txt: 42690) -.dailyhome.com/leaderboard_banner -# ||dailyherald.com^*/contextual.js (easylistchina+easylist.txt: 42689) -.dailyherald.com/.*/contextual\.js -# ||dailyfreegames.com/js/partners.html (easylistchina+easylist.txt: 42688) -.dailyfreegames.com/js/partners\.html -# ||dailyexpress.com.my/image/banner/ (easylistchina+easylist.txt: 42687) -.dailyexpress.com.my/image/banner/ -# ||dailyexpress.com.my/banners/ (easylistchina+easylist.txt: 42686) -.dailyexpress.com.my/banners/ -# ||dailydeals.sfgate.com/widget/ (easylistchina+easylist.txt: 42685) -.dailydeals.sfgate.com/widget/ -# ||dailydeals.savannahnow.com^ (easylistchina+easylist.txt: 42684) -.dailydeals.savannahnow.com -# ||dailydeals.onlineathens.com^ (easylistchina+easylist.txt: 42683) -.dailydeals.onlineathens.com -# ||dailydeals.lubbockonline.com^ (easylistchina+easylist.txt: 42682) -.dailydeals.lubbockonline.com -# ||dailydeals.brainerddispatch.com^ (easylistchina+easylist.txt: 42681) -.dailydeals.brainerddispatch.com -# ||dailydeals.augustachronicle.com^ (easylistchina+easylist.txt: 42680) -.dailydeals.augustachronicle.com -# ||dailydeals.amarillo.com^ (easylistchina+easylist.txt: 42679) -.dailydeals.amarillo.com -# ||dailydeal.news-record.com/widgets/ (easylistchina+easylist.txt: 42678) -.dailydeal.news-record.com/widgets/ -# ||dailycommercial.com/inc.php? (easylistchina+easylist.txt: 42677) -.dailycommercial.com/inc\.php\? -# ||dailyblogtips.com/wp-content/uploads/*.gif (easylistchina+easylist.txt: 42676) -.dailyblogtips.com/wp-content/uploads/.*\.gif -# ||dailybitcoins.org/banners/ (easylistchina+easylist.txt: 42675) -.dailybitcoins.org/banners/ -# ||daily-sun.com^*/banner/ (easylistchina+easylist.txt: 42674) -.daily-sun.com/.*/banner/ -# ||daily-mail.co.zm^*_banner. (easylistchina+easylist.txt: 42673) -.daily-mail.co.zm/.*_banner\. -# ||daily-mail.co.zm^*_270x312. (easylistchina+easylist.txt: 42672) -.daily-mail.co.zm/.*_270x312\. -# ||daily-mail.co.zm^*_1170x120. (easylistchina+easylist.txt: 42671) -.daily-mail.co.zm/.*_1170x120\. -# ||daily-mail.co.zm^*/singapore_auto. (easylistchina+easylist.txt: 42670) -.daily-mail.co.zm/.*/singapore_auto\. -# ||daily-mail.co.zm^*/side_strip. (easylistchina+easylist.txt: 42669) -.daily-mail.co.zm/.*/side_strip\. -# ||daily-mail.co.zm^*/sbt.gif (easylistchina+easylist.txt: 42668) -.daily-mail.co.zm/.*/sbt\.gif -# ||daily-mail.co.zm/images/banners/ (easylistchina+easylist.txt: 42667) -.daily-mail.co.zm/images/banners/ -# ||dads.new.digg.com^ (easylistchina+easylist.txt: 42666) -.dads.new.digg.com -# ||dabs.com/images/page-backgrounds/ (easylistchina+easylist.txt: 42665) -.dabs.com/images/page-backgrounds/ -# ||da.feedsportal.com^$~subdocument (easylistchina+easylist.txt: 42664) -.da.feedsportal.com -# ||d5e.info/2.png (easylistchina+easylist.txt: 42662) -.d5e.info/2\.png -# ||d5e.info/1.gif (easylistchina+easylist.txt: 42661) -.d5e.info/1\.gif -# ||d.thelocal.com^ (easylistchina+easylist.txt: 42660) -.d.thelocal.com -# ||d.imwx.com/js/wx-a21-plugthis- (easylistchina+easylist.txt: 42659) -.d.imwx.com/js/wx-a21-plugthis- -# ||d.gossipcenter.com^ (easylistchina+easylist.txt: 42658) -.d.gossipcenter.com -# ||d.businessinsider.com^ (easylistchina+easylist.txt: 42657) -.d.businessinsider.com -# ||d.annarbor.com^ (easylistchina+easylist.txt: 42656) -.d.annarbor.com -# ||d-h.st/assets/img/download1.png (easylistchina+easylist.txt: 42655) -.d-h.st/assets/img/download1\.png -# ||d-addicts.com^*/banner/ (easylistchina+easylist.txt: 42654) -.d-addicts.com/.*/banner/ -# ||cybergamer.com/skins/ (easylistchina+easylist.txt: 42653) -.cybergamer.com/skins/ -# ||cyanogenmod.com/static/tdr_skyscraper.png (easylistchina+easylist.txt: 42652) -.cyanogenmod.com/static/tdr_skyscraper\.png -# ||cur.lv/nbottom.php? (easylistchina+easylist.txt: 42651) -.cur.lv/nbottom\.php\? -# ||cur.lv/bootstrap/js/bootstrapx-clickover.js (easylistchina+easylist.txt: 42650) -.cur.lv/bootstrap/js/bootstrapx-clickover\.js -# ||ctv.ca/Sites/Ctv/assets/js/ctvDfpAd.js (easylistchina+easylist.txt: 42649) -.ctv.ca/Sites/Ctv/assets/js/ctvDfpAd\.js -# ||ctv.ca/ctvresources/js/ctvad.js (easylistchina+easylist.txt: 42648) -.ctv.ca/ctvresources/js/ctvad\.js -# ||ctmirror.org/randomsupporter/ (easylistchina+easylist.txt: 42647) -.ctmirror.org/randomsupporter/ -# ||cship.org/w/skins/monobook/uns.gif (easylistchina+easylist.txt: 42646) -.cship.org/w/skins/monobook/uns\.gif -# ||csgobackpack.net/653x50. (easylistchina+easylist.txt: 42645) -.csgobackpack.net/653x50\. -# ||crystalmedianetworks.com^*-180x150.jpg (easylistchina+easylist.txt: 42644) -.crystalmedianetworks.com/.*-180x150\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt.jpg (easylistchina+easylist.txt: 42643) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt-social.png (easylistchina+easylist.txt: 42642) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt-social\.png -# ||cryptocoinsnews.com/wp-content/uploads/*/cloudbet_ (easylistchina+easylist.txt: 42641) -.cryptocoinsnews.com/wp-content/uploads/.*/cloudbet_ -# ||cryptocoinsnews.com/wp-content/uploads/*/ccn.png (easylistchina+easylist.txt: 42640) -.cryptocoinsnews.com/wp-content/uploads/.*/ccn\.png -# ||cruzine.com^*/banners/ (easylistchina+easylist.txt: 42639) -.cruzine.com/.*/banners/ -# ||crushorflush.com/html/promoframe.html (easylistchina+easylist.txt: 42638) -.crushorflush.com/html/promoframe\.html -# ||crunchyroll.*/vast? (easylistchina+easylist.txt: 42637) -.crunchyroll.*./(.*/)?vast\? -# ||crimeaware.co.za/files-upload/banner/ (easylistchina+easylist.txt: 42636) -.crimeaware.co.za/files-upload/banner/ -# ||cricruns.com/images/hioxindia- (easylistchina+easylist.txt: 42635) -.cricruns.com/images/hioxindia- -# ||cricbuzz.com/js/banners/ (easylistchina+easylist.txt: 42634) -.cricbuzz.com/js/banners/ -# ||creattor.net/flashxmlbanners/ (easylistchina+easylist.txt: 42633) -.creattor.net/flashxmlbanners/ -# ||creatives.livejasmin.com^ (easylistchina+easylist.txt: 42632) -.creatives.livejasmin.com -# ||createtv.com/CreateProgram.nsf/vShowcaseFeaturedSideContentByLinkTitle/ (easylistchina+easylist.txt: 42631) -.createtv.com/CreateProgram\.nsf/vShowcaseFeaturedSideContentByLinkTitle/ -# ||crazymotion.net/video_*.php?key= (easylistchina+easylist.txt: 42630) -.crazymotion.net/video_.*\.php\?key= -# ||crazy-torrent.com/web/banner/online.jpg (easylistchina+easylist.txt: 42629) -.crazy-torrent.com/web/banner/online\.jpg -# ||crazy-torrent.com/web/banner/0xxx0.net.jpg (easylistchina+easylist.txt: 42628) -.crazy-torrent.com/web/banner/0xxx0\.net\.jpg -# ||craveonline.com/gnads/ (easylistchina+easylist.txt: 42627) -.craveonline.com/gnads/ -# ||cramdodge.com/mg- (easylistchina+easylist.txt: 42626) -.cramdodge.com/mg- -# ||crackdb.com/img/vpn.png (easylistchina+easylist.txt: 42625) -.crackdb.com/img/vpn\.png -# ||crackdb.cd/cd.swf (easylistchina+easylist.txt: 42624) -.crackdb.cd/cd\.swf -# ||cpub.co.uk/a? (easylistchina+easylist.txt: 42623) -.cpub.co.uk/a\? -# ||cphpost.dk^*/banners/ (easylistchina+easylist.txt: 42622) -.cphpost.dk/.*/banners/ -# ||countrychannel.tv/telvos_banners/ (easylistchina+easylist.txt: 42621) -.countrychannel.tv/telvos_banners/ -# ||cosplay.com/1lensvillage.gif (easylistchina+easylist.txt: 42620) -.cosplay.com/1lensvillage\.gif -# ||coryarcangel.com/images/banners/ (easylistchina+easylist.txt: 42619) -.coryarcangel.com/images/banners/ -# ||cops.com^*/copbanner_ (easylistchina+easylist.txt: 42618) -.cops.com/.*/copbanner_ -# ||copblock.org/wp-content/uploads/*/covert-handcuff-key-AD- (easylistchina+easylist.txt: 42617) -.copblock.org/wp-content/uploads/.*/covert-handcuff-key-AD- -# ||coolsport.tv/lshadd. (easylistchina+easylist.txt: 42616) -.coolsport.tv/lshadd\. -# ||coolsport.tv/adtadd. (easylistchina+easylist.txt: 42615) -.coolsport.tv/adtadd\. -# ||coolmath.net/*-medrect.html (easylistchina+easylist.txt: 42614) -.coolmath.net/.*-medrect\.html -# ||coolmath-games.com/images/160-notice.gif (easylistchina+easylist.txt: 42613) -.coolmath-games.com/images/160-notice\.gif -# ||coolfm.us/lagos969/images/banners/ (easylistchina+easylist.txt: 42612) -.coolfm.us/lagos969/images/banners/ -# ||conwaydailysun.com/images/Tiles_Skyscrapers/ (easylistchina+easylist.txt: 42611) -.conwaydailysun.com/images/Tiles_Skyscrapers/ -# ||conwaydailysun.com/images/banners/ (easylistchina+easylist.txt: 42610) -.conwaydailysun.com/images/banners/ -# ||convertmyimage.com/images/banner-square.png (easylistchina+easylist.txt: 42609) -.convertmyimage.com/images/banner-square\.png -# ||consumerreports.org^*/sx.js (easylistchina+easylist.txt: 42608) -.consumerreports.org/.*/sx\.js -# ||constructionreviewonline.com^*banner (easylistchina+easylist.txt: 42607) -.constructionreviewonline.com/.*banner -# ||constructionreviewonline.com^*730x90 (easylistchina+easylist.txt: 42606) -.constructionreviewonline.com/.*730x90 -# ||console-spot.com^*.swf (easylistchina+easylist.txt: 42605) -.console-spot.com/.*\.swf -# ||conscioustalk.net/images/sponsors/ (easylistchina+easylist.txt: 42604) -.conscioustalk.net/images/sponsors/ -# ||connectionstrings.com/csas/public/a.ashx? (easylistchina+easylist.txt: 42603) -.connectionstrings.com/csas/public/a\.ashx\? -# ||concrete.tv/images/banners/ (easylistchina+easylist.txt: 42602) -.concrete.tv/images/banners/ -# ||con-telegraph.ie/images/banners/ (easylistchina+easylist.txt: 42601) -.con-telegraph.ie/images/banners/ -# ||computerworld.com^*/jobroll/ (easylistchina+easylist.txt: 42600) -.computerworld.com/.*/jobroll/ -# ||computerhelp.com/temp/banners/ (easylistchina+easylist.txt: 42599) -.computerhelp.com/temp/banners/ -# ||computerandvideogames.com^*/promos/ (easylistchina+easylist.txt: 42598) -.computerandvideogames.com/.*/promos/ -# ||complexmedianetwork.com^*/toolbarlogo.png (easylistchina+easylist.txt: 42597) -.complexmedianetwork.com/.*/toolbarlogo\.png -# ||complexmedianetwork.com^*/takeovers/ (easylistchina+easylist.txt: 42596) -.complexmedianetwork.com/.*/takeovers/ -# ||complaintsboard.com/img/banner- (easylistchina+easylist.txt: 42595) -.complaintsboard.com/img/banner- -# ||complaintsboard.com/img/202x202.gif (easylistchina+easylist.txt: 42594) -.complaintsboard.com/img/202x202\.gif -# ||compassnewspaper.com/images/banners/ (easylistchina+easylist.txt: 42593) -.compassnewspaper.com/images/banners/ -# ||comparestoreprices.co.uk/images/promotions/ (easylistchina+easylist.txt: 42592) -.comparestoreprices.co.uk/images/promotions/ -# ||comicgenesis.com/tcontent.php?out= (easylistchina+easylist.txt: 42591) -.comicgenesis.com/tcontent\.php\?out= -# ||comicbookresources.com/assets/images/skins/ (easylistchina+easylist.txt: 42590) -.comicbookresources.com/assets/images/skins/ -# ||com.com/cnwk.1d/aud/ (easylistchina+easylist.txt: 42589) -.com.com/cnwk\.1d/aud/ -# ||com-a.in/images/banners/ (easylistchina+easylist.txt: 42588) -.com-a.in/images/banners/ -# ||collector.viki.io^ (easylistchina+easylist.txt: 42587) -.collector.viki.io -# ||collarme.com/zone_alt.asp (easylistchina+easylist.txt: 42586) -.collarme.com/zone_alt\.asp -# ||collarme.com/anv/ (easylistchina+easylist.txt: 42585) -.collarme.com/anv/ -# ||coinurl.com/nbottom.php? (easylistchina+easylist.txt: 42584) -.coinurl.com/nbottom\.php\? -# ||coinurl.com/get.php? (easylistchina+easylist.txt: 42583) -.coinurl.com/get\.php\? -# ||coinurl.com/bottom.php (easylistchina+easylist.txt: 42582) -.coinurl.com/bottom\.php -# ||coinurl.com/bootstrap/js/bootstrapx-clickover.js (easylistchina+easylist.txt: 42581) -.coinurl.com/bootstrap/js/bootstrapx-clickover\.js -# ||coinad.com/op.php? (easylistchina+easylist.txt: 42580) -.coinad.com/op\.php\? -# ||coderanch.com/shingles/ (easylistchina+easylist.txt: 42579) -.coderanch.com/shingles/ -# ||codecguide.com/driverscantop1.gif (easylistchina+easylist.txt: 42578) -.codecguide.com/driverscantop1\.gif -# ||codecguide.com/driverscan2.gif (easylistchina+easylist.txt: 42577) -.codecguide.com/driverscan2\.gif -# ||codecguide.com/beforedl2.gif (easylistchina+easylist.txt: 42576) -.codecguide.com/beforedl2\.gif -# ||codeasily.com^*/codeasily.js (easylistchina+easylist.txt: 42575) -.codeasily.com/.*/codeasily\.js -# ||cocomment.com/banner? (easylistchina+easylist.txt: 42574) -.cocomment.com/banner\? -# ||coastweek.com/graffix/ (easylistchina+easylist.txt: 42573) -.coastweek.com/graffix/ -# ||coastweek.com/banner_ (easylistchina+easylist.txt: 42572) -.coastweek.com/banner_ -# ||coastfm.ae/promotion/ (easylistchina+easylist.txt: 42571) -.coastfm.ae/promotion/ -# ||coastfm.ae/images/background/ (easylistchina+easylist.txt: 42570) -.coastfm.ae/images/background/ -# ||cnx-software.com/pic/technexion/ (easylistchina+easylist.txt: 42569) -.cnx-software.com/pic/technexion/ -# ||cnx-software.com/pic/gateworks/ (easylistchina+easylist.txt: 42568) -.cnx-software.com/pic/gateworks/ -# ||cntv.cn/Library/js/js_ad_gb.js (easylistchina+easylist.txt: 42567) -.cntv.cn/Library/js/js_ad_gb\.js -# ||cnn.net^*/lawyers.com/ (easylistchina+easylist.txt: 42566) -.cnn.net/.*/lawyers\.com/ -# ||cnn.com^*/banner.html?&csiid= (easylistchina+easylist.txt: 42565) -.cnn.com/.*/banner\.html\?&csiid= -# ||cnn.com/cnn_adspaces/ (easylistchina+easylist.txt: 42563) -.cnn.com/cnn_adspaces/ -# ||cnn.com/ad- (easylistchina+easylist.txt: 42562) -.cnn.com/ad- -# ||cnetwidget.creativemark.co.uk^ (easylistchina+easylist.txt: 42561) -.cnetwidget.creativemark.co.uk -# ||cnettv.com.edgesuite.net^*/ads/ (easylistchina+easylist.txt: 42560) -.cnettv.com.edgesuite.net/.*/ads/ -# ||cnet.com/imp? (easylistchina+easylist.txt: 42559) -.cnet.com/imp\? -# ||cms.myspacecdn.com^*/splash_assets/ (easylistchina+easylist.txt: 42558) -.cms.myspacecdn.com/.*/splash_assets/ -# ||cmpnet.com/ads/ (easylistchina+easylist.txt: 42557) -.cmpnet.com/ads/ -# ||clubplanet.com^*/wallpaper/ (easylistchina+easylist.txt: 42555) -.clubplanet.com/.*/wallpaper/ -# ||clubhyper.com/images/hannantsbanner_ (easylistchina+easylist.txt: 42554) -.clubhyper.com/images/hannantsbanner_ -# ||cloudyvideos.com/banner/ (easylistchina+easylist.txt: 42553) -.cloudyvideos.com/banner/ -# ||clicks.superpages.com^ (easylistchina+easylist.txt: 42547) -.clicks.superpages.com -# ||click.livedoor.com^ (easylistchina+easylist.txt: 42546) -.click.livedoor.com -# ||clgaming.net/interface/img/sponsor/ (easylistchina+easylist.txt: 42545) -.clgaming.net/interface/img/sponsor/ -# ||classicsdujour.com/artistbanners/ (easylistchina+easylist.txt: 42544) -.classicsdujour.com/artistbanners/ -# ||classicfeel.co.za^*/banners/ (easylistchina+easylist.txt: 42543) -.classicfeel.co.za/.*/banners/ -# ||classical897.org/common/sponsors/ (easylistchina+easylist.txt: 42542) -.classical897.org/common/sponsors/ -# ||classic97.net^*/banner/ (easylistchina+easylist.txt: 42541) -.classic97.net/.*/banner/ -# ||classic-tv.com/pubaccess.html (easylistchina+easylist.txt: 42540) -.classic-tv.com/pubaccess\.html -# ||classic-tv.com/burst$subdocument (easylistchina+easylist.txt: 42539) -.classic-tv.com/burst -# ||clarksvilleonline.com/cols/ (easylistchina+easylist.txt: 42538) -.clarksvilleonline.com/cols/ -# ||cjr.org/interstitial_ (easylistchina+easylist.txt: 42537) -.cjr.org/interstitial_ -# ||citywirecontent.co.uk^*/cw.oas.dx.js (easylistchina+easylist.txt: 42536) -.citywirecontent.co.uk/.*/cw\.oas\.dx\.js -# ||citywire.co.uk/wealth-manager/marketingcampaign? (easylistchina+easylist.txt: 42535) -.citywire.co.uk/wealth-manager/marketingcampaign\? -# ||citybeat.co.uk^*/ads/ (easylistchina+easylist.txt: 42534) -.citybeat.co.uk/.*/ads/ -# ||cityam.com^*/pageskin/ (easylistchina+easylist.txt: 42533) -.cityam.com/.*/pageskin/ -# ||citizen-usa.com/images/banners/ (easylistchina+easylist.txt: 42532) -.citizen-usa.com/images/banners/ -# ||citeulike.org/static/campaigns/ (easylistchina+easylist.txt: 42531) -.citeulike.org/static/campaigns/ -# ||citationmachine.net/images/grammarly/ (easylistchina+easylist.txt: 42530) -.citationmachine.net/images/grammarly/ -# ||ciol.com/zedotags/ (easylistchina+easylist.txt: 42529) -.ciol.com/zedotags/ -# ||cineplex.com/skins/ (easylistchina+easylist.txt: 42528) -.cineplex.com/skins/ -# ||cinemablend.com/templates/tpl/reskin/$image (easylistchina+easylist.txt: 42527) -.cinemablend.com/templates/tpl/reskin/ -# ||ciao.com^*/price_link/ (easylistchina+easylist.txt: 42526) -.ciao.com/.*/price_link/ -# ||ciao.co.uk/load_file.php? (easylistchina+easylist.txt: 42525) -.ciao.co.uk/load_file\.php\? -# ||churchnewssite.com^*/bannercard- (easylistchina+easylist.txt: 42524) -.churchnewssite.com/.*/bannercard- -# ||churchnewssite.com^*/banner- (easylistchina+easylist.txt: 42523) -.churchnewssite.com/.*/banner- -# ||churchnewssite.com^*-banner1. (easylistchina+easylist.txt: 42522) -.churchnewssite.com/.*-banner1\. -# ||chronicle.lu/images/Sponsor_ (easylistchina+easylist.txt: 42521) -.chronicle.lu/images/Sponsor_ -# ||chronicle.lu/images/banners/ (easylistchina+easylist.txt: 42520) -.chronicle.lu/images/banners/ -# ||chinanews.com/gg/ (easylistchina+easylist.txt: 42519) -.chinanews.com/gg/ -# ||chicagodefender.com/images/banners/ (easylistchina+easylist.txt: 42518) -.chicagodefender.com/images/banners/ -# ||chelsey.co.nz/uploads/Takeovers/ (easylistchina+easylist.txt: 42517) -.chelsey.co.nz/uploads/Takeovers/ -# ||checkwebsiteprice.com/images/bitcoin.jpg (easylistchina+easylist.txt: 42516) -.checkwebsiteprice.com/images/bitcoin\.jpg -# ||checkpagerank.net/banners/ (easylistchina+easylist.txt: 42515) -.checkpagerank.net/banners/ -# ||chapala.com/wwwboard/webboardtop.htm (easylistchina+easylist.txt: 42514) -.chapala.com/wwwboard/webboardtop\.htm -# ||channelonline.tv/channelonline_advantage/ (easylistchina+easylist.txt: 42513) -.channelonline.tv/channelonline_advantage/ -# ||channel5.com/assets/takeovers/ (easylistchina+easylist.txt: 42512) -.channel5.com/assets/takeovers/ -# ||channel4fm.com/promotion/ (easylistchina+easylist.txt: 42511) -.channel4fm.com/promotion/ -# ||channel4fm.com/images/background/ (easylistchina+easylist.txt: 42510) -.channel4fm.com/images/background/ -# ||channel4.com/bips/*/brand/$image (easylistchina+easylist.txt: 42509) -.channel4.com/bips/.*/brand/ -# ||channel4.com/assets/programmes/images/originals/$image (easylistchina+easylist.txt: 42508) -.channel4.com/assets/programmes/images/originals/ -# ||chaklyrics.com/add$subdocument (easylistchina+easylist.txt: 42507) -.chaklyrics.com/add -# ||ch131.so/images/2etio.gif (easylistchina+easylist.txt: 42506) -.ch131.so/images/2etio\.gif -# ||cghub.com/files/CampaignCode/ (easylistchina+easylist.txt: 42505) -.cghub.com/files/CampaignCode/ -# ||ceylontoday.lk^*/banner/ (easylistchina+easylist.txt: 42504) -.ceylontoday.lk/.*/banner/ -# ||ceoexpress.com/inc/ads (easylistchina+easylist.txt: 42503) -.ceoexpress.com/inc/ads -# ||centralfm.co.uk/images/banners/ (easylistchina+easylist.txt: 42502) -.centralfm.co.uk/images/banners/ -# ||centos.org/donors/ (easylistchina+easylist.txt: 42501) -.centos.org/donors/ -# ||ceforum.co.uk/images/misc/PartnerLinks (easylistchina+easylist.txt: 42499) -.ceforum.co.uk/images/misc/PartnerLinks -# ||cdn.turner.com^*/groupon/ (easylistchina+easylist.txt: 42497) -.cdn.turner.com/.*/groupon/ -# ||cdn-surfline.com/home/billabong-xxl.png (easylistchina+easylist.txt: 42496) -.cdn-surfline.com/home/billabong-xxl\.png -# ||cdmediaworld.com*/! (easylistchina+easylist.txt: 42495) -.cdmediaworld.com*./(.*/)?! -# ||cdmagurus.com/img/kcpf2.swf (easylistchina+easylist.txt: 42494) -.cdmagurus.com/img/kcpf2\.swf -# ||cdmagurus.com/img/*.gif (easylistchina+easylist.txt: 42493) -.cdmagurus.com/img/.*\.gif -# ||cdmagurus.com/forum/cyberflashing.swf (easylistchina+easylist.txt: 42492) -.cdmagurus.com/forum/cyberflashing\.swf -# ||cdcovers.cc/images/external/toolbar (easylistchina+easylist.txt: 42491) -.cdcovers.cc/images/external/toolbar -# ||cd1025.com/www/img/btn- (easylistchina+easylist.txt: 42490) -.cd1025.com/www/img/btn- -# ||cd1025.com/www/assets/a/ (easylistchina+easylist.txt: 42489) -.cd1025.com/www/assets/a/ -# ||ccfm.org.za^*/sads/ (easylistchina+easylist.txt: 42488) -.ccfm.org.za/.*/sads/ -# ||cbslocal.com/rotatable? (easylistchina+easylist.txt: 42487) -.cbslocal.com/rotatable\? -# ||cbslocal.com/deals/widget/ (easylistchina+easylist.txt: 42486) -.cbslocal.com/deals/widget/ -# ||cbsinteractive.co.uk/cbsi/ads/ (easylistchina+easylist.txt: 42485) -.cbsinteractive.co.uk/cbsi/ads/ -# ||cbn.co.za/images/banners/ (easylistchina+easylist.txt: 42484) -.cbn.co.za/images/banners/ -# ||cbfsms.com^*-banner.gif (easylistchina+easylist.txt: 42483) -.cbfsms.com/.*-banner\.gif -# ||cbc.ca/video/bigbox.html (easylistchina+easylist.txt: 42482) -.cbc.ca/video/bigbox\.html -# ||cbc.ca/deals/ (easylistchina+easylist.txt: 42481) -.cbc.ca/deals/ -# ||catholicculture.org/images/banners/ (easylistchina+easylist.txt: 42480) -.catholicculture.org/images/banners/ -# ||catalystmagazine.net/images/banners/ (easylistchina+easylist.txt: 42479) -.catalystmagazine.net/images/banners/ -# ||casualgaming.biz/banners/ (easylistchina+easylist.txt: 42478) -.casualgaming.biz/banners/ -# ||castanet.net/clients/ (easylistchina+easylist.txt: 42477) -.castanet.net/clients/ -# ||cash9.org/assets/img/banner2.gif (easylistchina+easylist.txt: 42476) -.cash9.org/assets/img/banner2\.gif -# ||carsuk.net/directory/panel-promo- (easylistchina+easylist.txt: 42475) -.carsuk.net/directory/panel-promo- -# ||carsguide.com.au^*/marketing/ (easylistchina+easylist.txt: 42474) -.carsguide.com.au/.*/marketing/ -# ||carsguide.com.au/images/uploads/*_bg. (easylistchina+easylist.txt: 42473) -.carsguide.com.au/images/uploads/.*_bg\. -# ||carsales.com.au^*/backgrounds/ (easylistchina+easylist.txt: 42472) -.carsales.com.au/.*/backgrounds/ -# ||cars.com/js/cars/catretargeting.js (easylistchina+easylist.txt: 42471) -.cars.com/js/cars/catretargeting\.js -# ||cars.com/go/includes/targeting/ (easylistchina+easylist.txt: 42470) -.cars.com/go/includes/targeting/ -# ||cargonewsasia.com/promotion/ (easylistchina+easylist.txt: 42469) -.cargonewsasia.com/promotion/ -# ||cardsharing.info/wp-content/uploads/*/ALLS.jpg (easylistchina+easylist.txt: 42468) -.cardsharing.info/wp-content/uploads/.*/ALLS\.jpg -# ||cardschat.com/pkimg/banners/ (easylistchina+easylist.txt: 42467) -.cardschat.com/pkimg/banners/ -# ||cardomain.com/empty_pg.htm (easylistchina+easylist.txt: 42466) -.cardomain.com/empty_pg\.htm -# ||card-sharing.net/umbrella.png (easylistchina+easylist.txt: 42465) -.card-sharing.net/umbrella\.png -# ||card-sharing.net/topsharingserver.jpg (easylistchina+easylist.txt: 42464) -.card-sharing.net/topsharingserver\.jpg -# ||card-sharing.net/cccamcorner.gif (easylistchina+easylist.txt: 42463) -.card-sharing.net/cccamcorner\.gif -# ||capitolfax.com/wp-content/*Ad_ (easylistchina+easylist.txt: 42461) -.capitolfax.com/wp-content/.*Ad_ -# ||capitolfax.com/wp-content/*ad. (easylistchina+easylist.txt: 42460) -.capitolfax.com/wp-content/.*ad\. -# ||capitalfm.co.ke^*/830x460-iv.jpg (easylistchina+easylist.txt: 42459) -.capitalfm.co.ke/.*/830x460-iv\.jpg -# ||capitalethiopia.com/images/banners/ (easylistchina+easylist.txt: 42458) -.capitalethiopia.com/images/banners/ -# ||capetownetc.com^*/wallpapers/ (easylistchina+easylist.txt: 42456) -.capetownetc.com/.*/wallpapers/ -# ||canvas.thenextweb.com^ (easylistchina+easylist.txt: 42455) -.canvas.thenextweb.com -# ||canindia.com^*_banner.png (easylistchina+easylist.txt: 42454) -.canindia.com/.*_banner\.png -# ||candystand.com/game-track.do? (easylistchina+easylist.txt: 42453) -.candystand.com/game-track\.do\? -# ||cancomuk.com/campaigns/ (easylistchina+easylist.txt: 42452) -.cancomuk.com/campaigns/ -# ||cananewsonline.com/files/banners/ (easylistchina+easylist.txt: 42451) -.cananewsonline.com/files/banners/ -# ||canalboat.co.uk^*/Banners/ (easylistchina+easylist.txt: 42450) -.canalboat.co.uk/.*/Banners/ -# ||canalboat.co.uk^*/bannerImage. (easylistchina+easylist.txt: 42449) -.canalboat.co.uk/.*/bannerImage\. -# ||cameroon-concord.com/images/banners/ (easylistchina+easylist.txt: 42448) -.cameroon-concord.com/images/banners/ -# ||calguns.net/images/ads (easylistchina+easylist.txt: 42447) -.calguns.net/images/ads -# ||calgaryherald.com/images/storysponsor/ (easylistchina+easylist.txt: 42446) -.calgaryherald.com/images/storysponsor/ -# ||calgaryherald.com/images/sponsor/ (easylistchina+easylist.txt: 42445) -.calgaryherald.com/images/sponsor/ -# ||caledonianrecord.com/SiteImages/Tile/ (easylistchina+easylist.txt: 42444) -.caledonianrecord.com/SiteImages/Tile/ -# ||caledonianrecord.com/SiteImages/HomePageTiles/ (easylistchina+easylist.txt: 42443) -.caledonianrecord.com/SiteImages/HomePageTiles/ -# ||caledonianrecord.com/iFrame_ (easylistchina+easylist.txt: 42442) -.caledonianrecord.com/iFrame_ -# ||caladvocate.com/images/banner- (easylistchina+easylist.txt: 42441) -.caladvocate.com/images/banner- -# ||cafonline.com^*/sponsors/ (easylistchina+easylist.txt: 42440) -.cafonline.com/.*/sponsors/ -# ||cafimg.com/images/other/ (easylistchina+easylist.txt: 42439) -.cafimg.com/images/other/ -# ||cafemomstatic.com/images/background/$image (easylistchina+easylist.txt: 42438) -.cafemomstatic.com/images/background/ -# ||cadvv.koreaherald.com^ (easylistchina+easylist.txt: 42437) -.cadvv.koreaherald.com -# ||cadvv.heraldm.com^ (easylistchina+easylist.txt: 42436) -.cadvv.heraldm.com -# ||cadplace.co.uk/banner/ (easylistchina+easylist.txt: 42435) -.cadplace.co.uk/banner/ -# ||caclubindia.com/campaign/ (easylistchina+easylist.txt: 42434) -.caclubindia.com/campaign/ -# ||c9tk.com/images/banner/ (easylistchina+easylist.txt: 42433) -.c9tk.com/images/banner/ -# ||c21media.net/wp-content/plugins/sam-images/ (easylistchina+easylist.txt: 42432) -.c21media.net/wp-content/plugins/sam-images/ -# ||c-ville.com/image/pool/ (easylistchina+easylist.txt: 42431) -.c-ville.com/image/pool/ -# ||c-sharpcorner.com^*/banners/ (easylistchina+easylist.txt: 42430) -.c-sharpcorner.com/.*/banners/ -# ||bypassoxy.com/vectrotunnel-banner.gif (easylistchina+easylist.txt: 42429) -.bypassoxy.com/vectrotunnel-banner\.gif -# ||bwp.theinsider.com.com^ (easylistchina+easylist.txt: 42428) -.bwp.theinsider.com.com -# ||bvibeacon.com^*/banners/ (easylistchina+easylist.txt: 42427) -.bvibeacon.com/.*/banners/ -# ||buzznet.com/topscript.js.php? (easylistchina+easylist.txt: 42426) -.buzznet.com/topscript\.js\.php\? -# ||buzzintown.com/show_bnr.php? (easylistchina+easylist.txt: 42425) -.buzzintown.com/show_bnr\.php\? -# ||buyselltrade.ca/banners/ (easylistchina+easylist.txt: 42424) -.buyselltrade.ca/banners/ -# ||buy.com/*/textlinks.aspx (easylistchina+easylist.txt: 42423) -.buy.com/.*/textlinks\.aspx -# ||buy-n-shoot.com/images/banners/banner- (easylistchina+easylist.txt: 42422) -.buy-n-shoot.com/images/banners/banner- -# ||busiweek.com^*/banners/ (easylistchina+easylist.txt: 42421) -.busiweek.com/.*/banners/ -# ||bundesliga.com^*/_partner/ (easylistchina+easylist.txt: 42420) -.bundesliga.com/.*/_partner/ -# ||btmon.com/da/$subdocument (easylistchina+easylist.txt: 42419) -.btmon.com/da/ -# ||btkitty.org/static/images/880X60.gif (easylistchina+easylist.txt: 42418) -.btkitty.org/static/images/880X60\.gif -# ||btkitty.com/static/images/880X60.gif (easylistchina+easylist.txt: 42417) -.btkitty.com/static/images/880X60\.gif -# ||btdigg.org/images/btguard (easylistchina+easylist.txt: 42416) -.btdigg.org/images/btguard -# ||bt.am/banners/ (easylistchina+easylist.txt: 42415) -.bt.am/banners/ -# ||bt-chat.com/images/affiliates/ (easylistchina+easylist.txt: 42414) -.bt-chat.com/images/affiliates/ -# ||bsvc.ebuddy.com/bannerservice/tabsaww (easylistchina+easylist.txt: 42413) -.bsvc.ebuddy.com/bannerservice/tabsaww -# ||bsmphilly.com/files/banners/ (easylistchina+easylist.txt: 42412) -.bsmphilly.com/files/banners/ -# ||brudirect.com/images/banners/ (easylistchina+easylist.txt: 42411) -.brudirect.com/images/banners/ -# ||browsershots.org/static/images/creative/ (easylistchina+easylist.txt: 42410) -.browsershots.org/static/images/creative/ -# ||brownfieldonline.com^*/banners/ (easylistchina+easylist.txt: 42409) -.brownfieldonline.com/.*/banners/ -# ||brothersoft.com^*/softsale/ (easylistchina+easylist.txt: 42408) -.brothersoft.com/.*/softsale/ -# ||brothersoft.com^*/homepage_ppd.html (easylistchina+easylist.txt: 42407) -.brothersoft.com/.*/homepage_ppd\.html -# ||brothersoft.com^*/float.js (easylistchina+easylist.txt: 42406) -.brothersoft.com/.*/float\.js -# ||brothersoft.com/softsale/ (easylistchina+easylist.txt: 42405) -.brothersoft.com/softsale/ -# ||brothersoft.com/gg/top.js (easylistchina+easylist.txt: 42404) -.brothersoft.com/gg/top\.js -# ||brothersoft.com/gg/soft_down.js (easylistchina+easylist.txt: 42403) -.brothersoft.com/gg/soft_down\.js -# ||brothersoft.com/gg/kontera_com.js (easylistchina+easylist.txt: 42402) -.brothersoft.com/gg/kontera_com\.js -# ||brothersoft.com/gg/g.js (easylistchina+easylist.txt: 42401) -.brothersoft.com/gg/g\.js -# ||brothersoft.com/gg/center_gg.js (easylistchina+easylist.txt: 42400) -.brothersoft.com/gg/center_gg\.js -# ||brobible.com/files/uploads/images/takeovers/ (easylistchina+easylist.txt: 42399) -.brobible.com/files/uploads/images/takeovers/ -# ||broadcastingworld.net/marquee- (easylistchina+easylist.txt: 42398) -.broadcastingworld.net/marquee- -# ||broadcastingworld.net/*-promo.jpg (easylistchina+easylist.txt: 42397) -.broadcastingworld.net/.*-promo\.jpg -# ||broadcastify.com/sm/ (easylistchina+easylist.txt: 42396) -.broadcastify.com/sm/ -# ||broadbandgenie.co.uk/img/talktalk/$image (easylistchina+easylist.txt: 42395) -.broadbandgenie.co.uk/img/talktalk/ -# ||broadbandgenie.co.uk/images/takeover/ (easylistchina+easylist.txt: 42394) -.broadbandgenie.co.uk/images/takeover/ -# ||broadbandforum.co/stock/ (easylistchina+easylist.txt: 42393) -.broadbandforum.co/stock/ -# ||broadbandchoices.co.uk/aff.js (easylistchina+easylist.txt: 42392) -.broadbandchoices.co.uk/aff\.js -# ||britishcolumbia.com/sys/ban.asp (easylistchina+easylist.txt: 42391) -.britishcolumbia.com/sys/ban\.asp -# ||brenz.net/img/bannerrss.gif (easylistchina+easylist.txt: 42389) -.brenz.net/img/bannerrss\.gif -# ||breitlingsource.com/images/pflogo.jpg (easylistchina+easylist.txt: 42388) -.breitlingsource.com/images/pflogo\.jpg -# ||breitlingsource.com/images/govberg*.jpg (easylistchina+easylist.txt: 42387) -.breitlingsource.com/images/govberg.*\.jpg -# ||brecorder.com^*/banners/ (easylistchina+easylist.txt: 42386) -.brecorder.com/.*/banners/ -# ||break.com^*/marketguide- (easylistchina+easylist.txt: 42385) -.break.com/.*/marketguide- -# ||brandchannel.com/images/educationconference/ (easylistchina+easylist.txt: 42384) -.brandchannel.com/images/educationconference/ -# ||boxlotto.com/banrotate. (easylistchina+easylist.txt: 42380) -.boxlotto.com/banrotate\. -# ||boulderjewishnews.org^*/JFSatHome-3.gif (easylistchina+easylist.txt: 42379) -.boulderjewishnews.org/.*/JFSatHome-3\.gif -# ||botswanaguardian.co.bw/images/banners/ (easylistchina+easylist.txt: 42378) -.botswanaguardian.co.bw/images/banners/ -# ||bom.gov.au/includes/marketing2.php? (easylistchina+easylist.txt: 42376) -.bom.gov.au/includes/marketing2\.php\? -# ||bolandrugby.com/images/sponsors. (easylistchina+easylist.txt: 42375) -.bolandrugby.com/images/sponsors\. -# ||bnrs.ilm.ee^ (easylistchina+easylist.txt: 42374) -.bnrs.ilm.ee -# ||bn0.com/4v4.js (easylistchina+easylist.txt: 42373) -.bn0.com/4v4\.js -# ||bloomberg.com^*/banner.js (easylistchina+easylist.txt: 42372) -.bloomberg.com/.*/banner\.js -# ||blogspider.net/images/promo/ (easylistchina+easylist.txt: 42371) -.blogspider.net/images/promo/ -# ||blogsmithmedia.com^*_skin_ (easylistchina+easylist.txt: 42369) -.blogsmithmedia.com/.*_skin_ -# ||blogsmithmedia.com^*_skin. (easylistchina+easylist.txt: 42368) -.blogsmithmedia.com/.*_skin\. -# ||blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments.png (easylistchina+easylist.txt: 42367) -.blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments\.png -# ||blogorama.com/images/banners/ (easylistchina+easylist.txt: 42366) -.blogorama.com/images/banners/ -# ||blogevaluation.com/templates/userfiles/banners/ (easylistchina+easylist.txt: 42365) -.blogevaluation.com/templates/userfiles/banners/ -# ||blog.co.uk/script/blogs/afc.js (easylistchina+easylist.txt: 42364) -.blog.co.uk/script/blogs/afc\.js -# ||blitzdownloads.com/promo/ (easylistchina+easylist.txt: 42363) -.blitzdownloads.com/promo/ -# ||blip.fm/ad/ (easylistchina+easylist.txt: 42362) -.blip.fm/ad/ -# ||blinkx.com/adhocnetwork/ (easylistchina+easylist.txt: 42361) -.blinkx.com/adhocnetwork/ -# ||bleacherreport.net^*_redesign_skin_ (easylistchina+easylist.txt: 42360) -.bleacherreport.net/.*_redesign_skin_ -# ||bleacherreport.net/images/skins/ (easylistchina+easylist.txt: 42359) -.bleacherreport.net/images/skins/ -# ||blbclassic.org/assets/images/*banners/ (easylistchina+easylist.txt: 42358) -.blbclassic.org/assets/images/.*banners/ -# ||blasternation.com/images/hearthstone.jpg (easylistchina+easylist.txt: 42357) -.blasternation.com/images/hearthstone\.jpg -# ||blackpressusa.com^*300x250. (easylistchina+easylist.txt: 42356) -.blackpressusa.com/.*300x250\. -# ||blackpressusa.com^*300by250. (easylistchina+easylist.txt: 42355) -.blackpressusa.com/.*300by250\. -# ||blackpressusa.com^*250by300. (easylistchina+easylist.txt: 42354) -.blackpressusa.com/.*250by300\. -# ||blackpressusa.com^*/Ford.jpg (easylistchina+easylist.txt: 42353) -.blackpressusa.com/.*/Ford\.jpg -# ||blacklistednews.com/images/*banner (easylistchina+easylist.txt: 42352) -.blacklistednews.com/images/.*banner -# ||blackhatlibrary.net/hacktalk.png (easylistchina+easylist.txt: 42351) -.blackhatlibrary.net/hacktalk\.png -# ||blackchronicle.com/images/Banners- (easylistchina+easylist.txt: 42350) -.blackchronicle.com/images/Banners- -# ||blackberryforums.net/banners/ (easylistchina+easylist.txt: 42349) -.blackberryforums.net/banners/ -# ||bkmag.com/binary/*/1380x800_ (easylistchina+easylist.txt: 42348) -.bkmag.com/binary/.*/1380x800_ -# ||bizhub.vn^*/agoda-for-bizhub.jpg (easylistchina+easylist.txt: 42347) -.bizhub.vn/.*/agoda-for-bizhub\.jpg -# ||bizarremag.com/images/skin_ (easylistchina+easylist.txt: 42346) -.bizarremag.com/images/skin_ -# ||bizanti.youwatch.org^ (easylistchina+easylist.txt: 42345) -.bizanti.youwatch.org -# ||bittorrent.am/banners/ (easylistchina+easylist.txt: 42344) -.bittorrent.am/banners/ -# ||bitreactor.to/static/subpage$subdocument (easylistchina+easylist.txt: 42343) -.bitreactor.to/static/subpage -# ||bitreactor.to/sponsor/ (easylistchina+easylist.txt: 42342) -.bitreactor.to/sponsor/ -# ||bitminter.com/images/info/spondoolies (easylistchina+easylist.txt: 42341) -.bitminter.com/images/info/spondoolies -# ||bitcoinreviewer.com/wp-content/uploads/*/banner-luckybit.jpg (easylistchina+easylist.txt: 42340) -.bitcoinreviewer.com/wp-content/uploads/.*/banner-luckybit\.jpg -# ||bitcoinist.net/wp-content/uploads/*_250x250_ (easylistchina+easylist.txt: 42339) -.bitcoinist.net/wp-content/uploads/.*_250x250_ -# ||bitcoinist.net/wp-content/*/630x80-bitcoinist.gif (easylistchina+easylist.txt: 42338) -.bitcoinist.net/wp-content/.*/630x80-bitcoinist\.gif -# ||bit-tech.net/images/backgrounds/skin/ (easylistchina+easylist.txt: 42337) -.bit-tech.net/images/backgrounds/skin/ -# ||binsearch.info/iframe.php (easylistchina+easylist.txt: 42335) -.binsearch.info/iframe\.php -# ||bikeradar.com/media/img/commercial/ (easylistchina+easylist.txt: 42333) -.bikeradar.com/media/img/commercial/ -# ||bikeforums.net/images/sponsors/ (easylistchina+easylist.txt: 42332) -.bikeforums.net/images/sponsors/ -# ||bigsports.tv/live/ado.php (easylistchina+easylist.txt: 42331) -.bigsports.tv/live/ado\.php -# ||bigpoint.com/xml/recommender.swf? (easylistchina+easylist.txt: 42330) -.bigpoint.com/xml/recommender\.swf\? -# ||bigeddieradio.com/uploads/sponsors/ (easylistchina+easylist.txt: 42329) -.bigeddieradio.com/uploads/sponsors/ -# ||bibme.org/images/grammarly/ (easylistchina+easylist.txt: 42328) -.bibme.org/images/grammarly/ -# ||bettyconfidential.com/media/fmads/ (easylistchina+easylist.txt: 42326) -.bettyconfidential.com/media/fmads/ -# ||bettingsports.com/where_to_bet (easylistchina+easylist.txt: 42325) -.bettingsports.com/where_to_bet -# ||bettingsports.com/top_bonuses (easylistchina+easylist.txt: 42324) -.bettingsports.com/top_bonuses -# ||better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend.png (easylistchina+easylist.txt: 42323) -.better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend\.png -# ||better-explorer.com/wp-content/uploads/2013/07/hf.5.png (easylistchina+easylist.txt: 42322) -.better-explorer.com/wp-content/uploads/2013/07/hf\.5\.png -# ||better-explorer.com/wp-content/uploads/2012/09/credits.png (easylistchina+easylist.txt: 42321) -.better-explorer.com/wp-content/uploads/2012/09/credits\.png -# ||bets4free.co.uk/content/5481b452d9ce40.09507031.jpg (easylistchina+easylist.txt: 42320) -.bets4free.co.uk/content/5481b452d9ce40\.09507031\.jpg -# ||bestvpn.com/wp-content/uploads/*/mosttrustedname_260x300_ (easylistchina+easylist.txt: 42319) -.bestvpn.com/wp-content/uploads/.*/mosttrustedname_260x300_ -# ||bestlistonline.info/link/ad.js (easylistchina+easylist.txt: 42318) -.bestlistonline.info/link/ad\.js -# ||bestblackhatforum.com/images/my_compas/ (easylistchina+easylist.txt: 42317) -.bestblackhatforum.com/images/my_compas/ -# ||bernama.com/banner/ (easylistchina+easylist.txt: 42316) -.bernama.com/banner/ -# ||benchmarkreviews.com^*/banners/ (easylistchina+easylist.txt: 42315) -.benchmarkreviews.com/.*/banners/ -# ||bellevision.com/belle/adds/ (easylistchina+easylist.txt: 42314) -.bellevision.com/belle/adds/ -# ||bellanaija.com^*/wp-banners/ (easylistchina+easylist.txt: 42313) -.bellanaija.com/.*/wp-banners/ -# ||belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img.js (easylistchina+easylist.txt: 42312) -.belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img\.js -# ||beingpc.com^*/banners/ (easylistchina+easylist.txt: 42311) -.beingpc.com/.*/banners/ -# ||beforeitsnews.com/static/iframe/ (easylistchina+easylist.txt: 42310) -.beforeitsnews.com/static/iframe/ -# ||beforeitsnews.com/static/data/story-stripmall-new.html (easylistchina+easylist.txt: 42309) -.beforeitsnews.com/static/data/story-stripmall-new\.html -# ||beap.gemini.yahoo.com^ (easylistchina+easylist.txt: 42308) -.beap.gemini.yahoo.com -# ||bdnews24.com^*/Ads/ (easylistchina+easylist.txt: 42307) -.bdnews24.com/.*/Ads/ -# ||bcdb.com^*/banners.pl? (easylistchina+easylist.txt: 42306) -.bcdb.com/.*/banners\.pl\? -# ||bbc.com^*/logoDupontSmall.png (easylistchina+easylist.txt: 42305) -.bbc.com/.*/logoDupontSmall\.png -# ||bbc.co.uk^*/bbccom.js? (easylistchina+easylist.txt: 42304) -.bbc.co.uk/.*/bbccom\.js\? -# ||bazaraki.com/bannerImage.php? (easylistchina+easylist.txt: 42303) -.bazaraki.com/bannerImage\.php\? -# ||baymirror.com/static/js/4728ba74bc.js (easylistchina+easylist.txt: 42302) -.baymirror.com/static/js/4728ba74bc\.js -# ||baymirror.com/static/img/bar.gif (easylistchina+easylist.txt: 42301) -.baymirror.com/static/img/bar\.gif -# ||bayfiles.net/img/download-button-orange.png (easylistchina+easylist.txt: 42300) -.bayfiles.net/img/download-button-orange\.png -# ||bay.com.mt/modules/mod_novarp/ (easylistchina+easylist.txt: 42299) -.bay.com.mt/modules/mod_novarp/ -# ||bay.com.mt/images/banners/ (easylistchina+easylist.txt: 42298) -.bay.com.mt/images/banners/ -# ||bassmaster.com^*/premier_sponsor_logo/ (easylistchina+easylist.txt: 42297) -.bassmaster.com/.*/premier_sponsor_logo/ -# ||basinsradio.com/images/banners/ (easylistchina+easylist.txt: 42296) -.basinsradio.com/images/banners/ -# ||bashandslash.com/images/banners/ (easylistchina+easylist.txt: 42295) -.bashandslash.com/images/banners/ -# ||baseballamerica.com/plugs/ (easylistchina+easylist.txt: 42294) -.baseballamerica.com/plugs/ -# ||barnesandnoble.com/promo/ (easylistchina+easylist.txt: 42293) -.barnesandnoble.com/promo/ -# ||banners.playocio.com^ (easylistchina+easylist.txt: 42292) -.banners.playocio.com -# ||banners.itweb.co.za^ (easylistchina+easylist.txt: 42291) -.banners.itweb.co.za -# ||banners.i-comers.com^ (easylistchina+easylist.txt: 42290) -.banners.i-comers.com -# ||banners.friday-ad.co.uk/hpbanneruploads/$image (easylistchina+easylist.txt: 42289) -.banners.friday-ad.co.uk/hpbanneruploads/ -# ||banners.expressindia.com^ (easylistchina+easylist.txt: 42288) -.banners.expressindia.com -# ||banners.clubworldgroup.com^ (easylistchina+easylist.txt: 42287) -.banners.clubworldgroup.com -# ||banners.beted.com^ (easylistchina+easylist.txt: 42286) -.banners.beted.com -# ||banners.beevpn.com^ (easylistchina+easylist.txt: 42285) -.banners.beevpn.com -# ||banner.itweb.co.za^ (easylistchina+easylist.txt: 42284) -.banner.itweb.co.za -# ||banner.automotiveworld.com^ (easylistchina+easylist.txt: 42283) -.banner.automotiveworld.com -# ||ballz.co.za^*/CLIENTS/ (easylistchina+easylist.txt: 42282) -.ballz.co.za/.*/CLIENTS/ -# ||ballz.co.za/system-files/banners/ (easylistchina+easylist.txt: 42281) -.ballz.co.za/system-files/banners/ -# ||ballislife.com^*/ova-player.swf$object-subrequest (easylistchina+easylist.txt: 42280) -.ballislife.com/.*/ova-player\.swf -# ||ballerarcade.com/ispark/ (easylistchina+easylist.txt: 42279) -.ballerarcade.com/ispark/ -# ||baku2015.com/imgml/sponsor/ (easylistchina+easylist.txt: 42278) -.baku2015.com/imgml/sponsor/ -# ||bakercountypress.com/images/banners/ (easylistchina+easylist.txt: 42277) -.bakercountypress.com/images/banners/ -# ||baixartv.com/img/bonsdescontos. (easylistchina+easylist.txt: 42276) -.baixartv.com/img/bonsdescontos\. -# ||bahamaslocal.com/img/banners/ (easylistchina+easylist.txt: 42275) -.bahamaslocal.com/img/banners/ -# ||badongo.com^*_banner_ (easylistchina+easylist.txt: 42274) -.badongo.com/.*_banner_ -# ||backpagelead.com.au/images/banners/ (easylistchina+easylist.txt: 42273) -.backpagelead.com.au/images/banners/ -# ||backin.net/s/promo/ (easylistchina+easylist.txt: 42272) -.backin.net/s/promo/ -# ||babycenter.com/viewadvertorialpoll.htm (easylistchina+easylist.txt: 42271) -.babycenter.com/viewadvertorialpoll\.htm -# ||babelzilla.org/images/banners/babelzilla-powerfox.png (easylistchina+easylist.txt: 42270) -.babelzilla.org/images/banners/babelzilla-powerfox\.png -# ||babelzilla.org/forum/images/powerfox-top.png (easylistchina+easylist.txt: 42269) -.babelzilla.org/forum/images/powerfox-top\.png -# ||ba.kioskea.net^ (easylistchina+easylist.txt: 42268) -.ba.kioskea.net -# ||ba.ccm2.net^ (easylistchina+easylist.txt: 42267) -.ba.ccm2.net -# ||b92.net/images/banners/ (easylistchina+easylist.txt: 42266) -.b92.net/images/banners/ -# ||b.thefile.me^ (easylistchina+easylist.txt: 42265) -.b.thefile.me -# ||b.localpages.com^ (easylistchina+easylist.txt: 42264) -.b.localpages.com -# ||azlyrics.com^*_az.js (easylistchina+easylist.txt: 42263) -.azlyrics.com/.*_az\.js -# ||azcs.co.uk^*/backgrounds/rotate.php (easylistchina+easylist.txt: 42262) -.azcs.co.uk/.*/backgrounds/rotate\.php -# ||azcentral.com/incs/dfp-refresh.php.inc? (easylistchina+easylist.txt: 42261) -.azcentral.com/incs/dfp-refresh\.php\.inc\? -# ||awkwardfamilyphotos.com*/?ad= (easylistchina+easylist.txt: 42260) -.awkwardfamilyphotos.com*./(.*/)?\?ad= -# ||avstop.com/avbanner/ (easylistchina+easylist.txt: 42259) -.avstop.com/avbanner/ -# ||avsforum.com/alliance/ (easylistchina+easylist.txt: 42258) -.avsforum.com/alliance/ -# ||avpa.dzone.com^ (easylistchina+easylist.txt: 42257) -.avpa.dzone.com -# ||avn.com/delivery/ (easylistchina+easylist.txt: 42256) -.avn.com/delivery/ -# ||avitop.com/image/mig.gif (easylistchina+easylist.txt: 42255) -.avitop.com/image/mig\.gif -# ||avitop.com/image/mig-anim.gif (easylistchina+easylist.txt: 42254) -.avitop.com/image/mig-anim\.gif -# ||avitop.com/image/amazon/ (easylistchina+easylist.txt: 42253) -.avitop.com/image/amazon/ -# ||aviationweek.com^*/leader_board.htm (easylistchina+easylist.txt: 42252) -.aviationweek.com/.*/leader_board\.htm -# ||avforums.com/images/skins/ (easylistchina+easylist.txt: 42251) -.avforums.com/images/skins/ -# ||aveherald.com/images/banners/ (easylistchina+easylist.txt: 42250) -.aveherald.com/images/banners/ -# ||autoworld.co.za^*/ads/ (easylistchina+easylist.txt: 42248) -.autoworld.co.za/.*/ads/ -# ||autosport.com/skinning/ (easylistchina+easylist.txt: 42247) -.autosport.com/skinning/ -# ||autoline.info/atlads/ (easylistchina+easylist.txt: 42246) -.autoline.info/atlads/ -# ||autoline-eu.ie/atlads/ (easylistchina+easylist.txt: 42245) -.autoline-eu.ie/atlads/ -# ||autoline-eu.co.za/atlads/ (easylistchina+easylist.txt: 42244) -.autoline-eu.co.za/atlads/ -# ||autoline-eu.co.uk/atlads/ (easylistchina+easylist.txt: 42243) -.autoline-eu.co.uk/atlads/ -# ||auto123.com/sasserve.spy (easylistchina+easylist.txt: 42242) -.auto123.com/sasserve\.spy -# ||at膽he.net/pu/ (easylistchina+easylist.txt: 42240) -.at膽he.net/pu/ -# ||attitude.co.uk/images/Music_Ticket_Button_ (easylistchina+easylist.txt: 42239) -.attitude.co.uk/images/Music_Ticket_Button_ -# ||atimes.com^*/ahm728x90.swf (easylistchina+easylist.txt: 42238) -.atimes.com/.*/ahm728x90\.swf -# ||atimes.com/banner/ (easylistchina+easylist.txt: 42237) -.atimes.com/banner/ -# ||atdhe.ws/pp.js (easylistchina+easylist.txt: 42236) -.atdhe.ws/pp\.js -# ||astronomynow.com/wp-content/promos/ (easylistchina+easylist.txt: 42235) -.astronomynow.com/wp-content/promos/ -# ||astronomy.com/sitefiles/overlays/overlaygenerator.aspx? (easylistchina+easylist.txt: 42234) -.astronomy.com/sitefiles/overlays/overlaygenerator\.aspx\? -# ||astalavista.com^*/sponsor- (easylistchina+easylist.txt: 42233) -.astalavista.com/.*/sponsor- -# ||astalavista.com/avtng/ (easylistchina+easylist.txt: 42232) -.astalavista.com/avtng/ -# ||askbobrankin.com/awpopup*.js (easylistchina+easylist.txt: 42231) -.askbobrankin.com/awpopup.*\.js -# ||askandyaboutclothes.com/images/$~third-party (easylistchina+easylist.txt: 42230) -.askandyaboutclothes.com/images/ -# ||ask.com/fifdart? (easylistchina+easylist.txt: 42229) -.ask.com/fifdart\? -# ||ask.com/display.html? (easylistchina+easylist.txt: 42228) -.ask.com/display\.html\? -# ||asianewsnet.net/banner/ (easylistchina+easylist.txt: 42227) -.asianewsnet.net/banner/ -# ||asd.projectfreetv.so^ (easylistchina+easylist.txt: 42226) -.asd.projectfreetv.so -# ||as.inbox.com^ (easylistchina+easylist.txt: 42225) -.as.inbox.com -# ||artima.com/zcr/ (easylistchina+easylist.txt: 42224) -.artima.com/zcr/ -# ||arstechnica.net^*/sponsor- (easylistchina+easylist.txt: 42223) -.arstechnica.net/.*/sponsor- -# ||arstechnica.net/public/shared/scripts/da- (easylistchina+easylist.txt: 42222) -.arstechnica.net/public/shared/scripts/da- -# ||arsenal-mania.com/images/backsplash_ (easylistchina+easylist.txt: 42221) -.arsenal-mania.com/images/backsplash_ -# ||aroundosceola.com/banner- (easylistchina+easylist.txt: 42220) -.aroundosceola.com/banner- -# ||arnnet.com.au/files/skins/ (easylistchina+easylist.txt: 42219) -.arnnet.com.au/files/skins/ -# ||armyrecognition.com^*/customer/ (easylistchina+easylist.txt: 42218) -.armyrecognition.com/.*/customer/ -# ||armslist.com/images/sponsors/ (easylistchina+easylist.txt: 42217) -.armslist.com/images/sponsors/ -# ||armorgames.com^*/siteskin.css (easylistchina+easylist.txt: 42216) -.armorgames.com/.*/siteskin\.css -# ||armorgames.com^*/site-skins/ (easylistchina+easylist.txt: 42215) -.armorgames.com/.*/site-skins/ -# ||armorgames.com^*/banners/ (easylistchina+easylist.txt: 42214) -.armorgames.com/.*/banners/ -# ||armorgames.com/backup_ (easylistchina+easylist.txt: 42213) -.armorgames.com/backup_ -# ||armorgames.com/assets/*_skin_ (easylistchina+easylist.txt: 42212) -.armorgames.com/assets/.*_skin_ -# ||arenadb.net^*/banners/ (easylistchina+easylist.txt: 42211) -.arenadb.net/.*/banners/ -# ||arenabg.com^*/banners/ (easylistchina+easylist.txt: 42210) -.arenabg.com/.*/banners/ -# ||archeagedatabase.net/images/okaygoods.gif (easylistchina+easylist.txt: 42209) -.archeagedatabase.net/images/okaygoods\.gif -# ||aravot.am/banner/ (easylistchina+easylist.txt: 42208) -.aravot.am/banner/ -# ||ar15.com^*_60x180.jpg (easylistchina+easylist.txt: 42207) -.ar15.com/.*_60x180\.jpg -# ||ar15.com/images/highlight/ (easylistchina+easylist.txt: 42206) -.ar15.com/images/highlight/ -# ||ar15.com/biz/ (easylistchina+easylist.txt: 42205) -.ar15.com/biz/ -# ||aps.dz^*/banners/ (easylistchina+easylist.txt: 42204) -.aps.dz/.*/banners/ -# ||appwork.org/a_d_s/ (easylistchina+easylist.txt: 42203) -.appwork.org/a_d_s/ -# ||appspot.com/adop/ (easylistchina+easylist.txt: 42202) -.appspot.com/adop/ -# ||applifier.com/bar.htm? (easylistchina+easylist.txt: 42201) -.applifier.com/bar\.htm\? -# ||appleserialnumberinfo.com/desktop/sdas/$subdocument (easylistchina+easylist.txt: 42200) -.appleserialnumberinfo.com/desktop/sdas/ -# ||appleinsider.com^*/ai_front_page_google_premium.js (easylistchina+easylist.txt: 42199) -.appleinsider.com/.*/ai_front_page_google_premium\.js -# ||appleinsider.com/macmall (easylistchina+easylist.txt: 42198) -.appleinsider.com/macmall -# ||api.toptenreviews.com^*/request.php (easylistchina+easylist.txt: 42197) -.api.toptenreviews.com/.*/request\.php -# ||apcointl.org/images/corporate_partners/ (easylistchina+easylist.txt: 42196) -.apcointl.org/images/corporate_partners/ -# ||apanews.net/pub/ (easylistchina+easylist.txt: 42195) -.apanews.net/pub/ -# ||apa.az^*/rebans/ (easylistchina+easylist.txt: 42194) -.apa.az/.*/rebans/ -# ||aolcdn.com/os/moat/$script (easylistchina+easylist.txt: 42192) -.aolcdn.com/os/moat/ -# ||aol.co.uk/images/skybet-logo.gif (easylistchina+easylist.txt: 42191) -.aol.co.uk/images/skybet-logo\.gif -# ||anvisoft.com^*/anviad.jpg (easylistchina+easylist.txt: 42190) -.anvisoft.com/.*/anviad\.jpg -# ||anti-scam.org/abanners/ (easylistchina+easylist.txt: 42189) -.anti-scam.org/abanners/ -# ||anti-leech.com/al.php? (easylistchina+easylist.txt: 42188) -.anti-leech.com/al\.php\? -# ||antag.co.uk/js/ov.js.php? (easylistchina+easylist.txt: 42187) -.antag.co.uk/js/ov\.js\.php\? -# ||answerology.com/index.aspx?*=ads.ascx (easylistchina+easylist.txt: 42186) -.answerology.com/index\.aspx\?.*=ads\.ascx -# ||anonytext.tk/re.php (easylistchina+easylist.txt: 42185) -.anonytext.tk/re\.php -# ||anonytext.tk/img/paste-sponsor.png (easylistchina+easylist.txt: 42184) -.anonytext.tk/img/paste-sponsor\.png -# ||anonytext.tk/img/paste-eb.png (easylistchina+easylist.txt: 42183) -.anonytext.tk/img/paste-eb\.png -# ||anonib.com/zimages/ (easylistchina+easylist.txt: 42182) -.anonib.com/zimages/ -# ||annistonstar.com/leaderboard_banner (easylistchina+easylist.txt: 42181) -.annistonstar.com/leaderboard_banner -# ||aniscartujo.com^*/layer.js (easylistchina+easylist.txt: 42180) -.aniscartujo.com/.*/layer\.js -# ||animeshippuuden.com/square.php (easylistchina+easylist.txt: 42179) -.animeshippuuden.com/square\.php -# ||animeshippuuden.com/adcpm.js (easylistchina+easylist.txt: 42178) -.animeshippuuden.com/adcpm\.js -# ||animenewsnetwork.com^*.aframe? (easylistchina+easylist.txt: 42177) -.animenewsnetwork.com/.*\.aframe\? -# ||animenewsnetwork.com/stylesheets/*skin$image (easylistchina+easylist.txt: 42176) -.animenewsnetwork.com/stylesheets/.*skin -# ||animehaven.org/wp-content/banners/ (easylistchina+easylist.txt: 42175) -.animehaven.org/wp-content/banners/ -# ||animefushigi.com/boxes/ (easylistchina+easylist.txt: 42174) -.animefushigi.com/boxes/ -# ||animeflv.net/cpm.html (easylistchina+easylist.txt: 42173) -.animeflv.net/cpm\.html -# ||animeflavor.com/animeflavor-gao-gamebox.swf (easylistchina+easylist.txt: 42172) -.animeflavor.com/animeflavor-gao-gamebox\.swf -# ||animea.net/do/ (easylistchina+easylist.txt: 42171) -.animea.net/do/ -# ||anime44.com/images/videobb2.png (easylistchina+easylist.txt: 42170) -.anime44.com/images/videobb2\.png -# ||anime44.com/anime44box.jpg (easylistchina+easylist.txt: 42169) -.anime44.com/anime44box\.jpg -# ||anime1.com/service/joyfun/ (easylistchina+easylist.txt: 42168) -.anime1.com/service/joyfun/ -# ||anime-source.com/banzai/banner.$subdocument (easylistchina+easylist.txt: 42167) -.anime-source.com/banzai/banner\. -# ||animationxpress.com/anex/solutions/ (easylistchina+easylist.txt: 42166) -.animationxpress.com/anex/solutions/ -# ||animationxpress.com/anex/crosspromotions/ (easylistchina+easylist.txt: 42165) -.animationxpress.com/anex/crosspromotions/ -# ||anilinkz.tv/kwarta- (easylistchina+easylist.txt: 42164) -.anilinkz.tv/kwarta- -# ||anilinkz.com/img/rightsponsors (easylistchina+easylist.txt: 42163) -.anilinkz.com/img/rightsponsors -# ||anilinkz.com/img/leftsponsors. (easylistchina+easylist.txt: 42162) -.anilinkz.com/img/leftsponsors\. -# ||anhits.com/files/banners/ (easylistchina+easylist.txt: 42161) -.anhits.com/files/banners/ -# ||androidpolice.com/wp-content/*/images/das/ (easylistchina+easylist.txt: 42160) -.androidpolice.com/wp-content/.*/images/das/ -# ||androidcommunity.com/external_marketing/$subdocument (easylistchina+easylist.txt: 42159) -.androidcommunity.com/external_marketing/ -# ||andr.net/banners/ (easylistchina+easylist.txt: 42158) -.andr.net/banners/ -# ||anchorfree.net^*/?tm=$subdocument (easylistchina+easylist.txt: 42157) -.anchorfree.net/.*/\?tm= -# ||anchorfree.net/?tm=$subdocument (easylistchina+easylist.txt: 42156) -.anchorfree.net/\?tm= -# ||anchorfree.com/delivery/ (easylistchina+easylist.txt: 42155) -.anchorfree.com/delivery/ -# ||anamera.com/DesktopModules/BannerDisplay/ (easylistchina+easylist.txt: 42154) -.anamera.com/DesktopModules/BannerDisplay/ -# ||analytics.mmosite.com^ (easylistchina+easylist.txt: 42153) -.analytics.mmosite.com -# ||amz.steamprices.com^ (easylistchina+easylist.txt: 42152) -.amz.steamprices.com -# ||amnesty.ca/images/banners/ (easylistchina+easylist.txt: 42151) -.amnesty.ca/images/banners/ -# ||americanfreepress.net/assets/images/Banner_ (easylistchina+easylist.txt: 42150) -.americanfreepress.net/assets/images/Banner_ -# ||americanangler.com/images/banners/ (easylistchina+easylist.txt: 42149) -.americanangler.com/images/banners/ -# ||amd.com/publishingimages/*/master_ (easylistchina+easylist.txt: 42148) -.amd.com/publishingimages/.*/master_ -# ||ambriefonline.com^*/banners/ (easylistchina+easylist.txt: 42147) -.ambriefonline.com/.*/banners/ -# ||amazonaws.com/files.bannersnack.com/ (easylistchina+easylist.txt: 42140) -.amazonaws.com/files\.bannersnack\.com/ -# ||amazonaws.com/cdn.megacpm.com/ (easylistchina+easylist.txt: 42137) -.amazonaws.com/cdn\.megacpm\.com/ -# ||amazon.com/aan/$subdocument (easylistchina+easylist.txt: 42136) -.amazon.com/aan/ -# ||amazingmoneymagnet.com//upload/banners/ (easylistchina+easylist.txt: 42135) -# ||alternet.org/givememygfp. (easylistchina+easylist.txt: 42134) -.alternet.org/givememygfp\. -# ||altdaily.com/images/banners/ (easylistchina+easylist.txt: 42133) -.altdaily.com/images/banners/ -# ||allthelyrics.com^*/popup.js (easylistchina+easylist.txt: 42132) -.allthelyrics.com/.*/popup\.js -# ||allsp.ch/feeder.php (easylistchina+easylist.txt: 42131) -.allsp.ch/feeder\.php -# ||allmyvideos.net^*/pu.js (easylistchina+easylist.txt: 42130) -.allmyvideos.net/.*/pu\.js -# ||allmyvideos.net/player/ova-jw.swf (easylistchina+easylist.txt: 42129) -.allmyvideos.net/player/ova-jw\.swf -# ||allmyvideos.net/js/ad_ (easylistchina+easylist.txt: 42128) -.allmyvideos.net/js/ad_ -# ||allmusic.com^*_affiliate_ (easylistchina+easylist.txt: 42127) -.allmusic.com/.*_affiliate_ -# ||allmovieportal.com/dynbanner. (easylistchina+easylist.txt: 42126) -.allmovieportal.com/dynbanner\. -# ||allmovie.com^*/affiliate_ (easylistchina+easylist.txt: 42125) -.allmovie.com/.*/affiliate_ -# ||allkpop.com^*/takeover/ (easylistchina+easylist.txt: 42124) -.allkpop.com/.*/takeover/ -# ||allhiphop.com/site_resources/ui-images/*-conduit-banner.gif (easylistchina+easylist.txt: 42123) -.allhiphop.com/site_resources/ui-images/.*-conduit-banner\.gif -# ||allghananews.com/images/banners/ (easylistchina+easylist.txt: 42122) -.allghananews.com/images/banners/ -# ||all4divx.com/js/jscode2.js (easylistchina+easylist.txt: 42121) -.all4divx.com/js/jscode2\.js -# ||alatest.com/banner/ (easylistchina+easylist.txt: 42120) -.alatest.com/banner/ -# ||alatest.co.uk/banner/ (easylistchina+easylist.txt: 42119) -.alatest.co.uk/banner/ -# ||alaska-native-news.com/files/banners/ (easylistchina+easylist.txt: 42118) -.alaska-native-news.com/files/banners/ -# ||alarabiya.net/dms/takeover/ (easylistchina+easylist.txt: 42117) -.alarabiya.net/dms/takeover/ -# ||alachuacountytoday.com/images/banners/ (easylistchina+easylist.txt: 42116) -.alachuacountytoday.com/images/banners/ -# ||akipress.org/bimages/ (easylistchina+easylist.txt: 42115) -.akipress.org/bimages/ -# ||akipress.org/ban/ (easylistchina+easylist.txt: 42114) -.akipress.org/ban/ -# ||akipress.com/_ban/ (easylistchina+easylist.txt: 42113) -.akipress.com/_ban/ -# ||akinator.com/publicite_ (easylistchina+easylist.txt: 42112) -.akinator.com/publicite_ -# ||akiba-online.com/forum/images/bs.gif (easylistchina+easylist.txt: 42110) -.akiba-online.com/forum/images/bs\.gif -# ||akamaihd.net/zbar/takeovers/ (easylistchina+easylist.txt: 42108) -.akamaihd.net/zbar/takeovers/ -# ||akamai.net/*/Prerolls/Campaigns/ (easylistchina+easylist.txt: 42107) -.akamai.net/.*/Prerolls/Campaigns/ -# ||ajnad.aljazeera.net^ (easylistchina+easylist.txt: 42106) -.ajnad.aljazeera.net -# ||ahk-usa.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 42105) -.ahk-usa.com/uploads/tx_bannermanagement/ -# ||ahashare.com/cpxt_ (easylistchina+easylist.txt: 42104) -.ahashare.com/cpxt_ -# ||agriculturalreviewonline.com/images/banners/ (easylistchina+easylist.txt: 42103) -.agriculturalreviewonline.com/images/banners/ -# ||afternoondc.in/banners/ (easylistchina+easylist.txt: 42102) -.afternoondc.in/banners/ -# ||africaonline.com.na^*/banners/ (easylistchina+easylist.txt: 42101) -.africaonline.com.na/.*/banners/ -# ||africanbusinessmagazine.com/images/banners/ (easylistchina+easylist.txt: 42100) -.africanbusinessmagazine.com/images/banners/ -# ||afmradio.co.za/images/slider/ (easylistchina+easylist.txt: 42099) -.afmradio.co.za/images/slider/ -# ||afloat.ie^*/banners/ (easylistchina+easylist.txt: 42098) -.afloat.ie/.*/banners/ -# ||affiliatesynergy.com^*/banner_ (easylistchina+easylist.txt: 42097) -.affiliatesynergy.com/.*/banner_ -# ||aff.lmgtfy.com^ (easylistchina+easylist.txt: 42096) -.aff.lmgtfy.com -# ||aetv.com/includes/dart/ (easylistchina+easylist.txt: 42095) -.aetv.com/includes/dart/ -# ||adz.lk^*_ad. (easylistchina+easylist.txt: 42094) -.adz.lk/.*_ad\. -# ||adx.kat.ph^ (easylistchina+easylist.txt: 42093) -.adx.kat.ph -# ||advpc.net/site_img/banner/ (easylistchina+easylist.txt: 42092) -.advpc.net/site_img/banner/ -# ||advice-ads-cdn.vice.com^ (easylistchina+easylist.txt: 42091) -.advice-ads-cdn.vice.com -# ||advfn.com/tf_ (easylistchina+easylist.txt: 42090) -.advfn.com/tf_ -# ||adverts.itv.com^$image (easylistchina+easylist.txt: 42089) -.adverts.itv.com -# ||advertise.twitpic.com^ (easylistchina+easylist.txt: 42088) -.advertise.twitpic.com -# ||advanced-television.com^*/banners/ (easylistchina+easylist.txt: 42087) -.advanced-television.com/.*/banners/ -# ||adv.li/ads/ (easylistchina+easylist.txt: 42086) -.adv.li/ads/ -# ||adtest.theonion.com^ (easylistchina+easylist.txt: 42085) -.adtest.theonion.com -# ||adswikia.com^*display300x250 (easylistchina+easylist.txt: 42084) -.adswikia.com/.*display300x250 -# ||adswikia.com^*banner (easylistchina+easylist.txt: 42083) -.adswikia.com/.*banner -# ||adstil.indiatimes.com^ (easylistchina+easylist.txt: 42082) -.adstil.indiatimes.com -# ||adss.yahoo.com^ (easylistchina+easylist.txt: 42081) -.adss.yahoo.com -# ||adsor.openrunner.com^ (easylistchina+easylist.txt: 42080) -.adsor.openrunner.com -# ||adsl2exchanges.com.au/images/spintel (easylistchina+easylist.txt: 42079) -.adsl2exchanges.com.au/images/spintel -# ||adshare.freedocast.com^ (easylistchina+easylist.txt: 42078) -.adshare.freedocast.com -# ||adsatt.espn.starwave.com^ (easylistchina+easylist.txt: 42077) -.adsatt.espn.starwave.com -# ||adsatt.abcnews.starwave.com^ (easylistchina+easylist.txt: 42076) -.adsatt.abcnews.starwave.com -# ||ads.zynga.com^ (easylistchina+easylist.txt: 42075) -.ads.zynga.com -# ||ads.yahoo.com^ (easylistchina+easylist.txt: 42074) -.ads.yahoo.com -# ||ads.pof.com^ (easylistchina+easylist.txt: 42073) -.ads.pof.com -# ||ads-rolandgarros.com^ (easylistchina+easylist.txt: 42072) -.ads-rolandgarros.com -# ||ads-*.hulu.com^ (easylistchina+easylist.txt: 42071) -.ads-*./.*\.hulu\.com[^\w%.-] -.ads-*.hulu.com -# ||adpost.com^*.g.html (easylistchina+easylist.txt: 42070) -.adpost.com/.*\.g\.html -# ||adpost.com/skyserver.g. (easylistchina+easylist.txt: 42069) -.adpost.com/skyserver\.g\. -# ||adpost.com/rectserver.g. (easylistchina+easylist.txt: 42068) -.adpost.com/rectserver\.g\. -# ||adpost.com/bannerserver.g. (easylistchina+easylist.txt: 42067) -.adpost.com/bannerserver\.g\. -# ||adpaths.com/_aspx/cpcinclude.aspx? (easylistchina+easylist.txt: 42066) -.adpaths.com/_aspx/cpcinclude\.aspx\? -# ||admeta.vo.llnwd.net^ (easylistchina+easylist.txt: 42065) -.admeta.vo.llnwd.net -# ||adlink.shopsafe.co.nz^ (easylistchina+easylist.txt: 42064) -.adlink.shopsafe.co.nz -# ||adirondackmtnclub.com/images/banner/ (easylistchina+easylist.txt: 42063) -.adirondackmtnclub.com/images/banner/ -# ||adifferentleague.co.uk^*/mcad.png (easylistchina+easylist.txt: 42062) -.adifferentleague.co.uk/.*/mcad\.png -# ||adf.ly/networks/ (easylistchina+easylist.txt: 42061) -.adf.ly/networks/ -# ||adf.ly/external/*/int.php (easylistchina+easylist.txt: 42060) -.adf.ly/external/.*/int\.php -# ||adelaidecityfc.com.au/oak.swf (easylistchina+easylist.txt: 42059) -.adelaidecityfc.com.au/oak\.swf -# ||adds.weatherology.com^ (easylistchina+easylist.txt: 42058) -.adds.weatherology.com -# ||addirector.vindicosuite.com^ (easylistchina+easylist.txt: 42057) -.addirector.vindicosuite.com -# ||adcitrus.com^ (easylistchina+easylist.txt: 42056) -.adcitrus.com -# ||adamvstheman.com/wp-content/uploads/*/AVTM_banner.jpg (easylistchina+easylist.txt: 42055) -.adamvstheman.com/wp-content/uploads/.*/AVTM_banner\.jpg -# ||ad.services.distractify.com^ (easylistchina+easylist.txt: 42054) -.ad.services.distractify.com -# ||ad.search.ch^ (easylistchina+easylist.txt: 42053) -.ad.search.ch -# ||ad.reachlocal.com^ (easylistchina+easylist.txt: 42052) -.ad.reachlocal.com -# ||ad.pandora.tv^ (easylistchina+easylist.txt: 42051) -.ad.pandora.tv -# ||ad.newegg.com^ (easylistchina+easylist.txt: 42050) -.ad.newegg.com -# ||ad.mangareader.net^ (easylistchina+easylist.txt: 42049) -.ad.mangareader.net -# ||ad.lyricswire.com^ (easylistchina+easylist.txt: 42048) -.ad.lyricswire.com -# ||ad.jamster.com^ (easylistchina+easylist.txt: 42047) -.ad.jamster.com -# ||ad.fnnews.com^ (easylistchina+easylist.txt: 42046) -.ad.fnnews.com -# ||ad.evozi.com^ (easylistchina+easylist.txt: 42045) -.ad.evozi.com -# ||ad.download.cnet.com^ (easylistchina+easylist.txt: 42044) -.ad.download.cnet.com -# ||ad.directmirror.com^ (easylistchina+easylist.txt: 42043) -.ad.directmirror.com -# ||ad.digitimes.com.tw^ (easylistchina+easylist.txt: 42042) -.ad.digitimes.com.tw -# ||ad.cooks.com^ (easylistchina+easylist.txt: 42041) -.ad.cooks.com -# ||actressarchives.com/takeover/ (easylistchina+easylist.txt: 42040) -.actressarchives.com/takeover/ -# ||activewin.com^*/blaze_static2.gif (easylistchina+easylist.txt: 42039) -.activewin.com/.*/blaze_static2\.gif -# ||activewin.com/images/*_ad.gif (easylistchina+easylist.txt: 42038) -.activewin.com/images/.*_ad\.gif -# ||acs86.com/a.htm? (easylistchina+easylist.txt: 42037) -.acs86.com/a\.htm\? -# ||acidcow.com/banners.php? (easylistchina+easylist.txt: 42036) -.acidcow.com/banners\.php\? -# ||accesshollywood.com/aife?$subdocument (easylistchina+easylist.txt: 42035) -.accesshollywood.com/aife\? -# ||access.njherald.com^ (easylistchina+easylist.txt: 42034) -.access.njherald.com -# ||ac2.msn.com^ (easylistchina+easylist.txt: 42033) -.ac2.msn.com -# ||absolutewrite.com^*_ad.jpg (easylistchina+easylist.txt: 42032) -.absolutewrite.com/.*_ad\.jpg -# ||absolutewrite.com^*_468x60banner. (easylistchina+easylist.txt: 42031) -.absolutewrite.com/.*_468x60banner\. -# ||absolutewrite.com^*/Scrivener-11-thumbnail-cover_160x136.gif (easylistchina+easylist.txt: 42030) -.absolutewrite.com/.*/Scrivener-11-thumbnail-cover_160x136\.gif -# ||absolutewrite.com^*/doyle_editorial.jpg (easylistchina+easylist.txt: 42029) -.absolutewrite.com/.*/doyle_editorial\.jpg -# ||absolutewrite.com^*/48HrBooks4.jpg (easylistchina+easylist.txt: 42028) -.absolutewrite.com/.*/48HrBooks4\.jpg -# ||absolutcheats.com/images/changemy*.gif (easylistchina+easylist.txt: 42027) -.absolutcheats.com/images/changemy.*\.gif -# ||abovetopsecret.com/images/plexidigest-300x300.jpg (easylistchina+easylist.txt: 42026) -.abovetopsecret.com/images/plexidigest-300x300\.jpg -# ||abovetopsecret.com/728_ (easylistchina+easylist.txt: 42025) -.abovetopsecret.com/728_ -# ||abovetopsecret.com/300_ (easylistchina+easylist.txt: 42024) -.abovetopsecret.com/300_ -# ||abovetopsecret.com/160_ (easylistchina+easylist.txt: 42023) -.abovetopsecret.com/160_ -# ||aboutmyip.com/images/SynaManBanner.gif (easylistchina+easylist.txt: 42022) -.aboutmyip.com/images/SynaManBanner\.gif -# ||aboutmyip.com/images/Ad0 (easylistchina+easylist.txt: 42021) -.aboutmyip.com/images/Ad0 -# ||aboutmyarea.co.uk/images/imgstore/ (easylistchina+easylist.txt: 42020) -.aboutmyarea.co.uk/images/imgstore/ -# ||about.com/0g/$subdocument (easylistchina+easylist.txt: 42019) -.about.com/0g/ -# ||abook.ws/th_mydl.gif (easylistchina+easylist.txt: 42018) -.abook.ws/th_mydl\.gif -# ||abook.ws/pyload.png (easylistchina+easylist.txt: 42017) -.abook.ws/pyload\.png -# ||abook.ws/banner6.png (easylistchina+easylist.txt: 42016) -.abook.ws/banner6\.png -# ||abduzeedo.com^*/mt-banner.jpg (easylistchina+easylist.txt: 42015) -.abduzeedo.com/.*/mt-banner\.jpg -# ||aaugh.com/images/dreamhostad.gif (easylistchina+easylist.txt: 42013) -.aaugh.com/images/dreamhostad\.gif -# ||a7.org/info/ (easylistchina+easylist.txt: 42012) -.a7.org/info/ -# ||a.lolwot.com^ (easylistchina+easylist.txt: 42011) -.a.lolwot.com -# ||a.kickass.to^ (easylistchina+easylist.txt: 42010) -.a.kickass.to -# ||a.kat.cr^ (easylistchina+easylist.txt: 42009) -.a.kat.cr -# ||a.i-sgcm.com^ (easylistchina+easylist.txt: 42008) -.a.i-sgcm.com -# ||a.giantrealm.com^ (easylistchina+easylist.txt: 42007) -.a.giantrealm.com -# ||a.clipconverter.cc^ (easylistchina+easylist.txt: 42006) -.a.clipconverter.cc -# ||a.cdngeek.net^ (easylistchina+easylist.txt: 42005) -.a.cdngeek.net -# ||9news.com/promo/ (easylistchina+easylist.txt: 42004) -.9news.com/promo/ -# ||980wcap.com/sponsorlogos/ (easylistchina+easylist.txt: 42003) -.980wcap.com/sponsorlogos/ -# ||977rocks.com/images/300- (easylistchina+easylist.txt: 42002) -.977rocks.com/images/300- -# ||977music.com/index.php?p=get_loading_banner (easylistchina+easylist.txt: 42001) -.977music.com/index\.php\?p=get_loading_banner -# ||947fm.bb/images/banners/ (easylistchina+easylist.txt: 42000) -.947fm.bb/images/banners/ -# ||947.co.za^*-branding. (easylistchina+easylist.txt: 41999) -.947.co.za/.*-branding\. -# ||911tabs.com^*/ringtones_overlay.js (easylistchina+easylist.txt: 41998) -.911tabs.com/.*/ringtones_overlay\.js -# ||911tabs.com/img/takeover_app_ (easylistchina+easylist.txt: 41997) -.911tabs.com/img/takeover_app_ -# ||911tabs.com/img/bgd_911tabs_ (easylistchina+easylist.txt: 41996) -.911tabs.com/img/bgd_911tabs_ -# ||8ch.net/proxy.php? (easylistchina+easylist.txt: 41995) -.8ch.net/proxy\.php\? -# ||8a.nu/sponsors/ (easylistchina+easylist.txt: 41994) -.8a.nu/sponsors/ -# ||8a.nu/site2/sponsors/ (easylistchina+easylist.txt: 41993) -.8a.nu/site2/sponsors/ -# ||88.80.16.183/streams/counters/ (easylistchina+easylist.txt: 41992) -.88.80.16.183/streams/counters/ -# ||810varsity.com^*/background- (easylistchina+easylist.txt: 41989) -.810varsity.com/.*/background- -# ||6waves.com/aff.php? (easylistchina+easylist.txt: 41987) -.6waves.com/aff\.php\? -# ||64.245.1.134/search/v2/jsp/pcwframe.jsp?provider= (easylistchina+easylist.txt: 41986) -.64.245.1.134/search/v2/jsp/pcwframe\.jsp\?provider= -# ||610kvnu.com*^/sponsors/ (easylistchina+easylist.txt: 41985) -.610kvnu.com*./(.*[^\w%.-])?/sponsors/ -# ||5star-shareware.com/scripts/5starads.js (easylistchina+easylist.txt: 41984) -.5star-shareware.com/scripts/5starads\.js -# ||5min.com^*/banners/ (easylistchina+easylist.txt: 41983) -.5min.com/.*/banners/ -# ||560theanswer.com/upload/sponsor- (easylistchina+easylist.txt: 41982) -.560theanswer.com/upload/sponsor- -# ||50statesclassifieds.com/image.php?size_id=$subdocument (easylistchina+easylist.txt: 41981) -.50statesclassifieds.com/image\.php\?size_id= -# ||4sysops.com^*.php?unit=main$xmlhttprequest (easylistchina+easylist.txt: 41979) -.4sysops.com/.*\.php\?unit=main -# ||4sharedtrend.com/ifx/ifx.php? (easylistchina+easylist.txt: 41978) -.4sharedtrend.com/ifx/ifx\.php\? -# ||4shared.com/images/label1.gif (easylistchina+easylist.txt: 41977) -.4shared.com/images/label1\.gif -# ||4fuckr.com/static/*-banner. (easylistchina+easylist.txt: 41976) -.4fuckr.com/static/.*-banner\. -# ||4fuckr.com/g/$image (easylistchina+easylist.txt: 41975) -.4fuckr.com/g/ -# ||4fastfile.com/afiliat.png (easylistchina+easylist.txt: 41974) -.4fastfile.com/afiliat\.png -# ||4downfiles.com/open1.js (easylistchina+easylist.txt: 41973) -.4downfiles.com/open1\.js -# ||4chan.org/support/ (easylistchina+easylist.txt: 41972) -.4chan.org/support/ -# ||3pmpickup.com.au/images/kmart_v2.jpg (easylistchina+easylist.txt: 41971) -.3pmpickup.com.au/images/kmart_v2\.jpg -# ||3g.co.uk/fad/ (easylistchina+easylist.txt: 41970) -.3g.co.uk/fad/ -# ||3dwallpaperstudio.com/hd_wallpapers.png (easylistchina+easylist.txt: 41969) -.3dwallpaperstudio.com/hd_wallpapers\.png -# ||3dsemulator.org/img/download.png (easylistchina+easylist.txt: 41968) -.3dsemulator.org/img/download\.png -# ||360haven.com/forums/*.advertising.com/ (easylistchina+easylist.txt: 41967) -.360haven.com/forums/.*\.advertising\.com/ -# ||2pass.co.uk/img/avanquest2013.gif (easylistchina+easylist.txt: 41966) -.2pass.co.uk/img/avanquest2013\.gif -# ||2oceansvibe.com/?custom=takeover (easylistchina+easylist.txt: 41965) -.2oceansvibe.com/\?custom=takeover -# ||2mfm.org/images/banners/ (easylistchina+easylist.txt: 41964) -.2mfm.org/images/banners/ -# ||2merkato.com/images/banners/ (easylistchina+easylist.txt: 41963) -.2merkato.com/images/banners/ -# ||2gb.com^*/backgrounds/ (easylistchina+easylist.txt: 41962) -.2gb.com/.*/backgrounds/ -# ||2flashgames.com/img/nfs.gif (easylistchina+easylist.txt: 41961) -.2flashgames.com/img/nfs\.gif -# ||24hourwristbands.com/*.googleadservices.com/ (easylistchina+easylist.txt: 41960) -.24hourwristbands.com/.*\.googleadservices\.com/ -# ||22lottery.com/images/lm468 (easylistchina+easylist.txt: 41959) -.22lottery.com/images/lm468 -# ||1up.com^*/promos/ (easylistchina+easylist.txt: 41954) -.1up.com/.*/promos/ -# ||1up.com/vip/vip_games.html (easylistchina+easylist.txt: 41953) -.1up.com/vip/vip_games\.html -# ||1up.com/scripts/takeover.js (easylistchina+easylist.txt: 41952) -.1up.com/scripts/takeover\.js -# ||180upload.com/pir/729.js (easylistchina+easylist.txt: 41949) -.180upload.com/pir/729\.js -# ||180upload.com/p1.js (easylistchina+easylist.txt: 41948) -.180upload.com/p1\.js -# ||1776coalition.com/wp-content/plugins/sam-images/ (easylistchina+easylist.txt: 41946) -.1776coalition.com/wp-content/plugins/sam-images/ -# ||1590wcgo.com/images/banners/ (easylistchina+easylist.txt: 41944) -.1590wcgo.com/images/banners/ -# ||1430wnav.com/images/468- (easylistchina+easylist.txt: 41943) -.1430wnav.com/images/468- -# ||1430wnav.com/images/300- (easylistchina+easylist.txt: 41942) -.1430wnav.com/images/300- -# ||1340wcmi.com/images/banners/ (easylistchina+easylist.txt: 41941) -.1340wcmi.com/images/banners/ -# ||1320wils.com/assets/images/promo%20banner/ (easylistchina+easylist.txt: 41940) -.1320wils.com/assets/images/promo%20banner/ -# ||11points.com/images/slack100.jpg (easylistchina+easylist.txt: 41939) -.11points.com/images/slack100\.jpg -# ||1077thebone.com^*/banners/ (easylistchina+easylist.txt: 41937) -.1077thebone.com/.*/banners/ -# ||1071thepeak.com/right/ (easylistchina+easylist.txt: 41936) -.1071thepeak.com/right/ -# ||1071radio.com//wp-content/banners/ (easylistchina+easylist.txt: 41935) -# ||1043thefan.com^*_Sponsors/ (easylistchina+easylist.txt: 41934) -.1043thefan.com/.*_Sponsors/ -# ||104.239.139.5/display/ (easylistchina+easylist.txt: 41933) -.104.239.139.5/display/ -# ||1023xlc.com/upload/*_background_ (easylistchina+easylist.txt: 41932) -.1023xlc.com/upload/.*_background_ -# ||100jamz.com^*/insurance-management (easylistchina+easylist.txt: 41931) -.100jamz.com/.*/insurance-management -# ||100jamz.com^*-wallpaper-ad- (easylistchina+easylist.txt: 41930) -.100jamz.com/.*-wallpaper-ad- -# ||100best-free-web-space.com/images/ipage.gif (easylistchina+easylist.txt: 41929) -.100best-free-web-space.com/images/ipage\.gif -# ||10-fast-fingers.com/quotebattle-ad.png (easylistchina+easylist.txt: 41928) -.10-fast-fingers.com/quotebattle-ad\.png -# ||04stream.com/podddpo.js (easylistchina+easylist.txt: 41927) -.04stream.com/podddpo\.js -# ||04stream.com/NEWAD11.php? (easylistchina+easylist.txt: 41926) -.04stream.com/NEWAD11\.php\? -# ||0-60mag.com/js/takeover-2.0/ (easylistchina+easylist.txt: 41925) -.0-60mag.com/js/takeover-2\.0/ -# |http://p.pw^$subdocument (easylistchina+easylist.txt: 41923) -p.pw -# |http://j.gs/omnigy*.swf (easylistchina+easylist.txt: 41922) -j.gs/omnigy.*\.swf -# |http://creative.*/smart.js$script,third-party (easylistchina+easylist.txt: 41921) -creative.*./(.*/)?smart\.js -# /get/path/.banners.$image,third-party (easylistchina+easylist.txt: 41910) -/(.*/)?get/path/\.banners\. -# /af.php?$subdocument (easylistchina+easylist.txt: 41905) -/(.*/)?af\.php\? -# .net/director/?$subdocument,third-party (easylistchina+easylist.txt: 41900) -/.*\.net/director/\? -.*.net/director/\? -# .info/*.js?guid=$script,third-party (easylistchina+easylist.txt: 41898) -/.*\.info/.*\.js\?guid= -.*.info/.*\.js\?guid= -# .com/jquery/*.js?_t=$script,third-party (easylistchina+easylist.txt: 41897) -/.*\.com/jquery/.*\.js\?_t= -.*.com/jquery/.*\.js\?_t= -# ||yuvutu.com^$popup,third-party (easylistchina+easylist.txt: 41893) -.yuvutu.com -# ||xvideoslive.com/landing/$popup,third-party (easylistchina+easylist.txt: 41892) -.xvideoslive.com/landing/ -# ||xvideoslive.com/?AFNO$popup,third-party (easylistchina+easylist.txt: 41891) -.xvideoslive.com/\?AFNO -# ||xrounds.com/?lmid=$popup,third-party (easylistchina+easylist.txt: 41890) -.xrounds.com/\?lmid= -# ||xdating.com/search/$popup,third-party (easylistchina+easylist.txt: 41889) -.xdating.com/search/ -# ||webcams.com^$popup,third-party (easylistchina+easylist.txt: 41888) -.webcams.com -# ||wantlive.com/landing/$popup (easylistchina+easylist.txt: 41887) -.wantlive.com/landing/ -# ||vs3.com^$popup,third-party (easylistchina+easylist.txt: 41886) -.vs3.com -# ||visit-x.net/cams/*.html?*&s=*&ws=$popup,third-party (easylistchina+easylist.txt: 41885) -.visit-x.net/cams/.*\.html\?.*&s=.*&ws= -# ||videosz.com^*&tracker_id=$popup,third-party (easylistchina+easylist.txt: 41884) -.videosz.com/.*&tracker_id= -# ||videosz.com/search.php$popup,third-party (easylistchina+easylist.txt: 41883) -.videosz.com/search\.php -# ||videobox.com/tour/$popup (easylistchina+easylist.txt: 41882) -.videobox.com/tour/ -# ||videobox.com/?tid=$popup (easylistchina+easylist.txt: 41881) -.videobox.com/\?tid= -# ||upforit.com/ext.php$popup (easylistchina+easylist.txt: 41880) -.upforit.com/ext\.php -# ||twistys.com/track/$popup,third-party (easylistchina+easylist.txt: 41879) -.twistys.com/track/ -# ||tube911.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylistchina+easylist.txt: 41878) -.tube911.com/scj/cgi/out\.php\?scheme_id= -# ||tour.mrskin.com^$popup,third-party (easylistchina+easylist.txt: 41877) -.tour.mrskin.com -# ||topbucks.com/popunder/$popup (easylistchina+easylist.txt: 41876) -.topbucks.com/popunder/ -# ||textad.sexsearch.com^$popup (easylistchina+easylist.txt: 41875) -.textad.sexsearch.com -# ||teenslikeitbig.com/track/$popup,third-party (easylistchina+easylist.txt: 41874) -.teenslikeitbig.com/track/ -# ||streamate.com/landing/$popup (easylistchina+easylist.txt: 41873) -.streamate.com/landing/ -# ||socialflirt.com/go/$popup,third-party (easylistchina+easylist.txt: 41872) -.socialflirt.com/go/ -# ||sexsearchcom.com^$popup,third-party (easylistchina+easylist.txt: 41871) -.sexsearchcom.com -# ||sexier.com^*_popunder&$popup (easylistchina+easylist.txt: 41870) -.sexier.com/.*_popunder& -# ||sexier.com/services/adsredirect.ashx?$popup,third-party (easylistchina+easylist.txt: 41869) -.sexier.com/services/adsredirect\.ashx\? -# ||sex.com/popunder/$popup (easylistchina+easylist.txt: 41868) -.sex.com/popunder/ -# ||seeme.com^*?aid=*&art=$popup (easylistchina+easylist.txt: 41867) -.seeme.com/.*\?aid=.*&art= -# ||seekbang.com/cs/rotator/$popup (easylistchina+easylist.txt: 41866) -.seekbang.com/cs/rotator/ -# ||rudefinder.com/?$popup,third-party (easylistchina+easylist.txt: 41865) -.rudefinder.com/\? -# ||redtube.com/bid/$popup (easylistchina+easylist.txt: 41864) -.redtube.com/bid/ -# ||redlightcenter.com/?trq=$popup,third-party (easylistchina+easylist.txt: 41863) -.redlightcenter.com/\?trq= -# ||postselfies.com^*?nats=$popup,third-party (easylistchina+easylist.txt: 41862) -.postselfies.com/.*\?nats= -# ||pornslash.com/cbp.php$popup (easylistchina+easylist.txt: 41861) -.pornslash.com/cbp\.php -# ||pornoh.info^$popup (easylistchina+easylist.txt: 41860) -.pornoh.info -# ||porno-onlain.info/top.php$popup (easylistchina+easylist.txt: 41859) -.porno-onlain.info/top\.php -# ||pornme.com^*.php?ref=$popup,third-party (easylistchina+easylist.txt: 41858) -.pornme.com/.*\.php\?ref= -# ||pornhub.com^*&utm_campaign=*-pop|$popup (easylistchina+easylist.txt: 41857) -.pornhub.com/.*&utm_campaign=.*-pop$ -# ||pomnach.ru^$popup (easylistchina+easylist.txt: 41856) -.pomnach.ru -# ||online.mydirtyhobby.com^*?naff=$popup,third-party (easylistchina+easylist.txt: 41855) -.online.mydirtyhobby.com/.*\?naff= -# ||myfreecams.com/?co_id=$popup (easylistchina+easylist.txt: 41854) -.myfreecams.com/\?co_id= -# ||mydirtyhobby.com/?$popup,third-party (easylistchina+easylist.txt: 41853) -.mydirtyhobby.com/\? -# ||mjtlive.com/exports/golive/?lp=*&afno=$popup,third-party (easylistchina+easylist.txt: 41852) -.mjtlive.com/exports/golive/\?lp=.*&afno= -# ||meetlocals.com^*popunder$popup (easylistchina+easylist.txt: 41851) -.meetlocals.com/.*popunder -# ||media.campartner.com^*?cp=$popup,third-party (easylistchina+easylist.txt: 41850) -.media.campartner.com/.*\?cp= -# ||media.campartner.com/index.php?cpID=*&cpMID=$popup,third-party (easylistchina+easylist.txt: 41849) -.media.campartner.com/index\.php\?cpID=.*&cpMID= -# ||livejasmin.com^$popup,third-party (easylistchina+easylist.txt: 41848) -.livejasmin.com -# ||livecams.com^$popup (easylistchina+easylist.txt: 41847) -.livecams.com -# ||linkfame.com^*/go.php?$popup,third-party (easylistchina+easylist.txt: 41846) -.linkfame.com/.*/go\.php\? -# ||letstryanal.com/track/$popup,third-party (easylistchina+easylist.txt: 41845) -.letstryanal.com/track/ -# ||judgeporn.com/video_pop.php?$popup (easylistchina+easylist.txt: 41844) -.judgeporn.com/video_pop\.php\? -# ||join.whitegfs.com^$popup (easylistchina+easylist.txt: 41843) -.join.whitegfs.com -# ||join.teamskeet.com/track/$popup,third-party (easylistchina+easylist.txt: 41842) -.join.teamskeet.com/track/ -# ||join.filthydatez.com^$popup,third-party (easylistchina+easylist.txt: 41841) -.join.filthydatez.com -# ||jasmin.com^$popup,third-party (easylistchina+easylist.txt: 41840) -.jasmin.com -# ||ipornia.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylistchina+easylist.txt: 41839) -.ipornia.com/scj/cgi/out\.php\?scheme_id= -# ||imlive.com/wmaster.ashx?$popup,third-party (easylistchina+easylist.txt: 41838) -.imlive.com/wmaster\.ashx\? -# ||icgirls.com^$popup (easylistchina+easylist.txt: 41837) -.icgirls.com -# ||hqtubevideos.com/play.html$popup,third-party (easylistchina+easylist.txt: 41836) -.hqtubevideos.com/play\.html -# ||hazeher.com/t1/pps$popup (easylistchina+easylist.txt: 41835) -.hazeher.com/t1/pps -# ||get-a-fuck-tonight.com^$popup (easylistchina+easylist.txt: 41834) -.get-a-fuck-tonight.com -# ||fucktapes.org/fucktube.htm$popup (easylistchina+easylist.txt: 41833) -.fucktapes.org/fucktube\.htm -# ||fuckshow.org^*&adr=$popup (easylistchina+easylist.txt: 41832) -.fuckshow.org/.*&adr= -# ||fuckbooknet.net/dating/$popup,third-party (easylistchina+easylist.txt: 41831) -.fuckbooknet.net/dating/ -# ||fuckbookhookups.com/go/$popup (easylistchina+easylist.txt: 41830) -.fuckbookhookups.com/go/ -# ||flirt4free.com/_special/pops/$popup,third-party (easylistchina+easylist.txt: 41829) -.flirt4free.com/_special/pops/ -# ||fling.com/enter.php?$popup (easylistchina+easylist.txt: 41828) -.fling.com/enter\.php\? -# ||fleshlight-international.eu^*?link=$popup,third-party (easylistchina+easylist.txt: 41827) -.fleshlight-international.eu/.*\?link= -# ||fantasti.cc/ajax/gw.php?$popup (easylistchina+easylist.txt: 41826) -.fantasti.cc/ajax/gw\.php\? -# ||extremefuse.com/out.php?$popup (easylistchina+easylist.txt: 41825) -.extremefuse.com/out\.php\? -# ||ext.affaire.com^$popup (easylistchina+easylist.txt: 41824) -.ext.affaire.com -# ||exposedwebcams.com/?token=$popup,third-party (easylistchina+easylist.txt: 41823) -.exposedwebcams.com/\?token= -# ||epornerlive.com/index.php?*=punder$popup (easylistchina+easylist.txt: 41822) -.epornerlive.com/index\.php\?.*=punder -# ||devilsfilm.com/track/go.php?$popup,third-party (easylistchina+easylist.txt: 41821) -.devilsfilm.com/track/go\.php\? -# ||cpm.amateurcommunity.*?cp=$popup,third-party (easylistchina+easylist.txt: 41820) -.cpm.amateurcommunity.*./.*\?cp= -# ||chaturbate.com/sitestats/openwindow/$popup (easylistchina+easylist.txt: 41819) -.chaturbate.com/sitestats/openwindow/ -# ||chaturbate.com/*/?join_overlay=$popup (easylistchina+easylist.txt: 41818) -.chaturbate.com/.*/\?join_overlay= -# ||candidvoyeurism.com/ads/$popup (easylistchina+easylist.txt: 41817) -.candidvoyeurism.com/ads/ -# ||camcity.com/rtr.php?aid=$popup (easylistchina+easylist.txt: 41816) -.camcity.com/rtr\.php\?aid= -# ||cam4.com/?$popup (easylistchina+easylist.txt: 41815) -.cam4.com/\? -# ||benaughty.com/aff.php?$popup,third-party (easylistchina+easylist.txt: 41814) -.benaughty.com/aff\.php\? -# ||babecams.net/landing/$popup,third-party (easylistchina+easylist.txt: 41812) -.babecams.net/landing/ -# ||amarotic.com^*?wmid=$popup,third-party (easylistchina+easylist.txt: 41811) -.amarotic.com/.*\?wmid= -# ||amarotic.com/?$popup,third-party (easylistchina+easylist.txt: 41810) -.amarotic.com/\? -# ||adultfriendfinder.com/go/$popup,third-party (easylistchina+easylist.txt: 41809) -.adultfriendfinder.com/go/ -# ||adultfriendfinder.com/banners/$popup,third-party (easylistchina+easylist.txt: 41808) -.adultfriendfinder.com/banners/ -# ||777livecams.com/?id=$popup,third-party (easylistchina+easylist.txt: 41807) -.777livecams.com/\?id= -# ||21sextury.com^$popup (easylistchina+easylist.txt: 41806) -.21sextury.com -# ||1800freecams.com^$popup,third-party (easylistchina+easylist.txt: 41805) -.1800freecams.com -# ||zubehost.com/*?zoneid= (easylistchina+easylist.txt: 41803) -.zubehost.com/.*\?zoneid= -# ||ztod.com/iframe/third/$subdocument (easylistchina+easylist.txt: 41802) -.ztod.com/iframe/third/ -# ||ztod.com/flash/wall*.swf (easylistchina+easylist.txt: 41801) -.ztod.com/flash/wall.*\.swf -# ||yplf.com/ram/files/sponsors/ (easylistchina+easylist.txt: 41800) -.yplf.com/ram/files/sponsors/ -# ||youfck.com^*/adawe.swf (easylistchina+easylist.txt: 41799) -.youfck.com/.*/adawe\.swf -# ||xxxoh.com/number/$third-party (easylistchina+easylist.txt: 41798) -.xxxoh.com/number/ -# ||xxtu.be^$subdocument,third-party (easylistchina+easylist.txt: 41797) -.xxtu.be -# ||xtrasize.pl/banner/ (easylistchina+easylist.txt: 41796) -.xtrasize.pl/banner/ -# ||xnxx.com^$third-party (easylistchina+easylist.txt: 41795) -.xnxx.com -# ||xlgirls.com/banner/$third-party (easylistchina+easylist.txt: 41794) -.xlgirls.com/banner/ -# ||xcabin.net/b/$third-party (easylistchina+easylist.txt: 41793) -.xcabin.net/b/ -# ||winkit.info/wink2.js (easylistchina+easylist.txt: 41792) -.winkit.info/wink2\.js -# ||widgetssec.cam-content.com^ (easylistchina+easylist.txt: 41791) -.widgetssec.cam-content.com -# ||widgets.comcontent.net^ (easylistchina+easylist.txt: 41790) -.widgets.comcontent.net -# ||wetandpuffy.com/galleries/banners/ (easylistchina+easylist.txt: 41789) -.wetandpuffy.com/galleries/banners/ -# ||wendi.com/ipt/$third-party (easylistchina+easylist.txt: 41788) -.wendi.com/ipt/ -# ||webmaster.erotik.com^$third-party (easylistchina+easylist.txt: 41787) -.webmaster.erotik.com -# ||webcams.com/misc/iframes_new/ (easylistchina+easylist.txt: 41786) -.webcams.com/misc/iframes_new/ -# ||webcams.com/js/im_popup.php? (easylistchina+easylist.txt: 41785) -.webcams.com/js/im_popup\.php\? -# ||watchmygf.com/preview/$third-party (easylistchina+easylist.txt: 41784) -.watchmygf.com/preview/ -# ||wafflegirl.com/galleries/banner/ (easylistchina+easylist.txt: 41783) -.wafflegirl.com/galleries/banner/ -# ||vzzk.com/uploads/banners/$third-party (easylistchina+easylist.txt: 41782) -.vzzk.com/uploads/banners/ -# ||vserv.bc.cdn.bitgravity.com^$third-party (easylistchina+easylist.txt: 41781) -.vserv.bc.cdn.bitgravity.com -# ||vs3.com/_special/banners/ (easylistchina+easylist.txt: 41780) -.vs3.com/_special/banners/ -# ||vodconcepts.com^*/banners/ (easylistchina+easylist.txt: 41779) -.vodconcepts.com/.*/banners/ -# ||visit-x.net/promo/$third-party (easylistchina+easylist.txt: 41778) -.visit-x.net/promo/ -# ||virtualhottie2.com/cash/tools/banners/ (easylistchina+easylist.txt: 41777) -.virtualhottie2.com/cash/tools/banners/ -# ||viorotica.com^*/banners/ (easylistchina+easylist.txt: 41776) -.viorotica.com/.*/banners/ -# ||vigrax.pl/banner/ (easylistchina+easylist.txt: 41775) -.vigrax.pl/banner/ -# ||vidz.com/promo_banner/$third-party (easylistchina+easylist.txt: 41774) -.vidz.com/promo_banner/ -# ||vectorpastel.com^$third-party (easylistchina+easylist.txt: 41773) -.vectorpastel.com -# ||uramov.info/wav/wavideo.html (easylistchina+easylist.txt: 41771) -.uramov.info/wav/wavideo\.html -# ||upsellit.com/custom/$third-party (easylistchina+easylist.txt: 41770) -.upsellit.com/custom/ -# ||updatetube.com/updatetube_html/ (easylistchina+easylist.txt: 41769) -.updatetube.com/updatetube_html/ -# ||updatetube.com/iframes/ (easylistchina+easylist.txt: 41768) -.updatetube.com/iframes/ -# ||twilightsex.com^$subdocument,third-party (easylistchina+easylist.txt: 41767) -.twilightsex.com -# ||twiant.com/img/banners/ (easylistchina+easylist.txt: 41766) -.twiant.com/img/banners/ -# ||turbolovervidz.com/fling/ (easylistchina+easylist.txt: 41765) -.turbolovervidz.com/fling/ -# ||tubefck.com^*/adawe.swf (easylistchina+easylist.txt: 41763) -.tubefck.com/.*/adawe\.swf -# ||ts.videosz.com/iframes/ (easylistchina+easylist.txt: 41762) -.ts.videosz.com/iframes/ -# ||trader.erosdlz.com^$third-party (easylistchina+easylist.txt: 41761) -.trader.erosdlz.com -# ||track.xtrasize.nl^$third-party (easylistchina+easylist.txt: 41760) -.track.xtrasize.nl -# ||tours.imlive.com^$third-party (easylistchina+easylist.txt: 41759) -.tours.imlive.com -# ||tour.cum-covered-gfs.com^$third-party (easylistchina+easylist.txt: 41758) -.tour.cum-covered-gfs.com -# ||tools.gfcash.com^$third-party (easylistchina+easylist.txt: 41757) -.tools.gfcash.com -# ||tools.bongacams.com^$third-party (easylistchina+easylist.txt: 41756) -.tools.bongacams.com -# ||tlavideo.com/affiliates/$third-party (easylistchina+easylist.txt: 41755) -.tlavideo.com/affiliates/ -# ||thumbs.vstreamcdn.com^*/slider.html (easylistchina+easylist.txt: 41754) -.thumbs.vstreamcdn.com/.*/slider\.html -# ||thumbs.sunporno.com^$third-party (easylistchina+easylist.txt: 41753) -.thumbs.sunporno.com -# ||thrixxx.com/scripts/show_banner.php? (easylistchina+easylist.txt: 41752) -.thrixxx.com/scripts/show_banner\.php\? -# ||thrixxx.com/affiliates/$image (easylistchina+easylist.txt: 41751) -.thrixxx.com/affiliates/ -# ||teendaporn.com/rk.js (easylistchina+easylist.txt: 41750) -.teendaporn.com/rk\.js -# ||target.vivid.com^$third-party (easylistchina+easylist.txt: 41749) -.target.vivid.com -# ||swurve.com/affiliates/ (easylistchina+easylist.txt: 41748) -.swurve.com/affiliates/ -# ||sweet.game-rust.ru^ (easylistchina+easylist.txt: 41747) -.sweet.game-rust.ru -# ||surv.xbizmedia.com^ (easylistchina+easylist.txt: 41746) -.surv.xbizmedia.com -# ||streamray.com/images/cams/flash/cams_live.swf (easylistchina+easylist.txt: 41745) -.streamray.com/images/cams/flash/cams_live\.swf -# ||streamen.com/exports/$third-party (easylistchina+easylist.txt: 41744) -.streamen.com/exports/ -# ||steadybucks.com^*/banners/ (easylistchina+easylist.txt: 41743) -.steadybucks.com/.*/banners/ -# ||sponsor4cash.de/script/ (easylistchina+easylist.txt: 41742) -.sponsor4cash.de/script/ -# ||spacash.com/tools/peel/ (easylistchina+easylist.txt: 41741) -.spacash.com/tools/peel/ -# ||spacash.com/popup/$third-party (easylistchina+easylist.txt: 41740) -.spacash.com/popup/ -# ||spacash.com//v2bannerview.php? (easylistchina+easylist.txt: 41739) -# ||snrcash.com/profilerotator/$third-party (easylistchina+easylist.txt: 41738) -.snrcash.com/profilerotator/ -# ||smyw.org/smyw_anima_1.gif (easylistchina+easylist.txt: 41737) -.smyw.org/smyw_anima_1\.gif -# ||smartmovies.net/promo_$third-party (easylistchina+easylist.txt: 41736) -.smartmovies.net/promo_ -# ||slickcash.com/flash/subtitles_$third-party (easylistchina+easylist.txt: 41735) -.slickcash.com/flash/subtitles_ -# ||sleepgalleries.com/recips/$third-party (easylistchina+easylist.txt: 41734) -.sleepgalleries.com/recips/ -# ||simonscans.com/banner/ (easylistchina+easylist.txt: 41733) -.simonscans.com/banner/ -# ||shinypics.com/blogbanner/$third-party (easylistchina+easylist.txt: 41732) -.shinypics.com/blogbanner/ -# ||shemalenova.com/smn/banners/ (easylistchina+easylist.txt: 41731) -.shemalenova.com/smn/banners/ -# ||shemale.asia/sma/banners/ (easylistchina+easylist.txt: 41730) -.shemale.asia/sma/banners/ -# ||shared.juicybucks.com^$third-party (easylistchina+easylist.txt: 41729) -.shared.juicybucks.com -# ||share-image.com/borky/ (easylistchina+easylist.txt: 41728) -.share-image.com/borky/ -# ||sexycams.com/exports/$third-party (easylistchina+easylist.txt: 41727) -.sexycams.com/exports/ -# ||sexy.fling.com^$third-party (easylistchina+easylist.txt: 41726) -.sexy.fling.com -# ||sextubepromo.com/ubr/ (easylistchina+easylist.txt: 41725) -.sextubepromo.com/ubr/ -# ||sextronix.com/images/$third-party (easylistchina+easylist.txt: 41724) -.sextronix.com/images/ -# ||sextronix.com/b/$third-party (easylistchina+easylist.txt: 41723) -.sextronix.com/b/ -# ||sextronix.*.cdnaccess.com^ (easylistchina+easylist.txt: 41722) -.sextronix.*./.*\.cdnaccess\.com[^\w%.-] -.sextronix.*.cdnaccess.com -# ||sexgangsters.com/sg-banners/ (easylistchina+easylist.txt: 41721) -.sexgangsters.com/sg-banners/ -# ||server140.com^$third-party (easylistchina+easylist.txt: 41720) -.server140.com -# ||screencapturewidget.aebn.net^$third-party (easylistchina+easylist.txt: 41719) -.screencapturewidget.aebn.net -# ||scoreland.com/banner/ (easylistchina+easylist.txt: 41718) -.scoreland.com/banner/ -# ||sakuralive.com/dynamicbanner/ (easylistchina+easylist.txt: 41717) -.sakuralive.com/dynamicbanner/ -# ||sadtube.com/chat/$script (easylistchina+easylist.txt: 41716) -.sadtube.com/chat/ -# ||saboom.com.pccdn.com^*/banner/ (easylistchina+easylist.txt: 41715) -.saboom.com.pccdn.com/.*/banner/ -# ||sabin.free.fr^$third-party (easylistchina+easylist.txt: 41714) -.sabin.free.fr -# ||s1magnettvcom.maynemyltf.netdna-cdn.com^ (easylistchina+easylist.txt: 41713) -.s1magnettvcom.maynemyltf.netdna-cdn.com -# ||russkoexxx.com/ban/$third-party (easylistchina+easylist.txt: 41712) -.russkoexxx.com/ban/ -# ||ruscams.com/promo/ (easylistchina+easylist.txt: 41711) -.ruscams.com/promo/ -# ||ruleclaim.web.fc2.com^$third-party (easylistchina+easylist.txt: 41710) -.ruleclaim.web.fc2.com -# ||rss.dtiserv.com^$third-party (easylistchina+easylist.txt: 41709) -.rss.dtiserv.com -# ||rough-sex-in-russia.com^*/webmaster/$third-party (easylistchina+easylist.txt: 41708) -.rough-sex-in-russia.com/.*/webmaster/ -# ||rotci.com/images/rotcibanner.png (easylistchina+easylist.txt: 41707) -.rotci.com/images/rotcibanner\.png -# ||rexcams.com/misc/iframes_new/ (easylistchina+easylist.txt: 41706) -.rexcams.com/misc/iframes_new/ -# ||resimler.randevum.com^$third-party (easylistchina+easylist.txt: 41705) -.resimler.randevum.com -# ||red-tube.com/dynbanner.php? (easylistchina+easylist.txt: 41704) -.red-tube.com/dynbanner\.php\? -# ||realitykings.com/vbanners/ (easylistchina+easylist.txt: 41703) -.realitykings.com/vbanners/ -# ||rawtubelive.com/exports/$third-party (easylistchina+easylist.txt: 41702) -.rawtubelive.com/exports/ -# ||rabbitporno.com/iframes/$third-party (easylistchina+easylist.txt: 41701) -.rabbitporno.com/iframes/ -# ||rabbitporno.com/friends/ (easylistchina+easylist.txt: 41700) -.rabbitporno.com/friends/ -# ||putana.cz/banners/ (easylistchina+easylist.txt: 41699) -.putana.cz/banners/ -# ||pussycash.com/content/banners/$third-party (easylistchina+easylist.txt: 41698) -.pussycash.com/content/banners/ -# ||punterlink.co.uk/images/storage/siteban$third-party (easylistchina+easylist.txt: 41697) -.punterlink.co.uk/images/storage/siteban -# ||ptcdn.mbicash.nl^$third-party (easylistchina+easylist.txt: 41696) -.ptcdn.mbicash.nl -# ||propbn.com/bonga/ (easylistchina+easylist.txt: 41695) -.propbn.com/bonga/ -# ||promos.wealthymen.com^$third-party (easylistchina+easylist.txt: 41694) -.promos.wealthymen.com -# ||promos.meetlocals.com^$third-party (easylistchina+easylist.txt: 41693) -.promos.meetlocals.com -# ||promos.gpniches.com^$third-party (easylistchina+easylist.txt: 41692) -.promos.gpniches.com -# ||promo1.webcams.nl^$third-party (easylistchina+easylist.txt: 41691) -.promo1.webcams.nl -# ||promo.pegcweb.com^$third-party (easylistchina+easylist.txt: 41690) -.promo.pegcweb.com -# ||promo.cams.com^$third-party (easylistchina+easylist.txt: 41689) -.promo.cams.com -# ||promo.blackcrush.com^$third-party (easylistchina+easylist.txt: 41688) -.promo.blackcrush.com -# ||profile.bharatmatrimony.com^$third-party (easylistchina+easylist.txt: 41687) -.profile.bharatmatrimony.com -# ||privatehomeclips.com/privatehomeclips.php?t_sid= (easylistchina+easylist.txt: 41686) -.privatehomeclips.com/privatehomeclips\.php\?t_sid= -# ||private.com/banner/ (easylistchina+easylist.txt: 41685) -.private.com/banner/ -# ||private.camz.$third-party (easylistchina+easylist.txt: 41684) -.private.camz.*. -# ||privatamateure.com/promotion/ (easylistchina+easylist.txt: 41683) -.privatamateure.com/promotion/ -# ||prettyincash.com/premade/$third-party (easylistchina+easylist.txt: 41681) -.prettyincash.com/premade/ -# ||potd.onlytease.com^$third-party (easylistchina+easylist.txt: 41680) -.potd.onlytease.com -# ||pornturbo.com^*.php?*&cmp=$subdocument,third-party (easylistchina+easylist.txt: 41679) -.pornturbo.com/.*\.php\?.*&cmp= -# ||pornturbo.com/*.php?g=$subdocument,third-party (easylistchina+easylist.txt: 41678) -.pornturbo.com/.*\.php\?g= -# ||pornstarnetwork.com^*_660x70.jpg (easylistchina+easylist.txt: 41677) -.pornstarnetwork.com/.*_660x70\.jpg -# ||pornravage.com/notification/$third-party (easylistchina+easylist.txt: 41676) -.pornravage.com/notification/ -# ||pornoh.info^$image,third-party (easylistchina+easylist.txt: 41675) -.pornoh.info -# ||pornhubpremium.com/relatedpremium/$subdocument,third-party (easylistchina+easylist.txt: 41674) -.pornhubpremium.com/relatedpremium/ -# ||porndeals.com^$subdocument,third-party (easylistchina+easylist.txt: 41673) -.porndeals.com -# ||porn2blog.com/wp-content/banners/ (easylistchina+easylist.txt: 41672) -.porn2blog.com/wp-content/banners/ -# ||pop6.com/javascript/im_box-*.js (easylistchina+easylist.txt: 41671) -.pop6.com/javascript/im_box-.*\.js -# ||pop6.com/banners/$third-party (easylistchina+easylist.txt: 41670) -.pop6.com/banners/ -# ||pop6.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41669) -.pop6.adultfriendfinder.com -# ||pod.xpress.com^$third-party (easylistchina+easylist.txt: 41668) -.pod.xpress.com -# ||pod.manplay.com^$third-party (easylistchina+easylist.txt: 41667) -.pod.manplay.com -# ||plugin-x.com/rotaban/ (easylistchina+easylist.txt: 41666) -.plugin-x.com/rotaban/ -# ||pinkvisualgames.com/?revid=$third-party (easylistchina+easylist.txt: 41665) -.pinkvisualgames.com/\?revid= -# ||pcash.globalmailer5.com^$third-party (easylistchina+easylist.txt: 41664) -.pcash.globalmailer5.com -# ||paydir.com/images/bnr (easylistchina+easylist.txt: 41663) -.paydir.com/images/bnr -# ||partners.yobt.tv^$third-party (easylistchina+easylist.txt: 41662) -.partners.yobt.tv -# ||partners.yobt.com^$third-party (easylistchina+easylist.txt: 41661) -.partners.yobt.com -# ||partners.pornerbros.com^ (easylistchina+easylist.txt: 41660) -.partners.pornerbros.com -# ||partners.heart2heartnetwork.$third-party (easylistchina+easylist.txt: 41659) -.partners.heart2heartnetwork.*. -# ||partner.loveplanet.ru^$third-party (easylistchina+easylist.txt: 41658) -.partner.loveplanet.ru -# ||outils.f5biz.com^$third-party (easylistchina+easylist.txt: 41657) -.outils.f5biz.com -# ||otcash.com/images/$third-party (easylistchina+easylist.txt: 41656) -.otcash.com/images/ -# ||orgasmtube.com/js/superP/ (easylistchina+easylist.txt: 41655) -.orgasmtube.com/js/superP/ -# ||openadultdirectory.com/banner-$third-party (easylistchina+easylist.txt: 41654) -.openadultdirectory.com/banner- -# ||odnidoma.com/ban/$third-party (easylistchina+easylist.txt: 41653) -.odnidoma.com/ban/ -# ||nuvidp.com^$third-party (easylistchina+easylist.txt: 41652) -.nuvidp.com -# ||nudemix.com/widget/ (easylistchina+easylist.txt: 41651) -.nudemix.com/widget/ -# ||nude.hu/html/$third-party (easylistchina+easylist.txt: 41650) -.nude.hu/html/ -# ||nubiles.net/webmasters/promo/$third-party (easylistchina+easylist.txt: 41649) -.nubiles.net/webmasters/promo/ -# ||netvideogirls.com/adultfyi.jpg (easylistchina+easylist.txt: 41648) -.netvideogirls.com/adultfyi\.jpg -# ||naughtycdn.com/public/iframes/$third-party (easylistchina+easylist.txt: 41647) -.naughtycdn.com/public/iframes/ -# ||natuko-miracle.com/banner/$third-party (easylistchina+easylist.txt: 41646) -.natuko-miracle.com/banner/ -# ||nakedshygirls.com/bannerimg/ (easylistchina+easylist.txt: 41645) -.nakedshygirls.com/bannerimg/ -# ||naked.com/promos/$third-party (easylistchina+easylist.txt: 41644) -.naked.com/promos/ -# ||mysexjourney.com/revenue/$third-party (easylistchina+easylist.txt: 41643) -.mysexjourney.com/revenue/ -# ||mykocam.com/js/feeds.js$third-party (easylistchina+easylist.txt: 41642) -.mykocam.com/js/feeds\.js -# ||myfreakygf.com/www/click/$third-party (easylistchina+easylist.txt: 41641) -.myfreakygf.com/www/click/ -# ||myexposedgirlfriendz.com/pop/popuprk.js (easylistchina+easylist.txt: 41640) -.myexposedgirlfriendz.com/pop/popuprk\.js -# ||myexposedgirlfriendz.com/pop/popuppp.js (easylistchina+easylist.txt: 41639) -.myexposedgirlfriendz.com/pop/popuppp\.js -# ||mycams.com/freechat.php?$third-party (easylistchina+easylist.txt: 41638) -.mycams.com/freechat\.php\? -# ||my-dirty-hobby.com/?sub=$third-party (easylistchina+easylist.txt: 41637) -.my-dirty-hobby.com/\?sub= -# ||ms.wsex.com^$third-party (easylistchina+easylist.txt: 41636) -.ms.wsex.com -# ||mrvids.com/network/$third-party (easylistchina+easylist.txt: 41635) -.mrvids.com/network/ -# ||mrskincdn.com^*/flash/aff/$third-party (easylistchina+easylist.txt: 41634) -.mrskincdn.com/.*/flash/aff/ -# ||mrskin.com/affiliateframe/ (easylistchina+easylist.txt: 41633) -.mrskin.com/affiliateframe/ -# ||movies.spacash.com^*&th=180x135$script (easylistchina+easylist.txt: 41632) -.movies.spacash.com/.*&th=180x135 -# ||mofomedia.nl/pop-*.js (easylistchina+easylist.txt: 41631) -.mofomedia.nl/pop-.*\.js -# ||metartmoney.met-art.com^$third-party (easylistchina+easylist.txt: 41630) -.metartmoney.met-art.com -# ||metartmoney.com^$third-party (easylistchina+easylist.txt: 41629) -.metartmoney.com -# ||megacash.warpnet.com.br^$third-party (easylistchina+easylist.txt: 41628) -.megacash.warpnet.com.br -# ||media.pussycash.com^$third-party (easylistchina+easylist.txt: 41627) -.media.pussycash.com -# ||media.mykodial.com^$third-party (easylistchina+easylist.txt: 41626) -.media.mykodial.com -# ||media.mykocam.com^$third-party (easylistchina+easylist.txt: 41625) -.media.mykocam.com -# ||media.match.com^$third-party (easylistchina+easylist.txt: 41624) -.media.match.com -# ||media.eurolive.com^$third-party (easylistchina+easylist.txt: 41623) -.media.eurolive.com -# ||match.com/landing/$third-party (easylistchina+easylist.txt: 41622) -.match.com/landing/ -# ||map.pop6.com^$third-party (easylistchina+easylist.txt: 41621) -.map.pop6.com -# ||manhunt.net/?dm=$third-party (easylistchina+easylist.txt: 41620) -.manhunt.net/\?dm= -# ||manager.koocash.fr^$third-party (easylistchina+easylist.txt: 41619) -.manager.koocash.fr -# ||magazine-empire.com/images/pornstarad.jpg (easylistchina+easylist.txt: 41618) -.magazine-empire.com/images/pornstarad\.jpg -# ||loveme.com^$third-party (easylistchina+easylist.txt: 41617) -.loveme.com -# ||longmint.com/lm/banners/ (easylistchina+easylist.txt: 41616) -.longmint.com/lm/banners/ -# ||llnwd.net^*/takeover_ (easylistchina+easylist.txt: 41615) -.llnwd.net/.*/takeover_ -# ||livesexasian.com^$subdocument,third-party (easylistchina+easylist.txt: 41614) -.livesexasian.com -# ||links.freeones.com^$third-party (easylistchina+easylist.txt: 41612) -.links.freeones.com -# ||lb-69.com/pics/ (easylistchina+easylist.txt: 41611) -.lb-69.com/pics/ -# ||layers.spacash.com^$third-party (easylistchina+easylist.txt: 41610) -.layers.spacash.com -# ||latinteencash.com/potd/$third-party (easylistchina+easylist.txt: 41609) -.latinteencash.com/potd/ -# ||ladyboygoo.com/lbg/banners/ (easylistchina+easylist.txt: 41608) -.ladyboygoo.com/lbg/banners/ -# ||lacyx.com/images/banners/ (easylistchina+easylist.txt: 41607) -.lacyx.com/images/banners/ -# ||kuntfutube.com/bgbb.gif (easylistchina+easylist.txt: 41606) -.kuntfutube.com/bgbb\.gif -# ||kenny-glenn.net^*/longbanner_$third-party (easylistchina+easylist.txt: 41605) -.kenny-glenn.net/.*/longbanner_ -# ||kau.li/yad.js (easylistchina+easylist.txt: 41604) -.kau.li/yad\.js -# ||justcutegirls.com/banners/$third-party (easylistchina+easylist.txt: 41603) -.justcutegirls.com/banners/ -# ||just-nude.com/images/ban_$third-party (easylistchina+easylist.txt: 41602) -.just-nude.com/images/ban_ -# ||js.picsomania.info^$third-party (easylistchina+easylist.txt: 41601) -.js.picsomania.info -# ||ivitrine.buscape.com^$third-party (easylistchina+easylist.txt: 41600) -.ivitrine.buscape.com -# ||interracialbangblog.info^*-ban.png (easylistchina+easylist.txt: 41599) -.interracialbangblog.info/.*-ban\.png -# ||interracialbangblog.info/banner.jpg (easylistchina+easylist.txt: 41598) -.interracialbangblog.info/banner\.jpg -# ||imageteam.org/upload/big/2014/06/22/53a7181b378cb.png (easylistchina+easylist.txt: 41597) -.imageteam.org/upload/big/2014/06/22/53a7181b378cb\.png -# ||images.elenasmodels.com/Upload/$third-party (easylistchina+easylist.txt: 41596) -.images.elenasmodels.com/Upload/ -# ||image.nsk-sys.com^$third-party (easylistchina+easylist.txt: 41595) -.image.nsk-sys.com -# ||image.cecash.com^$third-party (easylistchina+easylist.txt: 41594) -.image.cecash.com -# ||ihookup.com/configcreatives/ (easylistchina+easylist.txt: 41593) -.ihookup.com/configcreatives/ -# ||ifriends.net^$subdocument,third-party (easylistchina+easylist.txt: 41592) -.ifriends.net -# ||iframes.hustler.com^$third-party (easylistchina+easylist.txt: 41591) -.iframes.hustler.com -# ||iframe.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41590) -.iframe.adultfriendfinder.com -# ||hotsocialz.com^$third-party (easylistchina+easylist.txt: 41589) -.hotsocialz.com -# ||hotmovies.com/custom_videos.php? (easylistchina+easylist.txt: 41588) -.hotmovies.com/custom_videos\.php\? -# ||hotkinkyjo.xxx/resseler/banners/ (easylistchina+easylist.txt: 41587) -.hotkinkyjo.xxx/resseler/banners/ -# ||hotcaracum.com/banner/ (easylistchina+easylist.txt: 41586) -.hotcaracum.com/banner/ -# ||hosting24.com/images/banners/$third-party (easylistchina+easylist.txt: 41585) -.hosting24.com/images/banners/ -# ||hosted.x-art.com/potd$third-party (easylistchina+easylist.txt: 41584) -.hosted.x-art.com/potd -# ||hostave3.net/hvw/banners/ (easylistchina+easylist.txt: 41583) -.hostave3.net/hvw/banners/ -# ||hornypharaoh.com/banner_$third-party (easylistchina+easylist.txt: 41582) -.hornypharaoh.com/banner_ -# ||hornybirds.com^$subdocument,third-party (easylistchina+easylist.txt: 41581) -.hornybirds.com -# ||homoactive.tv/banner/ (easylistchina+easylist.txt: 41580) -.homoactive.tv/banner/ -# ||hodun.ru/files/promo/ (easylistchina+easylist.txt: 41579) -.hodun.ru/files/promo/ -# ||highrollercams.com/widgets/$third-party (easylistchina+easylist.txt: 41578) -.highrollercams.com/widgets/ -# ||hentaikey.com/images/banners/ (easylistchina+easylist.txt: 41577) -.hentaikey.com/images/banners/ -# ||hentaijunkie.com^*/banners/ (easylistchina+easylist.txt: 41576) -.hentaijunkie.com/.*/banners/ -# ||hdpornphotos.com/images/banner_ (easylistchina+easylist.txt: 41575) -.hdpornphotos.com/images/banner_ -# ||hdpornphotos.com/images/728x180_ (easylistchina+easylist.txt: 41574) -.hdpornphotos.com/images/728x180_ -# ||hardcoresexnow.com^$subdocument,third-party (easylistchina+easylist.txt: 41573) -.hardcoresexnow.com -# ||hardbritlads.com/banner/ (easylistchina+easylist.txt: 41572) -.hardbritlads.com/banner/ -# ||graphics.streamray.com^*/cams_live.swf$third-party (easylistchina+easylist.txt: 41571) -.graphics.streamray.com/.*/cams_live\.swf -# ||go2cdn.org/brand/$third-party (easylistchina+easylist.txt: 41569) -.go2cdn.org/brand/ -# ||girls-home-alone.com/dating/ (easylistchina+easylist.txt: 41568) -.girls-home-alone.com/dating/ -# ||gfrevenge.com/vbanners/ (easylistchina+easylist.txt: 41567) -.gfrevenge.com/vbanners/ -# ||geobanner.socialflirt.com^ (easylistchina+easylist.txt: 41566) -.geobanner.socialflirt.com -# ||geobanner.sexfinder.com^$third-party (easylistchina+easylist.txt: 41565) -.geobanner.sexfinder.com -# ||geobanner.fuckbookhookups.com^$third-party (easylistchina+easylist.txt: 41564) -.geobanner.fuckbookhookups.com -# ||geobanner.blacksexmatch.com^$third-party (easylistchina+easylist.txt: 41563) -.geobanner.blacksexmatch.com -# ||geobanner.alt.com^ (easylistchina+easylist.txt: 41562) -.geobanner.alt.com -# ||geobanner.adultfriendfinder.com^ (easylistchina+easylist.txt: 41561) -.geobanner.adultfriendfinder.com -# ||geo.frtya.com^ (easylistchina+easylist.txt: 41560) -.geo.frtya.com -# ||geo.cliphunter.com^ (easylistchina+easylist.txt: 41559) -.geo.cliphunter.com -# ||geo.camazon.com^$third-party (easylistchina+easylist.txt: 41558) -.geo.camazon.com -# ||gateway-banner.eravage.com^$third-party (easylistchina+easylist.txt: 41557) -.gateway-banner.eravage.com -# ||gammasites.com/pornication/pc_browsable.php? (easylistchina+easylist.txt: 41556) -.gammasites.com/pornication/pc_browsable\.php\? -# ||gallery.deskbabes.com^*.php?dir=*&ids=$third-party (easylistchina+easylist.txt: 41555) -.gallery.deskbabes.com/.*\.php\?dir=.*&ids= -# ||galleries.videosz.com^$object,third-party (easylistchina+easylist.txt: 41554) -.galleries.videosz.com -# ||galeriaseroticas.xpg.com.br^$third-party (easylistchina+easylist.txt: 41553) -.galeriaseroticas.xpg.com.br -# ||gagthebitch.com/track/$third-party (easylistchina+easylist.txt: 41552) -.gagthebitch.com/track/ -# ||fuckhub.net^*?pid=$third-party (easylistchina+easylist.txt: 41551) -.fuckhub.net/.*\?pid= -# ||freshnews.su/get_tizers.php? (easylistchina+easylist.txt: 41550) -.freshnews.su/get_tizers\.php\? -# ||freexxxvideoclip.aebn.net^ (easylistchina+easylist.txt: 41549) -.freexxxvideoclip.aebn.net -# ||freeporn.hu/banners/ (easylistchina+easylist.txt: 41548) -.freeporn.hu/banners/ -# ||freeonescams.com^$subdocument,third-party (easylistchina+easylist.txt: 41547) -.freeonescams.com -# ||freebbw.com/webcams.html$third-party (easylistchina+easylist.txt: 41546) -.freebbw.com/webcams\.html -# ||fleshlight.com/images/peel/ (easylistchina+easylist.txt: 41545) -.fleshlight.com/images/peel/ -# ||fleshlight.com/images/banners/ (easylistchina+easylist.txt: 41544) -.fleshlight.com/images/banners/ -# ||firestormmedia.tv^*?affid= (easylistchina+easylist.txt: 41543) -.firestormmedia.tv/.*\?affid= -# ||fgn.me^*/skins/ (easylistchina+easylist.txt: 41542) -.fgn.me/.*/skins/ -# ||ff.nsg.org.ua^ (easylistchina+easylist.txt: 41541) -.ff.nsg.org.ua -# ||femjoy.com/bnrs/$third-party (easylistchina+easylist.txt: 41540) -.femjoy.com/bnrs/ -# ||feeds.videosz.com^ (easylistchina+easylist.txt: 41539) -.feeds.videosz.com -# ||fckya.com/lj.js (easylistchina+easylist.txt: 41538) -.fckya.com/lj\.js -# ||fbooksluts.com^$subdocument,third-party (easylistchina+easylist.txt: 41537) -.fbooksluts.com -# ||fastcdn.me/mlr/ (easylistchina+easylist.txt: 41536) -.fastcdn.me/mlr/ -# ||fastcdn.me/js/snpp/ (easylistchina+easylist.txt: 41535) -.fastcdn.me/js/snpp/ -# ||fansign.streamray.com^$third-party (easylistchina+easylist.txt: 41534) -.fansign.streamray.com -# ||f5porn.com/porn.gif (easylistchina+easylist.txt: 41533) -.f5porn.com/porn\.gif -# ||extremeladyboys.com/elb/banners/ (easylistchina+easylist.txt: 41532) -.extremeladyboys.com/elb/banners/ -# ||exposedteencelebs.com/banner/$third-party (easylistchina+easylist.txt: 41531) -.exposedteencelebs.com/banner/ -# ||exposedemos.com/track/$third-party (easylistchina+easylist.txt: 41530) -.exposedemos.com/track/ -# ||evilangel.com/static/$third-party (easylistchina+easylist.txt: 41529) -.evilangel.com/static/ -# ||eurolive.com/index.php?module=public_eurolive_onlinetool& (easylistchina+easylist.txt: 41528) -.eurolive.com/index\.php\?module=public_eurolive_onlinetool& -# ||eurolive.com/?module=public_eurolive_onlinehostess& (easylistchina+easylist.txt: 41527) -.eurolive.com/\?module=public_eurolive_onlinehostess& -# ||escortforum.net/images/banners/$third-party (easylistchina+easylist.txt: 41526) -.escortforum.net/images/banners/ -# ||escortbook.com/banner_ (easylistchina+easylist.txt: 41525) -.escortbook.com/banner_ -# ||erotikdeal.com/?ref=$third-party (easylistchina+easylist.txt: 41524) -.erotikdeal.com/\?ref= -# ||eliterotica.com/images/banners/ (easylistchina+easylist.txt: 41523) -.eliterotica.com/images/banners/ -# ||dvdbox.com/promo/$third-party (easylistchina+easylist.txt: 41522) -.dvdbox.com/promo/ -# ||dump1.no-ip.biz^$third-party (easylistchina+easylist.txt: 41521) -.dump1.no-ip.biz -# ||downloadsmais.com/imagens/download-direto.gif (easylistchina+easylist.txt: 41520) -.downloadsmais.com/imagens/download-direto\.gif -# ||dom2xxx.com/ban/$third-party (easylistchina+easylist.txt: 41519) -.dom2xxx.com/ban/ -# ||devilgirls.co/pop.js (easylistchina+easylist.txt: 41518) -.devilgirls.co/pop\.js -# ||devilgirls.co/images/devil.gif (easylistchina+easylist.txt: 41517) -.devilgirls.co/images/devil\.gif -# ||desk.cmix.org^ (easylistchina+easylist.txt: 41516) -.desk.cmix.org -# ||ddstatic.com^*/banners/ (easylistchina+easylist.txt: 41515) -.ddstatic.com/.*/banners/ -# ||ddfcash.com/promo/banners/ (easylistchina+easylist.txt: 41514) -.ddfcash.com/promo/banners/ -# ||ddfcash.com/iframes/$third-party (easylistchina+easylist.txt: 41513) -.ddfcash.com/iframes/ -# ||datefree.com^$third-party (easylistchina+easylist.txt: 41512) -.datefree.com -# ||daredorm.com^$subdocument,third-party (easylistchina+easylist.txt: 41511) -.daredorm.com -# ||dailyvideo.securejoin.com^ (easylistchina+easylist.txt: 41510) -.dailyvideo.securejoin.com -# ||cs.exposedontape.com^$third-party (easylistchina+easylist.txt: 41509) -.cs.exposedontape.com -# ||cs.celebbusters.com^$third-party (easylistchina+easylist.txt: 41508) -.cs.celebbusters.com -# ||crocogirls.com/croco-new.js (easylistchina+easylist.txt: 41507) -.crocogirls.com/croco-new\.js -# ||creamgoodies.com/potd/ (easylistchina+easylist.txt: 41506) -.creamgoodies.com/potd/ -# ||cpm.amateurcommunity.com^ (easylistchina+easylist.txt: 41505) -.cpm.amateurcommunity.com -# ||cp.intl.match.com^$third-party (easylistchina+easylist.txt: 41504) -.cp.intl.match.com -# ||core.queerclick.com^$third-party (easylistchina+easylist.txt: 41503) -.core.queerclick.com -# ||contentcache-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 41502) -.contentcache-a.akamaihd.net -# ||content.liveuniverse.com^$third-party (easylistchina+easylist.txt: 41501) -.content.liveuniverse.com -# ||cockfortwo.com/track/$third-party (easylistchina+easylist.txt: 41500) -.cockfortwo.com/track/ -# ||cmix.org/teasers/? (easylistchina+easylist.txt: 41499) -.cmix.org/teasers/\? -# ||closepics.com/media/banners/ (easylistchina+easylist.txt: 41498) -.closepics.com/media/banners/ -# ||clipjunkie.com/sftopbanner$third-party (easylistchina+easylist.txt: 41497) -.clipjunkie.com/sftopbanner -# ||clickz.lonelycheatingwives.com^$third-party (easylistchina+easylist.txt: 41496) -.clickz.lonelycheatingwives.com -# ||click.kink.com^$third-party (easylistchina+easylist.txt: 41495) -.click.kink.com -# ||click.absoluteagency.com^$third-party (easylistchina+easylist.txt: 41494) -.click.absoluteagency.com -# ||chaturbate.com/creative/ (easylistchina+easylist.txt: 41493) -.chaturbate.com/creative/ -# ||chaturbate.com/affiliates/ (easylistchina+easylist.txt: 41492) -.chaturbate.com/affiliates/ -# ||cdnjke.com^$third-party (easylistchina+easylist.txt: 41491) -.cdnjke.com -# ||cdncache2-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 41490) -.cdncache2-a.akamaihd.net -# ||cdn.epom.com^*/940_250.gif (easylistchina+easylist.txt: 41489) -.cdn.epom.com/.*/940_250\.gif -# ||cash.femjoy.com^$third-party (easylistchina+easylist.txt: 41488) -.cash.femjoy.com -# ||cartoontube.com^$subdocument,third-party (easylistchina+easylist.txt: 41487) -.cartoontube.com -# ||camsrule.com/exports/$third-party (easylistchina+easylist.txt: 41486) -.camsrule.com/exports/ -# ||cams.spacash.com^$third-party (easylistchina+easylist.txt: 41485) -.cams.spacash.com -# ||cams.enjoy.be^$third-party (easylistchina+easylist.txt: 41484) -.cams.enjoy.be -# ||cams.com/p/cams/cpcs/streaminfo.cgi?$third-party (easylistchina+easylist.txt: 41483) -.cams.com/p/cams/cpcs/streaminfo\.cgi\? -# ||cams.com/go/$third-party (easylistchina+easylist.txt: 41482) -.cams.com/go/ -# ||camelmedia.net/thumbs/$third-party (easylistchina+easylist.txt: 41481) -.camelmedia.net/thumbs/ -# ||cache.worldfriends.tv^$third-party (easylistchina+easylist.txt: 41480) -.cache.worldfriends.tv -# ||bullz-eye.com/pictureofday/$third-party (easylistchina+easylist.txt: 41479) -.bullz-eye.com/pictureofday/ -# ||brazzers.com/ads/ (easylistchina+easylist.txt: 41478) -.brazzers.com/ads/ -# ||brasileirinhas.com.br/banners/ (easylistchina+easylist.txt: 41477) -.brasileirinhas.com.br/banners/ -# ||br.realitykings.com^ (easylistchina+easylist.txt: 41476) -.br.realitykings.com -# ||br.fling.com^ (easylistchina+easylist.txt: 41475) -.br.fling.com -# ||br.blackfling.com^ (easylistchina+easylist.txt: 41474) -.br.blackfling.com -# ||bongacash.com/tools/promo.php$third-party (easylistchina+easylist.txt: 41473) -.bongacash.com/tools/promo\.php -# ||bongacash.com/promo.php (easylistchina+easylist.txt: 41472) -.bongacash.com/promo\.php -# ||bongacash.com/dynamic_banner/ (easylistchina+easylist.txt: 41471) -.bongacash.com/dynamic_banner/ -# ||blogspot.com^*/ad.jpg (easylistchina+easylist.txt: 41470) -.blogspot.com/.*/ad\.jpg -# ||blackbrazilianshemales.com/bbs/banners/ (easylistchina+easylist.txt: 41469) -.blackbrazilianshemales.com/bbs/banners/ -# ||blaaaa12.googlecode.com^ (easylistchina+easylist.txt: 41468) -.blaaaa12.googlecode.com -# ||bigmovies.com/images/banners/ (easylistchina+easylist.txt: 41467) -.bigmovies.com/images/banners/ -# ||bbp.brazzers.com^$third-party (easylistchina+easylist.txt: 41466) -.bbp.brazzers.com -# ||bans.bride.ru^$third-party (easylistchina+easylist.txt: 41465) -.bans.bride.ru -# ||bannershotlink.perfectgonzo.com^ (easylistchina+easylist.txt: 41464) -.bannershotlink.perfectgonzo.com -# ||banners.webcams.com^$third-party (easylistchina+easylist.txt: 41463) -.banners.webcams.com -# ||banners.videosecrets.com^$third-party (easylistchina+easylist.txt: 41462) -.banners.videosecrets.com -# ||banners.rushcommerce.com^$third-party (easylistchina+easylist.txt: 41461) -.banners.rushcommerce.com -# ||banners.rude.com^$third-party (easylistchina+easylist.txt: 41460) -.banners.rude.com -# ||banners.penthouse.com^$third-party (easylistchina+easylist.txt: 41459) -.banners.penthouse.com -# ||banners.payserve.com^$third-party (easylistchina+easylist.txt: 41458) -.banners.payserve.com -# ||banners.passiondollars.com^$third-party (easylistchina+easylist.txt: 41457) -.banners.passiondollars.com -# ||banners.passion.com^$third-party (easylistchina+easylist.txt: 41456) -.banners.passion.com -# ||banners.outpersonals.com^$third-party (easylistchina+easylist.txt: 41455) -.banners.outpersonals.com -# ||banners.nostringsattached.com^$third-party (easylistchina+easylist.txt: 41454) -.banners.nostringsattached.com -# ||banners.fuckbookhookups.com^$third-party (easylistchina+easylist.txt: 41453) -.banners.fuckbookhookups.com -# ||banners.fastcupid.com^$third-party (easylistchina+easylist.txt: 41452) -.banners.fastcupid.com -# ||banners.blacksexmatch.com^$third-party (easylistchina+easylist.txt: 41451) -.banners.blacksexmatch.com -# ||banners.amigos.com^$third-party (easylistchina+easylist.txt: 41450) -.banners.amigos.com -# ||banners.alt.com^$third-party (easylistchina+easylist.txt: 41449) -.banners.alt.com -# ||banners.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41448) -.banners.adultfriendfinder.com -# ||banners*.spacash.com^$third-party (easylistchina+easylist.txt: 41447) -.banners*./.*\.spacash\.com[^\w%.-] -.banners*.spacash.com -# ||banner.themediaplanets.com^$third-party (easylistchina+easylist.txt: 41446) -.banner.themediaplanets.com -# ||banner.resulthost.org^$third-party (easylistchina+easylist.txt: 41445) -.banner.resulthost.org -# ||banner.gasuki.com^$third-party (easylistchina+easylist.txt: 41444) -.banner.gasuki.com -# ||banner.69stream.com^$third-party (easylistchina+easylist.txt: 41443) -.banner.69stream.com -# ||babes.picrush.com^$third-party (easylistchina+easylist.txt: 41442) -.babes.picrush.com -# ||b.turbo.az^$third-party (easylistchina+easylist.txt: 41441) -.b.turbo.az -# ||avatraffic.com/b/ (easylistchina+easylist.txt: 41440) -.avatraffic.com/b/ -# ||atlasfiles.com^*/sp3_ep.js$third-party (easylistchina+easylist.txt: 41439) -.atlasfiles.com/.*/sp3_ep\.js -# ||assinclusive.com/linkstxt2.html (easylistchina+easylist.txt: 41438) -.assinclusive.com/linkstxt2\.html -# ||assinclusive.com/cyonix.html (easylistchina+easylist.txt: 41437) -.assinclusive.com/cyonix\.html -# ||asktiava.com/promotion/ (easylistchina+easylist.txt: 41436) -.asktiava.com/promotion/ -# ||asianbutterflies.com/potd/ (easylistchina+easylist.txt: 41435) -.asianbutterflies.com/potd/ -# ||ard.sweetdiscreet.com^ (easylistchina+easylist.txt: 41434) -.ard.sweetdiscreet.com -# ||animalsexfun.com/baner/ (easylistchina+easylist.txt: 41433) -.animalsexfun.com/baner/ -# ||ambya.com/potdc/ (easylistchina+easylist.txt: 41432) -.ambya.com/potdc/ -# ||amateurseite.com/banner/$third-party (easylistchina+easylist.txt: 41431) -.amateurseite.com/banner/ -# ||amateur.amarotic.com^$third-party (easylistchina+easylist.txt: 41430) -.amateur.amarotic.com -# ||amarotic.com^*?wmid=*&kamid=*&wsid=$third-party (easylistchina+easylist.txt: 41429) -.amarotic.com/.*\?wmid=.*&kamid=.*&wsid= -# ||amarotic.com/rotation/layer/chatpage/$third-party (easylistchina+easylist.txt: 41428) -.amarotic.com/rotation/layer/chatpage/ -# ||amarotic.com/Banner/$third-party (easylistchina+easylist.txt: 41427) -.amarotic.com/Banner/ -# ||alt.com/go/$third-party (easylistchina+easylist.txt: 41426) -.alt.com/go/ -# ||allanalpass.com/visitScript/ (easylistchina+easylist.txt: 41425) -.allanalpass.com/visitScript/ -# ||affiliates.thrixxx.com^ (easylistchina+easylist.txt: 41424) -.affiliates.thrixxx.com -# ||affiliates.franchisegator.com^$third-party (easylistchina+easylist.txt: 41423) -.affiliates.franchisegator.com -# ||affiliates.easydate.biz^$third-party (easylistchina+easylist.txt: 41422) -.affiliates.easydate.biz -# ||affiliates.cupidplc.com^$third-party (easylistchina+easylist.txt: 41421) -.affiliates.cupidplc.com -# ||affiliate.godaddy.com^$third-party (easylistchina+easylist.txt: 41420) -.affiliate.godaddy.com -# ||affiliate.dtiserv.com^$third-party (easylistchina+easylist.txt: 41419) -.affiliate.dtiserv.com -# ||affiliate.burn-out.tv^$third-party (easylistchina+easylist.txt: 41418) -.affiliate.burn-out.tv -# ||aff-jp.exshot.com^$third-party (easylistchina+easylist.txt: 41417) -.aff-jp.exshot.com -# ||aff-jp.dxlive.com^$third-party (easylistchina+easylist.txt: 41416) -.aff-jp.dxlive.com -# ||aebn.net/feed/$third-party (easylistchina+easylist.txt: 41415) -.aebn.net/feed/ -# ||aebn.net/banners/ (easylistchina+easylist.txt: 41414) -.aebn.net/banners/ -# ||adultporntubemovies.com/images/banners/ (easylistchina+easylist.txt: 41413) -.adultporntubemovies.com/images/banners/ -# ||adultfriendfinder.com/piclist?$third-party (easylistchina+easylist.txt: 41412) -.adultfriendfinder.com/piclist\? -# ||adultfriendfinder.com/javascript/$third-party (easylistchina+easylist.txt: 41411) -.adultfriendfinder.com/javascript/ -# ||adultfriendfinder.com/images/banners/$third-party (easylistchina+easylist.txt: 41410) -.adultfriendfinder.com/images/banners/ -# ||adultfriendfinder.com/go/$third-party (easylistchina+easylist.txt: 41409) -.adultfriendfinder.com/go/ -# ||adultfax.com/service/vsab.php? (easylistchina+easylist.txt: 41408) -.adultfax.com/service/vsab\.php\? -# ||adultdvd.com/plugins/*/store.html$third-party (easylistchina+easylist.txt: 41407) -.adultdvd.com/plugins/.*/store\.html -# ||adtools2.amakings.com^$third-party (easylistchina+easylist.txt: 41406) -.adtools2.amakings.com -# ||adtools.gossipkings.com^$third-party (easylistchina+easylist.txt: 41405) -.adtools.gossipkings.com -# ||adsrv.bangbros.com^$third-party (easylistchina+easylist.txt: 41404) -.adsrv.bangbros.com -# ||ads.videosz.com^ (easylistchina+easylist.txt: 41403) -.ads.videosz.com -# ||ads.contentabc.com^$third-party (easylistchina+easylist.txt: 41402) -.ads.contentabc.com -# ||adb.fling.com^$third-party (easylistchina+easylist.txt: 41401) -.adb.fling.com -# ||ad.traffmonster.info^$third-party (easylistchina+easylist.txt: 41400) -.ad.traffmonster.info -# ||ad.iloveinterracial.com^ (easylistchina+easylist.txt: 41399) -.ad.iloveinterracial.com -# ||ad.favod.net^$third-party (easylistchina+easylist.txt: 41398) -.ad.favod.net -# ||ad.duga.jp^ (easylistchina+easylist.txt: 41397) -.ad.duga.jp -# ||a.sucksex.com^$third-party (easylistchina+easylist.txt: 41396) -.a.sucksex.com -# ||91.83.237.41^*/banners/ (easylistchina+easylist.txt: 41395) -.91.83.237.41/.*/banners/ -# ||88.85.77.94/rotation/$third-party (easylistchina+easylist.txt: 41394) -.88.85.77.94/rotation/ -# ||79.120.183.166^*/banners/ (easylistchina+easylist.txt: 41392) -.79.120.183.166/.*/banners/ -# ||4tube.com/iframe/$third-party (easylistchina+easylist.txt: 41391) -.4tube.com/iframe/ -# ||213.174.140.76^*/js/msn.js (easylistchina+easylist.txt: 41390) -.213.174.140.76/.*/js/msn\.js -# ||213.174.140.76^*/js/msn-$script (easylistchina+easylist.txt: 41389) -.213.174.140.76/.*/js/msn- -# ||213.174.140.76^*/ads/ (easylistchina+easylist.txt: 41388) -.213.174.140.76/.*/ads/ -# ||213.174.140.76/js/showbanner4.js (easylistchina+easylist.txt: 41387) -.213.174.140.76/js/showbanner4\.js -# ||213.174.130.9/banners/ (easylistchina+easylist.txt: 41386) -.213.174.130.9/banners/ -# ||213.174.130.8/banners/ (easylistchina+easylist.txt: 41385) -.213.174.130.8/banners/ -# ||213.174.130.10/banners/ (easylistchina+easylist.txt: 41384) -.213.174.130.10/banners/ -# ||204.140.25.247/ads/ (easylistchina+easylist.txt: 41383) -.204.140.25.247/ads/ -# ||193.34.134.74^*/banners/ (easylistchina+easylist.txt: 41382) -.193.34.134.74/.*/banners/ -# ||193.34.134.18^*/banners/ (easylistchina+easylist.txt: 41381) -.193.34.134.18/.*/banners/ -# /exports/livemodel/?$subdocument (easylistchina+easylist.txt: 41380) -/(.*/)?exports/livemodel/\? -# .php?pub=*&trw_adblocker=$subdocument (easylistchina+easylist.txt: 41379) -/.*\.php\?pub=.*&trw_adblocker= -# ||wptpoker.com^$popup (easylistchina+easylist.txt: 41377) -.wptpoker.com -# ||withbinaryoptions.com^$popup,third-party (easylistchina+easylist.txt: 41376) -.withbinaryoptions.com -# ||with-binaryoption.com^$popup,third-party (easylistchina+easylist.txt: 41375) -.with-binaryoption.com -# ||widget.yavli.com^$popup,third-party (easylistchina+easylist.txt: 41374) -.widget.yavli.com -# ||weeklyprizewinner.com-net.info^$popup (easylistchina+easylist.txt: 41373) -.weeklyprizewinner.com-net.info -# ||wealth-at-home-millions.com^$popup,third-party (easylistchina+easylist.txt: 41372) -.wealth-at-home-millions.com -# ||virtuagirl.com/landing/$popup,third-party (easylistchina+easylist.txt: 41371) -.virtuagirl.com/landing/ -# ||vidds.net/?s=promo$popup,third-party (easylistchina+easylist.txt: 41370) -.vidds.net/\?s=promo -# ||usenet.nl^$popup (easylistchina+easylist.txt: 41369) -.usenet.nl -# ||urmediazone.com/play?ref=$popup,third-party (easylistchina+easylist.txt: 41368) -.urmediazone.com/play\?ref= -# ||urlcash.net/random*.php$popup (easylistchina+easylist.txt: 41367) -.urlcash.net/random.*\.php -# ||uploaded.net/ref/$popup (easylistchina+easylist.txt: 41366) -.uploaded.net/ref/ -# ||upbcd.info/vuze/$popup (easylistchina+easylist.txt: 41365) -.upbcd.info/vuze/ -# ||ul.to/ref/$popup (easylistchina+easylist.txt: 41364) -.ul.to/ref/ -# ||tripadvisor.*/HotelLander?$popup,third-party (easylistchina+easylist.txt: 41362) -.tripadvisor.*./(.*/)?HotelLander\? -# ||track.xtrasize.nl^$popup,third-party (easylistchina+easylist.txt: 41361) -.track.xtrasize.nl -# ||track.mypcbackup.com^$popup,third-party (easylistchina+easylist.txt: 41360) -.track.mypcbackup.com -# ||torntv-tvv.org^$popup,third-party (easylistchina+easylist.txt: 41359) -.torntv-tvv.org -# ||tipico.com^*?affiliateid=$popup,third-party (easylistchina+easylist.txt: 41358) -.tipico.com/.*\?affiliateid= -# ||thetraderinpajamas.com^$popup,third-party (easylistchina+easylist.txt: 41357) -.thetraderinpajamas.com -# ||theseforums.com^*/?ref=$popup (easylistchina+easylist.txt: 41356) -.theseforums.com/.*/\?ref= -# ||thebestbookies.com^$popup,third-party (easylistchina+easylist.txt: 41355) -.thebestbookies.com -# ||sunmaker.com^*^a_aid^$popup,third-party (easylistchina+easylist.txt: 41354) -.sunmaker.com/.*[^\w%.-]a_aid[^\w%.-] -# ||stargames.com/web/*&cid=*&pid=$popup,third-party (easylistchina+easylist.txt: 41353) -.stargames.com/web/.*&cid=.*&pid= -# ||stargames.com/bridge.asp?idr=$popup (easylistchina+easylist.txt: 41352) -.stargames.com/bridge\.asp\?idr= -# ||stake7.com^*?a_aid=$popup,third-party (easylistchina+easylist.txt: 41351) -.stake7.com/.*\?a_aid= -# ||softingo.com/clp/$popup (easylistchina+easylist.txt: 41350) -.softingo.com/clp/ -# ||sharecash.org^$popup,third-party (easylistchina+easylist.txt: 41349) -.sharecash.org -# ||settlecruise.org^$popup (easylistchina+easylist.txt: 41348) -.settlecruise.org -# ||serve.williamhillcasino.com^$popup,third-party (easylistchina+easylist.txt: 41347) -.serve.williamhillcasino.com -# ||serve.prestigecasino.com^$popup,third-party (easylistchina+easylist.txt: 41346) -.serve.prestigecasino.com -# ||secure.komli.com^$popup,third-party (easylistchina+easylist.txt: 41345) -.secure.komli.com -# ||roomkey.com/referrals?$popup,third-party (easylistchina+easylist.txt: 41344) -.roomkey.com/referrals\? -# ||rocketgames.com^$popup,third-party (easylistchina+easylist.txt: 41343) -.rocketgames.com -# ||red-tube.com/popunder/$popup (easylistchina+easylist.txt: 41342) -.red-tube.com/popunder/ -# ||record.sportsbetaffiliates.com.au^$popup,third-party (easylistchina+easylist.txt: 41341) -.record.sportsbetaffiliates.com.au -# ||rackcorp.com^$popup (easylistchina+easylist.txt: 41340) -.rackcorp.com -# ||pub.ezanga.com/rv2.php?$popup (easylistchina+easylist.txt: 41339) -.pub.ezanga.com/rv2\.php\? -# ||promo.xcasino.com/?$popup,third-party (easylistchina+easylist.txt: 41338) -.promo.xcasino.com/\? -# ||promo.galabingo.com^$popup,third-party (easylistchina+easylist.txt: 41337) -.promo.galabingo.com -# ||priceinfo.comuv.com^$popup (easylistchina+easylist.txt: 41336) -.priceinfo.comuv.com -# ||pokerstars.eu^*/?source=$popup,third-party (easylistchina+easylist.txt: 41335) -.pokerstars.eu/.*/\?source= -# ||platinumdown.com^$popup (easylistchina+easylist.txt: 41334) -.platinumdown.com -# ||planet49.com/cgi-bin/wingame.pl?$popup (easylistchina+easylist.txt: 41333) -.planet49.com/cgi-bin/wingame\.pl\? -# ||pc.thevideo.me^$popup,third-party (easylistchina+easylist.txt: 41332) -.pc.thevideo.me -# ||paid.outbrain.com/network/redir?$popup,third-party (easylistchina+easylist.txt: 41331) -.paid.outbrain.com/network/redir\? -# ||otvetus.com^$popup,third-party (easylistchina+easylist.txt: 41330) -.otvetus.com -# ||opendownloadmanager.com^$popup,third-party (easylistchina+easylist.txt: 41329) -.opendownloadmanager.com -# ||noowmedia.com^$popup (easylistchina+easylist.txt: 41328) -.noowmedia.com -# ||mypromocenter.com^$popup (easylistchina+easylist.txt: 41327) -.mypromocenter.com -# ||mp3ger.com^$popup,third-party (easylistchina+easylist.txt: 41326) -.mp3ger.com -# ||mgid.com^$popup,third-party (easylistchina+easylist.txt: 41325) -.mgid.com -# ||meme.smhlmao.com^$popup,third-party (easylistchina+easylist.txt: 41324) -.meme.smhlmao.com -# ||megacloud.com/signup?$popup,third-party (easylistchina+easylist.txt: 41323) -.megacloud.com/signup\? -# ||media.mybet.com/redirect.aspx?pid=*&bid=$popup,third-party (easylistchina+easylist.txt: 41322) -.media.mybet.com/redirect\.aspx\?pid=.*&bid= -# ||mcars.org/landing/$popup,third-party (easylistchina+easylist.txt: 41321) -.mcars.org/landing/ -# ||maxedtube.com/video_play?*&utm_campaign=$popup,third-party (easylistchina+easylist.txt: 41320) -.maxedtube.com/video_play\?.*&utm_campaign= -# ||makemoneyonline.2yu.in^$popup (easylistchina+easylist.txt: 41319) -.makemoneyonline.2yu.in -# ||lyricsbogie.com/?$popup,third-party (easylistchina+easylist.txt: 41318) -.lyricsbogie.com/\? -# ||lumosity.com/landing_pages/$popup (easylistchina+easylist.txt: 41317) -.lumosity.com/landing_pages/ -# ||lsbet.com/bonus/$popup,third-party (easylistchina+easylist.txt: 41316) -.lsbet.com/bonus/ -# ||lp.titanpoker.com^$popup,third-party (easylistchina+easylist.txt: 41315) -.lp.titanpoker.com -# ||lp.musicboxnewtab.com^$popup,third-party (easylistchina+easylist.txt: 41314) -.lp.musicboxnewtab.com -# ||lp.imesh.com/?$popup,third-party (easylistchina+easylist.txt: 41313) -.lp.imesh.com/\? -# ||lp.ilivid.com/?$popup,third-party (easylistchina+easylist.txt: 41312) -.lp.ilivid.com/\? -# ||lovepoker.de^*/?pid=$popup (easylistchina+easylist.txt: 41311) -.lovepoker.de/.*/\?pid= -# ||lovefilm.com/partners/$popup,third-party (easylistchina+easylist.txt: 41310) -.lovefilm.com/partners/ -# ||liutilities.com^*/affiliate/$popup (easylistchina+easylist.txt: 41309) -.liutilities.com/.*/affiliate/ -# ||i2casting.com^$popup,third-party (easylistchina+easylist.txt: 41307) -.i2casting.com -# ||hyperlinksecure.com/go/$popup (easylistchina+easylist.txt: 41306) -.hyperlinksecure.com/go/ -# ||hyperlinksecure.com/back?token=$popup (easylistchina+easylist.txt: 41305) -.hyperlinksecure.com/back\?token= -# ||house-rent.us^$popup,third-party (easylistchina+easylist.txt: 41304) -.house-rent.us -# ||homemadecelebrityporn.com/track/$popup,third-party (easylistchina+easylist.txt: 41303) -.homemadecelebrityporn.com/track/ -# ||hmn-net.com^*/xdirect/$popup,third-party (easylistchina+easylist.txt: 41302) -.hmn-net.com/.*/xdirect/ -# ||hetu.in^$popup,third-party (easylistchina+easylist.txt: 41301) -.hetu.in -# ||hdvidcodecs.com^$popup (easylistchina+easylist.txt: 41300) -.hdvidcodecs.com -# ||hdvid-codec.com^$popup (easylistchina+easylist.txt: 41299) -.hdvid-codec.com -# ||getsecuredfiles.com^$popup,third-party (easylistchina+easylist.txt: 41298) -.getsecuredfiles.com -# ||generic4all.com^*.dhtml?refid=$popup,third-party (easylistchina+easylist.txt: 41297) -.generic4all.com/.*\.dhtml\?refid= -# ||fwmrm.net/ad/$popup (easylistchina+easylist.txt: 41296) -.fwmrm.net/ad/ -# ||fulltiltpoker.com/affiliates/$popup,third-party (easylistchina+easylist.txt: 41295) -.fulltiltpoker.com/affiliates/ -# ||fulltiltpoker.com/?key=$popup,third-party (easylistchina+easylist.txt: 41294) -.fulltiltpoker.com/\?key= -# ||fsoft4down.com^$popup (easylistchina+easylist.txt: 41293) -.fsoft4down.com -# ||free-rewards.com-s.tv^$popup (easylistchina+easylist.txt: 41292) -.free-rewards.com-s.tv -# ||fleshlight.com/?link=$popup,third-party (easylistchina+easylist.txt: 41291) -.fleshlight.com/\?link= -# ||flashplayer-updates.com^$popup (easylistchina+easylist.txt: 41290) -.flashplayer-updates.com -# ||firstload.de^$popup (easylistchina+easylist.txt: 41289) -.firstload.de -# ||firstload.com^$popup (easylistchina+easylist.txt: 41288) -.firstload.com -# ||fastclick.net^$popup (easylistchina+easylist.txt: 41287) -.fastclick.net -# ||facebookcoverx.com^$popup,third-party (easylistchina+easylist.txt: 41286) -.facebookcoverx.com -# ||evanetwork.com^$popup (easylistchina+easylist.txt: 41285) -.evanetwork.com -# ||europacasino.com^$popup,third-party (easylistchina+easylist.txt: 41284) -.europacasino.com -# ||eurogrand.com^$popup (easylistchina+easylist.txt: 41283) -.eurogrand.com -# ||erotikdeal.com/advertising.html$popup,third-party (easylistchina+easylist.txt: 41282) -.erotikdeal.com/advertising\.html -# ||erotikdeal.com/?ref=$popup,third-party (easylistchina+easylist.txt: 41281) -.erotikdeal.com/\?ref= -# ||eroticmix.blogspot.$popup (easylistchina+easylist.txt: 41280) -.eroticmix.blogspot.*. -# ||dateoffer.net/?s=*&subid=$popup,third-party (easylistchina+easylist.txt: 41279) -.dateoffer.net/\?s=.*&subid= -# ||d1110e4.se^$popup (easylistchina+easylist.txt: 41278) -.d1110e4.se -# ||ctcautobody.com^$popup,third-party (easylistchina+easylist.txt: 41277) -.ctcautobody.com -# ||coolguruji.com/l.php?$popup (easylistchina+easylist.txt: 41276) -.coolguruji.com/l\.php\? -# ||clickansave.net^$popup,third-party (easylistchina+easylist.txt: 41275) -.clickansave.net -# ||click.scour.com^$popup,third-party (easylistchina+easylist.txt: 41274) -.click.scour.com -# ||chaturbate.com/affiliates/$popup,third-party (easylistchina+easylist.txt: 41273) -.chaturbate.com/affiliates/ -# ||chatulfetelor.net/$popup (easylistchina+easylist.txt: 41272) -.chatulfetelor.net -# ||chatlivejasmin.net^$popup (easylistchina+easylist.txt: 41271) -.chatlivejasmin.net -# ||cdnfarm18.com^$popup,third-party (easylistchina+easylist.txt: 41270) -.cdnfarm18.com -# ||cdn.optmd.com^$popup,third-party (easylistchina+easylist.txt: 41269) -.cdn.optmd.com -# ||casinoadviser.net^$popup (easylistchina+easylist.txt: 41268) -.casinoadviser.net -# ||casino.com^*?*=$popup,third-party (easylistchina+easylist.txt: 41267) -.casino.com/.*\?.*= -# ||casino-x.com^*?partner=$popup,third-party (easylistchina+easylist.txt: 41266) -.casino-x.com/.*\?partner= -# ||bovada.lv^$popup,third-party (easylistchina+easylist.txt: 41265) -.bovada.lv -# ||binaryoptions24h.com^$popup,third-party (easylistchina+easylist.txt: 41264) -.binaryoptions24h.com -# ||bet365.com^*affiliate=$popup (easylistchina+easylist.txt: 41263) -.bet365.com/.*affiliate= -# ||banner.galabingo.com^$popup,third-party (easylistchina+easylist.txt: 41262) -.banner.galabingo.com -# ||babylon.com/welcome/index.html?affID=$popup,third-party (easylistchina+easylist.txt: 41261) -.babylon.com/welcome/index\.html\?affID= -# ||babylon.com/redirects/$popup,third-party (easylistchina+easylist.txt: 41260) -.babylon.com/redirects/ -# ||amazing-offers.co.il^$popup,third-party (easylistchina+easylist.txt: 41259) -.amazing-offers.co.il -# ||aliexpress.com/?af=$popup,third-party (easylistchina+easylist.txt: 41258) -.aliexpress.com/\?af= -# ||affportal-lb.bevomedia.com^$popup,third-party (easylistchina+easylist.txt: 41257) -.affportal-lb.bevomedia.com -# ||affiliates.galapartners.co.uk^$popup,third-party (easylistchina+easylist.txt: 41256) -.affiliates.galapartners.co.uk -# ||adserving.unibet.com^$popup,third-party (easylistchina+easylist.txt: 41255) -.adserving.unibet.com -# ||adrotator.se^$popup (easylistchina+easylist.txt: 41254) -.adrotator.se -# ||admngronline.com^$popup,third-party (easylistchina+easylist.txt: 41253) -.admngronline.com -# ||adfoc.us/serve/$popup,third-party (easylistchina+easylist.txt: 41252) -.adfoc.us/serve/ -# ||6angebot.ch/?ref=$popup,third-party (easylistchina+easylist.txt: 41251) -.6angebot.ch/\?ref= -# ||5.39.67.191/promo.php?$popup (easylistchina+easylist.txt: 41250) -.5.39.67.191/promo\.php\? -# ||4utro.ru^$popup (easylistchina+easylist.txt: 41249) -.4utro.ru -# ||d1nmk7iw7hajjn.cloudfront.net^ (easylistchina+easylist.txt: 41247) -.d1nmk7iw7hajjn.cloudfront.net -# ||chronophotographie.science^$third-party (easylistchina+easylist.txt: 41246) -.chronophotographie.science -# ||iadc.qwapi.com^ (easylistchina+easylist.txt: 41244) -.iadc.qwapi.com -# ||zmh.zope.net^$third-party (easylistchina+easylist.txt: 41241) -.zmh.zope.net -# ||zip2save.com/widget.php? (easylistchina+easylist.txt: 41240) -.zip2save.com/widget\.php\? -# ||ziffstatic.com/jst/zdvtools. (easylistchina+easylist.txt: 41239) -.ziffstatic.com/jst/zdvtools\. -# ||ziffstatic.com/jst/zdsticky. (easylistchina+easylist.txt: 41238) -.ziffstatic.com/jst/zdsticky\. -# ||ziffprod.com/CSE/BestPrice? (easylistchina+easylist.txt: 41237) -.ziffprod.com/CSE/BestPrice\? -# ||ziffdavisenterprise.com/contextclicks/ (easylistchina+easylist.txt: 41236) -.ziffdavisenterprise.com/contextclicks/ -# ||zeusfiles.com/promo/ (easylistchina+easylist.txt: 41235) -.zeusfiles.com/promo/ -# ||zeus.qj.net^ (easylistchina+easylist.txt: 41234) -.zeus.qj.net -# ||zergnet.com^$third-party (easylistchina+easylist.txt: 41233) -.zergnet.com -# ||zazzle.com^*?rf$third-party (easylistchina+easylist.txt: 41232) -.zazzle.com/.*\?rf -# ||zazzle.com/utl/getpanel$third-party (easylistchina+easylist.txt: 41231) -.zazzle.com/utl/getpanel -# ||zapads.zapak.com^ (easylistchina+easylist.txt: 41230) -.zapads.zapak.com -# ||youinsure.co.za/frame/$third-party (easylistchina+easylist.txt: 41229) -.youinsure.co.za/frame/ -# ||you-cubez.com/images/banners/ (easylistchina+easylist.txt: 41228) -.you-cubez.com/images/banners/ -# ||yooclick.com^$subdocument,third-party (easylistchina+easylist.txt: 41227) -.yooclick.com -# ||yontoo.com^$subdocument,third-party (easylistchina+easylist.txt: 41226) -.yontoo.com -# ||ynet.co.il^*/ynetbanneradmin/ (easylistchina+easylist.txt: 41225) -.ynet.co.il/.*/ynetbanneradmin/ -# ||yimg.com^*/sponsored.js (easylistchina+easylist.txt: 41223) -.yimg.com/.*/sponsored\.js -# ||yimg.com^*/quickplay_maxwellhouse.png (easylistchina+easylist.txt: 41222) -.yimg.com/.*/quickplay_maxwellhouse\.png -# ||yimg.com/gs/apex/mediastore/ (easylistchina+easylist.txt: 41220) -.yimg.com/gs/apex/mediastore/ -# ||yieldmanager.edgesuite.net^$third-party (easylistchina+easylist.txt: 41219) -.yieldmanager.edgesuite.net -# ||yeas.yahoo.co.jp^ (easylistchina+easylist.txt: 41218) -.yeas.yahoo.co.jp -# ||yb.torchbrowser.com^ (easylistchina+easylist.txt: 41217) -.yb.torchbrowser.com -# ||yahoo.net^*/ads/ (easylistchina+easylist.txt: 41216) -.yahoo.net/.*/ads/ -# ||yachting.org^*/banner/ (easylistchina+easylist.txt: 41215) -.yachting.org/.*/banner/ -# ||xproxyhost.com/images/banners/ (easylistchina+easylist.txt: 41214) -.xproxyhost.com/images/banners/ -# ||xml.exactseek.com/cgi-bin/js-feed.cgi?$third-party (easylistchina+easylist.txt: 41213) -.xml.exactseek.com/cgi-bin/js-feed\.cgi\? -# ||xingcloud.com^*/uid_ (easylistchina+easylist.txt: 41212) -.xingcloud.com/.*/uid_ -# ||xigen.co.uk^*/Affiliate/ (easylistchina+easylist.txt: 41211) -.xigen.co.uk/.*/Affiliate/ -# ||xgaming.com/rotate*.php?$third-party (easylistchina+easylist.txt: 41210) -.xgaming.com/rotate.*\.php\? -# ||xcams.com/livecams/pub_collante/script.php?$third-party (easylistchina+easylist.txt: 41209) -.xcams.com/livecams/pub_collante/script\.php\? -# ||x3cms.com/ads/ (easylistchina+easylist.txt: 41208) -.x3cms.com/ads/ -# ||wupload.com/referral/$third-party (easylistchina+easylist.txt: 41207) -.wupload.com/referral/ -# ||wupload.com/images/banners/ (easylistchina+easylist.txt: 41206) -.wupload.com/images/banners/ -# ||wtprn.com/sponsors/ (easylistchina+easylist.txt: 41205) -.wtprn.com/sponsors/ -# ||wtpn.twenga.de^ (easylistchina+easylist.txt: 41203) -.wtpn.twenga.de -# ||wtpn.twenga.co.uk^ (easylistchina+easylist.txt: 41202) -.wtpn.twenga.co.uk -# ||wsockd.com^$third-party (easylistchina+easylist.txt: 41201) -.wsockd.com -# ||ws.amazon.*/widgets/$third-party (easylistchina+easylist.txt: 41200) -.ws.amazon.*./(.*/)?widgets/ -# ||wrapper.ign.com^$third-party (easylistchina+easylist.txt: 41199) -.wrapper.ign.com -# ||worldofjudaica.com/static/show/external/ (easylistchina+easylist.txt: 41197) -.worldofjudaica.com/static/show/external/ -# ||worldofjudaica.com/products/dynamic_banner/ (easylistchina+easylist.txt: 41196) -.worldofjudaica.com/products/dynamic_banner/ -# ||worldnow.com/images/incoming/RTJ/rtj201303fall.jpg (easylistchina+easylist.txt: 41195) -.worldnow.com/images/incoming/RTJ/rtj201303fall\.jpg -# ||worldcdn.net^*/banners/ (easylistchina+easylist.txt: 41194) -.worldcdn.net/.*/banners/ -# ||wonderlabs.com/affiliate_pro/banners/ (easylistchina+easylist.txt: 41193) -.wonderlabs.com/affiliate_pro/banners/ -# ||wm.co.za/wmjs.php? (easylistchina+easylist.txt: 41192) -.wm.co.za/wmjs\.php\? -# ||wm.co.za/24com.php? (easylistchina+easylist.txt: 41191) -.wm.co.za/24com\.php\? -# ||wishlistproducts.com/affiliatetools/$third-party (easylistchina+easylist.txt: 41190) -.wishlistproducts.com/affiliatetools/ -# ||winsms.co.za/banner/ (easylistchina+easylist.txt: 41189) -.winsms.co.za/banner/ -# ||winpalace.com/?affid= (easylistchina+easylist.txt: 41188) -.winpalace.com/\?affid= -# ||wildamaginations.com/mdm/banner/ (easylistchina+easylist.txt: 41187) -.wildamaginations.com/mdm/banner/ -# ||widgets.solaramerica.org^$third-party (easylistchina+easylist.txt: 41186) -.widgets.solaramerica.org -# ||widgets.realestate.com.au^ (easylistchina+easylist.txt: 41185) -.widgets.realestate.com.au -# ||widgets.progrids.com^$third-party (easylistchina+easylist.txt: 41184) -.widgets.progrids.com -# ||widgets.privateproperty.com.ng^$third-party (easylistchina+easylist.txt: 41183) -.widgets.privateproperty.com.ng -# ||widgets.mozo.com.au^$third-party (easylistchina+easylist.txt: 41182) -.widgets.mozo.com.au -# ||widgets.mobilelocalnews.com^$third-party (easylistchina+easylist.txt: 41181) -.widgets.mobilelocalnews.com -# ||widgets.itunes.apple.com^*&affiliate_id=$third-party (easylistchina+easylist.txt: 41180) -.widgets.itunes.apple.com/.*&affiliate_id= -# ||widgets.fie.futurecdn.net^$script (easylistchina+easylist.txt: 41179) -.widgets.fie.futurecdn.net -# ||widgets.adviceiq.com^$third-party (easylistchina+easylist.txt: 41178) -.widgets.adviceiq.com -# ||widgetcf.adviceiq.com^$third-party (easylistchina+easylist.txt: 41177) -.widgetcf.adviceiq.com -# ||widget.solarquotes.com.au^ (easylistchina+easylist.txt: 41176) -.widget.solarquotes.com.au -# ||widget.shopstyle.com/widget?pid=$subdocument,third-party (easylistchina+easylist.txt: 41175) -.widget.shopstyle.com/widget\?pid= -# ||widget.shopstyle.com.au^ (easylistchina+easylist.txt: 41174) -.widget.shopstyle.com.au -# ||widget.searchschoolsnetwork.com^ (easylistchina+easylist.txt: 41173) -.widget.searchschoolsnetwork.com -# ||widget.scoutpa.com^$third-party (easylistchina+easylist.txt: 41172) -.widget.scoutpa.com -# ||widget.raaze.com^ (easylistchina+easylist.txt: 41171) -.widget.raaze.com -# ||widget.kelkoo.com^ (easylistchina+easylist.txt: 41170) -.widget.kelkoo.com -# ||widget.jobberman.com^$third-party (easylistchina+easylist.txt: 41169) -.widget.jobberman.com -# ||widget.imshopping.com^$third-party (easylistchina+easylist.txt: 41168) -.widget.imshopping.com -# ||widget.crowdignite.com^ (easylistchina+easylist.txt: 41167) -.widget.crowdignite.com -# ||widget.cheki.com.ng^$third-party (easylistchina+easylist.txt: 41166) -.widget.cheki.com.ng -# ||widgeo.net/popup.js (easylistchina+easylist.txt: 41165) -.widgeo.net/popup\.js -# ||whistleout.s3.amazonaws.com^ (easylistchina+easylist.txt: 41164) -.whistleout.s3.amazonaws.com -# ||website.ws^*/banners/ (easylistchina+easylist.txt: 41163) -.website.ws/.*/banners/ -# ||webmasterrock.com/cpxt_pab (easylistchina+easylist.txt: 41162) -.webmasterrock.com/cpxt_pab -# ||webdev.co.zw/images/banners/$third-party (easylistchina+easylist.txt: 41161) -.webdev.co.zw/images/banners/ -# ||web2feel.com/images/$third-party (easylistchina+easylist.txt: 41160) -.web2feel.com/images/ -# ||web-jp.ad-v.jp^ (easylistchina+easylist.txt: 41159) -.web-jp.ad-v.jp -# ||weatherthreat.com^*/app_add.png (easylistchina+easylist.txt: 41158) -.weatherthreat.com/.*/app_add\.png -# ||wealthyrush.com^*/banners/$third-party (easylistchina+easylist.txt: 41157) -.wealthyrush.com/.*/banners/ -# ||watersoul.com^$subdocument,third-party (easylistchina+easylist.txt: 41156) -.watersoul.com -# ||watchme.com/track/$subdocument,third-party (easylistchina+easylist.txt: 41155) -.watchme.com/track/ -# ||watch-naruto.tv/images/$third-party (easylistchina+easylist.txt: 41154) -.watch-naruto.tv/images/ -# ||watch-free-movie-online.net/adds- (easylistchina+easylist.txt: 41153) -.watch-free-movie-online.net/adds- -# ||washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie.html (easylistchina+easylist.txt: 41152) -.washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie\.html -# ||warrantydirect.co.uk/widgets/ (easylistchina+easylist.txt: 41151) -.warrantydirect.co.uk/widgets/ -# ||warezhaven.org/warezhavenbann.jpg (easylistchina+easylist.txt: 41150) -.warezhaven.org/warezhavenbann\.jpg -# ||walmartimages.com^*/HealthPartner_ (easylistchina+easylist.txt: 41149) -.walmartimages.com/.*/HealthPartner_ -# ||wagital.com/Wagital-Ads.html (easylistchina+easylist.txt: 41148) -.wagital.com/Wagital-Ads\.html -# ||vxite.com/banner/ (easylistchina+easylist.txt: 41146) -.vxite.com/banner/ -# ||vuvuplaza.com^$subdocument,third-party (easylistchina+easylist.txt: 41145) -.vuvuplaza.com -# ||vrvm.com/t? (easylistchina+easylist.txt: 41144) -.vrvm.com/t\? -# ||vpnxs.nl/images/vpnxs_banner (easylistchina+easylist.txt: 41143) -.vpnxs.nl/images/vpnxs_banner -# ||vpntunnel.se/aff/$third-party (easylistchina+easylist.txt: 41142) -.vpntunnel.se/aff/ -# ||vpn4all.com^*/banner/ (easylistchina+easylist.txt: 41141) -.vpn4all.com/.*/banner/ -# ||voodoo.com^$third-party (easylistchina+easylist.txt: 41140) -.voodoo.com -# ||vittgam.net/images/b/ (easylistchina+easylist.txt: 41139) -.vittgam.net/images/b/ -# ||vitabase.com/images/relationships/$third-party (easylistchina+easylist.txt: 41138) -.vitabase.com/images/relationships/ -# ||visitorboost.com/images/$third-party (easylistchina+easylist.txt: 41137) -.visitorboost.com/images/ -# ||visit.homepagle.com^$third-party (easylistchina+easylist.txt: 41136) -.visit.homepagle.com -# ||virtuaguyhd.com/ref.php? (easylistchina+easylist.txt: 41135) -.virtuaguyhd.com/ref\.php\? -# ||virtuagirl.com/ref.php? (easylistchina+easylist.txt: 41134) -.virtuagirl.com/ref\.php\? -# ||virool.com/widgets/$third-party (easylistchina+easylist.txt: 41133) -.virool.com/widgets/ -# ||viglink.com/api/products^$third-party (easylistchina+easylist.txt: 41132) -.viglink.com/api/products[^\w%.-] -# ||viglink.com/api/optimize^$third-party (easylistchina+easylist.txt: 41131) -.viglink.com/api/optimize[^\w%.-] -# ||viglink.com/api/insert^$third-party (easylistchina+easylist.txt: 41130) -.viglink.com/api/insert[^\w%.-] -# ||viglink.com/api/batch^$third-party (easylistchina+easylist.txt: 41129) -.viglink.com/api/batch[^\w%.-] -# ||vidyoda.com/fambaa/chnls/ADSgmts.ashx? (easylistchina+easylist.txt: 41128) -.vidyoda.com/fambaa/chnls/ADSgmts\.ashx\? -# ||vidible.tv/prod/tags/ (easylistchina+easylist.txt: 41127) -.vidible.tv/prod/tags/ -# ||vidible.tv/placement/vast/ (easylistchina+easylist.txt: 41126) -.vidible.tv/placement/vast/ -# ||videozr.com^$third-party (easylistchina+easylist.txt: 41125) -.videozr.com -# ||videoweed.es/js/aff.js (easylistchina+easylist.txt: 41124) -.videoweed.es/js/aff\.js -# ||viagogo.co.uk/feeds/widget.ashx? (easylistchina+easylist.txt: 41123) -.viagogo.co.uk/feeds/widget\.ashx\? -# ||veospot.com^*.html (easylistchina+easylist.txt: 41122) -.veospot.com/.*\.html -# ||vendor1.fitschigogerl.com^ (easylistchina+easylist.txt: 41121) -.vendor1.fitschigogerl.com -# ||vdownloader.com/pages/$subdocument,third-party (easylistchina+easylist.txt: 41120) -.vdownloader.com/pages/ -# ||vcnewsdaily.com/images/vcnews_right_banner.gif (easylistchina+easylist.txt: 41119) -.vcnewsdaily.com/images/vcnews_right_banner\.gif -# ||vast.videe.tv/vast-proxy/ (easylistchina+easylist.txt: 41118) -.vast.videe.tv/vast-proxy/ -# ||valuechecker.co.uk/banners/$third-party (easylistchina+easylist.txt: 41117) -.valuechecker.co.uk/banners/ -# ||ussearch.com/preview/banner/ (easylistchina+easylist.txt: 41116) -.ussearch.com/preview/banner/ -# ||usfine.com/images/sty_img/usfine.gif (easylistchina+easylist.txt: 41115) -.usfine.com/images/sty_img/usfine\.gif -# ||usersfiles.com/images/72890UF.png (easylistchina+easylist.txt: 41114) -.usersfiles.com/images/72890UF\.png -# ||usenetbucket.com^*-banner/ (easylistchina+easylist.txt: 41113) -.usenetbucket.com/.*-banner/ -# ||usenet.pw^$third-party (easylistchina+easylist.txt: 41112) -.usenet.pw -# ||urtig.net/scripts/js3caf.js (easylistchina+easylist.txt: 41111) -.urtig.net/scripts/js3caf\.js -# ||uploadstation.com/images/banners/ (easylistchina+easylist.txt: 41110) -.uploadstation.com/images/banners/ -# ||uploaded.to/js/layer.js (easylistchina+easylist.txt: 41109) -.uploaded.to/js/layer\.js -# ||uploaded.to/img/public/$third-party (easylistchina+easylist.txt: 41108) -.uploaded.to/img/public/ -# ||uploaded.net/img/public/$third-party (easylistchina+easylist.txt: 41107) -.uploaded.net/img/public/ -# ||upload2.com/upload2.html (easylistchina+easylist.txt: 41106) -.upload2.com/upload2\.html -# ||upickem.net^*/affiliates/$third-party (easylistchina+easylist.txt: 41105) -.upickem.net/.*/affiliates/ -# ||unsereuni.at/resources/img/$third-party (easylistchina+easylist.txt: 41104) -.unsereuni.at/resources/img/ -# ||united-domains.de^*/parking/ (easylistchina+easylist.txt: 41103) -.united-domains.de/.*/parking/ -# ||united-domains.de/parking/ (easylistchina+easylist.txt: 41102) -.united-domains.de/parking/ -# ||uniblue.com^*/affiliates/ (easylistchina+easylist.txt: 41101) -.uniblue.com/.*/affiliates/ -# ||ultimatewebtraffic.info/images/fbautocash (easylistchina+easylist.txt: 41100) -.ultimatewebtraffic.info/images/fbautocash -# ||ukrd.com/images/icons/itunes.png (easylistchina+easylist.txt: 41099) -.ukrd.com/images/icons/itunes\.png -# ||ukrd.com/images/icons/amazon.png (easylistchina+easylist.txt: 41098) -.ukrd.com/images/icons/amazon\.png -# ||ukrd.com/image/*-160x160.png (easylistchina+easylist.txt: 41097) -.ukrd.com/image/.*-160x160\.png -# ||ukrd.com/image/*-160x133.jpg (easylistchina+easylist.txt: 41096) -.ukrd.com/image/.*-160x133\.jpg -# ||ukcast.tv/adds/ (easylistchina+easylist.txt: 41095) -.ukcast.tv/adds/ -# ||ubuntudeal.co.za^$subdocument,third-party (easylistchina+easylist.txt: 41094) -.ubuntudeal.co.za -# ||u-loader.com/image/hotspot_ (easylistchina+easylist.txt: 41093) -.u-loader.com/image/hotspot_ -# ||twivert.com/external/banner234x60. (easylistchina+easylist.txt: 41092) -.twivert.com/external/banner234x60\. -# ||twinplan.com^ (easylistchina+easylist.txt: 41091) -.twinplan.com -# ||turner.com^*/promos/ (easylistchina+easylist.txt: 41090) -.turner.com/.*/promos/ -# ||turbotrafficsystem.com^*/banners/ (easylistchina+easylist.txt: 41089) -.turbotrafficsystem.com/.*/banners/ -# ||turbobit.net/refers/$third-party (easylistchina+easylist.txt: 41088) -.turbobit.net/refers/ -# ||turbobit.net/ref/$third-party (easylistchina+easylist.txt: 41087) -.turbobit.net/ref/ -# ||ttt.co.uk/TMConverter/$third-party (easylistchina+easylist.txt: 41086) -.ttt.co.uk/TMConverter/ -# ||tshirthell.com/img/affiliate_section/$third-party (easylistchina+easylist.txt: 41085) -.tshirthell.com/img/affiliate_section/ -# ||trivago.co.uk/uk/srv/$third-party (easylistchina+easylist.txt: 41084) -.trivago.co.uk/uk/srv/ -# ||tritondigital.com/ltflash.php? (easylistchina+easylist.txt: 41083) -.tritondigital.com/ltflash\.php\? -# ||tritondigital.com/lt?sid*&hasads= (easylistchina+easylist.txt: 41082) -.tritondigital.com/lt\?sid.*&hasads= -# ||tribwgnam.files.wordpress.com^*reskin2. (easylistchina+easylist.txt: 41080) -.tribwgnam.files.wordpress.com/.*reskin2\. -# ||tribktla.files.wordpress.com/*-639x125-sponsorship.jpg? (easylistchina+easylist.txt: 41079) -.tribktla.files.wordpress.com/.*-639x125-sponsorship\.jpg\? -# ||trialpay.com^*&dw-ptid=$third-party (easylistchina+easylist.txt: 41078) -.trialpay.com/.*&dw-ptid= -# ||trialfunder.com/banner/ (easylistchina+easylist.txt: 41077) -.trialfunder.com/banner/ -# ||trhnt.com/sx.tr.js (easylistchina+easylist.txt: 41076) -.trhnt.com/sx\.tr\.js -# ||tremormedia.com^*_preroll_ (easylistchina+easylist.txt: 41075) -.tremormedia.com/.*_preroll_ -# ||tremormedia.com^*/tpacudeoplugin46.swf (easylistchina+easylist.txt: 41074) -.tremormedia.com/.*/tpacudeoplugin46\.swf -# ||tremormedia.com/embed/js/*_ads.js (easylistchina+easylist.txt: 41073) -.tremormedia.com/embed/js/.*_ads\.js -# ||treatme.co.nz/Affiliates/ (easylistchina+easylist.txt: 41072) -.treatme.co.nz/Affiliates/ -# ||travelmail.traveltek.net^$third-party (easylistchina+easylist.txt: 41070) -.travelmail.traveltek.net -# ||tradeboss.com/1/banners/ (easylistchina+easylist.txt: 41069) -.tradeboss.com/1/banners/ -# ||track.bcvcmedia.com^ (easylistchina+easylist.txt: 41068) -.track.bcvcmedia.com -# ||traceybell.co.uk^$subdocument,third-party (easylistchina+easylist.txt: 41067) -.traceybell.co.uk -# ||toysrus.com/graphics/promo/ (easylistchina+easylist.txt: 41066) -.toysrus.com/graphics/promo/ -# ||townsquareblogs.com^*=sponsor& (easylistchina+easylist.txt: 41065) -.townsquareblogs.com/.*=sponsor& -# ||townnews.com^*/upickem-deals.js? (easylistchina+easylist.txt: 41064) -.townnews.com/.*/upickem-deals\.js\? -# ||townnews.com^*/dealwidget.css? (easylistchina+easylist.txt: 41063) -.townnews.com/.*/dealwidget\.css\? -# ||tosol.co.uk/international.php?$third-party (easylistchina+easylist.txt: 41062) -.tosol.co.uk/international\.php\? -# ||torguard.net/images/aff/ (easylistchina+easylist.txt: 41061) -.torguard.net/images/aff/ -# ||toptenreviews.com/w/af_widget.js$third-party (easylistchina+easylist.txt: 41060) -.toptenreviews.com/w/af_widget\.js -# ||toptenreviews.com/r/c/ (easylistchina+easylist.txt: 41059) -.toptenreviews.com/r/c/ -# ||topmedia.com/external/ (easylistchina+easylist.txt: 41057) -.topmedia.com/external/ -# ||topbinaryaffiliates.ck-cdn.com^$third-party (easylistchina+easylist.txt: 41056) -.topbinaryaffiliates.ck-cdn.com -# ||top5result.com/promo/ (easylistchina+easylist.txt: 41055) -.top5result.com/promo/ -# ||tonefuse.s3.amazonaws.com/clientjs/ (easylistchina+easylist.txt: 41054) -.tonefuse.s3.amazonaws.com/clientjs/ -# ||todaysfinder.com^$subdocument,third-party (easylistchina+easylist.txt: 41053) -.todaysfinder.com -# ||tmz.vo.llnwd.net^*_rightrail_200x987.swf (easylistchina+easylist.txt: 41052) -.tmz.vo.llnwd.net/.*_rightrail_200x987\.swf -# ||tmbattle.com/images/promo_ (easylistchina+easylist.txt: 41051) -.tmbattle.com/images/promo_ -# ||tiqiq.com/Tiqiq/WidgetInactiveIFrame.aspx?WidgetID=*&PublisherID=$subdocument,third-party (easylistchina+easylist.txt: 41050) -.tiqiq.com/Tiqiq/WidgetInactiveIFrame\.aspx\?WidgetID=.*&PublisherID= -# ||tipico.*?affiliateId=$third-party (easylistchina+easylist.txt: 41049) -.tipico.*./.*\?affiliateId= -# ||tipico.*/affiliate/$third-party (easylistchina+easylist.txt: 41048) -.tipico.*./(.*/)?affiliate/ -# ||tinyurl.com/4x848hd$subdocument (easylistchina+easylist.txt: 41047) -.tinyurl.com/4x848hd -# ||timesinternet.in/ad/ (easylistchina+easylist.txt: 41046) -.timesinternet.in/ad/ -# ||tigerdirect.com^*/affiliate_ (easylistchina+easylist.txt: 41045) -.tigerdirect.com/.*/affiliate_ -# ||tickles.ie^$subdocument,third-party (easylistchina+easylist.txt: 41044) -.tickles.ie -# ||tickles.co.uk^$subdocument,third-party (easylistchina+easylist.txt: 41043) -.tickles.co.uk -# ||ticketmaster.com/promotionalcontent/ (easylistchina+easylist.txt: 41042) -.ticketmaster.com/promotionalcontent/ -# ||ticketkai.com/banner/ (easylistchina+easylist.txt: 41041) -.ticketkai.com/banner/ -# ||ti.tradetracker.net^ (easylistchina+easylist.txt: 41040) -.ti.tradetracker.net -# ||thirdpartycdn.lumovies.com^$third-party (easylistchina+easylist.txt: 41039) -.thirdpartycdn.lumovies.com -# ||thetechnologyblog.net^*/bp_internet/ (easylistchina+easylist.txt: 41038) -.thetechnologyblog.net/.*/bp_internet/ -# ||theselfdefenseco.com/?affid=$third-party (easylistchina+easylist.txt: 41037) -.theselfdefenseco.com/\?affid= -# ||theseforums.com/visitScript/ (easylistchina+easylist.txt: 41036) -.theseforums.com/visitScript/ -# ||theseblogs.com/visitScript/ (easylistchina+easylist.txt: 41035) -.theseblogs.com/visitScript/ -# ||thereadystore.com/affiliate/ (easylistchina+easylist.txt: 41034) -.thereadystore.com/affiliate/ -# ||themis-media.com^*/sponsorships/ (easylistchina+easylist.txt: 41033) -.themis-media.com/.*/sponsorships/ -# ||themify.me/banners/$third-party (easylistchina+easylist.txt: 41032) -.themify.me/banners/ -# ||themes420.com/bnrsbtns/ (easylistchina+easylist.txt: 41031) -.themes420.com/bnrsbtns/ -# ||thebigchair.com.au^$subdocument,third-party (easylistchina+easylist.txt: 41030) -.thebigchair.com.au -# ||theatm.info/images/$third-party (easylistchina+easylist.txt: 41029) -.theatm.info/images/ -# ||thatfreething.com/images/banners/ (easylistchina+easylist.txt: 41028) -.thatfreething.com/images/banners/ -# ||thaiforlove.com/userfiles/affb- (easylistchina+easylist.txt: 41027) -.thaiforlove.com/userfiles/affb- -# ||textlinks.com/images/banners/ (easylistchina+easylist.txt: 41026) -.textlinks.com/images/banners/ -# ||tedswoodworking.com/images/banners/ (easylistchina+easylist.txt: 41025) -.tedswoodworking.com/images/banners/ -# ||techbargains.com/scripts/banner.js$third-party (easylistchina+easylist.txt: 41024) -.techbargains.com/scripts/banner\.js -# ||techbargains.com/inc_iframe_deals_feed.cfm?$third-party (easylistchina+easylist.txt: 41023) -.techbargains.com/inc_iframe_deals_feed\.cfm\? -# ||tcmwebcorp.com/dtm/tc_global_dtm_delivery.js (easylistchina+easylist.txt: 41022) -.tcmwebcorp.com/dtm/tc_global_dtm_delivery\.js -# ||tap.more-results.net^ (easylistchina+easylist.txt: 41021) -.tap.more-results.net -# ||tankionline.com/tankiref.swf (easylistchina+easylist.txt: 41020) -.tankionline.com/tankiref\.swf -# ||talkfusion.com^*/banners/ (easylistchina+easylist.txt: 41019) -.talkfusion.com/.*/banners/ -# ||takeover.bauermedia.co.uk^$~stylesheet (easylistchina+easylist.txt: 41018) -.takeover.bauermedia.co.uk -# ||take2.co.za/misc/bannerscript.php? (easylistchina+easylist.txt: 41017) -.take2.co.za/misc/bannerscript\.php\? -# ||tag.regieci.com^$third-party (easylistchina+easylist.txt: 41016) -.tag.regieci.com -# ||syndication1.viraladnetwork.net^ (easylistchina+easylist.txt: 41015) -.syndication1.viraladnetwork.net -# ||syndication.visualthesaurus.com/std/vtad.js (easylistchina+easylist.txt: 41014) -.syndication.visualthesaurus.com/std/vtad\.js -# ||syndication.jsadapi.com^ (easylistchina+easylist.txt: 41013) -.syndication.jsadapi.com -# ||syndicate.payloadz.com^$third-party (easylistchina+easylist.txt: 41012) -.syndicate.payloadz.com -# ||swimg.net^*/banners/ (easylistchina+easylist.txt: 41011) -.swimg.net/.*/banners/ -# ||sweeva.com/widget.php?w=$third-party (easylistchina+easylist.txt: 41010) -.sweeva.com/widget\.php\?w= -# ||sweetwater.com/feature/$third-party (easylistchina+easylist.txt: 41009) -.sweetwater.com/feature/ -# ||sweed.to/affiliates/ (easylistchina+easylist.txt: 41008) -.sweed.to/affiliates/ -# ||sweed.to/?pid=$third-party (easylistchina+easylist.txt: 41007) -.sweed.to/\?pid= -# ||swarmjam.com^$script,third-party (easylistchina+easylist.txt: 41006) -.swarmjam.com -# ||svcs.ebay.com/services/search/FindingService/*^affiliate.tracking$third-party (easylistchina+easylist.txt: 41005) -.svcs.ebay.com/services/search/FindingService/.*[^\w%.-]affiliate\.tracking -# ||survivaltop50.com/wp-content/uploads/*/Survival215x150Link.png (easylistchina+easylist.txt: 41004) -.survivaltop50.com/wp-content/uploads/.*/Survival215x150Link\.png -# ||surveywriter.net^$script,third-party (easylistchina+easylist.txt: 41003) -.surveywriter.net -# ||surveymonkey.com/jspop.aspx?$third-party (easylistchina+easylist.txt: 41002) -.surveymonkey.com/jspop\.aspx\? -# ||survey.g.doubleclick.net^ (easylistchina+easylist.txt: 41001) -.survey.g.doubleclick.net -# ||surf100sites.com/images/banner_ (easylistchina+easylist.txt: 41000) -.surf100sites.com/images/banner_ -# ||supply.upjers.com^$third-party (easylistchina+easylist.txt: 40999) -.supply.upjers.com -# ||supersport.com/content/Sponsors (easylistchina+easylist.txt: 40998) -.supersport.com/content/Sponsors -# ||supersport.com/content/2014_Sponsor (easylistchina+easylist.txt: 40997) -.supersport.com/content/2014_Sponsor -# ||supersport.co.za^*180x254 (easylistchina+easylist.txt: 40996) -.supersport.co.za/.*180x254 -# ||superherostuff.com/pages/cbmpage.aspx?*&cbmid=$subdocument,third-party (easylistchina+easylist.txt: 40995) -.superherostuff.com/pages/cbmpage\.aspx\?.*&cbmid= -# ||subliminalmp3s.com^*/banners/ (easylistchina+easylist.txt: 40994) -.subliminalmp3s.com/.*/banners/ -# ||stylefind.com^*?campaign=$subdocument,third-party (easylistchina+easylist.txt: 40993) -.stylefind.com/.*\?campaign= -# ||stuff-nzwhistleout.s3.amazonaws.com^ (easylistchina+easylist.txt: 40992) -.stuff-nzwhistleout.s3.amazonaws.com -# ||structuredchannel.com/sw/swchannel/images/MarketingAssets/*/BannerAd (easylistchina+easylist.txt: 40991) -.structuredchannel.com/sw/swchannel/images/MarketingAssets/.*/BannerAd -# ||strikeadcdn.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 40990) -.strikeadcdn.s3.amazonaws.com -# ||streamtheworld.com/ondemand/creative? (easylistchina+easylist.txt: 40989) -.streamtheworld.com/ondemand/creative\? -# ||streamtheworld.com/ondemand/ars?type=preroll$object-subrequest (easylistchina+easylist.txt: 40988) -.streamtheworld.com/ondemand/ars\?type=preroll -# ||storage.to/affiliate/ (easylistchina+easylist.txt: 40987) -.storage.to/affiliate/ -# ||stats.sitesuite.org^ (easylistchina+easylist.txt: 40986) -.stats.sitesuite.org -# ||stats.hosting24.com^ (easylistchina+easylist.txt: 40985) -.stats.hosting24.com -# ||staticworld.net/images/*_skin_ (easylistchina+easylist.txt: 40984) -.staticworld.net/images/.*_skin_ -# ||static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2.jpg (easylistchina+easylist.txt: 40983) -.static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2\.jpg -# ||static.tradetracker.net^$third-party (easylistchina+easylist.txt: 40982) -.static.tradetracker.net -# ||static.multiplayuk.com/images/w/w- (easylistchina+easylist.txt: 40981) -.static.multiplayuk.com/images/w/w- -# ||static.criteo.net/js/duplo^$third-party (easylistchina+easylist.txt: 40980) -.static.criteo.net/js/duplo[^\w%.-] -# ||static.criteo.net/images^$third-party (easylistchina+easylist.txt: 40979) -.static.criteo.net/images[^\w%.-] -# ||static.criteo.net/flash^$third-party (easylistchina+easylist.txt: 40978) -.static.criteo.net/flash[^\w%.-] -# ||static.criteo.net/design^$third-party (easylistchina+easylist.txt: 40977) -.static.criteo.net/design[^\w%.-] -# ||static.criteo.com/js/duplo^$third-party (easylistchina+easylist.txt: 40976) -.static.criteo.com/js/duplo[^\w%.-] -# ||static.criteo.com/images^$third-party (easylistchina+easylist.txt: 40975) -.static.criteo.com/images[^\w%.-] -# ||static.criteo.com/flash^$third-party (easylistchina+easylist.txt: 40974) -.static.criteo.com/flash[^\w%.-] -# ||static.criteo.com/design^$third-party (easylistchina+easylist.txt: 40973) -.static.criteo.com/design[^\w%.-] -# ||static.*.criteo.net/js/duplo^$third-party (easylistchina+easylist.txt: 40972) -.static.*./.*\.criteo\.net/js/duplo[^\w%.-] -.static.*.criteo.net/js/duplo[^\w%.-] -# ||static.*.criteo.net/images^$third-party (easylistchina+easylist.txt: 40971) -.static.*./.*\.criteo\.net/images[^\w%.-] -.static.*.criteo.net/images[^\w%.-] -# ||static.*.criteo.net/flash^$third-party (easylistchina+easylist.txt: 40970) -.static.*./.*\.criteo\.net/flash[^\w%.-] -.static.*.criteo.net/flash[^\w%.-] -# ||static.*.criteo.net/design^$third-party (easylistchina+easylist.txt: 40969) -.static.*./.*\.criteo\.net/design[^\w%.-] -.static.*.criteo.net/design[^\w%.-] -# ||stargames.com/bridge.asp?$third-party (easylistchina+easylist.txt: 40968) -.stargames.com/bridge\.asp\? -# ||stalliongold.com/images/*x$third-party (easylistchina+easylist.txt: 40967) -.stalliongold.com/images/.*x -# ||stacksocial.com^*?aid=$third-party (easylistchina+easylist.txt: 40966) -.stacksocial.com/.*\?aid= -# ||stacksocial.com/bundles/$third-party (easylistchina+easylist.txt: 40965) -.stacksocial.com/bundles/ -# ||ssshoesss.ro/banners/ (easylistchina+easylist.txt: 40964) -.ssshoesss.ro/banners/ -# ||ssl-images-amazon.com/images/*/banner/$third-party (easylistchina+easylist.txt: 40963) -.ssl-images-amazon.com/images/.*/banner/ -# ||srwww1.com^*/affiliate/ (easylistchina+easylist.txt: 40962) -.srwww1.com/.*/affiliate/ -# ||srv.dynamicyield.com^$third-party (easylistchina+easylist.txt: 40960) -.srv.dynamicyield.com -# ||squarespace.evyy.net^ (easylistchina+easylist.txt: 40959) -.squarespace.evyy.net -# ||sproutnova.com/serve.php$third-party (easylistchina+easylist.txt: 40958) -.sproutnova.com/serve\.php -# ||sportsdigitalcontent.com/betting/ (easylistchina+easylist.txt: 40957) -.sportsdigitalcontent.com/betting/ -# ||sportsbetaffiliates.com.au^$third-party (easylistchina+easylist.txt: 40956) -.sportsbetaffiliates.com.au -# ||sportingbet.com.au/sbacontent/puntersparadise.html (easylistchina+easylist.txt: 40955) -.sportingbet.com.au/sbacontent/puntersparadise\.html -# ||sponsorandwin.com/images/banner- (easylistchina+easylist.txt: 40954) -.sponsorandwin.com/images/banner- -# ||splashpagemaker.com/images/$third-party (easylistchina+easylist.txt: 40953) -.splashpagemaker.com/images/ -# ||spilcdn.com/vda/vendor/flowplayer/ova.swf (easylistchina+easylist.txt: 40952) -.spilcdn.com/vda/vendor/flowplayer/ova\.swf -# ||spilcdn.com/vda/css/sgadfamily2.css (easylistchina+easylist.txt: 40951) -.spilcdn.com/vda/css/sgadfamily2\.css -# ||spilcdn.com/vda/css/sgadfamily.css (easylistchina+easylist.txt: 40950) -.spilcdn.com/vda/css/sgadfamily\.css -# ||speedtv.com.edgesuite.net/img/static/takeovers/ (easylistchina+easylist.txt: 40949) -.speedtv.com.edgesuite.net/img/static/takeovers/ -# ||speedppc.com^*/banners/ (easylistchina+easylist.txt: 40948) -.speedppc.com/.*/banners/ -# ||speedbit.com^*-banner1- (easylistchina+easylist.txt: 40947) -.speedbit.com/.*-banner1- -# ||softneo.com/popup.js (easylistchina+easylist.txt: 40946) -.softneo.com/popup\.js -# ||socialorganicleads.com/interstitial/ (easylistchina+easylist.txt: 40945) -.socialorganicleads.com/interstitial/ -# ||socialmonkee.com/images/$third-party (easylistchina+easylist.txt: 40944) -.socialmonkee.com/images/ -# ||sndkorea.nowcdn.co.kr^$third-party (easylistchina+easylist.txt: 40943) -.sndkorea.nowcdn.co.kr -# ||snapdeal.com^*.php$third-party (easylistchina+easylist.txt: 40942) -.snapdeal.com/.*\.php -# ||snacktools.net/bannersnack/ (easylistchina+easylist.txt: 40940) -.snacktools.net/bannersnack/ -# ||smilepk.com/bnrsbtns/ (easylistchina+easylist.txt: 40939) -.smilepk.com/bnrsbtns/ -# ||smartlinks.dianomi.com^$third-party (easylistchina+easylist.txt: 40938) -.smartlinks.dianomi.com -# ||smartdestinations.com/ai/$third-party (easylistchina+easylist.txt: 40937) -.smartdestinations.com/ai/ -# ||smart.styria-digital.com^ (easylistchina+easylist.txt: 40936) -.smart.styria-digital.com -# ||slysoft.com/img/banner/$third-party (easylistchina+easylist.txt: 40935) -.slysoft.com/img/banner/ -# ||slot.union.ucweb.com^ (easylistchina+easylist.txt: 40934) -.slot.union.ucweb.com -# ||slickdeals.meritline.com^$third-party (easylistchina+easylist.txt: 40933) -.slickdeals.meritline.com -# ||skydsl.eu/banner/$third-party (easylistchina+easylist.txt: 40932) -.skydsl.eu/banner/ -# ||sitescout-video-cdn.edgesuite.net^ (easylistchina+easylist.txt: 40931) -.sitescout-video-cdn.edgesuite.net -# ||sitegrip.com^*/swagbucks- (easylistchina+easylist.txt: 40930) -.sitegrip.com/.*/swagbucks- -# ||sitegiant.my/affiliate/$third-party (easylistchina+easylist.txt: 40929) -.sitegiant.my/affiliate/ -# ||site5.com/creative/*/234x60.gif (easylistchina+easylist.txt: 40928) -.site5.com/creative/.*/234x60\.gif -# ||site5.com/creative/$third-party (easylistchina+easylist.txt: 40927) -.site5.com/creative/ -# ||sisters-magazine.com/iframebanners/$third-party (easylistchina+easylist.txt: 40926) -.sisters-magazine.com/iframebanners/ -# ||sis.amazon.com/iu?$third-party (easylistchina+easylist.txt: 40925) -.sis.amazon.com/iu\? -# ||singlemuslim.com/affiliates/ (easylistchina+easylist.txt: 40924) -.singlemuslim.com/affiliates/ -# ||singlehop.com/affiliates/$third-party (easylistchina+easylist.txt: 40923) -.singlehop.com/affiliates/ -# ||simplyfwd.com/?dn=*&pid=$subdocument (easylistchina+easylist.txt: 40922) -.simplyfwd.com/\?dn=.*&pid= -# ||simplifydigital.co.uk^*/widget_premium_bb.htm (easylistchina+easylist.txt: 40921) -.simplifydigital.co.uk/.*/widget_premium_bb\.htm -# ||sidekickunlock.net/banner/ (easylistchina+easylist.txt: 40920) -.sidekickunlock.net/banner/ -# ||shragle.com^*?ref= (easylistchina+easylist.txt: 40919) -.shragle.com/.*\?ref= -# ||shows-tv.net/codepopup.js (easylistchina+easylist.txt: 40918) -.shows-tv.net/codepopup\.js -# ||shorte.st^*/referral_banners/ (easylistchina+easylist.txt: 40917) -.shorte.st/.*/referral_banners/ -# ||shorte.st/link-converter.min.js (easylistchina+easylist.txt: 40916) -.shorte.st/link-converter\.min\.js -# ||shopping.com/sc/pac/sdc_widget_v2.0_proxy.js$third-party (easylistchina+easylist.txt: 40915) -.shopping.com/sc/pac/sdc_widget_v2\.0_proxy\.js -# ||shopilize.com^$third-party (easylistchina+easylist.txt: 40914) -.shopilize.com -# ||shopbrazos.com/widgets/ (easylistchina+easylist.txt: 40913) -.shopbrazos.com/widgets/ -# ||shop4tech.com^*/banner/ (easylistchina+easylist.txt: 40912) -.shop4tech.com/.*/banner/ -# ||shop-top1000.com/images/ (easylistchina+easylist.txt: 40911) -.shop-top1000.com/images/ -# ||sharingzone.net/images/banner$third-party (easylistchina+easylist.txt: 40910) -.sharingzone.net/images/banner -# ||shariahprogram.ca/banners/ (easylistchina+easylist.txt: 40909) -.shariahprogram.ca/banners/ -# ||shareflare.net/images/$third-party (easylistchina+easylist.txt: 40908) -.shareflare.net/images/ -# ||shaadi.com^*/get-html-banner.php? (easylistchina+easylist.txt: 40907) -.shaadi.com/.*/get-html-banner\.php\? -# ||shaadi.com^*/get-banner.php? (easylistchina+easylist.txt: 40906) -.shaadi.com/.*/get-banner\.php\? -# ||sfstatic.com^*/js/fl.js$third-party (easylistchina+easylist.txt: 40905) -.sfstatic.com/.*/js/fl\.js -# ||sfm-offshore.com/images/banners/ (easylistchina+easylist.txt: 40904) -.sfm-offshore.com/images/banners/ -# ||sfimg.com/SFIBanners/ (easylistchina+easylist.txt: 40903) -.sfimg.com/SFIBanners/ -# ||sfimg.com/images/banners/ (easylistchina+easylist.txt: 40902) -.sfimg.com/images/banners/ -# ||sfcdn.in/sailfish/$script (easylistchina+easylist.txt: 40901) -.sfcdn.in/sailfish/ -# ||settleships.com^$third-party (easylistchina+easylist.txt: 40900) -.settleships.com -# ||service.smscoin.com/js/sendpic.js (easylistchina+easylist.txt: 40898) -.service.smscoin.com/js/sendpic\.js -# ||server4.pro/images/banner.jpg (easylistchina+easylist.txt: 40897) -.server4.pro/images/banner\.jpg -# ||server.freegamesall.com^$third-party (easylistchina+easylist.txt: 40896) -.server.freegamesall.com -# ||servedby.yell.com^$third-party (easylistchina+easylist.txt: 40895) -.servedby.yell.com -# ||servedby.keygamesnetwork.com^ (easylistchina+easylist.txt: 40894) -.servedby.keygamesnetwork.com -# ||selectperformers.com/images/elements/bannercolours/ (easylistchina+easylist.txt: 40893) -.selectperformers.com/images/elements/bannercolours/ -# ||selectperformers.com/images/a/ (easylistchina+easylist.txt: 40892) -.selectperformers.com/images/a/ -# ||seedsman.com/affiliate/$third-party (easylistchina+easylist.txt: 40891) -.seedsman.com/affiliate/ -# ||seedboxco.net/*.swf$third-party (easylistchina+easylist.txt: 40890) -.seedboxco.net/.*\.swf -# ||secureupload.eu/banners/ (easylistchina+easylist.txt: 40889) -.secureupload.eu/banners/ -# ||secureserver.net^*/event? (easylistchina+easylist.txt: 40888) -.secureserver.net/.*/event\? -# ||securep2p.com^$subdocument,third-party (easylistchina+easylist.txt: 40887) -.securep2p.com -# ||secretmedia.s3.amazonaws.com^ (easylistchina+easylist.txt: 40886) -.secretmedia.s3.amazonaws.com -# ||secondspin.com/twcontent/ (easylistchina+easylist.txt: 40885) -.secondspin.com/twcontent/ -# ||searchportal.information.com/?$third-party (easylistchina+easylist.txt: 40884) -.searchportal.information.com/\? -# ||scribol.com/txwidget$third-party (easylistchina+easylist.txt: 40883) -.scribol.com/txwidget -# ||screenconnect.com/miscellaneous/ScreenConnect-$image,third-party (easylistchina+easylist.txt: 40882) -.screenconnect.com/miscellaneous/ScreenConnect- -# ||scoopdragon.com/images/Goodgame-Empire-MPU.jpg (easylistchina+easylist.txt: 40881) -.scoopdragon.com/images/Goodgame-Empire-MPU\.jpg -# ||sciremedia.tv/images/banners/ (easylistchina+easylist.txt: 40880) -.sciremedia.tv/images/banners/ -# ||sciencecareers.org/widget/$third-party (easylistchina+easylist.txt: 40879) -.sciencecareers.org/widget/ -# ||schurzdigital.com/deals/widget/ (easylistchina+easylist.txt: 40878) -.schurzdigital.com/deals/widget/ -# ||schenkelklopfer.org^*pop.js (easylistchina+easylist.txt: 40877) -.schenkelklopfer.org/.*pop\.js -# ||satshop.tv/images/banner/$third-party (easylistchina+easylist.txt: 40876) -.satshop.tv/images/banner/ -# ||sat-shop.co.uk/images/$third-party (easylistchina+easylist.txt: 40875) -.sat-shop.co.uk/images/ -# ||salemwebnetwork.com/Stations/images/SiteWrapper/ (easylistchina+easylist.txt: 40874) -.salemwebnetwork.com/Stations/images/SiteWrapper/ -# ||salefile.googlecode.com^$third-party (easylistchina+easylist.txt: 40873) -.salefile.googlecode.com -# ||sailthru.com^*/horizon.js (easylistchina+easylist.txt: 40872) -.sailthru.com/.*/horizon\.js -# ||safarinow.com/affiliate-zone/ (easylistchina+easylist.txt: 40871) -.safarinow.com/affiliate-zone/ -# ||s3.amazonaws.com/draftset/banners/ (easylistchina+easylist.txt: 40870) -.s3.amazonaws.com/draftset/banners/ -# ||s1now.com^*/takeovers/ (easylistchina+easylist.txt: 40869) -.s1now.com/.*/takeovers/ -# ||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com^$third-party (easylistchina+easylist.txt: 40868) -.s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com -# ||s1.wp.com^$subdocument,third-party (easylistchina+easylist.txt: 40867) -.s1.wp.com -# ||s.cxt.ms^$third-party (easylistchina+easylist.txt: 40866) -.s.cxt.ms -# ||s-yoolk-billboard-assets.yoolk.com^ (easylistchina+easylist.txt: 40865) -.s-yoolk-billboard-assets.yoolk.com -# ||s-yoolk-banner-assets.yoolk.com^ (easylistchina+easylist.txt: 40864) -.s-yoolk-banner-assets.yoolk.com -# ||s-assets.tp-cdn.com/widgets/*/vwid/*.html? (easylistchina+easylist.txt: 40863) -.s-assets.tp-cdn.com/widgets/.*/vwid/.*\.html\? -# ||rya.rockyou.com^$third-party (easylistchina+easylist.txt: 40862) -.rya.rockyou.com -# ||russian-dreams.net/static/js/$third-party (easylistchina+easylist.txt: 40861) -.russian-dreams.net/static/js/ -# ||runerich.com/images/sty_img/runerich.gif (easylistchina+easylist.txt: 40859) -.runerich.com/images/sty_img/runerich\.gif -# ||rover.ebay.com^*&adtype=$third-party (easylistchina+easylist.txt: 40858) -.rover.ebay.com/.*&adtype= -# ||rotator.tradetracker.net^ (easylistchina+easylist.txt: 40857) -.rotator.tradetracker.net -# ||rotabanner.kulichki.net^ (easylistchina+easylist.txt: 40856) -.rotabanner.kulichki.net -# ||roshantv.com/adad. (easylistchina+easylist.txt: 40855) -.roshantv.com/adad\. -# ||roshansports.com/iframe.php (easylistchina+easylist.txt: 40854) -.roshansports.com/iframe\.php -# ||roia.hutchmedia.com^$third-party (easylistchina+easylist.txt: 40853) -.roia.hutchmedia.com -# ||roadrecord.co.uk/widget.js? (easylistchina+easylist.txt: 40852) -.roadrecord.co.uk/widget\.js\? -# ||roadcomponentsdb.com^$subdocument,third-party (easylistchina+easylist.txt: 40851) -.roadcomponentsdb.com -# ||richmedia.yahoo.com^$third-party (easylistchina+easylist.txt: 40850) -.richmedia.yahoo.com -# ||ribbon.india.com^$third-party (easylistchina+easylist.txt: 40849) -.ribbon.india.com -# ||rewards1.com/images/referralbanners/$third-party (easylistchina+easylist.txt: 40848) -.rewards1.com/images/referralbanners/ -# ||revealads.appspot.com^ (easylistchina+easylist.txt: 40847) -.revealads.appspot.com -# ||resources.heavenmedia.net/selection.php? (easylistchina+easylist.txt: 40846) -.resources.heavenmedia.net/selection\.php\? -# ||res3.feedsportal.com^ (easylistchina+easylist.txt: 40845) -.res3.feedsportal.com -# ||relink.us/images/$third-party (easylistchina+easylist.txt: 40843) -.relink.us/images/ -# ||rehost.to/?ref= (easylistchina+easylist.txt: 40842) -.rehost.to/\?ref= -# ||regnow.com/vendor/ (easylistchina+easylist.txt: 40841) -.regnow.com/vendor/ -# ||regmyudid.com^*/index.html$third-party (easylistchina+easylist.txt: 40840) -.regmyudid.com/.*/index\.html -# ||redtram.com^$script,third-party (easylistchina+easylist.txt: 40839) -.redtram.com -# ||redflagdeals.com/dealoftheday/widgets/$third-party (easylistchina+easylist.txt: 40838) -.redflagdeals.com/dealoftheday/widgets/ -# ||redbeacon.com/widget/$third-party (easylistchina+easylist.txt: 40837) -.redbeacon.com/widget/ -# ||red-tube.com^*.php?wmid=*&kamid=*&wsid=$third-party (easylistchina+easylist.txt: 40836) -.red-tube.com/.*\.php\?wmid=.*&kamid=.*&wsid= -# ||realwritingjobs.com^*/banners/ (easylistchina+easylist.txt: 40835) -.realwritingjobs.com/.*/banners/ -# ||readme.ru/informer/$third-party (easylistchina+easylist.txt: 40834) -.readme.ru/informer/ -# ||rdio.com/media/images/affiliate/$third-party (easylistchina+easylist.txt: 40833) -.rdio.com/media/images/affiliate/ -# ||rcm*.amazon.$third-party (easylistchina+easylist.txt: 40832) -.rcm*./.*\.amazon\. -.rcm*.amazon.*. -# ||rbth.ru/widget/$third-party (easylistchina+easylist.txt: 40831) -.rbth.ru/widget/ -# ||ratesupermarket.ca/widgets/ (easylistchina+easylist.txt: 40830) -.ratesupermarket.ca/widgets/ -# ||rapidjazz.com/banner_rotation/ (easylistchina+easylist.txt: 40829) -.rapidjazz.com/banner_rotation/ -# ||rapidgator.net/images/pics/*_300%D1%85250_ (easylistchina+easylist.txt: 40828) -.rapidgator.net/images/pics/.*_300%D1%85250_ -# ||radley.co.uk^*/Affiliate/ (easylistchina+easylist.txt: 40827) -.radley.co.uk/.*/Affiliate/ -# ||radiotown.com/splash/images/*_960x600_ (easylistchina+easylist.txt: 40826) -.radiotown.com/splash/images/.*_960x600_ -# ||radioshack.com^*/promo/ (easylistchina+easylist.txt: 40825) -.radioshack.com/.*/promo/ -# ||radioreference.com/sm/300x75_v3.jpg (easylistchina+easylist.txt: 40824) -.radioreference.com/sm/300x75_v3\.jpg -# ||radiocentre.ca/randomimages/$third-party (easylistchina+easylist.txt: 40823) -.radiocentre.ca/randomimages/ -# ||rack.bauermedia.co.uk^ (easylistchina+easylist.txt: 40818) -.rack.bauermedia.co.uk -# ||racebets.com/media.php? (easylistchina+easylist.txt: 40817) -.racebets.com/media\.php\? -# ||quirk.biz/webtracking/ (easylistchina+easylist.txt: 40816) -.quirk.biz/webtracking/ -# ||quickflix*.gridserver.com^$third-party (easylistchina+easylist.txt: 40815) -.quickflix*./.*\.gridserver\.com[^\w%.-] -.quickflix*.gridserver.com -# ||qualoo.net/now/interstitial/ (easylistchina+easylist.txt: 40814) -.qualoo.net/now/interstitial/ -# ||putlocker.com/images/banners/$third-party (easylistchina+easylist.txt: 40813) -.putlocker.com/images/banners/ -# ||purevpn.com/affiliates/ (easylistchina+easylist.txt: 40812) -.purevpn.com/affiliates/ -# ||puntersparadise.com.au/banners/ (easylistchina+easylist.txt: 40811) -.puntersparadise.com.au/banners/ -# ||pubs.hiddennetwork.com^ (easylistchina+easylist.txt: 40810) -.pubs.hiddennetwork.com -# ||public.porn.fr^$third-party (easylistchina+easylist.txt: 40809) -.public.porn.fr -# ||pub.sapo.pt/vast.php$object-subrequest (easylistchina+easylist.txt: 40808) -.pub.sapo.pt/vast\.php -# ||pub.dreamboxcart.com^$third-party (easylistchina+easylist.txt: 40807) -.pub.dreamboxcart.com -# ||pub.betclick.com^ (easylistchina+easylist.txt: 40806) -.pub.betclick.com -# ||pub.aujourdhui.com^$third-party (easylistchina+easylist.txt: 40805) -.pub.aujourdhui.com -# ||proxysolutions.net/affiliates/ (easylistchina+easylist.txt: 40804) -.proxysolutions.net/affiliates/ -# ||proxyroll.com/proxybanner.php (easylistchina+easylist.txt: 40803) -.proxyroll.com/proxybanner\.php -# ||proxynoid.com/images/referrals/ (easylistchina+easylist.txt: 40802) -.proxynoid.com/images/referrals/ -# ||proxy.org/blasts.gif (easylistchina+easylist.txt: 40801) -.proxy.org/blasts\.gif -# ||proxies2u.com/images/btn/$third-party (easylistchina+easylist.txt: 40800) -.proxies2u.com/images/btn/ -# ||propgoluxury.com/partners/$third-party (easylistchina+easylist.txt: 40799) -.propgoluxury.com/partners/ -# ||promotions.iasbet.com^ (easylistchina+easylist.txt: 40798) -.promotions.iasbet.com -# ||promote.pair.com^ (easylistchina+easylist.txt: 40797) -.promote.pair.com -# ||promos.fling.com^ (easylistchina+easylist.txt: 40796) -.promos.fling.com -# ||promo.musicradio.com^ (easylistchina+easylist.txt: 40795) -.promo.musicradio.com -# ||pro-gmedia.com^*/skins/ (easylistchina+easylist.txt: 40793) -.pro-gmedia.com/.*/skins/ -# ||prizerebel.com/images/banner$third-party (easylistchina+easylist.txt: 40792) -.prizerebel.com/images/banner -# ||privatewifi.com/swf/banners/ (easylistchina+easylist.txt: 40791) -.privatewifi.com/swf/banners/ -# ||print2webcorp.com/widgetcontent/ (easylistchina+easylist.txt: 40790) -.print2webcorp.com/widgetcontent/ -# ||primeloopstracking.com/affil/ (easylistchina+easylist.txt: 40789) -.primeloopstracking.com/affil/ -# ||priceinfo.comuv.com^ (easylistchina+easylist.txt: 40788) -.priceinfo.comuv.com -# ||pricegrabber.com/mlink3.php?$third-party (easylistchina+easylist.txt: 40787) -.pricegrabber.com/mlink3\.php\? -# ||pricegrabber.com/mlink.php?$third-party (easylistchina+easylist.txt: 40786) -.pricegrabber.com/mlink\.php\? -# ||pricegrabber.com/export_feeds.php?$third-party (easylistchina+easylist.txt: 40785) -.pricegrabber.com/export_feeds\.php\? -# ||pricegrabber.com/cb_table.php$third-party (easylistchina+easylist.txt: 40784) -.pricegrabber.com/cb_table\.php -# ||pricedinfo.com^$third-party (easylistchina+easylist.txt: 40783) -.pricedinfo.com -# ||premium.naturalnews.tv^$third-party (easylistchina+easylist.txt: 40782) -.premium.naturalnews.tv -# ||premium-template.com/banner/$third-party (easylistchina+easylist.txt: 40781) -.premium-template.com/banner/ -# ||ppc-coach.com/jamaffiliates/ (easylistchina+easylist.txt: 40780) -.ppc-coach.com/jamaffiliates/ -# ||postaffiliatepro.com^*/banners/$image (easylistchina+easylist.txt: 40779) -.postaffiliatepro.com/.*/banners/ -# ||post.rmbn.ru^$third-party (easylistchina+easylist.txt: 40778) -.post.rmbn.ru -# ||pornturbo.com/tmarket.php (easylistchina+easylist.txt: 40777) -.pornturbo.com/tmarket\.php -# ||pops.freeze.com^$third-party (easylistchina+easylist.txt: 40776) -.pops.freeze.com -# ||popmog.com^$third-party (easylistchina+easylist.txt: 40775) -.popmog.com -# ||popeoftheplayers.eu/ad (easylistchina+easylist.txt: 40774) -.popeoftheplayers.eu/ad -# ||pokerstars.com/euro_bnrs/ (easylistchina+easylist.txt: 40773) -.pokerstars.com/euro_bnrs/ -# ||pokerstars.com/?source=$subdocument,third-party (easylistchina+easylist.txt: 40772) -.pokerstars.com/\?source= -# ||pokersavvy.com^*/banners/ (easylistchina+easylist.txt: 40771) -.pokersavvy.com/.*/banners/ -# ||pokerroomkings.com^*/banner/$third-party (easylistchina+easylist.txt: 40770) -.pokerroomkings.com/.*/banner/ -# ||pokerjunkie.com/rss/ (easylistchina+easylist.txt: 40769) -.pokerjunkie.com/rss/ -# ||pm.web.com^$third-party (easylistchina+easylist.txt: 40768) -.pm.web.com -# ||plus.net/images/referrals/*_banner_$third-party (easylistchina+easylist.txt: 40767) -.plus.net/images/referrals/.*_banner_ -# ||plexidigest.com/plexidigest-300x300.jpg (easylistchina+easylist.txt: 40765) -.plexidigest.com/plexidigest-300x300\.jpg -# ||playfooty.tv/jojo.html (easylistchina+easylist.txt: 40764) -.playfooty.tv/jojo\.html -# ||player.screenwavemedia.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 40763) -.player.screenwavemedia.com/.*/ova-jw\.swf -# ||playata.myvideo.de^$subdocument,third-party (easylistchina+easylist.txt: 40762) -.playata.myvideo.de -# ||play-asia.com/paos-$third-party (easylistchina+easylist.txt: 40761) -.play-asia.com/paos- -# ||pics.firstload.de^$third-party (easylistchina+easylist.txt: 40760) -.pics.firstload.de -# ||picoasis.net/3xlayer.htm (easylistchina+easylist.txt: 40759) -.picoasis.net/3xlayer\.htm -# ||pic.pbsrc.com/hpto/ (easylistchina+easylist.txt: 40758) -.pic.pbsrc.com/hpto/ -# ||pianoteq.com/images/banners/ (easylistchina+easylist.txt: 40757) -.pianoteq.com/images/banners/ -# ||pianobuyer.com/pianoworld/ (easylistchina+easylist.txt: 40756) -.pianobuyer.com/pianoworld/ -# ||phonephotographytricks.com/images/banners/ (easylistchina+easylist.txt: 40755) -.phonephotographytricks.com/images/banners/ -# ||ph.hillcountrytexas.com/imp.php?$third-party (easylistchina+easylist.txt: 40753) -.ph.hillcountrytexas.com/imp\.php\? -# ||perfectmoney.com/img/banners/$third-party (easylistchina+easylist.txt: 40752) -.perfectmoney.com/img/banners/ -# ||perfectforex.biz/images/*x$third-party (easylistchina+easylist.txt: 40751) -.perfectforex.biz/images/.*x -# ||pearlriverusa.com/images/banner/ (easylistchina+easylist.txt: 40750) -.pearlriverusa.com/images/banner/ -# ||pdl.viaplay.com/commercials/$third-party (easylistchina+easylist.txt: 40749) -.pdl.viaplay.com/commercials/ -# ||pcmall.co.za/affiliates/ (easylistchina+easylist.txt: 40748) -.pcmall.co.za/affiliates/ -# ||pcash.imlive.com^$third-party (easylistchina+easylist.txt: 40747) -.pcash.imlive.com -# ||payza.com/images/banners/ (easylistchina+easylist.txt: 40746) -.payza.com/images/banners/ -# ||paytel.co.za/code/ref (easylistchina+easylist.txt: 40745) -.paytel.co.za/code/ref -# ||partners.xpertmarket.com^ (easylistchina+easylist.txt: 40744) -.partners.xpertmarket.com -# ||partners.vouchedfor.co.uk^ (easylistchina+easylist.txt: 40743) -.partners.vouchedfor.co.uk -# ||partners.sportingbet.com.au^ (easylistchina+easylist.txt: 40742) -.partners.sportingbet.com.au -# ||partners.rochen.com^ (easylistchina+easylist.txt: 40741) -.partners.rochen.com -# ||partners.optiontide.com^ (easylistchina+easylist.txt: 40740) -.partners.optiontide.com -# ||partners.fshealth.com^ (easylistchina+easylist.txt: 40739) -.partners.fshealth.com -# ||partners.dogtime.com/network/ (easylistchina+easylist.txt: 40738) -.partners.dogtime.com/network/ -# ||partners.betus.com^$third-party (easylistchina+easylist.txt: 40737) -.partners.betus.com -# ||partnerads1.ysm.yahoo.com^ (easylistchina+easylist.txt: 40736) -.partnerads1.ysm.yahoo.com -# ||partnerads.ysm.yahoo.com^ (easylistchina+easylist.txt: 40735) -.partnerads.ysm.yahoo.com -# ||partner.premiumdomains.com^ (easylistchina+easylist.txt: 40734) -.partner.premiumdomains.com -# ||partner.e-conomic.com^$third-party (easylistchina+easylist.txt: 40733) -.partner.e-conomic.com -# ||partner.catchy.com^ (easylistchina+easylist.txt: 40732) -.partner.catchy.com -# ||partner.bargaindomains.com^ (easylistchina+easylist.txt: 40731) -.partner.bargaindomains.com -# ||partner.alloy.com^$third-party (easylistchina+easylist.txt: 40730) -.partner.alloy.com -# ||pan.dogster.com^$third-party (easylistchina+easylist.txt: 40729) -.pan.dogster.com -# ||paidinvite.com/promo/ (easylistchina+easylist.txt: 40728) -.paidinvite.com/promo/ -# ||pagerage.com^$subdocument,third-party (easylistchina+easylist.txt: 40727) -.pagerage.com -# ||pagead2.googlesyndication.com^$~object-subrequest (easylistchina+easylist.txt: 40726) -.pagead2.googlesyndication.com -# ||padsdel.com^$third-party (easylistchina+easylist.txt: 40725) -.padsdel.com -# ||p.pw/banners/$third-party (easylistchina+easylist.txt: 40724) -.p.pw/banners/ -# ||oxygenboutique.com/Linkshare/ (easylistchina+easylist.txt: 40723) -.oxygenboutique.com/Linkshare/ -# ||ox-i.cordillera.tv^ (easylistchina+easylist.txt: 40722) -.ox-i.cordillera.tv -# ||ovpn.to/ovpn.to/banner/ (easylistchina+easylist.txt: 40721) -.ovpn.to/ovpn\.to/banner/ -# ||overseasradio.com/affbanner.php? (easylistchina+easylist.txt: 40720) -.overseasradio.com/affbanner\.php\? -# ||outdoorhub.com/js/_bookends.min.js (easylistchina+easylist.txt: 40719) -.outdoorhub.com/js/_bookends\.min\.js -# ||osobnosti.cz/images/casharena_ (easylistchina+easylist.txt: 40718) -.osobnosti.cz/images/casharena_ -# ||oriongadgets.com^*/banners/ (easylistchina+easylist.txt: 40717) -.oriongadgets.com/.*/banners/ -# ||origin.getprice.com.au/widgetnewssmall.aspx (easylistchina+easylist.txt: 40716) -.origin.getprice.com.au/widgetnewssmall\.aspx -# ||origin.getprice.com.au/WidgetNews.aspx (easylistchina+easylist.txt: 40715) -.origin.getprice.com.au/WidgetNews\.aspx -# ||organicprospects.com^*/banners/ (easylistchina+easylist.txt: 40714) -.organicprospects.com/.*/banners/ -# ||optimus-pm.com^*_300-250.jpg (easylistchina+easylist.txt: 40713) -.optimus-pm.com/.*_300-250\.jpg -# ||oovoo.com^*/banners/ (easylistchina+easylist.txt: 40712) -.oovoo.com/.*/banners/ -# ||onegameplace.com/iframe.php$third-party (easylistchina+easylist.txt: 40711) -.onegameplace.com/iframe\.php -# ||onecache.com/banner_ (easylistchina+easylist.txt: 40710) -.onecache.com/banner_ -# ||on.maxspeedcdn.com^ (easylistchina+easylist.txt: 40709) -.on.maxspeedcdn.com -# ||ojooo.com^*/banner_$third-party (easylistchina+easylist.txt: 40708) -.ojooo.com/.*/banner_ -# ||ojooo.com/register_f/$third-party (easylistchina+easylist.txt: 40707) -.ojooo.com/register_f/ -# ||oilofasia.com/images/banners/ (easylistchina+easylist.txt: 40706) -.oilofasia.com/images/banners/ -# ||office.eteachergroup.com/leads/$third-party (easylistchina+easylist.txt: 40705) -.office.eteachergroup.com/leads/ -# ||offerssyndication.appspot.com^$third-party (easylistchina+easylist.txt: 40704) -.offerssyndication.appspot.com -# ||offers-service.cbsinteractive.com^$third-party (easylistchina+easylist.txt: 40703) -.offers-service.cbsinteractive.com -# ||odin.goo.mx^ (easylistchina+easylist.txt: 40702) -.odin.goo.mx -# ||ocp.cbs.com/pacific/request.jsp? (easylistchina+easylist.txt: 40701) -.ocp.cbs.com/pacific/request\.jsp\? -# ||oclasrv.comindex-2.htmlapu.php^ (easylistchina+easylist.txt: 40700) -.oclasrv.comindex-2.htmlapu.php -# ||obox-design.com/affiliate-banners/ (easylistchina+easylist.txt: 40699) -.obox-design.com/affiliate-banners/ -# ||oasap.com/images/affiliate/ (easylistchina+easylist.txt: 40698) -.oasap.com/images/affiliate/ -# ||o2live.com^$third-party (easylistchina+easylist.txt: 40697) -.o2live.com -# ||nzpages.co.nz^*/banners/ (easylistchina+easylist.txt: 40696) -.nzpages.co.nz/.*/banners/ -# ||nwadealpiggy.com/widgets/ (easylistchina+easylist.txt: 40695) -.nwadealpiggy.com/widgets/ -# ||numb.hotshare.biz^$third-party (easylistchina+easylist.txt: 40694) -.numb.hotshare.biz -# ||nude.mk/images/$third-party (easylistchina+easylist.txt: 40693) -.nude.mk/images/ -# ||ntnd.net^*/store-buttons/ (easylistchina+easylist.txt: 40692) -.ntnd.net/.*/store-buttons/ -# ||nster.com/tpl/this/js/popnster.js (easylistchina+easylist.txt: 40691) -.nster.com/tpl/this/js/popnster\.js -# ||novadune.com^$third-party (easylistchina+easylist.txt: 40690) -.novadune.com -# ||nocookie.net^*/wikiasearchads.js (easylistchina+easylist.txt: 40689) -.nocookie.net/.*/wikiasearchads\.js -# ||nlsl.about.com/img?$third-party (easylistchina+easylist.txt: 40688) -.nlsl.about.com/img\? -# ||nitropdf.com/graphics/promo/$third-party (easylistchina+easylist.txt: 40687) -.nitropdf.com/graphics/promo/ -# ||nimblecommerce.com/widget.action? (easylistchina+easylist.txt: 40686) -.nimblecommerce.com/widget\.action\? -# ||newware.net/home/newware-sm.png$third-party (easylistchina+easylist.txt: 40685) -.newware.net/home/newware-sm\.png -# ||newware.net/home/banner$third-party (easylistchina+easylist.txt: 40684) -.newware.net/home/banner -# ||news-whistleout.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 40683) -.news-whistleout.s3.amazonaws.com -# ||networkice.com^$subdocument,third-party (easylistchina+easylist.txt: 40682) -.networkice.com -# ||network.business.com^ (easylistchina+easylist.txt: 40681) -.network.business.com -# ||network.aufeminin.com^ (easylistchina+easylist.txt: 40680) -.network.aufeminin.com -# ||nettvplus.com/images/banner_ (easylistchina+easylist.txt: 40679) -.nettvplus.com/images/banner_ -# ||netdigix.com/google_banners/ (easylistchina+easylist.txt: 40675) -.netdigix.com/google_banners/ -# ||nesgamezone.com/syndicate? (easylistchina+easylist.txt: 40674) -.nesgamezone.com/syndicate\? -# ||neogames-tech.com/resources/genericbanners/ (easylistchina+easylist.txt: 40673) -.neogames-tech.com/resources/genericbanners/ -# ||nanoinvestgroup.com/images/banner*.gif (easylistchina+easylist.txt: 40671) -.nanoinvestgroup.com/images/banner.*\.gif -# ||nanobrokers.com/img/banner_ (easylistchina+easylist.txt: 40670) -.nanobrokers.com/img/banner_ -# ||namecheap.com/graphics/linkus/$third-party (easylistchina+easylist.txt: 40669) -.namecheap.com/graphics/linkus/ -# ||n4g.com^*/IndieMonthSideBarWidget?$third-party (easylistchina+easylist.txt: 40668) -.n4g.com/.*/IndieMonthSideBarWidget\? -# ||n.nu/banner.js (easylistchina+easylist.txt: 40667) -.n.nu/banner\.js -# ||myvi.ru/feed/$object-subrequest (easylistchina+easylist.txt: 40665) -.myvi.ru/feed/ -# ||myusenet.net/promo.cgi? (easylistchina+easylist.txt: 40664) -.myusenet.net/promo\.cgi\? -# ||mytrafficstrategy.com/images/$third-party (easylistchina+easylist.txt: 40663) -.mytrafficstrategy.com/images/ -# ||myspace.com/play/myspace/*&locationId$third-party (easylistchina+easylist.txt: 40662) -.myspace.com/play/myspace/.*&locationId -# ||mylife.com/partner/$third-party (easylistchina+easylist.txt: 40661) -.mylife.com/partner/ -# ||myhpf.co.uk/banners/ (easylistchina+easylist.txt: 40660) -.myhpf.co.uk/banners/ -# ||myfreeshares.com/120x60b.gif (easylistchina+easylist.txt: 40659) -.myfreeshares.com/120x60b\.gif -# ||myfreeresources.com/getimg.php?$third-party (easylistchina+easylist.txt: 40658) -.myfreeresources.com/getimg\.php\? -# ||myfreepaysite.info^*.gif$third-party (easylistchina+easylist.txt: 40657) -.myfreepaysite.info/.*\.gif -# ||myezbz.com/marketplace/widget/$third-party (easylistchina+easylist.txt: 40656) -.myezbz.com/marketplace/widget/ -# ||mydownloader.net/banners/$third-party (easylistchina+easylist.txt: 40655) -.mydownloader.net/banners/ -# ||mybdhost.com/imgv2/$third-party (easylistchina+easylist.txt: 40653) -.mybdhost.com/imgv2/ -# ||myalter1tv.altervista.org^$subdocument,third-party (easylistchina+easylist.txt: 40652) -.myalter1tv.altervista.org -# ||my-dirty-hobby.com/track/$subdocument,third-party (easylistchina+easylist.txt: 40651) -.my-dirty-hobby.com/track/ -# ||my-best-jobs.com^$subdocument,third-party (easylistchina+easylist.txt: 40650) -.my-best-jobs.com -# ||musik-a-z.com^$subdocument,third-party (easylistchina+easylist.txt: 40649) -.musik-a-z.com -# ||musicmemorization.com/images/$third-party (easylistchina+easylist.txt: 40648) -.musicmemorization.com/images/ -# ||multivizyon.tv^*/flysatbanner.swf (easylistchina+easylist.txt: 40647) -.multivizyon.tv/.*/flysatbanner\.swf -# ||multisitelive.com^*/banner_ (easylistchina+easylist.txt: 40646) -.multisitelive.com/.*/banner_ -# ||mto.mediatakeout.com^$third-party (easylistchina+easylist.txt: 40645) -.mto.mediatakeout.com -# ||mt.sellingrealestatemalta.com^$third-party (easylistchina+easylist.txt: 40644) -.mt.sellingrealestatemalta.com -# ||msnbcmedia.msn.com^*/sponsors/ (easylistchina+easylist.txt: 40643) -.msnbcmedia.msn.com/.*/sponsors/ -# ||msm.mysavings.com^*.asp?afid=$third-party (easylistchina+easylist.txt: 40642) -.msm.mysavings.com/.*\.asp\?afid= -# ||msecnd.net/scripts/*.pop.$script (easylistchina+easylist.txt: 40641) -.msecnd.net/scripts/.*\.pop\. -# ||mrskincdn.com/data/uploader/affiliate/$script (easylistchina+easylist.txt: 40640) -.mrskincdn.com/data/uploader/affiliate/ -# ||mrc.org^*/take-over-charlotte300x250.gif (easylistchina+easylist.txt: 40639) -.mrc.org/.*/take-over-charlotte300x250\.gif -# ||mrc.org^*/Collusion_Banner300x250.jpg (easylistchina+easylist.txt: 40638) -.mrc.org/.*/Collusion_Banner300x250\.jpg -# ||mrc.org/sites/default/files/uploads/images/Collusion_Banner (easylistchina+easylist.txt: 40637) -.mrc.org/sites/default/files/uploads/images/Collusion_Banner -# ||mp3ix.com^$third-party (easylistchina+easylist.txt: 40636) -.mp3ix.com -# ||mozo-widgets.f2.com.au^ (easylistchina+easylist.txt: 40635) -.mozo-widgets.f2.com.au -# ||mosso.com^*/banners/ (easylistchina+easylist.txt: 40634) -.mosso.com/.*/banners/ -# ||moosify.com/widgets/explorer/?partner= (easylistchina+easylist.txt: 40633) -.moosify.com/widgets/explorer/\?partner= -# ||moneywise.co.uk/affiliate/ (easylistchina+easylist.txt: 40632) -.moneywise.co.uk/affiliate/ -# ||moneycontrol.com/share-market-game/$third-party (easylistchina+easylist.txt: 40631) -.moneycontrol.com/share-market-game/ -# ||moneycontrol.co.in^*PopUnder.js (easylistchina+easylist.txt: 40630) -.moneycontrol.co.in/.*PopUnder\.js -# ||mol.im/i/pix/ebay/ (easylistchina+easylist.txt: 40629) -.mol.im/i/pix/ebay/ -# ||mobyler.com/img/banner/ (easylistchina+easylist.txt: 40628) -.mobyler.com/img/banner/ -# ||mobilemetrics.appspot.com^$third-party (easylistchina+easylist.txt: 40627) -.mobilemetrics.appspot.com -# ||mnginteractive.com^*/dartinclude.js (easylistchina+easylist.txt: 40626) -.mnginteractive.com/.*/dartinclude\.js -# ||mmwebhandler.888.com^$third-party (easylistchina+easylist.txt: 40625) -.mmwebhandler.888.com -# ||mmosale.com/baner_images/$third-party (easylistchina+easylist.txt: 40624) -.mmosale.com/baner_images/ -# ||mmo4rpg.com^*.gif|$third-party (easylistchina+easylist.txt: 40623) -.mmo4rpg.com/.*\.gif$ -# ||mmdcash.com/mmdcash01.gif (easylistchina+easylist.txt: 40622) -.mmdcash.com/mmdcash01\.gif -# ||mlive.com/js/oas/ (easylistchina+easylist.txt: 40621) -.mlive.com/js/oas/ -# ||mkini.net/banners/ (easylistchina+easylist.txt: 40620) -.mkini.net/banners/ -# ||missnowmrs.com/images/banners/ (easylistchina+easylist.txt: 40619) -.missnowmrs.com/images/banners/ -# ||millionaires-club-international.com/banner/ (easylistchina+easylist.txt: 40618) -.millionaires-club-international.com/banner/ -# ||mightydeals.s3.amazonaws.com/md_adv/ (easylistchina+easylist.txt: 40616) -.mightydeals.s3.amazonaws.com/md_adv/ -# ||mightydeals.com/widgets/$third-party (easylistchina+easylist.txt: 40615) -.mightydeals.com/widgets/ -# ||mightydeals.com/widget?$third-party (easylistchina+easylist.txt: 40614) -.mightydeals.com/widget\? -# ||mightyape.co.nz/stuff/$third-party (easylistchina+easylist.txt: 40613) -.mightyape.co.nz/stuff/ -# ||microsoft.com^*/community/images/windowsintune/$third-party (easylistchina+easylist.txt: 40612) -.microsoft.com/.*/community/images/windowsintune/ -# ||microsoft.com^*/bannerrotator/$third-party (easylistchina+easylist.txt: 40611) -.microsoft.com/.*/bannerrotator/ -# ||mgprofit.com/images/*x$third-party (easylistchina+easylist.txt: 40610) -.mgprofit.com/images/.*x -# ||mgm.com/www/$third-party (easylistchina+easylist.txt: 40609) -.mgm.com/www/ -# ||mfeed.newzfind.com^$third-party (easylistchina+easylist.txt: 40608) -.mfeed.newzfind.com -# ||mfcdn.net/store/spotlight/ (easylistchina+easylist.txt: 40607) -.mfcdn.net/store/spotlight/ -# ||metroland.com/wagjag/ (easylistchina+easylist.txt: 40606) -.metroland.com/wagjag/ -# ||metaboli.fr^*/adgude_$third-party (easylistchina+easylist.txt: 40605) -.metaboli.fr/.*/adgude_ -# ||merdb.org/js/$script,third-party (easylistchina+easylist.txt: 40604) -.merdb.org/js/ -# ||meraad2.blogspot.com^$third-party (easylistchina+easylist.txt: 40603) -.meraad2.blogspot.com -# ||memepix.com/spark.php? (easylistchina+easylist.txt: 40602) -.memepix.com/spark\.php\? -# ||megalivestream.net/pub.js (easylistchina+easylist.txt: 40601) -.megalivestream.net/pub\.js -# ||mediaspanonline.com^*-Takeover_ (easylistchina+easylist.txt: 40600) -.mediaspanonline.com/.*-Takeover_ -# ||mediaspanonline.com^*-Takeover- (easylistchina+easylist.txt: 40599) -.mediaspanonline.com/.*-Takeover- -# ||mediaserver.digitec.ch^$subdocument,third-party (easylistchina+easylist.txt: 40598) -.mediaserver.digitec.ch -# ||mediaplex.com/ad/js/$third-party (easylistchina+easylist.txt: 40597) -.mediaplex.com/ad/js/ -# ||mediaplex.com/ad/fm/$third-party (easylistchina+easylist.txt: 40596) -.mediaplex.com/ad/fm/ -# ||mediaplex.com/ad/bn/$third-party (easylistchina+easylist.txt: 40595) -.mediaplex.com/ad/bn/ -# ||mediaon.com/moneymoney/ (easylistchina+easylist.txt: 40594) -.mediaon.com/moneymoney/ -# ||media.onlineteachers.co.in^$third-party (easylistchina+easylist.txt: 40593) -.media.onlineteachers.co.in -# ||media.netrefer.com^$third-party (easylistchina+easylist.txt: 40592) -.media.netrefer.com -# ||media.myspace.com/play/*/featured-videos-$third-party (easylistchina+easylist.txt: 40591) -.media.myspace.com/play/.*/featured-videos- -# ||media.enimgs.net/brand/files/escalatenetwork/ (easylistchina+easylist.txt: 40590) -.media.enimgs.net/brand/files/escalatenetwork/ -# ||media.domainking.ng/media/$third-party (easylistchina+easylist.txt: 40589) -.media.domainking.ng/media/ -# ||media.complex.com/videos/prerolls/ (easylistchina+easylist.txt: 40588) -.media.complex.com/videos/prerolls/ -# ||media-toolbar.com^$third-party (easylistchina+easylist.txt: 40587) -.media-toolbar.com -# ||mdpcdn.com^*/gpt/ (easylistchina+easylist.txt: 40586) -.mdpcdn.com/.*/gpt/ -# ||mcclatchyinteractive.com/creative/ (easylistchina+easylist.txt: 40585) -.mcclatchyinteractive.com/creative/ -# ||mcc.godaddy.com/park/$subdocument,third-party (easylistchina+easylist.txt: 40584) -.mcc.godaddy.com/park/ -# ||mb.zam.com^ (easylistchina+easylist.txt: 40583) -.mb.zam.com -# ||mb.marathonbet.com^$third-party (easylistchina+easylist.txt: 40582) -.mb.marathonbet.com -# ||mb-hostservice.de/banner_ (easylistchina+easylist.txt: 40581) -.mb-hostservice.de/banner_ -# ||mazda.com.au/banners/ (easylistchina+easylist.txt: 40580) -.mazda.com.au/banners/ -# ||maximainvest.net^$image,third-party (easylistchina+easylist.txt: 40579) -.maximainvest.net -# ||matrixmails.com/images/$third-party (easylistchina+easylist.txt: 40578) -.matrixmails.com/images/ -# ||matchbin.com/javascripts/remote_widget.js (easylistchina+easylist.txt: 40577) -.matchbin.com/javascripts/remote_widget\.js -# ||match.com^*/prm/$third-party (easylistchina+easylist.txt: 40576) -.match.com/.*/prm/ -# ||mastiway.com/webimages/$third-party (easylistchina+easylist.txt: 40575) -.mastiway.com/webimages/ -# ||marketing.888.com^ (easylistchina+easylist.txt: 40573) -.marketing.888.com -# ||marinejobs.gr/images/marine_adv.gif (easylistchina+easylist.txt: 40572) -.marinejobs.gr/images/marine_adv\.gif -# ||mantra.com.au^*/campaigns/$third-party (easylistchina+easylist.txt: 40571) -.mantra.com.au/.*/campaigns/ -# ||mahndi.com/images/banner/ (easylistchina+easylist.txt: 40570) -.mahndi.com/images/banner/ -# ||magniwork.com/banner/ (easylistchina+easylist.txt: 40569) -.magniwork.com/banner/ -# ||magicmembers.com/img/mgm-125x125 (easylistchina+easylist.txt: 40568) -.magicmembers.com/img/mgm-125x125 -# ||magicaffiliateplugin.com/img/mga-125x125.gif (easylistchina+easylist.txt: 40567) -.magicaffiliateplugin.com/img/mga-125x125\.gif -# ||mads.aol.com^ (easylistchina+easylist.txt: 40566) -.mads.aol.com -# ||madisonlogic.com^$third-party (easylistchina+easylist.txt: 40565) -.madisonlogic.com -# ||lynku.com/partners/$third-party (easylistchina+easylist.txt: 40562) -.lynku.com/partners/ -# ||lygo.com/d/toolbar/sponsors/ (easylistchina+easylist.txt: 40560) -.lygo.com/d/toolbar/sponsors/ -# ||lumfile.com/lumimage/ourbanner/$third-party (easylistchina+easylist.txt: 40559) -.lumfile.com/lumimage/ourbanner/ -# ||luckyshare.net/images/banners/ (easylistchina+easylist.txt: 40558) -.luckyshare.net/images/banners/ -# ||luckygunner.com^*/banners/ (easylistchina+easylist.txt: 40557) -.luckygunner.com/.*/banners/ -# ||lucky-dating.net/banners/ (easylistchina+easylist.txt: 40556) -.lucky-dating.net/banners/ -# ||lucky-ace-casino.net/banners/ (easylistchina+easylist.txt: 40555) -.lucky-ace-casino.net/banners/ -# ||ltfm.ca/stats.php? (easylistchina+easylist.txt: 40554) -.ltfm.ca/stats\.php\? -# ||lp.ncdownloader.com^$third-party (easylistchina+easylist.txt: 40553) -.lp.ncdownloader.com -# ||lp.longtailvideo.com^*/adaptv*.swf (easylistchina+easylist.txt: 40552) -.lp.longtailvideo.com/.*/adaptv.*\.swf -# ||lowcountrymarketplace.com/widgets/$third-party (easylistchina+easylist.txt: 40551) -.lowcountrymarketplace.com/widgets/ -# ||lowbird.com/random/$third-party (easylistchina+easylist.txt: 40550) -.lowbird.com/random/ -# ||lottoelite.com/banners/$third-party (easylistchina+easylist.txt: 40549) -.lottoelite.com/banners/ -# ||loot.co.za^*/banners/$third-party (easylistchina+easylist.txt: 40548) -.loot.co.za/.*/banners/ -# ||loot.co.za/shop/product.jsp?$third-party (easylistchina+easylist.txt: 40547) -.loot.co.za/shop/product\.jsp\? -# ||loopnet.com^*/searchwidget.htm$third-party (easylistchina+easylist.txt: 40546) -.loopnet.com/.*/searchwidget\.htm -# ||longtailvideo.com^*/yume.swf (easylistchina+easylist.txt: 40545) -.longtailvideo.com/.*/yume\.swf -# ||longtailvideo.com^*/yume-h.swf (easylistchina+easylist.txt: 40544) -.longtailvideo.com/.*/yume-h\.swf -# ||longtailvideo.com^*/ova-$object-subrequest (easylistchina+easylist.txt: 40543) -.longtailvideo.com/.*/ova- -# ||longtailvideo.com^*/ltas-$object-subrequest,third-party (easylistchina+easylist.txt: 40542) -.longtailvideo.com/.*/ltas- -# ||longtailvideo.com^*/googima.swf$object-subrequest,third-party (easylistchina+easylist.txt: 40541) -.longtailvideo.com/.*/googima\.swf -# ||longtailvideo.com^*/googima-$object-subrequest (easylistchina+easylist.txt: 40540) -.longtailvideo.com/.*/googima- -# ||longtailvideo.com^*/adawe-$object-subrequest,third-party (easylistchina+easylist.txt: 40539) -.longtailvideo.com/.*/adawe- -# ||longtailvideo.com^*/adaptvjw5.swf$object-subrequest (easylistchina+easylist.txt: 40538) -.longtailvideo.com/.*/adaptvjw5\.swf -# ||longtailvideo.com^*/adaptvjw5-$object-subrequest (easylistchina+easylist.txt: 40537) -.longtailvideo.com/.*/adaptvjw5- -# ||longtailvideo.com*/ltas.swf (easylistchina+easylist.txt: 40536) -.longtailvideo.com*./(.*/)?ltas\.swf -# ||london24.com^*/mpu/ (easylistchina+easylist.txt: 40535) -.london24.com/.*/mpu/ -# ||localdata.eu/images/banners/ (easylistchina+easylist.txt: 40534) -.localdata.eu/images/banners/ -# ||llnwd.net/o28/assets/*-sponsored- (easylistchina+easylist.txt: 40533) -.llnwd.net/o28/assets/.*-sponsored- -# ||liveshows.com^*/live.js$third-party (easylistchina+easylist.txt: 40532) -.liveshows.com/.*/live\.js -# ||liveperson.com/affiliates/ (easylistchina+easylist.txt: 40531) -.liveperson.com/affiliates/ -# ||liutilities.com^*/affiliate/ (easylistchina+easylist.txt: 40529) -.liutilities.com/.*/affiliate/ -# ||liutilities.com/partners/$third-party (easylistchina+easylist.txt: 40528) -.liutilities.com/partners/ -# ||literatureandlatte.com/gfx/buynowaffiliate.jpg (easylistchina+easylist.txt: 40527) -.literatureandlatte.com/gfx/buynowaffiliate\.jpg -# ||litecoinkamikaze.com/assets/images/banner$third-party (easylistchina+easylist.txt: 40526) -.litecoinkamikaze.com/assets/images/banner -# ||lionheartdms.com^*/walmart_300.jpg (easylistchina+easylist.txt: 40525) -.lionheartdms.com/.*/walmart_300\.jpg -# ||linkedin.com/csp/dtag?$subdocument,third-party (easylistchina+easylist.txt: 40524) -.linkedin.com/csp/dtag\? -# ||linkbird.com/static/upload/*/banner/$third-party (easylistchina+easylist.txt: 40523) -.linkbird.com/static/upload/.*/banner/ -# ||link.link.ru^$third-party (easylistchina+easylist.txt: 40522) -.link.link.ru -# ||lijit.com/delivery/ (easylistchina+easylist.txt: 40521) -.lijit.com/delivery/ -# ||lijit.com/adif_px.php (easylistchina+easylist.txt: 40520) -.lijit.com/adif_px\.php -# ||lifestyle24h.com/reward/$third-party (easylistchina+easylist.txt: 40519) -.lifestyle24h.com/reward/ -# ||lg.com/in/cinema3d.jsp$subdocument,third-party (easylistchina+easylist.txt: 40518) -.lg.com/in/cinema3d\.jsp -# ||letters.coursekey.com/lettertemplates_$third-party (easylistchina+easylist.txt: 40517) -.letters.coursekey.com/lettertemplates_ -# ||letmewatchthis.ru/movies/linkbottom (easylistchina+easylist.txt: 40516) -.letmewatchthis.ru/movies/linkbottom -# ||lessemf.com/images/banner-$third-party (easylistchina+easylist.txt: 40515) -.lessemf.com/images/banner- -# ||lesmeilleurs-jeux.net/images/ban/$third-party (easylistchina+easylist.txt: 40514) -.lesmeilleurs-jeux.net/images/ban/ -# ||lego.com^*/affiliate/ (easylistchina+easylist.txt: 40513) -.lego.com/.*/affiliate/ -# ||legitonlinejobs.com/images/$third-party (easylistchina+easylist.txt: 40512) -.legitonlinejobs.com/images/ -# ||legaljobscentre.com/feed/jobad.aspx (easylistchina+easylist.txt: 40511) -.legaljobscentre.com/feed/jobad\.aspx -# ||leadsleap.com/widget/ (easylistchina+easylist.txt: 40510) -.leadsleap.com/widget/ -# ||leadsleap.com/images/banner_ (easylistchina+easylist.txt: 40509) -.leadsleap.com/images/banner_ -# ||leadintelligence.co.uk/in-text.js$third-party (easylistchina+easylist.txt: 40508) -.leadintelligence.co.uk/in-text\.js -# ||lawdepot.com/affiliate/$third-party (easylistchina+easylist.txt: 40507) -.lawdepot.com/affiliate/ -# ||lastlocation.com/images/banner (easylistchina+easylist.txt: 40506) -.lastlocation.com/images/banner -# ||lapi.ebay.com^$third-party (easylistchina+easylist.txt: 40505) -.lapi.ebay.com -# ||ladbrokes.com^*&aff_id= (easylistchina+easylist.txt: 40504) -.ladbrokes.com/.*&aff_id= -# ||l.yimg.com^*&partner=*&url= (easylistchina+easylist.txt: 40503) -.l.yimg.com/.*&partner=.*&url= -# ||kurtgeiger.com^*/linkshare/ (easylistchina+easylist.txt: 40502) -.kurtgeiger.com/.*/linkshare/ -# ||krillion.com^*/productoffers.js (easylistchina+easylist.txt: 40501) -.krillion.com/.*/productoffers\.js -# ||kraken.giantrealm.com^$third-party (easylistchina+easylist.txt: 40500) -.kraken.giantrealm.com -# ||kozmetikcerrahi.com/banner/ (easylistchina+easylist.txt: 40499) -.kozmetikcerrahi.com/banner/ -# ||kontera.com/javascript/lib/KonaLibInline.js$third-party (easylistchina+easylist.txt: 40498) -.kontera.com/javascript/lib/KonaLibInline\.js -# ||knorex.asia/static-firefly/ (easylistchina+easylist.txt: 40497) -.knorex.asia/static-firefly/ -# ||king.com^*/banners/ (easylistchina+easylist.txt: 40496) -.king.com/.*/banners/ -# ||keyword-winner.com/demo/images/ (easylistchina+easylist.txt: 40495) -.keyword-winner.com/demo/images/ -# ||keep2share.cc/images/i/00468x0060- (easylistchina+easylist.txt: 40494) -.keep2share.cc/images/i/00468x0060- -# ||kaltura.com^*/vastPlugin.swf$third-party (easylistchina+easylist.txt: 40493) -.kaltura.com/.*/vastPlugin\.swf -# ||kallout.com^*.php?id= (easylistchina+easylist.txt: 40492) -.kallout.com/.*\.php\?id= -# ||kaango.com/fecustomwidgetdisplay? (easylistchina+easylist.txt: 40491) -.kaango.com/fecustomwidgetdisplay\? -# ||k2team.kyiv.ua^ (easylistchina+easylist.txt: 40490) -.k2team.kyiv.ua -# ||k.co.il/iefilter.html (easylistchina+easylist.txt: 40489) -.k.co.il/iefilter\.html -# ||k-po.com/img/ebay.png$third-party (easylistchina+easylist.txt: 40488) -.k-po.com/img/ebay\.png -# ||jvzoo.com/assets/widget/$third-party (easylistchina+easylist.txt: 40487) -.jvzoo.com/assets/widget/ -# ||justclicktowatch.to/jstp.js (easylistchina+easylist.txt: 40486) -.justclicktowatch.to/jstp\.js -# ||junction.co.za/widget/$third-party (easylistchina+easylist.txt: 40485) -.junction.co.za/widget/ -# ||jugglu.com/content/widgets/$third-party (easylistchina+easylist.txt: 40484) -.jugglu.com/content/widgets/ -# ||jubimax.com/banner_images/ (easylistchina+easylist.txt: 40483) -.jubimax.com/banner_images/ -# ||jsrdn.com/s/1.js (easylistchina+easylist.txt: 40482) -.jsrdn.com/s/1\.js -# ||jsfeedget.com^$script,third-party (easylistchina+easylist.txt: 40481) -.jsfeedget.com -# ||jrcdev.net/promos/ (easylistchina+easylist.txt: 40480) -.jrcdev.net/promos/ -# ||jocly.com^*.html?click=$subdocument,third-party (easylistchina+easylist.txt: 40479) -.jocly.com/.*\.html\?click= -# ||jobs-affiliates.ws/images/$third-party (easylistchina+easylist.txt: 40478) -.jobs-affiliates.ws/images/ -# ||joblet.jp/javascripts/$third-party (easylistchina+easylist.txt: 40477) -.joblet.jp/javascripts/ -# ||jivox.com/jivox/serverapis/getcampaignbyid.php?$object-subrequest (easylistchina+easylist.txt: 40476) -.jivox.com/jivox/serverapis/getcampaignbyid\.php\? -# ||jinx.com/content/banner/$third-party (easylistchina+easylist.txt: 40475) -.jinx.com/content/banner/ -# ||jeysearch.com^$subdocument,third-party (easylistchina+easylist.txt: 40474) -.jeysearch.com -# ||jenningsforddirect.co.uk/sitewide/extras/$third-party (easylistchina+easylist.txt: 40473) -.jenningsforddirect.co.uk/sitewide/extras/ -# ||jalbum.net/widgetapi/js/dlbutton.js? (easylistchina+easylist.txt: 40472) -.jalbum.net/widgetapi/js/dlbutton\.js\? -# ||iypcdn.com^*/ypbanners/ (easylistchina+easylist.txt: 40471) -.iypcdn.com/.*/ypbanners/ -# ||iypcdn.com^*/otherbanners/ (easylistchina+easylist.txt: 40470) -.iypcdn.com/.*/otherbanners/ -# ||iypcdn.com^*/bgbanners/ (easylistchina+easylist.txt: 40469) -.iypcdn.com/.*/bgbanners/ -# ||iwebzoo.com/banner/ (easylistchina+easylist.txt: 40468) -.iwebzoo.com/banner/ -# ||iselectmedia.com^*/banners/ (easylistchina+easylist.txt: 40467) -.iselectmedia.com/.*/banners/ -# ||ipixs.com/ban/$third-party (easylistchina+easylist.txt: 40466) -.ipixs.com/ban/ -# ||ipercast.net^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 40465) -.ipercast.net/.*/ova-jw\.swf -# ||iobit.com/partner/$third-party (easylistchina+easylist.txt: 40464) -.iobit.com/partner/ -# ||intexchange.ru/Content/banners/ (easylistchina+easylist.txt: 40463) -.intexchange.ru/Content/banners/ -# ||interstitial.glsp.netdna-cdn.com^$third-party (easylistchina+easylist.txt: 40462) -.interstitial.glsp.netdna-cdn.com -# ||interserver.net/logos/vps-$third-party (easylistchina+easylist.txt: 40461) -.interserver.net/logos/vps- -# ||internetbrands.com/partners/$third-party (easylistchina+easylist.txt: 40460) -.internetbrands.com/partners/ -# ||intermrkts.vo.llnwd.net^$third-party (easylistchina+easylist.txt: 40459) -.intermrkts.vo.llnwd.net -# ||integrityvpn.com/img/integrityvpn.jpg (easylistchina+easylist.txt: 40458) -.integrityvpn.com/img/integrityvpn\.jpg -# ||instaprofitgram.com/images/banners/ (easylistchina+easylist.txt: 40457) -.instaprofitgram.com/images/banners/ -# ||instantpaysites.com/banner/ (easylistchina+easylist.txt: 40456) -.instantpaysites.com/banner/ -# ||inskin.vo.llnwd.net^ (easylistchina+easylist.txt: 40455) -.inskin.vo.llnwd.net -# ||inline.playbryte.com^$third-party (easylistchina+easylist.txt: 40454) -.inline.playbryte.com -# ||init.lingospot.com^$third-party (easylistchina+easylist.txt: 40453) -.init.lingospot.com -# ||inisrael-travel.com/jpost/ (easylistchina+easylist.txt: 40452) -.inisrael-travel.com/jpost/ -# ||infomarine.gr^*/images/banners/ (easylistchina+easylist.txt: 40451) -.infomarine.gr/.*/images/banners/ -# ||infomarine.gr/images/banerr.gif (easylistchina+easylist.txt: 40450) -.infomarine.gr/images/banerr\.gif -# ||infochoice.com.au/Handler/WidgetV2Handler.ashx? (easylistchina+easylist.txt: 40449) -.infochoice.com.au/Handler/WidgetV2Handler\.ashx\? -# ||infibeam.com/affiliate/$third-party (easylistchina+easylist.txt: 40448) -.infibeam.com/affiliate/ -# ||indieclick.3janecdn.com^ (easylistchina+easylist.txt: 40447) -.indieclick.3janecdn.com -# ||indian-forex.com^*/banners/$third-party (easylistchina+easylist.txt: 40446) -.indian-forex.com/.*/banners/ -# ||indeed.fr/ads/ (easylistchina+easylist.txt: 40445) -.indeed.fr/ads/ -# ||imptestrm.com/rg-main.php? (easylistchina+easylist.txt: 40444) -.imptestrm.com/rg-main\.php\? -# ||imgpop.googlecode.com^$third-party (easylistchina+easylist.txt: 40442) -.imgpop.googlecode.com -# ||imgehost.com^*/banners/$third-party (easylistchina+easylist.txt: 40441) -.imgehost.com/.*/banners/ -# ||imgdino.com/gsmpop.js (easylistchina+easylist.txt: 40440) -.imgdino.com/gsmpop\.js -# ||img.servint.net^$third-party (easylistchina+easylist.txt: 40439) -.img.servint.net -# ||img.promoddl.com^$third-party (easylistchina+easylist.txt: 40438) -.img.promoddl.com -# ||img.mybet.com^$third-party (easylistchina+easylist.txt: 40437) -.img.mybet.com -# ||img.hostmonster.com^$third-party (easylistchina+easylist.txt: 40436) -.img.hostmonster.com -# ||img.bluehost.com^$third-party (easylistchina+easylist.txt: 40435) -.img.bluehost.com -# ||imagetwist.com/banner/ (easylistchina+easylist.txt: 40434) -.imagetwist.com/banner/ -# ||images.youbuy.it/images/$third-party (easylistchina+easylist.txt: 40433) -.images.youbuy.it/images/ -# ||images.mylot.com^$third-party (easylistchina+easylist.txt: 40432) -.images.mylot.com -# ||images.dreamhost.com^$third-party (easylistchina+easylist.txt: 40431) -.images.dreamhost.com -# ||images.criteo.net^$third-party (easylistchina+easylist.txt: 40430) -.images.criteo.net -# ||images.*.criteo.net^$third-party (easylistchina+easylist.txt: 40429) -.images.*./.*\.criteo\.net[^\w%.-] -.images.*.criteo.net -# ||images-pw.secureserver.net^*_*.$image,third-party (easylistchina+easylist.txt: 40428) -.images-pw.secureserver.net/.*_.*\. -# ||images-pw.secureserver.net/images/100yearsofchevy.gif (easylistchina+easylist.txt: 40427) -.images-pw.secureserver.net/images/100yearsofchevy\.gif -# ||images-amazon.com/images/*/banner/$third-party (easylistchina+easylist.txt: 40425) -.images-amazon.com/images/.*/banner/ -# ||images-amazon.com/images/*/associates/widgets/ (easylistchina+easylist.txt: 40424) -.images-amazon.com/images/.*/associates/widgets/ -# ||image.dhgate.com^*/dhgate-logo-$third-party (easylistchina+easylist.txt: 40423) -.image.dhgate.com/.*/dhgate-logo- -# ||image.com.com^*/skin2.jpg$third-party (easylistchina+easylist.txt: 40422) -.image.com.com/.*/skin2\.jpg -# ||ima3vpaid.appspot.com^ (easylistchina+easylist.txt: 40421) -.ima3vpaid.appspot.com -# ||im.ov.yahoo.co.jp^ (easylistchina+easylist.txt: 40420) -.im.ov.yahoo.co.jp -# ||ilapi.ebay.com^$third-party (easylistchina+easylist.txt: 40419) -.ilapi.ebay.com -# ||ifilm.com/website/*_skin_$third-party (easylistchina+easylist.txt: 40418) -.ifilm.com/website/.*_skin_ -# ||idg.com.au/ggg/images/*_home.jpg$third-party (easylistchina+easylist.txt: 40416) -.idg.com.au/ggg/images/.*_home\.jpg -# ||idealo.co.uk/priceinfo/$third-party (easylistchina+easylist.txt: 40415) -.idealo.co.uk/priceinfo/ -# ||icastcenter.com^*/itunes.jpg (easylistchina+easylist.txt: 40414) -.icastcenter.com/.*/itunes\.jpg -# ||icastcenter.com^*/amazon-buyfrom.gif (easylistchina+easylist.txt: 40413) -.icastcenter.com/.*/amazon-buyfrom\.gif -# ||ibvpn.com/img/banners/ (easylistchina+easylist.txt: 40412) -.ibvpn.com/img/banners/ -# ||ibsys.com/sh/sponsors/ (easylistchina+easylist.txt: 40411) -.ibsys.com/sh/sponsors/ -# ||ibsrv.net/sponsor_images/ (easylistchina+easylist.txt: 40410) -.ibsrv.net/sponsor_images/ -# ||ibsrv.net/sidetiles/125x125/ (easylistchina+easylist.txt: 40409) -.ibsrv.net/sidetiles/125x125/ -# ||i.lsimg.net^*/takeover/ (easylistchina+easylist.txt: 40408) -.i.lsimg.net/.*/takeover/ -# ||i.lsimg.net^*/sides_clickable. (easylistchina+easylist.txt: 40407) -.i.lsimg.net/.*/sides_clickable\. -# ||i.ligatus.com/*-placements/$third-party (easylistchina+easylist.txt: 40406) -.i.ligatus.com/.*-placements/ -# ||hyperscale.com/images/adh_button.jpg (easylistchina+easylist.txt: 40405) -.hyperscale.com/images/adh_button\.jpg -# ||hyperfbtraffic.com/images/graphicsbanners/ (easylistchina+easylist.txt: 40404) -.hyperfbtraffic.com/images/graphicsbanners/ -# ||hyipregulate.com/images/hyipregulatebanner.gif (easylistchina+easylist.txt: 40403) -.hyipregulate.com/images/hyipregulatebanner\.gif -# ||hubbardradio.com^*/my_deals.php (easylistchina+easylist.txt: 40401) -.hubbardradio.com/.*/my_deals\.php -# ||hubbarddeals.com^*/promo/ (easylistchina+easylist.txt: 40400) -.hubbarddeals.com/.*/promo/ -# ||hstpnetwork.com/zeus.php (easylistchina+easylist.txt: 40399) -.hstpnetwork.com/zeus\.php -# ||hstpnetwork.com/ads/ (easylistchina+easylist.txt: 40398) -.hstpnetwork.com/ads/ -# ||hqfootyad4.blogspot.com^$third-party (easylistchina+easylist.txt: 40397) -.hqfootyad4.blogspot.com -# ||hotlinking.dosmil.imap.cc^$third-party (easylistchina+easylist.txt: 40396) -.hotlinking.dosmil.imap.cc -# ||hoteltravel.com/partner/$third-party (easylistchina+easylist.txt: 40395) -.hoteltravel.com/partner/ -# ||hotelsbycity.com^*/bannermtg.php?$third-party (easylistchina+easylist.txt: 40394) -.hotelsbycity.com/.*/bannermtg\.php\? -# ||hostmonster.com/src/js/izahariev/$third-party (easylistchina+easylist.txt: 40393) -.hostmonster.com/src/js/izahariev/ -# ||hostinger.nl/banners/ (easylistchina+easylist.txt: 40392) -.hostinger.nl/banners/ -# ||hosting.conduit.com^$third-party (easylistchina+easylist.txt: 40391) -.hosting.conduit.com -# ||hostgator.com/~affiliat/cgi-bin/affiliates/$third-party (easylistchina+easylist.txt: 40390) -.hostgator.com/~affiliat/cgi-bin/affiliates/ -# ||hostdime.com/images/affiliate/$third-party (easylistchina+easylist.txt: 40389) -.hostdime.com/images/affiliate/ -# ||homad-global-configs.schneevonmorgen.com^ (easylistchina+easylist.txt: 40388) -.homad-global-configs.schneevonmorgen.com -# ||hm-sat.de/b.php (easylistchina+easylist.txt: 40387) -.hm-sat.de/b\.php -# ||hitleap.com/assets/banner.png (easylistchina+easylist.txt: 40386) -.hitleap.com/assets/banner\.png -# ||hitleap.com/assets/banner- (easylistchina+easylist.txt: 40385) -.hitleap.com/assets/banner- -# ||highepcoffer.com/images/banners/ (easylistchina+easylist.txt: 40384) -.highepcoffer.com/images/banners/ -# ||hide-my-ip.com/promo/ (easylistchina+easylist.txt: 40383) -.hide-my-ip.com/promo/ -# ||hexero.com/images/banner.gif (easylistchina+easylist.txt: 40382) -.hexero.com/images/banner\.gif -# ||heidiklein.com/media/banners/ (easylistchina+easylist.txt: 40381) -.heidiklein.com/media/banners/ -# ||healthtrader.com/banner-$third-party (easylistchina+easylist.txt: 40380) -.healthtrader.com/banner- -# ||hdvid-codecs.com^$third-party (easylistchina+easylist.txt: 40379) -.hdvid-codecs.com -# ||haymarket.net.au/Skins/ (easylistchina+easylist.txt: 40378) -.haymarket.net.au/Skins/ -# ||haymarket-whistleout.s3.amazonaws.com/*_ad.html (easylistchina+easylist.txt: 40377) -.haymarket-whistleout.s3.amazonaws.com/.*_ad\.html -# ||handango.com/marketing/affiliate/ (easylistchina+easylist.txt: 40376) -.handango.com/marketing/affiliate/ -# ||halllakeland.com/banner/ (easylistchina+easylist.txt: 40375) -.halllakeland.com/banner/ -# ||guzzle.co.za/media/banners/ (easylistchina+easylist.txt: 40374) -.guzzle.co.za/media/banners/ -# ||guim.co.uk/guardian/thirdparty/tv-site/side.html (easylistchina+easylist.txt: 40373) -.guim.co.uk/guardian/thirdparty/tv-site/side\.html -# ||gsniper.com/images/$third-party (easylistchina+easylist.txt: 40372) -.gsniper.com/images/ -# ||grouponcdn.com^*/affiliate_widget/$third-party (easylistchina+easylist.txt: 40371) -.grouponcdn.com/.*/affiliate_widget/ -# ||groupon.com/javascripts/common/affiliate_widget/$third-party (easylistchina+easylist.txt: 40370) -.groupon.com/javascripts/common/affiliate_widget/ -# ||grindabuck.com/img/skyscraper.jpg (easylistchina+easylist.txt: 40369) -.grindabuck.com/img/skyscraper\.jpg -# ||grammar.coursekey.com/inter/$third-party (easylistchina+easylist.txt: 40368) -.grammar.coursekey.com/inter/ -# ||graduateinjapan.com/affiliates/ (easylistchina+easylist.txt: 40367) -.graduateinjapan.com/affiliates/ -# ||graboid.com/affiliates/ (easylistchina+easylist.txt: 40366) -.graboid.com/affiliates/ -# ||govids.net/adss/ (easylistchina+easylist.txt: 40364) -.govids.net/adss/ -# ||gotraffic.net^*/sponsors/ (easylistchina+easylist.txt: 40363) -.gotraffic.net/.*/sponsors/ -# ||gorgonprojectinvest.com/images/banners/ (easylistchina+easylist.txt: 40362) -.gorgonprojectinvest.com/images/banners/ -# ||googlesyndication.com^*/simgad/$third-party (easylistchina+easylist.txt: 40361) -.googlesyndication.com/.*/simgad/ -# ||googlesyndication.com^*/googlevideoadslibraryas3.swf$object-subrequest,third-party (easylistchina+easylist.txt: 40360) -.googlesyndication.com/.*/googlevideoadslibraryas3\.swf -# ||googlesyndication.com^*/domainpark.cgi? (easylistchina+easylist.txt: 40359) -.googlesyndication.com/.*/domainpark\.cgi\? -# ||googlesyndication.com^*/click_to_buy/$object-subrequest,third-party (easylistchina+easylist.txt: 40358) -.googlesyndication.com/.*/click_to_buy/ -# ||googlesyndication.com/simgad/$third-party (easylistchina+easylist.txt: 40357) -.googlesyndication.com/simgad/ -# ||googlesyndication.com/safeframe/$third-party (easylistchina+easylist.txt: 40356) -.googlesyndication.com/safeframe/ -# ||googlesyndication.com/pagead/$third-party (easylistchina+easylist.txt: 40355) -.googlesyndication.com/pagead/ -# ||google.com/uds/afs?*adsense$subdocument (easylistchina+easylist.txt: 40354) -.google.com/uds/afs\?.*adsense -# ||google.com/pagead/ (easylistchina+easylist.txt: 40353) -.google.com/pagead/ -# ||goldmoney.com/~/media/Images/Banners/$third-party (easylistchina+easylist.txt: 40350) -.goldmoney.com/~/media/Images/Banners/ -# ||gold4rs.com/images/$third-party (easylistchina+easylist.txt: 40349) -.gold4rs.com/images/ -# ||gogousenet.com^*/promo2.cgi (easylistchina+easylist.txt: 40348) -.gogousenet.com/.*/promo2\.cgi -# ||gogousenet.com^*/promo.cgi (easylistchina+easylist.txt: 40347) -.gogousenet.com/.*/promo\.cgi -# ||goadv.com^*/ads.js (easylistchina+easylist.txt: 40346) -.goadv.com/.*/ads\.js -# ||gmstatic.net^*/itunesbadge.png (easylistchina+easylist.txt: 40345) -.gmstatic.net/.*/itunesbadge\.png -# ||gmstatic.net^*/amazonbadge.png (easylistchina+easylist.txt: 40344) -.gmstatic.net/.*/amazonbadge\.png -# ||globalprocash.com/banner125.gif (easylistchina+easylist.txt: 40343) -.globalprocash.com/banner125\.gif -# ||glam.com^*?affiliateid= (easylistchina+easylist.txt: 40342) -.glam.com/.*\?affiliateid= -# ||glam.com/gad/ (easylistchina+easylist.txt: 40341) -.glam.com/gad/ -# ||giffgaff.com/banner/ (easylistchina+easylist.txt: 40340) -.giffgaff.com/banner/ -# ||giantsavings-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 40339) -.giantsavings-a.akamaihd.net -# ||giantrealm.com/saj/ (easylistchina+easylist.txt: 40338) -.giantrealm.com/saj/ -# ||ggmania.com^*.jpg$third-party (easylistchina+easylist.txt: 40337) -.ggmania.com/.*\.jpg -# ||gfxa.sheetmusicplus.com^$third-party (easylistchina+easylist.txt: 40336) -.gfxa.sheetmusicplus.com -# ||gfaf-banners.s3.amazonaws.com^ (easylistchina+easylist.txt: 40335) -.gfaf-banners.s3.amazonaws.com -# ||getpaidforyourtime.org/basic-rotating-banner/ (easylistchina+easylist.txt: 40334) -.getpaidforyourtime.org/basic-rotating-banner/ -# ||getnzb.com/img/partner/banners/$third-party (easylistchina+easylist.txt: 40333) -.getnzb.com/img/partner/banners/ -# ||gethopper.com/tp/$third-party (easylistchina+easylist.txt: 40332) -.gethopper.com/tp/ -# ||getadblock.com/images/adblock_banners/$third-party (easylistchina+easylist.txt: 40331) -.getadblock.com/images/adblock_banners/ -# ||get.thisisvegas.com^$third-party (easylistchina+easylist.txt: 40330) -.get.thisisvegas.com -# ||get.slotocash.com^$third-party (easylistchina+easylist.txt: 40329) -.get.slotocash.com -# ||get.rubyroyal.com^$third-party (easylistchina+easylist.txt: 40328) -.get.rubyroyal.com -# ||get.paradise8.com^$third-party (easylistchina+easylist.txt: 40327) -.get.paradise8.com -# ||get.davincisgold.com^$third-party (easylistchina+easylist.txt: 40326) -.get.davincisgold.com -# ||get.box24casino.com^$third-party (easylistchina+easylist.txt: 40325) -.get.box24casino.com -# ||get.2leep.com^$third-party (easylistchina+easylist.txt: 40324) -.get.2leep.com -# ||get.*.website/static/get-js?stid=$third-party (easylistchina+easylist.txt: 40323) -.get.*./.*\.website/static/get-js\?stid= -.get.*.website/static/get-js\?stid= -# ||geobanner.passion.com^ (easylistchina+easylist.txt: 40322) -.geobanner.passion.com -# ||geobanner.friendfinder.com^ (easylistchina+easylist.txt: 40321) -.geobanner.friendfinder.com -# ||geo.connexionsecure.com^ (easylistchina+easylist.txt: 40320) -.geo.connexionsecure.com -# ||generic4all.com^*?refid=$third-party (easylistchina+easylist.txt: 40319) -.generic4all.com/.*\?refid= -# ||gemini.yahoo.com^*^syndication^ (easylistchina+easylist.txt: 40318) -.gemini.yahoo.com/.*[^\w%.-]syndication[^\w%.-] -# ||gawkerassets.com/assets/marquee/$object,third-party (easylistchina+easylist.txt: 40316) -.gawkerassets.com/assets/marquee/ -# ||gateways.s3.amazonaws.com^ (easylistchina+easylist.txt: 40315) -.gateways.s3.amazonaws.com -# ||gateway.fortunelounge.com^ (easylistchina+easylist.txt: 40314) -.gateway.fortunelounge.com -# ||gamingjobsonline.com/images/banner/ (easylistchina+easylist.txt: 40313) -.gamingjobsonline.com/images/banner/ -# ||gamestop.com^*/aflbanners/ (easylistchina+easylist.txt: 40312) -.gamestop.com/.*/aflbanners/ -# ||gamesports.net/img/betting_campaigns/ (easylistchina+easylist.txt: 40311) -.gamesports.net/img/betting_campaigns/ -# ||gamersaloon.com/images/banners/ (easylistchina+easylist.txt: 40310) -.gamersaloon.com/images/banners/ -# ||gamer-network.net/plugins/dfp/ (easylistchina+easylist.txt: 40309) -.gamer-network.net/plugins/dfp/ -# ||gameorc.net/a.html (easylistchina+easylist.txt: 40308) -.gameorc.net/a\.html -# ||gameduell.com/res/affiliate/ (easylistchina+easylist.txt: 40307) -.gameduell.com/res/affiliate/ -# ||gamblingwages.com/images/$third-party (easylistchina+easylist.txt: 40306) -.gamblingwages.com/images/ -# ||gadgetresearch.net^$subdocument,third-party (easylistchina+easylist.txt: 40305) -.gadgetresearch.net -# ||fyygame.com/images/*.swf$third-party (easylistchina+easylist.txt: 40304) -.fyygame.com/images/.*\.swf -# ||fyiwashtenaw.com/remote_widget? (easylistchina+easylist.txt: 40303) -.fyiwashtenaw.com/remote_widget\? -# ||fyicentralmi.com/remote_widget?$third-party (easylistchina+easylist.txt: 40302) -.fyicentralmi.com/remote_widget\? -# ||fxultima.com/banner/ (easylistchina+easylist.txt: 40301) -.fxultima.com/banner/ -# ||fxcc.com/promo/ (easylistchina+easylist.txt: 40300) -.fxcc.com/promo/ -# ||futuresite.register.com/us?$third-party (easylistchina+easylist.txt: 40299) -.futuresite.register.com/us\? -# ||futuboxhd.com/js/bc.js (easylistchina+easylist.txt: 40298) -.futuboxhd.com/js/bc\.js -# ||furiousteam.com^*/external_banner/ (easylistchina+easylist.txt: 40297) -.furiousteam.com/.*/external_banner/ -# ||fupa.com/aw.aspx?$third-party (easylistchina+easylist.txt: 40296) -.fupa.com/aw\.aspx\? -# ||funtonia.com/promo/ (easylistchina+easylist.txt: 40295) -.funtonia.com/promo/ -# ||fugger.netfirms.com/moa.swf$third-party (easylistchina+easylist.txt: 40294) -.fugger.netfirms.com/moa\.swf -# ||fugger.ipage.com^$third-party (easylistchina+easylist.txt: 40293) -.fugger.ipage.com -# ||ft.pnop.com^ (easylistchina+easylist.txt: 40292) -.ft.pnop.com -# ||frontsight.com^*/banners/ (easylistchina+easylist.txt: 40291) -.frontsight.com/.*/banners/ -# ||frogatto.com/images/$third-party (easylistchina+easylist.txt: 40290) -.frogatto.com/images/ -# ||friedrice.la/widget/$third-party (easylistchina+easylist.txt: 40289) -.friedrice.la/widget/ -# ||freshbooks.com/images/banners/$third-party (easylistchina+easylist.txt: 40288) -.freshbooks.com/images/banners/ -# ||freewheel.mtgx.tv^$~object-subrequest (easylistchina+easylist.txt: 40287) -.freewheel.mtgx.tv -# ||freetricktipss.info^$subdocument,third-party (easylistchina+easylist.txt: 40286) -.freetricktipss.info -# ||freetrafficsystem.com/fts/ban/ (easylistchina+easylist.txt: 40285) -.freetrafficsystem.com/fts/ban/ -# ||freecycle.org^*/sponsors/ (easylistchina+easylist.txt: 40284) -.freecycle.org/.*/sponsors/ -# ||free-football.tv/images/usd/ (easylistchina+easylist.txt: 40283) -.free-football.tv/images/usd/ -# ||freakshare.net/banner/ (easylistchina+easylist.txt: 40282) -.freakshare.net/banner/ -# ||freakshare.com/banner/$third-party (easylistchina+easylist.txt: 40281) -.freakshare.com/banner/ -# ||freakshare.com/?ref= (easylistchina+easylist.txt: 40280) -.freakshare.com/\?ref= -# ||fragfestservers.com/bannerb.gif (easylistchina+easylist.txt: 40279) -.fragfestservers.com/bannerb\.gif -# ||forumimg.ipmart.com/swf/img.php (easylistchina+easylist.txt: 40278) -.forumimg.ipmart.com/swf/img\.php -# ||fortune5minutes.com^*/banner_ (easylistchina+easylist.txt: 40277) -.fortune5minutes.com/.*/banner_ -# ||forms.aweber.com/form/styled_popovers_and_lightboxes.js$third-party (easylistchina+easylist.txt: 40276) -.forms.aweber.com/form/styled_popovers_and_lightboxes\.js -# ||footymad.net/partners/ (easylistchina+easylist.txt: 40275) -.footymad.net/partners/ -# ||followfairy.com/followfairy300x250.jpg (easylistchina+easylist.txt: 40274) -.followfairy.com/followfairy300x250\.jpg -# ||fncstatic.com^*/business-exchange.html (easylistchina+easylist.txt: 40273) -.fncstatic.com/.*/business-exchange\.html -# ||flower.com/img/lsh/ (easylistchina+easylist.txt: 40272) -.flower.com/img/lsh/ -# ||flixcart.com/affiliate/$third-party (easylistchina+easylist.txt: 40271) -.flixcart.com/affiliate/ -# ||flipkart.com/affiliateWidget/$third-party (easylistchina+easylist.txt: 40270) -.flipkart.com/affiliateWidget/ -# ||flipchat.com/index.php?$third-party (easylistchina+easylist.txt: 40269) -.flipchat.com/index\.php\? -# ||flagship.asp-host.co.uk^$third-party (easylistchina+easylist.txt: 40268) -.flagship.asp-host.co.uk -# ||firstclass-download.com^$subdocument,third-party (easylistchina+easylist.txt: 40267) -.firstclass-download.com -# ||firecenter.pl/banners/ (easylistchina+easylist.txt: 40266) -.firecenter.pl/banners/ -# ||fimserve.myspace.com^$third-party (easylistchina+easylist.txt: 40265) -.fimserve.myspace.com -# ||filterforge.com/images/banners/ (easylistchina+easylist.txt: 40264) -.filterforge.com/images/banners/ -# ||filmehd.net/imagini/banner_$third-party (easylistchina+easylist.txt: 40262) -.filmehd.net/imagini/banner_ -# ||fileserver1.net/download (easylistchina+easylist.txt: 40261) -.fileserver1.net/download -# ||fileserve.com/images/banner_$third-party (easylistchina+easylist.txt: 40260) -.fileserve.com/images/banner_ -# ||filepost.com/static/images/bn/ (easylistchina+easylist.txt: 40259) -.filepost.com/static/images/bn/ -# ||fileparadox.com/images/banner/ (easylistchina+easylist.txt: 40258) -.fileparadox.com/images/banner/ -# ||fileloadr.com^$third-party (easylistchina+easylist.txt: 40257) -.fileloadr.com -# ||filejungle.com/images/banner/ (easylistchina+easylist.txt: 40256) -.filejungle.com/images/banner/ -# ||filefactory.com^*/refer.php?hash= (easylistchina+easylist.txt: 40255) -.filefactory.com/.*/refer\.php\?hash= -# ||filedroid.net/af_ta/$third-party (easylistchina+easylist.txt: 40254) -.filedroid.net/af_ta/ -# ||filedownloader.net/design/$third-party (easylistchina+easylist.txt: 40253) -.filedownloader.net/design/ -# ||fenixm.com/actions/*Skin*.$image (easylistchina+easylist.txt: 40252) -.fenixm.com/actions/.*Skin.*\. -# ||feeds.logicbuy.com^ (easylistchina+easylist.txt: 40251) -.feeds.logicbuy.com -# ||feedburner.com/~a/ (easylistchina+easylist.txt: 40250) -.feedburner.com/~a/ -# ||fcgadgets.blogspot.com^$third-party (easylistchina+easylist.txt: 40249) -.fcgadgets.blogspot.com -# ||fatburningfurnace.com^*/fbf-banner- (easylistchina+easylist.txt: 40248) -.fatburningfurnace.com/.*/fbf-banner- -# ||fatads.toldya.com^$third-party (easylistchina+easylist.txt: 40247) -.fatads.toldya.com -# ||fastcccam.com/images/fcbanner2.gif (easylistchina+easylist.txt: 40246) -.fastcccam.com/images/fcbanner2\.gif -# ||farmholidays.is/iframeallfarmsearch.aspx?$third-party (easylistchina+easylist.txt: 40245) -.farmholidays.is/iframeallfarmsearch\.aspx\? -# ||fapturbo.com/testoid/ (easylistchina+easylist.txt: 40244) -.fapturbo.com/testoid/ -# ||fantaz.com^*/banners/$third-party (easylistchina+easylist.txt: 40243) -.fantaz.com/.*/banners/ -# ||fantasyplayers.com/templates/banner_code. (easylistchina+easylist.txt: 40242) -.fantasyplayers.com/templates/banner_code\. -# ||fancybar.net/ac/fancybar.js?zoneid$third-party (easylistchina+easylist.txt: 40241) -.fancybar.net/ac/fancybar\.js\?zoneid -# ||familytreedna.com/img/affiliates/ (easylistchina+easylist.txt: 40240) -.familytreedna.com/img/affiliates/ -# ||fairfaxregional.com.au/proxy/commercial-partner-solar/ (easylistchina+easylist.txt: 40239) -.fairfaxregional.com.au/proxy/commercial-partner-solar/ -# ||eyetopics.com/content_images/$third-party (easylistchina+easylist.txt: 40238) -.eyetopics.com/content_images/ -# ||exwp.org/partners/ (easylistchina+easylist.txt: 40237) -.exwp.org/partners/ -# ||extras.mnginteractive.com^*/todaysdeals.gif (easylistchina+easylist.txt: 40236) -.extras.mnginteractive.com/.*/todaysdeals\.gif -# ||extras.mercurynews.com/tapin_directory/ (easylistchina+easylist.txt: 40235) -.extras.mercurynews.com/tapin_directory/ -# ||extensoft.com/artisteer/banners/ (easylistchina+easylist.txt: 40234) -.extensoft.com/artisteer/banners/ -# ||extabit.com/s/$third-party (easylistchina+easylist.txt: 40233) -.extabit.com/s/ -# ||ext.theglobalweb.com^ (easylistchina+easylist.txt: 40232) -.ext.theglobalweb.com -# ||explorer.sheknows.com^$third-party (easylistchina+easylist.txt: 40231) -.explorer.sheknows.com -# ||expekt.com/affiliates/ (easylistchina+easylist.txt: 40230) -.expekt.com/affiliates/ -# ||exoplanetwar.com/l/landing.php? (easylistchina+easylist.txt: 40229) -.exoplanetwar.com/l/landing\.php\? -# ||everestpoker.com^*/?adv= (easylistchina+easylist.txt: 40228) -.everestpoker.com/.*/\?adv= -# ||events.kalooga.com^ (easylistchina+easylist.txt: 40227) -.events.kalooga.com -# ||euwidget.imshopping.com^ (easylistchina+easylist.txt: 40226) -.euwidget.imshopping.com -# ||europolitique.info^*/pub/ (easylistchina+easylist.txt: 40225) -.europolitique.info/.*/pub/ -# ||etrader.kalahari.net^$third-party (easylistchina+easylist.txt: 40224) -.etrader.kalahari.net -# ||etrader.kalahari.com^$third-party (easylistchina+easylist.txt: 40223) -.etrader.kalahari.com -# ||etoro.com/B*_A*_TGet.aspx$third-party (easylistchina+easylist.txt: 40222) -.etoro.com/B.*_A.*_TGet\.aspx -# ||etoolkit.com/banner/$third-party (easylistchina+easylist.txt: 40221) -.etoolkit.com/banner/ -# ||esport-betting.com^*/betbanner/ (easylistchina+easylist.txt: 40220) -.esport-betting.com/.*/betbanner/ -# ||escape.insites.eu^$third-party (easylistchina+easylist.txt: 40219) -.escape.insites.eu -# ||epowernetworktrackerimages.s3.amazonaws.com^ (easylistchina+easylist.txt: 40218) -.epowernetworktrackerimages.s3.amazonaws.com -# ||eplreplays.com/wl/ (easylistchina+easylist.txt: 40217) -.eplreplays.com/wl/ -# ||epimg.net/js/pbs/ (easylistchina+easylist.txt: 40216) -.epimg.net/js/pbs/ -# ||enticelabs.com/el/ (easylistchina+easylist.txt: 40215) -.enticelabs.com/el/ -# ||engine.gamerati.net^$third-party (easylistchina+easylist.txt: 40214) -.engine.gamerati.net -# ||emsisoft.com/bnr/ (easylistchina+easylist.txt: 40213) -.emsisoft.com/bnr/ -# ||emailcashpro.com/images/$third-party (easylistchina+easylist.txt: 40212) -.emailcashpro.com/images/ -# ||eltexonline.com/contentrotator/$third-party (easylistchina+easylist.txt: 40211) -.eltexonline.com/contentrotator/ -# ||elliottwave.com/fw/regular_leaderboard.js (easylistchina+easylist.txt: 40210) -.elliottwave.com/fw/regular_leaderboard\.js -# ||elitsearch.com^$subdocument,third-party (easylistchina+easylist.txt: 40209) -.elitsearch.com -# ||elenasmodels.com/cache/cb_$third-party (easylistchina+easylist.txt: 40208) -.elenasmodels.com/cache/cb_ -# ||eholidayfinder.com/images/logo.gif$third-party (easylistchina+easylist.txt: 40207) -.eholidayfinder.com/images/logo\.gif -# ||edgecastcdn.net^*.barstoolsports.com/wp-content/banners/ (easylistchina+easylist.txt: 40206) -.edgecastcdn.net/.*\.barstoolsports\.com/wp-content/banners/ -# ||edge.viagogo.co.uk^*/widget.ashx?$third-party (easylistchina+easylist.txt: 40205) -.edge.viagogo.co.uk/.*/widget\.ashx\? -# ||ectaco-store.com^*/promo.jsp? (easylistchina+easylist.txt: 40204) -.ectaco-store.com/.*/promo\.jsp\? -# ||echineselearning.com^*/banner.jpg (easylistchina+easylist.txt: 40203) -.echineselearning.com/.*/banner\.jpg -# ||eblastengine.upickem.net^$third-party (easylistchina+easylist.txt: 40202) -.eblastengine.upickem.net -# ||ebladestore.com^*/banners/ (easylistchina+easylist.txt: 40201) -.ebladestore.com/.*/banners/ -# ||ebaystatic.com/aw/signin/ebay-signin-toyota- (easylistchina+easylist.txt: 40200) -.ebaystatic.com/aw/signin/ebay-signin-toyota- -# ||ebaycommercenetwork.com/publisher/$third-party (easylistchina+easylist.txt: 40199) -.ebaycommercenetwork.com/publisher/ -# ||eattoday.com.mt/widgets/$third-party (easylistchina+easylist.txt: 40198) -.eattoday.com.mt/widgets/ -# ||easyretiredmillionaire.com/img/aff-img/ (easylistchina+easylist.txt: 40197) -.easyretiredmillionaire.com/img/aff-img/ -# ||easy-share.com/images/es20/ (easylistchina+easylist.txt: 40196) -.easy-share.com/images/es20/ -# ||e-webcorp.com/images/$third-party (easylistchina+easylist.txt: 40195) -.e-webcorp.com/images/ -# ||e-tailwebstores.com/accounts/default1/banners/ (easylistchina+easylist.txt: 40194) -.e-tailwebstores.com/accounts/default1/banners/ -# ||dynw.com/banner (easylistchina+easylist.txt: 40193) -.dynw.com/banner -# ||dynamicserving.com^$third-party (easylistchina+easylist.txt: 40192) -.dynamicserving.com -# ||dyl3p6so5yozo.cloudfront.net^ (easylistchina+easylist.txt: 40191) -.dyl3p6so5yozo.cloudfront.net -# ||dycpc40hvg4ki.cloudfront.net^ (easylistchina+easylist.txt: 40190) -.dycpc40hvg4ki.cloudfront.net -# ||dy48bnzanqw0v.cloudfront.net^ (easylistchina+easylist.txt: 40189) -.dy48bnzanqw0v.cloudfront.net -# ||dxqd86uz345mg.cloudfront.net^ (easylistchina+easylist.txt: 40188) -.dxqd86uz345mg.cloudfront.net -# ||dxq6c0tx3v6mm.cloudfront.net^ (easylistchina+easylist.txt: 40187) -.dxq6c0tx3v6mm.cloudfront.net -# ||dx5qvhwg92mjd.cloudfront.net^ (easylistchina+easylist.txt: 40186) -.dx5qvhwg92mjd.cloudfront.net -# ||dx.com/affiliate/$third-party (easylistchina+easylist.txt: 40185) -.dx.com/affiliate/ -# ||dvt4pepo9om3r.cloudfront.net^ (easylistchina+easylist.txt: 40184) -.dvt4pepo9om3r.cloudfront.net -# ||dvf2u7vwmkr5w.cloudfront.net^ (easylistchina+easylist.txt: 40183) -.dvf2u7vwmkr5w.cloudfront.net -# ||dvdfab.com/images/fabnewbanner/$third-party (easylistchina+easylist.txt: 40182) -.dvdfab.com/images/fabnewbanner/ -# ||duct5ntjian71.cloudfront.net^ (easylistchina+easylist.txt: 40181) -.duct5ntjian71.cloudfront.net -# ||dttek.com/sponsors/ (easylistchina+easylist.txt: 40180) -.dttek.com/sponsors/ -# ||droidnetwork.net/img/vendors/ (easylistchina+easylist.txt: 40178) -.droidnetwork.net/img/vendors/ -# ||droidnetwork.net/img/dt-atv160.jpg (easylistchina+easylist.txt: 40177) -.droidnetwork.net/img/dt-atv160\.jpg -# ||dreamstime.com/refbanner- (easylistchina+easylist.txt: 40176) -.dreamstime.com/refbanner- -# ||dreamstime.com/img/badges/banner$third-party (easylistchina+easylist.txt: 40175) -.dreamstime.com/img/badges/banner -# ||dreamstime.com/banner/ (easylistchina+easylist.txt: 40174) -.dreamstime.com/banner/ -# ||dreamhost.com/rewards/$third-party (easylistchina+easylist.txt: 40173) -.dreamhost.com/rewards/ -# ||dreamboxcart.com/earning/$third-party (easylistchina+easylist.txt: 40172) -.dreamboxcart.com/earning/ -# ||dramafeverw2.appspot.com/widget/$third-party (easylistchina+easylist.txt: 40171) -.dramafeverw2.appspot.com/widget/ -# ||dramafever.com/widget/$third-party (easylistchina+easylist.txt: 40170) -.dramafever.com/widget/ -# ||dr8pk6ovub897.cloudfront.net^ (easylistchina+easylist.txt: 40169) -.dr8pk6ovub897.cloudfront.net -# ||dqhi3ea93ztgv.cloudfront.net^ (easylistchina+easylist.txt: 40168) -.dqhi3ea93ztgv.cloudfront.net -# ||dq2tgxnc2knif.cloudfront.net^ (easylistchina+easylist.txt: 40167) -.dq2tgxnc2knif.cloudfront.net -# ||dpsq2uzakdgqz.cloudfront.net^ (easylistchina+easylist.txt: 40166) -.dpsq2uzakdgqz.cloudfront.net -# ||dp51h10v6ggpa.cloudfront.net^ (easylistchina+easylist.txt: 40165) -.dp51h10v6ggpa.cloudfront.net -# ||downloadprovider.me/en/search/*?aff.id=*&iframe=$third-party (easylistchina+easylist.txt: 40164) -.downloadprovider.me/en/search/.*\?aff\.id=.*&iframe= -# ||downloadandsave-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 40163) -.downloadandsave-a.akamaihd.net -# ||download.bitdefender.com/resources/media/$third-party (easylistchina+easylist.txt: 40162) -.download.bitdefender.com/resources/media/ -# ||download-provider.org/?aff.id=$third-party (easylistchina+easylist.txt: 40161) -.download-provider.org/\?aff\.id= -# ||dotz123.com/run.php? (easylistchina+easylist.txt: 40160) -.dotz123.com/run\.php\? -# ||dot.tk/urlfwd/searchbar/bar.html (easylistchina+easylist.txt: 40159) -.dot.tk/urlfwd/searchbar/bar\.html -# ||dorabet.com/banner/ (easylistchina+easylist.txt: 40158) -.dorabet.com/banner/ -# ||domainnamesales.com/return_js.php? (easylistchina+easylist.txt: 40157) -.domainnamesales.com/return_js\.php\? -# ||domaingateway.com/js/redirect-min.js (easylistchina+easylist.txt: 40156) -.domaingateway.com/js/redirect-min\.js -# ||domainapps.com/assets/img/domain-apps.gif$third-party (easylistchina+easylist.txt: 40155) -.domainapps.com/assets/img/domain-apps\.gif -# ||dntrck.com/trax? (easylistchina+easylist.txt: 40154) -.dntrck.com/trax\? -# ||dm8srf206hien.cloudfront.net^ (easylistchina+easylist.txt: 40153) -.dm8srf206hien.cloudfront.net -# ||dm0acvguygm9h.cloudfront.net^ (easylistchina+easylist.txt: 40152) -.dm0acvguygm9h.cloudfront.net -# ||dlupv9uqtjlie.cloudfront.net^ (easylistchina+easylist.txt: 40151) -.dlupv9uqtjlie.cloudfront.net -# ||dl5v5atodo7gn.cloudfront.net^ (easylistchina+easylist.txt: 40150) -.dl5v5atodo7gn.cloudfront.net -# ||dl392qndlveq0.cloudfront.net^ (easylistchina+easylist.txt: 40149) -.dl392qndlveq0.cloudfront.net -# ||dkdwv3lcby5zi.cloudfront.net^ (easylistchina+easylist.txt: 40148) -.dkdwv3lcby5zi.cloudfront.net -# ||dkd69bwkvrht1.cloudfront.net^ (easylistchina+easylist.txt: 40147) -.dkd69bwkvrht1.cloudfront.net -# ||djlf5xdlz7m8m.cloudfront.net^ (easylistchina+easylist.txt: 40146) -.djlf5xdlz7m8m.cloudfront.net -# ||dizixdllzznrf.cloudfront.net^ (easylistchina+easylist.txt: 40145) -.dizixdllzznrf.cloudfront.net -# ||disy2s34euyqm.cloudfront.net^ (easylistchina+easylist.txt: 40144) -.disy2s34euyqm.cloudfront.net -# ||disqus.com/listPromoted? (easylistchina+easylist.txt: 40143) -.disqus.com/listPromoted\? -# ||display.digitalriver.com^ (easylistchina+easylist.txt: 40142) -.display.digitalriver.com -# ||directnicparking.com^$third-party (easylistchina+easylist.txt: 40141) -.directnicparking.com -# ||direct.quasir.info^$third-party (easylistchina+easylist.txt: 40140) -.direct.quasir.info -# ||digitalsatellite.tv/banners/ (easylistchina+easylist.txt: 40139) -.digitalsatellite.tv/banners/ -# ||digitalmediacommunications.com/belleville/employment/ (easylistchina+easylist.txt: 40138) -.digitalmediacommunications.com/belleville/employment/ -# ||dff7tx5c2qbxc.cloudfront.net^ (easylistchina+easylist.txt: 40136) -.dff7tx5c2qbxc.cloudfront.net -# ||dew9ckzjyt2gn.cloudfront.net^ (easylistchina+easylist.txt: 40135) -.dew9ckzjyt2gn.cloudfront.net -# ||devil-bet.com/banner/ (easylistchina+easylist.txt: 40134) -.devil-bet.com/banner/ -# ||developermedia.com/a.min.js (easylistchina+easylist.txt: 40133) -.developermedia.com/a\.min\.js -# ||dev-cms.com^*/promobanners/ (easylistchina+easylist.txt: 40132) -.dev-cms.com/.*/promobanners/ -# ||detroitmedia.com/jfry/ (easylistchina+easylist.txt: 40131) -.detroitmedia.com/jfry/ -# ||desperateseller.co.uk/affiliates/ (easylistchina+easylist.txt: 40130) -.desperateseller.co.uk/affiliates/ -# ||deskbabes.com/ref.php? (easylistchina+easylist.txt: 40129) -.deskbabes.com/ref\.php\? -# ||desi4m.com/desi4m.gif$third-party (easylistchina+easylist.txt: 40128) -.desi4m.com/desi4m\.gif -# ||depositfiles.com^*.php?ref= (easylistchina+easylist.txt: 40127) -.depositfiles.com/.*\.php\?ref= -# ||dennis.co.uk^*/siteskins/ (easylistchina+easylist.txt: 40126) -.dennis.co.uk/.*/siteskins/ -# ||delivery.importantmedia.org^$third-party (easylistchina+easylist.txt: 40125) -.delivery.importantmedia.org -# ||dealzone.co.za^$script,third-party (easylistchina+easylist.txt: 40124) -.dealzone.co.za -# ||dealtoday.com.mt/banners/ (easylistchina+easylist.txt: 40123) -.dealtoday.com.mt/banners/ -# ||dealswarm.com^$subdocument,third-party (easylistchina+easylist.txt: 40122) -.dealswarm.com -# ||deals4thecure.com/widgets/*?affiliateurl= (easylistchina+easylist.txt: 40121) -.deals4thecure.com/widgets/.*\?affiliateurl= -# ||deals.macupdate.com^$third-party (easylistchina+easylist.txt: 40120) -.deals.macupdate.com -# ||deals.buxr.net^$third-party (easylistchina+easylist.txt: 40119) -.deals.buxr.net -# ||dealplatform.com^*/widgets/$third-party (easylistchina+easylist.txt: 40118) -.dealplatform.com/.*/widgets/ -# ||dealextreme.com/affiliate_upload/$third-party (easylistchina+easylist.txt: 40117) -.dealextreme.com/affiliate_upload/ -# ||ddwht76d9jvfl.cloudfront.net^ (easylistchina+easylist.txt: 40116) -.ddwht76d9jvfl.cloudfront.net -# ||dbam.dashbida.com^ (easylistchina+easylist.txt: 40115) -.dbam.dashbida.com -# ||dawanda.com/widget/$third-party (easylistchina+easylist.txt: 40114) -.dawanda.com/widget/ -# ||daterly.com/*.widget.php$third-party (easylistchina+easylist.txt: 40113) -.daterly.com/.*\.widget\.php -# ||datakl.com/banner/ (easylistchina+easylist.txt: 40112) -.datakl.com/banner/ -# ||datafeedfile.com/widget/readywidget/ (easylistchina+easylist.txt: 40111) -.datafeedfile.com/widget/readywidget/ -# ||data.neuroxmedia.com^ (easylistchina+easylist.txt: 40110) -.data.neuroxmedia.com -# ||dasfdasfasdf.no-ip.info^ (easylistchina+easylist.txt: 40109) -.dasfdasfasdf.no-ip.info -# ||dart.clearchannel.com^ (easylistchina+easylist.txt: 40108) -.dart.clearchannel.com -# ||dapatwang.com/images/banner/ (easylistchina+easylist.txt: 40107) -.dapatwang.com/images/banner/ -# ||dal9hkyfi0m0n.cloudfront.net^ (easylistchina+easylist.txt: 40106) -.dal9hkyfi0m0n.cloudfront.net -# ||dailydealstwincities.com/widgets/$subdocument,third-party (easylistchina+easylist.txt: 40105) -.dailydealstwincities.com/widgets/ -# ||d8qy7md4cj3gz.cloudfront.net^ (easylistchina+easylist.txt: 40104) -.d8qy7md4cj3gz.cloudfront.net -# ||d6bdy3eto8fyu.cloudfront.net^ (easylistchina+easylist.txt: 40103) -.d6bdy3eto8fyu.cloudfront.net -# ||d5pvnbpawsaav.cloudfront.net^ (easylistchina+easylist.txt: 40102) -.d5pvnbpawsaav.cloudfront.net -# ||d3vc1nm9xbncz5.cloudfront.net^ (easylistchina+easylist.txt: 40101) -.d3vc1nm9xbncz5.cloudfront.net -# ||d3tdefw8pwfkbk.cloudfront.net^ (easylistchina+easylist.txt: 40100) -.d3tdefw8pwfkbk.cloudfront.net -# ||d3t9ip55bsuxrf.cloudfront.net^ (easylistchina+easylist.txt: 40099) -.d3t9ip55bsuxrf.cloudfront.net -# ||d3t2wca0ou3lqz.cloudfront.net^ (easylistchina+easylist.txt: 40098) -.d3t2wca0ou3lqz.cloudfront.net -# ||d3qszud4qdthr8.cloudfront.net^ (easylistchina+easylist.txt: 40097) -.d3qszud4qdthr8.cloudfront.net -# ||d3q2dpprdsteo.cloudfront.net^ (easylistchina+easylist.txt: 40096) -.d3q2dpprdsteo.cloudfront.net -# ||d3pkae9owd2lcf.cloudfront.net^ (easylistchina+easylist.txt: 40095) -.d3pkae9owd2lcf.cloudfront.net -# ||d3p9ql8flgemg7.cloudfront.net^ (easylistchina+easylist.txt: 40094) -.d3p9ql8flgemg7.cloudfront.net -# ||d3nvrqlo8rj1kw.cloudfront.net^ (easylistchina+easylist.txt: 40093) -.d3nvrqlo8rj1kw.cloudfront.net -# ||d3m41swuqq4sv5.cloudfront.net^ (easylistchina+easylist.txt: 40092) -.d3m41swuqq4sv5.cloudfront.net -# ||d3lzezfa753mqu.cloudfront.net^ (easylistchina+easylist.txt: 40091) -.d3lzezfa753mqu.cloudfront.net -# ||d3lvr7yuk4uaui.cloudfront.net^ (easylistchina+easylist.txt: 40090) -.d3lvr7yuk4uaui.cloudfront.net -# ||d3iwjrnl4m67rd.cloudfront.net^ (easylistchina+easylist.txt: 40089) -.d3iwjrnl4m67rd.cloudfront.net -# ||d3irruagotonpp.cloudfront.net^ (easylistchina+easylist.txt: 40088) -.d3irruagotonpp.cloudfront.net -# ||d3fzrm6pcer44x.cloudfront.net^ (easylistchina+easylist.txt: 40087) -.d3fzrm6pcer44x.cloudfront.net -# ||d3f9mcik999dte.cloudfront.net^ (easylistchina+easylist.txt: 40086) -.d3f9mcik999dte.cloudfront.net -# ||d3dphmosjk9rot.cloudfront.net^ (easylistchina+easylist.txt: 40085) -.d3dphmosjk9rot.cloudfront.net -# ||d3bvcf24wln03d.cloudfront.net^ (easylistchina+easylist.txt: 40084) -.d3bvcf24wln03d.cloudfront.net -# ||d39xqloz8t5a6x.cloudfront.net^ (easylistchina+easylist.txt: 40083) -.d39xqloz8t5a6x.cloudfront.net -# ||d38r21vtgndgb1.cloudfront.net^ (easylistchina+easylist.txt: 40082) -.d38r21vtgndgb1.cloudfront.net -# ||d38pxm3dmrdu6d.cloudfront.net^ (easylistchina+easylist.txt: 40081) -.d38pxm3dmrdu6d.cloudfront.net -# ||d37kzqe5knnh6t.cloudfront.net^ (easylistchina+easylist.txt: 40080) -.d37kzqe5knnh6t.cloudfront.net -# ||d34rdvn2ky3gnm.cloudfront.net^ (easylistchina+easylist.txt: 40079) -.d34rdvn2ky3gnm.cloudfront.net -# ||d34obr29voew8l.cloudfront.net^ (easylistchina+easylist.txt: 40078) -.d34obr29voew8l.cloudfront.net -# ||d33otidwg56k90.cloudfront.net^ (easylistchina+easylist.txt: 40077) -.d33otidwg56k90.cloudfront.net -# ||d33f10u0pfpplc.cloudfront.net^ (easylistchina+easylist.txt: 40076) -.d33f10u0pfpplc.cloudfront.net -# ||d32pxqbknuxsuy.cloudfront.net^ (easylistchina+easylist.txt: 40075) -.d32pxqbknuxsuy.cloudfront.net -# ||d31807xkria1x4.cloudfront.net^ (easylistchina+easylist.txt: 40074) -.d31807xkria1x4.cloudfront.net -# ||d2z1smm3i01tnr.cloudfront.net^ (easylistchina+easylist.txt: 40073) -.d2z1smm3i01tnr.cloudfront.net -# ||d2yhukq7vldf1u.cloudfront.net^ (easylistchina+easylist.txt: 40072) -.d2yhukq7vldf1u.cloudfront.net -# ||d2vt6q0n0iy66w.cloudfront.net^ (easylistchina+easylist.txt: 40071) -.d2vt6q0n0iy66w.cloudfront.net -# ||d2v9ajh2eysdau.cloudfront.net^ (easylistchina+easylist.txt: 40070) -.d2v9ajh2eysdau.cloudfront.net -# ||d2v4glj2m8yzg5.cloudfront.net^ (easylistchina+easylist.txt: 40069) -.d2v4glj2m8yzg5.cloudfront.net -# ||d2ue9k1rhsumed.cloudfront.net^ (easylistchina+easylist.txt: 40068) -.d2ue9k1rhsumed.cloudfront.net -# ||d2ubicnllnnszy.cloudfront.net^ (easylistchina+easylist.txt: 40067) -.d2ubicnllnnszy.cloudfront.net -# ||d2tnimpzlb191i.cloudfront.net^ (easylistchina+easylist.txt: 40066) -.d2tnimpzlb191i.cloudfront.net -# ||d2tgev5wuprbqq.cloudfront.net^ (easylistchina+easylist.txt: 40065) -.d2tgev5wuprbqq.cloudfront.net -# ||d2s64zaa9ua7uv.cloudfront.net^ (easylistchina+easylist.txt: 40064) -.d2s64zaa9ua7uv.cloudfront.net -# ||d2r359adnh3sfn.cloudfront.net^ (easylistchina+easylist.txt: 40063) -.d2r359adnh3sfn.cloudfront.net -# ||d2plxos94peuwp.cloudfront.net^ (easylistchina+easylist.txt: 40062) -.d2plxos94peuwp.cloudfront.net -# ||d2pgy8h4i30on1.cloudfront.net^ (easylistchina+easylist.txt: 40061) -.d2pgy8h4i30on1.cloudfront.net -# ||d2omcicc3a4zlg.cloudfront.net^ (easylistchina+easylist.txt: 40060) -.d2omcicc3a4zlg.cloudfront.net -# ||d2oallm7wrqvmi.cloudfront.net^ (easylistchina+easylist.txt: 40059) -.d2oallm7wrqvmi.cloudfront.net -# ||d2o307dm5mqftz.cloudfront.net^ (easylistchina+easylist.txt: 40058) -.d2o307dm5mqftz.cloudfront.net -# ||d2nlytvx51ywh9.cloudfront.net^ (easylistchina+easylist.txt: 40057) -.d2nlytvx51ywh9.cloudfront.net -# ||d2mq0uzafv8ytp.cloudfront.net^ (easylistchina+easylist.txt: 40056) -.d2mq0uzafv8ytp.cloudfront.net -# ||d2mic0r0bo3i6z.cloudfront.net^ (easylistchina+easylist.txt: 40055) -.d2mic0r0bo3i6z.cloudfront.net -# ||d2ipklohrie3lo.cloudfront.net^ (easylistchina+easylist.txt: 40054) -.d2ipklohrie3lo.cloudfront.net -# ||d2hap2bsh1k9lw.cloudfront.net^ (easylistchina+easylist.txt: 40053) -.d2hap2bsh1k9lw.cloudfront.net -# ||d2gz6iop9uxobu.cloudfront.net^ (easylistchina+easylist.txt: 40052) -.d2gz6iop9uxobu.cloudfront.net -# ||d2gtlljtkeiyzd.cloudfront.net^ (easylistchina+easylist.txt: 40051) -.d2gtlljtkeiyzd.cloudfront.net -# ||d2gpgaupalra1d.cloudfront.net^ (easylistchina+easylist.txt: 40050) -.d2gpgaupalra1d.cloudfront.net -# ||d2dxgm96wvaa5j.cloudfront.net^ (easylistchina+easylist.txt: 40049) -.d2dxgm96wvaa5j.cloudfront.net -# ||d2d2lbvq8xirbs.cloudfront.net^ (easylistchina+easylist.txt: 40048) -.d2d2lbvq8xirbs.cloudfront.net -# ||d2cxkkxhecdzsq.cloudfront.net^ (easylistchina+easylist.txt: 40047) -.d2cxkkxhecdzsq.cloudfront.net -# ||d2bgg7rjywcwsy.cloudfront.net^ (easylistchina+easylist.txt: 40046) -.d2bgg7rjywcwsy.cloudfront.net -# ||d2b65ihpmocv7w.cloudfront.net^ (easylistchina+easylist.txt: 40045) -.d2b65ihpmocv7w.cloudfront.net -# ||d2b2x1ywompm1b.cloudfront.net^ (easylistchina+easylist.txt: 40044) -.d2b2x1ywompm1b.cloudfront.net -# ||d2anfhdgjxf8s1.cloudfront.net^ (easylistchina+easylist.txt: 40043) -.d2anfhdgjxf8s1.cloudfront.net -# ||d29r6igjpnoykg.cloudfront.net^ (easylistchina+easylist.txt: 40041) -.d29r6igjpnoykg.cloudfront.net -# ||d287x05ve9a63s.cloudfront.net^ (easylistchina+easylist.txt: 40040) -.d287x05ve9a63s.cloudfront.net -# ||d27jt7xr4fq3e8.cloudfront.net^ (easylistchina+easylist.txt: 40039) -.d27jt7xr4fq3e8.cloudfront.net -# ||d26wy0pxd3qqpv.cloudfront.net^ (easylistchina+easylist.txt: 40038) -.d26wy0pxd3qqpv.cloudfront.net -# ||d26j9bp9bq4uhd.cloudfront.net^ (easylistchina+easylist.txt: 40037) -.d26j9bp9bq4uhd.cloudfront.net -# ||d26dzd2k67we08.cloudfront.net^ (easylistchina+easylist.txt: 40036) -.d26dzd2k67we08.cloudfront.net -# ||d25xkbr68qqtcn.cloudfront.net^ (easylistchina+easylist.txt: 40035) -.d25xkbr68qqtcn.cloudfront.net -# ||d25ruj6ht8bs1.cloudfront.net^ (easylistchina+easylist.txt: 40034) -.d25ruj6ht8bs1.cloudfront.net -# ||d23nyyb6dc29z6.cloudfront.net^ (easylistchina+easylist.txt: 40033) -.d23nyyb6dc29z6.cloudfront.net -# ||d23guct4biwna6.cloudfront.net^ (easylistchina+easylist.txt: 40032) -.d23guct4biwna6.cloudfront.net -# ||d1zgderxoe1a.cloudfront.net^ (easylistchina+easylist.txt: 40031) -.d1zgderxoe1a.cloudfront.net -# ||d1wa9546y9kg0n.cloudfront.net/index.js (easylistchina+easylist.txt: 40030) -.d1wa9546y9kg0n.cloudfront.net/index\.js -# ||d1vbm0eveofcle.cloudfront.net^ (easylistchina+easylist.txt: 40029) -.d1vbm0eveofcle.cloudfront.net -# ||d1spb7fplenrp4.cloudfront.net^ (easylistchina+easylist.txt: 40028) -.d1spb7fplenrp4.cloudfront.net -# ||d1pdpbxj733bb1.cloudfront.net^ (easylistchina+easylist.txt: 40027) -.d1pdpbxj733bb1.cloudfront.net -# ||d1pcttwib15k25.cloudfront.net^ (easylistchina+easylist.txt: 40026) -.d1pcttwib15k25.cloudfront.net -# ||d1noellhv8fksc.cloudfront.net^ (easylistchina+easylist.txt: 40025) -.d1noellhv8fksc.cloudfront.net -# ||d1k74lgicilrr3.cloudfront.net^ (easylistchina+easylist.txt: 40024) -.d1k74lgicilrr3.cloudfront.net -# ||d1gojtoka5qi10.cloudfront.net^ (easylistchina+easylist.txt: 40023) -.d1gojtoka5qi10.cloudfront.net -# ||d1fo96xm8fci0r.cloudfront.net^ (easylistchina+easylist.txt: 40022) -.d1fo96xm8fci0r.cloudfront.net -# ||d1ey3fksimezm4.cloudfront.net^ (easylistchina+easylist.txt: 40021) -.d1ey3fksimezm4.cloudfront.net -# ||d1ep3cn6qx0l3z.cloudfront.net^ (easylistchina+easylist.txt: 40020) -.d1ep3cn6qx0l3z.cloudfront.net -# ||d1d95giojjkirt.cloudfront.net^ (easylistchina+easylist.txt: 40019) -.d1d95giojjkirt.cloudfront.net -# ||d1cl1sqtf3o420.cloudfront.net^ (easylistchina+easylist.txt: 40018) -.d1cl1sqtf3o420.cloudfront.net -# ||d1ade4ciw4bqyc.cloudfront.net^ (easylistchina+easylist.txt: 40017) -.d1ade4ciw4bqyc.cloudfront.net -# ||d19972r8wdpby8.cloudfront.net^ (easylistchina+easylist.txt: 40016) -.d19972r8wdpby8.cloudfront.net -# ||d17f2fxw547952.cloudfront.net^ (easylistchina+easylist.txt: 40015) -.d17f2fxw547952.cloudfront.net -# ||d15gt9gwxw5wu0.cloudfront.net^ (easylistchina+easylist.txt: 40014) -.d15gt9gwxw5wu0.cloudfront.net -# ||d15565yqt7pv7r.cloudfront.net^ (easylistchina+easylist.txt: 40013) -.d15565yqt7pv7r.cloudfront.net -# ||d140sbu1b1m3h0.cloudfront.net^ (easylistchina+easylist.txt: 40012) -.d140sbu1b1m3h0.cloudfront.net -# ||d13czkep7ax7nj.cloudfront.net^ (easylistchina+easylist.txt: 40011) -.d13czkep7ax7nj.cloudfront.net -# ||d-l-t.com^$subdocument,third-party (easylistchina+easylist.txt: 40010) -.d-l-t.com -# ||cuteonly.com/banners.php$third-party (easylistchina+easylist.txt: 40009) -.cuteonly.com/banners\.php -# ||customer.heartinternet.co.uk^$third-party (easylistchina+easylist.txt: 40008) -.customer.heartinternet.co.uk -# ||customcodebydan.com/images/banner.gif (easylistchina+easylist.txt: 40007) -.customcodebydan.com/images/banner\.gif -# ||cursecdn.com/shared-assets/current/anchor.js?id=$third-party (easylistchina+easylist.txt: 40006) -.cursecdn.com/shared-assets/current/anchor\.js\?id= -# ||cursecdn.com/banner/ (easylistchina+easylist.txt: 40005) -.cursecdn.com/banner/ -# ||cts.tradepub.com/cts4/?ptnr=*&tm=$third-party (easylistchina+easylist.txt: 40004) -.cts.tradepub.com/cts4/\?ptnr=.*&tm= -# ||cstv.com^*/sponsors/ (easylistchina+easylist.txt: 40003) -.cstv.com/.*/sponsors/ -# ||crunchyroll.com/awidget/$third-party (easylistchina+easylist.txt: 40002) -.crunchyroll.com/awidget/ -# ||cruisesalefinder.co.nz/affiliates.html$third-party (easylistchina+easylist.txt: 40001) -.cruisesalefinder.co.nz/affiliates\.html -# ||crowdsavings.com/r/banner/ (easylistchina+easylist.txt: 40000) -.crowdsavings.com/r/banner/ -# ||creatives.summitconnect.co.uk^ (easylistchina+easylist.txt: 39999) -.creatives.summitconnect.co.uk -# ||creatives.inmotionhosting.com^ (easylistchina+easylist.txt: 39998) -.creatives.inmotionhosting.com -# ||cpm.amateurcommunity.de^ (easylistchina+easylist.txt: 39997) -.cpm.amateurcommunity.de -# ||cplayer.blinkx.com^$third-party (easylistchina+easylist.txt: 39996) -.cplayer.blinkx.com -# ||coxnewsweb.com^*/ads/ (easylistchina+easylist.txt: 39995) -.coxnewsweb.com/.*/ads/ -# ||couptopia.com/affiliate/$third-party (easylistchina+easylist.txt: 39994) -.couptopia.com/affiliate/ -# ||couponcp-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 39993) -.couponcp-a.akamaihd.net -# ||conversionplanet.com/published/feeds/$third-party (easylistchina+easylist.txt: 39992) -.conversionplanet.com/published/feeds/ -# ||continent8.com^*/bannerflow/ (easylistchina+easylist.txt: 39991) -.continent8.com/.*/bannerflow/ -# ||contentcastsyndication.com^*&banner (easylistchina+easylist.txt: 39990) -.contentcastsyndication.com/.*&banner -# ||content.secondspace.com^$~image,third-party (easylistchina+easylist.txt: 39989) -.content.secondspace.com -# ||content.livesportmedia.eu^ (easylistchina+easylist.txt: 39988) -.content.livesportmedia.eu -# ||consolpub.com/weatherwindow/ (easylistchina+easylist.txt: 39987) -.consolpub.com/weatherwindow/ -# ||connect.summit.co.uk^ (easylistchina+easylist.txt: 39985) -.connect.summit.co.uk -# ||conduit.com//banners/$third-party (easylistchina+easylist.txt: 39984) -# ||comx-computers.co.za/banners/$third-party (easylistchina+easylist.txt: 39983) -.comx-computers.co.za/banners/ -# ||complexmedianetwork.com/js/cmnUNT.js (easylistchina+easylist.txt: 39982) -.complexmedianetwork.com/js/cmnUNT\.js -# ||colorlabsproject.com^*/banner_ (easylistchina+easylist.txt: 39980) -.colorlabsproject.com/.*/banner_ -# ||colmwynne.com^$image,third-party (easylistchina+easylist.txt: 39979) -.colmwynne.com -# ||code.popup2m.com^$third-party (easylistchina+easylist.txt: 39978) -.code.popup2m.com -# ||cnnewmedia.co.uk/locker/ (easylistchina+easylist.txt: 39977) -.cnnewmedia.co.uk/locker/ -# ||cnhionline.com^*/rtj_ad.jpg (easylistchina+easylist.txt: 39976) -.cnhionline.com/.*/rtj_ad\.jpg -# ||cngroup.co.uk/service/creative/ (easylistchina+easylist.txt: 39975) -.cngroup.co.uk/service/creative/ -# ||cloudzer.net^*/banner/$third-party (easylistchina+easylist.txt: 39974) -.cloudzer.net/.*/banner/ -# ||cloudzer.net/ref/ (easylistchina+easylist.txt: 39973) -.cloudzer.net/ref/ -# ||cloudfront.net/tie.js (easylistchina+easylist.txt: 39969) -.cloudfront.net/tie\.js -# ||cloudfront.net/st.js (easylistchina+easylist.txt: 39968) -.cloudfront.net/st\.js -# ||cloudfront.net/scripts/js3caf.js (easylistchina+easylist.txt: 39967) -.cloudfront.net/scripts/js3caf\.js -# ||cloudfront.net/nimblebuy/ (easylistchina+easylist.txt: 39966) -.cloudfront.net/nimblebuy/ -# ||cloudfront.net/dfpd.js (easylistchina+easylist.txt: 39964) -.cloudfront.net/dfpd\.js -# ||clipdealer.com/?action=widget&*&partner= (easylistchina+easylist.txt: 39963) -.clipdealer.com/\?action=widget&.*&partner= -# ||clicktripz.com/scripts/js/ct.js (easylistchina+easylist.txt: 39962) -.clicktripz.com/scripts/js/ct\.js -# ||clicksure.com/img/resources/banner_ (easylistchina+easylist.txt: 39961) -.clicksure.com/img/resources/banner_ -# ||clickstrip.6wav.es^ (easylistchina+easylist.txt: 39960) -.clickstrip.6wav.es -# ||click.eyk.net^ (easylistchina+easylist.txt: 39959) -.click.eyk.net -# ||clarity.abacast.com^ (easylistchina+easylist.txt: 39958) -.clarity.abacast.com -# ||cjmooter.xcache.kinxcdn.com^ (easylistchina+easylist.txt: 39957) -.cjmooter.xcache.kinxcdn.com -# ||citygridmedia.com/ads/ (easylistchina+easylist.txt: 39956) -.citygridmedia.com/ads/ -# ||circularhub.com^$third-party (easylistchina+easylist.txt: 39955) -.circularhub.com -# ||cimg.in/images/banners/ (easylistchina+easylist.txt: 39954) -.cimg.in/images/banners/ -# ||chriscasconi.com/nostalgia_ad. (easylistchina+easylist.txt: 39953) -.chriscasconi.com/nostalgia_ad\. -# ||choices.truste.com^$third-party (easylistchina+easylist.txt: 39952) -.choices.truste.com -# ||charlestondealstoday.com/aux/ux/_component/ss_dealrail/$subdocument,third-party (easylistchina+easylist.txt: 39951) -.charlestondealstoday.com/aux/ux/_component/ss_dealrail/ -# ||challies.com^*/wtsbooks5.png$third-party (easylistchina+easylist.txt: 39950) -.challies.com/.*/wtsbooks5\.png -# ||chacsystems.com/gk_add.html$third-party (easylistchina+easylist.txt: 39949) -.chacsystems.com/gk_add\.html -# ||cgmlab.com/tools/geotarget/custombanner.js (easylistchina+easylist.txt: 39948) -.cgmlab.com/tools/geotarget/custombanner\.js -# ||cfcdn.com/showcase_sample/search_widget/ (easylistchina+easylist.txt: 39947) -.cfcdn.com/showcase_sample/search_widget/ -# ||cex.io/informer/$third-party (easylistchina+easylist.txt: 39946) -.cex.io/informer/ -# ||cex.io/img/b/ (easylistchina+easylist.txt: 39945) -.cex.io/img/b/ -# ||cerebral.typn.com^ (easylistchina+easylist.txt: 39944) -.cerebral.typn.com -# ||centralscotlandjoinery.co.uk/images/csj-125.gif$third-party (easylistchina+easylist.txt: 39943) -.centralscotlandjoinery.co.uk/images/csj-125\.gif -# ||centralmediaserver.com^*_side_bars.jpg (easylistchina+easylist.txt: 39942) -.centralmediaserver.com/.*_side_bars\.jpg -# ||cdnprk.com/scripts/js3caf.js (easylistchina+easylist.txt: 39941) -.cdnprk.com/scripts/js3caf\.js -# ||cdnprk.com/scripts/js3.js (easylistchina+easylist.txt: 39940) -.cdnprk.com/scripts/js3\.js -# ||cdnpark.com/scripts/js3.js (easylistchina+easylist.txt: 39939) -.cdnpark.com/scripts/js3\.js -# ||cdn.sweeva.com/images/$third-party (easylistchina+easylist.txt: 39937) -.cdn.sweeva.com/images/ -# ||cdn.pubexchange.com/modules/display/$script (easylistchina+easylist.txt: 39936) -.cdn.pubexchange.com/modules/display/ -# ||cdn.offcloud.com^$third-party (easylistchina+easylist.txt: 39935) -.cdn.offcloud.com -# ||cdn.ndparking.com/js/init.min.js (easylistchina+easylist.txt: 39934) -.cdn.ndparking.com/js/init\.min\.js -# ||cdn.cdncomputer.com/js/main.js (easylistchina+easylist.txt: 39933) -.cdn.cdncomputer.com/js/main\.js -# ||cdn.assets.gorillanation.com^$third-party (easylistchina+easylist.txt: 39932) -.cdn.assets.gorillanation.com -# ||cccam.co/banner_big.gif (easylistchina+easylist.txt: 39931) -.cccam.co/banner_big\.gif -# ||cbpirate.com/getimg.php? (easylistchina+easylist.txt: 39930) -.cbpirate.com/getimg\.php\? -# ||caw.criteo.com^$third-party (easylistchina+easylist.txt: 39929) -.caw.criteo.com -# ||caw.*.criteo.com^$third-party (easylistchina+easylist.txt: 39928) -.caw.*./.*\.criteo\.com[^\w%.-] -.caw.*.criteo.com -# ||catholicweb.com^*/banners/ (easylistchina+easylist.txt: 39927) -.catholicweb.com/.*/banners/ -# ||casti.tv/adds/ (easylistchina+easylist.txt: 39926) -.casti.tv/adds/ -# ||castasap.com/publi2.html (easylistchina+easylist.txt: 39925) -.castasap.com/publi2\.html -# ||cashmyvideo.com/images/cashmyvideo_banner.gif (easylistchina+easylist.txt: 39923) -.cashmyvideo.com/images/cashmyvideo_banner\.gif -# ||cashmakingpowersites.com^*/banners/ (easylistchina+easylist.txt: 39922) -.cashmakingpowersites.com/.*/banners/ -# ||cash.neweramediaworks.com^ (easylistchina+easylist.txt: 39921) -.cash.neweramediaworks.com -# ||cas.criteo.com^$third-party (easylistchina+easylist.txt: 39920) -.cas.criteo.com -# ||cas.clickability.com^ (easylistchina+easylist.txt: 39919) -.cas.clickability.com -# ||cas.*.criteo.com^$third-party (easylistchina+easylist.txt: 39918) -.cas.*./.*\.criteo\.com[^\w%.-] -.cas.*.criteo.com -# ||cars.fyidriving.com^$subdocument,third-party (easylistchina+easylist.txt: 39917) -.cars.fyidriving.com -# ||carfax.com/img_myap/$third-party (easylistchina+easylist.txt: 39916) -.carfax.com/img_myap/ -# ||careerjunction.co.za^*/widget?$third-party (easylistchina+easylist.txt: 39915) -.careerjunction.co.za/.*/widget\? -# ||careerjunction.co.za/widgets/$third-party (easylistchina+easylist.txt: 39914) -.careerjunction.co.za/widgets/ -# ||carbiz.in/affiliates-and-partners/ (easylistchina+easylist.txt: 39913) -.carbiz.in/affiliates-and-partners/ -# ||canonresourcecenter.com^$third-party (easylistchina+easylist.txt: 39912) -.canonresourcecenter.com -# ||cancomdigital.com/resourcecenter/$third-party (easylistchina+easylist.txt: 39911) -.cancomdigital.com/resourcecenter/ -# ||camelmedia.net^*/banners/ (easylistchina+easylist.txt: 39910) -.camelmedia.net/.*/banners/ -# ||cal-one.net/ellington/search_form.php? (easylistchina+easylist.txt: 39909) -.cal-one.net/ellington/search_form\.php\? -# ||cal-one.net/ellington/deals_widget.php? (easylistchina+easylist.txt: 39908) -.cal-one.net/ellington/deals_widget\.php\? -# ||cactusvpn.com/images/affiliates/ (easylistchina+easylist.txt: 39907) -.cactusvpn.com/images/affiliates/ -# ||cachefly.net/cricad.html (easylistchina+easylist.txt: 39906) -.cachefly.net/cricad\.html -# ||c.netu.tv^ (easylistchina+easylist.txt: 39905) -.c.netu.tv -# ||byzoo.org/script/tu*.js (easylistchina+easylist.txt: 39904) -.byzoo.org/script/tu.*\.js -# ||buzznet.com^*/showpping-banner-$third-party (easylistchina+easylist.txt: 39903) -.buzznet.com/.*/showpping-banner- -# ||buzina.xyz^$script (easylistchina+easylist.txt: 39902) -.buzina.xyz -# ||buyt.in/api?widgets=$script,third-party (easylistchina+easylist.txt: 39901) -.buyt.in/api\?widgets= -# ||buyhatke.com/widgetBack/ (easylistchina+easylist.txt: 39900) -.buyhatke.com/widgetBack/ -# ||buy.com^*/affiliate/ (easylistchina+easylist.txt: 39899) -.buy.com/.*/affiliate/ -# ||businessnewswatch.ca/images/nnwbanner/ (easylistchina+easylist.txt: 39898) -.businessnewswatch.ca/images/nnwbanner/ -# ||burstnet.akadns.net^$image (easylistchina+easylist.txt: 39897) -.burstnet.akadns.net -# ||burst.net/aff/ (easylistchina+easylist.txt: 39896) -.burst.net/aff/ -# ||bullguard.com^*/banners/ (easylistchina+easylist.txt: 39895) -.bullguard.com/.*/banners/ -# ||bubbles-uk.com/banner/$third-party (easylistchina+easylist.txt: 39894) -.bubbles-uk.com/banner/ -# ||btrd.net/assets/interstitial$script (easylistchina+easylist.txt: 39893) -.btrd.net/assets/interstitial -# ||btr.domywife.com^ (easylistchina+easylist.txt: 39892) -.btr.domywife.com -# ||btguard.com/images/$third-party (easylistchina+easylist.txt: 39891) -.btguard.com/images/ -# ||bruteforcesocialmedia.com/affiliates/ (easylistchina+easylist.txt: 39890) -.bruteforcesocialmedia.com/affiliates/ -# ||bruteforceseo.com/affiliates/ (easylistchina+easylist.txt: 39889) -.bruteforceseo.com/affiliates/ -# ||broadbandgenie.co.uk/widget?$third-party (easylistchina+easylist.txt: 39888) -.broadbandgenie.co.uk/widget\? -# ||brettterpstra.com/wp-content/uploads/$third-party (easylistchina+easylist.txt: 39887) -.brettterpstra.com/wp-content/uploads/ -# ||break.com^*/partnerpublish/ (easylistchina+easylist.txt: 39886) -.break.com/.*/partnerpublish/ -# ||break.com/break/html/$subdocument (easylistchina+easylist.txt: 39885) -.break.com/break/html/ -# ||bravenet.com/cserv.php (easylistchina+easylist.txt: 39884) -.bravenet.com/cserv\.php -# ||bplaced.net/pub/ (easylistchina+easylist.txt: 39883) -.bplaced.net/pub/ -# ||bpath.com/affiliates/ (easylistchina+easylist.txt: 39882) -.bpath.com/affiliates/ -# ||box.anchorfree.net^ (easylistchina+easylist.txt: 39881) -.box.anchorfree.net -# ||bosh.tv/hdplugin. (easylistchina+easylist.txt: 39880) -.bosh.tv/hdplugin\. -# ||borrowlenses.com/affiliate/ (easylistchina+easylist.txt: 39879) -.borrowlenses.com/affiliate/ -# ||bordernode.com/images/$third-party (easylistchina+easylist.txt: 39878) -.bordernode.com/images/ -# ||bookingdragon.com^$subdocument,third-party (easylistchina+easylist.txt: 39877) -.bookingdragon.com -# ||booking.com^*;tmpl=banner_ (easylistchina+easylist.txt: 39876) -.booking.com/.*;tmpl=banner_ -# ||bollyrulez.net/media/adz/ (easylistchina+easylist.txt: 39874) -.bollyrulez.net/media/adz/ -# ||boago.com^*_Takeover_ (easylistchina+easylist.txt: 39873) -.boago.com/.*_Takeover_ -# ||bo-videos.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 39872) -.bo-videos.s3.amazonaws.com -# ||bluhostedbanners.blucigs.com^ (easylistchina+easylist.txt: 39871) -.bluhostedbanners.blucigs.com -# ||bluesattv.net/bluesattvnet.gif (easylistchina+easylist.txt: 39870) -.bluesattv.net/bluesattvnet\.gif -# ||bluesattv.net/bluesat.swf (easylistchina+easylist.txt: 39869) -.bluesattv.net/bluesat\.swf -# ||bluepromocode.com/images/widgets/$third-party (easylistchina+easylist.txt: 39868) -.bluepromocode.com/images/widgets/ -# ||bloodstock.uk.com/affiliates/ (easylistchina+easylist.txt: 39867) -.bloodstock.uk.com/affiliates/ -# ||blocks.ginotrack.com^$third-party (easylistchina+easylist.txt: 39866) -.blocks.ginotrack.com -# ||blissful-sin.com/affiliates/ (easylistchina+easylist.txt: 39865) -.blissful-sin.com/affiliates/ -# ||bliss-systems-api.co.uk^$third-party (easylistchina+easylist.txt: 39864) -.bliss-systems-api.co.uk -# ||blinkx.com/f2/overlays/ (easylistchina+easylist.txt: 39863) -.blinkx.com/f2/overlays/ -# ||blinkx.com/?i=*&adc_pub_id=$script,third-party (easylistchina+easylist.txt: 39862) -.blinkx.com/\?i=.*&adc_pub_id= -# ||blindferret.com/images/*_skin_ (easylistchina+easylist.txt: 39861) -.blindferret.com/images/.*_skin_ -# ||blamads-assets.s3.amazonaws.com^ (easylistchina+easylist.txt: 39860) -.blamads-assets.s3.amazonaws.com -# ||bl.wavecdn.de^ (easylistchina+easylist.txt: 39859) -.bl.wavecdn.de -# ||bittorrent.am/serws.php?$third-party (easylistchina+easylist.txt: 39858) -.bittorrent.am/serws\.php\? -# ||bitshare.com^*/banner/ (easylistchina+easylist.txt: 39857) -.bitshare.com/.*/banner/ -# ||bitcoinwebhosting.net/banners/$third-party (easylistchina+easylist.txt: 39856) -.bitcoinwebhosting.net/banners/ -# ||bitcoindice.com/img/bitcoindice_$third-party (easylistchina+easylist.txt: 39855) -.bitcoindice.com/img/bitcoindice_ -# ||binopt.net/banners/ (easylistchina+easylist.txt: 39853) -.binopt.net/banners/ -# ||binbox.io/public/img/promo/$third-party (easylistchina+easylist.txt: 39852) -.binbox.io/public/img/promo/ -# ||bijk.com^*/banners/ (easylistchina+easylist.txt: 39851) -.bijk.com/.*/banners/ -# ||bigrock.in/affiliate/ (easylistchina+easylist.txt: 39850) -.bigrock.in/affiliate/ -# ||bigpond.com/specials/$subdocument,third-party (easylistchina+easylist.txt: 39849) -.bigpond.com/specials/ -# ||bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview.jsp?$third-party (easylistchina+easylist.txt: 39847) -.bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview\.jsp\? -# ||bidorbuy.co.za/jsp/system/referral.jsp? (easylistchina+easylist.txt: 39846) -.bidorbuy.co.za/jsp/system/referral\.jsp\? -# ||bidgo.ca^$subdocument,third-party (easylistchina+easylist.txt: 39845) -.bidgo.ca -# ||bharatmatrimony.com/matrimoney/matrimoneybanners/$third-party (easylistchina+easylist.txt: 39844) -.bharatmatrimony.com/matrimoney/matrimoneybanners/ -# ||betwaypartners.com/affiliate_media/$third-party (easylistchina+easylist.txt: 39843) -.betwaypartners.com/affiliate_media/ -# ||betting.betfair.com^$third-party (easylistchina+easylist.txt: 39842) -.betting.betfair.com -# ||betterbills.com.au/widgets/ (easylistchina+easylist.txt: 39841) -.betterbills.com.au/widgets/ -# ||beta.down2crazy.com^$third-party (easylistchina+easylist.txt: 39840) -.beta.down2crazy.com -# ||bet-at-home.com/oddbanner.aspx? (easylistchina+easylist.txt: 39839) -.bet-at-home.com/oddbanner\.aspx\? -# ||bestofmedia.com/ws/communicationSpot.php? (easylistchina+easylist.txt: 39838) -.bestofmedia.com/ws/communicationSpot\.php\? -# ||besthosting.ua/banner/ (easylistchina+easylist.txt: 39837) -.besthosting.ua/banner/ -# ||berush.com/images/whorush_120x120_ (easylistchina+easylist.txt: 39836) -.berush.com/images/whorush_120x120_ -# ||berush.com/images/semrush_banner_ (easylistchina+easylist.txt: 39835) -.berush.com/images/semrush_banner_ -# ||berush.com/images/*_semrush_$third-party (easylistchina+easylist.txt: 39834) -.berush.com/images/.*_semrush_ -# ||bergen.com^*/sponsoredby- (easylistchina+easylist.txt: 39833) -.bergen.com/.*/sponsoredby- -# ||bemyapp.com/trk/$third-party (easylistchina+easylist.txt: 39832) -.bemyapp.com/trk/ -# ||bee4.biz/banners/ (easylistchina+easylist.txt: 39831) -.bee4.biz/banners/ -# ||beachcamera.com/assets/banners/ (easylistchina+easylist.txt: 39830) -.beachcamera.com/assets/banners/ -# ||bc.vc/js/link-converter.js$third-party (easylistchina+easylist.txt: 39829) -.bc.vc/js/link-converter\.js -# ||bc.coupons.com^$third-party (easylistchina+easylist.txt: 39828) -.bc.coupons.com -# ||bbcchannels.com/workspace/uploads/ (easylistchina+easylist.txt: 39827) -.bbcchannels.com/workspace/uploads/ -# ||banners.webmasterplan.com^$third-party (easylistchina+easylist.txt: 39826) -.banners.webmasterplan.com -# ||banners.videosz.com^$third-party (easylistchina+easylist.txt: 39825) -.banners.videosz.com -# ||banners.smarttweak.com^$third-party (easylistchina+easylist.txt: 39824) -.banners.smarttweak.com -# ||banners.moreniche.com^$third-party (easylistchina+easylist.txt: 39823) -.banners.moreniche.com -# ||banners.ixitools.com^$third-party (easylistchina+easylist.txt: 39822) -.banners.ixitools.com -# ||banners.cfspm.com.au^$third-party (easylistchina+easylist.txt: 39821) -.banners.cfspm.com.au -# ||bannermaken.nl/banners/$third-party (easylistchina+easylist.txt: 39820) -.bannermaken.nl/banners/ -# ||banner2.casino.com^$third-party (easylistchina+easylist.txt: 39819) -.banner2.casino.com -# ||banner.titanpoker.com^$third-party (easylistchina+easylist.txt: 39818) -.banner.titanpoker.com -# ||banner.titancasino.com^ (easylistchina+easylist.txt: 39817) -.banner.titancasino.com -# ||banner.telefragged.com^ (easylistchina+easylist.txt: 39816) -.banner.telefragged.com -# ||banner.europacasino.com^ (easylistchina+easylist.txt: 39815) -.banner.europacasino.com -# ||banner.3ddownloads.com^ (easylistchina+easylist.txt: 39814) -.banner.3ddownloads.com -# ||banner.101xp.com^ (easylistchina+easylist.txt: 39813) -.banner.101xp.com -# ||banman.isoftmarketing.com^$third-party (easylistchina+easylist.txt: 39812) -.banman.isoftmarketing.com -# ||bankrate.com/jsfeeds/$third-party (easylistchina+easylist.txt: 39810) -.bankrate.com/jsfeeds/ -# ||bamstudent.com/files/banners/ (easylistchina+easylist.txt: 39809) -.bamstudent.com/files/banners/ -# ||ball2win.com/Affiliate/ (easylistchina+easylist.txt: 39808) -.ball2win.com/Affiliate/ -# ||badoo.com/informer/$third-party (easylistchina+easylist.txt: 39807) -.badoo.com/informer/ -# ||babylon.com^*?affid= (easylistchina+easylist.txt: 39806) -.babylon.com/.*\?affid= -# ||babylon.com/trans_box/*&affiliate= (easylistchina+easylist.txt: 39805) -.babylon.com/trans_box/.*&affiliate= -# ||babylon.com/systems/af/landing/$third-party (easylistchina+easylist.txt: 39804) -.babylon.com/systems/af/landing/ -# ||babylon.com/site/images/common.js$third-party (easylistchina+easylist.txt: 39803) -.babylon.com/site/images/common\.js -# ||b92s.net/images/banners/ (easylistchina+easylist.txt: 39802) -.b92s.net/images/banners/ -# ||b92.putniktravel.com^ (easylistchina+easylist.txt: 39801) -.b92.putniktravel.com -# ||b.sell.com^$third-party (easylistchina+easylist.txt: 39799) -.b.sell.com -# ||b.livesport.eu^ (easylistchina+easylist.txt: 39798) -.b.livesport.eu -# ||b.babylon.com^ (easylistchina+easylist.txt: 39797) -.b.babylon.com -# ||axandra.com/affiliates/ (easylistchina+easylist.txt: 39795) -.axandra.com/affiliates/ -# ||award.sitekeuring.net^ (easylistchina+easylist.txt: 39794) -.award.sitekeuring.net -# ||awadhtimes.com^$third-party (easylistchina+easylist.txt: 39793) -.awadhtimes.com -# ||autoprivileges.net/news/ (easylistchina+easylist.txt: 39792) -.autoprivileges.net/news/ -# ||augine.com/widget|$third-party (easylistchina+easylist.txt: 39791) -.augine.com/widget$ -# ||atomicpopularity.com/dfpd.js (easylistchina+easylist.txt: 39790) -.atomicpopularity.com/dfpd\.js -# ||athena-ads.wikia.com^$third-party (easylistchina+easylist.txt: 39789) -.athena-ads.wikia.com -# ||astrology.com/partnerpages/ (easylistchina+easylist.txt: 39788) -.astrology.com/partnerpages/ -# ||astalavista.box.sk/c-astalink2a.jpg (easylistchina+easylist.txt: 39787) -.astalavista.box.sk/c-astalink2a\.jpg -# ||associmg.com^*.gif?tag- (easylistchina+easylist.txt: 39786) -.associmg.com/.*\.gif\?tag- -# ||assets.betterbills.com/widgets/ (easylistchina+easylist.txt: 39785) -.assets.betterbills.com/widgets/ -# ||as.jivox.com/jivox/serverapis/getcampaignbysite.php?$object-subrequest (easylistchina+easylist.txt: 39784) -.as.jivox.com/jivox/serverapis/getcampaignbysite\.php\? -# ||as.devbridge.com^$third-party (easylistchina+easylist.txt: 39783) -.as.devbridge.com -# ||artistdirect.com/partner/ (easylistchina+easylist.txt: 39782) -.artistdirect.com/partner/ -# ||arntrnassets.mediaspanonline.com^*_HP_wings_ (easylistchina+easylist.txt: 39781) -.arntrnassets.mediaspanonline.com/.*_HP_wings_ -# ||ard.ihookup.com^ (easylistchina+easylist.txt: 39780) -.ard.ihookup.com -# ||arcadetown.com/as/show.asp (easylistchina+easylist.txt: 39779) -.arcadetown.com/as/show\.asp -# ||appwork.org/hoster/banner_$third-party (easylistchina+easylist.txt: 39778) -.appwork.org/hoster/banner_ -# ||appsgenius.com/images/$third-party (easylistchina+easylist.txt: 39777) -.appsgenius.com/images/ -# ||apple.com/itunesaffiliates/ (easylistchina+easylist.txt: 39776) -.apple.com/itunesaffiliates/ -# ||appdevsecrets.com/images/nuts/ (easylistchina+easylist.txt: 39775) -.appdevsecrets.com/images/nuts/ -# ||apnonline.com.au/img/marketplace/*_ct50x50.gif (easylistchina+easylist.txt: 39774) -.apnonline.com.au/img/marketplace/.*_ct50x50\.gif -# ||api.ticketnetwork.com/Events/TopSelling/domain=nytimes.com (easylistchina+easylist.txt: 39773) -.api.ticketnetwork.com/Events/TopSelling/domain=nytimes\.com -# ||api.groupon.com/v2/deals/$third-party (easylistchina+easylist.txt: 39772) -.api.groupon.com/v2/deals/ -# ||api.bitp.it^$third-party (easylistchina+easylist.txt: 39771) -.api.bitp.it -# ||api.140proof.com^$third-party (easylistchina+easylist.txt: 39770) -.api.140proof.com -# ||aolcdn.com/os/music/img/*-skin.jpg (easylistchina+easylist.txt: 39769) -.aolcdn.com/os/music/img/.*-skin\.jpg -# ||aolcdn.com/os/mapquest/promo-images/ (easylistchina+easylist.txt: 39768) -.aolcdn.com/os/mapquest/promo-images/ -# ||aolcdn.com/os/mapquest/marketing/promos/ (easylistchina+easylist.txt: 39767) -.aolcdn.com/os/mapquest/marketing/promos/ -# ||aol.co.uk^*/cobrand.js (easylistchina+easylist.txt: 39766) -.aol.co.uk/.*/cobrand\.js -# ||any.gs/visitScript/$third-party (easylistchina+easylist.txt: 39765) -.any.gs/visitScript/ -# ||anonym.to/*findandtry.com (easylistchina+easylist.txt: 39764) -.anonym.to/.*findandtry\.com -# ||anime.jlist.com^$third-party (easylistchina+easylist.txt: 39763) -.anime.jlist.com -# ||angelbc.com/clients/*/banners/$third-party (easylistchina+easylist.txt: 39762) -.angelbc.com/clients/.*/banners/ -# ||analytics.disneyinternational.com^ (easylistchina+easylist.txt: 39760) -.analytics.disneyinternational.com -# ||amazonaws.com/youpop/ (easylistchina+easylist.txt: 39757) -.amazonaws.com/youpop/ -# ||amazonaws.com/widgets.youcompare.com.au/ (easylistchina+easylist.txt: 39756) -.amazonaws.com/widgets\.youcompare\.com\.au/ -# ||amazonaws.com/streetpulse/ads/ (easylistchina+easylist.txt: 39755) -.amazonaws.com/streetpulse/ads/ -# ||amazonaws.com/skyscrpr.js (easylistchina+easylist.txt: 39754) -.amazonaws.com/skyscrpr\.js -# ||amazonaws.com/publishflow/ (easylistchina+easylist.txt: 39753) -.amazonaws.com/publishflow/ -# ||amazonaws.com/pmb-musics/download_itunes.png (easylistchina+easylist.txt: 39752) -.amazonaws.com/pmb-musics/download_itunes\.png -# ||amazonaws.com/photos.offers.analoganalytics.com/ (easylistchina+easylist.txt: 39750) -.amazonaws.com/photos\.offers\.analoganalytics\.com/ -# ||amazonaws.com/lms/sponsors/ (easylistchina+easylist.txt: 39748) -.amazonaws.com/lms/sponsors/ -# ||amazonaws.com/fvefwdds/ (easylistchina+easylist.txt: 39746) -.amazonaws.com/fvefwdds/ -# ||amazonaws.com/btrb-prd-banners/ (easylistchina+easylist.txt: 39743) -.amazonaws.com/btrb-prd-banners/ -# ||amazonaws.com/bo-assets/production/banner_attachments/ (easylistchina+easylist.txt: 39742) -.amazonaws.com/bo-assets/production/banner_attachments/ -# ||amazonaws.com/ad_w_intersitial.html (easylistchina+easylist.txt: 39739) -.amazonaws.com/ad_w_intersitial\.html -# ||amazon.com^*/getaanad?$third-party (easylistchina+easylist.txt: 39738) -.amazon.com/.*/getaanad\? -# ||amazon.com/gp/redirect.html?$subdocument,third-party (easylistchina+easylist.txt: 39737) -.amazon.com/gp/redirect\.html\? -# ||amazon.com/?_encoding*&linkcode$third-party (easylistchina+easylist.txt: 39736) -.amazon.com/\?_encoding.*&linkcode -# ||altushost.com/docs/$third-party (easylistchina+easylist.txt: 39735) -.altushost.com/docs/ -# ||alpsat.com/banner/ (easylistchina+easylist.txt: 39734) -.alpsat.com/banner/ -# ||alluremedia.com.au^*/campaigns/ (easylistchina+easylist.txt: 39733) -.alluremedia.com.au/.*/campaigns/ -# ||allsend.com/public/assets/images/ (easylistchina+easylist.txt: 39732) -.allsend.com/public/assets/images/ -# ||allposters.com^*/banners/ (easylistchina+easylist.txt: 39731) -.allposters.com/.*/banners/ -# ||algovid.com/player/get_player_vasts? (easylistchina+easylist.txt: 39730) -.algovid.com/player/get_player_vasts\? -# ||algart.net*_banner_$third-party (easylistchina+easylist.txt: 39729) -.algart.net*./.*_banner_ -# ||alexa.com^*/promotebuttons/ (easylistchina+easylist.txt: 39728) -.alexa.com/.*/promotebuttons/ -# ||akamaihd.net^*/web/pdk/swf/freewheel.swf?$third-party (easylistchina+easylist.txt: 39727) -.akamaihd.net/.*/web/pdk/swf/freewheel\.swf\? -# ||akamaihd.net/ssa/*?zoneid=$subdocument (easylistchina+easylist.txt: 39726) -.akamaihd.net/ssa/.*\?zoneid= -# ||akamaihd.net/lmedianet.js (easylistchina+easylist.txt: 39724) -.akamaihd.net/lmedianet\.js -# ||akamai.net^*/pics.drugstore.com/prodimg/promo/ (easylistchina+easylist.txt: 39723) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# ||akamai.net^*/espnpreroll/$object-subrequest (easylistchina+easylist.txt: 39722) -.akamai.net/.*/espnpreroll/ -# ||akamai.net^*.247realmedia.com/$third-party (easylistchina+easylist.txt: 39721) -.akamai.net/.*\.247realmedia\.com/ -# ||ak1.imgaft.com^$third-party (easylistchina+easylist.txt: 39720) -.ak1.imgaft.com -# ||ak.imgaft.com^$third-party (easylistchina+easylist.txt: 39719) -.ak.imgaft.com -# ||ais.abacast.com^ (easylistchina+easylist.txt: 39718) -.ais.abacast.com -# ||airvpn.org/images/promotional/ (easylistchina+easylist.txt: 39717) -.airvpn.org/images/promotional/ -# ||airpushmarketing.s3.amazonaws.com^ (easylistchina+easylist.txt: 39716) -.airpushmarketing.s3.amazonaws.com -# ||ahlanlive.com/newsletters/banners/$third-party (easylistchina+easylist.txt: 39715) -.ahlanlive.com/newsletters/banners/ -# ||agoda.net/banners/ (easylistchina+easylist.txt: 39714) -.agoda.net/banners/ -# ||agenda.complex.com^ (easylistchina+easylist.txt: 39713) -.agenda.complex.com -# ||afimg.liveperson.com^$third-party (easylistchina+easylist.txt: 39712) -.afimg.liveperson.com -# ||affutdmedia.com^$third-party (easylistchina+easylist.txt: 39711) -.affutdmedia.com -# ||affiliation.fotovista.com^ (easylistchina+easylist.txt: 39710) -.affiliation.fotovista.com -# ||affiliation.filestube.com^$third-party (easylistchina+easylist.txt: 39709) -.affiliation.filestube.com -# ||affiliatesmedia.sbobet.com^ (easylistchina+easylist.txt: 39708) -.affiliatesmedia.sbobet.com -# ||affiliates.picaboocorp.com^$third-party (easylistchina+easylist.txt: 39707) -.affiliates.picaboocorp.com -# ||affiliates.lynda.com^$third-party (easylistchina+easylist.txt: 39706) -.affiliates.lynda.com -# ||affiliates.homestead.com^$third-party (easylistchina+easylist.txt: 39705) -.affiliates.homestead.com -# ||affiliates.bookdepository.com^$third-party (easylistchina+easylist.txt: 39704) -.affiliates.bookdepository.com -# ||affiliates.bookdepository.co.uk^$third-party (easylistchina+easylist.txt: 39703) -.affiliates.bookdepository.co.uk -# ||affiliates.allposters.com^ (easylistchina+easylist.txt: 39702) -.affiliates.allposters.com -# ||affiliates-cdn.mozilla.org^$third-party (easylistchina+easylist.txt: 39701) -.affiliates-cdn.mozilla.org -# ||affiliateprogram.keywordspy.com^ (easylistchina+easylist.txt: 39700) -.affiliateprogram.keywordspy.com -# ||affiliatehub.skybet.com^$third-party (easylistchina+easylist.txt: 39699) -.affiliatehub.skybet.com -# ||affiliate.mediatemple.net^$third-party (easylistchina+easylist.txt: 39698) -.affiliate.mediatemple.net -# ||affiliate.juno.co.uk^$third-party (easylistchina+easylist.txt: 39697) -.affiliate.juno.co.uk -# ||affil.mupromo.com^ (easylistchina+easylist.txt: 39696) -.affil.mupromo.com -# ||aff.svjump.com^ (easylistchina+easylist.txt: 39695) -.aff.svjump.com -# ||aff.marathonbet.com^ (easylistchina+easylist.txt: 39694) -.aff.marathonbet.com -# ||aff.eteachergroup.com^ (easylistchina+easylist.txt: 39693) -.aff.eteachergroup.com -# ||aff.cupidplc.com^$third-party (easylistchina+easylist.txt: 39692) -.aff.cupidplc.com -# ||afcdn.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 39691) -.afcdn.com/.*/ova-jw\.swf -# ||adziff.com^*/zdcse.min.js (easylistchina+easylist.txt: 39690) -.adziff.com/.*/zdcse\.min\.js -# ||adz.zwee.ly^ (easylistchina+easylist.txt: 39689) -.adz.zwee.ly -# ||advanced-intelligence.com/banner (easylistchina+easylist.txt: 39688) -.advanced-intelligence.com/banner -# ||adstest.zaman.com.tr^$third-party (easylistchina+easylist.txt: 39687) -.adstest.zaman.com.tr -# ||adss.dotdo.net^ (easylistchina+easylist.txt: 39686) -.adss.dotdo.net -# ||adsrv.eacdn.com^$third-party (easylistchina+easylist.txt: 39685) -.adsrv.eacdn.com -# ||adserv.legitreviews.com^$third-party (easylistchina+easylist.txt: 39684) -.adserv.legitreviews.com -# ||adscaspion.appspot.com^ (easylistchina+easylist.txt: 39683) -.adscaspion.appspot.com -# ||ads.tremorhub.com^ (easylistchina+easylist.txt: 39682) -.ads.tremorhub.com -# ||ads.mp.mydas.mobi^ (easylistchina+easylist.txt: 39681) -.ads.mp.mydas.mobi -# ||ads.dynamicyield.com^$third-party (easylistchina+easylist.txt: 39680) -.ads.dynamicyield.com -# ||adr-*.vindicosuite.com^ (easylistchina+easylist.txt: 39679) -.adr-*./.*\.vindicosuite\.com[^\w%.-] -.adr-*.vindicosuite.com -# ||adplus.goo.mx^ (easylistchina+easylist.txt: 39678) -.adplus.goo.mx -# ||adn.ebay.com^ (easylistchina+easylist.txt: 39677) -.adn.ebay.com -# ||adm.shinobi.jp^$third-party (easylistchina+easylist.txt: 39676) -.adm.shinobi.jp -# ||adlandpro.com^$third-party (easylistchina+easylist.txt: 39675) -.adlandpro.com -# ||adingo.jp.eimg.jp^ (easylistchina+easylist.txt: 39674) -.adingo.jp.eimg.jp -# ||adfoc.us/js/$third-party (easylistchina+easylist.txt: 39673) -.adfoc.us/js/ -# ||adf.ly^*/link-converter.js$third-party (easylistchina+easylist.txt: 39672) -.adf.ly/.*/link-converter\.js -# ||adf.ly/images/banners/ (easylistchina+easylist.txt: 39670) -.adf.ly/images/banners/ -# ||addme.com/images/addme_$third-party (easylistchina+easylist.txt: 39668) -.addme.com/images/addme_ -# ||add.bugun.com.tr^ (easylistchina+easylist.txt: 39667) -.add.bugun.com.tr -# ||adap.tv/redir/plugins3/$object-subrequest (easylistchina+easylist.txt: 39666) -.adap.tv/redir/plugins3/ -# ||adap.tv/redir/plugins/$object-subrequest (easylistchina+easylist.txt: 39665) -.adap.tv/redir/plugins/ -# ||adap.tv/redir/client/static/as3adplayer.swf (easylistchina+easylist.txt: 39664) -.adap.tv/redir/client/static/as3adplayer\.swf -# ||ad2links.com/js/$third-party (easylistchina+easylist.txt: 39663) -.ad2links.com/js/ -# ||ad.zaman.com.tr^$third-party (easylistchina+easylist.txt: 39662) -.ad.zaman.com.tr -# ||ad.wsod.com^$third-party (easylistchina+easylist.txt: 39661) -.ad.wsod.com -# ||ad.winningpartner.com^ (easylistchina+easylist.txt: 39660) -.ad.winningpartner.com -# ||ad.vidaroo.com^ (easylistchina+easylist.txt: 39659) -.ad.vidaroo.com -# ||ad.valuecalling.com^$third-party (easylistchina+easylist.txt: 39658) -.ad.valuecalling.com -# ||ad.sponsoreo.com^$third-party (easylistchina+easylist.txt: 39657) -.ad.sponsoreo.com -# ||ad.spielothek.so^ (easylistchina+easylist.txt: 39656) -.ad.spielothek.so -# ||ad.smartclip.net^ (easylistchina+easylist.txt: 39655) -.ad.smartclip.net -# ||ad.sharethis.com^$third-party (easylistchina+easylist.txt: 39654) -.ad.sharethis.com -# ||ad.sensismediasmart.com.au^ (easylistchina+easylist.txt: 39653) -.ad.sensismediasmart.com.au -# ||ad.reklamport.com^ (easylistchina+easylist.txt: 39652) -.ad.reklamport.com -# ||ad.realmcdn.net^$third-party (easylistchina+easylist.txt: 39651) -.ad.realmcdn.net -# ||ad.rambler.ru^ (easylistchina+easylist.txt: 39650) -.ad.rambler.ru -# ||ad.r.worldssl.net^ (easylistchina+easylist.txt: 39649) -.ad.r.worldssl.net -# ||ad.proxy.sh^ (easylistchina+easylist.txt: 39648) -.ad.proxy.sh -# ||ad.premiumonlinemedia.com^$third-party (easylistchina+easylist.txt: 39647) -.ad.premiumonlinemedia.com -# ||ad.pickple.net^ (easylistchina+easylist.txt: 39646) -.ad.pickple.net -# ||ad.outsidehub.com^ (easylistchina+easylist.txt: 39645) -.ad.outsidehub.com -# ||ad.openmultimedia.biz^ (easylistchina+easylist.txt: 39644) -.ad.openmultimedia.biz -# ||ad.netcommunities.com^$third-party (easylistchina+easylist.txt: 39643) -.ad.netcommunities.com -# ||ad.mygamesol.com^$third-party (easylistchina+easylist.txt: 39642) -.ad.mygamesol.com -# ||ad.mesomorphosis.com^ (easylistchina+easylist.txt: 39641) -.ad.mesomorphosis.com -# ||ad.mail.ru^ (easylistchina+easylist.txt: 39640) -.ad.mail.ru -# ||ad.livere.co.kr^ (easylistchina+easylist.txt: 39639) -.ad.livere.co.kr -# ||ad.linkstorms.com^$third-party (easylistchina+easylist.txt: 39638) -.ad.linkstorms.com -# ||ad.lijit.com^$third-party (easylistchina+easylist.txt: 39637) -.ad.lijit.com -# ||ad.jokeroo.com^$third-party (easylistchina+easylist.txt: 39636) -.ad.jokeroo.com -# ||ad.jamba.net^ (easylistchina+easylist.txt: 39635) -.ad.jamba.net -# ||ad.indomp3z.us^$third-party (easylistchina+easylist.txt: 39634) -.ad.indomp3z.us -# ||ad.imad.co.kr^$third-party (easylistchina+easylist.txt: 39633) -.ad.imad.co.kr -# ||ad.idgtn.net^ (easylistchina+easylist.txt: 39632) -.ad.idgtn.net -# ||ad.icasthq.com^ (easylistchina+easylist.txt: 39631) -.ad.icasthq.com -# ||ad.ghfusion.com^$third-party (easylistchina+easylist.txt: 39630) -.ad.ghfusion.com -# ||ad.foxnetworks.com^ (easylistchina+easylist.txt: 39629) -.ad.foxnetworks.com -# ||ad.flux.com^ (easylistchina+easylist.txt: 39628) -.ad.flux.com -# ||ad.e-kolay.net^$third-party (easylistchina+easylist.txt: 39627) -.ad.e-kolay.net -# ||ad.bitmedia.io^ (easylistchina+easylist.txt: 39626) -.ad.bitmedia.io -# ||ad.aquamediadirect.com^$third-party (easylistchina+easylist.txt: 39625) -.ad.aquamediadirect.com -# ||ad.accessmediaproductions.com^ (easylistchina+easylist.txt: 39623) -.ad.accessmediaproductions.com -# ||ad.about.co.kr^ (easylistchina+easylist.txt: 39622) -.ad.about.co.kr -# ||ad.23blogs.com^$third-party (easylistchina+easylist.txt: 39621) -.ad.23blogs.com -# ||ablacrack.com/popup-pvd.js$third-party (easylistchina+easylist.txt: 39620) -.ablacrack.com/popup-pvd\.js -# ||abacast.com/banner/ (easylistchina+easylist.txt: 39619) -.abacast.com/banner/ -# ||aadvertismentt.com^$subdocument (easylistchina+easylist.txt: 39618) -.aadvertismentt.com -# ||a1channel.net/img/watch_now.gif (easylistchina+easylist.txt: 39617) -.a1channel.net/img/watch_now\.gif -# ||a1channel.net/img/downloadbtn2.png (easylistchina+easylist.txt: 39616) -.a1channel.net/img/downloadbtn2\.png -# ||a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com^ (easylistchina+easylist.txt: 39615) -.a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com -# ||a.watershed-publishing.com^ (easylistchina+easylist.txt: 39614) -.a.watershed-publishing.com -# ||a.ucoz.net^ (easylistchina+easylist.txt: 39613) -.a.ucoz.net -# ||a.livesportmedia.eu^ (easylistchina+easylist.txt: 39612) -.a.livesportmedia.eu -# ||96.9.176.245^$third-party (easylistchina+easylist.txt: 39611) -.96.9.176.245 -# ||80.94.76.4/abd.php? (easylistchina+easylist.txt: 39609) -.80.94.76.4/abd\.php\? -# ||770.com/banniere.php? (easylistchina+easylist.txt: 39608) -.770.com/banniere\.php\? -# ||6theory.com/pub/ (easylistchina+easylist.txt: 39607) -.6theory.com/pub/ -# ||4getlikes.com/promo/ (easylistchina+easylist.txt: 39604) -.4getlikes.com/promo/ -# ||3dots.co.il/pop/ (easylistchina+easylist.txt: 39603) -.3dots.co.il/pop/ -# ||360pal.com/ads/$third-party (easylistchina+easylist.txt: 39602) -.360pal.com/ads/ -# ||2yu.in/banner/$third-party (easylistchina+easylist.txt: 39601) -.2yu.in/banner/ -# ||2leep.com/ticker2/$third-party (easylistchina+easylist.txt: 39600) -.2leep.com/ticker2/ -# ||2beon.co.kr/nad/$third-party (easylistchina+easylist.txt: 39599) -.2beon.co.kr/nad/ -# ||24hrlikes.com/images/$third-party (easylistchina+easylist.txt: 39598) -.24hrlikes.com/images/ -# ||24casino.cz/poker300-$third-party (easylistchina+easylist.txt: 39597) -.24casino.cz/poker300- -# ||247hd.net/ad| (easylistchina+easylist.txt: 39596) -.247hd.net/ad$ -# ||24.com//flashplayer/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 39595) -# ||1whois.org/static/popup.js (easylistchina+easylist.txt: 39590) -.1whois.org/static/popup\.js -# ||1stag.com/main/img/banners/ (easylistchina+easylist.txt: 39589) -.1stag.com/main/img/banners/ -# ||1page.co.za/affiliate/ (easylistchina+easylist.txt: 39588) -.1page.co.za/affiliate/ -# ||178.238.233.242/open.js (easylistchina+easylist.txt: 39587) -.178.238.233.242/open\.js -# ||178.17.164.58^$script,third-party (easylistchina+easylist.txt: 39586) -.178.17.164.58 -# ||12dayswidget.com/widgets/ (easylistchina+easylist.txt: 39583) -.12dayswidget.com/widgets/ -# ||110mb.com/images/banners/ (easylistchina+easylist.txt: 39582) -.110mb.com/images/banners/ -# ||110.45.173.103/ad/$third-party (easylistchina+easylist.txt: 39581) -.110.45.173.103/ad/ -# ||1-million-usd.com/images/banners/ (easylistchina+easylist.txt: 39578) -.1-million-usd.com/images/banners/ -# ||04stream.com/pop*.js (easylistchina+easylist.txt: 39577) -.04stream.com/pop.*\.js -# ||000webhost.com/images/banners/ (easylistchina+easylist.txt: 39576) -.000webhost.com/images/banners/ -# -api.adyoulike.com (easylistchina+easylist.txt: 39575) -/.*-api\.adyoulike\.com -.*-api.adyoulike.com*. -# ||y72yuyr9.com^$popup,third-party (easylistchina+easylist.txt: 39572) -.y72yuyr9.com -# ||xxxmatch.com^$popup (easylistchina+easylist.txt: 39571) -.xxxmatch.com -# ||xxxbunker.com^$popup,third-party (easylistchina+easylist.txt: 39570) -.xxxbunker.com -# ||xvika.net^$popup,third-party (easylistchina+easylist.txt: 39569) -.xvika.net -# ||xvika.com^$popup,third-party (easylistchina+easylist.txt: 39568) -.xvika.com -# ||xpeeps.com^$popup,third-party (easylistchina+easylist.txt: 39567) -.xpeeps.com -# ||xmatch.com^$popup (easylistchina+easylist.txt: 39566) -.xmatch.com -# ||xdtraffic.com^$popup,third-party (easylistchina+easylist.txt: 39565) -.xdtraffic.com -# ||x2porn.eu^$popup,third-party (easylistchina+easylist.txt: 39564) -.x2porn.eu -# ||watchmygf.com^$popup (easylistchina+easylist.txt: 39563) -.watchmygf.com -# ||voyeurbase.com^$popup,third-party (easylistchina+easylist.txt: 39562) -.voyeurbase.com -# ||vlexokrako.com^$popup (easylistchina+easylist.txt: 39561) -.vlexokrako.com -# ||turnefo.ru^$popup (easylistchina+easylist.txt: 39560) -.turnefo.ru -# ||trafficstars.com^$popup (easylistchina+easylist.txt: 39559) -.trafficstars.com -# ||trafficholder.com^$popup,third-party (easylistchina+easylist.txt: 39558) -.trafficholder.com -# ||trafficbroker.com^$popup (easylistchina+easylist.txt: 39557) -.trafficbroker.com -# ||trackvoluum.com^$popup (easylistchina+easylist.txt: 39556) -.trackvoluum.com -# ||targetingnow.com^$popup,third-party (easylistchina+easylist.txt: 39555) -.targetingnow.com -# ||socialsex.com^$popup,third-party (easylistchina+easylist.txt: 39554) -.socialsex.com -# ||socialsex.biz^$popup,third-party (easylistchina+easylist.txt: 39553) -.socialsex.biz -# ||sexintheuk.com^$popup,third-party (easylistchina+easylist.txt: 39552) -.sexintheuk.com -# ||sexflirtbook.com^$popup,third-party (easylistchina+easylist.txt: 39551) -.sexflirtbook.com -# ||sexad.net^$popup,third-party (easylistchina+easylist.txt: 39550) -.sexad.net -# ||sex-journey.com^$popup,third-party (easylistchina+easylist.txt: 39549) -.sex-journey.com -# ||setravieso.com^$popup,third-party (easylistchina+easylist.txt: 39548) -.setravieso.com -# ||sascentral.com^$popup,third-party (easylistchina+easylist.txt: 39547) -.sascentral.com -# ||royalads.net^$popup,third-party (easylistchina+easylist.txt: 39546) -.royalads.net -# ||reviewdollars.com^$popup,third-party (easylistchina+easylist.txt: 39545) -.reviewdollars.com -# ||reporo.net^$popup,third-party (easylistchina+easylist.txt: 39544) -.reporo.net -# ||repmbuycurl.com^$popup,third-party (easylistchina+easylist.txt: 39543) -.repmbuycurl.com -# ||prpops.com^$popup,third-party (easylistchina+easylist.txt: 39542) -.prpops.com -# ||prexista.com^$popup,third-party (easylistchina+easylist.txt: 39541) -.prexista.com -# ||pornbus.org^$popup (easylistchina+easylist.txt: 39540) -.pornbus.org -# ||popcash.net^$popup,third-party (easylistchina+easylist.txt: 39539) -.popcash.net -# ||plugrush.com^$popup,third-party (easylistchina+easylist.txt: 39538) -.plugrush.com -# ||plinx.net^$popup,third-party (easylistchina+easylist.txt: 39537) -.plinx.net -# ||playgirl.com^$popup (easylistchina+easylist.txt: 39536) -.playgirl.com -# ||pinkberrytube.com^$popup (easylistchina+easylist.txt: 39535) -.pinkberrytube.com -# ||njmaq.com^$popup,third-party (easylistchina+easylist.txt: 39534) -.njmaq.com -# ||needlive.com^$popup (easylistchina+easylist.txt: 39533) -.needlive.com -# ||naughtyplayful.com^$popup,third-party (easylistchina+easylist.txt: 39532) -.naughtyplayful.com -# ||loltrk.com^$popup,third-party (easylistchina+easylist.txt: 39531) -.loltrk.com -# ||legacyminerals.net^$popup,third-party (easylistchina+easylist.txt: 39530) -.legacyminerals.net -# ||kaizentraffic.com^$popup,third-party (easylistchina+easylist.txt: 39529) -.kaizentraffic.com -# ||juicyads.com^$popup,third-party (easylistchina+easylist.txt: 39528) -.juicyads.com -# ||ipvertising.com^$popup (easylistchina+easylist.txt: 39527) -.ipvertising.com -# ||indianfriendfinder.com^$popup,third-party (easylistchina+easylist.txt: 39526) -.indianfriendfinder.com -# ||imgcarry.com^$popup,third-party (easylistchina+easylist.txt: 39525) -.imgcarry.com -# ||imagesnake.com^$popup,third-party (easylistchina+easylist.txt: 39524) -.imagesnake.com -# ||hornymatches.com^$popup,third-party (easylistchina+easylist.txt: 39523) -.hornymatches.com -# ||hizlireklam.com^$popup,third-party (easylistchina+easylist.txt: 39522) -.hizlireklam.com -# ||herezera.com^$popup (easylistchina+easylist.txt: 39521) -.herezera.com -# ||hapend.biz^$popup,third-party (easylistchina+easylist.txt: 39520) -.hapend.biz -# ||hanaprop.com^$popup,third-party (easylistchina+easylist.txt: 39519) -.hanaprop.com -# ||gothot.org^$popup,third-party (easylistchina+easylist.txt: 39518) -.gothot.org -# ||freewebcams.com^$popup,third-party (easylistchina+easylist.txt: 39517) -.freewebcams.com -# ||freecamsexposed.com^$popup (easylistchina+easylist.txt: 39516) -.freecamsexposed.com -# ||fpctraffic2.com^$popup,third-party (easylistchina+easylist.txt: 39515) -.fpctraffic2.com -# ||fox-forden.ru^$popup,third-party (easylistchina+easylist.txt: 39514) -.fox-forden.ru -# ||foaks.com^$popup,third-party (easylistchina+easylist.txt: 39513) -.foaks.com -# ||flagads.net^$popup (easylistchina+easylist.txt: 39512) -.flagads.net -# ||filthads.com^$popup,third-party (easylistchina+easylist.txt: 39511) -.filthads.com -# ||fbay.tv^$popup (easylistchina+easylist.txt: 39510) -.fbay.tv -# ||exogripper.com^$popup (easylistchina+easylist.txt: 39509) -.exogripper.com -# ||exgfpunished.com^$popup,third-party (easylistchina+easylist.txt: 39508) -.exgfpunished.com -# ||everyporn.net^$popup,third-party (easylistchina+easylist.txt: 39507) -.everyporn.net -# ||ertya.com^$popup (easylistchina+easylist.txt: 39506) -.ertya.com -# ||ero-advertising.com^$popup,third-party (easylistchina+easylist.txt: 39505) -.ero-advertising.com -# ||ekod.info^$popup,third-party (easylistchina+easylist.txt: 39504) -.ekod.info -# ||ebocornac.com^$popup,third-party (easylistchina+easylist.txt: 39503) -.ebocornac.com -# ||easysexdate.com^$popup (easylistchina+easylist.txt: 39502) -.easysexdate.com -# ||dverser.ru^$popup,third-party (easylistchina+easylist.txt: 39501) -.dverser.ru -# ||doublegear.com^$popup,third-party (easylistchina+easylist.txt: 39500) -.doublegear.com -# ||connexionsafe.com^$popup (easylistchina+easylist.txt: 39499) -.connexionsafe.com -# ||chtic.net^$popup,third-party (easylistchina+easylist.txt: 39498) -.chtic.net -# ||chokertraffic.com^$popup,third-party (easylistchina+easylist.txt: 39497) -.chokertraffic.com -# ||c4tracking01.com^$popup,third-party (easylistchina+easylist.txt: 39496) -.c4tracking01.com -# ||buy404s.com^$popup (easylistchina+easylist.txt: 39495) -.buy404s.com -# ||bitterstrawberry.com^$popup (easylistchina+easylist.txt: 39494) -.bitterstrawberry.com -# ||banners.cams.com^$popup,third-party (easylistchina+easylist.txt: 39493) -.banners.cams.com -# ||aquete.com^$popup,third-party (easylistchina+easylist.txt: 39492) -.aquete.com -# ||adxpansion.com^$popup,third-party (easylistchina+easylist.txt: 39491) -.adxpansion.com -# ||adxite.com^$popup,third-party (easylistchina+easylist.txt: 39490) -.adxite.com -# ||adultmoda.com^$popup,third-party (easylistchina+easylist.txt: 39489) -.adultmoda.com -# ||adultadworld.com^$popup,third-party (easylistchina+easylist.txt: 39488) -.adultadworld.com -# ||adultadmedia.com^$popup,third-party (easylistchina+easylist.txt: 39487) -.adultadmedia.com -# ||adtgs.com^$popup (easylistchina+easylist.txt: 39486) -.adtgs.com -# ||adsnero.website^$popup,third-party (easylistchina+easylist.txt: 39485) -.adsnero.website -# ||45i73jv6.com^$popup,third-party (easylistchina+easylist.txt: 39484) -.45i73jv6.com -# ||3questionsgetthegirl.com^$popup (easylistchina+easylist.txt: 39483) -.3questionsgetthegirl.com -# ||3file.info^$popup,third-party (easylistchina+easylist.txt: 39482) -.3file.info -# ||33traffic.com^$popup (easylistchina+easylist.txt: 39481) -.33traffic.com -# ||reporo.net^$third-party (easylistchina+easylist.txt: 39479) -.reporo.net -# ||ziphentai.com^$third-party (easylistchina+easylist.txt: 39477) -.ziphentai.com -# ||zinzimo.info^$third-party (easylistchina+easylist.txt: 39476) -.zinzimo.info -# ||zenkreka.com^$third-party (easylistchina+easylist.txt: 39475) -.zenkreka.com -# ||zboac.com^$third-party (easylistchina+easylist.txt: 39474) -.zboac.com -# ||yx0banners.com^$third-party (easylistchina+easylist.txt: 39473) -.yx0banners.com -# ||yuppads.com^$third-party (easylistchina+easylist.txt: 39472) -.yuppads.com -# ||yu0123456.com^$third-party (easylistchina+easylist.txt: 39471) -.yu0123456.com -# ||ypmadserver.com^$third-party (easylistchina+easylist.txt: 39470) -.ypmadserver.com -# ||yourdatelink.com^$third-party (easylistchina+easylist.txt: 39468) -.yourdatelink.com -# ||your-big.com^$third-party (easylistchina+easylist.txt: 39467) -.your-big.com -# ||yoshatia.com^$third-party (easylistchina+easylist.txt: 39466) -.yoshatia.com -# ||yobihost.com^$third-party (easylistchina+easylist.txt: 39465) -.yobihost.com -# ||yfum.com^$third-party (easylistchina+easylist.txt: 39464) -.yfum.com -# ||yesmessenger.com^$third-party (easylistchina+easylist.txt: 39463) -.yesmessenger.com -# ||yazcash.com^$third-party (easylistchina+easylist.txt: 39462) -.yazcash.com -# ||y72yuyr9.com^$third-party (easylistchina+easylist.txt: 39461) -.y72yuyr9.com -# ||xxxwebtraffic.com^$third-party (easylistchina+easylist.txt: 39460) -.xxxwebtraffic.com -# ||xxxvipporno.com^$third-party (easylistchina+easylist.txt: 39459) -.xxxvipporno.com -# ||xxxmatch.com^$third-party (easylistchina+easylist.txt: 39458) -.xxxmatch.com -# ||xxxlnk.com^$third-party (easylistchina+easylist.txt: 39457) -.xxxlnk.com -# ||xxxex.com^$third-party (easylistchina+easylist.txt: 39456) -.xxxex.com -# ||xxxblackbook.com^$third-party (easylistchina+easylist.txt: 39455) -.xxxblackbook.com -# ||xxxbannerswap.com^$third-party (easylistchina+easylist.txt: 39454) -.xxxbannerswap.com -# ||xxxallaccesspass.com^$third-party (easylistchina+easylist.txt: 39453) -.xxxallaccesspass.com -# ||xxltr.com^$third-party (easylistchina+easylist.txt: 39452) -.xxltr.com -# ||xpop.co^$third-party (easylistchina+easylist.txt: 39451) -.xpop.co -# ||xpollo.com^$third-party (easylistchina+easylist.txt: 39450) -.xpollo.com -# ||xoliter.com^$third-party (easylistchina+easylist.txt: 39449) -.xoliter.com -# ||xmediawebs.net^$third-party (easylistchina+easylist.txt: 39448) -.xmediawebs.net -# ||xlovecam.com^$third-party (easylistchina+easylist.txt: 39447) -.xlovecam.com -# ||xidx.org^$third-party (easylistchina+easylist.txt: 39446) -.xidx.org -# ||xhamstercams.com^$third-party (easylistchina+easylist.txt: 39445) -.xhamstercams.com -# ||xfuckbook.com^$third-party (easylistchina+easylist.txt: 39444) -.xfuckbook.com -# ||xf43506e8.pw^$third-party (easylistchina+easylist.txt: 39443) -.xf43506e8.pw -# ||xclicks.net^$third-party (easylistchina+easylist.txt: 39442) -.xclicks.net -# ||xclickdirect.com^$third-party (easylistchina+easylist.txt: 39441) -.xclickdirect.com -# ||xaxoro.com^^$third-party (easylistchina+easylist.txt: 39440) -.xaxoro.com/[^\w%.-] -# ||x3v66zlz.com^$third-party (easylistchina+easylist.txt: 39439) -.x3v66zlz.com -# ||x-exchanger.co.uk^$third-party (easylistchina+easylist.txt: 39438) -.x-exchanger.co.uk -# ||x-adservice.com^$third-party (easylistchina+easylist.txt: 39437) -.x-adservice.com -# ||wwwmobiroll.com^$third-party (easylistchina+easylist.txt: 39436) -.wwwmobiroll.com -# ||wqlkp.com^$third-party (easylistchina+easylist.txt: 39435) -.wqlkp.com -# ||worldsbestcams.com^$third-party (easylistchina+easylist.txt: 39434) -.worldsbestcams.com -# ||wood-pen.com^$third-party (easylistchina+easylist.txt: 39433) -.wood-pen.com -# ||wma.io^$third-party (easylistchina+easylist.txt: 39432) -.wma.io -# ||wildmatch.com^$third-party (easylistchina+easylist.txt: 39431) -.wildmatch.com -# ||wildhookups.com^$third-party (easylistchina+easylist.txt: 39430) -.wildhookups.com -# ||wifelovers.com^$third-party (easylistchina+easylist.txt: 39429) -.wifelovers.com -# ||whaleads.com^$third-party (easylistchina+easylist.txt: 39428) -.whaleads.com -# ||wetpeachcash.com^$third-party (easylistchina+easylist.txt: 39427) -.wetpeachcash.com -# ||weselltraffic.com^$third-party (easylistchina+easylist.txt: 39426) -.weselltraffic.com -# ||weownthetraffic.com^$third-party (easylistchina+easylist.txt: 39425) -.weownthetraffic.com -# ||webteaser.ru^$third-party (easylistchina+easylist.txt: 39424) -.webteaser.ru -# ||webstats.com.br^$third-party (easylistchina+easylist.txt: 39423) -.webstats.com.br -# ||websitepromoserver.com^$third-party (easylistchina+easylist.txt: 39422) -.websitepromoserver.com -# ||webclickmanager.com^$third-party (easylistchina+easylist.txt: 39421) -.webclickmanager.com -# ||webclickengine.com^$third-party (easylistchina+easylist.txt: 39420) -.webclickengine.com -# ||webcampromotions.com^$third-party (easylistchina+easylist.txt: 39419) -.webcampromotions.com -# ||webcambait.com^$third-party (easylistchina+easylist.txt: 39418) -.webcambait.com -# ||watchmygf.to^$third-party (easylistchina+easylist.txt: 39417) -.watchmygf.to -# ||warsomnet.com^$third-party (easylistchina+easylist.txt: 39416) -.warsomnet.com -# ||wamcash.com^$third-party (easylistchina+easylist.txt: 39415) -.wamcash.com -# ||walprater.com^$third-party (easylistchina+easylist.txt: 39414) -.walprater.com -# ||vsexshop.ru^$third-party (easylistchina+easylist.txt: 39413) -.vsexshop.ru -# ||vrstage.com^$third-party (easylistchina+easylist.txt: 39412) -.vrstage.com -# ||vroll.net^$third-party (easylistchina+easylist.txt: 39411) -.vroll.net -# ||voluumtrk.com^$third-party (easylistchina+easylist.txt: 39410) -.voluumtrk.com -# ||vogozae.ru^$third-party (easylistchina+easylist.txt: 39409) -.vogozae.ru -# ||vogotita.com^$third-party (easylistchina+easylist.txt: 39408) -.vogotita.com -# ||vogorana.ru^$third-party (easylistchina+easylist.txt: 39407) -.vogorana.ru -# ||vogopita.com^$third-party (easylistchina+easylist.txt: 39406) -.vogopita.com -# ||vod-cash.com^$third-party (easylistchina+easylist.txt: 39405) -.vod-cash.com -# ||vlogexpert.com^$third-party (easylistchina+easylist.txt: 39404) -.vlogexpert.com -# ||vlexokrako.com^$third-party (easylistchina+easylist.txt: 39403) -.vlexokrako.com -# ||vktr073.net^$third-party (easylistchina+easylist.txt: 39402) -.vktr073.net -# ||vividcash.com^$third-party (easylistchina+easylist.txt: 39401) -.vividcash.com -# ||virtuagirlhd.com^$third-party (easylistchina+easylist.txt: 39400) -.virtuagirlhd.com -# ||viewrtb.com^$third-party (easylistchina+easylist.txt: 39399) -.viewrtb.com -# ||video-people.com^$third-party (easylistchina+easylist.txt: 39398) -.video-people.com -# ||verticalaffiliation.com^$third-party (easylistchina+easylist.txt: 39397) -.verticalaffiliation.com -# ||ver-pelis.net^$third-party (easylistchina+easylist.txt: 39396) -.ver-pelis.net -# ||uxernab.com^$third-party (easylistchina+easylist.txt: 39395) -.uxernab.com -# ||uuidksinc.net^$third-party (easylistchina+easylist.txt: 39394) -.uuidksinc.net -# ||unlimedia.net^$third-party (easylistchina+easylist.txt: 39393) -.unlimedia.net -# ||unaspajas.com^$third-party (easylistchina+easylist.txt: 39392) -.unaspajas.com -# ||ukreggae.ru^$third-party (easylistchina+easylist.txt: 39391) -.ukreggae.ru -# ||tynyh.com^$third-party (easylistchina+easylist.txt: 39390) -.tynyh.com -# ||txxx.com^$third-party (easylistchina+easylist.txt: 39389) -.txxx.com -# ||twistyscash.com^$third-party (easylistchina+easylist.txt: 39388) -.twistyscash.com -# ||tvzavr.ru^$third-party (easylistchina+easylist.txt: 39387) -.tvzavr.ru -# ||tufosex.com.br^$third-party (easylistchina+easylist.txt: 39386) -.tufosex.com.br -# ||tubedspots.com^$third-party (easylistchina+easylist.txt: 39385) -.tubedspots.com -# ||tubeadnetwork.com^$third-party (easylistchina+easylist.txt: 39384) -.tubeadnetwork.com -# ||ttlmodels.com^$third-party (easylistchina+easylist.txt: 39383) -.ttlmodels.com -# ||try9.com^$third-party (easylistchina+easylist.txt: 39382) -.try9.com -# ||trw12.com^$third-party (easylistchina+easylist.txt: 39381) -.trw12.com -# ||trustedadserver.com^$third-party (easylistchina+easylist.txt: 39380) -.trustedadserver.com -# ||transexy.it^$third-party (easylistchina+easylist.txt: 39379) -.transexy.it -# ||trafogon.net^$third-party (easylistchina+easylist.txt: 39378) -.trafogon.net -# ||traficmax.fr^$third-party (easylistchina+easylist.txt: 39377) -.traficmax.fr -# ||trafficundercontrol.com^$third-party (easylistchina+easylist.txt: 39376) -.trafficundercontrol.com -# ||trafficstars.com^$third-party (easylistchina+easylist.txt: 39375) -.trafficstars.com -# ||trafficshop.com^$third-party (easylistchina+easylist.txt: 39374) -.trafficshop.com -# ||trafficpimps.com^$third-party (easylistchina+easylist.txt: 39373) -.trafficpimps.com -# ||trafficlearn.com^$third-party (easylistchina+easylist.txt: 39372) -.trafficlearn.com -# ||traffichunt.com^$third-party (easylistchina+easylist.txt: 39371) -.traffichunt.com -# ||trafficholder.com^$third-party (easylistchina+easylist.txt: 39370) -.trafficholder.com -# ||traffic.ru^$third-party (easylistchina+easylist.txt: 39369) -.traffic.ru -# ||traffic-in.com^$third-party (easylistchina+easylist.txt: 39368) -.traffic-in.com -# ||traffbiz.ru^$third-party (easylistchina+easylist.txt: 39367) -.traffbiz.ru -# ||trackerodss.eu^$third-party (easylistchina+easylist.txt: 39366) -.trackerodss.eu -# ||tracker2kss.eu^$third-party (easylistchina+easylist.txt: 39365) -.tracker2kss.eu -# ||tracelive.ru^$third-party (easylistchina+easylist.txt: 39364) -.tracelive.ru -# ||tossoffads.com^$third-party (easylistchina+easylist.txt: 39363) -.tossoffads.com -# ||torrent-anime.ru^$third-party (easylistchina+easylist.txt: 39362) -.torrent-anime.ru -# ||topbucks.com^$third-party (easylistchina+easylist.txt: 39361) -.topbucks.com -# ||top-sponsor.com^$third-party (easylistchina+easylist.txt: 39360) -.top-sponsor.com -# ||toget.ru^$third-party (easylistchina+easylist.txt: 39359) -.toget.ru -# ||todayssn.com^$third-party (easylistchina+easylist.txt: 39358) -.todayssn.com -# ||tmserver-2.net^$third-party (easylistchina+easylist.txt: 39357) -.tmserver-2.net -# ||tmserver-1.com^$third-party (easylistchina+easylist.txt: 39356) -.tmserver-1.com -# ||tm-core.net^$third-party (easylistchina+easylist.txt: 39355) -.tm-core.net -# ||tkhigh.com^$third-party (easylistchina+easylist.txt: 39354) -.tkhigh.com -# ||tizernet.com^$third-party (easylistchina+easylist.txt: 39353) -.tizernet.com -# ||titsbro.pw^$third-party (easylistchina+easylist.txt: 39352) -.titsbro.pw -# ||titsbro.org^$third-party (easylistchina+easylist.txt: 39351) -.titsbro.org -# ||titsbro.net^$third-party (easylistchina+easylist.txt: 39350) -.titsbro.net -# ||tinyweene.com^$third-party (easylistchina+easylist.txt: 39349) -.tinyweene.com -# ||tingrinter.com^$third-party (easylistchina+easylist.txt: 39348) -.tingrinter.com -# ||timteen.com^$third-party (easylistchina+easylist.txt: 39347) -.timteen.com -# ||thumbnail-galleries.net^$third-party (easylistchina+easylist.txt: 39346) -.thumbnail-galleries.net -# ||thesocialsexnetwork.com^$third-party (easylistchina+easylist.txt: 39345) -.thesocialsexnetwork.com -# ||thepayporn.com^$third-party (easylistchina+easylist.txt: 39344) -.thepayporn.com -# ||thebunsenburner.com^$third-party (easylistchina+easylist.txt: 39343) -.thebunsenburner.com -# ||the-adult-company.com^$third-party (easylistchina+easylist.txt: 39342) -.the-adult-company.com -# ||teendestruction.com^$third-party (easylistchina+easylist.txt: 39341) -.teendestruction.com -# ||tech-board.com^$third-party (easylistchina+easylist.txt: 39340) -.tech-board.com -# ||teaservizio.com^$third-party (easylistchina+easylist.txt: 39339) -.teaservizio.com -# ||teasernet.ru^$third-party (easylistchina+easylist.txt: 39338) -.teasernet.ru -# ||tarkita.ru^$third-party (easylistchina+easylist.txt: 39337) -.tarkita.ru -# ||targettrafficmarketing.net^$third-party (easylistchina+easylist.txt: 39336) -.targettrafficmarketing.net -# ||targetingnow.com^$third-party (easylistchina+easylist.txt: 39335) -.targetingnow.com -# ||talk-blog.com^$third-party (easylistchina+easylist.txt: 39334) -.talk-blog.com -# ||sweetstudents.com^$third-party (easylistchina+easylist.txt: 39333) -.sweetstudents.com -# ||sweetmedia.org^$third-party (easylistchina+easylist.txt: 39332) -.sweetmedia.org -# ||sv2.biz^$third-party (easylistchina+easylist.txt: 39331) -.sv2.biz -# ||sunnysmedia.com^$third-party (easylistchina+easylist.txt: 39330) -.sunnysmedia.com -# ||stripsaver.com^$third-party (easylistchina+easylist.txt: 39329) -.stripsaver.com -# ||streamateaccess.com^$third-party (easylistchina+easylist.txt: 39328) -.streamateaccess.com -# ||sterrencash.nl^$third-party (easylistchina+easylist.txt: 39327) -.sterrencash.nl -# ||steamtraffic.com^$third-party (easylistchina+easylist.txt: 39326) -.steamtraffic.com -# ||stat-data.net^$third-party (easylistchina+easylist.txt: 39325) -.stat-data.net -# ||startwebpromo.com^$third-party (easylistchina+easylist.txt: 39324) -.startwebpromo.com -# ||startede.com^$third-party (easylistchina+easylist.txt: 39323) -.startede.com -# ||squeeder.com^$third-party (easylistchina+easylist.txt: 39322) -.squeeder.com -# ||spunkycash.com^$third-party (easylistchina+easylist.txt: 39321) -.spunkycash.com -# ||spcwm.com^$third-party (easylistchina+easylist.txt: 39320) -.spcwm.com -# ||sortow.ru^$third-party (easylistchina+easylist.txt: 39319) -.sortow.ru -# ||solutionsadultes.com^$third-party (easylistchina+easylist.txt: 39318) -.solutionsadultes.com -# ||socialsexnetwork.net^$third-party (easylistchina+easylist.txt: 39317) -.socialsexnetwork.net -# ||smutty.com^$third-party (easylistchina+easylist.txt: 39316) -.smutty.com -# ||sms-xxx.com^$third-party (easylistchina+easylist.txt: 39315) -.sms-xxx.com -# ||smartbn.ru^$third-party (easylistchina+easylist.txt: 39314) -.smartbn.ru -# ||slendastic.com^$third-party (easylistchina+easylist.txt: 39313) -.slendastic.com -# ||skeettools.com^$third-party (easylistchina+easylist.txt: 39312) -.skeettools.com -# ||sjosteras.com^$third-party (easylistchina+easylist.txt: 39311) -.sjosteras.com -# ||sixsigmatraffic.com^$third-party (easylistchina+easylist.txt: 39310) -.sixsigmatraffic.com -# ||siccash.com^$third-party (easylistchina+easylist.txt: 39309) -.siccash.com -# ||shopping-centres.org^$third-party (easylistchina+easylist.txt: 39308) -.shopping-centres.org -# ||sexypower.net^$third-party (easylistchina+easylist.txt: 39307) -.sexypower.net -# ||sexy-ch.com^$third-party (easylistchina+easylist.txt: 39306) -.sexy-ch.com -# ||sexvertise.com^$third-party (easylistchina+easylist.txt: 39305) -.sexvertise.com -# ||sextubecash.com^$third-party (easylistchina+easylist.txt: 39304) -.sextubecash.com -# ||sextracker.com^$third-party (easylistchina+easylist.txt: 39303) -.sextracker.com -# ||sexsearch.com^$third-party (easylistchina+easylist.txt: 39302) -.sexsearch.com -# ||sexplaycam.com^$third-party (easylistchina+easylist.txt: 39301) -.sexplaycam.com -# ||sexopages.com^$third-party (easylistchina+easylist.txt: 39300) -.sexopages.com -# ||sexole.com^$third-party (easylistchina+easylist.txt: 39299) -.sexole.com -# ||sexlist.com^$third-party (easylistchina+easylist.txt: 39298) -.sexlist.com -# ||sexdatecash.com^$third-party (easylistchina+easylist.txt: 39297) -.sexdatecash.com -# ||sexad.net^$third-party (easylistchina+easylist.txt: 39296) -.sexad.net -# ||sesxc.com^$third-party (easylistchina+easylist.txt: 39295) -.sesxc.com -# ||senkinar.com^$third-party (easylistchina+easylist.txt: 39294) -.senkinar.com -# ||seitentipp.com^$third-party (easylistchina+easylist.txt: 39293) -.seitentipp.com -# ||seemybucks.com^$third-party (easylistchina+easylist.txt: 39292) -.seemybucks.com -# ||seekbang.com^$third-party (easylistchina+easylist.txt: 39291) -.seekbang.com -# ||secretbehindporn.com^$third-party (easylistchina+easylist.txt: 39290) -.secretbehindporn.com -# ||searchx.eu^$third-party (easylistchina+easylist.txt: 39289) -.searchx.eu -# ||searchpeack.com^$third-party (easylistchina+easylist.txt: 39288) -.searchpeack.com -# ||scenesgirls.com^$third-party (easylistchina+easylist.txt: 39287) -.scenesgirls.com -# ||sbs-ad.com^$third-party (easylistchina+easylist.txt: 39286) -.sbs-ad.com -# ||sascentral.com^$third-party (easylistchina+easylist.txt: 39285) -.sascentral.com -# ||sancdn.net^$third-party (easylistchina+easylist.txt: 39284) -.sancdn.net -# ||safelinktracker.com^$third-party (easylistchina+easylist.txt: 39283) -.safelinktracker.com -# ||russianlovematch.com^$third-party (easylistchina+easylist.txt: 39282) -.russianlovematch.com -# ||runetki.com^$third-party (easylistchina+easylist.txt: 39281) -.runetki.com -# ||runetki.co^$third-party (easylistchina+easylist.txt: 39280) -.runetki.co -# ||rulerclick.ru^$third-party (easylistchina+easylist.txt: 39279) -.rulerclick.ru -# ||rulerclick.com^$third-party (easylistchina+easylist.txt: 39278) -.rulerclick.com -# ||rukplaza.com^$third-party (easylistchina+easylist.txt: 39277) -.rukplaza.com -# ||rubanners.com^$third-party (easylistchina+easylist.txt: 39276) -.rubanners.com -# ||rtbsystem.com^$third-party (easylistchina+easylist.txt: 39275) -.rtbsystem.com -# ||rsdisp.ru^$third-party (easylistchina+easylist.txt: 39274) -.rsdisp.ru -# ||royal-cash.com^$third-party (easylistchina+easylist.txt: 39273) -.royal-cash.com -# ||robotadserver.com^$third-party (easylistchina+easylist.txt: 39272) -.robotadserver.com -# ||rmkflouh.com^$third-party (easylistchina+easylist.txt: 39271) -.rmkflouh.com -# ||rmbn.net^$third-party (easylistchina+easylist.txt: 39270) -.rmbn.net -# ||rlogoro.ru^$third-party (easylistchina+easylist.txt: 39269) -.rlogoro.ru -# ||rivcash.com^$third-party (easylistchina+easylist.txt: 39268) -.rivcash.com -# ||ripbwing.com^$third-party (easylistchina+easylist.txt: 39267) -.ripbwing.com -# ||rexbucks.com^$third-party (easylistchina+easylist.txt: 39266) -.rexbucks.com -# ||retoxo.com^$third-party (easylistchina+easylist.txt: 39265) -.retoxo.com -# ||retargetpro.net^$third-party (easylistchina+easylist.txt: 39264) -.retargetpro.net -# ||reprak.com^$third-party (easylistchina+easylist.txt: 39263) -.reprak.com -# ||reliablebanners.com^$third-party (easylistchina+easylist.txt: 39262) -.reliablebanners.com -# ||redpineapplemedia.com^$third-party (easylistchina+easylist.txt: 39261) -.redpineapplemedia.com -# ||redlightcenter.com^$third-party (easylistchina+easylist.txt: 39260) -.redlightcenter.com -# ||redirectoptimizer.com^$third-party (easylistchina+easylist.txt: 39259) -.redirectoptimizer.com -# ||redcash.net^$third-party (easylistchina+easylist.txt: 39258) -.redcash.net -# ||realitytraffic.com^$third-party (easylistchina+easylist.txt: 39257) -.realitytraffic.com -# ||realitycash.com^$third-party (easylistchina+easylist.txt: 39256) -.realitycash.com -# ||realdatechat.com^$third-party (easylistchina+easylist.txt: 39255) -.realdatechat.com -# ||real2clean.ru^$third-party (easylistchina+easylist.txt: 39254) -.real2clean.ru -# ||reachword.com^$third-party (easylistchina+easylist.txt: 39253) -.reachword.com -# ||rdiul.com^$third-party (easylistchina+easylist.txt: 39252) -.rdiul.com -# ||rareru.ru^$third-party (easylistchina+easylist.txt: 39251) -.rareru.ru -# ||ramctrlgate.com^$third-party (easylistchina+easylist.txt: 39250) -.ramctrlgate.com -# ||ragazzeinvendita.com^$third-party (easylistchina+easylist.txt: 39249) -.ragazzeinvendita.com -# ||rack-media.com^$third-party (easylistchina+easylist.txt: 39248) -.rack-media.com -# ||r7e0zhv8.com^$third-party (easylistchina+easylist.txt: 39247) -.r7e0zhv8.com -# ||quexotac.com^$third-party (easylistchina+easylist.txt: 39246) -.quexotac.com -# ||queronamoro.com^$third-party (easylistchina+easylist.txt: 39245) -.queronamoro.com -# ||quagodex.com^$third-party (easylistchina+easylist.txt: 39244) -.quagodex.com -# ||pyiel2bz.com^$third-party (easylistchina+easylist.txt: 39243) -.pyiel2bz.com -# ||putanapartners.com^$third-party (easylistchina+easylist.txt: 39242) -.putanapartners.com -# ||putags.com^$third-party (easylistchina+easylist.txt: 39241) -.putags.com -# ||pussyeatingclubcams.com^$third-party (easylistchina+easylist.txt: 39240) -.pussyeatingclubcams.com -# ||pussyeatingclub.com^$third-party (easylistchina+easylist.txt: 39239) -.pussyeatingclub.com -# ||publish4.com^$third-party (easylistchina+easylist.txt: 39238) -.publish4.com -# ||ptwebcams.com^$third-party (easylistchina+easylist.txt: 39237) -.ptwebcams.com -# ||ptrfc.com^$third-party (easylistchina+easylist.txt: 39236) -.ptrfc.com -# ||ptclassic.com^$third-party (easylistchina+easylist.txt: 39235) -.ptclassic.com -# ||psma01.com^$third-party (easylistchina+easylist.txt: 39234) -.psma01.com -# ||prscripts.com^$third-party (easylistchina+easylist.txt: 39233) -.prscripts.com -# ||protizer.ru^$third-party (easylistchina+easylist.txt: 39232) -.protizer.ru -# ||protect-x.com^$third-party (easylistchina+easylist.txt: 39231) -.protect-x.com -# ||promowebstar.com^$third-party (easylistchina+easylist.txt: 39230) -.promowebstar.com -# ||promotools.biz^$third-party (easylistchina+easylist.txt: 39229) -.promotools.biz -# ||promotion-campaigns.com^$third-party (easylistchina+easylist.txt: 39228) -.promotion-campaigns.com -# ||promocionesweb.com^$third-party (easylistchina+easylist.txt: 39227) -.promocionesweb.com -# ||promo4partners.com^$third-party (easylistchina+easylist.txt: 39226) -.promo4partners.com -# ||program3.com^$third-party (easylistchina+easylist.txt: 39225) -.program3.com -# ||profitstat.biz^$third-party (easylistchina+easylist.txt: 39224) -.profitstat.biz -# ||profistats.net^$third-party (easylistchina+easylist.txt: 39223) -.profistats.net -# ||privatewebseiten.com^$third-party (easylistchina+easylist.txt: 39222) -.privatewebseiten.com -# ||privateseiten.net^$third-party (easylistchina+easylist.txt: 39221) -.privateseiten.net -# ||private4.com^$third-party (easylistchina+easylist.txt: 39220) -.private4.com -# ||privacyprotector.com^$third-party (easylistchina+easylist.txt: 39219) -.privacyprotector.com -# ||premiumhdv.com^$third-party (easylistchina+easylist.txt: 39218) -.premiumhdv.com -# ||premature-ejaculation-causes.org^$third-party (easylistchina+easylist.txt: 39217) -.premature-ejaculation-causes.org -# ||ppc-direct.com^$third-party (easylistchina+easylist.txt: 39216) -.ppc-direct.com -# ||pourmajeurs.com^$third-party (easylistchina+easylist.txt: 39215) -.pourmajeurs.com -# ||portable-basketball.com^$third-party (easylistchina+easylist.txt: 39214) -.portable-basketball.com -# ||porntrack.com^$third-party (easylistchina+easylist.txt: 39213) -.porntrack.com -# ||pornoow.com^$third-party (easylistchina+easylist.txt: 39212) -.pornoow.com -# ||porno-file.ru^$third-party (easylistchina+easylist.txt: 39211) -.porno-file.ru -# ||pornleep.com^$third-party (easylistchina+easylist.txt: 39210) -.pornleep.com -# ||pornkings.com^$third-party (easylistchina+easylist.txt: 39209) -.pornkings.com -# ||pornearn.com^$third-party (easylistchina+easylist.txt: 39208) -.pornearn.com -# ||pornconversions.com^$third-party (easylistchina+easylist.txt: 39207) -.pornconversions.com -# ||pornattitude.com^$third-party (easylistchina+easylist.txt: 39206) -.pornattitude.com -# ||porn99.net^$third-party (easylistchina+easylist.txt: 39205) -.porn99.net -# ||porn88.net^$third-party (easylistchina+easylist.txt: 39204) -.porn88.net -# ||porn-site-builder.com^$third-party (easylistchina+easylist.txt: 39203) -.porn-site-builder.com -# ||porn-hitz.com^$third-party (easylistchina+easylist.txt: 39202) -.porn-hitz.com -# ||porn-ad.org^$third-party (easylistchina+easylist.txt: 39201) -.porn-ad.org -# ||porkolt.com^$third-party (easylistchina+easylist.txt: 39200) -.porkolt.com -# ||popupclick.ru^$third-party (easylistchina+easylist.txt: 39199) -.popupclick.ru -# ||poppcheck.de^$third-party (easylistchina+easylist.txt: 39198) -.poppcheck.de -# ||popdown.biz^$third-party (easylistchina+easylist.txt: 39197) -.popdown.biz -# ||popander.com^$third-party (easylistchina+easylist.txt: 39196) -.popander.com -# ||popander.biz^$third-party (easylistchina+easylist.txt: 39195) -.popander.biz -# ||pop-bazar.net^$third-party (easylistchina+easylist.txt: 39194) -.pop-bazar.net -# ||poonproscash.com^$third-party (easylistchina+easylist.txt: 39193) -.poonproscash.com -# ||polimantu.com^$third-party (easylistchina+easylist.txt: 39192) -.polimantu.com -# ||pnads.com^$third-party (easylistchina+easylist.txt: 39191) -.pnads.com -# ||plugrush.com^$third-party (easylistchina+easylist.txt: 39190) -.plugrush.com -# ||plantaosexy.com^$third-party (easylistchina+easylist.txt: 39189) -.plantaosexy.com -# ||plachetde.biz^$third-party (easylistchina+easylist.txt: 39188) -.plachetde.biz -# ||pinkhoneypots.com^$third-party (easylistchina+easylist.txt: 39187) -.pinkhoneypots.com -# ||pictureturn.com^$third-party (easylistchina+easylist.txt: 39186) -.pictureturn.com -# ||philstraffic.com^$third-party (easylistchina+easylist.txt: 39185) -.philstraffic.com -# ||pepipo.com^$third-party (easylistchina+easylist.txt: 39184) -.pepipo.com -# ||pecash.com^$third-party (easylistchina+easylist.txt: 39183) -.pecash.com -# ||partnercash.de^$third-party (easylistchina+easylist.txt: 39182) -.partnercash.de -# ||partnercash.com^$third-party (easylistchina+easylist.txt: 39181) -.partnercash.com -# ||parkingpremium.com^$third-party (easylistchina+easylist.txt: 39180) -.parkingpremium.com -# ||panoll.com^$third-party (easylistchina+easylist.txt: 39179) -.panoll.com -# ||paid-to-promote.net^$third-party (easylistchina+easylist.txt: 39178) -.paid-to-promote.net -# ||p51d20aa4.website^$third-party (easylistchina+easylist.txt: 39177) -.p51d20aa4.website -# ||ozonru.eu^$third-party (easylistchina+easylist.txt: 39176) -.ozonru.eu -# ||ozon.ru^$third-party (easylistchina+easylist.txt: 39174) -.ozon.ru -# ||ozelmedikal.com^$third-party (easylistchina+easylist.txt: 39173) -.ozelmedikal.com -# ||owpawuk.ru^$third-party (easylistchina+easylist.txt: 39172) -.owpawuk.ru -# ||owlopadjet.info^$third-party (easylistchina+easylist.txt: 39171) -.owlopadjet.info -# ||outster.com^$third-party (easylistchina+easylist.txt: 39170) -.outster.com -# ||otherprofit.com^$third-party (easylistchina+easylist.txt: 39169) -.otherprofit.com -# ||otaserve.net^$third-party (easylistchina+easylist.txt: 39168) -.otaserve.net -# ||orodi.ru^$third-party (easylistchina+easylist.txt: 39167) -.orodi.ru -# ||ordermc.com^$third-party (easylistchina+easylist.txt: 39166) -.ordermc.com -# ||onyarysh.ru^$third-party (easylistchina+easylist.txt: 39165) -.onyarysh.ru -# ||onhercam.com^$third-party (easylistchina+easylist.txt: 39164) -.onhercam.com -# ||omynews.net^$third-party (easylistchina+easylist.txt: 39163) -.omynews.net -# ||okeo.ru^$third-party (easylistchina+easylist.txt: 39162) -.okeo.ru -# ||odzb5nkp.com^$third-party (easylistchina+easylist.txt: 39161) -.odzb5nkp.com -# ||oddads.net^$third-party (easylistchina+easylist.txt: 39160) -.oddads.net -# ||o333o.com^$third-party (easylistchina+easylist.txt: 39159) -.o333o.com -# ||nvp2auf5.com^$third-party (easylistchina+easylist.txt: 39158) -.nvp2auf5.com -# ||nummobile.com^$third-party (easylistchina+easylist.txt: 39157) -.nummobile.com -# ||nsfwads.com^$third-party (easylistchina+easylist.txt: 39156) -.nsfwads.com -# ||nscash.com^$third-party (easylistchina+easylist.txt: 39155) -.nscash.com -# ||nkk31jjp.com^$third-party (easylistchina+easylist.txt: 39154) -.nkk31jjp.com -# ||njmaq.com^$third-party (easylistchina+easylist.txt: 39153) -.njmaq.com -# ||ningme.ru^$third-party (easylistchina+easylist.txt: 39152) -.ningme.ru -# ||nikkiscash.com^$third-party (easylistchina+easylist.txt: 39151) -.nikkiscash.com -# ||ngbn.net^$third-party (easylistchina+easylist.txt: 39150) -.ngbn.net -# ||newsexbook.com^$third-party (easylistchina+easylist.txt: 39149) -.newsexbook.com -# ||newnudecash.com^$third-party (easylistchina+easylist.txt: 39148) -.newnudecash.com -# ||newagerevenue.com^$third-party (easylistchina+easylist.txt: 39147) -.newagerevenue.com -# ||newads.bangbros.com^$third-party (easylistchina+easylist.txt: 39146) -.newads.bangbros.com -# ||neuesdate.com^$third-party (easylistchina+easylist.txt: 39145) -.neuesdate.com -# ||netosdesalim.info^$third-party (easylistchina+easylist.txt: 39144) -.netosdesalim.info -# ||nature-friend.com^$third-party (easylistchina+easylist.txt: 39143) -.nature-friend.com -# ||nastydollars.com^$third-party (easylistchina+easylist.txt: 39142) -.nastydollars.com -# ||n9nedegrees.com^$third-party (easylistchina+easylist.txt: 39141) -.n9nedegrees.com -# ||mywebclick.net^$third-party (easylistchina+easylist.txt: 39140) -.mywebclick.net -# ||myprecisionads.com^$third-party (easylistchina+easylist.txt: 39139) -.myprecisionads.com -# ||mymirror.biz^$third-party (easylistchina+easylist.txt: 39138) -.mymirror.biz -# ||myadultbanners.com^$third-party (easylistchina+easylist.txt: 39137) -.myadultbanners.com -# ||mtree.com^$third-party (easylistchina+easylist.txt: 39136) -.mtree.com -# ||mtoor.com^$third-party (easylistchina+easylist.txt: 39135) -.mtoor.com -# ||msquaredproductions.com^$third-party (easylistchina+easylist.txt: 39134) -.msquaredproductions.com -# ||mrskincash.com^$third-party (easylistchina+easylist.txt: 39133) -.mrskincash.com -# ||mpmcash.com^$third-party (easylistchina+easylist.txt: 39132) -.mpmcash.com -# ||mp3vicio.com^$third-party (easylistchina+easylist.txt: 39131) -.mp3vicio.com -# ||morehitserver.com^$third-party (easylistchina+easylist.txt: 39130) -.morehitserver.com -# ||mopilod.com^$third-party (easylistchina+easylist.txt: 39129) -.mopilod.com -# ||mobred.net^$third-party (easylistchina+easylist.txt: 39128) -.mobred.net -# ||mobilerevenu.com^$third-party (easylistchina+easylist.txt: 39127) -.mobilerevenu.com -# ||mobbobr.com^$third-party (easylistchina+easylist.txt: 39126) -.mobbobr.com -# ||mobalives.com^$third-party (easylistchina+easylist.txt: 39125) -.mobalives.com -# ||mo8mwxi1.com^$third-party (easylistchina+easylist.txt: 39124) -.mo8mwxi1.com -# ||mmaaxx.com^$third-party (easylistchina+easylist.txt: 39123) -.mmaaxx.com -# ||millioncash.ru^$third-party (easylistchina+easylist.txt: 39122) -.millioncash.ru -# ||might-stay.info^$third-party (easylistchina+easylist.txt: 39121) -.might-stay.info -# ||meubonus.com^$third-party (easylistchina+easylist.txt: 39120) -.meubonus.com -# ||methodcash.com^$third-party (easylistchina+easylist.txt: 39119) -.methodcash.com -# ||meta4-group.com^$third-party (easylistchina+easylist.txt: 39118) -.meta4-group.com -# ||menteret.com^$third-party (easylistchina+easylist.txt: 39117) -.menteret.com -# ||meineserver.com^$third-party (easylistchina+easylist.txt: 39116) -.meineserver.com -# ||megoads.eu^$third-party (easylistchina+easylist.txt: 39115) -.megoads.eu -# ||mediumpimpin.com^$third-party (easylistchina+easylist.txt: 39114) -.mediumpimpin.com -# ||mediagra.com^$third-party (easylistchina+easylist.txt: 39113) -.mediagra.com -# ||media-click.ru^$third-party (easylistchina+easylist.txt: 39112) -.media-click.ru -# ||meccahoo.com^$third-party (easylistchina+easylist.txt: 39111) -.meccahoo.com -# ||mdlsrv.com^$third-party (easylistchina+easylist.txt: 39110) -.mdlsrv.com -# ||mc-nudes.com^$third-party (easylistchina+easylist.txt: 39109) -.mc-nudes.com -# ||mb103.com^$third-party (easylistchina+easylist.txt: 39108) -.mb103.com -# ||mazetin.ru^$third-party (easylistchina+easylist.txt: 39107) -.mazetin.ru -# ||maxiadv.com^$third-party (easylistchina+easylist.txt: 39106) -.maxiadv.com -# ||maxcash.com^$third-party (easylistchina+easylist.txt: 39105) -.maxcash.com -# ||matrix-cash.com^$third-party (easylistchina+easylist.txt: 39104) -.matrix-cash.com -# ||matrimoniale3x.ro^$third-party (easylistchina+easylist.txt: 39103) -.matrimoniale3x.ro -# ||masterwanker.com^$third-party (easylistchina+easylist.txt: 39102) -.masterwanker.com -# ||markswebcams.com^$third-party (easylistchina+easylist.txt: 39101) -.markswebcams.com -# ||manfys.com^$third-party (easylistchina+easylist.txt: 39100) -.manfys.com -# ||mallorcash.com^$third-party (easylistchina+easylist.txt: 39099) -.mallorcash.com -# ||mallcom.com^$third-party (easylistchina+easylist.txt: 39098) -.mallcom.com -# ||mahnatka.ru^$third-party (easylistchina+easylist.txt: 39097) -.mahnatka.ru -# ||magical-sky.com^$third-party (easylistchina+easylist.txt: 39096) -.magical-sky.com -# ||madbanner.com^$third-party (easylistchina+easylist.txt: 39095) -.madbanner.com -# ||lyubnozo.ru^$third-party (easylistchina+easylist.txt: 39094) -.lyubnozo.ru -# ||luvcom.com^$third-party (easylistchina+easylist.txt: 39093) -.luvcom.com -# ||luvcash.com^$third-party (easylistchina+easylist.txt: 39092) -.luvcash.com -# ||lucidcommerce.com^$third-party (easylistchina+easylist.txt: 39091) -.lucidcommerce.com -# ||lsawards.com^$third-party (easylistchina+easylist.txt: 39090) -.lsawards.com -# ||lovercash.com^$third-party (easylistchina+easylist.txt: 39089) -.lovercash.com -# ||lovecam.com.br^$third-party (easylistchina+easylist.txt: 39088) -.lovecam.com.br -# ||loveadverts.com^$third-party (easylistchina+easylist.txt: 39087) -.loveadverts.com -# ||lostun.com^$third-party (easylistchina+easylist.txt: 39086) -.lostun.com -# ||loading-delivery1.com^$third-party (easylistchina+easylist.txt: 39085) -.loading-delivery1.com -# ||loa-traffic.com^$third-party (easylistchina+easylist.txt: 39084) -.loa-traffic.com -# ||lizads.com^$third-party (easylistchina+easylist.txt: 39083) -.lizads.com -# ||livetraf.com^$third-party (easylistchina+easylist.txt: 39082) -.livetraf.com -# ||livepromotools.com^$third-party (easylistchina+easylist.txt: 39081) -.livepromotools.com -# ||liveprivates.com^$third-party (easylistchina+easylist.txt: 39080) -.liveprivates.com -# ||livejasmin.tv^$third-party (easylistchina+easylist.txt: 39079) -.livejasmin.tv -# ||livecam.com^$third-party (easylistchina+easylist.txt: 39078) -.livecam.com -# ||links-and-traffic.com^$third-party (easylistchina+easylist.txt: 39077) -.links-and-traffic.com -# ||limon.biz^$third-party (easylistchina+easylist.txt: 39076) -.limon.biz -# ||lifepromo.biz^$third-party (easylistchina+easylist.txt: 39075) -.lifepromo.biz -# ||lickbylick.com^$third-party (easylistchina+easylist.txt: 39074) -.lickbylick.com -# ||legendarylars.com^$third-party (easylistchina+easylist.txt: 39073) -.legendarylars.com -# ||leche69.com^$third-party (easylistchina+easylist.txt: 39072) -.leche69.com -# ||lavantat.com^$third-party (easylistchina+easylist.txt: 39071) -.lavantat.com -# ||kwot.biz^$third-party (easylistchina+easylist.txt: 39070) -.kwot.biz -# ||kuhnivsemisrazu.ru^$third-party (easylistchina+easylist.txt: 39069) -.kuhnivsemisrazu.ru -# ||kolort.ru^$third-party (easylistchina+easylist.txt: 39068) -.kolort.ru -# ||kolitat.com^$third-party (easylistchina+easylist.txt: 39067) -.kolitat.com -# ||kolestence.com^$third-party (easylistchina+easylist.txt: 39066) -.kolestence.com -# ||kliklink.ru^$third-party (easylistchina+easylist.txt: 39065) -.kliklink.ru -# ||kinopokaz.org^$third-party (easylistchina+easylist.txt: 39064) -.kinopokaz.org -# ||kingpinmedia.net^$third-party (easylistchina+easylist.txt: 39063) -.kingpinmedia.net -# ||kaplay.com^$third-party (easylistchina+easylist.txt: 39062) -.kaplay.com -# ||kadam.ru^$third-party (easylistchina+easylist.txt: 39061) -.kadam.ru -# ||k9x.net^$third-party (easylistchina+easylist.txt: 39060) -.k9x.net -# ||jz9ugaqb.com^$third-party (easylistchina+easylist.txt: 39059) -.jz9ugaqb.com -# ||justresa.com^$third-party (easylistchina+easylist.txt: 39058) -.justresa.com -# ||juicycash.net^$third-party (easylistchina+easylist.txt: 39057) -.juicycash.net -# ||juicyads.com^$third-party (easylistchina+easylist.txt: 39056) -.juicyads.com -# ||joyourself.com^$third-party (easylistchina+easylist.txt: 39055) -.joyourself.com -# ||jowapt.com^$third-party (easylistchina+easylist.txt: 39054) -.jowapt.com -# ||joinnowinstantly.com^$third-party (easylistchina+easylist.txt: 39053) -.joinnowinstantly.com -# ||jfresi.com^$third-party (easylistchina+easylist.txt: 39052) -.jfresi.com -# ||jerrcotch.com^$third-party (easylistchina+easylist.txt: 39051) -.jerrcotch.com -# ||jaymancash.com^$third-party (easylistchina+easylist.txt: 39050) -.jaymancash.com -# ||javbucks.com^$third-party (easylistchina+easylist.txt: 39049) -.javbucks.com -# ||jackao.net^$third-party (easylistchina+easylist.txt: 39048) -.jackao.net -# ||ixspublic.com^$third-party (easylistchina+easylist.txt: 39047) -.ixspublic.com -# ||iwinnersadvantage.com^$third-party (easylistchina+easylist.txt: 39046) -.iwinnersadvantage.com -# ||itw.me^$third-party (easylistchina+easylist.txt: 39045) -.itw.me -# ||itslive.com^$third-party (easylistchina+easylist.txt: 39044) -.itslive.com -# ||itrxx.com^$third-party (easylistchina+easylist.txt: 39043) -.itrxx.com -# ||itmcash.com^$third-party (easylistchina+easylist.txt: 39042) -.itmcash.com -# ||iprofit.cc^$third-party (easylistchina+easylist.txt: 39041) -.iprofit.cc -# ||intrapromotion.com^$third-party (easylistchina+easylist.txt: 39040) -.intrapromotion.com -# ||internebula.net^$third-party (easylistchina+easylist.txt: 39039) -.internebula.net -# ||intellichatadult.com^$third-party (easylistchina+easylist.txt: 39038) -.intellichatadult.com -# ||inheart.ru^$third-party (easylistchina+easylist.txt: 39037) -.inheart.ru -# ||impotencehelp.info^$third-party (easylistchina+easylist.txt: 39036) -.impotencehelp.info -# ||ilovecheating.com^$third-party (easylistchina+easylist.txt: 39035) -.ilovecheating.com -# ||iheartbucks.com^$third-party (easylistchina+easylist.txt: 39034) -.iheartbucks.com -# ||igiplay.net^$third-party (easylistchina+easylist.txt: 39033) -.igiplay.net -# ||idolbucks.com^$third-party (easylistchina+easylist.txt: 39032) -.idolbucks.com -# ||ideal-sexe.com^$third-party (easylistchina+easylist.txt: 39031) -.ideal-sexe.com -# ||ictowaz.ru^$third-party (easylistchina+easylist.txt: 39030) -.ictowaz.ru -# ||icqadvert.org^$third-party (easylistchina+easylist.txt: 39029) -.icqadvert.org -# ||icetraffic.com^$third-party (easylistchina+easylist.txt: 39028) -.icetraffic.com -# ||hubtraffic.com^$third-party (easylistchina+easylist.txt: 39027) -.hubtraffic.com -# ||hsmclick.com^$third-party (easylistchina+easylist.txt: 39026) -.hsmclick.com -# ||hotsocials.com^$third-party (easylistchina+easylist.txt: 39025) -.hotsocials.com -# ||hot-socials.com^$third-party (easylistchina+easylist.txt: 39024) -.hot-socials.com -# ||hot-dances.com^$third-party (easylistchina+easylist.txt: 39023) -.hot-dances.com -# ||hostave4.net^$third-party (easylistchina+easylist.txt: 39022) -.hostave4.net -# ||host-go.info^$third-party (easylistchina+easylist.txt: 39021) -.host-go.info -# ||hornyspots.com^$third-party (easylistchina+easylist.txt: 39020) -.hornyspots.com -# ||hornymatches.com^$third-party (easylistchina+easylist.txt: 39019) -.hornymatches.com -# ||hoptopboy.com^$third-party (easylistchina+easylist.txt: 39018) -.hoptopboy.com -# ||hopilos.com^$third-party (easylistchina+easylist.txt: 39017) -.hopilos.com -# ||hookupbucks.com^$third-party (easylistchina+easylist.txt: 39016) -.hookupbucks.com -# ||home-soon.com^$third-party (easylistchina+easylist.txt: 39015) -.home-soon.com -# ||hizlireklam.com^$third-party (easylistchina+easylist.txt: 39014) -.hizlireklam.com -# ||hipals.com^$third-party (easylistchina+easylist.txt: 39013) -.hipals.com -# ||highnets.com^$third-party (easylistchina+easylist.txt: 39012) -.highnets.com -# ||hiddenbucks.com^$third-party (easylistchina+easylist.txt: 39011) -.hiddenbucks.com -# ||herezera.com^$third-party (easylistchina+easylist.txt: 39010) -.herezera.com -# ||hentaibiz.com^$third-party (easylistchina+easylist.txt: 39009) -.hentaibiz.com -# ||helltraffic.com^$third-party (easylistchina+easylist.txt: 39008) -.helltraffic.com -# ||gzbop.com^$third-party (easylistchina+easylist.txt: 39007) -.gzbop.com -# ||gunzblazingpromo.com^$third-party (easylistchina+easylist.txt: 39006) -.gunzblazingpromo.com -# ||gtsads.com^$third-party (easylistchina+easylist.txt: 39005) -.gtsads.com -# ||gridlockparadise.com^$third-party (easylistchina+easylist.txt: 39004) -.gridlockparadise.com -# ||greatcpm.com^$third-party (easylistchina+easylist.txt: 39003) -.greatcpm.com -# ||govereign.com^$third-party (easylistchina+easylist.txt: 39002) -.govereign.com -# ||golderotica.com^$third-party (easylistchina+easylist.txt: 39001) -.golderotica.com -# ||goklics.ru^$third-party (easylistchina+easylist.txt: 39000) -.goklics.ru -# ||goallurl.ru^$third-party (easylistchina+easylist.txt: 38999) -.goallurl.ru -# ||go2euroshop.com^$third-party (easylistchina+easylist.txt: 38998) -.go2euroshop.com -# ||glbtrk.com^$third-party (easylistchina+easylist.txt: 38997) -.glbtrk.com -# ||gl-cash.com^$third-party (easylistchina+easylist.txt: 38996) -.gl-cash.com -# ||ggwcash.com^$third-party (easylistchina+easylist.txt: 38995) -.ggwcash.com -# ||gfhdkse.com^$third-party (easylistchina+easylist.txt: 38994) -.gfhdkse.com -# ||getiton.com^$third-party (easylistchina+easylist.txt: 38993) -.getiton.com -# ||geoinventory.com^$third-party (easylistchina+easylist.txt: 38992) -.geoinventory.com -# ||geofamily.ru^$third-party (easylistchina+easylist.txt: 38991) -.geofamily.ru -# ||geoaddicted.net^$third-party (easylistchina+easylist.txt: 38990) -.geoaddicted.net -# ||genialradio.com^$third-party (easylistchina+easylist.txt: 38989) -.genialradio.com -# ||gefnaro.com^$third-party (easylistchina+easylist.txt: 38988) -.gefnaro.com -# ||gayxperience.com^$third-party (easylistchina+easylist.txt: 38987) -.gayxperience.com -# ||gayadpros.com^$third-party (easylistchina+easylist.txt: 38986) -.gayadpros.com -# ||ganardineroreal.com^$third-party (easylistchina+easylist.txt: 38985) -.ganardineroreal.com -# ||gamblespot.ru^$third-party (easylistchina+easylist.txt: 38984) -.gamblespot.ru -# ||g726n8cy.com^$third-party (easylistchina+easylist.txt: 38983) -.g726n8cy.com -# ||g6ni40i7.com^$third-party (easylistchina+easylist.txt: 38982) -.g6ni40i7.com -# ||funnypickuplinesforgirls.com^$third-party (easylistchina+easylist.txt: 38981) -.funnypickuplinesforgirls.com -# ||funcel.mobi^$third-party (easylistchina+easylist.txt: 38980) -.funcel.mobi -# ||fuelbuck.com^$third-party (easylistchina+easylist.txt: 38979) -.fuelbuck.com -# ||fuckyoucash.com^$third-party (easylistchina+easylist.txt: 38978) -.fuckyoucash.com -# ||fuckermedia.com^$third-party (easylistchina+easylist.txt: 38977) -.fuckermedia.com -# ||fuckbookdating.com^$third-party (easylistchina+easylist.txt: 38976) -.fuckbookdating.com -# ||fuckbook.cm^$third-party (easylistchina+easylist.txt: 38975) -.fuckbook.cm -# ||frutrun.com^$third-party (easylistchina+easylist.txt: 38974) -.frutrun.com -# ||frivol-ads.com^$third-party (easylistchina+easylist.txt: 38973) -.frivol-ads.com -# ||frestime.com^$third-party (easylistchina+easylist.txt: 38972) -.frestime.com -# ||frestacero.com^$third-party (easylistchina+easylist.txt: 38971) -.frestacero.com -# ||free-porn-vidz.com^$third-party (easylistchina+easylist.txt: 38970) -.free-porn-vidz.com -# ||freakads.com^$third-party (easylistchina+easylist.txt: 38969) -.freakads.com -# ||forgetstore.com^$third-party (easylistchina+easylist.txt: 38968) -.forgetstore.com -# ||fncash.com^$third-party (easylistchina+easylist.txt: 38967) -.fncash.com -# ||fmscash.com^$third-party (easylistchina+easylist.txt: 38966) -.fmscash.com -# ||flirtingsms.com^$third-party (easylistchina+easylist.txt: 38965) -.flirtingsms.com -# ||flirt4free.com^$third-party (easylistchina+easylist.txt: 38964) -.flirt4free.com -# ||flirt4e.com^$third-party (easylistchina+easylist.txt: 38963) -.flirt4e.com -# ||flipflapflo.net^$third-party (easylistchina+easylist.txt: 38962) -.flipflapflo.net -# ||flipflapflo.info^$third-party (easylistchina+easylist.txt: 38961) -.flipflapflo.info -# ||fleshlightgirls.com^$third-party (easylistchina+easylist.txt: 38960) -.fleshlightgirls.com -# ||fleshcash.com^$third-party (easylistchina+easylist.txt: 38959) -.fleshcash.com -# ||flashadtools.com^$third-party (easylistchina+easylist.txt: 38958) -.flashadtools.com -# ||findandtry.com^$third-party (easylistchina+easylist.txt: 38957) -.findandtry.com -# ||filthads.com^$third-party (easylistchina+easylist.txt: 38956) -.filthads.com -# ||fickads.net^$third-party (easylistchina+easylist.txt: 38955) -.fickads.net -# ||felixflow.com^$third-party (easylistchina+easylist.txt: 38954) -.felixflow.com -# ||feeder.xxx^$third-party (easylistchina+easylist.txt: 38953) -.feeder.xxx -# ||fanmalinin.ru^$third-party (easylistchina+easylist.txt: 38952) -.fanmalinin.ru -# ||facetz.net^$third-party (easylistchina+easylist.txt: 38951) -.facetz.net -# ||faceporn.com^$third-party (easylistchina+easylist.txt: 38950) -.faceporn.com -# ||facebookofsex.com^$third-party (easylistchina+easylist.txt: 38949) -.facebookofsex.com -# ||eyemedias.com^$third-party (easylistchina+easylist.txt: 38948) -.eyemedias.com -# ||exsifsi.ru^$third-party (easylistchina+easylist.txt: 38947) -.exsifsi.ru -# ||exoticads.com^$third-party (easylistchina+easylist.txt: 38946) -.exoticads.com -# ||exogripper.com^$third-party (easylistchina+easylist.txt: 38945) -.exogripper.com -# ||exoclickz.com^$third-party (easylistchina+easylist.txt: 38944) -.exoclickz.com -# ||exclusivepussy.com^$third-party (easylistchina+easylist.txt: 38943) -.exclusivepussy.com -# ||exchangecash.de^$third-party (easylistchina+easylist.txt: 38942) -.exchangecash.de -# ||euro4ads.de^$third-party (easylistchina+easylist.txt: 38941) -.euro4ads.de -# ||euro-rx.com^$third-party (easylistchina+easylist.txt: 38940) -.euro-rx.com -# ||eu2xml.com^$third-party (easylistchina+easylist.txt: 38939) -.eu2xml.com -# ||escortso.com^$third-party (easylistchina+easylist.txt: 38938) -.escortso.com -# ||erotizer.info^$third-party (easylistchina+easylist.txt: 38937) -.erotizer.info -# ||erotikdating.com^$third-party (easylistchina+easylist.txt: 38936) -.erotikdating.com -# ||erosadv.com^$third-party (easylistchina+easylist.txt: 38935) -.erosadv.com -# ||eragi.ru^$third-party (easylistchina+easylist.txt: 38934) -.eragi.ru -# ||enoratraffic.com^$third-party (easylistchina+easylist.txt: 38933) -.enoratraffic.com -# ||emediawebs.com^$third-party (easylistchina+easylist.txt: 38932) -.emediawebs.com -# ||eltepo.ru^$third-party (easylistchina+easylist.txt: 38931) -.eltepo.ru -# ||elekted.com^$third-party (easylistchina+easylist.txt: 38930) -.elekted.com -# ||ecortb.com^$third-party (easylistchina+easylist.txt: 38929) -.ecortb.com -# ||ebocornac.com^$third-party (easylistchina+easylist.txt: 38928) -.ebocornac.com -# ||ebdr2.com^$third-party (easylistchina+easylist.txt: 38927) -.ebdr2.com -# ||easyflirt.com^$third-party (easylistchina+easylist.txt: 38926) -.easyflirt.com -# ||easy-dating.org^$third-party (easylistchina+easylist.txt: 38925) -.easy-dating.org -# ||eadulttraffic.com^$third-party (easylistchina+easylist.txt: 38924) -.eadulttraffic.com -# ||dvdkinoteatr.com^$third-party (easylistchina+easylist.txt: 38923) -.dvdkinoteatr.com -# ||dtiserv2.com^$third-party (easylistchina+easylist.txt: 38922) -.dtiserv2.com -# ||dro4icho.ru^$third-party (easylistchina+easylist.txt: 38921) -.dro4icho.ru -# ||drevil.to^$third-party (easylistchina+easylist.txt: 38920) -.drevil.to -# ||doublegear.com^$third-party (easylistchina+easylist.txt: 38919) -.doublegear.com -# ||double-check.com^$third-party (easylistchina+easylist.txt: 38918) -.double-check.com -# ||dosugcz.biz^$third-party (easylistchina+easylist.txt: 38917) -.dosugcz.biz -# ||dofolo.ru^$third-party (easylistchina+easylist.txt: 38916) -.dofolo.ru -# ||divertura.com^$third-party (easylistchina+easylist.txt: 38915) -.divertura.com -# ||divascam.com^$third-party (easylistchina+easylist.txt: 38914) -.divascam.com -# ||discreetlocalgirls.com^$third-party (easylistchina+easylist.txt: 38913) -.discreetlocalgirls.com -# ||direction-x.com^$third-party (easylistchina+easylist.txt: 38912) -.direction-x.com -# ||directchat.tv^$third-party (easylistchina+easylist.txt: 38911) -.directchat.tv -# ||directadvert.ru^$third-party (easylistchina+easylist.txt: 38910) -.directadvert.ru -# ||digitaldesire.com^$third-party (easylistchina+easylist.txt: 38909) -.digitaldesire.com -# ||desiad.net^$third-party (easylistchina+easylist.txt: 38908) -.desiad.net -# ||depravedwhores.com^$third-party (easylistchina+easylist.txt: 38907) -.depravedwhores.com -# ||depilflash.tv^$third-party (easylistchina+easylist.txt: 38906) -.depilflash.tv -# ||denotyro.com^$third-party (easylistchina+easylist.txt: 38905) -.denotyro.com -# ||demanier.com^$third-party (easylistchina+easylist.txt: 38904) -.demanier.com -# ||deecash.com^$third-party (easylistchina+easylist.txt: 38903) -.deecash.com -# ||dblpmp.com^$third-party (easylistchina+easylist.txt: 38902) -.dblpmp.com -# ||datingidol.com^$third-party (easylistchina+easylist.txt: 38901) -.datingidol.com -# ||datingamateurs.com^$third-party (easylistchina+easylist.txt: 38900) -.datingamateurs.com -# ||datingadnetwork.com^$third-party (easylistchina+easylist.txt: 38899) -.datingadnetwork.com -# ||dating-adv.com^$third-party (easylistchina+easylist.txt: 38898) -.dating-adv.com -# ||datexchanges.net^$third-party (easylistchina+easylist.txt: 38897) -.datexchanges.net -# ||datetraders.com^$third-party (easylistchina+easylist.txt: 38896) -.datetraders.com -# ||datefunclub.com^$third-party (easylistchina+easylist.txt: 38895) -.datefunclub.com -# ||data.13dc235d.xyz^$third-party (easylistchina+easylist.txt: 38894) -.data.13dc235d.xyz -# ||data-ero-advertising.com^$third-party (easylistchina+easylist.txt: 38893) -.data-ero-advertising.com -# ||darangi.ru^$third-party (easylistchina+easylist.txt: 38892) -.darangi.ru -# ||danzabucks.com^$third-party (easylistchina+easylist.txt: 38891) -.danzabucks.com -# ||dana123.com^$third-party (easylistchina+easylist.txt: 38890) -.dana123.com -# ||dallavel.com^$third-party (easylistchina+easylist.txt: 38889) -.dallavel.com -# ||daffaite.com^$third-party (easylistchina+easylist.txt: 38888) -.daffaite.com -# ||d3b3e6340.website^$third-party (easylistchina+easylist.txt: 38887) -.d3b3e6340.website -# ||d29gqcij.com^$third-party (easylistchina+easylist.txt: 38886) -.d29gqcij.com -# ||d0main.ru^$third-party (easylistchina+easylist.txt: 38885) -.d0main.ru -# ||d-agency.net^$third-party (easylistchina+easylist.txt: 38884) -.d-agency.net -# ||cybernetentertainment.com^$third-party (easylistchina+easylist.txt: 38883) -.cybernetentertainment.com -# ||cyberbidhost.com^$third-party (easylistchina+easylist.txt: 38882) -.cyberbidhost.com -# ||cwgads.com^$third-party (easylistchina+easylist.txt: 38881) -.cwgads.com -# ||ctyzd.com^$third-party (easylistchina+easylist.txt: 38880) -.ctyzd.com -# ||crtracklink.com^$third-party (easylistchina+easylist.txt: 38879) -.crtracklink.com -# ||crocoads.com^$third-party (easylistchina+easylist.txt: 38878) -.crocoads.com -# ||creoads.com^$third-party (easylistchina+easylist.txt: 38877) -.creoads.com -# ||crakcash.com^$third-party (easylistchina+easylist.txt: 38876) -.crakcash.com -# ||crakbanner.com^$third-party (easylistchina+easylist.txt: 38875) -.crakbanner.com -# ||cpl1.ru^$third-party (easylistchina+easylist.txt: 38874) -.cpl1.ru -# ||cpacoreg.com^$third-party (easylistchina+easylist.txt: 38873) -.cpacoreg.com -# ||comunicazio.com^$third-party (easylistchina+easylist.txt: 38872) -.comunicazio.com -# ||colpory.com^$third-party (easylistchina+easylist.txt: 38871) -.colpory.com -# ||coloredguitar.com^$third-party (easylistchina+easylist.txt: 38870) -.coloredguitar.com -# ||coldhardcash.com^$third-party (easylistchina+easylist.txt: 38869) -.coldhardcash.com -# ||codelnet.com^$third-party (easylistchina+easylist.txt: 38868) -.codelnet.com -# ||cmdfnow.com^$third-party (easylistchina+easylist.txt: 38867) -.cmdfnow.com -# ||clicktrace.info^$third-party (easylistchina+easylist.txt: 38866) -.clicktrace.info -# ||clickthruserver.com^$third-party (easylistchina+easylist.txt: 38865) -.clickthruserver.com -# ||clicksvenue.com^$third-party (easylistchina+easylist.txt: 38864) -.clicksvenue.com -# ||clickpapa.com^$third-party (easylistchina+easylist.txt: 38863) -.clickpapa.com -# ||clickganic.com^$third-party (easylistchina+easylist.txt: 38862) -.clickganic.com -# ||clearac.com^$third-party (easylistchina+easylist.txt: 38861) -.clearac.com -# ||citysex.com^$third-party (easylistchina+easylist.txt: 38860) -.citysex.com -# ||chopstick16.com^$third-party (easylistchina+easylist.txt: 38859) -.chopstick16.com -# ||chestyry.com^$third-party (easylistchina+easylist.txt: 38858) -.chestyry.com -# ||che-ka.com^$third-party (easylistchina+easylist.txt: 38857) -.che-ka.com -# ||chatischat.com^$third-party (easylistchina+easylist.txt: 38856) -.chatischat.com -# ||cervicalknowledge.info^$third-party (easylistchina+easylist.txt: 38855) -.cervicalknowledge.info -# ||certified-apps.com^$third-party (easylistchina+easylist.txt: 38854) -.certified-apps.com -# ||cennter.com^$third-party (easylistchina+easylist.txt: 38853) -.cennter.com -# ||celogera.com^$third-party (easylistchina+easylist.txt: 38852) -.celogera.com -# ||celeb-ads.com^$third-party (easylistchina+easylist.txt: 38851) -.celeb-ads.com -# ||ceepq.com^$third-party (easylistchina+easylist.txt: 38850) -.ceepq.com -# ||cashtraff.com^$third-party (easylistchina+easylist.txt: 38849) -.cashtraff.com -# ||cashthat.com^$third-party (easylistchina+easylist.txt: 38848) -.cashthat.com -# ||cashlayer.com^$third-party (easylistchina+easylist.txt: 38847) -.cashlayer.com -# ||cash4movie.com^$third-party (easylistchina+easylist.txt: 38846) -.cash4movie.com -# ||cash-program.com^$third-party (easylistchina+easylist.txt: 38845) -.cash-program.com -# ||camzap.com^$third-party (easylistchina+easylist.txt: 38844) -.camzap.com -# ||camsitecash.com^$third-party (easylistchina+easylist.txt: 38843) -.camsitecash.com -# ||camsense.com^$third-party (easylistchina+easylist.txt: 38842) -.camsense.com -# ||campromos.nl^$third-party (easylistchina+easylist.txt: 38841) -.campromos.nl -# ||camprime.com^$third-party (easylistchina+easylist.txt: 38840) -.camprime.com -# ||camplacecash.com^$third-party (easylistchina+easylist.txt: 38839) -.camplacecash.com -# ||campartner.com^$third-party (easylistchina+easylist.txt: 38838) -.campartner.com -# ||camduty.com^$third-party (easylistchina+easylist.txt: 38837) -.camduty.com -# ||camdough.com^$third-party (easylistchina+easylist.txt: 38836) -.camdough.com -# ||camcrush.com^$third-party (easylistchina+easylist.txt: 38835) -.camcrush.com -# ||camads.net^$third-party (easylistchina+easylist.txt: 38834) -.camads.net -# ||cam4flat.com^$third-party (easylistchina+easylist.txt: 38833) -.cam4flat.com -# ||cam-lolita.net^$third-party (easylistchina+easylist.txt: 38832) -.cam-lolita.net -# ||bumskontakte.ch^$third-party (easylistchina+easylist.txt: 38831) -.bumskontakte.ch -# ||bumblecash.com^$third-party (easylistchina+easylist.txt: 38830) -.bumblecash.com -# ||brqvld0p.com^$third-party (easylistchina+easylist.txt: 38829) -.brqvld0p.com -# ||brothersincash.com^$third-party (easylistchina+easylist.txt: 38828) -.brothersincash.com -# ||brightcpm.net^$third-party (easylistchina+easylist.txt: 38827) -.brightcpm.net -# ||branzas.com^$third-party (easylistchina+easylist.txt: 38826) -.branzas.com -# ||bposterss.net^$third-party (easylistchina+easylist.txt: 38825) -.bposterss.net -# ||bookofsex.com^$third-party (easylistchina+easylist.txt: 38824) -.bookofsex.com -# ||boinkcash.com^$third-party (easylistchina+easylist.txt: 38823) -.boinkcash.com -# ||board-books.com^$third-party (easylistchina+easylist.txt: 38822) -.board-books.com -# ||blossoms.com^$third-party (easylistchina+easylist.txt: 38821) -.blossoms.com -# ||black-ghettos.info^$third-party (easylistchina+easylist.txt: 38820) -.black-ghettos.info -# ||biksibo.ru^$third-party (easylistchina+easylist.txt: 38819) -.biksibo.ru -# ||bgmtracker.com^$third-party (easylistchina+easylist.txt: 38818) -.bgmtracker.com -# ||betweendigital.com^$third-party (easylistchina+easylist.txt: 38817) -.betweendigital.com -# ||bestssn.com^$third-party (easylistchina+easylist.txt: 38816) -.bestssn.com -# ||bestholly.com^$third-party (easylistchina+easylist.txt: 38815) -.bestholly.com -# ||belasninfetas.org^$third-party (easylistchina+easylist.txt: 38814) -.belasninfetas.org -# ||belamicash.com^$third-party (easylistchina+easylist.txt: 38813) -.belamicash.com -# ||bcash4you.com^$third-party (easylistchina+easylist.txt: 38812) -.bcash4you.com -# ||baskodenta.com^$third-party (easylistchina+easylist.txt: 38811) -.baskodenta.com -# ||basesclick.ru^$third-party (easylistchina+easylist.txt: 38810) -.basesclick.ru -# ||banerator.net^$third-party (easylistchina+easylist.txt: 38809) -.banerator.net -# ||aztecash.com^$third-party (easylistchina+easylist.txt: 38808) -.aztecash.com -# ||azerbazer.com^$third-party (easylistchina+easylist.txt: 38807) -.azerbazer.com -# ||ax47mp-xp-21.com^$third-party (easylistchina+easylist.txt: 38806) -.ax47mp-xp-21.com -# ||awmpartners.com^$third-party (easylistchina+easylist.txt: 38805) -.awmpartners.com -# ||awmcenter.eu^$third-party (easylistchina+easylist.txt: 38804) -.awmcenter.eu -# ||augrenso.com^$third-party (easylistchina+easylist.txt: 38803) -.augrenso.com -# ||asiafriendfinder.com^$third-party (easylistchina+easylist.txt: 38802) -.asiafriendfinder.com -# ||are-ter.com^$third-party (easylistchina+easylist.txt: 38801) -.are-ter.com -# ||apromoweb.com^$third-party (easylistchina+easylist.txt: 38800) -.apromoweb.com -# ||antoball.com^$third-party (easylistchina+easylist.txt: 38799) -.antoball.com -# ||antaraimedia.com^$third-party (easylistchina+easylist.txt: 38798) -.antaraimedia.com -# ||angelpastel.com^$third-party (easylistchina+easylist.txt: 38797) -.angelpastel.com -# ||anastasia-international.com^$third-party (easylistchina+easylist.txt: 38796) -.anastasia-international.com -# ||amvotes.ru^$third-party (easylistchina+easylist.txt: 38795) -.amvotes.ru -# ||amtracking01.com^$third-party (easylistchina+easylist.txt: 38794) -.amtracking01.com -# ||allotraffic.com^$third-party (easylistchina+easylist.txt: 38793) -.allotraffic.com -# ||allosponsor.com^$third-party (easylistchina+easylist.txt: 38792) -.allosponsor.com -# ||alladultcash.com^$third-party (easylistchina+easylist.txt: 38791) -.alladultcash.com -# ||all-about-tech.com^$third-party (easylistchina+easylist.txt: 38790) -.all-about-tech.com -# ||alfatraffic.com^$third-party (easylistchina+easylist.txt: 38789) -.alfatraffic.com -# ||aipmedia.com^$third-party (easylistchina+easylist.txt: 38788) -.aipmedia.com -# ||aipbannerx.com^$third-party (easylistchina+easylist.txt: 38787) -.aipbannerx.com -# ||affiligay.net^$third-party (easylistchina+easylist.txt: 38786) -.affiligay.net -# ||affiliaxe.com^$third-party (easylistchina+easylist.txt: 38785) -.affiliaxe.com -# ||affiliation-int.com^$third-party (easylistchina+easylist.txt: 38784) -.affiliation-int.com -# ||affiliatewindow.com^$third-party (easylistchina+easylist.txt: 38783) -.affiliatewindow.com -# ||aeesy.com^$third-party (easylistchina+easylist.txt: 38782) -.aeesy.com -# ||adzs.com^$third-party (easylistchina+easylist.txt: 38781) -.adzs.com -# ||adxregie.com^$third-party (easylistchina+easylist.txt: 38780) -.adxregie.com -# ||adxpansion.com^$third-party (easylistchina+easylist.txt: 38779) -.adxpansion.com -# ||adxmarket.com^$third-party (easylistchina+easylist.txt: 38778) -.adxmarket.com -# ||adxite.com^$third-party (easylistchina+easylist.txt: 38777) -.adxite.com -# ||advsense.info^$third-party (easylistchina+easylist.txt: 38776) -.advsense.info -# ||advredir.com^$third-party (easylistchina+easylist.txt: 38775) -.advredir.com -# ||advprotraffic.com^$third-party (easylistchina+easylist.txt: 38774) -.advprotraffic.com -# ||advmania.com^$third-party (easylistchina+easylist.txt: 38773) -.advmania.com -# ||advmaker.ru^$third-party (easylistchina+easylist.txt: 38772) -.advmaker.ru -# ||advertrtb.com^$third-party (easylistchina+easylist.txt: 38771) -.advertrtb.com -# ||advertom.com^$third-party (easylistchina+easylist.txt: 38770) -.advertom.com -# ||advertisingsex.com^$third-party (easylistchina+easylist.txt: 38769) -.advertisingsex.com -# ||adventory.com^$third-party (easylistchina+easylist.txt: 38768) -.adventory.com -# ||adv777.com^$third-party (easylistchina+easylist.txt: 38767) -.adv777.com -# ||adv-plus.com^$third-party (easylistchina+easylist.txt: 38766) -.adv-plus.com -# ||adulttubetraffic.com^$third-party (easylistchina+easylist.txt: 38765) -.adulttubetraffic.com -# ||adulttiz.com^$third-party (easylistchina+easylist.txt: 38764) -.adulttiz.com -# ||adultsense.org^$third-party (easylistchina+easylist.txt: 38763) -.adultsense.org -# ||adultsense.com^$third-party (easylistchina+easylist.txt: 38762) -.adultsense.com -# ||adultpopunders.com^$third-party (easylistchina+easylist.txt: 38761) -.adultpopunders.com -# ||adultoafiliados.com.br^$third-party (easylistchina+easylist.txt: 38760) -.adultoafiliados.com.br -# ||adultmoviegroup.com^$third-party (easylistchina+easylist.txt: 38759) -.adultmoviegroup.com -# ||adultmediabuying.com^$third-party (easylistchina+easylist.txt: 38758) -.adultmediabuying.com -# ||adultlinkexchange.com^$third-party (easylistchina+easylist.txt: 38757) -.adultlinkexchange.com -# ||adultdatingtraffic.com^$third-party (easylistchina+easylist.txt: 38756) -.adultdatingtraffic.com -# ||adultcommercial.net^$third-party (easylistchina+easylist.txt: 38755) -.adultcommercial.net -# ||adultadvertising.net^$third-party (easylistchina+easylist.txt: 38754) -.adultadvertising.net -# ||adultadmedia.com^$third-party (easylistchina+easylist.txt: 38753) -.adultadmedia.com -# ||adultaccessnow.com^$third-party (easylistchina+easylist.txt: 38752) -.adultaccessnow.com -# ||adult3dcomics.com^$third-party (easylistchina+easylist.txt: 38751) -.adult3dcomics.com -# ||adsyst.biz^$third-party (easylistchina+easylist.txt: 38750) -.adsyst.biz -# ||adskape.ru^$third-party (easylistchina+easylist.txt: 38749) -.adskape.ru -# ||adshostview.com^$third-party (easylistchina+easylist.txt: 38748) -.adshostview.com -# ||adsgangsta.com^$third-party (easylistchina+easylist.txt: 38747) -.adsgangsta.com -# ||adsbr.info^$third-party (easylistchina+easylist.txt: 38746) -.adsbr.info -# ||adrent.net^$third-party (easylistchina+easylist.txt: 38745) -.adrent.net -# ||adpron.com^$third-party (easylistchina+easylist.txt: 38744) -.adpron.com -# ||adperiun.com^$third-party (easylistchina+easylist.txt: 38743) -.adperiun.com -# ||adparad.net^$third-party (easylistchina+easylist.txt: 38742) -.adparad.net -# ||adnetxchange.com^$third-party (easylistchina+easylist.txt: 38741) -.adnetxchange.com -# ||admez.com^$third-party (easylistchina+easylist.txt: 38740) -.admez.com -# ||adlook.net^$third-party (easylistchina+easylist.txt: 38739) -.adlook.net -# ||adjunky.com^$third-party (easylistchina+easylist.txt: 38738) -.adjunky.com -# ||adfux.com^$third-party (easylistchina+easylist.txt: 38737) -.adfux.com -# ||addbags.com^$third-party (easylistchina+easylist.txt: 38736) -.addbags.com -# ||adcell.de^$third-party (easylistchina+easylist.txt: 38735) -.adcell.de -# ||adbmi.com^$third-party (easylistchina+easylist.txt: 38734) -.adbmi.com -# ||adbars.net^$third-party (easylistchina+easylist.txt: 38733) -.adbars.net -# ||ad4partners.com^$third-party (easylistchina+easylist.txt: 38732) -.ad4partners.com -# ||ad001.ru^$third-party (easylistchina+easylist.txt: 38731) -.ad001.ru -# ||ad-u.com^$third-party (easylistchina+easylist.txt: 38730) -.ad-u.com -# ||ad-411.com^$third-party (easylistchina+easylist.txt: 38729) -.ad-411.com -# ||actionlocker.com^$third-party (easylistchina+easylist.txt: 38728) -.actionlocker.com -# ||acnescarsx.info^$third-party (easylistchina+easylist.txt: 38727) -.acnescarsx.info -# ||acmexxx.com^$third-party (easylistchina+easylist.txt: 38726) -.acmexxx.com -# ||abusedbabysitters.com^$third-party (easylistchina+easylist.txt: 38725) -.abusedbabysitters.com -# ||abgeobalancer.com^$third-party (easylistchina+easylist.txt: 38724) -.abgeobalancer.com -# ||abakys.ru^$third-party (easylistchina+easylist.txt: 38723) -.abakys.ru -# ||ab4tn.com^$third-party (easylistchina+easylist.txt: 38722) -.ab4tn.com -# ||aaovn.info^$third-party (easylistchina+easylist.txt: 38721) -.aaovn.info -# ||8ipztcc1.com^$third-party (easylistchina+easylist.txt: 38720) -.8ipztcc1.com -# ||89.248.172.46^$third-party (easylistchina+easylist.txt: 38719) -.89.248.172.46 -# ||85.17.210.202^$third-party (easylistchina+easylist.txt: 38718) -.85.17.210.202 -# ||80.77.113.200^$third-party (easylistchina+easylist.txt: 38717) -.80.77.113.200 -# ||7vws1j1j.com^$third-party (easylistchina+easylist.txt: 38716) -.7vws1j1j.com -# ||7cxcrejm.com^$third-party (easylistchina+easylist.txt: 38715) -.7cxcrejm.com -# ||777partners.com^$third-party (easylistchina+easylist.txt: 38714) -.777partners.com -# ||777partner.net^$third-party (easylistchina+easylist.txt: 38713) -.777partner.net -# ||777partner.com^$third-party (easylistchina+easylist.txt: 38712) -.777partner.com -# ||777-partners.net^$third-party (easylistchina+easylist.txt: 38711) -.777-partners.net -# ||777-partners.com^$third-party (easylistchina+easylist.txt: 38710) -.777-partners.com -# ||777-partner.net^$third-party (easylistchina+easylist.txt: 38709) -.777-partner.net -# ||777-partner.com^$third-party (easylistchina+easylist.txt: 38708) -.777-partner.com -# ||76.76.5.113^$third-party (easylistchina+easylist.txt: 38707) -.76.76.5.113 -# ||750industries.com^$third-party (easylistchina+easylist.txt: 38706) -.750industries.com -# ||699fy4ne.com^$third-party (easylistchina+easylist.txt: 38705) -.699fy4ne.com -# ||59zs1xei.com^$third-party (easylistchina+easylist.txt: 38704) -.59zs1xei.com -# ||4link.it^$third-party (easylistchina+easylist.txt: 38703) -.4link.it -# ||45i73jv6.com^$third-party (easylistchina+easylist.txt: 38702) -.45i73jv6.com -# ||40xbfzk8.com^$third-party (easylistchina+easylist.txt: 38701) -.40xbfzk8.com -# ||33traffic.com^$third-party (easylistchina+easylist.txt: 38700) -.33traffic.com -# ||24x7adservice.com^$third-party (easylistchina+easylist.txt: 38699) -.24x7adservice.com -# ||24smile.org^$third-party (easylistchina+easylist.txt: 38698) -.24smile.org -# ||247teencash.net^$third-party (easylistchina+easylist.txt: 38697) -.247teencash.net -# ||21sexturycash.com^$third-party (easylistchina+easylist.txt: 38696) -.21sexturycash.com -# ||212.150.34.117^$third-party (easylistchina+easylist.txt: 38695) -.212.150.34.117 -# ||206.217.206.137^$third-party (easylistchina+easylist.txt: 38694) -.206.217.206.137 -# ||1tizer.com^$third-party (easylistchina+easylist.txt: 38693) -.1tizer.com -# ||1loop.com^$third-party (easylistchina+easylist.txt: 38692) -.1loop.com -# ||195.228.74.26^$third-party (easylistchina+easylist.txt: 38691) -.195.228.74.26 -# ||18naked.com^$third-party (easylistchina+easylist.txt: 38690) -.18naked.com -# ||15yomodels.com^$third-party (easylistchina+easylist.txt: 38688) -.15yomodels.com -# ||123advertising.nl^$third-party (easylistchina+easylist.txt: 38687) -.123advertising.nl -# ||10y5gehv.com^$third-party (easylistchina+easylist.txt: 38686) -.10y5gehv.com -# ||100pour.com^$third-party (easylistchina+easylist.txt: 38685) -.100pour.com -# ||0llii0g6.com^$third-party (easylistchina+easylist.txt: 38684) -.0llii0g6.com -# ||zeroredirect1.com^$popup,third-party (easylistchina+easylist.txt: 38682) -.zeroredirect1.com -# ||zedo.com^$popup,third-party (easylistchina+easylist.txt: 38681) -.zedo.com -# ||z5x.net^$popup,third-party (easylistchina+easylist.txt: 38680) -.z5x.net -# ||yupiromo.ru^$popup,third-party (easylistchina+easylist.txt: 38679) -.yupiromo.ru -# ||yieldtraffic.com^$popup,third-party (easylistchina+easylist.txt: 38678) -.yieldtraffic.com -# ||yieldmanager.com^$popup,third-party (easylistchina+easylist.txt: 38677) -.yieldmanager.com -# ||xtendmedia.com^$popup,third-party (easylistchina+easylist.txt: 38676) -.xtendmedia.com -# ||xclicks.net^$popup,third-party (easylistchina+easylist.txt: 38675) -.xclicks.net -# ||xaxoro.com^$popup,third-party (easylistchina+easylist.txt: 38674) -.xaxoro.com -# ||wzus1.ask.com^$popup,third-party (easylistchina+easylist.txt: 38673) -.wzus1.ask.com -# ||wwwpromoter.com^$popup,third-party (easylistchina+easylist.txt: 38672) -.wwwpromoter.com -# ||worldrewardcenter.net^$popup,third-party (easylistchina+easylist.txt: 38671) -.worldrewardcenter.net -# ||wonderlandads.com^$popup,third-party (easylistchina+easylist.txt: 38670) -.wonderlandads.com -# ||wigetmedia.com^$popup,third-party (easylistchina+easylist.txt: 38669) -.wigetmedia.com -# ||whoads.net^$popup,third-party (easylistchina+easylist.txt: 38668) -.whoads.net -# ||weliketofuckstrangers.com^$popup,third-party (easylistchina+easylist.txt: 38667) -.weliketofuckstrangers.com -# ||webtrackerplus.com^$popup,third-party (easylistchina+easylist.txt: 38666) -.webtrackerplus.com -# ||websearchers.net^$popup,third-party (easylistchina+easylist.txt: 38665) -.websearchers.net -# ||weareheard.org^$popup,third-party (easylistchina+easylist.txt: 38664) -.weareheard.org -# ||wbsadsdel2.com^$popup,third-party (easylistchina+easylist.txt: 38663) -.wbsadsdel2.com -# ||wbsadsdel.com^$popup,third-party (easylistchina+easylist.txt: 38662) -.wbsadsdel.com -# ||wahoha.com^$popup,third-party (easylistchina+easylist.txt: 38661) -.wahoha.com -# ||waframedia5.com^$popup,third-party (easylistchina+easylist.txt: 38660) -.waframedia5.com -# ||w4statistics.info^$popup,third-party (easylistchina+easylist.txt: 38659) -.w4statistics.info -# ||vprmnwbskk.com^$popup,third-party (easylistchina+easylist.txt: 38658) -.vprmnwbskk.com -# ||vipcpms.com^$popup,third-party (easylistchina+easylist.txt: 38657) -.vipcpms.com -# ||vgsgaming-ads.com^$popup,third-party (easylistchina+easylist.txt: 38656) -.vgsgaming-ads.com -# ||updater-checker.net^$popup,third-party (easylistchina+easylist.txt: 38655) -.updater-checker.net -# ||twqiqiang.com^$popup,third-party (easylistchina+easylist.txt: 38654) -.twqiqiang.com -# ||tvas-b.pw^$popup,third-party (easylistchina+easylist.txt: 38653) -.tvas-b.pw -# ||tvas-a.pw^$popup,third-party (easylistchina+easylist.txt: 38652) -.tvas-a.pw -# ||tutvp.com^$popup,third-party (easylistchina+easylist.txt: 38651) -.tutvp.com -# ||trw12.com^$popup,third-party (easylistchina+easylist.txt: 38650) -.trw12.com -# ||trklnks.com^$popup,third-party (easylistchina+easylist.txt: 38649) -.trklnks.com -# ||traffichaus.com^$popup,third-party (easylistchina+easylist.txt: 38648) -.traffichaus.com -# ||trafficforce.com^$popup,third-party (easylistchina+easylist.txt: 38647) -.trafficforce.com -# ||tracki112.com^$popup,third-party (easylistchina+easylist.txt: 38646) -.tracki112.com -# ||totrack.ru^$popup,third-party (easylistchina+easylist.txt: 38645) -.totrack.ru -# ||totaladperformance.com^$popup,third-party (easylistchina+easylist.txt: 38644) -.totaladperformance.com -# ||toroadvertisingmedia.com^$popup,third-party (easylistchina+easylist.txt: 38643) -.toroadvertisingmedia.com -# ||topshelftraffic.com^$popup,third-party (easylistchina+easylist.txt: 38642) -.topshelftraffic.com -# ||tonefuse.com^$popup,third-party (easylistchina+easylist.txt: 38641) -.tonefuse.com -# ||tjoomo.com^$popup,third-party (easylistchina+easylist.txt: 38640) -.tjoomo.com -# ||therewardsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38639) -.therewardsurvey.com -# ||thepornsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38638) -.thepornsurvey.com -# ||the-consumer-reporter.org^$popup,third-party (easylistchina+easylist.txt: 38637) -.the-consumer-reporter.org -# ||the-binary-trader.biz^$popup,third-party (easylistchina+easylist.txt: 38636) -.the-binary-trader.biz -# ||textsrv.com^$popup,third-party (easylistchina+easylist.txt: 38635) -.textsrv.com -# ||terraclicks.com^$popup,third-party (easylistchina+easylist.txt: 38634) -.terraclicks.com -# ||technicssurveys.info^$popup,third-party (easylistchina+easylist.txt: 38633) -.technicssurveys.info -# ||techcloudtrk.com^$popup,third-party (easylistchina+easylist.txt: 38632) -.techcloudtrk.com -# ||td563.com^$popup,third-party (easylistchina+easylist.txt: 38631) -.td563.com -# ||syncedvision.com^$popup,third-party (easylistchina+easylist.txt: 38630) -.syncedvision.com -# ||symkashop.ru^$popup,third-party (easylistchina+easylist.txt: 38629) -.symkashop.ru -# ||swadvertising.org^$popup,third-party (easylistchina+easylist.txt: 38628) -.swadvertising.org -# ||surveystope.com^$popup,third-party (easylistchina+easylist.txt: 38627) -.surveystope.com -# ||surveyspaid.com^$popup,third-party (easylistchina+easylist.txt: 38626) -.surveyspaid.com -# ||surveysforgifts.org^$popup,third-party (easylistchina+easylist.txt: 38625) -.surveysforgifts.org -# ||surveyend.com^$popup,third-party (easylistchina+easylist.txt: 38624) -.surveyend.com -# ||statstrackeronline.com^$popup,third-party (easylistchina+easylist.txt: 38623) -.statstrackeronline.com -# ||statsmobi.com^$popup,third-party (easylistchina+easylist.txt: 38622) -.statsmobi.com -# ||stabletrappeddevote.info^$popup,third-party (easylistchina+easylist.txt: 38621) -.stabletrappeddevote.info -# ||srvpub.com^$popup,third-party (easylistchina+easylist.txt: 38620) -.srvpub.com -# ||srv2trking.com^$popup,third-party (easylistchina+easylist.txt: 38619) -.srv2trking.com -# ||srv-ad.com^$popup,third-party (easylistchina+easylist.txt: 38618) -.srv-ad.com -# ||sparkstudios.com^$popup,third-party (easylistchina+easylist.txt: 38617) -.sparkstudios.com -# ||smutty.com^$popup,third-party (easylistchina+easylist.txt: 38616) -.smutty.com -# ||sms-mmm.com^$popup,third-party (easylistchina+easylist.txt: 38615) -.sms-mmm.com -# ||smartwebads.com^$popup,third-party (easylistchina+easylist.txt: 38614) -.smartwebads.com -# ||slimspots.com^$popup,third-party (easylistchina+easylist.txt: 38613) -.slimspots.com -# ||slikslik.com^$popup,third-party (easylistchina+easylist.txt: 38612) -.slikslik.com -# ||singlesexdates.com^$popup,third-party (easylistchina+easylist.txt: 38611) -.singlesexdates.com -# ||simpleinternetupdate.com^$popup,third-party (easylistchina+easylist.txt: 38610) -.simpleinternetupdate.com -# ||silstavo.com^$popup,third-party (easylistchina+easylist.txt: 38609) -.silstavo.com -# ||sexitnow.com^$popup,third-party (easylistchina+easylist.txt: 38608) -.sexitnow.com -# ||servingit.co^$popup,third-party (easylistchina+easylist.txt: 38607) -.servingit.co -# ||serving-sys.com^$popup,third-party (easylistchina+easylist.txt: 38606) -.serving-sys.com -# ||senzapudore.it^$popup,third-party (easylistchina+easylist.txt: 38605) -.senzapudore.it -# ||secureintl.com^$popup,third-party (easylistchina+easylist.txt: 38604) -.secureintl.com -# ||rubikon6.if.ua^$popup,third-party (easylistchina+easylist.txt: 38603) -.rubikon6.if.ua -# ||roulettebotplus.com^$popup,third-party (easylistchina+easylist.txt: 38602) -.roulettebotplus.com -# ||ronetu.ru^$popup,third-party (easylistchina+easylist.txt: 38601) -.ronetu.ru -# ||ringtonepartner.com^$popup,third-party (easylistchina+easylist.txt: 38600) -.ringtonepartner.com -# ||ringtonematcher.com^$popup,third-party (easylistchina+easylist.txt: 38599) -.ringtonematcher.com -# ||rikhov.ru^$popup,third-party (easylistchina+easylist.txt: 38598) -.rikhov.ru -# ||rgadvert.com^$popup,third-party (easylistchina+easylist.txt: 38597) -.rgadvert.com -# ||retkow.com^$popup,third-party (easylistchina+easylist.txt: 38596) -.retkow.com -# ||rehok.km.ua^$popup,third-party (easylistchina+easylist.txt: 38595) -.rehok.km.ua -# ||rdsrv.com^$popup,third-party (easylistchina+easylist.txt: 38594) -.rdsrv.com -# ||ratari.ru^$popup,third-party (easylistchina+easylist.txt: 38593) -.ratari.ru -# ||raoplenort.biz^$popup,third-party (easylistchina+easylist.txt: 38592) -.raoplenort.biz -# ||pwrads.net^$popup,third-party (easylistchina+easylist.txt: 38591) -.pwrads.net -# ||pureadexchange.com^$popup,third-party (easylistchina+easylist.txt: 38590) -.pureadexchange.com -# ||pulse360.com^$popup,third-party (easylistchina+easylist.txt: 38589) -.pulse360.com -# ||pubted.com^$popup,third-party (easylistchina+easylist.txt: 38588) -.pubted.com -# ||pubdirecte.com^$popup,third-party (easylistchina+easylist.txt: 38587) -.pubdirecte.com -# ||pubads.g.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38586) -.pubads.g.doubleclick.net -# ||prowlerz.com^$popup,third-party (easylistchina+easylist.txt: 38585) -.prowlerz.com -# ||propellerpops.com^$popup,third-party (easylistchina+easylist.txt: 38584) -.propellerpops.com -# ||propellerads.com^$popup,third-party (easylistchina+easylist.txt: 38583) -.propellerads.com -# ||promotions.sportsbet.com.au^$popup,third-party (easylistchina+easylist.txt: 38582) -.promotions.sportsbet.com.au -# ||promotions-paradise.org^$popup,third-party (easylistchina+easylist.txt: 38581) -.promotions-paradise.org -# ||prizegiveaway.org^$popup,third-party (easylistchina+easylist.txt: 38580) -.prizegiveaway.org -# ||print3.info^$popup,third-party (easylistchina+easylist.txt: 38579) -.print3.info -# ||poponclick.com^$popup,third-party (easylistchina+easylist.txt: 38578) -.poponclick.com -# ||popmyads.com^$popup,third-party (easylistchina+easylist.txt: 38577) -.popmyads.com -# ||popads.net^$popup,third-party (easylistchina+easylist.txt: 38576) -.popads.net -# ||pomofon.ru^$popup,third-party (easylistchina+easylist.txt: 38575) -.pomofon.ru -# ||pointroll.com^$popup,third-party (easylistchina+easylist.txt: 38574) -.pointroll.com -# ||pointclicktrack.com^$popup,third-party (easylistchina+easylist.txt: 38573) -.pointclicktrack.com -# ||plsdrct2.me^$popup,third-party (easylistchina+easylist.txt: 38572) -.plsdrct2.me -# ||plexop.net^$popup,third-party (easylistchina+easylist.txt: 38571) -.plexop.net -# ||pipaoffers.com^$popup,third-party (easylistchina+easylist.txt: 38570) -.pipaoffers.com -# ||pgmediaserve.com^$popup,third-party (easylistchina+easylist.txt: 38569) -.pgmediaserve.com -# ||pexu.com^$popup,third-party (easylistchina+easylist.txt: 38568) -.pexu.com -# ||perfcreatives.com^$popup,third-party (easylistchina+easylist.txt: 38567) -.perfcreatives.com -# ||pdfcomplete.com^$popup,third-party (easylistchina+easylist.txt: 38566) -.pdfcomplete.com -# ||partypills.org^$popup,third-party (easylistchina+easylist.txt: 38565) -.partypills.org -# ||oxybe.com^$popup,third-party (easylistchina+easylist.txt: 38564) -.oxybe.com -# ||overturs.com^$popup,third-party (easylistchina+easylist.txt: 38563) -.overturs.com -# ||openadserving.com^$popup,third-party (easylistchina+easylist.txt: 38562) -.openadserving.com -# ||open-downloads.net^$popup,third-party (easylistchina+easylist.txt: 38561) -.open-downloads.net -# ||onlinecashmethod.com^$popup,third-party (easylistchina+easylist.txt: 38560) -.onlinecashmethod.com -# ||onlinecareerpackage.com^$popup,third-party (easylistchina+easylist.txt: 38559) -.onlinecareerpackage.com -# ||onhitads.net^$popup,third-party (easylistchina+easylist.txt: 38558) -.onhitads.net -# ||onclickads.net^$popup,third-party (easylistchina+easylist.txt: 38557) -.onclickads.net -# ||onad.eu^$popup,third-party (easylistchina+easylist.txt: 38556) -.onad.eu -# ||o333o.com^$popup,third-party (easylistchina+easylist.txt: 38555) -.o333o.com -# ||nymphdate.com^$popup,third-party (easylistchina+easylist.txt: 38554) -.nymphdate.com -# ||nturveev.com^$popup,third-party (easylistchina+easylist.txt: 38553) -.nturveev.com -# ||netliker.com^$popup,third-party (easylistchina+easylist.txt: 38552) -.netliker.com -# ||n388hkxg.com^$popup,third-party (easylistchina+easylist.txt: 38551) -.n388hkxg.com -# ||my-layer.net^$popup,third-party (easylistchina+easylist.txt: 38550) -.my-layer.net -# ||moneytec.com^$popup,third-party (easylistchina+easylist.txt: 38549) -.moneytec.com -# ||mobileraffles.com^$popup,third-party (easylistchina+easylist.txt: 38548) -.mobileraffles.com -# ||mktmobi.com^$popup,third-party (easylistchina+easylist.txt: 38547) -.mktmobi.com -# ||millionairesurveys.com^$popup,third-party (easylistchina+easylist.txt: 38546) -.millionairesurveys.com -# ||metodoroleta24h.com^$popup,third-party (easylistchina+easylist.txt: 38545) -.metodoroleta24h.com -# ||menepe.com^$popup,third-party (easylistchina+easylist.txt: 38544) -.menepe.com -# ||megapopads.com^$popup,third-party (easylistchina+easylist.txt: 38543) -.megapopads.com -# ||meetsexygirls.org^$popup,third-party (easylistchina+easylist.txt: 38542) -.meetsexygirls.org -# ||meetgoodgirls.com^$popup,third-party (easylistchina+easylist.txt: 38541) -.meetgoodgirls.com -# ||mediaseeding.com^$popup,third-party (easylistchina+easylist.txt: 38540) -.mediaseeding.com -# ||media-servers.net^$popup,third-party (easylistchina+easylist.txt: 38539) -.media-servers.net -# ||media-app.com^$popup,third-party (easylistchina+easylist.txt: 38538) -.media-app.com -# ||mdn2015x1.com^$popup,third-party (easylistchina+easylist.txt: 38537) -.mdn2015x1.com -# ||marketresearchglobal.com^$popup,third-party (easylistchina+easylist.txt: 38536) -.marketresearchglobal.com -# ||maomaotang.com^$popup,third-party (easylistchina+easylist.txt: 38535) -.maomaotang.com -# ||m57ku6sm.com^$popup,third-party (easylistchina+easylist.txt: 38534) -.m57ku6sm.com -# ||lustigbanner.com^$popup,third-party (easylistchina+easylist.txt: 38533) -.lustigbanner.com -# ||lnkgt.com^$popup,third-party (easylistchina+easylist.txt: 38532) -.lnkgt.com -# ||lmebxwbsno.com^$popup,third-party (easylistchina+easylist.txt: 38531) -.lmebxwbsno.com -# ||liversely.net^$popup,third-party (easylistchina+easylist.txt: 38530) -.liversely.net -# ||livepromotools.com^$popup,third-party (easylistchina+easylist.txt: 38529) -.livepromotools.com -# ||livechatflirt.com^$popup,third-party (easylistchina+easylist.txt: 38528) -.livechatflirt.com -# ||ligatus.com^$popup,third-party (easylistchina+easylist.txt: 38527) -.ligatus.com -# ||letshareus.com^$popup,third-party (easylistchina+easylist.txt: 38526) -.letshareus.com -# ||legisland.net^$popup,third-party (easylistchina+easylist.txt: 38525) -.legisland.net -# ||landsraad.cc^$popup,third-party (easylistchina+easylist.txt: 38524) -.landsraad.cc -# ||kanoodle.com^$popup,third-party (easylistchina+easylist.txt: 38523) -.kanoodle.com -# ||junbi-tracker.com^$popup,third-party (easylistchina+easylist.txt: 38522) -.junbi-tracker.com -# ||jujzh9va.com^$popup,third-party (easylistchina+easylist.txt: 38521) -.jujzh9va.com -# ||jdtracker.com^$popup,third-party (easylistchina+easylist.txt: 38520) -.jdtracker.com -# ||integral-marketing.com^$popup,third-party (easylistchina+easylist.txt: 38519) -.integral-marketing.com -# ||instantpaydaynetwork.com^$popup,third-party (easylistchina+easylist.txt: 38518) -.instantpaydaynetwork.com -# ||insta-cash.net^$popup,third-party (easylistchina+easylist.txt: 38517) -.insta-cash.net -# ||indianweeklynews.com^$popup,third-party (easylistchina+easylist.txt: 38516) -.indianweeklynews.com -# ||inbinaryoption.com^$popup,third-party (easylistchina+easylist.txt: 38514) -.inbinaryoption.com -# ||ilividnewtab.com^$popup,third-party (easylistchina+easylist.txt: 38513) -.ilividnewtab.com -# ||iiasdomk1m9812m4z3.com^$popup,third-party (easylistchina+easylist.txt: 38512) -.iiasdomk1m9812m4z3.com -# ||ifilez.org^$popup,third-party (easylistchina+easylist.txt: 38511) -.ifilez.org -# ||hstpnetwork.com^$popup,third-party (easylistchina+easylist.txt: 38510) -.hstpnetwork.com -# ||hotchatdirect.com^$popup,third-party (easylistchina+easylist.txt: 38509) -.hotchatdirect.com -# ||hornygirlsexposed.com^$popup,third-party (easylistchina+easylist.txt: 38508) -.hornygirlsexposed.com -# ||homecareerforyou1.info^$popup,third-party (easylistchina+easylist.txt: 38507) -.homecareerforyou1.info -# ||hilltopads.net^$popup,third-party (easylistchina+easylist.txt: 38506) -.hilltopads.net -# ||highcpms.com^$popup,third-party (easylistchina+easylist.txt: 38505) -.highcpms.com -# ||hd-plugin.com^$popup,third-party (easylistchina+easylist.txt: 38504) -.hd-plugin.com -# ||gsniper2.com^$popup,third-party (easylistchina+easylist.txt: 38503) -.gsniper2.com -# ||greatbranddeals.com^$popup,third-party (easylistchina+easylist.txt: 38502) -.greatbranddeals.com -# ||gotoplaymillion.com^$popup,third-party (easylistchina+easylist.txt: 38501) -.gotoplaymillion.com -# ||googleads.g.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38500) -.googleads.g.doubleclick.net -# ||gofindmedia.net^$popup,third-party (easylistchina+easylist.txt: 38499) -.gofindmedia.net -# ||giveaways.club^$popup,third-party (easylistchina+easylist.txt: 38498) -.giveaways.club -# ||gib-gib-la.com^$popup,third-party (easylistchina+easylist.txt: 38497) -.gib-gib-la.com -# ||ganja.com^$popup,third-party (easylistchina+easylist.txt: 38496) -.ganja.com -# ||g05.info^$popup,third-party (easylistchina+easylist.txt: 38495) -.g05.info -# ||frtya.com^$popup,third-party (easylistchina+easylist.txt: 38494) -.frtya.com -# ||friendlyduck.com^$popup,third-party (easylistchina+easylist.txt: 38493) -.friendlyduck.com -# ||fmdwbsfxf0.com^$popup,third-party (easylistchina+easylist.txt: 38492) -.fmdwbsfxf0.com -# ||firstmediahub.com^$popup,third-party (easylistchina+easylist.txt: 38491) -.firstmediahub.com -# ||firstclass-download.com^$popup,third-party (easylistchina+easylist.txt: 38490) -.firstclass-download.com -# ||findonlinesurveysforcash.com^$popup,third-party (easylistchina+easylist.txt: 38489) -.findonlinesurveysforcash.com -# ||finance-reporting.org^$popup,third-party (easylistchina+easylist.txt: 38488) -.finance-reporting.org -# ||filestube.com^$popup,third-party (easylistchina+easylist.txt: 38487) -.filestube.com -# ||fidel.to^$popup,third-party (easylistchina+easylist.txt: 38486) -.fidel.to -# ||fhserve.com^$popup,third-party (easylistchina+easylist.txt: 38485) -.fhserve.com -# ||f-questionnaire.com^$popup,third-party (easylistchina+easylist.txt: 38484) -.f-questionnaire.com -# ||f-hookups.com^$popup,third-party (easylistchina+easylist.txt: 38483) -.f-hookups.com -# ||ezdownloadpro.info^$popup,third-party (easylistchina+easylist.txt: 38482) -.ezdownloadpro.info -# ||exoclick.com^$popup,third-party (easylistchina+easylist.txt: 38481) -.exoclick.com -# ||ewebse.com^$popup,third-party (easylistchina+easylist.txt: 38480) -.ewebse.com -# ||euromillionairesystem.me^$popup,third-party (easylistchina+easylist.txt: 38479) -.euromillionairesystem.me -# ||eroanalysis.com^$popup,third-party (easylistchina+easylist.txt: 38478) -.eroanalysis.com -# ||epicgameads.com^$popup,third-party (easylistchina+easylist.txt: 38477) -.epicgameads.com -# ||ebzkswbs78.com^$popup,third-party (easylistchina+easylist.txt: 38476) -.ebzkswbs78.com -# ||easykits.org^$popup,third-party (easylistchina+easylist.txt: 38475) -.easykits.org -# ||easydownloadnow.com^$popup,third-party (easylistchina+easylist.txt: 38474) -.easydownloadnow.com -# ||durokuro.com^$popup,third-party (easylistchina+easylist.txt: 38473) -.durokuro.com -# ||downloadthesefile.com^$popup,third-party (easylistchina+easylist.txt: 38472) -.downloadthesefile.com -# ||downloadboutique.com^$popup,third-party (easylistchina+easylist.txt: 38471) -.downloadboutique.com -# ||down1oads.com^$popup,third-party (easylistchina+easylist.txt: 38470) -.down1oads.com -# ||doublepimp.com^$popup,third-party (easylistchina+easylist.txt: 38469) -.doublepimp.com -# ||dojerena.com^$popup,third-party (easylistchina+easylist.txt: 38468) -.dojerena.com -# ||distantstat.com^$popup,third-party (easylistchina+easylist.txt: 38467) -.distantstat.com -# ||distantnews.com^$popup,third-party (easylistchina+easylist.txt: 38466) -.distantnews.com -# ||directrev.com^$popup,third-party (easylistchina+easylist.txt: 38465) -.directrev.com -# ||denza.pro^$popup,third-party (easylistchina+easylist.txt: 38464) -.denza.pro -# ||crazyad.net^$popup,third-party (easylistchina+easylist.txt: 38463) -.crazyad.net -# ||cpvadvertise.com^$popup,third-party (easylistchina+easylist.txt: 38462) -.cpvadvertise.com -# ||cpmterra.com^$popup,third-party (easylistchina+easylist.txt: 38461) -.cpmterra.com -# ||cpmstar.com^$popup,third-party (easylistchina+easylist.txt: 38460) -.cpmstar.com -# ||cpayard.com^$popup,third-party (easylistchina+easylist.txt: 38459) -.cpayard.com -# ||contractallsinstance.info^$popup,third-party (easylistchina+easylist.txt: 38458) -.contractallsinstance.info -# ||contentabc.com^$popup,third-party (easylistchina+easylist.txt: 38457) -.contentabc.com -# ||computersoftwarelive.com^$popup,third-party (easylistchina+easylist.txt: 38456) -.computersoftwarelive.com -# ||cmllk2.info^$popup,third-party (easylistchina+easylist.txt: 38455) -.cmllk2.info -# ||clpremdo.com^$popup,third-party (easylistchina+easylist.txt: 38454) -.clpremdo.com -# ||cloudtracked.com^$popup,third-party (easylistchina+easylist.txt: 38453) -.cloudtracked.com -# ||clkrev.com^$popup,third-party (easylistchina+easylist.txt: 38452) -.clkrev.com -# ||clkmon.com^$popup,third-party (easylistchina+easylist.txt: 38451) -.clkmon.com -# ||clkads.com^$popup,third-party (easylistchina+easylist.txt: 38450) -.clkads.com -# ||clicktripz.com^$popup,third-party (easylistchina+easylist.txt: 38449) -.clicktripz.com -# ||clickter.net^$popup,third-party (easylistchina+easylist.txt: 38448) -.clickter.net -# ||clicksvenue.com^$popup,third-party (easylistchina+easylist.txt: 38447) -.clicksvenue.com -# ||clicksor.com^$popup,third-party (easylistchina+easylist.txt: 38446) -.clicksor.com -# ||clickosmedia.com^$popup,third-party (easylistchina+easylist.txt: 38445) -.clickosmedia.com -# ||clickmngr.com^$popup,third-party (easylistchina+easylist.txt: 38444) -.clickmngr.com -# ||clickfuse.com^$popup,third-party (easylistchina+easylist.txt: 38443) -.clickfuse.com -# ||casino.betsson.com^$popup,third-party (easylistchina+easylist.txt: 38442) -.casino.betsson.com -# ||careerjournalonline.com^$popup (easylistchina+easylist.txt: 38441) -.careerjournalonline.com -# ||callhelpmetaroll.rocks^$popup,third-party (easylistchina+easylist.txt: 38440) -.callhelpmetaroll.rocks -# ||bzrvwbsh5o.com^$popup,third-party (easylistchina+easylist.txt: 38439) -.bzrvwbsh5o.com -# ||brandreachsys.com^$popup,third-party (easylistchina+easylist.txt: 38438) -.brandreachsys.com -# ||bonzuna.com^$popup,third-party (easylistchina+easylist.txt: 38437) -.bonzuna.com -# ||bongacams.com^$popup,third-party (easylistchina+easylist.txt: 38436) -.bongacams.com -# ||blogscash.info^$popup,third-party (easylistchina+easylist.txt: 38435) -.blogscash.info -# ||blockthis.es^$popup,third-party (easylistchina+easylist.txt: 38434) -.blockthis.es -# ||blinkogold.es^$popup,third-party (easylistchina+easylist.txt: 38433) -.blinkogold.es -# ||blinko.es^$popup,third-party (easylistchina+easylist.txt: 38432) -.blinko.es -# ||binaryoptionsgame.com^$popup,third-party (easylistchina+easylist.txt: 38431) -.binaryoptionsgame.com -# ||bighot.ru^$popup,third-party (easylistchina+easylist.txt: 38430) -.bighot.ru -# ||bidvertiser.com^$popup,third-party (easylistchina+easylist.txt: 38429) -.bidvertiser.com -# ||bidsystem.com^$popup,third-party (easylistchina+easylist.txt: 38428) -.bidsystem.com -# ||bestproducttesters.com^$popup,third-party (easylistchina+easylist.txt: 38427) -.bestproducttesters.com -# ||best-zb.com^$popup,third-party (easylistchina+easylist.txt: 38426) -.best-zb.com -# ||bentdownload.com^$popup,third-party (easylistchina+easylist.txt: 38425) -.bentdownload.com -# ||becoquins.net^$popup,third-party (easylistchina+easylist.txt: 38424) -.becoquins.net -# ||becoquin.com^$popup,third-party (easylistchina+easylist.txt: 38423) -.becoquin.com -# ||bbuni.com^$popup,third-party (easylistchina+easylist.txt: 38422) -.bbuni.com -# ||baypops.com^$popup,third-party (easylistchina+easylist.txt: 38421) -.baypops.com -# ||awsclic.com^$popup,third-party (easylistchina+easylist.txt: 38420) -.awsclic.com -# ||awempire.com^$popup,third-party (easylistchina+easylist.txt: 38419) -.awempire.com -# ||avalopaly.com^$popup,third-party (easylistchina+easylist.txt: 38418) -.avalopaly.com -# ||august15download.com^$popup,third-party (easylistchina+easylist.txt: 38417) -.august15download.com -# ||ar.voicefive.com^$popup,third-party (easylistchina+easylist.txt: 38416) -.ar.voicefive.com -# ||answered-questions.com^$popup,third-party (easylistchina+easylist.txt: 38415) -.answered-questions.com -# ||annualinternetsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38414) -.annualinternetsurvey.com -# ||angege.com^$popup,third-party (easylistchina+easylist.txt: 38413) -.angege.com -# ||am10.ru^$popup,third-party (easylistchina+easylist.txt: 38412) -.am10.ru -# ||alternads.info^$popup,third-party (easylistchina+easylist.txt: 38411) -.alternads.info -# ||alpinedrct.com^$popup,third-party (easylistchina+easylist.txt: 38410) -.alpinedrct.com -# ||allsporttv.com^$popup,third-party (easylistchina+easylist.txt: 38409) -.allsporttv.com -# ||allslotscasino.com^$popup,third-party (easylistchina+easylist.txt: 38408) -.allslotscasino.com -# ||aflrm.com^$popup,third-party (easylistchina+easylist.txt: 38407) -.aflrm.com -# ||affbuzzads.com^$popup,third-party (easylistchina+easylist.txt: 38406) -.affbuzzads.com -# ||advmedialtd.com^$popup,third-party (easylistchina+easylist.txt: 38405) -.advmedialtd.com -# ||advertserve.com^$popup,third-party (easylistchina+easylist.txt: 38404) -.advertserve.com -# ||adtraffic.org^$popup,third-party (easylistchina+easylist.txt: 38403) -.adtraffic.org -# ||adtrace.org^$popup,third-party (easylistchina+easylist.txt: 38402) -.adtrace.org -# ||adsurve.com^$popup,third-party (easylistchina+easylist.txt: 38401) -.adsurve.com -# ||adsupplyads.com^$popup,third-party (easylistchina+easylist.txt: 38400) -.adsupplyads.com -# ||adsupply.com^$popup,third-party (easylistchina+easylist.txt: 38399) -.adsupply.com -# ||adsmarket.com^$popup,third-party (easylistchina+easylist.txt: 38398) -.adsmarket.com -# ||adshostnet.com^$popup,third-party (easylistchina+easylist.txt: 38397) -.adshostnet.com -# ||adserverplus.com^$popup,third-party (easylistchina+easylist.txt: 38396) -.adserverplus.com -# ||ads.sexier.com^$popup,third-party (easylistchina+easylist.txt: 38395) -.ads.sexier.com -# ||adplxmd.com^$popup,third-party (easylistchina+easylist.txt: 38394) -.adplxmd.com -# ||adonweb.ru^$popup,third-party (easylistchina+easylist.txt: 38393) -.adonweb.ru -# ||adnxs.com^$popup,third-party (easylistchina+easylist.txt: 38392) -.adnxs.com -# ||adnetworkperformance.com^$popup,third-party (easylistchina+easylist.txt: 38391) -.adnetworkperformance.com -# ||adlure.net^$popup,third-party (easylistchina+easylist.txt: 38390) -.adlure.net -# ||adk2x.com^$popup,third-party (easylistchina+easylist.txt: 38389) -.adk2x.com -# ||adk2.net^$popup,third-party (easylistchina+easylist.txt: 38388) -.adk2.net -# ||adk2.com^$popup,third-party (easylistchina+easylist.txt: 38387) -.adk2.com -# ||adk2.co^$popup,third-party (easylistchina+easylist.txt: 38386) -.adk2.co -# ||adjuggler.net^$popup,third-party (easylistchina+easylist.txt: 38385) -.adjuggler.net -# ||aditor.com^$popup,third-party (easylistchina+easylist.txt: 38384) -.aditor.com -# ||adimps.com^$popup,third-party (easylistchina+easylist.txt: 38383) -.adimps.com -# ||adform.net^$popup,third-party (easylistchina+easylist.txt: 38382) -.adform.net -# ||adfarm.mediaplex.com^$popup,third-party (easylistchina+easylist.txt: 38381) -.adfarm.mediaplex.com -# ||adcdnx.com^$popup,third-party (easylistchina+easylist.txt: 38380) -.adcdnx.com -# ||adcash.com^$popup,third-party (easylistchina+easylist.txt: 38379) -.adcash.com -# ||adbma.com^$popup,third-party (easylistchina+easylist.txt: 38378) -.adbma.com -# ||ad4game.com^$popup,third-party (easylistchina+easylist.txt: 38377) -.ad4game.com -# ||ad2games.com^$popup,third-party (easylistchina+easylist.txt: 38376) -.ad2games.com -# ||ad2387.com^$popup,third-party (easylistchina+easylist.txt: 38375) -.ad2387.com -# ||ad131m.com^$popup,third-party (easylistchina+easylist.txt: 38374) -.ad131m.com -# ||ad.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38373) -.ad.doubleclick.net -# ||ad-feeds.com^$popup,third-party (easylistchina+easylist.txt: 38372) -.ad-feeds.com -# ||ad-emea.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38371) -.ad-emea.doubleclick.net -# ||ad-apac.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38370) -.ad-apac.doubleclick.net -# ||absoluteclickscom.com^$popup,third-party (easylistchina+easylist.txt: 38369) -.absoluteclickscom.com -# ||abbeyblog.me^$popup,third-party (easylistchina+easylist.txt: 38368) -.abbeyblog.me -# ||9newstoday.net^$popup,third-party (easylistchina+easylist.txt: 38367) -.9newstoday.net -# ||888promos.com^$popup,third-party (easylistchina+easylist.txt: 38366) -.888promos.com -# ||888poker.com^$popup,third-party (easylistchina+easylist.txt: 38365) -.888poker.com -# ||888media.net^$popup,third-party (easylistchina+easylist.txt: 38364) -.888media.net -# ||888games.com^$popup,third-party (easylistchina+easylist.txt: 38363) -.888games.com -# ||888casino.com^$popup,third-party (easylistchina+easylist.txt: 38362) -.888casino.com -# ||83nsdjqqo1cau183xz.com^$popup,third-party (easylistchina+easylist.txt: 38361) -.83nsdjqqo1cau183xz.com -# ||5dimes.com^$popup,third-party (easylistchina+easylist.txt: 38360) -.5dimes.com -# ||4dsply.com^$popup,third-party (easylistchina+easylist.txt: 38359) -.4dsply.com -# ||360adstrack.com^$popup,third-party (easylistchina+easylist.txt: 38358) -.360adstrack.com -# ||360adshost.net^$popup,third-party (easylistchina+easylist.txt: 38357) -.360adshost.net -# ||32d1d3b9c.se^$popup,third-party (easylistchina+easylist.txt: 38356) -.32d1d3b9c.se -# ||30daychange.co^$popup,third-party (easylistchina+easylist.txt: 38355) -.30daychange.co -# ||2mdn.info^$popup,third-party (easylistchina+easylist.txt: 38354) -.2mdn.info -# ||1phads.com^$popup,third-party (easylistchina+easylist.txt: 38353) -.1phads.com -# ||1afcfcb2c.ninja^$popup,third-party (easylistchina+easylist.txt: 38352) -.1afcfcb2c.ninja -# ||123vidz.com^$popup,third-party (easylistchina+easylist.txt: 38351) -.123vidz.com -# ||zrfrornn.net^$third-party (easylistchina+easylist.txt: 38349) -.zrfrornn.net -# ||zomri.net^$third-party (easylistchina+easylist.txt: 38348) -.zomri.net -# ||ziccardia.com^$third-party (easylistchina+easylist.txt: 38347) -.ziccardia.com -# ||z4pick.com^$third-party (easylistchina+easylist.txt: 38346) -.z4pick.com -# ||yuasaghn.com^$third-party (easylistchina+easylist.txt: 38345) -.yuasaghn.com -# ||yrrrbn.me^$third-party (easylistchina+easylist.txt: 38344) -.yrrrbn.me -# ||ypprr.com^$third-party (easylistchina+easylist.txt: 38343) -.ypprr.com -# ||ypppdc.com^$third-party (easylistchina+easylist.txt: 38342) -.ypppdc.com -# ||yopdi.com^$third-party (easylistchina+easylist.txt: 38341) -.yopdi.com -# ||yomri.net^$third-party (easylistchina+easylist.txt: 38340) -.yomri.net -# ||yodr.net^$third-party (easylistchina+easylist.txt: 38339) -.yodr.net -# ||yobr.net^$third-party (easylistchina+easylist.txt: 38338) -.yobr.net -# ||yardr.net^$third-party (easylistchina+easylist.txt: 38337) -.yardr.net -# ||xylopologyn.com^$third-party (easylistchina+easylist.txt: 38336) -.xylopologyn.com -# ||xplrer.co^$third-party (easylistchina+easylist.txt: 38335) -.xplrer.co -# ||xcrsqg.com^$third-party (easylistchina+easylist.txt: 38334) -.xcrsqg.com -# ||wudr.net^$third-party (easylistchina+easylist.txt: 38333) -.wudr.net -# ||wuatriser.net^$third-party (easylistchina+easylist.txt: 38332) -.wuatriser.net -# ||wuarnurf.net^$third-party (easylistchina+easylist.txt: 38331) -.wuarnurf.net -# ||wopdi.com^$third-party (easylistchina+easylist.txt: 38330) -.wopdi.com -# ||wensdteuy.com^$third-party (easylistchina+easylist.txt: 38329) -.wensdteuy.com -# ||waddr.com^$third-party (easylistchina+easylist.txt: 38328) -.waddr.com -# ||vuadiolgy.net^$third-party (easylistchina+easylist.txt: 38327) -.vuadiolgy.net -# ||vopdi.com^$third-party (easylistchina+easylist.txt: 38326) -.vopdi.com -# ||virsualr.com^$third-party (easylistchina+easylist.txt: 38325) -.virsualr.com -# ||viewscout.com^$third-party (easylistchina+easylist.txt: 38324) -.viewscout.com -# ||v8bridge.link^$third-party (easylistchina+easylist.txt: 38323) -.v8bridge.link -# ||username1.link^$third-party (easylistchina+easylist.txt: 38322) -.username1.link -# ||uppo.co^$third-party (easylistchina+easylist.txt: 38321) -.uppo.co -# ||unuarvse.net^$third-party (easylistchina+easylist.txt: 38320) -.unuarvse.net -# ||tualipoly.net^$third-party (easylistchina+easylist.txt: 38319) -.tualipoly.net -# ||trndi.net^$third-party (easylistchina+easylist.txt: 38318) -.trndi.net -# ||trllxv.co^$third-party (easylistchina+easylist.txt: 38317) -.trllxv.co -# ||topdi.net^$third-party (easylistchina+easylist.txt: 38316) -.topdi.net -# ||tolosgrey.net^$third-party (easylistchina+easylist.txt: 38315) -.tolosgrey.net -# ||thrilamd.net^$third-party (easylistchina+easylist.txt: 38314) -.thrilamd.net -# ||thiscdn.com^$third-party (easylistchina+easylist.txt: 38313) -.thiscdn.com -# ||th4wwe.net^$third-party (easylistchina+easylist.txt: 38312) -.th4wwe.net -# ||t7row.com^$third-party (easylistchina+easylist.txt: 38311) -.t7row.com -# ||t3sort.com^$third-party (easylistchina+easylist.txt: 38310) -.t3sort.com -# ||sxrrxa.net^$third-party (easylistchina+easylist.txt: 38309) -.sxrrxa.net -# ||spoa-soard.com^$third-party (easylistchina+easylist.txt: 38308) -.spoa-soard.com -# ||splazards.com^$third-party (easylistchina+easylist.txt: 38307) -.splazards.com -# ||spereminf.com^$third-party (easylistchina+easylist.txt: 38306) -.spereminf.com -# ||simusangr.com^$third-party (easylistchina+easylist.txt: 38305) -.simusangr.com -# ||sfesd.net^$third-party (easylistchina+easylist.txt: 38304) -.sfesd.net -# ||selectr.net^$third-party (easylistchina+easylist.txt: 38303) -.selectr.net -# ||rugistratuan.com^$third-party (easylistchina+easylist.txt: 38302) -.rugistratuan.com -# ||rugistoto.net^$third-party (easylistchina+easylist.txt: 38301) -.rugistoto.net -# ||rterdf.me^$third-party (easylistchina+easylist.txt: 38300) -.rterdf.me -# ||rlex.org^$third-party (easylistchina+easylist.txt: 38299) -.rlex.org -# ||rigistrar.net^$third-party (easylistchina+easylist.txt: 38298) -.rigistrar.net -# ||rhgersf.com^$third-party (easylistchina+easylist.txt: 38297) -.rhgersf.com -# ||regersd.net^$third-party (easylistchina+easylist.txt: 38296) -.regersd.net -# ||rdige.com^$third-party (easylistchina+easylist.txt: 38295) -.rdige.com -# ||r3seek.com^$third-party (easylistchina+easylist.txt: 38294) -.r3seek.com -# ||qzsccm.com^$third-party (easylistchina+easylist.txt: 38293) -.qzsccm.com -# ||qewa33a.com^$third-party (easylistchina+easylist.txt: 38292) -.qewa33a.com -# ||q3sift.com^$third-party (easylistchina+easylist.txt: 38291) -.q3sift.com -# ||prndi.net^$third-party (easylistchina+easylist.txt: 38290) -.prndi.net -# ||prfffc.info^$third-party (easylistchina+easylist.txt: 38289) -.prfffc.info -# ||polawrg.com^$third-party (easylistchina+easylist.txt: 38288) -.polawrg.com -# ||pikkr.net^$third-party (easylistchina+easylist.txt: 38287) -.pikkr.net -# ||p7vortex.com^$third-party (easylistchina+easylist.txt: 38286) -.p7vortex.com -# ||opner.co^$third-party (easylistchina+easylist.txt: 38285) -.opner.co -# ||oplo.org^$third-party (easylistchina+easylist.txt: 38284) -.oplo.org -# ||nuaknamg.net^$third-party (easylistchina+easylist.txt: 38283) -.nuaknamg.net -# ||nrfort.com^$third-party (easylistchina+easylist.txt: 38282) -.nrfort.com -# ||maningrs.com^$third-party (easylistchina+easylist.txt: 38281) -.maningrs.com -# ||luadcik.com^$third-party (easylistchina+easylist.txt: 38280) -.luadcik.com -# ||loopr.co^$third-party (easylistchina+easylist.txt: 38279) -.loopr.co -# ||lirte.org^$third-party (easylistchina+easylist.txt: 38278) -.lirte.org -# ||lia-ndr.com^$third-party (easylistchina+easylist.txt: 38277) -.lia-ndr.com -# ||lesuard.com^$third-party (easylistchina+easylist.txt: 38276) -.lesuard.com -# ||leanoisgo.com^$third-party (easylistchina+easylist.txt: 38275) -.leanoisgo.com -# ||kuangard.net^$third-party (easylistchina+easylist.txt: 38274) -.kuangard.net -# ||knoandr.com^$third-party (easylistchina+easylist.txt: 38273) -.knoandr.com -# ||kioshow.com^$third-party (easylistchina+easylist.txt: 38272) -.kioshow.com -# ||kilomonj.net^$third-party (easylistchina+easylist.txt: 38271) -.kilomonj.net -# ||jusukrs.com^$third-party (easylistchina+easylist.txt: 38270) -.jusukrs.com -# ||juruasikr.net^$third-party (easylistchina+easylist.txt: 38269) -.juruasikr.net -# ||jellr.net^$third-party (easylistchina+easylist.txt: 38268) -.jellr.net -# ||jdrm4.com^$third-party (easylistchina+easylist.txt: 38267) -.jdrm4.com -# ||jaspensar.com^$third-party (easylistchina+easylist.txt: 38266) -.jaspensar.com -# ||ivism.org^$third-party (easylistchina+easylist.txt: 38265) -.ivism.org -# ||iunbrudy.net^$third-party (easylistchina+easylist.txt: 38264) -.iunbrudy.net -# ||ignup.com^$third-party (easylistchina+easylist.txt: 38263) -.ignup.com -# ||hoppr.co^$third-party (easylistchina+easylist.txt: 38262) -.hoppr.co -# ||holmgard.link^$third-party (easylistchina+easylist.txt: 38261) -.holmgard.link -# ||hobri.net^$third-party (easylistchina+easylist.txt: 38260) -.hobri.net -# ||heizuanubr.net^$third-party (easylistchina+easylist.txt: 38259) -.heizuanubr.net -# ||havnr.com^$third-party (easylistchina+easylist.txt: 38258) -.havnr.com -# ||hapnr.net^$third-party (easylistchina+easylist.txt: 38257) -.hapnr.net -# ||gusufrs.me^$third-party (easylistchina+easylist.txt: 38256) -.gusufrs.me -# ||gghfncd.net^$third-party (easylistchina+easylist.txt: 38255) -.gghfncd.net -# ||fuandarst.com^$third-party (easylistchina+easylist.txt: 38254) -.fuandarst.com -# ||frxrydv.com^$third-party (easylistchina+easylist.txt: 38253) -.frxrydv.com -# ||frxle.com^$third-party (easylistchina+easylist.txt: 38252) -.frxle.com -# ||fowar.net^$third-party (easylistchina+easylist.txt: 38251) -.fowar.net -# ||foulsomty.com^$third-party (easylistchina+easylist.txt: 38250) -.foulsomty.com -# ||flaurse.net^$third-party (easylistchina+easylist.txt: 38249) -.flaurse.net -# ||flaudnrs.me^$third-party (easylistchina+easylist.txt: 38248) -.flaudnrs.me -# ||faunsts.me^$third-party (easylistchina+easylist.txt: 38247) -.faunsts.me -# ||extonsuan.com^$third-party (easylistchina+easylist.txt: 38246) -.extonsuan.com -# ||exlpor.com^$third-party (easylistchina+easylist.txt: 38245) -.exlpor.com -# ||exernala.com^$third-party (easylistchina+easylist.txt: 38244) -.exernala.com -# ||excolobar.com^$third-party (easylistchina+easylist.txt: 38243) -.excolobar.com -# ||exciliburn.com^$third-party (easylistchina+easylist.txt: 38242) -.exciliburn.com -# ||exactly0r.com^$third-party (easylistchina+easylist.txt: 38241) -.exactly0r.com -# ||esults.net^$third-party (easylistchina+easylist.txt: 38240) -.esults.net -# ||ershgrst.com^$third-party (easylistchina+easylist.txt: 38239) -.ershgrst.com -# ||ergers.net^$third-party (easylistchina+easylist.txt: 38238) -.ergers.net -# ||entru.co^$third-party (easylistchina+easylist.txt: 38237) -.entru.co -# ||elepheny.com^$third-party (easylistchina+easylist.txt: 38236) -.elepheny.com -# ||edabl.net^$third-party (easylistchina+easylist.txt: 38235) -.edabl.net -# ||dutolats.net^$third-party (easylistchina+easylist.txt: 38234) -.dutolats.net -# ||duactinor.net^$third-party (easylistchina+easylist.txt: 38233) -.duactinor.net -# ||drfflt.info^$third-party (easylistchina+easylist.txt: 38232) -.drfflt.info -# ||draugonda.net^$third-party (easylistchina+easylist.txt: 38231) -.draugonda.net -# ||doumantr.com^$third-party (easylistchina+easylist.txt: 38230) -.doumantr.com -# ||domri.net^$third-party (easylistchina+easylist.txt: 38229) -.domri.net -# ||dilpy.org^$third-party (easylistchina+easylist.txt: 38228) -.dilpy.org -# ||diabolicaf.com^$third-party (easylistchina+easylist.txt: 38227) -.diabolicaf.com -# ||deuskex.link^$third-party (easylistchina+easylist.txt: 38226) -.deuskex.link -# ||d3lens.com^$third-party (easylistchina+easylist.txt: 38225) -.d3lens.com -# ||crhikay.me^$third-party (easylistchina+easylist.txt: 38224) -.crhikay.me -# ||cotnr.com^$third-party (easylistchina+easylist.txt: 38223) -.cotnr.com -# ||contentr.net^$third-party (easylistchina+easylist.txt: 38222) -.contentr.net -# ||contentolyze.net^$third-party (easylistchina+easylist.txt: 38221) -.contentolyze.net -# ||compoter.net^$third-party (easylistchina+easylist.txt: 38220) -.compoter.net -# ||coaterhand.net^$third-party (easylistchina+easylist.txt: 38219) -.coaterhand.net -# ||chualangry.com^$third-party (easylistchina+easylist.txt: 38218) -.chualangry.com -# ||chiuawa.net^$third-party (easylistchina+easylist.txt: 38217) -.chiuawa.net -# ||chansiar.net^$third-party (easylistchina+easylist.txt: 38216) -.chansiar.net -# ||casiours.com^$third-party (easylistchina+easylist.txt: 38215) -.casiours.com -# ||c8factor.com^$third-party (easylistchina+easylist.txt: 38214) -.c8factor.com -# ||buoalait.com^$third-party (easylistchina+easylist.txt: 38213) -.buoalait.com -# ||buhafr.net^$third-party (easylistchina+easylist.txt: 38212) -.buhafr.net -# ||buatongz.net^$third-party (easylistchina+easylist.txt: 38211) -.buatongz.net -# ||boafernd.com^$third-party (easylistchina+easylist.txt: 38210) -.boafernd.com -# ||bluazard.net^$third-party (easylistchina+easylist.txt: 38209) -.bluazard.net -# ||blipi.net^$third-party (easylistchina+easylist.txt: 38208) -.blipi.net -# ||bliankerd.net^$third-party (easylistchina+easylist.txt: 38207) -.bliankerd.net -# ||blazwuatr.com^$third-party (easylistchina+easylist.txt: 38206) -.blazwuatr.com -# ||blaundorz.com^$third-party (easylistchina+easylist.txt: 38205) -.blaundorz.com -# ||biastoful.net^$third-party (easylistchina+easylist.txt: 38204) -.biastoful.net -# ||biankord.net^$third-party (easylistchina+easylist.txt: 38203) -.biankord.net -# ||baungarnr.com^$third-party (easylistchina+easylist.txt: 38202) -.baungarnr.com -# ||batarsur.com^$third-party (easylistchina+easylist.txt: 38201) -.batarsur.com -# ||baordrid.com^$third-party (easylistchina+easylist.txt: 38200) -.baordrid.com -# ||artbr.net^$third-party (easylistchina+easylist.txt: 38199) -.artbr.net -# ||appr8.net^$third-party (easylistchina+easylist.txt: 38198) -.appr8.net -# ||anomiely.com^$third-party (easylistchina+easylist.txt: 38197) -.anomiely.com -# ||allianrd.net^$third-party (easylistchina+easylist.txt: 38196) -.allianrd.net -# ||advuatianf.com^$third-party (easylistchina+easylist.txt: 38195) -.advuatianf.com -# ||addo-mnton.com^$third-party (easylistchina+easylist.txt: 38194) -.addo-mnton.com -# ||accmndtion.org^$third-party (easylistchina+easylist.txt: 38193) -.accmndtion.org -# ||atresadvertising.com^$third-party (easylistchina+easylist.txt: 38191) -.atresadvertising.com -# ||adhood.com^$third-party (easylistchina+easylist.txt: 38190) -.adhood.com -# ||yieldmo.com^$third-party (easylistchina+easylist.txt: 38188) -.yieldmo.com -# ||waptrick.com^$third-party (easylistchina+easylist.txt: 38187) -.waptrick.com -# ||wapdollar.in^$third-party (easylistchina+easylist.txt: 38186) -.wapdollar.in -# ||vungle.com^$third-party (easylistchina+easylist.txt: 38185) -.vungle.com -# ||tapjoyads.com^$third-party (easylistchina+easylist.txt: 38184) -.tapjoyads.com -# ||stepkeydo.com^$third-party (easylistchina+easylist.txt: 38183) -.stepkeydo.com -# ||startappexchange.com^$third-party (easylistchina+easylist.txt: 38182) -.startappexchange.com -# ||smaato.net^$third-party (easylistchina+easylist.txt: 38181) -.smaato.net -# ||sascdn.com^$third-party (easylistchina+easylist.txt: 38180) -.sascdn.com -# ||mysearch-online.com^$third-party (easylistchina+easylist.txt: 38179) -.mysearch-online.com -# ||mojiva.com^$third-party (easylistchina+easylist.txt: 38178) -.mojiva.com -# ||mocean.mobi^$third-party (easylistchina+easylist.txt: 38177) -.mocean.mobi -# ||mobpartner.mobi^$third-party (easylistchina+easylist.txt: 38176) -.mobpartner.mobi -# ||mobizme.net^$third-party (easylistchina+easylist.txt: 38175) -.mobizme.net -# ||mobgold.com^$third-party (easylistchina+easylist.txt: 38174) -.mobgold.com -# ||mkhoj.com^$third-party (easylistchina+easylist.txt: 38173) -.mkhoj.com -# ||millennialmedia.com^$third-party (easylistchina+easylist.txt: 38172) -.millennialmedia.com -# ||mad-adz.com^$third-party (easylistchina+easylist.txt: 38171) -.mad-adz.com -# ||kuad.kusogi.com^$third-party (easylistchina+easylist.txt: 38170) -.kuad.kusogi.com -# ||inmobi.com^$third-party (easylistchina+easylist.txt: 38169) -.inmobi.com -# ||greystripe.com^$third-party (easylistchina+easylist.txt: 38168) -.greystripe.com -# ||doubleclick.net^*/pfadx/app.ytpwatch.$third-party (easylistchina+easylist.txt: 38167) -.doubleclick.net/.*/pfadx/app\.ytpwatch\. -# ||dmg-mobile.com^$third-party (easylistchina+easylist.txt: 38166) -.dmg-mobile.com -# ||buxx.mobi^$third-party (easylistchina+easylist.txt: 38165) -.buxx.mobi -# ||appads.com^$third-party (easylistchina+easylist.txt: 38164) -.appads.com -# ||amobee.com^$third-party (easylistchina+easylist.txt: 38163) -.amobee.com -# ||airpush.com^$third-party (easylistchina+easylist.txt: 38162) -.airpush.com -# ||adzmob.com^$third-party (easylistchina+easylist.txt: 38161) -.adzmob.com -# ||adwired.mobi^$third-party (easylistchina+easylist.txt: 38160) -.adwired.mobi -# ||adwhirl.com^$third-party (easylistchina+easylist.txt: 38159) -.adwhirl.com -# ||admob.com^$third-party (easylistchina+easylist.txt: 38158) -.admob.com -# ||adiquity.com^$third-party (easylistchina+easylist.txt: 38157) -.adiquity.com -# ||adcolony.com^$third-party (easylistchina+easylist.txt: 38156) -.adcolony.com -# ||adbuddiz.com^$third-party (easylistchina+easylist.txt: 38155) -.adbuddiz.com -# ||zypenetwork.com^$third-party (easylistchina+easylist.txt: 38153) -.zypenetwork.com -# ||zyiis.net^$third-party (easylistchina+easylist.txt: 38152) -.zyiis.net -# ||zxxds.net^$third-party (easylistchina+easylist.txt: 38151) -.zxxds.net -# ||zwaar.org^$third-party (easylistchina+easylist.txt: 38150) -.zwaar.org -# ||zugo.com^$third-party (easylistchina+easylist.txt: 38149) -.zugo.com -# ||zoomdirect.com.au^$third-party (easylistchina+easylist.txt: 38148) -.zoomdirect.com.au -# ||zonplug.com^$third-party (easylistchina+easylist.txt: 38147) -.zonplug.com -# ||zonealta.com^$third-party (easylistchina+easylist.txt: 38146) -.zonealta.com -# ||zompmedia.com^$third-party (easylistchina+easylist.txt: 38145) -.zompmedia.com -# ||zoglafi.info^$third-party (easylistchina+easylist.txt: 38144) -.zoglafi.info -# ||znaptag.com^$third-party (easylistchina+easylist.txt: 38143) -.znaptag.com -# ||zipropyl.com^$third-party (easylistchina+easylist.txt: 38142) -.zipropyl.com -# ||ziffdavis.com^$third-party (easylistchina+easylist.txt: 38141) -.ziffdavis.com -# ||zidae.com^$third-party (easylistchina+easylist.txt: 38140) -.zidae.com -# ||zferral.com^$third-party (easylistchina+easylist.txt: 38139) -.zferral.com -# ||zeropark.com^$third-party (easylistchina+easylist.txt: 38138) -.zeropark.com -# ||zerezas.com^$third-party (easylistchina+easylist.txt: 38137) -.zerezas.com -# ||zercstas.com^$third-party (easylistchina+easylist.txt: 38136) -.zercstas.com -# ||zenoviagroup.com^$third-party (easylistchina+easylist.txt: 38135) -.zenoviagroup.com -# ||zenoviaexchange.com^$third-party (easylistchina+easylist.txt: 38134) -.zenoviaexchange.com -# ||zeesiti.com^$third-party (easylistchina+easylist.txt: 38133) -.zeesiti.com -# ||zedo.com^$third-party (easylistchina+easylist.txt: 38132) -.zedo.com -# ||zeads.com^$third-party (easylistchina+easylist.txt: 38131) -.zeads.com -# ||zde-engage.com^$third-party (easylistchina+easylist.txt: 38130) -.zde-engage.com -# ||zapunited.com^$third-party (easylistchina+easylist.txt: 38129) -.zapunited.com -# ||zappy.co.za^$third-party (easylistchina+easylist.txt: 38128) -.zappy.co.za -# ||zaparena.com^$third-party (easylistchina+easylist.txt: 38127) -.zaparena.com -# ||zanox.com/ppv/$third-party (easylistchina+easylist.txt: 38126) -.zanox.com/ppv/ -# ||zanox-affiliate.de/ppv/$third-party (easylistchina+easylist.txt: 38125) -.zanox-affiliate.de/ppv/ -# ||zangocash.com^$third-party (easylistchina+easylist.txt: 38124) -.zangocash.com -# ||z5x.net^$third-party (easylistchina+easylist.txt: 38123) -.z5x.net -# ||z-defense.com^$third-party (easylistchina+easylist.txt: 38122) -.z-defense.com -# ||yzus09by.com^$third-party (easylistchina+easylist.txt: 38121) -.yzus09by.com -# ||yzrnur.com^$third-party (easylistchina+easylist.txt: 38120) -.yzrnur.com -# ||yz56lywd.com^$third-party (easylistchina+easylist.txt: 38119) -.yz56lywd.com -# ||yvoria.com^$third-party (easylistchina+easylist.txt: 38118) -.yvoria.com -# ||yupfiles.net^$third-party (easylistchina+easylist.txt: 38117) -.yupfiles.net -# ||yumenetworks.com^$third-party (easylistchina+easylist.txt: 38116) -.yumenetworks.com -# ||yucce.com^$third-party (easylistchina+easylist.txt: 38115) -.yucce.com -# ||yuarth.com^$third-party (easylistchina+easylist.txt: 38114) -.yuarth.com -# ||ytsa.net^$third-party (easylistchina+easylist.txt: 38113) -.ytsa.net -# ||yourquickads.com^$third-party (easylistchina+easylist.txt: 38112) -.yourquickads.com -# ||yourfastpaydayloans.com^$third-party (easylistchina+easylist.txt: 38111) -.yourfastpaydayloans.com -# ||youradexchange.com^$third-party (easylistchina+easylist.txt: 38110) -.youradexchange.com -# ||your-tornado-file.org^$third-party (easylistchina+easylist.txt: 38109) -.your-tornado-file.org -# ||your-tornado-file.com^$third-party (easylistchina+easylist.txt: 38108) -.your-tornado-file.com -# ||youlouk.com^$third-party (easylistchina+easylist.txt: 38107) -.youlouk.com -# ||youlamedia.com^$third-party (easylistchina+easylist.txt: 38106) -.youlamedia.com -# ||youcandoitwithroi.com^$third-party (easylistchina+easylist.txt: 38105) -.youcandoitwithroi.com -# ||yottacash.com^$third-party (easylistchina+easylist.txt: 38104) -.yottacash.com -# ||yoc-adserver.com^$third-party (easylistchina+easylist.txt: 38103) -.yoc-adserver.com -# ||ymads.com^$third-party (easylistchina+easylist.txt: 38102) -.ymads.com -# ||yllix.com^$third-party (easylistchina+easylist.txt: 38101) -.yllix.com -# ||yldmgrimg.net^$third-party (easylistchina+easylist.txt: 38100) -.yldmgrimg.net -# ||yldbt.com^$third-party (easylistchina+easylist.txt: 38099) -.yldbt.com -# ||yieldx.com^$third-party (easylistchina+easylist.txt: 38098) -.yieldx.com -# ||yieldselect.com^$third-party (easylistchina+easylist.txt: 38097) -.yieldselect.com -# ||yieldoptimizer.com^$third-party (easylistchina+easylist.txt: 38096) -.yieldoptimizer.com -# ||yieldmanager.net^$third-party (easylistchina+easylist.txt: 38095) -.yieldmanager.net -# ||yieldmanager.com^$third-party (easylistchina+easylist.txt: 38094) -.yieldmanager.com -# ||yieldlab.net^$third-party (easylistchina+easylist.txt: 38093) -.yieldlab.net -# ||yieldkit.com^$third-party (easylistchina+easylist.txt: 38092) -.yieldkit.com -# ||yieldbuild.com^$third-party (easylistchina+easylist.txt: 38091) -.yieldbuild.com -# ||yieldadvert.com^$third-party (easylistchina+easylist.txt: 38090) -.yieldadvert.com -# ||yieldads.com^$third-party (easylistchina+easylist.txt: 38089) -.yieldads.com -# ||yesnexus.com^$third-party (easylistchina+easylist.txt: 38088) -.yesnexus.com -# ||yesadsrv.com^$third-party (easylistchina+easylist.txt: 38087) -.yesadsrv.com -# ||yes-messenger.com^$third-party (easylistchina+easylist.txt: 38086) -.yes-messenger.com -# ||yellads.com^$third-party (easylistchina+easylist.txt: 38085) -.yellads.com -# ||yeabble.com^$third-party (easylistchina+easylist.txt: 38084) -.yeabble.com -# ||yceml.net^$third-party (easylistchina+easylist.txt: 38083) -.yceml.net -# ||ycasmd.info^$third-party (easylistchina+easylist.txt: 38082) -.ycasmd.info -# ||yb0t.com^$third-party (easylistchina+easylist.txt: 38081) -.yb0t.com -# ||yawnedgtuis.org^$third-party (easylistchina+easylist.txt: 38080) -.yawnedgtuis.org -# ||yashi.com^$third-party (easylistchina+easylist.txt: 38079) -.yashi.com -# ||yambotan.ru^$third-party (easylistchina+easylist.txt: 38078) -.yambotan.ru -# ||yadomedia.com^$third-party (easylistchina+easylist.txt: 38077) -.yadomedia.com -# ||yabuka.com^$third-party (easylistchina+easylist.txt: 38076) -.yabuka.com -# ||ya88s1yk.com^$third-party (easylistchina+easylist.txt: 38075) -.ya88s1yk.com -# ||xxlink.net^$third-party (easylistchina+easylist.txt: 38074) -.xxlink.net -# ||xx00.info^$third-party (easylistchina+easylist.txt: 38073) -.xx00.info -# ||xvika.com^$third-party (easylistchina+easylist.txt: 38072) -.xvika.com -# ||xubob.com^$third-party (easylistchina+easylist.txt: 38071) -.xubob.com -# ||xtendmedia.com^$third-party (easylistchina+easylist.txt: 38070) -.xtendmedia.com -# ||xtendadvert.com^$third-party (easylistchina+easylist.txt: 38069) -.xtendadvert.com -# ||xtcie.com^$third-party (easylistchina+easylist.txt: 38068) -.xtcie.com -# ||xs.mochiads.com^$third-party (easylistchina+easylist.txt: 38067) -.xs.mochiads.com -# ||xmlconfig.ltassrv.com^$third-party (easylistchina+easylist.txt: 38066) -.xmlconfig.ltassrv.com -# ||xmasdom.com^$third-party (easylistchina+easylist.txt: 38065) -.xmasdom.com -# ||xjfjx8hw.com^$third-party (easylistchina+easylist.txt: 38064) -.xjfjx8hw.com -# ||xgraph.net^$third-party (easylistchina+easylist.txt: 38063) -.xgraph.net -# ||xfs5yhr1.com^$third-party (easylistchina+easylist.txt: 38062) -.xfs5yhr1.com -# ||xfileload.com^$third-party (easylistchina+easylist.txt: 38061) -.xfileload.com -# ||xeontopa.com^$third-party (easylistchina+easylist.txt: 38060) -.xeontopa.com -# ||xdirectx.com^$third-party (easylistchina+easylist.txt: 38059) -.xdirectx.com -# ||xdev.info^$third-party (easylistchina+easylist.txt: 38058) -.xdev.info -# ||xchangebanners.com^$third-party (easylistchina+easylist.txt: 38057) -.xchangebanners.com -# ||xcelsiusadserver.com^$third-party (easylistchina+easylist.txt: 38056) -.xcelsiusadserver.com -# ||xcelltech.com^$third-party (easylistchina+easylist.txt: 38055) -.xcelltech.com -# ||xaxoro.com^$third-party (easylistchina+easylist.txt: 38054) -.xaxoro.com -# ||xadcentral.com^$third-party (easylistchina+easylist.txt: 38053) -.xadcentral.com -# ||xad.com^$third-party (easylistchina+easylist.txt: 38052) -.xad.com -# ||x4300tiz.com^$third-party (easylistchina+easylist.txt: 38051) -.x4300tiz.com -# ||x.mochiads.com^$third-party (easylistchina+easylist.txt: 38050) -.x.mochiads.com -# ||wwwpromoter.com^$third-party (easylistchina+easylist.txt: 38049) -.wwwpromoter.com -# ||wwwadcntr.com^$third-party (easylistchina+easylist.txt: 38048) -.wwwadcntr.com -# ||wwv4ez0n.com^$third-party (easylistchina+easylist.txt: 38047) -.wwv4ez0n.com -# ||wwbn.com^$third-party (easylistchina+easylist.txt: 38046) -.wwbn.com -# ||wurea.com^$third-party (easylistchina+easylist.txt: 38045) -.wurea.com -# ||wulium.com^$third-party (easylistchina+easylist.txt: 38044) -.wulium.com -# ||worthyadvertising.com^$third-party (easylistchina+easylist.txt: 38043) -.worthyadvertising.com -# ||worthathousandwords.com^$third-party (easylistchina+easylist.txt: 38042) -.worthathousandwords.com -# ||worldwidemailer.com^$third-party (easylistchina+easylist.txt: 38041) -.worldwidemailer.com -# ||worlddatinghere.com^$third-party (easylistchina+easylist.txt: 38040) -.worlddatinghere.com -# ||wordego.com^$third-party (easylistchina+easylist.txt: 38039) -.wordego.com -# ||wordbankads.com^$third-party (easylistchina+easylist.txt: 38038) -.wordbankads.com -# ||wootmedia.net^$third-party (easylistchina+easylist.txt: 38037) -.wootmedia.net -# ||wonclick.com^$third-party (easylistchina+easylist.txt: 38036) -.wonclick.com -# ||wmmediacorp.com^$third-party (easylistchina+easylist.txt: 38035) -.wmmediacorp.com -# ||wlmarketing.com^$third-party (easylistchina+easylist.txt: 38034) -.wlmarketing.com -# ||winsspeeder.info^$third-party (easylistchina+easylist.txt: 38033) -.winsspeeder.info -# ||wingads.com^$third-party (easylistchina+easylist.txt: 38032) -.wingads.com -# ||winbuyer.com^$third-party (easylistchina+easylist.txt: 38031) -.winbuyer.com -# ||wigetstudios.com^$third-party (easylistchina+easylist.txt: 38030) -.wigetstudios.com -# ||wigetmedia.com^$third-party (easylistchina+easylist.txt: 38029) -.wigetmedia.com -# ||widgetwidget.mobi^$third-party (easylistchina+easylist.txt: 38028) -.widgetwidget.mobi -# ||widgetvalue.net^$third-party (easylistchina+easylist.txt: 38027) -.widgetvalue.net -# ||widgetsurvey.biz^$third-party (easylistchina+easylist.txt: 38026) -.widgetsurvey.biz -# ||widgets.fccinteractive.com^$third-party (easylistchina+easylist.txt: 38025) -.widgets.fccinteractive.com -# ||widgetlead.net^$third-party (easylistchina+easylist.txt: 38024) -.widgetlead.net -# ||widgetbucks.com^$third-party (easylistchina+easylist.txt: 38023) -.widgetbucks.com -# ||widgetbanner.mobi^$third-party (easylistchina+easylist.txt: 38022) -.widgetbanner.mobi -# ||widgetadvertising.biz^$third-party (easylistchina+easylist.txt: 38021) -.widgetadvertising.biz -# ||widget.yavli.com^$third-party (easylistchina+easylist.txt: 38020) -.widget.yavli.com -# ||why-outsource.net^$third-party (easylistchina+easylist.txt: 38019) -.why-outsource.net -# ||whtsrv9.com^$third-party (easylistchina+easylist.txt: 38018) -.whtsrv9.com -# ||whoads.net^$third-party (easylistchina+easylist.txt: 38017) -.whoads.net -# ||where.com^$third-party (easylistchina+easylist.txt: 38016) -.where.com -# ||wh5kb0u4.com^$third-party (easylistchina+easylist.txt: 38015) -.wh5kb0u4.com -# ||wgreatdream.com^$third-party (easylistchina+easylist.txt: 38014) -.wgreatdream.com -# ||wfnetwork.com^$third-party (easylistchina+easylist.txt: 38013) -.wfnetwork.com -# ||werbe-sponsor.de^$third-party (easylistchina+easylist.txt: 38012) -.werbe-sponsor.de -# ||wellturnedpenne.info^$third-party (easylistchina+easylist.txt: 38011) -.wellturnedpenne.info -# ||wegotmedia.com^$third-party (easylistchina+easylist.txt: 38010) -.wegotmedia.com -# ||wegetpaid.net^$third-party (easylistchina+easylist.txt: 38009) -.wegetpaid.net -# ||webusersurvey.com^$third-party (easylistchina+easylist.txt: 38008) -.webusersurvey.com -# ||webtraffic.ttinet.com^$third-party (easylistchina+easylist.txt: 38007) -.webtraffic.ttinet.com -# ||webseeds.com^$third-party (easylistchina+easylist.txt: 38006) -.webseeds.com -# ||weborama.fr^$third-party (easylistchina+easylist.txt: 38005) -.weborama.fr -# ||webmedia.co.il^$third-party (easylistchina+easylist.txt: 38004) -.webmedia.co.il -# ||webgains.com^$third-party (easylistchina+easylist.txt: 38003) -.webgains.com -# ||webadvertise123.com^$third-party (easylistchina+easylist.txt: 38002) -.webadvertise123.com -# ||webads.nl^$third-party (easylistchina+easylist.txt: 38001) -.webads.nl -# ||webads.co.nz^$third-party (easylistchina+easylist.txt: 38000) -.webads.co.nz -# ||web-bird.jp^$third-party (easylistchina+easylist.txt: 37999) -.web-bird.jp -# ||web-adservice.com^$third-party (easylistchina+easylist.txt: 37998) -.web-adservice.com -# ||weadrevenue.com^$third-party (easylistchina+easylist.txt: 37997) -.weadrevenue.com -# ||wcpanalytics.com^$third-party (easylistchina+easylist.txt: 37996) -.wcpanalytics.com -# ||wcmcs.net^$third-party (easylistchina+easylist.txt: 37995) -.wcmcs.net -# ||wbptqzmv.com^$third-party (easylistchina+easylist.txt: 37994) -.wbptqzmv.com -# ||waymp.com^$third-party (easylistchina+easylist.txt: 37993) -.waymp.com -# ||wateristian.com^$third-party (easylistchina+easylist.txt: 37992) -.wateristian.com -# ||watchnowlive.eu^$third-party (easylistchina+easylist.txt: 37991) -.watchnowlive.eu -# ||watchfree.flv.in^$third-party (easylistchina+easylist.txt: 37990) -.watchfree.flv.in -# ||warfacco.com^$third-party (easylistchina+easylist.txt: 37989) -.warfacco.com -# ||warezlayer.to^$third-party (easylistchina+easylist.txt: 37988) -.warezlayer.to -# ||wangfenxi.com^$third-party (easylistchina+easylist.txt: 37987) -.wangfenxi.com -# ||wamnetwork.com^$third-party (easylistchina+easylist.txt: 37986) -.wamnetwork.com -# ||wallacemaloneymindanao.info^$third-party (easylistchina+easylist.txt: 37985) -.wallacemaloneymindanao.info -# ||wahoha.com^$third-party (easylistchina+easylist.txt: 37984) -.wahoha.com -# ||wagershare.com^$third-party (easylistchina+easylist.txt: 37983) -.wagershare.com -# ||waframedia8.com^$third-party (easylistchina+easylist.txt: 37982) -.waframedia8.com -# ||waframedia7.com^$third-party (easylistchina+easylist.txt: 37981) -.waframedia7.com -# ||waframedia5.com^$third-party (easylistchina+easylist.txt: 37980) -.waframedia5.com -# ||waframedia3.com^$third-party (easylistchina+easylist.txt: 37979) -.waframedia3.com -# ||wafmedia6.com^$third-party (easylistchina+easylist.txt: 37978) -.wafmedia6.com -# ||wafmedia5.com^$third-party (easylistchina+easylist.txt: 37977) -.wafmedia5.com -# ||wafmedia3.com^$third-party (easylistchina+easylist.txt: 37976) -.wafmedia3.com -# ||w9statistics.info^$third-party (easylistchina+easylist.txt: 37975) -.w9statistics.info -# ||w5statistics.info^$third-party (easylistchina+easylist.txt: 37974) -.w5statistics.info -# ||w4.com^$third-party (easylistchina+easylist.txt: 37973) -.w4.com -# ||w3exit.com^$third-party (easylistchina+easylist.txt: 37972) -.w3exit.com -# ||w00tmedia.net^$third-party (easylistchina+easylist.txt: 37971) -.w00tmedia.net -# ||w00tads.com^$third-party (easylistchina+easylist.txt: 37970) -.w00tads.com -# ||vuiads.net^$third-party (easylistchina+easylist.txt: 37969) -.vuiads.net -# ||vuiads.info^$third-party (easylistchina+easylist.txt: 37968) -.vuiads.info -# ||vuiads.de^$third-party (easylistchina+easylist.txt: 37967) -.vuiads.de -# ||vth05dse.com^$third-party (easylistchina+easylist.txt: 37966) -.vth05dse.com -# ||vsservers.net^$third-party (easylistchina+easylist.txt: 37965) -.vsservers.net -# ||vs4family.com^$third-party (easylistchina+easylist.txt: 37964) -.vs4family.com -# ||vs4entertainment.com^$third-party (easylistchina+easylist.txt: 37963) -.vs4entertainment.com -# ||vs20060817.com^$third-party (easylistchina+easylist.txt: 37962) -.vs20060817.com -# ||vpico.com^$third-party (easylistchina+easylist.txt: 37961) -.vpico.com -# ||vogozaw.ru^$third-party (easylistchina+easylist.txt: 37960) -.vogozaw.ru -# ||vogosita.com^$third-party (easylistchina+easylist.txt: 37959) -.vogosita.com -# ||vntsm.com^$third-party (easylistchina+easylist.txt: 37958) -.vntsm.com -# ||vixnixxer.com^$third-party (easylistchina+easylist.txt: 37957) -.vixnixxer.com -# ||vivamob.net^$third-party (easylistchina+easylist.txt: 37956) -.vivamob.net -# ||vitalads.net^$third-party (easylistchina+easylist.txt: 37955) -.vitalads.net -# ||visualsteel.net^$third-party (easylistchina+easylist.txt: 37954) -.visualsteel.net -# ||visitweb.com^$third-party (easylistchina+easylist.txt: 37953) -.visitweb.com -# ||visitdetails.com^$third-party (easylistchina+easylist.txt: 37952) -.visitdetails.com -# ||visiblemeasures.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37951) -.visiblemeasures.com -# ||visiblegains.com^$third-party (easylistchina+easylist.txt: 37950) -.visiblegains.com -# ||visiads.com^$third-party (easylistchina+easylist.txt: 37949) -.visiads.com -# ||viralmediatech.com^$third-party (easylistchina+easylist.txt: 37948) -.viralmediatech.com -# ||vipquesting.com^$third-party (easylistchina+easylist.txt: 37947) -.vipquesting.com -# ||vipcpms.com^$third-party (easylistchina+easylist.txt: 37946) -.vipcpms.com -# ||vindicosuite.com^$third-party (easylistchina+easylist.txt: 37945) -.vindicosuite.com -# ||viewivo.com^$third-party (easylistchina+easylist.txt: 37944) -.viewivo.com -# ||viewex.co.uk^$third-party (easylistchina+easylist.txt: 37943) -.viewex.co.uk -# ||viewclc.com^$third-party (easylistchina+easylist.txt: 37942) -.viewclc.com -# ||viewablemedia.net^$third-party (easylistchina+easylist.txt: 37941) -.viewablemedia.net -# ||view.atdmt.com^*/view/$third-party (easylistchina+easylist.txt: 37940) -.view.atdmt.com/.*/view/ -# ||view.atdmt.com^*/iview/$third-party (easylistchina+easylist.txt: 37939) -.view.atdmt.com/.*/iview/ -# ||view.atdmt.com/partner/$third-party (easylistchina+easylist.txt: 37938) -.view.atdmt.com/partner/ -# ||view-ads.de^$third-party (easylistchina+easylist.txt: 37937) -.view-ads.de -# ||viedeo2k.tv^$third-party (easylistchina+easylist.txt: 37936) -.viedeo2k.tv -# ||vidpay.com^$third-party (easylistchina+easylist.txt: 37935) -.vidpay.com -# ||videovfr.com^$third-party (easylistchina+easylist.txt: 37934) -.videovfr.com -# ||videoroll.net^$third-party (easylistchina+easylist.txt: 37933) -.videoroll.net -# ||videoplaza.tv^$~object-subrequest,third-party (easylistchina+easylist.txt: 37932) -.videoplaza.tv -# ||videoplaza.tv/proxy/distributor^$object-subrequest,third-party (easylistchina+easylist.txt: 37930) -.videoplaza.tv/proxy/distributor[^\w%.-] -# ||videoplaza.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37929) -.videoplaza.com -# ||videologygroup.com^$third-party (easylistchina+easylist.txt: 37927) -.videologygroup.com -# ||videoliver.com^$third-party (easylistchina+easylist.txt: 37926) -.videoliver.com -# ||videolansoftware.com^$third-party (easylistchina+easylist.txt: 37925) -.videolansoftware.com -# ||videohube.eu^$third-party (easylistchina+easylist.txt: 37924) -.videohube.eu -# ||videohub.com^$third-party (easylistchina+easylist.txt: 37923) -.videohub.com -# ||videoegg.com^$third-party (easylistchina+easylist.txt: 37922) -.videoegg.com -# ||videodeals.com^$third-party (easylistchina+easylist.txt: 37921) -.videodeals.com -# ||videoclick.ru^$third-party (easylistchina+easylist.txt: 37920) -.videoclick.ru -# ||videoadex.com^$third-party (easylistchina+easylist.txt: 37919) -.videoadex.com -# ||video1404.info^$third-party (easylistchina+easylist.txt: 37918) -.video1404.info -# ||video-loader.com^$third-party (easylistchina+easylist.txt: 37917) -.video-loader.com -# ||vibrantmedia.com^$third-party (easylistchina+easylist.txt: 37916) -.vibrantmedia.com -# ||vibrant.co^$third-party (easylistchina+easylist.txt: 37915) -.vibrant.co -# ||vianadserver.com^$third-party (easylistchina+easylist.txt: 37914) -.vianadserver.com -# ||vhmnetwork.com^$third-party (easylistchina+easylist.txt: 37913) -.vhmnetwork.com -# ||versetime.com^$third-party (easylistchina+easylist.txt: 37912) -.versetime.com -# ||versahq.com^$third-party (easylistchina+easylist.txt: 37911) -.versahq.com -# ||verata.xyz^$third-party (easylistchina+easylist.txt: 37910) -.verata.xyz -# ||veoxa.com^$third-party (easylistchina+easylist.txt: 37909) -.veoxa.com -# ||venusbux.com^$third-party (easylistchina+easylist.txt: 37908) -.venusbux.com -# ||vendexo.com^$third-party (easylistchina+easylist.txt: 37907) -.vendexo.com -# ||vemba.com^$third-party (easylistchina+easylist.txt: 37906) -.vemba.com -# ||velti.com^$third-party (easylistchina+easylist.txt: 37905) -.velti.com -# ||velmedia.net^$third-party (easylistchina+easylist.txt: 37904) -.velmedia.net -# ||vellde.com^$third-party (easylistchina+easylist.txt: 37903) -.vellde.com -# ||vectorstock.com^$third-party (easylistchina+easylist.txt: 37902) -.vectorstock.com -# ||vdopia.com^$third-party (easylistchina+easylist.txt: 37901) -.vdopia.com -# ||vcommission.com^$third-party (easylistchina+easylist.txt: 37900) -.vcommission.com -# ||vcmedia.com^$third-party (easylistchina+easylist.txt: 37899) -.vcmedia.com -# ||vastopped.com^$third-party (easylistchina+easylist.txt: 37898) -.vastopped.com -# ||vapedia.com^$third-party (easylistchina+easylist.txt: 37897) -.vapedia.com -# ||valuecontent.net^$third-party (easylistchina+easylist.txt: 37896) -.valuecontent.net -# ||valuecommerce.com^$third-party (easylistchina+easylist.txt: 37895) -.valuecommerce.com -# ||valueclickmedia.com^$third-party (easylistchina+easylist.txt: 37894) -.valueclickmedia.com -# ||valueclick.net^$third-party (easylistchina+easylist.txt: 37893) -.valueclick.net -# ||valueclick.com^$third-party (easylistchina+easylist.txt: 37892) -.valueclick.com -# ||valueaffiliate.net^$third-party (easylistchina+easylist.txt: 37891) -.valueaffiliate.net -# ||valuead.com^$third-party (easylistchina+easylist.txt: 37890) -.valuead.com -# ||validclick.com^$third-party (easylistchina+easylist.txt: 37889) -.validclick.com -# ||vadpay.com^$third-party (easylistchina+easylist.txt: 37888) -.vadpay.com -# ||v2mlblack.biz^$third-party (easylistchina+easylist.txt: 37887) -.v2mlblack.biz -# ||v2cigs.com^$third-party (easylistchina+easylist.txt: 37886) -.v2cigs.com -# ||v11media.com^$third-party (easylistchina+easylist.txt: 37885) -.v11media.com -# ||v.movad.de^$third-party (easylistchina+easylist.txt: 37884) -.v.movad.de -# ||v.fwmrm.net^$object-subrequest,third-party (easylistchina+easylist.txt: 37883) -.v.fwmrm.net -# ||utubeconverter.com^$third-party (easylistchina+easylist.txt: 37882) -.utubeconverter.com -# ||utokapa.com^$third-party (easylistchina+easylist.txt: 37881) -.utokapa.com -# ||utarget.ru^$third-party (easylistchina+easylist.txt: 37880) -.utarget.ru -# ||utarget.co.uk^$third-party (easylistchina+easylist.txt: 37879) -.utarget.co.uk -# ||usurv.com^$third-party (easylistchina+easylist.txt: 37878) -.usurv.com -# ||usercash.com^$third-party (easylistchina+easylist.txt: 37877) -.usercash.com -# ||usenetpassport.com^$third-party (easylistchina+easylist.txt: 37876) -.usenetpassport.com -# ||usenetjunction.com^$third-party (easylistchina+easylist.txt: 37875) -.usenetjunction.com -# ||usemax.de^$third-party (easylistchina+easylist.txt: 37874) -.usemax.de -# ||usbanners.com^$third-party (easylistchina+easylist.txt: 37873) -.usbanners.com -# ||urlcash.net^$third-party (easylistchina+easylist.txt: 37872) -.urlcash.net -# ||urlads.net^$third-party (easylistchina+easylist.txt: 37871) -.urlads.net -# ||ureace.com^$third-party (easylistchina+easylist.txt: 37870) -.ureace.com -# ||urbation.net^$third-party (easylistchina+easylist.txt: 37869) -.urbation.net -# ||upliftsearch.com^$third-party (easylistchina+easylist.txt: 37868) -.upliftsearch.com -# ||upads.info^$third-party (easylistchina+easylist.txt: 37867) -.upads.info -# ||unterary.com^$third-party (easylistchina+easylist.txt: 37866) -.unterary.com -# ||unrulymedia.com^$third-party (easylistchina+easylist.txt: 37865) -.unrulymedia.com -# ||unlockr.com^$third-party (easylistchina+easylist.txt: 37864) -.unlockr.com -# ||universityofinternetscience.com^$third-party (easylistchina+easylist.txt: 37863) -.universityofinternetscience.com -# ||unitethecows.com^$third-party (easylistchina+easylist.txt: 37862) -.unitethecows.com -# ||unicast.com^$third-party (easylistchina+easylist.txt: 37861) -.unicast.com -# ||undertone.com^$third-party (easylistchina+easylist.txt: 37860) -.undertone.com -# ||underclick.ru^$third-party (easylistchina+easylist.txt: 37859) -.underclick.ru -# ||unanimis.co.uk^$third-party (easylistchina+easylist.txt: 37858) -.unanimis.co.uk -# ||ultimategracelessness.info^$third-party (easylistchina+easylist.txt: 37857) -.ultimategracelessness.info -# ||ukbanners.com^$third-party (easylistchina+easylist.txt: 37856) -.ukbanners.com -# ||uiqatnpooq.com^$third-party (easylistchina+easylist.txt: 37855) -.uiqatnpooq.com -# ||uiadserver.com^$third-party (easylistchina+easylist.txt: 37854) -.uiadserver.com -# ||uglyst.com^$third-party (easylistchina+easylist.txt: 37853) -.uglyst.com -# ||ughus.com^$third-party (easylistchina+easylist.txt: 37852) -.ughus.com -# ||ugaral.com^$third-party (easylistchina+easylist.txt: 37851) -.ugaral.com -# ||udmserve.net^$third-party (easylistchina+easylist.txt: 37850) -.udmserve.net -# ||ubudigital.com^$third-party (easylistchina+easylist.txt: 37849) -.ubudigital.com -# ||u1hw38x0.com^$third-party (easylistchina+easylist.txt: 37848) -.u1hw38x0.com -# ||u-ad.info^$third-party (easylistchina+easylist.txt: 37847) -.u-ad.info -# ||tyroo.com^$third-party (easylistchina+easylist.txt: 37846) -.tyroo.com -# ||twtad.com^$third-party (easylistchina+easylist.txt: 37845) -.twtad.com -# ||twittad.com^$third-party (easylistchina+easylist.txt: 37844) -.twittad.com -# ||twistads.com^$third-party (easylistchina+easylist.txt: 37843) -.twistads.com -# ||twinpinenetwork.com^$third-party (easylistchina+easylist.txt: 37842) -.twinpinenetwork.com -# ||tweard.com^$third-party (easylistchina+easylist.txt: 37841) -.tweard.com -# ||twalm.com^$third-party (easylistchina+easylist.txt: 37840) -.twalm.com -# ||tvprocessing.com^$third-party (easylistchina+easylist.txt: 37839) -.tvprocessing.com -# ||tvas-c.pw^$third-party (easylistchina+easylist.txt: 37838) -.tvas-c.pw -# ||tutvp.com^$third-party (easylistchina+easylist.txt: 37837) -.tutvp.com -# ||tusno.com^$third-party (easylistchina+easylist.txt: 37836) -.tusno.com -# ||turn.com^$third-party (easylistchina+easylist.txt: 37835) -.turn.com -# ||turbotraff.net^$third-party (easylistchina+easylist.txt: 37834) -.turbotraff.net -# ||tumri.net^$third-party (easylistchina+easylist.txt: 37833) -.tumri.net -# ||tubereplay.com^$third-party (easylistchina+easylist.txt: 37832) -.tubereplay.com -# ||tubemogul.com^$third-party (easylistchina+easylist.txt: 37831) -.tubemogul.com -# ||tubberlo.com^$third-party (easylistchina+easylist.txt: 37830) -.tubberlo.com -# ||ttzmedia.com^$third-party (easylistchina+easylist.txt: 37829) -.ttzmedia.com -# ||trygen.co.uk^$third-party (easylistchina+easylist.txt: 37828) -.trygen.co.uk -# ||truex.com^$third-party (easylistchina+easylist.txt: 37827) -.truex.com -# ||truesecurejump.com^$third-party (easylistchina+easylist.txt: 37826) -.truesecurejump.com -# ||trtrccl.com^$third-party (easylistchina+easylist.txt: 37825) -.trtrccl.com -# ||trmit.com^$third-party (easylistchina+easylist.txt: 37824) -.trmit.com -# ||trks.us^$third-party (easylistchina+easylist.txt: 37823) -.trks.us -# ||trklnks.com^$third-party (easylistchina+easylist.txt: 37822) -.trklnks.com -# ||trker.com^$third-party (easylistchina+easylist.txt: 37821) -.trker.com -# ||trkclk.net^$third-party (easylistchina+easylist.txt: 37820) -.trkclk.net -# ||trkalot.com^$third-party (easylistchina+easylist.txt: 37819) -.trkalot.com -# ||trk4.com^$third-party (easylistchina+easylist.txt: 37818) -.trk4.com -# ||trigami.com^$third-party (easylistchina+easylist.txt: 37817) -.trigami.com -# ||tribalfusion.com^$third-party (easylistchina+easylist.txt: 37816) -.tribalfusion.com -# ||triadmedianetwork.com^$third-party (easylistchina+easylist.txt: 37815) -.triadmedianetwork.com -# ||trenpyle.com^$third-party (easylistchina+easylist.txt: 37814) -.trenpyle.com -# ||tredirect.com^$third-party (easylistchina+easylist.txt: 37813) -.tredirect.com -# ||travidia.com^$third-party (easylistchina+easylist.txt: 37812) -.travidia.com -# ||travelscream.com^$third-party (easylistchina+easylist.txt: 37811) -.travelscream.com -# ||traveladvertising.com^$third-party (easylistchina+easylist.txt: 37810) -.traveladvertising.com -# ||trapasol.com^$third-party (easylistchina+easylist.txt: 37809) -.trapasol.com -# ||trahic.ru^$third-party (easylistchina+easylist.txt: 37808) -.trahic.ru -# ||traffirms.com^$third-party (easylistchina+easylist.txt: 37807) -.traffirms.com -# ||trafficzap.com^$third-party (easylistchina+easylist.txt: 37806) -.trafficzap.com -# ||trafficz.com^$third-party (easylistchina+easylist.txt: 37805) -.trafficz.com -# ||trafficwave.net^$third-party (easylistchina+easylist.txt: 37804) -.trafficwave.net -# ||trafficvance.com^$third-party (easylistchina+easylist.txt: 37803) -.trafficvance.com -# ||trafficular.com^$third-party (easylistchina+easylist.txt: 37802) -.trafficular.com -# ||traffictrader.net^$third-party (easylistchina+easylist.txt: 37801) -.traffictrader.net -# ||trafficsynergy.com^$third-party (easylistchina+easylist.txt: 37800) -.trafficsynergy.com -# ||trafficsway.com^$third-party (easylistchina+easylist.txt: 37799) -.trafficsway.com -# ||trafficswarm.com^$third-party (easylistchina+easylist.txt: 37798) -.trafficswarm.com -# ||trafficspaces.net^$third-party (easylistchina+easylist.txt: 37797) -.trafficspaces.net -# ||trafficrevenue.net^$third-party (easylistchina+easylist.txt: 37796) -.trafficrevenue.net -# ||trafficposse.com^$third-party (easylistchina+easylist.txt: 37795) -.trafficposse.com -# ||trafficmp.com^$third-party (easylistchina+easylist.txt: 37794) -.trafficmp.com -# ||trafficmasterz.net^$third-party (easylistchina+easylist.txt: 37793) -.trafficmasterz.net -# ||trafficjunky.net^$third-party (easylistchina+easylist.txt: 37792) -.trafficjunky.net -# ||traffichaus.com^$third-party (easylistchina+easylist.txt: 37791) -.traffichaus.com -# ||trafficforce.com^$third-party (easylistchina+easylist.txt: 37790) -.trafficforce.com -# ||trafficfactory.biz^$third-party (easylistchina+easylist.txt: 37789) -.trafficfactory.biz -# ||trafficbroker.com^$third-party (easylistchina+easylist.txt: 37788) -.trafficbroker.com -# ||trafficbarads.com^$third-party (easylistchina+easylist.txt: 37787) -.trafficbarads.com -# ||traffic-supremacy.com^$third-party (easylistchina+easylist.txt: 37786) -.traffic-supremacy.com -# ||traffboost.net^$third-party (easylistchina+easylist.txt: 37785) -.traffboost.net -# ||traff-advertazer.com^$third-party (easylistchina+easylist.txt: 37784) -.traff-advertazer.com -# ||tradepopups.com^$third-party (easylistchina+easylist.txt: 37783) -.tradepopups.com -# ||tradeexpert.net^$third-party (easylistchina+easylist.txt: 37782) -.tradeexpert.net -# ||tradeadexchange.com^$third-party (easylistchina+easylist.txt: 37781) -.tradeadexchange.com -# ||trackyourlinks.com^$third-party (easylistchina+easylist.txt: 37780) -.trackyourlinks.com -# ||trackword.net^$third-party (easylistchina+easylist.txt: 37779) -.trackword.net -# ||tracktor.co.uk^$third-party (easylistchina+easylist.txt: 37778) -.tracktor.co.uk -# ||trackthatad.com^$third-party (easylistchina+easylist.txt: 37777) -.trackthatad.com -# ||trackstarsengland.net^$third-party (easylistchina+easylist.txt: 37776) -.trackstarsengland.net -# ||trackpromotion.net^$third-party (easylistchina+easylist.txt: 37775) -.trackpromotion.net -# ||trackpath.biz^$third-party (easylistchina+easylist.txt: 37774) -.trackpath.biz -# ||trackingoffer.net^$third-party (easylistchina+easylist.txt: 37773) -.trackingoffer.net -# ||trackingoffer.info^$third-party (easylistchina+easylist.txt: 37772) -.trackingoffer.info -# ||tracking11.com^$third-party (easylistchina+easylist.txt: 37771) -.tracking11.com -# ||tracking101.com^$third-party (easylistchina+easylist.txt: 37770) -.tracking101.com -# ||tracking.to^$third-party (easylistchina+easylist.txt: 37769) -.tracking.to -# ||trackcorner.com^$third-party (easylistchina+easylist.txt: 37768) -.trackcorner.com -# ||trackadvertising.net^$third-party (easylistchina+easylist.txt: 37767) -.trackadvertising.net -# ||traceadmanager.com^$third-party (easylistchina+easylist.txt: 37766) -.traceadmanager.com -# ||tqlkg.net^$third-party (easylistchina+easylist.txt: 37765) -.tqlkg.net -# ||tqlkg.com^$third-party (easylistchina+easylist.txt: 37764) -.tqlkg.com -# ||tpnads.com^$third-party (easylistchina+easylist.txt: 37763) -.tpnads.com -# ||tower-colocation.info^$third-party (easylistchina+easylist.txt: 37762) -.tower-colocation.info -# ||tower-colocation.de^$third-party (easylistchina+easylist.txt: 37761) -.tower-colocation.de -# ||towardstelephone.com^$third-party (easylistchina+easylist.txt: 37760) -.towardstelephone.com -# ||totemcash.com^$third-party (easylistchina+easylist.txt: 37759) -.totemcash.com -# ||totalprofitplan.com^$third-party (easylistchina+easylist.txt: 37758) -.totalprofitplan.com -# ||total-media.net^$third-party (easylistchina+easylist.txt: 37757) -.total-media.net -# ||torrpedoads.net^$third-party (easylistchina+easylist.txt: 37756) -.torrpedoads.net -# ||torrida.net^$third-party (easylistchina+easylist.txt: 37755) -.torrida.net -# ||toroadvertising.com^$third-party (easylistchina+easylist.txt: 37754) -.toroadvertising.com -# ||torerolumiere.net^$third-party (easylistchina+easylist.txt: 37753) -.torerolumiere.net -# ||torconpro.com^$third-party (easylistchina+easylist.txt: 37752) -.torconpro.com -# ||torads.xyz^$third-party (easylistchina+easylist.txt: 37751) -.torads.xyz -# ||torads.me^$third-party (easylistchina+easylist.txt: 37750) -.torads.me -# ||tophotoffers.com^$third-party (easylistchina+easylist.txt: 37749) -.tophotoffers.com -# ||topfox.co.uk^$third-party (easylistchina+easylist.txt: 37748) -.topfox.co.uk -# ||topeuro.biz^$third-party (easylistchina+easylist.txt: 37747) -.topeuro.biz -# ||topcasino10.com^$third-party (easylistchina+easylist.txt: 37746) -.topcasino10.com -# ||topauto10.com^$third-party (easylistchina+easylist.txt: 37745) -.topauto10.com -# ||top26.net^$third-party (easylistchina+easylist.txt: 37744) -.top26.net -# ||tool-site.com^$third-party (easylistchina+easylist.txt: 37743) -.tool-site.com -# ||tonefuse.com^$third-party (easylistchina+easylist.txt: 37742) -.tonefuse.com -# ||tomekas.com^$third-party (easylistchina+easylist.txt: 37741) -.tomekas.com -# ||tollfreeforwarding.com^$third-party (easylistchina+easylist.txt: 37740) -.tollfreeforwarding.com -# ||tokenads.com^$third-party (easylistchina+easylist.txt: 37739) -.tokenads.com -# ||toboads.com^$third-party (easylistchina+easylist.txt: 37738) -.toboads.com -# ||tnyzin.ru^$third-party (easylistchina+easylist.txt: 37737) -.tnyzin.ru -# ||tlvmedia.com^$third-party (easylistchina+easylist.txt: 37736) -.tlvmedia.com -# ||tldadserv.com^$third-party (easylistchina+easylist.txt: 37735) -.tldadserv.com -# ||tkqlhce.com^$third-party (easylistchina+easylist.txt: 37734) -.tkqlhce.com -# ||tissage-extension.com^$third-party (easylistchina+easylist.txt: 37733) -.tissage-extension.com -# ||tiser.com^$third-party (easylistchina+easylist.txt: 37732) -.tiser.com -# ||tisadama.com^$third-party (easylistchina+easylist.txt: 37731) -.tisadama.com -# ||tinbuadserv.com^$third-party (easylistchina+easylist.txt: 37730) -.tinbuadserv.com -# ||tightexact.net^$third-party (easylistchina+easylist.txt: 37729) -.tightexact.net -# ||tidaltv.com^$third-party (easylistchina+easylist.txt: 37728) -.tidaltv.com -# ||thoughtsondance.info^$third-party (easylistchina+easylist.txt: 37727) -.thoughtsondance.info -# ||thoughtleadr.com^$third-party (easylistchina+easylist.txt: 37726) -.thoughtleadr.com -# ||thoseads.com^$third-party (easylistchina+easylist.txt: 37725) -.thoseads.com -# ||thewheelof.com^$third-party (easylistchina+easylist.txt: 37724) -.thewheelof.com -# ||thewebgemnetwork.com^$third-party (easylistchina+easylist.txt: 37723) -.thewebgemnetwork.com -# ||thepiratereactor.net^$third-party (easylistchina+easylist.txt: 37722) -.thepiratereactor.net -# ||themidnightmatulas.com^$third-party (easylistchina+easylist.txt: 37721) -.themidnightmatulas.com -# ||theloungenet.com^$third-party (easylistchina+easylist.txt: 37720) -.theloungenet.com -# ||thelistassassin.com^$third-party (easylistchina+easylist.txt: 37719) -.thelistassassin.com -# ||theequalground.info^$third-party (easylistchina+easylist.txt: 37718) -.theequalground.info -# ||thebflix.info^$third-party (easylistchina+easylist.txt: 37717) -.thebflix.info -# ||thebannerexchange.com^$third-party (easylistchina+easylist.txt: 37716) -.thebannerexchange.com -# ||theads.me^$third-party (easylistchina+easylist.txt: 37715) -.theads.me -# ||theadgateway.com^$third-party (easylistchina+easylist.txt: 37714) -.theadgateway.com -# ||thangasoline.com^$third-party (easylistchina+easylist.txt: 37713) -.thangasoline.com -# ||tgtmedia.com^$third-party (easylistchina+easylist.txt: 37712) -.tgtmedia.com -# ||tfag.de^$third-party (easylistchina+easylist.txt: 37711) -.tfag.de -# ||textsrv.com^$third-party (easylistchina+easylist.txt: 37710) -.textsrv.com -# ||textonlyads.com^$third-party (easylistchina+easylist.txt: 37709) -.textonlyads.com -# ||text-link-ads.com^$third-party (easylistchina+easylist.txt: 37708) -.text-link-ads.com -# ||testnet.nl^$third-party (easylistchina+easylist.txt: 37707) -.testnet.nl -# ||testfilter.com^$third-party (easylistchina+easylist.txt: 37706) -.testfilter.com -# ||terraclicks.com^$third-party (easylistchina+easylist.txt: 37705) -.terraclicks.com -# ||teracreative.com^$third-party (easylistchina+easylist.txt: 37704) -.teracreative.com -# ||teracent.net^$third-party (easylistchina+easylist.txt: 37703) -.teracent.net -# ||teosredic.com^$third-party (easylistchina+easylist.txt: 37702) -.teosredic.com -# ||tennerlist.com^$third-party (easylistchina+easylist.txt: 37701) -.tennerlist.com -# ||telemetryverification.net^$third-party (easylistchina+easylist.txt: 37700) -.telemetryverification.net -# ||technoratimedia.com^$third-party (easylistchina+easylist.txt: 37699) -.technoratimedia.com -# ||techclicks.net^$third-party (easylistchina+easylist.txt: 37698) -.techclicks.net -# ||tec-tec-boom.com^$third-party (easylistchina+easylist.txt: 37697) -.tec-tec-boom.com -# ||teasernet.com^$third-party (easylistchina+easylist.txt: 37696) -.teasernet.com -# ||teambetaffiliates.com^$third-party (easylistchina+easylist.txt: 37695) -.teambetaffiliates.com -# ||teads.tv^$third-party (easylistchina+easylist.txt: 37694) -.teads.tv -# ||td563.com^$third-party (easylistchina+easylist.txt: 37693) -.td563.com -# ||td553.com^$third-party (easylistchina+easylist.txt: 37692) -.td553.com -# ||tcadops.ca^$third-party (easylistchina+easylist.txt: 37691) -.tcadops.ca -# ||tbaffiliate.com^$third-party (easylistchina+easylist.txt: 37690) -.tbaffiliate.com -# ||tattomedia.com^$third-party (easylistchina+easylist.txt: 37689) -.tattomedia.com -# ||targetspot.com^$third-party (easylistchina+easylist.txt: 37688) -.targetspot.com -# ||targetpoint.com^$third-party (easylistchina+easylist.txt: 37687) -.targetpoint.com -# ||targetnet.com^$third-party (easylistchina+easylist.txt: 37686) -.targetnet.com -# ||targetadverts.com^$third-party (easylistchina+easylist.txt: 37685) -.targetadverts.com -# ||tardangro.com^$third-party (easylistchina+easylist.txt: 37684) -.tardangro.com -# ||tapad.com^$third-party (easylistchina+easylist.txt: 37683) -.tapad.com -# ||tangozebra.com^$third-party (easylistchina+easylist.txt: 37682) -.tangozebra.com -# ||talaropa.com^$third-party (easylistchina+easylist.txt: 37681) -.talaropa.com -# ||takensparks.com^$third-party (easylistchina+easylist.txt: 37680) -.takensparks.com -# ||tailsweep.com^$third-party (easylistchina+easylist.txt: 37679) -.tailsweep.com -# ||tagshost.com^$third-party (easylistchina+easylist.txt: 37678) -.tagshost.com -# ||tagjunction.com^$third-party (easylistchina+easylist.txt: 37677) -.tagjunction.com -# ||taggify.net^$third-party (easylistchina+easylist.txt: 37676) -.taggify.net -# ||tafmaster.com^$third-party (easylistchina+easylist.txt: 37675) -.tafmaster.com -# ||tacticalrepublic.com^$third-party (easylistchina+easylist.txt: 37674) -.tacticalrepublic.com -# ||tacoda.net^$third-party (easylistchina+easylist.txt: 37673) -.tacoda.net -# ||tacastas.com^$third-party (easylistchina+easylist.txt: 37672) -.tacastas.com -# ||t3q7af0z.com^$third-party (easylistchina+easylist.txt: 37671) -.t3q7af0z.com -# ||syndicatedsearchresults.com^$third-party (easylistchina+easylist.txt: 37670) -.syndicatedsearchresults.com -# ||synapsys.us^$third-party (easylistchina+easylist.txt: 37669) -.synapsys.us -# ||symbiosting.com^$third-party (easylistchina+easylist.txt: 37668) -.symbiosting.com -# ||swoop.com^$third-party (easylistchina+easylist.txt: 37667) -.swoop.com -# ||switchadhub.com^$third-party (easylistchina+easylist.txt: 37666) -.switchadhub.com -# ||swelen.com^$third-party (easylistchina+easylist.txt: 37665) -.swelen.com -# ||swbdds.com^$third-party (easylistchina+easylist.txt: 37664) -.swbdds.com -# ||swadvertising.org^$third-party (easylistchina+easylist.txt: 37663) -.swadvertising.org -# ||svlu.net^$third-party (easylistchina+easylist.txt: 37662) -.svlu.net -# ||suthome.com^$third-party (easylistchina+easylist.txt: 37661) -.suthome.com -# ||surveywidget.biz^$third-party (easylistchina+easylist.txt: 37660) -.surveywidget.biz -# ||surveyvalue.net^$third-party (easylistchina+easylist.txt: 37659) -.surveyvalue.net -# ||surveyvalue.mobi^$third-party (easylistchina+easylist.txt: 37658) -.surveyvalue.mobi -# ||survey-poll.com^$third-party (easylistchina+easylist.txt: 37657) -.survey-poll.com -# ||surfboarddigital.com.au^$third-party (easylistchina+easylist.txt: 37656) -.surfboarddigital.com.au -# ||surf-bar-traffic.com^$third-party (easylistchina+easylist.txt: 37655) -.surf-bar-traffic.com -# ||supremeadsonline.com^$third-party (easylistchina+easylist.txt: 37654) -.supremeadsonline.com -# ||supplyframe.com^$third-party (easylistchina+easylist.txt: 37653) -.supplyframe.com -# ||supersitetime.com^$third-party (easylistchina+easylist.txt: 37652) -.supersitetime.com -# ||superloofy.com^$third-party (easylistchina+easylist.txt: 37651) -.superloofy.com -# ||super-links.net^$third-party (easylistchina+easylist.txt: 37650) -.super-links.net -# ||suparewards.com^$third-party (easylistchina+easylist.txt: 37649) -.suparewards.com -# ||sunmedia.net^$third-party (easylistchina+easylist.txt: 37648) -.sunmedia.net -# ||sumarketing.co.uk^$third-party (easylistchina+easylist.txt: 37647) -.sumarketing.co.uk -# ||sulvo.co^$third-party (easylistchina+easylist.txt: 37646) -.sulvo.co -# ||suitesmart.com^$third-party (easylistchina+easylist.txt: 37645) -.suitesmart.com -# ||suite6ixty6ix.com^$third-party (easylistchina+easylist.txt: 37644) -.suite6ixty6ix.com -# ||suggesttool.com^$third-party (easylistchina+easylist.txt: 37643) -.suggesttool.com -# ||sugarlistsuggest.info^$third-party (easylistchina+easylist.txt: 37642) -.sugarlistsuggest.info -# ||suffusefacultytsunami.info^$third-party (easylistchina+easylist.txt: 37641) -.suffusefacultytsunami.info -# ||successfultogether.co.uk^$third-party (easylistchina+easylist.txt: 37640) -.successfultogether.co.uk -# ||submitexpress.co.uk^$third-party (easylistchina+easylist.txt: 37639) -.submitexpress.co.uk -# ||sublimemedia.net^$third-party (easylistchina+easylist.txt: 37638) -.sublimemedia.net -# ||style-eyes.eu^$third-party (easylistchina+easylist.txt: 37637) -.style-eyes.eu -# ||struq.com^$third-party (easylistchina+easylist.txt: 37636) -.struq.com -# ||strikead.com^$third-party (easylistchina+easylist.txt: 37635) -.strikead.com -# ||streamdownloadonline.com^$third-party (easylistchina+easylist.txt: 37634) -.streamdownloadonline.com -# ||streamate.com^$third-party (easylistchina+easylist.txt: 37633) -.streamate.com -# ||stocker.bonnint.net^$third-party (easylistchina+easylist.txt: 37632) -.stocker.bonnint.net -# ||stickyadstv.com^$third-party (easylistchina+easylist.txt: 37631) -.stickyadstv.com -# ||stealthlockers.com^$third-party (easylistchina+easylist.txt: 37630) -.stealthlockers.com -# ||statsmobi.com^$third-party (easylistchina+easylist.txt: 37629) -.statsmobi.com -# ||statelead.com^$third-party (easylistchina+easylist.txt: 37628) -.statelead.com -# ||statecannoticed.com^$third-party (easylistchina+easylist.txt: 37627) -.statecannoticed.com -# ||statcamp.net^$third-party (easylistchina+easylist.txt: 37626) -.statcamp.net -# ||startpagea.com^$third-party (easylistchina+easylist.txt: 37625) -.startpagea.com -# ||starlayer.com^$third-party (easylistchina+easylist.txt: 37624) -.starlayer.com -# ||stargamesaffiliate.com^$third-party (easylistchina+easylist.txt: 37623) -.stargamesaffiliate.com -# ||star-advertising.com^$third-party (easylistchina+easylist.txt: 37622) -.star-advertising.com -# ||standartads.com^$third-party (easylistchina+easylist.txt: 37621) -.standartads.com -# ||stalesplit.com^$third-party (easylistchina+easylist.txt: 37620) -.stalesplit.com -# ||stackattacka.com^$third-party (easylistchina+easylist.txt: 37619) -.stackattacka.com -# ||stackadapt.com^$third-party (easylistchina+easylist.txt: 37618) -.stackadapt.com -# ||stabletrappeddevote.info^$third-party (easylistchina+easylist.txt: 37617) -.stabletrappeddevote.info -# ||sta-ads.com^$third-party (easylistchina+easylist.txt: 37616) -.sta-ads.com -# ||srx.com.sg^$third-party (easylistchina+easylist.txt: 37615) -.srx.com.sg -# ||srtk.net^$third-party (easylistchina+easylist.txt: 37614) -.srtk.net -# ||sq2trk2.com^$third-party (easylistchina+easylist.txt: 37613) -.sq2trk2.com -# ||sproose.com^$third-party (easylistchina+easylist.txt: 37612) -.sproose.com -# ||sprintrade.com^$third-party (easylistchina+easylist.txt: 37611) -.sprintrade.com -# ||spoutable.com^$third-party (easylistchina+easylist.txt: 37610) -.spoutable.com -# ||spotxchange.com^$third-party (easylistchina+easylist.txt: 37609) -.spotxchange.com -# ||spottt.com^$third-party (easylistchina+easylist.txt: 37608) -.spottt.com -# ||spotscenered.info^$third-party (easylistchina+easylist.txt: 37607) -.spotscenered.info -# ||spotrails.com^$third-party (easylistchina+easylist.txt: 37606) -.spotrails.com -# ||sportsyndicator.com^$third-party (easylistchina+easylist.txt: 37605) -.sportsyndicator.com -# ||sponsorselect.com^$third-party (easylistchina+easylist.txt: 37604) -.sponsorselect.com -# ||sponsorpay.com^$third-party (easylistchina+easylist.txt: 37603) -.sponsorpay.com -# ||sponsorpalace.com^$third-party (easylistchina+easylist.txt: 37602) -.sponsorpalace.com -# ||sponsormob.com^$third-party (easylistchina+easylist.txt: 37601) -.sponsormob.com -# ||sponsoredtweets.com^$third-party (easylistchina+easylist.txt: 37600) -.sponsoredtweets.com -# ||sponsoredby.me^$third-party (easylistchina+easylist.txt: 37599) -.sponsoredby.me -# ||spongecell.com^$third-party (easylistchina+easylist.txt: 37598) -.spongecell.com -# ||spmxs.com^$third-party (easylistchina+easylist.txt: 37597) -.spmxs.com -# ||splut.com^$third-party (easylistchina+easylist.txt: 37596) -.splut.com -# ||splinky.com^$third-party (easylistchina+easylist.txt: 37595) -.splinky.com -# ||spinbox.net^$third-party (easylistchina+easylist.txt: 37594) -.spinbox.net -# ||spinbox.freedom.com^$third-party (easylistchina+easylist.txt: 37593) -.spinbox.freedom.com -# ||spiderhood.net^$third-party (easylistchina+easylist.txt: 37592) -.spiderhood.net -# ||speedsuccess.net^$third-party (easylistchina+easylist.txt: 37591) -.speedsuccess.net -# ||speedshiftmedia.com^$third-party (easylistchina+easylist.txt: 37590) -.speedshiftmedia.com -# ||speeb.com^$third-party (easylistchina+easylist.txt: 37589) -.speeb.com -# ||spectato.com^$third-party (easylistchina+easylist.txt: 37588) -.spectato.com -# ||specificmedia.com^$third-party (easylistchina+easylist.txt: 37587) -.specificmedia.com -# ||specificclick.net^$third-party (easylistchina+easylist.txt: 37586) -.specificclick.net -# ||sparkstudios.com^$third-party (easylistchina+easylist.txt: 37585) -.sparkstudios.com -# ||sotuktraffic.com^$third-party (easylistchina+easylist.txt: 37584) -.sotuktraffic.com -# ||sophiasearch.com^$third-party (easylistchina+easylist.txt: 37583) -.sophiasearch.com -# ||sonobi.com^$third-party (easylistchina+easylist.txt: 37582) -.sonobi.com -# ||sonnerie.net^$third-party (easylistchina+easylist.txt: 37581) -.sonnerie.net -# ||solutionzip.info^$third-party (easylistchina+easylist.txt: 37580) -.solutionzip.info -# ||solocpm.com^$third-party (easylistchina+easylist.txt: 37579) -.solocpm.com -# ||solarmosa.com^$third-party (easylistchina+easylist.txt: 37578) -.solarmosa.com -# ||solapoka.com^$third-party (easylistchina+easylist.txt: 37577) -.solapoka.com -# ||sokitosa.com^$third-party (easylistchina+easylist.txt: 37576) -.sokitosa.com -# ||softwares2015.com^$third-party (easylistchina+easylist.txt: 37575) -.softwares2015.com -# ||softpopads.com^$third-party (easylistchina+easylist.txt: 37574) -.softpopads.com -# ||softonicads.com^$third-party (easylistchina+easylist.txt: 37573) -.softonicads.com -# ||soft4dle.com^$third-party (easylistchina+easylist.txt: 37572) -.soft4dle.com -# ||sodud.com^$third-party (easylistchina+easylist.txt: 37571) -.sodud.com -# ||sociomantic.com^$third-party (easylistchina+easylist.txt: 37570) -.sociomantic.com -# ||sociocast.com^$third-party (easylistchina+easylist.txt: 37569) -.sociocast.com -# ||society6.com^$third-party (easylistchina+easylist.txt: 37568) -.society6.com -# ||socialspark.com^$third-party (easylistchina+easylist.txt: 37567) -.socialspark.com -# ||socialreach.com^$third-party (easylistchina+easylist.txt: 37566) -.socialreach.com -# ||socialmedia.com^$third-party (easylistchina+easylist.txt: 37565) -.socialmedia.com -# ||sociallypublish.com^$third-party (easylistchina+easylist.txt: 37564) -.sociallypublish.com -# ||socialelective.com^$third-party (easylistchina+easylist.txt: 37563) -.socialelective.com -# ||socialbirth.com^$third-party (easylistchina+easylist.txt: 37562) -.socialbirth.com -# ||sochr.com^$third-party (easylistchina+easylist.txt: 37561) -.sochr.com -# ||so-excited.com^$third-party (easylistchina+easylist.txt: 37560) -.so-excited.com -# ||sndkorea.co.kr^$third-party (easylistchina+easylist.txt: 37559) -.sndkorea.co.kr -# ||snap.com^$third-party (easylistchina+easylist.txt: 37558) -.snap.com -# ||sn00.net^$third-party (easylistchina+easylist.txt: 37557) -.sn00.net -# ||sms-mmm.com^$third-party (easylistchina+easylist.txt: 37556) -.sms-mmm.com -# ||smpgfx.com^$third-party (easylistchina+easylist.txt: 37555) -.smpgfx.com -# ||smowtion.com^$third-party (easylistchina+easylist.txt: 37554) -.smowtion.com -# ||smilyes4u.com^$third-party (easylistchina+easylist.txt: 37553) -.smilyes4u.com -# ||smileycentral.com^$third-party (easylistchina+easylist.txt: 37552) -.smileycentral.com -# ||smartyads.com^$third-party (easylistchina+easylist.txt: 37551) -.smartyads.com -# ||smarttds.ru^$third-party (easylistchina+easylist.txt: 37550) -.smarttds.ru -# ||smarttargetting.net^$third-party (easylistchina+easylist.txt: 37549) -.smarttargetting.net -# ||smarttargetting.com^$third-party (easylistchina+easylist.txt: 37548) -.smarttargetting.com -# ||smarttargetting.co.uk^$third-party (easylistchina+easylist.txt: 37547) -.smarttargetting.co.uk -# ||smarterdownloads.net^$third-party (easylistchina+easylist.txt: 37546) -.smarterdownloads.net -# ||smartdevicemedia.com^$third-party (easylistchina+easylist.txt: 37545) -.smartdevicemedia.com -# ||smartadserver.com^$third-party (easylistchina+easylist.txt: 37544) -.smartadserver.com -# ||smartad.ee^$third-party (easylistchina+easylist.txt: 37543) -.smartad.ee -# ||smart2.allocine.fr^$third-party (easylistchina+easylist.txt: 37542) -.smart2.allocine.fr -# ||smart.allocine.fr^$third-party (easylistchina+easylist.txt: 37541) -.smart.allocine.fr -# ||smart-feed-online.com^$third-party (easylistchina+easylist.txt: 37540) -.smart-feed-online.com -# ||smaclick.com^$third-party (easylistchina+easylist.txt: 37539) -.smaclick.com -# ||slinse.com^$third-party (easylistchina+easylist.txt: 37538) -.slinse.com -# ||slimtrade.com^$third-party (easylistchina+easylist.txt: 37537) -.slimtrade.com -# ||slimspots.com^$third-party (easylistchina+easylist.txt: 37536) -.slimspots.com -# ||slikslik.com^$third-party (easylistchina+easylist.txt: 37535) -.slikslik.com -# ||slfpu.com^$third-party (easylistchina+easylist.txt: 37534) -.slfpu.com -# ||skyscrpr.com^$third-party (easylistchina+easylist.txt: 37533) -.skyscrpr.com -# ||skyactivate.com^$third-party (easylistchina+easylist.txt: 37532) -.skyactivate.com -# ||skoovyads.com^$third-party (easylistchina+easylist.txt: 37531) -.skoovyads.com -# ||skinected.com^$third-party (easylistchina+easylist.txt: 37530) -.skinected.com -# ||skimlinks.com^$third-party (easylistchina+easylist.txt: 37529) -.skimlinks.com -# ||sittiad.com^$third-party (easylistchina+easylist.txt: 37528) -.sittiad.com -# ||sitethree.com^$third-party (easylistchina+easylist.txt: 37527) -.sitethree.com -# ||sitesense-oo.com^$third-party (easylistchina+easylist.txt: 37526) -.sitesense-oo.com -# ||sitescoutadserver.com^$third-party (easylistchina+easylist.txt: 37525) -.sitescoutadserver.com -# ||sitescout.com^$third-party (easylistchina+easylist.txt: 37524) -.sitescout.com -# ||siteencore.com^$third-party (easylistchina+easylist.txt: 37523) -.siteencore.com -# ||sitebrand.com^$third-party (easylistchina+easylist.txt: 37522) -.sitebrand.com -# ||simplyhired.com^$third-party (easylistchina+easylist.txt: 37521) -.simplyhired.com -# ||simply.com^$third-party (easylistchina+easylist.txt: 37520) -.simply.com -# ||simpio.com^$third-party (easylistchina+easylist.txt: 37519) -.simpio.com -# ||silverads.net^$third-party (easylistchina+easylist.txt: 37518) -.silverads.net -# ||silstavo.com^$third-party (easylistchina+easylist.txt: 37517) -.silstavo.com -# ||silence-ads.com^$third-party (easylistchina+easylist.txt: 37516) -.silence-ads.com -# ||siamzone.com^$third-party (easylistchina+easylist.txt: 37515) -.siamzone.com -# ||showyoursite.com^$third-party (easylistchina+easylist.txt: 37514) -.showyoursite.com -# ||shopzyapp.com^$third-party (easylistchina+easylist.txt: 37513) -.shopzyapp.com -# ||shoppingads.com^$third-party (easylistchina+easylist.txt: 37512) -.shoppingads.com -# ||shopalyst.com^$third-party (easylistchina+easylist.txt: 37511) -.shopalyst.com -# ||shoogloonetwork.com^$third-party (easylistchina+easylist.txt: 37510) -.shoogloonetwork.com -# ||sharethrough.com^$third-party (easylistchina+easylist.txt: 37509) -.sharethrough.com -# ||shareresults.com^$third-party (easylistchina+easylist.txt: 37508) -.shareresults.com -# ||sharegods.com^$third-party (easylistchina+easylist.txt: 37507) -.sharegods.com -# ||shareasale.com^$third-party (easylistchina+easylist.txt: 37506) -.shareasale.com -# ||share-server.com^$third-party (easylistchina+easylist.txt: 37505) -.share-server.com -# ||shakamech.com^$third-party (easylistchina+easylist.txt: 37504) -.shakamech.com -# ||sexmoney.com^$third-party (easylistchina+easylist.txt: 37503) -.sexmoney.com -# ||sevendaystart.com^$third-party (easylistchina+easylist.txt: 37502) -.sevendaystart.com -# ||sevenads.net^$third-party (easylistchina+easylist.txt: 37501) -.sevenads.net -# ||sev4ifmxa.com^$third-party (easylistchina+easylist.txt: 37500) -.sev4ifmxa.com -# ||sethads.info^$third-party (easylistchina+easylist.txt: 37499) -.sethads.info -# ||serving-sys.com^$third-party (easylistchina+easylist.txt: 37498) -.serving-sys.com -# ||servemeads.com^$third-party (easylistchina+easylist.txt: 37497) -.servemeads.com -# ||servedbyopenx.com^$third-party (easylistchina+easylist.txt: 37496) -.servedbyopenx.com -# ||servedbyadbutler.com^$third-party (easylistchina+easylist.txt: 37495) -.servedbyadbutler.com -# ||servebom.com^$third-party (easylistchina+easylist.txt: 37494) -.servebom.com -# ||serve-sys.com^$third-party (easylistchina+easylist.txt: 37493) -.serve-sys.com -# ||servali.net^$third-party (easylistchina+easylist.txt: 37492) -.servali.net -# ||seriousfiles.com^$third-party (easylistchina+easylist.txt: 37491) -.seriousfiles.com -# ||serialbay.com^$third-party (easylistchina+easylist.txt: 37490) -.serialbay.com -# ||senzapudore.net^$third-party (easylistchina+easylist.txt: 37489) -.senzapudore.net -# ||sendptp.com^$third-party (easylistchina+easylist.txt: 37488) -.sendptp.com -# ||selsin.net^$third-party (easylistchina+easylist.txt: 37487) -.selsin.net -# ||sellhealth.com^$third-party (easylistchina+easylist.txt: 37486) -.sellhealth.com -# ||sekindo.com^$third-party (easylistchina+easylist.txt: 37485) -.sekindo.com -# ||seekads.net^$third-party (easylistchina+easylist.txt: 37484) -.seekads.net -# ||seductionprofits.com^$third-party (easylistchina+easylist.txt: 37483) -.seductionprofits.com -# ||sedoparking.com^$third-party (easylistchina+easylist.txt: 37482) -.sedoparking.com -# ||securitain.com^$third-party (easylistchina+easylist.txt: 37481) -.securitain.com -# ||securewebsiteaccess.com^$third-party (easylistchina+easylist.txt: 37480) -.securewebsiteaccess.com -# ||securesoft.info^$third-party (easylistchina+easylist.txt: 37479) -.securesoft.info -# ||secure-softwaremanager.com^$third-party (easylistchina+easylist.txt: 37478) -.secure-softwaremanager.com -# ||secondstreetmedia.com^$third-party (easylistchina+easylist.txt: 37477) -.secondstreetmedia.com -# ||seccoads.com^$third-party (easylistchina+easylist.txt: 37476) -.seccoads.com -# ||search123.uk.com^$third-party (easylistchina+easylist.txt: 37475) -.search123.uk.com -# ||scratchaffs.com^$third-party (easylistchina+easylist.txt: 37474) -.scratchaffs.com -# ||scootloor.com^$third-party (easylistchina+easylist.txt: 37473) -.scootloor.com -# ||sceno.ru^$third-party (easylistchina+easylist.txt: 37472) -.sceno.ru -# ||scanscout.com^$third-party (easylistchina+easylist.txt: 37471) -.scanscout.com -# ||scanmedios.com^$third-party (easylistchina+easylist.txt: 37470) -.scanmedios.com -# ||sbcpower.com^$third-party (easylistchina+easylist.txt: 37469) -.sbcpower.com -# ||sbaffiliates.com^$third-party (easylistchina+easylist.txt: 37468) -.sbaffiliates.com -# ||sba.about.co.kr^$third-party (easylistchina+easylist.txt: 37467) -.sba.about.co.kr -# ||saymedia.com^$third-party (easylistchina+easylist.txt: 37466) -.saymedia.com -# ||sayadcoltd.com^$third-party (easylistchina+easylist.txt: 37465) -.sayadcoltd.com -# ||saveads.org^$third-party (easylistchina+easylist.txt: 37464) -.saveads.org -# ||saveads.net^$third-party (easylistchina+easylist.txt: 37463) -.saveads.net -# ||satgreera.com^$third-party (easylistchina+easylist.txt: 37462) -.satgreera.com -# ||saple.net^$third-party (easylistchina+easylist.txt: 37461) -.saple.net -# ||salvador24.com^$third-party (easylistchina+easylist.txt: 37460) -.salvador24.com -# ||saltamendors.com^$third-party (easylistchina+easylist.txt: 37459) -.saltamendors.com -# ||salesnleads.com^$third-party (easylistchina+easylist.txt: 37458) -.salesnleads.com -# ||sakura-traffic.com^$third-party (easylistchina+easylist.txt: 37457) -.sakura-traffic.com -# ||safelistextreme.com^$third-party (easylistchina+easylist.txt: 37456) -.safelistextreme.com -# ||safecllc.com^$third-party (easylistchina+easylist.txt: 37455) -.safecllc.com -# ||safeadnetworkdata.net^$third-party (easylistchina+easylist.txt: 37454) -.safeadnetworkdata.net -# ||sa.entireweb.com^$third-party (easylistchina+easylist.txt: 37453) -.sa.entireweb.com -# ||s2d6.com^$third-party (easylistchina+easylist.txt: 37452) -.s2d6.com -# ||s.adroll.com^$third-party (easylistchina+easylist.txt: 37451) -.s.adroll.com -# ||ryminos.com^$third-party (easylistchina+easylist.txt: 37450) -.ryminos.com -# ||rwpads.com^$third-party (easylistchina+easylist.txt: 37449) -.rwpads.com -# ||runreproducerow.com^$third-party (easylistchina+easylist.txt: 37448) -.runreproducerow.com -# ||runadtag.com^$third-party (easylistchina+easylist.txt: 37447) -.runadtag.com -# ||rummyaffiliates.com^$third-party (easylistchina+easylist.txt: 37446) -.rummyaffiliates.com -# ||rubiconproject.com^$third-party (easylistchina+easylist.txt: 37445) -.rubiconproject.com -# ||rtbpops.com^$third-party (easylistchina+easylist.txt: 37444) -.rtbpops.com -# ||rtbpop.com^$third-party (easylistchina+easylist.txt: 37443) -.rtbpop.com -# ||rtbmedia.org^$third-party (easylistchina+easylist.txt: 37442) -.rtbmedia.org -# ||rtbidder.net^$third-party (easylistchina+easylist.txt: 37441) -.rtbidder.net -# ||roxyaffiliates.com^$third-party (easylistchina+easylist.txt: 37440) -.roxyaffiliates.com -# ||rovion.com^$third-party (easylistchina+easylist.txt: 37439) -.rovion.com -# ||rotorads.com^$third-party (easylistchina+easylist.txt: 37438) -.rotorads.com -# ||rotatingad.com^$third-party (easylistchina+easylist.txt: 37437) -.rotatingad.com -# ||rotaban.ru^$third-party (easylistchina+easylist.txt: 37436) -.rotaban.ru -# ||romance-net.com^$third-party (easylistchina+easylist.txt: 37435) -.romance-net.com -# ||roirocket.com^$third-party (easylistchina+easylist.txt: 37434) -.roirocket.com -# ||roicharger.com^$third-party (easylistchina+easylist.txt: 37433) -.roicharger.com -# ||rogueaffiliatesystem.com^$third-party (easylistchina+easylist.txt: 37432) -.rogueaffiliatesystem.com -# ||rocketier.net^$third-party (easylistchina+easylist.txt: 37431) -.rocketier.net -# ||robocat.me^$third-party (easylistchina+easylist.txt: 37430) -.robocat.me -# ||rnmd.net^$third-party (easylistchina+easylist.txt: 37429) -.rnmd.net -# ||rmxads.com^$third-party (easylistchina+easylist.txt: 37428) -.rmxads.com -# ||rixaka.com^$third-party (easylistchina+easylist.txt: 37427) -.rixaka.com -# ||riverbanksand.com^$third-party (easylistchina+easylist.txt: 37426) -.riverbanksand.com -# ||ripplead.com^$third-party (easylistchina+easylist.txt: 37425) -.ripplead.com -# ||ringtonepartner.com^$third-party (easylistchina+easylist.txt: 37424) -.ringtonepartner.com -# ||ringtonematcher.com^$third-party (easylistchina+easylist.txt: 37423) -.ringtonematcher.com -# ||richwebmedia.com^$third-party (easylistchina+easylist.txt: 37422) -.richwebmedia.com -# ||richmedia247.com^$third-party (easylistchina+easylist.txt: 37421) -.richmedia247.com -# ||ricead.com^$third-party (easylistchina+easylist.txt: 37420) -.ricead.com -# ||rhythmxchange.com^$third-party (easylistchina+easylist.txt: 37419) -.rhythmxchange.com -# ||rhown.com^$third-party (easylistchina+easylist.txt: 37418) -.rhown.com -# ||rfihub.net^$third-party (easylistchina+easylist.txt: 37417) -.rfihub.net -# ||rewardstyle.com^$third-party (easylistchina+easylist.txt: 37416) -.rewardstyle.com -# ||rewardsaffiliates.com^$third-party (easylistchina+easylist.txt: 37415) -.rewardsaffiliates.com -# ||rewardisement.com^$third-party (easylistchina+easylist.txt: 37414) -.rewardisement.com -# ||revsci.net^$third-party (easylistchina+easylist.txt: 37413) -.revsci.net -# ||revresponse.com^$third-party (easylistchina+easylist.txt: 37412) -.revresponse.com -# ||revresda.com^$third-party (easylistchina+easylist.txt: 37411) -.revresda.com -# ||revokinets.com^$third-party (easylistchina+easylist.txt: 37410) -.revokinets.com -# ||revmob.com^$third-party (easylistchina+easylist.txt: 37409) -.revmob.com -# ||revfusion.net^$third-party (easylistchina+easylist.txt: 37408) -.revfusion.net -# ||revenuemax.de^$third-party (easylistchina+easylist.txt: 37407) -.revenuemax.de -# ||revenuemantra.com^$third-party (easylistchina+easylist.txt: 37406) -.revenuemantra.com -# ||revenuehits.com^$third-party (easylistchina+easylist.txt: 37405) -.revenuehits.com -# ||revenuegiants.com^$third-party (easylistchina+easylist.txt: 37404) -.revenuegiants.com -# ||revenue.com^$third-party (easylistchina+easylist.txt: 37403) -.revenue.com -# ||revcontent.com^$third-party (easylistchina+easylist.txt: 37402) -.revcontent.com -# ||rev2pub.com^$third-party (easylistchina+easylist.txt: 37401) -.rev2pub.com -# ||reussissonsensemble.fr^$third-party (easylistchina+easylist.txt: 37400) -.reussissonsensemble.fr -# ||retargeter.com^$third-party (easylistchina+easylist.txt: 37399) -.retargeter.com -# ||resultsz.com^$third-party (easylistchina+easylist.txt: 37398) -.resultsz.com -# ||resultlinks.com^$third-party (easylistchina+easylist.txt: 37397) -.resultlinks.com -# ||respondhq.com^$third-party (easylistchina+easylist.txt: 37396) -.respondhq.com -# ||respond-adserver.cloudapp.net^$third-party (easylistchina+easylist.txt: 37395) -.respond-adserver.cloudapp.net -# ||respecific.net^$third-party (easylistchina+easylist.txt: 37394) -.respecific.net -# ||resideral.com^$third-party (easylistchina+easylist.txt: 37393) -.resideral.com -# ||repaynik.com^$third-party (easylistchina+easylist.txt: 37392) -.repaynik.com -# ||remiroyal.ro^$third-party (easylistchina+easylist.txt: 37391) -.remiroyal.ro -# ||remintrex.com^$third-party (easylistchina+easylist.txt: 37390) -.remintrex.com -# ||relytec.com^$third-party (easylistchina+easylist.txt: 37389) -.relytec.com -# ||relevanti.com^$third-party (easylistchina+easylist.txt: 37388) -.relevanti.com -# ||relestar.com^$third-party (easylistchina+easylist.txt: 37387) -.relestar.com -# ||relatedweboffers.com^$third-party (easylistchina+easylist.txt: 37386) -.relatedweboffers.com -# ||reklamz.com^$third-party (easylistchina+easylist.txt: 37385) -.reklamz.com -# ||regurgical.com^$third-party (easylistchina+easylist.txt: 37384) -.regurgical.com -# ||registry.cw.cm^$third-party (easylistchina+easylist.txt: 37383) -.registry.cw.cm -# ||regdfh.info^$third-party (easylistchina+easylist.txt: 37382) -.regdfh.info -# ||referback.com^$third-party (easylistchina+easylist.txt: 37381) -.referback.com -# ||refban.com^$third-party (easylistchina+easylist.txt: 37380) -.refban.com -# ||reelcentric.com^$third-party (easylistchina+easylist.txt: 37379) -.reelcentric.com -# ||reduxmediagroup.com^$third-party (easylistchina+easylist.txt: 37378) -.reduxmediagroup.com -# ||redpeepers.com^$third-party (easylistchina+easylist.txt: 37377) -.redpeepers.com -# ||redintelligence.net^$third-party (easylistchina+easylist.txt: 37376) -.redintelligence.net -# ||redcourtside.com^$third-party (easylistchina+easylist.txt: 37375) -.redcourtside.com -# ||recomendedsite.com^$third-party (easylistchina+easylist.txt: 37374) -.recomendedsite.com -# ||reate.info^$third-party (easylistchina+easylist.txt: 37373) -.reate.info -# ||realvu.net^$third-party (easylistchina+easylist.txt: 37372) -.realvu.net -# ||realsecuredredirect.com^$third-party (easylistchina+easylist.txt: 37371) -.realsecuredredirect.com -# ||realsecuredredir.com^$third-party (easylistchina+easylist.txt: 37370) -.realsecuredredir.com -# ||realmedia.com^$third-party (easylistchina+easylist.txt: 37369) -.realmedia.com -# ||realmatch.com^$third-party (easylistchina+easylist.txt: 37368) -.realmatch.com -# ||realclick.co.kr^$third-party (easylistchina+easylist.txt: 37367) -.realclick.co.kr -# ||readserver.net^$third-party (easylistchina+easylist.txt: 37366) -.readserver.net -# ||reactx.com^$third-party (easylistchina+easylist.txt: 37365) -.reactx.com -# ||reachmode.com^$third-party (easylistchina+easylist.txt: 37364) -.reachmode.com -# ||reachlocal.com^$third-party (easylistchina+easylist.txt: 37363) -.reachlocal.com -# ||reachjunction.com^$third-party (easylistchina+easylist.txt: 37362) -.reachjunction.com -# ||rddywd.com^$third-party (easylistchina+easylist.txt: 37361) -.rddywd.com -# ||rcurn.com^$third-party (easylistchina+easylist.txt: 37360) -.rcurn.com -# ||rcads.net^$third-party (easylistchina+easylist.txt: 37359) -.rcads.net -# ||rbnt.org^$third-party (easylistchina+easylist.txt: 37358) -.rbnt.org -# ||rawasy.com^$third-party (easylistchina+easylist.txt: 37357) -.rawasy.com -# ||rateaccept.net^$third-party (easylistchina+easylist.txt: 37356) -.rateaccept.net -# ||rapt.com^$third-party (easylistchina+easylist.txt: 37355) -.rapt.com -# ||rampanel.com^$third-party (easylistchina+easylist.txt: 37354) -.rampanel.com -# ||rainwealth.com^$third-party (easylistchina+easylist.txt: 37353) -.rainwealth.com -# ||rainbowtgx.com^$third-party (easylistchina+easylist.txt: 37352) -.rainbowtgx.com -# ||raiggy.com^$third-party (easylistchina+easylist.txt: 37351) -.raiggy.com -# ||ragapa.com^$third-party (easylistchina+easylist.txt: 37350) -.ragapa.com -# ||radiusmarketing.com^$third-party (easylistchina+easylist.txt: 37349) -.radiusmarketing.com -# ||radicalwealthformula.com^$third-party (easylistchina+easylist.txt: 37348) -.radicalwealthformula.com -# ||radeant.com^$third-party (easylistchina+easylist.txt: 37347) -.radeant.com -# ||rabilitan.com^$third-party (easylistchina+easylist.txt: 37346) -.rabilitan.com -# ||qwzmje9w.com^$third-party (easylistchina+easylist.txt: 37345) -.qwzmje9w.com -# ||qwobl.net^$third-party (easylistchina+easylist.txt: 37344) -.qwobl.net -# ||quinstreet.com^$third-party (easylistchina+easylist.txt: 37343) -.quinstreet.com -# ||quickcash500.com^$third-party (easylistchina+easylist.txt: 37342) -.quickcash500.com -# ||questus.com^$third-party (easylistchina+easylist.txt: 37341) -.questus.com -# ||questionmarket.com^$third-party (easylistchina+easylist.txt: 37340) -.questionmarket.com -# ||quensillo.com^$third-party (easylistchina+easylist.txt: 37339) -.quensillo.com -# ||quantumads.com^$third-party (easylistchina+easylist.txt: 37338) -.quantumads.com -# ||qualitypageviews.com^$third-party (easylistchina+easylist.txt: 37337) -.qualitypageviews.com -# ||qservz.com^$third-party (easylistchina+easylist.txt: 37336) -.qservz.com -# ||qnsr.com^$third-party (easylistchina+easylist.txt: 37335) -.qnsr.com -# ||qnrzmapdcc.com^$third-party (easylistchina+easylist.txt: 37334) -.qnrzmapdcc.com -# ||qksz.net^$third-party (easylistchina+easylist.txt: 37333) -.qksz.net -# ||qksrv.net^$third-party (easylistchina+easylist.txt: 37332) -.qksrv.net -# ||qdmil.com^$third-party (easylistchina+easylist.txt: 37331) -.qdmil.com -# ||qadservice.com^$third-party (easylistchina+easylist.txt: 37330) -.qadservice.com -# ||qadserve.com^$third-party (easylistchina+easylist.txt: 37329) -.qadserve.com -# ||q1xyxm89.com^$third-party (easylistchina+easylist.txt: 37328) -.q1xyxm89.com -# ||q1mediahydraplatform.com^$third-party (easylistchina+easylist.txt: 37327) -.q1mediahydraplatform.com -# ||q1media.com^$third-party (easylistchina+easylist.txt: 37326) -.q1media.com -# ||pzuwqncdai.com^$third-party (easylistchina+easylist.txt: 37325) -.pzuwqncdai.com -# ||pzaasocba.com^$third-party (easylistchina+easylist.txt: 37324) -.pzaasocba.com -# ||pxstda.com^$third-party (easylistchina+easylist.txt: 37323) -.pxstda.com -# ||pxl2015x1.com^$third-party (easylistchina+easylist.txt: 37322) -.pxl2015x1.com -# ||pwrads.net^$third-party (easylistchina+easylist.txt: 37321) -.pwrads.net -# ||push2check.com^$third-party (easylistchina+easylist.txt: 37320) -.push2check.com -# ||purpleflag.net^$third-party (easylistchina+easylist.txt: 37319) -.purpleflag.net -# ||pulsemgr.com^$third-party (easylistchina+easylist.txt: 37318) -.pulsemgr.com -# ||pulse360.com^$third-party (easylistchina+easylist.txt: 37317) -.pulse360.com -# ||puhtml.com^$third-party (easylistchina+easylist.txt: 37316) -.puhtml.com -# ||pubted.com^$third-party (easylistchina+easylist.txt: 37315) -.pubted.com -# ||pubserve.net^$third-party (easylistchina+easylist.txt: 37314) -.pubserve.net -# ||pubnation.com^$third-party (easylistchina+easylist.txt: 37313) -.pubnation.com -# ||pubmine.com^$third-party (easylistchina+easylist.txt: 37312) -.pubmine.com -# ||pubmatic.com^$third-party (easylistchina+easylist.txt: 37311) -.pubmatic.com -# ||publisheradnetwork.com^$third-party (easylistchina+easylist.txt: 37310) -.publisheradnetwork.com -# ||publisher.to^$third-party (easylistchina+easylist.txt: 37309) -.publisher.to -# ||publicsunrise.link^$third-party (easylistchina+easylist.txt: 37308) -.publicsunrise.link -# ||publicityclerks.com^$third-party (easylistchina+easylist.txt: 37307) -.publicityclerks.com -# ||publicidees.com^$third-party (easylistchina+easylist.txt: 37306) -.publicidees.com -# ||publicidad.net^$third-party (easylistchina+easylist.txt: 37305) -.publicidad.net -# ||pubgears.com^$third-party (easylistchina+easylist.txt: 37304) -.pubgears.com -# ||pub-fit.com^$third-party (easylistchina+easylist.txt: 37302) -.pub-fit.com -# ||ptp24.com^$third-party (easylistchina+easylist.txt: 37301) -.ptp24.com -# ||ptp22.com^$third-party (easylistchina+easylist.txt: 37300) -.ptp22.com -# ||ptp.lolco.net^$third-party (easylistchina+easylist.txt: 37299) -.ptp.lolco.net -# ||ptmzr.com^$third-party (easylistchina+easylist.txt: 37298) -.ptmzr.com -# ||psma02.com^$third-party (easylistchina+easylist.txt: 37297) -.psma02.com -# ||pseqcs05.com^$third-party (easylistchina+easylist.txt: 37296) -.pseqcs05.com -# ||psclicks.com^$third-party (easylistchina+easylist.txt: 37295) -.psclicks.com -# ||prre.ru^$third-party (easylistchina+easylist.txt: 37294) -.prre.ru -# ||proximic.com^$third-party (easylistchina+easylist.txt: 37293) -.proximic.com -# ||provider-direct.com^$third-party (easylistchina+easylist.txt: 37292) -.provider-direct.com -# ||protally.net^$third-party (easylistchina+easylist.txt: 37291) -.protally.net -# ||prosperent.com^$third-party (easylistchina+easylist.txt: 37290) -.prosperent.com -# ||proper.io^$third-party (easylistchina+easylist.txt: 37289) -.proper.io -# ||propelplus.com^$third-party (easylistchina+easylist.txt: 37288) -.propelplus.com -# ||propellerpops.com^$third-party (easylistchina+easylist.txt: 37287) -.propellerpops.com -# ||propellerads.com^$third-party (easylistchina+easylist.txt: 37286) -.propellerads.com -# ||promotiontrack.mobi^$third-party (easylistchina+easylist.txt: 37285) -.promotiontrack.mobi -# ||promotionoffer.mobi^$third-party (easylistchina+easylist.txt: 37284) -.promotionoffer.mobi -# ||promoted.com^$third-party (easylistchina+easylist.txt: 37283) -.promoted.com -# ||promobenef.com^$third-party (easylistchina+easylist.txt: 37282) -.promobenef.com -# ||promo-reklama.ru^$third-party (easylistchina+easylist.txt: 37281) -.promo-reklama.ru -# ||projectwonderful.com^$third-party (easylistchina+easylist.txt: 37280) -.projectwonderful.com -# ||programresolver.net^$third-party (easylistchina+easylist.txt: 37279) -.programresolver.net -# ||profitpeelers.com^$third-party (easylistchina+easylist.txt: 37278) -.profitpeelers.com -# ||proffigurufast.com^$third-party (easylistchina+easylist.txt: 37277) -.proffigurufast.com -# ||prod.untd.com^$third-party (easylistchina+easylist.txt: 37276) -.prod.untd.com -# ||probannerswap.com^$third-party (easylistchina+easylist.txt: 37275) -.probannerswap.com -# ||proadsdirect.com^$third-party (easylistchina+easylist.txt: 37274) -.proadsdirect.com -# ||pro-market.net^$third-party (easylistchina+easylist.txt: 37273) -.pro-market.net -# ||pro-advertising.com^$third-party (easylistchina+easylist.txt: 37272) -.pro-advertising.com -# ||pro-advert.de^$third-party (easylistchina+easylist.txt: 37271) -.pro-advert.de -# ||primaryads.com^$third-party (easylistchina+easylist.txt: 37270) -.primaryads.com -# ||prickac.com^$third-party (easylistchina+easylist.txt: 37269) -.prickac.com -# ||prf.hn^$third-party (easylistchina+easylist.txt: 37268) -.prf.hn -# ||prexista.com^$third-party (easylistchina+easylist.txt: 37267) -.prexista.com -# ||prestadsng.com^$third-party (easylistchina+easylist.txt: 37266) -.prestadsng.com -# ||predictad.com^$third-party (easylistchina+easylist.txt: 37265) -.predictad.com -# ||precisionclick.com^$third-party (easylistchina+easylist.txt: 37264) -.precisionclick.com -# ||prebid.org^$third-party (easylistchina+easylist.txt: 37263) -.prebid.org -# ||ppsearcher.ru^$third-party (easylistchina+easylist.txt: 37262) -.ppsearcher.ru -# ||ppcwebspy.com^$third-party (easylistchina+easylist.txt: 37261) -.ppcwebspy.com -# ||ppctrck.com^$third-party (easylistchina+easylist.txt: 37260) -.ppctrck.com -# ||ppclinking.com^$third-party (easylistchina+easylist.txt: 37259) -.ppclinking.com -# ||ppcindo.com^$third-party (easylistchina+easylist.txt: 37258) -.ppcindo.com -# ||powerlinks.com^$third-party (easylistchina+easylist.txt: 37257) -.powerlinks.com -# ||powerfulbusiness.net^$third-party (easylistchina+easylist.txt: 37256) -.powerfulbusiness.net -# ||poweradvertising.co.uk^$third-party (easylistchina+easylist.txt: 37255) -.poweradvertising.co.uk -# ||postrelease.com^$third-party (easylistchina+easylist.txt: 37254) -.postrelease.com -# ||posternel.com^$third-party (easylistchina+easylist.txt: 37253) -.posternel.com -# ||pornv.org^$third-party (easylistchina+easylist.txt: 37252) -.pornv.org -# ||popupvia.com^$third-party (easylistchina+easylist.txt: 37251) -.popupvia.com -# ||popuptraffic.com^$third-party (easylistchina+easylist.txt: 37250) -.popuptraffic.com -# ||popunderz.com^$third-party (easylistchina+easylist.txt: 37249) -.popunderz.com -# ||popundertotal.com^$third-party (easylistchina+easylist.txt: 37248) -.popundertotal.com -# ||popunder.ru^$third-party (easylistchina+easylist.txt: 37247) -.popunder.ru -# ||populisengage.com^$third-party (easylistchina+easylist.txt: 37246) -.populisengage.com -# ||populis.com^$third-party (easylistchina+easylist.txt: 37245) -.populis.com -# ||popularmedia.net^$third-party (easylistchina+easylist.txt: 37244) -.popularmedia.net -# ||popularitish.com^$third-party (easylistchina+easylist.txt: 37243) -.popularitish.com -# ||poptarts.me^$third-party (easylistchina+easylist.txt: 37242) -.poptarts.me -# ||popshow.info^$third-party (easylistchina+easylist.txt: 37241) -.popshow.info -# ||popsads.com^$third-party (easylistchina+easylist.txt: 37240) -.popsads.com -# ||poponclick.com^$third-party (easylistchina+easylist.txt: 37239) -.poponclick.com -# ||popmyads.com^$third-party (easylistchina+easylist.txt: 37238) -.popmyads.com -# ||popmyad.com^$third-party (easylistchina+easylist.txt: 37237) -.popmyad.com -# ||popmarker.com^$third-party (easylistchina+easylist.txt: 37236) -.popmarker.com -# ||popmajor.com^$third-party (easylistchina+easylist.txt: 37235) -.popmajor.com -# ||popearn.com^$third-party (easylistchina+easylist.txt: 37234) -.popearn.com -# ||popcpv.com^$third-party (easylistchina+easylist.txt: 37233) -.popcpv.com -# ||popcpm.com^$third-party (easylistchina+easylist.txt: 37232) -.popcpm.com -# ||popcash.net^$third-party (easylistchina+easylist.txt: 37231) -.popcash.net -# ||popadscdn.net^$third-party (easylistchina+easylist.txt: 37230) -.popadscdn.net -# ||popads.net^$third-party (easylistchina+easylist.txt: 37229) -.popads.net -# ||polydarth.com^$third-party (easylistchina+easylist.txt: 37228) -.polydarth.com -# ||polyad.net^$third-party (easylistchina+easylist.txt: 37227) -.polyad.net -# ||polmontventures.com^$third-party (easylistchina+easylist.txt: 37226) -.polmontventures.com -# ||polluxnetwork.com^$third-party (easylistchina+easylist.txt: 37225) -.polluxnetwork.com -# ||points2shop.com^$third-party (easylistchina+easylist.txt: 37224) -.points2shop.com -# ||pointroll.com^$third-party (easylistchina+easylist.txt: 37223) -.pointroll.com -# ||pointclicktrack.com^$third-party (easylistchina+easylist.txt: 37222) -.pointclicktrack.com -# ||pntrs.com^$third-party (easylistchina+easylist.txt: 37221) -.pntrs.com -# ||pntrac.com^$third-party (easylistchina+easylist.txt: 37220) -.pntrac.com -# ||pntra.com^$third-party (easylistchina+easylist.txt: 37219) -.pntra.com -# ||pnoss.com^$third-party (easylistchina+easylist.txt: 37218) -.pnoss.com -# ||pmsrvr.com^$third-party (easylistchina+easylist.txt: 37217) -.pmsrvr.com -# ||plxserve.com^$third-party (easylistchina+easylist.txt: 37216) -.plxserve.com -# ||plusfind.net^$third-party (easylistchina+easylist.txt: 37215) -.plusfind.net -# ||plugerr.com^$third-party (easylistchina+easylist.txt: 37214) -.plugerr.com -# ||plocap.com^$third-party (easylistchina+easylist.txt: 37213) -.plocap.com -# ||pllddc.com^$third-party (easylistchina+easylist.txt: 37212) -.pllddc.com -# ||plexop.net^$third-party (easylistchina+easylist.txt: 37211) -.plexop.net -# ||plenomedia.com^$third-party (easylistchina+easylist.txt: 37210) -.plenomedia.com -# ||pleeko.com^$third-party (easylistchina+easylist.txt: 37209) -.pleeko.com -# ||playukinternet.com^$third-party (easylistchina+easylist.txt: 37208) -.playukinternet.com -# ||playertraffic.com^$third-party (easylistchina+easylist.txt: 37207) -.playertraffic.com -# ||play24.us^$third-party (easylistchina+easylist.txt: 37206) -.play24.us -# ||platinumadvertisement.com^$third-party (easylistchina+easylist.txt: 37205) -.platinumadvertisement.com -# ||plannto.com^$third-party (easylistchina+easylist.txt: 37204) -.plannto.com -# ||pjtra.com^$third-party (easylistchina+easylist.txt: 37203) -.pjtra.com -# ||pjatr.com^$third-party (easylistchina+easylist.txt: 37202) -.pjatr.com -# ||pixxur.com^$third-party (easylistchina+easylist.txt: 37201) -.pixxur.com -# ||pixfuture.net^$third-party (easylistchina+easylist.txt: 37200) -.pixfuture.net -# ||pixeltrack66.com^$third-party (easylistchina+easylist.txt: 37199) -.pixeltrack66.com -# ||pixazza.com^$third-party (easylistchina+easylist.txt: 37198) -.pixazza.com -# ||pivotrunner.com^$third-party (easylistchina+easylist.txt: 37197) -.pivotrunner.com -# ||pivotalmedialabs.com^$third-party (easylistchina+easylist.txt: 37196) -.pivotalmedialabs.com -# ||piticlik.com^$third-party (easylistchina+easylist.txt: 37195) -.piticlik.com -# ||pioneeringad.com^$third-party (easylistchina+easylist.txt: 37194) -.pioneeringad.com -# ||pinballpublishernetwork.com^$third-party (easylistchina+easylist.txt: 37193) -.pinballpublishernetwork.com -# ||pictela.net^$third-party (easylistchina+easylist.txt: 37192) -.pictela.net -# ||picsti.com^$third-party (easylistchina+easylist.txt: 37191) -.picsti.com -# ||picbucks.com^$third-party (easylistchina+easylist.txt: 37190) -.picbucks.com -# ||picadmedia.com^$third-party (easylistchina+easylist.txt: 37189) -.picadmedia.com -# ||pianobuyerdeals.com^$third-party (easylistchina+easylist.txt: 37188) -.pianobuyerdeals.com -# ||phonespybubble.com^$third-party (easylistchina+easylist.txt: 37187) -.phonespybubble.com -# ||philosophere.com^$third-party (easylistchina+easylist.txt: 37186) -.philosophere.com -# ||philipstreehouse.info^$third-party (easylistchina+easylist.txt: 37185) -.philipstreehouse.info -# ||philbardre.com^$third-party (easylistchina+easylist.txt: 37184) -.philbardre.com -# ||pheedo.com^$third-party (easylistchina+easylist.txt: 37183) -.pheedo.com -# ||pharmcash.com^$third-party (easylistchina+easylist.txt: 37182) -.pharmcash.com -# ||pgssl.com^$third-party (easylistchina+easylist.txt: 37181) -.pgssl.com -# ||pgpartner.com^$third-party (easylistchina+easylist.txt: 37180) -.pgpartner.com -# ||pgmediaserve.com^$third-party (easylistchina+easylist.txt: 37179) -.pgmediaserve.com -# ||pezrphjl.com^$third-party (easylistchina+easylist.txt: 37178) -.pezrphjl.com -# ||persevered.com^$third-party (easylistchina+easylist.txt: 37177) -.persevered.com -# ||permutive.com^$third-party (easylistchina+easylist.txt: 37176) -.permutive.com -# ||performancingads.com^$third-party (easylistchina+easylist.txt: 37175) -.performancingads.com -# ||performancetrack.info^$third-party (easylistchina+easylist.txt: 37174) -.performancetrack.info -# ||performanceadvertising.mobi^$third-party (easylistchina+easylist.txt: 37173) -.performanceadvertising.mobi -# ||performance-based.com^$third-party (easylistchina+easylist.txt: 37172) -.performance-based.com -# ||perfoormapp.info^$third-party (easylistchina+easylist.txt: 37171) -.perfoormapp.info -# ||perfcreatives.com^$third-party (easylistchina+easylist.txt: 37170) -.perfcreatives.com -# ||perfb.com^$third-party (easylistchina+easylist.txt: 37169) -.perfb.com -# ||percularity.com^$third-party (easylistchina+easylist.txt: 37168) -.percularity.com -# ||pepperjamnetwork.com^$third-party (easylistchina+easylist.txt: 37167) -.pepperjamnetwork.com -# ||penuma.com^$third-party (easylistchina+easylist.txt: 37166) -.penuma.com -# ||peer39.net^$third-party (easylistchina+easylist.txt: 37165) -.peer39.net -# ||peemee.com^$third-party (easylistchina+easylist.txt: 37164) -.peemee.com -# ||peelawaymaker.com^$third-party (easylistchina+easylist.txt: 37163) -.peelawaymaker.com -# ||peakclick.com^$third-party (easylistchina+easylist.txt: 37162) -.peakclick.com -# ||pe2k2dty.com^$third-party (easylistchina+easylist.txt: 37161) -.pe2k2dty.com -# ||pc-ads.com^$third-party (easylistchina+easylist.txt: 37160) -.pc-ads.com -# ||payperpost.com^$third-party (easylistchina+easylist.txt: 37159) -.payperpost.com -# ||paydotcom.com^$third-party (easylistchina+easylist.txt: 37158) -.paydotcom.com -# ||pay-click.ru^$third-party (easylistchina+easylist.txt: 37157) -.pay-click.ru -# ||pautaspr.com^$third-party (easylistchina+easylist.txt: 37156) -.pautaspr.com -# ||passionfruitads.com^$third-party (easylistchina+easylist.txt: 37155) -.passionfruitads.com -# ||pas-rahav.com^$third-party (easylistchina+easylist.txt: 37154) -.pas-rahav.com -# ||partypoker.com^$third-party (easylistchina+easylist.txt: 37153) -.partypoker.com -# ||partypartners.com^$third-party (easylistchina+easylist.txt: 37152) -.partypartners.com -# ||partycasino.com^$third-party (easylistchina+easylist.txt: 37151) -.partycasino.com -# ||partnermax.de^$third-party (easylistchina+easylist.txt: 37150) -.partnermax.de -# ||partnerearning.com^$third-party (easylistchina+easylist.txt: 37149) -.partnerearning.com -# ||partner.video.syndication.msn.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37148) -.partner.video.syndication.msn.com -# ||partner.googleadservices.com^$third-party (easylistchina+easylist.txt: 37147) -.partner.googleadservices.com -# ||partner-ads.com^$third-party (easylistchina+easylist.txt: 37146) -.partner-ads.com -# ||paradocs.ru^$third-party (easylistchina+easylist.txt: 37145) -.paradocs.ru -# ||paperg.com^$third-party (easylistchina+easylist.txt: 37144) -.paperg.com -# ||pantherads.com^$third-party (easylistchina+easylist.txt: 37143) -.pantherads.com -# ||panachetech.com^$third-party (easylistchina+easylist.txt: 37142) -.panachetech.com -# ||pakbanners.com^$third-party (easylistchina+easylist.txt: 37141) -.pakbanners.com -# ||paidsearchexperts.com^$third-party (easylistchina+easylist.txt: 37140) -.paidsearchexperts.com -# ||paidonresults.net^$third-party (easylistchina+easylist.txt: 37139) -.paidonresults.net -# ||paid4ad.de^$third-party (easylistchina+easylist.txt: 37138) -.paid4ad.de -# ||pagesinxt.com^$third-party (easylistchina+easylist.txt: 37137) -.pagesinxt.com -# ||pagefair.net^$third-party (easylistchina+easylist.txt: 37136) -.pagefair.net -# ||padstm.com^$third-party (easylistchina+easylist.txt: 37135) -.padstm.com -# ||padsdelivery.com^$third-party (easylistchina+easylist.txt: 37134) -.padsdelivery.com -# ||paads.dk^$third-party (easylistchina+easylist.txt: 37133) -.paads.dk -# ||p2ads.com^$third-party (easylistchina+easylist.txt: 37132) -.p2ads.com -# ||p-digital-server.com^$third-party (easylistchina+easylist.txt: 37131) -.p-digital-server.com -# ||p-comme-performance.com^$third-party (easylistchina+easylist.txt: 37130) -.p-comme-performance.com -# ||p-advg.com^$third-party (easylistchina+easylist.txt: 37129) -.p-advg.com -# ||ozonemedia.com^$third-party (easylistchina+easylist.txt: 37128) -.ozonemedia.com -# ||ozertesa.com^$third-party (easylistchina+easylist.txt: 37127) -.ozertesa.com -# ||oxybe.com^$third-party (easylistchina+easylist.txt: 37126) -.oxybe.com -# ||oxtracking.com^$third-party (easylistchina+easylist.txt: 37125) -.oxtracking.com -# ||oxsng.com^$third-party (easylistchina+easylist.txt: 37124) -.oxsng.com -# ||oxado.com^$third-party (easylistchina+easylist.txt: 37123) -.oxado.com -# ||ovtopli.ru^$third-party (easylistchina+easylist.txt: 37122) -.ovtopli.ru -# ||overturs.com^$third-party (easylistchina+easylist.txt: 37121) -.overturs.com -# ||overture.com^$third-party (easylistchina+easylist.txt: 37120) -.overture.com -# ||overhaps.com^$third-party (easylistchina+easylist.txt: 37119) -.overhaps.com -# ||oveld.com^$third-party (easylistchina+easylist.txt: 37118) -.oveld.com -# ||ov8pc.tv^$third-party (easylistchina+easylist.txt: 37117) -.ov8pc.tv -# ||ourunlimitedleads.com^$third-party (easylistchina+easylist.txt: 37116) -.ourunlimitedleads.com -# ||othersonline.com^$third-party (easylistchina+easylist.txt: 37115) -.othersonline.com -# ||ospreymedialp.com^$third-party (easylistchina+easylist.txt: 37114) -.ospreymedialp.com -# ||oskale.ru^$third-party (easylistchina+easylist.txt: 37113) -.oskale.ru -# ||ordingly.com^$third-party (easylistchina+easylist.txt: 37112) -.ordingly.com -# ||orbengine.com^$third-party (easylistchina+easylist.txt: 37111) -.orbengine.com -# ||orarala.com^$third-party (easylistchina+easylist.txt: 37110) -.orarala.com -# ||orangeads.fr^$third-party (easylistchina+easylist.txt: 37109) -.orangeads.fr -# ||optinmonster.com^$third-party (easylistchina+easylist.txt: 37108) -.optinmonster.com -# ||optinemailpro.com^$third-party (easylistchina+easylist.txt: 37107) -.optinemailpro.com -# ||optimizeadvert.biz^$third-party (easylistchina+easylist.txt: 37106) -.optimizeadvert.biz -# ||optimatic.com^$third-party (easylistchina+easylist.txt: 37105) -.optimatic.com -# ||optimalroi.info^$third-party (easylistchina+easylist.txt: 37104) -.optimalroi.info -# ||optiad.net^$third-party (easylistchina+easylist.txt: 37103) -.optiad.net -# ||opteama.com^$third-party (easylistchina+easylist.txt: 37102) -.opteama.com -# ||opt-n.net^$third-party (easylistchina+easylist.txt: 37101) -.opt-n.net -# ||opt-intelligence.com^$third-party (easylistchina+easylist.txt: 37100) -.opt-intelligence.com -# ||operatical.com^$third-party (easylistchina+easylist.txt: 37099) -.operatical.com -# ||openxmarket.asia^$third-party (easylistchina+easylist.txt: 37098) -.openxmarket.asia -# ||openxenterprise.com^$third-party (easylistchina+easylist.txt: 37097) -.openxenterprise.com -# ||openxadexchange.com^$third-party (easylistchina+easylist.txt: 37096) -.openxadexchange.com -# ||opensourceadvertisementnetwork.info^$third-party (easylistchina+easylist.txt: 37095) -.opensourceadvertisementnetwork.info -# ||openetray.com^$third-party (easylistchina+easylist.txt: 37094) -.openetray.com -# ||openbook.net^$third-party (easylistchina+easylist.txt: 37093) -.openbook.net -# ||opap.co.kr^$third-party (easylistchina+easylist.txt: 37092) -.opap.co.kr -# ||oos4l.com^$third-party (easylistchina+easylist.txt: 37091) -.oos4l.com -# ||oofte.com^$third-party (easylistchina+easylist.txt: 37090) -.oofte.com -# ||ooecyaauiz.com^$third-party (easylistchina+easylist.txt: 37089) -.ooecyaauiz.com -# ||oodode.com^$third-party (easylistchina+easylist.txt: 37088) -.oodode.com -# ||onvertise.com^$third-party (easylistchina+easylist.txt: 37087) -.onvertise.com -# ||onsitemarketplace.net^$third-party (easylistchina+easylist.txt: 37086) -.onsitemarketplace.net -# ||onscroll.com^$third-party (easylistchina+easylist.txt: 37085) -.onscroll.com -# ||onrampadvertising.com^$third-party (easylistchina+easylist.txt: 37084) -.onrampadvertising.com -# ||onlyalad.net^$third-party (easylistchina+easylist.txt: 37083) -.onlyalad.net -# ||onlinedl.info^$third-party (easylistchina+easylist.txt: 37082) -.onlinedl.info -# ||onlineadtracker.co.uk^$third-party (easylistchina+easylist.txt: 37081) -.onlineadtracker.co.uk -# ||online-media24.de^$third-party (easylistchina+easylist.txt: 37080) -.online-media24.de -# ||online-adnetwork.com^$third-party (easylistchina+easylist.txt: 37079) -.online-adnetwork.com -# ||onespot.com^$third-party (easylistchina+easylist.txt: 37078) -.onespot.com -# ||onenetworkdirect.net^$third-party (easylistchina+easylist.txt: 37077) -.onenetworkdirect.net -# ||onenetworkdirect.com^$third-party (easylistchina+easylist.txt: 37076) -.onenetworkdirect.com -# ||onedmp.com^$third-party (easylistchina+easylist.txt: 37075) -.onedmp.com -# ||onclickads.net^$third-party (easylistchina+easylist.txt: 37074) -.onclickads.net -# ||onads.com^$third-party (easylistchina+easylist.txt: 37073) -.onads.com -# ||onad.eu^$third-party (easylistchina+easylist.txt: 37072) -.onad.eu -# ||omni-ads.com^$third-party (easylistchina+easylist.txt: 37071) -.omni-ads.com -# ||omg2.com^$third-party (easylistchina+easylist.txt: 37070) -.omg2.com -# ||omclick.com^$third-party (easylistchina+easylist.txt: 37069) -.omclick.com -# ||oldtiger.net^$third-party (easylistchina+easylist.txt: 37068) -.oldtiger.net -# ||oileddaintiessunset.info^$third-party (easylistchina+easylist.txt: 37067) -.oileddaintiessunset.info -# ||ohmcasting.com^$third-party (easylistchina+easylist.txt: 37066) -.ohmcasting.com -# ||oggifinogi.com^$third-party (easylistchina+easylist.txt: 37065) -.oggifinogi.com -# ||ofino.ru^$third-party (easylistchina+easylist.txt: 37064) -.ofino.ru -# ||offersquared.com^$third-party (easylistchina+easylist.txt: 37063) -.offersquared.com -# ||offerserve.com^$third-party (easylistchina+easylist.txt: 37062) -.offerserve.com -# ||offerpalads.com^$third-party (easylistchina+easylist.txt: 37061) -.offerpalads.com -# ||offerforge.com^$third-party (easylistchina+easylist.txt: 37060) -.offerforge.com -# ||offeradvertising.biz^$third-party (easylistchina+easylist.txt: 37059) -.offeradvertising.biz -# ||oehposan.com^$third-party (easylistchina+easylist.txt: 37058) -.oehposan.com -# ||oclus.com^$third-party (easylistchina+easylist.txt: 37057) -.oclus.com -# ||oclsasrv.com^$third-party (easylistchina+easylist.txt: 37056) -.oclsasrv.com -# ||oclasrv.com^$third-party (easylistchina+easylist.txt: 37055) -.oclasrv.com -# ||oceanwebcraft.com^$third-party (easylistchina+easylist.txt: 37054) -.oceanwebcraft.com -# ||objectservers.com^$third-party (easylistchina+easylist.txt: 37053) -.objectservers.com -# ||objects.tremormedia.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37052) -.objects.tremormedia.com -# ||obibanners.com^$third-party (easylistchina+easylist.txt: 37051) -.obibanners.com -# ||obeus.com^$third-party (easylistchina+easylist.txt: 37050) -.obeus.com -# ||obesw.com^$third-party (easylistchina+easylist.txt: 37049) -.obesw.com -# ||oainternetservices.com^$third-party (easylistchina+easylist.txt: 37048) -.oainternetservices.com -# ||oads.co^$third-party (easylistchina+easylist.txt: 37047) -.oads.co -# ||nzphoenix.com^$third-party (easylistchina+easylist.txt: 37046) -.nzphoenix.com -# ||nzads.net.nz^$third-party (easylistchina+easylist.txt: 37045) -.nzads.net.nz -# ||nyadmcncserve-05y06a.com^$third-party (easylistchina+easylist.txt: 37044) -.nyadmcncserve-05y06a.com -# ||nxtck.com^$third-party (easylistchina+easylist.txt: 37043) -.nxtck.com -# ||nwfhalifax.com^$third-party (easylistchina+easylist.txt: 37042) -.nwfhalifax.com -# ||nvero.net^$third-party (easylistchina+easylist.txt: 37041) -.nvero.net -# ||nvadn.com^$third-party (easylistchina+easylist.txt: 37040) -.nvadn.com -# ||nuseek.com^$third-party (easylistchina+easylist.txt: 37039) -.nuseek.com -# ||numbers.md^$third-party (easylistchina+easylist.txt: 37038) -.numbers.md -# ||numberium.com^$third-party (easylistchina+easylist.txt: 37037) -.numberium.com -# ||ntv.io^$third-party (easylistchina+easylist.txt: 37036) -.ntv.io -# ||ntent.com^$third-party (easylistchina+easylist.txt: 37035) -.ntent.com -# ||nspmotion.com^$third-party (easylistchina+easylist.txt: 37033) -.nspmotion.com -# ||nsmartad.com^$third-party (easylistchina+easylist.txt: 37032) -.nsmartad.com -# ||nsdsvc.com^$third-party (easylistchina+easylist.txt: 37031) -.nsdsvc.com -# ||nscontext.com^$third-party (easylistchina+easylist.txt: 37030) -.nscontext.com -# ||nrnma.com^$third-party (easylistchina+easylist.txt: 37029) -.nrnma.com -# ||nquchhfyex.com^$third-party (easylistchina+easylist.txt: 37028) -.nquchhfyex.com -# ||npvos.com^$third-party (easylistchina+easylist.txt: 37027) -.npvos.com -# ||nplexmedia.com^$third-party (easylistchina+easylist.txt: 37026) -.nplexmedia.com -# ||nowspots.com^$third-party (easylistchina+easylist.txt: 37025) -.nowspots.com -# ||nowlooking.net^$third-party (easylistchina+easylist.txt: 37024) -.nowlooking.net -# ||novarevenue.com^$third-party (easylistchina+easylist.txt: 37023) -.novarevenue.com -# ||northmay.com^$third-party (easylistchina+easylist.txt: 37022) -.northmay.com -# ||normkela.com^$third-party (easylistchina+easylist.txt: 37021) -.normkela.com -# ||noretia.com^$third-party (easylistchina+easylist.txt: 37020) -.noretia.com -# ||nonstoppartner.de^$third-party (easylistchina+easylist.txt: 37019) -.nonstoppartner.de -# ||nobsetfinvestor.com^$third-party (easylistchina+easylist.txt: 37018) -.nobsetfinvestor.com -# ||nobleppc.com^$third-party (easylistchina+easylist.txt: 37017) -.nobleppc.com -# ||nmwrdr.net^$third-party (easylistchina+easylist.txt: 37016) -.nmwrdr.net -# ||nmcdn.us^$third-party (easylistchina+easylist.txt: 37015) -.nmcdn.us -# ||nkredir.com^$third-party (easylistchina+easylist.txt: 37014) -.nkredir.com -# ||nighter.club^$third-party (easylistchina+easylist.txt: 37013) -.nighter.club -# ||nicheads.com^$third-party (easylistchina+easylist.txt: 37012) -.nicheads.com -# ||nicheadgenerator.com^$third-party (easylistchina+easylist.txt: 37011) -.nicheadgenerator.com -# ||ngecity.com^$third-party (easylistchina+easylist.txt: 37010) -.ngecity.com -# ||nextmobilecash.com^$third-party (easylistchina+easylist.txt: 37009) -.nextmobilecash.com -# ||nexage.com^$third-party (easylistchina+easylist.txt: 37008) -.nexage.com -# ||nexac.com^$third-party (easylistchina+easylist.txt: 37007) -.nexac.com -# ||newtention.net^$third-party (easylistchina+easylist.txt: 37006) -.newtention.net -# ||newstogram.com^$third-party (easylistchina+easylist.txt: 37005) -.newstogram.com -# ||newsnet.in.ua^$third-party (easylistchina+easylist.txt: 37004) -.newsnet.in.ua -# ||newsadstream.com^$third-party (easylistchina+easylist.txt: 37003) -.newsadstream.com -# ||newideasdaily.com^$third-party (easylistchina+easylist.txt: 37002) -.newideasdaily.com -# ||newgentraffic.com^$third-party (easylistchina+easylist.txt: 37001) -.newgentraffic.com -# ||newdosug.eu^$third-party (easylistchina+easylist.txt: 37000) -.newdosug.eu -# ||neudesicmediagroup.com^$third-party (easylistchina+easylist.txt: 36999) -.neudesicmediagroup.com -# ||networldmedia.net^$third-party (easylistchina+easylist.txt: 36998) -.networldmedia.net -# ||networld.hk^$third-party (easylistchina+easylist.txt: 36997) -.networld.hk -# ||networkxi.com^$third-party (easylistchina+easylist.txt: 36996) -.networkxi.com -# ||networkplay.in^$third-party (easylistchina+easylist.txt: 36995) -.networkplay.in -# ||netsolads.com^$third-party (easylistchina+easylist.txt: 36994) -.netsolads.com -# ||netshelter.net^$third-party (easylistchina+easylist.txt: 36993) -.netshelter.net -# ||netseer.com^$third-party (easylistchina+easylist.txt: 36992) -.netseer.com -# ||netpondads.com^$third-party (easylistchina+easylist.txt: 36991) -.netpondads.com -# ||netloader.cc^$third-party (easylistchina+easylist.txt: 36990) -.netloader.cc -# ||netliker.com^$third-party (easylistchina+easylist.txt: 36989) -.netliker.com -# ||netflixalternative.net^$third-party (easylistchina+easylist.txt: 36988) -.netflixalternative.net -# ||netavenir.com^$third-party (easylistchina+easylist.txt: 36987) -.netavenir.com -# ||netaffiliation.com^$~script,third-party (easylistchina+easylist.txt: 36986) -.netaffiliation.com -# ||net3media.com^$third-party (easylistchina+easylist.txt: 36985) -.net3media.com -# ||net-ad-vantage.com^$third-party (easylistchina+easylist.txt: 36984) -.net-ad-vantage.com -# ||neoffic.com^$third-party (easylistchina+easylist.txt: 36983) -.neoffic.com -# ||neodatagroup.com^$third-party (easylistchina+easylist.txt: 36982) -.neodatagroup.com -# ||neobux.com^$third-party (easylistchina+easylist.txt: 36981) -.neobux.com -# ||negolist.com^$third-party (easylistchina+easylist.txt: 36980) -.negolist.com -# ||neblotech.com^$third-party (easylistchina+easylist.txt: 36979) -.neblotech.com -# ||ncrjsserver.com^$third-party (easylistchina+easylist.txt: 36978) -.ncrjsserver.com -# ||nbstatic.com^$third-party (easylistchina+easylist.txt: 36977) -.nbstatic.com -# ||nbjmp.com^$third-party (easylistchina+easylist.txt: 36976) -.nbjmp.com -# ||nativeads.com^$third-party (easylistchina+easylist.txt: 36975) -.nativeads.com -# ||nativead.co^$third-party (easylistchina+easylist.txt: 36974) -.nativead.co -# ||native-adserver.com^$third-party (easylistchina+easylist.txt: 36973) -.native-adserver.com -# ||nanigans.com^$third-party (easylistchina+easylist.txt: 36972) -.nanigans.com -# ||nagrande.com^$third-party (easylistchina+easylist.txt: 36971) -.nagrande.com -# ||nabbr.com^$third-party (easylistchina+easylist.txt: 36970) -.nabbr.com -# ||n4403ad.doubleclick.net^$third-party (easylistchina+easylist.txt: 36969) -.n4403ad.doubleclick.net -# ||n388hkxg.com^$third-party (easylistchina+easylist.txt: 36968) -.n388hkxg.com -# ||mz28ismn.com^$third-party (easylistchina+easylist.txt: 36967) -.mz28ismn.com -# ||mywidget.mobi^$third-party (easylistchina+easylist.txt: 36966) -.mywidget.mobi -# ||myvads.com^$third-party (easylistchina+easylist.txt: 36965) -.myvads.com -# ||myuniques.ru^$third-party (easylistchina+easylist.txt: 36964) -.myuniques.ru -# ||mythings.com^$third-party (easylistchina+easylist.txt: 36963) -.mythings.com -# ||mysafeurl.com^$third-party (easylistchina+easylist.txt: 36962) -.mysafeurl.com -# ||myplayerhd.net^$third-party (easylistchina+easylist.txt: 36961) -.myplayerhd.net -# ||mynewcarquote.us^$third-party (easylistchina+easylist.txt: 36960) -.mynewcarquote.us -# ||mylinkbox.com^$third-party (easylistchina+easylist.txt: 36959) -.mylinkbox.com -# ||myinfotopia.com^$third-party (easylistchina+easylist.txt: 36958) -.myinfotopia.com -# ||myemailbox.info^$third-party (easylistchina+easylist.txt: 36957) -.myemailbox.info -# ||mydreamads.com^$third-party (easylistchina+easylist.txt: 36956) -.mydreamads.com -# ||mycooliframe.net^$third-party (easylistchina+easylist.txt: 36955) -.mycooliframe.net -# ||myclickbankads.com^$third-party (easylistchina+easylist.txt: 36954) -.myclickbankads.com -# ||myaffiliates.com^$third-party (easylistchina+easylist.txt: 36953) -.myaffiliates.com -# ||my-layer.net^$third-party (easylistchina+easylist.txt: 36952) -.my-layer.net -# ||mxtads.com^$third-party (easylistchina+easylist.txt: 36951) -.mxtads.com -# ||mutary.com^$third-party (easylistchina+easylist.txt: 36950) -.mutary.com -# ||musicnote.info^$third-party (easylistchina+easylist.txt: 36949) -.musicnote.info -# ||music-desktop.com^$third-party (easylistchina+easylist.txt: 36948) -.music-desktop.com -# ||munically.com^$third-party (easylistchina+easylist.txt: 36947) -.munically.com -# ||multiview.com^$third-party (easylistchina+easylist.txt: 36946) -.multiview.com -# ||multiadserv.com^$third-party (easylistchina+easylist.txt: 36945) -.multiadserv.com -# ||mujap.com^$third-party (easylistchina+easylist.txt: 36944) -.mujap.com -# ||mtrcss.com^$third-party (easylistchina+easylist.txt: 36943) -.mtrcss.com -# ||mtagmonetizationb.com^$third-party (easylistchina+easylist.txt: 36942) -.mtagmonetizationb.com -# ||mtagmonetizationa.com^$third-party (easylistchina+easylist.txt: 36941) -.mtagmonetizationa.com -# ||msypr.com^$third-party (easylistchina+easylist.txt: 36940) -.msypr.com -# ||msads.net^$third-party (easylistchina+easylist.txt: 36939) -.msads.net -# ||mprezchc.com^$third-party (easylistchina+easylist.txt: 36938) -.mprezchc.com -# ||mpression.net^$third-party (easylistchina+easylist.txt: 36937) -.mpression.net -# ||mpnrs.com^$third-party (easylistchina+easylist.txt: 36936) -.mpnrs.com -# ||movad.net^$third-party (easylistchina+easylist.txt: 36935) -.movad.net -# ||mottnow.com^$third-party (easylistchina+easylist.txt: 36934) -.mottnow.com -# ||moselats.com^$third-party (easylistchina+easylist.txt: 36933) -.moselats.com -# ||morgdm.ru^$third-party (easylistchina+easylist.txt: 36932) -.morgdm.ru -# ||moreplayerz.com^$third-party (easylistchina+easylist.txt: 36931) -.moreplayerz.com -# ||moregamers.com^$third-party (easylistchina+easylist.txt: 36930) -.moregamers.com -# ||mooxar.com^$third-party (easylistchina+easylist.txt: 36929) -.mooxar.com -# ||mootermedia.com^$third-party (easylistchina+easylist.txt: 36928) -.mootermedia.com -# ||mookie1.com^$third-party (easylistchina+easylist.txt: 36927) -.mookie1.com -# ||monsoonads.com^$third-party (easylistchina+easylist.txt: 36926) -.monsoonads.com -# ||monkeybroker.net^$third-party (easylistchina+easylist.txt: 36925) -.monkeybroker.net -# ||moneywhisper.com^$third-party (easylistchina+easylist.txt: 36924) -.moneywhisper.com -# ||moneycosmos.com^$third-party (easylistchina+easylist.txt: 36923) -.moneycosmos.com -# ||money4ads.com^$third-party (easylistchina+easylist.txt: 36922) -.money4ads.com -# ||money-cpm.fr^$third-party (easylistchina+easylist.txt: 36921) -.money-cpm.fr -# ||mokonocdn.com^$third-party (easylistchina+easylist.txt: 36920) -.mokonocdn.com -# ||mojoaffiliates.com^$third-party (easylistchina+easylist.txt: 36919) -.mojoaffiliates.com -# ||mogointeractive.com^$third-party (easylistchina+easylist.txt: 36918) -.mogointeractive.com -# ||moffsets.com^$third-party (easylistchina+easylist.txt: 36917) -.moffsets.com -# ||modelegating.com^$third-party (easylistchina+easylist.txt: 36916) -.modelegating.com -# ||mobytrks.com^$third-party (easylistchina+easylist.txt: 36915) -.mobytrks.com -# ||mobtrks.com^$third-party (easylistchina+easylist.txt: 36914) -.mobtrks.com -# ||mobstrks.com^$third-party (easylistchina+easylist.txt: 36913) -.mobstrks.com -# ||moborobot.com^$third-party (easylistchina+easylist.txt: 36912) -.moborobot.com -# ||mobiyield.com^$third-party (easylistchina+easylist.txt: 36911) -.mobiyield.com -# ||mobitracker.info^$third-party (easylistchina+easylist.txt: 36910) -.mobitracker.info -# ||mobisla.com^$third-party (easylistchina+easylist.txt: 36909) -.mobisla.com -# ||mobiright.com^$third-party (easylistchina+easylist.txt: 36908) -.mobiright.com -# ||mobile-10.com^$third-party (easylistchina+easylist.txt: 36907) -.mobile-10.com -# ||mobikano.com^$third-party (easylistchina+easylist.txt: 36906) -.mobikano.com -# ||mobifobi.com^$third-party (easylistchina+easylist.txt: 36905) -.mobifobi.com -# ||mobicont.com^$third-party (easylistchina+easylist.txt: 36904) -.mobicont.com -# ||mobfox.com^$third-party (easylistchina+easylist.txt: 36903) -.mobfox.com -# ||mobday.com^$third-party (easylistchina+easylist.txt: 36902) -.mobday.com -# ||mobatory.com^$third-party (easylistchina+easylist.txt: 36901) -.mobatory.com -# ||mobatori.com^$third-party (easylistchina+easylist.txt: 36900) -.mobatori.com -# ||moatads.com^$third-party (easylistchina+easylist.txt: 36899) -.moatads.com -# ||mmotraffic.com^$third-party (easylistchina+easylist.txt: 36898) -.mmotraffic.com -# ||mmoptional.com^$third-party (easylistchina+easylist.txt: 36897) -.mmoptional.com -# ||mmondi.com^$third-party (easylistchina+easylist.txt: 36896) -.mmondi.com -# ||mmngte.net^$third-party (easylistchina+easylist.txt: 36895) -.mmngte.net -# ||mmismm.com^$third-party (easylistchina+easylist.txt: 36894) -.mmismm.com -# ||mmgads.com^$third-party (easylistchina+easylist.txt: 36893) -.mmgads.com -# ||mmadsgadget.com^$third-party (easylistchina+easylist.txt: 36892) -.mmadsgadget.com -# ||mlnadvertising.com^$third-party (easylistchina+easylist.txt: 36891) -.mlnadvertising.com -# ||mktseek.com^$third-party (easylistchina+easylist.txt: 36890) -.mktseek.com -# ||mixpo.com^$third-party (easylistchina+easylist.txt: 36889) -.mixpo.com -# ||mixmarket.biz^$third-party (easylistchina+easylist.txt: 36888) -.mixmarket.biz -# ||miva.com^$third-party (easylistchina+easylist.txt: 36887) -.miva.com -# ||mistands.com^$third-party (easylistchina+easylist.txt: 36886) -.mistands.com -# ||mirrorpersonalinjury.co.uk^$third-party (easylistchina+easylist.txt: 36885) -.mirrorpersonalinjury.co.uk -# ||mirago.com^$third-party (easylistchina+easylist.txt: 36884) -.mirago.com -# ||minimumpay.info^$third-party (easylistchina+easylist.txt: 36883) -.minimumpay.info -# ||mindlytix.com^$third-party (easylistchina+easylist.txt: 36882) -.mindlytix.com -# ||milabra.com^$third-party (easylistchina+easylist.txt: 36881) -.milabra.com -# ||microsoftaffiliates.net^$third-party (easylistchina+easylist.txt: 36880) -.microsoftaffiliates.net -# ||microadinc.com^$third-party (easylistchina+easylist.txt: 36879) -.microadinc.com -# ||microad.jp^$third-party (easylistchina+easylist.txt: 36878) -.microad.jp -# ||mibebu.com^$third-party (easylistchina+easylist.txt: 36877) -.mibebu.com -# ||mgplatform.com^$third-party (easylistchina+easylist.txt: 36876) -.mgplatform.com -# ||mgcashgate.com^$third-party (easylistchina+easylist.txt: 36874) -.mgcashgate.com -# ||mgcash.com^$third-party (easylistchina+easylist.txt: 36873) -.mgcash.com -# ||mezimedia.com^$third-party (easylistchina+easylist.txt: 36872) -.mezimedia.com -# ||meya41w7.com^$third-party (easylistchina+easylist.txt: 36871) -.meya41w7.com -# ||meviodisplayads.com^$third-party (easylistchina+easylist.txt: 36870) -.meviodisplayads.com -# ||metrics.io^$third-party (easylistchina+easylist.txt: 36869) -.metrics.io -# ||metavertizer.com^$third-party (easylistchina+easylist.txt: 36868) -.metavertizer.com -# ||metavertising.com^$third-party (easylistchina+easylist.txt: 36867) -.metavertising.com -# ||metaffiliation.com^*^taff= (easylistchina+easylist.txt: 36866) -.metaffiliation.com/.*[^\w%.-]taff= -# ||metaffiliation.com^*^maff= (easylistchina+easylist.txt: 36865) -.metaffiliation.com/.*[^\w%.-]maff= -# ||metaffiliation.com^$~image,~subdocument,third-party (easylistchina+easylist.txt: 36864) -.metaffiliation.com -# ||messagespaceads.com^$third-party (easylistchina+easylist.txt: 36863) -.messagespaceads.com -# ||mercuras.com^$third-party (easylistchina+easylist.txt: 36862) -.mercuras.com -# ||merchenta.com^$third-party (easylistchina+easylist.txt: 36861) -.merchenta.com -# ||mentalks.ru^$third-party (easylistchina+easylist.txt: 36860) -.mentalks.ru -# ||mentad.com^$third-party (easylistchina+easylist.txt: 36859) -.mentad.com -# ||mengheng.net^$third-party (easylistchina+easylist.txt: 36858) -.mengheng.net -# ||mellowads.com^$third-party (easylistchina+easylist.txt: 36857) -.mellowads.com -# ||meinlist.com^$third-party (easylistchina+easylist.txt: 36856) -.meinlist.com -# ||megbase.com^$third-party (easylistchina+easylist.txt: 36855) -.megbase.com -# ||megatronmailer.com^$third-party (easylistchina+easylist.txt: 36854) -.megatronmailer.com -# ||megapopads.com^$third-party (easylistchina+easylist.txt: 36853) -.megapopads.com -# ||megacpm.com^$third-party (easylistchina+easylist.txt: 36852) -.megacpm.com -# ||megaad.nz^$third-party (easylistchina+easylist.txt: 36851) -.megaad.nz -# ||meetic-partners.com^$third-party (easylistchina+easylist.txt: 36850) -.meetic-partners.com -# ||meendocash.com^$third-party (easylistchina+easylist.txt: 36849) -.meendocash.com -# ||medyanetads.com^$third-party (easylistchina+easylist.txt: 36848) -.medyanetads.com -# ||medyanet.net^$third-party (easylistchina+easylist.txt: 36847) -.medyanet.net -# ||medrx.sensis.com.au^$third-party (easylistchina+easylist.txt: 36846) -.medrx.sensis.com.au -# ||medleyads.com^$third-party (easylistchina+easylist.txt: 36845) -.medleyads.com -# ||mediatraks.com^$third-party (easylistchina+easylist.txt: 36844) -.mediatraks.com -# ||mediatraffic.com^$third-party (easylistchina+easylist.txt: 36843) -.mediatraffic.com -# ||mediative.ca^$third-party (easylistchina+easylist.txt: 36842) -.mediative.ca -# ||mediatarget.com^$third-party (easylistchina+easylist.txt: 36841) -.mediatarget.com -# ||mediapeo.com^$third-party (easylistchina+easylist.txt: 36840) -.mediapeo.com -# ||mediaonpro.com^$third-party (easylistchina+easylist.txt: 36839) -.mediaonpro.com -# ||mediaonenetwork.net^$third-party (easylistchina+easylist.txt: 36838) -.mediaonenetwork.net -# ||medialation.net^$third-party (easylistchina+easylist.txt: 36837) -.medialation.net -# ||medialand.ru^$third-party (easylistchina+easylist.txt: 36836) -.medialand.ru -# ||mediakeywords.com^$third-party (easylistchina+easylist.txt: 36835) -.mediakeywords.com -# ||mediagridwork.com^$third-party (easylistchina+easylist.txt: 36834) -.mediagridwork.com -# ||mediag4.com^$third-party (easylistchina+easylist.txt: 36833) -.mediag4.com -# ||mediaforge.com^$third-party (easylistchina+easylist.txt: 36832) -.mediaforge.com -# ||mediaflire.com^$third-party (easylistchina+easylist.txt: 36831) -.mediaflire.com -# ||mediafilesdownload.com^$third-party (easylistchina+easylist.txt: 36830) -.mediafilesdownload.com -# ||mediaffiliation.com^$third-party (easylistchina+easylist.txt: 36829) -.mediaffiliation.com -# ||mediacpm.com^$third-party (easylistchina+easylist.txt: 36828) -.mediacpm.com -# ||mediaclick.com^$third-party (easylistchina+easylist.txt: 36827) -.mediaclick.com -# ||mediaadserver.org^$third-party (easylistchina+easylist.txt: 36826) -.mediaadserver.org -# ||media970.com^$third-party (easylistchina+easylist.txt: 36825) -.media970.com -# ||media6degrees.com^$third-party (easylistchina+easylist.txt: 36824) -.media6degrees.com -# ||media303.com^$third-party (easylistchina+easylist.txt: 36823) -.media303.com -# ||media.net^$third-party (easylistchina+easylist.txt: 36822) -.media.net -# ||media-servers.net^$third-party (easylistchina+easylist.txt: 36821) -.media-servers.net -# ||media-networks.ru^$third-party (easylistchina+easylist.txt: 36820) -.media-networks.ru -# ||media-ks.net^$third-party (easylistchina+easylist.txt: 36819) -.media-ks.net -# ||media-general.com^$third-party (easylistchina+easylist.txt: 36818) -.media-general.com -# ||meadigital.com^$third-party (easylistchina+easylist.txt: 36817) -.meadigital.com -# ||mdn2015x4.com^$third-party (easylistchina+easylist.txt: 36816) -.mdn2015x4.com -# ||mdn2015x2.com^$third-party (easylistchina+easylist.txt: 36815) -.mdn2015x2.com -# ||mdn2015x1.com^$third-party (easylistchina+easylist.txt: 36814) -.mdn2015x1.com -# ||mdialog.com^$third-party (easylistchina+easylist.txt: 36813) -.mdialog.com -# ||mdadx.com^$third-party (easylistchina+easylist.txt: 36812) -.mdadx.com -# ||mdadvertising.net^$third-party (easylistchina+easylist.txt: 36811) -.mdadvertising.net -# ||mcdstorage.com^$third-party (easylistchina+easylist.txt: 36810) -.mcdstorage.com -# ||mcdomainalot.com^$third-party (easylistchina+easylist.txt: 36809) -.mcdomainalot.com -# ||mbn.com.ua^$third-party (easylistchina+easylist.txt: 36808) -.mbn.com.ua -# ||mb8e17f12.website^$third-party (easylistchina+easylist.txt: 36807) -.mb8e17f12.website -# ||mb57.com^$third-party (easylistchina+easylist.txt: 36806) -.mb57.com -# ||mb38.com^$third-party (easylistchina+easylist.txt: 36805) -.mb38.com -# ||mb104.com^$third-party (easylistchina+easylist.txt: 36804) -.mb104.com -# ||mb102.com^$third-party (easylistchina+easylist.txt: 36803) -.mb102.com -# ||mb01.com^$third-party (easylistchina+easylist.txt: 36802) -.mb01.com -# ||maxserving.com^$third-party (easylistchina+easylist.txt: 36801) -.maxserving.com -# ||maudau.com^$third-party (easylistchina+easylist.txt: 36800) -.maudau.com -# ||matiro.com^$third-party (easylistchina+easylist.txt: 36799) -.matiro.com -# ||mastertraffic.cn^$third-party (easylistchina+easylist.txt: 36798) -.mastertraffic.cn -# ||masternal.com^$third-party (easylistchina+easylist.txt: 36797) -.masternal.com -# ||masterads.org^$third-party (easylistchina+easylist.txt: 36796) -.masterads.org -# ||martiniadnetwork.com^$third-party (easylistchina+easylist.txt: 36795) -.martiniadnetwork.com -# ||marsads.com^$third-party (easylistchina+easylist.txt: 36794) -.marsads.com -# ||marketoring.com^$third-party (easylistchina+easylist.txt: 36793) -.marketoring.com -# ||marketnetwork.com^$third-party (easylistchina+easylist.txt: 36792) -.marketnetwork.com -# ||marketleverage.com^$third-party (easylistchina+easylist.txt: 36791) -.marketleverage.com -# ||marketingenhanced.com^$third-party (easylistchina+easylist.txt: 36790) -.marketingenhanced.com -# ||markethealth.com^$third-party (easylistchina+easylist.txt: 36789) -.markethealth.com -# ||marketgid.com^$third-party (easylistchina+easylist.txt: 36788) -.marketgid.com -# ||marketfly.net^$third-party (easylistchina+easylist.txt: 36787) -.marketfly.net -# ||marketbanker.com^$third-party (easylistchina+easylist.txt: 36786) -.marketbanker.com -# ||marfeel.com^$third-party (easylistchina+easylist.txt: 36785) -.marfeel.com -# ||marbil24.co.za^$third-party (easylistchina+easylist.txt: 36784) -.marbil24.co.za -# ||mangoforex.com^$third-party (easylistchina+easylist.txt: 36783) -.mangoforex.com -# ||mallsponsor.com^$third-party (easylistchina+easylist.txt: 36782) -.mallsponsor.com -# ||makemoneymakemoney.net^$third-party (easylistchina+easylist.txt: 36781) -.makemoneymakemoney.net -# ||makecashtakingsurveys.biz^$third-party (easylistchina+easylist.txt: 36780) -.makecashtakingsurveys.biz -# ||mainroll.com^$third-party (easylistchina+easylist.txt: 36779) -.mainroll.com -# ||mainadv.com^$third-party (easylistchina+easylist.txt: 36778) -.mainadv.com -# ||mailmarketingmachine.com^$third-party (easylistchina+easylist.txt: 36777) -.mailmarketingmachine.com -# ||magnetisemedia.com^$third-party (easylistchina+easylist.txt: 36776) -.magnetisemedia.com -# ||magicalled.info^$third-party (easylistchina+easylist.txt: 36775) -.magicalled.info -# ||madsone.com^$third-party (easylistchina+easylist.txt: 36774) -.madsone.com -# ||madserving.com^$third-party (easylistchina+easylist.txt: 36773) -.madserving.com -# ||madadsmedia.com^$third-party (easylistchina+easylist.txt: 36772) -.madadsmedia.com -# ||machings.com^^$third-party (easylistchina+easylist.txt: 36771) -.machings.com/[^\w%.-] -# ||mabirol.com^$third-party (easylistchina+easylist.txt: 36770) -.mabirol.com -# ||m5prod.net^$third-party (easylistchina+easylist.txt: 36769) -.m5prod.net -# ||m57ku6sm.com^$third-party (easylistchina+easylist.txt: 36768) -.m57ku6sm.com -# ||m4pub.com^$third-party (easylistchina+easylist.txt: 36767) -.m4pub.com -# ||m2pub.com^$third-party (easylistchina+easylist.txt: 36766) -.m2pub.com -# ||m1.fwmrm.net^$object-subrequest,third-party (easylistchina+easylist.txt: 36765) -.m1.fwmrm.net -# ||lzjl.com^$third-party (easylistchina+easylist.txt: 36764) -.lzjl.com -# ||lx2rv.com^$third-party (easylistchina+easylist.txt: 36763) -.lx2rv.com -# ||luxup.ru^$third-party (easylistchina+easylist.txt: 36762) -.luxup.ru -# ||luxbetaffiliates.com.au^$third-party (easylistchina+easylist.txt: 36761) -.luxbetaffiliates.com.au -# ||luxadv.com^$third-party (easylistchina+easylist.txt: 36760) -.luxadv.com -# ||lushcrush.com^$third-party (easylistchina+easylist.txt: 36759) -.lushcrush.com -# ||lucidmedia.com^$third-party (easylistchina+easylist.txt: 36758) -.lucidmedia.com -# ||ltassrv.com/serve/ (easylistchina+easylist.txt: 36757) -.ltassrv.com/serve/ -# ||ltassrv.com/goads.swf (easylistchina+easylist.txt: 36756) -.ltassrv.com/goads\.swf -# ||ltassrv.com.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 36755) -.ltassrv.com.s3.amazonaws.com -# ||lqw.me^$third-party (easylistchina+easylist.txt: 36754) -.lqw.me -# ||lqcdn.com^$third-party (easylistchina+easylist.txt: 36753) -.lqcdn.com -# ||loxtk.com^$third-party (easylistchina+easylist.txt: 36752) -.loxtk.com -# ||love-banner.com^$third-party (easylistchina+easylist.txt: 36751) -.love-banner.com -# ||lotteryaffiliates.com^$third-party (easylistchina+easylist.txt: 36750) -.lotteryaffiliates.com -# ||lostelephants.xyz^$third-party (easylistchina+easylist.txt: 36749) -.lostelephants.xyz -# ||losomy.com^$third-party (easylistchina+easylist.txt: 36748) -.losomy.com -# ||loseads.eu^$third-party (easylistchina+easylist.txt: 36747) -.loseads.eu -# ||lose-ads.de^$third-party (easylistchina+easylist.txt: 36746) -.lose-ads.de -# ||looneynetwork.com^$third-party (easylistchina+easylist.txt: 36745) -.looneynetwork.com -# ||looneyads.com^$third-party (easylistchina+easylist.txt: 36744) -.looneyads.com -# ||looksmart.com^$third-party (easylistchina+easylist.txt: 36743) -.looksmart.com -# ||lookit-quick.com^$third-party (easylistchina+easylist.txt: 36742) -.lookit-quick.com -# ||loodyas.com^$third-party (easylistchina+easylist.txt: 36741) -.loodyas.com -# ||logo-net.co.uk^$third-party (easylistchina+easylist.txt: 36740) -.logo-net.co.uk -# ||lockscalecompare.com^$third-party (easylistchina+easylist.txt: 36739) -.lockscalecompare.com -# ||lockhosts.com^$third-party (easylistchina+easylist.txt: 36738) -.lockhosts.com -# ||lockerdome.com^$third-party (easylistchina+easylist.txt: 36737) -.lockerdome.com -# ||localsearch24.co.uk^$third-party (easylistchina+easylist.txt: 36736) -.localsearch24.co.uk -# ||localedgemedia.com^$third-party (easylistchina+easylist.txt: 36735) -.localedgemedia.com -# ||localadbuy.com^$third-party (easylistchina+easylist.txt: 36734) -.localadbuy.com -# ||loading-resource.com^$third-party (easylistchina+easylist.txt: 36733) -.loading-resource.com -# ||lndjj.com^$third-party (easylistchina+easylist.txt: 36732) -.lndjj.com -# ||liveuniversenetwork.com^$third-party (easylistchina+easylist.txt: 36731) -.liveuniversenetwork.com -# ||liverail.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 36730) -.liverail.com -# ||liveadserver.net^$third-party (easylistchina+easylist.txt: 36729) -.liveadserver.net -# ||liveadoptimizer.com^$third-party (easylistchina+easylist.txt: 36728) -.liveadoptimizer.com -# ||liveadexchanger.com^$third-party (easylistchina+easylist.txt: 36727) -.liveadexchanger.com -# ||listingcafe.com^$third-party (easylistchina+easylist.txt: 36726) -.listingcafe.com -# ||liqwid.net^$third-party (easylistchina+easylist.txt: 36725) -.liqwid.net -# ||linkz.net^$third-party (easylistchina+easylist.txt: 36724) -.linkz.net -# ||linkybank.com^$third-party (easylistchina+easylist.txt: 36723) -.linkybank.com -# ||linkworth.com^$third-party (easylistchina+easylist.txt: 36722) -.linkworth.com -# ||linkwash.de^$third-party (easylistchina+easylist.txt: 36721) -.linkwash.de -# ||linkstorm.net^$third-party (easylistchina+easylist.txt: 36720) -.linkstorm.net -# ||linksmart.com^$third-party (easylistchina+easylist.txt: 36719) -.linksmart.com -# ||linkshowoff.com^$third-party (easylistchina+easylist.txt: 36718) -.linkshowoff.com -# ||links.io^$third-party (easylistchina+easylist.txt: 36717) -.links.io -# ||linkreferral.com^$third-party (easylistchina+easylist.txt: 36716) -.linkreferral.com -# ||linkoffers.net^$third-party (easylistchina+easylist.txt: 36715) -.linkoffers.net -# ||linkmads.com^$third-party (easylistchina+easylist.txt: 36714) -.linkmads.com -# ||linkgrand.com^$third-party (easylistchina+easylist.txt: 36713) -.linkgrand.com -# ||linkexchangers.net^$third-party (easylistchina+easylist.txt: 36712) -.linkexchangers.net -# ||linkexchange.com^$third-party (easylistchina+easylist.txt: 36711) -.linkexchange.com -# ||linkelevator.com^$third-party (easylistchina+easylist.txt: 36710) -.linkelevator.com -# ||linkconnector.com^$third-party (easylistchina+easylist.txt: 36709) -.linkconnector.com -# ||linkclicks.com^$third-party (easylistchina+easylist.txt: 36708) -.linkclicks.com -# ||linkbuddies.com^$third-party (easylistchina+easylist.txt: 36707) -.linkbuddies.com -# ||linicom.co.il^$third-party (easylistchina+easylist.txt: 36706) -.linicom.co.il -# ||lightningcast.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 36705) -.lightningcast.net -# ||lightad.co.kr^$third-party (easylistchina+easylist.txt: 36704) -.lightad.co.kr -# ||ligational.com^$third-party (easylistchina+easylist.txt: 36703) -.ligational.com -# ||liftdna.com^$third-party (easylistchina+easylist.txt: 36702) -.liftdna.com -# ||lgse.com^$third-party (easylistchina+easylist.txt: 36701) -.lgse.com -# ||lfstmedia.com^$third-party (easylistchina+easylist.txt: 36700) -.lfstmedia.com -# ||letsgoshopping.tk^$third-party (easylistchina+easylist.txt: 36699) -.letsgoshopping.tk -# ||letilyadothejob.com^$third-party (easylistchina+easylist.txt: 36698) -.letilyadothejob.com -# ||legisland.net^$third-party (easylistchina+easylist.txt: 36697) -.legisland.net -# ||leetmedia.com^$third-party (easylistchina+easylist.txt: 36696) -.leetmedia.com -# ||leadmediapartners.com^$third-party (easylistchina+easylist.txt: 36695) -.leadmediapartners.com -# ||leaderpub.fr^$third-party (easylistchina+easylist.txt: 36694) -.leaderpub.fr -# ||leadcola.com^$third-party (easylistchina+easylist.txt: 36693) -.leadcola.com -# ||leadbolt.net^$third-party (easylistchina+easylist.txt: 36692) -.leadbolt.net -# ||leadadvert.info^$third-party (easylistchina+easylist.txt: 36691) -.leadadvert.info -# ||leadad.mobi^$third-party (easylistchina+easylist.txt: 36690) -.leadad.mobi -# ||leadacceptor.com^$third-party (easylistchina+easylist.txt: 36689) -.leadacceptor.com -# ||lduhtrp.net^$third-party (easylistchina+easylist.txt: 36688) -.lduhtrp.net -# ||ldgateway.com^$third-party (easylistchina+easylist.txt: 36687) -.ldgateway.com -# ||lcl2adserver.com^$third-party (easylistchina+easylist.txt: 36686) -.lcl2adserver.com -# ||lbm1.com^$third-party (easylistchina+easylist.txt: 36685) -.lbm1.com -# ||lazynerd.info^$third-party (easylistchina+easylist.txt: 36684) -.lazynerd.info -# ||layerwelt.com^$third-party (easylistchina+easylist.txt: 36683) -.layerwelt.com -# ||layerloop.com^$third-party (easylistchina+easylist.txt: 36682) -.layerloop.com -# ||layer-ad.org^$third-party (easylistchina+easylist.txt: 36681) -.layer-ad.org -# ||launchbit.com^$third-party (easylistchina+easylist.txt: 36680) -.launchbit.com -# ||laserhairremovalstore.com^$third-party (easylistchina+easylist.txt: 36679) -.laserhairremovalstore.com -# ||largestable.com^$third-party (easylistchina+easylist.txt: 36678) -.largestable.com -# ||lanistaconcepts.com^$third-party (easylistchina+easylist.txt: 36677) -.lanistaconcepts.com -# ||lakidar.net^$third-party (easylistchina+easylist.txt: 36676) -.lakidar.net -# ||lakequincy.com^$third-party (easylistchina+easylist.txt: 36675) -.lakequincy.com -# ||ladbrokesaffiliates.com.au^$third-party (easylistchina+easylist.txt: 36674) -.ladbrokesaffiliates.com.au -# ||l3op.info^$third-party (easylistchina+easylist.txt: 36673) -.l3op.info -# ||kumpulblogger.com^$third-party (easylistchina+easylist.txt: 36672) -.kumpulblogger.com -# ||kromeleta.ru^$third-party (easylistchina+easylist.txt: 36671) -.kromeleta.ru -# ||kr3vinsx.com^$third-party (easylistchina+easylist.txt: 36670) -.kr3vinsx.com -# ||kqzyfj.com^$third-party (easylistchina+easylist.txt: 36669) -.kqzyfj.com -# ||kovla.com^$third-party (easylistchina+easylist.txt: 36668) -.kovla.com -# ||korrelate.net^$third-party (easylistchina+easylist.txt: 36667) -.korrelate.net -# ||koocash.com^$third-party (easylistchina+easylist.txt: 36666) -.koocash.com -# ||kontextua.com^$third-party (easylistchina+easylist.txt: 36665) -.kontextua.com -# ||komoona.com^$third-party (easylistchina+easylist.txt: 36664) -.komoona.com -# ||kolition.com^$third-party (easylistchina+easylist.txt: 36663) -.kolition.com -# ||knowd.com^$third-party (easylistchina+easylist.txt: 36662) -.knowd.com -# ||knorex.asia^$third-party (easylistchina+easylist.txt: 36661) -.knorex.asia -# ||klonedaset.org^$third-party (easylistchina+easylist.txt: 36660) -.klonedaset.org -# ||kloapers.com^$third-party (easylistchina+easylist.txt: 36659) -.kloapers.com -# ||klixfeed.com^$third-party (easylistchina+easylist.txt: 36658) -.klixfeed.com -# ||klipmart.com^$third-party (easylistchina+easylist.txt: 36657) -.klipmart.com -# ||klikvip.com^$third-party (easylistchina+easylist.txt: 36656) -.klikvip.com -# ||kliksaya.com^$third-party (easylistchina+easylist.txt: 36655) -.kliksaya.com -# ||klikadvertising.com^$third-party (easylistchina+easylist.txt: 36654) -.klikadvertising.com -# ||kjgh5o.com^$third-party (easylistchina+easylist.txt: 36653) -.kjgh5o.com -# ||kitnmedia.com^$third-party (easylistchina+easylist.txt: 36652) -.kitnmedia.com -# ||kiosked.com^$third-party (easylistchina+easylist.txt: 36651) -.kiosked.com -# ||kintokup.com^$third-party (easylistchina+easylist.txt: 36650) -.kintokup.com -# ||kinley.com^$third-party (easylistchina+easylist.txt: 36649) -.kinley.com -# ||kikuzip.com^$third-party (easylistchina+easylist.txt: 36648) -.kikuzip.com -# ||keywordblocks.com^$third-party (easylistchina+easylist.txt: 36647) -.keywordblocks.com -# ||keyrunmodel.com^$third-party (easylistchina+easylist.txt: 36646) -.keyrunmodel.com -# ||ketoo.com^$third-party (easylistchina+easylist.txt: 36645) -.ketoo.com -# ||kerg.net^$third-party (easylistchina+easylist.txt: 36644) -.kerg.net -# ||kehalim.com^$third-party (easylistchina+easylist.txt: 36643) -.kehalim.com -# ||keewurd.com^$third-party (easylistchina+easylist.txt: 36642) -.keewurd.com -# ||kavanga.ru^$third-party (easylistchina+easylist.txt: 36641) -.kavanga.ru -# ||kantarmedia.com^$third-party (easylistchina+easylist.txt: 36640) -.kantarmedia.com -# ||kanoodle.com^$third-party (easylistchina+easylist.txt: 36639) -.kanoodle.com -# ||k0z09okc.com^$third-party (easylistchina+easylist.txt: 36638) -.k0z09okc.com -# ||jyvtidkx.com^$third-party (easylistchina+easylist.txt: 36637) -.jyvtidkx.com -# ||jwaavsze.com^$third-party (easylistchina+easylist.txt: 36636) -.jwaavsze.com -# ||justrelevant.com^$third-party (easylistchina+easylist.txt: 36635) -.justrelevant.com -# ||jursp.com^$third-party (easylistchina+easylist.txt: 36634) -.jursp.com -# ||jumptap.com^$third-party (easylistchina+easylist.txt: 36633) -.jumptap.com -# ||jumpelead.com^$third-party (easylistchina+easylist.txt: 36632) -.jumpelead.com -# ||jumia.com.ng^$third-party (easylistchina+easylist.txt: 36631) -.jumia.com.ng -# ||jumbolt.ru^$third-party (easylistchina+easylist.txt: 36630) -.jumbolt.ru -# ||jumboaffiliates.com^$third-party (easylistchina+easylist.txt: 36629) -.jumboaffiliates.com -# ||jujzh9va.com^$third-party (easylistchina+easylist.txt: 36628) -.jujzh9va.com -# ||jujuads.com^$third-party (easylistchina+easylist.txt: 36627) -.jujuads.com -# ||juiceadv.net^$third-party (easylistchina+easylist.txt: 36626) -.juiceadv.net -# ||juiceadv.com^$third-party (easylistchina+easylist.txt: 36625) -.juiceadv.com -# ||judicated.com^$third-party (easylistchina+easylist.txt: 36624) -.judicated.com -# ||jtrakk.com^$third-party (easylistchina+easylist.txt: 36623) -.jtrakk.com -# ||jssearch.net^$third-party (easylistchina+easylist.txt: 36622) -.jssearch.net -# ||jsretra.com^$third-party (easylistchina+easylist.txt: 36621) -.jsretra.com -# ||jsfeedadsget.com^$third-party (easylistchina+easylist.txt: 36620) -.jsfeedadsget.com -# ||jscount.com^$third-party (easylistchina+easylist.txt: 36619) -.jscount.com -# ||js.cdn.ac^$third-party (easylistchina+easylist.txt: 36618) -.js.cdn.ac -# ||jque.net^$third-party (easylistchina+easylist.txt: 36617) -.jque.net -# ||joytocash.com^$third-party (easylistchina+easylist.txt: 36616) -.joytocash.com -# ||jobtarget.com^$third-party (easylistchina+easylist.txt: 36615) -.jobtarget.com -# ||jobsyndicate.com^$third-party (easylistchina+easylist.txt: 36614) -.jobsyndicate.com -# ||jo7cofh3.com^$third-party (easylistchina+easylist.txt: 36613) -.jo7cofh3.com -# ||jmp9.com^$third-party (easylistchina+easylist.txt: 36612) -.jmp9.com -# ||jizzontoy.com^$third-party (easylistchina+easylist.txt: 36611) -.jizzontoy.com -# ||jiwire.com^$third-party (easylistchina+easylist.txt: 36610) -.jiwire.com -# ||jivox.com^$third-party (easylistchina+easylist.txt: 36609) -.jivox.com -# ||jiawen88.com^$third-party (easylistchina+easylist.txt: 36608) -.jiawen88.com -# ||jemmgroup.com^$third-party (easylistchina+easylist.txt: 36607) -.jemmgroup.com -# ||jeetyetmedia.com^$third-party (easylistchina+easylist.txt: 36606) -.jeetyetmedia.com -# ||jdproject.net^$third-party (easylistchina+easylist.txt: 36605) -.jdproject.net -# ||jdoqocy.com^$third-party (easylistchina+easylist.txt: 36604) -.jdoqocy.com -# ||jbrlsr.com^$third-party (easylistchina+easylist.txt: 36603) -.jbrlsr.com -# ||jangonetwork.com^$third-party (easylistchina+easylist.txt: 36602) -.jangonetwork.com -# ||jango.com^$third-party (easylistchina+easylist.txt: 36601) -.jango.com -# ||jadcenter.com^$third-party (easylistchina+easylist.txt: 36600) -.jadcenter.com -# ||j2ef76da3.website^$third-party (easylistchina+easylist.txt: 36599) -.j2ef76da3.website -# ||izeads.com^$third-party (easylistchina+easylist.txt: 36598) -.izeads.com -# ||ixnp.com^$third-party (easylistchina+easylist.txt: 36597) -.ixnp.com -# ||iwantmoar.net^$third-party (easylistchina+easylist.txt: 36596) -.iwantmoar.net -# ||iv.doubleclick.net^$third-party (easylistchina+easylist.txt: 36595) -.iv.doubleclick.net -# ||iu16wmye.com^$third-party (easylistchina+easylist.txt: 36594) -.iu16wmye.com -# ||itrengia.com^$third-party (easylistchina+easylist.txt: 36593) -.itrengia.com -# ||isparkmedia.com^$third-party (easylistchina+easylist.txt: 36592) -.isparkmedia.com -# ||isohits.com^$third-party (easylistchina+easylist.txt: 36591) -.isohits.com -# ||isapi.solutions^$third-party (easylistchina+easylist.txt: 36590) -.isapi.solutions -# ||ipromote.com^$third-party (easylistchina+easylist.txt: 36589) -.ipromote.com -# ||ipredictive.com^$third-party (easylistchina+easylist.txt: 36588) -.ipredictive.com -# ||ip-adress.com^$third-party (easylistchina+easylist.txt: 36587) -.ip-adress.com -# ||inviziads.com^$third-party (easylistchina+easylist.txt: 36586) -.inviziads.com -# ||investingchannel.com^$third-party (easylistchina+easylist.txt: 36585) -.investingchannel.com -# ||inuxu.co.in^$third-party (easylistchina+easylist.txt: 36584) -.inuxu.co.in -# ||inuxu.biz^$third-party (easylistchina+easylist.txt: 36583) -.inuxu.biz -# ||inuvo.com^$third-party (easylistchina+easylist.txt: 36582) -.inuvo.com -# ||intuneads.com^$third-party (easylistchina+easylist.txt: 36581) -.intuneads.com -# ||inttrax.com^$third-party (easylistchina+easylist.txt: 36580) -.inttrax.com -# ||intopicmedia.com^$third-party (easylistchina+easylist.txt: 36579) -.intopicmedia.com -# ||intgr.net^$third-party (easylistchina+easylist.txt: 36578) -.intgr.net -# ||intextual.net^$third-party (easylistchina+easylist.txt: 36577) -.intextual.net -# ||intextscript.com^$third-party (easylistchina+easylist.txt: 36576) -.intextscript.com -# ||intextdirect.com^$third-party (easylistchina+easylist.txt: 36575) -.intextdirect.com -# ||interworksmedia.co.kr^$third-party (easylistchina+easylist.txt: 36574) -.interworksmedia.co.kr -# ||interpolls.com^$third-party (easylistchina+easylist.txt: 36573) -.interpolls.com -# ||internetadbrokers.com^$third-party (easylistchina+easylist.txt: 36572) -.internetadbrokers.com -# ||intermarkets.net^$third-party (easylistchina+easylist.txt: 36571) -.intermarkets.net -# ||interesting.cc^$third-party (easylistchina+easylist.txt: 36570) -.interesting.cc -# ||interestably.com^$third-party (easylistchina+easylist.txt: 36569) -.interestably.com -# ||interclick.com^$third-party (easylistchina+easylist.txt: 36568) -.interclick.com -# ||interactivespot.net^$third-party (easylistchina+easylist.txt: 36567) -.interactivespot.net -# ||intentmedia.net^$third-party (easylistchina+easylist.txt: 36566) -.intentmedia.net -# ||intenthq.com^$third-party (easylistchina+easylist.txt: 36565) -.intenthq.com -# ||intellitxt.com^$third-party (easylistchina+easylist.txt: 36564) -.intellitxt.com -# ||intellibanners.com^$third-party (easylistchina+easylist.txt: 36563) -.intellibanners.com -# ||integral-marketing.com^$third-party (easylistchina+easylist.txt: 36562) -.integral-marketing.com -# ||instivate.com^$third-party (easylistchina+easylist.txt: 36561) -.instivate.com -# ||instinctiveads.com^$third-party (easylistchina+easylist.txt: 36560) -.instinctiveads.com -# ||instantdollarz.com^$third-party (easylistchina+easylist.txt: 36559) -.instantdollarz.com -# ||instantbannercreator.com^$third-party (easylistchina+easylist.txt: 36558) -.instantbannercreator.com -# ||insta-cash.net^$third-party (easylistchina+easylist.txt: 36557) -.insta-cash.net -# ||inspiringsweater.xyz^$third-party (easylistchina+easylist.txt: 36556) -.inspiringsweater.xyz -# ||inskinmedia.com^$~stylesheet,third-party (easylistchina+easylist.txt: 36555) -.inskinmedia.com -# ||inskinad.com^$third-party (easylistchina+easylist.txt: 36554) -.inskinad.com -# ||insitesystems.com^$third-party (easylistchina+easylist.txt: 36553) -.insitesystems.com -# ||insitepromotion.com^$third-party (easylistchina+easylist.txt: 36552) -.insitepromotion.com -# ||insightexpressai.com^$third-party (easylistchina+easylist.txt: 36551) -.insightexpressai.com -# ||insightexpress.com^$third-party (easylistchina+easylist.txt: 36550) -.insightexpress.com -# ||innovid.com^$third-party (easylistchina+easylist.txt: 36549) -.innovid.com -# ||innity.net^$third-party (easylistchina+easylist.txt: 36548) -.innity.net -# ||innity.com^$third-party (easylistchina+easylist.txt: 36547) -.innity.com -# ||inktad.com^$third-party (easylistchina+easylist.txt: 36546) -.inktad.com -# ||ingame.ad^$third-party (easylistchina+easylist.txt: 36545) -.ingame.ad -# ||infra-ad.com^$third-party (easylistchina+easylist.txt: 36544) -.infra-ad.com -# ||information-sale.com^$third-party (easylistchina+easylist.txt: 36543) -.information-sale.com -# ||infolinks.com^$third-party (easylistchina+easylist.txt: 36542) -.infolinks.com -# ||info4.a7.org^$third-party (easylistchina+easylist.txt: 36541) -.info4.a7.org -# ||influads.com^$third-party (easylistchina+easylist.txt: 36540) -.influads.com -# ||infinityads.com^$third-party (easylistchina+easylist.txt: 36539) -.infinityads.com -# ||infinite-ads.com^$third-party (easylistchina+easylist.txt: 36538) -.infinite-ads.com -# ||infectiousmedia.com^$third-party (easylistchina+easylist.txt: 36537) -.infectiousmedia.com -# ||inetinteractive.com^$third-party (easylistchina+easylist.txt: 36536) -.inetinteractive.com -# ||inentasky.com^$third-party (easylistchina+easylist.txt: 36535) -.inentasky.com -# ||industrybrains.com^$third-party (easylistchina+easylist.txt: 36534) -.industrybrains.com -# ||indofad.com^$third-party (easylistchina+easylist.txt: 36533) -.indofad.com -# ||indieclick.com^$third-party (easylistchina+easylist.txt: 36532) -.indieclick.com -# ||indicate.to^$third-party (easylistchina+easylist.txt: 36531) -.indicate.to -# ||indianlinkexchange.com^$third-party (easylistchina+easylist.txt: 36530) -.indianlinkexchange.com -# ||indianbannerexchange.com^$third-party (easylistchina+easylist.txt: 36529) -.indianbannerexchange.com -# ||indiads.com^$third-party (easylistchina+easylist.txt: 36528) -.indiads.com -# ||indiabanner.com^$third-party (easylistchina+easylist.txt: 36527) -.indiabanner.com -# ||indexww.com^$third-party (easylistchina+easylist.txt: 36526) -.indexww.com -# ||increase-marketing.com^$third-party (easylistchina+easylist.txt: 36525) -.increase-marketing.com -# ||incomeliberation.com^$third-party (easylistchina+easylist.txt: 36524) -.incomeliberation.com -# ||incentaclick.com^$third-party (easylistchina+easylist.txt: 36523) -.incentaclick.com -# ||in-appadvertising.com^$third-party (easylistchina+easylist.txt: 36522) -.in-appadvertising.com -# ||impressionvalue.mobi^$third-party (easylistchina+easylist.txt: 36521) -.impressionvalue.mobi -# ||impressionperformance.biz^$third-party (easylistchina+easylist.txt: 36520) -.impressionperformance.biz -# ||impressiondesk.com^$third-party (easylistchina+easylist.txt: 36519) -.impressiondesk.com -# ||impressioncontent.info^$third-party (easylistchina+easylist.txt: 36518) -.impressioncontent.info -# ||impressionaffiliate.mobi^$third-party (easylistchina+easylist.txt: 36517) -.impressionaffiliate.mobi -# ||impressionaffiliate.com^$third-party (easylistchina+easylist.txt: 36516) -.impressionaffiliate.com -# ||impresionesweb.com^$third-party (easylistchina+easylist.txt: 36515) -.impresionesweb.com -# ||implix.com^$third-party (easylistchina+easylist.txt: 36514) -.implix.com -# ||impactradius.com^$third-party (easylistchina+easylist.txt: 36513) -.impactradius.com -# ||impact-ad.jp^$third-party (easylistchina+easylist.txt: 36512) -.impact-ad.jp -# ||imp*.tradedoubler.com^$third-party (easylistchina+easylist.txt: 36511) -.imp*./.*\.tradedoubler\.com[^\w%.-] -.imp*.tradedoubler.com -# ||imonomy.com^$third-party (easylistchina+easylist.txt: 36510) -.imonomy.com -# ||imiclk.com^$third-party (easylistchina+easylist.txt: 36509) -.imiclk.com -# ||imho.ru^$third-party (easylistchina+easylist.txt: 36508) -.imho.ru -# ||imgwebfeed.com^$third-party (easylistchina+easylist.txt: 36507) -.imgwebfeed.com -# ||imgsniper.com^$third-party (easylistchina+easylist.txt: 36506) -.imgsniper.com -# ||imglt.com^$third-party (easylistchina+easylist.txt: 36505) -.imglt.com -# ||imgfeedget.com^$third-party (easylistchina+easylist.txt: 36504) -.imgfeedget.com -# ||img-giganto.net^$third-party (easylistchina+easylist.txt: 36503) -.img-giganto.net -# ||imediarevenue.com^$third-party (easylistchina+easylist.txt: 36502) -.imediarevenue.com -# ||imediaaudiences.com^$third-party (easylistchina+easylist.txt: 36501) -.imediaaudiences.com -# ||imedia.co.il^$third-party (easylistchina+easylist.txt: 36500) -.imedia.co.il -# ||imasdk.googleapis.com^$third-party (easylistchina+easylist.txt: 36499) -.imasdk.googleapis.com -# ||imageadnet.com^$third-party (easylistchina+easylist.txt: 36498) -.imageadnet.com -# ||ikzikistheking.com^$third-party (easylistchina+easylist.txt: 36497) -.ikzikistheking.com -# ||ignitioninstaller.com^$third-party (easylistchina+easylist.txt: 36496) -.ignitioninstaller.com -# ||igloohq.com^$third-party (easylistchina+easylist.txt: 36495) -.igloohq.com -# ||igameunion.com^$third-party (easylistchina+easylist.txt: 36494) -.igameunion.com -# ||iframe.mediaplazza.com^$third-party (easylistchina+easylist.txt: 36493) -.iframe.mediaplazza.com -# ||idownloadgalore.com^$third-party (easylistchina+easylist.txt: 36492) -.idownloadgalore.com -# ||identads.com^$third-party (easylistchina+easylist.txt: 36491) -.identads.com -# ||idealmedia.com^$third-party (easylistchina+easylist.txt: 36490) -.idealmedia.com -# ||icqadvnew.com^$third-party (easylistchina+easylist.txt: 36489) -.icqadvnew.com -# ||icdirect.com^$third-party (easylistchina+easylist.txt: 36488) -.icdirect.com -# ||ibryte.com^$third-party (easylistchina+easylist.txt: 36487) -.ibryte.com -# ||ibatom.com^$third-party (easylistchina+easylist.txt: 36486) -.ibatom.com -# ||ibannerexchange.com^$third-party (easylistchina+easylist.txt: 36485) -.ibannerexchange.com -# ||iasrv.com^$third-party (easylistchina+easylist.txt: 36484) -.iasrv.com -# ||iasbetaffiliates.com^$third-party (easylistchina+easylist.txt: 36483) -.iasbetaffiliates.com -# ||iamediaserve.com^$third-party (easylistchina+easylist.txt: 36482) -.iamediaserve.com -# ||i.skimresources.com^$third-party (easylistchina+easylist.txt: 36481) -.i.skimresources.com -# ||i-media.co.nz^$third-party (easylistchina+easylist.txt: 36480) -.i-media.co.nz -# ||hyperwebads.com^$third-party (easylistchina+easylist.txt: 36479) -.hyperwebads.com -# ||hypervre.com^$third-party (easylistchina+easylist.txt: 36478) -.hypervre.com -# ||hypertrackeraff.com^$third-party (easylistchina+easylist.txt: 36477) -.hypertrackeraff.com -# ||hyperlinksecure.com^$third-party (easylistchina+easylist.txt: 36476) -.hyperlinksecure.com -# ||hypemakers.net^$third-party (easylistchina+easylist.txt: 36475) -.hypemakers.net -# ||hypeads.org^$third-party (easylistchina+easylist.txt: 36474) -.hypeads.org -# ||hype-ads.com^$third-party (easylistchina+easylist.txt: 36473) -.hype-ads.com -# ||huzonico.com^$third-party (easylistchina+easylist.txt: 36472) -.huzonico.com -# ||httpsecurity.org^$third-party (easylistchina+easylist.txt: 36471) -.httpsecurity.org -# ||httpool.com^$third-party (easylistchina+easylist.txt: 36470) -.httpool.com -# ||htmlhubing.xyz^$third-party (easylistchina+easylist.txt: 36469) -.htmlhubing.xyz -# ||hstpnetwork.com^$third-party (easylistchina+easylist.txt: 36468) -.hstpnetwork.com -# ||hsslx.com^$third-party (easylistchina+easylist.txt: 36467) -.hsslx.com -# ||hplose.de^$third-party (easylistchina+easylist.txt: 36466) -.hplose.de -# ||hover.in^$third-party (easylistchina+easylist.txt: 36465) -.hover.in -# ||hotwords.com^$third-party (easylistchina+easylist.txt: 36464) -.hotwords.com -# ||hotwords.com.mx^$third-party (easylistchina+easylist.txt: 36463) -.hotwords.com.mx -# ||hotwords.com.br^$third-party (easylistchina+easylist.txt: 36462) -.hotwords.com.br -# ||hotptp.com^$third-party (easylistchina+easylist.txt: 36461) -.hotptp.com -# ||hotkeys.com^$third-party (easylistchina+easylist.txt: 36460) -.hotkeys.com -# ||hotfeed.net^$third-party (easylistchina+easylist.txt: 36459) -.hotfeed.net -# ||hotelscombined.com^$third-party (easylistchina+easylist.txt: 36458) -.hotelscombined.com -# ||hotelscombined.com.au^$third-party (easylistchina+easylist.txt: 36457) -.hotelscombined.com.au -# ||hot-hits.us^$third-party (easylistchina+easylist.txt: 36456) -.hot-hits.us -# ||hosticanaffiliate.com^$third-party (easylistchina+easylist.txt: 36455) -.hosticanaffiliate.com -# ||horyzon-media.com^$third-party (easylistchina+easylist.txt: 36454) -.horyzon-media.com -# ||horsered.com^$third-party (easylistchina+easylist.txt: 36453) -.horsered.com -# ||horse-racing-affiliate-program.co.uk^$third-party (easylistchina+easylist.txt: 36452) -.horse-racing-affiliate-program.co.uk -# ||hopfeed.com^$third-party (easylistchina+easylist.txt: 36451) -.hopfeed.com -# ||hoomezip.biz^$third-party (easylistchina+easylist.txt: 36450) -.hoomezip.biz -# ||holidaytravelguide.org^$third-party (easylistchina+easylist.txt: 36449) -.holidaytravelguide.org -# ||holdingprice.net^$third-party (easylistchina+easylist.txt: 36448) -.holdingprice.net -# ||hokaybo.com^$third-party (easylistchina+easylist.txt: 36447) -.hokaybo.com -# ||hlads.com^$third-party (easylistchina+easylist.txt: 36446) -.hlads.com -# ||hitwastedgarden.com^$third-party (easylistchina+easylist.txt: 36445) -.hitwastedgarden.com -# ||hits.sys.lv^$third-party (easylistchina+easylist.txt: 36444) -.hits.sys.lv -# ||hit-now.com^$third-party (easylistchina+easylist.txt: 36443) -.hit-now.com -# ||histians.com^$third-party (easylistchina+easylist.txt: 36442) -.histians.com -# ||hiplair.com^$third-party (easylistchina+easylist.txt: 36441) -.hiplair.com -# ||himediadx.com^$third-party (easylistchina+easylist.txt: 36440) -.himediadx.com -# ||himediads.com^$third-party (easylistchina+easylist.txt: 36439) -.himediads.com -# ||hilltopads.net^$third-party (easylistchina+easylist.txt: 36438) -.hilltopads.net -# ||hijacksystem.com^$third-party (easylistchina+easylist.txt: 36437) -.hijacksystem.com -# ||hiadone.com^$third-party (easylistchina+easylist.txt: 36436) -.hiadone.com -# ||hgdat.com^$third-party (easylistchina+easylist.txt: 36435) -.hgdat.com -# ||hexagram.com^$third-party (easylistchina+easylist.txt: 36434) -.hexagram.com -# ||helloreverb.com^$third-party (easylistchina+easylist.txt: 36433) -.helloreverb.com -# ||hebiichigo.com^$third-party (easylistchina+easylist.txt: 36432) -.hebiichigo.com -# ||healthcarestars.com^$third-party (easylistchina+easylist.txt: 36431) -.healthcarestars.com -# ||healthaffiliatesnetwork.com^$third-party (easylistchina+easylist.txt: 36430) -.healthaffiliatesnetwork.com -# ||headup.com^$third-party (easylistchina+easylist.txt: 36429) -.headup.com -# ||hdvidcodecs.com^$third-party (easylistchina+easylist.txt: 36428) -.hdvidcodecs.com -# ||hdvid-codecs-dl.net^$third-party (easylistchina+easylist.txt: 36427) -.hdvid-codecs-dl.net -# ||hdplayer-download.com^$third-party (easylistchina+easylist.txt: 36426) -.hdplayer-download.com -# ||hd-plugin.com^$third-party (easylistchina+easylist.txt: 36425) -.hd-plugin.com -# ||hb-247.com^$third-party (easylistchina+easylist.txt: 36424) -.hb-247.com -# ||havetohave.com^$third-party (easylistchina+easylist.txt: 36423) -.havetohave.com -# ||havamedia.net^$third-party (easylistchina+easylist.txt: 36422) -.havamedia.net -# ||harrenmedianetwork.com^$third-party (easylistchina+easylist.txt: 36421) -.harrenmedianetwork.com -# ||happilyswitching.net^$third-party (easylistchina+easylist.txt: 36420) -.happilyswitching.net -# ||hanaprop.com^$third-party (easylistchina+easylist.txt: 36419) -.hanaprop.com -# ||halogennetwork.com^$third-party (easylistchina+easylist.txt: 36418) -.halogennetwork.com -# ||halfpriceozarks.com^$third-party (easylistchina+easylist.txt: 36417) -.halfpriceozarks.com -# ||h12-media.com^$third-party (easylistchina+easylist.txt: 36416) -.h12-media.com -# ||h-images.net^$third-party (easylistchina+easylist.txt: 36415) -.h-images.net -# ||gx101.com^$third-party (easylistchina+easylist.txt: 36414) -.gx101.com -# ||gwallet.com^$third-party (easylistchina+easylist.txt: 36413) -.gwallet.com -# ||gururevenue.com^$third-party (easylistchina+easylist.txt: 36412) -.gururevenue.com -# ||gunpartners.com^$third-party (easylistchina+easylist.txt: 36411) -.gunpartners.com -# ||gumgum.com^$third-party (easylistchina+easylist.txt: 36410) -.gumgum.com -# ||guitaralliance.com^$third-party (easylistchina+easylist.txt: 36409) -.guitaralliance.com -# ||guardiandigitalcomparison.co.uk^$third-party (easylistchina+easylist.txt: 36408) -.guardiandigitalcomparison.co.uk -# ||gscsystemwithdarren.com^$third-party (easylistchina+easylist.txt: 36407) -.gscsystemwithdarren.com -# ||gscontxt.net^$third-party (easylistchina+easylist.txt: 36406) -.gscontxt.net -# ||grt03.com^$third-party (easylistchina+easylist.txt: 36405) -.grt03.com -# ||grt02.com^$third-party (easylistchina+easylist.txt: 36404) -.grt02.com -# ||groupcommerce.com^$third-party (easylistchina+easylist.txt: 36403) -.groupcommerce.com -# ||groovinads.com^$third-party (easylistchina+easylist.txt: 36402) -.groovinads.com -# ||grllopa.com^$third-party (easylistchina+easylist.txt: 36401) -.grllopa.com -# ||gripdownload.co^$third-party (easylistchina+easylist.txt: 36400) -.gripdownload.co -# ||gretzalz.com^$third-party (easylistchina+easylist.txt: 36399) -.gretzalz.com -# ||grenstia.com^$third-party (easylistchina+easylist.txt: 36398) -.grenstia.com -# ||greenlabelppc.com^$third-party (easylistchina+easylist.txt: 36397) -.greenlabelppc.com -# ||greenads.org^$third-party (easylistchina+easylist.txt: 36396) -.greenads.org -# ||gratisnetwork.com^$third-party (easylistchina+easylist.txt: 36395) -.gratisnetwork.com -# ||grapeshot.co.uk^$third-party (easylistchina+easylist.txt: 36394) -.grapeshot.co.uk -# ||grafpedia.com^$third-party (easylistchina+easylist.txt: 36393) -.grafpedia.com -# ||grabo.bg^$third-party (easylistchina+easylist.txt: 36392) -.grabo.bg -# ||grabmyads.com^$third-party (easylistchina+easylist.txt: 36391) -.grabmyads.com -# ||gpacalculatorhighschoolfree.com^$third-party (easylistchina+easylist.txt: 36390) -.gpacalculatorhighschoolfree.com -# ||goviral.hs.llnwd.net^$third-party (easylistchina+easylist.txt: 36389) -.goviral.hs.llnwd.net -# ||goviral-content.com^$third-party (easylistchina+easylist.txt: 36388) -.goviral-content.com -# ||governmenttrainingexchange.com^$third-party (easylistchina+easylist.txt: 36387) -.governmenttrainingexchange.com -# ||gourmetads.com^$third-party (easylistchina+easylist.txt: 36386) -.gourmetads.com -# ||gorgonkil.com^$third-party (easylistchina+easylist.txt: 36385) -.gorgonkil.com -# ||gopjn.com^$third-party (easylistchina+easylist.txt: 36384) -.gopjn.com -# ||googletagservices.com/tag/static/$third-party (easylistchina+easylist.txt: 36383) -.googletagservices.com/tag/static/ -# ||googletagservices.com/tag/js/gpt_$third-party (easylistchina+easylist.txt: 36382) -.googletagservices.com/tag/js/gpt_ -# ||googlesyndicatiion.com^$third-party (easylistchina+easylist.txt: 36381) -.googlesyndicatiion.com -# ||googleadservicepixel.com^$third-party (easylistchina+easylist.txt: 36380) -.googleadservicepixel.com -# ||goodadvertising.info^$third-party (easylistchina+easylist.txt: 36379) -.goodadvertising.info -# ||goodadvert.ru^$third-party (easylistchina+easylist.txt: 36378) -.goodadvert.ru -# ||gojoingscnow.com^$third-party (easylistchina+easylist.txt: 36377) -.gojoingscnow.com -# ||gogoplexer.com^$third-party (easylistchina+easylist.txt: 36376) -.gogoplexer.com -# ||goember.com^$third-party (easylistchina+easylist.txt: 36375) -.goember.com -# ||godspeaks.net^$third-party (easylistchina+easylist.txt: 36374) -.godspeaks.net -# ||goclickon.us^$third-party (easylistchina+easylist.txt: 36373) -.goclickon.us -# ||go2speed.org^$third-party (easylistchina+easylist.txt: 36372) -.go2speed.org -# ||go2media.org^$third-party (easylistchina+easylist.txt: 36371) -.go2media.org -# ||go2jump.org^$third-party (easylistchina+easylist.txt: 36370) -.go2jump.org -# ||gmads.net^$third-party (easylistchina+easylist.txt: 36369) -.gmads.net -# ||glowdot.com^$third-party (easylistchina+easylist.txt: 36368) -.glowdot.com -# ||globaltakeoff.net^$third-party (easylistchina+easylist.txt: 36367) -.globaltakeoff.net -# ||globalsuccessclub.com^$third-party (easylistchina+easylist.txt: 36366) -.globalsuccessclub.com -# ||globalinteractive.com^$third-party (easylistchina+easylist.txt: 36365) -.globalinteractive.com -# ||globaladv.net^$third-party (easylistchina+easylist.txt: 36364) -.globaladv.net -# ||globaladsales.com^$third-party (easylistchina+easylist.txt: 36363) -.globaladsales.com -# ||global-success-club.net^$third-party (easylistchina+easylist.txt: 36362) -.global-success-club.net -# ||glical.com^$third-party (easylistchina+easylist.txt: 36361) -.glical.com -# ||gklmedia.com^$third-party (easylistchina+easylist.txt: 36360) -.gklmedia.com -# ||gimiclub.com^$third-party (easylistchina+easylist.txt: 36359) -.gimiclub.com -# ||gigamega.su^$third-party (easylistchina+easylist.txt: 36358) -.gigamega.su -# ||giantaffiliates.com^$third-party (easylistchina+easylist.txt: 36357) -.giantaffiliates.com -# ||ggncpm.com^$third-party (easylistchina+easylist.txt: 36356) -.ggncpm.com -# ||gettipsz.info^$third-party (easylistchina+easylist.txt: 36355) -.gettipsz.info -# ||getthislistbuildingvideo.biz^$third-party (easylistchina+easylist.txt: 36354) -.getthislistbuildingvideo.biz -# ||getscorecash.com^$third-party (easylistchina+easylist.txt: 36353) -.getscorecash.com -# ||getgscfree.com^$third-party (easylistchina+easylist.txt: 36352) -.getgscfree.com -# ||getgamers.eu^$third-party (easylistchina+easylist.txt: 36351) -.getgamers.eu -# ||gestionpub.com^$third-party (easylistchina+easylist.txt: 36350) -.gestionpub.com -# ||geovisite.com^$third-party (easylistchina+easylist.txt: 36349) -.geovisite.com -# ||geopromos.com^$third-party (easylistchina+easylist.txt: 36348) -.geopromos.com -# ||geoipads.com^$third-party (easylistchina+easylist.txt: 36347) -.geoipads.com -# ||geo-idm.fr^$third-party (easylistchina+easylist.txt: 36346) -.geo-idm.fr -# ||genovesetacet.com^$third-party (easylistchina+easylist.txt: 36345) -.genovesetacet.com -# ||genieessp.com^$third-party (easylistchina+easylist.txt: 36344) -.genieessp.com -# ||geniad.net^$third-party (easylistchina+easylist.txt: 36343) -.geniad.net -# ||genesismedia.com^$third-party (easylistchina+easylist.txt: 36342) -.genesismedia.com -# ||genericsteps.com^$third-party (easylistchina+easylist.txt: 36341) -.genericsteps.com -# ||genericlink.com^$third-party (easylistchina+easylist.txt: 36340) -.genericlink.com -# ||gemineering.com^$third-party (easylistchina+easylist.txt: 36339) -.gemineering.com -# ||geld-internet-verdienen.net^$third-party (easylistchina+easylist.txt: 36338) -.geld-internet-verdienen.net -# ||gefhasio.com^$third-party (easylistchina+easylist.txt: 36337) -.gefhasio.com -# ||geek2us.net^$third-party (easylistchina+easylist.txt: 36336) -.geek2us.net -# ||geede.info^$third-party (easylistchina+easylist.txt: 36335) -.geede.info -# ||gdmdigital.com^$third-party (easylistchina+easylist.txt: 36334) -.gdmdigital.com -# ||gayadnetwork.com^$third-party (easylistchina+easylist.txt: 36333) -.gayadnetwork.com -# ||gatikus.com^$third-party (easylistchina+easylist.txt: 36332) -.gatikus.com -# ||gate-ru.com^$third-party (easylistchina+easylist.txt: 36331) -.gate-ru.com -# ||garvmedia.com^$third-party (easylistchina+easylist.txt: 36330) -.garvmedia.com -# ||garristo.com^$third-party (easylistchina+easylist.txt: 36329) -.garristo.com -# ||gannett.gcion.com^$third-party (easylistchina+easylist.txt: 36328) -.gannett.gcion.com -# ||gandrad.org^$third-party (easylistchina+easylist.txt: 36327) -.gandrad.org -# ||gan.doubleclick.net^$third-party (easylistchina+easylist.txt: 36326) -.gan.doubleclick.net -# ||gamesrevenue.com^$third-party (easylistchina+easylist.txt: 36325) -.gamesrevenue.com -# ||gamesbannerexchange.com^$third-party (easylistchina+easylist.txt: 36324) -.gamesbannerexchange.com -# ||gamersbanner.com^$third-party (easylistchina+easylist.txt: 36323) -.gamersbanner.com -# ||gamersad.com^$third-party (easylistchina+easylist.txt: 36322) -.gamersad.com -# ||gamehotus.com^$third-party (easylistchina+easylist.txt: 36321) -.gamehotus.com -# ||gamecetera.com^$third-party (easylistchina+easylist.txt: 36320) -.gamecetera.com -# ||gameads.com^$third-party (easylistchina+easylist.txt: 36319) -.gameads.com -# ||game-clicks.com^$third-party (easylistchina+easylist.txt: 36318) -.game-clicks.com -# ||game-advertising-online.com^$third-party (easylistchina+easylist.txt: 36317) -.game-advertising-online.com -# ||gambling-affiliation.com^$third-party (easylistchina+easylist.txt: 36316) -.gambling-affiliation.com -# ||galleyn.com^$third-party (easylistchina+easylist.txt: 36315) -.galleyn.com -# ||gainmoneyfast.com^$third-party (easylistchina+easylist.txt: 36314) -.gainmoneyfast.com -# ||gagenez.com^$third-party (easylistchina+easylist.txt: 36313) -.gagenez.com -# ||gagacon.com^$third-party (easylistchina+easylist.txt: 36312) -.gagacon.com -# ||g4whisperermedia.com^$third-party (easylistchina+easylist.txt: 36311) -.g4whisperermedia.com -# ||g-cash.biz^$third-party (easylistchina+easylist.txt: 36310) -.g-cash.biz -# ||fxyc0dwa.com^$third-party (easylistchina+easylist.txt: 36309) -.fxyc0dwa.com -# ||fxdepo.com^$third-party (easylistchina+easylist.txt: 36308) -.fxdepo.com -# ||fwmrm.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 36307) -.fwmrm.net -# ||futureus.com^$third-party (easylistchina+easylist.txt: 36306) -.futureus.com -# ||futureresiduals.com^$third-party (easylistchina+easylist.txt: 36305) -.futureresiduals.com -# ||fusionads.net^$third-party (easylistchina+easylist.txt: 36304) -.fusionads.net -# ||funklicks.com^$third-party (easylistchina+easylist.txt: 36303) -.funklicks.com -# ||fulltraffic.net^$third-party (easylistchina+easylist.txt: 36302) -.fulltraffic.net -# ||ftv-publicite.fr^$third-party (easylistchina+easylist.txt: 36301) -.ftv-publicite.fr -# ||ftjcfx.com^$third-party (easylistchina+easylist.txt: 36300) -.ftjcfx.com -# ||fruitkings.com^$third-party (easylistchina+easylist.txt: 36299) -.fruitkings.com -# ||fromfriendswithlove.com^$third-party (easylistchina+easylist.txt: 36298) -.fromfriendswithlove.com -# ||friendlyduck.com^$third-party (easylistchina+easylist.txt: 36297) -.friendlyduck.com -# ||fresh8.co^$third-party (easylistchina+easylist.txt: 36296) -.fresh8.co -# ||freesoftwarelive.com^$third-party (easylistchina+easylist.txt: 36295) -.freesoftwarelive.com -# ||freeskreen.com^$third-party (easylistchina+easylist.txt: 36294) -.freeskreen.com -# ||freerotator.com^$third-party (easylistchina+easylist.txt: 36293) -.freerotator.com -# ||freepaidsurveyz.com^$third-party (easylistchina+easylist.txt: 36292) -.freepaidsurveyz.com -# ||freedownloadsoft.net^$third-party (easylistchina+easylist.txt: 36291) -.freedownloadsoft.net -# ||freecouponbiz.com^$third-party (easylistchina+easylist.txt: 36290) -.freecouponbiz.com -# ||freebiesurveys.com^$third-party (easylistchina+easylist.txt: 36289) -.freebiesurveys.com -# ||freebannerswap.co.uk^$third-party (easylistchina+easylist.txt: 36288) -.freebannerswap.co.uk -# ||frameptp.com^$third-party (easylistchina+easylist.txt: 36287) -.frameptp.com -# ||forrestersurveys.com^$third-party (easylistchina+easylist.txt: 36286) -.forrestersurveys.com -# ||forpyke.com^$third-party (easylistchina+easylist.txt: 36285) -.forpyke.com -# ||forifiha.com^$third-party (easylistchina+easylist.txt: 36284) -.forifiha.com -# ||forexyard.com^$third-party (easylistchina+easylist.txt: 36283) -.forexyard.com -# ||forex-affiliate.net^$third-party (easylistchina+easylist.txt: 36282) -.forex-affiliate.net -# ||forex-affiliate.com^$third-party (easylistchina+easylist.txt: 36281) -.forex-affiliate.com -# ||forcepprofile.com^$third-party (easylistchina+easylist.txt: 36280) -.forcepprofile.com -# ||forced-lose.de^$third-party (easylistchina+easylist.txt: 36279) -.forced-lose.de -# ||footnote.com^$third-party (easylistchina+easylist.txt: 36278) -.footnote.com -# ||footerslideupad.com^$third-party (easylistchina+easylist.txt: 36277) -.footerslideupad.com -# ||footar.com^$third-party (easylistchina+easylist.txt: 36276) -.footar.com -# ||foonad.com^$third-party (easylistchina+easylist.txt: 36275) -.foonad.com -# ||foodieblogroll.com^$third-party (easylistchina+easylist.txt: 36274) -.foodieblogroll.com -# ||focre.info^$third-party (easylistchina+easylist.txt: 36273) -.focre.info -# ||focalex.com^$third-party (easylistchina+easylist.txt: 36272) -.focalex.com -# ||fmsads.com^$third-party (easylistchina+easylist.txt: 36271) -.fmsads.com -# ||fmpub.net^$third-party (easylistchina+easylist.txt: 36270) -.fmpub.net -# ||flymyads.com^$third-party (easylistchina+easylist.txt: 36269) -.flymyads.com -# ||flyertown.ca^$third-party (easylistchina+easylist.txt: 36268) -.flyertown.ca -# ||fluxads.com^$third-party (easylistchina+easylist.txt: 36267) -.fluxads.com -# ||fluidads.co^$third-party (easylistchina+easylist.txt: 36266) -.fluidads.co -# ||flomigo.com^$third-party (easylistchina+easylist.txt: 36265) -.flomigo.com -# ||flodonas.com^$third-party (easylistchina+easylist.txt: 36264) -.flodonas.com -# ||fllwert.net^$third-party (easylistchina+easylist.txt: 36263) -.fllwert.net -# ||flite.com^$third-party (easylistchina+easylist.txt: 36262) -.flite.com -# ||fliionos.co.uk^$third-party (easylistchina+easylist.txt: 36261) -.fliionos.co.uk -# ||flexlinks.com^$third-party (easylistchina+easylist.txt: 36260) -.flexlinks.com -# ||flashtalking.com^$third-party (easylistchina+easylist.txt: 36259) -.flashtalking.com -# ||flashclicks.com^$third-party (easylistchina+easylist.txt: 36258) -.flashclicks.com -# ||flappysquid.net^$third-party (easylistchina+easylist.txt: 36257) -.flappysquid.net -# ||flappyhamster.net^$third-party (easylistchina+easylist.txt: 36256) -.flappyhamster.net -# ||flappybadger.net^$third-party (easylistchina+easylist.txt: 36255) -.flappybadger.net -# ||flagads.net^$third-party (easylistchina+easylist.txt: 36254) -.flagads.net -# ||fl-ads.com^$third-party (easylistchina+easylist.txt: 36253) -.fl-ads.com -# ||fixionmedia.com^$third-party (easylistchina+easylist.txt: 36252) -.fixionmedia.com -# ||fisari.com^$third-party (easylistchina+easylist.txt: 36251) -.fisari.com -# ||firstlightera.com^$third-party (easylistchina+easylist.txt: 36250) -.firstlightera.com -# ||firstimpression.io^$third-party (easylistchina+easylist.txt: 36249) -.firstimpression.io -# ||firstadsolution.com^$third-party (easylistchina+easylist.txt: 36248) -.firstadsolution.com -# ||first-rate.com^$third-party (easylistchina+easylist.txt: 36247) -.first-rate.com -# ||firmharborlinked.com^$third-party (easylistchina+easylist.txt: 36246) -.firmharborlinked.com -# ||firegob.com^$third-party (easylistchina+easylist.txt: 36245) -.firegob.com -# ||firefeeder.com^$third-party (easylistchina+easylist.txt: 36244) -.firefeeder.com -# ||firaxtech.com^$third-party (easylistchina+easylist.txt: 36243) -.firaxtech.com -# ||findsthat.com^$third-party (easylistchina+easylist.txt: 36242) -.findsthat.com -# ||findbestsolution.net^$third-party (easylistchina+easylist.txt: 36241) -.findbestsolution.net -# ||find-cheap-hotels.org^$third-party (easylistchina+easylist.txt: 36240) -.find-cheap-hotels.org -# ||find-abc.com^$third-party (easylistchina+easylist.txt: 36239) -.find-abc.com -# ||finalanypar.link^$third-party (easylistchina+easylist.txt: 36238) -.finalanypar.link -# ||fimserve.com^$third-party (easylistchina+easylist.txt: 36237) -.fimserve.com -# ||filtermomosearch.com^$third-party (easylistchina+easylist.txt: 36236) -.filtermomosearch.com -# ||filetarget.com^$third-party (easylistchina+easylist.txt: 36235) -.filetarget.com -# ||fidel.to^$third-party (easylistchina+easylist.txt: 36234) -.fidel.to -# ||fenixm.com^$third-party (easylistchina+easylist.txt: 36233) -.fenixm.com -# ||feljack.com^$third-party (easylistchina+easylist.txt: 36232) -.feljack.com -# ||feed-ads.com^$third-party (easylistchina+easylist.txt: 36231) -.feed-ads.com -# ||featurelink.com^$third-party (easylistchina+easylist.txt: 36230) -.featurelink.com -# ||featuredusers.com^$third-party (easylistchina+easylist.txt: 36229) -.featuredusers.com -# ||fbsvu.com^$third-party (easylistchina+easylist.txt: 36228) -.fbsvu.com -# ||fbgdc.com^$third-party (easylistchina+easylist.txt: 36227) -.fbgdc.com -# ||fb-plus.com^$third-party (easylistchina+easylist.txt: 36226) -.fb-plus.com -# ||fasttracktech.biz^$third-party (easylistchina+easylist.txt: 36225) -.fasttracktech.biz -# ||fastclick.net^$third-party (easylistchina+easylist.txt: 36224) -.fastclick.net -# ||fastates.net^$third-party (easylistchina+easylist.txt: 36223) -.fastates.net -# ||fastapi.net^$third-party (easylistchina+easylist.txt: 36222) -.fastapi.net -# ||fast2earn.com^$third-party (easylistchina+easylist.txt: 36221) -.fast2earn.com -# ||falkag.net^$third-party (easylistchina+easylist.txt: 36220) -.falkag.net -# ||fairadsnetwork.com^$third-party (easylistchina+easylist.txt: 36219) -.fairadsnetwork.com -# ||faggrim.com^$third-party (easylistchina+easylist.txt: 36218) -.faggrim.com -# ||ezoic.net^$third-party (easylistchina+easylist.txt: 36217) -.ezoic.net -# ||ezmob.com^$third-party (easylistchina+easylist.txt: 36216) -.ezmob.com -# ||ezadserver.net^$third-party (easylistchina+easylist.txt: 36215) -.ezadserver.net -# ||eyewonder.com^$third-party (easylistchina+easylist.txt: 36214) -.eyewonder.com -# ||eyewond.hs.llnwd.net^$third-party (easylistchina+easylist.txt: 36213) -.eyewond.hs.llnwd.net -# ||eyeviewads.com^$third-party (easylistchina+easylist.txt: 36212) -.eyeviewads.com -# ||eyereturn.com^$third-party (easylistchina+easylist.txt: 36211) -.eyereturn.com -# ||eyere.com^$third-party (easylistchina+easylist.txt: 36210) -.eyere.com -# ||extra33.com^$third-party (easylistchina+easylist.txt: 36209) -.extra33.com -# ||expresswebtraffic.com^$third-party (easylistchina+easylist.txt: 36208) -.expresswebtraffic.com -# ||exponential.com^$third-party (easylistchina+easylist.txt: 36207) -.exponential.com -# ||explainidentifycoding.info^$third-party (easylistchina+easylist.txt: 36206) -.explainidentifycoding.info -# ||exoneratedresignation.info^$third-party (easylistchina+easylist.txt: 36205) -.exoneratedresignation.info -# ||exoclick.com^$third-party (easylistchina+easylist.txt: 36204) -.exoclick.com -# ||exitjunction.com^$third-party (easylistchina+easylist.txt: 36203) -.exitjunction.com -# ||exitexplosion.com^$third-party (easylistchina+easylist.txt: 36202) -.exitexplosion.com -# ||exchange4media.com^$third-party (easylistchina+easylist.txt: 36201) -.exchange4media.com -# ||excellenceads.com^$third-party (easylistchina+easylist.txt: 36200) -.excellenceads.com -# ||exactdrive.com^$third-party (easylistchina+easylist.txt: 36199) -.exactdrive.com -# ||evolvenation.com^$third-party (easylistchina+easylist.txt: 36198) -.evolvenation.com -# ||evolvemediallc.com^$third-party (easylistchina+easylist.txt: 36197) -.evolvemediallc.com -# ||euz.net^$third-party (easylistchina+easylist.txt: 36196) -.euz.net -# ||euros4click.de^$third-party (easylistchina+easylist.txt: 36195) -.euros4click.de -# ||europacash.com^$third-party (easylistchina+easylist.txt: 36194) -.europacash.com -# ||euroclick.com^$third-party (easylistchina+easylist.txt: 36193) -.euroclick.com -# ||eurew.com^$third-party (easylistchina+easylist.txt: 36192) -.eurew.com -# ||etology.com^$third-party (easylistchina+easylist.txt: 36191) -.etology.com -# ||etmanly.ru^$third-party (easylistchina+easylist.txt: 36190) -.etmanly.ru -# ||etgdta.com^$third-party (easylistchina+easylist.txt: 36189) -.etgdta.com -# ||etargetnet.com^$third-party (easylistchina+easylist.txt: 36188) -.etargetnet.com -# ||essaycoupons.com^$third-party (easylistchina+easylist.txt: 36187) -.essaycoupons.com -# ||essayads.com^$third-party (easylistchina+easylist.txt: 36186) -.essayads.com -# ||especifican.com^$third-party (easylistchina+easylist.txt: 36185) -.especifican.com -# ||escokuro.com^$third-party (easylistchina+easylist.txt: 36184) -.escokuro.com -# ||escale.to^$third-party (easylistchina+easylist.txt: 36183) -.escale.to -# ||escalatenetwork.com^$third-party (easylistchina+easylist.txt: 36182) -.escalatenetwork.com -# ||erovinmo.com^$third-party (easylistchina+easylist.txt: 36181) -.erovinmo.com -# ||erovation.com^$third-party (easylistchina+easylist.txt: 36180) -.erovation.com -# ||ero-advertising.com^$third-party (easylistchina+easylist.txt: 36179) -.ero-advertising.com -# ||ergoledo.com^$third-party (easylistchina+easylist.txt: 36178) -.ergoledo.com -# ||ergodob.ru^$third-party (easylistchina+easylist.txt: 36177) -.ergodob.ru -# ||ergerww.net^$third-party (easylistchina+easylist.txt: 36176) -.ergerww.net -# ||erendri.com^$third-party (easylistchina+easylist.txt: 36175) -.erendri.com -# ||erado.org^$third-party (easylistchina+easylist.txt: 36174) -.erado.org -# ||eqads.com^$third-party (easylistchina+easylist.txt: 36173) -.eqads.com -# ||eptum.com^$third-party (easylistchina+easylist.txt: 36172) -.eptum.com -# ||eptord.com^$third-party (easylistchina+easylist.txt: 36171) -.eptord.com -# ||epnredirect.ru^$third-party (easylistchina+easylist.txt: 36170) -.epnredirect.ru -# ||epicgameads.com^$third-party (easylistchina+easylist.txt: 36169) -.epicgameads.com -# ||eosads.com^$third-party (easylistchina+easylist.txt: 36168) -.eosads.com -# ||entrecard.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 36167) -.entrecard.s3.amazonaws.com -# ||entrecard.com^$third-party (easylistchina+easylist.txt: 36166) -.entrecard.com -# ||enterads.com^$third-party (easylistchina+easylist.txt: 36165) -.enterads.com -# ||enlnks.com^$third-party (easylistchina+easylist.txt: 36164) -.enlnks.com -# ||engineseeker.com^$third-party (easylistchina+easylist.txt: 36163) -.engineseeker.com -# ||emptyspaceads.com^$third-party (easylistchina+easylist.txt: 36162) -.emptyspaceads.com -# ||employers-freshly.org^$third-party (easylistchina+easylist.txt: 36161) -.employers-freshly.org -# ||empiremoney.com^$third-party (easylistchina+easylist.txt: 36160) -.empiremoney.com -# ||emediate.se^$third-party (easylistchina+easylist.txt: 36159) -.emediate.se -# ||emediate.eu^$third-party (easylistchina+easylist.txt: 36158) -.emediate.eu -# ||emediate.dk^$third-party (easylistchina+easylist.txt: 36157) -.emediate.dk -# ||emediate.ch^$third-party (easylistchina+easylist.txt: 36156) -.emediate.ch -# ||emberads.com^$third-party (easylistchina+easylist.txt: 36155) -.emberads.com -# ||elvate.net^$third-party (easylistchina+easylist.txt: 36154) -.elvate.net -# ||elefantsearch.com^$third-party (easylistchina+easylist.txt: 36153) -.elefantsearch.com -# ||electnext.com^$third-party (easylistchina+easylist.txt: 36152) -.electnext.com -# ||elasticad.net^$third-party (easylistchina+easylist.txt: 36151) -.elasticad.net -# ||ektezis.ru^$third-party (easylistchina+easylist.txt: 36150) -.ektezis.ru -# ||ekmas.com^$third-party (easylistchina+easylist.txt: 36149) -.ekmas.com -# ||egamingonline.com^$third-party (easylistchina+easylist.txt: 36148) -.egamingonline.com -# ||effectivemeasure.net^$third-party (easylistchina+easylist.txt: 36147) -.effectivemeasure.net -# ||eedr.org^$third-party (easylistchina+easylist.txt: 36146) -.eedr.org -# ||edomz.net^$third-party (easylistchina+easylist.txt: 36145) -.edomz.net -# ||edgevertise.com^$third-party (easylistchina+easylist.txt: 36144) -.edgevertise.com -# ||edgeads.org^$third-party (easylistchina+easylist.txt: 36143) -.edgeads.org -# ||ecpmrocks.com^$third-party (easylistchina+easylist.txt: 36142) -.ecpmrocks.com -# ||ebz.io^$third-party (easylistchina+easylist.txt: 36141) -.ebz.io -# ||ebuzzing.com^$third-party (easylistchina+easylist.txt: 36140) -.ebuzzing.com -# ||eblastengine.com^$third-party (easylistchina+easylist.txt: 36139) -.eblastengine.com -# ||ebayobjects.com^$third-party (easylistchina+easylist.txt: 36138) -.ebayobjects.com -# ||ebayobjects.com.au^$third-party (easylistchina+easylist.txt: 36137) -.ebayobjects.com.au -# ||ebannertraffic.com^$third-party (easylistchina+easylist.txt: 36136) -.ebannertraffic.com -# ||easyinline.com^$third-party (easylistchina+easylist.txt: 36135) -.easyinline.com -# ||easyhits4u.com^$third-party (easylistchina+easylist.txt: 36134) -.easyhits4u.com -# ||easyflirt-partners.biz^$third-party (easylistchina+easylist.txt: 36133) -.easyflirt-partners.biz -# ||easydownload4you.com^$third-party (easylistchina+easylist.txt: 36132) -.easydownload4you.com -# ||easyad.com^$third-party (easylistchina+easylist.txt: 36131) -.easyad.com -# ||easy-adserver.com^$third-party (easylistchina+easylist.txt: 36130) -.easy-adserver.com -# ||earnify.com^$third-party (easylistchina+easylist.txt: 36129) -.earnify.com -# ||eads.to^$third-party (easylistchina+easylist.txt: 36128) -.eads.to -# ||eads-adserving.com^$third-party (easylistchina+easylist.txt: 36127) -.eads-adserving.com -# ||e9mlrvy1.com^$third-party (easylistchina+easylist.txt: 36126) -.e9mlrvy1.com -# ||e2yth.tv^$third-party (easylistchina+easylist.txt: 36125) -.e2yth.tv -# ||e-viral.com^$third-party (easylistchina+easylist.txt: 36124) -.e-viral.com -# ||e-planning.net^$third-party (easylistchina+easylist.txt: 36123) -.e-planning.net -# ||e-generator.com^$third-party (easylistchina+easylist.txt: 36122) -.e-generator.com -# ||e-find.co^$third-party (easylistchina+easylist.txt: 36121) -.e-find.co -# ||dynamitedata.com^$third-party (easylistchina+easylist.txt: 36120) -.dynamitedata.com -# ||dynamicoxygen.com^$third-party (easylistchina+easylist.txt: 36119) -.dynamicoxygen.com -# ||dyino.com^$third-party (easylistchina+easylist.txt: 36118) -.dyino.com -# ||dvaminusodin.net^$third-party (easylistchina+easylist.txt: 36117) -.dvaminusodin.net -# ||durtz.com^$third-party (easylistchina+easylist.txt: 36116) -.durtz.com -# ||durokuro.com^$third-party (easylistchina+easylist.txt: 36115) -.durokuro.com -# ||durnowar.com^$third-party (easylistchina+easylist.txt: 36114) -.durnowar.com -# ||dumedia.ru^$third-party (easylistchina+easylist.txt: 36113) -.dumedia.ru -# ||duggiads.com^$third-party (easylistchina+easylist.txt: 36112) -.duggiads.com -# ||duetads.com^$third-party (easylistchina+easylist.txt: 36111) -.duetads.com -# ||dudelsa.com^$third-party (easylistchina+easylist.txt: 36110) -.dudelsa.com -# ||dualmarket.info^$third-party (easylistchina+easylist.txt: 36109) -.dualmarket.info -# ||dtzads.com^$third-party (easylistchina+easylist.txt: 36108) -.dtzads.com -# ||dtmpub.com^$third-party (easylistchina+easylist.txt: 36107) -.dtmpub.com -# ||dsultra.com^$third-party (easylistchina+easylist.txt: 36104) -.dsultra.com -# ||dsnr-affiliates.com^$third-party (easylistchina+easylist.txt: 36103) -.dsnr-affiliates.com -# ||dsnextgen.com^$third-party (easylistchina+easylist.txt: 36102) -.dsnextgen.com -# ||dsero.net^$third-party (easylistchina+easylist.txt: 36101) -.dsero.net -# ||drowle.com^$third-party (easylistchina+easylist.txt: 36100) -.drowle.com -# ||dreamsearch.or.kr^$third-party (easylistchina+easylist.txt: 36099) -.dreamsearch.or.kr -# ||dreamaquarium.com^$third-party (easylistchina+easylist.txt: 36098) -.dreamaquarium.com -# ||dpstack.com^$third-party (easylistchina+easylist.txt: 36097) -.dpstack.com -# ||dpsrexor.com^$third-party (easylistchina+easylist.txt: 36096) -.dpsrexor.com -# ||dpmsrv.com^$third-party (easylistchina+easylist.txt: 36095) -.dpmsrv.com -# ||dpbolvw.net^$third-party (easylistchina+easylist.txt: 36094) -.dpbolvw.net -# ||dp25.kr^$third-party (easylistchina+easylist.txt: 36093) -.dp25.kr -# ||downsonglyrics.com^$third-party (easylistchina+easylist.txt: 36092) -.downsonglyrics.com -# ||downloadboutique.com^$third-party (easylistchina+easylist.txt: 36091) -.downloadboutique.com -# ||down1oads.com^$third-party (easylistchina+easylist.txt: 36090) -.down1oads.com -# ||doubleverify.com^$third-party (easylistchina+easylist.txt: 36089) -.doubleverify.com -# ||doublerecall.com^$third-party (easylistchina+easylist.txt: 36088) -.doublerecall.com -# ||doublerads.com^$third-party (easylistchina+easylist.txt: 36087) -.doublerads.com -# ||doublepimp.com^$third-party (easylistchina+easylist.txt: 36086) -.doublepimp.com -# ||doublemax.net^$third-party (easylistchina+easylist.txt: 36085) -.doublemax.net -# ||doubleclicks.me^$third-party (easylistchina+easylist.txt: 36084) -.doubleclicks.me -# ||doubleclickbygoogle.com^$third-party (easylistchina+easylist.txt: 36083) -.doubleclickbygoogle.com -# ||doubleclick.net^*;afv_flvurl=http://cdn.c.ooyala.com/$third-party (easylistchina+easylist.txt: 36082) -.doubleclick.net/.*;afv_flvurl=http://cdn\.c\.ooyala\.com/ -# ||doubleclick.net^*/pfadx/team.sd/$third-party (easylistchina+easylist.txt: 36081) -.doubleclick.net/.*/pfadx/team\.sd/ -# ||doubleclick.net^*/pfadx/team.dal/$third-party (easylistchina+easylist.txt: 36080) -.doubleclick.net/.*/pfadx/team\.dal/ -# ||doubleclick.net^*/pfadx/team.car/$third-party (easylistchina+easylist.txt: 36079) -.doubleclick.net/.*/pfadx/team\.car/ -# ||doubleclick.net^*/pfadx/ssp.wews/$third-party (easylistchina+easylist.txt: 36078) -.doubleclick.net/.*/pfadx/ssp\.wews/ -# ||doubleclick.net^*/pfadx/muzumain/$third-party (easylistchina+easylist.txt: 36077) -.doubleclick.net/.*/pfadx/muzumain/ -# ||doubleclick.net^*/pfadx/ibs.orl.news/$third-party (easylistchina+easylist.txt: 36076) -.doubleclick.net/.*/pfadx/ibs\.orl\.news/ -# ||doubleclick.net^*/pfadx/embed.ytpwatch.$third-party (easylistchina+easylist.txt: 36075) -.doubleclick.net/.*/pfadx/embed\.ytpwatch\. -# ||doubleclick.net^*/pfadx/com.ytpwatch.$third-party (easylistchina+easylist.txt: 36074) -.doubleclick.net/.*/pfadx/com\.ytpwatch\. -# ||doubleclick.net^*/pfadx/cmn_complextv/$third-party (easylistchina+easylist.txt: 36073) -.doubleclick.net/.*/pfadx/cmn_complextv/ -# ||doubleclick.net^*/pfadx/ccr.newyork.$third-party (easylistchina+easylist.txt: 36072) -.doubleclick.net/.*/pfadx/ccr\.newyork\. -# ||doubleclick.net^*/adj/$~object-subrequest,third-party (easylistchina+easylist.txt: 36071) -.doubleclick.net/.*/adj/ -# ||doubleclick.net^*/adi/$~object-subrequest,third-party (easylistchina+easylist.txt: 36070) -.doubleclick.net/.*/adi/ -# ||doubleclick.net^*/ad/$~object-subrequest,third-party (easylistchina+easylist.txt: 36069) -.doubleclick.net/.*/ad/ -# ||doubleclick.net/xbbe/creative/vast? (easylistchina+easylist.txt: 36067) -.doubleclick.net/xbbe/creative/vast\? -# ||doubleclick.net/pfadx/www.tv3.co.nz$third-party (easylistchina+easylist.txt: 36066) -.doubleclick.net/pfadx/www\.tv3\.co\.nz -# ||doubleclick.net/pfadx/video.wsj.com/$third-party (easylistchina+easylist.txt: 36065) -.doubleclick.net/pfadx/video\.wsj\.com/ -# ||doubleclick.net/pfadx/video.marketwatch.com/$third-party (easylistchina+easylist.txt: 36064) -.doubleclick.net/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/pfadx/ugo.gv.1up/$third-party (easylistchina+easylist.txt: 36063) -.doubleclick.net/pfadx/ugo\.gv\.1up/ -# ||doubleclick.net/pfadx/trb.$third-party (easylistchina+easylist.txt: 36062) -.doubleclick.net/pfadx/trb\. -# ||doubleclick.net/pfadx/tmz.video.wb.dart/$third-party (easylistchina+easylist.txt: 36061) -.doubleclick.net/pfadx/tmz\.video\.wb\.dart/ -# ||doubleclick.net/pfadx/tmg.telegraph.$third-party (easylistchina+easylist.txt: 36060) -.doubleclick.net/pfadx/tmg\.telegraph\. -# ||doubleclick.net/pfadx/sugar.poptv/$third-party (easylistchina+easylist.txt: 36059) -.doubleclick.net/pfadx/sugar\.poptv/ -# ||doubleclick.net/pfadx/storm.no/$third-party (easylistchina+easylist.txt: 36058) -.doubleclick.net/pfadx/storm\.no/ -# ||doubleclick.net/pfadx/ssp.kgtv/$third-party (easylistchina+easylist.txt: 36057) -.doubleclick.net/pfadx/ssp\.kgtv/ -# ||doubleclick.net/pfadx/ng.videoplayer/$third-party (easylistchina+easylist.txt: 36056) -.doubleclick.net/pfadx/ng\.videoplayer/ -# ||doubleclick.net/pfadx/nfl.$third-party (easylistchina+easylist.txt: 36055) -.doubleclick.net/pfadx/nfl\. -# ||doubleclick.net/pfadx/ndm.tcm/$third-party (easylistchina+easylist.txt: 36054) -.doubleclick.net/pfadx/ndm\.tcm/ -# ||doubleclick.net/pfadx/nbcu.nhl/$third-party (easylistchina+easylist.txt: 36053) -.doubleclick.net/pfadx/nbcu\.nhl/ -# ||doubleclick.net/pfadx/nbcu.nhl.$third-party (easylistchina+easylist.txt: 36052) -.doubleclick.net/pfadx/nbcu\.nhl\. -# ||doubleclick.net/pfadx/nbcu.nbc/$third-party (easylistchina+easylist.txt: 36051) -.doubleclick.net/pfadx/nbcu\.nbc/ -# ||doubleclick.net/pfadx/muzuoffsite/$third-party (easylistchina+easylist.txt: 36050) -.doubleclick.net/pfadx/muzuoffsite/ -# ||doubleclick.net/pfadx/muzumain/$third-party (easylistchina+easylist.txt: 36049) -.doubleclick.net/pfadx/muzumain/ -# ||doubleclick.net/pfadx/miniclip.prevideo/$third-party (easylistchina+easylist.txt: 36048) -.doubleclick.net/pfadx/miniclip\.prevideo/ -# ||doubleclick.net/pfadx/miniclip.midvideo/$third-party (easylistchina+easylist.txt: 36047) -.doubleclick.net/pfadx/miniclip\.midvideo/ -# ||doubleclick.net/pfadx/mc.channelnewsasia.com^$third-party (easylistchina+easylist.txt: 36046) -.doubleclick.net/pfadx/mc\.channelnewsasia\.com[^\w%.-] -# ||doubleclick.net/pfadx/ltv.wtvr.video/$third-party (easylistchina+easylist.txt: 36045) -.doubleclick.net/pfadx/ltv\.wtvr\.video/ -# ||doubleclick.net/pfadx/intl.sps.com/$third-party (easylistchina+easylist.txt: 36044) -.doubleclick.net/pfadx/intl\.sps\.com/ -# ||doubleclick.net/pfadx/gn.movieweb.com/$third-party (easylistchina+easylist.txt: 36043) -.doubleclick.net/pfadx/gn\.movieweb\.com/ -# ||doubleclick.net/pfadx/ddm.ksl/$third-party (easylistchina+easylist.txt: 36042) -.doubleclick.net/pfadx/ddm\.ksl/ -# ||doubleclick.net/pfadx/ctv.spacecast/$third-party (easylistchina+easylist.txt: 36041) -.doubleclick.net/pfadx/ctv\.spacecast/ -# ||doubleclick.net/pfadx/ctv.muchmusic.com/$third-party (easylistchina+easylist.txt: 36040) -.doubleclick.net/pfadx/ctv\.muchmusic\.com/ -# ||doubleclick.net/pfadx/ctv.ctvwatch.ca/$third-party (easylistchina+easylist.txt: 36039) -.doubleclick.net/pfadx/ctv\.ctvwatch\.ca/ -# ||doubleclick.net/pfadx/csn.$third-party (easylistchina+easylist.txt: 36038) -.doubleclick.net/pfadx/csn\. -# ||doubleclick.net/pfadx/comedycentral.$third-party (easylistchina+easylist.txt: 36037) -.doubleclick.net/pfadx/comedycentral\. -# ||doubleclick.net/pfadx/ccr.$third-party (easylistchina+easylist.txt: 36036) -.doubleclick.net/pfadx/ccr\. -# ||doubleclick.net/pfadx/CBS.$third-party (easylistchina+easylist.txt: 36035) -.doubleclick.net/pfadx/CBS\. -# ||doubleclick.net/pfadx/cblvsn.nwsd.videogallery/$third-party (easylistchina+easylist.txt: 36034) -.doubleclick.net/pfadx/cblvsn\.nwsd\.videogallery/ -# ||doubleclick.net/pfadx/bzj.bizjournals/$third-party (easylistchina+easylist.txt: 36033) -.doubleclick.net/pfadx/bzj\.bizjournals/ -# ||doubleclick.net/pfadx/blp.video/midroll$third-party (easylistchina+easylist.txt: 36032) -.doubleclick.net/pfadx/blp\.video/midroll -# ||doubleclick.net/pfadx/bet.com/$third-party (easylistchina+easylist.txt: 36031) -.doubleclick.net/pfadx/bet\.com/ -# ||doubleclick.net/pfadx/belo.king5.pre/$third-party (easylistchina+easylist.txt: 36030) -.doubleclick.net/pfadx/belo\.king5\.pre/ -# ||doubleclick.net/pfadx/aetn.aetv.shows/$third-party (easylistchina+easylist.txt: 36029) -.doubleclick.net/pfadx/aetn\.aetv\.shows/ -# ||doubleclick.net/pfadx/*CBSINTERACTIVE/$third-party (easylistchina+easylist.txt: 36028) -.doubleclick.net/pfadx/.*CBSINTERACTIVE/ -# ||doubleclick.net/pfadx/*adcat=$third-party (easylistchina+easylist.txt: 36027) -.doubleclick.net/pfadx/.*adcat= -# ||doubleclick.net/pfadx/*/kidstv/$third-party (easylistchina+easylist.txt: 36026) -.doubleclick.net/pfadx/.*/kidstv/ -# ||doubleclick.net/pfadx/*.WALTDISNEYINTERNETGROU/$third-party (easylistchina+easylist.txt: 36025) -.doubleclick.net/pfadx/.*\.WALTDISNEYINTERNETGROU/ -# ||doubleclick.net/pfadx/*.VIACOMINTERNATIONAL/$third-party (easylistchina+easylist.txt: 36024) -.doubleclick.net/pfadx/.*\.VIACOMINTERNATIONAL/ -# ||doubleclick.net/pfadx/*.sevenload.com_$third-party (easylistchina+easylist.txt: 36023) -.doubleclick.net/pfadx/.*\.sevenload\.com_ -# ||doubleclick.net/pfadx/*.reuters/$third-party (easylistchina+easylist.txt: 36022) -.doubleclick.net/pfadx/.*\.reuters/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL/$third-party (easylistchina+easylist.txt: 36021) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL-CNBC/$third-party (easylistchina+easylist.txt: 36020) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL-CNBC/ -# ||doubleclick.net/pfadx/*.NBCUNI.COM/$third-party (easylistchina+easylist.txt: 36019) -.doubleclick.net/pfadx/.*\.NBCUNI\.COM/ -# ||doubleclick.net/pfadx/*.nbc.com/$third-party (easylistchina+easylist.txt: 36018) -.doubleclick.net/pfadx/.*\.nbc\.com/ -# ||doubleclick.net/pfadx/*.muzu/$third-party (easylistchina+easylist.txt: 36017) -.doubleclick.net/pfadx/.*\.muzu/ -# ||doubleclick.net/pfadx/*.mtvi$third-party (easylistchina+easylist.txt: 36016) -.doubleclick.net/pfadx/.*\.mtvi -# ||doubleclick.net/pfadx/*.MTV-Viacom/$third-party (easylistchina+easylist.txt: 36015) -.doubleclick.net/pfadx/.*\.MTV-Viacom/ -# ||doubleclick.net/pfadx/*.MCNONLINE/$third-party (easylistchina+easylist.txt: 36014) -.doubleclick.net/pfadx/.*\.MCNONLINE/ -# ||doubleclick.net/pfadx/*.ESPN/$third-party (easylistchina+easylist.txt: 36013) -.doubleclick.net/pfadx/.*\.ESPN/ -# ||doubleclick.net/pfadx/*.BLIPTV/$third-party (easylistchina+easylist.txt: 36012) -.doubleclick.net/pfadx/.*\.BLIPTV/ -# ||doubleclick.net/pfadx/*.ABC.com/$third-party (easylistchina+easylist.txt: 36011) -.doubleclick.net/pfadx/.*\.ABC\.com/ -# ||doubleclick.net/N6872/pfadx/shaw.mylifetimetv.ca/$third-party (easylistchina+easylist.txt: 36010) -.doubleclick.net/N6872/pfadx/shaw\.mylifetimetv\.ca/ -# ||doubleclick.net/N6088/pfadx/ssp.kshb/$third-party (easylistchina+easylist.txt: 36009) -.doubleclick.net/N6088/pfadx/ssp\.kshb/ -# ||doubleclick.net/N5479/pfadx/ctv.$third-party (easylistchina+easylist.txt: 36008) -.doubleclick.net/N5479/pfadx/ctv\. -# ||doubleclick.net/N5202/pfadx/cmn_livemixtapes/$third-party (easylistchina+easylist.txt: 36007) -.doubleclick.net/N5202/pfadx/cmn_livemixtapes/ -# ||doubleclick.net/N4526/pfadx/*.muzu/$third-party (easylistchina+easylist.txt: 36006) -.doubleclick.net/N4526/pfadx/.*\.muzu/ -# ||doubleclick.net/N4117/pfadx/*.sbs.com.au/$third-party (easylistchina+easylist.txt: 36005) -.doubleclick.net/N4117/pfadx/.*\.sbs\.com\.au/ -# ||doubleclick.net/N3626/pfadx/thehothits.com.au/$third-party (easylistchina+easylist.txt: 36004) -.doubleclick.net/N3626/pfadx/thehothits\.com\.au/ -# ||doubleclick.net/N2/pfadx/video.wsj.com/$third-party (easylistchina+easylist.txt: 36003) -.doubleclick.net/N2/pfadx/video\.wsj\.com/ -# ||doubleclick.net/N2/pfadx/video.marketwatch.com/ (easylistchina+easylist.txt: 36002) -.doubleclick.net/N2/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/N2/pfadx/video.allthingsd.com/$third-party (easylistchina+easylist.txt: 36001) -.doubleclick.net/N2/pfadx/video\.allthingsd\.com/ -# ||doubleclick.net/N2/pfadx/video.*.wsj.com/$third-party (easylistchina+easylist.txt: 36000) -.doubleclick.net/N2/pfadx/video\..*\.wsj\.com/ -# ||doubleclick.net/adx/wn.nat.$third-party (easylistchina+easylist.txt: 35998) -.doubleclick.net/adx/wn\.nat\. -# ||doubleclick.net/adx/wn.loc.$third-party (easylistchina+easylist.txt: 35997) -.doubleclick.net/adx/wn\.loc\. -# ||doubleclick.net/adx/tsg.$third-party (easylistchina+easylist.txt: 35996) -.doubleclick.net/adx/tsg\. -# ||doubleclick.net/adx/ibs.$third-party (easylistchina+easylist.txt: 35995) -.doubleclick.net/adx/ibs\. -# ||doubleclick.net/adx/CBS.$third-party (easylistchina+easylist.txt: 35994) -.doubleclick.net/adx/CBS\. -# ||doubleclick.net/adx/*.ted/$third-party (easylistchina+easylist.txt: 35993) -.doubleclick.net/adx/.*\.ted/ -# ||doubleclick.net/adx/*.NPR/$third-party (easylistchina+easylist.txt: 35992) -.doubleclick.net/adx/.*\.NPR/ -# ||doubleclick.net/adx/*.NPR.MUSIC/$third-party (easylistchina+easylist.txt: 35991) -.doubleclick.net/adx/.*\.NPR\.MUSIC/ -# ||doubleclick.net/adx/*.collegehumor/$third-party (easylistchina+easylist.txt: 35990) -.doubleclick.net/adx/.*\.collegehumor/ -# ||doubleclick.net/adx/$~object-subrequest,third-party (easylistchina+easylist.txt: 35989) -.doubleclick.net/adx/ -# ||doubleclick.net/adj/*.collegehumor/sec=videos_originalcontent;$third-party (easylistchina+easylist.txt: 35988) -.doubleclick.net/adj/.*\.collegehumor/sec=videos_originalcontent; -# ||doubleclick.net/adj/$~object-subrequest,third-party (easylistchina+easylist.txt: 35987) -.doubleclick.net/adj/ -# ||doubleclick.net/adi/$~object-subrequest,third-party (easylistchina+easylist.txt: 35986) -.doubleclick.net/adi/ -# ||doubleclick.net/ad/$third-party (easylistchina+easylist.txt: 35985) -.doubleclick.net/ad/ -# ||doubleclick.net/*/pfadx/lin.$third-party (easylistchina+easylist.txt: 35984) -.doubleclick.net/.*/pfadx/lin\. -# ||doubleclick.net/*/ch_news.com/$third-party (easylistchina+easylist.txt: 35983) -.doubleclick.net/.*/ch_news\.com/ -# ||doubleclick.com^$third-party (easylistchina+easylist.txt: 35982) -.doubleclick.com -# ||double.net^$third-party (easylistchina+easylist.txt: 35981) -.double.net -# ||dotandad.com^$third-party (easylistchina+easylist.txt: 35980) -.dotandad.com -# ||dorenga.com^$third-party (easylistchina+easylist.txt: 35979) -.dorenga.com -# ||doomail.org^$third-party (easylistchina+easylist.txt: 35978) -.doomail.org -# ||doogleonduty.com^$third-party (easylistchina+easylist.txt: 35977) -.doogleonduty.com -# ||dooc.info^$third-party (easylistchina+easylist.txt: 35976) -.dooc.info -# ||domdex.com^$third-party (easylistchina+easylist.txt: 35975) -.domdex.com -# ||domainsponsor.com^$third-party (easylistchina+easylist.txt: 35974) -.domainsponsor.com -# ||domainbuyingservices.com^$third-party (easylistchina+easylist.txt: 35973) -.domainbuyingservices.com -# ||domainadvertising.com^$third-party (easylistchina+easylist.txt: 35972) -.domainadvertising.com -# ||dollarsponsor.com^$third-party (easylistchina+easylist.txt: 35971) -.dollarsponsor.com -# ||dollarade.com^$third-party (easylistchina+easylist.txt: 35970) -.dollarade.com -# ||document4u.info^$third-party (easylistchina+easylist.txt: 35969) -.document4u.info -# ||dntrck.com^$third-party (easylistchina+easylist.txt: 35968) -.dntrck.com -# ||dmu20vut.com^$third-party (easylistchina+easylist.txt: 35967) -.dmu20vut.com -# ||dl-rms.com^$third-party (easylistchina+easylist.txt: 35966) -.dl-rms.com -# ||dj-updates.com^$third-party (easylistchina+easylist.txt: 35965) -.dj-updates.com -# ||districtm.ca^$third-party (easylistchina+easylist.txt: 35964) -.districtm.ca -# ||distilled.ie^$third-party (easylistchina+easylist.txt: 35963) -.distilled.ie -# ||dispop.com^$third-party (easylistchina+easylist.txt: 35962) -.dispop.com -# ||directtrk.com^$third-party (easylistchina+easylist.txt: 35961) -.directtrk.com -# ||directtrack.com^$third-party (easylistchina+easylist.txt: 35960) -.directtrack.com -# ||directrev.com^$third-party (easylistchina+easylist.txt: 35959) -.directrev.com -# ||directorym.com^$third-party (easylistchina+easylist.txt: 35958) -.directorym.com -# ||directoral.info^$third-party (easylistchina+easylist.txt: 35957) -.directoral.info -# ||directleads.com^$third-party (easylistchina+easylist.txt: 35956) -.directleads.com -# ||directile.net^$third-party (easylistchina+easylist.txt: 35955) -.directile.net -# ||directile.info^$third-party (easylistchina+easylist.txt: 35954) -.directile.info -# ||directaclick.com^$third-party (easylistchina+easylist.txt: 35953) -.directaclick.com -# ||dipads.net^$~image,third-party (easylistchina+easylist.txt: 35952) -.dipads.net -# ||dinclinx.com^$third-party (easylistchina+easylist.txt: 35951) -.dinclinx.com -# ||digitrevenue.com^$third-party (easylistchina+easylist.txt: 35950) -.digitrevenue.com -# ||digipathmedia.com^$third-party (easylistchina+easylist.txt: 35949) -.digipathmedia.com -# ||dianomioffers.co.uk^$third-party (easylistchina+easylist.txt: 35948) -.dianomioffers.co.uk -# ||diamondtraff.com^$third-party (easylistchina+easylist.txt: 35947) -.diamondtraff.com -# ||dhundora.com^$third-party (easylistchina+easylist.txt: 35946) -.dhundora.com -# ||dgmaxinteractive.com^$third-party (easylistchina+easylist.txt: 35945) -.dgmaxinteractive.com -# ||dgmaustralia.com^$third-party (easylistchina+easylist.txt: 35944) -.dgmaustralia.com -# ||dgmatix.com^$third-party (easylistchina+easylist.txt: 35943) -.dgmatix.com -# ||dexplatform.com^$third-party (easylistchina+easylist.txt: 35942) -.dexplatform.com -# ||deximedia.com^$third-party (easylistchina+easylist.txt: 35941) -.deximedia.com -# ||developermedia.com^$third-party (easylistchina+easylist.txt: 35940) -.developermedia.com -# ||detroposal.com^$third-party (easylistchina+easylist.txt: 35939) -.detroposal.com -# ||destinationurl.com^$third-party (easylistchina+easylist.txt: 35938) -.destinationurl.com -# ||derlatas.com^$third-party (easylistchina+easylist.txt: 35937) -.derlatas.com -# ||deriversal.com^$third-party (easylistchina+easylist.txt: 35936) -.deriversal.com -# ||deployads.com^$third-party (easylistchina+easylist.txt: 35935) -.deployads.com -# ||deplayer.net^$third-party (easylistchina+easylist.txt: 35934) -.deplayer.net -# ||delnapb.com^$third-party (easylistchina+easylist.txt: 35933) -.delnapb.com -# ||delivery51.com^$third-party (easylistchina+easylist.txt: 35932) -.delivery51.com -# ||delivery49.com^$third-party (easylistchina+easylist.txt: 35931) -.delivery49.com -# ||delivery47.com^$third-party (easylistchina+easylist.txt: 35930) -.delivery47.com -# ||delivery45.com^$third-party (easylistchina+easylist.txt: 35929) -.delivery45.com -# ||dehtale.ru^$third-party (easylistchina+easylist.txt: 35928) -.dehtale.ru -# ||deguiste.com^$third-party (easylistchina+easylist.txt: 35927) -.deguiste.com -# ||defaultimg.com^$third-party (easylistchina+easylist.txt: 35926) -.defaultimg.com -# ||deepmetrix.com^$third-party (easylistchina+easylist.txt: 35925) -.deepmetrix.com -# ||dedicatednetworks.com^$third-party (easylistchina+easylist.txt: 35924) -.dedicatednetworks.com -# ||dedicatedmedia.com^$third-party (easylistchina+easylist.txt: 35923) -.dedicatedmedia.com -# ||decknetwork.net^$third-party (easylistchina+easylist.txt: 35922) -.decknetwork.net -# ||decisionnews.com^$third-party (easylistchina+easylist.txt: 35921) -.decisionnews.com -# ||decisionmark.com^$third-party (easylistchina+easylist.txt: 35920) -.decisionmark.com -# ||dealcurrent.com^$third-party (easylistchina+easylist.txt: 35919) -.dealcurrent.com -# ||dbclix.com^$third-party (easylistchina+easylist.txt: 35918) -.dbclix.com -# ||dbbsrv.com^$third-party (easylistchina+easylist.txt: 35917) -.dbbsrv.com -# ||dazhantai.com^$third-party (easylistchina+easylist.txt: 35916) -.dazhantai.com -# ||datumreact.com^$third-party (easylistchina+easylist.txt: 35915) -.datumreact.com -# ||datinggold.com^$third-party (easylistchina+easylist.txt: 35914) -.datinggold.com -# ||dating-banners.com^$third-party (easylistchina+easylist.txt: 35913) -.dating-banners.com -# ||data.adroll.com^$third-party (easylistchina+easylist.txt: 35912) -.data.adroll.com -# ||dashboardad.net^$third-party (easylistchina+easylist.txt: 35911) -.dashboardad.net -# ||dashbida.com^$third-party (easylistchina+easylist.txt: 35910) -.dashbida.com -# ||das5ku9q.com^$third-party (easylistchina+easylist.txt: 35909) -.das5ku9q.com -# ||darwarvid.com^$third-party (easylistchina+easylist.txt: 35908) -.darwarvid.com -# ||dapper.net^$third-party (easylistchina+easylist.txt: 35907) -.dapper.net -# ||danitabedtick.net^$third-party (easylistchina+easylist.txt: 35906) -.danitabedtick.net -# ||dadegid.ru^$third-party (easylistchina+easylist.txt: 35905) -.dadegid.ru -# ||da-ads.com^$third-party (easylistchina+easylist.txt: 35904) -.da-ads.com -# ||d2ship.com^$third-party (easylistchina+easylist.txt: 35903) -.d2ship.com -# ||d1110e4.se^$third-party (easylistchina+easylist.txt: 35902) -.d1110e4.se -# ||d03x2011.com^$third-party (easylistchina+easylist.txt: 35901) -.d03x2011.com -# ||d.m3.net^$third-party (easylistchina+easylist.txt: 35900) -.d.m3.net -# ||d.adroll.com^$third-party (easylistchina+easylist.txt: 35899) -.d.adroll.com -# ||czasnaherbate.info^$third-party (easylistchina+easylist.txt: 35898) -.czasnaherbate.info -# ||cygnus.com^$third-party (easylistchina+easylist.txt: 35897) -.cygnus.com -# ||cybmas.com^$third-party (easylistchina+easylist.txt: 35896) -.cybmas.com -# ||curtisfrierson.com^$third-party (easylistchina+easylist.txt: 35895) -.curtisfrierson.com -# ||currentlyobsessed.me^$third-party (easylistchina+easylist.txt: 35894) -.currentlyobsessed.me -# ||curancience.com^$third-party (easylistchina+easylist.txt: 35893) -.curancience.com -# ||cuelinks.com^$third-party (easylistchina+easylist.txt: 35892) -.cuelinks.com -# ||cubics.com^$third-party (easylistchina+easylist.txt: 35891) -.cubics.com -# ||ctrhub.com^$third-party (easylistchina+easylist.txt: 35890) -.ctrhub.com -# ||ctm-media.com^$third-party (easylistchina+easylist.txt: 35889) -.ctm-media.com -# ||ctenetwork.com^$third-party (easylistchina+easylist.txt: 35888) -.ctenetwork.com -# ||ctasnet.com^$third-party (easylistchina+easylist.txt: 35887) -.ctasnet.com -# ||cruiseworldinc.com^$third-party (easylistchina+easylist.txt: 35886) -.cruiseworldinc.com -# ||cruftexcision.xyz^$third-party (easylistchina+easylist.txt: 35885) -.cruftexcision.xyz -# ||crowdgravity.com^$third-party (easylistchina+easylist.txt: 35884) -.crowdgravity.com -# ||crowdgatheradnetwork.com^$third-party (easylistchina+easylist.txt: 35883) -.crowdgatheradnetwork.com -# ||crossrider.com^$third-party (easylistchina+easylist.txt: 35882) -.crossrider.com -# ||crispads.com^$third-party (easylistchina+easylist.txt: 35881) -.crispads.com -# ||creditcards15x.tk^$third-party (easylistchina+easylist.txt: 35880) -.creditcards15x.tk -# ||creative-serving.com^$third-party (easylistchina+easylist.txt: 35879) -.creative-serving.com -# ||crazyvideosempire.com^$third-party (easylistchina+easylist.txt: 35878) -.crazyvideosempire.com -# ||crazylead.com^$third-party (easylistchina+easylist.txt: 35877) -.crazylead.com -# ||crakmedia.com^$third-party (easylistchina+easylist.txt: 35876) -.crakmedia.com -# ||cpxinteractive.com^$third-party (easylistchina+easylist.txt: 35875) -.cpxinteractive.com -# ||cpxadroit.com^$third-party (easylistchina+easylist.txt: 35874) -.cpxadroit.com -# ||cpx24.com^$third-party (easylistchina+easylist.txt: 35873) -.cpx24.com -# ||cpvtgt.com^$third-party (easylistchina+easylist.txt: 35872) -.cpvtgt.com -# ||cpvmarketplace.info^$third-party (easylistchina+easylist.txt: 35871) -.cpvmarketplace.info -# ||cpvadvertise.com^$third-party (easylistchina+easylist.txt: 35870) -.cpvadvertise.com -# ||cpvads.com^$third-party (easylistchina+easylist.txt: 35869) -.cpvads.com -# ||cpulaptop.com^$third-party (easylistchina+easylist.txt: 35868) -.cpulaptop.com -# ||cpuim.com^$third-party (easylistchina+easylist.txt: 35867) -.cpuim.com -# ||cpmtree.com^$third-party (easylistchina+easylist.txt: 35866) -.cpmtree.com -# ||cpmstar.com^$third-party (easylistchina+easylist.txt: 35865) -.cpmstar.com -# ||cpmrocket.com^$third-party (easylistchina+easylist.txt: 35864) -.cpmrocket.com -# ||cpmmedia.net^$third-party (easylistchina+easylist.txt: 35863) -.cpmmedia.net -# ||cpmleader.com^$third-party (easylistchina+easylist.txt: 35862) -.cpmleader.com -# ||cpmaffiliation.com^$third-party (easylistchina+easylist.txt: 35861) -.cpmaffiliation.com -# ||cpmadvisors.com^$third-party (easylistchina+easylist.txt: 35860) -.cpmadvisors.com -# ||cpm.biz^$third-party (easylistchina+easylist.txt: 35859) -.cpm.biz -# ||cpfclassifieds.com^$third-party (easylistchina+easylist.txt: 35858) -.cpfclassifieds.com -# ||cpcadnet.com^$third-party (easylistchina+easylist.txt: 35857) -.cpcadnet.com -# ||cpays.com^$third-party (easylistchina+easylist.txt: 35856) -.cpays.com -# ||cpaway.com^$third-party (easylistchina+easylist.txt: 35855) -.cpaway.com -# ||cpanuk.com^$third-party (easylistchina+easylist.txt: 35854) -.cpanuk.com -# ||cpalock.com^$third-party (easylistchina+easylist.txt: 35853) -.cpalock.com -# ||cpalead.com^$third-party (easylistchina+easylist.txt: 35852) -.cpalead.com -# ||cpagrip.com^$third-party (easylistchina+easylist.txt: 35851) -.cpagrip.com -# ||cpaclickz.com^$third-party (easylistchina+easylist.txt: 35850) -.cpaclickz.com -# ||cpaclicks.com^$third-party (easylistchina+easylist.txt: 35849) -.cpaclicks.com -# ||cpabeyond.com^$third-party (easylistchina+easylist.txt: 35848) -.cpabeyond.com -# ||covertarget.com^*_*.php (easylistchina+easylist.txt: 35847) -.covertarget.com/.*_.*\.php -# ||coupon2buy.com^$third-party (easylistchina+easylist.txt: 35846) -.coupon2buy.com -# ||coull.com^$third-party (easylistchina+easylist.txt: 35845) -.coull.com -# ||cosmjs.com^$third-party (easylistchina+easylist.txt: 35844) -.cosmjs.com -# ||cornflip.com^$third-party (easylistchina+easylist.txt: 35843) -.cornflip.com -# ||coretarget.co.uk^$third-party (easylistchina+easylist.txt: 35842) -.coretarget.co.uk -# ||cor-natty.com^$third-party (easylistchina+easylist.txt: 35841) -.cor-natty.com -# ||copacet.com^$third-party (easylistchina+easylist.txt: 35840) -.copacet.com -# ||coolmirage.com^$third-party (easylistchina+easylist.txt: 35839) -.coolmirage.com -# ||coolerads.com^$third-party (easylistchina+easylist.txt: 35838) -.coolerads.com -# ||contextweb.com^$third-party (easylistchina+easylist.txt: 35837) -.contextweb.com -# ||contextuads.com^$third-party (easylistchina+easylist.txt: 35836) -.contextuads.com -# ||contextads.net^$third-party (easylistchina+easylist.txt: 35835) -.contextads.net -# ||contexlink.se^$third-party (easylistchina+easylist.txt: 35834) -.contexlink.se -# ||contentwidgets.net^$third-party (easylistchina+easylist.txt: 35833) -.contentwidgets.net -# ||contenture.com^$third-party (easylistchina+easylist.txt: 35832) -.contenture.com -# ||contentjs.com^$third-party (easylistchina+easylist.txt: 35831) -.contentjs.com -# ||contentdigital.info^$third-party (easylistchina+easylist.txt: 35830) -.contentdigital.info -# ||contentclick.co.uk^$third-party (easylistchina+easylist.txt: 35829) -.contentclick.co.uk -# ||content.ad^$third-party (easylistchina+easylist.txt: 35828) -.content.ad -# ||content-cooperation.com^$third-party (easylistchina+easylist.txt: 35827) -.content-cooperation.com -# ||contaxe.com^$third-party (easylistchina+easylist.txt: 35826) -.contaxe.com -# ||contadd.com^$third-party (easylistchina+easylist.txt: 35825) -.contadd.com -# ||consumergenepool.com^$third-party (easylistchina+easylist.txt: 35824) -.consumergenepool.com -# ||construment.com^$third-party (easylistchina+easylist.txt: 35823) -.construment.com -# ||connextra.com^$third-party (easylistchina+easylist.txt: 35822) -.connextra.com -# ||connexplace.com^$third-party (easylistchina+easylist.txt: 35821) -.connexplace.com -# ||connexity.net^$third-party (easylistchina+easylist.txt: 35820) -.connexity.net -# ||connectionads.com^$third-party (easylistchina+easylist.txt: 35819) -.connectionads.com -# ||connectedads.net^$third-party (easylistchina+easylist.txt: 35818) -.connectedads.net -# ||connatix.com^$third-party (easylistchina+easylist.txt: 35817) -.connatix.com -# ||conduit-services.com^$third-party (easylistchina+easylist.txt: 35816) -.conduit-services.com -# ||conduit-banners.com^$third-party (easylistchina+easylist.txt: 35815) -.conduit-banners.com -# ||comscore.com^$third-party (easylistchina+easylist.txt: 35814) -.comscore.com -# ||complive.link^$third-party (easylistchina+easylist.txt: 35813) -.complive.link -# ||completecarrd.com^$third-party (easylistchina+easylist.txt: 35812) -.completecarrd.com -# ||commissionmonster.com^$third-party (easylistchina+easylist.txt: 35811) -.commissionmonster.com -# ||commissionlounge.com^$third-party (easylistchina+easylist.txt: 35810) -.commissionlounge.com -# ||commissionfactory.com.au^$third-party (easylistchina+easylist.txt: 35809) -.commissionfactory.com.au -# ||commission.bz^$third-party (easylistchina+easylist.txt: 35808) -.commission.bz -# ||commission-junction.com^$third-party (easylistchina+easylist.txt: 35807) -.commission-junction.com -# ||comclick.com^$third-party (easylistchina+easylist.txt: 35806) -.comclick.com -# ||colliersads.com^$third-party (easylistchina+easylist.txt: 35805) -.colliersads.com -# ||collective-media.net^$third-party (easylistchina+easylist.txt: 35804) -.collective-media.net -# ||collection-day.com^$third-party (easylistchina+easylist.txt: 35803) -.collection-day.com -# ||coinadvert.net^$third-party (easylistchina+easylist.txt: 35802) -.coinadvert.net -# ||coguan.com^$third-party (easylistchina+easylist.txt: 35801) -.coguan.com -# ||cogsdigital.com^$third-party (easylistchina+easylist.txt: 35800) -.cogsdigital.com -# ||cogocast.net^$third-party (easylistchina+easylist.txt: 35799) -.cogocast.net -# ||coedmediagroup.com^$third-party (easylistchina+easylist.txt: 35798) -.coedmediagroup.com -# ||codigobarras.net^$third-party (easylistchina+easylist.txt: 35797) -.codigobarras.net -# ||codezap.com^$third-party (easylistchina+easylist.txt: 35796) -.codezap.com -# ||coadvertise.com^$third-party (easylistchina+easylist.txt: 35795) -.coadvertise.com -# ||cntdy.mobi^$third-party (easylistchina+easylist.txt: 35794) -.cntdy.mobi -# ||cnt.my^$third-party (easylistchina+easylist.txt: 35793) -.cnt.my -# ||cmllk1.info^$third-party (easylistchina+easylist.txt: 35792) -.cmllk1.info -# ||cmfads.com^$third-party (easylistchina+easylist.txt: 35791) -.cmfads.com -# ||clz3.net^$third-party (easylistchina+easylist.txt: 35790) -.clz3.net -# ||cltomedia.info^$third-party (easylistchina+easylist.txt: 35789) -.cltomedia.info -# ||cloudioo.net^$third-party (easylistchina+easylist.txt: 35788) -.cloudioo.net -# ||clnk.me^$third-party (easylistchina+easylist.txt: 35787) -.clnk.me -# ||clkrev.com^ (easylistchina+easylist.txt: 35786) -.clkrev.com -# ||clixtrac.com^$third-party (easylistchina+easylist.txt: 35785) -.clixtrac.com -# ||clixsense.com^$third-party (easylistchina+easylist.txt: 35784) -.clixsense.com -# ||clixgalore.com^$third-party (easylistchina+easylist.txt: 35783) -.clixgalore.com -# ||clickzxc.com^$third-party (easylistchina+easylist.txt: 35782) -.clickzxc.com -# ||clickxchange.com^$third-party (easylistchina+easylist.txt: 35781) -.clickxchange.com -# ||clickwinks.com^$third-party (easylistchina+easylist.txt: 35780) -.clickwinks.com -# ||clickupto.com^$third-party (easylistchina+easylist.txt: 35779) -.clickupto.com -# ||clicktripz.com^$third-party (easylistchina+easylist.txt: 35778) -.clicktripz.com -# ||clicktripz.co^$third-party (easylistchina+easylist.txt: 35777) -.clicktripz.co -# ||clickthrucash.com^$third-party (easylistchina+easylist.txt: 35776) -.clickthrucash.com -# ||clickterra.net^$third-party (easylistchina+easylist.txt: 35775) -.clickterra.net -# ||clicksurvey.mobi^$third-party (easylistchina+easylist.txt: 35774) -.clicksurvey.mobi -# ||clicksor.net^$third-party (easylistchina+easylist.txt: 35773) -.clicksor.net -# ||clicksor.com^$third-party (easylistchina+easylist.txt: 35772) -.clicksor.com -# ||clicks2count.com^$third-party (easylistchina+easylist.txt: 35771) -.clicks2count.com -# ||clickosmedia.com^$third-party (easylistchina+easylist.txt: 35770) -.clickosmedia.com -# ||clicknano.com^$third-party (easylistchina+easylist.txt: 35769) -.clicknano.com -# ||clickmyads.info^$third-party (easylistchina+easylist.txt: 35768) -.clickmyads.info -# ||clickkingdom.net^$third-party (easylistchina+easylist.txt: 35767) -.clickkingdom.net -# ||clickiocdn.com^$third-party (easylistchina+easylist.txt: 35766) -.clickiocdn.com -# ||clickintext.net^$third-party (easylistchina+easylist.txt: 35765) -.clickintext.net -# ||clickintext.com^$third-party (easylistchina+easylist.txt: 35764) -.clickintext.com -# ||clickfuse.com^$third-party (easylistchina+easylist.txt: 35763) -.clickfuse.com -# ||clickexperts.net^$third-party (easylistchina+easylist.txt: 35762) -.clickexperts.net -# ||clickexa.com^$third-party (easylistchina+easylist.txt: 35761) -.clickexa.com -# ||clickequations.net^$third-party (easylistchina+easylist.txt: 35760) -.clickequations.net -# ||clickcertain.com^$third-party (easylistchina+easylist.txt: 35759) -.clickcertain.com -# ||clickcash.com^$third-party (easylistchina+easylist.txt: 35758) -.clickcash.com -# ||clickbubbles.net^$third-party (easylistchina+easylist.txt: 35757) -.clickbubbles.net -# ||clickboothlnk.com^$third-party (easylistchina+easylist.txt: 35756) -.clickboothlnk.com -# ||clickbooth.com^$third-party (easylistchina+easylist.txt: 35755) -.clickbooth.com -# ||clickbet88.com^$third-party (easylistchina+easylist.txt: 35754) -.clickbet88.com -# ||clickagy.com^$third-party (easylistchina+easylist.txt: 35753) -.clickagy.com -# ||clickad.pl^$third-party (easylistchina+easylist.txt: 35752) -.clickad.pl -# ||clickable.com^$third-party (easylistchina+easylist.txt: 35751) -.clickable.com -# ||click4free.info^$third-party (easylistchina+easylist.txt: 35750) -.click4free.info -# ||click2jump.com^$third-party (easylistchina+easylist.txt: 35749) -.click2jump.com -# ||click.scour.com^$third-party (easylistchina+easylist.txt: 35748) -.click.scour.com -# ||clevv.com^$third-party (easylistchina+easylist.txt: 35747) -.clevv.com -# ||clente.com^$third-party (easylistchina+easylist.txt: 35746) -.clente.com -# ||clear-request.com^$third-party (easylistchina+easylist.txt: 35745) -.clear-request.com -# ||cleafs.com^$third-party (easylistchina+easylist.txt: 35744) -.cleafs.com -# ||cldlr.com^$third-party (easylistchina+easylist.txt: 35743) -.cldlr.com -# ||clayaim.com^$third-party (easylistchina+easylist.txt: 35742) -.clayaim.com -# ||claxonmedia.com^$third-party (easylistchina+easylist.txt: 35741) -.claxonmedia.com -# ||clash-media.com^$third-party (easylistchina+easylist.txt: 35740) -.clash-media.com -# ||clarityray.com^$third-party (easylistchina+easylist.txt: 35739) -.clarityray.com -# ||cjt1.net^$third-party (easylistchina+easylist.txt: 35738) -.cjt1.net -# ||citysite.net^$third-party (easylistchina+easylist.txt: 35737) -.citysite.net -# ||city-ads.de^$third-party (easylistchina+easylist.txt: 35736) -.city-ads.de -# ||cibleclick.com^$third-party (easylistchina+easylist.txt: 35735) -.cibleclick.com -# ||chronicads.com^$third-party (easylistchina+easylist.txt: 35734) -.chronicads.com -# ||chitika.net^$third-party (easylistchina+easylist.txt: 35733) -.chitika.net -# ||chitika.com^$third-party (easylistchina+easylist.txt: 35732) -.chitika.com -# ||chipleader.com^$third-party (easylistchina+easylist.txt: 35731) -.chipleader.com -# ||chinagrad.ru^$third-party (easylistchina+easylist.txt: 35730) -.chinagrad.ru -# ||china-netwave.com^$third-party (easylistchina+easylist.txt: 35729) -.china-netwave.com -# ||chicbuy.info^$third-party (easylistchina+easylist.txt: 35728) -.chicbuy.info -# ||cherytso.com^$third-party (easylistchina+easylist.txt: 35727) -.cherytso.com -# ||checkoutfree.com^$third-party (easylistchina+easylist.txt: 35726) -.checkoutfree.com -# ||checkmystats.com.au^$third-party (easylistchina+easylist.txt: 35725) -.checkmystats.com.au -# ||checkm8.com^$third-party (easylistchina+easylist.txt: 35724) -.checkm8.com -# ||charltonmedia.com^$third-party (easylistchina+easylist.txt: 35723) -.charltonmedia.com -# ||chanished.net^$third-party (easylistchina+easylist.txt: 35722) -.chanished.net -# ||chango.com^$third-party (easylistchina+easylist.txt: 35721) -.chango.com -# ||chameleon.ad^$third-party (easylistchina+easylist.txt: 35720) -.chameleon.ad -# ||cgecwm.org^$third-party (easylistchina+easylist.txt: 35719) -.cgecwm.org -# ||cerotop.com^$third-party (easylistchina+easylist.txt: 35718) -.cerotop.com -# ||centralnervous.net^$third-party (easylistchina+easylist.txt: 35717) -.centralnervous.net -# ||cdnservr.com^$third-party (easylistchina+easylist.txt: 35716) -.cdnservr.com -# ||cdnrl.com^$third-party (easylistchina+easylist.txt: 35715) -.cdnrl.com -# ||cdnads.com^$third-party (easylistchina+easylist.txt: 35714) -.cdnads.com -# ||cdna.tremormedia.com^$third-party (easylistchina+easylist.txt: 35713) -.cdna.tremormedia.com -# ||cdn.mobicow.com^$third-party (easylistchina+easylist.txt: 35712) -.cdn.mobicow.com -# ||cdn-image.com^$third-party (easylistchina+easylist.txt: 35711) -.cdn-image.com -# ||cd828.com^$third-party (easylistchina+easylist.txt: 35710) -.cd828.com -# ||cc-dt.com^$third-party (easylistchina+easylist.txt: 35709) -.cc-dt.com -# ||cbn.tbn.ru^$third-party (easylistchina+easylist.txt: 35708) -.cbn.tbn.ru -# ||cbleads.com^$third-party (easylistchina+easylist.txt: 35707) -.cbleads.com -# ||cbclicks.com^$third-party (easylistchina+easylist.txt: 35706) -.cbclicks.com -# ||cbclickbank.com^$third-party (easylistchina+easylist.txt: 35705) -.cbclickbank.com -# ||cbaazars.com^$third-party (easylistchina+easylist.txt: 35704) -.cbaazars.com -# ||cb-content.com^$third-party (easylistchina+easylist.txt: 35703) -.cb-content.com -# ||caygh.com^$third-party (easylistchina+easylist.txt: 35702) -.caygh.com -# ||castplatform.com^$third-party (easylistchina+easylist.txt: 35701) -.castplatform.com -# ||casterpretic.com^$third-party (easylistchina+easylist.txt: 35700) -.casterpretic.com -# ||caspion.com^$third-party (easylistchina+easylist.txt: 35699) -.caspion.com -# ||casino-zilla.com^$third-party (easylistchina+easylist.txt: 35698) -.casino-zilla.com -# ||cashworld.biz^$third-party (easylistchina+easylist.txt: 35697) -.cashworld.biz -# ||cashtrafic.info^$third-party (easylistchina+easylist.txt: 35696) -.cashtrafic.info -# ||cashtrafic.com^$third-party (easylistchina+easylist.txt: 35695) -.cashtrafic.com -# ||cashonvisit.com^$third-party (easylistchina+easylist.txt: 35694) -.cashonvisit.com -# ||cashmylinks.com^$third-party (easylistchina+easylist.txt: 35693) -.cashmylinks.com -# ||cashatgsc.com^$third-party (easylistchina+easylist.txt: 35692) -.cashatgsc.com -# ||cash4members.com^$third-party (easylistchina+easylist.txt: 35691) -.cash4members.com -# ||cash-duck.com^$third-party (easylistchina+easylist.txt: 35690) -.cash-duck.com -# ||casalemedia.com^$third-party (easylistchina+easylist.txt: 35689) -.casalemedia.com -# ||cartorkins.com^$third-party (easylistchina+easylist.txt: 35688) -.cartorkins.com -# ||carrier.bz^$third-party (easylistchina+easylist.txt: 35687) -.carrier.bz -# ||cardincraping.net^$third-party (easylistchina+easylist.txt: 35686) -.cardincraping.net -# ||carbonads.com^$third-party (easylistchina+easylist.txt: 35685) -.carbonads.com -# ||captifymedia.com^$third-party (easylistchina+easylist.txt: 35684) -.captifymedia.com -# ||captainad.com^$third-party (easylistchina+easylist.txt: 35683) -.captainad.com -# ||capitatmarket.com^$third-party (easylistchina+easylist.txt: 35682) -.capitatmarket.com -# ||capacitygrid.com^$third-party (easylistchina+easylist.txt: 35681) -.capacitygrid.com -# ||canoeklix.com^$third-party (easylistchina+easylist.txt: 35680) -.canoeklix.com -# ||campanja.com^$third-party (easylistchina+easylist.txt: 35679) -.campanja.com -# ||camleyads.info^$third-party (easylistchina+easylist.txt: 35678) -.camleyads.info -# ||c8.net.ua^$third-party (easylistchina+easylist.txt: 35677) -.c8.net.ua -# ||c-planet.net^$third-party (easylistchina+easylist.txt: 35676) -.c-planet.net -# ||c-on-text.com^$third-party (easylistchina+easylist.txt: 35675) -.c-on-text.com -# ||byzoo.org^$third-party (easylistchina+easylist.txt: 35674) -.byzoo.org -# ||byspot.com^$third-party (easylistchina+easylist.txt: 35673) -.byspot.com -# ||bwinpartypartners.com^$third-party (easylistchina+easylist.txt: 35672) -.bwinpartypartners.com -# ||buzzparadise.com^$third-party (easylistchina+easylist.txt: 35671) -.buzzparadise.com -# ||buzzcity.net^$third-party (easylistchina+easylist.txt: 35670) -.buzzcity.net -# ||buyt.in^$third-party (easylistchina+easylist.txt: 35669) -.buyt.in -# ||buysellads.com^$third-party (easylistchina+easylist.txt: 35668) -.buysellads.com -# ||buyorselltnhomes.com^$third-party (easylistchina+easylist.txt: 35667) -.buyorselltnhomes.com -# ||buyflood.com^$third-party (easylistchina+easylist.txt: 35666) -.buyflood.com -# ||buxp.org^$third-party (easylistchina+easylist.txt: 35665) -.buxp.org -# ||buxflow.com^$third-party (easylistchina+easylist.txt: 35664) -.buxflow.com -# ||buxept.com^$third-party (easylistchina+easylist.txt: 35663) -.buxept.com -# ||busterzaster.de^$third-party (easylistchina+easylist.txt: 35662) -.busterzaster.de -# ||businessclick.com^$third-party (easylistchina+easylist.txt: 35661) -.businessclick.com -# ||businesscare.com^$third-party (easylistchina+easylist.txt: 35660) -.businesscare.com -# ||burstnet.com^$third-party (easylistchina+easylist.txt: 35659) -.burstnet.com -# ||burnsoftware.info^$third-party (easylistchina+easylist.txt: 35658) -.burnsoftware.info -# ||burjam.com^$third-party (easylistchina+easylist.txt: 35657) -.burjam.com -# ||burbanked.info^$third-party (easylistchina+easylist.txt: 35656) -.burbanked.info -# ||bunny-net.com^$third-party (easylistchina+easylist.txt: 35655) -.bunny-net.com -# ||bunchofads.com^$third-party (easylistchina+easylist.txt: 35654) -.bunchofads.com -# ||bulletproofserving.com^$third-party (easylistchina+easylist.txt: 35653) -.bulletproofserving.com -# ||buildtrafficx.com^$third-party (easylistchina+easylist.txt: 35652) -.buildtrafficx.com -# ||budurl.com^$third-party (easylistchina+easylist.txt: 35651) -.budurl.com -# ||budgetedbauer.com^$third-party (easylistchina+easylist.txt: 35650) -.budgetedbauer.com -# ||bucketsofbanners.com^$third-party (easylistchina+easylist.txt: 35649) -.bucketsofbanners.com -# ||bubblesmedia.ru^$third-party (easylistchina+easylist.txt: 35648) -.bubblesmedia.ru -# ||bu520.com^$third-party (easylistchina+easylist.txt: 35647) -.bu520.com -# ||bttrack.com^$third-party (easylistchina+easylist.txt: 35646) -.bttrack.com -# ||bttbgroup.com^$third-party (easylistchina+easylist.txt: 35645) -.bttbgroup.com -# ||btrll.com^$third-party (easylistchina+easylist.txt: 35644) -.btrll.com -# ||btnibbler.com^$third-party (easylistchina+easylist.txt: 35643) -.btnibbler.com -# ||bstrtb.com^$third-party (easylistchina+easylist.txt: 35642) -.bstrtb.com -# ||brucelead.com^$third-party (easylistchina+easylist.txt: 35641) -.brucelead.com -# ||browsersfeedback.com^$third-party (easylistchina+easylist.txt: 35640) -.browsersfeedback.com -# ||broadstreetads.com^$third-party (easylistchina+easylist.txt: 35639) -.broadstreetads.com -# ||brightshare.com^$third-party (easylistchina+easylist.txt: 35638) -.brightshare.com -# ||brighteroption.com^$third-party (easylistchina+easylist.txt: 35637) -.brighteroption.com -# ||bridgetrack.com^$third-party (easylistchina+easylist.txt: 35636) -.bridgetrack.com -# ||brealtime.com^$third-party (easylistchina+easylist.txt: 35635) -.brealtime.com -# ||breadpro.com^$third-party (easylistchina+easylist.txt: 35634) -.breadpro.com -# ||bravenetmedianetwork.com^$third-party (easylistchina+easylist.txt: 35633) -.bravenetmedianetwork.com -# ||braside.ru^$third-party (easylistchina+easylist.txt: 35632) -.braside.ru -# ||brandreachsys.com^$third-party (easylistchina+easylist.txt: 35631) -.brandreachsys.com -# ||brandclik.com^$third-party (easylistchina+easylist.txt: 35630) -.brandclik.com -# ||brandaffinity.net^$third-party (easylistchina+easylist.txt: 35629) -.brandaffinity.net -# ||brandads.net^$third-party (easylistchina+easylist.txt: 35628) -.brandads.net -# ||brand.net^$third-party (easylistchina+easylist.txt: 35627) -.brand.net -# ||brand-display.com^$third-party (easylistchina+easylist.txt: 35626) -.brand-display.com -# ||branchr.com^$third-party (easylistchina+easylist.txt: 35625) -.branchr.com -# ||brainient.com^$third-party (easylistchina+easylist.txt: 35624) -.brainient.com -# ||br.rk.com^$third-party (easylistchina+easylist.txt: 35623) -.br.rk.com -# ||bptracking.com^$third-party (easylistchina+easylist.txt: 35622) -.bptracking.com -# ||boylesportsreklame.com^$third-party (easylistchina+easylist.txt: 35621) -.boylesportsreklame.com -# ||boydadvertising.co.uk^$third-party (easylistchina+easylist.txt: 35620) -.boydadvertising.co.uk -# ||bororas.com^$third-party (easylistchina+easylist.txt: 35619) -.bororas.com -# ||bormoni.ru^$third-party (easylistchina+easylist.txt: 35618) -.bormoni.ru -# ||boostclic.com^$third-party (easylistchina+easylist.txt: 35617) -.boostclic.com -# ||boostable.com^$third-party (easylistchina+easylist.txt: 35616) -.boostable.com -# ||booklandonline.info^$third-party (easylistchina+easylist.txt: 35615) -.booklandonline.info -# ||boo-box.com^$third-party (easylistchina+easylist.txt: 35614) -.boo-box.com -# ||bonusfapturbo.com^$third-party (easylistchina+easylist.txt: 35613) -.bonusfapturbo.com -# ||bokroet.com^$third-party (easylistchina+easylist.txt: 35612) -.bokroet.com -# ||bogads.com^$third-party (easylistchina+easylist.txt: 35611) -.bogads.com -# ||bnr.sys.lv^$third-party (easylistchina+easylist.txt: 35610) -.bnr.sys.lv -# ||bnmla.com^$third-party (easylistchina+easylist.txt: 35609) -.bnmla.com -# ||bnhtml.com^$third-party (easylistchina+easylist.txt: 35608) -.bnhtml.com -# ||bnetworx.com^$third-party (easylistchina+easylist.txt: 35607) -.bnetworx.com -# ||bmanpn.com^$third-party (easylistchina+easylist.txt: 35606) -.bmanpn.com -# ||blumi.to^$third-party (easylistchina+easylist.txt: 35605) -.blumi.to -# ||bluestreak.com^$third-party (easylistchina+easylist.txt: 35604) -.bluestreak.com -# ||blueadvertise.com^$third-party (easylistchina+easylist.txt: 35603) -.blueadvertise.com -# ||blogohertz.com^$third-party (easylistchina+easylist.txt: 35602) -.blogohertz.com -# ||blogherads.com^$third-party (easylistchina+easylist.txt: 35601) -.blogherads.com -# ||bloggerex.com^$third-party (easylistchina+easylist.txt: 35600) -.bloggerex.com -# ||blogclans.com^$third-party (easylistchina+easylist.txt: 35599) -.blogclans.com -# ||blogbannerexchange.com^$third-party (easylistchina+easylist.txt: 35598) -.blogbannerexchange.com -# ||blogads.com^$third-party (easylistchina+easylist.txt: 35597) -.blogads.com -# ||blinkadr.com^$third-party (easylistchina+easylist.txt: 35596) -.blinkadr.com -# ||blardenso.com^$third-party (easylistchina+easylist.txt: 35595) -.blardenso.com -# ||blamcity.com^$third-party (easylistchina+easylist.txt: 35594) -.blamcity.com -# ||blamads.com^$third-party (easylistchina+easylist.txt: 35593) -.blamads.com -# ||bjjingda.com^$third-party (easylistchina+easylist.txt: 35592) -.bjjingda.com -# ||bizzclick.com^$third-party (easylistchina+easylist.txt: 35591) -.bizzclick.com -# ||bizrotator.com^$third-party (easylistchina+easylist.txt: 35590) -.bizrotator.com -# ||bizographics.com^$third-party (easylistchina+easylist.txt: 35589) -.bizographics.com -# ||bitx.tv^$third-party (easylistchina+easylist.txt: 35588) -.bitx.tv -# ||bittads.com^$third-party (easylistchina+easylist.txt: 35587) -.bittads.com -# ||bitfalcon.tv^$third-party (easylistchina+easylist.txt: 35586) -.bitfalcon.tv -# ||bitcoinadvertisers.com^$third-party (easylistchina+easylist.txt: 35585) -.bitcoinadvertisers.com -# ||bitads.net^$third-party (easylistchina+easylist.txt: 35584) -.bitads.net -# ||binlayer.de^$third-party (easylistchina+easylist.txt: 35583) -.binlayer.de -# ||binlayer.com^$third-party (easylistchina+easylist.txt: 35582) -.binlayer.com -# ||bingo4affiliates.com^$third-party (easylistchina+easylist.txt: 35581) -.bingo4affiliates.com -# ||binaryoptionssystems.org^$third-party (easylistchina+easylist.txt: 35580) -.binaryoptionssystems.org -# ||bin-layer.ru^$third-party (easylistchina+easylist.txt: 35579) -.bin-layer.ru -# ||bin-layer.de^$third-party (easylistchina+easylist.txt: 35578) -.bin-layer.de -# ||bimlocal.com^$third-party (easylistchina+easylist.txt: 35577) -.bimlocal.com -# ||billypub.com^$third-party (easylistchina+easylist.txt: 35576) -.billypub.com -# ||bijscode.com^$third-party (easylistchina+easylist.txt: 35575) -.bijscode.com -# ||bigfineads.com^$third-party (easylistchina+easylist.txt: 35574) -.bigfineads.com -# ||bigadpoint.net^$third-party (easylistchina+easylist.txt: 35573) -.bigadpoint.net -# ||biemedia.com^$third-party (easylistchina+easylist.txt: 35572) -.biemedia.com -# ||bidvertiser.com^$third-party (easylistchina+easylist.txt: 35571) -.bidvertiser.com -# ||bidsystem.com^$third-party (easylistchina+easylist.txt: 35570) -.bidsystem.com -# ||bidgewatr.com^$third-party (easylistchina+easylist.txt: 35569) -.bidgewatr.com -# ||bh3.net^$third-party (easylistchina+easylist.txt: 35568) -.bh3.net -# ||bfast.com^$third-party (easylistchina+easylist.txt: 35567) -.bfast.com -# ||bettingpartners.com^$third-party (easylistchina+easylist.txt: 35566) -.bettingpartners.com -# ||betrad.com^$third-party (easylistchina+easylist.txt: 35565) -.betrad.com -# ||betoga.com^$third-party (easylistchina+easylist.txt: 35564) -.betoga.com -# ||betaffs.com^$third-party (easylistchina+easylist.txt: 35563) -.betaffs.com -# ||bet365affiliates.com^$third-party (easylistchina+easylist.txt: 35562) -.bet365affiliates.com -# ||bet3000partners.com^$third-party (easylistchina+easylist.txt: 35561) -.bet3000partners.com -# ||bestpricewala.com^$third-party (easylistchina+easylist.txt: 35560) -.bestpricewala.com -# ||bestonlinecoupons.com^$third-party (easylistchina+easylist.txt: 35559) -.bestonlinecoupons.com -# ||bestofferdirect.com^$third-party (easylistchina+easylist.txt: 35558) -.bestofferdirect.com -# ||besthitsnow.com^$third-party (easylistchina+easylist.txt: 35557) -.besthitsnow.com -# ||bestgameads.com^$third-party (easylistchina+easylist.txt: 35556) -.bestgameads.com -# ||bestforexpartners.com^$third-party (easylistchina+easylist.txt: 35555) -.bestforexpartners.com -# ||bestfindsite.com^$third-party (easylistchina+easylist.txt: 35554) -.bestfindsite.com -# ||bestdeals.ws^$third-party (easylistchina+easylist.txt: 35553) -.bestdeals.ws -# ||bestcasinopartner.com^$third-party (easylistchina+easylist.txt: 35552) -.bestcasinopartner.com -# ||beringmedia.com^$third-party (easylistchina+easylist.txt: 35551) -.beringmedia.com -# ||bepolite.eu^$third-party (easylistchina+easylist.txt: 35550) -.bepolite.eu -# ||bentdownload.com^$third-party (easylistchina+easylist.txt: 35549) -.bentdownload.com -# ||belvertising.be^$third-party (easylistchina+easylist.txt: 35548) -.belvertising.be -# ||belointeractive.com^$third-party (easylistchina+easylist.txt: 35547) -.belointeractive.com -# ||begun.ru^$third-party (easylistchina+easylist.txt: 35546) -.begun.ru -# ||beforescence.com^$third-party (easylistchina+easylist.txt: 35545) -.beforescence.com -# ||befade.com^$third-party (easylistchina+easylist.txt: 35544) -.befade.com -# ||beead.net^$third-party (easylistchina+easylist.txt: 35543) -.beead.net -# ||beead.co.uk^$third-party (easylistchina+easylist.txt: 35542) -.beead.co.uk -# ||bedorm.com^$third-party (easylistchina+easylist.txt: 35541) -.bedorm.com -# ||bebi.com^$third-party (easylistchina+easylist.txt: 35540) -.bebi.com -# ||beatchucknorris.com^$third-party (easylistchina+easylist.txt: 35539) -.beatchucknorris.com -# ||beaconads.com^$third-party (easylistchina+easylist.txt: 35538) -.beaconads.com -# ||bbuni.com^$third-party (easylistchina+easylist.txt: 35537) -.bbuni.com -# ||bbelements.com^$third-party (easylistchina+easylist.txt: 35536) -.bbelements.com -# ||basebanner.com^$third-party (easylistchina+easylist.txt: 35535) -.basebanner.com -# ||baronsoffers.com^$third-party (easylistchina+easylist.txt: 35534) -.baronsoffers.com -# ||bannerweb.com^$third-party (easylistchina+easylist.txt: 35533) -.bannerweb.com -# ||bannertracker-script.com^$third-party (easylistchina+easylist.txt: 35532) -.bannertracker-script.com -# ||bannertgt.com^$third-party (easylistchina+easylist.txt: 35531) -.bannertgt.com -# ||bannersurvey.biz^$third-party (easylistchina+easylist.txt: 35530) -.bannersurvey.biz -# ||bannersnack.net^$third-party (easylistchina+easylist.txt: 35529) -.bannersnack.net -# ||bannersnack.com^$third-party (easylistchina+easylist.txt: 35528) -.bannersnack.com -# ||bannersmania.com^$third-party (easylistchina+easylist.txt: 35527) -.bannersmania.com -# ||bannerrage.com^$third-party (easylistchina+easylist.txt: 35526) -.bannerrage.com -# ||bannerperformance.net^$third-party (easylistchina+easylist.txt: 35525) -.bannerperformance.net -# ||bannerlot.com^$third-party (easylistchina+easylist.txt: 35524) -.bannerlot.com -# ||bannerjammers.com^$third-party (easylistchina+easylist.txt: 35523) -.bannerjammers.com -# ||bannerignition.co.za^$third-party (easylistchina+easylist.txt: 35522) -.bannerignition.co.za -# ||bannerflux.com^$third-party (easylistchina+easylist.txt: 35521) -.bannerflux.com -# ||bannerflow.com^$third-party (easylistchina+easylist.txt: 35520) -.bannerflow.com -# ||bannerexchange.com.au^$third-party (easylistchina+easylist.txt: 35519) -.bannerexchange.com.au -# ||bannerdealer.com^$third-party (easylistchina+easylist.txt: 35518) -.bannerdealer.com -# ||bannerconnect.net^$third-party (easylistchina+easylist.txt: 35517) -.bannerconnect.net -# ||bannerconnect.com^$third-party (easylistchina+easylist.txt: 35516) -.bannerconnect.com -# ||bannercde.com^$third-party (easylistchina+easylist.txt: 35515) -.bannercde.com -# ||bannerbridge.net^$third-party (easylistchina+easylist.txt: 35514) -.bannerbridge.net -# ||bannerblasters.com^$third-party (easylistchina+easylist.txt: 35513) -.bannerblasters.com -# ||bannerbank.ru^$third-party (easylistchina+easylist.txt: 35512) -.bannerbank.ru -# ||banner-rotation.com^$third-party (easylistchina+easylist.txt: 35511) -.banner-rotation.com -# ||banner-clix.com^$third-party (easylistchina+easylist.txt: 35510) -.banner-clix.com -# ||bananaflippy.com^$third-party (easylistchina+easylist.txt: 35509) -.bananaflippy.com -# ||baldiro.de^$third-party (easylistchina+easylist.txt: 35508) -.baldiro.de -# ||badjocks.com^$third-party (easylistchina+easylist.txt: 35507) -.badjocks.com -# ||backlinks.com^$third-party (easylistchina+easylist.txt: 35506) -.backlinks.com -# ||backbeatmedia.com^$third-party (easylistchina+easylist.txt: 35505) -.backbeatmedia.com -# ||babbnrs.com^$third-party (easylistchina+easylist.txt: 35504) -.babbnrs.com -# ||b6508157d.website^$third-party (easylistchina+easylist.txt: 35503) -.b6508157d.website -# ||b117f8da23446a91387efea0e428392a.pl^$third-party (easylistchina+easylist.txt: 35502) -.b117f8da23446a91387efea0e428392a.pl -# ||azorbe.com^$third-party (easylistchina+easylist.txt: 35501) -.azorbe.com -# ||azoogleads.com^$third-party (easylistchina+easylist.txt: 35500) -.azoogleads.com -# ||azjmp.com^$third-party (easylistchina+easylist.txt: 35499) -.azjmp.com -# ||azads.com^$third-party (easylistchina+easylist.txt: 35498) -.azads.com -# ||ayboll.com^$third-party (easylistchina+easylist.txt: 35497) -.ayboll.com -# ||axill.com^$third-party (easylistchina+easylist.txt: 35496) -.axill.com -# ||awsurveys.com^$third-party (easylistchina+easylist.txt: 35495) -.awsurveys.com -# ||awsmer.com^$third-party (easylistchina+easylist.txt: 35494) -.awsmer.com -# ||awltovhc.com^$third-party (easylistchina+easylist.txt: 35493) -.awltovhc.com -# ||awin1.com^$third-party (easylistchina+easylist.txt: 35492) -.awin1.com -# ||awempire.com^$third-party (easylistchina+easylist.txt: 35491) -.awempire.com -# ||awaps.net^$third-party (easylistchina+easylist.txt: 35490) -.awaps.net -# ||avercarto.com^$third-party (easylistchina+easylist.txt: 35489) -.avercarto.com -# ||avazutracking.net^$third-party (easylistchina+easylist.txt: 35488) -.avazutracking.net -# ||avazu.net^$third-party (easylistchina+easylist.txt: 35487) -.avazu.net -# ||avalopaly.com^$third-party (easylistchina+easylist.txt: 35486) -.avalopaly.com -# ||avalanchers.com^$third-party (easylistchina+easylist.txt: 35485) -.avalanchers.com -# ||avads.co.uk^$third-party (easylistchina+easylist.txt: 35484) -.avads.co.uk -# ||automateyourlist.com^$third-party (easylistchina+easylist.txt: 35483) -.automateyourlist.com -# ||automatedtraffic.com^$third-party (easylistchina+easylist.txt: 35482) -.automatedtraffic.com -# ||auto-insurance-quotes-compare.com^$third-party (easylistchina+easylist.txt: 35481) -.auto-insurance-quotes-compare.com -# ||auto-im.com^$third-party (easylistchina+easylist.txt: 35480) -.auto-im.com -# ||auspipe.com^$third-party (easylistchina+easylist.txt: 35479) -.auspipe.com -# ||aunmdhxrco.com^$third-party (easylistchina+easylist.txt: 35478) -.aunmdhxrco.com -# ||august15download.com^$third-party (easylistchina+easylist.txt: 35477) -.august15download.com -# ||augmentad.net^$third-party (easylistchina+easylist.txt: 35476) -.augmentad.net -# ||auditude.com^$third-party (easylistchina+easylist.txt: 35475) -.auditude.com -# ||auditoire.ph^$third-party (easylistchina+easylist.txt: 35474) -.auditoire.ph -# ||audienceprofiler.com^$third-party (easylistchina+easylist.txt: 35473) -.audienceprofiler.com -# ||audiencefuel.com^$third-party (easylistchina+easylist.txt: 35472) -.audiencefuel.com -# ||audience2media.com^$third-party (easylistchina+easylist.txt: 35471) -.audience2media.com -# ||auctionnudge.com^$third-party (easylistchina+easylist.txt: 35470) -.auctionnudge.com -# ||au2m8.com^$third-party (easylistchina+easylist.txt: 35469) -.au2m8.com -# ||atwola.com^$third-party (easylistchina+easylist.txt: 35468) -.atwola.com -# ||atrinsic.com^$third-party (easylistchina+easylist.txt: 35467) -.atrinsic.com -# ||atomex.net^$third-party (easylistchina+easylist.txt: 35466) -.atomex.net -# ||ato.mx^$third-party (easylistchina+easylist.txt: 35465) -.ato.mx -# ||atmalinks.com^$third-party (easylistchina+easylist.txt: 35464) -.atmalinks.com -# ||atemda.com^$third-party (easylistchina+easylist.txt: 35463) -.atemda.com -# ||atadserver.com^$third-party (easylistchina+easylist.txt: 35462) -.atadserver.com -# ||astree.be^$third-party (easylistchina+easylist.txt: 35461) -.astree.be -# ||asterpix.com^$third-party (easylistchina+easylist.txt: 35460) -.asterpix.com -# ||assoc-amazon.it^$third-party (easylistchina+easylist.txt: 35459) -.assoc-amazon.it -# ||assoc-amazon.fr^$third-party (easylistchina+easylist.txt: 35458) -.assoc-amazon.fr -# ||assoc-amazon.es^$third-party (easylistchina+easylist.txt: 35457) -.assoc-amazon.es -# ||assoc-amazon.de^$third-party (easylistchina+easylist.txt: 35456) -.assoc-amazon.de -# ||assoc-amazon.com^$third-party (easylistchina+easylist.txt: 35455) -.assoc-amazon.com -# ||assoc-amazon.co.uk^$third-party (easylistchina+easylist.txt: 35454) -.assoc-amazon.co.uk -# ||assoc-amazon.ca^$third-party (easylistchina+easylist.txt: 35453) -.assoc-amazon.ca -# ||assetize.com^$third-party (easylistchina+easylist.txt: 35452) -.assetize.com -# ||asrety.com^$third-party (easylistchina+easylist.txt: 35451) -.asrety.com -# ||asooda.com^$third-party (easylistchina+easylist.txt: 35450) -.asooda.com -# ||asklots.com^$third-party (easylistchina+easylist.txt: 35449) -.asklots.com -# ||aseadnet.com^$third-party (easylistchina+easylist.txt: 35448) -.aseadnet.com -# ||asafesite.com^$third-party (easylistchina+easylist.txt: 35447) -.asafesite.com -# ||as5000.com^$third-party (easylistchina+easylist.txt: 35446) -.as5000.com -# ||as-farm.com^$third-party (easylistchina+easylist.txt: 35445) -.as-farm.com -# ||arti-mediagroup.com^$third-party (easylistchina+easylist.txt: 35444) -.arti-mediagroup.com -# ||areasnap.com^$third-party (easylistchina+easylist.txt: 35443) -.areasnap.com -# ||arcadechain.com^$third-party (easylistchina+easylist.txt: 35442) -.arcadechain.com -# ||arcadebe.com^$third-party (easylistchina+easylist.txt: 35441) -.arcadebe.com -# ||arcadebanners.com^$third-party (easylistchina+easylist.txt: 35440) -.arcadebanners.com -# ||arcadebannerexchange.org^$third-party (easylistchina+easylist.txt: 35439) -.arcadebannerexchange.org -# ||arcadebannerexchange.net^$third-party (easylistchina+easylist.txt: 35438) -.arcadebannerexchange.net -# ||arabweb.biz^$third-party (easylistchina+easylist.txt: 35437) -.arabweb.biz -# ||arab4eg.com^$third-party (easylistchina+easylist.txt: 35436) -.arab4eg.com -# ||apxlv.com^$third-party (easylistchina+easylist.txt: 35435) -.apxlv.com -# ||apsmediaagency.com^$third-party (easylistchina+easylist.txt: 35434) -.apsmediaagency.com -# ||april29-disp-download.com^$third-party (easylistchina+easylist.txt: 35433) -.april29-disp-download.com -# ||apptap.com^$third-party (easylistchina+easylist.txt: 35432) -.apptap.com -# ||apportium.com^$third-party (easylistchina+easylist.txt: 35431) -.apportium.com -# ||applebarq.com^$third-party (easylistchina+easylist.txt: 35430) -.applebarq.com -# ||appendad.com^$third-party (easylistchina+easylist.txt: 35429) -.appendad.com -# ||apmebf.com^$third-party (easylistchina+easylist.txt: 35428) -.apmebf.com -# ||apex-ad.com^$third-party (easylistchina+easylist.txt: 35427) -.apex-ad.com -# ||aorpum.com^$third-party (easylistchina+easylist.txt: 35426) -.aorpum.com -# ||aorms.com^$third-party (easylistchina+easylist.txt: 35425) -.aorms.com -# ||aoqneyvmaz.com^$third-party (easylistchina+easylist.txt: 35424) -.aoqneyvmaz.com -# ||anyxp.com^$third-party (easylistchina+easylist.txt: 35423) -.anyxp.com -# ||anymedia.lv^$third-party (easylistchina+easylist.txt: 35422) -.anymedia.lv -# ||anwufkjjja.com^$third-party (easylistchina+easylist.txt: 35421) -.anwufkjjja.com -# ||anrdoezrs.net^$third-party (easylistchina+easylist.txt: 35420) -.anrdoezrs.net -# ||anonymousads.com^$third-party (easylistchina+easylist.txt: 35419) -.anonymousads.com -# ||angege.com^$third-party (easylistchina+easylist.txt: 35418) -.angege.com -# ||anet*.tradedoubler.com^$third-party (easylistchina+easylist.txt: 35417) -.anet*./.*\.tradedoubler\.com[^\w%.-] -.anet*.tradedoubler.com -# ||andomediagroup.com^$third-party (easylistchina+easylist.txt: 35416) -.andomediagroup.com -# ||andomedia.com^$third-party (easylistchina+easylist.txt: 35415) -.andomedia.com -# ||andohs.net^$third-party (easylistchina+easylist.txt: 35414) -.andohs.net -# ||anastasiasaffiliate.com^$third-party (easylistchina+easylist.txt: 35413) -.anastasiasaffiliate.com -# ||ampxchange.com^$third-party (easylistchina+easylist.txt: 35412) -.ampxchange.com -# ||amgdgt.com^$third-party (easylistchina+easylist.txt: 35411) -.amgdgt.com -# ||amertazy.com^$third-party (easylistchina+easylist.txt: 35410) -.amertazy.com -# ||amazonily.com^$third-party (easylistchina+easylist.txt: 35409) -.amazonily.com -# ||amazon-cornerstone.com^$third-party (easylistchina+easylist.txt: 35408) -.amazon-cornerstone.com -# ||amazon-adsystem.com^$third-party (easylistchina+easylist.txt: 35407) -.amazon-adsystem.com -# ||am15.net^$third-party (easylistchina+easylist.txt: 35406) -.am15.net -# ||am11.ru^$third-party (easylistchina+easylist.txt: 35405) -.am11.ru -# ||am10.ru^$third-party (easylistchina+easylist.txt: 35404) -.am10.ru -# ||am-display.com^$third-party (easylistchina+easylist.txt: 35403) -.am-display.com -# ||altitude-arena.com^$third-party (easylistchina+easylist.txt: 35402) -.altitude-arena.com -# ||alternativeadverts.com^$third-party (easylistchina+easylist.txt: 35401) -.alternativeadverts.com -# ||alternads.info^$third-party (easylistchina+easylist.txt: 35400) -.alternads.info -# ||alphagodaddy.com^$third-party (easylistchina+easylist.txt: 35399) -.alphagodaddy.com -# ||alphabirdnetwork.com^$third-party (easylistchina+easylist.txt: 35398) -.alphabirdnetwork.com -# ||alphabird.com^$third-party (easylistchina+easylist.txt: 35397) -.alphabird.com -# ||allyes.com^$third-party (easylistchina+easylist.txt: 35396) -.allyes.com -# ||alloydigital.com^$third-party (easylistchina+easylist.txt: 35395) -.alloydigital.com -# ||allmt.com^$third-party (easylistchina+easylist.txt: 35394) -.allmt.com -# ||alleliteads.com^$third-party (easylistchina+easylist.txt: 35393) -.alleliteads.com -# ||allabc.com^$third-party (easylistchina+easylist.txt: 35392) -.allabc.com -# ||alimama.com^$third-party (easylistchina+easylist.txt: 35391) -.alimama.com -# ||alfynetwork.com^$third-party (easylistchina+easylist.txt: 35390) -.alfynetwork.com -# ||alchemysocial.com^$third-party (easylistchina+easylist.txt: 35389) -.alchemysocial.com -# ||ajansreklam.net^$third-party (easylistchina+easylist.txt: 35388) -.ajansreklam.net -# ||aimatch.com^$third-party (easylistchina+easylist.txt: 35387) -.aimatch.com -# ||aim4media.com^$third-party (easylistchina+easylist.txt: 35386) -.aim4media.com -# ||agvzvwof.com^$third-party (easylistchina+easylist.txt: 35385) -.agvzvwof.com -# ||agomwefq.com^$third-party (easylistchina+easylist.txt: 35384) -.agomwefq.com -# ||agmtrk.com^$third-party (easylistchina+easylist.txt: 35383) -.agmtrk.com -# ||aglocobanners.com^$third-party (easylistchina+easylist.txt: 35382) -.aglocobanners.com -# ||aggregateknowledge.com^$third-party (easylistchina+easylist.txt: 35381) -.aggregateknowledge.com -# ||agentcenters.com^$third-party (easylistchina+easylist.txt: 35380) -.agentcenters.com -# ||agcdn.com^$third-party (easylistchina+easylist.txt: 35379) -.agcdn.com -# ||afy11.net^$third-party (easylistchina+easylist.txt: 35378) -.afy11.net -# ||afterdownloads.com^$third-party (easylistchina+easylist.txt: 35377) -.afterdownloads.com -# ||afterdownload.com^$third-party (easylistchina+easylist.txt: 35376) -.afterdownload.com -# ||africawin.com^$third-party (easylistchina+easylist.txt: 35375) -.africawin.com -# ||aflrm.com^$third-party (easylistchina+easylist.txt: 35374) -.aflrm.com -# ||afftrack.com^$third-party (easylistchina+easylist.txt: 35373) -.afftrack.com -# ||affplanet.com^$third-party (easylistchina+easylist.txt: 35372) -.affplanet.com -# ||affiz.net^$third-party (easylistchina+easylist.txt: 35371) -.affiz.net -# ||affinity.com^$third-party (easylistchina+easylist.txt: 35370) -.affinity.com -# ||affinitad.com^$third-party (easylistchina+easylist.txt: 35369) -.affinitad.com -# ||affimo.de^$third-party (easylistchina+easylist.txt: 35368) -.affimo.de -# ||affiliserve.com^$third-party (easylistchina+easylist.txt: 35367) -.affiliserve.com -# ||affiliproducts.com^$third-party (easylistchina+easylist.txt: 35366) -.affiliproducts.com -# ||affilijack.de^$third-party (easylistchina+easylist.txt: 35365) -.affilijack.de -# ||affiliationzone.com^$third-party (easylistchina+easylist.txt: 35364) -.affiliationzone.com -# ||affiliationworld.com^$third-party (easylistchina+easylist.txt: 35363) -.affiliationworld.com -# ||affiliationcash.com^$third-party (easylistchina+easylist.txt: 35362) -.affiliationcash.com -# ||affiliation-france.com^$third-party (easylistchina+easylist.txt: 35361) -.affiliation-france.com -# ||affiliatesensor.com^$third-party (easylistchina+easylist.txt: 35360) -.affiliatesensor.com -# ||affiliatemembership.com^$third-party (easylistchina+easylist.txt: 35359) -.affiliatemembership.com -# ||affiliatelounge.com^$third-party (easylistchina+easylist.txt: 35358) -.affiliatelounge.com -# ||affiliategroove.com^$third-party (easylistchina+easylist.txt: 35357) -.affiliategroove.com -# ||affiliategateways.co^$third-party (easylistchina+easylist.txt: 35356) -.affiliategateways.co -# ||affiliatefuture.com^$third-party (easylistchina+easylist.txt: 35355) -.affiliatefuture.com -# ||affiliatefuel.com^$third-party (easylistchina+easylist.txt: 35354) -.affiliatefuel.com -# ||affiliateer.com^$third-party (easylistchina+easylist.txt: 35353) -.affiliateer.com -# ||affiliateedge.com^$third-party (easylistchina+easylist.txt: 35352) -.affiliateedge.com -# ||affiliatebannerfarm.com^$third-party (easylistchina+easylist.txt: 35351) -.affiliatebannerfarm.com -# ||affiliate.cx^$third-party (easylistchina+easylist.txt: 35350) -.affiliate.cx -# ||affiliate.com^$third-party (easylistchina+easylist.txt: 35349) -.affiliate.com -# ||affiliate-robot.com^$third-party (easylistchina+easylist.txt: 35348) -.affiliate-robot.com -# ||affiliate-gate.com^$third-party (easylistchina+easylist.txt: 35347) -.affiliate-gate.com -# ||affiliate-b.com^$third-party (easylistchina+easylist.txt: 35346) -.affiliate-b.com -# ||affec.tv^$third-party (easylistchina+easylist.txt: 35345) -.affec.tv -# ||affbuzzads.com^$third-party (easylistchina+easylist.txt: 35344) -.affbuzzads.com -# ||affbot8.com^$third-party (easylistchina+easylist.txt: 35343) -.affbot8.com -# ||affbot7.com^$third-party (easylistchina+easylist.txt: 35342) -.affbot7.com -# ||affbot3.com^$third-party (easylistchina+easylist.txt: 35341) -.affbot3.com -# ||affbot1.com^$third-party (easylistchina+easylist.txt: 35340) -.affbot1.com -# ||aff.biz^$third-party (easylistchina+easylist.txt: 35339) -.aff.biz -# ||aff-online.com^$third-party (easylistchina+easylist.txt: 35338) -.aff-online.com -# ||afdads.com^$third-party (easylistchina+easylist.txt: 35337) -.afdads.com -# ||afcyhf.com^$third-party (easylistchina+easylist.txt: 35336) -.afcyhf.com -# ||adzs.nl^$third-party (easylistchina+easylist.txt: 35335) -.adzs.nl -# ||adzouk.com^$third-party (easylistchina+easylist.txt: 35334) -.adzouk.com -# ||adzonk.com^$third-party (easylistchina+easylist.txt: 35333) -.adzonk.com -# ||adziff.com^$third-party (easylistchina+easylist.txt: 35332) -.adziff.com -# ||adzhub.com^$third-party (easylistchina+easylist.txt: 35331) -.adzhub.com -# ||adzerk.net^$third-party (easylistchina+easylist.txt: 35330) -.adzerk.net -# ||adzbazar.com^$third-party (easylistchina+easylist.txt: 35329) -.adzbazar.com -# ||adz.co.zw^$third-party (easylistchina+easylist.txt: 35328) -.adz.co.zw -# ||adyoz.com^$third-party (easylistchina+easylist.txt: 35327) -.adyoz.com -# ||adyoulike.com^$third-party (easylistchina+easylist.txt: 35326) -.adyoulike.com -# ||adxpower.com^$third-party (easylistchina+easylist.txt: 35325) -.adxpower.com -# ||adxpose.com^$third-party (easylistchina+easylist.txt: 35324) -.adxpose.com -# ||adxion.com^$third-party (easylistchina+easylist.txt: 35323) -.adxion.com -# ||adxcore.com^$third-party (easylistchina+easylist.txt: 35322) -.adxcore.com -# ||adworldmedia.net^$third-party (easylistchina+easylist.txt: 35321) -.adworldmedia.net -# ||adworldmedia.com^$third-party (easylistchina+easylist.txt: 35320) -.adworldmedia.com -# ||adworkmedia.com^$third-party (easylistchina+easylist.txt: 35319) -.adworkmedia.com -# ||adwordsservicapi.com^$third-party (easylistchina+easylist.txt: 35318) -.adwordsservicapi.com -# ||adwires.com^$third-party (easylistchina+easylist.txt: 35317) -.adwires.com -# ||advsnx.net^$third-party (easylistchina+easylist.txt: 35316) -.advsnx.net -# ||advrtice.com^$third-party (easylistchina+easylist.txt: 35315) -.advrtice.com -# ||advpoints.com^$third-party (easylistchina+easylist.txt: 35314) -.advpoints.com -# ||advombat.ru^$third-party (easylistchina+easylist.txt: 35313) -.advombat.ru -# ||advmedialtd.com^$third-party (easylistchina+easylist.txt: 35312) -.advmedialtd.com -# ||advmd.com^$third-party (easylistchina+easylist.txt: 35311) -.advmd.com -# ||adviva.net^$third-party (easylistchina+easylist.txt: 35310) -.adviva.net -# ||advgoogle.com^$third-party (easylistchina+easylist.txt: 35309) -.advgoogle.com -# ||advg.jp^$third-party (easylistchina+easylist.txt: 35308) -.advg.jp -# ||advertxi.com^$third-party (easylistchina+easylist.txt: 35307) -.advertxi.com -# ||advertur.ru^$third-party (easylistchina+easylist.txt: 35306) -.advertur.ru -# ||advertstream.com^$third-party (easylistchina+easylist.txt: 35305) -.advertstream.com -# ||advertstatic.com^$third-party (easylistchina+easylist.txt: 35304) -.advertstatic.com -# ||advertserve.com^$third-party (easylistchina+easylist.txt: 35303) -.advertserve.com -# ||advertrev.com^$third-party (easylistchina+easylist.txt: 35302) -.advertrev.com -# ||advertpay.net^$third-party (easylistchina+easylist.txt: 35301) -.advertpay.net -# ||advertone.ru^$third-party (easylistchina+easylist.txt: 35300) -.advertone.ru -# ||advertmedias.com^$third-party (easylistchina+easylist.txt: 35299) -.advertmedias.com -# ||advertmarketing.com^$third-party (easylistchina+easylist.txt: 35298) -.advertmarketing.com -# ||advertlets.com^$third-party (easylistchina+easylist.txt: 35297) -.advertlets.com -# ||advertlead.net^$third-party (easylistchina+easylist.txt: 35296) -.advertlead.net -# ||advertjunction.com^$third-party (easylistchina+easylist.txt: 35295) -.advertjunction.com -# ||advertisingvalue.info^$third-party (easylistchina+easylist.txt: 35294) -.advertisingvalue.info -# ||advertisingpath.net^$third-party (easylistchina+easylist.txt: 35293) -.advertisingpath.net -# ||advertisingiq.com^$third-party (easylistchina+easylist.txt: 35292) -.advertisingiq.com -# ||advertising365.com^$third-party (easylistchina+easylist.txt: 35291) -.advertising365.com -# ||advertising.com^$third-party (easylistchina+easylist.txt: 35290) -.advertising.com -# ||advertising-department.com^$third-party (easylistchina+easylist.txt: 35289) -.advertising-department.com -# ||advertiseyourgame.com^$third-party (easylistchina+easylist.txt: 35288) -.advertiseyourgame.com -# ||advertisespace.com^$third-party (easylistchina+easylist.txt: 35287) -.advertisespace.com -# ||advertisegame.com^$third-party (easylistchina+easylist.txt: 35286) -.advertisegame.com -# ||advertiseforfree.co.za^$third-party (easylistchina+easylist.txt: 35285) -.advertiseforfree.co.za -# ||advertise.com^$third-party (easylistchina+easylist.txt: 35284) -.advertise.com -# ||adverticum.net^$third-party (easylistchina+easylist.txt: 35283) -.adverticum.net -# ||adverteerdirect.nl^$third-party (easylistchina+easylist.txt: 35282) -.adverteerdirect.nl -# ||advertbox.us^$third-party (easylistchina+easylist.txt: 35281) -.advertbox.us -# ||advertarium.com.ua^$third-party (easylistchina+easylist.txt: 35280) -.advertarium.com.ua -# ||adverserve.net^$third-party (easylistchina+easylist.txt: 35279) -.adverserve.net -# ||adversalservers.com^$third-party (easylistchina+easylist.txt: 35278) -.adversalservers.com -# ||adversaldisplay.com^$third-party (easylistchina+easylist.txt: 35277) -.adversaldisplay.com -# ||adversal.com^$third-party (easylistchina+easylist.txt: 35276) -.adversal.com -# ||adventori.com^$third-party (easylistchina+easylist.txt: 35275) -.adventori.com -# ||advatar.to^$third-party (easylistchina+easylist.txt: 35274) -.advatar.to -# ||advard.com^$third-party (easylistchina+easylist.txt: 35273) -.advard.com -# ||advantageglobalmarketing.com^$third-party (easylistchina+easylist.txt: 35272) -.advantageglobalmarketing.com -# ||advanseads.com^$third-party (easylistchina+easylist.txt: 35271) -.advanseads.com -# ||adv9.net^$third-party (easylistchina+easylist.txt: 35270) -.adv9.net -# ||adv-adserver.com^$third-party (easylistchina+easylist.txt: 35269) -.adv-adserver.com -# ||adurr.com^$third-party (easylistchina+easylist.txt: 35268) -.adurr.com -# ||adulttds.com^$third-party (easylistchina+easylist.txt: 35267) -.adulttds.com -# ||adultimate.net^$third-party (easylistchina+easylist.txt: 35266) -.adultimate.net -# ||adultadworld.com^$third-party (easylistchina+easylist.txt: 35265) -.adultadworld.com -# ||adult-adv.com^$third-party (easylistchina+easylist.txt: 35264) -.adult-adv.com -# ||aduacni.com^$third-party (easylistchina+easylist.txt: 35263) -.aduacni.com -# ||adtwirl.com^$third-party (easylistchina+easylist.txt: 35262) -.adtwirl.com -# ||adtruism.com^$third-party (easylistchina+easylist.txt: 35261) -.adtruism.com -# ||adtrovert.com^$third-party (easylistchina+easylist.txt: 35260) -.adtrovert.com -# ||adtrix.com^$third-party (easylistchina+easylist.txt: 35259) -.adtrix.com -# ||adtrgt.com^$third-party (easylistchina+easylist.txt: 35258) -.adtrgt.com -# ||adtransfer.net^$third-party (easylistchina+easylist.txt: 35257) -.adtransfer.net -# ||adtrace.org^$third-party (easylistchina+easylist.txt: 35256) -.adtrace.org -# ||adtpix.com^$third-party (easylistchina+easylist.txt: 35255) -.adtpix.com -# ||adtotal.pl^$third-party (easylistchina+easylist.txt: 35254) -.adtotal.pl -# ||adtoox.com^$third-party (easylistchina+easylist.txt: 35253) -.adtoox.com -# ||adtomafusion.com^$third-party (easylistchina+easylist.txt: 35252) -.adtomafusion.com -# ||adtoma.com^$third-party (easylistchina+easylist.txt: 35251) -.adtoma.com -# ||adtology3.com^$third-party (easylistchina+easylist.txt: 35250) -.adtology3.com -# ||adtology2.com^$third-party (easylistchina+easylist.txt: 35249) -.adtology2.com -# ||adtology1.com^$third-party (easylistchina+easylist.txt: 35248) -.adtology1.com -# ||adtoll.com^$third-party (easylistchina+easylist.txt: 35247) -.adtoll.com -# ||adtoadd.com^$third-party (easylistchina+easylist.txt: 35246) -.adtoadd.com -# ||adtlgc.com^$third-party (easylistchina+easylist.txt: 35245) -.adtlgc.com -# ||adtgs.com^$third-party (easylistchina+easylist.txt: 35244) -.adtgs.com -# ||adteractive.com^$third-party (easylistchina+easylist.txt: 35243) -.adteractive.com -# ||adtegrity.net^$third-party (easylistchina+easylist.txt: 35242) -.adtegrity.net -# ||adtechus.com^$third-party (easylistchina+easylist.txt: 35241) -.adtechus.com -# ||adtech.de^$third-party (easylistchina+easylist.txt: 35240) -.adtech.de -# ||adtecc.com^$third-party (easylistchina+easylist.txt: 35239) -.adtecc.com -# ||adtdp.com^$third-party (easylistchina+easylist.txt: 35238) -.adtdp.com -# ||adtaily.pl^$third-party (easylistchina+easylist.txt: 35237) -.adtaily.pl -# ||adtaily.eu^$third-party (easylistchina+easylist.txt: 35236) -.adtaily.eu -# ||adtaily.com^$third-party (easylistchina+easylist.txt: 35235) -.adtaily.com -# ||adsymptotic.com^$third-party (easylistchina+easylist.txt: 35234) -.adsymptotic.com -# ||adsxgm.com^$third-party (easylistchina+easylist.txt: 35233) -.adsxgm.com -# ||adswizz.com^$third-party (easylistchina+easylist.txt: 35232) -.adswizz.com -# ||adsvert.com^$third-party (easylistchina+easylist.txt: 35231) -.adsvert.com -# ||adsurve.com^$third-party (easylistchina+easylist.txt: 35230) -.adsurve.com -# ||adsupply.com^$third-party (easylistchina+easylist.txt: 35229) -.adsupply.com -# ||adsupermarket.com^$third-party (easylistchina+easylist.txt: 35228) -.adsupermarket.com -# ||adsummos.net^$third-party (easylistchina+easylist.txt: 35227) -.adsummos.net -# ||adsterra.com^$third-party (easylistchina+easylist.txt: 35226) -.adsterra.com -# ||adstatic.com^$third-party (easylistchina+easylist.txt: 35225) -.adstatic.com -# ||adstargeting.com^$third-party (easylistchina+easylist.txt: 35224) -.adstargeting.com -# ||adssites.net^$third-party (easylistchina+easylist.txt: 35223) -.adssites.net -# ||adssend.net^$third-party (easylistchina+easylist.txt: 35222) -.adssend.net -# ||adsrvr.org^$third-party (easylistchina+easylist.txt: 35221) -.adsrvr.org -# ||adsrvmedia.net^$third-party (easylistchina+easylist.txt: 35220) -.adsrvmedia.net -# ||adsrvmedia.com^$third-party (easylistchina+easylist.txt: 35219) -.adsrvmedia.com -# ||adsrv.us^$third-party (easylistchina+easylist.txt: 35218) -.adsrv.us -# ||adsring.com^$third-party (easylistchina+easylist.txt: 35217) -.adsring.com -# ||adsrevenue.net^$third-party (easylistchina+easylist.txt: 35216) -.adsrevenue.net -# ||adspynet.com^$third-party (easylistchina+easylist.txt: 35215) -.adspynet.com -# ||adspruce.com^$third-party (easylistchina+easylist.txt: 35214) -.adspruce.com -# ||adspring.to^$third-party (easylistchina+easylist.txt: 35213) -.adspring.to -# ||adspirit.de^$third-party (easylistchina+easylist.txt: 35212) -.adspirit.de -# ||adspeed.com^$third-party (easylistchina+easylist.txt: 35211) -.adspeed.com -# ||adspdbl.com^$third-party (easylistchina+easylist.txt: 35210) -.adspdbl.com -# ||adsparc.net^$third-party (easylistchina+easylist.txt: 35209) -.adsparc.net -# ||adspaper.org^$third-party (easylistchina+easylist.txt: 35208) -.adspaper.org -# ||adsovo.com^$third-party (easylistchina+easylist.txt: 35207) -.adsovo.com -# ||adsopx.com^$third-party (easylistchina+easylist.txt: 35206) -.adsopx.com -# ||adsonar.com^$third-party (easylistchina+easylist.txt: 35205) -.adsonar.com -# ||adsniper.ru^$third-party (easylistchina+easylist.txt: 35204) -.adsniper.ru -# ||adsnext.net^$third-party (easylistchina+easylist.txt: 35203) -.adsnext.net -# ||adsnetworkserver.com^$third-party (easylistchina+easylist.txt: 35202) -.adsnetworkserver.com -# ||adsnative.com^$third-party (easylistchina+easylist.txt: 35201) -.adsnative.com -# ||adsmws.cloudapp.net^$third-party (easylistchina+easylist.txt: 35200) -.adsmws.cloudapp.net -# ||adsmoon.com^$third-party (easylistchina+easylist.txt: 35199) -.adsmoon.com -# ||adsmile.biz^$third-party (easylistchina+easylist.txt: 35198) -.adsmile.biz -# ||adsmedia.cc^$third-party (easylistchina+easylist.txt: 35197) -.adsmedia.cc -# ||adsmarket.es^$third-party (easylistchina+easylist.txt: 35196) -.adsmarket.es -# ||adsmarket.com^$third-party (easylistchina+easylist.txt: 35195) -.adsmarket.com -# ||adslot.com^$third-party (easylistchina+easylist.txt: 35194) -.adslot.com -# ||adslingers.com^$third-party (easylistchina+easylist.txt: 35193) -.adslingers.com -# ||adslidango.com^$third-party (easylistchina+easylist.txt: 35192) -.adslidango.com -# ||adskeeper.co.uk^$third-party (easylistchina+easylist.txt: 35191) -.adskeeper.co.uk -# ||adsinimages.com^$third-party (easylistchina+easylist.txt: 35190) -.adsinimages.com -# ||adsimilis.com^$third-party (easylistchina+easylist.txt: 35189) -.adsimilis.com -# ||adsignals.com^$third-party (easylistchina+easylist.txt: 35188) -.adsignals.com -# ||adshuffle.com^$third-party (easylistchina+easylist.txt: 35187) -.adshuffle.com -# ||adshot.de^$third-party (easylistchina+easylist.txt: 35186) -.adshot.de -# ||adshost2.com^$third-party (easylistchina+easylist.txt: 35185) -.adshost2.com -# ||adshost1.com^$third-party (easylistchina+easylist.txt: 35184) -.adshost1.com -# ||adshopping.com^$third-party (easylistchina+easylist.txt: 35183) -.adshopping.com -# ||adshexa.com^$third-party (easylistchina+easylist.txt: 35182) -.adshexa.com -# ||adshack.com^$third-party (easylistchina+easylist.txt: 35181) -.adshack.com -# ||adsfuse.com^$third-party (easylistchina+easylist.txt: 35180) -.adsfuse.com -# ||adsfundi.net^$third-party (easylistchina+easylist.txt: 35179) -.adsfundi.net -# ||adsfundi.com^$third-party (easylistchina+easylist.txt: 35178) -.adsfundi.com -# ||adsforindians.com^$third-party (easylistchina+easylist.txt: 35177) -.adsforindians.com -# ||adsfast.com^$third-party (easylistchina+easylist.txt: 35176) -.adsfast.com -# ||adsfactor.net^$third-party (easylistchina+easylist.txt: 35175) -.adsfactor.net -# ||adsfac.us^$third-party (easylistchina+easylist.txt: 35174) -.adsfac.us -# ||adsfac.net^$third-party (easylistchina+easylist.txt: 35173) -.adsfac.net -# ||adsfac.eu^$third-party (easylistchina+easylist.txt: 35172) -.adsfac.eu -# ||adservr.de^$third-party (easylistchina+easylist.txt: 35171) -.adservr.de -# ||adservpi.com^$third-party (easylistchina+easylist.txt: 35170) -.adservpi.com -# ||adservinginternational.com^$third-party (easylistchina+easylist.txt: 35169) -.adservinginternational.com -# ||adservingfactory.com^$third-party (easylistchina+easylist.txt: 35168) -.adservingfactory.com -# ||adservhere.com^$third-party (easylistchina+easylist.txt: 35167) -.adservhere.com -# ||adserverpub.com^$third-party (easylistchina+easylist.txt: 35166) -.adserverpub.com -# ||adserverplus.com^$third-party (easylistchina+easylist.txt: 35165) -.adserverplus.com -# ||adserver-fx.com^$third-party (easylistchina+easylist.txt: 35164) -.adserver-fx.com -# ||adserve.ph^$third-party (easylistchina+easylist.txt: 35163) -.adserve.ph -# ||adserve.com^$third-party (easylistchina+easylist.txt: 35162) -.adserve.com -# ||adserv8.com^$third-party (easylistchina+easylist.txt: 35161) -.adserv8.com -# ||adsensecamp.com^$third-party (easylistchina+easylist.txt: 35160) -.adsensecamp.com -# ||adsearcher.ru^$third-party (easylistchina+easylist.txt: 35159) -.adsearcher.ru -# ||adsdot.ph^$third-party (easylistchina+easylist.txt: 35158) -.adsdot.ph -# ||adsdk.com^$third-party (easylistchina+easylist.txt: 35157) -.adsdk.com -# ||adsclickingnetwork.com^$third-party (easylistchina+easylist.txt: 35156) -.adsclickingnetwork.com -# ||adscendmedia.com^$third-party (easylistchina+easylist.txt: 35155) -.adscendmedia.com -# ||adscampaign.net^$third-party (easylistchina+easylist.txt: 35154) -.adscampaign.net -# ||adscale.de^$third-party (easylistchina+easylist.txt: 35153) -.adscale.de -# ||adsbrook.com^$third-party (easylistchina+easylist.txt: 35152) -.adsbrook.com -# ||adsbookie.com^$third-party (easylistchina+easylist.txt: 35151) -.adsbookie.com -# ||adsame.com^$third-party (easylistchina+easylist.txt: 35150) -.adsame.com -# ||adsalvo.com^$third-party (easylistchina+easylist.txt: 35149) -.adsalvo.com -# ||adsafeprotected.com^$third-party (easylistchina+easylist.txt: 35148) -.adsafeprotected.com -# ||ads4cheap.com^$third-party (easylistchina+easylist.txt: 35147) -.ads4cheap.com -# ||ads2srv.com^$third-party (easylistchina+easylist.txt: 35146) -.ads2srv.com -# ||ads2ads.net^$third-party (easylistchina+easylist.txt: 35145) -.ads2ads.net -# ||ads01.com^$third-party (easylistchina+easylist.txt: 35144) -.ads01.com -# ||ads.intergi.com^$third-party (easylistchina+easylist.txt: 35143) -.ads.intergi.com -# ||ads-stats.com^$third-party (easylistchina+easylist.txt: 35142) -.ads-stats.com -# ||ads-elsevier.net^$third-party (easylistchina+easylist.txt: 35141) -.ads-elsevier.net -# ||ads-4u.com^$third-party (easylistchina+easylist.txt: 35140) -.ads-4u.com -# ||adrocket.com^$third-party (easylistchina+easylist.txt: 35139) -.adrocket.com -# ||adrise.de^$third-party (easylistchina+easylist.txt: 35138) -.adrise.de -# ||adrich.cash^$third-party (easylistchina+easylist.txt: 35137) -.adrich.cash -# ||adrevolver.com^$third-party (easylistchina+easylist.txt: 35136) -.adrevolver.com -# ||adresellers.com^$third-party (easylistchina+easylist.txt: 35135) -.adresellers.com -# ||adreadytractions.com^$third-party (easylistchina+easylist.txt: 35134) -.adreadytractions.com -# ||adready.com^$third-party (easylistchina+easylist.txt: 35133) -.adready.com -# ||adreactor.com^$third-party (easylistchina+easylist.txt: 35132) -.adreactor.com -# ||adrcdn.com^$third-party (easylistchina+easylist.txt: 35131) -.adrcdn.com -# ||adquest3d.com^$third-party (easylistchina+easylist.txt: 35130) -.adquest3d.com -# ||adquantix.com^$third-party (easylistchina+easylist.txt: 35129) -.adquantix.com -# ||adpushup.com^$third-party (easylistchina+easylist.txt: 35128) -.adpushup.com -# ||adprs.net^$third-party (easylistchina+easylist.txt: 35127) -.adprs.net -# ||adprovi.de^$third-party (easylistchina+easylist.txt: 35126) -.adprovi.de -# ||adprotected.com^$third-party (easylistchina+easylist.txt: 35125) -.adprotected.com -# ||adproper.info^$third-party (easylistchina+easylist.txt: 35124) -.adproper.info -# ||adprofit2share.com^$third-party (easylistchina+easylist.txt: 35123) -.adprofit2share.com -# ||adpremo.com^$third-party (easylistchina+easylist.txt: 35122) -.adpremo.com -# ||adpredictive.com^$third-party (easylistchina+easylist.txt: 35121) -.adpredictive.com -# ||adppv.com^$third-party (easylistchina+easylist.txt: 35120) -.adppv.com -# ||adpoper.com^$third-party (easylistchina+easylist.txt: 35119) -.adpoper.com -# ||adplxmd.com^$third-party (easylistchina+easylist.txt: 35118) -.adplxmd.com -# ||adplugg.com^$third-party (easylistchina+easylist.txt: 35117) -.adplugg.com -# ||adplex.media^$third-party (easylistchina+easylist.txt: 35116) -.adplex.media -# ||adplans.info^$third-party (easylistchina+easylist.txt: 35115) -.adplans.info -# ||adpionier.de^$third-party (easylistchina+easylist.txt: 35114) -.adpionier.de -# ||adpinion.com^$third-party (easylistchina+easylist.txt: 35113) -.adpinion.com -# ||adphreak.com^$third-party (easylistchina+easylist.txt: 35112) -.adphreak.com -# ||adperium.com^$third-party (easylistchina+easylist.txt: 35111) -.adperium.com -# ||adperfect.com^$third-party (easylistchina+easylist.txt: 35110) -.adperfect.com -# ||adpay.com^$third-party (easylistchina+easylist.txt: 35109) -.adpay.com -# ||adpath.mobi^$third-party (easylistchina+easylist.txt: 35108) -.adpath.mobi -# ||adparlor.com^$third-party (easylistchina+easylist.txt: 35107) -.adparlor.com -# ||adpacks.com^$third-party (easylistchina+easylist.txt: 35106) -.adpacks.com -# ||adowner.net^$third-party (easylistchina+easylist.txt: 35105) -.adowner.net -# ||adovida.com^$third-party (easylistchina+easylist.txt: 35104) -.adovida.com -# ||adotube.com^$third-party (easylistchina+easylist.txt: 35103) -.adotube.com -# ||adotomy.com^$third-party (easylistchina+easylist.txt: 35102) -.adotomy.com -# ||adotic.com^$third-party (easylistchina+easylist.txt: 35101) -.adotic.com -# ||adorika.net^$third-party (easylistchina+easylist.txt: 35100) -.adorika.net -# ||adorika.com^$third-party (easylistchina+easylist.txt: 35099) -.adorika.com -# ||adoptim.com^$third-party (easylistchina+easylist.txt: 35098) -.adoptim.com -# ||adoperator.com^$third-party (easylistchina+easylist.txt: 35097) -.adoperator.com -# ||adonweb.ru^$third-party (easylistchina+easylist.txt: 35096) -.adonweb.ru -# ||adonnews.com^$third-party (easylistchina+easylist.txt: 35095) -.adonnews.com -# ||adonly.com^$third-party (easylistchina+easylist.txt: 35094) -.adonly.com -# ||adonion.com^$third-party (easylistchina+easylist.txt: 35093) -.adonion.com -# ||adohana.com^$third-party (easylistchina+easylist.txt: 35092) -.adohana.com -# ||adocean.pl^$third-party (easylistchina+easylist.txt: 35091) -.adocean.pl -# ||adnxs1.com^$third-party (easylistchina+easylist.txt: 35090) -.adnxs1.com -# ||adnxs.net^$third-party (easylistchina+easylist.txt: 35089) -.adnxs.net -# ||adnxs.com^$third-party (easylistchina+easylist.txt: 35088) -.adnxs.com -# ||adnow.com^$third-party (easylistchina+easylist.txt: 35087) -.adnow.com -# ||adnoble.com^$third-party (easylistchina+easylist.txt: 35086) -.adnoble.com -# ||adnmore.co.kr^$third-party (easylistchina+easylist.txt: 35085) -.adnmore.co.kr -# ||adnium.com^$third-party (easylistchina+easylist.txt: 35084) -.adnium.com -# ||adnimation.com^$third-party (easylistchina+easylist.txt: 35083) -.adnimation.com -# ||adngin.com^$third-party (easylistchina+easylist.txt: 35082) -.adngin.com -# ||adnext.fr^$third-party (easylistchina+easylist.txt: 35081) -.adnext.fr -# ||adnetworkperformance.com^$third-party (easylistchina+easylist.txt: 35080) -.adnetworkperformance.com -# ||adnetworkme.com^$third-party (easylistchina+easylist.txt: 35079) -.adnetworkme.com -# ||adnet.vn^$third-party (easylistchina+easylist.txt: 35078) -.adnet.vn -# ||adnet.ru^$third-party (easylistchina+easylist.txt: 35077) -.adnet.ru -# ||adnet.lt^$third-party (easylistchina+easylist.txt: 35076) -.adnet.lt -# ||adnet.de^$third-party (easylistchina+easylist.txt: 35075) -.adnet.de -# ||adnet.com^$third-party (easylistchina+easylist.txt: 35074) -.adnet.com -# ||adnet.biz^$third-party (easylistchina+easylist.txt: 35073) -.adnet.biz -# ||adnet-media.net^$third-party (easylistchina+easylist.txt: 35072) -.adnet-media.net -# ||adnectar.com^$third-party (easylistchina+easylist.txt: 35071) -.adnectar.com -# ||adne.tv^$third-party (easylistchina+easylist.txt: 35070) -.adne.tv -# ||admzn.com^$third-party (easylistchina+easylist.txt: 35069) -.admzn.com -# ||admulti.com^$third-party (easylistchina+easylist.txt: 35068) -.admulti.com -# ||admtpmp127.com^$third-party (easylistchina+easylist.txt: 35067) -.admtpmp127.com -# ||admpads.com^$third-party (easylistchina+easylist.txt: 35066) -.admpads.com -# ||admngronline.com^$third-party (easylistchina+easylist.txt: 35065) -.admngronline.com -# ||admixer.net^$third-party (easylistchina+easylist.txt: 35064) -.admixer.net -# ||admitad.com^$third-party (easylistchina+easylist.txt: 35063) -.admitad.com -# ||admission.net^$third-party (easylistchina+easylist.txt: 35062) -.admission.net -# ||admeta.com^$third-party (easylistchina+easylist.txt: 35061) -.admeta.com -# ||admeld.com^$third-party (easylistchina+easylist.txt: 35060) -.admeld.com -# ||admedo.com^$third-party (easylistchina+easylist.txt: 35059) -.admedo.com -# ||admedias.net^$third-party (easylistchina+easylist.txt: 35058) -.admedias.net -# ||admedia.com^$third-party (easylistchina+easylist.txt: 35057) -.admedia.com -# ||admaya.in^$third-party (easylistchina+easylist.txt: 35056) -.admaya.in -# ||admaxim.com^$third-party (easylistchina+easylist.txt: 35055) -.admaxim.com -# ||admarketplace.net^$third-party (easylistchina+easylist.txt: 35054) -.admarketplace.net -# ||admanmedia.com^$third-party (easylistchina+easylist.txt: 35053) -.admanmedia.com -# ||admanage.com^$third-party (easylistchina+easylist.txt: 35052) -.admanage.com -# ||adman.gr^$third-party (easylistchina+easylist.txt: 35051) -.adman.gr -# ||admamba.com^$third-party (easylistchina+easylist.txt: 35050) -.admamba.com -# ||admailtiser.com^$third-party (easylistchina+easylist.txt: 35049) -.admailtiser.com -# ||admagnet.net^$third-party (easylistchina+easylist.txt: 35048) -.admagnet.net -# ||adm.fwmrm.net/p/mtvn_live/$object-subrequest,third-party (easylistchina+easylist.txt: 35047) -.adm.fwmrm.net/p/mtvn_live/ -# ||adlux.com^$third-party (easylistchina+easylist.txt: 35044) -.adlux.com -# ||adlure.biz^$third-party (easylistchina+easylist.txt: 35043) -.adlure.biz -# ||adlpartner.com^$third-party (easylistchina+easylist.txt: 35042) -.adlpartner.com -# ||adlooxtracking.com^$third-party (easylistchina+easylist.txt: 35041) -.adlooxtracking.com -# ||adloaded.com^$third-party (easylistchina+easylist.txt: 35040) -.adloaded.com -# ||adlisher.com^$third-party (easylistchina+easylist.txt: 35039) -.adlisher.com -# ||adlinx.info^$third-party (easylistchina+easylist.txt: 35038) -.adlinx.info -# ||adlink.net^$third-party (easylistchina+easylist.txt: 35037) -.adlink.net -# ||adlegend.com^$third-party (easylistchina+easylist.txt: 35036) -.adlegend.com -# ||adlayer.net^$third-party (easylistchina+easylist.txt: 35035) -.adlayer.net -# ||adkonekt.com^$third-party (easylistchina+easylist.txt: 35034) -.adkonekt.com -# ||adknowledge.com^$third-party (easylistchina+easylist.txt: 35033) -.adknowledge.com -# ||adklip.com^$third-party (easylistchina+easylist.txt: 35032) -.adklip.com -# ||adkick.net^$third-party (easylistchina+easylist.txt: 35031) -.adkick.net -# ||adkengage.com^$third-party (easylistchina+easylist.txt: 35030) -.adkengage.com -# ||adk2x.com^$third-party (easylistchina+easylist.txt: 35029) -.adk2x.com -# ||adk2.com^$third-party (easylistchina+easylist.txt: 35028) -.adk2.com -# ||adk2.co^$third-party (easylistchina+easylist.txt: 35027) -.adk2.co -# ||adjungle.com^$third-party (easylistchina+easylist.txt: 35026) -.adjungle.com -# ||adjuggler.net^$third-party (easylistchina+easylist.txt: 35025) -.adjuggler.net -# ||adjuggler.com^$third-party (easylistchina+easylist.txt: 35024) -.adjuggler.com -# ||adjug.com^$third-party (easylistchina+easylist.txt: 35023) -.adjug.com -# ||adjector.com^$third-party (easylistchina+easylist.txt: 35022) -.adjector.com -# ||adjal.com^$third-party (easylistchina+easylist.txt: 35021) -.adjal.com -# ||adition.com^$third-party (easylistchina+easylist.txt: 35020) -.adition.com -# ||adit-media.com^$third-party (easylistchina+easylist.txt: 35019) -.adit-media.com -# ||adisn.com^$third-party (easylistchina+easylist.txt: 35018) -.adisn.com -# ||adisfy.com^$third-party (easylistchina+easylist.txt: 35017) -.adisfy.com -# ||adireland.com^$third-party (easylistchina+easylist.txt: 35016) -.adireland.com -# ||adiqglobal.com^$third-party (easylistchina+easylist.txt: 35015) -.adiqglobal.com -# ||adip.ly^$third-party (easylistchina+easylist.txt: 35014) -.adip.ly -# ||adinterax.com^$third-party (easylistchina+easylist.txt: 35013) -.adinterax.com -# ||adintend.com^$third-party (easylistchina+easylist.txt: 35012) -.adintend.com -# ||adinfinity.com.au^$third-party (easylistchina+easylist.txt: 35011) -.adinfinity.com.au -# ||adindigo.com^$third-party (easylistchina+easylist.txt: 35010) -.adindigo.com -# ||adincon.com^$third-party (easylistchina+easylist.txt: 35009) -.adincon.com -# ||adinch.com^$third-party (easylistchina+easylist.txt: 35008) -.adinch.com -# ||adimpression.net^$third-party (easylistchina+easylist.txt: 35007) -.adimpression.net -# ||adimperia.com^$third-party (easylistchina+easylist.txt: 35006) -.adimperia.com -# ||adimpact.com^$third-party (easylistchina+easylist.txt: 35005) -.adimpact.com -# ||adimise.com^$third-party (easylistchina+easylist.txt: 35004) -.adimise.com -# ||adikteev.com^$third-party (easylistchina+easylist.txt: 35003) -.adikteev.com -# ||adigniter.org^$third-party (easylistchina+easylist.txt: 35002) -.adigniter.org -# ||adicate.com^$third-party (easylistchina+easylist.txt: 35001) -.adicate.com -# ||adhub.co.nz^$third-party (easylistchina+easylist.txt: 35000) -.adhub.co.nz -# ||adhostingsolutions.com^$third-party (easylistchina+easylist.txt: 34999) -.adhostingsolutions.com -# ||adhitzads.com^$third-party (easylistchina+easylist.txt: 34998) -.adhitzads.com -# ||adhigh.net^$third-party (easylistchina+easylist.txt: 34997) -.adhigh.net -# ||adhese.net^$third-party (easylistchina+easylist.txt: 34996) -.adhese.net -# ||adhese.com^$third-party (easylistchina+easylist.txt: 34995) -.adhese.com -# ||adhese.be^$third-party (easylistchina+easylist.txt: 34994) -.adhese.be -# ||adgrx.com^$third-party (easylistchina+easylist.txt: 34993) -.adgrx.com -# ||adgroups.com^$third-party (easylistchina+easylist.txt: 34992) -.adgroups.com -# ||adgoto.com^$third-party (easylistchina+easylist.txt: 34991) -.adgoto.com -# ||adgorithms.com^$third-party (easylistchina+easylist.txt: 34990) -.adgorithms.com -# ||adglare.net^$third-party (easylistchina+easylist.txt: 34989) -.adglare.net -# ||adglamour.net^$third-party (easylistchina+easylist.txt: 34988) -.adglamour.net -# ||adgitize.com^$third-party (easylistchina+easylist.txt: 34987) -.adgitize.com -# ||adgine.net^$third-party (easylistchina+easylist.txt: 34986) -.adgine.net -# ||adgila.com^$third-party (easylistchina+easylist.txt: 34985) -.adgila.com -# ||adgent007.com^$third-party (easylistchina+easylist.txt: 34984) -.adgent007.com -# ||adgebra.co.in^$third-party (easylistchina+easylist.txt: 34983) -.adgebra.co.in -# ||adgear.com^$third-party (easylistchina+easylist.txt: 34982) -.adgear.com -# ||adgatemedia.com^$third-party (easylistchina+easylist.txt: 34981) -.adgatemedia.com -# ||adgardener.com^$third-party (easylistchina+easylist.txt: 34980) -.adgardener.com -# ||adgalax.com^$third-party (easylistchina+easylist.txt: 34979) -.adgalax.com -# ||adfusion.com^$third-party (easylistchina+easylist.txt: 34978) -.adfusion.com -# ||adfunkyserver.com^$third-party (easylistchina+easylist.txt: 34977) -.adfunkyserver.com -# ||adfrontiers.com^$third-party (easylistchina+easylist.txt: 34976) -.adfrontiers.com -# ||adfrog.info^$third-party (easylistchina+easylist.txt: 34975) -.adfrog.info -# ||adfrika.com^$third-party (easylistchina+easylist.txt: 34974) -.adfrika.com -# ||adframesrc.com^$third-party (easylistchina+easylist.txt: 34973) -.adframesrc.com -# ||adform.net^$third-party (easylistchina+easylist.txt: 34972) -.adform.net -# ||adforgeinc.com^$third-party (easylistchina+easylist.txt: 34971) -.adforgeinc.com -# ||adforgames.com^$third-party (easylistchina+easylist.txt: 34970) -.adforgames.com -# ||adfootprints.com^$third-party (easylistchina+easylist.txt: 34969) -.adfootprints.com -# ||adfeedstrk.com^$third-party (easylistchina+easylist.txt: 34968) -.adfeedstrk.com -# ||adfactory88.com^$third-party (easylistchina+easylist.txt: 34967) -.adfactory88.com -# ||adf01.net^$third-party (easylistchina+easylist.txt: 34966) -.adf01.net -# ||adextent.com^$third-party (easylistchina+easylist.txt: 34965) -.adextent.com -# ||adexprts.com^$third-party (easylistchina+easylist.txt: 34964) -.adexprts.com -# ||adexprt.com^$third-party (easylistchina+easylist.txt: 34963) -.adexprt.com -# ||adexcite.com^$third-party (easylistchina+easylist.txt: 34962) -.adexcite.com -# ||adespresso.com^$third-party (easylistchina+easylist.txt: 34961) -.adespresso.com -# ||adengage.com^$third-party (easylistchina+easylist.txt: 34960) -.adengage.com -# ||ademails.com^$third-party (easylistchina+easylist.txt: 34959) -.ademails.com -# ||adelement.com^$third-party (easylistchina+easylist.txt: 34958) -.adelement.com -# ||adedy.com^$third-party (easylistchina+easylist.txt: 34957) -.adedy.com -# ||adecn.com^$third-party (easylistchina+easylist.txt: 34956) -.adecn.com -# ||addynamo.net^$third-party (easylistchina+easylist.txt: 34955) -.addynamo.net -# ||addynamix.com^$third-party (easylistchina+easylist.txt: 34954) -.addynamix.com -# ||addynamics.eu^$third-party (easylistchina+easylist.txt: 34953) -.addynamics.eu -# ||addroid.com^$third-party (easylistchina+easylist.txt: 34952) -.addroid.com -# ||addoer.com^$third-party (easylistchina+easylist.txt: 34951) -.addoer.com -# ||addiply.com^$third-party (easylistchina+easylist.txt: 34950) -.addiply.com -# ||addelive.com^$third-party (easylistchina+easylist.txt: 34949) -.addelive.com -# ||addaim.com^$third-party (easylistchina+easylist.txt: 34948) -.addaim.com -# ||adcru.com^$third-party (easylistchina+easylist.txt: 34947) -.adcru.com -# ||adcron.com^$third-party (easylistchina+easylist.txt: 34946) -.adcron.com -# ||adcount.in^$third-party (easylistchina+easylist.txt: 34945) -.adcount.in -# ||adconscious.com^$third-party (easylistchina+easylist.txt: 34944) -.adconscious.com -# ||adcolo.com^$third-party (easylistchina+easylist.txt: 34943) -.adcolo.com -# ||adcloud.net^$third-party (easylistchina+easylist.txt: 34942) -.adcloud.net -# ||adclickmedia.com^$third-party (easylistchina+easylist.txt: 34941) -.adclickmedia.com -# ||adclickafrica.com^$third-party (easylistchina+easylist.txt: 34940) -.adclickafrica.com -# ||adclick.pk^$third-party (easylistchina+easylist.txt: 34939) -.adclick.pk -# ||adclick.lv^$third-party (easylistchina+easylist.txt: 34938) -.adclick.lv -# ||adchoice.co.za^$third-party (easylistchina+easylist.txt: 34937) -.adchoice.co.za -# ||adchemical.com^$third-party (easylistchina+easylist.txt: 34936) -.adchemical.com -# ||adchap.com^$third-party (easylistchina+easylist.txt: 34935) -.adchap.com -# ||adcfrthyo.tk^$third-party (easylistchina+easylist.txt: 34934) -.adcfrthyo.tk -# ||adcentriconline.com^$third-party (easylistchina+easylist.txt: 34933) -.adcentriconline.com -# ||adcdnx.com^$third-party (easylistchina+easylist.txt: 34932) -.adcdnx.com -# ||adcde.com^$third-party (easylistchina+easylist.txt: 34931) -.adcde.com -# ||adcastplus.net^$third-party (easylistchina+easylist.txt: 34930) -.adcastplus.net -# ||adcash.com^$third-party (easylistchina+easylist.txt: 34929) -.adcash.com -# ||adcade.com^$third-party (easylistchina+easylist.txt: 34928) -.adcade.com -# ||adbuyer.com^$third-party (easylistchina+easylist.txt: 34927) -.adbuyer.com -# ||adbutler.com^$third-party (easylistchina+easylist.txt: 34926) -.adbutler.com -# ||adbureau.net^$third-party (easylistchina+easylist.txt: 34925) -.adbureau.net -# ||adbull.com^$third-party (easylistchina+easylist.txt: 34924) -.adbull.com -# ||adbrook.com^$third-party (easylistchina+easylist.txt: 34923) -.adbrook.com -# ||adbroo.com^$third-party (easylistchina+easylist.txt: 34922) -.adbroo.com -# ||adbrite.com^$third-party (easylistchina+easylist.txt: 34921) -.adbrite.com -# ||adbrau.com^$third-party (easylistchina+easylist.txt: 34920) -.adbrau.com -# ||adbooth.net^$third-party (easylistchina+easylist.txt: 34919) -.adbooth.net -# ||adboost.com^$third-party (easylistchina+easylist.txt: 34918) -.adboost.com -# ||adblade.com^$third-party (easylistchina+easylist.txt: 34917) -.adblade.com -# ||adbasket.net^$third-party (easylistchina+easylist.txt: 34916) -.adbasket.net -# ||adbard.net^$third-party (easylistchina+easylist.txt: 34915) -.adbard.net -# ||adapd.com^$third-party (easylistchina+easylist.txt: 34914) -.adapd.com -# ||adap.tv^$~object-subrequest,third-party (easylistchina+easylist.txt: 34913) -.adap.tv -# ||adaos-ads.net^$third-party (easylistchina+easylist.txt: 34912) -.adaos-ads.net -# ||adagora.com^$third-party (easylistchina+easylist.txt: 34911) -.adagora.com -# ||adadvisor.net^$third-party (easylistchina+easylist.txt: 34910) -.adadvisor.net -# ||adaction.se^$third-party (easylistchina+easylist.txt: 34909) -.adaction.se -# ||adacado.com^$third-party (easylistchina+easylist.txt: 34908) -.adacado.com -# ||ad6media.fr^$third-party (easylistchina+easylist.txt: 34907) -.ad6media.fr -# ||ad4game.com^$third-party (easylistchina+easylist.txt: 34906) -.ad4game.com -# ||ad2up.com^$third-party (easylistchina+easylist.txt: 34905) -.ad2up.com -# ||ad2adnetwork.biz^$third-party (easylistchina+easylist.txt: 34903) -.ad2adnetwork.biz -# ||ad2387.com^$third-party (easylistchina+easylist.txt: 34902) -.ad2387.com -# ||ad20.net^$third-party (easylistchina+easylist.txt: 34901) -.ad20.net -# ||ad134m.com^$third-party (easylistchina+easylist.txt: 34900) -.ad134m.com -# ||ad132m.com^$third-party (easylistchina+easylist.txt: 34899) -.ad132m.com -# ||ad131m.com^$third-party (easylistchina+easylist.txt: 34898) -.ad131m.com -# ||ad129m.com^$third-party (easylistchina+easylist.txt: 34897) -.ad129m.com -# ||ad128m.com^$third-party (easylistchina+easylist.txt: 34896) -.ad128m.com -# ||ad127m.com^$third-party (easylistchina+easylist.txt: 34895) -.ad127m.com -# ||ad125m.com^$third-party (easylistchina+easylist.txt: 34894) -.ad125m.com -# ||ad123m.com^$third-party (easylistchina+easylist.txt: 34893) -.ad123m.com -# ||ad122m.com^$third-party (easylistchina+easylist.txt: 34892) -.ad122m.com -# ||ad121m.com^$third-party (easylistchina+easylist.txt: 34891) -.ad121m.com -# ||ad120m.com^$third-party (easylistchina+easylist.txt: 34890) -.ad120m.com -# ||ad.yieldpartners.com^$third-party (easylistchina+easylist.txt: 34889) -.ad.yieldpartners.com -# ||ad.pxlad.io^$third-party (easylistchina+easylist.txt: 34888) -.ad.pxlad.io -# ||ad.mo.doubleclick.net/dartproxy/$third-party (easylistchina+easylist.txt: 34887) -.ad.mo.doubleclick.net/dartproxy/ -# ||ad.linksynergy.com^$third-party (easylistchina+easylist.txt: 34886) -.ad.linksynergy.com -# ||ad.doubleclick.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 34885) -.ad.doubleclick.net -# ||ad.atdmt.com/i/a.js$third-party (easylistchina+easylist.txt: 34884) -.ad.atdmt.com/i/a\.js -# ||ad.atdmt.com/i/a.html$third-party (easylistchina+easylist.txt: 34883) -.ad.atdmt.com/i/a\.html -# ||ad-vice.biz^$third-party (easylistchina+easylist.txt: 34882) -.ad-vice.biz -# ||ad-stir.com^$third-party (easylistchina+easylist.txt: 34881) -.ad-stir.com -# ||ad-srv.net^$third-party (easylistchina+easylist.txt: 34880) -.ad-srv.net -# ||ad-sponsor.com^$third-party (easylistchina+easylist.txt: 34879) -.ad-sponsor.com -# ||ad-serverparc.nl^$third-party (easylistchina+easylist.txt: 34878) -.ad-serverparc.nl -# ||ad-server.co.za^$third-party (easylistchina+easylist.txt: 34877) -.ad-server.co.za -# ||ad-media.org^$third-party (easylistchina+easylist.txt: 34876) -.ad-media.org -# ||ad-maven.com^$third-party (easylistchina+easylist.txt: 34875) -.ad-maven.com -# ||ad-m.asia^$third-party (easylistchina+easylist.txt: 34874) -.ad-m.asia -# ||ad-indicator.com^$third-party (easylistchina+easylist.txt: 34873) -.ad-indicator.com -# ||ad-gbn.com^$third-party (easylistchina+easylist.txt: 34872) -.ad-gbn.com -# ||ad-flow.com^$third-party (easylistchina+easylist.txt: 34871) -.ad-flow.com -# ||ad-delivery.net^$third-party (easylistchina+easylist.txt: 34870) -.ad-delivery.net -# ||ad-clicks.com^$third-party (easylistchina+easylist.txt: 34869) -.ad-clicks.com -# ||ad-bay.com^$third-party (easylistchina+easylist.txt: 34868) -.ad-bay.com -# ||ad-balancer.net^$third-party (easylistchina+easylist.txt: 34867) -.ad-balancer.net -# ||ad-back.net^$third-party (easylistchina+easylist.txt: 34866) -.ad-back.net -# ||activedancer.com^$third-party (easylistchina+easylist.txt: 34865) -.activedancer.com -# ||actiondesk.com^$third-party (easylistchina+easylist.txt: 34864) -.actiondesk.com -# ||acronym.com^$third-party (easylistchina+easylist.txt: 34863) -.acronym.com -# ||acf-webmaster.net^$third-party (easylistchina+easylist.txt: 34862) -.acf-webmaster.net -# ||accuserveadsystem.com^$third-party (easylistchina+easylist.txt: 34861) -.accuserveadsystem.com -# ||accounts.pkr.com^$third-party (easylistchina+easylist.txt: 34860) -.accounts.pkr.com -# ||accmgr.com^$third-party (easylistchina+easylist.txt: 34859) -.accmgr.com -# ||access-mc.com^$third-party (easylistchina+easylist.txt: 34858) -.access-mc.com -# ||accelacomm.com^$third-party (easylistchina+easylist.txt: 34857) -.accelacomm.com -# ||abtracker.us^$third-party (easylistchina+easylist.txt: 34856) -.abtracker.us -# ||aboutads.quantcast.com^$third-party (easylistchina+easylist.txt: 34855) -.aboutads.quantcast.com -# ||abnad.net^$third-party (easylistchina+easylist.txt: 34854) -.abnad.net -# ||abletomeet.com^$third-party (easylistchina+easylist.txt: 34853) -.abletomeet.com -# ||aaa.dv0.info^$third-party (easylistchina+easylist.txt: 34852) -.aaa.dv0.info -# ||aaa.at4.info^$third-party (easylistchina+easylist.txt: 34851) -.aaa.at4.info -# ||aa.voice2page.com^$third-party (easylistchina+easylist.txt: 34850) -.aa.voice2page.com -# ||a5pub.com^$third-party (easylistchina+easylist.txt: 34849) -.a5pub.com -# ||a4dtrk.com^$third-party (easylistchina+easylist.txt: 34848) -.a4dtrk.com -# ||a433.com^$third-party (easylistchina+easylist.txt: 34847) -.a433.com -# ||a3pub.com^$third-party (easylistchina+easylist.txt: 34846) -.a3pub.com -# ||a2pub.com^$third-party (easylistchina+easylist.txt: 34845) -.a2pub.com -# ||a2dfp.net^$third-party (easylistchina+easylist.txt: 34844) -.a2dfp.net -# ||a.raasnet.com^$third-party (easylistchina+easylist.txt: 34843) -.a.raasnet.com -# ||a.ligatus.com^$third-party (easylistchina+easylist.txt: 34842) -.a.ligatus.com -# ||a.adroll.com^$third-party (easylistchina+easylist.txt: 34841) -.a.adroll.com -# ||a-static.com^$third-party (easylistchina+easylist.txt: 34840) -.a-static.com -# ||a-ads.com^$third-party (easylistchina+easylist.txt: 34839) -.a-ads.com -# ||9ts3tpia.com^$third-party (easylistchina+easylist.txt: 34838) -.9ts3tpia.com -# ||9d63c80da.pw^$third-party (easylistchina+easylist.txt: 34837) -.9d63c80da.pw -# ||97d73lsi.com^$third-party (easylistchina+easylist.txt: 34836) -.97d73lsi.com -# ||8yxupue8.com^$third-party (easylistchina+easylist.txt: 34835) -.8yxupue8.com -# ||888promos.com^$third-party (easylistchina+easylist.txt: 34834) -.888promos.com -# ||888medianetwork.com^$third-party (easylistchina+easylist.txt: 34833) -.888medianetwork.com -# ||888media.net^$third-party (easylistchina+easylist.txt: 34832) -.888media.net -# ||82d914.se^$third-party (easylistchina+easylist.txt: 34830) -.82d914.se -# ||7u8a8i88.com^$third-party (easylistchina+easylist.txt: 34829) -.7u8a8i88.com -# ||7search.com^$third-party (easylistchina+easylist.txt: 34828) -.7search.com -# ||7pud.com^$third-party (easylistchina+easylist.txt: 34827) -.7pud.com -# ||7insight.com^$third-party (easylistchina+easylist.txt: 34826) -.7insight.com -# ||78.140.131.214^ (easylistchina+easylist.txt: 34825) -.78.140.131.214 -# ||78.138.126.253^$third-party (easylistchina+easylist.txt: 34824) -.78.138.126.253 -# ||778669.com^$third-party (easylistchina+easylist.txt: 34823) -.778669.com -# ||777seo.com^$third-party (easylistchina+easylist.txt: 34822) -.777seo.com -# ||74.117.182.77^ (easylistchina+easylist.txt: 34821) -.74.117.182.77 -# ||64.20.60.123^$third-party (easylistchina+easylist.txt: 34820) -.64.20.60.123 -# ||63.225.61.4^$third-party (easylistchina+easylist.txt: 34819) -.63.225.61.4 -# ||600z.com^$third-party (easylistchina+easylist.txt: 34817) -.600z.com -# ||5gl1x9qc.com^$third-party (easylistchina+easylist.txt: 34816) -.5gl1x9qc.com -# ||5clickcashsoftware.com^$third-party (easylistchina+easylist.txt: 34815) -.5clickcashsoftware.com -# ||5advertise.com^$third-party (easylistchina+easylist.txt: 34814) -.5advertise.com -# ||5362367e.info^$third-party (easylistchina+easylist.txt: 34813) -.5362367e.info -# ||50.7.243.123^$third-party (easylistchina+easylist.txt: 34812) -.50.7.243.123 -# ||4wnet.com^$third-party (easylistchina+easylist.txt: 34811) -.4wnet.com -# ||4uvjosuc.com^$third-party (easylistchina+easylist.txt: 34810) -.4uvjosuc.com -# ||4e43ac9c.info^$third-party (easylistchina+easylist.txt: 34809) -.4e43ac9c.info -# ||4dsply.com^$third-party (easylistchina+easylist.txt: 34808) -.4dsply.com -# ||4affiliate.net^$third-party (easylistchina+easylist.txt: 34807) -.4affiliate.net -# ||46.165.197.231^ (easylistchina+easylist.txt: 34805) -.46.165.197.231 -# ||46.165.197.153^ (easylistchina+easylist.txt: 34804) -.46.165.197.153 -# ||43plc.com^$third-party (easylistchina+easylist.txt: 34803) -.43plc.com -# ||3t7euflv.com^$third-party (easylistchina+easylist.txt: 34802) -.3t7euflv.com -# ||3redlightfix.com^$third-party (easylistchina+easylist.txt: 34801) -.3redlightfix.com -# ||3rdads.com^$third-party (easylistchina+easylist.txt: 34800) -.3rdads.com -# ||3omb.com^$third-party (easylistchina+easylist.txt: 34799) -.3omb.com -# ||3lr67y45.com^$third-party (easylistchina+easylist.txt: 34798) -.3lr67y45.com -# ||3lift.com^$third-party (easylistchina+easylist.txt: 34797) -.3lift.com -# ||3cnce854.com^$third-party (easylistchina+easylist.txt: 34796) -.3cnce854.com -# ||365sbaffiliates.com^$third-party (easylistchina+easylist.txt: 34795) -.365sbaffiliates.com -# ||360yield.com^$third-party (easylistchina+easylist.txt: 34794) -.360yield.com -# ||360popads.com^$third-party (easylistchina+easylist.txt: 34793) -.360popads.com -# ||360installer.com^$third-party (easylistchina+easylist.txt: 34792) -.360installer.com -# ||360adstrack.com^$third-party (easylistchina+easylist.txt: 34791) -.360adstrack.com -# ||360ads.com^$third-party (easylistchina+easylist.txt: 34790) -.360ads.com -# ||350media.com^$third-party (easylistchina+easylist.txt: 34789) -.350media.com -# ||3393.com^$third-party (easylistchina+easylist.txt: 34788) -.3393.com -# ||32b4oilo.com^$third-party (easylistchina+easylist.txt: 34787) -.32b4oilo.com -# ||2xbpub.com^$third-party (easylistchina+easylist.txt: 34786) -.2xbpub.com -# ||2mdn.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 34785) -.2mdn.net -# ||2mdn.net/dot.gif$object-subrequest,third-party (easylistchina+easylist.txt: 34783) -.2mdn.net/dot\.gif -# ||2mdn.info^$third-party (easylistchina+easylist.txt: 34782) -.2mdn.info -# ||2dpt.com^$third-party (easylistchina+easylist.txt: 34781) -.2dpt.com -# ||2d4c3872.info^$third-party (easylistchina+easylist.txt: 34780) -.2d4c3872.info -# ||2d4c3870.info^$third-party (easylistchina+easylist.txt: 34779) -.2d4c3870.info -# ||254a.com^$third-party (easylistchina+easylist.txt: 34778) -.254a.com -# ||247realmedia.com^$third-party (easylistchina+easylist.txt: 34777) -.247realmedia.com -# ||213.163.70.183^$third-party (easylistchina+easylist.txt: 34776) -.213.163.70.183 -# ||20dollars2surf.com^$third-party (easylistchina+easylist.txt: 34775) -.20dollars2surf.com -# ||206ads.com^$third-party (easylistchina+easylist.txt: 34773) -.206ads.com -# ||1yk851od.com^$third-party (easylistchina+easylist.txt: 34771) -.1yk851od.com -# ||1sadx.net^$third-party (easylistchina+easylist.txt: 34770) -.1sadx.net -# ||1phads.com^$third-party (easylistchina+easylist.txt: 34769) -.1phads.com -# ||1nimo.com^$third-party (easylistchina+easylist.txt: 34768) -.1nimo.com -# ||1empiredirect.com^$third-party (easylistchina+easylist.txt: 34767) -.1empiredirect.com -# ||1e0y.xyz^$third-party (easylistchina+easylist.txt: 34766) -.1e0y.xyz -# ||1clickdownloads.com^$third-party (easylistchina+easylist.txt: 34765) -.1clickdownloads.com -# ||1ccbt.com^$third-party (easylistchina+easylist.txt: 34764) -.1ccbt.com -# ||194.71.107.25^$third-party (easylistchina+easylist.txt: 34762) -.194.71.107.25 -# ||18clicks.com^$third-party (easylistchina+easylist.txt: 34761) -.18clicks.com -# ||188server.com^$third-party (easylistchina+easylist.txt: 34760) -.188server.com -# ||17a898bb.info^$third-party (easylistchina+easylist.txt: 34758) -.17a898bb.info -# ||17a898b9.info^$third-party (easylistchina+easylist.txt: 34757) -.17a898b9.info -# ||174.142.194.177^$third-party (easylistchina+easylist.txt: 34756) -.174.142.194.177 -# ||15f3c01c.info^$third-party (easylistchina+easylist.txt: 34755) -.15f3c01c.info -# ||15f3c01a.info^$third-party (easylistchina+easylist.txt: 34754) -.15f3c01a.info -# ||152media.com^$third-party (easylistchina+easylist.txt: 34753) -.152media.com -# ||12place.com^$third-party (easylistchina+easylist.txt: 34752) -.12place.com -# ||123date.me^$third-party (easylistchina+easylist.txt: 34751) -.123date.me -# ||1100i.com^$third-party (easylistchina+easylist.txt: 34750) -.1100i.com -# ||10pipsaffiliates.com^$third-party (easylistchina+easylist.txt: 34749) -.10pipsaffiliates.com -# ||10fbb07a4b0.se^$third-party (easylistchina+easylist.txt: 34748) -.10fbb07a4b0.se -# ||103092804.com^$third-party (easylistchina+easylist.txt: 34747) -.103092804.com -# ||101m3.com^$third-party (easylistchina+easylist.txt: 34746) -.101m3.com -# ||0icep80f.com^$third-party (easylistchina+easylist.txt: 34745) -.0icep80f.com -# ||007-gateway.com^$third-party (easylistchina+easylist.txt: 34744) -.007-gateway.com -# _popunder+$popup (easylistchina+easylist.txt: 17656) -/.*_popunder\+ -# ?zoneid=*_bannerid=$popup (easylistchina+easylist.txt: 17655) -/.*\?zoneid=.*_bannerid= -# ?iiadext=$popup (easylistchina+easylist.txt: 17654) -/.*\?iiadext= -# ?bannerid=*&punder=$popup (easylistchina+easylist.txt: 17653) -/.*\?bannerid=.*&punder= -# ?AdUrl=$popup (easylistchina+easylist.txt: 17652) -/.*\?AdUrl= -# =popunders&$popup (easylistchina+easylist.txt: 17651) -/.*=popunders& -# =popunder&$popup (easylistchina+easylist.txt: 17650) -/.*=popunder& -# ://adv.$popup (easylistchina+easylist.txt: 17649) -/.*://adv\. -adv.*. -# ://ads.$popup (easylistchina+easylist.txt: 17648) -/.*://ads\. -ads.*. -# /yesbaby.$popup (easylistchina+easylist.txt: 17647) -/(.*/)?yesbaby\. -yesbaby.*. -# /srvclk.php?$popup (easylistchina+easylist.txt: 17646) -/(.*/)?srvclk\.php\? -# /spopunder^$popup (easylistchina+easylist.txt: 17645) -/(.*/)?spopunder[^\w%.-] -# /showads/*$popup (easylistchina+easylist.txt: 17644) -/(.*/)?showads/.* -# /servlet/ajrotator/*$popup (easylistchina+easylist.txt: 17643) -/(.*/)?servlet/ajrotator/.* -# /rotator.php?$popup (easylistchina+easylist.txt: 17642) -/(.*/)?rotator\.php\? -# /redirect.spark?$popup,third-party (easylistchina+easylist.txt: 17641) -/(.*/)?redirect\.spark\? -# /Redirect.engine$popup (easylistchina+easylist.txt: 17640) -/(.*/)?Redirect\.engine -Redirect.engine*. -# /Redirect.eng?$popup (easylistchina+easylist.txt: 17639) -/(.*/)?Redirect\.eng\? -# /realmedia/ads/*$popup (easylistchina+easylist.txt: 17638) -/(.*/)?realmedia/ads/.* -# /punder.php$popup (easylistchina+easylist.txt: 17637) -/(.*/)?punder\.php -punder.php*. -# /promoredirect?*&campaign=*&zone=$popup (easylistchina+easylist.txt: 17636) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /popupads.$popup (easylistchina+easylist.txt: 17635) -/(.*/)?popupads\. -popupads.*. -# /popunder_$popup (easylistchina+easylist.txt: 17634) -/(.*/)?popunder_ -# /popunder.$popup (easylistchina+easylist.txt: 17633) -/(.*/)?popunder\. -popunder.*. -# /popout.$popup (easylistchina+easylist.txt: 17632) -/(.*/)?popout\. -popout.*. -# /lr.php?zoneid=$popup (easylistchina+easylist.txt: 17631) -/(.*/)?lr\.php\?zoneid= -# /fp.engine?$popup,third-party (easylistchina+easylist.txt: 17630) -/(.*/)?fp\.engine\? -# /bani/index.php?id=$popup (easylistchina+easylist.txt: 17629) -/(.*/)?bani/index\.php\?id= -# /afu.php?$popup (easylistchina+easylist.txt: 17628) -/(.*/)?afu\.php\? -# /advlink.$popup (easylistchina+easylist.txt: 17627) -/(.*/)?advlink\. -advlink.*. -# /adsynserveuserid=$popup (easylistchina+easylist.txt: 17626) -/(.*/)?adsynserveuserid= -# /adstream_sx.ads/*$popup (easylistchina+easylist.txt: 17625) -/(.*/)?adstream_sx\.ads/.* -# /adserver.$popup (easylistchina+easylist.txt: 17624) -/(.*/)?adserver\. -adserver.*. -# /adServe/sa?cid=$popup (easylistchina+easylist.txt: 17623) -/(.*/)?adServe/sa\?cid= -# /ads.htm$popup (easylistchina+easylist.txt: 17622) -/(.*/)?ads\.htm -ads.htm*. -# /AdHandler.aspx?$popup (easylistchina+easylist.txt: 17621) -/(.*/)?AdHandler\.aspx\? -# /adclick.$popup (easylistchina+easylist.txt: 17620) -/(.*/)?adclick\. -adclick.*. -# /ad_pop.php?$popup (easylistchina+easylist.txt: 17619) -/(.*/)?ad_pop\.php\? -# /ad132m/*$popup (easylistchina+easylist.txt: 17618) -/(.*/)?ad132m/.* -# /ad/window.php?$popup (easylistchina+easylist.txt: 17617) -/(.*/)?ad/window\.php\? -# /ad/display.php$popup (easylistchina+easylist.txt: 17616) -/(.*/)?ad/display\.php -# /ad.php|$popup (easylistchina+easylist.txt: 17615) -/(.*/)?ad\.php$ -ad.php -# /ad.php?zone$popup (easylistchina+easylist.txt: 17614) -/(.*/)?ad\.php\?zone -# /ad.php?tag=$popup (easylistchina+easylist.txt: 17613) -/(.*/)?ad\.php\?tag= -# /a/display.php?$popup (easylistchina+easylist.txt: 17612) -/(.*/)?a/display\.php\? -# /?reef=$popup (easylistchina+easylist.txt: 17611) -/(.*/)?\?reef= -# /?placement=*&redirect$popup (easylistchina+easylist.txt: 17610) -/(.*/)?\?placement=.*&redirect -# .engine?PlacementId=$popup (easylistchina+easylist.txt: 17609) -/.*\.engine\?PlacementId= -# .com/ads?$popup (easylistchina+easylist.txt: 17608) -/.*\.com/ads\? -.*.com/ads\? -# .com/?adv=$popup (easylistchina+easylist.txt: 17607) -/.*\.com/\?adv= -.*.com/\?adv= -# .co/ads/$popup (easylistchina+easylist.txt: 17606) -/.*\.co/ads/ -.*.co/ads/ -# -ads-campaign/$popup (easylistchina+easylist.txt: 17605) -/.*-ads-campaign/ -.*-ads-campaign -# &program=revshare&$popup (easylistchina+easylist.txt: 17604) -/.*&program=revshare& -# &popunder=$popup (easylistchina+easylist.txt: 17603) -/.*&popunder= -# &link_type=offer$popup,third-party (easylistchina+easylist.txt: 17602) -/.*&link_type=offer -# _a468x60. (easylistchina+easylist.txt: 17600) -/.*_a468x60\. -# _980x100. (easylistchina+easylist.txt: 17599) -/.*_980x100\. -# _970x30_ (easylistchina+easylist.txt: 17598) -/.*_970x30_ -# _960_90. (easylistchina+easylist.txt: 17597) -/.*_960_90\. -# _936x60. (easylistchina+easylist.txt: 17596) -/.*_936x60\. -# _900x350. (easylistchina+easylist.txt: 17595) -/.*_900x350\. -# _80x468. (easylistchina+easylist.txt: 17594) -/.*_80x468\. -# _800x80_ (easylistchina+easylist.txt: 17593) -/.*_800x80_ -# _800x100. (easylistchina+easylist.txt: 17592) -/.*_800x100\. -# _798x99_ (easylistchina+easylist.txt: 17591) -/.*_798x99_ -# _796x110_ (easylistchina+easylist.txt: 17590) -/.*_796x110_ -# _768x90_ (easylistchina+easylist.txt: 17589) -/.*_768x90_ -# _764x70_ (easylistchina+easylist.txt: 17588) -/.*_764x70_ -# _764x70. (easylistchina+easylist.txt: 17587) -/.*_764x70\. -# _760x90_ (easylistchina+easylist.txt: 17586) -/.*_760x90_ -# _760x100. (easylistchina+easylist.txt: 17585) -/.*_760x100\. -# _750x100. (easylistchina+easylist.txt: 17584) -/.*_750x100\. -# _745_90. (easylistchina+easylist.txt: 17583) -/.*_745_90\. -# _745_60. (easylistchina+easylist.txt: 17582) -/.*_745_60\. -# _730x90_ (easylistchina+easylist.txt: 17581) -/.*_730x90_ -# _730x60_ (easylistchina+easylist.txt: 17580) -/.*_730x60_ -# _730_440. (easylistchina+easylist.txt: 17579) -/.*_730_440\. -# _728x90v1. (easylistchina+easylist.txt: 17578) -/.*_728x90v1\. -# _728x90px_ (easylistchina+easylist.txt: 17577) -/.*_728x90px_ -# _728x90px. (easylistchina+easylist.txt: 17576) -/.*_728x90px\. -# _728x90px- (easylistchina+easylist.txt: 17575) -/.*_728x90px- -# _728x90pg_ (easylistchina+easylist.txt: 17574) -/.*_728x90pg_ -# _728x90b_ (easylistchina+easylist.txt: 17573) -/.*_728x90b_ -# _728x90a_ (easylistchina+easylist.txt: 17572) -/.*_728x90a_ -# _728x90a. (easylistchina+easylist.txt: 17571) -/.*_728x90a\. -# _728x90_ (easylistchina+easylist.txt: 17570) -/.*_728x90_ -# _728x901. (easylistchina+easylist.txt: 17569) -/.*_728x901\. -# _728x90/ (easylistchina+easylist.txt: 17568) -/.*_728x90/ -# _728x90. (easylistchina+easylist.txt: 17567) -/.*_728x90\. -# _728x90- (easylistchina+easylist.txt: 17566) -/.*_728x90- -# _728x90& (easylistchina+easylist.txt: 17565) -/.*_728x90& -# _728x60. (easylistchina+easylist.txt: 17564) -/.*_728x60\. -# _728x150. (easylistchina+easylist.txt: 17563) -/.*_728x150\. -# _728x-90. (easylistchina+easylist.txt: 17562) -/.*_728x-90\. -# _728by90_ (easylistchina+easylist.txt: 17561) -/.*_728by90_ -# _728_x_90_ (easylistchina+easylist.txt: 17560) -/.*_728_x_90_ -# _728_90_ (easylistchina+easylist.txt: 17559) -/.*_728_90_ -# _728_90. (easylistchina+easylist.txt: 17558) -/.*_728_90\. -# _728.htm (easylistchina+easylist.txt: 17557) -/.*_728\.htm -# _728-90_ (easylistchina+easylist.txt: 17556) -/.*_728-90_ -# _728-90. (easylistchina+easylist.txt: 17555) -/.*_728-90\. -# _720x90_ (easylistchina+easylist.txt: 17554) -/.*_720x90_ -# _720x90. (easylistchina+easylist.txt: 17553) -/.*_720x90\. -# _720_90. (easylistchina+easylist.txt: 17552) -/.*_720_90\. -# _700x200. (easylistchina+easylist.txt: 17551) -/.*_700x200\. -# _700_200_ (easylistchina+easylist.txt: 17550) -/.*_700_200_ -# _700_150_ (easylistchina+easylist.txt: 17549) -/.*_700_150_ -# _700_100_ (easylistchina+easylist.txt: 17548) -/.*_700_100_ -# _682x90_ (easylistchina+easylist.txt: 17547) -/.*_682x90_ -# _680x93_ (easylistchina+easylist.txt: 17546) -/.*_680x93_ -# _672x120_ (easylistchina+easylist.txt: 17545) -/.*_672x120_ -# _650x80_ (easylistchina+easylist.txt: 17544) -/.*_650x80_ -# _650x350. (easylistchina+easylist.txt: 17543) -/.*_650x350\. -# _638x200_ (easylistchina+easylist.txt: 17542) -/.*_638x200_ -# _620x203_ (easylistchina+easylist.txt: 17541) -/.*_620x203_ -# _600x90. (easylistchina+easylist.txt: 17540) -/.*_600x90\. -# _600x80. (easylistchina+easylist.txt: 17539) -/.*_600x80\. -# _600x180. (easylistchina+easylist.txt: 17538) -/.*_600x180\. -# _600x160. (easylistchina+easylist.txt: 17537) -/.*_600x160\. -# _600x120_ (easylistchina+easylist.txt: 17536) -/.*_600x120_ -# _600-90. (easylistchina+easylist.txt: 17535) -/.*_600-90\. -# _590x105. (easylistchina+easylist.txt: 17534) -/.*_590x105\. -# _585x75_ (easylistchina+easylist.txt: 17533) -/.*_585x75_ -# _585x75- (easylistchina+easylist.txt: 17532) -/.*_585x75- -# _580x100. (easylistchina+easylist.txt: 17531) -/.*_580x100\. -# _555x70. (easylistchina+easylist.txt: 17530) -/.*_555x70\. -# _550x150. (easylistchina+easylist.txt: 17529) -/.*_550x150\. -# _540_70_ (easylistchina+easylist.txt: 17528) -/.*_540_70_ -# _540_70. (easylistchina+easylist.txt: 17527) -/.*_540_70\. -# _500x440. (easylistchina+easylist.txt: 17526) -/.*_500x440\. -# _490-90_ (easylistchina+easylist.txt: 17525) -/.*_490-90_ -# _486x60_ (easylistchina+easylist.txt: 17524) -/.*_486x60_ -# _486x60. (easylistchina+easylist.txt: 17523) -/.*_486x60\. -# _480x60_ (easylistchina+easylist.txt: 17522) -/.*_480x60_ -# _480x60/ (easylistchina+easylist.txt: 17521) -/.*_480x60/ -# _480x60. (easylistchina+easylist.txt: 17520) -/.*_480x60\. -# _480x60- (easylistchina+easylist.txt: 17519) -/.*_480x60- -# _480_80_ (easylistchina+easylist.txt: 17518) -/.*_480_80_ -# _480_60. (easylistchina+easylist.txt: 17517) -/.*_480_60\. -# _468x90_ (easylistchina+easylist.txt: 17516) -/.*_468x90_ -# _468x90. (easylistchina+easylist.txt: 17515) -/.*_468x90\. -# _468x80_ (easylistchina+easylist.txt: 17514) -/.*_468x80_ -# _468x80/ (easylistchina+easylist.txt: 17513) -/.*_468x80/ -# _468x80. (easylistchina+easylist.txt: 17512) -/.*_468x80\. -# _468x80- (easylistchina+easylist.txt: 17511) -/.*_468x80- -# _468x6o_ (easylistchina+easylist.txt: 17510) -/.*_468x6o_ -# _468x60px_ (easylistchina+easylist.txt: 17509) -/.*_468x60px_ -# _468x60b. (easylistchina+easylist.txt: 17508) -/.*_468x60b\. -# _468x60_ (easylistchina+easylist.txt: 17507) -/.*_468x60_ -# _468x60/ (easylistchina+easylist.txt: 17506) -/.*_468x60/ -# _468x60. (easylistchina+easylist.txt: 17505) -/.*_468x60\. -# _468x60- (easylistchina+easylist.txt: 17504) -/.*_468x60- -# _468x120. (easylistchina+easylist.txt: 17503) -/.*_468x120\. -# _468x100_ (easylistchina+easylist.txt: 17502) -/.*_468x100_ -# _468x100. (easylistchina+easylist.txt: 17501) -/.*_468x100\. -# _468x060_ (easylistchina+easylist.txt: 17500) -/.*_468x060_ -# _468x060. (easylistchina+easylist.txt: 17499) -/.*_468x060\. -# _468x060- (easylistchina+easylist.txt: 17498) -/.*_468x060- -# _468_80_ (easylistchina+easylist.txt: 17497) -/.*_468_80_ -# _468_80. (easylistchina+easylist.txt: 17496) -/.*_468_80\. -# _468_60_ (easylistchina+easylist.txt: 17495) -/.*_468_60_ -# _468_60. (easylistchina+easylist.txt: 17494) -/.*_468_60\. -# _468_60- (easylistchina+easylist.txt: 17493) -/.*_468_60- -# _468.htm (easylistchina+easylist.txt: 17492) -/.*_468\.htm -# _468.gif (easylistchina+easylist.txt: 17491) -/.*_468\.gif -# _468-60. (easylistchina+easylist.txt: 17490) -/.*_468-60\. -# _465x110_ (easylistchina+easylist.txt: 17489) -/.*_465x110_ -# _460x60. (easylistchina+easylist.txt: 17488) -/.*_460x60\. -# _460_60. (easylistchina+easylist.txt: 17487) -/.*_460_60\. -# _438x60_ (easylistchina+easylist.txt: 17486) -/.*_438x60_ -# _438x60. (easylistchina+easylist.txt: 17485) -/.*_438x60\. -# _438x50. (easylistchina+easylist.txt: 17484) -/.*_438x50\. -# _420x80_ (easylistchina+easylist.txt: 17483) -/.*_420x80_ -# _420x80. (easylistchina+easylist.txt: 17482) -/.*_420x80\. -# _400x68. (easylistchina+easylist.txt: 17481) -/.*_400x68\. -# _400x60. (easylistchina+easylist.txt: 17480) -/.*_400x60\. -# _400-80. (easylistchina+easylist.txt: 17479) -/.*_400-80\. -# _370x270. (easylistchina+easylist.txt: 17478) -/.*_370x270\. -# _350x100. (easylistchina+easylist.txt: 17477) -/.*_350x100\. -# _350_100_ (easylistchina+easylist.txt: 17476) -/.*_350_100_ -# _350_100. (easylistchina+easylist.txt: 17475) -/.*_350_100\. -# _336x850. (easylistchina+easylist.txt: 17474) -/.*_336x850\. -# _336x280s. (easylistchina+easylist.txt: 17473) -/.*_336x280s\. -# _336x280a. (easylistchina+easylist.txt: 17472) -/.*_336x280a\. -# _336x280_ (easylistchina+easylist.txt: 17471) -/.*_336x280_ -# _336x120. (easylistchina+easylist.txt: 17470) -/.*_336x120\. -# _323x120_ (easylistchina+easylist.txt: 17469) -/.*_323x120_ -# _320x250_ (easylistchina+easylist.txt: 17468) -/.*_320x250_ -# _300x600_ (easylistchina+easylist.txt: 17467) -/.*_300x600_ -# _300x600. (easylistchina+easylist.txt: 17466) -/.*_300x600\. -# _300x250v2. (easylistchina+easylist.txt: 17465) -/.*_300x250v2\. -# _300x250px. (easylistchina+easylist.txt: 17464) -/.*_300x250px\. -# _300x250b. (easylistchina+easylist.txt: 17463) -/.*_300x250b\. -# _300x250a_ (easylistchina+easylist.txt: 17462) -/.*_300x250a_ -# _300x250_ (easylistchina+easylist.txt: 17461) -/.*_300x250_ -# _300x250. (easylistchina+easylist.txt: 17460) -/.*_300x250\. -# _300x250- (easylistchina+easylist.txt: 17459) -/.*_300x250- -# _300x160_ (easylistchina+easylist.txt: 17458) -/.*_300x160_ -# _300_60_ (easylistchina+easylist.txt: 17457) -/.*_300_60_ -# _300_250_ (easylistchina+easylist.txt: 17456) -/.*_300_250_ -# _300_250. (easylistchina+easylist.txt: 17455) -/.*_300_250\. -# _300.htm (easylistchina+easylist.txt: 17454) -/.*_300\.htm -# _300-250- (easylistchina+easylist.txt: 17453) -/.*_300-250- -# _200x600_ (easylistchina+easylist.txt: 17452) -/.*_200x600_ -# _180x450_ (easylistchina+easylist.txt: 17451) -/.*_180x450_ -# _180x300_ (easylistchina+easylist.txt: 17450) -/.*_180x300_ -# _160x600b. (easylistchina+easylist.txt: 17449) -/.*_160x600b\. -# _160x600_ (easylistchina+easylist.txt: 17448) -/.*_160x600_ -# _160x600/ (easylistchina+easylist.txt: 17447) -/.*_160x600/ -# _160x600. (easylistchina+easylist.txt: 17446) -/.*_160x600\. -# _160x600- (easylistchina+easylist.txt: 17445) -/.*_160x600- -# _160x600& (easylistchina+easylist.txt: 17444) -/.*_160x600& -# _160x500. (easylistchina+easylist.txt: 17443) -/.*_160x500\. -# _160x400. (easylistchina+easylist.txt: 17442) -/.*_160x400\. -# _160x350. (easylistchina+easylist.txt: 17441) -/.*_160x350\. -# _160x300_ (easylistchina+easylist.txt: 17440) -/.*_160x300_ -# _160x300. (easylistchina+easylist.txt: 17439) -/.*_160x300\. -# _160x290. (easylistchina+easylist.txt: 17438) -/.*_160x290\. -# _160x1600. (easylistchina+easylist.txt: 17437) -/.*_160x1600\. -# _160by600_ (easylistchina+easylist.txt: 17436) -/.*_160by600_ -# _160_600_ (easylistchina+easylist.txt: 17435) -/.*_160_600_ -# _160_600. (easylistchina+easylist.txt: 17434) -/.*_160_600\. -# _160-600. (easylistchina+easylist.txt: 17433) -/.*_160-600\. -# _150x700_ (easylistchina+easylist.txt: 17432) -/.*_150x700_ -# _140x600_ (easylistchina+easylist.txt: 17431) -/.*_140x600_ -# _140x600. (easylistchina+easylist.txt: 17430) -/.*_140x600\. -# _125x600_ (easylistchina+easylist.txt: 17429) -/.*_125x600_ -# _120x800a. (easylistchina+easylist.txt: 17428) -/.*_120x800a\. -# _120x60_ (easylistchina+easylist.txt: 17427) -/.*_120x60_ -# _120x600px. (easylistchina+easylist.txt: 17426) -/.*_120x600px\. -# _120x600a. (easylistchina+easylist.txt: 17425) -/.*_120x600a\. -# _120x600_ (easylistchina+easylist.txt: 17424) -/.*_120x600_ -# _120x600. (easylistchina+easylist.txt: 17423) -/.*_120x600\. -# _120x600- (easylistchina+easylist.txt: 17422) -/.*_120x600- -# _120x60. (easylistchina+easylist.txt: 17421) -/.*_120x60\. -# _120x500. (easylistchina+easylist.txt: 17420) -/.*_120x500\. -# _120x240_ (easylistchina+easylist.txt: 17419) -/.*_120x240_ -# _120x240. (easylistchina+easylist.txt: 17418) -/.*_120x240\. -# _120h600. (easylistchina+easylist.txt: 17417) -/.*_120h600\. -# _120_x_600. (easylistchina+easylist.txt: 17416) -/.*_120_x_600\. -# _120_600_ (easylistchina+easylist.txt: 17415) -/.*_120_600_ -# _120_600. (easylistchina+easylist.txt: 17414) -/.*_120_600\. -# _120_60. (easylistchina+easylist.txt: 17413) -/.*_120_60\. -# _115x220. (easylistchina+easylist.txt: 17412) -/.*_115x220\. -# _100x480_ (easylistchina+easylist.txt: 17411) -/.*_100x480_ -# =900x60; (easylistchina+easylist.txt: 17410) -/.*=900x60; -# =888x10; (easylistchina+easylist.txt: 17409) -/.*=888x10; -# =760x120& (easylistchina+easylist.txt: 17408) -/.*=760x120& -# =728x90_ (easylistchina+easylist.txt: 17407) -/.*=728x90_ -# =728x90; (easylistchina+easylist.txt: 17406) -/.*=728x90; -# =728x90/ (easylistchina+easylist.txt: 17405) -/.*=728x90/ -# =728x90, (easylistchina+easylist.txt: 17404) -/.*=728x90, -# =728x90& (easylistchina+easylist.txt: 17403) -/.*=728x90& -# =480x60; (easylistchina+easylist.txt: 17402) -/.*=480x60; -# =468x80_ (easylistchina+easylist.txt: 17401) -/.*=468x80_ -# =468x60_ (easylistchina+easylist.txt: 17400) -/.*=468x60_ -# =468x60; (easylistchina+easylist.txt: 17399) -/.*=468x60; -# =468x60/ (easylistchina+easylist.txt: 17398) -/.*=468x60/ -# =468x60, (easylistchina+easylist.txt: 17397) -/.*=468x60, -# =468x60& (easylistchina+easylist.txt: 17396) -/.*=468x60& -# =440x410; (easylistchina+easylist.txt: 17395) -/.*=440x410; -# =336x280; (easylistchina+easylist.txt: 17394) -/.*=336x280; -# =336x280, (easylistchina+easylist.txt: 17393) -/.*=336x280, -# =300x300; (easylistchina+easylist.txt: 17392) -/.*=300x300; -# =300x250_ (easylistchina+easylist.txt: 17391) -/.*=300x250_ -# =300x250; (easylistchina+easylist.txt: 17390) -/.*=300x250; -# =300x250/ (easylistchina+easylist.txt: 17389) -/.*=300x250/ -# =300x250, (easylistchina+easylist.txt: 17388) -/.*=300x250, -# =300x250& (easylistchina+easylist.txt: 17387) -/.*=300x250& -# =234x60_ (easylistchina+easylist.txt: 17386) -/.*=234x60_ -# =234x60; (easylistchina+easylist.txt: 17385) -/.*=234x60; -# =160x600; (easylistchina+easylist.txt: 17384) -/.*=160x600; -# =160x600, (easylistchina+easylist.txt: 17383) -/.*=160x600, -# =160x600& (easylistchina+easylist.txt: 17382) -/.*=160x600& -# =160x160; (easylistchina+easylist.txt: 17381) -/.*=160x160; -# =120x600; (easylistchina+easylist.txt: 17380) -/.*=120x600; -# =120x600, (easylistchina+easylist.txt: 17379) -/.*=120x600, -# 760x90.jpg| (easylistchina+easylist.txt: 17378) -/.*760x90\.jpg$ -.*760x90.jpg -# 750x90.gif| (easylistchina+easylist.txt: 17377) -/.*750x90\.gif$ -.*750x90.gif -# 750x80.swf| (easylistchina+easylist.txt: 17376) -/.*750x80\.swf$ -.*750x80.swf -# 728x90_2.jpg| (easylistchina+easylist.txt: 17375) -/.*728x90_2\.jpg$ -# 728x90.swf| (easylistchina+easylist.txt: 17374) -/.*728x90\.swf$ -.*728x90.swf -# 728x90.swf? (easylistchina+easylist.txt: 17373) -/.*728x90\.swf\? -# 728x90.png| (easylistchina+easylist.txt: 17372) -/.*728x90\.png$ -.*728x90.png -# 728x90.php| (easylistchina+easylist.txt: 17371) -/.*728x90\.php$ -.*728x90.php -# 728x90.php? (easylistchina+easylist.txt: 17370) -/.*728x90\.php\? -# 728x90.jpg| (easylistchina+easylist.txt: 17369) -/.*728x90\.jpg$ -.*728x90.jpg -# 728x90.htm| (easylistchina+easylist.txt: 17368) -/.*728x90\.htm$ -.*728x90.htm -# 728x90.html| (easylistchina+easylist.txt: 17367) -/.*728x90\.html$ -.*728x90.html -# 728x90.gif| (easylistchina+easylist.txt: 17366) -/.*728x90\.gif$ -.*728x90.gif -# 728x290.gif| (easylistchina+easylist.txt: 17365) -/.*728x290\.gif$ -.*728x290.gif -# 700x200.gif| (easylistchina+easylist.txt: 17364) -/.*700x200\.gif$ -.*700x200.gif -# 700_200.jpg| (easylistchina+easylist.txt: 17363) -/.*700_200\.jpg$ -# 700_200.gif| (easylistchina+easylist.txt: 17362) -/.*700_200\.gif$ -# 480x80.jpg| (easylistchina+easylist.txt: 17361) -/.*480x80\.jpg$ -.*480x80.jpg -# 480x60.png| (easylistchina+easylist.txt: 17360) -/.*480x60\.png$ -.*480x60.png -# 470x60.swf| (easylistchina+easylist.txt: 17359) -/.*470x60\.swf$ -.*470x60.swf -# 470x60.swf? (easylistchina+easylist.txt: 17358) -/.*470x60\.swf\? -# 470x60.jpg| (easylistchina+easylist.txt: 17357) -/.*470x60\.jpg$ -.*470x60.jpg -# 470x60.gif| (easylistchina+easylist.txt: 17356) -/.*470x60\.gif$ -.*470x60.gif -# 468x80.gif| (easylistchina+easylist.txt: 17355) -/.*468x80\.gif$ -.*468x80.gif -# 468x60_2.jpg| (easylistchina+easylist.txt: 17354) -/.*468x60_2\.jpg$ -# 468x60_1.gif| (easylistchina+easylist.txt: 17353) -/.*468x60_1\.gif$ -# 468x60.swf| (easylistchina+easylist.txt: 17352) -/.*468x60\.swf$ -.*468x60.swf -# 468x60.swf? (easylistchina+easylist.txt: 17351) -/.*468x60\.swf\? -# 468x60.php| (easylistchina+easylist.txt: 17350) -/.*468x60\.php$ -.*468x60.php -# 468x60.php? (easylistchina+easylist.txt: 17349) -/.*468x60\.php\? -# 468x60.jpg| (easylistchina+easylist.txt: 17348) -/.*468x60\.jpg$ -.*468x60.jpg -# 468x60.htm| (easylistchina+easylist.txt: 17347) -/.*468x60\.htm$ -.*468x60.htm -# 468x60.html| (easylistchina+easylist.txt: 17346) -/.*468x60\.html$ -.*468x60.html -# 468x60.gif| (easylistchina+easylist.txt: 17345) -/.*468x60\.gif$ -.*468x60.gif -# 468_60.gif| (easylistchina+easylist.txt: 17344) -/.*468_60\.gif$ -# 468-60.swf| (easylistchina+easylist.txt: 17343) -/.*468-60\.swf$ -.*468-60.swf -# 468-60.swf? (easylistchina+easylist.txt: 17342) -/.*468-60\.swf\? -# 468-60.gif| (easylistchina+easylist.txt: 17341) -/.*468-60\.gif$ -.*468-60.gif -# 460x70.jpg| (easylistchina+easylist.txt: 17340) -/.*460x70\.jpg$ -.*460x70.jpg -# 450x55.jpg| (easylistchina+easylist.txt: 17339) -/.*450x55\.jpg$ -.*450x55.jpg -# 160x6001.jpg| (easylistchina+easylist.txt: 17338) -/.*160x6001\.jpg$ -.*160x6001.jpg -# 160x600.swf| (easylistchina+easylist.txt: 17337) -/.*160x600\.swf$ -.*160x600.swf -# 160x600.swf? (easylistchina+easylist.txt: 17336) -/.*160x600\.swf\? -# 160x600.png| (easylistchina+easylist.txt: 17335) -/.*160x600\.png$ -.*160x600.png -# 160x600.php| (easylistchina+easylist.txt: 17334) -/.*160x600\.php$ -.*160x600.php -# 160x600.php? (easylistchina+easylist.txt: 17333) -/.*160x600\.php\? -# 160x600.jpg| (easylistchina+easylist.txt: 17332) -/.*160x600\.jpg$ -.*160x600.jpg -# 160x600.htm| (easylistchina+easylist.txt: 17331) -/.*160x600\.htm$ -.*160x600.htm -# 160x600.html| (easylistchina+easylist.txt: 17330) -/.*160x600\.html$ -.*160x600.html -# 160x600.gif| (easylistchina+easylist.txt: 17329) -/.*160x600\.gif$ -.*160x600.gif -# 160x300.gif| (easylistchina+easylist.txt: 17328) -/.*160x300\.gif$ -.*160x300.gif -# 133x394.gif| (easylistchina+easylist.txt: 17327) -/.*133x394\.gif$ -.*133x394.gif -# 125x600.swf| (easylistchina+easylist.txt: 17326) -/.*125x600\.swf$ -.*125x600.swf -# 125x600.swf? (easylistchina+easylist.txt: 17325) -/.*125x600\.swf\? -# 125x600.gif| (easylistchina+easylist.txt: 17324) -/.*125x600\.gif$ -.*125x600.gif -# 120x600.swf| (easylistchina+easylist.txt: 17323) -/.*120x600\.swf$ -.*120x600.swf -# 120x600.swf? (easylistchina+easylist.txt: 17322) -/.*120x600\.swf\? -# 120x600.png| (easylistchina+easylist.txt: 17321) -/.*120x600\.png$ -.*120x600.png -# 120x600.htm| (easylistchina+easylist.txt: 17320) -/.*120x600\.htm$ -.*120x600.htm -# 120x600.html| (easylistchina+easylist.txt: 17319) -/.*120x600\.html$ -.*120x600.html -# 120x600.gif| (easylistchina+easylist.txt: 17318) -/.*120x600\.gif$ -.*120x600.gif -# 120x600.gif? (easylistchina+easylist.txt: 17317) -/.*120x600\.gif\? -# 120x500.gif| (easylistchina+easylist.txt: 17316) -/.*120x500\.gif$ -.*120x500.gif -# 120-600.gif| (easylistchina+easylist.txt: 17315) -/.*120-600\.gif$ -.*120-600.gif -# /top728x90. (easylistchina+easylist.txt: 17314) -/(.*/)?top728x90\. -top728x90.*. -# /top728.html (easylistchina+easylist.txt: 17313) -/(.*/)?top728\.html -top728.html*. -# /top468.html (easylistchina+easylist.txt: 17312) -/(.*/)?top468\.html -top468.html*. -# /new300x250/* (easylistchina+easylist.txt: 17311) -/(.*/)?new300x250/.* -# /new160x600/* (easylistchina+easylist.txt: 17310) -/(.*/)?new160x600/.* -# /lightake728x90. (easylistchina+easylist.txt: 17309) -/(.*/)?lightake728x90\. -lightake728x90.*. -# /L300xH250/* (easylistchina+easylist.txt: 17308) -/(.*/)?L300xH250/.* -# /img/728_90 (easylistchina+easylist.txt: 17307) -/(.*/)?img/728_90 -# /img/468_60 (easylistchina+easylist.txt: 17306) -/(.*/)?img/468_60 -# /head486x60. (easylistchina+easylist.txt: 17305) -/(.*/)?head486x60\. -head486x60.*. -# /bottom728x90. (easylistchina+easylist.txt: 17304) -/(.*/)?bottom728x90\. -bottom728x90.*. -# /bottom728.html (easylistchina+easylist.txt: 17303) -/(.*/)?bottom728\.html -bottom728.html*. -# /ban468. (easylistchina+easylist.txt: 17302) -/(.*/)?ban468\. -ban468.*. -# /_iframe728x90. (easylistchina+easylist.txt: 17301) -/(.*/)?_iframe728x90\. -# /980x90. (easylistchina+easylist.txt: 17300) -/(.*/)?980x90\. -980x90.*. -# /960_60_ (easylistchina+easylist.txt: 17299) -/(.*/)?960_60_ -# /950_250. (easylistchina+easylist.txt: 17298) -/(.*/)?950_250\. -# /900x350_ (easylistchina+easylist.txt: 17297) -/(.*/)?900x350_ -# /900x130_ (easylistchina+easylist.txt: 17296) -/(.*/)?900x130_ -# /80x468_ (easylistchina+easylist.txt: 17295) -/(.*/)?80x468_ -# /800x90. (easylistchina+easylist.txt: 17294) -/(.*/)?800x90\. -800x90.*. -# /780x90. (easylistchina+easylist.txt: 17293) -/(.*/)?780x90\. -780x90.*. -# /768x90. (easylistchina+easylist.txt: 17292) -/(.*/)?768x90\. -768x90.*. -# /768x90- (easylistchina+easylist.txt: 17291) -/(.*/)?768x90- -768x90-*. -# /760x90_ (easylistchina+easylist.txt: 17290) -/(.*/)?760x90_ -# /760x120_ (easylistchina+easylist.txt: 17289) -/(.*/)?760x120_ -# /760x120. (easylistchina+easylist.txt: 17288) -/(.*/)?760x120\. -760x120.*. -# /750x100. (easylistchina+easylist.txt: 17287) -/(.*/)?750x100\. -750x100.*. -# /750-100. (easylistchina+easylist.txt: 17286) -/(.*/)?750-100\. -750-100.*. -# /728x90top. (easylistchina+easylist.txt: 17285) -/(.*/)?728x90top\. -728x90top.*. -# /728x90l. (easylistchina+easylist.txt: 17284) -/(.*/)?728x90l\. -728x90l.*. -# /728x90h. (easylistchina+easylist.txt: 17283) -/(.*/)?728x90h\. -728x90h.*. -# /728x90g. (easylistchina+easylist.txt: 17282) -/(.*/)?728x90g\. -728x90g.*. -# /728x90d. (easylistchina+easylist.txt: 17281) -/(.*/)?728x90d\. -728x90d.*. -# /728x90b/* (easylistchina+easylist.txt: 17280) -/(.*/)?728x90b/.* -# /728x90b. (easylistchina+easylist.txt: 17279) -/(.*/)?728x90b\. -728x90b.*. -# /728x90_ (easylistchina+easylist.txt: 17278) -/(.*/)?728x90_ -# /728x90? (easylistchina+easylist.txt: 17277) -/(.*/)?728x90\? -# /728x901. (easylistchina+easylist.txt: 17276) -/(.*/)?728x901\. -728x901.*. -# /728x90/* (easylistchina+easylist.txt: 17275) -/(.*/)?728x90/.* -# /728x90. (easylistchina+easylist.txt: 17274) -/(.*/)?728x90\. -728x90.*. -# /728x90- (easylistchina+easylist.txt: 17273) -/(.*/)?728x90- -728x90-*. -# /728x79_ (easylistchina+easylist.txt: 17272) -/(.*/)?728x79_ -# /728x180- (easylistchina+easylist.txt: 17271) -/(.*/)?728x180- -728x180-*. -# /728x15. (easylistchina+easylist.txt: 17270) -/(.*/)?728x15\. -728x15.*. -# /728by90_ (easylistchina+easylist.txt: 17269) -/(.*/)?728by90_ -# /728_90n. (easylistchina+easylist.txt: 17268) -/(.*/)?728_90n\. -# /728_90_ (easylistchina+easylist.txt: 17267) -/(.*/)?728_90_ -# /728_90/* (easylistchina+easylist.txt: 17266) -/(.*/)?728_90/.* -# /728_90. (easylistchina+easylist.txt: 17265) -/(.*/)?728_90\. -# /728_200_ (easylistchina+easylist.txt: 17264) -/(.*/)?728_200_ -# /728_200. (easylistchina+easylist.txt: 17263) -/(.*/)?728_200\. -# /728.html$subdocument (easylistchina+easylist.txt: 17262) -/(.*/)?728\.html -728.html*. -# /728-90_ (easylistchina+easylist.txt: 17261) -/(.*/)?728-90_ -# /728-90/* (easylistchina+easylist.txt: 17260) -/(.*/)?728-90/.* -# /728-90. (easylistchina+easylist.txt: 17259) -/(.*/)?728-90\. -728-90.*. -# /728-90- (easylistchina+easylist.txt: 17258) -/(.*/)?728-90- -728-90-*. -# /700x90. (easylistchina+easylist.txt: 17257) -/(.*/)?700x90\. -700x90.*. -# /700x250. (easylistchina+easylist.txt: 17256) -/(.*/)?700x250\. -700x250.*. -# /700x120. (easylistchina+easylist.txt: 17255) -/(.*/)?700x120\. -700x120.*. -# /700x100. (easylistchina+easylist.txt: 17254) -/(.*/)?700x100\. -700x100.*. -# /700_200. (easylistchina+easylist.txt: 17253) -/(.*/)?700_200\. -# /700_100_ (easylistchina+easylist.txt: 17252) -/(.*/)?700_100_ -# /660x60. (easylistchina+easylist.txt: 17251) -/(.*/)?660x60\. -660x60.*. -# /660x120_ (easylistchina+easylist.txt: 17250) -/(.*/)?660x120_ -# /640x80- (easylistchina+easylist.txt: 17249) -/(.*/)?640x80- -640x80-*. -# /640x100/* (easylistchina+easylist.txt: 17248) -/(.*/)?640x100/.* -# /60x468. (easylistchina+easylist.txt: 17247) -/(.*/)?60x468\. -60x468.*. -# /600x90. (easylistchina+easylist.txt: 17246) -/(.*/)?600x90\. -600x90.*. -# /600x75_ (easylistchina+easylist.txt: 17245) -/(.*/)?600x75_ -# /600x160_ (easylistchina+easylist.txt: 17244) -/(.*/)?600x160_ -# /600_90_ (easylistchina+easylist.txt: 17243) -/(.*/)?600_90_ -# /600_120_ (easylistchina+easylist.txt: 17242) -/(.*/)?600_120_ -# /600-90. (easylistchina+easylist.txt: 17241) -/(.*/)?600-90\. -600-90.*. -# /600-60. (easylistchina+easylist.txt: 17240) -/(.*/)?600-60\. -600-60.*. -# /540x80_ (easylistchina+easylist.txt: 17239) -/(.*/)?540x80_ -# /530x60_ (easylistchina+easylist.txt: 17238) -/(.*/)?530x60_ -# /500x90. (easylistchina+easylist.txt: 17237) -/(.*/)?500x90\. -500x90.*. -# /496_98_ (easylistchina+easylist.txt: 17236) -/(.*/)?496_98_ -# /486x60_ (easylistchina+easylist.txt: 17235) -/(.*/)?486x60_ -# /480x70_ (easylistchina+easylist.txt: 17234) -/(.*/)?480x70_ -# /480x60_ (easylistchina+easylist.txt: 17233) -/(.*/)?480x60_ -# /480x60/* (easylistchina+easylist.txt: 17232) -/(.*/)?480x60/.* -# /480x60. (easylistchina+easylist.txt: 17231) -/(.*/)?480x60\. -480x60.*. -# /480x60- (easylistchina+easylist.txt: 17230) -/(.*/)?480x60- -480x60-*. -# /480x030_ (easylistchina+easylist.txt: 17229) -/(.*/)?480x030_ -# /480x030. (easylistchina+easylist.txt: 17228) -/(.*/)?480x030\. -480x030.*. -# /475x150- (easylistchina+easylist.txt: 17227) -/(.*/)?475x150- -475x150-*. -# /470x030_ (easylistchina+easylist.txt: 17226) -/(.*/)?470x030_ -# /468x80g. (easylistchina+easylist.txt: 17225) -/(.*/)?468x80g\. -468x80g.*. -# /468x80b. (easylistchina+easylist.txt: 17224) -/(.*/)?468x80b\. -468x80b.*. -# /468x80_ (easylistchina+easylist.txt: 17223) -/(.*/)?468x80_ -# /468x80/* (easylistchina+easylist.txt: 17222) -/(.*/)?468x80/.* -# /468x80. (easylistchina+easylist.txt: 17221) -/(.*/)?468x80\. -468x80.*. -# /468x80- (easylistchina+easylist.txt: 17220) -/(.*/)?468x80- -468x80-*. -# /468x72_ (easylistchina+easylist.txt: 17219) -/(.*/)?468x72_ -# /468x72. (easylistchina+easylist.txt: 17218) -/(.*/)?468x72\. -468x72.*. -# /468x70- (easylistchina+easylist.txt: 17217) -/(.*/)?468x70- -468x70-*. -# /468x60v1_ (easylistchina+easylist.txt: 17216) -/(.*/)?468x60v1_ -# /468x60b. (easylistchina+easylist.txt: 17215) -/(.*/)?468x60b\. -468x60b.*. -# /468x60a_ (easylistchina+easylist.txt: 17214) -/(.*/)?468x60a_ -# /468x60a. (easylistchina+easylist.txt: 17213) -/(.*/)?468x60a\. -468x60a.*. -# /468x60_ (easylistchina+easylist.txt: 17212) -/(.*/)?468x60_ -# /468x60/* (easylistchina+easylist.txt: 17211) -/(.*/)?468x60/.* -# /468x60. (easylistchina+easylist.txt: 17210) -/(.*/)?468x60\. -468x60.*. -# /468x60- (easylistchina+easylist.txt: 17209) -/(.*/)?468x60- -468x60-*. -# /468x280_ (easylistchina+easylist.txt: 17208) -/(.*/)?468x280_ -# /468x280. (easylistchina+easylist.txt: 17207) -/(.*/)?468x280\. -468x280.*. -# /468x060_ (easylistchina+easylist.txt: 17206) -/(.*/)?468x060_ -# /468x060. (easylistchina+easylist.txt: 17205) -/(.*/)?468x060\. -468x060.*. -# /468_80/* (easylistchina+easylist.txt: 17204) -/(.*/)?468_80/.* -# /468_80. (easylistchina+easylist.txt: 17203) -/(.*/)?468_80\. -# /468_60_ (easylistchina+easylist.txt: 17202) -/(.*/)?468_60_ -# /468_60. (easylistchina+easylist.txt: 17201) -/(.*/)?468_60\. -# /468-60_ (easylistchina+easylist.txt: 17200) -/(.*/)?468-60_ -# /468-60. (easylistchina+easylist.txt: 17199) -/(.*/)?468-60\. -468-60.*. -# /468-60- (easylistchina+easylist.txt: 17198) -/(.*/)?468-60- -468-60-*. -# /468-20. (easylistchina+easylist.txt: 17197) -/(.*/)?468-20\. -468-20.*. -# /460x80_ (easylistchina+easylist.txt: 17196) -/(.*/)?460x80_ -# /460x60. (easylistchina+easylist.txt: 17195) -/(.*/)?460x60\. -460x60.*. -# /428x60. (easylistchina+easylist.txt: 17194) -/(.*/)?428x60\. -428x60.*. -# /400x297. (easylistchina+easylist.txt: 17193) -/(.*/)?400x297\. -400x297.*. -# /4-6-8x60. (easylistchina+easylist.txt: 17192) -/(.*/)?4-6-8x60\. -4-6-8x60.*. -# /340x85_ (easylistchina+easylist.txt: 17191) -/(.*/)?340x85_ -# /336x280_ (easylistchina+easylist.txt: 17190) -/(.*/)?336x280_ -# /336x280. (easylistchina+easylist.txt: 17189) -/(.*/)?336x280\. -336x280.*. -# /336x280- (easylistchina+easylist.txt: 17188) -/(.*/)?336x280- -336x280-*. -# /335x205_ (easylistchina+easylist.txt: 17187) -/(.*/)?335x205_ -# /320x250. (easylistchina+easylist.txt: 17186) -/(.*/)?320x250\. -320x250.*. -# /300x90_ (easylistchina+easylist.txt: 17185) -/(.*/)?300x90_ -# /300x350. (easylistchina+easylist.txt: 17184) -/(.*/)?300x350\. -300x350.*. -# /300x250px_ (easylistchina+easylist.txt: 17183) -/(.*/)?300x250px_ -# /300x250px- (easylistchina+easylist.txt: 17182) -/(.*/)?300x250px- -300x250px-*. -# /300x250b. (easylistchina+easylist.txt: 17181) -/(.*/)?300x250b\. -300x250b.*. -# /300x250_ (easylistchina+easylist.txt: 17180) -/(.*/)?300x250_ -# /300x250/* (easylistchina+easylist.txt: 17179) -/(.*/)?300x250/.* -# /300x250. (easylistchina+easylist.txt: 17178) -/(.*/)?300x250\. -300x250.*. -# /300x250- (easylistchina+easylist.txt: 17177) -/(.*/)?300x250- -300x250-*. -# /300x150_ (easylistchina+easylist.txt: 17176) -/(.*/)?300x150_ -# /300_250_ (easylistchina+easylist.txt: 17175) -/(.*/)?300_250_ -# /300.html$subdocument (easylistchina+easylist.txt: 17174) -/(.*/)?300\.html -300.html*. -# /300-250. (easylistchina+easylist.txt: 17173) -/(.*/)?300-250\. -300-250.*. -# /300-250- (easylistchina+easylist.txt: 17172) -/(.*/)?300-250- -300-250-*. -# /270x90- (easylistchina+easylist.txt: 17171) -/(.*/)?270x90- -270x90-*. -# /234x60/* (easylistchina+easylist.txt: 17170) -/(.*/)?234x60/.* -# /230x90_ (easylistchina+easylist.txt: 17169) -/(.*/)?230x90_ -# /190x600. (easylistchina+easylist.txt: 17168) -/(.*/)?190x600\. -190x600.*. -# /190_900. (easylistchina+easylist.txt: 17167) -/(.*/)?190_900\. -# /180x150- (easylistchina+easylist.txt: 17166) -/(.*/)?180x150- -180x150-*. -# /170x700. (easylistchina+easylist.txt: 17165) -/(.*/)?170x700\. -170x700.*. -# /160x600partner. (easylistchina+easylist.txt: 17164) -/(.*/)?160x600partner\. -160x600partner.*. -# /160x600_ (easylistchina+easylist.txt: 17163) -/(.*/)?160x600_ -# /160x600/* (easylistchina+easylist.txt: 17162) -/(.*/)?160x600/.* -# /160x600. (easylistchina+easylist.txt: 17161) -/(.*/)?160x600\. -160x600.*. -# /160x600- (easylistchina+easylist.txt: 17160) -/(.*/)?160x600- -160x600-*. -# /160x400_ (easylistchina+easylist.txt: 17159) -/(.*/)?160x400_ -# /160x400- (easylistchina+easylist.txt: 17158) -/(.*/)?160x400- -160x400-*. -# /160_600_ (easylistchina+easylist.txt: 17157) -/(.*/)?160_600_ -# /160_600. (easylistchina+easylist.txt: 17156) -/(.*/)?160_600\. -# /160.html$subdocument (easylistchina+easylist.txt: 17155) -/(.*/)?160\.html -160.html*. -# /160-600. (easylistchina+easylist.txt: 17154) -/(.*/)?160-600\. -160-600.*. -# /160-600- (easylistchina+easylist.txt: 17153) -/(.*/)?160-600- -160-600-*. -# /150x600_ (easylistchina+easylist.txt: 17152) -/(.*/)?150x600_ -# /150x300_ (easylistchina+easylist.txt: 17151) -/(.*/)?150x300_ -# /150x200- (easylistchina+easylist.txt: 17150) -/(.*/)?150x200- -150x200-*. -# /150_500. (easylistchina+easylist.txt: 17149) -/(.*/)?150_500\. -# /150-500. (easylistchina+easylist.txt: 17148) -/(.*/)?150-500\. -150-500.*. -# /130x600. (easylistchina+easylist.txt: 17147) -/(.*/)?130x600\. -130x600.*. -# /130x600- (easylistchina+easylist.txt: 17146) -/(.*/)?130x600- -130x600-*. -# /125x600_ (easylistchina+easylist.txt: 17145) -/(.*/)?125x600_ -# /125x600- (easylistchina+easylist.txt: 17144) -/(.*/)?125x600- -125x600-*. -# /125x400/* (easylistchina+easylist.txt: 17143) -/(.*/)?125x400/.* -# /125x300_ (easylistchina+easylist.txt: 17142) -/(.*/)?125x300_ -# /125x240/* (easylistchina+easylist.txt: 17141) -/(.*/)?125x240/.* -# /120x600_ (easylistchina+easylist.txt: 17140) -/(.*/)?120x600_ -# /120x600/* (easylistchina+easylist.txt: 17139) -/(.*/)?120x600/.* -# /120x600. (easylistchina+easylist.txt: 17138) -/(.*/)?120x600\. -120x600.*. -# /120x600- (easylistchina+easylist.txt: 17137) -/(.*/)?120x600- -120x600-*. -# /120x240_ (easylistchina+easylist.txt: 17136) -/(.*/)?120x240_ -# /120_600_ (easylistchina+easylist.txt: 17135) -/(.*/)?120_600_ -# /120_600/* (easylistchina+easylist.txt: 17134) -/(.*/)?120_600/.* -# /120_600. (easylistchina+easylist.txt: 17133) -/(.*/)?120_600\. -# /1200x70_ (easylistchina+easylist.txt: 17132) -/(.*/)?1200x70_ -# /120-600. (easylistchina+easylist.txt: 17131) -/(.*/)?120-600\. -120-600.*. -# /120-600- (easylistchina+easylist.txt: 17130) -/(.*/)?120-600- -120-600-*. -# .900x100. (easylistchina+easylist.txt: 17129) -/.*\.900x100\. -.*.900x100.*. -# .728x90_ (easylistchina+easylist.txt: 17128) -/.*\.728x90_ -# .728x90/ (easylistchina+easylist.txt: 17127) -/.*\.728x90/ -.*.728x90 -# .728x90. (easylistchina+easylist.txt: 17126) -/.*\.728x90\. -.*.728x90.*. -# .728x90- (easylistchina+easylist.txt: 17125) -/.*\.728x90- -.*.728x90-*. -# .650x100. (easylistchina+easylist.txt: 17124) -/.*\.650x100\. -.*.650x100.*. -# .480x60_ (easylistchina+easylist.txt: 17123) -/.*\.480x60_ -# .480x60/ (easylistchina+easylist.txt: 17122) -/.*\.480x60/ -.*.480x60 -# .480x60. (easylistchina+easylist.txt: 17121) -/.*\.480x60\. -.*.480x60.*. -# .480x60- (easylistchina+easylist.txt: 17120) -/.*\.480x60- -.*.480x60-*. -# .468x80_ (easylistchina+easylist.txt: 17119) -/.*\.468x80_ -# .468x80/ (easylistchina+easylist.txt: 17118) -/.*\.468x80/ -.*.468x80 -# .468x80. (easylistchina+easylist.txt: 17117) -/.*\.468x80\. -.*.468x80.*. -# .468x80- (easylistchina+easylist.txt: 17116) -/.*\.468x80- -.*.468x80-*. -# .468x60_ (easylistchina+easylist.txt: 17115) -/.*\.468x60_ -# .468x60/ (easylistchina+easylist.txt: 17114) -/.*\.468x60/ -.*.468x60 -# .468x60. (easylistchina+easylist.txt: 17113) -/.*\.468x60\. -.*.468x60.*. -# .468x60- (easylistchina+easylist.txt: 17112) -/.*\.468x60- -.*.468x60-*. -# .300x250_ (easylistchina+easylist.txt: 17111) -/.*\.300x250_ -# .300x250. (easylistchina+easylist.txt: 17110) -/.*\.300x250\. -.*.300x250.*. -# .160x600_ (easylistchina+easylist.txt: 17109) -/.*\.160x600_ -# .160x600. (easylistchina+easylist.txt: 17108) -/.*\.160x600\. -.*.160x600.*. -# .120x600. (easylistchina+easylist.txt: 17107) -/.*\.120x600\. -.*.120x600.*. -# -988x60. (easylistchina+easylist.txt: 17106) -/.*-988x60\. -.*-988x60.*. -# -980x60- (easylistchina+easylist.txt: 17105) -/.*-980x60- -.*-980x60-*. -# -800x150. (easylistchina+easylist.txt: 17104) -/.*-800x150\. -.*-800x150.*. -# -780x90- (easylistchina+easylist.txt: 17103) -/.*-780x90- -.*-780x90-*. -# -729x91- (easylistchina+easylist.txt: 17102) -/.*-729x91- -.*-729x91-*. -# -728x90px2. (easylistchina+easylist.txt: 17101) -/.*-728x90px2\. -.*-728x90px2.*. -# -728x90a_ (easylistchina+easylist.txt: 17100) -/.*-728x90a_ -# -728x90_ (easylistchina+easylist.txt: 17099) -/.*-728x90_ -# -728x90/ (easylistchina+easylist.txt: 17098) -/.*-728x90/ -.*-728x90 -# -728x90. (easylistchina+easylist.txt: 17097) -/.*-728x90\. -.*-728x90.*. -# -728x90- (easylistchina+easylist.txt: 17096) -/.*-728x90- -.*-728x90-*. -# -728x90& (easylistchina+easylist.txt: 17095) -/.*-728x90& -# -728.90. (easylistchina+easylist.txt: 17094) -/.*-728\.90\. -.*-728.90.*. -# -728-90. (easylistchina+easylist.txt: 17093) -/.*-728-90\. -.*-728-90.*. -# -720x90. (easylistchina+easylist.txt: 17092) -/.*-720x90\. -.*-720x90.*. -# -720x90- (easylistchina+easylist.txt: 17091) -/.*-720x90- -.*-720x90-*. -# -720x120- (easylistchina+easylist.txt: 17090) -/.*-720x120- -.*-720x120-*. -# -700-200. (easylistchina+easylist.txt: 17089) -/.*-700-200\. -.*-700-200.*. -# -600x90- (easylistchina+easylist.txt: 17088) -/.*-600x90- -.*-600x90-*. -# -600x70. (easylistchina+easylist.txt: 17087) -/.*-600x70\. -.*-600x70.*. -# -500x100. (easylistchina+easylist.txt: 17086) -/.*-500x100\. -.*-500x100.*. -# -486x60. (easylistchina+easylist.txt: 17085) -/.*-486x60\. -.*-486x60.*. -# -480x60_ (easylistchina+easylist.txt: 17084) -/.*-480x60_ -# -480x60/ (easylistchina+easylist.txt: 17083) -/.*-480x60/ -.*-480x60 -# -480x60. (easylistchina+easylist.txt: 17082) -/.*-480x60\. -.*-480x60.*. -# -480x60- (easylistchina+easylist.txt: 17081) -/.*-480x60- -.*-480x60-*. -# -480x120. (easylistchina+easylist.txt: 17080) -/.*-480x120\. -.*-480x120.*. -# -468x90. (easylistchina+easylist.txt: 17079) -/.*-468x90\. -.*-468x90.*. -# -468x80_ (easylistchina+easylist.txt: 17078) -/.*-468x80_ -# -468x80/ (easylistchina+easylist.txt: 17077) -/.*-468x80/ -.*-468x80 -# -468x80. (easylistchina+easylist.txt: 17076) -/.*-468x80\. -.*-468x80.*. -# -468x80- (easylistchina+easylist.txt: 17075) -/.*-468x80- -.*-468x80-*. -# -468x70. (easylistchina+easylist.txt: 17074) -/.*-468x70\. -.*-468x70.*. -# -468x60px- (easylistchina+easylist.txt: 17073) -/.*-468x60px- -.*-468x60px-*. -# -468x60_ (easylistchina+easylist.txt: 17072) -/.*-468x60_ -# -468x60/ (easylistchina+easylist.txt: 17071) -/.*-468x60/ -.*-468x60 -# -468x60. (easylistchina+easylist.txt: 17070) -/.*-468x60\. -.*-468x60.*. -# -468x60- (easylistchina+easylist.txt: 17069) -/.*-468x60- -.*-468x60-*. -# -468x060_ (easylistchina+easylist.txt: 17068) -/.*-468x060_ -# -468x060- (easylistchina+easylist.txt: 17067) -/.*-468x060- -.*-468x060-*. -# -468by60. (easylistchina+easylist.txt: 17066) -/.*-468by60\. -.*-468by60.*. -# -468_60. (easylistchina+easylist.txt: 17065) -/.*-468_60\. -# -468-60_ (easylistchina+easylist.txt: 17064) -/.*-468-60_ -# -468-60. (easylistchina+easylist.txt: 17063) -/.*-468-60\. -.*-468-60.*. -# -468-60- (easylistchina+easylist.txt: 17062) -/.*-468-60- -.*-468-60-*. -# -468-100. (easylistchina+easylist.txt: 17061) -/.*-468-100\. -.*-468-100.*. -# -460x68. (easylistchina+easylist.txt: 17060) -/.*-460x68\. -.*-460x68.*. -# -300x600. (easylistchina+easylist.txt: 17059) -/.*-300x600\. -.*-300x600.*. -# -300x250_ (easylistchina+easylist.txt: 17058) -/.*-300x250_ -# -300x250-$~xmlhttprequest (easylistchina+easylist.txt: 17057) -/.*-300x250- -.*-300x250-*. -# -300-250. (easylistchina+easylist.txt: 17056) -/.*-300-250\. -.*-300-250.*. -# -161x601- (easylistchina+easylist.txt: 17055) -/.*-161x601- -.*-161x601-*. -# -160x600b. (easylistchina+easylist.txt: 17054) -/.*-160x600b\. -.*-160x600b.*. -# -160x600_ (easylistchina+easylist.txt: 17053) -/.*-160x600_ -# -160x600. (easylistchina+easylist.txt: 17052) -/.*-160x600\. -.*-160x600.*. -# -160x600- (easylistchina+easylist.txt: 17051) -/.*-160x600- -.*-160x600-*. -# -160x400- (easylistchina+easylist.txt: 17050) -/.*-160x400- -.*-160x400-*. -# -160-600. (easylistchina+easylist.txt: 17049) -/.*-160-600\. -.*-160-600.*. -# -125x40- (easylistchina+easylist.txt: 17048) -/.*-125x40- -.*-125x40-*. -# -120x600c. (easylistchina+easylist.txt: 17047) -/.*-120x600c\. -.*-120x600c.*. -# -120x600_ (easylistchina+easylist.txt: 17046) -/.*-120x600_ -# -120x600. (easylistchina+easylist.txt: 17045) -/.*-120x600\. -.*-120x600.*. -# -120x600- (easylistchina+easylist.txt: 17044) -/.*-120x600- -.*-120x600-*. -# -120x60. (easylistchina+easylist.txt: 17043) -/.*-120x60\. -.*-120x60.*. -# -120x60- (easylistchina+easylist.txt: 17042) -/.*-120x60- -.*-120x60-*. -# -120x400. (easylistchina+easylist.txt: 17041) -/.*-120x400\. -.*-120x400.*. -# -120x300. (easylistchina+easylist.txt: 17040) -/.*-120x300\. -.*-120x300.*. -# -120x240. (easylistchina+easylist.txt: 17039) -/.*-120x240\. -.*-120x240.*. -# -120_600_ (easylistchina+easylist.txt: 17038) -/.*-120_600_ -# -120-600. (easylistchina+easylist.txt: 17037) -/.*-120-600\. -.*-120-600.*. -# ,970x90; (easylistchina+easylist.txt: 17036) -/.*,970x90; -# ,728x90, (easylistchina+easylist.txt: 17035) -/.*,728x90, -# ,468x60; (easylistchina+easylist.txt: 17034) -/.*,468x60; -# ,468x60- (easylistchina+easylist.txt: 17033) -/.*,468x60- -# ,160x600; (easylistchina+easylist.txt: 17032) -/.*,160x600; -# /wp-content/plugins/anti_ad_blocker/* (easylistchina+easylist.txt: 17030) -/(.*/)?wp-content/plugins/anti_ad_blocker/.* -# /wp-content/plugins/anti-block/* (easylistchina+easylist.txt: 17029) -/(.*/)?wp-content/plugins/anti-block/.* -# /no-adblock/* (easylistchina+easylist.txt: 17028) -/(.*/)?no-adblock/.* -# /fuckadblock. (easylistchina+easylist.txt: 17027) -/(.*/)?fuckadblock\. -fuckadblock.*. -# /FuckAdBlock-$script (easylistchina+easylist.txt: 17026) -/(.*/)?FuckAdBlock- -FuckAdBlock-*. -# /fuckadb.js (easylistchina+easylist.txt: 17025) -/(.*/)?fuckadb\.js -fuckadb.js*. -# /Disable%2BAdblock. (easylistchina+easylist.txt: 17024) -/(.*/)?Disable%2BAdblock\. -# /blockblock/blockblock.jquery.js (easylistchina+easylist.txt: 17023) -/(.*/)?blockblock/blockblock\.jquery\.js -# /antiadblock. (easylistchina+easylist.txt: 17021) -/(.*/)?antiadblock\. -antiadblock.*. -# /anti_ab. (easylistchina+easylist.txt: 17020) -/(.*/)?anti_ab\. -# /anti-adblock/*$~stylesheet (easylistchina+easylist.txt: 17019) -/(.*/)?anti-adblock/.* -# /adsblocker. (easylistchina+easylist.txt: 17018) -/(.*/)?adsblocker\. -adsblocker.*. -# /adbuddy. (easylistchina+easylist.txt: 17017) -/(.*/)?adbuddy\. -adbuddy.*. -# /adblockdetection. (easylistchina+easylist.txt: 17016) -/(.*/)?adblockdetection\. -adblockdetection.*. -# /adblockdetect. (easylistchina+easylist.txt: 17015) -/(.*/)?adblockdetect\. -adblockdetect.*. -# /adblock_logger. (easylistchina+easylist.txt: 17014) -/(.*/)?adblock_logger\. -# /adblock_detector2. (easylistchina+easylist.txt: 17013) -/(.*/)?adblock_detector2\. -# /adblock_detector. (easylistchina+easylist.txt: 17012) -/(.*/)?adblock_detector\. -# /adblock.gif? (easylistchina+easylist.txt: 17011) -/(.*/)?adblock\.gif\? -# /adblock-notify-by-bweb/* (easylistchina+easylist.txt: 17010) -/(.*/)?adblock-notify-by-bweb/.* -# /adblock-detect. (easylistchina+easylist.txt: 17009) -/(.*/)?adblock-detect\. -adblock-detect.*. -# /adblock-blocker/* (easylistchina+easylist.txt: 17008) -/(.*/)?adblock-blocker/.* -# /adblock-alerter/* (easylistchina+easylist.txt: 17007) -/(.*/)?adblock-alerter/.* -# /adb_detector. (easylistchina+easylist.txt: 17006) -/(.*/)?adb_detector\. -# /adb.min.js (easylistchina+easylist.txt: 17005) -/(.*/)?adb\.min\.js -adb.min.js*. -# /ad-blocker.js (easylistchina+easylist.txt: 17004) -/(.*/)?ad-blocker\.js -ad-blocker.js*. -# -adblocker-detection/ (easylistchina+easylist.txt: 17003) -/.*-adblocker-detection/ -.*-adblocker-detection -# /jquery.peelback.js (easylistchina+easylist.txt: 17001) -/(.*/)?jquery\.peelback\.js -jquery.peelback.js*. -# /sl/assetlisting/? (easylistchina+easylist.txt: 16999) -/(.*/)?sl/assetlisting/\? -# /Tag.rb$script,third-party (easylistchina+easylist.txt: 16997) -/(.*/)?Tag\.rb -Tag.rb*. -# /Tag.eng$script,third-party (easylistchina+easylist.txt: 16996) -/(.*/)?Tag\.eng -Tag.eng*. -# /mediahosting.engine$script,third-party (easylistchina+easylist.txt: 16995) -/(.*/)?mediahosting\.engine -mediahosting.engine*. -# /cdn-cgi/pe/bag?r[]=*pubads.g.doubleclick.net (easylistchina+easylist.txt: 16993) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*pubads\.g\.doubleclick\.net -# /cdn-cgi/pe/bag?r[]=*cpalead.com (easylistchina+easylist.txt: 16992) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*cpalead\.com -# /cdn-cgi/pe/bag2?r[]=*srvpub.com (easylistchina+easylist.txt: 16991) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*srvpub\.com -# /cdn-cgi/pe/bag2?r[]=*revcontent.com (easylistchina+easylist.txt: 16990) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*revcontent\.com -# /cdn-cgi/pe/bag2?r[]=*popcash.net (easylistchina+easylist.txt: 16989) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popcash\.net -# /cdn-cgi/pe/bag2?r[]=*popads.net (easylistchina+easylist.txt: 16988) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# /cdn-cgi/pe/bag2?r[]=*linksmart.com (easylistchina+easylist.txt: 16987) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*linksmart\.com -# /cdn-cgi/pe/bag2?r[]=*juicyads.com (easylistchina+easylist.txt: 16986) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# /cdn-cgi/pe/bag2?r[]=*intellitxt.com (easylistchina+easylist.txt: 16985) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*intellitxt\.com -# /cdn-cgi/pe/bag2?r[]=*googleadservices.com (easylistchina+easylist.txt: 16984) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*googleadservices\.com -# /cdn-cgi/pe/bag2?r[]=*eclkspsa.com (easylistchina+easylist.txt: 16983) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkspsa\.com -# /cdn-cgi/pe/bag2?r[]=*eclkmpbn.com (easylistchina+easylist.txt: 16982) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkmpbn\.com -# /cdn-cgi/pe/bag2?r[]=*cpx.to (easylistchina+easylist.txt: 16981) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*cpx\.to -# /cdn-cgi/pe/bag2?r[]=*content.ad (easylistchina+easylist.txt: 16980) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*content\.ad -# /cdn-cgi/pe/bag2?r[]=*az708531.vo.msecnd.net (easylistchina+easylist.txt: 16979) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*az708531\.vo\.msecnd\.net -# /cdn-cgi/pe/bag2?r[]=*ads.exoclick.com (easylistchina+easylist.txt: 16978) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# /cdn-cgi/pe/bag2?r[]=*adk2.co (easylistchina+easylist.txt: 16977) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adk2\.co -# /cdn-cgi/pe/bag2?r[]=*adblade.com (easylistchina+easylist.txt: 16976) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adblade\.com -# /webservices/jsparselinks.aspx?$script (easylistchina+easylist.txt: 16974) -/(.*/)?webservices/jsparselinks\.aspx\? -# /jquery.dfp.min.js$script (easylistchina+easylist.txt: 16972) -/(.*/)?jquery\.dfp\.min\.js -jquery.dfp.min.js*. -# /jquery.dfp.js$script (easylistchina+easylist.txt: 16971) -/(.*/)?jquery\.dfp\.js -jquery.dfp.js*. -# ||serve.*/promoload? (easylistchina+easylist.txt: 16969) -.serve.*./(.*/)?promoload\? -# ||ox-d.*^auid= (easylistchina+easylist.txt: 16968) -.ox-d.*./(.*[^\w%.-])?auid= -# ||online.*/promoredirect?key= (easylistchina+easylist.txt: 16967) -.online.*./(.*/)?promoredirect\?key= -# ||com/banners/$image,object,subdocument (easylistchina+easylist.txt: 16966) -# ||cacheserve.*/promodisplay? (easylistchina+easylist.txt: 16965) -.cacheserve.*./(.*/)?promodisplay\? -# ||cacheserve.*/promodisplay/ (easylistchina+easylist.txt: 16964) -.cacheserve.*./(.*/)?promodisplay/ -# takeover_banner_ (easylistchina+easylist.txt: 16963) -/.*takeover_banner_ -# takeover_background. (easylistchina+easylist.txt: 16962) -/.*takeover_background\. -# _zedo. (easylistchina+easylist.txt: 16961) -/.*_zedo\. -# _your_ad. (easylistchina+easylist.txt: 16960) -/.*_your_ad\. -# _yahooads/ (easylistchina+easylist.txt: 16959) -/.*_yahooads/ -# _widget_ad. (easylistchina+easylist.txt: 16958) -/.*_widget_ad\. -# _WebBannerAd_ (easylistchina+easylist.txt: 16957) -/.*_WebBannerAd_ -# _webad_ (easylistchina+easylist.txt: 16956) -/.*_webad_ -# _webad. (easylistchina+easylist.txt: 16955) -/.*_webad\. -# _web_ad_ (easylistchina+easylist.txt: 16954) -/.*_web_ad_ -# _Web_ad. (easylistchina+easylist.txt: 16953) -/.*_Web_ad\. -# _web-advert. (easylistchina+easylist.txt: 16952) -/.*_web-advert\. -# _vodaaffi_ (easylistchina+easylist.txt: 16951) -/.*_vodaaffi_ -# _videoad. (easylistchina+easylist.txt: 16950) -/.*_videoad\. -# _video_ads_ (easylistchina+easylist.txt: 16949) -/.*_video_ads_ -# _video_ads/ (easylistchina+easylist.txt: 16948) -/.*_video_ads/ -# _vertical_ad. (easylistchina+easylist.txt: 16947) -/.*_vertical_ad\. -# _valueclick. (easylistchina+easylist.txt: 16946) -/.*_valueclick\. -# _UIM-Ads_ (easylistchina+easylist.txt: 16945) -/.*_UIM-Ads_ -# _tribalfusion. (easylistchina+easylist.txt: 16944) -/.*_tribalfusion\. -# _topad. (easylistchina+easylist.txt: 16943) -/.*_topad\. -# _top_ad_ (easylistchina+easylist.txt: 16942) -/.*_top_ad_ -# _top_ad. (easylistchina+easylist.txt: 16941) -/.*_top_ad\. -# _tile_ad_ (easylistchina+easylist.txt: 16940) -/.*_tile_ad_ -# _theme/ads/ (easylistchina+easylist.txt: 16939) -/.*_theme/ads/ -# _textads/ (easylistchina+easylist.txt: 16938) -/.*_textads/ -# _textads. (easylistchina+easylist.txt: 16937) -/.*_textads\. -# _textad_ (easylistchina+easylist.txt: 16936) -/.*_textad_ -# _text_ads. (easylistchina+easylist.txt: 16935) -/.*_text_ads\. -# _temp/ad_ (easylistchina+easylist.txt: 16934) -/.*_temp/ad_ -# _tagadvertising. (easylistchina+easylist.txt: 16933) -/.*_tagadvertising\. -# _survey_ad_ (easylistchina+easylist.txt: 16932) -/.*_survey_ad_ -# _StickyAdFunc. (easylistchina+easylist.txt: 16931) -/.*_StickyAdFunc\. -# _StickyAd. (easylistchina+easylist.txt: 16930) -/.*_StickyAd\. -# _sticky_ad. (easylistchina+easylist.txt: 16929) -/.*_sticky_ad\. -# _static_ads. (easylistchina+easylist.txt: 16928) -/.*_static_ads\. -# _static/ads/ (easylistchina+easylist.txt: 16927) -/.*_static/ads/ -# _square_ad. (easylistchina+easylist.txt: 16926) -/.*_square_ad\. -# _Spot-Ad_ (easylistchina+easylist.txt: 16925) -/.*_Spot-Ad_ -# _sponsoredlinks_ (easylistchina+easylist.txt: 16924) -/.*_sponsoredlinks_ -# _sponsor/css/ (easylistchina+easylist.txt: 16923) -/.*_sponsor/css/ -# _smartads_ (easylistchina+easylist.txt: 16922) -/.*_smartads_ -# _small_ad. (easylistchina+easylist.txt: 16921) -/.*_small_ad\. -# _Slot_Adv_ (easylistchina+easylist.txt: 16920) -/.*_Slot_Adv_ -# _skyscraper160x600. (easylistchina+easylist.txt: 16919) -/.*_skyscraper160x600\. -# _skybannerview. (easylistchina+easylist.txt: 16918) -/.*_skybannerview\. -# _skinad. (easylistchina+easylist.txt: 16917) -/.*_skinad\. -# _site_sponsor (easylistchina+easylist.txt: 16916) -/.*_site_sponsor -# _sidebarad_ (easylistchina+easylist.txt: 16915) -/.*_sidebarad_ -# _sidebar_ad_ (easylistchina+easylist.txt: 16914) -/.*_sidebar_ad_ -# _sidebar_ad. (easylistchina+easylist.txt: 16913) -/.*_sidebar_ad\. -# _sidead. (easylistchina+easylist.txt: 16912) -/.*_sidead\. -# _show_ads_ (easylistchina+easylist.txt: 16911) -/.*_show_ads_ -# _show_ads= (easylistchina+easylist.txt: 16910) -/.*_show_ads= -# _show_ads. (easylistchina+easylist.txt: 16909) -/.*_show_ads\. -# _sectionfront_ad. (easylistchina+easylist.txt: 16908) -/.*_sectionfront_ad\. -# _search/ads.js (easylistchina+easylist.txt: 16907) -/.*_search/ads\.js -# _rightmn_ads. (easylistchina+easylist.txt: 16906) -/.*_rightmn_ads\. -# _rightad_ (easylistchina+easylist.txt: 16905) -/.*_rightad_ -# _rightad1. (easylistchina+easylist.txt: 16904) -/.*_rightad1\. -# _rightad. (easylistchina+easylist.txt: 16903) -/.*_rightad\. -# _right_ads_ (easylistchina+easylist.txt: 16902) -/.*_right_ads_ -# _right_ads/ (easylistchina+easylist.txt: 16901) -/.*_right_ads/ -# _right_ads. (easylistchina+easylist.txt: 16900) -/.*_right_ads\. -# _right_ad. (easylistchina+easylist.txt: 16899) -/.*_right_ad\. -# _response_ad. (easylistchina+easylist.txt: 16898) -/.*_response_ad\. -# _request_ad. (easylistchina+easylist.txt: 16897) -/.*_request_ad\. -# _reporting_ads. (easylistchina+easylist.txt: 16896) -/.*_reporting_ads\. -# _rectangle_ads. (easylistchina+easylist.txt: 16894) -/.*_rectangle_ads\. -# _railads. (easylistchina+easylist.txt: 16893) -/.*_railads\. -# _radio_ad_ (easylistchina+easylist.txt: 16892) -/.*_radio_ad_ -# _pushads. (easylistchina+easylist.txt: 16891) -/.*_pushads\. -# _psu_ad. (easylistchina+easylist.txt: 16890) -/.*_psu_ad\. -# _promo_ad/ (easylistchina+easylist.txt: 16889) -/.*_promo_ad/ -# _prime_ad. (easylistchina+easylist.txt: 16888) -/.*_prime_ad\. -# _preorderad. (easylistchina+easylist.txt: 16887) -/.*_preorderad\. -# _post_ads. (easylistchina+easylist.txt: 16886) -/.*_post_ads\. -# _popupunder. (easylistchina+easylist.txt: 16885) -/.*_popupunder\. -# _popunder_ (easylistchina+easylist.txt: 16884) -/.*_popunder_ -# _popunder. (easylistchina+easylist.txt: 16883) -/.*_popunder\. -# _pop_under. (easylistchina+easylist.txt: 16882) -/.*_pop_under\. -# _pop_ad/ (easylistchina+easylist.txt: 16881) -/.*_pop_ad/ -# _pop_ad. (easylistchina+easylist.txt: 16880) -/.*_pop_ad\. -# _plus/ads/ (easylistchina+easylist.txt: 16879) -/.*_plus/ads/ -# _player_ads_ (easylistchina+easylist.txt: 16878) -/.*_player_ads_ -# _platform_ads_ (easylistchina+easylist.txt: 16877) -/.*_platform_ads_ -# _platform_ads. (easylistchina+easylist.txt: 16876) -/.*_platform_ads\. -# _partner_ad. (easylistchina+easylist.txt: 16875) -/.*_partner_ad\. -# _panel_ads. (easylistchina+easylist.txt: 16874) -/.*_panel_ads\. -# _paidadvert_ (easylistchina+easylist.txt: 16873) -/.*_paidadvert_ -# _paid_ads/ (easylistchina+easylist.txt: 16872) -/.*_paid_ads/ -# _overlay_ad. (easylistchina+easylist.txt: 16871) -/.*_overlay_ad\. -# _org_ad. (easylistchina+easylist.txt: 16870) -/.*_org_ad\. -# _openx/ (easylistchina+easylist.txt: 16869) -/.*_openx/ -# _openx. (easylistchina+easylist.txt: 16868) -/.*_openx\. -# _onlinead_ (easylistchina+easylist.txt: 16867) -/.*_onlinead_ -# _online_ad. (easylistchina+easylist.txt: 16866) -/.*_online_ad\. -# _mpu_widget? (easylistchina+easylist.txt: 16865) -/.*_mpu_widget\? -# _Mobile_Ad_ (easylistchina+easylist.txt: 16864) -/.*_Mobile_Ad_ -# _mmsadbanner/ (easylistchina+easylist.txt: 16863) -/.*_mmsadbanner/ -# _mid_ad. (easylistchina+easylist.txt: 16862) -/.*_mid_ad\. -# _media/ads/ (easylistchina+easylist.txt: 16861) -/.*_media/ads/ -# _maxi_ad/ (easylistchina+easylist.txt: 16860) -/.*_maxi_ad/ -# _mainad. (easylistchina+easylist.txt: 16859) -/.*_mainad\. -# _main_ad. (easylistchina+easylist.txt: 16858) -/.*_main_ad\. -# _mailLoginAd. (easylistchina+easylist.txt: 16857) -/.*_mailLoginAd\. -# _longad_ (easylistchina+easylist.txt: 16856) -/.*_longad_ -# _logadslot& (easylistchina+easylist.txt: 16855) -/.*_logadslot& -# _load_ad? (easylistchina+easylist.txt: 16854) -/.*_load_ad\? -# _live/ad/ (easylistchina+easylist.txt: 16853) -/.*_live/ad/ -# _link_ads- (easylistchina+easylist.txt: 16852) -/.*_link_ads- -# _left_ad. (easylistchina+easylist.txt: 16851) -/.*_left_ad\. -# _leaderboard_ad_ (easylistchina+easylist.txt: 16850) -/.*_leaderboard_ad_ -# _layerad. (easylistchina+easylist.txt: 16849) -/.*_layerad\. -# _juicyads. (easylistchina+easylist.txt: 16848) -/.*_juicyads\. -# _juiceadv. (easylistchina+easylist.txt: 16847) -/.*_juiceadv\. -# _jtads/ (easylistchina+easylist.txt: 16846) -/.*_jtads/ -# _js/ads.js (easylistchina+easylist.txt: 16845) -/.*_js/ads\.js -# _inlineads. (easylistchina+easylist.txt: 16844) -/.*_inlineads\. -# _inline_advert& (easylistchina+easylist.txt: 16843) -/.*_inline_advert& -# _index_ad. (easylistchina+easylist.txt: 16842) -/.*_index_ad\. -# _images/ads/ (easylistchina+easylist.txt: 16841) -/.*_images/ads/ -# _images/ad_ (easylistchina+easylist.txt: 16840) -/.*_images/ad_ -# _images/ad. (easylistchina+easylist.txt: 16839) -/.*_images/ad\. -# _iframe_ad_ (easylistchina+easylist.txt: 16838) -/.*_iframe_ad_ -# _iad.html? (easylistchina+easylist.txt: 16837) -/.*_iad\.html\? -# _hr_advt/ (easylistchina+easylist.txt: 16836) -/.*_hr_advt/ -# _house_ad_ (easylistchina+easylist.txt: 16835) -/.*_house_ad_ -# _hosting_ad. (easylistchina+easylist.txt: 16834) -/.*_hosting_ad\. -# _home_ad_ (easylistchina+easylist.txt: 16833) -/.*_home_ad_ -# _home_ad. (easylistchina+easylist.txt: 16832) -/.*_home_ad\. -# _homadconfig. (easylistchina+easylist.txt: 16831) -/.*_homadconfig\. -# _homad. (easylistchina+easylist.txt: 16830) -/.*_homad\. -# _headline_ad. (easylistchina+easylist.txt: 16829) -/.*_headline_ad\. -# _headerad. (easylistchina+easylist.txt: 16828) -/.*_headerad\. -# _header_ad_ (easylistchina+easylist.txt: 16827) -/.*_header_ad_ -# _header_ad. (easylistchina+easylist.txt: 16826) -/.*_header_ad\. -# _grid_ad? (easylistchina+easylist.txt: 16825) -/.*_grid_ad\? -# _googlead. (easylistchina+easylist.txt: 16824) -/.*_googlead\. -# _google_ads_ (easylistchina+easylist.txt: 16823) -/.*_google_ads_ -# _google_ads/ (easylistchina+easylist.txt: 16822) -/.*_google_ads/ -# _google_ads. (easylistchina+easylist.txt: 16821) -/.*_google_ads\. -# _google_ad. (easylistchina+easylist.txt: 16820) -/.*_google_ad\. -# _geobanner. (easylistchina+easylist.txt: 16819) -/.*_geobanner\. -# _generic_ad. (easylistchina+easylist.txt: 16818) -/.*_generic_ad\. -# _genads/ (easylistchina+easylist.txt: 16817) -/.*_genads/ -# _gallery_image_ads_$~stylesheet (easylistchina+easylist.txt: 16816) -/.*_gallery_image_ads_ -# _gallery_ads. (easylistchina+easylist.txt: 16815) -/.*_gallery_ads\. -# _gads_top. (easylistchina+easylist.txt: 16814) -/.*_gads_top\. -# _gads_footer. (easylistchina+easylist.txt: 16813) -/.*_gads_footer\. -# _gads_bottom. (easylistchina+easylist.txt: 16812) -/.*_gads_bottom\. -# _fullscreen_ad. (easylistchina+easylist.txt: 16811) -/.*_fullscreen_ad\. -# _friendlyduck. (easylistchina+easylist.txt: 16810) -/.*_friendlyduck\. -# _framed_ad/ (easylistchina+easylist.txt: 16809) -/.*_framed_ad/ -# _footer_ad_ (easylistchina+easylist.txt: 16808) -/.*_footer_ad_ -# _floatingad_ (easylistchina+easylist.txt: 16807) -/.*_floatingad_ -# _floating_ad_ (easylistchina+easylist.txt: 16806) -/.*_floating_ad_ -# _fixed_ad. (easylistchina+easylist.txt: 16805) -/.*_fixed_ad\. -# _files/ad. (easylistchina+easylist.txt: 16804) -/.*_files/ad\. -# _feast_ad. (easylistchina+easylist.txt: 16803) -/.*_feast_ad\. -# _fbadbookingsystem& (easylistchina+easylist.txt: 16802) -/.*_fbadbookingsystem& -# _fach_ad. (easylistchina+easylist.txt: 16801) -/.*_fach_ad\. -# _externalad. (easylistchina+easylist.txt: 16800) -/.*_externalad\. -# _english/adv/ (easylistchina+easylist.txt: 16799) -/.*_english/adv/ -# _engine_ads_ (easylistchina+easylist.txt: 16798) -/.*_engine_ads_ -# _elements/ads/ (easylistchina+easylist.txt: 16797) -/.*_elements/ads/ -# _dynamicads/ (easylistchina+easylist.txt: 16796) -/.*_dynamicads/ -# _dropdown_ad. (easylistchina+easylist.txt: 16795) -/.*_dropdown_ad\. -# _down_ad_ (easylistchina+easylist.txt: 16794) -/.*_down_ad_ -# _doubleclick_ad. (easylistchina+easylist.txt: 16793) -/.*_doubleclick_ad\. -# _doubleclick. (easylistchina+easylist.txt: 16792) -/.*_doubleclick\. -# _displaytopads. (easylistchina+easylist.txt: 16791) -/.*_displaytopads\. -# _displayad_ (easylistchina+easylist.txt: 16790) -/.*_displayad_ -# _dfp.php? (easylistchina+easylist.txt: 16789) -/.*_dfp\.php\? -# _dashad_ (easylistchina+easylist.txt: 16788) -/.*_dashad_ -# _dart_interstitial. (easylistchina+easylist.txt: 16787) -/.*_dart_interstitial\. -# _dart_ads. (easylistchina+easylist.txt: 16786) -/.*_dart_ads\. -# _custom_ad_ (easylistchina+easylist.txt: 16785) -/.*_custom_ad_ -# _custom_ad. (easylistchina+easylist.txt: 16784) -/.*_custom_ad\. -# _contest_ad_ (easylistchina+easylist.txt: 16783) -/.*_contest_ad_ -# _content_ad_ (easylistchina+easylist.txt: 16782) -/.*_content_ad_ -# _content_ad. (easylistchina+easylist.txt: 16781) -/.*_content_ad\. -# _companionad. (easylistchina+easylist.txt: 16780) -/.*_companionad\. -# _ChatAd_ (easylistchina+easylist.txt: 16779) -/.*_ChatAd_ -# _cgbanners.php? (easylistchina+easylist.txt: 16778) -/.*_cgbanners\.php\? -# _centre_ad. (easylistchina+easylist.txt: 16777) -/.*_centre_ad\. -# _buttonad. (easylistchina+easylist.txt: 16776) -/.*_buttonad\. -# _button_ad_ (easylistchina+easylist.txt: 16775) -/.*_button_ad_ -# _btnad_ (easylistchina+easylist.txt: 16774) -/.*_btnad_ -# _box_ad_ (easylistchina+easylist.txt: 16773) -/.*_box_ad_ -# _bottom_ads_ (easylistchina+easylist.txt: 16772) -/.*_bottom_ads_ -# _bottom_ads. (easylistchina+easylist.txt: 16771) -/.*_bottom_ads\. -# _blogads_ (easylistchina+easylist.txt: 16770) -/.*_blogads_ -# _blogads. (easylistchina+easylist.txt: 16769) -/.*_blogads\. -# _blank_ads. (easylistchina+easylist.txt: 16768) -/.*_blank_ads\. -# _bg_ad_left. (easylistchina+easylist.txt: 16767) -/.*_bg_ad_left\. -# _bannerview.php?*&aid= (easylistchina+easylist.txt: 16766) -/.*_bannerview\.php\?.*&aid= -# _bannerads_ (easylistchina+easylist.txt: 16765) -/.*_bannerads_ -# _BannerAd_ (easylistchina+easylist.txt: 16764) -/.*_BannerAd_ -# _bannerad. (easylistchina+easylist.txt: 16763) -/.*_bannerad\. -# _banner_adv_ (easylistchina+easylist.txt: 16762) -/.*_banner_adv_ -# _banner_adv300x250px. (easylistchina+easylist.txt: 16761) -/.*_banner_adv300x250px\. -# _Banner_Ads_ (easylistchina+easylist.txt: 16760) -/.*_Banner_Ads_ -# _banner_ads. (easylistchina+easylist.txt: 16759) -/.*_banner_ads\. -# _banner_ad_ (easylistchina+easylist.txt: 16758) -/.*_banner_ad_ -# _banner_ad. (easylistchina+easylist.txt: 16757) -/.*_banner_ad\. -# _background_ad/ (easylistchina+easylist.txt: 16756) -/.*_background_ad/ -# _background_ad. (easylistchina+easylist.txt: 16755) -/.*_background_ad\. -# _assets/ads/ (easylistchina+easylist.txt: 16754) -/.*_assets/ads/ -# _argus_ad_ (easylistchina+easylist.txt: 16753) -/.*_argus_ad_ -# _alt/ads/ (easylistchina+easylist.txt: 16752) -/.*_alt/ads/ -# _afs_ads. (easylistchina+easylist.txt: 16751) -/.*_afs_ads\. -# _affiliate_ad. (easylistchina+easylist.txt: 16750) -/.*_affiliate_ad\. -# _affiliate/banners/ (easylistchina+easylist.txt: 16749) -/.*_affiliate/banners/ -# _afd_ads. (easylistchina+easylist.txt: 16748) -/.*_afd_ads\. -# _adwriter. (easylistchina+easylist.txt: 16747) -/.*_adwriter\. -# _adwrap. (easylistchina+easylist.txt: 16746) -/.*_adwrap\. -# _advservices. (easylistchina+easylist.txt: 16745) -/.*_advservices\. -# _adview_ (easylistchina+easylist.txt: 16744) -/.*_adview_ -# _adview? (easylistchina+easylist.txt: 16743) -/.*_adview\? -# _AdvertsImgs/ (easylistchina+easylist.txt: 16742) -/.*_AdvertsImgs/ -# _advertsarea. (easylistchina+easylist.txt: 16741) -/.*_advertsarea\. -# _adverts3. (easylistchina+easylist.txt: 16740) -/.*_adverts3\. -# _adverts/ (easylistchina+easylist.txt: 16739) -/.*_adverts/ -# _adverts.js (easylistchina+easylist.txt: 16738) -/.*_adverts\.js -# _advertphoto. (easylistchina+easylist.txt: 16737) -/.*_advertphoto\. -# _advertorials/ (easylistchina+easylist.txt: 16736) -/.*_advertorials/ -# _advertorial_ (easylistchina+easylist.txt: 16735) -/.*_advertorial_ -# _advertorial3. (easylistchina+easylist.txt: 16734) -/.*_advertorial3\. -# _advertorial. (easylistchina+easylist.txt: 16733) -/.*_advertorial\. -# _advertisment. (easylistchina+easylist.txt: 16732) -/.*_advertisment\. -# _advertising_iframe. (easylistchina+easylist.txt: 16731) -/.*_advertising_iframe\. -# _advertising_header. (easylistchina+easylist.txt: 16730) -/.*_advertising_header\. -# _advertising/ (easylistchina+easylist.txt: 16729) -/.*_advertising/ -# _advertising. (easylistchina+easylist.txt: 16728) -/.*_advertising\. -# _advertisementtxt_ (easylistchina+easylist.txt: 16727) -/.*_advertisementtxt_ -# _advertisements/ (easylistchina+easylist.txt: 16726) -/.*_advertisements/ -# _advertisementbar. (easylistchina+easylist.txt: 16725) -/.*_advertisementbar\. -# _advertisement_ (easylistchina+easylist.txt: 16724) -/.*_advertisement_ -# _advertisement/ (easylistchina+easylist.txt: 16723) -/.*_advertisement/ -# _advertisement. (easylistchina+easylist.txt: 16722) -/.*_advertisement\. -# _advertisement- (easylistchina+easylist.txt: 16721) -/.*_advertisement- -# _advertisehere. (easylistchina+easylist.txt: 16720) -/.*_advertisehere\. -# _advertise180. (easylistchina+easylist.txt: 16719) -/.*_advertise180\. -# _advertise. (easylistchina+easylist.txt: 16718) -/.*_advertise\. -# _advertise- (easylistchina+easylist.txt: 16717) -/.*_advertise- -# _advert_vert (easylistchina+easylist.txt: 16716) -/.*_advert_vert -# _advert_overview. (easylistchina+easylist.txt: 16715) -/.*_advert_overview\. -# _advert_label. (easylistchina+easylist.txt: 16714) -/.*_advert_label\. -# _advert_2. (easylistchina+easylist.txt: 16713) -/.*_advert_2\. -# _advert_1. (easylistchina+easylist.txt: 16712) -/.*_advert_1\. -# _advert1. (easylistchina+easylist.txt: 16711) -/.*_advert1\. -# _advert/ (easylistchina+easylist.txt: 16710) -/.*_advert/ -# _advert. (easylistchina+easylist.txt: 16709) -/.*_advert\. -# _Adv_Banner_ (easylistchina+easylist.txt: 16708) -/.*_Adv_Banner_ -# _adv/overlay/ (easylistchina+easylist.txt: 16707) -/.*_adv/overlay/ -# _adv/leaderboard_ (easylistchina+easylist.txt: 16706) -/.*_adv/leaderboard_ -# _adv/300. (easylistchina+easylist.txt: 16705) -/.*_adv/300\. -# _adunit. (easylistchina+easylist.txt: 16704) -/.*_adunit\. -# _adtxt. (easylistchina+easylist.txt: 16703) -/.*_adtxt\. -# _adtop. (easylistchina+easylist.txt: 16702) -/.*_adtop\. -# _adtoma. (easylistchina+easylist.txt: 16701) -/.*_adtoma\. -# _adtitle. (easylistchina+easylist.txt: 16700) -/.*_adtitle\. -# _adtext_ (easylistchina+easylist.txt: 16699) -/.*_adtext_ -# _adtech_ (easylistchina+easylist.txt: 16698) -/.*_adtech_ -# _adtech/$~stylesheet (easylistchina+easylist.txt: 16697) -/.*_adtech/ -# _adtech. (easylistchina+easylist.txt: 16696) -/.*_adtech\. -# _adtech- (easylistchina+easylist.txt: 16695) -/.*_adtech- -# _adtech& (easylistchina+easylist.txt: 16694) -/.*_adtech& -# _adtags. (easylistchina+easylist.txt: 16693) -/.*_adtags\. -# _adsystem/ (easylistchina+easylist.txt: 16692) -/.*_adsystem/ -# _adsys_ (easylistchina+easylist.txt: 16691) -/.*_adsys_ -# _adsys. (easylistchina+easylist.txt: 16690) -/.*_adsys\. -# _adstat. (easylistchina+easylist.txt: 16689) -/.*_adstat\. -# _adssource. (easylistchina+easylist.txt: 16688) -/.*_adssource\. -# _adsrv? (easylistchina+easylist.txt: 16687) -/.*_adsrv\? -# _adsrv= (easylistchina+easylist.txt: 16686) -/.*_adsrv= -# _adsperfectmarket/ (easylistchina+easylist.txt: 16685) -/.*_adsperfectmarket/ -# _adspace_ (easylistchina+easylist.txt: 16684) -/.*_adspace_ -# _adspace- (easylistchina+easylist.txt: 16683) -/.*_adspace- -# _adsonar. (easylistchina+easylist.txt: 16682) -/.*_adsonar\. -# _adskin_ (easylistchina+easylist.txt: 16681) -/.*_adskin_ -# _adskin. (easylistchina+easylist.txt: 16680) -/.*_adskin\. -# _adsjs. (easylistchina+easylist.txt: 16679) -/.*_adsjs\. -# _adshow. (easylistchina+easylist.txt: 16678) -/.*_adshow\. -# _adshare. (easylistchina+easylist.txt: 16677) -/.*_adshare\. -# _adsframe. (easylistchina+easylist.txt: 16676) -/.*_adsframe\. -# _adsetup. (easylistchina+easylist.txt: 16675) -/.*_adsetup\. -# _adserver/ (easylistchina+easylist.txt: 16674) -/.*_adserver/ -# _adserver. (easylistchina+easylist.txt: 16673) -/.*_adserver\. -# _adserved. (easylistchina+easylist.txt: 16672) -/.*_adserved\. -# _adserve/ (easylistchina+easylist.txt: 16671) -/.*_adserve/ -# _adserve. (easylistchina+easylist.txt: 16670) -/.*_adserve\. -# _adsense_ (easylistchina+easylist.txt: 16669) -/.*_adsense_ -# _adsense. (easylistchina+easylist.txt: 16668) -/.*_adsense\. -# _adsdaq. (easylistchina+easylist.txt: 16667) -/.*_adsdaq\. -# _adscript. (easylistchina+easylist.txt: 16666) -/.*_adscript\. -# _adsbgd. (easylistchina+easylist.txt: 16665) -/.*_adsbgd\. -# _ads_top. (easylistchina+easylist.txt: 16664) -/.*_ads_top\. -# _ads_text. (easylistchina+easylist.txt: 16663) -/.*_ads_text\. -# _ads_targeting. (easylistchina+easylist.txt: 16662) -/.*_ads_targeting\. -# _ads_single_ (easylistchina+easylist.txt: 16661) -/.*_ads_single_ -# _ads_reporting. (easylistchina+easylist.txt: 16660) -/.*_ads_reporting\. -# _ads_only& (easylistchina+easylist.txt: 16659) -/.*_ads_only& -# _ads_new. (easylistchina+easylist.txt: 16658) -/.*_ads_new\. -# _ads_multi. (easylistchina+easylist.txt: 16657) -/.*_ads_multi\. -# _ads_index_ (easylistchina+easylist.txt: 16656) -/.*_ads_index_ -# _ads_iframe_ (easylistchina+easylist.txt: 16655) -/.*_ads_iframe_ -# _ads_iframe. (easylistchina+easylist.txt: 16654) -/.*_ads_iframe\. -# _ads_Home. (easylistchina+easylist.txt: 16653) -/.*_ads_Home\. -# _ads_contextualtargeting_ (easylistchina+easylist.txt: 16652) -/.*_ads_contextualtargeting_ -# _ads_cached. (easylistchina+easylist.txt: 16651) -/.*_ads_cached\. -# _ads_async. (easylistchina+easylist.txt: 16650) -/.*_ads_async\. -# _ads? (easylistchina+easylist.txt: 16649) -/.*_ads\? -# _ads9. (easylistchina+easylist.txt: 16648) -/.*_ads9\. -# _ads8. (easylistchina+easylist.txt: 16647) -/.*_ads8\. -# _ads3. (easylistchina+easylist.txt: 16646) -/.*_ads3\. -# _ads2. (easylistchina+easylist.txt: 16645) -/.*_ads2\. -# _ads12. (easylistchina+easylist.txt: 16644) -/.*_ads12\. -# _ads1. (easylistchina+easylist.txt: 16643) -/.*_ads1\. -# _ads/square/ (easylistchina+easylist.txt: 16642) -/.*_ads/square/ -# _ads/js/ (easylistchina+easylist.txt: 16641) -/.*_ads/js/ -# _ads/ip/ (easylistchina+easylist.txt: 16640) -/.*_ads/ip/ -# _ads/inhouse/ (easylistchina+easylist.txt: 16639) -/.*_ads/inhouse/ -# _ads/iframe. (easylistchina+easylist.txt: 16638) -/.*_ads/iframe\. -# _ads/horiz_ (easylistchina+easylist.txt: 16637) -/.*_ads/horiz_ -# _ads/horiz/ (easylistchina+easylist.txt: 16636) -/.*_ads/horiz/ -# _ads/css/ (easylistchina+easylist.txt: 16635) -/.*_ads/css/ -# _ads.php? (easylistchina+easylist.txt: 16634) -/.*_ads\.php\? -# _ads.js? (easylistchina+easylist.txt: 16633) -/.*_ads\.js\? -# _ads.html (easylistchina+easylist.txt: 16632) -/.*_ads\.html -# _ads.cgi (easylistchina+easylist.txt: 16631) -/.*_ads\.cgi -# _ads-affiliates_ (easylistchina+easylist.txt: 16630) -/.*_ads-affiliates_ -# _adrow- (easylistchina+easylist.txt: 16629) -/.*_adrow- -# _adrotator. (easylistchina+easylist.txt: 16628) -/.*_adrotator\. -# _adright2. (easylistchina+easylist.txt: 16627) -/.*_adright2\. -# _adright. (easylistchina+easylist.txt: 16626) -/.*_adright\. -# _adplugin. (easylistchina+easylist.txt: 16625) -/.*_adplugin\. -# _adpartner. (easylistchina+easylist.txt: 16624) -/.*_adpartner\. -# _adpage= (easylistchina+easylist.txt: 16623) -/.*_adpage= -# _adobjects. (easylistchina+easylist.txt: 16622) -/.*_adobjects\. -# _adnetwork. (easylistchina+easylist.txt: 16621) -/.*_adnetwork\. -# _adminka/ (easylistchina+easylist.txt: 16620) -/.*_adminka/ -# _admin/ads/ (easylistchina+easylist.txt: 16619) -/.*_admin/ads/ -# _admarking_ (easylistchina+easylist.txt: 16618) -/.*_admarking_ -# _admanager/ (easylistchina+easylist.txt: 16617) -/.*_admanager/ -# _adlog. (easylistchina+easylist.txt: 16616) -/.*_adlog\. -# _adlinkbar. (easylistchina+easylist.txt: 16615) -/.*_adlinkbar\. -# _adlib. (easylistchina+easylist.txt: 16614) -/.*_adlib\. -# _adlesse. (easylistchina+easylist.txt: 16613) -/.*_adlesse\. -# _adlabel_ (easylistchina+easylist.txt: 16612) -/.*_adlabel_ -# _adjug. (easylistchina+easylist.txt: 16611) -/.*_adjug\. -# _adify. (easylistchina+easylist.txt: 16610) -/.*_adify\. -# _adhub_ (easylistchina+easylist.txt: 16609) -/.*_adhub_ -# _adhoriz. (easylistchina+easylist.txt: 16608) -/.*_adhoriz\. -# _adhome_ (easylistchina+easylist.txt: 16607) -/.*_adhome_ -# _adhome. (easylistchina+easylist.txt: 16606) -/.*_adhome\. -# _adhoc? (easylistchina+easylist.txt: 16605) -/.*_adhoc\? -# _adfunction. (easylistchina+easylist.txt: 16604) -/.*_adfunction\. -# _adframe_ (easylistchina+easylist.txt: 16603) -/.*_adframe_ -# _adframe/ (easylistchina+easylist.txt: 16602) -/.*_adframe/ -# _adframe. (easylistchina+easylist.txt: 16601) -/.*_adframe\. -# _adengine_ (easylistchina+easylist.txt: 16600) -/.*_adengine_ -# _adengage_ (easylistchina+easylist.txt: 16599) -/.*_adengage_ -# _adengage. (easylistchina+easylist.txt: 16598) -/.*_adengage\. -# _adcount= (easylistchina+easylist.txt: 16597) -/.*_adcount= -# _adcontent/ (easylistchina+easylist.txt: 16596) -/.*_adcontent/ -# _adcom. (easylistchina+easylist.txt: 16595) -/.*_adcom\. -# _adchoices. (easylistchina+easylist.txt: 16594) -/.*_adchoices\. -# _adchoice. (easylistchina+easylist.txt: 16593) -/.*_adchoice\. -# _adcall_ (easylistchina+easylist.txt: 16592) -/.*_adcall_ -# _adcall. (easylistchina+easylist.txt: 16591) -/.*_adcall\. -# _adbreak. (easylistchina+easylist.txt: 16590) -/.*_adbreak\. -# _adbox_ (easylistchina+easylist.txt: 16589) -/.*_adbox_ -# _adbox. (easylistchina+easylist.txt: 16588) -/.*_adbox\. -# _adblue. (easylistchina+easylist.txt: 16587) -/.*_adblue\. -# _adbit. (easylistchina+easylist.txt: 16586) -/.*_adbit\. -# _adbg2a. (easylistchina+easylist.txt: 16585) -/.*_adbg2a\. -# _adbg2. (easylistchina+easylist.txt: 16584) -/.*_adbg2\. -# _adbg1a. (easylistchina+easylist.txt: 16583) -/.*_adbg1a\. -# _adbar. (easylistchina+easylist.txt: 16582) -/.*_adbar\. -# _adbanners. (easylistchina+easylist.txt: 16581) -/.*_adbanners\. -# _adbanner_ (easylistchina+easylist.txt: 16580) -/.*_adbanner_ -# _adbanner/ (easylistchina+easylist.txt: 16579) -/.*_adbanner/ -# _adbanner. (easylistchina+easylist.txt: 16578) -/.*_adbanner\. -# _adaptvad. (easylistchina+easylist.txt: 16577) -/.*_adaptvad\. -# _adagency/ (easylistchina+easylist.txt: 16576) -/.*_adagency/ -# _ad_zone_ (easylistchina+easylist.txt: 16575) -/.*_ad_zone_ -# _ad_yellow. (easylistchina+easylist.txt: 16574) -/.*_ad_yellow\. -# _ad_wrapper. (easylistchina+easylist.txt: 16573) -/.*_ad_wrapper\. -# _ad_widesky. (easylistchina+easylist.txt: 16572) -/.*_ad_widesky\. -# _ad_view= (easylistchina+easylist.txt: 16571) -/.*_ad_view= -# _ad_vertical. (easylistchina+easylist.txt: 16570) -/.*_ad_vertical\. -# _ad_url= (easylistchina+easylist.txt: 16569) -/.*_ad_url= -# _ad_template_ (easylistchina+easylist.txt: 16568) -/.*_ad_template_ -# _ad_tall. (easylistchina+easylist.txt: 16567) -/.*_ad_tall\. -# _ad_square. (easylistchina+easylist.txt: 16566) -/.*_ad_square\. -# _ad_sponsor/ (easylistchina+easylist.txt: 16565) -/.*_ad_sponsor/ -# _ad_small. (easylistchina+easylist.txt: 16564) -/.*_ad_small\. -# _ad_slot= (easylistchina+easylist.txt: 16563) -/.*_ad_slot= -# _ad_skyscraper. (easylistchina+easylist.txt: 16562) -/.*_ad_skyscraper\. -# _ad_sky. (easylistchina+easylist.txt: 16561) -/.*_ad_sky\. -# _ad_size. (easylistchina+easylist.txt: 16560) -/.*_ad_size\. -# _ad_side. (easylistchina+easylist.txt: 16559) -/.*_ad_side\. -# _ad_show& (easylistchina+easylist.txt: 16558) -/.*_ad_show& -# _ad_serving. (easylistchina+easylist.txt: 16557) -/.*_ad_serving\. -# _ad_service. (easylistchina+easylist.txt: 16556) -/.*_ad_service\. -# _ad_run. (easylistchina+easylist.txt: 16555) -/.*_ad_run\. -# _ad_right_ (easylistchina+easylist.txt: 16554) -/.*_ad_right_ -# _ad_right. (easylistchina+easylist.txt: 16553) -/.*_ad_right\. -# _ad_renderer_ (easylistchina+easylist.txt: 16552) -/.*_ad_renderer_ -# _ad_render_ (easylistchina+easylist.txt: 16551) -/.*_ad_render_ -# _ad_promo2. (easylistchina+easylist.txt: 16550) -/.*_ad_promo2\. -# _ad_position_ (easylistchina+easylist.txt: 16549) -/.*_ad_position_ -# _ad_placeholder- (easylistchina+easylist.txt: 16548) -/.*_ad_placeholder- -# _ad_page_ (easylistchina+easylist.txt: 16547) -/.*_ad_page_ -# _ad_over_ (easylistchina+easylist.txt: 16546) -/.*_ad_over_ -# _ad_one. (easylistchina+easylist.txt: 16545) -/.*_ad_one\. -# _ad_number= (easylistchina+easylist.txt: 16544) -/.*_ad_number= -# _ad_new_ (easylistchina+easylist.txt: 16543) -/.*_ad_new_ -# _ad_minileaderboard. (easylistchina+easylist.txt: 16542) -/.*_ad_minileaderboard\. -# _ad_middle_ (easylistchina+easylist.txt: 16541) -/.*_ad_middle_ -# _ad_logo. (easylistchina+easylist.txt: 16540) -/.*_ad_logo\. -# _ad_leaderboard. (easylistchina+easylist.txt: 16539) -/.*_ad_leaderboard\. -# _ad_layer_ (easylistchina+easylist.txt: 16538) -/.*_ad_layer_ -# _ad_label. (easylistchina+easylist.txt: 16537) -/.*_ad_label\. -# _ad_interactive. (easylistchina+easylist.txt: 16536) -/.*_ad_interactive\. -# _ad_integration. (easylistchina+easylist.txt: 16535) -/.*_ad_integration\. -# _ad_init/ (easylistchina+easylist.txt: 16534) -/.*_ad_init/ -# _ad_images/ (easylistchina+easylist.txt: 16533) -/.*_ad_images/ -# _ad_image_ (easylistchina+easylist.txt: 16532) -/.*_ad_image_ -# _ad_iframe. (easylistchina+easylist.txt: 16531) -/.*_ad_iframe\. -# _ad_ids= (easylistchina+easylist.txt: 16530) -/.*_ad_ids= -# _ad_homepage. (easylistchina+easylist.txt: 16529) -/.*_ad_homepage\. -# _ad_heading. (easylistchina+easylist.txt: 16528) -/.*_ad_heading\. -# _ad_header. (easylistchina+easylist.txt: 16527) -/.*_ad_header\. -# _ad_head. (easylistchina+easylist.txt: 16526) -/.*_ad_head\. -# _ad_handler. (easylistchina+easylist.txt: 16525) -/.*_ad_handler\. -# _ad_frame. (easylistchina+easylist.txt: 16524) -/.*_ad_frame\. -# _ad_footer_ (easylistchina+easylist.txt: 16523) -/.*_ad_footer_ -# _ad_footer. (easylistchina+easylist.txt: 16522) -/.*_ad_footer\. -# _ad_feed. (easylistchina+easylist.txt: 16521) -/.*_ad_feed\. -# _ad_expand_ (easylistchina+easylist.txt: 16520) -/.*_ad_expand_ -# _ad_engine/ (easylistchina+easylist.txt: 16519) -/.*_ad_engine/ -# _ad_end_ (easylistchina+easylist.txt: 16518) -/.*_ad_end_ -# _ad_domain_ (easylistchina+easylist.txt: 16517) -/.*_ad_domain_ -# _ad_div= (easylistchina+easylist.txt: 16516) -/.*_ad_div= -# _ad_desktop_ (easylistchina+easylist.txt: 16515) -/.*_ad_desktop_ -# _ad_courier. (easylistchina+easylist.txt: 16514) -/.*_ad_courier\. -# _ad_count= (easylistchina+easylist.txt: 16513) -/.*_ad_count= -# _ad_count. (easylistchina+easylist.txt: 16512) -/.*_ad_count\. -# _ad_controller. (easylistchina+easylist.txt: 16511) -/.*_ad_controller\. -# _ad_content. (easylistchina+easylist.txt: 16510) -/.*_ad_content\. -# _ad_code. (easylistchina+easylist.txt: 16509) -/.*_ad_code\. -# _ad_close. (easylistchina+easylist.txt: 16508) -/.*_ad_close\. -# _ad_choices_ (easylistchina+easylist.txt: 16507) -/.*_ad_choices_ -# _ad_choices. (easylistchina+easylist.txt: 16506) -/.*_ad_choices\. -# _ad_change. (easylistchina+easylist.txt: 16505) -/.*_ad_change\. -# _ad_center. (easylistchina+easylist.txt: 16504) -/.*_ad_center\. -# _ad_bsb. (easylistchina+easylist.txt: 16503) -/.*_ad_bsb\. -# _ad_box. (easylistchina+easylist.txt: 16502) -/.*_ad_box\. -# _ad_bottom. (easylistchina+easylist.txt: 16501) -/.*_ad_bottom\. -# _ad_block& (easylistchina+easylist.txt: 16500) -/.*_ad_block& -# _ad_big. (easylistchina+easylist.txt: 16499) -/.*_ad_big\. -# _ad_banner_ (easylistchina+easylist.txt: 16498) -/.*_ad_banner_ -# _ad_banner. (easylistchina+easylist.txt: 16497) -/.*_ad_banner\. -# _ad_background. (easylistchina+easylist.txt: 16496) -/.*_ad_background\. -# _ad_article_ (easylistchina+easylist.txt: 16495) -/.*_ad_article_ -# _ad_actron. (easylistchina+easylist.txt: 16494) -/.*_ad_actron\. -# _ad_350x250. (easylistchina+easylist.txt: 16493) -/.*_ad_350x250\. -# _ad_300. (easylistchina+easylist.txt: 16492) -/.*_ad_300\. -# _ad_2012. (easylistchina+easylist.txt: 16491) -/.*_ad_2012\. -# _ad_125x125. (easylistchina+easylist.txt: 16490) -/.*_ad_125x125\. -# _ad?size= (easylistchina+easylist.txt: 16489) -/.*_ad\?size= -# _ad?darttag= (easylistchina+easylist.txt: 16488) -/.*_ad\?darttag= -# _ad9. (easylistchina+easylist.txt: 16487) -/.*_ad9\. -# _ad728x90. (easylistchina+easylist.txt: 16486) -/.*_ad728x90\. -# _ad6. (easylistchina+easylist.txt: 16485) -/.*_ad6\. -# _ad300x250. (easylistchina+easylist.txt: 16484) -/.*_ad300x250\. -# _ad300. (easylistchina+easylist.txt: 16483) -/.*_ad300\. -# _ad3. (easylistchina+easylist.txt: 16482) -/.*_ad3\. -# _ad234x90- (easylistchina+easylist.txt: 16481) -/.*_ad234x90- -# _ad2. (easylistchina+easylist.txt: 16480) -/.*_ad2\. -# _ad1b. (easylistchina+easylist.txt: 16479) -/.*_ad1b\. -# _ad1a. (easylistchina+easylist.txt: 16478) -/.*_ad1a\. -# _Ad125. (easylistchina+easylist.txt: 16477) -/.*_Ad125\. -# _ad120x120_ (easylistchina+easylist.txt: 16476) -/.*_ad120x120_ -# _ad103. (easylistchina+easylist.txt: 16475) -/.*_ad103\. -# _ad1.$~stylesheet (easylistchina+easylist.txt: 16474) -/.*_ad1\. -# _ad01_ (easylistchina+easylist.txt: 16473) -/.*_ad01_ -# _ad01. (easylistchina+easylist.txt: 16472) -/.*_ad01\. -# _ad/section_ (easylistchina+easylist.txt: 16471) -/.*_ad/section_ -# _ad/public/ (easylistchina+easylist.txt: 16470) -/.*_ad/public/ -# _AD/jquery. (easylistchina+easylist.txt: 16469) -/.*_AD/jquery\. -# _ad/full_ (easylistchina+easylist.txt: 16468) -/.*_ad/full_ -# _ad/display? (easylistchina+easylist.txt: 16467) -/.*_ad/display\? -# _ad.png? (easylistchina+easylist.txt: 16466) -/.*_ad\.png\? -# _ad.php? (easylistchina+easylist.txt: 16465) -/.*_ad\.php\? -# _ad.jsp? (easylistchina+easylist.txt: 16464) -/.*_ad\.jsp\? -# _ad.gif| (easylistchina+easylist.txt: 16463) -/.*_ad\.gif$ -# _ad-125x125. (easylistchina+easylist.txt: 16462) -/.*_ad-125x125\. -# _ad&zone= (easylistchina+easylist.txt: 16461) -/.*_ad&zone= -# _acorn_ad_ (easylistchina+easylist.txt: 16460) -/.*_acorn_ad_ -# _728x90ad_ (easylistchina+easylist.txt: 16459) -/.*_728x90ad_ -# _468x60ad. (easylistchina+easylist.txt: 16458) -/.*_468x60ad\. -# _300x250Banner_ (easylistchina+easylist.txt: 16457) -/.*_300x250Banner_ -# _160x550. (easylistchina+easylist.txt: 16456) -/.*_160x550\. -# _160_ad_ (easylistchina+easylist.txt: 16455) -/.*_160_ad_ -# _125ad. (easylistchina+easylist.txt: 16454) -/.*_125ad\. -# ^pid=Ads^ (easylistchina+easylist.txt: 16453) -/(.*[^\w%.-])?pid=Ads[^\w%.-] -# ^mod=wms&do=view_*&zone= (easylistchina+easylist.txt: 16452) -/(.*[^\w%.-])?mod=wms&do=view_.*&zone= -# ^fp=*&prvtof= (easylistchina+easylist.txt: 16451) -/(.*[^\w%.-])?fp=.*&prvtof= -# ?ZoneID=*&SiteID=*&PageID= (easylistchina+easylist.txt: 16450) -/.*\?ZoneID=.*&SiteID=.*&PageID= -# ?ZoneID=*&PageID=*&SiteID= (easylistchina+easylist.txt: 16449) -/.*\?ZoneID=.*&PageID=.*&SiteID= -# ?wpproadszoneid= (easylistchina+easylist.txt: 16448) -/.*\?wpproadszoneid= -# ?wm=*&prm=rev& (easylistchina+easylist.txt: 16447) -/.*\?wm=.*&prm=rev& -# ?view=ad& (easylistchina+easylist.txt: 16446) -/.*\?view=ad& -# ?type=oas_pop& (easylistchina+easylist.txt: 16445) -/.*\?type=oas_pop& -# ?type=ad& (easylistchina+easylist.txt: 16444) -/.*\?type=ad& -# ?simple_ad_ (easylistchina+easylist.txt: 16443) -/.*\?simple_ad_ -# ?sid=ads (easylistchina+easylist.txt: 16442) -/.*\?sid=ads -# ?service=ad& (easylistchina+easylist.txt: 16441) -/.*\?service=ad& -# ?phpAds_ (easylistchina+easylist.txt: 16440) -/.*\?phpAds_ -# ?OASTagURL= (easylistchina+easylist.txt: 16439) -/.*\?OASTagURL= -# ?module=ads/ (easylistchina+easylist.txt: 16438) -/.*\?module=ads/ -# ?idaffiliation= (easylistchina+easylist.txt: 16437) -/.*\?idaffiliation= -# ?handler=ads& (easylistchina+easylist.txt: 16436) -/.*\?handler=ads& -# ?goto=ad| (easylistchina+easylist.txt: 16435) -/.*\?goto=ad$ -# ?getad=&$~object-subrequest (easylistchina+easylist.txt: 16434) -/.*\?getad=& -# ?g1t2h=*&t1m2k3= (easylistchina+easylist.txt: 16433) -/.*\?g1t2h=.*&t1m2k3= -# ?file=ads& (easylistchina+easylist.txt: 16432) -/.*\?file=ads& -# ?dfpadname= (easylistchina+easylist.txt: 16431) -/.*\?dfpadname= -# ?bannerXGroupId= (easylistchina+easylist.txt: 16430) -/.*\?bannerXGroupId= -# ?bannerid= (easylistchina+easylist.txt: 16429) -/.*\?bannerid= -# ?banner_id= (easylistchina+easylist.txt: 16428) -/.*\?banner_id= -# ?banner.id= (easylistchina+easylist.txt: 16427) -/.*\?banner\.id= -# ?adzone= (easylistchina+easylist.txt: 16426) -/.*\?adzone= -# ?adx= (easylistchina+easylist.txt: 16425) -/.*\?adx= -# ?advurl= (easylistchina+easylist.txt: 16424) -/.*\?advurl= -# ?advtile= (easylistchina+easylist.txt: 16423) -/.*\?advtile= -# ?advsystem= (easylistchina+easylist.txt: 16422) -/.*\?advsystem= -# ?advideo_ (easylistchina+easylist.txt: 16421) -/.*\?advideo_ -# ?advertising= (easylistchina+easylist.txt: 16420) -/.*\?advertising= -# ?advertiser= (easylistchina+easylist.txt: 16417) -/.*\?advertiser= -# ?advertisement= (easylistchina+easylist.txt: 16416) -/.*\?advertisement= -# ?advert_key= (easylistchina+easylist.txt: 16415) -/.*\?advert_key= -# ?adversion= (easylistchina+easylist.txt: 16414) -/.*\?adversion= -# ?adv_type= (easylistchina+easylist.txt: 16413) -/.*\?adv_type= -# ?adv/id= (easylistchina+easylist.txt: 16412) -/.*\?adv/id= -# ?adunitname= (easylistchina+easylist.txt: 16411) -/.*\?adunitname= -# ?adunitid= (easylistchina+easylist.txt: 16410) -/.*\?adunitid= -# ?adunit_id= (easylistchina+easylist.txt: 16409) -/.*\?adunit_id= -# ?adtype= (easylistchina+easylist.txt: 16408) -/.*\?adtype= -# ?adtechplacementid= (easylistchina+easylist.txt: 16407) -/.*\?adtechplacementid= -# ?adtarget= (easylistchina+easylist.txt: 16406) -/.*\?adtarget= -# ?adTagUrl= (easylistchina+easylist.txt: 16405) -/.*\?adTagUrl= -# ?adtag= (easylistchina+easylist.txt: 16404) -/.*\?adtag= -# ?adslot= (easylistchina+easylist.txt: 16403) -/.*\?adslot= -# ?adsize= (easylistchina+easylist.txt: 16402) -/.*\?adsize= -# ?adsite= (easylistchina+easylist.txt: 16401) -/.*\?adsite= -# ?adsdata= (easylistchina+easylist.txt: 16400) -/.*\?adsdata= -# ?ads= (easylistchina+easylist.txt: 16399) -/.*\?ads= -# ?adpartner= (easylistchina+easylist.txt: 16398) -/.*\?adpartner= -# ?adpage= (easylistchina+easylist.txt: 16397) -/.*\?adpage= -# ?adlocation= (easylistchina+easylist.txt: 16396) -/.*\?adlocation= -# ?adloc= (easylistchina+easylist.txt: 16395) -/.*\?adloc= -# ?adfox_ (easylistchina+easylist.txt: 16394) -/.*\?adfox_ -# ?adformat= (easylistchina+easylist.txt: 16393) -/.*\?adformat= -# ?adflashid= (easylistchina+easylist.txt: 16392) -/.*\?adflashid= -# ?adCount= (easylistchina+easylist.txt: 16391) -/.*\?adCount= -# ?adcontext= (easylistchina+easylist.txt: 16390) -/.*\?adcontext= -# ?adclass= (easylistchina+easylist.txt: 16389) -/.*\?adclass= -# ?adarea= (easylistchina+easylist.txt: 16388) -/.*\?adarea= -# ?ad_width= (easylistchina+easylist.txt: 16387) -/.*\?ad_width= -# ?ad_type= (easylistchina+easylist.txt: 16386) -/.*\?ad_type= -# ?ad_tag= (easylistchina+easylist.txt: 16385) -/.*\?ad_tag= -# ?ad_size= (easylistchina+easylist.txt: 16384) -/.*\?ad_size= -# ?ad_ids= (easylistchina+easylist.txt: 16383) -/.*\?ad_ids= -# ?action=ads& (easylistchina+easylist.txt: 16382) -/.*\?action=ads& -# ?*=x55g%3add4vv4fy. (easylistchina+easylist.txt: 16381) -/.*\?.*=x55g%3add4vv4fy\. -# =webad2& (easylistchina+easylist.txt: 16380) -/.*=webad2& -# =web&ads= (easylistchina+easylist.txt: 16379) -/.*=web&ads= -# =tickerReportAdCallback_ (easylistchina+easylist.txt: 16378) -/.*=tickerReportAdCallback_ -# =textads& (easylistchina+easylist.txt: 16377) -/.*=textads& -# =simpleads/ (easylistchina+easylist.txt: 16376) -/.*=simpleads/ -# =showsearchgoogleads& (easylistchina+easylist.txt: 16375) -/.*=showsearchgoogleads& -# =searchadslider| (easylistchina+easylist.txt: 16374) -/.*=searchadslider$ -# =rightAds_ (easylistchina+easylist.txt: 16373) -/.*=rightAds_ -# =oas_tag. (easylistchina+easylist.txt: 16372) -/.*=oas_tag\. -# =js_ads& (easylistchina+easylist.txt: 16371) -/.*=js_ads& -# =iframe_adv& (easylistchina+easylist.txt: 16370) -/.*=iframe_adv& -# =half-page-ad& (easylistchina+easylist.txt: 16369) -/.*=half-page-ad& -# =GetSponsorAds& (easylistchina+easylist.txt: 16368) -/.*=GetSponsorAds& -# =dynamicwebad& (easylistchina+easylist.txt: 16367) -/.*=dynamicwebad& -# =dynamicads& (easylistchina+easylist.txt: 16366) -/.*=dynamicads& -# =displayAds& (easylistchina+easylist.txt: 16365) -/.*=displayAds& -# =DisplayAd& (easylistchina+easylist.txt: 16364) -/.*=DisplayAd& -# =display_ad& (easylistchina+easylist.txt: 16363) -/.*=display_ad& -# =deliverAdFrame& (easylistchina+easylist.txt: 16362) -/.*=deliverAdFrame& -# =dartad_ (easylistchina+easylist.txt: 16361) -/.*=dartad_ -# =com_ads& (easylistchina+easylist.txt: 16360) -/.*=com_ads& -# =clkads/ (easylistchina+easylist.txt: 16359) -/.*=clkads/ -# =big-ad-switch_ (easylistchina+easylist.txt: 16358) -/.*=big-ad-switch_ -# =banners_ad& (easylistchina+easylist.txt: 16357) -/.*=banners_ad& -# =akiba_ads_ (easylistchina+easylist.txt: 16356) -/.*=akiba_ads_ -# =adView& (easylistchina+easylist.txt: 16355) -/.*=adView& -# =advertorial& (easylistchina+easylist.txt: 16354) -/.*=advertorial& -# =advertiser/ (easylistchina+easylist.txt: 16353) -/.*=advertiser/ -# =advertiser. (easylistchina+easylist.txt: 16352) -/.*=advertiser\. -# =advert/ (easylistchina+easylist.txt: 16351) -/.*=advert/ -# =adunit& (easylistchina+easylist.txt: 16350) -/.*=adunit& -# =adtech_ (easylistchina+easylist.txt: 16349) -/.*=adtech_ -# =adspremiumplacement& (easylistchina+easylist.txt: 16348) -/.*=adspremiumplacement& -# =adslot& (easylistchina+easylist.txt: 16347) -/.*=adslot& -# =adshow& (easylistchina+easylist.txt: 16346) -/.*=adshow& -# =adsfinal. (easylistchina+easylist.txt: 16345) -/.*=adsfinal\. -# =adscripts& (easylistchina+easylist.txt: 16344) -/.*=adscripts& -# =adsCallback& (easylistchina+easylist.txt: 16343) -/.*=adsCallback& -# =adreplacementWrapperReg. (easylistchina+easylist.txt: 16342) -/.*=adreplacementWrapperReg\. -# =admodeliframe& (easylistchina+easylist.txt: 16341) -/.*=admodeliframe& -# =adMenu& (easylistchina+easylist.txt: 16340) -/.*=adMenu& -# =admeld& (easylistchina+easylist.txt: 16339) -/.*=admeld& -# =adlabs& (easylistchina+easylist.txt: 16338) -/.*=adlabs& -# =adexpert& (easylistchina+easylist.txt: 16337) -/.*=adexpert& -# =adcode& (easylistchina+easylist.txt: 16336) -/.*=adcode& -# =adcenter& (easylistchina+easylist.txt: 16335) -/.*=adcenter& -# =adbanner_ (easylistchina+easylist.txt: 16334) -/.*=adbanner_ -# =ad_iframe_ (easylistchina+easylist.txt: 16333) -/.*=ad_iframe_ -# =ad_iframe& (easylistchina+easylist.txt: 16332) -/.*=ad_iframe& -# =ad320x50- (easylistchina+easylist.txt: 16331) -/.*=ad320x50- -# =ad-rectangle- (easylistchina+easylist.txt: 16330) -/.*=ad-rectangle- -# =ad-leaderboard- (easylistchina+easylist.txt: 16329) -/.*=ad-leaderboard- -# ;iframeid=ad_ (easylistchina+easylist.txt: 16328) -/.*;iframeid=ad_ -# ;cue=pre;$object-subrequest (easylistchina+easylist.txt: 16327) -/.*;cue=pre; -# ;adsense_ (easylistchina+easylist.txt: 16326) -/.*;adsense_ -# :8080/ads/ (easylistchina+easylist.txt: 16325) -/.*:8080/ads/ -# ://wrapper.*/a? (easylistchina+easylist.txt: 16324) -/.*://wrapper\..*/a\? -wrapper.*./(.*/)?a\? -# ://synad. (easylistchina+easylist.txt: 16323) -/.*://synad\. -synad.*. -# ://rss.*/~a/ (easylistchina+easylist.txt: 16322) -/.*://rss\..*/~a/ -rss.*./(.*/)?~a/ -# ://promo.$third-party (easylistchina+easylist.txt: 16321) -/.*://promo\. -promo.*. -# ://pop-over. (easylistchina+easylist.txt: 16320) -/.*://pop-over\. -pop-over.*. -# ://ox-*/jstag^ (easylistchina+easylist.txt: 16319) -/.*://ox-.*/jstag[^\w%.-] -ox-*./(.*/)?jstag[^\w%.-] -# ://oas.*@ (easylistchina+easylist.txt: 16318) -/.*://oas\..*@ -oas.*./.*@ -# ://findnsave.*.*/td/portablerop.aspx? (easylistchina+easylist.txt: 16317) -/.*://findnsave\..*\..*/td/portablerop\.aspx\? -findnsave.*./.*\..*/td/portablerop\.aspx\? -findnsave.*.*./(.*/)?td/portablerop\.aspx\? -# ://findnsave.*.*/api/groupon.json? (easylistchina+easylist.txt: 16316) -/.*://findnsave\..*\..*/api/groupon\.json\? -findnsave.*./.*\..*/api/groupon\.json\? -findnsave.*.*./(.*/)?api/groupon\.json\? -# ://feeds.*/~a/ (easylistchina+easylist.txt: 16315) -/.*://feeds\..*/~a/ -feeds.*./(.*/)?~a/ -# ://delivery.*/jstag^ (easylistchina+easylist.txt: 16314) -/.*://delivery\..*/jstag[^\w%.-] -delivery.*./(.*/)?jstag[^\w%.-] -# ://bwp.*/search (easylistchina+easylist.txt: 16313) -/.*://bwp\..*/search -bwp.*./(.*/)?search -# ://banners.$third-party (easylistchina+easylist.txt: 16312) -/.*://banners\. -banners.*. -# ://banner.$third-party (easylistchina+easylist.txt: 16311) -/.*://banner\. -banner.*. -# ://ax-d.*/jstag^ (easylistchina+easylist.txt: 16310) -/.*://ax-d\..*/jstag[^\w%.-] -ax-d.*./(.*/)?jstag[^\w%.-] -# ://affiliates.$third-party (easylistchina+easylist.txt: 16309) -/.*://affiliates\. -affiliates.*. -# ://affiliate.$third-party (easylistchina+easylist.txt: 16308) -/.*://affiliate\. -affiliate.*. -# ://ads. (easylistchina+easylist.txt: 16306) -/.*://ads\. -ads.*. -# ://adcl. (easylistchina+easylist.txt: 16305) -/.*://adcl\. -adcl.*. -# ://ad.*/jstag^ (easylistchina+easylist.txt: 16304) -/.*://ad\..*/jstag[^\w%.-] -ad.*./(.*/)?jstag[^\w%.-] -# ://a.ads. (easylistchina+easylist.txt: 16303) -/.*://a\.ads\. -a.ads.*. -# /~cdn/ads/* (easylistchina+easylist.txt: 16302) -/(.*/)?~cdn/ads/.* -# /zedo_ (easylistchina+easylist.txt: 16301) -/(.*/)?zedo_ -# /zanox_ad/* (easylistchina+easylist.txt: 16300) -/(.*/)?zanox_ad/.* -# /zanox/banner/* (easylistchina+easylist.txt: 16299) -/(.*/)?zanox/banner/.* -# /zalando-ad- (easylistchina+easylist.txt: 16298) -/(.*/)?zalando-ad- -zalando-ad-*. -# /zagcookie_ (easylistchina+easylist.txt: 16297) -/(.*/)?zagcookie_ -# /z/ads/* (easylistchina+easylist.txt: 16296) -/(.*/)?z/ads/.* -# /z-ads. (easylistchina+easylist.txt: 16295) -/(.*/)?z-ads\. -z-ads.*. -# /yume_ad_library_ (easylistchina+easylist.txt: 16294) -/(.*/)?yume_ad_library_ -# /ysmwrapper.js (easylistchina+easylist.txt: 16293) -/(.*/)?ysmwrapper\.js -ysmwrapper.js*. -# /ysmads. (easylistchina+easylist.txt: 16292) -/(.*/)?ysmads\. -ysmads.*. -# /ysc_csc_news (easylistchina+easylist.txt: 16291) -/(.*/)?ysc_csc_news -# /ypad/* (easylistchina+easylist.txt: 16290) -/(.*/)?ypad/.* -# /youradhere_ (easylistchina+easylist.txt: 16289) -/(.*/)?youradhere_ -# /youradhere468- (easylistchina+easylist.txt: 16288) -/(.*/)?youradhere468- -youradhere468-*. -# /youradhere. (easylistchina+easylist.txt: 16287) -/(.*/)?youradhere\. -youradhere.*. -# /yourad1. (easylistchina+easylist.txt: 16286) -/(.*/)?yourad1\. -yourad1.*. -# /your_ad. (easylistchina+easylist.txt: 16285) -/(.*/)?your_ad\. -# /your-ad. (easylistchina+easylist.txt: 16284) -/(.*/)?your-ad\. -your-ad.*. -# /your-ad- (easylistchina+easylist.txt: 16283) -/(.*/)?your-ad- -your-ad-*. -# /yld_mgr/* (easylistchina+easylist.txt: 16282) -/(.*/)?yld_mgr/.* -# /yld/js/* (easylistchina+easylist.txt: 16281) -/(.*/)?yld/js/.* -# /yin-ad/* (easylistchina+easylist.txt: 16280) -/(.*/)?yin-ad/.* -# /yieldmanager/* (easylistchina+easylist.txt: 16279) -/(.*/)?yieldmanager/.* -# /yieldlab. (easylistchina+easylist.txt: 16278) -/(.*/)?yieldlab\. -yieldlab.*. -# /yieldads. (easylistchina+easylist.txt: 16277) -/(.*/)?yieldads\. -yieldads.*. -# /yhs/ads? (easylistchina+easylist.txt: 16276) -/(.*/)?yhs/ads\? -# /yesbaby. (easylistchina+easylist.txt: 16275) -/(.*/)?yesbaby\. -yesbaby.*. -# /yellowpagesads/* (easylistchina+easylist.txt: 16274) -/(.*/)?yellowpagesads/.* -# /yahoofeedproxy. (easylistchina+easylist.txt: 16273) -/(.*/)?yahoofeedproxy\. -yahoofeedproxy.*. -# /yahooadsobject. (easylistchina+easylist.txt: 16272) -/(.*/)?yahooadsobject\. -yahooadsobject.*. -# /yahooadsapi. (easylistchina+easylist.txt: 16271) -/(.*/)?yahooadsapi\. -yahooadsapi.*. -# /yahooads/* (easylistchina+easylist.txt: 16270) -/(.*/)?yahooads/.* -# /yahooads. (easylistchina+easylist.txt: 16269) -/(.*/)?yahooads\. -yahooads.*. -# /YahooAd_ (easylistchina+easylist.txt: 16268) -/(.*/)?YahooAd_ -# /yahoo_overture. (easylistchina+easylist.txt: 16267) -/(.*/)?yahoo_overture\. -# /yahoo/ads. (easylistchina+easylist.txt: 16266) -/(.*/)?yahoo/ads\. -# /yahoo-ads/* (easylistchina+easylist.txt: 16265) -/(.*/)?yahoo-ads/.* -# /yahoo-ad- (easylistchina+easylist.txt: 16264) -/(.*/)?yahoo-ad- -yahoo-ad-*. -# /yads_ (easylistchina+easylist.txt: 16263) -/(.*/)?yads_ -# /yads/* (easylistchina+easylist.txt: 16262) -/(.*/)?yads/.* -# /yads. (easylistchina+easylist.txt: 16261) -/(.*/)?yads\. -yads.*. -# /yads- (easylistchina+easylist.txt: 16260) -/(.*/)?yads- -yads-*. -# /xxxmatch_ (easylistchina+easylist.txt: 16259) -/(.*/)?xxxmatch_ -# /xwords. (easylistchina+easylist.txt: 16258) -/(.*/)?xwords\. -xwords.*. -# /xpiads. (easylistchina+easylist.txt: 16256) -/(.*/)?xpiads\. -xpiads.*. -# /xnxx-ads. (easylistchina+easylist.txt: 16255) -/(.*/)?xnxx-ads\. -xnxx-ads.*. -# /xmladparser. (easylistchina+easylist.txt: 16254) -/(.*/)?xmladparser\. -xmladparser.*. -# /xml/ads_ (easylistchina+easylist.txt: 16253) -/(.*/)?xml/ads_ -# /xml/ad/* (easylistchina+easylist.txt: 16252) -/(.*/)?xml/ad/.* -# /xlayer/layer.php?uid=$script (easylistchina+easylist.txt: 16251) -/(.*/)?xlayer/layer\.php\?uid= -# /xhr/ad/* (easylistchina+easylist.txt: 16250) -/(.*/)?xhr/ad/.* -# /xfiles/ads/* (easylistchina+easylist.txt: 16249) -/(.*/)?xfiles/ads/.* -# /xclicks. (easylistchina+easylist.txt: 16248) -/(.*/)?xclicks\. -xclicks.*. -# /xbanner.php? (easylistchina+easylist.txt: 16247) -/(.*/)?xbanner\.php\? -# /xadvertisement. (easylistchina+easylist.txt: 16246) -/(.*/)?xadvertisement\. -xadvertisement.*. -# /xads.php (easylistchina+easylist.txt: 16245) -/(.*/)?xads\.php -xads.php*. -# /x5advcorner. (easylistchina+easylist.txt: 16244) -/(.*/)?x5advcorner\. -x5advcorner.*. -# /www/js/ad/* (easylistchina+easylist.txt: 16243) -/(.*/)?www/js/ad/.* -# /www/delivery/* (easylistchina+easylist.txt: 16242) -/(.*/)?www/delivery/.* -# /www/deliverx/* (easylistchina+easylist.txt: 16241) -/(.*/)?www/deliverx/.* -# /www/ads/* (easylistchina+easylist.txt: 16240) -/(.*/)?www/ads/.* -# /www/ad/* (easylistchina+easylist.txt: 16239) -/(.*/)?www/ad/.* -# /wwe_ads/* (easylistchina+easylist.txt: 16238) -/(.*/)?wwe_ads/.* -# /wwe_ads. (easylistchina+easylist.txt: 16237) -/(.*/)?wwe_ads\. -# /writelayerad. (easylistchina+easylist.txt: 16236) -/(.*/)?writelayerad\. -writelayerad.*. -# /wrapper/ads/* (easylistchina+easylist.txt: 16235) -/(.*/)?wrapper/ads/.* -# /wpproads. (easylistchina+easylist.txt: 16234) -/(.*/)?wpproads\. -wpproads.*. -# /wpproadds. (easylistchina+easylist.txt: 16233) -/(.*/)?wpproadds\. -wpproadds.*. -# /wpbanners_show.php (easylistchina+easylist.txt: 16232) -/(.*/)?wpbanners_show\.php -# /wpads/iframe. (easylistchina+easylist.txt: 16231) -/(.*/)?wpads/iframe\. -# /wp_pro_ad_system/* (easylistchina+easylist.txt: 16230) -/(.*/)?wp_pro_ad_system/.* -# /wp_ad_250_ (easylistchina+easylist.txt: 16229) -/(.*/)?wp_ad_250_ -# /wp_ad_250. (easylistchina+easylist.txt: 16228) -/(.*/)?wp_ad_250\. -# /wp-srv/ad/* (easylistchina+easylist.txt: 16227) -/(.*/)?wp-srv/ad/.* -# /wp-popup-scheduler/* (easylistchina+easylist.txt: 16226) -/(.*/)?wp-popup-scheduler/.* -# /wp-content/uploads/useful_banner_manager_banners/* (easylistchina+easylist.txt: 16225) -/(.*/)?wp-content/uploads/useful_banner_manager_banners/.* -# /wp-content/plugins/wp-super-popup/*$~stylesheet (easylistchina+easylist.txt: 16224) -/(.*/)?wp-content/plugins/wp-super-popup/.* -# /wp-content/plugins/wp-super-popup-pro/* (easylistchina+easylist.txt: 16223) -/(.*/)?wp-content/plugins/wp-super-popup-pro/.* -# /wp-content/plugins/wp-bannerize/* (easylistchina+easylist.txt: 16222) -/(.*/)?wp-content/plugins/wp-bannerize/.* -# /wp-content/plugins/useful-banner-manager/* (easylistchina+easylist.txt: 16221) -/(.*/)?wp-content/plugins/useful-banner-manager/.* -# /wp-content/plugins/platinumpopup/* (easylistchina+easylist.txt: 16220) -/(.*/)?wp-content/plugins/platinumpopup/.* -# /wp-content/plugins/m-wp-popup/*$~stylesheet (easylistchina+easylist.txt: 16219) -/(.*/)?wp-content/plugins/m-wp-popup/.* -# /wp-content/plugins/fasterim-optin/* (easylistchina+easylist.txt: 16218) -/(.*/)?wp-content/plugins/fasterim-optin/.* -# /wp-content/plugins/bhcb/lock.js (easylistchina+easylist.txt: 16217) -/(.*/)?wp-content/plugins/bhcb/lock\.js -# /wp-content/plugins/banner-manager/* (easylistchina+easylist.txt: 16216) -/(.*/)?wp-content/plugins/banner-manager/.* -# /wp-content/plugins/automatic-social-locker/* (easylistchina+easylist.txt: 16215) -/(.*/)?wp-content/plugins/automatic-social-locker/.* -# /wp-content/plugins/amazon-product-in-a-post-plugin/* (easylistchina+easylist.txt: 16214) -/(.*/)?wp-content/plugins/amazon-product-in-a-post-plugin/.* -# /wp-content/mbp-banner/* (easylistchina+easylist.txt: 16213) -/(.*/)?wp-content/mbp-banner/.* -# /wp-content/ads/* (easylistchina+easylist.txt: 16212) -/(.*/)?wp-content/ads/.* -# /work.php?n=*&size=*&c= (easylistchina+easylist.txt: 16211) -/(.*/)?work\.php\?n=.*&size=.*&c= -# /wordpress-ads-plug-in/* (easylistchina+easylist.txt: 16210) -/(.*/)?wordpress-ads-plug-in/.* -# /wmads. (easylistchina+easylist.txt: 16209) -/(.*/)?wmads\. -wmads.*. -# /wlbetathome/bannerflow/* (easylistchina+easylist.txt: 16208) -/(.*/)?wlbetathome/bannerflow/.* -# /wix-ad. (easylistchina+easylist.txt: 16207) -/(.*/)?wix-ad\. -wix-ad.*. -# /wired/ads/* (easylistchina+easylist.txt: 16206) -/(.*/)?wired/ads/.* -# /wire/ads/* (easylistchina+easylist.txt: 16205) -/(.*/)?wire/ads/.* -# /wipeads/* (easylistchina+easylist.txt: 16204) -/(.*/)?wipeads/.* -# /widgets/sponsored/* (easylistchina+easylist.txt: 16203) -/(.*/)?widgets/sponsored/.* -# /widgets/ads. (easylistchina+easylist.txt: 16202) -/(.*/)?widgets/ads\. -# /widgetadsense. (easylistchina+easylist.txt: 16201) -/(.*/)?widgetadsense\. -widgetadsense.*. -# /widgetad. (easylistchina+easylist.txt: 16200) -/(.*/)?widgetad\. -widgetad.*. -# /widget/ads/* (easylistchina+easylist.txt: 16199) -/(.*/)?widget/ads/.* -# /widget/ads. (easylistchina+easylist.txt: 16198) -/(.*/)?widget/ads\. -# /widget/ad/* (easylistchina+easylist.txt: 16197) -/(.*/)?widget/ad/.* -# /werbebanner/* (easylistchina+easylist.txt: 16196) -/(.*/)?werbebanner/.* -# /welcomeadredirect. (easylistchina+easylist.txt: 16195) -/(.*/)?welcomeadredirect\. -welcomeadredirect.*. -# /welcomead. (easylistchina+easylist.txt: 16194) -/(.*/)?welcomead\. -welcomead.*. -# /welcome_ad. (easylistchina+easylist.txt: 16193) -/(.*/)?welcome_ad\. -# /weeklyAdsLabel. (easylistchina+easylist.txt: 16192) -/(.*/)?weeklyAdsLabel\. -weeklyAdsLabel.*. -# /weborama.js (easylistchina+easylist.txt: 16191) -/(.*/)?weborama\.js -weborama.js*. -# /webmaster_ads/* (easylistchina+easylist.txt: 16190) -/(.*/)?webmaster_ads/.* -# /webmailad. (easylistchina+easylist.txt: 16189) -/(.*/)?webmailad\. -webmailad.*. -# /webadverts/* (easylistchina+easylist.txt: 16188) -/(.*/)?webadverts/.* -# /webadvert3/* (easylistchina+easylist.txt: 16187) -/(.*/)?webadvert3/.* -# /webadvert/* (easylistchina+easylist.txt: 16186) -/(.*/)?webadvert/.* -# /webadvert. (easylistchina+easylist.txt: 16185) -/(.*/)?webadvert\. -webadvert.*. -# /webadserver. (easylistchina+easylist.txt: 16184) -/(.*/)?webadserver\. -webadserver.*. -# /webads_ (easylistchina+easylist.txt: 16183) -/(.*/)?webads_ -# /webads/* (easylistchina+easylist.txt: 16182) -/(.*/)?webads/.* -# /webads. (easylistchina+easylist.txt: 16181) -/(.*/)?webads\. -webads.*. -# /webadimg/* (easylistchina+easylist.txt: 16180) -/(.*/)?webadimg/.* -# /webad? (easylistchina+easylist.txt: 16179) -/(.*/)?webad\? -# /WebAd/* (easylistchina+easylist.txt: 16178) -/(.*/)?WebAd/.* -# /webad. (easylistchina+easylist.txt: 16177) -/(.*/)?webad\. -webad.*. -# /web_ads/* (easylistchina+easylist.txt: 16176) -/(.*/)?web_ads/.* -# /web/ads/* (easylistchina+easylist.txt: 16175) -/(.*/)?web/ads/.* -# /web-ads/* (easylistchina+easylist.txt: 16174) -/(.*/)?web-ads/.* -# /web-ads. (easylistchina+easylist.txt: 16173) -/(.*/)?web-ads\. -web-ads.*. -# /web-ad_ (easylistchina+easylist.txt: 16172) -/(.*/)?web-ad_ -# /weather/ads/* (easylistchina+easylist.txt: 16171) -/(.*/)?weather/ads/.* -# /weather-sponsor/* (easylistchina+easylist.txt: 16170) -/(.*/)?weather-sponsor/.* -# /wbadvert/* (easylistchina+easylist.txt: 16169) -/(.*/)?wbadvert/.* -# /wave-ad- (easylistchina+easylist.txt: 16168) -/(.*/)?wave-ad- -wave-ad-*. -# /watchit_ad. (easylistchina+easylist.txt: 16167) -/(.*/)?watchit_ad\. -# /wallpaperads/* (easylistchina+easylist.txt: 16166) -/(.*/)?wallpaperads/.* -# /wallpaper_ads/* (easylistchina+easylist.txt: 16165) -/(.*/)?wallpaper_ads/.* -# /wahoha. (easylistchina+easylist.txt: 16164) -/(.*/)?wahoha\. -wahoha.*. -# /w/d/capu.php?z=$script,third-party (easylistchina+easylist.txt: 16163) -/(.*/)?w/d/capu\.php\?z= -# /w/ads/* (easylistchina+easylist.txt: 16162) -/(.*/)?w/ads/.* -# /VXLayerAd- (easylistchina+easylist.txt: 16161) -/(.*/)?VXLayerAd- -VXLayerAd-*. -# /vtextads. (easylistchina+easylist.txt: 16160) -/(.*/)?vtextads\. -vtextads.*. -# /vrdinterads- (easylistchina+easylist.txt: 16159) -/(.*/)?vrdinterads- -vrdinterads-*. -# /vplayerad. (easylistchina+easylist.txt: 16158) -/(.*/)?vplayerad\. -vplayerad.*. -# /vpaidadrenderer. (easylistchina+easylist.txt: 16157) -/(.*/)?vpaidadrenderer\. -vpaidadrenderer.*. -# /vpaidad3. (easylistchina+easylist.txt: 16156) -/(.*/)?vpaidad3\. -vpaidad3.*. -# /vogue_ads/* (easylistchina+easylist.txt: 16155) -/(.*/)?vogue_ads/.* -# /vnads/* (easylistchina+easylist.txt: 16154) -/(.*/)?vnads/.* -# /vnads. (easylistchina+easylist.txt: 16153) -/(.*/)?vnads\. -vnads.*. -# /visitoursponsors. (easylistchina+easylist.txt: 16152) -/(.*/)?visitoursponsors\. -visitoursponsors.*. -# /vision/ads/* (easylistchina+easylist.txt: 16151) -/(.*/)?vision/ads/.* -# /virtualgirlhd- (easylistchina+easylist.txt: 16150) -/(.*/)?virtualgirlhd- -virtualgirlhd-*. -# /virtualgirl/* (easylistchina+easylist.txt: 16149) -/(.*/)?virtualgirl/.* -# /virtual_girl_ (easylistchina+easylist.txt: 16148) -/(.*/)?virtual_girl_ -# /virtuagirlhd. (easylistchina+easylist.txt: 16147) -/(.*/)?virtuagirlhd\. -virtuagirlhd.*. -# /virtuagirl3. (easylistchina+easylist.txt: 16146) -/(.*/)?virtuagirl3\. -virtuagirl3.*. -# /virtuagirl/* (easylistchina+easylist.txt: 16145) -/(.*/)?virtuagirl/.* -# /virtuagirl. (easylistchina+easylist.txt: 16144) -/(.*/)?virtuagirl\. -virtuagirl.*. -# /views/ads/* (easylistchina+easylist.txt: 16143) -/(.*/)?views/ads/.* -# /viewid=*/site=*/size= (easylistchina+easylist.txt: 16142) -/(.*/)?viewid=.*/site=.*/size= -# /viewer/rad? (easylistchina+easylist.txt: 16141) -/(.*/)?viewer/rad\? -# /viewbannerad. (easylistchina+easylist.txt: 16140) -/(.*/)?viewbannerad\. -viewbannerad.*. -# /viewad? (easylistchina+easylist.txt: 16139) -/(.*/)?viewad\? -# /viewad/* (easylistchina+easylist.txt: 16138) -/(.*/)?viewad/.* -# /viewad. (easylistchina+easylist.txt: 16137) -/(.*/)?viewad\. -viewad.*. -# /view_banner. (easylistchina+easylist.txt: 16136) -/(.*/)?view_banner\. -# /view/banner/* (easylistchina+easylist.txt: 16135) -/(.*/)?view/banner/.* -# /view/ads/* (easylistchina+easylist.txt: 16134) -/(.*/)?view/ads/.* -# /videowall-ad. (easylistchina+easylist.txt: 16133) -/(.*/)?videowall-ad\. -videowall-ad.*. -# /videostreaming_ads. (easylistchina+easylist.txt: 16132) -/(.*/)?videostreaming_ads\. -# /videojs.ads. (easylistchina+easylist.txt: 16131) -/(.*/)?videojs\.ads\. -videojs.ads.*. -# /VideoAdsServingService/* (easylistchina+easylist.txt: 16130) -/(.*/)?VideoAdsServingService/.* -# /videoads/* (easylistchina+easylist.txt: 16129) -/(.*/)?videoads/.* -# /videoads. (easylistchina+easylist.txt: 16128) -/(.*/)?videoads\. -videoads.*. -# /videoadrenderer. (easylistchina+easylist.txt: 16127) -/(.*/)?videoadrenderer\. -videoadrenderer.*. -# /VideoAdContent? (easylistchina+easylist.txt: 16126) -/(.*/)?VideoAdContent\? -# /videoad_new. (easylistchina+easylist.txt: 16125) -/(.*/)?videoad_new\. -# /VideoAd/* (easylistchina+easylist.txt: 16124) -/(.*/)?VideoAd/.* -# /videoad. (easylistchina+easylist.txt: 16123) -/(.*/)?videoad\. -videoad.*. -# /video_ads/* (easylistchina+easylist.txt: 16122) -/(.*/)?video_ads/.* -# /video_ads. (easylistchina+easylist.txt: 16121) -/(.*/)?video_ads\. -# /video_ad_ (easylistchina+easylist.txt: 16120) -/(.*/)?video_ad_ -# /video_ad. (easylistchina+easylist.txt: 16119) -/(.*/)?video_ad\. -# /video2adrenderer. (easylistchina+easylist.txt: 16118) -/(.*/)?video2adrenderer\. -video2adrenderer.*. -# /video/ads/* (easylistchina+easylist.txt: 16117) -/(.*/)?video/ads/.* -# /video.ads.php? (easylistchina+easylist.txt: 16116) -/(.*/)?video\.ads\.php\? -# /video-ads-player. (easylistchina+easylist.txt: 16115) -/(.*/)?video-ads-player\. -video-ads-player.*. -# /video-ad-overlay. (easylistchina+easylist.txt: 16114) -/(.*/)?video-ad-overlay\. -video-ad-overlay.*. -# /vidadv. (easylistchina+easylist.txt: 16113) -/(.*/)?vidadv\. -vidadv.*. -# /viagogoads. (easylistchina+easylist.txt: 16112) -/(.*/)?viagogoads\. -viagogoads.*. -# /VHDpoppingModels/* (easylistchina+easylist.txt: 16111) -/(.*/)?VHDpoppingModels/.* -# /vghd2.gif (easylistchina+easylist.txt: 16110) -/(.*/)?vghd2\.gif -vghd2.gif*. -# /vghd.swf (easylistchina+easylist.txt: 16109) -/(.*/)?vghd\.swf -vghd.swf*. -# /vghd.gif (easylistchina+easylist.txt: 16108) -/(.*/)?vghd\.gif -vghd.gif*. -# /verticaladrotatorv2. (easylistchina+easylist.txt: 16107) -/(.*/)?verticaladrotatorv2\. -verticaladrotatorv2.*. -# /vert_ad. (easylistchina+easylist.txt: 16106) -/(.*/)?vert_ad\. -# /vert728ad. (easylistchina+easylist.txt: 16105) -/(.*/)?vert728ad\. -vert728ad.*. -# /vericaladtitle. (easylistchina+easylist.txt: 16104) -/(.*/)?vericaladtitle\. -vericaladtitle.*. -# /vendor-ads- (easylistchina+easylist.txt: 16103) -/(.*/)?vendor-ads- -vendor-ads-*. -# /vclkads. (easylistchina+easylist.txt: 16102) -/(.*/)?vclkads\. -vclkads.*. -# /vbvua.js (easylistchina+easylist.txt: 16101) -/(.*/)?vbvua\.js -vbvua.js*. -# /vboard/ads/* (easylistchina+easylist.txt: 16100) -/(.*/)?vboard/ads/.* -# /vb/ads/* (easylistchina+easylist.txt: 16099) -/(.*/)?vb/ads/.* -# /vastads. (easylistchina+easylist.txt: 16098) -/(.*/)?vastads\. -vastads.*. -# /VASTAdPlugin. (easylistchina+easylist.txt: 16097) -/(.*/)?VASTAdPlugin\. -VASTAdPlugin.*. -# /vast_ads_ (easylistchina+easylist.txt: 16096) -/(.*/)?vast_ads_ -# /valueclickvert. (easylistchina+easylist.txt: 16095) -/(.*/)?valueclickvert\. -valueclickvert.*. -# /valueclickbanner. (easylistchina+easylist.txt: 16094) -/(.*/)?valueclickbanner\. -valueclickbanner.*. -# /valueclick. (easylistchina+easylist.txt: 16093) -/(.*/)?valueclick\. -valueclick.*. -# /valueclick-ad. (easylistchina+easylist.txt: 16092) -/(.*/)?valueclick-ad\. -valueclick-ad.*. -# /vads/* (easylistchina+easylist.txt: 16091) -/(.*/)?vads/.* -# /v9/adv/* (easylistchina+easylist.txt: 16090) -/(.*/)?v9/adv/.* -# /v5/ads/* (easylistchina+easylist.txt: 16089) -/(.*/)?v5/ads/.* -# /utep_ad.js (easylistchina+easylist.txt: 16088) -/(.*/)?utep_ad\.js -# /utep/ad/* (easylistchina+easylist.txt: 16087) -/(.*/)?utep/ad/.* -# /usernext. (easylistchina+easylist.txt: 16086) -/(.*/)?usernext\. -usernext.*. -# /userimages/ads/* (easylistchina+easylist.txt: 16085) -/(.*/)?userimages/ads/.* -# /userad/* (easylistchina+easylist.txt: 16084) -/(.*/)?userad/.* -# /userad. (easylistchina+easylist.txt: 16083) -/(.*/)?userad\. -userad.*. -# /user_ads/* (easylistchina+easylist.txt: 16082) -/(.*/)?user_ads/.* -# /user/ads? (easylistchina+easylist.txt: 16081) -/(.*/)?user/ads\? -# /usenext16. (easylistchina+easylist.txt: 16080) -/(.*/)?usenext16\. -usenext16.*. -# /us-ads. (easylistchina+easylist.txt: 16079) -/(.*/)?us-ads\. -us-ads.*. -# /upsellingads/* (easylistchina+easylist.txt: 16078) -/(.*/)?upsellingads/.* -# /uploads/adv_ (easylistchina+easylist.txt: 16077) -/(.*/)?uploads/adv_ -# /uploads/adv/* (easylistchina+easylist.txt: 16076) -/(.*/)?uploads/adv/.* -# /uploads/ads/* (easylistchina+easylist.txt: 16075) -/(.*/)?uploads/ads/.* -# /UploadedAds/* (easylistchina+easylist.txt: 16074) -/(.*/)?UploadedAds/.* -# /uploaded/ads/* (easylistchina+easylist.txt: 16073) -/(.*/)?uploaded/ads/.* -# /upload/ads/* (easylistchina+easylist.txt: 16072) -/(.*/)?upload/ads/.* -# /uplimg/ads/* (easylistchina+easylist.txt: 16071) -/(.*/)?uplimg/ads/.* -# /update_layer/layer_os_new.php (easylistchina+easylist.txt: 16070) -/(.*/)?update_layer/layer_os_new\.php -# /update_ads/* (easylistchina+easylist.txt: 16069) -/(.*/)?update_ads/.* -# /up/ads/* (easylistchina+easylist.txt: 16068) -/(.*/)?up/ads/.* -# /unity/ad/* (easylistchina+easylist.txt: 16067) -/(.*/)?unity/ad/.* -# /unibluead. (easylistchina+easylist.txt: 16066) -/(.*/)?unibluead\. -unibluead.*. -# /ukc-ad. (easylistchina+easylist.txt: 16065) -/(.*/)?ukc-ad\. -ukc-ad.*. -# /uk/ads/* (easylistchina+easylist.txt: 16064) -/(.*/)?uk/ads/.* -# /uk.ads. (easylistchina+easylist.txt: 16063) -/(.*/)?uk\.ads\. -uk.ads.*. -# /ui/adv_ (easylistchina+easylist.txt: 16062) -/(.*/)?ui/adv_ -# /ui/adv. (easylistchina+easylist.txt: 16061) -/(.*/)?ui/adv\. -# /ui/ads/* (easylistchina+easylist.txt: 16060) -/(.*/)?ui/ads/.* -# /ugoads_inner. (easylistchina+easylist.txt: 16059) -/(.*/)?ugoads_inner\. -# /ugoads. (easylistchina+easylist.txt: 16058) -/(.*/)?ugoads\. -ugoads.*. -# /ucstat. (easylistchina+easylist.txt: 16057) -/(.*/)?ucstat\. -ucstat.*. -# /uberlayadrenderer. (easylistchina+easylist.txt: 16056) -/(.*/)?uberlayadrenderer\. -uberlayadrenderer.*. -# /u?pub= (easylistchina+easylist.txt: 16055) -/(.*/)?u\?pub= -# /u/ads/* (easylistchina+easylist.txt: 16054) -/(.*/)?u/ads/.* -# /u-ads. (easylistchina+easylist.txt: 16053) -/(.*/)?u-ads\. -u-ads.*. -# /txtads/* (easylistchina+easylist.txt: 16052) -/(.*/)?txtads/.* -# /txtad. (easylistchina+easylist.txt: 16051) -/(.*/)?txtad\. -txtad.*. -# /txt_adv. (easylistchina+easylist.txt: 16050) -/(.*/)?txt_adv\. -# /txt_ad_ (easylistchina+easylist.txt: 16049) -/(.*/)?txt_ad_ -# /txt_ad. (easylistchina+easylist.txt: 16048) -/(.*/)?txt_ad\. -# /TwtAd_ (easylistchina+easylist.txt: 16047) -/(.*/)?TwtAd_ -# /twgetad3. (easylistchina+easylist.txt: 16046) -/(.*/)?twgetad3\. -twgetad3.*. -# /TWBadbanner. (easylistchina+easylist.txt: 16045) -/(.*/)?TWBadbanner\. -TWBadbanner.*. -# /tvgdartads. (easylistchina+easylist.txt: 16044) -/(.*/)?tvgdartads\. -tvgdartads.*. -# /turbo_ad. (easylistchina+easylist.txt: 16043) -/(.*/)?turbo_ad\. -# /ttz_ad. (easylistchina+easylist.txt: 16042) -/(.*/)?ttz_ad\. -# /tsc.php?*&ses= (easylistchina+easylist.txt: 16041) -/(.*/)?tsc\.php\?.*&ses= -# /tripplead/* (easylistchina+easylist.txt: 16040) -/(.*/)?tripplead/.* -# /tribalad. (easylistchina+easylist.txt: 16039) -/(.*/)?tribalad\. -tribalad.*. -# /triadshow. (easylistchina+easylist.txt: 16038) -/(.*/)?triadshow\. -triadshow.*. -# /tremoradrenderer. (easylistchina+easylist.txt: 16037) -/(.*/)?tremoradrenderer\. -tremoradrenderer.*. -# /travidia/* (easylistchina+easylist.txt: 16036) -/(.*/)?travidia/.* -# /transad. (easylistchina+easylist.txt: 16035) -/(.*/)?transad\. -transad.*. -# /trafficsynergysupportresponse_ (easylistchina+easylist.txt: 16034) -/(.*/)?trafficsynergysupportresponse_ -# /trafficengineads. (easylistchina+easylist.txt: 16033) -/(.*/)?trafficengineads\. -trafficengineads.*. -# /trafficads. (easylistchina+easylist.txt: 16032) -/(.*/)?trafficads\. -trafficads.*. -# /trafficadpdf02. (easylistchina+easylist.txt: 16031) -/(.*/)?trafficadpdf02\. -trafficadpdf02.*. -# /tradedoubler. (easylistchina+easylist.txt: 16030) -/(.*/)?tradedoubler\. -tradedoubler.*. -# /TradeAds/* (easylistchina+easylist.txt: 16029) -/(.*/)?TradeAds/.* -# /tradead_ (easylistchina+easylist.txt: 16028) -/(.*/)?tradead_ -# /trade_punder. (easylistchina+easylist.txt: 16027) -/(.*/)?trade_punder\. -# /tracking/events/* (easylistchina+easylist.txt: 16026) -/(.*/)?tracking/events/.* -# /tracked_ad. (easylistchina+easylist.txt: 16025) -/(.*/)?tracked_ad\. -# /trackads/* (easylistchina+easylist.txt: 16024) -/(.*/)?trackads/.* -# /track_ad_ (easylistchina+easylist.txt: 16023) -/(.*/)?track_ad_ -# /track.php?uid=*.*&d= (easylistchina+easylist.txt: 16022) -/(.*/)?track\.php\?uid=.*\..*&d= -# /track.php?click=*&domain=*&uid=$xmlhttprequest (easylistchina+easylist.txt: 16021) -/(.*/)?track\.php\?click=.*&domain=.*&uid= -# /tr2/ads/* (easylistchina+easylist.txt: 16020) -/(.*/)?tr2/ads/.* -# /towerbannerad/* (easylistchina+easylist.txt: 16019) -/(.*/)?towerbannerad/.* -# /tower_ad_ (easylistchina+easylist.txt: 16018) -/(.*/)?tower_ad_ -# /totemcash1. (easylistchina+easylist.txt: 16017) -/(.*/)?totemcash1\. -totemcash1.*. -# /totemcash/*$image (easylistchina+easylist.txt: 16016) -/(.*/)?totemcash/.* -# /Totem-Cash/* (easylistchina+easylist.txt: 16015) -/(.*/)?Totem-Cash/.* -# /totalmedia/* (easylistchina+easylist.txt: 16014) -/(.*/)?totalmedia/.* -# /torget_ads. (easylistchina+easylist.txt: 16013) -/(.*/)?torget_ads\. -# /tops.ads. (easylistchina+easylist.txt: 16012) -/(.*/)?tops\.ads\. -tops.ads.*. -# /toprightads. (easylistchina+easylist.txt: 16011) -/(.*/)?toprightads\. -toprightads.*. -# /topperad. (easylistchina+easylist.txt: 16010) -/(.*/)?topperad\. -topperad.*. -# /topleftads. (easylistchina+easylist.txt: 16009) -/(.*/)?topleftads\. -topleftads.*. -# /topadvert. (easylistchina+easylist.txt: 16008) -/(.*/)?topadvert\. -topadvert.*. -# /topadv. (easylistchina+easylist.txt: 16007) -/(.*/)?topadv\. -topadv.*. -# /topads| (easylistchina+easylist.txt: 16006) -/(.*/)?topads$ -# /topads_ (easylistchina+easylist.txt: 16005) -/(.*/)?topads_ -# /topads3. (easylistchina+easylist.txt: 16004) -/(.*/)?topads3\. -topads3.*. -# /topads2. (easylistchina+easylist.txt: 16003) -/(.*/)?topads2\. -topads2.*. -# /topads1. (easylistchina+easylist.txt: 16002) -/(.*/)?topads1\. -topads1.*. -# /topads/* (easylistchina+easylist.txt: 16001) -/(.*/)?topads/.* -# /topads. (easylistchina+easylist.txt: 16000) -/(.*/)?topads\. -topads.*. -# /topadheader. (easylistchina+easylist.txt: 15999) -/(.*/)?topadheader\. -topadheader.*. -# /topadfooter. (easylistchina+easylist.txt: 15998) -/(.*/)?topadfooter\. -topadfooter.*. -# /topadbg. (easylistchina+easylist.txt: 15997) -/(.*/)?topadbg\. -topadbg.*. -# /topad_ (easylistchina+easylist.txt: 15996) -/(.*/)?topad_ -# /topad3. (easylistchina+easylist.txt: 15995) -/(.*/)?topad3\. -topad3.*. -# /topad/* (easylistchina+easylist.txt: 15994) -/(.*/)?topad/.* -# /topad. (easylistchina+easylist.txt: 15993) -/(.*/)?topad\. -topad.*. -# /top_adv_ (easylistchina+easylist.txt: 15992) -/(.*/)?top_adv_ -# /top_ads_ (easylistchina+easylist.txt: 15991) -/(.*/)?top_ads_ -# /top_ads/* (easylistchina+easylist.txt: 15990) -/(.*/)?top_ads/.* -# /top_ads. (easylistchina+easylist.txt: 15989) -/(.*/)?top_ads\. -# /top_ad_ (easylistchina+easylist.txt: 15988) -/(.*/)?top_ad_ -# /top_ad/* (easylistchina+easylist.txt: 15987) -/(.*/)?top_ad/.* -# /top_ad. (easylistchina+easylist.txt: 15986) -/(.*/)?top_ad\. -# /top-ads. (easylistchina+easylist.txt: 15985) -/(.*/)?top-ads\. -top-ads.*. -# /top-ad_ (easylistchina+easylist.txt: 15984) -/(.*/)?top-ad_ -# /top-ad. (easylistchina+easylist.txt: 15983) -/(.*/)?top-ad\. -top-ad.*. -# /top-ad- (easylistchina+easylist.txt: 15982) -/(.*/)?top-ad- -top-ad-*. -# /toonad. (easylistchina+easylist.txt: 15981) -/(.*/)?toonad\. -toonad.*. -# /tools/ad. (easylistchina+easylist.txt: 15980) -/(.*/)?tools/ad\. -# /toolkitads. (easylistchina+easylist.txt: 15979) -/(.*/)?toolkitads\. -toolkitads.*. -# /toigoogleads. (easylistchina+easylist.txt: 15978) -/(.*/)?toigoogleads\. -toigoogleads.*. -# /toggleAds. (easylistchina+easylist.txt: 15977) -/(.*/)?toggleAds\. -toggleAds.*. -# /tncms/ads/* (easylistchina+easylist.txt: 15976) -/(.*/)?tncms/ads/.* -# /tmobilead. (easylistchina+easylist.txt: 15975) -/(.*/)?tmobilead\. -tmobilead.*. -# /tmo/ads/* (easylistchina+easylist.txt: 15974) -/(.*/)?tmo/ads/.* -# /tmnadsense. (easylistchina+easylist.txt: 15973) -/(.*/)?tmnadsense\. -tmnadsense.*. -# /tmnadsense- (easylistchina+easylist.txt: 15972) -/(.*/)?tmnadsense- -tmnadsense-*. -# /tl.ads- (easylistchina+easylist.txt: 15971) -/(.*/)?tl\.ads- -tl.ads-*. -# /tizers.php? (easylistchina+easylist.txt: 15970) -/(.*/)?tizers\.php\? -# /title_ad. (easylistchina+easylist.txt: 15969) -/(.*/)?title_ad\. -# /title-ad/* (easylistchina+easylist.txt: 15968) -/(.*/)?title-ad/.* -# /tit-ads. (easylistchina+easylist.txt: 15967) -/(.*/)?tit-ads\. -tit-ads.*. -# /tinyad. (easylistchina+easylist.txt: 15966) -/(.*/)?tinyad\. -tinyad.*. -# /tinlads. (easylistchina+easylist.txt: 15965) -/(.*/)?tinlads\. -tinlads.*. -# /tileads/* (easylistchina+easylist.txt: 15964) -/(.*/)?tileads/.* -# /TILE_ADS/* (easylistchina+easylist.txt: 15963) -/(.*/)?TILE_ADS/.* -# /tikilink? (easylistchina+easylist.txt: 15962) -/(.*/)?tikilink\? -# /tii_ads. (easylistchina+easylist.txt: 15961) -/(.*/)?tii_ads\. -# /tidaladplugin. (easylistchina+easylist.txt: 15960) -/(.*/)?tidaladplugin\. -tidaladplugin.*. -# /tickeradsget. (easylistchina+easylist.txt: 15959) -/(.*/)?tickeradsget\. -tickeradsget.*. -# /thunder/ad. (easylistchina+easylist.txt: 15958) -/(.*/)?thunder/ad\. -# /thumbs/ads/* (easylistchina+easylist.txt: 15957) -/(.*/)?thumbs/ads/.* -# /thirdpartyframedad/* (easylistchina+easylist.txt: 15956) -/(.*/)?thirdpartyframedad/.* -# /thirdpartyads/* (easylistchina+easylist.txt: 15955) -/(.*/)?thirdpartyads/.* -# /thirdparty/ad/* (easylistchina+easylist.txt: 15954) -/(.*/)?thirdparty/ad/.* -# /thebannerserver.net/* (easylistchina+easylist.txt: 15953) -/(.*/)?thebannerserver\.net/.* -thebannerserver.net/.* -# /thdgoogleadsense. (easylistchina+easylist.txt: 15952) -/(.*/)?thdgoogleadsense\. -thdgoogleadsense.*. -# /tg.php?uid= (easylistchina+easylist.txt: 15951) -/(.*/)?tg\.php\?uid= -# /tfs-ad. (easylistchina+easylist.txt: 15950) -/(.*/)?tfs-ad\. -tfs-ad.*. -# /textadspromo_ (easylistchina+easylist.txt: 15949) -/(.*/)?textadspromo_ -# /textads_ (easylistchina+easylist.txt: 15948) -/(.*/)?textads_ -# /textads/* (easylistchina+easylist.txt: 15947) -/(.*/)?textads/.* -# /textads. (easylistchina+easylist.txt: 15946) -/(.*/)?textads\. -textads.*. -# /textads- (easylistchina+easylist.txt: 15945) -/(.*/)?textads- -textads-*. -# /textadrotate. (easylistchina+easylist.txt: 15944) -/(.*/)?textadrotate\. -textadrotate.*. -# /textad_ (easylistchina+easylist.txt: 15943) -/(.*/)?textad_ -# /textad? (easylistchina+easylist.txt: 15942) -/(.*/)?textad\? -# /textad1. (easylistchina+easylist.txt: 15941) -/(.*/)?textad1\. -textad1.*. -# /textad/* (easylistchina+easylist.txt: 15940) -/(.*/)?textad/.* -# /textad. (easylistchina+easylist.txt: 15939) -/(.*/)?textad\. -textad.*. -# /text_ads_ (easylistchina+easylist.txt: 15938) -/(.*/)?text_ads_ -# /text_ads. (easylistchina+easylist.txt: 15937) -/(.*/)?text_ads\. -# /text_ad_ (easylistchina+easylist.txt: 15936) -/(.*/)?text_ad_ -# /text_ad. (easylistchina+easylist.txt: 15935) -/(.*/)?text_ad\. -# /testingad. (easylistchina+easylist.txt: 15934) -/(.*/)?testingad\. -testingad.*. -# /testads/* (easylistchina+easylist.txt: 15933) -/(.*/)?testads/.* -# /templates/adv_ (easylistchina+easylist.txt: 15932) -/(.*/)?templates/adv_ -# /templates/ads/* (easylistchina+easylist.txt: 15931) -/(.*/)?templates/ads/.* -# /templates/ad/* (easylistchina+easylist.txt: 15930) -/(.*/)?templates/ad/.* -# /templates/ad. (easylistchina+easylist.txt: 15929) -/(.*/)?templates/ad\. -# /templateadvimages/* (easylistchina+easylist.txt: 15928) -/(.*/)?templateadvimages/.* -# /template/ad. (easylistchina+easylist.txt: 15927) -/(.*/)?template/ad\. -# /tempads/* (easylistchina+easylist.txt: 15926) -/(.*/)?tempads/.* -# /teletoon_ad. (easylistchina+easylist.txt: 15925) -/(.*/)?teletoon_ad\. -# /technomedia. (easylistchina+easylist.txt: 15924) -/(.*/)?technomedia\. -technomedia.*. -# /teaseimg/ads/* (easylistchina+easylist.txt: 15923) -/(.*/)?teaseimg/ads/.* -# /teamplayer-ads. (easylistchina+easylist.txt: 15922) -/(.*/)?teamplayer-ads\. -teamplayer-ads.*. -# /tdlads/* (easylistchina+easylist.txt: 15921) -/(.*/)?tdlads/.* -# /td_ads/* (easylistchina+easylist.txt: 15920) -/(.*/)?td_ads/.* -# /td-ads- (easylistchina+easylist.txt: 15919) -/(.*/)?td-ads- -td-ads-*. -# /taxonomy-ads. (easylistchina+easylist.txt: 15918) -/(.*/)?taxonomy-ads\. -taxonomy-ads.*. -# /talkads/* (easylistchina+easylist.txt: 15917) -/(.*/)?talkads/.* -# /tagadv_ (easylistchina+easylist.txt: 15916) -/(.*/)?tagadv_ -# /tag_sys. (easylistchina+easylist.txt: 15915) -/(.*/)?tag_sys\. -# /tag_oas. (easylistchina+easylist.txt: 15914) -/(.*/)?tag_oas\. -# /tag_adv/* (easylistchina+easylist.txt: 15913) -/(.*/)?tag_adv/.* -# /tag-adv. (easylistchina+easylist.txt: 15912) -/(.*/)?tag-adv\. -tag-adv.*. -# /tableadnorth. (easylistchina+easylist.txt: 15911) -/(.*/)?tableadnorth\. -tableadnorth.*. -# /tabads/* (easylistchina+easylist.txt: 15910) -/(.*/)?tabads/.* -# /t.php?uid=*.*&src= (easylistchina+easylist.txt: 15909) -/(.*/)?t\.php\?uid=.*\..*&src= -# /t-ads. (easylistchina+easylist.txt: 15908) -/(.*/)?t-ads\. -t-ads.*. -# /systemad_ (easylistchina+easylist.txt: 15907) -/(.*/)?systemad_ -# /systemad. (easylistchina+easylist.txt: 15906) -/(.*/)?systemad\. -systemad.*. -# /system_ad. (easylistchina+easylist.txt: 15905) -/(.*/)?system_ad\. -# /system/ads/* (easylistchina+easylist.txt: 15904) -/(.*/)?system/ads/.* -# /system/ad/* (easylistchina+easylist.txt: 15903) -/(.*/)?system/ad/.* -# /sys/ad/* (easylistchina+easylist.txt: 15902) -/(.*/)?sys/ad/.* -# /syndication/ad. (easylistchina+easylist.txt: 15901) -/(.*/)?syndication/ad\. -# /synad3. (easylistchina+easylist.txt: 15900) -/(.*/)?synad3\. -synad3.*. -# /synad2. (easylistchina+easylist.txt: 15899) -/(.*/)?synad2\. -synad2.*. -# /SWMAdPlayer. (easylistchina+easylist.txt: 15898) -/(.*/)?SWMAdPlayer\. -SWMAdPlayer.*. -# /switchadbanner. (easylistchina+easylist.txt: 15897) -/(.*/)?switchadbanner\. -switchadbanner.*. -# /swfbin/ad3_ (easylistchina+easylist.txt: 15896) -/(.*/)?swfbin/ad3_ -# /swfbin/ad3- (easylistchina+easylist.txt: 15895) -/(.*/)?swfbin/ad3- -# /swfbin/ad- (easylistchina+easylist.txt: 15894) -/(.*/)?swfbin/ad- -# /swf/ads/* (easylistchina+easylist.txt: 15893) -/(.*/)?swf/ads/.* -# /swf/ad- (easylistchina+easylist.txt: 15892) -/(.*/)?swf/ad- -# /svnad/* (easylistchina+easylist.txt: 15891) -/(.*/)?svnad/.* -# /supernorthroomad. (easylistchina+easylist.txt: 15890) -/(.*/)?supernorthroomad\. -supernorthroomad.*. -# /superads_ (easylistchina+easylist.txt: 15889) -/(.*/)?superads_ -# /sugarads- (easylistchina+easylist.txt: 15888) -/(.*/)?sugarads- -sugarads-*. -# /sugar-ads/* (easylistchina+easylist.txt: 15887) -/(.*/)?sugar-ads/.* -# /sugar-ads. (easylistchina+easylist.txt: 15886) -/(.*/)?sugar-ads\. -sugar-ads.*. -# /subs-ads/* (easylistchina+easylist.txt: 15885) -/(.*/)?subs-ads/.* -# /subnavads/* (easylistchina+easylist.txt: 15884) -/(.*/)?subnavads/.* -# /subadz. (easylistchina+easylist.txt: 15883) -/(.*/)?subadz\. -subadz.*. -# /subad2_ (easylistchina+easylist.txt: 15882) -/(.*/)?subad2_ -# /subAd. (easylistchina+easylist.txt: 15881) -/(.*/)?subAd\. -subAd.*. -# /styles/ads/* (easylistchina+easylist.txt: 15880) -/(.*/)?styles/ads/.* -# /styles/ads. (easylistchina+easylist.txt: 15879) -/(.*/)?styles/ads\. -# /style_ad. (easylistchina+easylist.txt: 15878) -/(.*/)?style_ad\. -# /stuff/ad- (easylistchina+easylist.txt: 15877) -/(.*/)?stuff/ad- -# /studioads/* (easylistchina+easylist.txt: 15876) -/(.*/)?studioads/.* -# /streamatepop. (easylistchina+easylist.txt: 15875) -/(.*/)?streamatepop\. -streamatepop.*. -# /streamads. (easylistchina+easylist.txt: 15874) -/(.*/)?streamads\. -streamads.*. -# /stream-ad. (easylistchina+easylist.txt: 15873) -/(.*/)?stream-ad\. -stream-ad.*. -# /storyads. (easylistchina+easylist.txt: 15872) -/(.*/)?storyads\. -storyads.*. -# /storyadcode. (easylistchina+easylist.txt: 15871) -/(.*/)?storyadcode\. -storyadcode.*. -# /story_ads_ (easylistchina+easylist.txt: 15870) -/(.*/)?story_ads_ -# /story_ad. (easylistchina+easylist.txt: 15869) -/(.*/)?story_ad\. -# /stories/ads/* (easylistchina+easylist.txt: 15868) -/(.*/)?stories/ads/.* -# /storage/adv/* (easylistchina+easylist.txt: 15867) -/(.*/)?storage/adv/.* -# /storage/ads/* (easylistchina+easylist.txt: 15866) -/(.*/)?storage/ads/.* -# /stickyad2. (easylistchina+easylist.txt: 15865) -/(.*/)?stickyad2\. -stickyad2.*. -# /stickyad. (easylistchina+easylist.txt: 15864) -/(.*/)?stickyad\. -stickyad.*. -# /sticky_ad. (easylistchina+easylist.txt: 15863) -/(.*/)?sticky_ad\. -# /sticker_ad. (easylistchina+easylist.txt: 15862) -/(.*/)?sticker_ad\. -# /stats/?t_sid= (easylistchina+easylist.txt: 15861) -/(.*/)?stats/\?t_sid= -# /staticadslot. (easylistchina+easylist.txt: 15860) -/(.*/)?staticadslot\. -staticadslot.*. -# /static_ads/* (easylistchina+easylist.txt: 15859) -/(.*/)?static_ads/.* -# /static/js/4728ba74bc.js$~third-party (easylistchina+easylist.txt: 15858) -/(.*/)?static/js/4728ba74bc\.js -# /static/adv/* (easylistchina+easylist.txt: 15857) -/(.*/)?static/adv/.* -# /static/ads/* (easylistchina+easylist.txt: 15856) -/(.*/)?static/ads/.* -# /static/ad_ (easylistchina+easylist.txt: 15855) -/(.*/)?static/ad_ -# /static/ad/* (easylistchina+easylist.txt: 15854) -/(.*/)?static/ad/.* -# /static/ad- (easylistchina+easylist.txt: 15853) -/(.*/)?static/ad- -# /static.ad. (easylistchina+easylist.txt: 15852) -/(.*/)?static\.ad\. -static.ad.*. -# /standard_ads. (easylistchina+easylist.txt: 15851) -/(.*/)?standard_ads\. -# /ssc_ad. (easylistchina+easylist.txt: 15850) -/(.*/)?ssc_ad\. -# /ss3/ads/* (easylistchina+easylist.txt: 15849) -/(.*/)?ss3/ads/.* -# /srv/ad/* (easylistchina+easylist.txt: 15848) -/(.*/)?srv/ad/.* -# /srec_ad_ (easylistchina+easylist.txt: 15847) -/(.*/)?srec_ad_ -# /src/ads_ (easylistchina+easylist.txt: 15846) -/(.*/)?src/ads_ -# /squareads. (easylistchina+easylist.txt: 15845) -/(.*/)?squareads\. -squareads.*. -# /squaread. (easylistchina+easylist.txt: 15844) -/(.*/)?squaread\. -squaread.*. -# /square-ads/* (easylistchina+easylist.txt: 15843) -/(.*/)?square-ads/.* -# /square-ad. (easylistchina+easylist.txt: 15842) -/(.*/)?square-ad\. -square-ad.*. -# /spotxchangevpaid. (easylistchina+easylist.txt: 15841) -/(.*/)?spotxchangevpaid\. -spotxchangevpaid.*. -# /spotxchangeplugin. (easylistchina+easylist.txt: 15840) -/(.*/)?spotxchangeplugin\. -spotxchangeplugin.*. -# /spotx_adapter. (easylistchina+easylist.txt: 15839) -/(.*/)?spotx_adapter\. -# /spotlightads/* (easylistchina+easylist.txt: 15838) -/(.*/)?spotlightads/.* -# /sponsorstrips/* (easylistchina+easylist.txt: 15837) -/(.*/)?sponsorstrips/.* -# /sponsorshipimage- (easylistchina+easylist.txt: 15836) -/(.*/)?sponsorshipimage- -sponsorshipimage-*. -# /sponsorsgif. (easylistchina+easylist.txt: 15835) -/(.*/)?sponsorsgif\. -sponsorsgif.*. -# /sponsors_box. (easylistchina+easylist.txt: 15834) -/(.*/)?sponsors_box\. -# /sponsors/amg.php? (easylistchina+easylist.txt: 15833) -/(.*/)?sponsors/amg\.php\? -# /sponsors/ads/* (easylistchina+easylist.txt: 15832) -/(.*/)?sponsors/ads/.* -# /sponsors.js? (easylistchina+easylist.txt: 15831) -/(.*/)?sponsors\.js\? -# /sponsors-ads/* (easylistchina+easylist.txt: 15830) -/(.*/)?sponsors-ads/.* -# /sponsorpaynetwork. (easylistchina+easylist.txt: 15829) -/(.*/)?sponsorpaynetwork\. -sponsorpaynetwork.*. -# /sponsoringbanner/* (easylistchina+easylist.txt: 15828) -/(.*/)?sponsoringbanner/.* -# /sponsorHeaderDeriv_ (easylistchina+easylist.txt: 15827) -/(.*/)?sponsorHeaderDeriv_ -# /sponsoredlisting. (easylistchina+easylist.txt: 15826) -/(.*/)?sponsoredlisting\. -sponsoredlisting.*. -# /sponsoredlinksiframe. (easylistchina+easylist.txt: 15825) -/(.*/)?sponsoredlinksiframe\. -sponsoredlinksiframe.*. -# /sponsoredlinks? (easylistchina+easylist.txt: 15824) -/(.*/)?sponsoredlinks\? -# /sponsoredlinks/* (easylistchina+easylist.txt: 15823) -/(.*/)?sponsoredlinks/.* -# /sponsoredlinks. (easylistchina+easylist.txt: 15822) -/(.*/)?sponsoredlinks\. -sponsoredlinks.*. -# /sponsoredheadline. (easylistchina+easylist.txt: 15821) -/(.*/)?sponsoredheadline\. -sponsoredheadline.*. -# /sponsoredcontent. (easylistchina+easylist.txt: 15820) -/(.*/)?sponsoredcontent\. -sponsoredcontent.*. -# /sponsoredbanner/* (easylistchina+easylist.txt: 15819) -/(.*/)?sponsoredbanner/.* -# /sponsoredads/* (easylistchina+easylist.txt: 15818) -/(.*/)?sponsoredads/.* -# /sponsored_top. (easylistchina+easylist.txt: 15817) -/(.*/)?sponsored_top\. -# /sponsored_title. (easylistchina+easylist.txt: 15816) -/(.*/)?sponsored_title\. -# /sponsored_text. (easylistchina+easylist.txt: 15815) -/(.*/)?sponsored_text\. -# /sponsored_listings. (easylistchina+easylist.txt: 15814) -/(.*/)?sponsored_listings\. -# /sponsored_links_ (easylistchina+easylist.txt: 15813) -/(.*/)?sponsored_links_ -# /sponsored_links1. (easylistchina+easylist.txt: 15812) -/(.*/)?sponsored_links1\. -# /sponsored_links. (easylistchina+easylist.txt: 15811) -/(.*/)?sponsored_links\. -# /sponsored_link. (easylistchina+easylist.txt: 15810) -/(.*/)?sponsored_link\. -# /sponsored_by. (easylistchina+easylist.txt: 15809) -/(.*/)?sponsored_by\. -# /sponsored_ads/* (easylistchina+easylist.txt: 15808) -/(.*/)?sponsored_ads/.* -# /sponsored_ad_ (easylistchina+easylist.txt: 15807) -/(.*/)?sponsored_ad_ -# /sponsored_ad. (easylistchina+easylist.txt: 15806) -/(.*/)?sponsored_ad\. -# /sponsored-links/* (easylistchina+easylist.txt: 15805) -/(.*/)?sponsored-links/.* -# /sponsored-links- (easylistchina+easylist.txt: 15804) -/(.*/)?sponsored-links- -sponsored-links-*. -# /sponsored-banner- (easylistchina+easylist.txt: 15803) -/(.*/)?sponsored-banner- -sponsored-banner-*. -# /sponsored-backgrounds/* (easylistchina+easylist.txt: 15802) -/(.*/)?sponsored-backgrounds/.* -# /sponsorbg/* (easylistchina+easylist.txt: 15801) -/(.*/)?sponsorbg/.* -# /sponsorbanners/* (easylistchina+easylist.txt: 15800) -/(.*/)?sponsorbanners/.* -# /sponsorads/* (easylistchina+easylist.txt: 15799) -/(.*/)?sponsorads/.* -# /sponsorads. (easylistchina+easylist.txt: 15798) -/(.*/)?sponsorads\. -sponsorads.*. -# /sponsoradds/* (easylistchina+easylist.txt: 15797) -/(.*/)?sponsoradds/.* -# /sponsorad2. (easylistchina+easylist.txt: 15796) -/(.*/)?sponsorad2\. -sponsorad2.*. -# /sponsorad. (easylistchina+easylist.txt: 15795) -/(.*/)?sponsorad\. -sponsorad.*. -# /sponsor_select. (easylistchina+easylist.txt: 15794) -/(.*/)?sponsor_select\. -# /sponsor_ads. (easylistchina+easylist.txt: 15793) -/(.*/)?sponsor_ads\. -# /sponsor/click. (easylistchina+easylist.txt: 15792) -/(.*/)?sponsor/click\. -# /sponsor-links. (easylistchina+easylist.txt: 15791) -/(.*/)?sponsor-links\. -sponsor-links.*. -# /sponsor-box? (easylistchina+easylist.txt: 15790) -/(.*/)?sponsor-box\? -# /sponsor-banner. (easylistchina+easylist.txt: 15789) -/(.*/)?sponsor-banner\. -sponsor-banner.*. -# /sponsor-ad (easylistchina+easylist.txt: 15788) -/(.*/)?sponsor-ad -sponsor-ad*. -# /sponsor%20banners/* (easylistchina+easylist.txt: 15787) -/(.*/)?sponsor%20banners/.* -# /sponslink_ (easylistchina+easylist.txt: 15786) -/(.*/)?sponslink_ -# /sponsimages/* (easylistchina+easylist.txt: 15785) -/(.*/)?sponsimages/.* -# /sponsers.cgi (easylistchina+easylist.txt: 15784) -/(.*/)?sponsers\.cgi -sponsers.cgi*. -# /sponseredlinksros. (easylistchina+easylist.txt: 15783) -/(.*/)?sponseredlinksros\. -sponseredlinksros.*. -# /sponser. (easylistchina+easylist.txt: 15782) -/(.*/)?sponser\. -sponser.*. -# /spons_links_ (easylistchina+easylist.txt: 15781) -/(.*/)?spons_links_ -# /spons/banners/* (easylistchina+easylist.txt: 15780) -/(.*/)?spons/banners/.* -# /sponlink. (easylistchina+easylist.txt: 15779) -/(.*/)?sponlink\. -sponlink.*. -# /spo_show.asp? (easylistchina+easylist.txt: 15778) -/(.*/)?spo_show\.asp\? -# /SplashAd_ (easylistchina+easylist.txt: 15777) -/(.*/)?SplashAd_ -# /splash_ads_ (easylistchina+easylist.txt: 15776) -/(.*/)?splash_ads_ -# /spiderad/* (easylistchina+easylist.txt: 15775) -/(.*/)?spiderad/.* -# /specialfeatureads/* (easylistchina+easylist.txt: 15774) -/(.*/)?specialfeatureads/.* -# /specialads/* (easylistchina+easylist.txt: 15773) -/(.*/)?specialads/.* -# /special_ads/* (easylistchina+easylist.txt: 15772) -/(.*/)?special_ads/.* -# /special_ad. (easylistchina+easylist.txt: 15771) -/(.*/)?special_ad\. -# /special-ads/* (easylistchina+easylist.txt: 15770) -/(.*/)?special-ads/.* -# /spcjs_min. (easylistchina+easylist.txt: 15769) -/(.*/)?spcjs_min\. -# /spcjs.php (easylistchina+easylist.txt: 15768) -/(.*/)?spcjs\.php -spcjs.php*. -# /spc.php (easylistchina+easylist.txt: 15767) -/(.*/)?spc\.php -spc.php*. -# /spark_ad. (easylistchina+easylist.txt: 15766) -/(.*/)?spark_ad\. -# /spacedesc= (easylistchina+easylist.txt: 15765) -/(.*/)?spacedesc= -# /space_ad. (easylistchina+easylist.txt: 15764) -/(.*/)?space_ad\. -# /spac_adx. (easylistchina+easylist.txt: 15763) -/(.*/)?spac_adx\. -# /sp/delivery/* (easylistchina+easylist.txt: 15762) -/(.*/)?sp/delivery/.* -# /someads. (easylistchina+easylist.txt: 15761) -/(.*/)?someads\. -someads.*. -# /some-ad. (easylistchina+easylist.txt: 15760) -/(.*/)?some-ad\. -some-ad.*. -# /somaadscaleskyscraperscript. (easylistchina+easylist.txt: 15759) -/(.*/)?somaadscaleskyscraperscript\. -somaadscaleskyscraperscript.*. -# /socialads/* (easylistchina+easylist.txt: 15758) -/(.*/)?socialads/.* -# /socialads. (easylistchina+easylist.txt: 15757) -/(.*/)?socialads\. -socialads.*. -# /SmpAds. (easylistchina+easylist.txt: 15756) -/(.*/)?SmpAds\. -SmpAds.*. -# /smoozed-ad/* (easylistchina+easylist.txt: 15755) -/(.*/)?smoozed-ad/.* -# /smedia/ad/* (easylistchina+easylist.txt: 15754) -/(.*/)?smedia/ad/.* -# /smeadvertisement/* (easylistchina+easylist.txt: 15753) -/(.*/)?smeadvertisement/.* -# /smb/ads/* (easylistchina+easylist.txt: 15752) -/(.*/)?smb/ads/.* -# /smartlinks.epl? (easylistchina+easylist.txt: 15751) -/(.*/)?smartlinks\.epl\? -# /smartadserver. (easylistchina+easylist.txt: 15750) -/(.*/)?smartadserver\. -smartadserver.*. -# /smartads. (easylistchina+easylist.txt: 15749) -/(.*/)?smartads\. -smartads.*. -# /smartAd? (easylistchina+easylist.txt: 15748) -/(.*/)?smartAd\? -# /smartad. (easylistchina+easylist.txt: 15747) -/(.*/)?smartad\. -smartad.*. -# /smartad- (easylistchina+easylist.txt: 15746) -/(.*/)?smartad- -smartad-*. -# /smart_ad/* (easylistchina+easylist.txt: 15745) -/(.*/)?smart_ad/.* -# /smart-ad-server. (easylistchina+easylist.txt: 15744) -/(.*/)?smart-ad-server\. -smart-ad-server.*. -# /smalltopl. (easylistchina+easylist.txt: 15743) -/(.*/)?smalltopl\. -smalltopl.*. -# /smalladblockbg- (easylistchina+easylist.txt: 15742) -/(.*/)?smalladblockbg- -smalladblockbg-*. -# /smallad- (easylistchina+easylist.txt: 15741) -/(.*/)?smallad- -smallad-*. -# /small_ads/* (easylistchina+easylist.txt: 15740) -/(.*/)?small_ads/.* -# /small_ad_ (easylistchina+easylist.txt: 15739) -/(.*/)?small_ad_ -# /small_ad. (easylistchina+easylist.txt: 15738) -/(.*/)?small_ad\. -# /smalAds. (easylistchina+easylist.txt: 15737) -/(.*/)?smalAds\. -smalAds.*. -# /slidetopad. (easylistchina+easylist.txt: 15736) -/(.*/)?slidetopad\. -slidetopad.*. -# /slideshowintad? (easylistchina+easylist.txt: 15735) -/(.*/)?slideshowintad\? -# /slideshow/ads. (easylistchina+easylist.txt: 15734) -/(.*/)?slideshow/ads\. -# /SliderJobAdList. (easylistchina+easylist.txt: 15733) -/(.*/)?SliderJobAdList\. -SliderJobAdList.*. -# /sliderad3. (easylistchina+easylist.txt: 15732) -/(.*/)?sliderad3\. -sliderad3.*. -# /sliderAd/* (easylistchina+easylist.txt: 15731) -/(.*/)?sliderAd/.* -# /slider_ad. (easylistchina+easylist.txt: 15730) -/(.*/)?slider_ad\. -# /slider.ad. (easylistchina+easylist.txt: 15729) -/(.*/)?slider\.ad\. -slider.ad.*. -# /slider-ad- (easylistchina+easylist.txt: 15728) -/(.*/)?slider-ad- -slider-ad-*. -# /slideinad. (easylistchina+easylist.txt: 15727) -/(.*/)?slideinad\. -slideinad.*. -# /slideadverts/* (easylistchina+easylist.txt: 15726) -/(.*/)?slideadverts/.* -# /slafc.js (easylistchina+easylist.txt: 15725) -/(.*/)?slafc\.js -slafc.js*. -# /skyscraperad. (easylistchina+easylist.txt: 15724) -/(.*/)?skyscraperad\. -skyscraperad.*. -# /skyscraper_ad_ (easylistchina+easylist.txt: 15723) -/(.*/)?skyscraper_ad_ -# /skyscraper-ad. (easylistchina+easylist.txt: 15722) -/(.*/)?skyscraper-ad\. -skyscraper-ad.*. -# /skyframeopenads_ (easylistchina+easylist.txt: 15721) -/(.*/)?skyframeopenads_ -# /skyframeopenads. (easylistchina+easylist.txt: 15720) -/(.*/)?skyframeopenads\. -skyframeopenads.*. -# /skybar_ad. (easylistchina+easylist.txt: 15719) -/(.*/)?skybar_ad\. -# /skybannerview. (easylistchina+easylist.txt: 15718) -/(.*/)?skybannerview\. -skybannerview.*. -# /skyadright. (easylistchina+easylist.txt: 15717) -/(.*/)?skyadright\. -skyadright.*. -# /skyadjs/* (easylistchina+easylist.txt: 15716) -/(.*/)?skyadjs/.* -# /skyad_ (easylistchina+easylist.txt: 15715) -/(.*/)?skyad_ -# /skyad. (easylistchina+easylist.txt: 15714) -/(.*/)?skyad\. -skyad.*. -# /skins/ads/* (easylistchina+easylist.txt: 15713) -/(.*/)?skins/ads/.* -# /skins/ads- (easylistchina+easylist.txt: 15712) -/(.*/)?skins/ads- -# /skinads/* (easylistchina+easylist.txt: 15711) -/(.*/)?skinads/.* -# /skinad. (easylistchina+easylist.txt: 15710) -/(.*/)?skinad\. -skinad.*. -# /skin3/ads/* (easylistchina+easylist.txt: 15709) -/(.*/)?skin3/ads/.* -# /skin/adv/* (easylistchina+easylist.txt: 15708) -/(.*/)?skin/adv/.* -# /skin/ad3/* (easylistchina+easylist.txt: 15707) -/(.*/)?skin/ad3/.* -# /skin/ad/* (easylistchina+easylist.txt: 15706) -/(.*/)?skin/ad/.* -# /size=*/random=*/viewid= (easylistchina+easylist.txt: 15705) -/(.*/)?size=.*/random=.*/viewid= -# /sitewide/ads/* (easylistchina+easylist.txt: 15704) -/(.*/)?sitewide/ads/.* -# /sites/ad_ (easylistchina+easylist.txt: 15703) -/(.*/)?sites/ad_ -# /sitemanagement/ads/* (easylistchina+easylist.txt: 15702) -/(.*/)?sitemanagement/ads/.* -# /siteimages/ads- (easylistchina+easylist.txt: 15701) -/(.*/)?siteimages/ads- -# /siteafs.txt? (easylistchina+easylist.txt: 15700) -/(.*/)?siteafs\.txt\? -# /siteadvert. (easylistchina+easylist.txt: 15699) -/(.*/)?siteadvert\. -siteadvert.*. -# /siteads/* (easylistchina+easylist.txt: 15698) -/(.*/)?siteads/.* -# /siteads. (easylistchina+easylist.txt: 15697) -/(.*/)?siteads\. -siteads.*. -# /site_under. (easylistchina+easylist.txt: 15696) -/(.*/)?site_under\. -# /site_ads/* (easylistchina+easylist.txt: 15695) -/(.*/)?site_ads/.* -# /site_ads. (easylistchina+easylist.txt: 15694) -/(.*/)?site_ads\. -# /site=*/viewid=*/size= (easylistchina+easylist.txt: 15693) -/(.*/)?site=.*/viewid=.*/size= -# /site=*/size=*/viewid= (easylistchina+easylist.txt: 15692) -/(.*/)?site=.*/size=.*/viewid= -# /site/ads? (easylistchina+easylist.txt: 15691) -/(.*/)?site/ads\? -# /site/ads/* (easylistchina+easylist.txt: 15690) -/(.*/)?site/ads/.* -# /site/ad/* (easylistchina+easylist.txt: 15689) -/(.*/)?site/ad/.* -# /site-advert. (easylistchina+easylist.txt: 15688) -/(.*/)?site-advert\. -site-advert.*. -# /site-ads/* (easylistchina+easylist.txt: 15687) -/(.*/)?site-ads/.* -# /sisterads. (easylistchina+easylist.txt: 15686) -/(.*/)?sisterads\. -sisterads.*. -# /singleadextension. (easylistchina+easylist.txt: 15685) -/(.*/)?singleadextension\. -singleadextension.*. -# /simpleadvert/* (easylistchina+easylist.txt: 15684) -/(.*/)?simpleadvert/.* -# /simpleadvert. (easylistchina+easylist.txt: 15683) -/(.*/)?simpleadvert\. -simpleadvert.*. -# /simpleads/* (easylistchina+easylist.txt: 15682) -/(.*/)?simpleads/.* -# /silverads. (easylistchina+easylist.txt: 15681) -/(.*/)?silverads\. -silverads.*. -# /silver/ads/* (easylistchina+easylist.txt: 15680) -/(.*/)?silver/ads/.* -# /siframead. (easylistchina+easylist.txt: 15679) -/(.*/)?siframead\. -siframead.*. -# /sidelinead. (easylistchina+easylist.txt: 15678) -/(.*/)?sidelinead\. -sidelinead.*. -# /sidekickads. (easylistchina+easylist.txt: 15677) -/(.*/)?sidekickads\. -sidekickads.*. -# /sidecol_ad. (easylistchina+easylist.txt: 15676) -/(.*/)?sidecol_ad\. -# /sidebaradvertisement. (easylistchina+easylist.txt: 15675) -/(.*/)?sidebaradvertisement\. -sidebaradvertisement.*. -# /sidebarad/* (easylistchina+easylist.txt: 15674) -/(.*/)?sidebarad/.* -# /sidebar_ads/* (easylistchina+easylist.txt: 15673) -/(.*/)?sidebar_ads/.* -# /sidebar_ad_ (easylistchina+easylist.txt: 15672) -/(.*/)?sidebar_ad_ -# /sidebar_ad. (easylistchina+easylist.txt: 15671) -/(.*/)?sidebar_ad\. -# /sidebar-ads/* (easylistchina+easylist.txt: 15670) -/(.*/)?sidebar-ads/.* -# /sidebar-ad- (easylistchina+easylist.txt: 15669) -/(.*/)?sidebar-ad- -sidebar-ad-*. -# /sideadvtmp. (easylistchina+easylist.txt: 15668) -/(.*/)?sideadvtmp\. -sideadvtmp.*. -# /sideads| (easylistchina+easylist.txt: 15667) -/(.*/)?sideads$ -# /sideads/* (easylistchina+easylist.txt: 15666) -/(.*/)?sideads/.* -# /sideadiframe. (easylistchina+easylist.txt: 15665) -/(.*/)?sideadiframe\. -sideadiframe.*. -# /sidead3. (easylistchina+easylist.txt: 15664) -/(.*/)?sidead3\. -sidead3.*. -# /sidead2. (easylistchina+easylist.txt: 15663) -/(.*/)?sidead2\. -sidead2.*. -# /sidead1. (easylistchina+easylist.txt: 15662) -/(.*/)?sidead1\. -sidead1.*. -# /sidead/* (easylistchina+easylist.txt: 15661) -/(.*/)?sidead/.* -# /sidead. (easylistchina+easylist.txt: 15660) -/(.*/)?sidead\. -sidead.*. -# /side_adverts. (easylistchina+easylist.txt: 15659) -/(.*/)?side_adverts\. -# /side-ads- (easylistchina+easylist.txt: 15658) -/(.*/)?side-ads- -side-ads-*. -# /side-ad. (easylistchina+easylist.txt: 15657) -/(.*/)?side-ad\. -side-ad.*. -# /side-ad- (easylistchina+easylist.txt: 15656) -/(.*/)?side-ad- -side-ad-*. -# /showSp.php? (easylistchina+easylist.txt: 15655) -/(.*/)?showSp\.php\? -# /showsidebar-ad- (easylistchina+easylist.txt: 15654) -/(.*/)?showsidebar-ad- -showsidebar-ad-*. -# /showpost-ad- (easylistchina+easylist.txt: 15653) -/(.*/)?showpost-ad- -showpost-ad-*. -# /showmarketingmaterial. (easylistchina+easylist.txt: 15652) -/(.*/)?showmarketingmaterial\. -showmarketingmaterial.*. -# /showJsAd/* (easylistchina+easylist.txt: 15651) -/(.*/)?showJsAd/.* -# /showindex-ad- (easylistchina+easylist.txt: 15650) -/(.*/)?showindex-ad- -showindex-ad-*. -# /showflashad. (easylistchina+easylist.txt: 15649) -/(.*/)?showflashad\. -showflashad.*. -# /showcasead/* (easylistchina+easylist.txt: 15648) -/(.*/)?showcasead/.* -# /showbanner. (easylistchina+easylist.txt: 15647) -/(.*/)?showbanner\. -showbanner.*. -# /showban.asp? (easylistchina+easylist.txt: 15646) -/(.*/)?showban\.asp\? -# /showadvertising. (easylistchina+easylist.txt: 15645) -/(.*/)?showadvertising\. -showadvertising.*. -# /showadvert. (easylistchina+easylist.txt: 15644) -/(.*/)?showadvert\. -showadvert.*. -# /showads_ (easylistchina+easylist.txt: 15643) -/(.*/)?showads_ -# /showads/* (easylistchina+easylist.txt: 15642) -/(.*/)?showads/.* -# /showads. (easylistchina+easylist.txt: 15641) -/(.*/)?showads\. -showads.*. -# /showadjs. (easylistchina+easylist.txt: 15640) -/(.*/)?showadjs\. -showadjs.*. -# /showadcode. (easylistchina+easylist.txt: 15639) -/(.*/)?showadcode\. -showadcode.*. -# /showad_ (easylistchina+easylist.txt: 15638) -/(.*/)?showad_ -# /showAd300. (easylistchina+easylist.txt: 15637) -/(.*/)?showAd300\. -showAd300.*. -# /showAd300- (easylistchina+easylist.txt: 15636) -/(.*/)?showAd300- -showAd300-*. -# /showad/* (easylistchina+easylist.txt: 15635) -/(.*/)?showad/.* -# /showad. (easylistchina+easylist.txt: 15634) -/(.*/)?showad\. -showad.*. -# /show_ads_ (easylistchina+easylist.txt: 15633) -/(.*/)?show_ads_ -# /show_ads.js (easylistchina+easylist.txt: 15632) -/(.*/)?show_ads\.js -# /show_ad_ (easylistchina+easylist.txt: 15631) -/(.*/)?show_ad_ -# /show_ad. (easylistchina+easylist.txt: 15630) -/(.*/)?show_ad\. -# /show.cgi?adp (easylistchina+easylist.txt: 15629) -/(.*/)?show\.cgi\?adp -# /show.ad? (easylistchina+easylist.txt: 15628) -/(.*/)?show\.ad\? -# /show-ads. (easylistchina+easylist.txt: 15627) -/(.*/)?show-ads\. -show-ads.*. -# /show-ad. (easylistchina+easylist.txt: 15626) -/(.*/)?show-ad\. -show-ad.*. -# /shortmediads/* (easylistchina+easylist.txt: 15625) -/(.*/)?shortmediads/.* -# /shared/ads/* (easylistchina+easylist.txt: 15624) -/(.*/)?shared/ads/.* -# /shared/ads. (easylistchina+easylist.txt: 15623) -/(.*/)?shared/ads\. -# /shared/ad_ (easylistchina+easylist.txt: 15622) -/(.*/)?shared/ad_ -# /share/ads/* (easylistchina+easylist.txt: 15621) -/(.*/)?share/ads/.* -# /sevenl_ad. (easylistchina+easylist.txt: 15620) -/(.*/)?sevenl_ad\. -# /sevenads. (easylistchina+easylist.txt: 15619) -/(.*/)?sevenads\. -sevenads.*. -# /settings/ad. (easylistchina+easylist.txt: 15618) -/(.*/)?settings/ad\. -# /servlet/view/* (easylistchina+easylist.txt: 15617) -/(.*/)?servlet/view/.* -# /services/ads/* (easylistchina+easylist.txt: 15616) -/(.*/)?services/ads/.* -# /service/ads/* (easylistchina+easylist.txt: 15615) -/(.*/)?service/ads/.* -# /servewebads/* (easylistchina+easylist.txt: 15614) -/(.*/)?servewebads/.* -# /server/ads/* (easylistchina+easylist.txt: 15613) -/(.*/)?server/ads/.* -# /Server/AD/* (easylistchina+easylist.txt: 15612) -/(.*/)?Server/AD/.* -# /serveads. (easylistchina+easylist.txt: 15611) -/(.*/)?serveads\. -serveads.*. -# /ServeAd? (easylistchina+easylist.txt: 15610) -/(.*/)?ServeAd\? -# /servead/* (easylistchina+easylist.txt: 15609) -/(.*/)?servead/.* -# /servead. (easylistchina+easylist.txt: 15608) -/(.*/)?servead\. -servead.*. -# /serve.ads. (easylistchina+easylist.txt: 15607) -/(.*/)?serve\.ads\. -serve.ads.*. -# /serv.ads. (easylistchina+easylist.txt: 15606) -/(.*/)?serv\.ads\. -serv.ads.*. -# /seo-ads. (easylistchina+easylist.txt: 15605) -/(.*/)?seo-ads\. -seo-ads.*. -# /securepubads. (easylistchina+easylist.txt: 15604) -/(.*/)?securepubads\. -securepubads.*. -# /secondads_ (easylistchina+easylist.txt: 15603) -/(.*/)?secondads_ -# /secondads. (easylistchina+easylist.txt: 15602) -/(.*/)?secondads\. -secondads.*. -# /searchads/* (easylistchina+easylist.txt: 15601) -/(.*/)?searchads/.* -# /searchad_ (easylistchina+easylist.txt: 15600) -/(.*/)?searchad_ -# /searchad. (easylistchina+easylist.txt: 15599) -/(.*/)?searchad\. -searchad.*. -# /search_ads. (easylistchina+easylist.txt: 15598) -/(.*/)?search_ads\. -# /search/ads_ (easylistchina+easylist.txt: 15597) -/(.*/)?search/ads_ -# /search/ads? (easylistchina+easylist.txt: 15596) -/(.*/)?search/ads\? -# /search/ad/* (easylistchina+easylist.txt: 15595) -/(.*/)?search/ad/.* -# /search.php?uid=*.*&src= (easylistchina+easylist.txt: 15594) -/(.*/)?search\.php\?uid=.*\..*&src= -# /search-ads? (easylistchina+easylist.txt: 15593) -/(.*/)?search-ads\? -# /scrpads. (easylistchina+easylist.txt: 15592) -/(.*/)?scrpads\. -scrpads.*. -# /scrollads/* (easylistchina+easylist.txt: 15591) -/(.*/)?scrollads/.* -# /scripts/zanox- (easylistchina+easylist.txt: 15590) -/(.*/)?scripts/zanox- -# /scripts/feedmeCaf.php?q=*&d=*&ron=$script (easylistchina+easylist.txt: 15589) -/(.*/)?scripts/feedmeCaf\.php\?q=.*&d=.*&ron= -# /scripts/afc/* (easylistchina+easylist.txt: 15588) -/(.*/)?scripts/afc/.* -# /scripts/adv. (easylistchina+easylist.txt: 15587) -/(.*/)?scripts/adv\. -# /scripts/AdService_ (easylistchina+easylist.txt: 15586) -/(.*/)?scripts/AdService_ -# /scripts/ads/* (easylistchina+easylist.txt: 15585) -/(.*/)?scripts/ads/.* -# /scripts/ads. (easylistchina+easylist.txt: 15584) -/(.*/)?scripts/ads\. -# /scripts/ad_ (easylistchina+easylist.txt: 15583) -/(.*/)?scripts/ad_ -# /scripts/ad/* (easylistchina+easylist.txt: 15582) -/(.*/)?scripts/ad/.* -# /scripts/ad. (easylistchina+easylist.txt: 15581) -/(.*/)?scripts/ad\. -# /scripts/ad- (easylistchina+easylist.txt: 15580) -/(.*/)?scripts/ad- -# /script/oas/* (easylistchina+easylist.txt: 15579) -/(.*/)?script/oas/.* -# /script/banniere_*.php?id=*&ref=$script,third-party (easylistchina+easylist.txt: 15578) -/(.*/)?script/banniere_.*\.php\?id=.*&ref= -# /script/ads_ (easylistchina+easylist.txt: 15577) -/(.*/)?script/ads_ -# /script/ads. (easylistchina+easylist.txt: 15576) -/(.*/)?script/ads\. -# /script/ad. (easylistchina+easylist.txt: 15575) -/(.*/)?script/ad\. -# /scaradcontrol. (easylistchina+easylist.txt: 15574) -/(.*/)?scaradcontrol\. -scaradcontrol.*. -# /scanscoutplugin. (easylistchina+easylist.txt: 15573) -/(.*/)?scanscoutplugin\. -scanscoutplugin.*. -# /scanscoutoverlayadrenderer. (easylistchina+easylist.txt: 15572) -/(.*/)?scanscoutoverlayadrenderer\. -scanscoutoverlayadrenderer.*. -# /scanscout. (easylistchina+easylist.txt: 15571) -/(.*/)?scanscout\. -scanscout.*. -# /sb-relevance.js (easylistchina+easylist.txt: 15570) -/(.*/)?sb-relevance\.js -sb-relevance.js*. -# /savvyads. (easylistchina+easylist.txt: 15569) -/(.*/)?savvyads\. -savvyads.*. -# /satnetgoogleads. (easylistchina+easylist.txt: 15568) -/(.*/)?satnetgoogleads\. -satnetgoogleads.*. -# /satnetads. (easylistchina+easylist.txt: 15567) -/(.*/)?satnetads\. -satnetads.*. -# /samsung_ad. (easylistchina+easylist.txt: 15566) -/(.*/)?samsung_ad\. -# /samplead1. (easylistchina+easylist.txt: 15565) -/(.*/)?samplead1\. -samplead1.*. -# /salesad/* (easylistchina+easylist.txt: 15564) -/(.*/)?salesad/.* -# /sailthru.js (easylistchina+easylist.txt: 15563) -/(.*/)?sailthru\.js -sailthru.js*. -# /safead/* (easylistchina+easylist.txt: 15562) -/(.*/)?safead/.* -# /rule34v2/ads/* (easylistchina+easylist.txt: 15561) -/(.*/)?rule34v2/ads/.* -# /rule34/ads/* (easylistchina+easylist.txt: 15560) -/(.*/)?rule34/ads/.* -# /rswebsiteads/* (easylistchina+easylist.txt: 15559) -/(.*/)?rswebsiteads/.* -# /rss2/?np=*&hp=$script,third-party (easylistchina+easylist.txt: 15558) -/(.*/)?rss2/\?np=.*&hp= -# /rss2/?hp=*&np=$script,third-party (easylistchina+easylist.txt: 15557) -/(.*/)?rss2/\?hp=.*&np= -# /rss2/?*&np=*&hp=$script,third-party (easylistchina+easylist.txt: 15556) -/(.*/)?rss2/\?.*&np=.*&hp= -# /rss2/?*&hp=*&np=$script,third-party (easylistchina+easylist.txt: 15555) -/(.*/)?rss2/\?.*&hp=.*&np= -# /rss/ads/* (easylistchina+easylist.txt: 15554) -/(.*/)?rss/ads/.* -# /rsc_ad_ (easylistchina+easylist.txt: 15553) -/(.*/)?rsc_ad_ -# /rsads/* (easylistchina+easylist.txt: 15552) -/(.*/)?rsads/.* -# /rsads.js (easylistchina+easylist.txt: 15551) -/(.*/)?rsads\.js -rsads.js*. -# /rpgetad. (easylistchina+easylist.txt: 15550) -/(.*/)?rpgetad\. -rpgetad.*. -# /rpc/ad/* (easylistchina+easylist.txt: 15549) -/(.*/)?rpc/ad/.* -# /roturl.js (easylistchina+easylist.txt: 15548) -/(.*/)?roturl\.js -roturl.js*. -# /rotatoradbottom. (easylistchina+easylist.txt: 15547) -/(.*/)?rotatoradbottom\. -rotatoradbottom.*. -# /rotatorad300x250. (easylistchina+easylist.txt: 15546) -/(.*/)?rotatorad300x250\. -rotatorad300x250.*. -# /rotationad. (easylistchina+easylist.txt: 15545) -/(.*/)?rotationad\. -rotationad.*. -# /rotation/banner (easylistchina+easylist.txt: 15544) -/(.*/)?rotation/banner -# /rotatingtextad. (easylistchina+easylist.txt: 15543) -/(.*/)?rotatingtextad\. -rotatingtextad.*. -# /rotatingpeels. (easylistchina+easylist.txt: 15542) -/(.*/)?rotatingpeels\. -rotatingpeels.*. -# /rotatingad. (easylistchina+easylist.txt: 15541) -/(.*/)?rotatingad\. -rotatingad.*. -# /rotating_banner.php (easylistchina+easylist.txt: 15540) -/(.*/)?rotating_banner\.php -# /rotatedads2. (easylistchina+easylist.txt: 15539) -/(.*/)?rotatedads2\. -rotatedads2.*. -# /rotatedads13. (easylistchina+easylist.txt: 15538) -/(.*/)?rotatedads13\. -rotatedads13.*. -# /rotatedads1. (easylistchina+easylist.txt: 15537) -/(.*/)?rotatedads1\. -rotatedads1.*. -# /rotateads. (easylistchina+easylist.txt: 15536) -/(.*/)?rotateads\. -rotateads.*. -# /rotads/* (easylistchina+easylist.txt: 15535) -/(.*/)?rotads/.* -# /rotad/* (easylistchina+easylist.txt: 15534) -/(.*/)?rotad/.* -# /root_ad. (easylistchina+easylist.txt: 15533) -/(.*/)?root_ad\. -# /rolloverbannerad. (easylistchina+easylist.txt: 15532) -/(.*/)?rolloverbannerad\. -rolloverbannerad.*. -# /rolloverads/* (easylistchina+easylist.txt: 15531) -/(.*/)?rolloverads/.* -# /rollad. (easylistchina+easylist.txt: 15530) -/(.*/)?rollad\. -rollad.*. -# /righttopads. (easylistchina+easylist.txt: 15529) -/(.*/)?righttopads\. -righttopads.*. -# /rightsideaddisplay. (easylistchina+easylist.txt: 15528) -/(.*/)?rightsideaddisplay\. -rightsideaddisplay.*. -# /rightrailgoogleads. (easylistchina+easylist.txt: 15527) -/(.*/)?rightrailgoogleads\. -rightrailgoogleads.*. -# /rightnavadsanswer. (easylistchina+easylist.txt: 15526) -/(.*/)?rightnavadsanswer\. -rightnavadsanswer.*. -# /rightnavads. (easylistchina+easylist.txt: 15525) -/(.*/)?rightnavads\. -rightnavads.*. -# /rightbanner/* (easylistchina+easylist.txt: 15524) -/(.*/)?rightbanner/.* -# /rightads. (easylistchina+easylist.txt: 15523) -/(.*/)?rightads\. -rightads.*. -# /rightad/* (easylistchina+easylist.txt: 15522) -/(.*/)?rightad/.* -# /rightad. (easylistchina+easylist.txt: 15521) -/(.*/)?rightad\. -rightad.*. -# /right_ads. (easylistchina+easylist.txt: 15520) -/(.*/)?right_ads\. -# /right_ad_ (easylistchina+easylist.txt: 15519) -/(.*/)?right_ad_ -# /right_ad^ (easylistchina+easylist.txt: 15518) -/(.*/)?right_ad[^\w%.-] -# /right_ad. (easylistchina+easylist.txt: 15517) -/(.*/)?right_ad\. -# /right-ad- (easylistchina+easylist.txt: 15516) -/(.*/)?right-ad- -right-ad-*. -# /richoas. (easylistchina+easylist.txt: 15515) -/(.*/)?richoas\. -richoas.*. -# /rhspushads/* (easylistchina+easylist.txt: 15514) -/(.*/)?rhspushads/.* -# /rgads. (easylistchina+easylist.txt: 15513) -/(.*/)?rgads\. -rgads.*. -# /rg-rlog.php$xmlhttprequest (easylistchina+easylist.txt: 15512) -/(.*/)?rg-rlog\.php -rg-rlog.php*. -# /rg-erdr.php$xmlhttprequest (easylistchina+easylist.txt: 15511) -/(.*/)?rg-erdr\.php -rg-erdr.php*. -# /revealads2/* (easylistchina+easylist.txt: 15510) -/(.*/)?revealads2/.* -# /revealads/* (easylistchina+easylist.txt: 15509) -/(.*/)?revealads/.* -# /revealads. (easylistchina+easylist.txt: 15508) -/(.*/)?revealads\. -revealads.*. -# /revealaads/* (easylistchina+easylist.txt: 15507) -/(.*/)?revealaads/.* -# /revealaads. (easylistchina+easylist.txt: 15506) -/(.*/)?revealaads\. -revealaads.*. -# /retrieve-ad. (easylistchina+easylist.txt: 15505) -/(.*/)?retrieve-ad\. -retrieve-ad.*. -# /retrad. (easylistchina+easylist.txt: 15504) -/(.*/)?retrad\. -retrad.*. -# /restorationad- (easylistchina+easylist.txt: 15503) -/(.*/)?restorationad- -restorationad-*. -# /responsive_dfp_ (easylistchina+easylist.txt: 15502) -/(.*/)?responsive_dfp_ -# /responsive_dfp. (easylistchina+easylist.txt: 15501) -/(.*/)?responsive_dfp\. -# /responsive-ads. (easylistchina+easylist.txt: 15500) -/(.*/)?responsive-ads\. -responsive-ads.*. -# /resources/ads_ (easylistchina+easylist.txt: 15499) -/(.*/)?resources/ads_ -# /resources/ads/* (easylistchina+easylist.txt: 15498) -/(.*/)?resources/ads/.* -# /resources/ad. (easylistchina+easylist.txt: 15497) -/(.*/)?resources/ad\. -# /requestmyspacead. (easylistchina+easylist.txt: 15496) -/(.*/)?requestmyspacead\. -requestmyspacead.*. -# /requestadvertisement. (easylistchina+easylist.txt: 15495) -/(.*/)?requestadvertisement\. -requestadvertisement.*. -# /report_ad_ (easylistchina+easylist.txt: 15494) -/(.*/)?report_ad_ -# /report_ad. (easylistchina+easylist.txt: 15493) -/(.*/)?report_ad\. -# /repeat_adv. (easylistchina+easylist.txt: 15492) -/(.*/)?repeat_adv\. -# /renderBanner.do? (easylistchina+easylist.txt: 15491) -/(.*/)?renderBanner\.do\? -# /render-ad/* (easylistchina+easylist.txt: 15490) -/(.*/)?render-ad/.* -# /remove_ads. (easylistchina+easylist.txt: 15489) -/(.*/)?remove_ads\. -# /remove-ads. (easylistchina+easylist.txt: 15488) -/(.*/)?remove-ads\. -remove-ads.*. -# /relevance_ad. (easylistchina+easylist.txt: 15487) -/(.*/)?relevance_ad\. -# /relatedads. (easylistchina+easylist.txt: 15486) -/(.*/)?relatedads\. -relatedads.*. -# /related-ads. (easylistchina+easylist.txt: 15485) -/(.*/)?related-ads\. -related-ads.*. -# /reklame/* (easylistchina+easylist.txt: 15484) -/(.*/)?reklame/.* -# /reklama5. (easylistchina+easylist.txt: 15483) -/(.*/)?reklama5\. -reklama5.*. -# /reklama2. (easylistchina+easylist.txt: 15482) -/(.*/)?reklama2\. -reklama2.*. -# /reklama/* (easylistchina+easylist.txt: 15481) -/(.*/)?reklama/.* -# /reklama.$~stylesheet (easylistchina+easylist.txt: 15480) -/(.*/)?reklama\. -reklama.*. -# /reklam/* (easylistchina+easylist.txt: 15479) -/(.*/)?reklam/.* -# /reklam. (easylistchina+easylist.txt: 15478) -/(.*/)?reklam\. -reklam.*. -# /RefSplDicAdsTopL. (easylistchina+easylist.txt: 15477) -/(.*/)?RefSplDicAdsTopL\. -RefSplDicAdsTopL.*. -# /refreshsyncbannerad? (easylistchina+easylist.txt: 15476) -/(.*/)?refreshsyncbannerad\? -# /refreshads- (easylistchina+easylist.txt: 15475) -/(.*/)?refreshads- -refreshads-*. -# /refads/* (easylistchina+easylist.txt: 15474) -/(.*/)?refads/.* -# /redirect_awe. (easylistchina+easylist.txt: 15473) -/(.*/)?redirect_awe\. -# /rectangle_advertorials_ (easylistchina+easylist.txt: 15472) -/(.*/)?rectangle_advertorials_ -# /rectangle_ad. (easylistchina+easylist.txt: 15471) -/(.*/)?rectangle_ad\. -# /rect_ad. (easylistchina+easylist.txt: 15470) -/(.*/)?rect_ad\. -# /recordadsall. (easylistchina+easylist.txt: 15469) -/(.*/)?recordadsall\. -recordadsall.*. -# /recommendations/ad. (easylistchina+easylist.txt: 15468) -/(.*/)?recommendations/ad\. -# /reclame/* (easylistchina+easylist.txt: 15467) -/(.*/)?reclame/.* -# /reclama/* (easylistchina+easylist.txt: 15466) -/(.*/)?reclama/.* -# /realmedia_mjx_ (easylistchina+easylist.txt: 15465) -/(.*/)?realmedia_mjx_ -# /realmedia_mjx. (easylistchina+easylist.txt: 15464) -/(.*/)?realmedia_mjx\. -# /realmedia_banner_ (easylistchina+easylist.txt: 15463) -/(.*/)?realmedia_banner_ -# /realmedia_banner. (easylistchina+easylist.txt: 15462) -/(.*/)?realmedia_banner\. -# /realmedia/ads/* (easylistchina+easylist.txt: 15461) -/(.*/)?realmedia/ads/.* -# /rcom-video-ads. (easylistchina+easylist.txt: 15460) -/(.*/)?rcom-video-ads\. -rcom-video-ads.*. -# /rcom-ads. (easylistchina+easylist.txt: 15459) -/(.*/)?rcom-ads\. -rcom-ads.*. -# /rcom-ads- (easylistchina+easylist.txt: 15458) -/(.*/)?rcom-ads- -rcom-ads-*. -# /rcolads2. (easylistchina+easylist.txt: 15457) -/(.*/)?rcolads2\. -rcolads2.*. -# /rcolads1. (easylistchina+easylist.txt: 15456) -/(.*/)?rcolads1\. -rcolads1.*. -# /rawtubelivead. (easylistchina+easylist.txt: 15455) -/(.*/)?rawtubelivead\. -rawtubelivead.*. -# /randomads. (easylistchina+easylist.txt: 15454) -/(.*/)?randomads\. -randomads.*. -# /randomad_ (easylistchina+easylist.txt: 15453) -/(.*/)?randomad_ -# /randomad728x90nsfw. (easylistchina+easylist.txt: 15452) -/(.*/)?randomad728x90nsfw\. -randomad728x90nsfw.*. -# /randomad300x250nsfw. (easylistchina+easylist.txt: 15451) -/(.*/)?randomad300x250nsfw\. -randomad300x250nsfw.*. -# /randomad2. (easylistchina+easylist.txt: 15450) -/(.*/)?randomad2\. -randomad2.*. -# /randomad160x600nsfw. (easylistchina+easylist.txt: 15449) -/(.*/)?randomad160x600nsfw\. -randomad160x600nsfw.*. -# /randomad120x600nsfw. (easylistchina+easylist.txt: 15448) -/(.*/)?randomad120x600nsfw\. -randomad120x600nsfw.*. -# /randomad. (easylistchina+easylist.txt: 15447) -/(.*/)?randomad\. -randomad.*. -# /ram/ads/* (easylistchina+easylist.txt: 15446) -/(.*/)?ram/ads/.* -# /RainbowTGXServer/* (easylistchina+easylist.txt: 15445) -/(.*/)?RainbowTGXServer/.* -# /railsad_ (easylistchina+easylist.txt: 15444) -/(.*/)?railsad_ -# /railsad. (easylistchina+easylist.txt: 15443) -/(.*/)?railsad\. -railsad.*. -# /railads. (easylistchina+easylist.txt: 15442) -/(.*/)?railads\. -railads.*. -# /railad. (easylistchina+easylist.txt: 15441) -/(.*/)?railad\. -railad.*. -# /rail_ad_ (easylistchina+easylist.txt: 15440) -/(.*/)?rail_ad_ -# /radopenx? (easylistchina+easylist.txt: 15439) -/(.*/)?radopenx\? -# /radioAdEmbedGPT. (easylistchina+easylist.txt: 15438) -/(.*/)?radioAdEmbedGPT\. -radioAdEmbedGPT.*. -# /radioadembedgenre. (easylistchina+easylist.txt: 15437) -/(.*/)?radioadembedgenre\. -radioadembedgenre.*. -# /radioAdEmbed. (easylistchina+easylist.txt: 15436) -/(.*/)?radioAdEmbed\. -radioAdEmbed.*. -# /r_ads/* (easylistchina+easylist.txt: 15435) -/(.*/)?r_ads/.* -# /quigo_ad (easylistchina+easylist.txt: 15434) -/(.*/)?quigo_ad -# /quick_ads/* (easylistchina+easylist.txt: 15433) -/(.*/)?quick_ads/.* -# /questions/ads/* (easylistchina+easylist.txt: 15432) -/(.*/)?questions/ads/.* -# /quadadvert. (easylistchina+easylist.txt: 15431) -/(.*/)?quadadvert\. -quadadvert.*. -# /qpon_big_ad (easylistchina+easylist.txt: 15430) -/(.*/)?qpon_big_ad -# /qd_ads/* (easylistchina+easylist.txt: 15429) -/(.*/)?qd_ads/.* -# /qandaads/* (easylistchina+easylist.txt: 15428) -/(.*/)?qandaads/.* -# /pushdownAd. (easylistchina+easylist.txt: 15427) -/(.*/)?pushdownAd\. -pushdownAd.*. -# /punder.php (easylistchina+easylist.txt: 15426) -/(.*/)?punder\.php -punder.php*. -# /punder.js (easylistchina+easylist.txt: 15425) -/(.*/)?punder\.js -punder.js*. -# /pullads. (easylistchina+easylist.txt: 15424) -/(.*/)?pullads\. -pullads.*. -# /puff_ad? (easylistchina+easylist.txt: 15423) -/(.*/)?puff_ad\? -# /pubs_aff.asp? (easylistchina+easylist.txt: 15422) -/(.*/)?pubs_aff\.asp\? -# /pubmatic_ (easylistchina+easylist.txt: 15421) -/(.*/)?pubmatic_ -# /publicidade/* (easylistchina+easylist.txt: 15420) -/(.*/)?publicidade/.* -# /publicidade. (easylistchina+easylist.txt: 15419) -/(.*/)?publicidade\. -publicidade.*. -# /publicidad_$~stylesheet (easylistchina+easylist.txt: 15418) -/(.*/)?publicidad_ -# /publicidad/* (easylistchina+easylist.txt: 15417) -/(.*/)?publicidad/.* -# /publicidad.$~object-subrequest,~stylesheet (easylistchina+easylist.txt: 15416) -/(.*/)?publicidad\. -publicidad.*. -# /public/adv/* (easylistchina+easylist.txt: 15415) -/(.*/)?public/adv/.* -# /public/ads/* (easylistchina+easylist.txt: 15414) -/(.*/)?public/ads/.* -# /public/ad? (easylistchina+easylist.txt: 15413) -/(.*/)?public/ad\? -# /public/ad/* (easylistchina+easylist.txt: 15412) -/(.*/)?public/ad/.* -# /pubads_ (easylistchina+easylist.txt: 15411) -/(.*/)?pubads_ -# /pubads. (easylistchina+easylist.txt: 15410) -/(.*/)?pubads\. -pubads.*. -# /pubad. (easylistchina+easylist.txt: 15409) -/(.*/)?pubad\. -pubad.*. -# /pub_images/*$third-party (easylistchina+easylist.txt: 15408) -/(.*/)?pub_images/.* -# /pub/ads/* (easylistchina+easylist.txt: 15407) -/(.*/)?pub/ads/.* -# /pub/ad/* (easylistchina+easylist.txt: 15406) -/(.*/)?pub/ad/.* -# /proxyadcall? (easylistchina+easylist.txt: 15405) -/(.*/)?proxyadcall\? -# /proxxorad. (easylistchina+easylist.txt: 15404) -/(.*/)?proxxorad\. -proxxorad.*. -# /provider_ads/* (easylistchina+easylist.txt: 15403) -/(.*/)?provider_ads/.* -# /provideadcode. (easylistchina+easylist.txt: 15402) -/(.*/)?provideadcode\. -provideadcode.*. -# /protection/ad/* (easylistchina+easylist.txt: 15401) -/(.*/)?protection/ad/.* -# /promotools1. (easylistchina+easylist.txt: 15400) -/(.*/)?promotools1\. -promotools1.*. -# /promotools/* (easylistchina+easylist.txt: 15399) -/(.*/)?promotools/.* -# /promotools. (easylistchina+easylist.txt: 15398) -/(.*/)?promotools\. -promotools.*. -# /promotions/ads? (easylistchina+easylist.txt: 15397) -/(.*/)?promotions/ads\? -# /promotions/ads/* (easylistchina+easylist.txt: 15396) -/(.*/)?promotions/ads/.* -# /promotions/ads. (easylistchina+easylist.txt: 15395) -/(.*/)?promotions/ads\. -# /promotion/geoip/* (easylistchina+easylist.txt: 15394) -/(.*/)?promotion/geoip/.* -# /promoredirect?*&campaign=*&zone= (easylistchina+easylist.txt: 15393) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /promoloaddisplay? (easylistchina+easylist.txt: 15392) -/(.*/)?promoloaddisplay\? -# /promobuttonad. (easylistchina+easylist.txt: 15391) -/(.*/)?promobuttonad\. -promobuttonad.*. -# /promoads/* (easylistchina+easylist.txt: 15390) -/(.*/)?promoads/.* -# /promo300x250. (easylistchina+easylist.txt: 15389) -/(.*/)?promo300x250\. -promo300x250.*. -# /promo300by250. (easylistchina+easylist.txt: 15388) -/(.*/)?promo300by250\. -promo300by250.*. -# /promo/banners/* (easylistchina+easylist.txt: 15387) -/(.*/)?promo/banners/.* -# /promo/affiframe. (easylistchina+easylist.txt: 15386) -/(.*/)?promo/affiframe\. -# /promo/ads/* (easylistchina+easylist.txt: 15385) -/(.*/)?promo/ads/.* -# /promo/ad_ (easylistchina+easylist.txt: 15384) -/(.*/)?promo/ad_ -# /promo-ads/* (easylistchina+easylist.txt: 15383) -/(.*/)?promo-ads/.* -# /projectwonderful_ (easylistchina+easylist.txt: 15382) -/(.*/)?projectwonderful_ -# /prog-sponsor/* (easylistchina+easylist.txt: 15381) -/(.*/)?prog-sponsor/.* -# /production/ads/* (easylistchina+easylist.txt: 15380) -/(.*/)?production/ads/.* -# /product-ads/* (easylistchina+easylist.txt: 15379) -/(.*/)?product-ads/.* -# /product-ad/* (easylistchina+easylist.txt: 15378) -/(.*/)?product-ad/.* -# /processing/impressions.asp? (easylistchina+easylist.txt: 15377) -/(.*/)?processing/impressions\.asp\? -# /processads. (easylistchina+easylist.txt: 15376) -/(.*/)?processads\. -processads.*. -# /processad. (easylistchina+easylist.txt: 15375) -/(.*/)?processad\. -processad.*. -# /proadvertising_ (easylistchina+easylist.txt: 15374) -/(.*/)?proadvertising_ -# /proadvertising. (easylistchina+easylist.txt: 15373) -/(.*/)?proadvertising\. -proadvertising.*. -# /proads/* (easylistchina+easylist.txt: 15372) -/(.*/)?proads/.* -# /PRNAd300x150. (easylistchina+easylist.txt: 15371) -/(.*/)?PRNAd300x150\. -PRNAd300x150.*. -# /printads/* (easylistchina+easylist.txt: 15370) -/(.*/)?printads/.* -# /printad/* (easylistchina+easylist.txt: 15369) -/(.*/)?printad/.* -# /printad. (easylistchina+easylist.txt: 15368) -/(.*/)?printad\. -printad.*. -# /previews/ad/* (easylistchina+easylist.txt: 15367) -/(.*/)?previews/ad/.* -# /prerollads. (easylistchina+easylist.txt: 15366) -/(.*/)?prerollads\. -prerollads.*. -# /prerollad. (easylistchina+easylist.txt: 15365) -/(.*/)?prerollad\. -prerollad.*. -# /premiumadzone. (easylistchina+easylist.txt: 15364) -/(.*/)?premiumadzone\. -premiumadzone.*. -# /premiumads/* (easylistchina+easylist.txt: 15363) -/(.*/)?premiumads/.* -# /premium_ad. (easylistchina+easylist.txt: 15362) -/(.*/)?premium_ad\. -# /premierebtnad/* (easylistchina+easylist.txt: 15361) -/(.*/)?premierebtnad/.* -# /predictad. (easylistchina+easylist.txt: 15360) -/(.*/)?predictad\. -predictad.*. -# /ppd_ads_ (easylistchina+easylist.txt: 15359) -/(.*/)?ppd_ads_ -# /ppd_ads. (easylistchina+easylist.txt: 15358) -/(.*/)?ppd_ads\. -# /pounder-$~image (easylistchina+easylist.txt: 15357) -/(.*/)?pounder- -pounder-*. -# /posts_ad. (easylistchina+easylist.txt: 15356) -/(.*/)?posts_ad\. -# /postprofileverticalad. (easylistchina+easylist.txt: 15355) -/(.*/)?postprofileverticalad\. -postprofileverticalad.*. -# /postprofilehorizontalad. (easylistchina+easylist.txt: 15354) -/(.*/)?postprofilehorizontalad\. -postprofilehorizontalad.*. -# /postprocad. (easylistchina+easylist.txt: 15353) -/(.*/)?postprocad\. -postprocad.*. -# /postad. (easylistchina+easylist.txt: 15352) -/(.*/)?postad\. -postad.*. -# /post_ads_ (easylistchina+easylist.txt: 15351) -/(.*/)?post_ads_ -# /post/ads/* (easylistchina+easylist.txt: 15350) -/(.*/)?post/ads/.* -# /post-ad- (easylistchina+easylist.txt: 15349) -/(.*/)?post-ad- -post-ad-*. -# /popupunder. (easylistchina+easylist.txt: 15348) -/(.*/)?popupunder\. -popupunder.*. -# /popupdfp. (easylistchina+easylist.txt: 15347) -/(.*/)?popupdfp\. -popupdfp.*. -# /popupads. (easylistchina+easylist.txt: 15346) -/(.*/)?popupads\. -popupads.*. -# /popup_code. (easylistchina+easylist.txt: 15345) -/(.*/)?popup_code\. -# /popup_ad. (easylistchina+easylist.txt: 15344) -/(.*/)?popup_ad\. -# /popup3.js (easylistchina+easylist.txt: 15343) -/(.*/)?popup3\.js -popup3.js*. -# /popup2.js (easylistchina+easylist.txt: 15342) -/(.*/)?popup2\.js -popup2.js*. -# /popup-domination/*$~stylesheet (easylistchina+easylist.txt: 15341) -/(.*/)?popup-domination/.* -# /popundr_ (easylistchina+easylist.txt: 15340) -/(.*/)?popundr_ -# /popundr. (easylistchina+easylist.txt: 15339) -/(.*/)?popundr\. -popundr.*. -# /popunders/* (easylistchina+easylist.txt: 15338) -/(.*/)?popunders/.* -# /popunders. (easylistchina+easylist.txt: 15337) -/(.*/)?popunders\. -popunders.*. -# /popunderking. (easylistchina+easylist.txt: 15336) -/(.*/)?popunderking\. -popunderking.*. -# /popundercode. (easylistchina+easylist.txt: 15335) -/(.*/)?popundercode\. -popundercode.*. -# /popunderblogs. (easylistchina+easylist.txt: 15334) -/(.*/)?popunderblogs\. -popunderblogs.*. -# /popunder_ (easylistchina+easylist.txt: 15333) -/(.*/)?popunder_ -# /popunder? (easylistchina+easylist.txt: 15332) -/(.*/)?popunder\? -# /popunder7. (easylistchina+easylist.txt: 15331) -/(.*/)?popunder7\. -popunder7.*. -# /popunder5. (easylistchina+easylist.txt: 15330) -/(.*/)?popunder5\. -popunder5.*. -# /popunder4. (easylistchina+easylist.txt: 15329) -/(.*/)?popunder4\. -popunder4.*. -# /popunder2. (easylistchina+easylist.txt: 15328) -/(.*/)?popunder2\. -popunder2.*. -# /popunder1_ (easylistchina+easylist.txt: 15327) -/(.*/)?popunder1_ -# /popunder1. (easylistchina+easylist.txt: 15326) -/(.*/)?popunder1\. -popunder1.*. -# /popunder/* (easylistchina+easylist.txt: 15325) -/(.*/)?popunder/.* -# /popunder. (easylistchina+easylist.txt: 15324) -/(.*/)?popunder\. -popunder.*. -# /popunder- (easylistchina+easylist.txt: 15323) -/(.*/)?popunder- -popunder-*. -# /popu.js (easylistchina+easylist.txt: 15322) -/(.*/)?popu\.js -popu.js*. -# /popshow.$~stylesheet (easylistchina+easylist.txt: 15321) -/(.*/)?popshow\. -popshow.*. -# /poprotator. (easylistchina+easylist.txt: 15320) -/(.*/)?poprotator\. -poprotator.*. -# /popounder4. (easylistchina+easylist.txt: 15319) -/(.*/)?popounder4\. -popounder4.*. -# /poplivejasmine. (easylistchina+easylist.txt: 15318) -/(.*/)?poplivejasmine\. -poplivejasmine.*. -# /popads_ (easylistchina+easylist.txt: 15317) -/(.*/)?popads_ -# /popads/* (easylistchina+easylist.txt: 15316) -/(.*/)?popads/.* -# /popads. (easylistchina+easylist.txt: 15315) -/(.*/)?popads\. -popads.*. -# /popad. (easylistchina+easylist.txt: 15314) -/(.*/)?popad\. -popad.*. -# /popad- (easylistchina+easylist.txt: 15313) -/(.*/)?popad- -popad-*. -# /pop_under/* (easylistchina+easylist.txt: 15312) -/(.*/)?pop_under/.* -# /pop_under. (easylistchina+easylist.txt: 15311) -/(.*/)?pop_under\. -# /pop_camgirlcity. (easylistchina+easylist.txt: 15310) -/(.*/)?pop_camgirlcity\. -# /pop_adfy. (easylistchina+easylist.txt: 15309) -/(.*/)?pop_adfy\. -# /pop_ad. (easylistchina+easylist.txt: 15308) -/(.*/)?pop_ad\. -# /pop?tid= (easylistchina+easylist.txt: 15307) -/(.*/)?pop\?tid= -# /pop2.js| (easylistchina+easylist.txt: 15306) -/(.*/)?pop2\.js$ -pop2.js -# /pop.js| (easylistchina+easylist.txt: 15305) -/(.*/)?pop\.js$ -pop.js -# /pop-under. (easylistchina+easylist.txt: 15304) -/(.*/)?pop-under\. -pop-under.*. -# /pool/ad/* (easylistchina+easylist.txt: 15303) -/(.*/)?pool/ad/.* -# /pool.ads. (easylistchina+easylist.txt: 15302) -/(.*/)?pool\.ads\. -pool.ads.*. -# /polopoly_fs/ad- (easylistchina+easylist.txt: 15301) -/(.*/)?polopoly_fs/ad- -# /poll-ad- (easylistchina+easylist.txt: 15300) -/(.*/)?poll-ad- -poll-ad-*. -# /poker-ad. (easylistchina+easylist.txt: 15299) -/(.*/)?poker-ad\. -poker-ad.*. -# /plus/ad_ (easylistchina+easylist.txt: 15298) -/(.*/)?plus/ad_ -# /plugins_ads_ (easylistchina+easylist.txt: 15297) -/(.*/)?plugins_ads_ -# /plugins/wp_actionpop/* (easylistchina+easylist.txt: 15296) -/(.*/)?plugins/wp_actionpop/.* -# /plugins/wp125/*$~stylesheet (easylistchina+easylist.txt: 15295) -/(.*/)?plugins/wp125/.* -# /plugins/wp-moreads/*$~stylesheet (easylistchina+easylist.txt: 15294) -/(.*/)?plugins/wp-moreads/.* -# /plugins/page-cornr- (easylistchina+easylist.txt: 15293) -/(.*/)?plugins/page-cornr- -# /plugins/ads/* (easylistchina+easylist.txt: 15292) -/(.*/)?plugins/ads/.* -# /plugins/ad. (easylistchina+easylist.txt: 15291) -/(.*/)?plugins/ad\. -# /plugin/ad/* (easylistchina+easylist.txt: 15290) -/(.*/)?plugin/ad/.* -# /pledgead. (easylistchina+easylist.txt: 15289) -/(.*/)?pledgead\. -pledgead.*. -# /player_ads/* (easylistchina+easylist.txt: 15288) -/(.*/)?player_ads/.* -# /player/ads/* (easylistchina+easylist.txt: 15287) -/(.*/)?player/ads/.* -# /player/ads. (easylistchina+easylist.txt: 15286) -/(.*/)?player/ads\. -# /player/ad/* (easylistchina+easylist.txt: 15285) -/(.*/)?player/ad/.* -# /play/ad/* (easylistchina+easylist.txt: 15284) -/(.*/)?play/ad/.* -# /placements/ad_ (easylistchina+easylist.txt: 15283) -/(.*/)?placements/ad_ -# /placeholder-ad- (easylistchina+easylist.txt: 15282) -/(.*/)?placeholder-ad- -placeholder-ad-*. -# /placead_ (easylistchina+easylist.txt: 15281) -/(.*/)?placead_ -# /place-ads/* (easylistchina+easylist.txt: 15280) -/(.*/)?place-ads/.* -# /pixelads/* (easylistchina+easylist.txt: 15279) -/(.*/)?pixelads/.* -# /pix/ads/* (easylistchina+easylist.txt: 15278) -/(.*/)?pix/ads/.* -# /pitattoad. (easylistchina+easylist.txt: 15277) -/(.*/)?pitattoad\. -pitattoad.*. -# /pilot_ad. (easylistchina+easylist.txt: 15276) -/(.*/)?pilot_ad\. -# /pictures/ads/* (easylistchina+easylist.txt: 15275) -/(.*/)?pictures/ads/.* -# /pictureads/* (easylistchina+easylist.txt: 15274) -/(.*/)?pictureads/.* -# /picture/ad/* (easylistchina+easylist.txt: 15273) -/(.*/)?picture/ad/.* -# /pics/ads/* (easylistchina+easylist.txt: 15272) -/(.*/)?pics/ads/.* -# /pickle-adsystem/* (easylistchina+easylist.txt: 15271) -/(.*/)?pickle-adsystem/.* -# /pic_adv/* (easylistchina+easylist.txt: 15270) -/(.*/)?pic_adv/.* -# /pic/ads/* (easylistchina+easylist.txt: 15269) -/(.*/)?pic/ads/.* -# /phpbanner/banner_ (easylistchina+easylist.txt: 15268) -/(.*/)?phpbanner/banner_ -# /phpadsnew/* (easylistchina+easylist.txt: 15267) -/(.*/)?phpadsnew/.* -# /phpadserver/* (easylistchina+easylist.txt: 15266) -/(.*/)?phpadserver/.* -# /phpads2/* (easylistchina+easylist.txt: 15265) -/(.*/)?phpads2/.* -# /phpads/* (easylistchina+easylist.txt: 15264) -/(.*/)?phpads/.* -# /phpads. (easylistchina+easylist.txt: 15263) -/(.*/)?phpads\. -phpads.*. -# /php/ads/* (easylistchina+easylist.txt: 15262) -/(.*/)?php/ads/.* -# /php/ad/* (easylistchina+easylist.txt: 15261) -/(.*/)?php/ad/.* -# /photogallaryads. (easylistchina+easylist.txt: 15260) -/(.*/)?photogallaryads\. -photogallaryads.*. -# /photoflipper/ads/* (easylistchina+easylist.txt: 15259) -/(.*/)?photoflipper/ads/.* -# /photoads/* (easylistchina+easylist.txt: 15258) -/(.*/)?photoads/.* -# /photoad. (easylistchina+easylist.txt: 15257) -/(.*/)?photoad\. -photoad.*. -# /photo728ad. (easylistchina+easylist.txt: 15256) -/(.*/)?photo728ad\. -photo728ad.*. -# /pgrightsideads. (easylistchina+easylist.txt: 15255) -/(.*/)?pgrightsideads\. -pgrightsideads.*. -# /pgad. (easylistchina+easylist.txt: 15254) -/(.*/)?pgad\. -pgad.*. -# /pfpadv. (easylistchina+easylist.txt: 15253) -/(.*/)?pfpadv\. -pfpadv.*. -# /persadpub/* (easylistchina+easylist.txt: 15252) -/(.*/)?persadpub/.* -# /permanent/ads/* (easylistchina+easylist.txt: 15251) -/(.*/)?permanent/ads/.* -# /performancingads/* (easylistchina+easylist.txt: 15250) -/(.*/)?performancingads/.* -# /performance_ads/* (easylistchina+easylist.txt: 15249) -/(.*/)?performance_ads/.* -# /perfads. (easylistchina+easylist.txt: 15248) -/(.*/)?perfads\. -perfads.*. -# /pencilad. (easylistchina+easylist.txt: 15247) -/(.*/)?pencilad\. -pencilad.*. -# /peeltr. (easylistchina+easylist.txt: 15246) -/(.*/)?peeltr\. -peeltr.*. -# /peeltl. (easylistchina+easylist.txt: 15245) -/(.*/)?peeltl\. -peeltl.*. -# /peeljs.php (easylistchina+easylist.txt: 15244) -/(.*/)?peeljs\.php -peeljs.php*. -# /peelbackscript/ad_ (easylistchina+easylist.txt: 15243) -/(.*/)?peelbackscript/ad_ -# /peelaway_images/* (easylistchina+easylist.txt: 15242) -/(.*/)?peelaway_images/.* -# /peelads/* (easylistchina+easylist.txt: 15241) -/(.*/)?peelads/.* -# /peelad/* (easylistchina+easylist.txt: 15240) -/(.*/)?peelad/.* -# /peelad. (easylistchina+easylist.txt: 15239) -/(.*/)?peelad\. -peelad.*. -# /peel_ads/* (easylistchina+easylist.txt: 15238) -/(.*/)?peel_ads/.* -# /peel1.js (easylistchina+easylist.txt: 15237) -/(.*/)?peel1\.js -peel1.js*. -# /peel/?webscr= (easylistchina+easylist.txt: 15236) -/(.*/)?peel/\?webscr= -# /peel.php? (easylistchina+easylist.txt: 15235) -/(.*/)?peel\.php\? -# /peel.js (easylistchina+easylist.txt: 15234) -/(.*/)?peel\.js -peel.js*. -# /pcad.js? (easylistchina+easylist.txt: 15233) -/(.*/)?pcad\.js\? -# /pc/ads. (easylistchina+easylist.txt: 15232) -/(.*/)?pc/ads\. -# /pb-ads/* (easylistchina+easylist.txt: 15231) -/(.*/)?pb-ads/.* -# /payperpost. (easylistchina+easylist.txt: 15230) -/(.*/)?payperpost\. -payperpost.*. -# /pauseadextension. (easylistchina+easylist.txt: 15229) -/(.*/)?pauseadextension\. -pauseadextension.*. -# /parts/ad/* (easylistchina+easylist.txt: 15228) -/(.*/)?parts/ad/.* -# /partnersadbutler/* (easylistchina+easylist.txt: 15227) -/(.*/)?partnersadbutler/.* -# /partners/get-banner. (easylistchina+easylist.txt: 15226) -/(.*/)?partners/get-banner\. -# /partners/ads/* (easylistchina+easylist.txt: 15225) -/(.*/)?partners/ads/.* -# /partners/ad- (easylistchina+easylist.txt: 15224) -/(.*/)?partners/ad- -# /partnerbanner/* (easylistchina+easylist.txt: 15223) -/(.*/)?partnerbanner/.* -# /partnerbanner. (easylistchina+easylist.txt: 15222) -/(.*/)?partnerbanner\. -partnerbanner.*. -# /partneradwidget. (easylistchina+easylist.txt: 15221) -/(.*/)?partneradwidget\. -partneradwidget.*. -# /partnerads_ (easylistchina+easylist.txt: 15220) -/(.*/)?partnerads_ -# /partnerads/* (easylistchina+easylist.txt: 15219) -/(.*/)?partnerads/.* -# /partnerad. (easylistchina+easylist.txt: 15218) -/(.*/)?partnerad\. -partnerad.*. -# /partner_ads_ (easylistchina+easylist.txt: 15217) -/(.*/)?partner_ads_ -# /partner_ads/* (easylistchina+easylist.txt: 15216) -/(.*/)?partner_ads/.* -# /park_html_functions_general.js (easylistchina+easylist.txt: 15215) -/(.*/)?park_html_functions_general\.js -# /park_html_functions.js (easylistchina+easylist.txt: 15214) -/(.*/)?park_html_functions\.js -# /park_html_functions.*.js (easylistchina+easylist.txt: 15213) -/(.*/)?park_html_functions\..*\.js -# /panelad. (easylistchina+easylist.txt: 15212) -/(.*/)?panelad\. -panelad.*. -# /paidlisting/* (easylistchina+easylist.txt: 15211) -/(.*/)?paidlisting/.* -# /paidads/* (easylistchina+easylist.txt: 15210) -/(.*/)?paidads/.* -# /pages/ads (easylistchina+easylist.txt: 15209) -/(.*/)?pages/ads -# /pagepeelads. (easylistchina+easylist.txt: 15208) -/(.*/)?pagepeelads\. -pagepeelads.*. -# /pagepeel_ (easylistchina+easylist.txt: 15207) -/(.*/)?pagepeel_ -# /pagepeel/* (easylistchina+easylist.txt: 15206) -/(.*/)?pagepeel/.* -# /pagepeel. (easylistchina+easylist.txt: 15205) -/(.*/)?pagepeel\. -pagepeel.*. -# /pagepeel- (easylistchina+easylist.txt: 15204) -/(.*/)?pagepeel- -pagepeel-*. -# /pageear_ (easylistchina+easylist.txt: 15203) -/(.*/)?pageear_ -# /pageear/* (easylistchina+easylist.txt: 15202) -/(.*/)?pageear/.* -# /pageear. (easylistchina+easylist.txt: 15201) -/(.*/)?pageear\. -pageear.*. -# /pagecurl/* (easylistchina+easylist.txt: 15200) -/(.*/)?pagecurl/.* -# /pagecall_dfp_async. (easylistchina+easylist.txt: 15199) -/(.*/)?pagecall_dfp_async\. -# /pageads/* (easylistchina+easylist.txt: 15198) -/(.*/)?pageads/.* -# /pageadimg/* (easylistchina+easylist.txt: 15197) -/(.*/)?pageadimg/.* -# /pagead? (easylistchina+easylist.txt: 15196) -/(.*/)?pagead\? -# /pagead46. (easylistchina+easylist.txt: 15195) -/(.*/)?pagead46\. -pagead46.*. -# /pagead2. (easylistchina+easylist.txt: 15194) -/(.*/)?pagead2\. -pagead2.*. -# /pagead/gen_ (easylistchina+easylist.txt: 15193) -/(.*/)?pagead/gen_ -# /pagead/ads? (easylistchina+easylist.txt: 15192) -/(.*/)?pagead/ads\? -# /page/ad/* (easylistchina+easylist.txt: 15191) -/(.*/)?page/ad/.* -# /page-peel (easylistchina+easylist.txt: 15190) -/(.*/)?page-peel -page-peel*. -# /page-ads. (easylistchina+easylist.txt: 15189) -/(.*/)?page-ads\. -page-ads.*. -# /p8network.js (easylistchina+easylist.txt: 15188) -/(.*/)?p8network\.js -p8network.js*. -# /p2ads/* (easylistchina+easylist.txt: 15187) -/(.*/)?p2ads/.* -# /p2/ads/* (easylistchina+easylist.txt: 15186) -/(.*/)?p2/ads/.* -# /p2-header-ad/* (easylistchina+easylist.txt: 15185) -/(.*/)?p2-header-ad/.* -# /p2-header-ad- (easylistchina+easylist.txt: 15184) -/(.*/)?p2-header-ad- -p2-header-ad-*. -# /ox_ultimate/www/* (easylistchina+easylist.txt: 15183) -/(.*/)?ox_ultimate/www/.* -# /ox/www/* (easylistchina+easylist.txt: 15182) -/(.*/)?ox/www/.* -# /ovt_show.asp? (easylistchina+easylist.txt: 15181) -/(.*/)?ovt_show\.asp\? -# /overture_ (easylistchina+easylist.txt: 15180) -/(.*/)?overture_ -# /overture/*$script,subdocument (easylistchina+easylist.txt: 15179) -/(.*/)?overture/.* -# /overture.$script,stylesheet (easylistchina+easylist.txt: 15178) -/(.*/)?overture\. -overture.*. -# /overlayads. (easylistchina+easylist.txt: 15177) -/(.*/)?overlayads\. -overlayads.*. -# /overlayad. (easylistchina+easylist.txt: 15176) -/(.*/)?overlayad\. -overlayad.*. -# /overlay_ad_ (easylistchina+easylist.txt: 15175) -/(.*/)?overlay_ad_ -# /overlay-ad. (easylistchina+easylist.txt: 15174) -/(.*/)?overlay-ad\. -overlay-ad.*. -# /outbrain-min. (easylistchina+easylist.txt: 15173) -/(.*/)?outbrain-min\. -outbrain-min.*. -# /other/ads/* (easylistchina+easylist.txt: 15172) -/(.*/)?other/ads/.* -# /origin-ad- (easylistchina+easylist.txt: 15171) -/(.*/)?origin-ad- -origin-ad-*. -# /orbitads. (easylistchina+easylist.txt: 15170) -/(.*/)?orbitads\. -orbitads.*. -# /opxads. (easylistchina+easylist.txt: 15169) -/(.*/)?opxads\. -opxads.*. -# /optonlineadcode. (easylistchina+easylist.txt: 15168) -/(.*/)?optonlineadcode\. -optonlineadcode.*. -# /openxtag. (easylistchina+easylist.txt: 15167) -/(.*/)?openxtag\. -openxtag.*. -# /openx_ (easylistchina+easylist.txt: 15166) -/(.*/)?openx_ -# /openx/* (easylistchina+easylist.txt: 15165) -/(.*/)?openx/.* -# /openx. (easylistchina+easylist.txt: 15164) -/(.*/)?openx\. -openx.*. -# /openx- (easylistchina+easylist.txt: 15163) -/(.*/)?openx- -openx-*. -# /openadserver/* (easylistchina+easylist.txt: 15162) -/(.*/)?openadserver/.* -# /openads_ (easylistchina+easylist.txt: 15161) -/(.*/)?openads_ -# /openads2/* (easylistchina+easylist.txt: 15160) -/(.*/)?openads2/.* -# /openads/* (easylistchina+easylist.txt: 15159) -/(.*/)?openads/.* -# /openads. (easylistchina+easylist.txt: 15158) -/(.*/)?openads\. -openads.*. -# /openads- (easylistchina+easylist.txt: 15157) -/(.*/)?openads- -openads-*. -# /openad. (easylistchina+easylist.txt: 15156) -/(.*/)?openad\. -openad.*. -# /ontopadvertising. (easylistchina+easylist.txt: 15155) -/(.*/)?ontopadvertising\. -ontopadvertising.*. -# /onplayerad. (easylistchina+easylist.txt: 15154) -/(.*/)?onplayerad\. -onplayerad.*. -# /onlineads/* (easylistchina+easylist.txt: 15153) -/(.*/)?onlineads/.* -# /online_ads/* (easylistchina+easylist.txt: 15152) -/(.*/)?online_ads/.* -# /online/ads/* (easylistchina+easylist.txt: 15151) -/(.*/)?online/ads/.* -# /onesheet-ad- (easylistchina+easylist.txt: 15150) -/(.*/)?onesheet-ad- -onesheet-ad-*. -# /onecam4ads. (easylistchina+easylist.txt: 15149) -/(.*/)?onecam4ads\. -onecam4ads.*. -# /onead. (easylistchina+easylist.txt: 15148) -/(.*/)?onead\. -onead.*. -# /ome.ads. (easylistchina+easylist.txt: 15147) -/(.*/)?ome\.ads\. -ome.ads.*. -# /omb-ad- (easylistchina+easylist.txt: 15146) -/(.*/)?omb-ad- -omb-ad-*. -# /old/ads- (easylistchina+easylist.txt: 15145) -/(.*/)?old/ads- -# /oiopub-direct/*$~stylesheet (easylistchina+easylist.txt: 15144) -/(.*/)?oiopub-direct/.* -# /oiopub-ads/* (easylistchina+easylist.txt: 15143) -/(.*/)?oiopub-ads/.* -# /oasx/* (easylistchina+easylist.txt: 15142) -/(.*/)?oasx/.* -# /oasisi. (easylistchina+easylist.txt: 15141) -/(.*/)?oasisi\. -oasisi.*. -# /oasisi- (easylistchina+easylist.txt: 15140) -/(.*/)?oasisi- -oasisi-*. -# /oasdefault/* (easylistchina+easylist.txt: 15139) -/(.*/)?oasdefault/.* -# /oascontroller. (easylistchina+easylist.txt: 15138) -/(.*/)?oascontroller\. -oascontroller.*. -# /oasconfig/* (easylistchina+easylist.txt: 15137) -/(.*/)?oasconfig/.* -# /oascentral/* (easylistchina+easylist.txt: 15136) -/(.*/)?oascentral/.* -# /oascentral.$~object-subrequest (easylistchina+easylist.txt: 15135) -/(.*/)?oascentral\. -oascentral.*. -# /oascache/* (easylistchina+easylist.txt: 15134) -/(.*/)?oascache/.* -# /oasbanner_ (easylistchina+easylist.txt: 15133) -/(.*/)?oasbanner_ -# /oasadfunctionlive. (easylistchina+easylist.txt: 15132) -/(.*/)?oasadfunctionlive\. -oasadfunctionlive.*. -# /oasadfunction. (easylistchina+easylist.txt: 15131) -/(.*/)?oasadfunction\. -oasadfunction.*. -# /oasadframe. (easylistchina+easylist.txt: 15130) -/(.*/)?oasadframe\. -oasadframe.*. -# /oasadconnector. (easylistchina+easylist.txt: 15129) -/(.*/)?oasadconnector\. -oasadconnector.*. -# /oas_mjx3. (easylistchina+easylist.txt: 15128) -/(.*/)?oas_mjx3\. -# /oas_mjx2. (easylistchina+easylist.txt: 15127) -/(.*/)?oas_mjx2\. -# /oas_mjx1. (easylistchina+easylist.txt: 15126) -/(.*/)?oas_mjx1\. -# /oas_mjx. (easylistchina+easylist.txt: 15125) -/(.*/)?oas_mjx\. -# /oas_home_ (easylistchina+easylist.txt: 15124) -/(.*/)?oas_home_ -# /oas_handler. (easylistchina+easylist.txt: 15123) -/(.*/)?oas_handler\. -# /oas_ads. (easylistchina+easylist.txt: 15122) -/(.*/)?oas_ads\. -# /oas_ad_ (easylistchina+easylist.txt: 15121) -/(.*/)?oas_ad_ -# /oas_ad/* (easylistchina+easylist.txt: 15120) -/(.*/)?oas_ad/.* -# /oas_ad. (easylistchina+easylist.txt: 15119) -/(.*/)?oas_ad\. -# /OAS/show? (easylistchina+easylist.txt: 15118) -/(.*/)?OAS/show\? -# /oas/oas- (easylistchina+easylist.txt: 15117) -/(.*/)?oas/oas- -# /oas/iframe. (easylistchina+easylist.txt: 15116) -/(.*/)?oas/iframe\. -# /oas/banners/* (easylistchina+easylist.txt: 15115) -/(.*/)?oas/banners/.* -# /oas/ad/* (easylistchina+easylist.txt: 15114) -/(.*/)?oas/ad/.* -# /oas.js (easylistchina+easylist.txt: 15113) -/(.*/)?oas\.js -oas.js*. -# /oas.aspx (easylistchina+easylist.txt: 15112) -/(.*/)?oas\.aspx -oas.aspx*. -# /oas-config. (easylistchina+easylist.txt: 15111) -/(.*/)?oas-config\. -oas-config.*. -# /o2contentad. (easylistchina+easylist.txt: 15110) -/(.*/)?o2contentad\. -o2contentad.*. -# /o2ad. (easylistchina+easylist.txt: 15109) -/(.*/)?o2ad\. -o2ad.*. -# /nymag_ads_ (easylistchina+easylist.txt: 15108) -/(.*/)?nymag_ads_ -# /nymag_ads. (easylistchina+easylist.txt: 15107) -/(.*/)?nymag_ads\. -# /nsfw/sponsors/* (easylistchina+easylist.txt: 15106) -/(.*/)?nsfw/sponsors/.* -# /noticead. (easylistchina+easylist.txt: 15105) -/(.*/)?noticead\. -noticead.*. -# /noodleAdFramed. (easylistchina+easylist.txt: 15104) -/(.*/)?noodleAdFramed\. -noodleAdFramed.*. -# /nonrotatingads/* (easylistchina+easylist.txt: 15103) -/(.*/)?nonrotatingads/.* -# /no_ads. (easylistchina+easylist.txt: 15102) -/(.*/)?no_ads\. -# /nflads. (easylistchina+easylist.txt: 15101) -/(.*/)?nflads\. -nflads.*. -# /nextad/* (easylistchina+easylist.txt: 15100) -/(.*/)?nextad/.* -# /newtopmsgad. (easylistchina+easylist.txt: 15099) -/(.*/)?newtopmsgad\. -newtopmsgad.*. -# /newsmaxadcontrol. (easylistchina+easylist.txt: 15098) -/(.*/)?newsmaxadcontrol\. -newsmaxadcontrol.*. -# /newsletters/ads/* (easylistchina+easylist.txt: 15097) -/(.*/)?newsletters/ads/.* -# /newsletterads/* (easylistchina+easylist.txt: 15096) -/(.*/)?newsletterads/.* -# /newsite/ads/* (easylistchina+easylist.txt: 15095) -/(.*/)?newsite/ads/.* -# /news_ad. (easylistchina+easylist.txt: 15094) -/(.*/)?news_ad\. -# /news/ads/* (easylistchina+easylist.txt: 15093) -/(.*/)?news/ads/.* -# /newrightcolad. (easylistchina+easylist.txt: 15092) -/(.*/)?newrightcolad\. -newrightcolad.*. -# /newimplugs. (easylistchina+easylist.txt: 15091) -/(.*/)?newimplugs\. -newimplugs.*. -# /newimages/ads/* (easylistchina+easylist.txt: 15090) -/(.*/)?newimages/ads/.* -# /newdesign/ad/* (easylistchina+easylist.txt: 15089) -/(.*/)?newdesign/ad/.* -# /newaff/float (easylistchina+easylist.txt: 15088) -/(.*/)?newaff/float -# /newadvert/* (easylistchina+easylist.txt: 15087) -/(.*/)?newadvert/.* -# /newadv/* (easylistchina+easylist.txt: 15086) -/(.*/)?newadv/.* -# /newads/* (easylistchina+easylist.txt: 15085) -/(.*/)?newads/.* -# /newads. (easylistchina+easylist.txt: 15084) -/(.*/)?newads\. -newads.*. -# /newad? (easylistchina+easylist.txt: 15083) -/(.*/)?newad\? -# /newad2? (easylistchina+easylist.txt: 15082) -/(.*/)?newad2\? -# /newad. (easylistchina+easylist.txt: 15081) -/(.*/)?newad\. -newad.*. -# /new_oas. (easylistchina+easylist.txt: 15080) -/(.*/)?new_oas\. -# /new_ads/* (easylistchina+easylist.txt: 15079) -/(.*/)?new_ads/.* -# /new/ads/* (easylistchina+easylist.txt: 15078) -/(.*/)?new/ads/.* -# /new/ad/* (easylistchina+easylist.txt: 15077) -/(.*/)?new/ad/.* -# /new-ads/* (easylistchina+easylist.txt: 15076) -/(.*/)?new-ads/.* -# /neudesicad. (easylistchina+easylist.txt: 15075) -/(.*/)?neudesicad\. -neudesicad.*. -# /network_ad. (easylistchina+easylist.txt: 15074) -/(.*/)?network_ad\. -# /netspiderads3. (easylistchina+easylist.txt: 15073) -/(.*/)?netspiderads3\. -netspiderads3.*. -# /netspiderads2. (easylistchina+easylist.txt: 15072) -/(.*/)?netspiderads2\. -netspiderads2.*. -# /netshelter/* (easylistchina+easylist.txt: 15071) -/(.*/)?netshelter/.* -# /netseerads. (easylistchina+easylist.txt: 15070) -/(.*/)?netseerads\. -netseerads.*. -# /netreachtextads/* (easylistchina+easylist.txt: 15069) -/(.*/)?netreachtextads/.* -# /netads. (easylistchina+easylist.txt: 15068) -/(.*/)?netads\. -netads.*. -# /neoads. (easylistchina+easylist.txt: 15067) -/(.*/)?neoads\. -neoads.*. -# /neo/ads/* (easylistchina+easylist.txt: 15066) -/(.*/)?neo/ads/.* -# /nd_affiliate. (easylistchina+easylist.txt: 15065) -/(.*/)?nd_affiliate\. -# /nbcuadops- (easylistchina+easylist.txt: 15064) -/(.*/)?nbcuadops- -nbcuadops-*. -# /navads/* (easylistchina+easylist.txt: 15063) -/(.*/)?navads/.* -# /navad/* (easylistchina+easylist.txt: 15062) -/(.*/)?navad/.* -# /nativeads/* (easylistchina+easylist.txt: 15061) -/(.*/)?nativeads/.* -# /nativeads- (easylistchina+easylist.txt: 15060) -/(.*/)?nativeads- -nativeads-*. -# /namediaad. (easylistchina+easylist.txt: 15059) -/(.*/)?namediaad\. -namediaad.*. -# /n_ads/* (easylistchina+easylist.txt: 15058) -/(.*/)?n_ads/.* -# /n4403ad. (easylistchina+easylist.txt: 15057) -/(.*/)?n4403ad\. -n4403ad.*. -# /n/adv_ (easylistchina+easylist.txt: 15056) -/(.*/)?n/adv_ -# /mysimpleads/* (easylistchina+easylist.txt: 15055) -/(.*/)?mysimpleads/.* -# /mylayer-ad/* (easylistchina+easylist.txt: 15054) -/(.*/)?mylayer-ad/.* -# /myfreepaysitebanner. (easylistchina+easylist.txt: 15053) -/(.*/)?myfreepaysitebanner\. -myfreepaysitebanner.*. -# /myads/* (easylistchina+easylist.txt: 15051) -/(.*/)?myads/.* -# /my-ad-integration. (easylistchina+easylist.txt: 15050) -/(.*/)?my-ad-integration\. -my-ad-integration.*. -# /my-ad-injector/* (easylistchina+easylist.txt: 15049) -/(.*/)?my-ad-injector/.* -# /multiad/* (easylistchina+easylist.txt: 15048) -/(.*/)?multiad/.* -# /mtvi_ads_ (easylistchina+easylist.txt: 15047) -/(.*/)?mtvi_ads_ -# /MTA-Ad- (easylistchina+easylist.txt: 15046) -/(.*/)?MTA-Ad- -MTA-Ad-*. -# /mstextad? (easylistchina+easylist.txt: 15045) -/(.*/)?mstextad\? -# /msnpopup4. (easylistchina+easylist.txt: 15044) -/(.*/)?msnpopup4\. -msnpopup4.*. -# /msnpopup. (easylistchina+easylist.txt: 15043) -/(.*/)?msnpopup\. -msnpopup.*. -# /msnpopsingle2. (easylistchina+easylist.txt: 15042) -/(.*/)?msnpopsingle2\. -msnpopsingle2.*. -# /msnpop. (easylistchina+easylist.txt: 15041) -/(.*/)?msnpop\. -msnpop.*. -# /msnads1. (easylistchina+easylist.txt: 15040) -/(.*/)?msnads1\. -msnads1.*. -# /msnads/* (easylistchina+easylist.txt: 15039) -/(.*/)?msnads/.* -# /msnadimg. (easylistchina+easylist.txt: 15038) -/(.*/)?msnadimg\. -msnadimg.*. -# /msn-exo- (easylistchina+easylist.txt: 15037) -/(.*/)?msn-exo- -msn-exo-*. -# /msn-1.js (easylistchina+easylist.txt: 15036) -/(.*/)?msn-1\.js -msn-1.js*. -# /msgads. (easylistchina+easylist.txt: 15035) -/(.*/)?msgads\. -msgads.*. -# /mrskinleftside. (easylistchina+easylist.txt: 15034) -/(.*/)?mrskinleftside\. -mrskinleftside.*. -# /mpumessage. (easylistchina+easylist.txt: 15033) -/(.*/)?mpumessage\. -mpumessage.*. -# /mpuguardian. (easylistchina+easylist.txt: 15032) -/(.*/)?mpuguardian\. -mpuguardian.*. -# /mpuad. (easylistchina+easylist.txt: 15031) -/(.*/)?mpuad\. -mpuad.*. -# /mpu-dm.htm (easylistchina+easylist.txt: 15030) -/(.*/)?mpu-dm\.htm -mpu-dm.htm*. -# /mpads/* (easylistchina+easylist.txt: 15029) -/(.*/)?mpads/.* -# /moneyball/ads/* (easylistchina+easylist.txt: 15028) -/(.*/)?moneyball/ads/.* -# /momsads. (easylistchina+easylist.txt: 15027) -/(.*/)?momsads\. -momsads.*. -# /modules_ads. (easylistchina+easylist.txt: 15026) -/(.*/)?modules_ads\. -# /modules/doubleclick/* (easylistchina+easylist.txt: 15025) -/(.*/)?modules/doubleclick/.* -# /modules/adv/* (easylistchina+easylist.txt: 15024) -/(.*/)?modules/adv/.* -# /modules/ads/* (easylistchina+easylist.txt: 15023) -/(.*/)?modules/ads/.* -# /modules/ad_ (easylistchina+easylist.txt: 15022) -/(.*/)?modules/ad_ -# /modules/ad/* (easylistchina+easylist.txt: 15021) -/(.*/)?modules/ad/.* -# /module/ads/* (easylistchina+easylist.txt: 15020) -/(.*/)?module/ads/.* -# /module-ads/* (easylistchina+easylist.txt: 15019) -/(.*/)?module-ads/.* -# /modalad. (easylistchina+easylist.txt: 15018) -/(.*/)?modalad\. -modalad.*. -# /mod_pagepeel_banner/* (easylistchina+easylist.txt: 15017) -/(.*/)?mod_pagepeel_banner/.* -# /mod_ad/* (easylistchina+easylist.txt: 15016) -/(.*/)?mod_ad/.* -# /mobilephonesad/* (easylistchina+easylist.txt: 15015) -/(.*/)?mobilephonesad/.* -# /mobileads/* (easylistchina+easylist.txt: 15014) -/(.*/)?mobileads/.* -# /mobileads. (easylistchina+easylist.txt: 15013) -/(.*/)?mobileads\. -mobileads.*. -# /mobile_ad/* (easylistchina+easylist.txt: 15012) -/(.*/)?mobile_ad/.* -# /mobile_ad. (easylistchina+easylist.txt: 15011) -/(.*/)?mobile_ad\. -# /mobile-ad. (easylistchina+easylist.txt: 15010) -/(.*/)?mobile-ad\. -mobile-ad.*. -# /mnads1. (easylistchina+easylist.txt: 15009) -/(.*/)?mnads1\. -mnads1.*. -# /mmt_ad. (easylistchina+easylist.txt: 15008) -/(.*/)?mmt_ad\. -# /mmsAds. (easylistchina+easylist.txt: 15007) -/(.*/)?mmsAds\. -mmsAds.*. -# /ml9pagepeel. (easylistchina+easylist.txt: 15006) -/(.*/)?ml9pagepeel\. -ml9pagepeel.*. -# /mktad. (easylistchina+easylist.txt: 15005) -/(.*/)?mktad\. -mktad.*. -# /mkadsrv. (easylistchina+easylist.txt: 15004) -/(.*/)?mkadsrv\. -mkadsrv.*. -# /mjx-oas. (easylistchina+easylist.txt: 15003) -/(.*/)?mjx-oas\. -mjx-oas.*. -# /MixBerryAdsProduction/* (easylistchina+easylist.txt: 15002) -/(.*/)?MixBerryAdsProduction/.* -# /miva_ads. (easylistchina+easylist.txt: 15001) -/(.*/)?miva_ads\. -# /misc/ads/* (easylistchina+easylist.txt: 15000) -/(.*/)?misc/ads/.* -# /misc/ads. (easylistchina+easylist.txt: 14999) -/(.*/)?misc/ads\. -# /misc/ad- (easylistchina+easylist.txt: 14998) -/(.*/)?misc/ad- -# /mint/ads/* (easylistchina+easylist.txt: 14997) -/(.*/)?mint/ads/.* -# /minpagead/* (easylistchina+easylist.txt: 14996) -/(.*/)?minpagead/.* -# /minify/ads- (easylistchina+easylist.txt: 14995) -/(.*/)?minify/ads- -# /miniadvert. (easylistchina+easylist.txt: 14994) -/(.*/)?miniadvert\. -miniadvert.*. -# /miniads? (easylistchina+easylist.txt: 14993) -/(.*/)?miniads\? -# /miniadbar/* (easylistchina+easylist.txt: 14992) -/(.*/)?miniadbar/.* -# /mini_ads. (easylistchina+easylist.txt: 14991) -/(.*/)?mini_ads\. -# /mini-ads/* (easylistchina+easylist.txt: 14990) -/(.*/)?mini-ads/.* -# /min/ads/* (easylistchina+easylist.txt: 14989) -/(.*/)?min/ads/.* -# /middleads. (easylistchina+easylist.txt: 14988) -/(.*/)?middleads\. -middleads.*. -# /middle_adv_ (easylistchina+easylist.txt: 14987) -/(.*/)?middle_adv_ -# /microsofttag/* (easylistchina+easylist.txt: 14986) -/(.*/)?microsofttag/.* -# /microads/* (easylistchina+easylist.txt: 14985) -/(.*/)?microads/.* -# /microad. (easylistchina+easylist.txt: 14984) -/(.*/)?microad\. -microad.*. -# /mgid.html (easylistchina+easylist.txt: 14983) -/(.*/)?mgid\.html -mgid.html*. -# /mgid-header. (easylistchina+easylist.txt: 14982) -/(.*/)?mgid-header\. -mgid-header.*. -# /mgid-ad- (easylistchina+easylist.txt: 14981) -/(.*/)?mgid-ad- -mgid-ad-*. -# /metsbanner. (easylistchina+easylist.txt: 14980) -/(.*/)?metsbanner\. -metsbanner.*. -# /metaadserver/* (easylistchina+easylist.txt: 14979) -/(.*/)?metaadserver/.* -# /metaad. (easylistchina+easylist.txt: 14978) -/(.*/)?metaad\. -metaad.*. -# /meme_ad. (easylistchina+easylist.txt: 14977) -/(.*/)?meme_ad\. -# /megaad. (easylistchina+easylist.txt: 14976) -/(.*/)?megaad\. -megaad.*. -# /media_ads/* (easylistchina+easylist.txt: 14975) -/(.*/)?media_ads/.* -# /media/adv/* (easylistchina+easylist.txt: 14974) -/(.*/)?media/adv/.* -# /media/ads/* (easylistchina+easylist.txt: 14973) -/(.*/)?media/ads/.* -# /media/ad/* (easylistchina+easylist.txt: 14972) -/(.*/)?media/ad/.* -# /mDialogAdModule. (easylistchina+easylist.txt: 14971) -/(.*/)?mDialogAdModule\. -mDialogAdModule.*. -# /mda-ads/* (easylistchina+easylist.txt: 14970) -/(.*/)?mda-ads/.* -# /mcad.php (easylistchina+easylist.txt: 14969) -/(.*/)?mcad\.php -mcad.php*. -# /mbn_ad. (easylistchina+easylist.txt: 14968) -/(.*/)?mbn_ad\. -# /mbads? (easylistchina+easylist.txt: 14967) -/(.*/)?mbads\? -# /maxi_ad. (easylistchina+easylist.txt: 14966) -/(.*/)?maxi_ad\. -# /maxadselect. (easylistchina+easylist.txt: 14965) -/(.*/)?maxadselect\. -maxadselect.*. -# /match_ads. (easylistchina+easylist.txt: 14964) -/(.*/)?match_ads\. -# /masterad. (easylistchina+easylist.txt: 14963) -/(.*/)?masterad\. -masterad.*. -# /masonad.gif (easylistchina+easylist.txt: 14962) -/(.*/)?masonad\.gif -masonad.gif*. -# /markpop.js (easylistchina+easylist.txt: 14961) -/(.*/)?markpop\.js -markpop.js*. -# /marketing/banners_ (easylistchina+easylist.txt: 14960) -/(.*/)?marketing/banners_ -# /marketing/banners/* (easylistchina+easylist.txt: 14959) -/(.*/)?marketing/banners/.* -# /marketing-banners/* (easylistchina+easylist.txt: 14958) -/(.*/)?marketing-banners/.* -# /marginaleadservlet? (easylistchina+easylist.txt: 14957) -/(.*/)?marginaleadservlet\? -# /mapquest/Ads/* (easylistchina+easylist.txt: 14956) -/(.*/)?mapquest/Ads/.* -# /mainpagepopupadv1. (easylistchina+easylist.txt: 14955) -/(.*/)?mainpagepopupadv1\. -mainpagepopupadv1.*. -# /mainad. (easylistchina+easylist.txt: 14954) -/(.*/)?mainad\. -mainad.*. -# /main_ad_ (easylistchina+easylist.txt: 14953) -/(.*/)?main_ad_ -# /main_ad/* (easylistchina+easylist.txt: 14952) -/(.*/)?main_ad/.* -# /main_ad. (easylistchina+easylist.txt: 14951) -/(.*/)?main_ad\. -# /main/ads/* (easylistchina+easylist.txt: 14950) -/(.*/)?main/ads/.* -# /main/ad_ (easylistchina+easylist.txt: 14949) -/(.*/)?main/ad_ -# /main/ad/* (easylistchina+easylist.txt: 14948) -/(.*/)?main/ad/.* -# /magic-ads/* (easylistchina+easylist.txt: 14947) -/(.*/)?magic-ads/.* -# /magic-ad/* (easylistchina+easylist.txt: 14946) -/(.*/)?magic-ad/.* -# /magazine/ads. (easylistchina+easylist.txt: 14945) -/(.*/)?magazine/ads\. -# /mad_ad. (easylistchina+easylist.txt: 14944) -/(.*/)?mad_ad\. -# /mad.aspx? (easylistchina+easylist.txt: 14943) -/(.*/)?mad\.aspx\? -# /mac-ad? (easylistchina+easylist.txt: 14942) -/(.*/)?mac-ad\? -# /m0ar_ads. (easylistchina+easylist.txt: 14941) -/(.*/)?m0ar_ads\. -# /lrec_ad. (easylistchina+easylist.txt: 14940) -/(.*/)?lrec_ad\. -# /lotto_ad_ (easylistchina+easylist.txt: 14939) -/(.*/)?lotto_ad_ -# /logoutad. (easylistchina+easylist.txt: 14938) -/(.*/)?logoutad\. -logoutad.*. -# /logoads. (easylistchina+easylist.txt: 14937) -/(.*/)?logoads\. -logoads.*. -# /logo-ads. (easylistchina+easylist.txt: 14936) -/(.*/)?logo-ads\. -logo-ads.*. -# /logad? (easylistchina+easylist.txt: 14935) -/(.*/)?logad\? -# /log_ad_ (easylistchina+easylist.txt: 14934) -/(.*/)?log_ad_ -# /log_ad? (easylistchina+easylist.txt: 14933) -/(.*/)?log_ad\? -# /locker.php?pub=*&gateid=$script (easylistchina+easylist.txt: 14932) -/(.*/)?locker\.php\?pub=.*&gateid= -# /localcom-ad- (easylistchina+easylist.txt: 14931) -/(.*/)?localcom-ad- -localcom-ad-*. -# /localads. (easylistchina+easylist.txt: 14930) -/(.*/)?localads\. -localads.*. -# /LocalAdNet/* (easylistchina+easylist.txt: 14929) -/(.*/)?LocalAdNet/.* -# /localAdData/* (easylistchina+easylist.txt: 14928) -/(.*/)?localAdData/.* -# /LocalAd_ (easylistchina+easylist.txt: 14927) -/(.*/)?LocalAd_ -# /localAd/* (easylistchina+easylist.txt: 14926) -/(.*/)?localAd/.* -# /local_ads_ (easylistchina+easylist.txt: 14925) -/(.*/)?local_ads_ -# /loadTargetUrl? (easylistchina+easylist.txt: 14924) -/(.*/)?loadTargetUrl\? -# /loading_ads. (easylistchina+easylist.txt: 14923) -/(.*/)?loading_ads\. -# /loadadwiz. (easylistchina+easylist.txt: 14922) -/(.*/)?loadadwiz\. -loadadwiz.*. -# /loadadsparam. (easylistchina+easylist.txt: 14921) -/(.*/)?loadadsparam\. -loadadsparam.*. -# /loadadsmainparam. (easylistchina+easylist.txt: 14920) -/(.*/)?loadadsmainparam\. -loadadsmainparam.*. -# /loadadsmain. (easylistchina+easylist.txt: 14919) -/(.*/)?loadadsmain\. -loadadsmain.*. -# /loadads/* (easylistchina+easylist.txt: 14918) -/(.*/)?loadads/.* -# /loadads. (easylistchina+easylist.txt: 14917) -/(.*/)?loadads\. -loadads.*. -# /loadad.aspx? (easylistchina+easylist.txt: 14916) -/(.*/)?loadad\.aspx\? -# /load_ad? (easylistchina+easylist.txt: 14915) -/(.*/)?load_ad\? -# /load-ads| (easylistchina+easylist.txt: 14914) -/(.*/)?load-ads$ -# /livejasmine05. (easylistchina+easylist.txt: 14913) -/(.*/)?livejasmine05\. -livejasmine05.*. -# /livejasmine03. (easylistchina+easylist.txt: 14912) -/(.*/)?livejasmine03\. -livejasmine03.*. -# /livejasmin_ (easylistchina+easylist.txt: 14911) -/(.*/)?livejasmin_ -# /livejasmin2. (easylistchina+easylist.txt: 14910) -/(.*/)?livejasmin2\. -livejasmin2.*. -# /livejasmin/*&id= (easylistchina+easylist.txt: 14909) -/(.*/)?livejasmin/.*&id= -# /livejasmin. (easylistchina+easylist.txt: 14908) -/(.*/)?livejasmin\. -livejasmin.*. -# /liveads. (easylistchina+easylist.txt: 14907) -/(.*/)?liveads\. -liveads.*. -# /livead- (easylistchina+easylist.txt: 14906) -/(.*/)?livead- -livead-*. -# /live_ad. (easylistchina+easylist.txt: 14905) -/(.*/)?live_ad\. -# /links_sponsored_ (easylistchina+easylist.txt: 14904) -/(.*/)?links_sponsored_ -# /linkedads/* (easylistchina+easylist.txt: 14903) -/(.*/)?linkedads/.* -# /linkadv_ (easylistchina+easylist.txt: 14902) -/(.*/)?linkadv_ -# /linkadv. (easylistchina+easylist.txt: 14901) -/(.*/)?linkadv\. -linkadv.*. -# /linkads. (easylistchina+easylist.txt: 14900) -/(.*/)?linkads\. -linkads.*. -# /linkad2. (easylistchina+easylist.txt: 14899) -/(.*/)?linkad2\. -linkad2.*. -# /lijitads. (easylistchina+easylist.txt: 14898) -/(.*/)?lijitads\. -lijitads.*. -# /lijit-ad- (easylistchina+easylist.txt: 14897) -/(.*/)?lijit-ad- -lijit-ad-*. -# /lightboxbannerad^ (easylistchina+easylist.txt: 14896) -/(.*/)?lightboxbannerad[^\w%.-] -# /lightboxad^ (easylistchina+easylist.txt: 14895) -/(.*/)?lightboxad[^\w%.-] -# /lightad. (easylistchina+easylist.txt: 14894) -/(.*/)?lightad\. -lightad.*. -# /lifeshowad/* (easylistchina+easylist.txt: 14893) -/(.*/)?lifeshowad/.* -# /library/ads/* (easylistchina+easylist.txt: 14892) -/(.*/)?library/ads/.* -# /lib/ad.js (easylistchina+easylist.txt: 14891) -/(.*/)?lib/ad\.js -# /lg.php?adid= (easylistchina+easylist.txt: 14890) -/(.*/)?lg\.php\?adid= -# /leftsidebarads. (easylistchina+easylist.txt: 14889) -/(.*/)?leftsidebarads\. -leftsidebarads.*. -# /leftads. (easylistchina+easylist.txt: 14888) -/(.*/)?leftads\. -leftads.*. -# /leftad_ (easylistchina+easylist.txt: 14887) -/(.*/)?leftad_ -# /leftad. (easylistchina+easylist.txt: 14886) -/(.*/)?leftad\. -leftad.*. -# /left_ads. (easylistchina+easylist.txt: 14885) -/(.*/)?left_ads\. -# /left_ad_ (easylistchina+easylist.txt: 14884) -/(.*/)?left_ad_ -# /left-ads. (easylistchina+easylist.txt: 14883) -/(.*/)?left-ads\. -left-ads.*. -# /ledad. (easylistchina+easylist.txt: 14882) -/(.*/)?ledad\. -ledad.*. -# /leaderboardads. (easylistchina+easylist.txt: 14881) -/(.*/)?leaderboardads\. -leaderboardads.*. -# /leaderboardadblock. (easylistchina+easylist.txt: 14880) -/(.*/)?leaderboardadblock\. -leaderboardadblock.*. -# /leaderboardad. (easylistchina+easylist.txt: 14879) -/(.*/)?leaderboardad\. -leaderboardad.*. -# /leaderboard_adv/* (easylistchina+easylist.txt: 14878) -/(.*/)?leaderboard_adv/.* -# /leaderboard_ad/* (easylistchina+easylist.txt: 14877) -/(.*/)?leaderboard_ad/.* -# /leaderboard-advert. (easylistchina+easylist.txt: 14876) -/(.*/)?leaderboard-advert\. -leaderboard-advert.*. -# /leaderad. (easylistchina+easylist.txt: 14875) -/(.*/)?leaderad\. -leaderad.*. -# /leader_ad. (easylistchina+easylist.txt: 14874) -/(.*/)?leader_ad\. -# /leadads/* (easylistchina+easylist.txt: 14873) -/(.*/)?leadads/.* -# /lbl_ad. (easylistchina+easylist.txt: 14872) -/(.*/)?lbl_ad\. -# /lazyad. (easylistchina+easylist.txt: 14871) -/(.*/)?lazyad\. -lazyad.*. -# /layout/ads/* (easylistchina+easylist.txt: 14870) -/(.*/)?layout/ads/.* -# /layout/ad. (easylistchina+easylist.txt: 14869) -/(.*/)?layout/ad\. -# /layout.inc.php?img (easylistchina+easylist.txt: 14868) -/(.*/)?layout\.inc\.php\?img -# /layerads_ (easylistchina+easylist.txt: 14867) -/(.*/)?layerads_ -# /layerads. (easylistchina+easylist.txt: 14866) -/(.*/)?layerads\. -layerads.*. -# /layerads- (easylistchina+easylist.txt: 14865) -/(.*/)?layerads- -layerads-*. -# /LayerAd^ (easylistchina+easylist.txt: 14864) -/(.*/)?LayerAd[^\w%.-] -# /layerad. (easylistchina+easylist.txt: 14863) -/(.*/)?layerad\. -layerad.*. -# /layerad- (easylistchina+easylist.txt: 14862) -/(.*/)?layerad- -layerad-*. -# /layer_ad? (easylistchina+easylist.txt: 14861) -/(.*/)?layer_ad\? -# /layer160x600. (easylistchina+easylist.txt: 14860) -/(.*/)?layer160x600\. -layer160x600.*. -# /layer/ads. (easylistchina+easylist.txt: 14859) -/(.*/)?layer/ads\. -# /layer/ad. (easylistchina+easylist.txt: 14858) -/(.*/)?layer/ad\. -# /layer.php?bid= (easylistchina+easylist.txt: 14857) -/(.*/)?layer\.php\?bid= -# /layer-advert- (easylistchina+easylist.txt: 14856) -/(.*/)?layer-advert- -layer-advert-*. -# /layer-ads. (easylistchina+easylist.txt: 14855) -/(.*/)?layer-ads\. -layer-ads.*. -# /layer-ad. (easylistchina+easylist.txt: 14854) -/(.*/)?layer-ad\. -layer-ad.*. -# /layad. (easylistchina+easylist.txt: 14853) -/(.*/)?layad\. -layad.*. -# /large_ads/* (easylistchina+easylist.txt: 14852) -/(.*/)?large_ads/.* -# /landingadvertisements/* (easylistchina+easylist.txt: 14851) -/(.*/)?landingadvertisements/.* -# /landerbanners/* (easylistchina+easylist.txt: 14850) -/(.*/)?landerbanners/.* -# /kskads. (easylistchina+easylist.txt: 14849) -/(.*/)?kskads\. -kskads.*. -# /kredit-ad. (easylistchina+easylist.txt: 14848) -/(.*/)?kredit-ad\. -kredit-ad.*. -# /kogeePopupAd. (easylistchina+easylist.txt: 14847) -/(.*/)?kogeePopupAd\. -kogeePopupAd.*. -# /keyword_ad. (easylistchina+easylist.txt: 14846) -/(.*/)?keyword_ad\. -# /keyade.js (easylistchina+easylist.txt: 14845) -/(.*/)?keyade\.js -keyade.js*. -# /kantarmedia. (easylistchina+easylist.txt: 14844) -/(.*/)?kantarmedia\. -kantarmedia.*. -# /kampyle.js (easylistchina+easylist.txt: 14843) -/(.*/)?kampyle\.js -kampyle.js*. -# /KalahariAds. (easylistchina+easylist.txt: 14842) -/(.*/)?KalahariAds\. -KalahariAds.*. -# /kaksvpopup. (easylistchina+easylist.txt: 14841) -/(.*/)?kaksvpopup\. -kaksvpopup.*. -# /k_ads/* (easylistchina+easylist.txt: 14840) -/(.*/)?k_ads/.* -# /jumpstartunpaidad. (easylistchina+easylist.txt: 14839) -/(.*/)?jumpstartunpaidad\. -jumpstartunpaidad.*. -# /juicyads_ (easylistchina+easylist.txt: 14838) -/(.*/)?juicyads_ -# /jtcashbanners/* (easylistchina+easylist.txt: 14837) -/(.*/)?jtcashbanners/.* -# /jsVideoPopAd. (easylistchina+easylist.txt: 14836) -/(.*/)?jsVideoPopAd\. -jsVideoPopAd.*. -# /jstextad. (easylistchina+easylist.txt: 14835) -/(.*/)?jstextad\. -jstextad.*. -# /jspopunder. (easylistchina+easylist.txt: 14834) -/(.*/)?jspopunder\. -jspopunder.*. -# /jsplayerads- (easylistchina+easylist.txt: 14833) -/(.*/)?jsplayerads- -jsplayerads-*. -# /json/ad/* (easylistchina+easylist.txt: 14832) -/(.*/)?json/ad/.* -# /jsfiles/ads/* (easylistchina+easylist.txt: 14831) -/(.*/)?jsfiles/ads/.* -# /jsc/ads. (easylistchina+easylist.txt: 14830) -/(.*/)?jsc/ads\. -# /jsadscripts/* (easylistchina+easylist.txt: 14829) -/(.*/)?jsadscripts/.* -# /jsAds/* (easylistchina+easylist.txt: 14828) -/(.*/)?jsAds/.* -# /jsads- (easylistchina+easylist.txt: 14827) -/(.*/)?jsads- -jsads-*. -# /jsad/* (easylistchina+easylist.txt: 14826) -/(.*/)?jsad/.* -# /jsad.php (easylistchina+easylist.txt: 14825) -/(.*/)?jsad\.php -jsad.php*. -# /js_adv_ (easylistchina+easylist.txt: 14824) -/(.*/)?js_adv_ -# /js_ads_ (easylistchina+easylist.txt: 14823) -/(.*/)?js_ads_ -# /js_ads/* (easylistchina+easylist.txt: 14822) -/(.*/)?js_ads/.* -# /js_ad_utf8. (easylistchina+easylist.txt: 14821) -/(.*/)?js_ad_utf8\. -# /js2.ad/size= (easylistchina+easylist.txt: 14820) -/(.*/)?js2\.ad/size= -js2.ad/size= -# /js/youmuffpu.js (easylistchina+easylist.txt: 14819) -/(.*/)?js/youmuffpu\.js -# /js/ppu.$script (easylistchina+easylist.txt: 14818) -/(.*/)?js/ppu\. -# /js/oas. (easylistchina+easylist.txt: 14817) -/(.*/)?js/oas\. -# /js/oas- (easylistchina+easylist.txt: 14816) -/(.*/)?js/oas- -# /js/doubleclick/* (easylistchina+easylist.txt: 14815) -/(.*/)?js/doubleclick/.* -# /js/adv/* (easylistchina+easylist.txt: 14814) -/(.*/)?js/adv/.* -# /js/adv. (easylistchina+easylist.txt: 14813) -/(.*/)?js/adv\. -# /js/ads_ (easylistchina+easylist.txt: 14812) -/(.*/)?js/ads_ -# /js/ads. (easylistchina+easylist.txt: 14811) -/(.*/)?js/ads\. -# /js/ads- (easylistchina+easylist.txt: 14810) -/(.*/)?js/ads- -# /js.ng/size= (easylistchina+easylist.txt: 14809) -/(.*/)?js\.ng/size= -js.ng/size= -# /js.ng/site= (easylistchina+easylist.txt: 14808) -/(.*/)?js\.ng/site= -js.ng/site= -# /js.ng/pagepos= (easylistchina+easylist.txt: 14807) -/(.*/)?js\.ng/pagepos= -js.ng/pagepos= -# /js.ng/channel_ (easylistchina+easylist.txt: 14806) -/(.*/)?js\.ng/channel_ -js.ng/channel_ -# /js.ng/cat= (easylistchina+easylist.txt: 14805) -/(.*/)?js\.ng/cat= -js.ng/cat= -# /js.ad/size= (easylistchina+easylist.txt: 14804) -/(.*/)?js\.ad/size= -js.ad/size= -# /jqueryadvertising. (easylistchina+easylist.txt: 14803) -/(.*/)?jqueryadvertising\. -jqueryadvertising.*. -# /jquery_FOR_AD/* (easylistchina+easylist.txt: 14802) -/(.*/)?jquery_FOR_AD/.* -# /jquery/ad. (easylistchina+easylist.txt: 14801) -/(.*/)?jquery/ad\. -# /jquery.adx. (easylistchina+easylist.txt: 14800) -/(.*/)?jquery\.adx\. -jquery.adx.*. -# /jquery-ads. (easylistchina+easylist.txt: 14799) -/(.*/)?jquery-ads\. -jquery-ads.*. -# /jqads. (easylistchina+easylist.txt: 14798) -/(.*/)?jqads\. -jqads.*. -# /JPlayerAdFoxAdvertisementPlugin. (easylistchina+easylist.txt: 14797) -/(.*/)?JPlayerAdFoxAdvertisementPlugin\. -JPlayerAdFoxAdvertisementPlugin.*. -# /jlist-affiliates/* (easylistchina+easylist.txt: 14796) -/(.*/)?jlist-affiliates/.* -# /jivoxadplayer. (easylistchina+easylist.txt: 14795) -/(.*/)?jivoxadplayer\. -jivoxadplayer.*. -# /jitads. (easylistchina+easylist.txt: 14794) -/(.*/)?jitads\. -jitads.*. -# /jcorner.php?partner= (easylistchina+easylist.txt: 14793) -/(.*/)?jcorner\.php\?partner= -# /javascripts/ads/* (easylistchina+easylist.txt: 14792) -/(.*/)?javascripts/ads/.* -# /javascripts/ads. (easylistchina+easylist.txt: 14791) -/(.*/)?javascripts/ads\. -# /javascript/oas? (easylistchina+easylist.txt: 14790) -/(.*/)?javascript/oas\? -# /javascript/oas. (easylistchina+easylist.txt: 14789) -/(.*/)?javascript/oas\. -# /javascript/ads/* (easylistchina+easylist.txt: 14788) -/(.*/)?javascript/ads/.* -# /javascript/ads. (easylistchina+easylist.txt: 14787) -/(.*/)?javascript/ads\. -# /jamnboad. (easylistchina+easylist.txt: 14786) -/(.*/)?jamnboad\. -jamnboad.*. -# /j/ads.js (easylistchina+easylist.txt: 14785) -/(.*/)?j/ads\.js -# /iwadsense. (easylistchina+easylist.txt: 14784) -/(.*/)?iwadsense\. -iwadsense.*. -# /ispy/ads/* (easylistchina+easylist.txt: 14783) -/(.*/)?ispy/ads/.* -# /isgadvertisement/* (easylistchina+easylist.txt: 14782) -/(.*/)?isgadvertisement/.* -# /iserver/site= (easylistchina+easylist.txt: 14781) -/(.*/)?iserver/site= -# /iserver/ccid= (easylistchina+easylist.txt: 14780) -/(.*/)?iserver/ccid= -# /is.php?ipua_id=*&search_id= (easylistchina+easylist.txt: 14779) -/(.*/)?is\.php\?ipua_id=.*&search_id= -# /ireel/ad*.jpg (easylistchina+easylist.txt: 14778) -/(.*/)?ireel/ad.*\.jpg -# /irc_ad_ (easylistchina+easylist.txt: 14777) -/(.*/)?irc_ad_ -# /iqadcontroller. (easylistchina+easylist.txt: 14776) -/(.*/)?iqadcontroller\. -iqadcontroller.*. -# /iprom-ad/* (easylistchina+easylist.txt: 14775) -/(.*/)?iprom-ad/.* -# /ipadad. (easylistchina+easylist.txt: 14774) -/(.*/)?ipadad\. -ipadad.*. -# /ip-advertising/* (easylistchina+easylist.txt: 14773) -/(.*/)?ip-advertising/.* -# /inx-ad. (easylistchina+easylist.txt: 14772) -/(.*/)?inx-ad\. -inx-ad.*. -# /inviteads/* (easylistchina+easylist.txt: 14771) -/(.*/)?inviteads/.* -# /invideoad. (easylistchina+easylist.txt: 14770) -/(.*/)?invideoad\. -invideoad.*. -# /inventory/ad/* (easylistchina+easylist.txt: 14769) -/(.*/)?inventory/ad/.* -# /inv/ads/* (easylistchina+easylist.txt: 14768) -/(.*/)?inv/ads/.* -# /introduction_ad. (easylistchina+easylist.txt: 14767) -/(.*/)?introduction_ad\. -# /intextads. (easylistchina+easylist.txt: 14766) -/(.*/)?intextads\. -intextads.*. -# /intextadd/* (easylistchina+easylist.txt: 14765) -/(.*/)?intextadd/.* -# /interstitial_ad. (easylistchina+easylist.txt: 14764) -/(.*/)?interstitial_ad\. -# /interstitial-ad? (easylistchina+easylist.txt: 14763) -/(.*/)?interstitial-ad\? -# /interstitial-ad/* (easylistchina+easylist.txt: 14762) -/(.*/)?interstitial-ad/.* -# /interstitial-ad. (easylistchina+easylist.txt: 14761) -/(.*/)?interstitial-ad\. -interstitial-ad.*. -# /internetad/* (easylistchina+easylist.txt: 14760) -/(.*/)?internetad/.* -# /internet_ad_ (easylistchina+easylist.txt: 14759) -/(.*/)?internet_ad_ -# /internal-ad- (easylistchina+easylist.txt: 14758) -/(.*/)?internal-ad- -internal-ad-*. -# /internAds. (easylistchina+easylist.txt: 14757) -/(.*/)?internAds\. -internAds.*. -# /intermediate-ad- (easylistchina+easylist.txt: 14756) -/(.*/)?intermediate-ad- -intermediate-ad-*. -# /interface/ads/* (easylistchina+easylist.txt: 14755) -/(.*/)?interface/ads/.* -# /interad. (easylistchina+easylist.txt: 14754) -/(.*/)?interad\. -interad.*. -# /intellitext. (easylistchina+easylist.txt: 14753) -/(.*/)?intellitext\. -intellitext.*. -# /intelliad. (easylistchina+easylist.txt: 14752) -/(.*/)?intelliad\. -intelliad.*. -# /instreamad/* (easylistchina+easylist.txt: 14751) -/(.*/)?instreamad/.* -# /insertads. (easylistchina+easylist.txt: 14750) -/(.*/)?insertads\. -insertads.*. -# /insertAd. (easylistchina+easylist.txt: 14749) -/(.*/)?insertAd\. -insertAd.*. -# /inquirer/ads/* (easylistchina+easylist.txt: 14748) -/(.*/)?inquirer/ads/.* -# /innerads. (easylistchina+easylist.txt: 14747) -/(.*/)?innerads\. -innerads.*. -# /inner-ads/* (easylistchina+easylist.txt: 14746) -/(.*/)?inner-ads/.* -# /inner-ads- (easylistchina+easylist.txt: 14745) -/(.*/)?inner-ads- -inner-ads-*. -# /inlinetextads? (easylistchina+easylist.txt: 14744) -/(.*/)?inlinetextads\? -# /inlineads/* (easylistchina+easylist.txt: 14743) -/(.*/)?inlineads/.* -# /inline_ads. (easylistchina+easylist.txt: 14742) -/(.*/)?inline_ads\. -# /inline_ad_ (easylistchina+easylist.txt: 14741) -/(.*/)?inline_ad_ -# /inline_ad. (easylistchina+easylist.txt: 14740) -/(.*/)?inline_ad\. -# /INjspopunder. (easylistchina+easylist.txt: 14739) -/(.*/)?INjspopunder\. -INjspopunder.*. -# /injectad. (easylistchina+easylist.txt: 14738) -/(.*/)?injectad\. -injectad.*. -# /initlayeredwelcomead- (easylistchina+easylist.txt: 14737) -/(.*/)?initlayeredwelcomead- -initlayeredwelcomead-*. -# /initdefineads. (easylistchina+easylist.txt: 14736) -/(.*/)?initdefineads\. -initdefineads.*. -# /inhouse_ads/* (easylistchina+easylist.txt: 14735) -/(.*/)?inhouse_ads/.* -# /index_ads. (easylistchina+easylist.txt: 14734) -/(.*/)?index_ads\. -# /index_ad/* (easylistchina+easylist.txt: 14733) -/(.*/)?index_ad/.* -# /index-ad. (easylistchina+easylist.txt: 14732) -/(.*/)?index-ad\. -index-ad.*. -# /index-ad- (easylistchina+easylist.txt: 14731) -/(.*/)?index-ad- -index-ad-*. -# /incmpuad. (easylistchina+easylist.txt: 14730) -/(.*/)?incmpuad\. -incmpuad.*. -# /includes/ads_ (easylistchina+easylist.txt: 14729) -/(.*/)?includes/ads_ -# /includes/ads/* (easylistchina+easylist.txt: 14728) -/(.*/)?includes/ads/.* -# /includes/ad_ (easylistchina+easylist.txt: 14727) -/(.*/)?includes/ad_ -# /includes/ad. (easylistchina+easylist.txt: 14726) -/(.*/)?includes/ad\. -# /included_ads/* (easylistchina+easylist.txt: 14725) -/(.*/)?included_ads/.* -# /include/adsdaq (easylistchina+easylist.txt: 14724) -/(.*/)?include/adsdaq -# /include/ads/* (easylistchina+easylist.txt: 14723) -/(.*/)?include/ads/.* -# /include/ad_ (easylistchina+easylist.txt: 14722) -/(.*/)?include/ad_ -# /include/ad/* (easylistchina+easylist.txt: 14721) -/(.*/)?include/ad/.* -# /inc_v2/ad_ (easylistchina+easylist.txt: 14720) -/(.*/)?inc_v2/ad_ -# /inc_ads. (easylistchina+easylist.txt: 14719) -/(.*/)?inc_ads\. -# /inc_ad_ (easylistchina+easylist.txt: 14718) -/(.*/)?inc_ad_ -# /inc_ad. (easylistchina+easylist.txt: 14717) -/(.*/)?inc_ad\. -# /inc/ads/* (easylistchina+easylist.txt: 14716) -/(.*/)?inc/ads/.* -# /inc/ad. (easylistchina+easylist.txt: 14715) -/(.*/)?inc/ad\. -# /inc/ad- (easylistchina+easylist.txt: 14714) -/(.*/)?inc/ad- -# /inad. (easylistchina+easylist.txt: 14713) -/(.*/)?inad\. -inad.*. -# /impopup/* (easylistchina+easylist.txt: 14712) -/(.*/)?impopup/.* -# /impop. (easylistchina+easylist.txt: 14711) -/(.*/)?impop\. -impop.*. -# /imp.ads/* (easylistchina+easylist.txt: 14710) -/(.*/)?imp\.ads/.* -imp.ads/.* -# /imlive5. (easylistchina+easylist.txt: 14709) -/(.*/)?imlive5\. -imlive5.*. -# /imlive300_ (easylistchina+easylist.txt: 14708) -/(.*/)?imlive300_ -# /imlive.gif (easylistchina+easylist.txt: 14707) -/(.*/)?imlive\.gif -imlive.gif*. -# /imgs/ads/* (easylistchina+easylist.txt: 14706) -/(.*/)?imgs/ads/.* -# /imgs/ad/* (easylistchina+easylist.txt: 14705) -/(.*/)?imgs/ad/.* -# /imgaffl/* (easylistchina+easylist.txt: 14704) -/(.*/)?imgaffl/.* -# /imgads/* (easylistchina+easylist.txt: 14703) -/(.*/)?imgads/.* -# /imgAdITN. (easylistchina+easylist.txt: 14702) -/(.*/)?imgAdITN\. -imgAdITN.*. -# /imgad_ (easylistchina+easylist.txt: 14701) -/(.*/)?imgad_ -# /imgad? (easylistchina+easylist.txt: 14700) -/(.*/)?imgad\? -# /imgad. (easylistchina+easylist.txt: 14699) -/(.*/)?imgad\. -imgad.*. -# /img_adv/* (easylistchina+easylist.txt: 14698) -/(.*/)?img_adv/.* -# /img_ads/* (easylistchina+easylist.txt: 14697) -/(.*/)?img_ads/.* -# /img_ad_ (easylistchina+easylist.txt: 14696) -/(.*/)?img_ad_ -# /img_ad/* (easylistchina+easylist.txt: 14695) -/(.*/)?img_ad/.* -# /img3/ads/* (easylistchina+easylist.txt: 14694) -/(.*/)?img3/ads/.* -# /img2/ad/* (easylistchina+easylist.txt: 14693) -/(.*/)?img2/ad/.* -# /img/aff/* (easylistchina+easylist.txt: 14692) -/(.*/)?img/aff/.* -# /img/adv/* (easylistchina+easylist.txt: 14691) -/(.*/)?img/adv/.* -# /img/adv. (easylistchina+easylist.txt: 14690) -/(.*/)?img/adv\. -# /img/ads/* (easylistchina+easylist.txt: 14689) -/(.*/)?img/ads/.* -# /img/ad_ (easylistchina+easylist.txt: 14688) -/(.*/)?img/ad_ -# /img/ad/* (easylistchina+easylist.txt: 14687) -/(.*/)?img/ad/.* -# /img/ad. (easylistchina+easylist.txt: 14686) -/(.*/)?img/ad\. -# /img/ad- (easylistchina+easylist.txt: 14685) -/(.*/)?img/ad- -# /img/_ad. (easylistchina+easylist.txt: 14684) -/(.*/)?img/_ad\. -# /img.ads. (easylistchina+easylist.txt: 14683) -/(.*/)?img\.ads\. -img.ads.*. -# /img-ads/* (easylistchina+easylist.txt: 14682) -/(.*/)?img-ads/.* -# /imfloat. (easylistchina+easylist.txt: 14681) -/(.*/)?imfloat\. -imfloat.*. -# /imagesadspro/* (easylistchina+easylist.txt: 14680) -/(.*/)?imagesadspro/.* -# /images_ads/* (easylistchina+easylist.txt: 14679) -/(.*/)?images_ads/.* -# /images_ad/* (easylistchina+easylist.txt: 14678) -/(.*/)?images_ad/.* -# /images2/ads/* (easylistchina+easylist.txt: 14677) -/(.*/)?images2/ads/.* -# /images1/ad_ (easylistchina+easylist.txt: 14676) -/(.*/)?images1/ad_ -# /images/vghd (easylistchina+easylist.txt: 14675) -/(.*/)?images/vghd -# /images/sponsored/* (easylistchina+easylist.txt: 14674) -/(.*/)?images/sponsored/.* -# /images/sponsored. (easylistchina+easylist.txt: 14673) -/(.*/)?images/sponsored\. -# /images/livejasmin/* (easylistchina+easylist.txt: 14672) -/(.*/)?images/livejasmin/.* -# /images/gads_ (easylistchina+easylist.txt: 14671) -/(.*/)?images/gads_ -# /images/bg_ad/* (easylistchina+easylist.txt: 14670) -/(.*/)?images/bg_ad/.* -# /images/awebanner (easylistchina+easylist.txt: 14669) -/(.*/)?images/awebanner -# /images/affs/* (easylistchina+easylist.txt: 14668) -/(.*/)?images/affs/.* -# /images/aff- (easylistchina+easylist.txt: 14667) -/(.*/)?images/aff- -# /images/adver- (easylistchina+easylist.txt: 14666) -/(.*/)?images/adver- -# /images/adv_ (easylistchina+easylist.txt: 14665) -/(.*/)?images/adv_ -# /images/adv/* (easylistchina+easylist.txt: 14664) -/(.*/)?images/adv/.* -# /images/adv. (easylistchina+easylist.txt: 14663) -/(.*/)?images/adv\. -# /images/adv- (easylistchina+easylist.txt: 14662) -/(.*/)?images/adv- -# /images/ads_ (easylistchina+easylist.txt: 14661) -/(.*/)?images/ads_ -# /images/ads/* (easylistchina+easylist.txt: 14660) -/(.*/)?images/ads/.* -# /images/ads. (easylistchina+easylist.txt: 14659) -/(.*/)?images/ads\. -# /images/ads- (easylistchina+easylist.txt: 14658) -/(.*/)?images/ads- -# /images/adds/* (easylistchina+easylist.txt: 14657) -/(.*/)?images/adds/.* -# /images/ad2/* (easylistchina+easylist.txt: 14656) -/(.*/)?images/ad2/.* -# /images/ad/* (easylistchina+easylist.txt: 14655) -/(.*/)?images/ad/.* -# /images/ad- (easylistchina+easylist.txt: 14653) -/(.*/)?images/ad- -# /images.adv/* (easylistchina+easylist.txt: 14652) -/(.*/)?images\.adv/.* -images.adv/.* -# /images.ads. (easylistchina+easylist.txt: 14651) -/(.*/)?images\.ads\. -images.ads.*. -# /images-v2/ad_ (easylistchina+easylist.txt: 14650) -/(.*/)?images-v2/ad_ -# /images-ad/* (easylistchina+easylist.txt: 14649) -/(.*/)?images-ad/.* -# /imagecache_ads/* (easylistchina+easylist.txt: 14648) -/(.*/)?imagecache_ads/.* -# /imageads/* (easylistchina+easylist.txt: 14647) -/(.*/)?imageads/.* -# /image_ads/* (easylistchina+easylist.txt: 14646) -/(.*/)?image_ads/.* -# /image/affiliate/* (easylistchina+easylist.txt: 14645) -/(.*/)?image/affiliate/.* -# /image/adv/* (easylistchina+easylist.txt: 14644) -/(.*/)?image/adv/.* -# /image/ads_ (easylistchina+easylist.txt: 14643) -/(.*/)?image/ads_ -# /image/ads/* (easylistchina+easylist.txt: 14642) -/(.*/)?image/ads/.* -# /image/ad/* (easylistchina+easylist.txt: 14641) -/(.*/)?image/ad/.* -# /imads.js (easylistchina+easylist.txt: 14640) -/(.*/)?imads\.js -imads.js*. -# /imaads. (easylistchina+easylist.txt: 14639) -/(.*/)?imaads\. -imaads.*. -# /ima/ads_ (easylistchina+easylist.txt: 14638) -/(.*/)?ima/ads_ -# /im.cams. (easylistchina+easylist.txt: 14637) -/(.*/)?im\.cams\. -im.cams.*. -# /im-popup/* (easylistchina+easylist.txt: 14636) -/(.*/)?im-popup/.* -# /im-ad/im-rotator2. (easylistchina+easylist.txt: 14635) -/(.*/)?im-ad/im-rotator2\. -# /im-ad/im-rotator. (easylistchina+easylist.txt: 14634) -/(.*/)?im-ad/im-rotator\. -# /ilivid-ad- (easylistchina+easylist.txt: 14633) -/(.*/)?ilivid-ad- -ilivid-ad-*. -# /ignitecampaigns.com/* (easylistchina+easylist.txt: 14632) -/(.*/)?ignitecampaigns\.com/.* -ignitecampaigns.com/.* -# /ignite.partnerembed.js (easylistchina+easylist.txt: 14631) -/(.*/)?ignite\.partnerembed\.js -ignite.partnerembed.js*. -# /ifrm_ads/* (easylistchina+easylist.txt: 14630) -/(.*/)?ifrm_ads/.* -# /iframes/ad/* (easylistchina+easylist.txt: 14629) -/(.*/)?iframes/ad/.* -# /iframedartad. (easylistchina+easylist.txt: 14628) -/(.*/)?iframedartad\. -iframedartad.*. -# /iframeadsensewrapper. (easylistchina+easylist.txt: 14627) -/(.*/)?iframeadsensewrapper\. -iframeadsensewrapper.*. -# /iframeadsense. (easylistchina+easylist.txt: 14626) -/(.*/)?iframeadsense\. -iframeadsense.*. -# /iframeads/* (easylistchina+easylist.txt: 14625) -/(.*/)?iframeads/.* -# /iframeads. (easylistchina+easylist.txt: 14624) -/(.*/)?iframeads\. -iframeads.*. -# /iframeadcontent. (easylistchina+easylist.txt: 14623) -/(.*/)?iframeadcontent\. -iframeadcontent.*. -# /iframead_ (easylistchina+easylist.txt: 14622) -/(.*/)?iframead_ -# /iframead/* (easylistchina+easylist.txt: 14621) -/(.*/)?iframead/.* -# /iframead. (easylistchina+easylist.txt: 14620) -/(.*/)?iframead\. -iframead.*. -# /iframe_sponsor_ (easylistchina+easylist.txt: 14619) -/(.*/)?iframe_sponsor_ -# /iframe_chitika_ (easylistchina+easylist.txt: 14618) -/(.*/)?iframe_chitika_ -# /iframe_ads_ (easylistchina+easylist.txt: 14617) -/(.*/)?iframe_ads_ -# /iframe_ads/* (easylistchina+easylist.txt: 14616) -/(.*/)?iframe_ads/.* -# /iframe_ad_ (easylistchina+easylist.txt: 14615) -/(.*/)?iframe_ad_ -# /iframe_ad? (easylistchina+easylist.txt: 14614) -/(.*/)?iframe_ad\? -# /iframe_ad. (easylistchina+easylist.txt: 14613) -/(.*/)?iframe_ad\. -# /iframe/ads/* (easylistchina+easylist.txt: 14612) -/(.*/)?iframe/ads/.* -# /iframe/ad_ (easylistchina+easylist.txt: 14611) -/(.*/)?iframe/ad_ -# /iframe/ad/* (easylistchina+easylist.txt: 14610) -/(.*/)?iframe/ad/.* -# /iframe.ad/* (easylistchina+easylist.txt: 14609) -/(.*/)?iframe\.ad/.* -iframe.ad/.* -# /iframe-mgid- (easylistchina+easylist.txt: 14608) -/(.*/)?iframe-mgid- -iframe-mgid-*. -# /iframe-ads/* (easylistchina+easylist.txt: 14607) -/(.*/)?iframe-ads/.* -# /iframe-ad/* (easylistchina+easylist.txt: 14606) -/(.*/)?iframe-ad/.* -# /iframe-ad. (easylistchina+easylist.txt: 14605) -/(.*/)?iframe-ad\. -iframe-ad.*. -# /ifolder-ads. (easylistchina+easylist.txt: 14604) -/(.*/)?ifolder-ads\. -ifolder-ads.*. -# /idevaffiliate/banners/* (easylistchina+easylist.txt: 14603) -/(.*/)?idevaffiliate/banners/.* -# /icon_advertising_ (easylistchina+easylist.txt: 14602) -/(.*/)?icon_advertising_ -# /icon_ads_ (easylistchina+easylist.txt: 14601) -/(.*/)?icon_ads_ -# /icon_ad. (easylistchina+easylist.txt: 14600) -/(.*/)?icon_ad\. -# /IBNjspopunder. (easylistchina+easylist.txt: 14599) -/(.*/)?IBNjspopunder\. -IBNjspopunder.*. -# /iabadvertisingplugin.swf (easylistchina+easylist.txt: 14598) -/(.*/)?iabadvertisingplugin\.swf -iabadvertisingplugin.swf*. -# /ia/ads/* (easylistchina+easylist.txt: 14597) -/(.*/)?ia/ads/.* -# /i_ads. (easylistchina+easylist.txt: 14596) -/(.*/)?i_ads\. -# /i/adv/* (easylistchina+easylist.txt: 14595) -/(.*/)?i/adv/.* -# /i/ads/* (easylistchina+easylist.txt: 14594) -/(.*/)?i/ads/.* -# /hubxt.*/js/ht.js (easylistchina+easylist.txt: 14593) -/(.*/)?hubxt\..*/js/ht\.js -hubxt.*./(.*/)?js/ht\.js -# /hubxt.*/js/eht.js? (easylistchina+easylist.txt: 14592) -/(.*/)?hubxt\..*/js/eht\.js\? -hubxt.*./(.*/)?js/eht\.js\? -# /httpads/* (easylistchina+easylist.txt: 14591) -/(.*/)?httpads/.* -# /htmlads/* (easylistchina+easylist.txt: 14590) -/(.*/)?htmlads/.* -# /html/sponsors/* (easylistchina+easylist.txt: 14589) -/(.*/)?html/sponsors/.* -# /html/ads_ (easylistchina+easylist.txt: 14588) -/(.*/)?html/ads_ -# /html/ads/* (easylistchina+easylist.txt: 14587) -/(.*/)?html/ads/.* -# /html/ad/* (easylistchina+easylist.txt: 14586) -/(.*/)?html/ad/.* -# /html/ad. (easylistchina+easylist.txt: 14585) -/(.*/)?html/ad\. -# /html.ng/* (easylistchina+easylist.txt: 14584) -/(.*/)?html\.ng/.* -html.ng/.* -# /ht.js?site_ (easylistchina+easylist.txt: 14583) -/(.*/)?ht\.js\?site_ -# /hpcwire/ads/* (easylistchina+easylist.txt: 14582) -/(.*/)?hpcwire/ads/.* -# /hoverad. (easylistchina+easylist.txt: 14581) -/(.*/)?hoverad\. -hoverad.*. -# /houseads? (easylistchina+easylist.txt: 14580) -/(.*/)?houseads\? -# /houseads/* (easylistchina+easylist.txt: 14579) -/(.*/)?houseads/.* -# /houseads. (easylistchina+easylist.txt: 14578) -/(.*/)?houseads\. -houseads.*. -# /housead_ (easylistchina+easylist.txt: 14577) -/(.*/)?housead_ -# /housead/* (easylistchina+easylist.txt: 14576) -/(.*/)?housead/.* -# /housead. (easylistchina+easylist.txt: 14575) -/(.*/)?housead\. -housead.*. -# /house_ads/* (easylistchina+easylist.txt: 14574) -/(.*/)?house_ads/.* -# /house_ad_ (easylistchina+easylist.txt: 14573) -/(.*/)?house_ad_ -# /house_ad- (easylistchina+easylist.txt: 14572) -/(.*/)?house_ad- -# /house-ads/* (easylistchina+easylist.txt: 14571) -/(.*/)?house-ads/.* -# /house-ad/* (easylistchina+easylist.txt: 14570) -/(.*/)?house-ad/.* -# /house-ad. (easylistchina+easylist.txt: 14569) -/(.*/)?house-ad\. -house-ad.*. -# /hostkey-ad. (easylistchina+easylist.txt: 14568) -/(.*/)?hostkey-ad\. -hostkey-ad.*. -# /hosting/ads/* (easylistchina+easylist.txt: 14567) -/(.*/)?hosting/ads/.* -# /hostgator-ad. (easylistchina+easylist.txt: 14566) -/(.*/)?hostgator-ad\. -hostgator-ad.*. -# /hostedbannerads. (easylistchina+easylist.txt: 14565) -/(.*/)?hostedbannerads\. -hostedbannerads.*. -# /hostedads. (easylistchina+easylist.txt: 14564) -/(.*/)?hostedads\. -hostedads.*. -# /horizontalAd. (easylistchina+easylist.txt: 14563) -/(.*/)?horizontalAd\. -horizontalAd.*. -# /horizontal_advert_ (easylistchina+easylist.txt: 14562) -/(.*/)?horizontal_advert_ -# /HompageStickyAd. (easylistchina+easylist.txt: 14561) -/(.*/)?HompageStickyAd\. -HompageStickyAd.*. -# /HomeStaticAds/* (easylistchina+easylist.txt: 14560) -/(.*/)?HomeStaticAds/.* -# /homeslideadtop/* (easylistchina+easylist.txt: 14559) -/(.*/)?homeslideadtop/.* -# /homepageadvertright. (easylistchina+easylist.txt: 14558) -/(.*/)?homepageadvertright\. -homepageadvertright.*. -# /homepage_ad_ (easylistchina+easylist.txt: 14556) -/(.*/)?homepage_ad_ -# /homepage/ads/* (easylistchina+easylist.txt: 14555) -/(.*/)?homepage/ads/.* -# /homepage-ads/* (easylistchina+easylist.txt: 14554) -/(.*/)?homepage-ads/.* -# /homeoutside/ads/* (easylistchina+easylist.txt: 14553) -/(.*/)?homeoutside/ads/.* -# /home_adv. (easylistchina+easylist.txt: 14552) -/(.*/)?home_adv\. -# /home30/ad. (easylistchina+easylist.txt: 14551) -/(.*/)?home30/ad\. -# /home/sponsor_ (easylistchina+easylist.txt: 14550) -/(.*/)?home/sponsor_ -# /home/ads_ (easylistchina+easylist.txt: 14549) -/(.*/)?home/ads_ -# /home/ads/* (easylistchina+easylist.txt: 14548) -/(.*/)?home/ads/.* -# /home/ads- (easylistchina+easylist.txt: 14547) -/(.*/)?home/ads- -# /home/ad_ (easylistchina+easylist.txt: 14546) -/(.*/)?home/ad_ -# /home/_ads (easylistchina+easylist.txt: 14545) -/(.*/)?home/_ads -# /holl_ad. (easylistchina+easylist.txt: 14544) -/(.*/)?holl_ad\. -# /hitbar_ad_ (easylistchina+easylist.txt: 14543) -/(.*/)?hitbar_ad_ -# /hikaku/banner/* (easylistchina+easylist.txt: 14542) -/(.*/)?hikaku/banner/.* -# /hiadone_ (easylistchina+easylist.txt: 14541) -/(.*/)?hiadone_ -# /Heat_Ad. (easylistchina+easylist.txt: 14540) -/(.*/)?Heat_Ad\. -# /headvert. (easylistchina+easylist.txt: 14539) -/(.*/)?headvert\. -headvert.*. -# /headermktgpromoads. (easylistchina+easylist.txt: 14538) -/(.*/)?headermktgpromoads\. -headermktgpromoads.*. -# /headerAdvertismentTab. (easylistchina+easylist.txt: 14537) -/(.*/)?headerAdvertismentTab\. -headerAdvertismentTab.*. -# /headerads1. (easylistchina+easylist.txt: 14536) -/(.*/)?headerads1\. -headerads1.*. -# /headerads. (easylistchina+easylist.txt: 14535) -/(.*/)?headerads\. -headerads.*. -# /headeradd2. (easylistchina+easylist.txt: 14534) -/(.*/)?headeradd2\. -headeradd2.*. -# /headerad. (easylistchina+easylist.txt: 14533) -/(.*/)?headerad\. -headerad.*. -# /header_ads_ (easylistchina+easylist.txt: 14532) -/(.*/)?header_ads_ -# /header_ad_ (easylistchina+easylist.txt: 14531) -/(.*/)?header_ad_ -# /header-ad. (easylistchina+easylist.txt: 14530) -/(.*/)?header-ad\. -header-ad.*. -# /hdadvertisment- (easylistchina+easylist.txt: 14529) -/(.*/)?hdadvertisment- -hdadvertisment-*. -# /hcm_ads/* (easylistchina+easylist.txt: 14528) -/(.*/)?hcm_ads/.* -# /Handlers/Ads. (easylistchina+easylist.txt: 14527) -/(.*/)?Handlers/Ads\. -# /hads- (easylistchina+easylist.txt: 14526) -/(.*/)?hads- -hads-*. -# /gutterAd. (easylistchina+easylist.txt: 14525) -/(.*/)?gutterAd\. -gutterAd.*. -# /GujAd/* (easylistchina+easylist.txt: 14524) -/(.*/)?GujAd/.* -# /gujAd. (easylistchina+easylist.txt: 14523) -/(.*/)?gujAd\. -gujAd.*. -# /guardrailad_ (easylistchina+easylist.txt: 14522) -/(.*/)?guardrailad_ -# /guardianleader. (easylistchina+easylist.txt: 14521) -/(.*/)?guardianleader\. -guardianleader.*. -# /gtv_ads. (easylistchina+easylist.txt: 14520) -/(.*/)?gtv_ads\. -# /gtags/pin_tag. (easylistchina+easylist.txt: 14519) -/(.*/)?gtags/pin_tag\. -# /gt6skyadtop. (easylistchina+easylist.txt: 14518) -/(.*/)?gt6skyadtop\. -gt6skyadtop.*. -# /groupon/ads/* (easylistchina+easylist.txt: 14517) -/(.*/)?groupon/ads/.* -# /grid-ad. (easylistchina+easylist.txt: 14516) -/(.*/)?grid-ad\. -grid-ad.*. -# /graphics/ads/* (easylistchina+easylist.txt: 14515) -/(.*/)?graphics/ads/.* -# /graphics/ad_ (easylistchina+easylist.txt: 14514) -/(.*/)?graphics/ad_ -# /gpt_ads- (easylistchina+easylist.txt: 14513) -/(.*/)?gpt_ads- -# /googlempu. (easylistchina+easylist.txt: 14512) -/(.*/)?googlempu\. -googlempu.*. -# /googleleads. (easylistchina+easylist.txt: 14511) -/(.*/)?googleleads\. -googleleads.*. -# /googleleader. (easylistchina+easylist.txt: 14510) -/(.*/)?googleleader\. -googleleader.*. -# /googleheadad. (easylistchina+easylist.txt: 14509) -/(.*/)?googleheadad\. -googleheadad.*. -# /googlecontextualads. (easylistchina+easylist.txt: 14508) -/(.*/)?googlecontextualads\. -googlecontextualads.*. -# /googleafvadrenderer. (easylistchina+easylist.txt: 14507) -/(.*/)?googleafvadrenderer\. -googleafvadrenderer.*. -# /googleafs. (easylistchina+easylist.txt: 14506) -/(.*/)?googleafs\. -googleafs.*. -# /googleafc. (easylistchina+easylist.txt: 14505) -/(.*/)?googleafc\. -googleafc.*. -# /googleadunit? (easylistchina+easylist.txt: 14504) -/(.*/)?googleadunit\? -# /googleAdTaggingSubSec. (easylistchina+easylist.txt: 14503) -/(.*/)?googleAdTaggingSubSec\. -googleAdTaggingSubSec.*. -# /googleadsense. (easylistchina+easylist.txt: 14502) -/(.*/)?googleadsense\. -googleadsense.*. -# /googleAdScripts. (easylistchina+easylist.txt: 14501) -/(.*/)?googleAdScripts\. -googleAdScripts.*. -# /googleadsafs_ (easylistchina+easylist.txt: 14500) -/(.*/)?googleadsafs_ -# /googleadsafc_ (easylistchina+easylist.txt: 14499) -/(.*/)?googleadsafc_ -# /googleads_ (easylistchina+easylist.txt: 14498) -/(.*/)?googleads_ -# /googleads3widetext. (easylistchina+easylist.txt: 14497) -/(.*/)?googleads3widetext\. -googleads3widetext.*. -# /googleads2. (easylistchina+easylist.txt: 14496) -/(.*/)?googleads2\. -googleads2.*. -# /googleads1. (easylistchina+easylist.txt: 14495) -/(.*/)?googleads1\. -googleads1.*. -# /googleads/* (easylistchina+easylist.txt: 14494) -/(.*/)?googleads/.* -# /googleads. (easylistchina+easylist.txt: 14493) -/(.*/)?googleads\. -googleads.*. -# /googleads- (easylistchina+easylist.txt: 14492) -/(.*/)?googleads- -googleads-*. -# /googleadright. (easylistchina+easylist.txt: 14491) -/(.*/)?googleadright\. -googleadright.*. -# /googleadiframe_ (easylistchina+easylist.txt: 14490) -/(.*/)?googleadiframe_ -# /googleadhtml/* (easylistchina+easylist.txt: 14489) -/(.*/)?googleadhtml/.* -# /googleadhpbot. (easylistchina+easylist.txt: 14488) -/(.*/)?googleadhpbot\. -googleadhpbot.*. -# /googleadhp. (easylistchina+easylist.txt: 14487) -/(.*/)?googleadhp\. -googleadhp.*. -# /googleaddisplayframe. (easylistchina+easylist.txt: 14486) -/(.*/)?googleaddisplayframe\. -googleaddisplayframe.*. -# /googleaddfooter. (easylistchina+easylist.txt: 14485) -/(.*/)?googleaddfooter\. -googleaddfooter.*. -# /googleadcode. (easylistchina+easylist.txt: 14484) -/(.*/)?googleadcode\. -googleadcode.*. -# /GoogleAdBg. (easylistchina+easylist.txt: 14483) -/(.*/)?GoogleAdBg\. -GoogleAdBg.*. -# /googlead_ (easylistchina+easylist.txt: 14482) -/(.*/)?googlead_ -# /googlead336x280. (easylistchina+easylist.txt: 14481) -/(.*/)?googlead336x280\. -googlead336x280.*. -# /GoogleAd300. (easylistchina+easylist.txt: 14480) -/(.*/)?GoogleAd300\. -GoogleAd300.*. -# /googlead160. (easylistchina+easylist.txt: 14479) -/(.*/)?googlead160\. -googlead160.*. -# /googlead1. (easylistchina+easylist.txt: 14478) -/(.*/)?googlead1\. -googlead1.*. -# /googlead. (easylistchina+easylist.txt: 14477) -/(.*/)?googlead\. -googlead.*. -# /googlead- (easylistchina+easylist.txt: 14476) -/(.*/)?googlead- -googlead-*. -# /google_radlinks_ (easylistchina+easylist.txt: 14475) -/(.*/)?google_radlinks_ -# /google_lander2.js (easylistchina+easylist.txt: 14474) -/(.*/)?google_lander2\.js -# /google_caf.js? (easylistchina+easylist.txt: 14473) -/(.*/)?google_caf\.js\? -# /google_afs_widget/* (easylistchina+easylist.txt: 14472) -/(.*/)?google_afs_widget/.* -# /google_afs. (easylistchina+easylist.txt: 14471) -/(.*/)?google_afs\. -# /google_afc_ (easylistchina+easylist.txt: 14470) -/(.*/)?google_afc_ -# /google_afc. (easylistchina+easylist.txt: 14469) -/(.*/)?google_afc\. -# /google_adv/* (easylistchina+easylist.txt: 14468) -/(.*/)?google_adv/.* -# /google_ads_ (easylistchina+easylist.txt: 14467) -/(.*/)?google_ads_ -# /google_ads/* (easylistchina+easylist.txt: 14466) -/(.*/)?google_ads/.* -# /google_ads. (easylistchina+easylist.txt: 14465) -/(.*/)?google_ads\. -# /google_ad_ (easylistchina+easylist.txt: 14464) -/(.*/)?google_ad_ -# /google_ad. (easylistchina+easylist.txt: 14463) -/(.*/)?google_ad\. -# /google728. (easylistchina+easylist.txt: 14462) -/(.*/)?google728\. -google728.*. -# /google160. (easylistchina+easylist.txt: 14461) -/(.*/)?google160\. -google160.*. -# /google/adv. (easylistchina+easylist.txt: 14460) -/(.*/)?google/adv\. -# /google/ad? (easylistchina+easylist.txt: 14459) -/(.*/)?google/ad\? -# /google-afc. (easylistchina+easylist.txt: 14458) -/(.*/)?google-afc\. -google-afc.*. -# /google-afc- (easylistchina+easylist.txt: 14457) -/(.*/)?google-afc- -google-afc-*. -# /google-adwords (easylistchina+easylist.txt: 14456) -/(.*/)?google-adwords -google-adwords*. -# /google-adverts- (easylistchina+easylist.txt: 14455) -/(.*/)?google-adverts- -google-adverts-*. -# /google-adsense. (easylistchina+easylist.txt: 14454) -/(.*/)?google-adsense\. -google-adsense.*. -# /google-adsense- (easylistchina+easylist.txt: 14453) -/(.*/)?google-adsense- -google-adsense-*. -# /google-ads/* (easylistchina+easylist.txt: 14452) -/(.*/)?google-ads/.* -# /google-ads. (easylistchina+easylist.txt: 14451) -/(.*/)?google-ads\. -google-ads.*. -# /google-ad? (easylistchina+easylist.txt: 14450) -/(.*/)?google-ad\? -# /google-ad- (easylistchina+easylist.txt: 14449) -/(.*/)?google-ad- -google-ad-*. -# /googad300by600. (easylistchina+easylist.txt: 14448) -/(.*/)?googad300by600\. -googad300by600.*. -# /globalbannerad. (easylistchina+easylist.txt: 14447) -/(.*/)?globalbannerad\. -globalbannerad.*. -# /globaladprostyles. (easylistchina+easylist.txt: 14446) -/(.*/)?globaladprostyles\. -globaladprostyles.*. -# /globalad. (easylistchina+easylist.txt: 14445) -/(.*/)?globalad\. -globalad.*. -# /global/ads/* (easylistchina+easylist.txt: 14444) -/(.*/)?global/ads/.* -# /global/ads. (easylistchina+easylist.txt: 14443) -/(.*/)?global/ads\. -# /global/ad/* (easylistchina+easylist.txt: 14442) -/(.*/)?global/ad/.* -# /global-ads_ (easylistchina+easylist.txt: 14441) -/(.*/)?global-ads_ -# /glam_ads. (easylistchina+easylist.txt: 14440) -/(.*/)?glam_ads\. -# /glam728. (easylistchina+easylist.txt: 14439) -/(.*/)?glam728\. -glam728.*. -# /glam300. (easylistchina+easylist.txt: 14438) -/(.*/)?glam300\. -glam300.*. -# /glam160. (easylistchina+easylist.txt: 14437) -/(.*/)?glam160\. -glam160.*. -# /gifs/ads/* (easylistchina+easylist.txt: 14436) -/(.*/)?gifs/ads/.* -# /ggadsense. (easylistchina+easylist.txt: 14435) -/(.*/)?ggadsense\. -ggadsense.*. -# /gfx/ads/* (easylistchina+easylist.txt: 14434) -/(.*/)?gfx/ads/.* -# /gfx/ad/* (easylistchina+easylist.txt: 14433) -/(.*/)?gfx/ad/.* -# /gexternalad. (easylistchina+easylist.txt: 14432) -/(.*/)?gexternalad\. -gexternalad.*. -# /getwebsitead/* (easylistchina+easylist.txt: 14431) -/(.*/)?getwebsitead/.* -# /getvideoad. (easylistchina+easylist.txt: 14430) -/(.*/)?getvideoad\. -getvideoad.*. -# /getvdopiaads. (easylistchina+easylist.txt: 14429) -/(.*/)?getvdopiaads\. -getvdopiaads.*. -# /GetVASTAd? (easylistchina+easylist.txt: 14428) -/(.*/)?GetVASTAd\? -# /getTextAD. (easylistchina+easylist.txt: 14427) -/(.*/)?getTextAD\. -getTextAD.*. -# /getsponslinksauto. (easylistchina+easylist.txt: 14426) -/(.*/)?getsponslinksauto\. -getsponslinksauto.*. -# /getsponslinks. (easylistchina+easylist.txt: 14425) -/(.*/)?getsponslinks\. -getsponslinks.*. -# /getsad.php? (easylistchina+easylist.txt: 14424) -/(.*/)?getsad\.php\? -# /getrcmd.js? (easylistchina+easylist.txt: 14423) -/(.*/)?getrcmd\.js\? -# /getmyad/* (easylistchina+easylist.txt: 14422) -/(.*/)?getmyad/.* -# /getmdhlink. (easylistchina+easylist.txt: 14421) -/(.*/)?getmdhlink\. -getmdhlink.*. -# /getmdhlayer. (easylistchina+easylist.txt: 14420) -/(.*/)?getmdhlayer\. -getmdhlayer.*. -# /getmarketplaceads. (easylistchina+easylist.txt: 14419) -/(.*/)?getmarketplaceads\. -getmarketplaceads.*. -# /getJsonAds? (easylistchina+easylist.txt: 14418) -/(.*/)?getJsonAds\? -# /getinlineads/* (easylistchina+easylist.txt: 14417) -/(.*/)?getinlineads/.* -# /gethalfpagead. (easylistchina+easylist.txt: 14416) -/(.*/)?gethalfpagead\. -gethalfpagead.*. -# /getfeaturedadsforshow. (easylistchina+easylist.txt: 14415) -/(.*/)?getfeaturedadsforshow\. -getfeaturedadsforshow.*. -# /getdigitalad/* (easylistchina+easylist.txt: 14414) -/(.*/)?getdigitalad/.* -# /getbanner.php? (easylistchina+easylist.txt: 14413) -/(.*/)?getbanner\.php\? -# /getbanner.cfm? (easylistchina+easylist.txt: 14412) -/(.*/)?getbanner\.cfm\? -# /getban.php? (easylistchina+easylist.txt: 14411) -/(.*/)?getban\.php\? -# /getarticleadvertimageservlet? (easylistchina+easylist.txt: 14410) -/(.*/)?getarticleadvertimageservlet\? -# /GetADVOverlay. (easylistchina+easylist.txt: 14409) -/(.*/)?GetADVOverlay\. -GetADVOverlay.*. -# /getadverts? (easylistchina+easylist.txt: 14408) -/(.*/)?getadverts\? -# /getadvertiserimage. (easylistchina+easylist.txt: 14407) -/(.*/)?getadvertiserimage\. -getadvertiserimage.*. -# /getAdvertisement^ (easylistchina+easylist.txt: 14406) -/(.*/)?getAdvertisement[^\w%.-] -# /getadvertimageservlet? (easylistchina+easylist.txt: 14405) -/(.*/)?getadvertimageservlet\? -# /getads| (easylistchina+easylist.txt: 14404) -/(.*/)?getads$ -# /getAdsForClient? (easylistchina+easylist.txt: 14403) -/(.*/)?getAdsForClient\? -# /getadsettingsjs? (easylistchina+easylist.txt: 14402) -/(.*/)?getadsettingsjs\? -# /getadserver. (easylistchina+easylist.txt: 14401) -/(.*/)?getadserver\. -getadserver.*. -# /getads? (easylistchina+easylist.txt: 14400) -/(.*/)?getads\? -# /getads/* (easylistchina+easylist.txt: 14399) -/(.*/)?getads/.* -# /getads. (easylistchina+easylist.txt: 14398) -/(.*/)?getads\. -getads.*. -# /getads- (easylistchina+easylist.txt: 14397) -/(.*/)?getads- -getads-*. -# /getadframe. (easylistchina+easylist.txt: 14396) -/(.*/)?getadframe\. -getadframe.*. -# /GetAdForCallBack? (easylistchina+easylist.txt: 14395) -/(.*/)?GetAdForCallBack\? -# /getadds. (easylistchina+easylist.txt: 14394) -/(.*/)?getadds\. -getadds.*. -# /getadcontent. (easylistchina+easylist.txt: 14393) -/(.*/)?getadcontent\. -getadcontent.*. -# /getad? (easylistchina+easylist.txt: 14392) -/(.*/)?getad\? -# /getad/* (easylistchina+easylist.txt: 14391) -/(.*/)?getad/.* -# /getad. (easylistchina+easylist.txt: 14390) -/(.*/)?getad\. -getad.*. -# /get_banner.asp? (easylistchina+easylist.txt: 14389) -/(.*/)?get_banner\.asp\? -# /get_ads/* (easylistchina+easylist.txt: 14388) -/(.*/)?get_ads/.* -# /get_ads. (easylistchina+easylist.txt: 14387) -/(.*/)?get_ads\. -# /get_ad_ (easylistchina+easylist.txt: 14386) -/(.*/)?get_ad_ -# /get/ad? (easylistchina+easylist.txt: 14385) -/(.*/)?get/ad\? -# /get/ad/* (easylistchina+easylist.txt: 14384) -/(.*/)?get/ad/.* -# /get/ad. (easylistchina+easylist.txt: 14383) -/(.*/)?get/ad\. -# /get.ad? (easylistchina+easylist.txt: 14382) -/(.*/)?get\.ad\? -# /get.*/get.$script (easylistchina+easylist.txt: 14381) -/(.*/)?get\..*/get\. -get.*./(.*/)?get\. -# /get-advert- (easylistchina+easylist.txt: 14380) -/(.*/)?get-advert- -get-advert-*. -# /get-ad. (easylistchina+easylist.txt: 14379) -/(.*/)?get-ad\. -get-ad.*. -# /ges_ads/* (easylistchina+easylist.txt: 14378) -/(.*/)?ges_ads/.* -# /GeoDynBanner.php?wmid= (easylistchina+easylist.txt: 14377) -/(.*/)?GeoDynBanner\.php\?wmid= -# /geobox.html (easylistchina+easylist.txt: 14376) -/(.*/)?geobox\.html -geobox.html*. -# /geoad/* (easylistchina+easylist.txt: 14375) -/(.*/)?geoad/.* -# /geo_banner.htm? (easylistchina+easylist.txt: 14374) -/(.*/)?geo_banner\.htm\? -# /geo/ads. (easylistchina+easylist.txt: 14373) -/(.*/)?geo/ads\. -# /geo-ads_ (easylistchina+easylist.txt: 14372) -/(.*/)?geo-ads_ -# /genericrichmediabannerad/* (easylistchina+easylist.txt: 14371) -/(.*/)?genericrichmediabannerad/.* -# /generic.ads. (easylistchina+easylist.txt: 14370) -/(.*/)?generic\.ads\. -generic.ads.*. -# /generateplayerads. (easylistchina+easylist.txt: 14369) -/(.*/)?generateplayerads\. -generateplayerads.*. -# /generated/key.js? (easylistchina+easylist.txt: 14368) -/(.*/)?generated/key\.js\? -# /generateadtag. (easylistchina+easylist.txt: 14367) -/(.*/)?generateadtag\. -generateadtag.*. -# /generate_ads. (easylistchina+easylist.txt: 14366) -/(.*/)?generate_ads\. -# /generate_ad. (easylistchina+easylist.txt: 14365) -/(.*/)?generate_ad\. -# /general/ads (easylistchina+easylist.txt: 14364) -/(.*/)?general/ads -# /general-ad- (easylistchina+easylist.txt: 14363) -/(.*/)?general-ad- -general-ad-*. -# /genads/* (easylistchina+easylist.txt: 14362) -/(.*/)?genads/.* -# /gen_ads_ (easylistchina+easylist.txt: 14361) -/(.*/)?gen_ads_ -# /geitonpop. (easylistchina+easylist.txt: 14360) -/(.*/)?geitonpop\. -geitonpop.*. -# /gazette/ads/* (easylistchina+easylist.txt: 14359) -/(.*/)?gazette/ads/.* -# /gatewayAds. (easylistchina+easylist.txt: 14358) -/(.*/)?gatewayAds\. -gatewayAds.*. -# /gate-ad- (easylistchina+easylist.txt: 14357) -/(.*/)?gate-ad- -gate-ad-*. -# /gannett/ads/* (easylistchina+easylist.txt: 14356) -/(.*/)?gannett/ads/.* -# /GAN_Ads/* (easylistchina+easylist.txt: 14355) -/(.*/)?GAN_Ads/.* -# /gamersad. (easylistchina+easylist.txt: 14354) -/(.*/)?gamersad\. -gamersad.*. -# /gameadsync. (easylistchina+easylist.txt: 14353) -/(.*/)?gameadsync\. -gameadsync.*. -# /gamead/* (easylistchina+easylist.txt: 14352) -/(.*/)?gamead/.* -# /game-ads. (easylistchina+easylist.txt: 14351) -/(.*/)?game-ads\. -game-ads.*. -# /gamads/* (easylistchina+easylist.txt: 14350) -/(.*/)?gamads/.* -# /gam_ads. (easylistchina+easylist.txt: 14349) -/(.*/)?gam_ads\. -# /gam_ad_ (easylistchina+easylist.txt: 14348) -/(.*/)?gam_ad_ -# /gam_ad. (easylistchina+easylist.txt: 14347) -/(.*/)?gam_ad\. -# /gam.html? (easylistchina+easylist.txt: 14346) -/(.*/)?gam\.html\? -# /galleryad. (easylistchina+easylist.txt: 14345) -/(.*/)?galleryad\. -galleryad.*. -# /gafv_adapter. (easylistchina+easylist.txt: 14344) -/(.*/)?gafv_adapter\. -# /gafsads? (easylistchina+easylist.txt: 14343) -/(.*/)?gafsads\? -# /gafc.js (easylistchina+easylist.txt: 14342) -/(.*/)?gafc\.js -gafc.js*. -# /gads.js (easylistchina+easylist.txt: 14341) -/(.*/)?gads\.js -gads.js*. -# /gads.html (easylistchina+easylist.txt: 14340) -/(.*/)?gads\.html -gads.html*. -# /gadgets/ad/* (easylistchina+easylist.txt: 14339) -/(.*/)?gadgets/ad/.* -# /fwadmanager. (easylistchina+easylist.txt: 14338) -/(.*/)?fwadmanager\. -fwadmanager.*. -# /fuseads/* (easylistchina+easylist.txt: 14337) -/(.*/)?fuseads/.* -# /fulladbazee. (easylistchina+easylist.txt: 14336) -/(.*/)?fulladbazee\. -fulladbazee.*. -# /fullad. (easylistchina+easylist.txt: 14335) -/(.*/)?fullad\. -fullad.*. -# /full/ads/* (easylistchina+easylist.txt: 14334) -/(.*/)?full/ads/.* -# /ftp/adv/* (easylistchina+easylist.txt: 14333) -/(.*/)?ftp/adv/.* -# /frontpagead/* (easylistchina+easylist.txt: 14332) -/(.*/)?frontpagead/.* -# /frontend/ads/* (easylistchina+easylist.txt: 14331) -/(.*/)?frontend/ads/.* -# /frnads. (easylistchina+easylist.txt: 14330) -/(.*/)?frnads\. -frnads.*. -# /friendfinder_ (easylistchina+easylist.txt: 14329) -/(.*/)?friendfinder_ -# /frequencyads. (easylistchina+easylist.txt: 14328) -/(.*/)?frequencyads\. -frequencyads.*. -# /freead2. (easylistchina+easylist.txt: 14327) -/(.*/)?freead2\. -freead2.*. -# /freead. (easylistchina+easylist.txt: 14326) -/(.*/)?freead\. -freead.*. -# /frameadsz. (easylistchina+easylist.txt: 14325) -/(.*/)?frameadsz\. -frameadsz.*. -# /frameads_ (easylistchina+easylist.txt: 14324) -/(.*/)?frameads_ -# /frameads1. (easylistchina+easylist.txt: 14323) -/(.*/)?frameads1\. -frameads1.*. -# /frameads. (easylistchina+easylist.txt: 14322) -/(.*/)?frameads\. -frameads.*. -# /framead_ (easylistchina+easylist.txt: 14321) -/(.*/)?framead_ -# /framead/* (easylistchina+easylist.txt: 14320) -/(.*/)?framead/.* -# /framead. (easylistchina+easylist.txt: 14319) -/(.*/)?framead\. -framead.*. -# /framead- (easylistchina+easylist.txt: 14318) -/(.*/)?framead- -framead-*. -# /frame_ads_ (easylistchina+easylist.txt: 14317) -/(.*/)?frame_ads_ -# /forums/ad/* (easylistchina+easylist.txt: 14316) -/(.*/)?forums/ad/.* -# /forum/ads/* (easylistchina+easylist.txt: 14315) -/(.*/)?forum/ads/.* -# /forads. (easylistchina+easylist.txt: 14314) -/(.*/)?forads\. -forads.*. -# /footertextads. (easylistchina+easylist.txt: 14313) -/(.*/)?footertextads\. -footertextads.*. -# /footerads/* (easylistchina+easylist.txt: 14312) -/(.*/)?footerads/.* -# /footerads. (easylistchina+easylist.txt: 14311) -/(.*/)?footerads\. -footerads.*. -# /footerad? (easylistchina+easylist.txt: 14310) -/(.*/)?footerad\? -# /footerad. (easylistchina+easylist.txt: 14309) -/(.*/)?footerad\. -footerad.*. -# /footer_ads. (easylistchina+easylist.txt: 14308) -/(.*/)?footer_ads\. -# /footer_ad_ (easylistchina+easylist.txt: 14307) -/(.*/)?footer_ad_ -# /footer_ad. (easylistchina+easylist.txt: 14306) -/(.*/)?footer_ad\. -# /footer-ads/* (easylistchina+easylist.txt: 14305) -/(.*/)?footer-ads/.* -# /footer-ad. (easylistchina+easylist.txt: 14304) -/(.*/)?footer-ad\. -footer-ad.*. -# /footer-ad- (easylistchina+easylist.txt: 14303) -/(.*/)?footer-ad- -footer-ad-*. -# /footad. (easylistchina+easylist.txt: 14302) -/(.*/)?footad\. -footad.*. -# /footad- (easylistchina+easylist.txt: 14301) -/(.*/)?footad- -footad-*. -# /fn_ads. (easylistchina+easylist.txt: 14300) -/(.*/)?fn_ads\. -# /flyers/ads/* (easylistchina+easylist.txt: 14299) -/(.*/)?flyers/ads/.* -# /flyads/* (easylistchina+easylist.txt: 14298) -/(.*/)?flyads/.* -# /flyad/* (easylistchina+easylist.txt: 14297) -/(.*/)?flyad/.* -# /flyad. (easylistchina+easylist.txt: 14296) -/(.*/)?flyad\. -flyad.*. -# /flvads/* (easylistchina+easylist.txt: 14295) -/(.*/)?flvads/.* -# /flvad_ (easylistchina+easylist.txt: 14294) -/(.*/)?flvad_ -# /flv-ad- (easylistchina+easylist.txt: 14293) -/(.*/)?flv-ad- -flv-ad-*. -# /floaty_rotator (easylistchina+easylist.txt: 14292) -/(.*/)?floaty_rotator -# /floatingads. (easylistchina+easylist.txt: 14291) -/(.*/)?floatingads\. -floatingads.*. -# /FloatingAd_ (easylistchina+easylist.txt: 14290) -/(.*/)?FloatingAd_ -# /floatingad. (easylistchina+easylist.txt: 14289) -/(.*/)?floatingad\. -floatingad.*. -# /floater_ad. (easylistchina+easylist.txt: 14288) -/(.*/)?floater_ad\. -# /floatadv. (easylistchina+easylist.txt: 14287) -/(.*/)?floatadv\. -floatadv.*. -# /floatads. (easylistchina+easylist.txt: 14286) -/(.*/)?floatads\. -floatads.*. -# /floatad_ (easylistchina+easylist.txt: 14285) -/(.*/)?floatad_ -# /float_ad. (easylistchina+easylist.txt: 14284) -/(.*/)?float_ad\. -# /float-ads/* (easylistchina+easylist.txt: 14283) -/(.*/)?float-ads/.* -# /flirt4free. (easylistchina+easylist.txt: 14282) -/(.*/)?flirt4free\. -flirt4free.*. -# /fliionosadcapture- (easylistchina+easylist.txt: 14281) -/(.*/)?fliionosadcapture- -fliionosadcapture-*. -# /flexads? (easylistchina+easylist.txt: 14280) -/(.*/)?flexads\? -# /fleshlightcash_ (easylistchina+easylist.txt: 14279) -/(.*/)?fleshlightcash_ -# /fleshlight. (easylistchina+easylist.txt: 14278) -/(.*/)?fleshlight\. -fleshlight.*. -# /flesh_banner (easylistchina+easylist.txt: 14277) -/(.*/)?flesh_banner -# /flatad. (easylistchina+easylist.txt: 14276) -/(.*/)?flatad\. -flatad.*. -# /flashpeelads/* (easylistchina+easylist.txt: 14275) -/(.*/)?flashpeelads/.* -# /flashads/* (easylistchina+easylist.txt: 14274) -/(.*/)?flashads/.* -# /flashads. (easylistchina+easylist.txt: 14273) -/(.*/)?flashads\. -flashads.*. -# /flashad3. (easylistchina+easylist.txt: 14272) -/(.*/)?flashad3\. -flashad3.*. -# /flashad. (easylistchina+easylist.txt: 14271) -/(.*/)?flashad\. -flashad.*. -# /flash_ads. (easylistchina+easylist.txt: 14270) -/(.*/)?flash_ads\. -# /flash/advertis (easylistchina+easylist.txt: 14269) -/(.*/)?flash/advertis -# /flash/ads/* (easylistchina+easylist.txt: 14268) -/(.*/)?flash/ads/.* -# /flash/ad_ (easylistchina+easylist.txt: 14267) -/(.*/)?flash/ad_ -# /flash/ad/* (easylistchina+easylist.txt: 14266) -/(.*/)?flash/ad/.* -# /flash-ads/* (easylistchina+easylist.txt: 14265) -/(.*/)?flash-ads/.* -# /flash-ads. (easylistchina+easylist.txt: 14264) -/(.*/)?flash-ads\. -flash-ads.*. -# /flag_ads. (easylistchina+easylist.txt: 14263) -/(.*/)?flag_ads\. -# /first-ad_ (easylistchina+easylist.txt: 14262) -/(.*/)?first-ad_ -# /finads. (easylistchina+easylist.txt: 14261) -/(.*/)?finads\. -finads.*. -# /fimserve. (easylistchina+easylist.txt: 14260) -/(.*/)?fimserve\. -fimserve.*. -# /filter.php?pro$script (easylistchina+easylist.txt: 14259) -/(.*/)?filter\.php\?pro -# /files/ads/* (easylistchina+easylist.txt: 14258) -/(.*/)?files/ads/.* -# /files/ads- (easylistchina+easylist.txt: 14257) -/(.*/)?files/ads- -# /files/ad/* (easylistchina+easylist.txt: 14256) -/(.*/)?files/ad/.* -# /files/ad- (easylistchina+easylist.txt: 14255) -/(.*/)?files/ad- -# /file/ad. (easylistchina+easylist.txt: 14254) -/(.*/)?file/ad\. -# /feedads. (easylistchina+easylist.txt: 14253) -/(.*/)?feedads\. -feedads.*. -# /featuredadshome. (easylistchina+easylist.txt: 14252) -/(.*/)?featuredadshome\. -featuredadshome.*. -# /fea_ads. (easylistchina+easylist.txt: 14251) -/(.*/)?fea_ads\. -# /fc_ads. (easylistchina+easylist.txt: 14250) -/(.*/)?fc_ads\. -# /fbads/* (easylistchina+easylist.txt: 14249) -/(.*/)?fbads/.* -# /fatads. (easylistchina+easylist.txt: 14248) -/(.*/)?fatads\. -fatads.*. -# /fastclick728. (easylistchina+easylist.txt: 14247) -/(.*/)?fastclick728\. -fastclick728.*. -# /fastclick160. (easylistchina+easylist.txt: 14246) -/(.*/)?fastclick160\. -fastclick160.*. -# /fan-ads.$script (easylistchina+easylist.txt: 14245) -/(.*/)?fan-ads\. -fan-ads.*. -# /facebooksex. (easylistchina+easylist.txt: 14244) -/(.*/)?facebooksex\. -facebooksex.*. -# /facebookaff2/* (easylistchina+easylist.txt: 14243) -/(.*/)?facebookaff2/.* -# /facebookaff/* (easylistchina+easylist.txt: 14242) -/(.*/)?facebookaff/.* -# /eyewondermanagement28. (easylistchina+easylist.txt: 14241) -/(.*/)?eyewondermanagement28\. -eyewondermanagement28.*. -# /eyewondermanagement. (easylistchina+easylist.txt: 14240) -/(.*/)?eyewondermanagement\. -eyewondermanagement.*. -# /externalhtmladrenderer. (easylistchina+easylist.txt: 14239) -/(.*/)?externalhtmladrenderer\. -externalhtmladrenderer.*. -# /externalads/* (easylistchina+easylist.txt: 14238) -/(.*/)?externalads/.* -# /ExternalAdNetworkViewlogLogServlet? (easylistchina+easylist.txt: 14237) -/(.*/)?ExternalAdNetworkViewlogLogServlet\? -# /externalad. (easylistchina+easylist.txt: 14236) -/(.*/)?externalad\. -externalad.*. -# /external_ads. (easylistchina+easylist.txt: 14235) -/(.*/)?external_ads\. -# /external/ads/* (easylistchina+easylist.txt: 14234) -/(.*/)?external/ads/.* -# /external/ad/* (easylistchina+easylist.txt: 14233) -/(.*/)?external/ad/.* -# /external/ad. (easylistchina+easylist.txt: 14232) -/(.*/)?external/ad\. -# /extendedadvert. (easylistchina+easylist.txt: 14231) -/(.*/)?extendedadvert\. -extendedadvert.*. -# /extadv/* (easylistchina+easylist.txt: 14230) -/(.*/)?extadv/.* -# /ext_ads. (easylistchina+easylist.txt: 14229) -/(.*/)?ext_ads\. -# /ext/ads/* (easylistchina+easylist.txt: 14228) -/(.*/)?ext/ads/.* -# /exports/tour_20/* (easylistchina+easylist.txt: 14227) -/(.*/)?exports/tour_20/.* -# /exports/tour/*$third-party (easylistchina+easylist.txt: 14226) -/(.*/)?exports/tour/.* -# /expop.js (easylistchina+easylist.txt: 14225) -/(.*/)?expop\.js -expop.js*. -# /expandy-ads. (easylistchina+easylist.txt: 14224) -/(.*/)?expandy-ads\. -expandy-ads.*. -# /expandingads. (easylistchina+easylist.txt: 14223) -/(.*/)?expandingads\. -expandingads.*. -# /expandable_ad? (easylistchina+easylist.txt: 14222) -/(.*/)?expandable_ad\? -# /expandable_ad.php (easylistchina+easylist.txt: 14221) -/(.*/)?expandable_ad\.php -# /exoclickright3. (easylistchina+easylist.txt: 14220) -/(.*/)?exoclickright3\. -exoclickright3.*. -# /exoclickright2. (easylistchina+easylist.txt: 14219) -/(.*/)?exoclickright2\. -exoclickright2.*. -# /exoclickright1. (easylistchina+easylist.txt: 14218) -/(.*/)?exoclickright1\. -exoclickright1.*. -# /exoclickright. (easylistchina+easylist.txt: 14217) -/(.*/)?exoclickright\. -exoclickright.*. -# /exoclick. (easylistchina+easylist.txt: 14216) -/(.*/)?exoclick\. -exoclick.*. -# /exobanner. (easylistchina+easylist.txt: 14215) -/(.*/)?exobanner\. -exobanner.*. -# /exo120x60. (easylistchina+easylist.txt: 14214) -/(.*/)?exo120x60\. -exo120x60.*. -# /exitsplash. (easylistchina+easylist.txt: 14213) -/(.*/)?exitsplash\. -exitsplash.*. -# /exitpopup. (easylistchina+easylist.txt: 14212) -/(.*/)?exitpopup\. -exitpopup.*. -# /exitpopunder_ (easylistchina+easylist.txt: 14211) -/(.*/)?exitpopunder_ -# /exitpopunder. (easylistchina+easylist.txt: 14210) -/(.*/)?exitpopunder\. -exitpopunder.*. -# /exitpop. (easylistchina+easylist.txt: 14209) -/(.*/)?exitpop\. -exitpop.*. -# /exit_popup (easylistchina+easylist.txt: 14208) -/(.*/)?exit_popup -# /exchange_banner_ (easylistchina+easylist.txt: 14207) -/(.*/)?exchange_banner_ -# /excellence/ads/* (easylistchina+easylist.txt: 14206) -/(.*/)?excellence/ads/.* -# /event.ng/* (easylistchina+easylist.txt: 14205) -/(.*/)?event\.ng/.* -event.ng/.* -# /euads/* (easylistchina+easylist.txt: 14204) -/(.*/)?euads/.* -# /esi/ads/* (easylistchina+easylist.txt: 14202) -/(.*/)?esi/ads/.* -# /eshopoffer. (easylistchina+easylist.txt: 14201) -/(.*/)?eshopoffer\. -eshopoffer.*. -# /eros.htm (easylistchina+easylist.txt: 14200) -/(.*/)?eros\.htm -eros.htm*. -# /erobanner. (easylistchina+easylist.txt: 14199) -/(.*/)?erobanner\. -erobanner.*. -# /eroadvertorial3. (easylistchina+easylist.txt: 14198) -/(.*/)?eroadvertorial3\. -eroadvertorial3.*. -# /eroadvertorial2. (easylistchina+easylist.txt: 14197) -/(.*/)?eroadvertorial2\. -eroadvertorial2.*. -# /eroadvertising. (easylistchina+easylist.txt: 14196) -/(.*/)?eroadvertising\. -eroadvertising.*. -# /eroads. (easylistchina+easylist.txt: 14195) -/(.*/)?eroads\. -eroads.*. -# /eroad2. (easylistchina+easylist.txt: 14194) -/(.*/)?eroad2\. -eroad2.*. -# /eroad.php (easylistchina+easylist.txt: 14193) -/(.*/)?eroad\.php -eroad.php*. -# /ero_line_ (easylistchina+easylist.txt: 14192) -/(.*/)?ero_line_ -# /ero_hosted_ (easylistchina+easylist.txt: 14191) -/(.*/)?ero_hosted_ -# /ero.htm (easylistchina+easylist.txt: 14190) -/(.*/)?ero\.htm -ero.htm*. -# /ero-advertising. (easylistchina+easylist.txt: 14189) -/(.*/)?ero-advertising\. -ero-advertising.*. -# /ero-ads_ (easylistchina+easylist.txt: 14188) -/(.*/)?ero-ads_ -# /ero-ads- (easylistchina+easylist.txt: 14187) -/(.*/)?ero-ads- -ero-ads-*. -# /ero-1. (easylistchina+easylist.txt: 14186) -/(.*/)?ero-1\. -ero-1.*. -# /ept_in.php? (easylistchina+easylist.txt: 14185) -/(.*/)?ept_in\.php\? -# /eporner-banner- (easylistchina+easylist.txt: 14184) -/(.*/)?eporner-banner- -eporner-banner-*. -# /eplanningv4. (easylistchina+easylist.txt: 14183) -/(.*/)?eplanningv4\. -eplanningv4.*. -# /eng/ads/* (easylistchina+easylist.txt: 14182) -/(.*/)?eng/ads/.* -# /en/ads/* (easylistchina+easylist.txt: 14181) -/(.*/)?en/ads/.* -# /ems/ads. (easylistchina+easylist.txt: 14180) -/(.*/)?ems/ads\. -# /EmreAds. (easylistchina+easylist.txt: 14179) -/(.*/)?EmreAds\. -EmreAds.*. -# /emediatead. (easylistchina+easylist.txt: 14178) -/(.*/)?emediatead\. -emediatead.*. -# /embed_ad. (easylistchina+easylist.txt: 14177) -/(.*/)?embed_ad\. -# /emailads/* (easylistchina+easylist.txt: 14176) -/(.*/)?emailads/.* -# /eht.js?site_ (easylistchina+easylist.txt: 14175) -/(.*/)?eht\.js\?site_ -# /editable/ads/* (easylistchina+easylist.txt: 14174) -/(.*/)?editable/ads/.* -# /ecom/magnet. (easylistchina+easylist.txt: 14173) -/(.*/)?ecom/magnet\. -# /eco_ads/* (easylistchina+easylist.txt: 14172) -/(.*/)?eco_ads/.* -# /ebayad. (easylistchina+easylist.txt: 14171) -/(.*/)?ebayad\. -ebayad.*. -# /ebay_ads/* (easylistchina+easylist.txt: 14170) -/(.*/)?ebay_ads/.* -# /easyazon- (easylistchina+easylist.txt: 14169) -/(.*/)?easyazon- -easyazon-*. -# /easyadstrack. (easylistchina+easylist.txt: 14168) -/(.*/)?easyadstrack\. -easyadstrack.*. -# /easyads/* (easylistchina+easylist.txt: 14167) -/(.*/)?easyads/.* -# /easyads. (easylistchina+easylist.txt: 14166) -/(.*/)?easyads\. -easyads.*. -# /eas_tag.1.0.js (easylistchina+easylist.txt: 14165) -/(.*/)?eas_tag\.1\.0\.js -# /eas_fif. (easylistchina+easylist.txt: 14164) -/(.*/)?eas_fif\. -# /eas?cu=*;ord= (easylistchina+easylist.txt: 14163) -/(.*/)?eas\?cu=.*;ord= -# /eas?cu=*;cre= (easylistchina+easylist.txt: 14162) -/(.*/)?eas\?cu=.*;cre= -# /eas?camp=*;cre= (easylistchina+easylist.txt: 14161) -/(.*/)?eas\?camp=.*;cre= -# /eas?*^easformat= (easylistchina+easylist.txt: 14160) -/(.*/)?eas\?.*[^\w%.-]easformat= -# /eas-fif.htm (easylistchina+easylist.txt: 14159) -/(.*/)?eas-fif\.htm -eas-fif.htm*. -# /e-vertising/* (easylistchina+easylist.txt: 14158) -/(.*/)?e-vertising/.* -# /e-advertising/* (easylistchina+easylist.txt: 14157) -/(.*/)?e-advertising/.* -# /dynbanner/flash/* (easylistchina+easylist.txt: 14156) -/(.*/)?dynbanner/flash/.* -# /dynanews/ad- (easylistchina+easylist.txt: 14155) -/(.*/)?dynanews/ad- -# /dynamicvideoad? (easylistchina+easylist.txt: 14154) -/(.*/)?dynamicvideoad\? -# /dynamiccsad? (easylistchina+easylist.txt: 14153) -/(.*/)?dynamiccsad\? -# /dynamicad? (easylistchina+easylist.txt: 14152) -/(.*/)?dynamicad\? -# /DynamicAd/* (easylistchina+easylist.txt: 14151) -/(.*/)?DynamicAd/.* -# /dynamic_ads/* (easylistchina+easylist.txt: 14150) -/(.*/)?dynamic_ads/.* -# /dynamic/ads/* (easylistchina+easylist.txt: 14149) -/(.*/)?dynamic/ads/.* -# /dynamic-ad- (easylistchina+easylist.txt: 14148) -/(.*/)?dynamic-ad- -dynamic-ad-*. -# /dyn_banners_ (easylistchina+easylist.txt: 14147) -/(.*/)?dyn_banners_ -# /dyn_banner. (easylistchina+easylist.txt: 14146) -/(.*/)?dyn_banner\. -# /dxd/ads/* (easylistchina+easylist.txt: 14145) -/(.*/)?dxd/ads/.* -# /dtmads/* (easylistchina+easylist.txt: 14144) -/(.*/)?dtmads/.* -# /dtim300x250.$script (easylistchina+easylist.txt: 14143) -/(.*/)?dtim300x250\. -dtim300x250.*. -# /dtiadvert125x125. (easylistchina+easylist.txt: 14142) -/(.*/)?dtiadvert125x125\. -dtiadvert125x125.*. -# /dspads. (easylistchina+easylist.txt: 14141) -/(.*/)?dspads\. -dspads.*. -# /dsg/bnn/* (easylistchina+easylist.txt: 14140) -/(.*/)?dsg/bnn/.* -# /dropdown_ad. (easylistchina+easylist.txt: 14139) -/(.*/)?dropdown_ad\. -# /droelf.kit/a/* (easylistchina+easylist.txt: 14138) -/(.*/)?droelf\.kit/a/.* -droelf.kit/a/.* -# /drivingrevenue/* (easylistchina+easylist.txt: 14137) -/(.*/)?drivingrevenue/.* -# /driveragentad2. (easylistchina+easylist.txt: 14136) -/(.*/)?driveragentad2\. -driveragentad2.*. -# /driveragentad1. (easylistchina+easylist.txt: 14135) -/(.*/)?driveragentad1\. -driveragentad1.*. -# /drawad. (easylistchina+easylist.txt: 14134) -/(.*/)?drawad\. -drawad.*. -# /download/ads (easylistchina+easylist.txt: 14133) -/(.*/)?download/ads -# /download/ad/* (easylistchina+easylist.txt: 14132) -/(.*/)?download/ad/.* -# /download/ad. (easylistchina+easylist.txt: 14131) -/(.*/)?download/ad\. -# /downads. (easylistchina+easylist.txt: 14130) -/(.*/)?downads\. -downads.*. -# /doublepimp2.js (easylistchina+easylist.txt: 14129) -/(.*/)?doublepimp2\.js -doublepimp2.js*. -# /doubleclicktag. (easylistchina+easylist.txt: 14128) -/(.*/)?doubleclicktag\. -doubleclicktag.*. -# /doubleclickplugin. (easylistchina+easylist.txt: 14127) -/(.*/)?doubleclickplugin\. -doubleclickplugin.*. -# /doubleclickloader. (easylistchina+easylist.txt: 14126) -/(.*/)?doubleclickloader\. -doubleclickloader.*. -# /doubleclickinstreamad. (easylistchina+easylist.txt: 14125) -/(.*/)?doubleclickinstreamad\. -doubleclickinstreamad.*. -# /doubleclickcontainer. (easylistchina+easylist.txt: 14124) -/(.*/)?doubleclickcontainer\. -doubleclickcontainer.*. -# /doubleclickbannerad? (easylistchina+easylist.txt: 14123) -/(.*/)?doubleclickbannerad\? -# /doubleclickads? (easylistchina+easylist.txt: 14122) -/(.*/)?doubleclickads\? -# /doubleclickads/* (easylistchina+easylist.txt: 14121) -/(.*/)?doubleclickads/.* -# /doubleclickad. (easylistchina+easylist.txt: 14120) -/(.*/)?doubleclickad\. -doubleclickad.*. -# /doubleclick_ads/* (easylistchina+easylist.txt: 14119) -/(.*/)?doubleclick_ads/.* -# /doubleclick_ads. (easylistchina+easylist.txt: 14118) -/(.*/)?doubleclick_ads\. -# /doubleclick/iframe. (easylistchina+easylist.txt: 14117) -/(.*/)?doubleclick/iframe\. -# /doubleclick.swf (easylistchina+easylist.txt: 14116) -/(.*/)?doubleclick\.swf -doubleclick.swf*. -# /doubleclick.php (easylistchina+easylist.txt: 14115) -/(.*/)?doubleclick\.php -doubleclick.php*. -# /doubleclick.js (easylistchina+easylist.txt: 14114) -/(.*/)?doubleclick\.js -doubleclick.js*. -# /doubleclick.aspx (easylistchina+easylist.txt: 14113) -/(.*/)?doubleclick\.aspx -doubleclick.aspx*. -# /doors/ads/* (easylistchina+easylist.txt: 14112) -/(.*/)?doors/ads/.* -# /door/ads/* (easylistchina+easylist.txt: 14111) -/(.*/)?door/ads/.* -# /domainads/* (easylistchina+easylist.txt: 14110) -/(.*/)?domainads/.* -# /dnsads. (easylistchina+easylist.txt: 14109) -/(.*/)?dnsads\. -dnsads.*. -# /dns_ad/* (easylistchina+easylist.txt: 14108) -/(.*/)?dns_ad/.* -# /dne_ad. (easylistchina+easylist.txt: 14107) -/(.*/)?dne_ad\. -# /dmn-advert. (easylistchina+easylist.txt: 14106) -/(.*/)?dmn-advert\. -dmn-advert.*. -# /dlfeatads. (easylistchina+easylist.txt: 14105) -/(.*/)?dlfeatads\. -dlfeatads.*. -# /divad/* (easylistchina+easylist.txt: 14104) -/(.*/)?divad/.* -# /div-ads. (easylistchina+easylist.txt: 14103) -/(.*/)?div-ads\. -div-ads.*. -# /displaybanner/* (easylistchina+easylist.txt: 14102) -/(.*/)?displaybanner/.* -# /displayadsiframe. (easylistchina+easylist.txt: 14101) -/(.*/)?displayadsiframe\. -displayadsiframe.*. -# /displayads3. (easylistchina+easylist.txt: 14100) -/(.*/)?displayads3\. -displayads3.*. -# /displayads2. (easylistchina+easylist.txt: 14099) -/(.*/)?displayads2\. -displayads2.*. -# /displayads1. (easylistchina+easylist.txt: 14098) -/(.*/)?displayads1\. -displayads1.*. -# /displayads/* (easylistchina+easylist.txt: 14097) -/(.*/)?displayads/.* -# /displayads. (easylistchina+easylist.txt: 14096) -/(.*/)?displayads\. -displayads.*. -# /displayadleader. (easylistchina+easylist.txt: 14095) -/(.*/)?displayadleader\. -displayadleader.*. -# /displayadiframe. (easylistchina+easylist.txt: 14094) -/(.*/)?displayadiframe\. -displayadiframe.*. -# /displayadbanner_ (easylistchina+easylist.txt: 14093) -/(.*/)?displayadbanner_ -# /displayad? (easylistchina+easylist.txt: 14092) -/(.*/)?displayad\? -# /displayad/* (easylistchina+easylist.txt: 14091) -/(.*/)?displayad/.* -# /displayad. (easylistchina+easylist.txt: 14090) -/(.*/)?displayad\. -displayad.*. -# /display_ad (easylistchina+easylist.txt: 14089) -/(.*/)?display_ad -# /display?ad_ (easylistchina+easylist.txt: 14088) -/(.*/)?display\?ad_ -# /display.ad. (easylistchina+easylist.txt: 14087) -/(.*/)?display\.ad\. -display.ad.*. -# /display-ads/* (easylistchina+easylist.txt: 14086) -/(.*/)?display-ads/.* -# /display-ads- (easylistchina+easylist.txt: 14085) -/(.*/)?display-ads- -display-ads-*. -# /display-ad/* (easylistchina+easylist.txt: 14084) -/(.*/)?display-ad/.* -# /DispAd_ (easylistchina+easylist.txt: 14083) -/(.*/)?DispAd_ -# /discuss_ad/* (easylistchina+easylist.txt: 14082) -/(.*/)?discuss_ad/.* -# /directrev. (easylistchina+easylist.txt: 14081) -/(.*/)?directrev\. -directrev.*. -# /directadvert. (easylistchina+easylist.txt: 14080) -/(.*/)?directadvert\. -directadvert.*. -# /directads. (easylistchina+easylist.txt: 14079) -/(.*/)?directads\. -directads.*. -# /direct_ads. (easylistchina+easylist.txt: 14078) -/(.*/)?direct_ads\. -# /dinclinx.com/* (easylistchina+easylist.txt: 14077) -/(.*/)?dinclinx\.com/.* -dinclinx.com/.* -# /digg_ads_ (easylistchina+easylist.txt: 14076) -/(.*/)?digg_ads_ -# /digg_ads. (easylistchina+easylist.txt: 14075) -/(.*/)?digg_ads\. -# /digest/ads. (easylistchina+easylist.txt: 14074) -/(.*/)?digest/ads\. -# /dig_ad. (easylistchina+easylist.txt: 14073) -/(.*/)?dig_ad\. -# /dif/?cid (easylistchina+easylist.txt: 14072) -/(.*/)?dif/\?cid -# /dictionary/ads/* (easylistchina+easylist.txt: 14071) -/(.*/)?dictionary/ads/.* -# /dfpsearchads. (easylistchina+easylist.txt: 14070) -/(.*/)?dfpsearchads\. -dfpsearchads.*. -# /dfpsds. (easylistchina+easylist.txt: 14069) -/(.*/)?dfpsds\. -dfpsds.*. -# /dfpads. (easylistchina+easylist.txt: 14068) -/(.*/)?dfpads\. -dfpads.*. -# /dfp_delivery.js (easylistchina+easylist.txt: 14067) -/(.*/)?dfp_delivery\.js -# /dfp_ads/* (easylistchina+easylist.txt: 14066) -/(.*/)?dfp_ads/.* -# /dfp/jquery. (easylistchina+easylist.txt: 14065) -/(.*/)?dfp/jquery\. -# /dfp/head/* (easylistchina+easylist.txt: 14064) -/(.*/)?dfp/head/.* -# /dfp/dc.js (easylistchina+easylist.txt: 14063) -/(.*/)?dfp/dc\.js -# /dfp/blocks/* (easylistchina+easylist.txt: 14062) -/(.*/)?dfp/blocks/.* -# /dfp/async. (easylistchina+easylist.txt: 14061) -/(.*/)?dfp/async\. -# /dfp.js (easylistchina+easylist.txt: 14060) -/(.*/)?dfp\.js -dfp.js*. -# /dfp-custom/* (easylistchina+easylist.txt: 14059) -/(.*/)?dfp-custom/.* -# /devicead/* (easylistchina+easylist.txt: 14058) -/(.*/)?devicead/.* -# /develop/ads_ (easylistchina+easylist.txt: 14057) -/(.*/)?develop/ads_ -# /design/ads/* (easylistchina+easylist.txt: 14056) -/(.*/)?design/ads/.* -# /descpopup.js (easylistchina+easylist.txt: 14055) -/(.*/)?descpopup\.js -descpopup.js*. -# /DemoAd. (easylistchina+easylist.txt: 14054) -/(.*/)?DemoAd\. -DemoAd.*. -# /demo/ads/* (easylistchina+easylist.txt: 14053) -/(.*/)?demo/ads/.* -# /delivery_ads/* (easylistchina+easylist.txt: 14052) -/(.*/)?delivery_ads/.* -# /delivery/vbafr.php (easylistchina+easylist.txt: 14051) -/(.*/)?delivery/vbafr\.php -# /delivery/spc. (easylistchina+easylist.txt: 14050) -/(.*/)?delivery/spc\. -# /delivery/lg. (easylistchina+easylist.txt: 14049) -/(.*/)?delivery/lg\. -# /delivery/fl. (easylistchina+easylist.txt: 14048) -/(.*/)?delivery/fl\. -# /delivery/fc. (easylistchina+easylist.txt: 14047) -/(.*/)?delivery/fc\. -# /delivery/avw. (easylistchina+easylist.txt: 14046) -/(.*/)?delivery/avw\. -# /delivery/apu.php (easylistchina+easylist.txt: 14045) -/(.*/)?delivery/apu\.php -# /delivery/al.php (easylistchina+easylist.txt: 14044) -/(.*/)?delivery/al\.php -# /delivery/ag. (easylistchina+easylist.txt: 14043) -/(.*/)?delivery/ag\. -# /delivery/afr. (easylistchina+easylist.txt: 14042) -/(.*/)?delivery/afr\. -# /delivery/*?advplaces= (easylistchina+easylist.txt: 14041) -/(.*/)?delivery/.*\?advplaces= -# /delivery.php?rnd= (easylistchina+easylist.txt: 14040) -/(.*/)?delivery\.php\?rnd= -# /delivery.php?pool_id= (easylistchina+easylist.txt: 14039) -/(.*/)?delivery\.php\?pool_id= -# /delivery.ads. (easylistchina+easylist.txt: 14038) -/(.*/)?delivery\.ads\. -delivery.ads.*. -# /deliversds. (easylistchina+easylist.txt: 14037) -/(.*/)?deliversds\. -deliversds.*. -# /deliversd/* (easylistchina+easylist.txt: 14036) -/(.*/)?deliversd/.* -# /deliverjs.nmi? (easylistchina+easylist.txt: 14035) -/(.*/)?deliverjs\.nmi\? -# /deliverads. (easylistchina+easylist.txt: 14034) -/(.*/)?deliverads\. -deliverads.*. -# /deliverad/* (easylistchina+easylist.txt: 14033) -/(.*/)?deliverad/.* -# /deliver.nmi? (easylistchina+easylist.txt: 14032) -/(.*/)?deliver\.nmi\? -# /deliver.jphp? (easylistchina+easylist.txt: 14031) -/(.*/)?deliver\.jphp\? -# /delayedad. (easylistchina+easylist.txt: 14030) -/(.*/)?delayedad\. -delayedad.*. -# /defersds. (easylistchina+easylist.txt: 14029) -/(.*/)?defersds\. -defersds.*. -# /deferads. (easylistchina+easylist.txt: 14028) -/(.*/)?deferads\. -deferads.*. -# /defer_ads. (easylistchina+easylist.txt: 14027) -/(.*/)?defer_ads\. -# /defaults_ads/* (easylistchina+easylist.txt: 14026) -/(.*/)?defaults_ads/.* -# /defaultad? (easylistchina+easylist.txt: 14025) -/(.*/)?defaultad\? -# /default_oas. (easylistchina+easylist.txt: 14024) -/(.*/)?default_oas\. -# /default_adv. (easylistchina+easylist.txt: 14023) -/(.*/)?default_adv\. -# /default_ads/* (easylistchina+easylist.txt: 14022) -/(.*/)?default_ads/.* -# /default/ads/* (easylistchina+easylist.txt: 14021) -/(.*/)?default/ads/.* -# /default-adv/* (easylistchina+easylist.txt: 14020) -/(.*/)?default-adv/.* -# /de/ads/* (easylistchina+easylist.txt: 14019) -/(.*/)?de/ads/.* -# /ddlads/* (easylistchina+easylist.txt: 14018) -/(.*/)?ddlads/.* -# /dcloadads/* (easylistchina+easylist.txt: 14017) -/(.*/)?dcloadads/.* -# /dclk_ads_ (easylistchina+easylist.txt: 14016) -/(.*/)?dclk_ads_ -# /dclk_ads. (easylistchina+easylist.txt: 14015) -/(.*/)?dclk_ads\. -# /dclk/dfp/* (easylistchina+easylist.txt: 14014) -/(.*/)?dclk/dfp/.* -# /dblclickad. (easylistchina+easylist.txt: 14013) -/(.*/)?dblclickad\. -dblclickad.*. -# /dblclick. (easylistchina+easylist.txt: 14012) -/(.*/)?dblclick\. -dblclick.*. -# /dateads. (easylistchina+easylist.txt: 14011) -/(.*/)?dateads\. -dateads.*. -# /data/init?site_id= (easylistchina+easylist.txt: 14010) -/(.*/)?data/init\?site_id= -# /data/init2?site_id= (easylistchina+easylist.txt: 14009) -/(.*/)?data/init2\?site_id= -# /data/ads/* (easylistchina+easylist.txt: 14008) -/(.*/)?data/ads/.* -# /dartfunctions. (easylistchina+easylist.txt: 14007) -/(.*/)?dartfunctions\. -dartfunctions.*. -# /dartcall. (easylistchina+easylist.txt: 14006) -/(.*/)?dartcall\. -dartcall.*. -# /dartads. (easylistchina+easylist.txt: 14005) -/(.*/)?dartads\. -dartads.*. -# /dartadengine2. (easylistchina+easylist.txt: 14004) -/(.*/)?dartadengine2\. -dartadengine2.*. -# /dartadengine. (easylistchina+easylist.txt: 14003) -/(.*/)?dartadengine\. -dartadengine.*. -# /dartad/* (easylistchina+easylist.txt: 14002) -/(.*/)?dartad/.* -# /dart_enhancements/* (easylistchina+easylist.txt: 14001) -/(.*/)?dart_enhancements/.* -# /dart_ads/* (easylistchina+easylist.txt: 14000) -/(.*/)?dart_ads/.* -# /dart_ads. (easylistchina+easylist.txt: 13999) -/(.*/)?dart_ads\. -# /daily/ads/* (easylistchina+easylist.txt: 13998) -/(.*/)?daily/ads/.* -# /d/ads/* (easylistchina+easylist.txt: 13997) -/(.*/)?d/ads/.* -# /cwggoogleadshow. (easylistchina+easylist.txt: 13996) -/(.*/)?cwggoogleadshow\. -cwggoogleadshow.*. -# /cvs/ads/* (easylistchina+easylist.txt: 13995) -/(.*/)?cvs/ads/.* -# /cutead. (easylistchina+easylist.txt: 13994) -/(.*/)?cutead\. -cutead.*. -# /customerad_ (easylistchina+easylist.txt: 13993) -/(.*/)?customerad_ -# /customcontrols/ads/* (easylistchina+easylist.txt: 13992) -/(.*/)?customcontrols/ads/.* -# /customadsense. (easylistchina+easylist.txt: 13991) -/(.*/)?customadsense\. -customadsense.*. -# /customads/* (easylistchina+easylist.txt: 13990) -/(.*/)?customads/.* -# /customadmode. (easylistchina+easylist.txt: 13989) -/(.*/)?customadmode\. -customadmode.*. -# /customad. (easylistchina+easylist.txt: 13988) -/(.*/)?customad\. -customad.*. -# /custom_ads/* (easylistchina+easylist.txt: 13987) -/(.*/)?custom_ads/.* -# /custom11x5ad. (easylistchina+easylist.txt: 13986) -/(.*/)?custom11x5ad\. -custom11x5ad.*. -# /custom/doubleclick/* (easylistchina+easylist.txt: 13985) -/(.*/)?custom/doubleclick/.* -# /custom/ads (easylistchina+easylist.txt: 13984) -/(.*/)?custom/ads -# /custads/* (easylistchina+easylist.txt: 13983) -/(.*/)?custads/.* -# /curveball/ads/* (easylistchina+easylist.txt: 13982) -/(.*/)?curveball/ads/.* -# /curlad. (easylistchina+easylist.txt: 13981) -/(.*/)?curlad\. -curlad.*. -# /cubeads_ (easylistchina+easylist.txt: 13980) -/(.*/)?cubeads_ -# /cubeads/* (easylistchina+easylist.txt: 13979) -/(.*/)?cubeads/.* -# /cubead. (easylistchina+easylist.txt: 13978) -/(.*/)?cubead\. -cubead.*. -# /cube_ads/* (easylistchina+easylist.txt: 13977) -/(.*/)?cube_ads/.* -# /ctamlive160x160. (easylistchina+easylist.txt: 13976) -/(.*/)?ctamlive160x160\. -ctamlive160x160.*. -# /cssjs/ads/* (easylistchina+easylist.txt: 13975) -/(.*/)?cssjs/ads/.* -# /css/adv. (easylistchina+easylist.txt: 13974) -/(.*/)?css/adv\. -# /css/adsense (easylistchina+easylist.txt: 13973) -/(.*/)?css/adsense -# /css/ads. (easylistchina+easylist.txt: 13972) -/(.*/)?css/ads\. -# /css/ads- (easylistchina+easylist.txt: 13971) -/(.*/)?css/ads- -# /css/ad. (easylistchina+easylist.txt: 13970) -/(.*/)?css/ad\. -# /csp/ads? (easylistchina+easylist.txt: 13969) -/(.*/)?csp/ads\? -# /crossoverad- (easylistchina+easylist.txt: 13968) -/(.*/)?crossoverad- -crossoverad-*. -# /cramitin/ads_ (easylistchina+easylist.txt: 13967) -/(.*/)?cramitin/ads_ -# /cpxads. (easylistchina+easylist.txt: 13966) -/(.*/)?cpxads\. -cpxads.*. -# /cpx_ads. (easylistchina+easylist.txt: 13965) -/(.*/)?cpx_ads\. -# /cpx-ad. (easylistchina+easylist.txt: 13964) -/(.*/)?cpx-ad\. -cpx-ad.*. -# /cpmrect. (easylistchina+easylist.txt: 13963) -/(.*/)?cpmrect\. -cpmrect.*. -# /cpmcampaigns/* (easylistchina+easylist.txt: 13962) -/(.*/)?cpmcampaigns/.* -# /cpmbanner. (easylistchina+easylist.txt: 13961) -/(.*/)?cpmbanner\. -cpmbanner.*. -# /cpm_ad. (easylistchina+easylist.txt: 13960) -/(.*/)?cpm_ad\. -# /cpm728. (easylistchina+easylist.txt: 13959) -/(.*/)?cpm728\. -cpm728.*. -# /cpm160. (easylistchina+easylist.txt: 13958) -/(.*/)?cpm160\. -cpm160.*. -# /coxads/* (easylistchina+easylist.txt: 13957) -/(.*/)?coxads/.* -# /country_ad. (easylistchina+easylist.txt: 13956) -/(.*/)?country_ad\. -# /cornersmall.swf (easylistchina+easylist.txt: 13955) -/(.*/)?cornersmall\.swf -cornersmall.swf*. -# /cornerbig.swf (easylistchina+easylist.txt: 13954) -/(.*/)?cornerbig\.swf -cornerbig.swf*. -# /corner_ads/* (easylistchina+easylist.txt: 13953) -/(.*/)?corner_ads/.* -# /corner-ad. (easylistchina+easylist.txt: 13952) -/(.*/)?corner-ad\. -corner-ad.*. -# /coread/* (easylistchina+easylist.txt: 13951) -/(.*/)?coread/.* -# /core/ads/* (easylistchina+easylist.txt: 13950) -/(.*/)?core/ads/.* -# /core/ad/* (easylistchina+easylist.txt: 13949) -/(.*/)?core/ad/.* -# /core-ads- (easylistchina+easylist.txt: 13948) -/(.*/)?core-ads- -core-ads-*. -# /convertjsontoad. (easylistchina+easylist.txt: 13947) -/(.*/)?convertjsontoad\. -convertjsontoad.*. -# /controllerimg/adv/* (easylistchina+easylist.txt: 13946) -/(.*/)?controllerimg/adv/.* -# /controller/ads/* (easylistchina+easylist.txt: 13945) -/(.*/)?controller/ads/.* -# /contribute_ad. (easylistchina+easylist.txt: 13944) -/(.*/)?contribute_ad\. -# /contpop.js| (easylistchina+easylist.txt: 13943) -/(.*/)?contpop\.js$ -contpop.js -# /contextualad. (easylistchina+easylist.txt: 13942) -/(.*/)?contextualad\. -contextualad.*. -# /contextads. (easylistchina+easylist.txt: 13941) -/(.*/)?contextads\. -contextads.*. -# /contextad. (easylistchina+easylist.txt: 13940) -/(.*/)?contextad\. -contextad.*. -# /context_ads. (easylistchina+easylist.txt: 13939) -/(.*/)?context_ads\. -# /context_ad/* (easylistchina+easylist.txt: 13938) -/(.*/)?context_ad/.* -# /contentad| (easylistchina+easylist.txt: 13937) -/(.*/)?contentad$ -# /contentadxxl. (easylistchina+easylist.txt: 13936) -/(.*/)?contentadxxl\. -contentadxxl.*. -# /contentadvert1. (easylistchina+easylist.txt: 13935) -/(.*/)?contentadvert1\. -contentadvert1.*. -# /contentAdServlet? (easylistchina+easylist.txt: 13934) -/(.*/)?contentAdServlet\? -# /contentad_ (easylistchina+easylist.txt: 13933) -/(.*/)?contentad_ -# /contentad/* (easylistchina+easylist.txt: 13932) -/(.*/)?contentad/.* -# /contentAd. (easylistchina+easylist.txt: 13931) -/(.*/)?contentAd\. -contentAd.*. -# /content_ad_ (easylistchina+easylist.txt: 13930) -/(.*/)?content_ad_ -# /content_ad. (easylistchina+easylist.txt: 13929) -/(.*/)?content_ad\. -# /content/adv/* (easylistchina+easylist.txt: 13928) -/(.*/)?content/adv/.* -# /content/ads/* (easylistchina+easylist.txt: 13927) -/(.*/)?content/ads/.* -# /content/ad_ (easylistchina+easylist.txt: 13926) -/(.*/)?content/ad_ -# /content/ad/* (easylistchina+easylist.txt: 13925) -/(.*/)?content/ad/.* -# /content-ads. (easylistchina+easylist.txt: 13924) -/(.*/)?content-ads\. -content-ads.*. -# /contaxe_ (easylistchina+easylist.txt: 13923) -/(.*/)?contaxe_ -# /contads. (easylistchina+easylist.txt: 13922) -/(.*/)?contads\. -contads.*. -# /cont-adv. (easylistchina+easylist.txt: 13921) -/(.*/)?cont-adv\. -cont-adv.*. -# /configspace/ads/* (easylistchina+easylist.txt: 13920) -/(.*/)?configspace/ads/.* -# /conad_ (easylistchina+easylist.txt: 13919) -/(.*/)?conad_ -# /conad. (easylistchina+easylist.txt: 13918) -/(.*/)?conad\. -conad.*. -# /components/ads_ (easylistchina+easylist.txt: 13917) -/(.*/)?components/ads_ -# /components/ads/* (easylistchina+easylist.txt: 13916) -/(.*/)?components/ads/.* -# /compban.html? (easylistchina+easylist.txt: 13915) -/(.*/)?compban\.html\? -# /companionAdFunc. (easylistchina+easylist.txt: 13914) -/(.*/)?companionAdFunc\. -companionAdFunc.*. -# /companion_ads. (easylistchina+easylist.txt: 13913) -/(.*/)?companion_ads\. -# /companion_ad. (easylistchina+easylist.txt: 13912) -/(.*/)?companion_ad\. -# /commspace_ad. (easylistchina+easylist.txt: 13911) -/(.*/)?commspace_ad\. -# /commons/ad/* (easylistchina+easylist.txt: 13910) -/(.*/)?commons/ad/.* -# /common_ad. (easylistchina+easylist.txt: 13909) -/(.*/)?common_ad\. -# /common/results.htm?block=*[colorAdSeparator]$subdocument,~third-party (easylistchina+easylist.txt: 13908) -/(.*/)?common/results\.htm\?block=.*\[colorAdSeparator\] -# /common/dart_wrapper_ (easylistchina+easylist.txt: 13907) -/(.*/)?common/dart_wrapper_ -# /common/adv_ (easylistchina+easylist.txt: 13906) -/(.*/)?common/adv_ -# /common/ads/* (easylistchina+easylist.txt: 13905) -/(.*/)?common/ads/.* -# /common/ad_ (easylistchina+easylist.txt: 13904) -/(.*/)?common/ad_ -# /common/ad/* (easylistchina+easylist.txt: 13903) -/(.*/)?common/ad/.* -# /common/ad. (easylistchina+easylist.txt: 13902) -/(.*/)?common/ad\. -# /common-ads/* (easylistchina+easylist.txt: 13901) -/(.*/)?common-ads/.* -# /commercial_top. (easylistchina+easylist.txt: 13900) -/(.*/)?commercial_top\. -# /commercial_horizontal. (easylistchina+easylist.txt: 13899) -/(.*/)?commercial_horizontal\. -# /comment-ad. (easylistchina+easylist.txt: 13898) -/(.*/)?comment-ad\. -comment-ad.*. -# /comment-ad- (easylistchina+easylist.txt: 13897) -/(.*/)?comment-ad- -comment-ad-*. -# /combo?darla/* (easylistchina+easylist.txt: 13896) -/(.*/)?combo\?darla/.* -# /com/ads/* (easylistchina+easylist.txt: 13895) -/(.*/)?com/ads/.* -# /columnads/* (easylistchina+easylist.txt: 13894) -/(.*/)?columnads/.* -# /columnadcounter. (easylistchina+easylist.txt: 13893) -/(.*/)?columnadcounter\. -columnadcounter.*. -# /colorscheme/ads/* (easylistchina+easylist.txt: 13892) -/(.*/)?colorscheme/ads/.* -# /collisionadmarker. (easylistchina+easylist.txt: 13891) -/(.*/)?collisionadmarker\. -collisionadmarker.*. -# /coldseal_ad. (easylistchina+easylist.txt: 13890) -/(.*/)?coldseal_ad\. -# /codaadconfig. (easylistchina+easylist.txt: 13889) -/(.*/)?codaadconfig\. -codaadconfig.*. -# /cnxad- (easylistchina+easylist.txt: 13888) -/(.*/)?cnxad- -cnxad-*. -# /cnnslads. (easylistchina+easylist.txt: 13887) -/(.*/)?cnnslads\. -cnnslads.*. -# /cnads.js (easylistchina+easylist.txt: 13886) -/(.*/)?cnads\.js -cnads.js*. -# /cn-advert. (easylistchina+easylist.txt: 13885) -/(.*/)?cn-advert\. -cn-advert.*. -# /cms/js/ad_ (easylistchina+easylist.txt: 13884) -/(.*/)?cms/js/ad_ -# /cms/ads/* (easylistchina+easylist.txt: 13883) -/(.*/)?cms/ads/.* -# /cm/ads/* (easylistchina+easylist.txt: 13882) -/(.*/)?cm/ads/.* -# /clkads. (easylistchina+easylist.txt: 13881) -/(.*/)?clkads\. -clkads.*. -# /clients/ads/* (easylistchina+easylist.txt: 13880) -/(.*/)?clients/ads/.* -# /clickunder. (easylistchina+easylist.txt: 13879) -/(.*/)?clickunder\. -clickunder.*. -# /clicksor. (easylistchina+easylist.txt: 13878) -/(.*/)?clicksor\. -clicksor.*. -# /clickboothad. (easylistchina+easylist.txt: 13877) -/(.*/)?clickboothad\. -clickboothad.*. -# /click/creative/* (easylistchina+easylist.txt: 13876) -/(.*/)?click/creative/.* -# /click/ads_ (easylistchina+easylist.txt: 13875) -/(.*/)?click/ads_ -# /classifieds/banners/* (easylistchina+easylist.txt: 13874) -/(.*/)?classifieds/banners/.* -# /ClassAds/* (easylistchina+easylist.txt: 13873) -/(.*/)?ClassAds/.* -# /clarityray.js (easylistchina+easylist.txt: 13872) -/(.*/)?clarityray\.js -clarityray.js*. -# /ck.php?nids (easylistchina+easylist.txt: 13871) -/(.*/)?ck\.php\?nids -# /cjadsprite. (easylistchina+easylist.txt: 13870) -/(.*/)?cjadsprite\. -cjadsprite.*. -# /circads. (easylistchina+easylist.txt: 13869) -/(.*/)?circads\. -circads.*. -# /ciaad. (easylistchina+easylist.txt: 13868) -/(.*/)?ciaad\. -ciaad.*. -# /chrome-ad. (easylistchina+easylist.txt: 13867) -/(.*/)?chrome-ad\. -chrome-ad.*. -# /chitika-ad? (easylistchina+easylist.txt: 13866) -/(.*/)?chitika-ad\? -# /chinaadclient. (easylistchina+easylist.txt: 13865) -/(.*/)?chinaadclient\. -chinaadclient.*. -# /checkm8header_ (easylistchina+easylist.txt: 13864) -/(.*/)?checkm8header_ -# /checkm8footer_ (easylistchina+easylist.txt: 13863) -/(.*/)?checkm8footer_ -# /channelblockads. (easylistchina+easylist.txt: 13862) -/(.*/)?channelblockads\. -channelblockads.*. -# /cgi/ad_ (easylistchina+easylist.txt: 13861) -/(.*/)?cgi/ad_ -# /cgi-exe/ad. (easylistchina+easylist.txt: 13860) -/(.*/)?cgi-exe/ad\. -# /cgi-bin/ads_ (easylistchina+easylist.txt: 13859) -/(.*/)?cgi-bin/ads_ -# /cgi-bin/ads/* (easylistchina+easylist.txt: 13858) -/(.*/)?cgi-bin/ads/.* -# /cgi-bin/ads. (easylistchina+easylist.txt: 13857) -/(.*/)?cgi-bin/ads\. -# /cgi-bin/ad/* (easylistchina+easylist.txt: 13856) -/(.*/)?cgi-bin/ad/.* -# /ceoads/* (easylistchina+easylist.txt: 13855) -/(.*/)?ceoads/.* -# /centralresource/ad_ (easylistchina+easylist.txt: 13854) -/(.*/)?centralresource/ad_ -# /central/ads/* (easylistchina+easylist.txt: 13853) -/(.*/)?central/ads/.* -# /centerads. (easylistchina+easylist.txt: 13852) -/(.*/)?centerads\. -centerads.*. -# /cdn.ads. (easylistchina+easylist.txt: 13851) -/(.*/)?cdn\.ads\. -cdn.ads.*. -# /cci-ads- (easylistchina+easylist.txt: 13850) -/(.*/)?cci-ads- -cci-ads-*. -# /cb.php?sub$script,third-party (easylistchina+easylist.txt: 13849) -/(.*/)?cb\.php\?sub -# /catfishads/* (easylistchina+easylist.txt: 13848) -/(.*/)?catfishads/.* -# /category-sponsorship/* (easylistchina+easylist.txt: 13847) -/(.*/)?category-sponsorship/.* -# /cashad2. (easylistchina+easylist.txt: 13846) -/(.*/)?cashad2\. -cashad2.*. -# /cashad. (easylistchina+easylist.txt: 13845) -/(.*/)?cashad\. -cashad.*. -# /carsadtaggenerator.js (easylistchina+easylist.txt: 13844) -/(.*/)?carsadtaggenerator\.js -carsadtaggenerator.js*. -# /carbonads/* (easylistchina+easylist.txt: 13843) -/(.*/)?carbonads/.* -# /carbonads- (easylistchina+easylist.txt: 13842) -/(.*/)?carbonads- -carbonads-*. -# /campus/ads/* (easylistchina+easylist.txt: 13841) -/(.*/)?campus/ads/.* -# /campaign/advertiser_ (easylistchina+easylist.txt: 13840) -/(.*/)?campaign/advertiser_ -# /camfuzeads/* (easylistchina+easylist.txt: 13839) -/(.*/)?camfuzeads/.* -# /camaoAdsenseHomepage. (easylistchina+easylist.txt: 13838) -/(.*/)?camaoAdsenseHomepage\. -camaoAdsenseHomepage.*. -# /camaoadsense. (easylistchina+easylist.txt: 13837) -/(.*/)?camaoadsense\. -camaoadsense.*. -# /callAdserver? (easylistchina+easylist.txt: 13836) -/(.*/)?callAdserver\? -# /callads5. (easylistchina+easylist.txt: 13835) -/(.*/)?callads5\. -callads5.*. -# /call_ads/* (easylistchina+easylist.txt: 13834) -/(.*/)?call_ads/.* -# /call/pubj/* (easylistchina+easylist.txt: 13833) -/(.*/)?call/pubj/.* -# /call/pubif/* (easylistchina+easylist.txt: 13832) -/(.*/)?call/pubif/.* -# /calendar-ads/* (easylistchina+easylist.txt: 13831) -/(.*/)?calendar-ads/.* -# /cads-min.js (easylistchina+easylist.txt: 13830) -/(.*/)?cads-min\.js -cads-min.js*. -# /cache/ads_ (easylistchina+easylist.txt: 13829) -/(.*/)?cache/ads_ -# /bytemark_ad. (easylistchina+easylist.txt: 13828) -/(.*/)?bytemark_ad\. -# /buzz/ads/* (easylistchina+easylist.txt: 13827) -/(.*/)?buzz/ads/.* -# /buysellads. (easylistchina+easylist.txt: 13826) -/(.*/)?buysellads\. -buysellads.*. -# /buysellads- (easylistchina+easylist.txt: 13825) -/(.*/)?buysellads- -buysellads-*. -# /buyer/dyad/* (easylistchina+easylist.txt: 13824) -/(.*/)?buyer/dyad/.* -# /buyclicks/* (easylistchina+easylist.txt: 13823) -/(.*/)?buyclicks/.* -# /buyad. (easylistchina+easylist.txt: 13822) -/(.*/)?buyad\. -buyad.*. -# /buttonads/* (easylistchina+easylist.txt: 13821) -/(.*/)?buttonads/.* -# /buttonads. (easylistchina+easylist.txt: 13820) -/(.*/)?buttonads\. -buttonads.*. -# /buttonad/* (easylistchina+easylist.txt: 13819) -/(.*/)?buttonad/.* -# /button_ads/* (easylistchina+easylist.txt: 13818) -/(.*/)?button_ads/.* -# /butler.php?type= (easylistchina+easylist.txt: 13817) -/(.*/)?butler\.php\?type= -# /burt/adv_ (easylistchina+easylist.txt: 13816) -/(.*/)?burt/adv_ -# /buddyw_ad. (easylistchina+easylist.txt: 13815) -/(.*/)?buddyw_ad\. -# /bucketads. (easylistchina+easylist.txt: 13814) -/(.*/)?bucketads\. -bucketads.*. -# /btn_ad_ (easylistchina+easylist.txt: 13813) -/(.*/)?btn_ad_ -# /btmadsx. (easylistchina+easylist.txt: 13812) -/(.*/)?btmadsx\. -btmadsx.*. -# /btmads. (easylistchina+easylist.txt: 13811) -/(.*/)?btmads\. -btmads.*. -# /btbuckets/btb.js (easylistchina+easylist.txt: 13810) -/(.*/)?btbuckets/btb\.js -# /bserver/* (easylistchina+easylist.txt: 13809) -/(.*/)?bserver/.* -# /brightcovead. (easylistchina+easylist.txt: 13808) -/(.*/)?brightcovead\. -brightcovead.*. -# /breakad_ (easylistchina+easylist.txt: 13807) -/(.*/)?breakad_ -# /boxad_ (easylistchina+easylist.txt: 13806) -/(.*/)?boxad_ -# /boxad3. (easylistchina+easylist.txt: 13805) -/(.*/)?boxad3\. -boxad3.*. -# /boxad2. (easylistchina+easylist.txt: 13804) -/(.*/)?boxad2\. -boxad2.*. -# /boxad1. (easylistchina+easylist.txt: 13803) -/(.*/)?boxad1\. -boxad1.*. -# /boxad. (easylistchina+easylist.txt: 13802) -/(.*/)?boxad\. -boxad.*. -# /box_ads_ (easylistchina+easylist.txt: 13801) -/(.*/)?box_ads_ -# /box_ad_ (easylistchina+easylist.txt: 13800) -/(.*/)?box_ad_ -# /bottomsidead/* (easylistchina+easylist.txt: 13799) -/(.*/)?bottomsidead/.* -# /bottomads. (easylistchina+easylist.txt: 13798) -/(.*/)?bottomads\. -bottomads.*. -# /bottomad/* (easylistchina+easylist.txt: 13797) -/(.*/)?bottomad/.* -# /bottomad. (easylistchina+easylist.txt: 13796) -/(.*/)?bottomad\. -bottomad.*. -# /bottom_adv_ (easylistchina+easylist.txt: 13795) -/(.*/)?bottom_adv_ -# /bottom_adv. (easylistchina+easylist.txt: 13794) -/(.*/)?bottom_adv\. -# /bottom_ads. (easylistchina+easylist.txt: 13793) -/(.*/)?bottom_ads\. -# /bottom_ad. (easylistchina+easylist.txt: 13792) -/(.*/)?bottom_ad\. -# /bottom-advert- (easylistchina+easylist.txt: 13791) -/(.*/)?bottom-advert- -bottom-advert-*. -# /bottom-ads. (easylistchina+easylist.txt: 13790) -/(.*/)?bottom-ads\. -bottom-ads.*. -# /bottom-ad- (easylistchina+easylist.txt: 13789) -/(.*/)?bottom-ad- -bottom-ad-*. -# /boomad. (easylistchina+easylist.txt: 13788) -/(.*/)?boomad\. -boomad.*. -# /bookads2. (easylistchina+easylist.txt: 13787) -/(.*/)?bookads2\. -bookads2.*. -# /bookads. (easylistchina+easylist.txt: 13786) -/(.*/)?bookads\. -bookads.*. -# /bookad/* (easylistchina+easylist.txt: 13785) -/(.*/)?bookad/.* -# /BOM/Ads/* (easylistchina+easylist.txt: 13784) -/(.*/)?BOM/Ads/.* -# /bodyads/* (easylistchina+easylist.txt: 13783) -/(.*/)?bodyads/.* -# /bnrsrv. (easylistchina+easylist.txt: 13782) -/(.*/)?bnrsrv\. -bnrsrv.*. -# /bnrimg. (easylistchina+easylist.txt: 13781) -/(.*/)?bnrimg\. -bnrimg.*. -# /bnrad/* (easylistchina+easylist.txt: 13780) -/(.*/)?bnrad/.* -# /bnr_show.php?id=$script (easylistchina+easylist.txt: 13779) -/(.*/)?bnr_show\.php\?id= -# /bnr.php? (easylistchina+easylist.txt: 13778) -/(.*/)?bnr\.php\? -# /bmndoubleclickad. (easylistchina+easylist.txt: 13777) -/(.*/)?bmndoubleclickad\. -bmndoubleclickad.*. -# /blogoas- (easylistchina+easylist.txt: 13776) -/(.*/)?blogoas- -blogoas-*. -# /bloggerex. (easylistchina+easylist.txt: 13775) -/(.*/)?bloggerex\. -bloggerex.*. -# /blogadsbg. (easylistchina+easylist.txt: 13774) -/(.*/)?blogadsbg\. -blogadsbg.*. -# /blogads_ (easylistchina+easylist.txt: 13773) -/(.*/)?blogads_ -# /blogads3/* (easylistchina+easylist.txt: 13772) -/(.*/)?blogads3/.* -# /blogads2_ (easylistchina+easylist.txt: 13771) -/(.*/)?blogads2_ -# /blogads/* (easylistchina+easylist.txt: 13770) -/(.*/)?blogads/.* -# /blogads. (easylistchina+easylist.txt: 13769) -/(.*/)?blogads\. -blogads.*. -# /blogads- (easylistchina+easylist.txt: 13768) -/(.*/)?blogads- -blogads-*. -# /blogad_ (easylistchina+easylist.txt: 13767) -/(.*/)?blogad_ -# /blogad02. (easylistchina+easylist.txt: 13766) -/(.*/)?blogad02\. -blogad02.*. -# /blogad. (easylistchina+easylist.txt: 13765) -/(.*/)?blogad\. -blogad.*. -# /blog_ads/* (easylistchina+easylist.txt: 13764) -/(.*/)?blog_ads/.* -# /blog_ad? (easylistchina+easylist.txt: 13763) -/(.*/)?blog_ad\? -# /blog/ads/* (easylistchina+easylist.txt: 13762) -/(.*/)?blog/ads/.* -# /blog-ad- (easylistchina+easylist.txt: 13761) -/(.*/)?blog-ad- -blog-ad-*. -# /blocks/ads/* (easylistchina+easylist.txt: 13760) -/(.*/)?blocks/ads/.* -# /blockad_ (easylistchina+easylist.txt: 13759) -/(.*/)?blockad_ -# /bkgrndads/* (easylistchina+easylist.txt: 13758) -/(.*/)?bkgrndads/.* -# /bizad. (easylistchina+easylist.txt: 13757) -/(.*/)?bizad\. -bizad.*. -# /binary/ad/* (easylistchina+easylist.txt: 13756) -/(.*/)?binary/ad/.* -# /bin/ads/* (easylistchina+easylist.txt: 13755) -/(.*/)?bin/ads/.* -# /bigtopl.swf (easylistchina+easylist.txt: 13754) -/(.*/)?bigtopl\.swf -bigtopl.swf*. -# /bigboxad. (easylistchina+easylist.txt: 13753) -/(.*/)?bigboxad\. -bigboxad.*. -# /bigads/* (easylistchina+easylist.txt: 13752) -/(.*/)?bigads/.* -# /bigad_ (easylistchina+easylist.txt: 13751) -/(.*/)?bigad_ -# /bigad. (easylistchina+easylist.txt: 13750) -/(.*/)?bigad\. -bigad.*. -# /bi_affiliate.js (easylistchina+easylist.txt: 13749) -/(.*/)?bi_affiliate\.js -# /bgads/* (easylistchina+easylist.txt: 13748) -/(.*/)?bgads/.* -# /bg_ads_ (easylistchina+easylist.txt: 13747) -/(.*/)?bg_ads_ -# /bg/ads/* (easylistchina+easylist.txt: 13746) -/(.*/)?bg/ads/.* -# /bg-advert- (easylistchina+easylist.txt: 13745) -/(.*/)?bg-advert- -bg-advert-*. -# /bftv/ads/* (easylistchina+easylist.txt: 13744) -/(.*/)?bftv/ads/.* -# /betrad.js (easylistchina+easylist.txt: 13743) -/(.*/)?betrad\.js -betrad.js*. -# /beta-ad. (easylistchina+easylist.txt: 13742) -/(.*/)?beta-ad\. -beta-ad.*. -# /behaviorads/* (easylistchina+easylist.txt: 13741) -/(.*/)?behaviorads/.* -# /beacon/ad/* (easylistchina+easylist.txt: 13740) -/(.*/)?beacon/ad/.* -# /bdcustomadsense- (easylistchina+easylist.txt: 13739) -/(.*/)?bdcustomadsense- -bdcustomadsense-*. -# /bckgrnd_ad. (easylistchina+easylist.txt: 13738) -/(.*/)?bckgrnd_ad\. -# /bbad9. (easylistchina+easylist.txt: 13737) -/(.*/)?bbad9\. -bbad9.*. -# /bbad8. (easylistchina+easylist.txt: 13736) -/(.*/)?bbad8\. -bbad8.*. -# /bbad7. (easylistchina+easylist.txt: 13735) -/(.*/)?bbad7\. -bbad7.*. -# /bbad6. (easylistchina+easylist.txt: 13734) -/(.*/)?bbad6\. -bbad6.*. -# /bbad5. (easylistchina+easylist.txt: 13733) -/(.*/)?bbad5\. -bbad5.*. -# /bbad4. (easylistchina+easylist.txt: 13732) -/(.*/)?bbad4\. -bbad4.*. -# /bbad3. (easylistchina+easylist.txt: 13731) -/(.*/)?bbad3\. -bbad3.*. -# /bbad2. (easylistchina+easylist.txt: 13730) -/(.*/)?bbad2\. -bbad2.*. -# /bbad10. (easylistchina+easylist.txt: 13729) -/(.*/)?bbad10\. -bbad10.*. -# /bbad1. (easylistchina+easylist.txt: 13728) -/(.*/)?bbad1\. -bbad1.*. -# /bbad. (easylistchina+easylist.txt: 13727) -/(.*/)?bbad\. -bbad.*. -# /basic/ad/* (easylistchina+easylist.txt: 13726) -/(.*/)?basic/ad/.* -# /baselinead. (easylistchina+easylist.txt: 13725) -/(.*/)?baselinead\. -baselinead.*. -# /baseAd. (easylistchina+easylist.txt: 13724) -/(.*/)?baseAd\. -baseAd.*. -# /bar-ad. (easylistchina+easylist.txt: 13723) -/(.*/)?bar-ad\. -bar-ad.*. -# /bansrc/* (easylistchina+easylist.txt: 13722) -/(.*/)?bansrc/.* -# /bannery/*?banner= (easylistchina+easylist.txt: 13721) -/(.*/)?bannery/.*\?banner= -# /bannerwerbung/* (easylistchina+easylist.txt: 13720) -/(.*/)?bannerwerbung/.* -# /bannerview.*? (easylistchina+easylist.txt: 13719) -/(.*/)?bannerview\..*\? -bannerview.*./.*\? -# /bannersyndication. (easylistchina+easylist.txt: 13718) -/(.*/)?bannersyndication\. -bannersyndication.*. -# /bannerserver? (easylistchina+easylist.txt: 13717) -/(.*/)?bannerserver\? -# /bannerserver3| (easylistchina+easylist.txt: 13716) -/(.*/)?bannerserver3$ -# /bannerserver3/* (easylistchina+easylist.txt: 13715) -/(.*/)?bannerserver3/.* -# /bannerserver/* (easylistchina+easylist.txt: 13714) -/(.*/)?bannerserver/.* -# /bannerserve/* (easylistchina+easylist.txt: 13713) -/(.*/)?bannerserve/.* -# /bannerscript/* (easylistchina+easylist.txt: 13712) -/(.*/)?bannerscript/.* -# /bannersAds_ (easylistchina+easylist.txt: 13711) -/(.*/)?bannersAds_ -# /banners_rotation. (easylistchina+easylist.txt: 13710) -/(.*/)?banners_rotation\. -# /banners/promo/* (easylistchina+easylist.txt: 13709) -/(.*/)?banners/promo/.* -# /banners/googlebanner (easylistchina+easylist.txt: 13708) -/(.*/)?banners/googlebanner -# /banners/ffadult/* (easylistchina+easylist.txt: 13707) -/(.*/)?banners/ffadult/.* -# /banners/affiliate/* (easylistchina+easylist.txt: 13706) -/(.*/)?banners/affiliate/.* -# /banners/affil/* (easylistchina+easylist.txt: 13705) -/(.*/)?banners/affil/.* -# /banners/aff. (easylistchina+easylist.txt: 13704) -/(.*/)?banners/aff\. -# /banners/adv_ (easylistchina+easylist.txt: 13703) -/(.*/)?banners/adv_ -# /banners/adv/* (easylistchina+easylist.txt: 13702) -/(.*/)?banners/adv/.* -# /banners/ads/* (easylistchina+easylist.txt: 13701) -/(.*/)?banners/ads/.* -# /banners/ads. (easylistchina+easylist.txt: 13700) -/(.*/)?banners/ads\. -# /banners/ads- (easylistchina+easylist.txt: 13699) -/(.*/)?banners/ads- -# /banners/ad_ (easylistchina+easylist.txt: 13698) -/(.*/)?banners/ad_ -# /banners/ad11. (easylistchina+easylist.txt: 13697) -/(.*/)?banners/ad11\. -# /banners/ad10. (easylistchina+easylist.txt: 13696) -/(.*/)?banners/ad10\. -# /banners/ad/* (easylistchina+easylist.txt: 13695) -/(.*/)?banners/ad/.* -# /banners/728 (easylistchina+easylist.txt: 13694) -/(.*/)?banners/728 -# /banners/468 (easylistchina+easylist.txt: 13693) -/(.*/)?banners/468 -# /banners/460 (easylistchina+easylist.txt: 13692) -/(.*/)?banners/460 -# /banners/300 (easylistchina+easylist.txt: 13691) -/(.*/)?banners/300 -# /banners/160 (easylistchina+easylist.txt: 13690) -/(.*/)?banners/160 -# /banners.php?id (easylistchina+easylist.txt: 13689) -/(.*/)?banners\.php\?id -# /banners.cgi? (easylistchina+easylist.txt: 13688) -/(.*/)?banners\.cgi\? -# /banners.*&iframe= (easylistchina+easylist.txt: 13687) -/(.*/)?banners\..*&iframe= -banners.*./.*&iframe= -# /bannerrotation/* (easylistchina+easylist.txt: 13686) -/(.*/)?bannerrotation/.* -# /bannerrotation. (easylistchina+easylist.txt: 13685) -/(.*/)?bannerrotation\. -bannerrotation.*. -# /bannerrotater/* (easylistchina+easylist.txt: 13684) -/(.*/)?bannerrotater/.* -# /bannerrotate. (easylistchina+easylist.txt: 13683) -/(.*/)?bannerrotate\. -bannerrotate.*. -# /bannerpump. (easylistchina+easylist.txt: 13682) -/(.*/)?bannerpump\. -bannerpump.*. -# /bannermvt. (easylistchina+easylist.txt: 13681) -/(.*/)?bannermvt\. -bannermvt.*. -# /bannermanager/* (easylistchina+easylist.txt: 13680) -/(.*/)?bannermanager/.* -# /bannermaker/* (easylistchina+easylist.txt: 13679) -/(.*/)?bannermaker/.* -# /bannerjs.php? (easylistchina+easylist.txt: 13678) -/(.*/)?bannerjs\.php\? -# /bannerinc. (easylistchina+easylist.txt: 13677) -/(.*/)?bannerinc\. -bannerinc.*. -# /bannerframeopenads_ (easylistchina+easylist.txt: 13676) -/(.*/)?bannerframeopenads_ -# /bannerframeopenads. (easylistchina+easylist.txt: 13675) -/(.*/)?bannerframeopenads\. -bannerframeopenads.*. -# /bannerframe.*? (easylistchina+easylist.txt: 13674) -/(.*/)?bannerframe\..*\? -bannerframe.*./.*\? -# /bannerfile/ad_ (easylistchina+easylist.txt: 13673) -/(.*/)?bannerfile/ad_ -# /bannerfarm/* (easylistchina+easylist.txt: 13672) -/(.*/)?bannerfarm/.* -# /bannerfarm. (easylistchina+easylist.txt: 13671) -/(.*/)?bannerfarm\. -bannerfarm.*. -# /bannerexchange/* (easylistchina+easylist.txt: 13670) -/(.*/)?bannerexchange/.* -# /bannerdeliver.php (easylistchina+easylist.txt: 13669) -/(.*/)?bannerdeliver\.php -bannerdeliver.php*. -# /bannerconduit. (easylistchina+easylist.txt: 13668) -/(.*/)?bannerconduit\. -bannerconduit.*. -# /bannercode.php (easylistchina+easylist.txt: 13667) -/(.*/)?bannercode\.php -bannercode.php*. -# /banneradviva. (easylistchina+easylist.txt: 13666) -/(.*/)?banneradviva\. -banneradviva.*. -# /banneradverts/* (easylistchina+easylist.txt: 13665) -/(.*/)?banneradverts/.* -# /banneradsgenerator. (easylistchina+easylist.txt: 13664) -/(.*/)?banneradsgenerator\. -banneradsgenerator.*. -# /banneradsajax. (easylistchina+easylist.txt: 13663) -/(.*/)?banneradsajax\. -banneradsajax.*. -# /bannerads/* (easylistchina+easylist.txt: 13662) -/(.*/)?bannerads/.* -# /bannerads. (easylistchina+easylist.txt: 13661) -/(.*/)?bannerads\. -bannerads.*. -# /bannerads- (easylistchina+easylist.txt: 13660) -/(.*/)?bannerads- -bannerads-*. -# /bannerad_ (easylistchina+easylist.txt: 13659) -/(.*/)?bannerad_ -# /bannerad6. (easylistchina+easylist.txt: 13658) -/(.*/)?bannerad6\. -bannerad6.*. -# /bannerad3. (easylistchina+easylist.txt: 13657) -/(.*/)?bannerad3\. -bannerad3.*. -# /bannerad2- (easylistchina+easylist.txt: 13656) -/(.*/)?bannerad2- -bannerad2-*. -# /bannerad1- (easylistchina+easylist.txt: 13655) -/(.*/)?bannerad1- -bannerad1-*. -# /bannerad/* (easylistchina+easylist.txt: 13654) -/(.*/)?bannerad/.* -# /bannerad. (easylistchina+easylist.txt: 13653) -/(.*/)?bannerad\. -bannerad.*. -# /banner_zedo/* (easylistchina+easylist.txt: 13652) -/(.*/)?banner_zedo/.* -# /banner_zanox/* (easylistchina+easylist.txt: 13651) -/(.*/)?banner_zanox/.* -# /banner_view. (easylistchina+easylist.txt: 13650) -/(.*/)?banner_view\. -# /banner_skyscraper. (easylistchina+easylist.txt: 13649) -/(.*/)?banner_skyscraper\. -# /banner_OAS.js (easylistchina+easylist.txt: 13648) -/(.*/)?banner_OAS\.js -# /banner_js.*? (easylistchina+easylist.txt: 13647) -/(.*/)?banner_js\..*\? -# /banner_image.php? (easylistchina+easylist.txt: 13646) -/(.*/)?banner_image\.php\? -# /banner_iframe_ (easylistchina+easylist.txt: 13645) -/(.*/)?banner_iframe_ -# /banner_file.php? (easylistchina+easylist.txt: 13644) -/(.*/)?banner_file\.php\? -# /banner_db.php? (easylistchina+easylist.txt: 13643) -/(.*/)?banner_db\.php\? -# /banner_control.php? (easylistchina+easylist.txt: 13642) -/(.*/)?banner_control\.php\? -# /banner_adv/* (easylistchina+easylist.txt: 13641) -/(.*/)?banner_adv/.* -# /banner_ads_ (easylistchina+easylist.txt: 13640) -/(.*/)?banner_ads_ -# /banner_ads/* (easylistchina+easylist.txt: 13639) -/(.*/)?banner_ads/.* -# /banner_ads. (easylistchina+easylist.txt: 13638) -/(.*/)?banner_ads\. -# /banner_ad_ (easylistchina+easylist.txt: 13637) -/(.*/)?banner_ad_ -# /banner_ad. (easylistchina+easylist.txt: 13636) -/(.*/)?banner_ad\. -# /banner_468x (easylistchina+easylist.txt: 13635) -/(.*/)?banner_468x -# /banner_468. (easylistchina+easylist.txt: 13634) -/(.*/)?banner_468\. -# /banner_125x (easylistchina+easylist.txt: 13633) -/(.*/)?banner_125x -# /banner728x90_ (easylistchina+easylist.txt: 13632) -/(.*/)?banner728x90_ -# /banner468x80. (easylistchina+easylist.txt: 13631) -/(.*/)?banner468x80\. -banner468x80.*. -# /banner468x60. (easylistchina+easylist.txt: 13630) -/(.*/)?banner468x60\. -banner468x60.*. -# /banner468a. (easylistchina+easylist.txt: 13629) -/(.*/)?banner468a\. -banner468a.*. -# /banner468_ (easylistchina+easylist.txt: 13628) -/(.*/)?banner468_ -# /banner468. (easylistchina+easylist.txt: 13627) -/(.*/)?banner468\. -banner468.*. -# /banner460x80. (easylistchina+easylist.txt: 13626) -/(.*/)?banner460x80\. -banner460x80.*. -# /banner20468x60. (easylistchina+easylist.txt: 13625) -/(.*/)?banner20468x60\. -banner20468x60.*. -# /banner160x600- (easylistchina+easylist.txt: 13624) -/(.*/)?banner160x600- -banner160x600-*. -# /banner/virtuagirl (easylistchina+easylist.txt: 13623) -/(.*/)?banner/virtuagirl -# /banner/sponsor_ (easylistchina+easylist.txt: 13622) -/(.*/)?banner/sponsor_ -# /banner/rtads/* (easylistchina+easylist.txt: 13621) -/(.*/)?banner/rtads/.* -# /banner/affiliate/* (easylistchina+easylist.txt: 13620) -/(.*/)?banner/affiliate/.* -# /banner/adv_ (easylistchina+easylist.txt: 13619) -/(.*/)?banner/adv_ -# /banner/adv/* (easylistchina+easylist.txt: 13618) -/(.*/)?banner/adv/.* -# /banner/ad_ (easylistchina+easylist.txt: 13617) -/(.*/)?banner/ad_ -# /banner/ad/* (easylistchina+easylist.txt: 13616) -/(.*/)?banner/ad/.* -# /banner/ad. (easylistchina+easylist.txt: 13615) -/(.*/)?banner/ad\. -# /banner/700 (easylistchina+easylist.txt: 13614) -/(.*/)?banner/700 -# /banner/468 (easylistchina+easylist.txt: 13613) -/(.*/)?banner/468 -# /banner.ws? (easylistchina+easylist.txt: 13612) -/(.*/)?banner\.ws\? -# /banner.php (easylistchina+easylist.txt: 13611) -/(.*/)?banner\.php -banner.php*. -# /banner.htm? (easylistchina+easylist.txt: 13610) -/(.*/)?banner\.htm\? -# /banner.gif? (easylistchina+easylist.txt: 13609) -/(.*/)?banner\.gif\? -# /banner.cgi? (easylistchina+easylist.txt: 13608) -/(.*/)?banner\.cgi\? -# /banner.ca? (easylistchina+easylist.txt: 13607) -/(.*/)?banner\.ca\? -# /banner.asp?$third-party (easylistchina+easylist.txt: 13606) -/(.*/)?banner\.asp\? -# /banner-ads/* (easylistchina+easylist.txt: 13605) -/(.*/)?banner-ads/.* -# /banner-ad_ (easylistchina+easylist.txt: 13604) -/(.*/)?banner-ad_ -# /banner-ad/* (easylistchina+easylist.txt: 13603) -/(.*/)?banner-ad/.* -# /banner-ad. (easylistchina+easylist.txt: 13602) -/(.*/)?banner-ad\. -banner-ad.*. -# /banner-ad- (easylistchina+easylist.txt: 13601) -/(.*/)?banner-ad- -banner-ad-*. -# /Banner-300x250. (easylistchina+easylist.txt: 13600) -/(.*/)?Banner-300x250\. -Banner-300x250.*. -# /banmanpro/* (easylistchina+easylist.txt: 13599) -/(.*/)?banmanpro/.* -# /banman/* (easylistchina+easylist.txt: 13598) -/(.*/)?banman/.* -# /banman.asp? (easylistchina+easylist.txt: 13597) -/(.*/)?banman\.asp\? -# /banimpress. (easylistchina+easylist.txt: 13596) -/(.*/)?banimpress\. -banimpress.*. -# /ban_m.php? (easylistchina+easylist.txt: 13595) -/(.*/)?ban_m\.php\? -# /ban_ad. (easylistchina+easylist.txt: 13594) -/(.*/)?ban_ad\. -# /ban728x90. (easylistchina+easylist.txt: 13593) -/(.*/)?ban728x90\. -ban728x90.*. -# /ban728.php (easylistchina+easylist.txt: 13592) -/(.*/)?ban728\.php -ban728.php*. -# /ban728.html (easylistchina+easylist.txt: 13591) -/(.*/)?ban728\.html -ban728.html*. -# /ban300.php (easylistchina+easylist.txt: 13590) -/(.*/)?ban300\.php -ban300.php*. -# /ban300.html (easylistchina+easylist.txt: 13589) -/(.*/)?ban300\.html -ban300.html*. -# /ban160.php (easylistchina+easylist.txt: 13588) -/(.*/)?ban160\.php -ban160.php*. -# /ban.php? (easylistchina+easylist.txt: 13587) -/(.*/)?ban\.php\? -# /badge_ad_ (easylistchina+easylist.txt: 13586) -/(.*/)?badge_ad_ -# /backlinxxx/js/* (easylistchina+easylist.txt: 13585) -/(.*/)?backlinxxx/js/.* -# /backgroundAdvertising. (easylistchina+easylist.txt: 13584) -/(.*/)?backgroundAdvertising\. -backgroundAdvertising.*. -# /BackgroundAd40. (easylistchina+easylist.txt: 13583) -/(.*/)?BackgroundAd40\. -BackgroundAd40.*. -# /background_ad_ (easylistchina+easylist.txt: 13582) -/(.*/)?background_ad_ -# /back-ad. (easylistchina+easylist.txt: 13581) -/(.*/)?back-ad\. -back-ad.*. -# /b.ads. (easylistchina+easylist.txt: 13580) -/(.*/)?b\.ads\. -b.ads.*. -# /awepop. (easylistchina+easylist.txt: 13579) -/(.*/)?awepop\. -awepop.*. -# /awempire. (easylistchina+easylist.txt: 13578) -/(.*/)?awempire\. -awempire.*. -# /awe2.js (easylistchina+easylist.txt: 13577) -/(.*/)?awe2\.js -awe2.js*. -# /auto_ad_ (easylistchina+easylist.txt: 13576) -/(.*/)?auto_ad_ -# /austria_ad. (easylistchina+easylist.txt: 13575) -/(.*/)?austria_ad\. -# /auditudebanners. (easylistchina+easylist.txt: 13574) -/(.*/)?auditudebanners\. -auditudebanners.*. -# /auditudeadunit. (easylistchina+easylist.txt: 13573) -/(.*/)?auditudeadunit\. -auditudeadunit.*. -# /audioads/* (easylistchina+easylist.txt: 13572) -/(.*/)?audioads/.* -# /audio-ads/* (easylistchina+easylist.txt: 13571) -/(.*/)?audio-ads/.* -# /au2m8_preloader/* (easylistchina+easylist.txt: 13570) -/(.*/)?au2m8_preloader/.* -# /AttractiveAdsCube. (easylistchina+easylist.txt: 13569) -/(.*/)?AttractiveAdsCube\. -AttractiveAdsCube.*. -# /AttractiveAds_ (easylistchina+easylist.txt: 13568) -/(.*/)?AttractiveAds_ -# /AttractiveAds/* (easylistchina+easylist.txt: 13567) -/(.*/)?AttractiveAds/.* -# /atrads. (easylistchina+easylist.txt: 13566) -/(.*/)?atrads\. -atrads.*. -# /atnads/* (easylistchina+easylist.txt: 13565) -/(.*/)?atnads/.* -# /athena/tag/? (easylistchina+easylist.txt: 13564) -/(.*/)?athena/tag/\? -# /asyncspc. (easylistchina+easylist.txt: 13563) -/(.*/)?asyncspc\. -asyncspc.*. -# /asyncadload. (easylistchina+easylist.txt: 13561) -/(.*/)?asyncadload\. -asyncadload.*. -# /ast/ads/* (easylistchina+easylist.txt: 13560) -/(.*/)?ast/ads/.* -# /assets/sponsored/* (easylistchina+easylist.txt: 13559) -/(.*/)?assets/sponsored/.* -# /assets/doubleclick/* (easylistchina+easylist.txt: 13558) -/(.*/)?assets/doubleclick/.* -# /assets/adv/* (easylistchina+easylist.txt: 13557) -/(.*/)?assets/adv/.* -# /assets/ads_ (easylistchina+easylist.txt: 13556) -/(.*/)?assets/ads_ -# /assets/ads/* (easylistchina+easylist.txt: 13555) -/(.*/)?assets/ads/.* -# /assets/ads- (easylistchina+easylist.txt: 13554) -/(.*/)?assets/ads- -# /assets/ad/* (easylistchina+easylist.txt: 13553) -/(.*/)?assets/ad/.* -# /assets/ad- (easylistchina+easylist.txt: 13552) -/(.*/)?assets/ad- -# /asset/adv/* (easylistchina+easylist.txt: 13551) -/(.*/)?asset/adv/.* -# /asset/ad/* (easylistchina+easylist.txt: 13550) -/(.*/)?asset/ad/.* -# /aspbanner_inc.asp? (easylistchina+easylist.txt: 13549) -/(.*/)?aspbanner_inc\.asp\? -# /aseadnshow. (easylistchina+easylist.txt: 13548) -/(.*/)?aseadnshow\. -aseadnshow.*. -# /as_u/ads/* (easylistchina+easylist.txt: 13547) -/(.*/)?as_u/ads/.* -# /as3overstreamplatformadapter. (easylistchina+easylist.txt: 13546) -/(.*/)?as3overstreamplatformadapter\. -as3overstreamplatformadapter.*. -# /as/gb?stid= (easylistchina+easylist.txt: 13545) -/(.*/)?as/gb\?stid= -# /as/gb2?stid= (easylistchina+easylist.txt: 13544) -/(.*/)?as/gb2\?stid= -# /artimediatargetads. (easylistchina+easylist.txt: 13543) -/(.*/)?artimediatargetads\. -artimediatargetads.*. -# /articleSponsorDeriv_ (easylistchina+easylist.txt: 13542) -/(.*/)?articleSponsorDeriv_ -# /article_ad. (easylistchina+easylist.txt: 13541) -/(.*/)?article_ad\. -# /Article-Ad- (easylistchina+easylist.txt: 13540) -/(.*/)?Article-Ad- -Article-Ad-*. -# /aptads/* (easylistchina+easylist.txt: 13539) -/(.*/)?aptads/.* -# /app/ads/* (easylistchina+easylist.txt: 13538) -/(.*/)?app/ads/.* -# /app/ads. (easylistchina+easylist.txt: 13537) -/(.*/)?app/ads\. -# /app.ads. (easylistchina+easylist.txt: 13536) -/(.*/)?app\.ads\. -app.ads.*. -# /app.ads- (easylistchina+easylist.txt: 13535) -/(.*/)?app\.ads- -app.ads-*. -# /apopwin. (easylistchina+easylist.txt: 13534) -/(.*/)?apopwin\. -apopwin.*. -# /api/ads/* (easylistchina+easylist.txt: 13533) -/(.*/)?api/ads/.* -# /api/ad/* (easylistchina+easylist.txt: 13532) -/(.*/)?api/ad/.* -# /api.ad. (easylistchina+easylist.txt: 13531) -/(.*/)?api\.ad\. -api.ad.*. -# /anyad.js (easylistchina+easylist.txt: 13530) -/(.*/)?anyad\.js -anyad.js*. -# /announce/adv/* (easylistchina+easylist.txt: 13529) -/(.*/)?announce/adv/.* -# /annonser/* (easylistchina+easylist.txt: 13528) -/(.*/)?annonser/.* -# /annonser. (easylistchina+easylist.txt: 13527) -/(.*/)?annonser\. -annonser.*. -# /annonse/* (easylistchina+easylist.txt: 13526) -/(.*/)?annonse/.* -# /anchorad. (easylistchina+easylist.txt: 13524) -/(.*/)?anchorad\. -anchorad.*. -# /amzn_omakase. (easylistchina+easylist.txt: 13523) -/(.*/)?amzn_omakase\. -# /amzn_ads. (easylistchina+easylist.txt: 13522) -/(.*/)?amzn_ads\. -# /amazon/widget/* (easylistchina+easylist.txt: 13521) -/(.*/)?amazon/widget/.* -# /amazon/iframeproxy- (easylistchina+easylist.txt: 13520) -/(.*/)?amazon/iframeproxy- -# /am/ads. (easylistchina+easylist.txt: 13519) -/(.*/)?am/ads\. -# /alwebad_ (easylistchina+easylist.txt: 13518) -/(.*/)?alwebad_ -# /alternet.ad? (easylistchina+easylist.txt: 13517) -/(.*/)?alternet\.ad\? -# /all_ads/* (easylistchina+easylist.txt: 13516) -/(.*/)?all_ads/.* -# /all/ad/* (easylistchina+easylist.txt: 13515) -/(.*/)?all/ad/.* -# /ak/ads/* (easylistchina+easylist.txt: 13514) -/(.*/)?ak/ads/.* -# /ak-ads- (easylistchina+easylist.txt: 13513) -/(.*/)?ak-ads- -ak-ads-*. -# /ajs?auid= (easylistchina+easylist.txt: 13512) -/(.*/)?ajs\?auid= -# /ajs.php? (easylistchina+easylist.txt: 13511) -/(.*/)?ajs\.php\? -# /ajrotator/* (easylistchina+easylist.txt: 13510) -/(.*/)?ajrotator/.* -# /ajaxads. (easylistchina+easylist.txt: 13509) -/(.*/)?ajaxads\. -ajaxads.*. -# /ajaxAd? (easylistchina+easylist.txt: 13508) -/(.*/)?ajaxAd\? -# /ajax/ads/* (easylistchina+easylist.txt: 13507) -/(.*/)?ajax/ads/.* -# /ajax/ad/* (easylistchina+easylist.txt: 13506) -/(.*/)?ajax/ad/.* -# /ajax-advert. (easylistchina+easylist.txt: 13505) -/(.*/)?ajax-advert\. -ajax-advert.*. -# /ajax-advert- (easylistchina+easylist.txt: 13504) -/(.*/)?ajax-advert- -ajax-advert-*. -# /ajax-ad/* (easylistchina+easylist.txt: 13503) -/(.*/)?ajax-ad/.* -# /ahmestatic/ads/* (easylistchina+easylist.txt: 13502) -/(.*/)?ahmestatic/ads/.* -# /afr?auid= (easylistchina+easylist.txt: 13501) -/(.*/)?afr\?auid= -# /afr.php? (easylistchina+easylist.txt: 13500) -/(.*/)?afr\.php\? -# /affpic/* (easylistchina+easylist.txt: 13499) -/(.*/)?affpic/.* -# /affliate-banners/* (easylistchina+easylist.txt: 13498) -/(.*/)?affliate-banners/.* -# /affimg/* (easylistchina+easylist.txt: 13497) -/(.*/)?affimg/.* -# /affimages/* (easylistchina+easylist.txt: 13496) -/(.*/)?affimages/.* -# /affilitebanners/* (easylistchina+easylist.txt: 13495) -/(.*/)?affilitebanners/.* -# /affilinet/* (easylistchina+easylist.txt: 13494) -/(.*/)?affilinet/.* -# /affiliationcash. (easylistchina+easylist.txt: 13493) -/(.*/)?affiliationcash\. -affiliationcash.*. -# /affiliation/* (easylistchina+easylist.txt: 13492) -/(.*/)?affiliation/.* -# /affiliatewiz/* (easylistchina+easylist.txt: 13491) -/(.*/)?affiliatewiz/.* -# /affiliatetags/* (easylistchina+easylist.txt: 13490) -/(.*/)?affiliatetags/.* -# /affiliateserver. (easylistchina+easylist.txt: 13489) -/(.*/)?affiliateserver\. -affiliateserver.*. -# /affiliates/contextual. (easylistchina+easylist.txt: 13488) -/(.*/)?affiliates/contextual\. -# /affiliates/ban (easylistchina+easylist.txt: 13487) -/(.*/)?affiliates/ban -# /affiliates/*/show_banner. (easylistchina+easylist.txt: 13486) -/(.*/)?affiliates/.*/show_banner\. -# /affiliates.*.aspx? (easylistchina+easylist.txt: 13485) -/(.*/)?affiliates\..*\.aspx\? -affiliates.*./.*\.aspx\? -# /affiliateimages/* (easylistchina+easylist.txt: 13484) -/(.*/)?affiliateimages/.* -# /affiliatebanners/* (easylistchina+easylist.txt: 13483) -/(.*/)?affiliatebanners/.* -# /affiliatebanner/* (easylistchina+easylist.txt: 13482) -/(.*/)?affiliatebanner/.* -# /affiliateadvertisement. (easylistchina+easylist.txt: 13481) -/(.*/)?affiliateadvertisement\. -affiliateadvertisement.*. -# /affiliateads/* (easylistchina+easylist.txt: 13480) -/(.*/)?affiliateads/.* -# /affiliate_show_iframe. (easylistchina+easylist.txt: 13479) -/(.*/)?affiliate_show_iframe\. -# /affiliate_show_banner. (easylistchina+easylist.txt: 13478) -/(.*/)?affiliate_show_banner\. -# /affiliate_resources/* (easylistchina+easylist.txt: 13477) -/(.*/)?affiliate_resources/.* -# /affiliate_base/banners/* (easylistchina+easylist.txt: 13476) -/(.*/)?affiliate_base/banners/.* -# /affiliate_banners/* (easylistchina+easylist.txt: 13475) -/(.*/)?affiliate_banners/.* -# /affiliate_banner/* (easylistchina+easylist.txt: 13474) -/(.*/)?affiliate_banner/.* -# /affiliate/small_banner/* (easylistchina+easylist.txt: 13473) -/(.*/)?affiliate/small_banner/.* -# /affiliate/script.php? (easylistchina+easylist.txt: 13472) -/(.*/)?affiliate/script\.php\? -# /affiliate/promo/* (easylistchina+easylist.txt: 13471) -/(.*/)?affiliate/promo/.* -# /affiliate/promo- (easylistchina+easylist.txt: 13470) -/(.*/)?affiliate/promo- -# /affiliate/banners/* (easylistchina+easylist.txt: 13469) -/(.*/)?affiliate/banners/.* -# /affiliate/banner/* (easylistchina+easylist.txt: 13468) -/(.*/)?affiliate/banner/.* -# /affiliate/ads/* (easylistchina+easylist.txt: 13467) -/(.*/)?affiliate/ads/.* -# /affiliate/ad/* (easylistchina+easylist.txt: 13466) -/(.*/)?affiliate/ad/.* -# /affiliate-content/* (easylistchina+easylist.txt: 13465) -/(.*/)?affiliate-content/.* -# /Affiliate-Banner- (easylistchina+easylist.txt: 13464) -/(.*/)?Affiliate-Banner- -Affiliate-Banner-*. -# /affilatebanner. (easylistchina+easylist.txt: 13463) -/(.*/)?affilatebanner\. -affilatebanner.*. -# /affclick/* (easylistchina+easylist.txt: 13462) -/(.*/)?affclick/.* -# /affbeat/banners/* (easylistchina+easylist.txt: 13461) -/(.*/)?affbeat/banners/.* -# /affbanners/* (easylistchina+easylist.txt: 13460) -/(.*/)?affbanners/.* -# /affbanner/* (easylistchina+easylist.txt: 13459) -/(.*/)?affbanner/.* -# /affads/* (easylistchina+easylist.txt: 13458) -/(.*/)?affads/.* -# /affad? (easylistchina+easylist.txt: 13457) -/(.*/)?affad\? -# /aff_i?offer_id= (easylistchina+easylist.txt: 13456) -/(.*/)?aff_i\?offer_id= -# /aff_frame. (easylistchina+easylist.txt: 13455) -/(.*/)?aff_frame\. -# /aff_banners/* (easylistchina+easylist.txt: 13454) -/(.*/)?aff_banners/.* -# /aff_ad? (easylistchina+easylist.txt: 13453) -/(.*/)?aff_ad\? -# /aff/images/* (easylistchina+easylist.txt: 13452) -/(.*/)?aff/images/.* -# /aff/ads_ (easylistchina+easylist.txt: 13451) -/(.*/)?aff/ads_ -# /aff.htm (easylistchina+easylist.txt: 13450) -/(.*/)?aff\.htm -aff.htm*. -# /aff-exchange/* (easylistchina+easylist.txt: 13449) -/(.*/)?aff-exchange/.* -# /afdsafads/* (easylistchina+easylist.txt: 13448) -/(.*/)?afdsafads/.* -# /afcsearchads. (easylistchina+easylist.txt: 13447) -/(.*/)?afcsearchads\. -afcsearchads.*. -# /afcads. (easylistchina+easylist.txt: 13446) -/(.*/)?afcads\. -afcads.*. -# /afc-match?q= (easylistchina+easylist.txt: 13445) -/(.*/)?afc-match\?q= -# /adztop. (easylistchina+easylist.txt: 13444) -/(.*/)?adztop\. -adztop.*. -# /adzonetop. (easylistchina+easylist.txt: 13443) -/(.*/)?adzonetop\. -adzonetop.*. -# /adzonesidead. (easylistchina+easylist.txt: 13442) -/(.*/)?adzonesidead\. -adzonesidead.*. -# /adzones/* (easylistchina+easylist.txt: 13441) -/(.*/)?adzones/.* -# /adzoneright. (easylistchina+easylist.txt: 13440) -/(.*/)?adzoneright\. -adzoneright.*. -# /adzoneplayerright. (easylistchina+easylist.txt: 13439) -/(.*/)?adzoneplayerright\. -adzoneplayerright.*. -# /adzonelegend. (easylistchina+easylist.txt: 13438) -/(.*/)?adzonelegend\. -adzonelegend.*. -# /adzoneleft. (easylistchina+easylist.txt: 13437) -/(.*/)?adzoneleft\. -adzoneleft.*. -# /adzonecenteradhomepage. (easylistchina+easylist.txt: 13436) -/(.*/)?adzonecenteradhomepage\. -adzonecenteradhomepage.*. -# /adzonebottom. (easylistchina+easylist.txt: 13435) -/(.*/)?adzonebottom\. -adzonebottom.*. -# /adzonebelowplayer. (easylistchina+easylist.txt: 13434) -/(.*/)?adzonebelowplayer\. -adzonebelowplayer.*. -# /AdZoneAdXp. (easylistchina+easylist.txt: 13433) -/(.*/)?AdZoneAdXp\. -AdZoneAdXp.*. -# /adzone_ (easylistchina+easylist.txt: 13432) -/(.*/)?adzone_ -# /adzone4. (easylistchina+easylist.txt: 13431) -/(.*/)?adzone4\. -adzone4.*. -# /adzone/* (easylistchina+easylist.txt: 13430) -/(.*/)?adzone/.* -# /adzone. (easylistchina+easylist.txt: 13429) -/(.*/)?adzone\. -adzone.*. -# /adzilla/* (easylistchina+easylist.txt: 13428) -/(.*/)?adzilla/.* -# /adzerk2_ (easylistchina+easylist.txt: 13427) -/(.*/)?adzerk2_ -# /adzbotm. (easylistchina+easylist.txt: 13426) -/(.*/)?adzbotm\. -adzbotm.*. -# /adyea. (easylistchina+easylist.txt: 13425) -/(.*/)?adyea\. -adyea.*. -# /adyard300. (easylistchina+easylist.txt: 13424) -/(.*/)?adyard300\. -adyard300.*. -# /adyard. (easylistchina+easylist.txt: 13423) -/(.*/)?adyard\. -adyard.*. -# /adxx.php? (easylistchina+easylist.txt: 13422) -/(.*/)?adxx\.php\? -# /adxsite. (easylistchina+easylist.txt: 13421) -/(.*/)?adxsite\. -adxsite.*. -# /adx_iframe_ (easylistchina+easylist.txt: 13420) -/(.*/)?adx_iframe_ -# /adx_flash. (easylistchina+easylist.txt: 13419) -/(.*/)?adx_flash\. -# /adx_exo_ (easylistchina+easylist.txt: 13418) -/(.*/)?adx_exo_ -# /adx2. (easylistchina+easylist.txt: 13417) -/(.*/)?adx2\. -adx2.*. -# /adx160. (easylistchina+easylist.txt: 13416) -/(.*/)?adx160\. -adx160.*. -# /adx/ads? (easylistchina+easylist.txt: 13415) -/(.*/)?adx/ads\? -# /adwriter2. (easylistchina+easylist.txt: 13413) -/(.*/)?adwriter2\. -adwriter2.*. -# /adwrapperiframe. (easylistchina+easylist.txt: 13412) -/(.*/)?adwrapperiframe\. -adwrapperiframe.*. -# /adwrapper/* (easylistchina+easylist.txt: 13411) -/(.*/)?adwrapper/.* -# /adworx_ (easylistchina+easylist.txt: 13410) -/(.*/)?adworx_ -# /adworx. (easylistchina+easylist.txt: 13409) -/(.*/)?adworx\. -adworx.*. -# /adworldmedia/* (easylistchina+easylist.txt: 13408) -/(.*/)?adworldmedia/.* -# /adworks/* (easylistchina+easylist.txt: 13407) -/(.*/)?adworks/.* -# /adWorking/* (easylistchina+easylist.txt: 13405) -/(.*/)?adWorking/.* -# /adwordstracking.js (easylistchina+easylist.txt: 13404) -/(.*/)?adwordstracking\.js -adwordstracking.js*. -# /adwords/* (easylistchina+easylist.txt: 13403) -/(.*/)?adwords/.* -# /adwolf. (easylistchina+easylist.txt: 13401) -/(.*/)?adwolf\. -adwolf.*. -# /adwizard_ (easylistchina+easylist.txt: 13400) -/(.*/)?adwizard_ -# /adwizard. (easylistchina+easylist.txt: 13399) -/(.*/)?adwizard\. -adwizard.*. -# /adwiz/* (easylistchina+easylist.txt: 13398) -/(.*/)?adwiz/.* -# /adwiz. (easylistchina+easylist.txt: 13397) -/(.*/)?adwiz\. -adwiz.*. -# /adWiseShopPlus1. (easylistchina+easylist.txt: 13396) -/(.*/)?adWiseShopPlus1\. -adWiseShopPlus1.*. -# /adwise/* (easylistchina+easylist.txt: 13395) -/(.*/)?adwise/.* -# /adwidgets/* (easylistchina+easylist.txt: 13394) -/(.*/)?adwidgets/.* -# /adwidget/* (easylistchina+easylist.txt: 13393) -/(.*/)?adwidget/.* -# /adweb33. (easylistchina+easylist.txt: 13392) -/(.*/)?adweb33\. -adweb33.*. -# /adweb2. (easylistchina+easylist.txt: 13391) -/(.*/)?adweb2\. -adweb2.*. -# /adweb. (easylistchina+easylist.txt: 13390) -/(.*/)?adweb\. -adweb.*. -# /adw2.shtml (easylistchina+easylist.txt: 13389) -/(.*/)?adw2\.shtml -adw2.shtml*. -# /adw.shtml (easylistchina+easylist.txt: 13388) -/(.*/)?adw\.shtml -adw.shtml*. -# /advzones/* (easylistchina+easylist.txt: 13387) -/(.*/)?advzones/.* -# /AdvWindow/* (easylistchina+easylist.txt: 13386) -/(.*/)?AdvWindow/.* -# /advweb. (easylistchina+easylist.txt: 13385) -/(.*/)?advweb\. -advweb.*. -# /advtemplate_ (easylistchina+easylist.txt: 13384) -/(.*/)?advtemplate_ -# /advtemplate/* (easylistchina+easylist.txt: 13383) -/(.*/)?advtemplate/.* -# /advtarget/* (easylistchina+easylist.txt: 13382) -/(.*/)?advtarget/.* -# /advt2. (easylistchina+easylist.txt: 13381) -/(.*/)?advt2\. -advt2.*. -# /advt/* (easylistchina+easylist.txt: 13380) -/(.*/)?advt/.* -# /advt. (easylistchina+easylist.txt: 13379) -/(.*/)?advt\. -advt.*. -# /advshow. (easylistchina+easylist.txt: 13378) -/(.*/)?advshow\. -advshow.*. -# /advscripts/* (easylistchina+easylist.txt: 13377) -/(.*/)?advscripts/.* -# /advscript. (easylistchina+easylist.txt: 13376) -/(.*/)?advscript\. -advscript.*. -# /advs/* (easylistchina+easylist.txt: 13375) -/(.*/)?advs/.* -# /advs.ads. (easylistchina+easylist.txt: 13374) -/(.*/)?advs\.ads\. -advs.ads.*. -# /advrotator. (easylistchina+easylist.txt: 13373) -/(.*/)?advrotator\. -advrotator.*. -# /advris/* (easylistchina+easylist.txt: 13372) -/(.*/)?advris/.* -# /advpreload. (easylistchina+easylist.txt: 13371) -/(.*/)?advpreload\. -advpreload.*. -# /advPop. (easylistchina+easylist.txt: 13370) -/(.*/)?advPop\. -advPop.*. -# /advpartnerinit. (easylistchina+easylist.txt: 13369) -/(.*/)?advpartnerinit\. -advpartnerinit.*. -# /advolatility. (easylistchina+easylist.txt: 13368) -/(.*/)?advolatility\. -advolatility.*. -# /advloader. (easylistchina+easylist.txt: 13367) -/(.*/)?advloader\. -advloader.*. -# /advlink300. (easylistchina+easylist.txt: 13366) -/(.*/)?advlink300\. -advlink300.*. -# /adVisit. (easylistchina+easylist.txt: 13365) -/(.*/)?adVisit\. -adVisit.*. -# /advision. (easylistchina+easylist.txt: 13364) -/(.*/)?advision\. -advision.*. -# /advinfo. (easylistchina+easylist.txt: 13363) -/(.*/)?advinfo\. -advinfo.*. -# /adviframe/* (easylistchina+easylist.txt: 13362) -/(.*/)?adviframe/.* -# /adviewer. (easylistchina+easylist.txt: 13361) -/(.*/)?adviewer\. -adviewer.*. -# /adviewed. (easylistchina+easylist.txt: 13360) -/(.*/)?adviewed\. -adviewed.*. -# /adviewas3. (easylistchina+easylist.txt: 13359) -/(.*/)?adviewas3\. -adviewas3.*. -# /adview_ (easylistchina+easylist.txt: 13358) -/(.*/)?adview_ -# /adview? (easylistchina+easylist.txt: 13357) -/(.*/)?adview\? -# /adview/* (easylistchina+easylist.txt: 13356) -/(.*/)?adview/.* -# /adview. (easylistchina+easylist.txt: 13355) -/(.*/)?adview\. -adview.*. -# /advice-ads. (easylistchina+easylist.txt: 13354) -/(.*/)?advice-ads\. -advice-ads.*. -# /advhd. (easylistchina+easylist.txt: 13353) -/(.*/)?advhd\. -advhd.*. -# /advfiles/* (easylistchina+easylist.txt: 13352) -/(.*/)?advfiles/.* -# /advf1. (easylistchina+easylist.txt: 13351) -/(.*/)?advf1\. -advf1.*. -# /advertwebapp. (easylistchina+easylist.txt: 13350) -/(.*/)?advertwebapp\. -advertwebapp.*. -# /advertverticallong. (easylistchina+easylist.txt: 13349) -/(.*/)?advertverticallong\. -advertverticallong.*. -# /adverttop. (easylistchina+easylist.txt: 13348) -/(.*/)?adverttop\. -adverttop.*. -# /advertstub. (easylistchina+easylist.txt: 13347) -/(.*/)?advertstub\. -advertstub.*. -# /advertsquare. (easylistchina+easylist.txt: 13346) -/(.*/)?advertsquare\. -advertsquare.*. -# /advertsky. (easylistchina+easylist.txt: 13345) -/(.*/)?advertsky\. -advertsky.*. -# /advertserve. (easylistchina+easylist.txt: 13344) -/(.*/)?advertserve\. -advertserve.*. -# /adverts_ (easylistchina+easylist.txt: 13343) -/(.*/)?adverts_ -# /adverts/* (easylistchina+easylist.txt: 13342) -/(.*/)?adverts/.* -# /adverts. (easylistchina+easylist.txt: 13341) -/(.*/)?adverts\. -adverts.*. -# /advertright. (easylistchina+easylist.txt: 13340) -/(.*/)?advertright\. -advertright.*. -# /advertrail. (easylistchina+easylist.txt: 13339) -/(.*/)?advertrail\. -advertrail.*. -# /advertpro/* (easylistchina+easylist.txt: 13338) -/(.*/)?advertpro/.* -# /advertpixelmedia1. (easylistchina+easylist.txt: 13337) -/(.*/)?advertpixelmedia1\. -advertpixelmedia1.*. -# /advertphp/* (easylistchina+easylist.txt: 13336) -/(.*/)?advertphp/.* -# /advertorials/* (easylistchina+easylist.txt: 13335) -/(.*/)?advertorials/.* -# /advertorial_ (easylistchina+easylist.txt: 13334) -/(.*/)?advertorial_ -# /advertorial/* (easylistchina+easylist.txt: 13333) -/(.*/)?advertorial/.* -# /advertmsig. (easylistchina+easylist.txt: 13332) -/(.*/)?advertmsig\. -advertmsig.*. -# /advertmedia/* (easylistchina+easylist.txt: 13331) -/(.*/)?advertmedia/.* -# /advertlayer. (easylistchina+easylist.txt: 13330) -/(.*/)?advertlayer\. -advertlayer.*. -# /advertize_ (easylistchina+easylist.txt: 13329) -/(.*/)?advertize_ -# /advertisments/* (easylistchina+easylist.txt: 13328) -/(.*/)?advertisments/.* -# /advertisment_ (easylistchina+easylist.txt: 13327) -/(.*/)?advertisment_ -# /advertisment1- (easylistchina+easylist.txt: 13326) -/(.*/)?advertisment1- -advertisment1-*. -# /advertisment/* (easylistchina+easylist.txt: 13325) -/(.*/)?advertisment/.* -# /advertisment. (easylistchina+easylist.txt: 13324) -/(.*/)?advertisment\. -advertisment.*. -# /advertisment- (easylistchina+easylist.txt: 13323) -/(.*/)?advertisment- -advertisment-*. -# /advertisingwidgets/* (easylistchina+easylist.txt: 13322) -/(.*/)?advertisingwidgets/.* -# /advertisings. (easylistchina+easylist.txt: 13321) -/(.*/)?advertisings\. -advertisings.*. -# /advertisingmodule. (easylistchina+easylist.txt: 13320) -/(.*/)?advertisingmodule\. -advertisingmodule.*. -# /advertisingmanual. (easylistchina+easylist.txt: 13319) -/(.*/)?advertisingmanual\. -advertisingmanual.*. -# /advertisinglinks_ (easylistchina+easylist.txt: 13318) -/(.*/)?advertisinglinks_ -# /AdvertisingIsPresent6? (easylistchina+easylist.txt: 13317) -/(.*/)?AdvertisingIsPresent6\? -# /advertisingimageexte/* (easylistchina+easylist.txt: 13316) -/(.*/)?advertisingimageexte/.* -# /advertisingcontent/* (easylistchina+easylist.txt: 13315) -/(.*/)?advertisingcontent/.* -# /advertisingbutton. (easylistchina+easylist.txt: 13314) -/(.*/)?advertisingbutton\. -advertisingbutton.*. -# /advertisingbanner_ (easylistchina+easylist.txt: 13313) -/(.*/)?advertisingbanner_ -# /advertisingbanner1. (easylistchina+easylist.txt: 13312) -/(.*/)?advertisingbanner1\. -advertisingbanner1.*. -# /advertisingbanner/* (easylistchina+easylist.txt: 13311) -/(.*/)?advertisingbanner/.* -# /advertisingbanner. (easylistchina+easylist.txt: 13310) -/(.*/)?advertisingbanner\. -advertisingbanner.*. -# /advertising_ (easylistchina+easylist.txt: 13309) -/(.*/)?advertising_ -# /advertising? (easylistchina+easylist.txt: 13308) -/(.*/)?advertising\? -# /advertising300x250. (easylistchina+easylist.txt: 13307) -/(.*/)?advertising300x250\. -advertising300x250.*. -# /advertising2. (easylistchina+easylist.txt: 13306) -/(.*/)?advertising2\. -advertising2.*. -# /advertising02. (easylistchina+easylist.txt: 13305) -/(.*/)?advertising02\. -advertising02.*. -# /advertising. (easylistchina+easylist.txt: 13303) -/(.*/)?advertising\. -advertising.*. -# /advertisewithus_ (easylistchina+easylist.txt: 13301) -/(.*/)?advertisewithus_ -# /advertises/* (easylistchina+easylist.txt: 13300) -/(.*/)?advertises/.* -# /advertiserwidget. (easylistchina+easylist.txt: 13299) -/(.*/)?advertiserwidget\. -advertiserwidget.*. -# /advertisementview/* (easylistchina+easylist.txt: 13294) -/(.*/)?advertisementview/.* -# /AdvertisementShare. (easylistchina+easylist.txt: 13293) -/(.*/)?AdvertisementShare\. -AdvertisementShare.*. -# /advertisements_ (easylistchina+easylist.txt: 13292) -/(.*/)?advertisements_ -# /advertisements2. (easylistchina+easylist.txt: 13291) -/(.*/)?advertisements2\. -advertisements2.*. -# /advertisements/* (easylistchina+easylist.txt: 13290) -/(.*/)?advertisements/.* -# /advertisements. (easylistchina+easylist.txt: 13289) -/(.*/)?advertisements\. -advertisements.*. -# /advertisements- (easylistchina+easylist.txt: 13288) -/(.*/)?advertisements- -advertisements-*. -# /advertisementrotation. (easylistchina+easylist.txt: 13287) -/(.*/)?advertisementrotation\. -advertisementrotation.*. -# /advertisementmapping. (easylistchina+easylist.txt: 13286) -/(.*/)?advertisementmapping\. -advertisementmapping.*. -# /advertisementheader. (easylistchina+easylist.txt: 13285) -/(.*/)?advertisementheader\. -advertisementheader.*. -# /advertisementAPI/* (easylistchina+easylist.txt: 13284) -/(.*/)?advertisementAPI/.* -# /advertisement_ (easylistchina+easylist.txt: 13283) -/(.*/)?advertisement_ -# /advertisement3. (easylistchina+easylist.txt: 13282) -/(.*/)?advertisement3\. -advertisement3.*. -# /advertisement2. (easylistchina+easylist.txt: 13281) -/(.*/)?advertisement2\. -advertisement2.*. -# /advertisement160. (easylistchina+easylist.txt: 13280) -/(.*/)?advertisement160\. -advertisement160.*. -# /advertisement1. (easylistchina+easylist.txt: 13279) -/(.*/)?advertisement1\. -advertisement1.*. -# /advertisement/* (easylistchina+easylist.txt: 13278) -/(.*/)?advertisement/.* -# /advertisement. (easylistchina+easylist.txt: 13277) -/(.*/)?advertisement\. -advertisement.*. -# /advertisement- (easylistchina+easylist.txt: 13276) -/(.*/)?advertisement- -advertisement-*. -# /advertisehere. (easylistchina+easylist.txt: 13275) -/(.*/)?advertisehere\. -advertisehere.*. -# /advertise_ (easylistchina+easylist.txt: 13274) -/(.*/)?advertise_ -# /advertise125x125. (easylistchina+easylist.txt: 13273) -/(.*/)?advertise125x125\. -advertise125x125.*. -# /advertise/* (easylistchina+easylist.txt: 13272) -/(.*/)?advertise/.* -# /advertise- (easylistchina+easylist.txt: 13270) -/(.*/)?advertise- -advertise-*. -# /advertical. (easylistchina+easylist.txt: 13269) -/(.*/)?advertical\. -advertical.*. -# /adverthorisontalfullwidth. (easylistchina+easylist.txt: 13268) -/(.*/)?adverthorisontalfullwidth\. -adverthorisontalfullwidth.*. -# /adverth. (easylistchina+easylist.txt: 13267) -/(.*/)?adverth\. -adverth.*. -# /advertguruonline1. (easylistchina+easylist.txt: 13266) -/(.*/)?advertguruonline1\. -advertguruonline1.*. -# /advertbox. (easylistchina+easylist.txt: 13265) -/(.*/)?advertbox\. -advertbox.*. -# /advertbanner2. (easylistchina+easylist.txt: 13264) -/(.*/)?advertbanner2\. -advertbanner2.*. -# /advertbanner. (easylistchina+easylist.txt: 13263) -/(.*/)?advertbanner\. -advertbanner.*. -# /advert_ (easylistchina+easylist.txt: 13262) -/(.*/)?advert_ -# /advert? (easylistchina+easylist.txt: 13261) -/(.*/)?advert\? -# /advert6. (easylistchina+easylist.txt: 13260) -/(.*/)?advert6\. -advert6.*. -# /advert5. (easylistchina+easylist.txt: 13259) -/(.*/)?advert5\. -advert5.*. -# /advert4. (easylistchina+easylist.txt: 13258) -/(.*/)?advert4\. -advert4.*. -# /advert37. (easylistchina+easylist.txt: 13257) -/(.*/)?advert37\. -advert37.*. -# /advert36. (easylistchina+easylist.txt: 13256) -/(.*/)?advert36\. -advert36.*. -# /advert35. (easylistchina+easylist.txt: 13255) -/(.*/)?advert35\. -advert35.*. -# /advert34. (easylistchina+easylist.txt: 13254) -/(.*/)?advert34\. -advert34.*. -# /advert33. (easylistchina+easylist.txt: 13253) -/(.*/)?advert33\. -advert33.*. -# /advert32. (easylistchina+easylist.txt: 13252) -/(.*/)?advert32\. -advert32.*. -# /advert31. (easylistchina+easylist.txt: 13251) -/(.*/)?advert31\. -advert31.*. -# /advert3. (easylistchina+easylist.txt: 13250) -/(.*/)?advert3\. -advert3.*. -# /advert2. (easylistchina+easylist.txt: 13249) -/(.*/)?advert2\. -advert2.*. -# /advert1/* (easylistchina+easylist.txt: 13248) -/(.*/)?advert1/.* -# /advert1. (easylistchina+easylist.txt: 13247) -/(.*/)?advert1\. -advert1.*. -# /advert01. (easylistchina+easylist.txt: 13246) -/(.*/)?advert01\. -advert01.*. -# /advert/* (easylistchina+easylist.txt: 13245) -/(.*/)?advert/.* -# /advert. (easylistchina+easylist.txt: 13244) -/(.*/)?advert\. -advert.*. -# /advert- (easylistchina+easylist.txt: 13243) -/(.*/)?advert- -advert-*. -# /adversting? (easylistchina+easylist.txt: 13242) -/(.*/)?adversting\? -# /adversting/* (easylistchina+easylist.txt: 13241) -/(.*/)?adversting/.* -# /adverserve. (easylistchina+easylist.txt: 13240) -/(.*/)?adverserve\. -adverserve.*. -# /adverfisement2. (easylistchina+easylist.txt: 13239) -/(.*/)?adverfisement2\. -adverfisement2.*. -# /adverfisement. (easylistchina+easylist.txt: 13238) -/(.*/)?adverfisement\. -adverfisement.*. -# /adver_hor. (easylistchina+easylist.txt: 13237) -/(.*/)?adver_hor\. -# /adver. (easylistchina+easylist.txt: 13236) -/(.*/)?adver\. -adver.*. -# /adver-left. (easylistchina+easylist.txt: 13235) -/(.*/)?adver-left\. -adver-left.*. -# /advengine. (easylistchina+easylist.txt: 13234) -/(.*/)?advengine\. -advengine.*. -# /advdoc/* (easylistchina+easylist.txt: 13233) -/(.*/)?advdoc/.* -# /advdl. (easylistchina+easylist.txt: 13232) -/(.*/)?advdl\. -advdl.*. -# /advcounter. (easylistchina+easylist.txt: 13231) -/(.*/)?advcounter\. -advcounter.*. -# /advcontents. (easylistchina+easylist.txt: 13230) -/(.*/)?advcontents\. -advcontents.*. -# /advbanners/* (easylistchina+easylist.txt: 13229) -/(.*/)?advbanners/.* -# /advbanner/* (easylistchina+easylist.txt: 13228) -/(.*/)?advbanner/.* -# /advault. (easylistchina+easylist.txt: 13227) -/(.*/)?advault\. -advault.*. -# /advanced-ads- (easylistchina+easylist.txt: 13226) -/(.*/)?advanced-ads- -advanced-ads-*. -# /advaluewriter. (easylistchina+easylist.txt: 13225) -/(.*/)?advaluewriter\. -advaluewriter.*. -# /advalue_ (easylistchina+easylist.txt: 13224) -/(.*/)?advalue_ -# /advalue/* (easylistchina+easylist.txt: 13223) -/(.*/)?advalue/.* -# /adv_vertical. (easylistchina+easylist.txt: 13222) -/(.*/)?adv_vertical\. -# /adv_vert. (easylistchina+easylist.txt: 13221) -/(.*/)?adv_vert\. -# /adv_top. (easylistchina+easylist.txt: 13220) -/(.*/)?adv_top\. -# /adv_teasers. (easylistchina+easylist.txt: 13219) -/(.*/)?adv_teasers\. -# /adv_server. (easylistchina+easylist.txt: 13218) -/(.*/)?adv_server\. -# /adv_script_ (easylistchina+easylist.txt: 13217) -/(.*/)?adv_script_ -# /adv_player_ (easylistchina+easylist.txt: 13216) -/(.*/)?adv_player_ -# /adv_out. (easylistchina+easylist.txt: 13215) -/(.*/)?adv_out\. -# /adv_manager_ (easylistchina+easylist.txt: 13214) -/(.*/)?adv_manager_ -# /adv_link. (easylistchina+easylist.txt: 13213) -/(.*/)?adv_link\. -# /adv_library3. (easylistchina+easylist.txt: 13212) -/(.*/)?adv_library3\. -# /adv_left_ (easylistchina+easylist.txt: 13211) -/(.*/)?adv_left_ -# /adv_image/* (easylistchina+easylist.txt: 13210) -/(.*/)?adv_image/.* -# /adv_horiz. (easylistchina+easylist.txt: 13209) -/(.*/)?adv_horiz\. -# /adv_frame/* (easylistchina+easylist.txt: 13208) -/(.*/)?adv_frame/.* -# /adv_flash. (easylistchina+easylist.txt: 13207) -/(.*/)?adv_flash\. -# /adv_display. (easylistchina+easylist.txt: 13206) -/(.*/)?adv_display\. -# /adv_burt_ (easylistchina+easylist.txt: 13205) -/(.*/)?adv_burt_ -# /adv_box_ (easylistchina+easylist.txt: 13204) -/(.*/)?adv_box_ -# /adv_banner_ (easylistchina+easylist.txt: 13203) -/(.*/)?adv_banner_ -# /adv_background/* (easylistchina+easylist.txt: 13202) -/(.*/)?adv_background/.* -# /adv_468. (easylistchina+easylist.txt: 13201) -/(.*/)?adv_468\. -# /adv_2. (easylistchina+easylist.txt: 13200) -/(.*/)?adv_2\. -# /adv8. (easylistchina+easylist.txt: 13199) -/(.*/)?adv8\. -adv8.*. -# /adv6. (easylistchina+easylist.txt: 13198) -/(.*/)?adv6\. -adv6.*. -# /adv5. (easylistchina+easylist.txt: 13197) -/(.*/)?adv5\. -adv5.*. -# /Adv468. (easylistchina+easylist.txt: 13196) -/(.*/)?Adv468\. -Adv468.*. -# /adv4. (easylistchina+easylist.txt: 13195) -/(.*/)?adv4\. -adv4.*. -# /adv3. (easylistchina+easylist.txt: 13194) -/(.*/)?adv3\. -adv3.*. -# /adv2. (easylistchina+easylist.txt: 13193) -/(.*/)?adv2\. -adv2.*. -# /adv180x150. (easylistchina+easylist.txt: 13192) -/(.*/)?adv180x150\. -adv180x150.*. -# /Adv150. (easylistchina+easylist.txt: 13191) -/(.*/)?Adv150\. -Adv150.*. -# /adv1. (easylistchina+easylist.txt: 13190) -/(.*/)?adv1\. -adv1.*. -# /adv03. (easylistchina+easylist.txt: 13189) -/(.*/)?adv03\. -adv03.*. -# /adv02. (easylistchina+easylist.txt: 13188) -/(.*/)?adv02\. -adv02.*. -# /adv/topBanners. (easylistchina+easylist.txt: 13187) -/(.*/)?adv/topBanners\. -# /adv/sprintf- (easylistchina+easylist.txt: 13186) -/(.*/)?adv/sprintf- -# /adv/sponsor/* (easylistchina+easylist.txt: 13185) -/(.*/)?adv/sponsor/.* -# /adv/skin_ (easylistchina+easylist.txt: 13184) -/(.*/)?adv/skin_ -# /adv/skin. (easylistchina+easylist.txt: 13183) -/(.*/)?adv/skin\. -# /adv/search. (easylistchina+easylist.txt: 13182) -/(.*/)?adv/search\. -# /adv/script2. (easylistchina+easylist.txt: 13181) -/(.*/)?adv/script2\. -# /adv/script1. (easylistchina+easylist.txt: 13180) -/(.*/)?adv/script1\. -# /adv/rdb. (easylistchina+easylist.txt: 13179) -/(.*/)?adv/rdb\. -# /adv/preroll_ (easylistchina+easylist.txt: 13178) -/(.*/)?adv/preroll_ -# /adv/mobile/* (easylistchina+easylist.txt: 13177) -/(.*/)?adv/mobile/.* -# /adv/mjx. (easylistchina+easylist.txt: 13176) -/(.*/)?adv/mjx\. -# /adv/managers/* (easylistchina+easylist.txt: 13175) -/(.*/)?adv/managers/.* -# /adv/lrec_ (easylistchina+easylist.txt: 13174) -/(.*/)?adv/lrec_ -# /adv/kelkoo_ (easylistchina+easylist.txt: 13173) -/(.*/)?adv/kelkoo_ -# /adv/kelkoo/* (easylistchina+easylist.txt: 13172) -/(.*/)?adv/kelkoo/.* -# /adv/interstitial. (easylistchina+easylist.txt: 13171) -/(.*/)?adv/interstitial\. -# /adv/box- (easylistchina+easylist.txt: 13170) -/(.*/)?adv/box- -# /adv/bottomBanners. (easylistchina+easylist.txt: 13169) -/(.*/)?adv/bottomBanners\. -# /adv/banner1/* (easylistchina+easylist.txt: 13168) -/(.*/)?adv/banner1/.* -# /adv/banner/* (easylistchina+easylist.txt: 13167) -/(.*/)?adv/banner/.* -# /adv/background/* (easylistchina+easylist.txt: 13166) -/(.*/)?adv/background/.* -# /adv/adv_ (easylistchina+easylist.txt: 13165) -/(.*/)?adv/adv_ -# /adv/ads/* (easylistchina+easylist.txt: 13164) -/(.*/)?adv/ads/.* -# /adv/adriver (easylistchina+easylist.txt: 13163) -/(.*/)?adv/adriver -# /adv.png (easylistchina+easylist.txt: 13162) -/(.*/)?adv\.png -adv.png*. -# /adv.php (easylistchina+easylist.txt: 13161) -/(.*/)?adv\.php -adv.php*. -# /adv.jsp (easylistchina+easylist.txt: 13160) -/(.*/)?adv\.jsp -adv.jsp*. -# /adv.html (easylistchina+easylist.txt: 13159) -/(.*/)?adv\.html -adv.html*. -# /adv.css? (easylistchina+easylist.txt: 13158) -/(.*/)?adv\.css\? -# /adv.asp (easylistchina+easylist.txt: 13157) -/(.*/)?adv\.asp -adv.asp*. -# /adv-socialbar- (easylistchina+easylist.txt: 13156) -/(.*/)?adv-socialbar- -adv-socialbar-*. -# /adv-scroll. (easylistchina+easylist.txt: 13155) -/(.*/)?adv-scroll\. -adv-scroll.*. -# /adv-f. (easylistchina+easylist.txt: 13154) -/(.*/)?adv-f\. -adv-f.*. -# /adv-ext- (easylistchina+easylist.txt: 13153) -/(.*/)?adv-ext- -adv-ext-*. -# /adv-expand/* (easylistchina+easylist.txt: 13152) -/(.*/)?adv-expand/.* -# /adv-div- (easylistchina+easylist.txt: 13151) -/(.*/)?adv-div- -adv-div-*. -# /adv-banners/* (easylistchina+easylist.txt: 13150) -/(.*/)?adv-banners/.* -# /adv-bannerize- (easylistchina+easylist.txt: 13149) -/(.*/)?adv-bannerize- -adv-bannerize-*. -# /adv-banner. (easylistchina+easylist.txt: 13148) -/(.*/)?adv-banner\. -adv-banner.*. -# /adv-2. (easylistchina+easylist.txt: 13147) -/(.*/)?adv-2\. -adv-2.*. -# /adv-1. (easylistchina+easylist.txt: 13146) -/(.*/)?adv-1\. -adv-1.*. -# /aduxads/* (easylistchina+easylist.txt: 13145) -/(.*/)?aduxads/.* -# /aduxads. (easylistchina+easylist.txt: 13144) -/(.*/)?aduxads\. -aduxads.*. -# /adutils. (easylistchina+easylist.txt: 13143) -/(.*/)?adutils\. -adutils.*. -# /adutil. (easylistchina+easylist.txt: 13142) -/(.*/)?adutil\. -adutil.*. -# /adunix. (easylistchina+easylist.txt: 13141) -/(.*/)?adunix\. -adunix.*. -# /adunittop| (easylistchina+easylist.txt: 13140) -/(.*/)?adunittop$ -# /adunits? (easylistchina+easylist.txt: 13139) -/(.*/)?adunits\? -# /adunits/* (easylistchina+easylist.txt: 13138) -/(.*/)?adunits/.* -# /adunits. (easylistchina+easylist.txt: 13137) -/(.*/)?adunits\. -adunits.*. -# /adunit/* (easylistchina+easylist.txt: 13136) -/(.*/)?adunit/.* -# /adunit. (easylistchina+easylist.txt: 13135) -/(.*/)?adunit\. -adunit.*. -# /adultimate. (easylistchina+easylist.txt: 13134) -/(.*/)?adultimate\. -adultimate.*. -# /adultadworldpop_ (easylistchina+easylist.txt: 13133) -/(.*/)?adultadworldpop_ -# /adtype= (easylistchina+easylist.txt: 13132) -/(.*/)?adtype= -# /adtype. (easylistchina+easylist.txt: 13131) -/(.*/)?adtype\. -adtype.*. -# /adtxt. (easylistchina+easylist.txt: 13130) -/(.*/)?adtxt\. -adtxt.*. -# /adtvideo. (easylistchina+easylist.txt: 13129) -/(.*/)?adtvideo\. -adtvideo.*. -# /adttext. (easylistchina+easylist.txt: 13128) -/(.*/)?adttext\. -adttext.*. -# /adttext- (easylistchina+easylist.txt: 13127) -/(.*/)?adttext- -adttext-*. -# /adtraff. (easylistchina+easylist.txt: 13126) -/(.*/)?adtraff\. -adtraff.*. -# /adtracking/* (easylistchina+easylist.txt: 13125) -/(.*/)?adtracking/.* -# /adtracking. (easylistchina+easylist.txt: 13124) -/(.*/)?adtracking\. -adtracking.*. -# /adtracker? (easylistchina+easylist.txt: 13123) -/(.*/)?adtracker\? -# /adtracker/* (easylistchina+easylist.txt: 13122) -/(.*/)?adtracker/.* -# /adtracker. (easylistchina+easylist.txt: 13121) -/(.*/)?adtracker\. -adtracker.*. -# /adtrack/* (easylistchina+easylist.txt: 13120) -/(.*/)?adtrack/.* -# /adtrack. (easylistchina+easylist.txt: 13119) -/(.*/)?adtrack\. -adtrack.*. -# /adtopsky. (easylistchina+easylist.txt: 13118) -/(.*/)?adtopsky\. -adtopsky.*. -# /adtopright. (easylistchina+easylist.txt: 13117) -/(.*/)?adtopright\. -adtopright.*. -# /adtopmidsky. (easylistchina+easylist.txt: 13116) -/(.*/)?adtopmidsky\. -adtopmidsky.*. -# /adtopleft. (easylistchina+easylist.txt: 13115) -/(.*/)?adtopleft\. -adtopleft.*. -# /adtopcenter. (easylistchina+easylist.txt: 13114) -/(.*/)?adtopcenter\. -adtopcenter.*. -# /adtop728. (easylistchina+easylist.txt: 13113) -/(.*/)?adtop728\. -adtop728.*. -# /adtop300. (easylistchina+easylist.txt: 13112) -/(.*/)?adtop300\. -adtop300.*. -# /adtop160. (easylistchina+easylist.txt: 13111) -/(.*/)?adtop160\. -adtop160.*. -# /adtop. (easylistchina+easylist.txt: 13110) -/(.*/)?adtop\. -adtop.*. -# /adtooltip/* (easylistchina+easylist.txt: 13109) -/(.*/)?adtooltip/.* -# /adtools2. (easylistchina+easylist.txt: 13108) -/(.*/)?adtools2\. -adtools2.*. -# /adtools/* (easylistchina+easylist.txt: 13107) -/(.*/)?adtools/.* -# /adtool/* (easylistchina+easylist.txt: 13106) -/(.*/)?adtool/.* -# /adtonomy. (easylistchina+easylist.txt: 13105) -/(.*/)?adtonomy\. -adtonomy.*. -# /adtomo/* (easylistchina+easylist.txt: 13104) -/(.*/)?adtomo/.* -# /adtology. (easylistchina+easylist.txt: 13103) -/(.*/)?adtology\. -adtology.*. -# /adtitle. (easylistchina+easylist.txt: 13102) -/(.*/)?adtitle\. -adtitle.*. -# /adtimage. (easylistchina+easylist.txt: 13101) -/(.*/)?adtimage\. -adtimage.*. -# /adtextmpu2. (easylistchina+easylist.txt: 13100) -/(.*/)?adtextmpu2\. -adtextmpu2.*. -# /adtext_ (easylistchina+easylist.txt: 13099) -/(.*/)?adtext_ -# /adtext4. (easylistchina+easylist.txt: 13098) -/(.*/)?adtext4\. -adtext4.*. -# /adtext2. (easylistchina+easylist.txt: 13097) -/(.*/)?adtext2\. -adtext2.*. -# /adtext. (easylistchina+easylist.txt: 13096) -/(.*/)?adtext\. -adtext.*. -# /adtest/* (easylistchina+easylist.txt: 13095) -/(.*/)?adtest/.* -# /adtest. (easylistchina+easylist.txt: 13094) -/(.*/)?adtest\. -adtest.*. -# /adtechscript. (easylistchina+easylist.txt: 13093) -/(.*/)?adtechscript\. -adtechscript.*. -# /adtechHeader. (easylistchina+easylist.txt: 13092) -/(.*/)?adtechHeader\. -adtechHeader.*. -# /adtechglobalsettings.js (easylistchina+easylist.txt: 13091) -/(.*/)?adtechglobalsettings\.js -adtechglobalsettings.js*. -# /adtech_ (easylistchina+easylist.txt: 13090) -/(.*/)?adtech_ -# /adtech; (easylistchina+easylist.txt: 13089) -/(.*/)?adtech; -# /adtech/* (easylistchina+easylist.txt: 13088) -/(.*/)?adtech/.* -# /adtech. (easylistchina+easylist.txt: 13087) -/(.*/)?adtech\. -adtech.*. -# /adtech- (easylistchina+easylist.txt: 13086) -/(.*/)?adtech- -adtech-*. -# /adtaobao. (easylistchina+easylist.txt: 13085) -/(.*/)?adtaobao\. -adtaobao.*. -# /adtaily_ (easylistchina+easylist.txt: 13084) -/(.*/)?adtaily_ -# /adtagtranslator. (easylistchina+easylist.txt: 13083) -/(.*/)?adtagtranslator\. -adtagtranslator.*. -# /adtagtc. (easylistchina+easylist.txt: 13082) -/(.*/)?adtagtc\. -adtagtc.*. -# /adtags/* (easylistchina+easylist.txt: 13081) -/(.*/)?adtags/.* -# /adtags. (easylistchina+easylist.txt: 13080) -/(.*/)?adtags\. -adtags.*. -# /adTagRequest. (easylistchina+easylist.txt: 13079) -/(.*/)?adTagRequest\. -adTagRequest.*. -# /adtago. (easylistchina+easylist.txt: 13078) -/(.*/)?adtago\. -adtago.*. -# /adtaggingsubsec. (easylistchina+easylist.txt: 13077) -/(.*/)?adtaggingsubsec\. -adtaggingsubsec.*. -# /adtagcms. (easylistchina+easylist.txt: 13076) -/(.*/)?adtagcms\. -adtagcms.*. -# /adtag_ (easylistchina+easylist.txt: 13075) -/(.*/)?adtag_ -# /adtag? (easylistchina+easylist.txt: 13074) -/(.*/)?adtag\? -# /adtag/* (easylistchina+easylist.txt: 13073) -/(.*/)?adtag/.* -# /adtag. (easylistchina+easylist.txt: 13072) -/(.*/)?adtag\. -adtag.*. -# /adtadd1. (easylistchina+easylist.txt: 13071) -/(.*/)?adtadd1\. -adtadd1.*. -# /adtabs. (easylistchina+easylist.txt: 13070) -/(.*/)?adtabs\. -adtabs.*. -# /adtable_ (easylistchina+easylist.txt: 13069) -/(.*/)?adtable_ -# /ads~adsize~ (easylistchina+easylist.txt: 13068) -/(.*/)?ads~adsize~ -# /adsystem/* (easylistchina+easylist.txt: 13067) -/(.*/)?adsystem/.* -# /adsystem. (easylistchina+easylist.txt: 13066) -/(.*/)?adsystem\. -adsystem.*. -# /adsys/* (easylistchina+easylist.txt: 13065) -/(.*/)?adsys/.* -# /adsys. (easylistchina+easylist.txt: 13064) -/(.*/)?adsys\. -adsys.*. -# /adsyndication/* (easylistchina+easylist.txt: 13063) -/(.*/)?adsyndication/.* -# /adsyndication. (easylistchina+easylist.txt: 13062) -/(.*/)?adsyndication\. -adsyndication.*. -# /adsync/* (easylistchina+easylist.txt: 13061) -/(.*/)?adsync/.* -# /adsxml/* (easylistchina+easylist.txt: 13060) -/(.*/)?adsxml/.* -# /adsx_728. (easylistchina+easylist.txt: 13059) -/(.*/)?adsx_728\. -# /adsx728. (easylistchina+easylist.txt: 13058) -/(.*/)?adsx728\. -adsx728.*. -# /adsx/* (easylistchina+easylist.txt: 13057) -/(.*/)?adsx/.* -# /adswrapperintl. (easylistchina+easylist.txt: 13056) -/(.*/)?adswrapperintl\. -adswrapperintl.*. -# /adswrapper3. (easylistchina+easylist.txt: 13055) -/(.*/)?adswrapper3\. -adswrapper3.*. -# /adswrapper. (easylistchina+easylist.txt: 13054) -/(.*/)?adswrapper\. -adswrapper.*. -# /adsword. (easylistchina+easylist.txt: 13053) -/(.*/)?adsword\. -adsword.*. -# /adswidejs. (easylistchina+easylist.txt: 13052) -/(.*/)?adswidejs\. -adswidejs.*. -# /adswide. (easylistchina+easylist.txt: 13051) -/(.*/)?adswide\. -adswide.*. -# /adsweb. (easylistchina+easylist.txt: 13050) -/(.*/)?adsweb\. -adsweb.*. -# /adswap/* (easylistchina+easylist.txt: 13049) -/(.*/)?adswap/.* -# /adswap. (easylistchina+easylist.txt: 13048) -/(.*/)?adswap\. -adswap.*. -# /adswap- (easylistchina+easylist.txt: 13047) -/(.*/)?adswap- -adswap-*. -# /adsvr2. (easylistchina+easylist.txt: 13046) -/(.*/)?adsvr2\. -adsvr2.*. -# /adsvr. (easylistchina+easylist.txt: 13045) -/(.*/)?adsvr\. -adsvr.*. -# /adsvo. (easylistchina+easylist.txt: 13044) -/(.*/)?adsvo\. -adsvo.*. -# /adsvariables. (easylistchina+easylist.txt: 13043) -/(.*/)?adsvariables\. -adsvariables.*. -# /adsup. (easylistchina+easylist.txt: 13042) -/(.*/)?adsup\. -adsup.*. -# /adsummos2. (easylistchina+easylist.txt: 13041) -/(.*/)?adsummos2\. -adsummos2.*. -# /adsummos. (easylistchina+easylist.txt: 13040) -/(.*/)?adsummos\. -adsummos.*. -# /adstyle. (easylistchina+easylist.txt: 13039) -/(.*/)?adstyle\. -adstyle.*. -# /adstx. (easylistchina+easylist.txt: 13038) -/(.*/)?adstx\. -adstx.*. -# /adstubs/* (easylistchina+easylist.txt: 13037) -/(.*/)?adstubs/.* -# /adstube/* (easylistchina+easylist.txt: 13036) -/(.*/)?adstube/.* -# /adstub. (easylistchina+easylist.txt: 13035) -/(.*/)?adstub\. -adstub.*. -# /adstrm/* (easylistchina+easylist.txt: 13034) -/(.*/)?adstrm/.* -# /adstrk. (easylistchina+easylist.txt: 13033) -/(.*/)?adstrk\. -adstrk.*. -# /adStrip. (easylistchina+easylist.txt: 13032) -/(.*/)?adStrip\. -adStrip.*. -# /adstreamjscontroller. (easylistchina+easylist.txt: 13031) -/(.*/)?adstreamjscontroller\. -adstreamjscontroller.*. -# /adstream_ (easylistchina+easylist.txt: 13030) -/(.*/)?adstream_ -# /adstream. (easylistchina+easylist.txt: 13029) -/(.*/)?adstream\. -adstream.*. -# /adStrategies/* (easylistchina+easylist.txt: 13028) -/(.*/)?adStrategies/.* -# /adstract/* (easylistchina+easylist.txt: 13027) -/(.*/)?adstract/.* -# /adstracking. (easylistchina+easylist.txt: 13026) -/(.*/)?adstracking\. -adstracking.*. -# /adstorage. (easylistchina+easylist.txt: 13025) -/(.*/)?adstorage\. -adstorage.*. -# /adstop_ (easylistchina+easylist.txt: 13024) -/(.*/)?adstop_ -# /adstop728. (easylistchina+easylist.txt: 13023) -/(.*/)?adstop728\. -adstop728.*. -# /adstop. (easylistchina+easylist.txt: 13022) -/(.*/)?adstop\. -adstop.*. -# /adstitle. (easylistchina+easylist.txt: 13021) -/(.*/)?adstitle\. -adstitle.*. -# /adstemplate/* (easylistchina+easylist.txt: 13020) -/(.*/)?adstemplate/.* -# /adstatic/* (easylistchina+easylist.txt: 13019) -/(.*/)?adstatic/.* -# /adstatic. (easylistchina+easylist.txt: 13018) -/(.*/)?adstatic\. -adstatic.*. -# /adstakeover. (easylistchina+easylist.txt: 13017) -/(.*/)?adstakeover\. -adstakeover.*. -# /adstacodaeu. (easylistchina+easylist.txt: 13016) -/(.*/)?adstacodaeu\. -adstacodaeu.*. -# /adssrv. (easylistchina+easylist.txt: 13015) -/(.*/)?adssrv\. -adssrv.*. -# /adssp. (easylistchina+easylist.txt: 13014) -/(.*/)?adssp\. -adssp.*. -# /adsshow/* (easylistchina+easylist.txt: 13013) -/(.*/)?adsshow/.* -# /AdsShow. (easylistchina+easylist.txt: 13012) -/(.*/)?AdsShow\. -AdsShow.*. -# /adsserver. (easylistchina+easylist.txt: 13011) -/(.*/)?adsserver\. -adsserver.*. -# /adsserv. (easylistchina+easylist.txt: 13010) -/(.*/)?adsserv\. -adsserv.*. -# /adsscript. (easylistchina+easylist.txt: 13009) -/(.*/)?adsscript\. -adsscript.*. -# /adss.asp (easylistchina+easylist.txt: 13008) -/(.*/)?adss\.asp -adss.asp*. -# /adsrv2/* (easylistchina+easylist.txt: 13007) -/(.*/)?adsrv2/.* -# /adsrv/* (easylistchina+easylist.txt: 13006) -/(.*/)?adsrv/.* -# /adsrv. (easylistchina+easylist.txt: 13005) -/(.*/)?adsrv\. -adsrv.*. -# /adsrules/* (easylistchina+easylist.txt: 13004) -/(.*/)?adsrules/.* -# /adsrule. (easylistchina+easylist.txt: 13003) -/(.*/)?adsrule\. -adsrule.*. -# /adsrotator. (easylistchina+easylist.txt: 13002) -/(.*/)?adsrotator\. -adsrotator.*. -# /AdsRotateNEWHeader. (easylistchina+easylist.txt: 13001) -/(.*/)?AdsRotateNEWHeader\. -AdsRotateNEWHeader.*. -# /AdsRotateNEW2right. (easylistchina+easylist.txt: 13000) -/(.*/)?AdsRotateNEW2right\. -AdsRotateNEW2right.*. -# /AdsRotateNEW1right. (easylistchina+easylist.txt: 12999) -/(.*/)?AdsRotateNEW1right\. -AdsRotateNEW1right.*. -# /adsrotateheader. (easylistchina+easylist.txt: 12998) -/(.*/)?adsrotateheader\. -adsrotateheader.*. -# /adsrotate2left. (easylistchina+easylist.txt: 12997) -/(.*/)?adsrotate2left\. -adsrotate2left.*. -# /adsrotate1right. (easylistchina+easylist.txt: 12996) -/(.*/)?adsrotate1right\. -adsrotate1right.*. -# /adsrotate1left. (easylistchina+easylist.txt: 12995) -/(.*/)?adsrotate1left\. -adsrotate1left.*. -# /adsrotate. (easylistchina+easylist.txt: 12994) -/(.*/)?adsrotate\. -adsrotate.*. -# /adsrot2. (easylistchina+easylist.txt: 12993) -/(.*/)?adsrot2\. -adsrot2.*. -# /adsrot. (easylistchina+easylist.txt: 12992) -/(.*/)?adsrot\. -adsrot.*. -# /adsright. (easylistchina+easylist.txt: 12991) -/(.*/)?adsright\. -adsright.*. -# /adsrich. (easylistchina+easylist.txt: 12990) -/(.*/)?adsrich\. -adsrich.*. -# /adsresources/* (easylistchina+easylist.txt: 12989) -/(.*/)?adsresources/.* -# /adsreporting/* (easylistchina+easylist.txt: 12988) -/(.*/)?adsreporting/.* -# /adsremote. (easylistchina+easylist.txt: 12987) -/(.*/)?adsremote\. -adsremote.*. -# /adsrc300. (easylistchina+easylist.txt: 12986) -/(.*/)?adsrc300\. -adsrc300.*. -# /adsrc. (easylistchina+easylist.txt: 12985) -/(.*/)?adsrc\. -adsrc.*. -# /adsquareleft. (easylistchina+easylist.txt: 12984) -/(.*/)?adsquareleft\. -adsquareleft.*. -# /adsquare. (easylistchina+easylist.txt: 12983) -/(.*/)?adsquare\. -adsquare.*. -# /adsq/* (easylistchina+easylist.txt: 12982) -/(.*/)?adsq/.* -# /AdsPublisher. (easylistchina+easylist.txt: 12981) -/(.*/)?AdsPublisher\. -AdsPublisher.*. -# /adspro/* (easylistchina+easylist.txt: 12980) -/(.*/)?adspro/.* -# /adspots/* (easylistchina+easylist.txt: 12979) -/(.*/)?adspots/.* -# /adspot_ (easylistchina+easylist.txt: 12978) -/(.*/)?adspot_ -# /adspot/* (easylistchina+easylist.txt: 12977) -/(.*/)?adspot/.* -# /adspot. (easylistchina+easylist.txt: 12976) -/(.*/)?adspot\. -adspot.*. -# /adsponsor. (easylistchina+easylist.txt: 12975) -/(.*/)?adsponsor\. -adsponsor.*. -# /adsplupu. (easylistchina+easylist.txt: 12974) -/(.*/)?adsplupu\. -adsplupu.*. -# /adsPlugin/* (easylistchina+easylist.txt: 12973) -/(.*/)?adsPlugin/.* -# /AdsPlugin. (easylistchina+easylist.txt: 12972) -/(.*/)?AdsPlugin\. -AdsPlugin.*. -# /Adsplex- (easylistchina+easylist.txt: 12971) -/(.*/)?Adsplex- -Adsplex-*. -# /adsplay. (easylistchina+easylist.txt: 12970) -/(.*/)?adsplay\. -adsplay.*. -# /adspeeler/* (easylistchina+easylist.txt: 12969) -/(.*/)?adspeeler/.* -# /adspan. (easylistchina+easylist.txt: 12968) -/(.*/)?adspan\. -adspan.*. -# /adspacer. (easylistchina+easylist.txt: 12967) -/(.*/)?adspacer\. -adspacer.*. -# /adspace? (easylistchina+easylist.txt: 12966) -/(.*/)?adspace\? -# /adspace2. (easylistchina+easylist.txt: 12965) -/(.*/)?adspace2\. -adspace2.*. -# /AdSpace160x60. (easylistchina+easylist.txt: 12964) -/(.*/)?AdSpace160x60\. -AdSpace160x60.*. -# /adspace1. (easylistchina+easylist.txt: 12963) -/(.*/)?adspace1\. -adspace1.*. -# /adspace/* (easylistchina+easylist.txt: 12962) -/(.*/)?adspace/.* -# /adspace. (easylistchina+easylist.txt: 12961) -/(.*/)?adspace\. -adspace.*. -# /adsp/* (easylistchina+easylist.txt: 12960) -/(.*/)?adsp/.* -# /adsoverlay_ (easylistchina+easylist.txt: 12959) -/(.*/)?adsoverlay_ -# /adsource_ (easylistchina+easylist.txt: 12958) -/(.*/)?adsource_ -# /adsopenx/* (easylistchina+easylist.txt: 12957) -/(.*/)?adsopenx/.* -# /adsonar. (easylistchina+easylist.txt: 12956) -/(.*/)?adsonar\. -adsonar.*. -# /adsniptrack. (easylistchina+easylist.txt: 12955) -/(.*/)?adsniptrack\. -adsniptrack.*. -# /adsnippet. (easylistchina+easylist.txt: 12954) -/(.*/)?adsnippet\. -adsnippet.*. -# /adsnip. (easylistchina+easylist.txt: 12953) -/(.*/)?adsnip\. -adsnip.*. -# /adsnew/* (easylistchina+easylist.txt: 12952) -/(.*/)?adsnew/.* -# /adsnew. (easylistchina+easylist.txt: 12951) -/(.*/)?adsnew\. -adsnew.*. -# /adsmodules/* (easylistchina+easylist.txt: 12950) -/(.*/)?adsmodules/.* -# /adsmm.dll/* (easylistchina+easylist.txt: 12949) -/(.*/)?adsmm\.dll/.* -adsmm.dll/.* -# /adsmedia_ (easylistchina+easylist.txt: 12948) -/(.*/)?adsmedia_ -# /adsManagerV2. (easylistchina+easylist.txt: 12947) -/(.*/)?adsManagerV2\. -adsManagerV2.*. -# /adsmanager/* (easylistchina+easylist.txt: 12946) -/(.*/)?adsmanager/.* -# /adsmanagement/* (easylistchina+easylist.txt: 12945) -/(.*/)?adsmanagement/.* -# /adsm2. (easylistchina+easylist.txt: 12944) -/(.*/)?adsm2\. -adsm2.*. -# /adslugs/* (easylistchina+easylist.txt: 12943) -/(.*/)?adslugs/.* -# /adslug_ (easylistchina+easylist.txt: 12942) -/(.*/)?adslug_ -# /adslug- (easylistchina+easylist.txt: 12941) -/(.*/)?adslug- -adslug-*. -# /adslots. (easylistchina+easylist.txt: 12940) -/(.*/)?adslots\. -adslots.*. -# /adsline. (easylistchina+easylist.txt: 12939) -/(.*/)?adsline\. -adsline.*. -# /adslides. (easylistchina+easylist.txt: 12938) -/(.*/)?adslides\. -adslides.*. -# /adslide. (easylistchina+easylist.txt: 12937) -/(.*/)?adslide\. -adslide.*. -# /adskyscraper. (easylistchina+easylist.txt: 12936) -/(.*/)?adskyscraper\. -adskyscraper.*. -# /adskyright. (easylistchina+easylist.txt: 12935) -/(.*/)?adskyright\. -adskyright.*. -# /adsky. (easylistchina+easylist.txt: 12934) -/(.*/)?adsky\. -adsky.*. -# /adskin/* (easylistchina+easylist.txt: 12933) -/(.*/)?adskin/.* -# /adsjs. (easylistchina+easylist.txt: 12932) -/(.*/)?adsjs\. -adsjs.*. -# /adsites/* (easylistchina+easylist.txt: 12931) -/(.*/)?adsites/.* -# /adsite/* (easylistchina+easylist.txt: 12930) -/(.*/)?adsite/.* -# /adsinsert. (easylistchina+easylist.txt: 12929) -/(.*/)?adsinsert\. -adsinsert.*. -# /adsindie/* (easylistchina+easylist.txt: 12928) -/(.*/)?adsindie/.* -# /adsinclude. (easylistchina+easylist.txt: 12927) -/(.*/)?adsinclude\. -adsinclude.*. -# /adsImg/* (easylistchina+easylist.txt: 12926) -/(.*/)?adsImg/.* -# /adsimages/* (easylistchina+easylist.txt: 12925) -/(.*/)?adsimages/.* -# /adsimage/* (easylistchina+easylist.txt: 12924) -/(.*/)?adsimage/.* -# /adsign. (easylistchina+easylist.txt: 12923) -/(.*/)?adsign\. -adsign.*. -# /adsiframe/* (easylistchina+easylist.txt: 12922) -/(.*/)?adsiframe/.* -# /adsiframe. (easylistchina+easylist.txt: 12921) -/(.*/)?adsiframe\. -adsiframe.*. -# /adsidebarrect. (easylistchina+easylist.txt: 12920) -/(.*/)?adsidebarrect\. -adsidebarrect.*. -# /adsidebar. (easylistchina+easylist.txt: 12919) -/(.*/)?adsidebar\. -adsidebar.*. -# /adsicon/* (easylistchina+easylist.txt: 12918) -/(.*/)?adsicon/.* -# /adsico3. (easylistchina+easylist.txt: 12917) -/(.*/)?adsico3\. -adsico3.*. -# /adsico2. (easylistchina+easylist.txt: 12916) -/(.*/)?adsico2\. -adsico2.*. -# /adsico. (easylistchina+easylist.txt: 12915) -/(.*/)?adsico\. -adsico.*. -# /adsi-j. (easylistchina+easylist.txt: 12914) -/(.*/)?adsi-j\. -adsi-j.*. -# /adshtml2/* (easylistchina+easylist.txt: 12913) -/(.*/)?adshtml2/.* -# /adshow_ (easylistchina+easylist.txt: 12912) -/(.*/)?adshow_ -# /adshow? (easylistchina+easylist.txt: 12911) -/(.*/)?adshow\? -# /adshow/* (easylistchina+easylist.txt: 12910) -/(.*/)?adshow/.* -# /adshow. (easylistchina+easylist.txt: 12909) -/(.*/)?adshow\. -adshow.*. -# /adshow- (easylistchina+easylist.txt: 12908) -/(.*/)?adshow- -adshow-*. -# /adsheader. (easylistchina+easylist.txt: 12907) -/(.*/)?adsheader\. -adsheader.*. -# /adshare3. (easylistchina+easylist.txt: 12906) -/(.*/)?adshare3\. -adshare3.*. -# /adshare/* (easylistchina+easylist.txt: 12905) -/(.*/)?adshare/.* -# /adshare. (easylistchina+easylist.txt: 12904) -/(.*/)?adshare\. -adshare.*. -# /adshandler. (easylistchina+easylist.txt: 12903) -/(.*/)?adshandler\. -adshandler.*. -# /adsGooglePP3. (easylistchina+easylist.txt: 12902) -/(.*/)?adsGooglePP3\. -adsGooglePP3.*. -# /adsgame. (easylistchina+easylist.txt: 12901) -/(.*/)?adsgame\. -adsgame.*. -# /adsfuse- (easylistchina+easylist.txt: 12900) -/(.*/)?adsfuse- -adsfuse-*. -# /adsframe. (easylistchina+easylist.txt: 12899) -/(.*/)?adsframe\. -adsframe.*. -# /adsfolder/* (easylistchina+easylist.txt: 12898) -/(.*/)?adsfolder/.* -# /adsfloat. (easylistchina+easylist.txt: 12897) -/(.*/)?adsfloat\. -adsfloat.*. -# /adsfinal. (easylistchina+easylist.txt: 12896) -/(.*/)?adsfinal\. -adsfinal.*. -# /adsfiles. (easylistchina+easylist.txt: 12895) -/(.*/)?adsfiles\. -adsfiles.*. -# /adsfile. (easylistchina+easylist.txt: 12894) -/(.*/)?adsfile\. -adsfile.*. -# /adsfetch. (easylistchina+easylist.txt: 12893) -/(.*/)?adsfetch\. -adsfetch.*. -# /adsfac. (easylistchina+easylist.txt: 12892) -/(.*/)?adsfac\. -adsfac.*. -# /adsetup_ (easylistchina+easylist.txt: 12891) -/(.*/)?adsetup_ -# /adsetup. (easylistchina+easylist.txt: 12890) -/(.*/)?adsetup\. -adsetup.*. -# /adsession_ (easylistchina+easylist.txt: 12889) -/(.*/)?adsession_ -# /adsession. (easylistchina+easylist.txt: 12888) -/(.*/)?adsession\. -adsession.*. -# /adserv|*|adtech; (easylistchina+easylist.txt: 12887) -/(.*/)?adserv\|.*\|adtech; -# /AdServlet? (easylistchina+easylist.txt: 12886) -/(.*/)?AdServlet\? -# /adserving_ (easylistchina+easylist.txt: 12885) -/(.*/)?adserving_ -# /adserving/* (easylistchina+easylist.txt: 12884) -/(.*/)?adserving/.* -# /adserving. (easylistchina+easylist.txt: 12883) -/(.*/)?adserving\. -adserving.*. -# /adservice| (easylistchina+easylist.txt: 12882) -/(.*/)?adservice$ -# /adservices/* (easylistchina+easylist.txt: 12881) -/(.*/)?adservices/.* -# /adservice/* (easylistchina+easylist.txt: 12880) -/(.*/)?adservice/.* -# /adservice. (easylistchina+easylist.txt: 12879) -/(.*/)?adservice\. -adservice.*. -# /adservice- (easylistchina+easylist.txt: 12878) -/(.*/)?adservice- -adservice-*. -# /adservervastvideovizu. (easylistchina+easylist.txt: 12877) -/(.*/)?adservervastvideovizu\. -adservervastvideovizu.*. -# /adserverstore. (easylistchina+easylist.txt: 12876) -/(.*/)?adserverstore\. -adserverstore.*. -# /adserversolutions/* (easylistchina+easylist.txt: 12875) -/(.*/)?adserversolutions/.* -# /adservers- (easylistchina+easylist.txt: 12874) -/(.*/)?adservers- -adservers-*. -# /adserverpub? (easylistchina+easylist.txt: 12873) -/(.*/)?adserverpub\? -# /adserverdata. (easylistchina+easylist.txt: 12872) -/(.*/)?adserverdata\. -adserverdata.*. -# /adserver_ (easylistchina+easylist.txt: 12871) -/(.*/)?adserver_ -# /adserver? (easylistchina+easylist.txt: 12870) -/(.*/)?adserver\? -# /adserver8strip. (easylistchina+easylist.txt: 12869) -/(.*/)?adserver8strip\. -adserver8strip.*. -# /adserver7/* (easylistchina+easylist.txt: 12868) -/(.*/)?adserver7/.* -# /adserver3. (easylistchina+easylist.txt: 12867) -/(.*/)?adserver3\. -adserver3.*. -# /adserver2/* (easylistchina+easylist.txt: 12866) -/(.*/)?adserver2/.* -# /adserver2. (easylistchina+easylist.txt: 12865) -/(.*/)?adserver2\. -adserver2.*. -# /adserver1. (easylistchina+easylist.txt: 12864) -/(.*/)?adserver1\. -adserver1.*. -# /adserver1- (easylistchina+easylist.txt: 12863) -/(.*/)?adserver1- -adserver1-*. -# /adserver/* (easylistchina+easylist.txt: 12862) -/(.*/)?adserver/.* -# /adserver. (easylistchina+easylist.txt: 12861) -/(.*/)?adserver\. -adserver.*. -# /adserver- (easylistchina+easylist.txt: 12860) -/(.*/)?adserver- -adserver-*. -# /adserve_ (easylistchina+easylist.txt: 12859) -/(.*/)?adserve_ -# /adserve/* (easylistchina+easylist.txt: 12858) -/(.*/)?adserve/.* -# /adserve. (easylistchina+easylist.txt: 12857) -/(.*/)?adserve\. -adserve.*. -# /adserve- (easylistchina+easylist.txt: 12856) -/(.*/)?adserve- -adserve-*. -# /adserv_ (easylistchina+easylist.txt: 12855) -/(.*/)?adserv_ -# /adserv3. (easylistchina+easylist.txt: 12854) -/(.*/)?adserv3\. -adserv3.*. -# /adserv2. (easylistchina+easylist.txt: 12853) -/(.*/)?adserv2\. -adserv2.*. -# /adserv1. (easylistchina+easylist.txt: 12852) -/(.*/)?adserv1\. -adserv1.*. -# /adserv/* (easylistchina+easylist.txt: 12851) -/(.*/)?adserv/.* -# /adserv. (easylistchina+easylist.txt: 12850) -/(.*/)?adserv\. -adserv.*. -# /adser/* (easylistchina+easylist.txt: 12849) -/(.*/)?adser/.* -# /adseperator_ (easylistchina+easylist.txt: 12848) -/(.*/)?adseperator_ -# /adseo/* (easylistchina+easylist.txt: 12847) -/(.*/)?adseo/.* -# /adseo. (easylistchina+easylist.txt: 12846) -/(.*/)?adseo\. -adseo.*. -# /adsenze. (easylistchina+easylist.txt: 12845) -/(.*/)?adsenze\. -adsenze.*. -# /adsensev2. (easylistchina+easylist.txt: 12844) -/(.*/)?adsensev2\. -adsensev2.*. -# /adsensets. (easylistchina+easylist.txt: 12843) -/(.*/)?adsensets\. -adsensets.*. -# /adsensegoogle. (easylistchina+easylist.txt: 12842) -/(.*/)?adsensegoogle\. -adsensegoogle.*. -# /adsensegb. (easylistchina+easylist.txt: 12841) -/(.*/)?adsensegb\. -adsensegb.*. -# /AdsenseBlockView. (easylistchina+easylist.txt: 12840) -/(.*/)?AdsenseBlockView\. -AdsenseBlockView.*. -# /adsense_ (easylistchina+easylist.txt: 12839) -/(.*/)?adsense_ -# /adsense? (easylistchina+easylist.txt: 12838) -/(.*/)?adsense\? -# /adsense5. (easylistchina+easylist.txt: 12837) -/(.*/)?adsense5\. -adsense5.*. -# /adsense4. (easylistchina+easylist.txt: 12836) -/(.*/)?adsense4\. -adsense4.*. -# /adsense3. (easylistchina+easylist.txt: 12835) -/(.*/)?adsense3\. -adsense3.*. -# /adsense250. (easylistchina+easylist.txt: 12834) -/(.*/)?adsense250\. -adsense250.*. -# /adsense24. (easylistchina+easylist.txt: 12833) -/(.*/)?adsense24\. -adsense24.*. -# /adsense23. (easylistchina+easylist.txt: 12832) -/(.*/)?adsense23\. -adsense23.*. -# /adsense2. (easylistchina+easylist.txt: 12831) -/(.*/)?adsense2\. -adsense2.*. -# /adsense1. (easylistchina+easylist.txt: 12830) -/(.*/)?adsense1\. -adsense1.*. -# /adsense/* (easylistchina+easylist.txt: 12829) -/(.*/)?adsense/.* -# /adsense. (easylistchina+easylist.txt: 12828) -/(.*/)?adsense\. -adsense.*. -# /adsense- (easylistchina+easylist.txt: 12827) -/(.*/)?adsense- -adsense-*. -# /adsEnd. (easylistchina+easylist.txt: 12826) -/(.*/)?adsEnd\. -adsEnd.*. -# /adsenceSearchTop. (easylistchina+easylist.txt: 12825) -/(.*/)?adsenceSearchTop\. -adsenceSearchTop.*. -# /adsenceSearch. (easylistchina+easylist.txt: 12824) -/(.*/)?adsenceSearch\. -adsenceSearch.*. -# /adsence. (easylistchina+easylist.txt: 12823) -/(.*/)?adsence\. -adsence.*. -# /adseller/* (easylistchina+easylist.txt: 12822) -/(.*/)?adseller/.* -# /adsegmentation. (easylistchina+easylist.txt: 12821) -/(.*/)?adsegmentation\. -adsegmentation.*. -# /adsecondary. (easylistchina+easylist.txt: 12820) -/(.*/)?adsecondary\. -adsecondary.*. -# /adSearch? (easylistchina+easylist.txt: 12819) -/(.*/)?adSearch\? -# /adsearch. (easylistchina+easylist.txt: 12818) -/(.*/)?adsearch\. -adsearch.*. -# /adsDynLoad/* (easylistchina+easylist.txt: 12817) -/(.*/)?adsDynLoad/.* -# /adsdyn160x160. (easylistchina+easylist.txt: 12816) -/(.*/)?adsdyn160x160\. -adsdyn160x160.*. -# /adsdm. (easylistchina+easylist.txt: 12815) -/(.*/)?adsdm\. -adsdm.*. -# /adsdfp/* (easylistchina+easylist.txt: 12814) -/(.*/)?adsdfp/.* -# /adsdelivery. (easylistchina+easylist.txt: 12813) -/(.*/)?adsdelivery\. -adsdelivery.*. -# /adsDateValidation. (easylistchina+easylist.txt: 12812) -/(.*/)?adsDateValidation\. -adsDateValidation.*. -# /adsdaqsky_ (easylistchina+easylist.txt: 12811) -/(.*/)?adsdaqsky_ -# /adsdaqbox_ (easylistchina+easylist.txt: 12810) -/(.*/)?adsdaqbox_ -# /adsdaqbanner_ (easylistchina+easylist.txt: 12809) -/(.*/)?adsdaqbanner_ -# /adsdaq_ (easylistchina+easylist.txt: 12808) -/(.*/)?adsdaq_ -# /adscroll. (easylistchina+easylist.txt: 12807) -/(.*/)?adscroll\. -adscroll.*. -# /adscripts3. (easylistchina+easylist.txt: 12806) -/(.*/)?adscripts3\. -adscripts3.*. -# /adscripts2. (easylistchina+easylist.txt: 12805) -/(.*/)?adscripts2\. -adscripts2.*. -# /adscripts1. (easylistchina+easylist.txt: 12804) -/(.*/)?adscripts1\. -adscripts1.*. -# /adscripts/* (easylistchina+easylist.txt: 12803) -/(.*/)?adscripts/.* -# /adscript_ (easylistchina+easylist.txt: 12802) -/(.*/)?adscript_ -# /adscript1. (easylistchina+easylist.txt: 12801) -/(.*/)?adscript1\. -adscript1.*. -# /adscript. (easylistchina+easylist.txt: 12800) -/(.*/)?adscript\. -adscript.*. -# /adscpv/* (easylistchina+easylist.txt: 12799) -/(.*/)?adscpv/.* -# /adscontent2. (easylistchina+easylist.txt: 12798) -/(.*/)?adscontent2\. -adscontent2.*. -# /adscontent. (easylistchina+easylist.txt: 12797) -/(.*/)?adscontent\. -adscontent.*. -# /adscluster. (easylistchina+easylist.txt: 12796) -/(.*/)?adscluster\. -adscluster.*. -# /adscloud. (easylistchina+easylist.txt: 12795) -/(.*/)?adscloud\. -adscloud.*. -# /adscaleskyscraper. (easylistchina+easylist.txt: 12794) -/(.*/)?adscaleskyscraper\. -adscaleskyscraper.*. -# /adscalecontentad. (easylistchina+easylist.txt: 12793) -/(.*/)?adscalecontentad\. -adscalecontentad.*. -# /adscalebigsize. (easylistchina+easylist.txt: 12792) -/(.*/)?adscalebigsize\. -adscalebigsize.*. -# /adscale_ (easylistchina+easylist.txt: 12791) -/(.*/)?adscale_ -# /adscale1. (easylistchina+easylist.txt: 12790) -/(.*/)?adscale1\. -adscale1.*. -# /adscale. (easylistchina+easylist.txt: 12789) -/(.*/)?adscale\. -adscale.*. -# /adsbygoogle. (easylistchina+easylist.txt: 12788) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# /adsbycurse. (easylistchina+easylist.txt: 12787) -/(.*/)?adsbycurse\. -adsbycurse.*. -# /adsby. (easylistchina+easylist.txt: 12786) -/(.*/)?adsby\. -adsby.*. -# /adsbox. (easylistchina+easylist.txt: 12785) -/(.*/)?adsbox\. -adsbox.*. -# /adsbannerjs. (easylistchina+easylist.txt: 12784) -/(.*/)?adsbannerjs\. -adsbannerjs.*. -# /adsbanner/* (easylistchina+easylist.txt: 12783) -/(.*/)?adsbanner/.* -# /adsbanner. (easylistchina+easylist.txt: 12782) -/(.*/)?adsbanner\. -adsbanner.*. -# /adsbanner- (easylistchina+easylist.txt: 12781) -/(.*/)?adsbanner- -adsbanner-*. -# /adsatt. (easylistchina+easylist.txt: 12780) -/(.*/)?adsatt\. -adsatt.*. -# /adsAPI. (easylistchina+easylist.txt: 12779) -/(.*/)?adsAPI\. -adsAPI.*. -# /adsandtps/* (easylistchina+easylist.txt: 12778) -/(.*/)?adsandtps/.* -# /adsandbox. (easylistchina+easylist.txt: 12777) -/(.*/)?adsandbox\. -adsandbox.*. -# /adsample. (easylistchina+easylist.txt: 12776) -/(.*/)?adsample\. -adsample.*. -# /adsame. (easylistchina+easylist.txt: 12775) -/(.*/)?adsame\. -adsame.*. -# /adsales/* (easylistchina+easylist.txt: 12774) -/(.*/)?adsales/.* -# /AdsAjaxRefresh. (easylistchina+easylist.txt: 12773) -/(.*/)?AdsAjaxRefresh\. -AdsAjaxRefresh.*. -# /adsadview. (easylistchina+easylist.txt: 12772) -/(.*/)?adsadview\. -adsadview.*. -# /adsadclient31. (easylistchina+easylist.txt: 12771) -/(.*/)?adsadclient31\. -adsadclient31.*. -# /adsa728. (easylistchina+easylist.txt: 12770) -/(.*/)?adsa728\. -adsa728.*. -# /adsa468. (easylistchina+easylist.txt: 12769) -/(.*/)?adsa468\. -adsa468.*. -# /ads_yahoo. (easylistchina+easylist.txt: 12768) -/(.*/)?ads_yahoo\. -# /Ads_WFC. (easylistchina+easylist.txt: 12767) -/(.*/)?Ads_WFC\. -# /ads_view. (easylistchina+easylist.txt: 12766) -/(.*/)?ads_view\. -# /ads_ui. (easylistchina+easylist.txt: 12765) -/(.*/)?ads_ui\. -# /ads_topbar_ (easylistchina+easylist.txt: 12764) -/(.*/)?ads_topbar_ -# /ads_top_ (easylistchina+easylist.txt: 12763) -/(.*/)?ads_top_ -# /ads_text_ (easylistchina+easylist.txt: 12762) -/(.*/)?ads_text_ -# /ads_start. (easylistchina+easylist.txt: 12761) -/(.*/)?ads_start\. -# /ads_sidebar. (easylistchina+easylist.txt: 12760) -/(.*/)?ads_sidebar\. -# /ads_show_ (easylistchina+easylist.txt: 12759) -/(.*/)?ads_show_ -# /ads_server_ (easylistchina+easylist.txt: 12758) -/(.*/)?ads_server_ -# /ads_reporting/* (easylistchina+easylist.txt: 12757) -/(.*/)?ads_reporting/.* -# /ads_redirect. (easylistchina+easylist.txt: 12756) -/(.*/)?ads_redirect\. -# /ads_r. (easylistchina+easylist.txt: 12755) -/(.*/)?ads_r\. -# /ads_pro/* (easylistchina+easylist.txt: 12754) -/(.*/)?ads_pro/.* -# /ads_premium. (easylistchina+easylist.txt: 12753) -/(.*/)?ads_premium\. -# /ads_php/* (easylistchina+easylist.txt: 12752) -/(.*/)?ads_php/.* -# /ads_patron. (easylistchina+easylist.txt: 12751) -/(.*/)?ads_patron\. -# /ads_openx_ (easylistchina+easylist.txt: 12750) -/(.*/)?ads_openx_ -# /ads_new/* (easylistchina+easylist.txt: 12749) -/(.*/)?ads_new/.* -# /ads_new. (easylistchina+easylist.txt: 12748) -/(.*/)?ads_new\. -# /ads_min_ (easylistchina+easylist.txt: 12747) -/(.*/)?ads_min_ -# /ads_medrec_ (easylistchina+easylist.txt: 12746) -/(.*/)?ads_medrec_ -# /ads_manager. (easylistchina+easylist.txt: 12745) -/(.*/)?ads_manager\. -# /ads_loader. (easylistchina+easylist.txt: 12744) -/(.*/)?ads_loader\. -# /ads_load/* (easylistchina+easylist.txt: 12743) -/(.*/)?ads_load/.* -# /ads_left_ (easylistchina+easylist.txt: 12742) -/(.*/)?ads_left_ -# /ads_leaderboard_ (easylistchina+easylist.txt: 12741) -/(.*/)?ads_leaderboard_ -# /ads_images/* (easylistchina+easylist.txt: 12740) -/(.*/)?ads_images/.* -# /ads_image/* (easylistchina+easylist.txt: 12739) -/(.*/)?ads_image/.* -# /ads_iframe. (easylistchina+easylist.txt: 12738) -/(.*/)?ads_iframe\. -# /ads_ifr. (easylistchina+easylist.txt: 12737) -/(.*/)?ads_ifr\. -# /ads_home_ (easylistchina+easylist.txt: 12736) -/(.*/)?ads_home_ -# /ads_google. (easylistchina+easylist.txt: 12735) -/(.*/)?ads_google\. -# /ads_gnm/* (easylistchina+easylist.txt: 12734) -/(.*/)?ads_gnm/.* -# /ads_global. (easylistchina+easylist.txt: 12733) -/(.*/)?ads_global\. -# /ads_gallery/* (easylistchina+easylist.txt: 12732) -/(.*/)?ads_gallery/.* -# /ads_frame. (easylistchina+easylist.txt: 12731) -/(.*/)?ads_frame\. -# /ads_footer. (easylistchina+easylist.txt: 12730) -/(.*/)?ads_footer\. -# /Ads_Fix. (easylistchina+easylist.txt: 12729) -/(.*/)?Ads_Fix\. -# /ads_files/* (easylistchina+easylist.txt: 12728) -/(.*/)?ads_files/.* -# /ads_event. (easylistchina+easylist.txt: 12727) -/(.*/)?ads_event\. -# /ads_display. (easylistchina+easylist.txt: 12726) -/(.*/)?ads_display\. -# /ads_dfp/* (easylistchina+easylist.txt: 12725) -/(.*/)?ads_dfp/.* -# /ads_controller. (easylistchina+easylist.txt: 12724) -/(.*/)?ads_controller\. -# /ads_config. (easylistchina+easylist.txt: 12723) -/(.*/)?ads_config\. -# /ads_codes/* (easylistchina+easylist.txt: 12722) -/(.*/)?ads_codes/.* -# /ads_code_ (easylistchina+easylist.txt: 12721) -/(.*/)?ads_code_ -# /ads_code. (easylistchina+easylist.txt: 12720) -/(.*/)?ads_code\. -# /ads_box_ (easylistchina+easylist.txt: 12719) -/(.*/)?ads_box_ -# /ads_bottom_ (easylistchina+easylist.txt: 12718) -/(.*/)?ads_bottom_ -# /ads_bottom. (easylistchina+easylist.txt: 12717) -/(.*/)?ads_bottom\. -# /ads_bg. (easylistchina+easylist.txt: 12716) -/(.*/)?ads_bg\. -# /ads_banners/* (easylistchina+easylist.txt: 12715) -/(.*/)?ads_banners/.* -# /ads_banner_ (easylistchina+easylist.txt: 12714) -/(.*/)?ads_banner_ -# /ads_ad_ (easylistchina+easylist.txt: 12713) -/(.*/)?ads_ad_ -# /ads_728_ (easylistchina+easylist.txt: 12712) -/(.*/)?ads_728_ -# /ads_6. (easylistchina+easylist.txt: 12711) -/(.*/)?ads_6\. -# /ads_300_ (easylistchina+easylist.txt: 12710) -/(.*/)?ads_300_ -# /ads_300. (easylistchina+easylist.txt: 12709) -/(.*/)?ads_300\. -# /ads_3. (easylistchina+easylist.txt: 12708) -/(.*/)?ads_3\. -# /ads_160_ (easylistchina+easylist.txt: 12707) -/(.*/)?ads_160_ -# /ads_1. (easylistchina+easylist.txt: 12706) -/(.*/)?ads_1\. -# /ads?zone_id= (easylistchina+easylist.txt: 12705) -/(.*/)?ads\?zone_id= -# /ads?zone= (easylistchina+easylist.txt: 12704) -/(.*/)?ads\?zone= -# /ads?spaceid (easylistchina+easylist.txt: 12703) -/(.*/)?ads\?spaceid -# /ads?id= (easylistchina+easylist.txt: 12702) -/(.*/)?ads\?id= -# /ads?callback (easylistchina+easylist.txt: 12701) -/(.*/)?ads\?callback -# /ads?apid (easylistchina+easylist.txt: 12700) -/(.*/)?ads\?apid -# /ads9/* (easylistchina+easylist.txt: 12699) -/(.*/)?ads9/.* -# /ads9. (easylistchina+easylist.txt: 12698) -/(.*/)?ads9\. -ads9.*. -# /ads88. (easylistchina+easylist.txt: 12697) -/(.*/)?ads88\. -ads88.*. -# /ads8/* (easylistchina+easylist.txt: 12696) -/(.*/)?ads8/.* -# /ads8. (easylistchina+easylist.txt: 12695) -/(.*/)?ads8\. -ads8.*. -# /ads790. (easylistchina+easylist.txt: 12694) -/(.*/)?ads790\. -ads790.*. -# /ads728x90a. (easylistchina+easylist.txt: 12693) -/(.*/)?ads728x90a\. -ads728x90a.*. -# /ads728x90_ (easylistchina+easylist.txt: 12692) -/(.*/)?ads728x90_ -# /ads728adn2. (easylistchina+easylist.txt: 12691) -/(.*/)?ads728adn2\. -ads728adn2.*. -# /ads728. (easylistchina+easylist.txt: 12690) -/(.*/)?ads728\. -ads728.*. -# /ads7/* (easylistchina+easylist.txt: 12689) -/(.*/)?ads7/.* -# /ads7. (easylistchina+easylist.txt: 12688) -/(.*/)?ads7\. -ads7.*. -# /ads620x60/* (easylistchina+easylist.txt: 12687) -/(.*/)?ads620x60/.* -# /ads600- (easylistchina+easylist.txt: 12686) -/(.*/)?ads600- -ads600-*. -# /ads6/* (easylistchina+easylist.txt: 12685) -/(.*/)?ads6/.* -# /ads6. (easylistchina+easylist.txt: 12684) -/(.*/)?ads6\. -ads6.*. -# /ads5t. (easylistchina+easylist.txt: 12683) -/(.*/)?ads5t\. -ads5t.*. -# /ads5/* (easylistchina+easylist.txt: 12682) -/(.*/)?ads5/.* -# /ads5. (easylistchina+easylist.txt: 12681) -/(.*/)?ads5\. -ads5.*. -# /ads4n. (easylistchina+easylist.txt: 12680) -/(.*/)?ads4n\. -ads4n.*. -# /ads4j. (easylistchina+easylist.txt: 12679) -/(.*/)?ads4j\. -ads4j.*. -# /ads468x60_ (easylistchina+easylist.txt: 12678) -/(.*/)?ads468x60_ -# /ads468x60. (easylistchina+easylist.txt: 12677) -/(.*/)?ads468x60\. -ads468x60.*. -# /ads468. (easylistchina+easylist.txt: 12676) -/(.*/)?ads468\. -ads468.*. -# /ads4/* (easylistchina+easylist.txt: 12675) -/(.*/)?ads4/.* -# /ads300x250px. (easylistchina+easylist.txt: 12673) -/(.*/)?ads300x250px\. -ads300x250px.*. -# /ads300x250_ (easylistchina+easylist.txt: 12672) -/(.*/)?ads300x250_ -# /ads300X2502. (easylistchina+easylist.txt: 12671) -/(.*/)?ads300X2502\. -ads300X2502.*. -# /ads300x250. (easylistchina+easylist.txt: 12670) -/(.*/)?ads300x250\. -ads300x250.*. -# /ads300adn2. (easylistchina+easylist.txt: 12669) -/(.*/)?ads300adn2\. -ads300adn2.*. -# /ads300. (easylistchina+easylist.txt: 12668) -/(.*/)?ads300\. -ads300.*. -# /ads3/* (easylistchina+easylist.txt: 12667) -/(.*/)?ads3/.* -# /ads3. (easylistchina+easylist.txt: 12666) -/(.*/)?ads3\. -ads3.*. -# /ads2x300new. (easylistchina+easylist.txt: 12665) -/(.*/)?ads2x300new\. -ads2x300new.*. -# /ads2_ (easylistchina+easylist.txt: 12664) -/(.*/)?ads2_ -# /ads210. (easylistchina+easylist.txt: 12663) -/(.*/)?ads210\. -ads210.*. -# /ads2013/* (easylistchina+easylist.txt: 12662) -/(.*/)?ads2013/.* -# /ads2012/* (easylistchina+easylist.txt: 12661) -/(.*/)?ads2012/.* -# /ads2/* (easylistchina+easylist.txt: 12660) -/(.*/)?ads2/.* -# /ads2. (easylistchina+easylist.txt: 12659) -/(.*/)?ads2\. -ads2.*. -# /ads18. (easylistchina+easylist.txt: 12658) -/(.*/)?ads18\. -ads18.*. -# /ads160x600px. (easylistchina+easylist.txt: 12657) -/(.*/)?ads160x600px\. -ads160x600px.*. -# /ads160x600. (easylistchina+easylist.txt: 12656) -/(.*/)?ads160x600\. -ads160x600.*. -# /ads160x600- (easylistchina+easylist.txt: 12655) -/(.*/)?ads160x600- -ads160x600-*. -# /ads160. (easylistchina+easylist.txt: 12654) -/(.*/)?ads160\. -ads160.*. -# /ads125_ (easylistchina+easylist.txt: 12653) -/(.*/)?ads125_ -# /ads125. (easylistchina+easylist.txt: 12652) -/(.*/)?ads125\. -ads125.*. -# /ads12. (easylistchina+easylist.txt: 12651) -/(.*/)?ads12\. -ads12.*. -# /ads11/* (easylistchina+easylist.txt: 12650) -/(.*/)?ads11/.* -# /ads11. (easylistchina+easylist.txt: 12649) -/(.*/)?ads11\. -ads11.*. -# /ads100. (easylistchina+easylist.txt: 12648) -/(.*/)?ads100\. -ads100.*. -# /ads10/* (easylistchina+easylist.txt: 12647) -/(.*/)?ads10/.* -# /ads10. (easylistchina+easylist.txt: 12646) -/(.*/)?ads10\. -ads10.*. -# /ads1/* (easylistchina+easylist.txt: 12645) -/(.*/)?ads1/.* -# /ads1. (easylistchina+easylist.txt: 12644) -/(.*/)?ads1\. -ads1.*. -# /ads09a/* (easylistchina+easylist.txt: 12643) -/(.*/)?ads09a/.* -# /ads05. (easylistchina+easylist.txt: 12642) -/(.*/)?ads05\. -ads05.*. -# /ads01. (easylistchina+easylist.txt: 12641) -/(.*/)?ads01\. -ads01.*. -# /ads0. (easylistchina+easylist.txt: 12640) -/(.*/)?ads0\. -ads0.*. -# /ads/zone/* (easylistchina+easylist.txt: 12639) -/(.*/)?ads/zone/.* -# /ads/yahoo/* (easylistchina+easylist.txt: 12638) -/(.*/)?ads/yahoo/.* -# /ads/xtcore. (easylistchina+easylist.txt: 12637) -/(.*/)?ads/xtcore\. -# /ads/www/* (easylistchina+easylist.txt: 12636) -/(.*/)?ads/www/.* -# /ads/writecapture. (easylistchina+easylist.txt: 12635) -/(.*/)?ads/writecapture\. -# /ads/widget. (easylistchina+easylist.txt: 12634) -/(.*/)?ads/widget\. -# /ads/widebanner. (easylistchina+easylist.txt: 12633) -/(.*/)?ads/widebanner\. -# /ads/welcomescreen. (easylistchina+easylist.txt: 12632) -/(.*/)?ads/welcomescreen\. -# /ads/webplayer. (easylistchina+easylist.txt: 12631) -/(.*/)?ads/webplayer\. -# /ads/web/* (easylistchina+easylist.txt: 12630) -/(.*/)?ads/web/.* -# /ads/vip_ (easylistchina+easylist.txt: 12629) -/(.*/)?ads/vip_ -# /ads/views/* (easylistchina+easylist.txt: 12628) -/(.*/)?ads/views/.* -# /ads/view. (easylistchina+easylist.txt: 12627) -/(.*/)?ads/view\. -# /ads/video_ (easylistchina+easylist.txt: 12626) -/(.*/)?ads/video_ -# /ads/video/* (easylistchina+easylist.txt: 12625) -/(.*/)?ads/video/.* -# /ads/vg/* (easylistchina+easylist.txt: 12624) -/(.*/)?ads/vg/.* -# /ads/vertical/* (easylistchina+easylist.txt: 12623) -/(.*/)?ads/vertical/.* -# /ads/txt_ (easylistchina+easylist.txt: 12622) -/(.*/)?ads/txt_ -# /ads/triggers/* (easylistchina+easylist.txt: 12621) -/(.*/)?ads/triggers/.* -# /ads/tracker/* (easylistchina+easylist.txt: 12620) -/(.*/)?ads/tracker/.* -# /ads/tr_ (easylistchina+easylist.txt: 12619) -/(.*/)?ads/tr_ -# /ads/top. (easylistchina+easylist.txt: 12618) -/(.*/)?ads/top\. -# /ads/top- (easylistchina+easylist.txt: 12617) -/(.*/)?ads/top- -# /ads/tile- (easylistchina+easylist.txt: 12616) -/(.*/)?ads/tile- -# /ads/third- (easylistchina+easylist.txt: 12615) -/(.*/)?ads/third- -# /ads/text/* (easylistchina+easylist.txt: 12614) -/(.*/)?ads/text/.* -# /ads/targeting. (easylistchina+easylist.txt: 12613) -/(.*/)?ads/targeting\. -# /ads/takeovers/* (easylistchina+easylist.txt: 12612) -/(.*/)?ads/takeovers/.* -# /ads/syndicated/* (easylistchina+easylist.txt: 12611) -/(.*/)?ads/syndicated/.* -# /ads/swfobject. (easylistchina+easylist.txt: 12610) -/(.*/)?ads/swfobject\. -# /ads/sub/* (easylistchina+easylist.txt: 12609) -/(.*/)?ads/sub/.* -# /ads/storysponsors/* (easylistchina+easylist.txt: 12608) -/(.*/)?ads/storysponsors/.* -# /ads/square3. (easylistchina+easylist.txt: 12607) -/(.*/)?ads/square3\. -# /ads/square2. (easylistchina+easylist.txt: 12606) -/(.*/)?ads/square2\. -# /ads/square. (easylistchina+easylist.txt: 12605) -/(.*/)?ads/square\. -# /ads/square- (easylistchina+easylist.txt: 12604) -/(.*/)?ads/square- -# /ads/sponsor (easylistchina+easylist.txt: 12603) -/(.*/)?ads/sponsor -# /ads/spacer. (easylistchina+easylist.txt: 12602) -/(.*/)?ads/spacer\. -# /ads/sky_ (easylistchina+easylist.txt: 12601) -/(.*/)?ads/sky_ -# /ads/skins/* (easylistchina+easylist.txt: 12600) -/(.*/)?ads/skins/.* -# /ads/sitewide_ (easylistchina+easylist.txt: 12599) -/(.*/)?ads/sitewide_ -# /ads/sidedoor/* (easylistchina+easylist.txt: 12598) -/(.*/)?ads/sidedoor/.* -# /ads/sidebar- (easylistchina+easylist.txt: 12597) -/(.*/)?ads/sidebar- -# /ads/side- (easylistchina+easylist.txt: 12596) -/(.*/)?ads/side- -# /ads/show/* (easylistchina+easylist.txt: 12595) -/(.*/)?ads/show/.* -# /ads/show. (easylistchina+easylist.txt: 12594) -/(.*/)?ads/show\. -# /ads/serveIt/* (easylistchina+easylist.txt: 12593) -/(.*/)?ads/serveIt/.* -# /ads/select/* (easylistchina+easylist.txt: 12592) -/(.*/)?ads/select/.* -# /ads/scripts/* (easylistchina+easylist.txt: 12591) -/(.*/)?ads/scripts/.* -# /ads/scriptinject. (easylistchina+easylist.txt: 12590) -/(.*/)?ads/scriptinject\. -# /ads/rotate_ (easylistchina+easylist.txt: 12589) -/(.*/)?ads/rotate_ -# /ads/rotate/* (easylistchina+easylist.txt: 12588) -/(.*/)?ads/rotate/.* -# /ads/ringtone_ (easylistchina+easylist.txt: 12587) -/(.*/)?ads/ringtone_ -# /ads/right/* (easylistchina+easylist.txt: 12586) -/(.*/)?ads/right/.* -# /ads/right. (easylistchina+easylist.txt: 12585) -/(.*/)?ads/right\. -# /ads/reskins/* (easylistchina+easylist.txt: 12584) -/(.*/)?ads/reskins/.* -# /ads/request. (easylistchina+easylist.txt: 12583) -/(.*/)?ads/request\. -# /Ads/Refresher. (easylistchina+easylist.txt: 12582) -/(.*/)?Ads/Refresher\. -# /ads/rectangle_ (easylistchina+easylist.txt: 12581) -/(.*/)?ads/rectangle_ -# /ads/rect_ (easylistchina+easylist.txt: 12580) -/(.*/)?ads/rect_ -# /ads/real_ (easylistchina+easylist.txt: 12579) -/(.*/)?ads/real_ -# /ads/rawstory_ (easylistchina+easylist.txt: 12578) -/(.*/)?ads/rawstory_ -# /ads/rail- (easylistchina+easylist.txt: 12577) -/(.*/)?ads/rail- -# /AdS/RAD. (easylistchina+easylist.txt: 12576) -/(.*/)?AdS/RAD\. -# /ads/proxy- (easylistchina+easylist.txt: 12575) -/(.*/)?ads/proxy- -# /ads/proximic. (easylistchina+easylist.txt: 12574) -/(.*/)?ads/proximic\. -# /ads/promo_ (easylistchina+easylist.txt: 12573) -/(.*/)?ads/promo_ -# /ads/profile/* (easylistchina+easylist.txt: 12572) -/(.*/)?ads/profile/.* -# /ads/preroll_ (easylistchina+easylist.txt: 12571) -/(.*/)?ads/preroll_ -# /ads/preroll/* (easylistchina+easylist.txt: 12570) -/(.*/)?ads/preroll/.* -# /ads/preroll- (easylistchina+easylist.txt: 12569) -/(.*/)?ads/preroll- -# /ads/preloader/* (easylistchina+easylist.txt: 12568) -/(.*/)?ads/preloader/.* -# /ads/postscribe. (easylistchina+easylist.txt: 12567) -/(.*/)?ads/postscribe\. -# /ads/post- (easylistchina+easylist.txt: 12566) -/(.*/)?ads/post- -# /ads/popup_ (easylistchina+easylist.txt: 12565) -/(.*/)?ads/popup_ -# /ads/popup. (easylistchina+easylist.txt: 12564) -/(.*/)?ads/popup\. -# /ads/popshow. (easylistchina+easylist.txt: 12563) -/(.*/)?ads/popshow\. -# /ads/popout. (easylistchina+easylist.txt: 12562) -/(.*/)?ads/popout\. -# /ads/pop. (easylistchina+easylist.txt: 12561) -/(.*/)?ads/pop\. -# /ads/plugs/* (easylistchina+easylist.txt: 12560) -/(.*/)?ads/plugs/.* -# /ads/player- (easylistchina+easylist.txt: 12559) -/(.*/)?ads/player- -# /ads/pencil/* (easylistchina+easylist.txt: 12558) -/(.*/)?ads/pencil/.* -# /ads/payload/* (easylistchina+easylist.txt: 12557) -/(.*/)?ads/payload/.* -# /ads/panel. (easylistchina+easylist.txt: 12556) -/(.*/)?ads/panel\. -# /ads/page. (easylistchina+easylist.txt: 12555) -/(.*/)?ads/page\. -# /ads/p/* (easylistchina+easylist.txt: 12554) -/(.*/)?ads/p/.* -# /ads/overlay/* (easylistchina+easylist.txt: 12553) -/(.*/)?ads/overlay/.* -# /ads/overlay- (easylistchina+easylist.txt: 12552) -/(.*/)?ads/overlay- -# /ads/outbrain? (easylistchina+easylist.txt: 12551) -/(.*/)?ads/outbrain\? -# /ads/oscar/* (easylistchina+easylist.txt: 12550) -/(.*/)?ads/oscar/.* -# /ads/original/* (easylistchina+easylist.txt: 12549) -/(.*/)?ads/original/.* -# /ads/oas_ (easylistchina+easylist.txt: 12548) -/(.*/)?ads/oas_ -# /ads/oas/* (easylistchina+easylist.txt: 12547) -/(.*/)?ads/oas/.* -# /ads/oas- (easylistchina+easylist.txt: 12546) -/(.*/)?ads/oas- -# /ads/ninemsn. (easylistchina+easylist.txt: 12545) -/(.*/)?ads/ninemsn\. -# /ads/navbar/* (easylistchina+easylist.txt: 12544) -/(.*/)?ads/navbar/.* -# /ads/mt_ (easylistchina+easylist.txt: 12543) -/(.*/)?ads/mt_ -# /ads/msn/* (easylistchina+easylist.txt: 12542) -/(.*/)?ads/msn/.* -# /ads/mpu? (easylistchina+easylist.txt: 12541) -/(.*/)?ads/mpu\? -# /ads/mpu2? (easylistchina+easylist.txt: 12540) -/(.*/)?ads/mpu2\? -# /ads/mpu/* (easylistchina+easylist.txt: 12539) -/(.*/)?ads/mpu/.* -# /ads/motherless. (easylistchina+easylist.txt: 12538) -/(.*/)?ads/motherless\. -# /ads/middle/* (easylistchina+easylist.txt: 12537) -/(.*/)?ads/middle/.* -# /ads/menu_ (easylistchina+easylist.txt: 12536) -/(.*/)?ads/menu_ -# /ads/masthead_ (easylistchina+easylist.txt: 12535) -/(.*/)?ads/masthead_ -# /ads/marketing/* (easylistchina+easylist.txt: 12534) -/(.*/)?ads/marketing/.* -# /ads/main. (easylistchina+easylist.txt: 12533) -/(.*/)?ads/main\. -# /ads/load. (easylistchina+easylist.txt: 12532) -/(.*/)?ads/load\. -# /ads/leaderbox. (easylistchina+easylist.txt: 12531) -/(.*/)?ads/leaderbox\. -# /ads/leaderboard_ (easylistchina+easylist.txt: 12530) -/(.*/)?ads/leaderboard_ -# /ads/leaderboard? (easylistchina+easylist.txt: 12529) -/(.*/)?ads/leaderboard\? -# /ads/leaderboard/* (easylistchina+easylist.txt: 12528) -/(.*/)?ads/leaderboard/.* -# /ads/leaderboard. (easylistchina+easylist.txt: 12527) -/(.*/)?ads/leaderboard\. -# /ads/leaderboard- (easylistchina+easylist.txt: 12526) -/(.*/)?ads/leaderboard- -# /ads/layer. (easylistchina+easylist.txt: 12525) -/(.*/)?ads/layer\. -# /ads/labels/* (easylistchina+easylist.txt: 12524) -/(.*/)?ads/labels/.* -# /ads/jsbannertext. (easylistchina+easylist.txt: 12523) -/(.*/)?ads/jsbannertext\. -# /ads/js_ (easylistchina+easylist.txt: 12522) -/(.*/)?ads/js_ -# /ads/js/* (easylistchina+easylist.txt: 12521) -/(.*/)?ads/js/.* -# /ads/js. (easylistchina+easylist.txt: 12520) -/(.*/)?ads/js\. -# /ads/interstitial/* (easylistchina+easylist.txt: 12519) -/(.*/)?ads/interstitial/.* -# /ads/interstitial. (easylistchina+easylist.txt: 12518) -/(.*/)?ads/interstitial\. -# /ads/inner_ (easylistchina+easylist.txt: 12517) -/(.*/)?ads/inner_ -# /ads/inline. (easylistchina+easylist.txt: 12516) -/(.*/)?ads/inline\. -# /Ads/InFullScreen. (easylistchina+easylist.txt: 12515) -/(.*/)?Ads/InFullScreen\. -# /ads/indexsponsors/* (easylistchina+easylist.txt: 12514) -/(.*/)?ads/indexsponsors/.* -# /ads/index. (easylistchina+easylist.txt: 12513) -/(.*/)?ads/index\. -# /ads/index- (easylistchina+easylist.txt: 12512) -/(.*/)?ads/index- -# /ads/img/* (easylistchina+easylist.txt: 12511) -/(.*/)?ads/img/.* -# /ads/imbox- (easylistchina+easylist.txt: 12510) -/(.*/)?ads/imbox- -# /ads/images/* (easylistchina+easylist.txt: 12509) -/(.*/)?ads/images/.* -# /ads/image/* (easylistchina+easylist.txt: 12508) -/(.*/)?ads/image/.* -# /ads/im2. (easylistchina+easylist.txt: 12507) -/(.*/)?ads/im2\. -# /ads/iframe (easylistchina+easylist.txt: 12506) -/(.*/)?ads/iframe -# /ads/htmlparser. (easylistchina+easylist.txt: 12505) -/(.*/)?ads/htmlparser\. -# /ads/html/* (easylistchina+easylist.txt: 12504) -/(.*/)?ads/html/.* -# /ads/house_ (easylistchina+easylist.txt: 12503) -/(.*/)?ads/house_ -# /ads/house/* (easylistchina+easylist.txt: 12502) -/(.*/)?ads/house/.* -# /ads/horizontal/* (easylistchina+easylist.txt: 12501) -/(.*/)?ads/horizontal/.* -# /ads/homepage/* (easylistchina+easylist.txt: 12500) -/(.*/)?ads/homepage/.* -# /ads/home/* (easylistchina+easylist.txt: 12499) -/(.*/)?ads/home/.* -# /ads/header_ (easylistchina+easylist.txt: 12498) -/(.*/)?ads/header_ -# /ads/header/* (easylistchina+easylist.txt: 12497) -/(.*/)?ads/header/.* -# /ads/header- (easylistchina+easylist.txt: 12496) -/(.*/)?ads/header- -# /ads/head. (easylistchina+easylist.txt: 12495) -/(.*/)?ads/head\. -# /ads/gray/* (easylistchina+easylist.txt: 12494) -/(.*/)?ads/gray/.* -# /ads/gpt_ (easylistchina+easylist.txt: 12493) -/(.*/)?ads/gpt_ -# /ads/gpt/* (easylistchina+easylist.txt: 12492) -/(.*/)?ads/gpt/.* -# /ads/google_ (easylistchina+easylist.txt: 12491) -/(.*/)?ads/google_ -# /ads/google2. (easylistchina+easylist.txt: 12490) -/(.*/)?ads/google2\. -# /ads/google1. (easylistchina+easylist.txt: 12489) -/(.*/)?ads/google1\. -# /ads/generator/* (easylistchina+easylist.txt: 12488) -/(.*/)?ads/generator/.* -# /ads/generatedHTML/* (easylistchina+easylist.txt: 12487) -/(.*/)?ads/generatedHTML/.* -# /ads/g/* (easylistchina+easylist.txt: 12486) -/(.*/)?ads/g/.* -# /ads/freewheel/* (easylistchina+easylist.txt: 12485) -/(.*/)?ads/freewheel/.* -# /ads/footer_ (easylistchina+easylist.txt: 12484) -/(.*/)?ads/footer_ -# /ads/footer. (easylistchina+easylist.txt: 12483) -/(.*/)?ads/footer\. -# /ads/footer- (easylistchina+easylist.txt: 12482) -/(.*/)?ads/footer- -# /ads/flashbanners/* (easylistchina+easylist.txt: 12481) -/(.*/)?ads/flashbanners/.* -# /ads/flash_ (easylistchina+easylist.txt: 12480) -/(.*/)?ads/flash_ -# /ads/flash/* (easylistchina+easylist.txt: 12479) -/(.*/)?ads/flash/.* -# /ads/fb- (easylistchina+easylist.txt: 12478) -/(.*/)?ads/fb- -# /ads/exit. (easylistchina+easylist.txt: 12477) -/(.*/)?ads/exit\. -# /ads/empty. (easylistchina+easylist.txt: 12476) -/(.*/)?ads/empty\. -# /ads/elementViewability. (easylistchina+easylist.txt: 12475) -/(.*/)?ads/elementViewability\. -# /ads/displaytrust. (easylistchina+easylist.txt: 12474) -/(.*/)?ads/displaytrust\. -# /ads/display/* (easylistchina+easylist.txt: 12473) -/(.*/)?ads/display/.* -# /ads/directory/* (easylistchina+easylist.txt: 12472) -/(.*/)?ads/directory/.* -# /ads/dhtml/* (easylistchina+easylist.txt: 12471) -/(.*/)?ads/dhtml/.* -# /ads/dfp/* (easylistchina+easylist.txt: 12470) -/(.*/)?ads/dfp/.* -# /ads/dfp. (easylistchina+easylist.txt: 12469) -/(.*/)?ads/dfp\. -# /ads/design- (easylistchina+easylist.txt: 12468) -/(.*/)?ads/design- -# /ads/default_ (easylistchina+easylist.txt: 12467) -/(.*/)?ads/default_ -# /ads/dart. (easylistchina+easylist.txt: 12466) -/(.*/)?ads/dart\. -# /ads/daily_ (easylistchina+easylist.txt: 12465) -/(.*/)?ads/daily_ -# /ads/daily. (easylistchina+easylist.txt: 12464) -/(.*/)?ads/daily\. -# /ads/cube- (easylistchina+easylist.txt: 12463) -/(.*/)?ads/cube- -# /ads/creatives/* (easylistchina+easylist.txt: 12462) -/(.*/)?ads/creatives/.* -# /ads/create_ (easylistchina+easylist.txt: 12461) -/(.*/)?ads/create_ -# /ads/contextuallinks/* (easylistchina+easylist.txt: 12460) -/(.*/)?ads/contextuallinks/.* -# /ads/contextual_ (easylistchina+easylist.txt: 12459) -/(.*/)?ads/contextual_ -# /ads/contextual. (easylistchina+easylist.txt: 12458) -/(.*/)?ads/contextual\. -# /ads/configuration/* (easylistchina+easylist.txt: 12457) -/(.*/)?ads/configuration/.* -# /ads/config/* (easylistchina+easylist.txt: 12456) -/(.*/)?ads/config/.* -# /ads/common/* (easylistchina+easylist.txt: 12455) -/(.*/)?ads/common/.* -# /ads/cnvideo/* (easylistchina+easylist.txt: 12454) -/(.*/)?ads/cnvideo/.* -# /ads/click_ (easylistchina+easylist.txt: 12453) -/(.*/)?ads/click_ -# /ads/checkViewport. (easylistchina+easylist.txt: 12452) -/(.*/)?ads/checkViewport\. -# /ads/center. (easylistchina+easylist.txt: 12451) -/(.*/)?ads/center\. -# /ads/center- (easylistchina+easylist.txt: 12450) -/(.*/)?ads/center- -# /ads/cbr. (easylistchina+easylist.txt: 12449) -/(.*/)?ads/cbr\. -# /Ads/Builder. (easylistchina+easylist.txt: 12448) -/(.*/)?Ads/Builder\. -# /ads/btbuckets/* (easylistchina+easylist.txt: 12447) -/(.*/)?ads/btbuckets/.* -# /ads/bt/* (easylistchina+easylist.txt: 12446) -/(.*/)?ads/bt/.* -# /ads/branding/* (easylistchina+easylist.txt: 12445) -/(.*/)?ads/branding/.* -# /ads/box/* (easylistchina+easylist.txt: 12444) -/(.*/)?ads/box/.* -# /ads/bottom/* (easylistchina+easylist.txt: 12443) -/(.*/)?ads/bottom/.* -# /ads/bottom. (easylistchina+easylist.txt: 12442) -/(.*/)?ads/bottom\. -# /ads/blank. (easylistchina+easylist.txt: 12441) -/(.*/)?ads/blank\. -# /Ads/Biz_ (easylistchina+easylist.txt: 12440) -/(.*/)?Ads/Biz_ -# /ads/bilar/* (easylistchina+easylist.txt: 12439) -/(.*/)?ads/bilar/.* -# /ads/behicon. (easylistchina+easylist.txt: 12438) -/(.*/)?ads/behicon\. -# /ads/beacon. (easylistchina+easylist.txt: 12437) -/(.*/)?ads/beacon\. -# /ads/base. (easylistchina+easylist.txt: 12436) -/(.*/)?ads/base\. -# /ads/banners/* (easylistchina+easylist.txt: 12435) -/(.*/)?ads/banners/.* -# /ads/banner_ (easylistchina+easylist.txt: 12434) -/(.*/)?ads/banner_ -# /ads/banner01. (easylistchina+easylist.txt: 12433) -/(.*/)?ads/banner01\. -# /ads/banner/* (easylistchina+easylist.txt: 12432) -/(.*/)?ads/banner/.* -# /ads/banner. (easylistchina+easylist.txt: 12431) -/(.*/)?ads/banner\. -# /ads/banner- (easylistchina+easylist.txt: 12430) -/(.*/)?ads/banner- -# /ads/b/* (easylistchina+easylist.txt: 12429) -/(.*/)?ads/b/.* -# /ads/async/* (easylistchina+easylist.txt: 12428) -/(.*/)?ads/async/.* -# /ads/assets/* (easylistchina+easylist.txt: 12427) -/(.*/)?ads/assets/.* -# /ads/as_header. (easylistchina+easylist.txt: 12426) -/(.*/)?ads/as_header\. -# /ads/aff- (easylistchina+easylist.txt: 12425) -/(.*/)?ads/aff- -# /ads/afc/* (easylistchina+easylist.txt: 12424) -/(.*/)?ads/afc/.* -# /ads/adv/* (easylistchina+easylist.txt: 12423) -/(.*/)?ads/adv/.* -# /ads/ads_ (easylistchina+easylist.txt: 12422) -/(.*/)?ads/ads_ -# /ads/ads/* (easylistchina+easylist.txt: 12421) -/(.*/)?ads/ads/.* -# /ads/ads. (easylistchina+easylist.txt: 12420) -/(.*/)?ads/ads\. -# /ads/ads-$~stylesheet (easylistchina+easylist.txt: 12419) -/(.*/)?ads/ads- -# /Ads/adrp0. (easylistchina+easylist.txt: 12418) -/(.*/)?Ads/adrp0\. -# /ads/adrime/* (easylistchina+easylist.txt: 12417) -/(.*/)?ads/adrime/.* -# /ads/ad_ (easylistchina+easylist.txt: 12416) -/(.*/)?ads/ad_ -# /ads/ad. (easylistchina+easylist.txt: 12415) -/(.*/)?ads/ad\. -# /ads/ad- (easylistchina+easylist.txt: 12414) -/(.*/)?ads/ad- -# /ads/acctid= (easylistchina+easylist.txt: 12413) -/(.*/)?ads/acctid= -# /ads/a. (easylistchina+easylist.txt: 12412) -/(.*/)?ads/a\. -# /ads/?QAPS_ (easylistchina+easylist.txt: 12411) -/(.*/)?ads/\?QAPS_ -# /ads/728b. (easylistchina+easylist.txt: 12410) -/(.*/)?ads/728b\. -# /ads/728. (easylistchina+easylist.txt: 12409) -/(.*/)?ads/728\. -# /ads/468a. (easylistchina+easylist.txt: 12408) -/(.*/)?ads/468a\. -# /ads/468. (easylistchina+easylist.txt: 12407) -/(.*/)?ads/468\. -# /ads/300x120_ (easylistchina+easylist.txt: 12406) -/(.*/)?ads/300x120_ -# /ads/3002. (easylistchina+easylist.txt: 12405) -/(.*/)?ads/3002\. -# /ads/300. (easylistchina+easylist.txt: 12404) -/(.*/)?ads/300\. -# /ads/3.0/* (easylistchina+easylist.txt: 12403) -/(.*/)?ads/3\.0/.* -# /ads/250x120_ (easylistchina+easylist.txt: 12402) -/(.*/)?ads/250x120_ -# /ads/2010/* (easylistchina+easylist.txt: 12401) -/(.*/)?ads/2010/.* -# /ads/2.0/* (easylistchina+easylist.txt: 12400) -/(.*/)?ads/2\.0/.* -# /ads/160/* (easylistchina+easylist.txt: 12399) -/(.*/)?ads/160/.* -# /ads/160. (easylistchina+easylist.txt: 12398) -/(.*/)?ads/160\. -# /ads/125r. (easylistchina+easylist.txt: 12397) -/(.*/)?ads/125r\. -# /ads/125l. (easylistchina+easylist.txt: 12396) -/(.*/)?ads/125l\. -# /ads.w3c. (easylistchina+easylist.txt: 12395) -/(.*/)?ads\.w3c\. -ads.w3c.*. -# /ads.v5.js (easylistchina+easylist.txt: 12394) -/(.*/)?ads\.v5\.js -ads.v5.js*. -# /ads.swf (easylistchina+easylist.txt: 12393) -/(.*/)?ads\.swf -ads.swf*. -# /ads.png (easylistchina+easylist.txt: 12392) -/(.*/)?ads\.png -ads.png*. -# /ads.pl? (easylistchina+easylist.txt: 12391) -/(.*/)?ads\.pl\? -# /ads.php (easylistchina+easylist.txt: 12390) -/(.*/)?ads\.php -ads.php*. -# /ads.pbs (easylistchina+easylist.txt: 12389) -/(.*/)?ads\.pbs -ads.pbs*. -# /ads.jsp (easylistchina+easylist.txt: 12388) -/(.*/)?ads\.jsp -ads.jsp*. -# /ads.json? (easylistchina+easylist.txt: 12387) -/(.*/)?ads\.json\? -# /ads.js? (easylistchina+easylist.txt: 12386) -/(.*/)?ads\.js\? -# /ads.js/* (easylistchina+easylist.txt: 12385) -/(.*/)?ads\.js/.* -ads.js/.* -# /ads.js. (easylistchina+easylist.txt: 12384) -/(.*/)?ads\.js\. -ads.js.*. -# /ads.htm (easylistchina+easylist.txt: 12383) -/(.*/)?ads\.htm -ads.htm*. -# /ads.gif (easylistchina+easylist.txt: 12382) -/(.*/)?ads\.gif -ads.gif*. -# /ads.dll/* (easylistchina+easylist.txt: 12381) -/(.*/)?ads\.dll/.* -ads.dll/.* -# /ads.css (easylistchina+easylist.txt: 12380) -/(.*/)?ads\.css -ads.css*. -# /ads.cfm? (easylistchina+easylist.txt: 12379) -/(.*/)?ads\.cfm\? -# /ads.aspx (easylistchina+easylist.txt: 12378) -/(.*/)?ads\.aspx -ads.aspx*. -# /ads.asp? (easylistchina+easylist.txt: 12377) -/(.*/)?ads\.asp\? -# /Ads.ashx (easylistchina+easylist.txt: 12376) -/(.*/)?Ads\.ashx -Ads.ashx*. -# /ads-top. (easylistchina+easylist.txt: 12375) -/(.*/)?ads-top\. -ads-top.*. -# /ads-sky| (easylistchina+easylist.txt: 12374) -/(.*/)?ads-sky$ -# /ads-skyscraper. (easylistchina+easylist.txt: 12373) -/(.*/)?ads-skyscraper\. -ads-skyscraper.*. -# /ads-service. (easylistchina+easylist.txt: 12372) -/(.*/)?ads-service\. -ads-service.*. -# /ads-segmentjs. (easylistchina+easylist.txt: 12371) -/(.*/)?ads-segmentjs\. -ads-segmentjs.*. -# /ads-scroller- (easylistchina+easylist.txt: 12370) -/(.*/)?ads-scroller- -ads-scroller-*. -# /ads-screen. (easylistchina+easylist.txt: 12369) -/(.*/)?ads-screen\. -ads-screen.*. -# /ads-sa. (easylistchina+easylist.txt: 12368) -/(.*/)?ads-sa\. -ads-sa.*. -# /ads-right. (easylistchina+easylist.txt: 12367) -/(.*/)?ads-right\. -ads-right.*. -# /ads-reviews- (easylistchina+easylist.txt: 12366) -/(.*/)?ads-reviews- -ads-reviews-*. -# /ads-request. (easylistchina+easylist.txt: 12365) -/(.*/)?ads-request\. -ads-request.*. -# /ads-rec| (easylistchina+easylist.txt: 12364) -/(.*/)?ads-rec$ -# /ads-rectangle. (easylistchina+easylist.txt: 12363) -/(.*/)?ads-rectangle\. -ads-rectangle.*. -# /ads-pd. (easylistchina+easylist.txt: 12362) -/(.*/)?ads-pd\. -ads-pd.*. -# /ads-nodep. (easylistchina+easylist.txt: 12361) -/(.*/)?ads-nodep\. -ads-nodep.*. -# /ads-new. (easylistchina+easylist.txt: 12360) -/(.*/)?ads-new\. -ads-new.*. -# /ads-net. (easylistchina+easylist.txt: 12359) -/(.*/)?ads-net\. -ads-net.*. -# /ads-min. (easylistchina+easylist.txt: 12358) -/(.*/)?ads-min\. -ads-min.*. -# /ads-leader| (easylistchina+easylist.txt: 12357) -/(.*/)?ads-leader$ -# /ads-holder. (easylistchina+easylist.txt: 12356) -/(.*/)?ads-holder\. -ads-holder.*. -# /ads-header- (easylistchina+easylist.txt: 12355) -/(.*/)?ads-header- -ads-header-*. -# /ads-gpt. (easylistchina+easylist.txt: 12354) -/(.*/)?ads-gpt\. -ads-gpt.*. -# /ads-footer. (easylistchina+easylist.txt: 12353) -/(.*/)?ads-footer\. -ads-footer.*. -# /ads-foot. (easylistchina+easylist.txt: 12352) -/(.*/)?ads-foot\. -ads-foot.*. -# /ads-common. (easylistchina+easylist.txt: 12351) -/(.*/)?ads-common\. -ads-common.*. -# /ads-blogs- (easylistchina+easylist.txt: 12350) -/(.*/)?ads-blogs- -ads-blogs-*. -# /ads-banner (easylistchina+easylist.txt: 12349) -/(.*/)?ads-banner -ads-banner*. -# /ads-arc. (easylistchina+easylist.txt: 12348) -/(.*/)?ads-arc\. -ads-arc.*. -# /ads-admin. (easylistchina+easylist.txt: 12347) -/(.*/)?ads-admin\. -ads-admin.*. -# /ads-300. (easylistchina+easylist.txt: 12346) -/(.*/)?ads-300\. -ads-300.*. -# /ads-300- (easylistchina+easylist.txt: 12345) -/(.*/)?ads-300- -ads-300-*. -# /ads-250. (easylistchina+easylist.txt: 12344) -/(.*/)?ads-250\. -ads-250.*. -# /ads-2. (easylistchina+easylist.txt: 12343) -/(.*/)?ads-2\. -ads-2.*. -# /ads-1. (easylistchina+easylist.txt: 12342) -/(.*/)?ads-1\. -ads-1.*. -# /ads-07. (easylistchina+easylist.txt: 12341) -/(.*/)?ads-07\. -ads-07.*. -# /ads-06. (easylistchina+easylist.txt: 12340) -/(.*/)?ads-06\. -ads-06.*. -# /ads-05. (easylistchina+easylist.txt: 12339) -/(.*/)?ads-05\. -ads-05.*. -# /ads-04. (easylistchina+easylist.txt: 12338) -/(.*/)?ads-04\. -ads-04.*. -# /ads-03. (easylistchina+easylist.txt: 12337) -/(.*/)?ads-03\. -ads-03.*. -# /ads-02. (easylistchina+easylist.txt: 12336) -/(.*/)?ads-02\. -ads-02.*. -# /ads-01. (easylistchina+easylist.txt: 12335) -/(.*/)?ads-01\. -ads-01.*. -# /adruptive. (easylistchina+easylist.txt: 12334) -/(.*/)?adruptive\. -adruptive.*. -# /adrun. (easylistchina+easylist.txt: 12333) -/(.*/)?adrun\. -adrun.*. -# /adrotv2. (easylistchina+easylist.txt: 12332) -/(.*/)?adrotv2\. -adrotv2.*. -# /adrotator_ (easylistchina+easylist.txt: 12331) -/(.*/)?adrotator_ -# /adrotator2. (easylistchina+easylist.txt: 12330) -/(.*/)?adrotator2\. -adrotator2.*. -# /adrotator/* (easylistchina+easylist.txt: 12329) -/(.*/)?adrotator/.* -# /adrotator. (easylistchina+easylist.txt: 12328) -/(.*/)?adrotator\. -adrotator.*. -# /adrotation. (easylistchina+easylist.txt: 12327) -/(.*/)?adrotation\. -adrotation.*. -# /adrotate/* (easylistchina+easylist.txt: 12326) -/(.*/)?adrotate/.* -# /adrotate. (easylistchina+easylist.txt: 12325) -/(.*/)?adrotate\. -adrotate.*. -# /adrotate- (easylistchina+easylist.txt: 12324) -/(.*/)?adrotate- -adrotate-*. -# /adrotat. (easylistchina+easylist.txt: 12323) -/(.*/)?adrotat\. -adrotat.*. -# /adrot_ (easylistchina+easylist.txt: 12322) -/(.*/)?adrot_ -# /adrot. (easylistchina+easylist.txt: 12321) -/(.*/)?adrot\. -adrot.*. -# /adroot/* (easylistchina+easylist.txt: 12320) -/(.*/)?adroot/.* -# /adrollpixel. (easylistchina+easylist.txt: 12319) -/(.*/)?adrollpixel\. -adrollpixel.*. -# /adroller. (easylistchina+easylist.txt: 12318) -/(.*/)?adroller\. -adroller.*. -# /adRoll. (easylistchina+easylist.txt: 12317) -/(.*/)?adRoll\. -adRoll.*. -# /adrolays. (easylistchina+easylist.txt: 12316) -/(.*/)?adrolays\. -adrolays.*. -# /adrobot. (easylistchina+easylist.txt: 12315) -/(.*/)?adrobot\. -adrobot.*. -# /adriver_$~object-subrequest (easylistchina+easylist.txt: 12314) -/(.*/)?adriver_ -# /adriver/* (easylistchina+easylist.txt: 12313) -/(.*/)?adriver/.* -# /adriver.$~object-subrequest (easylistchina+easylist.txt: 12312) -/(.*/)?adriver\. -adriver.*. -# /adrightcol. (easylistchina+easylist.txt: 12311) -/(.*/)?adrightcol\. -adrightcol.*. -# /adright/* (easylistchina+easylist.txt: 12310) -/(.*/)?adright/.* -# /adright. (easylistchina+easylist.txt: 12309) -/(.*/)?adright\. -adright.*. -# /adrevolver/* (easylistchina+easylist.txt: 12308) -/(.*/)?adrevolver/.* -# /adrevenue/* (easylistchina+easylist.txt: 12307) -/(.*/)?adrevenue/.* -# /adrequisitor- (easylistchina+easylist.txt: 12306) -/(.*/)?adrequisitor- -adrequisitor-*. -# /adrequestvo. (easylistchina+easylist.txt: 12305) -/(.*/)?adrequestvo\. -adrequestvo.*. -# /adrequests. (easylistchina+easylist.txt: 12304) -/(.*/)?adrequests\. -adrequests.*. -# /adrequest. (easylistchina+easylist.txt: 12303) -/(.*/)?adrequest\. -adrequest.*. -# /adreplace728x90. (easylistchina+easylist.txt: 12302) -/(.*/)?adreplace728x90\. -adreplace728x90.*. -# /adreplace160x600. (easylistchina+easylist.txt: 12301) -/(.*/)?adreplace160x600\. -adreplace160x600.*. -# /adreplace/* (easylistchina+easylist.txt: 12300) -/(.*/)?adreplace/.* -# /adrendererfactory. (easylistchina+easylist.txt: 12299) -/(.*/)?adrendererfactory\. -adrendererfactory.*. -# /adremote. (easylistchina+easylist.txt: 12298) -/(.*/)?adremote\. -adremote.*. -# /adreload? (easylistchina+easylist.txt: 12297) -/(.*/)?adreload\? -# /adreload. (easylistchina+easylist.txt: 12296) -/(.*/)?adreload\. -adreload.*. -# /adrelated. (easylistchina+easylist.txt: 12295) -/(.*/)?adrelated\. -adrelated.*. -# /adrefresh. (easylistchina+easylist.txt: 12294) -/(.*/)?adrefresh\. -adrefresh.*. -# /adrefresh- (easylistchina+easylist.txt: 12293) -/(.*/)?adrefresh- -adrefresh-*. -# /adrectanglebanner? (easylistchina+easylist.txt: 12292) -/(.*/)?adrectanglebanner\? -# /adrec. (easylistchina+easylist.txt: 12291) -/(.*/)?adrec\. -adrec.*. -# /adreadytractions. (easylistchina+easylist.txt: 12290) -/(.*/)?adreadytractions\. -adreadytractions.*. -# /adreactor/* (easylistchina+easylist.txt: 12289) -/(.*/)?adreactor/.* -# /adrawdata/* (easylistchina+easylist.txt: 12288) -/(.*/)?adrawdata/.* -# /adratio. (easylistchina+easylist.txt: 12287) -/(.*/)?adratio\. -adratio.*. -# /adquality/* (easylistchina+easylist.txt: 12286) -/(.*/)?adquality/.* -# /AdPub/* (easylistchina+easylist.txt: 12285) -/(.*/)?AdPub/.* -# /adproxy/* (easylistchina+easylist.txt: 12284) -/(.*/)?adproxy/.* -# /adproxy. (easylistchina+easylist.txt: 12283) -/(.*/)?adproxy\. -adproxy.*. -# /adprovider. (easylistchina+easylist.txt: 12282) -/(.*/)?adprovider\. -adprovider.*. -# /adprove_ (easylistchina+easylist.txt: 12281) -/(.*/)?adprove_ -# /adproducts/* (easylistchina+easylist.txt: 12280) -/(.*/)?adproducts/.* -# /adprime. (easylistchina+easylist.txt: 12279) -/(.*/)?adprime\. -adprime.*. -# /AdPreview/* (easylistchina+easylist.txt: 12278) -/(.*/)?AdPreview/.* -# /AdPostInjectAsync. (easylistchina+easylist.txt: 12277) -/(.*/)?AdPostInjectAsync\. -AdPostInjectAsync.*. -# /adpositionsizein- (easylistchina+easylist.txt: 12276) -/(.*/)?adpositionsizein- -adpositionsizein-*. -# /adPositions. (easylistchina+easylist.txt: 12275) -/(.*/)?adPositions\. -adPositions.*. -# /adpopup. (easylistchina+easylist.txt: 12274) -/(.*/)?adpopup\. -adpopup.*. -# /adpop32. (easylistchina+easylist.txt: 12273) -/(.*/)?adpop32\. -adpop32.*. -# /adpop. (easylistchina+easylist.txt: 12272) -/(.*/)?adpop\. -adpop.*. -# /adpool/* (easylistchina+easylist.txt: 12271) -/(.*/)?adpool/.* -# /adpolestar/* (easylistchina+easylist.txt: 12270) -/(.*/)?adpolestar/.* -# /adpoint. (easylistchina+easylist.txt: 12269) -/(.*/)?adpoint\. -adpoint.*. -# /adplugin_ (easylistchina+easylist.txt: 12268) -/(.*/)?adplugin_ -# /adplugin. (easylistchina+easylist.txt: 12267) -/(.*/)?adplugin\. -adplugin.*. -# /adplayer/* (easylistchina+easylist.txt: 12266) -/(.*/)?adplayer/.* -# /adplayer. (easylistchina+easylist.txt: 12265) -/(.*/)?adplayer\. -adplayer.*. -# /adplayer- (easylistchina+easylist.txt: 12264) -/(.*/)?adplayer- -adplayer-*. -# /adplay. (easylistchina+easylist.txt: 12263) -/(.*/)?adplay\. -adplay.*. -# /adplacement. (easylistchina+easylist.txt: 12262) -/(.*/)?adplacement\. -adplacement.*. -# /adplace5_ (easylistchina+easylist.txt: 12261) -/(.*/)?adplace5_ -# /adplace/* (easylistchina+easylist.txt: 12260) -/(.*/)?adplace/.* -# /adpix/* (easylistchina+easylist.txt: 12259) -/(.*/)?adpix/.* -# /adping. (easylistchina+easylist.txt: 12258) -/(.*/)?adping\. -adping.*. -# /adpictures/* (easylistchina+easylist.txt: 12257) -/(.*/)?adpictures/.* -# /adpicture2| (easylistchina+easylist.txt: 12256) -/(.*/)?adpicture2$ -# /adpicture2. (easylistchina+easylist.txt: 12255) -/(.*/)?adpicture2\. -adpicture2.*. -# /adpicture1| (easylistchina+easylist.txt: 12254) -/(.*/)?adpicture1$ -# /adpicture1. (easylistchina+easylist.txt: 12253) -/(.*/)?adpicture1\. -adpicture1.*. -# /adpicture. (easylistchina+easylist.txt: 12252) -/(.*/)?adpicture\. -adpicture.*. -# /adpic/* (easylistchina+easylist.txt: 12251) -/(.*/)?adpic/.* -# /adpic. (easylistchina+easylist.txt: 12250) -/(.*/)?adpic\. -adpic.*. -# /adperfdemo. (easylistchina+easylist.txt: 12248) -/(.*/)?adperfdemo\. -adperfdemo.*. -# /adperf_ (easylistchina+easylist.txt: 12247) -/(.*/)?adperf_ -# /adpeeps/* (easylistchina+easylist.txt: 12246) -/(.*/)?adpeeps/.* -# /adpeeps. (easylistchina+easylist.txt: 12245) -/(.*/)?adpeeps\. -adpeeps.*. -# /adpatch. (easylistchina+easylist.txt: 12244) -/(.*/)?adpatch\. -adpatch.*. -# /adparts/* (easylistchina+easylist.txt: 12243) -/(.*/)?adparts/.* -# /adpartner. (easylistchina+easylist.txt: 12242) -/(.*/)?adpartner\. -adpartner.*. -# /adpanelcontent. (easylistchina+easylist.txt: 12241) -/(.*/)?adpanelcontent\. -adpanelcontent.*. -# /adpanel/* (easylistchina+easylist.txt: 12240) -/(.*/)?adpanel/.* -# /adpan/* (easylistchina+easylist.txt: 12239) -/(.*/)?adpan/.* -# /adpages/* (easylistchina+easylist.txt: 12238) -/(.*/)?adpages/.* -# /adpagem. (easylistchina+easylist.txt: 12237) -/(.*/)?adpagem\. -adpagem.*. -# /adpage/* (easylistchina+easylist.txt: 12236) -/(.*/)?adpage/.* -# /adpage. (easylistchina+easylist.txt: 12235) -/(.*/)?adpage\. -adpage.*. -# /adpage- (easylistchina+easylist.txt: 12234) -/(.*/)?adpage- -adpage-*. -# /adp.htm (easylistchina+easylist.txt: 12233) -/(.*/)?adp\.htm -adp.htm*. -# /adp-pro/* (easylistchina+easylist.txt: 12232) -/(.*/)?adp-pro/.* -# /adoverride. (easylistchina+easylist.txt: 12231) -/(.*/)?adoverride\. -adoverride.*. -# /adoverlayplugin. (easylistchina+easylist.txt: 12230) -/(.*/)?adoverlayplugin\. -adoverlayplugin.*. -# /adoverlay/* (easylistchina+easylist.txt: 12229) -/(.*/)?adoverlay/.* -# /adoverlay. (easylistchina+easylist.txt: 12228) -/(.*/)?adoverlay\. -adoverlay.*. -# /adotubeplugin. (easylistchina+easylist.txt: 12227) -/(.*/)?adotubeplugin\. -adotubeplugin.*. -# /adotube_adapter. (easylistchina+easylist.txt: 12226) -/(.*/)?adotube_adapter\. -# /ados.js (easylistchina+easylist.txt: 12225) -/(.*/)?ados\.js -ados.js*. -# /adorika728. (easylistchina+easylist.txt: 12224) -/(.*/)?adorika728\. -adorika728.*. -# /adorika300. (easylistchina+easylist.txt: 12223) -/(.*/)?adorika300\. -adorika300.*. -# /adoptions. (easylistchina+easylist.txt: 12222) -/(.*/)?adoptions\. -adoptions.*. -# /adoptionicon. (easylistchina+easylist.txt: 12221) -/(.*/)?adoptionicon\. -adoptionicon.*. -# /AdOptimizer. (easylistchina+easylist.txt: 12220) -/(.*/)?AdOptimizer\. -AdOptimizer.*. -# /adops/* (easylistchina+easylist.txt: 12219) -/(.*/)?adops/.* -# /adops. (easylistchina+easylist.txt: 12218) -/(.*/)?adops\. -adops.*. -# /adonly468. (easylistchina+easylist.txt: 12217) -/(.*/)?adonly468\. -adonly468.*. -# /adonline. (easylistchina+easylist.txt: 12216) -/(.*/)?adonline\. -adonline.*. -# /adometry? (easylistchina+easylist.txt: 12215) -/(.*/)?adometry\? -# /adometry. (easylistchina+easylist.txt: 12214) -/(.*/)?adometry\. -adometry.*. -# /adometry- (easylistchina+easylist.txt: 12213) -/(.*/)?adometry- -adometry-*. -# /adocean. (easylistchina+easylist.txt: 12212) -/(.*/)?adocean\. -adocean.*. -# /adobject. (easylistchina+easylist.txt: 12211) -/(.*/)?adobject\. -adobject.*. -# /adnotice. (easylistchina+easylist.txt: 12210) -/(.*/)?adnotice\. -adnotice.*. -# /adnl. (easylistchina+easylist.txt: 12209) -/(.*/)?adnl\. -adnl.*. -# /adng.html (easylistchina+easylist.txt: 12208) -/(.*/)?adng\.html -adng.html*. -# /adnexus- (easylistchina+easylist.txt: 12207) -/(.*/)?adnexus- -adnexus-*. -# /AdNewsclip15. (easylistchina+easylist.txt: 12205) -/(.*/)?AdNewsclip15\. -AdNewsclip15.*. -# /AdNewsclip14. (easylistchina+easylist.txt: 12204) -/(.*/)?AdNewsclip14\. -AdNewsclip14.*. -# /adnews. (easylistchina+easylist.txt: 12203) -/(.*/)?adnews\. -adnews.*. -# /adnew2. (easylistchina+easylist.txt: 12202) -/(.*/)?adnew2\. -adnew2.*. -# /adnetwork_ (easylistchina+easylist.txt: 12201) -/(.*/)?adnetwork_ -# /adnetwork468. (easylistchina+easylist.txt: 12200) -/(.*/)?adnetwork468\. -adnetwork468.*. -# /adnetwork300. (easylistchina+easylist.txt: 12199) -/(.*/)?adnetwork300\. -adnetwork300.*. -# /adnetwork/* (easylistchina+easylist.txt: 12198) -/(.*/)?adnetwork/.* -# /adnetmedia. (easylistchina+easylist.txt: 12196) -/(.*/)?adnetmedia\. -adnetmedia.*. -# /adnet2. (easylistchina+easylist.txt: 12195) -/(.*/)?adnet2\. -adnet2.*. -# /ADNet/* (easylistchina+easylist.txt: 12194) -/(.*/)?ADNet/.* -# /adnet. (easylistchina+easylist.txt: 12193) -/(.*/)?adnet\. -adnet.*. -# /adNdsoft/* (easylistchina+easylist.txt: 12192) -/(.*/)?adNdsoft/.* -# /adnap/* (easylistchina+easylist.txt: 12191) -/(.*/)?adnap/.* -# /admonitor. (easylistchina+easylist.txt: 12190) -/(.*/)?admonitor\. -admonitor.*. -# /admonitor- (easylistchina+easylist.txt: 12189) -/(.*/)?admonitor- -admonitor-*. -# /admob. (easylistchina+easylist.txt: 12188) -/(.*/)?admob\. -admob.*. -# /admixer_ (easylistchina+easylist.txt: 12187) -/(.*/)?admixer_ -# /admixer- (easylistchina+easylist.txt: 12186) -/(.*/)?admixer- -admixer-*. -# /adminibanner2. (easylistchina+easylist.txt: 12185) -/(.*/)?adminibanner2\. -adminibanner2.*. -# /admin/sponsors/* (easylistchina+easylist.txt: 12184) -/(.*/)?admin/sponsors/.* -# /admin/banners/* (easylistchina+easylist.txt: 12183) -/(.*/)?admin/banners/.* -# /admin/ad_ (easylistchina+easylist.txt: 12182) -/(.*/)?admin/ad_ -# /admicro_ (easylistchina+easylist.txt: 12181) -/(.*/)?admicro_ -# /admicro2. (easylistchina+easylist.txt: 12180) -/(.*/)?admicro2\. -admicro2.*. -# /admgr. (easylistchina+easylist.txt: 12179) -/(.*/)?admgr\. -admgr.*. -# /admez/* (easylistchina+easylist.txt: 12178) -/(.*/)?admez/.* -# /admez. (easylistchina+easylist.txt: 12177) -/(.*/)?admez\. -admez.*. -# /admeta. (easylistchina+easylist.txt: 12176) -/(.*/)?admeta\. -admeta.*. -# /admentorserve. (easylistchina+easylist.txt: 12175) -/(.*/)?admentorserve\. -admentorserve.*. -# /admentorasp/* (easylistchina+easylist.txt: 12174) -/(.*/)?admentorasp/.* -# /admentor302/* (easylistchina+easylist.txt: 12173) -/(.*/)?admentor302/.* -# /admentor/* (easylistchina+easylist.txt: 12172) -/(.*/)?admentor/.* -# /admeldscript. (easylistchina+easylist.txt: 12171) -/(.*/)?admeldscript\. -admeldscript.*. -# /admeld_ (easylistchina+easylist.txt: 12170) -/(.*/)?admeld_ -# /admeld/* (easylistchina+easylist.txt: 12169) -/(.*/)?admeld/.* -# /admeld. (easylistchina+easylist.txt: 12168) -/(.*/)?admeld\. -admeld.*. -# /admega. (easylistchina+easylist.txt: 12167) -/(.*/)?admega\. -admega.*. -# /admedia/* (easylistchina+easylist.txt: 12166) -/(.*/)?admedia/.* -# /admedia. (easylistchina+easylist.txt: 12165) -/(.*/)?admedia\. -admedia.*. -# /admeasure. (easylistchina+easylist.txt: 12164) -/(.*/)?admeasure\. -admeasure.*. -# /admaxads. (easylistchina+easylist.txt: 12163) -/(.*/)?admaxads\. -admaxads.*. -# /admax/* (easylistchina+easylist.txt: 12162) -/(.*/)?admax/.* -# /admatik. (easylistchina+easylist.txt: 12160) -/(.*/)?admatik\. -admatik.*. -# /admatcherclient. (easylistchina+easylist.txt: 12159) -/(.*/)?admatcherclient\. -admatcherclient.*. -# /admatcher.$~object-subrequest,~xmlhttprequest (easylistchina+easylist.txt: 12158) -/(.*/)?admatcher\. -admatcher.*. -# /admatch- (easylistchina+easylist.txt: 12157) -/(.*/)?admatch- -admatch-*. -# /admaster? (easylistchina+easylist.txt: 12156) -/(.*/)?admaster\? -# /admaster. (easylistchina+easylist.txt: 12155) -/(.*/)?admaster\. -admaster.*. -# /admarvel. (easylistchina+easylist.txt: 12154) -/(.*/)?admarvel\. -admarvel.*. -# /adMarketplace. (easylistchina+easylist.txt: 12153) -/(.*/)?adMarketplace\. -adMarketplace.*. -# /admarket/* (easylistchina+easylist.txt: 12152) -/(.*/)?admarket/.* -# /admarker_ (easylistchina+easylist.txt: 12151) -/(.*/)?admarker_ -# /admarker. (easylistchina+easylist.txt: 12150) -/(.*/)?admarker\. -admarker.*. -# /admantx/* (easylistchina+easylist.txt: 12149) -/(.*/)?admantx/.* -# /admantx. (easylistchina+easylist.txt: 12148) -/(.*/)?admantx\. -admantx.*. -# /admantx- (easylistchina+easylist.txt: 12147) -/(.*/)?admantx- -admantx-*. -# /admanproxy. (easylistchina+easylist.txt: 12146) -/(.*/)?admanproxy\. -admanproxy.*. -# /admanagerstatus/* (easylistchina+easylist.txt: 12145) -/(.*/)?admanagerstatus/.* -# /admanagers/* (easylistchina+easylist.txt: 12144) -/(.*/)?admanagers/.* -# /admanager_ (easylistchina+easylist.txt: 12143) -/(.*/)?admanager_ -# /admanager3. (easylistchina+easylist.txt: 12142) -/(.*/)?admanager3\. -admanager3.*. -# /admanager/*$~object-subrequest (easylistchina+easylist.txt: 12141) -/(.*/)?admanager/.* -# /admanager.$~object-subrequest (easylistchina+easylist.txt: 12140) -/(.*/)?admanager\. -admanager.*. -# /admanagementadvanced. (easylistchina+easylist.txt: 12139) -/(.*/)?admanagementadvanced\. -admanagementadvanced.*. -# /admanagement/* (easylistchina+easylist.txt: 12138) -/(.*/)?admanagement/.* -# /adman/* (easylistchina+easylist.txt: 12137) -/(.*/)?adman/.* -# /adman. (easylistchina+easylist.txt: 12136) -/(.*/)?adman\. -adman.*. -# /adman- (easylistchina+easylist.txt: 12135) -/(.*/)?adman- -adman-*. -# /admain| (easylistchina+easylist.txt: 12134) -/(.*/)?admain$ -# /admain. (easylistchina+easylist.txt: 12133) -/(.*/)?admain\. -admain.*. -# /adm/ad/* (easylistchina+easylist.txt: 12132) -/(.*/)?adm/ad/.* -# /adlog.php? (easylistchina+easylist.txt: 12131) -/(.*/)?adlog\.php\? -# /adlock300. (easylistchina+easylist.txt: 12130) -/(.*/)?adlock300\. -adlock300.*. -# /adloader. (easylistchina+easylist.txt: 12129) -/(.*/)?adloader\. -adloader.*. -# /adload. (easylistchina+easylist.txt: 12128) -/(.*/)?adload\. -adload.*. -# /adlist_ (easylistchina+easylist.txt: 12127) -/(.*/)?adlist_ -# /adlinks_ (easylistchina+easylist.txt: 12126) -/(.*/)?adlinks_ -# /adlinks2. (easylistchina+easylist.txt: 12125) -/(.*/)?adlinks2\. -adlinks2.*. -# /adlinks. (easylistchina+easylist.txt: 12124) -/(.*/)?adlinks\. -adlinks.*. -# /adlink_ (easylistchina+easylist.txt: 12123) -/(.*/)?adlink_ -# /adLink728. (easylistchina+easylist.txt: 12122) -/(.*/)?adLink728\. -adLink728.*. -# /adlink/* (easylistchina+easylist.txt: 12121) -/(.*/)?adlink/.* -# /adlink. (easylistchina+easylist.txt: 12120) -/(.*/)?adlink\. -adlink.*. -# /adlink- (easylistchina+easylist.txt: 12119) -/(.*/)?adlink- -adlink-*. -# /adlift4_ (easylistchina+easylist.txt: 12117) -/(.*/)?adlift4_ -# /adlift4. (easylistchina+easylist.txt: 12116) -/(.*/)?adlift4\. -adlift4.*. -# /adlib. (easylistchina+easylist.txt: 12115) -/(.*/)?adlib\. -adlib.*. -# /adlesse. (easylistchina+easylist.txt: 12114) -/(.*/)?adlesse\. -adlesse.*. -# /adlens- (easylistchina+easylist.txt: 12113) -/(.*/)?adlens- -adlens-*. -# /adleftsidebar. (easylistchina+easylist.txt: 12112) -/(.*/)?adleftsidebar\. -adleftsidebar.*. -# /adleft/* (easylistchina+easylist.txt: 12111) -/(.*/)?adleft/.* -# /adleft. (easylistchina+easylist.txt: 12110) -/(.*/)?adleft\. -adleft.*. -# /adleaderboardtop. (easylistchina+easylist.txt: 12109) -/(.*/)?adleaderboardtop\. -adleaderboardtop.*. -# /adleader. (easylistchina+easylist.txt: 12108) -/(.*/)?adleader\. -adleader.*. -# /adlead. (easylistchina+easylist.txt: 12107) -/(.*/)?adlead\. -adlead.*. -# /adlayer/* (easylistchina+easylist.txt: 12106) -/(.*/)?adlayer/.* -# /adlayer. (easylistchina+easylist.txt: 12105) -/(.*/)?adlayer\. -adlayer.*. -# /adlargefooter2. (easylistchina+easylist.txt: 12104) -/(.*/)?adlargefooter2\. -adlargefooter2.*. -# /adlargefooter. (easylistchina+easylist.txt: 12103) -/(.*/)?adlargefooter\. -adlargefooter.*. -# /adlantisloader. (easylistchina+easylist.txt: 12102) -/(.*/)?adlantisloader\. -adlantisloader.*. -# /adlantis. (easylistchina+easylist.txt: 12101) -/(.*/)?adlantis\. -adlantis.*. -# /adlandr. (easylistchina+easylist.txt: 12100) -/(.*/)?adlandr\. -adlandr.*. -# /AdLanding. (easylistchina+easylist.txt: 12099) -/(.*/)?AdLanding\. -AdLanding.*. -# /adlabs.js (easylistchina+easylist.txt: 12098) -/(.*/)?adlabs\.js -adlabs.js*. -# /adlabel_ (easylistchina+easylist.txt: 12097) -/(.*/)?adlabel_ -# /adlabel. (easylistchina+easylist.txt: 12096) -/(.*/)?adlabel\. -adlabel.*. -# /adl.php (easylistchina+easylist.txt: 12095) -/(.*/)?adl\.php -adl.php*. -# /adkeys. (easylistchina+easylist.txt: 12094) -/(.*/)?adkeys\. -adkeys.*. -# /adjuggler? (easylistchina+easylist.txt: 12093) -/(.*/)?adjuggler\? -# /adjug. (easylistchina+easylist.txt: 12092) -/(.*/)?adjug\. -adjug.*. -# /adjsmp. (easylistchina+easylist.txt: 12091) -/(.*/)?adjsmp\. -adjsmp.*. -# /adjs_ (easylistchina+easylist.txt: 12090) -/(.*/)?adjs_ -# /adjs? (easylistchina+easylist.txt: 12089) -/(.*/)?adjs\? -# /adjs/* (easylistchina+easylist.txt: 12088) -/(.*/)?adjs/.* -# /adjs. (easylistchina+easylist.txt: 12087) -/(.*/)?adjs\. -adjs.*. -# /adjk. (easylistchina+easylist.txt: 12086) -/(.*/)?adjk\. -adjk.*. -# /adj.php? (easylistchina+easylist.txt: 12085) -/(.*/)?adj\.php\? -# /adixs. (easylistchina+easylist.txt: 12084) -/(.*/)?adixs\. -adixs.*. -# /adition. (easylistchina+easylist.txt: 12083) -/(.*/)?adition\. -adition.*. -# /adiquity. (easylistchina+easylist.txt: 12081) -/(.*/)?adiquity\. -adiquity.*. -# /adinterax. (easylistchina+easylist.txt: 12080) -/(.*/)?adinterax\. -adinterax.*. -# /adinsertjuicy. (easylistchina+easylist.txt: 12079) -/(.*/)?adinsertjuicy\. -adinsertjuicy.*. -# /adinsertionplugin. (easylistchina+easylist.txt: 12078) -/(.*/)?adinsertionplugin\. -adinsertionplugin.*. -# /adinsert. (easylistchina+easylist.txt: 12077) -/(.*/)?adinsert\. -adinsert.*. -# /adinjector_ (easylistchina+easylist.txt: 12076) -/(.*/)?adinjector_ -# /adinjector. (easylistchina+easylist.txt: 12075) -/(.*/)?adinjector\. -adinjector.*. -# /adinject. (easylistchina+easylist.txt: 12074) -/(.*/)?adinject\. -adinject.*. -# /adinit. (easylistchina+easylist.txt: 12073) -/(.*/)?adinit\. -adinit.*. -# /adindicatortext. (easylistchina+easylist.txt: 12072) -/(.*/)?adindicatortext\. -adindicatortext.*. -# /adindex/* (easylistchina+easylist.txt: 12071) -/(.*/)?adindex/.* -# /adinclude/* (easylistchina+easylist.txt: 12070) -/(.*/)?adinclude/.* -# /adinclude. (easylistchina+easylist.txt: 12069) -/(.*/)?adinclude\. -adinclude.*. -# /adinator/* (easylistchina+easylist.txt: 12068) -/(.*/)?adinator/.* -# /adimg/* (easylistchina+easylist.txt: 12067) -/(.*/)?adimg/.* -# /adimg. (easylistchina+easylist.txt: 12066) -/(.*/)?adimg\. -adimg.*. -# /adimages/*$~subdocument (easylistchina+easylist.txt: 12065) -/(.*/)?adimages/.* -# /adimages. (easylistchina+easylist.txt: 12064) -/(.*/)?adimages\. -adimages.*. -# /adimage? (easylistchina+easylist.txt: 12063) -/(.*/)?adimage\? -# /adimage/* (easylistchina+easylist.txt: 12062) -/(.*/)?adimage/.* -# /adimage. (easylistchina+easylist.txt: 12061) -/(.*/)?adimage\. -adimage.*. -# /adim.html?ad (easylistchina+easylist.txt: 12060) -/(.*/)?adim\.html\?ad -# /adifyoverlay. (easylistchina+easylist.txt: 12059) -/(.*/)?adifyoverlay\. -adifyoverlay.*. -# /adifyids. (easylistchina+easylist.txt: 12058) -/(.*/)?adifyids\. -adifyids.*. -# /adifyad. (easylistchina+easylist.txt: 12057) -/(.*/)?adifyad\. -adifyad.*. -# /adify_ (easylistchina+easylist.txt: 12056) -/(.*/)?adify_ -# /adiframe|*|adtech; (easylistchina+easylist.txt: 12055) -/(.*/)?adiframe\|.*\|adtech; -# /adiframetop. (easylistchina+easylist.txt: 12054) -/(.*/)?adiframetop\. -adiframetop.*. -# /adiframem2. (easylistchina+easylist.txt: 12053) -/(.*/)?adiframem2\. -adiframem2.*. -# /adiframem1. (easylistchina+easylist.txt: 12052) -/(.*/)?adiframem1\. -adiframem1.*. -# /adiframeanchor. (easylistchina+easylist.txt: 12051) -/(.*/)?adiframeanchor\. -adiframeanchor.*. -# /adiframe_ (easylistchina+easylist.txt: 12050) -/(.*/)?adiframe_ -# /adiframe? (easylistchina+easylist.txt: 12049) -/(.*/)?adiframe\? -# /adiframe9. (easylistchina+easylist.txt: 12048) -/(.*/)?adiframe9\. -adiframe9.*. -# /adiframe7. (easylistchina+easylist.txt: 12047) -/(.*/)?adiframe7\. -adiframe7.*. -# /adiframe2. (easylistchina+easylist.txt: 12046) -/(.*/)?adiframe2\. -adiframe2.*. -# /adiframe18. (easylistchina+easylist.txt: 12045) -/(.*/)?adiframe18\. -adiframe18.*. -# /adiframe1. (easylistchina+easylist.txt: 12044) -/(.*/)?adiframe1\. -adiframe1.*. -# /adiframe/* (easylistchina+easylist.txt: 12043) -/(.*/)?adiframe/.* -# /adiframe. (easylistchina+easylist.txt: 12042) -/(.*/)?adiframe\. -adiframe.*. -# /adicon_ (easylistchina+easylist.txt: 12041) -/(.*/)?adicon_ -# /adhug_ (easylistchina+easylist.txt: 12040) -/(.*/)?adhug_ -# /adhub. (easylistchina+easylist.txt: 12039) -/(.*/)?adhub\. -adhub.*. -# /adhtml/* (easylistchina+easylist.txt: 12038) -/(.*/)?adhtml/.* -# /adhref. (easylistchina+easylist.txt: 12037) -/(.*/)?adhref\. -adhref.*. -# /adhood. (easylistchina+easylist.txt: 12035) -/(.*/)?adhood\. -adhood.*. -# /adhomepage2. (easylistchina+easylist.txt: 12034) -/(.*/)?adhomepage2\. -adhomepage2.*. -# /adhomepage. (easylistchina+easylist.txt: 12033) -/(.*/)?adhomepage\. -adhomepage.*. -# /adhints/* (easylistchina+easylist.txt: 12032) -/(.*/)?adhints/.* -# /adhese_ (easylistchina+easylist.txt: 12031) -/(.*/)?adhese_ -# /adhese. (easylistchina+easylist.txt: 12030) -/(.*/)?adhese\. -adhese.*. -# /adheading_ (easylistchina+easylist.txt: 12029) -/(.*/)?adheading_ -# /adheadertxt. (easylistchina+easylist.txt: 12028) -/(.*/)?adheadertxt\. -adheadertxt.*. -# /adheader. (easylistchina+easylist.txt: 12027) -/(.*/)?adheader\. -adheader.*. -# /adhandlers2. (easylistchina+easylist.txt: 12026) -/(.*/)?adhandlers2\. -adhandlers2.*. -# /adhandlers- (easylistchina+easylist.txt: 12025) -/(.*/)?adhandlers- -adhandlers-*. -# /adhandler/*$~subdocument (easylistchina+easylist.txt: 12024) -/(.*/)?adhandler/.* -# /adhandler. (easylistchina+easylist.txt: 12023) -/(.*/)?adhandler\. -adhandler.*. -# /adhalfbanner. (easylistchina+easylist.txt: 12022) -/(.*/)?adhalfbanner\. -adhalfbanner.*. -# /adhads. (easylistchina+easylist.txt: 12021) -/(.*/)?adhads\. -adhads.*. -# /adguru. (easylistchina+easylist.txt: 12020) -/(.*/)?adguru\. -adguru.*. -# /adguard. (easylistchina+easylist.txt: 12019) -/(.*/)?adguard\. -adguard.*. -# /adgraphics/* (easylistchina+easylist.txt: 12018) -/(.*/)?adgraphics/.* -# /adgooglefull2. (easylistchina+easylist.txt: 12017) -/(.*/)?adgooglefull2\. -adgooglefull2.*. -# /adgitize- (easylistchina+easylist.txt: 12016) -/(.*/)?adgitize- -adgitize-*. -# /adgetter. (easylistchina+easylist.txt: 12015) -/(.*/)?adgetter\. -adgetter.*. -# /adGet. (easylistchina+easylist.txt: 12014) -/(.*/)?adGet\. -adGet.*. -# /adgeo/* (easylistchina+easylist.txt: 12013) -/(.*/)?adgeo/.* -# /adgenerator. (easylistchina+easylist.txt: 12012) -/(.*/)?adgenerator\. -adgenerator.*. -# /adgearsegmentation. (easylistchina+easylist.txt: 12011) -/(.*/)?adgearsegmentation\. -adgearsegmentation.*. -# /adgear2- (easylistchina+easylist.txt: 12010) -/(.*/)?adgear2- -adgear2-*. -# /adgear1- (easylistchina+easylist.txt: 12009) -/(.*/)?adgear1- -adgear1-*. -# /adgear/* (easylistchina+easylist.txt: 12008) -/(.*/)?adgear/.* -# /adgear.js (easylistchina+easylist.txt: 12007) -/(.*/)?adgear\.js -adgear.js*. -# /adgalleryheader. (easylistchina+easylist.txt: 12006) -/(.*/)?adgalleryheader\. -adgalleryheader.*. -# /adgallery3| (easylistchina+easylist.txt: 12005) -/(.*/)?adgallery3$ -# /adgallery3. (easylistchina+easylist.txt: 12004) -/(.*/)?adgallery3\. -adgallery3.*. -# /adgallery2| (easylistchina+easylist.txt: 12003) -/(.*/)?adgallery2$ -# /adgallery2. (easylistchina+easylist.txt: 12002) -/(.*/)?adgallery2\. -adgallery2.*. -# /adgallery1| (easylistchina+easylist.txt: 12001) -/(.*/)?adgallery1$ -# /adgallery1. (easylistchina+easylist.txt: 12000) -/(.*/)?adgallery1\. -adgallery1.*. -# /adfunctions. (easylistchina+easylist.txt: 11999) -/(.*/)?adfunctions\. -adfunctions.*. -# /adfunction. (easylistchina+easylist.txt: 11998) -/(.*/)?adfunction\. -adfunction.*. -# /adfuncs. (easylistchina+easylist.txt: 11997) -/(.*/)?adfuncs\. -adfuncs.*. -# /adfshow? (easylistchina+easylist.txt: 11996) -/(.*/)?adfshow\? -# /adfrm. (easylistchina+easylist.txt: 11995) -/(.*/)?adfrm\. -adfrm.*. -# /adfrequencycapping. (easylistchina+easylist.txt: 11994) -/(.*/)?adfrequencycapping\. -adfrequencycapping.*. -# /adframewrapper. (easylistchina+easylist.txt: 11993) -/(.*/)?adframewrapper\. -adframewrapper.*. -# /adframetop. (easylistchina+easylist.txt: 11992) -/(.*/)?adframetop\. -adframetop.*. -# /adframemiddle. (easylistchina+easylist.txt: 11991) -/(.*/)?adframemiddle\. -adframemiddle.*. -# /adframecommon. (easylistchina+easylist.txt: 11990) -/(.*/)?adframecommon\. -adframecommon.*. -# /adframebottom. (easylistchina+easylist.txt: 11989) -/(.*/)?adframebottom\. -adframebottom.*. -# /adframe_ (easylistchina+easylist.txt: 11988) -/(.*/)?adframe_ -# /adframe? (easylistchina+easylist.txt: 11987) -/(.*/)?adframe\? -# /adframe728bot. (easylistchina+easylist.txt: 11986) -/(.*/)?adframe728bot\. -adframe728bot.*. -# /adframe728b2. (easylistchina+easylist.txt: 11985) -/(.*/)?adframe728b2\. -adframe728b2.*. -# /adframe728b. (easylistchina+easylist.txt: 11984) -/(.*/)?adframe728b\. -adframe728b.*. -# /adframe728a. (easylistchina+easylist.txt: 11983) -/(.*/)?adframe728a\. -adframe728a.*. -# /adframe468. (easylistchina+easylist.txt: 11982) -/(.*/)?adframe468\. -adframe468.*. -# /adframe2. (easylistchina+easylist.txt: 11981) -/(.*/)?adframe2\. -adframe2.*. -# /adframe120x240. (easylistchina+easylist.txt: 11980) -/(.*/)?adframe120x240\. -adframe120x240.*. -# /adframe120. (easylistchina+easylist.txt: 11979) -/(.*/)?adframe120\. -adframe120.*. -# /adframe/* (easylistchina+easylist.txt: 11978) -/(.*/)?adframe/.* -# /adframe. (easylistchina+easylist.txt: 11977) -/(.*/)?adframe\. -adframe.*. -# /adfr. (easylistchina+easylist.txt: 11976) -/(.*/)?adfr\. -adfr.*. -# /adfox. (easylistchina+easylist.txt: 11975) -/(.*/)?adfox\. -adfox.*. -# /adforums/* (easylistchina+easylist.txt: 11974) -/(.*/)?adforums/.* -# /adformats/* (easylistchina+easylist.txt: 11973) -/(.*/)?adformats/.* -# /adforge. (easylistchina+easylist.txt: 11972) -/(.*/)?adforge\. -adforge.*. -# /adforgame728x90_ (easylistchina+easylist.txt: 11971) -/(.*/)?adforgame728x90_ -# /adforgame728x90. (easylistchina+easylist.txt: 11970) -/(.*/)?adforgame728x90\. -adforgame728x90.*. -# /adforgame160x600. (easylistchina+easylist.txt: 11969) -/(.*/)?adforgame160x600\. -adforgame160x600.*. -# /adfootright. (easylistchina+easylist.txt: 11968) -/(.*/)?adfootright\. -adfootright.*. -# /adfootleft. (easylistchina+easylist.txt: 11967) -/(.*/)?adfootleft\. -adfootleft.*. -# /adFooterBG. (easylistchina+easylist.txt: 11966) -/(.*/)?adFooterBG\. -adFooterBG.*. -# /adfooter. (easylistchina+easylist.txt: 11965) -/(.*/)?adfooter\. -adfooter.*. -# /adfootcenter. (easylistchina+easylist.txt: 11964) -/(.*/)?adfootcenter\. -adfootcenter.*. -# /adfolder/* (easylistchina+easylist.txt: 11963) -/(.*/)?adfolder/.* -# /adfly/* (easylistchina+easylist.txt: 11962) -/(.*/)?adfly/.* -# /adflashes/* (easylistchina+easylist.txt: 11961) -/(.*/)?adflashes/.* -# /adflash. (easylistchina+easylist.txt: 11960) -/(.*/)?adflash\. -adflash.*. -# /adfillers/* (easylistchina+easylist.txt: 11959) -/(.*/)?adfillers/.* -# /adfiles/* (easylistchina+easylist.txt: 11958) -/(.*/)?adfiles/.* -# /adfiles. (easylistchina+easylist.txt: 11957) -/(.*/)?adfiles\. -adfiles.*. -# /adfile/* (easylistchina+easylist.txt: 11956) -/(.*/)?adfile/.* -# /adfile. (easylistchina+easylist.txt: 11955) -/(.*/)?adfile\. -adfile.*. -# /adfever_ (easylistchina+easylist.txt: 11954) -/(.*/)?adfever_ -# /adfetcher? (easylistchina+easylist.txt: 11953) -/(.*/)?adfetcher\? -# /adfetch? (easylistchina+easylist.txt: 11952) -/(.*/)?adfetch\? -# /adfetch. (easylistchina+easylist.txt: 11951) -/(.*/)?adfetch\. -adfetch.*. -# /adfeedtestview. (easylistchina+easylist.txt: 11950) -/(.*/)?adfeedtestview\. -adfeedtestview.*. -# /adfeedback/* (easylistchina+easylist.txt: 11949) -/(.*/)?adfeedback/.* -# /adfeed. (easylistchina+easylist.txt: 11948) -/(.*/)?adfeed\. -adfeed.*. -# /adfarm/* (easylistchina+easylist.txt: 11947) -/(.*/)?adfarm/.* -# /adfactory_ (easylistchina+easylist.txt: 11944) -/(.*/)?adfactory_ -# /adfactory- (easylistchina+easylist.txt: 11942) -/(.*/)?adfactory- -adfactory-*. -# /adfactor_ (easylistchina+easylist.txt: 11941) -/(.*/)?adfactor_ -# /adfactor/* (easylistchina+easylist.txt: 11940) -/(.*/)?adfactor/.* -# /adf.cgi? (easylistchina+easylist.txt: 11939) -/(.*/)?adf\.cgi\? -# /adexternal. (easylistchina+easylist.txt: 11938) -/(.*/)?adexternal\. -adexternal.*. -# /adexclude/* (easylistchina+easylist.txt: 11937) -/(.*/)?adexclude/.* -# /adexample? (easylistchina+easylist.txt: 11936) -/(.*/)?adexample\? -# /adevents. (easylistchina+easylist.txt: 11935) -/(.*/)?adevents\. -adevents.*. -# /adevent. (easylistchina+easylist.txt: 11934) -/(.*/)?adevent\. -adevent.*. -# /adError/* (easylistchina+easylist.txt: 11933) -/(.*/)?adError/.* -# /aderlee_ads. (easylistchina+easylist.txt: 11932) -/(.*/)?aderlee_ads\. -# /adentry. (easylistchina+easylist.txt: 11931) -/(.*/)?adentry\. -adentry.*. -# /adengine_ (easylistchina+easylist.txt: 11930) -/(.*/)?adengine_ -# /adengine/* (easylistchina+easylist.txt: 11929) -/(.*/)?adengine/.* -# /adengage_ (easylistchina+easylist.txt: 11928) -/(.*/)?adengage_ -# /adengage6. (easylistchina+easylist.txt: 11927) -/(.*/)?adengage6\. -adengage6.*. -# /adengage5. (easylistchina+easylist.txt: 11926) -/(.*/)?adengage5\. -adengage5.*. -# /adengage4. (easylistchina+easylist.txt: 11925) -/(.*/)?adengage4\. -adengage4.*. -# /adengage3. (easylistchina+easylist.txt: 11924) -/(.*/)?adengage3\. -adengage3.*. -# /adengage2. (easylistchina+easylist.txt: 11923) -/(.*/)?adengage2\. -adengage2.*. -# /adengage1. (easylistchina+easylist.txt: 11922) -/(.*/)?adengage1\. -adengage1.*. -# /adengage0. (easylistchina+easylist.txt: 11921) -/(.*/)?adengage0\. -adengage0.*. -# /adengage/* (easylistchina+easylist.txt: 11920) -/(.*/)?adengage/.* -# /adengage. (easylistchina+easylist.txt: 11919) -/(.*/)?adengage\. -adengage.*. -# /adengage- (easylistchina+easylist.txt: 11918) -/(.*/)?adengage- -adengage-*. -# /adedge/* (easylistchina+easylist.txt: 11917) -/(.*/)?adedge/.* -# /addyn|*|adtech; (easylistchina+easylist.txt: 11916) -/(.*/)?addyn\|.*\|adtech; -# /addyn|*;adtech; (easylistchina+easylist.txt: 11915) -/(.*/)?addyn\|.*;adtech; -# /addyn/3.0/* (easylistchina+easylist.txt: 11914) -/(.*/)?addyn/3\.0/.* -# /adds_banner/* (easylistchina+easylist.txt: 11913) -/(.*/)?adds_banner/.* -# /addon/ad/* (easylistchina+easylist.txt: 11912) -/(.*/)?addon/ad/.* -# /addisplay. (easylistchina+easylist.txt: 11911) -/(.*/)?addisplay\. -addisplay.*. -# /addeliverymodule/* (easylistchina+easylist.txt: 11910) -/(.*/)?addeliverymodule/.* -# /addelivery/* (easylistchina+easylist.txt: 11909) -/(.*/)?addelivery/.* -# /addefend/* (easylistchina+easylist.txt: 11908) -/(.*/)?addefend/.* -# /addefend. (easylistchina+easylist.txt: 11907) -/(.*/)?addefend\. -addefend.*. -# /addeals/* (easylistchina+easylist.txt: 11906) -/(.*/)?addeals/.* -# /addatasandbox? (easylistchina+easylist.txt: 11905) -/(.*/)?addatasandbox\? -# /addata. (easylistchina+easylist.txt: 11904) -/(.*/)?addata\. -addata.*. -# /add728. (easylistchina+easylist.txt: 11903) -/(.*/)?add728\. -add728.*. -# /adcycle/* (easylistchina+easylist.txt: 11902) -/(.*/)?adcycle/.* -# /adcycle. (easylistchina+easylist.txt: 11901) -/(.*/)?adcycle\. -adcycle.*. -# /adcss/* (easylistchina+easylist.txt: 11900) -/(.*/)?adcss/.* -# /adcreative/* (easylistchina+easylist.txt: 11899) -/(.*/)?adcreative/.* -# /adcreative. (easylistchina+easylist.txt: 11898) -/(.*/)?adcreative\. -adcreative.*. -# /adcounter. (easylistchina+easylist.txt: 11897) -/(.*/)?adcounter\. -adcounter.*. -# /adcount. (easylistchina+easylist.txt: 11896) -/(.*/)?adcount\. -adcount.*. -# /adcore_ (easylistchina+easylist.txt: 11895) -/(.*/)?adcore_ -# /adcore. (easylistchina+easylist.txt: 11894) -/(.*/)?adcore\. -adcore.*. -# /adcontroller. (easylistchina+easylist.txt: 11893) -/(.*/)?adcontroller\. -adcontroller.*. -# /adcontrol/* (easylistchina+easylist.txt: 11892) -/(.*/)?adcontrol/.* -# /adcontrol. (easylistchina+easylist.txt: 11891) -/(.*/)?adcontrol\. -adcontrol.*. -# /adcontents_ (easylistchina+easylist.txt: 11890) -/(.*/)?adcontents_ -# /adcontent/* (easylistchina+easylist.txt: 11889) -/(.*/)?adcontent/.* -# /adcontent.$~object-subrequest (easylistchina+easylist.txt: 11888) -/(.*/)?adcontent\. -adcontent.*. -# /adcontainer? (easylistchina+easylist.txt: 11887) -/(.*/)?adcontainer\? -# /adconfig/* (easylistchina+easylist.txt: 11886) -/(.*/)?adconfig/.* -# /adconfig.xml? (easylistchina+easylist.txt: 11885) -/(.*/)?adconfig\.xml\? -# /adconfig.js (easylistchina+easylist.txt: 11884) -/(.*/)?adconfig\.js -adconfig.js*. -# /adcomponent/* (easylistchina+easylist.txt: 11883) -/(.*/)?adcomponent/.* -# /adcomp. (easylistchina+easylist.txt: 11882) -/(.*/)?adcomp\. -adcomp.*. -# /adcommon? (easylistchina+easylist.txt: 11881) -/(.*/)?adcommon\? -# /adcollector. (easylistchina+easylist.txt: 11880) -/(.*/)?adcollector\. -adcollector.*. -# /adcodes/* (easylistchina+easylist.txt: 11879) -/(.*/)?adcodes/.* -# /adcode_ (easylistchina+easylist.txt: 11878) -/(.*/)?adcode_ -# /adcode/* (easylistchina+easylist.txt: 11877) -/(.*/)?adcode/.* -# /adcode. (easylistchina+easylist.txt: 11876) -/(.*/)?adcode\. -adcode.*. -# /adclutter. (easylistchina+easylist.txt: 11875) -/(.*/)?adclutter\. -adclutter.*. -# /adclixad. (easylistchina+easylist.txt: 11874) -/(.*/)?adclixad\. -adclixad.*. -# /adclix. (easylistchina+easylist.txt: 11873) -/(.*/)?adclix\. -adclix.*. -# /adclient/* (easylistchina+easylist.txt: 11872) -/(.*/)?adclient/.* -# /adclient. (easylistchina+easylist.txt: 11871) -/(.*/)?adclient\. -adclient.*. -# /adclient- (easylistchina+easylist.txt: 11870) -/(.*/)?adclient- -adclient-*. -# /adclick/* (easylistchina+easylist.txt: 11869) -/(.*/)?adclick/.* -# /adclick. (easylistchina+easylist.txt: 11868) -/(.*/)?adclick\. -adclick.*. -# /adcircle. (easylistchina+easylist.txt: 11867) -/(.*/)?adcircle\. -adcircle.*. -# /adchoicesv4. (easylistchina+easylist.txt: 11866) -/(.*/)?adchoicesv4\. -adchoicesv4.*. -# /adchoiceslogo. (easylistchina+easylist.txt: 11865) -/(.*/)?adchoiceslogo\. -adchoiceslogo.*. -# /adchoicesicon. (easylistchina+easylist.txt: 11864) -/(.*/)?adchoicesicon\. -adchoicesicon.*. -# /adchoicesfooter. (easylistchina+easylist.txt: 11863) -/(.*/)?adchoicesfooter\. -adchoicesfooter.*. -# /adchoices_ (easylistchina+easylist.txt: 11862) -/(.*/)?adchoices_ -# /adchoices2. (easylistchina+easylist.txt: 11861) -/(.*/)?adchoices2\. -adchoices2.*. -# /adchoices16. (easylistchina+easylist.txt: 11860) -/(.*/)?adchoices16\. -adchoices16.*. -# /adchoices/* (easylistchina+easylist.txt: 11859) -/(.*/)?adchoices/.* -# /adchoices. (easylistchina+easylist.txt: 11858) -/(.*/)?adchoices\. -adchoices.*. -# /adchoices- (easylistchina+easylist.txt: 11857) -/(.*/)?adchoices- -adchoices-*. -# /adchoice_ (easylistchina+easylist.txt: 11856) -/(.*/)?adchoice_ -# /adchoice/* (easylistchina+easylist.txt: 11855) -/(.*/)?adchoice/.* -# /adchoice. (easylistchina+easylist.txt: 11854) -/(.*/)?adchoice\. -adchoice.*. -# /adcheck? (easylistchina+easylist.txt: 11853) -/(.*/)?adcheck\? -# /adcheck. (easylistchina+easylist.txt: 11852) -/(.*/)?adcheck\. -adcheck.*. -# /adchannel_ (easylistchina+easylist.txt: 11851) -/(.*/)?adchannel_ -# /adchain. (easylistchina+easylist.txt: 11850) -/(.*/)?adchain\. -adchain.*. -# /adchain- (easylistchina+easylist.txt: 11849) -/(.*/)?adchain- -adchain-*. -# /adcgi? (easylistchina+easylist.txt: 11848) -/(.*/)?adcgi\? -# /adcframe. (easylistchina+easylist.txt: 11847) -/(.*/)?adcframe\. -adcframe.*. -# /adcentral. (easylistchina+easylist.txt: 11846) -/(.*/)?adcentral\. -adcentral.*. -# /adcenter.$script (easylistchina+easylist.txt: 11845) -/(.*/)?adcenter\. -adcenter.*. -# /adcell/* (easylistchina+easylist.txt: 11844) -/(.*/)?adcell/.* -# /adcdn. (easylistchina+easylist.txt: 11843) -/(.*/)?adcdn\. -adcdn.*. -# /adcde.js (easylistchina+easylist.txt: 11842) -/(.*/)?adcde\.js -adcde.js*. -# /adcast_ (easylistchina+easylist.txt: 11841) -/(.*/)?adcast_ -# /adcast01_ (easylistchina+easylist.txt: 11840) -/(.*/)?adcast01_ -# /adcash. (easylistchina+easylist.txt: 11839) -/(.*/)?adcash\. -adcash.*. -# /adcash- (easylistchina+easylist.txt: 11838) -/(.*/)?adcash- -adcash-*. -# /adcampaigns/* (easylistchina+easylist.txt: 11837) -/(.*/)?adcampaigns/.* -# /adcalloverride. (easylistchina+easylist.txt: 11836) -/(.*/)?adcalloverride\. -adcalloverride.*. -# /adcall. (easylistchina+easylist.txt: 11835) -/(.*/)?adcall\. -adcall.*. -# /adcache. (easylistchina+easylist.txt: 11834) -/(.*/)?adcache\. -adcache.*. -# /adbytes. (easylistchina+easylist.txt: 11833) -/(.*/)?adbytes\. -adbytes.*. -# /adbutler/* (easylistchina+easylist.txt: 11832) -/(.*/)?adbutler/.* -# /adbureau. (easylistchina+easylist.txt: 11831) -/(.*/)?adbureau\. -adbureau.*. -# /adbug_ (easylistchina+easylist.txt: 11830) -/(.*/)?adbug_ -# /adbucks/* (easylistchina+easylist.txt: 11829) -/(.*/)?adbucks/.* -# /adbriteincright. (easylistchina+easylist.txt: 11828) -/(.*/)?adbriteincright\. -adbriteincright.*. -# /adbriteincleft2. (easylistchina+easylist.txt: 11827) -/(.*/)?adbriteincleft2\. -adbriteincleft2.*. -# /adbriteinc. (easylistchina+easylist.txt: 11826) -/(.*/)?adbriteinc\. -adbriteinc.*. -# /adbrite_ (easylistchina+easylist.txt: 11825) -/(.*/)?adbrite_ -# /adbrite2. (easylistchina+easylist.txt: 11824) -/(.*/)?adbrite2\. -adbrite2.*. -# /adbrite/* (easylistchina+easylist.txt: 11823) -/(.*/)?adbrite/.* -# /adbrite. (easylistchina+easylist.txt: 11822) -/(.*/)?adbrite\. -adbrite.*. -# /adbrite- (easylistchina+easylist.txt: 11821) -/(.*/)?adbrite- -adbrite-*. -# /adboxtable- (easylistchina+easylist.txt: 11820) -/(.*/)?adboxtable- -adboxtable-*. -# /adboxes/* (easylistchina+easylist.txt: 11819) -/(.*/)?adboxes/.* -# /adboxbk. (easylistchina+easylist.txt: 11818) -/(.*/)?adboxbk\. -adboxbk.*. -# /adbox_ (easylistchina+easylist.txt: 11817) -/(.*/)?adbox_ -# /adbox2. (easylistchina+easylist.txt: 11816) -/(.*/)?adbox2\. -adbox2.*. -# /adbox1. (easylistchina+easylist.txt: 11815) -/(.*/)?adbox1\. -adbox1.*. -# /adbox/* (easylistchina+easylist.txt: 11814) -/(.*/)?adbox/.* -# /adbox. (easylistchina+easylist.txt: 11813) -/(.*/)?adbox\. -adbox.*. -# /adbottom. (easylistchina+easylist.txt: 11812) -/(.*/)?adbottom\. -adbottom.*. -# /adbotright. (easylistchina+easylist.txt: 11811) -/(.*/)?adbotright\. -adbotright.*. -# /adbotleft. (easylistchina+easylist.txt: 11810) -/(.*/)?adbotleft\. -adbotleft.*. -# /adbot_ (easylistchina+easylist.txt: 11809) -/(.*/)?adbot_ -# /adbot728. (easylistchina+easylist.txt: 11808) -/(.*/)?adbot728\. -adbot728.*. -# /adbot300. (easylistchina+easylist.txt: 11807) -/(.*/)?adbot300\. -adbot300.*. -# /adbot160. (easylistchina+easylist.txt: 11806) -/(.*/)?adbot160\. -adbot160.*. -# /adborder. (easylistchina+easylist.txt: 11805) -/(.*/)?adborder\. -adborder.*. -# /adboost. (easylistchina+easylist.txt: 11804) -/(.*/)?adboost\. -adboost.*. -# /adbn? (easylistchina+easylist.txt: 11803) -/(.*/)?adbn\? -# /adblockr. (easylistchina+easylist.txt: 11802) -/(.*/)?adblockr\. -adblockr.*. -# /adblockl. (easylistchina+easylist.txt: 11801) -/(.*/)?adblockl\. -adblockl.*. -# /adblock?id= (easylistchina+easylist.txt: 11800) -/(.*/)?adblock\?id= -# /adblock26. (easylistchina+easylist.txt: 11799) -/(.*/)?adblock26\. -adblock26.*. -# /adblock.js (easylistchina+easylist.txt: 11798) -/(.*/)?adblock\.js -adblock.js*. -# /adblock.ash (easylistchina+easylist.txt: 11797) -/(.*/)?adblock\.ash -adblock.ash*. -# /adblob. (easylistchina+easylist.txt: 11796) -/(.*/)?adblob\. -adblob.*. -# /adblade-publisher-tools/* (easylistchina+easylist.txt: 11795) -/(.*/)?adblade-publisher-tools/.* -# /adbg.jpg (easylistchina+easylist.txt: 11794) -/(.*/)?adbg\.jpg -adbg.jpg*. -# /adbetween/* (easylistchina+easylist.txt: 11793) -/(.*/)?adbetween/.* -# /adbebi_ (easylistchina+easylist.txt: 11792) -/(.*/)?adbebi_ -# /adbeacon. (easylistchina+easylist.txt: 11791) -/(.*/)?adbeacon\. -adbeacon.*. -# /adbase. (easylistchina+easylist.txt: 11790) -/(.*/)?adbase\. -adbase.*. -# /adbars. (easylistchina+easylist.txt: 11789) -/(.*/)?adbars\. -adbars.*. -# /adbar_ (easylistchina+easylist.txt: 11788) -/(.*/)?adbar_ -# /adbar2_ (easylistchina+easylist.txt: 11787) -/(.*/)?adbar2_ -# /adbar/* (easylistchina+easylist.txt: 11786) -/(.*/)?adbar/.* -# /adbar. (easylistchina+easylist.txt: 11785) -/(.*/)?adbar\. -adbar.*. -# /adbanners/* (easylistchina+easylist.txt: 11784) -/(.*/)?adbanners/.* -# /adbanner_ (easylistchina+easylist.txt: 11783) -/(.*/)?adbanner_ -# /adbanner2. (easylistchina+easylist.txt: 11782) -/(.*/)?adbanner2\. -adbanner2.*. -# /adbanner/* (easylistchina+easylist.txt: 11781) -/(.*/)?adbanner/.* -# /adbanner. (easylistchina+easylist.txt: 11780) -/(.*/)?adbanner\. -adbanner.*. -# /adban. (easylistchina+easylist.txt: 11779) -/(.*/)?adban\. -adban.*. -# /adback? (easylistchina+easylist.txt: 11778) -/(.*/)?adback\? -# /adback. (easylistchina+easylist.txt: 11777) -/(.*/)?adback\. -adback.*. -# /adb.js?tag= (easylistchina+easylist.txt: 11776) -/(.*/)?adb\.js\?tag= -# /adasset4/* (easylistchina+easylist.txt: 11775) -/(.*/)?adasset4/.* -# /adasset/* (easylistchina+easylist.txt: 11774) -/(.*/)?adasset/.* -# /adarena/* (easylistchina+easylist.txt: 11773) -/(.*/)?adarena/.* -# /adaptvexchangevastvideo. (easylistchina+easylist.txt: 11772) -/(.*/)?adaptvexchangevastvideo\. -adaptvexchangevastvideo.*. -# /adaptvadservervastvideo. (easylistchina+easylist.txt: 11771) -/(.*/)?adaptvadservervastvideo\. -adaptvadservervastvideo.*. -# /adaptvadplayer. (easylistchina+easylist.txt: 11770) -/(.*/)?adaptvadplayer\. -adaptvadplayer.*. -# /adanim/* (easylistchina+easylist.txt: 11769) -/(.*/)?adanim/.* -# /adanalytics. (easylistchina+easylist.txt: 11768) -/(.*/)?adanalytics\. -adanalytics.*. -# /adaffiliate_ (easylistchina+easylist.txt: 11767) -/(.*/)?adaffiliate_ -# /adactions. (easylistchina+easylist.txt: 11766) -/(.*/)?adactions\. -adactions.*. -# /ad_www_ (easylistchina+easylist.txt: 11765) -/(.*/)?ad_www_ -# /ad_wrapper. (easylistchina+easylist.txt: 11764) -/(.*/)?ad_wrapper\. -# /ad_width/* (easylistchina+easylist.txt: 11763) -/(.*/)?ad_width/.* -# /ad_wide_ (easylistchina+easylist.txt: 11762) -/(.*/)?ad_wide_ -# /ad_view_ (easylistchina+easylist.txt: 11761) -/(.*/)?ad_view_ -# /ad_video1. (easylistchina+easylist.txt: 11760) -/(.*/)?ad_video1\. -# /ad_video.htm (easylistchina+easylist.txt: 11759) -/(.*/)?ad_video\.htm -# /ad_vertical. (easylistchina+easylist.txt: 11758) -/(.*/)?ad_vertical\. -# /ad_vert. (easylistchina+easylist.txt: 11757) -/(.*/)?ad_vert\. -# /ad_ver/* (easylistchina+easylist.txt: 11756) -/(.*/)?ad_ver/.* -# /ad_utils/* (easylistchina+easylist.txt: 11755) -/(.*/)?ad_utils/.* -# /ad_utils. (easylistchina+easylist.txt: 11754) -/(.*/)?ad_utils\. -# /ad_util. (easylistchina+easylist.txt: 11753) -/(.*/)?ad_util\. -# /ad_upload/* (easylistchina+easylist.txt: 11752) -/(.*/)?ad_upload/.* -# /ad_units/* (easylistchina+easylist.txt: 11751) -/(.*/)?ad_units/.* -# /ad_units. (easylistchina+easylist.txt: 11750) -/(.*/)?ad_units\. -# /ad_txt. (easylistchina+easylist.txt: 11749) -/(.*/)?ad_txt\. -# /ad_tpl. (easylistchina+easylist.txt: 11748) -/(.*/)?ad_tpl\. -# /ad_tower_ (easylistchina+easylist.txt: 11747) -/(.*/)?ad_tower_ -# /ad_topgray2. (easylistchina+easylist.txt: 11746) -/(.*/)?ad_topgray2\. -# /ad_top_ (easylistchina+easylist.txt: 11745) -/(.*/)?ad_top_ -# /ad_top/* (easylistchina+easylist.txt: 11744) -/(.*/)?ad_top/.* -# /ad_top. (easylistchina+easylist.txt: 11743) -/(.*/)?ad_top\. -# /ad_title_ (easylistchina+easylist.txt: 11742) -/(.*/)?ad_title_ -# /ad_timer. (easylistchina+easylist.txt: 11741) -/(.*/)?ad_timer\. -# /ad_tile/* (easylistchina+easylist.txt: 11740) -/(.*/)?ad_tile/.* -# /ad_tickets. (easylistchina+easylist.txt: 11739) -/(.*/)?ad_tickets\. -# /ad_text_ (easylistchina+easylist.txt: 11738) -/(.*/)?ad_text_ -# /ad_text. (easylistchina+easylist.txt: 11737) -/(.*/)?ad_text\. -# /ad_tags_ (easylistchina+easylist.txt: 11736) -/(.*/)?ad_tags_ -# /ad_tag_ (easylistchina+easylist.txt: 11735) -/(.*/)?ad_tag_ -# /ad_tag. (easylistchina+easylist.txt: 11734) -/(.*/)?ad_tag\. -# /ad_tab. (easylistchina+easylist.txt: 11733) -/(.*/)?ad_tab\. -# /ad_system/* (easylistchina+easylist.txt: 11732) -/(.*/)?ad_system/.* -# /ad_syshome. (easylistchina+easylist.txt: 11731) -/(.*/)?ad_syshome\. -# /ad_sys/* (easylistchina+easylist.txt: 11730) -/(.*/)?ad_sys/.* -# /ad_supertile/* (easylistchina+easylist.txt: 11729) -/(.*/)?ad_supertile/.* -# /ad_styling_ (easylistchina+easylist.txt: 11728) -/(.*/)?ad_styling_ -# /ad_stem/* (easylistchina+easylist.txt: 11727) -/(.*/)?ad_stem/.* -# /ad_status. (easylistchina+easylist.txt: 11726) -/(.*/)?ad_status\. -# /ad_srv. (easylistchina+easylist.txt: 11725) -/(.*/)?ad_srv\. -# /ad_squares. (easylistchina+easylist.txt: 11724) -/(.*/)?ad_squares\. -# /ad_square_ (easylistchina+easylist.txt: 11723) -/(.*/)?ad_square_ -# /ad_square. (easylistchina+easylist.txt: 11722) -/(.*/)?ad_square\. -# /ad_spot. (easylistchina+easylist.txt: 11721) -/(.*/)?ad_spot\. -# /ad_space. (easylistchina+easylist.txt: 11720) -/(.*/)?ad_space\. -# /ad_slideout. (easylistchina+easylist.txt: 11719) -/(.*/)?ad_slideout\. -# /ad_skyscraper. (easylistchina+easylist.txt: 11718) -/(.*/)?ad_skyscraper\. -# /ad_sky. (easylistchina+easylist.txt: 11717) -/(.*/)?ad_sky\. -# /ad_skin_ (easylistchina+easylist.txt: 11716) -/(.*/)?ad_skin_ -# /ad_sizes= (easylistchina+easylist.txt: 11715) -/(.*/)?ad_sizes= -# /ad_sidebar/* (easylistchina+easylist.txt: 11714) -/(.*/)?ad_sidebar/.* -# /ad_side. (easylistchina+easylist.txt: 11713) -/(.*/)?ad_side\. -# /ad_show? (easylistchina+easylist.txt: 11712) -/(.*/)?ad_show\? -# /ad_show. (easylistchina+easylist.txt: 11711) -/(.*/)?ad_show\. -# /ad_shared/* (easylistchina+easylist.txt: 11710) -/(.*/)?ad_shared/.* -# /ad_servlet. (easylistchina+easylist.txt: 11709) -/(.*/)?ad_servlet\. -# /ad_server/* (easylistchina+easylist.txt: 11708) -/(.*/)?ad_server/.* -# /ad_server. (easylistchina+easylist.txt: 11707) -/(.*/)?ad_server\. -# /ad_serve_ (easylistchina+easylist.txt: 11706) -/(.*/)?ad_serve_ -# /ad_serve. (easylistchina+easylist.txt: 11705) -/(.*/)?ad_serve\. -# /ad_serv. (easylistchina+easylist.txt: 11704) -/(.*/)?ad_serv\. -# /ad_scroller. (easylistchina+easylist.txt: 11703) -/(.*/)?ad_scroller\. -# /ad_script_ (easylistchina+easylist.txt: 11702) -/(.*/)?ad_script_ -# /ad_script. (easylistchina+easylist.txt: 11701) -/(.*/)?ad_script\. -# /ad_rotator_ (easylistchina+easylist.txt: 11700) -/(.*/)?ad_rotator_ -# /ad_rotator/* (easylistchina+easylist.txt: 11699) -/(.*/)?ad_rotator/.* -# /ad_rotator. (easylistchina+easylist.txt: 11698) -/(.*/)?ad_rotator\. -# /ad_rotation. (easylistchina+easylist.txt: 11697) -/(.*/)?ad_rotation\. -# /ad_right_ (easylistchina+easylist.txt: 11696) -/(.*/)?ad_right_ -# /ad_right. (easylistchina+easylist.txt: 11695) -/(.*/)?ad_right\. -# /ad_resize. (easylistchina+easylist.txt: 11694) -/(.*/)?ad_resize\. -# /ad_request. (easylistchina+easylist.txt: 11693) -/(.*/)?ad_request\. -# /ad_req. (easylistchina+easylist.txt: 11692) -/(.*/)?ad_req\. -# /ad_rentangle. (easylistchina+easylist.txt: 11691) -/(.*/)?ad_rentangle\. -# /ad_renderv4_ (easylistchina+easylist.txt: 11690) -/(.*/)?ad_renderv4_ -# /ad_render_ (easylistchina+easylist.txt: 11689) -/(.*/)?ad_render_ -# /ad_reloader_ (easylistchina+easylist.txt: 11688) -/(.*/)?ad_reloader_ -# /ad_refresher. (easylistchina+easylist.txt: 11687) -/(.*/)?ad_refresher\. -# /ad_refresh. (easylistchina+easylist.txt: 11686) -/(.*/)?ad_refresh\. -# /ad_rectangle_ (easylistchina+easylist.txt: 11685) -/(.*/)?ad_rectangle_ -# /ad_print. (easylistchina+easylist.txt: 11684) -/(.*/)?ad_print\. -# /ad_preroll- (easylistchina+easylist.txt: 11683) -/(.*/)?ad_preroll- -# /ad_premium_ (easylistchina+easylist.txt: 11682) -/(.*/)?ad_premium_ -# /ad_premium. (easylistchina+easylist.txt: 11681) -/(.*/)?ad_premium\. -# /ad_position_ (easylistchina+easylist.txt: 11680) -/(.*/)?ad_position_ -# /ad_position= (easylistchina+easylist.txt: 11679) -/(.*/)?ad_position= -# /ad_pos= (easylistchina+easylist.txt: 11678) -/(.*/)?ad_pos= -# /ad_popup_ (easylistchina+easylist.txt: 11677) -/(.*/)?ad_popup_ -# /ad_pop1. (easylistchina+easylist.txt: 11676) -/(.*/)?ad_pop1\. -# /ad_pop. (easylistchina+easylist.txt: 11675) -/(.*/)?ad_pop\. -# /ad_pics/* (easylistchina+easylist.txt: 11674) -/(.*/)?ad_pics/.* -# /ad_peel/* (easylistchina+easylist.txt: 11673) -/(.*/)?ad_peel/.* -# /ad_parts. (easylistchina+easylist.txt: 11672) -/(.*/)?ad_parts\. -# /ad_paper_ (easylistchina+easylist.txt: 11671) -/(.*/)?ad_paper_ -# /ad_page_ (easylistchina+easylist.txt: 11670) -/(.*/)?ad_page_ -# /ad_overlay. (easylistchina+easylist.txt: 11669) -/(.*/)?ad_overlay\. -# /ad_option_ (easylistchina+easylist.txt: 11668) -/(.*/)?ad_option_ -# /ad_ops/* (easylistchina+easylist.txt: 11667) -/(.*/)?ad_ops/.* -# /ad_offersmail_ (easylistchina+easylist.txt: 11666) -/(.*/)?ad_offersmail_ -# /ad_oas/* (easylistchina+easylist.txt: 11665) -/(.*/)?ad_oas/.* -# /ad_notice. (easylistchina+easylist.txt: 11664) -/(.*/)?ad_notice\. -# /ad_note. (easylistchina+easylist.txt: 11663) -/(.*/)?ad_note\. -# /ad_news. (easylistchina+easylist.txt: 11662) -/(.*/)?ad_news\. -# /ad_navigbar_ (easylistchina+easylist.txt: 11661) -/(.*/)?ad_navigbar_ -# /ad_multi_ (easylistchina+easylist.txt: 11660) -/(.*/)?ad_multi_ -# /ad_mpu. (easylistchina+easylist.txt: 11659) -/(.*/)?ad_mpu\. -# /ad_mobile. (easylistchina+easylist.txt: 11658) -/(.*/)?ad_mobile\. -# /ad_mini_ (easylistchina+easylist.txt: 11657) -/(.*/)?ad_mini_ -# /ad_medium_ (easylistchina+easylist.txt: 11656) -/(.*/)?ad_medium_ -# /ad_media/* (easylistchina+easylist.txt: 11655) -/(.*/)?ad_media/.* -# /ad_mbox. (easylistchina+easylist.txt: 11654) -/(.*/)?ad_mbox\. -# /ad_master_ (easylistchina+easylist.txt: 11653) -/(.*/)?ad_master_ -# /ad_manager/* (easylistchina+easylist.txt: 11652) -/(.*/)?ad_manager/.* -# /ad_manager. (easylistchina+easylist.txt: 11651) -/(.*/)?ad_manager\. -# /ad_manage. (easylistchina+easylist.txt: 11650) -/(.*/)?ad_manage\. -# /ad_lomadee. (easylistchina+easylist.txt: 11649) -/(.*/)?ad_lomadee\. -# /ad_log_ (easylistchina+easylist.txt: 11648) -/(.*/)?ad_log_ -# /ad_locations/* (easylistchina+easylist.txt: 11647) -/(.*/)?ad_locations/.* -# /ad_loader2. (easylistchina+easylist.txt: 11646) -/(.*/)?ad_loader2\. -# /ad_loader. (easylistchina+easylist.txt: 11645) -/(.*/)?ad_loader\. -# /ad_load. (easylistchina+easylist.txt: 11644) -/(.*/)?ad_load\. -# /ad_listpage. (easylistchina+easylist.txt: 11643) -/(.*/)?ad_listpage\. -# /ad_links/* (easylistchina+easylist.txt: 11642) -/(.*/)?ad_links/.* -# /ad_link. (easylistchina+easylist.txt: 11641) -/(.*/)?ad_link\. -# /ad_legend_ (easylistchina+easylist.txt: 11640) -/(.*/)?ad_legend_ -# /ad_left_ (easylistchina+easylist.txt: 11639) -/(.*/)?ad_left_ -# /ad_left. (easylistchina+easylist.txt: 11638) -/(.*/)?ad_left\. -# /ad_leaderboard/* (easylistchina+easylist.txt: 11637) -/(.*/)?ad_leaderboard/.* -# /ad_leaderboard. (easylistchina+easylist.txt: 11636) -/(.*/)?ad_leaderboard\. -# /ad_leader_ (easylistchina+easylist.txt: 11635) -/(.*/)?ad_leader_ -# /ad_leader. (easylistchina+easylist.txt: 11634) -/(.*/)?ad_leader\. -# /ad_large. (easylistchina+easylist.txt: 11633) -/(.*/)?ad_large\. -# /ad_label_ (easylistchina+easylist.txt: 11632) -/(.*/)?ad_label_ -# /ad_label728. (easylistchina+easylist.txt: 11631) -/(.*/)?ad_label728\. -# /ad_label2_ (easylistchina+easylist.txt: 11630) -/(.*/)?ad_label2_ -# /ad_keywords. (easylistchina+easylist.txt: 11629) -/(.*/)?ad_keywords\. -# /ad_jnaught/* (easylistchina+easylist.txt: 11628) -/(.*/)?ad_jnaught/.* -# /ad_insert. (easylistchina+easylist.txt: 11627) -/(.*/)?ad_insert\. -# /ad_index_ (easylistchina+easylist.txt: 11626) -/(.*/)?ad_index_ -# /ad_include. (easylistchina+easylist.txt: 11625) -/(.*/)?ad_include\. -# /ad_img/* (easylistchina+easylist.txt: 11624) -/(.*/)?ad_img/.* -# /ad_img. (easylistchina+easylist.txt: 11623) -/(.*/)?ad_img\. -# /ad_images/* (easylistchina+easylist.txt: 11622) -/(.*/)?ad_images/.* -# /ad_image2. (easylistchina+easylist.txt: 11621) -/(.*/)?ad_image2\. -# /ad_image. (easylistchina+easylist.txt: 11620) -/(.*/)?ad_image\. -# /ad_iframe_ (easylistchina+easylist.txt: 11619) -/(.*/)?ad_iframe_ -# /ad_iframe. (easylistchina+easylist.txt: 11618) -/(.*/)?ad_iframe\. -# /ad_icons/* (easylistchina+easylist.txt: 11617) -/(.*/)?ad_icons/.* -# /ad_html/* (easylistchina+easylist.txt: 11616) -/(.*/)?ad_html/.* -# /ad_horizontal. (easylistchina+easylist.txt: 11615) -/(.*/)?ad_horizontal\. -# /ad_horiz. (easylistchina+easylist.txt: 11614) -/(.*/)?ad_horiz\. -# /ad_horisontal. (easylistchina+easylist.txt: 11613) -/(.*/)?ad_horisontal\. -# /ad_homepage_ (easylistchina+easylist.txt: 11612) -/(.*/)?ad_homepage_ -# /ad_home_ (easylistchina+easylist.txt: 11611) -/(.*/)?ad_home_ -# /ad_home2011_ (easylistchina+easylist.txt: 11610) -/(.*/)?ad_home2011_ -# /ad_holder/* (easylistchina+easylist.txt: 11609) -/(.*/)?ad_holder/.* -# /ad_height/* (easylistchina+easylist.txt: 11608) -/(.*/)?ad_height/.* -# /ad_header_ (easylistchina+easylist.txt: 11607) -/(.*/)?ad_header_ -# /ad_header. (easylistchina+easylist.txt: 11606) -/(.*/)?ad_header\. -# /ad_head_ (easylistchina+easylist.txt: 11605) -/(.*/)?ad_head_ -# /ad_hcr_ (easylistchina+easylist.txt: 11604) -/(.*/)?ad_hcr_ -# /ad_hcl_ (easylistchina+easylist.txt: 11603) -/(.*/)?ad_hcl_ -# /ad_h.css? (easylistchina+easylist.txt: 11602) -/(.*/)?ad_h\.css\? -# /ad_google. (easylistchina+easylist.txt: 11601) -/(.*/)?ad_google\. -# /ad_gif_ (easylistchina+easylist.txt: 11600) -/(.*/)?ad_gif_ -# /ad_gif/* (easylistchina+easylist.txt: 11599) -/(.*/)?ad_gif/.* -# /ad_generator? (easylistchina+easylist.txt: 11598) -/(.*/)?ad_generator\? -# /ad_generator. (easylistchina+easylist.txt: 11597) -/(.*/)?ad_generator\. -# /ad_function. (easylistchina+easylist.txt: 11596) -/(.*/)?ad_function\. -# /ad_frm. (easylistchina+easylist.txt: 11595) -/(.*/)?ad_frm\. -# /ad_frame? (easylistchina+easylist.txt: 11594) -/(.*/)?ad_frame\? -# /ad_frame. (easylistchina+easylist.txt: 11593) -/(.*/)?ad_frame\. -# /ad_forum_ (easylistchina+easylist.txt: 11592) -/(.*/)?ad_forum_ -# /ad_footer_ (easylistchina+easylist.txt: 11591) -/(.*/)?ad_footer_ -# /ad_footer. (easylistchina+easylist.txt: 11590) -/(.*/)?ad_footer\. -# /ad_folder/* (easylistchina+easylist.txt: 11589) -/(.*/)?ad_folder/.* -# /ad_floater. (easylistchina+easylist.txt: 11588) -/(.*/)?ad_floater\. -# /ad_flat_ (easylistchina+easylist.txt: 11587) -/(.*/)?ad_flat_ -# /ad_flash/* (easylistchina+easylist.txt: 11586) -/(.*/)?ad_flash/.* -# /ad_filmstrip/* (easylistchina+easylist.txt: 11585) -/(.*/)?ad_filmstrip/.* -# /ad_filler. (easylistchina+easylist.txt: 11584) -/(.*/)?ad_filler\. -# /ad_fill. (easylistchina+easylist.txt: 11583) -/(.*/)?ad_fill\. -# /ad_files/* (easylistchina+easylist.txt: 11582) -/(.*/)?ad_files/.* -# /ad_file/* (easylistchina+easylist.txt: 11581) -/(.*/)?ad_file/.* -# /ad_feed. (easylistchina+easylist.txt: 11580) -/(.*/)?ad_feed\. -# /ad_entry_ (easylistchina+easylist.txt: 11579) -/(.*/)?ad_entry_ -# /ad_engine? (easylistchina+easylist.txt: 11578) -/(.*/)?ad_engine\? -# /ad_editorials_ (easylistchina+easylist.txt: 11577) -/(.*/)?ad_editorials_ -# /ad_ebound. (easylistchina+easylist.txt: 11576) -/(.*/)?ad_ebound\. -# /ad_drivers/* (easylistchina+easylist.txt: 11575) -/(.*/)?ad_drivers/.* -# /ad_display_ (easylistchina+easylist.txt: 11574) -/(.*/)?ad_display_ -# /ad_display. (easylistchina+easylist.txt: 11573) -/(.*/)?ad_display\. -# /ad_dir/* (easylistchina+easylist.txt: 11572) -/(.*/)?ad_dir/.* -# /ad_digital. (easylistchina+easylist.txt: 11571) -/(.*/)?ad_digital\. -# /ad_detect. (easylistchina+easylist.txt: 11570) -/(.*/)?ad_detect\. -# /ad_data/* (easylistchina+easylist.txt: 11569) -/(.*/)?ad_data/.* -# /ad_creatives. (easylistchina+easylist.txt: 11568) -/(.*/)?ad_creatives\. -# /ad_counter_ (easylistchina+easylist.txt: 11567) -/(.*/)?ad_counter_ -# /ad_counter. (easylistchina+easylist.txt: 11566) -/(.*/)?ad_counter\. -# /ad_count. (easylistchina+easylist.txt: 11565) -/(.*/)?ad_count\. -# /ad_contents/* (easylistchina+easylist.txt: 11564) -/(.*/)?ad_contents/.* -# /ad_content. (easylistchina+easylist.txt: 11563) -/(.*/)?ad_content\. -# /ad_container_ (easylistchina+easylist.txt: 11562) -/(.*/)?ad_container_ -# /ad_configurations_ (easylistchina+easylist.txt: 11561) -/(.*/)?ad_configurations_ -# /ad_configuration. (easylistchina+easylist.txt: 11560) -/(.*/)?ad_configuration\. -# /ad_commonside_ (easylistchina+easylist.txt: 11559) -/(.*/)?ad_commonside_ -# /ad_commonside. (easylistchina+easylist.txt: 11558) -/(.*/)?ad_commonside\. -# /ad_code. (easylistchina+easylist.txt: 11557) -/(.*/)?ad_code\. -# /ad_choices_ (easylistchina+easylist.txt: 11556) -/(.*/)?ad_choices_ -# /ad_choices. (easylistchina+easylist.txt: 11555) -/(.*/)?ad_choices\. -# /ad_check. (easylistchina+easylist.txt: 11554) -/(.*/)?ad_check\. -# /ad_caption. (easylistchina+easylist.txt: 11553) -/(.*/)?ad_caption\. -# /ad_campaigns/* (easylistchina+easylist.txt: 11552) -/(.*/)?ad_campaigns/.* -# /ad_cache/* (easylistchina+easylist.txt: 11551) -/(.*/)?ad_cache/.* -# /ad_button. (easylistchina+easylist.txt: 11550) -/(.*/)?ad_button\. -# /ad_bsb. (easylistchina+easylist.txt: 11549) -/(.*/)?ad_bsb\. -# /ad_box_ (easylistchina+easylist.txt: 11548) -/(.*/)?ad_box_ -# /ad_box? (easylistchina+easylist.txt: 11547) -/(.*/)?ad_box\? -# /ad_box2. (easylistchina+easylist.txt: 11546) -/(.*/)?ad_box2\. -# /ad_box1. (easylistchina+easylist.txt: 11545) -/(.*/)?ad_box1\. -# /ad_box. (easylistchina+easylist.txt: 11544) -/(.*/)?ad_box\. -# /ad_bottom. (easylistchina+easylist.txt: 11543) -/(.*/)?ad_bottom\. -# /ad_bot. (easylistchina+easylist.txt: 11542) -/(.*/)?ad_bot\. -# /ad_bomb/* (easylistchina+easylist.txt: 11541) -/(.*/)?ad_bomb/.* -# /ad_blog. (easylistchina+easylist.txt: 11540) -/(.*/)?ad_blog\. -# /ad_big_ (easylistchina+easylist.txt: 11539) -/(.*/)?ad_big_ -# /ad_base. (easylistchina+easylist.txt: 11538) -/(.*/)?ad_base\. -# /ad_bar_ (easylistchina+easylist.txt: 11537) -/(.*/)?ad_bar_ -# /ad_banners/* (easylistchina+easylist.txt: 11536) -/(.*/)?ad_banners/.* -# /ad_bannerPool- (easylistchina+easylist.txt: 11535) -/(.*/)?ad_bannerPool- -# /ad_banner_ (easylistchina+easylist.txt: 11534) -/(.*/)?ad_banner_ -# /ad_banner2. (easylistchina+easylist.txt: 11533) -/(.*/)?ad_banner2\. -# /ad_banner1. (easylistchina+easylist.txt: 11532) -/(.*/)?ad_banner1\. -# /ad_banner/* (easylistchina+easylist.txt: 11531) -/(.*/)?ad_banner/.* -# /ad_banner. (easylistchina+easylist.txt: 11530) -/(.*/)?ad_banner\. -# /Ad_Arub_ (easylistchina+easylist.txt: 11529) -/(.*/)?Ad_Arub_ -# /ad_art/* (easylistchina+easylist.txt: 11528) -/(.*/)?ad_art/.* -# /ad_area. (easylistchina+easylist.txt: 11527) -/(.*/)?ad_area\. -# /ad_agency/* (easylistchina+easylist.txt: 11526) -/(.*/)?ad_agency/.* -# /ad_960x90_ (easylistchina+easylist.txt: 11525) -/(.*/)?ad_960x90_ -# /ad_728_ (easylistchina+easylist.txt: 11524) -/(.*/)?ad_728_ -# /ad_728. (easylistchina+easylist.txt: 11523) -/(.*/)?ad_728\. -# /ad_600x160_ (easylistchina+easylist.txt: 11522) -/(.*/)?ad_600x160_ -# /ad_600_ (easylistchina+easylist.txt: 11521) -/(.*/)?ad_600_ -# /ad_300_ (easylistchina+easylist.txt: 11520) -/(.*/)?ad_300_ -# /ad_300250. (easylistchina+easylist.txt: 11519) -/(.*/)?ad_300250\. -# /ad_300. (easylistchina+easylist.txt: 11518) -/(.*/)?ad_300\. -# /ad_250x250_ (easylistchina+easylist.txt: 11517) -/(.*/)?ad_250x250_ -# /ad_234x60_ (easylistchina+easylist.txt: 11516) -/(.*/)?ad_234x60_ -# /ad_200x90_ (easylistchina+easylist.txt: 11515) -/(.*/)?ad_200x90_ -# /ad_120_ (easylistchina+easylist.txt: 11514) -/(.*/)?ad_120_ -# /ad?type= (easylistchina+easylist.txt: 11513) -/(.*/)?ad\?type= -# /ad?sponsor= (easylistchina+easylist.txt: 11512) -/(.*/)?ad\?sponsor= -# /ad?pos_ (easylistchina+easylist.txt: 11511) -/(.*/)?ad\?pos_ -# /ad?iframe_ (easylistchina+easylist.txt: 11510) -/(.*/)?ad\?iframe_ -# /ad?currentview= (easylistchina+easylist.txt: 11509) -/(.*/)?ad\?currentview= -# /ad?count= (easylistchina+easylist.txt: 11508) -/(.*/)?ad\?count= -# /ad?cid= (easylistchina+easylist.txt: 11507) -/(.*/)?ad\?cid= -# /ad?channel= (easylistchina+easylist.txt: 11506) -/(.*/)?ad\?channel= -# /ad8. (easylistchina+easylist.txt: 11505) -/(.*/)?ad8\. -ad8.*. -# /ad728x90. (easylistchina+easylist.txt: 11504) -/(.*/)?ad728x90\. -ad728x90.*. -# /ad728x15_ (easylistchina+easylist.txt: 11503) -/(.*/)?ad728x15_ -# /ad728x15. (easylistchina+easylist.txt: 11502) -/(.*/)?ad728x15\. -ad728x15.*. -# /ad728x. (easylistchina+easylist.txt: 11501) -/(.*/)?ad728x\. -ad728x.*. -# /ad728ws. (easylistchina+easylist.txt: 11500) -/(.*/)?ad728ws\. -ad728ws.*. -# /ad728w. (easylistchina+easylist.txt: 11499) -/(.*/)?ad728w\. -ad728w.*. -# /ad728t. (easylistchina+easylist.txt: 11498) -/(.*/)?ad728t\. -ad728t.*. -# /ad728s. (easylistchina+easylist.txt: 11497) -/(.*/)?ad728s\. -ad728s.*. -# /ad728home. (easylistchina+easylist.txt: 11496) -/(.*/)?ad728home\. -ad728home.*. -# /ad728f2. (easylistchina+easylist.txt: 11495) -/(.*/)?ad728f2\. -ad728f2.*. -# /ad728f. (easylistchina+easylist.txt: 11494) -/(.*/)?ad728f\. -ad728f.*. -# /ad728. (easylistchina+easylist.txt: 11493) -/(.*/)?ad728\. -ad728.*. -# /ad728- (easylistchina+easylist.txt: 11492) -/(.*/)?ad728- -ad728-*. -# /ad7. (easylistchina+easylist.txt: 11491) -/(.*/)?ad7\. -ad7.*. -# /ad600x330. (easylistchina+easylist.txt: 11490) -/(.*/)?ad600x330\. -ad600x330.*. -# /ad600x250. (easylistchina+easylist.txt: 11489) -/(.*/)?ad600x250\. -ad600x250.*. -# /ad6. (easylistchina+easylist.txt: 11488) -/(.*/)?ad6\. -ad6.*. -# /ad5. (easylistchina+easylist.txt: 11487) -/(.*/)?ad5\. -ad5.*. -# /ad4i. (easylistchina+easylist.txt: 11486) -/(.*/)?ad4i\. -ad4i.*. -# /ad468x80. (easylistchina+easylist.txt: 11485) -/(.*/)?ad468x80\. -ad468x80.*. -# /ad468x60. (easylistchina+easylist.txt: 11484) -/(.*/)?ad468x60\. -ad468x60.*. -# /ad468. (easylistchina+easylist.txt: 11483) -/(.*/)?ad468\. -ad468.*. -# /ad41_ (easylistchina+easylist.txt: 11482) -/(.*/)?ad41_ -# /ad3i. (easylistchina+easylist.txt: 11480) -/(.*/)?ad3i\. -ad3i.*. -# /ad3_ima. (easylistchina+easylist.txt: 11479) -/(.*/)?ad3_ima\. -# /ad350. (easylistchina+easylist.txt: 11478) -/(.*/)?ad350\. -ad350.*. -# /ad300x250_ (easylistchina+easylist.txt: 11477) -/(.*/)?ad300x250_ -# /ad300x250. (easylistchina+easylist.txt: 11476) -/(.*/)?ad300x250\. -ad300x250.*. -# /ad300x250- (easylistchina+easylist.txt: 11475) -/(.*/)?ad300x250- -ad300x250-*. -# /ad300x145. (easylistchina+easylist.txt: 11474) -/(.*/)?ad300x145\. -ad300x145.*. -# /ad300x. (easylistchina+easylist.txt: 11473) -/(.*/)?ad300x\. -ad300x.*. -# /ad300ws. (easylistchina+easylist.txt: 11472) -/(.*/)?ad300ws\. -ad300ws.*. -# /ad300s. (easylistchina+easylist.txt: 11471) -/(.*/)?ad300s\. -ad300s.*. -# /ad300home. (easylistchina+easylist.txt: 11470) -/(.*/)?ad300home\. -ad300home.*. -# /ad300f2. (easylistchina+easylist.txt: 11469) -/(.*/)?ad300f2\. -ad300f2.*. -# /ad300f. (easylistchina+easylist.txt: 11468) -/(.*/)?ad300f\. -ad300f.*. -# /ad300. (easylistchina+easylist.txt: 11467) -/(.*/)?ad300\. -ad300.*. -# /ad2you/* (easylistchina+easylist.txt: 11465) -/(.*/)?ad2you/.* -# /ad2push. (easylistchina+easylist.txt: 11464) -/(.*/)?ad2push\. -ad2push.*. -# /ad2gather. (easylistchina+easylist.txt: 11463) -/(.*/)?ad2gather\. -ad2gather.*. -# /ad2gate. (easylistchina+easylist.txt: 11462) -/(.*/)?ad2gate\. -ad2gate.*. -# /ad2con. (easylistchina+easylist.txt: 11461) -/(.*/)?ad2con\. -ad2con.*. -# /ad2border. (easylistchina+easylist.txt: 11460) -/(.*/)?ad2border\. -ad2border.*. -# /ad2_ (easylistchina+easylist.txt: 11459) -/(.*/)?ad2_ -# /ad290x60_ (easylistchina+easylist.txt: 11458) -/(.*/)?ad290x60_ -# /ad247realmedia/* (easylistchina+easylist.txt: 11457) -/(.*/)?ad247realmedia/.* -# /ad24/* (easylistchina+easylist.txt: 11456) -/(.*/)?ad24/.* -# /ad234. (easylistchina+easylist.txt: 11455) -/(.*/)?ad234\. -ad234.*. -# /ad2010. (easylistchina+easylist.txt: 11454) -/(.*/)?ad2010\. -ad2010.*. -# /ad2/res/* (easylistchina+easylist.txt: 11453) -/(.*/)?ad2/res/.* -# /ad2/index. (easylistchina+easylist.txt: 11452) -/(.*/)?ad2/index\. -# /ad2-728- (easylistchina+easylist.txt: 11450) -/(.*/)?ad2-728- -ad2-728-*. -# /ad1x1home. (easylistchina+easylist.txt: 11449) -/(.*/)?ad1x1home\. -ad1x1home.*. -# /ad1r. (easylistchina+easylist.txt: 11448) -/(.*/)?ad1r\. -ad1r.*. -# /ad1place. (easylistchina+easylist.txt: 11447) -/(.*/)?ad1place\. -ad1place.*. -# /ad1_ (easylistchina+easylist.txt: 11446) -/(.*/)?ad1_ -# /ad160x600. (easylistchina+easylist.txt: 11445) -/(.*/)?ad160x600\. -ad160x600.*. -# /ad160k. (easylistchina+easylist.txt: 11444) -/(.*/)?ad160k\. -ad160k.*. -# /ad160. (easylistchina+easylist.txt: 11443) -/(.*/)?ad160\. -ad160.*. -# /ad16. (easylistchina+easylist.txt: 11442) -/(.*/)?ad16\. -ad16.*. -# /ad15. (easylistchina+easylist.txt: 11441) -/(.*/)?ad15\. -ad15.*. -# /ad136/* (easylistchina+easylist.txt: 11440) -/(.*/)?ad136/.* -# /ad134m/* (easylistchina+easylist.txt: 11439) -/(.*/)?ad134m/.* -# /ad132m/* (easylistchina+easylist.txt: 11438) -/(.*/)?ad132m/.* -# /ad132m. (easylistchina+easylist.txt: 11437) -/(.*/)?ad132m\. -ad132m.*. -# /ad125x125. (easylistchina+easylist.txt: 11436) -/(.*/)?ad125x125\. -ad125x125.*. -# /ad125b. (easylistchina+easylist.txt: 11435) -/(.*/)?ad125b\. -ad125b.*. -# /ad125. (easylistchina+easylist.txt: 11434) -/(.*/)?ad125\. -ad125.*. -# /ad120x60. (easylistchina+easylist.txt: 11433) -/(.*/)?ad120x60\. -ad120x60.*. -# /ad12. (easylistchina+easylist.txt: 11432) -/(.*/)?ad12\. -ad12.*. -# /ad1/index. (easylistchina+easylist.txt: 11431) -/(.*/)?ad1/index\. -# /ad1-728- (easylistchina+easylist.txt: 11429) -/(.*/)?ad1-728- -ad1-728-*. -# /ad02/background_ (easylistchina+easylist.txt: 11428) -/(.*/)?ad02/background_ -# /ad01. (easylistchina+easylist.txt: 11427) -/(.*/)?ad01\. -ad01.*. -# /ad000/* (easylistchina+easylist.txt: 11426) -/(.*/)?ad000/.* -# /ad/view/* (easylistchina+easylist.txt: 11424) -/(.*/)?ad/view/.* -# /ad/top_ (easylistchina+easylist.txt: 11423) -/(.*/)?ad/top_ -# /ad/top3. (easylistchina+easylist.txt: 11422) -/(.*/)?ad/top3\. -# /ad/top2. (easylistchina+easylist.txt: 11421) -/(.*/)?ad/top2\. -# /ad/top1. (easylistchina+easylist.txt: 11420) -/(.*/)?ad/top1\. -# /ad/top/* (easylistchina+easylist.txt: 11419) -/(.*/)?ad/top/.* -# /ad/top. (easylistchina+easylist.txt: 11418) -/(.*/)?ad/top\. -# /ad/timing. (easylistchina+easylist.txt: 11417) -/(.*/)?ad/timing\. -# /ad/textlinks/* (easylistchina+easylist.txt: 11416) -/(.*/)?ad/textlinks/.* -# /ad/takeover/* (easylistchina+easylist.txt: 11415) -/(.*/)?ad/takeover/.* -# /ad/swf/* (easylistchina+easylist.txt: 11414) -/(.*/)?ad/swf/.* -# /ad/superbanner. (easylistchina+easylist.txt: 11413) -/(.*/)?ad/superbanner\. -# /ad/status? (easylistchina+easylist.txt: 11412) -/(.*/)?ad/status\? -# /ad/sponsors/* (easylistchina+easylist.txt: 11411) -/(.*/)?ad/sponsors/.* -# /ad/sponsored- (easylistchina+easylist.txt: 11410) -/(.*/)?ad/sponsored- -# /ad/spacer. (easylistchina+easylist.txt: 11409) -/(.*/)?ad/spacer\. -# /ad/small- (easylistchina+easylist.txt: 11408) -/(.*/)?ad/small- -# /ad/skyscrapper. (easylistchina+easylist.txt: 11407) -/(.*/)?ad/skyscrapper\. -# /ad/skyscraper. (easylistchina+easylist.txt: 11406) -/(.*/)?ad/skyscraper\. -# /ad/skin_ (easylistchina+easylist.txt: 11405) -/(.*/)?ad/skin_ -# /ad/side_ (easylistchina+easylist.txt: 11404) -/(.*/)?ad/side_ -# /ad/show. (easylistchina+easylist.txt: 11403) -/(.*/)?ad/show\. -# /ad/serve. (easylistchina+easylist.txt: 11402) -/(.*/)?ad/serve\. -# /ad/select? (easylistchina+easylist.txt: 11401) -/(.*/)?ad/select\? -# /ad/script/* (easylistchina+easylist.txt: 11400) -/(.*/)?ad/script/.* -# /ad/rotate? (easylistchina+easylist.txt: 11399) -/(.*/)?ad/rotate\? -# /ad/right2. (easylistchina+easylist.txt: 11398) -/(.*/)?ad/right2\. -# /ad/request? (easylistchina+easylist.txt: 11397) -/(.*/)?ad/request\? -# /ad/reklamy. (easylistchina+easylist.txt: 11396) -/(.*/)?ad/reklamy\. -# /ad/rectangle. (easylistchina+easylist.txt: 11395) -/(.*/)?ad/rectangle\. -# /ad/realclick/* (easylistchina+easylist.txt: 11394) -/(.*/)?ad/realclick/.* -# /ad/realclick. (easylistchina+easylist.txt: 11393) -/(.*/)?ad/realclick\. -# /ad/random_ (easylistchina+easylist.txt: 11392) -/(.*/)?ad/random_ -# /ad/quigo/* (easylistchina+easylist.txt: 11391) -/(.*/)?ad/quigo/.* -# /ad/preview/* (easylistchina+easylist.txt: 11390) -/(.*/)?ad/preview/.* -# /ad/popup. (easylistchina+easylist.txt: 11389) -/(.*/)?ad/popup\. -# /ad/pong? (easylistchina+easylist.txt: 11388) -/(.*/)?ad/pong\? -# /ad/player| (easylistchina+easylist.txt: 11387) -/(.*/)?ad/player$ -# /ad/omakasa. (easylistchina+easylist.txt: 11386) -/(.*/)?ad/omakasa\. -# /ad/network/* (easylistchina+easylist.txt: 11385) -/(.*/)?ad/network/.* -# /ad/mpu/* (easylistchina+easylist.txt: 11384) -/(.*/)?ad/mpu/.* -# /ad/middle. (easylistchina+easylist.txt: 11383) -/(.*/)?ad/middle\. -# /ad/logo/* (easylistchina+easylist.txt: 11382) -/(.*/)?ad/logo/.* -# /ad/login- (easylistchina+easylist.txt: 11381) -/(.*/)?ad/login- -# /ad/log/* (easylistchina+easylist.txt: 11380) -/(.*/)?ad/log/.* -# /ad/loading. (easylistchina+easylist.txt: 11379) -/(.*/)?ad/loading\. -# /ad/load_ (easylistchina+easylist.txt: 11378) -/(.*/)?ad/load_ -# /ad/load. (easylistchina+easylist.txt: 11377) -/(.*/)?ad/load\. -# /ad/live- (easylistchina+easylist.txt: 11376) -/(.*/)?ad/live- -# /ad/listing- (easylistchina+easylist.txt: 11375) -/(.*/)?ad/listing- -# /ad/leaderboard. (easylistchina+easylist.txt: 11374) -/(.*/)?ad/leaderboard\. -# /ad/jsonp/* (easylistchina+easylist.txt: 11373) -/(.*/)?ad/jsonp/.* -# /ad/inventory/* (easylistchina+easylist.txt: 11372) -/(.*/)?ad/inventory/.* -# /ad/integral- (easylistchina+easylist.txt: 11371) -/(.*/)?ad/integral- -# /ad/inline? (easylistchina+easylist.txt: 11370) -/(.*/)?ad/inline\? -# /ad/index_ (easylistchina+easylist.txt: 11369) -/(.*/)?ad/index_ -# /ad/index/* (easylistchina+easylist.txt: 11368) -/(.*/)?ad/index/.* -# /ad/index. (easylistchina+easylist.txt: 11367) -/(.*/)?ad/index\. -# /ad/img/* (easylistchina+easylist.txt: 11366) -/(.*/)?ad/img/.* -# /ad/image/* (easylistchina+easylist.txt: 11365) -/(.*/)?ad/image/.* -# /ad/iframe/* (easylistchina+easylist.txt: 11364) -/(.*/)?ad/iframe/.* -# /ad/iframe. (easylistchina+easylist.txt: 11363) -/(.*/)?ad/iframe\. -# /ad/html/* (easylistchina+easylist.txt: 11362) -/(.*/)?ad/html/.* -# /ad/google_ (easylistchina+easylist.txt: 11361) -/(.*/)?ad/google_ -# /ad/google/* (easylistchina+easylist.txt: 11360) -/(.*/)?ad/google/.* -# /ad/getbanandfile? (easylistchina+easylist.txt: 11359) -/(.*/)?ad/getbanandfile\? -# /ad/getban? (easylistchina+easylist.txt: 11358) -/(.*/)?ad/getban\? -# /ad/generate? (easylistchina+easylist.txt: 11357) -/(.*/)?ad/generate\? -# /ad/framed? (easylistchina+easylist.txt: 11356) -/(.*/)?ad/framed\? -# /ad/frame1. (easylistchina+easylist.txt: 11355) -/(.*/)?ad/frame1\. -# /AD/Footer_ (easylistchina+easylist.txt: 11354) -/(.*/)?AD/Footer_ -# /ad/files/* (easylistchina+easylist.txt: 11353) -/(.*/)?ad/files/.* -# /ad/extra_ (easylistchina+easylist.txt: 11352) -/(.*/)?ad/extra_ -# /ad/extra/* (easylistchina+easylist.txt: 11351) -/(.*/)?ad/extra/.* -# /ad/empty. (easylistchina+easylist.txt: 11350) -/(.*/)?ad/empty\. -# /ad/directcall/* (easylistchina+easylist.txt: 11349) -/(.*/)?ad/directcall/.* -# /ad/css/* (easylistchina+easylist.txt: 11348) -/(.*/)?ad/css/.* -# /ad/cpmstar/* (easylistchina+easylist.txt: 11347) -/(.*/)?ad/cpmstar/.* -# /ad/content/* (easylistchina+easylist.txt: 11346) -/(.*/)?ad/content/.* -# /ad/commons/* (easylistchina+easylist.txt: 11345) -/(.*/)?ad/commons/.* -# /ad/common_ (easylistchina+easylist.txt: 11344) -/(.*/)?ad/common_ -# /ad/common/* (easylistchina+easylist.txt: 11343) -/(.*/)?ad/common/.* -# /ad/card- (easylistchina+easylist.txt: 11342) -/(.*/)?ad/card- -# /ad/bottom. (easylistchina+easylist.txt: 11341) -/(.*/)?ad/bottom\. -# /ad/blog_ (easylistchina+easylist.txt: 11340) -/(.*/)?ad/blog_ -# /ad/blank. (easylistchina+easylist.txt: 11339) -/(.*/)?ad/blank\. -# /ad/bin/* (easylistchina+easylist.txt: 11338) -/(.*/)?ad/bin/.* -# /ad/behavpixel. (easylistchina+easylist.txt: 11337) -/(.*/)?ad/behavpixel\. -# /ad/banners/* (easylistchina+easylist.txt: 11336) -/(.*/)?ad/banners/.* -# /ad/bannerimg/* (easylistchina+easylist.txt: 11335) -/(.*/)?ad/bannerimg/.* -# /ad/bannerdetails/* (easylistchina+easylist.txt: 11334) -/(.*/)?ad/bannerdetails/.* -# /ad/banner_ (easylistchina+easylist.txt: 11333) -/(.*/)?ad/banner_ -# /ad/banner? (easylistchina+easylist.txt: 11332) -/(.*/)?ad/banner\? -# /ad/banner/* (easylistchina+easylist.txt: 11331) -/(.*/)?ad/banner/.* -# /ad/banner. (easylistchina+easylist.txt: 11330) -/(.*/)?ad/banner\. -# /ad/audsci. (easylistchina+easylist.txt: 11329) -/(.*/)?ad/audsci\. -# /ad/article_ (easylistchina+easylist.txt: 11328) -/(.*/)?ad/article_ -# /ad/afc_ (easylistchina+easylist.txt: 11327) -/(.*/)?ad/afc_ -# /ad/a.aspx? (easylistchina+easylist.txt: 11326) -/(.*/)?ad/a\.aspx\? -# /ad/?site= (easylistchina+easylist.txt: 11325) -/(.*/)?ad/\?site= -# /ad/?section= (easylistchina+easylist.txt: 11324) -/(.*/)?ad/\?section= -# /ad/?host= (easylistchina+easylist.txt: 11323) -/(.*/)?ad/\?host= -# /ad/960x60. (easylistchina+easylist.txt: 11322) -/(.*/)?ad/960x60\. -# /ad/940- (easylistchina+easylist.txt: 11321) -/(.*/)?ad/940- -# /ad/938- (easylistchina+easylist.txt: 11320) -/(.*/)?ad/938- -# /ad/728- (easylistchina+easylist.txt: 11319) -/(.*/)?ad/728- -# /ad/600- (easylistchina+easylist.txt: 11318) -/(.*/)?ad/600- -# /ad/130- (easylistchina+easylist.txt: 11317) -/(.*/)?ad/130- -# /ad.ytn. (easylistchina+easylist.txt: 11316) -/(.*/)?ad\.ytn\. -ad.ytn.*. -# /ad.view? (easylistchina+easylist.txt: 11315) -/(.*/)?ad\.view\? -# /ad.valary? (easylistchina+easylist.txt: 11314) -/(.*/)?ad\.valary\? -# /ad.serve. (easylistchina+easylist.txt: 11313) -/(.*/)?ad\.serve\. -ad.serve.*. -# /ad.sense/* (easylistchina+easylist.txt: 11312) -/(.*/)?ad\.sense/.* -ad.sense/.* -# /ad.redirect. (easylistchina+easylist.txt: 11311) -/(.*/)?ad\.redirect\. -ad.redirect.*. -# /ad.popup? (easylistchina+easylist.txt: 11310) -/(.*/)?ad\.popup\? -# /ad.php| (easylistchina+easylist.txt: 11309) -/(.*/)?ad\.php$ -ad.php -# /ad.php? (easylistchina+easylist.txt: 11308) -/(.*/)?ad\.php\? -# /ad.php3? (easylistchina+easylist.txt: 11307) -/(.*/)?ad\.php3\? -# /ad.min. (easylistchina+easylist.txt: 11306) -/(.*/)?ad\.min\. -ad.min.*. -# /ad.mason? (easylistchina+easylist.txt: 11305) -/(.*/)?ad\.mason\? -# /ad.jsp? (easylistchina+easylist.txt: 11304) -/(.*/)?ad\.jsp\? -# /ad.info. (easylistchina+easylist.txt: 11303) -/(.*/)?ad\.info\. -ad.info.*. -# /ad.html? (easylistchina+easylist.txt: 11302) -/(.*/)?ad\.html\? -# /ad.gif| (easylistchina+easylist.txt: 11301) -/(.*/)?ad\.gif$ -ad.gif -# /ad.epl? (easylistchina+easylist.txt: 11300) -/(.*/)?ad\.epl\? -# /ad.css? (easylistchina+easylist.txt: 11299) -/(.*/)?ad\.css\? -# /ad.code? (easylistchina+easylist.txt: 11298) -/(.*/)?ad\.code\? -# /ad.cgi? (easylistchina+easylist.txt: 11297) -/(.*/)?ad\.cgi\? -# /ad.aspx? (easylistchina+easylist.txt: 11296) -/(.*/)?ad\.aspx\? -# /ad.asp? (easylistchina+easylist.txt: 11295) -/(.*/)?ad\.asp\? -# /ad.ashx? (easylistchina+easylist.txt: 11294) -/(.*/)?ad\.ashx\? -# /ad.ams. (easylistchina+easylist.txt: 11293) -/(.*/)?ad\.ams\. -ad.ams.*. -# /ad-view- (easylistchina+easylist.txt: 11292) -/(.*/)?ad-view- -ad-view-*. -# /ad-verticalbar. (easylistchina+easylist.txt: 11291) -/(.*/)?ad-verticalbar\. -ad-verticalbar.*. -# /ad-vertical- (easylistchina+easylist.txt: 11290) -/(.*/)?ad-vertical- -ad-vertical-*. -# /ad-vert. (easylistchina+easylist.txt: 11289) -/(.*/)?ad-vert\. -ad-vert.*. -# /ad-utilities. (easylistchina+easylist.txt: 11288) -/(.*/)?ad-utilities\. -ad-utilities.*. -# /ad-updated- (easylistchina+easylist.txt: 11287) -/(.*/)?ad-updated- -ad-updated-*. -# /ad-unit- (easylistchina+easylist.txt: 11286) -/(.*/)?ad-unit- -ad-unit-*. -# /ad-topbanner- (easylistchina+easylist.txt: 11285) -/(.*/)?ad-topbanner- -ad-topbanner-*. -# /ad-top/* (easylistchina+easylist.txt: 11284) -/(.*/)?ad-top/.* -# /ad-top. (easylistchina+easylist.txt: 11283) -/(.*/)?ad-top\. -ad-top.*. -# /ad-top- (easylistchina+easylist.txt: 11282) -/(.*/)?ad-top- -ad-top-*. -# /ad-title. (easylistchina+easylist.txt: 11281) -/(.*/)?ad-title\. -ad-title.*. -# /ad-text. (easylistchina+easylist.txt: 11280) -/(.*/)?ad-text\. -ad-text.*. -# /ad-template/* (easylistchina+easylist.txt: 11279) -/(.*/)?ad-template/.* -# /ad-template. (easylistchina+easylist.txt: 11278) -/(.*/)?ad-template\. -ad-template.*. -# /ad-tandem. (easylistchina+easylist.txt: 11277) -/(.*/)?ad-tandem\. -ad-tandem.*. -# /ad-tag2. (easylistchina+easylist.txt: 11276) -/(.*/)?ad-tag2\. -ad-tag2.*. -# /ad-styles. (easylistchina+easylist.txt: 11275) -/(.*/)?ad-styles\. -ad-styles.*. -# /ad-studio/* (easylistchina+easylist.txt: 11274) -/(.*/)?ad-studio/.* -# /ad-strip. (easylistchina+easylist.txt: 11273) -/(.*/)?ad-strip\. -ad-strip.*. -# /ad-sprite. (easylistchina+easylist.txt: 11272) -/(.*/)?ad-sprite\. -ad-sprite.*. -# /ad-specs. (easylistchina+easylist.txt: 11271) -/(.*/)?ad-specs\. -ad-specs.*. -# /ad-source/* (easylistchina+easylist.txt: 11270) -/(.*/)?ad-source/.* -# /ad-skyscraper. (easylistchina+easylist.txt: 11269) -/(.*/)?ad-skyscraper\. -ad-skyscraper.*. -# /ad-sidebar- (easylistchina+easylist.txt: 11268) -/(.*/)?ad-sidebar- -ad-sidebar-*. -# /ad-side/* (easylistchina+easylist.txt: 11267) -/(.*/)?ad-side/.* -# /ad-server/* (easylistchina+easylist.txt: 11266) -/(.*/)?ad-server/.* -# /ad-server. (easylistchina+easylist.txt: 11265) -/(.*/)?ad-server\. -ad-server.*. -# /ad-serve? (easylistchina+easylist.txt: 11264) -/(.*/)?ad-serve\? -# /ad-rotator- (easylistchina+easylist.txt: 11263) -/(.*/)?ad-rotator- -ad-rotator-*. -# /ad-ros- (easylistchina+easylist.txt: 11262) -/(.*/)?ad-ros- -ad-ros-*. -# /ad-right2. (easylistchina+easylist.txt: 11261) -/(.*/)?ad-right2\. -ad-right2.*. -# /ad-refresh. (easylistchina+easylist.txt: 11260) -/(.*/)?ad-refresh\. -ad-refresh.*. -# /ad-refresh- (easylistchina+easylist.txt: 11259) -/(.*/)?ad-refresh- -ad-refresh-*. -# /ad-record. (easylistchina+easylist.txt: 11258) -/(.*/)?ad-record\. -ad-record.*. -# /ad-pub. (easylistchina+easylist.txt: 11257) -/(.*/)?ad-pub\. -ad-pub.*. -# /ad-position- (easylistchina+easylist.txt: 11256) -/(.*/)?ad-position- -ad-position-*. -# /ad-point/* (easylistchina+easylist.txt: 11255) -/(.*/)?ad-point/.* -# /ad-plate/* (easylistchina+easylist.txt: 11254) -/(.*/)?ad-plate/.* -# /ad-page/* (easylistchina+easylist.txt: 11253) -/(.*/)?ad-page/.* -# /ad-openx. (easylistchina+easylist.txt: 11252) -/(.*/)?ad-openx\. -ad-openx.*. -# /ad-offer1. (easylistchina+easylist.txt: 11251) -/(.*/)?ad-offer1\. -ad-offer1.*. -# /ad-nytimes. (easylistchina+easylist.txt: 11250) -/(.*/)?ad-nytimes\. -ad-nytimes.*. -# /ad-modules/* (easylistchina+easylist.txt: 11249) -/(.*/)?ad-modules/.* -# /ad-minister/* (easylistchina+easylist.txt: 11248) -/(.*/)?ad-minister/.* -# /ad-minister. (easylistchina+easylist.txt: 11247) -/(.*/)?ad-minister\. -ad-minister.*. -# /ad-minister- (easylistchina+easylist.txt: 11246) -/(.*/)?ad-minister- -ad-minister-*. -# /ad-methods. (easylistchina+easylist.txt: 11245) -/(.*/)?ad-methods\. -ad-methods.*. -# /ad-maven- (easylistchina+easylist.txt: 11244) -/(.*/)?ad-maven- -ad-maven-*. -# /ad-managment/* (easylistchina+easylist.txt: 11243) -/(.*/)?ad-managment/.* -# /ad-manager/* (easylistchina+easylist.txt: 11242) -/(.*/)?ad-manager/.* -# /ad-logger/* (easylistchina+easylist.txt: 11241) -/(.*/)?ad-logger/.* -# /ad-loading. (easylistchina+easylist.txt: 11239) -/(.*/)?ad-loading\. -ad-loading.*. -# /ad-loader. (easylistchina+easylist.txt: 11238) -/(.*/)?ad-loader\. -ad-loader.*. -# /ad-loader- (easylistchina+easylist.txt: 11237) -/(.*/)?ad-loader- -ad-loader-*. -# /ad-link/* (easylistchina+easylist.txt: 11236) -/(.*/)?ad-link/.* -# /ad-lil. (easylistchina+easylist.txt: 11235) -/(.*/)?ad-lil\. -ad-lil.*. -# /ad-letter. (easylistchina+easylist.txt: 11234) -/(.*/)?ad-letter\. -ad-letter.*. -# /ad-left. (easylistchina+easylist.txt: 11233) -/(.*/)?ad-left\. -ad-left.*. -# /ad-leaderboard. (easylistchina+easylist.txt: 11232) -/(.*/)?ad-leaderboard\. -ad-leaderboard.*. -# /ad-layout/*$~script,~stylesheet (easylistchina+easylist.txt: 11231) -/(.*/)?ad-layout/.* -# /ad-layering- (easylistchina+easylist.txt: 11230) -/(.*/)?ad-layering- -ad-layering-*. -# /ad-label. (easylistchina+easylist.txt: 11229) -/(.*/)?ad-label\. -ad-label.*. -# /ad-label- (easylistchina+easylist.txt: 11228) -/(.*/)?ad-label- -ad-label-*. -# /ad-issue. (easylistchina+easylist.txt: 11227) -/(.*/)?ad-issue\. -ad-issue.*. -# /ad-int- (easylistchina+easylist.txt: 11226) -/(.*/)?ad-int- -ad-int-*. -# /ad-injection/* (easylistchina+easylist.txt: 11225) -/(.*/)?ad-injection/.* -# /ad-inject/* (easylistchina+easylist.txt: 11224) -/(.*/)?ad-inject/.* -# /ad-indicator- (easylistchina+easylist.txt: 11223) -/(.*/)?ad-indicator- -ad-indicator-*. -# /ad-ina. (easylistchina+easylist.txt: 11222) -/(.*/)?ad-ina\. -ad-ina.*. -# /ad-images/* (easylistchina+easylist.txt: 11221) -/(.*/)?ad-images/.* -# /ad-image. (easylistchina+easylist.txt: 11220) -/(.*/)?ad-image\. -ad-image.*. -# /ad-iframe? (easylistchina+easylist.txt: 11219) -/(.*/)?ad-iframe\? -# /ad-iframe. (easylistchina+easylist.txt: 11218) -/(.*/)?ad-iframe\. -ad-iframe.*. -# /ad-iframe- (easylistchina+easylist.txt: 11217) -/(.*/)?ad-iframe- -ad-iframe-*. -# /ad-ifr. (easylistchina+easylist.txt: 11216) -/(.*/)?ad-ifr\. -ad-ifr.*. -# /ad-identifier. (easylistchina+easylist.txt: 11215) -/(.*/)?ad-identifier\. -ad-identifier.*. -# /ad-hug. (easylistchina+easylist.txt: 11214) -/(.*/)?ad-hug\. -ad-hug.*. -# /ad-home- (easylistchina+easylist.txt: 11213) -/(.*/)?ad-home- -ad-home-*. -# /ad-header. (easylistchina+easylist.txt: 11212) -/(.*/)?ad-header\. -ad-header.*. -# /ad-hcm. (easylistchina+easylist.txt: 11211) -/(.*/)?ad-hcm\. -ad-hcm.*. -# /ad-half_ (easylistchina+easylist.txt: 11210) -/(.*/)?ad-half_ -# /ad-gallery.$~stylesheet (easylistchina+easylist.txt: 11209) -/(.*/)?ad-gallery\. -ad-gallery.*. -# /ad-frame/* (easylistchina+easylist.txt: 11208) -/(.*/)?ad-frame/.* -# /ad-frame. (easylistchina+easylist.txt: 11207) -/(.*/)?ad-frame\. -ad-frame.*. -# /ad-format. (easylistchina+easylist.txt: 11206) -/(.*/)?ad-format\. -ad-format.*. -# /ad-flashgame. (easylistchina+easylist.txt: 11205) -/(.*/)?ad-flashgame\. -ad-flashgame.*. -# /ad-fix- (easylistchina+easylist.txt: 11204) -/(.*/)?ad-fix- -ad-fix-*. -# /ad-feedback. (easylistchina+easylist.txt: 11203) -/(.*/)?ad-feedback\. -ad-feedback.*. -# /ad-feature- (easylistchina+easylist.txt: 11202) -/(.*/)?ad-feature- -ad-feature-*. -# /ad-exchange. (easylistchina+easylist.txt: 11201) -/(.*/)?ad-exchange\. -ad-exchange.*. -# /ad-engine. (easylistchina+easylist.txt: 11200) -/(.*/)?ad-engine\. -ad-engine.*. -# /ad-emea. (easylistchina+easylist.txt: 11199) -/(.*/)?ad-emea\. -ad-emea.*. -# /ad-creatives/* (easylistchina+easylist.txt: 11198) -/(.*/)?ad-creatives/.* -# /ad-creatives- (easylistchina+easylist.txt: 11197) -/(.*/)?ad-creatives- -ad-creatives-*. -# /ad-choices. (easylistchina+easylist.txt: 11196) -/(.*/)?ad-choices\. -ad-choices.*. -# /ad-choices- (easylistchina+easylist.txt: 11195) -/(.*/)?ad-choices- -ad-choices-*. -# /ad-channel- (easylistchina+easylist.txt: 11194) -/(.*/)?ad-channel- -ad-channel-*. -# /ad-cdn. (easylistchina+easylist.txt: 11193) -/(.*/)?ad-cdn\. -ad-cdn.*. -# /ad-callback. (easylistchina+easylist.txt: 11192) -/(.*/)?ad-callback\. -ad-callback.*. -# /ad-button1. (easylistchina+easylist.txt: 11191) -/(.*/)?ad-button1\. -ad-button1.*. -# /ad-builder. (easylistchina+easylist.txt: 11190) -/(.*/)?ad-builder\. -ad-builder.*. -# /ad-boxes- (easylistchina+easylist.txt: 11189) -/(.*/)?ad-boxes- -ad-boxes-*. -# /ad-box- (easylistchina+easylist.txt: 11188) -/(.*/)?ad-box- -ad-box-*. -# /ad-bottom. (easylistchina+easylist.txt: 11187) -/(.*/)?ad-bottom\. -ad-bottom.*. -# /ad-bin/* (easylistchina+easylist.txt: 11186) -/(.*/)?ad-bin/.* -# /ad-bckg. (easylistchina+easylist.txt: 11185) -/(.*/)?ad-bckg\. -ad-bckg.*. -# /ad-banner. (easylistchina+easylist.txt: 11184) -/(.*/)?ad-banner\. -ad-banner.*. -# /ad-banner- (easylistchina+easylist.txt: 11183) -/(.*/)?ad-banner- -ad-banner-*. -# /ad-background. (easylistchina+easylist.txt: 11182) -/(.*/)?ad-background\. -ad-background.*. -# /ad-audit. (easylistchina+easylist.txt: 11181) -/(.*/)?ad-audit\. -ad-audit.*. -# /ad-amz. (easylistchina+easylist.txt: 11180) -/(.*/)?ad-amz\. -ad-amz.*. -# /ad-600- (easylistchina+easylist.txt: 11179) -/(.*/)?ad-600- -ad-600-*. -# /ad-468- (easylistchina+easylist.txt: 11178) -/(.*/)?ad-468- -ad-468-*. -# /ad-410x300. (easylistchina+easylist.txt: 11177) -/(.*/)?ad-410x300\. -ad-410x300.*. -# /ad-350x350- (easylistchina+easylist.txt: 11176) -/(.*/)?ad-350x350- -ad-350x350-*. -# /ad-300x254. (easylistchina+easylist.txt: 11175) -/(.*/)?ad-300x254\. -ad-300x254.*. -# /ad-300x250. (easylistchina+easylist.txt: 11174) -/(.*/)?ad-300x250\. -ad-300x250.*. -# /ad-300topleft. (easylistchina+easylist.txt: 11173) -/(.*/)?ad-300topleft\. -ad-300topleft.*. -# /ad-125. (easylistchina+easylist.txt: 11172) -/(.*/)?ad-125\. -ad-125.*. -# /ad%20images/* (easylistchina+easylist.txt: 11171) -/(.*/)?ad%20images/.* -# /ad%20banners/* (easylistchina+easylist.txt: 11170) -/(.*/)?ad%20banners/.* -# /active-ad- (easylistchina+easylist.txt: 11169) -/(.*/)?active-ad- -active-ad-*. -# /acc_random= (easylistchina+easylist.txt: 11168) -/(.*/)?acc_random= -# /AbvProductAds/* (easylistchina+easylist.txt: 11167) -/(.*/)?AbvProductAds/.* -# /abvAds_ (easylistchina+easylist.txt: 11166) -/(.*/)?abvAds_ -# /absolutebm.aspx? (easylistchina+easylist.txt: 11165) -/(.*/)?absolutebm\.aspx\? -# /about-these-ads. (easylistchina+easylist.txt: 11164) -/(.*/)?about-these-ads\. -about-these-ads.*. -# /abnl/?narodads^ (easylistchina+easylist.txt: 11163) -/(.*/)?abnl/\?narodads[^\w%.-] -# /abnl/?begun^ (easylistchina+easylist.txt: 11162) -/(.*/)?abnl/\?begun[^\w%.-] -# /abmw/* (easylistchina+easylist.txt: 11161) -/(.*/)?abmw/.* -# /abmw.asp (easylistchina+easylist.txt: 11160) -/(.*/)?abmw\.asp -abmw.asp*. -# /abm.aspx (easylistchina+easylist.txt: 11159) -/(.*/)?abm\.aspx -abm.aspx*. -# /abm.asp? (easylistchina+easylist.txt: 11158) -/(.*/)?abm\.asp\? -# /ABAdsv1. (easylistchina+easylist.txt: 11157) -/(.*/)?ABAdsv1\. -ABAdsv1.*. -# /aamsz= (easylistchina+easylist.txt: 11156) -/(.*/)?aamsz= -# /a3/?sub=$third-party (easylistchina+easylist.txt: 11155) -/(.*/)?a3/\?sub= -# /a2/ads/* (easylistchina+easylist.txt: 11154) -/(.*/)?a2/ads/.* -# /a2/?sub=$third-party (easylistchina+easylist.txt: 11153) -/(.*/)?a2/\?sub= -# /a1/*?sub=$third-party (easylistchina+easylist.txt: 11152) -/(.*/)?a1/.*\?sub= -# /a/display.php? (easylistchina+easylist.txt: 11151) -/(.*/)?a/display\.php\? -# /a/ads/* (easylistchina+easylist.txt: 11150) -/(.*/)?a/ads/.* -# /_svc/ad/* (easylistchina+easylist.txt: 11149) -/(.*/)?_svc/ad/.* -# /_scripts/_oas/* (easylistchina+easylist.txt: 11148) -/(.*/)?_scripts/_oas/.* -# /_js2/oas. (easylistchina+easylist.txt: 11147) -/(.*/)?_js2/oas\. -# /_img/ad_ (easylistchina+easylist.txt: 11146) -/(.*/)?_img/ad_ -# /_global/ads/* (easylistchina+easylist.txt: 11145) -/(.*/)?_global/ads/.* -# /_affiliatebanners/* (easylistchina+easylist.txt: 11144) -/(.*/)?_affiliatebanners/.* -# /_ads/* (easylistchina+easylist.txt: 11143) -/(.*/)?_ads/.* -# /_30/ads/* (easylistchina+easylist.txt: 11142) -/(.*/)?_30/ads/.* -# /_/ads/* (easylistchina+easylist.txt: 11141) -/(.*/)?_/ads/.* -# /?view=ad (easylistchina+easylist.txt: 11140) -/(.*/)?\?view=ad -# /?advideo/* (easylistchina+easylist.txt: 11139) -/(.*/)?\?advideo/.* -# /?adv_partner (easylistchina+easylist.txt: 11138) -/(.*/)?\?adv_partner -# /?addyn|* (easylistchina+easylist.txt: 11137) -/(.*/)?\?addyn\|.* -# /728x90banner. (easylistchina+easylist.txt: 11136) -/(.*/)?728x90banner\. -728x90banner.*. -# /728x80topad. (easylistchina+easylist.txt: 11135) -/(.*/)?728x80topad\. -728x80topad.*. -# /728_ad_ (easylistchina+easylist.txt: 11134) -/(.*/)?728_ad_ -# /468xads. (easylistchina+easylist.txt: 11133) -/(.*/)?468xads\. -468xads.*. -# /468ad. (easylistchina+easylist.txt: 11132) -/(.*/)?468ad\. -468ad.*. -# /468-banner. (easylistchina+easylist.txt: 11131) -/(.*/)?468-banner\. -468-banner.*. -# /3pt_ads. (easylistchina+easylist.txt: 11130) -/(.*/)?3pt_ads\. -# /336x280ads. (easylistchina+easylist.txt: 11129) -/(.*/)?336x280ads\. -336x280ads.*. -# /300x500_ad (easylistchina+easylist.txt: 11128) -/(.*/)?300x500_ad -# /300x250advert. (easylistchina+easylist.txt: 11127) -/(.*/)?300x250advert\. -300x250advert.*. -# /300x250ads. (easylistchina+easylist.txt: 11126) -/(.*/)?300x250ads\. -300x250ads.*. -# /300x250adbg. (easylistchina+easylist.txt: 11125) -/(.*/)?300x250adbg\. -300x250adbg.*. -# /300x250ad. (easylistchina+easylist.txt: 11124) -/(.*/)?300x250ad\. -300x250ad.*. -# /300by250ad. (easylistchina+easylist.txt: 11123) -/(.*/)?300by250ad\. -300by250ad.*. -# /300ad. (easylistchina+easylist.txt: 11122) -/(.*/)?300ad\. -300ad.*. -# /300_ad_ (easylistchina+easylist.txt: 11121) -/(.*/)?300_ad_ -# /300250_ad- (easylistchina+easylist.txt: 11120) -/(.*/)?300250_ad- -# /300-ad- (easylistchina+easylist.txt: 11119) -/(.*/)?300-ad- -300-ad-*. -# /250x250_advert_ (easylistchina+easylist.txt: 11118) -/(.*/)?250x250_advert_ -# /24adscript. (easylistchina+easylist.txt: 11117) -/(.*/)?24adscript\. -24adscript.*. -# /24-7ads. (easylistchina+easylist.txt: 11116) -/(.*/)?24-7ads\. -24-7ads.*. -# /2015/ads/* (easylistchina+easylist.txt: 11115) -/(.*/)?2015/ads/.* -# /2014/ads/* (easylistchina+easylist.txt: 11114) -/(.*/)?2014/ads/.* -# /2013/ads/* (easylistchina+easylist.txt: 11113) -/(.*/)?2013/ads/.* -# /2011/ads/* (easylistchina+easylist.txt: 11112) -/(.*/)?2011/ads/.* -# /2010main/ad/* (easylistchina+easylist.txt: 11111) -/(.*/)?2010main/ad/.* -# /2010/ads/* (easylistchina+easylist.txt: 11110) -/(.*/)?2010/ads/.* -# /1afr.php? (easylistchina+easylist.txt: 11109) -/(.*/)?1afr\.php\? -# /1912/ads/* (easylistchina+easylist.txt: 11108) -/(.*/)?1912/ads/.* -# /17/ads/* (easylistchina+easylist.txt: 11107) -/(.*/)?17/ads/.* -# /160_ad_ (easylistchina+easylist.txt: 11106) -/(.*/)?160_ad_ -# /126_ad. (easylistchina+easylist.txt: 11105) -/(.*/)?126_ad\. -# /125x125ad. (easylistchina+easylist.txt: 11104) -/(.*/)?125x125ad\. -125x125ad.*. -# /125x125_banner. (easylistchina+easylist.txt: 11103) -/(.*/)?125x125_banner\. -# /125x125_ADS/* (easylistchina+easylist.txt: 11102) -/(.*/)?125x125_ADS/.* -# /120ads/* (easylistchina+easylist.txt: 11101) -/(.*/)?120ads/.* -# /120ad. (easylistchina+easylist.txt: 11100) -/(.*/)?120ad\. -120ad.*. -# /1/ads/* (easylistchina+easylist.txt: 11099) -/(.*/)?1/ads/.* -# /04/ads- (easylistchina+easylist.txt: 11098) -/(.*/)?04/ads- -# /0/ads/* (easylistchina+easylist.txt: 11097) -/(.*/)?0/ads/.* -# /!advert_ (easylistchina+easylist.txt: 11096) -/(.*/)?!advert_ -# .zw/ads/ (easylistchina+easylist.txt: 11095) -/.*\.zw/ads/ -.*.zw/ads/ -# .zm/ads/ (easylistchina+easylist.txt: 11094) -/.*\.zm/ads/ -.*.zm/ads/ -# .za/ads/ (easylistchina+easylist.txt: 11093) -/.*\.za/ads/ -.*.za/ads/ -# .za/ads. (easylistchina+easylist.txt: 11092) -/.*\.za/ads\. -.*.za/ads\. -# .xxx/ads/ (easylistchina+easylist.txt: 11091) -/.*\.xxx/ads/ -.*.xxx/ads/ -# .ws/ads/ (easylistchina+easylist.txt: 11090) -/.*\.ws/ads/ -.*.ws/ads/ -# .widgets.ad? (easylistchina+easylist.txt: 11089) -/.*\.widgets\.ad\? -# .vert.ad. (easylistchina+easylist.txt: 11088) -/.*\.vert\.ad\. -.*.vert.ad.*. -# .utils.ads. (easylistchina+easylist.txt: 11087) -/.*\.utils\.ads\. -.*.utils.ads.*. -# .us/ads/ (easylistchina+easylist.txt: 11086) -/.*\.us/ads/ -.*.us/ads/ -# .uk/adv/ (easylistchina+easylist.txt: 11085) -/.*\.uk/adv/ -.*.uk/adv/ -# .uk/ads/ (easylistchina+easylist.txt: 11084) -/.*\.uk/ads/ -.*.uk/ads/ -# .tz/ads/ (easylistchina+easylist.txt: 11083) -/.*\.tz/ads/ -.*.tz/ads/ -# .twoads. (easylistchina+easylist.txt: 11082) -/.*\.twoads\. -.*.twoads.*. -# .tv/ads/ (easylistchina+easylist.txt: 11081) -/.*\.tv/ads/ -.*.tv/ads/ -# .tv/ads. (easylistchina+easylist.txt: 11080) -/.*\.tv/ads\. -.*.tv/ads\. -# .tv/adl. (easylistchina+easylist.txt: 11079) -/.*\.tv/adl\. -.*.tv/adl\. -# .topad. (easylistchina+easylist.txt: 11078) -/.*\.topad\. -.*.topad.*. -# .to/ads/ (easylistchina+easylist.txt: 11077) -/.*\.to/ads/ -.*.to/ads/ -# .th/ads/ (easylistchina+easylist.txt: 11076) -/.*\.th/ads/ -.*.th/ads/ -# .textads. (easylistchina+easylist.txt: 11075) -/.*\.textads\. -.*.textads.*. -# .text-link-ads. (easylistchina+easylist.txt: 11074) -/.*\.text-link-ads\. -.*.text-link-ads.*. -# .swf?popupiniframe= (easylistchina+easylist.txt: 11073) -/.*\.swf\?popupiniframe= -# .swf?link=http (easylistchina+easylist.txt: 11072) -/.*\.swf\?link=http -# .swf?link1=http (easylistchina+easylist.txt: 11071) -/.*\.swf\?link1=http -# .swf?iurl=http (easylistchina+easylist.txt: 11070) -/.*\.swf\?iurl=http -# .swf?clickthru= (easylistchina+easylist.txt: 11069) -/.*\.swf\?clickthru= -# .swf?clicktag= (easylistchina+easylist.txt: 11068) -/.*\.swf\?clicktag= -# .swf?click= (easylistchina+easylist.txt: 11067) -/.*\.swf\?click= -# .swf?ad= (easylistchina+easylist.txt: 11066) -/.*\.swf\?ad= -# .swf?2&clicktag= (easylistchina+easylist.txt: 11065) -/.*\.swf\?2&clicktag= -# .swf?1&clicktag= (easylistchina+easylist.txt: 11064) -/.*\.swf\?1&clicktag= -# .streamads. (easylistchina+easylist.txt: 11063) -/.*\.streamads\. -.*.streamads.*. -# .sponsorads. (easylistchina+easylist.txt: 11062) -/.*\.sponsorads\. -.*.sponsorads.*. -# .spider.ad/ (easylistchina+easylist.txt: 11061) -/.*\.spider\.ad/ -.*.spider.ad -# .sk/ads/ (easylistchina+easylist.txt: 11060) -/.*\.sk/ads/ -.*.sk/ads/ -# .show_ad_ (easylistchina+easylist.txt: 11059) -/.*\.show_ad_ -# .shortcuts.search. (easylistchina+easylist.txt: 11058) -/.*\.shortcuts\.search\. -.*.shortcuts.search.*. -# .se/ads/ (easylistchina+easylist.txt: 11057) -/.*\.se/ads/ -.*.se/ads/ -# .se/?placement=$script,subdocument,third-party (easylistchina+easylist.txt: 11056) -/.*\.se/\?placement= -.*.se/\?placement= -# .rolloverad. (easylistchina+easylist.txt: 11055) -/.*\.rolloverad\. -.*.rolloverad.*. -# .refit.ads. (easylistchina+easylist.txt: 11054) -/.*\.refit\.ads\. -.*.refit.ads.*. -# .popupvideoad. (easylistchina+easylist.txt: 11053) -/.*\.popupvideoad\. -.*.popupvideoad.*. -# .popup_im. (easylistchina+easylist.txt: 11052) -/.*\.popup_im\. -# .popunder.js (easylistchina+easylist.txt: 11051) -/.*\.popunder\.js -.*.popunder.js*. -# .pl/ads/ (easylistchina+easylist.txt: 11050) -/.*\.pl/ads/ -.*.pl/ads/ -# .pk/ads/ (easylistchina+easylist.txt: 11049) -/.*\.pk/ads/ -.*.pk/ads/ -# .php?zoneid= (easylistchina+easylist.txt: 11048) -/.*\.php\?zoneid= -# .php?zone_id= (easylistchina+easylist.txt: 11047) -/.*\.php\?zone_id= -# .php?nats= (easylistchina+easylist.txt: 11046) -/.*\.php\?nats= -# .php?clicktag= (easylistchina+easylist.txt: 11045) -/.*\.php\?clicktag= -# .php?affid= (easylistchina+easylist.txt: 11044) -/.*\.php\?affid= -# .php?adv_ (easylistchina+easylist.txt: 11043) -/.*\.php\?adv_ -# .php?adv= (easylistchina+easylist.txt: 11042) -/.*\.php\?adv= -# .php?adsid= (easylistchina+easylist.txt: 11041) -/.*\.php\?adsid= -# .php?ad_ (easylistchina+easylist.txt: 11040) -/.*\.php\?ad_ -# .php?ad= (easylistchina+easylist.txt: 11039) -/.*\.php\?ad= -# .php/ads/ (easylistchina+easylist.txt: 11038) -/.*\.php/ads/ -.*.php/ads/ -# .php/ad/ (easylistchina+easylist.txt: 11037) -/.*\.php/ad/ -.*.php/ad/ -# .ph/ads/ (easylistchina+easylist.txt: 11036) -/.*\.ph/ads/ -.*.ph/ads/ -# .org/pops.js (easylistchina+easylist.txt: 11035) -/.*\.org/pops\.js -.*.org/pops\.js -# .org/gads/ (easylistchina+easylist.txt: 11034) -/.*\.org/gads/ -.*.org/gads/ -# .org/exit.js (easylistchina+easylist.txt: 11033) -/.*\.org/exit\.js -.*.org/exit\.js -# .org/adv/ (easylistchina+easylist.txt: 11032) -/.*\.org/adv/ -.*.org/adv/ -# .org/ads_ (easylistchina+easylist.txt: 11031) -/.*\.org/ads_ -.*.org/ads_ -# .org/ads/ (easylistchina+easylist.txt: 11030) -/.*\.org/ads/ -.*.org/ads/ -# .org/ads- (easylistchina+easylist.txt: 11029) -/.*\.org/ads- -.*.org/ads- -# .org/adgallery1 (easylistchina+easylist.txt: 11028) -/.*\.org/adgallery1 -.*.org/adgallery1 -# .org/ad_ (easylistchina+easylist.txt: 11027) -/.*\.org/ad_ -.*.org/ad_ -# .org/ad/ (easylistchina+easylist.txt: 11026) -/.*\.org/ad/ -.*.org/ad/ -# .org/ad. (easylistchina+easylist.txt: 11025) -/.*\.org/ad\. -.*.org/ad\. -# .org/ad- (easylistchina+easylist.txt: 11024) -/.*\.org/ad- -.*.org/ad- -# .openxtag.min.js (easylistchina+easylist.txt: 11023) -/.*\.openxtag\.min\.js -.*.openxtag.min.js*. -# .openxtag.js (easylistchina+easylist.txt: 11022) -/.*\.openxtag\.js -.*.openxtag.js*. -# .openx. (easylistchina+easylist.txt: 11021) -/.*\.openx\. -.*.openx.*. -# .openad. (easylistchina+easylist.txt: 11020) -/.*\.openad\. -.*.openad.*. -# .oasfile. (easylistchina+easylist.txt: 11019) -/.*\.oasfile\. -.*.oasfile.*. -# .nz/ads/ (easylistchina+easylist.txt: 11018) -/.*\.nz/ads/ -.*.nz/ads/ -# .nu/ads/ (easylistchina+easylist.txt: 11017) -/.*\.nu/ads/ -.*.nu/ads/ -# .no/ads/ (easylistchina+easylist.txt: 11016) -/.*\.no/ads/ -.*.no/ads/ -# .nl/ads/ (easylistchina+easylist.txt: 11015) -/.*\.nl/ads/ -.*.nl/ads/ -# .nl/ad2/ (easylistchina+easylist.txt: 11014) -/.*\.nl/ad2/ -.*.nl/ad2/ -# .net/vghd_ (easylistchina+easylist.txt: 11013) -/.*\.net/vghd_ -.*.net/vghd_ -# .net/pops.js (easylistchina+easylist.txt: 11012) -/.*\.net/pops\.js -.*.net/pops\.js -# .net/pfadj/ (easylistchina+easylist.txt: 11011) -/.*\.net/pfadj/ -.*.net/pfadj/ -# .net/noidadx/ (easylistchina+easylist.txt: 11010) -/.*\.net/noidadx/ -.*.net/noidadx/ -# .net/gads/ (easylistchina+easylist.txt: 11009) -/.*\.net/gads/ -.*.net/gads/ -# .net/flashads (easylistchina+easylist.txt: 11008) -/.*\.net/flashads -.*.net/flashads -# .net/bnr/ (easylistchina+easylist.txt: 11007) -/.*\.net/bnr/ -.*.net/bnr/ -# .net/affiliate/ (easylistchina+easylist.txt: 11006) -/.*\.net/affiliate/ -.*.net/affiliate/ -# .net/adv/ (easylistchina+easylist.txt: 11005) -/.*\.net/adv/ -.*.net/adv/ -# .net/adt? (easylistchina+easylist.txt: 11004) -/.*\.net/adt\? -.*.net/adt\? -# .net/ads_ (easylistchina+easylist.txt: 11003) -/.*\.net/ads_ -.*.net/ads_ -# .net/ads? (easylistchina+easylist.txt: 11002) -/.*\.net/ads\? -.*.net/ads\? -# .net/ads/ (easylistchina+easylist.txt: 11001) -/.*\.net/ads/ -.*.net/ads/ -# .net/ads. (easylistchina+easylist.txt: 11000) -/.*\.net/ads\. -.*.net/ads\. -# .net/ads- (easylistchina+easylist.txt: 10999) -/.*\.net/ads- -.*.net/ads- -# .net/adj; (easylistchina+easylist.txt: 10998) -/.*\.net/adj; -.*.net/adj; -# .net/adgallery (easylistchina+easylist.txt: 10997) -/.*\.net/adgallery -.*.net/adgallery -# .net/ad_ (easylistchina+easylist.txt: 10996) -/.*\.net/ad_ -.*.net/ad_ -# .net/ad2/ (easylistchina+easylist.txt: 10995) -/.*\.net/ad2/ -.*.net/ad2/ -# .net/ad/$~object-subrequest (easylistchina+easylist.txt: 10994) -/.*\.net/ad/ -.*.net/ad/ -# .net/ad- (easylistchina+easylist.txt: 10993) -/.*\.net/ad- -.*.net/ad- -# .net/_adv/ (easylistchina+easylist.txt: 10992) -/.*\.net/_adv/ -.*.net/_adv/ -# .name/ads/ (easylistchina+easylist.txt: 10991) -/.*\.name/ads/ -.*.name/ads/ -# .my/ads/ (easylistchina+easylist.txt: 10990) -/.*\.my/ads/ -.*.my/ads/ -# .mx/ads/ (easylistchina+easylist.txt: 10989) -/.*\.mx/ads/ -.*.mx/ads/ -# .mv/ads/ (easylistchina+easylist.txt: 10988) -/.*\.mv/ads/ -.*.mv/ads/ -# .mobileads. (easylistchina+easylist.txt: 10987) -/.*\.mobileads\. -.*.mobileads.*. -# .me/ads/ (easylistchina+easylist.txt: 10986) -/.*\.me/ads/ -.*.me/ads/ -# .me/ads- (easylistchina+easylist.txt: 10985) -/.*\.me/ads- -.*.me/ads- -# .lk/ads/ (easylistchina+easylist.txt: 10984) -/.*\.lk/ads/ -.*.lk/ads/ -# .link/ads/ (easylistchina+easylist.txt: 10983) -/.*\.link/ads/ -.*.link/ads/ -# .lazyload-ad. (easylistchina+easylist.txt: 10982) -/.*\.lazyload-ad\. -.*.lazyload-ad.*. -# .lazyload-ad- (easylistchina+easylist.txt: 10981) -/.*\.lazyload-ad- -.*.lazyload-ad-*. -# .ke/ads/ (easylistchina+easylist.txt: 10980) -/.*\.ke/ads/ -.*.ke/ads/ -# .jsp?adcode= (easylistchina+easylist.txt: 10979) -/.*\.jsp\?adcode= -# .jp/ads/ (easylistchina+easylist.txt: 10978) -/.*\.jp/ads/ -.*.jp/ads/ -# .is/ads/ (easylistchina+easylist.txt: 10977) -/.*\.is/ads/ -.*.is/ads/ -# .internads. (easylistchina+easylist.txt: 10976) -/.*\.internads\. -.*.internads.*. -# .intad/ (easylistchina+easylist.txt: 10975) -/.*\.intad/ -.*.intad -# .intad. (easylistchina+easylist.txt: 10974) -/.*\.intad\. -.*.intad.*. -# .initdoubleclickadselementcontent? (easylistchina+easylist.txt: 10973) -/.*\.initdoubleclickadselementcontent\? -# .info/ads/ (easylistchina+easylist.txt: 10972) -/.*\.info/ads/ -.*.info/ads/ -# .info/ads- (easylistchina+easylist.txt: 10971) -/.*\.info/ads- -.*.info/ads- -# .info/ad_ (easylistchina+easylist.txt: 10970) -/.*\.info/ad_ -.*.info/ad_ -# .in/ads/ (easylistchina+easylist.txt: 10969) -/.*\.in/ads/ -.*.in/ads/ -# .il/ads/ (easylistchina+easylist.txt: 10968) -/.*\.il/ads/ -.*.il/ads/ -# .ie/ads/ (easylistchina+easylist.txt: 10967) -/.*\.ie/ads/ -.*.ie/ads/ -# .iads.js (easylistchina+easylist.txt: 10966) -/.*\.iads\.js -.*.iads.js*. -# .html?clicktag= (easylistchina+easylist.txt: 10965) -/.*\.html\?clicktag= -# .html?ad_ (easylistchina+easylist.txt: 10964) -/.*\.html\?ad_ -# .html?ad= (easylistchina+easylist.txt: 10963) -/.*\.html\?ad= -# .HomepageAdvertismentBottom. (easylistchina+easylist.txt: 10962) -/.*\.HomepageAdvertismentBottom\. -.*.HomepageAdvertismentBottom.*. -# .homad. (easylistchina+easylist.txt: 10961) -/.*\.homad\. -.*.homad.*. -# .hk/ads/ (easylistchina+easylist.txt: 10960) -/.*\.hk/ads/ -.*.hk/ads/ -# .gr/ads/ (easylistchina+easylist.txt: 10959) -/.*\.gr/ads/ -.*.gr/ads/ -# .gif?ad= (easylistchina+easylist.txt: 10958) -/.*\.gif\?ad= -# .gg/ads/ (easylistchina+easylist.txt: 10957) -/.*\.gg/ads/ -.*.gg/ads/ -# .fm/ads/ (easylistchina+easylist.txt: 10956) -/.*\.fm/ads/ -.*.fm/ads/ -# .exp_ad- (easylistchina+easylist.txt: 10955) -/.*\.exp_ad- -# .eu/adv/ (easylistchina+easylist.txt: 10954) -/.*\.eu/adv/ -.*.eu/adv/ -# .eu/ads/ (easylistchina+easylist.txt: 10953) -/.*\.eu/ads/ -.*.eu/ads/ -# .eg/ads/ (easylistchina+easylist.txt: 10952) -/.*\.eg/ads/ -.*.eg/ads/ -# .displayAds& (easylistchina+easylist.txt: 10951) -/.*\.displayAds& -# .digital/ads/ (easylistchina+easylist.txt: 10950) -/.*\.digital/ads/ -.*.digital/ads/ -# .dartconfig.js (easylistchina+easylist.txt: 10949) -/.*\.dartconfig\.js -.*.dartconfig.js*. -# .cz/bannery/ (easylistchina+easylist.txt: 10948) -/.*\.cz/bannery/ -.*.cz/bannery/ -# .cz/affil/ (easylistchina+easylist.txt: 10947) -/.*\.cz/affil/ -.*.cz/affil/ -# .com/video-ad- (easylistchina+easylist.txt: 10946) -/.*\.com/video-ad- -.*.com/video-ad- -# .com/ss/ad/ (easylistchina+easylist.txt: 10945) -/.*\.com/ss/ad/ -.*.com/ss/ad/ -# .com/promodisplay? (easylistchina+easylist.txt: 10944) -/.*\.com/promodisplay\? -.*.com/promodisplay\? -# .com/pm/ad- (easylistchina+easylist.txt: 10943) -/.*\.com/pm/ad- -.*.com/pm/ad- -# .com/peels/ (easylistchina+easylist.txt: 10942) -/.*\.com/peels/ -.*.com/peels/ -# .com/miads/ (easylistchina+easylist.txt: 10941) -/.*\.com/miads/ -.*.com/miads/ -# .com/js/adsense (easylistchina+easylist.txt: 10940) -/.*\.com/js/adsense -.*.com/js/adsense -# .com/js/ads/ (easylistchina+easylist.txt: 10939) -/.*\.com/js/ads/ -.*.com/js/ads/ -# .com/js/ad. (easylistchina+easylist.txt: 10938) -/.*\.com/js/ad\. -.*.com/js/ad\. -# .com/js.ng/ (easylistchina+easylist.txt: 10937) -/.*\.com/js\.ng/ -.*.com/js\.ng/ -# .com/iplgadshow (easylistchina+easylist.txt: 10936) -/.*\.com/iplgadshow -.*.com/iplgadshow -# .com/im_ad/ (easylistchina+easylist.txt: 10935) -/.*\.com/im_ad/ -.*.com/im_ad/ -# .com/im-ad/ (easylistchina+easylist.txt: 10934) -/.*\.com/im-ad/ -.*.com/im-ad/ -# .com/gads/ (easylistchina+easylist.txt: 10933) -/.*\.com/gads/ -.*.com/gads/ -# .com/doubleclick/ (easylistchina+easylist.txt: 10932) -/.*\.com/doubleclick/ -.*.com/doubleclick/ -# .com/bads/ (easylistchina+easylist.txt: 10931) -/.*\.com/bads/ -.*.com/bads/ -# .com/adz/ (easylistchina+easylist.txt: 10930) -/.*\.com/adz/ -.*.com/adz/ -# .com/adx_ (easylistchina+easylist.txt: 10929) -/.*\.com/adx_ -.*.com/adx_ -# .com/adx/ (easylistchina+easylist.txt: 10928) -/.*\.com/adx/ -.*.com/adx/ -# .com/adv_ (easylistchina+easylist.txt: 10927) -/.*\.com/adv_ -.*.com/adv_ -# .com/adv? (easylistchina+easylist.txt: 10926) -/.*\.com/adv\? -.*.com/adv\? -# .com/adv3/ (easylistchina+easylist.txt: 10925) -/.*\.com/adv3/ -.*.com/adv3/ -# .com/adv/ (easylistchina+easylist.txt: 10924) -/.*\.com/adv/ -.*.com/adv/ -# .com/ads_ (easylistchina+easylist.txt: 10923) -/.*\.com/ads_ -.*.com/ads_ -# .com/ads? (easylistchina+easylist.txt: 10922) -/.*\.com/ads\? -.*.com/ads\? -# .com/ads/$image,object,subdocument (easylistchina+easylist.txt: 10921) -/.*\.com/ads/ -.*.com/ads/ -# .com/ads. (easylistchina+easylist.txt: 10920) -/.*\.com/ads\. -.*.com/ads\. -# .com/ads- (easylistchina+easylist.txt: 10919) -/.*\.com/ads- -.*.com/ads- -# .com/adpicture (easylistchina+easylist.txt: 10918) -/.*\.com/adpicture -.*.com/adpicture -# .com/adlib_ (easylistchina+easylist.txt: 10917) -/.*\.com/adlib_ -.*.com/adlib_ -# .com/adlib/ (easylistchina+easylist.txt: 10916) -/.*\.com/adlib/ -.*.com/adlib/ -# .com/adinf/ (easylistchina+easylist.txt: 10915) -/.*\.com/adinf/ -.*.com/adinf/ -# .com/adgallery (easylistchina+easylist.txt: 10914) -/.*\.com/adgallery -.*.com/adgallery -# .com/adds/ (easylistchina+easylist.txt: 10913) -/.*\.com/adds/ -.*.com/adds/ -# .com/adclk? (easylistchina+easylist.txt: 10912) -/.*\.com/adclk\? -.*.com/adclk\? -# .com/ad? (easylistchina+easylist.txt: 10911) -/.*\.com/ad\? -.*.com/ad\? -# .com/ad6/ (easylistchina+easylist.txt: 10910) -/.*\.com/ad6/ -.*.com/ad6/ -# .com/ad2/ (easylistchina+easylist.txt: 10909) -/.*\.com/ad2/ -.*.com/ad2/ -# .com/a?size (easylistchina+easylist.txt: 10905) -/.*\.com/a\?size -.*.com/a\?size -# .com/a?pagetype (easylistchina+easylist.txt: 10904) -/.*\.com/a\?pagetype -.*.com/a\?pagetype -# .com/a?network (easylistchina+easylist.txt: 10903) -/.*\.com/a\?network -.*.com/a\?network -# .com/?wid= (easylistchina+easylist.txt: 10902) -/.*\.com/\?wid= -.*.com/\?wid= -# .com/?ad= (easylistchina+easylist.txt: 10901) -/.*\.com/\?ad= -.*.com/\?ad= -# .co/ads? (easylistchina+easylist.txt: 10900) -/.*\.co/ads\? -.*.co/ads\? -# .co/ads/ (easylistchina+easylist.txt: 10899) -/.*\.co/ads/ -.*.co/ads/ -# .clkads. (easylistchina+easylist.txt: 10898) -/.*\.clkads\. -.*.clkads.*. -# .ch/adv/ (easylistchina+easylist.txt: 10897) -/.*\.ch/adv/ -.*.ch/adv/ -# .ch/ads/ (easylistchina+easylist.txt: 10896) -/.*\.ch/ads/ -.*.ch/ads/ -# .cgi?ad= (easylistchina+easylist.txt: 10895) -/.*\.cgi\?ad= -# .cfm?advideo% (easylistchina+easylist.txt: 10894) -/.*\.cfm\?advideo% -# .cfm?ad= (easylistchina+easylist.txt: 10893) -/.*\.cfm\?ad= -# .cc/ads/ (easylistchina+easylist.txt: 10892) -/.*\.cc/ads/ -.*.cc/ads/ -# .ca/ads/ (easylistchina+easylist.txt: 10891) -/.*\.ca/ads/ -.*.ca/ads/ -# .bz/ads/ (easylistchina+easylist.txt: 10890) -/.*\.bz/ads/ -.*.bz/ads/ -# .br/ads/ (easylistchina+easylist.txt: 10889) -/.*\.br/ads/ -.*.br/ads/ -# .box.ad. (easylistchina+easylist.txt: 10888) -/.*\.box\.ad\. -.*.box.ad.*. -# .bns1.net/ (easylistchina+easylist.txt: 10887) -/.*\.bns1\.net/ -.*.bns1.net -# .biz/ads/ (easylistchina+easylist.txt: 10886) -/.*\.biz/ads/ -.*.biz/ads/ -# .biz/ad2/ (easylistchina+easylist.txt: 10885) -/.*\.biz/ad2/ -.*.biz/ad2/ -# .biz/ad/ (easylistchina+easylist.txt: 10884) -/.*\.biz/ad/ -.*.biz/ad/ -# .biz/ad. (easylistchina+easylist.txt: 10883) -/.*\.biz/ad\. -.*.biz/ad\. -# .be/ads/ (easylistchina+easylist.txt: 10882) -/.*\.be/ads/ -.*.be/ads/ -# .bbn.by/ (easylistchina+easylist.txt: 10881) -/.*\.bbn\.by/ -.*.bbn.by -# .banner%20ad. (easylistchina+easylist.txt: 10880) -/.*\.banner%20ad\. -# .az/adv/ (easylistchina+easylist.txt: 10879) -/.*\.az/adv/ -.*.az/adv/ -# .au/ads/ (easylistchina+easylist.txt: 10878) -/.*\.au/ads/ -.*.au/ads/ -# .at/ads/ (easylistchina+easylist.txt: 10877) -/.*\.at/ads/ -.*.at/ads/ -# .aspx?adid= (easylistchina+easylist.txt: 10876) -/.*\.aspx\?adid= -# .aspx?ad= (easylistchina+easylist.txt: 10875) -/.*\.aspx\?ad= -# .asp?coad (easylistchina+easylist.txt: 10874) -/.*\.asp\?coad -# .ashx?AdID= (easylistchina+easylist.txt: 10873) -/.*\.ashx\?AdID= -# .ashx?ad= (easylistchina+easylist.txt: 10872) -/.*\.ashx\?ad= -# .ar/ads/ (easylistchina+easylist.txt: 10871) -/.*\.ar/ads/ -.*.ar/ads/ -# .ae/ads/ (easylistchina+easylist.txt: 10870) -/.*\.ae/ads/ -.*.ae/ads/ -# .adwolf. (easylistchina+easylist.txt: 10869) -/.*\.adwolf\. -.*.adwolf.*. -# .advertmarket. (easylistchina+easylist.txt: 10868) -/.*\.advertmarket\. -.*.advertmarket.*. -# .AdvertismentBottom. (easylistchina+easylist.txt: 10867) -/.*\.AdvertismentBottom\. -.*.AdvertismentBottom.*. -# .adv.cdn. (easylistchina+easylist.txt: 10865) -/.*\.adv\.cdn\. -.*.adv.cdn.*. -# .adtooltip& (easylistchina+easylist.txt: 10864) -/.*\.adtooltip& -# .adtech_ (easylistchina+easylist.txt: 10863) -/.*\.adtech_ -# .adsremote. (easylistchina+easylist.txt: 10862) -/.*\.adsremote\. -.*.adsremote.*. -# .adspace. (easylistchina+easylist.txt: 10861) -/.*\.adspace\. -.*.adspace.*. -# .adserver1. (easylistchina+easylist.txt: 10859) -/.*\.adserver1\. -.*.adserver1.*. -# .adserver01. (easylistchina+easylist.txt: 10858) -/.*\.adserver01\. -.*.adserver01.*. -# .adserver. (easylistchina+easylist.txt: 10857) -/.*\.adserver\. -.*.adserver.*. -# .adserv/ (easylistchina+easylist.txt: 10856) -/.*\.adserv/ -.*.adserv -# .adsense. (easylistchina+easylist.txt: 10855) -/.*\.adsense\. -.*.adsense.*. -# .adsbox. (easylistchina+easylist.txt: 10854) -/.*\.adsbox\. -.*.adsbox.*. -# .ads_clickthru. (easylistchina+easylist.txt: 10853) -/.*\.ads_clickthru\. -# .ads3- (easylistchina+easylist.txt: 10852) -/.*\.ads3- -.*.ads3-*. -# .ads2- (easylistchina+easylist.txt: 10851) -/.*\.ads2- -.*.ads2-*. -# .ads1. (easylistchina+easylist.txt: 10850) -/.*\.ads1\. -.*.ads1.*. -# .ads1- (easylistchina+easylist.txt: 10849) -/.*\.ads1- -.*.ads1-*. -# .ads.zones. (easylistchina+easylist.txt: 10848) -/.*\.ads\.zones\. -.*.ads.zones.*. -# .ads.loader- (easylistchina+easylist.txt: 10847) -/.*\.ads\.loader- -.*.ads.loader-*. -# .ads.darla. (easylistchina+easylist.txt: 10846) -/.*\.ads\.darla\. -.*.ads.darla.*. -# .ads.css (easylistchina+easylist.txt: 10845) -/.*\.ads\.css -.*.ads.css*. -# .ads.core. (easylistchina+easylist.txt: 10844) -/.*\.ads\.core\. -.*.ads.core.*. -# .ads.controller. (easylistchina+easylist.txt: 10843) -/.*\.ads\.controller\. -.*.ads.controller.*. -# .ads-tool. (easylistchina+easylist.txt: 10842) -/.*\.ads-tool\. -.*.ads-tool.*. -# .ads-min. (easylistchina+easylist.txt: 10841) -/.*\.ads-min\. -.*.ads-min.*. -# .ads-lazy. (easylistchina+easylist.txt: 10840) -/.*\.ads-lazy\. -.*.ads-lazy.*. -# .ads-and-tracking. (easylistchina+easylist.txt: 10839) -/.*\.ads-and-tracking\. -.*.ads-and-tracking.*. -# .adru. (easylistchina+easylist.txt: 10838) -/.*\.adru\. -.*.adru.*. -# .adrotate. (easylistchina+easylist.txt: 10837) -/.*\.adrotate\. -.*.adrotate.*. -# .adriver.$~object-subrequest (easylistchina+easylist.txt: 10836) -/.*\.adriver\. -.*.adriver.*. -# .adplacement= (easylistchina+easylist.txt: 10834) -/.*\.adplacement= -# .adpartner. (easylistchina+easylist.txt: 10833) -/.*\.adpartner\. -.*.adpartner.*. -# .admarvel. (easylistchina+easylist.txt: 10831) -/.*\.admarvel\. -.*.admarvel.*. -# .adgearpubs. (easylistchina+easylist.txt: 10829) -/.*\.adgearpubs\. -.*.adgearpubs.*. -# .adframesrc. (easylistchina+easylist.txt: 10828) -/.*\.adframesrc\. -.*.adframesrc.*. -# .adforge. (easylistchina+easylist.txt: 10827) -/.*\.adforge\. -.*.adforge.*. -# .adcenter. (easylistchina+easylist.txt: 10826) -/.*\.adcenter\. -.*.adcenter.*. -# .adbutler- (easylistchina+easylist.txt: 10825) -/.*\.adbutler- -.*.adbutler-*. -# .adbanner. (easylistchina+easylist.txt: 10824) -/.*\.adbanner\. -.*.adbanner.*. -# .ad1.nspace (easylistchina+easylist.txt: 10823) -/.*\.ad1\.nspace -.*.ad1.nspace*. -# .ad/tag. (easylistchina+easylist.txt: 10822) -/.*\.ad/tag\. -.*.ad/tag\. -# .ad/scripts/ (easylistchina+easylist.txt: 10821) -/.*\.ad/scripts/ -.*.ad/scripts/ -# .ad/script/ (easylistchina+easylist.txt: 10820) -/.*\.ad/script/ -.*.ad/script/ -# .ad/positions/ (easylistchina+easylist.txt: 10819) -/.*\.ad/positions/ -.*.ad/positions/ -# .ad/content/ (easylistchina+easylist.txt: 10818) -/.*\.ad/content/ -.*.ad/content/ -# .ad.premiere. (easylistchina+easylist.txt: 10817) -/.*\.ad\.premiere\. -.*.ad.premiere.*. -# .ad.page. (easylistchina+easylist.txt: 10816) -/.*\.ad\.page\. -.*.ad.page.*. -# .ad.json? (easylistchina+easylist.txt: 10815) -/.*\.ad\.json\? -# .ad.footer. (easylistchina+easylist.txt: 10814) -/.*\.ad\.footer\. -.*.ad.footer.*. -# .ad.final. (easylistchina+easylist.txt: 10813) -/.*\.ad\.final\. -.*.ad.final.*. -# .ad-traffic. (easylistchina+easylist.txt: 10812) -/.*\.ad-traffic\. -.*.ad-traffic.*. -# .ad-sys. (easylistchina+easylist.txt: 10811) -/.*\.ad-sys\. -.*.ad-sys.*. -# .ad-cloud. (easylistchina+easylist.txt: 10810) -/.*\.ad-cloud\. -.*.ad-cloud.*. -# .ace.advertising. (easylistchina+easylist.txt: 10809) -/.*\.ace\.advertising\. -.*.ace.advertising.*. -# .a3s?n=*&zone_id= (easylistchina+easylist.txt: 10808) -/.*\.a3s\?n=.*&zone_id= -# .1d/ads/ (easylistchina+easylist.txt: 10807) -/.*\.1d/ads/ -.*.1d/ads/ -# -your-ads-here. (easylistchina+easylist.txt: 10806) -/.*-your-ads-here\. -.*-your-ads-here.*. -# -webad1. (easylistchina+easylist.txt: 10805) -/.*-webad1\. -.*-webad1.*. -# -Web-Advert. (easylistchina+easylist.txt: 10804) -/.*-Web-Advert\. -.*-Web-Advert.*. -# -web-advert- (easylistchina+easylist.txt: 10803) -/.*-web-advert- -.*-web-advert-*. -# -Web-Ads. (easylistchina+easylist.txt: 10802) -/.*-Web-Ads\. -.*-Web-Ads.*. -# -Web-Ad. (easylistchina+easylist.txt: 10801) -/.*-Web-Ad\. -.*-Web-Ad.*. -# -web-ad- (easylistchina+easylist.txt: 10800) -/.*-web-ad- -.*-web-ad-*. -# -video-ads/ (easylistchina+easylist.txt: 10799) -/.*-video-ads/ -.*-video-ads -# -us/ads/ (easylistchina+easylist.txt: 10798) -/.*-us/ads/ -.*-us/ads/ -# -top-ads. (easylistchina+easylist.txt: 10797) -/.*-top-ads\. -.*-top-ads.*. -# -top-ad. (easylistchina+easylist.txt: 10796) -/.*-top-ad\. -.*-top-ad.*. -# -third-ad. (easylistchina+easylist.txt: 10795) -/.*-third-ad\. -.*-third-ad.*. -# -theme/ads/ (easylistchina+easylist.txt: 10794) -/.*-theme/ads/ -.*-theme/ads/ -# -text-ads. (easylistchina+easylist.txt: 10793) -/.*-text-ads\. -.*-text-ads.*. -# -template-ads/ (easylistchina+easylist.txt: 10792) -/.*-template-ads/ -.*-template-ads -# -strip-ads- (easylistchina+easylist.txt: 10791) -/.*-strip-ads- -.*-strip-ads-*. -# -sponsored-links- (easylistchina+easylist.txt: 10790) -/.*-sponsored-links- -.*-sponsored-links-*. -# -sponsor-ad. (easylistchina+easylist.txt: 10789) -/.*-sponsor-ad\. -.*-sponsor-ad.*. -# -source/ads/ (easylistchina+easylist.txt: 10788) -/.*-source/ads/ -.*-source/ads/ -# -small-ad. (easylistchina+easylist.txt: 10787) -/.*-small-ad\. -.*-small-ad.*. -# -skyscrapper160x600. (easylistchina+easylist.txt: 10786) -/.*-skyscrapper160x600\. -.*-skyscrapper160x600.*. -# -Skyscraper-Ad. (easylistchina+easylist.txt: 10785) -/.*-Skyscraper-Ad\. -.*-Skyscraper-Ad.*. -# -side-ad- (easylistchina+easylist.txt: 10784) -/.*-side-ad- -.*-side-ad-*. -# -show-ads. (easylistchina+easylist.txt: 10783) -/.*-show-ads\. -.*-show-ads.*. -# -seasonal-ad. (easylistchina+easylist.txt: 10782) -/.*-seasonal-ad\. -.*-seasonal-ad.*. -# -scrollads. (easylistchina+easylist.txt: 10781) -/.*-scrollads\. -.*-scrollads.*. -# -rollout-ad- (easylistchina+easylist.txt: 10780) -/.*-rollout-ad- -.*-rollout-ad-*. -# -rightrailad- (easylistchina+easylist.txt: 10779) -/.*-rightrailad- -.*-rightrailad-*. -# -right-ad. (easylistchina+easylist.txt: 10778) -/.*-right-ad\. -.*-right-ad.*. -# -Results-Sponsored. (easylistchina+easylist.txt: 10777) -/.*-Results-Sponsored\. -.*-Results-Sponsored.*. -# -rectangle/ad- (easylistchina+easylist.txt: 10776) -/.*-rectangle/ad- -.*-rectangle/ad- -# -publicidad. (easylistchina+easylist.txt: 10775) -/.*-publicidad\. -.*-publicidad.*. -# -printhousead- (easylistchina+easylist.txt: 10774) -/.*-printhousead- -.*-printhousead-*. -# -pri/adv- (easylistchina+easylist.txt: 10773) -/.*-pri/adv- -.*-pri/adv- -# -popup-ads- (easylistchina+easylist.txt: 10772) -/.*-popup-ads- -.*-popup-ads-*. -# -popup-ad. (easylistchina+easylist.txt: 10771) -/.*-popup-ad\. -.*-popup-ad.*. -# -popunder. (easylistchina+easylist.txt: 10770) -/.*-popunder\. -.*-popunder.*. -# -popexit. (easylistchina+easylist.txt: 10769) -/.*-popexit\. -.*-popexit.*. -# -pop-under/ (easylistchina+easylist.txt: 10768) -/.*-pop-under/ -.*-pop-under -# -permads. (easylistchina+easylist.txt: 10767) -/.*-permads\. -.*-permads.*. -# -peel-ads- (easylistchina+easylist.txt: 10766) -/.*-peel-ads- -.*-peel-ads-*. -# -panel_ad_ (easylistchina+easylist.txt: 10765) -/.*-panel_ad_ -# -panel-ad. (easylistchina+easylist.txt: 10764) -/.*-panel-ad\. -.*-panel-ad.*. -# -page-peel/ (easylistchina+easylist.txt: 10763) -/.*-page-peel/ -.*-page-peel -# -page-ad? (easylistchina+easylist.txt: 10762) -/.*-page-ad\? -# -page-ad. (easylistchina+easylist.txt: 10761) -/.*-page-ad\. -.*-page-ad.*. -# -online-advert. (easylistchina+easylist.txt: 10760) -/.*-online-advert\. -.*-online-advert.*. -# -NewStockAd- (easylistchina+easylist.txt: 10759) -/.*-NewStockAd- -.*-NewStockAd-*. -# -newsletter-ad- (easylistchina+easylist.txt: 10758) -/.*-newsletter-ad- -.*-newsletter-ad-*. -# -news-ad- (easylistchina+easylist.txt: 10757) -/.*-news-ad- -.*-news-ad-*. -# -NewAd. (easylistchina+easylist.txt: 10756) -/.*-NewAd\. -.*-NewAd.*. -# -load-ads. (easylistchina+easylist.txt: 10755) -/.*-load-ads\. -.*-load-ads.*. -# -leaderboard-ad- (easylistchina+easylist.txt: 10754) -/.*-leaderboard-ad- -.*-leaderboard-ad-*. -# -layer-ads/ (easylistchina+easylist.txt: 10753) -/.*-layer-ads/ -.*-layer-ads -# -layer-ad. (easylistchina+easylist.txt: 10752) -/.*-layer-ad\. -.*-layer-ad.*. -# -intern-ads/ (easylistchina+easylist.txt: 10751) -/.*-intern-ads/ -.*-intern-ads -# -inspire-ad. (easylistchina+easylist.txt: 10750) -/.*-inspire-ad\. -.*-inspire-ad.*. -# -img/ads/ (easylistchina+easylist.txt: 10749) -/.*-img/ads/ -.*-img/ads/ -# -images/ad- (easylistchina+easylist.txt: 10748) -/.*-images/ad- -.*-images/ad- -# -image/Ads/ (easylistchina+easylist.txt: 10747) -/.*-image/Ads/ -.*-image/Ads/ -# -image-ad. (easylistchina+easylist.txt: 10746) -/.*-image-ad\. -.*-image-ad.*. -# -iframe-ads/ (easylistchina+easylist.txt: 10745) -/.*-iframe-ads/ -.*-iframe-ads -# -iframe-ad. (easylistchina+easylist.txt: 10744) -/.*-iframe-ad\. -.*-iframe-ad.*. -# -housead- (easylistchina+easylist.txt: 10743) -/.*-housead- -.*-housead-*. -# -gpt-ad- (easylistchina+easylist.txt: 10742) -/.*-gpt-ad- -.*-gpt-ad-*. -# -google2-ad- (easylistchina+easylist.txt: 10741) -/.*-google2-ad- -.*-google2-ad-*. -# -google-ads/ (easylistchina+easylist.txt: 10740) -/.*-google-ads/ -.*-google-ads -# -google-ads- (easylistchina+easylist.txt: 10739) -/.*-google-ads- -.*-google-ads-*. -# -games/ads/ (easylistchina+easylist.txt: 10738) -/.*-games/ads/ -.*-games/ads/ -# -gallery_ad/ (easylistchina+easylist.txt: 10737) -/.*-gallery_ad/ -# -footerads. (easylistchina+easylist.txt: 10736) -/.*-footerads\. -.*-footerads.*. -# -footerads- (easylistchina+easylist.txt: 10735) -/.*-footerads- -.*-footerads-*. -# -floorboard-ads/ (easylistchina+easylist.txt: 10734) -/.*-floorboard-ads/ -.*-floorboard-ads -# -floater_ads_ (easylistchina+easylist.txt: 10733) -/.*-floater_ads_ -# -fleshlight2. (easylistchina+easylist.txt: 10732) -/.*-fleshlight2\. -.*-fleshlight2.*. -# -feed-ads. (easylistchina+easylist.txt: 10731) -/.*-feed-ads\. -.*-feed-ads.*. -# -featured-ads/ (easylistchina+easylist.txt: 10730) -/.*-featured-ads/ -.*-featured-ads -# -featured-ads. (easylistchina+easylist.txt: 10729) -/.*-featured-ads\. -.*-featured-ads.*. -# -fe-ads/ (easylistchina+easylist.txt: 10728) -/.*-fe-ads/ -.*-fe-ads -# -euads. (easylistchina+easylist.txt: 10727) -/.*-euads\. -.*-euads.*. -# -dfp-ads/ (easylistchina+easylist.txt: 10726) -/.*-dfp-ads/ -.*-dfp-ads -# -cpm-ads. (easylistchina+easylist.txt: 10725) -/.*-cpm-ads\. -.*-cpm-ads.*. -# -cpm-ad. (easylistchina+easylist.txt: 10724) -/.*-cpm-ad\. -.*-cpm-ad.*. -# -contest-ad. (easylistchina+easylist.txt: 10723) -/.*-contest-ad\. -.*-contest-ad.*. -# -content-ad. (easylistchina+easylist.txt: 10722) -/.*-content-ad\. -.*-content-ad.*. -# -box2-ad? (easylistchina+easylist.txt: 10721) -/.*-box2-ad\? -# -Box-Ad. (easylistchina+easylist.txt: 10720) -/.*-Box-Ad\. -.*-Box-Ad.*. -# -book-ad- (easylistchina+easylist.txt: 10719) -/.*-book-ad- -.*-book-ad-*. -# -blog-ad- (easylistchina+easylist.txt: 10718) -/.*-blog-ad- -.*-blog-ad-*. -# -bin/ad_ (easylistchina+easylist.txt: 10717) -/.*-bin/ad_ -.*-bin/ad_ -# -billboard-ads/ (easylistchina+easylist.txt: 10716) -/.*-billboard-ads/ -.*-billboard-ads -# -bg_ads. (easylistchina+easylist.txt: 10715) -/.*-bg_ads\. -# -bannerads/ (easylistchina+easylist.txt: 10714) -/.*-bannerads/ -.*-bannerads -# -banner468x60. (easylistchina+easylist.txt: 10713) -/.*-banner468x60\. -.*-banner468x60.*. -# -banner300x250. (easylistchina+easylist.txt: 10712) -/.*-banner300x250\. -.*-banner300x250.*. -# -banner.swf? (easylistchina+easylist.txt: 10711) -/.*-banner\.swf\? -# -banner-ads/ (easylistchina+easylist.txt: 10710) -/.*-banner-ads/ -.*-banner-ads -# -banner-ads- (easylistchina+easylist.txt: 10709) -/.*-banner-ads- -.*-banner-ads-*. -# -banner-ad/ (easylistchina+easylist.txt: 10708) -/.*-banner-ad/ -.*-banner-ad -# -banner-ad. (easylistchina+easylist.txt: 10707) -/.*-banner-ad\. -.*-banner-ad.*. -# -banner-ad- (easylistchina+easylist.txt: 10706) -/.*-banner-ad- -.*-banner-ad-*. -# -banner-768. (easylistchina+easylist.txt: 10705) -/.*-banner-768\. -.*-banner-768.*. -# -article-advert- (easylistchina+easylist.txt: 10704) -/.*-article-advert- -.*-article-advert-*. -# -article-ads- (easylistchina+easylist.txt: 10703) -/.*-article-ads- -.*-article-ads-*. -# -affiliates/img_ (easylistchina+easylist.txt: 10702) -/.*-affiliates/img_ -.*-affiliates/img_ -# -affiliate-link. (easylistchina+easylist.txt: 10701) -/.*-affiliate-link\. -.*-affiliate-link.*. -# -adwords. (easylistchina+easylist.txt: 10700) -/.*-adwords\. -.*-adwords.*. -# -advertisment- (easylistchina+easylist.txt: 10699) -/.*-advertisment- -.*-advertisment-*. -# -advertising_ (easylistchina+easylist.txt: 10698) -/.*-advertising_ -# -advertisement_ (easylistchina+easylist.txt: 10697) -/.*-advertisement_ -# -advertisement. (easylistchina+easylist.txt: 10696) -/.*-advertisement\. -.*-advertisement.*. -# -advertisement-icon. (easylistchina+easylist.txt: 10695) -/.*-advertisement-icon\. -.*-advertisement-icon.*. -# -advertise01. (easylistchina+easylist.txt: 10694) -/.*-advertise01\. -.*-advertise01.*. -# -advertise/ (easylistchina+easylist.txt: 10693) -/.*-advertise/ -.*-advertise -# -advert_August. (easylistchina+easylist.txt: 10691) -/.*-advert_August\. -# -advert3. (easylistchina+easylist.txt: 10690) -/.*-advert3\. -.*-advert3.*. -# -advert2. (easylistchina+easylist.txt: 10689) -/.*-advert2\. -.*-advert2.*. -# -advert1. (easylistchina+easylist.txt: 10688) -/.*-advert1\. -.*-advert1.*. -# -advert.swf (easylistchina+easylist.txt: 10687) -/.*-advert\.swf -.*-advert.swf*. -# -advert.jpg? (easylistchina+easylist.txt: 10686) -/.*-advert\.jpg\? -# -advert-label- (easylistchina+easylist.txt: 10685) -/.*-advert-label- -.*-advert-label-*. -# -adv.js (easylistchina+easylist.txt: 10684) -/.*-adv\.js -.*-adv.js*. -# -adv.jpg (easylistchina+easylist.txt: 10683) -/.*-adv\.jpg -.*-adv.jpg*. -# -adv-v1/ (easylistchina+easylist.txt: 10682) -/.*-adv-v1/ -.*-adv-v1 -# -adtrack. (easylistchina+easylist.txt: 10681) -/.*-adtrack\. -.*-adtrack.*. -# -adtopbanner- (easylistchina+easylist.txt: 10680) -/.*-adtopbanner- -.*-adtopbanner-*. -# -adtechfront. (easylistchina+easylist.txt: 10679) -/.*-adtechfront\. -.*-adtechfront.*. -# -adsystem- (easylistchina+easylist.txt: 10678) -/.*-adsystem- -.*-adsystem-*. -# -adswizz- (easylistchina+easylist.txt: 10677) -/.*-adswizz- -.*-adswizz-*. -# -adspot- (easylistchina+easylist.txt: 10676) -/.*-adspot- -.*-adspot-*. -# -adspace_ (easylistchina+easylist.txt: 10675) -/.*-adspace_ -# -adspace. (easylistchina+easylist.txt: 10674) -/.*-adspace\. -.*-adspace.*. -# -adsonar. (easylistchina+easylist.txt: 10673) -/.*-adsonar\. -.*-adsonar.*. -# -adserver/ (easylistchina+easylist.txt: 10672) -/.*-adserver/ -.*-adserver -# -adserver- (easylistchina+easylist.txt: 10671) -/.*-adserver- -.*-adserver-*. -# -adsense2. (easylistchina+easylist.txt: 10670) -/.*-adsense2\. -.*-adsense2.*. -# -adscript. (easylistchina+easylist.txt: 10669) -/.*-adscript\. -.*-adscript.*. -# -Ads_Billboard_ (easylistchina+easylist.txt: 10668) -/.*-Ads_Billboard_ -# -ads_9_3. (easylistchina+easylist.txt: 10667) -/.*-ads_9_3\. -# -Ads_728x902. (easylistchina+easylist.txt: 10666) -/.*-Ads_728x902\. -# -ads/static- (easylistchina+easylist.txt: 10665) -/.*-ads/static- -.*-ads/static- -# -ads/oas/ (easylistchina+easylist.txt: 10664) -/.*-ads/oas/ -.*-ads/oas/ -# -ads/img/ (easylistchina+easylist.txt: 10663) -/.*-ads/img/ -.*-ads/img/ -# -ads/ad- (easylistchina+easylist.txt: 10662) -/.*-ads/ad- -.*-ads/ad- -# -ads/728x (easylistchina+easylist.txt: 10661) -/.*-ads/728x -.*-ads/728x -# -ads.swf (easylistchina+easylist.txt: 10660) -/.*-ads\.swf -.*-ads.swf*. -# -ads.php? (easylistchina+easylist.txt: 10659) -/.*-ads\.php\? -# -ads.js? (easylistchina+easylist.txt: 10658) -/.*-ads\.js\? -# -ads.gif (easylistchina+easylist.txt: 10657) -/.*-ads\.gif -.*-ads.gif*. -# -ads.generated. (easylistchina+easylist.txt: 10656) -/.*-ads\.generated\. -.*-ads.generated.*. -# -ads-widget? (easylistchina+easylist.txt: 10655) -/.*-ads-widget\? -# -ads-right. (easylistchina+easylist.txt: 10654) -/.*-ads-right\. -.*-ads-right.*. -# -ads-placement. (easylistchina+easylist.txt: 10653) -/.*-ads-placement\. -.*-ads-placement.*. -# -ads-ns. (easylistchina+easylist.txt: 10652) -/.*-ads-ns\. -.*-ads-ns.*. -# -ads-manager/ (easylistchina+easylist.txt: 10651) -/.*-ads-manager/ -.*-ads-manager -# -ads-management/ (easylistchina+easylist.txt: 10650) -/.*-ads-management/ -.*-ads-management -# -ads-init& (easylistchina+easylist.txt: 10649) -/.*-ads-init& -# -ads-iframe. (easylistchina+easylist.txt: 10648) -/.*-ads-iframe\. -.*-ads-iframe.*. -# -ads-bottom. (easylistchina+easylist.txt: 10647) -/.*-ads-bottom\. -.*-ads-bottom.*. -# -ads-banner. (easylistchina+easylist.txt: 10646) -/.*-ads-banner\. -.*-ads-banner.*. -# -ads-728x (easylistchina+easylist.txt: 10645) -/.*-ads-728x -.*-ads-728x*. -# -ads-180x (easylistchina+easylist.txt: 10644) -/.*-ads-180x -.*-ads-180x*. -# -adrotation. (easylistchina+easylist.txt: 10643) -/.*-adrotation\. -.*-adrotation.*. -# -adnow. (easylistchina+easylist.txt: 10642) -/.*-adnow\. -.*-adnow.*. -# -admarvel/ (easylistchina+easylist.txt: 10641) -/.*-admarvel/ -.*-admarvel -# -adimage- (easylistchina+easylist.txt: 10640) -/.*-adimage- -.*-adimage-*. -# -adhere2. (easylistchina+easylist.txt: 10639) -/.*-adhere2\. -.*-adhere2.*. -# -adhelper. (easylistchina+easylist.txt: 10638) -/.*-adhelper\. -.*-adhelper.*. -# -adchain. (easylistchina+easylist.txt: 10637) -/.*-adchain\. -.*-adchain.*. -# -adcentre. (easylistchina+easylist.txt: 10636) -/.*-adcentre\. -.*-adcentre.*. -# -adblack- (easylistchina+easylist.txt: 10635) -/.*-adblack- -.*-adblack-*. -# -adap. (easylistchina+easylist.txt: 10634) -/.*-adap\. -.*-adap.*. -# -ad_leaderboard/ (easylistchina+easylist.txt: 10633) -/.*-ad_leaderboard/ -# -ad_injector/ (easylistchina+easylist.txt: 10632) -/.*-ad_injector/ -# -ad_banner- (easylistchina+easylist.txt: 10631) -/.*-ad_banner- -# -ad_125x125. (easylistchina+easylist.txt: 10630) -/.*-ad_125x125\. -# -ad5. (easylistchina+easylist.txt: 10629) -/.*-ad5\. -.*-ad5.*. -# -ad4. (easylistchina+easylist.txt: 10628) -/.*-ad4\. -.*-ad4.*. -# -Ad300x90- (easylistchina+easylist.txt: 10627) -/.*-Ad300x90- -.*-Ad300x90-*. -# -Ad300x250. (easylistchina+easylist.txt: 10626) -/.*-Ad300x250\. -.*-Ad300x250.*. -# -ad3. (easylistchina+easylist.txt: 10625) -/.*-ad3\. -.*-ad3.*. -# -ad2_ (easylistchina+easylist.txt: 10624) -/.*-ad2_ -# -ad2. (easylistchina+easylist.txt: 10623) -/.*-ad2\. -.*-ad2.*. -# -ad1. (easylistchina+easylist.txt: 10622) -/.*-ad1\. -.*-ad1.*. -# -ad03. (easylistchina+easylist.txt: 10621) -/.*-ad03\. -.*-ad03.*. -# -ad/right_ (easylistchina+easylist.txt: 10620) -/.*-ad/right_ -.*-ad/right_ -# -ad/main. (easylistchina+easylist.txt: 10619) -/.*-ad/main\. -.*-ad/main\. -# -ad.php? (easylistchina+easylist.txt: 10618) -/.*-ad\.php\? -# -ad.jsp| (easylistchina+easylist.txt: 10617) -/.*-ad\.jsp$ -.*-ad.jsp -# -ad.jpg? (easylistchina+easylist.txt: 10616) -/.*-ad\.jpg\? -# -ad.jpg.pagespeed. (easylistchina+easylist.txt: 10615) -/.*-ad\.jpg\.pagespeed\. -.*-ad.jpg.pagespeed.*. -# -ad-zone. (easylistchina+easylist.txt: 10614) -/.*-ad-zone\. -.*-ad-zone.*. -# -ad-vertical- (easylistchina+easylist.txt: 10613) -/.*-ad-vertical- -.*-ad-vertical-*. -# -ad-util. (easylistchina+easylist.txt: 10612) -/.*-ad-util\. -.*-ad-util.*. -# -ad-util- (easylistchina+easylist.txt: 10611) -/.*-ad-util- -.*-ad-util-*. -# -ad-unit/ (easylistchina+easylist.txt: 10610) -/.*-ad-unit/ -.*-ad-unit -# -ad-unit. (easylistchina+easylist.txt: 10609) -/.*-ad-unit\. -.*-ad-unit.*. -# -ad-top. (easylistchina+easylist.txt: 10608) -/.*-ad-top\. -.*-ad-top.*. -# -ad-tile. (easylistchina+easylist.txt: 10607) -/.*-ad-tile\. -.*-ad-tile.*. -# -ad-switcher. (easylistchina+easylist.txt: 10606) -/.*-ad-switcher\. -.*-ad-switcher.*. -# -ad-sidebar- (easylistchina+easylist.txt: 10605) -/.*-ad-sidebar- -.*-ad-sidebar-*. -# -ad-server/ (easylistchina+easylist.txt: 10604) -/.*-ad-server/ -.*-ad-server -# -ad-rotators/ (easylistchina+easylist.txt: 10603) -/.*-ad-rotators/ -.*-ad-rotators -# -ad-right. (easylistchina+easylist.txt: 10602) -/.*-ad-right\. -.*-ad-right.*. -# -ad-new_ (easylistchina+easylist.txt: 10601) -/.*-ad-new_ -# -ad-mpu+ (easylistchina+easylist.txt: 10600) -/.*-ad-mpu\+ -# -ad-marker. (easylistchina+easylist.txt: 10599) -/.*-ad-marker\. -.*-ad-marker.*. -# -ad-manager/$~stylesheet (easylistchina+easylist.txt: 10598) -/.*-ad-manager/ -.*-ad-manager -# -ad-loading. (easylistchina+easylist.txt: 10597) -/.*-ad-loading\. -.*-ad-loading.*. -# -ad-limits. (easylistchina+easylist.txt: 10596) -/.*-ad-limits\. -.*-ad-limits.*. -# -ad-left. (easylistchina+easylist.txt: 10595) -/.*-ad-left\. -.*-ad-left.*. -# -ad-large. (easylistchina+easylist.txt: 10594) -/.*-ad-large\. -.*-ad-large.*. -# -ad-iframe/ (easylistchina+easylist.txt: 10593) -/.*-ad-iframe/ -.*-ad-iframe -# -ad-hrule. (easylistchina+easylist.txt: 10592) -/.*-ad-hrule\. -.*-ad-hrule.*. -# -ad-hrule- (easylistchina+easylist.txt: 10591) -/.*-ad-hrule- -.*-ad-hrule-*. -# -ad-home. (easylistchina+easylist.txt: 10590) -/.*-ad-home\. -.*-ad-home.*. -# -ad-gif1- (easylistchina+easylist.txt: 10589) -/.*-ad-gif1- -.*-ad-gif1-*. -# -ad-gif- (easylistchina+easylist.txt: 10588) -/.*-ad-gif- -.*-ad-gif-*. -# -ad-exo- (easylistchina+easylist.txt: 10587) -/.*-ad-exo- -.*-ad-exo-*. -# -ad-ero- (easylistchina+easylist.txt: 10586) -/.*-ad-ero- -.*-ad-ero-*. -# -ad-data/ (easylistchina+easylist.txt: 10585) -/.*-ad-data/ -.*-ad-data -# -ad-cube. (easylistchina+easylist.txt: 10584) -/.*-ad-cube\. -.*-ad-cube.*. -# -ad-column- (easylistchina+easylist.txt: 10583) -/.*-ad-column- -.*-ad-column-*. -# -ad-choices. (easylistchina+easylist.txt: 10582) -/.*-ad-choices\. -.*-ad-choices.*. -# -ad-category- (easylistchina+easylist.txt: 10581) -/.*-ad-category- -.*-ad-category-*. -# -ad-button- (easylistchina+easylist.txt: 10580) -/.*-ad-button- -.*-ad-button-*. -# -ad-bottom- (easylistchina+easylist.txt: 10579) -/.*-ad-bottom- -.*-ad-bottom-*. -# -ad-big. (easylistchina+easylist.txt: 10578) -/.*-ad-big\. -.*-ad-big.*. -# -ad-banner. (easylistchina+easylist.txt: 10577) -/.*-ad-banner\. -.*-ad-banner.*. -# -ad-400. (easylistchina+easylist.txt: 10576) -/.*-ad-400\. -.*-ad-400.*. -# -ad-340x400- (easylistchina+easylist.txt: 10575) -/.*-ad-340x400- -.*-ad-340x400-*. -# -ad-336x280- (easylistchina+easylist.txt: 10574) -/.*-ad-336x280- -.*-ad-336x280-*. -# -ad-313x232. (easylistchina+easylist.txt: 10573) -/.*-ad-313x232\. -.*-ad-313x232.*. -# -ad-300x250. (easylistchina+easylist.txt: 10572) -/.*-ad-300x250\. -.*-ad-300x250.*. -# -ad-24x24. (easylistchina+easylist.txt: 10571) -/.*-ad-24x24\. -.*-ad-24x24.*. -# -ad-200x200- (easylistchina+easylist.txt: 10570) -/.*-ad-200x200- -.*-ad-200x200-*. -# -ad-180x150px. (easylistchina+easylist.txt: 10569) -/.*-ad-180x150px\. -.*-ad-180x150px.*. -# -ad-001- (easylistchina+easylist.txt: 10568) -/.*-ad-001- -.*-ad-001-*. -# -300x100ad2. (easylistchina+easylist.txt: 10567) -/.*-300x100ad2\. -.*-300x100ad2.*. -# -2011ad_ (easylistchina+easylist.txt: 10566) -/.*-2011ad_ -# -2/ads/ (easylistchina+easylist.txt: 10565) -/.*-2/ads/ -.*-2/ads/ -# +adverts/ (easylistchina+easylist.txt: 10564) -/.*\+adverts/ -# +advertorial. (easylistchina+easylist.txt: 10563) -/.*\+advertorial\. -# &view=ad& (easylistchina+easylist.txt: 10562) -/.*&view=ad& -# &videoadid= (easylistchina+easylist.txt: 10561) -/.*&videoadid= -# &video_ads_ (easylistchina+easylist.txt: 10560) -/.*&video_ads_ -# &UrlAdParam= (easylistchina+easylist.txt: 10559) -/.*&UrlAdParam= -# &type=ad& (easylistchina+easylist.txt: 10558) -/.*&type=ad& -# &strategy=adsense& (easylistchina+easylist.txt: 10557) -/.*&strategy=adsense& -# &smart_ad_ (easylistchina+easylist.txt: 10556) -/.*&smart_ad_ -# &smallad= (easylistchina+easylist.txt: 10555) -/.*&smallad= -# &simple_ad_ (easylistchina+easylist.txt: 10554) -/.*&simple_ad_ -# &showad= (easylistchina+easylist.txt: 10553) -/.*&showad= -# &show_ad_ (easylistchina+easylist.txt: 10552) -/.*&show_ad_ -# &prvtof=*&poru= (easylistchina+easylist.txt: 10551) -/.*&prvtof=.*&poru= -# &program=revshare& (easylistchina+easylist.txt: 10550) -/.*&program=revshare& -# &popunder= (easylistchina+easylist.txt: 10549) -/.*&popunder= -# &maxads= (easylistchina+easylist.txt: 10548) -/.*&maxads= -# &largead= (easylistchina+easylist.txt: 10547) -/.*&largead= -# &jumpstartadformat= (easylistchina+easylist.txt: 10546) -/.*&jumpstartadformat= -# &googleadword= (easylistchina+easylist.txt: 10545) -/.*&googleadword= -# &gIncludeExternalAds= (easylistchina+easylist.txt: 10544) -/.*&gIncludeExternalAds= -# &expandable_ad_ (easylistchina+easylist.txt: 10543) -/.*&expandable_ad_ -# &displayads= (easylistchina+easylist.txt: 10542) -/.*&displayads= -# &customSizeAd= (easylistchina+easylist.txt: 10541) -/.*&customSizeAd= -# &clicktag=http (easylistchina+easylist.txt: 10540) -/.*&clicktag=http -# &banner_id= (easylistchina+easylist.txt: 10539) -/.*&banner_id= -# &adzone= (easylistchina+easylist.txt: 10538) -/.*&adzone= -# &advtile= (easylistchina+easylist.txt: 10537) -/.*&advtile= -# &advid= (easylistchina+easylist.txt: 10536) -/.*&advid= -# &advertiserid= (easylistchina+easylist.txt: 10535) -/.*&advertiserid= -# &advert_ (easylistchina+easylist.txt: 10534) -/.*&advert_ -# &adv_keywords= (easylistchina+easylist.txt: 10533) -/.*&adv_keywords= -# &adurl= (easylistchina+easylist.txt: 10532) -/.*&adurl= -# &adunit= (easylistchina+easylist.txt: 10531) -/.*&adunit= -# &adType=PREROLL& (easylistchina+easylist.txt: 10530) -/.*&adType=PREROLL& -# &adstype= (easylistchina+easylist.txt: 10529) -/.*&adstype= -# &adspace= (easylistchina+easylist.txt: 10528) -/.*&adspace= -# &adsourceid= (easylistchina+easylist.txt: 10527) -/.*&adsourceid= -# &adslots= (easylistchina+easylist.txt: 10526) -/.*&adslots= -# &adslot= (easylistchina+easylist.txt: 10525) -/.*&adslot= -# &adsize= (easylistchina+easylist.txt: 10524) -/.*&adsize= -# &adserver= (easylistchina+easylist.txt: 10523) -/.*&adserver= -# &adsafe= (easylistchina+easylist.txt: 10522) -/.*&adsafe= -# &adpageurl= (easylistchina+easylist.txt: 10521) -/.*&adpageurl= -# &adnum= (easylistchina+easylist.txt: 10520) -/.*&adnum= -# &adnet= (easylistchina+easylist.txt: 10519) -/.*&adnet= -# &adname= (easylistchina+easylist.txt: 10518) -/.*&adname= -# &admid= (easylistchina+easylist.txt: 10517) -/.*&admid= -# &admeld_ (easylistchina+easylist.txt: 10516) -/.*&admeld_ -# &adgroupid= (easylistchina+easylist.txt: 10515) -/.*&adgroupid= -# &adcount= (easylistchina+easylist.txt: 10514) -/.*&adcount= -# &adclient= (easylistchina+easylist.txt: 10513) -/.*&adclient= -# &adbannerid= (easylistchina+easylist.txt: 10512) -/.*&adbannerid= -# &ad_zones= (easylistchina+easylist.txt: 10511) -/.*&ad_zones= -# &ad_url= (easylistchina+easylist.txt: 10510) -/.*&ad_url= -# &ad_type_ (easylistchina+easylist.txt: 10509) -/.*&ad_type_ -# &ad_type= (easylistchina+easylist.txt: 10508) -/.*&ad_type= -# &ad_number= (easylistchina+easylist.txt: 10507) -/.*&ad_number= -# &ad_network_ (easylistchina+easylist.txt: 10506) -/.*&ad_network_ -# &ad_keyword= (easylistchina+easylist.txt: 10505) -/.*&ad_keyword= -# &ad_height= (easylistchina+easylist.txt: 10504) -/.*&ad_height= -# &ad_classid= (easylistchina+easylist.txt: 10503) -/.*&ad_classid= -# &ad_channel= (easylistchina+easylist.txt: 10502) -/.*&ad_channel= -# &ad_box_ (easylistchina+easylist.txt: 10501) -/.*&ad_box_ -# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina+easylist.txt: 10490) +# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina.txt: 10478) .hjfile.cn/analytics/site/TrackEvent\.js -# ||hdsrc-a.akamaihd.net^ (easylistchina+easylist.txt: 10454) +# ||hdsrc-a.akamaihd.net^ (easylistchina.txt: 10441) .hdsrc-a.akamaihd.net -# ||hdapp1008-a.akamaihd.net^ (easylistchina+easylist.txt: 10453) +# ||hdapp1008-a.akamaihd.net^ (easylistchina.txt: 10440) .hdapp1008-a.akamaihd.net -# ||hdapp1003-a.akamaihd.net^ (easylistchina+easylist.txt: 10452) +# ||hdapp1003-a.akamaihd.net^ (easylistchina.txt: 10439) .hdapp1003-a.akamaihd.net -# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina+easylist.txt: 10451) +# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina.txt: 10438) .commondisplay-a.akamaihd.net/cri/.*\.htm\?cat= -# ||akamaihd.net^*/sid.html?p= (easylistchina+easylist.txt: 10450) +# ||akamaihd.net^*/sid.html?p= (easylistchina.txt: 10437) .akamaihd.net/.*/sid\.html\?p= -# ||akamaihd.net^*/gsd.html?d= (easylistchina+easylist.txt: 10449) +# ||akamaihd.net^*/gsd.html?d= (easylistchina.txt: 10436) .akamaihd.net/.*/gsd\.html\?d= -# ||146.148.85.61^ (easylistchina+easylist.txt: 10448) +# ||146.148.85.61^ (easylistchina.txt: 10435) .146.148.85.61 -# ||880fg.com/css/*.js (easylistchina+easylist.txt: 5453) -.880fg.com/css/.*\.js -# ||zzz4.com/JS_AD/ (easylistchina+easylist.txt: 5452) +# ||2chcn.com/img/japanese-a.png (easylistchina.txt: 5426) +.2chcn.com/img/japanese-a\.png +# ||zzz4.com/JS_AD/ (easylistchina.txt: 5425) .zzz4.com/JS_AD/ -# ||zzsky.cn/images/zzskycom_ (easylistchina+easylist.txt: 5451) +# ||zzsky.cn/images/zzskycom_ (easylistchina.txt: 5424) .zzsky.cn/images/zzskycom_ -# ||zznews.cn/home/js/duilian1.js (easylistchina+easylist.txt: 5450) +# ||zznews.cn/home/js/duilian1.js (easylistchina.txt: 5423) .zznews.cn/home/js/duilian1\.js -# ||zzidc.com^*0.gif (easylistchina+easylist.txt: 5449) +# ||zzidc.com^*0.gif (easylistchina.txt: 5422) .zzidc.com/.*0\.gif -# ||zzidc.com/img/ (easylistchina+easylist.txt: 5448) +# ||zzidc.com/img/ (easylistchina.txt: 5421) .zzidc.com/img/ -# ||zzc.cn/b/ (easylistchina+easylist.txt: 5447) +# ||zzc.cn/b/ (easylistchina.txt: 5420) .zzc.cn/b/ -# ||zyzczs.com/js/tj.txt (easylistchina+easylist.txt: 5446) -.zyzczs.com/js/tj\.txt -# ||zxip.com/2013_ad/ (easylistchina+easylist.txt: 5445) +# ||zxip.com/2013_ad/ (easylistchina.txt: 5419) .zxip.com/2013_ad/ -# ||zuoche.com/promo/*.jspx (easylistchina+easylist.txt: 5444) +# ||zuoche.com/promo/*.jspx (easylistchina.txt: 5418) .zuoche.com/promo/.*\.jspx -# ||zuiben.com/a/ (easylistchina+easylist.txt: 5443) +# ||zuiben.com/a/ (easylistchina.txt: 5417) .zuiben.com/a/ -# ||zt220.com/zzs/ (easylistchina+easylist.txt: 5442) +# ||zt220.com/zzs/ (easylistchina.txt: 5416) .zt220.com/zzs/ -# ||zt2088.com^ (easylistchina+easylist.txt: 5441) +# ||zt2088.com^ (easylistchina.txt: 5415) .zt2088.com -# ||zt.iciba.com/guess/images/900.jpg (easylistchina+easylist.txt: 5440) +# ||zt.iciba.com/guess/images/900.jpg (easylistchina.txt: 5414) .zt.iciba.com/guess/images/900\.jpg -# ||zt.chuanke.com/?mod= (easylistchina+easylist.txt: 5439) +# ||zt.chuanke.com/?mod= (easylistchina.txt: 5413) .zt.chuanke.com/\?mod= -# ||zsnews.cn/v.*=300&height=225& (easylistchina+easylist.txt: 5438) +# ||zsnews.cn/v.*=300&height=225& (easylistchina.txt: 5412) .zsnews.cn/v\..*=300&height=225& -# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina+easylist.txt: 5437) +# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina.txt: 5411) .zsnews.cn/JSFUN/AdvFun/ -# ||zsnews.cn/js/adControl- (easylistchina+easylist.txt: 5436) +# ||zsnews.cn/js/adControl- (easylistchina.txt: 5410) .zsnews.cn/js/adControl- -# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina+easylist.txt: 5435) +# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina.txt: 5409) .zsnews.cn/Components/2013ZSNEWS/ -# ||zsjjob.com/user/member/google.htm (easylistchina+easylist.txt: 5434) +# ||zsjjob.com/user/member/google.htm (easylistchina.txt: 5408) .zsjjob.com/user/member/google\.htm -# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina+easylist.txt: 5432) +# ||zp365.com/newImages/201*.swf (easylistchina.txt: 5406) +.zp365.com/newImages/201.*\.swf +# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina.txt: 5405) .zoopda.com/thumbs/.*_w_680_mh_120\. -# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina+easylist.txt: 5431) +# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina.txt: 5404) .zoopda.com/thumbs/.*_w_250_mh_250\. -# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina+easylist.txt: 5430) +# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina.txt: 5403) .zongheng.com/zhuanti/2014/active/js/active\.js -# ||zongheng.com/v2014/js/mod/bad.js (easylistchina+easylist.txt: 5429) +# ||zongheng.com/v2014/js/mod/bad.js (easylistchina.txt: 5402) .zongheng.com/v2014/js/mod/bad\.js -# ||zongheng.com/upload/recommend/game/ (easylistchina+easylist.txt: 5428) +# ||zongheng.com/upload/recommend/game/ (easylistchina.txt: 5401) .zongheng.com/upload/recommend/game/ -# ||zongheng.com/ajax/recommend.game. (easylistchina+easylist.txt: 5427) +# ||zongheng.com/ajax/recommend.game. (easylistchina.txt: 5400) .zongheng.com/ajax/recommend\.game\. -# ||zolsky.com^*ad/*.js (easylistchina+easylist.txt: 5426) +# ||zolsky.com^*ad/*.js (easylistchina.txt: 5399) .zolsky.com/.*ad/.*\.js -# ||zol.com.cn/intelcorp/ (easylistchina+easylist.txt: 5425) +# ||zol.com.cn/intelcorp/ (easylistchina.txt: 5398) .zol.com.cn/intelcorp/ -# ||zol.com.cn/adrs/ (easylistchina+easylist.txt: 5424) +# ||zol.com.cn/adrs/ (easylistchina.txt: 5397) .zol.com.cn/adrs/ -# ||zol-img.com.cn/soft/114ad_ (easylistchina+easylist.txt: 5423) +# ||zol-img.com.cn/soft/114ad_ (easylistchina.txt: 5396) .zol-img.com.cn/soft/114ad_ -# ||zol-img.com.cn/201*/gt (easylistchina+easylist.txt: 5422) +# ||zol-img.com.cn/201*/gt (easylistchina.txt: 5395) .zol-img.com.cn/201.*/gt -# ||zo66.com^ (easylistchina+easylist.txt: 5421) +# ||zo66.com^ (easylistchina.txt: 5394) .zo66.com -# ||znz888.cn/modblock/ (easylistchina+easylist.txt: 5420) +# ||znz888.cn/modblock/ (easylistchina.txt: 5393) .znz888.cn/modblock/ -# ||zk168.com.cn/js/sy (easylistchina+easylist.txt: 5419) +# ||zk168.com.cn/js/sy (easylistchina.txt: 5392) .zk168.com.cn/js/sy -# ||zk168.com.cn/js/s.js (easylistchina+easylist.txt: 5418) +# ||zk168.com.cn/js/s.js (easylistchina.txt: 5391) .zk168.com.cn/js/s\.js -# ||zk168.com.cn/js/fwpd.js (easylistchina+easylist.txt: 5417) +# ||zk168.com.cn/js/fwpd.js (easylistchina.txt: 5390) .zk168.com.cn/js/fwpd\.js -# ||zk168.com.cn/js/b.js (easylistchina+easylist.txt: 5416) +# ||zk168.com.cn/js/b.js (easylistchina.txt: 5389) .zk168.com.cn/js/b\.js -# ||zk168.com.cn/js/300gg.js (easylistchina+easylist.txt: 5415) +# ||zk168.com.cn/js/300gg.js (easylistchina.txt: 5388) .zk168.com.cn/js/300gg\.js -# ||zjphoto.yinsha.com/upload/swf/ (easylistchina+easylist.txt: 5414) +# ||zjphoto.yinsha.com/upload/swf/ (easylistchina.txt: 5387) .zjphoto.yinsha.com/upload/swf/ -# ||zjol.com.cn/js/duilian/ (easylistchina+easylist.txt: 5413) +# ||zjol.com.cn/js/duilian/ (easylistchina.txt: 5386) .zjol.com.cn/js/duilian/ -# ||zjjzx.cn/img/zt/yd/ (easylistchina+easylist.txt: 5412) +# ||zjjzx.cn/img/zt/yd/ (easylistchina.txt: 5385) .zjjzx.cn/img/zt/yd/ -# ||zjjzx.cn*/push/ (easylistchina+easylist.txt: 5411) +# ||zjjzx.cn*/push/ (easylistchina.txt: 5384) .zjjzx.cn*./(.*/)?push/ -# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina+easylist.txt: 5410) +# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina.txt: 5383) .zjg.js.cn/Template/Ant/Js/tonglang\.js -# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina+easylist.txt: 5409) +# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina.txt: 5382) .zjg.js.cn/Public/config/Couplet/Index4 -# ||zjbdt.com/onexgadimgs/ (easylistchina+easylist.txt: 5408) +# ||zjbdt.com/onexgadimgs/ (easylistchina.txt: 5381) .zjbdt.com/onexgadimgs/ -# ||zj.cn^*/AD?location= (easylistchina+easylist.txt: 5407) +# ||zj.cn^*/AD?location= (easylistchina.txt: 5380) .zj.cn/.*/AD\?location= -# ||ziti.jz123.cn/js/ (easylistchina+easylist.txt: 5406) +# ||ziti.jz123.cn/js/ (easylistchina.txt: 5379) .ziti.jz123.cn/js/ -# ||zisai.com/2014.ad/ (easylistchina+easylist.txt: 5405) +# ||zisai.com/2014.ad/ (easylistchina.txt: 5378) .zisai.com/2014\.ad/ -# ||zisai.com/2013.ad/ (easylistchina+easylist.txt: 5404) +# ||zisai.com/2013.ad/ (easylistchina.txt: 5377) .zisai.com/2013\.ad/ -# ||zimuzu.tv/rrlx (easylistchina+easylist.txt: 5403) +# ||zimuzu.tv/rrlx (easylistchina.txt: 5376) .zimuzu.tv/rrlx -# ||zimuzu.tv/public/rooms? (easylistchina+easylist.txt: 5402) +# ||zimuzu.tv/public/rooms? (easylistchina.txt: 5375) .zimuzu.tv/public/rooms\? -# ||zhzyw.org/js/InsertJS.js (easylistchina+easylist.txt: 5401) +# ||zhzyw.org/js/InsertJS.js (easylistchina.txt: 5374) .zhzyw.org/js/InsertJS\.js -# ||zhyjw.com/xiala/ (easylistchina+easylist.txt: 5400) +# ||zhyjw.com/xiala/ (easylistchina.txt: 5373) .zhyjw.com/xiala/ -# ||zhyjw.com/IAA/ (easylistchina+easylist.txt: 5399) +# ||zhyjw.com/IAA/ (easylistchina.txt: 5372) .zhyjw.com/IAA/ -# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina+easylist.txt: 5398) +# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina.txt: 5371) .zhulong.com/poster/get\?positions_name=ZY_SP_300 -# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina+easylist.txt: 5397) +# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina.txt: 5370) .zhulong.com/poster/get\?positions_name=ZY_JZ_300_02 -# ||zhulong.com/poster/get?*_960 (easylistchina+easylist.txt: 5396) +# ||zhulong.com/poster/get?*_960 (easylistchina.txt: 5369) .zhulong.com/poster/get\?.*_960 -# ||zhulang.com/ad_js/ (easylistchina+easylist.txt: 5395) +# ||zhulang.com/ad_js/ (easylistchina.txt: 5368) .zhulang.com/ad_js/ -# ||zhujiangroad.com/js/alltop.js (easylistchina+easylist.txt: 5394) +# ||zhujiangroad.com/js/alltop.js (easylistchina.txt: 5367) .zhujiangroad.com/js/alltop\.js -# ||zhuishu.com/js/fy (easylistchina+easylist.txt: 5393) +# ||zhuishu.com/js/fy (easylistchina.txt: 5366) .zhuishu.com/js/fy -# ||zhuishu.com/js/bd (easylistchina+easylist.txt: 5392) +# ||zhuishu.com/js/bd (easylistchina.txt: 5365) .zhuishu.com/js/bd -# ||zhuanyewanjia.com/upload/show/ (easylistchina+easylist.txt: 5391) +# ||zhuanyewanjia.com/upload/show/ (easylistchina.txt: 5364) .zhuanyewanjia.com/upload/show/ -# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina+easylist.txt: 5390) +# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina.txt: 5363) .zhuankeba.net/rw/tyrw/top\.jpg -# ||zhuangpin.com^*/ad/ (easylistchina+easylist.txt: 5389) -.zhuangpin.com/.*/ad/ -# ||zhoushan.cn/new.js (easylistchina+easylist.txt: 5388) +# ||zhoushan.cn/new.js (easylistchina.txt: 5362) .zhoushan.cn/new\.js -# ||zhongzi.in/static/ko/ (easylistchina+easylist.txt: 5387) +# ||zhongzi.in/static/ko/ (easylistchina.txt: 5361) .zhongzi.in/static/ko/ -# ||zhlzw.com/wlles/2015/995XX.js (easylistchina+easylist.txt: 5386) +# ||zhlzw.com/wlles/2015/995XX.js (easylistchina.txt: 5360) .zhlzw.com/wlles/2015/995XX\.js -# ||zhijia.com/hd/*.swf (easylistchina+easylist.txt: 5385) +# ||zhijia.com/hd/*.swf (easylistchina.txt: 5359) .zhijia.com/hd/.*\.swf -# ||zhihu.com/node/*UpShameimaruV2? (easylistchina+easylist.txt: 5384) -.zhihu.com/node/.*UpShameimaruV2\? -# ||zhihu.com/node/*DownShameimaruV2? (easylistchina+easylist.txt: 5383) -.zhihu.com/node/.*DownShameimaruV2\? -# ||zhibowu.com/js/ad (easylistchina+easylist.txt: 5382) +# ||zhihu.com/node/Banner? (easylistchina.txt: 5358) +.zhihu.com/node/Banner\? +# ||zhibowu.com/js/ad (easylistchina.txt: 5357) .zhibowu.com/js/ad -# ||zhibok8.com/js/scroll.js (easylistchina+easylist.txt: 5381) +# ||zhibok8.com/js/scroll.js (easylistchina.txt: 5356) .zhibok8.com/js/scroll\.js -# ||zhibok8.com/js/ding.js (easylistchina+easylist.txt: 5380) +# ||zhibok8.com/js/ding.js (easylistchina.txt: 5355) .zhibok8.com/js/ding\.js -# ||zhiboba.cc/js/pic.js (easylistchina+easylist.txt: 5379) +# ||zhiboba.cc/js/pic.js (easylistchina.txt: 5354) .zhiboba.cc/js/pic\.js -# ||zhibo8.cc/js/float.js (easylistchina+easylist.txt: 5378) +# ||zhibo8.cc/js/float.js (easylistchina.txt: 5353) .zhibo8.cc/js/float\.js -# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina+easylist.txt: 5377) +# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina.txt: 5352) .zhenjiang365.cn/bbsimg/lphyslideshower\.swf -# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina+easylist.txt: 5376) +# ||zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9.jpg (easylistchina.txt: 5351) +.zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9\.jpg +# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina.txt: 5350) .zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d\.gif -# ||zhenjiang365.cn/*/ad_ (easylistchina+easylist.txt: 5375) +# ||zhenjiang365.cn/*/ad_ (easylistchina.txt: 5349) .zhenjiang365.cn/.*/ad_ -# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina+easylist.txt: 5374) +# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina.txt: 5348) .zhaozi.cn/d/js/mini/extended87\.js -# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina+easylist.txt: 5373) +# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina.txt: 5347) .zhaojiao.net/templets/default/js/AD_flay\.js -# ||zhao.265g.com/cache/kfbftop.html (easylistchina+easylist.txt: 5372) +# ||zhao.265g.com/cache/kfbftop.html (easylistchina.txt: 5346) .zhao.265g.com/cache/kfbftop\.html -# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina+easylist.txt: 5371) +# ||zhanqi.tv/uploads/*/ads-*.swf (easylistchina.txt: 5345) +.zhanqi.tv/uploads/.*/ads-.*\.swf +# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina.txt: 5344) .zhangge.net/wp-content/uploads/files/esx\.jpg -# ||zhandi.cc/Runtime/js/index (easylistchina+easylist.txt: 5370) +# ||zhandi.cc/Runtime/js/index (easylistchina.txt: 5343) .zhandi.cc/Runtime/js/index -# ||zhandi.cc/Runtime/js/900 (easylistchina+easylist.txt: 5369) +# ||zhandi.cc/Runtime/js/900 (easylistchina.txt: 5342) .zhandi.cc/Runtime/js/900 -# ||zhandi.cc/Runtime/js/*vod (easylistchina+easylist.txt: 5368) +# ||zhandi.cc/Runtime/js/*vod (easylistchina.txt: 5341) .zhandi.cc/Runtime/js/.*vod -# ||zhainanba.org/ac/ (easylistchina+easylist.txt: 5367) +# ||zhainanba.org/ac/ (easylistchina.txt: 5340) .zhainanba.org/ac/ -# ||zgjm.org/data/cache/mytag-30.htm (easylistchina+easylist.txt: 5366) +# ||zgjm.org/data/cache/mytag-30.htm (easylistchina.txt: 5339) .zgjm.org/data/cache/mytag-30\.htm -# ||zgjm.org/data/cache/mytag-24.htm (easylistchina+easylist.txt: 5365) +# ||zgjm.org/data/cache/mytag-24.htm (easylistchina.txt: 5338) .zgjm.org/data/cache/mytag-24\.htm -# ||zfs.cn/data/attachment/portal/ (easylistchina+easylist.txt: 5364) +# ||zfs.cn/data/attachment/portal/ (easylistchina.txt: 5337) .zfs.cn/data/attachment/portal/ -# ||zfs.cn/8th/ (easylistchina+easylist.txt: 5363) +# ||zfs.cn/8th/ (easylistchina.txt: 5336) .zfs.cn/8th/ -# ||zeyi.cc/js/2412/ (easylistchina+easylist.txt: 5362) +# ||zeyi.cc/js/2412/ (easylistchina.txt: 5335) .zeyi.cc/js/2412/ -# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina+easylist.txt: 5361) +# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina.txt: 5334) .zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605\.gif -# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina+easylist.txt: 5360) +# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina.txt: 5333) .zdfans.com/wp-content/upgrade/doujind\.gif -# ||zdfans.com/Picture/2345 (easylistchina+easylist.txt: 5359) +# ||zdfans.com/Picture/2345 (easylistchina.txt: 5332) .zdfans.com/Picture/2345 -# ||zdfans.com/adsens/kiees.jpg (easylistchina+easylist.txt: 5358) +# ||zdfans.com/adsens/kiees.jpg (easylistchina.txt: 5331) .zdfans.com/adsens/kiees\.jpg -# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina+easylist.txt: 5357) +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina.txt: 5330) .zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317\.aspx -# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina+easylist.txt: 5356) +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina.txt: 5329) .zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0\.aspx -# ||zchot.com/images/jiaoyou (easylistchina+easylist.txt: 5355) +# ||zchot.com/images/jiaoyou (easylistchina.txt: 5328) .zchot.com/images/jiaoyou -# ||zc173.com/pp/ (easylistchina+easylist.txt: 5354) +# ||zc173.com/pp/ (easylistchina.txt: 5327) .zc173.com/pp/ -# ||zc173.com/173fee/ (easylistchina+easylist.txt: 5353) +# ||zc173.com/173fee/ (easylistchina.txt: 5326) .zc173.com/173fee/ -# ||zb7.com/static/archy/ad/ (easylistchina+easylist.txt: 5352) +# ||zb7.com/static/archy/ad/ (easylistchina.txt: 5325) .zb7.com/static/archy/ad/ -# ||zasv.com/baiya.jpg (easylistchina+easylist.txt: 5351) +# ||zasv.com/baiya.jpg (easylistchina.txt: 5324) .zasv.com/baiya\.jpg -# ||zaobao.com/ssi/bizp/ (easylistchina+easylist.txt: 5350) +# ||zaobao.com/ssi/bizp/ (easylistchina.txt: 5323) .zaobao.com/ssi/bizp/ -# ||zalra.qiniudn.com/zhou2.jpg (easylistchina+easylist.txt: 5349) +# ||zalra.qiniudn.com/zhou2.jpg (easylistchina.txt: 5322) .zalra.qiniudn.com/zhou2\.jpg -# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina+easylist.txt: 5348) +# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina.txt: 5321) .zalra.cn/wp-content/uploads/2014/05/xs009\.jpg -# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina+easylist.txt: 5347) +# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina.txt: 5320) .zalra.cn/wp-content/uploads/2014/05/adsj\.png -# ||z63.org/wp-content/themes/z63/img/s- (easylistchina+easylist.txt: 5346) +# ||z63.org/wp-content/themes/z63/img/s- (easylistchina.txt: 5319) .z63.org/wp-content/themes/z63/img/s- -# ||z4bbs.com/adst/ (easylistchina+easylist.txt: 5345) +# ||z4bbs.com/adst/ (easylistchina.txt: 5318) .z4bbs.com/adst/ -# ||yzz.cn/home/theme/popwin/ (easylistchina+easylist.txt: 5344) +# ||yzz.cn/home/theme/popwin/ (easylistchina.txt: 5317) .yzz.cn/home/theme/popwin/ -# ||yzz.cn/global_gg/ (easylistchina+easylist.txt: 5343) +# ||yzz.cn/global_gg/ (easylistchina.txt: 5316) .yzz.cn/global_gg/ -# ||yzwb.com/js/ppaa.js (easylistchina+easylist.txt: 5342) +# ||yzwb.com/js/ppaa.js (easylistchina.txt: 5315) .yzwb.com/js/ppaa\.js -# ||yzwb.com/js/AD (easylistchina+easylist.txt: 5341) +# ||yzwb.com/js/AD (easylistchina.txt: 5314) .yzwb.com/js/AD -# ||yzwb.com/images/ad_ (easylistchina+easylist.txt: 5340) +# ||yzwb.com/images/ad_ (easylistchina.txt: 5313) .yzwb.com/images/ad_ -# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina+easylist.txt: 5339) +# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina.txt: 5312) .yytcdn.com/user/bugles/.*_.*x.*\.jpg -# ||yytcdn.com/others/avt/*_1 (easylistchina+easylist.txt: 5337) +# ||yytcdn.com/others/avt/*_1 (easylistchina.txt: 5310) .yytcdn.com/others/avt/.*_1 -# ||yytcdn.com/others/*_175x660. (easylistchina+easylist.txt: 5336) +# ||yytcdn.com/others/*_175x660. (easylistchina.txt: 5309) .yytcdn.com/others/.*_175x660\. -# ||yytcdn.com/headfile/avt/ (easylistchina+easylist.txt: 5335) +# ||yytcdn.com/headfile/avt/ (easylistchina.txt: 5308) .yytcdn.com/headfile/avt/ -# ||yy521.com/qq/qq.js (easylistchina+easylist.txt: 5334) +# ||yy521.com/qq/qq.js (easylistchina.txt: 5307) .yy521.com/qq/qq\.js -# ||yy521.com/js/baidu (easylistchina+easylist.txt: 5333) +# ||yy521.com/js/baidu (easylistchina.txt: 5306) .yy521.com/js/baidu -# ||yy18.info/yyads/ (easylistchina+easylist.txt: 5332) +# ||yy18.info/yyads/ (easylistchina.txt: 5305) .yy18.info/yyads/ -# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina+easylist.txt: 5331) +# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina.txt: 5304) .yxlady.com/skin/yx2014/mm/inpage/ny/ -# ||yxlady.com/cdd/ (easylistchina+easylist.txt: 5330) +# ||yxlady.com/cdd/ (easylistchina.txt: 5303) .yxlady.com/cdd/ -# ||yxdown.com/ghtml/ (easylistchina+easylist.txt: 5329) +# ||yxdown.com/ghtml/ (easylistchina.txt: 5302) .yxdown.com/ghtml/ -# ||yxdd.com^$subdocument (easylistchina+easylist.txt: 5328) +# ||yxdd.com^$subdocument (easylistchina.txt: 5301) .yxdd.com -# ||yxad.com/yxad/ (easylistchina+easylist.txt: 5327) +# ||yxad.com/yxad/ (easylistchina.txt: 5300) .yxad.com/yxad/ -# ||yxad.com/sg/ (easylistchina+easylist.txt: 5326) +# ||yxad.com/sg/ (easylistchina.txt: 5299) .yxad.com/sg/ -# ||yxad.com/js/lady.gif (easylistchina+easylist.txt: 5325) +# ||yxad.com/js/lady.gif (easylistchina.txt: 5298) .yxad.com/js/lady\.gif -# ||yxad.com/baidu/ (easylistchina+easylist.txt: 5324) +# ||yxad.com/baidu/ (easylistchina.txt: 5297) .yxad.com/baidu/ -# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina+easylist.txt: 5323) +# ||yupoo.com/ttmeiju/FgIoBTXx/4uIfH.jpg (easylistchina.txt: 5296) +.yupoo.com/ttmeiju/FgIoBTXx/4uIfH\.jpg +# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina.txt: 5295) .yupoo.com/ttmeiju/F5TrKJL8/medish\.jpg -# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina+easylist.txt: 5322) +# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina.txt: 5294) .yupoo.com/ttmeiju/F5aQAmuW/XKgx\.gif -# ||yunupload.net/jsa/ (easylistchina+easylist.txt: 5320) +# ||yunupload.net/jsa/ (easylistchina.txt: 5292) .yunupload.net/jsa/ -# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina+easylist.txt: 5319) +# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina.txt: 5291) .yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead\.jpg -# ||yunfile.com^*/offline_banner/ (easylistchina+easylist.txt: 5318) -.yunfile.com/.*/offline_banner/ -# ||yundianb.com/tu/jia.gif (easylistchina+easylist.txt: 5317) +# ||yundianb.com/tu/jia.gif (easylistchina.txt: 5290) .yundianb.com/tu/jia\.gif -# ||yundianb.com/hao/ (easylistchina+easylist.txt: 5316) +# ||yundianb.com/hao/ (easylistchina.txt: 5289) .yundianb.com/hao/ -# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina+easylist.txt: 5315) +# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina.txt: 5288) .yundasys.com:1602/wsd/ykjcx/ -# ||yunaw.qiniudn.com/tuixiao.png (easylistchina+easylist.txt: 5314) +# ||yunaw.qiniudn.com/tuixiao.png (easylistchina.txt: 5287) .yunaw.qiniudn.com/tuixiao\.png -# ||yubei8.com/img/ (easylistchina+easylist.txt: 5313) +# ||yubei8.com/img/ (easylistchina.txt: 5286) .yubei8.com/img/ -# ||yubei8.com/boximg/ (easylistchina+easylist.txt: 5312) +# ||yubei8.com/boximg/ (easylistchina.txt: 5285) .yubei8.com/boximg/ -# ||yu64.com/44jjss/ (easylistchina+easylist.txt: 5311) -.yu64.com/44jjss/ -# ||yto.net.cn/gw/chajian/ (easylistchina+easylist.txt: 5310) +# ||yto.net.cn/gw/chajian/ (easylistchina.txt: 5284) .yto.net.cn/gw/chajian/ -# ||ytbbs.com/images/index/ (easylistchina+easylist.txt: 5309) +# ||ytbbs.com/images/index/ (easylistchina.txt: 5283) .ytbbs.com/images/index/ -# ||ysxs8.com/ysgg/ (easylistchina+easylist.txt: 5308) +# ||ysxs8.com/ysgg/ (easylistchina.txt: 5282) .ysxs8.com/ysgg/ -# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina+easylist.txt: 5307) +# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina.txt: 5281) .youxituoluo.com/wp-content/uploads/2015/09/20150914175545748\.jpg -# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina+easylist.txt: 5306) +# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina.txt: 5280) .youxituoluo.com/wp-content/uploads/2015/07/20150724152002343\.jpg -# ||youxiaxiazai.com/dm/ (easylistchina+easylist.txt: 5305) +# ||youxiaxiazai.com/dm/ (easylistchina.txt: 5279) .youxiaxiazai.com/dm/ -# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina+easylist.txt: 5304) +# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina.txt: 5278) .youxiaxiazai.com/db_top/index_top\.htm -# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina+easylist.txt: 5303) +# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina.txt: 5277) .youxi.baidu.com/tips/bdtips_min\.js -# ||youthwant.com.tw/scripts/youthad.js (easylistchina+easylist.txt: 5301) +# ||youthwant.com.tw/scripts/youthad.js (easylistchina.txt: 5275) .youthwant.com.tw/scripts/youthad\.js -# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina+easylist.txt: 5300) +# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina.txt: 5274) .youthwant.com.tw/S_YahooContentMatch1\. -# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina+easylist.txt: 5299) +# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina.txt: 5273) .youthwant.com.tw/images/mot_ad\.jpg -# ||youthwant.com.tw/event/*/swf/970x (easylistchina+easylist.txt: 5298) +# ||youthwant.com.tw/event/*/swf/970x (easylistchina.txt: 5272) .youthwant.com.tw/event/.*/swf/970x -# ||youthwant.com.tw/dodo.php?adjs= (easylistchina+easylist.txt: 5297) +# ||youthwant.com.tw/dodo.php?adjs= (easylistchina.txt: 5271) .youthwant.com.tw/dodo\.php\?adjs= -# ||youth.cn/qwtf2015/ (easylistchina+easylist.txt: 5296) +# ||youth.cn/qwtf2015/ (easylistchina.txt: 5270) .youth.cn/qwtf2015/ -# ||youth.cn/images/public_ (easylistchina+easylist.txt: 5295) +# ||youth.cn/images/public_ (easylistchina.txt: 5269) .youth.cn/images/public_ -# ||youth.cn/images/m.js (easylistchina+easylist.txt: 5294) +# ||youth.cn/images/m.js (easylistchina.txt: 5268) .youth.cn/images/m\.js -# ||youth.cn/images/c.js (easylistchina+easylist.txt: 5293) +# ||youth.cn/images/c.js (easylistchina.txt: 5267) .youth.cn/images/c\.js -# ||youth.cn/hezuo/index.js (easylistchina+easylist.txt: 5292) +# ||youth.cn/hezuo/index.js (easylistchina.txt: 5266) .youth.cn/hezuo/index\.js -# ||youth.cn/ggw/dep_ggw/ (easylistchina+easylist.txt: 5291) +# ||youth.cn/ggw/dep_ggw/ (easylistchina.txt: 5265) .youth.cn/ggw/dep_ggw/ -# ||youqu.net/js/ (easylistchina+easylist.txt: 5290) +# ||youqu.net/js/ (easylistchina.txt: 5264) .youqu.net/js/ -# ||you85.cn^*/z*.js (easylistchina+easylist.txt: 5289) +# ||you85.cn^*/z*.js (easylistchina.txt: 5263) .you85.cn/.*/z.*\.js -# ||you85.cn^*/vip.js (easylistchina+easylist.txt: 5288) +# ||you85.cn^*/vip.js (easylistchina.txt: 5262) .you85.cn/.*/vip\.js -# ||you85.cn^*/dib.js (easylistchina+easylist.txt: 5287) +# ||you85.cn^*/dib.js (easylistchina.txt: 5261) .you85.cn/.*/dib\.js -# ||you85.cn/i360/ (easylistchina+easylist.txt: 5286) +# ||you85.cn/i360/ (easylistchina.txt: 5260) .you85.cn/i360/ -# ||you85.cn/cc/ (easylistchina+easylist.txt: 5285) +# ||you85.cn/cc/ (easylistchina.txt: 5259) .you85.cn/cc/ -# ||yooread.com/skin/js/common.js (easylistchina+easylist.txt: 5284) +# ||yooread.com/skin/js/common.js (easylistchina.txt: 5258) .yooread.com/skin/js/common\.js -# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina+easylist.txt: 5283) +# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina.txt: 5257) .ynzd.org/dict/uploads/20111007/ad_710\.jpg -# ||ylzx8.cn/style/js/sad.js (easylistchina+easylist.txt: 5282) +# ||ylzx8.cn/style/js/sad.js (easylistchina.txt: 5256) .ylzx8.cn/style/js/sad\.js -# ||ylnet.com.cn/inc/ad$subdocument (easylistchina+easylist.txt: 5281) +# ||ylnet.com.cn/inc/ad$subdocument (easylistchina.txt: 5255) .ylnet.com.cn/inc/ad -# ||ylnet.com.cn/gj.js (easylistchina+easylist.txt: 5280) +# ||ylnet.com.cn/gj.js (easylistchina.txt: 5254) .ylnet.com.cn/gj\.js -# ||ylnet.com.cn/dl*.js (easylistchina+easylist.txt: 5279) +# ||ylnet.com.cn/dl*.js (easylistchina.txt: 5253) .ylnet.com.cn/dl.*\.js -# ||ylnet.com.cn/201*/rh/ (easylistchina+easylist.txt: 5278) +# ||ylnet.com.cn/201*/rh/ (easylistchina.txt: 5252) .ylnet.com.cn/201.*/rh/ -# ||yktj.yzz.cn^ (easylistchina+easylist.txt: 5277) +# ||yktj.yzz.cn^ (easylistchina.txt: 5251) .yktj.yzz.cn -# ||yjhas.net/250x250- (easylistchina+easylist.txt: 5276) -.yjhas.net/250x250- -# ||yizhai.net/myjs/f*.js (easylistchina+easylist.txt: 5275) +# ||yjhas.net^$image (easylistchina.txt: 5250) +.yjhas.net +# ||yizhai.net/myjs/f*.js (easylistchina.txt: 5249) .yizhai.net/myjs/f.*\.js -# ||yiyipan.com/images/12.gif (easylistchina+easylist.txt: 5274) +# ||yiyipan.com/images/12.gif (easylistchina.txt: 5248) .yiyipan.com/images/12\.gif -# ||yixiaoba.com/juxiao.html (easylistchina+easylist.txt: 5273) +# ||yixiaoba.com/juxiao.html (easylistchina.txt: 5247) .yixiaoba.com/juxiao\.html -# ||yixiaoba.com/js/yxb_normal.js (easylistchina+easylist.txt: 5272) +# ||yixiaoba.com/js/yxb_normal.js (easylistchina.txt: 5246) .yixiaoba.com/js/yxb_normal\.js -# ||yiweimei.net/css/logo.gif (easylistchina+easylist.txt: 5271) +# ||yiweimei.net/css/logo.gif (easylistchina.txt: 5245) .yiweimei.net/css/logo\.gif -# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina+easylist.txt: 5270) +# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina.txt: 5244) .yinyuetai.com/proment/get-play-medias\?json=true&position=preroll -# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina+easylist.txt: 5269) +# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina.txt: 5243) .yinyuetai.com/proment/get-play-medias\?.*&position=pauseroll -# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina+easylist.txt: 5268) +# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina.txt: 5242) .yinyuetai.com/proment/get-play-medias\?.*&position=overlay -# ||yinyuetai.com/partner/$object-subrequest (easylistchina+easylist.txt: 5267) +# ||yinyuetai.com/partner/$object-subrequest (easylistchina.txt: 5241) .yinyuetai.com/partner/ -# ||yinhangkahao.com/go/ (easylistchina+easylist.txt: 5266) +# ||yinhangkahao.com/go/ (easylistchina.txt: 5240) .yinhangkahao.com/go/ -# ||yinfu.cc/sid/*.js (easylistchina+easylist.txt: 5265) +# ||yinfu.cc/sid/*.js (easylistchina.txt: 5239) .yinfu.cc/sid/.*\.js -# ||yinduabc.com/res_base/*/makemoney/ (easylistchina+easylist.txt: 5264) +# ||yinduabc.com/res_base/*/makemoney/ (easylistchina.txt: 5238) .yinduabc.com/res_base/.*/makemoney/ -# ||yimuhe.com/n_ad/ (easylistchina+easylist.txt: 5263) +# ||yimuhe.com/n_ad/ (easylistchina.txt: 5237) .yimuhe.com/n_ad/ -# ||yimg.com/ja/ap/*_wallpaper (easylistchina+easylist.txt: 5261) +# ||yimg.com/ja/ap/*_wallpaper (easylistchina.txt: 5235) .yimg.com/ja/ap/.*_wallpaper -# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina+easylist.txt: 5260) +# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina.txt: 5234) .yimg.com/ja/ap/.*/hk_rm_umu_ -# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina+easylist.txt: 5259) +# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina.txt: 5233) .yimg.com/cv/ae/tw/bwchou/bubble_ -# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina+easylist.txt: 5258) +# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina.txt: 5232) .yimg.com/cv/ae/tw/bwchou/728x210\. -# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina+easylist.txt: 5257) +# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina.txt: 5231) .yimg.com/cv/ae/default/.*_STATIC-JPEG_ -# ||yimg.com/bf/homerun/ysm_ (easylistchina+easylist.txt: 5256) +# ||yimg.com/bf/homerun/ysm_ (easylistchina.txt: 5230) .yimg.com/bf/homerun/ysm_ -# ||yiku51.com/xinzeng/js/ (easylistchina+easylist.txt: 5255) +# ||yiku51.com/xinzeng/js/ (easylistchina.txt: 5229) .yiku51.com/xinzeng/js/ -# ||ygdy8.com/jsy/ (easylistchina+easylist.txt: 5254) +# ||ygdy8.com/jsy/ (easylistchina.txt: 5228) .ygdy8.com/jsy/ -# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina+easylist.txt: 5253) +# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina.txt: 5227) .yeyou.com/2013/new/yeyou-float-window\.js -# ||yesky.com/monitorjs/imp- (easylistchina+easylist.txt: 5252) +# ||yesky.com/monitorjs/imp- (easylistchina.txt: 5226) .yesky.com/monitorjs/imp- -# ||yehaolu.com/js/jjss (easylistchina+easylist.txt: 5251) -.yehaolu.com/js/jjss -# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina+easylist.txt: 5250) +# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina.txt: 5225) .yeeyi.com/bbs/api\.php\?mod=js&bid= -# ||ydstatic.com/images/hao163/600-45_2.jpg (easylistchina+easylist.txt: 5249) -.ydstatic.com/images/hao163/600-45_2\.jpg -# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina+easylist.txt: 5248) +# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina.txt: 5224) .ydstatic.com/fanxian/minisite/promotion/ -# ||yczbb.com/ggimg/ (easylistchina+easylist.txt: 5247) +# ||yczbb.com/ggimg/ (easylistchina.txt: 5223) .yczbb.com/ggimg/ -# ||ychr.com/dlad.js (easylistchina+easylist.txt: 5246) +# ||ychr.com/dlad.js (easylistchina.txt: 5222) .ychr.com/dlad\.js -# ||ybvv.com*/aimg/ (easylistchina+easylist.txt: 5245) +# ||ybvv.com*/aimg/ (easylistchina.txt: 5221) .ybvv.com*./(.*/)?aimg/ -# ||yb983.com/skin/yb983V2013/ad/ (easylistchina+easylist.txt: 5244) +# ||yb983.com/skin/yb983V2013/ad/ (easylistchina.txt: 5220) .yb983.com/skin/yb983V2013/ad/ -# ||yawin.cn/inc/indexad.js (easylistchina+easylist.txt: 5243) +# ||yawin.cn/inc/indexad.js (easylistchina.txt: 5219) .yawin.cn/inc/indexad\.js -# ||yaolanimage.cn/cms/image/960-90 (easylistchina+easylist.txt: 5242) +# ||yaolanimage.cn/cms/image/960-90 (easylistchina.txt: 5218) .yaolanimage.cn/cms/image/960-90 -# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina+easylist.txt: 5241) +# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina.txt: 5217) .yaolanimage.cn/assets/ask/js/ask_video_popup\.js -# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina+easylist.txt: 5240) +# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina.txt: 5216) .yaolan.com/wenku_debris/time_debris/images/mary -# ||yaojixiu.com/960x100.gif (easylistchina+easylist.txt: 5239) +# ||yaojixiu.com/960x100.gif (easylistchina.txt: 5215) .yaojixiu.com/960x100\.gif -# ||yanu.qiniudn.com/270300.jpg (easylistchina+easylist.txt: 5238) +# ||yanu.qiniudn.com/270300.jpg (easylistchina.txt: 5214) .yanu.qiniudn.com/270300\.jpg -# ||yanu.qiniudn.com/*x60. (easylistchina+easylist.txt: 5237) +# ||yanu.qiniudn.com/*x60. (easylistchina.txt: 5213) .yanu.qiniudn.com/.*x60\. -# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina+easylist.txt: 5236) +# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina.txt: 5212) .yanqing888.me/script/Read_Fee_Bottom\.js -# ||yanqing888.me/script/fanye (easylistchina+easylist.txt: 5235) +# ||yanqing888.me/script/fanye (easylistchina.txt: 5211) .yanqing888.me/script/fanye -# ||yanjiao.com/zt/indexad/ (easylistchina+easylist.txt: 5234) +# ||yanjiao.com/zt/indexad/ (easylistchina.txt: 5210) .yanjiao.com/zt/indexad/ -# ||yam.com/ad_yam/ (easylistchina+easylist.txt: 5233) +# ||yam.com/ad_yam/ (easylistchina.txt: 5209) .yam.com/ad_yam/ -# ||yaerwen.com/5200js/59.js (easylistchina+easylist.txt: 5232) +# ||yaerwen.com/5200js/59.js (easylistchina.txt: 5208) .yaerwen.com/5200js/59\.js -# ||y80s.org:85/upload/468-60 (easylistchina+easylist.txt: 5231) +# ||y80s.org:85/upload/468-60 (easylistchina.txt: 5207) .y80s.org:85/upload/468-60 -# ||y80s.org:85/img/960x90.gif (easylistchina+easylist.txt: 5230) +# ||y80s.org:85/img/960x90.gif (easylistchina.txt: 5206) .y80s.org:85/img/960x90\.gif -# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina+easylist.txt: 5229) +# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina.txt: 5205) .y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32\.jpg -# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina+easylist.txt: 5228) +# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina.txt: 5204) .xz7.com/up/UploadPic/2014-5/201452517141272046\.gif -# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina+easylist.txt: 5227) +# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina.txt: 5203) .xz7.com/up/UploadPic/2014-5/201452517124193056\.gif -# ||xz7.com/js/xia (easylistchina+easylist.txt: 5226) +# ||xz7.com/js/xia (easylistchina.txt: 5202) .xz7.com/js/xia -# ||xz7.com/js/top2.js (easylistchina+easylist.txt: 5225) +# ||xz7.com/js/top2.js (easylistchina.txt: 5201) .xz7.com/js/top2\.js -# ||xz7.com/js/jctj.js (easylistchina+easylist.txt: 5224) +# ||xz7.com/js/jctj.js (easylistchina.txt: 5200) .xz7.com/js/jctj\.js -# ||xz7.com/js/gg_ (easylistchina+easylist.txt: 5223) +# ||xz7.com/js/gg_ (easylistchina.txt: 5199) .xz7.com/js/gg_ -# ||xz7.com/js/bann (easylistchina+easylist.txt: 5222) +# ||xz7.com/js/bann (easylistchina.txt: 5198) .xz7.com/js/bann -# ||xz7.com/js/3000.js (easylistchina+easylist.txt: 5221) +# ||xz7.com/js/3000.js (easylistchina.txt: 5197) .xz7.com/js/3000\.js -# ||xyzc.cn/js/pfgg.js (easylistchina+easylist.txt: 5220) +# ||xyzc.cn/js/pfgg.js (easylistchina.txt: 5196) .xyzc.cn/js/pfgg\.js -# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 5219) +# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina.txt: 5195) .xyfdcw.com.cn/userfiles/flash/ -# ||xxx169.org^$third-party (easylistchina+easylist.txt: 5218) +# ||xxx169.org^$third-party (easylistchina.txt: 5194) .xxx169.org -# ||xxsy.net/js/xxsypop (easylistchina+easylist.txt: 5217) +# ||xxsy.net/js/xxsypop (easylistchina.txt: 5193) .xxsy.net/js/xxsypop -# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina+easylist.txt: 5216) +# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina.txt: 5192) .xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71\.jpg -# ||xxrt.net/goto/ (easylistchina+easylist.txt: 5215) -.xxrt.net/goto/ -# ||xxhh.com/xh.js (easylistchina+easylist.txt: 5214) +# ||xxhh.com/xh.js (easylistchina.txt: 5191) .xxhh.com/xh\.js -# ||xxdm.org/js/union/ (easylistchina+easylist.txt: 5213) +# ||xxdm.org/js/union/ (easylistchina.txt: 5190) .xxdm.org/js/union/ -# ||xxdm.com/js/union/ (easylistchina+easylist.txt: 5212) +# ||xxdm.com/js/union/ (easylistchina.txt: 5189) .xxdm.com/js/union/ -# ||xx978.info/images/468-60OK.gif (easylistchina+easylist.txt: 5211) +# ||xx978.info/images/468-60OK.gif (easylistchina.txt: 5188) .xx978.info/images/468-60OK\.gif -# ||xunzai.com/www/all_common.js (easylistchina+easylist.txt: 5210) +# ||xv98.com/js/hengfu (easylistchina.txt: 5187) +.xv98.com/js/hengfu +# ||xv98.com/js/daohang (easylistchina.txt: 5186) +.xv98.com/js/daohang +# ||xunzai.com/www/all_common.js (easylistchina.txt: 5185) .xunzai.com/www/all_common\.js -# ||xunzai.com/static/wwwimg/ (easylistchina+easylist.txt: 5209) +# ||xunzai.com/static/wwwimg/ (easylistchina.txt: 5184) .xunzai.com/static/wwwimg/ -# ||xunzai.com/static/www/ku360300.jpg (easylistchina+easylist.txt: 5208) +# ||xunzai.com/static/www/ku360300.jpg (easylistchina.txt: 5183) .xunzai.com/static/www/ku360300\.jpg -# ||xunying.com^*/ww (easylistchina+easylist.txt: 5207) +# ||xunying.com^*/ww (easylistchina.txt: 5182) .xunying.com/.*/ww -# ||xunleisousuo.com/byou.php (easylistchina+easylist.txt: 5206) +# ||xunleisousuo.com/byou.php (easylistchina.txt: 5181) .xunleisousuo.com/byou\.php -# ||xunleipu.com/a-d-j-s/ (easylistchina+easylist.txt: 5205) +# ||xunleipu.com/a-d-j-s/ (easylistchina.txt: 5180) .xunleipu.com/a-d-j-s/ -# ||xunleihd.com/image/*maose (easylistchina+easylist.txt: 5204) +# ||xunleihd.com/image/*maose (easylistchina.txt: 5179) .xunleihd.com/image/.*maose -# ||xunleihao.com/a-d-j-s/ (easylistchina+easylist.txt: 5203) +# ||xunleihao.com/a-d-j-s/ (easylistchina.txt: 5178) .xunleihao.com/a-d-j-s/ -# ||xun9u.com/css/js/text_link.js (easylistchina+easylist.txt: 5202) +# ||xun9u.com/css/js/text_link.js (easylistchina.txt: 5177) .xun9u.com/css/js/text_link\.js -# ||xue163.com/ajs/end (easylistchina+easylist.txt: 5201) +# ||xue163.com/ajs/end (easylistchina.txt: 5176) .xue163.com/ajs/end -# ||xs8.cn/xs8_stat.js (easylistchina+easylist.txt: 5200) +# ||xs8.cn/xs8_stat.js (easylistchina.txt: 5175) .xs8.cn/xs8_stat\.js -# ||xs.houyi.baofeng.net^ (easylistchina+easylist.txt: 5199) +# ||xs.houyi.baofeng.net^ (easylistchina.txt: 5174) .xs.houyi.baofeng.net -# ||xr8.me/2s.js (easylistchina+easylist.txt: 5198) -.xr8.me/2s\.js -# ||xpgod.com/UploadPic/xpgod/ (easylistchina+easylist.txt: 5196) +# ||xpgod.com/UploadPic/xpgod/ (easylistchina.txt: 5173) .xpgod.com/UploadPic/xpgod/ -# ||xpgod.com/bui/ (easylistchina+easylist.txt: 5195) +# ||xpgod.com/bui/ (easylistchina.txt: 5172) .xpgod.com/bui/ -# ||xp85.com/statics/js/all.js (easylistchina+easylist.txt: 5194) +# ||xp85.com/statics/js/all.js (easylistchina.txt: 5171) .xp85.com/statics/js/all\.js -# ||xp811.com/img/xitong.gif (easylistchina+easylist.txt: 5193) +# ||xp811.com/img/xitong.gif (easylistchina.txt: 5170) .xp811.com/img/xitong\.gif -# ||xp510.com/skin/wdsj.gif (easylistchina+easylist.txt: 5192) +# ||xp510.com/skin/wdsj.gif (easylistchina.txt: 5169) .xp510.com/skin/wdsj\.gif -# ||xntk.net^$script (easylistchina+easylist.txt: 5191) +# ||xntk.net^$script (easylistchina.txt: 5168) .xntk.net -# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina+easylist.txt: 5190) +# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina.txt: 5167) .xnnews.com.cn/templets/js/wzydl\.js -# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina+easylist.txt: 5189) +# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina.txt: 5166) .xnnews.com.cn/templets/js/smsline_double\.js -# ||xnnews.com.cn/Templets/js/*link (easylistchina+easylist.txt: 5188) +# ||xnnews.com.cn/Templets/js/*link (easylistchina.txt: 5165) .xnnews.com.cn/Templets/js/.*link -# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina+easylist.txt: 5187) +# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina.txt: 5164) .xnnews.com.cn/Templets/image/zyyy\.swf -# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina+easylist.txt: 5186) +# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina.txt: 5163) .xnnews.com.cn/templets/image/mpljj\.jpg -# ||xnnews.com.cn/templets/image/*gg (easylistchina+easylist.txt: 5185) +# ||xnnews.com.cn/templets/image/*gg (easylistchina.txt: 5162) .xnnews.com.cn/templets/image/.*gg -# ||xnnews.com.cn/images/yr_wsm.js (easylistchina+easylist.txt: 5184) +# ||xnnews.com.cn/images/yr_wsm.js (easylistchina.txt: 5161) .xnnews.com.cn/images/yr_wsm\.js -# ||xmfish.com/chanel/www/cpm.html (easylistchina+easylist.txt: 5183) +# ||xmfish.com/chanel/www/cpm.html (easylistchina.txt: 5160) .xmfish.com/chanel/www/cpm\.html -# ||xlpu.cc/adv/ (easylistchina+easylist.txt: 5182) +# ||xlpu.cc/adv/ (easylistchina.txt: 5159) .xlpu.cc/adv/ -# ||xkxs.org/js/tongji.js (easylistchina+easylist.txt: 5181) +# ||xkxs.org/js/tongji.js (easylistchina.txt: 5158) .xkxs.org/js/tongji\.js -# ||xkxs.org/js/tl (easylistchina+easylist.txt: 5180) +# ||xkxs.org/js/tl (easylistchina.txt: 5157) .xkxs.org/js/tl -# ||xkxs.org/js/bd (easylistchina+easylist.txt: 5179) +# ||xkxs.org/js/bd (easylistchina.txt: 5156) .xkxs.org/js/bd -# ||xkhouse.com/xkhouse/ggvert/ (easylistchina+easylist.txt: 5178) +# ||xkhouse.com/xkhouse/ggvert/ (easylistchina.txt: 5155) .xkhouse.com/xkhouse/ggvert/ -# ||xkhouse.com/display/displaygg/ (easylistchina+easylist.txt: 5177) +# ||xkhouse.com/display/displaygg/ (easylistchina.txt: 5154) .xkhouse.com/display/displaygg/ -# ||xizi.com/js/rotator.js (easylistchina+easylist.txt: 5176) +# ||xizi.com/js/rotator.js (easylistchina.txt: 5153) .xizi.com/js/rotator\.js -# ||xizi.com/a/ (easylistchina+easylist.txt: 5175) +# ||xizi.com/a/ (easylistchina.txt: 5152) .xizi.com/a/ -# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina+easylist.txt: 5174) +# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina.txt: 5151) .xizhongzi.net/bootstrap/dist/img/ -# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina+easylist.txt: 5173) +# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina.txt: 5150) .xiu8.com/baidu-tieba/.*&forum_name= -# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina+easylist.txt: 5172) +# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina.txt: 5149) .xitong8.com/theme/default/images/index_13\.jpg -# ||xitong8.com/theme/default/images/725x90.gif (easylistchina+easylist.txt: 5171) +# ||xitong8.com/theme/default/images/725x90.gif (easylistchina.txt: 5148) .xitong8.com/theme/default/images/725x90\.gif -# ||xitek.com/idzone/ (easylistchina+easylist.txt: 5170) +# ||xitek.com/idzone/ (easylistchina.txt: 5147) .xitek.com/idzone/ -# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina+easylist.txt: 5169) +# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina.txt: 5146) .xinyi.com/Template/Ant/Js/tonglang\.js -# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina+easylist.txt: 5168) +# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina.txt: 5145) .xinyi.com/Public/config/Couplet/Index41\.js -# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina+easylist.txt: 5167) +# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina.txt: 5144) .xinyi.com/Public/config/Couplet/Index40\.js -# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina+easylist.txt: 5166) +# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina.txt: 5143) .xinyi.com/Public/config/Couplet/Index39\.js -# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina+easylist.txt: 5165) +# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina.txt: 5142) .xinyi.com/Public/config/Couplet/Index100\.js -# ||xinminweekly.com.cn/images/index-985x93- (easylistchina+easylist.txt: 5164) +# ||xinminweekly.com.cn/images/index-985x93- (easylistchina.txt: 5141) .xinminweekly.com.cn/images/index-985x93- -# ||xinminweekly.com.cn/images/*-banner (easylistchina+easylist.txt: 5163) +# ||xinminweekly.com.cn/images/*-banner (easylistchina.txt: 5140) .xinminweekly.com.cn/images/.*-banner -# ||xinmin.cn/framepage/yqLink1.htm (easylistchina+easylist.txt: 5162) +# ||xinmin.cn/framepage/yqLink1.htm (easylistchina.txt: 5139) .xinmin.cn/framepage/yqLink1\.htm -# ||xinmin.cn/framepage/top (easylistchina+easylist.txt: 5161) +# ||xinmin.cn/framepage/top (easylistchina.txt: 5138) .xinmin.cn/framepage/top -# ||xinmin.cn/framepage/left1.htm (easylistchina+easylist.txt: 5160) +# ||xinmin.cn/framepage/left1.htm (easylistchina.txt: 5137) .xinmin.cn/framepage/left1\.htm -# ||xinmin.cn/framepage/foot1.htm (easylistchina+easylist.txt: 5159) +# ||xinmin.cn/framepage/foot1.htm (easylistchina.txt: 5136) .xinmin.cn/framepage/foot1\.htm -# ||xinku.tv/asd/ (easylistchina+easylist.txt: 5158) +# ||xinku.tv/asd/ (easylistchina.txt: 5135) .xinku.tv/asd/ -# ||xinjs.cn/2010/yf (easylistchina+easylist.txt: 5157) +# ||xinjs.cn/2010/yf (easylistchina.txt: 5134) .xinjs.cn/2010/yf -# ||xinji.org/js/float.js (easylistchina+easylist.txt: 5156) +# ||xinji.org/js/float.js (easylistchina.txt: 5133) .xinji.org/js/float\.js -# ||xinhuanet.com^*_tl_$script (easylistchina+easylist.txt: 5155) +# ||xinhuanet.com^*_tl_$script (easylistchina.txt: 5132) .xinhuanet.com/.*_tl_ -# ||xinhuanet.com^*/ad_ (easylistchina+easylist.txt: 5154) +# ||xinhuanet.com^*/ad_ (easylistchina.txt: 5131) .xinhuanet.com/.*/ad_ -# ||xinhuanet.com/v2/ads/ (easylistchina+easylist.txt: 5153) +# ||xinhuanet.com/v2/ads/ (easylistchina.txt: 5130) .xinhuanet.com/v2/ads/ -# ||xinhuanet.com/v/script/coupletAd.js (easylistchina+easylist.txt: 5152) +# ||xinhuanet.com/v/script/coupletAd.js (easylistchina.txt: 5129) .xinhuanet.com/v/script/coupletAd\.js -# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina+easylist.txt: 5151) +# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina.txt: 5128) .xinhuanet.com/titlepic/111243292_title1n\.jpg -# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina+easylist.txt: 5150) +# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina.txt: 5127) .xinhuanet.com/statics/imags/zgyd_ -# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina+easylist.txt: 5149) +# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina.txt: 5126) .xinhuanet.com/plugs/szzc630x80\.jpg -# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina+easylist.txt: 5148) +# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina.txt: 5125) .xinhuanet.com/jjimages/jc/js/fla\.js -# ||xinhuanet.com/images2015/index980 (easylistchina+easylist.txt: 5147) +# ||xinhuanet.com/images2015/index980 (easylistchina.txt: 5124) .xinhuanet.com/images2015/index980 -# ||xinhuanet.com/images/ggdl.jpg (easylistchina+easylist.txt: 5146) +# ||xinhuanet.com/images/ggdl.jpg (easylistchina.txt: 5123) .xinhuanet.com/images/ggdl\.jpg -# ||xinhuanet.com/classad/ (easylistchina+easylist.txt: 5145) +# ||xinhuanet.com/classad/ (easylistchina.txt: 5122) .xinhuanet.com/classad/ -# ||xinhuanet.com/adxl/ (easylistchina+easylist.txt: 5144) +# ||xinhuanet.com/adxl/ (easylistchina.txt: 5121) .xinhuanet.com/adxl/ -# ||xinhuanet.com/2015ad/ (easylistchina+easylist.txt: 5143) +# ||xinhuanet.com/2015ad/ (easylistchina.txt: 5120) .xinhuanet.com/2015ad/ -# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina+easylist.txt: 5142) +# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina.txt: 5119) .xinhuanet.com/2015/html2015/xhfloatAdv\.html -# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina+easylist.txt: 5141) +# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina.txt: 5118) .xinhuanet.com/2014xb/html/if_gg\.htm -# ||xinhuanet.com/2014/imgad/ (easylistchina+easylist.txt: 5140) +# ||xinhuanet.com/2014/imgad/ (easylistchina.txt: 5117) .xinhuanet.com/2014/imgad/ -# ||xinhuanet.com/2014/iframe/AD- (easylistchina+easylist.txt: 5139) +# ||xinhuanet.com/2014/iframe/AD- (easylistchina.txt: 5116) .xinhuanet.com/2014/iframe/AD- -# ||xinhuanet.com/2013images/ltxl.gif (easylistchina+easylist.txt: 5138) +# ||xinhuanet.com/2013images/ltxl.gif (easylistchina.txt: 5115) .xinhuanet.com/2013images/ltxl\.gif -# ||xinhuanet.com/2013images/jfzj.swf (easylistchina+easylist.txt: 5137) +# ||xinhuanet.com/2013images/jfzj.swf (easylistchina.txt: 5114) .xinhuanet.com/2013images/jfzj\.swf -# ||xinhuanet.com/*/ad20 (easylistchina+easylist.txt: 5136) +# ||xinhuanet.com/*/ad20 (easylistchina.txt: 5113) .xinhuanet.com/.*/ad20 -# ||xinbiqi.com/js/pc_ads.js (easylistchina+easylist.txt: 5135) +# ||xinbiqi.com/js/pc_ads.js (easylistchina.txt: 5112) .xinbiqi.com/js/pc_ads\.js -# ||xilu.com/js/bd.js (easylistchina+easylist.txt: 5134) +# ||xilu.com/js/bd.js (easylistchina.txt: 5111) .xilu.com/js/bd\.js -# ||xilu.com/iframe/pagepic/ (easylistchina+easylist.txt: 5133) +# ||xilu.com/iframe/pagepic/ (easylistchina.txt: 5110) .xilu.com/iframe/pagepic/ -# ||xilinjie.com/partner/ (easylistchina+easylist.txt: 5132) +# ||xilinjie.com/partner/ (easylistchina.txt: 5109) .xilinjie.com/partner/ -# ||xigua110.com/a/ (easylistchina+easylist.txt: 5131) +# ||xigua110.com/a/ (easylistchina.txt: 5108) .xigua110.com/a/ -# ||xiazaiba.com/uploadfiles/ads/ (easylistchina+easylist.txt: 5130) +# ||xiazaiba.com/uploadfiles/ads/ (easylistchina.txt: 5107) .xiazaiba.com/uploadfiles/ads/ -# ||xiaopi.com/500/ (easylistchina+easylist.txt: 5129) +# ||xiaopi.com/500/ (easylistchina.txt: 5106) .xiaopi.com/500/ -# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina+easylist.txt: 5128) +# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina.txt: 5105) .xiaomengku.com/static/template/cms/v3/js/activity\.js -# ||xiaoliaolianmeng.com^$subdocument (easylistchina+easylist.txt: 5127) +# ||xiaoliaolianmeng.com^$subdocument (easylistchina.txt: 5104) .xiaoliaolianmeng.com -# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina+easylist.txt: 5126) +# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina.txt: 5103) .xiaoliaolianmeng.com/pic/weipinhui/ -# ||xiao235.com^$script (easylistchina+easylist.txt: 5125) -.xiao235.com -# ||xiangmucangku.com/uploads/allimg/ (easylistchina+easylist.txt: 5124) +# ||xiangmucangku.com/uploads/allimg/ (easylistchina.txt: 5102) .xiangmucangku.com/uploads/allimg/ -# ||xiangai365.com/ad_js/ (easylistchina+easylist.txt: 5123) +# ||xiangai365.com/ad_js/ (easylistchina.txt: 5101) .xiangai365.com/ad_js/ -# ||xiancn.com^*/adv_content/ (easylistchina+easylist.txt: 5122) +# ||xiancn.com^*/adv_content/ (easylistchina.txt: 5100) .xiancn.com/.*/adv_content/ -# ||xiami.com/player/iframe-adm? (easylistchina+easylist.txt: 5121) +# ||xiami.com/player/iframe-adm? (easylistchina.txt: 5099) .xiami.com/player/iframe-adm\? -# ||xiaav.me/twdsb/ (easylistchina+easylist.txt: 5120) -.xiaav.me/twdsb/ -# ||xhub.cn/tanchu.js (easylistchina+easylist.txt: 5119) +# ||xhub.cn/tanchu.js (easylistchina.txt: 5098) .xhub.cn/tanchu\.js -# ||xgrb.cn/newad/ (easylistchina+easylist.txt: 5118) +# ||xgrb.cn/newad/ (easylistchina.txt: 5097) .xgrb.cn/newad/ -# ||xghylt.com/newad/ (easylistchina+easylist.txt: 5117) +# ||xghylt.com/newad/ (easylistchina.txt: 5096) .xghylt.com/newad/ -# ||xghylt.com/api.php?mod=ad&adid= (easylistchina+easylist.txt: 5116) +# ||xghylt.com/api.php?mod=ad&adid= (easylistchina.txt: 5095) .xghylt.com/api\.php\?mod=ad&adid= -# ||xemh.com/other/*_ads (easylistchina+easylist.txt: 5115) +# ||xemh.com/other/*_ads (easylistchina.txt: 5094) .xemh.com/other/.*_ads -# ||xdowns.com/js/lefttuijian.js (easylistchina+easylist.txt: 5114) +# ||xdowns.com/js/lefttuijian.js (easylistchina.txt: 5093) .xdowns.com/js/lefttuijian\.js -# ||xdowns.com/info.js (easylistchina+easylist.txt: 5113) +# ||xdowns.com/info.js (easylistchina.txt: 5092) .xdowns.com/info\.js -# ||xdowns.com/ggco.js (easylistchina+easylist.txt: 5112) +# ||xdowns.com/ggco.js (easylistchina.txt: 5091) .xdowns.com/ggco\.js -# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina+easylist.txt: 5111) +# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina.txt: 5090) .xdkb.net/index/temp/3813\.files/banner\.jpg -# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina+easylist.txt: 5110) +# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina.txt: 5089) .xdjishu.com/_uploadfile/image/20150722/20150722164052_98036\.gif -# ||xdf.cn/v4/js/leyus/ (easylistchina+easylist.txt: 5109) +# ||xdf.cn/v4/js/leyus/ (easylistchina.txt: 5088) .xdf.cn/v4/js/leyus/ -# ||xdf.cn/v4/js/adm- (easylistchina+easylist.txt: 5108) +# ||xdf.cn/v4/js/adm- (easylistchina.txt: 5087) .xdf.cn/v4/js/adm- -# ||xdf.cn/v4/images/index/ads/ (easylistchina+easylist.txt: 5107) +# ||xdf.cn/v4/images/index/ads/ (easylistchina.txt: 5086) .xdf.cn/v4/images/index/ads/ -# ||xdcad.net/source/plugin/disad/disad.js (easylistchina+easylist.txt: 5106) +# ||xdcad.net/source/plugin/disad/disad.js (easylistchina.txt: 5085) .xdcad.net/source/plugin/disad/disad\.js -# ||xczhibo.com/xml/ (easylistchina+easylist.txt: 5105) +# ||xczhibo.com/xml/ (easylistchina.txt: 5084) .xczhibo.com/xml/ -# ||xc.macd.cn^ (easylistchina+easylist.txt: 5104) +# ||xc.macd.cn^ (easylistchina.txt: 5083) .xc.macd.cn -# ||xb2s.com:8080/mjq.js (easylistchina+easylist.txt: 5103) +# ||xb2s.com:8080/mjq.js (easylistchina.txt: 5082) .xb2s.com:8080/mjq\.js -# ||x.jd.com/static/js/cpc.js (easylistchina+easylist.txt: 5102) +# ||xav*.com/js/float.js (easylistchina.txt: 5081) +.xav*./.*\.com/js/float\.js +.xav*.com/js/float\.js +# ||xav*.com/attachment/Mon_ (easylistchina.txt: 5080) +.xav*./.*\.com/attachment/Mon_ +.xav*.com/attachment/Mon_ +# ||xav*.com/ad1/ (easylistchina.txt: 5079) +.xav*./.*\.com/ad1/ +.xav*.com/ad1/ +# ||x.jd.com/static/js/cpc.js (easylistchina.txt: 5078) .x.jd.com/static/js/cpc\.js -# ||x.jd.com/static/js/auto.js (easylistchina+easylist.txt: 5101) +# ||x.jd.com/static/js/auto.js (easylistchina.txt: 5077) .x.jd.com/static/js/auto\.js -# ||x.itiexue.net/html/$script (easylistchina+easylist.txt: 5100) +# ||x.itiexue.net/html/$script (easylistchina.txt: 5076) .x.itiexue.net/html/ -# ||wzbh.org/imgad/ (easylistchina+easylist.txt: 5099) +# ||wzbh.org/imgad/ (easylistchina.txt: 5075) .wzbh.org/imgad/ -# ||wyzu.cn/js/3.js (easylistchina+easylist.txt: 5098) +# ||wyzu.cn/js/3.js (easylistchina.txt: 5074) .wyzu.cn/js/3\.js -# ||wyh.tv/image/upload/ad/ (easylistchina+easylist.txt: 5097) +# ||wyh.tv/image/upload/ad/ (easylistchina.txt: 5073) .wyh.tv/image/upload/ad/ -# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina+easylist.txt: 5096) +# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina.txt: 5072) .wxrb.com/g/js/baidu\.cbjs\.m\.js -# ||wxdown.net/images/*.gif (easylistchina+easylist.txt: 5095) +# ||wxdown.net/images/*.gif (easylistchina.txt: 5071) .wxdown.net/images/.*\.gif -# ||wx.sina.com.cn/iframe/pdps/ (easylistchina+easylist.txt: 5094) +# ||wx.sina.com.cn/iframe/pdps/ (easylistchina.txt: 5070) .wx.sina.com.cn/iframe/pdps/ -# ||wx.56.com/youxitg/ (easylistchina+easylist.txt: 5093) +# ||wx.56.com/youxitg/ (easylistchina.txt: 5069) .wx.56.com/youxitg/ -# ||wwwcdn.kimiss.net/btn/ (easylistchina+easylist.txt: 5092) +# ||wwwcdn.kimiss.net/btn/ (easylistchina.txt: 5068) .wwwcdn.kimiss.net/btn/ -# ||www.111cn.net/pic/ (easylistchina+easylist.txt: 5090) +# ||www.111cn.net/pic/ (easylistchina.txt: 5066) .www.111cn.net/pic/ -# ||www-dnwx-com.anquanbao.cn/pic (easylistchina+easylist.txt: 5089) +# ||www-dnwx-com.anquanbao.cn/pic (easylistchina.txt: 5065) .www-dnwx-com.anquanbao.cn/pic -# ||wuyou.*/0000/banner.gif (easylistchina+easylist.txt: 5088) +# ||wuyou.*/0000/banner.gif (easylistchina.txt: 5064) .wuyou.*./(.*/)?0000/banner\.gif -# ||wuxi.cn/index.php?m=poster& (easylistchina+easylist.txt: 5087) +# ||wuxi.cn/index.php?m=poster& (easylistchina.txt: 5063) .wuxi.cn/index\.php\?m=poster& -# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina+easylist.txt: 5086) +# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina.txt: 5062) .wuseng.com/templets/default/statics/js/mm\.js -# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina+easylist.txt: 5085) +# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina.txt: 5061) .wumii.com/ext/widget/hot\.htm\?prefix=http://blog\.const\.net\.cn& -# ||wumii.cn/site_images/c/ (easylistchina+easylist.txt: 5084) +# ||wumii.cn/site_images/c/ (easylistchina.txt: 5060) .wumii.cn/site_images/c/ -# ||wuhan.net.cn/show.html (easylistchina+easylist.txt: 5083) +# ||wuhan.net.cn/show.html (easylistchina.txt: 5059) .wuhan.net.cn/show\.html -# ||wuhan.net.cn/guanggaojs/ (easylistchina+easylist.txt: 5082) +# ||wuhan.net.cn/guanggaojs/ (easylistchina.txt: 5058) .wuhan.net.cn/guanggaojs/ -# ||wudilong.com/ssb/include/js/php.js (easylistchina+easylist.txt: 5081) +# ||wudilong.com/ssb/include/js/php.js (easylistchina.txt: 5057) .wudilong.com/ssb/include/js/php\.js -# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina+easylist.txt: 5080) +# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina.txt: 5056) .wszhibo.com/xml/tvAdtext\.ashx -# ||wszhibo.com/Uploadfiles/*.gif (easylistchina+easylist.txt: 5079) +# ||wszhibo.com/Uploadfiles/*.gif (easylistchina.txt: 5055) .wszhibo.com/Uploadfiles/.*\.gif -# ||wpkg.org/my.js (easylistchina+easylist.txt: 5078) -.wpkg.org/my\.js -# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina+easylist.txt: 5077) +# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina.txt: 5054) .wpjam.qiniudn.com/wpjam/banner/.*g$ -# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina+easylist.txt: 5076) +# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina.txt: 5053) .woxiu.com/xapi/offsite_swf_more\.php\? -# ||woxiu.com/xapi/get_pre_config.php (easylistchina+easylist.txt: 5075) +# ||woxiu.com/xapi/get_pre_config.php (easylistchina.txt: 5052) .woxiu.com/xapi/get_pre_config\.php -# ||wowody.net/public/wowo/2345.html (easylistchina+easylist.txt: 5074) +# ||wowody.net/public/wowo/2345.html (easylistchina.txt: 5051) .wowody.net/public/wowo/2345\.html -# ||wowody.net/public/wowo/*play_ (easylistchina+easylist.txt: 5073) +# ||wowody.net/public/wowo/*play_ (easylistchina.txt: 5050) .wowody.net/public/wowo/.*play_ -# ||woshipm.com/wp-files/*qidian (easylistchina+easylist.txt: 5072) +# ||woshipm.com/wp-files/*qidian (easylistchina.txt: 5049) .woshipm.com/wp-files/.*qidian -# ||wo318.com/template/ (easylistchina+easylist.txt: 5071) +# ||wo318.com/template/ (easylistchina.txt: 5048) .wo318.com/template/ -# ||wo318.com/sjs/km/xixitv.js (easylistchina+easylist.txt: 5070) +# ||wo318.com/sjs/km/xixitv.js (easylistchina.txt: 5047) .wo318.com/sjs/km/xixitv\.js -# ||wo318.com/good/ (easylistchina+easylist.txt: 5069) +# ||wo318.com/good/ (easylistchina.txt: 5046) .wo318.com/good/ -# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina+easylist.txt: 5068) +# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina.txt: 5045) .wlnews.zjol.com.cn/wlrb/bbs/ -# ||wlnews.zjol.com.cn/bbs/ (easylistchina+easylist.txt: 5067) +# ||wlnews.zjol.com.cn/bbs/ (easylistchina.txt: 5044) .wlnews.zjol.com.cn/bbs/ -# ||wishdown.com/images/*.gif (easylistchina+easylist.txt: 5066) +# ||wishdown.com/images/*.gif (easylistchina.txt: 5043) .wishdown.com/images/.*\.gif -# ||winvvv.com^$subdocument (easylistchina+easylist.txt: 5065) +# ||winvvv.com^$subdocument (easylistchina.txt: 5042) .winvvv.com -# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina+easylist.txt: 5064) +# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina.txt: 5041) .winba.me/wp-content/uploads/2015/10/image\.jpg -# ||winba.me/wp-content/uploads/*/QQ% (easylistchina+easylist.txt: 5063) +# ||winba.me/wp-content/uploads/*/QQ% (easylistchina.txt: 5040) .winba.me/wp-content/uploads/.*/QQ% -# ||winba.me/wp-content/uploads/*/300x300. (easylistchina+easylist.txt: 5062) +# ||winba.me/wp-content/uploads/*/300x300. (easylistchina.txt: 5039) .winba.me/wp-content/uploads/.*/300x300\. -# ||whsfzx.com/jj/ (easylistchina+easylist.txt: 5061) +# ||whsfzx.com/jj/ (easylistchina.txt: 5038) .whsfzx.com/jj/ -# ||whsfzx.com/img/top.js (easylistchina+easylist.txt: 5060) +# ||whsfzx.com/img/top.js (easylistchina.txt: 5037) .whsfzx.com/img/top\.js -# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina+easylist.txt: 5059) +# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina.txt: 5036) .whqyw.com/file/upload/201408/01/09-41-45-92-1\.jpg -# ||wholehk.com/madads$subdocument (easylistchina+easylist.txt: 5058) +# ||wholehk.com/madads$subdocument (easylistchina.txt: 5035) .wholehk.com/madads -# ||whnews.cn/wh_public/dl/ (easylistchina+easylist.txt: 5057) +# ||whnews.cn/wh_public/dl/ (easylistchina.txt: 5034) .whnews.cn/wh_public/dl/ -# ||whnews.cn/news/data/*/pf.js (easylistchina+easylist.txt: 5056) +# ||whnews.cn/news/data/*/pf.js (easylistchina.txt: 5033) .whnews.cn/news/data/.*/pf\.js -# ||whinfo.net.cn/ad20 (easylistchina+easylist.txt: 5055) +# ||whinfo.net.cn/ad20 (easylistchina.txt: 5032) .whinfo.net.cn/ad20 -# ||wgun.net/data/yahoo_ad.html (easylistchina+easylist.txt: 5054) +# ||wgun.net/data/yahoo_ad.html (easylistchina.txt: 5031) .wgun.net/data/yahoo_ad\.html -# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina+easylist.txt: 5053) +# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina.txt: 5030) .wfcmw.cn/cmw_2015/ad/flash/ -# ||weste.net/js/showpagead.js (easylistchina+easylist.txt: 5052) +# ||weste.net/js/showpagead.js (easylistchina.txt: 5029) .weste.net/js/showpagead\.js -# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina+easylist.txt: 5051) +# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina.txt: 5028) .wenyoutai.com/template/comiis_xwyt/ads/ -# ||wenxuecity.com/service/ad/ (easylistchina+easylist.txt: 5050) +# ||wenxuecity.com/service/ad/ (easylistchina.txt: 5027) .wenxuecity.com/service/ad/ -# ||wenwo.com^*/js/common/adAudit. (easylistchina+easylist.txt: 5049) +# ||wenwo.com^*/js/common/adAudit. (easylistchina.txt: 5026) .wenwo.com/.*/js/common/adAudit\. -# ||wenku8.com/banner.jpg (easylistchina+easylist.txt: 5048) +# ||wenku8.com/banner.jpg (easylistchina.txt: 5025) .wenku8.com/banner\.jpg -# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina+easylist.txt: 5047) +# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina.txt: 5024) .wendu.cn/templates/wzdsb/js/yanue\.pop\.js -# ||wendellyu.com/banner/ (easylistchina+easylist.txt: 5046) +# ||wendellyu.com/banner/ (easylistchina.txt: 5023) .wendellyu.com/banner/ -# ||weixin.qqday.com/js/tj.js (easylistchina+easylist.txt: 5045) +# ||weixin.qqday.com/js/tj.js (easylistchina.txt: 5022) .weixin.qqday.com/js/tj\.js -# ||weixin.qqday.com/js/rb.js (easylistchina+easylist.txt: 5044) +# ||weixin.qqday.com/js/rb.js (easylistchina.txt: 5021) .weixin.qqday.com/js/rb\.js -# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina+easylist.txt: 5043) +# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina.txt: 5020) .weiqitv.com/Uploads/20140721/53cca3becc50b\.jpg -# ||weiqitv.com/Uploads/185_440_ (easylistchina+easylist.txt: 5042) +# ||weiqitv.com/Uploads/185_440_ (easylistchina.txt: 5019) .weiqitv.com/Uploads/185_440_ -# ||weiqitv.com/Public/img/kt.jpg (easylistchina+easylist.txt: 5041) +# ||weiqitv.com/Public/img/kt.jpg (easylistchina.txt: 5018) .weiqitv.com/Public/img/kt\.jpg -# ||weidea.net/wp-content/host_ads.png (easylistchina+easylist.txt: 5040) +# ||weidea.net/wp-content/host_ads.png (easylistchina.txt: 5017) .weidea.net/wp-content/host_ads\.png -# ||weidea.net/wp-content/ads_img/ (easylistchina+easylist.txt: 5039) +# ||weidea.net/wp-content/ads_img/ (easylistchina.txt: 5016) .weidea.net/wp-content/ads_img/ -# ||weibo.com/images/ad_ (easylistchina+easylist.txt: 5038) +# ||weibo.com/images/ad_ (easylistchina.txt: 5015) .weibo.com/images/ad_ -# ||wei2008.com/js/t_win (easylistchina+easylist.txt: 5037) +# ||wei2008.com/js/t_win (easylistchina.txt: 5014) .wei2008.com/js/t_win -# ||wei2008.com/js/list_gg.js (easylistchina+easylist.txt: 5036) +# ||wei2008.com/js/list_gg.js (easylistchina.txt: 5013) .wei2008.com/js/list_gg\.js -# ||wei2008.com/js/index_ (easylistchina+easylist.txt: 5035) +# ||wei2008.com/js/index_ (easylistchina.txt: 5012) .wei2008.com/js/index_ -# ||wei2008.com/js/img (easylistchina+easylist.txt: 5034) +# ||wei2008.com/js/img (easylistchina.txt: 5011) .wei2008.com/js/img -# ||wei2008.com/js/down (easylistchina+easylist.txt: 5033) +# ||wei2008.com/js/down (easylistchina.txt: 5010) .wei2008.com/js/down -# ||wei2008.com/js/copyright (easylistchina+easylist.txt: 5032) +# ||wei2008.com/js/copyright (easylistchina.txt: 5009) .wei2008.com/js/copyright -# ||wei2008.com/js/960X90 (easylistchina+easylist.txt: 5031) +# ||wei2008.com/js/960X90 (easylistchina.txt: 5008) .wei2008.com/js/960X90 -# ||wehefei.com/uploadfile/flashad/ (easylistchina+easylist.txt: 5030) +# ||wehefei.com/uploadfile/flashad/ (easylistchina.txt: 5007) .wehefei.com/uploadfile/flashad/ -# ||wehefei.com/htmlphp/tmall/ (easylistchina+easylist.txt: 5029) +# ||wehefei.com/htmlphp/tmall/ (easylistchina.txt: 5006) .wehefei.com/htmlphp/tmall/ -# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina+easylist.txt: 5028) +# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina.txt: 5005) .weeiy.com/wp-content/uploads/2013/12/2345ie\.jpg -# ||webkaka.com/script/duilian_ (easylistchina+easylist.txt: 5027) +# ||webkaka.com/script/duilian_ (easylistchina.txt: 5004) .webkaka.com/script/duilian_ -# ||webkaka.com*/click/$image (easylistchina+easylist.txt: 5026) +# ||webkaka.com*/click/$image (easylistchina.txt: 5003) .webkaka.com*./(.*/)?click/ -# ||webjx.com/zanzhushang/ (easylistchina+easylist.txt: 5025) +# ||webjx.com/zanzhushang/ (easylistchina.txt: 5002) .webjx.com/zanzhushang/ -# ||webacg.com/http/js/1.js (easylistchina+easylist.txt: 5024) +# ||webacg.com/http/js/1.js (easylistchina.txt: 5001) .webacg.com/http/js/1\.js -# ||webacg.com/data/js/ (easylistchina+easylist.txt: 5023) +# ||webacg.com/data/js/ (easylistchina.txt: 5000) .webacg.com/data/js/ -# ||web.900.la^ (easylistchina+easylist.txt: 5022) +# ||web.900.la^ (easylistchina.txt: 4999) .web.900.la -# ||weathercn.com/m_mobile/ad_image/ (easylistchina+easylist.txt: 5021) +# ||weathercn.com/m_mobile/ad_image/ (easylistchina.txt: 4998) .weathercn.com/m_mobile/ad_image/ -# ||we54.com/poster/ (easylistchina+easylist.txt: 5020) +# ||we54.com/poster/ (easylistchina.txt: 4997) .we54.com/poster/ -# ||we54.com/54index_ad/ (easylistchina+easylist.txt: 5019) +# ||we54.com/54index_ad/ (easylistchina.txt: 4996) .we54.com/54index_ad/ -# ||wdown.cn/falala/ (easylistchina+easylist.txt: 5018) +# ||wdown.cn/falala/ (easylistchina.txt: 4995) .wdown.cn/falala/ -# ||wdlm.cn/img/ad1/ (easylistchina+easylist.txt: 5017) +# ||wdlm.cn/img/ad1/ (easylistchina.txt: 4994) .wdlm.cn/img/ad1/ -# ||wd147.com/templets/mm/js/cs.js (easylistchina+easylist.txt: 5016) +# ||wd147.com/templets/mm/js/cs.js (easylistchina.txt: 4993) .wd147.com/templets/mm/js/cs\.js -# ||wbzol.com/show/images/show.htm (easylistchina+easylist.txt: 5015) +# ||wbzol.com/show/images/show.htm (easylistchina.txt: 4992) .wbzol.com/show/images/show\.htm -# ||wanwan.sina.com.cn/third_party/ (easylistchina+easylist.txt: 5014) +# ||wanwan.sina.com.cn/third_party/ (easylistchina.txt: 4991) .wanwan.sina.com.cn/third_party/ -# ||wannianli.com.cn/style/ad_ (easylistchina+easylist.txt: 5013) +# ||wannianli.com.cn/style/ad_ (easylistchina.txt: 4990) .wannianli.com.cn/style/ad_ -# ||wangyouxs.com/A/$script (easylistchina+easylist.txt: 5012) +# ||wangyouxs.com/A/$script (easylistchina.txt: 4989) .wangyouxs.com/A/ -# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina+easylist.txt: 5011) +# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina.txt: 4988) .wangpanwu.com/images/zhuolaoshigg\.gif -# ||wangpanwu.com/images/*guanggao (easylistchina+easylist.txt: 5010) +# ||wangpanwu.com/images/*guanggao (easylistchina.txt: 4987) .wangpanwu.com/images/.*guanggao -# ||wangjing.cn/upload/ftp/ad/ (easylistchina+easylist.txt: 5009) +# ||wangjing.cn/upload/ftp/ad/ (easylistchina.txt: 4986) .wangjing.cn/upload/ftp/ad/ -# ||wangjing.cn/images/js/YlFloat.js (easylistchina+easylist.txt: 5008) +# ||wangjing.cn/images/js/YlFloat.js (easylistchina.txt: 4985) .wangjing.cn/images/js/YlFloat\.js -# ||wangjing.cn/iframe/zhounian.php? (easylistchina+easylist.txt: 5007) +# ||wangjing.cn/iframe/zhounian.php? (easylistchina.txt: 4984) .wangjing.cn/iframe/zhounian\.php\? -# ||wangjing.cn*/upload/com/ (easylistchina+easylist.txt: 5006) +# ||wangjing.cn*/upload/com/ (easylistchina.txt: 4983) .wangjing.cn*./(.*/)?upload/com/ -# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina+easylist.txt: 5005) +# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina.txt: 4982) .wanghualang.com/wp-content/gallery/thumbnail/.*-ad\. -# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina+easylist.txt: 5004) +# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina.txt: 4981) .wanghualang.com/wp-content/gallery/resource/wp\.png -# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina+easylist.txt: 5003) +# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina.txt: 4980) .wanghualang.com/wp-content/gallery/resource/Aliyun- -# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina+easylist.txt: 5002) +# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina.txt: 4979) .wangdaizhijia.com/data/attachment/portal/ -# ||wan.sogou.com/static/fragment/ (easylistchina+easylist.txt: 5000) +# ||wan.sogou.com/static/fragment/ (easylistchina.txt: 4977) .wan.sogou.com/static/fragment/ -# ||wan.sogou.com/pop/ (easylistchina+easylist.txt: 4999) +# ||wan.sogou.com/pop/ (easylistchina.txt: 4976) .wan.sogou.com/pop/ -# ||wan.sogou.com/cdn/$subdocument (easylistchina+easylist.txt: 4998) +# ||wan.sogou.com/cdn/$subdocument (easylistchina.txt: 4975) .wan.sogou.com/cdn/ -# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina+easylist.txt: 4996) +# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina.txt: 4973) .wa.kuwo.cn/lyrics/img/kwgg/ -# ||w010w.com.cn^$subdocument (easylistchina+easylist.txt: 4995) +# ||w010w.com.cn^$subdocument (easylistchina.txt: 4972) .w010w.com.cn -# ||vvvdj.com/sms/ (easylistchina+easylist.txt: 4994) +# ||vvvdj.com/sms/ (easylistchina.txt: 4971) .vvvdj.com/sms/ -# ||vvshu.com/images/cp_ (easylistchina+easylist.txt: 4993) +# ||vvshu.com/images/cp_ (easylistchina.txt: 4970) .vvshu.com/images/cp_ -# ||vvpan.com^*/zsz (easylistchina+easylist.txt: 4992) +# ||vvpan.com^*/zsz (easylistchina.txt: 4969) .vvpan.com/.*/zsz -# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina+easylist.txt: 4991) +# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina.txt: 4968) .vvpan.com/templates/32666/imgs/down001\.gif -# ||vupload.duowan.com^ (easylistchina+easylist.txt: 4990) +# ||vupload.duowan.com^ (easylistchina.txt: 4967) .vupload.duowan.com -# ||vpser.b0.upaiyun.com^$image (easylistchina+easylist.txt: 4989) +# ||vpser.b0.upaiyun.com^$image (easylistchina.txt: 4966) .vpser.b0.upaiyun.com -# ||voc.com.cn/Frame/qqms_cs.html (easylistchina+easylist.txt: 4988) +# ||voc.com.cn/Frame/qqms_cs.html (easylistchina.txt: 4965) .voc.com.cn/Frame/qqms_cs\.html -# ||voc.com.cn/adsClick/ (easylistchina+easylist.txt: 4987) +# ||voc.com.cn/adsClick/ (easylistchina.txt: 4964) .voc.com.cn/adsClick/ -# ||vnet.cn^*.html (easylistchina+easylist.txt: 4986) +# ||vnet.cn^*.html (easylistchina.txt: 4963) .vnet.cn/.*\.html -# ||vkeke.net/public/agd (easylistchina+easylist.txt: 4985) +# ||vkeke.net/public/agd (easylistchina.txt: 4962) .vkeke.net/public/agd -# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina+easylist.txt: 4984) +# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina.txt: 4961) .vjie.com/templates/lieqi/js/_banner\.js -# ||vista.tuwan.com/s.js (easylistchina+easylist.txt: 4983) +# ||vista.tuwan.com/s.js (easylistchina.txt: 4960) .vista.tuwan.com/s\.js -# ||vista.tgbusdata.cn/s.js (easylistchina+easylist.txt: 4982) +# ||vista.tgbusdata.cn/s.js (easylistchina.txt: 4959) .vista.tgbusdata.cn/s\.js -# ||vista.tgbus.com/s.js (easylistchina+easylist.txt: 4981) +# ||vista.tgbus.com/s.js (easylistchina.txt: 4958) .vista.tgbus.com/s\.js -# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina+easylist.txt: 4980) +# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina.txt: 4957) .vista.tgbus.com/data\.ashx[^\w%.-].*_SINGLE_SETJSONADSLOT -# ||vipcn.com/images/jk500.gif (easylistchina+easylist.txt: 4979) +# ||visit-japan.jp/parts/visitjapan_f35_170_170.jpg (easylistchina.txt: 4956) +.visit-japan.jp/parts/visitjapan_f35_170_170\.jpg +# ||vipcn.com/images/jk500.gif (easylistchina.txt: 4955) .vipcn.com/images/jk500\.gif -# ||vipcn.com/images/cfdh*.gif (easylistchina+easylist.txt: 4978) +# ||vipcn.com/images/cfdh*.gif (easylistchina.txt: 4954) .vipcn.com/images/cfdh.*\.gif -# ||vipcn.com/hezuo/ (easylistchina+easylist.txt: 4977) +# ||vipcn.com/hezuo/ (easylistchina.txt: 4953) .vipcn.com/hezuo/ -# ||vip.luanren.com/data/*.swf (easylistchina+easylist.txt: 4976) +# ||vip.luanren.com/data/*.swf (easylistchina.txt: 4952) .vip.luanren.com/data/.*\.swf -# ||videowood.tv/popjavascript (easylistchina+easylist.txt: 4975) +# ||videowood.tv/popjavascript (easylistchina.txt: 4951) .videowood.tv/popjavascript -# ||videowood.me/assets/js/popup.js (easylistchina+easylist.txt: 4974) +# ||videowood.me/assets/js/popup.js (easylistchina.txt: 4950) .videowood.me/assets/js/popup\.js -# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina+easylist.txt: 4973) +# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina.txt: 4949) .videospeedy.com/Res/images/wuy0u\.jpg -# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina+easylist.txt: 4972) +# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4948) .video.sdo.com/index\.php\?m=poster&c=index&a=show_poster&id= -# ||vhiphop.qiniudn.com/cloth (easylistchina+easylist.txt: 4971) +# ||vhiphop.qiniudn.com/cloth (easylistchina.txt: 4947) .vhiphop.qiniudn.com/cloth -# ||vgugu.com/iframes/xp- (easylistchina+easylist.txt: 4970) +# ||vgugu.com/iframes/xp- (easylistchina.txt: 4946) .vgugu.com/iframes/xp- -# ||verypsp.com:8081/sy.jpg (easylistchina+easylist.txt: 4969) +# ||verypsp.com:8081/sy.jpg (easylistchina.txt: 4945) .verypsp.com:8081/sy\.jpg -# ||veryim.net^*/1111 (easylistchina+easylist.txt: 4968) +# ||veryim.net^*/1111 (easylistchina.txt: 4944) .veryim.net/.*/1111 -# ||veryhuo.com/plus/js/ (easylistchina+easylist.txt: 4967) +# ||veryhuo.com/plus/js/ (easylistchina.txt: 4943) .veryhuo.com/plus/js/ -# ||vdisk.cn/img/dcr2.gif (easylistchina+easylist.txt: 4966) +# ||vdisk.cn/img/dcr2.gif (easylistchina.txt: 4942) .vdisk.cn/img/dcr2\.gif -# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina+easylist.txt: 4965) +# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina.txt: 4941) .vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49\.gif -# ||vas.funshion.com^ (easylistchina+easylist.txt: 4964) +# ||vas.funshion.com^ (easylistchina.txt: 4940) .vas.funshion.com -# ||vansky.com/index_files/*.gif (easylistchina+easylist.txt: 4963) +# ||vansky.com/index_files/*.gif (easylistchina.txt: 4939) .vansky.com/index_files/.*\.gif -# ||vansky.com/images/goldenflat2.jpg (easylistchina+easylist.txt: 4962) +# ||vansky.com/images/goldenflat2.jpg (easylistchina.txt: 4938) .vansky.com/images/goldenflat2\.jpg -# ||vansky.com/images/banner.gif (easylistchina+easylist.txt: 4961) +# ||vansky.com/images/banner.gif (easylistchina.txt: 4937) .vansky.com/images/banner\.gif -# ||vanpeople.com/images_site/adb/ (easylistchina+easylist.txt: 4960) +# ||vanpeople.com/images_site/adb/ (easylistchina.txt: 4936) .vanpeople.com/images_site/adb/ -# ||vanpeople.com/ad$subdocument (easylistchina+easylist.txt: 4959) +# ||vanpeople.com/ad$subdocument (easylistchina.txt: 4935) .vanpeople.com/ad -# ||van698.com/api.php?mod=js&bid=369 (easylistchina+easylist.txt: 4958) +# ||van698.com/api.php?mod=js&bid=369 (easylistchina.txt: 4934) .van698.com/api\.php\?mod=js&bid=369 -# ||v8gay.com/apps/misc.php?action=advert& (easylistchina+easylist.txt: 4957) +# ||v8gay.com/apps/misc.php?action=advert& (easylistchina.txt: 4933) .v8gay.com/apps/misc\.php\?action=advert& -# ||v1.cn/cms/*/js/ad_new.js (easylistchina+easylist.txt: 4956) +# ||v1.cn/cms/*/js/ad_new.js (easylistchina.txt: 4932) .v1.cn/cms/.*/js/ad_new\.js -# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina+easylist.txt: 4955) +# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina.txt: 4931) .v.huanqiu.com/tres/xml/vda\.xml -# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina+easylist.txt: 4954) +# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina.txt: 4930) .v.beta.yinyuetai.com/swf/plugins_new\.xml\? -# ||v-56.com^ (easylistchina+easylist.txt: 4953) +# ||v-56.com^ (easylistchina.txt: 4929) .v-56.com -# ||uzzf.com/js/top_970.js (easylistchina+easylist.txt: 4952) +# ||uzzf.com/js/top_970.js (easylistchina.txt: 4928) .uzzf.com/js/top_970\.js -# ||uzzf.com/js/down_ (easylistchina+easylist.txt: 4951) +# ||uzzf.com/js/down_ (easylistchina.txt: 4927) .uzzf.com/js/down_ -# ||uzzf.com/js/all.js (easylistchina+easylist.txt: 4950) +# ||uzzf.com/js/all.js (easylistchina.txt: 4926) .uzzf.com/js/all\.js -# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina+easylist.txt: 4949) +# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina.txt: 4925) .uwants.com/dfp_forum\.php\?au=Uwants_Web_ -# ||uuu9.tieba.com^$subdocument (easylistchina+easylist.txt: 4948) +# ||uuu9.tieba.com^$subdocument (easylistchina.txt: 4924) .uuu9.tieba.com -# ||uuu9.com/yoyo_ (easylistchina+easylist.txt: 4947) +# ||uuu9.com/yoyo_ (easylistchina.txt: 4923) .uuu9.com/yoyo_ -# ||uuu9.com/stat/shouye/ (easylistchina+easylist.txt: 4946) +# ||uuu9.com/stat/shouye/ (easylistchina.txt: 4922) .uuu9.com/stat/shouye/ -# ||uuu9.com/news/css/news_content_in.js (easylistchina+easylist.txt: 4945) +# ||uuu9.com/news/css/news_content_in.js (easylistchina.txt: 4921) .uuu9.com/news/css/news_content_in\.js -# ||uuu9.com/360adtest/ (easylistchina+easylist.txt: 4943) +# ||uuu9.com/360adtest/ (easylistchina.txt: 4919) .uuu9.com/360adtest/ -# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina+easylist.txt: 4942) +# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina.txt: 4918) .uschinapress.com/2015/0115/1421375153170\.gif -# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina+easylist.txt: 4941) +# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina.txt: 4917) .uschinapress.com/2014/0922/1411428929105\.png -# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina+easylist.txt: 4940) +# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina.txt: 4916) .uschinapress.com/2014/0702/1404347291600\.gif -# ||upload.jjxw.cn^*.swf (easylistchina+easylist.txt: 4937) +# ||upload.jjxw.cn^*.swf (easylistchina.txt: 4913) .upload.jjxw.cn/.*\.swf -# ||upantool.com/playing/ (easylistchina+easylist.txt: 4935) +# ||upantool.com/playing/ (easylistchina.txt: 4911) .upantool.com/playing/ -# ||upan.so/templates/default/images/sir.gif (easylistchina+easylist.txt: 4934) +# ||upan.so/templates/default/images/sir.gif (easylistchina.txt: 4910) .upan.so/templates/default/images/sir\.gif -# ||upan.cc/images/pay/ (easylistchina+easylist.txt: 4933) +# ||upan.cc/images/pay/ (easylistchina.txt: 4909) .upan.cc/images/pay/ -# ||upaiyun.com/css88/*/728 (easylistchina+easylist.txt: 4932) +# ||upaiyun.com/css88/*/728 (easylistchina.txt: 4908) .upaiyun.com/css88/.*/728 -# ||upaiyun.com/css88/*/680 (easylistchina+easylist.txt: 4931) +# ||upaiyun.com/css88/*/680 (easylistchina.txt: 4907) .upaiyun.com/css88/.*/680 -# ||upaiyun.com/css88/*/250 (easylistchina+easylist.txt: 4930) +# ||upaiyun.com/css88/*/250 (easylistchina.txt: 4906) .upaiyun.com/css88/.*/250 -# ||upaiyun.com/css88/*/1008 (easylistchina+easylist.txt: 4929) +# ||upaiyun.com/css88/*/1008 (easylistchina.txt: 4905) .upaiyun.com/css88/.*/1008 -# ||up.qingdaonews.com/up/$object,script (easylistchina+easylist.txt: 4928) +# ||up.qingdaonews.com/up/$object,script (easylistchina.txt: 4904) .up.qingdaonews.com/up/ -# ||up.hiao.com^ (easylistchina+easylist.txt: 4927) +# ||up.hiao.com^ (easylistchina.txt: 4903) .up.hiao.com -# ||untitled.dwstatic.com^ (easylistchina+easylist.txt: 4926) +# ||untitled.dwstatic.com^ (easylistchina.txt: 4902) .untitled.dwstatic.com -# ||union.china.com.cn^ (easylistchina+easylist.txt: 4925) +# ||union.china.com.cn^ (easylistchina.txt: 4901) .union.china.com.cn -# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina+easylist.txt: 4924) +# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina.txt: 4900) .uisdc.com/wp-content/uploads/2013/08/sitestar -# ||uho.com.tw^$subdocument (easylistchina+easylist.txt: 4923) +# ||uho.com.tw^$subdocument (easylistchina.txt: 4899) .uho.com.tw -# ||uho.com.tw/kid-ad/ (easylistchina+easylist.txt: 4922) +# ||uho.com.tw/kid-ad/ (easylistchina.txt: 4898) .uho.com.tw/kid-ad/ -# ||uho.com.tw/images/rosewater.jpg (easylistchina+easylist.txt: 4921) +# ||uho.com.tw/images/rosewater.jpg (easylistchina.txt: 4897) .uho.com.tw/images/rosewater\.jpg -# ||uedfa.net/Static/imgs/affiliate/ (easylistchina+easylist.txt: 4920) +# ||uedfa.net/Static/imgs/affiliate/ (easylistchina.txt: 4896) .uedfa.net/Static/imgs/affiliate/ -# ||udn.com^*/ad/ (easylistchina+easylist.txt: 4919) +# ||udn.com^*/ad/ (easylistchina.txt: 4895) .udn.com/.*/ad/ -# ||udn.com/SSI/neckFrame (easylistchina+easylist.txt: 4918) +# ||udn.com/SSI/neckFrame (easylistchina.txt: 4894) .udn.com/SSI/neckFrame -# ||udn.com/common/iframe/ (easylistchina+easylist.txt: 4917) +# ||udn.com/common/iframe/ (easylistchina.txt: 4893) .udn.com/common/iframe/ -# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina+easylist.txt: 4916) +# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina.txt: 4892) .udn.com/2010MAIN/inc/t03-CMS\.html -# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina+easylist.txt: 4915) +# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina.txt: 4891) .udn.com.tw/upf/2014_sales/travel/cheesead\.html -# ||ucbug.com/templets/default/js/sharp.js (easylistchina+easylist.txt: 4914) +# ||ucbug.com/templets/default/js/sharp.js (easylistchina.txt: 4890) .ucbug.com/templets/default/js/sharp\.js -# ||ucbug.com/js/tongl.js (easylistchina+easylist.txt: 4913) +# ||ucbug.com/js/tongl.js (easylistchina.txt: 4889) .ucbug.com/js/tongl\.js -# ||ucbug.com/js/tlys.js (easylistchina+easylist.txt: 4912) +# ||ucbug.com/js/tlys.js (easylistchina.txt: 4888) .ucbug.com/js/tlys\.js -# ||ucbug.com/js/left.js (easylistchina+easylist.txt: 4911) +# ||ucbug.com/js/left.js (easylistchina.txt: 4887) .ucbug.com/js/left\.js -# ||uc8.cc/_style/2013/js/all.js (easylistchina+easylist.txt: 4910) +# ||uc8.cc/_style/2013/js/all.js (easylistchina.txt: 4886) .uc8.cc/_style/2013/js/all\.js -# ||u8xs.com/js/yuedu_ (easylistchina+easylist.txt: 4909) +# ||u8xs.com/js/yuedu_ (easylistchina.txt: 4885) .u8xs.com/js/yuedu_ -# ||u8xs.com/js/box_ (easylistchina+easylist.txt: 4908) +# ||u8xs.com/js/box_ (easylistchina.txt: 4884) .u8xs.com/js/box_ -# ||u148.net/images/sponsor- (easylistchina+easylist.txt: 4907) +# ||u148.net/images/sponsor- (easylistchina.txt: 4883) .u148.net/images/sponsor- -# ||u.riju.com/click.php (easylistchina+easylist.txt: 4906) +# ||u.riju.com/click.php (easylistchina.txt: 4882) .u.riju.com/click\.php -# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina+easylist.txt: 4905) +# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina.txt: 4881) .u.ctrip.com/showcaseadvertisementsit/ -# ||u.cnzol.com^ (easylistchina+easylist.txt: 4904) +# ||u.cnzol.com^ (easylistchina.txt: 4880) .u.cnzol.com -# ||u.63kc.com^ (easylistchina+easylist.txt: 4903) +# ||u.63kc.com^ (easylistchina.txt: 4879) .u.63kc.com -# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina+easylist.txt: 4902) +# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina.txt: 4878) .tzfdc.com/Images/09/flv/flv_index\.js -# ||tzfdc.com/fdcSell/ (easylistchina+easylist.txt: 4901) +# ||tzfdc.com/fdcSell/ (easylistchina.txt: 4877) .tzfdc.com/fdcSell/ -# ||tzfdc.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 4900) +# ||tzfdc.com.cn/userfiles/flash/ (easylistchina.txt: 4876) .tzfdc.com.cn/userfiles/flash/ -# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina+easylist.txt: 4899) +# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina.txt: 4875) .tyyhhdf.com/upload/1/148781/images/2015.*\.gif -# ||ty121.cn/IAA/ (easylistchina+easylist.txt: 4898) +# ||ty121.cn/IAA/ (easylistchina.txt: 4874) .ty121.cn/IAA/ -# ||txzqw.com/js/float.js (easylistchina+easylist.txt: 4897) +# ||txzqw.com/js/float.js (easylistchina.txt: 4873) .txzqw.com/js/float\.js -# ||txtyd.com/js/*box.js (easylistchina+easylist.txt: 4896) +# ||txtyd.com/js/*box.js (easylistchina.txt: 4872) .txtyd.com/js/.*box\.js -# ||txtbbs.com/data/txtbbs/ (easylistchina+easylist.txt: 4895) +# ||txtbbs.com/data/txtbbs/ (easylistchina.txt: 4871) .txtbbs.com/data/txtbbs/ -# ||txooo.com^*/zdl.jpg (easylistchina+easylist.txt: 4894) +# ||txooo.com^*/zdl.jpg (easylistchina.txt: 4870) .txooo.com/.*/zdl\.jpg -# ||txooo.com^*/ydl.jpg (easylistchina+easylist.txt: 4893) +# ||txooo.com^*/ydl.jpg (easylistchina.txt: 4869) .txooo.com/.*/ydl\.jpg -# ||txahz.com/static/image/tp/ (easylistchina+easylist.txt: 4892) +# ||txahz.com/static/image/tp/ (easylistchina.txt: 4868) .txahz.com/static/image/tp/ -# ||twunbbs.com/images/ (easylistchina+easylist.txt: 4891) +# ||twunbbs.com/images/ (easylistchina.txt: 4867) .twunbbs.com/images/ -# ||twfuwu.info^*.gif (easylistchina+easylist.txt: 4890) +# ||twfuwu.info^*.gif (easylistchina.txt: 4866) .twfuwu.info/.*\.gif -# ||twavtv.com/js/jquery.colorbox (easylistchina+easylist.txt: 4889) +# ||twavtv.com/js/jquery.colorbox (easylistchina.txt: 4865) .twavtv.com/js/jquery\.colorbox -# ||tw.buy.yahoo.com/?z= (easylistchina+easylist.txt: 4887) +# ||tw.buy.yahoo.com/?z= (easylistchina.txt: 4863) .tw.buy.yahoo.com/\?z= -# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina+easylist.txt: 4886) +# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina.txt: 4862) .tw.beanfun.com/bfweb/NEW/commonlogin -# ||tvnmg.com/banner/ (easylistchina+easylist.txt: 4885) +# ||tvnmg.com/banner/ (easylistchina.txt: 4861) .tvnmg.com/banner/ -# ||tvf4.com^$subdocument (easylistchina+easylist.txt: 4884) +# ||tvf4.com^$subdocument (easylistchina.txt: 4860) .tvf4.com -# ||tvf4.com/1/mugua.js (easylistchina+easylist.txt: 4883) +# ||tvf4.com/1/mugua.js (easylistchina.txt: 4859) .tvf4.com/1/mugua\.js -# ||tv6080.com/qqt/ (easylistchina+easylist.txt: 4882) +# ||tv6080.com/qqt/ (easylistchina.txt: 4858) .tv6080.com/qqt/ -# ||tv6080.com/520/index.htm (easylistchina+easylist.txt: 4881) +# ||tv6080.com/520/index.htm (easylistchina.txt: 4857) .tv6080.com/520/index\.htm -# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina+easylist.txt: 4880) +# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina.txt: 4856) .tv380.com/ovp/ovp_home/.*/adi/ -# ||tuwan.com/templet/lol/temp/ (easylistchina+easylist.txt: 4879) +# ||tuwan.com/templet/lol/temp/ (easylistchina.txt: 4855) .tuwan.com/templet/lol/temp/ -# ||tui22.com/images/g.js (easylistchina+easylist.txt: 4877) +# ||tui22.com/images/g.js (easylistchina.txt: 4854) .tui22.com/images/g\.js -# ||tui22.com/images/dibu.js (easylistchina+easylist.txt: 4876) +# ||tui22.com/images/dibu.js (easylistchina.txt: 4853) .tui22.com/images/dibu\.js -# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina+easylist.txt: 4875) +# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina.txt: 4852) .tui18.com/source/plugin/yl_curtain/template/yl_curtain\. -# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina+easylist.txt: 4874) +# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina.txt: 4851) .tuhaoylw.com/upload/1/18591636/images/.*\.gif -# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina+easylist.txt: 4873) +# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina.txt: 4850) .tudouui.com/tspecial/assets/PauseContainer\.swf -# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina+easylist.txt: 4872) +# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4849) .tucao.tv/index\.php\?m=poster&c=index&a=show_poster&id= -# ||tucao.cc/index.php?m=poster& (easylistchina+easylist.txt: 4871) +# ||tucao.cc/index.php?m=poster& (easylistchina.txt: 4848) .tucao.cc/index\.php\?m=poster& -# ||tuan.cs090.com/gettuan.php? (easylistchina+easylist.txt: 4870) +# ||tuan.cs090.com/gettuan.php? (easylistchina.txt: 4847) .tuan.cs090.com/gettuan\.php\? -# ||ttxcpa.com/ttxcpa.gif (easylistchina+easylist.txt: 4869) -.ttxcpa.com/ttxcpa\.gif -# ||ttrar.com/js/ (easylistchina+easylist.txt: 4868) +# ||ttrar.com/js/ (easylistchina.txt: 4846) .ttrar.com/js/ -# ||ttkdex.com/ttkdweb/page/image/query (easylistchina+easylist.txt: 4867) +# ||ttkdex.com/ttkdweb/page/image/query (easylistchina.txt: 4845) .ttkdex.com/ttkdweb/page/image/query -# ||ttcy.com/style/image/gg_ (easylistchina+easylist.txt: 4866) +# ||ttcy.com/style/image/gg_ (easylistchina.txt: 4844) .ttcy.com/style/image/gg_ -# ||tt7z.com/js/ (easylistchina+easylist.txt: 4865) +# ||tt7z.com/js/ (easylistchina.txt: 4843) .tt7z.com/js/ -# ||tt1069.com/bbs/zgg_ (easylistchina+easylist.txt: 4864) +# ||tt1069.com/bbs/zgg_ (easylistchina.txt: 4842) .tt1069.com/bbs/zgg_ -# ||tt1069.com/bbs/ad$script,subdocument (easylistchina+easylist.txt: 4863) -.tt1069.com/bbs/ad -# ||ts.cn^*/site1/$object (easylistchina+easylist.txt: 4862) +# ||ts.cn^*/site1/$object (easylistchina.txt: 4841) .ts.cn/.*/site1/ -# ||tp.sgcn.com^ (easylistchina+easylist.txt: 4861) +# ||tp.sgcn.com^ (easylistchina.txt: 4840) .tp.sgcn.com -# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina+easylist.txt: 4860) +# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina.txt: 4839) .totuwo.com/wp-content/uploads/20.*\.gif -# ||totheglory.im/pic/ttg_ (easylistchina+easylist.txt: 4859) +# ||totheglory.im/pic/ttg_ (easylistchina.txt: 4838) .totheglory.im/pic/ttg_ -# ||totheglory.im/pic/ttg- (easylistchina+easylist.txt: 4858) +# ||totheglory.im/pic/ttg- (easylistchina.txt: 4837) .totheglory.im/pic/ttg- -# ||totheglory.im/pic/fangtuo.jpg (easylistchina+easylist.txt: 4857) +# ||totheglory.im/pic/fangtuo.jpg (easylistchina.txt: 4836) .totheglory.im/pic/fangtuo\.jpg -# ||tonnn.com/promotion2/*.js (easylistchina+easylist.txt: 4855) +# ||tonnn.com/promotion2/*.js (easylistchina.txt: 4834) .tonnn.com/promotion2/.*\.js -# ||tongzhuo100.com/img/jianzhi.gif (easylistchina+easylist.txt: 4854) +# ||tongzhuo100.com/img/jianzhi.gif (easylistchina.txt: 4833) .tongzhuo100.com/img/jianzhi\.gif -# ||tompda.com^$object (easylistchina+easylist.txt: 4853) +# ||tompda.com^$object (easylistchina.txt: 4832) .tompda.com -# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina+easylist.txt: 4852) +# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina.txt: 4831) .tompda.com/tupian/2013-03-15/300\.jpg -# ||tompda.com/images/2014/800*.gif (easylistchina+easylist.txt: 4851) +# ||tompda.com/images/2014/800*.gif (easylistchina.txt: 4830) .tompda.com/images/2014/800.*\.gif -# ||tompda.com/dev/bbsadv/ (easylistchina+easylist.txt: 4850) +# ||tompda.com/dev/bbsadv/ (easylistchina.txt: 4829) .tompda.com/dev/bbsadv/ -# ||tom.com/templets/tomwq/ad/ (easylistchina+easylist.txt: 4849) +# ||tom.com/templets/tomwq/ad/ (easylistchina.txt: 4828) .tom.com/templets/tomwq/ad/ -# ||tntdown.com/News/js/C_ (easylistchina+easylist.txt: 4848) +# ||toastoven.net/cdn/adx/ (easylistchina.txt: 4827) +.toastoven.net/cdn/adx/ +# ||tntdown.com/News/js/C_ (easylistchina.txt: 4826) .tntdown.com/News/js/C_ -# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina+easylist.txt: 4847) +# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina.txt: 4825) .tmbbs.com/data/attachment/portal/.*\.swf -# ||tk.504pk.com^ (easylistchina+easylist.txt: 4846) +# ||tk.504pk.com^ (easylistchina.txt: 4824) .tk.504pk.com -# ||tjzan.com/wxpic/asianyi.gif (easylistchina+easylist.txt: 4845) +# ||tjzan.com/wxpic/asianyi.gif (easylistchina.txt: 4823) .tjzan.com/wxpic/asianyi\.gif -# ||tingvoa.com/images/top_600_80.js (easylistchina+easylist.txt: 4843) +# ||tingvoa.com/images/top_600_80.js (easylistchina.txt: 4821) .tingvoa.com/images/top_600_80\.js -# ||tingvoa.com/images/*img.js (easylistchina+easylist.txt: 4842) +# ||tingvoa.com/images/*img.js (easylistchina.txt: 4820) .tingvoa.com/images/.*img\.js -# ||tingroom.com/tingroom/ad/ (easylistchina+easylist.txt: 4841) +# ||tingroom.com/tingroom/ad/ (easylistchina.txt: 4819) .tingroom.com/tingroom/ad/ -# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina+easylist.txt: 4840) +# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina.txt: 4818) .tingroom.com/skin/pt/images/tingroombanner\.gif -# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina+easylist.txt: 4839) +# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina.txt: 4817) .tingroom.com/skin/dy/images/enread\.jpg -# ||tingroom.com/skin/dy/images/2400200 (easylistchina+easylist.txt: 4838) +# ||tingroom.com/skin/dy/images/2400200 (easylistchina.txt: 4816) .tingroom.com/skin/dy/images/2400200 -# ||tingroom.com/skin/*/js/ad_ (easylistchina+easylist.txt: 4837) +# ||tingroom.com/skin/*/js/ad_ (easylistchina.txt: 4815) .tingroom.com/skin/.*/js/ad_ -# ||tingroom.com/images/z923.js (easylistchina+easylist.txt: 4836) +# ||tingroom.com/images/z923.js (easylistchina.txt: 4814) .tingroom.com/images/z923\.js -# ||tingroom.com/images/qsbdc.gif (easylistchina+easylist.txt: 4835) +# ||tingroom.com/images/qsbdc.gif (easylistchina.txt: 4813) .tingroom.com/images/qsbdc\.gif -# ||tingroom.com/images/hy*.js (easylistchina+easylist.txt: 4834) +# ||tingroom.com/images/hy*.js (easylistchina.txt: 4812) .tingroom.com/images/hy.*\.js -# ||tingroom.com/file/A*.js (easylistchina+easylist.txt: 4833) +# ||tingroom.com/file/A*.js (easylistchina.txt: 4811) .tingroom.com/file/A.*\.js -# ||tingchina.com/js/dp468 (easylistchina+easylist.txt: 4832) +# ||tingchina.com/js/dp468 (easylistchina.txt: 4810) .tingchina.com/js/dp468 -# ||tingchina.com/js/allad.js (easylistchina+easylist.txt: 4831) +# ||tingchina.com/js/allad.js (easylistchina.txt: 4809) .tingchina.com/js/allad\.js -# ||tingchina.com/js/990 (easylistchina+easylist.txt: 4830) +# ||tingchina.com/js/990 (easylistchina.txt: 4808) .tingchina.com/js/990 -# ||tingchina.com/js/760 (easylistchina+easylist.txt: 4829) +# ||tingchina.com/js/760 (easylistchina.txt: 4807) .tingchina.com/js/760 -# ||tingchina.com/js/*220- (easylistchina+easylist.txt: 4828) +# ||tingchina.com/js/*220- (easylistchina.txt: 4806) .tingchina.com/js/.*220- -# ||timedg.com/hfhtml/baiduad.html? (easylistchina+easylist.txt: 4827) +# ||timedg.com/hfhtml/baiduad.html? (easylistchina.txt: 4805) .timedg.com/hfhtml/baiduad\.html\? -# ||tigtag.com/ttad/ (easylistchina+easylist.txt: 4826) +# ||tigtag.com/ttad/ (easylistchina.txt: 4804) .tigtag.com/ttad/ -# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina+easylist.txt: 4825) +# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina.txt: 4803) .tigtag.com/styles/phpcms/js/tigtag/ads\.js -# ||tigtag.com/r/Adv/ (easylistchina+easylist.txt: 4824) +# ||tigtag.com/r/Adv/ (easylistchina.txt: 4802) .tigtag.com/r/Adv/ -# ||tigtag.com/images/pic1/ (easylistchina+easylist.txt: 4823) +# ||tigtag.com/images/pic1/ (easylistchina.txt: 4801) .tigtag.com/images/pic1/ -# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina+easylist.txt: 4822) +# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina.txt: 4800) .tigerbrokers.com/activity/quotation/cnbeta/ -# ||tiexue.net/tsetforiph/ (easylistchina+easylist.txt: 4821) +# ||tiexue.net/tsetforiph/ (easylistchina.txt: 4799) .tiexue.net/tsetforiph/ -# ||tiexue.net/test*.aspx (easylistchina+easylist.txt: 4820) +# ||tiexue.net/test*.aspx (easylistchina.txt: 4798) .tiexue.net/test.*\.aspx -# ||tiexue.net/domain-policy/ (easylistchina+easylist.txt: 4819) +# ||tiexue.net/post2gg/ (easylistchina.txt: 4797) +.tiexue.net/post2gg/ +# ||tiexue.net/domain-policy/ (easylistchina.txt: 4796) .tiexue.net/domain-policy/ -# ||tietuku.com/bd75a2d8aa0d4c86.jpg (easylistchina+easylist.txt: 4815) -.tietuku.com/bd75a2d8aa0d4c86\.jpg -# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina+easylist.txt: 4814) +# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina.txt: 4792) .tietuku.com/0bb9bfe57636dc55\.jpg -# ||tieba.baidu.com/f/urlcheck? (easylistchina+easylist.txt: 4813) +# ||tieba.baidu.com/f/urlcheck? (easylistchina.txt: 4791) .tieba.baidu.com/f/urlcheck\? -# ||tibet.news.cn/zhuye/images/wangqun (easylistchina+easylist.txt: 4812) +# ||tibet.news.cn/zhuye/images/wangqun (easylistchina.txt: 4790) .tibet.news.cn/zhuye/images/wangqun -# ||tianyaui.com/qy/adsame/ads.js (easylistchina+easylist.txt: 4811) +# ||tianyaui.com/qy/adsame/ads.js (easylistchina.txt: 4789) .tianyaui.com/qy/adsame/ads\.js -# ||tianyaui.com/gamify/broadcast/js/ (easylistchina+easylist.txt: 4810) +# ||tianyaui.com/gamify/broadcast/js/ (easylistchina.txt: 4788) .tianyaui.com/gamify/broadcast/js/ -# ||tianya.cn/images/ad950x90.jpg (easylistchina+easylist.txt: 4809) +# ||tianya.cn/images/ad950x90.jpg (easylistchina.txt: 4787) .tianya.cn/images/ad950x90\.jpg -# ||tiantiandy.com/ad-js/ (easylistchina+easylist.txt: 4808) +# ||tiantiandy.com/ad-js/ (easylistchina.txt: 4786) .tiantiandy.com/ad-js/ -# ||tiantian.tv/sda/$image (easylistchina+easylist.txt: 4807) +# ||tiantian.tv/sda/$image (easylistchina.txt: 4785) .tiantian.tv/sda/ -# ||tiantian.tv/js/banner.js (easylistchina+easylist.txt: 4806) +# ||tiantian.tv/js/banner.js (easylistchina.txt: 4784) .tiantian.tv/js/banner\.js -# ||tiantian.tv/api/autosda.php (easylistchina+easylist.txt: 4805) +# ||tiantian.tv/api/autosda.php (easylistchina.txt: 4783) .tiantian.tv/api/autosda\.php -# ||tiansin.com/wp-adsense/ (easylistchina+easylist.txt: 4804) +# ||tiansin.com/wp-adsense/ (easylistchina.txt: 4782) .tiansin.com/wp-adsense/ -# ||tianshui.com.cn/yb.html (easylistchina+easylist.txt: 4803) +# ||tianshui.com.cn/yb.html (easylistchina.txt: 4781) .tianshui.com.cn/yb\.html -# ||tianshui.com.cn/sd.swf (easylistchina+easylist.txt: 4802) +# ||tianshui.com.cn/sd.swf (easylistchina.txt: 4780) .tianshui.com.cn/sd\.swf -# ||tianshui.com.cn/Scripts/AC_ (easylistchina+easylist.txt: 4801) +# ||tianshui.com.cn/Scripts/AC_ (easylistchina.txt: 4779) .tianshui.com.cn/Scripts/AC_ -# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina+easylist.txt: 4800) +# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina.txt: 4778) .tianshui.com.cn/newimages/xhglj\.swf -# ||tianshui.com.cn/newbg.jpg (easylistchina+easylist.txt: 4799) +# ||tianshui.com.cn/newbg.jpg (easylistchina.txt: 4777) .tianshui.com.cn/newbg\.jpg -# ||tianshi2.com/images/ (easylistchina+easylist.txt: 4798) +# ||tianshi2.com/images/ (easylistchina.txt: 4776) .tianshi2.com/images/ -# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina+easylist.txt: 4797) +# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina.txt: 4775) .tianqi.com/templates/huoche/js/hcgg\.js -# ||tianqi.com/static/js/gg (easylistchina+easylist.txt: 4796) +# ||tianqi.com/static/js/gg (easylistchina.txt: 4774) .tianqi.com/static/js/gg -# ||tianqi.com/js/gg.js (easylistchina+easylist.txt: 4795) +# ||tianqi.com/js/gg.js (easylistchina.txt: 4773) .tianqi.com/js/gg\.js -# ||tianmu.com/js/qq.js (easylistchina+easylist.txt: 4794) +# ||tianmu.com/js/qq.js (easylistchina.txt: 4772) .tianmu.com/js/qq\.js -# ||tianmu.com/abbsd/ (easylistchina+easylist.txt: 4793) +# ||tianmu.com/abbsd/ (easylistchina.txt: 4771) .tianmu.com/abbsd/ -# ||tianjinwe.com/together/szbz/ (easylistchina+easylist.txt: 4792) +# ||tianjinwe.com/together/szbz/ (easylistchina.txt: 4770) .tianjinwe.com/together/szbz/ -# ||tianjinwe.com/images/qssx/ (easylistchina+easylist.txt: 4791) +# ||tianjinwe.com/images/qssx/ (easylistchina.txt: 4769) .tianjinwe.com/images/qssx/ -# ||tianjimedia.com/s?z= (easylistchina+easylist.txt: 4790) +# ||tianjimedia.com/s?z= (easylistchina.txt: 4768) .tianjimedia.com/s\?z= -# ||thisav.com/windowfiles/dhtmlwindow (easylistchina+easylist.txt: 4789) +# ||thisav.com/windowfiles/dhtmlwindow (easylistchina.txt: 4767) .thisav.com/windowfiles/dhtmlwindow -# ||thisav.com/js/popup.js (easylistchina+easylist.txt: 4788) -.thisav.com/js/popup\.js -# ||thisav.com/js/*float (easylistchina+easylist.txt: 4787) +# ||thisav.com/js/*float (easylistchina.txt: 4766) .thisav.com/js/.*float -# ||thethirdmedia.com/a1/*960x (easylistchina+easylist.txt: 4786) +# ||thethirdmedia.com/a1/*960x (easylistchina.txt: 4765) .thethirdmedia.com/a1/.*960x -# ||tgbus.com/sf/taobao/ (easylistchina+easylist.txt: 4785) +# ||tgbus.com/sf/taobao/ (easylistchina.txt: 4764) .tgbus.com/sf/taobao/ -# ||tgbus.com/search/article_endcontent_google.htm (easylistchina+easylist.txt: 4784) +# ||tgbus.com/search/article_endcontent_google.htm (easylistchina.txt: 4763) .tgbus.com/search/article_endcontent_google\.htm -# ||tg.delnapb.com^ (easylistchina+easylist.txt: 4783) +# ||tg.delnapb.com^ (easylistchina.txt: 4762) .tg.delnapb.com -# ||tfg2.com/images/upfile/AD/ (easylistchina+easylist.txt: 4782) +# ||tfg2.com/images/upfile/AD/ (easylistchina.txt: 4761) .tfg2.com/images/upfile/AD/ -# ||tf.360.cn^ (easylistchina+easylist.txt: 4781) +# ||tf.360.cn^ (easylistchina.txt: 4760) .tf.360.cn -# ||techweb.com.cn^*aliyun (easylistchina+easylist.txt: 4780) +# ||techweb.com.cn^*aliyun (easylistchina.txt: 4759) .techweb.com.cn/.*aliyun -# ||tcmap.com.cn/js/b_ (easylistchina+easylist.txt: 4779) +# ||tcmap.com.cn/js/b_ (easylistchina.txt: 4758) .tcmap.com.cn/js/b_ -# ||tc.cn/news/images/right.jpg (easylistchina+easylist.txt: 4778) +# ||tc.cn/news/images/right.jpg (easylistchina.txt: 4757) .tc.cn/news/images/right\.jpg -# ||tc.cn/news/images/h.jpg (easylistchina+easylist.txt: 4777) +# ||tc.cn/news/images/h.jpg (easylistchina.txt: 4756) .tc.cn/news/images/h\.jpg -# ||tc.cn/g/upload/ (easylistchina+easylist.txt: 4776) +# ||tc.cn/g/upload/ (easylistchina.txt: 4755) .tc.cn/g/upload/ -# ||tc.cn/g/dl.ashx? (easylistchina+easylist.txt: 4775) +# ||tc.cn/g/dl.ashx? (easylistchina.txt: 4754) .tc.cn/g/dl\.ashx\? -# ||tc.cn/ad123/ (easylistchina+easylist.txt: 4774) +# ||tc.cn/ad123/ (easylistchina.txt: 4753) .tc.cn/ad123/ -# ||tbib.org/kona/ (easylistchina+easylist.txt: 4773) -.tbib.org/kona/ -# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina+easylist.txt: 4772) +# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina.txt: 4752) .tbcdn.cn/mm/tanxssp-custom/sina_ -# ||tasteforlife.com.tw^$subdocument (easylistchina+easylist.txt: 4771) +# ||tasteforlife.com.tw^$subdocument (easylistchina.txt: 4751) .tasteforlife.com.tw -# ||taoyoudu.com/img/top.jpg (easylistchina+easylist.txt: 4770) +# ||taoyoudu.com/img/top.jpg (easylistchina.txt: 4750) .taoyoudu.com/img/top\.jpg -# ||taohuazu.tw/tool/ (easylistchina+easylist.txt: 4769) +# ||taohuazu.tw/tool/ (easylistchina.txt: 4749) .taohuazu.tw/tool/ -# ||taohuazu.net/6/*.gif (easylistchina+easylist.txt: 4768) -.taohuazu.net/6/.*\.gif -# ||taohua.me/tool/taohuazu.js (easylistchina+easylist.txt: 4767) +# ||taohua.me/tool/taohuazu.js (easylistchina.txt: 4748) .taohua.me/tool/taohuazu\.js -# ||taoguba.com.cn/js/tgbduilian (easylistchina+easylist.txt: 4766) +# ||taoguba.com.cn/js/tgbduilian (easylistchina.txt: 4747) .taoguba.com.cn/js/tgbduilian -# ||taoguba.com.cn/js/hezuo/ (easylistchina+easylist.txt: 4765) +# ||taoguba.com.cn/js/hezuo/ (easylistchina.txt: 4746) .taoguba.com.cn/js/hezuo/ -# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina+easylist.txt: 4764) +# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina.txt: 4745) .taoguba.com.cn/img/2015/08/26/oh5555jfx48p\.jpg -# ||taodake.com/taodake_img/Images/union/ (easylistchina+easylist.txt: 4763) +# ||taodake.com/taodake_img/Images/union/ (easylistchina.txt: 4744) .taodake.com/taodake_img/Images/union/ -# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina+easylist.txt: 4760) +# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina.txt: 4741) .taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450\.jpg_670x670\.jpg -# ||talkforex.com/data/attachment/portal/ (easylistchina+easylist.txt: 4758) +# ||talkforex.com/data/attachment/portal/ (easylistchina.txt: 4739) .talkforex.com/data/attachment/portal/ -# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina+easylist.txt: 4757) +# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina.txt: 4738) .taizhou.com.cn/.*/3890\.files/xchad\.jpg -# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina+easylist.txt: 4756) +# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina.txt: 4737) .taizhou.com.cn/52\.files/c1_20150423\.swf -# ||taizhou.com.cn/52.files/a*20 (easylistchina+easylist.txt: 4755) +# ||taizhou.com.cn/52.files/a*20 (easylistchina.txt: 4736) .taizhou.com.cn/52\.files/a.*20 -# ||taiwandaily.net/uploadimages% (easylistchina+easylist.txt: 4754) +# ||taiwandaily.net/uploadimages% (easylistchina.txt: 4735) .taiwandaily.net/uploadimages% -# ||taiwan.cn/images/tw_ad_ (easylistchina+easylist.txt: 4753) +# ||taiwan.cn/images/tw_ad_ (easylistchina.txt: 4734) .taiwan.cn/images/tw_ad_ -# ||taihe.net/js/ad (easylistchina+easylist.txt: 4752) +# ||taihe.net/js/ad (easylistchina.txt: 4733) .taihe.net/js/ad -# ||taihainet.com/biz/ (easylistchina+easylist.txt: 4751) +# ||taihainet.com/biz/ (easylistchina.txt: 4732) .taihainet.com/biz/ -# ||t259.net/js/click_showclose.js (easylistchina+easylist.txt: 4750) +# ||t259.net/js/click_showclose.js (easylistchina.txt: 4731) .t259.net/js/click_showclose\.js -# ||t259.net/images/*.gif (easylistchina+easylist.txt: 4749) +# ||t259.net/images/*.gif (easylistchina.txt: 4730) .t259.net/images/.*\.gif -# ||t.58xs.com/hot/ (easylistchina+easylist.txt: 4748) +# ||t.58xs.com/hot/ (easylistchina.txt: 4729) .t.58xs.com/hot/ -# ||sztaofang.com/out/Out_BBs.asp (easylistchina+easylist.txt: 4747) +# ||sztaofang.com/out/Out_BBs.asp (easylistchina.txt: 4728) .sztaofang.com/out/Out_BBs\.asp -# ||sznews.com/css/$script (easylistchina+easylist.txt: 4746) +# ||sznews.com/css/$script (easylistchina.txt: 4727) .sznews.com/css/ -# ||sznews.com/*.files/$image,object (easylistchina+easylist.txt: 4745) +# ||sznews.com/*.files/$image,object (easylistchina.txt: 4726) .sznews.com/.*\.files/ -# ||szhk.com/include/taobao (easylistchina+easylist.txt: 4744) +# ||szhk.com/include/taobao (easylistchina.txt: 4725) .szhk.com/include/taobao -# ||szhk.com/iframe/ (easylistchina+easylist.txt: 4743) +# ||szhk.com/iframe/ (easylistchina.txt: 4724) .szhk.com/iframe/ -# ||szhk.com/ads/ (easylistchina+easylist.txt: 4742) +# ||szhk.com/ads/ (easylistchina.txt: 4723) .szhk.com/ads/ -# ||szhk.com/565.jpg (easylistchina+easylist.txt: 4741) +# ||szhk.com/565.jpg (easylistchina.txt: 4722) .szhk.com/565\.jpg -# ||sz1001.net^*/soft_*.js (easylistchina+easylist.txt: 4740) +# ||sz1001.net^*/soft_*.js (easylistchina.txt: 4721) .sz1001.net/.*/soft_.*\.js -# ||sz1001.net/ab1/index*.js (easylistchina+easylist.txt: 4739) +# ||sz1001.net/ab1/index*.js (easylistchina.txt: 4720) .sz1001.net/ab1/index.*\.js -# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina+easylist.txt: 4738) +# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina.txt: 4719) .sz.zj.cn/info\.php\?fid= -# ||sz.zj.cn/2013-dh.asp (easylistchina+easylist.txt: 4737) +# ||sz.zj.cn/2013-dh.asp (easylistchina.txt: 4718) .sz.zj.cn/2013-dh\.asp -# ||synacast.com^ (easylistchina+easylist.txt: 4736) +# ||synacast.com^ (easylistchina.txt: 4717) .synacast.com -# ||sydneytoday.com/sponsor/ (easylistchina+easylist.txt: 4735) +# ||sydneytoday.com/sponsor/ (easylistchina.txt: 4716) .sydneytoday.com/sponsor/ -# ||syd.com.cn/pic_index/lalian (easylistchina+easylist.txt: 4734) +# ||syd.com.cn/pic_index/lalian (easylistchina.txt: 4715) .syd.com.cn/pic_index/lalian -# ||syd.com.cn/pic_index/duilian (easylistchina+easylist.txt: 4733) +# ||syd.com.cn/pic_index/duilian (easylistchina.txt: 4714) .syd.com.cn/pic_index/duilian -# ||sy.ln.cn/08gg/ (easylistchina+easylist.txt: 4732) +# ||sy.ln.cn/08gg/ (easylistchina.txt: 4713) .sy.ln.cn/08gg/ -# ||sxrom.com/images/zz.jpg (easylistchina+easylist.txt: 4731) +# ||sxrom.com/images/zz.jpg (easylistchina.txt: 4712) .sxrom.com/images/zz\.jpg -# ||sxrom.com/images/download/top (easylistchina+easylist.txt: 4730) +# ||sxrom.com/images/download/top (easylistchina.txt: 4711) .sxrom.com/images/download/top -# ||sxrom.com/images/9.js (easylistchina+easylist.txt: 4729) +# ||sxrom.com/images/9.js (easylistchina.txt: 4710) .sxrom.com/images/9\.js -# ||sxrom.com/images/79.gif (easylistchina+easylist.txt: 4728) +# ||sxrom.com/images/79.gif (easylistchina.txt: 4709) .sxrom.com/images/79\.gif -# ||sxrb.com/upload/js/xww_ (easylistchina+easylist.txt: 4727) +# ||sxrb.com/upload/js/xww_ (easylistchina.txt: 4708) .sxrb.com/upload/js/xww_ -# ||sx566.com^*/zsz (easylistchina+easylist.txt: 4726) +# ||sx566.com^*/zsz (easylistchina.txt: 4707) .sx566.com/.*/zsz -# ||sx566.com/ads/ (easylistchina+easylist.txt: 4725) +# ||sx566.com/ads/ (easylistchina.txt: 4706) .sx566.com/ads/ -# ||supfree.net/images/otop.js (easylistchina+easylist.txt: 4724) +# ||supfree.net/images/otop.js (easylistchina.txt: 4705) .supfree.net/images/otop\.js -# ||super.kdnet.net^ (easylistchina+easylist.txt: 4723) +# ||super.kdnet.net^ (easylistchina.txt: 4704) .super.kdnet.net -# ||super.cat898.com^ (easylistchina+easylist.txt: 4722) +# ||super.cat898.com^ (easylistchina.txt: 4703) .super.cat898.com -# ||suimeng.com/js/html/yuedu (easylistchina+easylist.txt: 4721) +# ||suimeng.com/js/html/yuedu (easylistchina.txt: 4702) .suimeng.com/js/html/yuedu -# ||sufile.com/jsa/ (easylistchina+easylist.txt: 4720) +# ||sufile.com/jsa/ (easylistchina.txt: 4701) .sufile.com/jsa/ -# ||sudupan.com^*.gif (easylistchina+easylist.txt: 4719) +# ||sudupan.com^*.gif (easylistchina.txt: 4700) .sudupan.com/.*\.gif -# ||sudupan.com/380.jpg (easylistchina+easylist.txt: 4718) +# ||sudupan.com/380.jpg (easylistchina.txt: 4699) .sudupan.com/380\.jpg -# ||sucaijiayuan.com/uploads/ad/ (easylistchina+easylist.txt: 4717) +# ||sucaijiayuan.com/uploads/ad/ (easylistchina.txt: 4698) .sucaijiayuan.com/uploads/ad/ -# ||sub.powerapple.com^ (easylistchina+easylist.txt: 4716) +# ||sub.powerapple.com^ (easylistchina.txt: 4697) .sub.powerapple.com -# ||su.bdimg.com/static/dspui/js/ (easylistchina+easylist.txt: 4715) +# ||su.bdimg.com/static/dspui/js/ (easylistchina.txt: 4696) .su.bdimg.com/static/dspui/js/ -# ||strtv.cn/publicimg/sitelink/ (easylistchina+easylist.txt: 4714) +# ||strtv.cn/publicimg/sitelink/ (easylistchina.txt: 4695) .strtv.cn/publicimg/sitelink/ -# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina+easylist.txt: 4713) +# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina.txt: 4694) .strip.taobaocdn.com/tfscom/ -# ||storm.mg/ad? (easylistchina+easylist.txt: 4712) +# ||storm.mg/ad? (easylistchina.txt: 4693) .storm.mg/ad\? -# ||storetorrent.org/static/js/best (easylistchina+easylist.txt: 4711) +# ||storetorrent.org/static/js/best (easylistchina.txt: 4692) .storetorrent.org/static/js/best -# ||storetorrent.org/static/best/795X60.gif (easylistchina+easylist.txt: 4710) +# ||storetorrent.org/static/best/795X60.gif (easylistchina.txt: 4691) .storetorrent.org/static/best/795X60\.gif -# ||stockstar.com/*DUILIAN&t= (easylistchina+easylist.txt: 4709) +# ||stockstar.com/*DUILIAN&t= (easylistchina.txt: 4690) .stockstar.com/.*DUILIAN&t= -# ||sto.cn*/temp/adv.jpg (easylistchina+easylist.txt: 4708) +# ||sto.cn*/temp/adv.jpg (easylistchina.txt: 4689) .sto.cn*./(.*/)?temp/adv\.jpg -# ||stnn.cc/images/xy/yy.swf (easylistchina+easylist.txt: 4707) +# ||stnn.cc/images/xy/yy.swf (easylistchina.txt: 4688) .stnn.cc/images/xy/yy\.swf -# ||stnn.cc/images/xy/y0*.jpg (easylistchina+easylist.txt: 4706) +# ||stnn.cc/images/xy/y0*.jpg (easylistchina.txt: 4687) .stnn.cc/images/xy/y0.*\.jpg -# ||stnn.cc/images/xy/640_100/ (easylistchina+easylist.txt: 4705) +# ||stnn.cc/images/xy/640_100/ (easylistchina.txt: 4686) .stnn.cc/images/xy/640_100/ -# ||stnn.cc/images/xy/300$subdocument (easylistchina+easylist.txt: 4704) +# ||stnn.cc/images/xy/300$subdocument (easylistchina.txt: 4685) .stnn.cc/images/xy/300 -# ||stnn.cc/images/xy/*x80$image,object (easylistchina+easylist.txt: 4703) +# ||stnn.cc/images/xy/*x80$image,object (easylistchina.txt: 4684) .stnn.cc/images/xy/.*x80 -# ||stnn.cc/images/xy/*80px (easylistchina+easylist.txt: 4702) +# ||stnn.cc/images/xy/*80px (easylistchina.txt: 4683) .stnn.cc/images/xy/.*80px -# ||stheadline.com^*/right_promo.js (easylistchina+easylist.txt: 4701) +# ||stheadline.com^*/right_promo.js (easylistchina.txt: 4682) .stheadline.com/.*/right_promo\.js -# ||stheadline.com/*banner$script (easylistchina+easylist.txt: 4700) +# ||stheadline.com/*banner$script (easylistchina.txt: 4681) .stheadline.com/.*banner -# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina+easylist.txt: 4699) +# ||steamcn.com/img/lancai_ (easylistchina.txt: 4680) +.steamcn.com/img/lancai_ +# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina.txt: 4679) .steachs.com/wp-content/uploads/2015/12/nippon\.gif -# ||stcn.com/common/flash/aigu.swf (easylistchina+easylist.txt: 4698) +# ||stcn.com/common/flash/aigu.swf (easylistchina.txt: 4678) .stcn.com/common/flash/aigu\.swf -# ||stats.chinaz.com/tool_img/ (easylistchina+easylist.txt: 4697) +# ||stats.chinaz.com/tool_img/ (easylistchina.txt: 4677) .stats.chinaz.com/tool_img/ -# ||stats.chinaz.com/tool/ (easylistchina+easylist.txt: 4696) +# ||stats.chinaz.com/tool/ (easylistchina.txt: 4676) .stats.chinaz.com/tool/ -# ||static.zongheng.com^*/index_r_b.js (easylistchina+easylist.txt: 4695) +# ||static.zongheng.com^*/index_r_b.js (easylistchina.txt: 4675) .static.zongheng.com/.*/index_r_b\.js -# ||static.zongheng.com/upload/zhds/ (easylistchina+easylist.txt: 4694) +# ||static.zongheng.com/upload/zhds/ (easylistchina.txt: 4674) .static.zongheng.com/upload/zhds/ -# ||static.zongheng.com/upload/hzds/ (easylistchina+easylist.txt: 4693) +# ||static.zongheng.com/upload/hzds/ (easylistchina.txt: 4673) .static.zongheng.com/upload/hzds/ -# ||static.zongheng.com/upload/ad/ (easylistchina+easylist.txt: 4692) +# ||static.zongheng.com/upload/ad/ (easylistchina.txt: 4672) .static.zongheng.com/upload/ad/ -# ||static.yujiehenaishang.com^ (easylistchina+easylist.txt: 4691) -.static.yujiehenaishang.com -# ||static.wenxiu.com/js/top.js (easylistchina+easylist.txt: 4690) +# ||static.wenxiu.com/js/top.js (easylistchina.txt: 4671) .static.wenxiu.com/js/top\.js -# ||static.tianyaui.com^*/stat_20080313.js (easylistchina+easylist.txt: 4689) +# ||static.tianyaui.com^*/stat_20080313.js (easylistchina.txt: 4670) .static.tianyaui.com/.*/stat_20080313\.js -# ||static.imanke.com/imanke/pigbbs.js (easylistchina+easylist.txt: 4688) +# ||static.imanke.com/imanke/pigbbs.js (easylistchina.txt: 4669) .static.imanke.com/imanke/pigbbs\.js -# ||static.imanke.com/imanke/m/ (easylistchina+easylist.txt: 4687) +# ||static.imanke.com/imanke/m/ (easylistchina.txt: 4668) .static.imanke.com/imanke/m/ -# ||static.fzdm.com/top (easylistchina+easylist.txt: 4686) +# ||static.fzdm.com/top (easylistchina.txt: 4667) .static.fzdm.com/top -# ||static.fzdm.com/ispop.js (easylistchina+easylist.txt: 4685) +# ||static.fzdm.com/ispop.js (easylistchina.txt: 4666) .static.fzdm.com/ispop\.js -# ||static.fzdm.com/foot (easylistchina+easylist.txt: 4684) +# ||static.fzdm.com/foot (easylistchina.txt: 4665) .static.fzdm.com/foot -# ||static.doyouhike.net/partner/ (easylistchina+easylist.txt: 4683) +# ||static.doyouhike.net/partner/ (easylistchina.txt: 4664) .static.doyouhike.net/partner/ -# ||static.d.lecai.com/js/*m.js (easylistchina+easylist.txt: 4682) +# ||static.d.lecai.com/js/*m.js (easylistchina.txt: 4663) .static.d.lecai.com/js/.*m\.js -# ||static.colayun.com/images/vip.png (easylistchina+easylist.txt: 4681) +# ||static.colayun.com/images/vip.png (easylistchina.txt: 4662) .static.colayun.com/images/vip\.png -# ||static.coladrive.com/images/vip.png (easylistchina+easylist.txt: 4680) +# ||static.coladrive.com/images/vip.png (easylistchina.txt: 4661) .static.coladrive.com/images/vip\.png -# ||static.cnbetacdn.com/320-50.jpg (easylistchina+easylist.txt: 4679) -.static.cnbetacdn.com/320-50\.jpg -# ||static.aizhan.com/jsa/ (easylistchina+easylist.txt: 4678) +# ||static.aizhan.com/jsa/ (easylistchina.txt: 4660) .static.aizhan.com/jsa/ -# ||starnnews.com/banner/ (easylistchina+easylist.txt: 4677) +# ||starnnews.com/banner/ (easylistchina.txt: 4659) .starnnews.com/banner/ -# ||starbaby.cn/bookconnector/ (easylistchina+easylist.txt: 4676) +# ||starbaby.cn/bookconnector/ (easylistchina.txt: 4658) .starbaby.cn/bookconnector/ -# ||starbaby.cn/adconnector/ (easylistchina+easylist.txt: 4675) +# ||starbaby.cn/adconnector/ (easylistchina.txt: 4657) .starbaby.cn/adconnector/ -# ||ssnn.net^*-200-250.jpg (easylistchina+easylist.txt: 4674) +# ||ssnn.net^*-200-250.jpg (easylistchina.txt: 4656) .ssnn.net/.*-200-250\.jpg -# ||srzc.com^*/zwfjs/ (easylistchina+easylist.txt: 4673) +# ||srzc.com^*/zwfjs/ (easylistchina.txt: 4655) .srzc.com/.*/zwfjs/ -# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina+easylist.txt: 4672) +# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina.txt: 4654) .srzc.com/templets/srxw/img/000ad\.jpg -# ||srzc.com/js/gelao/ (easylistchina+easylist.txt: 4671) +# ||srzc.com/js/gelao/ (easylistchina.txt: 4653) .srzc.com/js/gelao/ -# ||srzc.com/js/Adsjs/ (easylistchina+easylist.txt: 4670) +# ||srzc.com/js/Adsjs/ (easylistchina.txt: 4652) .srzc.com/js/Adsjs/ -# ||srzc.com/images/*.swf (easylistchina+easylist.txt: 4669) +# ||srzc.com/images/*.swf (easylistchina.txt: 4651) .srzc.com/images/.*\.swf -# ||sportsv.net/dist/ads/ (easylistchina+easylist.txt: 4667) +# ||sportsv.net/dist/ads/ (easylistchina.txt: 4649) .sportsv.net/dist/ads/ -# ||spn.com.cn/media/jackmm.js (easylistchina+easylist.txt: 4666) +# ||spn.com.cn/media/jackmm.js (easylistchina.txt: 4648) .spn.com.cn/media/jackmm\.js -# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina+easylist.txt: 4665) +# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina.txt: 4647) .spn.com.cn/admin_new/imgs/b2\.jpg -# ||spbonow.com/UploadFiles/20$image (easylistchina+easylist.txt: 4664) +# ||spbonow.com/UploadFiles/20$image (easylistchina.txt: 4646) .spbonow.com/UploadFiles/20 -# ||spbonow.com/js/float.js (easylistchina+easylist.txt: 4663) +# ||spbonow.com/js/float.js (easylistchina.txt: 4645) .spbonow.com/js/float\.js -# ||spbonow.com/images/fyt.gif (easylistchina+easylist.txt: 4662) +# ||spbonow.com/images/fyt.gif (easylistchina.txt: 4644) .spbonow.com/images/fyt\.gif -# ||sozi.cn/templets/sozi/js/js.js (easylistchina+easylist.txt: 4661) +# ||sozi.cn/templets/sozi/js/js.js (easylistchina.txt: 4643) .sozi.cn/templets/sozi/js/js\.js -# ||soxia.cc/img/baoyue*.gif (easylistchina+easylist.txt: 4660) +# ||soxia.cc/img/baoyue*.gif (easylistchina.txt: 4642) .soxia.cc/img/baoyue.*\.gif -# ||southmoney.com/page/top (easylistchina+easylist.txt: 4659) +# ||southmoney.com/page/top (easylistchina.txt: 4641) .southmoney.com/page/top -# ||southmoney.com/page/inc/ (easylistchina+easylist.txt: 4658) +# ||southmoney.com/page/inc/ (easylistchina.txt: 4640) .southmoney.com/page/inc/ -# ||source.qunar.com/site/images/wns/ (easylistchina+easylist.txt: 4657) +# ||source.qunar.com/site/images/wns/ (easylistchina.txt: 4639) .source.qunar.com/site/images/wns/ -# ||soso.com/baike/js/ad_ (easylistchina+easylist.txt: 4656) +# ||soso.com/baike/js/ad_ (easylistchina.txt: 4638) .soso.com/baike/js/ad_ -# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina+easylist.txt: 4655) +# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina.txt: 4637) .sootoo.com/son_media/msg/2010/11/16/30324\.jpg -# ||sooopu.com/js/contentad330.js (easylistchina+easylist.txt: 4654) +# ||sooopu.com/js/contentad330.js (easylistchina.txt: 4636) .sooopu.com/js/contentad330\.js -# ||sooopu.com/js/*950.js (easylistchina+easylist.txt: 4653) +# ||sooopu.com/js/*950.js (easylistchina.txt: 4635) .sooopu.com/js/.*950\.js -# ||sooopu.com/images/web/cg328/cg.js (easylistchina+easylist.txt: 4652) +# ||sooopu.com/images/web/cg328/cg.js (easylistchina.txt: 4634) .sooopu.com/images/web/cg328/cg\.js -# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina+easylist.txt: 4651) +# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina.txt: 4632) .sohu.com/interaction/get/getListByVidForVrs\.do\? -# ||sohu.com/adgtr/ (easylistchina+easylist.txt: 4650) +# ||sohu.com/adgtr/ (easylistchina.txt: 4631) .sohu.com/adgtr/ -# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina+easylist.txt: 4649) +# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina.txt: 4630) .sohu.com.cn/ppp/bms/bms\.popup\. -# ||sogou.com/skins/images/skinlist_ad. (easylistchina+easylist.txt: 4648) +# ||sogou.com/skins/images/skinlist_ad. (easylistchina.txt: 4629) .sogou.com/skins/images/skinlist_ad\. -# ||sogou.com/images/galaxy.jpg (easylistchina+easylist.txt: 4647) +# ||sogou.com/images/galaxy.jpg (easylistchina.txt: 4628) .sogou.com/images/galaxy\.jpg -# ||softhy.net/hp/ (easylistchina+easylist.txt: 4646) +# ||softhy.net/hp/ (easylistchina.txt: 4627) .softhy.net/hp/ -# ||soft711.com/2013/ (easylistchina+easylist.txt: 4645) +# ||soft711.com/2013/ (easylistchina.txt: 4626) .soft711.com/2013/ -# ||soft.mumayi.net/js/ (easylistchina+easylist.txt: 4644) +# ||soft.mumayi.net/js/ (easylistchina.txt: 4625) .soft.mumayi.net/js/ -# ||soft.mumayi.net/images/download.gif (easylistchina+easylist.txt: 4643) +# ||soft.mumayi.net/images/download.gif (easylistchina.txt: 4624) .soft.mumayi.net/images/download\.gif -# ||soaspx.com/images/iiszj.gif (easylistchina+easylist.txt: 4642) +# ||soaspx.com/images/iiszj.gif (easylistchina.txt: 4623) .soaspx.com/images/iiszj\.gif -# ||soaspx.com/images/hws.gif (easylistchina+easylist.txt: 4641) +# ||soaspx.com/images/hws.gif (easylistchina.txt: 4622) .soaspx.com/images/hws\.gif -# ||so100.cn/images/newshead.htm (easylistchina+easylist.txt: 4640) +# ||so100.cn/images/newshead.htm (easylistchina.txt: 4621) .so100.cn/images/newshead\.htm -# ||so100.cn/images/a*.js (easylistchina+easylist.txt: 4639) +# ||so100.cn/images/a*.js (easylistchina.txt: 4620) .so100.cn/images/a.*\.js -# ||so.open.163.com/v/list.htm?pid= (easylistchina+easylist.txt: 4638) +# ||so.open.163.com/v/list.htm?pid= (easylistchina.txt: 4619) .so.open.163.com/v/list\.htm\?pid= -# ||so.6949.com^ (easylistchina+easylist.txt: 4637) +# ||so.6949.com^ (easylistchina.txt: 4618) .so.6949.com -# ||snybw.com/images/*-banner. (easylistchina+easylist.txt: 4636) +# ||snybw.com/images/*-banner. (easylistchina.txt: 4617) .snybw.com/images/.*-banner\. -# ||smzy.com^*970.js (easylistchina+easylist.txt: 4635) +# ||smzy.com^*970.js (easylistchina.txt: 4616) .smzy.com/.*970\.js -# ||smzy.com^*/webtg (easylistchina+easylist.txt: 4634) +# ||smzy.com^*/webtg (easylistchina.txt: 4615) .smzy.com/.*/webtg -# ||slit.cn/slgg/ (easylistchina+easylist.txt: 4633) +# ||slooti.com/upload/30/38/1446711674.gif (easylistchina.txt: 4614) +.slooti.com/upload/30/38/1446711674\.gif +# ||slit.cn/slgg/ (easylistchina.txt: 4613) .slit.cn/slgg/ -# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina+easylist.txt: 4632) +# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina.txt: 4612) .slit.cn/skin/slitsk/js/dlad\.js -# ||slit.cn/d/js/images/thea (easylistchina+easylist.txt: 4631) +# ||slit.cn/d/js/images/thea (easylistchina.txt: 4611) .slit.cn/d/js/images/thea -# ||skinme.cc/assets/images/banner_ (easylistchina+easylist.txt: 4630) +# ||skinme.cc/assets/images/banner_ (easylistchina.txt: 4610) .skinme.cc/assets/images/banner_ -# ||skinme.cc*/assets/images/*0.swf (easylistchina+easylist.txt: 4629) +# ||skinme.cc*/assets/images/*0.swf (easylistchina.txt: 4609) .skinme.cc*./(.*/)?assets/images/.*0\.swf -# ||skdh2.com/tp/ (easylistchina+easylist.txt: 4628) +# ||skdh2.com/tp/ (easylistchina.txt: 4608) .skdh2.com/tp/ -# ||skdh1.com/tp/ (easylistchina+easylist.txt: 4627) +# ||skdh1.com/tp/ (easylistchina.txt: 4607) .skdh1.com/tp/ -# ||skads.gxsky.com^$script (easylistchina+easylist.txt: 4626) +# ||skdh.net^*980 (easylistchina.txt: 4606) +.skdh.net/.*980 +# ||skdh.net/zuo.js (easylistchina.txt: 4605) +.skdh.net/zuo\.js +# ||skads.gxsky.com^$script (easylistchina.txt: 4604) .skads.gxsky.com -# ||sjzdaily.com.cn/sjznewsad/ (easylistchina+easylist.txt: 4625) +# ||sjzdaily.com.cn/sjznewsad/ (easylistchina.txt: 4603) .sjzdaily.com.cn/sjznewsad/ -# ||sjzbus.com.cn/advimg/ (easylistchina+easylist.txt: 4624) +# ||sjzbus.com.cn/advimg/ (easylistchina.txt: 4602) .sjzbus.com.cn/advimg/ -# ||sjyws.sjyws.com^*.gif (easylistchina+easylist.txt: 4623) +# ||sjyws.sjyws.com^*.gif (easylistchina.txt: 4601) .sjyws.sjyws.com/.*\.gif -# ||siyu88.net/g$subdocument (easylistchina+easylist.txt: 4622) +# ||siyu88.net/g$subdocument (easylistchina.txt: 4600) .siyu88.net/g -# ||siyu88.cn/xl/ (easylistchina+easylist.txt: 4621) +# ||siyu88.cn/xl/ (easylistchina.txt: 4599) .siyu88.cn/xl/ -# ||sisiww.com/yezicheng_ad/ (easylistchina+easylist.txt: 4620) +# ||sisiww.com/yezicheng_ad/ (easylistchina.txt: 4598) .sisiww.com/yezicheng_ad/ -# ||sisiww.com/6786526.gif (easylistchina+easylist.txt: 4619) +# ||sisiww.com/6786526.gif (easylistchina.txt: 4597) .sisiww.com/6786526\.gif -# ||sinolub.com/data/js/*.js (easylistchina+easylist.txt: 4618) +# ||sinolub.com/data/js/*.js (easylistchina.txt: 4596) .sinolub.com/data/js/.*\.js -# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina+easylist.txt: 4617) +# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina.txt: 4595) .sinajs.cn/t6/home/js/pl/guide/bigday/ -# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina+easylist.txt: 4616) +# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina.txt: 4594) .sinajs.cn/t6/home/js/pl/guide/adforfqy/ -# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina+easylist.txt: 4615) +# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina.txt: 4593) .sinajs.cn/t4/apps/publicity/static/wbad\.js -# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina+easylist.txt: 4614) +# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina.txt: 4592) .sinajs.cn/blog7style/images/activity/app_tuiguang/ -# ||sinaimg.cn^*/deco/$script (easylistchina+easylist.txt: 4613) +# ||sinaimg.cn^*/deco/$script (easylistchina.txt: 4591) .sinaimg.cn/.*/deco/ -# ||sinaimg.cn/unipro/ (easylistchina+easylist.txt: 4610) +# ||sinaimg.cn/unipro/ (easylistchina.txt: 4588) .sinaimg.cn/unipro/ -# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina+easylist.txt: 4609) +# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina.txt: 4587) .sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82\.gif -# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina+easylist.txt: 4608) +# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina.txt: 4586) .sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj\.jpg -# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina+easylist.txt: 4607) +# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina.txt: 4585) .sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn\.jpg -# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina+easylist.txt: 4606) +# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina.txt: 4584) .sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh\.jpg -# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina+easylist.txt: 4605) +# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina.txt: 4583) .sinaimg.cn/mw690/a6a976a2.*j207e02a -# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina+easylist.txt: 4604) +# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina.txt: 4582) .sinaimg.cn/mw690/a1916e89gw1dye4d74zmij\.jpg -# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina+easylist.txt: 4603) +# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina.txt: 4581) .sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj\.jpg -# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina+easylist.txt: 4602) +# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina.txt: 4580) .sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi\.jpg -# ||sinaimg.cn/mw690/60006c33jw9eir85o4mbsj206y05sgm4.jpg (easylistchina+easylist.txt: 4601) -.sinaimg.cn/mw690/60006c33jw9eir85o4mbsj206y05sgm4\.jpg -# ||sinaimg.cn/mw690/005GRsDJjw1eo1jledg4cj30b40b4go4.jpg (easylistchina+easylist.txt: 4600) -.sinaimg.cn/mw690/005GRsDJjw1eo1jledg4cj30b40b4go4\.jpg -# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina+easylist.txt: 4599) +# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina.txt: 4579) .sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu\.jpg -# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina+easylist.txt: 4598) +# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina.txt: 4578) .sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina+easylist.txt: 4596) +# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina.txt: 4576) .sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81\.gif -# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina+easylist.txt: 4595) +# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina.txt: 4575) .sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina+easylist.txt: 4594) +# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina.txt: 4574) .sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina+easylist.txt: 4593) +# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina.txt: 4573) .sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf\.jpg -# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina+easylist.txt: 4591) +# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina.txt: 4571) .sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt\.gif -# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina+easylist.txt: 4590) +# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina.txt: 4570) .sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y\.jpg -# ||sinaimg.cn/large/b8c4115djw1els3p1luszg208c06ymzb.jpg (easylistchina+easylist.txt: 4589) -.sinaimg.cn/large/b8c4115djw1els3p1luszg208c06ymzb\.jpg -# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina+easylist.txt: 4588) +# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina.txt: 4569) .sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r\.gif -# ||sinaimg.cn/large/0064LzSDgw1eqft*.gif (easylistchina+easylist.txt: 4587) -.sinaimg.cn/large/0064LzSDgw1eqft.*\.gif -# ||sinaimg.cn/large/005yyi5Jjw1eoinnnh4caj308c06yt9k.jpg (easylistchina+easylist.txt: 4586) -.sinaimg.cn/large/005yyi5Jjw1eoinnnh4caj308c06yt9k\.jpg -# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina+easylist.txt: 4585) +# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina.txt: 4568) .sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5\.jpg -# ||sinaimg.cn/large/005YVJvVgw1eqeoa1vo9og30rn01ytgn.gif (easylistchina+easylist.txt: 4584) -.sinaimg.cn/large/005YVJvVgw1eqeoa1vo9og30rn01ytgn\.gif -# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina+easylist.txt: 4583) +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina.txt: 4567) .sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts\.jpg -# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina+easylist.txt: 4582) +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina.txt: 4566) .sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta\.jpg -# ||sinaimg.cn/large/005S1G8Qjw1eqb4y4ifo0g30qj01ydic.gif (easylistchina+easylist.txt: 4581) -.sinaimg.cn/large/005S1G8Qjw1eqb4y4ifo0g30qj01ydic\.gif -# ||sinaimg.cn/large/005S1G8Qjw1eqb4xx9e1qg308c06yaca.gif (easylistchina+easylist.txt: 4580) -.sinaimg.cn/large/005S1G8Qjw1eqb4xx9e1qg308c06yaca\.gif -# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina+easylist.txt: 4579) +# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina.txt: 4565) .sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy\.gif -# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina+easylist.txt: 4575) +# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina.txt: 4563) .sinaimg.cn/jslib/kuozhanad\.js -# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina+easylist.txt: 4574) +# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina.txt: 4562) .sinaimg.cn/finance/zwy/sidead_ -# ||sinaimg.cn/cj/dfz_ad/ (easylistchina+easylist.txt: 4573) +# ||sinaimg.cn/cj/dfz_ad/ (easylistchina.txt: 4561) .sinaimg.cn/cj/dfz_ad/ -# ||sinaimg.cn/bmiddle/48dc6199jw1eyk360j058g209c07stdl.gif (easylistchina+easylist.txt: 4572) -.sinaimg.cn/bmiddle/48dc6199jw1eyk360j058g209c07stdl\.gif -# ||sina.com/rm/ (easylistchina+easylist.txt: 4571) +# ||sina.com/rm/ (easylistchina.txt: 4560) .sina.com/rm/ -# ||sina.com/assets/js/dart/ (easylistchina+easylist.txt: 4570) +# ||sina.com/assets/js/dart/ (easylistchina.txt: 4559) .sina.com/assets/js/dart/ -# ||sina.com/ads/ (easylistchina+easylist.txt: 4569) +# ||sina.com/ads/ (easylistchina.txt: 4558) .sina.com/ads/ -# ||sina.com.tw^$subdocument (easylistchina+easylist.txt: 4568) +# ||sina.com.tw^$subdocument (easylistchina.txt: 4557) .sina.com.tw -# ||sina.com.tw/game_data/adsbro_ (easylistchina+easylist.txt: 4567) +# ||sina.com.tw/game_data/adsbro_ (easylistchina.txt: 4556) .sina.com.tw/game_data/adsbro_ -# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina+easylist.txt: 4566) +# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina.txt: 4555) .sina.com.cn/tgy/pop_js/ad\.js -# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina+easylist.txt: 4565) +# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina.txt: 4554) .sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90\.gif -# ||sina.com.cn/NewIndexAdStart.js (easylistchina+easylist.txt: 4564) +# ||sina.com.cn/NewIndexAdStart.js (easylistchina.txt: 4553) .sina.com.cn/NewIndexAdStart\.js -# ||sina.com.cn/litong/ (easylistchina+easylist.txt: 4563) +# ||sina.com.cn/litong/ (easylistchina.txt: 4552) .sina.com.cn/litong/ -# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina+easylist.txt: 4562) +# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina.txt: 4551) .sina.com.cn/js/87/20140101/hongbao/ -# ||sina.com.cn/js/*/bgads.js (easylistchina+easylist.txt: 4561) +# ||sina.com.cn/js/*/bgads.js (easylistchina.txt: 4550) .sina.com.cn/js/.*/bgads\.js -# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina+easylist.txt: 4560) +# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina.txt: 4549) .sina.com.cn/js/.*/AdvertisingByNewIndex_ -# ||sina.cn/adfront/deliver.php? (easylistchina+easylist.txt: 4559) +# ||sina.com.cn/131/20150515/266.js (easylistchina.txt: 4548) +.sina.com.cn/131/20150515/266\.js +# ||sina.cn/adfront/deliver.php? (easylistchina.txt: 4547) .sina.cn/adfront/deliver\.php\? -# ||simplecd.me/static/js/adcpm.js (easylistchina+easylist.txt: 4558) +# ||simplecd.me/static/js/adcpm.js (easylistchina.txt: 4546) .simplecd.me/static/js/adcpm\.js -# ||shxd.net/img/myad.gif (easylistchina+easylist.txt: 4557) +# ||shxd.net/img/myad.gif (easylistchina.txt: 4545) .shxd.net/img/myad\.gif -# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina+easylist.txt: 4556) +# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina.txt: 4544) .shuyeer.com/views/default/mnstyle/hot/gg\.js -# ||shuyeer.com/views/default/images/close.gif (easylistchina+easylist.txt: 4555) +# ||shuyeer.com/views/default/images/close.gif (easylistchina.txt: 4543) .shuyeer.com/views/default/images/close\.gif -# ||shuyeer.com/dlr.html (easylistchina+easylist.txt: 4554) +# ||shuyeer.com/dlr.html (easylistchina.txt: 4542) .shuyeer.com/dlr\.html -# ||shuqi6.com/static/jquery/gg.js (easylistchina+easylist.txt: 4553) +# ||shuqi6.com/static/jquery/gg.js (easylistchina.txt: 4541) .shuqi6.com/static/jquery/gg\.js -# ||shumimi.com/js/a3.js (easylistchina+easylist.txt: 4552) +# ||shumimi.com/js/a3.js (easylistchina.txt: 4540) .shumimi.com/js/a3\.js -# ||shumimi.com/js/a2.js (easylistchina+easylist.txt: 4551) +# ||shumimi.com/js/a2.js (easylistchina.txt: 4539) .shumimi.com/js/a2\.js -# ||shumimi.com/js/a1.js (easylistchina+easylist.txt: 4550) +# ||shumimi.com/js/a1.js (easylistchina.txt: 4538) .shumimi.com/js/a1\.js -# ||shumimi.com/js/a0 (easylistchina+easylist.txt: 4549) +# ||shumimi.com/js/a0 (easylistchina.txt: 4537) .shumimi.com/js/a0 -# ||shulink.com/js/pagetop5.js (easylistchina+easylist.txt: 4548) +# ||shulink.com/js/pagetop5.js (easylistchina.txt: 4536) .shulink.com/js/pagetop5\.js -# ||shulihua.net/js/yegonggao.js (easylistchina+easylist.txt: 4547) +# ||shulihua.net/js/yegonggao.js (easylistchina.txt: 4535) .shulihua.net/js/yegonggao\.js -# ||shulihua.net/js/topcen.js (easylistchina+easylist.txt: 4546) +# ||shulihua.net/js/topcen.js (easylistchina.txt: 4534) .shulihua.net/js/topcen\.js -# ||shulihua.net/js/gzlishigoogle.js (easylistchina+easylist.txt: 4545) +# ||shulihua.net/js/gzlishigoogle.js (easylistchina.txt: 4533) .shulihua.net/js/gzlishigoogle\.js -# ||shulihua.net/js/gzlishi468google.js (easylistchina+easylist.txt: 4544) +# ||shulihua.net/js/gzlishi468google.js (easylistchina.txt: 4532) .shulihua.net/js/gzlishi468google\.js -# ||shuhe.cc/ssi/ (easylistchina+easylist.txt: 4543) +# ||shuhe.cc/ssi/ (easylistchina.txt: 4531) .shuhe.cc/ssi/ -# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina+easylist.txt: 4542) +# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina.txt: 4530) .shuajizhijia.com/uploads/allimg/141121/1_1702554911\.jpg -# ||shuajizhijia.com/static/js/rightdown.js (easylistchina+easylist.txt: 4541) +# ||shuajizhijia.com/static/js/rightdown.js (easylistchina.txt: 4529) .shuajizhijia.com/static/js/rightdown\.js -# ||shuaijiao.com/statics/js/adv0.js (easylistchina+easylist.txt: 4540) +# ||shuaijiao.com/statics/js/adv0.js (easylistchina.txt: 4528) .shuaijiao.com/statics/js/adv0\.js -# ||shows.21cn.com^ (easylistchina+easylist.txt: 4539) +# ||shows.21cn.com^ (easylistchina.txt: 4527) .shows.21cn.com -# ||showbean.net:8081/cpma.js (easylistchina+easylist.txt: 4538) +# ||showbean.net:8081/cpma.js (easylistchina.txt: 4526) .showbean.net:8081/cpma\.js -# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina+easylist.txt: 4537) +# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina.txt: 4525) .shouyoutv.com/assets/api/web/v4/js/global_head\.js -# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina+easylist.txt: 4536) +# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina.txt: 4524) .shouyou.com/2013/new/shouyou-duilian\.js -# ||shoudian.org/diantong/sunwayman*.gif (easylistchina+easylist.txt: 4535) +# ||shoudian.org/diantong/sunwayman*.gif (easylistchina.txt: 4523) .shoudian.org/diantong/sunwayman.*\.gif -# ||shmet.com/js/shmetAd.js (easylistchina+easylist.txt: 4534) +# ||shmet.com/js/shmetAd.js (easylistchina.txt: 4522) .shmet.com/js/shmetAd\.js -# ||shmet.com/images/zz250x80.jpg (easylistchina+easylist.txt: 4533) +# ||shmet.com/images/zz250x80.jpg (easylistchina.txt: 4521) .shmet.com/images/zz250x80\.jpg -# ||shmet.com/images/20120213ad/ (easylistchina+easylist.txt: 4532) +# ||shmet.com/images/20120213ad/ (easylistchina.txt: 4520) .shmet.com/images/20120213ad/ -# ||shmet.com/images/150x150newsshmet.jpg (easylistchina+easylist.txt: 4531) +# ||shmet.com/images/150x150newsshmet.jpg (easylistchina.txt: 4519) .shmet.com/images/150x150newsshmet\.jpg -# ||shmet.com/images/1000x90newshmet.swf (easylistchina+easylist.txt: 4530) +# ||shmet.com/images/1000x90newshmet.swf (easylistchina.txt: 4518) .shmet.com/images/1000x90newshmet\.swf -# ||shm.com.cn/js/load.swf (easylistchina+easylist.txt: 4529) +# ||shm.com.cn/js/load.swf (easylistchina.txt: 4517) .shm.com.cn/js/load\.swf -# ||shm.com.cn/css/m.js (easylistchina+easylist.txt: 4528) +# ||shm.com.cn/css/m.js (easylistchina.txt: 4516) .shm.com.cn/css/m\.js -# ||shm.com.cn/content/con*.js (easylistchina+easylist.txt: 4527) +# ||shm.com.cn/content/con*.js (easylistchina.txt: 4515) .shm.com.cn/content/con.*\.js -# ||shfq.com/data/attachment/portal/ (easylistchina+easylist.txt: 4526) +# ||shfq.com/data/attachment/portal/ (easylistchina.txt: 4514) .shfq.com/data/attachment/portal/ -# ||shenmeshi.com/googlejs/ziding1.js (easylistchina+easylist.txt: 4525) +# ||shenmeshi.com/googlejs/ziding1.js (easylistchina.txt: 4513) .shenmeshi.com/googlejs/ziding1\.js -# ||shenmaxiaoshuo.com/js/mu.js (easylistchina+easylist.txt: 4524) +# ||shenmaxiaoshuo.com/js/mu.js (easylistchina.txt: 4512) .shenmaxiaoshuo.com/js/mu\.js -# ||shenmaxiaoshuo.com/js/lu.js (easylistchina+easylist.txt: 4523) +# ||shenmaxiaoshuo.com/js/lu.js (easylistchina.txt: 4511) .shenmaxiaoshuo.com/js/lu\.js -# ||shenmaxiaoshuo.com/js/hf (easylistchina+easylist.txt: 4522) +# ||shenmaxiaoshuo.com/js/hf (easylistchina.txt: 4510) .shenmaxiaoshuo.com/js/hf -# ||shenleyuni.com^ (easylistchina+easylist.txt: 4521) +# ||shenleyuni.com^ (easylistchina.txt: 4509) .shenleyuni.com -# ||shejizhan.org/images/myssh (easylistchina+easylist.txt: 4520) +# ||shejizhan.org/images/myssh (easylistchina.txt: 4508) .shejizhan.org/images/myssh -# ||shehuitu.com/jsjs/ (easylistchina+easylist.txt: 4519) +# ||shehuitu.com/jsjs/ (easylistchina.txt: 4507) .shehuitu.com/jsjs/ -# ||shbear.com^*/ad/ (easylistchina+easylist.txt: 4518) +# ||shbear.com^*/ad/ (easylistchina.txt: 4506) .shbear.com/.*/ad/ -# ||share666.com/adad2014/ (easylistchina+easylist.txt: 4517) -.share666.com/adad2014/ -# ||share666.com/30033.gif (easylistchina+easylist.txt: 4516) -.share666.com/30033\.gif -# ||share.gzdsw.com^ (easylistchina+easylist.txt: 4515) +# ||share.gzdsw.com^ (easylistchina.txt: 4505) .share.gzdsw.com -# ||share.dmhy.*/*?$image (easylistchina+easylist.txt: 4514) +# ||share.dmhy.*/*?$image (easylistchina.txt: 4504) .share.dmhy.*./(.*/)?.*\? -# ||shaoxing.com.cn^*gg. (easylistchina+easylist.txt: 4513) +# ||shaoxing.com.cn^*gg. (easylistchina.txt: 4503) .shaoxing.com.cn/.*gg\. -# ||shaoxing.com.cn/6201.files/*.swf (easylistchina+easylist.txt: 4512) +# ||shaoxing.com.cn/6201.files/*.swf (easylistchina.txt: 4502) .shaoxing.com.cn/6201\.files/.*\.swf -# ||shanhe.cc/Scripts/main-pf.js (easylistchina+easylist.txt: 4511) +# ||shanhe.cc/Scripts/main-pf.js (easylistchina.txt: 4501) .shanhe.cc/Scripts/main-pf\.js -# ||shanhe.cc/Scripts/ads_dl.js (easylistchina+easylist.txt: 4510) +# ||shanhe.cc/Scripts/ads_dl.js (easylistchina.txt: 4500) .shanhe.cc/Scripts/ads_dl\.js -# ||shanhe.cc/index.php?m=poster& (easylistchina+easylist.txt: 4509) +# ||shanhe.cc/index.php?m=poster& (easylistchina.txt: 4499) .shanhe.cc/index\.php\?m=poster& -# ||shangdu.com/tpnews/dazhe.gif (easylistchina+easylist.txt: 4508) +# ||shangdu.com/tpnews/dazhe.gif (easylistchina.txt: 4498) .shangdu.com/tpnews/dazhe\.gif -# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina+easylist.txt: 4507) +# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina.txt: 4497) .shangdu.com/newfile2007/ad/tu/flash/3dboard\.swf -# ||shangdu.com/lyinfo/ad/ (easylistchina+easylist.txt: 4506) +# ||shangdu.com/lyinfo/ad/ (easylistchina.txt: 4496) .shangdu.com/lyinfo/ad/ -# ||shangdu.com/comiis_ad/ (easylistchina+easylist.txt: 4505) +# ||shangdu.com/comiis_ad/ (easylistchina.txt: 4495) .shangdu.com/comiis_ad/ -# ||shangdu.com/bbs/1005010601.js (easylistchina+easylist.txt: 4504) +# ||shangdu.com/bbs/1005010601.js (easylistchina.txt: 4494) .shangdu.com/bbs/1005010601\.js -# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina+easylist.txt: 4503) +# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina.txt: 4493) .shangdu.com/2013pic/kuahailong\.jpg -# ||shangdu.com/2013pic/09cn.jpg (easylistchina+easylist.txt: 4502) +# ||shangdu.com/2013pic/09cn.jpg (easylistchina.txt: 4492) .shangdu.com/2013pic/09cn\.jpg -# ||shangdu.com/1002/1002031301.js (easylistchina+easylist.txt: 4501) +# ||shangdu.com/1002/1002031301.js (easylistchina.txt: 4491) .shangdu.com/1002/1002031301\.js -# ||shangdu.com/1002/1002030901.js (easylistchina+easylist.txt: 4500) +# ||shangdu.com/1002/1002030901.js (easylistchina.txt: 4490) .shangdu.com/1002/1002030901\.js -# ||shangdu.com/1002/1002030801.js (easylistchina+easylist.txt: 4499) +# ||shangdu.com/1002/1002030801.js (easylistchina.txt: 4489) .shangdu.com/1002/1002030801\.js -# ||shangdu.com/1002/1002030101.js (easylistchina+easylist.txt: 4498) +# ||shangdu.com/1002/1002030101.js (easylistchina.txt: 4488) .shangdu.com/1002/1002030101\.js -# ||shang.hlgnet.net/code/ (easylistchina+easylist.txt: 4497) +# ||shang.hlgnet.net/code/ (easylistchina.txt: 4487) .shang.hlgnet.net/code/ -# ||shang.hlgnet.com/code/ (easylistchina+easylist.txt: 4496) +# ||shang.hlgnet.com/code/ (easylistchina.txt: 4486) .shang.hlgnet.com/code/ -# ||shabc.net/shyk/swt/swt_yh.js (easylistchina+easylist.txt: 4495) +# ||shabc.net/shyk/swt/swt_yh.js (easylistchina.txt: 4485) .shabc.net/shyk/swt/swt_yh\.js -# ||sh114so.com^$subdocument (easylistchina+easylist.txt: 4494) +# ||sh114so.com^$subdocument (easylistchina.txt: 4484) .sh114so.com -# ||sh114so.com/js/nm*.js (easylistchina+easylist.txt: 4493) +# ||sh114so.com/js/nm*.js (easylistchina.txt: 4483) .sh114so.com/js/nm.*\.js -# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina+easylist.txt: 4492) +# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina.txt: 4482) .sh.sina.com.cn/js/441/ZwyArticle_commo_23\.js -# ||sh.sina.com.cn/iframe/522/ (easylistchina+easylist.txt: 4491) +# ||sh.sina.com.cn/iframe/522/ (easylistchina.txt: 4481) .sh.sina.com.cn/iframe/522/ -# ||sgg.southcn.com^ (easylistchina+easylist.txt: 4490) +# ||sgg.southcn.com^ (easylistchina.txt: 4480) .sgg.southcn.com -# ||sg169.com/uploadfile/*.swf (easylistchina+easylist.txt: 4489) +# ||sg169.com/uploadfile/*.swf (easylistchina.txt: 4479) .sg169.com/uploadfile/.*\.swf -# ||sg169.com/uploadfile/*.gif (easylistchina+easylist.txt: 4488) +# ||sg169.com/uploadfile/*.gif (easylistchina.txt: 4478) .sg169.com/uploadfile/.*\.gif -# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina+easylist.txt: 4487) +# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina.txt: 4477) .sf-express.com/cn/sc/\.galleries/sfbest/.*_right_sc\. -# ||sexbarss.net/wap/ (easylistchina+easylist.txt: 4486) +# ||sexbarss.net/wap/ (easylistchina.txt: 4476) .sexbarss.net/wap/ -# ||sentsin.qiniudn.com/ad_ (easylistchina+easylist.txt: 4485) +# ||sentsin.qiniudn.com/ad_ (easylistchina.txt: 4475) .sentsin.qiniudn.com/ad_ -# ||sejie2.us/images/*.gif (easylistchina+easylist.txt: 4484) +# ||sejie2.us/images/*.gif (easylistchina.txt: 4474) .sejie2.us/images/.*\.gif -# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina+easylist.txt: 4483) +# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina.txt: 4473) .secretmine.net/wp-content/uploads/2015/07/youdaoxiazai\.jpg -# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina+easylist.txt: 4482) +# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina.txt: 4472) .secretmine.net/wp-content/uploads/2015/07/A- -# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina+easylist.txt: 4481) +# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina.txt: 4471) .secretmine.net/wp-content/uploads/.*/610x80 -# ||secretmine.net/wp-content/uploads/*-960 (easylistchina+easylist.txt: 4480) +# ||secretmine.net/wp-content/uploads/*-960 (easylistchina.txt: 4470) .secretmine.net/wp-content/uploads/.*-960 -# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina+easylist.txt: 4479) +# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina.txt: 4469) .secretmine.net/wp-content/uploads/.*-300-25\. -# ||sdzbcg.com/images/sdfhyl (easylistchina+easylist.txt: 4478) +# ||sdzbcg.com/images/sdfhyl (easylistchina.txt: 4468) .sdzbcg.com/images/sdfhyl -# ||sdzbcg.com/images/jnmy (easylistchina+easylist.txt: 4477) +# ||sdzbcg.com/images/jnmy (easylistchina.txt: 4467) .sdzbcg.com/images/jnmy -# ||sdzbcg.com/images/ggwzz.jpg (easylistchina+easylist.txt: 4476) +# ||sdzbcg.com/images/ggwzz.jpg (easylistchina.txt: 4466) .sdzbcg.com/images/ggwzz\.jpg -# ||sdo.com/static/image/mkads/ (easylistchina+easylist.txt: 4474) +# ||sdo.com/static/image/mkads/ (easylistchina.txt: 4464) .sdo.com/static/image/mkads/ -# ||sdktu.com/js/alpha.js (easylistchina+easylist.txt: 4473) +# ||sdktu.com/js/alpha.js (easylistchina.txt: 4463) .sdktu.com/js/alpha\.js -# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina+easylist.txt: 4472) +# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina.txt: 4462) .sdgundam.cn/upload/2015-07/dcfea62708a21351\.jpg -# ||sdgundam.cn/js/duilian3.js (easylistchina+easylist.txt: 4471) +# ||sdgundam.cn/js/duilian3.js (easylistchina.txt: 4461) .sdgundam.cn/js/duilian3\.js -# ||sd888.org/house/flash/ (easylistchina+easylist.txt: 4470) +# ||sd888.org/house/flash/ (easylistchina.txt: 4460) .sd888.org/house/flash/ -# ||sd888.org/flash/ (easylistchina+easylist.txt: 4469) +# ||sd888.org/flash/ (easylistchina.txt: 4459) .sd888.org/flash/ -# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina+easylist.txt: 4468) +# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina.txt: 4458) .sd.xinhuanet.com/2014xb/images/shanhang\.gif -# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina+easylist.txt: 4467) +# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina.txt: 4457) .sd.xinhuanet.com/2014xb/html/albbg\.htm -# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina+easylist.txt: 4466) +# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina.txt: 4456) .sd.xinhuanet.com/2014xb/flash/ -# ||scsn.cn/Public/config/Couplet/Index (easylistchina+easylist.txt: 4465) +# ||scsn.cn/Public/config/Couplet/Index (easylistchina.txt: 4455) .scsn.cn/Public/config/Couplet/Index -# ||scsn.cn/Public/config/Couplet/16.js (easylistchina+easylist.txt: 4464) +# ||scsn.cn/Public/config/Couplet/16.js (easylistchina.txt: 4454) .scsn.cn/Public/config/Couplet/16\.js -# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina+easylist.txt: 4463) +# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina.txt: 4453) .script.cmfu.com/Script/GameAdAptationInfo\.js -# ||script.cmfu.com/ADScript/ (easylistchina+easylist.txt: 4462) +# ||script.cmfu.com/ADScript/ (easylistchina.txt: 4452) .script.cmfu.com/ADScript/ -# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina+easylist.txt: 4461) +# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina.txt: 4451) .scol.com.cn/scol-3/js/08scol_text_ -# ||scol.com.cn/js/def_ (easylistchina+easylist.txt: 4460) +# ||scol.com.cn/js/def_ (easylistchina.txt: 4450) .scol.com.cn/js/def_ -# ||sc.tom.com^ (easylistchina+easylist.txt: 4459) +# ||sc.tom.com^ (easylistchina.txt: 4449) .sc.tom.com -# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina+easylist.txt: 4458) +# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina.txt: 4448) .sc.chinaiiss.com/do\.php\?do=ad& -# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina+easylist.txt: 4457) +# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina.txt: 4447) .saydigi.com/wp-content/uploads/2015/01/gogo\.png -# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina+easylist.txt: 4456) +# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina.txt: 4446) .saydigi.com/wp-content/uploads/2014/01/mii2\.gif -# ||saydigi.com/wp-content/uploads/*-banner (easylistchina+easylist.txt: 4455) +# ||saydigi.com/wp-content/uploads/*-banner (easylistchina.txt: 4445) .saydigi.com/wp-content/uploads/.*-banner -# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina+easylist.txt: 4454) +# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina.txt: 4444) .saydigi.com/wp-content/uploads/.*-240x250\. -# ||sax.sina.com.cn/crossdomain.xml (easylistchina+easylist.txt: 4453) +# ||sax.sina.com.cn/crossdomain.xml (easylistchina.txt: 4443) .sax.sina.com.cn/crossdomain\.xml -# ||same.stockstar.com^ (easylistchina+easylist.txt: 4452) +# ||same.stockstar.com^ (easylistchina.txt: 4442) .same.stockstar.com -# ||same.eastmoney.com^ (easylistchina+easylist.txt: 4451) +# ||same.eastmoney.com^ (easylistchina.txt: 4441) .same.eastmoney.com -# ||same.chinadaily.com.cn^ (easylistchina+easylist.txt: 4450) +# ||same.chinadaily.com.cn^ (easylistchina.txt: 4440) .same.chinadaily.com.cn -# ||same*.jrj.com.cn^$script,subdocument (easylistchina+easylist.txt: 4449) +# ||same*.jrj.com.cn^$script,subdocument (easylistchina.txt: 4439) .same*./.*\.jrj\.com\.cn[^\w%.-] .same*.jrj.com.cn -# ||sam*.baby-kingdom.com^ (easylistchina+easylist.txt: 4448) +# ||sam*.baby-kingdom.com^ (easylistchina.txt: 4438) .sam*./.*\.baby-kingdom\.com[^\w%.-] .sam*.baby-kingdom.com -# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina+easylist.txt: 4447) +# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina.txt: 4437) .saibeinews.com/index\.php\?m=poster&c=index&a=show_poster& -# ||safedom.net/edm/ad/ (easylistchina+easylist.txt: 4446) +# ||safedom.net/edm/ad/ (easylistchina.txt: 4436) .safedom.net/edm/ad/ -# ||s8bbs.com/g.php? (easylistchina+easylist.txt: 4445) +# ||s8bbs.com/g.php? (easylistchina.txt: 4435) .s8bbs.com/g\.php\? -# ||s1979.com/html/ad_js/ (easylistchina+easylist.txt: 4444) +# ||s1979.com/html/ad_js/ (easylistchina.txt: 4434) .s1979.com/html/ad_js/ -# ||s1.pplive.cn/sta.js (easylistchina+easylist.txt: 4443) +# ||s1.pplive.cn/sta.js (easylistchina.txt: 4433) .s1.pplive.cn/sta\.js -# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina+easylist.txt: 4442) +# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina.txt: 4432) .s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226\.js -# ||s.yimg.com/gs/apex/ (easylistchina+easylist.txt: 4440) +# ||s.yimg.com/gs/apex/ (easylistchina.txt: 4430) .s.yimg.com/gs/apex/ -# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina+easylist.txt: 4439) +# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina.txt: 4429) .s.video.sina.com.cn/video/play\?video_id=249750205& -# ||s.u17t.com/leaflet/upload/ (easylistchina+easylist.txt: 4438) +# ||s.u17t.com/leaflet/upload/ (easylistchina.txt: 4428) .s.u17t.com/leaflet/upload/ -# ||s.tankr.net/s/$script (easylistchina+easylist.txt: 4437) +# ||s.tankr.net/s/$script (easylistchina.txt: 4427) .s.tankr.net/s/ -# ||s.tankr.net/n/ (easylistchina+easylist.txt: 4436) +# ||s.tankr.net/n/ (easylistchina.txt: 4426) .s.tankr.net/n/ -# ||s-msn.com/portal/xiatui.js (easylistchina+easylist.txt: 4435) +# ||s-msn.com/portal/xiatui.js (easylistchina.txt: 4425) .s-msn.com/portal/xiatui\.js -# ||s-msn.com/portal/hp/2015/807.html (easylistchina+easylist.txt: 4434) +# ||s-msn.com/portal/hp/2015/807.html (easylistchina.txt: 4424) .s-msn.com/portal/hp/2015/807\.html -# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina+easylist.txt: 4433) +# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina.txt: 4423) .s-msn.com/msnportal/hp/luckyday/ -# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina+easylist.txt: 4432) +# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina.txt: 4422) .rznews.cn/viscms/r/cms/rzw/rzxw/images/.*\.swf -# ||ruten.com.tw/js/gads_ (easylistchina+easylist.txt: 4431) +# ||ruten.com.tw/js/gads_ (easylistchina.txt: 4421) .ruten.com.tw/js/gads_ -# ||ruten.com.tw/js/ahd_ (easylistchina+easylist.txt: 4430) +# ||ruten.com.tw/js/ahd_ (easylistchina.txt: 4420) .ruten.com.tw/js/ahd_ -# ||runsky.com/html/*_index_ (easylistchina+easylist.txt: 4429) +# ||runsky.com/html/*_index_ (easylistchina.txt: 4419) .runsky.com/html/.*_index_ -# ||runsky.com/bbsadv- (easylistchina+easylist.txt: 4428) +# ||runsky.com/bbsadv- (easylistchina.txt: 4418) .runsky.com/bbsadv- -# ||runmang.com/img/ (easylistchina+easylist.txt: 4427) +# ||runmang.com/img/ (easylistchina.txt: 4417) .runmang.com/img/ -# ||runbt.com/js/ad (easylistchina+easylist.txt: 4426) +# ||runbt.com/js/ad (easylistchina.txt: 4416) .runbt.com/js/ad -# ||runbt.com/image/ad_ (easylistchina+easylist.txt: 4425) +# ||runbt.com/image/ad_ (easylistchina.txt: 4415) .runbt.com/image/ad_ -# ||ruian86.com/img/y13/ (easylistchina+easylist.txt: 4424) +# ||ruian86.com/img/y13/ (easylistchina.txt: 4414) .ruian86.com/img/y13/ -# ||ruian.com/img/y13/ (easylistchina+easylist.txt: 4423) +# ||ruian.com/img/y13/ (easylistchina.txt: 4413) .ruian.com/img/y13/ -# ||rugao35.com/Public/config/Couplet/Index (easylistchina+easylist.txt: 4422) +# ||rugao35.com/Public/config/Couplet/Index (easylistchina.txt: 4412) .rugao35.com/Public/config/Couplet/Index -# ||ruanyifeng.com/blog/images/sup_ (easylistchina+easylist.txt: 4421) +# ||ruanyifeng.com/blog/images/sup_ (easylistchina.txt: 4411) .ruanyifeng.com/blog/images/sup_ -# ||ruanyifeng.com/blog/images/ad_ (easylistchina+easylist.txt: 4420) +# ||ruanyifeng.com/blog/images/ad_ (easylistchina.txt: 4410) .ruanyifeng.com/blog/images/ad_ -# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina+easylist.txt: 4419) +# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina.txt: 4409) .ruanjianxiaozi.qiniudn.com -# ||ruan8.com/img/head.js (easylistchina+easylist.txt: 4418) +# ||ruan8.com/img/head.js (easylistchina.txt: 4408) .ruan8.com/img/head\.js -# ||ruan8.com/img/foot.js (easylistchina+easylist.txt: 4417) +# ||ruan8.com/img/foot.js (easylistchina.txt: 4407) .ruan8.com/img/foot\.js -# ||rtbs.cn/bi.js (easylistchina+easylist.txt: 4416) +# ||rtbs.cn/bi.js (easylistchina.txt: 4406) .rtbs.cn/bi\.js -# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina+easylist.txt: 4415) +# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina.txt: 4405) .rshhy.com/uploads/allimg/130517/1_1834445801\.jpg -# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina+easylist.txt: 4414) +# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina.txt: 4404) .rshhy.com/templets/default/images/zhixiao01\.jpg -# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina+easylist.txt: 4413) +# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina.txt: 4403) .rshhy.com/templets/default/images/paimai01\.jpg -# ||rsdown.cn/static/t/ (easylistchina+easylist.txt: 4412) +# ||rsdown.cn/static/t/ (easylistchina.txt: 4402) .rsdown.cn/static/t/ -# ||rsccs.com/code/ (easylistchina+easylist.txt: 4411) +# ||rsccs.com/code/ (easylistchina.txt: 4401) .rsccs.com/code/ -# ||rosmm.com/ad_js/ (easylistchina+easylist.txt: 4410) +# ||rosmm.com/ad_js/ (easylistchina.txt: 4400) .rosmm.com/ad_js/ -# ||rkanr.com/data/cpcache/cp*.js (easylistchina+easylist.txt: 4408) +# ||rkanr.com/data/cpcache/cp*.js (easylistchina.txt: 4398) .rkanr.com/data/cpcache/cp.*\.js -# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina+easylist.txt: 4407) +# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina.txt: 4397) .rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6\.jpg -# ||rizhao.net/html/js/main.js (easylistchina+easylist.txt: 4406) +# ||rizhao.net/html/js/main.js (easylistchina.txt: 4396) .rizhao.net/html/js/main\.js -# ||rising.com.cn/weblog/ (easylistchina+easylist.txt: 4405) +# ||rising.com.cn/weblog/ (easylistchina.txt: 4395) .rising.com.cn/weblog/ -# ||rising.cn^*/pic-ad/ (easylistchina+easylist.txt: 4404) +# ||rising.cn^*/pic-ad/ (easylistchina.txt: 4394) .rising.cn/.*/pic-ad/ -# ||ringhk.com/adves/ (easylistchina+easylist.txt: 4403) +# ||ringhk.com/adves/ (easylistchina.txt: 4393) .ringhk.com/adves/ -# ||right.com.cn/logo/*.gif (easylistchina+easylist.txt: 4401) +# ||right.com.cn/logo/*.gif (easylistchina.txt: 4391) .right.com.cn/logo/.*\.gif -# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina+easylist.txt: 4400) +# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina.txt: 4390) .right.com.cn/forum/static/image/common/logo\.gif -# ||rh.qq.com^ (easylistchina+easylist.txt: 4399) +# ||rh.qq.com^ (easylistchina.txt: 4389) .rh.qq.com -# ||rfidworld.com.cn/js/c.html (easylistchina+easylist.txt: 4398) +# ||rfidworld.com.cn/js/c.html (easylistchina.txt: 4388) .rfidworld.com.cn/js/c\.html -# ||rfidworld.com.cn/js/b.js (easylistchina+easylist.txt: 4397) +# ||rfidworld.com.cn/js/b.js (easylistchina.txt: 4387) .rfidworld.com.cn/js/b\.js -# ||rfidworld.com.cn/js/a.js (easylistchina+easylist.txt: 4396) +# ||rfidworld.com.cn/js/a.js (easylistchina.txt: 4386) .rfidworld.com.cn/js/a\.js -# ||res.ythouse.com/image/index/2012/ (easylistchina+easylist.txt: 4395) +# ||res.ythouse.com/image/index/2012/ (easylistchina.txt: 4385) .res.ythouse.com/image/index/2012/ -# ||res.hunantv.com^ (easylistchina+easylist.txt: 4394) +# ||res.hunantv.com^ (easylistchina.txt: 4384) .res.hunantv.com -# ||res.cngoldres.com/web/js/*_advs.js (easylistchina+easylist.txt: 4393) +# ||res.cngoldres.com/web/js/*_advs.js (easylistchina.txt: 4383) .res.cngoldres.com/web/js/.*_advs\.js -# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina+easylist.txt: 4392) +# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina.txt: 4382) .res.cngoldres.com/web/index/img/.*_ad_ -# ||repian.com/a/ (easylistchina+easylist.txt: 4391) +# ||repian.com/a/ (easylistchina.txt: 4381) .repian.com/a/ -# ||rentiyishu99.net/f.js (easylistchina+easylist.txt: 4390) +# ||rentiyishu99.net/f.js (easylistchina.txt: 4380) .rentiyishu99.net/f\.js -# ||rentiyishu99.net/e.js (easylistchina+easylist.txt: 4389) +# ||rentiyishu99.net/e.js (easylistchina.txt: 4379) .rentiyishu99.net/e\.js -# ||rentiyishu99.net/d.js (easylistchina+easylist.txt: 4388) +# ||rentiyishu99.net/d.js (easylistchina.txt: 4378) .rentiyishu99.net/d\.js -# ||rentiyishu99.net/b.js (easylistchina+easylist.txt: 4387) +# ||rentiyishu99.net/b.js (easylistchina.txt: 4377) .rentiyishu99.net/b\.js -# ||rentiyishu99.net/a.js (easylistchina+easylist.txt: 4386) +# ||rentiyishu99.net/a.js (easylistchina.txt: 4376) .rentiyishu99.net/a\.js -# ||rentiyishu.org/*.js (easylistchina+easylist.txt: 4385) +# ||rentiyishu.org/*.js (easylistchina.txt: 4375) .rentiyishu.org/.*\.js -# ||renrencd.com/static/images/*_adv. (easylistchina+easylist.txt: 4384) +# ||renrencd.com/static/images/*_adv. (easylistchina.txt: 4374) .renrencd.com/static/images/.*_adv\. -# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina+easylist.txt: 4383) +# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina.txt: 4373) .renren.com/pages/seo/reg_seo_pop\.js -# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina+easylist.txt: 4382) +# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina.txt: 4372) .ref.so/templates/ref/images/client/tg.*\.jpg -# ||readnovel.com/js/$subdocument (easylistchina+easylist.txt: 4381) +# ||readnovel.com/js/$subdocument (easylistchina.txt: 4371) .readnovel.com/js/ -# ||read.2200book.com/images/bloading.gif (easylistchina+easylist.txt: 4380) +# ||read.2200book.com/images/bloading.gif (easylistchina.txt: 4370) .read.2200book.com/images/bloading\.gif -# ||rar8.net/htmljs/ (easylistchina+easylist.txt: 4379) +# ||rar8.net/htmljs/ (easylistchina.txt: 4369) .rar8.net/htmljs/ -# ||ranwen.org/ssi/ (easylistchina+easylist.txt: 4378) +# ||ranwen.org/ssi/ (easylistchina.txt: 4368) .ranwen.org/ssi/ -# ||ranwen.net/ssi/ (easylistchina+easylist.txt: 4377) +# ||ranwen.net/ssi/ (easylistchina.txt: 4367) .ranwen.net/ssi/ -# ||rainmall.com/tv/js/bofang (easylistchina+easylist.txt: 4375) +# ||rainmall.com/tv/js/bofang (easylistchina.txt: 4365) .rainmall.com/tv/js/bofang -# ||rainmall.com/tv/js/ad (easylistchina+easylist.txt: 4374) +# ||rainmall.com/tv/js/ad (easylistchina.txt: 4364) .rainmall.com/tv/js/ad -# ||r3.ykimg.com/crossdomain.xml (easylistchina+easylist.txt: 4373) +# ||r3.ykimg.com/crossdomain.xml (easylistchina.txt: 4363) .r3.ykimg.com/crossdomain\.xml -# ||qzzn.com/statics/ (easylistchina+easylist.txt: 4372) +# ||qzzn.com/statics/ (easylistchina.txt: 4362) .qzzn.com/statics/ -# ||qzwb.com^*.swf| (easylistchina+easylist.txt: 4371) +# ||qzwb.com^*.swf| (easylistchina.txt: 4361) .qzwb.com/.*\.swf$ -# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina+easylist.txt: 4370) +# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina.txt: 4360) .qzwb.com/gb/img/9465\.files/1G3G\.gif -# ||qzss.cn/ssad (easylistchina+easylist.txt: 4369) +# ||qzss.cn/ssad (easylistchina.txt: 4359) .qzss.cn/ssad -# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina+easylist.txt: 4368) +# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina.txt: 4358) .qzs.qq.com/qzone/biz/res/v\.swf\?loc= -# ||qzntv.com^*.swf| (easylistchina+easylist.txt: 4367) +# ||qzntv.com^*.swf| (easylistchina.txt: 4357) .qzntv.com/.*\.swf$ -# ||qz828.com/css/2010/script/*ad (easylistchina+easylist.txt: 4366) +# ||qz828.com/css/2010/script/*ad (easylistchina.txt: 4356) .qz828.com/css/2010/script/.*ad -# ||qutuku.com/qutu/good.js (easylistchina+easylist.txt: 4365) +# ||qutuku.com/qutu/good.js (easylistchina.txt: 4355) .qutuku.com/qutu/good\.js -# ||qunaso.cn/Data/upload/ad/ (easylistchina+easylist.txt: 4364) +# ||qunaso.cn/Data/upload/ad/ (easylistchina.txt: 4354) .qunaso.cn/Data/upload/ad/ -# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina+easylist.txt: 4363) +# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina.txt: 4353) .qunar.com/vataplan\?framId=ifrNTOPAD& -# ||qunar.com/vataframe/b.html? (easylistchina+easylist.txt: 4362) +# ||qunar.com/vataframe/b.html? (easylistchina.txt: 4352) .qunar.com/vataframe/b\.html\? -# ||qunar.com/vata?chan= (easylistchina+easylist.txt: 4361) +# ||qunar.com/vata?chan= (easylistchina.txt: 4351) .qunar.com/vata\?chan= -# ||qunar.com/render/*Advertisement.jsp? (easylistchina+easylist.txt: 4360) +# ||qunar.com/render/*Advertisement.jsp? (easylistchina.txt: 4350) .qunar.com/render/.*Advertisement\.jsp\? -# ||quledu.com/js/nrh.js (easylistchina+easylist.txt: 4359) +# ||quledu.com/js/nrh.js (easylistchina.txt: 4349) .quledu.com/js/nrh\.js -# ||qtfy30.cn/980-90.gif (easylistchina+easylist.txt: 4358) +# ||qtfy30.cn/980-90.gif (easylistchina.txt: 4348) .qtfy30.cn/980-90\.gif -# ||qtfy30.cn/680_*.gif (easylistchina+easylist.txt: 4357) +# ||qtfy30.cn/680_*.gif (easylistchina.txt: 4347) .qtfy30.cn/680_.*\.gif -# ||qstatic.com/baike/js/ad_ (easylistchina+easylist.txt: 4356) +# ||qstatic.com/baike/js/ad_ (easylistchina.txt: 4346) .qstatic.com/baike/js/ad_ -# ||qscjw.com/uploads/590.gif (easylistchina+easylist.txt: 4355) +# ||qscjw.com/uploads/590.gif (easylistchina.txt: 4345) .qscjw.com/uploads/590\.gif -# ||qqzuqiu.com/?a=check& (easylistchina+easylist.txt: 4354) +# ||qqzuqiu.com/?a=check& (easylistchina.txt: 4344) .qqzuqiu.com/\?a=check& -# ||qqyy.com/js/public_end_add.js (easylistchina+easylist.txt: 4353) +# ||qqyy.com/js/public_end_add.js (easylistchina.txt: 4343) .qqyy.com/js/public_end_add\.js -# ||qqyy.com/js/commAdv (easylistchina+easylist.txt: 4352) +# ||qqyy.com/js/commAdv (easylistchina.txt: 4342) .qqyy.com/js/commAdv -# ||qqtz.com/ad$subdocument (easylistchina+easylist.txt: 4351) +# ||qqtz.com/ad$subdocument (easylistchina.txt: 4341) .qqtz.com/ad -# ||qqread.com/swf/ (easylistchina+easylist.txt: 4350) +# ||qqread.com/swf/ (easylistchina.txt: 4340) .qqread.com/swf/ -# ||qqread.com/*js/$script (easylistchina+easylist.txt: 4349) +# ||qqread.com/*js/$script (easylistchina.txt: 4339) .qqread.com/.*js/ -# ||qqmcc.org/biz/home_top_960x90.html (easylistchina+easylist.txt: 4348) +# ||qqmcc.org/biz/home_top_960x90.html (easylistchina.txt: 4338) .qqmcc.org/biz/home_top_960x90\.html -# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina+easylist.txt: 4347) +# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina.txt: 4337) .qqkj.cn/js/qqkjnew/lanmuzhuantitongji\.js -# ||qqjia.com/images/ad (easylistchina+easylist.txt: 4346) +# ||qqjia.com/images/ad (easylistchina.txt: 4336) .qqjia.com/images/ad -# ||qqjia.com/dan.js (easylistchina+easylist.txt: 4345) +# ||qqjia.com/dan.js (easylistchina.txt: 4335) .qqjia.com/dan\.js -# ||qqhjy.com/soft/Upload*.gif (easylistchina+easylist.txt: 4344) +# ||qqhjy.com/soft/Upload*.gif (easylistchina.txt: 4334) .qqhjy.com/soft/Upload.*\.gif -# ||qqcyl.net/js/*.html (easylistchina+easylist.txt: 4343) +# ||qqcyl.net/js/*.html (easylistchina.txt: 4333) .qqcyl.net/js/.*\.html -# ||qqcyl.com/js/*.html (easylistchina+easylist.txt: 4342) +# ||qqcyl.com/js/*.html (easylistchina.txt: 4332) .qqcyl.com/js/.*\.html -# ||qqcf.com/js/Content_Get.js (easylistchina+easylist.txt: 4341) +# ||qqcf.com/js/Content_Get.js (easylistchina.txt: 4331) .qqcf.com/js/Content_Get\.js -# ||qq260.com/shout.js (easylistchina+easylist.txt: 4340) +# ||qq260.com/shout.js (easylistchina.txt: 4330) .qq260.com/shout\.js -# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina+easylist.txt: 4339) +# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina.txt: 4329) .qq.com/qzone/biz/gdt/display/positions/waicai/ -# ||qq.com/playgame/videoweb/ (easylistchina+easylist.txt: 4338) +# ||qq.com/playgame/videoweb/ (easylistchina.txt: 4328) .qq.com/playgame/videoweb/ -# ||qq.com/PL_adT.htm (easylistchina+easylist.txt: 4337) +# ||qq.com/PL_adT.htm (easylistchina.txt: 4327) .qq.com/PL_adT\.htm -# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina+easylist.txt: 4336) +# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina.txt: 4326) .qq.com/minivideo_v1/vd/res/enttencentvideo\.xml -# ||qq.com/livemsg? (easylistchina+easylist.txt: 4335) +# ||qq.com/livemsg? (easylistchina.txt: 4325) .qq.com/livemsg\? -# ||qq.com/Index/getAdsAndHotspot (easylistchina+easylist.txt: 4334) +# ||qq.com/Index/getAdsAndHotspot (easylistchina.txt: 4324) .qq.com/Index/getAdsAndHotspot -# ||qq.com/game/footerbar$subdocument (easylistchina+easylist.txt: 4333) +# ||qq.com/game/footerbar$subdocument (easylistchina.txt: 4323) .qq.com/game/footerbar -# ||qq.com/coral/ADS (easylistchina+easylist.txt: 4332) +# ||qq.com/coral/ADS (easylistchina.txt: 4322) .qq.com/coral/ADS -# ||qq.com/bbs/bbs_topgg.htm (easylistchina+easylist.txt: 4330) +# ||qq.com/bbs/bbs_topgg.htm (easylistchina.txt: 4320) .qq.com/bbs/bbs_topgg\.htm -# ||qq.com/article_qq/ad_article_qq/ (easylistchina+easylist.txt: 4329) +# ||qq.com/article_qq/ad_article_qq/ (easylistchina.txt: 4319) .qq.com/article_qq/ad_article_qq/ -# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina+easylist.txt: 4327) +# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina.txt: 4317) .qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 -# ||qmi.cc/tester/tester.js (easylistchina+easylist.txt: 4325) +# ||qmi.cc/tester/tester.js (easylistchina.txt: 4316) .qmi.cc/tester/tester\.js -# ||qk101.com/life/ (easylistchina+easylist.txt: 4324) +# ||qk101.com/life/ (easylistchina.txt: 4315) .qk101.com/life/ -# ||qjis.com/js/qjis_nr.js (easylistchina+easylist.txt: 4323) +# ||qjis.com/js/qjis_nr.js (easylistchina.txt: 4314) .qjis.com/js/qjis_nr\.js -# ||qiyun.org/images/js/tpl/ (easylistchina+easylist.txt: 4322) +# ||qiyun.org/images/js/tpl/ (easylistchina.txt: 4313) .qiyun.org/images/js/tpl/ -# ||qiyun.org/images/js/*.htm (easylistchina+easylist.txt: 4321) +# ||qiyun.org/images/js/*.htm (easylistchina.txt: 4312) .qiyun.org/images/js/.*\.htm -# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina+easylist.txt: 4320) +# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina.txt: 4311) .qiyipic.com/zongyi/fix/runningman20141008_bg03\.jpg -# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina+easylist.txt: 4319) +# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina.txt: 4310) .qiyipic.com/zongyi/fix/runningman20141008_bg02\.jpg -# ||qiyipic.com/zongyi/fix/mxdj (easylistchina+easylist.txt: 4318) +# ||qiyipic.com/zongyi/fix/mxdj (easylistchina.txt: 4309) .qiyipic.com/zongyi/fix/mxdj -# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina+easylist.txt: 4317) +# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina.txt: 4308) .qiyipic.com/zongyi/.*Banner01\.jpg -# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina+easylist.txt: 4316) +# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina.txt: 4307) .qiyipic.com/common/fix/wh-leftbanner\.jpg -# ||qiyipic.com/common/fix/rebull_ (easylistchina+easylist.txt: 4315) +# ||qiyipic.com/common/fix/rebull_ (easylistchina.txt: 4306) .qiyipic.com/common/fix/rebull_ -# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina+easylist.txt: 4314) +# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina.txt: 4305) .qiyipic.com/common/fix/dasdasdasdk\.jpg -# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina+easylist.txt: 4313) +# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina.txt: 4304) .qiyipic.com/common/20150528/diyizhuanqu\.jpg -# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina+easylist.txt: 4312) +# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina.txt: 4303) .qiyipic.com/common/20141021/sanjiukehuzhuanqu\.jpg -# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina+easylist.txt: 4311) +# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina.txt: 4302) .qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79\.png -# ||qiyipic.com/common/*tonglan (easylistchina+easylist.txt: 4310) +# ||qiyipic.com/common/*tonglan (easylistchina.txt: 4301) .qiyipic.com/common/.*tonglan -# ||qiyipic.com/common/*_aLink (easylistchina+easylist.txt: 4309) +# ||qiyipic.com/common/*_aLink (easylistchina.txt: 4300) .qiyipic.com/common/.*_aLink -# ||qiyipic.com/common/*980x (easylistchina+easylist.txt: 4308) +# ||qiyipic.com/common/*980x (easylistchina.txt: 4299) .qiyipic.com/common/.*980x -# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina+easylist.txt: 4307) +# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina.txt: 4298) .qiyipic.com/common/.*/kehuzhuanqu -# ||qiyipic.com/common/*/banner.jpg (easylistchina+easylist.txt: 4306) +# ||qiyipic.com/common/*/banner.jpg (easylistchina.txt: 4297) .qiyipic.com/common/.*/banner\.jpg -# ||qiyipic.com/common/*/baiyao. (easylistchina+easylist.txt: 4305) +# ||qiyipic.com/common/*/baiyao. (easylistchina.txt: 4296) .qiyipic.com/common/.*/baiyao\. -# ||qiyipic.com/common/*/980 (easylistchina+easylist.txt: 4304) +# ||qiyipic.com/common/*/980 (easylistchina.txt: 4295) .qiyipic.com/common/.*/980 -# ||qiyipic.com/common/*/255x205 (easylistchina+easylist.txt: 4303) +# ||qiyipic.com/common/*/255x205 (easylistchina.txt: 4294) .qiyipic.com/common/.*/255x205 -# ||qiyipic.com/common/*/250230. (easylistchina+easylist.txt: 4302) +# ||qiyipic.com/common/*/250230. (easylistchina.txt: 4293) .qiyipic.com/common/.*/250230\. -# ||qiyipic.com/common/*/250-230. (easylistchina+easylist.txt: 4301) +# ||qiyipic.com/common/*/250-230. (easylistchina.txt: 4292) .qiyipic.com/common/.*/250-230\. -# ||qiyipic.com/common/*/225x230.jpg (easylistchina+easylist.txt: 4300) +# ||qiyipic.com/common/*/225x230.jpg (easylistchina.txt: 4291) .qiyipic.com/common/.*/225x230\.jpg -# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina+easylist.txt: 4299) +# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina.txt: 4290) .qiyipic.com/common/.*%E9%80%9A%E6%A0%8F -# ||qiyipic.com/common/$object-subrequest (easylistchina+easylist.txt: 4298) +# ||qiyipic.com/common/$object-subrequest (easylistchina.txt: 4289) .qiyipic.com/common/ -# ||qiuziti.com/meitu/ddd.gif (easylistchina+easylist.txt: 4297) +# ||qiuziti.com/meitu/ddd.gif (easylistchina.txt: 4288) .qiuziti.com/meitu/ddd\.gif -# ||qiuziti.com/img/rightp20.gif (easylistchina+easylist.txt: 4296) +# ||qiuziti.com/img/rightp20.gif (easylistchina.txt: 4287) .qiuziti.com/img/rightp20\.gif -# ||qiuyi.cn/qiuyi/cooper/ (easylistchina+easylist.txt: 4295) +# ||qiuyi.cn/qiuyi/cooper/ (easylistchina.txt: 4286) .qiuyi.cn/qiuyi/cooper/ -# ||qitete.com/sp/ (easylistchina+easylist.txt: 4294) +# ||qitete.com/sp/ (easylistchina.txt: 4285) .qitete.com/sp/ -# ||qiqibu.com/js/*.gif (easylistchina+easylist.txt: 4293) +# ||qiqibu.com/js/*.gif (easylistchina.txt: 4284) .qiqibu.com/js/.*\.gif -# ||qiporn.com/media/banners/ (easylistchina+easylist.txt: 4292) -.qiporn.com/media/banners/ -# ||qingkong.net/a/980x90_1.jpg (easylistchina+easylist.txt: 4290) +# ||qingkong.net/a/980x90_1.jpg (easylistchina.txt: 4282) .qingkong.net/a/980x90_1\.jpg -# ||qingkai.com/gg_img/ (easylistchina+easylist.txt: 4289) +# ||qingkai.com/gg_img/ (easylistchina.txt: 4281) .qingkai.com/gg_img/ -# ||qingkai.com/2009/html/top.htm (easylistchina+easylist.txt: 4288) +# ||qingkai.com/2009/html/top.htm (easylistchina.txt: 4280) .qingkai.com/2009/html/top\.htm -# ||qimm.org/Uploads/ad/ (easylistchina+easylist.txt: 4287) +# ||qimm.org/Uploads/ad/ (easylistchina.txt: 4279) .qimm.org/Uploads/ad/ -# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina+easylist.txt: 4286) +# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina.txt: 4278) .qilanxiaozhu.*./(.*/)?data/attachment/portal/ -# ||qikuyou.com/images/images/250.png (easylistchina+easylist.txt: 4285) +# ||qikuyou.com/images/images/250.png (easylistchina.txt: 4277) .qikuyou.com/images/images/250\.png -# ||qihoo.com/hot/text.html?site= (easylistchina+easylist.txt: 4284) +# ||qihoo.com/hot/text.html?site= (easylistchina.txt: 4276) .qihoo.com/hot/text\.html\?site= -# ||qihaa.cn/js/ (easylistchina+easylist.txt: 4283) +# ||qihaa.cn/js/ (easylistchina.txt: 4275) .qihaa.cn/js/ -# ||qidian.com/ploy/cloudary08/ (easylistchina+easylist.txt: 4282) +# ||qidian.com/ploy/cloudary08/ (easylistchina.txt: 4274) .qidian.com/ploy/cloudary08/ -# ||qidian.com/ploy/*swf (easylistchina+easylist.txt: 4281) +# ||qidian.com/ploy/*swf (easylistchina.txt: 4273) .qidian.com/ploy/.*swf -# ||qidian.com/Javascript/usia (easylistchina+easylist.txt: 4280) +# ||qidian.com/Javascript/usia (easylistchina.txt: 4272) .qidian.com/Javascript/usia -# ||qidian.com/javascript/SNDAADAltern.js (easylistchina+easylist.txt: 4279) +# ||qidian.com/javascript/SNDAADAltern.js (easylistchina.txt: 4271) .qidian.com/javascript/SNDAADAltern\.js -# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina+easylist.txt: 4278) +# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina.txt: 4270) .qidian.com/Javascript/NewSNDAPop\.js -# ||qidian.com/Javascript/ksjlajUysi (easylistchina+easylist.txt: 4277) +# ||qidian.com/Javascript/ksjlajUysi (easylistchina.txt: 4269) .qidian.com/Javascript/ksjlajUysi -# ||qidian.com/Javascript/kiywyq_ (easylistchina+easylist.txt: 4276) +# ||qidian.com/Javascript/kiywyq_ (easylistchina.txt: 4268) .qidian.com/Javascript/kiywyq_ -# ||qidian.com/Javascript/DoublePop.js (easylistchina+easylist.txt: 4275) +# ||qidian.com/Javascript/DoublePop.js (easylistchina.txt: 4267) .qidian.com/Javascript/DoublePop\.js -# ||qidian.com/Images/book_*_other (easylistchina+easylist.txt: 4274) +# ||qidian.com/Images/book_*_other (easylistchina.txt: 4266) .qidian.com/Images/book_.*_other -# ||qianzhan.com/html/*_txtlinks.html (easylistchina+easylist.txt: 4273) +# ||qianzhan.com/html/*_txtlinks.html (easylistchina.txt: 4265) .qianzhan.com/html/.*_txtlinks\.html -# ||qianmu.org/resource/js/jquery.ads.js (easylistchina+easylist.txt: 4272) +# ||qianmu.org/resource/js/jquery.ads.js (easylistchina.txt: 4264) .qianmu.org/resource/js/jquery\.ads\.js -# ||qianlong.com/vda/$script (easylistchina+easylist.txt: 4271) +# ||qianlong.com/vda/$script (easylistchina.txt: 4263) .qianlong.com/vda/ -# ||qiangdiao.com/pr.png (easylistchina+easylist.txt: 4270) +# ||qiangdiao.com/pr.png (easylistchina.txt: 4262) .qiangdiao.com/pr\.png -# ||qhnews.com/tupian/ (easylistchina+easylist.txt: 4269) +# ||qhnews.com/tupian/ (easylistchina.txt: 4261) .qhnews.com/tupian/ -# ||qfans.net/js/open (easylistchina+easylist.txt: 4268) +# ||qhimg.com/t01752fdc322b424d08.jpg (easylistchina.txt: 4260) +.qhimg.com/t01752fdc322b424d08\.jpg +# ||qhimg.com/t01119598c484b6ca8e.jpg (easylistchina.txt: 4259) +.qhimg.com/t01119598c484b6ca8e\.jpg +# ||qhimg.com/t0107605853c9b6d004.jpg (easylistchina.txt: 4258) +.qhimg.com/t0107605853c9b6d004\.jpg +# ||qfans.net/js/open (easylistchina.txt: 4257) .qfans.net/js/open -# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina+easylist.txt: 4267) +# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina.txt: 4256) .qdmm.com/javascript/SNDAADAltern\.js -# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina+easylist.txt: 4266) +# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina.txt: 4255) .qdmm.com/javascript/NewSNDAPop\.js -# ||qdjimo.com/html/js/ (easylistchina+easylist.txt: 4265) +# ||qdjimo.com/html/js/ (easylistchina.txt: 4254) .qdjimo.com/html/js/ -# ||qbox.me/ftq_ (easylistchina+easylist.txt: 4264) +# ||qbox.me/ftq_ (easylistchina.txt: 4253) .qbox.me/ftq_ -# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina+easylist.txt: 4263) +# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina.txt: 4252) .qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo\.jpg -# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina+easylist.txt: 4262) +# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina.txt: 4251) .qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6\.gif -# ||q.cn/images/notepad.gif (easylistchina+easylist.txt: 4261) +# ||q.cn/images/notepad.gif (easylistchina.txt: 4250) .q.cn/images/notepad\.gif -# ||q.cn/images/floater_ (easylistchina+easylist.txt: 4260) +# ||q.cn/images/floater_ (easylistchina.txt: 4249) .q.cn/images/floater_ -# ||q-touch.com.tw^$subdocument (easylistchina+easylist.txt: 4259) +# ||q-touch.com.tw^$subdocument (easylistchina.txt: 4248) .q-touch.com.tw -# ||pzzc.net/data/attachment/ad2/ (easylistchina+easylist.txt: 4258) +# ||pzzc.net/data/attachment/ad2/ (easylistchina.txt: 4247) .pzzc.net/data/attachment/ad2/ -# ||pzxw.cn/1212banner (easylistchina+easylist.txt: 4257) +# ||pzxw.cn/1212banner (easylistchina.txt: 4246) .pzxw.cn/1212banner -# ||putonghua520.com/skins/10ym/tj (easylistchina+easylist.txt: 4256) +# ||putonghua520.com/skins/10ym/tj (easylistchina.txt: 4245) .putonghua520.com/skins/10ym/tj -# ||putonghua520.com/skins/10ym/123.jpg (easylistchina+easylist.txt: 4255) +# ||putonghua520.com/skins/10ym/123.jpg (easylistchina.txt: 4244) .putonghua520.com/skins/10ym/123\.jpg -# ||publish.ad.youth.cn^ (easylistchina+easylist.txt: 4254) +# ||publish.ad.youth.cn^ (easylistchina.txt: 4243) .publish.ad.youth.cn -# ||publicize.liao1.com^ (easylistchina+easylist.txt: 4253) +# ||publicize.liao1.com^ (easylistchina.txt: 4242) .publicize.liao1.com -# ||pub.sxrtv.com/crossdomain.xml (easylistchina+easylist.txt: 4252) +# ||pub.sxrtv.com/crossdomain.xml (easylistchina.txt: 4241) .pub.sxrtv.com/crossdomain\.xml -# ||pub.stockstar.com/feedback/ (easylistchina+easylist.txt: 4251) +# ||pub.stockstar.com/feedback/ (easylistchina.txt: 4240) .pub.stockstar.com/feedback/ -# ||pub.mop.com^ (easylistchina+easylist.txt: 4250) +# ||pub.mop.com^ (easylistchina.txt: 4239) .pub.mop.com -# ||pub.funshion.com^ (easylistchina+easylist.txt: 4249) +# ||pub.funshion.com^ (easylistchina.txt: 4238) .pub.funshion.com -# ||ptraveler.com/pt.js (easylistchina+easylist.txt: 4248) -.ptraveler.com/pt\.js -# ||ptfish.com/08html/ (easylistchina+easylist.txt: 4247) +# ||ptfish.com/08html/ (easylistchina.txt: 4237) .ptfish.com/08html/ -# ||ptfish.com/*/ad$image,object (easylistchina+easylist.txt: 4246) +# ||ptfish.com/*/ad$image,object (easylistchina.txt: 4236) .ptfish.com/.*/ad -# ||ptbus.com/s.js (easylistchina+easylist.txt: 4245) +# ||ptbus.com/s.js (easylistchina.txt: 4235) .ptbus.com/s\.js -# ||ptbs.sme.gov.cn/images/231.gif (easylistchina+easylist.txt: 4244) +# ||ptbs.sme.gov.cn/images/231.gif (easylistchina.txt: 4234) .ptbs.sme.gov.cn/images/231\.gif -# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina+easylist.txt: 4243) +# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina.txt: 4233) .pstatp.com/resource/toutiao_wap/static/js/lib/ads_ -# ||ps123.net/MyFile/ (easylistchina+easylist.txt: 4242) +# ||ps123.net/MyFile/ (easylistchina.txt: 4232) .ps123.net/MyFile/ -# ||property.hk/ad_$script (easylistchina+easylist.txt: 4241) +# ||property.hk/ad_$script (easylistchina.txt: 4231) .property.hk/ad_ -# ||pro.iweihai.cn^ (easylistchina+easylist.txt: 4240) +# ||pro.iweihai.cn^ (easylistchina.txt: 4230) .pro.iweihai.cn -# ||price.com.hk/scripts/ysm.js (easylistchina+easylist.txt: 4239) +# ||price.com.hk/scripts/ysm.js (easylistchina.txt: 4229) .price.com.hk/scripts/ysm\.js -# ||price.com.hk/dfp_price.php? (easylistchina+easylist.txt: 4238) +# ||price.com.hk/dfp_price.php? (easylistchina.txt: 4228) .price.com.hk/dfp_price\.php\? -# ||prettyvirgin.com/js/show.html (easylistchina+easylist.txt: 4237) +# ||prettyvirgin.com/js/show.html (easylistchina.txt: 4227) .prettyvirgin.com/js/show\.html -# ||prettyvirgin.com/images/banners/ (easylistchina+easylist.txt: 4236) +# ||prettyvirgin.com/images/banners/ (easylistchina.txt: 4226) .prettyvirgin.com/images/banners/ -# ||pptiyu.com/index/js/float.js (easylistchina+easylist.txt: 4235) +# ||pptiyu.com/index/js/float.js (easylistchina.txt: 4225) .pptiyu.com/index/js/float\.js -# ||ppsj.com.cn/ppsj728.gif (easylistchina+easylist.txt: 4234) +# ||ppsj.com.cn/ppsj728.gif (easylistchina.txt: 4224) .ppsj.com.cn/ppsj728\.gif -# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina+easylist.txt: 4233) +# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina.txt: 4223) .ppsj.com.cn/images/usa_250_120\.gif -# ||ppsj.com.cn/images/ppsj300.gif (easylistchina+easylist.txt: 4232) +# ||ppsj.com.cn/images/ppsj300.gif (easylistchina.txt: 4222) .ppsj.com.cn/images/ppsj300\.gif -# ||pp.7060.la^ (easylistchina+easylist.txt: 4231) +# ||pp.7060.la^ (easylistchina.txt: 4221) .pp.7060.la -# ||poxiao.com/template/default/images/12345.js (easylistchina+easylist.txt: 4230) +# ||poxiao.com/template/default/images/12345.js (easylistchina.txt: 4220) .poxiao.com/template/default/images/12345\.js -# ||poster.weather.com.cn^ (easylistchina+easylist.txt: 4229) +# ||poster.weather.com.cn^ (easylistchina.txt: 4219) .poster.weather.com.cn -# ||poppur.com/banner/962x100.gif (easylistchina+easylist.txt: 4228) +# ||poppur.com/banner/962x100.gif (easylistchina.txt: 4218) .poppur.com/banner/962x100\.gif -# ||popme.163.com/js/vedioad_ (easylistchina+easylist.txt: 4227) +# ||popme.163.com/js/vedioad_ (easylistchina.txt: 4217) .popme.163.com/js/vedioad_ -# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina+easylist.txt: 4226) +# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina.txt: 4216) .poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408\.jpg -# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina+easylist.txt: 4225) +# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina.txt: 4215) .poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067\.gif -# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina+easylist.txt: 4224) +# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina.txt: 4214) .poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072\.gif -# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina+easylist.txt: 4223) +# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina.txt: 4213) .poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064\.jpg -# ||plurk.com/Ads/ (easylistchina+easylist.txt: 4222) +# ||plurk.com/Ads/ (easylistchina.txt: 4212) .plurk.com/Ads/ -# ||playgm.cn/data/attachment/portal/ (easylistchina+easylist.txt: 4221) +# ||playgm.cn/data/attachment/portal/ (easylistchina.txt: 4211) .playgm.cn/data/attachment/portal/ -# ||playad.xjmg.com^ (easylistchina+easylist.txt: 4220) +# ||playad.xjmg.com^ (easylistchina.txt: 4210) .playad.xjmg.com -# ||pjtime.com/js/show_ad (easylistchina+easylist.txt: 4219) +# ||pjtime.com/js/show_ad (easylistchina.txt: 4209) .pjtime.com/js/show_ad -# ||pixfs.net/js/mib_falcon. (easylistchina+easylist.txt: 4218) +# ||pixfs.net/js/mib_falcon. (easylistchina.txt: 4208) .pixfs.net/js/mib_falcon\. -# ||pixfs.net/js/mib.min.js (easylistchina+easylist.txt: 4217) +# ||pixfs.net/js/mib.min.js (easylistchina.txt: 4207) .pixfs.net/js/mib\.min\.js -# ||pipi.cn/player/ (easylistchina+easylist.txt: 4216) +# ||pipi.cn/player/ (easylistchina.txt: 4206) .pipi.cn/player/ -# ||pingpang.info/uploadfile/tsp.gif (easylistchina+easylist.txt: 4215) +# ||pingpang.info/uploadfile/tsp.gif (easylistchina.txt: 4205) .pingpang.info/uploadfile/tsp\.gif -# ||pingpang.info/uploadfile/butterfly.gif (easylistchina+easylist.txt: 4214) +# ||pingpang.info/uploadfile/butterfly.gif (easylistchina.txt: 4204) .pingpang.info/uploadfile/butterfly\.gif -# ||pingpang.info/uploadfile/950X90B.gif (easylistchina+easylist.txt: 4213) +# ||pingpang.info/uploadfile/950X90B.gif (easylistchina.txt: 4203) .pingpang.info/uploadfile/950X90B\.gif -# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina+easylist.txt: 4212) +# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina.txt: 4202) .pingpang.info/themes/v1\.0/images/yasaka\. -# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina+easylist.txt: 4211) +# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina.txt: 4201) .pingpang.info/bbs/UploadFile/2014-5/201455214543955851\.gif -# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina+easylist.txt: 4210) +# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina.txt: 4200) .pingpang.info/bbs/UploadFile/2014-11/20141113852238131\.jpg -# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina+easylist.txt: 4209) +# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina.txt: 4199) .pingpang.info/bbs/UploadFile/2013-11/xiom\.gif -# ||pingpang.info/banner/ (easylistchina+easylist.txt: 4208) +# ||pingpang.info/banner/ (easylistchina.txt: 4198) .pingpang.info/banner/ -# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina+easylist.txt: 4207) +# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina.txt: 4197) .pimg.tw/ifans/1399368662-4247048381\.png -# ||pifa.fobshanghai.com/link/ (easylistchina+easylist.txt: 4206) +# ||pifa.fobshanghai.com/link/ (easylistchina.txt: 4196) .pifa.fobshanghai.com/link/ -# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina+easylist.txt: 4204) +# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina.txt: 4194) .pics.wanlibo.com/js/pagemodulestat\.js -# ||pic.zol-img.com.cn^*/box (easylistchina+easylist.txt: 4203) +# ||pic.zol-img.com.cn^*/box (easylistchina.txt: 4193) .pic.zol-img.com.cn/.*/box -# ||pic.zol-img.com.cn^$object (easylistchina+easylist.txt: 4202) +# ||pic.zol-img.com.cn^$object (easylistchina.txt: 4192) .pic.zol-img.com.cn -# ||pic.zol-img.com.cn/20*backgrou (easylistchina+easylist.txt: 4201) +# ||pic.zol-img.com.cn/20*backgrou (easylistchina.txt: 4191) .pic.zol-img.com.cn/20.*backgrou -# ||pic.yupoo.com/showflash/ (easylistchina+easylist.txt: 4200) +# ||pic.yupoo.com/showflash/ (easylistchina.txt: 4190) .pic.yupoo.com/showflash/ -# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina+easylist.txt: 4199) +# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina.txt: 4189) .pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3\.gif -# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina+easylist.txt: 4198) +# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina.txt: 4188) .pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR\.png -# ||pic.xgo-img.com.cn^ (easylistchina+easylist.txt: 4197) +# ||pic.xgo-img.com.cn^ (easylistchina.txt: 4187) .pic.xgo-img.com.cn -# ||pic.wpdaxue.com^*.js (easylistchina+easylist.txt: 4196) +# ||pic.wpdaxue.com^*.js (easylistchina.txt: 4186) .pic.wpdaxue.com/.*\.js -# ||pic.taian.com^ (easylistchina+easylist.txt: 4195) +# ||pic.taian.com^ (easylistchina.txt: 4185) .pic.taian.com -# ||pic.jd-bbs.com^*.swf (easylistchina+easylist.txt: 4193) +# ||pic.jd-bbs.com^*.swf (easylistchina.txt: 4183) .pic.jd-bbs.com/.*\.swf -# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina+easylist.txt: 4192) +# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina.txt: 4182) .pic.gongkong.com/UploadPic/gongkong/ -# ||pic.fengniao.com^ (easylistchina+easylist.txt: 4191) +# ||pic.fengniao.com^ (easylistchina.txt: 4181) .pic.fengniao.com -# ||pic.ea3w.com^ (easylistchina+easylist.txt: 4190) +# ||pic.ea3w.com^ (easylistchina.txt: 4180) .pic.ea3w.com -# ||pic.959.cn/media/js/ (easylistchina+easylist.txt: 4189) +# ||pic.959.cn/media/js/ (easylistchina.txt: 4179) .pic.959.cn/media/js/ -# ||pic.2u.com.cn^ (easylistchina+easylist.txt: 4188) +# ||pic.2u.com.cn^ (easylistchina.txt: 4178) .pic.2u.com.cn -# ||pic.111cn.net^ (easylistchina+easylist.txt: 4187) +# ||pic.111cn.net^ (easylistchina.txt: 4177) .pic.111cn.net -# ||pic.0597kk.com^ (easylistchina+easylist.txt: 4186) +# ||pic.0597kk.com^ (easylistchina.txt: 4176) .pic.0597kk.com -# ||piaoliang.com/js/gg.js (easylistchina+easylist.txt: 4185) +# ||piaoliang.com/js/gg.js (easylistchina.txt: 4175) .piaoliang.com/js/gg\.js -# ||piaohua.com/js/yzz/$script (easylistchina+easylist.txt: 4184) +# ||piaohua.com/js/yzz/$script (easylistchina.txt: 4174) .piaohua.com/js/yzz/ -# ||piaohua.com/js/wlfloat.js (easylistchina+easylist.txt: 4183) +# ||piaohua.com/js/wlfloat.js (easylistchina.txt: 4173) .piaohua.com/js/wlfloat\.js -# ||piaodown.com/other/*.js (easylistchina+easylist.txt: 4182) +# ||piaodown.com/other/*.js (easylistchina.txt: 4172) .piaodown.com/other/.*\.js -# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina+easylist.txt: 4181) +# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina.txt: 4171) .piao.com.cn/Flash/Scripts/FloatLeftRight_ -# ||phpfans.net/image/sponsors/ (easylistchina+easylist.txt: 4180) +# ||phpfans.net/image/sponsors/ (easylistchina.txt: 4170) .phpfans.net/image/sponsors/ -# ||phpcms.cn/statics/images/video/ad (easylistchina+easylist.txt: 4179) +# ||phpcms.cn/statics/images/video/ad (easylistchina.txt: 4169) .phpcms.cn/statics/images/video/ad -# ||phpad.cqnews.net^ (easylistchina+easylist.txt: 4178) +# ||phpad.cqnews.net^ (easylistchina.txt: 4168) .phpad.cqnews.net -# ||photofans.cn/cooperator/banner/ (easylistchina+easylist.txt: 4177) +# ||photofans.cn/cooperator/banner/ (easylistchina.txt: 4167) .photofans.cn/cooperator/banner/ -# ||photo.erji.com^*.swf (easylistchina+easylist.txt: 4176) +# ||photo.erji.com^*.swf (easylistchina.txt: 4166) .photo.erji.com/.*\.swf -# ||photo.erji.com^*.gif (easylistchina+easylist.txt: 4175) +# ||photo.erji.com^*.gif (easylistchina.txt: 4165) .photo.erji.com/.*\.gif -# ||photo.erji.com/saha.jpg (easylistchina+easylist.txt: 4174) +# ||photo.erji.com/saha.jpg (easylistchina.txt: 4164) .photo.erji.com/saha\.jpg -# ||pharmnet.com.cn/js/float_div.js (easylistchina+easylist.txt: 4173) +# ||pharmnet.com.cn/js/float_div.js (easylistchina.txt: 4163) .pharmnet.com.cn/js/float_div\.js -# ||pharmnet.com.cn/cnbanner/ (easylistchina+easylist.txt: 4172) +# ||pharmnet.com.cn/cnbanner/ (easylistchina.txt: 4162) .pharmnet.com.cn/cnbanner/ -# ||ph66.com/js/float.js (easylistchina+easylist.txt: 4171) +# ||ph66.com/js/float.js (easylistchina.txt: 4161) .ph66.com/js/float\.js -# ||ph66.com/bbsgg/ (easylistchina+easylist.txt: 4170) +# ||ph66.com/bbsgg/ (easylistchina.txt: 4160) .ph66.com/bbsgg/ -# ||ph66.com/attachment/*.swf (easylistchina+easylist.txt: 4169) +# ||ph66.com/attachment/*.swf (easylistchina.txt: 4159) .ph66.com/attachment/.*\.swf -# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina+easylist.txt: 4168) +# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina.txt: 4158) .pgzhibo.com/uploads/image/20150902/1441126837\.jpg -# ||pgzhibo.com/uploads/image/20*.gif (easylistchina+easylist.txt: 4167) +# ||pgzhibo.com/uploads/image/20*.gif (easylistchina.txt: 4157) .pgzhibo.com/uploads/image/20.*\.gif -# ||pg.udn.com/BT/*.swf (easylistchina+easylist.txt: 4166) +# ||pg.udn.com/BT/*.swf (easylistchina.txt: 4156) .pg.udn.com/BT/.*\.swf -# ||pfp.sina.com.cn^$script,subdocument (easylistchina+easylist.txt: 4165) +# ||pfp.sina.com.cn^$script,subdocument (easylistchina.txt: 4155) .pfp.sina.com.cn -# ||pfizer.com.tw^$subdocument (easylistchina+easylist.txt: 4164) +# ||pfizer.com.tw^$subdocument (easylistchina.txt: 4154) .pfizer.com.tw -# ||people.com.cn/img/gjt/ (easylistchina+easylist.txt: 4163) +# ||people.com.cn/img/gjt/ (easylistchina.txt: 4153) .people.com.cn/img/gjt/ -# ||people.com.cn/img/2013people/wza/domready (easylistchina+easylist.txt: 4162) +# ||people.com.cn/img/2013people/wza/domready (easylistchina.txt: 4152) .people.com.cn/img/2013people/wza/domready -# ||people.com.cn/adv/ (easylistchina+easylist.txt: 4161) +# ||people.com.cn/adv/ (easylistchina.txt: 4151) .people.com.cn/adv/ -# ||people.cn^*/js/m.js (easylistchina+easylist.txt: 4160) +# ||people.cn^*/js/m.js (easylistchina.txt: 4150) .people.cn/.*/js/m\.js -# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina+easylist.txt: 4159) +# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina.txt: 4149) .penglai.com.cn/UploadFile/image/.*\.gif -# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina+easylist.txt: 4158) +# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina.txt: 4148) .peasyun.com/Uploads/Thumbs/advs_ -# ||pd.xxhh.com/list.js (easylistchina+easylist.txt: 4157) +# ||pd.xxhh.com/list.js (easylistchina.txt: 4147) .pd.xxhh.com/list\.js -# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina+easylist.txt: 4156) +# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina.txt: 4146) .pcworld.com.cn/Article/UploadFiles/201403/2014031016150885\.jpg -# ||pcstore.com.tw/css/myacc_init.js (easylistchina+easylist.txt: 4155) +# ||pcstore.com.tw/css/myacc_init.js (easylistchina.txt: 4145) .pcstore.com.tw/css/myacc_init\.js -# ||pcs1.app.joy.cn^ (easylistchina+easylist.txt: 4154) +# ||pcs1.app.joy.cn^ (easylistchina.txt: 4144) .pcs1.app.joy.cn -# ||pcpp.com.cn/news/ad/ (easylistchina+easylist.txt: 4153) +# ||pcpp.com.cn/news/ad/ (easylistchina.txt: 4143) .pcpp.com.cn/news/ad/ -# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina+easylist.txt: 4152) +# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina.txt: 4142) .pcpp.com.cn/news/a/.*_article_right\.html -# ||pcpp.com.cn*/pcpp.jpg (easylistchina+easylist.txt: 4151) +# ||pcpp.com.cn*/pcpp.jpg (easylistchina.txt: 4141) .pcpp.com.cn*./(.*/)?pcpp\.jpg -# ||pconline.com.cn/zt/*/double11/ (easylistchina+easylist.txt: 4150) -.pconline.com.cn/zt/.*/double11/ -# ||pconline.com.cn/test/*.html? (easylistchina+easylist.txt: 4149) +# ||pconline.com.cn/test/*.html? (easylistchina.txt: 4140) .pconline.com.cn/test/.*\.html\? -# ||pconline.com.cn/pconline/download/fz/ (easylistchina+easylist.txt: 4148) +# ||pconline.com.cn/pconline/download/fz/ (easylistchina.txt: 4139) .pconline.com.cn/pconline/download/fz/ -# ||pconline.com.cn/js/ivy.js (easylistchina+easylist.txt: 4147) +# ||pconline.com.cn/js/ivy.js (easylistchina.txt: 4138) .pconline.com.cn/js/ivy\.js -# ||pconline.com.cn/js/ad_ (easylistchina+easylist.txt: 4146) +# ||pconline.com.cn/js/ad_ (easylistchina.txt: 4137) .pconline.com.cn/js/ad_ -# ||pconline.com.cn/intelcorefamily/ (easylistchina+easylist.txt: 4145) +# ||pconline.com.cn/intelcorefamily/ (easylistchina.txt: 4136) .pconline.com.cn/intelcorefamily/ -# ||pconline.com.cn/download/*/intf*.js (easylistchina+easylist.txt: 4144) +# ||pconline.com.cn/download/*/intf*.js (easylistchina.txt: 4135) .pconline.com.cn/download/.*/intf.*\.js -# ||pconline.com.cn/_hux_/ (easylistchina+easylist.txt: 4143) +# ||pconline.com.cn/_hux_/ (easylistchina.txt: 4134) .pconline.com.cn/_hux_/ -# ||pcjishu.com/other/yj300x3006.jpg (easylistchina+easylist.txt: 4142) +# ||pcjishu.com/other/yj300x3006.jpg (easylistchina.txt: 4133) .pcjishu.com/other/yj300x3006\.jpg -# ||pchome.com.tw/js/idlead.js (easylistchina+easylist.txt: 4141) +# ||pchome.com.tw/js/idlead.js (easylistchina.txt: 4132) .pchome.com.tw/js/idlead\.js -# ||pcgames.com.cn/jctj/ (easylistchina+easylist.txt: 4139) +# ||pcgames.com.cn/jctj/ (easylistchina.txt: 4130) .pcgames.com.cn/jctj/ -# ||pcgames.com.cn/g/ (easylistchina+easylist.txt: 4138) +# ||pcgames.com.cn/g/ (easylistchina.txt: 4129) .pcgames.com.cn/g/ -# ||pcgames.com.cn/download/newnq/ (easylistchina+easylist.txt: 4137) +# ||pcgames.com.cn/download/newnq/ (easylistchina.txt: 4128) .pcgames.com.cn/download/newnq/ -# ||pccoo.cn/js/dlv1.0.js (easylistchina+easylist.txt: 4136) +# ||pccoo.cn/js/dlv1.0.js (easylistchina.txt: 4127) .pccoo.cn/js/dlv1\.0\.js -# ||pcbeta.com/static/image/microsoftstore/ (easylistchina+easylist.txt: 4135) +# ||pcbeta.com/static/image/microsoftstore/ (easylistchina.txt: 4126) .pcbeta.com/static/image/microsoftstore/ -# ||pc3w.com/js/ (easylistchina+easylist.txt: 4134) +# ||pc3w.com/js/ (easylistchina.txt: 4125) .pc3w.com/js/ -# ||pc141.com/statics/new_img/info_left.png (easylistchina+easylist.txt: 4133) +# ||pc141.com/statics/new_img/info_left.png (easylistchina.txt: 4124) .pc141.com/statics/new_img/info_left\.png -# ||pc0359.cn/js/un.js (easylistchina+easylist.txt: 4132) +# ||pc0359.cn/js/un.js (easylistchina.txt: 4123) .pc0359.cn/js/un\.js -# ||pc0359.cn/data/xzb_haha.js (easylistchina+easylist.txt: 4131) +# ||pc0359.cn/data/xzb_haha.js (easylistchina.txt: 4122) .pc0359.cn/data/xzb_haha\.js -# ||panpan.org/templets/ad/ (easylistchina+easylist.txt: 4130) +# ||panzz.com/file/ads/ (easylistchina.txt: 4121) +.panzz.com/file/ads/ +# ||panpan.org/templets/ad/ (easylistchina.txt: 4120) .panpan.org/templets/ad/ -# ||panpan.org/plus/img/ (easylistchina+easylist.txt: 4129) +# ||panpan.org/plus/img/ (easylistchina.txt: 4119) .panpan.org/plus/img/ -# ||panpan.org/other/ (easylistchina+easylist.txt: 4128) +# ||panpan.org/other/ (easylistchina.txt: 4118) .panpan.org/other/ -# ||panpan.org/js/google (easylistchina+easylist.txt: 4127) +# ||panpan.org/js/google (easylistchina.txt: 4117) .panpan.org/js/google -# ||panda.kdnet.net^ (easylistchina+easylist.txt: 4126) +# ||panda.kdnet.net^ (easylistchina.txt: 4116) .panda.kdnet.net -# ||p8u.hinet.net^ (easylistchina+easylist.txt: 4125) +# ||p8u.hinet.net^ (easylistchina.txt: 4115) .p8u.hinet.net -# ||p4p.sina.com.cn^ (easylistchina+easylist.txt: 4124) +# ||p4p.sina.com.cn^ (easylistchina.txt: 4114) .p4p.sina.com.cn -# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina+easylist.txt: 4123) +# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina.txt: 4113) .p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124\.jpg -# ||p.zol.com.cn/download/detail.js (easylistchina+easylist.txt: 4122) +# ||p.zol.com.cn/download/detail.js (easylistchina.txt: 4112) .p.zol.com.cn/download/detail\.js -# ||p.zol-img.com.cn^ (easylistchina+easylist.txt: 4121) +# ||p.zol-img.com.cn^ (easylistchina.txt: 4111) .p.zol-img.com.cn -# ||p.szonline.net^ (easylistchina+easylist.txt: 4120) +# ||p.szonline.net^ (easylistchina.txt: 4110) .p.szonline.net -# ||p.kugou.com/?id= (easylistchina+easylist.txt: 4119) +# ||p.kugou.com/?id= (easylistchina.txt: 4109) .p.kugou.com/\?id= -# ||p.aty.sohu.com/p?cat= (easylistchina+easylist.txt: 4118) +# ||p.aty.sohu.com/p?cat= (easylistchina.txt: 4108) .p.aty.sohu.com/p\?cat= -# ||p.37youyou.com/*.jpg (easylistchina+easylist.txt: 4117) +# ||p.37youyou.com/*.jpg (easylistchina.txt: 4107) .p.37youyou.com/.*\.jpg -# ||oyksoft.com/show/s.php/ (easylistchina+easylist.txt: 4116) +# ||oyksoft.com/show/s.php/ (easylistchina.txt: 4106) .oyksoft.com/show/s\.php/ -# ||overseaschinesemedia.com/img/*.gif (easylistchina+easylist.txt: 4115) +# ||overseaschinesemedia.com/img/*.gif (easylistchina.txt: 4105) .overseaschinesemedia.com/img/.*\.gif -# ||ouyaoxiazai.com^$script,subdocument (easylistchina+easylist.txt: 4114) +# ||ouyaoxiazai.com^$script,subdocument (easylistchina.txt: 4104) .ouyaoxiazai.com -# ||outofmemory.cn/static/tgs/ (easylistchina+easylist.txt: 4113) +# ||outofmemory.cn/static/tgs/ (easylistchina.txt: 4103) .outofmemory.cn/static/tgs/ -# ||ousns.net/daohang/ (easylistchina+easylist.txt: 4112) +# ||ousns.net/daohang/ (easylistchina.txt: 4102) .ousns.net/daohang/ -# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina+easylist.txt: 4111) +# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina.txt: 4101) .oschina.net/uploads/cooperation/.*_banner_ -# ||oschina.net/uploads/ad/ (easylistchina+easylist.txt: 4110) +# ||oschina.net/uploads/ad/ (easylistchina.txt: 4100) .oschina.net/uploads/ad/ -# ||orzx.im/js/*pop (easylistchina+easylist.txt: 4109) +# ||orzx.im/js/*pop (easylistchina.txt: 4099) .orzx.im/js/.*pop -# ||orzx.im/Document/union/ (easylistchina+easylist.txt: 4108) +# ||orzx.im/Document/union/ (easylistchina.txt: 4098) .orzx.im/Document/union/ -# ||orzx.im/Document/recommend/flashpoint.html (easylistchina+easylist.txt: 4107) +# ||orzx.im/Document/recommend/flashpoint.html (easylistchina.txt: 4097) .orzx.im/Document/recommend/flashpoint\.html -# ||orsoon.com//images/ku86.jpg (easylistchina+easylist.txt: 4106) -# ||orsoon.com*/zhuanti/ (easylistchina+easylist.txt: 4105) +# ||orsoon.com//images/ku86.jpg (easylistchina.txt: 4096) +# ||orsoon.com*/zhuanti/ (easylistchina.txt: 4095) .orsoon.com*./(.*/)?zhuanti/ -# ||open-open.com^*_banner. (easylistchina+easylist.txt: 4104) +# ||open-open.com^*_banner. (easylistchina.txt: 4094) .open-open.com/.*_banner\. -# ||open-open.com/lag336x280.png (easylistchina+easylist.txt: 4103) +# ||open-open.com/lag336x280.png (easylistchina.txt: 4093) .open-open.com/lag336x280\.png -# ||open-open.com/jp72890.jpg (easylistchina+easylist.txt: 4102) +# ||open-open.com/jp72890.jpg (easylistchina.txt: 4092) .open-open.com/jp72890\.jpg -# ||open-open.com/jp240200.jpg (easylistchina+easylist.txt: 4101) +# ||open-open.com/jp240200.jpg (easylistchina.txt: 4091) .open-open.com/jp240200\.jpg -# ||open-open.com/j300250n.jpg (easylistchina+easylist.txt: 4100) +# ||open-open.com/j300250n.jpg (easylistchina.txt: 4090) .open-open.com/j300250n\.jpg -# ||ooxxbbs.com/data/attachment/forum/*.gif (easylistchina+easylist.txt: 4099) -.ooxxbbs.com/data/attachment/forum/.*\.gif -# ||onlinedown.net/zhuangjiad/ (easylistchina+easylist.txt: 4098) +# ||onlinedown.net/zhuangjiad/ (easylistchina.txt: 4089) .onlinedown.net/zhuangjiad/ -# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina+easylist.txt: 4097) +# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina.txt: 4088) .onlinedown.net/newhuagg/.*_pic_ -# ||online.cq.cn/huodong/css/ (easylistchina+easylist.txt: 4096) +# ||online.cq.cn/huodong/css/ (easylistchina.txt: 4087) .online.cq.cn/huodong/css/ -# ||online.cq.cn/commonweb/commonright/right_side (easylistchina+easylist.txt: 4095) +# ||online.cq.cn/commonweb/commonright/right_side (easylistchina.txt: 4086) .online.cq.cn/commonweb/commonright/right_side -# ||onegreen.net/MyFile/ (easylistchina+easylist.txt: 4094) +# ||onegreen.net/MyFile/ (easylistchina.txt: 4085) .onegreen.net/MyFile/ -# ||onedala.tv/uploads/banner/ (easylistchina+easylist.txt: 4093) +# ||onedala.tv/uploads/banner/ (easylistchina.txt: 4084) .onedala.tv/uploads/banner/ -# ||on.cc/js/v2/iframe_ysm_ (easylistchina+easylist.txt: 4092) +# ||on.cc/js/v2/iframe_ysm_ (easylistchina.txt: 4083) .on.cc/js/v2/iframe_ysm_ -# ||okbmf.com^*950_120 (easylistchina+easylist.txt: 4091) +# ||okbmf.com^*950_120 (easylistchina.txt: 4082) .okbmf.com/.*950_120 -# ||ok.432kkk.com^ (easylistchina+easylist.txt: 4090) +# ||ok.432kkk.com^ (easylistchina.txt: 4081) .ok.432kkk.com -# ||oiihk.com/anime/cm.js (easylistchina+easylist.txt: 4089) +# ||oiihk.com/anime/cm.js (easylistchina.txt: 4080) .oiihk.com/anime/cm\.js -# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina+easylist.txt: 4088) +# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina.txt: 4079) .ofweek.com/StaticPage/gongkong/ad_ -# ||ofweek.com/pop/ad/ (easylistchina+easylist.txt: 4087) +# ||ofweek.com/pop/ad/ (easylistchina.txt: 4078) .ofweek.com/pop/ad/ -# ||oa.hinews.cn/work/img/ (easylistchina+easylist.txt: 4086) +# ||oa.hinews.cn/work/img/ (easylistchina.txt: 4077) .oa.hinews.cn/work/img/ -# ||nvsheng.com/js/gg.js (easylistchina+easylist.txt: 4085) +# ||nvsheng.com/js/gg.js (easylistchina.txt: 4076) .nvsheng.com/js/gg\.js -# ||nutrimate.com.tw^$subdocument (easylistchina+easylist.txt: 4084) +# ||nutrimate.com.tw^$subdocument (easylistchina.txt: 4075) .nutrimate.com.tw -# ||nttpcs.cn/ax/incoto.gif (easylistchina+easylist.txt: 4083) +# ||nttpcs.cn/ax/incoto.gif (easylistchina.txt: 4074) .nttpcs.cn/ax/incoto\.gif -# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina+easylist.txt: 4082) +# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina.txt: 4073) .ntpcb.com/html/channel/citypark/images/p83_temp_ -# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina+easylist.txt: 4081) +# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina.txt: 4072) .ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168\.png -# ||nownews.com/include_house/product.html (easylistchina+easylist.txt: 4080) +# ||nownews.com/include_house/product.html (easylistchina.txt: 4071) .nownews.com/include_house/product\.html -# ||nownews.com/events/ (easylistchina+easylist.txt: 4079) +# ||nownews.com/events/ (easylistchina.txt: 4070) .nownews.com/events/ -# ||nokiacn.net/gg*.htm (easylistchina+easylist.txt: 4078) +# ||nokiacn.net/gg*.htm (easylistchina.txt: 4069) .nokiacn.net/gg.*\.htm -# ||nokiacn.net/baidu.htm (easylistchina+easylist.txt: 4077) +# ||nokiacn.net/baidu.htm (easylistchina.txt: 4068) .nokiacn.net/baidu\.htm -# ||no1.168abc.net/upload/ (easylistchina+easylist.txt: 4076) +# ||no1.168abc.net/upload/ (easylistchina.txt: 4067) .no1.168abc.net/upload/ -# ||nnnews.net/public/xqymgg/ (easylistchina+easylist.txt: 4075) +# ||nnnews.net/public/xqymgg/ (easylistchina.txt: 4066) .nnnews.net/public/xqymgg/ -# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina+easylist.txt: 4073) +# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina.txt: 4064) .njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds -# ||niwozhi.net/960x90.gif (easylistchina+easylist.txt: 4072) +# ||niwozhi.net/960x90.gif (easylistchina.txt: 4063) .niwozhi.net/960x90\.gif -# ||niutuku.com/skin/style2013/ad/ (easylistchina+easylist.txt: 4071) +# ||niutuku.com/skin/style2013/ad/ (easylistchina.txt: 4062) .niutuku.com/skin/style2013/ad/ -# ||niu20.com/g/ (easylistchina+easylist.txt: 4070) +# ||niu20.com/g/ (easylistchina.txt: 4061) .niu20.com/g/ -# ||ngacn.cc/common_res/js_adscommon.js (easylistchina+easylist.txt: 4069) +# ||ngacn.cc/common_res/js_adscommon.js (easylistchina.txt: 4060) .ngacn.cc/common_res/js_adscommon\.js -# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina+easylist.txt: 4068) +# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina.txt: 4059) .nextmedia.com/web_images/recruit_banner\.jpg -# ||nexoncn.com/img/pic/rili.gif (easylistchina+easylist.txt: 4067) +# ||nexoncn.com/img/pic/rili.gif (easylistchina.txt: 4058) .nexoncn.com/img/pic/rili\.gif -# ||newssc.org/2014images/cd*yy (easylistchina+easylist.txt: 4066) +# ||newssc.org/2014images/cd*yy (easylistchina.txt: 4057) .newssc.org/2014images/cd.*yy -# ||newssc.org/2014images/1378110741538.jpg (easylistchina+easylist.txt: 4065) +# ||newssc.org/2014images/1378110741538.jpg (easylistchina.txt: 4056) .newssc.org/2014images/1378110741538\.jpg -# ||newsmth.net/nForum/files/adv/ (easylistchina+easylist.txt: 4064) +# ||newsmth.net/nForum/files/adv/ (easylistchina.txt: 4055) .newsmth.net/nForum/files/adv/ -# ||newsmth.net/nForum/baiduunion/ (easylistchina+easylist.txt: 4063) +# ||newsmth.net/nForum/baiduunion/ (easylistchina.txt: 4054) .newsmth.net/nForum/baiduunion/ -# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina+easylist.txt: 4062) +# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina.txt: 4053) .newsgroup.la/search/ysm/pam430x80\.swf -# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina+easylist.txt: 4061) +# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina.txt: 4052) .newsgroup.la/ad/yahoo/fad\.gif -# ||news18a.com/image/ad_ina/ (easylistchina+easylist.txt: 4060) +# ||news18a.com/image/ad_ina/ (easylistchina.txt: 4051) .news18a.com/image/ad_ina/ -# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina+easylist.txt: 4059) +# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina.txt: 4050) .news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c\.png -# ||news.tom.com/v2008.js (easylistchina+easylist.txt: 4058) +# ||news.tom.com/v2008.js (easylistchina.txt: 4049) .news.tom.com/v2008\.js -# ||news.sina.com.tw/js/ti.js (easylistchina+easylist.txt: 4057) +# ||news.sina.com.tw/js/ti.js (easylistchina.txt: 4048) .news.sina.com.tw/js/ti\.js -# ||news.sina.com.cn/js/792/*head*.js (easylistchina+easylist.txt: 4055) +# ||news.sina.com.cn/js/792/*head*.js (easylistchina.txt: 4046) .news.sina.com.cn/js/792/.*head.*\.js -# ||news.hz66.com/IAA/201111/ (easylistchina+easylist.txt: 4054) +# ||news.hz66.com/IAA/201111/ (easylistchina.txt: 4045) .news.hz66.com/IAA/201111/ -# ||news.cn/news/ad/ (easylistchina+easylist.txt: 4053) +# ||news.cn/news/ad/ (easylistchina.txt: 4044) .news.cn/news/ad/ -# ||news.cn/forum/script/float2.js (easylistchina+easylist.txt: 4052) +# ||news.cn/forum/script/float2.js (easylistchina.txt: 4043) .news.cn/forum/script/float2\.js -# ||news.0898.net/NMediaFile/*.swf (easylistchina+easylist.txt: 4051) +# ||news.0898.net/NMediaFile/*.swf (easylistchina.txt: 4042) .news.0898.net/NMediaFile/.*\.swf -# ||news.0898.net/NMediaFile/*.gif (easylistchina+easylist.txt: 4050) +# ||news.0898.net/NMediaFile/*.gif (easylistchina.txt: 4041) .news.0898.net/NMediaFile/.*\.gif -# ||newhua.com/newhuagg/gg_search_ (easylistchina+easylist.txt: 4049) +# ||newhua.com/newhuagg/gg_search_ (easylistchina.txt: 4040) .newhua.com/newhuagg/gg_search_ -# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina+easylist.txt: 4048) +# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina.txt: 4039) .new-icon.ol-img.com/jslib/ad_new\.js -# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina+easylist.txt: 4047) +# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina.txt: 4038) .new-icon.ol-img.com/jslib/ad\.down\.js -# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina+easylist.txt: 4046) +# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina.txt: 4037) .new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao\.jpg -# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina+easylist.txt: 4045) +# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina.txt: 4036) .netdna-cdn.com/wp-content/plugins/popover/ -# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina+easylist.txt: 4044) +# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina.txt: 4035) .neotv.com.cn/images/avs/tc/tc\.js -# ||nen.com.cn/service/js/beitou (easylistchina+easylist.txt: 4043) +# ||nen.com.cn/service/js/beitou (easylistchina.txt: 4034) .nen.com.cn/service/js/beitou -# ||nen.com.cn/eap/ (easylistchina+easylist.txt: 4042) +# ||nen.com.cn/eap/ (easylistchina.txt: 4033) .nen.com.cn/eap/ -# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina+easylist.txt: 4041) +# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina.txt: 4032) .neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b\.jpg -# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina+easylist.txt: 4040) +# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina.txt: 4031) .ncnews.com.cn/statics/js/ban/ix/ban -# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina+easylist.txt: 4039) +# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina.txt: 4030) .ncnews.com.cn/statics/images/2015/ban/dh\.swf -# ||ncdiy.com/webindex/300-250AD.swf (easylistchina+easylist.txt: 4038) +# ||ncdiy.com/webindex/300-250AD.swf (easylistchina.txt: 4029) .ncdiy.com/webindex/300-250AD\.swf -# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina+easylist.txt: 4037) +# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina.txt: 4028) .nba.weibo.com/images/bg/bg_heat\.jpg -# ||nb155.com/images/mysshok.png (easylistchina+easylist.txt: 4036) +# ||nb155.com/images/mysshok.png (easylistchina.txt: 4027) .nb155.com/images/mysshok\.png -# ||narutom.com/v2/v/$subdocument (easylistchina+easylist.txt: 4035) +# ||narutom.com/v2/v/$subdocument (easylistchina.txt: 4026) .narutom.com/v2/v/ -# ||narutom.com/v2/js/ca.js (easylistchina+easylist.txt: 4034) +# ||narutom.com/v2/js/ca.js (easylistchina.txt: 4025) .narutom.com/v2/js/ca\.js -# ||narutom.com/js/jsg2.js (easylistchina+easylist.txt: 4033) +# ||narutom.com/js/jsg2.js (easylistchina.txt: 4024) .narutom.com/js/jsg2\.js -# ||nanrenwo.net/theme/2013/js/top.js (easylistchina+easylist.txt: 4032) +# ||nanrenwo.net/theme/2013/js/top.js (easylistchina.txt: 4023) .nanrenwo.net/theme/2013/js/top\.js -# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina+easylist.txt: 4031) +# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina.txt: 4022) .nanrenwo.net/theme/2013/js/popup.*\.js -# ||nanrenshu.com/rmb/st_dh.js (easylistchina+easylist.txt: 4030) +# ||nanrenshu.com/rmb/st_dh.js (easylistchina.txt: 4021) .nanrenshu.com/rmb/st_dh\.js -# ||nanhai.hinews.cn/zt/img/ (easylistchina+easylist.txt: 4029) +# ||nanren400.com/goto/ (easylistchina.txt: 4020) +.nanren400.com/goto/ +# ||nanhai.hinews.cn/zt/img/ (easylistchina.txt: 4019) .nanhai.hinews.cn/zt/img/ -# ||namipan.cc/includes/js/digg.js (easylistchina+easylist.txt: 4028) +# ||namipan.cc/includes/js/digg.js (easylistchina.txt: 4018) .namipan.cc/includes/js/digg\.js -# ||namipan.cc/baidu/ (easylistchina+easylist.txt: 4027) +# ||namipan.cc/baidu/ (easylistchina.txt: 4017) .namipan.cc/baidu/ -# ||najiadian.cn/shuang11.js (easylistchina+easylist.txt: 4026) +# ||najiadian.cn/shuang11.js (easylistchina.txt: 4016) .najiadian.cn/shuang11\.js -# ||n2.hk/promo/ (easylistchina+easylist.txt: 4025) +# ||n2.hk/promo/ (easylistchina.txt: 4015) .n2.hk/promo/ -# ||mzyz.com/image*/tj/ (easylistchina+easylist.txt: 4024) +# ||mzyz.com/image*/tj/ (easylistchina.txt: 4014) .mzyz.com/image.*/tj/ -# ||mzyfz.*/modules/46/ (easylistchina+easylist.txt: 4023) +# ||mzyfz.*/modules/46/ (easylistchina.txt: 4013) .mzyfz.*./(.*/)?modules/46/ -# ||mywpku.com/adminvm.jpg (easylistchina+easylist.txt: 4022) +# ||mywpku.com/adminvm.jpg (easylistchina.txt: 4012) .mywpku.com/adminvm\.jpg -# ||mywpku.com/*-banner. (easylistchina+easylist.txt: 4021) +# ||mywpku.com/*-banner. (easylistchina.txt: 4011) .mywpku.com/.*-banner\. -# ||myqcloud.com/js/easou.js (easylistchina+easylist.txt: 4020) +# ||myt520.com/images/jiaoyou (easylistchina.txt: 4010) +.myt520.com/images/jiaoyou +# ||myt520.com/images/4493.jpg (easylistchina.txt: 4009) +.myt520.com/images/4493\.jpg +# ||myqcloud.com/js/easou.js (easylistchina.txt: 4008) .myqcloud.com/js/easou\.js -# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina+easylist.txt: 4019) +# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina.txt: 4007) .mymusic.net.tw/upload/mobile_web_tmp/indexad01\. -# ||myhard.com/s?z= (easylistchina+easylist.txt: 4018) +# ||myhard.com/s?z= (easylistchina.txt: 4006) .myhard.com/s\?z= -# ||myhack58.com/js/top (easylistchina+easylist.txt: 4017) +# ||myhack58.com/js/top (easylistchina.txt: 4005) .myhack58.com/js/top -# ||myhack58.com/js/banner.js (easylistchina+easylist.txt: 4016) +# ||myhack58.com/js/banner.js (easylistchina.txt: 4004) .myhack58.com/js/banner\.js -# ||myhack58.com/acdb02/ (easylistchina+easylist.txt: 4015) +# ||myhack58.com/acdb02/ (easylistchina.txt: 4003) .myhack58.com/acdb02/ -# ||myhack58.com/abcd01/ (easylistchina+easylist.txt: 4014) +# ||myhack58.com/abcd01/ (easylistchina.txt: 4002) .myhack58.com/abcd01/ -# ||mydrivers.com/www/2015/s1120151105.png (easylistchina+easylist.txt: 4012) +# ||mydrivers.com/www/2015/s1120151105.png (easylistchina.txt: 4000) .mydrivers.com/www/2015/s1120151105\.png -# ||mydrivers.com/www/*-1000x90. (easylistchina+easylist.txt: 4011) +# ||mydrivers.com/www/*-1000x90. (easylistchina.txt: 3999) .mydrivers.com/www/.*-1000x90\. -# ||mycodes.net/js/hf_txt.js (easylistchina+easylist.txt: 4010) +# ||mycodes.net/js/hf_txt.js (easylistchina.txt: 3998) .mycodes.net/js/hf_txt\.js -# ||mycodes.net/js/down_txt.js (easylistchina+easylist.txt: 4009) +# ||mycodes.net/js/down_txt.js (easylistchina.txt: 3997) .mycodes.net/js/down_txt\.js -# ||mycodes.net/js/$image (easylistchina+easylist.txt: 4008) +# ||mycodes.net/js/$image (easylistchina.txt: 3996) .mycodes.net/js/ -# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina+easylist.txt: 4007) +# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina.txt: 3995) .mybjx.net/theme/default/js/common/mtibjx\.js -# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina+easylist.txt: 4006) +# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina.txt: 3994) .mybjx.net/theme/default/js/common/duilianchn\.js -# ||myad.toocle.com^ (easylistchina+easylist.txt: 4005) +# ||myad.toocle.com^ (easylistchina.txt: 3993) .myad.toocle.com -# ||my0832.com/xyz/upload/ (easylistchina+easylist.txt: 4004) +# ||my0832.com/xyz/upload/ (easylistchina.txt: 3992) .my0832.com/xyz/upload/ -# ||my0511.com/aadd/ (easylistchina+easylist.txt: 4003) +# ||my0511.com/aadd/ (easylistchina.txt: 3991) .my0511.com/aadd/ -# ||my0511.com/*/ad_ (easylistchina+easylist.txt: 4002) +# ||my0511.com/*/ad_ (easylistchina.txt: 3990) .my0511.com/.*/ad_ -# ||mxwz.com/swf/yidong2015.swf (easylistchina+easylist.txt: 4001) +# ||mxwz.com/swf/yidong2015.swf (easylistchina.txt: 3989) .mxwz.com/swf/yidong2015\.swf -# ||mwsl.qiniudn.com/250x250- (easylistchina+easylist.txt: 4000) +# ||mwsl.qiniudn.com/250x250- (easylistchina.txt: 3988) .mwsl.qiniudn.com/250x250- -# ||mw6.me/images/*.gif (easylistchina+easylist.txt: 3999) +# ||mw6.me/images/*.gif (easylistchina.txt: 3987) .mw6.me/images/.*\.gif -# ||muyuge.net/js/bb/ (easylistchina+easylist.txt: 3998) +# ||muyuge.net/js/bb/ (easylistchina.txt: 3986) .muyuge.net/js/bb/ -# ||muyuge.com/js/KillABP.js (easylistchina+easylist.txt: 3997) +# ||muyuge.com/js/KillABP.js (easylistchina.txt: 3985) .muyuge.com/js/KillABP\.js -# ||muyuge.com/js/bb/ (easylistchina+easylist.txt: 3996) +# ||muyuge.com/js/bb/ (easylistchina.txt: 3984) .muyuge.com/js/bb/ -# ||mtrend.cn/images/prome/ (easylistchina+easylist.txt: 3995) +# ||mtrend.cn/images/prome/ (easylistchina.txt: 3983) .mtrend.cn/images/prome/ -# ||mtksj.com/images/ad1225.jpg (easylistchina+easylist.txt: 3994) +# ||mtksj.com/images/ad1225.jpg (easylistchina.txt: 3982) .mtksj.com/images/ad1225\.jpg -# ||mtime.cn/tg/ (easylistchina+easylist.txt: 3993) +# ||mtime.cn/tg/ (easylistchina.txt: 3981) .mtime.cn/tg/ -# ||mt30.com/ok/ (easylistchina+easylist.txt: 3992) +# ||mt30.com/ok/ (easylistchina.txt: 3980) .mt30.com/ok/ -# ||msn.ynet.com/vtui_js01.js (easylistchina+easylist.txt: 3991) +# ||msn.ynet.com/vtui_js01.js (easylistchina.txt: 3979) .msn.ynet.com/vtui_js01\.js -# ||msn.people.com.cn/css/2010tianrun/ (easylistchina+easylist.txt: 3990) +# ||msn.people.com.cn/css/2010tianrun/ (easylistchina.txt: 3978) .msn.people.com.cn/css/2010tianrun/ -# ||msn.com/homep_ad (easylistchina+easylist.txt: 3989) +# ||msn.com/homep_ad (easylistchina.txt: 3977) .msn.com/homep_ad -# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina+easylist.txt: 3988) +# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina.txt: 3976) .mscbsc.com/gbook/telecomhr292x90\.gif -# ||ms211.com/js/tf.js (easylistchina+easylist.txt: 3987) +# ||ms211.com/js/tf.js (easylistchina.txt: 3975) .ms211.com/js/tf\.js -# ||ms211.com/about/$subdocument (easylistchina+easylist.txt: 3986) +# ||ms211.com/about/$subdocument (easylistchina.txt: 3974) .ms211.com/about/ -# ||ms211.com/211tf/ (easylistchina+easylist.txt: 3985) +# ||ms211.com/211tf/ (easylistchina.txt: 3973) .ms211.com/211tf/ -# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina+easylist.txt: 3984) +# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina.txt: 3972) .mracg.com/data/attachment/portal/201412/17/ -# ||mql5.com/10/0/*.gif (easylistchina+easylist.txt: 3983) +# ||mql5.com/10/0/*.gif (easylistchina.txt: 3971) .mql5.com/10/0/.*\.gif -# ||mp3.haogeba.com^$image,object (easylistchina+easylist.txt: 3982) +# ||mp3.haogeba.com^$image,object (easylistchina.txt: 3970) .mp3.haogeba.com -# ||motorfans.com.cn/iggs_system/ (easylistchina+easylist.txt: 3981) +# ||motorfans.com.cn/iggs_system/ (easylistchina.txt: 3969) .motorfans.com.cn/iggs_system/ -# ||motorfans.com.cn/igg/ (easylistchina+easylist.txt: 3980) +# ||motorfans.com.cn/igg/ (easylistchina.txt: 3968) .motorfans.com.cn/igg/ -# ||moratame.tw/img/contents/banner (easylistchina+easylist.txt: 3979) +# ||moratame.tw/img/contents/banner (easylistchina.txt: 3967) .moratame.tw/img/contents/banner -# ||mopxing.com/skin/sex/js/*content (easylistchina+easylist.txt: 3978) +# ||mopxing.com/skin/sex/js/*content (easylistchina.txt: 3966) .mopxing.com/skin/sex/js/.*content -# ||mopxing.com/skin/sex/js/*banner (easylistchina+easylist.txt: 3977) +# ||mopxing.com/skin/sex/js/*banner (easylistchina.txt: 3965) .mopxing.com/skin/sex/js/.*banner -# ||mopxing.com/skin/sex/js/*ad (easylistchina+easylist.txt: 3976) +# ||mopxing.com/skin/sex/js/*ad (easylistchina.txt: 3964) .mopxing.com/skin/sex/js/.*ad -# ||mopimg.cn/dc/ (easylistchina+easylist.txt: 3975) +# ||mopimg.cn/dc/ (easylistchina.txt: 3963) .mopimg.cn/dc/ -# ||moonbt.com/template/skin1/images/g_js/ (easylistchina+easylist.txt: 3974) +# ||moonbt.com/template/skin1/images/g_js/ (easylistchina.txt: 3962) .moonbt.com/template/skin1/images/g_js/ -# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina+easylist.txt: 3973) +# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina.txt: 3961) .moonbbs.com/static/image/banner/fashionmoon\.png -# ||moonbbs.com/data/attachment/portal/ (easylistchina+easylist.txt: 3972) +# ||moonbbs.com/data/attachment/portal/ (easylistchina.txt: 3960) .moonbbs.com/data/attachment/portal/ -# ||monnsutogatya.com/himg/monst/ (easylistchina+easylist.txt: 3971) +# ||monnsutogatya.com/himg/monst/ (easylistchina.txt: 3959) .monnsutogatya.com/himg/monst/ -# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina+easylist.txt: 3970) +# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina.txt: 3958) .moneyweekly.com.tw/Uploads/AD/.*970x -# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina+easylist.txt: 3969) +# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina.txt: 3957) .moneyweekly.com.tw/UC/JQueryJson\.aspx/MwAD -# ||money.qz828.com^ (easylistchina+easylist.txt: 3968) +# ||money.qz828.com^ (easylistchina.txt: 3956) .money.qz828.com -# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina+easylist.txt: 3966) +# ||money.bumimi.com^ (easylistchina.txt: 3955) +.money.bumimi.com +# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina.txt: 3953) .momoshop.com.tw/goods/GoodsDetail\.jsp\? -# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina+easylist.txt: 3965) +# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina.txt: 3952) .moe123.com/static/img/2014_fattycat\.jpg -# ||moe.la/images/banner/ (easylistchina+easylist.txt: 3964) +# ||moe.la/images/banner/ (easylistchina.txt: 3951) .moe.la/images/banner/ -# ||moe.fm/public/images/fm/promotion_ (easylistchina+easylist.txt: 3963) +# ||moe.fm/public/images/fm/promotion_ (easylistchina.txt: 3950) .moe.fm/public/images/fm/promotion_ -# ||mobile01.com/300x100.swf (easylistchina+easylist.txt: 3962) +# ||mobile01.com/300x100.swf (easylistchina.txt: 3949) .mobile01.com/300x100\.swf -# ||mnw.cn/script/info/baiduadm.html? (easylistchina+easylist.txt: 3961) +# ||mnw.cn/script/info/baiduadm.html? (easylistchina.txt: 3948) .mnw.cn/script/info/baiduadm\.html\? -# ||mnspx.com/js/bdbd/ (easylistchina+easylist.txt: 3960) -.mnspx.com/js/bdbd/ -# ||mmtalk.net/images/banner (easylistchina+easylist.txt: 3959) +# ||mmtalk.net/images/banner (easylistchina.txt: 3947) .mmtalk.net/images/banner -# ||mm387.com/images/*.gif (easylistchina+easylist.txt: 3958) +# ||mm387.com/images/*.gif (easylistchina.txt: 3946) .mm387.com/images/.*\.gif -# ||mm111.net/dotnet/artemis/u/cms/www/201504/1009585448o5.jpg (easylistchina+easylist.txt: 3957) -.mm111.net/dotnet/artemis/u/cms/www/201504/1009585448o5\.jpg -# ||mm111.net/dotnet/artemis/u/cms/www/201504/10095643port.jpg (easylistchina+easylist.txt: 3956) -.mm111.net/dotnet/artemis/u/cms/www/201504/10095643port\.jpg -# ||mlbuy.com/gg.js (easylistchina+easylist.txt: 3955) +# ||mlbuy.com/gg.js (easylistchina.txt: 3945) .mlbuy.com/gg\.js -# ||miyun360.com/data/attachment/portal/ (easylistchina+easylist.txt: 3954) +# ||miyun360.com/data/attachment/portal/ (easylistchina.txt: 3944) .miyun360.com/data/attachment/portal/ -# ||mitbbs.com/ad_ (easylistchina+easylist.txt: 3953) +# ||mitbbs.com/ad_ (easylistchina.txt: 3943) .mitbbs.com/ad_ -# ||mitbbs.ca/ad_ (easylistchina+easylist.txt: 3952) +# ||mitbbs.ca/ad_ (easylistchina.txt: 3942) .mitbbs.ca/ad_ -# ||mitbbs.*/servicedata/static_ad.php (easylistchina+easylist.txt: 3951) +# ||mitbbs.*/servicedata/static_ad.php (easylistchina.txt: 3941) .mitbbs.*./(.*/)?servicedata/static_ad\.php -# ||missyuan.com/sy/ (easylistchina+easylist.txt: 3950) +# ||missyuan.com/sy/ (easylistchina.txt: 3940) .missyuan.com/sy/ -# ||misaka.cn^*/600px- (easylistchina+easylist.txt: 3949) +# ||misaka.cn^*/600px- (easylistchina.txt: 3939) .misaka.cn/.*/600px- -# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina+easylist.txt: 3948) +# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina.txt: 3938) .mimg.127.net/ggimg/all/img18/140218_yixin_780x96\.jpg -# ||miljinhua.com/GD/ (easylistchina+easylist.txt: 3947) +# ||miljinhua.com/GD/ (easylistchina.txt: 3937) .miljinhua.com/GD/ -# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina+easylist.txt: 3946) +# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina.txt: 3936) .mil.news.sina.com.cn/iframe/109/2013/1015/hotpic\.html -# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina+easylist.txt: 3945) +# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina.txt: 3935) .mil.news.sina.com.cn/iframe/109/2012/1024/photo\.html -# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina+easylist.txt: 3944) +# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina.txt: 3934) .mil.news.sina.com.cn/iframe/.*/slideiframe\.html -# ||mifengtd.cn/ad- (easylistchina+easylist.txt: 3943) +# ||mifengtd.cn/ad- (easylistchina.txt: 3933) .mifengtd.cn/ad- -# ||midifan.com/aaa/ (easylistchina+easylist.txt: 3942) +# ||midifan.com/aaa/ (easylistchina.txt: 3932) .midifan.com/aaa/ -# ||microcontrol.cn/HomeImages/AD/ (easylistchina+easylist.txt: 3941) +# ||microcontrol.cn/HomeImages/AD/ (easylistchina.txt: 3931) .microcontrol.cn/HomeImages/AD/ -# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina+easylist.txt: 3940) +# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina.txt: 3930) .microcontrol.cn/bbs/images/AD755_150\.swf -# ||mianbao99.com/bd/ (easylistchina+easylist.txt: 3939) +# ||mianbao99.com/bd/ (easylistchina.txt: 3929) .mianbao99.com/bd/ -# ||mianbao99.com/a/mianbao/indextan.js (easylistchina+easylist.txt: 3938) +# ||mianbao99.com/a/mianbao/indextan.js (easylistchina.txt: 3928) .mianbao99.com/a/mianbao/indextan\.js -# ||mhhf.net/fserFiles/711x90.jpg (easylistchina+easylist.txt: 3937) +# ||mhhf.net/fserFiles/711x90.jpg (easylistchina.txt: 3927) .mhhf.net/fserFiles/711x90\.jpg -# ||mgbbs.cn/js/float.js (easylistchina+easylist.txt: 3936) +# ||mgbbs.cn/js/float.js (easylistchina.txt: 3926) .mgbbs.cn/js/float\.js -# ||mfxp.com/images/ (easylistchina+easylist.txt: 3935) +# ||mfxp.com/images/ (easylistchina.txt: 3925) .mfxp.com/images/ -# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina+easylist.txt: 3934) +# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina.txt: 3924) .mfacelive.com/Scripts/social/openchannel_min\.js -# ||meizhou.com/images/topbanner (easylistchina+easylist.txt: 3933) +# ||meizhou.com/images/topbanner (easylistchina.txt: 3923) .meizhou.com/images/topbanner -# ||meitu.com/js/floatxiuxiu.js (easylistchina+easylist.txt: 3932) +# ||meitu.com/js/floatxiuxiu.js (easylistchina.txt: 3922) .meitu.com/js/floatxiuxiu\.js -# ||meishichina.com/v3/ (easylistchina+easylist.txt: 3931) +# ||meishichina.com/v3/ (easylistchina.txt: 3921) .meishichina.com/v3/ -# ||meinv24.com/js/960- (easylistchina+easylist.txt: 3930) -.meinv24.com/js/960- -# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina+easylist.txt: 3929) +# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina.txt: 3920) .meinv.com/templates/meinv/js/.*_banner\.js -# ||meiliren.net/tuijs/ (easylistchina+easylist.txt: 3927) +# ||meiliren.net/tuijs/ (easylistchina.txt: 3918) .meiliren.net/tuijs/ -# ||meilele.com/js/recad. (easylistchina+easylist.txt: 3926) +# ||meilele.com/js/recad. (easylistchina.txt: 3917) .meilele.com/js/recad\. -# ||medsci.cn/aimgs/$script (easylistchina+easylist.txt: 3924) +# ||medsci.cn/aimgs/$script (easylistchina.txt: 3915) .medsci.cn/aimgs/ -# ||media.cheshi-img.com^ (easylistchina+easylist.txt: 3923) +# ||media.cheshi-img.com^ (easylistchina.txt: 3914) .media.cheshi-img.com -# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina+easylist.txt: 3922) +# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina.txt: 3912) .mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ -# ||mcncc.com/yeyou/gg.js (easylistchina+easylist.txt: 3921) +# ||mcncc.com/yeyou/gg.js (easylistchina.txt: 3911) .mcncc.com/yeyou/gg\.js -# ||mcncc.com/yeyou/*.htm (easylistchina+easylist.txt: 3920) +# ||mcncc.com/yeyou/*.htm (easylistchina.txt: 3910) .mcncc.com/yeyou/.*\.htm -# ||mbalib.com/wiki/common/wikibits.js (easylistchina+easylist.txt: 3919) +# ||mbalib.com/wiki/common/wikibits.js (easylistchina.txt: 3909) .mbalib.com/wiki/common/wikibits\.js -# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina+easylist.txt: 3918) +# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina.txt: 3908) .maxthonimg.com/cp/ad/1420792739\.jpg -# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina+easylist.txt: 3917) +# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina.txt: 3907) .maxthonimg.com/cp/ad/1420765807\.jpg -# ||mat1.gtimg.com/ent/flash/*300 (easylistchina+easylist.txt: 3916) +# ||mat1.gtimg.com/ent/flash/*300 (easylistchina.txt: 3906) .mat1.gtimg.com/ent/flash/.*300 -# ||mat1.gtimg.com/cq/flash/ (easylistchina+easylist.txt: 3915) +# ||mat1.gtimg.com/cq/flash/ (easylistchina.txt: 3905) .mat1.gtimg.com/cq/flash/ -# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina+easylist.txt: 3914) +# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina.txt: 3904) .mat1.gtimg.com/2014/webtips/ola2014tips -# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina+easylist.txt: 3913) +# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina.txt: 3903) .mat1.gtimg.com/2014/vikkydu/GA/haier -# ||masok.cn/red/ (easylistchina+easylist.txt: 3912) +# ||masok.cn/red/ (easylistchina.txt: 3902) .masok.cn/red/ -# ||masadora.net/kakusan- (easylistchina+easylist.txt: 3911) +# ||masadora.net/kakusan- (easylistchina.txt: 3901) .masadora.net/kakusan- -# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina+easylist.txt: 3910) +# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina.txt: 3900) .marstv.com/uploadfile/game/20150728/1438055654\.png -# ||market.duowan.com^ (easylistchina+easylist.txt: 3909) +# ||market.duowan.com^ (easylistchina.txt: 3899) .market.duowan.com -# ||market.21cn.com^ (easylistchina+easylist.txt: 3908) +# ||market.21cn.com^ (easylistchina.txt: 3898) .market.21cn.com -# ||market.178.com^ (easylistchina+easylist.txt: 3907) +# ||market.178.com^ (easylistchina.txt: 3897) .market.178.com -# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina+easylist.txt: 3906) +# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina.txt: 3896) .maolihui.com/wp-content/themes/miaonew/images/adb -# ||manage.wdfans.cn^ (easylistchina+easylist.txt: 3905) +# ||manage.wdfans.cn^ (easylistchina.txt: 3895) .manage.wdfans.cn -# ||manads.static.olcdn.com^ (easylistchina+easylist.txt: 3904) +# ||manads.static.olcdn.com^ (easylistchina.txt: 3894) .manads.static.olcdn.com -# ||mall.xinkuaituan.com/zhuanti/ (easylistchina+easylist.txt: 3903) +# ||mall.xinkuaituan.com/zhuanti/ (easylistchina.txt: 3893) .mall.xinkuaituan.com/zhuanti/ -# ||maituan.com/admin/indexflash/pic/gg (easylistchina+easylist.txt: 3902) +# ||maituan.com/admin/indexflash/pic/gg (easylistchina.txt: 3892) .maituan.com/admin/indexflash/pic/gg -# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina+easylist.txt: 3901) +# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina.txt: 3891) .maipiao.96900.com.cn/jtjt/js/jtjtgg\.js -# ||maipiao.96900.com.cn/js/indexgg (easylistchina+easylist.txt: 3900) +# ||maipiao.96900.com.cn/js/indexgg (easylistchina.txt: 3890) .maipiao.96900.com.cn/js/indexgg -# ||mail.qq.com/lview? (easylistchina+easylist.txt: 3899) +# ||mail.qq.com/lview? (easylistchina.txt: 3889) .mail.qq.com/lview\? -# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina+easylist.txt: 3898) +# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina.txt: 3888) .mail.pchome.com.tw/img/classifieds/300120\.gif -# ||mahua.com/www/default/js/replace_ab.js (easylistchina+easylist.txt: 3897) +# ||mahua.com/www/default/js/replace_ab.js (easylistchina.txt: 3887) .mahua.com/www/default/js/replace_ab\.js -# ||mahua.com/www/default/js/mahua_show.js (easylistchina+easylist.txt: 3896) +# ||mahua.com/www/default/js/mahua_show.js (easylistchina.txt: 3886) .mahua.com/www/default/js/mahua_show\.js -# ||mahua.com/api/$subdocument (easylistchina+easylist.txt: 3895) +# ||mahua.com/api/$subdocument (easylistchina.txt: 3885) .mahua.com/api/ -# ||macx.cn/js/f.txt.js (easylistchina+easylist.txt: 3894) +# ||macx.cn/js/f.txt.js (easylistchina.txt: 3884) .macx.cn/js/f\.txt\.js -# ||macd.cn/macd-topads.html (easylistchina+easylist.txt: 3893) +# ||macd.cn/macd-topads.html (easylistchina.txt: 3883) .macd.cn/macd-topads\.html -# ||macappbox.com/d/file/p/*.gif (easylistchina+easylist.txt: 3892) +# ||macappbox.com/d/file/p/*.gif (easylistchina.txt: 3882) .macappbox.com/d/file/p/.*\.gif -# ||ma.baiducdn2.com^*/main.js?t= (easylistchina+easylist.txt: 3891) +# ||ma.baiducdn2.com^*/main.js?t= (easylistchina.txt: 3881) .ma.baiducdn2.com/.*/main\.js\?t= -# ||m1905.com/asp_js/k.js (easylistchina+easylist.txt: 3890) +# ||m1905.com/asp_js/k.js (easylistchina.txt: 3880) .m1905.com/asp_js/k\.js -# ||m1905.cn/images/video/BannerImg (easylistchina+easylist.txt: 3889) +# ||m1905.cn/images/video/BannerImg (easylistchina.txt: 3879) .m1905.cn/images/video/BannerImg -# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina+easylist.txt: 3888) +# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina.txt: 3878) .m1905.cn/images/bg_index_hgn\.jpg -# ||m1905.cn/afp/mdsfw.js (easylistchina+easylist.txt: 3887) +# ||m1905.cn/afp/mdsfw.js (easylistchina.txt: 3877) .m1905.cn/afp/mdsfw\.js -# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina+easylist.txt: 3886) +# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina.txt: 3876) .m.tiebaimg.com/timg\?wapp[^\w%.-].*imgtype=0 -# ||m.aty.sohu.com^ (easylistchina+easylist.txt: 3885) +# ||m.aty.sohu.com^ (easylistchina.txt: 3875) .m.aty.sohu.com -# ||lzqss.net/data/attachment/portal/ (easylistchina+easylist.txt: 3884) +# ||lzqss.net/data/attachment/portal/ (easylistchina.txt: 3874) .lzqss.net/data/attachment/portal/ -# ||lzep.cn^*/2014ad/ (easylistchina+easylist.txt: 3883) +# ||lzep.cn^*/2014ad/ (easylistchina.txt: 3873) .lzep.cn/.*/2014ad/ -# ||lzep.cn^*/2013ad/ (easylistchina+easylist.txt: 3882) +# ||lzep.cn^*/2013ad/ (easylistchina.txt: 3872) .lzep.cn/.*/2013ad/ -# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina+easylist.txt: 3881) +# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina.txt: 3871) .lzep.cn/uploadfile/hftv/2014/0901/20140901044836216\.jpg -# ||lzep.cn/images/*/ad (easylistchina+easylist.txt: 3880) +# ||lzep.cn/images/*/ad (easylistchina.txt: 3870) .lzep.cn/images/.*/ad -# ||lzep.cn/ep/sda/*_300X (easylistchina+easylist.txt: 3879) +# ||lzep.cn/ep/sda/*_300X (easylistchina.txt: 3869) .lzep.cn/ep/sda/.*_300X -# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina+easylist.txt: 3878) +# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina.txt: 3868) .lzep.cn/ep/sda/.*_1000x60_ -# ||lzep.cn/ep/old/finance/ad (easylistchina+easylist.txt: 3877) +# ||lzep.cn/ep/old/finance/ad (easylistchina.txt: 3867) .lzep.cn/ep/old/finance/ad -# ||lzep.cn/ep/js/index_window.js (easylistchina+easylist.txt: 3876) +# ||lzep.cn/ep/js/index_window.js (easylistchina.txt: 3866) .lzep.cn/ep/js/index_window\.js -# ||lzep.cn/ep/ads/ (easylistchina+easylist.txt: 3875) +# ||lzep.cn/ep/ads/ (easylistchina.txt: 3865) .lzep.cn/ep/ads/ -# ||lzep.cn/data/js/1*.js (easylistchina+easylist.txt: 3874) +# ||lzep.cn/data/js/1*.js (easylistchina.txt: 3864) .lzep.cn/data/js/1.*\.js -# ||lz.chinanews.com/images/flash/00.swf (easylistchina+easylist.txt: 3873) +# ||lz.chinanews.com/images/flash/00.swf (easylistchina.txt: 3863) .lz.chinanews.com/images/flash/00\.swf -# ||lywww.com/index_topa.php (easylistchina+easylist.txt: 3872) +# ||lywww.com/index_topa.php (easylistchina.txt: 3862) .lywww.com/index_topa\.php -# ||lywww.com/header_pic.php (easylistchina+easylist.txt: 3871) +# ||lywww.com/header_pic.php (easylistchina.txt: 3861) .lywww.com/header_pic\.php -# ||lywww.com/data/js/3 (easylistchina+easylist.txt: 3870) +# ||lywww.com/data/js/3 (easylistchina.txt: 3860) .lywww.com/data/js/3 -# ||lywww.com/data/js/2 (easylistchina+easylist.txt: 3869) +# ||lywww.com/data/js/2 (easylistchina.txt: 3859) .lywww.com/data/js/2 -# ||lywww.com/data/js/1 (easylistchina+easylist.txt: 3868) +# ||lywww.com/data/js/1 (easylistchina.txt: 3858) .lywww.com/data/js/1 -# ||lywww.com/data/js.php?id= (easylistchina+easylist.txt: 3867) +# ||lywww.com/data/js.php?id= (easylistchina.txt: 3857) .lywww.com/data/js\.php\?id= -# ||lyd.com.cn^*950-90. (easylistchina+easylist.txt: 3866) +# ||lyd.com.cn^*950-90. (easylistchina.txt: 3856) .lyd.com.cn/.*950-90\. -# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina+easylist.txt: 3865) +# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina.txt: 3855) .ly.shangdu.com/lyinfo/zlwz/flash/ -# ||ly.js.cn/adv/ (easylistchina+easylist.txt: 3864) +# ||ly.js.cn/adv/ (easylistchina.txt: 3854) .ly.js.cn/adv/ -# ||lxty66.com/js/float.js (easylistchina+easylist.txt: 3863) +# ||lxty66.com/js/float.js (easylistchina.txt: 3853) .lxty66.com/js/float\.js -# ||lxting.com^ (easylistchina+easylist.txt: 3862) +# ||lxting.com^ (easylistchina.txt: 3852) .lxting.com -# ||luuu1.com/g/ (easylistchina+easylist.txt: 3861) +# ||luuu1.com/g/ (easylistchina.txt: 3851) .luuu1.com/g/ -# ||luckstatic.v1.cn/st/10000/ (easylistchina+easylist.txt: 3860) +# ||luckstatic.v1.cn/st/10000/ (easylistchina.txt: 3850) .luckstatic.v1.cn/st/10000/ -# ||ltwbook.com/js/l_ (easylistchina+easylist.txt: 3859) +# ||ltxszw.com/js/350.png (easylistchina.txt: 3849) +.ltxszw.com/js/350\.png +# ||ltwbook.com/js/l_ (easylistchina.txt: 3848) .ltwbook.com/js/l_ -# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina+easylist.txt: 3858) +# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina.txt: 3847) .lrjz100.u.qiniudn.com/rmb/bxd\.jpg -# ||loveshang.com/pic/*.swf (easylistchina+easylist.txt: 3857) +# ||loveshang.com/pic/*.swf (easylistchina.txt: 3846) .loveshang.com/pic/.*\.swf -# ||lotour.com/Honda/ad/ (easylistchina+easylist.txt: 3856) +# ||lotour.com/Honda/ad/ (easylistchina.txt: 3845) .lotour.com/Honda/ad/ -# ||look4lib.com/js/bnr_ (easylistchina+easylist.txt: 3855) +# ||look4lib.com/js/bnr_ (easylistchina.txt: 3844) .look4lib.com/js/bnr_ -# ||longyu.cc/bucket/flash/ (easylistchina+easylist.txt: 3854) +# ||longyu.cc/bucket/flash/ (easylistchina.txt: 3843) .longyu.cc/bucket/flash/ -# ||longyu.cc/adg/ (easylistchina+easylist.txt: 3853) +# ||longyu.cc/adg/ (easylistchina.txt: 3842) .longyu.cc/adg/ -# ||longbahao.com/js/ad- (easylistchina+easylist.txt: 3852) +# ||longbahao.com/js/ad- (easylistchina.txt: 3841) .longbahao.com/js/ad- -# ||longbahao.com/asd.js (easylistchina+easylist.txt: 3851) +# ||longbahao.com/asd.js (easylistchina.txt: 3840) .longbahao.com/asd\.js -# ||loldk.com/res/media/fanxing_ (easylistchina+easylist.txt: 3850) +# ||loldk.com/res/media/fanxing_ (easylistchina.txt: 3839) .loldk.com/res/media/fanxing_ -# ||lofter.com/mailEntryMobile.do (easylistchina+easylist.txt: 3849) +# ||lofter.com/mailEntryMobile.do (easylistchina.txt: 3838) .lofter.com/mailEntryMobile\.do -# ||lofter.com/mailEntry.do?*ad= (easylistchina+easylist.txt: 3848) +# ||lofter.com/mailEntry.do?*ad= (easylistchina.txt: 3837) .lofter.com/mailEntry\.do\?.*ad= -# ||lnzq5.com/js/shuanglian.js (easylistchina+easylist.txt: 3847) +# ||lnzq5.com/js/shuanglian.js (easylistchina.txt: 3836) .lnzq5.com/js/shuanglian\.js -# ||lnd.com.cn/site1/*.swf (easylistchina+easylist.txt: 3846) +# ||lnd.com.cn/site1/*.swf (easylistchina.txt: 3835) .lnd.com.cn/site1/.*\.swf -# ||ln.xinhuanet.com/inc/ (easylistchina+easylist.txt: 3845) +# ||ln.xinhuanet.com/inc/ (easylistchina.txt: 3834) .ln.xinhuanet.com/inc/ -# ||ljia.net/vipflash/pop_footer.js (easylistchina+easylist.txt: 3844) +# ||ljia.net/vipflash/pop_footer.js (easylistchina.txt: 3833) .ljia.net/vipflash/pop_footer\.js -# ||liyuanwang.com/nongli.gif (easylistchina+easylist.txt: 3843) +# ||liyuanwang.com/nongli.gif (easylistchina.txt: 3832) .liyuanwang.com/nongli\.gif -# ||livemp4.com/js/ (easylistchina+easylist.txt: 3842) -.livemp4.com/js/ -# ||livefilestore.com^*/imj160x200.gif (easylistchina+easylist.txt: 3841) +# ||livefilestore.com^*/imj160x200.gif (easylistchina.txt: 3831) .livefilestore.com/.*/imj160x200\.gif -# ||liveany.com/images/8d8d.gif (easylistchina+easylist.txt: 3840) +# ||liveany.com/images/8d8d.gif (easylistchina.txt: 3830) .liveany.com/images/8d8d\.gif -# ||live8bo.com/j/Lad6.js (easylistchina+easylist.txt: 3839) -.live8bo.com/j/Lad6\.js -# ||linuxidc.com/linuxfile/y9.js (easylistchina+easylist.txt: 3838) +# ||linuxidc.com/linuxfile/y9.js (easylistchina.txt: 3829) .linuxidc.com/linuxfile/y9\.js -# ||linuxidc.com/linuxfile/list (easylistchina+easylist.txt: 3837) +# ||linuxidc.com/linuxfile/list (easylistchina.txt: 3828) .linuxidc.com/linuxfile/list -# ||linuxidc.com/linuxfile/linux$script (easylistchina+easylist.txt: 3836) +# ||linuxidc.com/linuxfile/linux$script (easylistchina.txt: 3827) .linuxidc.com/linuxfile/linux -# ||linuxeden.com/plus/web_js.php (easylistchina+easylist.txt: 3835) +# ||linuxeden.com/plus/web_js.php (easylistchina.txt: 3826) .linuxeden.com/plus/web_js\.php -# ||linkwan.com/gb/javascript/c5- (easylistchina+easylist.txt: 3834) +# ||linkwan.com/gb/javascript/c5- (easylistchina.txt: 3825) .linkwan.com/gb/javascript/c5- -# ||linkwan.com/gb/javascript/b4.js (easylistchina+easylist.txt: 3833) +# ||linkwan.com/gb/javascript/b4.js (easylistchina.txt: 3824) .linkwan.com/gb/javascript/b4\.js -# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina+easylist.txt: 3832) +# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina.txt: 3823) .linkwan.com/gb/broadmeter/speed/cp\.js -# ||links.cn/mmshow (easylistchina+easylist.txt: 3831) +# ||links.cn/mmshow (easylistchina.txt: 3822) .links.cn/mmshow -# ||linkhelper.cn/mmshow (easylistchina+easylist.txt: 3830) +# ||linkhelper.cn/mmshow (easylistchina.txt: 3821) .linkhelper.cn/mmshow -# ||link.fobshanghai.com^ (easylistchina+easylist.txt: 3829) +# ||link.fobshanghai.com^ (easylistchina.txt: 3820) .link.fobshanghai.com -# ||lingdian98.com^ (easylistchina+easylist.txt: 3828) +# ||lingdian98.com^ (easylistchina.txt: 3819) .lingdian98.com -# ||life.e0575.com^ (easylistchina+easylist.txt: 3827) +# ||life.e0575.com^ (easylistchina.txt: 3818) .life.e0575.com -# ||liepin.com/event/jobadver/ (easylistchina+easylist.txt: 3826) +# ||liepin.com/event/jobadver/ (easylistchina.txt: 3817) .liepin.com/event/jobadver/ -# ||licai18.com/pic/*.swf (easylistchina+easylist.txt: 3825) +# ||licai18.com/pic/*.swf (easylistchina.txt: 3816) .licai18.com/pic/.*\.swf -# ||licai18.com/bk/$object (easylistchina+easylist.txt: 3824) +# ||licai18.com/bk/$object (easylistchina.txt: 3815) .licai18.com/bk/ -# ||liba.com/ads/ (easylistchina+easylist.txt: 3823) +# ||liba.com/ads/ (easylistchina.txt: 3814) .liba.com/ads/ -# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina+easylist.txt: 3822) +# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina.txt: 3813) .liaoxuefeng.com/files/attachments/00144.*/0 -# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina+easylist.txt: 3821) +# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina.txt: 3812) .liaoing.com/image/picture_g/zhengzhou/index/.*\.swf -# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina+easylist.txt: 3820) +# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina.txt: 3811) .liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng\.swf -# ||liaoing.com/egou/ (easylistchina+easylist.txt: 3819) +# ||liaoing.com/egou/ (easylistchina.txt: 3810) .liaoing.com/egou/ -# ||liao1.com/publicize/file/news_detail_ (easylistchina+easylist.txt: 3818) +# ||liao1.com/publicize/file/news_detail_ (easylistchina.txt: 3809) .liao1.com/publicize/file/news_detail_ -# ||liao1.com/js/floatVideoAd.js (easylistchina+easylist.txt: 3817) +# ||liao1.com/js/floatVideoAd.js (easylistchina.txt: 3808) .liao1.com/js/floatVideoAd\.js -# ||liangzijie.com/Runtime/ (easylistchina+easylist.txt: 3816) +# ||liangzijie.com/Runtime/ (easylistchina.txt: 3807) .liangzijie.com/Runtime/ -# ||liangjan.com/style/img/banner (easylistchina+easylist.txt: 3815) +# ||liangjan.com/style/img/banner (easylistchina.txt: 3806) .liangjan.com/style/img/banner -# ||liangjan.com/js/show_ (easylistchina+easylist.txt: 3814) +# ||liangjan.com/js/show_ (easylistchina.txt: 3805) .liangjan.com/js/show_ -# ||liangchan.net/adf/ (easylistchina+easylist.txt: 3813) +# ||liangchan.net/adf/ (easylistchina.txt: 3804) .liangchan.net/adf/ -# ||liangchan.net/aaddaadd/ (easylistchina+easylist.txt: 3812) +# ||liangchan.net/aaddaadd/ (easylistchina.txt: 3803) .liangchan.net/aaddaadd/ -# ||lh168.net^*/attachment/portal/ (easylistchina+easylist.txt: 3811) +# ||lh168.net^*/attachment/portal/ (easylistchina.txt: 3802) .lh168.net/.*/attachment/portal/ -# ||lh168.net/extra/ads/ (easylistchina+easylist.txt: 3810) +# ||lh168.net/extra/ads/ (easylistchina.txt: 3801) .lh168.net/extra/ads/ -# ||lezhuan.com/js/spread.js (easylistchina+easylist.txt: 3809) +# ||lezhuan.com/js/spread.js (easylistchina.txt: 3800) .lezhuan.com/js/spread\.js -# ||letvimg.com^*_phone/ (easylistchina+easylist.txt: 3808) +# ||letvimg.com^*_phone/ (easylistchina.txt: 3799) .letvimg.com/.*_phone/ -# ||letvimg.com^*/108x70$object (easylistchina+easylist.txt: 3807) +# ||letvimg.com^*/108x70$object (easylistchina.txt: 3798) .letvimg.com/.*/108x70 -# ||letvimg.com/img/201503/19/uc1/ (easylistchina+easylist.txt: 3806) +# ||letvimg.com/img/201503/19/uc1/ (easylistchina.txt: 3797) .letvimg.com/img/201503/19/uc1/ -# ||letvimg.com/gugwl/*.swf (easylistchina+easylist.txt: 3805) +# ||letvimg.com/gugwl/*.swf (easylistchina.txt: 3796) .letvimg.com/gugwl/.*\.swf -# ||letvimg.com*gugwl/$object-subrequest (easylistchina+easylist.txt: 3804) +# ||letvimg.com*gugwl/$object-subrequest (easylistchina.txt: 3795) .letvimg.com*./.*gugwl/ .letvimg.com*gugwl -# ||letvcdn.com/js/*_focus_flash.js (easylistchina+easylist.txt: 3803) +# ||letvcdn.com/js/*_focus_flash.js (easylistchina.txt: 3794) .letvcdn.com/js/.*_focus_flash\.js -# ||letv.com/s?ark=*&cis= (easylistchina+easylist.txt: 3802) +# ||letv.com/s?ark=*&cis= (easylistchina.txt: 3793) .letv.com/s\?ark=.*&cis= -# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina+easylist.txt: 3801) +# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina.txt: 3792) .letv.com/pzt/hyhmzq/index\.shtml -# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina+easylist.txt: 3800) +# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina.txt: 3791) .letsebuy.com/static/image/common/dm_cn_130\.jpg -# ||leshen.com/skin/m/action/ad. (easylistchina+easylist.txt: 3799) +# ||leshen.com/skin/m/action/ad. (easylistchina.txt: 3790) .leshen.com/skin/m/action/ad\. -# ||lepan.cc/images/yd/ (easylistchina+easylist.txt: 3798) +# ||lepan.cc/images/yd/ (easylistchina.txt: 3789) .lepan.cc/images/yd/ -# ||lelevod.com/js/abc/t (easylistchina+easylist.txt: 3797) +# ||lelevod.com/js/abc/t (easylistchina.txt: 3788) .lelevod.com/js/abc/t -# ||lelevod.com/js/abc/p (easylistchina+easylist.txt: 3796) +# ||lelevod.com/js/abc/p (easylistchina.txt: 3787) .lelevod.com/js/abc/p -# ||lekan.com^*&stopTime= (easylistchina+easylist.txt: 3795) +# ||lekan.com^*&stopTime= (easylistchina.txt: 3786) .lekan.com/.*&stopTime= -# ||leiting001.com/bg/ltgg/ (easylistchina+easylist.txt: 3794) +# ||leiting001.com/bg/ltgg/ (easylistchina.txt: 3785) .leiting001.com/bg/ltgg/ -# ||leiqun.snxyf.com^ (easylistchina+easylist.txt: 3793) +# ||leiqun.snxyf.com^ (easylistchina.txt: 3784) .leiqun.snxyf.com -# ||lecai.com/page/zhuanti/baidu/ (easylistchina+easylist.txt: 3792) +# ||lecai.com/page/zhuanti/baidu/ (easylistchina.txt: 3783) .lecai.com/page/zhuanti/baidu/ -# ||ld0766.com/*20*a/ (easylistchina+easylist.txt: 3791) +# ||ld0766.com/*20*a/ (easylistchina.txt: 3782) .ld0766.com/.*20.*a/ -# ||lbx777.com/z_gegz/pic/ (easylistchina+easylist.txt: 3790) +# ||lbx777.com/z_gegz/pic/ (easylistchina.txt: 3781) .lbx777.com/z_gegz/pic/ -# ||lbx777.*/css/lbxgg02 (easylistchina+easylist.txt: 3789) +# ||lbx777.*/css/lbxgg02 (easylistchina.txt: 3780) .lbx777.*./(.*/)?css/lbxgg02 -# ||lbx777.*/css/300.js (easylistchina+easylist.txt: 3788) +# ||lbx777.*/css/300.js (easylistchina.txt: 3779) .lbx777.*./(.*/)?css/300\.js -# ||lawtv.com.cn/skin/stop.swf (easylistchina+easylist.txt: 3787) +# ||lawtv.com.cn/skin/stop.swf (easylistchina.txt: 3778) .lawtv.com.cn/skin/stop\.swf -# ||law-lib.com/2009_ad/ (easylistchina+easylist.txt: 3786) +# ||law-lib.com/2009_ad/ (easylistchina.txt: 3777) .law-lib.com/2009_ad/ -# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina+easylist.txt: 3785) +# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina.txt: 3776) .laozuo.org/wp-content/themes/weisaysimple/js/single-bottom\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina+easylist.txt: 3784) +# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina.txt: 3775) .laozuo.org/wp-content/themes/weisaysimple/js/sidebar -# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina+easylist.txt: 3783) +# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina.txt: 3774) .laozuo.org/wp-content/themes/weisaysimple/js/index-top\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina+easylist.txt: 3782) +# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina.txt: 3773) .laozuo.org/wp-content/themes/weisaysimple/js/content40width\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina+easylist.txt: 3781) +# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina.txt: 3772) .laozuo.org/wp-content/themes/weisaysimple/js/banner\.js -# ||laoyuegou.com/js/*_couplet_ (easylistchina+easylist.txt: 3780) +# ||laoyuegou.com/js/*_couplet_ (easylistchina.txt: 3771) .laoyuegou.com/js/.*_couplet_ -# ||laoyuegou.com/img/*/banner/ (easylistchina+easylist.txt: 3779) +# ||laoyuegou.com/img/*/banner/ (easylistchina.txt: 3770) .laoyuegou.com/img/.*/banner/ -# ||laonanren.com/oldman/ (easylistchina+easylist.txt: 3778) +# ||laonanren.com/oldman/ (easylistchina.txt: 3769) .laonanren.com/oldman/ -# ||laogu.com/my/ad (easylistchina+easylist.txt: 3777) +# ||laogu.com/my/ad (easylistchina.txt: 3768) .laogu.com/my/ad -# ||laogu.com/laogubbs/my/ (easylistchina+easylist.txt: 3776) +# ||laogu.com/laogubbs/my/ (easylistchina.txt: 3767) .laogu.com/laogubbs/my/ -# ||laod.cn/wp-content/uploads/*/AD (easylistchina+easylist.txt: 3775) +# ||laod.cn/wp-content/uploads/*/AD (easylistchina.txt: 3766) .laod.cn/wp-content/uploads/.*/AD -# ||lanxicy.com/images/rili.gif (easylistchina+easylist.txt: 3774) +# ||lanxicy.com/images/rili.gif (easylistchina.txt: 3765) .lanxicy.com/images/rili\.gif -# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina+easylist.txt: 3773) +# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina.txt: 3764) .lanrenzhijia.com/uploads/ibeifeng -# ||langya.cn/images/ad_down.js (easylistchina+easylist.txt: 3772) +# ||langya.cn/images/ad_down.js (easylistchina.txt: 3763) .langya.cn/images/ad_down\.js -# ||langya.cn/2014html/ad/ (easylistchina+easylist.txt: 3771) +# ||langya.cn/2014html/ad/ (easylistchina.txt: 3762) .langya.cn/2014html/ad/ -# ||langya.cn/2014html/2014ad_ (easylistchina+easylist.txt: 3770) +# ||langya.cn/2014html/2014ad_ (easylistchina.txt: 3761) .langya.cn/2014html/2014ad_ -# ||langxi.org/langxi/*900$image,object (easylistchina+easylist.txt: 3769) +# ||langxi.org/langxi/*900$image,object (easylistchina.txt: 3760) .langxi.org/langxi/.*900 -# ||language-center.com.tw/udn/ (easylistchina+easylist.txt: 3768) +# ||language-center.com.tw/udn/ (easylistchina.txt: 3759) .language-center.com.tw/udn/ -# ||landiannews.com/tui/ (easylistchina+easylist.txt: 3767) +# ||landiannews.com/tui/ (easylistchina.txt: 3758) .landiannews.com/tui/ -# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina+easylist.txt: 3766) +# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina.txt: 3757) .lancdn.com/diannet/media1/diannet_tool_336_280_ -# ||laixi.com/tp/20 (easylistchina+easylist.txt: 3765) +# ||laixi.com/tp/20 (easylistchina.txt: 3756) .laixi.com/tp/20 -# ||lagou.com/js/cooperation/ (easylistchina+easylist.txt: 3764) +# ||lagou.com/js/cooperation/ (easylistchina.txt: 3755) .lagou.com/js/cooperation/ -# ||lady8844.com/IMAGE/$~image (easylistchina+easylist.txt: 3763) +# ||lady8844.com/IMAGE/$~image (easylistchina.txt: 3754) .lady8844.com/IMAGE/ -# ||lady1314.com.cn/addata/ (easylistchina+easylist.txt: 3762) +# ||lady1314.com.cn/addata/ (easylistchina.txt: 3753) .lady1314.com.cn/addata/ -# ||lady100.net/top.js (easylistchina+easylist.txt: 3761) +# ||lady100.net/top.js (easylistchina.txt: 3752) .lady100.net/top\.js -# ||lady100.net/760-90.js (easylistchina+easylist.txt: 3760) +# ||lady100.net/760-90.js (easylistchina.txt: 3751) .lady100.net/760-90\.js -# ||l7po.com/templates/ff_style/led/ (easylistchina+easylist.txt: 3759) +# ||l7po.com/templates/ff_style/led/ (easylistchina.txt: 3750) .l7po.com/templates/ff_style/led/ -# ||l7po.com/images/tree/ (easylistchina+easylist.txt: 3758) +# ||l7po.com/images/tree/ (easylistchina.txt: 3749) .l7po.com/images/tree/ -# ||l.qq.com/lview? (easylistchina+easylist.txt: 3757) +# ||l.qq.com/lview? (easylistchina.txt: 3748) .l.qq.com/lview\? -# ||kz222.com^$script (easylistchina+easylist.txt: 3756) -.kz222.com -# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina+easylist.txt: 3755) +# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina.txt: 3747) .kyocdn.com/upload/1316059709x983128031\.gif -# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina+easylist.txt: 3754) +# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina.txt: 3746) .kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv\.jpg -# ||kviso.com/ddnew/kviso (easylistchina+easylist.txt: 3753) +# ||kviso.com/ddnew/kviso (easylistchina.txt: 3745) .kviso.com/ddnew/kviso -# ||kutj.com/*/*x80.jpg (easylistchina+easylist.txt: 3752) +# ||kutj.com/*/*x80.jpg (easylistchina.txt: 3744) .kutj.com/.*/.*x80\.jpg -# ||kukudm.com/js/play- (easylistchina+easylist.txt: 3751) +# ||kukudm.com/js/play- (easylistchina.txt: 3743) .kukudm.com/js/play- -# ||kukudm.com/js/comic- (easylistchina+easylist.txt: 3750) +# ||kukudm.com/js/comic- (easylistchina.txt: 3742) .kukudm.com/js/comic- -# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina+easylist.txt: 3749) -# ||kuaihou.com/c/you1.js (easylistchina+easylist.txt: 3748) +# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina.txt: 3741) +# ||kuaihou.com/c/you1.js (easylistchina.txt: 3740) .kuaihou.com/c/you1\.js -# ||kuaihou.com/c/shuoming.js (easylistchina+easylist.txt: 3747) +# ||kuaihou.com/c/shuoming.js (easylistchina.txt: 3739) .kuaihou.com/c/shuoming\.js -# ||kuaihei.com/js/xiazaishang.js (easylistchina+easylist.txt: 3746) +# ||kuaihei.com/js/xiazaishang.js (easylistchina.txt: 3738) .kuaihei.com/js/xiazaishang\.js -# ||kuaihei.com/js/view.js (easylistchina+easylist.txt: 3745) +# ||kuaihei.com/js/view.js (easylistchina.txt: 3737) .kuaihei.com/js/view\.js -# ||kuaihei.com/js/980 (easylistchina+easylist.txt: 3744) +# ||kuaihei.com/js/980 (easylistchina.txt: 3736) .kuaihei.com/js/980 -# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina+easylist.txt: 3743) +# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina.txt: 3735) .ku6cdn.com/comm/v/0\.1\.0/mm\.png -# ||ku6.com^*/index.shtml (easylistchina+easylist.txt: 3742) +# ||ku6.com^*/index.shtml (easylistchina.txt: 3734) .ku6.com/.*/index\.shtml -# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina+easylist.txt: 3741) +# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina.txt: 3733) .ktzhk.com/plugins/cache_template/adv_3b2g\.js -# ||ktzhk.com/file/adv/ (easylistchina+easylist.txt: 3740) +# ||ktzhk.com/file/adv/ (easylistchina.txt: 3732) .ktzhk.com/file/adv/ -# ||ktkkt.com/js/cnbeta/ (easylistchina+easylist.txt: 3739) +# ||ktkkt.com/js/cnbeta/ (easylistchina.txt: 3731) .ktkkt.com/js/cnbeta/ -# ||kt51.com/app.js (easylistchina+easylist.txt: 3738) +# ||kt51.com/app.js (easylistchina.txt: 3730) .kt51.com/app\.js -# ||ksvcd.com/images/ (easylistchina+easylist.txt: 3737) +# ||ksvcd.com/images/ (easylistchina.txt: 3729) .ksvcd.com/images/ -# ||ks.js.cn*/yytf/$object,script (easylistchina+easylist.txt: 3736) +# ||ks.js.cn*/yytf/$object,script (easylistchina.txt: 3728) .ks.js.cn*./(.*/)?yytf/ -# ||kp52.cc/data/attachment/portal/ (easylistchina+easylist.txt: 3735) +# ||kp52.cc/data/attachment/portal/ (easylistchina.txt: 3727) .kp52.cc/data/attachment/portal/ -# ||koopan.com/%5Cad/ (easylistchina+easylist.txt: 3734) +# ||koopan.com/%5Cad/ (easylistchina.txt: 3726) .koopan.com/%5Cad/ -# ||knnwdyou.com^ (easylistchina+easylist.txt: 3733) +# ||knnwdyou.com^ (easylistchina.txt: 3725) .knnwdyou.com -# ||kmplayer.cn/include/jscript/*-b.js (easylistchina+easylist.txt: 3732) +# ||kmplayer.cn/include/jscript/*-b.js (easylistchina.txt: 3724) .kmplayer.cn/include/jscript/.*-b\.js -# ||kmplayer.cn/include/jscript/*-a.js (easylistchina+easylist.txt: 3731) +# ||kmplayer.cn/include/jscript/*-a.js (easylistchina.txt: 3723) .kmplayer.cn/include/jscript/.*-a\.js -# ||klss.cn/jc/ (easylistchina+easylist.txt: 3730) +# ||klss.cn/jc/ (easylistchina.txt: 3722) .klss.cn/jc/ -# ||klgwdh.com/pp.php (easylistchina+easylist.txt: 3729) +# ||klgwdh.com/pp.php (easylistchina.txt: 3721) .klgwdh.com/pp\.php -# ||kkkmh.com/javascripts/abcde/ (easylistchina+easylist.txt: 3728) +# ||kkkmh.com/javascripts/abcde/ (easylistchina.txt: 3720) .kkkmh.com/javascripts/abcde/ -# ||kkkmh.com/iframe/ (easylistchina+easylist.txt: 3727) +# ||kkkmh.com/iframe/ (easylistchina.txt: 3719) .kkkmh.com/iframe/ -# ||kk55.net/beitou.js (easylistchina+easylist.txt: 3726) +# ||kk55.net/beitou.js (easylistchina.txt: 3718) .kk55.net/beitou\.js -# ||kikicici.com/up_files/2013-11-25/ (easylistchina+easylist.txt: 3725) +# ||kikicici.com/up_files/2013-11-25/ (easylistchina.txt: 3717) .kikicici.com/up_files/2013-11-25/ -# ||kiees.cn/img/nz.png (easylistchina+easylist.txt: 3724) +# ||kiees.cn/img/nz.png (easylistchina.txt: 3716) .kiees.cn/img/nz\.png -# ||kiees.cn/img/jm.png (easylistchina+easylist.txt: 3723) +# ||kiees.cn/img/jm.png (easylistchina.txt: 3715) .kiees.cn/img/jm\.png -# ||kfs.io/article5/global/*/original.gif (easylistchina+easylist.txt: 3722) +# ||kfs.io/article5/global/*/original.gif (easylistchina.txt: 3714) .kfs.io/article5/global/.*/original\.gif -# ||kf.abab.com/index.php? (easylistchina+easylist.txt: 3721) +# ||kf.abab.com/index.php? (easylistchina.txt: 3713) .kf.abab.com/index\.php\? -# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina+easylist.txt: 3720) +# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina.txt: 3712) .keywin.org/templates/kw_v2/images/youbianad\.png -# ||key8.com/cache/www/banner_ (easylistchina+easylist.txt: 3719) +# ||key8.com/cache/www/banner_ (easylistchina.txt: 3711) .key8.com/cache/www/banner_ -# ||kelepan.com/yunfaka.gif (easylistchina+easylist.txt: 3718) +# ||kelepan.com/yunfaka.gif (easylistchina.txt: 3710) .kelepan.com/yunfaka\.gif -# ||kelepan.com/cp (easylistchina+easylist.txt: 3717) +# ||kelepan.com/cp (easylistchina.txt: 3709) .kelepan.com/cp -# ||kekenet.com/images/*990 (easylistchina+easylist.txt: 3716) +# ||kekenet.com/images/*990 (easylistchina.txt: 3708) .kekenet.com/images/.*990 -# ||kekenet.com/images/*980 (easylistchina+easylist.txt: 3715) +# ||kekenet.com/images/*980 (easylistchina.txt: 3707) .kekenet.com/images/.*980 -# ||kekenet.com/Images/*/tom640X40.gif (easylistchina+easylist.txt: 3714) +# ||kekenet.com/Images/*/tom640X40.gif (easylistchina.txt: 3706) .kekenet.com/Images/.*/tom640X40\.gif -# ||kekenet.com/images/*/tom468X60.gif (easylistchina+easylist.txt: 3713) +# ||kekenet.com/images/*/tom468X60.gif (easylistchina.txt: 3705) .kekenet.com/images/.*/tom468X60\.gif -# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina+easylist.txt: 3712) +# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina.txt: 3704) .kdhome.net/templets/default/img/bottomadv\.jpg -# ||kcjc.net/data/attachment/portal/ (easylistchina+easylist.txt: 3711) +# ||kcjc.net/data/attachment/portal/ (easylistchina.txt: 3703) .kcjc.net/data/attachment/portal/ -# ||kcjc.net/960$image (easylistchina+easylist.txt: 3710) +# ||kcjc.net/960$image (easylistchina.txt: 3702) .kcjc.net/960 -# ||kanpp.net/Uploads/ad/ (easylistchina+easylist.txt: 3709) +# ||kanpp.net/Uploads/ad/ (easylistchina.txt: 3701) .kanpp.net/Uploads/ad/ -# ||kankanmi.com/js/zjgg (easylistchina+easylist.txt: 3708) +# ||kankanmi.com/js/zjgg (easylistchina.txt: 3700) .kankanmi.com/js/zjgg -# ||kan84.net/js/bdgg/ (easylistchina+easylist.txt: 3707) +# ||kan84.net/js/bdgg/ (easylistchina.txt: 3699) .kan84.net/js/bdgg/ -# ||kan300.com/js/union/ (easylistchina+easylist.txt: 3706) +# ||kan300.com/js/union/ (easylistchina.txt: 3698) .kan300.com/js/union/ -# ||kamlm.com/kmgg (easylistchina+easylist.txt: 3705) +# ||kamlm.com/kmgg (easylistchina.txt: 3697) .kamlm.com/kmgg -# ||kaixin001.com.cn/js/cpm- (easylistchina+easylist.txt: 3704) +# ||kaixin001.com.cn/js/cpm- (easylistchina.txt: 3696) .kaixin001.com.cn/js/cpm- -# ||kaikaimao.net/static/zx.jpg (easylistchina+easylist.txt: 3703) +# ||kaikaimao.net/static/zx.jpg (easylistchina.txt: 3695) .kaikaimao.net/static/zx\.jpg -# ||k886.net/comic-toplist (easylistchina+easylist.txt: 3702) +# ||k886.net/comic-toplist (easylistchina.txt: 3694) .k886.net/comic-toplist -# ||k7mm.com/js/t*.js (easylistchina+easylist.txt: 3701) +# ||k7mm.com/js/t*.js (easylistchina.txt: 3693) .k7mm.com/js/t.*\.js -# ||k618.cn/tlgg/ (easylistchina+easylist.txt: 3700) +# ||k618.cn/tlgg/ (easylistchina.txt: 3692) .k618.cn/tlgg/ -# ||k618.cn/gg$image (easylistchina+easylist.txt: 3699) +# ||k618.cn/gg$image (easylistchina.txt: 3691) .k618.cn/gg -# ||jznews.com.cn/js/topad (easylistchina+easylist.txt: 3697) +# ||jznews.com.cn/js/topad (easylistchina.txt: 3689) .jznews.com.cn/js/topad -# ||jznews.com.cn/js/n_two.js (easylistchina+easylist.txt: 3696) +# ||jznews.com.cn/js/n_two.js (easylistchina.txt: 3688) .jznews.com.cn/js/n_two\.js -# ||jznews.com.cn/js/adtwo.js (easylistchina+easylist.txt: 3695) +# ||jznews.com.cn/js/adtwo.js (easylistchina.txt: 3687) .jznews.com.cn/js/adtwo\.js -# ||jznews.com.cn/js/*_tc.js (easylistchina+easylist.txt: 3694) +# ||jznews.com.cn/js/*_tc.js (easylistchina.txt: 3686) .jznews.com.cn/js/.*_tc\.js -# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina+easylist.txt: 3693) +# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina.txt: 3685) .jznews.com.cn/comnews/js/ad_tanchuang\.js -# ||jzhome.cn/Public/Js/top.js (easylistchina+easylist.txt: 3692) +# ||jzhome.cn/Public/Js/top.js (easylistchina.txt: 3684) .jzhome.cn/Public/Js/top\.js -# ||jzhome.cn/Public/images/jyt.gif (easylistchina+easylist.txt: 3691) +# ||jzhome.cn/Public/images/jyt.gif (easylistchina.txt: 3683) .jzhome.cn/Public/images/jyt\.gif -# ||jz5u.com/new/ (easylistchina+easylist.txt: 3690) +# ||jz5u.com/new/ (easylistchina.txt: 3682) .jz5u.com/new/ -# ||jz5u.com/js/tl$script (easylistchina+easylist.txt: 3689) +# ||jz5u.com/js/tl$script (easylistchina.txt: 3681) .jz5u.com/js/tl -# ||jz123.cn/kanli/ (easylistchina+easylist.txt: 3688) +# ||jz123.cn/kanli/ (easylistchina.txt: 3680) .jz123.cn/kanli/ -# ||jxold.com/index.php?m=poster& (easylistchina+easylist.txt: 3687) +# ||jxold.com/index.php?m=poster& (easylistchina.txt: 3679) .jxold.com/index\.php\?m=poster& -# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina+easylist.txt: 3686) +# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina.txt: 3678) .jxnews.com.cn/jxcn/con_ad_title\.js -# ||jxgdw.com/images/jdgg.jpg (easylistchina+easylist.txt: 3685) +# ||jxgdw.com/images/jdgg.jpg (easylistchina.txt: 3677) .jxgdw.com/images/jdgg\.jpg -# ||jxgdw.com/2013images/ad/ (easylistchina+easylist.txt: 3684) +# ||jxgdw.com/2013images/ad/ (easylistchina.txt: 3676) .jxgdw.com/2013images/ad/ -# ||jxdown.com/statics/js/all.js (easylistchina+easylist.txt: 3683) +# ||jxdown.com/statics/js/all.js (easylistchina.txt: 3675) .jxdown.com/statics/js/all\.js -# ||jxcn.cn/js/hotpic_ (easylistchina+easylist.txt: 3682) +# ||jxcn.cn/js/hotpic_ (easylistchina.txt: 3674) .jxcn.cn/js/hotpic_ -# ||jxcn.cn/images/banner/ (easylistchina+easylist.txt: 3681) +# ||jxcn.cn/images/banner/ (easylistchina.txt: 3673) .jxcn.cn/images/banner/ -# ||jxad.jx163.com^ (easylistchina+easylist.txt: 3680) +# ||jxad.jx163.com^ (easylistchina.txt: 3672) .jxad.jx163.com -# ||jx.xinhuanet.com/*banner/ (easylistchina+easylist.txt: 3679) +# ||jx.xinhuanet.com/*banner/ (easylistchina.txt: 3671) .jx.xinhuanet.com/.*banner/ -# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina+easylist.txt: 3678) +# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina.txt: 3670) .juxiangyou.com/images/tgsc/960x80\.gif -# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina+easylist.txt: 3677) +# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina.txt: 3669) .juxiangyou.com/images/tgsc/250x250\.gif -# ||juxia.com/public/js/juxia.js (easylistchina+easylist.txt: 3676) +# ||juxia.com/public/js/juxia.js (easylistchina.txt: 3668) .juxia.com/public/js/juxia\.js -# ||juxia.com/public/js/foot.js (easylistchina+easylist.txt: 3675) +# ||juxia.com/public/js/foot.js (easylistchina.txt: 3667) .juxia.com/public/js/foot\.js -# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina+easylist.txt: 3674) +# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina.txt: 3666) .junpinzhi.cn/qixing365/attachment/portal/ -# ||juksy.com/scripts/jquery.blockUI.js (easylistchina+easylist.txt: 3672) +# ||juksy.com/scripts/jquery.blockUI.js (easylistchina.txt: 3664) .juksy.com/scripts/jquery\.blockUI\.js -# ||jtyskq.com^*/js/_a.js (easylistchina+easylist.txt: 3671) +# ||jtyskq.com^*/js/_a.js (easylistchina.txt: 3663) .jtyskq.com/.*/js/_a\.js -# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina+easylist.txt: 3670) +# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina.txt: 3662) .jthysh.com/uploadfile/poster/trt\.swf -# ||jswangpan.com/haha728.gif (easylistchina+easylist.txt: 3669) +# ||jswangpan.com/haha728.gif (easylistchina.txt: 3661) .jswangpan.com/haha728\.gif -# ||jswangpan.com/3*.gif (easylistchina+easylist.txt: 3668) +# ||jswangpan.com/3*.gif (easylistchina.txt: 3660) .jswangpan.com/3.*\.gif -# ||jsw.com.cn^*/index.htm (easylistchina+easylist.txt: 3667) +# ||jsw.com.cn^*/index.htm (easylistchina.txt: 3659) .jsw.com.cn/.*/index\.htm -# ||jstv.com/static_files/zones/87/ (easylistchina+easylist.txt: 3666) +# ||jstv.com/static_files/zones/87/ (easylistchina.txt: 3658) .jstv.com/static_files/zones/87/ -# ||jstv.com/static_files/zones/165/165.js (easylistchina+easylist.txt: 3665) +# ||jstv.com/static_files/zones/165/165.js (easylistchina.txt: 3657) .jstv.com/static_files/zones/165/165\.js -# ||jstv.com//static_files/zones/132/132.js (easylistchina+easylist.txt: 3664) -# ||jsshuba.com/js/tongji.js (easylistchina+easylist.txt: 3663) +# ||jstv.com//static_files/zones/132/132.js (easylistchina.txt: 3656) +# ||jsshuba.com/js/tongji.js (easylistchina.txt: 3655) .jsshuba.com/js/tongji\.js -# ||jsshuba.com/js/gg.js (easylistchina+easylist.txt: 3662) +# ||jsshuba.com/js/gg.js (easylistchina.txt: 3654) .jsshuba.com/js/gg\.js -# ||jsshuba.com/js/bdhengfu.js (easylistchina+easylist.txt: 3661) +# ||jsshuba.com/js/bdhengfu.js (easylistchina.txt: 3653) .jsshuba.com/js/bdhengfu\.js -# ||js0573.com/images/cus/ (easylistchina+easylist.txt: 3660) +# ||js0573.com/images/cus/ (easylistchina.txt: 3652) .js0573.com/images/cus/ -# ||js.youxi369.com^ (easylistchina+easylist.txt: 3659) +# ||js.youxi369.com^ (easylistchina.txt: 3651) .js.youxi369.com -# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina+easylist.txt: 3658) +# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina.txt: 3650) .js.tv.itc.cn/site/play/v.*/vip_discount_ -# ||js.tv.itc.cn/gg$script (easylistchina+easylist.txt: 3657) +# ||js.tv.itc.cn/gg$script (easylistchina.txt: 3649) .js.tv.itc.cn/gg -# ||js.tlt.cn/js/ (easylistchina+easylist.txt: 3656) +# ||js.tlt.cn/js/ (easylistchina.txt: 3648) .js.tlt.cn/js/ -# ||js.shiwt.com/110.js (easylistchina+easylist.txt: 3655) +# ||js.shiwt.com/110.js (easylistchina.txt: 3647) .js.shiwt.com/110\.js -# ||js.pub.tom.com^ (easylistchina+easylist.txt: 3654) +# ||js.pub.tom.com^ (easylistchina.txt: 3646) .js.pub.tom.com -# ||js.mumayi.net/jiujiang (easylistchina+easylist.txt: 3653) +# ||js.mumayi.net/jiujiang (easylistchina.txt: 3645) .js.mumayi.net/jiujiang -# ||js.mumayi.net/9495.gif (easylistchina+easylist.txt: 3652) +# ||js.mumayi.net/9495.gif (easylistchina.txt: 3644) .js.mumayi.net/9495\.gif -# ||js.mumayi.net/76090.gif (easylistchina+easylist.txt: 3651) +# ||js.mumayi.net/76090.gif (easylistchina.txt: 3643) .js.mumayi.net/76090\.gif -# ||js.leshen.com^ (easylistchina+easylist.txt: 3650) +# ||js.leshen.com^ (easylistchina.txt: 3642) .js.leshen.com -# ||js.duotegame.com^ (easylistchina+easylist.txt: 3649) +# ||js.duotegame.com^ (easylistchina.txt: 3641) .js.duotegame.com -# ||js.4738.com/newda/img/994_90_ (easylistchina+easylist.txt: 3648) +# ||js.bxwns.com^ (easylistchina.txt: 3640) +.js.bxwns.com +# ||js.bju888.com^ (easylistchina.txt: 3639) +.js.bju888.com +# ||js.4738.com/newda/img/994_90_ (easylistchina.txt: 3638) .js.4738.com/newda/img/994_90_ -# ||js-1.pchome.net^ (easylistchina+easylist.txt: 3647) +# ||js-1.pchome.net^ (easylistchina.txt: 3637) .js-1.pchome.net -# ||jrjimg.cn/homev2/ad/ (easylistchina+easylist.txt: 3646) +# ||jrjimg.cn/homev2/ad/ (easylistchina.txt: 3636) .jrjimg.cn/homev2/ad/ -# ||jrjimg.cn/aigu/adcj.jpg (easylistchina+easylist.txt: 3645) +# ||jrjimg.cn/aigu/adcj.jpg (easylistchina.txt: 3635) .jrjimg.cn/aigu/adcj\.jpg -# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina+easylist.txt: 3644) +# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina.txt: 3634) .jrj.com.cn/iframe/zjgjs\.html\? -# ||jq22.com/assets/ad.png (easylistchina+easylist.txt: 3643) +# ||jq22.com/assets/ad.png (easylistchina.txt: 3633) .jq22.com/assets/ad\.png -# ||jpwind.com^*/scroll.js (easylistchina+easylist.txt: 3642) +# ||jpwind.com^*/scroll.js (easylistchina.txt: 3632) .jpwind.com/.*/scroll\.js -# ||jpwind.com/images/partner/ (easylistchina+easylist.txt: 3641) +# ||jpwind.com/images/partner/ (easylistchina.txt: 3631) .jpwind.com/images/partner/ -# ||jpseek.com/pr/click2.jpg (easylistchina+easylist.txt: 3639) +# ||jpskb.com/Img/dianyuan.gif (easylistchina.txt: 3629) +.jpskb.com/Img/dianyuan\.gif +# ||jpskb.com/Img/7day_ (easylistchina.txt: 3628) +.jpskb.com/Img/7day_ +# ||jpskb.com/Img/439911.jpg (easylistchina.txt: 3627) +.jpskb.com/Img/439911\.jpg +# ||jpskb.com/Img/*_ad_ (easylistchina.txt: 3626) +.jpskb.com/Img/.*_ad_ +# ||jpseek.com/pr/click2.jpg (easylistchina.txt: 3625) .jpseek.com/pr/click2\.jpg -# ||joyes.com/image/06.jpg (easylistchina+easylist.txt: 3638) +# ||joyes.com/image/06.jpg (easylistchina.txt: 3624) .joyes.com/image/06\.jpg -# ||jobtong.com/openSiteAd? (easylistchina+easylist.txt: 3637) +# ||jobtong.com/openSiteAd? (easylistchina.txt: 3623) .jobtong.com/openSiteAd\? -# ||jnnews.tv/indexad/ (easylistchina+easylist.txt: 3636) +# ||jnnews.tv/indexad/ (easylistchina.txt: 3622) .jnnews.tv/indexad/ -# ||jn256.com^*_gg (easylistchina+easylist.txt: 3635) +# ||jn256.com^*_gg (easylistchina.txt: 3621) .jn256.com/.*_gg -# ||jn256.com^*/index_fu (easylistchina+easylist.txt: 3634) +# ||jn256.com^*/index_fu (easylistchina.txt: 3620) .jn256.com/.*/index_fu -# ||jn256.com/gg_index/ (easylistchina+easylist.txt: 3633) +# ||jn256.com/gg_index/ (easylistchina.txt: 3619) .jn256.com/gg_index/ -# ||jmsyzj.com^ (easylistchina+easylist.txt: 3632) +# ||jmsyzj.com^ (easylistchina.txt: 3618) .jmsyzj.com -# ||jmhfw.com/zt/*.swf (easylistchina+easylist.txt: 3631) +# ||jmhfw.com/zt/*.swf (easylistchina.txt: 3617) .jmhfw.com/zt/.*\.swf -# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina+easylist.txt: 3630) +# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina.txt: 3616) .jmhfw.com/index\.php\?/ajax/get_adv/ -# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina+easylist.txt: 3629) +# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina.txt: 3615) .jlpcn.net/template/paody/aaaa/all-top\.js -# ||jkforum.net/template/default/common/attachAD (easylistchina+easylist.txt: 3628) +# ||jkforum.net/template/default/common/attachAD (easylistchina.txt: 3614) .jkforum.net/template/default/common/attachAD -# ||jjwxc.net/images/wap/wap.gif (easylistchina+easylist.txt: 3627) +# ||jjwxc.net/images/wap/wap.gif (easylistchina.txt: 3613) .jjwxc.net/images/wap/wap\.gif -# ||jjjgame.com/images/ad11.jpg (easylistchina+easylist.txt: 3626) +# ||jjjgame.com/images/ad11.jpg (easylistchina.txt: 3612) .jjjgame.com/images/ad11\.jpg -# ||jjjaaa.com/aaa/ (easylistchina+easylist.txt: 3625) +# ||jjjaaa.com/aaa/ (easylistchina.txt: 3611) .jjjaaa.com/aaa/ -# ||jjbt4.com/600x60.gif (easylistchina+easylist.txt: 3624) +# ||jjbt4.com/600x60.gif (easylistchina.txt: 3610) .jjbt4.com/600x60\.gif -# ||jj59.com/sy/ibanner.js (easylistchina+easylist.txt: 3623) +# ||jj59.com/sy/ibanner.js (easylistchina.txt: 3609) .jj59.com/sy/ibanner\.js -# ||jj59.com/sy/banner.js (easylistchina+easylist.txt: 3622) +# ||jj59.com/sy/banner.js (easylistchina.txt: 3608) .jj59.com/sy/banner\.js -# ||jj20.com/js/yx (easylistchina+easylist.txt: 3621) +# ||jj20.com/js/yx (easylistchina.txt: 3607) .jj20.com/js/yx -# ||jj20.com/js/x (easylistchina+easylist.txt: 3620) +# ||jj20.com/js/x (easylistchina.txt: 3606) .jj20.com/js/x -# ||jj20.com/images/960-60.gif (easylistchina+easylist.txt: 3619) +# ||jj20.com/images/960-60.gif (easylistchina.txt: 3605) .jj20.com/images/960-60\.gif -# ||jj.5ccc.net/scripts/new/ (easylistchina+easylist.txt: 3618) +# ||jj.5ccc.net/scripts/new/ (easylistchina.txt: 3604) .jj.5ccc.net/scripts/new/ -# ||jiyingdm.com/js/loadingshow.html (easylistchina+easylist.txt: 3617) +# ||jiyingdm.com/js/loadingshow.html (easylistchina.txt: 3603) .jiyingdm.com/js/loadingshow\.html -# ||jiujiure.com/media/banners/ (easylistchina+easylist.txt: 3616) -.jiujiure.com/media/banners/ -# ||jitapu.com/inc/adv (easylistchina+easylist.txt: 3615) +# ||jitapu.com/inc/adv (easylistchina.txt: 3602) .jitapu.com/inc/adv -# ||jisuxz.com/2747/ (easylistchina+easylist.txt: 3614) +# ||jisuxz.com/2747/ (easylistchina.txt: 3601) .jisuxz.com/2747/ -# ||jirou.com/plus/mytag_js.php (easylistchina+easylist.txt: 3613) +# ||jirou.com/plus/mytag_js.php (easylistchina.txt: 3600) .jirou.com/plus/mytag_js\.php -# ||jinzhuedu.com/k/img/swt.png (easylistchina+easylist.txt: 3612) +# ||jinzhuedu.com/k/img/swt.png (easylistchina.txt: 3599) .jinzhuedu.com/k/img/swt\.png -# ||jinyici.com/qq.js (easylistchina+easylist.txt: 3611) +# ||jinyici.com/qq.js (easylistchina.txt: 3598) .jinyici.com/qq\.js -# ||jinhongweiqi.com/cache/ads.js (easylistchina+easylist.txt: 3610) +# ||jinhongweiqi.com/cache/ads.js (easylistchina.txt: 3597) .jinhongweiqi.com/cache/ads\.js -# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina+easylist.txt: 3609) +# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina.txt: 3596) .jinghua.cn/lib/js/news/ad_jh\.html -# ||jinbw.com.cn/img/ (easylistchina+easylist.txt: 3608) +# ||jinbw.com.cn/img/ (easylistchina.txt: 3595) .jinbw.com.cn/img/ -# ||jiasule.com/static/js/http_error.js (easylistchina+easylist.txt: 3607) +# ||jiasule.com/static/js/http_error.js (easylistchina.txt: 3594) .jiasule.com/static/js/http_error\.js -# ||jiasuba.com/js/jjrjtg.js (easylistchina+easylist.txt: 3606) +# ||jiasuba.com/js/jjrjtg.js (easylistchina.txt: 3593) .jiasuba.com/js/jjrjtg\.js -# ||jiaoyu.baidu.com/tieba/ (easylistchina+easylist.txt: 3605) +# ||jiaoyu.baidu.com/tieba/ (easylistchina.txt: 3592) .jiaoyu.baidu.com/tieba/ -# ||jiaonan.net/index.php?m=poster& (easylistchina+easylist.txt: 3603) +# ||jiaonan.net/index.php?m=poster& (easylistchina.txt: 3590) .jiaonan.net/index\.php\?m=poster& -# ||jiaodong.net/a/js/ (easylistchina+easylist.txt: 3602) +# ||jiaodong.net/a/js/ (easylistchina.txt: 3589) .jiaodong.net/a/js/ -# ||jianshen114.com/images/Advistings/ (easylistchina+easylist.txt: 3601) +# ||jianshen114.com/images/Advistings/ (easylistchina.txt: 3588) .jianshen114.com/images/Advistings/ -# ||jianhucheng.com/data/attachment/portal/ (easylistchina+easylist.txt: 3600) +# ||jianhucheng.com/data/attachment/portal/ (easylistchina.txt: 3587) .jianhucheng.com/data/attachment/portal/ -# ||jiangcao.com/pic/ (easylistchina+easylist.txt: 3599) +# ||jianglishi.cn/app/static/images/ad_ (easylistchina.txt: 3586) +.jianglishi.cn/app/static/images/ad_ +# ||jiangcao.com/pic/ (easylistchina.txt: 3585) .jiangcao.com/pic/ -# ||jiancai365.cn/lbad.gif (easylistchina+easylist.txt: 3598) +# ||jiancai365.cn/lbad.gif (easylistchina.txt: 3584) .jiancai365.cn/lbad\.gif -# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina+easylist.txt: 3597) +# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina.txt: 3583) .jgzj.net/bbs/attachments/month_1111/ -# ||jdxsw.net/js/insidebox.js (easylistchina+easylist.txt: 3596) +# ||jdxsw.net/js/insidebox.js (easylistchina.txt: 3582) .jdxsw.net/js/insidebox\.js -# ||jdxsw.net/201400/ (easylistchina+easylist.txt: 3595) +# ||jdxsw.net/201400/ (easylistchina.txt: 3581) .jdxsw.net/201400/ -# ||jdcjsr.com^*/jdcgg/ (easylistchina+easylist.txt: 3594) +# ||jdcjsr.com^*/jdcgg/ (easylistchina.txt: 3580) .jdcjsr.com/.*/jdcgg/ -# ||jdcjsr.com/images/zzgg/ (easylistchina+easylist.txt: 3593) +# ||jdcjsr.com/images/zzgg/ (easylistchina.txt: 3579) .jdcjsr.com/images/zzgg/ -# ||jd.com/exsites?spread_type= (easylistchina+easylist.txt: 3592) +# ||jd.com/exsites?spread_type= (easylistchina.txt: 3578) .jd.com/exsites\?spread_type= -# ||jbyf.net^*_Ad/ (easylistchina+easylist.txt: 3591) +# ||jbyf.net^*_Ad/ (easylistchina.txt: 3577) .jbyf.net/.*_Ad/ -# ||jbyf.net/JS/9 (easylistchina+easylist.txt: 3590) +# ||jbyf.net/JS/9 (easylistchina.txt: 3576) .jbyf.net/JS/9 -# ||jbyf.net/JS/6 (easylistchina+easylist.txt: 3589) +# ||jbyf.net/JS/6 (easylistchina.txt: 3575) .jbyf.net/JS/6 -# ||jbyf.net/JS/1 (easylistchina+easylist.txt: 3588) +# ||jbyf.net/JS/1 (easylistchina.txt: 3574) .jbyf.net/JS/1 -# ||jb51.net/js/Dowplayjb51 (easylistchina+easylist.txt: 3587) +# ||jb51.net/js/Dowplayjb51 (easylistchina.txt: 3573) .jb51.net/js/Dowplayjb51 -# ||jb51.net/2012js/ (easylistchina+easylist.txt: 3586) +# ||jb51.net/2012js/ (easylistchina.txt: 3572) .jb51.net/2012js/ -# ||javlibrary.com/js/bnr_ (easylistchina+easylist.txt: 3585) +# ||javlibrary.com/js/bnr_ (easylistchina.txt: 3571) .javlibrary.com/js/bnr_ -# ||javlib3.com/js/bnr_ (easylistchina+easylist.txt: 3584) +# ||javlib3.com/js/bnr_ (easylistchina.txt: 3570) .javlib3.com/js/bnr_ -# ||javjunkies.com/FL$subdocument (easylistchina+easylist.txt: 3583) +# ||javjunkies.com/FL$subdocument (easylistchina.txt: 3569) .javjunkies.com/FL -# ||jav2lib.com/js/bnr_ (easylistchina+easylist.txt: 3582) +# ||jav2lib.com/js/bnr_ (easylistchina.txt: 3568) .jav2lib.com/js/bnr_ -# ||jandan.com/static/gggg/ (easylistchina+easylist.txt: 3581) +# ||jandan.com/static/gggg/ (easylistchina.txt: 3567) .jandan.com/static/gggg/ -# ||ja.gamersky.com^ (easylistchina+easylist.txt: 3580) +# ||ja.gamersky.com^ (easylistchina.txt: 3566) .ja.gamersky.com -# ||j.6avz.com^ (easylistchina+easylist.txt: 3579) +# ||j.6avz.com^ (easylistchina.txt: 3565) .j.6avz.com -# ||izzs.cc/wp-content/mm/ (easylistchina+easylist.txt: 3578) +# ||izzs.cc/wp-content/mm/ (easylistchina.txt: 3564) .izzs.cc/wp-content/mm/ -# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina+easylist.txt: 3577) +# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina.txt: 3563) .izt8.com/iztwp/images/hk-250\.jpg -# ||iyejie.com/xydlad.js (easylistchina+easylist.txt: 3576) +# ||iyejie.com/xydlad.js (easylistchina.txt: 3562) .iyejie.com/xydlad\.js -# ||iyejie.com/1024code.gif (easylistchina+easylist.txt: 3575) +# ||iyejie.com/1024code.gif (easylistchina.txt: 3561) .iyejie.com/1024code\.gif -# ||iyaya.info/newmshow.php (easylistchina+easylist.txt: 3574) +# ||iyaya.info/newmshow.php (easylistchina.txt: 3560) .iyaya.info/newmshow\.php -# ||iyaxin.com/assert/js/m.js (easylistchina+easylist.txt: 3573) +# ||iyaxin.com/assert/js/m.js (easylistchina.txt: 3559) .iyaxin.com/assert/js/m\.js -# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina+easylist.txt: 3572) +# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina.txt: 3558) .ixiumei.com/otherhtml/zd800-100\.jpg -# ||iweihai.cn/js/float.js (easylistchina+easylist.txt: 3571) +# ||iweihai.cn/js/float.js (easylistchina.txt: 3557) .iweihai.cn/js/float\.js -# ||iwanad.baidu.com^ (easylistchina+easylist.txt: 3569) +# ||iwanad.baidu.com^ (easylistchina.txt: 3555) .iwanad.baidu.com -# ||ivsoo.com/template/ivsoos.jpg (easylistchina+easylist.txt: 3568) +# ||ivsoo.com/template/ivsoos.jpg (easylistchina.txt: 3554) .ivsoo.com/template/ivsoos\.jpg -# ||itxtbook.com/game/images/kuping (easylistchina+easylist.txt: 3567) +# ||itxtbook.com/game/images/kuping (easylistchina.txt: 3553) .itxtbook.com/game/images/kuping -# ||itv.hexun.com (easylistchina+easylist.txt: 3566) +# ||itv.hexun.com (easylistchina.txt: 3552) .itv.hexun.com*. -# ||itpub.net/popwin_js.php? (easylistchina+easylist.txt: 3565) +# ||itpub.net/popwin_js.php? (easylistchina.txt: 3551) .itpub.net/popwin_js\.php\? -# ||itopdog.cn/js/you.js (easylistchina+easylist.txt: 3564) +# ||itopdog.cn/js/you.js (easylistchina.txt: 3550) .itopdog.cn/js/you\.js -# ||itopdog.cn/itopdog/d*.js (easylistchina+easylist.txt: 3563) +# ||itopdog.cn/itopdog/d*.js (easylistchina.txt: 3549) .itopdog.cn/itopdog/d.*\.js -# ||itongcheng.cc/amm/ (easylistchina+easylist.txt: 3562) +# ||itongcheng.cc/amm/ (easylistchina.txt: 3548) .itongcheng.cc/amm/ -# ||itocp.com/html/gk/topic/topicmain.html (easylistchina+easylist.txt: 3561) +# ||itocp.com/html/gk/topic/topicmain.html (easylistchina.txt: 3547) .itocp.com/html/gk/topic/topicmain\.html -# ||itocp.com/html/gk/*/204x (easylistchina+easylist.txt: 3560) +# ||itocp.com/html/gk/*/204x (easylistchina.txt: 3546) .itocp.com/html/gk/.*/204x -# ||itocp.com/html/gk/*/*x50. (easylistchina+easylist.txt: 3559) +# ||itocp.com/html/gk/*/*x50. (easylistchina.txt: 3545) .itocp.com/html/gk/.*/.*x50\. -# ||itmxc.com/mxckb.gif (easylistchina+easylist.txt: 3558) +# ||itmxc.com/mxckb.gif (easylistchina.txt: 3544) .itmxc.com/mxckb\.gif -# ||itmxc.com/mxc-news/960x (easylistchina+easylist.txt: 3557) +# ||itmxc.com/mxc-news/960x (easylistchina.txt: 3543) .itmxc.com/mxc-news/960x -# ||itmsc.cn/files/*/ad0 (easylistchina+easylist.txt: 3556) +# ||itmsc.cn/files/*/ad0 (easylistchina.txt: 3542) .itmsc.cn/files/.*/ad0 -# ||itjsb.com/file/script/qipai.js (easylistchina+easylist.txt: 3555) +# ||itjsb.com/file/script/qipai.js (easylistchina.txt: 3541) .itjsb.com/file/script/qipai\.js -# ||itjsb.com/file/script/A27.js (easylistchina+easylist.txt: 3554) +# ||itjsb.com/file/script/A27.js (easylistchina.txt: 3540) .itjsb.com/file/script/A27\.js -# ||itjkr.com/upload/ad/ (easylistchina+easylist.txt: 3553) +# ||itjkr.com/upload/ad/ (easylistchina.txt: 3539) .itjkr.com/upload/ad/ -# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina+easylist.txt: 3552) +# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina.txt: 3538) .itiexue.net/.*\.gif\?w=1500&h=1500 -# ||ithome.com/js/win8china.js (easylistchina+easylist.txt: 3551) +# ||itiexue.net/domain-policy/ (easylistchina.txt: 3537) +.itiexue.net/domain-policy/ +# ||ithome.com/js/win8china.js (easylistchina.txt: 3536) .ithome.com/js/win8china\.js -# ||ithome.com/js/win7china.js (easylistchina+easylist.txt: 3550) +# ||ithome.com/js/win7china.js (easylistchina.txt: 3535) .ithome.com/js/win7china\.js -# ||ithome.com/js/recommend.js (easylistchina+easylist.txt: 3549) +# ||ithome.com/js/recommend.js (easylistchina.txt: 3534) .ithome.com/js/recommend\.js -# ||ithome.com/js/money/ (easylistchina+easylist.txt: 3548) +# ||ithome.com/js/money/ (easylistchina.txt: 3533) .ithome.com/js/money/ -# ||ithome.com/js/*/toutiao.js (easylistchina+easylist.txt: 3547) +# ||ithome.com/js/*/toutiao.js (easylistchina.txt: 3532) .ithome.com/js/.*/toutiao\.js -# ||ithome.com/images/v2.3/11index.png (easylistchina+easylist.txt: 3546) +# ||ithome.com/images/v2.3/11index.png (easylistchina.txt: 3531) .ithome.com/images/v2\.3/11index\.png -# ||ithome.com/images/partner/ (easylistchina+easylist.txt: 3545) +# ||ithome.com/images/partner/ (easylistchina.txt: 3530) .ithome.com/images/partner/ -# ||ithome.com/html/$xmlhttprequest (easylistchina+easylist.txt: 3544) +# ||ithome.com/html/$xmlhttprequest (easylistchina.txt: 3529) .ithome.com/html/ -# ||iteye.com/iframe_ggbd/ (easylistchina+easylist.txt: 3543) +# ||iteye.com/iframe_ggbd/ (easylistchina.txt: 3528) .iteye.com/iframe_ggbd/ -# ||itc.cn^*_ad/src/*.swf (easylistchina+easylist.txt: 3541) +# ||itc.cn^*_ad/src/*.swf (easylistchina.txt: 3526) .itc.cn/.*_ad/src/.*\.swf -# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina+easylist.txt: 3540) +# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina.txt: 3525) .itc.cn/activity/activity_js/changyan_config_ -# ||itc.cn/?prod=rtb& (easylistchina+easylist.txt: 3539) +# ||itc.cn/?prod=rtb& (easylistchina.txt: 3524) .itc.cn/\?prod=rtb& -# ||itc.*^prod=ad& (easylistchina+easylist.txt: 3538) +# ||itc.*^prod=ad& (easylistchina.txt: 3523) .itc.*./(.*[^\w%.-])?prod=ad& -# ||itavcn.com/pic/news/*305X80.swf (easylistchina+easylist.txt: 3537) +# ||itavcn.com/pic/news/*305X80.swf (easylistchina.txt: 3522) .itavcn.com/pic/news/.*305X80\.swf -# ||itavcn.com/images/2014/ad_ (easylistchina+easylist.txt: 3536) +# ||itavcn.com/images/2014/ad_ (easylistchina.txt: 3521) .itavcn.com/images/2014/ad_ -# ||itavcn.com/images/2013/ad_ (easylistchina+easylist.txt: 3535) +# ||itavcn.com/images/2013/ad_ (easylistchina.txt: 3520) .itavcn.com/images/2013/ad_ -# ||itavcn.com/images/2012/ad_ (easylistchina+easylist.txt: 3534) +# ||itavcn.com/images/2012/ad_ (easylistchina.txt: 3519) .itavcn.com/images/2012/ad_ -# ||itavcn.com/images/2011/101902.swf (easylistchina+easylist.txt: 3533) +# ||itavcn.com/images/2011/101902.swf (easylistchina.txt: 3518) .itavcn.com/images/2011/101902\.swf -# ||itavcn.com/images/*300300.swf (easylistchina+easylist.txt: 3532) +# ||itavcn.com/images/*300300.swf (easylistchina.txt: 3517) .itavcn.com/images/.*300300\.swf -# ||itavcn.com/images/*-banners722-90. (easylistchina+easylist.txt: 3531) +# ||itavcn.com/images/*-banners722-90. (easylistchina.txt: 3516) .itavcn.com/images/.*-banners722-90\. -# ||italk.yinsha.com/god/ (easylistchina+easylist.txt: 3530) +# ||italk.yinsha.com/god/ (easylistchina.txt: 3515) .italk.yinsha.com/god/ -# ||it168.com/factory/ad/ (easylistchina+easylist.txt: 3529) +# ||it168.com/factory/ad/ (easylistchina.txt: 3514) .it168.com/factory/ad/ -# ||it165.net/index.php?m=poster& (easylistchina+easylist.txt: 3528) +# ||it165.net/index.php?m=poster& (easylistchina.txt: 3513) .it165.net/index\.php\?m=poster& -# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina+easylist.txt: 3527) +# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina.txt: 3512) .it.com.cn/test/cj/2015/03/06/10/1424032881\.jpg -# ||it.com.cn/js/*art (easylistchina+easylist.txt: 3526) +# ||it.com.cn/js/*art (easylistchina.txt: 3511) .it.com.cn/js/.*art -# ||it.com.cn/dy4*/js/youx.js (easylistchina+easylist.txt: 3525) +# ||it.com.cn/dy4*/js/youx.js (easylistchina.txt: 3510) .it.com.cn/dy4.*/js/youx\.js -# ||it.com.cn/dy4*/js/*0 (easylistchina+easylist.txt: 3524) +# ||it.com.cn/dy4*/js/*0 (easylistchina.txt: 3509) .it.com.cn/dy4.*/js/.*0 -# ||isso.com.cn/upload_image/A-D/ (easylistchina+easylist.txt: 3523) +# ||isso.com.cn/upload_image/A-D/ (easylistchina.txt: 3508) .isso.com.cn/upload_image/A-D/ -# ||isso.com.cn/ggimage/*.swf (easylistchina+easylist.txt: 3522) +# ||isso.com.cn/ggimage/*.swf (easylistchina.txt: 3507) .isso.com.cn/ggimage/.*\.swf -# ||isso.com.cn/club/adv2Tools.js (easylistchina+easylist.txt: 3521) +# ||isso.com.cn/club/adv2Tools.js (easylistchina.txt: 3506) .isso.com.cn/club/adv2Tools\.js -# ||ishangman.com/images/aismd/ (easylistchina+easylist.txt: 3520) +# ||ishangman.com/images/aismd/ (easylistchina.txt: 3505) .ishangman.com/images/aismd/ -# ||iqshw.com/d/js/m/thea (easylistchina+easylist.txt: 3519) +# ||iqshw.com/d/js/m/thea (easylistchina.txt: 3504) .iqshw.com/d/js/m/thea -# ||iqiyi.com/show2?a=qc_ (easylistchina+easylist.txt: 3518) +# ||iqiyi.com/show2?a=qc_ (easylistchina.txt: 3503) .iqiyi.com/show2\?a=qc_ -# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina+easylist.txt: 3517) +# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina.txt: 3502) .iqiyi.com/player/cupid/common/flash980100\.swf -# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina+easylist.txt: 3516) +# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina.txt: 3501) .iqiyi.com/player/cupid/.*/pageer\.swf -# ||iqiyi.com/player/common/rebull (easylistchina+easylist.txt: 3515) +# ||iqiyi.com/player/common/rebull (easylistchina.txt: 3500) .iqiyi.com/player/common/rebull -# ||iqiyi.com/player/common/adflash (easylistchina+easylist.txt: 3514) +# ||iqiyi.com/player/common/adflash (easylistchina.txt: 3499) .iqiyi.com/player/common/adflash -# ||iqiyi.com/player/*/bannery.swf (easylistchina+easylist.txt: 3513) +# ||iqiyi.com/player/*/bannery.swf (easylistchina.txt: 3498) .iqiyi.com/player/.*/bannery\.swf -# ||iqiyi.com/player/*/a.swf (easylistchina+easylist.txt: 3512) +# ||iqiyi.com/player/*/a.swf (easylistchina.txt: 3497) .iqiyi.com/player/.*/a\.swf -# ||iqiyi.com/marketing/*/oppo. (easylistchina+easylist.txt: 3511) +# ||iqiyi.com/marketing/*/oppo. (easylistchina.txt: 3496) .iqiyi.com/marketing/.*/oppo\. -# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina+easylist.txt: 3510) +# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina.txt: 3495) .iqiyi.com/common/flashplayer/.*980-100 -# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina+easylist.txt: 3509) +# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina.txt: 3494) .iqiyi.com/common/flashplayer/.*250%C3%97230\.swf -# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina+easylist.txt: 3508) +# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina.txt: 3493) .iqiyi.com/common/flashplayer/.*/pause\.swf -# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina+easylist.txt: 3507) +# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina.txt: 3492) .iqiyi.com/common/flashplayer/.*/pageer\.swf -# ||iqiyi.com/common/flashplayer/*/980 (easylistchina+easylist.txt: 3506) +# ||iqiyi.com/common/flashplayer/*/980 (easylistchina.txt: 3491) .iqiyi.com/common/flashplayer/.*/980 -# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina+easylist.txt: 3505) +# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina.txt: 3490) .iqiyi.com/common/flashplayer/.*-banner- -# ||iqiyi.com/common/flashplayer*_1380x (easylistchina+easylist.txt: 3504) +# ||iqiyi.com/common/flashplayer*_1380x (easylistchina.txt: 3489) .iqiyi.com/common/flashplayer.*_1380x -# ||iq33.com/skin/logo2015/ (easylistchina+easylist.txt: 3503) +# ||iq33.com/skin/logo2015/ (easylistchina.txt: 3488) .iq33.com/skin/logo2015/ -# ||ipeen.com.tw/photo/ad/ (easylistchina+easylist.txt: 3502) +# ||ipeen.com.tw/photo/ad/ (easylistchina.txt: 3487) .ipeen.com.tw/photo/ad/ -# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina+easylist.txt: 3501) +# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina.txt: 3486) .ipeen.com.tw/js/frame/ad-actions\.js -# ||iour.co/wp-content/uploads/ (easylistchina+easylist.txt: 3500) +# ||iour.co/wp-content/uploads/ (easylistchina.txt: 3485) .iour.co/wp-content/uploads/ -# ||iour.co/ads.js (easylistchina+easylist.txt: 3499) +# ||iour.co/ads.js (easylistchina.txt: 3484) .iour.co/ads\.js -# ||iour.co/ad_dl.js (easylistchina+easylist.txt: 3498) +# ||iour.co/ad_dl.js (easylistchina.txt: 3483) .iour.co/ad_dl\.js -# ||inte.sogou.com^ (easylistchina+easylist.txt: 3497) +# ||inte.sogou.com^ (easylistchina.txt: 3482) .inte.sogou.com -# ||inlishui.com/index.php?m=poster& (easylistchina+easylist.txt: 3496) +# ||inlishui.com/index.php?m=poster& (easylistchina.txt: 3481) .inlishui.com/index\.php\?m=poster& -# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina+easylist.txt: 3495) +# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina.txt: 3480) .inhe.net/Uploadfiles/ad_2014/ -# ||inhe.net/javascript/Jsduilian (easylistchina+easylist.txt: 3494) +# ||inhe.net/javascript/Jsduilian (easylistchina.txt: 3479) .inhe.net/javascript/Jsduilian -# ||inhe.net/javascript/ad_js/ (easylistchina+easylist.txt: 3493) +# ||inhe.net/javascript/ad_js/ (easylistchina.txt: 3478) .inhe.net/javascript/ad_js/ -# ||inhe.*/Uploadfiles/adpublish (easylistchina+easylist.txt: 3492) +# ||inhe.*/Uploadfiles/adpublish (easylistchina.txt: 3477) .inhe.*./(.*/)?Uploadfiles/adpublish -# ||info.vip.iqiyi.com/promotion/ (easylistchina+easylist.txt: 3491) +# ||info.vip.iqiyi.com/promotion/ (easylistchina.txt: 3476) .info.vip.iqiyi.com/promotion/ -# ||info.btc123.com/images/antiBlock/$image (easylistchina+easylist.txt: 3489) +# ||info.btc123.com/images/antiBlock/$image (easylistchina.txt: 3474) .info.btc123.com/images/antiBlock/ -# ||info-database.csdn.net/Upload/$image,third-party (easylistchina+easylist.txt: 3488) +# ||info-database.csdn.net/Upload/$image,third-party (easylistchina.txt: 3473) .info-database.csdn.net/Upload/ -# ||inc.tgbus.com/frame/youxi.html (easylistchina+easylist.txt: 3487) +# ||inc.tgbus.com/frame/youxi.html (easylistchina.txt: 3472) .inc.tgbus.com/frame/youxi\.html -# ||impservice*.youdao.com^ (easylistchina+easylist.txt: 3486) +# ||impservice*.youdao.com^ (easylistchina.txt: 3471) .impservice*./.*\.youdao\.com[^\w%.-] .impservice*.youdao.com -# ||impservice*.yodao.com^ (easylistchina+easylist.txt: 3485) +# ||impservice*.yodao.com^ (easylistchina.txt: 3470) .impservice*./.*\.yodao\.com[^\w%.-] .impservice*.yodao.com -# ||imp3.net/data/js$script (easylistchina+easylist.txt: 3484) +# ||imp3.net/data/js$script (easylistchina.txt: 3469) .imp3.net/data/js -# ||imgur.com/Za3ll.gif (easylistchina+easylist.txt: 3481) +# ||imgur.com/Za3ll.gif (easylistchina.txt: 3466) .imgur.com/Za3ll\.gif -# ||imgur.com/rTqveeX.jpg (easylistchina+easylist.txt: 3480) +# ||imgur.com/rTqveeX.jpg (easylistchina.txt: 3465) .imgur.com/rTqveeX\.jpg -# ||imgur.com/pBL7joM.gif (easylistchina+easylist.txt: 3479) +# ||imgur.com/pBL7joM.gif (easylistchina.txt: 3464) .imgur.com/pBL7joM\.gif -# ||imgur.com/iKkoHkn.jpg (easylistchina+easylist.txt: 3478) +# ||imgur.com/iKkoHkn.jpg (easylistchina.txt: 3463) .imgur.com/iKkoHkn\.jpg -# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina+easylist.txt: 3477) +# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina.txt: 3462) .imgsrc.baidu.com/tieba/pic/item/ -# ||imgs.cc/images/ad_ (easylistchina+easylist.txt: 3476) +# ||imgs.cc/images/ad_ (easylistchina.txt: 3461) .imgs.cc/images/ad_ -# ||imgout.ph.126.net^*/950-90.jpg (easylistchina+easylist.txt: 3475) +# ||imgout.ph.126.net^*/950-90.jpg (easylistchina.txt: 3460) .imgout.ph.126.net/.*/950-90\.jpg -# ||imgout.ph.126.net^*/700x80.jpg (easylistchina+easylist.txt: 3474) +# ||imgout.ph.126.net^*/700x80.jpg (easylistchina.txt: 3459) .imgout.ph.126.net/.*/700x80\.jpg -# ||imgout.ph.126.net^*/355-310.jpg (easylistchina+easylist.txt: 3473) +# ||imgout.ph.126.net^*/355-310.jpg (easylistchina.txt: 3458) .imgout.ph.126.net/.*/355-310\.jpg -# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina+easylist.txt: 3472) +# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina.txt: 3457) .imgn.jiatx.com/jiatx/mall/outer/ -# ||imgkdiyoub999.com/ok/ (easylistchina+easylist.txt: 3470) +# ||imgkdiyoub999.com/ok/ (easylistchina.txt: 3455) .imgkdiyoub999.com/ok/ -# ||imgf.gamersky.com^$image (easylistchina+easylist.txt: 3469) +# ||imgf.gamersky.com^$image (easylistchina.txt: 3454) .imgf.gamersky.com -# ||imgchili.net/media/top.gif (easylistchina+easylist.txt: 3467) +# ||imgchili.net/media/top.gif (easylistchina.txt: 3452) .imgchili.net/media/top\.gif -# ||imgchili.net/media/image*.gif (easylistchina+easylist.txt: 3466) +# ||imgchili.net/media/image*.gif (easylistchina.txt: 3451) .imgchili.net/media/image.*\.gif -# ||img2.www.fmdisk.com^ (easylistchina+easylist.txt: 3464) +# ||img2.www.fmdisk.com^ (easylistchina.txt: 3449) .img2.www.fmdisk.com -# ||img2.win007.com/image/*.jpg (easylistchina+easylist.txt: 3463) +# ||img2.win007.com/image/*.jpg (easylistchina.txt: 3448) .img2.win007.com/image/.*\.jpg -# ||img2.e0575.com//upload/adv/ (easylistchina+easylist.txt: 3462) -# ||img2.e0575.com*/upload/image/ (easylistchina+easylist.txt: 3461) +# ||img2.e0575.com//upload/adv/ (easylistchina.txt: 3447) +# ||img2.e0575.com*/upload/image/ (easylistchina.txt: 3446) .img2.e0575.com*./(.*/)?upload/image/ -# ||img2.126.net^ (easylistchina+easylist.txt: 3460) +# ||img2.126.net^ (easylistchina.txt: 3445) .img2.126.net -# ||img1.jczqw.com/img/ (easylistchina+easylist.txt: 3459) +# ||img1.jczqw.com/img/ (easylistchina.txt: 3444) .img1.jczqw.com/img/ -# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina+easylist.txt: 3458) +# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina.txt: 3443) .img1.efu.com.cn/upfile/bew/.*\.swf -# ||img1.autofan.com.cn/swf/ (easylistchina+easylist.txt: 3457) +# ||img1.autofan.com.cn/swf/ (easylistchina.txt: 3442) .img1.autofan.com.cn/swf/ -# ||img1.126.net^ (easylistchina+easylist.txt: 3456) +# ||img1.126.net^ (easylistchina.txt: 3441) .img1.126.net -# ||img.ybbbs.com/2015/ (easylistchina+easylist.txt: 3455) +# ||img.ybbbs.com/2015/ (easylistchina.txt: 3440) .img.ybbbs.com/2015/ -# ||img.ybbbs.com/2014/ (easylistchina+easylist.txt: 3454) +# ||img.ybbbs.com/2014/ (easylistchina.txt: 3439) .img.ybbbs.com/2014/ -# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina+easylist.txt: 3453) +# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina.txt: 3438) .img.wangxiao.cn/images/big_ad\.jpg -# ||img.taoguba.com.cn/images/$object (easylistchina+easylist.txt: 3452) +# ||img.taoguba.com.cn/images/$object (easylistchina.txt: 3437) .img.taoguba.com.cn/images/ -# ||img.sz.js.cn/wj/ (easylistchina+easylist.txt: 3451) +# ||img.sz.js.cn/wj/ (easylistchina.txt: 3436) .img.sz.js.cn/wj/ -# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina+easylist.txt: 3450) +# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina.txt: 3435) .img.kuai.xunlei.com/img/v2/fen/ -# ||img.jb51.net^$script (easylistchina+easylist.txt: 3449) +# ||img.jb51.net^$script (easylistchina.txt: 3434) .img.jb51.net -# ||img.ifeng.com/tres/html/ (easylistchina+easylist.txt: 3448) +# ||img.ifeng.com/tres/html/ (easylistchina.txt: 3433) .img.ifeng.com/tres/html/ -# ||img.hexun.com*/wszj/js.js (easylistchina+easylist.txt: 3447) +# ||img.hexun.com*/wszj/js.js (easylistchina.txt: 3432) .img.hexun.com*./(.*/)?wszj/js\.js -# ||img.eol.cn/images/ed/$~image (easylistchina+easylist.txt: 3446) +# ||img.eol.cn/images/ed/$~image (easylistchina.txt: 3431) .img.eol.cn/images/ed/ -# ||img.cqsq.com/s/temp/ (easylistchina+easylist.txt: 3445) +# ||img.cqsq.com/s/temp/ (easylistchina.txt: 3430) .img.cqsq.com/s/temp/ -# ||img.cngba.com/da/ (easylistchina+easylist.txt: 3444) +# ||img.cngba.com/da/ (easylistchina.txt: 3429) .img.cngba.com/da/ -# ||img.9duw.com^ (easylistchina+easylist.txt: 3442) +# ||img.9duw.com^ (easylistchina.txt: 3427) .img.9duw.com -# ||img.90bfw.com^*.gif (easylistchina+easylist.txt: 3441) +# ||img.90bfw.com^*.gif (easylistchina.txt: 3426) .img.90bfw.com/.*\.gif -# ||img.86wan.com/img2/top.jpg (easylistchina+easylist.txt: 3440) +# ||img.86wan.com/img2/top.jpg (easylistchina.txt: 3425) .img.86wan.com/img2/top\.jpg -# ||img.6park.com/img/$image (easylistchina+easylist.txt: 3439) +# ||img.6park.com/img/$image (easylistchina.txt: 3424) .img.6park.com/img/ -# ||img.3sjt.com^ (easylistchina+easylist.txt: 3438) +# ||img.3sjt.com^ (easylistchina.txt: 3423) .img.3sjt.com -# ||img*.win007.com/image/*.gif (easylistchina+easylist.txt: 3437) +# ||img*.win007.com/image/*.gif (easylistchina.txt: 3422) .img*./.*\.win007\.com/image/.*\.gif .img*.win007.com/image/.*\.gif -# ||img*.titan007.com/image/*.gif (easylistchina+easylist.txt: 3436) +# ||img*.titan007.com/image/*.gif (easylistchina.txt: 3421) .img*./.*\.titan007\.com/image/.*\.gif .img*.titan007.com/image/.*\.gif -# ||img*.bet007.com/image/*.gif (easylistchina+easylist.txt: 3434) +# ||img*.bet007.com/image/*.gif (easylistchina.txt: 3419) .img*./.*\.bet007\.com/image/.*\.gif .img*.bet007.com/image/.*\.gif -# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina+easylist.txt: 3433) +# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina.txt: 3418) .imeee.cn/DA_HTML/bottom_960x90\.html -# ||imeee.cn/DA_HTML/*.js (easylistchina+easylist.txt: 3432) +# ||imeee.cn/DA_HTML/*.js (easylistchina.txt: 3417) .imeee.cn/DA_HTML/.*\.js -# ||imanke.com/static/player/loading/imanke.html (easylistchina+easylist.txt: 3431) +# ||imanke.com/static/player/loading/imanke.html (easylistchina.txt: 3416) .imanke.com/static/player/loading/imanke\.html -# ||imanhua.com^*/nmoneys/ (easylistchina+easylist.txt: 3430) +# ||imanhua.com^*/nmoneys/ (easylistchina.txt: 3415) .imanhua.com/.*/nmoneys/ -# ||imanhua.com^*/money/ (easylistchina+easylist.txt: 3429) +# ||imanhua.com^*/money/ (easylistchina.txt: 3414) .imanhua.com/.*/money/ -# ||images.sohu.com/ytv/*.swf (easylistchina+easylist.txt: 3428) +# ||images.sohu.com/ytv/*.swf (easylistchina.txt: 3413) .images.sohu.com/ytv/.*\.swf -# ||images.sohu.com/ytv/*.jpg (easylistchina+easylist.txt: 3427) +# ||images.sohu.com/ytv/*.jpg (easylistchina.txt: 3412) .images.sohu.com/ytv/.*\.jpg -# ||images.sohu.com/cs/ (easylistchina+easylist.txt: 3426) +# ||images.sohu.com/cs/ (easylistchina.txt: 3411) .images.sohu.com/cs/ -# ||images.sohu.com/bill/ (easylistchina+easylist.txt: 3425) +# ||images.sohu.com/bill/ (easylistchina.txt: 3410) .images.sohu.com/bill/ -# ||images.mydrivers.com/2009 (easylistchina+easylist.txt: 3424) +# ||images.mydrivers.com/2009 (easylistchina.txt: 3409) .images.mydrivers.com/2009 -# ||images.jurong.cn/bbs/ (easylistchina+easylist.txt: 3423) +# ||images.jurong.cn/bbs/ (easylistchina.txt: 3408) .images.jurong.cn/bbs/ -# ||images.gxsky.com^ (easylistchina+easylist.txt: 3422) +# ||images.gxsky.com^ (easylistchina.txt: 3407) .images.gxsky.com -# ||images.dayoo.com/dywimg/ (easylistchina+easylist.txt: 3421) +# ||images.dayoo.com/dywimg/ (easylistchina.txt: 3406) .images.dayoo.com/dywimg/ -# ||images.chinaz.com^ (easylistchina+easylist.txt: 3420) +# ||images.chinaz.com^ (easylistchina.txt: 3405) .images.chinaz.com -# ||images.china.cn^*first/$subdocument (easylistchina+easylist.txt: 3419) +# ||images.china.cn^*first/$subdocument (easylistchina.txt: 3404) .images.china.cn/.*first/ -# ||image.wenweipo.com/*/ad_ (easylistchina+easylist.txt: 3418) +# ||image.wenweipo.com/*/ad_ (easylistchina.txt: 3403) .image.wenweipo.com/.*/ad_ -# ||image.sportscn.com/other/live/ (easylistchina+easylist.txt: 3417) +# ||image.sportscn.com/other/live/ (easylistchina.txt: 3402) .image.sportscn.com/other/live/ -# ||image.seowhy.com/bbs/20 (easylistchina+easylist.txt: 3416) +# ||image.seowhy.com/bbs/20 (easylistchina.txt: 3401) .image.seowhy.com/bbs/20 -# ||image.lepan.cc^ (easylistchina+easylist.txt: 3415) +# ||image.lepan.cc^ (easylistchina.txt: 3400) .image.lepan.cc -# ||image.hh010.com^ (easylistchina+easylist.txt: 3414) +# ||image.hh010.com^ (easylistchina.txt: 3399) .image.hh010.com -# ||image.9duw.com^ (easylistchina+easylist.txt: 3413) +# ||image.9duw.com^ (easylistchina.txt: 3398) .image.9duw.com -# ||image.6park.com^ (easylistchina+easylist.txt: 3412) +# ||image.6park.com^ (easylistchina.txt: 3397) .image.6park.com -# ||im286.com/images/37cs.gif (easylistchina+easylist.txt: 3411) +# ||im286.com/images/37cs.gif (easylistchina.txt: 3396) .im286.com/images/37cs\.gif -# ||im286.com/286/ (easylistchina+easylist.txt: 3410) +# ||im286.com/286/ (easylistchina.txt: 3395) .im286.com/286/ -# ||im.zww.im/images/ (easylistchina+easylist.txt: 3409) +# ||im.zww.im/images/ (easylistchina.txt: 3394) .im.zww.im/images/ -# ||ilovecao.com^*.gif (easylistchina+easylist.txt: 3408) +# ||ilovecao.com^*.gif (easylistchina.txt: 3393) .ilovecao.com/.*\.gif -# ||ilikecao.com^*.gif (easylistchina+easylist.txt: 3407) +# ||ilikecao.com^*.gif (easylistchina.txt: 3392) .ilikecao.com/.*\.gif -# ||ikaka.com/globalad/ (easylistchina+easylist.txt: 3406) +# ||ikaka.com/globalad/ (easylistchina.txt: 3391) .ikaka.com/globalad/ -# ||ijia360.com/data/poster/ (easylistchina+easylist.txt: 3405) +# ||ijia360.com/data/poster/ (easylistchina.txt: 3390) .ijia360.com/data/poster/ -# ||ihref.com/ihref_gg/ (easylistchina+easylist.txt: 3404) +# ||ihref.com/ihref_gg/ (easylistchina.txt: 3389) .ihref.com/ihref_gg/ -# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina+easylist.txt: 3403) +# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina.txt: 3388) .iguang.tw/bm/seo_rotation/html/js/ -# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina+easylist.txt: 3402) +# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina.txt: 3387) .iguaji.com/wp-content/uploads/.*/ttzad -# ||iggyy8.com/js/v/ (easylistchina+easylist.txt: 3401) +# ||iggyy8.com/js/v/ (easylistchina.txt: 3386) .iggyy8.com/js/v/ -# ||ifxtx.com^*589x60. (easylistchina+easylist.txt: 3400) +# ||ifxtx.com^*589x60. (easylistchina.txt: 3385) .ifxtx.com/.*589x60\. -# ||ifxtx.com/tp/ (easylistchina+easylist.txt: 3399) +# ||ifxtx.com/tp/ (easylistchina.txt: 3384) .ifxtx.com/tp/ -# ||ifxtx.com/js/ad-02.js (easylistchina+easylist.txt: 3398) +# ||ifxtx.com/js/ad-02.js (easylistchina.txt: 3383) .ifxtx.com/js/ad-02\.js -# ||ifx.aifang.com^ (easylistchina+easylist.txt: 3397) +# ||ifx.aifang.com^ (easylistchina.txt: 3382) .ifx.aifang.com -# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina+easylist.txt: 3396) +# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina.txt: 3381) .ifood1.com/aobntech/pic/9300\.jpg -# ||ifonce.com/813.gif (easylistchina+easylist.txt: 3395) +# ||ifonce.com/813.gif (easylistchina.txt: 3380) .ifonce.com/813\.gif -# ||ifengimg.com^*Float$script (easylistchina+easylist.txt: 3394) +# ||ifengimg.com^*Float$script (easylistchina.txt: 3379) .ifengimg.com/.*Float -# ||ifengimg.com^*couplet$script (easylistchina+easylist.txt: 3393) +# ||ifengimg.com^*couplet$script (easylistchina.txt: 3378) .ifengimg.com/.*couplet -# ||ifengimg.com^*/yingguang- (easylistchina+easylist.txt: 3392) +# ||ifengimg.com^*/yingguang- (easylistchina.txt: 3377) .ifengimg.com/.*/yingguang- -# ||ifengimg.com^*/sparta.js (easylistchina+easylist.txt: 3391) +# ||ifengimg.com^*/sparta.js (easylistchina.txt: 3376) .ifengimg.com/.*/sparta\.js -# ||ifengimg.com^*/shfwq (easylistchina+easylist.txt: 3390) +# ||ifengimg.com^*/shfwq (easylistchina.txt: 3375) .ifengimg.com/.*/shfwq -# ||ifengimg.com^*/rdn_*.js? (easylistchina+easylist.txt: 3389) +# ||ifengimg.com^*/rdn_*.js? (easylistchina.txt: 3374) .ifengimg.com/.*/rdn_.*\.js\? -# ||ifengimg.com^*/pan.js (easylistchina+easylist.txt: 3388) +# ||ifengimg.com^*/pan.js (easylistchina.txt: 3373) .ifengimg.com/.*/pan\.js -# ||ifengimg.com^*/iframe_load_ (easylistchina+easylist.txt: 3387) +# ||ifengimg.com^*/iframe_load_ (easylistchina.txt: 3372) .ifengimg.com/.*/iframe_load_ -# ||ifengimg.com^*/hover.js (easylistchina+easylist.txt: 3386) +# ||ifengimg.com^*/hover.js (easylistchina.txt: 3371) .ifengimg.com/.*/hover\.js -# ||ifengimg.com^*/hddw- (easylistchina+easylist.txt: 3385) +# ||ifengimg.com^*/hddw- (easylistchina.txt: 3370) .ifengimg.com/.*/hddw- -# ||ifengimg.com^*/fullscreen (easylistchina+easylist.txt: 3384) +# ||ifengimg.com^*/fullscreen (easylistchina.txt: 3369) .ifengimg.com/.*/fullscreen -# ||ifengimg.com^*/backwindow.js (easylistchina+easylist.txt: 3383) +# ||ifengimg.com^*/backwindow.js (easylistchina.txt: 3368) .ifengimg.com/.*/backwindow\.js -# ||ifengimg.com^*/aplayer.xml (easylistchina+easylist.txt: 3382) +# ||ifengimg.com^*/aplayer.xml (easylistchina.txt: 3367) .ifengimg.com/.*/aplayer\.xml -# ||ifengimg.com^*/300-300. (easylistchina+easylist.txt: 3381) +# ||ifengimg.com^*/300-300. (easylistchina.txt: 3366) .ifengimg.com/.*/300-300\. -# ||ifengimg.com^*/300-300- (easylistchina+easylist.txt: 3380) +# ||ifengimg.com^*/300-300- (easylistchina.txt: 3365) .ifengimg.com/.*/300-300- -# ||ifengimg.com^*/1000X90- (easylistchina+easylist.txt: 3379) +# ||ifengimg.com^*/1000X90- (easylistchina.txt: 3364) .ifengimg.com/.*/1000X90- -# ||ifengimg.com^*/1000-90- (easylistchina+easylist.txt: 3378) +# ||ifengimg.com^*/1000-90- (easylistchina.txt: 3363) .ifengimg.com/.*/1000-90- -# ||ifengimg.com^*/100-100- (easylistchina+easylist.txt: 3377) +# ||ifengimg.com^*/100-100- (easylistchina.txt: 3362) .ifengimg.com/.*/100-100- -# ||ifengimg.com^*-gewindow- (easylistchina+easylist.txt: 3376) +# ||ifengimg.com^*-gewindow- (easylistchina.txt: 3361) .ifengimg.com/.*-gewindow- -# ||ifengimg.com/zhishaofei/js/ (easylistchina+easylist.txt: 3375) +# ||ifengimg.com/zhishaofei/js/ (easylistchina.txt: 3360) .ifengimg.com/zhishaofei/js/ -# ||ifengimg.com/xingzhao/JS/ (easylistchina+easylist.txt: 3374) +# ||ifengimg.com/xingzhao/JS/ (easylistchina.txt: 3359) .ifengimg.com/xingzhao/JS/ -# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina+easylist.txt: 3373) +# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina.txt: 3358) .ifengimg.com/tres/js/.*/idemin_noif\.js -# ||ifengimg.com/static/news/js/advtrack_ (easylistchina+easylist.txt: 3372) -.ifengimg.com/static/news/js/advtrack_ -# ||ifengimg.com/neiqian/*/embed.js (easylistchina+easylist.txt: 3371) +# ||ifengimg.com/static/news/js/advtrack (easylistchina.txt: 3357) +.ifengimg.com/static/news/js/advtrack +# ||ifengimg.com/neiqian/*/embed.js (easylistchina.txt: 3356) .ifengimg.com/neiqian/.*/embed\.js -# ||ifengimg.com/iis/iis_ (easylistchina+easylist.txt: 3369) +# ||ifengimg.com/iis/iis_ (easylistchina.txt: 3354) .ifengimg.com/iis/iis_ -# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina+easylist.txt: 3368) +# ||ifengimg.com/ifengimcp/pic/*_w750_h112. (easylistchina.txt: 3353) +.ifengimg.com/ifengimcp/pic/.*_w750_h112\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina.txt: 3352) .ifengimg.com/ifengimcp/pic/.*_w640_h130\. -# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina+easylist.txt: 3367) +# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina.txt: 3351) .ifengimg.com/ifengimcp/pic/.*_w640_h120\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina+easylist.txt: 3366) +# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina.txt: 3350) .ifengimg.com/ifengimcp/pic/.*_w320_h48\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina+easylist.txt: 3365) +# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina.txt: 3349) .ifengimg.com/ifengimcp/pic/.*_w320_h330\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina+easylist.txt: 3364) +# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina.txt: 3348) .ifengimg.com/ifengimcp/pic/.*_w320_h210\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina+easylist.txt: 3363) +# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina.txt: 3347) .ifengimg.com/ifengimcp/pic/.*_w320_h120\. -# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina+easylist.txt: 3362) +# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina.txt: 3346) .ifengimg.com/ifengimcp/pic/.*_w300_h65\. -# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina+easylist.txt: 3361) +# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina.txt: 3345) .ifengimg.com/ifengimcp/pic/.*_w24_h100\. -# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina+easylist.txt: 3360) +# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina.txt: 3344) .ifengimg.com/ifengimcp/pic/.*_w130_h100\. -# ||ifengimg.com/ifeng/sources/ (easylistchina+easylist.txt: 3359) +# ||ifengimg.com/ifeng/sources/ (easylistchina.txt: 3343) .ifengimg.com/ifeng/sources/ -# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina+easylist.txt: 3358) +# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina.txt: 3342) .ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1\.jpg -# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina+easylist.txt: 3357) +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina.txt: 3341) .ifengimg.com/29daa33abbbc4bbc/2015/7/titad\.gif -# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina+easylist.txt: 3356) +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina.txt: 3340) .ifengimg.com/29daa33abbbc4bbc/2015/7/aogute\.gif -# ||ifengimg.com/*/taobaopudi/ (easylistchina+easylist.txt: 3355) +# ||ifengimg.com/*/taobaopudi/ (easylistchina.txt: 3339) .ifengimg.com/.*/taobaopudi/ -# ||ifeng.com^*&ADUNITID= (easylistchina+easylist.txt: 3354) +# ||ifeng.com^*&ADUNITID= (easylistchina.txt: 3338) .ifeng.com/.*&ADUNITID= -# ||ifeng.com/wapAdversApi? (easylistchina+easylist.txt: 3353) +# ||ifeng.com/wapAdversApi? (easylistchina.txt: 3337) .ifeng.com/wapAdversApi\? -# ||ifeng.com/statics/comment_baidu.html (easylistchina+easylist.txt: 3352) +# ||ifeng.com/statics/comment_baidu.html (easylistchina.txt: 3336) .ifeng.com/statics/comment_baidu\.html -# ||ifeng.com/ssi-incs/ (easylistchina+easylist.txt: 3351) +# ||ifeng.com/ssi-incs/ (easylistchina.txt: 3335) .ifeng.com/ssi-incs/ -# ||ifeng.com/showjs?*apids= (easylistchina+easylist.txt: 3350) +# ||ifeng.com/showjs?*apids= (easylistchina.txt: 3334) .ifeng.com/showjs\?.*apids= -# ||ifeng.com/iframe/toquickbet (easylistchina+easylist.txt: 3349) +# ||ifeng.com/iframe/toquickbet (easylistchina.txt: 3333) .ifeng.com/iframe/toquickbet -# ||ifeng.com/iframe/quickbet (easylistchina+easylist.txt: 3348) +# ||ifeng.com/iframe/quickbet (easylistchina.txt: 3332) .ifeng.com/iframe/quickbet -# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina+easylist.txt: 3347) +# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina.txt: 3331) .ifeng.com/bbsfile/js/ifeng_tip\.js -# ||ifeng.com/a_if/taobao- (easylistchina+easylist.txt: 3346) +# ||ifeng.com/a_if/taobao- (easylistchina.txt: 3330) .ifeng.com/a_if/taobao- -# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina+easylist.txt: 3345) +# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina.txt: 3329) .ifanr.cn/wp-content/uploads/2015/12/xc90\.jpg -# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina+easylist.txt: 3344) +# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina.txt: 3328) .ietv.cc/Runtime/Js/web_bug\.js -# ||ietv.cc/Runtime/Js/vod (easylistchina+easylist.txt: 3343) +# ||ietv.cc/Runtime/Js/vod (easylistchina.txt: 3327) .ietv.cc/Runtime/Js/vod -# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina+easylist.txt: 3342) +# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina.txt: 3326) .ietv.cc/min/b=Runtime/Js&f= -# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina+easylist.txt: 3341) +# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina.txt: 3325) .iefans.net/wp-content/uploads/2009/js/llq/2345llq\.gif -# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina+easylist.txt: 3340) +# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina.txt: 3324) .iefans.net/wp-content/uploads/2009/03/UCbanner\.gif -# ||ieche.com/InAds/ (easylistchina+easylist.txt: 3339) +# ||ieche.com/InAds/ (easylistchina.txt: 3323) .ieche.com/InAds/ -# ||ieche.com/global/*/ad/ (easylistchina+easylist.txt: 3338) +# ||ieche.com/global/*/ad/ (easylistchina.txt: 3322) .ieche.com/global/.*/ad/ -# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina+easylist.txt: 3337) +# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina.txt: 3321) .ie.5500w.com/market/404230/pop_browser\.js -# ||idcxr.com/images/ad (easylistchina+easylist.txt: 3336) +# ||idcxr.com/images/ad (easylistchina.txt: 3320) .idcxr.com/images/ad -# ||idcquan.com/linux/cio_new.html (easylistchina+easylist.txt: 3335) +# ||idcquan.com/linux/cio_new.html (easylistchina.txt: 3319) .idcquan.com/linux/cio_new\.html -# ||idcot.com^ (easylistchina+easylist.txt: 3334) +# ||idcot.com^ (easylistchina.txt: 3318) .idcot.com -# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina+easylist.txt: 3333) +# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina.txt: 3317) .idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff\.png -# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina+easylist.txt: 3332) +# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina.txt: 3316) .idanmu.com/wp-content/themes/wpbangumi/images/assets/ -# ||icnkr.com/data/attachment/portal/ (easylistchina+easylist.txt: 3331) +# ||icnkr.com/data/attachment/portal/ (easylistchina.txt: 3315) .icnkr.com/data/attachment/portal/ -# ||icnkr.com/cnkradv/ (easylistchina+easylist.txt: 3330) +# ||icnkr.com/cnkradv/ (easylistchina.txt: 3314) .icnkr.com/cnkradv/ -# ||icili.com/cpma.js (easylistchina+easylist.txt: 3329) +# ||icili.com/cpma.js (easylistchina.txt: 3313) .icili.com/cpma\.js -# ||iciba.com/web/co/ci/ (easylistchina+easylist.txt: 3328) +# ||iciba.com/web/co/ci/ (easylistchina.txt: 3312) .iciba.com/web/co/ci/ -# ||iciba.com/static/images/double11_ (easylistchina+easylist.txt: 3327) +# ||iciba.com/static/images/double11_ (easylistchina.txt: 3311) .iciba.com/static/images/double11_ -# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina+easylist.txt: 3326) +# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina.txt: 3310) .ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi\.jpg -# ||ibook8.com/xia*.js (easylistchina+easylist.txt: 3325) +# ||ibook8.com/xia*.js (easylistchina.txt: 3309) .ibook8.com/xia.*\.js -# ||ibook8.com/js/b*.js (easylistchina+easylist.txt: 3324) +# ||ibook8.com/js/b*.js (easylistchina.txt: 3308) .ibook8.com/js/b.*\.js -# ||ibook8.com*/piao*.js (easylistchina+easylist.txt: 3323) +# ||ibook8.com*/piao*.js (easylistchina.txt: 3307) .ibook8.com*./(.*/)?piao.*\.js -# ||iapp.com.tw/iapp_ad.php (easylistchina+easylist.txt: 3322) +# ||iapp.com.tw/iapp_ad.php (easylistchina.txt: 3306) .iapp.com.tw/iapp_ad\.php -# ||iapolo.com/myjs/ (easylistchina+easylist.txt: 3321) +# ||iapolo.com/myjs/ (easylistchina.txt: 3305) .iapolo.com/myjs/ -# ||iads.xinmin.cn^ (easylistchina+easylist.txt: 3320) +# ||iads.xinmin.cn^ (easylistchina.txt: 3304) .iads.xinmin.cn -# ||i322.com/ad_avshow/ (easylistchina+easylist.txt: 3319) +# ||i322.com/ad_avshow/ (easylistchina.txt: 3303) .i322.com/ad_avshow/ -# ||i.syasn.com^ (easylistchina+easylist.txt: 3318) +# ||i.syasn.com^ (easylistchina.txt: 3302) .i.syasn.com -# ||i.fgi.tw/images/survey_of_woman (easylistchina+easylist.txt: 3317) +# ||i.fgi.tw/images/survey_of_woman (easylistchina.txt: 3301) .i.fgi.tw/images/survey_of_woman -# ||i.168img.com^$image,object (easylistchina+easylist.txt: 3315) +# ||i.168img.com^$image,object (easylistchina.txt: 3299) .i.168img.com -# ||i.168gamer.$image,object (easylistchina+easylist.txt: 3314) +# ||i.168gamer.$image,object (easylistchina.txt: 3298) .i.168gamer.*. -# ||i-part.com.tw/js2/newShineStar (easylistchina+easylist.txt: 3313) +# ||i-part.com.tw/js2/newShineStar (easylistchina.txt: 3297) .i-part.com.tw/js2/newShineStar -# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina+easylist.txt: 3312) +# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina.txt: 3296) .i-part.com.tw/images2/index/HouseStar/ -# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina+easylist.txt: 3311) +# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina.txt: 3295) .i-part.com.tw/hookimg/23892_14367801811\.jpg -# ||i-gamer.net/promo_ (easylistchina+easylist.txt: 3310) +# ||i-gamer.net/promo_ (easylistchina.txt: 3294) .i-gamer.net/promo_ -# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina+easylist.txt: 3309) +# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina.txt: 3293) .i-gamer.net/image/banner_tag_726x100\.jpg -# ||hzhyhm.com^ (easylistchina+easylist.txt: 3308) +# ||hzhyhm.com^ (easylistchina.txt: 3292) .hzhyhm.com -# ||hz.shouyoutv.com^ (easylistchina+easylist.txt: 3307) +# ||hz.shouyoutv.com^ (easylistchina.txt: 3291) .hz.shouyoutv.com -# ||hybbs.com/i/$image,object (easylistchina+easylist.txt: 3306) +# ||hybbs.com/i/$image,object (easylistchina.txt: 3290) .hybbs.com/i/ -# ||hxyl.net/hydzsw.jpg (easylistchina+easylist.txt: 3305) +# ||hxyl.net/hydzsw.jpg (easylistchina.txt: 3289) .hxyl.net/hydzsw\.jpg -# ||hxsxw.com/js/float.js (easylistchina+easylist.txt: 3304) +# ||hxsxw.com/js/float.js (easylistchina.txt: 3288) .hxsxw.com/js/float\.js -# ||hxsxw.com/gg*.gif (easylistchina+easylist.txt: 3303) +# ||hxsxw.com/gg*.gif (easylistchina.txt: 3287) .hxsxw.com/gg.*\.gif -# ||hxsd.com/templets/js/looyu_pop.js (easylistchina+easylist.txt: 3302) +# ||hxsd.com/templets/js/looyu_pop.js (easylistchina.txt: 3286) .hxsd.com/templets/js/looyu_pop\.js -# ||hxsame.hexun.com (easylistchina+easylist.txt: 3301) +# ||hxsame.hexun.com (easylistchina.txt: 3285) .hxsame.hexun.com*. -# ||hxjs.tool.hexun.com (easylistchina+easylist.txt: 3300) +# ||hxjs.tool.hexun.com (easylistchina.txt: 3284) .hxjs.tool.hexun.com*. -# ||hx95.com/images/vip.gif (easylistchina+easylist.txt: 3299) +# ||hx95.com/images/vip.gif (easylistchina.txt: 3283) .hx95.com/images/vip\.gif -# ||hx95.com/images/sn88.gif (easylistchina+easylist.txt: 3298) +# ||hx95.com/images/sn88.gif (easylistchina.txt: 3282) .hx95.com/images/sn88\.gif -# ||huxiu.com/static/js/jobAds/ (easylistchina+easylist.txt: 3297) +# ||huxiu.com/static/js/jobAds/ (easylistchina.txt: 3281) .huxiu.com/static/js/jobAds/ -# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina+easylist.txt: 3296) +# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina.txt: 3280) .hutc.zj.cn/skins/hutc2012/js/fp\.js -# ||hur.cn/AhurD/*.gif (easylistchina+easylist.txt: 3295) +# ||hur.cn/AhurD/*.gif (easylistchina.txt: 3279) .hur.cn/AhurD/.*\.gif -# ||huoyan.tv/yb/img/*.gif (easylistchina+easylist.txt: 3294) +# ||huoyan.tv/yb/img/*.gif (easylistchina.txt: 3278) .huoyan.tv/yb/img/.*\.gif -# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina+easylist.txt: 3293) +# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina.txt: 3277) .huoxingyu.com/images/hxy_350_330\.gif -# ||huoone.com/templets/hanfeng/js/qdtwo.js (easylistchina+easylist.txt: 3292) -.huoone.com/templets/hanfeng/js/qdtwo\.js -# ||huoche.net/Images/pc/ad_ (easylistchina+easylist.txt: 3291) +# ||huoche.net/Images/pc/ad_ (easylistchina.txt: 3276) .huoche.net/Images/pc/ad_ -# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina+easylist.txt: 3290) +# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina.txt: 3275) .hunantv.com/ui/2014/images/hao123\.jpg -# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina+easylist.txt: 3289) +# ||huizu100.com/data/attachment/portal/ (easylistchina.txt: 3274) +.huizu100.com/data/attachment/portal/ +# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina.txt: 3273) .huizhou.cn/webfile/.*/images/scroll\.js -# ||huihuige.com/images/affiliates/*_250_250 (easylistchina+easylist.txt: 3288) +# ||huihuige.com/images/affiliates/*_250_250 (easylistchina.txt: 3272) .huihuige.com/images/affiliates/.*_250_250 -# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina+easylist.txt: 3287) +# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina.txt: 3271) .hudong.pl.youku.com/interact/web/get/timeLinePlugin\? -# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina+easylist.txt: 3286) +# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina.txt: 3270) .hudong.pl.youku.com/interact/player/get/plugins\? -# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina+easylist.txt: 3285) +# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina.txt: 3269) .huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default\.jpg -# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina+easylist.txt: 3284) +# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina.txt: 3268) .huanqiukexue.com/uploads/images/hqkx_11\.jpg -# ||huanqiu.com^*/js/swt.js (easylistchina+easylist.txt: 3283) +# ||huanqiu.com^*/js/swt.js (easylistchina.txt: 3267) .huanqiu.com/.*/js/swt\.js -# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina+easylist.txt: 3282) +# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina.txt: 3266) .huanqiu.com/script/HuanQiuAllBottom\.Js -# ||hualongxiang.com/lib/clientShow.js (easylistchina+easylist.txt: 3281) +# ||huanqiu.com/resource/js/base.js (easylistchina.txt: 3265) +.huanqiu.com/resource/js/base\.js +# ||hualongxiang.com/lib/clientShow.js (easylistchina.txt: 3264) .hualongxiang.com/lib/clientShow\.js -# ||hualady.com/static/ (easylistchina+easylist.txt: 3280) +# ||hualady.com/static/ (easylistchina.txt: 3263) .hualady.com/static/ -# ||huainet.com/index_tg/js/txg.js (easylistchina+easylist.txt: 3279) +# ||huainet.com/index_tg/js/txg.js (easylistchina.txt: 3262) .huainet.com/index_tg/js/txg\.js -# ||huacolor.com/nei/ (easylistchina+easylist.txt: 3278) +# ||huaiduoduo.info/Runtime/js/ (easylistchina.txt: 3261) +.huaiduoduo.info/Runtime/js/ +# ||huacolor.com/nei/ (easylistchina.txt: 3260) .huacolor.com/nei/ -# ||huacolor.com/daocaoren/ (easylistchina+easylist.txt: 3277) +# ||huacolor.com/daocaoren/ (easylistchina.txt: 3259) .huacolor.com/daocaoren/ -# ||huacolor.com/all/ (easylistchina+easylist.txt: 3276) +# ||huacolor.com/all/ (easylistchina.txt: 3258) .huacolor.com/all/ -# ||huabian.com/hb/ad/ (easylistchina+easylist.txt: 3275) +# ||huabian.com/hb/ad/ (easylistchina.txt: 3257) .huabian.com/hb/ad/ -# ||httpcn.com^*950_120 (easylistchina+easylist.txt: 3274) +# ||httpcn.com^*950_120 (easylistchina.txt: 3256) .httpcn.com/.*950_120 -# ||httpcn.com/tg/ (easylistchina+easylist.txt: 3273) +# ||httpcn.com/tg/ (easylistchina.txt: 3255) .httpcn.com/tg/ -# ||httpcn.com/include/ad1/ (easylistchina+easylist.txt: 3272) +# ||httpcn.com/include/ad1/ (easylistchina.txt: 3254) .httpcn.com/include/ad1/ -# ||httpcn.com/Images/banner (easylistchina+easylist.txt: 3271) +# ||httpcn.com/Images/banner (easylistchina.txt: 3253) .httpcn.com/Images/banner -# ||httpcn.com/images/adpic2014/ad (easylistchina+easylist.txt: 3270) +# ||httpcn.com/images/adpic2014/ad (easylistchina.txt: 3252) .httpcn.com/images/adpic2014/ad -# ||httpcn.com/images/ad_ (easylistchina+easylist.txt: 3269) +# ||httpcn.com/images/ad_ (easylistchina.txt: 3251) .httpcn.com/images/ad_ -# ||htpc1.com/iBT/tools/ (easylistchina+easylist.txt: 3268) +# ||htpc1.com/iBT/tools/ (easylistchina.txt: 3250) .htpc1.com/iBT/tools/ -# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina+easylist.txt: 3267) +# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina.txt: 3249) .hs.cnfol.com/Cm/Imgs/Load\.gif -# ||hrtsea.com/936x90.gif (easylistchina+easylist.txt: 3266) +# ||hrtsea.com/936x90.gif (easylistchina.txt: 3248) .hrtsea.com/936x90\.gif -# ||hqdoor.com/Web/ (easylistchina+easylist.txt: 3265) +# ||hqdoor.com/Web/ (easylistchina.txt: 3247) .hqdoor.com/Web/ -# ||hqcx.net/index.php?m=poster& (easylistchina+easylist.txt: 3264) +# ||hqcx.net/index.php?m=poster& (easylistchina.txt: 3246) .hqcx.net/index\.php\?m=poster& -# ||how361.com/images/letou/xsbanner.gif (easylistchina+easylist.txt: 3262) +# ||how361.com/images/letou/xsbanner.gif (easylistchina.txt: 3244) .how361.com/images/letou/xsbanner\.gif -# ||how361.com/images/letou/20130111.gif (easylistchina+easylist.txt: 3261) +# ||how361.com/images/letou/20130111.gif (easylistchina.txt: 3243) .how361.com/images/letou/20130111\.gif -# ||how361.com/data/js.php?id= (easylistchina+easylist.txt: 3260) +# ||how361.com/data/js.php?id= (easylistchina.txt: 3242) .how361.com/data/js\.php\?id= -# ||houyi.baofeng.net^*.html (easylistchina+easylist.txt: 3259) +# ||houyi.baofeng.net^*.html (easylistchina.txt: 3241) .houyi.baofeng.net/.*\.html -# ||house365.com/js/lbpopup.js (easylistchina+easylist.txt: 3258) +# ||house365.com/js/lbpopup.js (easylistchina.txt: 3240) .house365.com/js/lbpopup\.js -# ||house365.com/*ads/201 (easylistchina+easylist.txt: 3257) +# ||house365.com/*ads/201 (easylistchina.txt: 3239) .house365.com/.*ads/201 -# ||house.sina.com.cn/2.0/ads/ (easylistchina+easylist.txt: 3256) +# ||house.sina.com.cn/2.0/ads/ (easylistchina.txt: 3238) .house.sina.com.cn/2\.0/ads/ -# ||house.sina.com.cn/2.0/abp/ (easylistchina+easylist.txt: 3255) +# ||house.sina.com.cn/2.0/abp/ (easylistchina.txt: 3237) .house.sina.com.cn/2\.0/abp/ -# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina+easylist.txt: 3254) +# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina.txt: 3236) .house.shangdu.com/house/js/fmt_swf/ -# ||house.shangdu.com/d/file/p/*.swf (easylistchina+easylist.txt: 3253) +# ||house.shangdu.com/d/file/p/*.swf (easylistchina.txt: 3235) .house.shangdu.com/d/file/p/.*\.swf -# ||house.jschina.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 3252) +# ||house.jschina.com.cn/userfiles/flash/ (easylistchina.txt: 3234) .house.jschina.com.cn/userfiles/flash/ -# ||house.inhe.net/javascript/flashdiv.js (easylistchina+easylist.txt: 3251) +# ||house.inhe.net/javascript/flashdiv.js (easylistchina.txt: 3233) .house.inhe.net/javascript/flashdiv\.js -# ||houdao.com/images/xxd.jpg (easylistchina+easylist.txt: 3250) +# ||house.163.com/special/*/dbhg.js (easylistchina.txt: 3232) +.house.163.com/special/.*/dbhg\.js +# ||houdao.com/images/xxd.jpg (easylistchina.txt: 3231) .houdao.com/images/xxd\.jpg -# ||houdao.com/images/tophd.jpg (easylistchina+easylist.txt: 3249) +# ||houdao.com/images/tophd.jpg (easylistchina.txt: 3230) .houdao.com/images/tophd\.jpg -# ||houdao.com/images/ktpd.jpg (easylistchina+easylist.txt: 3248) +# ||houdao.com/images/ktpd.jpg (easylistchina.txt: 3229) .houdao.com/images/ktpd\.jpg -# ||houdao.com/images/houdaov3/ban.png (easylistchina+easylist.txt: 3247) +# ||houdao.com/images/houdaov3/ban.png (easylistchina.txt: 3228) .houdao.com/images/houdaov3/ban\.png -# ||houdao.com/bans/ (easylistchina+easylist.txt: 3246) +# ||houdao.com/bans/ (easylistchina.txt: 3227) .houdao.com/bans/ -# ||hoto.cn/source/img/index_ (easylistchina+easylist.txt: 3245) +# ||hoto.cn/source/img/index_ (easylistchina.txt: 3226) .hoto.cn/source/img/index_ -# ||hotavxxx.com/images/111111111.jpg (easylistchina+easylist.txt: 3244) -.hotavxxx.com/images/111111111\.jpg -# ||hotavxxx.com/images/*96 (easylistchina+easylist.txt: 3243) +# ||hotavxxx.com/images/*96 (easylistchina.txt: 3225) .hotavxxx.com/images/.*96 -# ||hot.580k.com/share/Ad_ (easylistchina+easylist.txt: 3242) +# ||hot.580k.com/share/Ad_ (easylistchina.txt: 3224) .hot.580k.com/share/Ad_ -# ||hoopchina.com.cn/web/ad/ (easylistchina+easylist.txt: 3241) +# ||hoopchina.com.cn/web/ad/ (easylistchina.txt: 3223) .hoopchina.com.cn/web/ad/ -# ||hoopchina.com.cn/topn$subdocument (easylistchina+easylist.txt: 3240) +# ||hoopchina.com.cn/topn$subdocument (easylistchina.txt: 3222) .hoopchina.com.cn/topn -# ||hongxiu.com/images/home20140530.gif (easylistchina+easylist.txt: 3239) +# ||hongxiu.com/images/home20140530.gif (easylistchina.txt: 3221) .hongxiu.com/images/home20140530\.gif -# ||hongshu.com/hs/ (easylistchina+easylist.txt: 3238) +# ||hongshu.com/hs/ (easylistchina.txt: 3220) .hongshu.com/hs/ -# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina+easylist.txt: 3237) +# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina.txt: 3219) .hongdou.gxnews.com.cn/upload/index/ -# ||hn-pc.com/css/Fun_Div.js (easylistchina+easylist.txt: 3236) +# ||hn-pc.com/css/Fun_Div.js (easylistchina.txt: 3218) .hn-pc.com/css/Fun_Div\.js -# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina+easylist.txt: 3235) +# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina.txt: 3217) .hkwb.net/extra/1992\.files/hengda\.gif -# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina+easylist.txt: 3234) +# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina.txt: 3216) .hkwb.net/extra/1992\.files/2015yeshu\.swf -# ||hktvmall.com/api/preroll/getList? (easylistchina+easylist.txt: 3233) +# ||hktvmall.com/api/preroll/getList? (easylistchina.txt: 3215) .hktvmall.com/api/preroll/getList\? -# ||hkslg.com/gaogao/ (easylistchina+easylist.txt: 3232) +# ||hkslg.com/gaogao/ (easylistchina.txt: 3214) .hkslg.com/gaogao/ -# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina+easylist.txt: 3231) +# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina.txt: 3213) .hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner\.jpg -# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina+easylist.txt: 3230) +# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina.txt: 3212) .hkitblog.com/logo/hkitblog_zh\.jpg -# ||hkheadline.com^*/right_promo.js (easylistchina+easylist.txt: 3229) +# ||hkheadline.com^*/right_promo.js (easylistchina.txt: 3211) .hkheadline.com/.*/right_promo\.js -# ||hkheadline.com/*promo/ (easylistchina+easylist.txt: 3228) +# ||hkheadline.com/*promo/ (easylistchina.txt: 3210) .hkheadline.com/.*promo/ -# ||hkheadline.com/*banner$script (easylistchina+easylist.txt: 3227) +# ||hkheadline.com/*banner$script (easylistchina.txt: 3209) .hkheadline.com/.*banner -# ||hkgolden.com/yahoo_ad (easylistchina+easylist.txt: 3226) +# ||hkgolden.com/yahoo_ad (easylistchina.txt: 3208) .hkgolden.com/yahoo_ad -# ||hkgolden.com/mtg/ (easylistchina+easylist.txt: 3225) +# ||hkgolden.com/mtg/ (easylistchina.txt: 3207) .hkgolden.com/mtg/ -# ||hkgolden.com/hkg.js (easylistchina+easylist.txt: 3224) +# ||hkgolden.com/hkg.js (easylistchina.txt: 3206) .hkgolden.com/hkg\.js -# ||hkgolden.com/google_ad (easylistchina+easylist.txt: 3223) +# ||hkgolden.com/google_ad (easylistchina.txt: 3205) .hkgolden.com/google_ad -# ||hkepc.com/prepared/images/b608.png (easylistchina+easylist.txt: 3222) +# ||hkepc.com/prepared/images/b608.png (easylistchina.txt: 3204) .hkepc.com/prepared/images/b608\.png -# ||hkepc.com/forum/api/unimhk_ (easylistchina+easylist.txt: 3221) +# ||hkepc.com/forum/api/unimhk_ (easylistchina.txt: 3203) .hkepc.com/forum/api/unimhk_ -# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina+easylist.txt: 3220) +# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina.txt: 3202) .hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852\.swf -# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina+easylist.txt: 3219) +# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina.txt: 3201) .hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515\.jpg -# ||hk-pub.com/forum/images/banner/ (easylistchina+easylist.txt: 3218) +# ||hk-pub.com/forum/images/banner/ (easylistchina.txt: 3200) .hk-pub.com/forum/images/banner/ -# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina+easylist.txt: 3217) +# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina.txt: 3199) .hk-pub.com/forum/images/2009/home_advc\.jpg -# ||hk-bici.com/data/attachment/ad/ (easylistchina+easylist.txt: 3216) +# ||hk-bici.com/data/attachment/ad/ (easylistchina.txt: 3198) .hk-bici.com/data/attachment/ad/ -# ||hjdn.cn/img/hjgq.gif (easylistchina+easylist.txt: 3215) +# ||hjdn.cn/img/hjgq.gif (easylistchina.txt: 3197) .hjdn.cn/img/hjgq\.gif -# ||hjav.org/wp-content/uploads/ (easylistchina+easylist.txt: 3214) +# ||hjav.org/wp-content/uploads/ (easylistchina.txt: 3196) .hjav.org/wp-content/uploads/ -# ||hjav.org/ads.js (easylistchina+easylist.txt: 3213) +# ||hjav.org/ads.js (easylistchina.txt: 3195) .hjav.org/ads\.js -# ||hjav.in/wp-content/uploads/ (easylistchina+easylist.txt: 3212) +# ||hjav.in/wp-content/uploads/ (easylistchina.txt: 3194) .hjav.in/wp-content/uploads/ -# ||hjav.in/ads.js (easylistchina+easylist.txt: 3211) +# ||hjav.in/ads.js (easylistchina.txt: 3193) .hjav.in/ads\.js -# ||hjav.in/ad_dl.js (easylistchina+easylist.txt: 3210) +# ||hjav.in/ad_dl.js (easylistchina.txt: 3192) .hjav.in/ad_dl\.js -# ||hipowerd.com/outbound/images/*_banner. (easylistchina+easylist.txt: 3209) +# ||hipowerd.com/outbound/images/*_banner. (easylistchina.txt: 3191) .hipowerd.com/outbound/images/.*_banner\. -# ||hinews.cn/swf/0/*.swf (easylistchina+easylist.txt: 3208) +# ||hinews.cn/swf/0/*.swf (easylistchina.txt: 3190) .hinews.cn/swf/0/.*\.swf -# ||hinews.cn/out/$script (easylistchina+easylist.txt: 3207) +# ||hinews.cn/out/$script (easylistchina.txt: 3189) .hinews.cn/out/ -# ||hinews.cn/js/09page/10pagesjbtj (easylistchina+easylist.txt: 3206) +# ||hinews.cn/js/09page/10pagesjbtj (easylistchina.txt: 3188) .hinews.cn/js/09page/10pagesjbtj -# ||hinews.cn/eweb/img/*/1000x (easylistchina+easylist.txt: 3205) +# ||hinews.cn/eweb/img/*/1000x (easylistchina.txt: 3187) .hinews.cn/eweb/img/.*/1000x -# ||hinet.net/radio/getAdcode.do (easylistchina+easylist.txt: 3204) +# ||hinet.net/radio/getAdcode.do (easylistchina.txt: 3186) .hinet.net/radio/getAdcode\.do -# ||hifidiy.net/www/*/hivi_ (easylistchina+easylist.txt: 3203) +# ||hifidiy.net/www/*/hivi_ (easylistchina.txt: 3185) .hifidiy.net/www/.*/hivi_ -# ||hiao.com/node/node_27508.htm (easylistchina+easylist.txt: 3202) +# ||hiao.com/node/node_27508.htm (easylistchina.txt: 3184) .hiao.com/node/node_27508\.htm -# ||hiad.vmall.com^ (easylistchina+easylist.txt: 3201) +# ||hiad.vmall.com^ (easylistchina.txt: 3183) .hiad.vmall.com -# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina+easylist.txt: 3200) +# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina.txt: 3182) .hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942\.jpg -# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina+easylist.txt: 3199) +# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina.txt: 3181) .hi.people.com.cn/NMediaFile/.*\.gif -# ||hi.people.com.cn/NMediaFile/$object (easylistchina+easylist.txt: 3198) +# ||hi.people.com.cn/NMediaFile/$object (easylistchina.txt: 3180) .hi.people.com.cn/NMediaFile/ -# ||hhmanhua.net/jsc/stat.js (easylistchina+easylist.txt: 3197) +# ||hhmanhua.net/jsc/stat.js (easylistchina.txt: 3179) .hhmanhua.net/jsc/stat\.js -# ||hhmanhua.net/jsc/book_ (easylistchina+easylist.txt: 3196) +# ||hhmanhua.net/jsc/book_ (easylistchina.txt: 3178) .hhmanhua.net/jsc/book_ -# ||hhmanhua.net/hh/h*.js (easylistchina+easylist.txt: 3195) +# ||hhmanhua.net/hh/h*.js (easylistchina.txt: 3177) .hhmanhua.net/hh/h.*\.js -# ||hhcomic.com/hh/h*.js (easylistchina+easylist.txt: 3194) +# ||hhcomic.com/hh/h*.js (easylistchina.txt: 3176) .hhcomic.com/hh/h.*\.js -# ||hfchenming.com.cn/ad.html (easylistchina+easylist.txt: 3193) +# ||hfchenming.com.cn/ad.html (easylistchina.txt: 3175) .hfchenming.com.cn/ad\.html -# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina+easylist.txt: 3192) +# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina.txt: 3174) .hf365.com/0/14/60/93/14609355_921128\.jpg -# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina+easylist.txt: 3191) +# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina.txt: 3173) .hf365.com/0/14/31/00/14310068_933922\.png -# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina+easylist.txt: 3190) +# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina.txt: 3172) .hf365.com/0/13/79/87/13798795_912593\.jpg -# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina+easylist.txt: 3189) -# ||hexunimg.cn/m/images/ad_ (easylistchina+easylist.txt: 3188) +# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina.txt: 3171) +# ||hexunimg.cn/m/images/ad_ (easylistchina.txt: 3170) .hexunimg.cn/m/images/ad_ -# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina+easylist.txt: 3187) +# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina.txt: 3169) .hexun.com*./(.*/)?hx_news/hx_news_finalpage\.js -# ||heshan.gov.cn/JS/ddgg.js (easylistchina+easylist.txt: 3186) +# ||heshan.gov.cn/JS/ddgg.js (easylistchina.txt: 3168) .heshan.gov.cn/JS/ddgg\.js -# ||henghost.com^$third-party (easylistchina+easylist.txt: 3185) +# ||henghost.com^$third-party (easylistchina.txt: 3167) .henghost.com -# ||henan100.com^*/ad_article/ (easylistchina+easylist.txt: 3184) +# ||henan100.com^*/ad_article/ (easylistchina.txt: 3166) .henan100.com/.*/ad_article/ -# ||henan.sina.com.cn/iframe/7/ (easylistchina+easylist.txt: 3183) +# ||henan.sina.com.cn/iframe/7/ (easylistchina.txt: 3165) .henan.sina.com.cn/iframe/7/ -# ||heitu5.com/js/heituad/ (easylistchina+easylist.txt: 3182) +# ||heitu5.com/js/heituad/ (easylistchina.txt: 3164) .heitu5.com/js/heituad/ -# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina+easylist.txt: 3181) +# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina.txt: 3163) .heikexs.com/wp-content/themes/Duoxs.*/js/ -# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina+easylist.txt: 3180) +# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina.txt: 3162) .heiguang.com/statics/201404/img/tiop-1\.jpg -# ||heiguang.com/f/uad/ (easylistchina+easylist.txt: 3179) +# ||heiguang.com/f/uad/ (easylistchina.txt: 3161) .heiguang.com/f/uad/ -# ||hego123.net/top.js (easylistchina+easylist.txt: 3178) +# ||hego123.net/top.js (easylistchina.txt: 3160) .hego123.net/top\.js -# ||hego123.net/760-90.js (easylistchina+easylist.txt: 3177) +# ||hego123.net/760-90.js (easylistchina.txt: 3159) .hego123.net/760-90\.js -# ||hefei.cc/templates/default/index_ad (easylistchina+easylist.txt: 3176) +# ||hefei.cc/templates/default/index_ad (easylistchina.txt: 3158) .hefei.cc/templates/default/index_ad -# ||hebnews.cn/27510.files/baidu.js (easylistchina+easylist.txt: 3175) +# ||hebnews.cn/27510.files/baidu.js (easylistchina.txt: 3157) .hebnews.cn/27510\.files/baidu\.js -# ||hebei.com.cn/sys/online_calc.js (easylistchina+easylist.txt: 3174) +# ||hebei.com.cn/sys/online_calc.js (easylistchina.txt: 3156) .hebei.com.cn/sys/online_calc\.js -# ||hebei.com.cn/swf/ (easylistchina+easylist.txt: 3173) +# ||hebei.com.cn/swf/ (easylistchina.txt: 3155) .hebei.com.cn/swf/ -# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina+easylist.txt: 3172) +# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina.txt: 3154) .hebei.com.cn/js/leftrightdown_piaofu_ad_js\.js -# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina+easylist.txt: 3171) +# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina.txt: 3153) .hebei.com.cn/js/duilian_four_ad_js\.js -# ||hebei.com.cn/eap/ (easylistchina+easylist.txt: 3170) +# ||hebei.com.cn/eap/ (easylistchina.txt: 3152) .hebei.com.cn/eap/ -# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina+easylist.txt: 3169) +# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina.txt: 3151) .hdzc.net/statics/images/lamu/mhs\.swf -# ||hdsq.cc/data/attachment/portal/ (easylistchina+easylist.txt: 3168) +# ||hdsq.cc/data/attachment/portal/ (easylistchina.txt: 3150) .hdsq.cc/data/attachment/portal/ -# ||hdsky.me/adv/ (easylistchina+easylist.txt: 3166) +# ||hdsky.me/adv/ (easylistchina.txt: 3148) .hdsky.me/adv/ -# ||hdpfans.com/images/icons/*x75. (easylistchina+easylist.txt: 3165) +# ||hdpfans.com/images/icons/*x75. (easylistchina.txt: 3147) .hdpfans.com/images/icons/.*x75\. -# ||hdpfans.com/images/icons/*x70. (easylistchina+easylist.txt: 3164) +# ||hdpfans.com/images/icons/*x70. (easylistchina.txt: 3146) .hdpfans.com/images/icons/.*x70\. -# ||hdpfans.com/images/icons/*x60. (easylistchina+easylist.txt: 3163) +# ||hdpfans.com/images/icons/*x60. (easylistchina.txt: 3145) .hdpfans.com/images/icons/.*x60\. -# ||hdpfans.com/images/hotapp/ (easylistchina+easylist.txt: 3162) +# ||hdpfans.com/images/hotapp/ (easylistchina.txt: 3144) .hdpfans.com/images/hotapp/ -# ||hdarea.co/pic/2222.gif (easylistchina+easylist.txt: 3161) +# ||hdarea.co/pic/2222.gif (easylistchina.txt: 3143) .hdarea.co/pic/2222\.gif -# ||hdad.baike.com^ (easylistchina+easylist.txt: 3160) +# ||hdad.baike.com^ (easylistchina.txt: 3142) .hdad.baike.com -# ||hd62.com/img/ (easylistchina+easylist.txt: 3159) +# ||hd62.com/img/ (easylistchina.txt: 3141) .hd62.com/img/ -# ||hd180.com/js/ (easylistchina+easylist.txt: 3158) +# ||hd180.com/js/ (easylistchina.txt: 3140) .hd180.com/js/ -# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina+easylist.txt: 3157) +# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina.txt: 3139) .hc360.com/security/201409/201409021830024990\.jpg -# ||hc360.com/security/201311/201311151050289368.swf (easylistchina+easylist.txt: 3156) +# ||hc360.com/security/201311/201311151050289368.swf (easylistchina.txt: 3138) .hc360.com/security/201311/201311151050289368\.swf -# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina+easylist.txt: 3155) +# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina.txt: 3137) .hc360.com/news/201207/201207241712413488\.jpg -# ||hc360.com/list/iframe_right_ad_ (easylistchina+easylist.txt: 3154) +# ||hc360.com/list/iframe_right_ad_ (easylistchina.txt: 3136) .hc360.com/list/iframe_right_ad_ -# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina+easylist.txt: 3153) +# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina.txt: 3135) .hc360.com/list/iframe_end_textadv\.shtml -# ||hc360.com/list/iframe_2012ad_ (easylistchina+easylist.txt: 3152) +# ||hc360.com/list/iframe_2012ad_ (easylistchina.txt: 3134) .hc360.com/list/iframe_2012ad_ -# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina+easylist.txt: 3151) +# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina.txt: 3133) .hc360.com/list/iframe_2011hezuo\.shtml -# ||hc360.com/js/hcpop_ (easylistchina+easylist.txt: 3150) +# ||hc360.com/js/hcpop_ (easylistchina.txt: 3132) .hc360.com/js/hcpop_ -# ||hc360.com/js/*hezuo.js (easylistchina+easylist.txt: 3149) +# ||hc360.com/js/*hezuo.js (easylistchina.txt: 3131) .hc360.com/js/.*hezuo\.js -# ||hc360.com/images/14826/289x90.jpg (easylistchina+easylist.txt: 3148) +# ||hc360.com/images/14826/289x90.jpg (easylistchina.txt: 3130) .hc360.com/images/14826/289x90\.jpg -# ||hbrc.com/bd1.html (easylistchina+easylist.txt: 3147) +# ||hbrc.com/bd1.html (easylistchina.txt: 3129) .hbrc.com/bd1\.html -# ||haxiu.miaotiao.com^ (easylistchina+easylist.txt: 3146) -.haxiu.miaotiao.com -# ||haxiu.com/data/cache/myadn- (easylistchina+easylist.txt: 3145) +# ||haxiu.com/data/cache/myadn- (easylistchina.txt: 3128) .haxiu.com/data/cache/myadn- -# ||happydown.com^$script,subdocument (easylistchina+easylist.txt: 3144) +# ||happydown.com^$script,subdocument (easylistchina.txt: 3127) .happydown.com -# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina+easylist.txt: 3143) +# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina.txt: 3126) .haoyu.me/wp-content/uploads/2013/12/aliyun\.jpg -# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina+easylist.txt: 3142) +# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina.txt: 3125) .haoyu.me/wp-content/uploads/2013/08/interserver-vps1\.gif -# ||haowj.com.cn/d/js/outsidead/ (easylistchina+easylist.txt: 3141) +# ||haoxxoo.com/player/ad.html (easylistchina.txt: 3124) +.haoxxoo.com/player/ad\.html +# ||haowj.com.cn/d/js/outsidead/ (easylistchina.txt: 3123) .haowj.com.cn/d/js/outsidead/ -# ||haoring03.com/ads/ (easylistchina+easylist.txt: 3140) +# ||haoring03.com/ads/ (easylistchina.txt: 3122) .haoring03.com/ads/ -# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina+easylist.txt: 3139) +# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina.txt: 3121) .haokan5.com/js/haokanjs/youxiajiao\.js -# ||haokan5.com/js/haokanjs/tj.js (easylistchina+easylist.txt: 3138) +# ||haokan5.com/js/haokanjs/tj.js (easylistchina.txt: 3120) .haokan5.com/js/haokanjs/tj\.js -# ||haokan5.com/js/haokanjs/playa (easylistchina+easylist.txt: 3137) +# ||haokan5.com/js/haokanjs/playa (easylistchina.txt: 3119) .haokan5.com/js/haokanjs/playa -# ||haokan5.com/js/haokanjs/2014_ (easylistchina+easylist.txt: 3136) +# ||haokan5.com/js/haokanjs/2014_ (easylistchina.txt: 3118) .haokan5.com/js/haokanjs/2014_ -# ||haoghost.com/js/hy_cpc_print.js (easylistchina+easylist.txt: 3135) +# ||haoghost.com/js/hy_cpc_print.js (easylistchina.txt: 3117) .haoghost.com/js/hy_cpc_print\.js -# ||haofu1.com/images/*.gif (easylistchina+easylist.txt: 3134) +# ||haofu1.com/images/*.gif (easylistchina.txt: 3116) .haofu1.com/images/.*\.gif -# ||haofs.com/haofs/ggapi.asp (easylistchina+easylist.txt: 3133) +# ||haofs.com/haofs/ggapi.asp (easylistchina.txt: 3115) .haofs.com/haofs/ggapi\.asp -# ||haodai.com/src/i/lianmeng/ad/ (easylistchina+easylist.txt: 3132) +# ||haodai.com/src/i/lianmeng/ad/ (easylistchina.txt: 3114) .haodai.com/src/i/lianmeng/ad/ -# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina+easylist.txt: 3131) +# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina.txt: 3113) .haochi123.com/Js/Fun_Effects_HT9\.js -# ||haochi123.com/J_Box/Inc_ (easylistchina+easylist.txt: 3130) +# ||haochi123.com/J_Box/Inc_ (easylistchina.txt: 3112) .haochi123.com/J_Box/Inc_ -# ||hao6666.info^*.js (easylistchina+easylist.txt: 3129) +# ||hao6666.info^*.js (easylistchina.txt: 3111) .hao6666.info/.*\.js -# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina+easylist.txt: 3128) +# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina.txt: 3110) .hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT\.js -# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina+easylist.txt: 3127) +# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina.txt: 3109) .hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43\.png -# ||hao123img.com/res/ecom/ (easylistchina+easylist.txt: 3126) +# ||hao123img.com/res/ecom/ (easylistchina.txt: 3108) .hao123img.com/res/ecom/ -# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina+easylist.txt: 3125) +# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina.txt: 3107) .hao123.com/data/v/stuff\.php\?.*_forhao123Adv -# ||hao123.cn/images/vip.png (easylistchina+easylist.txt: 3124) +# ||hao123.cn/images/vip.png (easylistchina.txt: 3106) .hao123.cn/images/vip\.png -# ||hao.rising.cn/images/nsdgg.jpg (easylistchina+easylist.txt: 3123) +# ||hao.rising.cn/images/nsdgg.jpg (easylistchina.txt: 3105) .hao.rising.cn/images/nsdgg\.jpg -# ||hao.rising.cn/catalog/bottom.html (easylistchina+easylist.txt: 3122) +# ||hao.rising.cn/catalog/bottom.html (easylistchina.txt: 3104) .hao.rising.cn/catalog/bottom\.html -# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina+easylist.txt: 3121) +# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina.txt: 3103) .hanzify.*./(.*/)?Main/Template/Images/chinabank\.gif -# ||hangzhou.com.cn/inc_hzw/ (easylistchina+easylist.txt: 3120) +# ||hangzhou.com.cn/inc_hzw/ (easylistchina.txt: 3102) .hangzhou.com.cn/inc_hzw/ -# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina+easylist.txt: 3119) +# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina.txt: 3101) .hangzhou.com.cn/images/flashyingpian\.swf -# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina+easylist.txt: 3118) +# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina.txt: 3100) .hangzhou.com.cn/extra/flash/hzwarticle300\.swf -# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina+easylist.txt: 3117) +# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina.txt: 3099) .hanfanba.com/template/hanfanba/img/tb- -# ||haiwainet.cn/json/news (easylistchina+easylist.txt: 3116) +# ||haiwainet.cn/json/news (easylistchina.txt: 3098) .haiwainet.cn/json/news -# ||haiwainet.cn*/k.js (easylistchina+easylist.txt: 3115) +# ||haiwainet.cn*/k.js (easylistchina.txt: 3097) .haiwainet.cn*./(.*/)?k\.js -# ||hahade.com/tpl/*.html (easylistchina+easylist.txt: 3114) +# ||hahade.com/tpl/*.html (easylistchina.txt: 3096) .hahade.com/tpl/.*\.html -# ||haha.mx/upload/data/list_sidebar_ (easylistchina+easylist.txt: 3113) +# ||haha.mx/upload/data/list_sidebar_ (easylistchina.txt: 3095) .haha.mx/upload/data/list_sidebar_ -# ||haha.mx/upload/data/detail_ (easylistchina+easylist.txt: 3112) +# ||haha.mx/upload/data/detail_ (easylistchina.txt: 3094) .haha.mx/upload/data/detail_ -# ||haha.mx/images/market/ (easylistchina+easylist.txt: 3111) +# ||haha.mx/images/market/ (easylistchina.txt: 3093) .haha.mx/images/market/ -# ||haha.mx/images/banner/vipp.jpg (easylistchina+easylist.txt: 3110) +# ||haha.mx/images/banner/vipp.jpg (easylistchina.txt: 3092) .haha.mx/images/banner/vipp\.jpg -# ||haha.mx/images/banner/tmall11.png (easylistchina+easylist.txt: 3109) +# ||haha.mx/images/banner/tmall11.png (easylistchina.txt: 3091) .haha.mx/images/banner/tmall11\.png -# ||haha.mx/images/banner/jd.jpg (easylistchina+easylist.txt: 3108) +# ||haha.mx/images/banner/jd.jpg (easylistchina.txt: 3090) .haha.mx/images/banner/jd\.jpg -# ||hackp.com/xiaojiu/ (easylistchina+easylist.txt: 3107) +# ||hackp.com/xiaojiu/ (easylistchina.txt: 3089) .hackp.com/xiaojiu/ -# ||hackp.com/wz/ (easylistchina+easylist.txt: 3106) +# ||hackp.com/wz/ (easylistchina.txt: 3088) .hackp.com/wz/ -# ||hacken.cc/file/ads/ (easylistchina+easylist.txt: 3105) +# ||hacken.cc/file/ads/ (easylistchina.txt: 3087) .hacken.cc/file/ads/ -# ||hackbase.com/vip/topbanner.html (easylistchina+easylist.txt: 3104) +# ||hackbase.com/vip/topbanner.html (easylistchina.txt: 3086) .hackbase.com/vip/topbanner\.html -# ||hackbase.com/2009/bingdun2009.jpg (easylistchina+easylist.txt: 3103) +# ||hackbase.com/2009/bingdun2009.jpg (easylistchina.txt: 3085) .hackbase.com/2009/bingdun2009\.jpg -# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina+easylist.txt: 3102) +# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina.txt: 3084) .gzdaily.dayoo.com/tpl/banner.*\.swf -# ||gzcol.com/uploads/ad/ (easylistchina+easylist.txt: 3101) +# ||gzcol.com/uploads/ad/ (easylistchina.txt: 3083) .gzcol.com/uploads/ad/ -# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina+easylist.txt: 3100) +# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina.txt: 3082) .gz.xinhuanet.com/2012image/mt\.swf -# ||gywb.cn/gggl/ (easylistchina+easylist.txt: 3099) +# ||gywb.cn/gggl/ (easylistchina.txt: 3081) .gywb.cn/gggl/ -# ||gywb.cn/cs_mulu/ (easylistchina+easylist.txt: 3098) +# ||gywb.cn/cs_mulu/ (easylistchina.txt: 3080) .gywb.cn/cs_mulu/ -# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina+easylist.txt: 3097) +# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina.txt: 3079) .gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09\.jpg -# ||gxorg.com/index.php?m=poster& (easylistchina+easylist.txt: 3096) +# ||gxorg.com/index.php?m=poster& (easylistchina.txt: 3078) .gxorg.com/index\.php\?m=poster& -# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina+easylist.txt: 3095) +# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina.txt: 3077) .gxnews.com.cn/clientscript/index_duilian_ -# ||gxnews.com.cn/cache/wwwads.js (easylistchina+easylist.txt: 3094) +# ||gxnews.com.cn/cache/wwwads.js (easylistchina.txt: 3076) .gxnews.com.cn/cache/wwwads\.js -# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina+easylist.txt: 3093) +# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina.txt: 3075) .gx.xinhuanet.com/images2007/banner\.htm -# ||guyizhou.cn/temp/top_banner_ (easylistchina+easylist.txt: 3092) +# ||guyizhou.cn/temp/top_banner_ (easylistchina.txt: 3074) .guyizhou.cn/temp/top_banner_ -# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina+easylist.txt: 3091) +# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina.txt: 3073) .gusuwang.com/ymsextweb/javascript/gs -# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina+easylist.txt: 3090) +# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina.txt: 3072) .gusuwang.com/ymsextweb/images/index/ist_t\.jpg -# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina+easylist.txt: 3089) +# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina.txt: 3071) .gusuwang.com/ymsextweb/fullggw/ -# ||gusuwang.com/api/gsw_ (easylistchina+easylist.txt: 3088) +# ||gusuwang.com/api/gsw_ (easylistchina.txt: 3070) .gusuwang.com/api/gsw_ -# ||guqu.net/Cooperate/ (easylistchina+easylist.txt: 3087) +# ||guqu.net/Cooperate/ (easylistchina.txt: 3069) .guqu.net/Cooperate/ -# ||guokr.com/baidu-cbjs/ (easylistchina+easylist.txt: 3086) +# ||guokr.com/baidu-cbjs/ (easylistchina.txt: 3068) .guokr.com/baidu-cbjs/ -# ||guofs.com/images/you.js (easylistchina+easylist.txt: 3085) +# ||guofs.com/images/you.js (easylistchina.txt: 3067) .guofs.com/images/you\.js -# ||guofs.com/images/578-60.gif (easylistchina+easylist.txt: 3084) +# ||guofs.com/images/578-60.gif (easylistchina.txt: 3066) .guofs.com/images/578-60\.gif -# ||guitarchina.com/1/ww2014 (easylistchina+easylist.txt: 3083) +# ||guitarchina.com/1/ww2014 (easylistchina.txt: 3065) .guitarchina.com/1/ww2014 -# ||guess.h.qhimg.com^ (easylistchina+easylist.txt: 3082) +# ||guess.h.qhimg.com^ (easylistchina.txt: 3064) .guess.h.qhimg.com -# ||gucheng.com/2015/z4/ (easylistchina+easylist.txt: 3081) +# ||gucheng.com/2015/z4/ (easylistchina.txt: 3063) .gucheng.com/2015/z4/ -# ||gucheng.com/2015/mst/ (easylistchina+easylist.txt: 3080) +# ||gucheng.com/2015/mst/ (easylistchina.txt: 3062) .gucheng.com/2015/mst/ -# ||guahao.com/iwant/ads? (easylistchina+easylist.txt: 3079) +# ||guahao.com/iwant/ads? (easylistchina.txt: 3061) .guahao.com/iwant/ads\? -# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina+easylist.txt: 3078) +# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina.txt: 3060) .gtv.com.cn/public/images/2014-06/15/110_89471402801935\.jpg -# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina+easylist.txt: 3077) +# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina.txt: 3059) .gtv.com.cn/public/images/2014-03/20/71_12931395286234\.jpg -# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina+easylist.txt: 3076) +# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina.txt: 3058) .gtv.com.cn/public/images/2014-01/26/97_76841390730340\.jpg -# ||gtimg.com^*/adv/ (easylistchina+easylist.txt: 3075) +# ||gtimg.com^*/adv/ (easylistchina.txt: 3057) .gtimg.com/.*/adv/ -# ||gtimg.com^*/ad/ (easylistchina+easylist.txt: 3074) +# ||gtimg.com^*/ad/ (easylistchina.txt: 3056) .gtimg.com/.*/ad/ -# ||gtimg.com/www/test/300_250.swf (easylistchina+easylist.txt: 3073) +# ||gtimg.com/www/test/300_250.swf (easylistchina.txt: 3055) .gtimg.com/www/test/300_250\.swf -# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina+easylist.txt: 3072) +# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina.txt: 3054) .gtimg.com/web/default_fodders/300x600_ -# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina+easylist.txt: 3071) +# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina.txt: 3053) .gtimg.com/v/pics/hv1/88/83/1734/112774603\.jpg -# ||gtimg.com/qqlive/ (easylistchina+easylist.txt: 3070) +# ||gtimg.com/qqlive/ (easylistchina.txt: 3052) .gtimg.com/qqlive/ -# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina+easylist.txt: 3069) +# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina.txt: 3051) .gtimg.com/newsapp_ls/0/27161189/0 -# ||gtimg.com/news/news/2014ad/ (easylistchina+easylist.txt: 3068) +# ||gtimg.com/news/news/2014ad/ (easylistchina.txt: 3050) .gtimg.com/news/news/2014ad/ -# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina+easylist.txt: 3067) +# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina.txt: 3049) .gtimg.com/ent/final2009/dp_tebu_logo\.png -# ||gtimg.com/comic/richmedia/ (easylistchina+easylist.txt: 3066) +# ||gtimg.com/comic/richmedia/ (easylistchina.txt: 3048) .gtimg.com/comic/richmedia/ -# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina+easylist.txt: 3065) +# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina.txt: 3047) .gtimg.com/comic/pics/hv1/29/74/1631/106074674\.jpg -# ||gter.net^*adv (easylistchina+easylist.txt: 3064) +# ||gter.net^*adv (easylistchina.txt: 3046) .gter.net/.*adv -# ||gt.yy.com^ (easylistchina+easylist.txt: 3063) +# ||gt.yy.com^ (easylistchina.txt: 3045) .gt.yy.com -# ||gsspcln.jp^ (easylistchina+easylist.txt: 3062) +# ||gsspcln.jp^ (easylistchina.txt: 3044) .gsspcln.jp -# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina+easylist.txt: 3061) +# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina.txt: 3043) .gscn.com.cn/pic/0/10/34/27/10342786_994137\.gif -# ||gscn.com.cn/home/images/advscroll.js (easylistchina+easylist.txt: 3060) +# ||gscn.com.cn/home/images/advscroll.js (easylistchina.txt: 3042) .gscn.com.cn/home/images/advscroll\.js -# ||groupa.onlylady.com^ (easylistchina+easylist.txt: 3059) +# ||groupa.onlylady.com^ (easylistchina.txt: 3041) .groupa.onlylady.com -# ||greenxiazai.com/jsgreen/ (easylistchina+easylist.txt: 3058) +# ||greenxiazai.com/jsgreen/ (easylistchina.txt: 3040) .greenxiazai.com/jsgreen/ -# ||greenxiazai.com/greenjs/ (easylistchina+easylist.txt: 3057) +# ||greenxiazai.com/greenjs/ (easylistchina.txt: 3039) .greenxiazai.com/greenjs/ -# ||greenxf.com/js/main.js (easylistchina+easylist.txt: 3056) +# ||greenxf.com/js/main.js (easylistchina.txt: 3038) .greenxf.com/js/main\.js -# ||greenxf.com/img/46860.gif (easylistchina+easylist.txt: 3055) +# ||greenxf.com/img/46860.gif (easylistchina.txt: 3037) .greenxf.com/img/46860\.gif -# ||greenxf.com/asp/ (easylistchina+easylist.txt: 3054) +# ||greenxf.com/asp/ (easylistchina.txt: 3036) .greenxf.com/asp/ -# ||greatwuyi.com/tplimg/1.files/ad (easylistchina+easylist.txt: 3053) +# ||greatwuyi.com/tplimg/1.files/ad (easylistchina.txt: 3035) .greatwuyi.com/tplimg/1\.files/ad -# ||gqgc.sz.zj.cn^ (easylistchina+easylist.txt: 3052) +# ||gqgc.sz.zj.cn^ (easylistchina.txt: 3034) .gqgc.sz.zj.cn -# ||gpxz.com/skins/gupuxiazai/soft (easylistchina+easylist.txt: 3051) +# ||gpxz.com/skins/gupuxiazai/soft (easylistchina.txt: 3033) .gpxz.com/skins/gupuxiazai/soft -# ||gpxz.com/js2/ (easylistchina+easylist.txt: 3050) +# ||gpxz.com/js2/ (easylistchina.txt: 3032) .gpxz.com/js2/ -# ||gpsdlm.com/images/lm2.jpg (easylistchina+easylist.txt: 3049) +# ||gpsdlm.com/images/lm2.jpg (easylistchina.txt: 3031) .gpsdlm.com/images/lm2\.jpg -# ||gpsdlm.com/images/jdyigou.jpg (easylistchina+easylist.txt: 3048) +# ||gpsdlm.com/images/jdyigou.jpg (easylistchina.txt: 3030) .gpsdlm.com/images/jdyigou\.jpg -# ||gpcxw.com/file/js/img/*.gif (easylistchina+easylist.txt: 3047) +# ||gpcxw.com/file/js/img/*.gif (easylistchina.txt: 3029) .gpcxw.com/file/js/img/.*\.gif -# ||goyeah.com/homepage.html (easylistchina+easylist.txt: 3045) +# ||goyeah.com/homepage.html (easylistchina.txt: 3027) .goyeah.com/homepage\.html -# ||goto.www.iciba.com^ (easylistchina+easylist.txt: 3044) +# ||goto.www.iciba.com^ (easylistchina.txt: 3026) .goto.www.iciba.com -# ||gope.cn/1commonfile/guidebar/ (easylistchina+easylist.txt: 3043) +# ||gope.cn/1commonfile/guidebar/ (easylistchina.txt: 3025) .gope.cn/1commonfile/guidebar/ -# ||gope.cn/1commonfile/*.swf (easylistchina+easylist.txt: 3042) +# ||gope.cn/1commonfile/*.swf (easylistchina.txt: 3024) .gope.cn/1commonfile/.*\.swf -# ||gope.cn/1commonfile/*.htm (easylistchina+easylist.txt: 3041) +# ||gope.cn/1commonfile/*.htm (easylistchina.txt: 3023) .gope.cn/1commonfile/.*\.htm -# ||gope.cn/1commonfile/*.gif (easylistchina+easylist.txt: 3040) +# ||gope.cn/1commonfile/*.gif (easylistchina.txt: 3022) .gope.cn/1commonfile/.*\.gif -# ||goods.tudou.com/api? (easylistchina+easylist.txt: 3038) +# ||goods.tudou.com/api? (easylistchina.txt: 3020) .goods.tudou.com/api\? -# ||good.gd/js/loadpopads.aspx (easylistchina+easylist.txt: 3037) +# ||good.gd/js/loadpopads.aspx (easylistchina.txt: 3019) .good.gd/js/loadpopads\.aspx -# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina+easylist.txt: 3036) +# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina.txt: 3018) .good.gd/good\.gd/js/downloadPrograss\.js -# ||gohubei.com/img/zhuna.gif (easylistchina+easylist.txt: 3035) +# ||gohubei.com/img/zhuna.gif (easylistchina.txt: 3017) .gohubei.com/img/zhuna\.gif -# ||gohubei.com/img/tuniu.jpg (easylistchina+easylist.txt: 3034) +# ||gohubei.com/img/tuniu.jpg (easylistchina.txt: 3016) .gohubei.com/img/tuniu\.jpg -# ||go2tutor.com/lifebox.asp (easylistchina+easylist.txt: 3033) +# ||go2tutor.com/lifebox.asp (easylistchina.txt: 3015) .go2tutor.com/lifebox\.asp -# ||go.hangzhou.com.cn^ (easylistchina+easylist.txt: 3032) +# ||go.hangzhou.com.cn^ (easylistchina.txt: 3014) .go.hangzhou.com.cn -# ||gmw.cn/banner/ (easylistchina+easylist.txt: 3031) +# ||gmw.cn/banner/ (easylistchina.txt: 3013) .gmw.cn/banner/ -# ||gminfo.cn/qds/gmszyy.swf (easylistchina+easylist.txt: 3030) +# ||gminfo.cn/qds/gmszyy.swf (easylistchina.txt: 3012) .gminfo.cn/qds/gmszyy\.swf -# ||gminfo.cn/js/ad- (easylistchina+easylist.txt: 3029) +# ||gminfo.cn/js/ad- (easylistchina.txt: 3011) .gminfo.cn/js/ad- -# ||gminfo.cn/flash/ (easylistchina+easylist.txt: 3028) +# ||gminfo.cn/flash/ (easylistchina.txt: 3010) .gminfo.cn/flash/ -# ||gmbuluo.com/js/yxj (easylistchina+easylist.txt: 3027) +# ||gmbuluo.com/js/yxj (easylistchina.txt: 3009) .gmbuluo.com/js/yxj -# ||gmbuluo.com/js/shouye (easylistchina+easylist.txt: 3026) +# ||gmbuluo.com/js/shouye (easylistchina.txt: 3008) .gmbuluo.com/js/shouye -# ||gmbuluo.com/js/liebiao (easylistchina+easylist.txt: 3025) +# ||gmbuluo.com/js/liebiao (easylistchina.txt: 3007) .gmbuluo.com/js/liebiao -# ||gmbbk.cn/jj/ (easylistchina+easylist.txt: 3024) +# ||gmbbk.cn/jj/ (easylistchina.txt: 3006) .gmbbk.cn/jj/ -# ||gmbbk.cn/img/top.js (easylistchina+easylist.txt: 3023) +# ||gmbbk.cn/img/top.js (easylistchina.txt: 3005) .gmbbk.cn/img/top\.js -# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina+easylist.txt: 3022) +# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina.txt: 3004) .global.tianyaui.com/global/wizard/js/wizard\.js -# ||github.io/2048/full/meta/cmpay.gif (easylistchina+easylist.txt: 3021) +# ||github.io/2048/full/meta/cmpay.gif (easylistchina.txt: 3003) .github.io/2048/full/meta/cmpay\.gif -# ||gimhoy.com/201404/cute.jpg (easylistchina+easylist.txt: 3020) +# ||gimhoy.com/201404/cute.jpg (easylistchina.txt: 3002) .gimhoy.com/201404/cute\.jpg -# ||gigacircle.com/images/*720X85. (easylistchina+easylist.txt: 3019) +# ||gigacircle.com/images/*720X85. (easylistchina.txt: 3001) .gigacircle.com/images/.*720X85\. -# ||gigacircle.com/images/*250X250. (easylistchina+easylist.txt: 3018) +# ||gigacircle.com/images/*250X250. (easylistchina.txt: 3000) .gigacircle.com/images/.*250X250\. -# ||ghostxp3.com/xf.js (easylistchina+easylist.txt: 3017) +# ||ghostxp3.com/xf.js (easylistchina.txt: 2999) .ghostxp3.com/xf\.js -# ||ghoffice.com/bbs/js/float.js (easylistchina+easylist.txt: 3016) +# ||ghoffice.com/bbs/js/float.js (easylistchina.txt: 2998) .ghoffice.com/bbs/js/float\.js -# ||ghjie.com/JS/youcegg.js (easylistchina+easylist.txt: 3015) +# ||ghjie.com/JS/youcegg.js (easylistchina.txt: 2997) .ghjie.com/JS/youcegg\.js -# ||ghjie.com/images/2012/images/bg (easylistchina+easylist.txt: 3014) +# ||ghjie.com/images/2012/images/bg (easylistchina.txt: 2996) .ghjie.com/images/2012/images/bg -# ||ggyq.xdkb.net^ (easylistchina+easylist.txt: 3013) +# ||ggyq.xdkb.net^ (easylistchina.txt: 2995) .ggyq.xdkb.net -# ||ggw.watertu.com^ (easylistchina+easylist.txt: 3012) +# ||ggw.watertu.com^ (easylistchina.txt: 2994) .ggw.watertu.com -# ||ggw.gusuwang.com^ (easylistchina+easylist.txt: 3011) +# ||ggw.gusuwang.com^ (easylistchina.txt: 2993) .ggw.gusuwang.com -# ||gggbbb00.com/template/dream1/ads/ (easylistchina+easylist.txt: 3010) -.gggbbb00.com/template/dream1/ads/ -# ||ggg.zj.com^ (easylistchina+easylist.txt: 3009) +# ||ggg.zj.com^ (easylistchina.txt: 2992) .ggg.zj.com -# ||gg163.net/js/gg163ad.js (easylistchina+easylist.txt: 3008) +# ||gg163.net/js/gg163ad.js (easylistchina.txt: 2991) .gg163.net/js/gg163ad\.js -# ||gg163.net/js/163bbsad.js (easylistchina+easylist.txt: 3007) +# ||gg163.net/js/163bbsad.js (easylistchina.txt: 2990) .gg163.net/js/163bbsad\.js -# ||gg163.net/gpimages/ad33.gif (easylistchina+easylist.txt: 3006) +# ||gg163.net/gpimages/ad33.gif (easylistchina.txt: 2989) .gg163.net/gpimages/ad33\.gif -# ||gg163.net/gpimages/22.gif (easylistchina+easylist.txt: 3005) +# ||gg163.net/gpimages/22.gif (easylistchina.txt: 2988) .gg163.net/gpimages/22\.gif -# ||gg163.net/2015ad/ (easylistchina+easylist.txt: 3004) +# ||gg163.net/2015ad/ (easylistchina.txt: 2987) .gg163.net/2015ad/ -# ||gg163.net/2014ad/ (easylistchina+easylist.txt: 3003) +# ||gg163.net/2014ad/ (easylistchina.txt: 2986) .gg163.net/2014ad/ -# ||gg163.net/2013ad/ (easylistchina+easylist.txt: 3002) +# ||gg163.net/2013ad/ (easylistchina.txt: 2985) .gg163.net/2013ad/ -# ||gg163.net/2012ad/ (easylistchina+easylist.txt: 3001) +# ||gg163.net/2012ad/ (easylistchina.txt: 2984) .gg163.net/2012ad/ -# ||gg.yxdown.com^ (easylistchina+easylist.txt: 3000) +# ||gg.yxdown.com^ (easylistchina.txt: 2983) .gg.yxdown.com -# ||gg.sonhoo.com^ (easylistchina+easylist.txt: 2999) +# ||gg.sonhoo.com^ (easylistchina.txt: 2982) .gg.sonhoo.com -# ||gg.kugou.com^ (easylistchina+easylist.txt: 2998) +# ||gg.kugou.com^ (easylistchina.txt: 2981) .gg.kugou.com -# ||gg.gao7.com^ (easylistchina+easylist.txt: 2997) +# ||gg.gao7.com^ (easylistchina.txt: 2980) .gg.gao7.com -# ||gg.cs090.com^ (easylistchina+easylist.txt: 2996) +# ||gg.cs090.com^ (easylistchina.txt: 2979) .gg.cs090.com -# ||gg.18183.com^ (easylistchina+easylist.txt: 2995) +# ||gg.bxwx5.com^ (easylistchina.txt: 2978) +.gg.bxwx5.com +# ||gg.18183.com^ (easylistchina.txt: 2977) .gg.18183.com -# ||gg.0598yu.com^ (easylistchina+easylist.txt: 2994) +# ||gg.0598yu.com^ (easylistchina.txt: 2976) .gg.0598yu.com -# ||gg-art.com/anod/ (easylistchina+easylist.txt: 2993) +# ||gg-art.com/anod/ (easylistchina.txt: 2975) .gg-art.com/anod/ -# ||gfan.com/press/ (easylistchina+easylist.txt: 2992) +# ||gfan.com/press/ (easylistchina.txt: 2974) .gfan.com/press/ -# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina+easylist.txt: 2991) +# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina.txt: 2973) .gfan.com/plugin\.php\?id=gfan_viewpic:gfan_adView -# ||gezila.com/gimg/yinsu (easylistchina+easylist.txt: 2990) +# ||gezila.com/gimg/yinsu (easylistchina.txt: 2972) .gezila.com/gimg/yinsu -# ||gexing.com/j/??zmask.js,easing.js? (easylistchina+easylist.txt: 2989) +# ||gexing.com/j/??zmask.js,easing.js? (easylistchina.txt: 2971) .gexing.com/j/\?\?zmask\.js,easing\.js\? -# ||gexing.com/api/api_get_tankuang.php? (easylistchina+easylist.txt: 2988) +# ||gexing.com/api/api_get_tankuang.php? (easylistchina.txt: 2970) .gexing.com/api/api_get_tankuang\.php\? -# ||gexing.com.cn^*/images/jr.jpg (easylistchina+easylist.txt: 2987) +# ||gexing.com.cn^*/images/jr.jpg (easylistchina.txt: 2969) .gexing.com.cn/.*/images/jr\.jpg -# ||gexing.com.cn^*/images/1a.jpg (easylistchina+easylist.txt: 2986) +# ||gexing.com.cn^*/images/1a.jpg (easylistchina.txt: 2968) .gexing.com.cn/.*/images/1a\.jpg -# ||get.766.com^ (easylistchina+easylist.txt: 2985) +# ||get.766.com^ (easylistchina.txt: 2967) .get.766.com -# ||geiliwx.com/read/ad$script (easylistchina+easylist.txt: 2984) +# ||geiliwx.com/read/ad$script (easylistchina.txt: 2966) .geiliwx.com/read/ad -# ||gdt.qq.com^ (easylistchina+easylist.txt: 2983) +# ||gdt.qq.com^ (easylistchina.txt: 2965) .gdt.qq.com -# ||gdmm.com/Public/config/Couplet/Index (easylistchina+easylist.txt: 2982) +# ||gdmm.com/Public/config/Couplet/Index (easylistchina.txt: 2964) .gdmm.com/Public/config/Couplet/Index -# ||gdmm.com/mybt/ (easylistchina+easylist.txt: 2981) +# ||gdmm.com/mybt/ (easylistchina.txt: 2963) .gdmm.com/mybt/ -# ||gdmm.com/js/images/z.swf (easylistchina+easylist.txt: 2980) +# ||gdmm.com/js/images/z.swf (easylistchina.txt: 2962) .gdmm.com/js/images/z\.swf -# ||gdmm.com/js/images/y.swf (easylistchina+easylist.txt: 2979) +# ||gdmm.com/js/images/y.swf (easylistchina.txt: 2961) .gdmm.com/js/images/y\.swf -# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina+easylist.txt: 2978) +# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina.txt: 2960) .gdaily.org/wp-content/uploads/an-temp/ -# ||gd.sina.com.cn/iframe/22/ (easylistchina+easylist.txt: 2977) +# ||gd.sina.com.cn/iframe/22/ (easylistchina.txt: 2959) .gd.sina.com.cn/iframe/22/ -# ||gd.ct10000.com/js/ecssstat.js (easylistchina+easylist.txt: 2976) +# ||gd.ct10000.com/js/ecssstat.js (easylistchina.txt: 2958) .gd.ct10000.com/js/ecssstat\.js -# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina+easylist.txt: 2975) +# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina.txt: 2957) .gaofen.com/source/plugin/gaofen_ad/ -# ||ganjituiguang.ganji.com^ (easylistchina+easylist.txt: 2974) +# ||ganjituiguang.ganji.com^ (easylistchina.txt: 2956) .ganjituiguang.ganji.com -# ||ganjistatic1.com^*/adm/ (easylistchina+easylist.txt: 2973) +# ||ganjistatic1.com^*/adm/ (easylistchina.txt: 2955) .ganjistatic1.com/.*/adm/ -# ||ganjistatic1.com^*-banner- (easylistchina+easylist.txt: 2972) +# ||ganjistatic1.com^*-banner- (easylistchina.txt: 2954) .ganjistatic1.com/.*-banner- -# ||ganji.com/content.php (easylistchina+easylist.txt: 2971) +# ||ganji.com/content.php (easylistchina.txt: 2953) .ganji.com/content\.php -# ||ganbingw.com/images/top960.jpg (easylistchina+easylist.txt: 2970) +# ||ganbingw.com/images/top960.jpg (easylistchina.txt: 2952) .ganbingw.com/images/top960\.jpg -# ||gamme.com.tw/ga/ (easylistchina+easylist.txt: 2969) +# ||gamme.com.tw/ga/ (easylistchina.txt: 2951) .gamme.com.tw/ga/ -# ||games.ifeng.com^$subdocument (easylistchina+easylist.txt: 2968) +# ||games.ifeng.com^$subdocument (easylistchina.txt: 2950) .games.ifeng.com -# ||gamersky.com^*.htm$subdocument (easylistchina+easylist.txt: 2967) +# ||gamersky.com^*.htm$subdocument (easylistchina.txt: 2949) .gamersky.com/.*\.htm -# ||gamersky.com/piaofu*/ (easylistchina+easylist.txt: 2966) +# ||gamersky.com/piaofu*/ (easylistchina.txt: 2948) .gamersky.com/piaofu.*/ -# ||gamersky.com/img/ (easylistchina+easylist.txt: 2965) +# ||gamersky.com/img/ (easylistchina.txt: 2947) .gamersky.com/img/ -# ||gamersky.com/gsinc/content_bg.js (easylistchina+easylist.txt: 2964) +# ||gamersky.com/gsinc/content_bg.js (easylistchina.txt: 2946) .gamersky.com/gsinc/content_bg\.js -# ||gamersky.com/g/gamerskyflash.js (easylistchina+easylist.txt: 2963) +# ||gamersky.com/g/gamerskyflash.js (easylistchina.txt: 2945) .gamersky.com/g/gamerskyflash\.js -# ||gamersky.com/bgpic/ (easylistchina+easylist.txt: 2962) +# ||gamersky.com/bgpic/ (easylistchina.txt: 2944) .gamersky.com/bgpic/ -# ||gamefy.cn/cookiead.php (easylistchina+easylist.txt: 2961) +# ||gamefy.cn/cookiead.php (easylistchina.txt: 2943) .gamefy.cn/cookiead\.php -# ||gameapps.hk/js/determine_page_ (easylistchina+easylist.txt: 2960) +# ||gameapps.hk/js/determine_page_ (easylistchina.txt: 2942) .gameapps.hk/js/determine_page_ -# ||gameapps.hk/js/content_ (easylistchina+easylist.txt: 2959) +# ||gameapps.hk/js/content_ (easylistchina.txt: 2941) .gameapps.hk/js/content_ -# ||gameapps.hk/images/apps/ad/ (easylistchina+easylist.txt: 2958) +# ||gameapps.hk/images/apps/ad/ (easylistchina.txt: 2940) .gameapps.hk/images/apps/ad/ -# ||game.466.com^$third-party (easylistchina+easylist.txt: 2957) +# ||game.466.com^$third-party (easylistchina.txt: 2939) .game.466.com -# ||gagays.com/site/ad300x300 (easylistchina+easylist.txt: 2956) +# ||gagays.com/site/ad300x300 (easylistchina.txt: 2938) .gagays.com/site/ad300x300 -# ||g4.beva.com/data-js- (easylistchina+easylist.txt: 2955) +# ||g4.beva.com/data-js- (easylistchina.txt: 2937) .g4.beva.com/data-js- -# ||g2.ousns.net^ (easylistchina+easylist.txt: 2954) +# ||g2.ousns.net^ (easylistchina.txt: 2936) .g2.ousns.net -# ||g1080.com/js/cache_bg.js (easylistchina+easylist.txt: 2953) +# ||g1080.com/js/cache_bg.js (easylistchina.txt: 2935) .g1080.com/js/cache_bg\.js -# ||g1.0573ren.com^ (easylistchina+easylist.txt: 2952) +# ||g1.0573ren.com^ (easylistchina.txt: 2934) .g1.0573ren.com -# ||g.rexian.net.cn/js/ (easylistchina+easylist.txt: 2951) +# ||g.rexian.net.cn/js/ (easylistchina.txt: 2933) .g.rexian.net.cn/js/ -# ||g.ousns.net^ (easylistchina+easylist.txt: 2950) +# ||g.ousns.net^ (easylistchina.txt: 2932) .g.ousns.net -# ||g.jinti.com/f/a/a (easylistchina+easylist.txt: 2949) +# ||g.jinti.com/f/a/a (easylistchina.txt: 2931) .g.jinti.com/f/a/a -# ||g.hsw.cn^ (easylistchina+easylist.txt: 2948) +# ||g.hsw.cn^ (easylistchina.txt: 2930) .g.hsw.cn -# ||g.gxorg.com^ (easylistchina+easylist.txt: 2947) +# ||g.gxorg.com^ (easylistchina.txt: 2929) .g.gxorg.com -# ||g.cnzz.cn/Static/js/*- (easylistchina+easylist.txt: 2946) +# ||g.cnzz.cn/Static/js/*- (easylistchina.txt: 2928) .g.cnzz.cn/Static/js/.*- -# ||g.163.com/*&affiliate= (easylistchina+easylist.txt: 2945) +# ||g.163.com/*&affiliate= (easylistchina.txt: 2927) .g.163.com/.*&affiliate= -# ||fzpchome.com/txt/$script (easylistchina+easylist.txt: 2944) +# ||fzpchome.com/txt/$script (easylistchina.txt: 2926) .fzpchome.com/txt/ -# ||fzlol.com/images/$script (easylistchina+easylist.txt: 2943) +# ||fzlol.com/images/$script (easylistchina.txt: 2925) .fzlol.com/images/ -# ||fzbm.com/bbs/static/js/bma.js (easylistchina+easylist.txt: 2942) +# ||fzbm.com/bbs/static/js/bma.js (easylistchina.txt: 2924) .fzbm.com/bbs/static/js/bma\.js -# ||fxxz.com/show/ (easylistchina+easylist.txt: 2941) +# ||fxxz.com/show/ (easylistchina.txt: 2923) .fxxz.com/show/ -# ||fxpan.com/sina.jpg (easylistchina+easylist.txt: 2940) +# ||fxpan.com/sina.jpg (easylistchina.txt: 2922) .fxpan.com/sina\.jpg -# ||fx678.com/proxy (easylistchina+easylist.txt: 2939) +# ||fx678.com/proxy (easylistchina.txt: 2921) .fx678.com/proxy -# ||fx678.com/js/baidu_ (easylistchina+easylist.txt: 2938) +# ||fx678.com/js/baidu_ (easylistchina.txt: 2920) .fx678.com/js/baidu_ -# ||fx114.net/images/bangbaotao.jpg (easylistchina+easylist.txt: 2937) +# ||fx114.net/images/bangbaotao.jpg (easylistchina.txt: 2919) .fx114.net/images/bangbaotao\.jpg -# ||fwxgx.com/u/ad/show_type/ (easylistchina+easylist.txt: 2936) +# ||fwxgx.com/u/ad/show_type/ (easylistchina.txt: 2918) .fwxgx.com/u/ad/show_type/ -# ||funtude.com/include/inc/ad_data. (easylistchina+easylist.txt: 2935) +# ||funtude.com/include/inc/ad_data. (easylistchina.txt: 2917) .funtude.com/include/inc/ad_data\. -# ||func.tw/image/func2.png (easylistchina+easylist.txt: 2934) +# ||func.tw/image/func2.png (easylistchina.txt: 2916) .func.tw/image/func2\.png -# ||fun.ynet.com^ (easylistchina+easylist.txt: 2933) +# ||fun.ynet.com^ (easylistchina.txt: 2915) .fun.ynet.com -# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina+easylist.txt: 2932) +# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina.txt: 2914) .fumanhua.com/template/.*/images/g_js/ -# ||fullyu.com/js-lib/jquery.modal. (easylistchina+easylist.txt: 2931) +# ||fullyu.com/js-lib/jquery.modal. (easylistchina.txt: 2913) .fullyu.com/js-lib/jquery\.modal\. -# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina+easylist.txt: 2930) +# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina.txt: 2912) .fulitie.org/wp-content/themes/D8_4\.0/js/guanbi-no\.js -# ||fulidang.com/ads/ (easylistchina+easylist.txt: 2929) +# ||fulidang.com/ads/ (easylistchina.txt: 2911) .fulidang.com/ads/ -# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina+easylist.txt: 2928) +# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina.txt: 2910) .fububu.com/zb_users/THEME/LuSongSong/style/ads/ -# ||ftchinese.com/m/marketing/ad.html (easylistchina+easylist.txt: 2927) +# ||ftchinese.com/m/marketing/ad.html (easylistchina.txt: 2909) .ftchinese.com/m/marketing/ad\.html -# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina+easylist.txt: 2926) +# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina.txt: 2908) .fspcdn.com/main/fis/js/v11/play/pop-ad_ -# ||fsehome.com/images/ad_tan.js (easylistchina+easylist.txt: 2925) +# ||fsehome.com/images/ad_tan.js (easylistchina.txt: 2907) .fsehome.com/images/ad_tan\.js -# ||freep.cn/lianjie/qqtongji.js (easylistchina+easylist.txt: 2924) +# ||freep.cn/lianjie/qqtongji.js (easylistchina.txt: 2906) .freep.cn/lianjie/qqtongji\.js -# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina+easylist.txt: 2923) +# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina.txt: 2905) .freep.cn/3tb_1408171239008bu7512293\.jpg -# ||free9.net/myc/myc.js (easylistchina+easylist.txt: 2922) +# ||free9.net/myc/myc.js (easylistchina.txt: 2904) .free9.net/myc/myc\.js -# ||free9.net/images/pic/dhc2013.gif (easylistchina+easylist.txt: 2921) +# ||free9.net/images/pic/dhc2013.gif (easylistchina.txt: 2903) .free9.net/images/pic/dhc2013\.gif -# ||fragment.firefoxchina.cn/html/ (easylistchina+easylist.txt: 2920) +# ||fragment.firefoxchina.cn/html/ (easylistchina.txt: 2902) .fragment.firefoxchina.cn/html/ -# ||fpdisplay.com/upload/n_ad/ (easylistchina+easylist.txt: 2919) +# ||fpdisplay.com/upload/n_ad/ (easylistchina.txt: 2901) .fpdisplay.com/upload/n_ad/ -# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina+easylist.txt: 2918) +# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina.txt: 2900) .fpdisplay.com/templates/default/js/palyflash_ -# ||fpdisplay.com/images/*960X30. (easylistchina+easylist.txt: 2917) +# ||fpdisplay.com/images/*960X30. (easylistchina.txt: 2899) .fpdisplay.com/images/.*960X30\. -# ||fpdisplay.com/images/*960X230. (easylistchina+easylist.txt: 2916) +# ||fpdisplay.com/images/*960X230. (easylistchina.txt: 2898) .fpdisplay.com/images/.*960X230\. -# ||forum.techweb.com.cn/advtcnt.php (easylistchina+easylist.txt: 2915) +# ||forum.techweb.com.cn/advtcnt.php (easylistchina.txt: 2897) .forum.techweb.com.cn/advtcnt\.php -# ||forum.51nb.com/images/ (easylistchina+easylist.txt: 2914) +# ||forum.51nb.com/images/ (easylistchina.txt: 2896) .forum.51nb.com/images/ -# ||focus.cn/common/js/adm (easylistchina+easylist.txt: 2913) +# ||focus.cn/common/js/adm (easylistchina.txt: 2895) .focus.cn/common/js/adm -# ||fmdisk.com/templates/yythems/images/qq (easylistchina+easylist.txt: 2912) +# ||fmdisk.com/templates/yythems/images/qq (easylistchina.txt: 2894) .fmdisk.com/templates/yythems/images/qq -# ||fmdisk.com/ima/ (easylistchina+easylist.txt: 2911) +# ||fmdisk.com/ima/ (easylistchina.txt: 2893) .fmdisk.com/ima/ -# ||float.sandai.net^$object-subrequest (easylistchina+easylist.txt: 2910) +# ||float.sandai.net^$object-subrequest (easylistchina.txt: 2892) .float.sandai.net -# ||flighty.cn/templets/images/2345- (easylistchina+easylist.txt: 2909) +# ||flighty.cn/templets/images/2345- (easylistchina.txt: 2891) .flighty.cn/templets/images/2345- -# ||flighty.cn/images/kiees.jpg (easylistchina+easylist.txt: 2908) +# ||flighty.cn/images/kiees.jpg (easylistchina.txt: 2890) .flighty.cn/images/kiees\.jpg -# ||flash8.net/flash8_a_d_s/ (easylistchina+easylist.txt: 2907) +# ||flash8.net/flash8_a_d_s/ (easylistchina.txt: 2889) .flash8.net/flash8_a_d_s/ -# ||flash.mycar168.com/data/js/ (easylistchina+easylist.txt: 2906) +# ||flash.mycar168.com/data/js/ (easylistchina.txt: 2888) .flash.mycar168.com/data/js/ -# ||fjlyfdc.com.cn/hxhad/ (easylistchina+easylist.txt: 2905) +# ||fjlyfdc.com.cn/hxhad/ (easylistchina.txt: 2887) .fjlyfdc.com.cn/hxhad/ -# ||fj007.com/money/ (easylistchina+easylist.txt: 2904) +# ||fj007.com/money/ (easylistchina.txt: 2886) .fj007.com/money/ -# ||fj.sina.com.cn/iframe/63/ (easylistchina+easylist.txt: 2903) +# ||fj.sina.com.cn/iframe/63/ (easylistchina.txt: 2885) .fj.sina.com.cn/iframe/63/ -# ||firefoxchina.cn^*_topbanner (easylistchina+easylist.txt: 2902) +# ||firefoxchina.cn^*_topbanner (easylistchina.txt: 2884) .firefoxchina.cn/.*_topbanner -# ||firefoxchina.cn^*_couplet (easylistchina+easylist.txt: 2901) +# ||firefoxchina.cn^*_couplet (easylistchina.txt: 2883) .firefoxchina.cn/.*_couplet -# ||firefoxchina.cn^*49560. (easylistchina+easylist.txt: 2900) +# ||firefoxchina.cn^*49560. (easylistchina.txt: 2882) .firefoxchina.cn/.*49560\. -# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina+easylist.txt: 2899) +# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina.txt: 2881) .firefoxchina.cn/res/js/fchina_video-min\.js -# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina+easylist.txt: 2898) +# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina.txt: 2880) .firefoxchina.cn/2014/.*_foxphone\.png -# ||files.webcars.com.cn^*.swf?link= (easylistchina+easylist.txt: 2897) +# ||files.webcars.com.cn^*.swf?link= (easylistchina.txt: 2879) .files.webcars.com.cn/.*\.swf\?link= -# ||files.nyaa.se/a*.$image (easylistchina+easylist.txt: 2896) +# ||files.nyaa.se/a*.$image (easylistchina.txt: 2878) .files.nyaa.se/a.*\. -# ||files.nyaa.eu/a*.$image (easylistchina+easylist.txt: 2895) +# ||files.nyaa.eu/a*.$image (easylistchina.txt: 2877) .files.nyaa.eu/a.*\. -# ||file.ws.126.net/house/nj/*.swf (easylistchina+easylist.txt: 2894) +# ||file.ws.126.net/house/nj/*.swf (easylistchina.txt: 2876) .file.ws.126.net/house/nj/.*\.swf -# ||file.ws.126.net/house/jn/*.swf (easylistchina+easylist.txt: 2893) +# ||file.ws.126.net/house/jn/*.swf (easylistchina.txt: 2875) .file.ws.126.net/house/jn/.*\.swf -# ||file.ws.126.net/house/*/js/tc_ (easylistchina+easylist.txt: 2892) +# ||file.ws.126.net/house/*/js/tc_ (easylistchina.txt: 2874) .file.ws.126.net/house/.*/js/tc_ -# ||file.shmet.com/images/ (easylistchina+easylist.txt: 2891) +# ||file.shmet.com/images/ (easylistchina.txt: 2873) .file.shmet.com/images/ -# ||file.cloud.sogou.com/*/superzone/ (easylistchina+easylist.txt: 2890) +# ||file.cloud.sogou.com/*/superzone/ (easylistchina.txt: 2872) .file.cloud.sogou.com/.*/superzone/ -# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina+easylist.txt: 2889) +# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina.txt: 2871) .fhm.com.tw/js/colorbox/jquery\.colorbox\.js -# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina+easylist.txt: 2888) +# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina.txt: 2870) .fhm.com.tw/fhm_upload/full_ad_ -# ||fg.cc/logo/xierguanggao. (easylistchina+easylist.txt: 2887) +# ||fg.cc/logo/xierguanggao. (easylistchina.txt: 2869) .fg.cc/logo/xierguanggao\. -# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina+easylist.txt: 2886) +# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina.txt: 2868) .feng.com/aodoo3/view\.php\?what=zone:16& -# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina+easylist.txt: 2885) +# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina.txt: 2867) .feng.com/aodoo3/view\.php\?what=zone:13& -# ||feihu.la/Runtime/js/vod (easylistchina+easylist.txt: 2884) +# ||feihu.la/Runtime/js/vod (easylistchina.txt: 2866) .feihu.la/Runtime/js/vod -# ||feedss.com/uploadfile/ad/ (easylistchina+easylist.txt: 2883) +# ||feedss.com/uploadfile/ad/ (easylistchina.txt: 2865) .feedss.com/uploadfile/ad/ -# ||fdc.my0511.com^$script (easylistchina+easylist.txt: 2882) +# ||fdc.my0511.com^$script (easylistchina.txt: 2864) .fdc.my0511.com -# ||fdc.com.cn^*adv (easylistchina+easylist.txt: 2881) +# ||fdc.com.cn^*adv (easylistchina.txt: 2863) .fdc.com.cn/.*adv -# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina+easylist.txt: 2880) +# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina.txt: 2862) .fdc.com.cn/cms/js/home_js/.*_move_ -# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina+easylist.txt: 2879) +# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina.txt: 2861) .fdc.com.cn/cms/js/bbs/dl\.js -# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina+easylist.txt: 2878) +# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina.txt: 2860) .fdc.com.cn/cms/js/bbs/bbstonglan\.js -# ||faxingw.cn/js/wenba.js (easylistchina+easylist.txt: 2877) +# ||faxingw.cn/js/wenba.js (easylistchina.txt: 2859) .faxingw.cn/js/wenba\.js -# ||faxingw.cn/js/jiafa (easylistchina+easylist.txt: 2876) +# ||faxingw.cn/js/jiafa (easylistchina.txt: 2858) .faxingw.cn/js/jiafa -# ||faxingw.cn/js/detailgcbox.js (easylistchina+easylist.txt: 2875) +# ||faxingw.cn/js/detailgcbox.js (easylistchina.txt: 2857) .faxingw.cn/js/detailgcbox\.js -# ||faxingw.cn/js/*gg (easylistchina+easylist.txt: 2874) +# ||faxingw.cn/js/*gg (easylistchina.txt: 2856) .faxingw.cn/js/.*gg -# ||faxingw.cn/js/*ad (easylistchina+easylist.txt: 2873) +# ||faxingw.cn/js/*ad (easylistchina.txt: 2855) .faxingw.cn/js/.*ad -# ||faxingw.cn/js/*0 (easylistchina+easylist.txt: 2872) +# ||faxingw.cn/js/*0 (easylistchina.txt: 2854) .faxingw.cn/js/.*0 -# ||fantizi5.com/js/baiduad (easylistchina+easylist.txt: 2871) +# ||fantizi5.com/js/baiduad (easylistchina.txt: 2853) .fantizi5.com/js/baiduad -# ||fantizi5.com/js/ad*.js (easylistchina+easylist.txt: 2870) +# ||fantizi5.com/js/ad*.js (easylistchina.txt: 2852) .fantizi5.com/js/ad.*\.js -# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina+easylist.txt: 2869) +# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina.txt: 2851) .fanhaobao.net/wp-content/themes/xiu/js/single\.js -# ||fang99.com/JavaScript/advjs/ (easylistchina+easylist.txt: 2868) +# ||fang99.com/JavaScript/advjs/ (easylistchina.txt: 2850) .fang99.com/JavaScript/advjs/ -# ||fang.com/afp/door/ (easylistchina+easylist.txt: 2867) +# ||fang.com/afp/door/ (easylistchina.txt: 2849) .fang.com/afp/door/ -# ||fancai.com/Images/2014*.gif (easylistchina+easylist.txt: 2866) +# ||fancai.com/Images/2014*.gif (easylistchina.txt: 2848) .fancai.com/Images/2014.*\.gif -# ||familydoctor.com.cn/aiframe/ (easylistchina+easylist.txt: 2865) +# ||familydoctor.com.cn/aiframe/ (easylistchina.txt: 2847) .familydoctor.com.cn/aiframe/ -# ||faidns.com/image/site/faiscoAd/ (easylistchina+easylist.txt: 2864) +# ||faidns.com/image/site/faiscoAd/ (easylistchina.txt: 2846) .faidns.com/image/site/faiscoAd/ -# ||ezprice.com.tw/js/*_ysm_ (easylistchina+easylist.txt: 2863) +# ||ezprice.com.tw/js/*_ysm_ (easylistchina.txt: 2845) .ezprice.com.tw/js/.*_ysm_ -# ||ezprice.com.tw/ezysm/ (easylistchina+easylist.txt: 2862) +# ||ezprice.com.tw/ezysm/ (easylistchina.txt: 2844) .ezprice.com.tw/ezysm/ -# ||ezaozi.com/detail/*.js (easylistchina+easylist.txt: 2861) +# ||ezaozi.com/detail/*.js (easylistchina.txt: 2843) .ezaozi.com/detail/.*\.js -# ||eyuyao.com/yyad/ (easylistchina+easylist.txt: 2860) +# ||eyuyao.com/yyad/ (easylistchina.txt: 2842) .eyuyao.com/yyad/ -# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina+easylist.txt: 2859) +# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina.txt: 2841) .eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash\.jpg -# ||ettoday.net^*/ad/ (easylistchina+easylist.txt: 2858) +# ||ettoday.net^*/ad/ (easylistchina.txt: 2840) .ettoday.net/.*/ad/ -# ||ettoday.net/events/ad-tab/ (easylistchina+easylist.txt: 2857) +# ||ettoday.net/events/ad-tab/ (easylistchina.txt: 2839) .ettoday.net/events/ad-tab/ -# ||ettoday.net/banners/ (easylistchina+easylist.txt: 2856) +# ||ettoday.net/banners/ (easylistchina.txt: 2838) .ettoday.net/banners/ -# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina+easylist.txt: 2855) +# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina.txt: 2837) .etnet.com.hk/www/tc/stocks/ads/ -# ||etnet.com.hk/ad2014/ (easylistchina+easylist.txt: 2854) +# ||etnet.com.hk/ad2014/ (easylistchina.txt: 2836) .etnet.com.hk/ad2014/ -# ||etf88.com/swf/ (easylistchina+easylist.txt: 2853) +# ||etf88.com/swf/ (easylistchina.txt: 2835) .etf88.com/swf/ -# ||etf88.com/jjb/*_ad$script (easylistchina+easylist.txt: 2852) +# ||etf88.com/jjb/*_ad$script (easylistchina.txt: 2834) .etf88.com/jjb/.*_ad -# ||etest8.com/subcatejs/158/utitle158.js (easylistchina+easylist.txt: 2851) +# ||etest8.com/subcatejs/158/utitle158.js (easylistchina.txt: 2833) .etest8.com/subcatejs/158/utitle158\.js -# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina+easylist.txt: 2850) +# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina.txt: 2832) .etest8.com/subcatejs/158/tg158_330x190\.js -# ||etest8.com/style/full_floating.js (easylistchina+easylist.txt: 2849) +# ||etest8.com/style/full_floating.js (easylistchina.txt: 2831) .etest8.com/style/full_floating\.js -# ||etest8.com/style/950x90_2.js (easylistchina+easylist.txt: 2848) +# ||etest8.com/style/950x90_2.js (easylistchina.txt: 2830) .etest8.com/style/950x90_2\.js -# ||etdown.net/images/ad1 (easylistchina+easylist.txt: 2847) +# ||etdown.net/images/ad1 (easylistchina.txt: 2829) .etdown.net/images/ad1 -# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina+easylist.txt: 2846) +# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina.txt: 2828) .eprice.com.tw/js/swfobject-2\.3\.js -# ||eprice.com.tw/img/tw_m/ad/ (easylistchina+easylist.txt: 2845) +# ||eprice.com.tw/img/tw_m/ad/ (easylistchina.txt: 2827) .eprice.com.tw/img/tw_m/ad/ -# ||eprice.com.tw/img/dis/file/*.html (easylistchina+easylist.txt: 2844) -.eprice.com.tw/img/dis/file/.*\.html -# ||eprice.cn/image/upload/ad/ (easylistchina+easylist.txt: 2843) +# ||eprice.com.tw/img/dis/file/ (easylistchina.txt: 2826) +.eprice.com.tw/img/dis/file/ +# ||eprice.cn/image/upload/ad/ (easylistchina.txt: 2825) .eprice.cn/image/upload/ad/ -# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina+easylist.txt: 2842) +# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina.txt: 2824) .epinv.com/wp-content/themes/ep/tu/yinshu\.gif -# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina+easylist.txt: 2841) +# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina.txt: 2823) .epinv.com/wp-content/themes/ep/tu/.*250\.js -# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina+easylist.txt: 2840) +# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina.txt: 2822) .epinv.com/wp-content/themes/ep/js/single\.js -# ||eol.cn/js/global/jQuery_ads.js (easylistchina+easylist.txt: 2839) +# ||eol.cn/js/global/jQuery_ads.js (easylistchina.txt: 2821) .eol.cn/js/global/jQuery_ads\.js -# ||eol.cn/js/eol/ (easylistchina+easylist.txt: 2838) +# ||eol.cn/js/eol/ (easylistchina.txt: 2820) .eol.cn/js/eol/ -# ||entry.baidu.com/rp/home? (easylistchina+easylist.txt: 2837) +# ||entry.baidu.com/rp/home? (easylistchina.txt: 2819) .entry.baidu.com/rp/home\? -# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina+easylist.txt: 2836) +# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina.txt: 2818) .enshi.cn/userfiles/esrb/ -# ||enread.com/img/185-50.gif (easylistchina+easylist.txt: 2835) +# ||enread.com/img/185-50.gif (easylistchina.txt: 2817) .enread.com/img/185-50\.gif -# ||enjoy101.org/hk_rm_tab_ (easylistchina+easylist.txt: 2834) +# ||enjoy101.org/hk_rm_tab_ (easylistchina.txt: 2816) .enjoy101.org/hk_rm_tab_ -# ||enet.com.cn/mem_str_zoneid= (easylistchina+easylist.txt: 2833) +# ||enet.com.cn/mem_str_zoneid= (easylistchina.txt: 2815) .enet.com.cn/mem_str_zoneid= -# ||enet.com.cn/home/v6/includes/adv/ (easylistchina+easylist.txt: 2832) +# ||enet.com.cn/home/v6/includes/adv/ (easylistchina.txt: 2814) .enet.com.cn/home/v6/includes/adv/ -# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina+easylist.txt: 2831) +# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina.txt: 2813) .enet.com.cn/eschool/includes/gdtup/tu6/slide\.js -# ||ems183.cn/images/kiees (easylistchina+easylist.txt: 2830) +# ||ems183.cn/images/kiees (easylistchina.txt: 2812) .ems183.cn/images/kiees -# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina+easylist.txt: 2829) +# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina.txt: 2811) .embest-tech.cn/js/jquery\.blockUI\.js -# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina+easylist.txt: 2828) +# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina.txt: 2810) .emarketing.bot.com.tw/output/vi\.aspx\? -# ||elecfans.com/images2012/pcb.gif (easylistchina+easylist.txt: 2827) +# ||elecfans.com/images2012/pcb.gif (easylistchina.txt: 2809) .elecfans.com/images2012/pcb\.gif -# ||elecfans.com/baidu_m.html (easylistchina+easylist.txt: 2826) +# ||elecfans.com/baidu_m.html (easylistchina.txt: 2808) .elecfans.com/baidu_m\.html -# ||eeyy.com/uploadfile/img/beitou (easylistchina+easylist.txt: 2825) +# ||eeyy.com/uploadfile/img/beitou (easylistchina.txt: 2807) .eeyy.com/uploadfile/img/beitou -# ||eeyy.com/templates/js/other/yxj.js (easylistchina+easylist.txt: 2824) +# ||eeyy.com/templates/js/other/yxj.js (easylistchina.txt: 2806) .eeyy.com/templates/js/other/yxj\.js -# ||eeyy.com/otherhtml/js/ad650.js (easylistchina+easylist.txt: 2823) +# ||eeyy.com/otherhtml/js/ad650.js (easylistchina.txt: 2805) .eeyy.com/otherhtml/js/ad650\.js -# ||eeee42.com/Ads/ (easylistchina+easylist.txt: 2822) +# ||eeee42.com/Ads/ (easylistchina.txt: 2804) .eeee42.com/Ads/ -# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina+easylist.txt: 2821) +# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina.txt: 2803) .eduuu.com/gaokao/2015/bannerDaili\.js -# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina+easylist.txt: 2820) +# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina.txt: 2802) .educity.cn/self_text/text_disp\.aspx\?id= -# ||edu24ol.com/web_news/js/1100.jpg (easylistchina+easylist.txt: 2819) +# ||edu24ol.com/web_news/js/1100.jpg (easylistchina.txt: 2801) .edu24ol.com/web_news/js/1100\.jpg -# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina+easylist.txt: 2818) +# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina.txt: 2800) .edu24ol.com/web_news/images/cj_news\.jpg -# ||edu03.com/data/js.php?id= (easylistchina+easylist.txt: 2817) +# ||edu03.com/data/js.php?id= (easylistchina.txt: 2799) .edu03.com/data/js\.php\?id= -# ||ecmb.bdimg.com^ (easylistchina+easylist.txt: 2816) +# ||ecmb.bdimg.com^ (easylistchina.txt: 2798) .ecmb.bdimg.com -# ||ecma.bdimg.com^ (easylistchina+easylist.txt: 2815) +# ||ecma.bdimg.com^ (easylistchina.txt: 2797) .ecma.bdimg.com -# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina+easylist.txt: 2814) +# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina.txt: 2796) .ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb\.jpg -# ||ebrun.com/jfile/position/js/*.js (easylistchina+easylist.txt: 2813) +# ||ebrun.com/jfile/position/js/*.js (easylistchina.txt: 2795) .ebrun.com/jfile/position/js/.*\.js -# ||ebrun.com/jfile/lagou.js (easylistchina+easylist.txt: 2812) +# ||ebrun.com/jfile/lagou.js (easylistchina.txt: 2794) .ebrun.com/jfile/lagou\.js -# ||ebp.renren.com^ (easylistchina+easylist.txt: 2811) +# ||ebp.renren.com^ (easylistchina.txt: 2793) .ebp.renren.com -# ||ebiotrade.com/web_images/*.swf (easylistchina+easylist.txt: 2810) +# ||ebiotrade.com/web_images/*.swf (easylistchina.txt: 2792) .ebiotrade.com/web_images/.*\.swf -# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina+easylist.txt: 2809) +# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina.txt: 2791) .ebiotrade.com/newsf/js/news_top_banner\.js -# ||ebiotrade.com/newsf/js/inpic.js (easylistchina+easylist.txt: 2808) +# ||ebiotrade.com/newsf/js/inpic.js (easylistchina.txt: 2790) .ebiotrade.com/newsf/js/inpic\.js -# ||ebiotrade.com/jslibrary/js (easylistchina+easylist.txt: 2807) +# ||ebiotrade.com/jslibrary/js (easylistchina.txt: 2789) .ebiotrade.com/jslibrary/js -# ||eat-travel.com.tw^$third-party (easylistchina+easylist.txt: 2806) +# ||eat-travel.com.tw^$third-party (easylistchina.txt: 2788) .eat-travel.com.tw -# ||eastmoney.com/js/headbiggg_ (easylistchina+easylist.txt: 2805) +# ||eastmoney.com/js/headbiggg_ (easylistchina.txt: 2787) .eastmoney.com/js/headbiggg_ -# ||eastlady.cn/cssjs/indextopad.js (easylistchina+easylist.txt: 2804) +# ||eastlady.cn/cssjs/indextopad.js (easylistchina.txt: 2786) .eastlady.cn/cssjs/indextopad\.js -# ||eastlady.cn/cssjs/indexgg.js (easylistchina+easylist.txt: 2803) +# ||eastlady.cn/cssjs/indexgg.js (easylistchina.txt: 2785) .eastlady.cn/cssjs/indexgg\.js -# ||eastlady.cn/cssjs/indexbaner (easylistchina+easylist.txt: 2802) +# ||eastlady.cn/cssjs/indexbaner (easylistchina.txt: 2784) .eastlady.cn/cssjs/indexbaner -# ||eastday.com/k.js (easylistchina+easylist.txt: 2801) +# ||eastday.com/k.js (easylistchina.txt: 2783) .eastday.com/k\.js -# ||easou.com/online/banner/ (easylistchina+easylist.txt: 2800) +# ||easou.com/online/banner/ (easylistchina.txt: 2782) .easou.com/online/banner/ -# ||easou.com/brandImage/ad/ (easylistchina+easylist.txt: 2799) +# ||easou.com/brandImage/ad/ (easylistchina.txt: 2781) .easou.com/brandImage/ad/ -# ||eap.enorth.com.cn^ (easylistchina+easylist.txt: 2798) +# ||eap.enorth.com.cn^ (easylistchina.txt: 2780) .eap.enorth.com.cn -# ||eap.big5.enorth.com.cn^ (easylistchina+easylist.txt: 2797) +# ||eap.big5.enorth.com.cn^ (easylistchina.txt: 2779) .eap.big5.enorth.com.cn -# ||e399.com/html/ (easylistchina+easylist.txt: 2796) +# ||e399.com/html/ (easylistchina.txt: 2778) .e399.com/html/ -# ||e23.cn/js/aaa.js (easylistchina+easylist.txt: 2795) +# ||e23.cn/js/aaa.js (easylistchina.txt: 2777) .e23.cn/js/aaa\.js -# ||e0575.com/pic/AD_ (easylistchina+easylist.txt: 2794) +# ||e0575.com/pic/AD_ (easylistchina.txt: 2776) .e0575.com/pic/AD_ -# ||e0575.com/attachment/image/*_flash.swf (easylistchina+easylist.txt: 2793) +# ||e0575.com/attachment/image/20160106024028_1.jpg (easylistchina.txt: 2775) +.e0575.com/attachment/image/20160106024028_1\.jpg +# ||e0575.com/attachment/image/*_flash.swf (easylistchina.txt: 2774) .e0575.com/attachment/image/.*_flash\.swf -# ||e0575.cn/js/float.js (easylistchina+easylist.txt: 2792) +# ||e0575.cn/js/float.js (easylistchina.txt: 2773) .e0575.cn/js/float\.js -# ||e0575.cn/js/advBigPopup/ (easylistchina+easylist.txt: 2791) +# ||e0575.cn/js/advBigPopup/ (easylistchina.txt: 2772) .e0575.cn/js/advBigPopup/ -# ||e0575.cn/images/v1/dl/ (easylistchina+easylist.txt: 2790) +# ||e0575.cn/images/v1/dl/ (easylistchina.txt: 2771) .e0575.cn/images/v1/dl/ -# ||e0421.com/css/js/tl (easylistchina+easylist.txt: 2789) +# ||e0421.com/css/js/tl (easylistchina.txt: 2770) .e0421.com/css/js/tl -# ||e0421.com/css/js/bd (easylistchina+easylist.txt: 2788) +# ||e0421.com/css/js/bd (easylistchina.txt: 2769) .e0421.com/css/js/bd -# ||e0421.com/*tj.js (easylistchina+easylist.txt: 2787) +# ||e0421.com/*tj.js (easylistchina.txt: 2768) .e0421.com/.*tj\.js -# ||e.yycqc.com^ (easylistchina+easylist.txt: 2786) +# ||e.yycqc.com^ (easylistchina.txt: 2767) .e.yycqc.com -# ||e.hnr.cn/choose/view/ (easylistchina+easylist.txt: 2785) +# ||e.hnr.cn/choose/view/ (easylistchina.txt: 2766) .e.hnr.cn/choose/view/ -# ||e.changyan.sohu.com/dataService/getData? (easylistchina+easylist.txt: 2784) +# ||e.changyan.sohu.com/dataService/getData? (easylistchina.txt: 2765) .e.changyan.sohu.com/dataService/getData\? -# ||dzwww.com/k.js (easylistchina+easylist.txt: 2783) +# ||dzwww.com/k.js (easylistchina.txt: 2764) .dzwww.com/k\.js -# ||dzwww.com/images/W020140912508314044024.gif (easylistchina+easylist.txt: 2782) +# ||dzwww.com/images/W020140912508314044024.gif (easylistchina.txt: 2763) .dzwww.com/images/W020140912508314044024\.gif -# ||dzwww.com/data/js/asp_$script (easylistchina+easylist.txt: 2781) +# ||dzwww.com/data/js/asp_$script (easylistchina.txt: 2762) .dzwww.com/data/js/asp_ -# ||dz320.com/desktop (easylistchina+easylist.txt: 2780) +# ||dz320.com/desktop (easylistchina.txt: 2761) .dz320.com/desktop -# ||dytt8.net/js2/ (easylistchina+easylist.txt: 2779) +# ||dytt8.net/js2/ (easylistchina.txt: 2760) .dytt8.net/js2/ -# ||dyhjw.com/dyhjw/left/new.js (easylistchina+easylist.txt: 2778) +# ||dyhjw.com/dyhjw/left/new.js (easylistchina.txt: 2759) .dyhjw.com/dyhjw/left/new\.js -# ||dyhjw.com/dyhjw/4.htm (easylistchina+easylist.txt: 2777) +# ||dyhjw.com/dyhjw/4.htm (easylistchina.txt: 2758) .dyhjw.com/dyhjw/4\.htm -# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina+easylist.txt: 2776) +# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina.txt: 2757) .dyhjw.com/dyhjw/1/3/471\.gif -# ||dyhjw.com/dyhjw/1.htm (easylistchina+easylist.txt: 2775) +# ||dyhjw.com/dyhjw/1.htm (easylistchina.txt: 2756) .dyhjw.com/dyhjw/1\.htm -# ||dydh.tv/statics/js/tuku (easylistchina+easylist.txt: 2774) +# ||dydh.tv/statics/js/tuku (easylistchina.txt: 2755) .dydh.tv/statics/js/tuku -# ||dydh.tv/img/960.gif (easylistchina+easylist.txt: 2773) +# ||dydh.tv/img/960.gif (easylistchina.txt: 2754) .dydh.tv/img/960\.gif -# ||dydh.tv/img/384.gif (easylistchina+easylist.txt: 2772) +# ||dydh.tv/img/384.gif (easylistchina.txt: 2753) .dydh.tv/img/384\.gif -# ||dydh.tv/img/2345.gif (easylistchina+easylist.txt: 2771) +# ||dydh.tv/img/2345.gif (easylistchina.txt: 2752) .dydh.tv/img/2345\.gif -# ||dy2018.com/dianyq/ (easylistchina+easylist.txt: 2770) +# ||dy2018.com/dianyq/ (easylistchina.txt: 2751) .dy2018.com/dianyq/ -# ||dxrc.cn/images/sy.gif (easylistchina+easylist.txt: 2769) +# ||dxrc.cn/images/sy.gif (easylistchina.txt: 2750) .dxrc.cn/images/sy\.gif -# ||dxrc.cn/ad1/ (easylistchina+easylist.txt: 2768) +# ||dxrc.cn/ad1/ (easylistchina.txt: 2749) .dxrc.cn/ad1/ -# ||dxlwwang.com/style/js/jeminMain. (easylistchina+easylist.txt: 2767) +# ||dxlwwang.com/style/js/jeminMain. (easylistchina.txt: 2748) .dxlwwang.com/style/js/jeminMain\. -# ||dxlwwang.com/style/images/bar (easylistchina+easylist.txt: 2766) +# ||dxlwwang.com/style/images/bar (easylistchina.txt: 2747) .dxlwwang.com/style/images/bar -# ||dxlwwang.com/contact_js/contact.js (easylistchina+easylist.txt: 2765) +# ||dxlwwang.com/contact_js/contact.js (easylistchina.txt: 2746) .dxlwwang.com/contact_js/contact\.js -# ||dwstatic.com^*/p/livetip/ (easylistchina+easylist.txt: 2764) +# ||dwstatic.com^*/p/livetip/ (easylistchina.txt: 2745) .dwstatic.com/.*/p/livetip/ -# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina+easylist.txt: 2763) +# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina.txt: 2744) .dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1\.js -# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina+easylist.txt: 2762) +# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina.txt: 2743) .dwstatic.com/amkit/p/duya/special/list-notice/banner-app\.jpg -# ||dw138.com/a12345/ (easylistchina+easylist.txt: 2761) +# ||dw138.com/a12345/ (easylistchina.txt: 2742) .dw138.com/a12345/ -# ||dvser.china.com^ (easylistchina+easylist.txt: 2760) +# ||dvser.china.com^ (easylistchina.txt: 2741) .dvser.china.com -# ||dvs.china.com^ (easylistchina+easylist.txt: 2759) +# ||dvs.china.com^ (easylistchina.txt: 2740) .dvs.china.com -# ||dvbcn.com/yinyong/show/news_right_ (easylistchina+easylist.txt: 2758) +# ||dvbcn.com/yinyong/show/news_right_ (easylistchina.txt: 2739) .dvbcn.com/yinyong/show/news_right_ -# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina+easylist.txt: 2757) +# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina.txt: 2738) .dvbcn.com/uploadfile/2015/0202/20150202050700880\.png -# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina+easylist.txt: 2756) +# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina.txt: 2737) .dvbcn.com/phpcms/templates/2012/news\.html -# ||dvbcn.com/index.php?m=poster& (easylistchina+easylist.txt: 2755) +# ||dvbcn.com/index.php?m=poster& (easylistchina.txt: 2736) .dvbcn.com/index\.php\?m=poster& -# ||dushiwenxue.com/add/ (easylistchina+easylist.txt: 2754) +# ||dushiwenxue.com/add/ (easylistchina.txt: 2735) .dushiwenxue.com/add/ -# ||dup.baidustatic.com/js/ (easylistchina+easylist.txt: 2753) +# ||dup.baidustatic.com/js/ (easylistchina.txt: 2734) .dup.baidustatic.com/js/ -# ||duoxiai.com.cn/imgad/ (easylistchina+easylist.txt: 2752) +# ||duoxiai.com.cn/imgad/ (easylistchina.txt: 2733) .duoxiai.com.cn/imgad/ -# ||duowan.com/s/yuanbao-entrance.js (easylistchina+easylist.txt: 2751) +# ||duowan.com/s/yuanbao-entrance.js (easylistchina.txt: 2732) .duowan.com/s/yuanbao-entrance\.js -# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina+easylist.txt: 2750) +# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina.txt: 2731) .duowan.com/lgn/x/images/lgnadv/ -# ||duonao.tv/upload/image/*.swf (easylistchina+easylist.txt: 2749) +# ||duonao.tv/upload/image/*.swf (easylistchina.txt: 2730) .duonao.tv/upload/image/.*\.swf -# ||duonao.tv/upload/image/*.gif (easylistchina+easylist.txt: 2748) +# ||duonao.tv/upload/image/*.gif (easylistchina.txt: 2729) .duonao.tv/upload/image/.*\.gif -# ||duonao.tv//upload/$object-subrequest (easylistchina+easylist.txt: 2747) -# ||duba.com/static/v3/images/*.swf (easylistchina+easylist.txt: 2746) +# ||duonao.tv//upload/$object-subrequest (easylistchina.txt: 2728) +# ||duba.com/static/v3/images/*.swf (easylistchina.txt: 2727) .duba.com/static/v3/images/.*\.swf -# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina+easylist.txt: 2744) +# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina.txt: 2725) .dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q\.jpg -# ||drupalchina.cn/sites/default/files/osforce- (easylistchina+easylist.txt: 2743) +# ||drupalchina.cn/sites/default/files/osforce- (easylistchina.txt: 2724) .drupalchina.cn/sites/default/files/osforce- -# ||drupalchina.cn/sites/default/files/lagou- (easylistchina+easylist.txt: 2742) +# ||drupalchina.cn/sites/default/files/lagou- (easylistchina.txt: 2723) .drupalchina.cn/sites/default/files/lagou- -# ||drupalchina.cn/sites/default/files/banner/ (easylistchina+easylist.txt: 2741) +# ||drupalchina.cn/sites/default/files/banner/ (easylistchina.txt: 2722) .drupalchina.cn/sites/default/files/banner/ -# ||drivergenius.com/inc/driverwwwad.js (easylistchina+easylist.txt: 2740) +# ||drivergenius.com/inc/driverwwwad.js (easylistchina.txt: 2721) .drivergenius.com/inc/driverwwwad\.js -# ||dre8.com/tieba/zh-tb/so.html (easylistchina+easylist.txt: 2739) +# ||dre8.com/tieba/zh-tb/so.html (easylistchina.txt: 2720) .dre8.com/tieba/zh-tb/so\.html -# ||dqdm.com/js/dqdm/nei960 (easylistchina+easylist.txt: 2738) +# ||dqdm.com/js/dqdm/nei960 (easylistchina.txt: 2719) .dqdm.com/js/dqdm/nei960 -# ||dpfile.com/pc/trip/*(600x400) (easylistchina+easylist.txt: 2737) +# ||dpfile.com/pc/trip/*(600x400) (easylistchina.txt: 2718) .dpfile.com/pc/trip/.*\(600x400\) -# ||dpfile.com/pc/ad/ (easylistchina+easylist.txt: 2736) -.dpfile.com/pc/ad/ -# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina+easylist.txt: 2735) +# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina.txt: 2717) .doyo.cn/Tpl/web/Public/images/material/www_couplets/ -# ||downza.cn/html/skin/default/ad/ (easylistchina+easylist.txt: 2734) +# ||downza.cn/html/skin/default/ad/ (easylistchina.txt: 2716) .downza.cn/html/skin/default/ad/ -# ||downyi.com/tg/ (easylistchina+easylist.txt: 2733) +# ||downyi.com/tg/ (easylistchina.txt: 2715) .downyi.com/tg/ -# ||downxia.com/zejs/soft (easylistchina+easylist.txt: 2732) +# ||downxia.com/zejs/soft (easylistchina.txt: 2714) .downxia.com/zejs/soft -# ||downxia.com/zejs/ad (easylistchina+easylist.txt: 2731) +# ||downxia.com/zejs/ad (easylistchina.txt: 2713) .downxia.com/zejs/ad -# ||downxia.com/haojs/ (easylistchina+easylist.txt: 2730) +# ||downxia.com/haojs/ (easylistchina.txt: 2712) .downxia.com/haojs/ -# ||downxia.com/dgjs/download.js (easylistchina+easylist.txt: 2729) +# ||downxia.com/dgjs/download.js (easylistchina.txt: 2711) .downxia.com/dgjs/download\.js -# ||download.game.yy.com/resource/fodder/*.flv (easylistchina+easylist.txt: 2728) +# ||download.game.yy.com/resource/fodder/*.flv (easylistchina.txt: 2710) .download.game.yy.com/resource/fodder/.*\.flv -# ||download.game.yy.com/crossdomain.xml (easylistchina+easylist.txt: 2727) +# ||download.game.yy.com/crossdomain.xml (easylistchina.txt: 2709) .download.game.yy.com/crossdomain\.xml -# ||downkr.com/statics/js/all.js (easylistchina+easylist.txt: 2726) +# ||downkr.com/statics/js/all.js (easylistchina.txt: 2708) .downkr.com/statics/js/all\.js -# ||downcc.com/js/66060.gif (easylistchina+easylist.txt: 2725) +# ||downcc.com/js/66060.gif (easylistchina.txt: 2707) .downcc.com/js/66060\.gif -# ||downbank.cn/soft6/ (easylistchina+easylist.txt: 2724) +# ||downbank.cn/soft6/ (easylistchina.txt: 2706) .downbank.cn/soft6/ -# ||downbank.cn/s1/ (easylistchina+easylist.txt: 2723) +# ||downbank.cn/s1/ (easylistchina.txt: 2705) .downbank.cn/s1/ -# ||downbank.cn/jkzm/ (easylistchina+easylist.txt: 2722) +# ||downbank.cn/jkzm/ (easylistchina.txt: 2704) .downbank.cn/jkzm/ -# ||down12.com/htmlg/D*.js (easylistchina+easylist.txt: 2721) +# ||down12.com/htmlg/D*.js (easylistchina.txt: 2703) .down12.com/htmlg/D.*\.js -# ||down.it168.com/ggimg/ (easylistchina+easylist.txt: 2720) +# ||down.it168.com/ggimg/ (easylistchina.txt: 2702) .down.it168.com/ggimg/ -# ||down.admin5.com/z/ (easylistchina+easylist.txt: 2719) +# ||down.admin5.com/z/ (easylistchina.txt: 2701) .down.admin5.com/z/ -# ||douyutv.com/upload/signs/*.swf (easylistchina+easylist.txt: 2718) +# ||douyutv.com/upload/signs/*.swf (easylistchina.txt: 2700) .douyutv.com/upload/signs/.*\.swf -# ||douguo.net/upload/post/d/ (easylistchina+easylist.txt: 2717) +# ||douguo.net/upload/post/d/ (easylistchina.txt: 2699) .douguo.net/upload/post/d/ -# ||doubleclick.tv002.com^ (easylistchina+easylist.txt: 2716) +# ||doubleclick.tv002.com^ (easylistchina.txt: 2698) .doubleclick.tv002.com -# ||doubanio.com^*/js/ad. (easylistchina+easylist.txt: 2715) +# ||doubanio.com^*/js/ad. (easylistchina.txt: 2697) .doubanio.com/.*/js/ad\. -# ||douban.com^*/rda/$object-subrequest (easylistchina+easylist.txt: 2714) +# ||douban.com^*/rda/$object-subrequest (easylistchina.txt: 2696) .douban.com/.*/rda/ -# ||douban.com^*/fm_bgad.js (easylistchina+easylist.txt: 2713) +# ||douban.com^*/fm_bgad.js (easylistchina.txt: 2695) .douban.com/.*/fm_bgad\.js -# ||douban.com/view/dale-online/dale_ad (easylistchina+easylist.txt: 2712) +# ||douban.com/view/dale-online/dale_ad (easylistchina.txt: 2694) .douban.com/view/dale-online/dale_ad -# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina+easylist.txt: 2711) +# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina.txt: 2693) .douban.com/\?unit=dale_movie_trailer_after_play& -# ||dota2.uuu9.com^$subdocument (easylistchina+easylist.txt: 2710) +# ||dota2.uuu9.com^$subdocument (easylistchina.txt: 2692) .dota2.uuu9.com -# ||dospy.com/hezuo/ (easylistchina+easylist.txt: 2709) +# ||dospy.com/hezuo/ (easylistchina.txt: 2691) .dospy.com/hezuo/ -# ||dongfangtai.com/js/duil.js (easylistchina+easylist.txt: 2708) +# ||dongfangtai.com/js/duil.js (easylistchina.txt: 2690) .dongfangtai.com/js/duil\.js -# ||domeng.cn/js/index_ (easylistchina+easylist.txt: 2707) +# ||domeng.cn/js/index_ (easylistchina.txt: 2689) .domeng.cn/js/index_ -# ||dolphin.ftimg.net/s? (easylistchina+easylist.txt: 2706) +# ||dolphin.ftimg.net/s? (easylistchina.txt: 2688) .dolphin.ftimg.net/s\? -# ||dol.tianya.cn/s?z=tianya&c= (easylistchina+easylist.txt: 2705) +# ||dol.tianya.cn/s?z=tianya&c= (easylistchina.txt: 2687) .dol.tianya.cn/s\?z=tianya&c= -# ||doguo.com/api/vip_discount.js (easylistchina+easylist.txt: 2704) +# ||doguo.com/api/vip_discount.js (easylistchina.txt: 2686) .doguo.com/api/vip_discount\.js -# ||dodo8.com/inc/$script (easylistchina+easylist.txt: 2703) +# ||dodo8.com/inc/$script (easylistchina.txt: 2685) .dodo8.com/inc/ -# ||docin.com/jsp_cn/ad/ (easylistchina+easylist.txt: 2702) +# ||docin.com/jsp_cn/ad/ (easylistchina.txt: 2684) .docin.com/jsp_cn/ad/ -# ||docin.com/docin_adv/ (easylistchina+easylist.txt: 2701) +# ||docin.com/docin_adv/ (easylistchina.txt: 2683) .docin.com/docin_adv/ -# ||docin.com/app/a_d/ (easylistchina+easylist.txt: 2700) +# ||docin.com/app/a_d/ (easylistchina.txt: 2682) .docin.com/app/a_d/ -# ||doc88.com/assets/js/myad.js (easylistchina+easylist.txt: 2699) +# ||doc88.com/assets/js/myad.js (easylistchina.txt: 2681) .doc88.com/assets/js/myad\.js -# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina+easylist.txt: 2698) +# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina.txt: 2680) .do189.com/zb_users/theme/duoyi/style/images/.*\.gif -# ||dnwx.com/pic_ad/ (easylistchina+easylist.txt: 2697) +# ||dnwx.com/pic_ad/ (easylistchina.txt: 2679) .dnwx.com/pic_ad/ -# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina+easylist.txt: 2696) +# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina.txt: 2678) .dnwx.com/pic/xitongba-468-2\.gif -# ||dnwx.com/pic/lg.gif (easylistchina+easylist.txt: 2695) +# ||dnwx.com/pic/lg.gif (easylistchina.txt: 2677) .dnwx.com/pic/lg\.gif -# ||dnwx.com/pic/*_978x (easylistchina+easylist.txt: 2694) +# ||dnwx.com/pic/*_978x (easylistchina.txt: 2676) .dnwx.com/pic/.*_978x -# ||dnwx.com/pic/*-960x60. (easylistchina+easylist.txt: 2693) +# ||dnwx.com/pic/*-960x60. (easylistchina.txt: 2675) .dnwx.com/pic/.*-960x60\. -# ||dnwx.com*/ad$image (easylistchina+easylist.txt: 2692) +# ||dnwx.com*/ad$image (easylistchina.txt: 2674) .dnwx.com*./(.*/)?ad -# ||dnvod.eu/upload/image/*.swf (easylistchina+easylist.txt: 2691) +# ||dnvod.eu/upload/image/*.swf (easylistchina.txt: 2673) .dnvod.eu/upload/image/.*\.swf -# ||dnvod.eu/upload/image/*.gif (easylistchina+easylist.txt: 2690) +# ||dnvod.eu/upload/image/*.gif (easylistchina.txt: 2672) .dnvod.eu/upload/image/.*\.gif -# ||dnvod.eu//upload/$object-subrequest (easylistchina+easylist.txt: 2689) -# ||dnpz.net/templets/images/lunbo/ (easylistchina+easylist.txt: 2688) +# ||dnvod.eu//upload/$object-subrequest (easylistchina.txt: 2671) +# ||dnpz.net/templets/images/lunbo/ (easylistchina.txt: 2670) .dnpz.net/templets/images/lunbo/ -# ||dngame.eu/dngcenter/default.aspx (easylistchina+easylist.txt: 2687) +# ||dngame.eu/dngcenter/default.aspx (easylistchina.txt: 2669) .dngame.eu/dngcenter/default\.aspx -# ||dn-yahoo.qbox.me/be (easylistchina+easylist.txt: 2686) -.dn-yahoo.qbox.me/be -# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina+easylist.txt: 2685) +# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina.txt: 2668) .dn-ttdaili.qbox.me/bdqb/ -# ||dn-okey.qbox.me/v*.js (easylistchina+easylist.txt: 2684) -.dn-okey.qbox.me/v.*\.js -# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina+easylist.txt: 2683) +# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina.txt: 2667) .dn-cnodestatic.qbox.me/public/images/.*-banner- -# ||dmmfx.com.au/dmm-tag/ (easylistchina+easylist.txt: 2682) +# ||dmmfx.com.au/dmm-tag/ (easylistchina.txt: 2666) .dmmfx.com.au/dmm-tag/ -# ||dmhua.net/js/bd_ (easylistchina+easylist.txt: 2681) +# ||dmhua.net/js/bd_ (easylistchina.txt: 2665) .dmhua.net/js/bd_ -# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina+easylist.txt: 2680) +# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina.txt: 2664) .dmfans.net/template/haokandemanhhua/images/g_js/ -# ||dm530.com/pic/fgr/*.js (easylistchina+easylist.txt: 2679) +# ||dm530.com/pic/fgr/*.js (easylistchina.txt: 2663) .dm530.com/pic/fgr/.*\.js -# ||dm456.com/m/ (easylistchina+easylist.txt: 2678) +# ||dm456.com/m/ (easylistchina.txt: 2662) .dm456.com/m/ -# ||dm456.com/install/loading.html (easylistchina+easylist.txt: 2677) +# ||dm456.com/install/loading.html (easylistchina.txt: 2661) .dm456.com/install/loading\.html -# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina+easylist.txt: 2676) +# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina.txt: 2660) .dl-l-tax.gov.cn/js/2floating\.js -# ||djwma.com/tc.js (easylistchina+easylist.txt: 2675) +# ||djwma.com/tc.js (easylistchina.txt: 2659) .djwma.com/tc\.js -# ||djwma.com/qq.jpg (easylistchina+easylist.txt: 2674) +# ||djwma.com/qq.jpg (easylistchina.txt: 2658) .djwma.com/qq\.jpg -# ||djwma.com/960*.gif (easylistchina+easylist.txt: 2673) +# ||djwma.com/960*.gif (easylistchina.txt: 2657) .djwma.com/960.*\.gif -# ||djwma.com/760*.gif (easylistchina+easylist.txt: 2672) +# ||djwma.com/760*.gif (easylistchina.txt: 2656) .djwma.com/760.*\.gif -# ||djkk.com/ak/ (easylistchina+easylist.txt: 2671) +# ||djkk.com/ak/ (easylistchina.txt: 2655) .djkk.com/ak/ -# ||djccc.com/js/c*.js (easylistchina+easylist.txt: 2670) +# ||djccc.com/js/c*.js (easylistchina.txt: 2654) .djccc.com/js/c.*\.js -# ||djccc.com/js/b*.js (easylistchina+easylist.txt: 2669) +# ||djccc.com/js/b*.js (easylistchina.txt: 2653) .djccc.com/js/b.*\.js -# ||djccc.com/js/a*.js (easylistchina+easylist.txt: 2668) +# ||djccc.com/js/a*.js (easylistchina.txt: 2652) .djccc.com/js/a.*\.js -# ||dj97.com/js/list_right_ (easylistchina+easylist.txt: 2667) +# ||dj97.com/js/list_right_ (easylistchina.txt: 2651) .dj97.com/js/list_right_ -# ||dj520.com/js/stj.js (easylistchina+easylist.txt: 2666) +# ||dj520.com/js/stj.js (easylistchina.txt: 2650) .dj520.com/js/stj\.js -# ||divcss5.com/wy/top465.js (easylistchina+easylist.txt: 2665) +# ||divcss5.com/wy/top465.js (easylistchina.txt: 2649) .divcss5.com/wy/top465\.js -# ||divcss5.com*/liping/ (easylistchina+easylist.txt: 2664) +# ||divcss5.com*/liping/ (easylistchina.txt: 2648) .divcss5.com*./(.*/)?liping/ -# ||divcss5.com*/ibeifeng/ (easylistchina+easylist.txt: 2663) +# ||divcss5.com*/ibeifeng/ (easylistchina.txt: 2647) .divcss5.com*./(.*/)?ibeifeng/ -# ||divcss5.com*/enkj/ (easylistchina+easylist.txt: 2662) +# ||divcss5.com*/enkj/ (easylistchina.txt: 2646) .divcss5.com*./(.*/)?enkj/ -# ||disk1.net/i/2/900%C3%9740.gif (easylistchina+easylist.txt: 2661) +# ||disk1.net/i/2/900%C3%9740.gif (easylistchina.txt: 2645) .disk1.net/i/2/900%C3%9740\.gif -# ||discuzlab.com/data/attachment/portal/ (easylistchina+easylist.txt: 2660) +# ||discuzlab.com/data/attachment/portal/ (easylistchina.txt: 2644) .discuzlab.com/data/attachment/portal/ -# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina+easylist.txt: 2659) +# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina.txt: 2643) .discuz.gtimg.cn/cloud/scripts/discuz_tips\.js -# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina+easylist.txt: 2658) +# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina.txt: 2642) .discuss.com.hk/dfp_forum\.php\?au=Discuss_Web_ -# ||dioguitar23.*/images/*.gif (easylistchina+easylist.txt: 2657) +# ||dioguitar23.*/images/*.gif (easylistchina.txt: 2641) .dioguitar23.*./(.*/)?images/.*\.gif -# ||dilidili.com/js/w*.js (easylistchina+easylist.txt: 2656) +# ||dilidili.com/js/w*.js (easylistchina.txt: 2640) .dilidili.com/js/w.*\.js -# ||dilidili.com/js/right (easylistchina+easylist.txt: 2655) +# ||dilidili.com/js/right (easylistchina.txt: 2639) .dilidili.com/js/right -# ||dilidili.com/js/index.js (easylistchina+easylist.txt: 2654) +# ||dilidili.com/js/index.js (easylistchina.txt: 2638) .dilidili.com/js/index\.js -# ||dig.chouti.com/advert (easylistchina+easylist.txt: 2653) +# ||dig.chouti.com/advert (easylistchina.txt: 2637) .dig.chouti.com/advert -# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina+easylist.txt: 2652) +# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina.txt: 2636) .didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D\.png -# ||didamoe.com/js/xuanfu.js (easylistchina+easylist.txt: 2651) +# ||didamoe.com/js/xuanfu.js (easylistchina.txt: 2635) .didamoe.com/js/xuanfu\.js -# ||didamoe.com/js/play_ (easylistchina+easylist.txt: 2650) +# ||didamoe.com/js/play_ (easylistchina.txt: 2634) .didamoe.com/js/play_ -# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina+easylist.txt: 2649) +# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina.txt: 2633) .dichan.com.au/newhouse/pinnacle/images/bcastr3\.swf -# ||diannaoxitong.com/js/*.gif (easylistchina+easylist.txt: 2648) +# ||diannaoxitong.com/js/*.gif (easylistchina.txt: 2632) .diannaoxitong.com/js/.*\.gif -# ||diancloud.com/ghost/banner/ (easylistchina+easylist.txt: 2647) -.diancloud.com/ghost/banner/ -# ||dg.073img.com^ (easylistchina+easylist.txt: 2646) +# ||dg.073img.com^ (easylistchina.txt: 2631) .dg.073img.com -# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina+easylist.txt: 2645) +# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina.txt: 2630) .dfcfw.com/js/tg/rightAd_v2\.js -# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina+easylist.txt: 2644) +# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina.txt: 2629) .dfcfw.com/js/pinzhong/bdbottom_ -# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina+easylist.txt: 2643) +# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina.txt: 2628) .dfcfw.com/js/pinzhong/bd_pz_side_ -# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina+easylist.txt: 2642) +# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina.txt: 2627) .dfcfw.com/js/.*/emfloatmedia_ -# ||dfad.dfdaily.com^ (easylistchina+easylist.txt: 2641) +# ||dfad.dfdaily.com^ (easylistchina.txt: 2626) .dfad.dfdaily.com -# ||deyangs.com/img/ (easylistchina+easylist.txt: 2640) +# ||deyangs.com/img/ (easylistchina.txt: 2625) .deyangs.com/img/ -# ||dexiazai.com/333.jpg (easylistchina+easylist.txt: 2639) +# ||dexiazai.com/333.jpg (easylistchina.txt: 2624) .dexiazai.com/333\.jpg -# ||dexiazai.com/222.jpg (easylistchina+easylist.txt: 2638) +# ||dexiazai.com/222.jpg (easylistchina.txt: 2623) .dexiazai.com/222\.jpg -# ||dexiazai.com/111.jpg (easylistchina+easylist.txt: 2637) +# ||dexiazai.com/111.jpg (easylistchina.txt: 2622) .dexiazai.com/111\.jpg -# ||der4545.com/ok/ (easylistchina+easylist.txt: 2636) +# ||der4545.com/ok/ (easylistchina.txt: 2621) .der4545.com/ok/ -# ||demo.528500.com^*.swf (easylistchina+easylist.txt: 2635) +# ||demo.528500.com^*.swf (easylistchina.txt: 2620) .demo.528500.com/.*\.swf -# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina+easylist.txt: 2634) +# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina.txt: 2619) .dealmoon.com/upload/dealmoon_app\.jpg -# ||dealmoon.com/images/n/creditcard-160.png (easylistchina+easylist.txt: 2633) +# ||dealmoon.com/images/n/creditcard-160.png (easylistchina.txt: 2618) .dealmoon.com/images/n/creditcard-160\.png -# ||dealmoon.com/hotdeals/ (easylistchina+easylist.txt: 2632) +# ||dealmoon.com/hotdeals/ (easylistchina.txt: 2617) .dealmoon.com/hotdeals/ -# ||dealmoon.com/data/app/banners/ (easylistchina+easylist.txt: 2631) +# ||dealmoon.com/data/app/banners/ (easylistchina.txt: 2616) .dealmoon.com/data/app/banners/ -# ||de.as.pptv.com^ (easylistchina+easylist.txt: 2630) +# ||de.as.pptv.com^ (easylistchina.txt: 2615) .de.as.pptv.com -# ||ddooo.com/viewimg.asp?img= (easylistchina+easylist.txt: 2629) +# ||ddooo.com/viewimg.asp?img= (easylistchina.txt: 2614) .ddooo.com/viewimg\.asp\?img= -# ||ddooo.com/js/ (easylistchina+easylist.txt: 2628) +# ||ddooo.com/js/ (easylistchina.txt: 2613) .ddooo.com/js/ -# ||ddooo.com/duoduo/ (easylistchina+easylist.txt: 2627) +# ||ddooo.com/duoduo/ (easylistchina.txt: 2612) .ddooo.com/duoduo/ -# ||ddooo.com/ddjs/ (easylistchina+easylist.txt: 2626) +# ||ddooo.com/ddjs/ (easylistchina.txt: 2611) .ddooo.com/ddjs/ -# ||ddheli.com/k.js (easylistchina+easylist.txt: 2625) +# ||ddheli.com/k.js (easylistchina.txt: 2610) .ddheli.com/k\.js -# ||dddbbb.net^$script,subdocument (easylistchina+easylist.txt: 2624) +# ||dddbbb.net^$script,subdocument (easylistchina.txt: 2609) .dddbbb.net -# ||ddata.over-blog.com^*.gif (easylistchina+easylist.txt: 2623) -.ddata.over-blog.com/.*\.gif -# ||dd.xdnice.com^ (easylistchina+easylist.txt: 2622) +# ||dd.xdnice.com^ (easylistchina.txt: 2608) .dd.xdnice.com -# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina+easylist.txt: 2621) +# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina.txt: 2607) .dclick.autonet.com.tw/90/AC_RunActiveContent\.js -# ||dcfever.com/campaigns/ (easylistchina+easylist.txt: 2620) +# ||dcfever.com/campaigns/ (easylistchina.txt: 2606) .dcfever.com/campaigns/ -# ||dbw.cn/js/cp.js (easylistchina+easylist.txt: 2619) +# ||dbw.cn/js/cp.js (easylistchina.txt: 2605) .dbw.cn/js/cp\.js -# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina+easylist.txt: 2618) +# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina.txt: 2604) .dbw.cn/eap/js/hl/hlj_ad -# ||dbw.cn/eap/js/db/dbwad_ (easylistchina+easylist.txt: 2617) +# ||dbw.cn/eap/js/db/dbwad_ (easylistchina.txt: 2603) .dbw.cn/eap/js/db/dbwad_ -# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina+easylist.txt: 2616) +# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina.txt: 2602) .dbw.cn/0/07/18/40/7184029_146090\.jpg -# ||db28.cn/cache/ads.js (easylistchina+easylist.txt: 2615) +# ||db28.cn/cache/ads.js (easylistchina.txt: 2601) .db28.cn/cache/ads\.js -# ||dashuye.com/data/cache/myad*.htm (easylistchina+easylist.txt: 2614) +# ||dashuye.com/data/cache/myad*.htm (easylistchina.txt: 2600) .dashuye.com/data/cache/myad.*\.htm -# ||dashi.com/static/images/root_banner.jpg (easylistchina+easylist.txt: 2613) +# ||dashi.com/static/images/root_banner.jpg (easylistchina.txt: 2599) .dashi.com/static/images/root_banner\.jpg -# ||dashi.com/static/images/old_phone.jpg (easylistchina+easylist.txt: 2612) +# ||dashi.com/static/images/old_phone.jpg (easylistchina.txt: 2598) .dashi.com/static/images/old_phone\.jpg -# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina+easylist.txt: 2611) +# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina.txt: 2597) .dashi.com/static/images/jiaocheng_ad\.jpg -# ||dasai8.com/js/duilianjs.js (easylistchina+easylist.txt: 2610) +# ||dasai8.com/js/duilianjs.js (easylistchina.txt: 2596) .dasai8.com/js/duilianjs\.js -# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina+easylist.txt: 2609) +# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina.txt: 2595) .daqianduan.com/wp-content/uploads/.*lagou -# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina+easylist.txt: 2608) +# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina.txt: 2594) .daqianduan.com/wp-content/uploads/.*/ads.*\.jpg -# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina+easylist.txt: 2607) +# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina.txt: 2593) .daqianduan.com/wp-content/uploads/.*/ad- -# ||daohangtx.com/jishudaohang/indextop.js (easylistchina+easylist.txt: 2606) +# ||daohangtx.com/jishudaohang/indextop.js (easylistchina.txt: 2592) .daohangtx.com/jishudaohang/indextop\.js -# ||danyang.com/statics/banner.swf (easylistchina+easylist.txt: 2605) +# ||danyang.com/statics/banner.swf (easylistchina.txt: 2591) .danyang.com/statics/banner\.swf -# ||danlan.org/KFC/ (easylistchina+easylist.txt: 2604) +# ||danlan.org/KFC/ (easylistchina.txt: 2590) .danlan.org/KFC/ -# ||daimabiji.com/images/17558/198zone.gif (easylistchina+easylist.txt: 2603) +# ||daimabiji.com/images/17558/198zone.gif (easylistchina.txt: 2589) .daimabiji.com/images/17558/198zone\.gif -# ||dailynews.sina.com/gb/ads/ (easylistchina+easylist.txt: 2602) +# ||dailynews.sina.com/gb/ads/ (easylistchina.txt: 2588) .dailynews.sina.com/gb/ads/ -# ||dailyfx.com.hk/ext/lang-ad (easylistchina+easylist.txt: 2601) +# ||dailyfx.com.hk/ext/lang-ad (easylistchina.txt: 2587) .dailyfx.com.hk/ext/lang-ad -# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina+easylist.txt: 2600) +# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina.txt: 2586) .dabin69.com/template/comiis_ydzx/ads/topad01\.jpg -# ||dabin69.com/data/attachment/portal/ (easylistchina+easylist.txt: 2599) +# ||dabin69.com/data/attachment/portal/ (easylistchina.txt: 2585) .dabin69.com/data/attachment/portal/ -# ||dabaoku.com^$object,script,subdocument (easylistchina+easylist.txt: 2598) +# ||dabaoku.com^$object,script,subdocument (easylistchina.txt: 2584) .dabaoku.com -# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina+easylist.txt: 2597) +# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina.txt: 2583) .da-fan-shu.cn/images/kuaijie\.jpg -# ||d7w.net/static/d7wad/ (easylistchina+easylist.txt: 2596) +# ||d7w.net/static/d7wad/ (easylistchina.txt: 2582) .d7w.net/static/d7wad/ -# ||d7ol.com/pics/ad/ (easylistchina+easylist.txt: 2595) +# ||d7ol.com/pics/ad/ (easylistchina.txt: 2581) .d7ol.com/pics/ad/ -# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2594) +# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2580) .d5.sina.com.cn -# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2592) +# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2578) .d4.sina.com.cn -# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2591) +# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2577) .d3.sina.com.cn -# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2590) +# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2576) .d2.sina.com.cn -# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2589) +# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2575) .d1.sina.com.cn -# ||d1.shenchuang.com/a.htm (easylistchina+easylist.txt: 2588) +# ||d1.shenchuang.com/a.htm (easylistchina.txt: 2574) .d1.shenchuang.com/a\.htm -# ||d0.xcar.com.cn^ (easylistchina+easylist.txt: 2587) +# ||d0.xcar.com.cn^ (easylistchina.txt: 2573) .d0.xcar.com.cn -# ||d.taomato.com^ (easylistchina+easylist.txt: 2586) +# ||d.taomato.com^ (easylistchina.txt: 2572) .d.taomato.com -# ||d.pixiv.org/show?zone_id= (easylistchina+easylist.txt: 2585) +# ||d.pixiv.org/show?zone_id= (easylistchina.txt: 2571) .d.pixiv.org/show\?zone_id= -# ||d.5.to^$subdocument (easylistchina+easylist.txt: 2584) +# ||d.5.to^$subdocument (easylistchina.txt: 2570) .d.5.to -# ||d.39.net/a.htm? (easylistchina+easylist.txt: 2583) +# ||d.39.net/a.htm? (easylistchina.txt: 2569) .d.39.net/a\.htm\? -# ||d.107788.com^ (easylistchina+easylist.txt: 2582) +# ||d.107788.com^ (easylistchina.txt: 2568) .d.107788.com -# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina+easylist.txt: 2581) +# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina.txt: 2567) .cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6\.jpg -# ||cyzone.cn^*/js/m.js (easylistchina+easylist.txt: 2580) +# ||cyzone.cn^*/js/m.js (easylistchina.txt: 2566) .cyzone.cn/.*/js/m\.js -# ||cye.com.cn/JS/AdsJS/ (easylistchina+easylist.txt: 2579) +# ||cye.com.cn/JS/AdsJS/ (easylistchina.txt: 2565) .cye.com.cn/JS/AdsJS/ -# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina+easylist.txt: 2578) +# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina.txt: 2564) .cxzyw.com/upload/1/148966/images/.*\.gif -# ||cww.net.cn/UpLoadFile/*.swf (easylistchina+easylist.txt: 2577) +# ||cww.net.cn/UpLoadFile/*.swf (easylistchina.txt: 2563) .cww.net.cn/UpLoadFile/.*\.swf -# ||cww.net.cn/include/show.asp?boardID= (easylistchina+easylist.txt: 2576) +# ||cww.net.cn/include/show.asp?boardID= (easylistchina.txt: 2562) .cww.net.cn/include/show\.asp\?boardID= -# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina+easylist.txt: 2575) +# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina.txt: 2561) .cwan.com/templets/webgame/misc/js/indextip\.js -# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina+easylist.txt: 2574) +# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina.txt: 2560) .cwan.com/templets/shouye/misc/js/suspend\.js -# ||cunbt.com/images/*.gif (easylistchina+easylist.txt: 2573) -.cunbt.com/images/.*\.gif -# ||ctrip.com/amd/*960x90. (easylistchina+easylist.txt: 2572) +# ||ctrip.com/amd/*960x90. (easylistchina.txt: 2559) .ctrip.com/amd/.*960x90\. -# ||ctpan.com/vip.js (easylistchina+easylist.txt: 2571) +# ||ctpan.com/vip.js (easylistchina.txt: 2558) .ctpan.com/vip\.js -# ||ctpan.com/statics/js/adt (easylistchina+easylist.txt: 2570) +# ||ctpan.com/statics/js/adt (easylistchina.txt: 2557) .ctpan.com/statics/js/adt -# ||ctpan.com/cp (easylistchina+easylist.txt: 2569) +# ||ctpan.com/cp (easylistchina.txt: 2556) .ctpan.com/cp -# ||csdn.net/sda/Topic (easylistchina+easylist.txt: 2568) +# ||csdn.net/sda/Topic (easylistchina.txt: 2555) .csdn.net/sda/Topic -# ||csdn.net/msg.popup.js (easylistchina+easylist.txt: 2567) +# ||csdn.net/msg.popup.js (easylistchina.txt: 2554) .csdn.net/msg\.popup\.js -# ||csdn.net/ggmm/ (easylistchina+easylist.txt: 2566) +# ||csdn.net/ggmm/ (easylistchina.txt: 2553) .csdn.net/ggmm/ -# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina+easylist.txt: 2565) +# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina.txt: 2552) .csai.cn/xiaohua/js/xiaohua\.js -# ||cs360.cn/js/search_zcw.js (easylistchina+easylist.txt: 2564) +# ||cs360.cn/js/search_zcw.js (easylistchina.txt: 2551) .cs360.cn/js/search_zcw\.js -# ||cs.com.cn/csad/ (easylistchina+easylist.txt: 2563) +# ||cs.com.cn/csad/ (easylistchina.txt: 2550) .cs.com.cn/csad/ -# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina+easylist.txt: 2562) +# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina.txt: 2549) .creativetop.com/cn/pic/laogu_adv\.gif -# ||creaders.net*/ad_func.js (easylistchina+easylist.txt: 2561) +# ||creaders.net*/ad_func.js (easylistchina.txt: 2548) .creaders.net*./(.*/)?ad_func\.js -# ||cr173.com/show/ (easylistchina+easylist.txt: 2560) +# ||cr173.com/show/ (easylistchina.txt: 2547) .cr173.com/show/ -# ||cr173.com/js/ (easylistchina+easylist.txt: 2559) +# ||cr173.com/js/ (easylistchina.txt: 2546) .cr173.com/js/ -# ||cqwb.com.cn/skin/ggimages/ (easylistchina+easylist.txt: 2558) +# ||cqwb.com.cn/skin/ggimages/ (easylistchina.txt: 2545) .cqwb.com.cn/skin/ggimages/ -# ||cqvip.com/viewserver/ViewAD (easylistchina+easylist.txt: 2557) +# ||cqvip.com/viewserver/ViewAD (easylistchina.txt: 2544) .cqvip.com/viewserver/ViewAD -# ||cqnews.net:8080/vplayerAdv/ (easylistchina+easylist.txt: 2556) +# ||cqnews.net:8080/vplayerAdv/ (easylistchina.txt: 2543) .cqnews.net:8080/vplayerAdv/ -# ||cqfishing.net/data/attachment/portal/ (easylistchina+easylist.txt: 2555) +# ||cqfishing.net/data/attachment/portal/ (easylistchina.txt: 2542) .cqfishing.net/data/attachment/portal/ -# ||cps.okbuy.com^ (easylistchina+easylist.txt: 2554) +# ||cps.okbuy.com^ (easylistchina.txt: 2541) .cps.okbuy.com -# ||cpplay.com/inc/ (easylistchina+easylist.txt: 2553) +# ||cpplay.com/inc/ (easylistchina.txt: 2540) .cpplay.com/inc/ -# ||cp126.com/img/ad0 (easylistchina+easylist.txt: 2552) +# ||cpbl-elta.cdn.hinet.net/web/images/beer.jpg (easylistchina.txt: 2539) +.cpbl-elta.cdn.hinet.net/web/images/beer\.jpg +# ||cpbl-elta.cdn.hinet.net/web/images/ad_ (easylistchina.txt: 2538) +.cpbl-elta.cdn.hinet.net/web/images/ad_ +# ||cp126.com/img/ad0 (easylistchina.txt: 2537) .cp126.com/img/ad0 -# ||cp126.com/888zr11.gif (easylistchina+easylist.txt: 2551) +# ||cp126.com/888zr11.gif (easylistchina.txt: 2536) .cp126.com/888zr11\.gif -# ||cp.ifeng.com/iframe/getiframe (easylistchina+easylist.txt: 2550) +# ||cp.ifeng.com/iframe/getiframe (easylistchina.txt: 2535) .cp.ifeng.com/iframe/getiframe -# ||cosersuki.org^*/AD (easylistchina+easylist.txt: 2549) -.cosersuki.org/.*/AD -# ||cosersuki.org^*/150x600 (easylistchina+easylist.txt: 2548) -.cosersuki.org/.*/150x600 -# ||cosersuki.org/2013/03/20140515091120.jpg (easylistchina+easylist.txt: 2547) -.cosersuki.org/2013/03/20140515091120\.jpg -# ||cooltu.com/mp/ (easylistchina+easylist.txt: 2546) +# ||cooltu.com/mp/ (easylistchina.txt: 2534) .cooltu.com/mp/ -# ||coolaler.com.tw^*_340x80. (easylistchina+easylist.txt: 2545) +# ||coolaler.com.tw^*_340x80. (easylistchina.txt: 2533) .coolaler.com.tw/.*_340x80\. -# ||coolaler.com.tw^*_300x100. (easylistchina+easylist.txt: 2544) +# ||coolaler.com.tw^*_300x100. (easylistchina.txt: 2532) .coolaler.com.tw/.*_300x100\. -# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina+easylist.txt: 2543) +# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina.txt: 2531) .cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ -# ||content.xilu.com^$object (easylistchina+easylist.txt: 2542) +# ||content.xilu.com^$object (easylistchina.txt: 2530) .content.xilu.com -# ||comment.bjcnc.img.sohucs.com/*_gif (easylistchina+easylist.txt: 2541) -.comment.bjcnc.img.sohucs.com/.*_gif -# ||com.webmasterhome.cn/a1- (easylistchina+easylist.txt: 2540) +# ||com.webmasterhome.cn/a1- (easylistchina.txt: 2529) .com.webmasterhome.cn/a1- -# ||colayun.com/cola3/newdown/join.png (easylistchina+easylist.txt: 2539) +# ||colayun.com/cola3/newdown/join.png (easylistchina.txt: 2528) .colayun.com/cola3/newdown/join\.png -# ||coladrive.com/cola3/newdown/join.png (easylistchina+easylist.txt: 2538) +# ||coladrive.com/cola3/newdown/join.png (easylistchina.txt: 2527) .coladrive.com/cola3/newdown/join\.png -# ||codepub.com/wuse/pic/ (easylistchina+easylist.txt: 2537) +# ||codepub.com/wuse/pic/ (easylistchina.txt: 2526) .codepub.com/wuse/pic/ -# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina+easylist.txt: 2536) +# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina.txt: 2525) .codepub.com/file/code/20141225/142856140\.jpg -# ||codeforge.cn/images/banner.gif (easylistchina+easylist.txt: 2535) +# ||codeforge.cn/images/banner.gif (easylistchina.txt: 2524) .codeforge.cn/images/banner\.gif -# ||cococomic.com/g/ (easylistchina+easylist.txt: 2534) +# ||cococomic.com/g/ (easylistchina.txt: 2523) .cococomic.com/g/ -# ||cnzzla.com/public/scripts/money.js (easylistchina+easylist.txt: 2533) +# ||cnzzla.com/public/scripts/money.js (easylistchina.txt: 2522) .cnzzla.com/public/scripts/money\.js -# ||cnzol.com/template/style/images/wlfloat.js (easylistchina+easylist.txt: 2531) +# ||cnzol.com/template/style/images/wlfloat.js (easylistchina.txt: 2520) .cnzol.com/template/style/images/wlfloat\.js -# ||cnzol.com/template/style/images/lcdl.js (easylistchina+easylist.txt: 2530) +# ||cnzol.com/template/style/images/lcdl.js (easylistchina.txt: 2519) .cnzol.com/template/style/images/lcdl\.js -# ||cnzol.com/page/ (easylistchina+easylist.txt: 2529) +# ||cnzol.com/page/ (easylistchina.txt: 2518) .cnzol.com/page/ -# ||cnwnews.com/gg200903/nrzs.js (easylistchina+easylist.txt: 2528) +# ||cnwnews.com/gg200903/nrzs.js (easylistchina.txt: 2517) .cnwnews.com/gg200903/nrzs\.js -# ||cnwnews.com/gg200903/nry02.js (easylistchina+easylist.txt: 2527) +# ||cnwnews.com/gg200903/nry02.js (easylistchina.txt: 2516) .cnwnews.com/gg200903/nry02\.js -# ||cntvboxnow.com//ads_ (easylistchina+easylist.txt: 2526) -# ||cntv.cn/hezuo/ (easylistchina+easylist.txt: 2525) +# ||cntvboxnow.com//ads_ (easylistchina.txt: 2515) +# ||cntv.cn/hezuo/ (easylistchina.txt: 2514) .cntv.cn/hezuo/ -# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina+easylist.txt: 2524) +# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina.txt: 2513) .cnstock.com/image/201511/26/20151126105158298\.jpg -# ||cnsofas.com/loldytt/js/ (easylistchina+easylist.txt: 2523) +# ||cnsofas.com/loldytt/js/ (easylistchina.txt: 2512) .cnsofas.com/loldytt/js/ -# ||cnsat.net/Pictuer/ (easylistchina+easylist.txt: 2522) +# ||cnsat.net/Pictuer/ (easylistchina.txt: 2511) .cnsat.net/Pictuer/ -# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina+easylist.txt: 2521) +# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina.txt: 2510) .cnr.cn/cnrxwph/iframe/tpdy/ -# ||cnnb.com.cn/images/14ny_1.gif (easylistchina+easylist.txt: 2520) +# ||cnnb.com.cn/images/14ny_1.gif (easylistchina.txt: 2509) .cnnb.com.cn/images/14ny_1\.gif -# ||cnnb.com.cn/image/xhhc71.gif (easylistchina+easylist.txt: 2519) +# ||cnnb.com.cn/image/xhhc71.gif (easylistchina.txt: 2508) .cnnb.com.cn/image/xhhc71\.gif -# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina+easylist.txt: 2518) +# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina.txt: 2507) .cnmoad.com/wp-content/uploads/2015/02/lomark_banner\.png -# ||cnmo-img.com.cn/oddjs/ (easylistchina+easylist.txt: 2517) +# ||cnmo-img.com.cn/oddjs/ (easylistchina.txt: 2506) .cnmo-img.com.cn/oddjs/ -# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina+easylist.txt: 2516) -# ||cnkang.com/zixun/nanke/ (easylistchina+easylist.txt: 2515) +# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina.txt: 2505) +# ||cnkang.com/zixun/nanke/ (easylistchina.txt: 2504) .cnkang.com/zixun/nanke/ -# ||cnkang.com/images/sy (easylistchina+easylist.txt: 2514) +# ||cnkang.com/images/sy (easylistchina.txt: 2503) .cnkang.com/images/sy -# ||cnkang.com/images/*756.jpg (easylistchina+easylist.txt: 2513) +# ||cnkang.com/images/*756.jpg (easylistchina.txt: 2502) .cnkang.com/images/.*756\.jpg -# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina+easylist.txt: 2512) +# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina.txt: 2501) .cnkang.com/cs/images0410/fengxiong\.jpg -# ||cnjxol.com/include/2011/index/js/index.js (easylistchina+easylist.txt: 2511) +# ||cnjxol.com/include/2011/index/js/index.js (easylistchina.txt: 2500) .cnjxol.com/include/2011/index/js/index\.js -# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina+easylist.txt: 2510) +# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina.txt: 2499) .cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414\.swf -# ||cnjxol.com/*.files/sian.gif (easylistchina+easylist.txt: 2509) +# ||cnjxol.com/*.files/sian.gif (easylistchina.txt: 2498) .cnjxol.com/.*\.files/sian\.gif -# ||cnhubei.com*/g2 (easylistchina+easylist.txt: 2508) +# ||cnhubei.com*/g2 (easylistchina.txt: 2497) .cnhubei.com*./(.*/)?g2 -# ||cngsf.com/images/336_280.gif (easylistchina+easylist.txt: 2507) +# ||cngsf.com/images/336_280.gif (easylistchina.txt: 2496) .cngsf.com/images/336_280\.gif -# ||cngsf.com/baidu.htm (easylistchina+easylist.txt: 2506) +# ||cngsf.com/baidu.htm (easylistchina.txt: 2495) .cngsf.com/baidu\.htm -# ||cngoldres.com/advservice/ (easylistchina+easylist.txt: 2505) +# ||cngoldres.com/advservice/ (easylistchina.txt: 2494) .cngoldres.com/advservice/ -# ||cndesign.com/img/1200x100.jpg (easylistchina+easylist.txt: 2504) +# ||cndesign.com/img/1200x100.jpg (easylistchina.txt: 2493) .cndesign.com/img/1200x100\.jpg -# ||cndesign.com/Content/img/356x80_ (easylistchina+easylist.txt: 2503) +# ||cndesign.com/Content/img/356x80_ (easylistchina.txt: 2492) .cndesign.com/Content/img/356x80_ -# ||cndesign.com/Content/img/175x60_ (easylistchina+easylist.txt: 2502) +# ||cndesign.com/Content/img/175x60_ (easylistchina.txt: 2491) .cndesign.com/Content/img/175x60_ -# ||cndesign.com/Content/img/*x90_ (easylistchina+easylist.txt: 2501) +# ||cndesign.com/Content/img/*x90_ (easylistchina.txt: 2490) .cndesign.com/Content/img/.*x90_ -# ||cncrk.com/505/ (easylistchina+easylist.txt: 2500) +# ||cncrk.com/505/ (easylistchina.txt: 2489) .cncrk.com/505/ -# ||cnchu.com/aps/ (easylistchina+easylist.txt: 2499) +# ||cnchu.com/aps/ (easylistchina.txt: 2488) .cnchu.com/aps/ -# ||cnbetacdn.com/banner (easylistchina+easylist.txt: 2498) +# ||cnbetacdn.com/banner (easylistchina.txt: 2487) .cnbetacdn.com/banner -# ||cnbeta.com/jobs/list_? (easylistchina+easylist.txt: 2497) +# ||cnbetacdn.com/320-50. (easylistchina.txt: 2486) +.cnbetacdn.com/320-50\. +# ||cnbeta.com/jobs/list_? (easylistchina.txt: 2485) .cnbeta.com/jobs/list_\? -# ||cnbeta.com/assets/js/pages/google.js (easylistchina+easylist.txt: 2496) +# ||cnbeta.com/assets/js/pages/google.js (easylistchina.txt: 2484) .cnbeta.com/assets/js/pages/google\.js -# ||cnbeta.com/assets/images/*_670_90. (easylistchina+easylist.txt: 2495) +# ||cnbeta.com/assets/images/*_670_90. (easylistchina.txt: 2483) .cnbeta.com/assets/images/.*_670_90\. -# ||cna5.net/skins/js/ (easylistchina+easylist.txt: 2494) +# ||cna5.net/skins/js/ (easylistchina.txt: 2482) .cna5.net/skins/js/ -# ||cmsjs.eastmoney.com^$subdocument (easylistchina+easylist.txt: 2493) +# ||cmsjs.eastmoney.com^$subdocument (easylistchina.txt: 2481) .cmsjs.eastmoney.com -# ||cmhello.com/2015/10/hc.jpg (easylistchina+easylist.txt: 2492) +# ||cmhello.com/2015/10/hc.jpg (easylistchina.txt: 2480) .cmhello.com/2015/10/hc\.jpg -# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina+easylist.txt: 2491) +# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina.txt: 2479) .club.pchome.net/.*/localexchange\.php -# ||clouddn.com/960x60.gif (easylistchina+easylist.txt: 2490) +# ||clouddn.com/960x60.gif (easylistchina.txt: 2478) .clouddn.com/960x60\.gif -# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina+easylist.txt: 2489) +# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina.txt: 2477) .clm02.com/2014-A/FB-6-14-AA1\.jpg -# ||cjn.cn^*/ad/ (easylistchina+easylist.txt: 2488) +# ||cjn.cn^*/ad/ (easylistchina.txt: 2476) .cjn.cn/.*/ad/ -# ||cj.qidian.com^$object,subdocument (easylistchina+easylist.txt: 2487) +# ||cj.qidian.com^$object,subdocument (easylistchina.txt: 2475) .cj.qidian.com -# ||citysbs.com^*swf (easylistchina+easylist.txt: 2485) +# ||citysbs.com^*swf (easylistchina.txt: 2473) .citysbs.com/.*swf -# ||citysbs.com/no/*/980x (easylistchina+easylist.txt: 2484) +# ||citysbs.com/no/*/980x (easylistchina.txt: 2472) .citysbs.com/no/.*/980x -# ||citysbs.com/no/*/800x90- (easylistchina+easylist.txt: 2483) +# ||citysbs.com/no/*/800x90- (easylistchina.txt: 2471) .citysbs.com/no/.*/800x90- -# ||citysbs.com/no/*/650x50- (easylistchina+easylist.txt: 2482) +# ||citysbs.com/no/*/650x50- (easylistchina.txt: 2470) .citysbs.com/no/.*/650x50- -# ||citysbs.com/no/*/1190x60- (easylistchina+easylist.txt: 2481) +# ||citysbs.com/no/*/1190x60- (easylistchina.txt: 2469) .citysbs.com/no/.*/1190x60- -# ||citysbs.com/chongqing/*/1920x179- (easylistchina+easylist.txt: 2480) +# ||citysbs.com/chongqing/*/1920x179- (easylistchina.txt: 2468) .citysbs.com/chongqing/.*/1920x179- -# ||cishuge.com/static/js/xiaoshuo.js (easylistchina+easylist.txt: 2479) +# ||cishuge.com/static/js/xiaoshuo.js (easylistchina.txt: 2467) .cishuge.com/static/js/xiaoshuo\.js -# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina+easylist.txt: 2478) +# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina.txt: 2466) .cilook.net/cilookinc/isee5_950x60\.gif -# ||chunxiao.tv/1.aspx (easylistchina+easylist.txt: 2477) +# ||chunxiao.tv/1.aspx (easylistchina.txt: 2465) .chunxiao.tv/1\.aspx -# ||chuixue.com/template/*/images/g_js/show_ (easylistchina+easylist.txt: 2476) +# ||chuixue.com/template/*/images/g_js/show_ (easylistchina.txt: 2464) .chuixue.com/template/.*/images/g_js/show_ -# ||chuixue.com/jsa/ (easylistchina+easylist.txt: 2475) +# ||chuixue.com/jsa/ (easylistchina.txt: 2463) .chuixue.com/jsa/ -# ||chubun.com/images/banners/ (easylistchina+easylist.txt: 2474) +# ||chubun.com/images/banners/ (easylistchina.txt: 2462) .chubun.com/images/banners/ -# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina+easylist.txt: 2473) +# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina.txt: 2460) .chuangshi.qq.com/upload/cmsv2/Banner/ -# ||chrome007.com/images/goodxxxx.jpg (easylistchina+easylist.txt: 2472) +# ||chrome007.com/images/goodxxxx.jpg (easylistchina.txt: 2459) .chrome007.com/images/goodxxxx\.jpg -# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina+easylist.txt: 2471) +# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina.txt: 2458) .chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ -# ||chiphell.com/activity/ (easylistchina+easylist.txt: 2470) +# ||chosun.com/images/banner/ (easylistchina.txt: 2457) +.chosun.com/images/banner/ +# ||chiphell.com/activity/ (easylistchina.txt: 2456) .chiphell.com/activity/ -# ||chinaz.com/temp_upfile/ads/ (easylistchina+easylist.txt: 2469) +# ||chinaz.com/temp_upfile/ads/ (easylistchina.txt: 2455) .chinaz.com/temp_upfile/ads/ -# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina+easylist.txt: 2468) +# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina.txt: 2454) .chinaz.com/site_view/alexa_ad\.jpg -# ||chinaz.com/site_view/2z.cn.gif (easylistchina+easylist.txt: 2467) +# ||chinaz.com/site_view/2z.cn.gif (easylistchina.txt: 2453) .chinaz.com/site_view/2z\.cn\.gif -# ||chinaz.com/newshome/ (easylistchina+easylist.txt: 2466) +# ||chinaz.com/newshome/ (easylistchina.txt: 2452) .chinaz.com/newshome/ -# ||chinaz.com/ip_gadsense.js (easylistchina+easylist.txt: 2465) +# ||chinaz.com/ip_gadsense.js (easylistchina.txt: 2451) .chinaz.com/ip_gadsense\.js -# ||chinaz.com/imagead/ (easylistchina+easylist.txt: 2464) +# ||chinaz.com/imagead/ (easylistchina.txt: 2450) .chinaz.com/imagead/ -# ||chinaz.com/alexa/wz.js (easylistchina+easylist.txt: 2463) +# ||chinaz.com/alexa/wz.js (easylistchina.txt: 2449) .chinaz.com/alexa/wz\.js -# ||chinaz.com/alexa/word3.htm (easylistchina+easylist.txt: 2462) +# ||chinaz.com/alexa/word3.htm (easylistchina.txt: 2448) .chinaz.com/alexa/word3\.htm -# ||chinaz.com/alexa/pic.js (easylistchina+easylist.txt: 2461) +# ||chinaz.com/alexa/pic.js (easylistchina.txt: 2447) .chinaz.com/alexa/pic\.js -# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina+easylist.txt: 2460) +# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina.txt: 2446) .chinaz.com/2015/0113/1421112175579\.jpg -# ||chinaz.com/2011code_images/topright.js (easylistchina+easylist.txt: 2459) +# ||chinaz.com/2011code_images/topright.js (easylistchina.txt: 2445) .chinaz.com/2011code_images/topright\.js -# ||chinaz.com/2011code_images/soft (easylistchina+easylist.txt: 2458) +# ||chinaz.com/2011code_images/soft (easylistchina.txt: 2444) .chinaz.com/2011code_images/soft -# ||chinaz.com/2011code_images/A_ (easylistchina+easylist.txt: 2457) +# ||chinaz.com/2011code_images/A_ (easylistchina.txt: 2443) .chinaz.com/2011code_images/A_ -# ||chinayes.com/Include%5Cad%5C (easylistchina+easylist.txt: 2456) +# ||chinayes.com/Include%5Cad%5C (easylistchina.txt: 2442) .chinayes.com/Include%5Cad%5C -# ||chinawmrc.com/images/end.js (easylistchina+easylist.txt: 2455) +# ||chinawmrc.com/images/end.js (easylistchina.txt: 2441) .chinawmrc.com/images/end\.js -# ||chinatimes.com/Scripts/onead_ (easylistchina+easylist.txt: 2454) +# ||chinatimes.com/Scripts/onead_ (easylistchina.txt: 2440) .chinatimes.com/Scripts/onead_ -# ||chinatimes.com/Scripts/bennerad. (easylistchina+easylist.txt: 2453) +# ||chinatimes.com/Scripts/bennerad. (easylistchina.txt: 2439) .chinatimes.com/Scripts/bennerad\. -# ||chinatimes.com/ads/forums/carouselad.js (easylistchina+easylist.txt: 2452) +# ||chinatimes.com/ads/forums/carouselad.js (easylistchina.txt: 2438) .chinatimes.com/ads/forums/carouselad\.js -# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina+easylist.txt: 2451) +# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina.txt: 2437) .chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo\.js -# ||chinatimes.com/2007Cti/ (easylistchina+easylist.txt: 2450) +# ||chinatimes.com/2007Cti/ (easylistchina.txt: 2436) .chinatimes.com/2007Cti/ -# ||chinaso.com/iframe336/ (easylistchina+easylist.txt: 2449) +# ||chinaso.com/iframe336/ (easylistchina.txt: 2435) .chinaso.com/iframe336/ -# ||chinasexq.com/js/ad (easylistchina+easylist.txt: 2448) +# ||chinasexq.com/js/ad (easylistchina.txt: 2434) .chinasexq.com/js/ad -# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina+easylist.txt: 2447) +# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina.txt: 2433) .chinaqking.com/userUpload/jobApply2\.jpg -# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina+easylist.txt: 2446) +# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina.txt: 2432) .chinaqking.com/images/qkw/jobApply1\.jpg -# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina+easylist.txt: 2445) +# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina.txt: 2431) .chinaqking.com/images/newPage/zhaopin\.jpg -# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina+easylist.txt: 2444) +# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina.txt: 2430) .chinaqking.com/images/newPage/JLW\.jpg -# ||chinanews.com/shipin/sptp.xml (easylistchina+easylist.txt: 2443) +# ||chinanews.com/shipin/sptp.xml (easylistchina.txt: 2429) .chinanews.com/shipin/sptp\.xml -# ||chinanews.com/images/images/Sadv (easylistchina+easylist.txt: 2442) +# ||chinanews.com/images/images/Sadv (easylistchina.txt: 2428) .chinanews.com/images/images/Sadv -# ||chinanews.com/images/*/gaobang. (easylistchina+easylist.txt: 2441) +# ||chinanews.com/images/*/gaobang. (easylistchina.txt: 2427) .chinanews.com/images/.*/gaobang\. -# ||chinanews.com.cn/ad2015/ (easylistchina+easylist.txt: 2440) +# ||chinanews.com.cn/ad2015/ (easylistchina.txt: 2426) .chinanews.com.cn/ad2015/ -# ||chinairn.com/images3/*ads (easylistchina+easylist.txt: 2439) +# ||chinairn.com/images3/*ads (easylistchina.txt: 2425) .chinairn.com/images3/.*ads -# ||chinaiiss.com/js/function.ad.js (easylistchina+easylist.txt: 2438) +# ||chinaiiss.com/js/function.ad.js (easylistchina.txt: 2424) .chinaiiss.com/js/function\.ad\.js -# ||chinaiiss.com/js/float.js (easylistchina+easylist.txt: 2437) +# ||chinaiiss.com/js/float.js (easylistchina.txt: 2423) .chinaiiss.com/js/float\.js -# ||chinaiiss.com/images/jianyu_erweima (easylistchina+easylist.txt: 2436) +# ||chinaiiss.com/images/jianyu_erweima (easylistchina.txt: 2422) .chinaiiss.com/images/jianyu_erweima -# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina+easylist.txt: 2435) +# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina.txt: 2421) .chinaiiss.com/attachment/linkimg/201306/19/142826_845\.jpg -# ||chinafpd.net/js/2012-10/ (easylistchina+easylist.txt: 2434) +# ||chinafpd.net/js/2012-10/ (easylistchina.txt: 2420) .chinafpd.net/js/2012-10/ -# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina+easylist.txt: 2433) +# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina.txt: 2419) .chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13\.jpg -# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina+easylist.txt: 2432) +# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina.txt: 2418) .chinadaily.com.cn/micro-reading/dzh/bd-taofang\.gif -# ||chinachugui.com/jsfiles/aods/ (easylistchina+easylist.txt: 2431) +# ||chinachugui.com/jsfiles/aods/ (easylistchina.txt: 2417) .chinachugui.com/jsfiles/aods/ -# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina+easylist.txt: 2430) +# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina.txt: 2416) .chinacar.com.cn/zhuanyongche/images/wintip_ -# ||chinabyte.com/w/$subdocument (easylistchina+easylist.txt: 2429) +# ||chinabyte.com/w/$subdocument (easylistchina.txt: 2415) .chinabyte.com/w/ -# ||chinaacc.com/lamu/dl- (easylistchina+easylist.txt: 2427) +# ||chinaacc.com/lamu/dl- (easylistchina.txt: 2413) .chinaacc.com/lamu/dl- -# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina+easylist.txt: 2426) +# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina.txt: 2412) .china.com/zh_cn/plugin/all/hezuo360/ -# ||china.com/zh_cn/etc/gghead (easylistchina+easylist.txt: 2425) +# ||china.com/zh_cn/etc/gghead (easylistchina.txt: 2411) .china.com/zh_cn/etc/gghead -# ||china.com/zh_cn/ads/ (easylistchina+easylist.txt: 2424) +# ||china.com/zh_cn/ads/ (easylistchina.txt: 2410) .china.com/zh_cn/ads/ -# ||china.com/jsfiles/gotopgg/ (easylistchina+easylist.txt: 2423) +# ||china.com/jsfiles/gotopgg/ (easylistchina.txt: 2409) .china.com/jsfiles/gotopgg/ -# ||china.com.cn/youxi.swf (easylistchina+easylist.txt: 2422) +# ||china.com.cn/youxi.swf (easylistchina.txt: 2408) .china.com.cn/youxi\.swf -# ||china.com.cn/statics/js/js_vag/ (easylistchina+easylist.txt: 2421) +# ||china.com.cn/statics/js/js_vag/ (easylistchina.txt: 2407) .china.com.cn/statics/js/js_vag/ -# ||china.com.cn/food/node_7094923.htm (easylistchina+easylist.txt: 2420) +# ||china.com.cn/food/node_7094923.htm (easylistchina.txt: 2406) .china.com.cn/food/node_7094923\.htm -# ||china.com.cn/2015ads/ (easylistchina+easylist.txt: 2419) +# ||china.com.cn/2015ads/ (easylistchina.txt: 2405) .china.com.cn/2015ads/ -# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina+easylist.txt: 2418) +# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina.txt: 2404) .china.cn/images1/ch/2014first/20140422gq\.js -# ||china.chemnet.com/cnbanner/ (easylistchina+easylist.txt: 2417) +# ||china.chemnet.com/cnbanner/ (easylistchina.txt: 2403) .china.chemnet.com/cnbanner/ -# ||chidir.com^ (easylistchina+easylist.txt: 2416) +# ||chidir.com^ (easylistchina.txt: 2402) .chidir.com -# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina+easylist.txt: 2415) +# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina.txt: 2401) .chewen.com/pics/2013/09/13/02013091317191365\.jpg -# ||chengruide.com/js/union_junshiqu.js (easylistchina+easylist.txt: 2414) +# ||chengruide.com/js/union_junshiqu.js (easylistchina.txt: 2400) .chengruide.com/js/union_junshiqu\.js -# ||chemnet.com/js/float_div.js (easylistchina+easylist.txt: 2413) +# ||chemnet.com/js/float_div.js (easylistchina.txt: 2399) .chemnet.com/js/float_div\.js -# ||cheers.com.tw/js-lib/fancybox/ (easylistchina+easylist.txt: 2412) +# ||cheers.com.tw/js-lib/fancybox/ (easylistchina.txt: 2398) .cheers.com.tw/js-lib/fancybox/ -# ||chddh.com*/A*D/ (easylistchina+easylist.txt: 2411) +# ||chddh.com*/A*D/ (easylistchina.txt: 2397) .chddh.com*./(.*/)?A.*D/ -# ||chcj.net/comiis_ad/ (easylistchina+easylist.txt: 2410) +# ||chcj.net/comiis_ad/ (easylistchina.txt: 2396) .chcj.net/comiis_ad/ -# ||chaling.cn/images/*.gif (easylistchina+easylist.txt: 2409) +# ||chaling.cn/images/*.gif (easylistchina.txt: 2395) .chaling.cn/images/.*\.gif -# ||chaling.cn/data/attachment/portal/ (easylistchina+easylist.txt: 2408) +# ||chaling.cn/data/attachment/portal/ (easylistchina.txt: 2394) .chaling.cn/data/attachment/portal/ -# ||chakd.com/images/xitie160x60.gif (easylistchina+easylist.txt: 2407) +# ||chakd.com/images/xitie160x60.gif (easylistchina.txt: 2393) .chakd.com/images/xitie160x60\.gif -# ||cfanclub.net/lmimages/yinsub.gif (easylistchina+easylist.txt: 2406) +# ||cfanclub.net/lmimages/yinsub.gif (easylistchina.txt: 2392) .cfanclub.net/lmimages/yinsub\.gif -# ||centoscn.com/money/ (easylistchina+easylist.txt: 2405) +# ||centoscn.com/money/ (easylistchina.txt: 2391) .centoscn.com/money/ -# ||cdyee.com/external/5070.files/ad/ (easylistchina+easylist.txt: 2404) +# ||cdyee.com/external/5070.files/ad/ (easylistchina.txt: 2390) .cdyee.com/external/5070\.files/ad/ -# ||cdndm.com^*/js/newtc.js (easylistchina+easylist.txt: 2403) +# ||cdndm.com^*/js/newtc.js (easylistchina.txt: 2389) .cdndm.com/.*/js/newtc\.js -# ||cdn.wdlm.cn^ (easylistchina+easylist.txt: 2401) +# ||cdn.wdlm.cn^ (easylistchina.txt: 2387) .cdn.wdlm.cn -# ||cdn.shdsp.net/ad (easylistchina+easylist.txt: 2400) +# ||cdn.shdsp.net/ad (easylistchina.txt: 2386) .cdn.shdsp.net/ad -# ||cdn.galacg.me/img/*.jpg (easylistchina+easylist.txt: 2399) +# ||cdn.galacg.me/img/*.jpg (easylistchina.txt: 2385) .cdn.galacg.me/img/.*\.jpg -# ||cdn.galacg.me/img/*.gif (easylistchina+easylist.txt: 2398) +# ||cdn.galacg.me/img/*.gif (easylistchina.txt: 2384) .cdn.galacg.me/img/.*\.gif -# ||cdn.dfile.cn/slot/ (easylistchina+easylist.txt: 2397) +# ||cdn.dfile.cn/slot/ (easylistchina.txt: 2383) .cdn.dfile.cn/slot/ -# ||ccwzz.cc/dmf.js (easylistchina+easylist.txt: 2396) +# ||ccwzz.cc/dmf.js (easylistchina.txt: 2382) .ccwzz.cc/dmf\.js -# ||ccvcd.com/images/ (easylistchina+easylist.txt: 2395) +# ||ccvcd.com/images/ (easylistchina.txt: 2381) .ccvcd.com/images/ -# ||cctv5.name/js/*foot.js (easylistchina+easylist.txt: 2394) +# ||cctv5.name/js/*foot.js (easylistchina.txt: 2380) .cctv5.name/js/.*foot\.js -# ||cctv5.name/data/js/ (easylistchina+easylist.txt: 2393) +# ||cctv5.name/data/js/ (easylistchina.txt: 2379) .cctv5.name/data/js/ -# ||cctv.com/Library/a2.js (easylistchina+easylist.txt: 2392) +# ||cctv.com/Library/a2.js (easylistchina.txt: 2378) .cctv.com/Library/a2\.js -# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina+easylist.txt: 2391) +# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina.txt: 2377) .cctime.com/UpLoadFile/2012/11/7/201211733483705\.gif -# ||cctime.com/UpLoadFile/201$object (easylistchina+easylist.txt: 2390) +# ||cctime.com/UpLoadFile/201$object (easylistchina.txt: 2376) .cctime.com/UpLoadFile/201 -# ||ccoo.cn/webdiy/$subdocument (easylistchina+easylist.txt: 2389) +# ||ccoo.cn/webdiy/$subdocument (easylistchina.txt: 2375) .ccoo.cn/webdiy/ -# ||ccoo.cn/js/dlv*.js (easylistchina+easylist.txt: 2388) +# ||ccoo.cn/js/dlv*.js (easylistchina.txt: 2374) .ccoo.cn/js/dlv.*\.js -# ||ccidnet.com/nav/dia_ (easylistchina+easylist.txt: 2387) +# ||ccidnet.com/nav/dia_ (easylistchina.txt: 2373) .ccidnet.com/nav/dia_ -# ||cccdv.com/js/*0- (easylistchina+easylist.txt: 2386) +# ||cccdv.com/js/*0- (easylistchina.txt: 2372) .cccdv.com/js/.*0- -# ||ccb.com.cn/V5/images5/right0.gif (easylistchina+easylist.txt: 2385) +# ||ccb.com.cn/V5/images5/right0.gif (easylistchina.txt: 2371) .ccb.com.cn/V5/images5/right0\.gif -# ||ccb.com.cn/V5/images5/left0.gif (easylistchina+easylist.txt: 2384) +# ||ccb.com.cn/V5/images5/left0.gif (easylistchina.txt: 2370) .ccb.com.cn/V5/images5/left0\.gif -# ||ccav1.me/block.js (easylistchina+easylist.txt: 2383) +# ||ccav1.me/block.js (easylistchina.txt: 2369) .ccav1.me/block\.js -# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina+easylist.txt: 2382) +# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina.txt: 2368) .ccav1.com/wp-content/uploads/an-temp/ -# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina+easylist.txt: 2381) +# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina.txt: 2367) .ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao\.jpg -# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina+easylist.txt: 2380) +# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina.txt: 2366) .cbfw.cn/gonggong/js/cf_flash\.js -# ||cari.com.my/static/appbanner (easylistchina+easylist.txt: 2379) +# ||cari.com.my/static/appbanner (easylistchina.txt: 2365) .cari.com.my/static/appbanner -# ||caomeinv.info/images/*.gif (easylistchina+easylist.txt: 2378) -.caomeinv.info/images/.*\.gif -# ||caoimg.com/images/ (easylistchina+easylist.txt: 2377) +# ||caoimg.com/images/ (easylistchina.txt: 2364) .caoimg.com/images/ -# ||camster.com/promos/ (easylistchina+easylist.txt: 2376) +# ||camster.com/promos/ (easylistchina.txt: 2363) .camster.com/promos/ -# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina+easylist.txt: 2375) +# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina.txt: 2362) .caipiao.cntv.cn/website/cntv/box_news\.shtml -# ||caikuu.com/ckimages/*_zg (easylistchina+easylist.txt: 2374) +# ||caikuu.com/ckimages/*_zg (easylistchina.txt: 2361) .caikuu.com/ckimages/.*_zg -# ||caikuu.com/ckimages/*_gg (easylistchina+easylist.txt: 2373) +# ||caikuu.com/ckimages/*_gg (easylistchina.txt: 2360) .caikuu.com/ckimages/.*_gg -# ||cachead.com^ (easylistchina+easylist.txt: 2372) +# ||cachead.com^ (easylistchina.txt: 2359) .cachead.com -# ||cacafly.net^ (easylistchina+easylist.txt: 2371) +# ||cacafly.net^ (easylistchina.txt: 2358) .cacafly.net -# ||caamei.com/k.js (easylistchina+easylist.txt: 2370) +# ||caamei.com/k.js (easylistchina.txt: 2357) .caamei.com/k\.js -# ||c4d.cn/api.php?mod=ad&adid= (easylistchina+easylist.txt: 2369) +# ||c4d.cn/api.php?mod=ad&adid= (easylistchina.txt: 2356) .c4d.cn/api\.php\?mod=ad&adid= -# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina+easylist.txt: 2368) +# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina.txt: 2355) .c2cc.cn/images/images2011/ads_bigbg\.jpg -# ||c2cc.cn/c2ccgg/ (easylistchina+easylist.txt: 2367) +# ||c2cc.cn/c2ccgg/ (easylistchina.txt: 2354) .c2cc.cn/c2ccgg/ -# ||c2000.cn/c2000/ (easylistchina+easylist.txt: 2366) +# ||c2000.cn/c2000/ (easylistchina.txt: 2353) .c2000.cn/c2000/ -# ||c168c.com/*adv/ (easylistchina+easylist.txt: 2365) +# ||c168c.com/*adv/ (easylistchina.txt: 2352) .c168c.com/.*adv/ -# ||c114.net/js/channel.js (easylistchina+easylist.txt: 2364) +# ||c114.net/js/channel.js (easylistchina.txt: 2351) .c114.net/js/channel\.js -# ||c114.net/images/c114/ad_ (easylistchina+easylist.txt: 2363) +# ||c114.net/images/c114/ad_ (easylistchina.txt: 2350) .c114.net/images/c114/ad_ -# ||c114.net/default_inc/a/images/ (easylistchina+easylist.txt: 2362) +# ||c114.net/default_inc/a/images/ (easylistchina.txt: 2349) .c114.net/default_inc/a/images/ -# ||c114.net*/images_a/*.swf (easylistchina+easylist.txt: 2361) +# ||c114.net*/images_a/*.swf (easylistchina.txt: 2348) .c114.net*./(.*/)?images_a/.*\.swf -# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina+easylist.txt: 2360) +# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina.txt: 2347) .c1.74ch.com/u/mpf/xyz/fi/ZpE3T72\.gif -# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina+easylist.txt: 2359) +# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina.txt: 2346) .c1.74ch.com/u/mpf/xyz/fi/bVE3T72\.gif -# ||c.quwenjiemi.com^*.js?version= (easylistchina+easylist.txt: 2358) +# ||c.quwenjiemi.com^*.js?version= (easylistchina.txt: 2345) .c.quwenjiemi.com/.*\.js\?version= -# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina+easylist.txt: 2357) +# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina.txt: 2344) .c-ctrip.com/rk/201411/c580x145\.jpg -# ||bytravel.cn/js/s_ (easylistchina+easylist.txt: 2356) +# ||bzfl1.cc/da*.gif (easylistchina.txt: 2343) +.bzfl1.cc/da.*\.gif +# ||bzfl.cc/da*.gif (easylistchina.txt: 2342) +.bzfl.cc/da.*\.gif +# ||bytravel.cn/js/s_ (easylistchina.txt: 2341) .bytravel.cn/js/s_ -# ||bytravel.cn/js/b_ (easylistchina+easylist.txt: 2355) +# ||bytravel.cn/js/b_ (easylistchina.txt: 2340) .bytravel.cn/js/b_ -# ||bytravel.cn/js/ad_ (easylistchina+easylist.txt: 2354) +# ||bytravel.cn/js/ad_ (easylistchina.txt: 2339) .bytravel.cn/js/ad_ -# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina+easylist.txt: 2353) +# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina.txt: 2338) .bytravel.cn/images/t/usa_250_120\.gif -# ||bytravel.cn/images/cus/ (easylistchina+easylist.txt: 2352) +# ||bytravel.cn/images/cus/ (easylistchina.txt: 2337) .bytravel.cn/images/cus/ -# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina+easylist.txt: 2351) +# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina.txt: 2336) .bxwxtxt.com/a/bxwx/indextan\.js -# ||bxwx.org/myabc/ (easylistchina+easylist.txt: 2350) +# ||bxwx.org/myabc/ (easylistchina.txt: 2335) .bxwx.org/myabc/ -# ||bxwx.org/js/box_ (easylistchina+easylist.txt: 2349) +# ||bxwx.org/js/box_ (easylistchina.txt: 2334) .bxwx.org/js/box_ -# ||bxwx.org/js/$subdocument (easylistchina+easylist.txt: 2348) +# ||bxwx.org/js/$subdocument (easylistchina.txt: 2333) .bxwx.org/js/ -# ||bxwx.org/caipiao.js (easylistchina+easylist.txt: 2347) +# ||bxwx.org/caipiao.js (easylistchina.txt: 2332) .bxwx.org/caipiao\.js -# ||bxwx.org/1.js (easylistchina+easylist.txt: 2346) +# ||bxwx.org/1.js (easylistchina.txt: 2331) .bxwx.org/1\.js -# ||bx0635.com/tx/vip.gif (easylistchina+easylist.txt: 2345) +# ||bx0635.com/tx/vip.gif (easylistchina.txt: 2330) .bx0635.com/tx/vip\.gif -# ||bx0635.com/downimg/ban.gif (easylistchina+easylist.txt: 2344) +# ||bx0635.com/downimg/ban.gif (easylistchina.txt: 2329) .bx0635.com/downimg/ban\.gif -# ||bx0635.com/downimg/2000.gif (easylistchina+easylist.txt: 2343) +# ||bx0635.com/downimg/2000.gif (easylistchina.txt: 2328) .bx0635.com/downimg/2000\.gif -# ||buzzhand.com/images/$subdocument (easylistchina+easylist.txt: 2342) +# ||buzzhand.com/images/$subdocument (easylistchina.txt: 2327) .buzzhand.com/images/ -# ||buytong.cn/images/*%*.swf (easylistchina+easylist.txt: 2341) +# ||buytong.cn/images/*%*.swf (easylistchina.txt: 2326) .buytong.cn/images/.*%.*\.swf -# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina+easylist.txt: 2340) +# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina.txt: 2325) .buyhouse.yam.com/plugin/newsplugin\.php -# ||buy.sina.com.tw/js/sina_popup.php (easylistchina+easylist.txt: 2339) +# ||buy.sina.com.tw/js/sina_popup.php (easylistchina.txt: 2324) .buy.sina.com.tw/js/sina_popup\.php -# ||business.92wy.com^ (easylistchina+easylist.txt: 2338) +# ||business.92wy.com^ (easylistchina.txt: 2323) .business.92wy.com -# ||bunnybee.com.tw/bee/$subdocument (easylistchina+easylist.txt: 2337) +# ||bunnybee.com.tw/bee/$subdocument (easylistchina.txt: 2322) .bunnybee.com.tw/bee/ -# ||bukade.com/tpl/2/loading.html (easylistchina+easylist.txt: 2336) +# ||bukade.com/tpl/2/loading.html (easylistchina.txt: 2321) .bukade.com/tpl/2/loading\.html -# ||bukade.com/js/tj2.js (easylistchina+easylist.txt: 2335) +# ||bukade.com/js/tj2.js (easylistchina.txt: 2320) .bukade.com/js/tj2\.js -# ||bukade.com/js/b_ (easylistchina+easylist.txt: 2334) +# ||bukade.com/js/b_ (easylistchina.txt: 2319) .bukade.com/js/b_ -# ||bukade.com/js/*_p_ (easylistchina+easylist.txt: 2333) +# ||bukade.com/js/*_p_ (easylistchina.txt: 2318) .bukade.com/js/.*_p_ -# ||bttiantang.cc/static/wen (easylistchina+easylist.txt: 2332) +# ||bttiantang.cc/static/wen (easylistchina.txt: 2317) .bttiantang.cc/static/wen -# ||bttiantang.cc/static/*quan.js (easylistchina+easylist.txt: 2331) +# ||bttiantang.cc/static/*quan.js (easylistchina.txt: 2316) .bttiantang.cc/static/.*quan\.js -# ||btshark.com/static/img/*300x250. (easylistchina+easylist.txt: 2330) +# ||btshark.com/static/img/*300x250. (easylistchina.txt: 2315) .btshark.com/static/img/.*300x250\. -# ||btn.pchome.net^ (easylistchina+easylist.txt: 2329) +# ||btn.pchome.net^ (easylistchina.txt: 2314) .btn.pchome.net -# ||btn.onlylady.com^ (easylistchina+easylist.txt: 2328) +# ||btn.onlylady.com^ (easylistchina.txt: 2313) .btn.onlylady.com -# ||btkuaisou.com/ac/ (easylistchina+easylist.txt: 2327) +# ||btkuaisou.com/ac/ (easylistchina.txt: 2312) .btkuaisou.com/ac/ -# ||btks.me/pingbi (easylistchina+easylist.txt: 2326) +# ||btks.me/pingbi (easylistchina.txt: 2311) .btks.me/pingbi -# ||btks.me/js/ac (easylistchina+easylist.txt: 2325) +# ||btks.me/js/ac (easylistchina.txt: 2310) .btks.me/js/ac -# ||btks.me/ac/ (easylistchina+easylist.txt: 2324) +# ||btks.me/ac/ (easylistchina.txt: 2309) .btks.me/ac/ -# ||bthand.com/static/650-80.swf (easylistchina+easylist.txt: 2323) +# ||bthand.com/static/650-80.swf (easylistchina.txt: 2308) .bthand.com/static/650-80\.swf -# ||btcherry.com/images/gaoqing.png (easylistchina+easylist.txt: 2322) +# ||btcherry.com/images/gaoqing.png (easylistchina.txt: 2307) .btcherry.com/images/gaoqing\.png -# ||btcherry.com/images/ad_ (easylistchina+easylist.txt: 2321) +# ||btcherry.com/images/ad_ (easylistchina.txt: 2306) .btcherry.com/images/ad_ -# ||btbook.net/static/img/880X60.gif (easylistchina+easylist.txt: 2320) +# ||btbook.net/static/img/880X60.gif (easylistchina.txt: 2305) .btbook.net/static/img/880X60\.gif -# ||btbbt.cc/jslb.js (easylistchina+easylist.txt: 2319) +# ||btbbt.cc/jslb.js (easylistchina.txt: 2304) .btbbt.cc/jslb\.js -# ||btago.com/static/banner/ (easylistchina+easylist.txt: 2318) +# ||btago.com/static/banner/ (easylistchina.txt: 2303) .btago.com/static/banner/ -# ||bt977.com/Public/images/ad (easylistchina+easylist.txt: 2317) +# ||bt977.com/Public/images/ad (easylistchina.txt: 2302) .bt977.com/Public/images/ad -# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina+easylist.txt: 2316) +# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina.txt: 2301) .bt1023.com/tpl/template/image/guanggao1\.gif -# ||bs028.com/js/inc/ (easylistchina+easylist.txt: 2315) +# ||bs028.com/js/inc/ (easylistchina.txt: 2300) .bs028.com/js/inc/ -# ||bs.baidu.com/app-ads% (easylistchina+easylist.txt: 2314) +# ||bs.baidu.com/app-ads% (easylistchina.txt: 2299) .bs.baidu.com/app-ads% -# ||brand.sogou.com/micro?yyid= (easylistchina+easylist.txt: 2313) +# ||brand.sogou.com/micro?yyid= (easylistchina.txt: 2298) .brand.sogou.com/micro\?yyid= -# ||br42.com/ads/ (easylistchina+easylist.txt: 2312) -.br42.com/ads/ -# ||books.com.tw/web/apActivityStick? (easylistchina+easylist.txt: 2310) +# ||books.com.tw/web/apActivityStick? (easylistchina.txt: 2296) .books.com.tw/web/apActivityStick\? -# ||bookgew.com/zj85/ (easylistchina+easylist.txt: 2309) +# ||bookgew.com/zj85/ (easylistchina.txt: 2295) .bookgew.com/zj85/ -# ||bookgew.com/ml85/ (easylistchina+easylist.txt: 2308) +# ||bookgew.com/ml85/ (easylistchina.txt: 2294) .bookgew.com/ml85/ -# ||bookgew.com/hz1/tcby.js (easylistchina+easylist.txt: 2307) +# ||bookgew.com/hz1/tcby.js (easylistchina.txt: 2293) .bookgew.com/hz1/tcby\.js -# ||bookabc.net/js/xian (easylistchina+easylist.txt: 2306) +# ||bookbao.cc/js/ (easylistchina.txt: 2292) +.bookbao.cc/js/ +# ||bookabc.net/js/xian (easylistchina.txt: 2291) .bookabc.net/js/xian -# ||bookabc.net/js/tt.js (easylistchina+easylist.txt: 2305) +# ||bookabc.net/js/tt.js (easylistchina.txt: 2290) .bookabc.net/js/tt\.js -# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina+easylist.txt: 2304) +# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina.txt: 2289) .bomb01.com/fancybox/jquery\.fancybox\. -# ||bo816.com/img/luyilu.gif (easylistchina+easylist.txt: 2303) -.bo816.com/img/luyilu\.gif -# ||bnext.com.tw/static/web/all.js (easylistchina+easylist.txt: 2302) +# ||bnext.com.tw/static/web/all.js (easylistchina.txt: 2288) .bnext.com.tw/static/web/all\.js -# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina+easylist.txt: 2301) +# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina.txt: 2287) .bmp1.ali213.net/pubjs/index_sc_utf8\.js -# ||bmp1.ali213.net/js/ (easylistchina+easylist.txt: 2300) +# ||bmp1.ali213.net/js/ (easylistchina.txt: 2286) .bmp1.ali213.net/js/ -# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina+easylist.txt: 2299) +# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina.txt: 2285) .bmp.ali213.net/pubjs/SetScreen\.js -# ||bmp.ali213.net/js/ (easylistchina+easylist.txt: 2298) +# ||bmp.ali213.net/js/ (easylistchina.txt: 2284) .bmp.ali213.net/js/ -# ||blueidea.com/js/ajs.js (easylistchina+easylist.txt: 2297) +# ||blueidea.com/js/ajs.js (easylistchina.txt: 2283) .blueidea.com/js/ajs\.js -# ||blueidea.com/2012/sdong/sdo.gif (easylistchina+easylist.txt: 2296) +# ||blueidea.com/2012/sdong/sdo.gif (easylistchina.txt: 2282) .blueidea.com/2012/sdong/sdo\.gif -# ||blogspot.com^*/s1600/orig.gif (easylistchina+easylist.txt: 2295) +# ||blogspot.com^*/s1600/orig.gif (easylistchina.txt: 2281) .blogspot.com/.*/s1600/orig\.gif -# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina+easylist.txt: 2294) +# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina.txt: 2280) .blog.tianya.cn/tuijian/tanchu\.js -# ||blog.china.com/u/dvpush/$subdocument (easylistchina+easylist.txt: 2293) +# ||blog.china.com/u/dvpush/$subdocument (easylistchina.txt: 2279) .blog.china.com/u/dvpush/ -# ||blog.51cto.com/js/poptop.js (easylistchina+easylist.txt: 2292) +# ||blog.51cto.com/js/poptop.js (easylistchina.txt: 2278) .blog.51cto.com/js/poptop\.js -# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina+easylist.txt: 2291) +# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina.txt: 2277) .bkjia.com/bkjia/js/subnavtop\.js -# ||bkjia.com/bkjia/js/banner (easylistchina+easylist.txt: 2290) +# ||bkjia.com/bkjia/js/banner (easylistchina.txt: 2276) .bkjia.com/bkjia/js/banner -# ||bkjia.com/bkjia/js/art_rightad (easylistchina+easylist.txt: 2289) +# ||bkjia.com/bkjia/js/art_rightad (easylistchina.txt: 2275) .bkjia.com/bkjia/js/art_rightad -# ||bkill.com/images/di.js (easylistchina+easylist.txt: 2288) +# ||bkill.com/images/di.js (easylistchina.txt: 2274) .bkill.com/images/di\.js -# ||bkill.com/css/abc/ (easylistchina+easylist.txt: 2287) +# ||bkill.com/css/abc/ (easylistchina.txt: 2273) .bkill.com/css/abc/ -# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina+easylist.txt: 2286) +# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina.txt: 2272) .bjxxw.com/themes/portal/local/special_.*\.swf -# ||bjmxw.net/bd/ (easylistchina+easylist.txt: 2285) +# ||bjmxw.net/bd/ (easylistchina.txt: 2271) .bjmxw.net/bd/ -# ||bjmama.net/a/spc_ (easylistchina+easylist.txt: 2284) +# ||bjmama.net/a/spc_ (easylistchina.txt: 2270) .bjmama.net/a/spc_ -# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina+easylist.txt: 2283) +# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina.txt: 2269) .bjhjyd.gov.cn/templates/default/www/js/float\.js -# ||biz37.net^*.swf?uid= (easylistchina+easylist.txt: 2282) +# ||biz37.net^*.swf?uid= (easylistchina.txt: 2268) .biz37.net/.*\.swf\?uid= -# ||biz.weibo.com^ (easylistchina+easylist.txt: 2281) +# ||biz.weibo.com^ (easylistchina.txt: 2267) .biz.weibo.com -# ||biz.lyd.com.cn/20 (easylistchina+easylist.txt: 2280) +# ||biz.lyd.com.cn/20 (easylistchina.txt: 2266) .biz.lyd.com.cn/20 -# ||biz.gexing.com^ (easylistchina+easylist.txt: 2279) +# ||biz.gexing.com^ (easylistchina.txt: 2265) .biz.gexing.com -# ||biz*.sandai.net^ (easylistchina+easylist.txt: 2278) +# ||biz*.sandai.net^ (easylistchina.txt: 2264) .biz*./.*\.sandai\.net[^\w%.-] .biz*.sandai.net -# ||bitscn.com/js/a2 (easylistchina+easylist.txt: 2277) +# ||bitscn.com/js/a2 (easylistchina.txt: 2263) .bitscn.com/js/a2 -# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina+easylist.txt: 2276) +# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina.txt: 2262) .bitautoimg.com/ResourceFiles/0/3/167/20151207103257620\.jpg -# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina+easylist.txt: 2275) +# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina.txt: 2261) .bitautoimg.com/ResourceFiles/0/.*\.swf -# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina+easylist.txt: 2274) +# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina.txt: 2260) .bitautoimg.com/ResourceFiles/0/.*\.gif -# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina+easylist.txt: 2273) +# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina.txt: 2259) .bitauto.com/ResourceFiles/play/play\.swf -# ||bitauto.com/js/sense*.js (easylistchina+easylist.txt: 2272) +# ||bitauto.com/js/sense*.js (easylistchina.txt: 2258) .bitauto.com/js/sense.*\.js -# ||biquge5.com/jquery/ (easylistchina+easylist.txt: 2271) +# ||biquge5.com/jquery/ (easylistchina.txt: 2257) .biquge5.com/jquery/ -# ||biquge.so/kinpo/% (easylistchina+easylist.txt: 2270) +# ||biquge.so/kinpo/% (easylistchina.txt: 2256) .biquge.so/kinpo/% -# ||biqi.me/Public/js/page_gg_ (easylistchina+easylist.txt: 2269) +# ||biqi.me/Public/js/page_gg_ (easylistchina.txt: 2255) .biqi.me/Public/js/page_gg_ -# ||biqi.me/Public/js/page_ad_ (easylistchina+easylist.txt: 2268) +# ||biqi.me/Public/js/page_ad_ (easylistchina.txt: 2254) .biqi.me/Public/js/page_ad_ -# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina+easylist.txt: 2267) +# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina.txt: 2253) .bio-equip.com/uploadimages/peiqing\.gif -# ||bio-equip.com/images/esco06.swf (easylistchina+easylist.txt: 2266) +# ||bio-equip.com/images/esco06.swf (easylistchina.txt: 2252) .bio-equip.com/images/esco06\.swf -# ||bio-equip.com/dimgs/ (easylistchina+easylist.txt: 2265) +# ||bio-equip.com/dimgs/ (easylistchina.txt: 2251) .bio-equip.com/dimgs/ -# ||bio-equip.com/dimg/ (easylistchina+easylist.txt: 2264) +# ||bio-equip.com/dimg/ (easylistchina.txt: 2250) .bio-equip.com/dimg/ -# ||binhuo.com/bhjs/ (easylistchina+easylist.txt: 2263) +# ||binhuo.com/bhjs/ (easylistchina.txt: 2249) .binhuo.com/bhjs/ -# ||bh111.com/js/tan_ (easylistchina+easylist.txt: 2262) +# ||bh111.com/js/tan_ (easylistchina.txt: 2248) .bh111.com/js/tan_ -# ||bh111.com/flash/*+ (easylistchina+easylist.txt: 2261) +# ||bh111.com/flash/*+ (easylistchina.txt: 2247) .bh111.com/flash/.*\+ -# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina+easylist.txt: 2260) +# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina.txt: 2246) .bfpgf.com/wp-content/uploads/2015/08/360dxs\.jpg -# ||bforu.info/images/ali.gif (easylistchina+easylist.txt: 2259) +# ||bforu.info/images/ali.gif (easylistchina.txt: 2245) .bforu.info/images/ali\.gif -# ||bforu.info/03.jpg (easylistchina+easylist.txt: 2258) +# ||bforu.info/03.jpg (easylistchina.txt: 2244) .bforu.info/03\.jpg -# ||bfooru.info/images/*.gif (easylistchina+easylist.txt: 2257) +# ||bfooru.info/images/*.gif (easylistchina.txt: 2243) .bfooru.info/images/.*\.gif -# ||bfooru.info/03.jpg (easylistchina+easylist.txt: 2256) +# ||bfooru.info/03.jpg (easylistchina.txt: 2242) .bfooru.info/03\.jpg -# ||bestxl.com/langzi/0403/ld.jpg (easylistchina+easylist.txt: 2255) -.bestxl.com/langzi/0403/ld\.jpg -# ||bestvogue.com/fans/ (easylistchina+easylist.txt: 2254) +# ||bestvogue.com/fans/ (easylistchina.txt: 2241) .bestvogue.com/fans/ -# ||besc.baidustatic.com^ (easylistchina+easylist.txt: 2253) +# ||besc.baidustatic.com^ (easylistchina.txt: 2240) .besc.baidustatic.com -# ||bendibao.com/mo/adm_iframe.htm? (easylistchina+easylist.txt: 2252) +# ||bendibao.com/mo/adm_iframe.htm? (easylistchina.txt: 2239) .bendibao.com/mo/adm_iframe\.htm\? -# ||bendibao.com*/tuangou.gif (easylistchina+easylist.txt: 2251) +# ||bendibao.com*/tuangou.gif (easylistchina.txt: 2238) .bendibao.com*./(.*/)?tuangou\.gif -# ||bejson.com/imgs/tuo.png (easylistchina+easylist.txt: 2250) +# ||bejson.com/imgs/tuo.png (easylistchina.txt: 2237) .bejson.com/imgs/tuo\.png -# ||bejson.com/imgs/qiniu (easylistchina+easylist.txt: 2249) +# ||bejson.com/imgs/qiniu (easylistchina.txt: 2236) .bejson.com/imgs/qiniu -# ||bejson.com/imgs/j950-90.jpg (easylistchina+easylist.txt: 2248) +# ||bejson.com/imgs/j950-90.jpg (easylistchina.txt: 2235) .bejson.com/imgs/j950-90\.jpg -# ||bejson.com/imgs/beifen (easylistchina+easylist.txt: 2247) +# ||bejson.com/imgs/beifen (easylistchina.txt: 2234) .bejson.com/imgs/beifen -# ||beiwo.tv/Runtime/js/list01.js (easylistchina+easylist.txt: 2246) +# ||beiwo.tv/Runtime/js/list01.js (easylistchina.txt: 2233) .beiwo.tv/Runtime/js/list01\.js -# ||beijing-air.com/images/a/j (easylistchina+easylist.txt: 2245) +# ||beijing-air.com/images/a/j (easylistchina.txt: 2232) .beijing-air.com/images/a/j -# ||bego.cc/img/ (easylistchina+easylist.txt: 2244) +# ||bego.cc/img/ (easylistchina.txt: 2231) .bego.cc/img/ -# ||beephone.com.tw/ad-yahoo.php (easylistchina+easylist.txt: 2243) +# ||beephone.com.tw/ad-yahoo.php (easylistchina.txt: 2230) .beephone.com.tw/ad-yahoo\.php -# ||beephone.com.tw/ad-middle.php (easylistchina+easylist.txt: 2242) +# ||beephone.com.tw/ad-middle.php (easylistchina.txt: 2229) .beephone.com.tw/ad-middle\.php -# ||beareyes.com.cn^*/ad/ (easylistchina+easylist.txt: 2241) +# ||beareyes.com.cn^*/ad/ (easylistchina.txt: 2228) .beareyes.com.cn/.*/ad/ -# ||beanfun.com/playweb/adpicpage.htm (easylistchina+easylist.txt: 2240) +# ||beanfun.com/playweb/adpicpage.htm (easylistchina.txt: 2227) .beanfun.com/playweb/adpicpage\.htm -# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina+easylist.txt: 2239) +# ||bdstatic.com^*/tam-ogel/ (easylistchina.txt: 2226) +.bdstatic.com/.*/tam-ogel/ +# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina.txt: 2225) .bdstatic.com/tb/zt/tengfei/gzdialog\.jpg -# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina+easylist.txt: 2238) +# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina.txt: 2224) .bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f\.jpg -# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina+easylist.txt: 2237) +# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina.txt: 2223) .bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac\.jpg -# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina+easylist.txt: 2236) +# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina.txt: 2222) .bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ -# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina+easylist.txt: 2235) +# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina.txt: 2221) .bdstatic.com/tb/cms/ngmis/file_1417585299140\.jpg -# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina+easylist.txt: 2234) +# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina.txt: 2220) .bdstatic.com/tb/cms/ngmis/file_1417585294569\.jpg -# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina+easylist.txt: 2233) +# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina.txt: 2219) .bdstatic.com/tb/cms/img/tieba_index_banner960x90\.png -# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina+easylist.txt: 2232) +# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina.txt: 2218) .bdstatic.com/tb/cms/forum_skin/file_1442399443261\.jpg -# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina+easylist.txt: 2231) +# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina.txt: 2217) .bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api\.js -# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina+easylist.txt: 2230) +# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina.txt: 2216) .bdstatic.com/tb/cms/com/game/couplet_ -# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina+easylist.txt: 2229) +# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina.txt: 2215) .bdstatic.com/tb/cms/activity_head/file_ -# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina+easylist.txt: 2228) +# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina.txt: 2214) .bdstatic.com/tb/%E8%B4%B4%E5%90%A7- -# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina+easylist.txt: 2227) +# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina.txt: 2213) .bdstatic.com/static/article/widget/left-promo/ -# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina+easylist.txt: 2226) +# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina.txt: 2212) .bdstatic.com/player/t/j/TvKa94eY\.js -# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina+easylist.txt: 2225) +# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina.txt: 2211) .bdstatic.com/player/t/j/Cj2XuDf6\.js -# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina+easylist.txt: 2224) +# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina.txt: 2210) .bdstatic.com/player/t/j/AEoIJIPB\.js -# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina+easylist.txt: 2223) +# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina.txt: 2209) .bdstatic.com/pc_static/detail/game_promotion/ -# ||bdstatic.com/img/image/su/ (easylistchina+easylist.txt: 2222) +# ||bdstatic.com/img/image/su/ (easylistchina.txt: 2208) .bdstatic.com/img/image/su/ -# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina+easylist.txt: 2221) +# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina.txt: 2207) .bdstatic.com/api_hao123AdvHeader\.js -# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina+easylist.txt: 2220) +# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina.txt: 2206) .bdinfo.net/bdinfo_skin/xlsgg\.js -# ||bdimg.com/site/games/yxtg/*.js (easylistchina+easylist.txt: 2219) +# ||bdimg.com/site/games/yxtg/*.js (easylistchina.txt: 2205) .bdimg.com/site/games/yxtg/.*\.js -# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina+easylist.txt: 2218) +# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina.txt: 2204) .bdimg.com/newmap/static/common/images/nav-ad_ -# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina+easylist.txt: 2217) +# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina.txt: 2203) .bdimg.com/brands/yxtg/source/juhe-v2\.js -# ||bcok.com^$subdocument (easylistchina+easylist.txt: 2216) +# ||bcok.com^$subdocument (easylistchina.txt: 2202) .bcok.com -# ||bccn.net/aaa/ (easylistchina+easylist.txt: 2215) +# ||bccn.net/aaa/ (easylistchina.txt: 2201) .bccn.net/aaa/ -# ||bcc.com.tw/imgs/adv/ (easylistchina+easylist.txt: 2214) +# ||bcc.com.tw/imgs/adv/ (easylistchina.txt: 2200) .bcc.com.tw/imgs/adv/ -# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina+easylist.txt: 2213) +# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina.txt: 2199) .bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c\.jpg -# ||bbs.xiashanet.com/js/adsview.js (easylistchina+easylist.txt: 2212) +# ||bbs.xiashanet.com/js/adsview.js (easylistchina.txt: 2198) .bbs.xiashanet.com/js/adsview\.js -# ||bbs.xbaodi.com/plugin.php (easylistchina+easylist.txt: 2211) +# ||bbs.xbaodi.com/plugin.php (easylistchina.txt: 2197) .bbs.xbaodi.com/plugin\.php -# ||bbs.winning11cn.com/temp/*.gif (easylistchina+easylist.txt: 2210) +# ||bbs.winning11cn.com/temp/*.gif (easylistchina.txt: 2196) .bbs.winning11cn.com/temp/.*\.gif -# ||bbs.voc.com.cn/s.js (easylistchina+easylist.txt: 2209) +# ||bbs.voc.com.cn/s.js (easylistchina.txt: 2195) .bbs.voc.com.cn/s\.js -# ||bbs.hotavxxx.com/images/201*.gif (easylistchina+easylist.txt: 2208) +# ||bbs.hotavxxx.com/images/201*.gif (easylistchina.txt: 2194) .bbs.hotavxxx.com/images/201.*\.gif -# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina+easylist.txt: 2207) +# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina.txt: 2193) .bbs.fengbao.com/image/bingzuan925X80\.jpg -# ||bbs.a9vg.com/showit/img_show.php (easylistchina+easylist.txt: 2206) +# ||bbs.a9vg.com/showit/img_show.php (easylistchina.txt: 2192) .bbs.a9vg.com/showit/img_show\.php -# ||bb345.com^ (easylistchina+easylist.txt: 2205) -.bb345.com -# ||baoshewang.com/img/head.js (easylistchina+easylist.txt: 2204) -.baoshewang.com/img/head\.js -# ||baoshewang.com/img/gg.js (easylistchina+easylist.txt: 2203) -.baoshewang.com/img/gg\.js -# ||baoshewang.com/img/bottom.js (easylistchina+easylist.txt: 2202) -.baoshewang.com/img/bottom\.js -# ||baoliny.com/js/jing.js (easylistchina+easylist.txt: 2201) +# ||baoliny.com/js/jing.js (easylistchina.txt: 2191) .baoliny.com/js/jing\.js -# ||baofeng.com/src/ad.js (easylistchina+easylist.txt: 2200) +# ||baofeng.com/src/ad.js (easylistchina.txt: 2190) .baofeng.com/src/ad\.js -# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina+easylist.txt: 2199) +# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina.txt: 2189) .bang5mai.com/upload/plugin/assets/main/js/b5m\.adv\.js -# ||bamuyu.com/skin/js/bgad.js (easylistchina+easylist.txt: 2198) +# ||bamuyu.com/skin/js/bgad.js (easylistchina.txt: 2188) .bamuyu.com/skin/js/bgad\.js -# ||ballive.com/addm/ (easylistchina+easylist.txt: 2197) +# ||ballive.com/addm/ (easylistchina.txt: 2187) .ballive.com/addm/ -# ||baiy.net:88/a/ (easylistchina+easylist.txt: 2196) +# ||baiy.net:88/a/ (easylistchina.txt: 2186) .baiy.net:88/a/ -# ||baixing.com/bb/*/?category= (easylistchina+easylist.txt: 2195) +# ||baixing.com/bb/*/?category= (easylistchina.txt: 2185) .baixing.com/bb/.*/\?category= -# ||baishulou.net/html/ (easylistchina+easylist.txt: 2194) +# ||baishulou.net/html/ (easylistchina.txt: 2184) .baishulou.net/html/ -# ||baishuku.com/news/$script (easylistchina+easylist.txt: 2193) +# ||baishuku.com/news/$script (easylistchina.txt: 2183) .baishuku.com/news/ -# ||baike.com/iframeheightforad. (easylistchina+easylist.txt: 2192) +# ||baike.com/iframeheightforad. (easylistchina.txt: 2182) .baike.com/iframeheightforad\. -# ||baike.com/3g/ads/ (easylistchina+easylist.txt: 2191) +# ||baike.com/3g/ads/ (easylistchina.txt: 2181) .baike.com/3g/ads/ -# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina+easylist.txt: 2190) +# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina.txt: 2180) .baifen.music.baidu.com/api/v1/.*\?format=jsonp& -# ||baidud.cn/aoao/down_ (easylistchina+easylist.txt: 2189) +# ||baidud.cn/aoao/down_ (easylistchina.txt: 2179) .baidud.cn/aoao/down_ -# ||baidu.com^*/interface/ad? (easylistchina+easylist.txt: 2188) +# ||baidu.com^*/interface/ad? (easylistchina.txt: 2178) .baidu.com/.*/interface/ad\? -# ||baidu.com/WerbungAjax/getTonglan? (easylistchina+easylist.txt: 2186) +# ||baidu.com/WerbungAjax/getTonglan? (easylistchina.txt: 2176) .baidu.com/WerbungAjax/getTonglan\? -# ||baidu.com/WerbungAjax/getBeitou? (easylistchina+easylist.txt: 2185) +# ||baidu.com/WerbungAjax/getBeitou? (easylistchina.txt: 2175) .baidu.com/WerbungAjax/getBeitou\? -# ||baidu.com/videoapi/?*_ad_promote& (easylistchina+easylist.txt: 2184) +# ||baidu.com/videoapi/?*_ad_promote& (easylistchina.txt: 2174) .baidu.com/videoapi/\?.*_ad_promote& -# ||baidu.com/videoadv.js (easylistchina+easylist.txt: 2183) +# ||baidu.com/videoadv.js (easylistchina.txt: 2173) .baidu.com/videoadv\.js -# ||baidu.com/ur/scun?di=contentunion (easylistchina+easylist.txt: 2182) +# ||baidu.com/ur/scun?di=contentunion (easylistchina.txt: 2172) .baidu.com/ur/scun\?di=contentunion -# ||baidu.com/tbliveact/data/xiu8/ (easylistchina+easylist.txt: 2181) +# ||baidu.com/tequan/adpadmin_feed/ (easylistchina.txt: 2171) +.baidu.com/tequan/adpadmin_feed/ +# ||baidu.com/tbliveact/data/xiu8/ (easylistchina.txt: 2170) .baidu.com/tbliveact/data/xiu8/ -# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina+easylist.txt: 2180) +# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina.txt: 2169) .baidu.com/tb/zt/wen_da_pc\.html -# ||baidu.com/tb/zt/spread/ (easylistchina+easylist.txt: 2179) +# ||baidu.com/tb/zt/spread/ (easylistchina.txt: 2168) .baidu.com/tb/zt/spread/ -# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina+easylist.txt: 2178) +# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina.txt: 2167) .baidu.com/tb/static-common/swf/worldcup_main\.swf -# ||baidu.com/tb/cms/game/*_banner_ (easylistchina+easylist.txt: 2177) +# ||baidu.com/tb/cms/game/*_banner_ (easylistchina.txt: 2166) .baidu.com/tb/cms/game/.*_banner_ -# ||baidu.com/tb/cms/game/*_banner. (easylistchina+easylist.txt: 2176) +# ||baidu.com/tb/cms/game/*_banner. (easylistchina.txt: 2165) .baidu.com/tb/cms/game/.*_banner\. -# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina+easylist.txt: 2175) +# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina.txt: 2164) .baidu.com/tb/cms/forum_skin/file_ -# ||baidu.com/staticapi/misadlist. (easylistchina+easylist.txt: 2174) +# ||baidu.com/staticapi/misadlist. (easylistchina.txt: 2163) .baidu.com/staticapi/misadlist\. -# ||baidu.com/staticapi/hotnews_new. (easylistchina+easylist.txt: 2173) +# ||baidu.com/staticapi/hotnews_new. (easylistchina.txt: 2162) .baidu.com/staticapi/hotnews_new\. -# ||baidu.com/static/yuntu-ad/ (easylistchina+easylist.txt: 2172) +# ||baidu.com/static/yuntu-ad/ (easylistchina.txt: 2161) .baidu.com/static/yuntu-ad/ -# ||baidu.com/static/html/cbjs.html (easylistchina+easylist.txt: 2171) +# ||baidu.com/static/html/cbjs.html (easylistchina.txt: 2160) .baidu.com/static/html/cbjs\.html -# ||baidu.com/showbrand/sponsor_ (easylistchina+easylist.txt: 2170) +# ||baidu.com/showbrand/sponsor_ (easylistchina.txt: 2159) .baidu.com/showbrand/sponsor_ -# ||baidu.com/showbrand/banner_ (easylistchina+easylist.txt: 2169) +# ||baidu.com/showbrand/banner_ (easylistchina.txt: 2158) .baidu.com/showbrand/banner_ -# ||baidu.com/show/livevideo/getStreamConf? (easylistchina+easylist.txt: 2168) +# ||baidu.com/show/livevideo/getStreamConf? (easylistchina.txt: 2157) .baidu.com/show/livevideo/getStreamConf\? -# ||baidu.com/rmaAjax/getGame? (easylistchina+easylist.txt: 2167) +# ||baidu.com/rmaAjax/getGame? (easylistchina.txt: 2156) .baidu.com/rmaAjax/getGame\? -# ||baidu.com/resource/tuisong/ (easylistchina+easylist.txt: 2166) +# ||baidu.com/resource/tuisong/ (easylistchina.txt: 2155) .baidu.com/resource/tuisong/ -# ||baidu.com/resource/baichuan/ (easylistchina+easylist.txt: 2165) +# ||baidu.com/resource/baichuan/ (easylistchina.txt: 2154) .baidu.com/resource/baichuan/ -# ||baidu.com/resource/ads/ (easylistchina+easylist.txt: 2164) +# ||baidu.com/resource/ads/ (easylistchina.txt: 2153) .baidu.com/resource/ads/ -# ||baidu.com/img/iknow/wenku*85. (easylistchina+easylist.txt: 2163) +# ||baidu.com/img/iknow/wenku*85. (easylistchina.txt: 2152) .baidu.com/img/iknow/wenku.*85\. -# ||baidu.com/game/asset/common/performance. (easylistchina+easylist.txt: 2162) +# ||baidu.com/game/asset/common/performance. (easylistchina.txt: 2151) .baidu.com/game/asset/common/performance\. -# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina+easylist.txt: 2161) +# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina.txt: 2150) .baidu.com/fanyiapp/image/wise_banner_ -# ||baidu.com/event/img/zwdzjs.jpg (easylistchina+easylist.txt: 2160) +# ||baidu.com/event/img/zwdzjs.jpg (easylistchina.txt: 2149) .baidu.com/event/img/zwdzjs\.jpg -# ||baidu.com/ecom$image,script (easylistchina+easylist.txt: 2159) +# ||baidu.com/ecom$image,script (easylistchina.txt: 2148) .baidu.com/ecom -# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina+easylist.txt: 2158) +# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina.txt: 2147) .baidu.com/cms/rc/adSideConfig\.json\? -# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina+easylist.txt: 2157) +# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina.txt: 2146) .baidu.com/brands/yxtg/source/yxCoupletsAd\.js -# ||baidu.com/api/proxyapi?tag=adv& (easylistchina+easylist.txt: 2156) +# ||baidu.com/api/proxyapi?tag=adv& (easylistchina.txt: 2145) .baidu.com/api/proxyapi\?tag=adv& -# ||badmintoncn.com/cbo_gg/ (easylistchina+easylist.txt: 2155) +# ||badmintoncn.com/cbo_gg/ (easylistchina.txt: 2143) .badmintoncn.com/cbo_gg/ -# ||backchina.com/banners/ (easylistchina+easylist.txt: 2154) +# ||backchina.com/banners/ (easylistchina.txt: 2142) .backchina.com/banners/ -# ||babytreeimg.com/img/promo/ (easylistchina+easylist.txt: 2153) +# ||babytreeimg.com/img/promo/ (easylistchina.txt: 2141) .babytreeimg.com/img/promo/ -# ||babyhome.com.tw/slot_gateway.php? (easylistchina+easylist.txt: 2152) +# ||babyhome.com.tw/slot_gateway.php? (easylistchina.txt: 2140) .babyhome.com.tw/slot_gateway\.php\? -# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina+easylist.txt: 2151) +# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina.txt: 2139) .babyhome.com.tw/lib/iframe\.php\?u= -# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina+easylist.txt: 2150) +# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina.txt: 2138) .babyhome.com.tw/2015/mid_autumn/ -# ||baby-kingdom.com/reqwads? (easylistchina+easylist.txt: 2149) +# ||baby-kingdom.com/reqwads? (easylistchina.txt: 2137) .baby-kingdom.com/reqwads\? -# ||baby-kingdom.com/reqsads? (easylistchina+easylist.txt: 2148) +# ||baby-kingdom.com/reqsads? (easylistchina.txt: 2136) .baby-kingdom.com/reqsads\? -# ||b5m.com/static/html/*/popup.html? (easylistchina+easylist.txt: 2147) +# ||b5m.com/static/html/*/popup.html? (easylistchina.txt: 2135) .b5m.com/static/html/.*/popup\.html\? -# ||b5m.com/images/banner.jpg (easylistchina+easylist.txt: 2146) +# ||b5m.com/images/banner.jpg (easylistchina.txt: 2134) .b5m.com/images/banner\.jpg -# ||azhibo.com/images/2015/edge-bg.png (easylistchina+easylist.txt: 2145) +# ||azhibo.com/images/2015/edge-bg.png (easylistchina.txt: 2133) .azhibo.com/images/2015/edge-bg\.png -# ||ayxz.com/images/VStart.gif (easylistchina+easylist.txt: 2144) +# ||ayxz.com/images/VStart.gif (easylistchina.txt: 2132) .ayxz.com/images/VStart\.gif -# ||ayxz.com/images/enkj_small.gif (easylistchina+easylist.txt: 2143) +# ||ayxz.com/images/enkj_small.gif (easylistchina.txt: 2131) .ayxz.com/images/enkj_small\.gif -# ||ayxz.com/images/$script (easylistchina+easylist.txt: 2142) +# ||ayxz.com/images/$script (easylistchina.txt: 2130) .ayxz.com/images/ -# ||awaker.hk/wp-content/uploads/ok/ (easylistchina+easylist.txt: 2141) +# ||awaker.hk/wp-content/uploads/ok/ (easylistchina.txt: 2129) .awaker.hk/wp-content/uploads/ok/ -# ||avseesee.com/twad (easylistchina+easylist.txt: 2140) +# ||avseesee.com/twad (easylistchina.txt: 2128) .avseesee.com/twad -# ||avseesee.com/htmls/vlinks.html (easylistchina+easylist.txt: 2139) +# ||avseesee.com/htmls/vlinks.html (easylistchina.txt: 2127) .avseesee.com/htmls/vlinks\.html -# ||avseesee.com/amandison.php (easylistchina+easylist.txt: 2138) +# ||avseesee.com/amandison.php (easylistchina.txt: 2126) .avseesee.com/amandison\.php -# ||avonline.org/js/jquery.colorbox- (easylistchina+easylist.txt: 2137) +# ||avonline.org/js/jquery.colorbox- (easylistchina.txt: 2125) .avonline.org/js/jquery\.colorbox- -# ||avlang33.com/js/float.js (easylistchina+easylist.txt: 2136) +# ||avlang33.com/js/float.js (easylistchina.txt: 2124) .avlang33.com/js/float\.js -# ||avcity.twavtv.com/js/twavt.js (easylistchina+easylist.txt: 2135) +# ||avcity.twavtv.com/js/twavt.js (easylistchina.txt: 2123) .avcity.twavtv.com/js/twavt\.js -# ||av44.net/data/attachment/forum/*.gif (easylistchina+easylist.txt: 2134) -.av44.net/data/attachment/forum/.*\.gif -# ||av165.com/images/$third-party (easylistchina+easylist.txt: 2133) -.av165.com/images/ -# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina+easylist.txt: 2132) +# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina.txt: 2122) .autos.udn.com/topic/car/include/ad\.jsp -# ||autoimg.cn/engine/root/fggxl.js (easylistchina+easylist.txt: 2131) +# ||autoimg.cn/engine/root/fggxl.js (easylistchina.txt: 2121) .autoimg.cn/engine/root/fggxl\.js -# ||autoimg.cn/ad.js (easylistchina+easylist.txt: 2130) +# ||autoimg.cn/ad.js (easylistchina.txt: 2120) .autoimg.cn/ad\.js -# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina+easylist.txt: 2129) +# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina.txt: 2119) .autohome.com.cn/Ashx/public/HeaderLayerRecApp\.ashx\? -# ||autofan.com.cn/zhaoning/GG- (easylistchina+easylist.txt: 2128) +# ||autofan.com.cn/zhaoning/GG- (easylistchina.txt: 2118) .autofan.com.cn/zhaoning/GG- -# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina+easylist.txt: 2127) +# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina.txt: 2117) .autofan.com.cn/zhaoning/20.*\.jpg -# ||autofan.com.cn/zhaoning/*.gif (easylistchina+easylist.txt: 2126) +# ||autofan.com.cn/zhaoning/*.gif (easylistchina.txt: 2116) .autofan.com.cn/zhaoning/.*\.gif -# ||auto-online.com.tw/vendor_data/ (easylistchina+easylist.txt: 2125) +# ||auto-online.com.tw/vendor_data/ (easylistchina.txt: 2115) .auto-online.com.tw/vendor_data/ -# ||att.ydss.cn/attachments/portal/ (easylistchina+easylist.txt: 2124) +# ||att.ydss.cn/attachments/portal/ (easylistchina.txt: 2114) .att.ydss.cn/attachments/portal/ -# ||atm.youku.com^ (easylistchina+easylist.txt: 2123) +# ||atm.youku.com^ (easylistchina.txt: 2113) .atm.youku.com -# ||asxxg.cn/Public/config/Couplet/ (easylistchina+easylist.txt: 2122) +# ||asxxg.cn/Public/config/Couplet/ (easylistchina.txt: 2112) .asxxg.cn/Public/config/Couplet/ -# ||aspjzy.com/jsweb/js/ (easylistchina+easylist.txt: 2121) +# ||aspjzy.com/jsweb/js/ (easylistchina.txt: 2111) .aspjzy.com/jsweb/js/ -# ||asp300.com/2012js/ (easylistchina+easylist.txt: 2120) +# ||asp300.com/2012js/ (easylistchina.txt: 2110) .asp300.com/2012js/ -# ||asp300.com/2012adjs/ (easylistchina+easylist.txt: 2119) +# ||asp300.com/2012adjs/ (easylistchina.txt: 2109) .asp300.com/2012adjs/ -# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina+easylist.txt: 2118) +# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina.txt: 2108) .asimgs.pplive.cn -# ||asia-home.com.cn/js/yt/ytadshow (easylistchina+easylist.txt: 2117) +# ||asia-home.com.cn/js/yt/ytadshow (easylistchina.txt: 2107) .asia-home.com.cn/js/yt/ytadshow -# ||ashow.pcpop.com^ (easylistchina+easylist.txt: 2116) +# ||ashow.pcpop.com^ (easylistchina.txt: 2106) .ashow.pcpop.com -# ||as.sinahk.net^ (easylistchina+easylist.txt: 2115) +# ||as.sinahk.net^ (easylistchina.txt: 2105) .as.sinahk.net -# ||article.pchome.net/Index.php?c=Intel& (easylistchina+easylist.txt: 2114) +# ||article.pchome.net/Index.php?c=Intel& (easylistchina.txt: 2104) .article.pchome.net/Index\.php\?c=Intel& -# ||arpun.com/arpun/softinfo (easylistchina+easylist.txt: 2113) +# ||arpun.com/arpun/softinfo (easylistchina.txt: 2103) .arpun.com/arpun/softinfo -# ||ark.letv.com/s?vid= (easylistchina+easylist.txt: 2112) +# ||ark.letv.com/s?vid= (easylistchina.txt: 2102) .ark.letv.com/s\?vid= -# ||ark.letv.com/s?res= (easylistchina+easylist.txt: 2111) +# ||ark.letv.com/s?res= (easylistchina.txt: 2101) .ark.letv.com/s\?res= -# ||aqy103.com/js/aqy/ (easylistchina+easylist.txt: 2110) +# ||aqy103.com/js/aqy/ (easylistchina.txt: 2100) .aqy103.com/js/aqy/ -# ||aqy102.com/js/aqy/ (easylistchina+easylist.txt: 2109) +# ||aqy102.com/js/aqy/ (easylistchina.txt: 2099) .aqy102.com/js/aqy/ -# ||aqlife.com/data/attachment/portal/ (easylistchina+easylist.txt: 2108) +# ||aqlife.com/data/attachment/portal/ (easylistchina.txt: 2098) .aqlife.com/data/attachment/portal/ -# ||appinn.com^*/licaifan. (easylistchina+easylist.txt: 2107) +# ||appinn.com^*/licaifan. (easylistchina.txt: 2097) .appinn.com/.*/licaifan\. -# ||appinn.com/images/201509/wd.png (easylistchina+easylist.txt: 2106) +# ||appinn.com/images/201509/wd.png (easylistchina.txt: 2096) .appinn.com/images/201509/wd\.png -# ||app.acm.dzwww.com^ (easylistchina+easylist.txt: 2105) +# ||app.acm.dzwww.com^ (easylistchina.txt: 2095) .app.acm.dzwww.com -# ||app-g.39.net/NNN/ (easylistchina+easylist.txt: 2104) +# ||app-g.39.net/NNN/ (easylistchina.txt: 2094) .app-g.39.net/NNN/ -# ||apihousefun.yam.com/news.php (easylistchina+easylist.txt: 2103) +# ||apihousefun.yam.com/news.php (easylistchina.txt: 2093) .apihousefun.yam.com/news\.php -# ||aoye.cc/js/footer.js (easylistchina+easylist.txt: 2102) +# ||aoye.cc/js/footer.js (easylistchina.txt: 2092) .aoye.cc/js/footer\.js -# ||anywlan.com/link/xcloud.jpg (easylistchina+easylist.txt: 2101) +# ||anywlan.com/link/xcloud.jpg (easylistchina.txt: 2091) .anywlan.com/link/xcloud\.jpg -# ||anywlan.com/link/*.gif (easylistchina+easylist.txt: 2100) +# ||anywlan.com/link/*.gif (easylistchina.txt: 2090) .anywlan.com/link/.*\.gif -# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina+easylist.txt: 2099) +# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina.txt: 2089) .anquan.org/static/user_upload/zorro/.*/%E5%93% -# ||anquan.org/static/user_upload/*/cloud (easylistchina+easylist.txt: 2098) +# ||anquan.org/static/user_upload/*/cloud (easylistchina.txt: 2088) .anquan.org/static/user_upload/.*/cloud -# ||anquan.org/static/profile/images/qq-banner.png (easylistchina+easylist.txt: 2097) +# ||anquan.org/static/profile/images/qq-banner.png (easylistchina.txt: 2087) .anquan.org/static/profile/images/qq-banner\.png -# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina+easylist.txt: 2096) +# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina.txt: 2086) .anquan.org/static/auth/images/ppb_cert/qq-browser\.jpg -# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina+easylist.txt: 2095) +# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina.txt: 2085) .anhuinews.com/zhuyeguanli/.*ad/ -# ||anhuinews.com/include/ (easylistchina+easylist.txt: 2094) +# ||anhuinews.com/include/ (easylistchina.txt: 2084) .anhuinews.com/include/ -# ||angpic.3g.net.cn/ai/ (easylistchina+easylist.txt: 2093) +# ||angpic.3g.net.cn/ai/ (easylistchina.txt: 2083) .angpic.3g.net.cn/ai/ -# ||an7.tv/Runtime/js/ (easylistchina+easylist.txt: 2092) +# ||an7.tv/Runtime/js/ (easylistchina.txt: 2082) .an7.tv/Runtime/js/ -# ||amd.cn/yyets.js (easylistchina+easylist.txt: 2091) +# ||amd.cn/yyets.js (easylistchina.txt: 2081) .amd.cn/yyets\.js -# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina+easylist.txt: 2090) +# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina.txt: 2080) .am.zdnet.com.cn/www/images/ -# ||am.szhome.com^ (easylistchina+easylist.txt: 2089) +# ||am.szhome.com^ (easylistchina.txt: 2079) .am.szhome.com -# ||am.6park.com^ (easylistchina+easylist.txt: 2088) +# ||am.6park.com^ (easylistchina.txt: 2078) .am.6park.com -# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina+easylist.txt: 2087) +# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina.txt: 2077) .alu.cn/aluTrade/Fragments/ListAdvertisementProducts\. -# ||alu.cn/2011/images/conglin.gif (easylistchina+easylist.txt: 2086) +# ||alu.cn/2011/images/conglin.gif (easylistchina.txt: 2076) .alu.cn/2011/images/conglin\.gif -# ||alu.cn*/aluad/ (easylistchina+easylist.txt: 2085) +# ||alu.cn*/aluad/ (easylistchina.txt: 2075) .alu.cn*./(.*/)?aluad/ -# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina+easylist.txt: 2084) +# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina.txt: 2074) .allbeauty.com.tw/GoldPrice/.*_CF\.php -# ||alixixi.com/adsview/ (easylistchina+easylist.txt: 2083) +# ||alixixi.com/adsview/ (easylistchina.txt: 2073) .alixixi.com/adsview/ -# ||alifeifei.net/s/*.js (easylistchina+easylist.txt: 2082) +# ||alifeifei.net/s/*.js (easylistchina.txt: 2072) .alifeifei.net/s/.*\.js -# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina+easylist.txt: 2078) +# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina.txt: 2068) .alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100\.jpg -# ||alicdn.com/tps/*-950-90. (easylistchina+easylist.txt: 2077) +# ||alicdn.com/tps/*-950-90. (easylistchina.txt: 2067) .alicdn.com/tps/.*-950-90\. -# ||ali213.net/static/js/kv (easylistchina+easylist.txt: 2076) +# ||ali213.net/static/js/kv (easylistchina.txt: 2066) .ali213.net/static/js/kv -# ||ali213.net/static/js/kktv (easylistchina+easylist.txt: 2075) +# ||ali213.net/static/js/kktv (easylistchina.txt: 2065) .ali213.net/static/js/kktv -# ||ali213.net/static/js/*_ali213tv.js (easylistchina+easylist.txt: 2074) +# ||ali213.net/static/js/*_ali213tv.js (easylistchina.txt: 2064) .ali213.net/static/js/.*_ali213tv\.js -# ||ali213.net/images/promotion/ (easylistchina+easylist.txt: 2073) +# ||ali213.net/images/promotion/ (easylistchina.txt: 2063) .ali213.net/images/promotion/ -# ||ali213.net/css/data/promotion.css (easylistchina+easylist.txt: 2072) +# ||ali213.net/css/data/promotion.css (easylistchina.txt: 2062) .ali213.net/css/data/promotion\.css -# ||alexa.cn/ad$subdocument (easylistchina+easylist.txt: 2071) +# ||alexa.cn/ad$subdocument (easylistchina.txt: 2061) .alexa.cn/ad -# ||alabout.com/images/*.gif (easylistchina+easylist.txt: 2070) +# ||alabout.com/images/*.gif (easylistchina.txt: 2060) .alabout.com/images/.*\.gif -# ||aknba.com/cache/ads.js (easylistchina+easylist.txt: 2069) +# ||aknba.com/cache/ads.js (easylistchina.txt: 2059) .aknba.com/cache/ads\.js -# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina+easylist.txt: 2068) +# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina.txt: 2058) .akjunshi.com/resource/s/data_js_mil/right_twtj\.js -# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina+easylist.txt: 2067) +# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina.txt: 2057) .akjunshi.com/resource/s/data_js_mil/aksqgg\.js -# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina+easylist.txt: 2066) +# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina.txt: 2056) .ak47fuli.net/wp-content/uploads/20.*\.gif -# ||ak47fuli.net/fd.js (easylistchina+easylist.txt: 2065) +# ||ak47fuli.net/fd.js (easylistchina.txt: 2055) .ak47fuli.net/fd\.js -# ||ajiang.net/b4_dnslak.png (easylistchina+easylist.txt: 2064) +# ||ajiang.net/b4_dnslak.png (easylistchina.txt: 2054) .ajiang.net/b4_dnslak\.png -# ||aiyuke.com/index.php?c=position& (easylistchina+easylist.txt: 2063) +# ||aiyuke.com/index.php?c=position& (easylistchina.txt: 2053) .aiyuke.com/index\.php\?c=position& -# ||aiyidu.com/aiyidu/adver/ (easylistchina+easylist.txt: 2062) +# ||aiyidu.com/aiyidu/adver/ (easylistchina.txt: 2052) .aiyidu.com/aiyidu/adver/ -# ||aituan.com/at/bbs_gg/ (easylistchina+easylist.txt: 2061) +# ||aituan.com/at/bbs_gg/ (easylistchina.txt: 2051) .aituan.com/at/bbs_gg/ -# ||airenti.xyz^$script (easylistchina+easylist.txt: 2060) -.airenti.xyz -# ||airenti.co^$script (easylistchina+easylist.txt: 2059) -.airenti.co -# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina+easylist.txt: 2058) +# ||airenti.in^$script (easylistchina.txt: 2050) +.airenti.in +# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina.txt: 2049) .aipai.com/common/i0uat4jq/play/item\.html -# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina+easylist.txt: 2057) +# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina.txt: 2048) .aipai.com/common/html/commonAdForTfansTo\.html -# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina+easylist.txt: 2056) +# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina.txt: 2047) .aipai.com/app/www/templates/common/ifr/fans_640_40\.html -# ||ainunu.com/vad.js (easylistchina+easylist.txt: 2055) +# ||aipai.com/app/www/templates/common/*_videos_ (easylistchina.txt: 2046) +.aipai.com/app/www/templates/common/.*_videos_ +# ||ainunu.com/vad.js (easylistchina.txt: 2045) .ainunu.com/vad\.js -# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina+easylist.txt: 2054) +# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina.txt: 2044) .aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76\.gif -# ||aijiatxt.com/js/gg.js (easylistchina+easylist.txt: 2053) +# ||aijiatxt.com/js/gg.js (easylistchina.txt: 2043) .aijiatxt.com/js/gg\.js -# ||aijiatxt.com/images/dudu.gif (easylistchina+easylist.txt: 2052) +# ||aijiatxt.com/js/float.js (easylistchina.txt: 2042) +.aijiatxt.com/js/float\.js +# ||aijiatxt.com/images/dudu.gif (easylistchina.txt: 2041) .aijiatxt.com/images/dudu\.gif -# ||aijiatxt.com/images/90.jpg (easylistchina+easylist.txt: 2051) +# ||aijiatxt.com/images/90.jpg (easylistchina.txt: 2040) .aijiatxt.com/images/90\.jpg -# ||aijiatxt.com/images/300.jpg (easylistchina+easylist.txt: 2050) +# ||aijiatxt.com/images/300.jpg (easylistchina.txt: 2039) .aijiatxt.com/images/300\.jpg -# ||aid.chinayk.com^ (easylistchina+easylist.txt: 2049) +# ||aid.chinayk.com^ (easylistchina.txt: 2038) .aid.chinayk.com -# ||aibang.com/?area=ajax&cmd=adv& (easylistchina+easylist.txt: 2048) +# ||aibang.com/?area=ajax&cmd=adv& (easylistchina.txt: 2037) .aibang.com/\?area=ajax&cmd=adv& -# ||ai.bioon.com^ (easylistchina+easylist.txt: 2047) +# ||ai.bioon.com^ (easylistchina.txt: 2036) .ai.bioon.com -# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina+easylist.txt: 2046) +# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina.txt: 2035) .ahtv.cn/publishsys/data/template/1/3/images/zgyd_ -# ||ahlife.com/skin/hftogo/js/ (easylistchina+easylist.txt: 2045) +# ||ahlife.com/skin/hftogo/js/ (easylistchina.txt: 2034) .ahlife.com/skin/hftogo/js/ -# ||ahlife.com/api.php?mod=adv& (easylistchina+easylist.txt: 2044) +# ||ahlife.com/api.php?mod=adv& (easylistchina.txt: 2033) .ahlife.com/api\.php\?mod=adv& -# ||ah.sina.com.cn/iframe/ (easylistchina+easylist.txt: 2043) +# ||ah.sina.com.cn/iframe/ (easylistchina.txt: 2032) .ah.sina.com.cn/iframe/ -# ||afpcreative.wasu.cn^ (easylistchina+easylist.txt: 2042) +# ||afpcreative.wasu.cn^ (easylistchina.txt: 2031) .afpcreative.wasu.cn -# ||afp.wasu.cn^ (easylistchina+easylist.txt: 2041) +# ||afp.wasu.cn^ (easylistchina.txt: 2030) .afp.wasu.cn -# ||afp.chinanews.com^ (easylistchina+easylist.txt: 2040) +# ||afp.chinanews.com^ (easylistchina.txt: 2029) .afp.chinanews.com -# ||afocus.com.cn/s? (easylistchina+easylist.txt: 2039) +# ||afocus.com.cn/s? (easylistchina.txt: 2028) .afocus.com.cn/s\? -# ||adwordsing.com/img/2.jpg (easylistchina+easylist.txt: 2038) +# ||adwordsing.com/img/2.jpg (easylistchina.txt: 2027) .adwordsing.com/img/2\.jpg -# ||adwordsing.com/img/1.jpg (easylistchina+easylist.txt: 2037) +# ||adwordsing.com/img/1.jpg (easylistchina.txt: 2026) .adwordsing.com/img/1\.jpg -# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina+easylist.txt: 2036) +# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina.txt: 2025) .advideoadmin.appledaily.com.tw/ov_player/ -# ||adsproject.nownews.com^$subdocument (easylistchina+easylist.txt: 2035) +# ||adsproject.nownews.com^$subdocument (easylistchina.txt: 2024) .adsproject.nownews.com -# ||adspending01.bwnet.com.tw^ (easylistchina+easylist.txt: 2034) +# ||adspending01.bwnet.com.tw^ (easylistchina.txt: 2023) .adspending01.bwnet.com.tw -# ||adsclick.yx.js.cn^ (easylistchina+easylist.txt: 2033) +# ||adsclick.yx.js.cn^ (easylistchina.txt: 2022) .adsclick.yx.js.cn -# ||adpubs.yaolan.com^ (easylistchina+easylist.txt: 2032) +# ||adpubs.yaolan.com^ (easylistchina.txt: 2021) .adpubs.yaolan.com -# ||adpub.yaolan.com^ (easylistchina+easylist.txt: 2031) +# ||adpub.yaolan.com^ (easylistchina.txt: 2020) .adpub.yaolan.com -# ||adp.cnool.net^ (easylistchina+easylist.txt: 2030) +# ||adp.cnool.net^ (easylistchina.txt: 2019) .adp.cnool.net -# ||adnetpub.yaolan.com^ (easylistchina+easylist.txt: 2029) +# ||adnetpub.yaolan.com^ (easylistchina.txt: 2018) .adnetpub.yaolan.com -# ||admin6.com/templates/index/default/images/100060.gif (easylistchina+easylist.txt: 2028) +# ||admin6.com/templates/index/default/images/100060.gif (easylistchina.txt: 2017) .admin6.com/templates/index/default/images/100060\.gif -# ||admin5.com/lib/js/*_article (easylistchina+easylist.txt: 2027) +# ||admin5.com/lib/js/*_article (easylistchina.txt: 2016) .admin5.com/lib/js/.*_article -# ||admin5.com/hezuo/action/ (easylistchina+easylist.txt: 2026) +# ||admin5.com/hezuo/action/ (easylistchina.txt: 2015) .admin5.com/hezuo/action/ -# ||admin5.com/extras/ (easylistchina+easylist.txt: 2025) +# ||admin5.com/extras/ (easylistchina.txt: 2014) .admin5.com/extras/ -# ||admin5.com/daohang/ (easylistchina+easylist.txt: 2024) +# ||admin5.com/daohang/ (easylistchina.txt: 2013) .admin5.com/daohang/ -# ||admin5.com/bd360qq/action/ (easylistchina+easylist.txt: 2023) +# ||admin5.com/bd360qq/action/ (easylistchina.txt: 2012) .admin5.com/bd360qq/action/ -# ||admin5.com/a5dao/ (easylistchina+easylist.txt: 2022) +# ||admin5.com/a5dao/ (easylistchina.txt: 2011) .admin5.com/a5dao/ -# ||admin10000.com/skin/lagou_ (easylistchina+easylist.txt: 2021) +# ||admin10000.com/skin/lagou_ (easylistchina.txt: 2010) .admin10000.com/skin/lagou_ -# ||admd.yam.com^ (easylistchina+easylist.txt: 2020) +# ||admd.yam.com^ (easylistchina.txt: 2009) .admd.yam.com -# ||admaimai.com/inc/adv (easylistchina+easylist.txt: 2019) +# ||admaimai.com/inc/adv (easylistchina.txt: 2008) .admaimai.com/inc/adv -# ||adm.zzfish.cn^ (easylistchina+easylist.txt: 2018) +# ||adm.zzfish.cn^ (easylistchina.txt: 2007) .adm.zzfish.cn -# ||adm.zbinfo.net^ (easylistchina+easylist.txt: 2017) +# ||adm.zbinfo.net^ (easylistchina.txt: 2006) .adm.zbinfo.net -# ||adm.xmfish.com^ (easylistchina+easylist.txt: 2016) +# ||adm.xmfish.com^ (easylistchina.txt: 2005) .adm.xmfish.com -# ||adm.qzbbs.com^ (easylistchina+easylist.txt: 2015) +# ||adm.qzbbs.com^ (easylistchina.txt: 2004) .adm.qzbbs.com -# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina+easylist.txt: 2014) +# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina.txt: 2003) .adm.leju.sina.com.cn/get_abp_list/ -# ||adm.jjj8.cn^ (easylistchina+easylist.txt: 2013) +# ||adm.jjj8.cn^ (easylistchina.txt: 2002) .adm.jjj8.cn -# ||adm.funshion.com^ (easylistchina+easylist.txt: 2012) +# ||adm.funshion.com^ (easylistchina.txt: 2001) .adm.funshion.com -# ||adm.bbcss.com^ (easylistchina+easylist.txt: 2011) +# ||adm.bbcss.com^ (easylistchina.txt: 2000) .adm.bbcss.com -# ||adm.86wan.com^ (easylistchina+easylist.txt: 2010) +# ||adm.86wan.com^ (easylistchina.txt: 1999) .adm.86wan.com -# ||adm.72zx.com^ (easylistchina+easylist.txt: 2009) +# ||adm.72zx.com^ (easylistchina.txt: 1998) .adm.72zx.com -# ||adm.265g.com^ (easylistchina+easylist.txt: 2008) +# ||adm.265g.com^ (easylistchina.txt: 1997) .adm.265g.com -# ||adm*.autoimg.cn^$object (easylistchina+easylist.txt: 2007) +# ||adm*.autoimg.cn^$object (easylistchina.txt: 1996) .adm*./.*\.autoimg\.cn[^\w%.-] .adm*.autoimg.cn -# ||adk.funshion.com^ (easylistchina+easylist.txt: 2006) +# ||adk.funshion.com^ (easylistchina.txt: 1995) .adk.funshion.com -# ||adi*.cnool.net^ (easylistchina+easylist.txt: 2005) +# ||adi*.cnool.net^ (easylistchina.txt: 1994) .adi*./.*\.cnool\.net[^\w%.-] .adi*.cnool.net -# ||adhome.1fangchan.com^ (easylistchina+easylist.txt: 2004) +# ||adhome.1fangchan.com^ (easylistchina.txt: 1993) .adhome.1fangchan.com -# ||adf.dahe.cn^ (easylistchina+easylist.txt: 2003) +# ||adf.dahe.cn^ (easylistchina.txt: 1992) .adf.dahe.cn -# ||add.freeimg8.com^ (easylistchina+easylist.txt: 2002) +# ||add.freeimg8.com^ (easylistchina.txt: 1991) .add.freeimg8.com -# ||add.dz19.net^ (easylistchina+easylist.txt: 2001) +# ||add.dz19.net^ (easylistchina.txt: 1990) .add.dz19.net -# ||adadmin.house365.com^ (easylistchina+easylist.txt: 2000) +# ||adadmin.house365.com^ (easylistchina.txt: 1989) .adadmin.house365.com -# ||ad.bjmama.net^ (easylistchina+easylist.txt: 1999) +# ||ad.bjmama.net^ (easylistchina.txt: 1988) .ad.bjmama.net -# ||ad.17173.com^ (easylistchina+easylist.txt: 1998) +# ||ad.17173.com^ (easylistchina.txt: 1987) .ad.17173.com -# ||actoys.net/statics/js/index/ad.js (easylistchina+easylist.txt: 1997) +# ||ad.12306.cn/res/*.html (easylistchina.txt: 1986) +.ad.12306.cn/res/.*\.html +# ||actoys.net/statics/js/index/ad.js (easylistchina.txt: 1985) .actoys.net/statics/js/index/ad\.js -# ||actoys.net/js/beitou.js (easylistchina+easylist.txt: 1996) +# ||actoys.net/js/beitou.js (easylistchina.txt: 1984) .actoys.net/js/beitou\.js -# ||actoys.net/index.php?m=poster& (easylistchina+easylist.txt: 1995) +# ||actoys.net/index.php?m=poster& (easylistchina.txt: 1983) .actoys.net/index\.php\?m=poster& -# ||act.chinatimes.com/aimg/ (easylistchina+easylist.txt: 1994) +# ||act.chinatimes.com/aimg/ (easylistchina.txt: 1982) .act.chinatimes.com/aimg/ -# ||acsystem.wasu.cn^ (easylistchina+easylist.txt: 1993) +# ||acsystem.wasu.cn^ (easylistchina.txt: 1981) .acsystem.wasu.cn -# ||acode.b2b.cn/JS/ (easylistchina+easylist.txt: 1992) +# ||acode.b2b.cn/JS/ (easylistchina.txt: 1980) .acode.b2b.cn/JS/ -# ||acg.bz/2.gif (easylistchina+easylist.txt: 1990) +# ||acg.bz/2.gif (easylistchina.txt: 1978) .acg.bz/2\.gif -# ||acg.bz/1.jpg (easylistchina+easylist.txt: 1989) +# ||acg.bz/1.jpg (easylistchina.txt: 1977) .acg.bz/1\.jpg -# ||acg.178.com/s/manhua218_140.html (easylistchina+easylist.txt: 1987) +# ||acg.178.com/s/manhua218_140.html (easylistchina.txt: 1975) .acg.178.com/s/manhua218_140\.html -# ||acg.178.com/201302/t_ (easylistchina+easylist.txt: 1986) +# ||acg.178.com/201302/t_ (easylistchina.txt: 1974) .acg.178.com/201302/t_ -# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina+easylist.txt: 1985) +# ||acfun.tv/adnew.aspx?id= (easylistchina.txt: 1973) +.acfun.tv/adnew\.aspx\?id= +# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina.txt: 1972) .ac.tc.qq.com/store_file_download\?.*&dir_path=/admin/swf/ -# ||abcde.cn/2014images/*96060.jpg (easylistchina+easylist.txt: 1984) +# ||abcde.cn/2014images/*96060.jpg (easylistchina.txt: 1971) .abcde.cn/2014images/.*96060\.jpg -# ||abc.hkepc.com^ (easylistchina+easylist.txt: 1983) +# ||abc.hkepc.com^ (easylistchina.txt: 1970) .abc.hkepc.com -# ||ab.ahlife.com^*.swf (easylistchina+easylist.txt: 1982) +# ||ab.ahlife.com^*.swf (easylistchina.txt: 1969) .ab.ahlife.com/.*\.swf -# ||a67.com/a/*.js (easylistchina+easylist.txt: 1981) +# ||a67.com/a/*.js (easylistchina.txt: 1968) .a67.com/a/.*\.js -# ||a6.hujiang.com^ (easylistchina+easylist.txt: 1980) +# ||a6.hujiang.com^ (easylistchina.txt: 1967) .a6.hujiang.com -# ||a5.yeshj.com^ (easylistchina+easylist.txt: 1979) +# ||a5.yeshj.com^ (easylistchina.txt: 1966) .a5.yeshj.com -# ||a4.yeshj.com^ (easylistchina+easylist.txt: 1978) +# ||a4.yeshj.com^ (easylistchina.txt: 1965) .a4.yeshj.com -# ||a2.b310.com^ (easylistchina+easylist.txt: 1977) +# ||a2.b310.com^ (easylistchina.txt: 1964) .a2.b310.com -# ||a.xizi.com^ (easylistchina+easylist.txt: 1976) +# ||a.xizi.com^ (easylistchina.txt: 1963) .a.xizi.com -# ||a.kbcool.com/Mon_*.swf (easylistchina+easylist.txt: 1975) +# ||a.kbcool.com/Mon_*.swf (easylistchina.txt: 1962) .a.kbcool.com/Mon_.*\.swf -# ||a.jiaodong.net/a/2013/ (easylistchina+easylist.txt: 1974) +# ||a.jiaodong.net/a/2013/ (easylistchina.txt: 1961) .a.jiaodong.net/a/2013/ -# ||a.game.qidian.com/Show.aspx? (easylistchina+easylist.txt: 1973) +# ||a.game.qidian.com/Show.aspx? (easylistchina.txt: 1960) .a.game.qidian.com/Show\.aspx\? -# ||a.game.qidian.com/material/xs.js (easylistchina+easylist.txt: 1972) +# ||a.game.qidian.com/material/xs.js (easylistchina.txt: 1959) .a.game.qidian.com/material/xs\.js -# ||a.game.qidian.com/Layout.aspx? (easylistchina+easylist.txt: 1971) +# ||a.game.qidian.com/Layout.aspx? (easylistchina.txt: 1958) .a.game.qidian.com/Layout\.aspx\? -# ||a.baomihua.com^ (easylistchina+easylist.txt: 1970) +# ||a.baomihua.com^ (easylistchina.txt: 1957) .a.baomihua.com -# ||a-m-s.poco.cn^ (easylistchina+easylist.txt: 1969) +# ||a-m-s.poco.cn^ (easylistchina.txt: 1956) .a-m-s.poco.cn -# ||9ye.com/Files/Editor/ad/ (easylistchina+easylist.txt: 1968) +# ||9ye.com/Files/Editor/ad/ (easylistchina.txt: 1955) .9ye.com/Files/Editor/ad/ -# ||9w1an.com/special/ (easylistchina+easylist.txt: 1967) +# ||9w1an.com/special/ (easylistchina.txt: 1954) .9w1an.com/special/ -# ||9upk.com/js/$subdocument (easylistchina+easylist.txt: 1966) +# ||9upk.com/js/$subdocument (easylistchina.txt: 1953) .9upk.com/js/ -# ||9upk.com/images/95050.gif (easylistchina+easylist.txt: 1965) +# ||9upk.com/images/95050.gif (easylistchina.txt: 1952) .9upk.com/images/95050\.gif -# ||9sky.com/_gg/ (easylistchina+easylist.txt: 1964) +# ||9sky.com/_gg/ (easylistchina.txt: 1951) .9sky.com/_gg/ -# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina+easylist.txt: 1963) +# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina.txt: 1950) .9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00\.jpg -# ||9lala.com/js/ (easylistchina+easylist.txt: 1962) +# ||9lala.com/js/ (easylistchina.txt: 1949) .9lala.com/js/ -# ||9kjj.com/images/*.gif (easylistchina+easylist.txt: 1961) +# ||9kjj.com/images/*.gif (easylistchina.txt: 1948) .9kjj.com/images/.*\.gif -# ||9ist.com/others/ad/ (easylistchina+easylist.txt: 1960) +# ||9ist.com/others/ad/ (easylistchina.txt: 1947) .9ist.com/others/ad/ -# ||9ihome.com/info/ADTopvnet/ (easylistchina+easylist.txt: 1959) +# ||9ihome.com/info/ADTopvnet/ (easylistchina.txt: 1946) .9ihome.com/info/ADTopvnet/ -# ||9ihome.com/adimgs/ (easylistchina+easylist.txt: 1958) +# ||9ihome.com/adimgs/ (easylistchina.txt: 1945) .9ihome.com/adimgs/ -# ||9ht.com/skin2012/js/tlAd.js (easylistchina+easylist.txt: 1957) +# ||9ht.com/skin2012/js/tlAd.js (easylistchina.txt: 1944) .9ht.com/skin2012/js/tlAd\.js -# ||9ez.me/embd.php?type= (easylistchina+easylist.txt: 1956) +# ||9ez.me/embd.php?type= (easylistchina.txt: 1943) .9ez.me/embd\.php\?type= -# ||9duw.com/pic/ (easylistchina+easylist.txt: 1955) +# ||9duw.com/pic/ (easylistchina.txt: 1942) .9duw.com/pic/ -# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina+easylist.txt: 1954) +# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina.txt: 1941) .9db.cc/wp-content/themes/xiucaozuo/js/ifphone\.js -# ||99tianji.com/hack/kaifubiao.js (easylistchina+easylist.txt: 1953) +# ||99ting.cn/image/*.gif (easylistchina.txt: 1940) +.99ting.cn/image/.*\.gif +# ||99ting.cn/789uc/gg.js (easylistchina.txt: 1939) +.99ting.cn/789uc/gg\.js +# ||99tianji.com/hack/kaifubiao.js (easylistchina.txt: 1938) .99tianji.com/hack/kaifubiao\.js -# ||99re2.com/images/*.gif (easylistchina+easylist.txt: 1952) -.99re2.com/images/.*\.gif -# ||99re1.com/images/*.gif (easylistchina+easylist.txt: 1951) -.99re1.com/images/.*\.gif -# ||99re.com/images/close.gif (easylistchina+easylist.txt: 1950) -.99re.com/images/close\.gif -# ||99re.city/ads/ (easylistchina+easylist.txt: 1949) -.99re.city/ads/ -# ||99re.*/media/banners/ (easylistchina+easylist.txt: 1948) -.99re.*./(.*/)?media/banners/ -# ||99mst.com/upfiles/adv/main02.jpg (easylistchina+easylist.txt: 1947) +# ||99mst.com/upfiles/adv/main02.jpg (easylistchina.txt: 1937) .99mst.com/upfiles/adv/main02\.jpg -# ||99danji.com/otherhtml/ (easylistchina+easylist.txt: 1946) +# ||99danji.com/otherhtml/ (easylistchina.txt: 1936) .99danji.com/otherhtml/ -# ||99btgc01.info/uploads/2015/03/11111.jpg (easylistchina+easylist.txt: 1945) -.99btgc01.info/uploads/2015/03/11111\.jpg -# ||99btgc01.info/uploads/*.gif (easylistchina+easylist.txt: 1944) +# ||99btgc01.info/uploads/*.gif (easylistchina.txt: 1935) .99btgc01.info/uploads/.*\.gif -# ||99770.cc^$subdocument (easylistchina+easylist.txt: 1943) +# ||999sdh.com/tu/*.js (easylistchina.txt: 1934) +.999sdh.com/tu/.*\.js +# ||99770.cc^$subdocument (easylistchina.txt: 1933) .99770.cc -# ||9938.net/video/tvg/hot.js (easylistchina+easylist.txt: 1942) +# ||9938.net/video/tvg/hot.js (easylistchina.txt: 1932) .9938.net/video/tvg/hot\.js -# ||9938.net/video/tvg/footer.js (easylistchina+easylist.txt: 1941) +# ||9938.net/video/tvg/footer.js (easylistchina.txt: 1931) .9938.net/video/tvg/footer\.js -# ||97aa1.com/g/ (easylistchina+easylist.txt: 1940) +# ||97aa1.com/g/ (easylistchina.txt: 1930) .97aa1.com/g/ -# ||973.com/xyx/p.js (easylistchina+easylist.txt: 1939) +# ||973.com/xyx/p.js (easylistchina.txt: 1929) .973.com/xyx/p\.js -# ||969g.com/common/iframe/ (easylistchina+easylist.txt: 1938) +# ||969g.com/common/iframe/ (easylistchina.txt: 1928) .969g.com/common/iframe/ -# ||966266.com/a-d/ (easylistchina+easylist.txt: 1937) +# ||966266.com/a-d/ (easylistchina.txt: 1927) .966266.com/a-d/ -# ||962.net/skin/library/js/bt-index.js (easylistchina+easylist.txt: 1936) +# ||962.net/skin/library/js/bt-index.js (easylistchina.txt: 1926) .962.net/skin/library/js/bt-index\.js -# ||962.net/show/index_ (easylistchina+easylist.txt: 1935) +# ||962.net/show/index_ (easylistchina.txt: 1925) .962.net/show/index_ -# ||962.net/show/cms_$script (easylistchina+easylist.txt: 1934) +# ||962.net/show/cms_$script (easylistchina.txt: 1924) .962.net/show/cms_ -# ||962.net/show/bt.js (easylistchina+easylist.txt: 1933) +# ||962.net/show/bt.js (easylistchina.txt: 1923) .962.net/show/bt\.js -# ||962.net/show/all_$script (easylistchina+easylist.txt: 1932) +# ||962.net/show/all_$script (easylistchina.txt: 1922) .962.net/show/all_ -# ||962.net/show/all.js (easylistchina+easylist.txt: 1931) +# ||962.net/show/all.js (easylistchina.txt: 1921) .962.net/show/all\.js -# ||96.43.97.243^ (easylistchina+easylist.txt: 1930) +# ||96.43.97.243^ (easylistchina.txt: 1920) .96.43.97.243 -# ||9553.com/otherhtml/ (easylistchina+easylist.txt: 1929) +# ||9553.com/otherhtml/ (easylistchina.txt: 1919) .9553.com/otherhtml/ -# ||94994.com*/js/plugin/shoppingMall/ (easylistchina+easylist.txt: 1928) +# ||94994.com*/js/plugin/shoppingMall/ (easylistchina.txt: 1918) .94994.com*./(.*/)?js/plugin/shoppingMall/ -# ||93t.cc/template/93t/images/41550.gif (easylistchina+easylist.txt: 1927) +# ||93t.cc/template/93t/images/41550.gif (easylistchina.txt: 1917) .93t.cc/template/93t/images/41550\.gif -# ||93994.com/templets/images/dashan.jpg (easylistchina+easylist.txt: 1926) +# ||93994.com/templets/images/dashan.jpg (easylistchina.txt: 1916) .93994.com/templets/images/dashan\.jpg -# ||92wav.com/rj/*.gif (easylistchina+easylist.txt: 1925) +# ||92wav.com/rj/*.gif (easylistchina.txt: 1915) .92wav.com/rj/.*\.gif -# ||92dp.com/home/showg?id= (easylistchina+easylist.txt: 1924) +# ||92dp.com/home/showg?id= (easylistchina.txt: 1914) .92dp.com/home/showg\?id= -# ||92dp.com/dianping/videoad (easylistchina+easylist.txt: 1923) +# ||92dp.com/dianping/videoad (easylistchina.txt: 1913) .92dp.com/dianping/videoad -# ||91danji.com/js/lmt.js (easylistchina+easylist.txt: 1922) +# ||91danji.com/js/lmt.js (easylistchina.txt: 1912) .91danji.com/js/lmt\.js -# ||91danji.com/images/*.jpg (easylistchina+easylist.txt: 1921) +# ||91danji.com/images/*.jpg (easylistchina.txt: 1911) .91danji.com/images/.*\.jpg -# ||91danji.com/asset/temp/91danji- (easylistchina+easylist.txt: 1920) +# ||91danji.com/asset/temp/91danji- (easylistchina.txt: 1910) .91danji.com/asset/temp/91danji- -# ||918999.com/xjgg/ (easylistchina+easylist.txt: 1919) +# ||918999.com/xjgg/ (easylistchina.txt: 1909) .918999.com/xjgg/ -# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina+easylist.txt: 1918) +# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina.txt: 1908) .91.com/uploads/game/.*-%E5%B9%BF%E5%91%8A\. -# ||91.com/hezuo/ (easylistchina+easylist.txt: 1917) +# ||91.com/hezuo/ (easylistchina.txt: 1907) .91.com/hezuo/ -# ||91.com/*/hezuo/ (easylistchina+easylist.txt: 1916) +# ||91.com/*/hezuo/ (easylistchina.txt: 1906) .91.com/.*/hezuo/ -# ||90zy.cn/data/attachment/portal/ (easylistchina+easylist.txt: 1915) +# ||90zy.cn/data/attachment/portal/ (easylistchina.txt: 1905) .90zy.cn/data/attachment/portal/ -# ||90vs.com/img/cs/ (easylistchina+easylist.txt: 1914) -.90vs.com/img/cs/ -# ||90oo.com/tp/w981.gif (easylistchina+easylist.txt: 1913) +# ||90oo.com/tp/w981.gif (easylistchina.txt: 1904) .90oo.com/tp/w981\.gif -# ||90oo.com/tp/msn.jpg (easylistchina+easylist.txt: 1912) +# ||90oo.com/tp/msn.jpg (easylistchina.txt: 1903) .90oo.com/tp/msn\.jpg -# ||90oo.com/tp/js (easylistchina+easylist.txt: 1911) +# ||90oo.com/tp/js (easylistchina.txt: 1902) .90oo.com/tp/js -# ||90oo.com/tp/hg (easylistchina+easylist.txt: 1910) +# ||90oo.com/tp/hg (easylistchina.txt: 1901) .90oo.com/tp/hg -# ||90oo.com/tp/down.gif (easylistchina+easylist.txt: 1909) +# ||90oo.com/tp/down.gif (easylistchina.txt: 1900) .90oo.com/tp/down\.gif -# ||90oo.com/tp/90232.jpg (easylistchina+easylist.txt: 1908) +# ||90oo.com/tp/90232.jpg (easylistchina.txt: 1899) .90oo.com/tp/90232\.jpg -# ||90oo.com/tp/40 (easylistchina+easylist.txt: 1907) +# ||90oo.com/tp/40 (easylistchina.txt: 1898) .90oo.com/tp/40 -# ||90oo.com/tp/*980.gif (easylistchina+easylist.txt: 1906) +# ||90oo.com/tp/*980.gif (easylistchina.txt: 1897) .90oo.com/tp/.*980\.gif -# ||90bifen.net/images/c_ad_ (easylistchina+easylist.txt: 1905) +# ||90bifen.net/images/c_ad_ (easylistchina.txt: 1896) .90bifen.net/images/c_ad_ -# ||9091tv.com/Runtime/js/vod (easylistchina+easylist.txt: 1904) +# ||9091tv.com/Runtime/js/vod (easylistchina.txt: 1895) .9091tv.com/Runtime/js/vod -# ||9091tv.com/Runtime/js/topguanggao (easylistchina+easylist.txt: 1903) +# ||9091tv.com/Runtime/js/topguanggao (easylistchina.txt: 1894) .9091tv.com/Runtime/js/topguanggao -# ||9091tv.com/hhhh.htm (easylistchina+easylist.txt: 1902) +# ||9091tv.com/hhhh.htm (easylistchina.txt: 1893) .9091tv.com/hhhh\.htm -# ||9091tv.com/dy/mtu.swf (easylistchina+easylist.txt: 1901) +# ||9091tv.com/dy/mtu.swf (easylistchina.txt: 1892) .9091tv.com/dy/mtu\.swf -# ||9000wy.com/style/js/2015content.js (easylistchina+easylist.txt: 1900) +# ||9000wy.com/style/js/2015content.js (easylistchina.txt: 1891) .9000wy.com/style/js/2015content\.js -# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina+easylist.txt: 1899) +# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina.txt: 1890) .900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi\.gif -# ||8vod.net/detail/vod_*.js (easylistchina+easylist.txt: 1898) +# ||8vod.net/detail/vod_*.js (easylistchina.txt: 1889) .8vod.net/detail/vod_.*\.js -# ||8vod.net/detail/play_*.js (easylistchina+easylist.txt: 1897) +# ||8vod.net/detail/play_*.js (easylistchina.txt: 1888) .8vod.net/detail/play_.*\.js -# ||8jkx.com^ (easylistchina+easylist.txt: 1896) +# ||8jkx.com^ (easylistchina.txt: 1886) .8jkx.com -# ||8dyun.com/*.php$script (easylistchina+easylist.txt: 1895) +# ||8dyun.com/*.php$script (easylistchina.txt: 1885) .8dyun.com/.*\.php -# ||8d8d.me/images/dealer.gif (easylistchina+easylist.txt: 1894) +# ||8d8d.me/images/dealer.gif (easylistchina.txt: 1884) .8d8d.me/images/dealer\.gif -# ||88liu.com/data/attachment/portal/ (easylistchina+easylist.txt: 1893) +# ||88liu.com/data/attachment/portal/ (easylistchina.txt: 1883) .88liu.com/data/attachment/portal/ -# ||88gs.com/agfile/ (easylistchina+easylist.txt: 1892) +# ||88gs.com/agfile/ (easylistchina.txt: 1882) .88gs.com/agfile/ -# ||8888nn.com/sxgg/13.js (easylistchina+easylist.txt: 1891) -.8888nn.com/sxgg/13\.js -# ||8888nn.com/sxgg/12.js (easylistchina+easylist.txt: 1890) -.8888nn.com/sxgg/12\.js -# ||88448.com/images/gj/ (easylistchina+easylist.txt: 1889) +# ||88448.com/images/gj/ (easylistchina.txt: 1881) .88448.com/images/gj/ -# ||87994.com/images/rili.gif (easylistchina+easylist.txt: 1888) +# ||880fg.com/css/*.js (easylistchina.txt: 1880) +.880fg.com/css/.*\.js +# ||87994.com/images/rili.gif (easylistchina.txt: 1879) .87994.com/images/rili\.gif -# ||86file.megajoy.com^ (easylistchina+easylist.txt: 1887) +# ||86file.megajoy.com^ (easylistchina.txt: 1878) .86file.megajoy.com -# ||8684.com/com/sys_ad_ (easylistchina+easylist.txt: 1886) +# ||8684.com/com/sys_ad_ (easylistchina.txt: 1877) .8684.com/com/sys_ad_ -# ||8684.com/baidu/c.js (easylistchina+easylist.txt: 1885) +# ||8684.com/baidu/c.js (easylistchina.txt: 1876) .8684.com/baidu/c\.js -# ||8684.com/20150123/f3d37541.jpg (easylistchina+easylist.txt: 1884) +# ||8684.com/20150123/f3d37541.jpg (easylistchina.txt: 1875) .8684.com/20150123/f3d37541\.jpg -# ||8684.cn/id/ad_ (easylistchina+easylist.txt: 1883) +# ||8684.cn/id/ad_ (easylistchina.txt: 1874) .8684.cn/id/ad_ -# ||86696.com/images/indexad.jpg (easylistchina+easylist.txt: 1882) +# ||8683ys.com/template/380x60.gif (easylistchina.txt: 1873) +.8683ys.com/template/380x60\.gif +# ||86696.com/images/indexad.jpg (easylistchina.txt: 1872) .86696.com/images/indexad\.jpg -# ||855699.com^*qq.js (easylistchina+easylist.txt: 1881) +# ||855699.com^*qq.js (easylistchina.txt: 1871) .855699.com/.*qq\.js -# ||855699.com/piao.js (easylistchina+easylist.txt: 1880) +# ||855699.com/piao.js (easylistchina.txt: 1870) .855699.com/piao\.js -# ||83133.com/api/ (easylistchina+easylist.txt: 1879) +# ||83133.com/api/ (easylistchina.txt: 1869) .83133.com/api/ -# ||81qi.com/d/js/ (easylistchina+easylist.txt: 1878) +# ||81qi.com/d/js/ (easylistchina.txt: 1868) .81qi.com/d/js/ -# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina+easylist.txt: 1877) +# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina.txt: 1867) .81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02\.jpg -# ||80txt.com/js3*.gif (easylistchina+easylist.txt: 1876) +# ||80txt.com/js3*.gif (easylistchina.txt: 1866) .80txt.com/js3.*\.gif -# ||801.tianyaui.com^ (easylistchina+easylist.txt: 1875) +# ||801.tianyaui.com^ (easylistchina.txt: 1865) .801.tianyaui.com -# ||800j.com.cn/index.php?m=poster& (easylistchina+easylist.txt: 1874) +# ||800j.com.cn/index.php?m=poster& (easylistchina.txt: 1864) .800j.com.cn/index\.php\?m=poster& -# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina+easylist.txt: 1873) +# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina.txt: 1863) .800j.com.cn/api\.php\?op=itemtopbanner& -# ||800j.com.cn/2014ad/ (easylistchina+easylist.txt: 1872) +# ||800j.com.cn/2014ad/ (easylistchina.txt: 1862) .800j.com.cn/2014ad/ -# ||800j.com.cn/2013ad/ (easylistchina+easylist.txt: 1871) +# ||800j.com.cn/2013ad/ (easylistchina.txt: 1861) .800j.com.cn/2013ad/ -# ||8*.tianya.cn^ (easylistchina+easylist.txt: 1870) +# ||8*.tianya.cn^ (easylistchina.txt: 1860) .8*./.*\.tianya\.cn[^\w%.-] .8*.tianya.cn -# ||7y7.com/js/7y7.ad. (easylistchina+easylist.txt: 1869) +# ||7y7.com/js/7y7.ad. (easylistchina.txt: 1859) .7y7.com/js/7y7\.ad\. -# ||7xdown.com/youid/ (easylistchina+easylist.txt: 1868) +# ||7xdown.com/youid/ (easylistchina.txt: 1858) .7xdown.com/youid/ -# ||7xdown.com/idcgg/ (easylistchina+easylist.txt: 1867) +# ||7xdown.com/idcgg/ (easylistchina.txt: 1857) .7xdown.com/idcgg/ -# ||7vk.com/detail/ (easylistchina+easylist.txt: 1866) +# ||7vk.com/detail/ (easylistchina.txt: 1856) .7vk.com/detail/ -# ||7scs.com/js/TOP.js (easylistchina+easylist.txt: 1865) +# ||7scs.com/js/TOP.js (easylistchina.txt: 1855) .7scs.com/js/TOP\.js -# ||7mad.7m.cn^ (easylistchina+easylist.txt: 1864) +# ||7mad.7m.cn^ (easylistchina.txt: 1854) .7mad.7m.cn -# ||7m.cn/v2/js/analysebanner.js (easylistchina+easylist.txt: 1863) +# ||7m.cn/v2/js/analysebanner.js (easylistchina.txt: 1853) .7m.cn/v2/js/analysebanner\.js -# ||7m.cn/analyse/include/*_ (easylistchina+easylist.txt: 1862) +# ||7m.cn/analyse/include/*_ (easylistchina.txt: 1852) .7m.cn/analyse/include/.*_ -# ||7kankan.com/scripts/new/indext (easylistchina+easylist.txt: 1861) +# ||7kankan.com/scripts/new/indext (easylistchina.txt: 1851) .7kankan.com/scripts/new/indext -# ||7kankan.com/c/123.gif (easylistchina+easylist.txt: 1860) +# ||7kankan.com/c/123.gif (easylistchina.txt: 1850) .7kankan.com/c/123\.gif -# ||7k7k.com/loading/loading.htm (easylistchina+easylist.txt: 1859) +# ||7k7k.com/loading/loading.htm (easylistchina.txt: 1849) .7k7k.com/loading/loading\.htm -# ||7k7k.com/ad-*.htm (easylistchina+easylist.txt: 1858) +# ||7k7k.com/ad-*.htm (easylistchina.txt: 1848) .7k7k.com/ad-.*\.htm -# ||7edown.com/greensoft/js/ (easylistchina+easylist.txt: 1857) +# ||7edown.com/greensoft/js/ (easylistchina.txt: 1847) .7edown.com/greensoft/js/ -# ||7dsw.com/web8/js/ (easylistchina+easylist.txt: 1856) +# ||7dsw.com/web8/js/ (easylistchina.txt: 1846) .7dsw.com/web8/js/ -# ||7c.com/7c_*.html? (easylistchina+easylist.txt: 1855) +# ||7c.com/7c_*.html? (easylistchina.txt: 1845) .7c.com/7c_.*\.html\? -# ||79pan.com/gao.gif (easylistchina+easylist.txt: 1854) +# ||79pan.com/gao.gif (easylistchina.txt: 1844) .79pan.com/gao\.gif -# ||78land.com/js/fumeiti.js (easylistchina+easylist.txt: 1853) +# ||78land.com/js/fumeiti.js (easylistchina.txt: 1843) .78land.com/js/fumeiti\.js -# ||78dm.net/images/mingren250.jpg (easylistchina+easylist.txt: 1852) +# ||78dm.net/images/mingren250.jpg (easylistchina.txt: 1842) .78dm.net/images/mingren250\.jpg -# ||789pan.com/templates/default/images/kuping.gif (easylistchina+easylist.txt: 1851) +# ||789pan.com/templates/default/images/kuping.gif (easylistchina.txt: 1841) .789pan.com/templates/default/images/kuping\.gif -# ||77kp.com/bd/ (easylistchina+easylist.txt: 1850) +# ||77kp.com/bd/ (easylistchina.txt: 1840) .77kp.com/bd/ -# ||77bike.com/img/tern.swf (easylistchina+easylist.txt: 1849) +# ||77bike.com/img/tern.swf (easylistchina.txt: 1839) .77bike.com/img/tern\.swf -# ||77bike.com/img/sticker.gif (easylistchina+easylist.txt: 1848) +# ||77bike.com/img/sticker.gif (easylistchina.txt: 1838) .77bike.com/img/sticker\.gif -# ||77bike.com/img/fsir.gif (easylistchina+easylist.txt: 1847) +# ||77bike.com/img/fsir.gif (easylistchina.txt: 1837) .77bike.com/img/fsir\.gif -# ||777g.me/cs/ (easylistchina+easylist.txt: 1846) +# ||777g.me/cs/ (easylistchina.txt: 1836) .777g.me/cs/ -# ||77119.com/js/ (easylistchina+easylist.txt: 1845) +# ||77119.com/js/ (easylistchina.txt: 1835) .77119.com/js/ -# ||76xh.com/skin/zxf/js/ad (easylistchina+easylist.txt: 1844) +# ||76xh.com/skin/zxf/js/ad (easylistchina.txt: 1834) .76xh.com/skin/zxf/js/ad -# ||766.com/upbox2/js/*.js (easylistchina+easylist.txt: 1843) +# ||766.com/upbox2/js/*.js (easylistchina.txt: 1833) .766.com/upbox2/js/.*\.js -# ||76.73.85.179/js/v1.js (easylistchina+easylist.txt: 1842) +# ||76.73.85.179/js/v1.js (easylistchina.txt: 1832) .76.73.85.179/js/v1\.js -# ||75.125.41.29:8080/ (easylistchina+easylist.txt: 1841) +# ||75.125.41.29:8080/ (easylistchina.txt: 1831) .75.125.41.29:8080 -# ||73ts.com/data/0000/08/14164486880364.gif (easylistchina+easylist.txt: 1840) -.73ts.com/data/0000/08/14164486880364\.gif -# ||73p37.com/js/top (easylistchina+easylist.txt: 1839) +# ||73p37.com/js/top (easylistchina.txt: 1830) .73p37.com/js/top -# ||73p37.com/js/playad.html (easylistchina+easylist.txt: 1838) +# ||73p37.com/js/playad.html (easylistchina.txt: 1829) .73p37.com/js/playad\.html -# ||73p37.com/js/bottomall.js (easylistchina+easylist.txt: 1837) +# ||73p37.com/js/bottomall.js (easylistchina.txt: 1828) .73p37.com/js/bottomall\.js -# ||72bbb.com/images/12.gif (easylistchina+easylist.txt: 1836) +# ||72bbb.com/images/12.gif (easylistchina.txt: 1827) .72bbb.com/images/12\.gif -# ||726w.com/sohu.html (easylistchina+easylist.txt: 1835) +# ||726w.com/sohu.html (easylistchina.txt: 1826) .726w.com/sohu\.html -# ||70.86.24.120:8060/ (easylistchina+easylist.txt: 1834) +# ||70.86.24.120:8060/ (easylistchina.txt: 1825) .70.86.24.120:8060 -# ||6vhao.com/d/f*.js (easylistchina+easylist.txt: 1833) +# ||6vhao.com/d/f*.js (easylistchina.txt: 1824) .6vhao.com/d/f.*\.js -# ||6vhao.com/d/960.js (easylistchina+easylist.txt: 1832) +# ||6vhao.com/d/960.js (easylistchina.txt: 1823) .6vhao.com/d/960\.js -# ||6vdy.com/d/f*.js (easylistchina+easylist.txt: 1831) +# ||6vdy.com/d/f*.js (easylistchina.txt: 1822) .6vdy.com/d/f.*\.js -# ||6vdy.com/d/960.js (easylistchina+easylist.txt: 1830) +# ||6vdy.com/d/960.js (easylistchina.txt: 1821) .6vdy.com/d/960\.js -# ||6park.com^$subdocument (easylistchina+easylist.txt: 1829) +# ||6park.com^$subdocument (easylistchina.txt: 1820) .6park.com -# ||6park.com/wap/ (easylistchina+easylist.txt: 1828) +# ||6park.com/wap/ (easylistchina.txt: 1819) .6park.com/wap/ -# ||6park.com/parks/$script (easylistchina+easylist.txt: 1827) +# ||6park.com/parks/$script (easylistchina.txt: 1818) .6park.com/parks/ -# ||6park.com/news/$script (easylistchina+easylist.txt: 1826) +# ||6park.com/news/$script (easylistchina.txt: 1817) .6park.com/news/ -# ||6park.com/img/15.png (easylistchina+easylist.txt: 1825) +# ||6park.com/img/15.png (easylistchina.txt: 1816) .6park.com/img/15\.png -# ||6ddd.com/js/myfiles/down_ (easylistchina+easylist.txt: 1824) +# ||6ddd.com/js/myfiles/down_ (easylistchina.txt: 1815) .6ddd.com/js/myfiles/down_ -# ||6ddd.com/js/myfiles/banner.js (easylistchina+easylist.txt: 1823) +# ||6ddd.com/js/myfiles/banner.js (easylistchina.txt: 1814) .6ddd.com/js/myfiles/banner\.js -# ||6d245gxt.52pk.com^ (easylistchina+easylist.txt: 1822) +# ||6d245gxt.52pk.com^ (easylistchina.txt: 1813) .6d245gxt.52pk.com -# ||69nh.com/detail/player_ (easylistchina+easylist.txt: 1821) +# ||69nh.com/detail/player_ (easylistchina.txt: 1812) .69nh.com/detail/player_ -# ||6949.com/ggs_ (easylistchina+easylist.txt: 1820) +# ||6949.com/ggs_ (easylistchina.txt: 1811) .6949.com/ggs_ -# ||6949.com/640x44.htm (easylistchina+easylist.txt: 1819) +# ||6949.com/640x44.htm (easylistchina.txt: 1810) .6949.com/640x44\.htm -# ||69.30.217.155^*.png (easylistchina+easylist.txt: 1818) +# ||69.30.217.155^*.png (easylistchina.txt: 1809) .69.30.217.155/.*\.png -# ||68design.net/inc/news. (easylistchina+easylist.txt: 1817) +# ||68design.net/inc/news. (easylistchina.txt: 1808) .68design.net/inc/news\. -# ||676000.com/001.htm (easylistchina+easylist.txt: 1816) +# ||676000.com/001.htm (easylistchina.txt: 1807) .676000.com/001\.htm -# ||67.159.44.187/js/v1.js (easylistchina+easylist.txt: 1815) +# ||67.159.44.187/js/v1.js (easylistchina.txt: 1806) .67.159.44.187/js/v1\.js -# ||66ys.cc/d/$script (easylistchina+easylist.txt: 1814) +# ||66ys.cc/d/$script (easylistchina.txt: 1805) .66ys.cc/d/ -# ||66xinxin.com/js/ads888/ (easylistchina+easylist.txt: 1813) +# ||66xinxin.com/js/ads888/ (easylistchina.txt: 1804) .66xinxin.com/js/ads888/ -# ||66wz.com/data/attachment/portal/ (easylistchina+easylist.txt: 1812) +# ||66wz.com/data/attachment/portal/ (easylistchina.txt: 1803) .66wz.com/data/attachment/portal/ -# ||66wz.com/adv2/ (easylistchina+easylist.txt: 1811) +# ||66wz.com/adv2/ (easylistchina.txt: 1802) .66wz.com/adv2/ -# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina+easylist.txt: 1810) +# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina.txt: 1801) .66wz.com/48aa9454edd446fbef0df9e9aa5997f4\.gif -# ||66rd.cn^*96060 (easylistchina+easylist.txt: 1809) +# ||66rd.cn^*96060 (easylistchina.txt: 1800) .66rd.cn/.*96060 -# ||66rd.cn^*120250. (easylistchina+easylist.txt: 1808) +# ||66rd.cn^*120250. (easylistchina.txt: 1799) .66rd.cn/.*120250\. -# ||66rd.cn^*100060. (easylistchina+easylist.txt: 1807) +# ||66rd.cn^*100060. (easylistchina.txt: 1798) .66rd.cn/.*100060\. -# ||66rd.cn^*1000300. (easylistchina+easylist.txt: 1806) +# ||66rd.cn^*1000300. (easylistchina.txt: 1797) .66rd.cn/.*1000300\. -# ||66rd.cn/pic/rdwmh800.gif (easylistchina+easylist.txt: 1805) +# ||66rd.cn/pic/rdwmh800.gif (easylistchina.txt: 1796) .66rd.cn/pic/rdwmh800\.gif -# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina+easylist.txt: 1804) +# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina.txt: 1795) .66rd.cn/pic/rdrccs2014\.jpg -# ||66rd.cn/pic/itv130.jpg (easylistchina+easylist.txt: 1803) +# ||66rd.cn/pic/itv130.jpg (easylistchina.txt: 1794) .66rd.cn/pic/itv130\.jpg -# ||66rd.cn/pic/*1000. (easylistchina+easylist.txt: 1802) +# ||66rd.cn/pic/*1000. (easylistchina.txt: 1793) .66rd.cn/pic/.*1000\. -# ||66rd.cn/js/foot.js (easylistchina+easylist.txt: 1801) +# ||66rd.cn/js/foot.js (easylistchina.txt: 1792) .66rd.cn/js/foot\.js -# ||66ip.cn/klz/953X164.gif (easylistchina+easylist.txt: 1800) +# ||66ip.cn/klz/953X164.gif (easylistchina.txt: 1791) .66ip.cn/klz/953X164\.gif -# ||66ip.cn/common/img/yaoyao.jpg (easylistchina+easylist.txt: 1799) +# ||66ip.cn/common/img/yaoyao.jpg (easylistchina.txt: 1790) .66ip.cn/common/img/yaoyao\.jpg -# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina+easylist.txt: 1798) +# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina.txt: 1789) .66hbo.com/images/new1/uploads/index_banner/.*\.jpg -# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina+easylist.txt: 1797) +# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina.txt: 1788) .66hbo.com/images/new1/uploads/index_banner/.*\.gif -# ||66e.cc/d/$script (easylistchina+easylist.txt: 1796) +# ||66e.cc/d/$script (easylistchina.txt: 1787) .66e.cc/d/ -# ||666pan.com/666a/ (easylistchina+easylist.txt: 1795) +# ||666pan.com/666a/ (easylistchina.txt: 1786) .666pan.com/666a/ -# ||666kv.com/adstaic/ (easylistchina+easylist.txt: 1794) -.666kv.com/adstaic/ -# ||6665432.com^*.gif (easylistchina+easylist.txt: 1793) +# ||6665432.com^*.gif (easylistchina.txt: 1785) .6665432.com/.*\.gif -# ||66384.com/templets/SWFad (easylistchina+easylist.txt: 1792) +# ||66384.com/templets/SWFad (easylistchina.txt: 1784) .66384.com/templets/SWFad -# ||66384.com/templets/js/stats.js (easylistchina+easylist.txt: 1791) +# ||66384.com/templets/js/stats.js (easylistchina.txt: 1783) .66384.com/templets/js/stats\.js -# ||66.fmx.cn/js/ (easylistchina+easylist.txt: 1790) +# ||6620070.com/js/ (easylistchina.txt: 1782) +.6620070.com/js/ +# ||66.fmx.cn/js/ (easylistchina.txt: 1781) .66.fmx.cn/js/ -# ||654mmm.com^ (easylistchina+easylist.txt: 1789) +# ||654mmm.com^ (easylistchina.txt: 1780) .654mmm.com -# ||62422.cn/js/inc/13.swf (easylistchina+easylist.txt: 1788) +# ||62422.cn/js/inc/13.swf (easylistchina.txt: 1779) .62422.cn/js/inc/13\.swf -# ||62422.cn/ggimg/ (easylistchina+easylist.txt: 1787) +# ||62422.cn/ggimg/ (easylistchina.txt: 1778) .62422.cn/ggimg/ -# ||61.235.249.195^*/Default.aspx?id= (easylistchina+easylist.txt: 1786) +# ||61.235.249.195^*/Default.aspx?id= (easylistchina.txt: 1777) .61.235.249.195/.*/Default\.aspx\?id= -# ||61.164.108.184^*.swf (easylistchina+easylist.txt: 1785) +# ||61.164.108.184^*.swf (easylistchina.txt: 1776) .61.164.108.184/.*\.swf -# ||61.164.108.184^*.gif (easylistchina+easylist.txt: 1784) +# ||61.164.108.184^*.gif (easylistchina.txt: 1775) .61.164.108.184/.*\.gif -# ||61.164.108.104:4275/*.gif (easylistchina+easylist.txt: 1783) +# ||61.164.108.104:4275/*.gif (easylistchina.txt: 1774) .61.164.108.104:4275/.*\.gif -# ||61.147.92.251:81/120x160.asp (easylistchina+easylist.txt: 1782) +# ||61.147.92.251:81/120x160.asp (easylistchina.txt: 1773) .61.147.92.251:81/120x160\.asp -# ||61.143.225.176:818/nowscore/ (easylistchina+easylist.txt: 1781) +# ||61.143.225.176:818/nowscore/ (easylistchina.txt: 1772) .61.143.225.176:818/nowscore/ -# ||60808.org/a/*.jpg (easylistchina+easylist.txt: 1780) +# ||60808.org/a/*.jpg (easylistchina.txt: 1771) .60808.org/a/.*\.jpg -# ||600km.com/template/*/ad/ (easylistchina+easylist.txt: 1779) +# ||600km.com/template/*/ad/ (easylistchina.txt: 1770) .600km.com/template/.*/ad/ -# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina+easylist.txt: 1778) +# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina.txt: 1769) .600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ -# ||6.gy/wp-content/uploads/*/ad (easylistchina+easylist.txt: 1777) +# ||6.gy/wp-content/uploads/*/ad (easylistchina.txt: 1768) .6.gy/wp-content/uploads/.*/ad -# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina+easylist.txt: 1776) +# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina.txt: 1767) .6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40\.jpg -# ||6.cn/coop/pub/getRand.php? (easylistchina+easylist.txt: 1775) +# ||6.cn/coop/pub/getRand.php? (easylistchina.txt: 1766) .6.cn/coop/pub/getRand\.php\? -# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina+easylist.txt: 1774) +# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina.txt: 1765) .6.cn/coop/pub/getMiniPage\.php\?src= -# ||5ydj.com/js/shop.js (easylistchina+easylist.txt: 1773) +# ||5ydj.com/js/shop.js (easylistchina.txt: 1764) .5ydj.com/js/shop\.js -# ||5ydj.com/js/hometj.js (easylistchina+easylist.txt: 1772) +# ||5ydj.com/js/hometj.js (easylistchina.txt: 1763) .5ydj.com/js/hometj\.js -# ||5ydj.com/images/banner/ (easylistchina+easylist.txt: 1771) +# ||5ydj.com/images/banner/ (easylistchina.txt: 1762) .5ydj.com/images/banner/ -# ||5y9nfpes.52pk.com^ (easylistchina+easylist.txt: 1770) +# ||5y9nfpes.52pk.com^ (easylistchina.txt: 1761) .5y9nfpes.52pk.com -# ||5vdd.com/opear.jpg (easylistchina+easylist.txt: 1769) +# ||5vdd.com/opear.jpg (easylistchina.txt: 1760) .5vdd.com/opear\.jpg -# ||5vdd.com/iqiyi.jpg (easylistchina+easylist.txt: 1768) +# ||5vdd.com/iqiyi.jpg (easylistchina.txt: 1759) .5vdd.com/iqiyi\.jpg -# ||5vdd.com/ie.gif (easylistchina+easylist.txt: 1767) +# ||5vdd.com/ie.gif (easylistchina.txt: 1758) .5vdd.com/ie\.gif -# ||5vdd.com/2345ws.jpg (easylistchina+easylist.txt: 1766) +# ||5vdd.com/2345ws.jpg (easylistchina.txt: 1757) .5vdd.com/2345ws\.jpg -# ||5tps.com/js/bo_al.js (easylistchina+easylist.txt: 1765) +# ||5tps.com/js/bo_al.js (easylistchina.txt: 1756) .5tps.com/js/bo_al\.js -# ||5tps.com/js/al_ (easylistchina+easylist.txt: 1764) +# ||5tps.com/js/al_ (easylistchina.txt: 1755) .5tps.com/js/al_ -# ||5moe.com/player/ad.xml (easylistchina+easylist.txt: 1763) +# ||5moe.com/player/ad.xml (easylistchina.txt: 1754) .5moe.com/player/ad\.xml -# ||5iyq.com/skin/default/js/topad (easylistchina+easylist.txt: 1762) +# ||5iyq.com/skin/default/js/topad (easylistchina.txt: 1753) .5iyq.com/skin/default/js/topad -# ||5ips.net/love/ (easylistchina+easylist.txt: 1761) +# ||5ips.net/love/ (easylistchina.txt: 1752) .5ips.net/love/ -# ||5imx.com/BBS/image/img/ (easylistchina+easylist.txt: 1760) +# ||5imx.com/BBS/image/img/ (easylistchina.txt: 1751) .5imx.com/BBS/image/img/ -# ||5imx.com/BBS/image/image/ (easylistchina+easylist.txt: 1759) +# ||5imx.com/BBS/image/image/ (easylistchina.txt: 1750) .5imx.com/BBS/image/image/ -# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina+easylist.txt: 1758) +# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina.txt: 1749) .5imx.com/BBS/data/attachment/common/news/ -# ||5ilog.com/qq/js/jsgg.js (easylistchina+easylist.txt: 1757) +# ||5ilog.com/qq/js/jsgg.js (easylistchina.txt: 1748) .5ilog.com/qq/js/jsgg\.js -# ||5icool.org/uploadfile/poster/1080x60. (easylistchina+easylist.txt: 1756) +# ||5icool.org/uploadfile/poster/1080x60. (easylistchina.txt: 1747) .5icool.org/uploadfile/poster/1080x60\. -# ||5i.com/include/js/ad_ (easylistchina+easylist.txt: 1755) +# ||5i.com/include/js/ad_ (easylistchina.txt: 1746) .5i.com/include/js/ad_ -# ||5i.com/images/5ibbtangct.js (easylistchina+easylist.txt: 1754) +# ||5i.com/images/5ibbtangct.js (easylistchina.txt: 1745) .5i.com/images/5ibbtangct\.js -# ||5dmail.net/js/ (easylistchina+easylist.txt: 1753) +# ||5dmail.net/js/ (easylistchina.txt: 1744) .5dmail.net/js/ -# ||5dmail.net/image/ORF_1000.gif (easylistchina+easylist.txt: 1752) +# ||5dmail.net/image/ORF_1000.gif (easylistchina.txt: 1743) .5dmail.net/image/ORF_1000\.gif -# ||5dmail.net/image/ad_ (easylistchina+easylist.txt: 1751) +# ||5dmail.net/image/ad_ (easylistchina.txt: 1742) .5dmail.net/image/ad_ -# ||5dmail.net/image/$object (easylistchina+easylist.txt: 1750) +# ||5dmail.net/image/$object (easylistchina.txt: 1741) .5dmail.net/image/ -# ||5adm.net/79070.gif (easylistchina+easylist.txt: 1749) +# ||5adm.net/79070.gif (easylistchina.txt: 1740) .5adm.net/79070\.gif -# ||5944.net/source/css/images/ad_ (easylistchina+easylist.txt: 1748) +# ||5944.net/source/css/images/ad_ (easylistchina.txt: 1739) .5944.net/source/css/images/ad_ -# ||591hx.com/zyrk_dy/gwjl.html (easylistchina+easylist.txt: 1747) +# ||592siwa.com/tools/ (easylistchina.txt: 1738) +.592siwa.com/tools/ +# ||591hx.com/zyrk_dy/gwjl.html (easylistchina.txt: 1737) .591hx.com/zyrk_dy/gwjl\.html -# ||591hx.com/lunbo/ (easylistchina+easylist.txt: 1746) +# ||591hx.com/lunbo/ (easylistchina.txt: 1736) .591hx.com/lunbo/ -# ||591hx.com/js/floatbox.js (easylistchina+easylist.txt: 1745) +# ||591hx.com/js/floatbox.js (easylistchina.txt: 1735) .591hx.com/js/floatbox\.js -# ||591hx.com/js/dll.js (easylistchina+easylist.txt: 1744) +# ||591hx.com/js/dll.js (easylistchina.txt: 1734) .591hx.com/js/dll\.js -# ||591hx.com/images/0000.jpg (easylistchina+easylist.txt: 1743) +# ||591hx.com/images/0000.jpg (easylistchina.txt: 1733) .591hx.com/images/0000\.jpg -# ||591.xxx/media/banners/ (easylistchina+easylist.txt: 1742) -.591.xxx/media/banners/ -# ||591.xxx/images/*.gif (easylistchina+easylist.txt: 1741) -.591.xxx/images/.*\.gif -# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina+easylist.txt: 1740) +# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina.txt: 1732) .59.36.101.209:888/link/vc_280x192\.gif -# ||58cdn.com.cn/ds/tgbrand/ (easylistchina+easylist.txt: 1739) +# ||58cdn.com.cn/ds/tgbrand/ (easylistchina.txt: 1731) .58cdn.com.cn/ds/tgbrand/ -# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina+easylist.txt: 1738) -# ||58.com/ui7/*banner_ (easylistchina+easylist.txt: 1737) +# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina.txt: 1730) +# ||58.com/ui7/*banner_ (easylistchina.txt: 1729) .58.com/ui7/.*banner_ -# ||58.com/show/ads? (easylistchina+easylist.txt: 1736) +# ||58.com/show/ads? (easylistchina.txt: 1728) .58.com/show/ads\? -# ||58.com/ds/tgbrand/ (easylistchina+easylist.txt: 1735) +# ||58.com/ds/tgbrand/ (easylistchina.txt: 1727) .58.com/ds/tgbrand/ -# ||58.com/ds/jinrong/ban/ (easylistchina+easylist.txt: 1734) +# ||58.com/ds/jinrong/ban/ (easylistchina.txt: 1726) .58.com/ds/jinrong/ban/ -# ||576tv.com/Scripts/home.js (easylistchina+easylist.txt: 1733) +# ||576tv.com/Scripts/home.js (easylistchina.txt: 1725) .576tv.com/Scripts/home\.js -# ||56img.com^*/search-engine-promotion.js (easylistchina+easylist.txt: 1732) +# ||56img.com^*/search-engine-promotion.js (easylistchina.txt: 1724) .56img.com/.*/search-engine-promotion\.js -# ||56img.com^*/baidu-promotion.js (easylistchina+easylist.txt: 1731) +# ||56img.com^*/baidu-promotion.js (easylistchina.txt: 1723) .56img.com/.*/baidu-promotion\.js -# ||56ads.com/js/main.js (easylistchina+easylist.txt: 1730) +# ||56ads.com/js/main.js (easylistchina.txt: 1722) .56ads.com/js/main\.js -# ||56.com/js/promo/ (easylistchina+easylist.txt: 1729) +# ||56.com/js/promo/ (easylistchina.txt: 1721) .56.com/js/promo/ -# ||55music.net/dazhe.jpg (easylistchina+easylist.txt: 1728) +# ||55music.net/dazhe.jpg (easylistchina.txt: 1720) .55music.net/dazhe\.jpg -# ||55aaee.com/detail/ (easylistchina+easylist.txt: 1727) +# ||55aaee.com/detail/ (easylistchina.txt: 1719) .55aaee.com/detail/ -# ||557xx.com/images/ (easylistchina+easylist.txt: 1726) -.557xx.com/images/ -# ||55125.cn/ggclass/ (easylistchina+easylist.txt: 1725) +# ||55125.cn/ggclass/ (easylistchina.txt: 1718) .55125.cn/ggclass/ -# ||54new.com/da/ (easylistchina+easylist.txt: 1723) +# ||54new.com/da/ (easylistchina.txt: 1716) .54new.com/da/ -# ||543et.com/detail/ (easylistchina+easylist.txt: 1722) +# ||543et.com/detail/ (easylistchina.txt: 1715) .543et.com/detail/ -# ||5399.com/poster_js/ (easylistchina+easylist.txt: 1721) +# ||5399.com/poster_js/ (easylistchina.txt: 1714) .5399.com/poster_js/ -# ||52zy.com/other/js/ (easylistchina+easylist.txt: 1720) +# ||52zy.com/other/js/ (easylistchina.txt: 1713) .52zy.com/other/js/ -# ||52wmb.com/2014js/GG_ (easylistchina+easylist.txt: 1719) +# ||52wmb.com/2014js/GG_ (easylistchina.txt: 1712) .52wmb.com/2014js/GG_ -# ||52waha.com/static/js/function_bbs.js (easylistchina+easylist.txt: 1718) +# ||52waha.com/static/js/function_bbs.js (easylistchina.txt: 1711) .52waha.com/static/js/function_bbs\.js -# ||52verycd.com/9241505.gif (easylistchina+easylist.txt: 1717) +# ||52verycd.com/9241505.gif (easylistchina.txt: 1710) .52verycd.com/9241505\.gif -# ||52tian.net/qq/ (easylistchina+easylist.txt: 1716) +# ||52tian.net/qq/ (easylistchina.txt: 1709) .52tian.net/qq/ -# ||52solution.com/js/duilian-bbs.js (easylistchina+easylist.txt: 1715) +# ||52solution.com/js/duilian-bbs.js (easylistchina.txt: 1708) .52solution.com/js/duilian-bbs\.js -# ||52rd.com/Pic2/*_600_60. (easylistchina+easylist.txt: 1714) +# ||52rd.com/Pic2/*_600_60. (easylistchina.txt: 1707) .52rd.com/Pic2/.*_600_60\. -# ||52rd.com/Pic/Click/ (easylistchina+easylist.txt: 1713) +# ||52rd.com/Pic/Click/ (easylistchina.txt: 1706) .52rd.com/Pic/Click/ -# ||52pk.com/jkjs/imp- (easylistchina+easylist.txt: 1712) +# ||52pk.com/jkjs/imp- (easylistchina.txt: 1705) .52pk.com/jkjs/imp- -# ||52pk.com/files/150120/1289038_105950_1.gif (easylistchina+easylist.txt: 1711) -.52pk.com/files/150120/1289038_105950_1\.gif -# ||52kdm.com/static/52kdm/m/ (easylistchina+easylist.txt: 1710) +# ||52kdm.com/static/52kdm/m/ (easylistchina.txt: 1704) .52kdm.com/static/52kdm/m/ -# ||52jt.net/images/banner_taozhuang.jpg (easylistchina+easylist.txt: 1709) +# ||52jt.net/images/banner_taozhuang.jpg (easylistchina.txt: 1703) .52jt.net/images/banner_taozhuang\.jpg -# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina+easylist.txt: 1708) +# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina.txt: 1702) .52jifenbao.net/wp-content/uploads/2014/04/xinren\.jpg -# ||52hardware.com/topic/a2 (easylistchina+easylist.txt: 1707) +# ||52hardware.com/topic/a2 (easylistchina.txt: 1701) .52hardware.com/topic/a2 -# ||52hardware.com/images/baimg/ (easylistchina+easylist.txt: 1706) +# ||52hardware.com/images/baimg/ (easylistchina.txt: 1700) .52hardware.com/images/baimg/ -# ||52fanquan.com/index.php?i= (easylistchina+easylist.txt: 1705) +# ||52fanquan.com/index.php?i= (easylistchina.txt: 1699) .52fanquan.com/index\.php\?i= -# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina+easylist.txt: 1704) +# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina.txt: 1698) .52che.com/NewLocal/TemplateHtml/headflash1_ -# ||52che.com/Inc/FooterComm_ (easylistchina+easylist.txt: 1703) +# ||52che.com/Inc/FooterComm_ (easylistchina.txt: 1697) .52che.com/Inc/FooterComm_ -# ||52ch.net/data/attachment/portal/ (easylistchina+easylist.txt: 1702) +# ||52ch.net/data/attachment/portal/ (easylistchina.txt: 1696) .52ch.net/data/attachment/portal/ -# ||52ch.net/data/advimg/ (easylistchina+easylist.txt: 1701) +# ||52ch.net/data/advimg/ (easylistchina.txt: 1695) .52ch.net/data/advimg/ -# ||521000.com/com/BBS_AD. (easylistchina+easylist.txt: 1700) +# ||521000.com/com/BBS_AD. (easylistchina.txt: 1694) .521000.com/com/BBS_AD\. -# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina+easylist.txt: 1699) +# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina.txt: 1693) .521000.com/bbs/inc/Dv_Adv\.js -# ||520rr.com*/baidu/ (easylistchina+easylist.txt: 1698) +# ||520rr.com*/baidu/ (easylistchina.txt: 1692) .520rr.com*./(.*/)?baidu/ -# ||520kankan.com/960x80.gif (easylistchina+easylist.txt: 1697) +# ||520kankan.com/960x80.gif (easylistchina.txt: 1691) .520kankan.com/960x80\.gif -# ||520bdy.com/images/888.jpg (easylistchina+easylist.txt: 1696) +# ||520bdy.com/images/888.jpg (easylistchina.txt: 1690) .520bdy.com/images/888\.jpg -# ||51zxw.net/images/zhaopin.jpg (easylistchina+easylist.txt: 1695) +# ||51zxw.net/images/zhaopin.jpg (easylistchina.txt: 1689) .51zxw.net/images/zhaopin\.jpg -# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina+easylist.txt: 1694) +# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina.txt: 1688) .51zxw.net/fzsplayer/adtextzxw\.asp\? -# ||51zxw.net/adad/ (easylistchina+easylist.txt: 1693) +# ||51zxw.net/adad/ (easylistchina.txt: 1687) .51zxw.net/adad/ -# ||51zxav.net^$subdocument (easylistchina+easylist.txt: 1692) -.51zxav.net -# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina+easylist.txt: 1691) +# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina.txt: 1686) .51ztzj.com/res/web/img/pic/inshow\.jpg -# ||51ztzj.com/res/web/img/download_sign (easylistchina+easylist.txt: 1690) +# ||51ztzj.com/res/web/img/download_sign (easylistchina.txt: 1685) .51ztzj.com/res/web/img/download_sign -# ||51ztzj.com/js/you.js (easylistchina+easylist.txt: 1689) +# ||51ztzj.com/js/you.js (easylistchina.txt: 1684) .51ztzj.com/js/you\.js -# ||51xxs.com/users/public/*.swf (easylistchina+easylist.txt: 1688) +# ||51xxs.com/users/public/*.swf (easylistchina.txt: 1683) .51xxs.com/users/public/.*\.swf -# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina+easylist.txt: 1687) +# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina.txt: 1682) .51xuediannao.com/plus/mytag_js\.php\?aid= -# ||51wan.com/web/v1/index/images/spec/ (easylistchina+easylist.txt: 1686) +# ||51wan.com/web/v1/index/images/spec/ (easylistchina.txt: 1681) .51wan.com/web/v1/index/images/spec/ -# ||51wan.com/img/js/xyadjs_ (easylistchina+easylist.txt: 1685) +# ||51wan.com/img/js/xyadjs_ (easylistchina.txt: 1680) .51wan.com/img/js/xyadjs_ -# ||51testing.com/imagesnew/indextop.jpg (easylistchina+easylist.txt: 1684) +# ||51testing.com/imagesnew/indextop.jpg (easylistchina.txt: 1679) .51testing.com/imagesnew/indextop\.jpg -# ||51testing.com/imagesnew/960x101.jpg (easylistchina+easylist.txt: 1683) +# ||51testing.com/imagesnew/960x101.jpg (easylistchina.txt: 1678) .51testing.com/imagesnew/960x101\.jpg -# ||51testing.com/imagesnew/642x53.gif (easylistchina+easylist.txt: 1682) +# ||51testing.com/imagesnew/642x53.gif (easylistchina.txt: 1677) .51testing.com/imagesnew/642x53\.gif -# ||51testing.com/imagesnew/307x90.gif (easylistchina+easylist.txt: 1681) +# ||51testing.com/imagesnew/307x90.gif (easylistchina.txt: 1676) .51testing.com/imagesnew/307x90\.gif -# ||51testing.com/imagesnew/*.swf (easylistchina+easylist.txt: 1680) +# ||51testing.com/imagesnew/*.swf (easylistchina.txt: 1675) .51testing.com/imagesnew/.*\.swf -# ||51testing.com/images/sz51com.swf (easylistchina+easylist.txt: 1679) +# ||51testing.com/images/sz51com.swf (easylistchina.txt: 1674) .51testing.com/images/sz51com\.swf -# ||51test.net/js_new/baidu/ (easylistchina+easylist.txt: 1678) +# ||51test.net/js_new/baidu/ (easylistchina.txt: 1673) .51test.net/js_new/baidu/ -# ||51test.net/js_new/*_right_middle.js (easylistchina+easylist.txt: 1677) +# ||51test.net/js_new/*_right_middle.js (easylistchina.txt: 1672) .51test.net/js_new/.*_right_middle\.js -# ||51test.net/js_new/*_content_up.js (easylistchina+easylist.txt: 1676) +# ||51test.net/js_new/*_content_up.js (easylistchina.txt: 1671) .51test.net/js_new/.*_content_up\.js -# ||51test.net/js_new/*_content_down.js (easylistchina+easylist.txt: 1675) +# ||51test.net/js_new/*_content_down.js (easylistchina.txt: 1670) .51test.net/js_new/.*_content_down\.js -# ||51test.net/js_new/*_banner.js (easylistchina+easylist.txt: 1674) +# ||51test.net/js_new/*_banner.js (easylistchina.txt: 1669) .51test.net/js_new/.*_banner\.js -# ||51test.net/baiduunion/ (easylistchina+easylist.txt: 1673) +# ||51test.net/baiduunion/ (easylistchina.txt: 1668) .51test.net/baiduunion/ -# ||51t.com^$subdocument (easylistchina+easylist.txt: 1672) +# ||51t.com^$subdocument (easylistchina.txt: 1667) .51t.com -# ||51ou.com/images/taoping (easylistchina+easylist.txt: 1671) +# ||51ou.com/images/taoping (easylistchina.txt: 1666) .51ou.com/images/taoping -# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina+easylist.txt: 1670) +# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina.txt: 1665) .51netu.com.cn/index\.php/index/advShow\?adpid= -# ||51img.ajiang.net^*.gif (easylistchina+easylist.txt: 1668) +# ||51img.ajiang.net^*.gif (easylistchina.txt: 1663) .51img.ajiang.net/.*\.gif -# ||51hanhua.com/2013/ (easylistchina+easylist.txt: 1667) +# ||51hanhua.com/2013/ (easylistchina.txt: 1662) .51hanhua.com/2013/ -# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina+easylist.txt: 1666) +# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina.txt: 1661) .51gugu.com/popwin/AutoHAdShow\.aspx -# ||51gaojian.com/js/tj.js (easylistchina+easylist.txt: 1665) +# ||51gaojian.com/js/tj.js (easylistchina.txt: 1660) .51gaojian.com/js/tj\.js -# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina+easylist.txt: 1664) +# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina.txt: 1659) .51fanli.net/misc/images/invite-v4/banner\.gif -# ||51cto.com/js/blog_top_list.php (easylistchina+easylist.txt: 1663) +# ||51cto.com/js/blog_top_list.php (easylistchina.txt: 1658) .51cto.com/js/blog_top_list\.php -# ||51credit.com/credit/images/*/xyb (easylistchina+easylist.txt: 1662) +# ||51credit.com/credit/images/*/xyb (easylistchina.txt: 1657) .51credit.com/credit/images/.*/xyb -# ||51bczx.com/js/float.js (easylistchina+easylist.txt: 1661) +# ||51bczx.com/js/float.js (easylistchina.txt: 1656) .51bczx.com/js/float\.js -# ||51bczx.com/img/51bczx/ (easylistchina+easylist.txt: 1660) +# ||51bczx.com/img/51bczx/ (easylistchina.txt: 1655) .51bczx.com/img/51bczx/ -# ||51bczx.com/attachment/Mon_ (easylistchina+easylist.txt: 1659) +# ||51bczx.com/attachment/Mon_ (easylistchina.txt: 1654) .51bczx.com/attachment/Mon_ -# ||51ape.com/d/js/ (easylistchina+easylist.txt: 1658) +# ||51ape.com/d/js/ (easylistchina.txt: 1653) .51ape.com/d/js/ -# ||5185.cc/forum/*.gif (easylistchina+easylist.txt: 1657) +# ||5185.cc/forum/*.gif (easylistchina.txt: 1652) .5185.cc/forum/.*\.gif -# ||5184.com/gk2014/ebuy (easylistchina+easylist.txt: 1656) +# ||5184.com/gk2014/ebuy (easylistchina.txt: 1651) .5184.com/gk2014/ebuy -# ||5184.com/gk2014/*_315. (easylistchina+easylist.txt: 1655) +# ||5184.com/gk2014/*_315. (easylistchina.txt: 1650) .5184.com/gk2014/.*_315\. -# ||5184.com/gk20*_240. (easylistchina+easylist.txt: 1654) +# ||5184.com/gk20*_240. (easylistchina.txt: 1649) .5184.com/gk20.*_240\. -# ||5184.com/container/html/news_view_gg (easylistchina+easylist.txt: 1653) +# ||5184.com/container/html/news_view_gg (easylistchina.txt: 1648) .5184.com/container/html/news_view_gg -# ||51688.cc/ya/ (easylistchina+easylist.txt: 1652) +# ||51688.cc/ya/ (easylistchina.txt: 1647) .51688.cc/ya/ -# ||512ms.com/js/index_ggw_show.js (easylistchina+easylist.txt: 1651) +# ||512ms.com/js/index_ggw_show.js (easylistchina.txt: 1646) .512ms.com/js/index_ggw_show\.js -# ||51.com/up/bdfmt/ (easylistchina+easylist.txt: 1650) +# ||51.com/up/bdfmt/ (easylistchina.txt: 1645) .51.com/up/bdfmt/ -# ||506ys.com/js/200.js (easylistchina+easylist.txt: 1649) +# ||506ys.com/js/200.js (easylistchina.txt: 1644) .506ys.com/js/200\.js -# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina+easylist.txt: 1648) +# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina.txt: 1643) .5068.com/uploads/allimg/150116/71_150116175734_1\.jpg -# ||5011.net/template/images/*0.gif (easylistchina+easylist.txt: 1647) +# ||5011.net/template/images/*0.gif (easylistchina.txt: 1642) .5011.net/template/images/.*0\.gif -# ||500xxxx.com/go.js (easylistchina+easylist.txt: 1646) +# ||500xxxx.com/go.js (easylistchina.txt: 1641) .500xxxx.com/go\.js -# ||50.7.31.230/ads_ (easylistchina+easylist.txt: 1645) +# ||50.7.31.230/ads_ (easylistchina.txt: 1640) .50.7.31.230/ads_ -# ||50.115.123.38/ad/ (easylistchina+easylist.txt: 1644) -.50.115.123.38/ad/ -# ||46g.cn/images/top.gif (easylistchina+easylist.txt: 1643) +# ||4kong.com/xk.jpg (easylistchina.txt: 1639) +.4kong.com/xk\.jpg +# ||46g.cn/images/top.gif (easylistchina.txt: 1638) .46g.cn/images/top\.gif -# ||464mnk.com/templets/new/static/js/common.js (easylistchina+easylist.txt: 1642) +# ||464mnk.com/templets/new/static/js/common.js (easylistchina.txt: 1637) .464mnk.com/templets/new/static/js/common\.js -# ||44921.cn/ajsv1/flashad_ (easylistchina+easylist.txt: 1641) +# ||44921.cn/ajsv1/flashad_ (easylistchina.txt: 1636) .44921.cn/ajsv1/flashad_ -# ||43aiai.com/js/zhengzhangtonglang.js (easylistchina+easylist.txt: 1640) -.43aiai.com/js/zhengzhangtonglang\.js -# ||43aiai.com/js/dibu.js (easylistchina+easylist.txt: 1639) -.43aiai.com/js/dibu\.js -# ||43aiai.com/js/cps.js (easylistchina+easylist.txt: 1638) -.43aiai.com/js/cps\.js -# ||4399.com/loadimg/loading.htm (easylistchina+easylist.txt: 1637) +# ||4399.com/loadimg/loading.htm (easylistchina.txt: 1635) .4399.com/loadimg/loading\.htm -# ||4399.com/loadimg/iframe_ (easylistchina+easylist.txt: 1636) +# ||4399.com/loadimg/iframe_ (easylistchina.txt: 1634) .4399.com/loadimg/iframe_ -# ||4399.com/expire1day/ (easylistchina+easylist.txt: 1635) +# ||4399.com/expire1day/ (easylistchina.txt: 1633) .4399.com/expire1day/ -# ||4399.com/baiduad/ (easylistchina+easylist.txt: 1634) +# ||4399.com/baiduad/ (easylistchina.txt: 1632) .4399.com/baiduad/ -# ||40wan.com/js/www2/ (easylistchina+easylist.txt: 1633) +# ||40wan.com/js/www2/ (easylistchina.txt: 1631) .40wan.com/js/www2/ -# ||40407.com/templets/default/images/index.js (easylistchina+easylist.txt: 1632) +# ||40407.com/templets/default/images/index.js (easylistchina.txt: 1630) .40407.com/templets/default/images/index\.js -# ||40407.com/plus_rpad_ (easylistchina+easylist.txt: 1631) +# ||40407.com/plus_rpad_ (easylistchina.txt: 1629) .40407.com/plus_rpad_ -# ||40407.com/plus/rpad/ (easylistchina+easylist.txt: 1630) +# ||40407.com/plus/rpad/ (easylistchina.txt: 1628) .40407.com/plus/rpad/ -# ||40407.com/plus/pthc/zqdl.php? (easylistchina+easylist.txt: 1629) +# ||40407.com/plus/pthc/zqdl.php? (easylistchina.txt: 1627) .40407.com/plus/pthc/zqdl\.php\? -# ||4020.la/hi/ (easylistchina+easylist.txt: 1628) +# ||4020.la/hi/ (easylistchina.txt: 1626) .4020.la/hi/ -# ||400516.com/data/attachment/album/ (easylistchina+easylist.txt: 1627) +# ||400516.com/data/attachment/album/ (easylistchina.txt: 1625) .400516.com/data/attachment/album/ -# ||3sjt.com/3sjtimg/ (easylistchina+easylist.txt: 1626) +# ||3sjt.com/3sjtimg/ (easylistchina.txt: 1624) .3sjt.com/3sjtimg/ -# ||3qdati.com/gg.gif (easylistchina+easylist.txt: 1625) +# ||3qdati.com/gg.gif (easylistchina.txt: 1623) .3qdati.com/gg\.gif -# ||3qcc.com/js/bb.js (easylistchina+easylist.txt: 1624) +# ||3qcc.com/js/bb.js (easylistchina.txt: 1622) .3qcc.com/js/bb\.js -# ||3h3.com/js/show/ (easylistchina+easylist.txt: 1623) +# ||3h3.com/js/show/ (easylistchina.txt: 1621) .3h3.com/js/show/ -# ||3h3.com/js/listad.js (easylistchina+easylist.txt: 1622) +# ||3h3.com/js/listad.js (easylistchina.txt: 1620) .3h3.com/js/listad\.js -# ||3h3.com/js/homepage.js (easylistchina+easylist.txt: 1621) +# ||3h3.com/js/homepage.js (easylistchina.txt: 1619) .3h3.com/js/homepage\.js -# ||3g518.com/piaofujs/ (easylistchina+easylist.txt: 1620) -.3g518.com/piaofujs/ -# ||3g518.com/mb/000000/moban21/js/tcad.js (easylistchina+easylist.txt: 1619) -.3g518.com/mb/000000/moban21/js/tcad\.js -# ||3g.cn/js/noblockme/ (easylistchina+easylist.txt: 1618) +# ||3g.cn/js/noblockme/ (easylistchina.txt: 1618) .3g.cn/js/noblockme/ -# ||3dm.huya.com^ (easylistchina+easylist.txt: 1617) +# ||3dm.huya.com^ (easylistchina.txt: 1617) .3dm.huya.com -# ||3d66.com/gx2013g/ (easylistchina+easylist.txt: 1616) +# ||3dezu.cn/zt/8866.gif (easylistchina.txt: 1616) +.3dezu.cn/zt/8866\.gif +# ||3d66.com/gx2013g/ (easylistchina.txt: 1615) .3d66.com/gx2013g/ -# ||3d66.com/gg-swf/ (easylistchina+easylist.txt: 1615) +# ||3d66.com/gg-swf/ (easylistchina.txt: 1614) .3d66.com/gg-swf/ -# ||3boys2girls.com^$subdocument (easylistchina+easylist.txt: 1614) +# ||3boys2girls.com^$subdocument (easylistchina.txt: 1613) .3boys2girls.com -# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina+easylist.txt: 1613) +# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina.txt: 1612) .3boys2girls.com/templates/default/2013/life/160b5\.js -# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina+easylist.txt: 1612) +# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina.txt: 1611) .3boys2girls.com/newfile/image2010/banner_housead_ -# ||3987.com/images/*.gif (easylistchina+easylist.txt: 1611) -.3987.com/images/.*\.gif -# ||39.net/rel/k13.php?adid= (easylistchina+easylist.txt: 1610) +# ||3987.com/images/ (easylistchina.txt: 1610) +.3987.com/images/ +# ||39.net/rel/k13.php?adid= (easylistchina.txt: 1609) .39.net/rel/k13\.php\?adid= -# ||39.net/js/google/ (easylistchina+easylist.txt: 1609) +# ||39.net/js/google/ (easylistchina.txt: 1608) .39.net/js/google/ -# ||39.net/js/baidu/ (easylistchina+easylist.txt: 1608) +# ||39.net/js/baidu/ (easylistchina.txt: 1607) .39.net/js/baidu/ -# ||39.net/creative/ (easylistchina+easylist.txt: 1607) +# ||39.net/creative/ (easylistchina.txt: 1606) .39.net/creative/ -# ||39.net/client/39/c.js (easylistchina+easylist.txt: 1606) +# ||39.net/client/39/c.js (easylistchina.txt: 1605) .39.net/client/39/c\.js -# ||38v.com/38v-b.gif (easylistchina+easylist.txt: 1605) +# ||38v.com/38v-b.gif (easylistchina.txt: 1604) .38v.com/38v-b\.gif -# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina+easylist.txt: 1604) +# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina.txt: 1603) .36tv.cn/statics/images/jinhuatv/ad -# ||36tv.cn/ad_pic/ (easylistchina+easylist.txt: 1603) +# ||36tv.cn/ad_pic/ (easylistchina.txt: 1602) .36tv.cn/ad_pic/ -# ||36dm.com/images/950_90.jpg (easylistchina+easylist.txt: 1602) -.36dm.com/images/950_90\.jpg -# ||36dm.com/images/250_250.jpg (easylistchina+easylist.txt: 1601) -.36dm.com/images/250_250\.jpg -# ||36dm.com/images/*acgsou.gif (easylistchina+easylist.txt: 1600) +# ||36dm.com/js/nu (easylistchina.txt: 1601) +.36dm.com/js/nu +# ||36dm.com/images/*acgsou.gif (easylistchina.txt: 1600) .36dm.com/images/.*acgsou\.gif -# ||365xs.org/js/xiayizhang.js (easylistchina+easylist.txt: 1599) +# ||365xs.org/js/xiayizhang.js (easylistchina.txt: 1599) .365xs.org/js/xiayizhang\.js -# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina+easylist.txt: 1598) +# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina.txt: 1598) .365kl.net/template/eis_x3_city_a_1/eis/baobao\.gif -# ||3634.com/qq/ (easylistchina+easylist.txt: 1597) +# ||3634.com/qq/ (easylistchina.txt: 1597) .3634.com/qq/ -# ||360safego.com^ (easylistchina+easylist.txt: 1596) +# ||360safego.com^ (easylistchina.txt: 1596) .360safego.com -# ||360kan.com/special/iframe/ (easylistchina+easylist.txt: 1595) +# ||360kan.com/special/iframe/ (easylistchina.txt: 1595) .360kan.com/special/iframe/ -# ||360bo.cc/js/float.js (easylistchina+easylist.txt: 1594) +# ||360bo.cc/js/float.js (easylistchina.txt: 1594) .360bo.cc/js/float\.js -# ||360.cn/index/showjokes?callback= (easylistchina+easylist.txt: 1593) +# ||360.cn/index/showjokes?callback= (easylistchina.txt: 1593) .360.cn/index/showjokes\?callback= -# ||360.cn/festival_zone.html (easylistchina+easylist.txt: 1592) +# ||360.cn/festival_zone.html (easylistchina.txt: 1592) .360.cn/festival_zone\.html -# ||360-bo.com/js/float2.js (easylistchina+easylist.txt: 1591) +# ||360-bo.com/js/float2.js (easylistchina.txt: 1591) .360-bo.com/js/float2\.js -# ||360-bo.com/js/float.js (easylistchina+easylist.txt: 1590) +# ||360-bo.com/js/float.js (easylistchina.txt: 1590) .360-bo.com/js/float\.js -# ||35zww.com/zzzjs/ (easylistchina+easylist.txt: 1589) -.35zww.com/zzzjs/ -# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina+easylist.txt: 1588) +# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina.txt: 1589) .356ys.com/template/tieniudy/images/g_js/ -# ||3520.cc/js/3520/ (easylistchina+easylist.txt: 1587) +# ||3520.cc/js/3520/ (easylistchina.txt: 1588) .3520.cc/js/3520/ -# ||3464.com/w/950x90.js (easylistchina+easylist.txt: 1586) -.3464.com/w/950x90\.js -# ||3464.com/Script/RightWindows.js (easylistchina+easylist.txt: 1585) +# ||3464.com/Script/RightWindows.js (easylistchina.txt: 1587) .3464.com/Script/RightWindows\.js -# ||33zxzx.com/go.js (easylistchina+easylist.txt: 1584) -.33zxzx.com/go\.js -# ||33xs.com/js/mg (easylistchina+easylist.txt: 1583) +# ||33xs.com/js/mg (easylistchina.txt: 1586) .33xs.com/js/mg -# ||33xs.com/js/g (easylistchina+easylist.txt: 1582) +# ||33xs.com/js/g (easylistchina.txt: 1585) .33xs.com/js/g -# ||33xs.com/js/d.js (easylistchina+easylist.txt: 1581) +# ||33xs.com/js/d.js (easylistchina.txt: 1584) .33xs.com/js/d\.js -# ||33xs.com/hot/ (easylistchina+easylist.txt: 1580) +# ||33xs.com/hot/ (easylistchina.txt: 1583) .33xs.com/hot/ -# ||33lc.com/lvcha/jquery.gotop.js (easylistchina+easylist.txt: 1579) +# ||33lc.com/lvcha/jquery.gotop.js (easylistchina.txt: 1582) .33lc.com/lvcha/jquery\.gotop\.js -# ||33av.net/Uploads/ad/ (easylistchina+easylist.txt: 1578) +# ||33av.net/Uploads/ad/ (easylistchina.txt: 1581) .33av.net/Uploads/ad/ -# ||3399.com/Common/OnlineServer.html (easylistchina+easylist.txt: 1577) +# ||3399.com/Common/OnlineServer.html (easylistchina.txt: 1580) .3399.com/Common/OnlineServer\.html -# ||3399.com/act/fk/ (easylistchina+easylist.txt: 1576) +# ||3399.com/act/fk/ (easylistchina.txt: 1579) .3399.com/act/fk/ -# ||3399.com/act/5599/js/kuang (easylistchina+easylist.txt: 1575) +# ||3399.com/act/5599/js/kuang (easylistchina.txt: 1578) .3399.com/act/5599/js/kuang -# ||3344bt.com^*.js (easylistchina+easylist.txt: 1574) -.3344bt.com/.*\.js -# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina+easylist.txt: 1573) +# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina.txt: 1577) .33.autoimg.cn/t/Adhtmlnet/.*\.swf -# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina+easylist.txt: 1572) +# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina.txt: 1576) .33.autoimg.cn/t/Adhtmlnet/.*\.jpg -# ||33.autoimg.cn/homeurl/*.js (easylistchina+easylist.txt: 1571) +# ||33.autoimg.cn/homeurl/*.js (easylistchina.txt: 1575) .33.autoimg.cn/homeurl/.*\.js -# ||33.autohome.com.cn^$object,script (easylistchina+easylist.txt: 1570) +# ||33.autohome.com.cn^$object,script (easylistchina.txt: 1574) .33.autohome.com.cn -# ||327qq.com/images/ (easylistchina+easylist.txt: 1569) -.327qq.com/images/ -# ||32666.com/img/ (easylistchina+easylist.txt: 1568) +# ||32666.com/img/ (easylistchina.txt: 1573) .32666.com/img/ -# ||32666.com/ads/ (easylistchina+easylist.txt: 1567) +# ||32666.com/ads/ (easylistchina.txt: 1572) .32666.com/ads/ -# ||324324.cn/zz/ (easylistchina+easylist.txt: 1566) +# ||324324.cn/zz/ (easylistchina.txt: 1571) .324324.cn/zz/ -# ||32345sf.com^ (easylistchina+easylist.txt: 1565) -.32345sf.com -# ||3199.cn/ggs_ (easylistchina+easylist.txt: 1564) +# ||3199.cn/ggs_ (easylistchina.txt: 1570) .3199.cn/ggs_ -# ||315che.com/upload_img/aimg/ (easylistchina+easylist.txt: 1563) +# ||315che.com/upload_img/aimg/ (easylistchina.txt: 1569) .315che.com/upload_img/aimg/ -# ||315che.com/addata/ (easylistchina+easylist.txt: 1562) +# ||315che.com/addata/ (easylistchina.txt: 1568) .315che.com/addata/ -# ||3155.com/js/ifile (easylistchina+easylist.txt: 1561) +# ||3155.com/js/ifile (easylistchina.txt: 1567) .3155.com/js/ifile -# ||310v.com/js/f2.js.js (easylistchina+easylist.txt: 1560) +# ||310v.com/js/f2.js.js (easylistchina.txt: 1566) .310v.com/js/f2\.js\.js -# ||310v.com/images/wap_520x60.gif (easylistchina+easylist.txt: 1559) +# ||310v.com/images/wap_520x60.gif (easylistchina.txt: 1565) .310v.com/images/wap_520x60\.gif -# ||310v.com/images/tmp_adpic (easylistchina+easylist.txt: 1558) +# ||310v.com/images/tmp_adpic (easylistchina.txt: 1564) .310v.com/images/tmp_adpic -# ||310v.com/images/lingdai.gif (easylistchina+easylist.txt: 1557) +# ||310v.com/images/lingdai.gif (easylistchina.txt: 1563) .310v.com/images/lingdai\.gif -# ||310v.com/adh.js (easylistchina+easylist.txt: 1556) +# ||310v.com/adh.js (easylistchina.txt: 1562) .310v.com/adh\.js -# ||2zzt.com/images/ (easylistchina+easylist.txt: 1555) +# ||2zzt.com/images/ (easylistchina.txt: 1561) .2zzt.com/images/ -# ||2ujj.com/js/bo.js (easylistchina+easylist.txt: 1554) +# ||2ujj.com/js/bo.js (easylistchina.txt: 1560) .2ujj.com/js/bo\.js -# ||2u.com.cn/js/2012_movie.js (easylistchina+easylist.txt: 1553) +# ||2u.com.cn/js/2012_movie.js (easylistchina.txt: 1559) .2u.com.cn/js/2012_movie\.js -# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina+easylist.txt: 1552) +# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina.txt: 1558) .2u-img.com.cn/modules/38_module_images/4747\.jpg -# ||2muslim.com/data/attachment/portal/ (easylistchina+easylist.txt: 1551) +# ||2muslim.com/data/attachment/portal/ (easylistchina.txt: 1557) .2muslim.com/data/attachment/portal/ -# ||2kk.cc/Tpl/black/images/2k-*.gif (easylistchina+easylist.txt: 1550) -.2kk.cc/Tpl/black/images/2k-.*\.gif -# ||2chcn.com/img/*336x280 (easylistchina+easylist.txt: 1549) +# ||2chcn.com/img/3171150.jpg (easylistchina.txt: 1556) +.2chcn.com/img/3171150\.jpg +# ||2chcn.com/img/*336x280 (easylistchina.txt: 1555) .2chcn.com/img/.*336x280 -# ||2ccc.com/images/WebXone.gif (easylistchina+easylist.txt: 1548) +# ||2ccc.com/images/WebXone.gif (easylistchina.txt: 1554) .2ccc.com/images/WebXone\.gif -# ||2ccc.com/images/sino.gif (easylistchina+easylist.txt: 1547) +# ||2ccc.com/images/sino.gif (easylistchina.txt: 1553) .2ccc.com/images/sino\.gif -# ||2ccc.com/images/show/ (easylistchina+easylist.txt: 1546) +# ||2ccc.com/images/show/ (easylistchina.txt: 1552) .2ccc.com/images/show/ -# ||2btu.com/gg.jpg (easylistchina+easylist.txt: 1545) +# ||2btu.com/gg.jpg (easylistchina.txt: 1551) .2btu.com/gg\.jpg -# ||28hse.com/adsman/www/images/ (easylistchina+easylist.txt: 1544) +# ||28hse.com/adsman/www/images/ (easylistchina.txt: 1550) .28hse.com/adsman/www/images/ -# ||27.cn/iframe/r-con1. (easylistchina+easylist.txt: 1543) -.27.cn/iframe/r-con1\. -# ||27.255.67.120^ (easylistchina+easylist.txt: 1542) +# ||27.255.67.120^ (easylistchina.txt: 1549) .27.255.67.120 -# ||265.com/static/pages/img/*_ads. (easylistchina+easylist.txt: 1541) +# ||268de.com/js/ (easylistchina.txt: 1548) +.268de.com/js/ +# ||265.com/static/pages/img/*_ads. (easylistchina.txt: 1547) .265.com/static/pages/img/.*_ads\. -# ||25xz.com/degeye.gif (easylistchina+easylist.txt: 1540) +# ||25xz.com/degeye.gif (easylistchina.txt: 1546) .25xz.com/degeye\.gif -# ||25xz.com/ads/ (easylistchina+easylist.txt: 1539) +# ||25xz.com/ads/ (easylistchina.txt: 1545) .25xz.com/ads/ -# ||258zb.com/jsData/users.aspx (easylistchina+easylist.txt: 1538) +# ||258zb.com/jsData/users.aspx (easylistchina.txt: 1544) .258zb.com/jsData/users\.aspx -# ||2500sz.com/site/ (easylistchina+easylist.txt: 1537) +# ||2500sz.com^*/655x60. (easylistchina.txt: 1543) +.2500sz.com/.*/655x60\. +# ||2500sz.com/site/ (easylistchina.txt: 1542) .2500sz.com/site/ -# ||2500sz.com/ad20 (easylistchina+easylist.txt: 1536) +# ||2500sz.com/ad20 (easylistchina.txt: 1541) .2500sz.com/ad20 -# ||23youku.com/Runtime/js/ (easylistchina+easylist.txt: 1535) +# ||23zw.com/sda/mediav.html (easylistchina.txt: 1540) +.23zw.com/sda/mediav\.html +# ||23youku.com/Runtime/js/ (easylistchina.txt: 1539) .23youku.com/Runtime/js/ -# ||23wx.com/scripts/style_tan.js (easylistchina+easylist.txt: 1534) +# ||23wx.com/scripts/style_tan.js (easylistchina.txt: 1538) .23wx.com/scripts/style_tan\.js -# ||23wx.com/scripts/right.html (easylistchina+easylist.txt: 1533) -.23wx.com/scripts/right\.html -# ||23sc.cn*/007/js/$script (easylistchina+easylist.txt: 1532) +# ||23sc.cn*/007/js/$script (easylistchina.txt: 1537) .23sc.cn*./(.*/)?007/js/ -# ||2345.com/xiaoimg/swf/flash/ (easylistchina+easylist.txt: 1531) +# ||2345.com/xiaoimg/swf/flash/ (easylistchina.txt: 1536) .2345.com/xiaoimg/swf/flash/ -# ||2345.com/right/site/like/gul_default.js (easylistchina+easylist.txt: 1530) +# ||2345.com/right/site/like/gul_default.js (easylistchina.txt: 1535) .2345.com/right/site/like/gul_default\.js -# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina+easylist.txt: 1529) +# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina.txt: 1534) .2345.com/jifenimg/img/common/logo\.png -# ||2345.com/images/tgPic/gameTmp- (easylistchina+easylist.txt: 1528) +# ||2345.com/images/tgPic/gameTmp- (easylistchina.txt: 1533) .2345.com/images/tgPic/gameTmp- -# ||2345.com/duoteimg/duotehtml/ (easylistchina+easylist.txt: 1527) +# ||2345.com/duoteimg/duotehtml/ (easylistchina.txt: 1532) .2345.com/duoteimg/duotehtml/ -# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina+easylist.txt: 1526) +# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina.txt: 1531) .2345.com/dianyingimg/tv/ivy/taobao/ -# ||2345.com/dianyingimg/ads/ (easylistchina+easylist.txt: 1525) +# ||2345.com/dianyingimg/ads/ (easylistchina.txt: 1530) .2345.com/dianyingimg/ads/ -# ||2345.com/data/part/part_*_bottom (easylistchina+easylist.txt: 1524) +# ||2345.com/data/part/part_*_bottom (easylistchina.txt: 1529) .2345.com/data/part/part_.*_bottom -# ||2345.com/data/part/part_*_bann (easylistchina+easylist.txt: 1523) +# ||2345.com/data/part/part_*_bann (easylistchina.txt: 1528) .2345.com/data/part/part_.*_bann -# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina+easylist.txt: 1522) +# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina.txt: 1527) .2300sjz.com/liv_loadfile/folder81/fold -# ||23.252.162.52/z.jpg (easylistchina+easylist.txt: 1521) -.23.252.162.52/z\.jpg -# ||22mt.la/bookpic/00*.jpg (easylistchina+easylist.txt: 1520) +# ||22mt.la/bookpic/00*.jpg (easylistchina.txt: 1526) .22mt.la/bookpic/00.*\.jpg -# ||2258.com/new_static/*/ad/ (easylistchina+easylist.txt: 1519) +# ||2258.com/new_static/*/ad/ (easylistchina.txt: 1525) .2258.com/new_static/.*/ad/ -# ||2233777.com/bak/ad/ (easylistchina+easylist.txt: 1518) +# ||2233777.com/bak/ad/ (easylistchina.txt: 1524) .2233777.com/bak/ad/ -# ||222dz.com/js/ (easylistchina+easylist.txt: 1517) -.222dz.com/js/ -# ||222.47.26.21/m.js (easylistchina+easylist.txt: 1516) +# ||222.47.26.21/m.js (easylistchina.txt: 1523) .222.47.26.21/m\.js -# ||222.45.224.77^*.js (easylistchina+easylist.txt: 1515) +# ||222.45.224.77^*.js (easylistchina.txt: 1522) .222.45.224.77/.*\.js -# ||222.33.59.55/show.js (easylistchina+easylist.txt: 1514) +# ||222.33.59.55/show.js (easylistchina.txt: 1521) .222.33.59.55/show\.js -# ||221.5.69.52^*.js (easylistchina+easylist.txt: 1513) +# ||221.5.69.52^*.js (easylistchina.txt: 1520) .221.5.69.52/.*\.js -# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina+easylist.txt: 1512) +# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina.txt: 1519) .2200book.com/themes/v2/images/frxz_tonglan\.gif -# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina+easylist.txt: 1511) +# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina.txt: 1518) .2200book.com/configs/article/pagebottom1yc\.js -# ||21yq.com/mg/21yq/ (easylistchina+easylist.txt: 1510) +# ||21yq.com/mg/21yq/ (easylistchina.txt: 1517) .21yq.com/mg/21yq/ -# ||21uscity.com/zonelist.php (easylistchina+easylist.txt: 1509) +# ||21uscity.com/zonelist.php (easylistchina.txt: 1516) .21uscity.com/zonelist\.php -# ||21edu8.com/js/mymoney/ (easylistchina+easylist.txt: 1508) +# ||21edu8.com/js/mymoney/ (easylistchina.txt: 1515) .21edu8.com/js/mymoney/ -# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina+easylist.txt: 1507) +# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina.txt: 1514) .21cnimg.com/zt/she/2015/shetext/she\.jpg -# ||21cnimg.com/zt/she/2015/shetext/300X201.jpg (easylistchina+easylist.txt: 1506) -.21cnimg.com/zt/she/2015/shetext/300X201\.jpg -# ||219.238.159.182^*.html (easylistchina+easylist.txt: 1505) +# ||219.238.159.182^*.html (easylistchina.txt: 1513) .219.238.159.182/.*\.html -# ||219.238.159.181^*.html (easylistchina+easylist.txt: 1504) +# ||219.238.159.181^*.html (easylistchina.txt: 1512) .219.238.159.181/.*\.html -# ||219.153.41.175/*.js (easylistchina+easylist.txt: 1503) +# ||219.153.41.175/*.js (easylistchina.txt: 1511) .219.153.41.175/.*\.js -# ||219.153.41.154/v1/ (easylistchina+easylist.txt: 1502) +# ||219.153.41.154/v1/ (easylistchina.txt: 1510) .219.153.41.154/v1/ -# ||218.65.30.50:96/images/xuanchuan.gif (easylistchina+easylist.txt: 1501) -.218.65.30.50:96/images/xuanchuan\.gif -# ||218.65.30.232^ (easylistchina+easylist.txt: 1500) -.218.65.30.232 -# ||21394.com/weizi.js (easylistchina+easylist.txt: 1499) +# ||21394.com/weizi.js (easylistchina.txt: 1509) .21394.com/weizi\.js -# ||211600.com/images/portal/ (easylistchina+easylist.txt: 1498) +# ||211600.com/images/portal/ (easylistchina.txt: 1508) .211600.com/images/portal/ -# ||211600.com/data/attachment/portal/ (easylistchina+easylist.txt: 1497) +# ||211600.com/data/attachment/portal/ (easylistchina.txt: 1507) .211600.com/data/attachment/portal/ -# ||204.12.228.236^*.png (easylistchina+easylist.txt: 1496) +# ||204.12.228.236^*.png (easylistchina.txt: 1506) .204.12.228.236/.*\.png -# ||204.12.228.235^*.png (easylistchina+easylist.txt: 1495) +# ||204.12.228.235^*.png (easylistchina.txt: 1505) .204.12.228.235/.*\.png -# ||201*.myhard.com^ (easylistchina+easylist.txt: 1494) +# ||201*.myhard.com^ (easylistchina.txt: 1504) .201*./.*\.myhard\.com[^\w%.-] .201*.myhard.com -# ||201*.073img.com^ (easylistchina+easylist.txt: 1493) +# ||201*.073img.com^ (easylistchina.txt: 1503) .201*./.*\.073img\.com[^\w%.-] .201*.073img.com -# ||2008xxx.com:888 (easylistchina+easylist.txt: 1492) +# ||2008xxx.com:888 (easylistchina.txt: 1502) .2008xxx.com:888*. -# ||1pad.cn/ahead/01.gif (easylistchina+easylist.txt: 1491) +# ||1pad.cn/ahead/01.gif (easylistchina.txt: 1501) .1pad.cn/ahead/01\.gif -# ||1m1m.cn/bar/ (easylistchina+easylist.txt: 1490) +# ||1m1m.cn/bar/ (easylistchina.txt: 1500) .1m1m.cn/bar/ -# ||1kejian.com/js/topA.js (easylistchina+easylist.txt: 1489) +# ||1kejian.com/js/topA.js (easylistchina.txt: 1499) .1kejian.com/js/topA\.js -# ||1fun.com.hk/bb/189X180B.swf (easylistchina+easylist.txt: 1488) +# ||1fun.com.hk/bb/189X180B.swf (easylistchina.txt: 1498) .1fun.com.hk/bb/189X180B\.swf -# ||1dot.cn/spider/1dotAd.php (easylistchina+easylist.txt: 1487) +# ||1dot.cn/spider/1dotAd.php (easylistchina.txt: 1497) .1dot.cn/spider/1dotAd\.php -# ||19iiii.info/js/tonglan.js (easylistchina+easylist.txt: 1486) +# ||19iiii.info/js/tonglan.js (easylistchina.txt: 1496) .19iiii.info/js/tonglan\.js -# ||19iiii.info/js/foot.js (easylistchina+easylist.txt: 1485) +# ||19iiii.info/js/foot.js (easylistchina.txt: 1495) .19iiii.info/js/foot\.js -# ||19iiii.info/js/dl.js (easylistchina+easylist.txt: 1484) +# ||19iiii.info/js/dl.js (easylistchina.txt: 1494) .19iiii.info/js/dl\.js -# ||19iiii.info/js/dingbu.js (easylistchina+easylist.txt: 1483) +# ||19iiii.info/js/dingbu.js (easylistchina.txt: 1493) .19iiii.info/js/dingbu\.js -# ||198zone.com/images/*noad.jpg (easylistchina+easylist.txt: 1482) +# ||198zone.com/images/*noad.jpg (easylistchina.txt: 1492) .198zone.com/images/.*noad\.jpg -# ||198.40.56.242/ad/ (easylistchina+easylist.txt: 1481) +# ||198.40.56.242/ad/ (easylistchina.txt: 1491) .198.40.56.242/ad/ -# ||198.40.52.11/ad/ (easylistchina+easylist.txt: 1480) -.198.40.52.11/ad/ -# ||192.74.239.161/ad960.js (easylistchina+easylist.txt: 1479) +# ||198.40.52.11^ (easylistchina.txt: 1490) +.198.40.52.11 +# ||192.74.239.161/ad960.js (easylistchina.txt: 1489) .192.74.239.161/ad960\.js -# ||192.184.10.171^ (easylistchina+easylist.txt: 1478) -.192.184.10.171 -# ||18avday.*/images/ts918com (easylistchina+easylist.txt: 1477) -.18avday.*./(.*/)?images/ts918com -# ||189so.cn^$subdocument (easylistchina+easylist.txt: 1476) +# ||18avday.*/aa/ (easylistchina.txt: 1488) +.18avday.*./(.*/)?aa/ +# ||189so.cn^$subdocument (easylistchina.txt: 1487) .189so.cn -# ||189so.cn/pop.html (easylistchina+easylist.txt: 1475) +# ||189so.cn/pop.html (easylistchina.txt: 1486) .189so.cn/pop\.html -# ||189so.cn/images/qz270x280.jpg (easylistchina+easylist.txt: 1474) +# ||189so.cn/images/qz270x280.jpg (easylistchina.txt: 1485) .189so.cn/images/qz270x280\.jpg -# ||189so.cn/images/960x60 (easylistchina+easylist.txt: 1473) +# ||189so.cn/images/960x60 (easylistchina.txt: 1484) .189so.cn/images/960x60 -# ||189.cn/dns/ (easylistchina+easylist.txt: 1472) +# ||189.cn/dns/ (easylistchina.txt: 1483) .189.cn/dns/ -# ||18888.com^*/Mon_*.gif (easylistchina+easylist.txt: 1471) +# ||18888.com^*/Mon_*.gif (easylistchina.txt: 1482) .18888.com/.*/Mon_.*\.gif -# ||183yf.cn/img/nz.png (easylistchina+easylist.txt: 1470) +# ||183yf.cn/img/nz.png (easylistchina.txt: 1481) .183yf.cn/img/nz\.png -# ||183.136.168.78:8082/ad/ (easylistchina+easylist.txt: 1469) +# ||183.136.168.78:8082/ad/ (easylistchina.txt: 1480) .183.136.168.78:8082/ad/ -# ||182.92.234.239^*.html (easylistchina+easylist.txt: 1468) +# ||182.92.234.239^*.html (easylistchina.txt: 1479) .182.92.234.239/.*\.html -# ||180.96.27.85^*.htm (easylistchina+easylist.txt: 1467) +# ||180.96.27.85^*.htm (easylistchina.txt: 1478) .180.96.27.85/.*\.htm -# ||17yy.com/style/ifra_ad/ (easylistchina+easylist.txt: 1466) +# ||17yy.com/style/ifra_ad/ (easylistchina.txt: 1477) .17yy.com/style/ifra_ad/ -# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina+easylist.txt: 1465) +# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina.txt: 1476) .17ok.com/focus/images/wenchouxiangmu\.gif -# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina+easylist.txt: 1464) +# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina.txt: 1475) .17ok.com/focus/3j_right_jdt\.shtml -# ||17kqw.com/*.gif (easylistchina+easylist.txt: 1463) +# ||17kqw.com/*.gif (easylistchina.txt: 1474) .17kqw.com/.*\.gif -# ||17kk.cc/scriptAD/ (easylistchina+easylist.txt: 1462) +# ||17kk.cc/scriptAD/ (easylistchina.txt: 1473) .17kk.cc/scriptAD/ -# ||17huohu.com/img/skin/qnh/ (easylistchina+easylist.txt: 1461) +# ||17huohu.com/img/skin/qnh/ (easylistchina.txt: 1472) .17huohu.com/img/skin/qnh/ -# ||17dm.com/s/common/js/*AD.js (easylistchina+easylist.txt: 1460) +# ||17dm.com/s/common/js/*AD.js (easylistchina.txt: 1471) .17dm.com/s/common/js/.*AD\.js -# ||17ce.com/118/t_banner.html (easylistchina+easylist.txt: 1459) +# ||17ce.com/118/t_banner.html (easylistchina.txt: 1470) .17ce.com/118/t_banner\.html -# ||178.com/lol/201410/206406421945/206406428217.jpg (easylistchina+easylist.txt: 1458) -.178.com/lol/201410/206406421945/206406428217\.jpg -# ||178.com/glr.js (easylistchina+easylist.txt: 1457) +# ||178.com/glr.js (easylistchina.txt: 1469) .178.com/glr\.js -# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina+easylist.txt: 1456) +# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina.txt: 1468) .178.com/dota/201409/205976017190/205976025825\.jpg -# ||17558.net/youdiancms.gif (easylistchina+easylist.txt: 1455) +# ||17558.net/youdiancms.gif (easylistchina.txt: 1467) .17558.net/youdiancms\.gif -# ||17558.net/daozeiyuanma1.gif (easylistchina+easylist.txt: 1454) +# ||17558.net/daozeiyuanma1.gif (easylistchina.txt: 1466) .17558.net/daozeiyuanma1\.gif -# ||174.123.15.43:8080 (easylistchina+easylist.txt: 1453) +# ||174.123.15.43:8080 (easylistchina.txt: 1465) .174.123.15.43:8080*. -# ||173kt.com/images/ad (easylistchina+easylist.txt: 1452) +# ||173kt.com/images/ad (easylistchina.txt: 1464) .173kt.com/images/ad -# ||173kt.com/ads/ (easylistchina+easylist.txt: 1451) +# ||173kt.com/ads/ (easylistchina.txt: 1463) .173kt.com/ads/ -# ||173.255.143.197^*.png (easylistchina+easylist.txt: 1450) +# ||173.255.143.197^*.png (easylistchina.txt: 1462) .173.255.143.197/.*\.png -# ||173.255.139.114^$subdocument (easylistchina+easylist.txt: 1449) +# ||173.255.139.114^$subdocument (easylistchina.txt: 1461) .173.255.139.114 -# ||173.208.177.227^*.gif (easylistchina+easylist.txt: 1448) +# ||173.208.177.227^*.gif (easylistchina.txt: 1460) .173.208.177.227/.*\.gif -# ||173.208.177.227/tool/xuanfusige.js (easylistchina+easylist.txt: 1447) +# ||173.208.177.227/tool/xuanfusige.js (easylistchina.txt: 1459) .173.208.177.227/tool/xuanfusige\.js -# ||172.15.2.28:3438/*.js (easylistchina+easylist.txt: 1446) +# ||172.15.2.28:3438/*.js (easylistchina.txt: 1458) .172.15.2.28:3438/.*\.js -# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina+easylist.txt: 1445) +# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina.txt: 1457) .17173cdn.com/.*/flash/OnLineTime\.swf -# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina+easylist.txt: 1444) +# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina.txt: 1456) .17173cdn.com/js/play/page/pThridPlayerAd\.js -# ||17173cdn.com/css/live/business (easylistchina+easylist.txt: 1443) +# ||17173cdn.com/css/live/business (easylistchina.txt: 1455) .17173cdn.com/css/live/business -# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina+easylist.txt: 1442) +# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina.txt: 1454) .17173cdn.com/a/www/index/.*/js/ggcommon -# ||17173cdn.com/a/lib/vda/seed.js (easylistchina+easylist.txt: 1441) +# ||17173cdn.com/a/lib/vda/seed.js (easylistchina.txt: 1453) .17173cdn.com/a/lib/vda/seed\.js -# ||17173.com/new/ (easylistchina+easylist.txt: 1440) +# ||17173.com/new/ (easylistchina.txt: 1452) .17173.com/new/ -# ||17173.com/if/ (easylistchina+easylist.txt: 1439) +# ||17173.com/if/ (easylistchina.txt: 1451) .17173.com/if/ -# ||17173.com/bd/ifm/allyes/ (easylistchina+easylist.txt: 1438) +# ||17173.com/bd/ifm/allyes/ (easylistchina.txt: 1450) .17173.com/bd/ifm/allyes/ -# ||17173.com/advideo/ (easylistchina+easylist.txt: 1437) +# ||17173.com/advideo/ (easylistchina.txt: 1449) .17173.com/advideo/ -# ||17173.com/2013/new/channel-float.js (easylistchina+easylist.txt: 1436) +# ||17173.com/2013/new/channel-float.js (easylistchina.txt: 1448) .17173.com/2013/new/channel-float\.js -# ||16sucai.com/images/46060_ (easylistchina+easylist.txt: 1435) +# ||16sucai.com/images/46060_ (easylistchina.txt: 1447) .16sucai.com/images/46060_ -# ||16sucai.com/ads/ (easylistchina+easylist.txt: 1434) +# ||16sucai.com/ads/ (easylistchina.txt: 1446) .16sucai.com/ads/ -# ||168gamer.com/static/js/cpa.js (easylistchina+easylist.txt: 1433) +# ||168gamer.com/static/js/cpa.js (easylistchina.txt: 1445) .168gamer.com/static/js/cpa\.js -# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina+easylist.txt: 1432) +# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina.txt: 1444) .168gamer.com/plugin\.php\?id=cstdio_ads: -# ||168gamer.com/apii.php?mod=js&bid= (easylistchina+easylist.txt: 1431) +# ||168gamer.com/apii.php?mod=js&bid= (easylistchina.txt: 1443) .168gamer.com/apii\.php\?mod=js&bid= -# ||16888.com/ajax/loadcardata.php (easylistchina+easylist.txt: 1430) +# ||16888.com/ajax/loadcardata.php (easylistchina.txt: 1442) .16888.com/ajax/loadcardata\.php -# ||1688.com.au/site1/1688ad/ (easylistchina+easylist.txt: 1429) +# ||1688.com.au/site1/1688ad/ (easylistchina.txt: 1441) .1688.com.au/site1/1688ad/ -# ||1684.cc/js/1684/ (easylistchina+easylist.txt: 1428) +# ||1684.cc/js/1684/ (easylistchina.txt: 1440) .1684.cc/js/1684/ -# ||168.it168.com^$script (easylistchina+easylist.txt: 1427) +# ||168.it168.com^$script (easylistchina.txt: 1439) .168.it168.com -# ||1677.net/js/gb*.js (easylistchina+easylist.txt: 1426) +# ||1677.net/js/gb*.js (easylistchina.txt: 1438) .1677.net/js/gb.*\.js -# ||1677.net/js/cad*.js (easylistchina+easylist.txt: 1425) +# ||1677.net/js/cad*.js (easylistchina.txt: 1437) .1677.net/js/cad.*\.js -# ||1677.net/js/ad*.js (easylistchina+easylist.txt: 1424) +# ||1677.net/js/ad*.js (easylistchina.txt: 1436) .1677.net/js/ad.*\.js -# ||163disk.com/static/www/ (easylistchina+easylist.txt: 1423) +# ||163disk.com/static/www/ (easylistchina.txt: 1435) .163disk.com/static/www/ -# ||163disk.com/static/images/tu.gif (easylistchina+easylist.txt: 1422) +# ||163disk.com/static/images/tu.gif (easylistchina.txt: 1434) .163disk.com/static/images/tu\.gif -# ||163disk.com/static/images/DING.gif (easylistchina+easylist.txt: 1421) +# ||163disk.com/static/images/DING.gif (easylistchina.txt: 1433) .163disk.com/static/images/DING\.gif -# ||163disk.com/pic/960x90- (easylistchina+easylist.txt: 1420) +# ||163disk.com/pic/960x90- (easylistchina.txt: 1432) .163disk.com/pic/960x90- -# ||163.com/special/*/topbg.js (easylistchina+easylist.txt: 1419) +# ||163.com/special/*_taobao. (easylistchina.txt: 1431) +.163.com/special/.*_taobao\. +# ||163.com/special/*_ad_ (easylistchina.txt: 1430) +.163.com/special/.*_ad_ +# ||163.com/special/*/topbg.js (easylistchina.txt: 1429) .163.com/special/.*/topbg\.js -# ||163.com/special/*/tonglan1.js (easylistchina+easylist.txt: 1418) +# ||163.com/special/*/tonglan1.js (easylistchina.txt: 1428) .163.com/special/.*/tonglan1\.js -# ||163.com/special/*/ted_vad. (easylistchina+easylist.txt: 1417) +# ||163.com/special/*/ted_vad. (easylistchina.txt: 1427) .163.com/special/.*/ted_vad\. -# ||163.com/special/*/scroolAd (easylistchina+easylist.txt: 1416) +# ||163.com/special/*/scroolAd (easylistchina.txt: 1426) .163.com/special/.*/scroolAd -# ||163.com/special/*/beitou.js (easylistchina+easylist.txt: 1415) +# ||163.com/special/*/beitou.js (easylistchina.txt: 1425) .163.com/special/.*/beitou\.js -# ||163.com/special/*/ace_downbig.js (easylistchina+easylist.txt: 1414) +# ||163.com/special/*/ace_downbig.js (easylistchina.txt: 1424) .163.com/special/.*/ace_downbig\.js -# ||163.com/get.do?*=themeHandler. (easylistchina+easylist.txt: 1412) +# ||163.com/get.do?*=themeHandler. (easylistchina.txt: 1422) .163.com/get\.do\?.*=themeHandler\. -# ||162wp.com/ipc/11.gif (easylistchina+easylist.txt: 1411) +# ||162wp.com/ipc/11.gif (easylistchina.txt: 1421) .162wp.com/ipc/11\.gif -# ||162wp.com/e/data/images/pixviewer.swf (easylistchina+easylist.txt: 1410) +# ||162wp.com/e/data/images/pixviewer.swf (easylistchina.txt: 1420) .162wp.com/e/data/images/pixviewer\.swf -# ||162.212.252.35/ads/ (easylistchina+easylist.txt: 1409) -.162.212.252.35/ads/ -# ||1616.net/jd/i_ (easylistchina+easylist.txt: 1408) +# ||1616.net/jd/i_ (easylistchina.txt: 1419) .1616.net/jd/i_ -# ||1616.net/jd/data/index/indexad.json (easylistchina+easylist.txt: 1407) +# ||1616.net/jd/data/index/indexad.json (easylistchina.txt: 1418) .1616.net/jd/data/index/indexad\.json -# ||15w.com/pages/adlive. (easylistchina+easylist.txt: 1406) +# ||15w.com/pages/adlive. (easylistchina.txt: 1417) .15w.com/pages/adlive\. -# ||15w.com/flash/ (easylistchina+easylist.txt: 1405) +# ||15w.com/flash/ (easylistchina.txt: 1416) .15w.com/flash/ -# ||15w.com/call/webjs/60.js (easylistchina+easylist.txt: 1404) +# ||15w.com/call/webjs/60.js (easylistchina.txt: 1415) .15w.com/call/webjs/60\.js -# ||1518.com/ss/ (easylistchina+easylist.txt: 1403) +# ||1518.com/ss/ (easylistchina.txt: 1414) .1518.com/ss/ -# ||142.0.133.129/twdsb/ (easylistchina+easylist.txt: 1402) -.142.0.133.129/twdsb/ -# ||142.0.133.129/attachment/Mon_ (easylistchina+easylist.txt: 1401) -.142.0.133.129/attachment/Mon_ -# ||141h.com/data/attachment/noblock/cf/ (easylistchina+easylist.txt: 1400) +# ||141h.com/data/attachment/noblock/cf/ (easylistchina.txt: 1413) .141h.com/data/attachment/noblock/cf/ -# ||1382014.co/980X45.gif (easylistchina+easylist.txt: 1399) +# ||1382014.co/980X45.gif (easylistchina.txt: 1412) .1382014.co/980X45\.gif -# ||135qp.com/sjzswf/banner.swf (easylistchina+easylist.txt: 1398) +# ||135qp.com/sjzswf/banner.swf (easylistchina.txt: 1411) .135qp.com/sjzswf/banner\.swf -# ||133uu.com/html/ (easylistchina+easylist.txt: 1397) +# ||133uu.com/html/ (easylistchina.txt: 1410) .133uu.com/html/ -# ||131458.com/union/ (easylistchina+easylist.txt: 1396) +# ||131458.com/union/ (easylistchina.txt: 1409) .131458.com/union/ -# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina+easylist.txt: 1395) +# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina.txt: 1408) .131.com/test2/2014/09/04/201409041715356f5\.jpg -# ||131.com/js/131InsideAD$script (easylistchina+easylist.txt: 1394) +# ||131.com/js/131InsideAD$script (easylistchina.txt: 1407) .131.com/js/131InsideAD -# ||131.com/home/resouces/js/ (easylistchina+easylist.txt: 1393) +# ||131.com/home/resouces/js/ (easylistchina.txt: 1406) .131.com/home/resouces/js/ -# ||131.com/common/alertwindow.html (easylistchina+easylist.txt: 1392) +# ||131.com/common/alertwindow.html (easylistchina.txt: 1405) .131.com/common/alertwindow\.html -# ||127.net/m/*/promPic.jpg (easylistchina+easylist.txt: 1391) +# ||127.net/m/*/promPic.jpg (easylistchina.txt: 1404) .127.net/m/.*/promPic\.jpg -# ||127.net/external/js6promote (easylistchina+easylist.txt: 1390) +# ||127.net/external/js6promote (easylistchina.txt: 1403) .127.net/external/js6promote -# ||126xz.com/www/all_guanggao.js (easylistchina+easylist.txt: 1389) +# ||126xz.com/www/all_guanggao.js (easylistchina.txt: 1402) .126xz.com/www/all_guanggao\.js -# ||126disk.com/templates/mobile/2345t.png (easylistchina+easylist.txt: 1388) +# ||126disk.com/templates/mobile/2345t.png (easylistchina.txt: 1401) .126disk.com/templates/mobile/2345t\.png -# ||126.net/house/sjz/xt/ (easylistchina+easylist.txt: 1387) +# ||126.net/house/sjz/xt/ (easylistchina.txt: 1400) .126.net/house/sjz/xt/ -# ||126.net/house/sjz/flash/ (easylistchina+easylist.txt: 1386) +# ||126.net/house/sjz/flash/ (easylistchina.txt: 1399) .126.net/house/sjz/flash/ -# ||126.net/house/hrb/js/ (easylistchina+easylist.txt: 1385) +# ||126.net/house/sjz/*96070 (easylistchina.txt: 1398) +.126.net/house/sjz/.*96070 +# ||126.net/house/hrb/js/ (easylistchina.txt: 1397) .126.net/house/hrb/js/ -# ||126.net/house/hrb/flash/*X (easylistchina+easylist.txt: 1384) +# ||126.net/house/hrb/flash/*X (easylistchina.txt: 1396) .126.net/house/hrb/flash/.*X -# ||126.net/house/hebei/index/20150618.swf (easylistchina+easylist.txt: 1383) -.126.net/house/hebei/index/20150618\.swf -# ||126.net/house/hangzhou/ad/ (easylistchina+easylist.txt: 1382) +# ||126.net/house/hangzhou/ad/ (easylistchina.txt: 1395) .126.net/house/hangzhou/ad/ -# ||126.net/house/chengdu/flash/*+ (easylistchina+easylist.txt: 1381) +# ||126.net/house/chengdu/flash/*+ (easylistchina.txt: 1394) .126.net/house/chengdu/flash/.*\+ -# ||126.com/get.do?*=themeHandler. (easylistchina+easylist.txt: 1380) +# ||126.com/get.do?*=themeHandler. (easylistchina.txt: 1393) .126.com/get\.do\?.*=themeHandler\. -# ||125.46.61.28^ (easylistchina+easylist.txt: 1379) +# ||125.46.61.28^ (easylistchina.txt: 1392) .125.46.61.28 -# ||123cha.com/2568 (easylistchina+easylist.txt: 1378) +# ||123cha.com/2568 (easylistchina.txt: 1391) .123cha.com/2568 -# ||123564.com/js/plaza.js (easylistchina+easylist.txt: 1377) +# ||123564.com/js/plaza.js (easylistchina.txt: 1390) .123564.com/js/plaza\.js -# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina+easylist.txt: 1376) +# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina.txt: 1389) .123.sogou.com/nstatic/img/jiao\.swf -# ||122.228.236.165^ (easylistchina+easylist.txt: 1375) +# ||122.228.236.165^ (easylistchina.txt: 1388) .122.228.236.165 -# ||122.225.103.*.htm (easylistchina+easylist.txt: 1374) +# ||122.225.103.*.htm (easylistchina.txt: 1387) .122.225.103.*./.*\.htm .122.225.103.*.htm*. -# ||121zou.com^$subdocument (easylistchina+easylist.txt: 1373) +# ||121zou.com^$subdocument (easylistchina.txt: 1386) .121zou.com -# ||121down.com/img/*.js (easylistchina+easylist.txt: 1372) +# ||121down.com/img/*.js (easylistchina.txt: 1385) .121down.com/img/.*\.js -# ||121.41.60.207/m?t= (easylistchina+easylist.txt: 1371) +# ||121.41.60.207/m?t= (easylistchina.txt: 1384) .121.41.60.207/m\?t= -# ||121.40.136.114^*.htm (easylistchina+easylist.txt: 1370) +# ||121.40.136.114^*.htm (easylistchina.txt: 1383) .121.40.136.114/.*\.htm -# ||120bo.com/ggimg/ (easylistchina+easylist.txt: 1369) +# ||120bo.com/ggimg/ (easylistchina.txt: 1382) .120bo.com/ggimg/ -# ||120askimages.com/ask/js/x.js (easylistchina+easylist.txt: 1368) -.120askimages.com/ask/js/x\.js -# ||120.27.34.156^ (easylistchina+easylist.txt: 1367) +# ||120askimages.com/ask/js/*x.js (easylistchina.txt: 1381) +.120askimages.com/ask/js/.*x\.js +# ||120.27.34.156^ (easylistchina.txt: 1380) .120.27.34.156 -# ||11mzmz.com/java/ (easylistchina+easylist.txt: 1366) -.11mzmz.com/java/ -# ||11hhww.com/java/xia1.js (easylistchina+easylist.txt: 1365) +# ||11hhww.com/java/xia1.js (easylistchina.txt: 1379) .11hhww.com/java/xia1\.js -# ||11hhww.com/java/shang1.js (easylistchina+easylist.txt: 1364) +# ||11hhww.com/java/shang1.js (easylistchina.txt: 1378) .11hhww.com/java/shang1\.js -# ||11hhww.com/java/cpm (easylistchina+easylist.txt: 1363) +# ||11hhww.com/java/cpm (easylistchina.txt: 1377) .11hhww.com/java/cpm -# ||11dzdz.com/java/ (easylistchina+easylist.txt: 1362) -.11dzdz.com/java/ -# ||11dmdm.com/java/ (easylistchina+easylist.txt: 1361) -.11dmdm.com/java/ -# ||119xiazai.com^$subdocument (easylistchina+easylist.txt: 1360) +# ||119xiazai.com^$subdocument (easylistchina.txt: 1376) .119xiazai.com -# ||119g.com/fanwan1/dibubanner.js (easylistchina+easylist.txt: 1359) +# ||119g.com/fanwan1/dibubanner.js (easylistchina.txt: 1375) .119g.com/fanwan1/dibubanner\.js -# ||119g.com/fanwan/ (easylistchina+easylist.txt: 1358) +# ||119g.com/fanwan/ (easylistchina.txt: 1374) .119g.com/fanwan/ -# ||119.167.73.60/m_code/ (easylistchina+easylist.txt: 1357) +# ||119.167.73.60/m_code/ (easylistchina.txt: 1373) .119.167.73.60/m_code/ -# ||115mm.com/js/ (easylistchina+easylist.txt: 1356) +# ||115mm.com/js/ (easylistchina.txt: 1372) .115mm.com/js/ -# ||115img.com/static/pc/d_127.html (easylistchina+easylist.txt: 1355) +# ||115img.com/static/pc/d_127.html (easylistchina.txt: 1371) .115img.com/static/pc/d_127\.html -# ||115.29.46.146^$subdocument (easylistchina+easylist.txt: 1354) +# ||115.29.46.146^$subdocument (easylistchina.txt: 1370) .115.29.46.146 -# ||115.29.141.121:8086/js/wp.js (easylistchina+easylist.txt: 1353) +# ||115.29.141.121:8086/js/wp.js (easylistchina.txt: 1369) .115.29.141.121:8086/js/wp\.js -# ||115.28.6.94:8090/js/s (easylistchina+easylist.txt: 1352) +# ||115.28.6.94:8090/js/s (easylistchina.txt: 1368) .115.28.6.94:8090/js/s -# ||115.28.114.149^*_proxy. (easylistchina+easylist.txt: 1351) +# ||115.28.114.149^*_proxy. (easylistchina.txt: 1367) .115.28.114.149/.*_proxy\. -# ||114so.cn^$subdocument (easylistchina+easylist.txt: 1350) +# ||114so.cn^$subdocument (easylistchina.txt: 1366) .114so.cn -# ||114so.cn/js/nm*.js (easylistchina+easylist.txt: 1349) +# ||114so.cn/js/nm*.js (easylistchina.txt: 1365) .114so.cn/js/nm.*\.js -# ||114fw.com/dagg/ (easylistchina+easylist.txt: 1348) +# ||114fw.com/dagg/ (easylistchina.txt: 1364) .114fw.com/dagg/ -# ||113.17.188.44/*.js (easylistchina+easylist.txt: 1347) +# ||113.17.188.44/*.js (easylistchina.txt: 1363) .113.17.188.44/.*\.js -# ||112.126.66.58^*?mid= (easylistchina+easylist.txt: 1346) +# ||112.126.66.58^*?mid= (easylistchina.txt: 1362) .112.126.66.58/.*\?mid= -# ||111cn.net/v8/fun.js (easylistchina+easylist.txt: 1345) +# ||111cn.net/v8/fun.js (easylistchina.txt: 1361) .111cn.net/v8/fun\.js -# ||111cn.net/js/v8/page_ (easylistchina+easylist.txt: 1344) +# ||111cn.net/js/v8/page_ (easylistchina.txt: 1360) .111cn.net/js/v8/page_ -# ||111cn.net/js/v8/body (easylistchina+easylist.txt: 1343) +# ||111cn.net/js/v8/body (easylistchina.txt: 1359) .111cn.net/js/v8/body -# ||111cn.net/js/v8/art_ (easylistchina+easylist.txt: 1342) +# ||111cn.net/js/v8/art_ (easylistchina.txt: 1358) .111cn.net/js/v8/art_ -# ||111cn.net/js/downc*.js (easylistchina+easylist.txt: 1341) +# ||111cn.net/js/downc*.js (easylistchina.txt: 1357) .111cn.net/js/downc.*\.js -# ||111cn.net/images/v8/vip.jpg (easylistchina+easylist.txt: 1340) +# ||111cn.net/images/v8/vip.jpg (easylistchina.txt: 1356) .111cn.net/images/v8/vip\.jpg -# ||111cn.net/gg_ad/ (easylistchina+easylist.txt: 1339) +# ||111cn.net/gg_ad/ (easylistchina.txt: 1355) .111cn.net/gg_ad/ -# ||11.mydrivers.com/news/google468x60.js (easylistchina+easylist.txt: 1338) +# ||11.mydrivers.com/news/google468x60.js (easylistchina.txt: 1354) .11.mydrivers.com/news/google468x60\.js -# ||11.mydrivers.com/news/03.js (easylistchina+easylist.txt: 1337) +# ||11.mydrivers.com/news/03.js (easylistchina.txt: 1353) .11.mydrivers.com/news/03\.js -# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina+easylist.txt: 1336) +# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina.txt: 1352) .11.mydrivers.com/myfiles/myfiles100.*\.js -# ||11.mydrivers.com/myfiles/0*.js (easylistchina+easylist.txt: 1335) +# ||11.mydrivers.com/myfiles/0*.js (easylistchina.txt: 1351) .11.mydrivers.com/myfiles/0.*\.js -# ||11.mydrivers.com/drivers/ (easylistchina+easylist.txt: 1334) +# ||11.mydrivers.com/drivers/ (easylistchina.txt: 1350) .11.mydrivers.com/drivers/ -# ||10yan.com/mmm/ (easylistchina+easylist.txt: 1333) +# ||10yan.com/mmm/ (easylistchina.txt: 1349) .10yan.com/mmm/ -# ||10pan.cc/rili.gif (easylistchina+easylist.txt: 1332) +# ||10pan.cc/rili.gif (easylistchina.txt: 1348) .10pan.cc/rili\.gif -# ||10pan.*/adblockTester/ (easylistchina+easylist.txt: 1331) +# ||10pan.*/adblockTester/ (easylistchina.txt: 1347) .10pan.*./(.*/)?adblockTester/ -# ||10jqka.com.cn/public/stock/red.html? (easylistchina+easylist.txt: 1330) +# ||10jqka.com.cn/public/stock/red.html? (easylistchina.txt: 1346) .10jqka.com.cn/public/stock/red\.html\? -# ||1080pba.com/templets/default/images/8.gif (easylistchina+easylist.txt: 1329) +# ||1080pba.com/templets/default/images/8.gif (easylistchina.txt: 1345) .1080pba.com/templets/default/images/8\.gif -# ||1080pba.com/templets/default/images/4.gif (easylistchina+easylist.txt: 1328) +# ||1080pba.com/templets/default/images/4.gif (easylistchina.txt: 1344) .1080pba.com/templets/default/images/4\.gif -# ||1080pba.com/templets/default/images/3.gif (easylistchina+easylist.txt: 1327) +# ||1080pba.com/templets/default/images/3.gif (easylistchina.txt: 1343) .1080pba.com/templets/default/images/3\.gif -# ||1080pba.com/templets/default/images/2.gif (easylistchina+easylist.txt: 1326) +# ||1080pba.com/templets/default/images/2.gif (easylistchina.txt: 1342) .1080pba.com/templets/default/images/2\.gif -# ||1080pba.com/templets/default/images/1.gif (easylistchina+easylist.txt: 1325) +# ||1080pba.com/templets/default/images/1.gif (easylistchina.txt: 1341) .1080pba.com/templets/default/images/1\.gif -# ||1080pba.com/templets/default/images/02.gif (easylistchina+easylist.txt: 1324) +# ||1080pba.com/templets/default/images/02.gif (easylistchina.txt: 1340) .1080pba.com/templets/default/images/02\.gif -# ||107.182.131.103/cache/?q=/images/ (easylistchina+easylist.txt: 1323) +# ||108.171.248.234^ (easylistchina.txt: 1339) +.108.171.248.234 +# ||107.182.131.103/cache/?q=/images/ (easylistchina.txt: 1338) .107.182.131.103/cache/\?q=/images/ -# ||106.184.7.176/shuang11/ (easylistchina+easylist.txt: 1322) +# ||106.184.7.176/shuang11/ (easylistchina.txt: 1337) .106.184.7.176/shuang11/ -# ||103.225.198.230:8080/index.html (easylistchina+easylist.txt: 1321) +# ||103.225.198.230:8080/index.html (easylistchina.txt: 1336) .103.225.198.230:8080/index\.html -# ||102tv.cn/js/index_*.js (easylistchina+easylist.txt: 1320) +# ||102tv.cn/js/index_*.js (easylistchina.txt: 1335) .102tv.cn/js/index_.*\.js -# ||102tv.cn/js/desktop.js (easylistchina+easylist.txt: 1319) +# ||102tv.cn/js/desktop.js (easylistchina.txt: 1334) .102tv.cn/js/desktop\.js -# ||102tv.cn/js/ad*.js (easylistchina+easylist.txt: 1318) +# ||102tv.cn/js/ad*.js (easylistchina.txt: 1333) .102tv.cn/js/ad.*\.js -# ||101.78.195.135/js/ (easylistchina+easylist.txt: 1317) +# ||101.78.195.135/js/ (easylistchina.txt: 1332) .101.78.195.135/js/ -# ||100ksw.com/ksbd/ksbdparad.js (easylistchina+easylist.txt: 1316) +# ||100ksw.com/ksbd/ksbdparad.js (easylistchina.txt: 1331) .100ksw.com/ksbd/ksbdparad\.js -# ||100ksw.com/include/ksbdfd.js (easylistchina+easylist.txt: 1315) +# ||100ksw.com/include/ksbdfd.js (easylistchina.txt: 1330) .100ksw.com/include/ksbdfd\.js -# ||10000sb.com/4gbct.js (easylistchina+easylist.txt: 1314) +# ||10000sb.com/4gbct.js (easylistchina.txt: 1329) .10000sb.com/4gbct\.js -# ||0dian8.org/data/js/ (easylistchina+easylist.txt: 1313) +# ||0dian8.org/data/js/ (easylistchina.txt: 1328) .0dian8.org/data/js/ -# ||07908.com/images/ (easylistchina+easylist.txt: 1312) +# ||07908.com/images/ (easylistchina.txt: 1327) .07908.com/images/ -# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina+easylist.txt: 1311) +# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina.txt: 1326) .0772fang.com/assets/js/Newhouse/inserAds\.js -# ||0772fang.com/assets/js/imgorflash.js (easylistchina+easylist.txt: 1310) +# ||0772fang.com/assets/js/imgorflash.js (easylistchina.txt: 1325) .0772fang.com/assets/js/imgorflash\.js -# ||076299.cn/images/flash/20 (easylistchina+easylist.txt: 1309) +# ||076299.cn/images/flash/20 (easylistchina.txt: 1324) .076299.cn/images/flash/20 -# ||0758net.com/data/attachment/portal/ (easylistchina+easylist.txt: 1308) +# ||0758net.com/data/attachment/portal/ (easylistchina.txt: 1323) .0758net.com/data/attachment/portal/ -# ||0756.la/ad-htm/ (easylistchina+easylist.txt: 1307) +# ||0756.la/ad-htm/ (easylistchina.txt: 1322) .0756.la/ad-htm/ -# ||073img.com^*/rich.js (easylistchina+easylist.txt: 1306) +# ||073img.com^*/rich.js (easylistchina.txt: 1321) .073img.com/.*/rich\.js -# ||0668gz.com/data/attachment/portal/ (easylistchina+easylist.txt: 1305) +# ||0668gz.com/data/attachment/portal/ (easylistchina.txt: 1320) .0668gz.com/data/attachment/portal/ -# ||060s.com/my_ad/ (easylistchina+easylist.txt: 1304) +# ||060s.com/my_ad/ (easylistchina.txt: 1319) .060s.com/my_ad/ -# ||05sun.com/js/downinfo.js (easylistchina+easylist.txt: 1303) +# ||05sun.com/js/downinfo.js (easylistchina.txt: 1318) .05sun.com/js/downinfo\.js -# ||05sun.com/js/comm.js (easylistchina+easylist.txt: 1302) +# ||05sun.com/js/comm.js (easylistchina.txt: 1317) .05sun.com/js/comm\.js -# ||0597ok.com/ilike/597/ (easylistchina+easylist.txt: 1301) +# ||0597ok.com/ilike/597/ (easylistchina.txt: 1316) .0597ok.com/ilike/597/ -# ||0597kk.com/js/float.js (easylistchina+easylist.txt: 1300) +# ||0597kk.com/js/float.js (easylistchina.txt: 1315) .0597kk.com/js/float\.js -# ||0579.cn/SHow/Showplacenew.aspx (easylistchina+easylist.txt: 1299) +# ||0579.cn/SHow/Showplacenew.aspx (easylistchina.txt: 1314) .0579.cn/SHow/Showplacenew\.aspx -# ||0579.cn/images/bg.gif (easylistchina+easylist.txt: 1298) +# ||0579.cn/images/bg.gif (easylistchina.txt: 1313) .0579.cn/images/bg\.gif -# ||0575bbs.com/updateimeags/ (easylistchina+easylist.txt: 1297) +# ||0575bbs.com/updateimeags/ (easylistchina.txt: 1312) .0575bbs.com/updateimeags/ -# ||0575bbs.com/js/float.js (easylistchina+easylist.txt: 1296) +# ||0575bbs.com/js/float.js (easylistchina.txt: 1311) .0575bbs.com/js/float\.js -# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina+easylist.txt: 1295) +# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina.txt: 1310) .0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph\.gif -# ||05096.com/jsdoc/ad.html (easylistchina+easylist.txt: 1294) +# ||05096.com/jsdoc/ad.html (easylistchina.txt: 1309) .05096.com/jsdoc/ad\.html -# ||0471.so/Public/config/Couplet/Index (easylistchina+easylist.txt: 1293) +# ||0471.so/Public/config/Couplet/Index (easylistchina.txt: 1308) .0471.so/Public/config/Couplet/Index -# ||0460.com/js/txtrec.js (easylistchina+easylist.txt: 1292) +# ||0460.com/js/txtrec.js (easylistchina.txt: 1307) .0460.com/js/txtrec\.js -# ||0460.com/images/banner/ (easylistchina+easylist.txt: 1291) +# ||0460.com/images/banner/ (easylistchina.txt: 1306) .0460.com/images/banner/ -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina+easylist.txt: 1290) +# ||0452e.com/js/float.js (easylistchina.txt: 1305) +.0452e.com/js/float\.js +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina.txt: 1304) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=zhuangx -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina+easylist.txt: 1289) +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina.txt: 1303) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=topslide -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina+easylist.txt: 1288) +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina.txt: 1302) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=classify -# ||0439.com/html/js/tuiguang.js (easylistchina+easylist.txt: 1287) +# ||0439.com/html/js/tuiguang.js (easylistchina.txt: 1301) .0439.com/html/js/tuiguang\.js -# ||0439.com/html/js/ad_r_300x220.js (easylistchina+easylist.txt: 1286) +# ||0439.com/html/js/ad_r_300x220.js (easylistchina.txt: 1300) .0439.com/html/js/ad_r_300x220\.js -# ||03jd.cn/data/attachment/portal/ (easylistchina+easylist.txt: 1285) +# ||03jd.cn/data/attachment/portal/ (easylistchina.txt: 1299) .03jd.cn/data/attachment/portal/ -# ||0379home.com/images/fullscreen_ (easylistchina+easylist.txt: 1284) +# ||0379home.com/images/fullscreen_ (easylistchina.txt: 1298) .0379home.com/images/fullscreen_ -# ||0379home.com/2014/js/beside.js (easylistchina+easylist.txt: 1283) +# ||0379home.com/2014/js/beside.js (easylistchina.txt: 1297) .0379home.com/2014/js/beside\.js -# ||0379home.com/2014/js/ad_pic.js (easylistchina+easylist.txt: 1282) +# ||0379home.com/2014/js/ad_pic.js (easylistchina.txt: 1296) .0379home.com/2014/js/ad_pic\.js -# ||027down.com/images/banner760-60.gif (easylistchina+easylist.txt: 1281) +# ||027down.com/images/banner760-60.gif (easylistchina.txt: 1295) .027down.com/images/banner760-60\.gif -# ||022net.com/main/browse_yme.js (easylistchina+easylist.txt: 1280) +# ||022net.com/main/browse_yme.js (easylistchina.txt: 1294) .022net.com/main/browse_yme\.js -# ||022net.com/js/mhtml/phtml07.html (easylistchina+easylist.txt: 1279) +# ||022net.com/js/mhtml/phtml07.html (easylistchina.txt: 1293) .022net.com/js/mhtml/phtml07\.html -# ||022net.com/js/mhtml/phtml04.html (easylistchina+easylist.txt: 1278) +# ||022net.com/js/mhtml/phtml04.html (easylistchina.txt: 1292) .022net.com/js/mhtml/phtml04\.html -# ||022net.com/js/mhtml/phtml03.html (easylistchina+easylist.txt: 1277) +# ||022net.com/js/mhtml/phtml03.html (easylistchina.txt: 1291) .022net.com/js/mhtml/phtml03\.html -# ||021wudi.com/admguan- (easylistchina+easylist.txt: 1276) +# ||021wudi.com/admguan- (easylistchina.txt: 1290) .021wudi.com/admguan- -# ||020.com/960_70 (easylistchina+easylist.txt: 1275) +# ||020.com/960_70 (easylistchina.txt: 1289) .020.com/960_70 -# ||007.mx/flv/ (easylistchina+easylist.txt: 1274) +# ||007.mx/flv/ (easylistchina.txt: 1288) .007.mx/flv/ -# ||005.tv:60000/ad.js (easylistchina+easylist.txt: 1273) +# ||005.tv:60000/ad.js (easylistchina.txt: 1287) .005.tv:60000/ad\.js -# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina+easylist.txt: 1272) +# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina.txt: 1286) .005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm\.jpg -# ||00170017.net/Public/images/ (easylistchina+easylist.txt: 1270) +# ||00170017.net/Public/images/ (easylistchina.txt: 1284) .00170017.net/Public/images/ -# ||00170017.net/Public/dzb_gg.js (easylistchina+easylist.txt: 1269) +# ||00170017.net/Public/dzb_gg.js (easylistchina.txt: 1283) .00170017.net/Public/dzb_gg\.js -# |http://www.i-ab.co/zz/ (easylistchina+easylist.txt: 1268) +# |http://www.i-ab.co/zz/ (easylistchina.txt: 1282) www.i-ab.co/zz/ -# |http://*/ad_bj.js? (easylistchina+easylist.txt: 1260) +# |http://*/ad_bj.js? (easylistchina.txt: 1274) /(.*/)?ad_bj\.js\? -# |http://*.7m.cn/b/ (easylistchina+easylist.txt: 1258) +# |http://*.7m.cn/b/ (easylistchina.txt: 1272) /.*\.7m\.cn/b/ .*.7m.cn/b/ -# _yad_jsonp_ (easylistchina+easylist.txt: 1252) +# _yad_jsonp_ (easylistchina.txt: 1266) /.*_yad_jsonp_ -# _vmind.qqvideo.tc.qq.com^ (easylistchina+easylist.txt: 1251) +# _vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1265) /.*_vmind\.qqvideo\.tc\.qq\.com[^\w%.-] -# _!!1731999033. (easylistchina+easylist.txt: 1249) +# _!!1731999033. (easylistchina.txt: 1263) /.*_!!1731999033\. -# ^zhuanqian/adall.js (easylistchina+easylist.txt: 1248) +# ^zhuanqian/adall.js (easylistchina.txt: 1262) /(.*[^\w%.-])?zhuanqian/adall\.js -# ?method=baidu.ting.commercial.tactics& (easylistchina+easylist.txt: 1247) +# ?method=baidu.ting.commercial.tactics& (easylistchina.txt: 1261) /.*\?method=baidu\.ting\.commercial\.tactics& -# :88/lighttpd/default/ (easylistchina+easylist.txt: 1246) +# :88/lighttpd/default/ (easylistchina.txt: 1260) /.*:88/lighttpd/default/ -# /yythems/images/tuiguang.png (easylistchina+easylist.txt: 1245) +# /yythems/images/tuiguang.png (easylistchina.txt: 1259) /(.*/)?yythems/images/tuiguang\.png -# /yythems/images/1213.gif (easylistchina+easylist.txt: 1244) +# /yythems/images/1213.gif (easylistchina.txt: 1258) /(.*/)?yythems/images/1213\.gif -# /ysm/ewdna/* (easylistchina+easylist.txt: 1243) +# /ysm/ewdna/* (easylistchina.txt: 1257) /(.*/)?ysm/ewdna/.* -# /ysm.ezprice.net/* (easylistchina+easylist.txt: 1242) +# /ysm.ezprice.net/* (easylistchina.txt: 1256) /(.*/)?ysm\.ezprice\.net/.* ysm.ezprice.net/.* -# /youxituoluo/images/text_top_ (easylistchina+easylist.txt: 1241) +# /youxituoluo/images/text_top_ (easylistchina.txt: 1255) /(.*/)?youxituoluo/images/text_top_ -# /xiao1234.com/ads/* (easylistchina+easylist.txt: 1237) +# /xiao1234.com/ads/* (easylistchina.txt: 1251) /(.*/)?xiao1234\.com/ads/.* xiao1234.com/ads/.* -# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina+easylist.txt: 1234) +# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina.txt: 1248) /(.*/)?www\.soft4fun\.net/wp-content/uploads/.*_banner www.soft4fun.net/wp-content/uploads/.*_banner -# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina+easylist.txt: 1233) +# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina.txt: 1247) /(.*/)?www\.kocpc\.com\.tw/wp-content/uploads/.*\.gif www.kocpc.com.tw/wp-content/uploads/.*\.gif -# /wangyuedeux/imgs/youlian.png (easylistchina+easylist.txt: 1228) +# /wangyuedeux/imgs/youlian.png (easylistchina.txt: 1242) /(.*/)?wangyuedeux/imgs/youlian\.png -# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina+easylist.txt: 1227) +# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina.txt: 1241) /(.*/)?wangyuedeux/imgs/wangzhuano\.jpg -# /vmind.qqvideo.tc.qq.com^ (easylistchina+easylist.txt: 1226) +# /vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1240) /(.*/)?vmind\.qqvideo\.tc\.qq\.com[^\w%.-] vmind.qqvideo.tc.qq.com -# /uniontgm.cmb. (easylistchina+easylist.txt: 1224) +# /uniontgm.cmb. (easylistchina.txt: 1238) /(.*/)?uniontgm\.cmb\. uniontgm.cmb.*. -# /tonghuacun/skin/zxf/kan_hree.js (easylistchina+easylist.txt: 1222) +# /tonghuacun/skin/zxf/kan_hree.js (easylistchina.txt: 1236) /(.*/)?tonghuacun/skin/zxf/kan_hree\.js -# /sznews/images/bbsgg (easylistchina+easylist.txt: 1219) +# /sznews/images/bbsgg (easylistchina.txt: 1233) /(.*/)?sznews/images/bbsgg -# /static/btmeegg/* (easylistchina+easylist.txt: 1216) +# /static/btmeegg/* (easylistchina.txt: 1230) /(.*/)?static/btmeegg/.* -# /sinaLoginReward2014_comment. (easylistchina+easylist.txt: 1212) +# /sinaLoginReward2014_comment. (easylistchina.txt: 1227) /(.*/)?sinaLoginReward2014_comment\. -# /sinaLoginReward2014. (easylistchina+easylist.txt: 1211) +# /sinaLoginReward2014. (easylistchina.txt: 1226) /(.*/)?sinaLoginReward2014\. sinaLoginReward2014.*. -# /sc_ifeng/* (easylistchina+easylist.txt: 1209) +# /sc_ifeng/* (easylistchina.txt: 1224) /(.*/)?sc_ifeng/.* -# /pub/news/gzrb/*$script (easylistchina+easylist.txt: 1207) +# /pub/news/gzrb/*$script (easylistchina.txt: 1222) /(.*/)?pub/news/gzrb/.* -# /opbb/obpp.tpl (easylistchina+easylist.txt: 1205) +# /opbb/obpp.tpl (easylistchina.txt: 1220) /(.*/)?opbb/obpp\.tpl -# /opbb/float.js (easylistchina+easylist.txt: 1204) +# /opbb/float.js (easylistchina.txt: 1219) /(.*/)?opbb/float\.js -# /nowscore/ad/* (easylistchina+easylist.txt: 1203) +# /nowscore/ad/* (easylistchina.txt: 1218) /(.*/)?nowscore/ad/.* -# /nimabdd_1010/*baidu (easylistchina+easylist.txt: 1202) +# /nimabdd_1010/*baidu (easylistchina.txt: 1217) /(.*/)?nimabdd_1010/.*baidu -# /newhuagg/index_ (easylistchina+easylist.txt: 1200) +# /newhuagg/index_ (easylistchina.txt: 1215) /(.*/)?newhuagg/index_ -# /newhuagg/*_right (easylistchina+easylist.txt: 1199) +# /newhuagg/*_right (easylistchina.txt: 1214) /(.*/)?newhuagg/.*_right -# /nddailyfile/webadv/* (easylistchina+easylist.txt: 1198) +# /nddailyfile/webadv/* (easylistchina.txt: 1213) /(.*/)?nddailyfile/webadv/.* -# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina+easylist.txt: 1196) +# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina.txt: 1211) /(.*/)?msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d\.jpg -# /moneymaker/js/videoplayer.js (easylistchina+easylist.txt: 1195) +# /moneymaker/js/videoplayer.js (easylistchina.txt: 1210) /(.*/)?moneymaker/js/videoplayer\.js -# /moneymaker/js/tmpp.js (easylistchina+easylist.txt: 1194) +# /moneymaker/js/tmpp.js (easylistchina.txt: 1209) /(.*/)?moneymaker/js/tmpp\.js -# /moneymaker/js/kppp.js (easylistchina+easylist.txt: 1193) +# /moneymaker/js/kppp.js (easylistchina.txt: 1208) /(.*/)?moneymaker/js/kppp\.js -# /moneymaker/js/fkpp.js (easylistchina+easylist.txt: 1192) +# /moneymaker/js/fkpp.js (easylistchina.txt: 1207) /(.*/)?moneymaker/js/fkpp\.js -# /moneymaker/images/*.gif (easylistchina+easylist.txt: 1191) +# /moneymaker/images/*.gif (easylistchina.txt: 1206) /(.*/)?moneymaker/images/.*\.gif -# /modules/video/player/nuevo/midroll.php? (easylistchina+easylist.txt: 1190) +# /modules/video/player/nuevo/midroll.php? (easylistchina.txt: 1205) /(.*/)?modules/video/player/nuevo/midroll\.php\? -# /kocpc.myweb.hinet.net^ (easylistchina+easylist.txt: 1186) +# /kocpc.myweb.hinet.net^ (easylistchina.txt: 1202) /(.*/)?kocpc\.myweb\.hinet\.net[^\w%.-] kocpc.myweb.hinet.net -# /images/amsun100.png (easylistchina+easylist.txt: 1164) +# /images/amsun100.png (easylistchina.txt: 1182) /(.*/)?images/amsun100\.png -# /ifengRotatorAd.js (easylistchina+easylist.txt: 1158) +# /ifengRotatorAd.js (easylistchina.txt: 1176) /(.*/)?ifengRotatorAd\.js ifengRotatorAd.js*. -# /html/taobao_focus_ (easylistchina+easylist.txt: 1157) +# /html/taobao_focus_ (easylistchina.txt: 1175) /(.*/)?html/taobao_focus_ -# /homead/*_appledaily_bg. (easylistchina+easylist.txt: 1155) +# /homead/*_appledaily_bg. (easylistchina.txt: 1173) /(.*/)?homead/.*_appledaily_bg\. -# /gyw_index/*/images/ad_ (easylistchina+easylist.txt: 1154) +# /gyw_index/*/images/ad_ (easylistchina.txt: 1172) /(.*/)?gyw_index/.*/images/ad_ -# /game/aplus/pptv/* (easylistchina+easylist.txt: 1149) +# /game/aplus/pptv/* (easylistchina.txt: 1167) /(.*/)?game/aplus/pptv/.* -# /front/adv/getpmadvlist (easylistchina+easylist.txt: 1148) +# /front/adv/getpmadvlist (easylistchina.txt: 1166) /(.*/)?front/adv/getpmadvlist -# /dy_44jjss/* (easylistchina+easylist.txt: 1144) -/(.*/)?dy_44jjss/.* -# /dhfun_ad/* (easylistchina+easylist.txt: 1143) +# /dhfun_ad/* (easylistchina.txt: 1163) /(.*/)?dhfun_ad/.* -# /comiis_yccs/ads/* (easylistchina+easylist.txt: 1138) +# /comiis_yccs/ads/* (easylistchina.txt: 1158) /(.*/)?comiis_yccs/ads/.* -# /cari/daybanner/* (easylistchina+easylist.txt: 1137) +# /cari/daybanner/* (easylistchina.txt: 1157) /(.*/)?cari/daybanner/.* -# /cari/banner/* (easylistchina+easylist.txt: 1136) +# /cari/banner/* (easylistchina.txt: 1156) /(.*/)?cari/banner/.* -# /avshow_cn1.gif (easylistchina+easylist.txt: 1129) +# /avshow_cn1.gif (easylistchina.txt: 1149) /(.*/)?avshow_cn1\.gif -# /Atemplate/dd_1010/baidu (easylistchina+easylist.txt: 1125) +# /Atemplate/dd_1010/baidu (easylistchina.txt: 1146) /(.*/)?Atemplate/dd_1010/baidu -# /Aemplate/dd_1010/baidu (easylistchina+easylist.txt: 1121) +# /Aemplate/dd_1010/baidu (easylistchina.txt: 1142) /(.*/)?Aemplate/dd_1010/baidu -# /adscript/crazyad.js (easylistchina+easylist.txt: 1119) +# /adscript/crazyad.js (easylistchina.txt: 1140) /(.*/)?adscript/crazyad\.js -# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina+easylist.txt: 1115) +# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina.txt: 1139) /(.*/)?Addsa\.dsj/Bsdd_1010/.*Baidu Addsa.dsj/Bsdd_1010/.*Baidu -# /adcg/* (easylistchina+easylist.txt: 1114) +# /adcg/* (easylistchina.txt: 1138) /(.*/)?adcg/.* -# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina+easylist.txt: 1111) +# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina.txt: 1135) /(.*/)?a83b3cdeacac5a503717469ca5084ebc\. a83b3cdeacac5a503717469ca5084ebc.*. -# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina+easylist.txt: 1106) +# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina.txt: 1130) /(.*/)?934b2bc8de85e32ae7588f2eb955ee36\. 934b2bc8de85e32ae7588f2eb955ee36.*. -# /52meiju_7 (easylistchina+easylist.txt: 1105) +# /52meiju_7 (easylistchina.txt: 1129) /(.*/)?52meiju_7 -# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina+easylist.txt: 1104) +# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina.txt: 1128) /(.*/)?435f1c6f9f6b545254a00e426b9aeae1\. 435f1c6f9f6b545254a00e426b9aeae1.*. -# /404.safedog.cn/sitedog_stat_new.html (easylistchina+easylist.txt: 1103) +# /404.safedog.cn/sitedog_stat_new.html (easylistchina.txt: 1127) /(.*/)?404\.safedog\.cn/sitedog_stat_new\.html 404.safedog.cn/sitedog_stat_new\.html -# /2tu/heisiwang.js (easylistchina+easylist.txt: 1102) +# /2tu/heisiwang.js (easylistchina.txt: 1126) /(.*/)?2tu/heisiwang\.js -# /2tu/ads/* (easylistchina+easylist.txt: 1101) +# /2tu/ads/* (easylistchina.txt: 1125) /(.*/)?2tu/ads/.* -# /200804ad/* (easylistchina+easylist.txt: 1099) +# /200804ad/* (easylistchina.txt: 1123) /(.*/)?200804ad/.* -# /18touch-guanggao. (easylistchina+easylist.txt: 1098) +# /18touch-guanggao. (easylistchina.txt: 1122) /(.*/)?18touch-guanggao\. 18touch-guanggao.*. -# /10jqka_info/html/ad_ (easylistchina+easylist.txt: 1097) +# /10jqka_info/html/ad_ (easylistchina.txt: 1121) /(.*/)?10jqka_info/html/ad_ -# .niusnews.com/upload/banners/ (easylistchina+easylist.txt: 1096) +# .niusnews.com/upload/banners/ (easylistchina.txt: 1120) /.*\.niusnews\.com/upload/banners/ .*.niusnews.com/upload/banners/ -# ||pacd.3conline.com^ (easylistchina+easylist.txt: 1090) -.pacd.3conline.com -# .adsame.libaclub.com^ (easylistchina+easylist.txt: 1089) +# .adsame.libaclub.com^ (easylistchina.txt: 1113) /.*\.adsame\.libaclub\.com[^\w%.-] .*.adsame.libaclub.com -# .543evv.com/js/config.js (easylistchina+easylist.txt: 1088) +# .543evv.com/js/config.js (easylistchina.txt: 1112) /.*\.543evv\.com/js/config\.js .*.543evv.com/js/config\.js -# ||zhubajie.com/?fromcode=$popup (easylistchina+easylist.txt: 1086) +# ||zhubajie.com/?fromcode=$popup (easylistchina.txt: 1110) .zhubajie.com/\?fromcode= -# ||yy18.info/yyrethanks18.$popup (easylistchina+easylist.txt: 1085) +# ||yy18.info/yyrethanks18.$popup (easylistchina.txt: 1109) .yy18.info/yyrethanks18\. -# ||vnet.cn^*.html?$popup,third-party (easylistchina+easylist.txt: 1082) +# ||vnet.cn^*.html?$popup,third-party (easylistchina.txt: 1106) .vnet.cn/.*\.html\? -# ||uc8.cc/award/$popup (easylistchina+easylist.txt: 1081) -.uc8.cc/award/ -# ||todayapp.cc^$popup,third-party (easylistchina+easylist.txt: 1080) +# ||todayapp.cc^$popup,third-party (easylistchina.txt: 1105) .todayapp.cc -# ||t-movies.com.tw/pop.asp$popup (easylistchina+easylist.txt: 1078) +# ||t-movies.com.tw/pop.asp$popup (easylistchina.txt: 1102) .t-movies.com.tw/pop\.asp -# ||son999.com^$popup,third-party (easylistchina+easylist.txt: 1077) +# ||son999.com^$popup,third-party (easylistchina.txt: 1101) .son999.com -# ||sohu.com/i/?pvid=$popup (easylistchina+easylist.txt: 1076) +# ||sohu.com/i/?pvid=$popup (easylistchina.txt: 1100) .sohu.com/i/\?pvid= -# ||smartor.org/iclk/?zoneid=$popup (easylistchina+easylist.txt: 1075) +# ||smartor.org/iclk/?zoneid=$popup (easylistchina.txt: 1099) .smartor.org/iclk/\?zoneid= -# ||qidian.com/showavd.$popup (easylistchina+easylist.txt: 1074) +# ||qidian.com/showavd.$popup (easylistchina.txt: 1098) .qidian.com/showavd\. -# ||moe.005.tv^$popup,third-party (easylistchina+easylist.txt: 1072) +# ||moe.005.tv^$popup,third-party (easylistchina.txt: 1096) .moe.005.tv -# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina+easylist.txt: 1070) +# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina.txt: 1094) .kuai.xunlei.com/do_e_mu\?data= -# ||jjwxc.net/jjad*.html$popup (easylistchina+easylist.txt: 1068) +# ||jjwxc.net/jjad*.html$popup (easylistchina.txt: 1092) .jjwxc.net/jjad.*\.html -# ||iswan.cn^$popup,third-party (easylistchina+easylist.txt: 1067) +# ||iswan.cn^$popup,third-party (easylistchina.txt: 1091) .iswan.cn -# ||iqiyi.com/track$popup (easylistchina+easylist.txt: 1066) +# ||iqiyi.com/track$popup (easylistchina.txt: 1090) .iqiyi.com/track -# ||ihualun.com^$popup (easylistchina+easylist.txt: 1065) +# ||ihualun.com^$popup (easylistchina.txt: 1089) .ihualun.com -# ||hinet.net/product/promotion/$popup (easylistchina+easylist.txt: 1064) +# ||hinet.net/product/promotion/$popup (easylistchina.txt: 1088) .hinet.net/product/promotion/ -# ||gxp.cc^$popup,third-party (easylistchina+easylist.txt: 1063) -.gxp.cc -# ||greenet.cn^*_popu_$popup (easylistchina+easylist.txt: 1062) +# ||greenet.cn^*_popu_$popup (easylistchina.txt: 1087) .greenet.cn/.*_popu_ -# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina+easylist.txt: 1061) +# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina.txt: 1086) .gd.ct10000.com/.*/push/ -# ||gd.189.cn^*/push/$popup,third-party (easylistchina+easylist.txt: 1060) +# ||gd.189.cn^*/push/$popup,third-party (easylistchina.txt: 1085) .gd.189.cn/.*/push/ -# ||gd.189.cn/push/$popup,third-party (easylistchina+easylist.txt: 1059) +# ||gd.189.cn/push/$popup,third-party (easylistchina.txt: 1084) .gd.189.cn/push/ -# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina+easylist.txt: 1058) +# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina.txt: 1083) .gd.189.cn/gz/promotion/ -# ||gd.189.cn/ad/$popup,third-party (easylistchina+easylist.txt: 1057) +# ||gd.189.cn/ad/$popup,third-party (easylistchina.txt: 1082) .gd.189.cn/ad/ -# ||dhqp68.com^$popup,third-party (easylistchina+easylist.txt: 1056) +# ||gamer.com.tw/adcounter.$popup (easylistchina.txt: 1081) +.gamer.com.tw/adcounter\. +# ||dhqp68.com^$popup,third-party (easylistchina.txt: 1080) .dhqp68.com -# ||cnyjk.com^$popup,third-party (easylistchina+easylist.txt: 1055) -.cnyjk.com -# ||c.admaster.com.cn^$popup (easylistchina+easylist.txt: 1054) +# ||c.admaster.com.cn^$popup (easylistchina.txt: 1079) .c.admaster.com.cn -# ||ark.letv.com/t?$popup (easylistchina+easylist.txt: 1053) +# ||baidu.com/baidu.php?url=$popup (easylistchina.txt: 1078) +.baidu.com/baidu\.php\?url= +# ||baidu.com/adrc.$popup (easylistchina.txt: 1077) +.baidu.com/adrc\. +# ||ark.letv.com/t?$popup (easylistchina.txt: 1076) .ark.letv.com/t\? -# ||aiwanma99.com^$popup (easylistchina+easylist.txt: 1052) +# ||aiwanma99.com^$popup (easylistchina.txt: 1075) .aiwanma99.com -# ||ad.189so.cn^$popup (easylistchina+easylist.txt: 1051) +# ||ad.189so.cn^$popup (easylistchina.txt: 1074) .ad.189so.cn -# ||9100300.com^$popup (easylistchina+easylist.txt: 1049) +# ||9100300.com^$popup (easylistchina.txt: 1072) .9100300.com -# ||133gp.com^$popup (easylistchina+easylist.txt: 1047) +# ||133gp.com^$popup (easylistchina.txt: 1070) .133gp.com -# ||093game.com^$popup,third-party (easylistchina+easylist.txt: 1045) +# ||093game.com^$popup,third-party (easylistchina.txt: 1068) .093game.com -# /pushstart.aspx?$popup,third-party (easylistchina+easylist.txt: 1043) +# /pushstart.aspx?$popup,third-party (easylistchina.txt: 1066) /(.*/)?pushstart\.aspx\? -# /pushportal/PushPortalServer$popup,third-party (easylistchina+easylist.txt: 1042) +# /pushportal/PushPortalServer$popup,third-party (easylistchina.txt: 1065) /(.*/)?pushportal/PushPortalServer -# /portalwlanad/pages/*$popup (easylistchina+easylist.txt: 1041) +# /portalwlanad/pages/*$popup (easylistchina.txt: 1064) /(.*/)?portalwlanad/pages/.* -# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina+easylist.txt: 1039) +# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina.txt: 1062) /(.*/)?BadwebRemindPage\.aspx\?param= -# .com/?Intr=$popup,third-party (easylistchina+easylist.txt: 1037) +# .com/?Intr=$popup,third-party (easylistchina.txt: 1060) /.*\.com/\?Intr= .*.com/\?Intr= -# .com/?aff=$popup,third-party (easylistchina+easylist.txt: 1036) +# .com/?aff=$popup,third-party (easylistchina.txt: 1059) /.*\.com/\?aff= .*.com/\?aff= -# .189.gd^*.html?p=$popup,third-party (easylistchina+easylist.txt: 1035) +# .189.gd^*.html?p=$popup,third-party (easylistchina.txt: 1058) /.*\.189\.gd[^\w%.-].*\.html\?p= .*.189.gd/.*\.html\?p= -# ||zytwq.net^$third-party (easylistchina+easylist.txt: 1033) +# ||zytwq.net^$third-party (easylistchina.txt: 1056) .zytwq.net -# ||ztdsp.com^$third-party (easylistchina+easylist.txt: 1032) +# ||ztdsp.com^$third-party (easylistchina.txt: 1055) .ztdsp.com -# ||zp265.com^$third-party (easylistchina+easylist.txt: 1031) +# ||zp265.com^$third-party (easylistchina.txt: 1054) .zp265.com -# ||zp22938576.com^ (easylistchina+easylist.txt: 1030) +# ||zp22938576.com^ (easylistchina.txt: 1053) .zp22938576.com -# ||zj66.net^$third-party (easylistchina+easylist.txt: 1029) +# ||zj66.net^$third-party (easylistchina.txt: 1052) .zj66.net -# ||zgyiyi.com^$third-party (easylistchina+easylist.txt: 1028) +# ||zgyiyi.com^$third-party (easylistchina.txt: 1051) .zgyiyi.com -# ||zgunion.cn^ (easylistchina+easylist.txt: 1027) +# ||zgunion.cn^ (easylistchina.txt: 1050) .zgunion.cn -# ||zgksb.com^ (easylistchina+easylist.txt: 1026) +# ||zgksb.com^ (easylistchina.txt: 1049) .zgksb.com -# ||ze5.com^$third-party (easylistchina+easylist.txt: 1025) +# ||ze5.com^$third-party (easylistchina.txt: 1048) .ze5.com -# ||zd6789.com^$third-party (easylistchina+easylist.txt: 1024) +# ||zd6789.com^$third-party (easylistchina.txt: 1047) .zd6789.com -# ||zampdsp.com^$third-party (easylistchina+easylist.txt: 1023) +# ||zampdsp.com^$third-party (easylistchina.txt: 1046) .zampdsp.com -# ||zampda.net^$third-party (easylistchina+easylist.txt: 1022) +# ||zampda.net^$third-party (easylistchina.txt: 1045) .zampda.net -# ||yzxls.com^$third-party (easylistchina+easylist.txt: 1021) +# ||yzxls.com^$third-party (easylistchina.txt: 1044) .yzxls.com -# ||yyp17.com^ (easylistchina+easylist.txt: 1020) +# ||yyp17.com^ (easylistchina.txt: 1043) .yyp17.com -# ||yxdyk.com^$script,third-party (easylistchina+easylist.txt: 1019) +# ||yxdyk.com^$script,third-party (easylistchina.txt: 1042) .yxdyk.com -# ||yunfanlm.com^$third-party (easylistchina+easylist.txt: 1018) +# ||yunfanlm.com^$third-party (easylistchina.txt: 1041) .yunfanlm.com -# ||yule8.net^ (easylistchina+easylist.txt: 1017) +# ||yule8.net^ (easylistchina.txt: 1040) .yule8.net -# ||ysm.ezprice.net^$third-party (easylistchina+easylist.txt: 1016) +# ||yuanhsu.com^$third-party (easylistchina.txt: 1039) +.yuanhsu.com +# ||ysm.ezprice.net^$third-party (easylistchina.txt: 1038) .ysm.ezprice.net -# ||yqw88.com^ (easylistchina+easylist.txt: 1015) +# ||yqw88.com^ (easylistchina.txt: 1037) .yqw88.com -# ||yoyi.tv^$third-party (easylistchina+easylist.txt: 1014) +# ||yoyi.tv^$third-party (easylistchina.txt: 1036) .yoyi.tv -# ||yoyi.com.cn^$third-party (easylistchina+easylist.txt: 1013) +# ||yoyi.com.cn^$third-party (easylistchina.txt: 1035) .yoyi.com.cn -# ||youxicool.net^$third-party (easylistchina+easylist.txt: 1012) +# ||youxicool.net^$third-party (easylistchina.txt: 1034) .youxicool.net -# ||youle55.com^$third-party (easylistchina+easylist.txt: 1011) +# ||youle55.com^$third-party (easylistchina.txt: 1033) .youle55.com -# ||youbet8.com^$third-party (easylistchina+easylist.txt: 1010) +# ||youbet8.com^$third-party (easylistchina.txt: 1032) .youbet8.com -# ||yongv.com^$third-party (easylistchina+easylist.txt: 1009) +# ||yongv.com^$third-party (easylistchina.txt: 1031) .yongv.com -# ||ymcqb.com^ (easylistchina+easylist.txt: 1008) +# ||ymcqb.com^ (easylistchina.txt: 1030) .ymcqb.com -# ||yk0712.com^ (easylistchina+easylist.txt: 1007) +# ||yk0712.com^ (easylistchina.txt: 1029) .yk0712.com -# ||yiwad.com^$third-party (easylistchina+easylist.txt: 1006) +# ||yiwad.com^$third-party (easylistchina.txt: 1028) .yiwad.com -# ||yiqifa.com^*.js$third-party (easylistchina+easylist.txt: 1005) +# ||yiqifa.com^*.js$third-party (easylistchina.txt: 1027) .yiqifa.com/.*\.js -# ||yiqifa.com^$subdocument (easylistchina+easylist.txt: 1004) +# ||yiqifa.com^$subdocument (easylistchina.txt: 1026) .yiqifa.com -# ||yiiwoo.com^$third-party (easylistchina+easylist.txt: 1003) +# ||yiiwoo.com^$third-party (easylistchina.txt: 1025) .yiiwoo.com -# ||yigao.com^$third-party (easylistchina+easylist.txt: 1002) +# ||yigao.com^$third-party (easylistchina.txt: 1024) .yigao.com -# ||ye3.com^$third-party (easylistchina+easylist.txt: 1001) +# ||ye3.com^$third-party (easylistchina.txt: 1023) .ye3.com -# ||ydcpc.com^$third-party (easylistchina+easylist.txt: 1000) +# ||ydcpc.com^$third-party (easylistchina.txt: 1022) .ydcpc.com -# ||xzyituo.com^ (easylistchina+easylist.txt: 999) +# ||xzyituo.com^ (easylistchina.txt: 1021) .xzyituo.com -# ||xzdchl.com^$third-party (easylistchina+easylist.txt: 998) +# ||xzdchl.com^$third-party (easylistchina.txt: 1020) .xzdchl.com -# ||xxad.cc^ (easylistchina+easylist.txt: 997) +# ||xxad.cc^ (easylistchina.txt: 1019) .xxad.cc -# ||xtxa.net^ (easylistchina+easylist.txt: 996) +# ||xtxa.net^ (easylistchina.txt: 1018) .xtxa.net -# ||xsu.cc^$third-party (easylistchina+easylist.txt: 995) +# ||xsu.cc^$third-party (easylistchina.txt: 1017) .xsu.cc -# ||xp3366.com^$third-party (easylistchina+easylist.txt: 994) +# ||xp3366.com^$third-party (easylistchina.txt: 1016) .xp3366.com -# ||xhmrv.com^ (easylistchina+easylist.txt: 993) +# ||xhmrv.com^ (easylistchina.txt: 1015) .xhmrv.com -# ||xe2c.com^$third-party (easylistchina+easylist.txt: 992) +# ||xe2c.com^$third-party (easylistchina.txt: 1014) .xe2c.com -# ||xdwan.com^$third-party (easylistchina+easylist.txt: 991) +# ||xdwan.com^$third-party (easylistchina.txt: 1013) .xdwan.com -# ||xcy8.com^ (easylistchina+easylist.txt: 990) +# ||xcy8.com^ (easylistchina.txt: 1012) .xcy8.com -# ||xchgx.com^ (easylistchina+easylist.txt: 989) +# ||xchgx.com^ (easylistchina.txt: 1011) .xchgx.com -# ||xajx.com^$third-party (easylistchina+easylist.txt: 988) +# ||xajx.com^$third-party (easylistchina.txt: 1010) .xajx.com -# ||xabaitai.com^ (easylistchina+easylist.txt: 987) +# ||xabaitai.com^ (easylistchina.txt: 1009) .xabaitai.com -# ||xa9t.com^ (easylistchina+easylist.txt: 986) +# ||xa9t.com^ (easylistchina.txt: 1008) .xa9t.com -# ||wudang05.com^$third-party (easylistchina+easylist.txt: 985) +# ||x9377a.com^ (easylistchina.txt: 1007) +.x9377a.com +# ||wudang05.com^$third-party (easylistchina.txt: 1006) .wudang05.com -# ||ws341.com^ (easylistchina+easylist.txt: 984) +# ||ws341.com^ (easylistchina.txt: 1005) .ws341.com -# ||wqzyt.net^$third-party (easylistchina+easylist.txt: 983) +# ||wqzyt.net^$third-party (easylistchina.txt: 1004) .wqzyt.net -# ||wqsph.net^ (easylistchina+easylist.txt: 982) +# ||wqsph.net^ (easylistchina.txt: 1003) .wqsph.net -# ||wo685.com^$third-party (easylistchina+easylist.txt: 981) +# ||wo685.com^$third-party (easylistchina.txt: 1002) .wo685.com -# ||wit.qq.com^$third-party (easylistchina+easylist.txt: 980) +# ||wit.qq.com^$third-party (easylistchina.txt: 1001) .wit.qq.com -# ||winvestern.com.cn^ (easylistchina+easylist.txt: 979) +# ||winvestern.com.cn^ (easylistchina.txt: 1000) .winvestern.com.cn -# ||widget.ezprice.com.tw^$third-party (easylistchina+easylist.txt: 978) +# ||widget.ezprice.com.tw^$third-party (easylistchina.txt: 999) .widget.ezprice.com.tw -# ||weizhanle.com^$third-party (easylistchina+easylist.txt: 977) +# ||weizhanle.com^$third-party (easylistchina.txt: 998) .weizhanle.com -# ||weddingeeos.com^$third-party (easylistchina+easylist.txt: 976) +# ||weddingeeos.com^$third-party (easylistchina.txt: 997) .weddingeeos.com -# ||weareqy.com^$third-party (easylistchina+easylist.txt: 975) +# ||weareqy.com^$third-party (easylistchina.txt: 996) .weareqy.com -# ||wdzsb.com.cn^ (easylistchina+easylist.txt: 974) +# ||wdzsb.com.cn^ (easylistchina.txt: 995) .wdzsb.com.cn -# ||w65p.com^ (easylistchina+easylist.txt: 973) +# ||w65p.com^ (easylistchina.txt: 994) .w65p.com -# ||vsnoon.com^$third-party (easylistchina+easylist.txt: 972) +# ||vsnoon.com^$third-party (easylistchina.txt: 993) .vsnoon.com -# ||vpie.net^$third-party (easylistchina+easylist.txt: 971) +# ||vpie.net^$third-party (easylistchina.txt: 992) .vpie.net -# ||visadd.com^$third-party (easylistchina+easylist.txt: 970) +# ||visadd.com^$third-party (easylistchina.txt: 991) .visadd.com -# ||victorjx.com^ (easylistchina+easylist.txt: 969) +# ||victorjx.com^ (easylistchina.txt: 990) .victorjx.com -# ||vf5c.com^$third-party (easylistchina+easylist.txt: 968) +# ||vf5c.com^$third-party (easylistchina.txt: 989) .vf5c.com -# ||vamaker.com^$third-party (easylistchina+easylist.txt: 967) +# ||vamaker.com^$third-party (easylistchina.txt: 988) .vamaker.com -# ||v707070.com^ (easylistchina+easylist.txt: 966) +# ||v707070.com^ (easylistchina.txt: 987) .v707070.com -# ||v-links.net^$third-party (easylistchina+easylist.txt: 965) +# ||v-links.net^$third-party (easylistchina.txt: 986) .v-links.net -# ||urlad.com.tw^$third-party (easylistchina+easylist.txt: 964) +# ||urlad.com.tw^$third-party (easylistchina.txt: 985) .urlad.com.tw -# ||uoyrsd.com^ (easylistchina+easylist.txt: 963) +# ||uoyrsd.com^ (easylistchina.txt: 984) .uoyrsd.com -# ||unionsky2.cn^$third-party (easylistchina+easylist.txt: 962) +# ||unionsky2.cn^$third-party (easylistchina.txt: 983) .unionsky2.cn -# ||unionsky.cn^$third-party (easylistchina+easylist.txt: 961) +# ||unionsky.cn^$third-party (easylistchina.txt: 982) .unionsky.cn -# ||unionli.com^$third-party (easylistchina+easylist.txt: 960) +# ||unionli.com^$third-party (easylistchina.txt: 981) .unionli.com -# ||unionbig.com^$third-party (easylistchina+easylist.txt: 959) +# ||unionbig.com^$third-party (easylistchina.txt: 980) .unionbig.com -# ||union009.com^$third-party (easylistchina+easylist.txt: 958) +# ||union009.com^$third-party (easylistchina.txt: 979) .union009.com -# ||union.$third-party (easylistchina+easylist.txt: 957) +# ||union.$third-party (easylistchina.txt: 978) .union.*. -# ||unimhk.com^$third-party (easylistchina+easylist.txt: 956) +# ||unimhk.com^$third-party (easylistchina.txt: 977) .unimhk.com -# ||ulink.cc^$third-party (easylistchina+easylist.txt: 955) +# ||ulink.cc^$third-party (easylistchina.txt: 976) .ulink.cc -# ||ujian.cc^$third-party (easylistchina+easylist.txt: 954) +# ||ujian.cc^$third-party (easylistchina.txt: 975) .ujian.cc -# ||ufstone.com^$third-party (easylistchina+easylist.txt: 953) +# ||ufstone.com^$third-party (easylistchina.txt: 974) .ufstone.com -# ||ueadlian.com^$third-party (easylistchina+easylist.txt: 952) +# ||ueadlian.com^$third-party (easylistchina.txt: 973) .ueadlian.com -# ||ubmcmm.baidustatic.com^ (easylistchina+easylist.txt: 951) +# ||ubmcmm.baidustatic.com^ (easylistchina.txt: 972) .ubmcmm.baidustatic.com -# ||u88.cn^$third-party (easylistchina+easylist.txt: 950) +# ||u88.cn^$third-party (easylistchina.txt: 971) .u88.cn -# ||u.801t.com^$third-party (easylistchina+easylist.txt: 949) +# ||u.801t.com^$third-party (easylistchina.txt: 970) .u.801t.com -# ||txkjad.com^$third-party (easylistchina+easylist.txt: 948) +# ||txkjad.com^$third-party (easylistchina.txt: 969) .txkjad.com -# ||twrank.com^$third-party (easylistchina+easylist.txt: 947) +# ||twrank.com^$third-party (easylistchina.txt: 968) .twrank.com -# ||twm.com.tw^$third-party (easylistchina+easylist.txt: 946) +# ||twm.com.tw^$third-party (easylistchina.txt: 967) .twm.com.tw -# ||twcczhu.com^$third-party (easylistchina+easylist.txt: 945) +# ||twcczhu.com^$third-party (easylistchina.txt: 966) .twcczhu.com -# ||twb98.com^$third-party (easylistchina+easylist.txt: 944) +# ||twb98.com^$third-party (easylistchina.txt: 965) .twb98.com -# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 943) +# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 964) .tw-cm.ysm.yahoo.com -# ||tukj.net^$third-party (easylistchina+easylist.txt: 942) +# ||tukj.net^$third-party (easylistchina.txt: 963) .tukj.net -# ||tripadvisor.com^$third-party (easylistchina+easylist.txt: 941) +# ||tripadvisor.com^$third-party (easylistchina.txt: 962) .tripadvisor.com -# ||toy9090.com^$third-party (easylistchina+easylist.txt: 940) +# ||toy9090.com^$third-party (easylistchina.txt: 961) .toy9090.com -# ||toufangke.com^$third-party (easylistchina+easylist.txt: 939) +# ||toufangke.com^$third-party (easylistchina.txt: 960) .toufangke.com -# ||top888.com^$third-party (easylistchina+easylist.txt: 938) +# ||top888.com^$third-party (easylistchina.txt: 959) .top888.com -# ||toourbb.com^ (easylistchina+easylist.txt: 937) +# ||toourbb.com^ (easylistchina.txt: 958) .toourbb.com -# ||tk001.com^$third-party (easylistchina+easylist.txt: 936) +# ||tk001.com^$third-party (easylistchina.txt: 957) .tk001.com -# ||tg.1155t.cn^ (easylistchina+easylist.txt: 935) +# ||tg.1155t.cn^ (easylistchina.txt: 956) .tg.1155t.cn -# ||tebaidu.cn^$third-party (easylistchina+easylist.txt: 934) +# ||tebaidu.cn^$third-party (easylistchina.txt: 955) .tebaidu.cn -# ||tdayi.com^ (easylistchina+easylist.txt: 933) +# ||tdayi.com^ (easylistchina.txt: 954) .tdayi.com -# ||tc600.com^ (easylistchina+easylist.txt: 932) +# ||tc600.com^ (easylistchina.txt: 953) .tc600.com -# ||tbjfw.com^$third-party (easylistchina+easylist.txt: 931) +# ||tbjfw.com^$third-party (easylistchina.txt: 952) .tbjfw.com -# ||taotu001.com^$third-party (easylistchina+easylist.txt: 930) +# ||taotu001.com^$third-party (easylistchina.txt: 951) .taotu001.com -# ||taobaoij.com: (easylistchina+easylist.txt: 929) -# ||tanchuang002.info^$third-party (easylistchina+easylist.txt: 926) +# ||taobaoij.com: (easylistchina.txt: 950) +# ||tanchuang002.info^$third-party (easylistchina.txt: 947) .tanchuang002.info -# ||tad.suning.com^ (easylistchina+easylist.txt: 925) +# ||tad.suning.com^ (easylistchina.txt: 946) .tad.suning.com -# ||taat00889.com^ (easylistchina+easylist.txt: 924) +# ||taat00889.com^ (easylistchina.txt: 945) .taat00889.com -# ||ta80.com^$third-party (easylistchina+easylist.txt: 923) +# ||ta80.com^$third-party (easylistchina.txt: 944) .ta80.com -# ||t70123.com^ (easylistchina+easylist.txt: 922) +# ||t70123.com^ (easylistchina.txt: 943) .t70123.com -# ||t3nlink.com^$third-party (easylistchina+easylist.txt: 921) +# ||t3nlink.com^$third-party (easylistchina.txt: 942) .t3nlink.com -# ||superfish.com^$third-party (easylistchina+easylist.txt: 920) +# ||superfish.com^$third-party (easylistchina.txt: 941) .superfish.com -# ||stnts.com^$third-party (easylistchina+easylist.txt: 919) +# ||sunjianhao.com^ (easylistchina.txt: 940) +.sunjianhao.com +# ||stnts.com^$third-party (easylistchina.txt: 939) .stnts.com -# ||star8.net^$third-party (easylistchina+easylist.txt: 918) +# ||star8.net^$third-party (easylistchina.txt: 938) .star8.net -# ||sstc360.com^ (easylistchina+easylist.txt: 917) +# ||sstc360.com^ (easylistchina.txt: 937) .sstc360.com -# ||sphwq.net^$third-party (easylistchina+easylist.txt: 916) +# ||sphwq.net^$third-party (easylistchina.txt: 936) .sphwq.net -# ||spcode.baidu.com^ (easylistchina+easylist.txt: 915) +# ||spcode.baidu.com^ (easylistchina.txt: 935) .spcode.baidu.com -# ||souacode.com^$third-party (easylistchina+easylist.txt: 914) +# ||souacode.com^$third-party (easylistchina.txt: 934) .souacode.com -# ||sosobook.cn^$third-party (easylistchina+easylist.txt: 913) +# ||sosobook.cn^$third-party (easylistchina.txt: 933) .sosobook.cn -# ||socdm.com^ (easylistchina+easylist.txt: 912) +# ||socdm.com^ (easylistchina.txt: 932) .socdm.com -# ||snyu.com^$third-party (easylistchina+easylist.txt: 911) +# ||snyu.com^$third-party (easylistchina.txt: 931) .snyu.com -# ||snxyf.com^$third-party (easylistchina+easylist.txt: 910) +# ||snxyf.com^$third-party (easylistchina.txt: 930) .snxyf.com -# ||sin114.com^$third-party (easylistchina+easylist.txt: 909) +# ||sin114.com^$third-party (easylistchina.txt: 929) .sin114.com -# ||si9377.com^ (easylistchina+easylist.txt: 908) +# ||si9377.com^ (easylistchina.txt: 928) .si9377.com -# ||show.kc.taotaosou.com^ (easylistchina+easylist.txt: 907) +# ||show.kc.taotaosou.com^ (easylistchina.txt: 927) .show.kc.taotaosou.com -# ||sharele.cn^$third-party (easylistchina+easylist.txt: 906) +# ||sharele.cn^$third-party (easylistchina.txt: 926) .sharele.cn -# ||sharedaddomain.com^ (easylistchina+easylist.txt: 905) +# ||sharedaddomain.com^ (easylistchina.txt: 925) .sharedaddomain.com -# ||sgbfjs.info^ (easylistchina+easylist.txt: 904) +# ||sgbfjs.info^ (easylistchina.txt: 924) .sgbfjs.info -# ||sexy-more.com^$third-party (easylistchina+easylist.txt: 903) +# ||sexy-more.com^$third-party (easylistchina.txt: 923) .sexy-more.com -# ||sales-frontier.com^$third-party (easylistchina+easylist.txt: 902) +# ||sales-frontier.com^$third-party (easylistchina.txt: 922) .sales-frontier.com -# ||s17cnzz.com^$third-party (easylistchina+easylist.txt: 901) +# ||s17cnzz.com^$third-party (easylistchina.txt: 921) .s17cnzz.com -# ||rwjfs.com^ (easylistchina+easylist.txt: 900) +# ||rwjfs.com^ (easylistchina.txt: 920) .rwjfs.com -# ||ruxianke.com^ (easylistchina+easylist.txt: 899) +# ||ruxianke.com^ (easylistchina.txt: 919) .ruxianke.com -# ||ruanwenclub.com^$third-party (easylistchina+easylist.txt: 898) +# ||ruanwenclub.com^$third-party (easylistchina.txt: 918) .ruanwenclub.com -# ||rsccs.com^$third-party (easylistchina+easylist.txt: 897) +# ||rsccs.com^$third-party (easylistchina.txt: 917) .rsccs.com -# ||re.taotaosou.com^ (easylistchina+easylist.txt: 896) +# ||re.taotaosou.com^ (easylistchina.txt: 916) .re.taotaosou.com -# ||rbc.cn^$third-party (easylistchina+easylist.txt: 895) +# ||rbc.cn^$third-party (easylistchina.txt: 915) .rbc.cn -# ||qucaigg.com^ (easylistchina+easylist.txt: 894) +# ||qucaigg.com^ (easylistchina.txt: 914) .qucaigg.com -# ||qubilou.com^$third-party (easylistchina+easylist.txt: 893) +# ||qubilou.com^$third-party (easylistchina.txt: 913) .qubilou.com -# ||qq4g.cn^$third-party (easylistchina+easylist.txt: 892) +# ||qtmojo.com^$third-party (easylistchina.txt: 912) +.qtmojo.com +# ||qq4g.cn^$third-party (easylistchina.txt: 911) .qq4g.cn -# ||qiyou.com^$third-party (easylistchina+easylist.txt: 891) +# ||qiyou.com^$third-party (easylistchina.txt: 910) .qiyou.com -# ||qiqiww.com^ (easylistchina+easylist.txt: 890) +# ||qiqiww.com^ (easylistchina.txt: 909) .qiqiww.com -# ||qidou.com^$third-party (easylistchina+easylist.txt: 889) +# ||qidou.com^$third-party (easylistchina.txt: 908) .qidou.com -# ||prohost.com.tw^$third-party (easylistchina+easylist.txt: 888) +# ||prohost.com.tw^$third-party (easylistchina.txt: 907) .prohost.com.tw -# ||pro.cn^$third-party (easylistchina+easylist.txt: 887) +# ||pro.cn^$third-party (easylistchina.txt: 906) .pro.cn -# ||poxzyu.com^$third-party (easylistchina+easylist.txt: 886) +# ||poxzyu.com^$third-party (easylistchina.txt: 905) .poxzyu.com -# ||pos.baidu.com^ (easylistchina+easylist.txt: 885) +# ||pos.baidu.com^ (easylistchina.txt: 904) .pos.baidu.com -# ||pdsjycm.com^ (easylistchina+easylist.txt: 884) +# ||pdsjycm.com^ (easylistchina.txt: 903) .pdsjycm.com -# ||pagechoice.net^$third-party (easylistchina+easylist.txt: 883) +# ||pagechoice.net^$third-party (easylistchina.txt: 902) .pagechoice.net -# ||p3tt.com^ (easylistchina+easylist.txt: 882) +# ||p3tt.com^ (easylistchina.txt: 901) .p3tt.com -# ||p0y.cn^*.swf (easylistchina+easylist.txt: 881) +# ||p0y.cn^*.swf (easylistchina.txt: 900) .p0y.cn/.*\.swf -# ||p0y.cn^$image (easylistchina+easylist.txt: 880) +# ||p0y.cn^$image (easylistchina.txt: 899) .p0y.cn -# ||onetad.com^$third-party (easylistchina+easylist.txt: 879) +# ||onetad.com^$third-party (easylistchina.txt: 898) .onetad.com -# ||okokw.com^$third-party (easylistchina+easylist.txt: 878) +# ||okokw.com^$third-party (easylistchina.txt: 897) .okokw.com -# ||okm918.com^ (easylistchina+easylist.txt: 877) +# ||okm918.com^ (easylistchina.txt: 896) .okm918.com -# ||oikxlcv.wang^ (easylistchina+easylist.txt: 876) +# ||oikxlcv.wang^ (easylistchina.txt: 895) .oikxlcv.wang -# ||octopuspop.com^$third-party (easylistchina+easylist.txt: 874) +# ||octopuspop.com^$third-party (easylistchina.txt: 893) .octopuspop.com -# ||o091i.com^$third-party (easylistchina+easylist.txt: 873) +# ||o091i.com^$third-party (easylistchina.txt: 892) .o091i.com -# ||notice.uchome.manyou.com^ (easylistchina+easylist.txt: 872) +# ||notice.uchome.manyou.com^ (easylistchina.txt: 891) .notice.uchome.manyou.com -# ||niuza.com^$image,subdocument,third-party (easylistchina+easylist.txt: 871) +# ||niuza.com^$image,subdocument,third-party (easylistchina.txt: 890) .niuza.com -# ||niuxgame77.com^ (easylistchina+easylist.txt: 870) +# ||niuxgame77.com^ (easylistchina.txt: 889) .niuxgame77.com -# ||niurenw.com^$third-party (easylistchina+easylist.txt: 869) +# ||niurenw.com^$third-party (easylistchina.txt: 888) .niurenw.com -# ||ni22.com^$third-party (easylistchina+easylist.txt: 868) +# ||ni22.com^$third-party (easylistchina.txt: 887) .ni22.com -# ||nextcps.com^ (easylistchina+easylist.txt: 867) +# ||nextcps.com^ (easylistchina.txt: 886) .nextcps.com -# ||news.tagtoo.co^$third-party (easylistchina+easylist.txt: 866) +# ||news.tagtoo.co^$third-party (easylistchina.txt: 885) .news.tagtoo.co -# ||myzwqwe12.com^$third-party (easylistchina+easylist.txt: 865) +# ||myzwqwe12.com^$third-party (easylistchina.txt: 884) .myzwqwe12.com -# ||mytanwan.com^$third-party (easylistchina+easylist.txt: 864) +# ||mytanwan.com^$third-party (easylistchina.txt: 883) .mytanwan.com -# ||mycctvmedia.com^$third-party (easylistchina+easylist.txt: 863) +# ||mycctvmedia.com^$third-party (easylistchina.txt: 882) .mycctvmedia.com -# ||mtxsk.com^$third-party (easylistchina+easylist.txt: 862) +# ||mtxsk.com^$third-party (easylistchina.txt: 881) .mtxsk.com -# ||mscimg.com^ (easylistchina+easylist.txt: 861) +# ||mscimg.com^ (easylistchina.txt: 880) .mscimg.com -# ||moogos.com^$third-party (easylistchina+easylist.txt: 860) +# ||moogos.com^$third-party (easylistchina.txt: 879) .moogos.com -# ||moodoocrv.com.cn^ (easylistchina+easylist.txt: 859) +# ||moodoocrv.com.cn^ (easylistchina.txt: 878) .moodoocrv.com.cn -# ||mobads.baidu.com^$third-party (easylistchina+easylist.txt: 858) +# ||mobads.baidu.com^$third-party (easylistchina.txt: 877) .mobads.baidu.com -# ||mlt01.com^ (easylistchina+easylist.txt: 857) +# ||mlt01.com^ (easylistchina.txt: 876) .mlt01.com -# ||miaozhen.com^$third-party (easylistchina+easylist.txt: 856) +# ||miaozhen.com^$third-party (easylistchina.txt: 875) .miaozhen.com -# ||mgwl668.com^$third-party (easylistchina+easylist.txt: 855) +# ||mgwl668.com^$third-party (easylistchina.txt: 874) .mgwl668.com -# ||mediav.com^$third-party (easylistchina+easylist.txt: 854) +# ||mediav.com^$third-party (easylistchina.txt: 873) .mediav.com -# ||media8.cn^$third-party (easylistchina+easylist.txt: 853) +# ||media8.cn^$third-party (easylistchina.txt: 872) .media8.cn -# ||mathtag.com^$third-party (easylistchina+easylist.txt: 852) +# ||mathtag.com^$third-party (easylistchina.txt: 871) .mathtag.com -# ||mathads.com^ (easylistchina+easylist.txt: 851) +# ||mathads.com^ (easylistchina.txt: 870) .mathads.com -# ||mamamiyu.com^$third-party (easylistchina+easylist.txt: 850) +# ||mamamiyu.com^$third-party (easylistchina.txt: 869) .mamamiyu.com -# ||mainbx.com^ (easylistchina+easylist.txt: 849) +# ||mainbx.com^ (easylistchina.txt: 868) .mainbx.com -# ||lzmm8.com^ (easylistchina+easylist.txt: 848) +# ||lzmm8.com^ (easylistchina.txt: 867) .lzmm8.com -# ||lx167.com^$third-party (easylistchina+easylist.txt: 847) +# ||lx167.com^$third-party (easylistchina.txt: 866) .lx167.com -# ||lv711.net^$third-party (easylistchina+easylist.txt: 846) +# ||lv711.net^$third-party (easylistchina.txt: 865) .lv711.net -# ||lnr1.com^$third-party (easylistchina+easylist.txt: 845) +# ||lnr1.com^$third-party (easylistchina.txt: 864) .lnr1.com -# ||lishuanghao.com^ (easylistchina+easylist.txt: 844) +# ||lishuanghao.com^ (easylistchina.txt: 863) .lishuanghao.com -# ||linkvans.com^$third-party (easylistchina+easylist.txt: 843) +# ||linkvans.com^$third-party (easylistchina.txt: 862) .linkvans.com -# ||lianmeng.360.cn^$third-party (easylistchina+easylist.txt: 842) -.lianmeng.360.cn -# ||lhzly.com^$third-party (easylistchina+easylist.txt: 841) +# ||lhzly.com^$third-party (easylistchina.txt: 860) .lhzly.com -# ||le4le.com^ (easylistchina+easylist.txt: 840) +# ||le4le.com^ (easylistchina.txt: 859) .le4le.com -# ||le123.cn^$third-party (easylistchina+easylist.txt: 839) +# ||le123.cn^$third-party (easylistchina.txt: 858) .le123.cn -# ||lajizhan.org^ (easylistchina+easylist.txt: 838) +# ||lajizhan.org^ (easylistchina.txt: 857) .lajizhan.org -# ||kuaizitech.com^$third-party (easylistchina+easylist.txt: 837) +# ||kuaizitech.com^$third-party (easylistchina.txt: 856) .kuaizitech.com -# ||ku9377.com^ (easylistchina+easylist.txt: 836) +# ||ku9377.com^ (easylistchina.txt: 855) .ku9377.com -# ||ku63.com^$third-party (easylistchina+easylist.txt: 835) +# ||ku63.com^$third-party (easylistchina.txt: 854) .ku63.com -# ||kmadou.com^ (easylistchina+easylist.txt: 834) +# ||kmadou.com^ (easylistchina.txt: 853) .kmadou.com -# ||kingwam.com^ (easylistchina+easylist.txt: 833) +# ||kingwam.com^ (easylistchina.txt: 852) .kingwam.com -# ||kiees.com^$image,subdocument,third-party (easylistchina+easylist.txt: 832) +# ||kiees.com^$image,subdocument,third-party (easylistchina.txt: 851) .kiees.com -# ||keyyou.net^ (easylistchina+easylist.txt: 831) +# ||keyyou.net^ (easylistchina.txt: 850) .keyyou.net -# ||keyrun.cn^$third-party (easylistchina+easylist.txt: 830) +# ||keyrun.cn^$third-party (easylistchina.txt: 849) .keyrun.cn -# ||kejet.$third-party (easylistchina+easylist.txt: 829) +# ||keydot.net^$third-party (easylistchina.txt: 848) +.keydot.net +# ||kejet.$third-party (easylistchina.txt: 847) .kejet.*. -# ||kefeng56.com^$third-party (easylistchina+easylist.txt: 828) +# ||kefeng56.com^$third-party (easylistchina.txt: 846) .kefeng56.com -# ||kdly.net^$third-party (easylistchina+easylist.txt: 827) +# ||kdly.net^$third-party (easylistchina.txt: 845) .kdly.net -# ||kaixinjiehun.com^$third-party (easylistchina+easylist.txt: 826) +# ||kaixinjiehun.com^$third-party (easylistchina.txt: 844) .kaixinjiehun.com -# ||jxjzny.com^ (easylistchina+easylist.txt: 825) +# ||jxjzny.com^ (easylistchina.txt: 843) .jxjzny.com -# ||jwqj.net^ (easylistchina+easylist.txt: 824) +# ||jwqj.net^ (easylistchina.txt: 842) .jwqj.net -# ||jusha.com^$third-party (easylistchina+easylist.txt: 823) +# ||jusha.com^$third-party (easylistchina.txt: 841) .jusha.com -# ||junnew.com^$third-party (easylistchina+easylist.txt: 822) +# ||junnew.com^$third-party (easylistchina.txt: 840) .junnew.com -# ||juandou.com^$third-party (easylistchina+easylist.txt: 821) +# ||juandou.com^$third-party (easylistchina.txt: 839) .juandou.com -# ||ju33.com^$third-party (easylistchina+easylist.txt: 820) +# ||ju33.com^$third-party (easylistchina.txt: 838) .ju33.com -# ||jtxh.net^$third-party (easylistchina+easylist.txt: 819) +# ||jtxh.net^$third-party (easylistchina.txt: 837) .jtxh.net -# ||jsyd139.com^$third-party (easylistchina+easylist.txt: 818) +# ||jsyd139.com^$third-party (easylistchina.txt: 836) .jsyd139.com -# ||jsmbaidu.com^$third-party (easylistchina+easylist.txt: 817) +# ||jsmbaidu.com^$third-party (easylistchina.txt: 835) .jsmbaidu.com -# ||jsjxhd.com^$third-party (easylistchina+easylist.txt: 816) +# ||jsjxhd.com^$third-party (easylistchina.txt: 834) .jsjxhd.com -# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 815) +# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina.txt: 833) .js-apac-ss.ysm.yahoo.com -# ||jointreport-switch.com^$third-party (easylistchina+easylist.txt: 814) +# ||jointreport-switch.com^$third-party (easylistchina.txt: 832) .jointreport-switch.com -# ||johtzj.com^ (easylistchina+easylist.txt: 813) +# ||johtzj.com^ (easylistchina.txt: 831) .johtzj.com -# ||jntmedia.cn^$third-party (easylistchina+easylist.txt: 812) +# ||jntmedia.cn^$third-party (easylistchina.txt: 830) .jntmedia.cn -# ||jnrsjm.com^ (easylistchina+easylist.txt: 811) +# ||jnrsjm.com^ (easylistchina.txt: 829) .jnrsjm.com -# ||jlssbz.com^ (easylistchina+easylist.txt: 810) +# ||jlssbz.com^ (easylistchina.txt: 828) .jlssbz.com -# ||jk939.com^ (easylistchina+easylist.txt: 809) +# ||jk939.com^ (easylistchina.txt: 827) .jk939.com -# ||jiyou2014.com^ (easylistchina+easylist.txt: 808) +# ||jiyou2014.com^ (easylistchina.txt: 826) .jiyou2014.com -# ||jixing8.net^$third-party (easylistchina+easylist.txt: 807) +# ||jixing8.net^$third-party (easylistchina.txt: 825) .jixing8.net -# ||jixing8.com^$third-party (easylistchina+easylist.txt: 806) +# ||jixing8.com^$third-party (easylistchina.txt: 824) .jixing8.com -# ||jisucn.com^$third-party (easylistchina+easylist.txt: 805) +# ||jisucn.com^$third-party (easylistchina.txt: 823) .jisucn.com -# ||jiankang13.com^$third-party (easylistchina+easylist.txt: 804) +# ||jiankang13.com^$third-party (easylistchina.txt: 822) .jiankang13.com -# ||jiangcao.com^$third-party (easylistchina+easylist.txt: 803) +# ||jianglishi.cn^$third-party (easylistchina.txt: 821) +.jianglishi.cn +# ||jiangcao.com^$third-party (easylistchina.txt: 820) .jiangcao.com -# ||jhzl001.com^ (easylistchina+easylist.txt: 802) +# ||jhzl001.com^ (easylistchina.txt: 819) .jhzl001.com -# ||jdlhg.com^ (easylistchina+easylist.txt: 801) +# ||jdlhg.com^ (easylistchina.txt: 818) .jdlhg.com -# ||jczzjx.com^ (easylistchina+easylist.txt: 800) +# ||jczzjx.com^ (easylistchina.txt: 817) .jczzjx.com -# ||j8j9.com^$third-party (easylistchina+easylist.txt: 799) +# ||j8j9.com^$third-party (easylistchina.txt: 816) .j8j9.com -# ||itechwall.com^$third-party (easylistchina+easylist.txt: 798) +# ||itechwall.com^$third-party (easylistchina.txt: 815) .itechwall.com -# ||istreamsche.com^$third-party (easylistchina+easylist.txt: 797) +# ||istreamsche.com^$third-party (easylistchina.txt: 814) .istreamsche.com -# ||is686.com^$third-party (easylistchina+easylist.txt: 796) +# ||is686.com^$third-party (easylistchina.txt: 813) .is686.com -# ||iprefer.com.tw^$third-party (easylistchina+easylist.txt: 795) +# ||iprefer.com.tw^$third-party (easylistchina.txt: 812) .iprefer.com.tw -# ||instreet.cn^$third-party (easylistchina+easylist.txt: 794) +# ||instreet.cn^$third-party (easylistchina.txt: 811) .instreet.cn -# ||index8.cn^$third-party (easylistchina+easylist.txt: 793) +# ||index8.cn^$third-party (easylistchina.txt: 810) .index8.cn -# ||img80.net^ (easylistchina+easylist.txt: 792) +# ||img80.net^ (easylistchina.txt: 809) .img80.net -# ||ihualun.com^ (easylistchina+easylist.txt: 790) +# ||ihualun.com^ (easylistchina.txt: 807) .ihualun.com -# ||iguang.tw^$third-party (easylistchina+easylist.txt: 789) +# ||iguang.tw^$third-party (easylistchina.txt: 806) .iguang.tw -# ||iee5.com^$third-party (easylistchina+easylist.txt: 788) +# ||iee5.com^$third-party (easylistchina.txt: 805) .iee5.com -# ||icast.cn^$third-party (easylistchina+easylist.txt: 787) +# ||icast.cn^$third-party (easylistchina.txt: 804) .icast.cn -# ||i3z.cn^$third-party (easylistchina+easylist.txt: 786) +# ||i3z.cn^$third-party (easylistchina.txt: 803) .i3z.cn -# ||i3818.com^ (easylistchina+easylist.txt: 785) +# ||i3818.com^ (easylistchina.txt: 802) .i3818.com -# ||i000o.com^$third-party (easylistchina+easylist.txt: 784) +# ||i000o.com^$third-party (easylistchina.txt: 801) .i000o.com -# ||hxqu.com^$third-party (easylistchina+easylist.txt: 783) +# ||hxqu.com^$third-party (easylistchina.txt: 800) .hxqu.com -# ||humanding.com^ (easylistchina+easylist.txt: 782) +# ||humanding.com^ (easylistchina.txt: 799) .humanding.com -# ||hsmkj.net^$third-party (easylistchina+easylist.txt: 781) +# ||hsmkj.net^$third-party (easylistchina.txt: 798) .hsmkj.net -# ||hr44.com^ (easylistchina+easylist.txt: 780) +# ||hr44.com^ (easylistchina.txt: 797) .hr44.com -# ||hn163fck.com^$third-party (easylistchina+easylist.txt: 779) +# ||hn163fck.com^$third-party (easylistchina.txt: 796) .hn163fck.com -# ||hmp33.com^ (easylistchina+easylist.txt: 778) +# ||hmp33.com^ (easylistchina.txt: 795) .hmp33.com -# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 777) +# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 794) .hk-cm.ysm.yahoo.com -# ||hfjuki.com^ (easylistchina+easylist.txt: 776) +# ||hfjuki.com^ (easylistchina.txt: 793) .hfjuki.com -# ||heima8.com^$third-party (easylistchina+easylist.txt: 775) +# ||heima8.com^$third-party (easylistchina.txt: 792) .heima8.com -# ||hauchi.com.tw^$third-party (easylistchina+easylist.txt: 774) +# ||hauchi.com.tw^$third-party (easylistchina.txt: 791) .hauchi.com.tw -# ||haoyiwang.net^$third-party (easylistchina+easylist.txt: 773) +# ||haoyiwang.net^$third-party (easylistchina.txt: 790) .haoyiwang.net -# ||haomm.com^$third-party (easylistchina+easylist.txt: 772) +# ||haomm.com^$third-party (easylistchina.txt: 789) .haomm.com -# ||haolew.com^ (easylistchina+easylist.txt: 771) +# ||haolew.com^ (easylistchina.txt: 788) .haolew.com -# ||haohaowan8.com^ (easylistchina+easylist.txt: 770) +# ||haohaowan8.com^ (easylistchina.txt: 787) .haohaowan8.com -# ||haoba.info^$third-party (easylistchina+easylist.txt: 769) +# ||haoba.info^$third-party (easylistchina.txt: 786) .haoba.info -# ||hao123union.baidu.com^$third-party (easylistchina+easylist.txt: 768) +# ||hao123union.baidu.com^$third-party (easylistchina.txt: 785) .hao123union.baidu.com -# ||hao123rt.com^ (easylistchina+easylist.txt: 767) +# ||hao123rt.com^ (easylistchina.txt: 784) .hao123rt.com -# ||haiyunx.com^$third-party (easylistchina+easylist.txt: 766) +# ||haiyunx.com^$third-party (easylistchina.txt: 783) .haiyunx.com -# ||gzqudou.com^ (easylistchina+easylist.txt: 765) +# ||gzqudou.com^ (easylistchina.txt: 782) .gzqudou.com -# ||gzmjnx.cn^ (easylistchina+easylist.txt: 764) +# ||gzmjnx.cn^ (easylistchina.txt: 781) .gzmjnx.cn -# ||gzbywl.com^$third-party (easylistchina+easylist.txt: 763) +# ||gzbywl.com^$third-party (easylistchina.txt: 780) .gzbywl.com -# ||guduopu.com^ (easylistchina+easylist.txt: 762) +# ||guduopu.com^ (easylistchina.txt: 779) .guduopu.com -# ||gs307.com^$third-party (easylistchina+easylist.txt: 761) +# ||gs307.com^$third-party (easylistchina.txt: 778) .gs307.com -# ||gohappy.com.tw^$third-party (easylistchina+easylist.txt: 760) +# ||gotonav.com^$third-party (easylistchina.txt: 777) +.gotonav.com +# ||gohappy.com.tw^$third-party (easylistchina.txt: 776) .gohappy.com.tw -# ||gm682.com^ (easylistchina+easylist.txt: 759) +# ||gm682.com^ (easylistchina.txt: 775) .gm682.com -# ||ggmm777.com^$third-party (easylistchina+easylist.txt: 758) +# ||ggmm777.com^$third-party (easylistchina.txt: 774) .ggmm777.com -# ||gf1353.com^$third-party (easylistchina+easylist.txt: 757) +# ||gf1353.com^$third-party (easylistchina.txt: 773) .gf1353.com -# ||gf1352.com^ (easylistchina+easylist.txt: 756) +# ||gf1352.com^ (easylistchina.txt: 772) .gf1352.com -# ||gf108.com^ (easylistchina+easylist.txt: 755) +# ||gf108.com^ (easylistchina.txt: 771) .gf108.com -# ||geotmt.com^$third-party (easylistchina+easylist.txt: 754) +# ||geotmt.com^$third-party (easylistchina.txt: 770) .geotmt.com -# ||gdxxb.com^$third-party (easylistchina+easylist.txt: 753) +# ||gdxxb.com^$third-party (easylistchina.txt: 769) .gdxxb.com -# ||gansha.co^$third-party (easylistchina+easylist.txt: 752) +# ||gansha.co^$third-party (easylistchina.txt: 768) .gansha.co -# ||gameone.com^$third-party (easylistchina+easylist.txt: 751) +# ||gameone.com^$third-party (easylistchina.txt: 767) .gameone.com -# ||gamecps.com^$third-party (easylistchina+easylist.txt: 750) +# ||gamecps.com^$third-party (easylistchina.txt: 766) .gamecps.com -# ||game3737.com^$third-party (easylistchina+easylist.txt: 749) +# ||game3737.com^$third-party (easylistchina.txt: 765) .game3737.com -# ||g35.cc^$third-party (easylistchina+easylist.txt: 748) +# ||g35.cc^$third-party (easylistchina.txt: 764) .g35.cc -# ||fxxgw.com^$third-party (easylistchina+easylist.txt: 747) +# ||fxxgw.com^$third-party (easylistchina.txt: 763) .fxxgw.com -# ||fv99.com^ (easylistchina+easylist.txt: 746) +# ||fv99.com^ (easylistchina.txt: 762) .fv99.com -# ||fu68.com^ (easylistchina+easylist.txt: 745) +# ||fu68.com^ (easylistchina.txt: 761) .fu68.com -# ||fmad.cc^$third-party (easylistchina+easylist.txt: 744) +# ||fmad.cc^$third-party (easylistchina.txt: 760) .fmad.cc -# ||fjmeyer.com^ (easylistchina+easylist.txt: 743) +# ||fjmeyer.com^ (easylistchina.txt: 759) .fjmeyer.com -# ||feitian001.com^$third-party (easylistchina+easylist.txt: 742) +# ||feitian001.com^$third-party (easylistchina.txt: 758) .feitian001.com -# ||fd7c.com^ (easylistchina+easylist.txt: 741) +# ||fd7c.com^ (easylistchina.txt: 757) .fd7c.com -# ||fadama.com^$third-party (easylistchina+easylist.txt: 740) +# ||fadama.com^$third-party (easylistchina.txt: 756) .fadama.com -# ||f8272.com^$third-party (easylistchina+easylist.txt: 739) +# ||f8272.com^$third-party (easylistchina.txt: 755) .f8272.com -# ||f70123.com^ (easylistchina+easylist.txt: 738) +# ||f70123.com^ (easylistchina.txt: 754) .f70123.com -# ||f6ce.com^ (easylistchina+easylist.txt: 737) +# ||f6ce.com^ (easylistchina.txt: 753) .f6ce.com -# ||f1190.com^ (easylistchina+easylist.txt: 736) +# ||f1190.com^ (easylistchina.txt: 752) .f1190.com -# ||eyouv.cn^$third-party (easylistchina+easylist.txt: 735) +# ||eyouv.cn^$third-party (easylistchina.txt: 751) .eyouv.cn -# ||ertya.com^$third-party (easylistchina+easylist.txt: 734) -.ertya.com -# ||emarbox.com^$third-party (easylistchina+easylist.txt: 733) +# ||emarbox.com^$third-party (easylistchina.txt: 750) .emarbox.com -# ||elsad.tw^$third-party (easylistchina+easylist.txt: 732) +# ||elsad.tw^$third-party (easylistchina.txt: 749) .elsad.tw -# ||ejin56.com^$third-party (easylistchina+easylist.txt: 731) +# ||ejin56.com^$third-party (easylistchina.txt: 748) .ejin56.com -# ||eiv.baidu.com^ (easylistchina+easylist.txt: 730) +# ||eiv.baidu.com^ (easylistchina.txt: 747) .eiv.baidu.com -# ||egooad.com^$third-party (easylistchina+easylist.txt: 729) +# ||egooad.com^$third-party (easylistchina.txt: 746) .egooad.com -# ||eeyy.com^$third-party (easylistchina+easylist.txt: 728) +# ||eeyy.com^$third-party (easylistchina.txt: 745) .eeyy.com -# ||ecuc123.net^ (easylistchina+easylist.txt: 727) +# ||ecuc123.net^ (easylistchina.txt: 744) .ecuc123.net -# ||easou.com^$third-party (easylistchina+easylist.txt: 726) +# ||easou.com^$third-party (easylistchina.txt: 743) .easou.com -# ||ea3721.com^$third-party (easylistchina+easylist.txt: 725) +# ||ea3721.com^$third-party (easylistchina.txt: 742) .ea3721.com -# ||e719.net^ (easylistchina+easylist.txt: 724) +# ||e719.net^ (easylistchina.txt: 741) .e719.net -# ||e708.net^ (easylistchina+easylist.txt: 723) +# ||e708.net^ (easylistchina.txt: 740) .e708.net -# ||e70123.com^ (easylistchina+easylist.txt: 722) +# ||e70123.com^ (easylistchina.txt: 739) .e70123.com -# ||e701.net^ (easylistchina+easylist.txt: 721) +# ||e701.net^ (easylistchina.txt: 738) .e701.net -# ||dxssiyi.com^ (easylistchina+easylist.txt: 720) +# ||dxssiyi.com^ (easylistchina.txt: 737) .dxssiyi.com -# ||dxpmedia.com^$third-party (easylistchina+easylist.txt: 719) +# ||dxpmedia.com^$third-party (easylistchina.txt: 736) .dxpmedia.com -# ||dw998.com^ (easylistchina+easylist.txt: 718) +# ||dw998.com^ (easylistchina.txt: 735) .dw998.com -# ||dvr8.com^ (easylistchina+easylist.txt: 717) +# ||dvr8.com^ (easylistchina.txt: 734) .dvr8.com -# ||dushimj.com^$third-party (easylistchina+easylist.txt: 716) +# ||dushimj.com^$third-party (easylistchina.txt: 733) .dushimj.com -# ||duiwai.baidu.com^ (easylistchina+easylist.txt: 715) +# ||duiwai.baidu.com^ (easylistchina.txt: 732) .duiwai.baidu.com -# ||dszm163.com^$third-party (easylistchina+easylist.txt: 714) +# ||dszm163.com^$third-party (easylistchina.txt: 731) .dszm163.com -# ||drmcmm.baidu.com^ (easylistchina+easylist.txt: 713) +# ||drmcmm.baidu.com^ (easylistchina.txt: 730) .drmcmm.baidu.com -# ||doubleadv.com^$third-party (easylistchina+easylist.txt: 712) +# ||dreamfull.cn^ (easylistchina.txt: 729) +.dreamfull.cn +# ||doubleadv.com^$third-party (easylistchina.txt: 728) .doubleadv.com -# ||dou777.com^ (easylistchina+easylist.txt: 711) +# ||dou777.com^ (easylistchina.txt: 727) .dou777.com -# ||dmtrck.com^$third-party (easylistchina+easylist.txt: 709) +# ||dmtrck.com^$third-party (easylistchina.txt: 725) .dmtrck.com -# ||dlads.cn^$third-party (easylistchina+easylist.txt: 708) +# ||dlads.cn^$third-party (easylistchina.txt: 724) .dlads.cn -# ||displink.com^$third-party (easylistchina+easylist.txt: 707) +# ||displink.com^$third-party (easylistchina.txt: 723) .displink.com -# ||dianxin.com^$third-party (easylistchina+easylist.txt: 706) +# ||dianxin.com^$third-party (easylistchina.txt: 722) .dianxin.com -# ||dian500.com^$third-party (easylistchina+easylist.txt: 705) +# ||dian500.com^$third-party (easylistchina.txt: 721) .dian500.com -# ||dddddd.net^$third-party (easylistchina+easylist.txt: 704) +# ||dddddd.net^$third-party (easylistchina.txt: 720) .dddddd.net -# ||datafastguru.info^ (easylistchina+easylist.txt: 703) +# ||datafastguru.info^ (easylistchina.txt: 719) .datafastguru.info -# ||dashet.com^ (easylistchina+easylist.txt: 702) +# ||dashet.com^ (easylistchina.txt: 718) .dashet.com -# ||d8360.com^$third-party (easylistchina+easylist.txt: 701) +# ||d8360.com^$third-party (easylistchina.txt: 717) .d8360.com -# ||d1ad.com^$third-party (easylistchina+easylist.txt: 700) +# ||d1ad.com^$third-party (easylistchina.txt: 716) .d1ad.com -# ||czpwm.com^ (easylistchina+easylist.txt: 699) +# ||czpwm.com^ (easylistchina.txt: 715) .czpwm.com -# ||czpush.com^ (easylistchina+easylist.txt: 698) +# ||czpush.com^ (easylistchina.txt: 714) .czpush.com -# ||cyacc.com^ (easylistchina+easylist.txt: 697) +# ||cyacc.com^ (easylistchina.txt: 713) .cyacc.com -# ||ctsywy.com^ (easylistchina+easylist.txt: 696) +# ||ctsywy.com^ (easylistchina.txt: 712) .ctsywy.com -# ||csqiulong.com^ (easylistchina+easylist.txt: 695) +# ||csqiulong.com^ (easylistchina.txt: 711) .csqiulong.com -# ||csbew.com^$third-party (easylistchina+easylist.txt: 694) +# ||csbew.com^$third-party (easylistchina.txt: 710) .csbew.com -# ||csad.cc^$third-party (easylistchina+easylist.txt: 693) +# ||csad.cc^$third-party (easylistchina.txt: 709) .csad.cc -# ||cs.37see.com^$third-party (easylistchina+easylist.txt: 692) +# ||cs.37see.com^$third-party (easylistchina.txt: 708) .cs.37see.com -# ||crdrjs.info^ (easylistchina+easylist.txt: 691) +# ||crdrjs.info^ (easylistchina.txt: 707) .crdrjs.info -# ||crazymike.tw^$third-party (easylistchina+easylist.txt: 690) +# ||crazymike.tw^$third-party (easylistchina.txt: 706) .crazymike.tw -# ||cpva.cc^ (easylistchina+easylist.txt: 689) +# ||cpva.cc^ (easylistchina.txt: 705) .cpva.cc -# ||cpv6.com^ (easylistchina+easylist.txt: 688) +# ||cpv6.com^ (easylistchina.txt: 704) .cpv6.com -# ||cpro.baidustatic.com^ (easylistchina+easylist.txt: 687) +# ||cpro.baidustatic.com^ (easylistchina.txt: 703) .cpro.baidustatic.com -# ||cpro.baidu.com^ (easylistchina+easylist.txt: 686) +# ||cpro.baidu.com^ (easylistchina.txt: 702) .cpro.baidu.com -# ||cpms.cc^ (easylistchina+easylist.txt: 685) +# ||cpms.cc^ (easylistchina.txt: 701) .cpms.cc -# ||cpcv.cc^ (easylistchina+easylist.txt: 684) +# ||cpcv.cc^ (easylistchina.txt: 700) .cpcv.cc -# ||coinadv.com^$third-party (easylistchina+easylist.txt: 683) +# ||coinadv.com^$third-party (easylistchina.txt: 699) .coinadv.com -# ||code668.com^ (easylistchina+easylist.txt: 682) +# ||code668.com^ (easylistchina.txt: 698) .code668.com -# ||cnzz.com.so^ (easylistchina+easylist.txt: 681) +# ||cnzz.com.so^ (easylistchina.txt: 697) .cnzz.com.so -# ||cnxad.net^ (easylistchina+easylist.txt: 680) +# ||cnxad.net^ (easylistchina.txt: 696) .cnxad.net -# ||cnxad.com^$third-party (easylistchina+easylist.txt: 679) +# ||cnxad.com^$third-party (easylistchina.txt: 695) .cnxad.com -# ||cloudad.asia^$third-party (easylistchina+easylist.txt: 678) +# ||cloudad.asia^$third-party (easylistchina.txt: 694) .cloudad.asia -# ||chinesean.com^$third-party (easylistchina+easylist.txt: 677) +# ||cjlaoshi.com^$third-party (easylistchina.txt: 693) +.cjlaoshi.com +# ||chinesean.com^$third-party (easylistchina.txt: 692) .chinesean.com -# ||chinauma.net^$third-party (easylistchina+easylist.txt: 676) +# ||chinauma.net^$third-party (easylistchina.txt: 691) .chinauma.net -# ||chapm.com^$third-party (easylistchina+easylist.txt: 675) +# ||chapm.com^$third-party (easylistchina.txt: 690) .chapm.com -# ||chanet.com.cn^$third-party (easylistchina+easylist.txt: 674) +# ||chanet.com.cn^$third-party (easylistchina.txt: 689) .chanet.com.cn -# ||cbjs.baidu.com^ (easylistchina+easylist.txt: 673) +# ||cbjs.baidu.com^ (easylistchina.txt: 688) .cbjs.baidu.com -# ||cb.baidu.com^ (easylistchina+easylist.txt: 672) +# ||cb.baidu.com^ (easylistchina.txt: 687) .cb.baidu.com -# ||caob5.info^ (easylistchina+easylist.txt: 671) +# ||caob5.info^ (easylistchina.txt: 686) .caob5.info -# ||cangnews.com^ (easylistchina+easylist.txt: 670) +# ||cangnews.com^ (easylistchina.txt: 685) .cangnews.com -# ||c.91wan.com^$third-party (easylistchina+easylist.txt: 669) +# ||c.91wan.com^$third-party (easylistchina.txt: 684) .c.91wan.com -# ||btyou.com^$third-party (easylistchina+easylist.txt: 668) +# ||btyou.com^$third-party (easylistchina.txt: 683) .btyou.com -# ||books.com.tw/exep/ap/$third-party (easylistchina+easylist.txt: 667) +# ||books.com.tw/exep/ap/$third-party (easylistchina.txt: 682) .books.com.tw/exep/ap/ -# ||bloggerads.net^$third-party (easylistchina+easylist.txt: 666) +# ||bloggerads.net^$third-party (easylistchina.txt: 681) .bloggerads.net -# ||blogad.com.tw^$third-party (easylistchina+easylist.txt: 665) +# ||blogad.com.tw^$third-party (easylistchina.txt: 680) .blogad.com.tw -# ||biddingx.com^$third-party (easylistchina+easylist.txt: 664) +# ||biddingx.com^$third-party (easylistchina.txt: 679) .biddingx.com -# ||behe.com^$third-party (easylistchina+easylist.txt: 663) +# ||behe.com^$third-party (easylistchina.txt: 678) .behe.com -# ||baodaozhan.cn^$third-party (easylistchina+easylist.txt: 662) +# ||baodaozhan.cn^$third-party (easylistchina.txt: 677) .baodaozhan.cn -# ||bang5mai.com^$third-party (easylistchina+easylist.txt: 661) +# ||bang5mai.com^$third-party (easylistchina.txt: 676) .bang5mai.com -# ||baidu360haosou.info^$third-party (easylistchina+easylist.txt: 660) +# ||baidu360haosou.info^$third-party (easylistchina.txt: 675) .baidu360haosou.info -# ||b5h7.com^$third-party (easylistchina+easylist.txt: 659) +# ||b5h7.com^$third-party (easylistchina.txt: 674) .b5h7.com -# ||av8d.net^$third-party (easylistchina+easylist.txt: 658) +# ||av8d.net^$third-party (easylistchina.txt: 673) .av8d.net -# ||at98.com^ (easylistchina+easylist.txt: 657) +# ||at98.com^ (easylistchina.txt: 672) .at98.com -# ||at918.com^$third-party (easylistchina+easylist.txt: 656) +# ||at918.com^$third-party (easylistchina.txt: 671) .at918.com -# ||aralego.com^ (easylistchina+easylist.txt: 655) +# ||aralego.com^ (easylistchina.txt: 670) .aralego.com -# ||aoparking.com^$third-party (easylistchina+easylist.txt: 654) +# ||aoparking.com^$third-party (easylistchina.txt: 669) .aoparking.com -# ||andmejs.com^$third-party (easylistchina+easylist.txt: 653) +# ||andmejs.com^$third-party (easylistchina.txt: 668) .andmejs.com -# ||amazingmagics.com^ (easylistchina+easylist.txt: 652) +# ||amazingmagics.com^ (easylistchina.txt: 667) .amazingmagics.com -# ||allyes.$third-party (easylistchina+easylist.txt: 651) +# ||allyes.$third-party (easylistchina.txt: 666) .allyes.*. -# ||aliyunxin.com^ (easylistchina+easylist.txt: 650) +# ||aliyunxin.com^ (easylistchina.txt: 665) .aliyunxin.com -# ||aliyuncss.com^ (easylistchina+easylist.txt: 649) +# ||aliyuncss.com^ (easylistchina.txt: 664) .aliyuncss.com -# ||ajhdf.com^$third-party (easylistchina+easylist.txt: 647) +# ||ajhdf.com^$third-party (easylistchina.txt: 662) .ajhdf.com -# ||ajaxcdn.org^ (easylistchina+easylist.txt: 646) +# ||ajaxcdn.org^ (easylistchina.txt: 661) .ajaxcdn.org -# ||aimato.com^$third-party (easylistchina+easylist.txt: 645) +# ||aimato.com^$third-party (easylistchina.txt: 660) .aimato.com -# ||aidaicn.com^$third-party (easylistchina+easylist.txt: 644) +# ||aidaicn.com^$third-party (easylistchina.txt: 659) .aidaicn.com -# ||agrantsem.com^$third-party (easylistchina+easylist.txt: 643) +# ||agrantsem.com^$third-party (easylistchina.txt: 658) .agrantsem.com -# ||affiliate.rakuten.co.jp^$third-party (easylistchina+easylist.txt: 642) +# ||affiliate.rakuten.co.jp^$third-party (easylistchina.txt: 657) .affiliate.rakuten.co.jp -# ||adyun.com^$third-party (easylistchina+easylist.txt: 641) +# ||adyun.com^$third-party (easylistchina.txt: 656) .adyun.com -# ||adxiaozi.com^$third-party (easylistchina+easylist.txt: 640) +# ||adxiaozi.com^$third-party (easylistchina.txt: 655) .adxiaozi.com -# ||adver.com.tw^$third-party (easylistchina+easylist.txt: 639) +# ||adver.com.tw^$third-party (easylistchina.txt: 654) .adver.com.tw -# ||adunioncode.com^$third-party (easylistchina+easylist.txt: 638) +# ||adunioncode.com^$third-party (easylistchina.txt: 653) .adunioncode.com -# ||adt100.com^$third-party (easylistchina+easylist.txt: 637) +# ||adt100.com^$third-party (easylistchina.txt: 652) .adt100.com -# ||adsbro.com^$third-party (easylistchina+easylist.txt: 636) +# ||adsbro.com^$third-party (easylistchina.txt: 651) .adsbro.com -# ||adsage.com^$third-party (easylistchina+easylist.txt: 635) +# ||adsage.com^$third-party (easylistchina.txt: 650) .adsage.com -# ||ads.uc.cn^ (easylistchina+easylist.txt: 634) +# ||ads.uc.cn^ (easylistchina.txt: 649) .ads.uc.cn -# ||adpush.cn^$third-party (easylistchina+easylist.txt: 633) +# ||adpush.cn^$third-party (easylistchina.txt: 648) .adpush.cn -# ||adpro.cn^$third-party (easylistchina+easylist.txt: 632) +# ||adpro.cn^$third-party (easylistchina.txt: 647) .adpro.cn -# ||admin6.com^$third-party (easylistchina+easylist.txt: 631) +# ||admin6.com^$third-party (easylistchina.txt: 646) .admin6.com -# ||adm.cnzz.net^$third-party (easylistchina+easylist.txt: 630) +# ||adm.cnzz.net^$third-party (easylistchina.txt: 645) .adm.cnzz.net -# ||adm-cnzz.net^ (easylistchina+easylist.txt: 629) +# ||adm-cnzz.net^ (easylistchina.txt: 644) .adm-cnzz.net -# ||adkongjian.com^$third-party (easylistchina+easylist.txt: 628) +# ||adkongjian.com^$third-party (easylistchina.txt: 643) .adkongjian.com -# ||adingo.jp^$third-party (easylistchina+easylist.txt: 627) +# ||adingo.jp^$third-party (easylistchina.txt: 642) .adingo.jp -# ||adhouyi.com^$third-party (easylistchina+easylist.txt: 626) +# ||adhouyi.com^$third-party (easylistchina.txt: 641) .adhouyi.com -# ||adconfer.com^$third-party (easylistchina+easylist.txt: 625) +# ||adconfer.com^$third-party (easylistchina.txt: 640) .adconfer.com -# ||adchina.cc^$third-party (easylistchina+easylist.txt: 624) +# ||adchina.cc^$third-party (easylistchina.txt: 639) .adchina.cc -# ||adcenter.conn.tw^$third-party (easylistchina+easylist.txt: 623) +# ||adcenter.conn.tw^$third-party (easylistchina.txt: 638) .adcenter.conn.tw -# ||adbxb.com^$third-party (easylistchina+easylist.txt: 622) +# ||adbxb.com^$third-party (easylistchina.txt: 637) .adbxb.com -# ||ad8.cc^$third-party (easylistchina+easylist.txt: 621) +# ||ad8.cc^$third-party (easylistchina.txt: 636) .ad8.cc -# ||ad000000.com^ (easylistchina+easylist.txt: 620) +# ||ad000000.com^ (easylistchina.txt: 635) .ad000000.com -# ||ad-plus.cn^$third-party (easylistchina+easylist.txt: 619) +# ||ad-plus.cn^$third-party (easylistchina.txt: 634) .ad-plus.cn -# ||acs86.com^$third-party (easylistchina+easylist.txt: 618) +# ||acs86.com^$third-party (easylistchina.txt: 633) .acs86.com -# ||acgbase.com^$third-party (easylistchina+easylist.txt: 617) +# ||acgbase.com^$third-party (easylistchina.txt: 632) .acgbase.com -# ||a907907.com^ (easylistchina+easylist.txt: 616) +# ||a907907.com^ (easylistchina.txt: 631) .a907907.com -# ||a7shun.com^$third-party (easylistchina+easylist.txt: 615) +# ||a7shun.com^$third-party (easylistchina.txt: 630) .a7shun.com -# ||a3p4.com^$third-party (easylistchina+easylist.txt: 614) +# ||a3p4.com^$third-party (easylistchina.txt: 629) .a3p4.com -# ||9xu.com^$third-party (easylistchina+easylist.txt: 613) +# ||9xu.com^$third-party (easylistchina.txt: 628) .9xu.com -# ||9w1an.com^$third-party (easylistchina+easylist.txt: 612) +# ||9w1an.com^$third-party (easylistchina.txt: 627) .9w1an.com -# ||9ead.com^$third-party (easylistchina+easylist.txt: 611) +# ||9ead.com^$third-party (easylistchina.txt: 626) .9ead.com -# ||9718.com^$third-party (easylistchina+easylist.txt: 610) +# ||9718.com^$third-party (easylistchina.txt: 625) .9718.com -# ||9519.net^$third-party (easylistchina+easylist.txt: 609) +# ||9519.net^$third-party (easylistchina.txt: 624) .9519.net -# ||9377os.com^ (easylistchina+easylist.txt: 608) +# ||9377os.com^ (easylistchina.txt: 623) .9377os.com -# ||9377co.com^ (easylistchina+easylist.txt: 607) +# ||9377ku.com^ (easylistchina.txt: 622) +.9377ku.com +# ||9377co.com^ (easylistchina.txt: 621) .9377co.com -# ||91zgm.com^ (easylistchina+easylist.txt: 606) +# ||91zgm.com^ (easylistchina.txt: 620) .91zgm.com -# ||91ysa.com^ (easylistchina+easylist.txt: 605) +# ||91ysa.com^ (easylistchina.txt: 619) .91ysa.com -# ||9158918.com^$third-party (easylistchina+easylist.txt: 604) +# ||9158918.com^$third-party (easylistchina.txt: 618) .9158918.com -# ||913h6.cn^$third-party (easylistchina+easylist.txt: 603) +# ||913h6.cn^$third-party (easylistchina.txt: 617) .913h6.cn -# ||911.cc^$third-party (easylistchina+easylist.txt: 602) +# ||911.cc^$third-party (easylistchina.txt: 616) .911.cc -# ||8ox.cn^$third-party (easylistchina+easylist.txt: 601) +# ||8ox.cn^$third-party (easylistchina.txt: 615) .8ox.cn -# ||8le8le.com^$third-party (easylistchina+easylist.txt: 600) +# ||8le8le.com^$third-party (easylistchina.txt: 614) .8le8le.com -# ||892155.com^ (easylistchina+easylist.txt: 599) +# ||892155.com^ (easylistchina.txt: 613) .892155.com -# ||8910ad.com^$third-party (easylistchina+easylist.txt: 598) +# ||8910ad.com^$third-party (easylistchina.txt: 612) .8910ad.com -# ||88rpg.net^ (easylistchina+easylist.txt: 597) +# ||88rpg.net^ (easylistchina.txt: 611) .88rpg.net -# ||88cpc.com^$third-party (easylistchina+easylist.txt: 596) +# ||88cpc.com^$third-party (easylistchina.txt: 610) .88cpc.com -# ||85tgw.com^ (easylistchina+easylist.txt: 595) +# ||85tgw.com^ (easylistchina.txt: 609) .85tgw.com -# ||81c.cn^ (easylistchina+easylist.txt: 594) +# ||81c.cn^ (easylistchina.txt: 608) .81c.cn -# ||7xz3.com^ (easylistchina+easylist.txt: 593) +# ||7xz3.com^ (easylistchina.txt: 607) .7xz3.com -# ||7wen.cn^ (easylistchina+easylist.txt: 592) +# ||7wen.cn^ (easylistchina.txt: 606) .7wen.cn -# ||7o2o.com^$third-party (easylistchina+easylist.txt: 591) +# ||7o2o.com^$third-party (easylistchina.txt: 605) .7o2o.com -# ||7clink.com^$third-party (easylistchina+easylist.txt: 590) +# ||7clink.com^$third-party (easylistchina.txt: 604) .7clink.com -# ||7bwan.com^$third-party (easylistchina+easylist.txt: 589) +# ||7bwan.com^$third-party (easylistchina.txt: 603) .7bwan.com -# ||788xj.com^$third-party (easylistchina+easylist.txt: 588) +# ||788xj.com^$third-party (easylistchina.txt: 602) .788xj.com -# ||77power.com^ (easylistchina+easylist.txt: 587) +# ||77power.com^ (easylistchina.txt: 601) .77power.com -# ||71sem.com^ (easylistchina+easylist.txt: 586) +# ||71sem.com^ (easylistchina.txt: 600) .71sem.com -# ||710070.com^$third-party (easylistchina+easylist.txt: 585) +# ||710070.com^$third-party (easylistchina.txt: 599) .710070.com -# ||70e.com^$third-party (easylistchina+easylist.txt: 584) +# ||70e.com^$third-party (easylistchina.txt: 598) .70e.com -# ||6dvip.com^ (easylistchina+easylist.txt: 583) +# ||6dvip.com^ (easylistchina.txt: 597) .6dvip.com -# ||6dad.com^$third-party (easylistchina+easylist.txt: 582) +# ||6dad.com^$third-party (easylistchina.txt: 596) .6dad.com -# ||68665565.com^ (easylistchina+easylist.txt: 581) +# ||68665565.com^ (easylistchina.txt: 595) .68665565.com -# ||685wo.com^$script,third-party (easylistchina+easylist.txt: 580) +# ||685wo.com^$script,third-party (easylistchina.txt: 594) .685wo.com -# ||67lm.com^$third-party (easylistchina+easylist.txt: 579) +# ||67lm.com^$third-party (easylistchina.txt: 593) .67lm.com -# ||668559.com^$third-party (easylistchina+easylist.txt: 578) +# ||66san.com^ (easylistchina.txt: 592) +.66san.com +# ||668559.com^$third-party (easylistchina.txt: 591) .668559.com -# ||63kc.com^$third-party (easylistchina+easylist.txt: 577) +# ||63kc.com^$third-party (easylistchina.txt: 590) .63kc.com -# ||61.152.223.15^ (easylistchina+easylist.txt: 576) +# ||61.152.223.15^ (easylistchina.txt: 589) .61.152.223.15 -# ||5mnh.com^$third-party (easylistchina+easylist.txt: 575) +# ||5mnh.com^$third-party (easylistchina.txt: 588) .5mnh.com -# ||58.215.179.159^ (easylistchina+easylist.txt: 574) +# ||58.215.179.159^ (easylistchina.txt: 587) .58.215.179.159 -# ||565882.com^$third-party (easylistchina+easylist.txt: 573) +# ||565882.com^$third-party (easylistchina.txt: 586) .565882.com -# ||5399.com^$third-party (easylistchina+easylist.txt: 572) +# ||5399.com^$third-party (easylistchina.txt: 585) .5399.com -# ||52kmk.com^ (easylistchina+easylist.txt: 571) +# ||52kmk.com^ (easylistchina.txt: 584) .52kmk.com -# ||52kmh.com^$third-party (easylistchina+easylist.txt: 570) +# ||52kmh.com^$third-party (easylistchina.txt: 583) .52kmh.com -# ||526d.com^$third-party (easylistchina+easylist.txt: 569) +# ||526d.com^$third-party (easylistchina.txt: 582) .526d.com -# ||51ads.com^$third-party (easylistchina+easylist.txt: 568) +# ||51ads.com^$third-party (easylistchina.txt: 581) .51ads.com -# ||4kt2.com^$subdocument (easylistchina+easylist.txt: 567) +# ||4kt2.com^$subdocument (easylistchina.txt: 580) .4kt2.com -# ||4936.cn^$third-party (easylistchina+easylist.txt: 566) +# ||4936.cn^$third-party (easylistchina.txt: 579) .4936.cn -# ||44pv.com^$third-party (easylistchina+easylist.txt: 565) +# ||44pv.com^$third-party (easylistchina.txt: 578) .44pv.com -# ||3p-link.com^$third-party (easylistchina+easylist.txt: 564) +# ||3p-link.com^$third-party (easylistchina.txt: 577) .3p-link.com -# ||3g.990.net^ (easylistchina+easylist.txt: 563) +# ||3g.990.net^ (easylistchina.txt: 576) .3g.990.net -# ||3dwwwgame.com^$third-party (easylistchina+easylist.txt: 562) +# ||3dwwwgame.com^$third-party (easylistchina.txt: 575) .3dwwwgame.com -# ||3alian.net^$third-party (easylistchina+easylist.txt: 561) +# ||3alian.net^$third-party (easylistchina.txt: 574) .3alian.net -# ||3975lm.com^$third-party (easylistchina+easylist.txt: 560) +# ||3975lm.com^$third-party (easylistchina.txt: 573) .3975lm.com -# ||38ra.com^$third-party (easylistchina+easylist.txt: 559) +# ||38ra.com^$third-party (easylistchina.txt: 572) .38ra.com -# ||3839168.com^$third-party (easylistchina+easylist.txt: 558) +# ||3839168.com^$third-party (easylistchina.txt: 571) .3839168.com -# ||3808010.com/code$third-party (easylistchina+easylist.txt: 557) +# ||3808010.com/code$third-party (easylistchina.txt: 570) .3808010.com/code -# ||37cs.com^$third-party (easylistchina+easylist.txt: 556) +# ||37cs.com^$third-party (easylistchina.txt: 569) .37cs.com -# ||36pn.com^ (easylistchina+easylist.txt: 555) +# ||36pn.com^ (easylistchina.txt: 568) .36pn.com -# ||366safego.com^ (easylistchina+easylist.txt: 554) +# ||366safego.com^ (easylistchina.txt: 567) .366safego.com -# ||365safego.com^ (easylistchina+easylist.txt: 553) +# ||365safego.com^ (easylistchina.txt: 566) .365safego.com -# ||365bibi.com^ (easylistchina+easylist.txt: 552) +# ||365bibi.com^ (easylistchina.txt: 565) .365bibi.com -# ||36500.net^$third-party (easylistchina+easylist.txt: 551) +# ||36500.net^$third-party (easylistchina.txt: 564) .36500.net -# ||36500.com^$third-party (easylistchina+easylist.txt: 550) +# ||36500.com^$third-party (easylistchina.txt: 563) .36500.com -# ||360doo.com^$third-party (easylistchina+easylist.txt: 549) +# ||360doo.com^$third-party (easylistchina.txt: 562) .360doo.com -# ||360baidus.com^ (easylistchina+easylist.txt: 548) +# ||360baidus.com^ (easylistchina.txt: 561) .360baidus.com -# ||3600ys.com^$third-party (easylistchina+easylist.txt: 547) +# ||3600ys.com^$third-party (easylistchina.txt: 560) .3600ys.com -# ||3399.com/act/$third-party (easylistchina+easylist.txt: 546) +# ||3399.com/act/$third-party (easylistchina.txt: 559) .3399.com/act/ -# ||32414.com^$third-party (easylistchina+easylist.txt: 545) +# ||32414.com^$third-party (easylistchina.txt: 558) .32414.com -# ||321tui.com^$third-party (easylistchina+easylist.txt: 544) +# ||321tui.com^$third-party (easylistchina.txt: 557) .321tui.com -# ||321tui.cn^$third-party (easylistchina+easylist.txt: 543) +# ||321tui.cn^$third-party (easylistchina.txt: 556) .321tui.cn -# ||2m2n.com^ (easylistchina+easylist.txt: 542) +# ||2m2n.com^ (easylistchina.txt: 555) .2m2n.com -# ||2529.com^$third-party (easylistchina+easylist.txt: 541) +# ||2529.com^$third-party (easylistchina.txt: 554) .2529.com -# ||23kmm.com^$third-party (easylistchina+easylist.txt: 540) +# ||23kmm.com^$third-party (easylistchina.txt: 553) .23kmm.com -# ||235123.net^$third-party (easylistchina+easylist.txt: 539) +# ||235123.net^$third-party (easylistchina.txt: 552) .235123.net -# ||221.204.213.222^ (easylistchina+easylist.txt: 538) +# ||221.204.213.222^ (easylistchina.txt: 551) .221.204.213.222 -# ||220.115.251.25^ (easylistchina+easylist.txt: 537) +# ||220.115.251.25^ (easylistchina.txt: 550) .220.115.251.25 -# ||219.234.83.60^ (easylistchina+easylist.txt: 536) +# ||219.234.83.60^ (easylistchina.txt: 549) .219.234.83.60 -# ||218.26.217.*.html (easylistchina+easylist.txt: 535) +# ||218.26.217.*.html (easylistchina.txt: 548) .218.26.217.*./.*\.html .218.26.217.*.html*. -# ||217wo.com^$third-party (easylistchina+easylist.txt: 534) +# ||217wo.com^$third-party (easylistchina.txt: 547) .217wo.com -# ||2155ec.com^$third-party (easylistchina+easylist.txt: 533) +# ||2155ec.com^$third-party (easylistchina.txt: 546) .2155ec.com -# ||211.167.105.131^ (easylistchina+easylist.txt: 532) +# ||211.167.105.131^ (easylistchina.txt: 545) .211.167.105.131 -# ||210.65.10.32^$third-party (easylistchina+easylist.txt: 531) +# ||210.65.10.32^$third-party (easylistchina.txt: 544) .210.65.10.32 -# ||2012ui.com^ (easylistchina+easylist.txt: 530) +# ||2012ui.com^ (easylistchina.txt: 543) .2012ui.com -# ||201071.com^ (easylistchina+easylist.txt: 529) +# ||201071.com^ (easylistchina.txt: 542) .201071.com -# ||1v7.cn^$third-party (easylistchina+easylist.txt: 528) +# ||1v7.cn^$third-party (easylistchina.txt: 541) .1v7.cn -# ||1qwe3r.com^$third-party (easylistchina+easylist.txt: 527) +# ||1qwe3r.com^$third-party (easylistchina.txt: 540) .1qwe3r.com -# ||1lo0.net^$third-party (easylistchina+easylist.txt: 526) +# ||1lo0.net^$third-party (easylistchina.txt: 539) .1lo0.net -# ||1l1.cc^ (easylistchina+easylist.txt: 525) +# ||1l1.cc^ (easylistchina.txt: 538) .1l1.cc -# ||182.92.81.104^ (easylistchina+easylist.txt: 524) +# ||182.92.81.104^ (easylistchina.txt: 537) .182.92.81.104 -# ||1503.net/code/ (easylistchina+easylist.txt: 523) +# ||1503.net/code/ (easylistchina.txt: 536) .1503.net/code/ -# ||139site.com^$third-party (easylistchina+easylist.txt: 522) +# ||139site.com^$third-party (easylistchina.txt: 535) .139site.com -# ||139.159.32.82^ (easylistchina+easylist.txt: 521) +# ||139.159.32.82^ (easylistchina.txt: 534) .139.159.32.82 -# ||12l22.net^$third-party (easylistchina+easylist.txt: 520) +# ||12l22.net^$third-party (easylistchina.txt: 533) .12l22.net -# ||123hala.com^ (easylistchina+easylist.txt: 519) +# ||123hala.com^ (easylistchina.txt: 532) .123hala.com -# ||122.227.254.195^ (easylistchina+easylist.txt: 518) +# ||122.227.254.195^ (easylistchina.txt: 531) .122.227.254.195 -# ||1188.com^$third-party (easylistchina+easylist.txt: 517) +# ||1188.com^$third-party (easylistchina.txt: 530) .1188.com -# ||118114.cn^$third-party (easylistchina+easylist.txt: 516) +# ||118114.cn^$third-party (easylistchina.txt: 529) .118114.cn -# ||116.55.227.242^ (easylistchina+easylist.txt: 515) +# ||116.55.227.242^ (easylistchina.txt: 528) .116.55.227.242 -# ||1133.cc^$third-party (easylistchina+easylist.txt: 513) +# ||1133.cc^$third-party (easylistchina.txt: 526) .1133.cc -# ||112.124.98.75^ (easylistchina+easylist.txt: 512) +# ||112.124.98.75^ (easylistchina.txt: 525) .112.124.98.75 -# ||111111qb.com^ (easylistchina+easylist.txt: 511) +# ||111111qb.com^ (easylistchina.txt: 524) .111111qb.com -# ||111.175.219.7^ (easylistchina+easylist.txt: 510) +# ||111.175.219.7^ (easylistchina.txt: 523) .111.175.219.7 -# ||110160.com^$third-party (easylistchina+easylist.txt: 509) +# ||110160.com^$third-party (easylistchina.txt: 522) .110160.com -# ||104.195.62.12^ (easylistchina+easylist.txt: 508) +# ||106.187.95.251^ (easylistchina.txt: 521) +.106.187.95.251 +# ||104.195.62.12^ (easylistchina.txt: 520) .104.195.62.12 -# ||103.249.111.179^$third-party (easylistchina+easylist.txt: 507) +# ||103.249.111.179^$third-party (easylistchina.txt: 519) .103.249.111.179 -# ||100cpc.com^$third-party (easylistchina+easylist.txt: 506) +# ||100cpc.com^$third-party (easylistchina.txt: 518) .100cpc.com -# ||0xxd.com^ (easylistchina+easylist.txt: 505) +# ||0xxd.com^ (easylistchina.txt: 517) .0xxd.com -# ||0756j.com^$third-party (easylistchina+easylist.txt: 504) +# ||0756j.com^$third-party (easylistchina.txt: 516) .0756j.com -# ||0591101.com^$third-party (easylistchina+easylist.txt: 503) +# ||0591101.com^$third-party (easylistchina.txt: 515) .0591101.com -# ||033.com^$third-party (easylistchina+easylist.txt: 502) +# ||033.com^$third-party (easylistchina.txt: 514) .033.com -# |http://tk.*.php?id=*&step= (easylistchina+easylist.txt: 501) +# |http://tk.*.php?id=*&step= (easylistchina.txt: 513) tk.*./.*\.php\?id=.*&step= -# |http://tk.*.php?id=*&s=$script (easylistchina+easylist.txt: 500) +# |http://tk.*.php?id=*&s=$script (easylistchina.txt: 512) tk.*./.*\.php\?id=.*&s= -# |http://p.*.com/view.php?uid=$script,third-party (easylistchina+easylist.txt: 499) +# |http://p.*.com/view.php?uid=$script,third-party (easylistchina.txt: 511) p.*./.*\.com/view\.php\?uid= p.*.com/view\.php\?uid= -# |http://news.*.html|$script,third-party (easylistchina+easylist.txt: 498) -news.*./.*\.html$ -news.*.html -# |http://1.3.0.10^ (easylistchina+easylist.txt: 497) +# |http://1.3.0.10^ (easylistchina.txt: 510) 1.3.0.10 -# |http://*:*/s.php?id=$script,third-party (easylistchina+easylist.txt: 496) +# |http://*:*/s.php?id=$script,third-party (easylistchina.txt: 509) /.*:.*/s\.php\?id= .*:*./(.*/)?s\.php\?id= -# |http://*//s.php?id=$script,third-party (easylistchina+easylist.txt: 495) +# |http://*//s.php?id=$script,third-party (easylistchina.txt: 508) /(.*/)?/s\.php\?id= -# |http://*.tw/s.php?id=$script,third-party (easylistchina+easylist.txt: 494) +# |http://*.tw/s.php?id=$script,third-party (easylistchina.txt: 507) /.*\.tw/s\.php\?id= .*.tw/s\.php\?id= -# |http://*.info/s.php?id=$script,third-party (easylistchina+easylist.txt: 493) +# |http://*.info/s.php?id=$script,third-party (easylistchina.txt: 506) /.*\.info/s\.php\?id= .*.info/s\.php\?id= -# |http://*.com/s.php?id=$script,third-party (easylistchina+easylist.txt: 492) +# |http://*.com/s.php?id=$script,third-party (easylistchina.txt: 505) /.*\.com/s\.php\?id= .*.com/s\.php\?id= -# |http://*.cn/s.php?id=$script,third-party (easylistchina+easylist.txt: 491) +# |http://*.cn/s.php?id=$script,third-party (easylistchina.txt: 504) /.*\.cn/s\.php\?id= .*.cn/s\.php\?id= -# |http://*.cc/s.php?id=$script,third-party (easylistchina+easylist.txt: 490) +# |http://*.cc/s.php?id=$script,third-party (easylistchina.txt: 503) /.*\.cc/s\.php\?id= .*.cc/s\.php\?id= -# :9001/code/ (easylistchina+easylist.txt: 489) +# :9001/code/ (easylistchina.txt: 502) /.*:9001/code/ -# :8080/js/v2.1.js$third-party (easylistchina+easylist.txt: 488) +# :8080/js/v2.1.js$third-party (easylistchina.txt: 501) /.*:8080/js/v2\.1\.js -# :8080/js/v1.js$third-party (easylistchina+easylist.txt: 487) +# :8080/js/v1.js$third-party (easylistchina.txt: 500) /.*:8080/js/v1\.js -# /tourl.html?url= (easylistchina+easylist.txt: 486) +# /v.php?z=$script,third-party (easylistchina.txt: 499) +/(.*/)?v\.php\?z= +# /tourl.html?url= (easylistchina.txt: 498) /(.*/)?tourl\.html\?url= -# /svr/popwin.aspx?$third-party (easylistchina+easylist.txt: 485) +# /svr/popwin.aspx?$third-party (easylistchina.txt: 497) /(.*/)?svr/popwin\.aspx\? -# /pge/?s=$third-party (easylistchina+easylist.txt: 484) +# /pge/?s=$third-party (easylistchina.txt: 496) /(.*/)?pge/\?s= -# /pd2.js$third-party (easylistchina+easylist.txt: 483) +# /pd2.js$third-party (easylistchina.txt: 495) /(.*/)?pd2\.js pd2.js*. -# /pagecpv/* (easylistchina+easylist.txt: 482) +# /pagecpv/* (easylistchina.txt: 494) /(.*/)?pagecpv/.* -# /page/s.php?s=$third-party (easylistchina+easylist.txt: 481) +# /page/s.php?s=$third-party (easylistchina.txt: 493) /(.*/)?page/s\.php\?s= -# /page/index.php?s=$third-party (easylistchina+easylist.txt: 480) +# /page/index.php?s=$third-party (easylistchina.txt: 492) /(.*/)?page/index\.php\?s= -# /page/?s=$third-party (easylistchina+easylist.txt: 479) +# /page/?s=$third-party (easylistchina.txt: 491) /(.*/)?page/\?s= -# /mshow.aspx?AID= (easylistchina+easylist.txt: 478) +# /mshow.aspx?AID= (easylistchina.txt: 490) /(.*/)?mshow\.aspx\?AID= -# /mobile/mads.js (easylistchina+easylist.txt: 477) +# /mobile/mads.js (easylistchina.txt: 489) /(.*/)?mobile/mads\.js -# /js/cpv_dl.js (easylistchina+easylist.txt: 476) +# /js/cpv_dl.js (easylistchina.txt: 488) /(.*/)?js/cpv_dl\.js -# /i.php?z=$script,third-party (easylistchina+easylist.txt: 475) +# /i.php?z=$script,third-party (easylistchina.txt: 487) /(.*/)?i\.php\?z= -# /floatingcontent/*$third-party (easylistchina+easylist.txt: 474) +# /floatingcontent/*$third-party (easylistchina.txt: 486) /(.*/)?floatingcontent/.* -# /cpm/i.ashx? (easylistchina+easylist.txt: 473) +# /cpm/i.ashx? (easylistchina.txt: 485) /(.*/)?cpm/i\.ashx\? -# /code/popjs. (easylistchina+easylist.txt: 472) +# /code/popjs. (easylistchina.txt: 484) /(.*/)?code/popjs\. -# /code/pop_cpf. (easylistchina+easylist.txt: 471) +# /code/pop_cpf. (easylistchina.txt: 483) /(.*/)?code/pop_cpf\. -# /code/mypop.asp? (easylistchina+easylist.txt: 470) +# /code/mypop.asp? (easylistchina.txt: 482) /(.*/)?code/mypop\.asp\? -# /code/cpv.asp? (easylistchina+easylist.txt: 469) +# /code/cpv.asp? (easylistchina.txt: 481) /(.*/)?code/cpv\.asp\? -# /code/cpm.asp? (easylistchina+easylist.txt: 468) +# /code/cpm.asp? (easylistchina.txt: 480) /(.*/)?code/cpm\.asp\? -# /code/cpc.asp? (easylistchina+easylist.txt: 467) +# /code/cpc.asp? (easylistchina.txt: 479) /(.*/)?code/cpc\.asp\? -# /center?advId= (easylistchina+easylist.txt: 466) +# /center?advId= (easylistchina.txt: 478) /(.*/)?center\?advId= -# /AShow.aspx?AID= (easylistchina+easylist.txt: 465) +# /AShow.aspx?AID= (easylistchina.txt: 477) /(.*/)?AShow\.aspx\?AID= -# /adscpc/* (easylistchina+easylist.txt: 464) +# /adscpc/* (easylistchina.txt: 476) /(.*/)?adscpc/.* -# /99vjj/*$third-party (easylistchina+easylist.txt: 463) +# /99vjj/*$third-party (easylistchina.txt: 475) /(.*/)?99vjj/.* -# .com/mediaController.php?pid=$script,third-party (easylistchina+easylist.txt: 462) +# .com/mediaController.php?pid=$script,third-party (easylistchina.txt: 474) /.*\.com/mediaController\.php\?pid= .*.com/mediaController\.php\?pid= -# |http://ad. (easylistchina+easylist.txt: 260) +# |http://ad. (easylistchina.txt: 269) ad.*. -# |http://acs. (easylistchina+easylist.txt: 259) +# |http://acs. (easylistchina.txt: 268) acs.*. -# |http://*/s.js?sp=*&r=$third-party (easylistchina+easylist.txt: 258) +# |http://*/s.js?sp=*&r=$third-party (easylistchina.txt: 267) /(.*/)?s\.js\?sp=.*&r= -# |http://*/js/tc.js (easylistchina+easylist.txt: 257) +# |http://*/js/tc.js (easylistchina.txt: 266) /(.*/)?js/tc\.js -# |http://*/js/ad/ (easylistchina+easylist.txt: 256) +# |http://*/js/ad/ (easylistchina.txt: 265) /(.*/)?js/ad/ -# |http://*/gg3. (easylistchina+easylist.txt: 254) +# |http://*/gg3. (easylistchina.txt: 263) /(.*/)?gg3\. -# |http://*/gg2. (easylistchina+easylist.txt: 253) +# |http://*/gg2. (easylistchina.txt: 262) /(.*/)?gg2\. -# |http://*/gg1. (easylistchina+easylist.txt: 252) +# |http://*/gg1. (easylistchina.txt: 261) /(.*/)?gg1\. -# |http://*/ad.js?v= (easylistchina+easylist.txt: 250) +# |http://*/ad.js?v= (easylistchina.txt: 259) /(.*/)?ad\.js\?v= -# |http://*/ad.js?sn= (easylistchina+easylist.txt: 249) +# |http://*/ad.js?sn= (easylistchina.txt: 258) /(.*/)?ad\.js\?sn= -# |http://*/ad.*.js?v=*&sp= (easylistchina+easylist.txt: 248) +# |http://*/ad.*.js?v=*&sp= (easylistchina.txt: 257) /(.*/)?ad\..*\.js\?v=.*&sp= -# |http://*/*_ad.js (easylistchina+easylist.txt: 247) +# |http://*/*_ad.js (easylistchina.txt: 256) /(.*/)?.*_ad\.js -# |http://*.us/ad/ (easylistchina+easylist.txt: 246) +# |http://*.us/ad/ (easylistchina.txt: 255) /.*\.us/ad/ .*.us/ad/ -# |http://*.tv/ad/ (easylistchina+easylist.txt: 244) +# |http://*.tv/ad/ (easylistchina.txt: 253) /.*\.tv/ad/ .*.tv/ad/ -# |http://*.in/ad/ (easylistchina+easylist.txt: 243) +# |http://*.in/ad/ (easylistchina.txt: 252) /.*\.in/ad/ .*.in/ad/ -# |http://*.hk/ad/ (easylistchina+easylist.txt: 242) +# |http://*.hk/ad/ (easylistchina.txt: 251) /.*\.hk/ad/ .*.hk/ad/ -# |http://*.cn/ad/ (easylistchina+easylist.txt: 241) +# |http://*.cn/ad/ (easylistchina.txt: 250) /.*\.cn/ad/ .*.cn/ad/ -# |http://*.cc/ad/ (easylistchina+easylist.txt: 240) +# |http://*.cc/ad/ (easylistchina.txt: 249) /.*\.cc/ad/ .*.cc/ad/ -# _mobilebanner_v1_550x60.jpg (easylistchina+easylist.txt: 239) +# _mobilebanner_v1_550x60.jpg (easylistchina.txt: 248) /.*_mobilebanner_v1_550x60\.jpg -# _billboard_320x100.iframe. (easylistchina+easylist.txt: 238) +# _billboard_320x100.iframe. (easylistchina.txt: 247) /.*_billboard_320x100\.iframe\. -# =loginExtAD. (easylistchina+easylist.txt: 237) +# =loginExtAD. (easylistchina.txt: 246) /.*=loginExtAD\. -# :8898/ads_ (easylistchina+easylist.txt: 236) +# :8898/ads_ (easylistchina.txt: 245) /.*:8898/ads_ -# :8080/ad/ (easylistchina+easylist.txt: 235) +# :8080/ad/ (easylistchina.txt: 244) /.*:8080/ad/ -# :7011/ads/ (easylistchina+easylist.txt: 234) -/.*:7011/ads/ -# :1010/openV5.js (easylistchina+easylist.txt: 233) +# :1010/openV5.js (easylistchina.txt: 243) /.*:1010/openV5\.js -# /zzhzad/* (easylistchina+easylist.txt: 232) +# /zzhzad/* (easylistchina.txt: 242) /(.*/)?zzhzad/.* -# /znds/images/dangbeigif.gif (easylistchina+easylist.txt: 231) +# /znds/images/dangbeigif.gif (easylistchina.txt: 241) /(.*/)?znds/images/dangbeigif\.gif -# /xianxiashijie_ad.png (easylistchina+easylist.txt: 230) +# /xianxiashijie_ad.png (easylistchina.txt: 240) /(.*/)?xianxiashijie_ad\.png -# /wy96ad/* (easylistchina+easylist.txt: 229) +# /wy96ad/* (easylistchina.txt: 239) /(.*/)?wy96ad/.* -# /wp-content/themes/iMovies/js/tc_ (easylistchina+easylist.txt: 228) +# /wp-content/themes/iMovies/js/tc_ (easylistchina.txt: 238) /(.*/)?wp-content/themes/iMovies/js/tc_ -# /W3Cfuns_Adv/* (easylistchina+easylist.txt: 227) +# /W3Cfuns_Adv/* (easylistchina.txt: 237) /(.*/)?W3Cfuns_Adv/.* -# /uedbet/pause. (easylistchina+easylist.txt: 226) +# /uedbet/pause. (easylistchina.txt: 236) /(.*/)?uedbet/pause\. -# /u/_sponsor/* (easylistchina+easylist.txt: 225) +# /u/_sponsor/* (easylistchina.txt: 235) /(.*/)?u/_sponsor/.* -# /tuiguang/* (easylistchina+easylist.txt: 224) +# /tuiguang/* (easylistchina.txt: 234) /(.*/)?tuiguang/.* -# /ttmeiju/images/ts.gif (easylistchina+easylist.txt: 223) +# /ttmeiju/images/ts.gif (easylistchina.txt: 233) /(.*/)?ttmeiju/images/ts\.gif -# /tmall11nov2015-2.jpg (easylistchina+easylist.txt: 222) +# /tmall11nov2015-2.jpg (easylistchina.txt: 232) /(.*/)?tmall11nov2015-2\.jpg tmall11nov2015-2.jpg*. -# /tigtag_custom/include/popup. (easylistchina+easylist.txt: 221) +# /tigtag_custom/include/popup. (easylistchina.txt: 231) /(.*/)?tigtag_custom/include/popup\. -# /tigtag_custom/include/couplet. (easylistchina+easylist.txt: 220) +# /tigtag_custom/include/couplet. (easylistchina.txt: 230) /(.*/)?tigtag_custom/include/couplet\. -# /tigtag_custom/*_banner (easylistchina+easylist.txt: 219) +# /tigtag_custom/*_banner (easylistchina.txt: 229) /(.*/)?tigtag_custom/.*_banner -# /template/gg.js (easylistchina+easylist.txt: 218) +# /template/gg.js (easylistchina.txt: 228) /(.*/)?template/gg\.js -# /taobaoad.html (easylistchina+easylist.txt: 217) +# /taobaoad.html (easylistchina.txt: 227) /(.*/)?taobaoad\.html taobaoad.html*. -# /tanchuang. (easylistchina+easylist.txt: 216) +# /tanchuang. (easylistchina.txt: 226) /(.*/)?tanchuang\. tanchuang.*. -# /tanad.js (easylistchina+easylist.txt: 215) +# /tanad.js (easylistchina.txt: 225) /(.*/)?tanad\.js tanad.js*. -# /tan.js (easylistchina+easylist.txt: 214) +# /tan.js (easylistchina.txt: 224) /(.*/)?tan\.js tan.js*. -# /taihai/v2014/images/index/aa_10. (easylistchina+easylist.txt: 213) +# /taihai/v2014/images/index/aa_10. (easylistchina.txt: 223) /(.*/)?taihai/v2014/images/index/aa_10\. -# /sygg/* (easylistchina+easylist.txt: 212) +# /sygg/* (easylistchina.txt: 222) /(.*/)?sygg/.* -# /static/adsview/* (easylistchina+easylist.txt: 211) +# /sxgg/13 (easylistchina.txt: 221) +/(.*/)?sxgg/13 +# /sxgg/12.js (easylistchina.txt: 220) +/(.*/)?sxgg/12\.js +# /static/adsview/* (easylistchina.txt: 219) /(.*/)?static/adsview/.* -# /ssdxad.swf (easylistchina+easylist.txt: 210) +# /ssdxad.swf (easylistchina.txt: 218) /(.*/)?ssdxad\.swf ssdxad.swf*. -# /source/plugin/mama_tips/* (easylistchina+easylist.txt: 209) +# /source/plugin/mama_tips/* (easylistchina.txt: 217) /(.*/)?source/plugin/mama_tips/.* -# /sogouAD. (easylistchina+easylist.txt: 208) +# /sogouAD. (easylistchina.txt: 216) /(.*/)?sogouAD\. sogouAD.*. -# /show.js?sp=*&oid= (easylistchina+easylist.txt: 207) +# /show.js?sp=*&oid= (easylistchina.txt: 215) /(.*/)?show\.js\?sp=.*&oid= -# /Runtime/js/top960.js (easylistchina+easylist.txt: 206) +# /Runtime/js/top960.js (easylistchina.txt: 214) /(.*/)?Runtime/js/top960\.js -# /runtime/js/index960.js (easylistchina+easylist.txt: 205) +# /runtime/js/index960.js (easylistchina.txt: 213) /(.*/)?runtime/js/index960\.js -# /qqyouyuead/* (easylistchina+easylist.txt: 204) +# /qqyouyuead/* (easylistchina.txt: 212) /(.*/)?qqyouyuead/.* -# /qqlive/conf/playerlottery/* (easylistchina+easylist.txt: 203) +# /qqlive/conf/playerlottery/* (easylistchina.txt: 211) /(.*/)?qqlive/conf/playerlottery/.* -# /qqguojiad/* (easylistchina+easylist.txt: 202) +# /qqguojiad/* (easylistchina.txt: 210) /(.*/)?qqguojiad/.* -# /qpxl.js (easylistchina+easylist.txt: 201) +# /qpxl.js (easylistchina.txt: 209) /(.*/)?qpxl\.js qpxl.js*. -# /QianFanAdPalyer. (easylistchina+easylist.txt: 200) +# /QianFanAdPalyer. (easylistchina.txt: 208) /(.*/)?QianFanAdPalyer\. QianFanAdPalyer.*. -# /proxy.html?id= (easylistchina+easylist.txt: 199) +# /proxy.html?id= (easylistchina.txt: 207) /(.*/)?proxy\.html\?id= -# /proxy.htm?id= (easylistchina+easylist.txt: 198) +# /proxy.htm?id= (easylistchina.txt: 206) /(.*/)?proxy\.htm\?id= -# /pop_DJ2010.swf (easylistchina+easylist.txt: 197) +# /pop_DJ2010.swf (easylistchina.txt: 205) /(.*/)?pop_DJ2010\.swf -# /plugin.php?id=popad_7ree& (easylistchina+easylist.txt: 196) +# /plugin.php?id=popad_7ree& (easylistchina.txt: 204) /(.*/)?plugin\.php\?id=popad_7ree& -# /pic/ad/* (easylistchina+easylist.txt: 194) +# /pic/ad/* (easylistchina.txt: 202) /(.*/)?pic/ad/.* -# /piaofu.js (easylistchina+easylist.txt: 193) +# /piaofu.js (easylistchina.txt: 201) /(.*/)?piaofu\.js piaofu.js*. -# /pc/Tpl/baibaipc/js/* (easylistchina+easylist.txt: 192) +# /pc/Tpl/baibaipc/js/* (easylistchina.txt: 200) /(.*/)?pc/Tpl/baibaipc/js/.* -# /pc/Tpl/baibaipc//js/* (easylistchina+easylist.txt: 191) +# /pc/Tpl/baibaipc//js/* (easylistchina.txt: 199) /(.*/)?pc/Tpl/baibaipc//js/.* -# /paypic/* (easylistchina+easylist.txt: 190) +# /paypic/* (easylistchina.txt: 198) /(.*/)?paypic/.* -# /newsyd/templates/sponsor/* (easylistchina+easylist.txt: 189) +# /newsyd/templates/sponsor/* (easylistchina.txt: 197) /(.*/)?newsyd/templates/sponsor/.* -# /new_site_topad^ (easylistchina+easylist.txt: 188) +# /new_site_topad^ (easylistchina.txt: 196) /(.*/)?new_site_topad[^\w%.-] -# /nanrenpeng/ads/* (easylistchina+easylist.txt: 187) +# /nanrenpeng/ads/* (easylistchina.txt: 195) /(.*/)?nanrenpeng/ads/.* -# /myimg/alimama2014.html (easylistchina+easylist.txt: 186) +# /myimg/alimama2014.html (easylistchina.txt: 194) /(.*/)?myimg/alimama2014\.html -# /module/adsview/* (easylistchina+easylist.txt: 185) +# /moneymaker-banners/ads_ (easylistchina.txt: 193) +/(.*/)?moneymaker-banners/ads_ +# /module/adsview/* (easylistchina.txt: 192) /(.*/)?module/adsview/.* -# /main/s? (easylistchina+easylist.txt: 184) +# /main/s? (easylistchina.txt: 191) /(.*/)?main/s\? -# /main.js?v=*&sp=*&ty= (easylistchina+easylist.txt: 183) +# /main.js?v=*&sp=*&ty= (easylistchina.txt: 190) /(.*/)?main\.js\?v=.*&sp=.*&ty= -# /lfadvertise.js (easylistchina+easylist.txt: 182) +# /lfadvertise.js (easylistchina.txt: 189) /(.*/)?lfadvertise\.js lfadvertise.js*. -# /lfAD2v1.1.js (easylistchina+easylist.txt: 181) +# /lfAD2v1.1.js (easylistchina.txt: 188) /(.*/)?lfAD2v1\.1\.js lfAD2v1.1.js*. -# /lenovo/pc/all.js (easylistchina+easylist.txt: 180) +# /lenovo/pc/all.js (easylistchina.txt: 187) /(.*/)?lenovo/pc/all\.js -# /kuaiyun-728-91. (easylistchina+easylist.txt: 179) +# /kuaiyun-728-91. (easylistchina.txt: 186) /(.*/)?kuaiyun-728-91\. kuaiyun-728-91.*. -# /k960g90. (easylistchina+easylist.txt: 178) +# /k960g90. (easylistchina.txt: 185) /(.*/)?k960g90\. k960g90.*. -# /k300g250. (easylistchina+easylist.txt: 177) +# /k300g250. (easylistchina.txt: 184) /(.*/)?k300g250\. k300g250.*. -# /k120g270. (easylistchina+easylist.txt: 176) +# /k120g270. (easylistchina.txt: 183) /(.*/)?k120g270\. k120g270.*. -# /jumbo_banner_Gif_ (easylistchina+easylist.txt: 175) +# /jumbo_banner_Gif_ (easylistchina.txt: 182) /(.*/)?jumbo_banner_Gif_ -# /jsadv/* (easylistchina+easylist.txt: 174) +# /jsadv/* (easylistchina.txt: 181) /(.*/)?jsadv/.* -# /js/utils78.js (easylistchina+easylist.txt: 173) +# /js/utils78.js (easylistchina.txt: 180) /(.*/)?js/utils78\.js -# /js/utils51.js (easylistchina+easylist.txt: 172) +# /js/utils51.js (easylistchina.txt: 179) /(.*/)?js/utils51\.js -# /js/bocaiadv. (easylistchina+easylist.txt: 171) +# /js/guanggao_gg.js (easylistchina.txt: 178) +/(.*/)?js/guanggao_gg\.js +# /js/bocaiadv. (easylistchina.txt: 177) /(.*/)?js/bocaiadv\. -# /js/ads/zuoxiajiao.js (easylistchina+easylist.txt: 170) +# /js/ads/zuoxiajiao.js (easylistchina.txt: 176) /(.*/)?js/ads/zuoxiajiao\.js -# /js/ads/youxiajiao.js (easylistchina+easylist.txt: 169) +# /js/ads/youxiajiao.js (easylistchina.txt: 175) /(.*/)?js/ads/youxiajiao\.js -# /js/ads/top (easylistchina+easylist.txt: 168) -/(.*/)?js/ads/top -# /js/ads/piao.js (easylistchina+easylist.txt: 167) +# /js/ads/yezi (easylistchina.txt: 174) +/(.*/)?js/ads/yezi +# /js/ads/to (easylistchina.txt: 173) +/(.*/)?js/ads/to +# /js/ads/piao.js (easylistchina.txt: 172) /(.*/)?js/ads/piao\.js -# /js/ads/dui.js (easylistchina+easylist.txt: 166) +# /js/ads/neiye (easylistchina.txt: 171) +/(.*/)?js/ads/neiye +# /js/ads/dui.js (easylistchina.txt: 170) /(.*/)?js/ads/dui\.js -# /j/Lad6_2.js (easylistchina+easylist.txt: 165) -/(.*/)?j/Lad6_2\.js -# /ina_ad_ (easylistchina+easylist.txt: 164) +# /ina_ad_ (easylistchina.txt: 169) /(.*/)?ina_ad_ -# /h/k.php?u=*&l=*&v=$third-party (easylistchina+easylist.txt: 163) +# /h/k.php?u=*&l=*&v=$third-party (easylistchina.txt: 168) /(.*/)?h/k\.php\?u=.*&l=.*&v= -# /guanggao/* (easylistchina+easylist.txt: 162) +# /guanggao2. (easylistchina.txt: 167) +/(.*/)?guanggao2\. +guanggao2.*. +# /guanggao/* (easylistchina.txt: 166) /(.*/)?guanggao/.* -# /guanggao. (easylistchina+easylist.txt: 161) +# /guanggao. (easylistchina.txt: 165) /(.*/)?guanggao\. guanggao.*. -# /guangg/* (easylistchina+easylist.txt: 160) +# /guangg/* (easylistchina.txt: 164) /(.*/)?guangg/.* -# /guangao/* (easylistchina+easylist.txt: 159) +# /guangao/* (easylistchina.txt: 163) /(.*/)?guangao/.* -# /guang/930x90. (easylistchina+easylist.txt: 158) +# /guang/930x90. (easylistchina.txt: 162) /(.*/)?guang/930x90\. -# /ggtp/* (easylistchina+easylist.txt: 157) +# /ggtp/* (easylistchina.txt: 161) /(.*/)?ggtp/.* -# /ggpic/* (easylistchina+easylist.txt: 156) +# /ggpic/* (easylistchina.txt: 160) /(.*/)?ggpic/.* -# /ggjs/* (easylistchina+easylist.txt: 155) +# /ggjs/* (easylistchina.txt: 159) /(.*/)?ggjs/.* -# /ggao/* (easylistchina+easylist.txt: 154) +# /ggao/* (easylistchina.txt: 158) /(.*/)?ggao/.* -# /ggao. (easylistchina+easylist.txt: 153) +# /ggao. (easylistchina.txt: 157) /(.*/)?ggao\. ggao.*. -# /ggad/* (easylistchina+easylist.txt: 152) +# /ggad/* (easylistchina.txt: 156) /(.*/)?ggad/.* -# /gg5. (easylistchina+easylist.txt: 151) +# /gg5. (easylistchina.txt: 155) /(.*/)?gg5\. gg5.*. -# /gg4. (easylistchina+easylist.txt: 150) +# /gg4. (easylistchina.txt: 154) /(.*/)?gg4\. gg4.*. -# /gaog/* (easylistchina+easylist.txt: 149) +# /gaog/* (easylistchina.txt: 153) /(.*/)?gaog/.* -# /floatad2. (easylistchina+easylist.txt: 148) +# /floatad2. (easylistchina.txt: 152) /(.*/)?floatad2\. floatad2.*. -# /float_r.js (easylistchina+easylist.txt: 146) +# /float_r.js (easylistchina.txt: 150) /(.*/)?float_r\.js -# /ettoday/gemini/* (easylistchina+easylist.txt: 145) +# /ettoday/gemini/* (easylistchina.txt: 149) /(.*/)?ettoday/gemini/.* -# /duilian_gg. (easylistchina+easylist.txt: 144) +# /dy_66jjss/* (easylistchina.txt: 148) +/(.*/)?dy_66jjss/.* +# /duilian_gg. (easylistchina.txt: 147) /(.*/)?duilian_gg\. -# /duilian2. (easylistchina+easylist.txt: 143) +# /duilian2. (easylistchina.txt: 146) /(.*/)?duilian2\. duilian2.*. -# /diantan.js (easylistchina+easylist.txt: 141) +# /diantan.js (easylistchina.txt: 144) /(.*/)?diantan\.js diantan.js*. -# /data/cache/myad- (easylistchina+easylist.txt: 140) +# /data/cache/myad- (easylistchina.txt: 143) /(.*/)?data/cache/myad- -# /data/ad/* (easylistchina+easylist.txt: 139) +# /data/ad/* (easylistchina.txt: 142) /(.*/)?data/ad/.* -# /cpro/ui/dm.js (easylistchina+easylist.txt: 138) -/(.*/)?cpro/ui/dm\.js -# /content/plugins/em_ad/* (easylistchina+easylist.txt: 137) +# /cpro/ui/* (easylistchina.txt: 141) +/(.*/)?cpro/ui/.* +# /content/plugins/em_ad/* (easylistchina.txt: 140) /(.*/)?content/plugins/em_ad/.* -# /common/cf/*$image,object (easylistchina+easylist.txt: 136) +# /common/cf/*$image,object (easylistchina.txt: 139) /(.*/)?common/cf/.* -# /comiis_kmsjx3hlx/ads/* (easylistchina+easylist.txt: 135) +# /comiis_kmsjx3hlx/ads/* (easylistchina.txt: 138) /(.*/)?comiis_kmsjx3hlx/ads/.* -# /comiis_19lou/ads/* (easylistchina+easylist.txt: 134) +# /comiis_19lou/ads/* (easylistchina.txt: 137) /(.*/)?comiis_19lou/ads/.* -# /clicktotal/ClickTotal.js (easylistchina+easylist.txt: 133) +# /clicktotal/ClickTotal.js (easylistchina.txt: 136) /(.*/)?clicktotal/ClickTotal\.js -# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina+easylist.txt: 132) +# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina.txt: 135) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*pagead2\. -# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina+easylist.txt: 131) +# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina.txt: 134) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*p\.tanx\.com -# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina+easylist.txt: 130) +# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina.txt: 133) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.overture\.com -# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina+easylist.txt: 129) +# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina.txt: 132) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.humanding\.com -# /caiguu_gg_ (easylistchina+easylist.txt: 128) +# /caiguu_gg_ (easylistchina.txt: 131) /(.*/)?caiguu_gg_ -# /caches/poster_js/* (easylistchina+easylist.txt: 127) +# /caches/poster_js/* (easylistchina.txt: 130) /(.*/)?caches/poster_js/.* -# /cache/ad_js/* (easylistchina+easylist.txt: 126) +# /cache/ad_js/* (easylistchina.txt: 129) /(.*/)?cache/ad_js/.* -# /btba/ad/* (easylistchina+easylist.txt: 125) +# /btba/ad/* (easylistchina.txt: 128) /(.*/)?btba/ad/.* -# /botad.html (easylistchina+easylist.txt: 124) +# /botad.html (easylistchina.txt: 127) /(.*/)?botad\.html botad.html*. -# /bbh_ad_ (easylistchina+easylist.txt: 123) +# /bbh_ad_ (easylistchina.txt: 126) /(.*/)?bbh_ad_ -# /bbh_ad. (easylistchina+easylist.txt: 122) +# /bbh_ad. (easylistchina.txt: 125) /(.*/)?bbh_ad\. -# /Banner-pcbeta- (easylistchina+easylist.txt: 121) +# /Banner-pcbeta- (easylistchina.txt: 124) /(.*/)?Banner-pcbeta- Banner-pcbeta-*. -# /aoyou372down300_ (easylistchina+easylist.txt: 120) +# /aoyou372down300_ (easylistchina.txt: 123) /(.*/)?aoyou372down300_ -# /ajds/* (easylistchina+easylist.txt: 119) +# /ajds/* (easylistchina.txt: 122) /(.*/)?ajds/.* -# /aipaiPlayFull2. (easylistchina+easylist.txt: 118) -/(.*/)?aipaiPlayFull2\. -aipaiPlayFull2.*. -# /advpic/* (easylistchina+easylist.txt: 117) +# /aipaiPlayFull2.js?0. (easylistchina.txt: 121) +/(.*/)?aipaiPlayFull2\.js\?0\. +# /adx-exchange. (easylistchina.txt: 120) +/(.*/)?adx-exchange\. +adx-exchange.*. +# /advpic/* (easylistchina.txt: 119) /(.*/)?advpic/.* -# /AdverJS/* (easylistchina+easylist.txt: 116) +# /AdverJS/* (easylistchina.txt: 118) /(.*/)?AdverJS/.* -# /adpv?cn= (easylistchina+easylist.txt: 115) +# /adpv?cn= (easylistchina.txt: 117) /(.*/)?adpv\?cn= -# /adpuba/* (easylistchina+easylist.txt: 114) +# /adpuba/* (easylistchina.txt: 116) /(.*/)?adpuba/.* -# /adpro.js (easylistchina+easylist.txt: 113) +# /adpro.js (easylistchina.txt: 115) /(.*/)?adpro\.js adpro.js*. -# /AdPreview/* (easylistchina+easylist.txt: 112) -/(.*/)?AdPreview/.* -# /adpfile/* (easylistchina+easylist.txt: 111) +# /adpfile/* (easylistchina.txt: 114) /(.*/)?adpfile/.* -# /adintrs/* (easylistchina+easylist.txt: 110) +# /adintrs/* (easylistchina.txt: 113) /(.*/)?adintrs/.* -# /adblockTester2.js (easylistchina+easylist.txt: 109) +# /adblockTester2.js (easylistchina.txt: 112) /(.*/)?adblockTester2\.js adblockTester2.js*. -# /adblockTester1.js (easylistchina+easylist.txt: 108) +# /adblockTester1.js (easylistchina.txt: 111) /(.*/)?adblockTester1\.js adblockTester1.js*. -# /adblockTester.js (easylistchina+easylist.txt: 107) +# /adblockTester.js (easylistchina.txt: 110) /(.*/)?adblockTester\.js adblockTester.js*. -# /AD2v1.1.js (easylistchina+easylist.txt: 106) +# /AD2v1.1.js (easylistchina.txt: 109) /(.*/)?AD2v1\.1\.js AD2v1.1.js*. -# /acmsd/* (easylistchina+easylist.txt: 105) +# /acmsd/* (easylistchina.txt: 108) /(.*/)?acmsd/.* -# /a/p?adid= (easylistchina+easylist.txt: 104) +# /a/p?adid= (easylistchina.txt: 107) /(.*/)?a/p\?adid= -# /9115gg/* (easylistchina+easylist.txt: 103) +# /9115gg/* (easylistchina.txt: 106) /(.*/)?9115gg/.* -# /119g/640x60_ (easylistchina+easylist.txt: 102) +# /119g/640x60_ (easylistchina.txt: 105) /(.*/)?119g/640x60_ -# .us/js/ads/ (easylistchina+easylist.txt: 101) +# .us/js/ads/ (easylistchina.txt: 104) /.*\.us/js/ads/ .*.us/js/ads/ -# .net/js/ads/ (easylistchina+easylist.txt: 100) +# .net/js/ads/ (easylistchina.txt: 103) /.*\.net/js/ads/ .*.net/js/ads/ -# .js?advertID= (easylistchina+easylist.txt: 99) +# .js?advertID= (easylistchina.txt: 102) /.*\.js\?advertID= -# .info/js/ads/ (easylistchina+easylist.txt: 98) +# .info/js/alls_top.js (easylistchina.txt: 101) +/.*\.info/js/alls_top\.js +.*.info/js/alls_top\.js +# .info/js/alls_foot.js (easylistchina.txt: 100) +/.*\.info/js/alls_foot\.js +.*.info/js/alls_foot\.js +# .info/js/ads/ (easylistchina.txt: 99) /.*\.info/js/ads/ .*.info/js/ads/ -# .info/ad/ (easylistchina+easylist.txt: 97) +# .info/ad/ (easylistchina.txt: 98) /.*\.info/ad/ .*.info/ad/ -# .info/ad.js (easylistchina+easylist.txt: 96) +# .info/ad.js (easylistchina.txt: 97) /.*\.info/ad\.js .*.info/ad\.js -# .in/js/ads/ (easylistchina+easylist.txt: 95) +# .in/js/ads/ (easylistchina.txt: 96) /.*\.in/js/ads/ .*.in/js/ads/ -# .com/vodad.js (easylistchina+easylist.txt: 94) +# .com/vodad.js (easylistchina.txt: 95) /.*\.com/vodad\.js .*.com/vodad\.js -# .com/js/ad_ (easylistchina+easylist.txt: 93) +# .com/pc/ad/ (easylistchina.txt: 94) +/.*\.com/pc/ad/ +.*.com/pc/ad/ +# .com/js/alls_top.js (easylistchina.txt: 93) +/.*\.com/js/alls_top\.js +.*.com/js/alls_top\.js +# .com/js/alls_foot.js (easylistchina.txt: 92) +/.*\.com/js/alls_foot\.js +.*.com/js/alls_foot\.js +# .com/js/ad_ (easylistchina.txt: 91) /.*\.com/js/ad_ .*.com/js/ad_ -# .com/a_d/ (easylistchina+easylist.txt: 92) +# .com/a_d/ (easylistchina.txt: 90) /.*\.com/a_d/ .*.com/a_d/ -# .co/js/ads/ (easylistchina+easylist.txt: 91) +# .co/js/ads/ (easylistchina.txt: 89) /.*\.co/js/ads/ .*.co/js/ads/ -# .cn/js/ads/ (easylistchina+easylist.txt: 90) +# .cn/js/ads/ (easylistchina.txt: 88) /.*\.cn/js/ads/ .*.cn/js/ads/ -# .cn/ads/ (easylistchina+easylist.txt: 89) +# .cn/ads/ (easylistchina.txt: 87) /.*\.cn/ads/ .*.cn/ads/ -# .cc/js/ads/ (easylistchina+easylist.txt: 88) +# .cc/js/ads/ (easylistchina.txt: 86) /.*\.cc/js/ads/ .*.cc/js/ads/ -# ||yy32.com^$third-party (easylistchina+easylist.txt: 85) +# .bl.test15. (easylistchina.txt: 85) +/.*\.bl\.test15\. +.*.bl.test15.*. +# ||yy32.com^$third-party (easylistchina.txt: 82) .yy32.com -# ||xq12.com^$third-party (easylistchina+easylist.txt: 84) +# ||xq12.com^$third-party (easylistchina.txt: 81) .xq12.com -# ||xixianad.com^$third-party (easylistchina+easylist.txt: 83) +# ||xixianad.com^$third-party (easylistchina.txt: 80) .xixianad.com -# ||wofan.net^$third-party (easylistchina+easylist.txt: 82) +# ||wofan.net^$third-party (easylistchina.txt: 79) .wofan.net -# ||v.xi666.com^$third-party (easylistchina+easylist.txt: 81) +# ||v.xi666.com^$third-party (easylistchina.txt: 78) .v.xi666.com -# ||ugoooo.com^$third-party (easylistchina+easylist.txt: 80) +# ||ugoooo.com^$third-party (easylistchina.txt: 77) .ugoooo.com -# ||uctrac.com^$third-party (easylistchina+easylist.txt: 79) +# ||uctrac.com^$third-party (easylistchina.txt: 76) .uctrac.com -# ||ubcpm.com^$third-party (easylistchina+easylist.txt: 78) +# ||ubcpm.com^$third-party (easylistchina.txt: 75) .ubcpm.com -# ||tuiguang.178.com^ (easylistchina+easylist.txt: 77) +# ||tuiguang.178.com^ (easylistchina.txt: 74) .tuiguang.178.com -# ||szvr.com^$third-party (easylistchina+easylist.txt: 76) +# ||szvr.com^$third-party (easylistchina.txt: 73) .szvr.com -# ||sitemaji.com^$third-party (easylistchina+easylist.txt: 75) +# ||sitemaji.com^$third-party (easylistchina.txt: 72) .sitemaji.com -# ||samboc.com^$third-party (easylistchina+easylist.txt: 74) +# ||samboc.com^$third-party (easylistchina.txt: 71) .samboc.com -# ||s.yimg.com/ja/ap/tw/js/ (easylistchina+easylist.txt: 72) +# ||s.yimg.com/ja/ap/tw/js/ (easylistchina.txt: 69) .s.yimg.com/ja/ap/tw/js/ -# ||rekanw.com^$third-party (easylistchina+easylist.txt: 71) +# ||rekanw.com^$third-party (easylistchina.txt: 68) .rekanw.com -# ||rayli.com.cn^$third-party (easylistchina+easylist.txt: 70) +# ||rayli.com.cn^$third-party (easylistchina.txt: 67) .rayli.com.cn -# ||qling.com^$third-party (easylistchina+easylist.txt: 69) +# ||qling.com^$third-party (easylistchina.txt: 66) .qling.com -# ||oeya.com^$third-party (easylistchina+easylist.txt: 68) +# ||oeya.com^$third-party (easylistchina.txt: 65) .oeya.com -# ||niwota.com^$third-party (easylistchina+easylist.txt: 67) +# ||niwota.com^$third-party (easylistchina.txt: 64) .niwota.com -# ||mosa86.com^$third-party (easylistchina+easylist.txt: 66) +# ||mosa86.com^$third-party (easylistchina.txt: 63) .mosa86.com -# ||lu.sogou.com^$subdocument (easylistchina+easylist.txt: 65) +# ||lu.sogou.com^$subdocument (easylistchina.txt: 62) .lu.sogou.com -# ||log.interest.mix.sina.com.cn^ (easylistchina+easylist.txt: 64) +# ||log.interest.mix.sina.com.cn^ (easylistchina.txt: 61) .log.interest.mix.sina.com.cn -# ||lm.35.com^$third-party (easylistchina+easylist.txt: 63) +# ||lm.35.com^$third-party (easylistchina.txt: 60) .lm.35.com -# ||lianjie.phpwind.com^$third-party (easylistchina+easylist.txt: 62) +# ||lianjie.phpwind.com^$third-party (easylistchina.txt: 59) .lianjie.phpwind.com -# ||kuqi.com^$third-party (easylistchina+easylist.txt: 61) +# ||kuqi.com^$third-party (easylistchina.txt: 58) .kuqi.com -# ||kuaiwan.com^$third-party (easylistchina+easylist.txt: 60) +# ||kuaiwan.com^$third-party (easylistchina.txt: 57) .kuaiwan.com -# ||image.qndown.com^$third-party (easylistchina+easylist.txt: 59) +# ||image.qndown.com^$third-party (easylistchina.txt: 56) .image.qndown.com -# ||ilepai.com^$third-party (easylistchina+easylist.txt: 58) +# ||ilepai.com^$third-party (easylistchina.txt: 55) .ilepai.com -# ||ifocus.cn^$third-party (easylistchina+easylist.txt: 57) +# ||ifocus.cn^$third-party (easylistchina.txt: 54) .ifocus.cn -# ||hz3137.com^$third-party (easylistchina+easylist.txt: 56) +# ||hz3137.com^$third-party (easylistchina.txt: 53) .hz3137.com -# ||housefun.com.tw^$third-party (easylistchina+easylist.txt: 55) +# ||housefun.com.tw^$third-party (easylistchina.txt: 52) .housefun.com.tw -# ||hiad.myweb.hinet.net^ (easylistchina+easylist.txt: 54) +# ||hiad.myweb.hinet.net^ (easylistchina.txt: 51) .hiad.myweb.hinet.net -# ||googleadsl.com^$third-party (easylistchina+easylist.txt: 53) +# ||googleadsl.com^$third-party (easylistchina.txt: 50) .googleadsl.com -# ||flashwing.net^$third-party (easylistchina+easylist.txt: 52) +# ||flashwing.net^$third-party (easylistchina.txt: 49) .flashwing.net -# ||ee4kdushuba.com^$third-party (easylistchina+easylist.txt: 51) +# ||ee4kdushuba.com^$third-party (easylistchina.txt: 48) .ee4kdushuba.com -# ||dingge.cc^$third-party (easylistchina+easylist.txt: 50) +# ||dingge.cc^$third-party (easylistchina.txt: 47) .dingge.cc -# ||dian5000.com^$third-party (easylistchina+easylist.txt: 49) +# ||dian5000.com^$third-party (easylistchina.txt: 46) .dian5000.com -# ||cpm360.com^$third-party (easylistchina+easylist.txt: 48) +# ||cpm360.com^$third-party (easylistchina.txt: 45) .cpm360.com -# ||caiyifz.com^$third-party (easylistchina+easylist.txt: 47) +# ||caiyifz.com^$third-party (easylistchina.txt: 44) .caiyifz.com -# ||buzzads.com^$third-party (easylistchina+easylist.txt: 46) +# ||buzzads.com^$third-party (easylistchina.txt: 43) .buzzads.com -# ||boosj.com^$third-party (easylistchina+easylist.txt: 45) +# ||boosj.com^$third-party (easylistchina.txt: 42) .boosj.com -# ||bmw100.cn^$third-party (easylistchina+easylist.txt: 44) +# ||bmw100.cn^$third-party (easylistchina.txt: 41) .bmw100.cn -# ||blog.xuite.net/_public/js/ysmad.js (easylistchina+easylist.txt: 43) +# ||blog.xuite.net/_public/js/ysmad.js (easylistchina.txt: 40) .blog.xuite.net/_public/js/ysmad\.js -# ||baitaiad.com^$third-party (easylistchina+easylist.txt: 42) +# ||baitaiad.com^$third-party (easylistchina.txt: 39) .baitaiad.com -# ||artxun.com^$third-party (easylistchina+easylist.txt: 41) +# ||artxun.com^$third-party (easylistchina.txt: 38) .artxun.com -# ||aifei.info^$third-party (easylistchina+easylist.txt: 40) +# ||aifei.info^$third-party (easylistchina.txt: 37) .aifei.info -# ||ads80.com^$third-party (easylistchina+easylist.txt: 39) +# ||ads80.com^$third-party (easylistchina.txt: 36) .ads80.com -# ||adrs.sdo.com^ (easylistchina+easylist.txt: 38) +# ||adrs.sdo.com^ (easylistchina.txt: 35) .adrs.sdo.com -# ||admaji.com^$third-party (easylistchina+easylist.txt: 37) +# ||admaji.com^$third-party (easylistchina.txt: 34) .admaji.com -# ||a.youdao.com^ (easylistchina+easylist.txt: 36) +# ||a.youdao.com^ (easylistchina.txt: 33) .a.youdao.com -# ||77zhuan.com^$third-party (easylistchina+easylist.txt: 35) +# ||77zhuan.com^$third-party (easylistchina.txt: 32) .77zhuan.com -# ||7794.com^$third-party (easylistchina+easylist.txt: 34) +# ||7794.com^$third-party (easylistchina.txt: 31) .7794.com -# ||52lover.info^$third-party (easylistchina+easylist.txt: 33) +# ||52lover.info^$third-party (easylistchina.txt: 30) .52lover.info -# ||49ko.com^$third-party (easylistchina+easylist.txt: 32) +# ||49ko.com^$third-party (easylistchina.txt: 29) .49ko.com -# ||37pk49.com^$third-party (easylistchina+easylist.txt: 31) +# ||37pk49.com^$third-party (easylistchina.txt: 28) .37pk49.com -# ||1x3x.com^$third-party (easylistchina+easylist.txt: 30) +# ||1x3x.com^$third-party (easylistchina.txt: 27) .1x3x.com -# ||12291.com^$third-party (easylistchina+easylist.txt: 29) +# ||12291.com^$third-party (easylistchina.txt: 26) .12291.com -# ||116b.com^$third-party (easylistchina+easylist.txt: 28) +# ||116b.com^$third-party (easylistchina.txt: 25) .116b.com -# ||114lm.com^$third-party (easylistchina+easylist.txt: 27) +# ||114lm.com^$third-party (easylistchina.txt: 24) .114lm.com -# /tan1.js (easylistchina+easylist.txt: 21) +# /tan1.js (easylistchina.txt: 18) /(.*/)?tan1\.js tan1.js*. -# /attachments/ad/* (easylistchina+easylist.txt: 20) +# /attachments/ad/* (easylistchina.txt: 17) /(.*/)?attachments/ad/.* -# /adflash/* (easylistchina+easylist.txt: 19) +# /adflash/* (easylistchina.txt: 16) /(.*/)?adflash/.* -# ||yablyk.com/wp-content/plugins/popups/ (advblock.txt: 7169) -.yablyk.com/wp-content/plugins/popups/ -# ||podrobnosti.ua/js/jqModal.js (advblock.txt: 7168) -.podrobnosti.ua/js/jqModal\.js -# ||metylancreativ.com/js/socialPopup.js (advblock.txt: 7167) -.metylancreativ.com/js/socialPopup\.js -# ||comprofit.ru/popup/ (advblock.txt: 7166) -.comprofit.ru/popup/ -# ||api.traq.li^$third-party (advblock.txt: 7165) -.api.traq.li -# ||zlograd.ru^ (advblock.txt: 7122) -.zlograd.ru -# ||zavod.chuvaz.ru^ (advblock.txt: 7121) -.zavod.chuvaz.ru -# ||zaovrazhnoe.ru^ (advblock.txt: 7120) -.zaovrazhnoe.ru -# ||uroki21.ru^ (advblock.txt: 7119) -.uroki21.ru -# ||tatar.4kazan.ru^ (advblock.txt: 7118) -.tatar.4kazan.ru -# ||sukterka.ru^ (advblock.txt: 7117) -.sukterka.ru -# ||sovch.ru^ (advblock.txt: 7116) -.sovch.ru -# ||serdce-volgi.ru^ (advblock.txt: 7115) -.serdce-volgi.ru -# ||randoom.ru^ (advblock.txt: 7114) -.randoom.ru -# ||procheb.ru^ (advblock.txt: 7113) -.procheb.ru -# ||nedv21.ru^ (advblock.txt: 7112) -.nedv21.ru -# ||my.megavstrecha.ru^ (advblock.txt: 7111) -.my.megavstrecha.ru -# ||lubov21.ru^ (advblock.txt: 7110) -.lubov21.ru -# ||kino.afisha21.ru^ (advblock.txt: 7109) -.kino.afisha21.ru -# ||it-cheb.ru^ (advblock.txt: 7108) -.it-cheb.ru -# ||icheb.ru^ (advblock.txt: 7107) -.icheb.ru -# ||host.torrent21.ru^ (advblock.txt: 7106) -.host.torrent21.ru -# ||gorod.shumerlya.ru^ (advblock.txt: 7105) -.gorod.shumerlya.ru -# ||echeb.ru^ (advblock.txt: 7104) -.echeb.ru -# ||doroga.kugesi.ru^ (advblock.txt: 7103) -.doroga.kugesi.ru -# ||doloj.ru^ (advblock.txt: 7102) -.doloj.ru -# ||dns21.ru^ (advblock.txt: 7101) -.dns21.ru -# ||devki21.ru^ (advblock.txt: 7100) -.devki21.ru -# ||chuvashskoe.ru^ (advblock.txt: 7099) -.chuvashskoe.ru -# ||chepaev.ru^ (advblock.txt: 7098) -.chepaev.ru -# ||chebtv.ru^ (advblock.txt: 7097) -.chebtv.ru -# ||chebtube.ru^ (advblock.txt: 7096) -.chebtube.ru -# ||chebru.ru^ (advblock.txt: 7095) -.chebru.ru -# ||chebradio.ru^ (advblock.txt: 7094) -.chebradio.ru -# ||cheboksar.ru^ (advblock.txt: 7093) -.cheboksar.ru -# ||chebogsary.ru^ (advblock.txt: 7092) -.chebogsary.ru -# ||chebfm.ru^ (advblock.txt: 7091) -.chebfm.ru -# ||cheb-rielt.ru^ (advblock.txt: 7090) -.cheb-rielt.ru -# ||alexey.blog21.ru^ (advblock.txt: 7089) -.alexey.blog21.ru -# ||adres21.ru^ (advblock.txt: 7088) -.adres21.ru -# ||441555.ru^ (advblock.txt: 7087) -.441555.ru -# ||21sale.ru^ (advblock.txt: 7086) -.21sale.ru -# ||21pokupki.ru^ (advblock.txt: 7085) -.21pokupki.ru -# ||21doctor.ru^ (advblock.txt: 7084) -.21doctor.ru -# ||21dengi.ru^ (advblock.txt: 7083) -.21dengi.ru -# ||212121.ru^ (advblock.txt: 7082) -.212121.ru -# ||kugesi.ru/fl3s/ (advblock.txt: 7071) -.kugesi.ru/fl3s/ -# ||kugesi.ru/fl2s/ (advblock.txt: 7070) -.kugesi.ru/fl2s/ -# ||x-soft.tomsk.ru/dsa/ (advblock.txt: 7064) -.x-soft.tomsk.ru/dsa/ -# ||vtomske.ru/js/ds!$script (advblock.txt: 7063) -.vtomske.ru/js/ds! -# ||torrents.tomsk.ru/b/ (advblock.txt: 7062) -.torrents.tomsk.ru/b/ -# ||tomsktracker.org/b/ (advblock.txt: 7061) -.tomsktracker.org/b/ -# ||tomsk.ru09.ru/img/tomsk/ad/ (advblock.txt: 7060) -.tomsk.ru09.ru/img/tomsk/ad/ -# ||tomsk.ru/tvb/ (advblock.txt: 7059) -.tomsk.ru/tvb/ -# ||tomsk.ru/tva/ (advblock.txt: 7058) -.tomsk.ru/tva/ -# ||tomsk.ru/tub/ (advblock.txt: 7057) -.tomsk.ru/tub/ -# ||tomsk.ru/tua/ (advblock.txt: 7056) -.tomsk.ru/tua/ -# ||tomsk.ru/ttt/ (advblock.txt: 7055) -.tomsk.ru/ttt/ -# ||tomsk.ru/resources/content/ (advblock.txt: 7054) -.tomsk.ru/resources/content/ -# ||tg.tomsk.ru/$third-party (advblock.txt: 7053) -.tg.tomsk.ru -# ||tehnomag.tomsk.ru/index.php?ukey=product_widget&$third-party (advblock.txt: 7052) -.tehnomag.tomsk.ru/index\.php\?ukey=product_widget& -# ||rde.ru^$third-party (advblock.txt: 7051) -.rde.ru -# ||novo.tomsk.ru/uploads/up3/rkl/ (advblock.txt: 7050) -.novo.tomsk.ru/uploads/up3/rkl/ -# ||mp1.tomsk.ru/h/ (advblock.txt: 7049) -.mp1.tomsk.ru/h/ -# ||kompstar.tomsk.ru^$third-party (advblock.txt: 7048) -.kompstar.tomsk.ru -# ||gorod.tomsk.ru/i/b/ (advblock.txt: 7047) -.gorod.tomsk.ru/i/b/ -# ||gardnet.tomsk.ru^$object (advblock.txt: 7046) -.gardnet.tomsk.ru -# ||dn.vtomske.ru/neopodarok/ (advblock.txt: 7045) -.dn.vtomske.ru/neopodarok/ -# ||dn.vtomske.ru/bi/ (advblock.txt: 7044) -.dn.vtomske.ru/bi/ -# ||dn.vtomske.ru/be/materials/ (advblock.txt: 7043) -.dn.vtomske.ru/be/materials/ -# ||catalog.tomsk.ru/ubb/ (advblock.txt: 7042) -.catalog.tomsk.ru/ubb/ -# ||catalog.tomsk.ru/uay/ (advblock.txt: 7041) -.catalog.tomsk.ru/uay/ -# ||be.vtomske.ru^ (advblock.txt: 7040) -.be.vtomske.ru -# ||b.vtomske.ru^ (advblock.txt: 7039) -.b.vtomske.ru -# ||b.autotom.ru/img/ (advblock.txt: 7038) -.b.autotom.ru/img/ -# ||autotom.ru/kompstar/ (advblock.txt: 7037) -.autotom.ru/kompstar/ -# ||autotom.ru/img/$object (advblock.txt: 7036) -.autotom.ru/img/ -# ||yabs.yandex.*/show/$third-party (advblock.txt: 6996) -.yabs.yandex.*./(.*/)?show/ -# ||kiks.yandex. (advblock.txt: 6995) -.kiks.yandex.*. -# ||bs.yandex.$script (advblock.txt: 6994) -.bs.yandex.*. -# ||bs-meta.yandex.$script (advblock.txt: 6993) -.bs-meta.yandex.*. -# ||awaps.yandex. (advblock.txt: 6992) -.awaps.yandex.*. -# ||an.yandex.ru/system/context$script (advblock.txt: 6991) -.an.yandex.ru/system/context -# ||an.yandex.ru/resource/context$script (advblock.txt: 6990) -.an.yandex.ru/resource/context -# ||an.yandex.$third-party (advblock.txt: 6989) -.an.yandex.*. -# ||vkbot.ru/trash/ (advblock.txt: 6964) -.vkbot.ru/trash/ -# ||everall.ru/static/img/banners/ (advblock.txt: 6962) -.everall.ru/static/img/banners/ -# ||vladbazar.com/bbb/ (advblock.txt: 6960) -.vladbazar.com/bbb/ -# ||vkmus.com^$third-party (advblock.txt: 6959) -.vkmus.com -# ||vkbutton.com^$third-party (advblock.txt: 6958) -.vkbutton.com -# ||portal.un.net.ua/temp/blocks/ (advblock.txt: 6954) -.portal.un.net.ua/temp/blocks/ -# ||vizortv.com/swf/ (advblock.txt: 6947) -.vizortv.com/swf/ -# ||lifetorrents.com^*_life/img/banner (advblock.txt: 6940) -.lifetorrents.com/.*_life/img/banner -# torrent*.com/afisha/*x$image (advblock.txt: 6934) -/.*torrent.*\.com/afisha/.*x -.*torrent*./.*\.com/afisha/.*x -.*torrent*.com/afisha/.*x -# torrent*.com/afisha/*_$image (advblock.txt: 6933) -/.*torrent.*\.com/afisha/.*_ -.*torrent*./.*\.com/afisha/.*_ -.*torrent*.com/afisha/.*_ -# torrent*.com/afisha/$object (advblock.txt: 6932) -/.*torrent.*\.com/afisha/ -.*torrent*./.*\.com/afisha/ -.*torrent*.com/afisha/ -# ||zoom.cnews.ru/inc/bpic/ (advblock.txt: 6926) -.zoom.cnews.ru/inc/bpic/ -# ||utro.ru/*/banners/ (advblock.txt: 6925) -.utro.ru/.*/banners/ -# ||rbc.ru/img/banners/ (advblock.txt: 6924) -.rbc.ru/img/banners/ -# ||cnews.ru/inc/banners/ (advblock.txt: 6923) -.cnews.ru/inc/banners/ -# ||rambler.ru^*.ban? (advblock.txt: 6907) -.rambler.ru/.*\.ban\? -# ||rambler.ru/upl/partners/ (advblock.txt: 6906) -.rambler.ru/upl/partners/ -# ||rambler.ru/upl/clients/ (advblock.txt: 6905) -.rambler.ru/upl/clients/ -# ||rambler.ru/upl/ad/ (advblock.txt: 6904) -.rambler.ru/upl/ad/ -# ||rambler.ru/export/banners. (advblock.txt: 6903) -.rambler.ru/export/banners\. -# ||rambler.ru/*/js/direct. (advblock.txt: 6902) -.rambler.ru/.*/js/direct\. -# ||price.ru^$third-party (advblock.txt: 6901) -.price.ru -# ||kanobu.ru/brand/ (advblock.txt: 6900) -.kanobu.ru/brand/ -# ||ag.ru/*/top_bg.jpg (advblock.txt: 6899) -.ag.ru/.*/top_bg\.jpg -# ||ag.ru/*/flash.swf (advblock.txt: 6898) -.ag.ru/.*/flash\.swf -# ||ag.ru/*/bottom_bg.jpg (advblock.txt: 6897) -.ag.ru/.*/bottom_bg\.jpg -# ||torg.mail.ru/prtnr/$third-party (advblock.txt: 6833) -.torg.mail.ru/prtnr/ -# ||showbiz.mail.ru^$third-party (advblock.txt: 6832) -.showbiz.mail.ru -# ||banners.mail.ru^$third-party (advblock.txt: 6831) -.banners.mail.ru -# ||tv.mail.ru/popup_banner/ (advblock.txt: 6821) -.tv.mail.ru/popup_banner/ -# ||news.mail.ru^*.parallaxSlot. (advblock.txt: 6820) -.news.mail.ru/.*\.parallaxSlot\. -# ||mradx.net^*&link1=$subdocument (advblock.txt: 6819) -.mradx.net/.*&link1= -# ||mradx.net/img/$object,subdocument (advblock.txt: 6818) -.mradx.net/img/ -# ||minigames.imgsmail.ru/swf/stock/ (advblock.txt: 6817) -.minigames.imgsmail.ru/swf/stock/ -# ||mamba.ru/images/*/promo/ (advblock.txt: 6816) -.mamba.ru/images/.*/promo/ -# ||mail.ru/img/promo/ (advblock.txt: 6815) -.mail.ru/img/promo/ -# ||imgsmail.ru/r/my/brands/ (advblock.txt: 6814) -.imgsmail.ru/r/my/brands/ -# ||imgsmail.ru/js/onair2.$script (advblock.txt: 6813) -.imgsmail.ru/js/onair2\. -# ||e.mail.ru/api-proxy/mimic (advblock.txt: 6812) -.e.mail.ru/api-proxy/mimic -# //rs.mail.ru/b*.flv (advblock.txt: 6808) -rs.mail.ru/b.*\.flv -# //rs.mail.ru/b$subdocument (advblock.txt: 6807) -rs.mail.ru/b -# //r.mail.ru/b$subdocument (advblock.txt: 6805) -r.mail.ru/b -# ||letitbit.net^*/bg_downloader_screen_ (advblock.txt: 6682) -.letitbit.net/.*/bg_downloader_screen_ -# ||letitbit.net/images/rebrandings/ (advblock.txt: 6681) -.letitbit.net/images/rebrandings/ -# ||gismeteo.*/rian.html| (advblock.txt: 6674) -.gismeteo.*./(.*/)?rian\.html$ -# ||褉械褎械褉邪褌褘-懈-褋芯褔懈薪械薪懈褟.褉褎/images/hosting.gif (advblock.txt: 6640) -.褉械褎械褉邪褌褘-懈-褋芯褔懈薪械薪懈褟.褉褎/images/hosting\.gif -# ||谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x300_$object (advblock.txt: 6639) -.谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x300_ -# ||谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x150_$object (advblock.txt: 6638) -.谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x150_ -# ||斜械谢褉褍.褉褎/img/banners/ (advblock.txt: 6637) -.斜械谢褉褍.褉褎/img/banners/ -# ||zvezdakaraoke.com/*.php?id= (advblock.txt: 6636) -.zvezdakaraoke.com/.*\.php\?id= -# ||zoomby.ru/s/*/promo/*.jpg| (advblock.txt: 6635) -.zoomby.ru/s/.*/promo/.*\.jpg$ -# ||zoneofgames.ru/branding/$~stylesheet (advblock.txt: 6634) -.zoneofgames.ru/branding/ -# ||zol.ru/noteb/ (advblock.txt: 6633) -.zol.ru/noteb/ -# ||znak.com/images/up/ (advblock.txt: 6632) -.znak.com/images/up/ -# ||zik.ua/var/things/ (advblock.txt: 6630) -.zik.ua/var/things/ -# ||zh24.com/molodejj/ (advblock.txt: 6629) -.zh24.com/molodejj/ -# ||zh24.com/go/go/ (advblock.txt: 6628) -.zh24.com/go/go/ -# ||zerx.ru/templates/zerxnew/images/zerx_bg. (advblock.txt: 6627) -.zerx.ru/templates/zerxnew/images/zerx_bg\. -# ||zelenograd.ru/b/ (advblock.txt: 6626) -.zelenograd.ru/b/ -# ||zegame.net/files/ (advblock.txt: 6625) -.zegame.net/files/ -# ||zaycev.net/single?t= (advblock.txt: 6624) -.zaycev.net/single\?t= -# ||zakonia.ru/imgs/adshtml/ (advblock.txt: 6623) -.zakonia.ru/imgs/adshtml/ -# ||zadolba.li/img/ur.jpg (advblock.txt: 6622) -.zadolba.li/img/ur\.jpg -# ||youhack.ru^$object (advblock.txt: 6620) -.youhack.ru -# ||ymka.tv/images/$object (advblock.txt: 6619) -.ymka.tv/images/ -# ||ykt2.ru/inform/ (advblock.txt: 6618) -.ykt2.ru/inform/ -# ||ykt.ru/yaknet/image.asp?id= (advblock.txt: 6617) -.ykt.ru/yaknet/image\.asp\?id= -# ||ykt.ru/session? (advblock.txt: 6616) -.ykt.ru/session\? -# ||yarportal.ru^$object (advblock.txt: 6615) -.yarportal.ru -# ||yaplakal.com/html/static/brand- (advblock.txt: 6614) -.yaplakal.com/html/static/brand- -# ||yaplakal.com/html/$subdocument (advblock.txt: 6613) -.yaplakal.com/html/ -# ||yapfiles.ru/uploads/branddata/ (advblock.txt: 6612) -.yapfiles.ru/uploads/branddata/ -# ||yapfiles.com^$third-party (advblock.txt: 6611) -.yapfiles.com -# ||xyya.net/sha$script (advblock.txt: 6610) -.xyya.net/sha -# ||xxxmir.info/play.js (advblock.txt: 6609) -.xxxmir.info/play\.js -# ||xxx-tracker.com/pics/ (advblock.txt: 6608) -.xxx-tracker.com/pics/ -# ||xxx-russian.ru/js/38fbf0.js (advblock.txt: 6607) -.xxx-russian.ru/js/38fbf0\.js -# ||xtreme.ws/xad/ (advblock.txt: 6606) -.xtreme.ws/xad/ -# ||xmages.net/*/banner/ (advblock.txt: 6605) -.xmages.net/.*/banner/ -# ||xjp4v.ru^$third-party (advblock.txt: 6604) -.xjp4v.ru -# ||xfont.ru^*/add_ref/ (advblock.txt: 6603) -.xfont.ru/.*/add_ref/ -# ||xf.xyu.tv^ (advblock.txt: 6602) -.xf.xyu.tv -# ||xenforo.info/728.swf (advblock.txt: 6601) -.xenforo.info/728\.swf -# ||xakep.ru/post/*_final.jpg (advblock.txt: 6600) -.xakep.ru/post/.*_final\.jpg -# ||www.4ernigiv.info^*/1ua/images/ (advblock.txt: 6599) -.www.4ernigiv.info/.*/1ua/images/ -# ||wvclub.net^$object (advblock.txt: 6598) -.wvclub.net -# ||wowlol.ru/left/ (advblock.txt: 6597) -.wowlol.ru/left/ -# ||wowjp.net/_styles/$object (advblock.txt: 6596) -.wowjp.net/_styles/ -# ||wowgeek.ru^$object (advblock.txt: 6595) -.wowgeek.ru -# ||wowgaid.ru/wp-content/uploads/$object (advblock.txt: 6594) -.wowgaid.ru/wp-content/uploads/ -# ||worldxfree.info/windowfiles/ (advblock.txt: 6593) -.worldxfree.info/windowfiles/ -# ||world-art.ru/bipack/ (advblock.txt: 6592) -.world-art.ru/bipack/ -# ||wmmail.ru/bn/ (advblock.txt: 6591) -.wmmail.ru/bn/ -# ||wmasteru.org/b/ (advblock.txt: 6590) -.wmasteru.org/b/ -# ||winzoro.com/data/ba_ne_r/ (advblock.txt: 6589) -.winzoro.com/data/ba_ne_r/ -# ||wild-mistress.ru/wmbanner/ (advblock.txt: 6588) -.wild-mistress.ru/wmbanner/ -# ||wedlife.ru/b/ (advblock.txt: 6587) -.wedlife.ru/b/ -# ||webtun.com/uploads/files/ (advblock.txt: 6586) -.webtun.com/uploads/files/ -# ||webplus.info/getres.php?getadv= (advblock.txt: 6585) -.webplus.info/getres\.php\?getadv= -# ||webpark.ru/*/mhealth (advblock.txt: 6584) -.webpark.ru/.*/mhealth -# ||webmasters.ru/forum/ltbanners/ (advblock.txt: 6583) -.webmasters.ru/forum/ltbanners/ -# ||weblancer.net/adver/ (advblock.txt: 6582) -.weblancer.net/adver/ -# ||webkrug.ru/images/bann (advblock.txt: 6581) -.webkrug.ru/images/bann -# ||webfile.ru/media/img/branding. (advblock.txt: 6580) -.webfile.ru/media/img/branding\. -# ||webavangard.com.ua/torg/ (advblock.txt: 6579) -.webavangard.com.ua/torg/ -# ||webapteka.ru/image/ (advblock.txt: 6578) -.webapteka.ru/image/ -# ||weacom.ru/uploads/commercial/ (advblock.txt: 6577) -.weacom.ru/uploads/commercial/ -# ||warfiles.ru/bg/ (advblock.txt: 6576) -.warfiles.ru/bg/ -# ||warezlab.ru^*rotator (advblock.txt: 6575) -.warezlab.ru/.*rotator -# ||waralbum.ru/br/ (advblock.txt: 6574) -.waralbum.ru/br/ -# ||vz.ru/import/ (advblock.txt: 6573) -.vz.ru/import/ -# ||vz.ru/images/*_banner. (advblock.txt: 6572) -.vz.ru/images/.*_banner\. -# ||vsluh.ru/system/*banners/ (advblock.txt: 6571) -.vsluh.ru/system/.*banners/ -# ||vsetyt.us/uploads/ruscams. (advblock.txt: 6570) -.vsetyt.us/uploads/ruscams\. -# ||vsestroi.com/files/$object (advblock.txt: 6569) -.vsestroi.com/files/ -# ||vseplatezhi.ru^*/banners/ (advblock.txt: 6568) -.vseplatezhi.ru/.*/banners/ -# ||vseanime.ru/upload/$object (advblock.txt: 6567) -.vseanime.ru/upload/ -# ||vse42.ru/files/ui-*.swf (advblock.txt: 6566) -.vse42.ru/files/ui-.*\.swf -# ||vse42.ru/files/ui-*.gif (advblock.txt: 6565) -.vse42.ru/files/ui-.*\.gif -# ||vsatke.ru^$object (advblock.txt: 6564) -.vsatke.ru -# ||vp-news.ru/images/swr/ (advblock.txt: 6563) -.vp-news.ru/images/swr/ -# ||vozmi.net/img/*150x250 (advblock.txt: 6562) -.vozmi.net/img/.*150x250 -# ||voxpopuli.kz/userfiles/branding/ (advblock.txt: 6561) -.voxpopuli.kz/userfiles/branding/ -# ||voxpopuli.kz/css/site/images/*/background_ (advblock.txt: 6560) -.voxpopuli.kz/css/site/images/.*/background_ -# ||vorum.ru/files/mpix/ (advblock.txt: 6559) -.vorum.ru/files/mpix/ -# ||volzsky.ru/upload/flash/ (advblock.txt: 6558) -.volzsky.ru/upload/flash/ -# ||volgowarez.ru/engine/classes/js/init.js| (advblock.txt: 6557) -.volgowarez.ru/engine/classes/js/init\.js$ -# ||volgo-mame.ru/partner/ (advblock.txt: 6556) -.volgo-mame.ru/partner/ -# ||vokrugsveta.ru/img/bx/rk/ (advblock.txt: 6555) -.vokrugsveta.ru/img/bx/rk/ -# ||vokrugsveta.ru/ad/ (advblock.txt: 6554) -.vokrugsveta.ru/ad/ -# ||voffka.com/img/banners/ (advblock.txt: 6553) -.voffka.com/img/banners/ -# ||vlasti.net/ext/uploads/ (advblock.txt: 6552) -.vlasti.net/ext/uploads/ -# ||virusinfo.info^*/brand/ (advblock.txt: 6551) -.virusinfo.info/.*/brand/ -# ||viknaodessa.od.ua/baner468 (advblock.txt: 6550) -.viknaodessa.od.ua/baner468 -# ||videoprobki.*/ext_baners/ (advblock.txt: 6549) -.videoprobki.*./(.*/)?ext_baners/ -# ||videoprobki.*/brand/ (advblock.txt: 6548) -.videoprobki.*./(.*/)?brand/ -# ||videodom.net^$object (advblock.txt: 6547) -.videodom.net -# ||videochart.net/vedro/ (advblock.txt: 6546) -.videochart.net/vedro/ -# ||vgtimes.ru/podl/ (advblock.txt: 6545) -.vgtimes.ru/podl/ -# ||vfl.ru/bs/ (advblock.txt: 6544) -.vfl.ru/bs/ -# ||vestifinance.ru/img/banners/ (advblock.txt: 6543) -.vestifinance.ru/img/banners/ -# ||vesti.ru/banners_ (advblock.txt: 6542) -.vesti.ru/banners_ -# ||vesti.lv/www/images/$object (advblock.txt: 6541) -.vesti.lv/www/images/ -# ||verstov.info/files/ (advblock.txt: 6540) -.verstov.info/files/ -# ||verstov.info/cviews.php?id= (advblock.txt: 6539) -.verstov.info/cviews\.php\?id= -# ||vdmsti.ru/img/advblock/ (advblock.txt: 6538) -.vdmsti.ru/img/advblock/ -# ||vashgorod.ru/key/get?partner_id= (advblock.txt: 6535) -.vashgorod.ru/key/get\?partner_id= -# ||vashgorod.ru/images/banner/ (advblock.txt: 6534) -.vashgorod.ru/images/banner/ -# ||vashdom.ru/image/rk/ (advblock.txt: 6533) -.vashdom.ru/image/rk/ -# ||vashdom.ru/image/gagban/ (advblock.txt: 6532) -.vashdom.ru/image/gagban/ -# ||v-info.ru^*.swf?data= (advblock.txt: 6530) -.v-info.ru/.*\.swf\?data= -# ||v-info.ru/i_bann/ (advblock.txt: 6529) -.v-info.ru/i_bann/ -# ||v-chulkahh.ru/js/06ea7c.js (advblock.txt: 6528) -.v-chulkahh.ru/js/06ea7c\.js -# ||uzumaki.kz/go?$script (advblock.txt: 6526) -.uzumaki.kz/go\? -# ||uzum.tv/120/ (advblock.txt: 6525) -.uzum.tv/120/ -# ||upweek.ru/wp-content/banners/ (advblock.txt: 6524) -.upweek.ru/wp-content/banners/ -# ||uptracker.ru/images/casino/ (advblock.txt: 6523) -.uptracker.ru/images/casino/ -# ||unn.com.ua/images/branding/ (advblock.txt: 6522) -.unn.com.ua/images/branding/ -# ||unionpeer.org/branding_ (advblock.txt: 6521) -.unionpeer.org/branding_ -# ||uniongang.tv^$object (advblock.txt: 6520) -.uniongang.tv -# ||underverse.su/misc/ (advblock.txt: 6519) -.underverse.su/misc/ -# ||ukrlit.vn.ua^$object (advblock.txt: 6518) -.ukrlit.vn.ua -# ||uinsell.net/b/ (advblock.txt: 6517) -.uinsell.net/b/ -# ||uff.uz/images/banners/$image (advblock.txt: 6516) -.uff.uz/images/banners/ -# ||udaff.com/image/$object (advblock.txt: 6515) -.udaff.com/image/ -# ||uc-portaller.ru/uc-img/banner/ (advblock.txt: 6514) -.uc-portaller.ru/uc-img/banner/ -# ||uaplayer.com/get? (advblock.txt: 6513) -.uaplayer.com/get\? -# ||ua-football.com/interface/ads/ (advblock.txt: 6512) -.ua-football.com/interface/ads/ -# ||u-tv.ru/pic/promo/ (advblock.txt: 6511) -.u-tv.ru/pic/promo/ -# ||u-tv.ru/images/overlay/ (advblock.txt: 6510) -.u-tv.ru/images/overlay/ -# ||u-tv.ru/ajax?f=bigbaner_ (advblock.txt: 6509) -.u-tv.ru/ajax\?f=bigbaner_ -# ||tyt.by^*/banner/ (advblock.txt: 6508) -.tyt.by/.*/banner/ -# ||twirpx.com/resources/html/ (advblock.txt: 6507) -.twirpx.com/resources/html/ -# ||tvzavr.ru/cache/brand/$image (advblock.txt: 6506) -.tvzavr.ru/cache/brand/ -# ||tvigle.ru/resource/rf/rkm_disign/ (advblock.txt: 6505) -.tvigle.ru/resource/rf/rkm_disign/ -# ||tvi.ua/other/branding/ (advblock.txt: 6504) -.tvi.ua/other/branding/ -# ||tvi.ua/image/data/banners/ (advblock.txt: 6503) -.tvi.ua/image/data/banners/ -# ||tvgid.ua/visit/ (advblock.txt: 6502) -.tvgid.ua/visit/ -# ||tvernews.ru/upload/information_system_$object (advblock.txt: 6501) -.tvernews.ru/upload/information_system_ -# ||tverigrad.ru/wp-content/uploads/$object (advblock.txt: 6500) -.tverigrad.ru/wp-content/uploads/ -# ||tushkan.net/vkm/ (advblock.txt: 6499) -.tushkan.net/vkm/ -# ||turizm.ru/banners2/200 (advblock.txt: 6498) -.turizm.ru/banners2/200 -# ||turbobit.ru/pics/ (advblock.txt: 6497) -.turbobit.ru/pics/ -# ||turbobit.net/pics/ (advblock.txt: 6496) -.turbobit.net/pics/ -# ||turbo.az/banners/ (advblock.txt: 6495) -.turbo.az/banners/ -# ||tumix.ru/*/banners/ (advblock.txt: 6494) -.tumix.ru/.*/banners/ -# ||tsn.ua^*/branding/ (advblock.txt: 6493) -.tsn.ua/.*/branding/ -# ||trud.ru/saved/ (advblock.txt: 6492) -.trud.ru/saved/ -# ||trud.ru/ad/ (advblock.txt: 6491) -.trud.ru/ad/ -# ||tropica.ru/img/b/ (advblock.txt: 6490) -.tropica.ru/img/b/ -# ||trinixy.ru/r/ (advblock.txt: 6489) -.trinixy.ru/r/ -# ||tree.tv/film/index/banners$subdocument (advblock.txt: 6488) -.tree.tv/film/index/banners -# ||travelgps.com.ua/js/relink2. (advblock.txt: 6487) -.travelgps.com.ua/js/relink2\. -# ||travelgps.com.ua/cg/$object (advblock.txt: 6486) -.travelgps.com.ua/cg/ -# ||trackitonline.*/pics/$object (advblock.txt: 6485) -.trackitonline.*./(.*/)?pics/ -# ||tort.fm/banners/ (advblock.txt: 6483) -.tort.fm/banners/ -# ||torrentszona.com/pic/branding- (advblock.txt: 6482) -.torrentszona.com/pic/branding- -# ||torrentszona.com/fakereklam/ (advblock.txt: 6481) -.torrentszona.com/fakereklam/ -# ||torrentszona.com/afisha/banner_ (advblock.txt: 6480) -.torrentszona.com/afisha/banner_ -# ||torrentino.com/assets/$object (advblock.txt: 6479) -.torrentino.com/assets/ -# ||torrent.rus.ec/a-detector/ (advblock.txt: 6478) -.torrent.rus.ec/a-detector/ -# ||torrent-telik.com/cdn-cgi/*.torrent-telik.com (advblock.txt: 6477) -.torrent-telik.com/cdn-cgi/.*\.torrent-telik\.com -# ||torrent-games.net/flash/flashgames/ (advblock.txt: 6476) -.torrent-games.net/flash/flashgames/ -# ||topwar.ru/bg/ (advblock.txt: 6475) -.topwar.ru/bg/ -# ||topse.ru/sotmarket (advblock.txt: 6474) -.topse.ru/sotmarket -# ||topnews.ru/bframe.php?z= (advblock.txt: 6473) -.topnews.ru/bframe\.php\?z= -# ||topgir.com.ua/files/$object (advblock.txt: 6472) -.topgir.com.ua/files/ -# ||tods-blog.com.ua/files/$object (advblock.txt: 6471) -.tods-blog.com.ua/files/ -# ||tod-news.com^*-ads- (advblock.txt: 6470) -.tod-news.com/.*-ads- -# ||tnua.info/banner/ (advblock.txt: 6469) -.tnua.info/banner/ -# ||tltorrent.org/images/$object (advblock.txt: 6468) -.tltorrent.org/images/ -# ||timeout.ru^*&adv= (advblock.txt: 6467) -.timeout.ru/.*&adv= -# ||timeout.ru/adriver-reload.js (advblock.txt: 6466) -.timeout.ru/adriver-reload\.js -# ||thumbs.ivi.ru^*.swf^ (advblock.txt: 6465) -.thumbs.ivi.ru/.*\.swf[^\w%.-] -# ||thr.ru/public/promo-branding/ (advblock.txt: 6464) -.thr.ru/public/promo-branding/ -# ||thg.ru^*_TOMS_HARDWARE_ (advblock.txt: 6463) -.thg.ru/.*_TOMS_HARDWARE_ -# ||thg.ru/images/spons/ (advblock.txt: 6462) -.thg.ru/images/spons/ -# ||thg.ru/adv_img/ (advblock.txt: 6461) -.thg.ru/adv_img/ -# ||thailandproperty.tv/images/*_banner_ (advblock.txt: 6460) -.thailandproperty.tv/images/.*_banner_ -# ||tfilm.tv/js/clck.js (advblock.txt: 6459) -.tfilm.tv/js/clck\.js -# ||telekomza.ru/wp-content/uploads/$object (advblock.txt: 6457) -.telekomza.ru/wp-content/uploads/ -# ||teksta.org/images/adv (advblock.txt: 6456) -.teksta.org/images/adv -# ||teksta.org/*.php| (advblock.txt: 6455) -.teksta.org/.*\.php$ -# ||tapochek.net^$subdocument (advblock.txt: 6454) -.tapochek.net -# ||tapochek.net^$object (advblock.txt: 6453) -.tapochek.net -# ||tapochek.net/rek.gif (advblock.txt: 6452) -.tapochek.net/rek\.gif -# ||tapochek.net/myc/code.js (advblock.txt: 6451) -.tapochek.net/myc/code\.js -# ||talos.dota2.ru^ (advblock.txt: 6450) -.talos.dota2.ru -# ||takelink.org/engine/ajax/check.js (advblock.txt: 6449) -.takelink.org/engine/ajax/check\.js -# ||tainoe.o-nas.info/banner/ (advblock.txt: 6448) -.tainoe.o-nas.info/banner/ -# ||syzran-small.net/images/info/ (advblock.txt: 6447) -.syzran-small.net/images/info/ -# ||sysadmins.ru^$object (advblock.txt: 6446) -.sysadmins.ru -# ||synoptyc.com.ua/_uploaded_files/ads/ (advblock.txt: 6445) -.synoptyc.com.ua/_uploaded_files/ads/ -# ||sympaty.net/wp-content/uploads/$object (advblock.txt: 6444) -.sympaty.net/wp-content/uploads/ -# ||sxnarod.com/img/ (advblock.txt: 6443) -.sxnarod.com/img/ -# ||svadba-kursk.ru/forum/banner/ (advblock.txt: 6442) -.svadba-kursk.ru/forum/banner/ -# ||sur.gorodkirov.ru^ (advblock.txt: 6441) -.sur.gorodkirov.ru -# ||superomsk.ru/images/public/banners/ (advblock.txt: 6440) -.superomsk.ru/images/public/banners/ -# ||sun.all-episodes.com^ (advblock.txt: 6438) -.sun.all-episodes.com -# ||suero.tv/exclusive/ (advblock.txt: 6437) -.suero.tv/exclusive/ -# ||submitred.freezpic.ru^ (advblock.txt: 6436) -.submitred.freezpic.ru -# ||stroyvitrina.ru/_a_images/ (advblock.txt: 6435) -.stroyvitrina.ru/_a_images/ -# ||storyroom.ru/bbb/ (advblock.txt: 6434) -.storyroom.ru/bbb/ -# ||stopgame.ru/preroll/*.mp4 (advblock.txt: 6433) -.stopgame.ru/preroll/.*\.mp4 -# ||stereohead.ru/_main_page/images/ (advblock.txt: 6432) -.stereohead.ru/_main_page/images/ -# ||station.ru/upload/contents/*240x250 (advblock.txt: 6431) -.station.ru/upload/contents/.*240x250 -# ||station.ru/upload/contents/*210x260 (advblock.txt: 6430) -.station.ru/upload/contents/.*210x260 -# ||static2.rutracker.org^ (advblock.txt: 6429) -.static2.rutracker.org -# ||static.oper.ru/images/*_top$image (advblock.txt: 6428) -.static.oper.ru/images/.*_top -# ||stars.manystars.ru^ (advblock.txt: 6427) -.stars.manystars.ru -# ||starkosino.ru/images/stories/$object (advblock.txt: 6426) -.starkosino.ru/images/stories/ -# ||starkosino.ru/images/banner_ (advblock.txt: 6425) -.starkosino.ru/images/banner_ -# ||spotters.net.ua/swf/ (advblock.txt: 6424) -.spotters.net.ua/swf/ -# ||sports.ru^*/banners/ (advblock.txt: 6423) -.sports.ru/.*/banners/ -# ||sports.ru/desktop/special/*-slider/ (advblock.txt: 6422) -.sports.ru/desktop/special/.*-slider/ -# ||sports.ru/css/promo. (advblock.txt: 6421) -.sports.ru/css/promo\. -# ||splkirov.ru/assets/flash/ (advblock.txt: 6420) -.splkirov.ru/assets/flash/ -# ||spbit.ru/b_images/ (advblock.txt: 6419) -.spbit.ru/b_images/ -# ||space.com.ua/ban_ (advblock.txt: 6418) -.space.com.ua/ban_ -# ||sovsport.ru/s/br/*?t=$image,object (advblock.txt: 6417) -.sovsport.ru/s/br/.*\?t= -# ||sovsport.ru/ib/ (advblock.txt: 6416) -.sovsport.ru/ib/ -# ||soptv.ru/scode.php?site= (advblock.txt: 6415) -.soptv.ru/scode\.php\?site= -# ||sonikelf.ru^$object (advblock.txt: 6414) -.sonikelf.ru -# ||softoroom.net/2pclick/ (advblock.txt: 6413) -.softoroom.net/2pclick/ -# ||soft4xp.ru/rss_news.php (advblock.txt: 6412) -.soft4xp.ru/rss_news\.php -# ||soft-i-kino.ru/tiz. (advblock.txt: 6411) -.soft-i-kino.ru/tiz\. -# ||soccer.ru/swf/*.swf?nocache= (advblock.txt: 6410) -.soccer.ru/swf/.*\.swf\?nocache= -# ||smusics.net^*/js/motiongallery. (advblock.txt: 6409) -.smusics.net/.*/js/motiongallery\. -# ||smotrisport.tv/banner/ (advblock.txt: 6408) -.smotrisport.tv/banner/ -# ||smotri.com/rb/ (advblock.txt: 6407) -.smotri.com/rb/ -# ||slivki.by/banner/ (advblock.txt: 6405) -.slivki.by/banner/ -# ||slavgorod.com.ua/AdTemp/ (advblock.txt: 6404) -.slavgorod.com.ua/AdTemp/ -# ||siliconrus.com^*/losssy.jquery.js (advblock.txt: 6402) -.siliconrus.com/.*/losssy\.jquery\.js -# ||sibmama.ru/d/ (advblock.txt: 6401) -.sibmama.ru/d/ -# ||sibinfo.su/files/$object (advblock.txt: 6400) -.sibinfo.su/files/ -# ||shownewstv.ru/files/all/ (advblock.txt: 6399) -.shownewstv.ru/files/all/ -# ||shopping-spb.su/images_b/$~script (advblock.txt: 6398) -.shopping-spb.su/images_b/ -# ||shopping-spb.su/images/*/bg_top. (advblock.txt: 6397) -.shopping-spb.su/images/.*/bg_top\. -# ||shophelp.ru/dv/ (advblock.txt: 6396) -.shophelp.ru/dv/ -# ||sexnarod.ru/img/ (advblock.txt: 6395) -.sexnarod.ru/img/ -# ||sexgamesbox.com/images/ (advblock.txt: 6394) -.sexgamesbox.com/images/ -# ||sevnews.info^*/flash/ (advblock.txt: 6393) -.sevnews.info/.*/flash/ -# ||sevnews.info^*/adv_banners/ (advblock.txt: 6392) -.sevnews.info/.*/adv_banners/ -# ||severstalclub.ru/pic/bimages/ (advblock.txt: 6391) -.severstalclub.ru/pic/bimages/ -# ||seti.ee*/reklaam/ (advblock.txt: 6390) -.seti.ee*./(.*/)?reklaam/ -# ||seti-ceti.ru/assets/images/vsiaki/ (advblock.txt: 6389) -.seti-ceti.ru/assets/images/vsiaki/ -# ||sergeistrelec.ru/templates/sstr/js^ (advblock.txt: 6388) -.sergeistrelec.ru/templates/sstr/js[^\w%.-] -# ||seocafe.info/MEDimg/ (advblock.txt: 6387) -.seocafe.info/MEDimg/ -# ||semestr.ru/images/banner (advblock.txt: 6386) -.semestr.ru/images/banner -# ||seedoff.net/partners/ (advblock.txt: 6385) -.seedoff.net/partners/ -# ||seedoff.net/jscript/xbtit.js (advblock.txt: 6384) -.seedoff.net/jscript/xbtit\.js -# ||seedoff.net/images/banners^ (advblock.txt: 6383) -.seedoff.net/images/banners[^\w%.-] -# ||seedoff.net/br/ (advblock.txt: 6382) -.seedoff.net/br/ -# ||seasonvar.ru/images/brand/ (advblock.txt: 6381) -.seasonvar.ru/images/brand/ -# ||sdelanounas.ru/b/ (advblock.txt: 6380) -.sdelanounas.ru/b/ -# ||scrin.org/viewt.js (advblock.txt: 6379) -.scrin.org/viewt\.js -# ||screenlist.ru/ads.js (advblock.txt: 6377) -.screenlist.ru/ads\.js -# ||sc2tv.ru^*/images/*/bg- (advblock.txt: 6376) -.sc2tv.ru/.*/images/.*/bg- -# ||sc2tv.ru^*/images/*-bg- (advblock.txt: 6375) -.sc2tv.ru/.*/images/.*-bg- -# ||sat-expert.com/forum/banners/ (advblock.txt: 6374) -.sat-expert.com/forum/banners/ -# ||sat-digest.com/bac/ (advblock.txt: 6373) -.sat-digest.com/bac/ -# ||sandero.ru/flash/ (advblock.txt: 6372) -.sandero.ru/flash/ -# ||samru.ru/images/pic/gifs/ (advblock.txt: 6371) -.samru.ru/images/pic/gifs/ -# ||samforum.ws^$subdocument (advblock.txt: 6370) -.samforum.ws -# ||s5o.ru^*/promo/ (advblock.txt: 6368) -.s5o.ru/.*/promo/ -# ||s5o.ru^*/brandings/ (advblock.txt: 6367) -.s5o.ru/.*/brandings/ -# ||s5o.ru^*/banners/$~script (advblock.txt: 6366) -.s5o.ru/.*/banners/ -# ||s1block.com^$third-party (advblock.txt: 6365) -.s1block.com -# ||s.serialu.net^ (advblock.txt: 6364) -.s.serialu.net -# ||s-info.ru/img/recl/ (advblock.txt: 6363) -.s-info.ru/img/recl/ -# ||rybalka.com/images/forum_buttons/ (advblock.txt: 6362) -.rybalka.com/images/forum_buttons/ -# ||rutube.ru/grobot/ (advblock.txt: 6361) -.rutube.ru/grobot/ -# ||rutracker21.org/partners/ (advblock.txt: 6359) -.rutracker21.org/partners/ -# ||rutracker.ru/images/banner/ (advblock.txt: 6358) -.rutracker.ru/images/banner/ -# ||rutracker.org/iframe/ (advblock.txt: 6357) -.rutracker.org/iframe/ -# ||rutracker.org/004/ (advblock.txt: 6356) -.rutracker.org/004/ -# ||rutor.org/counter.js (advblock.txt: 6355) -.rutor.org/counter\.js -# ||rustrackers.ru/banner_ (advblock.txt: 6354) -.rustrackers.ru/banner_ -# ||rustorrents.rustorrents.net^ (advblock.txt: 6353) -.rustorrents.rustorrents.net -# ||rustorka.com^*/bubbles.js (advblock.txt: 6352) -.rustorka.com/.*/bubbles\.js -# ||rustorka.com^$object (advblock.txt: 6351) -.rustorka.com -# ||rustorka.com/forum/misc/js/tqiqgy.js (advblock.txt: 6350) -.rustorka.com/forum/misc/js/tqiqgy\.js -# ||rustorka.com/forum/misc/js/mtomfh.js (advblock.txt: 6349) -.rustorka.com/forum/misc/js/mtomfh\.js -# ||rustorka.com/branding/ (advblock.txt: 6348) -.rustorka.com/branding/ -# ||russianfood.com/js/informb_ (advblock.txt: 6347) -.russianfood.com/js/informb_ -# ||russiandc.com/ebs_show.php? (advblock.txt: 6346) -.russiandc.com/ebs_show\.php\? -# ||ruspicbox.ru^*/clicunder.js (advblock.txt: 6345) -.ruspicbox.ru/.*/clicunder\.js -# ||ruspicbox.ru/tpl/ (advblock.txt: 6344) -.ruspicbox.ru/tpl/ -# ||rusnovosti.ru/upload/$object (advblock.txt: 6343) -.rusnovosti.ru/upload/ -# ||ruskweb.ru/bannerbro/ (advblock.txt: 6342) -.ruskweb.ru/bannerbro/ -# ||ruskino.ru/part3/ (advblock.txt: 6341) -.ruskino.ru/part3/ -# ||ruskino.ru/brand/*/top. (advblock.txt: 6340) -.ruskino.ru/brand/.*/top\. -# ||rusdemotivator.ru/uploads/*_*_vb.gif (advblock.txt: 6339) -.rusdemotivator.ru/uploads/.*_.*_vb\.gif -# ||rusbody.com/aim/ (advblock.txt: 6338) -.rusbody.com/aim/ -# ||rusavtobus.ru^*/images/*-banner/ (advblock.txt: 6337) -.rusavtobus.ru/.*/images/.*-banner/ -# ||rulinux.net.ru^*/banner. (advblock.txt: 6336) -.rulinux.net.ru/.*/banner\. -# ||rugrad.eu/bx/ (advblock.txt: 6335) -.rugrad.eu/bx/ -# ||rublacklist.net/media/banner_ (advblock.txt: 6334) -.rublacklist.net/media/banner_ -# ||rublacklist.net/media/*vpn. (advblock.txt: 6333) -.rublacklist.net/media/.*vpn\. -# ||ru-board.com/kupitraff. (advblock.txt: 6332) -.ru-board.com/kupitraff\. -# ||ru-board.com/bnrs/ (advblock.txt: 6331) -.ru-board.com/bnrs/ -# ||ru-board.com*/xmtmp/ (advblock.txt: 6330) -.ru-board.com*./(.*/)?xmtmp/ -# ||ru-board.com*/temp/ (advblock.txt: 6329) -.ru-board.com*./(.*/)?temp/ -# ||ru-admin.net/clk123.js (advblock.txt: 6328) -.ru-admin.net/clk123\.js -# ||rtkorr.com/js/popup.js (advblock.txt: 6327) -.rtkorr.com/js/popup\.js -# ||rsload.net/*/dl.js (advblock.txt: 6326) -.rsload.net/.*/dl\.js -# ||rpod.ru/i/b/ (advblock.txt: 6324) -.rpod.ru/i/b/ -# ||rotabanner.kulichki.com^ (advblock.txt: 6323) -.rotabanner.kulichki.com -# ||rosrealt.ru/pics/design2/ (advblock.txt: 6322) -.rosrealt.ru/pics/design2/ -# ||rosbalt.ru^$object (advblock.txt: 6321) -.rosbalt.ru -# ||rosbalt.ru/ad/ (advblock.txt: 6320) -.rosbalt.ru/ad/ -# ||roem.ru^$object (advblock.txt: 6318) -.roem.ru -# ||rlsnet.ru/images/3dbanner (advblock.txt: 6317) -.rlsnet.ru/images/3dbanner -# ||rlsnet.ru/image_banner_id_ (advblock.txt: 6316) -.rlsnet.ru/image_banner_id_ -# ||riper.am/rekoin.js (advblock.txt: 6315) -.riper.am/rekoin\.js -# ||riper.am/branding/ (advblock.txt: 6314) -.riper.am/branding/ -# ||riotpixels.com/plg/ (advblock.txt: 6313) -.riotpixels.com/plg/ -# ||riotpixels.com/playo (advblock.txt: 6312) -.riotpixels.com/playo -# ||riotpixels.com/i/brand (advblock.txt: 6311) -.riotpixels.com/i/brand -# ||riotpixels.com/i/bg- (advblock.txt: 6310) -.riotpixels.com/i/bg- -# ||riotpixels.com/i/$object (advblock.txt: 6309) -.riotpixels.com/i/ -# ||rin.ru/images/bannerpic/ (advblock.txt: 6308) -.rin.ru/images/bannerpic/ -# ||rin.ru/bodyadv. (advblock.txt: 6307) -.rin.ru/bodyadv\. -# ||rgfootball.net/upload/$image (advblock.txt: 6306) -.rgfootball.net/upload/ -# ||rg.ru/i/bnr/ (advblock.txt: 6305) -.rg.ru/i/bnr/ -# ||rf-cheats.ru/img/$object (advblock.txt: 6304) -.rf-cheats.ru/img/ -# ||restoclub.ru/pic/iblocks/ (advblock.txt: 6302) -.restoclub.ru/pic/iblocks/ -# ||ren.tv/sites/default/files/*_banner_ (advblock.txt: 6301) -.ren.tv/sites/default/files/.*_banner_ -# ||remoteshaman.com^*/gcheck.js (advblock.txt: 6300) -.remoteshaman.com/.*/gcheck\.js -# ||relinka.net/banner (advblock.txt: 6299) -.relinka.net/banner -# ||rekportal.ru/wp-content/uploads/$object (advblock.txt: 6298) -.rekportal.ru/wp-content/uploads/ -# ||reibert.info/images/ (advblock.txt: 6296) -.reibert.info/images/ -# ||regnum.ru^*/bn/ (advblock.txt: 6295) -.regnum.ru/.*/bn/ -# ||recetascomidas.com/base/banner_ (advblock.txt: 6294) -.recetascomidas.com/base/banner_ -# ||realcoding.net/foto/*.gif (advblock.txt: 6293) -.realcoding.net/foto/.*\.gif -# ||readovka.ru/images/ (advblock.txt: 6292) -.readovka.ru/images/ -# ||rd-forum.ru^$object (advblock.txt: 6291) -.rd-forum.ru -# ||rapidzona.tv^*.php| (advblock.txt: 6290) -.rapidzona.tv/.*\.php$ -# ||rapidzona.com/*_200x400_ (advblock.txt: 6289) -.rapidzona.com/.*_200x400_ -# ||rap-text.ru/templates/raptext/images/banner (advblock.txt: 6288) -.rap-text.ru/templates/raptext/images/banner -# ||raketa-tv.com/banner_ (advblock.txt: 6287) -.raketa-tv.com/banner_ -# ||radiorecord.ru/baners_ (advblock.txt: 6286) -.radiorecord.ru/baners_ -# ||rada.com.ua/images/bs/ (advblock.txt: 6285) -.rada.com.ua/images/bs/ -# ||r.e1.ru/images/ (advblock.txt: 6283) -.r.e1.ru/images/ -# ||qvaga.pronpic.org^ (advblock.txt: 6282) -.qvaga.pronpic.org -# ||qip.ru/i/$third-party,object (advblock.txt: 6281) -.qip.ru/i/ -# ||puma.planeta51.com^ (advblock.txt: 6280) -.puma.planeta51.com -# ||psywarez.com/banner/ (advblock.txt: 6279) -.psywarez.com/banner/ -# ||pslan.*/banera/ (advblock.txt: 6278) -.pslan.*./(.*/)?banera/ -# ||pskovlive.ru/b/ (advblock.txt: 6277) -.pskovlive.ru/b/ -# ||ps3hits.ru/wp-content/themes/custom-community/images/ (advblock.txt: 6276) -.ps3hits.ru/wp-content/themes/custom-community/images/ -# ||ps3club.ru/bans/ (advblock.txt: 6275) -.ps3club.ru/bans/ -# ||proxyweb.net/js/dhtmlwindow.js (advblock.txt: 6274) -.proxyweb.net/js/dhtmlwindow\.js -# ||proufu.ru/upload/rk/ (advblock.txt: 6273) -.proufu.ru/upload/rk/ -# ||prostoporno.net/br_ (advblock.txt: 6272) -.prostoporno.net/br_ -# ||prostopleer.com/t.php? (advblock.txt: 6271) -.prostopleer.com/t\.php\? -# ||prophotos.ru/data/brandings/ (advblock.txt: 6270) -.prophotos.ru/data/brandings/ -# ||pronpix.ru/*under.js (advblock.txt: 6269) -.pronpix.ru/.*under\.js -# ||promodj.com/legacy/i/branding/ (advblock.txt: 6268) -.promodj.com/legacy/i/branding/ -# ||promodj.com/brandings/ (advblock.txt: 6267) -.promodj.com/brandings/ -# ||promodeejay.net/branding/ (advblock.txt: 6266) -.promodeejay.net/branding/ -# ||prom.x-lime.net^ (advblock.txt: 6265) -.prom.x-lime.net -# ||prologic.su/b/ (advblock.txt: 6264) -.prologic.su/b/ -# ||prokazan.ru/manager/BannerSystem.php? (advblock.txt: 6263) -.prokazan.ru/manager/BannerSystem\.php\? -# ||programmersforum.ru^$object (advblock.txt: 6262) -.programmersforum.ru -# ||proelectro.ru/files/$object (advblock.txt: 6261) -.proelectro.ru/files/ -# ||prodota.ru/uploads/flags/Ads/ (advblock.txt: 6260) -.prodota.ru/uploads/flags/Ads/ -# ||prodota.ru/templates/vulkan/ (advblock.txt: 6259) -.prodota.ru/templates/vulkan/ -# ||prodota.ru/templates/images/brending (advblock.txt: 6258) -.prodota.ru/templates/images/brending -# ||pro100news.info/wp-content/uploads/$object (advblock.txt: 6257) -.pro100news.info/wp-content/uploads/ -# ||prisnilos.su/static/underbanner/ (advblock.txt: 6256) -.prisnilos.su/static/underbanner/ -# ||priorovod.ru/button/$object (advblock.txt: 6255) -.priorovod.ru/button/ -# ||prikols.com.ru/eroru/ (advblock.txt: 6254) -.prikols.com.ru/eroru/ -# ||prestige-gaming.ru/styles/hestia/theme/images/$object (advblock.txt: 6253) -.prestige-gaming.ru/styles/hestia/theme/images/ -# ||pravdapskov.ru/upload/b/ (advblock.txt: 6252) -.pravdapskov.ru/upload/b/ -# ||pozdrav.ru/url/*.vfl.ru (advblock.txt: 6250) -.pozdrav.ru/url/.*\.vfl\.ru -# ||pozdrav.ru/img/banners/ (advblock.txt: 6249) -.pozdrav.ru/img/banners/ -# ||povarenok.ru/bn/ (advblock.txt: 6248) -.povarenok.ru/bn/ -# ||povarenok.ru/banners_new/ (advblock.txt: 6247) -.povarenok.ru/banners_new/ -# ||poufe.ru/promo/ (advblock.txt: 6246) -.poufe.ru/promo/ -# ||post-tracker.ru/aimages/ (advblock.txt: 6245) -.post-tracker.ru/aimages/ -# ||pornolab.net/004/ (advblock.txt: 6244) -.pornolab.net/004/ -# ||porno-monster.ru/images/sex-shop/ (advblock.txt: 6243) -.porno-monster.ru/images/sex-shop/ -# ||pornk.org/js/a/ (advblock.txt: 6242) -.pornk.org/js/a/ -# ||popup.relinka.net^ (advblock.txt: 6241) -.popup.relinka.net -# ||poltavaforum.com/banner/ (advblock.txt: 6240) -.poltavaforum.com/banner/ -# ||poltavaforum.com/01/ (advblock.txt: 6239) -.poltavaforum.com/01/ -# ||politobzor.net/bg/ (advblock.txt: 6238) -.politobzor.net/bg/ -# ||politland.ru/jss/12fef6.js (advblock.txt: 6237) -.politland.ru/jss/12fef6\.js -# ||pogoda.by/promo (advblock.txt: 6236) -.pogoda.by/promo -# ||pn.com.ua^*/pnimages/banners/ (advblock.txt: 6235) -.pn.com.ua/.*/pnimages/banners/ -# ||playground.ru/download/bg$image (advblock.txt: 6234) -.playground.ru/download/bg -# ||play.aniland.org^*.swf^$object-subrequest (advblock.txt: 6233) -.play.aniland.org/.*\.swf[^\w%.-] -# ||platon.kz^$object (advblock.txt: 6232) -.platon.kz -# ||platimzafoto.ru/file.js (advblock.txt: 6231) -.platimzafoto.ru/file\.js -# ||planetaua.net/uploads/clck.js (advblock.txt: 6230) -.planetaua.net/uploads/clck\.js -# ||pixelbrush.ru/pixelbrand$image (advblock.txt: 6225) -.pixelbrush.ru/pixelbrand -# ||pix-x.net/ban (advblock.txt: 6224) -.pix-x.net/ban -# ||piterhunt.ru/sponsor/banner/ (advblock.txt: 6223) -.piterhunt.ru/sponsor/banner/ -# ||pise4ka.com/js/*.js| (advblock.txt: 6222) -.pise4ka.com/js/.*\.js$ -# ||piratski.ru/*_banner. (advblock.txt: 6221) -.piratski.ru/.*_banner\. -# ||pirat.ca/images/posters/ (advblock.txt: 6220) -.pirat.ca/images/posters/ -# ||pipec.ru/js/ (advblock.txt: 6219) -.pipec.ru/js/ -# ||ping-admin.ru/i/b/ (advblock.txt: 6218) -.ping-admin.ru/i/b/ -# ||pikabu.ru/images/test/ (advblock.txt: 6217) -.pikabu.ru/images/test/ -# ||pikabu.ru/4test/ad/ (advblock.txt: 6216) -.pikabu.ru/4test/ad/ -# ||pics-money.ru/picsmoneyclick.js (advblock.txt: 6214) -.pics-money.ru/picsmoneyclick\.js -# ||pics-money.ru/img/$script (advblock.txt: 6213) -.pics-money.ru/img/ -# ||piccash.net/tpl/images/ (advblock.txt: 6212) -.piccash.net/tpl/images/ -# ||pic4pay.com/rt/ (advblock.txt: 6211) -.pic4pay.com/rt/ -# ||pic2profit.com/ppb.php?id= (advblock.txt: 6210) -.pic2profit.com/ppb\.php\?id= -# ||pic2profit.com/img/putanap/ (advblock.txt: 6209) -.pic2profit.com/img/putanap/ -# ||pi-c.ru^*/code.js| (advblock.txt: 6208) -.pi-c.ru/.*/code\.js$ -# ||photodoska.ru/content/banners/ (advblock.txt: 6206) -.photodoska.ru/content/banners/ -# ||petrogazeta.ru/media//set/ (advblock.txt: 6205) -.petrogazeta.ru/media//set/ -# ||pctuner.ru/plugins/bworks/files/ (advblock.txt: 6204) -.pctuner.ru/plugins/bworks/files/ -# ||patria.md/i/partners/ (advblock.txt: 6203) -.patria.md/i/partners/ -# ||para.by/banners/ (advblock.txt: 6202) -.para.by/banners/ -# ||paparazzi.ru/i/personas.css? (advblock.txt: 6201) -.paparazzi.ru/i/personas\.css\? -# ||panicnews.ru^$subdocument (advblock.txt: 6200) -.panicnews.ru -# ||panicnews.ru/r.php?l= (advblock.txt: 6199) -.panicnews.ru/r\.php\?l= -# ||panicnews.ru/js/popup.js (advblock.txt: 6198) -.panicnews.ru/js/popup\.js -# ||p-p.com.ua/-/uploads/media/000/ (advblock.txt: 6197) -.p-p.com.ua/-/uploads/media/000/ -# ||ozon.ru/graphics/img_ban/ (advblock.txt: 6196) -.ozon.ru/graphics/img_ban/ -# ||ozon.ru/graphics/img/ (advblock.txt: 6195) -.ozon.ru/graphics/img/ -# ||oyye.bhf.su (advblock.txt: 6194) -.oyye.bhf.su*. -# ||oyy.l2anons.ws^ (advblock.txt: 6193) -.oyy.l2anons.ws -# ||overclockers.ru/images/*_brand. (advblock.txt: 6192) -.overclockers.ru/images/.*_brand\. -# ||overclockers.ru/images/$object (advblock.txt: 6191) -.overclockers.ru/images/ -# ||otido.com.ua/banner_/ (advblock.txt: 6190) -.otido.com.ua/banner_/ -# ||oszone.net/ibm.html (advblock.txt: 6189) -.oszone.net/ibm\.html -# ||osvete.ru/files/$object (advblock.txt: 6188) -.osvete.ru/files/ -# ||osadovod.ru^*/banners/ (advblock.txt: 6187) -.osadovod.ru/.*/banners/ -# ||orsk.ru/images/bnz/ (advblock.txt: 6186) -.orsk.ru/images/bnz/ -# ||oper.ru/data/images/ (advblock.txt: 6184) -.oper.ru/data/images/ -# ||opentorrent.ru/images/banner/ (advblock.txt: 6183) -.opentorrent.ru/images/banner/ -# ||opensharing.org^$object (advblock.txt: 6182) -.opensharing.org -# ||opennet.ru^*/hints.cgi? (advblock.txt: 6181) -.opennet.ru/.*/hints\.cgi\? -# ||opennet.ru/adv_ (advblock.txt: 6180) -.opennet.ru/adv_ -# ||onlinefilmx.org/br_mc/ (advblock.txt: 6178) -.onlinefilmx.org/br_mc/ -# ||onlinedisk.ru/bban/banner/ (advblock.txt: 6177) -.onlinedisk.ru/bban/banner/ -# ||online.ua/teletrade (advblock.txt: 6176) -.online.ua/teletrade -# ||online.ua/onlineua%20240_30.gif (advblock.txt: 6175) -.online.ua/onlineua%20240_30\.gif -# ||online.multilex.ru^*banner (advblock.txt: 6173) -.online.multilex.ru/.*banner -# ||onlainfilm.ucoz.ua/swf/ (advblock.txt: 6172) -.onlainfilm.ucoz.ua/swf/ -# ||ongab.ru^*/img/ban/ (advblock.txt: 6171) -.ongab.ru/.*/img/ban/ -# ||onedivision.ru/images/branding. (advblock.txt: 6170) -.onedivision.ru/images/branding\. -# ||onboardvideo.com.ua/images/adban/ (advblock.txt: 6169) -.onboardvideo.com.ua/images/adban/ -# ||omskmama.ru^*/images/$object (advblock.txt: 6168) -.omskmama.ru/.*/images/ -# ||omskinform.ru/keys/ (advblock.txt: 6167) -.omskinform.ru/keys/ -# ||ololo.fm/banners/ (advblock.txt: 6166) -.ololo.fm/banners/ -# ||olegon.ru/r/ (advblock.txt: 6165) -.olegon.ru/r/ -# ||oldgames.ru/netcat_files/Image/$object (advblock.txt: 6164) -.oldgames.ru/netcat_files/Image/ -# ||old-games.ru/img/b/ (advblock.txt: 6163) -.old-games.ru/img/b/ -# ||odessa-daily.com.ua/images/stories/banners/ (advblock.txt: 6162) -.odessa-daily.com.ua/images/stories/banners/ -# ||oclab.ru/flash/ (advblock.txt: 6161) -.oclab.ru/flash/ -# ||obnimau.ru/img-ba/ (advblock.txt: 6160) -.obnimau.ru/img-ba/ -# ||objectiv.tv/templates/$object (advblock.txt: 6159) -.objectiv.tv/templates/ -# ||nya.sh/imgs/a/ (advblock.txt: 6158) -.nya.sh/imgs/a/ -# ||nv.ua/pub/banners/ (advblock.txt: 6157) -.nv.ua/pub/banners/ -# ||nude-moon.com/includes/2un.js (advblock.txt: 6156) -.nude-moon.com/includes/2un\.js -# ||nude-moon.com/cdn-cgi/pe/bag2?r[]=http (advblock.txt: 6155) -.nude-moon.com/cdn-cgi/pe/bag2\?r\[\]=http -# ||nr2.ru/pict/banners/ (advblock.txt: 6154) -.nr2.ru/pict/banners/ -# ||nowfilms.ru^*/kazino/ (advblock.txt: 6153) -.nowfilms.ru/.*/kazino/ -# ||nowa.cc/download/ (advblock.txt: 6152) -.nowa.cc/download/ -# ||now.ru^*/promo/ (advblock.txt: 6151) -.now.ru/.*/promo/ -# ||now.ru/branding/ (advblock.txt: 6150) -.now.ru/branding/ -# ||novostiua.net/mang*.swf (advblock.txt: 6149) -.novostiua.net/mang.*\.swf -# ||novostimira.*?v=$script (advblock.txt: 6148) -.novostimira.*./.*\?v= -# ||novosti.dn.ua/ad/ (advblock.txt: 6147) -.novosti.dn.ua/ad/ -# ||novorus.info/banner/ (advblock.txt: 6146) -.novorus.info/banner/ -# ||novayagazeta.ru/storage/banner (advblock.txt: 6145) -.novayagazeta.ru/storage/banner -# ||notebook-center.ru^$object (advblock.txt: 6144) -.notebook-center.ru -# ||notebook-center.ru/market/ (advblock.txt: 6143) -.notebook-center.ru/market/ -# ||nord-news.ru/img/all/ (advblock.txt: 6142) -.nord-news.ru/img/all/ -# ||noob-club.ru^$object (advblock.txt: 6141) -.noob-club.ru -# ||noob-club.ru/js/ (advblock.txt: 6140) -.noob-club.ru/js/ -# ||nntt.org/a/files/ (advblock.txt: 6138) -.nntt.org/a/files/ -# ||nnportal.org/portal/core/i/ (advblock.txt: 6137) -.nnportal.org/portal/core/i/ -# ||nnportal.org/nntt/$object (advblock.txt: 6136) -.nnportal.org/nntt/ -# ||nnover.ru/hints/show/ (advblock.txt: 6135) -.nnover.ru/hints/show/ -# ||nnm.me/i/a/ (advblock.txt: 6134) -.nnm.me/i/a/ -# ||nn.by/photos/banners/ (advblock.txt: 6133) -.nn.by/photos/banners/ -# ||nn.by/photos/$object (advblock.txt: 6132) -.nn.by/photos/ -# ||nn.by/images/$object (advblock.txt: 6131) -.nn.by/images/ -# ||nirvana.fm/pic/kartinki/ (advblock.txt: 6130) -.nirvana.fm/pic/kartinki/ -# ||nirvana.fm/banners/ (advblock.txt: 6129) -.nirvana.fm/banners/ -# ||ng.by/bimages/$object (advblock.txt: 6128) -.ng.by/bimages/ -# ||newsland.com/public/img/branding/ (advblock.txt: 6127) -.newsland.com/public/img/branding/ -# ||newsland.*/public/img/viardo. (advblock.txt: 6126) -.newsland.*./(.*/)?public/img/viardo\. -# ||newslab.ru/b/ (advblock.txt: 6125) -.newslab.ru/b/ -# ||newserials.net/ranetka.js (advblock.txt: 6124) -.newserials.net/ranetka\.js -# ||new-sebastopol.com/resources/$object (advblock.txt: 6123) -.new-sebastopol.com/resources/ -# ||new-kino.net/ReklDC/ (advblock.txt: 6122) -.new-kino.net/ReklDC/ -# ||nesekretno.ru/images/uploaded/banner/ (advblock.txt: 6121) -.nesekretno.ru/images/uploaded/banner/ -# ||neosmi.ru/js/*_klik. (advblock.txt: 6120) -.neosmi.ru/js/.*_klik\. -# ||nemezisworld.com^*.php| (advblock.txt: 6119) -.nemezisworld.com/.*\.php$ -# ||needforvid.com/images/$object (advblock.txt: 6118) -.needforvid.com/images/ -# ||nashgorod.ru/b/ (advblock.txt: 6117) -.nashgorod.ru/b/ -# ||narutoplanet.ru/swf/ (advblock.txt: 6116) -.narutoplanet.ru/swf/ -# ||narutoplanet.ru/slider/ (advblock.txt: 6115) -.narutoplanet.ru/slider/ -# ||narodclub.net/clk111.js (advblock.txt: 6114) -.narodclub.net/clk111\.js -# ||nadavi.*/gb.php?idb_= (advblock.txt: 6113) -.nadavi.*./(.*/)?gb\.php\?idb_= -# ||mywed.ru/bnr/ (advblock.txt: 6112) -.mywed.ru/bnr/ -# ||myvi.ru/content/images/background/ (advblock.txt: 6111) -.myvi.ru/content/images/background/ -# ||mysw.info/ext/ (advblock.txt: 6110) -.mysw.info/ext/ -# ||myshared.ru/advaction/ (advblock.txt: 6109) -.myshared.ru/advaction/ -# ||myserial.org/a-detector/ (advblock.txt: 6108) -.myserial.org/a-detector/ -# ||my-hit.org/background/ (advblock.txt: 6107) -.my-hit.org/background/ -# ||my-cinema.net/branding/ (advblock.txt: 6106) -.my-cinema.net/branding/ -# ||muzofon.com/bg/ (advblock.txt: 6105) -.muzofon.com/bg/ -# ||muzofon.com/banner/ (advblock.txt: 6104) -.muzofon.com/banner/ -# ||muzoff.ru/rek/ (advblock.txt: 6103) -.muzoff.ru/rek/ -# ||muzoff.ru/html/ (advblock.txt: 6102) -.muzoff.ru/html/ -# ||muzico.ru//banners/ (advblock.txt: 6101) -# ||muzebra.com^*-240x400. (advblock.txt: 6100) -.muzebra.com/.*-240x400\. -# ||musictube.ru/flash/ (advblock.txt: 6099) -.musictube.ru/flash/ -# ||musicforums.ru/pictures/casio_ (advblock.txt: 6098) -.musicforums.ru/pictures/casio_ -# ||musicforums.ru/*/knopki/ (advblock.txt: 6097) -.musicforums.ru/.*/knopki/ -# ||multmer.org^$object (advblock.txt: 6096) -.multmer.org -# ||multikonline.ru/rekl.js (advblock.txt: 6095) -.multikonline.ru/rekl\.js -# ||multik-online.net/trotator/ (advblock.txt: 6094) -.multik-online.net/trotator/ -# ||mskd.ru/img/*x*_ (advblock.txt: 6093) -.mskd.ru/img/.*x.*_ -# ||mptron.com/img/ (advblock.txt: 6092) -.mptron.com/img/ -# ||mp3rington.ru/adv_ (advblock.txt: 6091) -.mp3rington.ru/adv_ -# ||moyareklama.ru/common/images/$object (advblock.txt: 6090) -.moyareklama.ru/common/images/ -# ||motoua.net/i/$subdocument (advblock.txt: 6089) -.motoua.net/i/ -# ||motorshop.kz/images/$object (advblock.txt: 6088) -.motorshop.kz/images/ -# ||motonews.ru/ad/ (advblock.txt: 6087) -.motonews.ru/ad/ -# ||moto.kiev.ua/forum/banners/ (advblock.txt: 6086) -.moto.kiev.ua/forum/banners/ -# ||moskva.fm^*/promo/ (advblock.txt: 6084) -.moskva.fm/.*/promo/ -# ||moresofta.com/js/0dd270.js (advblock.txt: 6083) -.moresofta.com/js/0dd270\.js -# ||mondeoeffect.rambler.ru^ (advblock.txt: 6081) -.mondeoeffect.rambler.ru -# ||molodejj.tv^*/branding/$~image (advblock.txt: 6080) -.molodejj.tv/.*/branding/ -# ||molodejj.tv/other/ (advblock.txt: 6079) -.molodejj.tv/other/ -# ||moevideo.net/img/promo/ (advblock.txt: 6078) -.moevideo.net/img/promo/ -# ||moevideo.net/getit/ (advblock.txt: 6077) -.moevideo.net/getit/ -# ||moevideo.net/branding/ (advblock.txt: 6075) -.moevideo.net/branding/ -# ||moevideo.net/apv/ (advblock.txt: 6074) -.moevideo.net/apv/ -# ||mobiledevice.ru/banner_ (advblock.txt: 6073) -.mobiledevice.ru/banner_ -# ||mobile-review.com/events/*/ad/ (advblock.txt: 6072) -.mobile-review.com/events/.*/ad/ -# ||mobile-files.ru^$object (advblock.txt: 6071) -.mobile-files.ru -# ||mobile-files.ru/r/ (advblock.txt: 6070) -.mobile-files.ru/r/ -# ||mobbit.info/r/ (advblock.txt: 6069) -.mobbit.info/r/ -# ||mob39.ru/jabox_img/banner/ (advblock.txt: 6068) -.mob39.ru/jabox_img/banner/ -# ||mmotop.ru^*.js?rnd= (advblock.txt: 6067) -.mmotop.ru/.*\.js\?rnd= -# ||mmoru.com/board/clientscript/css1.js (advblock.txt: 6066) -.mmoru.com/board/clientscript/css1\.js -# ||mmoru.com/ads/ (advblock.txt: 6065) -.mmoru.com/ads/ -# ||mmorpg.ua/images/banners/ (advblock.txt: 6064) -.mmorpg.ua/images/banners/ -# ||mmorpg.ua/images/background. (advblock.txt: 6063) -.mmorpg.ua/images/background\. -# ||mmorpg.su/userdata/background/ (advblock.txt: 6062) -.mmorpg.su/userdata/background/ -# ||mmohelper.ru^$object (advblock.txt: 6061) -.mmohelper.ru -# ||mmohelper.ru/wp-content/uploads/adv- (advblock.txt: 6060) -.mmohelper.ru/wp-content/uploads/adv- -# ||mmogamez.ru/safa/ (advblock.txt: 6059) -.mmogamez.ru/safa/ -# ||mmogamez.ru/assets/templates/Standart/images/mmogamez. (advblock.txt: 6058) -.mmogamez.ru/assets/templates/Standart/images/mmogamez\. -# ||mmogamez.ru/asda/ (advblock.txt: 6057) -.mmogamez.ru/asda/ -# ||mmogamez.info^*/pagebgtop. (advblock.txt: 6056) -.mmogamez.info/.*/pagebgtop\. -# ||mlfun.org.ua/mlbanners/ (advblock.txt: 6055) -.mlfun.org.ua/mlbanners/ -# ||mk.ru/i/brand/ (advblock.txt: 6054) -.mk.ru/i/brand/ -# ||minizal.net/js/brandminizal.js (advblock.txt: 6053) -.minizal.net/js/brandminizal\.js -# ||mibius.com.ua/banner (advblock.txt: 6052) -.mibius.com.ua/banner -# ||meteoprog.ua/pictures/banners/ (advblock.txt: 6051) -.meteoprog.ua/pictures/banners/ -# ||meteo.ua/var/slando/ (advblock.txt: 6050) -.meteo.ua/var/slando/ -# ||meteo.ua/var/aukro/ (advblock.txt: 6049) -.meteo.ua/var/aukro/ -# ||metamarket.com.ua^$third-party (advblock.txt: 6048) -.metamarket.com.ua -# ||metallurg-nk.ru/img/banners/ (advblock.txt: 6047) -.metallurg-nk.ru/img/banners/ -# ||meta.ua/img/banners/ (advblock.txt: 6046) -.meta.ua/img/banners/ -# ||meta.ua/img/b/ (advblock.txt: 6045) -.meta.ua/img/b/ -# ||meta.ua/f_new.asp? (advblock.txt: 6044) -.meta.ua/f_new\.asp\? -# ||meta.ua/f_new.*_teaser& (advblock.txt: 6043) -.meta.ua/f_new\..*_teaser& -# ||mercatos.net/banner/ (advblock.txt: 6042) -.mercatos.net/banner/ -# ||melt.ru/images/cms/_*0*_/ (advblock.txt: 6041) -.melt.ru/images/cms/_.*0.*_/ -# ||megatorrents.*/forum/$object (advblock.txt: 6039) -.megatorrents.*./(.*/)?forum/ -# ||megashara.com^*_branding/ (advblock.txt: 6038) -.megashara.com/.*_branding/ -# ||megashara.com^*/branding/ (advblock.txt: 6037) -.megashara.com/.*/branding/ -# ||megashara.com^*/br_mc/ (advblock.txt: 6036) -.megashara.com/.*/br_mc/ -# ||megaimg.ru/clixundex.js (advblock.txt: 6035) -.megaimg.ru/clixundex\.js -# ||megafon.ru/f/banner/ (advblock.txt: 6034) -.megafon.ru/f/banner/ -# ||mega-tracker.net/templates/megatracker/bg/ (advblock.txt: 6033) -.mega-tracker.net/templates/megatracker/bg/ -# ||mega-porno.ru/images/promo/ (advblock.txt: 6032) -.mega-porno.ru/images/promo/ -# ||mega-pics-money.ru/Megapicsmoneyclick.js (advblock.txt: 6031) -.mega-pics-money.ru/Megapicsmoneyclick\.js -# ||medvestnik.by/bimages/ (advblock.txt: 6030) -.medvestnik.by/bimages/ -# ||medprom.ru/pictures/*/bpic. (advblock.txt: 6029) -.medprom.ru/pictures/.*/bpic\. -# ||medlux.com.ua^$object (advblock.txt: 6028) -.medlux.com.ua -# ||medkrug.ru/web/flash/reg. (advblock.txt: 6027) -.medkrug.ru/web/flash/reg\. -# ||medikforum.ru/news/banners/ (advblock.txt: 6026) -.medikforum.ru/news/banners/ -# ||mediaua.com.ua/bnr/ (advblock.txt: 6025) -.mediaua.com.ua/bnr/ -# ||mebelminsk.by/assets/images/swf/ (advblock.txt: 6024) -.mebelminsk.by/assets/images/swf/ -# ||mebelminsk.by/assets/images/adw/ (advblock.txt: 6023) -.mebelminsk.by/assets/images/adw/ -# ||maxpark.com/static/img/branding/ (advblock.txt: 6022) -.maxpark.com/static/img/branding/ -# ||maxk2.ru/lady (advblock.txt: 6021) -.maxk2.ru/lady -# ||maultalk.com/images/mon/ (advblock.txt: 6020) -.maultalk.com/images/mon/ -# ||master.cn.ua/_images/banners/ (advblock.txt: 6019) -.master.cn.ua/_images/banners/ -# ||map.cn.ua/media/promo/ (advblock.txt: 6018) -.map.cn.ua/media/promo/ -# ||map.cn.ua/media/other/ (advblock.txt: 6017) -.map.cn.ua/media/other/ -# ||manyclips.net^*.php?id= (advblock.txt: 6016) -.manyclips.net/.*\.php\?id= -# ||mama.kharkov.ua/uploads/*banner (advblock.txt: 6015) -.mama.kharkov.ua/uploads/.*banner -# ||magcity74.ru/uploads/banner/ (advblock.txt: 6014) -.magcity74.ru/uploads/banner/ -# ||mac-torrent-download.net/adc- (advblock.txt: 6013) -.mac-torrent-download.net/adc- -# ||luxtorrents.com/pic/branding- (advblock.txt: 6012) -.luxtorrents.com/pic/branding- -# ||lurkmore.to/*/?*=left$xmlhttprequest (advblock.txt: 6011) -.lurkmore.to/.*/\?.*=left -# ||lurkmo.re/*/?*=left$xmlhttprequest (advblock.txt: 6010) -.lurkmo.re/.*/\?.*=left -# ||lovekinozal.ru^$object (advblock.txt: 6008) -.lovekinozal.ru -# ||lovekinozal.ru/brand/ (advblock.txt: 6007) -.lovekinozal.ru/brand/ -# ||lokomotiv.info/img/rotator/ (advblock.txt: 6006) -.lokomotiv.info/img/rotator/ -# ||logger.ivi.ru^ (advblock.txt: 6005) -.logger.ivi.ru -# ||logan.ru/images/banner/ (advblock.txt: 6004) -.logan.ru/images/banner/ -# ||lkforum.ru/button/ (advblock.txt: 6003) -.lkforum.ru/button/ -# ||livesport.ws/templates/livesport/*livesport (advblock.txt: 6002) -.livesport.ws/templates/livesport/.*livesport -# ||livelib.ru/side| (advblock.txt: 6001) -.livelib.ru/side$ -# ||livelib.ru/img/skins/ozon/ (advblock.txt: 6000) -.livelib.ru/img/skins/ozon/ -# ||livelib.ru/240x400. (advblock.txt: 5999) -.livelib.ru/240x400\. -# ||livelib.ru/*0x*.htm|$subdocument (advblock.txt: 5998) -.livelib.ru/.*0x.*\.htm$ -# ||livejournal.ru/i/reskining/ (advblock.txt: 5997) -.livejournal.ru/i/reskining/ -# ||livejournal.com/services/scrollbanner.bml? (advblock.txt: 5996) -.livejournal.com/services/scrollbanner\.bml\? -# ||livejournal.com/img/reskining/ (advblock.txt: 5995) -.livejournal.com/img/reskining/ -# ||liveinternet.ru/ad/ (advblock.txt: 5994) -.liveinternet.ru/ad/ -# ||livefootball.ws^$object (advblock.txt: 5993) -.livefootball.ws -# ||liveangarsk.ru/files/k (advblock.txt: 5992) -.liveangarsk.ru/files/k -# ||liveangarsk.ru/files/$object (advblock.txt: 5991) -.liveangarsk.ru/files/ -# ||live4.ru/banner_images/ (advblock.txt: 5990) -.live4.ru/banner_images/ -# ||link.ac/images/banner_ (advblock.txt: 5989) -.link.ac/images/banner_ -# ||lifehacker.ru/promo/ (advblock.txt: 5988) -.lifehacker.ru/promo/ -# ||lib.rus.ec/sites/default/files/$object (advblock.txt: 5987) -.lib.rus.ec/sites/default/files/ -# ||lib.rus.ec/ads/ (advblock.txt: 5986) -.lib.rus.ec/ads/ -# ||leporno.org/ttnet/ (advblock.txt: 5985) -.leporno.org/ttnet/ -# ||leporno.org/rt (advblock.txt: 5984) -.leporno.org/rt -# ||leporno.org/js/ (advblock.txt: 5983) -.leporno.org/js/ -# ||lectro.ru^*-pop-under- (advblock.txt: 5982) -.lectro.ru/.*-pop-under- -# ||lastusja.ru/friends/ (advblock.txt: 5981) -.lastusja.ru/friends/ -# ||lanzone.info/rek/ (advblock.txt: 5980) -.lanzone.info/rek/ -# ||ladyline.com.ua/images/banner (advblock.txt: 5979) -.ladyline.com.ua/images/banner -# ||lada-granta.net/button/ (advblock.txt: 5978) -.lada-granta.net/button/ -# ||lacucinaitaliana.ru/images/ (advblock.txt: 5977) -.lacucinaitaliana.ru/images/ -# ||l2on.net/img/friends/ (advblock.txt: 5976) -.l2on.net/img/friends/ -# ||kurufin.ru/mayk_ (advblock.txt: 5975) -.kurufin.ru/mayk_ -# ||kurs.com.ua/static/banner/ (advblock.txt: 5974) -.kurs.com.ua/static/banner/ -# ||kulina.ru/swf/ (advblock.txt: 5973) -.kulina.ru/swf/ -# ||kulina.ru/bn/ (advblock.txt: 5972) -.kulina.ru/bn/ -# ||kulichki.net/buttons/ (advblock.txt: 5971) -.kulichki.net/buttons/ -# ||kukuzya.ru/bnrs/ (advblock.txt: 5970) -.kukuzya.ru/bnrs/ -# ||kubez.biz/banners/ (advblock.txt: 5969) -.kubez.biz/banners/ -# ||kset.kz/vda (advblock.txt: 5968) -.kset.kz/vda -# ||kronverkcinema.ru/sadm_files/banners/ (advblock.txt: 5967) -.kronverkcinema.ru/sadm_files/banners/ -# ||krisha.kz^*/br/ (advblock.txt: 5966) -.krisha.kz/.*/br/ -# ||krasview.ru/content/stargate/ (advblock.txt: 5965) -.krasview.ru/content/stargate/ -# ||kpcdn.net^*/banner_img/ (advblock.txt: 5964) -.kpcdn.net/.*/banner_img/ -# ||kozhuhovo.com/!images/banners/ (advblock.txt: 5963) -.kozhuhovo.com/!images/banners/ -# ||koob.ru/cache/ (advblock.txt: 5962) -.koob.ru/cache/ -# ||koob.ru/*_reklama. (advblock.txt: 5961) -.koob.ru/.*_reklama\. -# ||komcity.ru^*.swf (advblock.txt: 5959) -.komcity.ru/.*\.swf -# ||komcity.ru/adver/ (advblock.txt: 5958) -.komcity.ru/adver/ -# ||kolyan.net/*_brand (advblock.txt: 5957) -.kolyan.net/.*_brand -# ||klukva.org/bann/ (advblock.txt: 5956) -.klukva.org/bann/ -# ||klops.ru/assets/sales_widget- (advblock.txt: 5955) -.klops.ru/assets/sales_widget- -# ||klerk.ru^*/banners/ (advblock.txt: 5954) -.klerk.ru/.*/banners/ -# ||kiwi.kz/bimbo/? (advblock.txt: 5953) -.kiwi.kz/bimbo/\? -# ||kiwi.kz/base/a.js? (advblock.txt: 5952) -.kiwi.kz/base/a\.js\? -# ||kipfilms.ru/blocks/ (advblock.txt: 5951) -.kipfilms.ru/blocks/ -# ||kinoylei.ru/br/ (advblock.txt: 5950) -.kinoylei.ru/br/ -# ||kinotochka.net^*/images/fon.jpg (advblock.txt: 5949) -.kinotochka.net/.*/images/fon\.jpg -# ||kinotochka.net/CM (advblock.txt: 5948) -.kinotochka.net/CM -# ||kinopod.ru/show/ (advblock.txt: 5947) -.kinopod.ru/show/ -# ||kinopod.ru/branding/ (advblock.txt: 5946) -.kinopod.ru/branding/ -# ||kinonews.ru/stuff/ (advblock.txt: 5945) -.kinonews.ru/stuff/ -# ||kinomir.net^$object (advblock.txt: 5944) -.kinomir.net -# ||kinomir.net/file.js (advblock.txt: 5943) -.kinomir.net/file\.js -# ||kinomir.net/counter3.js (advblock.txt: 5942) -.kinomir.net/counter3\.js -# ||kinomania.ru/brand/$stylesheet (advblock.txt: 5941) -.kinomania.ru/brand/ -# ||kinomania.kz/images/bg1.jpg (advblock.txt: 5940) -.kinomania.kz/images/bg1\.jpg -# ||kinogo.net^*/ram/ (advblock.txt: 5939) -.kinogo.net/.*/ram/ -# ||kinogo.net/playlists/ (advblock.txt: 5938) -.kinogo.net/playlists/ -# ||kinogo.net/br/ (advblock.txt: 5937) -.kinogo.net/br/ -# ||kinogo.net/bn.php? (advblock.txt: 5936) -.kinogo.net/bn\.php\? -# ||kinobaza.net/babes/ (advblock.txt: 5935) -.kinobaza.net/babes/ -# ||kinoafisha.ua/upload/*/bgadvs/ (advblock.txt: 5934) -.kinoafisha.ua/upload/.*/bgadvs/ -# ||kinoafisha.info/branding/ (advblock.txt: 5933) -.kinoafisha.info/branding/ -# ||kino-teatr.ru/media/ (advblock.txt: 5932) -.kino-teatr.ru/media/ -# ||kino-teatr.ru/img/*_bkg_ (advblock.txt: 5931) -.kino-teatr.ru/img/.*_bkg_ -# ||kino-portal.net/go/ (advblock.txt: 5930) -.kino-portal.net/go/ -# ||kino-live.org^*/images/1920x (advblock.txt: 5929) -.kino-live.org/.*/images/1920x -# ||kino-govno.com^*/bg.jpg| (advblock.txt: 5928) -.kino-govno.com/.*/bg\.jpg$ -# ||kino-govno.com/sides/ (advblock.txt: 5927) -.kino-govno.com/sides/ -# ||kino-dom.tv/branding_$~stylesheet (advblock.txt: 5926) -.kino-dom.tv/branding_ -# ||kino-cccp.net/images/banner/ (advblock.txt: 5925) -.kino-cccp.net/images/banner/ -# ||kinatvideo.ru^*/default_images/ (advblock.txt: 5924) -.kinatvideo.ru/.*/default_images/ -# ||kinatvideo.ru^*/cityads/ (advblock.txt: 5923) -.kinatvideo.ru/.*/cityads/ -# ||kinatgames.ru/templates/*/cod.jpg (advblock.txt: 5922) -.kinatgames.ru/templates/.*/cod\.jpg -# ||kinatgames.ru/images/flash/ (advblock.txt: 5921) -.kinatgames.ru/images/flash/ -# ||killfilms.ru^*/girls/ (advblock.txt: 5920) -.killfilms.ru/.*/girls/ -# ||kiev-mama.com.ua/assets/banners/ (advblock.txt: 5919) -.kiev-mama.com.ua/assets/banners/ -# ||kg-portal.ru/sides/ (advblock.txt: 5918) -.kg-portal.ru/sides/ -# ||keep4u.ru/r.php? (advblock.txt: 5917) -.keep4u.ru/r\.php\? -# ||keep4u.ru/partners/ (advblock.txt: 5916) -.keep4u.ru/partners/ -# ||kazanfirst.ru/storage/banners/ (advblock.txt: 5915) -.kazanfirst.ru/storage/banners/ -# ||katushka.net/img/banners/ (advblock.txt: 5914) -.katushka.net/img/banners/ -# ||kartinka.in/img/handler.js (advblock.txt: 5913) -.kartinka.in/img/handler\.js -# ||kapriz.info/tiz/ (advblock.txt: 5912) -.kapriz.info/tiz/ -# ||kapriz.info/img/ (advblock.txt: 5911) -.kapriz.info/img/ -# ||kapital-rus.ru/img/*/banners/ (advblock.txt: 5910) -.kapital-rus.ru/img/.*/banners/ -# ||kanobu.ru/advideos/ (advblock.txt: 5909) -.kanobu.ru/advideos/ -# ||kaddr.com^*/Stylus.png (advblock.txt: 5908) -.kaddr.com/.*/Stylus\.png -# ||kaban.tv/kabantv.js (advblock.txt: 5907) -.kaban.tv/kabantv\.js -# ||k.img.com.ua/static/js/fotos_banner.js (advblock.txt: 5906) -.k.img.com.ua/static/js/fotos_banner\.js -# ||k.img.com.ua/static/img/banners/ (advblock.txt: 5905) -.k.img.com.ua/static/img/banners/ -# ||jurnalik.ru/slider.php (advblock.txt: 5904) -.jurnalik.ru/slider\.php -# ||jaymedianetwork.com/get.php?id= (advblock.txt: 5903) -.jaymedianetwork.com/get\.php\?id= -# ||ixbt.com/include/ctx2.js (advblock.txt: 5902) -.ixbt.com/include/ctx2\.js -# ||ixbt.com/img/branding/ (advblock.txt: 5901) -.ixbt.com/img/branding/ -# ||ixbt.com/cgi-bin/r. (advblock.txt: 5900) -.ixbt.com/cgi-bin/r\. -# ||ixbt.com/branding/ (advblock.txt: 5899) -.ixbt.com/branding/ -# ||ixbt.com/banner/ (advblock.txt: 5898) -.ixbt.com/banner/ -# ||ivi.ru/branding/ (advblock.txt: 5897) -.ivi.ru/branding/ -# ||itvcom.ru/images/*sape (advblock.txt: 5896) -.itvcom.ru/images/.*sape -# ||irr.by^*/showcase. (advblock.txt: 5895) -.irr.by/.*/showcase\. -# ||irk.ru/img/*/ibr/ (advblock.txt: 5894) -.irk.ru/img/.*/ibr/ -# ||ipm.ua/bn/g/? (advblock.txt: 5893) -.ipm.ua/bn/g/\? -# ||ipicture.ru/public/images/temp/ (advblock.txt: 5892) -.ipicture.ru/public/images/temp/ -# ||invictory.org/public/banners/ (advblock.txt: 5891) -.invictory.org/public/banners/ -# ||internetsms.org/bundles/ismsfront/img/tks/ (advblock.txt: 5890) -.internetsms.org/bundles/ismsfront/img/tks/ -# ||internethalyava.ru^*/area_banners/ (advblock.txt: 5889) -.internethalyava.ru/.*/area_banners/ -# ||interfax.ru/rcl/ (advblock.txt: 5888) -.interfax.ru/rcl/ -# ||interfax.by/files/$object (advblock.txt: 5887) -.interfax.by/files/ -# ||inspired.com.ua^$object (advblock.txt: 5886) -.inspired.com.ua -# ||insite.su/engine/classes/masha/ (advblock.txt: 5885) -.insite.su/engine/classes/masha/ -# ||insite.su/engine/classes/js/nxtdqdgn.js (advblock.txt: 5884) -.insite.su/engine/classes/js/nxtdqdgn\.js -# ||inmoment.ru/img/$object (advblock.txt: 5883) -.inmoment.ru/img/ -# ||ingos.ru/common/img_ru/banners/ (advblock.txt: 5882) -.ingos.ru/common/img_ru/banners/ -# ||inform.kz/download/ (advblock.txt: 5881) -.inform.kz/download/ -# ||infocar.ua/icstat/branding/ (advblock.txt: 5880) -.infocar.ua/icstat/branding/ -# ||inflora.ru^$object (advblock.txt: 5879) -.inflora.ru -# ||inflora.ru/*banner (advblock.txt: 5878) -.inflora.ru/.*banner -# ||imoneyforum.ru/files/00 (advblock.txt: 5877) -.imoneyforum.ru/files/00 -# ||imhonet.ru/img/dumm/*-promo. (advblock.txt: 5876) -.imhonet.ru/img/dumm/.*-promo\. -# ||imgv.net^*.php?s= (advblock.txt: 5875) -.imgv.net/.*\.php\?s= -# ||imgix.ru/*.js| (advblock.txt: 5874) -.imgix.ru/.*\.js$ -# ||img.bankoboev.ru^ (advblock.txt: 5873) -.img.bankoboev.ru -# ||imageban.ru/cas.js (advblock.txt: 5872) -.imageban.ru/cas\.js -# ||imageban.ru/box/ (advblock.txt: 5871) -.imageban.ru/box/ -# ||im.tagilcity.ru^*?mt= (advblock.txt: 5870) -.im.tagilcity.ru/.*\?mt= -# ||ikinokz.net/ikino.js (advblock.txt: 5869) -.ikinokz.net/ikino\.js -# ||ikinokz.net/bannr.js (advblock.txt: 5868) -.ikinokz.net/bannr\.js -# ||ihead.ru/offers/ (advblock.txt: 5867) -.ihead.ru/offers/ -# ||igry.ru/media/tiz/ (advblock.txt: 5866) -.igry.ru/media/tiz/ -# ||igromania.ru^*_branding_ (advblock.txt: 5865) -.igromania.ru/.*_branding_ -# ||igromania.ru/upload/iblock/*/*attract_wallpaper$image (advblock.txt: 5864) -.igromania.ru/upload/iblock/.*/.*attract_wallpaper -# ||igromania.ru/bitrix/templates/igromania/brands.php (advblock.txt: 5863) -.igromania.ru/bitrix/templates/igromania/brands\.php -# ||igromania.ru/*/banners/ (advblock.txt: 5862) -.igromania.ru/.*/banners/ -# ||idownloads.ru^*/banners/ (advblock.txt: 5861) -.idownloads.ru/.*/banners/ -# ||iccup.com/templates/images/*-iccup.jpg (advblock.txt: 5860) -.iccup.com/templates/images/.*-iccup\.jpg -# ||iccup.com/a/b/ (advblock.txt: 5859) -.iccup.com/a/b/ -# ||ibusiness.ru^*/netlab/style.css? (advblock.txt: 5858) -.ibusiness.ru/.*/netlab/style\.css\? -# ||iarex.ru/insimgs/$object (advblock.txt: 5857) -.iarex.ru/insimgs/ -# ||i.ua^*_brandpage_ (advblock.txt: 5856) -.i.ua/.*_brandpage_ -# ||i-pic.ru/clx_ (advblock.txt: 5855) -.i-pic.ru/clx_ -# ||hyundai-club.com.ua/banner_ (advblock.txt: 5854) -.hyundai-club.com.ua/banner_ -# ||hwp.ru/images/mid/h-anons. (advblock.txt: 5853) -.hwp.ru/images/mid/h-anons\. -# ||hw-lab.com/uploads/adds/ (advblock.txt: 5852) -.hw-lab.com/uploads/adds/ -# ||htmlbook.ru/sites/default/files/$object (advblock.txt: 5851) -.htmlbook.ru/sites/default/files/ -# ||htmlbook.ru/files/$object (advblock.txt: 5850) -.htmlbook.ru/files/ -# ||hqroom.ru/images/ (advblock.txt: 5849) -.hqroom.ru/images/ -# ||hpc.name/images/banner/ (advblock.txt: 5848) -.hpc.name/images/banner/ -# ||how-tos.ru/images/banner (advblock.txt: 5847) -.how-tos.ru/images/banner -# ||hottabych.net^$object (advblock.txt: 5846) -.hottabych.net -# ||hotcharts.ru/img/*_700x150 (advblock.txt: 5845) -.hotcharts.ru/img/.*_700x150 -# ||hostingkartinok.com/images/*_960x100.gif (advblock.txt: 5843) -.hostingkartinok.com/images/.*_960x100\.gif -# ||host.fm/images/pr/ (advblock.txt: 5842) -.host.fm/images/pr/ -# ||horadric.ru^*/images/bg_ (advblock.txt: 5841) -.horadric.ru/.*/images/bg_ -# ||horadric.ru^*-adv-bg- (advblock.txt: 5840) -.horadric.ru/.*-adv-bg- -# ||horadric.ru/styles/*/brand_ (advblock.txt: 5839) -.horadric.ru/styles/.*/brand_ -# ||hm6.ru/banner (advblock.txt: 5838) -.hm6.ru/banner -# ||hideme.ru/images/prx/prx_bnr_ (advblock.txt: 5837) -.hideme.ru/images/prx/prx_bnr_ -# ||hi-fidelity-forum.com/_partners/ (advblock.txt: 5836) -.hi-fidelity-forum.com/_partners/ -# ||hi-fi.ru/bitrix/images/ (advblock.txt: 5835) -.hi-fi.ru/bitrix/images/ -# ||hhcdn.ru^*.banners. (advblock.txt: 5834) -.hhcdn.ru/.*\.banners\. -# ||hhcdn.ru/nposter/ (advblock.txt: 5833) -.hhcdn.ru/nposter/ -# ||hentaichan.ru/r/ (advblock.txt: 5832) -.hentaichan.ru/r/ -# ||hentaichan.ru/async.html?sid= (advblock.txt: 5831) -.hentaichan.ru/async\.html\?sid= -# ||hdtv.ru/resources/$object (advblock.txt: 5830) -.hdtv.ru/resources/ -# ||hdtrailer.ru/images/bg/ (advblock.txt: 5829) -.hdtrailer.ru/images/bg/ -# ||hdserials.tv^$object (advblock.txt: 5828) -.hdserials.tv -# ||hdkinomax.com/reklama-offf.jpg (advblock.txt: 5827) -.hdkinomax.com/reklama-offf\.jpg -# ||hdgo.cc/player/adforce. (advblock.txt: 5826) -.hdgo.cc/player/adforce\. -# ||hdfilms.tv/images/bg/ (advblock.txt: 5825) -.hdfilms.tv/images/bg/ -# ||hdclub.org/mg/ (advblock.txt: 5824) -.hdclub.org/mg/ -# ||hctraktor.org/bi.php?url= (advblock.txt: 5823) -.hctraktor.org/bi\.php\?url= -# ||hctorpedo.ru/files/$object (advblock.txt: 5822) -.hctorpedo.ru/files/ -# ||hacker-pro.net/banner/ (advblock.txt: 5821) -.hacker-pro.net/banner/ -# ||habrahabr.ru^*/htmlblock300/ (advblock.txt: 5820) -.habrahabr.ru/.*/htmlblock300/ -# ||habrahabr.ru/hauusbx/al/habrahabr/ (advblock.txt: 5819) -.habrahabr.ru/hauusbx/al/habrahabr/ -# ||gzt.ru/upload/*.rklite/ (advblock.txt: 5818) -.gzt.ru/upload/.*\.rklite/ -# ||guru.ua/white_menu/$object (advblock.txt: 5817) -.guru.ua/white_menu/ -# ||guns.ru/i/ (advblock.txt: 5816) -.guns.ru/i/ -# ||guitarplayer.ru/b/ (advblock.txt: 5815) -.guitarplayer.ru/b/ -# ||gubkinskiy.com/images/5 (advblock.txt: 5814) -.gubkinskiy.com/images/5 -# ||gubkinskiy.com/images/1 (advblock.txt: 5813) -.gubkinskiy.com/images/1 -# ||gubkinskiy.com/images/$object (advblock.txt: 5812) -.gubkinskiy.com/images/ -# ||gsmforum.ru/images/ownpictures/ (advblock.txt: 5811) -.gsmforum.ru/images/ownpictures/ -# ||gsmbaza.ru/images/ownpictures/ (advblock.txt: 5810) -.gsmbaza.ru/images/ownpictures/ -# ||grani.ru/files/$object (advblock.txt: 5809) -.grani.ru/files/ -# ||gramota.ru/files/ie/ (advblock.txt: 5808) -.gramota.ru/files/ie/ -# ||gotps3.ru/images/a/*.jpg| (advblock.txt: 5806) -.gotps3.ru/images/a/.*\.jpg$ -# ||gotps3.ru/images/a/*.gif| (advblock.txt: 5805) -.gotps3.ru/images/a/.*\.gif$ -# ||gotovim.ru/pics/1/ (advblock.txt: 5804) -.gotovim.ru/pics/1/ -# ||gotovim.ru/incs/ (advblock.txt: 5803) -.gotovim.ru/incs/ -# ||gorodkirov.ru/kaFile?b_id= (advblock.txt: 5802) -.gorodkirov.ru/kaFile\?b_id= -# ||gorod55.ru/data/$object (advblock.txt: 5801) -.gorod55.ru/data/ -# ||gorod.dp.ua/pic/richban/ (advblock.txt: 5800) -.gorod.dp.ua/pic/richban/ -# ||gorod.dp.ua/pic/bm2/ (advblock.txt: 5799) -.gorod.dp.ua/pic/bm2/ -# ||gorod.cn.ua/*/brending/ (advblock.txt: 5798) -.gorod.cn.ua/.*/brending/ -# ||gorod.cn.ua/*/banners/ (advblock.txt: 5797) -.gorod.cn.ua/.*/banners/ -# ||googleusercontent.com/hk/oobRfTyrFtxXAuFWNle3KfDteO/www.5.ua/files/img/bg/*.jpg. (advblock.txt: 5796) -.googleusercontent.com/hk/oobRfTyrFtxXAuFWNle3KfDteO/www\.5\.ua/files/img/bg/.*\.jpg\. -# ||goodgame.ru^*/www/ (advblock.txt: 5795) -.goodgame.ru/.*/www/ -# ||good73.net^$object (advblock.txt: 5794) -.good73.net -# ||golovne.net^$object (advblock.txt: 5793) -.golovne.net -# ||golosua.com/img/banners/ (advblock.txt: 5792) -.golosua.com/img/banners/ -# ||goldenshara.com/misc/js/golde_link.js (advblock.txt: 5791) -.goldenshara.com/misc/js/golde_link\.js -# ||goldenfront.ru/static/banners/ (advblock.txt: 5790) -.goldenfront.ru/static/banners/ -# ||gofuckbiz.com/superheader (advblock.txt: 5789) -.gofuckbiz.com/superheader -# ||glstar.ru/swf/ (advblock.txt: 5788) -.glstar.ru/swf/ -# ||glavport.net/files/swfs/ (advblock.txt: 5787) -.glavport.net/files/swfs/ -# ||glasscannon.ru/wp-content/*/pic/back_rek_ (advblock.txt: 5786) -.glasscannon.ru/wp-content/.*/pic/back_rek_ -# ||gimp.nas2.net/img/rek/ (advblock.txt: 5785) -.gimp.nas2.net/img/rek/ -# ||gidonlinekino.com/im/branding/ (advblock.txt: 5784) -.gidonlinekino.com/im/branding/ -# ||gidonline.ru/im/branding (advblock.txt: 5783) -.gidonline.ru/im/branding -# ||gidonline.club/im/branding/ (advblock.txt: 5782) -.gidonline.club/im/branding/ -# ||giclub.tv/index.php?action=downloads;sa=downfile&id= (advblock.txt: 5781) -.giclub.tv/index\.php\?action=downloads;sa=downfile&id= -# ||getalbums.ru^$object (advblock.txt: 5780) -.getalbums.ru -# ||get-tune.net/i/banners/ (advblock.txt: 5779) -.get-tune.net/i/banners/ -# ||germany.ru/discount/pictures/extra (advblock.txt: 5778) -.germany.ru/discount/pictures/extra -# ||germany.ru/albums/*/Banner_ (advblock.txt: 5777) -.germany.ru/albums/.*/Banner_ -# ||gde.ru/img/*320x1 (advblock.txt: 5776) -.gde.ru/img/.*320x1 -# ||gcmsite.ru/img/nostromo-x.jpg (advblock.txt: 5775) -.gcmsite.ru/img/nostromo-x\.jpg -# ||gazeta.ua/css/branding. (advblock.txt: 5774) -.gazeta.ua/css/branding\. -# ||gay.ru/a2/ (advblock.txt: 5773) -.gay.ru/a2/ -# ||garant.ru/images/*/goldfish/ (advblock.txt: 5772) -.garant.ru/images/.*/goldfish/ -# ||gametech.ru/brand/ (advblock.txt: 5771) -.gametech.ru/brand/ -# ||gamestar.ru^*picture/banners/ (advblock.txt: 5770) -.gamestar.ru/.*picture/banners/ -# ||gamestar.ru/p/picture/s.gif (advblock.txt: 5769) -.gamestar.ru/p/picture/s\.gif -# ||games-tv.ru/img/oimgs/ (advblock.txt: 5768) -.games-tv.ru/img/oimgs/ -# ||games-archive.net^$object (advblock.txt: 5767) -.games-archive.net -# ||gamerpro.ru/images/adver/$image,object (advblock.txt: 5766) -.gamerpro.ru/images/adver/ -# ||gamer.ru^*/branding- (advblock.txt: 5765) -.gamer.ru/.*/branding- -# ||gamer.ru/oracle/ (advblock.txt: 5764) -.gamer.ru/oracle/ -# ||gamer.ru/alarmalarm/ (advblock.txt: 5763) -.gamer.ru/alarmalarm/ -# ||gamemag.ru/img/videoigr/ (advblock.txt: 5762) -.gamemag.ru/img/videoigr/ -# ||gamemag.ru/img/$object (advblock.txt: 5761) -.gamemag.ru/img/ -# ||gamemag.ru/admin/spaweditor/uploads/images/ (advblock.txt: 5760) -.gamemag.ru/admin/spaweditor/uploads/images/ -# ||fvhm.ru^$object (advblock.txt: 5758) -.fvhm.ru -# ||futurevideo.su/images/brand_ (advblock.txt: 5757) -.futurevideo.su/images/brand_ -# ||fullgames.ru^$object (advblock.txt: 5756) -.fullgames.ru -# ||fu.gk43.ru/media/ (advblock.txt: 5755) -.fu.gk43.ru/media/ -# ||fsell.biz/images/$object (advblock.txt: 5754) -.fsell.biz/images/ -# ||frostbone.playground.ru^ (advblock.txt: 5753) -.frostbone.playground.ru -# ||freezpic.ru^*/code.js (advblock.txt: 5752) -.freezpic.ru/.*/code\.js -# ||freezpic.ru/tpl/ (advblock.txt: 5751) -.freezpic.ru/tpl/ -# ||freealt.net/daos/ (advblock.txt: 5750) -.freealt.net/daos/ -# ||freakenergy.ru/imgpls/ (advblock.txt: 5749) -.freakenergy.ru/imgpls/ -# ||fotooplata.ru^$object (advblock.txt: 5748) -.fotooplata.ru -# ||fotooplata.ru/torrnada. (advblock.txt: 5747) -.fotooplata.ru/torrnada\. -# ||foto-save.ru/file.js (advblock.txt: 5746) -.foto-save.ru/file\.js -# ||forzajuve.ru/978x90. (advblock.txt: 5745) -.forzajuve.ru/978x90\. -# ||forums.warforge.ru/style_images/ad/ (advblock.txt: 5744) -.forums.warforge.ru/style_images/ad/ -# ||forums.goha.ru/c06$script (advblock.txt: 5743) -.forums.goha.ru/c06 -# ||forumkiev.com/MEDimg/ (advblock.txt: 5742) -.forumkiev.com/MEDimg/ -# ||forum.watch.ru/af/ (advblock.txt: 5741) -.forum.watch.ru/af/ -# ||forum.sources.ru/asdf/ (advblock.txt: 5740) -.forum.sources.ru/asdf/ -# ||forum.od.ua/forumpic/ (advblock.txt: 5739) -.forum.od.ua/forumpic/ -# ||forum.mista.ru/css/$object (advblock.txt: 5738) -.forum.mista.ru/css/ -# ||forum.ixbt.com/js/fotkidepo (advblock.txt: 5737) -.forum.ixbt.com/js/fotkidepo -# ||forum.adult-torrent.com^ (advblock.txt: 5736) -.forum.adult-torrent.com -# ||forum-profit.ru/images/nordfx/ (advblock.txt: 5735) -.forum-profit.ru/images/nordfx/ -# ||forscreen.com/*.php| (advblock.txt: 5733) -.forscreen.com/.*\.php$ -# ||foreign.marketgid.com^ (advblock.txt: 5732) -.foreign.marketgid.com -# ||foreign.dt00.net^ (advblock.txt: 5731) -.foreign.dt00.net -# ||for-foto.ru/*/adv.js| (advblock.txt: 5730) -.for-foto.ru/.*/adv\.js$ -# ||footballhd.ru^$subdocument (advblock.txt: 5729) -.footballhd.ru -# ||football.ua/i/hihi/ (advblock.txt: 5728) -.football.ua/i/hihi/ -# ||focus.ua/files/branding/ (advblock.txt: 5727) -.focus.ua/files/branding/ -# ||floomby.ru/files/flash/ (advblock.txt: 5726) -.floomby.ru/files/flash/ -# ||flasher.ru/data/images/swf/ (advblock.txt: 5725) -.flasher.ru/data/images/swf/ -# ||flashboot.ru/uploads/bnr/ (advblock.txt: 5724) -.flashboot.ru/uploads/bnr/ -# ||flashboot.ru/plugins/banneroid/ (advblock.txt: 5723) -.flashboot.ru/plugins/banneroid/ -# ||fix-pix.ru/rotator.php (advblock.txt: 5722) -.fix-pix.ru/rotator\.php -# ||fishki.net/maining/ (advblock.txt: 5721) -.fishki.net/maining/ -# ||fishki.net/branding/ (advblock.txt: 5720) -.fishki.net/branding/ -# ||firebit.org/clc.js (advblock.txt: 5718) -.firebit.org/clc\.js -# ||finnews.ru^*&img=banners/ (advblock.txt: 5717) -.finnews.ru/.*&img=banners/ -# ||filmix.net/branding (advblock.txt: 5716) -.filmix.net/branding -# ||filmitorrent.org/brand (advblock.txt: 5715) -.filmitorrent.org/brand -# ||film.ru/i/branding/ (advblock.txt: 5714) -.film.ru/i/branding/ -# ||fileplaneta.com/PlayerAdv/ (advblock.txt: 5713) -.fileplaneta.com/PlayerAdv/ -# ||file-tracker.net/images/banner/ (advblock.txt: 5712) -.file-tracker.net/images/banner/ -# ||file-tracker.net/images/ad1/ (advblock.txt: 5711) -.file-tracker.net/images/ad1/ -# ||file-tracker.net/images/$object (advblock.txt: 5710) -.file-tracker.net/images/ -# ||fiat-avtocity.ru/swf/ (advblock.txt: 5709) -.fiat-avtocity.ru/swf/ -# ||fermer.ru/files/$object (advblock.txt: 5708) -.fermer.ru/files/ -# ||fenzin.org/images/litres_ (advblock.txt: 5707) -.fenzin.org/images/litres_ -# ||fcpug.ru/upload/medialibrary/ (advblock.txt: 5706) -.fcpug.ru/upload/medialibrary/ -# ||fcenter.ru/images/b1/ (advblock.txt: 5705) -.fcenter.ru/images/b1/ -# ||fcdesna.3dn.ru^$object (advblock.txt: 5704) -.fcdesna.3dn.ru -# ||fc-amkar.org/images/b/ (advblock.txt: 5703) -.fc-amkar.org/images/b/ -# ||fbr.info/fbimage.php? (advblock.txt: 5702) -.fbr.info/fbimage\.php\? -# ||fast-torrent.ru^*branding (advblock.txt: 5700) -.fast-torrent.ru/.*branding -# ||fast-torrent.ru/media/*banner (advblock.txt: 5699) -.fast-torrent.ru/media/.*banner -# ||fast-torrent.ru/media/$object (advblock.txt: 5698) -.fast-torrent.ru/media/ -# ||fans-fcsm.ru/block.js (advblock.txt: 5697) -.fans-fcsm.ru/block\.js -# ||fakir.noob-club.ru^ (advblock.txt: 5696) -.fakir.noob-club.ru -# ||factroom.ru/brands/ (advblock.txt: 5695) -.factroom.ru/brands/ -# ||f.mega-porno.tv^ (advblock.txt: 5694) -.f.mega-porno.tv -# ||exploit.in/materials_/ (advblock.txt: 5693) -.exploit.in/materials_/ -# ||exoticvideo.net^*/promo. (advblock.txt: 5692) -.exoticvideo.net/.*/promo\. -# ||exoticvideo.net/js/8e254b.js (advblock.txt: 5691) -.exoticvideo.net/js/8e254b\.js -# ||ex.ua/ad_*.html^ (advblock.txt: 5690) -.ex.ua/ad_.*\.html[^\w%.-] -# ||ex.ua/*/index.css (advblock.txt: 5689) -.ex.ua/.*/index\.css -# ||etc-com.ru/bitrix/*/includes/ (advblock.txt: 5688) -.etc-com.ru/bitrix/.*/includes/ -# ||eroox.ru/blocks/ (advblock.txt: 5687) -.eroox.ru/blocks/ -# ||epidemz.net/bank/ (advblock.txt: 5686) -.epidemz.net/bank/ -# ||emuplanet.ru/images/bb/ (advblock.txt: 5685) -.emuplanet.ru/images/bb/ -# ||electrodance.org/slider/ (advblock.txt: 5684) -.electrodance.org/slider/ -# ||elec.ru/clients/ (advblock.txt: 5683) -.elec.ru/clients/ -# ||elec.ru/bs/ (advblock.txt: 5682) -.elec.ru/bs/ -# ||ekamedicina.ru/files/ (advblock.txt: 5681) -.ekamedicina.ru/files/ -# ||ekabu.ru/cache/$object,subdocument (advblock.txt: 5680) -.ekabu.ru/cache/ -# ||egida.by/js/site_news_target.js (advblock.txt: 5679) -.egida.by/js/site_news_target\.js -# ||eg.ru/upfile/picture/$object (advblock.txt: 5678) -.eg.ru/upfile/picture/ -# ||edinstvennaya.ua/pictures/brandings/ (advblock.txt: 5677) -.edinstvennaya.ua/pictures/brandings/ -# ||echo.msk.ru/att/element-*-misc-*.gif (advblock.txt: 5676) -.echo.msk.ru/att/element-.*-misc-.*\.gif -# ||easycom.com.ua/adbn/ (advblock.txt: 5675) -.easycom.com.ua/adbn/ -# ||e-flash.com.ua/templates/historylost/images/demo/ (advblock.txt: 5674) -.e-flash.com.ua/templates/historylost/images/demo/ -# ||dwg.ru/img/$object (advblock.txt: 5673) -.dwg.ru/img/ -# ||dverizamki.org/pictures/ (advblock.txt: 5672) -.dverizamki.org/pictures/ -# ||dverizamki.org/bs/ (advblock.txt: 5671) -.dverizamki.org/bs/ -# ||dumskaya.net/banner/ (advblock.txt: 5670) -.dumskaya.net/banner/ -# ||dump.ru/player_vip_closeAdvert (advblock.txt: 5669) -.dump.ru/player_vip_closeAdvert -# ||dumkare.ru^*.php|$script (advblock.txt: 5668) -.dumkare.ru/.*\.php$ -# ||dumkare.ru/bnr18/ (advblock.txt: 5667) -.dumkare.ru/bnr18/ -# ||dublikat.net/banner/ (advblock.txt: 5666) -.dublikat.net/banner/ -# ||dt00.net/gjs/ (advblock.txt: 5665) -.dt00.net/gjs/ -# ||drumandbass.ru/img*banner (advblock.txt: 5664) -.drumandbass.ru/img.*banner -# ||drochunov.net/pic/flash/ (advblock.txt: 5663) -.drochunov.net/pic/flash/ -# ||drochunov.net/pic/bd/ (advblock.txt: 5662) -.drochunov.net/pic/bd/ -# ||drive.ru/images/promo/ (advblock.txt: 5661) -.drive.ru/images/promo/ -# ||dprealty.ru/iframe/property4scroll/ (advblock.txt: 5660) -.dprealty.ru/iframe/property4scroll/ -# ||dota2.ru/img/brand- (advblock.txt: 5657) -.dota2.ru/img/brand- -# ||dontr.ru/upload/Banner/ (advblock.txt: 5656) -.dontr.ru/upload/Banner/ -# ||dofiga.net^*/trade (advblock.txt: 5655) -.dofiga.net/.*/trade -# ||dleshka.org/go/ (advblock.txt: 5654) -.dleshka.org/go/ -# ||djrogoff.ru/img/r_ (advblock.txt: 5653) -.djrogoff.ru/img/r_ -# ||dixinews.ru/up/banner/ (advblock.txt: 5652) -.dixinews.ru/up/banner/ -# ||divan-tut.ru/promo (advblock.txt: 5651) -.divan-tut.ru/promo -# ||dirty.ru/i/nevoobrazimo/banner_ (advblock.txt: 5650) -.dirty.ru/i/nevoobrazimo/banner_ -# ||did5.ru/images/banner (advblock.txt: 5649) -.did5.ru/images/banner -# ||diary.ru^*/diaryDefault728x90. (advblock.txt: 5648) -.diary.ru/.*/diaryDefault728x90\. -# ||depositfiles.com/images/zillya/ (advblock.txt: 5645) -.depositfiles.com/images/zillya/ -# ||demotivators.to/media/$script (advblock.txt: 5644) -.demotivators.to/media/ -# ||demotivation.me/banners/ (advblock.txt: 5643) -.demotivation.me/banners/ -# ||delphisources.ru/pages/scripts/recl_ (advblock.txt: 5641) -.delphisources.ru/pages/scripts/recl_ -# ||delphi.lv/wd/*.180x400. (advblock.txt: 5640) -.delphi.lv/wd/.*\.180x400\. -# ||delphi.lv/t/t.js (advblock.txt: 5639) -.delphi.lv/t/t\.js -# ||delovoigorod.ru/images/loader$object (advblock.txt: 5638) -.delovoigorod.ru/images/loader -# ||delo.ua^*/branding/ (advblock.txt: 5637) -.delo.ua/.*/branding/ -# ||delivery.bannerd.ru^ (advblock.txt: 5636) -.delivery.bannerd.ru -# ||delfi.lv/misc/xml_infoblocks/ (advblock.txt: 5635) -.delfi.lv/misc/xml_infoblocks/ -# ||delfi.ee/misc/$subdocument (advblock.txt: 5634) -.delfi.ee/misc/ -# ||debilizator.tv/static/ab.min.js (advblock.txt: 5633) -.debilizator.tv/static/ab\.min\.js -# ||dating.trans-admirer.com/promo/ (advblock.txt: 5632) -.dating.trans-admirer.com/promo/ -# ||cybergame.tv/images/*_984x90. (advblock.txt: 5629) -.cybergame.tv/images/.*_984x90\. -# ||cy-pr.com/images/$object (advblock.txt: 5628) -.cy-pr.com/images/ -# ||copyright.ru*/?file= (advblock.txt: 5627) -.copyright.ru*./(.*/)?\?file= -# ||copypast.ru/re*/$image,object (advblock.txt: 5626) -.copypast.ru/re.*/ -# ||coop-land.ru/uploads/pictures/*_branding_ (advblock.txt: 5625) -.coop-land.ru/uploads/pictures/.*_branding_ -# ||coop-land.ru/uploads/*_coop-land_ (advblock.txt: 5624) -.coop-land.ru/uploads/.*_coop-land_ -# ||coolinbox.ru/suprenta/ (advblock.txt: 5623) -.coolinbox.ru/suprenta/ -# ||cool-archive.ru/*_adv. (advblock.txt: 5622) -.cool-archive.ru/.*_adv\. -# ||consmed.ru/tizergen/ (advblock.txt: 5621) -.consmed.ru/tizergen/ -# ||consmed.ru/branding/ (advblock.txt: 5620) -.consmed.ru/branding/ -# ||companion.ua/www/images/ (advblock.txt: 5619) -.companion.ua/www/images/ -# ||comnews.ru/ds_comnews/img_pictures/*.gif (advblock.txt: 5618) -.comnews.ru/ds_comnews/img_pictures/.*\.gif -# ||comnews.ru/ds_comnews/img_object/ (advblock.txt: 5617) -.comnews.ru/ds_comnews/img_object/ -# ||comnews.ru/ds_comnews/files/$object (advblock.txt: 5616) -.comnews.ru/ds_comnews/files/ -# ||comicsbook.ru/promo/ (advblock.txt: 5615) -.comicsbook.ru/promo/ -# ||comfysoft.ru/images/programmes/ (advblock.txt: 5614) -.comfysoft.ru/images/programmes/ -# ||cobra.com.ua/_banners/ (advblock.txt: 5613) -.cobra.com.ua/_banners/ -# ||coads.akipress.org^ (advblock.txt: 5612) -.coads.akipress.org -# ||cnews.ru/rotator.php?zone= (advblock.txt: 5611) -.cnews.ru/rotator\.php\?zone= -# ||cnb.cnews.ru^ (advblock.txt: 5610) -.cnb.cnews.ru -# ||cmexota.ru/uploads/mini/nu_ (advblock.txt: 5609) -.cmexota.ru/uploads/mini/nu_ -# ||cmexota.ru/uploads/$script (advblock.txt: 5608) -.cmexota.ru/uploads/ -# ||clubvolvo.ru/crash/ban (advblock.txt: 5607) -.clubvolvo.ru/crash/ban -# ||clubvolvo.ru/crash/$object (advblock.txt: 5606) -.clubvolvo.ru/crash/ -# ||clubsexa.com/sopero.js (advblock.txt: 5605) -.clubsexa.com/sopero\.js -# ||clubfile.net/themes/jobs/i/*_*.jpg| (advblock.txt: 5604) -.clubfile.net/themes/jobs/i/.*_.*\.jpg$ -# ||clubfile.net/files/*_banner_ (advblock.txt: 5603) -.clubfile.net/files/.*_banner_ -# ||clk.kaztorka.org^ (advblock.txt: 5602) -.clk.kaztorka.org -# ||clicks.demotivators.to^ (advblock.txt: 5601) -.clicks.demotivators.to -# ||ckyka.ru/obzor/ (advblock.txt: 5600) -.ckyka.ru/obzor/ -# ||citysites.ua^*/jackets/ (advblock.txt: 5599) -.citysites.ua/.*/jackets/ -# ||citydog.by/banners/ (advblock.txt: 5598) -.citydog.by/banners/ -# ||citforum.ru/a/ (advblock.txt: 5597) -.citforum.ru/a/ -# ||chuvashia.com/partners/ (advblock.txt: 5596) -.chuvashia.com/partners/ -# ||chtoby-pravilno.ru/go/test.js$script (advblock.txt: 5595) -.chtoby-pravilno.ru/go/test\.js -# ||chipmaker.ru/index.php?*§ion=select&$image,object (advblock.txt: 5594) -.chipmaker.ru/index\.php\?.*§ion=select& -# ||chipfind.ru/b/ (advblock.txt: 5593) -.chipfind.ru/b/ -# ||chinphone.info/go? (advblock.txt: 5592) -.chinphone.info/go\? -# ||china-iphone.ru/images/$object (advblock.txt: 5591) -.china-iphone.ru/images/ -# ||chesspro.ru/_banners/ (advblock.txt: 5590) -.chesspro.ru/_banners/ -# ||chesalka.com/jquery.simplemodal.js (advblock.txt: 5589) -.chesalka.com/jquery\.simplemodal\.js -# ||chemport.ru^*_994x90. (advblock.txt: 5588) -.chemport.ru/.*_994x90\. -# ||cheklab.ru^$object (advblock.txt: 5587) -.cheklab.ru -# ||championat.com/static/banner/ (advblock.txt: 5586) -.championat.com/static/banner/ -# ||championat.com/branding.css (advblock.txt: 5585) -.championat.com/branding\.css -# ||center.bz^$object (advblock.txt: 5584) -.center.bz -# ||center-dm.ru/img/js/adb.js (advblock.txt: 5583) -.center-dm.ru/img/js/adb\.js -# ||censor.net.ua/images/br4nd1ng/ (advblock.txt: 5581) -.censor.net.ua/images/br4nd1ng/ -# ||cassad.net/tv/bnr/ (advblock.txt: 5578) -.cassad.net/tv/bnr/ -# ||c-s.net.ua/forum/banners/ (advblock.txt: 5577) -.c-s.net.ua/forum/banners/ -# ||bw.myjob.by^$object (advblock.txt: 5576) -.bw.myjob.by -# ||buzines.net/banner/ (advblock.txt: 5575) -.buzines.net/banner/ -# ||business-gazeta.ru/partners/ (advblock.txt: 5574) -.business-gazeta.ru/partners/ -# ||buhonline.ru^*/ProductAdvertisement/ (advblock.txt: 5573) -.buhonline.ru/.*/ProductAdvertisement/ -# ||bugaga.tut.by^ (advblock.txt: 5572) -.bugaga.tut.by -# ||brd24.com/up/banner/ (advblock.txt: 5571) -.brd24.com/up/banner/ -# ||bratsk.org/files/b_right/ (advblock.txt: 5570) -.bratsk.org/files/b_right/ -# ||boxnews.com.ua/inc/js/under.js (advblock.txt: 5569) -.boxnews.com.ua/inc/js/under\.js -# ||boxnews.com.ua/inc/js/bn.js (advblock.txt: 5568) -.boxnews.com.ua/inc/js/bn\.js -# ||bountyporn.com/7c24c1.js (advblock.txt: 5567) -.bountyporn.com/7c24c1\.js -# ||boom.pdanew.com^$third-party (advblock.txt: 5566) -.boom.pdanew.com -# ||bookz.ru/tpl/$image,object (advblock.txt: 5565) -.bookz.ru/tpl/ -# ||boo.samara24.ru^ (advblock.txt: 5564) -.boo.samara24.ru -# ||bnkomi.ru/rklm-sh/ (advblock.txt: 5563) -.bnkomi.ru/rklm-sh/ -# ||bnkomi.ru/content/bnimg/ (advblock.txt: 5562) -.bnkomi.ru/content/bnimg/ -# ||bn.sarov.info^ (advblock.txt: 5561) -.bn.sarov.info -# ||bm.img.com.ua/widget/ (advblock.txt: 5559) -.bm.img.com.ua/widget/ -# ||bm.img.com.ua/a/video/img/br (advblock.txt: 5558) -.bm.img.com.ua/a/video/img/br -# ||bloknot-rostov.ru/upload/bloknotadv/ (advblock.txt: 5557) -.bloknot-rostov.ru/upload/bloknotadv/ -# ||blogoreader.org.ua/b/ (advblock.txt: 5556) -.blogoreader.org.ua/b/ -# ||blablacar.d3.ru^ (advblock.txt: 5555) -.blablacar.d3.ru -# ||bkn.ru/content/banners/ (advblock.txt: 5554) -.bkn.ru/content/banners/ -# ||bizarre.kiev.ua*/ban/ (advblock.txt: 5553) -.bizarre.kiev.ua*./(.*/)?ban/ -# ||biweed.com^*/yutex240_ (advblock.txt: 5552) -.biweed.com/.*/yutex240_ -# ||bit-torrent.kiev.ua/rekl.php (advblock.txt: 5551) -.bit-torrent.kiev.ua/rekl\.php -# ||binmovie.org/banners/ (advblock.txt: 5550) -.binmovie.org/banners/ -# ||bikepost.ru^$object (advblock.txt: 5549) -.bikepost.ru -# ||bikepost.ru/ttll/ (advblock.txt: 5548) -.bikepost.ru/ttll/ -# ||bikepost.ru/ttl/ (advblock.txt: 5547) -.bikepost.ru/ttl/ -# ||bigtorrent.org/IpGeo1/ (advblock.txt: 5546) -.bigtorrent.org/IpGeo1/ -# ||bigpicture.ru/img/*/ (advblock.txt: 5545) -.bigpicture.ru/img/.*/ -# ||bigcinema.tv/vast_overlay_tizernet. (advblock.txt: 5544) -.bigcinema.tv/vast_overlay_tizernet\. -# ||bigbangtv.ru/bbt.js (advblock.txt: 5543) -.bigbangtv.ru/bbt\.js -# ||biathlon.ru/images/sp*/*.jpg (advblock.txt: 5542) -.biathlon.ru/images/sp.*/.*\.jpg -# ||beznal.cc/banners/ (advblock.txt: 5541) -.beznal.cc/banners/ -# ||besttorrents.org/cdn-cgi/pe/bag2? (advblock.txt: 5540) -.besttorrents.org/cdn-cgi/pe/bag2\? -# ||bestreferat.ru/images/a/ (advblock.txt: 5539) -.bestreferat.ru/images/a/ -# ||bestgamer.ru/partners/ (advblock.txt: 5538) -.bestgamer.ru/partners/ -# ||belta.by/newbfl/$object (advblock.txt: 5537) -.belta.by/newbfl/ -# ||belta.by/images/storage/banners/$object (advblock.txt: 5536) -.belta.by/images/storage/banners/ -# ||belobmen.ru/go? (advblock.txt: 5535) -.belobmen.ru/go\? -# ||bddo.ru/uploads/*_ban_ (advblock.txt: 5534) -.bddo.ru/uploads/.*_ban_ -# ||baumanki.net/templates/open-slaed/img/ban (advblock.txt: 5532) -.baumanki.net/templates/open-slaed/img/ban -# ||batpic.com/p/ (advblock.txt: 5531) -.batpic.com/p/ -# ||bash.im/_sq.php (advblock.txt: 5530) -.bash.im/_sq\.php -# ||banners.kinoafisha.info^ (advblock.txt: 5529) -.banners.kinoafisha.info -# ||banner.osp-ua.info^ (advblock.txt: 5528) -.banner.osp-ua.info -# ||banner.lbs.km.ru^ (advblock.txt: 5527) -.banner.lbs.km.ru -# ||baikal24.ru/images/$object (advblock.txt: 5526) -.baikal24.ru/images/ -# ||babysaratov.ru/img/$object (advblock.txt: 5525) -.babysaratov.ru/img/ -# ||b.nude-moon.com^ (advblock.txt: 5524) -.b.nude-moon.com -# ||b.netall.ru^ (advblock.txt: 5523) -.b.netall.ru -# ||b.inbox.lv^ (advblock.txt: 5522) -.b.inbox.lv -# ||avianews.ru/c/? (advblock.txt: 5520) -.avianews.ru/c/\? -# ||aviafly.ru/js| (advblock.txt: 5519) -.aviafly.ru/js$ -# ||avata.ru/windows.gif (advblock.txt: 5517) -.avata.ru/windows\.gif -# ||avata.ru/images/240x400.png (advblock.txt: 5516) -.avata.ru/images/240x400\.png -# ||auto.ru/get.php?args= (advblock.txt: 5515) -.auto.ru/get\.php\?args= -# ||athlete.ru/pic/$object (advblock.txt: 5514) -.athlete.ru/pic/ -# ||astromeridian.ru/assets/images/reklama2/$~stylesheet (advblock.txt: 5513) -.astromeridian.ru/assets/images/reklama2/ -# ||astromeridian.ru/assets/images/*/*/brend.$image (advblock.txt: 5512) -.astromeridian.ru/assets/images/.*/.*/brend\. -# ||artofcare.ru/files/images/club/ (advblock.txt: 5511) -.artofcare.ru/files/images/club/ -# ||artofcare.ru/files/images/bs/ (advblock.txt: 5510) -.artofcare.ru/files/images/bs/ -# ||artfile.ru/f/$subdocument (advblock.txt: 5509) -.artfile.ru/f/ -# ||artero.ru/js/ (advblock.txt: 5508) -.artero.ru/js/ -# ||army.lv/banners/ (advblock.txt: 5507) -.army.lv/banners/ -# ||aquafanat.com.ua/forum/iUshki/ (advblock.txt: 5506) -.aquafanat.com.ua/forum/iUshki/ -# ||aq.censor.net.ua^ (advblock.txt: 5505) -.aq.censor.net.ua -# ||appstudio.org/banners/ (advblock.txt: 5503) -.appstudio.org/banners/ -# ||api.digitalaccess.ru/logger^ (advblock.txt: 5502) -.api.digitalaccess.ru/logger[^\w%.-] -# ||ap.delfi.ee^ (advblock.txt: 5501) -.ap.delfi.ee -# ||ap.by/up/banner/ (advblock.txt: 5500) -.ap.by/up/banner/ -# ||antistarforce.com^$object (advblock.txt: 5499) -.antistarforce.com -# ||antimaydan.info/js/rot (advblock.txt: 5498) -.antimaydan.info/js/rot -# ||antimaydan.info/js/bn (advblock.txt: 5497) -.antimaydan.info/js/bn -# ||antichat.ru/bn/ (advblock.txt: 5496) -.antichat.ru/bn/ -# ||ankontr.if.ua/swf/ (advblock.txt: 5494) -.ankontr.if.ua/swf/ -# ||ankontr.if.ua/images/mod_banners/ (advblock.txt: 5493) -.ankontr.if.ua/images/mod_banners/ -# ||anistar.ru^*/images/brend_ (advblock.txt: 5492) -.anistar.ru/.*/images/brend_ -# ||anistar.ru^*/baner- (advblock.txt: 5491) -.anistar.ru/.*/baner- -# ||anistar.ru/adblock/ (advblock.txt: 5490) -.anistar.ru/adblock/ -# ||animevost.org^*/headBG (advblock.txt: 5489) -.animevost.org/.*/headBG -# ||animevost.org^*.swf^ (advblock.txt: 5488) -.animevost.org/.*\.swf[^\w%.-] -# ||animeonline.su^*/images/da/ (advblock.txt: 5487) -.animeonline.su/.*/images/da/ -# ||animenfo.com/*/ads/ (advblock.txt: 5486) -.animenfo.com/.*/ads/ -# ||animemaga.ru^*/blog/layers/ (advblock.txt: 5485) -.animemaga.ru/.*/blog/layers/ -# ||animemaga.ru/img/*_1000_120_ (advblock.txt: 5484) -.animemaga.ru/img/.*_1000_120_ -# ||animedia.tv^*/bnr/ (advblock.txt: 5483) -.animedia.tv/.*/bnr/ -# ||animechan.ru/fun/ (advblock.txt: 5482) -.animechan.ru/fun/ -# ||anidub.com/uploads/*brend (advblock.txt: 5481) -.anidub.com/uploads/.*brend -# ||anidub.com/uploads/$object (advblock.txt: 5480) -.anidub.com/uploads/ -# ||anidub.com/*.php?link= (advblock.txt: 5479) -.anidub.com/.*\.php\?link= -# ||anekdot.ru/i/gallery/ (advblock.txt: 5478) -.anekdot.ru/i/gallery/ -# ||andama.ru/bablo. (advblock.txt: 5477) -.andama.ru/bablo\. -# ||amovies.tv^*/js/init.js (advblock.txt: 5476) -.amovies.tv/.*/js/init\.js -# ||altai4u.com/wp-content/themes/$object (advblock.txt: 5475) -.altai4u.com/wp-content/themes/ -# ||alogvinov.com^*_top.jpg| (advblock.txt: 5474) -.alogvinov.com/.*_top\.jpg$ -# ||alogvinov.com/skinning_ (advblock.txt: 5473) -.alogvinov.com/skinning_ -# ||allsat.biz/ban_ (advblock.txt: 5472) -.allsat.biz/ban_ -# ||allmoldova.com/uimg/txtuimg/$object (advblock.txt: 5471) -.allmoldova.com/uimg/txtuimg/ -# ||allinfo.kz/pic/media/ (advblock.txt: 5470) -.allinfo.kz/pic/media/ -# ||allhockey.ru/static/img/brand/ (advblock.txt: 5469) -.allhockey.ru/static/img/brand/ -# ||allforpeople.net/banner. (advblock.txt: 5468) -.allforpeople.net/banner\. -# ||allday2.com/a/ (advblock.txt: 5467) -.allday2.com/a/ -# ||allboxing.ru/files/*.*.*/ (advblock.txt: 5466) -.allboxing.ru/files/.*\..*\..*/ -# ||allboxing.ru/files/$object (advblock.txt: 5465) -.allboxing.ru/files/ -# ||all-episodes.com/br$image (advblock.txt: 5464) -.all-episodes.com/br -# ||all-episodes.com/autoplay.htm (advblock.txt: 5463) -.all-episodes.com/autoplay\.htm -# ||aktobeinfo.kz/sites/default/files/swf/ (advblock.txt: 5461) -.aktobeinfo.kz/sites/default/files/swf/ -# ||ais.com.ua/usersimage/banners/ (advblock.txt: 5460) -.ais.com.ua/usersimage/banners/ -# ||aii.su/banners/ (advblock.txt: 5459) -.aii.su/banners/ -# ||agsat.com.ua/beuty/ (advblock.txt: 5458) -.agsat.com.ua/beuty/ -# ||agronews.ru/images/$object (advblock.txt: 5457) -.agronews.ru/images/ -# ||afisha.ru/dsn/google- (advblock.txt: 5456) -.afisha.ru/dsn/google- -# ||adverman.*/banners/ (advblock.txt: 5455) -.adverman.*./(.*/)?banners/ -# ||ad.nakanune.ru^ (advblock.txt: 5450) -.ad.nakanune.ru -# ||ad.f1cd.ru^ (advblock.txt: 5449) -.ad.f1cd.ru -# ||actualcomment.ru^*/banner/ (advblock.txt: 5448) -.actualcomment.ru/.*/banner/ -# ||aaa.piccash.net^ (advblock.txt: 5447) -.aaa.piccash.net -# ||a.zoomby.ru^ (advblock.txt: 5446) -.a.zoomby.ru -# ||a.velvet.by^ (advblock.txt: 5445) -.a.velvet.by -# ||a.sakh.com/a/ (advblock.txt: 5444) -.a.sakh.com/a/ -# ||a.multik-online.net^ (advblock.txt: 5443) -.a.multik-online.net -# ||a.meteonova.ru^ (advblock.txt: 5442) -.a.meteonova.ru -# ||7sl.ru/uploads/$object (advblock.txt: 5441) -.7sl.ru/uploads/ -# ||7ja.ru/imgb/ (advblock.txt: 5440) -.7ja.ru/imgb/ -# ||6barrel.com/img/bg- (advblock.txt: 5439) -.6barrel.com/img/bg- -# ||5terka.com^*/img/bg (advblock.txt: 5438) -.5terka.com/.*/img/bg -# ||5ka.ru/jscr/ (advblock.txt: 5437) -.5ka.ru/jscr/ -# ||5ka.ru/js/banners. (advblock.txt: 5436) -.5ka.ru/js/banners\. -# ||4allforum.com/banner/ (advblock.txt: 5435) -.4allforum.com/banner/ -# ||3mv.ru/oboi (advblock.txt: 5433) -.3mv.ru/oboi -# ||3mp3.ru/dhtml/adv. (advblock.txt: 5432) -.3mp3.ru/dhtml/adv\. -# ||3mp3.ru/banner (advblock.txt: 5431) -.3mp3.ru/banner -# ||3dnews.ru/www/images/ (advblock.txt: 5430) -.3dnews.ru/www/images/ -# ||3dnews.ru/*/ad/branding/ (advblock.txt: 5429) -.3dnews.ru/.*/ad/branding/ -# ||3ddd.ru/other/banners/ (advblock.txt: 5428) -.3ddd.ru/other/banners/ -# ||38mama.ru/forum/images/*/ (advblock.txt: 5427) -.38mama.ru/forum/images/.*/ -# ||2krota.ru/rekla/ (advblock.txt: 5426) -.2krota.ru/rekla/ -# ||2baksa.net/newclk. (advblock.txt: 5425) -.2baksa.net/newclk\. -# ||2baksa.net/msg. (advblock.txt: 5424) -.2baksa.net/msg\. -# ||2baksa.net/js/vivo. (advblock.txt: 5423) -.2baksa.net/js/vivo\. -# ||24video.*/css/banner (advblock.txt: 5422) -.24video.*./(.*/)?css/banner -# ||24stoma.ru/rkm/ (advblock.txt: 5421) -.24stoma.ru/rkm/ -# ||21region.org/uploads/main/re/ (advblock.txt: 5420) -.21region.org/uploads/main/re/ -# ||21region.org/uploads/main/rb/ (advblock.txt: 5419) -.21region.org/uploads/main/rb/ -# ||1kinobig.ru/reklamka. (advblock.txt: 5418) -.1kinobig.ru/reklamka\. -# ||1istochnik.ru/js/fon.js (advblock.txt: 5417) -.1istochnik.ru/js/fon\.js -# ||195.82.146.52/brand/ (advblock.txt: 5416) -.195.82.146.52/brand/ -# ||13rus.ru/img/luhban.jpg (advblock.txt: 5415) -.13rus.ru/img/luhban\.jpg -# ||13rus.ru/img/*/ (advblock.txt: 5414) -.13rus.ru/img/.*/ -# ||13rus.ru/bnr/ (advblock.txt: 5413) -.13rus.ru/bnr/ -# ||13rus.ru/b/ (advblock.txt: 5412) -.13rus.ru/b/ -# ||13rus.ru/*/$object (advblock.txt: 5411) -.13rus.ru/.*/ -# ||101.ru^*/banners/ (advblock.txt: 5410) -.101.ru/.*/banners/ -# ||101.ru/dbclick/ (advblock.txt: 5409) -.101.ru/dbclick/ -# ||1000ukg.kz/uploads/banner/ (advblock.txt: 5408) -.1000ukg.kz/uploads/banner/ -# ||1000dosok.ru/banz/ (advblock.txt: 5407) -.1000dosok.ru/banz/ -# =http%3A%2F%2Fazaza.torent-telik. (advblock.txt: 5404) -/.*=http%3A%2F%2Fazaza\.torent-telik\. -# /galya.ru/clients/places/* (advblock.txt: 5384) -/(.*/)?galya\.ru/clients/places/.* -galya.ru/clients/places/.* -# /ad*.tutu.ru^*_*.php| (advblock.txt: 5379) -/(.*/)?ad.*\.tutu\.ru[^\w%.-].*_.*\.php$ -ad*./.*\.tutu\.ru[^\w%.-].*_.*\.php$ -ad*.tutu.ru/.*_.*\.php$ -# //www.vsevam.ru^$object (advblock.txt: 5377) -www.vsevam.ru -# .torrent-telik.com^$script (advblock.txt: 5374) -/.*\.torrent-telik\.com[^\w%.-] -.*.torrent-telik.com -# .lostfilm.tv^*^yash= (advblock.txt: 5371) -/.*\.lostfilm\.tv[^\w%.-].*[^\w%.-]yash= -.*.lostfilm.tv/.*[^\w%.-]yash= -# .autorambler.ru/*/promo/ (advblock.txt: 5369) -/.*\.autorambler\.ru/.*/promo/ -.*.autorambler.ru/.*/promo/ -# =x-uboino.net (advblock.txt: 3385) -/.*=x-uboino\.net -# =videotuts.ru (advblock.txt: 3384) -/.*=videotuts\.ru -# =torrent-telik. (advblock.txt: 3383) -/.*=torrent-telik\. -# =santikov.net (advblock.txt: 3382) -/.*=santikov\.net -# =rutracker.org.ua (advblock.txt: 3381) -/.*=rutracker\.org\.ua -# =ruspicbox.ru (advblock.txt: 3380) -/.*=ruspicbox\.ru -# =prons.org (advblock.txt: 3379) -/.*=prons\.org -# =ppronpic.org (advblock.txt: 3378) -/.*=ppronpic\.org -# =porno4you.org (advblock.txt: 3377) -/.*=porno4you\.org -# =pix-x.net (advblock.txt: 3376) -/.*=pix-x\.net -# =pics-money.ru (advblock.txt: 3375) -/.*=pics-money\.ru -# =picmani.ru (advblock.txt: 3374) -/.*=picmani\.ru -# =pick.megatrack.org (advblock.txt: 3373) -/.*=pick\.megatrack\.org -# =picforall.ru (advblock.txt: 3372) -/.*=picforall\.ru -# =pic5you.ru (advblock.txt: 3371) -/.*=pic5you\.ru -# =pic4you.ru (advblock.txt: 3370) -/.*=pic4you\.ru -# =pic-money.ru (advblock.txt: 3369) -/.*=pic-money\.ru -# =payforpic.ru (advblock.txt: 3368) -/.*=payforpic\.ru -# =http%3A//rustorka.com (advblock.txt: 3367) -/.*=http%3A//rustorka\.com -# =http%3A//picforall.ru (advblock.txt: 3366) -/.*=http%3A//picforall\.ru -# =http%3A//pic-money.ru (advblock.txt: 3365) -/.*=http%3A//pic-money\.ru -# =http%3A//payforpic.ru (advblock.txt: 3364) -/.*=http%3A//payforpic\.ru -# =http%3A%2F%2Fpicforall.ru (advblock.txt: 3363) -/.*=http%3A%2F%2Fpicforall\.ru -# =hottrash.ru (advblock.txt: 3362) -/.*=hottrash\.ru -# =hentaiz.org (advblock.txt: 3361) -/.*=hentaiz\.org -# =hentaichan.ru (advblock.txt: 3360) -/.*=hentaichan\.ru -# =gold-liter.org.ua (advblock.txt: 3359) -/.*=gold-liter\.org\.ua -# =fotooplata.ru (advblock.txt: 3358) -/.*=fotooplata\.ru -# =erevan-online.ru (advblock.txt: 3357) -/.*=erevan-online\.ru -# =beetor.org (advblock.txt: 3356) -/.*=beetor\.org -# =anime-box.ws (advblock.txt: 3355) -/.*=anime-box\.ws -# /design-warez.ru.js (advblock.txt: 3354) -/(.*/)?design-warez\.ru\.js -design-warez.ru.js*. -# -pic-money.ru (advblock.txt: 3353) -/.*-pic-money\.ru -.*-pic-money.ru*. -# -image2you.ru (advblock.txt: 3352) -/.*-image2you\.ru -.*-image2you.ru*. -# ||wt.lovfot.ru^ (advblock.txt: 3346) -.wt.lovfot.ru -# ||webweb.picforall.ru^ (advblock.txt: 3340) -.webweb.picforall.ru -# ||nord.murmann.ru^ (advblock.txt: 3339) -.nord.murmann.ru -# ||zork.jerkngo.com^ (advblock.txt: 3336) -.zork.jerkngo.com -# ||top.softweb.ru^ (advblock.txt: 3335) -.top.softweb.ru -# ||sport.hudaem.ru^ (advblock.txt: 3334) -.sport.hudaem.ru -# ||search.a-vega.ru^ (advblock.txt: 3333) -.search.a-vega.ru -# ||samsung.yaload.ru^ (advblock.txt: 3332) -.samsung.yaload.ru -# ||root.qw.su^ (advblock.txt: 3331) -.root.qw.su -# ||real.attico-mos.ru^ (advblock.txt: 3330) -.real.attico-mos.ru -# ||qwerty.arenda263.ru^ (advblock.txt: 3329) -.qwerty.arenda263.ru -# ||pop.turnik.su^ (advblock.txt: 3328) -.pop.turnik.su -# ||pop.spy4.in^ (advblock.txt: 3327) -.pop.spy4.in -# ||po.spynets.ru^ (advblock.txt: 3326) -.po.spynets.ru -# ||lg.yaload.ru^ (advblock.txt: 3325) -.lg.yaload.ru -# ||kuhni.goodtrend2.ru^ (advblock.txt: 3324) -.kuhni.goodtrend2.ru -# ||fair.jones.se^ (advblock.txt: 3323) -.fair.jones.se -# ||fair.huz84.com^ (advblock.txt: 3322) -.fair.huz84.com -# ||1.miniporn.ru^ (advblock.txt: 3321) -.1.miniporn.ru -# ||yaload.yaload.ru^ (advblock.txt: 3318) -.yaload.yaload.ru -# ||www.online.anime-box.ws^ (advblock.txt: 3317) -.www.online.anime-box.ws -# ||wolf.fan-guf.ru^ (advblock.txt: 3316) -.wolf.fan-guf.ru -# ||wells.murmann.ru^ (advblock.txt: 3315) -.wells.murmann.ru -# ||static2.ero2you.com^ (advblock.txt: 3314) -.static2.ero2you.com -# ||skeet.advetime.ru^ (advblock.txt: 3313) -.skeet.advetime.ru -# ||sctipt.prons.org^ (advblock.txt: 3312) -.sctipt.prons.org -# ||sailor.rutracker21.org^ (advblock.txt: 3311) -.sailor.rutracker21.org -# ||rx9aef.driver-id.ru^ (advblock.txt: 3310) -.rx9aef.driver-id.ru -# ||rikki.bukvaved.net^ (advblock.txt: 3309) -.rikki.bukvaved.net -# ||recloma.cssmod.ru^ (advblock.txt: 3308) -.recloma.cssmod.ru -# ||public.screenhost.ru^ (advblock.txt: 3307) -.public.screenhost.ru -# ||pu.zipsites.ru^ (advblock.txt: 3306) -.pu.zipsites.ru -# ||plus.pornoshara.tv^ (advblock.txt: 3305) -.plus.pornoshara.tv -# ||news.soptv.ws^ (advblock.txt: 3304) -.news.soptv.ws -# ||news.movieworld.kz^ (advblock.txt: 3303) -.news.movieworld.kz -# ||n.gold-liter.org.ua^ (advblock.txt: 3302) -.n.gold-liter.org.ua -# ||gov.hentaipix.ru^ (advblock.txt: 3301) -.gov.hentaipix.ru -# ||go.mega-games.org^ (advblock.txt: 3300) -.go.mega-games.org -# ||forum.dwnld.net.ua^ (advblock.txt: 3299) -.forum.dwnld.net.ua -# ||dvasub.kipfilms.ru^ (advblock.txt: 3298) -.dvasub.kipfilms.ru -# ||crashes.autodanger.ru^ (advblock.txt: 3297) -.crashes.autodanger.ru -# ||bt1.gutgirl.ru^ (advblock.txt: 3296) -.bt1.gutgirl.ru -# ||bookforall1.bookforall.ru^ (advblock.txt: 3295) -.bookforall1.bookforall.ru -# ||bn1.homefot.ru^ (advblock.txt: 3294) -.bn1.homefot.ru -# ||adr.alltorrents.net^ (advblock.txt: 3293) -.adr.alltorrents.net -# ||ad.minecraft-mods.ru^ (advblock.txt: 3292) -.ad.minecraft-mods.ru -# ||the-people-group.$third-party (advblock.txt: 3289) -.the-people-group.*. -# ||people-group.$third-party (advblock.txt: 3287) -.people-group.*. -# ||kipfilms.ru^$third-party (advblock.txt: 3282) -.kipfilms.ru -# ||getout.besaba.com^ (advblock.txt: 3281) -.getout.besaba.com -# ||extract.zz.mu^$third-party (advblock.txt: 3280) -.extract.zz.mu -# ||eroox.ru^$third-party (advblock.txt: 3279) -.eroox.ru -# _vodkov.net (advblock.txt: 3277) -/.*_vodkov\.net -# _torrentszona.com (advblock.txt: 3276) -/.*_torrentszona\.com -# _stock-exchange.ucoz.com (advblock.txt: 3275) -/.*_stock-exchange\.ucoz\.com -# _softbaron.ru (advblock.txt: 3274) -/.*_softbaron\.ru -# _saytturtsii.ru (advblock.txt: 3273) -/.*_saytturtsii\.ru -# _narodclub.net (advblock.txt: 3272) -/.*_narodclub\.net -# _multiky.ru (advblock.txt: 3271) -/.*_multiky\.ru -# _kipfilms.ru (advblock.txt: 3270) -/.*_kipfilms\.ru -# _haxa.ru (advblock.txt: 3269) -/.*_haxa\.ru -# _gold-torrent.org (advblock.txt: 3268) -/.*_gold-torrent\.org -# _eroox.ru (advblock.txt: 3267) -/.*_eroox\.ru -# _doublepunch.ru (advblock.txt: 3266) -/.*_doublepunch\.ru -# _camelot.userlan.ru (advblock.txt: 3265) -/.*_camelot\.userlan\.ru -# _camelot.multilocal.ru (advblock.txt: 3264) -/.*_camelot\.multilocal\.ru -# _2krota.ru (advblock.txt: 3263) -/.*_2krota\.ru -# -todayanekdot.ru (advblock.txt: 3262) -/.*-todayanekdot\.ru -.*-todayanekdot.ru*. -# -softin.ca (advblock.txt: 3261) -/.*-softin\.ca -.*-softin.ca*. -# -ru-admin.net (advblock.txt: 3260) -/.*-ru-admin\.net -.*-ru-admin.net*. -# -murmann.ru (advblock.txt: 3259) -/.*-murmann\.ru -.*-murmann.ru*. -# -dom-2-onlain.ru (advblock.txt: 3258) -/.*-dom-2-onlain\.ru -.*-dom-2-onlain.ru*. -# ||zxrtn.com^$third-party (advblock.txt: 3252) -.zxrtn.com -# ||zqclick.net^ (advblock.txt: 3251) -.zqclick.net -# ||zontrans.com^ (advblock.txt: 3250) -.zontrans.com -# ||znatokionline.com^$third-party (advblock.txt: 3249) -.znatokionline.com -# ||zirikoni.com^ (advblock.txt: 3248) -.zirikoni.com -# ||zgvvx.com^$third-party (advblock.txt: 3247) -.zgvvx.com -# ||zdenochary.com^ (advblock.txt: 3246) -.zdenochary.com -# ||zboac.com^$third-party (advblock.txt: 3245) -.zboac.com -# ||zarabotki.ru^ (advblock.txt: 3244) -.zarabotki.ru -# ||yyredir.com^ (advblock.txt: 3243) -.yyredir.com -# ||yulinata.ru^ (advblock.txt: 3242) -.yulinata.ru -# ||yrsfs.com^$third-party (advblock.txt: 3241) -.yrsfs.com -# ||youhave.mobi^ (advblock.txt: 3240) -.youhave.mobi -# ||youformobile.ru^ (advblock.txt: 3239) -.youformobile.ru -# ||yohioo.com^ (advblock.txt: 3238) -.yohioo.com -# ||ynwia.com^$third-party (advblock.txt: 3237) -.ynwia.com -# ||yluvo.com^$third-party (advblock.txt: 3236) -.yluvo.com -# ||yidop.com^ (advblock.txt: 3235) -.yidop.com -# ||yangot.com^ (advblock.txt: 3234) -.yangot.com -# ||yandepit.com^ (advblock.txt: 3233) -.yandepit.com -# ||yalyagich.ru^ (advblock.txt: 3232) -.yalyagich.ru -# ||xytur.ru^ (advblock.txt: 3231) -.xytur.ru -# ||xyghv.com^$third-party (advblock.txt: 3230) -.xyghv.com -# ||xwell.ru^$third-party (advblock.txt: 3229) -.xwell.ru -# ||xuuclck.com^ (advblock.txt: 3228) -.xuuclck.com -# ||xooplo.com^ (advblock.txt: 3227) -.xooplo.com -# ||xn----etbhjdhwegjlz.xn--p1ai^$third-party (advblock.txt: 3226) -.xn----etbhjdhwegjlz.xn--p1ai -# ||xltraff.net^$~popup,popup (advblock.txt: 3225) -.xltraff.net -# ||xiuuh.com^ (advblock.txt: 3224) -.xiuuh.com -# ||xiss.ru^ (advblock.txt: 3223) -.xiss.ru -# ||xiepl.com^ (advblock.txt: 3222) -.xiepl.com -# ||xfnvb.biz^ (advblock.txt: 3221) -.xfnvb.biz -# ||xewoza.com^ (advblock.txt: 3220) -.xewoza.com -# ||xeclick.com^ (advblock.txt: 3219) -.xeclick.com -# ||xaogi.com^ (advblock.txt: 3218) -.xaogi.com -# ||x-ip-adwpc.com^ (advblock.txt: 3217) -.x-ip-adwpc.com -# ||x-ip-adv.com^ (advblock.txt: 3216) -.x-ip-adv.com -# ||wyuxy.com^$third-party (advblock.txt: 3215) -.wyuxy.com -# ||www.rt-ns.ru^ (advblock.txt: 3214) -.www.rt-ns.ru -# ||wvzhj.com^$third-party (advblock.txt: 3213) -.wvzhj.com -# ||wts-rotator.com^$~popup,popup (advblock.txt: 3212) -.wts-rotator.com -# ||wtoredir.com^ (advblock.txt: 3211) -.wtoredir.com -# ||wssdoo.com^ (advblock.txt: 3210) -.wssdoo.com -# ||wregf.biz^ (advblock.txt: 3209) -.wregf.biz -# ||wqs7j.ru^ (advblock.txt: 3208) -.wqs7j.ru -# ||worldoffer.ru^ (advblock.txt: 3207) -.worldoffer.ru -# ||womenset.ru^ (advblock.txt: 3206) -.womenset.ru -# ||wmrak.com^ (advblock.txt: 3205) -.wmrak.com -# ||wmip.ru^ (advblock.txt: 3204) -.wmip.ru -# ||wmbankir.ru^ (advblock.txt: 3203) -.wmbankir.ru -# ||wlsport.com^$third-party (advblock.txt: 3202) -.wlsport.com -# ||wlboon.com^ (advblock.txt: 3201) -.wlboon.com -# ||wizard-traffstock.com^$third-party,~popup,popup (advblock.txt: 3200) -.wizard-traffstock.com -# ||wisertb.com^ (advblock.txt: 3199) -.wisertb.com -# ||winvideo.org^$third-party (advblock.txt: 3198) -.winvideo.org -# ||winvideo.me^$third-party (advblock.txt: 3197) -.winvideo.me -# ||winneradsmedia.com^$third-party (advblock.txt: 3196) -.winneradsmedia.com -# ||whisla.com^ (advblock.txt: 3195) -.whisla.com -# ||wetpussyhd.com^ (advblock.txt: 3194) -.wetpussyhd.com -# ||weropiy.com^ (advblock.txt: 3193) -.weropiy.com -# ||weebvivian72.uk.to^ (advblock.txt: 3192) -.weebvivian72.uk.to -# ||wedtor.com^$third-party (advblock.txt: 3191) -.wedtor.com -# ||wedgeac.com^ (advblock.txt: 3190) -.wedgeac.com -# ||webrotator.org^ (advblock.txt: 3189) -.webrotator.org -# ||webrotator.net^ (advblock.txt: 3188) -.webrotator.net -# ||webmastak.net^ (advblock.txt: 3187) -.webmastak.net -# ||web-rotator.net^ (advblock.txt: 3186) -.web-rotator.net -# ||web-rotation.net^ (advblock.txt: 3185) -.web-rotation.net -# ||web-games.biz^$third-party (advblock.txt: 3184) -.web-games.biz -# ||wbid.ru^ (advblock.txt: 3183) -.wbid.ru -# ||waveview.info^$third-party (advblock.txt: 3182) -.waveview.info -# ||watrz.com^ (advblock.txt: 3181) -.watrz.com -# ||wapstaterpart.ru^ (advblock.txt: 3180) -.wapstaterpart.ru -# ||wapratios.ru^ (advblock.txt: 3179) -.wapratios.ru -# ||waogi.com^ (advblock.txt: 3178) -.waogi.com -# ||waladon.com^ (advblock.txt: 3177) -.waladon.com -# ||wad.ojooo.com^$third-party (advblock.txt: 3176) -.wad.ojooo.com -# ||w717.com^ (advblock.txt: 3175) -.w717.com -# ||w-rada.com^ (advblock.txt: 3174) -.w-rada.com -# ||w-lozo.com^ (advblock.txt: 3173) -.w-lozo.com -# ||w-lovo.com^ (advblock.txt: 3172) -.w-lovo.com -# ||w-loto.com^ (advblock.txt: 3171) -.w-loto.com -# ||w-loro.com^ (advblock.txt: 3170) -.w-loro.com -# ||w-lomo.com^ (advblock.txt: 3169) -.w-lomo.com -# ||w-lolo.com^ (advblock.txt: 3168) -.w-lolo.com -# ||w-loko.com^ (advblock.txt: 3167) -.w-loko.com -# ||w-lofo.com^ (advblock.txt: 3166) -.w-lofo.com -# ||w-lobo.com^ (advblock.txt: 3165) -.w-lobo.com -# ||w-llke.ru^ (advblock.txt: 3164) -.w-llke.ru -# ||vvmblock.ru^ (advblock.txt: 3163) -.vvmblock.ru -# ||vutrem.com^$third-party (advblock.txt: 3162) -.vutrem.com -# ||vutatik.ru^ (advblock.txt: 3161) -.vutatik.ru -# ||vtomate.biz^ (advblock.txt: 3160) -.vtomate.biz -# ||vpvsy.com^$third-party (advblock.txt: 3159) -.vpvsy.com -# ||vpbyl.com^ (advblock.txt: 3158) -.vpbyl.com -# ||voono.ru^ (advblock.txt: 3157) -.voono.ru -# ||vongomedia.ru^$third-party (advblock.txt: 3156) -.vongomedia.ru -# ||vogozita.com^ (advblock.txt: 3155) -.vogozita.com -# ||vogozaw.ru^ (advblock.txt: 3154) -.vogozaw.ru -# ||vogozae.ru^ (advblock.txt: 3153) -.vogozae.ru -# ||vogotita.com^ (advblock.txt: 3152) -.vogotita.com -# ||vogorita.com^ (advblock.txt: 3151) -.vogorita.com -# ||vogodita.com^ (advblock.txt: 3150) -.vogodita.com -# ||vogo-vogo.ru^ (advblock.txt: 3149) -.vogo-vogo.ru -# ||vmet.ro^$third-party (advblock.txt: 3148) -.vmet.ro -# ||vmblock.net^ (advblock.txt: 3147) -.vmblock.net -# ||vktweaks.at.ua^$third-party (advblock.txt: 3146) -.vktweaks.at.ua -# ||vkmonster.com^ (advblock.txt: 3145) -.vkmonster.com -# ||vkmoll.ru^ (advblock.txt: 3144) -.vkmoll.ru -# ||vk242.ru^$third-party (advblock.txt: 3143) -.vk242.ru -# ||viva-vanna.ru^ (advblock.txt: 3142) -.viva-vanna.ru -# ||vitos.freezfiles.ru^ (advblock.txt: 3141) -.vitos.freezfiles.ru -# ||visitscounter.ru^ (advblock.txt: 3140) -.visitscounter.ru -# ||vinregle.com^ (advblock.txt: 3139) -.vinregle.com -# ||vinov24.com^ (advblock.txt: 3138) -.vinov24.com -# ||vimart16.com^ (advblock.txt: 3137) -.vimart16.com -# ||vim100.ru^ (advblock.txt: 3136) -.vim100.ru -# ||vilumirian.biz^ (advblock.txt: 3135) -.vilumirian.biz -# ||viglir.ru^ (advblock.txt: 3134) -.viglir.ru -# ||viewrtb.com^ (advblock.txt: 3133) -.viewrtb.com -# ||vietalle.com^ (advblock.txt: 3132) -.vietalle.com -# ||vidustal.com^ (advblock.txt: 3131) -.vidustal.com -# ||vidseed.ru$third-party (advblock.txt: 3130) -.vidseed.ru*. -# ||vidigital.ru^$third-party (advblock.txt: 3129) -.vidigital.ru -# ||videoroll.net^$third-party (advblock.txt: 3128) -.videoroll.net -# ||videoplayer.ru^*/banners/ (advblock.txt: 3127) -.videoplayer.ru/.*/banners/ -# ||videojune.ru^ (advblock.txt: 3126) -.videojune.ru -# ||videojuly.ru^ (advblock.txt: 3125) -.videojuly.ru -# ||videoburner2015.com^$third-party (advblock.txt: 3124) -.videoburner2015.com -# ||videoaugust.ru^ (advblock.txt: 3123) -.videoaugust.ru -# ||video103.ru^ (advblock.txt: 3122) -.video103.ru -# ||video003.com^ (advblock.txt: 3121) -.video003.com -# ||video002.com^ (advblock.txt: 3120) -.video002.com -# ||video001.com^ (advblock.txt: 3119) -.video001.com -# ||video.videonow.ru^ (advblock.txt: 3118) -.video.videonow.ru -# ||videc10.com^ (advblock.txt: 3117) -.videc10.com -# ||vidaugust.ru^ (advblock.txt: 3116) -.vidaugust.ru -# ||vidasys.ru^$third-party (advblock.txt: 3115) -.vidasys.ru -# ||veroui.com^ (advblock.txt: 3114) -.veroui.com -# ||ventite.com^ (advblock.txt: 3113) -.ventite.com -# ||vcnnz.com^$third-party (advblock.txt: 3112) -.vcnnz.com -# ||vboys.ru^$third-party (advblock.txt: 3111) -.vboys.ru -# ||vbmjune25.com^ (advblock.txt: 3110) -.vbmjune25.com -# ||vbmay16.com^ (advblock.txt: 3109) -.vbmay16.com -# ||vatizon.com^ (advblock.txt: 3108) -.vatizon.com -# ||various1down.biz^ (advblock.txt: 3107) -.various1down.biz -# ||vakataro.com^ (advblock.txt: 3106) -.vakataro.com -# ||vakafaro.com^ (advblock.txt: 3105) -.vakafaro.com -# ||v2mlyellow.com^ (advblock.txt: 3104) -.v2mlyellow.com -# ||v2mljs.org^ (advblock.txt: 3103) -.v2mljs.org -# ||uvcwj.com^$third-party (advblock.txt: 3102) -.uvcwj.com -# ||utrehter.com^ (advblock.txt: 3101) -.utrehter.com -# ||utilieur.com^ (advblock.txt: 3100) -.utilieur.com -# ||utilient.com^ (advblock.txt: 3099) -.utilient.com -# ||usimonat.com^ (advblock.txt: 3098) -.usimonat.com -# ||usermediaclick.ru^ (advblock.txt: 3097) -.usermediaclick.ru -# ||uself.in^ (advblock.txt: 3096) -.uself.in -# ||us97udx.com^ (advblock.txt: 3095) -.us97udx.com -# ||urlrtb.com^ (advblock.txt: 3094) -.urlrtb.com -# ||untily.com^ (advblock.txt: 3093) -.untily.com -# ||unikuni.com^ (advblock.txt: 3092) -.unikuni.com -# ||unholyrsounds.in^ (advblock.txt: 3091) -.unholyrsounds.in -# ||undere.com^ (advblock.txt: 3090) -.undere.com -# ||under-click.ru^ (advblock.txt: 3089) -.under-click.ru -# ||ultrapay.net^ (advblock.txt: 3088) -.ultrapay.net -# ||ukrotsel.ru^ (advblock.txt: 3087) -.ukrotsel.ru -# ||uclead.com^ (advblock.txt: 3086) -.uclead.com -# ||uchmuk.com^ (advblock.txt: 3085) -.uchmuk.com -# ||typiol.com^ (advblock.txt: 3084) -.typiol.com -# ||tynyh.com^$third-party (advblock.txt: 3083) -.tynyh.com -# ||twitep.com^ (advblock.txt: 3082) -.twitep.com -# ||tvoy-start.com/partnerka/ (advblock.txt: 3081) -.tvoy-start.com/partnerka/ -# ||tvoigost.ru^ (advblock.txt: 3080) -.tvoigost.ru -# ||ttfean.com^ (advblock.txt: 3079) -.ttfean.com -# ||tteasr.com^ (advblock.txt: 3078) -.tteasr.com -# ||ttarget.ru^$third-party (advblock.txt: 3077) -.ttarget.ru -# ||tsunam.ru^ (advblock.txt: 3076) -.tsunam.ru -# ||tsnsniper.com^ (advblock.txt: 3075) -.tsnsniper.com -# ||tsilepe.ru^$third-party (advblock.txt: 3074) -.tsilepe.ru -# ||truenty.com^ (advblock.txt: 3073) -.truenty.com -# ||tropicalos.com^ (advblock.txt: 3072) -.tropicalos.com -# ||trmedie.ru^ (advblock.txt: 3071) -.trmedie.ru -# ||trisol.ru^ (advblock.txt: 3070) -.trisol.ru -# ||treprime.com^ (advblock.txt: 3069) -.treprime.com -# ||tratouler.com^$third-party (advblock.txt: 3068) -.tratouler.com -# ||tratataololol.ru^ (advblock.txt: 3067) -.tratataololol.ru -# ||tranzits.com^ (advblock.txt: 3066) -.tranzits.com -# ||transfto.com^ (advblock.txt: 3065) -.transfto.com -# ||traient.com^ (advblock.txt: 3064) -.traient.com -# ||trahik.ru^ (advblock.txt: 3063) -.trahik.ru -# ||traftiz.com^ (advblock.txt: 3062) -.traftiz.com -# ||trafsiz.com^ (advblock.txt: 3061) -.trafsiz.com -# ||trafmake.ru^ (advblock.txt: 3060) -.trafmake.ru -# ||trafka.ru^$third-party (advblock.txt: 3059) -.trafka.ru -# ||trafidet.ru^$~popup,popup (advblock.txt: 3058) -.trafidet.ru -# ||traffru.ru^ (advblock.txt: 3057) -.traffru.ru -# ||traffpay.ru^ (advblock.txt: 3056) -.traffpay.ru -# ||traffim.com^$third-party (advblock.txt: 3055) -.traffim.com -# ||traffictoadv.com^ (advblock.txt: 3054) -.traffictoadv.com -# ||traffic-king.ru^ (advblock.txt: 3053) -.traffic-king.ru -# ||trafex.net^$third-party (advblock.txt: 3052) -.trafex.net -# ||trafers.ru^ (advblock.txt: 3051) -.trafers.ru -# ||trafalz.com^ (advblock.txt: 3050) -.trafalz.com -# ||trafall.com^ (advblock.txt: 3049) -.trafall.com -# ||tozitoto.com^ (advblock.txt: 3048) -.tozitoto.com -# ||tozipoto.com^ (advblock.txt: 3047) -.tozipoto.com -# ||tozimoto.com^ (advblock.txt: 3046) -.tozimoto.com -# ||toutiles.com^ (advblock.txt: 3045) -.toutiles.com -# ||tourteaser.ru^ (advblock.txt: 3044) -.tourteaser.ru -# ||toujoute.com^ (advblock.txt: 3043) -.toujoute.com -# ||totrena.ru^ (advblock.txt: 3042) -.totrena.ru -# ||tormun.com^$third-party (advblock.txt: 3041) -.tormun.com -# ||torkok.com^$third-party (advblock.txt: 3040) -.torkok.com -# ||toplaygame.ru^$third-party (advblock.txt: 3039) -.toplaygame.ru -# ||tonopole.com^ (advblock.txt: 3038) -.tonopole.com -# ||tomobol.com^ (advblock.txt: 3037) -.tomobol.com -# ||tomiti.ru^ (advblock.txt: 3036) -.tomiti.ru -# ||tolicando.com^ (advblock.txt: 3035) -.tolicando.com -# ||tojinr.com^ (advblock.txt: 3034) -.tojinr.com -# ||toftori.ru^ (advblock.txt: 3033) -.toftori.ru -# ||todayad.ru^ (advblock.txt: 3032) -.todayad.ru -# ||to/files/$third-party (advblock.txt: 3031) -# ||to/code/$third-party,script (advblock.txt: 3030) -# ||tmska.com^ (advblock.txt: 3029) -.tmska.com -# ||tm-79.com^ (advblock.txt: 3028) -.tm-79.com -# ||tizru.com^ (advblock.txt: 3027) -.tizru.com -# ||tizerstock.com^ (advblock.txt: 3026) -.tizerstock.com -# ||tizerset.net^ (advblock.txt: 3025) -.tizerset.net -# ||tizernaya-reklama.ru^ (advblock.txt: 3024) -.tizernaya-reklama.ru -# ||tizermy.net^ (advblock.txt: 3023) -.tizermy.net -# ||tizermine.net^ (advblock.txt: 3022) -.tizermine.net -# ||tizerlink.com^$third-party (advblock.txt: 3021) -.tizerlink.com -# ||tizerlady.org^$third-party (advblock.txt: 3020) -.tizerlady.org -# ||tizerlady.net^$third-party (advblock.txt: 3019) -.tizerlady.net -# ||tizerlady.com^$third-party (advblock.txt: 3018) -.tizerlady.com -# ||tizerlady.biz^$third-party (advblock.txt: 3017) -.tizerlady.biz -# ||tizergun.net^ (advblock.txt: 3016) -.tizergun.net -# ||tizergo.net^ (advblock.txt: 3015) -.tizergo.net -# ||tizerfly.net^ (advblock.txt: 3014) -.tizerfly.net -# ||tizerelite.net^ (advblock.txt: 3013) -.tizerelite.net -# ||tizerda.net^ (advblock.txt: 3012) -.tizerda.net -# ||tizerclik.com^$third-party (advblock.txt: 3011) -.tizerclik.com -# ||tizerbest.net^ (advblock.txt: 3010) -.tizerbest.net -# ||tizerbank.com^$third-party (advblock.txt: 3009) -.tizerbank.com -# ||tizer8.net^ (advblock.txt: 3008) -.tizer8.net -# ||tizer7.net^ (advblock.txt: 3007) -.tizer7.net -# ||tizer6.net^ (advblock.txt: 3006) -.tizer6.net -# ||tizer13.net^ (advblock.txt: 3005) -.tizer13.net -# ||tizer12.net^ (advblock.txt: 3004) -.tizer12.net -# ||tiz-et.ru^$third-party (advblock.txt: 3003) -.tiz-et.ru -# ||tisarama.com^ (advblock.txt: 3002) -.tisarama.com -# ||tisapama.com^ (advblock.txt: 3001) -.tisapama.com -# ||tinsvt.ru^ (advblock.txt: 3000) -.tinsvt.ru -# ||timonom.com^ (advblock.txt: 2999) -.timonom.com -# ||tilili007.ru^ (advblock.txt: 2998) -.tilili007.ru -# ||tierest.com^ (advblock.txt: 2997) -.tierest.com -# ||tidentes.com^ (advblock.txt: 2996) -.tidentes.com -# ||ticlon.ru^ (advblock.txt: 2995) -.ticlon.ru -# ||thumpac.com^ (advblock.txt: 2994) -.thumpac.com -# ||thegrap.ru^ (advblock.txt: 2993) -.thegrap.ru -# ||tgearheads.com^ (advblock.txt: 2992) -.tgearheads.com -# ||textun.ru^$third-party (advblock.txt: 2991) -.textun.ru -# ||teromil.com^ (advblock.txt: 2990) -.teromil.com -# ||terapou.com^ (advblock.txt: 2989) -.terapou.com -# ||televisionbomb.com^ (advblock.txt: 2988) -.televisionbomb.com -# ||tecontx.com^ (advblock.txt: 2987) -.tecontx.com -# ||technical-rtl.ru^$third-party (advblock.txt: 2986) -.technical-rtl.ru -# ||tech9638514.ru^ (advblock.txt: 2985) -.tech9638514.ru -# ||tech5877413.ru^ (advblock.txt: 2984) -.tech5877413.ru -# ||tech4215978.ru^ (advblock.txt: 2983) -.tech4215978.ru -# ||teasertraffic.com^ (advblock.txt: 2982) -.teasertraffic.com -# ||teasernet.com.ua^ (advblock.txt: 2981) -.teasernet.com.ua -# ||teasermedia.net^$third-party (advblock.txt: 2980) -.teasermedia.net -# ||teasercpm.ru^ (advblock.txt: 2979) -.teasercpm.ru -# ||teaserbar.com^ (advblock.txt: 2978) -.teaserbar.com -# ||teaser1m.com^ (advblock.txt: 2977) -.teaser1m.com -# ||teachac.com^ (advblock.txt: 2976) -.teachac.com -# ||td-everest.biz^ (advblock.txt: 2975) -.td-everest.biz -# ||tc.fileplaneta.com^ (advblock.txt: 2974) -.tc.fileplaneta.com -# ||tbn.ru/bb.cgi? (advblock.txt: 2973) -.tbn.ru/bb\.cgi\? -# ||taril3.ru^ (advblock.txt: 2972) -.taril3.ru -# ||taril2.ru^ (advblock.txt: 2971) -.taril2.ru -# ||taril1.ru^ (advblock.txt: 2970) -.taril1.ru -# ||takealldir.ru^ (advblock.txt: 2969) -.takealldir.ru -# ||tagol2.ru^ (advblock.txt: 2968) -.tagol2.ru -# ||tadic.tk^ (advblock.txt: 2967) -.tadic.tk -# ||t800.org^ (advblock.txt: 2966) -.t800.org -# ||t.thor-media.ru^ (advblock.txt: 2965) -.t.thor-media.ru -# ||t.fotos.ua^$third-party (advblock.txt: 2964) -.t.fotos.ua -# ||t.fileplaneta.com^ (advblock.txt: 2963) -.t.fileplaneta.com -# ||t-kibo.com^ (advblock.txt: 2962) -.t-kibo.com -# ||sypleni.ru^ (advblock.txt: 2961) -.sypleni.ru -# ||sutgof.ru^$third-party (advblock.txt: 2960) -.sutgof.ru -# ||supertura.com^ (advblock.txt: 2959) -.supertura.com -# ||superpromokody.com^ (advblock.txt: 2958) -.superpromokody.com -# ||superfastcomputer.ru^ (advblock.txt: 2957) -.superfastcomputer.ru -# ||super12.eu^ (advblock.txt: 2956) -.super12.eu -# ||super-sxema.ru^$third-party (advblock.txt: 2955) -.super-sxema.ru -# ||sunrima.ru^ (advblock.txt: 2954) -.sunrima.ru -# ||sugvuxa.ru^$third-party (advblock.txt: 2953) -.sugvuxa.ru -# ||striete.com^ (advblock.txt: 2952) -.striete.com -# ||striere.com^ (advblock.txt: 2951) -.striere.com -# ||steamac.com^ (advblock.txt: 2950) -.steamac.com -# ||stb.eat.int.ru^ (advblock.txt: 2949) -.stb.eat.int.ru -# ||stayeda.com^ (advblock.txt: 2948) -.stayeda.com -# ||stat-well.com^$third-party (advblock.txt: 2947) -.stat-well.com -# ||startscript.ru^ (advblock.txt: 2946) -.startscript.ru -# ||standadv.com^ (advblock.txt: 2945) -.standadv.com -# ||stableprofit4you.com^ (advblock.txt: 2944) -.stableprofit4you.com -# ||ssl-services.com^$third-party (advblock.txt: 2943) -.ssl-services.com -# ||specisez.com^ (advblock.txt: 2942) -.specisez.com -# ||spechete.com^ (advblock.txt: 2941) -.spechete.com -# ||spechee.com^ (advblock.txt: 2940) -.spechee.com -# ||sparical.com^ (advblock.txt: 2939) -.sparical.com -# ||sparelli.com^ (advblock.txt: 2938) -.sparelli.com -# ||sovietit.com^ (advblock.txt: 2937) -.sovietit.com -# ||sovetnik.yandex.net^$third-party (advblock.txt: 2936) -.sovetnik.yandex.net -# ||sourdi.com^ (advblock.txt: 2935) -.sourdi.com -# ||sopital.com^ (advblock.txt: 2934) -.sopital.com -# ||sontere.com^ (advblock.txt: 2933) -.sontere.com -# ||sonnents.com^ (advblock.txt: 2932) -.sonnents.com -# ||some.demuz.ru^ (advblock.txt: 2931) -.some.demuz.ru -# ||soloway.su/rotator/ (advblock.txt: 2930) -.soloway.su/rotator/ -# ||sololslol.ru^ (advblock.txt: 2929) -.sololslol.ru -# ||solanog.com^ (advblock.txt: 2928) -.solanog.com -# ||soft-pays.ru^ (advblock.txt: 2927) -.soft-pays.ru -# ||sof32dsso.ru^ (advblock.txt: 2926) -.sof32dsso.ru -# ||sochetat.net^ (advblock.txt: 2925) -.sochetat.net -# ||snakeac.com^ (advblock.txt: 2924) -.snakeac.com -# ||smimarket.com^ (advblock.txt: 2923) -.smimarket.com -# ||smilered.com^$third-party (advblock.txt: 2922) -.smilered.com -# ||sm0tri.eu^$third-party (advblock.txt: 2921) -.sm0tri.eu -# ||slopeac.com^ (advblock.txt: 2920) -.slopeac.com -# ||slivz.com^ (advblock.txt: 2919) -.slivz.com -# ||slickjump.com^$third-party (advblock.txt: 2918) -.slickjump.com -# ||sleepac.com^ (advblock.txt: 2917) -.sleepac.com -# ||slavedomain48.net^$third-party (advblock.txt: 2916) -.slavedomain48.net -# ||slartibartfast.ru^ (advblock.txt: 2915) -.slartibartfast.ru -# ||sider.org.ru^ (advblock.txt: 2914) -.sider.org.ru -# ||sibiryak-soft.net^ (advblock.txt: 2913) -.sibiryak-soft.net -# ||shuffele.com^ (advblock.txt: 2912) -.shuffele.com -# ||showede.com^ (advblock.txt: 2911) -.showede.com -# ||showdysl.com^ (advblock.txt: 2910) -.showdysl.com -# ||shoveac.com^ (advblock.txt: 2909) -.shoveac.com -# ||shotyfy.com^ (advblock.txt: 2908) -.shotyfy.com -# ||shotad.com^ (advblock.txt: 2907) -.shotad.com -# ||shigopo.ru^ (advblock.txt: 2906) -.shigopo.ru -# ||sheat.ru^ (advblock.txt: 2905) -.sheat.ru -# ||sexvrusko.org^ (advblock.txt: 2904) -.sexvrusko.org -# ||sexshop4ik.ru^ (advblock.txt: 2903) -.sexshop4ik.ru -# ||sexshop4ik.ru.swtest.ru^ (advblock.txt: 2902) -.sexshop4ik.ru.swtest.ru -# ||servized.com^ (advblock.txt: 2901) -.servized.com -# ||serving.plexop.net^ (advblock.txt: 2900) -.serving.plexop.net -# ||server2034.ru^ (advblock.txt: 2899) -.server2034.ru -# ||server-number-1.ru^$third-party (advblock.txt: 2898) -.server-number-1.ru -# ||serveac.com^ (advblock.txt: 2897) -.serveac.com -# ||serv7553.ru^$third-party (advblock.txt: 2896) -.serv7553.ru -# ||sernen.com^$third-party (advblock.txt: 2895) -.sernen.com -# ||sergh34ds.com^ (advblock.txt: 2894) -.sergh34ds.com -# ||serg.pics-money.ru^ (advblock.txt: 2893) -.serg.pics-money.ru -# ||senkevich-vk.net^ (advblock.txt: 2892) -.senkevich-vk.net -# ||seligers.ru^ (advblock.txt: 2891) -.seligers.ru -# ||seedr.ru^$third-party (advblock.txt: 2890) -.seedr.ru -# ||seedr.com^$third-party (advblock.txt: 2889) -.seedr.com -# ||seed.by^ (advblock.txt: 2888) -.seed.by -# ||searchfun.in^ (advblock.txt: 2887) -.searchfun.in -# ||sdx.ru^$third-party (advblock.txt: 2886) -.sdx.ru -# ||samiana.com^ (advblock.txt: 2885) -.samiana.com -# ||salutbook.ru^$third-party (advblock.txt: 2884) -.salutbook.ru -# ||salesdoubler.com.ua^$third-party (advblock.txt: 2883) -.salesdoubler.com.ua -# ||saferedirrect.com^ (advblock.txt: 2882) -.saferedirrect.com -# ||saferedd.com^ (advblock.txt: 2881) -.saferedd.com -# ||sadreno.com^$third-party (advblock.txt: 2880) -.sadreno.com -# ||s5block.com^$third-party (advblock.txt: 2879) -.s5block.com -# ||s1venus.com^$third-party (advblock.txt: 2878) -.s1venus.com -# ||ryehetywyt4.com^ (advblock.txt: 2877) -.ryehetywyt4.com -# ||rybkono.ru^ (advblock.txt: 2876) -.rybkono.ru -# ||rvzr-a.akamaihd.net^ (advblock.txt: 2875) -.rvzr-a.akamaihd.net -# ||rutvind.com^$third-party (advblock.txt: 2874) -.rutvind.com -# ||rutorads.com^$third-party (advblock.txt: 2873) -.rutorads.com -# ||rustiz.ru^ (advblock.txt: 2872) -.rustiz.ru -# ||rusprices.ru^$third-party (advblock.txt: 2871) -.rusprices.ru -# ||ruschopi.ru^$third-party (advblock.txt: 2870) -.ruschopi.ru -# ||ruigra.com^ (advblock.txt: 2869) -.ruigra.com -# ||ruad.net^ (advblock.txt: 2868) -.ruad.net -# ||rtmain.com^ (advblock.txt: 2867) -.rtmain.com -# ||rtdns.ru^ (advblock.txt: 2866) -.rtdns.ru -# ||rtbweb.com^ (advblock.txt: 2865) -.rtbweb.com -# ||rtbtraf.com^ (advblock.txt: 2864) -.rtbtraf.com -# ||rtbinternet.com^ (advblock.txt: 2863) -.rtbinternet.com -# ||rtbclick.net^$third-party (advblock.txt: 2862) -.rtbclick.net -# ||rtb-media.ru^$third-party (advblock.txt: 2861) -.rtb-media.ru -# ||rouhb.com^ (advblock.txt: 2860) -.rouhb.com -# ||rotationmessage.net^ (advblock.txt: 2859) -.rotationmessage.net -# ||rotation-web.net^ (advblock.txt: 2858) -.rotation-web.net -# ||rotation-message.net^ (advblock.txt: 2857) -.rotation-message.net -# ||rotation-media.net^ (advblock.txt: 2856) -.rotation-media.net -# ||rostok-de.com^ (advblock.txt: 2855) -.rostok-de.com -# ||roseemariepatterson.uk.to^ (advblock.txt: 2854) -.roseemariepatterson.uk.to -# ||rootinmyhead.ru^ (advblock.txt: 2853) -.rootinmyhead.ru -# ||romilit.com^ (advblock.txt: 2852) -.romilit.com -# ||rollovervk.net^ (advblock.txt: 2851) -.rollovervk.net -# ||rolloversl.net^ (advblock.txt: 2850) -.rolloversl.net -# ||rokno.com^ (advblock.txt: 2849) -.rokno.com -# ||robimobi.com^ (advblock.txt: 2848) -.robimobi.com -# ||rle.ru^ (advblock.txt: 2847) -.rle.ru -# ||richthof.com^ (advblock.txt: 2846) -.richthof.com -# ||rich-adv-code.net^ (advblock.txt: 2845) -.rich-adv-code.net -# ||reunice.com^ (advblock.txt: 2844) -.reunice.com -# ||returso.com^ (advblock.txt: 2843) -.returso.com -# ||republer.com^$third-party (advblock.txt: 2842) -.republer.com -# ||reklamadarom.com^ (advblock.txt: 2841) -.reklamadarom.com -# ||regpole.com^$third-party (advblock.txt: 2840) -.regpole.com -# ||regisg.com^ (advblock.txt: 2839) -.regisg.com -# ||redirrtosite.com^ (advblock.txt: 2838) -.redirrtosite.com -# ||redclick.ru^$third-party (advblock.txt: 2837) -.redclick.ru -# ||redavu.ru^ (advblock.txt: 2836) -.redavu.ru -# ||reborko.com^$third-party (advblock.txt: 2835) -.reborko.com -# ||realtraf9.ru^ (advblock.txt: 2834) -.realtraf9.ru -# ||realtraf3.ru^ (advblock.txt: 2833) -.realtraf3.ru -# ||realtraf.$third-party,~popup,popup (advblock.txt: 2832) -.realtraf.*. -# ||realdomenclear.ru^ (advblock.txt: 2831) -.realdomenclear.ru -# ||ready4win.com^ (advblock.txt: 2830) -.ready4win.com -# ||reacten.com^ (advblock.txt: 2829) -.reacten.com -# ||rdiul.com^$third-party (advblock.txt: 2828) -.rdiul.com -# ||rb-net.com^ (advblock.txt: 2827) -.rb-net.com -# ||ravnovesienews.ru^$third-party (advblock.txt: 2826) -.ravnovesienews.ru -# ||ravishstroke.in^ (advblock.txt: 2825) -.ravishstroke.in -# ||ratioboom.ru^$third-party (advblock.txt: 2824) -.ratioboom.ru -# ||qwertypay.com^$third-party (advblock.txt: 2823) -.qwertypay.com -# ||qtymi.com^$third-party (advblock.txt: 2822) -.qtymi.com -# ||qrstes.com^ (advblock.txt: 2821) -.qrstes.com -# ||qrdeom.com^ (advblock.txt: 2820) -.qrdeom.com -# ||qractv.com^ (advblock.txt: 2819) -.qractv.com -# ||qmebelist.ru^ (advblock.txt: 2818) -.qmebelist.ru -# ||qload.ru^$third-party (advblock.txt: 2817) -.qload.ru -# ||qcvdwtpnit.ru^ (advblock.txt: 2816) -.qcvdwtpnit.ru -# ||qbann.ru^$third-party (advblock.txt: 2815) -.qbann.ru -# ||qaadv.com^ (advblock.txt: 2814) -.qaadv.com -# ||puttyac.com^ (advblock.txt: 2813) -.puttyac.com -# ||puhtml.com^$third-party (advblock.txt: 2812) -.puhtml.com -# ||publicitysmart.com^ (advblock.txt: 2811) -.publicitysmart.com -# ||ptredir.com^ (advblock.txt: 2810) -.ptredir.com -# ||psnets.com^ (advblock.txt: 2809) -.psnets.com -# ||psmardr.com^$third-party (advblock.txt: 2808) -.psmardr.com -# ||psma03.com^$third-party (advblock.txt: 2807) -.psma03.com -# ||psma02.com^$third-party (advblock.txt: 2806) -.psma02.com -# ||psma01.com^$third-party (advblock.txt: 2805) -.psma01.com -# ||prozapas.dn.ua^ (advblock.txt: 2804) -.prozapas.dn.ua -# ||protrafv2.com^ (advblock.txt: 2803) -.protrafv2.com -# ||proteaser.com^ (advblock.txt: 2802) -.proteaser.com -# ||proravnovesie.ru^ (advblock.txt: 2801) -.proravnovesie.ru -# ||proravenstvo.ru^ (advblock.txt: 2800) -.proravenstvo.ru -# ||promoworld.pw^$third-party (advblock.txt: 2799) -.promoworld.pw -# ||promocns.com^$third-party (advblock.txt: 2798) -.promocns.com -# ||promocenter.biz^$third-party (advblock.txt: 2797) -.promocenter.biz -# ||promobuster.org^ (advblock.txt: 2796) -.promobuster.org -# ||promoboom.org^ (advblock.txt: 2795) -.promoboom.org -# ||promoblocks.ru^ (advblock.txt: 2794) -.promoblocks.ru -# ||promobit.pw^ (advblock.txt: 2793) -.promobit.pw -# ||promedia-click.ru^ (advblock.txt: 2792) -.promedia-click.ru -# ||proligtb.com^ (advblock.txt: 2791) -.proligtb.com -# ||priesty.com^ (advblock.txt: 2790) -.priesty.com -# ||precision-machining-tw.com^ (advblock.txt: 2789) -.precision-machining-tw.com -# ||prbn.ru^ (advblock.txt: 2788) -.prbn.ru -# ||pr28.com^ (advblock.txt: 2787) -.pr28.com -# ||ppvlj.com^$~third-party (advblock.txt: 2786) -.ppvlj.com -# ||povyspo.ru^$third-party (advblock.txt: 2785) -.povyspo.ru -# ||povtotse.ru^ (advblock.txt: 2784) -.povtotse.ru -# ||poulop.com^ (advblock.txt: 2783) -.poulop.com -# ||porhuk.com^$third-party (advblock.txt: 2782) -.porhuk.com -# ||popunder-mladnet.medialand.ru (advblock.txt: 2781) -.popunder-mladnet.medialand.ru*. -# ||pop-under.ru^ (advblock.txt: 2780) -.pop-under.ru -# ||poollast.com^ (advblock.txt: 2779) -.poollast.com -# ||pomtiy.com^ (advblock.txt: 2778) -.pomtiy.com -# ||polisrtb.com^ (advblock.txt: 2777) -.polisrtb.com -# ||polimadv.com^ (advblock.txt: 2776) -.polimadv.com -# ||pokutaf.com^$third-party (advblock.txt: 2775) -.pokutaf.com -# ||pokitom.com^ (advblock.txt: 2774) -.pokitom.com -# ||poketall.ru^ (advblock.txt: 2773) -.poketall.ru -# ||pointrtb.com^ (advblock.txt: 2772) -.pointrtb.com -# ||pointclc.com^ (advblock.txt: 2771) -.pointclc.com -# ||plus-2launch.biz^ (advblock.txt: 2770) -.plus-2launch.biz -# ||pluginsjquery.com^$third-party (advblock.txt: 2769) -.pluginsjquery.com -# ||plomihy.com^ (advblock.txt: 2768) -.plomihy.com -# ||planeta-online.tv^$third-party (advblock.txt: 2767) -.planeta-online.tv -# ||planeta-fresh.ru^$third-party (advblock.txt: 2766) -.planeta-fresh.ru -# ||pketred.com^ (advblock.txt: 2765) -.pketred.com -# ||piroji.com^ (advblock.txt: 2764) -.piroji.com -# ||pidarunki.ru^ (advblock.txt: 2763) -.pidarunki.ru -# ||pichyefu.ru^ (advblock.txt: 2762) -.pichyefu.ru -# ||peoplemobile.ru^ (advblock.txt: 2761) -.peoplemobile.ru -# ||pentoch.com^$third-party (advblock.txt: 2760) -.pentoch.com -# ||pdmayt.com^ (advblock.txt: 2759) -.pdmayt.com -# ||pcads.ru^ (advblock.txt: 2758) -.pcads.ru -# ||pcable.ru^ (advblock.txt: 2757) -.pcable.ru -# ||pazt.in^ (advblock.txt: 2756) -.pazt.in -# ||paymonsters.biz^ (advblock.txt: 2755) -.paymonsters.biz -# ||paybrides.org^ (advblock.txt: 2754) -.paybrides.org -# ||payandpray.ru^ (advblock.txt: 2753) -.payandpray.ru -# ||pautina.mobi^ (advblock.txt: 2752) -.pautina.mobi -# ||pastilon.com^ (advblock.txt: 2751) -.pastilon.com -# ||paramedjo.com^ (advblock.txt: 2750) -.paramedjo.com -# ||palandan.com^ (advblock.txt: 2749) -.palandan.com -# ||p2m0001.com^ (advblock.txt: 2748) -.p2m0001.com -# ||oyy.ru^$third-party (advblock.txt: 2747) -.oyy.ru -# ||oxn.gerkon.eu^ (advblock.txt: 2746) -.oxn.gerkon.eu -# ||overridingnichts.in^ (advblock.txt: 2745) -.overridingnichts.in -# ||ovap.in^ (advblock.txt: 2744) -.ovap.in -# ||outwitch.com^ (advblock.txt: 2743) -.outwitch.com -# ||ou2ie.ru^ (advblock.txt: 2742) -.ou2ie.ru -# ||otclick-adv.ru^$third-party (advblock.txt: 2741) -.otclick-adv.ru -# ||orbit.lun.ua^ (advblock.txt: 2740) -.orbit.lun.ua -# ||oqida.ru^$third-party (advblock.txt: 2739) -.oqida.ru -# ||opyavar.ru^ (advblock.txt: 2738) -.opyavar.ru -# ||opresat.ru^ (advblock.txt: 2737) -.opresat.ru -# ||openmace.net^ (advblock.txt: 2736) -.openmace.net -# ||opendone.net^ (advblock.txt: 2735) -.opendone.net -# ||ooredrr.com^ (advblock.txt: 2734) -.ooredrr.com -# ||ontagru.ru^$third-party (advblock.txt: 2733) -.ontagru.ru -# ||onlinerotator.net^ (advblock.txt: 2732) -.onlinerotator.net -# ||onlineredirr.com^ (advblock.txt: 2731) -.onlineredirr.com -# ||online-path.com^ (advblock.txt: 2730) -.online-path.com -# ||oneund.ru^ (advblock.txt: 2729) -.oneund.ru -# ||oneund.com^ (advblock.txt: 2728) -.oneund.com -# ||one-bmedia.ru^ (advblock.txt: 2727) -.one-bmedia.ru -# ||omynews.net^$third-party (advblock.txt: 2726) -.omynews.net -# ||omoby.net^ (advblock.txt: 2725) -.omoby.net -# ||olizyr.com^ (advblock.txt: 2724) -.olizyr.com -# ||oirplane.com^ (advblock.txt: 2723) -.oirplane.com -# ||odinkod.ru^ (advblock.txt: 2722) -.odinkod.ru -# ||od3ai.ru^ (advblock.txt: 2721) -.od3ai.ru -# ||ochze.com^$third-party (advblock.txt: 2720) -.ochze.com -# ||obnale.ru^ (advblock.txt: 2719) -.obnale.ru -# ||obhodsb.com^$third-party (advblock.txt: 2718) -.obhodsb.com -# ||nyyed.com^ (advblock.txt: 2717) -.nyyed.com -# ||nwmum.com^ (advblock.txt: 2716) -.nwmum.com -# ||nvjqm.com^ (advblock.txt: 2715) -.nvjqm.com -# ||numking.com^ (advblock.txt: 2714) -.numking.com -# ||numberia.com^ (advblock.txt: 2713) -.numberia.com -# ||nuigyin.net^ (advblock.txt: 2712) -.nuigyin.net -# ||ntvk1.ru^$third-party (advblock.txt: 2711) -.ntvk1.ru -# ||nrged.com^ (advblock.txt: 2710) -.nrged.com -# ||nostushi.ru^ (advblock.txt: 2709) -.nostushi.ru -# ||noptes.ru^ (advblock.txt: 2708) -.noptes.ru -# ||nonoqcm.net^ (advblock.txt: 2707) -.nonoqcm.net -# ||nolix.ru^ (advblock.txt: 2706) -.nolix.ru -# ||noblok.com^ (advblock.txt: 2705) -.noblok.com -# ||nihewfi.net^ (advblock.txt: 2704) -.nihewfi.net -# ||nigvbyd.net^ (advblock.txt: 2703) -.nigvbyd.net -# ||nickhel.com^$third-party (advblock.txt: 2702) -.nickhel.com -# ||nextclick.com.ua^$third-party (advblock.txt: 2701) -.nextclick.com.ua -# ||newsteaser.ru^ (advblock.txt: 2700) -.newsteaser.ru -# ||newsmarket.pixarea.ru^ (advblock.txt: 2699) -.newsmarket.pixarea.ru -# ||newsanons.ru^$third-party (advblock.txt: 2698) -.newsanons.ru -# ||news-announce.org^ (advblock.txt: 2697) -.news-announce.org -# ||newlixica.com^ (advblock.txt: 2696) -.newlixica.com -# ||newanons.ru^$third-party,script (advblock.txt: 2695) -.newanons.ru -# ||netrotator.net^ (advblock.txt: 2694) -.netrotator.net -# ||nepalon.com^ (advblock.txt: 2693) -.nepalon.com -# ||neotizer.com^ (advblock.txt: 2692) -.neotizer.com -# ||neomion.com^ (advblock.txt: 2691) -.neomion.com -# ||naxerposlan.com^ (advblock.txt: 2690) -.naxerposlan.com -# ||nav-links.com^ (advblock.txt: 2689) -.nav-links.com -# ||nasledstvo.int.ru^ (advblock.txt: 2688) -.nasledstvo.int.ru -# ||naiton.ru^*/lookbanner/ (advblock.txt: 2687) -.naiton.ru/.*/lookbanner/ -# ||n278adserv.com^$third-party (advblock.txt: 2686) -.n278adserv.com -# ||n161adserv.com^$third-party (advblock.txt: 2685) -.n161adserv.com -# ||mytraff.net^$~popup,popup (advblock.txt: 2684) -.mytraff.net -# ||mytizer.com^ (advblock.txt: 2683) -.mytizer.com -# ||mynagor.com^ (advblock.txt: 2682) -.mynagor.com -# ||mycpm.ru^$third-party (advblock.txt: 2681) -.mycpm.ru -# ||myarusel.gpor.ru^$third-party (advblock.txt: 2680) -.myarusel.gpor.ru -# ||myads.ru^ (advblock.txt: 2679) -.myads.ru -# ||mxttrf.com^$third-party (advblock.txt: 2678) -.mxttrf.com -# ||mxpopad.com^ (advblock.txt: 2677) -.mxpopad.com -# ||mxccs.com^$third-party (advblock.txt: 2676) -.mxccs.com -# ||muzomuz.ru^ (advblock.txt: 2675) -.muzomuz.ru -# ||muzokit.ru^ (advblock.txt: 2674) -.muzokit.ru -# ||mutrik.com^$third-party (advblock.txt: 2673) -.mutrik.com -# ||musicmaargarit63.uk.to^ (advblock.txt: 2672) -.musicmaargarit63.uk.to -# ||mukipol.com^ (advblock.txt: 2671) -.mukipol.com -# ||mubra.ru^ (advblock.txt: 2670) -.mubra.ru -# ||msrv.su^$third-party (advblock.txt: 2669) -.msrv.su -# ||mscimg.com^ (advblock.txt: 2668) -.mscimg.com -# ||mrs-twister.ru^$third-party (advblock.txt: 2667) -.mrs-twister.ru -# ||morenews4.net^ (advblock.txt: 2666) -.morenews4.net -# ||morenews3.net^ (advblock.txt: 2665) -.morenews3.net -# ||morenews2.net^ (advblock.txt: 2664) -.morenews2.net -# ||morenews1.net^ (advblock.txt: 2663) -.morenews1.net -# ||moreget.net^ (advblock.txt: 2662) -.moreget.net -# ||more427.net^ (advblock.txt: 2661) -.more427.net -# ||more152.net^ (advblock.txt: 2660) -.more152.net -# ||moonhappy.ru^ (advblock.txt: 2659) -.moonhappy.ru -# ||monox.org/getcode. (advblock.txt: 2658) -.monox.org/getcode\. -# ||moipep.com^$third-party (advblock.txt: 2657) -.moipep.com -# ||modverka.ru^ (advblock.txt: 2656) -.modverka.ru -# ||modelatos.com^ (advblock.txt: 2655) -.modelatos.com -# ||mobyrol.com^ (advblock.txt: 2654) -.mobyrol.com -# ||mobred.net^ (advblock.txt: 2653) -.mobred.net -# ||mobraner.com^ (advblock.txt: 2652) -.mobraner.com -# ||mobnumbers.com^ (advblock.txt: 2651) -.mobnumbers.com -# ||mobitds.ru^$third-party (advblock.txt: 2650) -.mobitds.ru -# ||mobirollru.com^ (advblock.txt: 2649) -.mobirollru.com -# ||mobirollcom.ru^ (advblock.txt: 2648) -.mobirollcom.ru -# ||mobioffers.ru^$third-party (advblock.txt: 2647) -.mobioffers.ru -# ||mobiloba.com^ (advblock.txt: 2646) -.mobiloba.com -# ||mobiledirectors.com^ (advblock.txt: 2645) -.mobiledirectors.com -# ||mobikont.com^ (advblock.txt: 2644) -.mobikont.com -# ||mobidump.com^ (advblock.txt: 2643) -.mobidump.com -# ||mobbober.com^ (advblock.txt: 2642) -.mobbober.com -# ||mobapeople.com^ (advblock.txt: 2641) -.mobapeople.com -# ||mobalert.net^ (advblock.txt: 2640) -.mobalert.net -# ||mob2web.com^ (advblock.txt: 2639) -.mob2web.com -# ||mixadvert.com^$third-party (advblock.txt: 2638) -.mixadvert.com -# ||mirskidok.net^ (advblock.txt: 2637) -.mirskidok.net -# ||miokoo.com^ (advblock.txt: 2636) -.miokoo.com -# ||midlemee.ru^ (advblock.txt: 2635) -.midlemee.ru -# ||microads.ru^ (advblock.txt: 2634) -.microads.ru -# ||mhkx4.ru^ (advblock.txt: 2633) -.mhkx4.ru -# ||mgogo.ru^ (advblock.txt: 2632) -.mgogo.ru -# ||mezima.com^ (advblock.txt: 2631) -.mezima.com -# ||mestmaster.ru^ (advblock.txt: 2630) -.mestmaster.ru -# ||message-site.net^ (advblock.txt: 2629) -.message-site.net -# ||mesopo.ru^ (advblock.txt: 2628) -.mesopo.ru -# ||meow-x.com^ (advblock.txt: 2627) -.meow-x.com -# ||menuse.ru^ (advblock.txt: 2626) -.menuse.ru -# ||mendir.ru^ (advblock.txt: 2625) -.mendir.ru -# ||menato.ru^ (advblock.txt: 2624) -.menato.ru -# ||mementes.com^ (advblock.txt: 2623) -.mementes.com -# ||mekadr.com^ (advblock.txt: 2622) -.mekadr.com -# ||megasliv.com^ (advblock.txt: 2621) -.megasliv.com -# ||megartb.com^ (advblock.txt: 2620) -.megartb.com -# ||megaindex.ru*/banner/ (advblock.txt: 2619) -.megaindex.ru*./(.*/)?banner/ -# ||megactds6.net^ (advblock.txt: 2618) -.megactds6.net -# ||medpiar.ru^ (advblock.txt: 2617) -.medpiar.ru -# ||medigaly.com^ (advblock.txt: 2616) -.medigaly.com -# ||mediaunder.us^$~popup,popup (advblock.txt: 2615) -.mediaunder.us -# ||mediaunder.org^ (advblock.txt: 2614) -.mediaunder.org -# ||mediatoday.ru^$third-party (advblock.txt: 2613) -.mediatoday.ru -# ||mediateas.com^ (advblock.txt: 2612) -.mediateas.com -# ||mediaskyline.ru^$third-party (advblock.txt: 2611) -.mediaskyline.ru -# ||mediarotator.ru^ (advblock.txt: 2610) -.mediarotator.ru -# ||mediarotator.net^ (advblock.txt: 2609) -.mediarotator.net -# ||mediarichcode.ru^ (advblock.txt: 2608) -.mediarichcode.ru -# ||mediarich.ws^ (advblock.txt: 2607) -.mediarich.ws -# ||mediarich.us^ (advblock.txt: 2606) -.mediarich.us -# ||mediarich.ru^ (advblock.txt: 2605) -.mediarich.ru -# ||mediarich.cc^ (advblock.txt: 2604) -.mediarich.cc -# ||mediarich-code.ru^ (advblock.txt: 2603) -.mediarich-code.ru -# ||medianaft.ru^$third-party (advblock.txt: 2602) -.medianaft.ru -# ||medianaft.com^$third-party (advblock.txt: 2601) -.medianaft.com -# ||medialand.ru/code? (advblock.txt: 2600) -.medialand.ru/code\? -# ||mediakadr.ru^$third-party (advblock.txt: 2599) -.mediakadr.ru -# ||mediaip.ru^ (advblock.txt: 2598) -.mediaip.ru -# ||mediadar.ru^ (advblock.txt: 2597) -.mediadar.ru -# ||mediacot.com^ (advblock.txt: 2596) -.mediacot.com -# ||media.adrcdn.com^ (advblock.txt: 2595) -.media.adrcdn.com -# ||media-storage.org^$third-party (advblock.txt: 2594) -.media-storage.org -# ||media-rotator.net^ (advblock.txt: 2593) -.media-rotator.net -# ||media-rotation.net^ (advblock.txt: 2592) -.media-rotation.net -# ||media-rich.ru^ (advblock.txt: 2591) -.media-rich.ru -# ||media-kod.net^ (advblock.txt: 2590) -.media-kod.net -# ||medads.ru^$third-party (advblock.txt: 2589) -.medads.ru -# ||med22iwqeq.ru^ (advblock.txt: 2588) -.med22iwqeq.ru -# ||mdlo324fsd.ru^ (advblock.txt: 2587) -.mdlo324fsd.ru -# ||mdeih.com^$third-party (advblock.txt: 2586) -.mdeih.com -# ||mb.vesti.ru^ (advblock.txt: 2585) -.mb.vesti.ru -# ||mb.rian.ru^ (advblock.txt: 2584) -.mb.rian.ru -# ||mb.interfax.ru^ (advblock.txt: 2583) -.mb.interfax.ru -# ||mb.akado.ru^ (advblock.txt: 2582) -.mb.akado.ru -# ||mayvbm.com^$third-party (advblock.txt: 2581) -.mayvbm.com -# ||maxtraff.com^$~popup,popup (advblock.txt: 2580) -.maxtraff.com -# ||maxforta.com^ (advblock.txt: 2579) -.maxforta.com -# ||mateast.com^ (advblock.txt: 2578) -.mateast.com -# ||masudel.com^ (advblock.txt: 2577) -.masudel.com -# ||masterdomain24.com^$third-party (advblock.txt: 2576) -.masterdomain24.com -# ||masterconvert.ru^ (advblock.txt: 2575) -.masterconvert.ru -# ||martakava.ru^ (advblock.txt: 2574) -.martakava.ru -# ||markhab.ru^ (advblock.txt: 2573) -.markhab.ru -# ||manuelu.com^ (advblock.txt: 2572) -.manuelu.com -# ||managedcollapsed.in^ (advblock.txt: 2571) -.managedcollapsed.in -# ||mamypos.com^ (advblock.txt: 2570) -.mamypos.com -# ||mainclc.com^ (advblock.txt: 2569) -.mainclc.com -# ||magicanfy.com^ (advblock.txt: 2568) -.magicanfy.com -# ||madnet.ru^$third-party (advblock.txt: 2567) -.madnet.ru -# ||mabirol.com^ (advblock.txt: 2566) -.mabirol.com -# ||ma-static.ru^$third-party (advblock.txt: 2565) -.ma-static.ru -# ||lydiz.com^ (advblock.txt: 2564) -.lydiz.com -# ||lycosy.com^ (advblock.txt: 2563) -.lycosy.com -# ||lycosu.com^ (advblock.txt: 2562) -.lycosu.com -# ||lycodz.com^ (advblock.txt: 2561) -.lycodz.com -# ||lvuic.com^$third-party (advblock.txt: 2560) -.lvuic.com -# ||lvkwz.com^ (advblock.txt: 2559) -.lvkwz.com -# ||luxtraffic.ru^ (advblock.txt: 2558) -.luxtraffic.ru -# ||luxads.net^$third-party (advblock.txt: 2557) -.luxads.net -# ||luredac.com^ (advblock.txt: 2556) -.luredac.com -# ||luisardo.com^ (advblock.txt: 2555) -.luisardo.com -# ||lugiy.ru^ (advblock.txt: 2554) -.lugiy.ru -# ||luckysearcher.ru^ (advblock.txt: 2553) -.luckysearcher.ru -# ||luckyade.ru^ (advblock.txt: 2552) -.luckyade.ru -# ||lstay.com^ (advblock.txt: 2551) -.lstay.com -# ||lresoza.ru^$third-party (advblock.txt: 2550) -.lresoza.ru -# ||lotomoney.biz^ (advblock.txt: 2549) -.lotomoney.biz -# ||lopytol.com^ (advblock.txt: 2548) -.lopytol.com -# ||loponop.com^ (advblock.txt: 2547) -.loponop.com -# ||lopitus.com^ (advblock.txt: 2546) -.lopitus.com -# ||lookrtb.com^ (advblock.txt: 2545) -.lookrtb.com -# ||looker9.ru^ (advblock.txt: 2544) -.looker9.ru -# ||look4file.ru^ (advblock.txt: 2543) -.look4file.ru -# ||loneday.com^ (advblock.txt: 2542) -.loneday.com -# ||lomtor.com^$third-party (advblock.txt: 2541) -.lomtor.com -# ||locoday.com^ (advblock.txt: 2540) -.locoday.com -# ||locandito.com^ (advblock.txt: 2539) -.locandito.com -# ||lmcuba.us^ (advblock.txt: 2538) -.lmcuba.us -# ||ljteas.com^ (advblock.txt: 2537) -.ljteas.com -# ||livingy.com^ (advblock.txt: 2536) -.livingy.com -# ||livesurf.ru^$third-party (advblock.txt: 2535) -.livesurf.ru -# ||livea.ru^ (advblock.txt: 2534) -.livea.ru -# ||live-advert.net^ (advblock.txt: 2533) -.live-advert.net -# ||litiumo.com^ (advblock.txt: 2532) -.litiumo.com -# ||listof.mobi^ (advblock.txt: 2531) -.listof.mobi -# ||lisamobile.ru^ (advblock.txt: 2530) -.lisamobile.ru -# ||liolexina.com^ (advblock.txt: 2529) -.liolexina.com -# ||linkwall.ru^$third-party (advblock.txt: 2528) -.linkwall.ru -# ||linkupper.ru^ (advblock.txt: 2527) -.linkupper.ru -# ||linkunder.ru^$third-party (advblock.txt: 2526) -.linkunder.ru -# ||linksviewer2013.com^ (advblock.txt: 2525) -.linksviewer2013.com -# ||linkslot.ru^$third-party (advblock.txt: 2524) -.linkslot.ru -# ||links-wm.ru^$third-party (advblock.txt: 2523) -.links-wm.ru -# ||linkpeoples.com^ (advblock.txt: 2522) -.linkpeoples.com -# ||linkodir.ru^ (advblock.txt: 2521) -.linkodir.ru -# ||linkerlink.ru^ (advblock.txt: 2520) -.linkerlink.ru -# ||linkerfast.ru^ (advblock.txt: 2519) -.linkerfast.ru -# ||linicom.com^$third-party (advblock.txt: 2518) -.linicom.com -# ||limonadsources.ru^ (advblock.txt: 2517) -.limonadsources.ru -# ||limo20.ru^$third-party (advblock.txt: 2516) -.limo20.ru -# ||likondok.com^ (advblock.txt: 2515) -.likondok.com -# ||liendans.com^ (advblock.txt: 2514) -.liendans.com -# ||lidicando.com^ (advblock.txt: 2513) -.lidicando.com -# ||lidetds.net^ (advblock.txt: 2512) -.lidetds.net -# ||lexament.com^ (advblock.txt: 2511) -.lexament.com -# ||levrico.com^ (advblock.txt: 2510) -.levrico.com -# ||letmelook.net^$third-party (advblock.txt: 2509) -.letmelook.net -# ||leruanmarket.ru^ (advblock.txt: 2508) -.leruanmarket.ru -# ||lequ6.ru^ (advblock.txt: 2507) -.lequ6.ru -# ||lepubs.com^$third-party (advblock.txt: 2506) -.lepubs.com -# ||leforma.com^ (advblock.txt: 2505) -.leforma.com -# ||leashac.com^ (advblock.txt: 2504) -.leashac.com -# ||leadzu.com^$third-party (advblock.txt: 2503) -.leadzu.com -# ||lcads.ru^ (advblock.txt: 2502) -.lcads.ru -# ||laughtill.net^ (advblock.txt: 2501) -.laughtill.net -# ||largelydi.com^ (advblock.txt: 2500) -.largelydi.com -# ||lareson.com^ (advblock.txt: 2499) -.lareson.com -# ||lapumo.com^$third-party (advblock.txt: 2498) -.lapumo.com -# ||lapeduzis.org^ (advblock.txt: 2497) -.lapeduzis.org -# ||langueur.com^ (advblock.txt: 2496) -.langueur.com -# ||ladytizer.com^ (advblock.txt: 2495) -.ladytizer.com -# ||ladycoin.ru^ (advblock.txt: 2494) -.ladycoin.ru -# ||ladyclicks8.ru^ (advblock.txt: 2493) -.ladyclicks8.ru -# ||ladyclicks2.ru^ (advblock.txt: 2492) -.ladyclicks2.ru -# ||ladyclicks.ru^ (advblock.txt: 2491) -.ladyclicks.ru -# ||ladycash.ru^ (advblock.txt: 2490) -.ladycash.ru -# ||ladyads.ru^$third-party (advblock.txt: 2489) -.ladyads.ru -# ||lady-clicks.ru^ (advblock.txt: 2488) -.lady-clicks.ru -# ||ladiesnadosuge.com^$third-party (advblock.txt: 2487) -.ladiesnadosuge.com -# ||lachest.com^ (advblock.txt: 2486) -.lachest.com -# ||lachee.com^ (advblock.txt: 2485) -.lachee.com -# ||lacest.com^ (advblock.txt: 2484) -.lacest.com -# ||lacemme.com^ (advblock.txt: 2483) -.lacemme.com -# ||lacembre.com^ (advblock.txt: 2482) -.lacembre.com -# ||labadon.com^ (advblock.txt: 2481) -.labadon.com -# ||kvvadrat.net^ (advblock.txt: 2480) -.kvvadrat.net -# ||kvihit.com^ (advblock.txt: 2479) -.kvihit.com -# ||kuveres.com^$third-party (advblock.txt: 2478) -.kuveres.com -# ||kupivip.ru^$third-party (advblock.txt: 2477) -.kupivip.ru -# ||krab-studio.ru^ (advblock.txt: 2476) -.krab-studio.ru -# ||koviovius.com^ (advblock.txt: 2475) -.koviovius.com -# ||korenizsemi.net^ (advblock.txt: 2474) -.korenizsemi.net -# ||koluty.com^ (advblock.txt: 2473) -.koluty.com -# ||kolitter.com^ (advblock.txt: 2472) -.kolitter.com -# ||kolites.com^ (advblock.txt: 2471) -.kolites.com -# ||koliser.com^ (advblock.txt: 2470) -.koliser.com -# ||kohx3.ru^ (advblock.txt: 2469) -.kohx3.ru -# ||koe-dv.net^ (advblock.txt: 2468) -.koe-dv.net -# ||knewy.com^ (advblock.txt: 2467) -.knewy.com -# ||knc.lv^$third-party (advblock.txt: 2466) -.knc.lv -# ||kma1.biz^ (advblock.txt: 2465) -.kma1.biz -# ||klyuchev.in.ua^ (advblock.txt: 2464) -.klyuchev.in.ua -# ||kjgh5o.com^ (advblock.txt: 2463) -.kjgh5o.com -# ||kiworeequnasaw.info^ (advblock.txt: 2462) -.kiworeequnasaw.info -# ||kitopr.com^ (advblock.txt: 2461) -.kitopr.com -# ||kistured.com^ (advblock.txt: 2460) -.kistured.com -# ||kisakuku.org^ (advblock.txt: 2459) -.kisakuku.org -# ||kinopromobase2.ru^ (advblock.txt: 2458) -.kinopromobase2.ru -# ||kinopromobase.ru^ (advblock.txt: 2457) -.kinopromobase.ru -# ||kinokayf.com^ (advblock.txt: 2456) -.kinokayf.com -# ||kinoget.tv^ (advblock.txt: 2455) -.kinoget.tv -# ||kin0.biz^$third-party (advblock.txt: 2454) -.kin0.biz -# ||kimus.ru^ (advblock.txt: 2453) -.kimus.ru -# ||kadavara.com^ (advblock.txt: 2452) -.kadavara.com -# ||kadanoda.ru^ (advblock.txt: 2451) -.kadanoda.ru -# ||kadam.net^$third-party (advblock.txt: 2450) -.kadam.net -# ||jxrhjcb.biz^ (advblock.txt: 2449) -.jxrhjcb.biz -# ||jutulep.com^ (advblock.txt: 2448) -.jutulep.com -# ||jump-wap.com^ (advblock.txt: 2447) -.jump-wap.com -# ||jsutils.net^ (advblock.txt: 2446) -.jsutils.net -# ||jsc.tovarro.com^ (advblock.txt: 2445) -.jsc.tovarro.com -# ||jrfced.com^ (advblock.txt: 2444) -.jrfced.com -# ||jpqgs.com^$third-party (advblock.txt: 2443) -.jpqgs.com -# ||jorjfix.ru^ (advblock.txt: 2442) -.jorjfix.ru -# ||jkolp.com^ (advblock.txt: 2441) -.jkolp.com -# ||jjabr.com^ (advblock.txt: 2440) -.jjabr.com -# ||jfveak.com^ (advblock.txt: 2439) -.jfveak.com -# ||jfduv7.com^ (advblock.txt: 2438) -.jfduv7.com -# ||jbugk.com^ (advblock.txt: 2437) -.jbugk.com -# ||jadedi.com^ (advblock.txt: 2436) -.jadedi.com -# ||ixtyted.ru^ (advblock.txt: 2435) -.ixtyted.ru -# ||ivsiveg.ru^$third-party (advblock.txt: 2434) -.ivsiveg.ru -# ||ivantat.com^ (advblock.txt: 2433) -.ivantat.com -# ||ivanie.com^ (advblock.txt: 2432) -.ivanie.com -# ||ivances.com^ (advblock.txt: 2431) -.ivances.com -# ||ivancept.com^ (advblock.txt: 2430) -.ivancept.com -# ||itpodol.ru^$third-party,popup (advblock.txt: 2429) -.itpodol.ru -# ||istokiku.ru^ (advblock.txt: 2428) -.istokiku.ru -# ||islamclick.ru^ (advblock.txt: 2427) -.islamclick.ru -# ||iredirr.com^ (advblock.txt: 2426) -.iredirr.com -# ||ipmarte.ru^ (advblock.txt: 2425) -.ipmarte.ru -# ||intimcity.net^ (advblock.txt: 2424) -.intimcity.net -# ||intimcity.com^$third-party (advblock.txt: 2423) -.intimcity.com -# ||intim40.com^ (advblock.txt: 2422) -.intim40.com -# ||interieu.com^ (advblock.txt: 2421) -.interieu.com -# ||intelligencehost.net^$third-party (advblock.txt: 2420) -.intelligencehost.net -# ||inferalton.com^ (advblock.txt: 2419) -.inferalton.com -# ||inetrek.com^$third-party (advblock.txt: 2418) -.inetrek.com -# ||indcoest.com^$third-party (advblock.txt: 2417) -.indcoest.com -# ||inctivee.com^ (advblock.txt: 2416) -.inctivee.com -# ||incielle.com^ (advblock.txt: 2415) -.incielle.com -# ||impromot.com^ (advblock.txt: 2414) -.impromot.com -# ||imparfum.com^ (advblock.txt: 2413) -.imparfum.com -# ||impannon.com^ (advblock.txt: 2412) -.impannon.com -# ||imamby.ru^ (advblock.txt: 2411) -.imamby.ru -# ||image325.ru^$third-party (advblock.txt: 2410) -.image325.ru -# ||imagans.com^ (advblock.txt: 2409) -.imagans.com -# ||im9-tub.com^ (advblock.txt: 2408) -.im9-tub.com -# ||im8-tub.com^ (advblock.txt: 2407) -.im8-tub.com -# ||im7-tub.com^ (advblock.txt: 2406) -.im7-tub.com -# ||im6-tub.com^ (advblock.txt: 2405) -.im6-tub.com -# ||im5-tub.com^ (advblock.txt: 2404) -.im5-tub.com -# ||im4-tub.com^ (advblock.txt: 2403) -.im4-tub.com -# ||im3-tub.com^ (advblock.txt: 2402) -.im3-tub.com -# ||im2-tub.com^ (advblock.txt: 2401) -.im2-tub.com -# ||im1-tub.com^ (advblock.txt: 2400) -.im1-tub.com -# ||iluzur.com^ (advblock.txt: 2399) -.iluzur.com -# ||ilopotun.com^ (advblock.txt: 2398) -.ilopotun.com -# ||illiap.com^ (advblock.txt: 2397) -.illiap.com -# ||illiages.com^ (advblock.txt: 2396) -.illiages.com -# ||illiage.com^ (advblock.txt: 2395) -.illiage.com -# ||ileads.ru^$third-party (advblock.txt: 2394) -.ileads.ru -# ||ikolop.com^ (advblock.txt: 2393) -.ikolop.com -# ||ikk2gh.eu^ (advblock.txt: 2392) -.ikk2gh.eu -# ||ikersont.com^ (advblock.txt: 2391) -.ikersont.com -# ||ihlasbe.ru^ (advblock.txt: 2390) -.ihlasbe.ru -# ||icqadvert.net^ (advblock.txt: 2389) -.icqadvert.net -# ||icqadve.net^ (advblock.txt: 2388) -.icqadve.net -# ||icqadv.net^ (advblock.txt: 2387) -.icqadv.net -# ||icqad018.net^ (advblock.txt: 2386) -.icqad018.net -# ||icqad017.net^ (advblock.txt: 2385) -.icqad017.net -# ||icqad016.net^ (advblock.txt: 2384) -.icqad016.net -# ||icqad015.net^ (advblock.txt: 2383) -.icqad015.net -# ||icqad014.net^ (advblock.txt: 2382) -.icqad014.net -# ||icqad013.net^ (advblock.txt: 2381) -.icqad013.net -# ||icqad012.net^ (advblock.txt: 2380) -.icqad012.net -# ||icqad011.net^ (advblock.txt: 2379) -.icqad011.net -# ||icqad010.net^ (advblock.txt: 2378) -.icqad010.net -# ||icqad009.net^ (advblock.txt: 2377) -.icqad009.net -# ||icqad008.net^ (advblock.txt: 2376) -.icqad008.net -# ||icqad007.net^ (advblock.txt: 2375) -.icqad007.net -# ||icqad006.net^ (advblock.txt: 2374) -.icqad006.net -# ||icqad005.net^ (advblock.txt: 2373) -.icqad005.net -# ||icqad004.net^ (advblock.txt: 2372) -.icqad004.net -# ||icqad003.net^ (advblock.txt: 2371) -.icqad003.net -# ||icqad002.net^ (advblock.txt: 2370) -.icqad002.net -# ||icqad001.net^ (advblock.txt: 2369) -.icqad001.net -# ||iclckk.com^ (advblock.txt: 2368) -.iclckk.com -# ||iberacon.com^ (advblock.txt: 2367) -.iberacon.com -# ||iadv.biz^ (advblock.txt: 2366) -.iadv.biz -# ||i-vengo.com^$third-party (advblock.txt: 2365) -.i-vengo.com -# ||i-adv.biz^ (advblock.txt: 2364) -.i-adv.biz -# ||hyndir.com^$third-party (advblock.txt: 2363) -.hyndir.com -# ||humanredirect.ru^ (advblock.txt: 2362) -.humanredirect.ru -# ||hugedi.com^ (advblock.txt: 2361) -.hugedi.com -# ||houmekredit.ru^ (advblock.txt: 2360) -.houmekredit.ru -# ||hopedac.com^ (advblock.txt: 2359) -.hopedac.com -# ||hommunit.com^ (advblock.txt: 2358) -.hommunit.com -# ||hommisse.com^ (advblock.txt: 2357) -.hommisse.com -# ||holysts.com^ (advblock.txt: 2356) -.holysts.com -# ||hoilop.com^ (advblock.txt: 2355) -.hoilop.com -# ||hnixr.com^ (advblock.txt: 2354) -.hnixr.com -# ||hkik.ru^ (advblock.txt: 2353) -.hkik.ru -# ||hjiss.com^ (advblock.txt: 2352) -.hjiss.com -# ||hittoadv.com^ (advblock.txt: 2351) -.hittoadv.com -# ||hit-star.ru^ (advblock.txt: 2350) -.hit-star.ru -# ||highlightingalive.in^ (advblock.txt: 2349) -.highlightingalive.in -# ||hghit.com^$third-party (advblock.txt: 2348) -.hghit.com -# ||hgdat.com^$third-party (advblock.txt: 2347) -.hgdat.com -# ||heelwork.com^ (advblock.txt: 2346) -.heelwork.com -# ||head-gshame.in^ (advblock.txt: 2345) -.head-gshame.in -# ||hay-borsa.ru^ (advblock.txt: 2344) -.hay-borsa.ru -# ||hannist.com^ (advblock.txt: 2343) -.hannist.com -# ||hamphlete.com^ (advblock.txt: 2342) -.hamphlete.com -# ||hadoman.net^ (advblock.txt: 2341) -.hadoman.net -# ||h3a.t.r.vpath.net^ (advblock.txt: 2340) -.h3a.t.r.vpath.net -# ||guktuti.ru^$third-party (advblock.txt: 2339) -.guktuti.ru -# ||gueurs.com^ (advblock.txt: 2338) -.gueurs.com -# ||gueur.com^ (advblock.txt: 2337) -.gueur.com -# ||grteab.com^ (advblock.txt: 2336) -.grteab.com -# ||grt02.org^ (advblock.txt: 2335) -.grt02.org -# ||grofku.com^$third-party (advblock.txt: 2334) -.grofku.com -# ||gredinatib.org^ (advblock.txt: 2333) -.gredinatib.org -# ||gredinatib.biz^ (advblock.txt: 2332) -.gredinatib.biz -# ||grandmediatizer.com^ (advblock.txt: 2331) -.grandmediatizer.com -# ||grainac.com^ (advblock.txt: 2330) -.grainac.com -# ||gotriki.com^$third-party (advblock.txt: 2329) -.gotriki.com -# ||gotoredr.com^ (advblock.txt: 2328) -.gotoredr.com -# ||goossb.com^ (advblock.txt: 2327) -.goossb.com -# ||googlsyndication.com^ (advblock.txt: 2326) -.googlsyndication.com -# ||goodlooknews.net^$third-party (advblock.txt: 2325) -.goodlooknews.net -# ||good.win-yagd.ru^ (advblock.txt: 2324) -.good.win-yagd.ru -# ||good-traf.ru^ (advblock.txt: 2323) -.good-traf.ru -# ||gonews1.net^ (advblock.txt: 2322) -.gonews1.net -# ||gokliks.ru^$~popup,popup (advblock.txt: 2321) -.gokliks.ru -# ||go7media.ru^ (advblock.txt: 2320) -.go7media.ru -# ||go.unas.ru^ (advblock.txt: 2319) -.go.unas.ru -# ||go.adjika.net^ (advblock.txt: 2317) -.go.adjika.net -# ||gmelvi.ru^ (advblock.txt: 2316) -.gmelvi.ru -# ||glue-length.biz^ (advblock.txt: 2315) -.glue-length.biz -# ||glordd.com^ (advblock.txt: 2314) -.glordd.com -# ||globeac.com^ (advblock.txt: 2313) -.globeac.com -# ||globalteaser.ru^ (advblock.txt: 2312) -.globalteaser.ru -# ||glavrich.com^ (advblock.txt: 2311) -.glavrich.com -# ||glammor.ru^$third-party (advblock.txt: 2310) -.glammor.ru -# ||gjslm.com^ (advblock.txt: 2309) -.gjslm.com -# ||gizenon.ru^$third-party (advblock.txt: 2308) -.gizenon.ru -# ||girlz42night.biz^ (advblock.txt: 2307) -.girlz42night.biz -# ||giotyo.com^ (advblock.txt: 2306) -.giotyo.com -# ||giosany.com^ (advblock.txt: 2305) -.giosany.com -# ||giokole.com^ (advblock.txt: 2304) -.giokole.com -# ||gingardo.com^ (advblock.txt: 2303) -.gingardo.com -# ||ghaires.com^ (advblock.txt: 2302) -.ghaires.com -# ||getuplinks.ru^$third-party (advblock.txt: 2301) -.getuplinks.ru -# ||get-hit.ru^$third-party (advblock.txt: 2300) -.get-hit.ru -# ||gdsln.ru^$third-party (advblock.txt: 2299) -.gdsln.ru -# ||gddrio.com^ (advblock.txt: 2298) -.gddrio.com -# ||gawxf.com^$third-party (advblock.txt: 2297) -.gawxf.com -# ||gatgirl.com^ (advblock.txt: 2296) -.gatgirl.com -# ||gateway-04.com^ (advblock.txt: 2295) -.gateway-04.com -# ||gateway-03.com^ (advblock.txt: 2294) -.gateway-03.com -# ||gateway-02.com^ (advblock.txt: 2293) -.gateway-02.com -# ||gameleads.ru^$third-party (advblock.txt: 2292) -.gameleads.ru -# ||gameadnet.ru^ (advblock.txt: 2291) -.gameadnet.ru -# ||game-tester.ru^ (advblock.txt: 2290) -.game-tester.ru -# ||gainclick.co^ (advblock.txt: 2289) -.gainclick.co -# ||gainclick.biz^ (advblock.txt: 2288) -.gainclick.biz -# ||gagnifie.com^ (advblock.txt: 2287) -.gagnifie.com -# ||fyrafi.ru^ (advblock.txt: 2286) -.fyrafi.ru -# ||fxhoog.com^ (advblock.txt: 2285) -.fxhoog.com -# ||fulldl.net^ (advblock.txt: 2284) -.fulldl.net -# ||fufko.com^$third-party (advblock.txt: 2283) -.fufko.com -# ||fstredirr.com^ (advblock.txt: 2282) -.fstredirr.com -# ||frmsafe.com^ (advblock.txt: 2281) -.frmsafe.com -# ||freddyman.com^ (advblock.txt: 2280) -.freddyman.com -# ||fpmef.com^ (advblock.txt: 2279) -.fpmef.com -# ||four8city.in^ (advblock.txt: 2278) -.four8city.in -# ||foundtr.com^ (advblock.txt: 2277) -.foundtr.com -# ||fotrento.com^$third-party (advblock.txt: 2276) -.fotrento.com -# ||fotooplata.ru^$third-party,script (advblock.txt: 2275) -.fotooplata.ru -# ||fortuka.com^$third-party (advblock.txt: 2274) -.fortuka.com -# ||fobise.ru^$third-party (advblock.txt: 2273) -.fobise.ru -# ||fmusive.ru^ (advblock.txt: 2272) -.fmusive.ru -# ||flushmviolent.org^ (advblock.txt: 2271) -.flushmviolent.org -# ||flashteaser.com^ (advblock.txt: 2270) -.flashteaser.com -# ||flascom.com^ (advblock.txt: 2269) -.flascom.com -# ||fkhkjhj.biz^ (advblock.txt: 2268) -.fkhkjhj.biz -# ||fixzila.com^ (advblock.txt: 2267) -.fixzila.com -# ||fityjhnl.biz^ (advblock.txt: 2266) -.fityjhnl.biz -# ||fitbut.ru^ (advblock.txt: 2265) -.fitbut.ru -# ||fireb2.com^ (advblock.txt: 2264) -.fireb2.com -# ||fireb1.com^ (advblock.txt: 2263) -.fireb1.com -# ||fingoty.com^$third-party (advblock.txt: 2262) -.fingoty.com -# ||findpre.net^ (advblock.txt: 2261) -.findpre.net -# ||findfor.net^ (advblock.txt: 2260) -.findfor.net -# ||fetalli.com^ (advblock.txt: 2259) -.fetalli.com -# ||fdrschv.ru^ (advblock.txt: 2258) -.fdrschv.ru -# ||fdgeen.com^ (advblock.txt: 2257) -.fdgeen.com -# ||faxso.ru^ (advblock.txt: 2256) -.faxso.ru -# ||fastsearcher.ru^ (advblock.txt: 2255) -.fastsearcher.ru -# ||farecnop.loftlm.ru^ (advblock.txt: 2254) -.farecnop.loftlm.ru -# ||faggrim.com^ (advblock.txt: 2253) -.faggrim.com -# ||fafggde.net^ (advblock.txt: 2252) -.fafggde.net -# ||faddgetdo.ru^$third-party (advblock.txt: 2251) -.faddgetdo.ru -# ||eznagi.ru^ (advblock.txt: 2250) -.eznagi.ru -# ||ezaste.ru^$third-party (advblock.txt: 2249) -.ezaste.ru -# ||extronext.ru^ (advblock.txt: 2248) -.extronext.ru -# ||exchangenews.ru^$third-party (advblock.txt: 2247) -.exchangenews.ru -# ||excalatom.com^ (advblock.txt: 2246) -.excalatom.com -# ||evsembu.com^ (advblock.txt: 2245) -.evsembu.com -# ||evendividualita.com^ (advblock.txt: 2244) -.evendividualita.com -# ||etranslater1.com^ (advblock.txt: 2243) -.etranslater1.com -# ||et-code.ru^$third-party (advblock.txt: 2242) -.et-code.ru -# ||estiques.com^ (advblock.txt: 2241) -.estiques.com -# ||ervtm9lrdj.com^ (advblock.txt: 2240) -.ervtm9lrdj.com -# ||erpito.ru^ (advblock.txt: 2239) -.erpito.ru -# ||eroticahd.org^$third-party (advblock.txt: 2238) -.eroticahd.org -# ||epsexda.ru^ (advblock.txt: 2236) -.epsexda.ru -# ||epoquels.com^ (advblock.txt: 2235) -.epoquels.com -# ||entimee.com^ (advblock.txt: 2234) -.entimee.com -# ||ensepare.com^ (advblock.txt: 2233) -.ensepare.com -# ||enkonyus.ru^ (advblock.txt: 2232) -.enkonyus.ru -# ||engageya.com^$third-party (advblock.txt: 2231) -.engageya.com -# ||enfreine.com^ (advblock.txt: 2230) -.enfreine.com -# ||emisses.com^ (advblock.txt: 2229) -.emisses.com -# ||emierete.com^ (advblock.txt: 2228) -.emierete.com -# ||elnpe.com^ (advblock.txt: 2227) -.elnpe.com -# ||elkagoda.ru^$third-party (advblock.txt: 2226) -.elkagoda.ru -# ||eijwpxc.net^ (advblock.txt: 2225) -.eijwpxc.net -# ||ei0mwcgu.com^ (advblock.txt: 2224) -.ei0mwcgu.com -# ||egpofy.com^$third-party (advblock.txt: 2223) -.egpofy.com -# ||ecortb.com^$third-party (advblock.txt: 2222) -.ecortb.com -# ||econdus.com^ (advblock.txt: 2221) -.econdus.com -# ||echobanners.net^ (advblock.txt: 2220) -.echobanners.net -# ||ebloren.ru^$third-party (advblock.txt: 2219) -.ebloren.ru -# ||dz01rk.com^ (advblock.txt: 2218) -.dz01rk.com -# ||dyzha.com^$third-party (advblock.txt: 2217) -.dyzha.com -# ||dyrevnya.ru^ (advblock.txt: 2216) -.dyrevnya.ru -# ||dverser.ru^ (advblock.txt: 2215) -.dverser.ru -# ||dutrmedi.ru^ (advblock.txt: 2214) -.dutrmedi.ru -# ||dunta.ru^ (advblock.txt: 2213) -.dunta.ru -# ||dumedia.ru^$third-party (advblock.txt: 2212) -.dumedia.ru -# ||drtraff.ru^$third-party (advblock.txt: 2211) -.drtraff.ru -# ||drontres.com^ (advblock.txt: 2210) -.drontres.com -# ||drlyy.com^ (advblock.txt: 2209) -.drlyy.com -# ||dreampartners.ru^ (advblock.txt: 2208) -.dreampartners.ru -# ||douteure.com^ (advblock.txt: 2207) -.douteure.com -# ||dosugcz.net^ (advblock.txt: 2206) -.dosugcz.net -# ||dosugcz.in^ (advblock.txt: 2205) -.dosugcz.in -# ||dosug.cz^$third-party (advblock.txt: 2204) -.dosug.cz -# ||dornut.com^$third-party (advblock.txt: 2203) -.dornut.com -# ||dopikas.com^ (advblock.txt: 2202) -.dopikas.com -# ||donalise.com^ (advblock.txt: 2201) -.donalise.com -# ||dominasy.com^ (advblock.txt: 2200) -.dominasy.com -# ||dominas.femdomina.ru^ (advblock.txt: 2199) -.dominas.femdomina.ru -# ||domertb.com^ (advblock.txt: 2198) -.domertb.com -# ||domah.ru^ (advblock.txt: 2197) -.domah.ru -# ||dodrek.com^$third-party (advblock.txt: 2196) -.dodrek.com -# ||dlyatizera.ru^ (advblock.txt: 2195) -.dlyatizera.ru -# ||dkemeli.ru^ (advblock.txt: 2194) -.dkemeli.ru -# ||dizzyac.com^ (advblock.txt: 2193) -.dizzyac.com -# ||disterme.com^ (advblock.txt: 2192) -.disterme.com -# ||directtogo.ru^$third-party (advblock.txt: 2191) -.directtogo.ru -# ||directprofit.ru^ (advblock.txt: 2190) -.directprofit.ru -# ||directerp.ru^ (advblock.txt: 2189) -.directerp.ru -# ||dimprive.com^ (advblock.txt: 2188) -.dimprive.com -# ||digitalaccess.ru^*&rnd=*. (advblock.txt: 2187) -.digitalaccess.ru/.*&rnd=.*\. -# ||dificaux.com^ (advblock.txt: 2186) -.dificaux.com -# ||dictus.biz^$third-party (advblock.txt: 2185) -.dictus.biz -# ||dfthplx.net^ (advblock.txt: 2184) -.dfthplx.net -# ||df09rp0cm6rp6.cloudfront.net^ (advblock.txt: 2183) -.df09rp0cm6rp6.cloudfront.net -# ||devilclicks.com^ (advblock.txt: 2182) -.devilclicks.com -# ||devaxi.org^ (advblock.txt: 2181) -.devaxi.org -# ||dev4enki.com^ (advblock.txt: 2180) -.dev4enki.com -# ||detdove.ru^ (advblock.txt: 2179) -.detdove.ru -# ||detaires.com^ (advblock.txt: 2178) -.detaires.com -# ||designedy.com^ (advblock.txt: 2177) -.designedy.com -# ||derploime.com^ (advblock.txt: 2176) -.derploime.com -# ||demilith.com^ (advblock.txt: 2175) -.demilith.com -# ||defiques.com^ (advblock.txt: 2174) -.defiques.com -# ||ddomb.com^ (advblock.txt: 2173) -.ddomb.com -# ||davarello.com^ (advblock.txt: 2172) -.davarello.com -# ||datropy.com^ (advblock.txt: 2171) -.datropy.com -# ||datelycu.com^ (advblock.txt: 2170) -.datelycu.com -# ||datariver.ru^$third-party (advblock.txt: 2169) -.datariver.ru -# ||dartimyl.com^ (advblock.txt: 2168) -.dartimyl.com -# ||daredac.com^ (advblock.txt: 2167) -.daredac.com -# ||dafficha.com^ (advblock.txt: 2166) -.dafficha.com -# ||daffices.com^ (advblock.txt: 2165) -.daffices.com -# ||dafferes.com^ (advblock.txt: 2164) -.dafferes.com -# ||daffecte.com^ (advblock.txt: 2163) -.daffecte.com -# ||daccroit.com^ (advblock.txt: 2162) -.daccroit.com -# ||daccrois.com^ (advblock.txt: 2161) -.daccrois.com -# ||daccroi.com^ (advblock.txt: 2160) -.daccroi.com -# ||d3pb9zw46rm6zr.cloudfront.net^ (advblock.txt: 2159) -.d3pb9zw46rm6zr.cloudfront.net -# ||d2ue9k1rhsumed.cloudfront.net^$third-party (advblock.txt: 2158) -.d2ue9k1rhsumed.cloudfront.net -# ||d27jk9dqha8met.cloudfront.net^ (advblock.txt: 2157) -.d27jk9dqha8met.cloudfront.net -# ||d-agency.net^$third-party (advblock.txt: 2156) -.d-agency.net -# ||cyhtr.com^ (advblock.txt: 2155) -.cyhtr.com -# ||cxmolk.com^ (advblock.txt: 2154) -.cxmolk.com -# ||cwh7tdf.com^ (advblock.txt: 2153) -.cwh7tdf.com -# ||cuioj.com^$third-party (advblock.txt: 2152) -.cuioj.com -# ||cufcw.com^$third-party (advblock.txt: 2151) -.cufcw.com -# ||cubo.ru^$third-party (advblock.txt: 2150) -.cubo.ru -# ||ctyzd.com^$third-party (advblock.txt: 2149) -.ctyzd.com -# ||ctrmanager.com^$third-party (advblock.txt: 2148) -.ctrmanager.com -# ||crpoy.com^ (advblock.txt: 2147) -.crpoy.com -# ||creofun.com^$third-party (advblock.txt: 2146) -.creofun.com -# ||creofive.com^$third-party (advblock.txt: 2145) -.creofive.com -# ||crateac.com^ (advblock.txt: 2144) -.crateac.com -# ||crackac.com^ (advblock.txt: 2143) -.crackac.com -# ||cppgf.com^ (advblock.txt: 2142) -.cppgf.com -# ||cpa600.ru^ (advblock.txt: 2141) -.cpa600.ru -# ||cpa6.ru^ (advblock.txt: 2140) -.cpa6.ru -# ||cpa-system.ru^ (advblock.txt: 2139) -.cpa-system.ru -# ||copercato.com^ (advblock.txt: 2138) -.copercato.com -# ||cooleightds.eu^ (advblock.txt: 2137) -.cooleightds.eu -# ||cooleefbaldw.uk.to^ (advblock.txt: 2136) -.cooleefbaldw.uk.to -# ||convertds.com^ (advblock.txt: 2135) -.convertds.com -# ||contlist.com^ (advblock.txt: 2134) -.contlist.com -# ||contextrtb.com^ (advblock.txt: 2133) -.contextrtb.com -# ||contextbar.ru^ (advblock.txt: 2132) -.contextbar.ru -# ||conternet.com^ (advblock.txt: 2131) -.conternet.com -# ||conteresso.com^ (advblock.txt: 2130) -.conteresso.com -# ||conteresse.com^ (advblock.txt: 2129) -.conteresse.com -# ||contema.ru^$third-party (advblock.txt: 2128) -.contema.ru -# ||contactsin.ru^ (advblock.txt: 2127) -.contactsin.ru -# ||contactsin.com^ (advblock.txt: 2126) -.contactsin.com -# ||connees.com^ (advblock.txt: 2125) -.connees.com -# ||commontools.net^ (advblock.txt: 2124) -.commontools.net -# ||collanetti.com^ (advblock.txt: 2123) -.collanetti.com -# ||coe5n.ru^ (advblock.txt: 2122) -.coe5n.ru -# ||codexq.net^ (advblock.txt: 2121) -.codexq.net -# ||codes-media.ru^ (advblock.txt: 2120) -.codes-media.ru -# ||codemediarich.ru^ (advblock.txt: 2119) -.codemediarich.ru -# ||codeextrarich.net^ (advblock.txt: 2118) -.codeextrarich.net -# ||code.roadvel.ru^$third-party (advblock.txt: 2117) -.code.roadvel.ru -# ||code.d-agency.net^ (advblock.txt: 2116) -.code.d-agency.net -# ||codata.ru^ (advblock.txt: 2115) -.codata.ru -# ||cobrand.ria.com^$third-party (advblock.txt: 2114) -.cobrand.ria.com -# ||cms-skin.com^$third-party (advblock.txt: 2113) -.cms-skin.com -# ||clunder.net^ (advblock.txt: 2112) -.clunder.net -# ||cloakac.com^ (advblock.txt: 2111) -.cloakac.com -# ||clo.lv^ (advblock.txt: 2110) -.clo.lv -# ||clme.net^ (advblock.txt: 2109) -.clme.net -# ||clme.biz^ (advblock.txt: 2108) -.clme.biz -# ||cllckdomain.com^ (advblock.txt: 2107) -.cllckdomain.com -# ||clkmon.com^$third-party (advblock.txt: 2106) -.clkmon.com -# ||clievise.com^ (advblock.txt: 2105) -.clievise.com -# ||clierets.com^ (advblock.txt: 2104) -.clierets.com -# ||cliennes.com^ (advblock.txt: 2103) -.cliennes.com -# ||clickunderad.com^ (advblock.txt: 2102) -.clickunderad.com -# ||clickspay.ru^ (advblock.txt: 2101) -.clickspay.ru -# ||clickcashmoney.com^ (advblock.txt: 2100) -.clickcashmoney.com -# ||clctraffic.com^ (advblock.txt: 2099) -.clctraffic.com -# ||clangere.com^ (advblock.txt: 2098) -.clangere.com -# ||cl.ekzo.org^ (advblock.txt: 2097) -.cl.ekzo.org -# ||ckqby.com^$third-party (advblock.txt: 2096) -.ckqby.com -# ||ck-cdn.com^$third-party (advblock.txt: 2095) -.ck-cdn.com -# ||cityads.ru^$third-party (advblock.txt: 2094) -.cityads.ru -# ||cityads.com^$third-party (advblock.txt: 2093) -.cityads.com -# ||citaire.com^ (advblock.txt: 2092) -.citaire.com -# ||cientrer.com^ (advblock.txt: 2091) -.cientrer.com -# ||ciement.com^ (advblock.txt: 2090) -.ciement.com -# ||chinagrad.ru^ (advblock.txt: 2089) -.chinagrad.ru -# ||china-air.ru^ (advblock.txt: 2088) -.china-air.ru -# ||cettenus.com^ (advblock.txt: 2087) -.cettenus.com -# ||cettenu.com^ (advblock.txt: 2086) -.cettenu.com -# ||cettente.com^ (advblock.txt: 2085) -.cettente.com -# ||cdnport.ru^ (advblock.txt: 2084) -.cdnport.ru -# ||cdnjs.nl^$third-party (advblock.txt: 2083) -.cdnjs.nl -# ||cdneurope.com^ (advblock.txt: 2082) -.cdneurope.com -# ||cdn-rtb.sape.ru^ (advblock.txt: 2081) -.cdn-rtb.sape.ru -# ||cashtube.ru^ (advblock.txt: 2080) -.cashtube.ru -# ||cashprom.ru^$third-party (advblock.txt: 2079) -.cashprom.ru -# ||carveac.com^ (advblock.txt: 2078) -.carveac.com -# ||caragots.com^ (advblock.txt: 2077) -.caragots.com -# ||canalds.com^ (advblock.txt: 2076) -.canalds.com -# ||campeut.com^ (advblock.txt: 2075) -.campeut.com -# ||cache.betweendigital.com^ (advblock.txt: 2074) -.cache.betweendigital.com -# ||cachand.com^ (advblock.txt: 2073) -.cachand.com -# ||bznclicks.com^$third-party (advblock.txt: 2072) -.bznclicks.com -# ||bzlwe.com^$third-party (advblock.txt: 2071) -.bzlwe.com -# ||byuop.com^ (advblock.txt: 2070) -.byuop.com -# ||bymotofyd.ru^ (advblock.txt: 2069) -.bymotofyd.ru -# ||bw.pronto.ru/img/$object (advblock.txt: 2067) -.bw.pronto.ru/img/ -# ||buzzoola.com^$third-party (advblock.txt: 2066) -.buzzoola.com -# ||buytraf.ru^ (advblock.txt: 2065) -.buytraf.ru -# ||buy-traffic.org^ (advblock.txt: 2064) -.buy-traffic.org -# ||bussters.com^$third-party (advblock.txt: 2063) -.bussters.com -# ||buildbull.ru^ (advblock.txt: 2062) -.buildbull.ru -# ||bs.quadrosystems.ru^ (advblock.txt: 2061) -.bs.quadrosystems.ru -# ||broklam.com^$third-party (advblock.txt: 2060) -.broklam.com -# ||brndrm.com^$third-party (advblock.txt: 2059) -.brndrm.com -# ||breeffnet.com^ (advblock.txt: 2058) -.breeffnet.com -# ||breedac.com^ (advblock.txt: 2057) -.breedac.com -# ||brandarium.ru^ (advblock.txt: 2056) -.brandarium.ru -# ||bposterss.net^$third-party (advblock.txt: 2055) -.bposterss.net -# ||boolff.com^ (advblock.txt: 2054) -.boolff.com -# ||bongobono.com^$third-party (advblock.txt: 2053) -.bongobono.com -# ||bongacash.com^$third-party (advblock.txt: 2052) -.bongacash.com -# ||bobrilla.com^ (advblock.txt: 2051) -.bobrilla.com -# ||bobik.playflock.com^ (advblock.txt: 2050) -.bobik.playflock.com -# ||blessdi.com^ (advblock.txt: 2049) -.blessdi.com -# ||blendac.com^ (advblock.txt: 2048) -.blendac.com -# ||blackads.ru^ (advblock.txt: 2047) -.blackads.ru -# ||bjpwv.com^$third-party (advblock.txt: 2046) -.bjpwv.com -# ||bixmarketing.ru^ (advblock.txt: 2045) -.bixmarketing.ru -# ||bistr3.ru^ (advblock.txt: 2044) -.bistr3.ru -# ||binmedia.ru^ (advblock.txt: 2043) -.binmedia.ru -# ||bilation.com^ (advblock.txt: 2042) -.bilation.com -# ||bidtraffic.ru^ (advblock.txt: 2041) -.bidtraffic.ru -# ||betonmarkets.com^$third-party (advblock.txt: 2040) -.betonmarkets.com -# ||berryfico.com^ (advblock.txt: 2039) -.berryfico.com -# ||beriche.ru^ (advblock.txt: 2038) -.beriche.ru -# ||berdent.com^$third-party (advblock.txt: 2037) -.berdent.com -# ||bequri.com^$third-party (advblock.txt: 2036) -.bequri.com -# ||belole.ru^ (advblock.txt: 2035) -.belole.ru -# ||beligana.ru^ (advblock.txt: 2034) -.beligana.ru -# ||beeblebroks.ru^ (advblock.txt: 2033) -.beeblebroks.ru -# ||bbtyup.com^ (advblock.txt: 2032) -.bbtyup.com -# ||bazilhan.com^$third-party (advblock.txt: 2031) -.bazilhan.com -# ||basetts.com^ (advblock.txt: 2030) -.basetts.com -# ||barraien.com^ (advblock.txt: 2029) -.barraien.com -# ||barpe.ru^ (advblock.txt: 2028) -.barpe.ru -# ||bara-banner.com^$third-party (advblock.txt: 2027) -.bara-banner.com -# ||banquant.com^ (advblock.txt: 2026) -.banquant.com -# ||bannuncio.com^ (advblock.txt: 2025) -.bannuncio.com -# ||bannersold.eu^$third-party (advblock.txt: 2024) -.bannersold.eu -# ||bannerms54489.com^ (advblock.txt: 2023) -.bannerms54489.com -# ||banerator.net^$third-party (advblock.txt: 2022) -.banerator.net -# ||baks-easy.com^$third-party (advblock.txt: 2021) -.baks-easy.com -# ||backromy.com^ (advblock.txt: 2020) -.backromy.com -# ||backend.opogame.com^$third-party (advblock.txt: 2019) -.backend.opogame.com -# ||bachmedia.ru^ (advblock.txt: 2018) -.bachmedia.ru -# ||bablogon.net^$third-party (advblock.txt: 2017) -.bablogon.net -# ||b.digital-tv.com.ua^ (advblock.txt: 2016) -.b.digital-tv.com.ua -# ||az708531.vo.msecnd.net^ (advblock.txt: 2015) -.az708531.vo.msecnd.net -# ||ayjvb.com^$third-party (advblock.txt: 2014) -.ayjvb.com -# ||avmgetdo.ru^$third-party (advblock.txt: 2013) -.avmgetdo.ru -# ||avdego.net^$third-party (advblock.txt: 2012) -.avdego.net -# ||attiveri.com^ (advblock.txt: 2011) -.attiveri.com -# ||astdn.ru^*/$third-party (advblock.txt: 2010) -.astdn.ru/.*/ -# ||associeta.com^ (advblock.txt: 2009) -.associeta.com -# ||associazio.com^ (advblock.txt: 2008) -.associazio.com -# ||assantie.com^ (advblock.txt: 2007) -.assantie.com -# ||asdhit.com^ (advblock.txt: 2006) -.asdhit.com -# ||arigami.ru^ (advblock.txt: 2005) -.arigami.ru -# ||ardiver.ru^$third-party (advblock.txt: 2004) -.ardiver.ru -# ||arded.com^ (advblock.txt: 2003) -.arded.com -# ||archeurs.com^ (advblock.txt: 2002) -.archeurs.com -# ||apytrc.com^$third-party (advblock.txt: 2001) -.apytrc.com -# ||apypxl.com^$third-party (advblock.txt: 2000) -.apypxl.com -# ||aprement.com^ (advblock.txt: 1999) -.aprement.com -# ||aprelite.com^ (advblock.txt: 1998) -.aprelite.com -# ||apreces.com^ (advblock.txt: 1997) -.apreces.com -# ||applieda.com^ (advblock.txt: 1996) -.applieda.com -# ||appintop.com/widget/ (advblock.txt: 1995) -.appintop.com/widget/ -# ||appboost.ru^$third-party (advblock.txt: 1994) -.appboost.ru -# ||appaugust.ru^ (advblock.txt: 1993) -.appaugust.ru -# ||apocence.com^ (advblock.txt: 1992) -.apocence.com -# ||api.smartadv.ru^ (advblock.txt: 1991) -.api.smartadv.ru -# ||api.market-place.su^$third-party,script (advblock.txt: 1990) -.api.market-place.su -# ||api-keks.com^ (advblock.txt: 1989) -.api-keks.com -# ||anniers.com^ (advblock.txt: 1988) -.anniers.com -# ||anniere.com^ (advblock.txt: 1987) -.anniere.com -# ||annienne.com^ (advblock.txt: 1986) -.annienne.com -# ||andrak.ru^ (advblock.txt: 1985) -.andrak.ru -# ||analyticsncc.net^$third-party (advblock.txt: 1984) -.analyticsncc.net -# ||an.media-active.ru^ (advblock.txt: 1983) -.an.media-active.ru -# ||amuseer.com^ (advblock.txt: 1982) -.amuseer.com -# ||amenop.com^ (advblock.txt: 1981) -.amenop.com -# ||am17.ru^ (advblock.txt: 1980) -.am17.ru -# ||altraf.com^ (advblock.txt: 1979) -.altraf.com -# ||almosto.com^ (advblock.txt: 1978) -.almosto.com -# ||alltizer.ru^ (advblock.txt: 1977) -.alltizer.ru -# ||alltheladyz.xyz^$third-party (advblock.txt: 1976) -.alltheladyz.xyz -# ||allowac.com^ (advblock.txt: 1975) -.allowac.com -# ||allkalisto.ru^$third-party (advblock.txt: 1974) -.allkalisto.ru -# ||alipromo.com^$third-party (advblock.txt: 1973) -.alipromo.com -# ||alidtd.com^$third-party (advblock.txt: 1972) -.alidtd.com -# ||algenib.ru^ (advblock.txt: 1971) -.algenib.ru -# ||alemobile.ru^ (advblock.txt: 1970) -.alemobile.ru -# ||akashy.com^ (advblock.txt: 1969) -.akashy.com -# ||aintes.com^ (advblock.txt: 1968) -.aintes.com -# ||ainterme.com^ (advblock.txt: 1967) -.ainterme.com -# ||aintere.com^ (advblock.txt: 1966) -.aintere.com -# ||aintegie.com^ (advblock.txt: 1965) -.aintegie.com -# ||ainstite.com^ (advblock.txt: 1964) -.ainstite.com -# ||aif.yadro.ru^ (advblock.txt: 1963) -.aif.yadro.ru -# ||aiadvi.com^ (advblock.txt: 1962) -.aiadvi.com -# ||agitazio.com^ (advblock.txt: 1961) -.agitazio.com -# ||afterview.ru^ (advblock.txt: 1960) -.afterview.ru -# ||afficent.com^ (advblock.txt: 1959) -.afficent.com -# ||affcash.net^ (advblock.txt: 1958) -.affcash.net -# ||aff.mediarotate.com^ (advblock.txt: 1957) -.aff.mediarotate.com -# ||aerontre.com^ (advblock.txt: 1956) -.aerontre.com -# ||advweb.ru^ (advblock.txt: 1955) -.advweb.ru -# ||advrush.com^ (advblock.txt: 1954) -.advrush.com -# ||advredirr.com^ (advblock.txt: 1953) -.advredirr.com -# ||advland.ru^$third-party (advblock.txt: 1952) -.advland.ru -# ||advkino.ru^$third-party (advblock.txt: 1951) -.advkino.ru -# ||advideo.ru^$third-party (advblock.txt: 1950) -.advideo.ru -# ||advice.imho.net^$third-party (advblock.txt: 1949) -.advice.imho.net -# ||advertur.ru^$third-party (advblock.txt: 1948) -.advertur.ru -# ||advertte.com^ (advblock.txt: 1947) -.advertte.com -# ||advertshot.ru^$third-party (advblock.txt: 1946) -.advertshot.ru -# ||advertone.ru^$third-party (advblock.txt: 1945) -.advertone.ru -# ||advertoly.com^$third-party (advblock.txt: 1944) -.advertoly.com -# ||advertmedianetwork.ru^$third-party (advblock.txt: 1943) -.advertmedianetwork.ru -# ||advertlink.ru^ (advblock.txt: 1942) -.advertlink.ru -# ||adversni.com^ (advblock.txt: 1941) -.adversni.com -# ||advego.ru^$third-party (advblock.txt: 1940) -.advego.ru -# ||adveg.ru^$third-party (advblock.txt: 1939) -.adveg.ru -# ||advarkads.com^$third-party (advblock.txt: 1938) -.advarkads.com -# ||advagava.ru^$third-party (advblock.txt: 1937) -.advagava.ru -# ||adv.vz.ru^ (advblock.txt: 1936) -.adv.vz.ru -# ||adv-target.ru^$third-party (advblock.txt: 1935) -.adv-target.ru -# ||adv-first.ru^ (advblock.txt: 1934) -.adv-first.ru -# ||adulthub.ru^$third-party (advblock.txt: 1933) -.adulthub.ru -# ||adtraff.ru^ (advblock.txt: 1932) -.adtraff.ru -# ||adsyst.ru^ (advblock.txt: 1931) -.adsyst.ru -# ||adsyst.com^ (advblock.txt: 1930) -.adsyst.com -# ||adstock.ru^ (advblock.txt: 1929) -.adstock.ru -# ||adstarter.ru^$third-party (advblock.txt: 1928) -.adstarter.ru -# ||adst.biz^ (advblock.txt: 1927) -.adst.biz -# ||adsorg.com^ (advblock.txt: 1926) -.adsorg.com -# ||adsmeda.com^ (advblock.txt: 1925) -.adsmeda.com -# ||adshostnet.com^ (advblock.txt: 1924) -.adshostnet.com -# ||adselector.ru^$third-party (advblock.txt: 1923) -.adselector.ru -# ||adsactive.ru^$third-party (advblock.txt: 1922) -.adsactive.ru -# ||adpod.in^ (advblock.txt: 1921) -.adpod.in -# ||adname.ru^$third-party (advblock.txt: 1920) -.adname.ru -# ||admixercreatives.blob.core.windows.net^$third-party (advblock.txt: 1919) -.admixercreatives.blob.core.windows.net -# ||admitlead.ru^$third-party (advblock.txt: 1918) -.admitlead.ru -# ||admail.am^$third-party (advblock.txt: 1917) -.admail.am -# ||adlook.net^$third-party (advblock.txt: 1916) -.adlook.net -# ||adlift.ru^$third-party (advblock.txt: 1915) -.adlift.ru -# ||adlabs.ru^$third-party (advblock.txt: 1914) -.adlabs.ru -# ||adgamble.net^ (advblock.txt: 1913) -.adgamble.net -# ||adfun.ru^ (advblock.txt: 1912) -.adfun.ru -# ||adforce.ru^ (advblock.txt: 1911) -.adforce.ru -# ||adeclc.com^ (advblock.txt: 1910) -.adeclc.com -# ||addtraf.ru^$third-party (advblock.txt: 1909) -.addtraf.ru -# ||adcamp.ru^$third-party (advblock.txt: 1908) -.adcamp.ru -# ||adbmi.com^$third-party (advblock.txt: 1907) -.adbmi.com -# ||adbix.tv^$third-party (advblock.txt: 1906) -.adbix.tv -# ||ad1.ru^ (advblock.txt: 1905) -.ad1.ru -# ||ad05f.ru^ (advblock.txt: 1904) -.ad05f.ru -# ||ad004.ru^ (advblock.txt: 1903) -.ad004.ru -# ||ad.starlightmedia.ua^ (advblock.txt: 1902) -.ad.starlightmedia.ua -# ||ad.or.ru/inner?block= (advblock.txt: 1901) -.ad.or.ru/inner\?block= -# ||ad.namba.net^ (advblock.txt: 1900) -.ad.namba.net -# ||ad.hutor.ru^ (advblock.txt: 1899) -.ad.hutor.ru -# ||ad.h-vip.ru^ (advblock.txt: 1898) -.ad.h-vip.ru -# ||ad.gameagregator.com^ (advblock.txt: 1897) -.ad.gameagregator.com -# ||ad.ddestiny.ru^ (advblock.txt: 1896) -.ad.ddestiny.ru -# ||activepr.ru^$~popup,popup (advblock.txt: 1895) -.activepr.ru -# ||actionteaser.ru^$third-party (advblock.txt: 1894) -.actionteaser.ru -# ||actionrtb.com^ (advblock.txt: 1893) -.actionrtb.com -# ||actionads.ru^$third-party (advblock.txt: 1892) -.actionads.ru -# ||acronixshop.ru^ (advblock.txt: 1891) -.acronixshop.ru -# ||academand.com^ (advblock.txt: 1890) -.academand.com -# ||abusieux.com^ (advblock.txt: 1889) -.abusieux.com -# ||abteaser.com^ (advblock.txt: 1888) -.abteaser.com -# ||ableday.com^ (advblock.txt: 1887) -.ableday.com -# ||7-link.ru^$third-party (advblock.txt: 1886) -.7-link.ru -# ||56zzz.net^ (advblock.txt: 1885) -.56zzz.net -# ||56rrr.net^ (advblock.txt: 1884) -.56rrr.net -# ||56nnn.net^ (advblock.txt: 1883) -.56nnn.net -# ||56fff.net^ (advblock.txt: 1882) -.56fff.net -# ||56eee.net^ (advblock.txt: 1881) -.56eee.net -# ||56ccc.net^ (advblock.txt: 1880) -.56ccc.net -# ||4smi.ru^ (advblock.txt: 1879) -.4smi.ru -# ||4lucysu.com^ (advblock.txt: 1878) -.4lucysu.com -# ||4allclick.ru^$~popup,popup (advblock.txt: 1877) -.4allclick.ru -# ||3under.ru^ (advblock.txt: 1876) -.3under.ru -# ||3lucosy.com^ (advblock.txt: 1875) -.3lucosy.com -# ||2under.ru^ (advblock.txt: 1874) -.2under.ru -# ||2lycosy.com^ (advblock.txt: 1873) -.2lycosy.com -# ||2lycosu.com^ (advblock.txt: 1872) -.2lycosu.com -# ||1under.ru^ (advblock.txt: 1871) -.1under.ru -# ||1ru.tv^$third-party (advblock.txt: 1870) -.1ru.tv -# ||123retr312.ru^ (advblock.txt: 1869) -.123retr312.ru -# ||0ux.ru^ (advblock.txt: 1868) -.0ux.ru -# //cds.*.hwcdn.net/s/*-*-*-*-*.js| (advblock.txt: 1867) -cds.*./.*\.hwcdn\.net/s/.*-.*-.*-.*-.*\.js$ -cds.*.hwcdn.net/s/.*-.*-.*-.*-.*\.js$ -# //95.211.125.226^ (advblock.txt: 1866) -95.211.125.226 -# //95.169.186.139^ (advblock.txt: 1865) -95.169.186.139 -# //91.197.128.34/key= (advblock.txt: 1864) -91.197.128.34/key= -# //89.108.121.205^$object (advblock.txt: 1863) -89.108.121.205 -# //89.108.109.12^$object (advblock.txt: 1862) -89.108.109.12 -# //5.149.255.132^ (advblock.txt: 1861) -5.149.255.132 -# //46.165.197.87^ (advblock.txt: 1860) -46.165.197.87 -# //46.165.197.231^ (advblock.txt: 1859) -46.165.197.231 -# //46.165.197.153^ (advblock.txt: 1858) -46.165.197.153 -# //212.150.34.116^ (advblock.txt: 1857) -212.150.34.116 -# //212.150.34.115^ (advblock.txt: 1856) -212.150.34.115 -# //178.162.137.217^ (advblock.txt: 1855) -178.162.137.217 -# //176.9.245.25/* (advblock.txt: 1854) -176.9.245.25/.* -# //95.211.26.129/banners/* (advblock.txt: 1849) -95.211.26.129/banners/.* -# //95.168.161.173/www/* (advblock.txt: 1848) -95.168.161.173/www/.* -# //91.194.251.66^ (advblock.txt: 1847) -91.194.251.66 -# //90.156.144.98^ (advblock.txt: 1846) -90.156.144.98 -# //85.10.194.51^$third-party (advblock.txt: 1845) -85.10.194.51 -# //83.218.204.107/numbers.md/banners/* (advblock.txt: 1844) -83.218.204.107/numbers\.md/banners/.* -# //80.93.56.187^ (advblock.txt: 1843) -80.93.56.187 -# //80.93.49.192^ (advblock.txt: 1842) -80.93.49.192 -# //80.91.178.234^ (advblock.txt: 1841) -80.91.178.234 -# //78.140.145.178^ (advblock.txt: 1840) -78.140.145.178 -# //217.170.78.*/banners/* (advblock.txt: 1839) -217.170.78.*./(.*/)?banners/.* -# //213.186.217.210/banners/* (advblock.txt: 1838) -213.186.217.210/banners/.* -# //213.163.70.183^ (advblock.txt: 1837) -213.163.70.183 -# //213.151.2.195/storage/*$object (advblock.txt: 1836) -213.151.2.195/storage/.* -# //195.161.119.239^ (advblock.txt: 1835) -195.161.119.239 -# //194.135.105.*/js/* (advblock.txt: 1834) -194.135.105.*./(.*/)?js/.* -# //188.72.225.106^ (advblock.txt: 1833) -188.72.225.106 -# //188.40.18.172^ (advblock.txt: 1832) -188.40.18.172 -# //188.120.246.210/ad/* (advblock.txt: 1831) -188.120.246.210/ad/.* -# //176.58.105.153^ (advblock.txt: 1830) -176.58.105.153 -# ||wqa.ru/show/?inf= (advblock.txt: 1827) -.wqa.ru/show/\?inf= -# ||vtomske.ru/informer/ (advblock.txt: 1826) -.vtomske.ru/informer/ -# ||video.909.su/feeds/feed.php? (advblock.txt: 1825) -.video.909.su/feeds/feed\.php\? -# ||traffim.com/informer/ (advblock.txt: 1824) -.traffim.com/informer/ -# ||tophot-news.com^$third-party (advblock.txt: 1823) -.tophot-news.com -# ||smigid.ru/informer/ (advblock.txt: 1822) -.smigid.ru/informer/ -# ||sibhealth.by/informer/ (advblock.txt: 1821) -.sibhealth.by/informer/ -# ||shopnow.com.ua/media/openmedia_informer/ (advblock.txt: 1820) -.shopnow.com.ua/media/openmedia_informer/ -# ||shkolazhizni.ru/img/export/ (advblock.txt: 1819) -.shkolazhizni.ru/img/export/ -# ||seowebtools.ru/inform/infb.php? (advblock.txt: 1818) -.seowebtools.ru/inform/infb\.php\? -# ||ru-novocti.com^$third-party (advblock.txt: 1817) -.ru-novocti.com -# ||rssportal.ru/getinformer.php? (advblock.txt: 1816) -.rssportal.ru/getinformer\.php\? -# ||rosinvest.com/informs/ (advblock.txt: 1815) -.rosinvest.com/informs/ -# ||protoplex.ru/images/rating/ (advblock.txt: 1814) -.protoplex.ru/images/rating/ -# ||protoplex.ru/cgi-bin/informer.pl? (advblock.txt: 1813) -.protoplex.ru/cgi-bin/informer\.pl\? -# ||pravda.ru/cache/cqc/$third-party,subdocument (advblock.txt: 1812) -.pravda.ru/cache/cqc/ -# ||portak.net/informer/ (advblock.txt: 1811) -.portak.net/informer/ -# ||podfm.ru/informer/ (advblock.txt: 1810) -.podfm.ru/informer/ -# ||piter.tv/widget_news/ (advblock.txt: 1809) -.piter.tv/widget_news/ -# ||otvali.ru/informer/ (advblock.txt: 1808) -.otvali.ru/informer/ -# ||nyx.su/informers/ (advblock.txt: 1807) -.nyx.su/informers/ -# ||nntx.ru^$third-party (advblock.txt: 1805) -.nntx.ru -# ||news.findres.com^$third-party,script,subdocument (advblock.txt: 1804) -.news.findres.com -# ||mhealth.ru^$third-party (advblock.txt: 1803) -.mhealth.ru -# ||meta.ua/informers/? (advblock.txt: 1802) -.meta.ua/informers/\? -# ||meta.ua/*/block.js|$third-party (advblock.txt: 1801) -.meta.ua/.*/block\.js$ -# ||makeup.com.ua/informer/ (advblock.txt: 1800) -.makeup.com.ua/informer/ -# ||lenta-novostei.com^$third-party (advblock.txt: 1799) -.lenta-novostei.com -# ||kp.ru/_ajax/informer_ (advblock.txt: 1798) -.kp.ru/_ajax/informer_ -# ||kinobzor.tv/_cron/js/informer (advblock.txt: 1797) -.kinobzor.tv/_cron/js/informer -# ||jhf.ru/informer/ (advblock.txt: 1796) -.jhf.ru/informer/ -# ||info-dvd.ru/bbm/informer/ (advblock.txt: 1795) -.info-dvd.ru/bbm/informer/ -# ||gazetavv.com/informer- (advblock.txt: 1794) -.gazetavv.com/informer- -# ||from-ua.com^$third-party,subdocument (advblock.txt: 1793) -.from-ua.com -# ||forbes.kz/informer/ (advblock.txt: 1792) -.forbes.kz/informer/ -# ||finam.ru/data/js/ (advblock.txt: 1791) -.finam.ru/data/js/ -# ||fark.ru/js/bannerLink. (advblock.txt: 1790) -.fark.ru/js/bannerLink\. -# ||fair.ru/*/i.php? (advblock.txt: 1789) -.fair.ru/.*/i\.php\? -# ||exchange.meta.ua^ (advblock.txt: 1788) -.exchange.meta.ua -# ||duty.webbia.ru/change/ (advblock.txt: 1787) -.duty.webbia.ru/change/ -# ||doramy.net/informer/ (advblock.txt: 1786) -.doramy.net/informer/ -# ||d.drive.ru/_/$script (advblock.txt: 1785) -.d.drive.ru/_/ -# ||cosmo.ru/cosmo_informers/ (advblock.txt: 1784) -.cosmo.ru/cosmo_informers/ -# ||comon.ru/data/js/ (advblock.txt: 1783) -.comon.ru/data/js/ -# ||cnews.ru/inc/partners/rotator.php? (advblock.txt: 1782) -.cnews.ru/inc/partners/rotator\.php\? -# ||cmexota.ru^$third-party (advblock.txt: 1781) -.cmexota.ru -# ||bigmir.net/informers/ (advblock.txt: 1780) -.bigmir.net/informers/ -# ||bestnews.biz/js/out/ (advblock.txt: 1779) -.bestnews.biz/js/out/ -# ||bash.*/forweb/ (advblock.txt: 1778) -.bash.*./(.*/)?forweb/ -# ||banki.ru/_export/informers/ (advblock.txt: 1777) -.banki.ru/_export/informers/ -# ||autonet.ru/extra/autoclub_informer.aspx (advblock.txt: 1776) -.autonet.ru/extra/autoclub_informer\.aspx -# ||analyzethis.ru/informer.cgi? (advblock.txt: 1775) -.analyzethis.ru/informer\.cgi\? -# ||aif.ru/iframes/ (advblock.txt: 1774) -.aif.ru/iframes/ -# ||66.ru/mod/news2/ (advblock.txt: 1773) -.66.ru/mod/news2/ -# ||24smi.org/i/$script (advblock.txt: 1772) -.24smi.org/i/ -# ||24au.ru/*/24au_informer.js (advblock.txt: 1771) -.24au.ru/.*/24au_informer\.js -# ||1k.by/informers/ (advblock.txt: 1770) -.1k.by/informers/ -# ||泻芯屑锌卸懈胁.褉褎/images/banners/ (advblock.txt: 1766) -.泻芯屑锌卸懈胁.褉褎/images/banners/ -# ||zto.h16.ru^$third-party (advblock.txt: 1765) -.zto.h16.ru -# ||zremcom.ru/anim (advblock.txt: 1764) -.zremcom.ru/anim -# ||zozocash.biz^$third-party (advblock.txt: 1763) -.zozocash.biz -# ||zorkabiz.ru^$third-party (advblock.txt: 1762) -.zorkabiz.ru -# ||znews.su^$third-party (advblock.txt: 1761) -.znews.su -# ||zizu.lv^$third-party (advblock.txt: 1760) -.zizu.lv -# ||zipmonster.ru^$third-party (advblock.txt: 1759) -.zipmonster.ru -# ||zheton.com^$third-party (advblock.txt: 1758) -.zheton.com -# ||zez.su/ban/ (advblock.txt: 1757) -.zez.su/ban/ -# ||zapato.ru/upload/affiliate_pics/ (advblock.txt: 1756) -.zapato.ru/upload/affiliate_pics/ -# ||zamok911.com^$third-party (advblock.txt: 1755) -.zamok911.com -# ||yousticker.com/load/$third-party (advblock.txt: 1754) -.yousticker.com/load/ -# ||yournewhosting.com/images/$third-party (advblock.txt: 1753) -.yournewhosting.com/images/ -# ||yottos.com$third-party (advblock.txt: 1752) -.yottos.com*. -# ||yoga-terapia.ru^$third-party (advblock.txt: 1751) -.yoga-terapia.ru -# ||yellowmedia.biz^$third-party (advblock.txt: 1750) -.yellowmedia.biz -# ||yandexo.ru/rek/ (advblock.txt: 1749) -.yandexo.ru/rek/ -# ||yandex.net/banner/ (advblock.txt: 1748) -.yandex.net/banner/ -# ||yandex-games.ru/ok/banners/ (advblock.txt: 1747) -.yandex-games.ru/ok/banners/ -# ||xxx-news.$third-party (advblock.txt: 1746) -.xxx-news.*. -# ||xstats.in^ (advblock.txt: 1745) -.xstats.in -# ||xchange.cc/banner/ (advblock.txt: 1744) -.xchange.cc/banner/ -# ||xap.ru^$third-party,script (advblock.txt: 1743) -.xap.ru -# ||x4u.ru^$third-party (advblock.txt: 1742) -.x4u.ru -# ||x-traf.ru^ (advblock.txt: 1741) -.x-traf.ru -# ||x-ero.ru^$third-party (advblock.txt: 1740) -.x-ero.ru -# ||wwwomen.ru^$third-party (advblock.txt: 1739) -.wwwomen.ru -# ||wq3.ru^ (advblock.txt: 1738) -.wq3.ru -# ||wpclktls.com^ (advblock.txt: 1737) -.wpclktls.com -# ||womenclick.ru^ (advblock.txt: 1735) -.womenclick.ru -# ||wolist.ru^$third-party (advblock.txt: 1734) -.wolist.ru -# ||wmzona.com^$third-party (advblock.txt: 1733) -.wmzona.com -# ||wmplace.ru^ (advblock.txt: 1732) -.wmplace.ru -# ||wmlink.$third-party (advblock.txt: 1731) -.wmlink.*. -# ||wmirk.ru^$third-party (advblock.txt: 1730) -.wmirk.ru -# ||wm-talk.org^$third-party (advblock.txt: 1729) -.wm-talk.org -# ||wm-help.net/b.php? (advblock.txt: 1728) -.wm-help.net/b\.php\? -# ||wm-goldenclick.ru^ (advblock.txt: 1727) -.wm-goldenclick.ru -# ||wizzzards.com^ (advblock.txt: 1726) -.wizzzards.com -# ||winlinebet.com^$third-party (advblock.txt: 1725) -.winlinebet.com -# ||win2profit1.com/upload_dynamics/ (advblock.txt: 1724) -.win2profit1.com/upload_dynamics/ -# ||wewonurgold.ws^$third-party (advblock.txt: 1723) -.wewonurgold.ws -# ||westbyte.com/scripts/bs/bc.php?bi= (advblock.txt: 1722) -.westbyte.com/scripts/bs/bc\.php\?bi= -# ||weclever.ru/block.php? (advblock.txt: 1721) -.weclever.ru/block\.php\? -# ||websurf.ru/? (advblock.txt: 1720) -.websurf.ru/\? -# ||webproficlub.ru^ (advblock.txt: 1719) -.webproficlub.ru -# ||webocat.ru^ (advblock.txt: 1718) -.webocat.ru -# ||weboborona.ru/pic/wban (advblock.txt: 1717) -.weboborona.ru/pic/wban -# ||webme.com/selfpromotion. (advblock.txt: 1716) -.webme.com/selfpromotion\. -# ||webmax.su/banner/ (advblock.txt: 1715) -.webmax.su/banner/ -# ||weblist.ru/images/weblist (advblock.txt: 1714) -.weblist.ru/images/weblist -# ||webhost1.ru/design/$third-party (advblock.txt: 1713) -.webhost1.ru/design/ -# ||webex.ru^$third-party (advblock.txt: 1712) -.webex.ru -# ||webasm.com^ (advblock.txt: 1711) -.webasm.com -# ||web-rom.ru^ (advblock.txt: 1710) -.web-rom.ru -# ||wbn.su^ (advblock.txt: 1709) -.wbn.su -# ||warnet.ws/banners/ (advblock.txt: 1706) -.warnet.ws/banners/ -# ||warezplatinum.com^$third-party (advblock.txt: 1705) -.warezplatinum.com -# ||wapstart.ru^ (advblock.txt: 1704) -.wapstart.ru -# ||wap-click.net^ (advblock.txt: 1703) -.wap-click.net -# ||wambacdn.net/images/*/promo_search_form/ (advblock.txt: 1702) -.wambacdn.net/images/.*/promo_search_form/ -# ||vz.ru/inc/b/ (advblock.txt: 1701) -.vz.ru/inc/b/ -# ||vyatka-host.ru^$third-party (advblock.txt: 1700) -.vyatka-host.ru -# ||vtochku.net^ (advblock.txt: 1699) -.vtochku.net -# ||vtizr.com^ (advblock.txt: 1698) -.vtizr.com -# ||vsexshop.ru^$third-party (advblock.txt: 1697) -.vsexshop.ru -# ||vsetv.com/pic/paid/ (advblock.txt: 1696) -.vsetv.com/pic/paid/ -# ||vsesumki.com^$third-party (advblock.txt: 1695) -.vsesumki.com -# ||vsemp.ru^$third-party (advblock.txt: 1694) -.vsemp.ru -# ||vsem.ru^$third-party (advblock.txt: 1693) -.vsem.ru -# ||vsekino.su^$third-party (advblock.txt: 1692) -.vsekino.su -# ||vredno.com.ua/img/ (advblock.txt: 1691) -.vredno.com.ua/img/ -# ||vpsite.ru^$third-party (advblock.txt: 1690) -.vpsite.ru -# ||vpered.ru^$third-party (advblock.txt: 1689) -.vpered.ru -# ||voyna-plemyon.ru^$third-party (advblock.txt: 1688) -.voyna-plemyon.ru -# ||votetraffic.ru^ (advblock.txt: 1687) -.votetraffic.ru -# ||vodkov.net^$third-party (advblock.txt: 1686) -.vodkov.net -# ||vladmag.ru^$third-party (advblock.txt: 1685) -.vladmag.ru -# ||vladkofe.ru^$third-party (advblock.txt: 1684) -.vladkofe.ru -# ||vladja.com^$third-party (advblock.txt: 1683) -.vladja.com -# ||vk-traf.ru^ (advblock.txt: 1682) -.vk-traf.ru -# ||vitr.alawar.ru^$subdocument (advblock.txt: 1681) -.vitr.alawar.ru -# ||vipsex.su^*/images/banners/ (advblock.txt: 1680) -.vipsex.su/.*/images/banners/ -# ||vipaccess.su^ (advblock.txt: 1678) -.vipaccess.su -# ||videotraff.ru^ (advblock.txt: 1677) -.videotraff.ru -# ||videoruletka.net^$third-party (advblock.txt: 1676) -.videoruletka.net -# ||videoplaza.tv/creatives/assets/ (advblock.txt: 1675) -.videoplaza.tv/creatives/assets/ -# ||videomay.ru^ (advblock.txt: 1674) -.videomay.ru -# ||videoklass.ru^$third-party (advblock.txt: 1673) -.videoklass.ru -# ||videoigr.net^$third-party,subdocument (advblock.txt: 1672) -.videoigr.net -# ||videoigr.net/includes/$third-party (advblock.txt: 1671) -.videoigr.net/includes/ -# ||videofan.ru^$third-party (advblock.txt: 1670) -.videofan.ru -# ||videocore.tv^*/pladform_ (advblock.txt: 1669) -.videocore.tv/.*/pladform_ -# ||videoclik.$third-party (advblock.txt: 1668) -.videoclik.*. -# ||video-tutorial.ucoz.ru/Foto/ (advblock.txt: 1667) -.video-tutorial.ucoz.ru/Foto/ -# ||video-link.ru^ (advblock.txt: 1666) -.video-link.ru -# ||video-invest.net^ (advblock.txt: 1665) -.video-invest.net -# ||vicepiter.ru^$third-party (advblock.txt: 1664) -.vicepiter.ru -# ||via-shop.ru^$third-party (advblock.txt: 1663) -.via-shop.ru -# ||vezetmne.ru^ (advblock.txt: 1662) -.vezetmne.ru -# ||vertucash.com^ (advblock.txt: 1661) -.vertucash.com -# ||ventivmedia.com^ (advblock.txt: 1660) -.ventivmedia.com -# ||vclicks.net^ (advblock.txt: 1659) -.vclicks.net -# ||vbm1.ru^ (advblock.txt: 1658) -.vbm1.ru -# ||vba.ru^ (advblock.txt: 1657) -.vba.ru -# ||vareza.net^ (advblock.txt: 1656) -.vareza.net -# ||v-kino.net/pay_click_ (advblock.txt: 1655) -.v-kino.net/pay_click_ -# ||userator.ru/img/ban/ (advblock.txt: 1654) -.userator.ru/img/ban/ -# ||usde.biz^$third-party (advblock.txt: 1653) -.usde.biz -# ||uptracker.ru^$third-party (advblock.txt: 1652) -.uptracker.ru -# ||unlockers.ru^$third-party (advblock.txt: 1651) -.unlockers.ru -# ||uniq-ip.com/via/np? (advblock.txt: 1650) -.uniq-ip.com/via/np\? -# ||umatno.ru/mm/ (advblock.txt: 1649) -.umatno.ru/mm/ -# ||ulitka.ru/logo$image (advblock.txt: 1648) -.ulitka.ru/logo -# ||ukrbuy.com/partner/ (advblock.txt: 1647) -.ukrbuy.com/partner/ -# ||ukrbanner.net^$third-party (advblock.txt: 1646) -.ukrbanner.net -# ||ujav.net^ (advblock.txt: 1645) -.ujav.net -# ||uicp.ru/?bn= (advblock.txt: 1644) -.uicp.ru/\?bn= -# ||ugly.ru/adv_frame. (advblock.txt: 1643) -.ugly.ru/adv_frame\. -# ||uaportal.com/bannes/ (advblock.txt: 1642) -.uaportal.com/bannes/ -# ||uadvt.net^$third-party (advblock.txt: 1641) -.uadvt.net -# ||ua-teens.com^$third-party (advblock.txt: 1640) -.ua-teens.com -# ||txtrk.com^ (advblock.txt: 1639) -.txtrk.com -# ||tx2.ru^ (advblock.txt: 1638) -.tx2.ru -# ||twistcasino.net^ (advblock.txt: 1637) -.twistcasino.net -# ||twevent.org.ua/bn/ (advblock.txt: 1636) -.twevent.org.ua/bn/ -# ||tvoy-startup.ru^$third-party (advblock.txt: 1635) -.tvoy-startup.ru -# ||tvmir.ru/tracks/ (advblock.txt: 1634) -.tvmir.ru/tracks/ -# ||turboroller.ru^ (advblock.txt: 1633) -.turboroller.ru -# ||tubecontext.com^ (advblock.txt: 1632) -.tubecontext.com -# ||ttcl.ru^ (advblock.txt: 1631) -.ttcl.ru -# ||tsr.cdns.com.ua^ (advblock.txt: 1630) -.tsr.cdns.com.ua -# ||tryanka.ru^ (advblock.txt: 1629) -.tryanka.ru -# ||trustlink.ru^$third-party (advblock.txt: 1628) -.trustlink.ru -# ||trusearch.net/affblock/ (advblock.txt: 1627) -.trusearch.net/affblock/ -# ||trafunder.$third-party (advblock.txt: 1626) -.trafunder.*. -# ||trafogon.ru^ (advblock.txt: 1625) -.trafogon.ru -# ||trafmag.com^ (advblock.txt: 1624) -.trafmag.com -# ||traffworld.ru^ (advblock.txt: 1623) -.traffworld.ru -# ||traffstock.ru^ (advblock.txt: 1622) -.traffstock.ru -# ||traffmaster.ru^ (advblock.txt: 1621) -.traffmaster.ru -# ||traffikk.biz^ (advblock.txt: 1620) -.traffikk.biz -# ||traf.spb.ru^$third-party (advblock.txt: 1619) -.traf.spb.ru -# ||traf.biz^ (advblock.txt: 1618) -.traf.biz -# ||traf-birga.net^ (advblock.txt: 1617) -.traf-birga.net -# ||traf-3rs.com^ (advblock.txt: 1616) -.traf-3rs.com -# ||trading-sys.com/affil/banner/ (advblock.txt: 1615) -.trading-sys.com/affil/banner/ -# ||tradeone.ru^ (advblock.txt: 1614) -.tradeone.ru -# ||tradeone.com^ (advblock.txt: 1613) -.tradeone.com -# ||tradeone.com.ua^ (advblock.txt: 1612) -.tradeone.com.ua -# ||tradelinks.$third-party (advblock.txt: 1611) -.tradelinks.*. -# ||trade7.ru^$third-party (advblock.txt: 1610) -.trade7.ru -# ||torgnn.ru^$third-party (advblock.txt: 1609) -.torgnn.ru -# ||topdownloads.ru/charts/ (advblock.txt: 1608) -.topdownloads.ru/charts/ -# ||topcto.ru^$third-party (advblock.txt: 1607) -.topcto.ru -# ||topbrokers.com.ua^$third-party (advblock.txt: 1606) -.topbrokers.com.ua -# ||topadvert.ru^$third-party (advblock.txt: 1605) -.topadvert.ru -# ||top-shop.ru^$third-party (advblock.txt: 1604) -.top-shop.ru -# ||tofun.ru/traff/ (advblock.txt: 1603) -.tofun.ru/traff/ -# ||todaymix.ru^$third-party (advblock.txt: 1602) -.todaymix.ru -# ||tobe.tv/sda/ (advblock.txt: 1601) -.tobe.tv/sda/ -# ||tnx.net^ (advblock.txt: 1600) -.tnx.net -# ||tle.ru^ (advblock.txt: 1599) -.tle.ru -# ||tizzer.ru^ (advblock.txt: 1598) -.tizzer.ru -# ||tizrotba.ru^ (advblock.txt: 1597) -.tizrotba.ru -# ||tizertraf.ru (advblock.txt: 1596) -.tizertraf.ru*. -# ||tizero.ru^ (advblock.txt: 1595) -.tizero.ru -# ||tizerget.net^ (advblock.txt: 1594) -.tizerget.net -# ||timeweb.ru/img/b/ (advblock.txt: 1593) -.timeweb.ru/img/b/ -# ||timedirect.ru^ (advblock.txt: 1592) -.timedirect.ru -# ||tigame.ru/div/? (advblock.txt: 1591) -.tigame.ru/div/\? -# ||ticount.ru^ (advblock.txt: 1590) -.ticount.ru -# ||thebestphotos.ru/wp-content/uploads/banners/ (advblock.txt: 1589) -.thebestphotos.ru/wp-content/uploads/banners/ -# ||thebestphotos.ru/exper.jpg (advblock.txt: 1588) -.thebestphotos.ru/exper\.jpg -# ||testsbox.ru^$third-party (advblock.txt: 1587) -.testsbox.ru -# ||telepark.ua/tpb.php?code= (advblock.txt: 1586) -.telepark.ua/tpb\.php\?code= -# ||telderi.ru/uploads/promote/ (advblock.txt: 1585) -.telderi.ru/uploads/promote/ -# ||telderi.ru/img/banners/ (advblock.txt: 1584) -.telderi.ru/img/banners/ -# ||tehnoklad.ru^$third-party (advblock.txt: 1583) -.tehnoklad.ru -# ||teeser.ru^ (advblock.txt: 1582) -.teeser.ru -# ||teasergate.com^ (advblock.txt: 1581) -.teasergate.com -# ||teasercode.net^ (advblock.txt: 1580) -.teasercode.net -# ||teaser2go.com^ (advblock.txt: 1579) -.teaser2go.com -# ||teaser-goods.ru^ (advblock.txt: 1578) -.teaser-goods.ru -# ||tds-banner.do.am^ (advblock.txt: 1577) -.tds-banner.do.am -# ||tdmplus.ru^$third-party (advblock.txt: 1576) -.tdmplus.ru -# ||tanygin.me/tmp/ (advblock.txt: 1575) -.tanygin.me/tmp/ -# ||takru.com^ (advblock.txt: 1574) -.takru.com -# ||tak.ru^ (advblock.txt: 1573) -.tak.ru -# ||t.pusk.ru^ (advblock.txt: 1572) -.t.pusk.ru -# ||t.mediacartel.ru^ (advblock.txt: 1571) -.t.mediacartel.ru -# ||svpressa.ru^$subdocument (advblock.txt: 1570) -.svpressa.ru -# ||svpressa.ru/tmp/ (advblock.txt: 1569) -.svpressa.ru/tmp/ -# ||svpressa.ru/ad/ (advblock.txt: 1568) -.svpressa.ru/ad/ -# ||surbis.ru^$third-party (advblock.txt: 1567) -.surbis.ru -# ||superwoomen.ru^$third-party (advblock.txt: 1566) -.superwoomen.ru -# ||supertop.ru^$third-party (advblock.txt: 1565) -.supertop.ru -# ||superstyle.ru^$third-party (advblock.txt: 1564) -.superstyle.ru -# ||superfish.com^$third-party (advblock.txt: 1563) -.superfish.com -# ||supercatalog.3dn.ru^$third-party (advblock.txt: 1562) -.supercatalog.3dn.ru -# ||super.md/?col= (advblock.txt: 1561) -.super.md/\?col= -# ||sugar-traff2.com^ (advblock.txt: 1560) -.sugar-traff2.com -# ||submitter.ru*/i.php (advblock.txt: 1559) -.submitter.ru*./(.*/)?i\.php -# ||studio-moderna.com/upload/uploadTopshop (advblock.txt: 1558) -.studio-moderna.com/upload/uploadTopshop -# ||stroyka-direct.ru^ (advblock.txt: 1557) -.stroyka-direct.ru -# ||strogonet.ru^$third-party (advblock.txt: 1556) -.strogonet.ru -# ||strobist.ua/strobist_ (advblock.txt: 1555) -.strobist.ua/strobist_ -# ||stripvidz.com^$third-party (advblock.txt: 1554) -.stripvidz.com -# ||strana.az/banners/ (advblock.txt: 1553) -.strana.az/banners/ -# ||sterno.ru/widget/ (advblock.txt: 1552) -.sterno.ru/widget/ -# ||steptocash.ru^$third-party (advblock.txt: 1551) -.steptocash.ru -# ||steambuy.com^*.gif| (advblock.txt: 1550) -.steambuy.com/.*\.gif$ -# ||steambuy.com/banner/ (advblock.txt: 1549) -.steambuy.com/banner/ -# ||steamaccs.com^$third-party (advblock.txt: 1548) -.steamaccs.com -# ||steam-sell.ru^$third-party (advblock.txt: 1547) -.steam-sell.ru -# ||stdate.ru^ (advblock.txt: 1546) -.stdate.ru -# ||static.terrhq.ru^ (advblock.txt: 1545) -.static.terrhq.ru -# ||statcontent.ru^$third-party (advblock.txt: 1544) -.statcontent.ru -# ||stat.webtrack.biz/api/impression/ (advblock.txt: 1543) -.stat.webtrack.biz/api/impression/ -# ||starphotoblog.com^$third-party (advblock.txt: 1542) -.starphotoblog.com -# ||staffcop.ru/rekl/ (advblock.txt: 1541) -.staffcop.ru/rekl/ -# ||stableprofit.ru^ (advblock.txt: 1540) -.stableprofit.ru -# ||srv.mzcdn.com^ (advblock.txt: 1539) -.srv.mzcdn.com -# ||spytrack.tic.ru^ (advblock.txt: 1538) -.spytrack.tic.ru -# ||sputnik1.ru^$third-party (advblock.txt: 1537) -.sputnik1.ru -# ||sprotiv.com/bnr/ (advblock.txt: 1536) -.sprotiv.com/bnr/ -# ||sppromo.com/feed.php?$third-party (advblock.txt: 1535) -.sppromo.com/feed\.php\? -# ||sportoboz.ru^$third-party (advblock.txt: 1534) -.sportoboz.ru -# ||sport-fitnes.ru^$third-party (advblock.txt: 1533) -.sport-fitnes.ru -# ||spitter.pauk.ru^ (advblock.txt: 1532) -.spitter.pauk.ru -# ||spbland.ru/bban/ (advblock.txt: 1531) -.spbland.ru/bban/ -# ||sorcerers.net/includes/butler/butler.php? (advblock.txt: 1530) -.sorcerers.net/includes/butler/butler\.php\? -# ||softbn.ru^$third-party (advblock.txt: 1529) -.softbn.ru -# ||soft-teleport.ru/uploads/ad/ (advblock.txt: 1528) -.soft-teleport.ru/uploads/ad/ -# ||socialmart.ru/widget/ (advblock.txt: 1527) -.socialmart.ru/widget/ -# ||smsvcash.ru^ (advblock.txt: 1526) -.smsvcash.ru -# ||smsfiles.ru/ban*.gif (advblock.txt: 1525) -.smsfiles.ru/ban.*\.gif -# ||smsconvertv3.ru^$third-party (advblock.txt: 1524) -.smsconvertv3.ru -# ||smile32.ru^$third-party (advblock.txt: 1523) -.smile32.ru -# ||smigid.ru^$third-party (advblock.txt: 1522) -.smigid.ru -# ||smiar.ru^ (advblock.txt: 1521) -.smiar.ru -# ||smi2.ru/data/$third-party (advblock.txt: 1520) -.smi2.ru/data/ -# ||smartbucks.ru^ (advblock.txt: 1519) -.smartbucks.ru -# ||smart-soft.ru^$third-party (advblock.txt: 1518) -.smart-soft.ru -# ||slimp.net^$third-party (advblock.txt: 1517) -.slimp.net -# ||slavabogam.ru/catalog/partner/ (advblock.txt: 1516) -.slavabogam.ru/catalog/partner/ -# ||skymec.ru/image/banners/ (advblock.txt: 1515) -.skymec.ru/image/banners/ -# ||skylog.kz/img.php? (advblock.txt: 1514) -.skylog.kz/img\.php\? -# ||skinon.ru/uploads/media/bnr_ (advblock.txt: 1513) -.skinon.ru/uploads/media/bnr_ -# ||sitetraff.ru^$third-party (advblock.txt: 1512) -.sitetraff.ru -# ||sir.uz^ (advblock.txt: 1511) -.sir.uz -# ||simplity.ru^$third-party (advblock.txt: 1510) -.simplity.ru -# ||simplechange.ru/promo/ (advblock.txt: 1509) -.simplechange.ru/promo/ -# ||shopik.tv^$third-party,subdocument (advblock.txt: 1508) -.shopik.tv -# ||sexprice.ru^$third-party (advblock.txt: 1506) -.sexprice.ru -# ||sexplay.com.ua^$third-party (advblock.txt: 1505) -.sexplay.com.ua -# ||sexfilms.ru^$third-party (advblock.txt: 1504) -.sexfilms.ru -# ||sexfabrika.ru/*.gif (advblock.txt: 1503) -.sexfabrika.ru/.*\.gif -# ||sex-finger.com^$third-party (advblock.txt: 1502) -.sex-finger.com -# ||sevensteps.biz^$third-party (advblock.txt: 1501) -.sevensteps.biz -# ||setlinks.ru^$third-party (advblock.txt: 1500) -.setlinks.ru -# ||servidormensseger.hotbox.ru^ (advblock.txt: 1499) -.servidormensseger.hotbox.ru -# ||server.adeasy.ru^ (advblock.txt: 1498) -.server.adeasy.ru -# ||seriouspartner.ru^$third-party (advblock.txt: 1497) -.seriouspartner.ru -# ||serialinfo.ru^$third-party (advblock.txt: 1496) -.serialinfo.ru -# ||seotechnology.ru/imgygpag.php? (advblock.txt: 1495) -.seotechnology.ru/imgygpag\.php\? -# ||seotechnology.ru/imgseo.php? (advblock.txt: 1494) -.seotechnology.ru/imgseo\.php\? -# ||seorate.ru^$third-party (advblock.txt: 1493) -.seorate.ru -# ||seopult.ru^$third-party (advblock.txt: 1492) -.seopult.ru -# ||seoliner.ru^$third-party (advblock.txt: 1491) -.seoliner.ru -# ||seoheep.com/affiliate/ (advblock.txt: 1490) -.seoheep.com/affiliate/ -# ||seo-sport.ru^$third-party (advblock.txt: 1488) -.seo-sport.ru -# ||seo-monster.ru/img_ (advblock.txt: 1487) -.seo-monster.ru/img_ -# ||senseagency.ru^$third-party (advblock.txt: 1486) -.senseagency.ru -# ||selectornews.com^$third-party (advblock.txt: 1485) -.selectornews.com -# ||secure-it.imrworldwide.com/cgi-bin/m? (advblock.txt: 1484) -.secure-it.imrworldwide.com/cgi-bin/m\? -# ||searchmeta.webhost.ru^ (advblock.txt: 1483) -.searchmeta.webhost.ru -# ||scrool.ru^$third-party (advblock.txt: 1482) -.scrool.ru -# ||sb.google.com/safebrowsing/update (advblock.txt: 1481) -.sb.google.com/safebrowsing/update -# ||sb-money.ru^$third-party (advblock.txt: 1480) -.sb-money.ru -# ||saturn-plus.ru/downloads/$third-party (advblock.txt: 1479) -.saturn-plus.ru/downloads/ -# ||sape.ru/images/banners/ (advblock.txt: 1478) -.sape.ru/images/banners/ -# ||sape.ru/bn/ (advblock.txt: 1477) -.sape.ru/bn/ -# ||sampishi.ru^$third-party (advblock.txt: 1476) -.sampishi.ru -# ||sabrinavi.ru/external_list.js? (advblock.txt: 1475) -.sabrinavi.ru/external_list\.js\? -# ||s.s-ports.ru/sites/default/files/i/brandings/ (advblock.txt: 1474) -.s.s-ports.ru/sites/default/files/i/brandings/ -# ||s.s-ports.ru/i/$third-party (advblock.txt: 1473) -.s.s-ports.ru/i/ -# ||s.ladoshki.com/pics/shirts/ (advblock.txt: 1472) -.s.ladoshki.com/pics/shirts/ -# ||s.ladoshki.com/p/a/ (advblock.txt: 1471) -.s.ladoshki.com/p/a/ -# ||s.ex.region70.ru^$third-party (advblock.txt: 1470) -.s.ex.region70.ru -# ||s-pl.ru/downloads/$third-party (advblock.txt: 1469) -.s-pl.ru/downloads/ -# ||ruwm.ru/links.php? (advblock.txt: 1468) -.ruwm.ru/links\.php\? -# ||ruvideo.net/obzor/ (advblock.txt: 1467) -.ruvideo.net/obzor/ -# ||rustrackers.ru^$third-party (advblock.txt: 1466) -.rustrackers.ru -# ||rustizer.com^ (advblock.txt: 1465) -.rustizer.com -# ||ruspravda.info/resources/images/$third-party (advblock.txt: 1464) -.ruspravda.info/resources/images/ -# ||rusnabat.com^$third-party (advblock.txt: 1463) -.rusnabat.com -# ||rusmedserv.com^$third-party (advblock.txt: 1462) -.rusmedserv.com -# ||ruskompas.ru/incs/ (advblock.txt: 1461) -.ruskompas.ru/incs/ -# ||ruscontext.com^$third-party (advblock.txt: 1460) -.ruscontext.com -# ||ruscams.com^$third-party (advblock.txt: 1459) -.ruscams.com -# ||rus-porno.ru^$third-party (advblock.txt: 1458) -.rus-porno.ru -# ||ruinfosale.com/banner/ (advblock.txt: 1457) -.ruinfosale.com/banner/ -# ||ru.gg/werbemittel/ (advblock.txt: 1456) -.ru.gg/werbemittel/ -# ||ru-top.net/img/ (advblock.txt: 1455) -.ru-top.net/img/ -# ||rssnewser.ru/add (advblock.txt: 1454) -.rssnewser.ru/add -# ||rs-context.ru^$third-party (advblock.txt: 1453) -.rs-context.ru -# ||rrru.ru/img.php? (advblock.txt: 1452) -.rrru.ru/img\.php\? -# ||rotator.$third-party (advblock.txt: 1450) -.rotator.*. -# ||rotapost.ru^$third-party (advblock.txt: 1449) -.rotapost.ru -# ||rot.rusoul.ru/rotator/ (advblock.txt: 1448) -.rot.rusoul.ru/rotator/ -# ||rosphoto.com/img/ (advblock.txt: 1447) -.rosphoto.com/img/ -# ||rosban.su^ (advblock.txt: 1446) -.rosban.su -# ||rorer.ru^$third-party (advblock.txt: 1445) -.rorer.ru -# ||rookee.ru^$third-party (advblock.txt: 1444) -.rookee.ru -# ||rollad.ru^ (advblock.txt: 1443) -.rollad.ru -# ||robottext.ru^ (advblock.txt: 1442) -.robottext.ru -# ||rnbn.ru^$third-party (advblock.txt: 1441) -.rnbn.ru -# ||rivalo.com^*/affiliate/ (advblock.txt: 1440) -.rivalo.com/.*/affiliate/ -# ||rimvoyeur.ru^$third-party (advblock.txt: 1439) -.rimvoyeur.ru -# ||richtraffic.ru^$third-party (advblock.txt: 1438) -.richtraffic.ru -# ||richpopup.com^$third-party (advblock.txt: 1437) -.richpopup.com -# ||richclick.ru^$third-party (advblock.txt: 1436) -.richclick.ru -# ||rich-banner.ru^ (advblock.txt: 1435) -.rich-banner.ru -# ||reklamnoedelo.com^$third-party (advblock.txt: 1434) -.reklamnoedelo.com -# ||reklamist.ru^ (advblock.txt: 1433) -.reklamist.ru -# ||reklamaster.com^$third-party (advblock.txt: 1432) -.reklamaster.com -# ||reklama.lv/promotion/ (advblock.txt: 1431) -.reklama.lv/promotion/ -# ||reggun.ru/images/b*_ (advblock.txt: 1430) -.reggun.ru/images/b.*_ -# ||regac.ru^$third-party (advblock.txt: 1429) -.regac.ru -# ||reg.ru^*_widget. (advblock.txt: 1428) -.reg.ru/.*_widget\. -# ||reforum.ru/j/partner/ (advblock.txt: 1427) -.reforum.ru/j/partner/ -# ||refo.ru^$third-party (advblock.txt: 1426) -.refo.ru -# ||referalov.net^$third-party (advblock.txt: 1425) -.referalov.net -# ||refer.ru^$third-party (advblock.txt: 1424) -.refer.ru -# ||redsurf.ru/bn/ (advblock.txt: 1423) -.redsurf.ru/bn/ -# ||red.by/redban (advblock.txt: 1422) -.red.by/redban -# ||recreativ.ru^ (advblock.txt: 1421) -.recreativ.ru -# ||recreativ.com^ (advblock.txt: 1420) -.recreativ.com -# ||recreativ.com.ua^ (advblock.txt: 1419) -.recreativ.com.ua -# ||rec2000.at.ua^$third-party (advblock.txt: 1418) -.rec2000.at.ua -# ||realfuckdates.net^$third-party,image,object (advblock.txt: 1417) -.realfuckdates.net -# ||rb.sport-express.ru^ (advblock.txt: 1416) -.rb.sport-express.ru -# ||rb.rfn.ru^ (advblock.txt: 1415) -.rb.rfn.ru -# ||rax.ru^$third-party (advblock.txt: 1414) -.rax.ru -# ||rating.km.ua/*? (advblock.txt: 1413) -.rating.km.ua/.*\? -# ||rate.ee/pics/banners/ (advblock.txt: 1412) -.rate.ee/pics/banners/ -# ||rate.7surf.ru/img.php? (advblock.txt: 1411) -.rate.7surf.ru/img\.php\? -# ||rarenok.biz^ (advblock.txt: 1410) -.rarenok.biz -# ||raptop.ru/images/img*.gif (advblock.txt: 1409) -.raptop.ru/images/img.*\.gif -# ||rambler.ru/xpromo_ (advblock.txt: 1408) -.rambler.ru/xpromo_ -# ||radio-tech.ru/pic/pages/ (advblock.txt: 1407) -.radio-tech.ru/pic/pages/ -# ||radikal.ru/bh.ashx? (advblock.txt: 1406) -.radikal.ru/bh\.ashx\? -# ||r1media.ru^$third-party (advblock.txt: 1405) -.r1media.ru -# ||r.qip.ru^ (advblock.txt: 1404) -.r.qip.ru -# ||r-money.ru^$third-party (advblock.txt: 1403) -.r-money.ru -# ||qzx.ru/gf/ (advblock.txt: 1402) -.qzx.ru/gf/ -# ||qwex.ru^$third-party (advblock.txt: 1401) -.qwex.ru -# ||qle.ru/cgi-bin/ (advblock.txt: 1399) -.qle.ru/cgi-bin/ -# ||putana.cz^$third-party (advblock.txt: 1398) -.putana.cz -# ||pustoty.net^$third-party (advblock.txt: 1397) -.pustoty.net -# ||pult.ru/pictures/p_banner/ (advblock.txt: 1396) -.pult.ru/pictures/p_banner/ -# ||puls.lv^$third-party (advblock.txt: 1395) -.puls.lv -# ||protect-lab.com/promo/ (advblock.txt: 1394) -.protect-lab.com/promo/ -# ||prostootdam.ru/modules/about/ (advblock.txt: 1393) -.prostootdam.ru/modules/about/ -# ||prosto.cn.ua^$third-party (advblock.txt: 1392) -.prosto.cn.ua -# ||prospero.ru^$third-party (advblock.txt: 1391) -.prospero.ru -# ||pronskaya.ru/b/$third-party (advblock.txt: 1390) -.pronskaya.ru/b/ -# ||promoloader.com^ (advblock.txt: 1389) -.promoloader.com -# ||promofor.me^ (advblock.txt: 1388) -.promofor.me -# ||promobuster.net^ (advblock.txt: 1387) -.promobuster.net -# ||promoblock.$third-party (advblock.txt: 1386) -.promoblock.*. -# ||promo.md^$third-party (advblock.txt: 1385) -.promo.md -# ||promag.com.ua/images/banner/ (advblock.txt: 1384) -.promag.com.ua/images/banner/ -# ||profitwizard.ru^ (advblock.txt: 1383) -.profitwizard.ru -# ||profitwizard.net^ (advblock.txt: 1382) -.profitwizard.net -# ||profit-partner.ru^$third-party (advblock.txt: 1381) -.profit-partner.ru -# ||prodnepr.dp.ua/informermp.php (advblock.txt: 1380) -.prodnepr.dp.ua/informermp\.php -# ||prizma.kz^ (advblock.txt: 1379) -.prizma.kz -# ||privatzone.biz^ (advblock.txt: 1378) -.privatzone.biz -# ||privatteaser.ru (advblock.txt: 1377) -.privatteaser.ru*. -# ||price.ua^$third-party (advblock.txt: 1376) -.price.ua -# ||pressball.by/files/$object (advblock.txt: 1375) -.pressball.by/files/ -# ||pr-inc.biz^ (advblock.txt: 1374) -.pr-inc.biz -# ||pozzitiv.ru^$third-party (advblock.txt: 1373) -.pozzitiv.ru -# ||post.rmbn.net^ (advblock.txt: 1372) -.post.rmbn.net -# ||pornula1.com^$third-party (advblock.txt: 1371) -.pornula1.com -# ||porno4you.org/uploads/ (advblock.txt: 1370) -.porno4you.org/uploads/ -# ||popuptraf.$third-party (advblock.txt: 1369) -.popuptraf.*. -# ||popularsite.ru/*.php? (advblock.txt: 1368) -.popularsite.ru/.*\.php\? -# ||popad.ru^$third-party (advblock.txt: 1367) -.popad.ru -# ||pop-wmz.ru^$third-party (advblock.txt: 1366) -.pop-wmz.ru -# ||pop-banner.$third-party (advblock.txt: 1365) -.pop-banner.*. -# ||ponsshop.ru^$third-party (advblock.txt: 1364) -.ponsshop.ru -# ||pomogi.org/urgent/1/ (advblock.txt: 1363) -.pomogi.org/urgent/1/ -# ||pokrutim.ru^ (advblock.txt: 1362) -.pokrutim.ru -# ||poisk.su/top.php? (advblock.txt: 1361) -.poisk.su/top\.php\? -# ||poisk.su/img.php? (advblock.txt: 1360) -.poisk.su/img\.php\? -# ||plus10sm.ru^$third-party (advblock.txt: 1359) -.plus10sm.ru -# ||plesen.net/kp*. (advblock.txt: 1358) -.plesen.net/kp.*\. -# ||play2.biz^$third-party (advblock.txt: 1357) -.play2.biz -# ||play-in-flash.com/wp-content/$third-party (advblock.txt: 1356) -.play-in-flash.com/wp-content/ -# ||platinumcode.net^$third-party (advblock.txt: 1355) -.platinumcode.net -# ||planetaua.net^$third-party (advblock.txt: 1354) -.planetaua.net -# ||placeoff.ru^ (advblock.txt: 1353) -.placeoff.ru -# ||pix-cdn.org/image/vk/ (advblock.txt: 1352) -.pix-cdn.org/image/vk/ -# ||pix-cdn.org/image/ts/ (advblock.txt: 1351) -.pix-cdn.org/image/ts/ -# ||pix-cdn.org/image/banner/ (advblock.txt: 1350) -.pix-cdn.org/image/banner/ -# ||pirojok.net^$third-party (advblock.txt: 1349) -.pirojok.net -# ||pinkintim.com/image/$third-party (advblock.txt: 1348) -.pinkintim.com/image/ -# ||pingmedia.ru^$third-party (advblock.txt: 1347) -.pingmedia.ru -# ||pickegg.com^ (advblock.txt: 1346) -.pickegg.com -# ||picbay.ru^$third-party (advblock.txt: 1345) -.picbay.ru -# ||personalspy.ru^$third-party (advblock.txt: 1344) -.personalspy.ru -# ||penzensky.ru^$third-party (advblock.txt: 1343) -.penzensky.ru -# ||penza-online.ru/cgi-bin/userstats.pl? (advblock.txt: 1342) -.penza-online.ru/cgi-bin/userstats\.pl\? -# ||peel-down.ru^$third-party (advblock.txt: 1341) -.peel-down.ru -# ||pcweek.ru/upload/*/160x100 (advblock.txt: 1340) -.pcweek.ru/upload/.*/160x100 -# ||pcmag.ru/upload/$object (advblock.txt: 1339) -.pcmag.ru/upload/ -# ||pc-user-shop.com/aff/ (advblock.txt: 1338) -.pc-user-shop.com/aff/ -# ||pc-newcomer.ru/partner/ (advblock.txt: 1337) -.pc-newcomer.ru/partner/ -# ||pbnet.ru^$third-party (advblock.txt: 1336) -.pbnet.ru -# ||pbid.iforex.com^$third-party (advblock.txt: 1335) -.pbid.iforex.com -# ||paytraf.ru^ (advblock.txt: 1334) -.paytraf.ru -# ||payban.su^ (advblock.txt: 1333) -.payban.su -# ||pay-partner.ru^$third-party (advblock.txt: 1332) -.pay-partner.ru -# ||pay-hit.com^ (advblock.txt: 1331) -.pay-hit.com -# ||passport-rk.ru/widgets/partner/ (advblock.txt: 1330) -.passport-rk.ru/widgets/partner/ -# ||partners.vsemayki.ru^$third-party (advblock.txt: 1329) -.partners.vsemayki.ru -# ||partners.otpusk.com^$third-party (advblock.txt: 1328) -.partners.otpusk.com -# ||partners.mobiguru.ru^ (advblock.txt: 1327) -.partners.mobiguru.ru -# ||partner.privatbank.ua^$third-party (advblock.txt: 1326) -.partner.privatbank.ua -# ||partner.pladform.ru^ (advblock.txt: 1325) -.partner.pladform.ru -# ||partner.join.com.ua^$script (advblock.txt: 1324) -.partner.join.com.ua -# ||partner.ixi.ua^ (advblock.txt: 1323) -.partner.ixi.ua -# ||partner.hideme.ru^$third-party (advblock.txt: 1322) -.partner.hideme.ru -# ||partner.gameboss.ru^$third-party (advblock.txt: 1321) -.partner.gameboss.ru -# ||partner.allsoft.ru^ (advblock.txt: 1320) -.partner.allsoft.ru -# ||partner.alfa.kz^ (advblock.txt: 1319) -.partner.alfa.kz -# ||parimatch.com/jss/$object (advblock.txt: 1318) -.parimatch.com/jss/ -# ||pammru.net^$third-party (advblock.txt: 1317) -.pammru.net -# ||palantir.in/showban*.php? (advblock.txt: 1316) -.palantir.in/showban.*\.php\? -# ||oxysoft.ru^$third-party (advblock.txt: 1315) -.oxysoft.ru -# ||owebmoney.ru^$third-party (advblock.txt: 1314) -.owebmoney.ru -# ||owap.su^ (advblock.txt: 1313) -.owap.su -# ||oru.ru^$third-party (advblock.txt: 1312) -.oru.ru -# ||or.ru/inner| (advblock.txt: 1311) -.or.ru/inner$ -# ||openlinks.ru^$third-party (advblock.txt: 1310) -.openlinks.ru -# ||open.by/bnrs/ (advblock.txt: 1309) -.open.by/bnrs/ -# ||oowl.ru/ab/ (advblock.txt: 1308) -.oowl.ru/ab/ -# ||only4men.ru^$third-party (advblock.txt: 1307) -.only4men.ru -# ||onlineresume.ru/banner*? (advblock.txt: 1306) -.onlineresume.ru/banner.*\? -# ||ongm.net^*/images/banner.png (advblock.txt: 1305) -.ongm.net/.*/images/banner\.png -# ||onban.ru^ (advblock.txt: 1304) -.onban.ru -# ||oiya.ru^ (advblock.txt: 1303) -.oiya.ru -# ||obmenki.ru.com^$third-party (advblock.txt: 1302) -.obmenki.ru.com -# ||oberegi-runi.ru^*partnership/ (advblock.txt: 1301) -.oberegi-runi.ru/.*partnership/ -# ||oberegi-runi.ru/assets/ (advblock.txt: 1300) -.oberegi-runi.ru/assets/ -# ||numbers.md^$third-party (advblock.txt: 1299) -.numbers.md -# ||nu-stars.com^$third-party (advblock.txt: 1298) -.nu-stars.com -# ||nsoft-s.com^$third-party (advblock.txt: 1297) -.nsoft-s.com -# ||novosti.dn.ua^$object (advblock.txt: 1296) -.novosti.dn.ua -# ||novem.pl^$third-party (advblock.txt: 1295) -.novem.pl -# ||novatizer.com^$third-party (advblock.txt: 1294) -.novatizer.com -# ||nova-star.ru^$third-party (advblock.txt: 1293) -.nova-star.ru -# ||nostalgia.onego.ru^ (advblock.txt: 1292) -.nostalgia.onego.ru -# ||nomer1.ru.ru^ (advblock.txt: 1291) -.nomer1.ru.ru -# ||noion.ru^$third-party (advblock.txt: 1290) -.noion.ru -# ||nnn.novoteka.ru^$third-party (advblock.txt: 1289) -.nnn.novoteka.ru -# ||nline.net.ua/nl_banner/ (advblock.txt: 1288) -.nline.net.ua/nl_banner/ -# ||ningres.ru^ (advblock.txt: 1287) -.ningres.ru -# ||nimp.org^$third-party (advblock.txt: 1286) -.nimp.org -# ||nic.ua/i/b/ (advblock.txt: 1285) -.nic.ua/i/b/ -# ||ngads.com^$third-party (advblock.txt: 1284) -.ngads.com -# ||nextonmarket.com/i/banners/ (advblock.txt: 1283) -.nextonmarket.com/i/banners/ -# ||newsprom.ru/img/ (advblock.txt: 1282) -.newsprom.ru/img/ -# ||news.rin.ru^$third-party (advblock.txt: 1281) -.news.rin.ru -# ||newclick.org^$third-party (advblock.txt: 1280) -.newclick.org -# ||netporno.org^$third-party (advblock.txt: 1279) -.netporno.org -# ||neosmi.ru^$third-party (advblock.txt: 1278) -.neosmi.ru -# ||neosap.ru^$third-party (advblock.txt: 1277) -.neosap.ru -# ||neoban.su^ (advblock.txt: 1276) -.neoban.su -# ||nehudeyka.ru^$third-party (advblock.txt: 1275) -.nehudeyka.ru -# ||need2buy.1gb.ru^ (advblock.txt: 1274) -.need2buy.1gb.ru -# ||nclick.ru^ (advblock.txt: 1273) -.nclick.ru -# ||nasf.ru/ad/ (advblock.txt: 1272) -.nasf.ru/ad/ -# ||nadavi.ru^$third-party (advblock.txt: 1271) -.nadavi.ru -# ||nadavi.com.ua^$third-party (advblock.txt: 1270) -.nadavi.com.ua -# ||n.vipadvert.net^ (advblock.txt: 1269) -.n.vipadvert.net -# ||mytraf.ru^ (advblock.txt: 1268) -.mytraf.ru -# ||myshopthings.com/partner-rtb.js? (advblock.txt: 1267) -.myshopthings.com/partner-rtb\.js\? -# ||myragon.ru^$third-party,~popup,popup (advblock.txt: 1266) -.myragon.ru -# ||myjulia.ru^$third-party (advblock.txt: 1265) -.myjulia.ru -# ||myjane.ru^$third-party (advblock.txt: 1264) -.myjane.ru -# ||myiphone.be^$third-party (advblock.txt: 1263) -.myiphone.be -# ||myinfocenter.ru^$third-party (advblock.txt: 1262) -.myinfocenter.ru -# ||myhosti.ru/manimg/userdata/ (advblock.txt: 1261) -.myhosti.ru/manimg/userdata/ -# ||mydatingcash.com^ (advblock.txt: 1260) -.mydatingcash.com -# ||musictraffic.ru^$third-party (advblock.txt: 1259) -.musictraffic.ru -# ||musicrank.ru/js.php? (advblock.txt: 1258) -.musicrank.ru/js\.php\? -# ||multonly.ru^$third-party (advblock.txt: 1257) -.multonly.ru -# ||multiclick.ru^ (advblock.txt: 1256) -.multiclick.ru -# ||moviecash.ru^$third-party (advblock.txt: 1255) -.moviecash.ru -# ||mostinfo.net/img/top/ (advblock.txt: 1254) -.mostinfo.net/img/top/ -# ||moshoster.ru/images/$third-party (advblock.txt: 1253) -.moshoster.ru/images/ -# ||moovy.ru/b*.php? (advblock.txt: 1252) -.moovy.ru/b.*\.php\? -# ||moonbit.co.in/img/ (advblock.txt: 1251) -.moonbit.co.in/img/ -# ||moogle.ru^$third-party (advblock.txt: 1250) -.moogle.ru -# ||monolit.franchia.pp.ua^$third-party (advblock.txt: 1249) -.monolit.franchia.pp.ua -# ||moneysyst.biz^ (advblock.txt: 1248) -.moneysyst.biz -# ||money.loveplanet.ru/nb/ (advblock.txt: 1247) -.money.loveplanet.ru/nb/ -# ||money-job.ru^$third-party (advblock.txt: 1246) -.money-job.ru -# ||monetti.ru/images/banners/ (advblock.txt: 1245) -.monetti.ru/images/banners/ -# ||moijs.com^ (advblock.txt: 1244) -.moijs.com -# ||moifoto.ru/rek_ (advblock.txt: 1243) -.moifoto.ru/rek_ -# ||modastro.ee^$third-party (advblock.txt: 1242) -.modastro.ee -# ||mobn.net^$third-party (advblock.txt: 1241) -.mobn.net -# ||mobiads.ru^ (advblock.txt: 1240) -.mobiads.ru -# ||mobi-cinema.net^$third-party (advblock.txt: 1239) -.mobi-cinema.net -# ||mnogo.ru^$third-party (advblock.txt: 1238) -.mnogo.ru -# ||mmcispartners.com^$third-party (advblock.txt: 1237) -.mmcispartners.com -# ||mlsn.ru/specials/ (advblock.txt: 1236) -.mlsn.ru/specials/ -# ||mlgame.ru/wiki/attach/Referal/ (advblock.txt: 1235) -.mlgame.ru/wiki/attach/Referal/ -# ||mirvolos.com$third-party (advblock.txt: 1234) -.mirvolos.com*. -# ||mirmaek.ru^$third-party (advblock.txt: 1233) -.mirmaek.ru -# ||miralinks.ru^$third-party (advblock.txt: 1232) -.miralinks.ru -# ||mir-games.org/uploads/$third-party (advblock.txt: 1231) -.mir-games.org/uploads/ -# ||miniban.ru^ (advblock.txt: 1230) -.miniban.ru -# ||micro-win.com^$third-party (advblock.txt: 1229) -.micro-win.com -# ||mgnc.org/external-banners/ (advblock.txt: 1228) -.mgnc.org/external-banners/ -# ||metod-online.com^*/promo/ (advblock.txt: 1227) -.metod-online.com/.*/promo/ -# ||metaprofit.net^$third-party (advblock.txt: 1226) -.metaprofit.net -# ||meta.ua/*/partn.$script,stylesheet (advblock.txt: 1225) -.meta.ua/.*/partn\. -# ||mercatos.ru^$third-party (advblock.txt: 1224) -.mercatos.ru -# ||megawmr.ru^$third-party (advblock.txt: 1223) -.megawmr.ru -# ||megastock.ru^$third-party (advblock.txt: 1222) -.megastock.ru -# ||megaline.kz/images/$object (advblock.txt: 1220) -.megaline.kz/images/ -# ||megaban.com.ua^ (advblock.txt: 1219) -.megaban.com.ua -# ||mega-cash.net^$third-party (advblock.txt: 1218) -.mega-cash.net -# ||mediatraffic.com.ua^ (advblock.txt: 1217) -.mediatraffic.com.ua -# ||mediarealtor.ru^ (advblock.txt: 1216) -.mediarealtor.ru -# ||mediaget.com^$third-party (advblock.txt: 1215) -.mediaget.com -# ||mediacontext.$third-party (advblock.txt: 1214) -.mediacontext.*. -# ||media.online.ua/all/gft/ (advblock.txt: 1213) -.media.online.ua/all/gft/ -# ||med.finsecret.ru^$third-party (advblock.txt: 1212) -.med.finsecret.ru -# ||mdesign.planet.ee^$third-party (advblock.txt: 1211) -.mdesign.planet.ee -# ||mbn.su^ (advblock.txt: 1210) -.mbn.su -# ||mbn.kr.ua^ (advblock.txt: 1209) -.mbn.kr.ua -# ||mben.ru^$third-party (advblock.txt: 1208) -.mben.ru -# ||mbanner.net^$third-party (advblock.txt: 1207) -.mbanner.net -# ||mazuma.ru^$third-party (advblock.txt: 1206) -.mazuma.ru -# ||mayka.kz^$third-party (advblock.txt: 1205) -.mayka.kz -# ||maxtrust.ru^$third-party (advblock.txt: 1204) -.maxtrust.ru -# ||maxdps.ru^$third-party (advblock.txt: 1203) -.maxdps.ru -# ||marketgid.com^$third-party,~popup,popup (advblock.txt: 1202) -.marketgid.com -# ||market.autoua.net/partnership/uxi/?ref= (advblock.txt: 1201) -.market.autoua.net/partnership/uxi/\?ref= -# ||marathonbet.com/view.php? (advblock.txt: 1200) -.marathonbet.com/view\.php\? -# ||manwm.ru^$third-party (advblock.txt: 1199) -.manwm.ru -# ||managermest.ru^ (advblock.txt: 1198) -.managermest.ru -# ||mamyshev.ru/bn/ (advblock.txt: 1197) -.mamyshev.ru/bn/ -# ||mainlink.ru^$third-party (advblock.txt: 1195) -.mainlink.ru -# ||mail.banklife.ru^$third-party (advblock.txt: 1194) -.mail.banklife.ru -# ||magna.ru^$third-party (advblock.txt: 1192) -.magna.ru -# ||mabila.ua^$third-party (advblock.txt: 1191) -.mabila.ua -# ||m2k.ru/cgi-bin/ (advblock.txt: 1190) -.m2k.ru/cgi-bin/ -# ||luxurycash.net^ (advblock.txt: 1189) -.luxurycash.net -# ||luxcdn.com^ (advblock.txt: 1188) -.luxcdn.com -# ||luxcash.ru^ (advblock.txt: 1187) -.luxcash.ru -# ||lux-bn.com.ua^ (advblock.txt: 1186) -.lux-bn.com.ua -# ||lovn.ru^$third-party (advblock.txt: 1185) -.lovn.ru -# ||loveadvert.ru^ (advblock.txt: 1184) -.loveadvert.ru -# ||lopuer.biz^ (advblock.txt: 1183) -.lopuer.biz -# ||looksmile.ru^$third-party (advblock.txt: 1182) -.looksmile.ru -# ||loadserial.ru^ (advblock.txt: 1181) -.loadserial.ru -# ||loadpays.com^*/images/banners/ (advblock.txt: 1180) -.loadpays.com/.*/images/banners/ -# ||loadpartners.com^ (advblock.txt: 1179) -.loadpartners.com -# ||loadmult.ru^ (advblock.txt: 1178) -.loadmult.ru -# ||loadmovie.ru^ (advblock.txt: 1177) -.loadmovie.ru -# ||liveclix.net^ (advblock.txt: 1176) -.liveclix.net -# ||litres.ru/pages/get_vidget/? (advblock.txt: 1175) -.litres.ru/pages/get_vidget/\? -# ||listsites.ru^$third-party (advblock.txt: 1174) -.listsites.ru -# ||liny-ads.net^ (advblock.txt: 1173) -.liny-ads.net -# ||linkzilla.ru/seo/ (advblock.txt: 1172) -.linkzilla.ru/seo/ -# ||linkwm.ru^$third-party (advblock.txt: 1171) -.linkwm.ru -# ||linkme.org.ua^ (advblock.txt: 1170) -.linkme.org.ua -# ||linkexchange.ru^ (advblock.txt: 1169) -.linkexchange.ru -# ||linkcase.ru^ (advblock.txt: 1168) -.linkcase.ru -# ||lif.yaicom.ru^ (advblock.txt: 1167) -.lif.yaicom.ru -# ||liex.ru^$third-party (advblock.txt: 1166) -.liex.ru -# ||liderus.ru^ (advblock.txt: 1165) -.liderus.ru -# ||libertytraffic.ru^ (advblock.txt: 1164) -.libertytraffic.ru -# ||letssex.$third-party (advblock.txt: 1163) -.letssex.*. -# ||letsseks.$third-party (advblock.txt: 1162) -.letsseks.*. -# ||letitsoft.com^ (advblock.txt: 1161) -.letitsoft.com -# ||letitfile.ru/images/$third-party (advblock.txt: 1160) -.letitfile.ru/images/ -# ||letitbit-porno.com^$third-party (advblock.txt: 1159) -.letitbit-porno.com -# ||leporno.org/img/ (advblock.txt: 1158) -.leporno.org/img/ -# ||lenty.ru^$third-party (advblock.txt: 1157) -.lenty.ru -# ||leadiacloud.com/widget.js? (advblock.txt: 1156) -.leadiacloud.com/widget\.js\? -# ||laser44.ru^$third-party (advblock.txt: 1155) -.laser44.ru -# ||lakidar.net^$third-party,subdocument (advblock.txt: 1154) -.lakidar.net -# ||ladytrack.net^ (advblock.txt: 1153) -.ladytrack.net -# ||ladyshopping.ru^$third-party (advblock.txt: 1152) -.ladyshopping.ru -# ||labirint.ru/design/partner/ (advblock.txt: 1151) -.labirint.ru/design/partner/ -# ||kvasu.net/*/$object (advblock.txt: 1150) -.kvasu.net/.*/ -# ||kv.by/img/$object (advblock.txt: 1149) -.kv.by/img/ -# ||kupitraff.ru^$third-party (advblock.txt: 1148) -.kupitraff.ru -# ||kset.kz/imgb/ (advblock.txt: 1147) -.kset.kz/imgb/ -# ||krutilki.ru^ (advblock.txt: 1146) -.krutilki.ru -# ||krutilka.net^ (advblock.txt: 1145) -.krutilka.net -# ||kritka.kz^$third-party (advblock.txt: 1144) -.kritka.kz -# ||kredit.beregu.ru^$third-party (advblock.txt: 1143) -.kredit.beregu.ru -# ||kpk.me^$third-party (advblock.txt: 1142) -.kpk.me -# ||kpdn.ru^$third-party (advblock.txt: 1141) -.kpdn.ru -# ||komok.com^$third-party (advblock.txt: 1140) -.komok.com -# ||komisite.ru/images/ban*.gif (advblock.txt: 1139) -.komisite.ru/images/ban.*\.gif -# ||kolobok.us/button/ (advblock.txt: 1138) -.kolobok.us/button/ -# ||knstats.com^$third-party (advblock.txt: 1137) -.knstats.com -# ||kleo.ru/cgi-bin/ (advblock.txt: 1136) -.kleo.ru/cgi-bin/ -# ||kioskas.lt^*/pop.php? (advblock.txt: 1135) -.kioskas.lt/.*/pop\.php\? -# ||kinozov.ru^$third-party,script (advblock.txt: 1134) -.kinozov.ru -# ||kinoman.$third-party (advblock.txt: 1133) -.kinoman.*. -# ||kinolib.com^$third-party (advblock.txt: 1132) -.kinolib.com -# ||kinoclub.org^$third-party (advblock.txt: 1130) -.kinoclub.org -# ||kingpeon.com^$third-party (advblock.txt: 1129) -.kingpeon.com -# ||ket.ru^$third-party (advblock.txt: 1128) -.ket.ru -# ||kazban.su^ (advblock.txt: 1127) -.kazban.su -# ||kavkazweb.net/tc.cgi? (advblock.txt: 1126) -.kavkazweb.net/tc\.cgi\? -# ||kaspersky.ru/images/miscellaneouses/468- (advblock.txt: 1125) -.kaspersky.ru/images/miscellaneouses/468- -# ||kartinka.com.ua/partner/load? (advblock.txt: 1124) -.kartinka.com.ua/partner/load\? -# ||karambas.ru/flash (advblock.txt: 1123) -.karambas.ru/flash -# ||karabalikelektronik.com/images/reklam (advblock.txt: 1122) -.karabalikelektronik.com/images/reklam -# ||kakgu.ru^$third-party (advblock.txt: 1121) -.kakgu.ru -# ||kadamata.com^ (advblock.txt: 1120) -.kadamata.com -# ||kadabada.com^ (advblock.txt: 1119) -.kadabada.com -# ||kachestvoo.ru^$third-party (advblock.txt: 1118) -.kachestvoo.ru -# ||ka7co.com^ (advblock.txt: 1117) -.ka7co.com -# ||jsn.st02.net^ (advblock.txt: 1116) -.jsn.st02.net -# ||js.einfo.by/? (advblock.txt: 1115) -.js.einfo.by/\? -# ||jollywallet.com^$third-party (advblock.txt: 1114) -.jollywallet.com -# ||job.ws/_bann/ (advblock.txt: 1113) -.job.ws/_bann/ -# ||jet3.ayola.net/cn.php? (advblock.txt: 1112) -.jet3.ayola.net/cn\.php\? -# ||jenugolok.com^$third-party,object (advblock.txt: 1111) -.jenugolok.com -# ||itizer.ru^$third-party (advblock.txt: 1108) -.itizer.ru -# ||itcgin.net^$third-party (advblock.txt: 1107) -.itcgin.net -# ||ispmega.ru/billing/_rootimages/banners/ (advblock.txt: 1106) -.ispmega.ru/billing/_rootimages/banners/ -# ||iso100.ru^$third-party (advblock.txt: 1105) -.iso100.ru -# ||ipz.ru/cgi-bin/ (advblock.txt: 1104) -.ipz.ru/cgi-bin/ -# ||ipru.ru^$third-party (advblock.txt: 1103) -.ipru.ru -# ||iphones.ru^$third-party (advblock.txt: 1102) -.iphones.ru -# ||iphone10gs.com^$third-party (advblock.txt: 1101) -.iphone10gs.com -# ||ipgold.ru^$third-party (advblock.txt: 1100) -.ipgold.ru -# ||invitemaster.ru/widget.js (advblock.txt: 1099) -.invitemaster.ru/widget\.js -# ||invictory.org/banners/ (advblock.txt: 1098) -.invictory.org/banners/ -# ||invest-pool.ru^$third-party (advblock.txt: 1097) -.invest-pool.ru -# ||intimznaki.tomsk.ru^$third-party (advblock.txt: 1096) -.intimznaki.tomsk.ru -# ||intim-magazin.com.ua/bn/ (advblock.txt: 1095) -.intim-magazin.com.ua/bn/ -# ||internetportal.ru/*.gif (advblock.txt: 1094) -.internetportal.ru/.*\.gif -# ||internetdengi.net^$third-party (advblock.txt: 1093) -.internetdengi.net -# ||internalinspector.com^ (advblock.txt: 1092) -.internalinspector.com -# ||instantcash.ru^$third-party (advblock.txt: 1091) -.instantcash.ru -# ||inst.letitbit.net^ (advblock.txt: 1090) -.inst.letitbit.net -# ||insalea.ru/bannerfans_ (advblock.txt: 1089) -.insalea.ru/bannerfans_ -# ||inoe.name^$third-party (advblock.txt: 1088) -.inoe.name -# ||inmoment.ru^$third-party (advblock.txt: 1087) -.inmoment.ru -# ||infosec.ru/common/data/pub/images/articles/ (advblock.txt: 1086) -.infosec.ru/common/data/pub/images/articles/ -# ||inforesell.ru^$third-party (advblock.txt: 1085) -.inforesell.ru -# ||infocar.ru/media/$third-party,script (advblock.txt: 1084) -.infocar.ru/media/ -# ||info-dvd.ru/*/rotator/ (advblock.txt: 1083) -.info-dvd.ru/.*/rotator/ -# ||inferno.name/banner. (advblock.txt: 1082) -.inferno.name/banner\. -# ||inboobs.net^$third-party (advblock.txt: 1081) -.inboobs.net -# ||imobilco.ru^$third-party (advblock.txt: 1080) -.imobilco.ru -# ||img.ruclicks.com/ruclicks (advblock.txt: 1079) -.img.ruclicks.com/ruclicks -# ||img.carnage.ru/i/main/$third-party,object (advblock.txt: 1078) -.img.carnage.ru/i/main/ -# ||imarker.ru^$third-party (advblock.txt: 1077) -.imarker.ru -# ||ilfumomoney.ru^$third-party (advblock.txt: 1076) -.ilfumomoney.ru -# ||igrushek.net/ad/ (advblock.txt: 1075) -.igrushek.net/ad/ -# ||igromagaz.ru/partner/ (advblock.txt: 1074) -.igromagaz.ru/partner/ -# ||id5.ru^$third-party (advblock.txt: 1073) -.id5.ru -# ||ice-media.ru^ (advblock.txt: 1072) -.ice-media.ru -# ||i.sdska.ru^*/sdb.js? (advblock.txt: 1071) -.i.sdska.ru/.*/sdb\.js\? -# ||i.j2j.ru^ (advblock.txt: 1070) -.i.j2j.ru -# ||hypo.ufanet.ru^$image (advblock.txt: 1069) -.hypo.ufanet.ru -# ||hypernews.ru^ (advblock.txt: 1068) -.hypernews.ru -# ||hotinga.ru^ (advblock.txt: 1067) -.hotinga.ru -# ||hotels24.ua^$third-party (advblock.txt: 1066) -.hotels24.ua -# ||hotels.ru/content/images/poster/ (advblock.txt: 1065) -.hotels.ru/content/images/poster/ -# ||hostweek.net/manimg/userdata/ (advblock.txt: 1064) -.hostweek.net/manimg/userdata/ -# ||host4media.com^$third-party (advblock.txt: 1063) -.host4media.com -# ||host.ru/images/txt_iframe.php (advblock.txt: 1062) -.host.ru/images/txt_iframe\.php -# ||homrus.net^ (advblock.txt: 1061) -.homrus.net -# ||holder.com.ua^ (advblock.txt: 1060) -.holder.com.ua -# ||hmn.ru/mhmb_bs/viewb.js? (advblock.txt: 1059) -.hmn.ru/mhmb_bs/viewb\.js\? -# ||hitlist.ru^$third-party (advblock.txt: 1058) -.hitlist.ru -# ||hit-sales.ru^ (advblock.txt: 1056) -.hit-sales.ru -# ||hideme.ru/images/static-$third-party (advblock.txt: 1055) -.hideme.ru/images/static- -# ||heroeswm.ru/some_junk/ (advblock.txt: 1054) -.heroeswm.ru/some_junk/ -# ||hd-tube.ru^$third-party (advblock.txt: 1053) -.hd-tube.ru -# ||hata.nikolaev.ua^$third-party (advblock.txt: 1052) -.hata.nikolaev.ua -# ||gzonline.ru//upload/iblock/ (advblock.txt: 1051) -# ||grt02.com^ (advblock.txt: 1050) -.grt02.com -# ||grt01.com^ (advblock.txt: 1049) -.grt01.com -# ||grifiins.ru^ (advblock.txt: 1048) -.grifiins.ru -# ||gravdee.com^ (advblock.txt: 1047) -.gravdee.com -# ||grattis.ru/promo/ (advblock.txt: 1046) -.grattis.ru/promo/ -# ||govazd.am^ (advblock.txt: 1045) -.govazd.am -# ||gorodnews.ru/bb/ (advblock.txt: 1044) -.gorodnews.ru/bb/ -# ||goon.ru^$third-party (advblock.txt: 1043) -.goon.ru -# ||goodkukhni2.ru^$third-party (advblock.txt: 1042) -.goodkukhni2.ru -# ||goodadvert.com.ua^ (advblock.txt: 1041) -.goodadvert.com.ua -# ||good-teasers.ru^ (advblock.txt: 1040) -.good-teasers.ru -# ||goldline.pro^$third-party (advblock.txt: 1039) -.goldline.pro -# ||goldfishkapartners.com^ (advblock.txt: 1038) -.goldfishkapartners.com -# ||golden-fishka.com^$third-party (advblock.txt: 1037) -.golden-fishka.com -# ||go.bb.ru/images/ (advblock.txt: 1036) -.go.bb.ru/images/ -# ||gnezdo.ru^ (advblock.txt: 1035) -.gnezdo.ru -# ||glows.ru^ (advblock.txt: 1034) -.glows.ru -# ||globusgps.ru^$third-party (advblock.txt: 1033) -.globusgps.ru -# ||globus-inter.com/images/banners/ (advblock.txt: 1032) -.globus-inter.com/images/banners/ -# ||glamursgirl.ru^$third-party (advblock.txt: 1031) -.glamursgirl.ru -# ||giveawayoftheday.com/ticker/ (advblock.txt: 1030) -.giveawayoftheday.com/ticker/ -# ||girlstalks.ru^$third-party (advblock.txt: 1029) -.girlstalks.ru -# ||girl-rus.com^$third-party (advblock.txt: 1028) -.girl-rus.com -# ||gigamega.ru^ (advblock.txt: 1027) -.gigamega.ru -# ||ggsaffiliates.com^ (advblock.txt: 1026) -.ggsaffiliates.com -# ||gettraf.org^ (advblock.txt: 1025) -.gettraf.org -# ||getb.7ya.ru^ (advblock.txt: 1024) -.getb.7ya.ru -# ||get-click.net^ (advblock.txt: 1023) -.get-click.net -# ||gde-luchshe.ru/widget/ (advblock.txt: 1022) -.gde-luchshe.ru/widget/ -# ||gbs.gamingmedia.ru^ (advblock.txt: 1021) -.gbs.gamingmedia.ru -# ||gamingpartners.org^ (advblock.txt: 1020) -.gamingpartners.org -# ||gamenet.ru^*/?rnd= (advblock.txt: 1019) -.gamenet.ru/.*/\?rnd= -# ||gamedl.ru^ (advblock.txt: 1018) -.gamedl.ru -# ||gamebook.pw^$third-party,subdocument (advblock.txt: 1017) -.gamebook.pw -# ||gamblingbuilder.com^$third-party (advblock.txt: 1016) -.gamblingbuilder.com -# ||galaxymeet.ru^$third-party (advblock.txt: 1015) -.galaxymeet.ru -# ||g2a.com/widget_ (advblock.txt: 1014) -.g2a.com/widget_ -# ||fxcast.com^$third-party (advblock.txt: 1013) -.fxcast.com -# ||fxbn.fxcd.ru^ (advblock.txt: 1012) -.fxbn.fxcd.ru -# ||funnation.ru^$third-party (advblock.txt: 1011) -.funnation.ru -# ||funkit.ru/i/partner_banners/ (advblock.txt: 1010) -.funkit.ru/i/partner_banners/ -# ||fsimg.ru/elephant/ (advblock.txt: 1009) -.fsimg.ru/elephant/ -# ||frogadvert.ru^ (advblock.txt: 1008) -.frogadvert.ru -# ||freshmac.ru^$third-party (advblock.txt: 1007) -.freshmac.ru -# ||freewm.ru^ (advblock.txt: 1006) -.freewm.ru -# ||freehd.com.ua^$third-party (advblock.txt: 1005) -.freehd.com.ua -# ||freeavalanche.ru^ (advblock.txt: 1004) -.freeavalanche.ru -# ||fotostrana.ru/promo/ (advblock.txt: 1003) -.fotostrana.ru/promo/ -# ||fotkidepo.ru^$third-party,script (advblock.txt: 1002) -.fotkidepo.ru -# ||forsage.biz^$third-party (advblock.txt: 1001) -.forsage.biz -# ||forex4you.org/flash/partners/ (advblock.txt: 1000) -.forex4you.org/flash/partners/ -# ||forex-i-love-you.ru/files/ (advblock.txt: 999) -.forex-i-love-you.ru/files/ -# ||fooder.ru^$third-party (advblock.txt: 998) -.fooder.ru -# ||fo.ru^*/affilate/ (advblock.txt: 997) -.fo.ru/.*/affilate/ -# ||fluence-club.ru/forum/images/banners/ (advblock.txt: 996) -.fluence-club.ru/forum/images/banners/ -# ||flirchi.ru^$third-party,~popup,popup (advblock.txt: 995) -.flirchi.ru -# ||fleshlight-russia.com/fbn/ (advblock.txt: 994) -.fleshlight-russia.com/fbn/ -# ||flapoint.ru^ (advblock.txt: 993) -.flapoint.ru -# ||fire-casino.com^$third-party (advblock.txt: 992) -.fire-casino.com -# ||finmonitor.com.ua/freenet/go.php?sid= (advblock.txt: 991) -.finmonitor.com.ua/freenet/go\.php\?sid= -# ||finbs.ru^ (advblock.txt: 990) -.finbs.ru -# ||filmcool.ru^$third-party (advblock.txt: 989) -.filmcool.ru -# ||filepost.ru^$third-party (advblock.txt: 988) -.filepost.ru -# ||file-online.ru^$third-party (advblock.txt: 987) -.file-online.ru -# ||fictionbook.ru/static/imgb/ (advblock.txt: 986) -.fictionbook.ru/static/imgb/ -# ||fialet.com^ (advblock.txt: 985) -.fialet.com -# ||festival-leonardo.ru/images/banners/ (advblock.txt: 984) -.festival-leonardo.ru/images/banners/ -# ||fermasosedi.biz/reflink/ (advblock.txt: 983) -.fermasosedi.biz/reflink/ -# ||feed.teasermaster.ru^ (advblock.txt: 982) -.feed.teasermaster.ru -# ||fbs.for-ua.org.ua^ (advblock.txt: 981) -.fbs.for-ua.org.ua -# ||fatal.ru/adfatal.js (advblock.txt: 980) -.fatal.ru/adfatal\.js -# ||fast-anime.ru^$third-party (advblock.txt: 979) -.fast-anime.ru -# ||farle.ru/?bn= (advblock.txt: 978) -.farle.ru/\?bn= -# ||fantasy.d2.ru/showban (advblock.txt: 977) -.fantasy.d2.ru/showban -# ||fanshop.ru/images/__nners/ (advblock.txt: 976) -.fanshop.ru/images/__nners/ -# ||fanat.ru/versus/ (advblock.txt: 975) -.fanat.ru/versus/ -# ||fanat.kz^$third-party (advblock.txt: 974) -.fanat.kz -# ||fairlink.ru^ (advblock.txt: 973) -.fairlink.ru -# ||factor-vesa.net/enter/?url=dont_go_away/ (advblock.txt: 972) -.factor-vesa.net/enter/\?url=dont_go_away/ -# ||extool.biz/banners/ (advblock.txt: 971) -.extool.biz/banners/ -# ||exo.kiev.ua/?zone= (advblock.txt: 970) -.exo.kiev.ua/\?zone= -# ||exaccess.ru^$third-party (advblock.txt: 969) -.exaccess.ru -# ||ex-load.com/promo/ (advblock.txt: 968) -.ex-load.com/promo/ -# ||evviva.com.ua/images/b/ (advblock.txt: 967) -.evviva.com.ua/images/b/ -# ||evilfighter.ru^$third-party (advblock.txt: 966) -.evilfighter.ru -# ||eurosmi.ru/ad/ (advblock.txt: 965) -.eurosmi.ru/ad/ -# ||eskhosting.ru/img/b/ (advblock.txt: 964) -.eskhosting.ru/img/b/ -# ||eserver.ru/img/b/ (advblock.txt: 963) -.eserver.ru/img/b/ -# ||esc-team.com^$third-party (advblock.txt: 962) -.esc-team.com -# ||erotraf.com^ (advblock.txt: 961) -.erotraf.com -# ||eradio.net.ua/ban/ (advblock.txt: 960) -.eradio.net.ua/ban/ -# ||epartner.ru^ (advblock.txt: 959) -.epartner.ru -# ||eogli.org^$third-party (advblock.txt: 958) -.eogli.org -# ||eogli.com^$third-party (advblock.txt: 957) -.eogli.com -# ||eogli.biz^$third-party (advblock.txt: 956) -.eogli.biz -# ||entercash.ru^ (advblock.txt: 955) -.entercash.ru -# ||emnodar.ru^ (advblock.txt: 954) -.emnodar.ru -# ||elfmoney.ru^$third-party (advblock.txt: 953) -.elfmoney.ru -# ||elephant.fotostrana.ru^ (advblock.txt: 952) -.elephant.fotostrana.ru -# ||effad.ru^ (advblock.txt: 951) -.effad.ru -# ||ecosigara.com.ua/partners/ (advblock.txt: 950) -.ecosigara.com.ua/partners/ -# ||e-place.ru^ (advblock.txt: 949) -.e-place.ru -# ||e-mint.ru^$third-party (advblock.txt: 948) -.e-mint.ru -# ||e-links.ru^ (advblock.txt: 947) -.e-links.ru -# ||dverizamki.org/bshow/ (advblock.txt: 946) -.dverizamki.org/bshow/ -# ||duuw.nm.ru^ (advblock.txt: 945) -.duuw.nm.ru -# ||drweb.com/pix/$object (advblock.txt: 944) -.drweb.com/pix/ -# ||drakonas.eu^$third-party (advblock.txt: 943) -.drakonas.eu -# ||dragon.lt/baneris (advblock.txt: 942) -.dragon.lt/baneris -# ||dozory.goodoo.ru^ (advblock.txt: 941) -.dozory.goodoo.ru -# ||dozatv.net/foto/ (advblock.txt: 940) -.dozatv.net/foto/ -# ||doublecapital.org/object/ (advblock.txt: 939) -.doublecapital.org/object/ -# ||dotua.org^*/branding/ (advblock.txt: 938) -.dotua.org/.*/branding/ -# ||dostavka.ru^$third-party (advblock.txt: 937) -.dostavka.ru -# ||dns-shop.ru/export/ (advblock.txt: 936) -.dns-shop.ru/export/ -# ||dnr.kz/test/$third-party,object (advblock.txt: 935) -.dnr.kz/test/ -# ||dimpy.narod.ru^ (advblock.txt: 934) -.dimpy.narod.ru -# ||diamondelectric.ru/partner_block.php? (advblock.txt: 933) -.diamondelectric.ru/partner_block\.php\? -# ||dhgate.com^$third-party (advblock.txt: 932) -.dhgate.com -# ||dewis.h1.ru^ (advblock.txt: 931) -.dewis.h1.ru -# ||depositfiles.com/img/banners/ (advblock.txt: 930) -.depositfiles.com/img/banners/ -# ||denezhnyie-rucheyki.ru/partner_programs/banners/ (advblock.txt: 929) -.denezhnyie-rucheyki.ru/partner_programs/banners/ -# ||demoreklama.net.ua^$third-party (advblock.txt: 928) -.demoreklama.net.ua -# ||dematom.com^$third-party,~image (advblock.txt: 927) -.dematom.com -# ||ddkdr.ru^$third-party (advblock.txt: 926) -.ddkdr.ru -# ||dating-exchange.com^ (advblock.txt: 925) -.dating-exchange.com -# ||cykahax.net^ (advblock.txt: 924) -.cykahax.net -# ||cyberstyle.ru^$third-party (advblock.txt: 923) -.cyberstyle.ru -# ||culpainnata.ru^ (advblock.txt: 922) -.culpainnata.ru -# ||cszz.ru^ (advblock.txt: 921) -.cszz.ru -# ||csht.ru^ (advblock.txt: 920) -.csht.ru -# ||cshi.ru^ (advblock.txt: 919) -.cshi.ru -# ||cry.ru/sexclub/ (advblock.txt: 918) -.cry.ru/sexclub/ -# ||crutop.nu^$third-party (advblock.txt: 917) -.crutop.nu -# ||creara-media.ru^$third-party (advblock.txt: 916) -.creara-media.ru -# ||cqc.ru^ (advblock.txt: 915) -.cqc.ru -# ||cpmsolution.ru^ (advblock.txt: 914) -.cpmsolution.ru -# ||costaction.com/refers/ (advblock.txt: 913) -.costaction.com/refers/ -# ||cosmorelax.ru/tmp/ (advblock.txt: 912) -.cosmorelax.ru/tmp/ -# ||corporative.ru^$third-party (advblock.txt: 911) -.corporative.ru -# ||context.hotline.ua^ (advblock.txt: 910) -.context.hotline.ua -# ||context-platform.com^ (advblock.txt: 909) -.context-platform.com -# ||content.relax.ru^ (advblock.txt: 908) -.content.relax.ru -# ||company.1ps.ru^ (advblock.txt: 907) -.company.1ps.ru -# ||comp-ex.ru^ (advblock.txt: 906) -.comp-ex.ru -# ||code.barrior.ru^ (advblock.txt: 905) -.code.barrior.ru -# ||co.cc/img/affiliates/ (advblock.txt: 904) -.co.cc/img/affiliates/ -# ||clx.ru^$third-party (advblock.txt: 903) -.clx.ru -# ||clickvip.ru^ (advblock.txt: 902) -.clickvip.ru -# ||clickozavr.com^ (advblock.txt: 901) -.clickozavr.com -# ||clickhere.ru^ (advblock.txt: 900) -.clickhere.ru -# ||clickconvert.ru^$third-party (advblock.txt: 899) -.clickconvert.ru -# ||clickcoin.com^ (advblock.txt: 898) -.clickcoin.com -# ||clickbux.ru^$third-party (advblock.txt: 897) -.clickbux.ru -# ||clickburner.com^ (advblock.txt: 896) -.clickburner.com -# ||click4wm.ru^ (advblock.txt: 894) -.click4wm.ru -# ||click.readme.ru^ (advblock.txt: 893) -.click.readme.ru -# ||city-advertising.ru^$third-party (advblock.txt: 892) -.city-advertising.ru -# ||citilink.ru^$third-party (advblock.txt: 891) -.citilink.ru -# ||cinemateka3d.ru^$third-party (advblock.txt: 890) -.cinemateka3d.ru -# ||chitika.org^ (advblock.txt: 889) -.chitika.org -# ||cherrystatic.net^*/banners/ (advblock.txt: 888) -.cherrystatic.net/.*/banners/ -# ||chbn.ru^ (advblock.txt: 887) -.chbn.ru -# ||cenovik.net^ (advblock.txt: 886) -.cenovik.net -# ||cbn.ru^ (advblock.txt: 885) -.cbn.ru -# ||casino-piramida.com/partner/banners/ (advblock.txt: 884) -.casino-piramida.com/partner/banners/ -# ||casino-kaza.com^$third-party (advblock.txt: 883) -.casino-kaza.com -# ||cashimtrap.com^ (advblock.txt: 882) -.cashimtrap.com -# ||casas-mario.ru^$third-party (advblock.txt: 881) -.casas-mario.ru -# ||carambis.ru/images/promo_b/ (advblock.txt: 880) -.carambis.ru/images/promo_b/ -# ||captainsofcrush.ru^$third-party (advblock.txt: 879) -.captainsofcrush.ru -# ||c.tbex.ru^$third-party (advblock.txt: 878) -.c.tbex.ru -# ||bx.metka.ru^ (advblock.txt: 877) -.bx.metka.ru -# ||bvf.ru/upchk/ (advblock.txt: 876) -.bvf.ru/upchk/ -# ||buy-link.ru^ (advblock.txt: 875) -.buy-link.ru -# ||buxify-v2.com^$third-party (advblock.txt: 874) -.buxify-v2.com -# ||bs.orsk.ru^ (advblock.txt: 872) -.bs.orsk.ru -# ||bs.mybb.ru^ (advblock.txt: 871) -.bs.mybb.ru -# ||brothers-company.ru^$third-party (advblock.txt: 870) -.brothers-company.ru -# ||bravohost.ru/volgaban. (advblock.txt: 869) -.bravohost.ru/volgaban\. -# ||bqhost.net/_rootimages/banners/ (advblock.txt: 868) -.bqhost.net/_rootimages/banners/ -# ||boobzi.com^$third-party (advblock.txt: 867) -.boobzi.com -# ||bongo-shop.com^$third-party (advblock.txt: 866) -.bongo-shop.com -# ||bongacams.com/promo. (advblock.txt: 865) -.bongacams.com/promo\. -# ||bomb-club.com/aff/ (advblock.txt: 864) -.bomb-club.com/aff/ -# ||bnfest.com^$third-party (advblock.txt: 863) -.bnfest.com -# ||bn.orthodoxy.ru^ (advblock.txt: 862) -.bn.orthodoxy.ru -# ||bn.ohah.ru^ (advblock.txt: 861) -.bn.ohah.ru -# ||blowclick.ru^ (advblock.txt: 860) -.blowclick.ru -# ||bloha.net^ (advblock.txt: 859) -.bloha.net -# ||blogun.ru^$third-party (advblock.txt: 858) -.blogun.ru -# ||bizua.com^$third-party (advblock.txt: 857) -.bizua.com -# ||bit.ly^$third-party,subdocument (advblock.txt: 856) -.bit.ly -# ||bistr4.ru^ (advblock.txt: 855) -.bistr4.ru -# ||bigbuzzy.ru/m/proposal/banner/ (advblock.txt: 854) -.bigbuzzy.ru/m/proposal/banner/ -# ||bigbord.net^$third-party (advblock.txt: 853) -.bigbord.net -# ||bezlimitvideo.com^ (advblock.txt: 852) -.bezlimitvideo.com -# ||bestexotic.com^ (advblock.txt: 851) -.bestexotic.com -# ||bestclick.ru^ (advblock.txt: 850) -.bestclick.ru -# ||bepartner.ru^ (advblock.txt: 849) -.bepartner.ru -# ||be-mine.ru^$third-party (advblock.txt: 848) -.be-mine.ru -# ||bcontent.life.ru^ (advblock.txt: 847) -.bcontent.life.ru -# ||bcggo.ru^ (advblock.txt: 846) -.bcggo.ru -# ||bbn.img.com.ua^ (advblock.txt: 845) -.bbn.img.com.ua -# ||bbn.by^ (advblock.txt: 844) -.bbn.by -# ||bb.stream24.ru^ (advblock.txt: 843) -.bb.stream24.ru -# ||battlespace.ru/ad/ (advblock.txt: 842) -.battlespace.ru/ad/ -# ||basketfan.my1.ru^$third-party (advblock.txt: 841) -.basketfan.my1.ru -# ||bashnya.ru^ (advblock.txt: 840) -.bashnya.ru -# ||base.kiwi.kz^ (advblock.txt: 839) -.base.kiwi.kz -# ||bantex.ru^ (advblock.txt: 838) -.bantex.ru -# ||bans.name^ (advblock.txt: 837) -.bans.name -# ||bannerhost.ru^ (advblock.txt: 836) -.bannerhost.ru -# ||banner.ua^ (advblock.txt: 835) -.banner.ua -# ||banner-viewers.com^ (advblock.txt: 834) -.banner-viewers.com -# ||banner-storage.fo.ru^ (advblock.txt: 833) -.banner-storage.fo.ru -# ||banage.ru^$third-party (advblock.txt: 832) -.banage.ru -# ||bambun.ru/images/$object (advblock.txt: 831) -.bambun.ru/images/ -# ||baks-mail.ru^$third-party (advblock.txt: 830) -.baks-mail.ru -# ||babyzone.ua^*/bmn/ (advblock.txt: 829) -.babyzone.ua/.*/bmn/ -# ||babyclick.ru^$third-party (advblock.txt: 828) -.babyclick.ru -# ||b81x63nc.ws.md^ (advblock.txt: 827) -.b81x63nc.ws.md -# ||b2bvideo.ru^ (advblock.txt: 826) -.b2bvideo.ru -# ||b2bcontext.ru^ (advblock.txt: 825) -.b2bcontext.ru -# ||b.nwave.de^ (advblock.txt: 824) -.b.nwave.de -# ||b.madplace99.com^ (advblock.txt: 823) -.b.madplace99.com -# ||b.itvnet.lv^ (advblock.txt: 822) -.b.itvnet.lv -# ||b.candy.vl.ru^ (advblock.txt: 821) -.b.candy.vl.ru -# ||b.adbox.lv^ (advblock.txt: 820) -.b.adbox.lv -# ||b.acpr.su^ (advblock.txt: 819) -.b.acpr.su -# ||b-one.com.ua^ (advblock.txt: 818) -.b-one.com.ua -# ||azbukasexa.ru^$third-party (advblock.txt: 817) -.azbukasexa.ru -# ||azartcash.com^$third-party (advblock.txt: 816) -.azartcash.com -# ||azartaffiliates.com^ (advblock.txt: 815) -.azartaffiliates.com -# ||avifilm.ru^ (advblock.txt: 814) -.avifilm.ru -# ||aviasales.ru/promo/ (advblock.txt: 813) -.aviasales.ru/promo/ -# ||avazone.ru^$third-party (advblock.txt: 812) -.avazone.ru -# ||ava.com.ua^$third-party (advblock.txt: 811) -.ava.com.ua -# ||autoua.com^$third-party (advblock.txt: 810) -.autoua.com -# ||autotizer.ru^ (advblock.txt: 809) -.autotizer.ru -# ||autoreg.ru^$third-party (advblock.txt: 808) -.autoreg.ru -# ||autocentre.ua^$third-party,subdocument (advblock.txt: 807) -.autocentre.ua -# ||atlassolutions.com^ (advblock.txt: 806) -.atlassolutions.com -# ||astroinf.ru^$third-party (advblock.txt: 805) -.astroinf.ru -# ||assessoria.hotbox.ru^ (advblock.txt: 804) -.assessoria.hotbox.ru -# ||askmarket.net^$third-party (advblock.txt: 803) -.askmarket.net -# ||asg.vidigital.ru^ (advblock.txt: 802) -.asg.vidigital.ru -# ||artbanner.com.ua^ (advblock.txt: 801) -.artbanner.com.ua -# ||arsfu.ru^$third-party (advblock.txt: 800) -.arsfu.ru -# ||apress-barmen.ru/banner_shape_images/ (advblock.txt: 799) -.apress-barmen.ru/banner_shape_images/ -# ||ap-jam.com^$third-party (advblock.txt: 798) -.ap-jam.com -# ||anyreads.com^$third-party (advblock.txt: 797) -.anyreads.com -# ||anvaga.ru/partners_block/ (advblock.txt: 795) -.anvaga.ru/partners_block/ -# ||antmoney.com^$third-party (advblock.txt: 794) -.antmoney.com -# ||antihacker.info^*/partner/ (advblock.txt: 793) -.antihacker.info/.*/partner/ -# ||anons.greenmama.ru^$third-party (advblock.txt: 792) -.anons.greenmama.ru -# ||anews.cc^$third-party (advblock.txt: 791) -.anews.cc -# ||amh.ru^ (advblock.txt: 790) -.amh.ru -# ||alphacash.biz^ (advblock.txt: 788) -.alphacash.biz -# ||alpari.ru/static/$third-party (advblock.txt: 787) -.alpari.ru/static/ -# ||allwomens.ru^$third-party (advblock.txt: 786) -.allwomens.ru -# ||allsportstat.ru/1xbet/ (advblock.txt: 785) -.allsportstat.ru/1xbet/ -# ||allsiemens.com^$third-party (advblock.txt: 784) -.allsiemens.com -# ||allnokia.ru^$third-party (advblock.txt: 783) -.allnokia.ru -# ||allnewspoint.com^$third-party (advblock.txt: 782) -.allnewspoint.com -# ||alfainternet.su^ (advblock.txt: 781) -.alfainternet.su -# ||alawar.ru/onlinegames/*&link= (advblock.txt: 780) -.alawar.ru/onlinegames/.*&link= -# ||akavita.com^$third-party (advblock.txt: 779) -.akavita.com -# ||akabo.ru^ (advblock.txt: 778) -.akabo.ru -# ||agrotv.ru^$third-party (advblock.txt: 777) -.agrotv.ru -# ||agitmedia.com^ (advblock.txt: 776) -.agitmedia.com -# ||agentbilet.com/sites/$third-party (advblock.txt: 775) -.agentbilet.com/sites/ -# ||agava.ru/b/ (advblock.txt: 774) -.agava.ru/b/ -# ||affiliate.vsemayki.ru^$third-party (advblock.txt: 773) -.affiliate.vsemayki.ru -# ||affilates.doktordick.com^ (advblock.txt: 772) -.affilates.doktordick.com -# ||aff.sportsevents365.com^*/banners/ (advblock.txt: 771) -.aff.sportsevents365.com/.*/banners/ -# ||aedrvt.majordomo.ru^ (advblock.txt: 770) -.aedrvt.majordomo.ru -# ||adward.ru^ (advblock.txt: 769) -.adward.ru -# ||advvideo.com^ (advblock.txt: 768) -.advvideo.com -# ||advertpro.ru^$third-party (advblock.txt: 767) -.advertpro.ru -# ||advertpro.com^$third-party (advblock.txt: 766) -.advertpro.com -# ||advertpay.ru^ (advblock.txt: 765) -.advertpay.ru -# ||advertbox.ru^ (advblock.txt: 764) -.advertbox.ru -# ||advaction.ru^ (advblock.txt: 763) -.advaction.ru -# ||adunit.chango.ca^ (advblock.txt: 762) -.adunit.chango.ca -# ||adtime.ru^ (advblock.txt: 761) -.adtime.ru -# ||adtidy.net^ (advblock.txt: 760) -.adtidy.net -# ||adsplius.lt^ (advblock.txt: 759) -.adsplius.lt -# ||adsellers.net^ (advblock.txt: 758) -.adsellers.net -# ||adsclick.ru^ (advblock.txt: 757) -.adsclick.ru -# ||adru.net^ (advblock.txt: 756) -.adru.net -# ||adpro.com.ua^ (advblock.txt: 755) -.adpro.com.ua -# ||adpix.ru^ (advblock.txt: 754) -.adpix.ru -# ||admulti.ru^ (advblock.txt: 753) -.admulti.ru -# ||admimsy.com^$third-party (advblock.txt: 752) -.admimsy.com -# ||admaster.net^ (advblock.txt: 751) -.admaster.net -# ||adland.ru^ (advblock.txt: 750) -.adland.ru -# ||adizer.ru^ (advblock.txt: 749) -.adizer.ru -# ||adhub.ru^ (advblock.txt: 748) -.adhub.ru -# ||adhands.ru^ (advblock.txt: 747) -.adhands.ru -# ||adgo-online.de^ (advblock.txt: 746) -.adgo-online.de -# ||addweb.ru^ (advblock.txt: 745) -.addweb.ru -# ||addnow.ru^$third-party (advblock.txt: 744) -.addnow.ru -# ||addmefast.com/images/banners/ (advblock.txt: 743) -.addmefast.com/images/banners/ -# ||addisp.com^ (advblock.txt: 742) -.addisp.com -# ||addflow.ru^ (advblock.txt: 741) -.addflow.ru -# ||adcomplete.ru^ (advblock.txt: 740) -.adcomplete.ru -# ||adcast.ru^ (advblock.txt: 739) -.adcast.ru -# ||adbomb.ru^ (advblock.txt: 738) -.adbomb.ru -# ||adbn.ru^ (advblock.txt: 737) -.adbn.ru -# ||adbee.com.ua^ (advblock.txt: 736) -.adbee.com.ua -# ||ad1.sibnet.ru^ (advblock.txt: 735) -.ad1.sibnet.ru -# ||ad.sweb.ru^ (advblock.txt: 734) -.ad.sweb.ru -# ||ad.leongaming.com^ (advblock.txt: 733) -.ad.leongaming.com -# ||ad.ir.ru/bb.cgi? (advblock.txt: 732) -.ad.ir.ru/bb\.cgi\? -# ||ad.iplayer.org^ (advblock.txt: 731) -.ad.iplayer.org -# ||ad.fantiki.net^ (advblock.txt: 730) -.ad.fantiki.net -# ||ad.aorta-net.com^ (advblock.txt: 729) -.ad.aorta-net.com -# ||activiks.ru^$third-party (advblock.txt: 728) -.activiks.ru -# ||action.raadword.com^ (advblock.txt: 727) -.action.raadword.com -# ||abs.ispsystem.com^ (advblock.txt: 726) -.abs.ispsystem.com -# ||abelus.ru/index/ms_reklam_ (advblock.txt: 725) -.abelus.ru/index/ms_reklam_ -# ||abcfilm.org^$third-party (advblock.txt: 724) -.abcfilm.org -# ||a.votpusk.ru^$third-party,image,object (advblock.txt: 723) -.a.votpusk.ru -# ||a.mayakinfo.ru^$third-party,image,object (advblock.txt: 722) -.a.mayakinfo.ru -# ||a.fobos.tv^ (advblock.txt: 721) -.a.fobos.tv -# ||a-love.nninfo.ru^ (advblock.txt: 720) -.a-love.nninfo.ru -# ||9fine.ru^$third-party (advblock.txt: 719) -.9fine.ru -# ||8coins.ru^ (advblock.txt: 718) -.8coins.ru -# ||7rtv.com^ (advblock.txt: 717) -.7rtv.com -# ||7gomedia.ru^ (advblock.txt: 716) -.7gomedia.ru -# ||468.vologdainfo.ru^ (advblock.txt: 715) -.468.vologdainfo.ru -# ||4-moto.ru/ad/ (advblock.txt: 714) -.4-moto.ru/ad/ -# ||3rs.ru^$third-party (advblock.txt: 713) -.3rs.ru -# ||3d-ero.com^$third-party (advblock.txt: 712) -.3d-ero.com -# ||2x2.kz^ (advblock.txt: 711) -.2x2.kz -# ||2da2.ru^$third-party (advblock.txt: 710) -.2da2.ru -# ||2baksa.net^$third-party (advblock.txt: 709) -.2baksa.net -# ||24s.ru^ (advblock.txt: 708) -.24s.ru -# ||24new.ru^$third-party (advblock.txt: 707) -.24new.ru -# ||24au.ru/auctioninformer/ (advblock.txt: 706) -.24au.ru/auctioninformer/ -# ||2000zakazov.ru^ (advblock.txt: 705) -.2000zakazov.ru -# ||1popov.ru^$third-party (advblock.txt: 704) -.1popov.ru -# ||123service.ru^$third-party,~script (advblock.txt: 703) -.123service.ru -# ||1000zakazov.ru^ (advblock.txt: 702) -.1000zakazov.ru -# ||003.ua^$third-party (advblock.txt: 701) -.003.ua -# |http://u.to/$third-party,script,subdocument (advblock.txt: 700) -u.to -# ||pw^$third-party,script (advblock.txt: 678) -# ||info^$third-party,script (advblock.txt: 677) -# ||asia^$third-party,script,subdocument (advblock.txt: 676) -# ||zavetiss.ru^$third-party (advblock.txt: 674) -.zavetiss.ru -# ||servebbs.net^$third-party,script,subdocument (advblock.txt: 673) -.servebbs.net -# ||quelliclub.ru^$third-party,script,subdocument (advblock.txt: 672) -.quelliclub.ru -# ||itsaol.com^$third-party,script,subdocument (advblock.txt: 671) -.itsaol.com -# ||dyndns.$third-party,script,subdocument (advblock.txt: 670) -.dyndns.*. -# ||dyndns-$third-party,script,subdocument (advblock.txt: 669) -.dyndns-*. -# ||chickenkiller.com^$third-party,script,subdocument (advblock.txt: 668) -.chickenkiller.com -# ||changeip.name^$third-party,script,subdocument (advblock.txt: 667) -.changeip.name -# ||ua/rtr/$script (advblock.txt: 659) -# ||tv/rtr/$script (advblock.txt: 658) -# ||su/rtr/$script (advblock.txt: 657) -# ||ru/rtr/$script (advblock.txt: 656) -# ||ro/rtr/$script (advblock.txt: 655) -# ||pl/rtr/$script (advblock.txt: 654) -# ||org/rtr/$script (advblock.txt: 653) -# ||net/rtr/$script (advblock.txt: 652) -# ||me/rtr/$script (advblock.txt: 651) -# ||kz/rtr/$script (advblock.txt: 650) -# ||es/rtr/$script (advblock.txt: 649) -# ||com/rtr/$script (advblock.txt: 648) -# ||by/rtr/$script (advblock.txt: 647) -# ||biz/rtr/$script (advblock.txt: 646) -# ||am/rtr/$script (advblock.txt: 645) -# ||褉褎/banner/ (advblock.txt: 643) -# ||ucoz.*/img/ma/cv.gif (advblock.txt: 642) -.ucoz.*./(.*/)?img/ma/cv\.gif -# ||ua/uploads/banners/ (advblock.txt: 641) -# ||ua/upload/jackets/ (advblock.txt: 640) -# ||ua/i/banners/ (advblock.txt: 639) -# ||ua/i/banner/ (advblock.txt: 638) -# ||ua/banners/ (advblock.txt: 637) -# ||ua/banner/ (advblock.txt: 636) -# ||ru/uploads/banners/ (advblock.txt: 635) -# ||ru/tiz_show.php?id=$script (advblock.txt: 634) -# ||ru/text_show.php?id=$third-party,script (advblock.txt: 633) -# ||ru/r/get/?id=*&div=$third-party,script (advblock.txt: 632) -# ||ru/i/banners/ (advblock.txt: 631) -# ||ru/i/banner/ (advblock.txt: 630) -# ||ru/banners/ (advblock.txt: 629) -# ||ru/banner/ (advblock.txt: 628) -# ||ru/banner. (advblock.txt: 627) -# ||ru/ban/ (advblock.txt: 626) -# ||ru/ads/ (advblock.txt: 625) -# ||net/banners/ (advblock.txt: 624) -# ||madbanner.$~object-subrequest (advblock.txt: 623) -.madbanner.*. -# ||info/vk2/ (advblock.txt: 622) -# ||info/alert/ (advblock.txt: 621) -# ||in/?for=$third-party,script (advblock.txt: 620) -# ||com/video/*^format=rotator&$third-party,script (advblock.txt: 619) -# ||com/js/check_blocks.js|$third-party (advblock.txt: 618) -# ||com/bout.php?id=$third-party,script (advblock.txt: 617) -# ||com/bgout.php?id=$third-party,script (advblock.txt: 616) -# ||biz/v^$third-party,script (advblock.txt: 615) -# ||biz/banner/$third-party (advblock.txt: 614) -# _tizers. (advblock.txt: 613) -/.*_tizers\. -# _tizer2. (advblock.txt: 612) -/.*_tizer2\. -# _tizer. (advblock.txt: 611) -/.*_tizer\. -# _spy2wc.org (advblock.txt: 610) -/.*_spy2wc\.org -# _banner.gif (advblock.txt: 609) -/.*_banner\.gif -# _baner_ (advblock.txt: 608) -/.*_baner_ -# _baner. (advblock.txt: 607) -/.*_baner\. -# ^clickunder- (advblock.txt: 606) -/(.*[^\w%.-])?clickunder- -clickunder-*. -# ?teaser_ (advblock.txt: 605) -/.*\?teaser_ -# ?begun=*&begun_referrer=*&begun_location= (advblock.txt: 604) -/.*\?begun=.*&begun_referrer=.*&begun_location= -# ?a_aid=testaff& (advblock.txt: 603) -/.*\?a_aid=testaff& -# /youtube.php|$third-party,script (advblock.txt: 602) -/(.*/)?youtube\.php$ -youtube.php -# /ya-awaps2/* (advblock.txt: 601) -/(.*/)?ya-awaps2/.* -# /www/imgget/*$script (advblock.txt: 600) -/(.*/)?www/imgget/.* -# /wp-content/imgrekl/* (advblock.txt: 599) -/(.*/)?wp-content/imgrekl/.* -# /webunder_ (advblock.txt: 598) -/(.*/)?webunder_ -# /warlog. (advblock.txt: 597) -/(.*/)?warlog\. -warlog.*. -# /vsemayki_ (advblock.txt: 596) -/(.*/)?vsemayki_ -# /vse-pricheski.$third-party (advblock.txt: 595) -/(.*/)?vse-pricheski\. -vse-pricheski.*. -# /volcano_banner (advblock.txt: 594) -/(.*/)?volcano_banner -# /vkshow1.php?$script (advblock.txt: 593) -/(.*/)?vkshow1\.php\? -# /vkshow.php?id=$third-party,script (advblock.txt: 592) -/(.*/)?vkshow\.php\?id= -# /vknotifier1.php?id=$third-party,script (advblock.txt: 591) -/(.*/)?vknotifier1\.php\?id= -# /vk_code.php?id=$third-party,script (advblock.txt: 590) -/(.*/)?vk_code\.php\?id= -# /viptizer. (advblock.txt: 589) -/(.*/)?viptizer\. -viptizer.*. -# /viewt.js$third-party (advblock.txt: 588) -/(.*/)?viewt\.js -viewt.js*. -# /videoadcode/* (advblock.txt: 587) -/(.*/)?videoadcode/.* -# /video/?format=overroll& (advblock.txt: 586) -/(.*/)?video/\?format=overroll& -# /vendshow/* (advblock.txt: 585) -/(.*/)?vendshow/.* -# /vast.xml?key= (advblock.txt: 584) -/(.*/)?vast\.xml\?key= -# /utftizer. (advblock.txt: 583) -/(.*/)?utftizer\. -utftizer.*. -# /userfiles/banners/* (advblock.txt: 582) -/(.*/)?userfiles/banners/.* -# /uploads/slider/col$script (advblock.txt: 581) -/(.*/)?uploads/slider/col -# /upload_photo/banners/* (advblock.txt: 580) -/(.*/)?upload_photo/banners/.* -# /upload/bx/* (advblock.txt: 579) -/(.*/)?upload/bx/.* -# /upload/banners/* (advblock.txt: 578) -/(.*/)?upload/banners/.* -# /ucoz/img/uads/* (advblock.txt: 577) -/(.*/)?ucoz/img/uads/.* -# /ucodes.ru.banners.js (advblock.txt: 576) -/(.*/)?ucodes\.ru\.banners\.js -ucodes.ru.banners.js*. -# /traff.js (advblock.txt: 575) -/(.*/)?traff\.js -traff.js*. -# /topminigames.jpg| (advblock.txt: 574) -/(.*/)?topminigames\.jpg$ -topminigames.jpg -# /tizshow. (advblock.txt: 573) -/(.*/)?tizshow\. -tizshow.*. -# /tizers_ (advblock.txt: 572) -/(.*/)?tizers_ -# /tizers3. (advblock.txt: 571) -/(.*/)?tizers3\. -tizers3.*. -# /tizers2. (advblock.txt: 570) -/(.*/)?tizers2\. -tizers2.*. -# /tizers/* (advblock.txt: 569) -/(.*/)?tizers/.* -# /tizerotator/* (advblock.txt: 568) -/(.*/)?tizerotator/.* -# /tizermedia. (advblock.txt: 567) -/(.*/)?tizermedia\. -tizermedia.*. -# /tizer_ (advblock.txt: 566) -/(.*/)?tizer_ -# /tizer2/* (advblock.txt: 565) -/(.*/)?tizer2/.* -# /tizer2. (advblock.txt: 564) -/(.*/)?tizer2\. -tizer2.*. -# /tizer/* (advblock.txt: 563) -/(.*/)?tizer/.* -# /tizer. (advblock.txt: 562) -/(.*/)?tizer\. -tizer.*. -# /tizer- (advblock.txt: 561) -/(.*/)?tizer- -tizer-*. -# /tionline240x400. (advblock.txt: 560) -/(.*/)?tionline240x400\. -tionline240x400.*. -# /tionline240x100. (advblock.txt: 559) -/(.*/)?tionline240x100\. -tionline240x100.*. -# /tionline150x60. (advblock.txt: 558) -/(.*/)?tionline150x60\. -tionline150x60.*. -# /tionline120x60. (advblock.txt: 557) -/(.*/)?tionline120x60\. -tionline120x60.*. -# /teasers/* (advblock.txt: 556) -/(.*/)?teasers/.* -# /teasers. (advblock.txt: 555) -/(.*/)?teasers\. -teasers.*. -# /teaser_klubnika/* (advblock.txt: 554) -/(.*/)?teaser_klubnika/.* -# /teaser2. (advblock.txt: 553) -/(.*/)?teaser2\. -teaser2.*. -# /teaser.$~object-subrequest (advblock.txt: 552) -/(.*/)?teaser\. -teaser.*. -# /talky3d.gif (advblock.txt: 551) -/(.*/)?talky3d\.gif -talky3d.gif*. -# /t.bbn?$third-party (advblock.txt: 550) -/(.*/)?t\.bbn\? -# /swf/tionline/* (advblock.txt: 549) -/(.*/)?swf/tionline/.* -# /sun_*_ajax.js| (advblock.txt: 548) -/(.*/)?sun_.*_ajax\.js$ -# /sticker?id=$third-party,script (advblock.txt: 547) -/(.*/)?sticker\?id= -# /static/tds.js| (advblock.txt: 546) -/(.*/)?static/tds\.js$ -# /start_tr.js? (advblock.txt: 545) -/(.*/)?start_tr\.js\? -# /start_ad.js? (advblock.txt: 544) -/(.*/)?start_ad\.js\? -# /sprava_baner/* (advblock.txt: 543) -/(.*/)?sprava_baner/.* -# /splash/page_header/* (advblock.txt: 542) -/(.*/)?splash/page_header/.* -# /sphinx_*.gif| (advblock.txt: 541) -/(.*/)?sphinx_.*\.gif$ -# /slatefp.asp (advblock.txt: 540) -/(.*/)?slatefp\.asp -slatefp.asp*. -# /showf.php?u=$subdocument (advblock.txt: 539) -/(.*/)?showf\.php\?u= -# /show_adv.php?page_id= (advblock.txt: 538) -/(.*/)?show_adv\.php\?page_id= -# /show/?block_id=*&r=$script (advblock.txt: 537) -/(.*/)?show/\?block_id=.*&r= -# /show.php*^type=*&method=$script (advblock.txt: 536) -/(.*/)?show\.php.*[^\w%.-]type=.*&method= -show.php*./(.*[^\w%.-])?type=.*&method= -# /show.php*^placeid=*&rnd=$script (advblock.txt: 535) -/(.*/)?show\.php.*[^\w%.-]placeid=.*&rnd= -show.php*./(.*[^\w%.-])?placeid=.*&rnd= -# /shop-banner.ashx? (advblock.txt: 534) -/(.*/)?shop-banner\.ashx\? -# /shared/promos/* (advblock.txt: 533) -/(.*/)?shared/promos/.* -# /sexvodnokalssnikah/* (advblock.txt: 532) -/(.*/)?sexvodnokalssnikah/.* -# /sextizer. (advblock.txt: 531) -/(.*/)?sextizer\. -sextizer.*. -# /sbn2.js (advblock.txt: 530) -/(.*/)?sbn2\.js -sbn2.js*. -# /sblocks_informer. (advblock.txt: 529) -/(.*/)?sblocks_informer\. -# /sb.php?s=$script (advblock.txt: 528) -/(.*/)?sb\.php\?s= -# /rotation/r.php?format= (advblock.txt: 527) -/(.*/)?rotation/r\.php\?format= -# /rnb.php?id= (advblock.txt: 526) -/(.*/)?rnb\.php\?id= -# /richbanner. (advblock.txt: 525) -/(.*/)?richbanner\. -richbanner.*. -# /richarbuz. (advblock.txt: 524) -/(.*/)?richarbuz\. -richarbuz.*. -# /reklama_ (advblock.txt: 523) -/(.*/)?reklama_ -# /rcl/ban/* (advblock.txt: 521) -/(.*/)?rcl/ban/.* -# /rcl/all/* (advblock.txt: 520) -/(.*/)?rcl/all/.* -# /rbknews/* (advblock.txt: 519) -/(.*/)?rbknews/.* -# /r_show.php?b= (advblock.txt: 518) -/(.*/)?r_show\.php\?b= -# /pseudocounter.js (advblock.txt: 517) -/(.*/)?pseudocounter\.js -pseudocounter.js*. -# /priceru_advert_ (advblock.txt: 516) -/(.*/)?priceru_advert_ -# /prepareCode? (advblock.txt: 515) -/(.*/)?prepareCode\? -# /ppndr/* (advblock.txt: 514) -/(.*/)?ppndr/.* -# /popout.php?id=$third-party (advblock.txt: 513) -/(.*/)?popout\.php\?id= -# /popin4.js (advblock.txt: 512) -/(.*/)?popin4\.js -popin4.js*. -# /popin.js (advblock.txt: 511) -/(.*/)?popin\.js -popin.js*. -# /plz.somechange.js? (advblock.txt: 510) -/(.*/)?plz\.somechange\.js\? -# /play/?ref=*/play/*$third-party,subdocument (advblock.txt: 509) -/(.*/)?play/\?ref=.*/play/.* -# /pixel2/video?$third-party,script (advblock.txt: 508) -/(.*/)?pixel2/video\? -# /partner/images/banners/* (advblock.txt: 507) -/(.*/)?partner/images/banners/.* -# /partner/banner/* (advblock.txt: 506) -/(.*/)?partner/banner/.* -# /oyy.js (advblock.txt: 505) -/(.*/)?oyy\.js -oyy.js*. -# /out.php?sid=$script (advblock.txt: 504) -/(.*/)?out\.php\?sid= -# /newsanons/*?advert[]= (advblock.txt: 503) -/(.*/)?newsanons/.*\?advert\[\]= -# /news.php?sid=*&bn=$third-party,script (advblock.txt: 502) -/(.*/)?news\.php\?sid=.*&bn= -# /networks//banners/* (advblock.txt: 501) -/(.*/)?networks//banners/.* -# /mybaner/* (advblock.txt: 500) -/(.*/)?mybaner/.* -# /mp3player.swf?file=*/vk.mp3 (advblock.txt: 499) -/(.*/)?mp3player\.swf\?file=.*/vk\.mp3 -# /mp3player.swf?file=*/bb2.mp3 (advblock.txt: 498) -/(.*/)?mp3player\.swf\?file=.*/bb2\.mp3 -# /mp3player.swf?file=*/bb1.mp3 (advblock.txt: 497) -/(.*/)?mp3player\.swf\?file=.*/bb1\.mp3 -# /mirmaek/*$image (advblock.txt: 496) -/(.*/)?mirmaek/.* -# /mediaget- (advblock.txt: 495) -/(.*/)?mediaget- -mediaget-*. -# /media/banners/* (advblock.txt: 494) -/(.*/)?media/banners/.* -# /marketplace.asp? (advblock.txt: 493) -/(.*/)?marketplace\.asp\? -# /load-promo/* (advblock.txt: 492) -/(.*/)?load-promo/.* -# /linkexchange/* (advblock.txt: 491) -/(.*/)?linkexchange/.* -# /kmabiz/* (advblock.txt: 490) -/(.*/)?kmabiz/.* -# /jstbt.js|$third-party (advblock.txt: 489) -/(.*/)?jstbt\.js$ -jstbt.js -# /js/vk.php?id=$script (advblock.txt: 488) -/(.*/)?js/vk\.php\?id= -# /js/slider.php?id=$third-party (advblock.txt: 487) -/(.*/)?js/slider\.php\?id= -# /js/rot.php?id= (advblock.txt: 486) -/(.*/)?js/rot\.php\?id= -# /js/popup.php?id=$third-party (advblock.txt: 485) -/(.*/)?js/popup\.php\?id= -# /js/peeldown.php?id=$third-party (advblock.txt: 484) -/(.*/)?js/peeldown\.php\?id= -# /js/if.php?id=$third-party (advblock.txt: 483) -/(.*/)?js/if\.php\?id= -# /js/girls.php| (advblock.txt: 482) -/(.*/)?js/girls\.php$ -# /js/code.php?id= (advblock.txt: 481) -/(.*/)?js/code\.php\?id= -# /jollywallet/* (advblock.txt: 480) -/(.*/)?jollywallet/.* -# /jban.js?idd= (advblock.txt: 479) -/(.*/)?jban\.js\?idd= -# /jads.php? (advblock.txt: 478) -/(.*/)?jads\.php\? -# /j65.php| (advblock.txt: 477) -/(.*/)?j65\.php$ -j65.php -# /initRTv2.php?id=$script (advblock.txt: 476) -/(.*/)?initRTv2\.php\?id= -# /informer/script.php?id= (advblock.txt: 475) -/(.*/)?informer/script\.php\?id= -# /informer.php? (advblock.txt: 474) -/(.*/)?informer\.php\? -# /informer.js (advblock.txt: 473) -/(.*/)?informer\.js -informer.js*. -# /inc/brand.css? (advblock.txt: 472) -/(.*/)?inc/brand\.css\? -# /inc/banner_zone/* (advblock.txt: 471) -/(.*/)?inc/banner_zone/.* -# /in.htm?wm=$popup (advblock.txt: 470) -/(.*/)?in\.htm\?wm= -# /in.cgi?$third-party,script,subdocument (advblock.txt: 469) -/(.*/)?in\.cgi\? -# /imp.php?a_aid= (advblock.txt: 468) -/(.*/)?imp\.php\?a_aid= -# /img/rekl/* (advblock.txt: 467) -/(.*/)?img/rekl/.* -# /img/bnr/* (advblock.txt: 466) -/(.*/)?img/bnr/.* -# /img/bnr- (advblock.txt: 465) -/(.*/)?img/bnr- -# /img/bn/* (advblock.txt: 464) -/(.*/)?img/bn/.* -# /img/banner/* (advblock.txt: 463) -/(.*/)?img/banner/.* -# /images/rekl/* (advblock.txt: 462) -/(.*/)?images/rekl/.* -# /images/rek/* (advblock.txt: 461) -/(.*/)?images/rek/.* -# /images/bn/* (advblock.txt: 460) -/(.*/)?images/bn/.* -# /images/ban/* (advblock.txt: 459) -/(.*/)?images/ban/.* -# /iframe/inosmi.$subdocument (advblock.txt: 458) -/(.*/)?iframe/inosmi\. -# /iframe/glomu.$subdocument (advblock.txt: 457) -/(.*/)?iframe/glomu\. -# /hotfilebanner. (advblock.txt: 456) -/(.*/)?hotfilebanner\. -hotfilebanner.*. -# /hh/BannerHandler.js? (advblock.txt: 455) -/(.*/)?hh/BannerHandler\.js\? -# /getThumbs?uid=$third-party,subdocument (advblock.txt: 454) -/(.*/)?getThumbs\?uid= -# /get_tiz. (advblock.txt: 453) -/(.*/)?get_tiz\. -# /get_banner_flash.*&shop= (advblock.txt: 452) -/(.*/)?get_banner_flash\..*&shop= -# /get.php?user_id=*&mode=$third-party,script (advblock.txt: 451) -/(.*/)?get\.php\?user_id=.*&mode= -# /get.js?user_id=$third-party,script (advblock.txt: 450) -/(.*/)?get\.js\?user_id= -# /gaminator/* (advblock.txt: 449) -/(.*/)?gaminator/.* -# /gaminator. (advblock.txt: 448) -/(.*/)?gaminator\. -gaminator.*. -# /gaminator- (advblock.txt: 447) -/(.*/)?gaminator- -gaminator-*. -# /free/banners/* (advblock.txt: 446) -/(.*/)?free/banners/.* -# /fotocash.js (advblock.txt: 445) -/(.*/)?fotocash\.js -fotocash.js*. -# /forum?t=$third-party,subdocument (advblock.txt: 444) -/(.*/)?forum\?t= -# /files/banners/* (advblock.txt: 443) -/(.*/)?files/banners/.* -# /files/banner/* (advblock.txt: 442) -/(.*/)?files/banner/.* -# /ekbn/src/* (advblock.txt: 441) -/(.*/)?ekbn/src/.* -# /datagroup.gif (advblock.txt: 440) -/(.*/)?datagroup\.gif -datagroup.gif*. -# /cu2.php?ref=$script (advblock.txt: 439) -/(.*/)?cu2\.php\?ref= -# /cu2.php?*&ref=$script (advblock.txt: 438) -/(.*/)?cu2\.php\?.*&ref= -# /cu1.php?ref=$script (advblock.txt: 437) -/(.*/)?cu1\.php\?ref= -# /cu1.php?*&ref=$script (advblock.txt: 436) -/(.*/)?cu1\.php\?.*&ref= -# /cu.php?$third-party,script (advblock.txt: 435) -/(.*/)?cu\.php\? -# /cu.js?p=$script (advblock.txt: 434) -/(.*/)?cu\.js\?p= -# /ctxtlink/* (advblock.txt: 433) -/(.*/)?ctxtlink/.* -# /cszz/*$third-party,script (advblock.txt: 432) -/(.*/)?cszz/.* -# /cshi/*$third-party,script (advblock.txt: 431) -/(.*/)?cshi/.* -# /cs3?user_id=*&stream_id=$script (advblock.txt: 430) -/(.*/)?cs3\?user_id=.*&stream_id= -# /cout.php?sid=$script (advblock.txt: 429) -/(.*/)?cout\.php\?sid= -# /content/get?*&previous_ad_id= (advblock.txt: 428) -/(.*/)?content/get\?.*&previous_ad_id= -# /code/click.php?id=$popup (advblock.txt: 427) -/(.*/)?code/click\.php\?id= -# /clk.js| (advblock.txt: 426) -/(.*/)?clk\.js$ -clk.js -# /clickheat. (advblock.txt: 425) -/(.*/)?clickheat\. -clickheat.*. -# /check.php?user_id=*&mode= (advblock.txt: 424) -/(.*/)?check\.php\?user_id=.*&mode= -# /cgi-bin/banners/* (advblock.txt: 423) -/(.*/)?cgi-bin/banners/.* -# /cgi-bin/banner/* (advblock.txt: 422) -/(.*/)?cgi-bin/banner/.* -# /cgi-bin/adv.fcgi? (advblock.txt: 421) -/(.*/)?cgi-bin/adv\.fcgi\? -# /cgi-bin/adt.fcgi? (advblock.txt: 420) -/(.*/)?cgi-bin/adt\.fcgi\? -# /cdn-cgi/pe/bag2?r[]=*an.yandex.ru (advblock.txt: 419) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*an\.yandex\.ru -# /by.banclk? (advblock.txt: 418) -/(.*/)?by\.banclk\? -# /bstats.ashx?ck=*&rnd= (advblock.txt: 417) -/(.*/)?bstats\.ashx\?ck=.*&rnd= -# /bshow.php?dimension=$third-party,script (advblock.txt: 416) -/(.*/)?bshow\.php\?dimension= -# /branding/js/* (advblock.txt: 415) -/(.*/)?branding/js/.* -# /branding/images/*-banners. (advblock.txt: 414) -/(.*/)?branding/images/.*-banners\. -# /branding/css/*$~object-subrequest,~object (advblock.txt: 413) -/(.*/)?branding/css/.* -# /branding/casino/* (advblock.txt: 412) -/(.*/)?branding/casino/.* -# /branding.js (advblock.txt: 411) -/(.*/)?branding\.js -branding.js*. -# /branding-rotator.js (advblock.txt: 410) -/(.*/)?branding-rotator\.js -branding-rotator.js*. -# /bodyclick.php (advblock.txt: 409) -/(.*/)?bodyclick\.php -bodyclick.php*. -# /bn.php?s= (advblock.txt: 408) -/(.*/)?bn\.php\?s= -# /block_view.php?bid=$third-party (advblock.txt: 407) -/(.*/)?block_view\.php\?bid= -# /bframe.ashx?place=*&ids= (advblock.txt: 406) -/(.*/)?bframe\.ashx\?place=.*&ids= -# /bfile.ashx?placeid=*&fileid= (advblock.txt: 405) -/(.*/)?bfile\.ashx\?placeid=.*&fileid= -# /begun.js (advblock.txt: 404) -/(.*/)?begun\.js -begun.js*. -# /bazar_fast/* (advblock.txt: 403) -/(.*/)?bazar_fast/.* -# /bannerz.$object (advblock.txt: 402) -/(.*/)?bannerz\. -bannerz.*. -# /banners/*_*x*? (advblock.txt: 401) -/(.*/)?banners/.*_.*x.*\? -# /banners/*/*/0/index.$subdocument (advblock.txt: 400) -/(.*/)?banners/.*/.*/0/index\. -# /banners.mvc? (advblock.txt: 399) -/(.*/)?banners\.mvc\? -# /bannergzo/* (advblock.txt: 398) -/(.*/)?bannergzo/.* -# /bannerex.cgi/getbanner.js?id= (advblock.txt: 397) -/(.*/)?bannerex\.cgi/getbanner\.js\?id= -bannerex.cgi/getbanner\.js\?id= -# /banner_$object (advblock.txt: 396) -/(.*/)?banner_ -# /banner2.gif (advblock.txt: 395) -/(.*/)?banner2\.gif -banner2.gif*. -# /banner.gif (advblock.txt: 394) -/(.*/)?banner\.gif -banner.gif*. -# /baners/* (advblock.txt: 393) -/(.*/)?baners/.* -# /baner_ (advblock.txt: 392) -/(.*/)?baner_ -# /baner/* (advblock.txt: 391) -/(.*/)?baner/.* -# /baner. (advblock.txt: 390) -/(.*/)?baner\. -baner.*. -# /backlinks. (advblock.txt: 389) -/(.*/)?backlinks\. -backlinks.*. -# /b_bs_killdog_ (advblock.txt: 388) -/(.*/)?b_bs_killdog_ -# /b?size=*&catgry=$third-party,script (advblock.txt: 387) -/(.*/)?b\?size=.*&catgry= -# /api/topl/*/*.js$third-party (advblock.txt: 386) -/(.*/)?api/topl/.*/.*\.js -# /amcu_$script (advblock.txt: 385) -/(.*/)?amcu_ -# /aika.swf (advblock.txt: 384) -/(.*/)?aika\.swf -aika.swf*. -# /afisha_banner/* (advblock.txt: 383) -/(.*/)?afisha_banner/.* -# /adwolfScriptScroll.js (advblock.txt: 382) -/(.*/)?adwolfScriptScroll\.js -adwolfScriptScroll.js*. -# /adv_teasers. (advblock.txt: 381) -/(.*/)?adv_teasers\. -# /adv_out.$script (advblock.txt: 380) -/(.*/)?adv_out\. -# /adv?banners= (advblock.txt: 379) -/(.*/)?adv\?banners= -# /adv/* (advblock.txt: 378) -/(.*/)?adv/.* -# /adv-out/?$script (advblock.txt: 377) -/(.*/)?adv-out/\? -# /adstil. (advblock.txt: 376) -/(.*/)?adstil\. -adstil.*. -# /adsnews. (advblock.txt: 375) -/(.*/)?adsnews\. -adsnews.*. -# /Ads.asmx/GetInfo? (advblock.txt: 374) -/(.*/)?Ads\.asmx/GetInfo\? -Ads.asmx/GetInfo\? -# /AdotubeYouTubePlayer. (advblock.txt: 373) -/(.*/)?AdotubeYouTubePlayer\. -AdotubeYouTubePlayer.*. -# /admixermonitorstorage. (advblock.txt: 372) -/(.*/)?admixermonitorstorage\. -admixermonitorstorage.*. -# /admixercloudcreatives. (advblock.txt: 371) -/(.*/)?admixercloudcreatives\. -admixercloudcreatives.*. -# /admixer/* (advblock.txt: 370) -/(.*/)?admixer/.* -# /adliftQueue.js (advblock.txt: 369) -/(.*/)?adliftQueue\.js -adliftQueue.js*. -# /adlift.js (advblock.txt: 368) -/(.*/)?adlift\.js -adlift.js*. -# /adland.php (advblock.txt: 367) -/(.*/)?adland\.php -adland.php*. -# /adfox/*$image,object,script,subdocument (advblock.txt: 366) -/(.*/)?adfox/.* -# /ad_click/*$object (advblock.txt: 365) -/(.*/)?ad_click/.* -# /abnl/?ucozads^ (advblock.txt: 364) -/(.*/)?abnl/\?ucozads[^\w%.-] -# /^https?://[^/]+/[a-z0-9]{15,}(\?hope=.*)?$/$script (advblock.txt: 363) -/(.*/)?[^\w%.-]https\?://\[[^\w%.-]/\]\+/\[a-z0-9\]\{15,\}\(\\\?hope=\..*\)\?\$/ -/^https?://[^/]+/[a-z0-9]{15,}(\?hope=.*)?$ -# /^https?://([^.]+\.)+[a-z]+\.(?:biz|ru|space)/[a-z][/?][-a-z0-9_?&=]{5,45}$/$third-party,script (advblock.txt: 362) -/(.*/)?[^\w%.-]https\?://\(\[[^\w%.-]\.\]\+\\\.\)\+\[a-z\]\+\\\.\(\?:biz\|ru\|space\)/\[a-z\]\[/\?\]\[-a-z0-9_\?&=\]\{5,45\}\$/ -/^https?://([^.]+\.)+[a-z]+\.(?:biz|ru|space)/[a-z][/?][-a-z0-9_?&=]{5,45}$ -# /?t=rot&pid=$script (advblock.txt: 361) -/(.*/)?\?t=rot&pid= -# /?t=b&blockids=$script (advblock.txt: 360) -/(.*/)?\?t=b&blockids= -# /?t=*&noadult=1&pid=$script (advblock.txt: 359) -/(.*/)?\?t=.*&noadult=1&pid= -# /?get_code&template_uid=$third-party,script (advblock.txt: 358) -/(.*/)?\?get_code&template_uid= -# /8831_1.gif (advblock.txt: 357) -/(.*/)?8831_1\.gif -# /700x70_ (advblock.txt: 356) -/(.*/)?700x70_ -# /468-80- (advblock.txt: 355) -/(.*/)?468-80- -468-80-*. -# /240x400_ (advblock.txt: 354) -/(.*/)?240x400_ -# //mads. (advblock.txt: 353) -mads.*. -# //jsn.$third-party,script (advblock.txt: 352) -jsn.*. -# //b.*/iframe/* (advblock.txt: 351) -b.*./(.*/)?iframe/.* -# .viptizer. (advblock.txt: 350) -/.*\.viptizer\. -.*.viptizer.*. -# .tizers. (advblock.txt: 349) -/.*\.tizers\. -.*.tizers.*. -# .tizermedia. (advblock.txt: 348) -/.*\.tizermedia\. -.*.tizermedia.*. -# .tizer- (advblock.txt: 347) -/.*\.tizer- -.*.tizer-*. -# .teaser. (advblock.txt: 346) -/.*\.teaser\. -.*.teaser.*. -# .swf?url=http (advblock.txt: 345) -/.*\.swf\?url=http -# .swf?targetURL= (advblock.txt: 344) -/.*\.swf\?targetURL= -# .swf?target=_self&link (advblock.txt: 343) -/.*\.swf\?target=_self&link -# .swf?target=_blank& (advblock.txt: 342) -/.*\.swf\?target=_blank& -# .swf?superpreroll_url= (advblock.txt: 341) -/.*\.swf\?superpreroll_url= -# .swf?pURL= (advblock.txt: 340) -/.*\.swf\?pURL= -# .swf?path=http (advblock.txt: 339) -/.*\.swf\?path=http -# .swf?lnk= (advblock.txt: 338) -/.*\.swf\?lnk= -# .swf?href= (advblock.txt: 337) -/.*\.swf\?href= -# .swf?flash_url= (advblock.txt: 336) -/.*\.swf\?flash_url= -# .swf?flash_link= (advblock.txt: 335) -/.*\.swf\?flash_link= -# .swf?click_url= (advblock.txt: 334) -/.*\.swf\?click_url= -# .swf?banner_href= (advblock.txt: 333) -/.*\.swf\?banner_href= -# .swf?alink= (advblock.txt: 332) -/.*\.swf\?alink= -# .swf?*&link1= (advblock.txt: 331) -/.*\.swf\?.*&link1= -# .sextizer. (advblock.txt: 330) -/.*\.sextizer\. -.*.sextizer.*. -# .richbanner. (advblock.txt: 329) -/.*\.richbanner\. -.*.richbanner.*. -# .php?idadv= (advblock.txt: 327) -/.*\.php\?idadv= -# .htm?href=*&tm_mode= (advblock.txt: 326) -/.*\.htm\?href=.*&tm_mode= -# .bannerbank_ (advblock.txt: 325) -/.*\.bannerbank_ -# .bannerbank. (advblock.txt: 324) -/.*\.bannerbank\. -.*.bannerbank.*. -# -teasers- (advblock.txt: 323) -/.*-teasers- -.*-teasers-*. -# -240x400_ (advblock.txt: 322) -/.*-240x400_ -# &vk_t=*&adv_ids= (advblock.txt: 321) -/.*&vk_t=.*&adv_ids= -# &teasersTtl= (advblock.txt: 320) -/.*&teasersTtl= -# &divid=prre_ (advblock.txt: 319) -/.*&divid=prre_ -# ||zarabotat-v-inete.com^$~popup,popup (advblock.txt: 206) -.zarabotat-v-inete.com -# ||vkonagt.com^$~popup,popup (advblock.txt: 205) -.vkonagt.com -# ||otvetes.com^$~popup,popup (advblock.txt: 204) -.otvetes.com -# ||help2play.com^$~popup,popup (advblock.txt: 203) -.help2play.com -# ||add5.ru^$~popup,popup (advblock.txt: 202) -.add5.ru -# ||yapfiles.ru^*/rating_by_pop/$popup (advblock.txt: 198) -.yapfiles.ru/.*/rating_by_pop/ -# ||x-uboino.ru^$popup (advblock.txt: 197) -.x-uboino.ru -# ||x-uboino.net^$popup (advblock.txt: 196) -.x-uboino.net -# ||worldoftanks.eu/play/$popup (advblock.txt: 195) -.worldoftanks.eu/play/ -# ||winafterwin.com^$popup (advblock.txt: 194) -.winafterwin.com -# ||webarbitrage.ru/?$popup (advblock.txt: 193) -.webarbitrage.ru/\? -# ||warthunder.ru^*/register-for-free?r=$popup (advblock.txt: 192) -.warthunder.ru/.*/register-for-free\?r= -# ||wardogs.ru/lp?ref=$popup (advblock.txt: 191) -.wardogs.ru/lp\?ref= -# ||w-raza.com^$popup (advblock.txt: 190) -.w-raza.com -# ||vulkan.site^*^goto=$popup (advblock.txt: 189) -.vulkan.site/.*[^\w%.-]goto= -# ||vezuha.me^$third-party,popup (advblock.txt: 188) -.vezuha.me -# ||velcome-club.com^$popup (advblock.txt: 187) -.velcome-club.com -# ||vashi-dohody.com^$~popup,popup (advblock.txt: 186) -.vashi-dohody.com -# ||travian.com.ua/landingpage/$popup (advblock.txt: 185) -.travian.com.ua/landingpage/ -# ||test-studio.ru^$third-party,popup (advblock.txt: 184) -.test-studio.ru -# ||tankionline.com/ru/play$popup (advblock.txt: 183) -.tankionline.com/ru/play -# ||survey.gemius.com.ua^$popup (advblock.txt: 182) -.survey.gemius.com.ua -# ||snailz.ru/promo/?$popup (advblock.txt: 181) -.snailz.ru/promo/\? -# ||slivz.com^$popup (advblock.txt: 180) -.slivz.com -# ||skidka50.com.ua^$popup (advblock.txt: 179) -.skidka50.com.ua -# ||sex-mambo.net^$popup (advblock.txt: 178) -.sex-mambo.net -# ||sergey-mavrodi.com^$popup (advblock.txt: 177) -.sergey-mavrodi.com -# ||sbornix.ru^$popup (advblock.txt: 176) -.sbornix.ru -# ||say.tv/?actionpay=$popup (advblock.txt: 175) -.say.tv/\?actionpay= -# ||sapato.ru^$third-party,popup (advblock.txt: 174) -.sapato.ru -# ||runetki.com/random/$popup (advblock.txt: 172) -.runetki.com/random/ -# ||relaxmybody.ru^$popup (advblock.txt: 171) -.relaxmybody.ru -# ||promo.advertlock.ru^$popup (advblock.txt: 170) -.promo.advertlock.ru -# ||power-braselet.ru^$popup (advblock.txt: 169) -.power-braselet.ru -# ||pop.sn00.net^$popup (advblock.txt: 168) -.pop.sn00.net -# ||pointblank.ru/?pid=$popup (advblock.txt: 167) -.pointblank.ru/\?pid= -# ||pin2me.com^$popup (advblock.txt: 166) -.pin2me.com -# ||pi-c.ru/go.php?id=*&rref=$popup (advblock.txt: 165) -.pi-c.ru/go\.php\?id=.*&rref= -# ||partypoker.com^*/videopop/$popup (advblock.txt: 164) -.partypoker.com/.*/videopop/ -# ||panel.gemius.com.ua^$popup (advblock.txt: 163) -.panel.gemius.com.ua -# ||mycultures.ru^$popup (advblock.txt: 162) -.mycultures.ru -# ||my-eromir.net^$popup (advblock.txt: 161) -.my-eromir.net -# ||moi-goroskop.com^$popup (advblock.txt: 160) -.moi-goroskop.com -# ||modnakasta.ua^$popup (advblock.txt: 159) -.modnakasta.ua -# ||mobruner.com^$~popup,popup (advblock.txt: 158) -.mobruner.com -# ||megogo.net^*&utm_$popup (advblock.txt: 157) -.megogo.net/.*&utm_ -# ||luckiestclick.com^$popup (advblock.txt: 156) -.luckiestclick.com -# ||lovecity3d.com/img/promo.$popup (advblock.txt: 155) -.lovecity3d.com/img/promo\. -# ||loadru.ru/18/$popup (advblock.txt: 154) -.loadru.ru/18/ -# ||link2you.ru^$popup (advblock.txt: 153) -.link2you.ru -# ||legendworld.ru/ref/$popup (advblock.txt: 152) -.legendworld.ru/ref/ -# ||kupitraf.com^$popup (advblock.txt: 151) -.kupitraf.com -# ||inet-dengi.net/?$popup (advblock.txt: 150) -.inet-dengi.net/\? -# ||goodsbrowser.com^$popup (advblock.txt: 149) -.goodsbrowser.com -# ||gamebomb.ru/gaming.$popup (advblock.txt: 147) -.gamebomb.ru/gaming\. -# ||funtest-ru.com^$popup (advblock.txt: 146) -.funtest-ru.com -# ||fotostrana.ru/start/*/?$popup (advblock.txt: 145) -.fotostrana.ru/start/.*/\? -# ||fileplaneta.com/?op=redirect_to&url=$popup (advblock.txt: 144) -.fileplaneta.com/\?op=redirect_to&url= -# ||fastpic.ru/?$popup (advblock.txt: 143) -.fastpic.ru/\? -# ||etonovosti.net^$popup (advblock.txt: 142) -.etonovosti.net -# ||ero-spinula.ru^$popup (advblock.txt: 141) -.ero-spinula.ru -# ||electblogers.com^$third-party,popup (advblock.txt: 140) -.electblogers.com -# ||electbloger.com^$popup (advblock.txt: 139) -.electbloger.com -# ||drtuber.com/embed/redirect?$popup (advblock.txt: 138) -.drtuber.com/embed/redirect\? -# ||discovermore.ru/restorepassword$~popup,popup (advblock.txt: 137) -.discovermore.ru/restorepassword -# ||devochki.cz^$popup (advblock.txt: 136) -.devochki.cz -# ||darkorbit.bigpoint.com/?aid=$popup (advblock.txt: 135) -.darkorbit.bigpoint.com/\?aid= -# ||contactsin.mobi^$third-party,~popup,popup (advblock.txt: 133) -.contactsin.mobi -# ||clubrelaxxxx.com^$popup (advblock.txt: 132) -.clubrelaxxxx.com -# ||club-sale.ru^$popup (advblock.txt: 131) -.club-sale.ru -# ||chaplingames.ru^$popup (advblock.txt: 129) -.chaplingames.ru -# ||cdnet.tv/lockadb.$popup (advblock.txt: 128) -.cdnet.tv/lockadb\. -# ||casino-x.com/?partner=$popup (advblock.txt: 127) -.casino-x.com/\?partner= -# ||bonsport.ru^$popup (advblock.txt: 125) -.bonsport.ru -# ||blinkogold.ru^$popup (advblock.txt: 124) -.blinkogold.ru -# ||audance.ru*/promo/$popup (advblock.txt: 123) -.audance.ru*./(.*/)?promo/ -# ||astaninki2.com^$popup (advblock.txt: 122) -.astaninki2.com -# ||alvegia.ru/register_$popup (advblock.txt: 121) -.alvegia.ru/register_ -# ||adv859672.ru^$third-party,~popup,popup (advblock.txt: 120) -.adv859672.ru -# ||adv758968.ru^$third-party,~popup,popup (advblock.txt: 119) -.adv758968.ru -# ||adv679854.ru^$third-party,~popup,popup (advblock.txt: 118) -.adv679854.ru -# ||adv578125.ru^$third-party,~popup,popup (advblock.txt: 117) -.adv578125.ru -# ||adv481895.ru^$third-party,~popup,popup (advblock.txt: 116) -.adv481895.ru -# ||adv457895.ru^$third-party,~popup,popup (advblock.txt: 115) -.adv457895.ru -# ||adv225489.ru^$third-party,~popup,popup (advblock.txt: 114) -.adv225489.ru -# ||9donline.ru/welcome/?mita=$popup (advblock.txt: 112) -.9donline.ru/welcome/\?mita= -# ||24smile.$third-party,popup (advblock.txt: 111) -.24smile.*. -# /blog_strijenko/*$popup (advblock.txt: 110) -/(.*/)?blog_strijenko/.* -# ||yandes.biz/in.cgi?$popup (advblock.txt: 108) -.yandes.biz/in\.cgi\? -# ||war.noc.su/?$popup (advblock.txt: 107) -.war.noc.su/\? -# ||wap-jump.com/jump_redirect?id=$popup (advblock.txt: 106) -.wap-jump.com/jump_redirect\?id= -# ||track.adwad.ru^$popup (advblock.txt: 105) -.track.adwad.ru -# ||terraclicks.com^$popup (advblock.txt: 104) -.terraclicks.com -# ||teamearn.ru/open/$popup (advblock.txt: 103) -.teamearn.ru/open/ -# ||social-leads.ru^$third-party,~popup,popup (advblock.txt: 102) -.social-leads.ru -# ||ruclicks.com/in/$popup (advblock.txt: 101) -.ruclicks.com/in/ -# ||redirecturl.ru^$popup (advblock.txt: 100) -.redirecturl.ru -# ||re-directme.com^$popup (advblock.txt: 99) -.re-directme.com -# ||rambler.pw^$popup (advblock.txt: 98) -.rambler.pw -# ||playermailer.net^$popup (advblock.txt: 97) -.playermailer.net -# ||peel-down.net/search.php?$popup (advblock.txt: 96) -.peel-down.net/search\.php\? -# ||napravil.ru^$popup (advblock.txt: 95) -.napravil.ru -# ||mxttrf.com/ads?$popup (advblock.txt: 94) -.mxttrf.com/ads\? -# ||mi3u.info^$~popup,popup (advblock.txt: 93) -.mi3u.info -# ||mesvip.com^$popup (advblock.txt: 92) -.mesvip.com -# ||luxup.ru^$popup (advblock.txt: 91) -.luxup.ru -# ||luckydir.ru^$~popup,popup (advblock.txt: 90) -.luckydir.ru -# ||lightcoffee.ru^$popup (advblock.txt: 89) -.lightcoffee.ru -# ||kan3.info^$~popup,popup (advblock.txt: 88) -.kan3.info -# ||ipchecker.ru/?id=$popup (advblock.txt: 87) -.ipchecker.ru/\?id= -# ||igrohit.net/goto.$popup (advblock.txt: 86) -.igrohit.net/goto\. -# ||hghit.com/direct?$popup (advblock.txt: 85) -.hghit.com/direct\? -# ||hapend.biz/thread$popup (advblock.txt: 84) -.hapend.biz/thread -# ||gotostat.ru^$popup (advblock.txt: 83) -.gotostat.ru -# ||gobylink.info^$popup (advblock.txt: 82) -.gobylink.info -# ||go.trafking.ru^$popup (advblock.txt: 81) -.go.trafking.ru -# ||ertovy.ru^$popup (advblock.txt: 80) -.ertovy.ru -# ||eknq.ru^$popup (advblock.txt: 79) -.eknq.ru -# ||earnshill.com/images/sp/$popup (advblock.txt: 78) -.earnshill.com/images/sp/ -# ||crusewind.net/click/direct.php?$popup (advblock.txt: 77) -.crusewind.net/click/direct\.php\? -# ||compareiseries.in^$third-party,~popup,popup (advblock.txt: 76) -.compareiseries.in -# ||clickson.net^*/pp/$popup (advblock.txt: 75) -.clickson.net/.*/pp/ -# ||clickov.com^$popup (advblock.txt: 74) -.clickov.com -# ||clickganic.com^$popup (advblock.txt: 73) -.clickganic.com -# ||cbn.tbn.ru^$third-party,popup (advblock.txt: 72) -.cbn.tbn.ru -# ||bubblesmedia.ru/gocu/$popup (advblock.txt: 71) -.bubblesmedia.ru/gocu/ -# ||apb-re.ru/?pid=$popup (advblock.txt: 70) -.apb-re.ru/\?pid= -# ||am15.net^$popup (advblock.txt: 69) -.am15.net -# ||aftevap.ru^$popup (advblock.txt: 68) -.aftevap.ru -# ||adspynet.com/reference?pid=$popup (advblock.txt: 67) -.adspynet.com/reference\?pid= -# ||adservone.com^$popup (advblock.txt: 66) -.adservone.com -# ||adserv01.ru^$third-party,~popup,popup (advblock.txt: 65) -.adserv01.ru -# ||actionpay.ru^$third-party,~popup,popup (advblock.txt: 64) -.actionpay.ru -# .tnt-online.ru/?utm_$popup (advblock.txt: 63) -/.*\.tnt-online\.ru/\?utm_ -.*.tnt-online.ru/\?utm_ -# ||com/on.php?id=$popup (advblock.txt: 61) -# ||com/go.php?tid=*&hid=$popup (advblock.txt: 60) -# ^clickunder^$~popup,popup (advblock.txt: 59) -/(.*[^\w%.-])?clickunder[^\w%.-] -# /wtsin.cgi?id=$~popup,popup (advblock.txt: 58) -/(.*/)?wtsin\.cgi\?id= -# /webunder.$~popup,popup (advblock.txt: 57) -/(.*/)?webunder\. -webunder.*. -# /vkshpion/?page=$popup (advblock.txt: 56) -/(.*/)?vkshpion/\?page= -# /utarget.$~popup,popup (advblock.txt: 55) -/(.*/)?utarget\. -utarget.*. -# /popua/*$popup (advblock.txt: 54) -/(.*/)?popua/.* -# /popads/*$popup (advblock.txt: 53) -/(.*/)?popads/.* -# /popads.$popup (advblock.txt: 52) -/(.*/)?popads\. -popads.*. -# /JumpClick?i=BannerKey_$popup (advblock.txt: 51) -/(.*/)?JumpClick\?i=BannerKey_ -# /click/body.php?id=*&hash=$~popup,popup (advblock.txt: 50) -/(.*/)?click/body\.php\?id=.*&hash= -# /adv_clk_redirect.php?$popup (advblock.txt: 49) -/(.*/)?adv_clk_redirect\.php\? -# /ad/popup/*$popup (advblock.txt: 48) -/(.*/)?ad/popup/.* -# //uno.*/?t=$popup,script (advblock.txt: 47) -uno.*./(.*/)?\?t= -# //kpup.*/?sid=$popup (advblock.txt: 46) -kpup.*./(.*/)?\?sid= -# .webunder.$~popup,popup (advblock.txt: 45) -/.*\.webunder\. -.*.webunder.*. -# .clickunder.$~popup,popup (advblock.txt: 44) -/.*\.clickunder\. -.*.clickunder.*. -# &utm_campaign=CU_ru$popup (advblock.txt: 43) -/.*&utm_campaign=CU_ru -# &temz=clikundr&$~popup,popup (advblock.txt: 42) -/.*&temz=clikundr& -# ||getitbit.net/ads/$popup (advblock.txt: 34) -.getitbit.net/ads/ -# ||com/?id=*&t=direct^$popup (advblock.txt: 31) -# .lostfilm.tv^*^bid=$popup (advblock.txt: 28) -/.*\.lostfilm\.tv[^\w%.-].*[^\w%.-]bid= -.*.lostfilm.tv/.*[^\w%.-]bid= -# ||ymages.org/prepop.php$popup (easylist.txt: 36609) -.ymages.org/prepop\.php -# ||r18.com/*utm_source$popup (easylist.txt: 36606) -.r18.com/.*utm_source -# ||publicagent.com/bigzpup.php$popup (easylist.txt: 36605) -.publicagent.com/bigzpup\.php -# ||pornuppz.info/out.php$popup (easylist.txt: 36604) -.pornuppz.info/out\.php -# ||pop.mrstiff.com^$popup (easylist.txt: 36601) -.pop.mrstiff.com -# ||pop.fapxl.com^$popup (easylist.txt: 36600) -.pop.fapxl.com -# ||pinporn.com/popunder/$popup (easylist.txt: 36599) -.pinporn.com/popunder/ -# ||namethatporn.com/ntpoo$popup (easylist.txt: 36598) -.namethatporn.com/ntpoo -# ||movies.askjolene.com/c64?clickid=$popup (easylist.txt: 36597) -.movies.askjolene.com/c64\?clickid= -# ||imagebam.com/redirect_awe.php$popup (easylist.txt: 36596) -.imagebam.com/redirect_awe\.php -# ||heganteens.com/exo.php$popup (easylist.txt: 36595) -.heganteens.com/exo\.php -# ||hegansex.com/exo.php$popup (easylist.txt: 36594) -.hegansex.com/exo\.php -# ||h2porn.com/pu.php$popup (easylist.txt: 36593) -.h2porn.com/pu\.php -# ||fantastube.com/track.php$popup (easylist.txt: 36589) -.fantastube.com/track\.php -# ||fantasti.cc^*?ad=$popup (easylist.txt: 36588) -.fantasti.cc/.*\?ad= -# ||eporner.com/pop.php$popup (easylist.txt: 36587) -.eporner.com/pop\.php -# ||ad.userporn.com^$popup (easylist.txt: 36586) -.ad.userporn.com -# ||zazzybabes.com/misc/virtuagirl-skin.js (easylist.txt: 36581) -.zazzybabes.com/misc/virtuagirl-skin\.js -# ||yuvutu.com^*/banners/ (easylist.txt: 36580) -.yuvutu.com/.*/banners/ -# ||yumymilf.com^*/banners/ (easylist.txt: 36579) -.yumymilf.com/.*/banners/ -# ||yporn.tv/uploads/flv_player/midroll_images/ (easylist.txt: 36578) -.yporn.tv/uploads/flv_player/midroll_images/ -# ||yporn.tv/uploads/flv_player/commercials/ (easylist.txt: 36577) -.yporn.tv/uploads/flv_player/commercials/ -# ||youx.xxx/thumb_top/ (easylist.txt: 36576) -.youx.xxx/thumb_top/ -# ||youtubelike.com/ftt2/toplists/ (easylist.txt: 36575) -.youtubelike.com/ftt2/toplists/ -# ||yourlust.com/im/postroll.html (easylist.txt: 36574) -.yourlust.com/im/postroll\.html -# ||yourlust.com/im/onpause.html (easylist.txt: 36573) -.yourlust.com/im/onpause\.html -# ||yourdarkdesires.com/3.html (easylist.txt: 36572) -.yourdarkdesires.com/3\.html -# ||yourdarkdesires.com/2.html (easylist.txt: 36571) -.yourdarkdesires.com/2\.html -# ||yourdarkdesires.com/1.html (easylist.txt: 36570) -.yourdarkdesires.com/1\.html -# ||yourdailygirls.com/vanilla/process.php (easylist.txt: 36569) -.yourdailygirls.com/vanilla/process\.php -# ||youporn.com^$subdocument,~third-party (easylist.txt: 36568) -.youporn.com -# ||youporn.com/watch_postroll/ (easylist.txt: 36565) -.youporn.com/watch_postroll/ -# ||youporn.com/capedorset/ (easylist.txt: 36564) -.youporn.com/capedorset/ -# ||youporn-hub.com/newlcd.js (easylist.txt: 36563) -.youporn-hub.com/newlcd\.js -# ||youporn-hub.com/lcdscript.js (easylist.txt: 36562) -.youporn-hub.com/lcdscript\.js -# ||youngpornvideos.com/images/wmasterthecoolporn/ (easylist.txt: 36561) -.youngpornvideos.com/images/wmasterthecoolporn/ -# ||youngpornvideos.com/images/webmasterdelightlinks/ (easylist.txt: 36560) -.youngpornvideos.com/images/webmasterdelightlinks/ -# ||youngpornvideos.com/images/teencash/ (easylist.txt: 36559) -.youngpornvideos.com/images/teencash/ -# ||youngpornvideos.com/images/mofoscash/ (easylist.txt: 36558) -.youngpornvideos.com/images/mofoscash/ -# ||youngpornvideos.com/images/glamglam/ (easylist.txt: 36557) -.youngpornvideos.com/images/glamglam/ -# ||youngpornvideos.com/images/bangbros/ (easylist.txt: 36556) -.youngpornvideos.com/images/bangbros/ -# ||youjizz.com^$~third-party,xmlhttprequest (easylist.txt: 36555) -.youjizz.com -# ||youjizz.com^$subdocument,~third-party (easylist.txt: 36554) -.youjizz.com -# ||youjizz.com/vivid/ (easylist.txt: 36553) -.youjizz.com/vivid/ -# ||youaresogay.com/*.html (easylist.txt: 36552) -.youaresogay.com/.*\.html -# ||yobt.tv/rec/ (easylist.txt: 36551) -.yobt.tv/rec/ -# ||yobt.tv/js/ttu.js (easylist.txt: 36550) -.yobt.tv/js/ttu\.js -# ||yobt.com/rec/ (easylist.txt: 36549) -.yobt.com/rec/ -# ||yea.xxx/img/creatives/ (easylist.txt: 36548) -.yea.xxx/img/creatives/ -# ||xxxymovies.com/js/win.js (easylist.txt: 36547) -.xxxymovies.com/js/win\.js -# ||xxxxsextube.com/*.html$subdocument (easylist.txt: 36546) -.xxxxsextube.com/.*\.html -# ||xxxporntalk.com/images/ (easylist.txt: 36545) -.xxxporntalk.com/images/ -# ||xxxlinks.es/xvideos.js (easylist.txt: 36544) -.xxxlinks.es/xvideos\.js -# ||xxxkinky.com/pap.js (easylist.txt: 36543) -.xxxkinky.com/pap\.js -# ||xxxhost.me/xpw.gif (easylist.txt: 36542) -.xxxhost.me/xpw\.gif -# ||xxxgames.biz^*/sponsors/ (easylist.txt: 36541) -.xxxgames.biz/.*/sponsors/ -# ||xxxfile.net^*/netload_premium.gif (easylist.txt: 36540) -.xxxfile.net/.*/netload_premium\.gif -# ||xxxblink.com/rec/ (easylist.txt: 36539) -.xxxblink.com/rec/ -# ||xxxblink.com/js/pops. (easylist.txt: 36538) -.xxxblink.com/js/pops\. -# ||xxvideo.us/playertext.html (easylist.txt: 36537) -.xxvideo.us/playertext\.html -# ||xxvideo.us/bnr.js (easylist.txt: 36536) -.xxvideo.us/bnr\.js -# ||xxvideo.us/ad728x15 (easylist.txt: 36535) -.xxvideo.us/ad728x15 -# ||xxnxx.eu/index.php?xyz_lbx= (easylist.txt: 36534) -.xxnxx.eu/index\.php\?xyz_lbx= -# ||xvideohost.com/hor_banner.php (easylist.txt: 36533) -.xvideohost.com/hor_banner\.php -# ||xtravids.com/pop.php (easylist.txt: 36532) -.xtravids.com/pop\.php -# ||xogogo.com/images/latestpt.gif (easylist.txt: 36531) -.xogogo.com/images/latestpt\.gif -# ||xhcdn.com^*/ads_ (easylist.txt: 36530) -.xhcdn.com/.*/ads_ -# ||xhamsterpremiumpass.com/premium_scenes.html (easylist.txt: 36529) -.xhamsterpremiumpass.com/premium_scenes\.html -# ||xhamster.com/js/xpu.js (easylist.txt: 36528) -.xhamster.com/js/xpu\.js -# ||xhamster.com/ads/ (easylist.txt: 36527) -.xhamster.com/ads/ -# ||xfanz.com^*_banner_ (easylist.txt: 36526) -.xfanz.com/.*_banner_ -# ||xcritic.com/img/200x150_ (easylist.txt: 36525) -.xcritic.com/img/200x150_ -# ||xcritic.com/images/watch- (easylist.txt: 36524) -.xcritic.com/images/watch- -# ||xcritic.com/images/rent- (easylist.txt: 36523) -.xcritic.com/images/rent- -# ||xcritic.com/images/buy- (easylist.txt: 36522) -.xcritic.com/images/buy- -# ||xbutter.com/js/pop-er.js (easylist.txt: 36521) -.xbutter.com/js/pop-er\.js -# ||xbutter.com/geturl.php/ (easylist.txt: 36520) -.xbutter.com/geturl\.php/ -# ||xbutter.com/adz.html (easylist.txt: 36519) -.xbutter.com/adz\.html -# ||xbooru.com/block/adblocks.js (easylist.txt: 36518) -.xbooru.com/block/adblocks\.js -# ||xbabe.com/iframes/ (easylist.txt: 36517) -.xbabe.com/iframes/ -# ||x3xtube.com/banner_rotating_ (easylist.txt: 36516) -.x3xtube.com/banner_rotating_ -# ||x.vipergirls.to^ (easylist.txt: 36515) -.x.vipergirls.to -# ||x.eroticity.net^ (easylist.txt: 36514) -.x.eroticity.net -# ||wunbuck.com/iframes/aaw_leaderboard.html (easylist.txt: 36513) -.wunbuck.com/iframes/aaw_leaderboard\.html -# ||wunbuck.com/_odd_images/banners/ (easylist.txt: 36512) -.wunbuck.com/_odd_images/banners/ -# ||wrenchtube.com/poppt.js (easylist.txt: 36511) -.wrenchtube.com/poppt\.js -# ||wowomg.com/*.html (easylist.txt: 36510) -.wowomg.com/.*\.html -# ||worldsex.com/c/ (easylist.txt: 36509) -.worldsex.com/c/ -# ||wikiporno.org/header21.html (easylist.txt: 36508) -.wikiporno.org/header21\.html -# ||wikiporno.org/header2.html (easylist.txt: 36507) -.wikiporno.org/header2\.html -# ||wiki-stars.com/trade/ (easylist.txt: 36506) -.wiki-stars.com/trade/ -# ||wiki-stars.com/thumb_if.php? (easylist.txt: 36505) -.wiki-stars.com/thumb_if\.php\? -# ||whozacunt.com/images/banner_ (easylist.txt: 36504) -.whozacunt.com/images/banner_ -# ||whozacunt.com/images/*_300x200_ (easylist.txt: 36503) -.whozacunt.com/images/.*_300x200_ -# ||whozacunt.com/images/*-300x250. (easylist.txt: 36502) -.whozacunt.com/images/.*-300x250\. -# ||whitedolly.com/wcf/images/redbar/logo_neu.gif (easylist.txt: 36501) -.whitedolly.com/wcf/images/redbar/logo_neu\.gif -# ||wetpussygames.com/images/promo/ (easylist.txt: 36500) -.wetpussygames.com/images/promo/ -# ||wetplace.com/wetplace_html/ (easylist.txt: 36499) -.wetplace.com/wetplace_html/ -# ||wetplace.com/js/adpwetplace (easylist.txt: 36498) -.wetplace.com/js/adpwetplace -# ||wetplace.com/iframes/$subdocument (easylist.txt: 36497) -.wetplace.com/iframes/ -# ||wegcash.com/click/ (easylist.txt: 36496) -.wegcash.com/click/ -# ||weberotic.net/banners/ (easylist.txt: 36495) -.weberotic.net/banners/ -# ||watchindianporn.net/js/pu.js (easylist.txt: 36494) -.watchindianporn.net/js/pu\.js -# ||watch2porn.net/pads2.js (easylist.txt: 36493) -.watch2porn.net/pads2\.js -# ||wankspider.com/js/wankspider.js (easylist.txt: 36492) -.wankspider.com/js/wankspider\.js -# ||wank.to/partner/ (easylist.txt: 36491) -.wank.to/partner/ -# ||vstreamcdn.com^*/ads/ (easylist.txt: 36490) -.vstreamcdn.com/.*/ads/ -# ||voyeurhit.com/related/voyeurhit.php?t_sid= (easylist.txt: 36489) -.voyeurhit.com/related/voyeurhit\.php\?t_sid= -# ||voyeurhit.com/contents/content_sources/ (easylist.txt: 36488) -.voyeurhit.com/contents/content_sources/ -# ||vivatube.com/upload/banners/ (easylist.txt: 36487) -.vivatube.com/upload/banners/ -# ||viralporn.com^*/popnew.js (easylist.txt: 36486) -.viralporn.com/.*/popnew\.js -# ||vidgrab.net/pads2.js (easylist.txt: 36485) -.vidgrab.net/pads2\.js -# ||vidgrab.net/images/adsbar (easylist.txt: 36484) -.vidgrab.net/images/adsbar -# ||vidgrab.net/bnr.js (easylist.txt: 36483) -.vidgrab.net/bnr\.js -# ||vidgrab.net/adsbar.png (easylist.txt: 36482) -.vidgrab.net/adsbar\.png -# ||videos.com^*/jsp.js (easylist.txt: 36481) -.videos.com/.*/jsp\.js -# ||videarn.com/vibrate.js (easylist.txt: 36480) -.videarn.com/vibrate\.js -# ||vid2c.com/pp.js (easylist.txt: 36479) -.vid2c.com/pp\.js -# ||vid2c.com/pap.js (easylist.txt: 36478) -.vid2c.com/pap\.js -# ||vid2c.com/js/pp.js (easylist.txt: 36477) -.vid2c.com/js/pp\.js -# ||vid2c.com/js/atxpp.js? (easylist.txt: 36476) -.vid2c.com/js/atxpp\.js\? -# ||vibraporn.com/vg/ (easylist.txt: 36475) -.vibraporn.com/vg/ -# ||upornia.com/contents/content_sources/ (easylist.txt: 36474) -.upornia.com/contents/content_sources/ -# ||updatetube.com/js/adpupdatetube (easylist.txt: 36473) -.updatetube.com/js/adpupdatetube -# ||unoxxx.com/pages/en_player_video_right.html (easylist.txt: 36472) -.unoxxx.com/pages/en_player_video_right\.html -# ||unblockedpiratebay.com/static/img/bar.gif (easylist.txt: 36471) -.unblockedpiratebay.com/static/img/bar\.gif -# ||ukrainamateurs.com/images/banners/ (easylist.txt: 36470) -.ukrainamateurs.com/images/banners/ -# ||uflash.tv^*/affiliates/ (easylist.txt: 36469) -.uflash.tv/.*/affiliates/ -# ||twofuckers.com/brazzers (easylist.txt: 36468) -.twofuckers.com/brazzers -# ||twinsporn.net/images/free-penis-pills.png (easylist.txt: 36467) -.twinsporn.net/images/free-penis-pills\.png -# ||twinsporn.net/images/delay.gif (easylist.txt: 36466) -.twinsporn.net/images/delay\.gif -# ||turboimagehost.com/p1.js (easylist.txt: 36465) -.turboimagehost.com/p1\.js -# ||tubedupe.com/side_two.html (easylist.txt: 36464) -.tubedupe.com/side_two\.html -# ||tubedupe.com/footer_four.html (easylist.txt: 36463) -.tubedupe.com/footer_four\.html -# ||tubecup.org/?t_sid= (easylist.txt: 36462) -.tubecup.org/\?t_sid= -# ||tubecup.com/js/1.js (easylist.txt: 36461) -.tubecup.com/js/1\.js -# ||tubecup.com/contents/content_sources/ (easylist.txt: 36460) -.tubecup.com/contents/content_sources/ -# ||tube8.com^$subdocument,~third-party (easylist.txt: 36459) -.tube8.com -# ||tube8.com/sugarcrush/ (easylist.txt: 36458) -.tube8.com/sugarcrush/ -# ||tube8.com/penthouse/ (easylist.txt: 36457) -.tube8.com/penthouse/ -# ||trovaporno.com/image/incontri$image (easylist.txt: 36456) -.trovaporno.com/image/incontri -# ||tnaflix.com^*_promo.jpg (easylist.txt: 36455) -.tnaflix.com/.*_promo\.jpg -# ||tnaflix.com/flixPlayerImages/ (easylist.txt: 36454) -.tnaflix.com/flixPlayerImages/ -# ||tnaflix.com/banner/ (easylist.txt: 36453) -.tnaflix.com/banner/ -# ||tjoob.com/kellyban.gif (easylist.txt: 36452) -.tjoob.com/kellyban\.gif -# ||tjoob.com/bgbb.jpg (easylist.txt: 36451) -.tjoob.com/bgbb\.jpg -# ||titsintops.com/rotate/ (easylist.txt: 36450) -.titsintops.com/rotate/ -# ||titsintops.com/intersitial/ (easylist.txt: 36449) -.titsintops.com/intersitial/ -# ||timtube.com/traffic.js (easylist.txt: 36448) -.timtube.com/traffic\.js -# ||thumblogger.com/thumblog/top_banner_silver.js (easylist.txt: 36447) -.thumblogger.com/thumblog/top_banner_silver\.js -# ||thisav.com/js/thisav_pop.js (easylist.txt: 36446) -.thisav.com/js/thisav_pop\.js -# ||thisav.com/js/pu.js (easylist.txt: 36445) -.thisav.com/js/pu\.js -# ||thinkexist.com/images/afm.js (easylist.txt: 36444) -.thinkexist.com/images/afm\.js -# ||thepornomatrix.com/images/1- (easylist.txt: 36443) -.thepornomatrix.com/images/1- -# ||theporncore.com/contents/content_sources/ (easylist.txt: 36442) -.theporncore.com/contents/content_sources/ -# ||thenipslip.com/mfcbanner.gif (easylist.txt: 36441) -.thenipslip.com/mfcbanner\.gif -# ||thenipslip.com/GGWDrunkenAd.jpg (easylist.txt: 36440) -.thenipslip.com/GGWDrunkenAd\.jpg -# ||thenewporn.com/js/adpthenewporn (easylist.txt: 36439) -.thenewporn.com/js/adpthenewporn -# ||thehun.net^*/banners/ (easylist.txt: 36438) -.thehun.net/.*/banners/ -# ||the-feeding-tube.com^*/Topbanner.php (easylist.txt: 36436) -.the-feeding-tube.com/.*/Topbanner\.php -# ||the-analist.info^*150x150 (easylist.txt: 36435) -.the-analist.info/.*150x150 -# ||the-analist.info^*150sq (easylist.txt: 36434) -.the-analist.info/.*150sq -# ||the-analist.info^*150-150 (easylist.txt: 36433) -.the-analist.info/.*150-150 -# ||temptingangels.org/media/banners/ (easylist.txt: 36432) -.temptingangels.org/media/banners/ -# ||temptingangels.org/banner/ (easylist.txt: 36431) -.temptingangels.org/banner/ -# ||teentube18.com/js/realamateurtube.js (easylist.txt: 36430) -.teentube18.com/js/realamateurtube\.js -# ||teensexcraze.com/awesome/leader.html (easylist.txt: 36429) -.teensexcraze.com/awesome/leader\.html -# ||teensanalfactor.com/best/ (easylist.txt: 36428) -.teensanalfactor.com/best/ -# ||taxidrivermovie.com/mrskin_runner/ (easylist.txt: 36427) -.taxidrivermovie.com/mrskin_runner/ -# ||tabletporn.com/images/pinkvisualpad- (easylist.txt: 36426) -.tabletporn.com/images/pinkvisualpad- -# ||sxx.com/js/lj.js (easylist.txt: 36424) -.sxx.com/js/lj\.js -# ||svscomics.com^*/dtrotator.js (easylist.txt: 36423) -.svscomics.com/.*/dtrotator\.js -# ||sunporno.com/js/flirt/serve.js (easylist.txt: 36422) -.sunporno.com/js/flirt/serve\.js -# ||submityourflicks.com/banner/ (easylist.txt: 36421) -.submityourflicks.com/banner/ -# ||stolenvideos.net/stolen.js (easylist.txt: 36420) -.stolenvideos.net/stolen\.js -# ||stockingstv.com/partners/ (easylist.txt: 36419) -.stockingstv.com/partners/ -# ||static.kinghost.com^ (easylist.txt: 36418) -.static.kinghost.com -# ||static.flabber.net^*background (easylist.txt: 36417) -.static.flabber.net/.*background -# ||starcelebs.com/logos/$image (easylist.txt: 36416) -.starcelebs.com/logos/ -# ||springbreaktubegirls.com/js/springpop.js (easylist.txt: 36415) -.springbreaktubegirls.com/js/springpop\.js -# ||spankbang.com/gateway/ (easylist.txt: 36414) -.spankbang.com/gateway/ -# ||songs.pk/ie/ietext.html (easylist.txt: 36413) -.songs.pk/ie/ietext\.html -# ||socaseiras.com.br/banners.php? (easylist.txt: 36412) -.socaseiras.com.br/banners\.php\? -# ||socaseiras.com.br/banner_ (easylist.txt: 36411) -.socaseiras.com.br/banner_ -# ||socaseiras.com.br/arquivos/banners/ (easylist.txt: 36410) -.socaseiras.com.br/arquivos/banners/ -# ||smutmodels.com/sponsors/ (easylist.txt: 36409) -.smutmodels.com/sponsors/ -# ||slinky.com.au/banners/ (easylist.txt: 36408) -.slinky.com.au/banners/ -# ||skimtube.com/kellyban.gif (easylist.txt: 36407) -.skimtube.com/kellyban\.gif -# ||site.img.4tube.com^ (easylist.txt: 36406) -.site.img.4tube.com -# ||sillusions.ws^*/vpn-banner.gif (easylist.txt: 36405) -.sillusions.ws/.*/vpn-banner\.gif -# ||sillusions.ws^*/pr0pop.js (easylist.txt: 36404) -.sillusions.ws/.*/pr0pop\.js -# ||signbucksdaily.com/data/promo/ (easylist.txt: 36403) -.signbucksdaily.com/data/promo/ -# ||signbucks.com/s/bns/ (easylist.txt: 36402) -.signbucks.com/s/bns/ -# ||shy-cams.com/tube.js (easylist.txt: 36401) -.shy-cams.com/tube\.js -# ||shooshtimeinc.com/under.php (easylist.txt: 36400) -.shooshtimeinc.com/under\.php -# ||shooshtime.com/images/chosenplugs/ (easylist.txt: 36399) -.shooshtime.com/images/chosenplugs/ -# ||shooshtime.com/ads/ (easylist.txt: 36398) -.shooshtime.com/ads/ -# ||sharew.org/modalfiles/ (easylist.txt: 36397) -.sharew.org/modalfiles/ -# ||shanbara.jp/okusamadx.gif (easylist.txt: 36396) -.shanbara.jp/okusamadx\.gif -# ||shanbara.jp/300_200plus.jpg (easylist.txt: 36395) -.shanbara.jp/300_200plus\.jpg -# ||sexytime.com/img/sexytime_anima.gif (easylist.txt: 36394) -.sexytime.com/img/sexytime_anima\.gif -# ||sexyshare.net//banners/ (easylist.txt: 36393) -# ||sexyfuckgames.com/images/promo/ (easylist.txt: 36392) -.sexyfuckgames.com/images/promo/ -# ||sexyclips.org/i/130x500.gif (easylist.txt: 36391) -.sexyclips.org/i/130x500\.gif -# ||sexyclips.org/banners/ (easylist.txt: 36390) -.sexyclips.org/banners/ -# ||sexyandshocking.com/mzpop.js (easylist.txt: 36389) -.sexyandshocking.com/mzpop\.js -# ||sexyandfunny.com/images/totem (easylist.txt: 36388) -.sexyandfunny.com/images/totem -# ||sexy-toons.org/interface/pub/ (easylist.txt: 36387) -.sexy-toons.org/interface/pub/ -# ||sexy-toons.org/interface/partenariat/ (easylist.txt: 36386) -.sexy-toons.org/interface/partenariat/ -# ||sexvines.co/images/cp (easylist.txt: 36385) -.sexvines.co/images/cp -# ||sexuhot.com/splayer.js (easylist.txt: 36384) -.sexuhot.com/splayer\.js -# ||sexuhot.com/images/xbanner (easylist.txt: 36383) -.sexuhot.com/images/xbanner -# ||sextubebox.com/ab2.shtml (easylist.txt: 36382) -.sextubebox.com/ab2\.shtml -# ||sextubebox.com/ab1.shtml (easylist.txt: 36381) -.sextubebox.com/ab1\.shtml -# ||sextube.com/lj.js (easylist.txt: 36380) -.sextube.com/lj\.js -# ||sexseeimage.com^*/banner.gif (easylist.txt: 36379) -.sexseeimage.com/.*/banner\.gif -# ||sexmummy.com/footer.htm (easylist.txt: 36378) -.sexmummy.com/footer\.htm -# ||sexmummy.com/float.htm (easylist.txt: 36377) -.sexmummy.com/float\.htm -# ||sexilation.com/wp-content/uploads/2013/01/Untitled-1.jpg (easylist.txt: 36376) -.sexilation.com/wp-content/uploads/2013/01/Untitled-1\.jpg -# ||sex3dtoons.com/im/ (easylist.txt: 36375) -.sex3dtoons.com/im/ -# ||sex3.com/if/ (easylist.txt: 36374) -.sex3.com/if/ -# ||sex.com/images/*/banner_ (easylist.txt: 36373) -.sex.com/images/.*/banner_ -# ||sex-techniques-and-positions.com/banners (easylist.txt: 36372) -.sex-techniques-and-positions.com/banners -# ||sex-techniques-and-positions.com/123ima/ (easylist.txt: 36371) -.sex-techniques-and-positions.com/123ima/ -# ||serveporn.com/images/plug-in.jpg (easylist.txt: 36370) -.serveporn.com/images/plug-in\.jpg -# ||serveporn.com/images/a-en.jpg (easylist.txt: 36369) -.serveporn.com/images/a-en\.jpg -# ||sensualgirls.org/media/banners/ (easylist.txt: 36368) -.sensualgirls.org/media/banners/ -# ||sensualgirls.org/banner/ (easylist.txt: 36367) -.sensualgirls.org/banner/ -# ||seemygf.com/webmasters/ (easylist.txt: 36366) -.seemygf.com/webmasters/ -# ||seaporn.org/scripts/life.js (easylist.txt: 36365) -.seaporn.org/scripts/life\.js -# ||scorevideos.com/banner/ (easylist.txt: 36364) -.scorevideos.com/banner/ -# ||scorehd.com/banner/ (easylist.txt: 36363) -.scorehd.com/banner/ -# ||s.xvideos.com^$subdocument (easylist.txt: 36362) -.s.xvideos.com -# ||rusdosug.com/Fotos/Banners/ (easylist.txt: 36361) -.rusdosug.com/Fotos/Banners/ -# ||rude.com/js/PopupWindow.js (easylist.txt: 36360) -.rude.com/js/PopupWindow\.js -# ||rikotachibana.org/wp-content/banner/ (easylist.txt: 36359) -.rikotachibana.org/wp-content/banner/ -# ||rextube.com/plug/iframe.asp? (easylist.txt: 36358) -.rextube.com/plug/iframe\.asp\? -# ||rev.fapdu.com^ (easylist.txt: 36357) -.rev.fapdu.com -# ||redtubefiles.com^*/skins/ (easylist.txt: 36356) -.redtubefiles.com/.*/skins/ -# ||redtubefiles.com^*/banner/ (easylist.txt: 36355) -.redtubefiles.com/.*/banner/ -# ||redtube.com^*/banner/ (easylist.txt: 36354) -.redtube.com/.*/banner/ -# ||redtube.com^$subdocument,~third-party (easylist.txt: 36353) -.redtube.com -# ||redtube.com/wierd/ (easylist.txt: 36352) -.redtube.com/wierd/ -# ||redtube.com/sexychicks/ (easylist.txt: 36351) -.redtube.com/sexychicks/ -# ||redtube.com/nymphos/ (easylist.txt: 36350) -.redtube.com/nymphos/ -# ||redtube.com/bestporn/ (easylist.txt: 36349) -.redtube.com/bestporn/ -# ||redtube.com/barelylegal/ (easylist.txt: 36348) -.redtube.com/barelylegal/ -# ||redtube.cc/images/bongacams.png (easylist.txt: 36347) -.redtube.cc/images/bongacams\.png -# ||realhomesex.net/pop/ (easylist.txt: 36346) -.realhomesex.net/pop/ -# ||realhomesex.net/floater.js (easylist.txt: 36345) -.realhomesex.net/floater\.js -# ||realhomesex.net/ae/$subdocument (easylist.txt: 36344) -.realhomesex.net/ae/ -# ||realhomesex.net/*.html$subdocument (easylist.txt: 36343) -.realhomesex.net/.*\.html -# ||realgfporn.com/js/realgfporn.js (easylist.txt: 36342) -.realgfporn.com/js/realgfporn\.js -# ||realgfporn.com/js/popall.js (easylist.txt: 36341) -.realgfporn.com/js/popall\.js -# ||rampant.tv/images/sexypics/ (easylist.txt: 36340) -.rampant.tv/images/sexypics/ -# ||raincoatreviews.com/images/banners/ (easylist.txt: 36339) -.raincoatreviews.com/images/banners/ -# ||r.radikal.ru^ (easylist.txt: 36337) -.r.radikal.ru -# ||pwpwpoker.com/images/banners/ (easylist.txt: 36336) -.pwpwpoker.com/images/banners/ -# ||pwpwpoker.com/images/*/strip_poker_ (easylist.txt: 36335) -.pwpwpoker.com/images/.*/strip_poker_ -# ||puteros.com/publisecciones/ (easylist.txt: 36334) -.puteros.com/publisecciones/ -# ||putascaseiras.com/botao/ (easylist.txt: 36333) -.putascaseiras.com/botao/ -# ||purpleporno.com/pop*.js (easylist.txt: 36332) -.purpleporno.com/pop.*\.js -# ||purepornvids.com/randomadseb. (easylist.txt: 36331) -.purepornvids.com/randomadseb\. -# ||purelynsfw.com^*/banners/ (easylist.txt: 36330) -.purelynsfw.com/.*/banners/ -# ||pureandsexy.org/banner/ (easylist.txt: 36329) -.pureandsexy.org/banner/ -# ||pr-static.tnaflix.com^ (easylist.txt: 36328) -.pr-static.tnaflix.com -# ||pr-static.empflix.com^ (easylist.txt: 36327) -.pr-static.empflix.com -# ||pornxs.com/js/files/jasminNew (easylist.txt: 36326) -.pornxs.com/js/files/jasminNew -# ||pornwikileaks.com/adultdvd.com.jpg (easylist.txt: 36325) -.pornwikileaks.com/adultdvd\.com\.jpg -# ||pornvideoxo.com^$subdocument,~third-party (easylist.txt: 36324) -.pornvideoxo.com -# ||pornup.me/js/pp.js (easylist.txt: 36323) -.pornup.me/js/pp\.js -# ||porntube.com/ads| (easylist.txt: 36322) -.porntube.com/ads$ -# ||porntalk.com/rec/ (easylist.txt: 36321) -.porntalk.com/rec/ -# ||porntalk.com/img/banners/ (easylist.txt: 36320) -.porntalk.com/img/banners/ -# ||pornstreet.com/siteunder.js (easylist.txt: 36319) -.pornstreet.com/siteunder\.js -# ||pornstarterritory.com^*/alsbanner (easylist.txt: 36318) -.pornstarterritory.com/.*/alsbanner -# ||pornstarterritory.com//images/bannernew.jpg (easylist.txt: 36317) -# ||pornstarlabs.com/spons/ (easylist.txt: 36316) -.pornstarlabs.com/spons/ -# ||pornslash.com/images/pr.jpg (easylist.txt: 36315) -.pornslash.com/images/pr\.jpg -# ||pornslash.com/images/downicon.png (easylist.txt: 36314) -.pornslash.com/images/downicon\.png -# ||pornslash.com/images/cbt.gif (easylist.txt: 36313) -.pornslash.com/images/cbt\.gif -# ||pornslash.com/images/cbside.gif (easylist.txt: 36312) -.pornslash.com/images/cbside\.gif -# ||pornslash.com/images/a.gif (easylist.txt: 36311) -.pornslash.com/images/a\.gif -# ||pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia*.js (easylist.txt: 36310) -.pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharingnew/$subdocument,~third-party (easylist.txt: 36309) -.pornsharing.com/App_Themes/pornsharingnew/ -# ||pornsharing.com/App_Themes/pornsharianew/js/adppornsharia*.js (easylist.txt: 36308) -.pornsharing.com/App_Themes/pornsharianew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharianew/$subdocument,~third-party (easylist.txt: 36307) -.pornsharing.com/App_Themes/pornsharianew/ -# ||pornsharia.com^*/js/pcin.js (easylist.txt: 36306) -.pornsharia.com/.*/js/pcin\.js -# ||pornsharia.com^*/exo- (easylist.txt: 36305) -.pornsharia.com/.*/exo- -# ||pornsharia.com^*/adppornsharia.js (easylist.txt: 36304) -.pornsharia.com/.*/adppornsharia\.js -# ||pornsharia.com/Images/Sponsors/ (easylist.txt: 36303) -.pornsharia.com/Images/Sponsors/ -# ||pornshare.biz/2.js (easylist.txt: 36302) -.pornshare.biz/2\.js -# ||pornshare.biz/1.js (easylist.txt: 36301) -.pornshare.biz/1\.js -# ||pornreleasez.com/prpop.js (easylist.txt: 36300) -.pornreleasez.com/prpop\.js -# ||pornper.com^*/pp.js (easylist.txt: 36299) -.pornper.com/.*/pp\.js -# ||pornper.com/mlr/ (easylist.txt: 36298) -.pornper.com/mlr/ -# ||pornoxo.com/tradethumbs/ (easylist.txt: 36297) -.pornoxo.com/tradethumbs/ -# ||pornoxo.com/pxo/$subdocument (easylist.txt: 36296) -.pornoxo.com/pxo/ -# ||pornosexxxtits.com/rec/ (easylist.txt: 36295) -.pornosexxxtits.com/rec/ -# ||pornorips.com^*/rotate*.php (easylist.txt: 36294) -.pornorips.com/.*/rotate.*\.php -# ||pornorips.com^*/rda.js (easylist.txt: 36293) -.pornorips.com/.*/rda\.js -# ||pornorips.com/hwpop.js (easylist.txt: 36292) -.pornorips.com/hwpop\.js -# ||pornomovies.com/pop/ (easylist.txt: 36291) -.pornomovies.com/pop/ -# ||pornomovies.com/js/1/login_bonus (easylist.txt: 36290) -.pornomovies.com/js/1/login_bonus -# ||pornoinside.com/efpop.js (easylist.txt: 36289) -.pornoinside.com/efpop\.js -# ||pornoid.com/pornoid_html/ (easylist.txt: 36288) -.pornoid.com/pornoid_html/ -# ||pornoid.com/js/adppornoid (easylist.txt: 36287) -.pornoid.com/js/adppornoid -# ||pornoid.com/iframes/bottom (easylist.txt: 36286) -.pornoid.com/iframes/bottom -# ||pornoid.com/contents/content_sources/ (easylist.txt: 36285) -.pornoid.com/contents/content_sources/ -# ||pornnavigate.com/feeds/delivery.php? (easylist.txt: 36284) -.pornnavigate.com/feeds/delivery\.php\? -# ||pornmade.com/images/cb (easylist.txt: 36283) -.pornmade.com/images/cb -# ||pornmade.com/images/az.gif (easylist.txt: 36282) -.pornmade.com/images/az\.gif -# ||pornmade.com/images/404vz.gif (easylist.txt: 36281) -.pornmade.com/images/404vz\.gif -# ||pornizer.com/_Themes/javascript/cts.js? (easylist.txt: 36280) -.pornizer.com/_Themes/javascript/cts\.js\? -# ||pornhub.phncdn.com/misc/xml/preroll.xml (easylist.txt: 36279) -.pornhub.phncdn.com/misc/xml/preroll\.xml -# ||pornhub.phncdn.com/images/campaign-backgrounds/ (easylist.txt: 36278) -.pornhub.phncdn.com/images/campaign-backgrounds/ -# ||pornhub.com/pics/latest/$xmlhttprequest (easylist.txt: 36277) -.pornhub.com/pics/latest/ -# ||pornhub.com/jpg/ (easylist.txt: 36276) -.pornhub.com/jpg/ -# ||pornhub.com/front/alternative/ (easylist.txt: 36275) -.pornhub.com/front/alternative/ -# ||pornhub.com/channels/pay/ (easylist.txt: 36274) -.pornhub.com/channels/pay/ -# ||pornhub.com/catagories/costume/ (easylist.txt: 36273) -.pornhub.com/catagories/costume/ -# ||pornfanplace.com/rec/ (easylist.txt: 36272) -.pornfanplace.com/rec/ -# ||pornfanplace.com/js/pops. (easylist.txt: 36271) -.pornfanplace.com/js/pops\. -# ||pornerbros.com/rec/$subdocument (easylist.txt: 36270) -.pornerbros.com/rec/ -# ||pornerbros.com/p_bnrs/ (easylist.txt: 36269) -.pornerbros.com/p_bnrs/ -# ||porncor.com/sitelist.php (easylist.txt: 36268) -.porncor.com/sitelist\.php -# ||pornbus.org/includes/js/layer.js (easylist.txt: 36267) -.pornbus.org/includes/js/layer\.js -# ||pornbus.org/includes/js/exa.js (easylist.txt: 36266) -.pornbus.org/includes/js/exa\.js -# ||pornbus.org/includes/js/ex.js (easylist.txt: 36265) -.pornbus.org/includes/js/ex\.js -# ||pornbus.org/includes/js/cat.js (easylist.txt: 36264) -.pornbus.org/includes/js/cat\.js -# ||pornbus.org/includes/js/bgcont.js (easylist.txt: 36263) -.pornbus.org/includes/js/bgcont\.js -# ||pornbb.org/images/rotation/$image (easylist.txt: 36262) -.pornbb.org/images/rotation/ -# ||pornbb.org/adsnov. (easylist.txt: 36261) -.pornbb.org/adsnov\. -# ||pornbay.org/popup.js (easylist.txt: 36260) -.pornbay.org/popup\.js -# ||pornbanana.com/pornbanana/deals/ (easylist.txt: 36259) -.pornbanana.com/pornbanana/deals/ -# ||pornarchive.net/images/cb (easylist.txt: 36258) -.pornarchive.net/images/cb -# ||pornalized.com/pornalized_html/closetoplay_ (easylist.txt: 36257) -.pornalized.com/pornalized_html/closetoplay_ -# ||pornalized.com/js/adppornalized5.js (easylist.txt: 36256) -.pornalized.com/js/adppornalized5\.js -# ||pornalized.com/contents/content_sources/ (easylist.txt: 36255) -.pornalized.com/contents/content_sources/ -# ||porn8x.net/js/popup.js (easylist.txt: 36254) -.porn8x.net/js/popup\.js -# ||porn8x.net/js/outtrade.js (easylist.txt: 36253) -.porn8x.net/js/outtrade\.js -# ||porn4down.com^*/ryuvuong.gif (easylist.txt: 36252) -.porn4down.com/.*/ryuvuong\.gif -# ||porn.com/js/pu.js (easylist.txt: 36251) -.porn.com/js/pu\.js -# ||porn.com/assets/partner_ (easylist.txt: 36250) -.porn.com/assets/partner_ -# ||porn-w.org/images/zevera.png (easylist.txt: 36249) -.porn-w.org/images/zevera\.png -# ||porn-w.org/images/cosy/ (easylist.txt: 36248) -.porn-w.org/images/cosy/ -# ||porn-w.org/images/chs.gif (easylist.txt: 36247) -.porn-w.org/images/chs\.gif -# ||pontoperdido.com/js/webmessenger.js (easylist.txt: 36246) -.pontoperdido.com/js/webmessenger\.js -# ||poguide.com/cdn/images/ad*.gif (easylist.txt: 36245) -.poguide.com/cdn/images/ad.*\.gif -# ||pnet.co.za/jobsearch_iframe_ (easylist.txt: 36244) -.pnet.co.za/jobsearch_iframe_ -# ||plumper6.com/images/ban_pp.jpg (easylist.txt: 36243) -.plumper6.com/images/ban_pp\.jpg -# ||playgirl.com/pg/media/prolong_ad.png (easylist.txt: 36242) -.playgirl.com/pg/media/prolong_ad\.png -# ||planetsuzy.org/kakiframe/ (easylist.txt: 36241) -.planetsuzy.org/kakiframe/ -# ||placepictures.com/Frame.aspx? (easylist.txt: 36240) -.placepictures.com/Frame\.aspx\? -# ||pixroute.com/spl.js (easylist.txt: 36239) -.pixroute.com/spl\.js -# ||pixhost.org/js/jquery_show2.js (easylist.txt: 36238) -.pixhost.org/js/jquery_show2\.js -# ||pixhost.org/image/rotate/ (easylist.txt: 36237) -.pixhost.org/image/rotate/ -# ||pixhost.org/image/cu/ (easylist.txt: 36236) -.pixhost.org/image/cu/ -# ||pinkrod.com/pinkrod_html/ (easylist.txt: 36235) -.pinkrod.com/pinkrod_html/ -# ||pinkrod.com/js/adppinkrod (easylist.txt: 36234) -.pinkrod.com/js/adppinkrod -# ||pinkrod.com/iframes/ (easylist.txt: 36233) -.pinkrod.com/iframes/ -# ||pinkems.com/images/buttons/ (easylist.txt: 36232) -.pinkems.com/images/buttons/ -# ||pink-o-rama.com/Teendreams (easylist.txt: 36231) -.pink-o-rama.com/Teendreams -# ||pink-o-rama.com/Royalcash/ (easylist.txt: 36230) -.pink-o-rama.com/Royalcash/ -# ||pink-o-rama.com/Privatecash (easylist.txt: 36229) -.pink-o-rama.com/Privatecash -# ||pink-o-rama.com/Pimproll/ (easylist.txt: 36228) -.pink-o-rama.com/Pimproll/ -# ||pink-o-rama.com/Nscash (easylist.txt: 36227) -.pink-o-rama.com/Nscash -# ||pink-o-rama.com/Longbucks/ (easylist.txt: 36226) -.pink-o-rama.com/Longbucks/ -# ||pink-o-rama.com/Karups (easylist.txt: 36225) -.pink-o-rama.com/Karups -# ||pink-o-rama.com/Gammae (easylist.txt: 36224) -.pink-o-rama.com/Gammae -# ||pink-o-rama.com/Fuckyou (easylist.txt: 36223) -.pink-o-rama.com/Fuckyou -# ||pink-o-rama.com/Fetishhits (easylist.txt: 36222) -.pink-o-rama.com/Fetishhits -# ||pink-o-rama.com/Brothersincash (easylist.txt: 36221) -.pink-o-rama.com/Brothersincash -# ||pink-o-rama.com/Blazingbucks (easylist.txt: 36220) -.pink-o-rama.com/Blazingbucks -# ||pimpandhost.com/static/i/*-pah.jpg (easylist.txt: 36219) -.pimpandhost.com/static/i/.*-pah\.jpg -# ||pimpandhost.com/static/html/iframe.html (easylist.txt: 36218) -.pimpandhost.com/static/html/iframe\.html -# ||pimpandhost.com/images/pah-download.gif (easylist.txt: 36217) -.pimpandhost.com/images/pah-download\.gif -# ||picxme.com/rec/ (easylist.txt: 36216) -.picxme.com/rec/ -# ||picxme.com/js/pops. (easylist.txt: 36215) -.picxme.com/js/pops\. -# ||picturevip.com/imagehost/top_banners.html (easylist.txt: 36214) -.picturevip.com/imagehost/top_banners\.html -# ||picturescream.com/top_banners.html (easylist.txt: 36213) -.picturescream.com/top_banners\.html -# ||picturescream.com/porn_movies.gif (easylist.txt: 36212) -.picturescream.com/porn_movies\.gif -# ||picturedip.com/windowfiles/dhtmlwindow.css (easylist.txt: 36211) -.picturedip.com/windowfiles/dhtmlwindow\.css -# ||picturedip.com/modalfiles/modal.js (easylist.txt: 36210) -.picturedip.com/modalfiles/modal\.js -# ||picsexhub.com/rec/ (easylist.txt: 36209) -.picsexhub.com/rec/ -# ||picsexhub.com/js/pops2. (easylist.txt: 36208) -.picsexhub.com/js/pops2\. -# ||picsexhub.com/js/pops. (easylist.txt: 36207) -.picsexhub.com/js/pops\. -# ||picp2.com/img/putv (easylist.txt: 36206) -.picp2.com/img/putv -# ||picleet.com/inter_picleet.js (easylist.txt: 36205) -.picleet.com/inter_picleet\.js -# ||pichunter.com/deals/ (easylist.txt: 36204) -.pichunter.com/deals/ -# ||pichunter.com/creatives/ (easylist.txt: 36203) -.pichunter.com/creatives/ -# ||phun.org/phun/gfx/banner/ (easylist.txt: 36202) -.phun.org/phun/gfx/banner/ -# ||phncdn.com/mobile/js/interstitial-min.js? (easylist.txt: 36201) -.phncdn.com/mobile/js/interstitial-min\.js\? -# ||phncdn.com/images/skin/ (easylist.txt: 36200) -.phncdn.com/images/skin/ -# ||phncdn.com/images/premium_ (easylist.txt: 36199) -.phncdn.com/images/premium_ -# ||phncdn.com/images/premium/ (easylist.txt: 36198) -.phncdn.com/images/premium/ -# ||phncdn.com/images/banners/ (easylist.txt: 36197) -.phncdn.com/images/banners/ -# ||phncdn.com/images/*_skin_ (easylist.txt: 36196) -.phncdn.com/images/.*_skin_ -# ||phncdn.com/images/*_skin. (easylist.txt: 36195) -.phncdn.com/images/.*_skin\. -# ||phncdn.com/iframe (easylist.txt: 36194) -.phncdn.com/iframe -# ||perfectgirls.net/b/ (easylist.txt: 36190) -.perfectgirls.net/b/ -# ||pastime.biz^*/personalad*.jpg (easylist.txt: 36189) -.pastime.biz/.*/personalad.*\.jpg -# ||pastime.biz/images/interracial-porn.gif (easylist.txt: 36188) -.pastime.biz/images/interracial-porn\.gif -# ||pastime.biz/images/iloveint.gif (easylist.txt: 36187) -.pastime.biz/images/iloveint\.gif -# ||partners.xhamster.com^ (easylist.txt: 36186) -.partners.xhamster.com -# ||oporn.com/js/wspop.js (easylist.txt: 36185) -.oporn.com/js/wspop\.js -# ||openjavascript.com/jtools/jads. (easylist.txt: 36184) -.openjavascript.com/jtools/jads\. -# ||onlinestars.net/br/ (easylist.txt: 36183) -.onlinestars.net/br/ -# ||onlinestars.net/ban/ (easylist.txt: 36182) -.onlinestars.net/ban/ -# ||onhercam.tv^*/banners/ (easylist.txt: 36181) -.onhercam.tv/.*/banners/ -# ||olderhill.com^*.html| (easylist.txt: 36180) -.olderhill.com/.*\.html$ -# ||olderhill.com/ubr.js (easylist.txt: 36179) -.olderhill.com/ubr\.js -# ||oasisactive.com^*/oasis-widget.html (easylist.txt: 36178) -.oasisactive.com/.*/oasis-widget\.html -# ||nuvid.com/videos_banner.html (easylist.txt: 36177) -.nuvid.com/videos_banner\.html -# ||nudography.com/photos/banners/ (easylist.txt: 36176) -.nudography.com/photos/banners/ -# ||nudevista.com^*/nv-com.min.js (easylist.txt: 36175) -.nudevista.com/.*/nv-com\.min\.js -# ||nudevista.com/_/teasernet (easylist.txt: 36174) -.nudevista.com/_/teasernet -# ||nudevista.com/_/pp. (easylist.txt: 36173) -.nudevista.com/_/pp\. -# ||nudevista.com/_/exo_ (easylist.txt: 36172) -.nudevista.com/_/exo_ -# ||nudebabes.ws/galleries/banners/ (easylist.txt: 36171) -.nudebabes.ws/galleries/banners/ -# ||nude.hu/banners/ (easylist.txt: 36170) -.nude.hu/banners/ -# ||ns4w.org/images/vod_ (easylist.txt: 36169) -.ns4w.org/images/vod_ -# ||ns4w.org/images/promo/ (easylist.txt: 36168) -.ns4w.org/images/promo/ -# ||ns4w.org/gsm.js (easylist.txt: 36167) -.ns4w.org/gsm\.js -# ||novoporn.com/imagelinks/ (easylist.txt: 36166) -.novoporn.com/imagelinks/ -# ||nonktube.com/popembed.js (easylist.txt: 36165) -.nonktube.com/popembed\.js -# ||nonktube.com/nuevox/midroll.php? (easylist.txt: 36164) -.nonktube.com/nuevox/midroll\.php\? -# ||nonktube.com/brazzers/ (easylist.txt: 36163) -.nonktube.com/brazzers/ -# ||niceyoungteens.com/mct.js (easylist.txt: 36162) -.niceyoungteens.com/mct\.js -# ||niceyoungteens.com/ero-advertising (easylist.txt: 36161) -.niceyoungteens.com/ero-advertising -# ||newcelebnipslips.com/nipslipop.js (easylist.txt: 36160) -.newcelebnipslips.com/nipslipop\.js -# ||netronline.com/Include/burst.js (easylist.txt: 36159) -.netronline.com/Include/burst\.js -# ||netasdesalim.com/js/netas (easylist.txt: 36158) -.netasdesalim.com/js/netas -# ||naughtyblog.org/pr1pop.js (easylist.txt: 36157) -.naughtyblog.org/pr1pop\.js -# ||naughty.com/js/popJava.js (easylist.txt: 36156) -.naughty.com/js/popJava\.js -# ||namethatpornstar.com/topphotos/ (easylist.txt: 36155) -.namethatpornstar.com/topphotos/ -# ||naked-sluts.us/prpop.js (easylist.txt: 36154) -.naked-sluts.us/prpop\.js -# ||myslavegirl.org/follow/go.js (easylist.txt: 36153) -.myslavegirl.org/follow/go\.js -# ||myhentai.tv/popsstuff. (easylist.txt: 36152) -.myhentai.tv/popsstuff\. -# ||mygirlfriendvids.net/js/popall1.js (easylist.txt: 36151) -.mygirlfriendvids.net/js/popall1\.js -# ||mydailytube.com/nothing/ (easylist.txt: 36150) -.mydailytube.com/nothing/ -# ||my-pornbase.com/banner/ (easylist.txt: 36149) -.my-pornbase.com/banner/ -# ||mrstiff.com/view/movie/finished/ (easylist.txt: 36148) -.mrstiff.com/view/movie/finished/ -# ||mrstiff.com/view/movie/bar/ (easylist.txt: 36147) -.mrstiff.com/view/movie/bar/ -# ||mrstiff.com/view/context/ (easylist.txt: 36146) -.mrstiff.com/view/context/ -# ||mrstiff.com/uploads/paysite/ (easylist.txt: 36145) -.mrstiff.com/uploads/paysite/ -# ||mrskin.com/data/mrskincash/$third-party (easylist.txt: 36144) -.mrskin.com/data/mrskincash/ -# ||mp3musicengine.com/images/freewatchtv1. (easylist.txt: 36143) -.mp3musicengine.com/images/freewatchtv1\. -# ||mp3musicengine.com/bearshare_logo. (easylist.txt: 36142) -.mp3musicengine.com/bearshare_logo\. -# ||motherman.com/*.html (easylist.txt: 36141) -.motherman.com/.*\.html -# ||motherless.com/images/banners/ (easylist.txt: 36140) -.motherless.com/images/banners/ -# ||morebabes.to/morebabes.js (easylist.txt: 36139) -.morebabes.to/morebabes\.js -# ||morazzia.com^*/banners/ (easylist.txt: 36138) -.morazzia.com/.*/banners/ -# ||monstertube.com/images/vjoin_ (easylist.txt: 36137) -.monstertube.com/images/vjoin_ -# ||monstertube.com/images/vjoin. (easylist.txt: 36136) -.monstertube.com/images/vjoin\. -# ||monstertube.com/images/bottom-features.jpg (easylist.txt: 36135) -.monstertube.com/images/bottom-features\.jpg -# ||monstertube.com/images/access_ (easylist.txt: 36134) -.monstertube.com/images/access_ -# ||monstercockz.com/eds/ (easylist.txt: 36133) -.monstercockz.com/eds/ -# ||monstercockz.com/cont/ (easylist.txt: 36132) -.monstercockz.com/cont/ -# ||mobilepornmovies.com/images/banners/ (easylist.txt: 36131) -.mobilepornmovies.com/images/banners/ -# ||miragepics.com/images/11361497289209202613.jpg (easylist.txt: 36130) -.miragepics.com/images/11361497289209202613\.jpg -# ||milkmanbook.com/dat/promo/ (easylist.txt: 36129) -.milkmanbook.com/dat/promo/ -# ||merb.ca/banner/ (easylist.txt: 36128) -.merb.ca/banner/ -# ||meendo.com/promos/ (easylist.txt: 36127) -.meendo.com/promos/ -# ||media1.realgfporn.com^$subdocument (easylist.txt: 36126) -.media1.realgfporn.com -# ||meatspin.com/images/fl.gif (easylist.txt: 36125) -.meatspin.com/images/fl\.gif -# ||meatspin.com/facebookchatlist.php (easylist.txt: 36124) -.meatspin.com/facebookchatlist\.php -# ||maxjizztube.com/downloadfreemovies.php (easylist.txt: 36123) -.maxjizztube.com/downloadfreemovies\.php -# ||matureworld.ws/images/banners/ (easylist.txt: 36122) -.matureworld.ws/images/banners/ -# ||mallandrinhas.net/flutuante (easylist.txt: 36121) -.mallandrinhas.net/flutuante -# ||madthumbs.com/madthumbs/sponsor/ (easylist.txt: 36120) -.madthumbs.com/madthumbs/sponsor/ -# ||madmovs.com/rec/ (easylist.txt: 36119) -.madmovs.com/rec/ -# ||m2.xhamster.com^ (easylist.txt: 36118) -.m2.xhamster.com -# ||lw1.cdmediaworld.com^ (easylist.txt: 36117) -.lw1.cdmediaworld.com -# ||lukeisback.com^*/250.gif (easylist.txt: 36116) -.lukeisback.com/.*/250\.gif -# ||lukeisback.com/images/boxes/ (easylist.txt: 36115) -.lukeisback.com/images/boxes/ -# ||lucidsponge.pl/pop_ (easylist.txt: 36114) -.lucidsponge.pl/pop_ -# ||lubetube.com/js/cspop.js (easylist.txt: 36113) -.lubetube.com/js/cspop\.js -# ||livedoor.jp^*/bnr/bnr- (easylist.txt: 36112) -.livedoor.jp/.*/bnr/bnr- -# ||liveandchat.tv/bana-/ (easylist.txt: 36111) -.liveandchat.tv/bana-/ -# ||live-porn.tv/adds/ (easylist.txt: 36110) -.live-porn.tv/adds/ -# ||literotica.com/images/lit_banners/ (easylist.txt: 36109) -.literotica.com/images/lit_banners/ -# ||literotica.com/images/banners/ (easylist.txt: 36108) -.literotica.com/images/banners/ -# ||linksave.in/fopen.html (easylist.txt: 36107) -.linksave.in/fopen\.html -# ||lesbian.hu/banners/ (easylist.txt: 36106) -.lesbian.hu/banners/ -# ||laxtime.com/rotation/ (easylist.txt: 36105) -.laxtime.com/rotation/ -# ||kyte.tv/flash/MarbachAdvertsDartInstream. (easylist.txt: 36104) -.kyte.tv/flash/MarbachAdvertsDartInstream\. -# ||kuntfutube.com/kellyban.gif (easylist.txt: 36103) -.kuntfutube.com/kellyban\.gif -# ||kuiken.co/inc/ex.js (easylist.txt: 36102) -.kuiken.co/inc/ex\.js -# ||krasview.ru/resource/a.php (easylist.txt: 36101) -.krasview.ru/resource/a\.php -# ||krasview.ru/content/$object (easylist.txt: 36100) -.krasview.ru/content/ -# ||konachan.com/images/bam/ (easylist.txt: 36099) -.konachan.com/images/bam/ -# ||kindgirls.com/banners2/ (easylist.txt: 36098) -.kindgirls.com/banners2/ -# ||keezmovies.com/iframe.html? (easylist.txt: 36097) -.keezmovies.com/iframe\.html\? -# ||kaotic.com^*/popnew.js (easylist.txt: 36096) -.kaotic.com/.*/popnew\.js -# ||justporno.tv/ad/ (easylist.txt: 36095) -.justporno.tv/ad/ -# ||julesjordanvideo.com/flash/$object (easylist.txt: 36094) -.julesjordanvideo.com/flash/ -# ||javsin.com/vip.html (easylist.txt: 36093) -.javsin.com/vip\.html -# ||javporn.in/clicunder.js (easylist.txt: 36092) -.javporn.in/clicunder\.js -# ||jav-porn.net/js/popup.js (easylist.txt: 36091) -.jav-porn.net/js/popup\.js -# ||jav-porn.net/js/popout.js (easylist.txt: 36090) -.jav-porn.net/js/popout\.js -# ||jailbaitgallery.com/banners300/ (easylist.txt: 36089) -.jailbaitgallery.com/banners300/ -# ||iseekgirls.com^*/banners/ (easylist.txt: 36088) -.iseekgirls.com/.*/banners/ -# ||iseekgirls.com/rotating_ (easylist.txt: 36087) -.iseekgirls.com/rotating_ -# ||iseekgirls.com/js/fabulous.js (easylist.txt: 36086) -.iseekgirls.com/js/fabulous\.js -# ||iseekgirls.com/g/pandoracash/ (easylist.txt: 36085) -.iseekgirls.com/g/pandoracash/ -# ||intporn.org/scripts/asma.js (easylist.txt: 36084) -.intporn.org/scripts/asma\.js -# ||intporn.com^*/asma.js (easylist.txt: 36083) -.intporn.com/.*/asma\.js -# ||intporn.com^*/21s.js (easylist.txt: 36082) -.intporn.com/.*/21s\.js -# ||indexxx.com^*/banners/ (easylist.txt: 36081) -.indexxx.com/.*/banners/ -# ||imperia-of-hentai.net/banner/ (easylist.txt: 36080) -.imperia-of-hentai.net/banner/ -# ||imgwet.com/aa/ (easylist.txt: 36079) -.imgwet.com/aa/ -# ||imghost.us.to/xxx/content/system/js/iframe.html (easylist.txt: 36078) -.imghost.us.to/xxx/content/system/js/iframe\.html -# ||imgflare.com^*/splash.php (easylist.txt: 36077) -.imgflare.com/.*/splash\.php -# ||imgflare.com/exo.html (easylist.txt: 36076) -.imgflare.com/exo\.html -# ||imgbabes.com^*/splash.php (easylist.txt: 36075) -.imgbabes.com/.*/splash\.php -# ||imgbabes.com/ja.html (easylist.txt: 36074) -.imgbabes.com/ja\.html -# ||imgbabes.com/ero-foo.html (easylist.txt: 36073) -.imgbabes.com/ero-foo\.html -# ||imgbabes.com/element.js (easylist.txt: 36072) -.imgbabes.com/element\.js -# ||imagetwist.com/lj.js (easylist.txt: 36071) -.imagetwist.com/lj\.js -# ||imagetwist.com/imagetwist*.js (easylist.txt: 36070) -.imagetwist.com/imagetwist.*\.js -# ||imagesnake.com/includes/js/pops.js (easylist.txt: 36069) -.imagesnake.com/includes/js/pops\.js -# ||imagesnake.com/includes/js/layer.js (easylist.txt: 36068) -.imagesnake.com/includes/js/layer\.js -# ||imagesnake.com/includes/js/cat.js (easylist.txt: 36067) -.imagesnake.com/includes/js/cat\.js -# ||imageshack.us^*/bannng.jpg (easylist.txt: 36066) -.imageshack.us/.*/bannng\.jpg -# ||imagepost.com/stuff/ (easylist.txt: 36065) -.imagepost.com/stuff/ -# ||imagepost.com/includes/dating/ (easylist.txt: 36064) -.imagepost.com/includes/dating/ -# ||imageporter.com/smate.html (easylist.txt: 36063) -.imageporter.com/smate\.html -# ||imageporter.com/ro-7bgsd.html (easylist.txt: 36062) -.imageporter.com/ro-7bgsd\.html -# ||imagehyper.com/prom/ (easylist.txt: 36061) -.imagehyper.com/prom/ -# ||imagefruit.com^*/pops.js (easylist.txt: 36060) -.imagefruit.com/.*/pops\.js -# ||imagedunk.com^*_imagedunk.js (easylist.txt: 36059) -.imagedunk.com/.*_imagedunk\.js -# ||imagecarry.com/top (easylist.txt: 36058) -.imagecarry.com/top -# ||imagecarry.com/down (easylist.txt: 36057) -.imagecarry.com/down -# ||imagearn.com/img/picBanner.swf (easylist.txt: 36056) -.imagearn.com/img/picBanner\.swf -# ||hustler.com/backout-script/ (easylist.txt: 36055) -.hustler.com/backout-script/ -# ||hungangels.com/vboard/friends/ (easylist.txt: 36054) -.hungangels.com/vboard/friends/ -# ||hottubeclips.com/stxt/banners/ (easylist.txt: 36053) -.hottubeclips.com/stxt/banners/ -# ||hottestgirlsofmyspace.net/smallpics/fb-150x150.gif (easylist.txt: 36052) -.hottestgirlsofmyspace.net/smallpics/fb-150x150\.gif -# ||hottestgirlsofmyspace.net/smallpics/300x200b.gif (easylist.txt: 36051) -.hottestgirlsofmyspace.net/smallpics/300x200b\.gif -# ||hotshame.com/js/adphotshame (easylist.txt: 36050) -.hotshame.com/js/adphotshame -# ||hotshame.com/iframes/ (easylist.txt: 36049) -.hotshame.com/iframes/ -# ||hotshame.com/hotshame_html/ (easylist.txt: 36048) -.hotshame.com/hotshame_html/ -# ||hotsashagrey.com^*/throated.jpg (easylist.txt: 36047) -.hotsashagrey.com/.*/throated\.jpg -# ||hotsashagrey.com^*/squ-fantasygirlsasha-001.gif (easylist.txt: 36046) -.hotsashagrey.com/.*/squ-fantasygirlsasha-001\.gif -# ||hotsashagrey.com^*/PeterNorth-800x350.jpg (easylist.txt: 36045) -.hotsashagrey.com/.*/PeterNorth-800x350\.jpg -# ||hotsashagrey.com^*/New_Sensations-1091.gif (easylist.txt: 36044) -.hotsashagrey.com/.*/New_Sensations-1091\.gif -# ||hotsashagrey.com^*/Anabolic.jpg (easylist.txt: 36043) -.hotsashagrey.com/.*/Anabolic\.jpg -# ||hotkellymadison.com^*/pf_640x100.jpg (easylist.txt: 36042) -.hotkellymadison.com/.*/pf_640x100\.jpg -# ||hotkellymadison.com^*/km_300x300.gif (easylist.txt: 36041) -.hotkellymadison.com/.*/km_300x300\.gif -# ||hotkellymadison.com^*/kelly4.jpg (easylist.txt: 36040) -.hotkellymadison.com/.*/kelly4\.jpg -# ||hotkellymadison.com^*/kelly1.jpg (easylist.txt: 36039) -.hotkellymadison.com/.*/kelly1\.jpg -# ||hotdylanryder.com^*/wicked.gif (easylist.txt: 36038) -.hotdylanryder.com/.*/wicked\.gif -# ||hotdylanryder.com^*/pf_640x100.jpg (easylist.txt: 36037) -.hotdylanryder.com/.*/pf_640x100\.jpg -# ||hotdylanryder.com^*/iframes_174.jpg (easylist.txt: 36036) -.hotdylanryder.com/.*/iframes_174\.jpg -# ||hotdylanryder.com^*/dylan_350x250_01.jpg (easylist.txt: 36035) -.hotdylanryder.com/.*/dylan_350x250_01\.jpg -# ||hotdylanryder.com^*/Big-Tits-Like-Big-Dicks.jpg (easylist.txt: 36034) -.hotdylanryder.com/.*/Big-Tits-Like-Big-Dicks\.jpg -# ||hotdevonmichaels.com^*/wicked.gif (easylist.txt: 36033) -.hotdevonmichaels.com/.*/wicked\.gif -# ||hotdevonmichaels.com^*/streamate2.jpg (easylist.txt: 36032) -.hotdevonmichaels.com/.*/streamate2\.jpg -# ||hotdevonmichaels.com^*/pf_640x1001.jpg (easylist.txt: 36031) -.hotdevonmichaels.com/.*/pf_640x1001\.jpg -# ||hornywhores.net/img/zevera_rec.jpg (easylist.txt: 36030) -.hornywhores.net/img/zevera_rec\.jpg -# ||hornywhores.net/img/double.jpg (easylist.txt: 36029) -.hornywhores.net/img/double\.jpg -# ||hornywhores.net/hw$script (easylist.txt: 36028) -.hornywhores.net/hw -# ||hornygamer.com/images/promo/ (easylist.txt: 36027) -.hornygamer.com/images/promo/ -# ||homeprivatevids.com/banners.shtml (easylist.txt: 36026) -.homeprivatevids.com/banners\.shtml -# ||homeprivatevids.com/banner2.shtml (easylist.txt: 36025) -.homeprivatevids.com/banner2\.shtml -# ||homemademoviez.com^$subdocument (easylist.txt: 36024) -.homemademoviez.com -# ||homegrownfreaks.net/homegfreaks.js (easylist.txt: 36023) -.homegrownfreaks.net/homegfreaks\.js -# ||hollywoodoops.com/img/*banner (easylist.txt: 36022) -.hollywoodoops.com/img/.*banner -# ||hollyscoop.com/sites/*/skins/ (easylist.txt: 36021) -.hollyscoop.com/sites/.*/skins/ -# ||hidefporn.ws/nitro.png (easylist.txt: 36020) -.hidefporn.ws/nitro\.png -# ||hidefporn.ws/img.png (easylist.txt: 36019) -.hidefporn.ws/img\.png -# ||hidefporn.ws/client (easylist.txt: 36018) -.hidefporn.ws/client -# ||hidefporn.ws/055.jpg (easylist.txt: 36017) -.hidefporn.ws/055\.jpg -# ||hidefporn.ws/05.jpg (easylist.txt: 36016) -.hidefporn.ws/05\.jpg -# ||hidefporn.ws/04.jpg (easylist.txt: 36015) -.hidefporn.ws/04\.jpg -# ||hgimg.com/js/beacon. (easylist.txt: 36014) -.hgimg.com/js/beacon\. -# ||heraldnetdailydeal.com/widgets/DailyDealWidget300x250 (easylist.txt: 36013) -.heraldnetdailydeal.com/widgets/DailyDealWidget300x250 -# ||heraldnet.com/section/iFrame_AutosInternetSpecials? (easylist.txt: 36012) -.heraldnet.com/section/iFrame_AutosInternetSpecials\? -# ||hentaistream.com/wp-includes/images/mofos/webcams_ (easylist.txt: 36011) -.hentaistream.com/wp-includes/images/mofos/webcams_ -# ||hentaistream.com/wp-includes/images/bg- (easylist.txt: 36010) -.hentaistream.com/wp-includes/images/bg- -# ||hentaistream.com/out/ (easylist.txt: 36009) -.hentaistream.com/out/ -# ||hentairules.net/pop_$script (easylist.txt: 36008) -.hentairules.net/pop_ -# ||hentai-foundry.com/themes/Hentai/images/hu/hu.jpg (easylist.txt: 36007) -.hentai-foundry.com/themes/Hentai/images/hu/hu\.jpg -# ||hentai-foundry.com/themes/*Banner (easylist.txt: 36006) -.hentai-foundry.com/themes/.*Banner -# ||hentai-foundry.com/themes/*/add$image (easylist.txt: 36005) -.hentai-foundry.com/themes/.*/add -# ||hellporno.com/iframes/ (easylist.txt: 36004) -.hellporno.com/iframes/ -# ||hebus.com/p/hebusx/ (easylist.txt: 36003) -.hebus.com/p/hebusx/ -# ||heavy-r.com/js/imbox.js (easylist.txt: 36002) -.heavy-r.com/js/imbox\.js -# ||heavy-r.com/a/ (easylist.txt: 36001) -.heavy-r.com/a/ -# ||hdzog.com/hdzog.php?t_sid= (easylist.txt: 36000) -.hdzog.com/hdzog\.php\?t_sid= -# ||hdzog.com/contents/cst/ (easylist.txt: 35999) -.hdzog.com/contents/cst/ -# ||hdzog.com/contents/content_sources/ (easylist.txt: 35998) -.hdzog.com/contents/content_sources/ -# ||hdporn.net/images/hd-porn-banner.gif (easylist.txt: 35997) -.hdporn.net/images/hd-porn-banner\.gif -# ||hdporn.in/rec/$subdocument (easylist.txt: 35996) -.hdporn.in/rec/ -# ||hdporn.in/js/pops2. (easylist.txt: 35995) -.hdporn.in/js/pops2\. -# ||hdporn.in/js/focus.*.js (easylist.txt: 35994) -.hdporn.in/js/focus\..*\.js -# ||hdporn.in/images/rec/ (easylist.txt: 35993) -.hdporn.in/images/rec/ -# ||hcomicbook.com^*_banner1.gif (easylist.txt: 35992) -.hcomicbook.com/.*_banner1\.gif -# ||hcomicbook.com/js/hcb-$script (easylist.txt: 35991) -.hcomicbook.com/js/hcb- -# ||hcomicbook.com/banner/ (easylist.txt: 35990) -.hcomicbook.com/banner/ -# ||hclips.com/js/m.js (easylist.txt: 35989) -.hclips.com/js/m\.js -# ||hawaiipornblog.com/post_images/ (easylist.txt: 35988) -.hawaiipornblog.com/post_images/ -# ||hardsextube.com/zone.php (easylist.txt: 35987) -.hardsextube.com/zone\.php -# ||hardsextube.com/testxml.php (easylist.txt: 35986) -.hardsextube.com/testxml\.php -# ||hardsextube.com/preroll/getiton/ (easylist.txt: 35985) -.hardsextube.com/preroll/getiton/ -# ||hardsextube.com/pornstars/$xmlhttprequest (easylist.txt: 35984) -.hardsextube.com/pornstars/ -# ||hardcoresexgif.com/wp-content/msn.js (easylist.txt: 35983) -.hardcoresexgif.com/wp-content/msn\.js -# ||hanksgalleries.com/vg_ad_ (easylist.txt: 35982) -.hanksgalleries.com/vg_ad_ -# ||hanksgalleries.com/stxt_ (easylist.txt: 35981) -.hanksgalleries.com/stxt_ -# ||hanksgalleries.com/galleryimgs/ (easylist.txt: 35980) -.hanksgalleries.com/galleryimgs/ -# ||hanksgalleries.com/gallery- (easylist.txt: 35979) -.hanksgalleries.com/gallery- -# ||hanksgalleries.com/aff- (easylist.txt: 35978) -.hanksgalleries.com/aff- -# ||h2porn.com/contents/content_sources/ (easylist.txt: 35977) -.h2porn.com/contents/content_sources/ -# ||gspcdn.com^*/banners/ (easylist.txt: 35976) -.gspcdn.com/.*/banners/ -# ||grannysexforum.com/filter.php (easylist.txt: 35975) -.grannysexforum.com/filter\.php -# ||gotgayporn.com/Watermarks/ (easylist.txt: 35974) -.gotgayporn.com/Watermarks/ -# ||goldporntube.com/iframes/ (easylist.txt: 35973) -.goldporntube.com/iframes/ -# ||gloryholegirlz.com/images/banners/ (easylist.txt: 35972) -.gloryholegirlz.com/images/banners/ -# ||glamour.cz/banners/ (easylist.txt: 35971) -.glamour.cz/banners/ -# ||girlsofdesire.org/media/banners/ (easylist.txt: 35970) -.girlsofdesire.org/media/banners/ -# ||girlsofdesire.org/banner/ (easylist.txt: 35969) -.girlsofdesire.org/banner/ -# ||girlsnaked.net/gallery/banners/ (easylist.txt: 35968) -.girlsnaked.net/gallery/banners/ -# ||girlsintube.com/images/get-free-server.jpg (easylist.txt: 35967) -.girlsintube.com/images/get-free-server\.jpg -# ||girlsfromprague.eu^*468x (easylist.txt: 35966) -.girlsfromprague.eu/.*468x -# ||girlsfromprague.eu/banners/ (easylist.txt: 35965) -.girlsfromprague.eu/banners/ -# ||girlsfrombudapest.eu/banners/ (easylist.txt: 35964) -.girlsfrombudapest.eu/banners/ -# ||girlfriendvideos.com/pcode.js (easylist.txt: 35963) -.girlfriendvideos.com/pcode\.js -# ||gina-lynn.net/pr4.html (easylist.txt: 35962) -.gina-lynn.net/pr4\.html -# ||ghettotube.com/images/banners/ (easylist.txt: 35961) -.ghettotube.com/images/banners/ -# ||gggtube.com/images/banners/ (easylist.txt: 35960) -.gggtube.com/images/banners/ -# ||gaytube.com/chacha/ (easylist.txt: 35959) -.gaytube.com/chacha/ -# ||gayporntimes.com^*/CockyBoys-July-2012.jpg (easylist.txt: 35958) -.gayporntimes.com/.*/CockyBoys-July-2012\.jpg -# ||gayporntimes.com^*/Bel-Ami-Mick-Lovell-July-2012.jpeg (easylist.txt: 35957) -.gayporntimes.com/.*/Bel-Ami-Mick-Lovell-July-2012\.jpeg -# ||gayporntimes.com/img/GP_Heroes.jpg (easylist.txt: 35956) -.gayporntimes.com/img/GP_Heroes\.jpg -# ||gapeandfist.com/uploads/thumbs/ (easylist.txt: 35955) -.gapeandfist.com/uploads/thumbs/ -# ||gamesofdesire.com/images/banners/ (easylist.txt: 35954) -.gamesofdesire.com/images/banners/ -# ||gals4free.net/images/banners/ (easylist.txt: 35953) -.gals4free.net/images/banners/ -# ||galleries-pornstar.com/thumb_top/ (easylist.txt: 35952) -.galleries-pornstar.com/thumb_top/ -# ||funny-games.biz/banners/ (easylist.txt: 35951) -.funny-games.biz/banners/ -# ||fuckuh.com/pr_ad.swf (easylist.txt: 35950) -.fuckuh.com/pr_ad\.swf -# ||freepornvs.com/im.js (easylist.txt: 35948) -.freepornvs.com/im\.js -# ||freeporninhd.com/images/cbzide. (easylist.txt: 35947) -.freeporninhd.com/images/cbzide\. -# ||freeporninhd.com/images/cbside. (easylist.txt: 35946) -.freeporninhd.com/images/cbside\. -# ||freeporn.to/wpbanner/ (easylist.txt: 35945) -.freeporn.to/wpbanner/ -# ||freeones.com/images/freeones/sidewidget/$image (easylist.txt: 35944) -.freeones.com/images/freeones/sidewidget/ -# ||freeimgup.com/xxx/content/system/js/iframe.html (easylist.txt: 35943) -.freeimgup.com/xxx/content/system/js/iframe\.html -# ||freebunker.com^*/raw.js (easylist.txt: 35942) -.freebunker.com/.*/raw\.js -# ||freebunker.com^*/pops.js (easylist.txt: 35941) -.freebunker.com/.*/pops\.js -# ||freebunker.com^*/oc.js (easylist.txt: 35940) -.freebunker.com/.*/oc\.js -# ||freebunker.com^*/layer.js (easylist.txt: 35939) -.freebunker.com/.*/layer\.js -# ||freebunker.com^*/exa.js (easylist.txt: 35938) -.freebunker.com/.*/exa\.js -# ||freebunker.com^*/ex.js (easylist.txt: 35937) -.freebunker.com/.*/ex\.js -# ||freebunker.com/includes/js/cat.js (easylist.txt: 35936) -.freebunker.com/includes/js/cat\.js -# ||free-celebrity-tube.com/js/freeceleb.js (easylist.txt: 35935) -.free-celebrity-tube.com/js/freeceleb\.js -# ||floppy-tits.com/iframes/ (easylist.txt: 35934) -.floppy-tits.com/iframes/ -# ||fleshbot.com/wp-content/themes/fbdesktop_aff/images/af (easylist.txt: 35933) -.fleshbot.com/wp-content/themes/fbdesktop_aff/images/af -# ||fingerslam.com/*.html (easylist.txt: 35932) -.fingerslam.com/.*\.html -# ||finehub.com/p3.js (easylist.txt: 35931) -.finehub.com/p3\.js -# ||filthyrx.com/rx.js (easylist.txt: 35930) -.filthyrx.com/rx\.js -# ||filthyrx.com/inline.php? (easylist.txt: 35929) -.filthyrx.com/inline\.php\? -# ||filthyrx.com/images/porno/ (easylist.txt: 35928) -.filthyrx.com/images/porno/ -# ||fileshare.ro^*/dhtmlwindow.js (easylist.txt: 35927) -.fileshare.ro/.*/dhtmlwindow\.js -# ||fetishok.com/rec/$subdocument (easylist.txt: 35926) -.fetishok.com/rec/ -# ||fetishok.com/js/focus.$script (easylist.txt: 35925) -.fetishok.com/js/focus\. -# ||femdom-fetish-tube.com/popfemdom.js (easylist.txt: 35924) -.femdom-fetish-tube.com/popfemdom\.js -# ||fastpic.ru/js_h2.jpg (easylist.txt: 35923) -.fastpic.ru/js_h2\.jpg -# ||fastpic.ru/js_f2.jpg (easylist.txt: 35922) -.fastpic.ru/js_f2\.jpg -# ||fapdick.com/uploads/fap_ (easylist.txt: 35921) -.fapdick.com/uploads/fap_ -# ||fapdick.com/uploads/1fap_ (easylist.txt: 35920) -.fapdick.com/uploads/1fap_ -# ||fantasti.cc/_special/ (easylist.txt: 35919) -.fantasti.cc/_special/ -# ||extremetube.com/player_related? (easylist.txt: 35918) -.extremetube.com/player_related\? -# ||extreme-board.com/bannrs/ (easylist.txt: 35917) -.extreme-board.com/bannrs/ -# ||exit.macandbumble.com^ (easylist.txt: 35916) -.exit.macandbumble.com -# ||exhentai.net/img/aaf1.gif (easylist.txt: 35915) -.exhentai.net/img/aaf1\.gif -# ||eskimotube.com/kellyban.gif (easylist.txt: 35914) -.eskimotube.com/kellyban\.gif -# ||eroprofile.com/js/pu*.js (easylist.txt: 35913) -.eroprofile.com/js/pu.*\.js -# ||eporner.com^$subdocument,~third-party (easylist.txt: 35912) -.eporner.com -# ||eporner.com/pjsall-*.js (easylist.txt: 35911) -.eporner.com/pjsall-.*\.js -# ||eporner.com/dot/$script (easylist.txt: 35910) -.eporner.com/dot/ -# ||eporner.com/cppb/ (easylist.txt: 35909) -.eporner.com/cppb/ -# ||epicwank.com/social/jquery.stp.min.js (easylist.txt: 35908) -.epicwank.com/social/jquery\.stp\.min\.js -# ||entensity.net/crap/ (easylist.txt: 35907) -.entensity.net/crap/ -# ||empireamateurs.com/images/*banner (easylist.txt: 35906) -.empireamateurs.com/images/.*banner -# ||empflix.com/embedding_player/600x474_ (easylist.txt: 35905) -.empflix.com/embedding_player/600x474_ -# ||egoporn.com/videotop.gif (easylist.txt: 35904) -.egoporn.com/videotop\.gif -# ||egoporn.com/themagic.js (easylist.txt: 35903) -.egoporn.com/themagic\.js -# ||efukt.com^*.php$subdocument (easylist.txt: 35902) -.efukt.com/.*\.php -# ||eccie.net/eros/ (easylist.txt: 35901) -.eccie.net/eros/ -# ||eccie.net/buploads/ (easylist.txt: 35900) -.eccie.net/buploads/ -# ||easypic.com/js/easypicads.js (easylist.txt: 35899) -.easypic.com/js/easypicads\.js -# ||dusttube.com/pop*.js (easylist.txt: 35898) -.dusttube.com/pop.*\.js -# ||drtuber.com^*/aff_banner.swf (easylist.txt: 35897) -.drtuber.com/.*/aff_banner\.swf -# ||drtuber.com/templates/frontend/white/js/embed.js? (easylist.txt: 35896) -.drtuber.com/templates/frontend/white/js/embed\.js\? -# ||drtuber.com/promo/banners/ (easylist.txt: 35895) -.drtuber.com/promo/banners/ -# ||dronporn.com/tizer.html (easylist.txt: 35894) -.dronporn.com/tizer\.html -# ||dronporn.com/main-video-place.html (easylist.txt: 35893) -.dronporn.com/main-video-place\.html -# ||dot2.eporner.com^ (easylist.txt: 35892) -.dot2.eporner.com -# ||dot.eporner.com^ (easylist.txt: 35891) -.dot.eporner.com -# ||dominationtube.com/exit.js (easylist.txt: 35890) -.dominationtube.com/exit\.js -# ||dixyporn.com/include/ (easylist.txt: 35889) -.dixyporn.com/include/ -# ||dirtypriest.com/sexpics/ (easylist.txt: 35888) -.dirtypriest.com/sexpics/ -# ||dickbig.net/scr/ (easylist.txt: 35887) -.dickbig.net/scr/ -# ||diamond-tgp.com/fp.js (easylist.txt: 35886) -.diamond-tgp.com/fp\.js -# ||devatube.com/img/partners/ (easylist.txt: 35885) -.devatube.com/img/partners/ -# ||destroymilf.com/popup%20floater.js (easylist.txt: 35884) -.destroymilf.com/popup%20floater\.js -# ||depic.me/banners/ (easylist.txt: 35883) -.depic.me/banners/ -# ||deliciousbabes.org/media/banners/ (easylist.txt: 35882) -.deliciousbabes.org/media/banners/ -# ||deliciousbabes.org/banner/ (easylist.txt: 35881) -.deliciousbabes.org/banner/ -# ||definefetish.com/df/js/dpcm.js (easylist.txt: 35880) -.definefetish.com/df/js/dpcm\.js -# ||definebabe.com/sponsor/ (easylist.txt: 35879) -.definebabe.com/sponsor/ -# ||definebabe.com/db/js/pcme.js (easylist.txt: 35878) -.definebabe.com/db/js/pcme\.js -# ||definebabe.com/db/images/leftnav/webcams2.png (easylist.txt: 35877) -.definebabe.com/db/images/leftnav/webcams2\.png -# ||data18.com^*/banners/ (easylist.txt: 35876) -.data18.com/.*/banners/ -# ||damimage.com^*/DocaWedrOJPPx.png (easylist.txt: 35875) -.damimage.com/.*/DocaWedrOJPPx\.png -# ||creepshots.com^*/250x250_ (easylist.txt: 35874) -.creepshots.com/.*/250x250_ -# ||creatives.pichunter.com^ (easylist.txt: 35873) -.creatives.pichunter.com -# ||creatives.cliphunter.com^ (easylist.txt: 35872) -.creatives.cliphunter.com -# ||creampietubeporn.com/porn.html (easylist.txt: 35871) -.creampietubeporn.com/porn\.html -# ||creampietubeporn.com/ctp.html (easylist.txt: 35870) -.creampietubeporn.com/ctp\.html -# ||crazyshit.com/p0pzIn.js (easylist.txt: 35869) -.crazyshit.com/p0pzIn\.js -# ||crackwhoreconfessions.com/images/banners/ (easylist.txt: 35868) -.crackwhoreconfessions.com/images/banners/ -# ||coolmovs.com/rec/$subdocument (easylist.txt: 35867) -.coolmovs.com/rec/ -# ||coolmovs.com/js/focus.*.js (easylist.txt: 35866) -.coolmovs.com/js/focus\..*\.js -# ||comdotgame.com/vgirl/ (easylist.txt: 35865) -.comdotgame.com/vgirl/ -# ||clips-and-pics.org/clipsandpics.js (easylist.txt: 35864) -.clips-and-pics.org/clipsandpics\.js -# ||chubby-ocean.com/banner/ (easylist.txt: 35863) -.chubby-ocean.com/banner/ -# ||chanweb.info/en/adult/hc/local_include/ (easylist.txt: 35862) -.chanweb.info/en/adult/hc/local_include/ -# ||cfake.com/images/a/ (easylist.txt: 35861) -.cfake.com/images/a/ -# ||celebritypink.com/bannedcelebs- (easylist.txt: 35860) -.celebritypink.com/bannedcelebs- -# ||celeb.gate.cc/misc/event_*.js (easylist.txt: 35859) -.celeb.gate.cc/misc/event_.*\.js -# ||celeb.gate.cc/banner/ (easylist.txt: 35858) -.celeb.gate.cc/banner/ -# ||canadianhottie.ca/images/banners/ (easylist.txt: 35857) -.canadianhottie.ca/images/banners/ -# ||cameltoe.com^*/banners/ (easylist.txt: 35856) -.cameltoe.com/.*/banners/ -# ||bustnow.com^*/sponsors/ (easylist.txt: 35855) -.bustnow.com/.*/sponsors/ -# ||bustnow.com^*/999.js.php (easylist.txt: 35854) -.bustnow.com/.*/999\.js\.php -# ||bustnow.com/xv/x/002.php (easylist.txt: 35853) -.bustnow.com/xv/x/002\.php -# ||bustnow.com/xv/ad/ (easylist.txt: 35852) -.bustnow.com/xv/ad/ -# ||bunnylust.com/sponsors/ (easylist.txt: 35851) -.bunnylust.com/sponsors/ -# ||brcache.madthumbs.com^ (easylist.txt: 35850) -.brcache.madthumbs.com -# ||bravotube.net/if/$subdocument (easylist.txt: 35849) -.bravotube.net/if/ -# ||bravotube.net/dp.html (easylist.txt: 35848) -.bravotube.net/dp\.html -# ||bravotube.net/dd$subdocument (easylist.txt: 35847) -.bravotube.net/dd -# ||bralesscelebs.com/320x240ps.gif (easylist.txt: 35846) -.bralesscelebs.com/320x240ps\.gif -# ||bralesscelebs.com/160x600ps.gif (easylist.txt: 35845) -.bralesscelebs.com/160x600ps\.gif -# ||bralesscelebs.com/160x600hcp.gif (easylist.txt: 35844) -.bralesscelebs.com/160x600hcp\.gif -# ||bralesscelebs.com/*banner (easylist.txt: 35843) -.bralesscelebs.com/.*banner -# ||boobieblog.com/TilaTequilaBackdoorBanner2.jpg (easylist.txt: 35842) -.boobieblog.com/TilaTequilaBackdoorBanner2\.jpg -# ||boobieblog.com/submityourbitchbanner3.jpg (easylist.txt: 35841) -.boobieblog.com/submityourbitchbanner3\.jpg -# ||boneprone.com/premium.html (easylist.txt: 35840) -.boneprone.com/premium\.html -# ||bonbonsex.com/js/workhome.js (easylist.txt: 35839) -.bonbonsex.com/js/workhome\.js -# ||bonbonsex.com/js/dl/bottom.js (easylist.txt: 35838) -.bonbonsex.com/js/dl/bottom\.js -# ||bonbonme.com/js/rightbanner.js (easylist.txt: 35837) -.bonbonme.com/js/rightbanner\.js -# ||bonbonme.com/js/dticash/ (easylist.txt: 35836) -.bonbonme.com/js/dticash/ -# ||bonbonme.com/js/cams.js (easylist.txt: 35835) -.bonbonme.com/js/cams\.js -# ||bob.crazyshit.com^ (easylist.txt: 35834) -.bob.crazyshit.com -# ||blackredtube.com/fadebox2.js (easylist.txt: 35833) -.blackredtube.com/fadebox2\.js -# ||blackonasianblog.com/uploads/banners/ (easylist.txt: 35832) -.blackonasianblog.com/uploads/banners/ -# ||bigxvideos.com/rec/ (easylist.txt: 35831) -.bigxvideos.com/rec/ -# ||bigxvideos.com/js/popu. (easylist.txt: 35830) -.bigxvideos.com/js/popu\. -# ||bigxvideos.com/js/pops2. (easylist.txt: 35829) -.bigxvideos.com/js/pops2\. -# ||bigxvideos.com/js/focus.*.js (easylist.txt: 35828) -.bigxvideos.com/js/focus\..*\.js -# ||bigboobs.hu/banners/ (easylist.txt: 35827) -.bigboobs.hu/banners/ -# ||bellyboner.com/facebookchatlist.php (easylist.txt: 35826) -.bellyboner.com/facebookchatlist\.php -# ||befuck.com/js/adpbefuck (easylist.txt: 35825) -.befuck.com/js/adpbefuck -# ||befuck.com/befuck_html/ (easylist.txt: 35824) -.befuck.com/befuck_html/ -# ||banners.cams.com^ (easylist.txt: 35823) -.banners.cams.com -# ||banner1.pornhost.com^ (easylist.txt: 35822) -.banner1.pornhost.com -# ||bangyoulater.com/pages/aff.php (easylist.txt: 35821) -.bangyoulater.com/pages/aff\.php -# ||bangyoulater.com/images/banners_ (easylist.txt: 35820) -.bangyoulater.com/images/banners_ -# ||bagslap.com/*.html (easylist.txt: 35819) -.bagslap.com/.*\.html -# ||badjojo.com/js/scripts- (easylist.txt: 35818) -.badjojo.com/js/scripts- -# ||badjojo.com/b2s.php (easylist.txt: 35817) -.badjojo.com/b2s\.php -# ||babesmachine.com/html/ (easylist.txt: 35816) -.babesmachine.com/html/ -# ||babeshows.co.uk^*banner (easylist.txt: 35815) -.babeshows.co.uk/.*banner -# ||babeshows.co.uk/fvn53.jpg (easylist.txt: 35814) -.babeshows.co.uk/fvn53\.jpg -# ||babesandstars.com/thumbs/paysites/ (easylist.txt: 35813) -.babesandstars.com/thumbs/paysites/ -# ||babesandstars.com/images/a/ (easylist.txt: 35812) -.babesandstars.com/images/a/ -# ||babepicture.co.uk^*banner (easylist.txt: 35811) -.babepicture.co.uk/.*banner -# ||babedrop.com/babelogger_images/ (easylist.txt: 35810) -.babedrop.com/babelogger_images/ -# ||babblesex.com/js/misc.js (easylist.txt: 35809) -.babblesex.com/js/misc\.js -# ||axatube.com/dos.html (easylist.txt: 35808) -.axatube.com/dos\.html -# ||avn.com/templates/avnav/skins/ (easylist.txt: 35807) -.avn.com/templates/avnav/skins/ -# ||asspoint.com/images/banners/ (easylist.txt: 35806) -.asspoint.com/images/banners/ -# ||asianpornmovies.com/images/banners/ (easylist.txt: 35805) -.asianpornmovies.com/images/banners/ -# ||asgayas.com/popin.js (easylist.txt: 35804) -.asgayas.com/popin\.js -# ||asgayas.com/floater/ (easylist.txt: 35803) -.asgayas.com/floater/ -# ||asexstories.com/010ads/ (easylist.txt: 35802) -.asexstories.com/010ads/ -# ||arionmovies.com/*/popup.php (easylist.txt: 35801) -.arionmovies.com/.*/popup\.php -# ||anysex.com/content_sources/ (easylist.txt: 35800) -.anysex.com/content_sources/ -# ||anysex.com/b/ (easylist.txt: 35799) -.anysex.com/b/ -# ||angelshack.com/images/under-video.png (easylist.txt: 35798) -.angelshack.com/images/under-video\.png -# ||andtube.com/ban_ (easylist.txt: 35797) -.andtube.com/ban_ -# ||analtubegirls.com/js/realamateurtube.js (easylist.txt: 35796) -.analtubegirls.com/js/realamateurtube\.js -# ||analpornpix.com/agent.php? (easylist.txt: 35795) -.analpornpix.com/agent\.php\? -# ||amateurfarm.net/layer.js (easylist.txt: 35794) -.amateurfarm.net/layer\.js -# ||amateuralbum.net/affb.html (easylist.txt: 35793) -.amateuralbum.net/affb\.html -# ||amateur-streams.com^*/popup.js (easylist.txt: 35792) -.amateur-streams.com/.*/popup\.js -# ||amateur-desire.com/pics/sm_ (easylist.txt: 35791) -.amateur-desire.com/pics/sm_ -# ||amateur-desire.com/pics/724x90d.jpg (easylist.txt: 35790) -.amateur-desire.com/pics/724x90d\.jpg -# ||amadorastube.com^*/banner_ (easylist.txt: 35789) -.amadorastube.com/.*/banner_ -# ||alotporn.com^*/js/oopopw.js (easylist.txt: 35788) -.alotporn.com/.*/js/oopopw\.js -# ||alotporn.com/media/banners/ (easylist.txt: 35787) -.alotporn.com/media/banners/ -# ||alladultnetwork.tv/main/videoadroll.xml (easylist.txt: 35786) -.alladultnetwork.tv/main/videoadroll\.xml -# ||affiliates.goodvibes.com^ (easylist.txt: 35785) -.affiliates.goodvibes.com -# ||adultwork.com/images/AWBanners/ (easylist.txt: 35784) -.adultwork.com/images/AWBanners/ -# ||adultfyi.com/images/banners/ (easylist.txt: 35783) -.adultfyi.com/images/banners/ -# ||adultfilmdatabase.com/graphics/banners/ (easylist.txt: 35782) -.adultfilmdatabase.com/graphics/banners/ -# ||adultdvdtalk.com/studios/ (easylist.txt: 35781) -.adultdvdtalk.com/studios/ -# ||adult-sex-games.com/images/promo/ (easylist.txt: 35780) -.adult-sex-games.com/images/promo/ -# ||adult-profit-files.com/banner (easylist.txt: 35779) -.adult-profit-files.com/banner -# ||ads.xxxbunker.com^ (easylist.txt: 35778) -.ads.xxxbunker.com -# ||adrive.com/images/fc_banner.jpg (easylist.txt: 35777) -.adrive.com/images/fc_banner\.jpg -# ||ad.userporn.com^ (easylist.txt: 35776) -.ad.userporn.com -# ||ad.thisav.com^ (easylist.txt: 35775) -.ad.thisav.com -# ||ad.slutload.com^ (easylist.txt: 35774) -.ad.slutload.com -# ||ad.eporner.com^ (easylist.txt: 35773) -.ad.eporner.com -# ||absoluporn.com/code/pub/ (easylist.txt: 35772) -.absoluporn.com/code/pub/ -# ||abc-celebs.com/spons/ (easylist.txt: 35771) -.abc-celebs.com/spons/ -# ||a.killergram-girls.com^ (easylist.txt: 35770) -.a.killergram-girls.com -# ||a.heavy-r.com^ (easylist.txt: 35769) -.a.heavy-r.com -# ||a.eporner.com^ (easylist.txt: 35768) -.a.eporner.com -# ||64.62.202.124^*/cumlouder.jpg (easylist.txt: 35767) -.64.62.202.124/.*/cumlouder\.jpg -# ||5ilthy.com/porn.php (easylist.txt: 35766) -.5ilthy.com/porn\.php -# ||4ufrom.me/xpw.gif (easylist.txt: 35765) -.4ufrom.me/xpw\.gif -# ||3yen.com/wfn_ (easylist.txt: 35764) -.3yen.com/wfn_ -# ||3xupdate.com^*/ryusharepremium.gif (easylist.txt: 35763) -.3xupdate.com/.*/ryusharepremium\.gif -# ||3xupdate.com^*/ryushare2.gif (easylist.txt: 35762) -.3xupdate.com/.*/ryushare2\.gif -# ||3xupdate.com^*/ryushare.gif (easylist.txt: 35761) -.3xupdate.com/.*/ryushare\.gif -# ||3movs.com/contents/content_sources/ (easylist.txt: 35760) -.3movs.com/contents/content_sources/ -# ||2adultflashgames.com/teaser/teaser.swf (easylist.txt: 35759) -.2adultflashgames.com/teaser/teaser\.swf -# ||2adultflashgames.com/img/ (easylist.txt: 35758) -.2adultflashgames.com/img/ -# ||2adultflashgames.com/images/v12.gif (easylist.txt: 35757) -.2adultflashgames.com/images/v12\.gif -# ||24porn7.com/toonad/ (easylist.txt: 35756) -.24porn7.com/toonad/ -# ||24porn7.com/right3.php (easylist.txt: 35755) -.24porn7.com/right3\.php -# ||24porn7.com/odd.php (easylist.txt: 35754) -.24porn7.com/odd\.php -# ||24porn7.com/imads/ (easylist.txt: 35753) -.24porn7.com/imads/ -# ||24porn7.com/float/float_adplib.js (easylist.txt: 35752) -.24porn7.com/float/float_adplib\.js -# ||24porn7.com/ebanners/ (easylist.txt: 35751) -.24porn7.com/ebanners/ -# ||24porn7.com/banned/ (easylist.txt: 35750) -.24porn7.com/banned/ -# ||24porn7.com/300.php (easylist.txt: 35749) -.24porn7.com/300\.php -# ||24porn7.com/24roll.html (easylist.txt: 35748) -.24porn7.com/24roll\.html -# ||244pix.com/webop.jpg (easylist.txt: 35747) -.244pix.com/webop\.jpg -# ||213.174.140.38/bftv/js/msn- (easylist.txt: 35745) -.213.174.140.38/bftv/js/msn- -# ||ziddu.com/onclickpop.php$popup (easylist.txt: 35733) -.ziddu.com/onclickpop\.php -# ||youwatch.org^*^crr^$popup (easylist.txt: 35731) -.youwatch.org/.*[^\w%.-]crr[^\w%.-] -# ||youwatch.org^*^ban^$popup (easylist.txt: 35730) -.youwatch.org/.*[^\w%.-]ban[^\w%.-] -# ||youwatch.org/vids*.html$popup (easylist.txt: 35729) -.youwatch.org/vids.*\.html -# ||yasni.ca/ad_pop.php$popup (easylist.txt: 35728) -.yasni.ca/ad_pop\.php -# ||whies.info^$popup (easylist.txt: 35727) -.whies.info -# ||watch-movies.net.in/popup.php$popup (easylist.txt: 35724) -.watch-movies.net.in/popup\.php -# ||vodu.ch/play_video.php$popup (easylist.txt: 35723) -.vodu.ch/play_video\.php -# ||virtualtourist.com/commerce/popunder/$popup (easylist.txt: 35722) -.virtualtourist.com/commerce/popunder/ -# ||vidspot.net^*http$popup (easylist.txt: 35721) -.vidspot.net/.*http -# ||vidhog.com/ilivid-redirect.php$popup (easylist.txt: 35720) -.vidhog.com/ilivid-redirect\.php -# ||tripadvisor.*/SimilarHotelsPopunder?$popup (easylist.txt: 35718) -.tripadvisor.*./(.*/)?SimilarHotelsPopunder\? -# ||tripadvisor.*/rulebasedpopunder?$popup (easylist.txt: 35717) -.tripadvisor.*./(.*/)?rulebasedpopunder\? -# ||trans.youwatch.org^$popup (easylist.txt: 35716) -.trans.youwatch.org -# ||tozer.youwatch.org^$popup (easylist.txt: 35715) -.tozer.youwatch.org -# ||torrentz.eu/p/$popup (easylist.txt: 35714) -.torrentz.eu/p/ -# ||torrentz.*/wgmpop/$popup (easylist.txt: 35713) -.torrentz.*./(.*/)?wgmpop/ -# ||torrentz.*/mgidpop/$popup (easylist.txt: 35712) -.torrentz.*./(.*/)?mgidpop/ -# ||tny.cz/red/first.php$popup (easylist.txt: 35710) -.tny.cz/red/first\.php -# ||titanshare.to/download-extern.php?type=*&n=$popup (easylist.txt: 35709) -.titanshare.to/download-extern\.php\?type=.*&n= -# ||thevideo.me/script/$popup (easylist.txt: 35707) -.thevideo.me/script/ -# ||thesource.com/magicshave/$popup (easylist.txt: 35706) -.thesource.com/magicshave/ -# ||subs4free.com/_pop_link.php$popup (easylist.txt: 35704) -.subs4free.com/_pop_link\.php -# ||streamtunerhd.com/signup?$popup,third-party (easylist.txt: 35703) -.streamtunerhd.com/signup\? -# ||streamcloud.eu/deliver.php$popup (easylist.txt: 35702) -.streamcloud.eu/deliver\.php -# ||sponsorselect.com/Common/LandingPage.aspx?eu=$popup (easylist.txt: 35701) -.sponsorselect.com/Common/LandingPage\.aspx\?eu= -# ||songspk.cc/pop*.html$popup (easylist.txt: 35699) -.songspk.cc/pop.*\.html -# ||rediff.com/uim/ads/$popup (easylist.txt: 35694) -.rediff.com/uim/ads/ -# ||pop.billionuploads.com^$popup (easylist.txt: 35692) -.pop.billionuploads.com -# ||playhd.eu/test$popup (easylist.txt: 35691) -.playhd.eu/test -# ||plarium.com/play/*adCampaign=$popup (easylist.txt: 35690) -.plarium.com/play/.*adCampaign= -# ||park.above.com^$popup (easylist.txt: 35688) -.park.above.com -# ||oddschecker.com/clickout.htm?type=takeover-$popup (easylist.txt: 35686) -.oddschecker.com/clickout\.htm\?type=takeover- -# ||nosteam.ro/pma/$popup (easylist.txt: 35685) -.nosteam.ro/pma/ -# ||multiupload.nl/popunder/$popup (easylist.txt: 35682) -.multiupload.nl/popunder/ -# ||miniurls.co^*?ref=$popup (easylist.txt: 35681) -.miniurls.co/.*\?ref= -# ||military.com/data/popup/new_education_popunder.htm$popup (easylist.txt: 35680) -.military.com/data/popup/new_education_popunder\.htm -# ||linkbucks.com^*/?*=$popup (easylist.txt: 35679) -.linkbucks.com/.*/\?.*= -# ||itv.com/itv/adclick/$popup (easylist.txt: 35673) -.itv.com/itv/adclick/ -# ||intradayfun.com/news_intradayfun.com.html$popup (easylist.txt: 35672) -.intradayfun.com/news_intradayfun\.com\.html -# ||imageshack.us/newuploader_ad.php$popup (easylist.txt: 35671) -.imageshack.us/newuploader_ad\.php -# ||imageshack.us/ads/$popup (easylist.txt: 35670) -.imageshack.us/ads/ -# ||ifly.com/trip-plan/ifly-trip?*&ad=$popup (easylist.txt: 35669) -.ifly.com/trip-plan/ifly-trip\?.*&ad= -# ||houndmirror.com/out.php$popup (easylist.txt: 35667) -.houndmirror.com/out\.php -# ||homets.info/queen_file?$popup (easylist.txt: 35666) -.homets.info/queen_file\? -# ||homerun.re/adServe/$popup (easylist.txt: 35665) -.homerun.re/adServe/ -# ||gamezadvisor.com/popup.php$popup (easylist.txt: 35660) -.gamezadvisor.com/popup\.php -# ||fullonsms.com/sid.html$popup (easylist.txt: 35659) -.fullonsms.com/sid\.html -# ||fullonsms.com/quikrad.html$popup (easylist.txt: 35658) -.fullonsms.com/quikrad\.html -# ||fullonsms.com/quikr.html$popup (easylist.txt: 35657) -.fullonsms.com/quikr\.html -# ||fullonsms.com/mixpop.html$popup (easylist.txt: 35656) -.fullonsms.com/mixpop\.html -# ||fullonsms.com/blank.php$popup (easylist.txt: 35655) -.fullonsms.com/blank\.php -# ||freean.us^*?ref=$popup (easylist.txt: 35654) -.freean.us/.*\?ref= -# ||free-filehost.net/pop/$popup (easylist.txt: 35652) -.free-filehost.net/pop/ -# ||flashx.tv/frame/$popup (easylist.txt: 35651) -.flashx.tv/frame/ -# ||flashx.tv/ads/$popup (easylist.txt: 35650) -.flashx.tv/ads/ -# ||firedrive.com/tools/$popup (easylist.txt: 35649) -.firedrive.com/tools/ -# ||firedrive.com/appresources/$popup (easylist.txt: 35648) -.firedrive.com/appresources/ -# ||filmon.com^*&adn=$popup (easylist.txt: 35645) -.filmon.com/.*&adn= -# ||filepost.com/default_popup.html$popup (easylist.txt: 35644) -.filepost.com/default_popup\.html -# ||f-picture.net/Misc/JumpClick?$popup (easylist.txt: 35642) -.f-picture.net/Misc/JumpClick\? -# ||exashare.com^*&h=$popup,~third-party (easylist.txt: 35641) -.exashare.com/.*&h= -# ||edomz.com/re.php?mid=$popup (easylist.txt: 35640) -.edomz.com/re\.php\?mid= -# ||eafyfsuh.net^*/?name=$popup (easylist.txt: 35639) -.eafyfsuh.net/.*/\?name= -# ||deb.gs^*?ref=$popup (easylist.txt: 35638) -.deb.gs/.*\?ref= -# ||damoh.muzu.tv^$popup (easylist.txt: 35637) -.damoh.muzu.tv -# ||conservativepost.com/pu/$popup (easylist.txt: 35636) -.conservativepost.com/pu/ -# ||comicbookmovie.com/plugins/ads/$popup (easylist.txt: 35635) -.comicbookmovie.com/plugins/ads/ -# ||cloudzilla.to/cam/wpop.php$popup (easylist.txt: 35634) -.cloudzilla.to/cam/wpop\.php -# ||channel4.com/ad/$popup (easylist.txt: 35632) -.channel4.com/ad/ -# ||casino-x.com^*&promo$popup (easylist.txt: 35631) -.casino-x.com/.*&promo -# ||avalanchers.com/out/$popup (easylist.txt: 35627) -.avalanchers.com/out/ -# ||allmyvideos.net^*?p=$popup (easylist.txt: 35626) -.allmyvideos.net/.*\?p= -# ||adyou.me/bug/adcash$popup (easylist.txt: 35624) -.adyou.me/bug/adcash -# ||adx.kat.ph^$popup (easylist.txt: 35623) -.adx.kat.ph -# ||4fuckr.com/api.php$popup (easylist.txt: 35621) -.4fuckr.com/api\.php -# ||104.239.139.5/display/$popup (easylist.txt: 35620) -.104.239.139.5/display/ -# ||ytconv.net/site/adblock_detect (easylist.txt: 35611) -.ytconv.net/site/adblock_detect -# ||watchfreeinhd.com/js/adblocker.js (easylist.txt: 35610) -.watchfreeinhd.com/js/adblocker\.js -# ||vapingunderground.com/js/vapingunderground/fucking_adblock.js (easylist.txt: 35609) -.vapingunderground.com/js/vapingunderground/fucking_adblock\.js -# ||sportspyder.com/assets/application-$script (easylist.txt: 35607) -.sportspyder.com/assets/application- -# ||nintendolife.com^*/adblock.jpg (easylist.txt: 35600) -.nintendolife.com/.*/adblock\.jpg -# ||joindota.com/img/*MR_$image (easylist.txt: 35599) -.joindota.com/img/.*MR_ -# ||joindota.com/img/*LB_$image (easylist.txt: 35598) -.joindota.com/img/.*LB_ -# ||http.anno.channel4.com*_*_*_ (easylist.txt: 35597) -.http.anno.channel4.com*./.*_.*_.*_ -# ||http.anno.channel4.com*- (easylist.txt: 35596) -.http.anno.channel4.com*./.*- -.http.anno.channel4.com*-*. -# ||getdebrid.com/blocker.js (easylist.txt: 35594) -.getdebrid.com/blocker\.js -# ||channel4.com^*.tidaltv.com$object-subrequest (easylist.txt: 35593) -.channel4.com/.*\.tidaltv\.com -# ||channel4.com^*.innovid.com$object-subrequest (easylist.txt: 35592) -.channel4.com/.*\.innovid\.com -# ||www.infowars.com/*.png$image (easylist.txt: 35582) -.www.infowars.com/.*\.png -# ||thegatewaypundit.com^*.png$image (easylist.txt: 35581) -.thegatewaypundit.com/.*\.png -# ||supercheats.com/js/yavli.js (easylist.txt: 35580) -.supercheats.com/js/yavli\.js -# ||cheatsheet.com^$image,~third-party (easylist.txt: 35579) -.cheatsheet.com -# /\.sharesix\.com/.*[a-zA-Z0-9]{4}/$script (easylist.txt: 35443) -/(.*/)?\\\.sharesix\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.sharesix\.com/.*[a-zA-Z0-9]{4} -# /\.filenuke\.com/.*[a-zA-Z0-9]{4}/$script (easylist.txt: 35442) -/(.*/)?\\\.filenuke\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.filenuke\.com/.*[a-zA-Z0-9]{4} -# ||zurrieqfc.com/images/banners/ (easylist.txt: 35348) -.zurrieqfc.com/images/banners/ -# ||zshares.net/fm.html (easylist.txt: 35347) -.zshares.net/fm\.html -# ||zpag.es/b/ (easylist.txt: 35346) -.zpag.es/b/ -# ||zorrovpn.com/static/img/promo/ (easylist.txt: 35345) -.zorrovpn.com/static/img/promo/ -# ||zophar.net/files/tf_ (easylist.txt: 35344) -.zophar.net/files/tf_ -# ||zoozle.org/if.php?q= (easylist.txt: 35343) -.zoozle.org/if\.php\?q= -# ||zoover.*/shared/bannerpages/darttagsbanner.aspx? (easylist.txt: 35342) -.zoover.*./(.*/)?shared/bannerpages/darttagsbanner\.aspx\? -# ||zootoday.com/pub/21publish/Zoo-navtop-poker.gif (easylist.txt: 35341) -.zootoday.com/pub/21publish/Zoo-navtop-poker\.gif -# ||zootoday.com/pub/21publish/Zoo-navtop-casino_ (easylist.txt: 35340) -.zootoday.com/pub/21publish/Zoo-navtop-casino_ -# ||zoomin.tv/decagonhandler/ (easylist.txt: 35339) -.zoomin.tv/decagonhandler/ -# ||zoneradio.co.za/img/banners/ (easylist.txt: 35338) -.zoneradio.co.za/img/banners/ -# ||zonein.tv/add$subdocument (easylist.txt: 35337) -.zonein.tv/add -# ||zomobo.net/images/removeads.png (easylist.txt: 35336) -.zomobo.net/images/removeads\.png -# ||zombiegamer.co.za/wp-content/uploads/*-skin- (easylist.txt: 35335) -.zombiegamer.co.za/wp-content/uploads/.*-skin- -# ||zipcode.org/site_images/flash/zip_v.swf (easylist.txt: 35334) -.zipcode.org/site_images/flash/zip_v\.swf -# ||zigzag.co.za/images/oww- (easylist.txt: 35333) -.zigzag.co.za/images/oww- -# ||ziddu.com/images/wxdfast/ (easylist.txt: 35332) -.ziddu.com/images/wxdfast/ -# ||ziddu.com/images/globe7.gif (easylist.txt: 35331) -.ziddu.com/images/globe7\.gif -# ||ziddu.com/images/140x150_egglad.gif (easylist.txt: 35330) -.ziddu.com/images/140x150_egglad\.gif -# ||zeropaid.com^*/94.jpg (easylist.txt: 35329) -.zeropaid.com/.*/94\.jpg -# ||zeropaid.com/images/ (easylist.txt: 35328) -.zeropaid.com/images/ -# ||zerochan.net/skyscraper.html (easylist.txt: 35327) -.zerochan.net/skyscraper\.html -# ||zeetvusa.com/images/SevaWeb.gif (easylist.txt: 35326) -.zeetvusa.com/images/SevaWeb\.gif -# ||zeetvusa.com/images/hightlow.jpg (easylist.txt: 35325) -.zeetvusa.com/images/hightlow\.jpg -# ||zeetvusa.com/images/CARIBBEN.jpg (easylist.txt: 35324) -.zeetvusa.com/images/CARIBBEN\.jpg -# ||zbc.co.zw^*/banners/ (easylist.txt: 35323) -.zbc.co.zw/.*/banners/ -# ||zawya.com/brands/ (easylist.txt: 35322) -.zawya.com/brands/ -# ||zawya.com/ads/ (easylist.txt: 35321) -.zawya.com/ads/ -# ||zattoo.com/ads/ (easylist.txt: 35320) -.zattoo.com/ads/ -# ||zap2it.com/wp-content/themes/overmind/js/zcode- (easylist.txt: 35319) -.zap2it.com/wp-content/themes/overmind/js/zcode- -# ||zanews.co.za^*/banners/ (easylist.txt: 35318) -.zanews.co.za/.*/banners/ -# ||zamimg.com/shared/minifeatures/ (easylist.txt: 35317) -.zamimg.com/shared/minifeatures/ -# ||zamimg.com/images/skins/ (easylist.txt: 35316) -.zamimg.com/images/skins/ -# ||zambiz.co.zm/banners/ (easylist.txt: 35315) -.zambiz.co.zm/banners/ -# ||zam.com/i/promos/*-skin. (easylist.txt: 35314) -.zam.com/i/promos/.*-skin\. -# ||zads.care2.com^ (easylist.txt: 35313) -.zads.care2.com -# ||zabasearch.com/search_box.php?*&adword= (easylist.txt: 35312) -.zabasearch.com/search_box\.php\?.*&adword= -# ||yudu.com^*_intro_ads (easylist.txt: 35311) -.yudu.com/.*_intro_ads -# ||ytmnd.com/ugh (easylist.txt: 35310) -.ytmnd.com/ugh -# ||ysm.yahoo.com^ (easylist.txt: 35306) -.ysm.yahoo.com -# ||yrt7dgkf.exashare.com^ (easylist.txt: 35305) -.yrt7dgkf.exashare.com -# ||yp.mo^*/ads/ (easylist.txt: 35304) -.yp.mo/.*/ads/ -# ||youwatch.org/vod-str.html (easylist.txt: 35303) -.youwatch.org/vod-str\.html -# ||youwatch.org/iframe1.html (easylist.txt: 35302) -.youwatch.org/iframe1\.html -# ||youwatch.org/driba.html (easylist.txt: 35301) -.youwatch.org/driba\.html -# ||youwatch.org/9elawi.html (easylist.txt: 35300) -.youwatch.org/9elawi\.html -# ||youtubeproxy.pk/images/lahore.jpg (easylist.txt: 35299) -.youtubeproxy.pk/images/lahore\.jpg -# ||youtubeproxy.pk/images/Lahore.fm.jpg (easylist.txt: 35298) -.youtubeproxy.pk/images/Lahore\.fm\.jpg -# ||youtubeproxy.pk/images/Indiansongs.pk.jpg (easylist.txt: 35297) -.youtubeproxy.pk/images/Indiansongs\.pk\.jpg -# ||youtube-mp3.org/acode/ (easylist.txt: 35295) -.youtube-mp3.org/acode/ -# ||youserials.com/i/banner_pos.jpg (easylist.txt: 35294) -.youserials.com/i/banner_pos\.jpg -# ||yourwire.net/images/refssder.gif (easylist.txt: 35293) -.yourwire.net/images/refssder\.gif -# ||yourradioplace.com/images/banners/ (easylist.txt: 35292) -.yourradioplace.com/images/banners/ -# ||yourradioplace.com//images/banners/ (easylist.txt: 35291) -# ||yourmuze.fm/images/banner_ym.png (easylist.txt: 35290) -.yourmuze.fm/images/banner_ym\.png -# ||yourmuze.fm/images/audionow.png (easylist.txt: 35289) -.yourmuze.fm/images/audionow\.png -# ||yourmovies.com.au^*/side_panels_ (easylist.txt: 35288) -.yourmovies.com.au/.*/side_panels_ -# ||yourindustrynews.com/ads/ (easylist.txt: 35287) -.yourindustrynews.com/ads/ -# ||yourfilehost.com/ads/ (easylist.txt: 35286) -.yourfilehost.com/ads/ -# ||yourepeat.com^*/skins/ (easylist.txt: 35285) -.yourepeat.com/.*/skins/ -# ||yourepeat.com/revive_wrapper? (easylist.txt: 35284) -.yourepeat.com/revive_wrapper\? -# ||yourbittorrent.com/images/lumovies.js (easylist.txt: 35283) -.yourbittorrent.com/images/lumovies\.js -# ||yourbittorrent.com/downloadnow.png (easylist.txt: 35282) -.yourbittorrent.com/downloadnow\.png -# ||youngrider.com/images/sponsorships/ (easylist.txt: 35281) -.youngrider.com/images/sponsorships/ -# ||youconvertit.com/_images/*ad.png (easylist.txt: 35280) -.youconvertit.com/_images/.*ad\.png -# ||yorkshirecoastradio.com/resources/creative/ (easylist.txt: 35279) -.yorkshirecoastradio.com/resources/creative/ -# ||yopmail.com/fbd.js (easylist.txt: 35278) -.yopmail.com/fbd\.js -# ||yomzansi.com^*-300x250. (easylist.txt: 35277) -.yomzansi.com/.*-300x250\. -# ||ynaija.com^*300X300 (easylist.txt: 35275) -.ynaija.com/.*300X300 -# ||ynaija.com^*300x250 (easylist.txt: 35274) -.ynaija.com/.*300x250 -# ||ynaija.com^*/ad. (easylist.txt: 35273) -.ynaija.com/.*/ad\. -# ||yimg.com^*/yad.html (easylist.txt: 35268) -.yimg.com/.*/yad\.html -# ||yimg.com^*/flash/promotions/ (easylist.txt: 35265) -.yimg.com/.*/flash/promotions/ -# ||yimg.com^*/fairfax/$image (easylist.txt: 35264) -.yimg.com/.*/fairfax/ -# ||yimg.com/a/1-$~stylesheet (easylist.txt: 35249) -.yimg.com/a/1- -# ||yimg.com/*300x250$image,object (easylist.txt: 35248) -.yimg.com/.*300x250 -# ||yfrog.com/ym.php? (easylist.txt: 35247) -.yfrog.com/ym\.php\? -# ||yfrog.com/images/weezer-bloggie-bg.png (easylist.txt: 35246) -.yfrog.com/images/weezer-bloggie-bg\.png -# ||yfrog.com/images/contests/ (easylist.txt: 35245) -.yfrog.com/images/contests/ -# ||yfmghana.com/images/banners/ (easylist.txt: 35244) -.yfmghana.com/images/banners/ -# ||yesbeby.whies.info^ (easylist.txt: 35243) -.yesbeby.whies.info -# ||yellowpageskenya.com/sponsored/ (easylist.txt: 35242) -.yellowpageskenya.com/sponsored/ -# ||yellowpages.ly^*/sponsors/ (easylist.txt: 35241) -.yellowpages.ly/.*/sponsors/ -# ||yellowpages.ly/user_media/banner/ (easylist.txt: 35240) -.yellowpages.ly/user_media/banner/ -# ||yellowpages.com.lb/uploaded/banners/ (easylist.txt: 35239) -.yellowpages.com.lb/uploaded/banners/ -# ||yellowpages.com.jo/banners/ (easylist.txt: 35238) -.yellowpages.com.jo/banners/ -# ||yellowpages.ae/UI/WM/ (easylist.txt: 35237) -.yellowpages.ae/UI/WM/ -# ||yellowpages.ae/UI/WA/ (easylist.txt: 35236) -.yellowpages.ae/UI/WA/ -# ||yellowpages.ae/UI/ST/ (easylist.txt: 35235) -.yellowpages.ae/UI/ST/ -# ||yellowpages.ae/UI/SR/ (easylist.txt: 35234) -.yellowpages.ae/UI/SR/ -# ||yellowpages.ae/UI/MR/ (easylist.txt: 35233) -.yellowpages.ae/UI/MR/ -# ||yellowpages.ae/UI/LB/ (easylist.txt: 35232) -.yellowpages.ae/UI/LB/ -# ||yellowpages.ae/UI/FC/ (easylist.txt: 35231) -.yellowpages.ae/UI/FC/ -# ||yellowpage-jp.com/images/banners/ (easylist.txt: 35230) -.yellowpage-jp.com/images/banners/ -# ||yellow.co.ke/img/top_banner/ (easylist.txt: 35229) -.yellow.co.ke/img/top_banner/ -# ||yellow.co.ke/img/right_side/ (easylist.txt: 35228) -.yellow.co.ke/img/right_side/ -# ||yellow.co.ke/img/left_side/ (easylist.txt: 35227) -.yellow.co.ke/img/left_side/ -# ||yea.uploadimagex.com^ (easylist.txt: 35226) -.yea.uploadimagex.com -# ||yavideo.tv/ajaxlog.txt? (easylist.txt: 35225) -.yavideo.tv/ajaxlog\.txt\? -# ||yasni.*/design/relaunch/gfx/elitepartner_ (easylist.txt: 35224) -.yasni.*./(.*/)?design/relaunch/gfx/elitepartner_ -# ||yarisworld.com^*/banners/ (easylist.txt: 35223) -.yarisworld.com/.*/banners/ -# ||yardbarker.com/asset/asset_source/*?ord=$subdocument (easylist.txt: 35222) -.yardbarker.com/asset/asset_source/.*\?ord= -# ||yamivideo.com^*/download_video.jpg (easylist.txt: 35221) -.yamivideo.com/.*/download_video\.jpg -# ||yamgo.mobi/images/banner/ (easylist.txt: 35220) -.yamgo.mobi/images/banner/ -# ||yahoo.com^*/eyc-themis? (easylist.txt: 35219) -.yahoo.com/.*/eyc-themis\? -# ||yahoo.com/ysmload.html? (easylist.txt: 35218) -.yahoo.com/ysmload\.html\? -# ||yahoo.com/sdarla/ (easylist.txt: 35217) -.yahoo.com/sdarla/ -# ||yahoo.com/neo/darla/ (easylist.txt: 35216) -.yahoo.com/neo/darla/ -# ||yahoo.com/livewords/ (easylist.txt: 35215) -.yahoo.com/livewords/ -# ||yahoo.com/darla/ (easylist.txt: 35214) -.yahoo.com/darla/ -# ||yahoo.com/contextual-shortcuts (easylist.txt: 35213) -.yahoo.com/contextual-shortcuts -# ||yahoo.com/__darla/ (easylist.txt: 35212) -.yahoo.com/__darla/ -# ||yahoo.*/serv?s= (easylist.txt: 35211) -.yahoo.*./(.*/)?serv\?s= -# ||xup.in/layer.php (easylist.txt: 35210) -.xup.in/layer\.php -# ||xtremesystems.org/forums/brotator/ (easylist.txt: 35209) -.xtremesystems.org/forums/brotator/ -# ||xsreviews.co.uk/style/bgg2.jpg (easylist.txt: 35208) -.xsreviews.co.uk/style/bgg2\.jpg -# ||xscores.com/livescore/banners/ (easylist.txt: 35207) -.xscores.com/livescore/banners/ -# ||xoops-theme.com/images/banners/ (easylist.txt: 35206) -.xoops-theme.com/images/banners/ -# ||xomreviews.com/sponsors/ (easylist.txt: 35205) -.xomreviews.com/sponsors/ -# ||xiaopan.co/Reaver.png (easylist.txt: 35204) -.xiaopan.co/Reaver\.png -# ||xboxgaming.co.za^*/images/background/ (easylist.txt: 35203) -.xboxgaming.co.za/.*/images/background/ -# ||xbox-scene.com/crave/logo_on_white_s160.jpg (easylist.txt: 35202) -.xbox-scene.com/crave/logo_on_white_s160\.jpg -# ||xbox-hq.com/html/images/banners/ (easylist.txt: 35201) -.xbox-hq.com/html/images/banners/ -# ||xbitlabs.com/images/banners/ (easylist.txt: 35200) -.xbitlabs.com/images/banners/ -# ||xbitlabs.com/cms/module_banners/ (easylist.txt: 35199) -.xbitlabs.com/cms/module_banners/ -# ||x.castanet.net^ (easylist.txt: 35198) -.x.castanet.net -# ||www2.sys-con.com^*.cfm (easylist.txt: 35197) -.www2.sys-con.com/.*\.cfm -# ||wwbf.com/b/topbanner.htm (easylist.txt: 35196) -.wwbf.com/b/topbanner\.htm -# ||wwaytv3.com^*/curlypage.js (easylist.txt: 35195) -.wwaytv3.com/.*/curlypage\.js -# ||wvbr.com/images/banner/ (easylist.txt: 35194) -.wvbr.com/images/banner/ -# ||wunderground.com^*/wuss_300ad2.php? (easylist.txt: 35193) -.wunderground.com/.*/wuss_300ad2\.php\? -# ||wunderground.com/geo/swfad/ (easylist.txt: 35192) -.wunderground.com/geo/swfad/ -# ||wttrend.com/images/hs.jpg (easylist.txt: 35191) -.wttrend.com/images/hs\.jpg -# ||wsj.net/internal/krux.js (easylist.txt: 35190) -.wsj.net/internal/krux\.js -# ||wshh.me/vast/ (easylist.txt: 35189) -.wshh.me/vast/ -# ||wrmf.com/upload/*_Webskin_ (easylist.txt: 35188) -.wrmf.com/upload/.*_Webskin_ -# ||wrlr.fm/images/banners/ (easylist.txt: 35187) -.wrlr.fm/images/banners/ -# ||wrko.com^*/sponsors/ (easylist.txt: 35186) -.wrko.com/.*/sponsors/ -# ||wrko.com/sites/wrko.com/files/poll/*_285x95.jpg (easylist.txt: 35185) -.wrko.com/sites/wrko\.com/files/poll/.*_285x95\.jpg -# ||wrcjfm.org/images/banners/ (easylist.txt: 35184) -.wrcjfm.org/images/banners/ -# ||wrc.com/swf/homeclock_edox_hori.swf (easylist.txt: 35183) -.wrc.com/swf/homeclock_edox_hori\.swf -# ||wrc.com/img/sponsors- (easylist.txt: 35182) -.wrc.com/img/sponsors- -# ||wranglerforum.com/images/sponsor/ (easylist.txt: 35181) -.wranglerforum.com/images/sponsor/ -# ||wqxe.com/images/sponsors/ (easylist.txt: 35180) -.wqxe.com/images/sponsors/ -# ||wqam.com/partners/ (easylist.txt: 35179) -.wqam.com/partners/ -# ||wqah.com/images/banners/ (easylist.txt: 35178) -.wqah.com/images/banners/ -# ||wptmag.com/promo/ (easylist.txt: 35177) -.wptmag.com/promo/ -# ||wpdaddy.com^*/banners/ (easylist.txt: 35176) -.wpdaddy.com/.*/banners/ -# ||wpcv.com/includes/header_banner.htm (easylist.txt: 35175) -.wpcv.com/includes/header_banner\.htm -# ||wp.com/wp-content/themes/vip/tctechcrunch/images/tc_*_skin.jpg (easylist.txt: 35169) -.wp.com/wp-content/themes/vip/tctechcrunch/images/tc_.*_skin\.jpg -# ||wowwiki.com/__varnish_ (easylist.txt: 35168) -.wowwiki.com/__varnish_ -# ||wowhead.com/uploads/skins/$image (easylist.txt: 35167) -.wowhead.com/uploads/skins/ -# ||worthofweb.com/images/wow-ad- (easylist.txt: 35166) -.worthofweb.com/images/wow-ad- -# ||worldstagegroup.com/worldstagenew/banner/ (easylist.txt: 35165) -.worldstagegroup.com/worldstagenew/banner/ -# ||worldstagegroup.com/banner/ (easylist.txt: 35164) -.worldstagegroup.com/banner/ -# ||worldstadiums.com/world_stadiums/bugarrishoes/ (easylist.txt: 35163) -.worldstadiums.com/world_stadiums/bugarrishoes/ -# ||worldometers.info/L728.html (easylist.txt: 35162) -.worldometers.info/L728\.html -# ||worldometers.info/L300R.html (easylist.txt: 35161) -.worldometers.info/L300R\.html -# ||worldometers.info/L300L.html (easylist.txt: 35160) -.worldometers.info/L300L\.html -# ||worldarchitecturenews.com/flash_banners/ (easylist.txt: 35159) -.worldarchitecturenews.com/flash_banners/ -# ||worldarchitecturenews.com/banner/ (easylist.txt: 35158) -.worldarchitecturenews.com/banner/ -# ||workingdays.us/pub_ (easylist.txt: 35157) -.workingdays.us/pub_ -# ||workingdays.org/pub_ (easylist.txt: 35156) -.workingdays.org/pub_ -# ||workingdays.ca/pub_ (easylist.txt: 35155) -.workingdays.ca/pub_ -# ||work-day.co.uk/pub_ (easylist.txt: 35154) -.work-day.co.uk/pub_ -# ||wordwebonline.com/img/122x36ccbanner.png (easylist.txt: 35153) -.wordwebonline.com/img/122x36ccbanner\.png -# ||wordreference.com/*/publ/ (easylist.txt: 35152) -.wordreference.com/.*/publ/ -# ||worddictionary.co.uk/static//inpage-affinity/ (easylist.txt: 35145) -.worddictionary.co.uk/static//inpage-affinity/ -# ||wolf-howl.com/wp-content/banners/ (easylist.txt: 35144) -.wolf-howl.com/wp-content/banners/ -# ||wnst.net/img/coupon/ (easylist.txt: 35143) -.wnst.net/img/coupon/ -# ||wnpv1440.com/images/banners/ (easylist.txt: 35142) -.wnpv1440.com/images/banners/ -# ||wned.org/underwriting/sponsors/ (easylist.txt: 35141) -.wned.org/underwriting/sponsors/ -# ||wlrfm.com/images/banners/ (easylist.txt: 35140) -.wlrfm.com/images/banners/ -# ||wlcr.org/banners/ (easylist.txt: 35139) -.wlcr.org/banners/ -# ||wksu.org/graphics/banners/ (easylist.txt: 35138) -.wksu.org/graphics/banners/ -# ||wjunction.com/images/rectangle (easylist.txt: 35137) -.wjunction.com/images/rectangle -# ||wjunction.com/images/constant/ (easylist.txt: 35136) -.wjunction.com/images/constant/ -# ||wjunction.com/images/468x60 (easylist.txt: 35135) -.wjunction.com/images/468x60 -# ||wjie.org/media/img/sponsers/ (easylist.txt: 35134) -.wjie.org/media/img/sponsers/ -# ||witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ (easylist.txt: 35133) -.witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ -# ||witbankspurs.co.za/layout_images/sponsor.jpg (easylist.txt: 35132) -.witbankspurs.co.za/layout_images/sponsor\.jpg -# ||wiretarget.com/a_$subdocument (easylist.txt: 35130) -.wiretarget.com/a_ -# ||wirenh.com/images/banners/ (easylist.txt: 35129) -.wirenh.com/images/banners/ -# ||wired.com/images/xrail/*/samsung_layar_ (easylist.txt: 35128) -.wired.com/images/xrail/.*/samsung_layar_ -# ||wipfilms.net^*/instant-video.png (easylist.txt: 35127) -.wipfilms.net/.*/instant-video\.png -# ||wipfilms.net^*/amazon.png (easylist.txt: 35126) -.wipfilms.net/.*/amazon\.png -# ||winsupersite.com^*/roadblock. (easylist.txt: 35125) -.winsupersite.com/.*/roadblock\. -# ||winpcap.org/assets/image/banner_ (easylist.txt: 35124) -.winpcap.org/assets/image/banner_ -# ||winnfm.com/grfx/banners/ (easylist.txt: 35123) -.winnfm.com/grfx/banners/ -# ||windowsitpro.com^*/roadblock. (easylist.txt: 35122) -.windowsitpro.com/.*/roadblock\. -# ||wildtangent.com/leaderboard? (easylist.txt: 35120) -.wildtangent.com/leaderboard\? -# ||wikinvest.com/wikinvest/images/zap_trade_ (easylist.txt: 35119) -.wikinvest.com/wikinvest/images/zap_trade_ -# ||wikinvest.com/wikinvest/ads/ (easylist.txt: 35118) -.wikinvest.com/wikinvest/ads/ -# ||wikia.com/__varnish_ (easylist.txt: 35117) -.wikia.com/__varnish_ -# ||wiilovemario.com/images/fc-twin-play-nes-snes-cartridges.png (easylist.txt: 35116) -.wiilovemario.com/images/fc-twin-play-nes-snes-cartridges\.png -# ||widih.org/banners/ (easylist.txt: 35115) -.widih.org/banners/ -# ||widget.directory.dailycommercial.com^ (easylist.txt: 35114) -.widget.directory.dailycommercial.com -# ||whoownsfacebook.com/images/topbanner.gif (easylist.txt: 35112) -.whoownsfacebook.com/images/topbanner\.gif -# ||whois.net/images/banners/ (easylist.txt: 35111) -.whois.net/images/banners/ -# ||whois.net/dombot.php? (easylist.txt: 35110) -.whois.net/dombot\.php\? -# ||whoer.net/images/vpnlab20_ (easylist.txt: 35109) -.whoer.net/images/vpnlab20_ -# ||whoer.net/images/vlab50_ (easylist.txt: 35108) -.whoer.net/images/vlab50_ -# ||whoer.net/images/pb/ (easylist.txt: 35107) -.whoer.net/images/pb/ -# ||who.is/images/domain-transfer2.jpg (easylist.txt: 35106) -.who.is/images/domain-transfer2\.jpg -# ||whitepages.ae/images/UI/WS/ (easylist.txt: 35105) -.whitepages.ae/images/UI/WS/ -# ||whitepages.ae/images/UI/SRB/ (easylist.txt: 35104) -.whitepages.ae/images/UI/SRB/ -# ||whitepages.ae/images/UI/SRA/ (easylist.txt: 35103) -.whitepages.ae/images/UI/SRA/ -# ||whitepages.ae/images/UI/SR/ (easylist.txt: 35102) -.whitepages.ae/images/UI/SR/ -# ||whitepages.ae/images/UI/MR/ (easylist.txt: 35101) -.whitepages.ae/images/UI/MR/ -# ||whitepages.ae/images/UI/LB/ (easylist.txt: 35100) -.whitepages.ae/images/UI/LB/ -# ||whitepages.ae/images/UI/FC/ (easylist.txt: 35099) -.whitepages.ae/images/UI/FC/ -# ||whistleout.com.au/imagelibrary/ads/wo_skin_ (easylist.txt: 35098) -.whistleout.com.au/imagelibrary/ads/wo_skin_ -# ||whispersinthecorridors.com/banner (easylist.txt: 35097) -.whispersinthecorridors.com/banner -# ||wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system.png (easylist.txt: 35096) -.wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system\.png -# ||wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100.gif (easylist.txt: 35095) -.wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100\.gif -# ||wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila.jpg (easylist.txt: 35094) -.wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila\.jpg -# ||wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup.gif (easylist.txt: 35093) -.wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup\.gif -# ||whdh.com/images/promotions/ (easylist.txt: 35092) -.whdh.com/images/promotions/ -# ||whatsthescore.com/logos/icons/bookmakers/ (easylist.txt: 35091) -.whatsthescore.com/logos/icons/bookmakers/ -# ||whatsontv.co.uk^*/promo/ (easylist.txt: 35090) -.whatsontv.co.uk/.*/promo/ -# ||whatsonstage.com/images/sitetakeover/ (easylist.txt: 35089) -.whatsonstage.com/images/sitetakeover/ -# ||whatsonnamibia.com/images/banners/ (easylist.txt: 35088) -.whatsonnamibia.com/images/banners/ -# ||whatson.co.za/img/hp.png (easylist.txt: 35087) -.whatson.co.za/img/hp\.png -# ||whatsnewonnetflix.com/assets/blockless-ad- (easylist.txt: 35086) -.whatsnewonnetflix.com/assets/blockless-ad- -# ||whatsabyte.com/images/Acronis_Banners/ (easylist.txt: 35085) -.whatsabyte.com/images/Acronis_Banners/ -# ||whatreallyhappened.com/webpageimages/banners/uwslogosm.jpg (easylist.txt: 35084) -.whatreallyhappened.com/webpageimages/banners/uwslogosm\.jpg -# ||whatmyip.co/images/speedcoin_ (easylist.txt: 35083) -.whatmyip.co/images/speedcoin_ -# ||whatmobile.com.pk/banners/ (easylist.txt: 35082) -.whatmobile.com.pk/banners/ -# ||whatismyip.org/ez_display_au_fillslot.js (easylist.txt: 35081) -.whatismyip.org/ez_display_au_fillslot\.js -# ||whatismyip.com/images/vyprvpn_ (easylist.txt: 35080) -.whatismyip.com/images/vyprvpn_ -# ||whatismyip.com/images/VYPR__125x125.png (easylist.txt: 35079) -.whatismyip.com/images/VYPR__125x125\.png -# ||wgfaradio.com/images/banners/ (easylist.txt: 35078) -.wgfaradio.com/images/banners/ -# ||werlv.com^*banner (easylist.txt: 35077) -.werlv.com/.*banner -# ||weknowmemes.com/sidesky. (easylist.txt: 35076) -.weknowmemes.com/sidesky\. -# ||wegoted.com/uploads/sponsors/ (easylist.txt: 35075) -.wegoted.com/uploads/sponsors/ -# ||wegoted.com/uploads/memsponsor/ (easylist.txt: 35074) -.wegoted.com/uploads/memsponsor/ -# ||wegoted.com/includes/biogreen.swf (easylist.txt: 35073) -.wegoted.com/includes/biogreen\.swf -# ||weei.com^*_banner.jpg (easylist.txt: 35072) -.weei.com/.*_banner\.jpg -# ||weei.com^*/sponsors/ (easylist.txt: 35071) -.weei.com/.*/sponsors/ -# ||weddingtv.com/src/baners/ (easylist.txt: 35070) -.weddingtv.com/src/baners/ -# ||webstatschecker.com/links/ (easylist.txt: 35069) -.webstatschecker.com/links/ -# ||websitehome.co.uk/seoheap/cheap-web-hosting.gif (easylist.txt: 35068) -.websitehome.co.uk/seoheap/cheap-web-hosting\.gif -# ||webnewswire.com/images/banner (easylist.txt: 35067) -.webnewswire.com/images/banner -# ||webmastercrunch.com^*/hostgator300x30.gif (easylist.txt: 35066) -.webmastercrunch.com/.*/hostgator300x30\.gif -# ||webmaster.extabit.com^ (easylist.txt: 35065) -.webmaster.extabit.com -# ||webmailnotifier.mozdev.org/etc/af/ (easylist.txt: 35064) -.webmailnotifier.mozdev.org/etc/af/ -# ||webhostranking.com/images/bluehost-coupon-banner-1.gif (easylist.txt: 35063) -.webhostranking.com/images/bluehost-coupon-banner-1\.gif -# ||webhostingtalk.com/images/style/lw-header.png (easylist.txt: 35062) -.webhostingtalk.com/images/style/lw-header\.png -# ||webhostingtalk.com/images/style/lw-160x400.jpg (easylist.txt: 35061) -.webhostingtalk.com/images/style/lw-160x400\.jpg -# ||webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ (easylist.txt: 35060) -.webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ -# ||webdesignerdepot.com/wp-content/plugins/md-popup/ (easylist.txt: 35059) -.webdesignerdepot.com/wp-content/plugins/md-popup/ -# ||weatheroffice.gc.ca/banner/ (easylist.txt: 35058) -.weatheroffice.gc.ca/banner/ -# ||weatherbug.com^*/ova-jw.swf$object-subrequest (easylist.txt: 35057) -.weatherbug.com/.*/ova-jw\.swf -# ||weather365.net/images/banners/ (easylist.txt: 35056) -.weather365.net/images/banners/ -# ||wearetennis.com/img/common/logo_bnp_ (easylist.txt: 35055) -.wearetennis.com/img/common/logo_bnp_ -# ||wearetennis.com/img/common/bnp-logo.png (easylist.txt: 35054) -.wearetennis.com/img/common/bnp-logo\.png -# ||wearetennis.com/img/common/bnp-logo- (easylist.txt: 35053) -.wearetennis.com/img/common/bnp-logo- -# ||wealthycashmagnet.com/upload/banners/ (easylist.txt: 35052) -.wealthycashmagnet.com/upload/banners/ -# ||wdwinfo.com/js/swap.js (easylist.txt: 35051) -.wdwinfo.com/js/swap\.js -# ||wctk.com/banner_rotator.php (easylist.txt: 35050) -.wctk.com/banner_rotator\.php -# ||wcbm.com/includes/clientgraphics/ (easylist.txt: 35049) -.wcbm.com/includes/clientgraphics/ -# ||wbj.pl/im/partners.gif (easylist.txt: 35048) -.wbj.pl/im/partners\.gif -# ||wbgo.org^*/banners/ (easylist.txt: 35047) -.wbgo.org/.*/banners/ -# ||wbal.com/absolutebm/banners/ (easylist.txt: 35046) -.wbal.com/absolutebm/banners/ -# ||way2sms.com/w2sv5/js/fo_ (easylist.txt: 35045) -.way2sms.com/w2sv5/js/fo_ -# ||wavelengthcalculator.com/banner (easylist.txt: 35044) -.wavelengthcalculator.com/banner -# ||waterford-today.ie^*/banners/ (easylist.txt: 35043) -.waterford-today.ie/.*/banners/ -# ||watchwwelive.net^*/long_ban2.jpg (easylist.txt: 35042) -.watchwwelive.net/.*/long_ban2\.jpg -# ||watchwwelive.net^*/big_ban.gif (easylist.txt: 35041) -.watchwwelive.net/.*/big_ban\.gif -# ||watchuseek.com/site/forabar/zixenflashwatch.swf (easylist.txt: 35040) -.watchuseek.com/site/forabar/zixenflashwatch\.swf -# ||watchuseek.com/media/wus-image.jpg (easylist.txt: 35039) -.watchuseek.com/media/wus-image\.jpg -# ||watchuseek.com/media/longines_legenddiver.gif (easylist.txt: 35038) -.watchuseek.com/media/longines_legenddiver\.gif -# ||watchuseek.com/media/clerc-final.jpg (easylist.txt: 35037) -.watchuseek.com/media/clerc-final\.jpg -# ||watchuseek.com/media/banner_ (easylist.txt: 35036) -.watchuseek.com/media/banner_ -# ||watchuseek.com/media/1900x220_ (easylist.txt: 35035) -.watchuseek.com/media/1900x220_ -# ||watchuseek.com/media/*_250x250 (easylist.txt: 35034) -.watchuseek.com/media/.*_250x250 -# ||watchuseek.com/media/*-banner- (easylist.txt: 35033) -.watchuseek.com/media/.*-banner- -# ||watchuseek.com/flashwatchwus.swf (easylist.txt: 35032) -.watchuseek.com/flashwatchwus\.swf -# ||watchseries.eu/js/csspopup.js (easylist.txt: 35031) -.watchseries.eu/js/csspopup\.js -# ||watchseries.eu/images/download.png (easylist.txt: 35030) -.watchseries.eu/images/download\.png -# ||watchseries.eu/images/affiliate_buzz.gif (easylist.txt: 35029) -.watchseries.eu/images/affiliate_buzz\.gif -# ||watchop.com/player/watchonepiece-gao-gamebox.swf (easylist.txt: 35028) -.watchop.com/player/watchonepiece-gao-gamebox\.swf -# ||watchfreemovies.ch/js/lmst.js (easylist.txt: 35027) -.watchfreemovies.ch/js/lmst\.js -# ||watchcartoononline.com^*/530x90. (easylist.txt: 35026) -.watchcartoononline.com/.*/530x90\. -# ||watchcartoononline.com/inc/siteskin. (easylist.txt: 35025) -.watchcartoononline.com/inc/siteskin\. -# ||washtimes.net/banners/ (easylist.txt: 35024) -.washtimes.net/banners/ -# ||washtimes.com/static/images/SelectAutoWeather_v2.gif (easylist.txt: 35023) -.washtimes.com/static/images/SelectAutoWeather_v2\.gif -# ||washtimes.com/js/dart. (easylist.txt: 35022) -.washtimes.com/js/dart\. -# ||washpost.com^*/cmag_sponsor3.php? (easylist.txt: 35021) -.washpost.com/.*/cmag_sponsor3\.php\? -# ||washingtonpost.com/wp-srv/javascript/piggy-back-on-ads.js (easylist.txt: 35020) -.washingtonpost.com/wp-srv/javascript/piggy-back-on-ads\.js -# ||warriorforum.com/vbppb/ (easylist.txt: 35019) -.warriorforum.com/vbppb/ -# ||wardsauto.com^*/pm_doubleclick/ (easylist.txt: 35018) -.wardsauto.com/.*/pm_doubleclick/ -# ||waoanime.tv/playerimg.jpg (easylist.txt: 35017) -.waoanime.tv/playerimg\.jpg -# ||wantitall.co.za/images/banners/ (easylist.txt: 35016) -.wantitall.co.za/images/banners/ -# ||wantedinmilan.com/images/banner/ (easylist.txt: 35015) -.wantedinmilan.com/images/banner/ -# ||walshfreedom.com^*/liberty-luxury.png (easylist.txt: 35013) -.walshfreedom.com/.*/liberty-luxury\.png -# ||walshfreedom.com^*-300x250. (easylist.txt: 35012) -.walshfreedom.com/.*-300x250\. -# ||wallpaper.com/themes/takeovers/$image (easylist.txt: 35011) -.wallpaper.com/themes/takeovers/ -# ||wadldetroit.com/images/banners/ (easylist.txt: 35010) -.wadldetroit.com/images/banners/ -# ||waamradio.com/images/sponsors/ (easylist.txt: 35009) -.waamradio.com/images/sponsors/ -# ||w.homes.yahoo.net^ (easylist.txt: 35008) -.w.homes.yahoo.net -# ||vpsboard.com/display/ (easylist.txt: 35007) -.vpsboard.com/display/ -# ||vox-cdn.com/campaigns_images/ (easylist.txt: 35006) -.vox-cdn.com/campaigns_images/ -# ||vosizneias.com/perms/ (easylist.txt: 35005) -.vosizneias.com/perms/ -# ||vortez.co.uk^*skyscraper.jpg (easylist.txt: 35004) -.vortez.co.uk/.*skyscraper\.jpg -# ||vortez.co.uk^*120x600.swf (easylist.txt: 35003) -.vortez.co.uk/.*120x600\.swf -# ||vonradio.com/grfx/banners/ (easylist.txt: 35002) -.vonradio.com/grfx/banners/ -# ||vondroid.com/site-img/*-adv-ex- (easylist.txt: 35001) -.vondroid.com/site-img/.*-adv-ex- -# ||voicesvancouver.com/images/stories/banners/ (easylist.txt: 35000) -.voicesvancouver.com/images/stories/banners/ -# ||voicesvancouver.com/images/leaderBoards/ (easylist.txt: 34999) -.voicesvancouver.com/images/leaderBoards/ -# ||voicestoronto.com/images/stories/banners/ (easylist.txt: 34998) -.voicestoronto.com/images/stories/banners/ -# ||voicestoronto.com/images/leaderBoards/ (easylist.txt: 34997) -.voicestoronto.com/images/leaderBoards/ -# ||voicesottawa.com/images/stories/banners/ (easylist.txt: 34996) -.voicesottawa.com/images/stories/banners/ -# ||voicesottawa.com/images/leaderBoards/ (easylist.txt: 34995) -.voicesottawa.com/images/leaderBoards/ -# ||voicesedmonton.com/images/stories/banners/ (easylist.txt: 34994) -.voicesedmonton.com/images/stories/banners/ -# ||voicesedmonton.com/images/leaderBoards/ (easylist.txt: 34993) -.voicesedmonton.com/images/leaderBoards/ -# ||voicescalgary.com/images/stories/banners/ (easylist.txt: 34992) -.voicescalgary.com/images/stories/banners/ -# ||voicescalgary.com/images/leaderBoards/ (easylist.txt: 34991) -.voicescalgary.com/images/leaderBoards/ -# ||vogue.in/node/*?section= (easylist.txt: 34990) -.vogue.in/node/.*\?section= -# ||vodo.net/static/images/promotion/utorrent_plus_buy.png (easylist.txt: 34989) -.vodo.net/static/images/promotion/utorrent_plus_buy\.png -# ||vodlocker.com/images/acenter.png (easylist.txt: 34988) -.vodlocker.com/images/acenter\.png -# ||vnbitcoin.org/gawminers.png (easylist.txt: 34987) -.vnbitcoin.org/gawminers\.png -# ||vnbitcoin.org/140_350.jpg (easylist.txt: 34986) -.vnbitcoin.org/140_350\.jpg -# ||vitalmtb.com/assets/vital.aba- (easylist.txt: 34985) -.vitalmtb.com/assets/vital\.aba- -# ||vitalmtb.com/assets/ablock- (easylist.txt: 34984) -.vitalmtb.com/assets/ablock- -# ||vitalmtb.com/api/ (easylist.txt: 34983) -.vitalmtb.com/api/ -# ||vitalfootball.co.uk^*/partners/ (easylist.txt: 34982) -.vitalfootball.co.uk/.*/partners/ -# ||vitalfootball.co.uk/app-interstitial/ (easylist.txt: 34981) -.vitalfootball.co.uk/app-interstitial/ -# ||vistandpoint.com/images/banners/ (easylist.txt: 34980) -.vistandpoint.com/images/banners/ -# ||virtualtourist.com/adp/ (easylist.txt: 34979) -.virtualtourist.com/adp/ -# ||virtual-hideout.net/banner (easylist.txt: 34978) -.virtual-hideout.net/banner -# ||virginislandsthisweek.com/images/728- (easylist.txt: 34977) -.virginislandsthisweek.com/images/728- -# ||virginislandsthisweek.com/images/336- (easylist.txt: 34976) -.virginislandsthisweek.com/images/336- -# ||vipleague.se/js/vip.js (easylist.txt: 34975) -.vipleague.se/js/vip\.js -# ||vipleague.me/blackwhite/ (easylist.txt: 34974) -.vipleague.me/blackwhite/ -# ||vipi.tv/ad.php (easylist.txt: 34973) -.vipi.tv/ad\.php -# ||vipbox.tv/js/layer.js (easylist.txt: 34972) -.vipbox.tv/js/layer\.js -# ||vipbox.tv/js/layer- (easylist.txt: 34971) -.vipbox.tv/js/layer- -# ||vipbox.tv/blackwhite/ (easylist.txt: 34970) -.vipbox.tv/blackwhite/ -# ||vipbox.sx/blackwhite/ (easylist.txt: 34969) -.vipbox.sx/blackwhite/ -# ||vipbox.eu/pu/ (easylist.txt: 34968) -.vipbox.eu/pu/ -# ||vipbox.co^*/pu.js (easylist.txt: 34967) -.vipbox.co/.*/pu\.js -# ||vipbox.co/js/bn.js (easylist.txt: 34966) -.vipbox.co/js/bn\.js -# ||vinaora.com/xmedia/hosting/ (easylist.txt: 34965) -.vinaora.com/xmedia/hosting/ -# ||villagevoice.com/img/VDotDFallback-large.gif (easylist.txt: 34964) -.villagevoice.com/img/VDotDFallback-large\.gif -# ||viewdocsonline.com/images/banners/ (easylist.txt: 34963) -.viewdocsonline.com/images/banners/ -# ||vidvib.com/vidvibpopb. (easylist.txt: 34962) -.vidvib.com/vidvibpopb\. -# ||vidvib.com/vidvibpopa. (easylist.txt: 34961) -.vidvib.com/vidvibpopa\. -# ||vidspot.net^*/pu.js (easylist.txt: 34960) -.vidspot.net/.*/pu\.js -# ||vidspot.net/s/xfs.min.js? (easylist.txt: 34958) -.vidspot.net/s/xfs\.min\.js\? -# ||vidspot.net/player/ova-jw.swf$object-subrequest (easylist.txt: 34957) -.vidspot.net/player/ova-jw\.swf -# ||vidhog.com/images/download_banner_ (easylist.txt: 34955) -.vidhog.com/images/download_banner_ -# ||videowood.tv/pop2 (easylist.txt: 34954) -.videowood.tv/pop2 -# ||videowood.tv/assets/js/popup.js (easylist.txt: 34953) -.videowood.tv/assets/js/popup\.js -# ||videowood.tv/ads (easylist.txt: 34952) -.videowood.tv/ads -# ||videositeprofits.com^*/banner.jpg (easylist.txt: 34951) -.videositeprofits.com/.*/banner\.jpg -# ||videos.mediaite.com/decor/live/white_alpha_60. (easylist.txt: 34950) -.videos.mediaite.com/decor/live/white_alpha_60\. -# ||videos.com/click? (easylist.txt: 34949) -.videos.com/click\? -# ||videopediaworld.com/nuevo/plugins/midroll. (easylist.txt: 34948) -.videopediaworld.com/nuevo/plugins/midroll\. -# ||videolan.org/images/events/animated_packliberte.gif (easylist.txt: 34947) -.videolan.org/images/events/animated_packliberte\.gif -# ||videogamesblogger.com^*/scripts/takeover.js (easylist.txt: 34946) -.videogamesblogger.com/.*/scripts/takeover\.js -# ||videogamesblogger.com/takeover.html (easylist.txt: 34945) -.videogamesblogger.com/takeover\.html -# ||videogamer.com^*/css/skins/$stylesheet (easylist.txt: 34944) -.videogamer.com/.*/css/skins/ -# ||videogamer.com/videogamer*/skins/ (easylist.txt: 34943) -.videogamer.com/videogamer.*/skins/ -# ||videodownloadtoolbar.com/fancybox/ (easylist.txt: 34942) -.videodownloadtoolbar.com/fancybox/ -# ||videodorm.org/player/yume-h.swf$object-subrequest (easylist.txt: 34941) -.videodorm.org/player/yume-h\.swf -# ||videobull.to/wp-content/themes/videozoom/images/stream-hd-button.gif (easylist.txt: 34940) -.videobull.to/wp-content/themes/videozoom/images/stream-hd-button\.gif -# ||videobull.to/wp-content/themes/videozoom/images/gotowatchnow.png (easylist.txt: 34939) -.videobull.to/wp-content/themes/videozoom/images/gotowatchnow\.png -# ||videobull.com^*/amazon_ico.png (easylist.txt: 34938) -.videobull.com/.*/amazon_ico\.png -# ||videobull.com/wp-content/themes/*/watch-now.jpg (easylist.txt: 34937) -.videobull.com/wp-content/themes/.*/watch-now\.jpg -# ||videobash.com/images/playboy/ (easylist.txt: 34936) -.videobash.com/images/playboy/ -# ||videobam.com/this-pays-for-bandwidth/ (easylist.txt: 34935) -.videobam.com/this-pays-for-bandwidth/ -# ||videobam.com/images/banners/ (easylist.txt: 34934) -.videobam.com/images/banners/ -# ||video44.net/gogo/yume-h.swf$object-subrequest (easylist.txt: 34933) -.video44.net/gogo/yume-h\.swf -# ||video44.net/gogo/qc.js (easylist.txt: 34932) -.video44.net/gogo/qc\.js -# ||video44.net/gogo/a_d_s. (easylist.txt: 34931) -.video44.net/gogo/a_d_s\. -# ||video2mp3.net/images/download_button.png (easylist.txt: 34930) -.video2mp3.net/images/download_button\.png -# ||video.abc.com^*/promos/$object-subrequest (easylist.txt: 34928) -.video.abc.com/.*/promos/ -# ||video.abc.com^*/ads/ (easylist.txt: 34927) -.video.abc.com/.*/ads/ -# ||video-cdn.abcnews.com/ad_$object-subrequest (easylist.txt: 34925) -.video-cdn.abcnews.com/ad_ -# ||vidds.net/pads*.js (easylist.txt: 34924) -.vidds.net/pads.*\.js -# ||vidbull.com/tags/vidbull_bnr.png (easylist.txt: 34923) -.vidbull.com/tags/vidbull_bnr\.png -# ||vice-ads-cdn.vice.com^ (easylist.txt: 34922) -.vice-ads-cdn.vice.com -# ||viator.com/analytics/percent_mobile_hash.js (easylist.txt: 34921) -.viator.com/analytics/percent_mobile_hash\.js -# ||viamichelin.co.uk/htm/cmn/afs*.htm? (easylist.txt: 34920) -.viamichelin.co.uk/htm/cmn/afs.*\.htm\? -# ||viadeo.com/pub/ (easylist.txt: 34919) -.viadeo.com/pub/ -# ||vhd.me/custom/interstitial (easylist.txt: 34918) -.vhd.me/custom/interstitial -# ||vfs-uk-in.com/images/webbanner- (easylist.txt: 34917) -.vfs-uk-in.com/images/webbanner- -# ||verzing.com/popup (easylist.txt: 34916) -.verzing.com/popup -# ||verzend.be/images/download.png (easylist.txt: 34915) -.verzend.be/images/download\.png -# ||verizon.com/ads/ (easylist.txt: 34914) -.verizon.com/ads/ -# ||verdict.abc.go.com^ (easylist.txt: 34913) -.verdict.abc.go.com -# ||vehix.com/tags/default.imu?$subdocument (easylist.txt: 34912) -.vehix.com/tags/default\.imu\? -# ||vcdq.com^*/ad.html (easylist.txt: 34911) -.vcdq.com/.*/ad\.html -# ||vcdq.com/tag.html (easylist.txt: 34910) -.vcdq.com/tag\.html -# ||vault.starproperty.my/widget/ (easylist.txt: 34909) -.vault.starproperty.my/widget/ -# ||vasco.co.za/images/banners/ (easylist.txt: 34908) -.vasco.co.za/images/banners/ -# ||vanityfair.com/custom/ebook-ad-bookbiz (easylist.txt: 34907) -.vanityfair.com/custom/ebook-ad-bookbiz -# ||valuewalk.com//?$script (easylist.txt: 34906) -# ||valleyplanet.com/images/banners/ (easylist.txt: 34905) -.valleyplanet.com/images/banners/ -# ||val.fm/images/banners/ (easylist.txt: 34904) -.val.fm/images/banners/ -# ||uvnc.com/img/housecall. (easylist.txt: 34903) -.uvnc.com/img/housecall\. -# ||ustream.tv/takeover/ (easylist.txt: 34902) -.ustream.tv/takeover/ -# ||usforacle.com^*-300x250.gif (easylist.txt: 34899) -.usforacle.com/.*-300x250\.gif -# ||usenet-crawler.com/purevpn.png (easylist.txt: 34898) -.usenet-crawler.com/purevpn\.png -# ||usenet-crawler.com/astraweb.png (easylist.txt: 34897) -.usenet-crawler.com/astraweb\.png -# ||uschess.org/images/banners/ (easylist.txt: 34896) -.uschess.org/images/banners/ -# ||usatodayhss.com/images/*skin (easylist.txt: 34895) -.usatodayhss.com/images/.*skin -# ||usatoday.net^*/lb-agate.png (easylist.txt: 34894) -.usatoday.net/.*/lb-agate\.png -# ||usanetwork.com/_js/ad.js (easylist.txt: 34893) -.usanetwork.com/_js/ad\.js -# ||urlgone.com^*/banners/ (easylist.txt: 34892) -.urlgone.com/.*/banners/ -# ||urlcash.org/newpop.js (easylist.txt: 34891) -.urlcash.org/newpop\.js -# ||urlcash.org/banners/ (easylist.txt: 34890) -.urlcash.org/banners/ -# ||urlcash.org/abp/ (easylist.txt: 34889) -.urlcash.org/abp/ -# ||urlcash.net/random*.php (easylist.txt: 34888) -.urlcash.net/random.*\.php -# ||urlcash.net/newpop.js (easylist.txt: 34887) -.urlcash.net/newpop\.js -# ||urethanes-technology-international.com^*/banners/ (easylist.txt: 34886) -.urethanes-technology-international.com/.*/banners/ -# ||urbanvelo.org/sidebarbanner/ (easylist.txt: 34885) -.urbanvelo.org/sidebarbanner/ -# ||urbanfonts.com/images/fonts_com/ (easylist.txt: 34884) -.urbanfonts.com/images/fonts_com/ -# ||urbanchristiannews.com/ucn/sidebar- (easylist.txt: 34883) -.urbanchristiannews.com/ucn/sidebar- -# ||uptobox.com/images/downloaden.gif (easylist.txt: 34882) -.uptobox.com/images/downloaden\.gif -# ||uptobox.com/images/download.png (easylist.txt: 34881) -.uptobox.com/images/download\.png -# ||uptobox.com/ayl.js (easylist.txt: 34880) -.uptobox.com/ayl\.js -# ||uploadlw.com^*/download_button.gif (easylist.txt: 34879) -.uploadlw.com/.*/download_button\.gif -# ||uploadlw.com^*/download-now (easylist.txt: 34878) -.uploadlw.com/.*/download-now -# ||uploadlw.com/js/cash.js (easylist.txt: 34877) -.uploadlw.com/js/cash\.js -# ||uploading.com/static/banners/ (easylist.txt: 34876) -.uploading.com/static/banners/ -# ||uploadedtrend.com/turboflirt.gif (easylist.txt: 34875) -.uploadedtrend.com/turboflirt\.gif -# ||uploaded.to/img/e/ad/ (easylist.txt: 34874) -.uploaded.to/img/e/ad/ -# ||uploaded.net/js2/downloadam.js (easylist.txt: 34873) -.uploaded.net/js2/downloadam\.js -# ||uploadcore.com/images/*-Rad.png (easylist.txt: 34872) -.uploadcore.com/images/.*-Rad\.png -# ||uploadcore.com/images/*-mad.jpg (easylist.txt: 34871) -.uploadcore.com/images/.*-mad\.jpg -# ||uploadcore.com/images/*-Lad.jpg (easylist.txt: 34870) -.uploadcore.com/images/.*-Lad\.jpg -# ||uploadbaz.com^*-728-$object (easylist.txt: 34869) -.uploadbaz.com/.*-728- -# ||upload.ee/image/*/B_descarga_tipo12.gif (easylist.txt: 34868) -.upload.ee/image/.*/B_descarga_tipo12\.gif -# ||universalhub.com/bban/ (easylist.txt: 34867) -.universalhub.com/bban/ -# ||uniquefm.gm/images/banners/ (easylist.txt: 34866) -.uniquefm.gm/images/banners/ -# ||uniindia.net/eng/banners/ (easylist.txt: 34865) -.uniindia.net/eng/banners/ -# ||uniindia.com/eng/bannertopright.php (easylist.txt: 34864) -.uniindia.com/eng/bannertopright\.php -# ||uniindia.com/eng/banners/ (easylist.txt: 34863) -.uniindia.com/eng/banners/ -# ||uniindia.com/eng/bannerrightside.php (easylist.txt: 34862) -.uniindia.com/eng/bannerrightside\.php -# ||uniindia.com/eng/bannerheader.php (easylist.txt: 34861) -.uniindia.com/eng/bannerheader\.php -# ||uniindia.com/eng/bannerbottom.php (easylist.txt: 34860) -.uniindia.com/eng/bannerbottom\.php -# ||unicast.msn.com^ (easylist.txt: 34859) -.unicast.msn.com -# ||unicast.ign.com^ (easylist.txt: 34858) -.unicast.ign.com -# ||uncoached.com/smallpics/ashley (easylist.txt: 34857) -.uncoached.com/smallpics/ashley -# ||unblockt.com/scrape_if.php (easylist.txt: 34856) -.unblockt.com/scrape_if\.php -# ||unblockedpiratebay.com/external/$image (easylist.txt: 34855) -.unblockedpiratebay.com/external/ -# ||unawave.de/templates/unawave/a/$image (easylist.txt: 34854) -.unawave.de/templates/unawave/a/ -# ||unawave.de/medien/wbwso-$image (easylist.txt: 34853) -.unawave.de/medien/wbwso- -# ||unawave.de/medien/ama/$image (easylist.txt: 34852) -.unawave.de/medien/ama/ -# ||unawave.de/medien/a/w-ama-$image (easylist.txt: 34851) -.unawave.de/medien/a/w-ama- -# ||umbrelladetective.com/uploaded_files/banners/ (easylist.txt: 34850) -.umbrelladetective.com/uploaded_files/banners/ -# ||ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners.swf (easylist.txt: 34849) -.ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners\.swf -# ||ultimatewindowssecurity.com/images/spale.swf (easylist.txt: 34848) -.ultimatewindowssecurity.com/images/spale\.swf -# ||ultimatewindowssecurity.com/images/patchzone-resource-80x490.jpg (easylist.txt: 34847) -.ultimatewindowssecurity.com/images/patchzone-resource-80x490\.jpg -# ||ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool.jpg (easylist.txt: 34846) -.ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool\.jpg -# ||ultimatehandyman.org/bh1.gif (easylist.txt: 34845) -.ultimatehandyman.org/bh1\.gif -# ||ultimatehandyman.co.uk/ban.txt (easylist.txt: 34844) -.ultimatehandyman.co.uk/ban\.txt -# ||ultimate-guitar.com^*/takeover/ (easylist.txt: 34843) -.ultimate-guitar.com/.*/takeover/ -# ||ultimate-guitar.com/bgd/main_$image (easylist.txt: 34842) -.ultimate-guitar.com/bgd/main_ -# ||ultimate-guitar.com/_img/promo/takeovers/ (easylist.txt: 34841) -.ultimate-guitar.com/_img/promo/takeovers/ -# ||ultimate-guitar.com/_img/bgd/bgd_main_ (easylist.txt: 34840) -.ultimate-guitar.com/_img/bgd/bgd_main_ -# ||ukradioplayer.kerrangradio.co.uk^*/icon_apple.png (easylist.txt: 34839) -.ukradioplayer.kerrangradio.co.uk/.*/icon_apple\.png -# ||ukradioplayer.kerrangradio.co.uk^*/icon_amazon.png (easylist.txt: 34838) -.ukradioplayer.kerrangradio.co.uk/.*/icon_amazon\.png -# ||ukfindit.com/wipedebtclean.png (easylist.txt: 34837) -.ukfindit.com/wipedebtclean\.png -# ||ukfindit.com/images/*_125x125.gif (easylist.txt: 34836) -.ukfindit.com/images/.*_125x125\.gif -# ||ukcast.co/rbt728.php (easylist.txt: 34835) -.ukcast.co/rbt728\.php -# ||ukcast.co/pubfit.php (easylist.txt: 34834) -.ukcast.co/pubfit\.php -# ||ukcampsite.co.uk/banners/ (easylist.txt: 34833) -.ukcampsite.co.uk/banners/ -# ||ukbusinessforums.co.uk/adblock/ (easylist.txt: 34832) -.ukbusinessforums.co.uk/adblock/ -# ||uk-mkivs.net/uploads/banners/ (easylist.txt: 34831) -.uk-mkivs.net/uploads/banners/ -# ||ujfm.co.za/images/banners/ (easylist.txt: 34830) -.ujfm.co.za/images/banners/ -# ||uimserv.net^ (easylist.txt: 34829) -.uimserv.net -# ||ugo.com/takeover/ (easylist.txt: 34828) -.ugo.com/takeover/ -# ||ufonts.com/gfx/uFonts_Banner5.png (easylist.txt: 34827) -.ufonts.com/gfx/uFonts_Banner5\.png -# ||ubuntugeek.com^*/rocket.js (easylist.txt: 34826) -.ubuntugeek.com/.*/rocket\.js -# ||ubuntugeek.com/images/ubuntu1.png (easylist.txt: 34825) -.ubuntugeek.com/images/ubuntu1\.png -# ||ubuntugeek.com/images/od.jpg (easylist.txt: 34824) -.ubuntugeek.com/images/od\.jpg -# ||ubuntugeek.com/images/dnsstock.png (easylist.txt: 34823) -.ubuntugeek.com/images/dnsstock\.png -# ||uberhumor.com/iframe$subdocument (easylist.txt: 34822) -.uberhumor.com/iframe -# ||uberhumor.com/*btf.html$subdocument (easylist.txt: 34821) -.uberhumor.com/.*btf\.html -# ||ua.badongo.com^ (easylist.txt: 34820) -.ua.badongo.com -# ||u.tv/utvplayer/jwplayer/ova.swf (easylist.txt: 34819) -.u.tv/utvplayer/jwplayer/ova\.swf -# ||u.tv/images/sponsors/ (easylist.txt: 34818) -.u.tv/images/sponsors/ -# ||u.tv/images/misc/progressive.png (easylist.txt: 34817) -.u.tv/images/misc/progressive\.png -# ||txfm.ie^*/itunes-16x16.png (easylist.txt: 34816) -.txfm.ie/.*/itunes-16x16\.png -# ||txfm.ie^*/amazon-16x16.png (easylist.txt: 34815) -.txfm.ie/.*/amazon-16x16\.png -# ||twnmm.com^*/sponsored_logo. (easylist.txt: 34814) -.twnmm.com/.*/sponsored_logo\. -# ||twitch.tv/ad/*=preroll (easylist.txt: 34812) -.twitch.tv/ad/.*=preroll -# ||twentyfour7football.com^*/gpprint.jpg (easylist.txt: 34811) -.twentyfour7football.com/.*/gpprint\.jpg -# ||tweaktown.com/cms/includes/i*.php (easylist.txt: 34810) -.tweaktown.com/cms/includes/i.*\.php -# ||tvsubtitles.net/banners/ (easylist.txt: 34809) -.tvsubtitles.net/banners/ -# ||tvguide.com^*/ecommerce/ (easylist.txt: 34808) -.tvguide.com/.*/ecommerce/ -# ||tvducky.com/imgs/graboid. (easylist.txt: 34807) -.tvducky.com/imgs/graboid\. -# ||tvcatchup.com/wowee/ (easylist.txt: 34806) -.tvcatchup.com/wowee/ -# ||tvbrowser.org/logo_df_tvsponsor_ (easylist.txt: 34805) -.tvbrowser.org/logo_df_tvsponsor_ -# ||tv4chan.com/iframes/ (easylist.txt: 34804) -.tv4chan.com/iframes/ -# ||tv3.ie^*/sponsor. (easylist.txt: 34803) -.tv3.ie/.*/sponsor\. -# ||tuspics.net/onlyPopupOnce.js (easylist.txt: 34802) -.tuspics.net/onlyPopupOnce\.js -# ||tusfiles.net/images/tusfilesb.gif (easylist.txt: 34801) -.tusfiles.net/images/tusfilesb\.gif -# ||tusfiles.net/i/dll.png (easylist.txt: 34800) -.tusfiles.net/i/dll\.png -# ||turnstylenews.com^*/sponsors.png (easylist.txt: 34799) -.turnstylenews.com/.*/sponsors\.png -# ||turboyourpc.com/images/affiliates/ (easylist.txt: 34798) -.turboyourpc.com/images/affiliates/ -# ||turboimagehost.com/p.js (easylist.txt: 34797) -.turboimagehost.com/p\.js -# ||turboimagehost.com/b728_ (easylist.txt: 34796) -.turboimagehost.com/b728_ -# ||turboimagehost.com/b728. (easylist.txt: 34795) -.turboimagehost.com/b728\. -# ||turboimagehost.com/b300_ (easylist.txt: 34794) -.turboimagehost.com/b300_ -# ||turboimagehost.com/b300. (easylist.txt: 34793) -.turboimagehost.com/b300\. -# ||turboimagehost.com/728*.html^ (easylist.txt: 34792) -.turboimagehost.com/728.*\.html[^\w%.-] -# ||turboimagehost.com/300*.html^ (easylist.txt: 34791) -.turboimagehost.com/300.*\.html[^\w%.-] -# ||turbobit.net/pics/7z1xla23ay_ (easylist.txt: 34790) -.turbobit.net/pics/7z1xla23ay_ -# ||turbobit.net/oexktl/muzebra_ (easylist.txt: 34789) -.turbobit.net/oexktl/muzebra_ -# ||turbobit.net/js/acontrol.js? (easylist.txt: 34788) -.turbobit.net/js/acontrol\.js\? -# ||tune.pk/plugins/cb_tunepk/ads/ (easylist.txt: 34787) -.tune.pk/plugins/cb_tunepk/ads/ -# ||tullahomanews.com/news/tn-popup.js (easylist.txt: 34786) -.tullahomanews.com/news/tn-popup\.js -# ||tullahomanews.com/news/banners/ (easylist.txt: 34785) -.tullahomanews.com/news/banners/ -# ||tubeplus.me/resources/js/codec.js (easylist.txt: 34784) -.tubeplus.me/resources/js/codec\.js -# ||tubehome.com/imgs/undressme (easylist.txt: 34783) -.tubehome.com/imgs/undressme -# ||tsn.ca^*_sponsor. (easylist.txt: 34782) -.tsn.ca/.*_sponsor\. -# ||tsdmemphis.com/images/banners/ (easylist.txt: 34781) -.tsdmemphis.com/images/banners/ -# ||tsatic-cdn.net/takeovers/$image (easylist.txt: 34780) -.tsatic-cdn.net/takeovers/ -# ||trutv.com/includes/mods/iframes/mgid-blog.php (easylist.txt: 34779) -.trutv.com/includes/mods/iframes/mgid-blog\.php -# ||trustedreviews.com/mobile/widgets/html/promoted-phones? (easylist.txt: 34778) -.trustedreviews.com/mobile/widgets/html/promoted-phones\? -# ||trunews.com^*/Webbanner.jpg (easylist.txt: 34777) -.trunews.com/.*/Webbanner\.jpg -# ||trucktrend.com^*_160x200_ (easylist.txt: 34776) -.trucktrend.com/.*_160x200_ -# ||trucknetuk.com^*/sponsors/ (easylist.txt: 34775) -.trucknetuk.com/.*/sponsors/ -# ||truck1.eu/_BANNERS_/ (easylist.txt: 34774) -.truck1.eu/_BANNERS_/ -# ||triplehfm.com.au/images/banners/ (easylist.txt: 34773) -.triplehfm.com.au/images/banners/ -# ||tripadvisor.com^*/skyscraper.jpg (easylist.txt: 34772) -.tripadvisor.com/.*/skyscraper\.jpg -# ||tripadvisor.com/adp/ (easylist.txt: 34771) -.tripadvisor.com/adp/ -# ||tripadvisor.*/adp/adp-$subdocument (easylist.txt: 34770) -.tripadvisor.*./(.*/)?adp/adp- -# ||tribune242.com/pubfiles/ (easylist.txt: 34769) -.tribune242.com/pubfiles/ -# ||tribune.com.ng/images/banners/ (easylist.txt: 34768) -.tribune.com.ng/images/banners/ -# ||trgoals.es/adk.html (easylist.txt: 34767) -.trgoals.es/adk\.html -# ||trailrunnermag.com/images/takeovers/ (easylist.txt: 34766) -.trailrunnermag.com/images/takeovers/ -# ||traduguide.com/banner/ (easylist.txt: 34765) -.traduguide.com/banner/ -# ||tradewinds.vi/images/banners/ (easylist.txt: 34764) -.tradewinds.vi/images/banners/ -# ||tracksat.com^*/banners/ (easylist.txt: 34763) -.tracksat.com/.*/banners/ -# ||trackitdown.net/skins/*_campaign/ (easylist.txt: 34762) -.trackitdown.net/skins/.*_campaign/ -# ||tracking.hostgator.com^ (easylist.txt: 34761) -.tracking.hostgator.com -# ||tpb.piraten.lu/static/img/bar.gif (easylist.txt: 34758) -.tpb.piraten.lu/static/img/bar\.gif -# ||toywiz.com/lower-caption-global.html (easylist.txt: 34757) -.toywiz.com/lower-caption-global\.html -# ||toynewsi.com/a/ (easylist.txt: 34756) -.toynewsi.com/a/ -# ||toynews-online.biz/media/banners/ (easylist.txt: 34755) -.toynews-online.biz/media/banners/ -# ||townhall.com^*/ads/ (easylist.txt: 34754) -.townhall.com/.*/ads/ -# ||toucharcade.com/wp-content/uploads/skins/ (easylist.txt: 34753) -.toucharcade.com/wp-content/uploads/skins/ -# ||toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin.jpg (easylist.txt: 34752) -.toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin\.jpg -# ||toucharcade.com/wp-content/themes/*_background_*.jpg (easylist.txt: 34751) -.toucharcade.com/wp-content/themes/.*_background_.*\.jpg -# ||totalguitar.net/images/tgMagazineBanner.gif (easylist.txt: 34750) -.totalguitar.net/images/tgMagazineBanner\.gif -# ||totalguitar.net/images/*_125X125.jpg (easylist.txt: 34749) -.totalguitar.net/images/.*_125X125\.jpg -# ||totalcmd.pl/img/olszak. (easylist.txt: 34748) -.totalcmd.pl/img/olszak\. -# ||totalcmd.pl/img/nucom. (easylist.txt: 34747) -.totalcmd.pl/img/nucom\. -# ||totalcmd.pl/img/billboard_ (easylist.txt: 34746) -.totalcmd.pl/img/billboard_ -# ||total-croatia-news.com/images/banners/ (easylist.txt: 34745) -.total-croatia-news.com/images/banners/ -# ||toshiba.com^*/toshibapromowidget/ (easylist.txt: 34744) -.toshiba.com/.*/toshibapromowidget/ -# ||toshiba.com^*/bookingpromowidget/ (easylist.txt: 34743) -.toshiba.com/.*/bookingpromowidget/ -# ||torrentz.*/mgid/ (easylist.txt: 34742) -.torrentz.*./(.*/)?mgid/ -# ||torrentv.org/images/tsdls.jpg (easylist.txt: 34741) -.torrentv.org/images/tsdls\.jpg -# ||torrentv.org/images/tsdd.jpg (easylist.txt: 34740) -.torrentv.org/images/tsdd\.jpg -# ||torrents.net/wiget.js (easylist.txt: 34739) -.torrents.net/wiget\.js -# ||torrents.net/btguard.gif (easylist.txt: 34738) -.torrents.net/btguard\.gif -# ||torrentroom.com/js/torrents.js (easylist.txt: 34737) -.torrentroom.com/js/torrents\.js -# ||torrentproject.org/out/ (easylist.txt: 34736) -.torrentproject.org/out/ -# ||torrentfusion.com/FastDownload.html (easylist.txt: 34735) -.torrentfusion.com/FastDownload\.html -# ||torrentfunk.com/affprofslider.js (easylist.txt: 34734) -.torrentfunk.com/affprofslider\.js -# ||torrentfreak.com/images/vuze.png (easylist.txt: 34733) -.torrentfreak.com/images/vuze\.png -# ||torrentfreak.com/images/torguard.gif (easylist.txt: 34732) -.torrentfreak.com/images/torguard\.gif -# ||torrenteditor.com/img/graphical-network-monitor.gif (easylist.txt: 34731) -.torrenteditor.com/img/graphical-network-monitor\.gif -# ||torrentcrazy.com/pnd.js (easylist.txt: 34730) -.torrentcrazy.com/pnd\.js -# ||torrentcrazy.com/img/wx.png (easylist.txt: 34729) -.torrentcrazy.com/img/wx\.png -# ||torrentbox.sx/img/download_direct.png (easylist.txt: 34728) -.torrentbox.sx/img/download_direct\.png -# ||torrentbit.net/images/1click/button-long.png (easylist.txt: 34727) -.torrentbit.net/images/1click/button-long\.png -# ||torrent.cd/images/sp/ (easylist.txt: 34726) -.torrent.cd/images/sp/ -# ||torrent.cd/images/main_big_msoft.jpg (easylist.txt: 34725) -.torrent.cd/images/main_big_msoft\.jpg -# ||torrent.cd/images/big_use.gif (easylist.txt: 34724) -.torrent.cd/images/big_use\.gif -# ||torrent.cd/images/banner- (easylist.txt: 34723) -.torrent.cd/images/banner- -# ||torrent-finder.info/cont.php (easylist.txt: 34722) -.torrent-finder.info/cont\.php -# ||torrent-finder.info/cont.html (easylist.txt: 34721) -.torrent-finder.info/cont\.html -# ||toptenreviews.com/flash/ (easylist.txt: 34720) -.toptenreviews.com/flash/ -# ||topix.com/ajax/krillion/ (easylist.txt: 34719) -.topix.com/ajax/krillion/ -# ||topfriv.com/popup.js (easylist.txt: 34718) -.topfriv.com/popup\.js -# ||topalternate.com/assets/sponsored_links- (easylist.txt: 34717) -.topalternate.com/assets/sponsored_links- -# ||toonzone.net^*/placements.php? (easylist.txt: 34716) -.toonzone.net/.*/placements\.php\? -# ||toonova.com/images/site/front/xgift- (easylist.txt: 34715) -.toonova.com/images/site/front/xgift- -# ||toomuchnews.com/dropin/ (easylist.txt: 34714) -.toomuchnews.com/dropin/ -# ||toolslib.net/assets/img/a_dvt/ (easylist.txt: 34713) -.toolslib.net/assets/img/a_dvt/ -# ||tomshardware.com/price/widget/?$xmlhttprequest (easylist.txt: 34712) -.tomshardware.com/price/widget/\? -# ||tomshardware.com/indexAjax.php?ctrl=ajax_pricegrabber$xmlhttprequest (easylist.txt: 34711) -.tomshardware.com/indexAjax\.php\?ctrl=ajax_pricegrabber -# ||tom.itv.com^ (easylist.txt: 34710) -.tom.itv.com -# ||tny.cz/oo/ (easylist.txt: 34709) -.tny.cz/oo/ -# ||tnij.org/rotator (easylist.txt: 34708) -.tnij.org/rotator -# ||tmz.vo.llnwd.net^*/images/*skin (easylist.txt: 34706) -.tmz.vo.llnwd.net/.*/images/.*skin -# ||tmcs.net^ (easylist.txt: 34705) -.tmcs.net -# ||titantv.com/gravity.ashx (easylist.txt: 34704) -.titantv.com/gravity\.ashx -# ||titantorrent.to^*/buttons/download.gif (easylist.txt: 34703) -.titantorrent.to/.*/buttons/download\.gif -# ||titanshare.to/images/buttons/download.gif (easylist.txt: 34702) -.titanshare.to/images/buttons/download\.gif -# ||tinyurl.com/firefox_banner_ (easylist.txt: 34701) -.tinyurl.com/firefox_banner_ -# ||tinypaste.com/public/images/480.png (easylist.txt: 34700) -.tinypaste.com/public/images/480\.png -# ||tindleradio.net/banners/ (easylist.txt: 34698) -.tindleradio.net/banners/ -# ||timestalks.com/images/sponsor- (easylist.txt: 34697) -.timestalks.com/images/sponsor- -# ||timesofoman.com^*/banner/ (easylist.txt: 34696) -.timesofoman.com/.*/banner/ -# ||timesofoman.com/siteImages/MyBannerImages/ (easylist.txt: 34695) -.timesofoman.com/siteImages/MyBannerImages/ -# ||timesofoman.com/FrontInc/top.aspx (easylist.txt: 34694) -.timesofoman.com/FrontInc/top\.aspx -# ||timesnow.tv/googlehome.cms (easylist.txt: 34693) -.timesnow.tv/googlehome\.cms -# ||times.co.sz/files/banners/ (easylist.txt: 34692) -.times.co.sz/files/banners/ -# ||times-herald.com/pubfiles/ (easylist.txt: 34691) -.times-herald.com/pubfiles/ -# ||timeinc.net^*/recirc.js (easylist.txt: 34690) -.timeinc.net/.*/recirc\.js -# ||timeinc.net/*/i/oba-compliance.png (easylist.txt: 34689) -.timeinc.net/.*/i/oba-compliance\.png -# ||time4tv.com/tlv. (easylist.txt: 34688) -.time4tv.com/tlv\. -# ||tigerdroppings.com^*&adcode= (easylist.txt: 34687) -.tigerdroppings.com/.*&adcode= -# ||ticketnetwork.com/images/affiliates/ (easylist.txt: 34686) -.ticketnetwork.com/images/affiliates/ -# ||thunder106.com//wp-content/banners/ (easylist.txt: 34685) -# ||thisisanfield.com^*takeover (easylist.txt: 34684) -.thisisanfield.com/.*takeover -# ||thirdage.com^*_banner.php (easylist.txt: 34683) -.thirdage.com/.*_banner\.php -# ||thinkingwithportals.com^*-skyscraper.swf (easylist.txt: 34682) -.thinkingwithportals.com/.*-skyscraper\.swf -# ||thinkingwithportals.com/images/*-skyscraper. (easylist.txt: 34681) -.thinkingwithportals.com/images/.*-skyscraper\. -# ||thinkbroadband.com/uploads/banners/ (easylist.txt: 34680) -.thinkbroadband.com/uploads/banners/ -# ||theyeshivaworld.com/yw/ (easylist.txt: 34679) -.theyeshivaworld.com/yw/ -# ||thewindowsclub.com^*/banner_ (easylist.txt: 34678) -.thewindowsclub.com/.*/banner_ -# ||thewb.com/thewb/swf/tmz-adblock/ (easylist.txt: 34677) -.thewb.com/thewb/swf/tmz-adblock/ -# ||thevoicebw.com^*325x290.jpg (easylist.txt: 34676) -.thevoicebw.com/.*325x290\.jpg -# ||thevideo.me/js/popup.min.js (easylist.txt: 34675) -.thevideo.me/js/popup\.min\.js -# ||thevideo.me/js/jspc.js (easylist.txt: 34674) -.thevideo.me/js/jspc\.js -# ||thevideo.me/js/jsmpc.js (easylist.txt: 34673) -.thevideo.me/js/jsmpc\.js -# ||thevideo.me/creatives/ (easylist.txt: 34672) -.thevideo.me/creatives/ -# ||thevideo.me/cgi-bin/get_creatives.cgi? (easylist.txt: 34671) -.thevideo.me/cgi-bin/get_creatives\.cgi\? -# ||thetvdb.com/images/jriver_banner.png (easylist.txt: 34670) -.thetvdb.com/images/jriver_banner\.png -# ||thetvdb.com/images/frugal.gif (easylist.txt: 34669) -.thetvdb.com/images/frugal\.gif -# ||thetimes.co.uk/public/encounters/ (easylist.txt: 34668) -.thetimes.co.uk/public/encounters/ -# ||theticketmiami.com/Pics/listenlive/*-Right.jpg (easylist.txt: 34667) -.theticketmiami.com/Pics/listenlive/.*-Right\.jpg -# ||theticketmiami.com/Pics/listenlive/*-Left.jpg (easylist.txt: 34666) -.theticketmiami.com/Pics/listenlive/.*-Left\.jpg -# ||thesweetscience.com/images/banners/ (easylist.txt: 34665) -.thesweetscience.com/images/banners/ -# ||thesurvivalistblog.net^*-banner- (easylist.txt: 34664) -.thesurvivalistblog.net/.*-banner- -# ||thesundaily.my/sites/default/files/twinskyscrapers (easylist.txt: 34663) -.thesundaily.my/sites/default/files/twinskyscrapers -# ||thesuburban.com/universe/addsspace/ (easylist.txt: 34662) -.thesuburban.com/universe/addsspace/ -# ||thesuburban.com/universe/adds/ (easylist.txt: 34661) -.thesuburban.com/universe/adds/ -# ||thestkittsnevisobserver.com/images/banners/ (easylist.txt: 34660) -.thestkittsnevisobserver.com/images/banners/ -# ||thestandard.com.ph^*/banner/ (easylist.txt: 34659) -.thestandard.com.ph/.*/banner/ -# ||thestandard.com.hk/rotate_ (easylist.txt: 34658) -.thestandard.com.hk/rotate_ -# ||thestandard.com.hk/banners/ (easylist.txt: 34657) -.thestandard.com.hk/banners/ -# ||thessdreview.com^*/owc-new-gif1.gif (easylist.txt: 34656) -.thessdreview.com/.*/owc-new-gif1\.gif -# ||thessdreview.com^*/owc-full-banner.jpg (easylist.txt: 34655) -.thessdreview.com/.*/owc-full-banner\.jpg -# ||thessdreview.com^*/amazon-buy (easylist.txt: 34654) -.thessdreview.com/.*/amazon-buy -# ||thessdreview.com^*-bg.jpg (easylist.txt: 34653) -.thessdreview.com/.*-bg\.jpg -# ||thessdreview.com^*-bg-banner- (easylist.txt: 34652) -.thessdreview.com/.*-bg-banner- -# ||thessdreview.com/wp-content/uploads/*/930x64_ (easylist.txt: 34651) -.thessdreview.com/wp-content/uploads/.*/930x64_ -# ||thespiritsbusiness.com^*/Banner150 (easylist.txt: 34650) -.thespiritsbusiness.com/.*/Banner150 -# ||thesource.com/magicshave/ (easylist.txt: 34649) -.thesource.com/magicshave/ -# ||thesentinel.com^*/banners/ (easylist.txt: 34648) -.thesentinel.com/.*/banners/ -# ||therugbyforum.com/trf-images/sponsors/ (easylist.txt: 34647) -.therugbyforum.com/trf-images/sponsors/ -# ||theradiomagazine.co.uk/images/bionics.jpg (easylist.txt: 34646) -.theradiomagazine.co.uk/images/bionics\.jpg -# ||theradiomagazine.co.uk/banners/ (easylist.txt: 34645) -.theradiomagazine.co.uk/banners/ -# ||thepreparednessreview.com/wp-content/uploads/*_185x185.jpg (easylist.txt: 34644) -.thepreparednessreview.com/wp-content/uploads/.*_185x185\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*_175x175.jpg (easylist.txt: 34643) -.thepreparednessreview.com/wp-content/uploads/.*_175x175\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*/250x125- (easylist.txt: 34642) -.thepreparednessreview.com/wp-content/uploads/.*/250x125- -# ||theportugalnews.com/uploads/banner/ (easylist.txt: 34641) -.theportugalnews.com/uploads/banner/ -# ||theplanetweekly.com/images/banners/ (easylist.txt: 34640) -.theplanetweekly.com/images/banners/ -# ||thephuketnews.com/photo/banner/ (easylist.txt: 34639) -.thephuketnews.com/photo/banner/ -# ||thepeninsulaqatar.com^*/banners/ (easylist.txt: 34638) -.thepeninsulaqatar.com/.*/banners/ -# ||thepeak.fm/images/banners/ (easylist.txt: 34637) -.thepeak.fm/images/banners/ -# ||thepaper24-7.com/SiteImages/Tile/ (easylist.txt: 34636) -.thepaper24-7.com/SiteImages/Tile/ -# ||thepaper24-7.com/SiteImages/Banner/ (easylist.txt: 34635) -.thepaper24-7.com/SiteImages/Banner/ -# ||theorganicprepper.ca/images/banners/ (easylist.txt: 34634) -.theorganicprepper.ca/images/banners/ -# ||theonion.com/ads/ (easylist.txt: 34633) -.theonion.com/ads/ -# ||theolympian.com/static/images/weathersponsor/ (easylist.txt: 34632) -.theolympian.com/static/images/weathersponsor/ -# ||theoldie.co.uk/Banners/ (easylist.txt: 34631) -.theoldie.co.uk/Banners/ -# ||thenonleaguefootballpaper.com^*/Lovell-Soccer.jpg (easylist.txt: 34630) -.thenonleaguefootballpaper.com/.*/Lovell-Soccer\.jpg -# ||thenonleaguefootballpaper.com^*/J4K-new-range-pictures.jpg (easylist.txt: 34629) -.thenonleaguefootballpaper.com/.*/J4K-new-range-pictures\.jpg -# ||thenonleaguefootballpaper.com^*/image-non-league.jpeg (easylist.txt: 34628) -.thenonleaguefootballpaper.com/.*/image-non-league\.jpeg -# ||thenonleaguefootballpaper.com^*/Budweiser.jpg (easylist.txt: 34627) -.thenonleaguefootballpaper.com/.*/Budweiser\.jpg -# ||thenonleaguefootballpaper.com^*/ADIDAS_11PRO_WHITEOUT.jpg (easylist.txt: 34626) -.thenonleaguefootballpaper.com/.*/ADIDAS_11PRO_WHITEOUT\.jpg -# ||thenonleaguefootballpaper.com^*/140x140_ (easylist.txt: 34625) -.thenonleaguefootballpaper.com/.*/140x140_ -# ||thenonleaguefootballpaper.com^*-140x300- (easylist.txt: 34624) -.thenonleaguefootballpaper.com/.*-140x300- -# ||thenextweb.com^*/canvas.php?$xmlhttprequest (easylist.txt: 34623) -.thenextweb.com/.*/canvas\.php\? -# ||thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ (easylist.txt: 34622) -.thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ -# ||thenewjournalandguide.com/images/banners/ (easylist.txt: 34621) -.thenewjournalandguide.com/images/banners/ -# ||thenewage.co.za/Image/kingprice.gif (easylist.txt: 34620) -.thenewage.co.za/Image/kingprice\.gif -# ||thenationonlineng.net^*/banners/ (easylist.txt: 34619) -.thenationonlineng.net/.*/banners/ -# ||thenassauguardian.com/images/banners/ (easylist.txt: 34618) -.thenassauguardian.com/images/banners/ -# ||themittani.com/sites/*-skin (easylist.txt: 34617) -.themittani.com/sites/.*-skin -# ||themiscellany.org/images/banners/ (easylist.txt: 34616) -.themiscellany.org/images/banners/ -# ||themis.yahoo.com^ (easylist.txt: 34615) -.themis.yahoo.com -# ||themis-media.com/media/global/images/cskins/ (easylist.txt: 34614) -.themis-media.com/media/global/images/cskins/ -# ||theminiforum.co.uk/images/banners/ (easylist.txt: 34613) -.theminiforum.co.uk/images/banners/ -# ||themidweeksun.co.bw/images/banners/ (easylist.txt: 34612) -.themidweeksun.co.bw/images/banners/ -# ||themag.co.uk/assets/BV200x90TOPBANNER.png (easylist.txt: 34611) -.themag.co.uk/assets/BV200x90TOPBANNER\.png -# ||thelyricarchive.com/new/view/ (easylist.txt: 34610) -.thelyricarchive.com/new/view/ -# ||thelodownny.com/leslog/ads/ (easylist.txt: 34609) -.thelodownny.com/leslog/ads/ -# ||thelocal.com/scripts/fancybox/ (easylist.txt: 34608) -.thelocal.com/scripts/fancybox/ -# ||theliberianjournal.com/flash/banner (easylist.txt: 34607) -.theliberianjournal.com/flash/banner -# ||theleader.info/banner (easylist.txt: 34606) -.theleader.info/banner -# ||thelakewoodscoop.com^*banner (easylist.txt: 34605) -.thelakewoodscoop.com/.*banner -# ||thejournal.ie/media/hpto/ (easylist.txt: 34604) -.thejournal.ie/media/hpto/ -# ||thejointblog.com^*/dablab.gif (easylist.txt: 34603) -.thejointblog.com/.*/dablab\.gif -# ||thejointblog.com/wp-content/uploads/*-235x (easylist.txt: 34602) -.thejointblog.com/wp-content/uploads/.*-235x -# ||thejesperbay.com^ (easylist.txt: 34601) -.thejesperbay.com -# ||theispguide.com/topbanner.asp? (easylist.txt: 34600) -.theispguide.com/topbanner\.asp\? -# ||theispguide.com/premiumisp.html (easylist.txt: 34599) -.theispguide.com/premiumisp\.html -# ||theindependentbd.com^*/banner/ (easylist.txt: 34598) -.theindependentbd.com/.*/banner/ -# ||thehubsa.co.za^*/sponsor_ (easylist.txt: 34597) -.thehubsa.co.za/.*/sponsor_ -# ||thehindu.com/multimedia/*/sivananda_sponsorch_ (easylist.txt: 34596) -.thehindu.com/multimedia/.*/sivananda_sponsorch_ -# ||thehighstreetweb.com^*/banners/ (easylist.txt: 34595) -.thehighstreetweb.com/.*/banners/ -# ||thehealthcareblog.com/files/*/THCB-Validic-jpg-opt.jpg (easylist.txt: 34594) -.thehealthcareblog.com/files/.*/THCB-Validic-jpg-opt\.jpg -# ||thehealthcareblog.com/files/*/athena-300.jpg (easylist.txt: 34593) -.thehealthcareblog.com/files/.*/athena-300\.jpg -# ||thehealthcareblog.com/files/*/American-Resident-Project-Logo- (easylist.txt: 34592) -.thehealthcareblog.com/files/.*/American-Resident-Project-Logo- -# ||thefrontierpost.com/media/banner/ (easylist.txt: 34591) -.thefrontierpost.com/media/banner/ -# ||thefile.me^*.php?*zoneid (easylist.txt: 34590) -.thefile.me/.*\.php\?.*zoneid -# ||theenglishgarden.co.uk^*/bannerImage. (easylist.txt: 34589) -.theenglishgarden.co.uk/.*/bannerImage\. -# ||theedinburghreporter.co.uk/hmbanner/ (easylist.txt: 34588) -.theedinburghreporter.co.uk/hmbanner/ -# ||thedomainstat.com/filemanager/userfiles/banners/ (easylist.txt: 34587) -.thedomainstat.com/filemanager/userfiles/banners/ -# ||thedirectory.co.zw/banners/ (easylist.txt: 34586) -.thedirectory.co.zw/banners/ -# ||theday.com/assets/images/sponsorlogos/ (easylist.txt: 34585) -.theday.com/assets/images/sponsorlogos/ -# ||thedailystar.net^*/scbbd.gif (easylist.txt: 34584) -.thedailystar.net/.*/scbbd\.gif -# ||thedailystar.net^*/footer-sticky-add/ (easylist.txt: 34583) -.thedailystar.net/.*/footer-sticky-add/ -# ||thedailystar.net^*/aritel-logo.jpg (easylist.txt: 34582) -.thedailystar.net/.*/aritel-logo\.jpg -# ||thedailystar.net^*/Animation-200-X-30.gif (easylist.txt: 34581) -.thedailystar.net/.*/Animation-200-X-30\.gif -# ||thedailystar.net^*/400-x-120-pixel.jpg (easylist.txt: 34580) -.thedailystar.net/.*/400-x-120-pixel\.jpg -# ||thedailysheeple.com/images/banners/ (easylist.txt: 34579) -.thedailysheeple.com/images/banners/ -# ||thedailypaul.com/images/amzn- (easylist.txt: 34578) -.thedailypaul.com/images/amzn- -# ||thedailymeal.net^*/featured_partners/ (easylist.txt: 34577) -.thedailymeal.net/.*/featured_partners/ -# ||thedailymeal.com^*_sponsoredby.png (easylist.txt: 34576) -.thedailymeal.com/.*_sponsoredby\.png -# ||thedailymash.co.uk/templates/mashtastic/gutters/ (easylist.txt: 34575) -.thedailymash.co.uk/templates/mashtastic/gutters/ -# ||thedailyherald.com/images/banners/ (easylist.txt: 34574) -.thedailyherald.com/images/banners/ -# ||thecsuite.co.uk^*/banners/ (easylist.txt: 34573) -.thecsuite.co.uk/.*/banners/ -# ||thecorrsmisc.com/msb_banner.jpg (easylist.txt: 34572) -.thecorrsmisc.com/msb_banner\.jpg -# ||thecorrsmisc.com/brokenthread.jpg (easylist.txt: 34571) -.thecorrsmisc.com/brokenthread\.jpg -# ||thecorrsmisc.com/10feet_banner.gif (easylist.txt: 34570) -.thecorrsmisc.com/10feet_banner\.gif -# ||thecnj.com/images/hotel-banner.jpg (easylist.txt: 34569) -.thecnj.com/images/hotel-banner\.jpg -# ||thecitizen.co.tz^*/banners/ (easylist.txt: 34568) -.thecitizen.co.tz/.*/banners/ -# ||thechive.files.wordpress.com^*-wallpaper- (easylist.txt: 34567) -.thechive.files.wordpress.com/.*-wallpaper- -# ||thecharlottepost.com/cache/sql/fba/ (easylist.txt: 34566) -.thecharlottepost.com/cache/sql/fba/ -# ||thecenturion.co.za^*/banners/ (easylist.txt: 34565) -.thecenturion.co.za/.*/banners/ -# ||thecatholicuniverse.com^*-banner- (easylist.txt: 34564) -.thecatholicuniverse.com/.*-banner- -# ||thecatholicuniverse.com^*-advert- (easylist.txt: 34563) -.thecatholicuniverse.com/.*-advert- -# ||thecatholicuniverse.com^*-ad. (easylist.txt: 34562) -.thecatholicuniverse.com/.*-ad\. -# ||thebusinessdesk.com/assets/_files/banners/ (easylist.txt: 34561) -.thebusinessdesk.com/assets/_files/banners/ -# ||theburningplatform.com/wp-content/uploads/*_180x150.gif (easylist.txt: 34560) -.theburningplatform.com/wp-content/uploads/.*_180x150\.gif -# ||thebulls.co.za^*/sponsors/ (easylist.txt: 34559) -.thebulls.co.za/.*/sponsors/ -# ||thebull.com.au/admin/uploads/banners/ (easylist.txt: 34558) -.thebull.com.au/admin/uploads/banners/ -# ||theblaze.com^*_background_ (easylist.txt: 34557) -.theblaze.com/.*_background_ -# ||theblaze.com^*-interstitial- (easylist.txt: 34556) -.theblaze.com/.*-interstitial- -# ||theblaze.com^*-backgroundwide- (easylist.txt: 34555) -.theblaze.com/.*-backgroundwide- -# ||theblaze.com^*-background2- (easylist.txt: 34554) -.theblaze.com/.*-background2- -# ||theblaze.com^*-background- (easylist.txt: 34553) -.theblaze.com/.*-background- -# ||thebeat99.com/cmsadmin/banner/ (easylist.txt: 34552) -.thebeat99.com/cmsadmin/banner/ -# ||thebay.co.uk/banners/ (easylist.txt: 34551) -.thebay.co.uk/banners/ -# ||theattractionforums.com/images/rbsbanners/ (easylist.txt: 34550) -.theattractionforums.com/images/rbsbanners/ -# ||theasiantoday.com/image/banners/ (easylist.txt: 34549) -.theasiantoday.com/image/banners/ -# ||theartnewspaper.com/aads/ (easylist.txt: 34548) -.theartnewspaper.com/aads/ -# ||theaquarian.com^*/banners/ (easylist.txt: 34547) -.theaquarian.com/.*/banners/ -# ||theafricachannel.com^*/promos/ (easylist.txt: 34546) -.theafricachannel.com/.*/promos/ -# ||theactivetimes.net^*/featured_partners/ (easylist.txt: 34545) -.theactivetimes.net/.*/featured_partners/ -# ||the-numbers.com^*/allposters/ (easylist.txt: 34544) -.the-numbers.com/.*/allposters/ -# ||thaivisa.com/promotions/banners/ (easylist.txt: 34543) -.thaivisa.com/promotions/banners/ -# ||tfd.com^*/grammarly/ (easylist.txt: 34542) -.tfd.com/.*/grammarly/ -# ||textpattern.com/images/117.gif (easylist.txt: 34541) -.textpattern.com/images/117\.gif -# ||testseek.com/price_pricegrabber_ (easylist.txt: 34540) -.testseek.com/price_pricegrabber_ -# ||terafile.co/i/banners/ (easylist.txt: 34539) -.terafile.co/i/banners/ -# ||tentonhammer.com^*/takeovers/ (easylist.txt: 34538) -.tentonhammer.com/.*/takeovers/ -# ||tennisworldusa.org/banners/ (easylist.txt: 34537) -.tennisworldusa.org/banners/ -# ||tennischannel.com/tc-button-gif.gif (easylist.txt: 34536) -.tennischannel.com/tc-button-gif\.gif -# ||tennischannel.com/prud.jpg (easylist.txt: 34535) -.tennischannel.com/prud\.jpg -# ||tenmanga.com/files/js/site_skin.js (easylist.txt: 34534) -.tenmanga.com/files/js/site_skin\.js -# ||tenmanga.com/files/js/manga_$subdocument (easylist.txt: 34533) -.tenmanga.com/files/js/manga_ -# ||ten-tenths.com/sidebar.html (easylist.txt: 34532) -.ten-tenths.com/sidebar\.html -# ||templatesbox.com^*/banners/ (easylist.txt: 34531) -.templatesbox.com/.*/banners/ -# ||telegraphindia.com^*/hoabanner. (easylist.txt: 34530) -.telegraphindia.com/.*/hoabanner\. -# ||telegraphindia.com^*/banners/ (easylist.txt: 34529) -.telegraphindia.com/.*/banners/ -# ||telegraph.co.uk/sponsored/ (easylist.txt: 34528) -.telegraph.co.uk/sponsored/ -# ||telegraph.co.uk/international/$subdocument (easylist.txt: 34527) -.telegraph.co.uk/international/ -# ||telecomtiger.com^*_640x480_ (easylist.txt: 34526) -.telecomtiger.com/.*_640x480_ -# ||telecomtiger.com^*_250x250_ (easylist.txt: 34525) -.telecomtiger.com/.*_250x250_ -# ||tehrantimes.com/images/banners/ (easylist.txt: 34524) -.tehrantimes.com/images/banners/ -# ||teesupport.com/wp-content/themes/ts-blog/images/cp- (easylist.txt: 34523) -.teesupport.com/wp-content/themes/ts-blog/images/cp- -# ||teesoft.info/images/uniblue.png (easylist.txt: 34522) -.teesoft.info/images/uniblue\.png -# ||techtree.com^*/jquery.catfish.js (easylist.txt: 34521) -.techtree.com/.*/jquery\.catfish\.js -# ||techtarget.com^*/leaderboard.html (easylist.txt: 34520) -.techtarget.com/.*/leaderboard\.html -# ||techsupportforum.com^*/banners/ (easylist.txt: 34519) -.techsupportforum.com/.*/banners/ -# ||techradar.com^*/img/*_takeover_ (easylist.txt: 34518) -.techradar.com/.*/img/.*_takeover_ -# ||techpowerup.com/images/bnnrs/ (easylist.txt: 34517) -.techpowerup.com/images/bnnrs/ -# ||technomag.co.zw^*/TakeOverCampaign. (easylist.txt: 34516) -.technomag.co.zw/.*/TakeOverCampaign\. -# ||technewsworld.com/images/sda/ (easylist.txt: 34515) -.technewsworld.com/images/sda/ -# ||technewsdaily.com/crime-stats/local_crime_stats.php (easylist.txt: 34514) -.technewsdaily.com/crime-stats/local_crime_stats\.php -# ||techhive.com/ads/ (easylist.txt: 34513) -.techhive.com/ads/ -# ||techexams.net/banners/ (easylist.txt: 34512) -.techexams.net/banners/ -# ||techcentral.co.za^*/wallpaper- (easylist.txt: 34511) -.techcentral.co.za/.*/wallpaper- -# ||techcentral.co.za^*/background-manager/ (easylist.txt: 34510) -.techcentral.co.za/.*/background-manager/ -# ||techcentral.co.za^*-wallpaper- (easylist.txt: 34509) -.techcentral.co.za/.*-wallpaper- -# ||teamfourstar.com/img/918thefan.jpg (easylist.txt: 34508) -.teamfourstar.com/img/918thefan\.jpg -# ||tdfimg.com/go/*.html (easylist.txt: 34507) -.tdfimg.com/go/.*\.html -# ||tbib.org/kona/ (easylist.txt: 34505) -.tbib.org/kona/ -# ||taxsutra.com^*/banner/ (easylist.txt: 34504) -.taxsutra.com/.*/banner/ -# ||taxidrivermovie.com/style/sk-p.js (easylist.txt: 34503) -.taxidrivermovie.com/style/sk-p\.js -# ||tastro.org/x/ads*.php (easylist.txt: 34502) -.tastro.org/x/ads.*\.php -# ||targetedtopic.com^ (easylist.txt: 34501) -.targetedtopic.com -# ||targetedinfo.com^ (easylist.txt: 34500) -.targetedinfo.com -# ||tanzanite.infomine.com^ (easylist.txt: 34499) -.tanzanite.infomine.com -# ||tampermonkey.net^*.*.$subdocument (easylist.txt: 34498) -.tampermonkey.net/.*\..*\. -# ||tampermonkey.net/bner/ (easylist.txt: 34497) -.tampermonkey.net/bner/ -# ||talksport.co.uk^*/ts_takeover/ (easylist.txt: 34496) -.talksport.co.uk/.*/ts_takeover/ -# ||talkradioeurope.net/images/banners/ (easylist.txt: 34495) -.talkradioeurope.net/images/banners/ -# ||talkradioeurope.com/images/banners/ (easylist.txt: 34494) -.talkradioeurope.com/images/banners/ -# ||talkphotography.co.uk/images/externallogos/banners/ (easylist.txt: 34493) -.talkphotography.co.uk/images/externallogos/banners/ -# ||talkgold.com/bans/ (easylist.txt: 34492) -.talkgold.com/bans/ -# ||talkers.com/images/banners/ (easylist.txt: 34491) -.talkers.com/images/banners/ -# ||talkers.com/imagebase/ (easylist.txt: 34490) -.talkers.com/imagebase/ -# ||take40.com/images/takeover/ (easylist.txt: 34489) -.take40.com/images/takeover/ -# ||take40.com/css/takeover.css (easylist.txt: 34488) -.take40.com/css/takeover\.css -# ||taiwannews.com.tw/etn/images/banner_ (easylist.txt: 34487) -.taiwannews.com.tw/etn/images/banner_ -# ||taipeitimes.com/js/gad.js? (easylist.txt: 34486) -.taipeitimes.com/js/gad\.js\? -# ||tabloidmedia.co.za/images/signs2.swf (easylist.txt: 34485) -.tabloidmedia.co.za/images/signs2\.swf -# ||tabla.com.sg/SIA.jpg (easylist.txt: 34484) -.tabla.com.sg/SIA\.jpg -# ||sythe.org/clientscript/agold.png (easylist.txt: 34483) -.sythe.org/clientscript/agold\.png -# ||sythe.org/bnrs/ (easylist.txt: 34482) -.sythe.org/bnrs/ -# ||systemexplorer.net/sessg.php (easylist.txt: 34481) -.systemexplorer.net/sessg\.php -# ||sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/$image (easylist.txt: 34480) -.sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/ -# ||sxc.hu/img/banner (easylist.txt: 34479) -.sxc.hu/img/banner -# ||swoknews.com/images/banners/ (easylist.txt: 34478) -.swoknews.com/images/banners/ -# ||swimnewslibrary.com^*_960x120.jpg (easylist.txt: 34477) -.swimnewslibrary.com/.*_960x120\.jpg -# ||swimnews.com^*/banner_ (easylist.txt: 34476) -.swimnews.com/.*/banner_ -# ||swiftco.net/banner/ (easylist.txt: 34475) -.swiftco.net/banner/ -# ||sweepsadvantage.com/336x230-2.php (easylist.txt: 34474) -.sweepsadvantage.com/336x230-2\.php -# ||swedishwire.com/images/banners/ (easylist.txt: 34473) -.swedishwire.com/images/banners/ -# ||swampbuggy.com/media/images/banners/ (easylist.txt: 34472) -.swampbuggy.com/media/images/banners/ -# ||swagmp3.com/cdn-cgi/pe/ (easylist.txt: 34471) -.swagmp3.com/cdn-cgi/pe/ -# ||surfthechannel.com/promo/ (easylist.txt: 34470) -.surfthechannel.com/promo/ -# ||superplatyna.com/automater.swf (easylist.txt: 34469) -.superplatyna.com/automater\.swf -# ||supermonitoring.com/images/banners/ (easylist.txt: 34468) -.supermonitoring.com/images/banners/ -# ||supermarket.co.za/images/advetising/ (easylist.txt: 34467) -.supermarket.co.za/images/advetising/ -# ||superbike-news.co.uk/absolutebm/banners/ (easylist.txt: 34466) -.superbike-news.co.uk/absolutebm/banners/ -# ||suntimes.com^*/banners/ (easylist.txt: 34465) -.suntimes.com/.*/banners/ -# ||sunshineradio.ie/images/banners/ (easylist.txt: 34464) -.sunshineradio.ie/images/banners/ -# ||sunriseradio.com/js/rbanners.js (easylist.txt: 34463) -.sunriseradio.com/js/rbanners\.js -# ||sun-fm.com/resources/creative/ (easylist.txt: 34462) -.sun-fm.com/resources/creative/ -# ||sulekha.com^*/sulekhabanner.aspx (easylist.txt: 34461) -.sulekha.com/.*/sulekhabanner\.aspx -# ||sulekha.com^*/bannerhelper.html (easylist.txt: 34460) -.sulekha.com/.*/bannerhelper\.html -# ||succeed.co.za^*/banner_ (easylist.txt: 34459) -.succeed.co.za/.*/banner_ -# ||subs4free.com^*/wh4_s4f_$script (easylist.txt: 34458) -.subs4free.com/.*/wh4_s4f_ -# ||submarinecablemap.com^*-sponsored.png (easylist.txt: 34457) -.submarinecablemap.com/.*-sponsored\.png -# ||stv.tv/img/player/stvplayer-sponsorstrip- (easylist.txt: 34456) -.stv.tv/img/player/stvplayer-sponsorstrip- -# ||stuff.tv/client/skinning/ (easylist.txt: 34455) -.stuff.tv/client/skinning/ -# ||stuff.co.nz/stuff/widgets/lifedirect/ (easylist.txt: 34453) -.stuff.co.nz/stuff/widgets/lifedirect/ -# ||stuff.co.nz/stuff/tom/mags-widget/ (easylist.txt: 34452) -.stuff.co.nz/stuff/tom/mags-widget/ -# ||stuff.co.nz/stuff/misc/flying-flowers/ (easylist.txt: 34451) -.stuff.co.nz/stuff/misc/flying-flowers/ -# ||stuff.co.nz/stuff/*banner (easylist.txt: 34450) -.stuff.co.nz/stuff/.*banner -# ||stuff.co.nz/interactives/stuff-bayleys/ (easylist.txt: 34449) -.stuff.co.nz/interactives/stuff-bayleys/ -# ||stuff.co.nz/files/NZBoatM4Gwidget.html (easylist.txt: 34448) -.stuff.co.nz/files/NZBoatM4Gwidget\.html -# ||stuff.co.nz/clientdev/production/iframes/ (easylist.txt: 34447) -.stuff.co.nz/clientdev/production/iframes/ -# ||stuff.co.nz/1361239022/107/8323107.jpg (easylist.txt: 34446) -.stuff.co.nz/1361239022/107/8323107\.jpg -# ||stuff.co.nz/1319769787/395/5871395.jpg (easylist.txt: 34445) -.stuff.co.nz/1319769787/395/5871395\.jpg -# ||student-jobs.co.uk/banner. (easylist.txt: 34444) -.student-jobs.co.uk/banner\. -# ||streams.tv/js/slidingbanner.js (easylist.txt: 34443) -.streams.tv/js/slidingbanner\.js -# ||streams.tv/js/pu.js (easylist.txt: 34442) -.streams.tv/js/pu\.js -# ||streams.tv/js/bn5.js (easylist.txt: 34441) -.streams.tv/js/bn5\.js -# ||streamguys.com^*/amazon.png (easylist.txt: 34440) -.streamguys.com/.*/amazon\.png -# ||streamcloud.eu/deliver.php (easylist.txt: 34439) -.streamcloud.eu/deliver\.php -# ||stream2watch.me/yield.html (easylist.txt: 34438) -.stream2watch.me/yield\.html -# ||stream2watch.me/Los_Br.png (easylist.txt: 34437) -.stream2watch.me/Los_Br\.png -# ||stream2watch.me/images/hd1.png (easylist.txt: 34436) -.stream2watch.me/images/hd1\.png -# ||stream2watch.me/ed (easylist.txt: 34435) -.stream2watch.me/ed -# ||stream2watch.me/eadt.php (easylist.txt: 34434) -.stream2watch.me/eadt\.php -# ||stream2watch.me/eadb.php (easylist.txt: 34433) -.stream2watch.me/eadb\.php -# ||stream2watch.me/chat1.html (easylist.txt: 34432) -.stream2watch.me/chat1\.html -# ||stream2watch.me/ad10.html (easylist.txt: 34431) -.stream2watch.me/ad10\.html -# ||stream2watch.me/ad.html (easylist.txt: 34430) -.stream2watch.me/ad\.html -# ||stream2watch.me/_$subdocument (easylist.txt: 34429) -.stream2watch.me/_ -# ||stream2watch.me/900yahoo.html (easylist.txt: 34428) -.stream2watch.me/900yahoo\.html -# ||stream2watch.me/900rev.html (easylist.txt: 34427) -.stream2watch.me/900rev\.html -# ||stream2watch.me/600pick.png (easylist.txt: 34426) -.stream2watch.me/600pick\.png -# ||stream2watch.co/images/hd1.png (easylist.txt: 34425) -.stream2watch.co/images/hd1\.png -# ||stream2watch.co/frames/ (easylist.txt: 34424) -.stream2watch.co/frames/ -# ||stream.heavenmedia.net^ (easylist.txt: 34423) -.stream.heavenmedia.net -# ||strategypage.com^*_banner (easylist.txt: 34422) -.strategypage.com/.*_banner -# ||storewidget.pcauthority.com.au^ (easylist.txt: 34421) -.storewidget.pcauthority.com.au -# ||stopstream.com/ads/ (easylist.txt: 34420) -.stopstream.com/ads/ -# ||stopforumspam.com/img/snelserver.swf (easylist.txt: 34419) -.stopforumspam.com/img/snelserver\.swf -# ||stockhouse.com^*-300x75.gif (easylist.txt: 34418) -.stockhouse.com/.*-300x75\.gif -# ||stlyrics.com^*_st.js (easylist.txt: 34417) -.stlyrics.com/.*_st\.js -# ||stlyrics.com^*_az.js (easylist.txt: 34416) -.stlyrics.com/.*_az\.js -# ||stltoday.com^*_sponsor.gif (easylist.txt: 34415) -.stltoday.com/.*_sponsor\.gif -# ||stjohntradewindsnews.com/images/banners/ (easylist.txt: 34414) -.stjohntradewindsnews.com/images/banners/ -# ||sticker.yadro.ru/ad/ (easylist.txt: 34413) -.sticker.yadro.ru/ad/ -# ||steroid.com/dsoct09.swf (easylist.txt: 34412) -.steroid.com/dsoct09\.swf -# ||steroid.com/banner/ (easylist.txt: 34411) -.steroid.com/banner/ -# ||sternfannetwork.com/forum/images/banners/ (easylist.txt: 34410) -.sternfannetwork.com/forum/images/banners/ -# ||steambuy.com/steambuy.gif (easylist.txt: 34409) -.steambuy.com/steambuy\.gif -# ||steamanalyst.com/a/www/ (easylist.txt: 34408) -.steamanalyst.com/a/www/ -# ||staticworld.net/images/*_pcwskin_ (easylist.txt: 34407) -.staticworld.net/images/.*_pcwskin_ -# ||staticneo.com/neoassets/iframes/leaderboard_bottom. (easylist.txt: 34406) -.staticneo.com/neoassets/iframes/leaderboard_bottom\. -# ||static.nfl.com^*-background- (easylist.txt: 34404) -.static.nfl.com/.*-background- -# ||static.hltv.org//images/gofastbg.png (easylist.txt: 34403) -# ||static.hd-trailers.net/js/javascript_*.js| (easylist.txt: 34402) -.static.hd-trailers.net/js/javascript_.*\.js$ -# ||static-economist.com^*/timekeeper-by-rolex-medium.png (easylist.txt: 34401) -.static-economist.com/.*/timekeeper-by-rolex-medium\.png -# ||startxchange.com/bnr.php (easylist.txt: 34400) -.startxchange.com/bnr\.php -# ||star883.org^*/sponsors. (easylist.txt: 34399) -.star883.org/.*/sponsors\. -# ||standardmedia.co.ke/flash/ (easylist.txt: 34398) -.standardmedia.co.ke/flash/ -# ||standard.net/sites/default/files/images/wallpapers/ (easylist.txt: 34397) -.standard.net/sites/default/files/images/wallpapers/ -# ||stagnitomedia.com/view-banner- (easylist.txt: 34396) -.stagnitomedia.com/view-banner- -# ||stad.com/googlefoot2.php? (easylist.txt: 34395) -.stad.com/googlefoot2\.php\? -# ||st701.com/stomp/banners/ (easylist.txt: 34394) -.st701.com/stomp/banners/ -# ||ssl-images-amazon.com/images/*/browser-scripts/da- (easylist.txt: 34393) -.ssl-images-amazon.com/images/.*/browser-scripts/da- -# ||srv.thespacereporter.com^ (easylist.txt: 34392) -.srv.thespacereporter.com -# ||squadedit.com/img/peanuts/ (easylist.txt: 34391) -.squadedit.com/img/peanuts/ -# ||spycss.com/images/hostgator.gif (easylist.txt: 34389) -.spycss.com/images/hostgator\.gif -# ||spreaker.net/spots/ (easylist.txt: 34388) -.spreaker.net/spots/ -# ||spotflux.com/service/partner.php (easylist.txt: 34387) -.spotflux.com/service/partner\.php -# ||sportcategory.org/pu/ (easylist.txt: 34386) -.sportcategory.org/pu/ -# ||sportcategory.com/ads/ (easylist.txt: 34385) -.sportcategory.com/ads/ -# ||sporcle.com/adn/yak.php? (easylist.txt: 34384) -.sporcle.com/adn/yak\.php\? -# ||sponsors.webosroundup.com^ (easylist.txt: 34383) -.sponsors.webosroundup.com -# ||sponsors.s2ki.com^ (easylist.txt: 34382) -.sponsors.s2ki.com -# ||spicegrenada.com/images/banners/ (easylist.txt: 34381) -.spicegrenada.com/images/banners/ -# ||speroforum.com/images/sponsor_ (easylist.txt: 34380) -.speroforum.com/images/sponsor_ -# ||speedvideo.net/img/playerFk.gif (easylist.txt: 34379) -.speedvideo.net/img/playerFk\.gif -# ||speedvid.net/ad.htm (easylist.txt: 34378) -.speedvid.net/ad\.htm -# ||speedtv.com^*/tissot-logo.png (easylist.txt: 34377) -.speedtv.com/.*/tissot-logo\.png -# ||speedtv.com/js/interstitial.js (easylist.txt: 34376) -.speedtv.com/js/interstitial\.js -# ||speedtv.com.edgesuite.net/img/monthly/takeovers/ (easylist.txt: 34375) -.speedtv.com.edgesuite.net/img/monthly/takeovers/ -# ||speedtest.net/flash/60speedify$object-subrequest (easylist.txt: 34374) -.speedtest.net/flash/60speedify -# ||speedtest.net/flash/59rvvrpc-$object-subrequest (easylist.txt: 34373) -.speedtest.net/flash/59rvvrpc- -# ||spartoo.eu/footer_tag_iframe_ (easylist.txt: 34371) -.spartoo.eu/footer_tag_iframe_ -# ||spaceweather.com/abdfeeter/$image (easylist.txt: 34370) -.spaceweather.com/abdfeeter/ -# ||space.com/promo/ (easylist.txt: 34369) -.space.com/promo/ -# ||sowetanlive.co.za/banners/ (easylist.txt: 34368) -.sowetanlive.co.za/banners/ -# ||southafricab2b.co.za/banners/ (easylist.txt: 34367) -.southafricab2b.co.za/banners/ -# ||sourceforge.net/images/ban/ (easylist.txt: 34366) -.sourceforge.net/images/ban/ -# ||sourcefed.com/wp-content/uploads/*/netflix4.jpg (easylist.txt: 34365) -.sourcefed.com/wp-content/uploads/.*/netflix4\.jpg -# ||soundtracklyrics.net^*_az.js (easylist.txt: 34364) -.soundtracklyrics.net/.*_az\.js -# ||soundspheremag.com/images/banners/ (easylist.txt: 34363) -.soundspheremag.com/images/banners/ -# ||soundcloud.com/promoted/ (easylist.txt: 34362) -.soundcloud.com/promoted/ -# ||soundcloud.com/audio-ad? (easylist.txt: 34361) -.soundcloud.com/audio-ad\? -# ||sorcerers.net/images/aff/ (easylist.txt: 34360) -.sorcerers.net/images/aff/ -# ||sootoday.com/uploads/banners/ (easylist.txt: 34359) -.sootoday.com/uploads/banners/ -# ||songspk.name/textlinks/ (easylist.txt: 34358) -.songspk.name/textlinks/ -# ||songspk.name/imagepk.gif (easylist.txt: 34357) -.songspk.name/imagepk\.gif -# ||songspk.link/textlinks/ (easylist.txt: 34355) -.songspk.link/textlinks/ -# ||songs.pk/textlinks/ (easylist.txt: 34354) -.songs.pk/textlinks/ -# ||someecards.com^*/images/skin/ (easylist.txt: 34353) -.someecards.com/.*/images/skin/ -# ||solvater.com/images/hd.jpg (easylist.txt: 34352) -.solvater.com/images/hd\.jpg -# ||solomonstarnews.com/images/banners/ (easylist.txt: 34351) -.solomonstarnews.com/images/banners/ -# ||soldierx.com/system/files/images/sx-mini-1.jpg (easylist.txt: 34350) -.soldierx.com/system/files/images/sx-mini-1\.jpg -# ||softpedia.com/*_square. (easylist.txt: 34349) -.softpedia.com/.*_square\. -# ||softpedia.com/*_rect. (easylist.txt: 34348) -.softpedia.com/.*_rect\. -# ||softpedia.com/*_longrect. (easylist.txt: 34347) -.softpedia.com/.*_longrect\. -# ||softpedia-static.com/images/afg/ (easylist.txt: 34345) -.softpedia-static.com/images/afg/ -# ||softpedia-static.com/images/aff/ (easylist.txt: 34344) -.softpedia-static.com/images/aff/ -# ||softpedia-static.com/images/*.png?v (easylist.txt: 34343) -.softpedia-static.com/images/.*\.png\?v -# ||softpedia-static.com/images/*.jpg?v (easylist.txt: 34342) -.softpedia-static.com/images/.*\.jpg\?v -# ||softonic.com/specials_leaderboard/ (easylist.txt: 34341) -.softonic.com/specials_leaderboard/ -# ||softcab.com/google.php? (easylist.txt: 34340) -.softcab.com/google\.php\? -# ||socsa.org.za/images/banners/ (easylist.txt: 34339) -.socsa.org.za/images/banners/ -# ||sockshare.com^*_728.php (easylist.txt: 34338) -.sockshare.com/.*_728\.php -# ||sockshare.com^*.php?*title$subdocument (easylist.txt: 34337) -.sockshare.com/.*\.php\?.*title -# ||sockshare.com/rev/ (easylist.txt: 34336) -.sockshare.com/rev/ -# ||sockshare.com/moo.php (easylist.txt: 34335) -.sockshare.com/moo\.php -# ||sockshare.com/*.php?embed*type=$subdocument (easylist.txt: 34334) -.sockshare.com/.*\.php\?embed.*type= -# ||socialstreamingplayer.crystalmedianetworks.com//async/banner/ (easylist.txt: 34333) -# ||soccerway.com/img/betting/ (easylist.txt: 34332) -.soccerway.com/img/betting/ -# ||soccerway.com/buttons/120x90_ (easylist.txt: 34331) -.soccerway.com/buttons/120x90_ -# ||soccervista.com/sporting.gif (easylist.txt: 34330) -.soccervista.com/sporting\.gif -# ||soccervista.com/bonus.html (easylist.txt: 34329) -.soccervista.com/bonus\.html -# ||soccervista.com/bahforgif.gif (easylist.txt: 34328) -.soccervista.com/bahforgif\.gif -# ||soccerlens.com/files1/ (easylist.txt: 34327) -.soccerlens.com/files1/ -# ||snopes.com^*/tribalbox.asp (easylist.txt: 34326) -.snopes.com/.*/tribalbox\.asp -# ||snopes.com^*/casalesky.asp (easylist.txt: 34325) -.snopes.com/.*/casalesky\.asp -# ||snopes.com^*/casalebox.asp (easylist.txt: 34324) -.snopes.com/.*/casalebox\.asp -# ||snopes.com^*/casalebanner.asp (easylist.txt: 34323) -.snopes.com/.*/casalebanner\.asp -# ||snopes.com/common/include/$subdocument (easylist.txt: 34322) -.snopes.com/common/include/ -# ||snimg.com/image/sponsors/ (easylist.txt: 34321) -.snimg.com/image/sponsors/ -# ||smwcentral.net/html/$image (easylist.txt: 34320) -.smwcentral.net/html/ -# ||smotrisport.com/ads/ (easylist.txt: 34319) -.smotrisport.com/ads/ -# ||smoothjazznetwork.com/images/buyicon.jpg (easylist.txt: 34318) -.smoothjazznetwork.com/images/buyicon\.jpg -# ||smn-news.com/images/flash/ (easylist.txt: 34317) -.smn-news.com/images/flash/ -# ||smn-news.com/images/banners/ (easylist.txt: 34316) -.smn-news.com/images/banners/ -# ||smile904.fm/images/banners/ (easylist.txt: 34315) -.smile904.fm/images/banners/ -# ||smh.com.au/images/promo/ (easylist.txt: 34314) -.smh.com.au/images/promo/ -# ||smh.com.au/compareandsave/ (easylist.txt: 34313) -.smh.com.au/compareandsave/ -# ||smashingapps.com/banner/ (easylist.txt: 34312) -.smashingapps.com/banner/ -# ||smartname.com/scripts/google_afd_v2.js (easylist.txt: 34311) -.smartname.com/scripts/google_afd_v2\.js -# ||smartmoney.net^*-sponsor- (easylist.txt: 34310) -.smartmoney.net/.*-sponsor- -# ||smartearningsecrets.com^*/FameThemes.png (easylist.txt: 34309) -.smartearningsecrets.com/.*/FameThemes\.png -# ||smartcompany.com.au/images/stories/sponsored-posts/ (easylist.txt: 34308) -.smartcompany.com.au/images/stories/sponsored-posts/ -# ||slyck.com/pics/*304x83_ (easylist.txt: 34307) -.slyck.com/pics/.*304x83_ -# ||slickvid.com/js/fun2.js (easylist.txt: 34306) -.slickvid.com/js/fun2\.js -# ||slickvid.com/js/fun.js (easylist.txt: 34305) -.slickvid.com/js/fun\.js -# ||slayradio.org/images/c64audio.com.gif (easylist.txt: 34304) -.slayradio.org/images/c64audio\.com\.gif -# ||slashgear.com/static/banners/ (easylist.txt: 34303) -.slashgear.com/static/banners/ -# ||slader.com/amazon-modal/ (easylist.txt: 34302) -.slader.com/amazon-modal/ -# ||slacker.com^*/getspot/?spotid= (easylist.txt: 34301) -.slacker.com/.*/getspot/\?spotid= -# ||slacker.com^*/ads.js (easylist.txt: 34300) -.slacker.com/.*/ads\.js -# ||slacker.com^*/adnetworks.swf (easylist.txt: 34299) -.slacker.com/.*/adnetworks\.swf -# ||slacker.com/wsv1/getspot/?$object-subrequest (easylist.txt: 34298) -.slacker.com/wsv1/getspot/\? -# ||skyvalleychronicle.com/999/images/ban (easylist.txt: 34297) -.skyvalleychronicle.com/999/images/ban -# ||skysports.com/images/skybet.png (easylist.txt: 34296) -.skysports.com/images/skybet\.png -# ||skynews.com.au/elements/img/sponsor/ (easylist.txt: 34295) -.skynews.com.au/elements/img/sponsor/ -# ||skilouise.com/images/sponsors/ (easylist.txt: 34294) -.skilouise.com/images/sponsors/ -# ||sk-gaming.com/www/skdelivery/ (easylist.txt: 34293) -.sk-gaming.com/www/skdelivery/ -# ||sk-gaming.com/image/takeover_ (easylist.txt: 34292) -.sk-gaming.com/image/takeover_ -# ||sk-gaming.com/image/pts/ (easylist.txt: 34291) -.sk-gaming.com/image/pts/ -# ||sk-gaming.com/image/acersocialw.gif (easylist.txt: 34290) -.sk-gaming.com/image/acersocialw\.gif -# ||siteslike.com/js/fpa.js (easylist.txt: 34289) -.siteslike.com/js/fpa\.js -# ||siteslike.com/images/celeb (easylist.txt: 34288) -.siteslike.com/images/celeb -# ||sitesfrog.com/images/banner/ (easylist.txt: 34287) -.sitesfrog.com/images/banner/ -# ||sitedata.info/doctor/ (easylist.txt: 34286) -.sitedata.info/doctor/ -# ||sisters-magazine.com^*/Banners/ (easylist.txt: 34285) -.sisters-magazine.com/.*/Banners/ -# ||silverdoctors.com^*/Silver-Shield-2015.jpg (easylist.txt: 34284) -.silverdoctors.com/.*/Silver-Shield-2015\.jpg -# ||siliconrepublic.com/fs/img/partners/ (easylist.txt: 34283) -.siliconrepublic.com/fs/img/partners/ -# ||sigalert.com/getunit.asp?$subdocument (easylist.txt: 34282) -.sigalert.com/getunit\.asp\? -# ||sify.com^*/gads_ (easylist.txt: 34281) -.sify.com/.*/gads_ -# ||sify.com/images/games/gadvt/ (easylist.txt: 34280) -.sify.com/images/games/gadvt/ -# ||sickipedia.org/static/images/banners/ (easylist.txt: 34279) -.sickipedia.org/static/images/banners/ -# ||sicilianelmondo.com/banner/ (easylist.txt: 34278) -.sicilianelmondo.com/banner/ -# ||siberiantimes.com/upload/banners/ (easylist.txt: 34277) -.siberiantimes.com/upload/banners/ -# ||shtfplan.com/images/banners/ (easylist.txt: 34276) -.shtfplan.com/images/banners/ -# ||shroomery.org/images/www.shroomery.org.please.png (easylist.txt: 34275) -.shroomery.org/images/www\.shroomery\.org\.please\.png -# ||shroomery.org/images/shroomery.please.png (easylist.txt: 34274) -.shroomery.org/images/shroomery\.please\.png -# ||shroomery.org/bnr/ (easylist.txt: 34273) -.shroomery.org/bnr/ -# ||shroomery.org/bimg/ (easylist.txt: 34272) -.shroomery.org/bimg/ -# ||showstreet.com/banner. (easylist.txt: 34271) -.showstreet.com/banner\. -# ||showsport-tv.com/images/xtreamfile.jpg (easylist.txt: 34270) -.showsport-tv.com/images/xtreamfile\.jpg -# ||showbusinessweekly.com/imgs/hed/ (easylist.txt: 34269) -.showbusinessweekly.com/imgs/hed/ -# ||show-links.tv/layer.php (easylist.txt: 34268) -.show-links.tv/layer\.php -# ||shoutmeloud.com^*/hostgator- (easylist.txt: 34267) -.shoutmeloud.com/.*/hostgator- -# ||shortlist.com^*-takeover. (easylist.txt: 34266) -.shortlist.com/.*-takeover\. -# ||shortlist.com/resource/cache/*skin (easylist.txt: 34265) -.shortlist.com/resource/cache/.*skin -# ||shortcuts.search.yahoo.com^*&callback=yahoo.shortcuts.utils.setdittoadcontents& (easylist.txt: 34264) -.shortcuts.search.yahoo.com/.*&callback=yahoo\.shortcuts\.utils\.setdittoadcontents& -# ||shopwiki.com/banner_iframe/ (easylist.txt: 34263) -.shopwiki.com/banner_iframe/ -# ||shops.tgdaily.com^*&widget= (easylist.txt: 34262) -.shops.tgdaily.com/.*&widget= -# ||shoppingpartners2.futurenet.com^ (easylist.txt: 34261) -.shoppingpartners2.futurenet.com -# ||shopping.stylelist.com/widget? (easylist.txt: 34260) -.shopping.stylelist.com/widget\? -# ||shop.sportsmole.co.uk/pages/deeplink/ (easylist.txt: 34259) -.shop.sportsmole.co.uk/pages/deeplink/ -# ||shop.com/cc.class/dfp? (easylist.txt: 34258) -.shop.com/cc\.class/dfp\? -# ||shodanhq.com/images/s/acehackware-obscured.jpg (easylist.txt: 34257) -.shodanhq.com/images/s/acehackware-obscured\.jpg -# ||sherdog.com/index/load-banner? (easylist.txt: 34256) -.sherdog.com/index/load-banner\? -# ||shazam.com^*/stores/ (easylist.txt: 34255) -.shazam.com/.*/stores/ -# ||sharkscope.com/images/verts/$image (easylist.txt: 34254) -.sharkscope.com/images/verts/ -# ||sharetera.com/promo.php? (easylist.txt: 34253) -.sharetera.com/promo\.php\? -# ||sharetera.com/images/icon_download.png (easylist.txt: 34252) -.sharetera.com/images/icon_download\.png -# ||sharesix.com/a/images/watch-bnr.gif (easylist.txt: 34251) -.sharesix.com/a/images/watch-bnr\.gif -# ||sharephile.com/js/pw.js (easylist.txt: 34250) -.sharephile.com/js/pw\.js -# ||sharebeast.com/topbar.js (easylist.txt: 34249) -.sharebeast.com/topbar\.js -# ||share-links.biz^*/hs.gif (easylist.txt: 34248) -.share-links.biz/.*/hs\.gif -# ||share-links.biz^*/hisp.gif (easylist.txt: 34247) -.share-links.biz/.*/hisp\.gif -# ||share-links.biz/get/cmm/ (easylist.txt: 34246) -.share-links.biz/get/cmm/ -# ||shanghaiexpat.com^*/wallpaper_ (easylist.txt: 34245) -.shanghaiexpat.com/.*/wallpaper_ -# ||shanghaidaily.com/include/bettertraffic.asp (easylist.txt: 34244) -.shanghaidaily.com/include/bettertraffic\.asp -# ||shadowpool.info/images/banner- (easylist.txt: 34243) -.shadowpool.info/images/banner- -# ||sfx.ms/AppInsights-$script (easylist.txt: 34242) -.sfx.ms/AppInsights- -# ||sfltimes.com/images/banners/ (easylist.txt: 34241) -.sfltimes.com/images/banners/ -# ||sfbaytimes.com/img-cont/banners (easylist.txt: 34240) -.sfbaytimes.com/img-cont/banners -# ||sexmummy.com/avnadsbanner. (easylist.txt: 34239) -.sexmummy.com/avnadsbanner\. -# ||sermonaudio.com/images/sponsors/ (easylist.txt: 34238) -.sermonaudio.com/images/sponsors/ -# ||serialzz.us/ad.js (easylist.txt: 34237) -.serialzz.us/ad\.js -# ||serials.ws^*/logo.gif (easylist.txt: 34236) -.serials.ws/.*/logo\.gif -# ||serial.sw.cracks.me.uk/img/logo.gif (easylist.txt: 34235) -.serial.sw.cracks.me.uk/img/logo\.gif -# ||sensongs.com/nfls/ (easylist.txt: 34234) -.sensongs.com/nfls/ -# ||sendspace.com^*?zone= (easylist.txt: 34233) -.sendspace.com/.*\?zone= -# ||sendspace.com/images/shutter.png (easylist.txt: 34232) -.sendspace.com/images/shutter\.png -# ||sendspace.com/defaults/framer.html?z= (easylist.txt: 34231) -.sendspace.com/defaults/framer\.html\?z= -# ||segmentnext.com/javascripts/interstitial.client.js (easylist.txt: 34230) -.segmentnext.com/javascripts/interstitial\.client\.js -# ||seeingwithsound.com/noad.gif (easylist.txt: 34229) -.seeingwithsound.com/noad\.gif -# ||seedboxes.cc/images/seedad.jpg (easylist.txt: 34228) -.seedboxes.cc/images/seedad\.jpg -# ||sedoparking.com/registrar/dopark.js (easylist.txt: 34227) -.sedoparking.com/registrar/dopark\.js -# ||sedoparking.com/jspartner/ (easylist.txt: 34226) -.sedoparking.com/jspartner/ -# ||sedoparking.com/images/js_preloader.gif (easylist.txt: 34225) -.sedoparking.com/images/js_preloader\.gif -# ||securitywonks.net/promotions/ (easylist.txt: 34223) -.securitywonks.net/promotions/ -# ||securitymattersmag.com/scripts/popup.js (easylist.txt: 34222) -.securitymattersmag.com/scripts/popup\.js -# ||secureupload.eu/js/poad.js (easylist.txt: 34221) -.secureupload.eu/js/poad\.js -# ||secureupload.eu/gfx/freedl.png (easylist.txt: 34220) -.secureupload.eu/gfx/freedl\.png -# ||secureupload.eu/gfx/dlbtn.png (easylist.txt: 34219) -.secureupload.eu/gfx/dlbtn\.png -# ||sectools.org/shared/images/p/$image (easylist.txt: 34218) -.sectools.org/shared/images/p/ -# ||seclists.org/shared/images/p/$image (easylist.txt: 34217) -.seclists.org/shared/images/p/ -# ||sebar.thand.info^ (easylist.txt: 34216) -.sebar.thand.info -# ||seatguru.com/deals? (easylist.txt: 34215) -.seatguru.com/deals\? -# ||searchtempest.com/clhimages/aocbanner.jpg (easylist.txt: 34214) -.searchtempest.com/clhimages/aocbanner\.jpg -# ||searchignited.com^ (easylist.txt: 34213) -.searchignited.com -# ||searchenginejournal.com^*/sponsored- (easylist.txt: 34212) -.searchenginejournal.com/.*/sponsored- -# ||searchenginejournal.com^*/sej-bg-takeover/ (easylist.txt: 34211) -.searchenginejournal.com/.*/sej-bg-takeover/ -# ||searchenginejournal.com^*-takeover- (easylist.txt: 34210) -.searchenginejournal.com/.*-takeover- -# ||search.triadcars.news-record.com/autos/widgets/featuredautos.php (easylist.txt: 34209) -.search.triadcars.news-record.com/autos/widgets/featuredautos\.php -# ||search.triadcareers.news-record.com/jobs/search/results?*&isfeatured=y& (easylist.txt: 34208) -.search.triadcareers.news-record.com/jobs/search/results\?.*&isfeatured=y& -# ||search.ch/htmlbanner.html (easylist.txt: 34207) -.search.ch/htmlbanner\.html -# ||search.ch/acs/ (easylist.txt: 34206) -.search.ch/acs/ -# ||search-torrent.com/images/videox/ (easylist.txt: 34205) -.search-torrent.com/images/videox/ -# ||sdancelive.com/images/banners/ (easylist.txt: 34204) -.sdancelive.com/images/banners/ -# ||scriptmafia.org/banner.gif (easylist.txt: 34203) -.scriptmafia.org/banner\.gif -# ||scriptcopy.com/tpl/phplb/search.jpg (easylist.txt: 34202) -.scriptcopy.com/tpl/phplb/search\.jpg -# ||scribol.com/broadspring.js (easylist.txt: 34201) -.scribol.com/broadspring\.js -# ||screenlist.ru/porevo.js (easylist.txt: 34200) -.screenlist.ru/porevo\.js -# ||screenlist.ru/dodopo.js (easylist.txt: 34199) -.screenlist.ru/dodopo\.js -# ||screencrave.com/show/ (easylist.txt: 34198) -.screencrave.com/show/ -# ||screenafrica.com/jquery.jcarousel.min.js (easylist.txt: 34197) -.screenafrica.com/jquery\.jcarousel\.min\.js -# ||screen4u.net/templates/banner.html (easylist.txt: 34196) -.screen4u.net/templates/banner\.html -# ||scoot.co.uk/delivery.php (easylist.txt: 34195) -.scoot.co.uk/delivery\.php -# ||scoop.co.nz/xl?c$subdocument (easylist.txt: 34194) -.scoop.co.nz/xl\?c -# ||scmagazine.com.au/Utils/SkinCSS.ashx?skinID= (easylist.txt: 34193) -.scmagazine.com.au/Utils/SkinCSS\.ashx\?skinID= -# ||scientopia.org/public_html/clr_lympholyte_banner.gif (easylist.txt: 34192) -.scientopia.org/public_html/clr_lympholyte_banner\.gif -# ||sceper.eu/wp-content/banners.min.js (easylist.txt: 34190) -.sceper.eu/wp-content/banners\.min\.js -# ||scenicreflections.com/dhtmlpopup/ (easylist.txt: 34189) -.scenicreflections.com/dhtmlpopup/ -# ||sbnation.com/campaigns_images/ (easylist.txt: 34188) -.sbnation.com/campaigns_images/ -# ||saysuncle.com^*ad.jpg (easylist.txt: 34187) -.saysuncle.com/.*ad\.jpg -# ||sayellow.com/Clients/Banners/ (easylist.txt: 34186) -.sayellow.com/Clients/Banners/ -# ||sawlive.tv/ad (easylist.txt: 34185) -.sawlive.tv/ad -# ||saveondish.com/banner3.jpg (easylist.txt: 34184) -.saveondish.com/banner3\.jpg -# ||saveondish.com/banner2.jpg (easylist.txt: 34183) -.saveondish.com/banner2\.jpg -# ||savefrom.net/img/a1d/ (easylist.txt: 34182) -.savefrom.net/img/a1d/ -# ||satopsites.com^*/banners/ (easylist.txt: 34181) -.satopsites.com/.*/banners/ -# ||satnews.com/images/MSMPromoSubSky.jpg (easylist.txt: 34180) -.satnews.com/images/MSMPromoSubSky\.jpg -# ||satnews.com/images/MITEQ_sky.jpg (easylist.txt: 34179) -.satnews.com/images/MITEQ_sky\.jpg -# ||satellites.co.uk/images/sponsors/ (easylist.txt: 34178) -.satellites.co.uk/images/sponsors/ -# ||satelliteguys.us/pulsepoint_ (easylist.txt: 34177) -.satelliteguys.us/pulsepoint_ -# ||satelliteguys.us/burst_ (easylist.txt: 34176) -.satelliteguys.us/burst_ -# ||sat24.com/bannerdetails.aspx? (easylist.txt: 34175) -.sat24.com/bannerdetails\.aspx\? -# ||sarugbymag.co.za^*-wallpaper2. (easylist.txt: 34174) -.sarugbymag.co.za/.*-wallpaper2\. -# ||sarasotatalkradio.com^*-200x200.jpg (easylist.txt: 34173) -.sarasotatalkradio.com/.*-200x200\.jpg -# ||sapeople.com/wp-content/uploads/wp-banners/ (easylist.txt: 34172) -.sapeople.com/wp-content/uploads/wp-banners/ -# ||samsung.com/ph/nextisnow/files/javascript.js (easylist.txt: 34171) -.samsung.com/ph/nextisnow/files/javascript\.js -# ||samoatimes.co.nz^*/banner468x60/ (easylist.txt: 34170) -.samoatimes.co.nz/.*/banner468x60/ -# ||samoaobserver.ws^*/banner/ (easylist.txt: 34169) -.samoaobserver.ws/.*/banner/ -# ||sameip.org/images/froghost.gif (easylist.txt: 34168) -.sameip.org/images/froghost\.gif -# ||salfordonline.com/sponsors2/ (easylist.txt: 34167) -.salfordonline.com/sponsors2/ -# ||salfordonline.com/sponsors/ (easylist.txt: 34166) -.salfordonline.com/sponsors/ -# ||sail-world.com/rotate/ (easylist.txt: 34165) -.sail-world.com/rotate/ -# ||sagoodnews.co.za/templates/ubuntu-deals/ (easylist.txt: 34164) -.sagoodnews.co.za/templates/ubuntu-deals/ -# ||safelinks.eu/open.js (easylist.txt: 34163) -.safelinks.eu/open\.js -# ||saf.org/wp-content/uploads/*/women_guns192x50.png (easylist.txt: 34162) -.saf.org/wp-content/uploads/.*/women_guns192x50\.png -# ||saf.org/wp-content/uploads/*/theGunMagbanner.png (easylist.txt: 34161) -.saf.org/wp-content/uploads/.*/theGunMagbanner\.png -# ||sacommercialpropnews.co.za/files/banners/ (easylist.txt: 34160) -.sacommercialpropnews.co.za/files/banners/ -# ||sacbee.com/static/dealsaver/ (easylist.txt: 34159) -.sacbee.com/static/dealsaver/ -# ||saabsunited.com/wp-content/uploads/werbung- (easylist.txt: 34158) -.saabsunited.com/wp-content/uploads/werbung- -# ||saabsunited.com/wp-content/uploads/USACANADA.jpg (easylist.txt: 34157) -.saabsunited.com/wp-content/uploads/USACANADA\.jpg -# ||saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC.gif (easylist.txt: 34156) -.saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC\.gif -# ||saabsunited.com/wp-content/uploads/rbm21.jpg (easylist.txt: 34155) -.saabsunited.com/wp-content/uploads/rbm21\.jpg -# ||saabsunited.com/wp-content/uploads/ban- (easylist.txt: 34154) -.saabsunited.com/wp-content/uploads/ban- -# ||saabsunited.com/wp-content/uploads/180x460_ (easylist.txt: 34153) -.saabsunited.com/wp-content/uploads/180x460_ -# ||saabsunited.com/wp-content/uploads/*_banner_ (easylist.txt: 34152) -.saabsunited.com/wp-content/uploads/.*_banner_ -# ||saabsunited.com/wp-content/uploads/*-banner. (easylist.txt: 34151) -.saabsunited.com/wp-content/uploads/.*-banner\. -# ||saabsunited.com/wp-content/uploads/*-banner- (easylist.txt: 34150) -.saabsunited.com/wp-content/uploads/.*-banner- -# ||s.yimg.com^*/audience/ (easylist.txt: 34149) -.s.yimg.com/.*/audience/ -# ||s.imwx.com^*/wx-a21-plugthis.js (easylist.txt: 34148) -.s.imwx.com/.*/wx-a21-plugthis\.js -# ||rustourismnews.com/images/banners/ (easylist.txt: 34147) -.rustourismnews.com/images/banners/ -# ||russianireland.com/images/banners/ (easylist.txt: 34146) -.russianireland.com/images/banners/ -# ||runt-of-the-web.com/wrap1.jpg (easylist.txt: 34145) -.runt-of-the-web.com/wrap1\.jpg -# ||rugbyweek.com^*/sponsors/ (easylist.txt: 34144) -.rugbyweek.com/.*/sponsors/ -# ||rtcc.org/systems/sponsors/ (easylist.txt: 34142) -.rtcc.org/systems/sponsors/ -# ||rt.com/static/img/banners/ (easylist.txt: 34141) -.rt.com/static/img/banners/ -# ||rt.com/banner/ (easylist.txt: 34140) -.rt.com/banner/ -# ||rss2search.com/delivery/ (easylist.txt: 34139) -.rss2search.com/delivery/ -# ||rsbuddy.com/campaign/ (easylist.txt: 34138) -.rsbuddy.com/campaign/ -# ||rpt.anchorfree.net^ (easylist.txt: 34137) -.rpt.anchorfree.net -# ||rpgwatch.com^*/banner/ (easylist.txt: 34136) -.rpgwatch.com/.*/banner/ -# ||routesonline.com/banner/ (easylist.txt: 34135) -.routesonline.com/banner/ -# ||routes-news.com/images/banners/ (easylist.txt: 34134) -.routes-news.com/images/banners/ -# ||routerpasswords.com/routers.jpg (easylist.txt: 34133) -.routerpasswords.com/routers\.jpg -# ||rough-polished.com/upload/bx/ (easylist.txt: 34132) -.rough-polished.com/upload/bx/ -# ||rotoworld.com^*&sponsor=$subdocument (easylist.txt: 34131) -.rotoworld.com/.*&sponsor= -# ||roseindia.net^*/banners/ (easylist.txt: 34130) -.roseindia.net/.*/banners/ -# ||rootsweb.com/js/o*.js (easylist.txt: 34129) -.rootsweb.com/js/o.*\.js -# ||romhustler.net/square.js (easylist.txt: 34128) -.romhustler.net/square\.js -# ||rom-freaks.net/popup.php (easylist.txt: 34127) -.rom-freaks.net/popup\.php -# ||rollingstone.co.za/images/banners/ (easylist.txt: 34126) -.rollingstone.co.za/images/banners/ -# ||rok.com.com/rok-get? (easylist.txt: 34125) -.rok.com.com/rok-get\? -# ||rojadirecta.ge^*/pu.js (easylist.txt: 34124) -.rojadirecta.ge/.*/pu\.js -# ||roia.com^ (easylist.txt: 34123) -.roia.com -# ||rodfile.com/images/esr.gif (easylist.txt: 34122) -.rodfile.com/images/esr\.gif -# ||rocvideo.tv/pu/$subdocument (easylist.txt: 34121) -.rocvideo.tv/pu/ -# ||rockthebells.net/images/bot_banner_ (easylist.txt: 34120) -.rockthebells.net/images/bot_banner_ -# ||rockthebells.net/images/banners/ (easylist.txt: 34119) -.rockthebells.net/images/banners/ -# ||rocktelevision.com^*_banner_ (easylist.txt: 34118) -.rocktelevision.com/.*_banner_ -# ||rocksound.tv/images/uploads/*-rocksound-1920x1000_ (easylist.txt: 34117) -.rocksound.tv/images/uploads/.*-rocksound-1920x1000_ -# ||rockettheme.com/aff/ (easylist.txt: 34116) -.rockettheme.com/aff/ -# ||robhasawebsite.com^*/shop-amazon. (easylist.txt: 34115) -.robhasawebsite.com/.*/shop-amazon\. -# ||robhasawebsite.com^*/amazon- (easylist.txt: 34114) -.robhasawebsite.com/.*/amazon- -# ||rlsbb.com/wp-content/uploads/smoke.jpg (easylist.txt: 34113) -.rlsbb.com/wp-content/uploads/smoke\.jpg -# ||rlsbb.com/wp-content/uploads/izilol.gif (easylist.txt: 34112) -.rlsbb.com/wp-content/uploads/izilol\.gif -# ||rislivetv.com/ad*.php (easylist.txt: 34111) -.rislivetv.com/ad.*\.php -# ||ringostrack.com^*/amazon-buy.gif (easylist.txt: 34110) -.ringostrack.com/.*/amazon-buy\.gif -# ||rightsidenews.com/images/banners/ (easylist.txt: 34109) -.rightsidenews.com/images/banners/ -# ||riderfans.com/other/ (easylist.txt: 34108) -.riderfans.com/other/ -# ||richmedia.yimg.com^ (easylist.txt: 34107) -.richmedia.yimg.com -# ||richardroeper.com/assets/banner/ (easylist.txt: 34106) -.richardroeper.com/assets/banner/ -# ||rghost.ru/download/a/*/banner_download_ (easylist.txt: 34105) -.rghost.ru/download/a/.*/banner_download_ -# ||rfu.com/js/jquery.jcarousel.js (easylist.txt: 34104) -.rfu.com/js/jquery\.jcarousel\.js -# ||revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2.gif (easylist.txt: 34103) -.revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2\.gif -# ||reviewcentre.com/cinergy-adv.php (easylist.txt: 34102) -.reviewcentre.com/cinergy-adv\.php -# ||reuters.com/reuters_gpt_bootstrap*.js (easylist.txt: 34101) -.reuters.com/reuters_gpt_bootstrap.*\.js -# ||reuters.com/reuters_bootstrap.js (easylist.txt: 34100) -.reuters.com/reuters_bootstrap\.js -# ||retrevo.com^*/pcwframe.jsp? (easylist.txt: 34099) -.retrevo.com/.*/pcwframe\.jsp\? -# ||retrevo.com/m/google?q= (easylist.txt: 34098) -.retrevo.com/m/google\?q= -# ||replacementdocs.com^*/popup.js (easylist.txt: 34097) -.replacementdocs.com/.*/popup\.js -# ||relink.us/js/ibunkerslide.js (easylist.txt: 34096) -.relink.us/js/ibunkerslide\.js -# ||releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40.jpg (easylist.txt: 34095) -.releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40\.jpg -# ||releaselog.net/468.htm (easylist.txt: 34094) -.releaselog.net/468\.htm -# ||rejournal.com^*/images/homepage/ (easylist.txt: 34093) -.rejournal.com/.*/images/homepage/ -# ||rejournal.com/users/blinks/ (easylist.txt: 34092) -.rejournal.com/users/blinks/ -# ||rejournal.com/images/banners/ (easylist.txt: 34091) -.rejournal.com/images/banners/ -# ||regnow.img.digitalriver.com/vendor/37587/ud_box$third-party (easylist.txt: 34090) -.regnow.img.digitalriver.com/vendor/37587/ud_box -# ||regmender.com^*/banner336x280. (easylist.txt: 34089) -.regmender.com/.*/banner336x280\. -# ||reelzchannel.com^*-skin- (easylist.txt: 34088) -.reelzchannel.com/.*-skin- -# ||redvase.bravenet.com^ (easylist.txt: 34087) -.redvase.bravenet.com -# ||redpepper.org.uk/ad- (easylist.txt: 34086) -.redpepper.org.uk/ad- -# ||rednationonline.ca/Portals/0/derbystar_leaderboard.jpg (easylist.txt: 34085) -.rednationonline.ca/Portals/0/derbystar_leaderboard\.jpg -# ||rediff.com/worldrediff/pix/$subdocument (easylist.txt: 34084) -.rediff.com/worldrediff/pix/ -# ||reddit.com^*_sponsor.png? (easylist.txt: 34083) -.reddit.com/.*_sponsor\.png\? -# ||red.bayimg.net^ (easylist.txt: 34082) -.red.bayimg.net -# ||reason.org/UserFiles/web-fin1.gif (easylist.txt: 34081) -.reason.org/UserFiles/web-fin1\.gif -# ||realitytvworld.com/includes/rtvw-jscript.js (easylist.txt: 34080) -.realitytvworld.com/includes/rtvw-jscript\.js -# ||realitytvworld.com/burst.js (easylist.txt: 34079) -.realitytvworld.com/burst\.js -# ||readingeagle.com/lib/dailysponser.js (easylist.txt: 34078) -.readingeagle.com/lib/dailysponser\.js -# ||rc.feedsportal.com/r/*/rc.img (easylist.txt: 34077) -.rc.feedsportal.com/r/.*/rc\.img -# ||raysindex.com/wp-content/uploads/*/dolmansept2012flash.swf (easylist.txt: 34076) -.raysindex.com/wp-content/uploads/.*/dolmansept2012flash\.swf -# ||rawstory.com^*/ads/ (easylist.txt: 34075) -.rawstory.com/.*/ads/ -# ||rawstory.com^*.php?code=bottom (easylist.txt: 34074) -.rawstory.com/.*\.php\?code=bottom -# ||rawstory.com/givememyrawjuggler.php (easylist.txt: 34073) -.rawstory.com/givememyrawjuggler\.php -# ||rawstory.com/givememyrawgfpdirect.php? (easylist.txt: 34072) -.rawstory.com/givememyrawgfpdirect\.php\? -# ||rawstory.com/givememyrawgfp.php? (easylist.txt: 34071) -.rawstory.com/givememyrawgfp\.php\? -# ||ravchat.com/img/reversephone.gif (easylist.txt: 34070) -.ravchat.com/img/reversephone\.gif -# ||ratio-magazine.com/images/banners/ (easylist.txt: 34069) -.ratio-magazine.com/images/banners/ -# ||rapidvideo.tv/images/pl.jpg (easylist.txt: 34068) -.rapidvideo.tv/images/pl\.jpg -# ||rapidvideo.org/images/pl_box_rapid.jpg (easylist.txt: 34067) -.rapidvideo.org/images/pl_box_rapid\.jpg -# ||rapidtvnews.com^*BannerAd. (easylist.txt: 34066) -.rapidtvnews.com/.*BannerAd\. -# ||rapidshare.com/promo/$image (easylist.txt: 34065) -.rapidshare.com/promo/ -# ||rapidsafe.de/eislogo.gif (easylist.txt: 34064) -.rapidsafe.de/eislogo\.gif -# ||rapidlibrary.com/banner_*.png (easylist.txt: 34063) -.rapidlibrary.com/banner_.*\.png -# ||rapidlibrary.com/baner*.png (easylist.txt: 34062) -.rapidlibrary.com/baner.*\.png -# ||rapidgator.net/images/pics/button.png (easylist.txt: 34061) -.rapidgator.net/images/pics/button\.png -# ||rapidgator.net/images/banners/ (easylist.txt: 34060) -.rapidgator.net/images/banners/ -# ||rapidgamez.com/images/ (easylist.txt: 34059) -.rapidgamez.com/images/ -# ||rapidfiledownload.com^*/btn-input-download.png (easylist.txt: 34058) -.rapidfiledownload.com/.*/btn-input-download\.png -# ||rainbowpages.lk/images/banners/ (easylist.txt: 34057) -.rainbowpages.lk/images/banners/ -# ||ragezone.com/output.php/ (easylist.txt: 34056) -.ragezone.com/output\.php/ -# ||ragezone.com/index.php/$subdocument (easylist.txt: 34055) -.ragezone.com/index\.php/ -# ||radiozindagi.com/sponsors/ (easylist.txt: 34054) -.radiozindagi.com/sponsors/ -# ||radiowavesforum.com/rw/radioapp.gif (easylist.txt: 34053) -.radiowavesforum.com/rw/radioapp\.gif -# ||radiowave.com.na/images/banners/ (easylist.txt: 34052) -.radiowave.com.na/images/banners/ -# ||radiotoday.co.uk/a/ (easylist.txt: 34051) -.radiotoday.co.uk/a/ -# ||radioreference.com^*_banner_ (easylist.txt: 34050) -.radioreference.com/.*_banner_ -# ||radioreference.com/i/p4/tp/smPortalBanner.gif (easylist.txt: 34049) -.radioreference.com/i/p4/tp/smPortalBanner\.gif -# ||radioloyalty.com/newPlayer/loadbanner.html? (easylist.txt: 34048) -.radioloyalty.com/newPlayer/loadbanner\.html\? -# ||radioinfo.com^*/575x112- (easylist.txt: 34047) -.radioinfo.com/.*/575x112- -# ||radioinfo.com/270x270/ (easylist.txt: 34046) -.radioinfo.com/270x270/ -# ||radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg.swf (easylist.txt: 34045) -.radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg\.swf -# ||radioasiafm.com^*-300x250. (easylist.txt: 34044) -.radioasiafm.com/.*-300x250\. -# ||radio786.co.za/images/banners/ (easylist.txt: 34043) -.radio786.co.za/images/banners/ -# ||radio4fm.com/promotion/ (easylist.txt: 34042) -.radio4fm.com/promotion/ -# ||radio4fm.com/images/background/ (easylist.txt: 34041) -.radio4fm.com/images/background/ -# ||radio.com/rotatable? (easylist.txt: 34040) -.radio.com/rotatable\? -# ||radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr.swf? (easylist.txt: 34039) -.radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr\.swf\? -# ||rad.msn.com^ (easylist.txt: 34038) -.rad.msn.com -# ||rad.microsoft.com^ (easylist.txt: 34037) -.rad.microsoft.com -# ||racinguk.com/images/site/foot_ (easylist.txt: 34034) -.racinguk.com/images/site/foot_ -# ||racingpost.com^*_607x30.2.0.gif (easylist.txt: 34033) -.racingpost.com/.*_607x30\.2\.0\.gif -# ||racingpost.com/ads/ (easylist.txt: 34032) -.racingpost.com/ads/ -# ||race-dezert.com^*/sponsor- (easylist.txt: 34031) -.race-dezert.com/.*/sponsor- -# ||race-dezert.com/images/wrap- (easylist.txt: 34030) -.race-dezert.com/images/wrap- -# ||quoteland.com/images/banner2.swf (easylist.txt: 34029) -.quoteland.com/images/banner2\.swf -# ||quicksilverscreen.com/img/moviesforfree.jpg (easylist.txt: 34028) -.quicksilverscreen.com/img/moviesforfree\.jpg -# ||quickpwn.com^$subdocument (easylist.txt: 34027) -.quickpwn.com -# ||quickmeme.com/media/rostile (easylist.txt: 34026) -.quickmeme.com/media/rostile -# ||queenshare.com/popx.js (easylist.txt: 34025) -.queenshare.com/popx\.js -# ||qualityhealth.com^*/banner.jsp? (easylist.txt: 34024) -.qualityhealth.com/.*/banner\.jsp\? -# ||qrz.com/pix/*.gif (easylist.txt: 34023) -.qrz.com/pix/.*\.gif -# ||qiksilver.net^*/banners/ (easylist.txt: 34022) -.qiksilver.net/.*/banners/ -# ||qatar-tribune.com/images/banners/ (easylist.txt: 34021) -.qatar-tribune.com/images/banners/ -# ||q1075.com/images/banners/ (easylist.txt: 34020) -.q1075.com/images/banners/ -# ||pv-tech.org/images/suntech_m2fbblew.png (easylist.txt: 34019) -.pv-tech.org/images/suntech_m2fbblew\.png -# ||pv-tech.org/images/footer_logos/ (easylist.txt: 34018) -.pv-tech.org/images/footer_logos/ -# ||putlocker.mn^*/stream-hd.gif (easylist.txt: 34017) -.putlocker.mn/.*/stream-hd\.gif -# ||putlocker.mn^*/download.gif (easylist.txt: 34016) -.putlocker.mn/.*/download\.gif -# ||putlocker.is/images/banner (easylist.txt: 34015) -.putlocker.is/images/banner -# ||pushsquare.com/wp-content/themes/pushsquare/skins/ (easylist.txt: 34014) -.pushsquare.com/wp-content/themes/pushsquare/skins/ -# ||punksbusted.com^*/clanwarz-portal.jpg (easylist.txt: 34013) -.punksbusted.com/.*/clanwarz-portal\.jpg -# ||punksbusted.com/images/ventrilo/ (easylist.txt: 34012) -.punksbusted.com/images/ventrilo/ -# ||punchng.com^*/wp-banners/ (easylist.txt: 34011) -.punchng.com/.*/wp-banners/ -# ||punch.cdn.ng^*/wp-banners/ (easylist.txt: 34010) -.punch.cdn.ng/.*/wp-banners/ -# ||pumasrugbyunion.com/images/sponsors/ (easylist.txt: 34009) -.pumasrugbyunion.com/images/sponsors/ -# ||pulsetv.com/banner/ (easylist.txt: 34008) -.pulsetv.com/banner/ -# ||publicservice.co.uk^*/spons_ (easylist.txt: 34007) -.publicservice.co.uk/.*/spons_ -# ||publicradio.org^*/banners/ (easylist.txt: 34006) -.publicradio.org/.*/banners/ -# ||publicityupdate.co.za/temp/banner_ (easylist.txt: 34005) -.publicityupdate.co.za/temp/banner_ -# ||publichd.eu/images/directdownload.png (easylist.txt: 34004) -.publichd.eu/images/directdownload\.png -# ||publichd.eu/images/direct.download.ico (easylist.txt: 34003) -.publichd.eu/images/direct\.download\.ico -# ||ptf.com/js/rc_banner.js (easylist.txt: 34002) -.ptf.com/js/rc_banner\.js -# ||ptf.com/js/ptf_rc_*.js (easylist.txt: 34001) -.ptf.com/js/ptf_rc_.*\.js -# ||ptf.com/js/fdm_banner.js (easylist.txt: 34000) -.ptf.com/js/fdm_banner\.js -# ||ptf.com/fdm_frame_ (easylist.txt: 33999) -.ptf.com/fdm_frame_ -# ||psgroove.com/images/*.jpg| (easylist.txt: 33998) -.psgroove.com/images/.*\.jpg$ -# ||ps3crunch.net/forum/images/gamers/ (easylist.txt: 33997) -.ps3crunch.net/forum/images/gamers/ -# ||proxycape.com/blah.js (easylist.txt: 33996) -.proxycape.com/blah\.js -# ||proxy.org/ah.html (easylist.txt: 33995) -.proxy.org/ah\.html -# ||proxy.org/af.html (easylist.txt: 33994) -.proxy.org/af\.html -# ||proxy-list.org/img/isellsite.gif (easylist.txt: 33993) -.proxy-list.org/img/isellsite\.gif -# ||propertyeu.info/peu_storage_banners/ (easylist.txt: 33992) -.propertyeu.info/peu_storage_banners/ -# ||propakistani.pk/wp-content/themes/propakistani/images/776.jpg (easylist.txt: 33991) -.propakistani.pk/wp-content/themes/propakistani/images/776\.jpg -# ||propakistani.pk/wp-content/*/warid.jpg (easylist.txt: 33990) -.propakistani.pk/wp-content/.*/warid\.jpg -# ||propakistani.pk/data/zong.html (easylist.txt: 33989) -.propakistani.pk/data/zong\.html -# ||propakistani.pk/data/warid_top1.html (easylist.txt: 33988) -.propakistani.pk/data/warid_top1\.html -# ||promo.fileforum.com^ (easylist.txt: 33987) -.promo.fileforum.com -# ||projectorcentral.com/bblaster.cfm?$image (easylist.txt: 33986) -.projectorcentral.com/bblaster\.cfm\? -# ||projectfreetv.ch/adblock/ (easylist.txt: 33985) -.projectfreetv.ch/adblock/ -# ||project-for-sell.com/_google.php (easylist.txt: 33984) -.project-for-sell.com/_google\.php -# ||professionalmuscle.com/PL2.gif (easylist.txt: 33983) -.professionalmuscle.com/PL2\.gif -# ||professionalmuscle.com/phil1.jpg (easylist.txt: 33982) -.professionalmuscle.com/phil1\.jpg -# ||professionalmuscle.com/featured-concreter.jpg (easylist.txt: 33981) -.professionalmuscle.com/featured-concreter\.jpg -# ||professionalmuscle.com/220x105%20ver2.gif (easylist.txt: 33980) -.professionalmuscle.com/220x105%20ver2\.gif -# ||professionalmuscle.com/*banner (easylist.txt: 33979) -.professionalmuscle.com/.*banner -# ||pro-clockers.com/images/banners/ (easylist.txt: 33978) -.pro-clockers.com/images/banners/ -# ||privateproperty.co.za^*/siteTakeover/ (easylist.txt: 33977) -.privateproperty.co.za/.*/siteTakeover/ -# ||prisonplanet.com^*banner (easylist.txt: 33976) -.prisonplanet.com/.*banner -# ||printfriendly.com/a/lijit/ (easylist.txt: 33975) -.printfriendly.com/a/lijit/ -# ||primewire.in/load_link.php? (easylist.txt: 33974) -.primewire.in/load_link\.php\? -# ||primewire.guru/pagetop.php (easylist.txt: 33973) -.primewire.guru/pagetop\.php -# ||primewire.guru/load_link.php? (easylist.txt: 33972) -.primewire.guru/load_link\.php\? -# ||primewire.ag/load_link.php? (easylist.txt: 33971) -.primewire.ag/load_link\.php\? -# ||primewire.ag/js/jquery*.js (easylist.txt: 33970) -.primewire.ag/js/jquery.*\.js -# ||primewire.ag/frame_header.php?$subdocument (easylist.txt: 33969) -.primewire.ag/frame_header\.php\? -# ||primenews.com.bd/add/ (easylist.txt: 33968) -.primenews.com.bd/add/ -# ||pressrepublican.com/wallpaper/ (easylist.txt: 33967) -.pressrepublican.com/wallpaper/ -# ||prerollads.ign.com^ (easylist.txt: 33966) -.prerollads.ign.com -# ||prepperwebsite.com/wp-content/uploads/*_250x250.jpg (easylist.txt: 33965) -.prepperwebsite.com/wp-content/uploads/.*_250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*_250x150.png (easylist.txt: 33964) -.prepperwebsite.com/wp-content/uploads/.*_250x150\.png -# ||prepperwebsite.com/wp-content/uploads/*/tsepulveda-1.jpg (easylist.txt: 33963) -.prepperwebsite.com/wp-content/uploads/.*/tsepulveda-1\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/PW-Ad.jpg (easylist.txt: 33962) -.prepperwebsite.com/wp-content/uploads/.*/PW-Ad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/jihad.jpg (easylist.txt: 33961) -.prepperwebsite.com/wp-content/uploads/.*/jihad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/FME-Red-CAP.jpg (easylist.txt: 33960) -.prepperwebsite.com/wp-content/uploads/.*/FME-Red-CAP\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/DeadwoodStove-PW.gif (easylist.txt: 33959) -.prepperwebsite.com/wp-content/uploads/.*/DeadwoodStove-PW\.gif -# ||prepperwebsite.com/wp-content/uploads/*/apmgoldmembership250x250.jpg (easylist.txt: 33958) -.prepperwebsite.com/wp-content/uploads/.*/apmgoldmembership250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/250x250- (easylist.txt: 33957) -.prepperwebsite.com/wp-content/uploads/.*/250x250- -# ||prepperwebsite.com/wp-content/uploads/*-250x250.jpg (easylist.txt: 33956) -.prepperwebsite.com/wp-content/uploads/.*-250x250\.jpg -# ||preppersmallbiz.com/wp-content/uploads/*/PSB-Support.jpg (easylist.txt: 33955) -.preppersmallbiz.com/wp-content/uploads/.*/PSB-Support\.jpg -# ||premierleague.com^*/sponsor_ (easylist.txt: 33954) -.premierleague.com/.*/sponsor_ -# ||prehackshub.com/js/popup-wide.js (easylist.txt: 33953) -.prehackshub.com/js/popup-wide\.js -# ||preev.com/ad| (easylist.txt: 33952) -.preev.com/ad$ -# ||preev.com/ads| (easylist.txt: 33951) -.preev.com/ads$ -# ||praguepost.com/images/banners/ (easylist.txt: 33950) -.praguepost.com/images/banners/ -# ||pr0gramm.com/wm/ (easylist.txt: 33949) -.pr0gramm.com/wm/ -# ||pqarchiver.com^*/utilstextlinksxml.js (easylist.txt: 33948) -.pqarchiver.com/.*/utilstextlinksxml\.js -# ||powvideo.net/ban/ (easylist.txt: 33947) -.powvideo.net/ban/ -# ||powerbot.org^*/ads/ (easylist.txt: 33946) -.powerbot.org/.*/ads/ -# ||power977.com/images/banners/ (easylist.txt: 33945) -.power977.com/images/banners/ -# ||power1035fm.com^*/banners/ (easylist.txt: 33944) -.power1035fm.com/.*/banners/ -# ||poststar.com^*/promos/ (easylist.txt: 33943) -.poststar.com/.*/promos/ -# ||poststar.com^*/dealwidget.php? (easylist.txt: 33942) -.poststar.com/.*/dealwidget\.php\? -# ||poststar.com^*/ad_ (easylist.txt: 33941) -.poststar.com/.*/ad_ -# ||postcrescent.com^*/promos/ (easylist.txt: 33939) -.postcrescent.com/.*/promos/ -# ||postadsnow.com/panbanners/ (easylist.txt: 33938) -.postadsnow.com/panbanners/ -# ||positivehealth.com^*/TopicbannerAvatar/ (easylist.txt: 33937) -.positivehealth.com/.*/TopicbannerAvatar/ -# ||positivehealth.com^*/BannerAvatar/ (easylist.txt: 33936) -.positivehealth.com/.*/BannerAvatar/ -# ||porttechnology.org/images/partners/ (easylist.txt: 33935) -.porttechnology.org/images/partners/ -# ||portmiamiwebcam.com/images/sling_ (easylist.txt: 33934) -.portmiamiwebcam.com/images/sling_ -# ||portlanddailysun.me/images/banners/ (easylist.txt: 33933) -.portlanddailysun.me/images/banners/ -# ||portevergladeswebcam.com^*-WebCamBannerFall_ (easylist.txt: 33932) -.portevergladeswebcam.com/.*-WebCamBannerFall_ -# ||portevergladeswebcam.com^*-Ad.jpg (easylist.txt: 33931) -.portevergladeswebcam.com/.*-Ad\.jpg -# ||portcanaveralwebcam.com/images/ad_ (easylist.txt: 33930) -.portcanaveralwebcam.com/images/ad_ -# ||pornevo.com/events_ (easylist.txt: 33929) -.pornevo.com/events_ -# ||pop-over.powered-by.justplayzone.com^ (easylist.txt: 33928) -.pop-over.powered-by.justplayzone.com -# ||pons.eu^*/lingeniobanner.swf (easylist.txt: 33927) -.pons.eu/.*/lingeniobanner\.swf -# ||politicususa.com/psa/ (easylist.txt: 33925) -.politicususa.com/psa/ -# ||politico.com^*_skin_ (easylist.txt: 33924) -.politico.com/.*_skin_ -# ||politicalwire.com/images/*-sponsor.jpg (easylist.txt: 33923) -.politicalwire.com/images/.*-sponsor\.jpg -# ||policeprofessional.com/files/pictures- (easylist.txt: 33922) -.policeprofessional.com/files/pictures- -# ||policeprofessional.com/files/banners- (easylist.txt: 33921) -.policeprofessional.com/files/banners- -# ||police-car-photos.com/pictures/sponsors/ (easylist.txt: 33920) -.police-car-photos.com/pictures/sponsors/ -# ||pokernews.com/preroll.php? (easylist.txt: 33919) -.pokernews.com/preroll\.php\? -# ||pokernews.com/b/ (easylist.txt: 33918) -.pokernews.com/b/ -# ||pogo.com/v/*/js/ad.js (easylist.txt: 33917) -.pogo.com/v/.*/js/ad\.js -# ||pocketpcaddict.com/forums/images/banners/ (easylist.txt: 33916) -.pocketpcaddict.com/forums/images/banners/ -# ||pocket-lint.com/images/bytemarkad. (easylist.txt: 33915) -.pocket-lint.com/images/bytemarkad\. -# ||pmm.people.com.cn^ (easylist.txt: 33914) -.pmm.people.com.cn -# ||plundermedia.com*rectangle- (easylist.txt: 33913) -.plundermedia.com*./.*rectangle- -.plundermedia.com*rectangle-*. -# ||plunderguide.com/rectangle2.html (easylist.txt: 33912) -.plunderguide.com/rectangle2\.html -# ||plunderguide.com/leaderboard-gor.html (easylist.txt: 33911) -.plunderguide.com/leaderboard-gor\.html -# ||plsn.com/images/PLSN-Bg1.jpg (easylist.txt: 33910) -.plsn.com/images/PLSN-Bg1\.jpg -# ||playtowerdefensegames.com/ptdg-gao-gamebox-homepage.swf (easylist.txt: 33909) -.playtowerdefensegames.com/ptdg-gao-gamebox-homepage\.swf -# ||playhub.com/js/popup-wide.js (easylist.txt: 33907) -.playhub.com/js/popup-wide\.js -# ||playhd.eu^*.html|$subdocument (easylist.txt: 33906) -.playhd.eu/.*\.html$ -# ||playgroundmag.net^*/wallpaperpgesp_$image (easylist.txt: 33905) -.playgroundmag.net/.*/wallpaperpgesp_ -# ||playgames2.com/rand100x100.php (easylist.txt: 33904) -.playgames2.com/rand100x100\.php -# ||playgames2.com/mmoout.php (easylist.txt: 33903) -.playgames2.com/mmoout\.php -# ||playgames2.com/default160x160.php (easylist.txt: 33902) -.playgames2.com/default160x160\.php -# ||playgames2.com/ban300- (easylist.txt: 33901) -.playgames2.com/ban300- -# ||player.insuranceandhealth.com^ (easylist.txt: 33900) -.player.insuranceandhealth.com -# ||player.alloutwedding.com^ (easylist.txt: 33899) -.player.alloutwedding.com -# ||player.accoona.com^ (easylist.txt: 33898) -.player.accoona.com -# ||player.800directories.com^ (easylist.txt: 33897) -.player.800directories.com -# ||player.1stcreditrepairs.com^ (easylist.txt: 33896) -.player.1stcreditrepairs.com -# ||player.1800coupon.com^ (easylist.txt: 33895) -.player.1800coupon.com -# ||play4movie.com/banner/ (easylist.txt: 33894) -.play4movie.com/banner/ -# ||planetlotus.org/images/partners/ (easylist.txt: 33893) -.planetlotus.org/images/partners/ -# ||planecrashinfo.com/images/advertize1.gif (easylist.txt: 33892) -.planecrashinfo.com/images/advertize1\.gif -# ||pixhost.org/image/fik1.jpg (easylist.txt: 33891) -.pixhost.org/image/fik1\.jpg -# ||pittnews.com/modules/mod_novarp/ (easylist.txt: 33890) -.pittnews.com/modules/mod_novarp/ -# ||pitchero.com^*/toolstation.gif (easylist.txt: 33889) -.pitchero.com/.*/toolstation\.gif -# ||pirateproxy.nl/inc/ex.js (easylist.txt: 33888) -.pirateproxy.nl/inc/ex\.js -# ||piratefm.co.uk/resources/creative/ (easylist.txt: 33887) -.piratefm.co.uk/resources/creative/ -# ||pinknews.co.uk/newweb/ (easylist.txt: 33886) -.pinknews.co.uk/newweb/ -# ||pinknews.co.uk/gsky. (easylist.txt: 33885) -.pinknews.co.uk/gsky\. -# ||pinkbike.org^*/skins/ (easylist.txt: 33884) -.pinkbike.org/.*/skins/ -# ||picsee.net/clk.js (easylist.txt: 33883) -.picsee.net/clk\.js -# ||pickmeupnews.com/cfopop.js (easylist.txt: 33882) -.pickmeupnews.com/cfopop\.js -# ||physorg.com^*/addetect.js (easylist.txt: 33881) -.physorg.com/.*/addetect\.js -# ||phuketwan.com/img/b/ (easylist.txt: 33880) -.phuketwan.com/img/b/ -# ||phuketgazette.net^*/banners/ (easylist.txt: 33879) -.phuketgazette.net/.*/banners/ -# ||phuketgazette.net/banners/ (easylist.txt: 33878) -.phuketgazette.net/banners/ -# ||phuket-post.com/img/a/ (easylist.txt: 33877) -.phuket-post.com/img/a/ -# ||phpmotion.com/images/banners-webhosts/ (easylist.txt: 33876) -.phpmotion.com/images/banners-webhosts/ -# ||phpbb.com/theme/images/hosting/hostmonster-downloads.gif (easylist.txt: 33875) -.phpbb.com/theme/images/hosting/hostmonster-downloads\.gif -# ||phpbb.com/theme/images/bg_forumatic_front_page.png (easylist.txt: 33874) -.phpbb.com/theme/images/bg_forumatic_front_page\.png -# ||photosupload.net/photosupload.js (easylist.txt: 33873) -.photosupload.net/photosupload\.js -# ||photo.net/equipment/pg-160^ (easylist.txt: 33871) -.photo.net/equipment/pg-160[^\w%.-] -# ||phoronix.com/phxforums-thread-show.php (easylist.txt: 33870) -.phoronix.com/phxforums-thread-show\.php -# ||phonescoop.com^*/a_tab.gif (easylist.txt: 33869) -.phonescoop.com/.*/a_tab\.gif -# ||phonebunch.com/images/flipkart_offers_alt.jpg (easylist.txt: 33868) -.phonebunch.com/images/flipkart_offers_alt\.jpg -# ||phonearena.com/images/banners/ (easylist.txt: 33867) -.phonearena.com/images/banners/ -# ||phnompenhpost.com^*/banner_ (easylist.txt: 33866) -.phnompenhpost.com/.*/banner_ -# ||phnompenhpost.com/images/stories/banner/ (easylist.txt: 33865) -.phnompenhpost.com/images/stories/banner/ -# ||phillytrib.com/images/banners/ (easylist.txt: 33864) -.phillytrib.com/images/banners/ -# ||phantom.ie^*/banners/ (easylist.txt: 33863) -.phantom.ie/.*/banners/ -# ||pghcitypaper.com/general/modalbox/modalbox.js (easylist.txt: 33862) -.pghcitypaper.com/general/modalbox/modalbox\.js -# ||pgatour.com^*/featurebillboard_ (easylist.txt: 33861) -.pgatour.com/.*/featurebillboard_ -# ||pettube.com/images/*-partner. (easylist.txt: 33860) -.pettube.com/images/.*-partner\. -# ||petri.co.il/wp-content/uploads/banner700x475_ (easylist.txt: 33859) -.petri.co.il/wp-content/uploads/banner700x475_ -# ||petri.co.il/wp-content/uploads/banner1000x75_ (easylist.txt: 33858) -.petri.co.il/wp-content/uploads/banner1000x75_ -# ||petri.co.il/media/$image (easylist.txt: 33857) -.petri.co.il/media/ -# ||peruthisweek.com/uploads/sponsor_image/ (easylist.txt: 33856) -.peruthisweek.com/uploads/sponsor_image/ -# ||perezhilton.com/images/ask/ (easylist.txt: 33855) -.perezhilton.com/images/ask/ -# ||penguin-news.com/images/banners/ (easylist.txt: 33854) -.penguin-news.com/images/banners/ -# ||pedestrian.tv/_crunk/wp-content/files_flutter/ (easylist.txt: 33853) -.pedestrian.tv/_crunk/wp-content/files_flutter/ -# ||pechextreme.com^*/banners/ (easylist.txt: 33852) -.pechextreme.com/.*/banners/ -# ||pechextreme.com^*/banner. (easylist.txt: 33851) -.pechextreme.com/.*/banner\. -# ||pe.com^*/biice2scripts.js (easylist.txt: 33850) -.pe.com/.*/biice2scripts\.js -# ||pcworld.com/templates/video/popup.jsp?*&flv=/pcw/ads/ (easylist.txt: 33849) -.pcworld.com/templates/video/popup\.jsp\?.*&flv=/pcw/ads/ -# ||pcworld.com/images/*_vidmod_316x202_ (easylist.txt: 33848) -.pcworld.com/images/.*_vidmod_316x202_ -# ||pcworld.com/ads/ (easylist.txt: 33847) -.pcworld.com/ads/ -# ||pcworld.co.nz^*_siteskin_ (easylist.txt: 33846) -.pcworld.co.nz/.*_siteskin_ -# ||pcr-online.biz/static/banners/ (easylist.txt: 33845) -.pcr-online.biz/static/banners/ -# ||pcpro.co.uk^*skin_wide. (easylist.txt: 33844) -.pcpro.co.uk/.*skin_wide\. -# ||pcpro.co.uk^*/pcprositeskin (easylist.txt: 33843) -.pcpro.co.uk/.*/pcprositeskin -# ||pcpro.co.uk/images/skins/ (easylist.txt: 33842) -.pcpro.co.uk/images/skins/ -# ||pcpro.co.uk/images/*_siteskin (easylist.txt: 33841) -.pcpro.co.uk/images/.*_siteskin -# ||pcmag.com/blogshome/logicbuy.js (easylist.txt: 33840) -.pcmag.com/blogshome/logicbuy\.js -# ||pcauthority.com.au^*/skins/ (easylist.txt: 33839) -.pcauthority.com.au/.*/skins/ -# ||pcadvisor.co.uk/graphics/sponsored/ (easylist.txt: 33838) -.pcadvisor.co.uk/graphics/sponsored/ -# ||pbsrc.com^*/sponsor/ (easylist.txt: 33837) -.pbsrc.com/.*/sponsor/ -# ||pbsrc.com/sponsor/ (easylist.txt: 33836) -.pbsrc.com/sponsor/ -# ||pbs.org^*/sponsors/ (easylist.txt: 33835) -.pbs.org/.*/sponsors/ -# ||payplay.fm^*/mastercs.js (easylist.txt: 33834) -.payplay.fm/.*/mastercs\.js -# ||pasadenajournal.com/images/banners/ (easylist.txt: 33832) -.pasadenajournal.com/images/banners/ -# ||partners-z.com^ (easylist.txt: 33831) -.partners-z.com -# ||parlemagazine.com/images/banners/ (easylist.txt: 33830) -.parlemagazine.com/images/banners/ -# ||pardaphash.com/direct/tracker/add/ (easylist.txt: 33829) -.pardaphash.com/direct/tracker/add/ -# ||paradoxwikis.com/Sidebar.jpg (easylist.txt: 33828) -.paradoxwikis.com/Sidebar\.jpg -# ||parade.com/images/skins/ (easylist.txt: 33827) -.parade.com/images/skins/ -# ||pandora.com^*/mediaserverPublicRedirect.jsp (easylist.txt: 33826) -.pandora.com/.*/mediaserverPublicRedirect\.jsp -# ||pan2.ephotozine.com^$image (easylist.txt: 33825) -.pan2.ephotozine.com -# ||paktribune.com^*/banner (easylist.txt: 33824) -.paktribune.com/.*/banner -# ||pakistantoday.com.pk^*/karachi_houston_PakistanToday.jpg (easylist.txt: 33823) -.pakistantoday.com.pk/.*/karachi_houston_PakistanToday\.jpg -# ||paisalive.com/include/popup.js (easylist.txt: 33822) -.paisalive.com/include/popup\.js -# ||pagesinventory.com/_data/img/*_125x400_ (easylist.txt: 33821) -.pagesinventory.com/_data/img/.*_125x400_ -# ||pacificnewscenter.com/images/banners/ (easylist.txt: 33820) -.pacificnewscenter.com/images/banners/ -# ||p2pnet.net/images/$image (easylist.txt: 33819) -.p2pnet.net/images/ -# ||ozy.com^*/interstitial/ (easylist.txt: 33818) -.ozy.com/.*/interstitial/ -# ||ozy.com/modules/_common/ozy/pushdown/ (easylist.txt: 33817) -.ozy.com/modules/_common/ozy/pushdown/ -# ||ozy.com/modules/_common/ozy/full_width/ (easylist.txt: 33816) -.ozy.com/modules/_common/ozy/full_width/ -# ||ozy.com/modules/_common/ozy/blade/ (easylist.txt: 33815) -.ozy.com/modules/_common/ozy/blade/ -# ||ozqul.com^*/webbanners.png (easylist.txt: 33814) -.ozqul.com/.*/webbanners\.png -# ||oyetimes.com/join/advertisers.html (easylist.txt: 33813) -.oyetimes.com/join/advertisers\.html -# ||ox.furaffinity.net^ (easylist.txt: 33812) -.ox.furaffinity.net -# ||ox-d.wetransfer.com^ (easylist.txt: 33811) -.ox-d.wetransfer.com -# ||ox-d.sbnation.com^ (easylist.txt: 33810) -.ox-d.sbnation.com -# ||ox-d.rantsports.com^ (easylist.txt: 33809) -.ox-d.rantsports.com -# ||ow.ly^*/hootsuite_promo.jpg (easylist.txt: 33808) -.ow.ly/.*/hootsuite_promo\.jpg -# ||ovfile.com/player/jwadplugin.swf$object-subrequest (easylist.txt: 33807) -.ovfile.com/player/jwadplugin\.swf -# ||overclockers.co.uk^*/background/ (easylist.txt: 33806) -.overclockers.co.uk/.*/background/ -# ||overclock3d.net/img/pcp.jpg (easylist.txt: 33805) -.overclock3d.net/img/pcp\.jpg -# ||outofaces.com/*.html$subdocument (easylist.txt: 33804) -.outofaces.com/.*\.html -# ||outlookmoney.com/sharekhan_ad.jpg (easylist.txt: 33803) -.outlookmoney.com/sharekhan_ad\.jpg -# ||outlookindia.com/image/banner_ (easylist.txt: 33802) -.outlookindia.com/image/banner_ -# ||ourmanga.com/funklicks (easylist.txt: 33801) -.ourmanga.com/funklicks -# ||oteupload.com/images/iLivid-download- (easylist.txt: 33800) -.oteupload.com/images/iLivid-download- -# ||osdir.com/ml/$subdocument (easylist.txt: 33799) -.osdir.com/ml/ -# ||orlandosentinel2.com^*-sponsorship- (easylist.txt: 33798) -.orlandosentinel2.com/.*-sponsorship- -# ||orkut.gmodules.com^/promote.xml (easylist.txt: 33797) -.orkut.gmodules.com//promote\.xml -# ||orissadiary.com/img/*-banner.gif (easylist.txt: 33796) -.orissadiary.com/img/.*-banner\.gif -# ||originalfm.com/images/hotspots/ (easylist.txt: 33795) -.originalfm.com/images/hotspots/ -# ||oraclebroadcasting.com/images/hempusa_330.gif (easylist.txt: 33794) -.oraclebroadcasting.com/images/hempusa_330\.gif -# ||oraclebroadcasting.com/images/extendovite300.gif (easylist.txt: 33793) -.oraclebroadcasting.com/images/extendovite300\.gif -# ||oraclebroadcasting.com/images/enerfood-300x90.gif (easylist.txt: 33792) -.oraclebroadcasting.com/images/enerfood-300x90\.gif -# ||optimum.net/utilities/doubleclicktargeting (easylist.txt: 33791) -.optimum.net/utilities/doubleclicktargeting -# ||optics.org/banners/ (easylist.txt: 33790) -.optics.org/banners/ -# ||oprah.com^*-300x335.jpg (easylist.txt: 33789) -.oprah.com/.*-300x335\.jpg -# ||opensubtitles.org/gfx/banners_campaigns/ (easylist.txt: 33788) -.opensubtitles.org/gfx/banners_campaigns/ -# ||opencurrency.com/wp-content/uploads/*-aocs-sidebar-commodity-bank.png (easylist.txt: 33787) -.opencurrency.com/wp-content/uploads/.*-aocs-sidebar-commodity-bank\.png -# ||opednews.com^*/iframe.php? (easylist.txt: 33786) -.opednews.com/.*/iframe\.php\? -# ||onvasortir.com/maximemo-pense-bete-ovs.png (easylist.txt: 33785) -.onvasortir.com/maximemo-pense-bete-ovs\.png -# ||onrpg.com^*.php?$xmlhttprequest (easylist.txt: 33784) -.onrpg.com/.*\.php\? -# ||onlygoodmovies.com/netflix.gif (easylist.txt: 33783) -.onlygoodmovies.com/netflix\.gif -# ||onlineshopping.co.za/expop/ (easylist.txt: 33782) -.onlineshopping.co.za/expop/ -# ||onlinerealgames.com/google$subdocument (easylist.txt: 33781) -.onlinerealgames.com/google -# ||onlinenews.com.pk/onlinenews-admin/banners/ (easylist.txt: 33780) -.onlinenews.com.pk/onlinenews-admin/banners/ -# ||onlinemarketnews.org^*/silver72890.gif (easylist.txt: 33779) -.onlinemarketnews.org/.*/silver72890\.gif -# ||onlinemarketnews.org^*/silver300600.gif (easylist.txt: 33778) -.onlinemarketnews.org/.*/silver300600\.gif -# ||onlinekeystore.com/skin1/images/side- (easylist.txt: 33777) -.onlinekeystore.com/skin1/images/side- -# ||onionstatic.com/sponsored/ (easylist.txt: 33776) -.onionstatic.com/sponsored/ -# ||onepieceofbleach.com/onepieceofbleach-gao- (easylist.txt: 33775) -.onepieceofbleach.com/onepieceofbleach-gao- -# ||one-delivery.co.uk^*/sensitivedating.png (easylist.txt: 33774) -.one-delivery.co.uk/.*/sensitivedating\.png -# ||oncyprus.com^*/banners/ (easylist.txt: 33773) -.oncyprus.com/.*/banners/ -# ||on.net/images/gon_nodestore.jpg (easylist.txt: 33772) -.on.net/images/gon_nodestore\.jpg -# ||omgpop.com/dc? (easylist.txt: 33771) -.omgpop.com/dc\? -# ||oldgames.sk/images/topbar/ (easylist.txt: 33770) -.oldgames.sk/images/topbar/ -# ||okcupid.com/daisy?$subdocument (easylist.txt: 33769) -.okcupid.com/daisy\? -# ||okccdn.com/media/img/takeovers/ (easylist.txt: 33768) -.okccdn.com/media/img/takeovers/ -# ||oilprice.com/oiopub/ (easylist.txt: 33767) -.oilprice.com/oiopub/ -# ||oilprice.com/images/sponsors/ (easylist.txt: 33766) -.oilprice.com/images/sponsors/ -# ||oilprice.com/images/banners/ (easylist.txt: 33765) -.oilprice.com/images/banners/ -# ||ohmygore.com/ef_pub*.php (easylist.txt: 33764) -.ohmygore.com/ef_pub.*\.php -# ||oddschecker.com^*/takeover/ (easylist.txt: 33763) -.oddschecker.com/.*/takeover/ -# ||ocp.cbssports.com/pacific/request.jsp? (easylist.txt: 33762) -.ocp.cbssports.com/pacific/request\.jsp\? -# ||ocforums.com/adj/ (easylist.txt: 33761) -.ocforums.com/adj/ -# ||observer.ug/images/banners/ (easylist.txt: 33760) -.observer.ug/images/banners/ -# ||observer.org.sz/files/banners/ (easylist.txt: 33759) -.observer.org.sz/files/banners/ -# ||observer.com.na/images/banners/ (easylist.txt: 33758) -.observer.com.na/images/banners/ -# ||oascentral.newsmax.com^ (easylist.txt: 33755) -.oascentral.newsmax.com -# ||oascentral.hosted.ap.org^ (easylist.txt: 33754) -.oascentral.hosted.ap.org -# ||oascentral.chron.com^ (easylist.txt: 33753) -.oascentral.chron.com -# ||oasc07.citywire.co.uk^ (easylist.txt: 33752) -.oasc07.citywire.co.uk -# ||oas.skyscanner.net^ (easylist.txt: 33751) -.oas.skyscanner.net -# ||oas.autotrader.co.uk^ (easylist.txt: 33750) -.oas.autotrader.co.uk -# ||oanda.com/wandacache/wf-banner- (easylist.txt: 33749) -.oanda.com/wandacache/wf-banner- -# ||nznewsuk.co.uk/banners/ (easylist.txt: 33748) -.nznewsuk.co.uk/banners/ -# ||nzbking.com/static/nzbdrive_banner.swf (easylist.txt: 33747) -.nzbking.com/static/nzbdrive_banner\.swf -# ||nzbindex.nl/images/banners/ (easylist.txt: 33746) -.nzbindex.nl/images/banners/ -# ||nytimes.com^*-sponsor- (easylist.txt: 33745) -.nytimes.com/.*-sponsor- -# ||nytimes.com/ads/ (easylist.txt: 33744) -.nytimes.com/ads/ -# ||nyt.com^*-sponsor- (easylist.txt: 33743) -.nyt.com/.*-sponsor- -# ||nyrej.com/c/ (easylist.txt: 33742) -.nyrej.com/c/ -# ||nypost.com^*/takeovers/ (easylist.txt: 33741) -.nypost.com/.*/takeovers/ -# ||nymag.com^*/metrony_ (easylist.txt: 33740) -.nymag.com/.*/metrony_ -# ||nymag.com/scripts/skintakeover.js (easylist.txt: 33739) -.nymag.com/scripts/skintakeover\.js -# ||nymag.com/partners/ (easylist.txt: 33738) -.nymag.com/partners/ -# ||nydailynews.com^*-reskin- (easylist.txt: 33737) -.nydailynews.com/.*-reskin- -# ||nydailynews.com/PCRichards/ (easylist.txt: 33736) -.nydailynews.com/PCRichards/ -# ||nydailynews.com/img/sponsor/ (easylist.txt: 33735) -.nydailynews.com/img/sponsor/ -# ||nyaa.se/al (easylist.txt: 33734) -.nyaa.se/al -# ||nyaa.se/aj (easylist.txt: 33733) -.nyaa.se/aj -# ||nyaa.se/ai (easylist.txt: 33732) -.nyaa.se/ai -# ||nyaa.se/ah (easylist.txt: 33731) -.nyaa.se/ah -# ||nyaa.se/ag (easylist.txt: 33730) -.nyaa.se/ag -# ||nuvo.net^*/FooterPromoButtons.html (easylist.txt: 33729) -.nuvo.net/.*/FooterPromoButtons\.html -# ||nuttynewstoday.com/images/percento-banner.jpg (easylist.txt: 33728) -.nuttynewstoday.com/images/percento-banner\.jpg -# ||nuttynewstoday.com/images/hostwink.jpg (easylist.txt: 33727) -.nuttynewstoday.com/images/hostwink\.jpg -# ||nutritionhorizon.com/content/flash_loaders/$object (easylist.txt: 33726) -.nutritionhorizon.com/content/flash_loaders/ -# ||nutritionhorizon.com/content/banners/ (easylist.txt: 33725) -.nutritionhorizon.com/content/banners/ -# ||numberempire.com/images/b/ (easylist.txt: 33724) -.numberempire.com/images/b/ -# ||nufc.com^*_360x120.gif (easylist.txt: 33723) -.nufc.com/.*_360x120\.gif -# ||nufc.com^*/The%20Gate_NUFC.com%20banner_%2016.8.13.gif (easylist.txt: 33722) -.nufc.com/.*/The%20Gate_NUFC\.com%20banner_%2016\.8\.13\.gif -# ||nufc.com^*/skyscraper.gif (easylist.txt: 33721) -.nufc.com/.*/skyscraper\.gif -# ||nufc.com^*/mjs-2013-11.png (easylist.txt: 33720) -.nufc.com/.*/mjs-2013-11\.png -# ||nufc.com^*/altoonative_Cardiff.gif (easylist.txt: 33719) -.nufc.com/.*/altoonative_Cardiff\.gif -# ||nufc.com/forddirectbanner.js (easylist.txt: 33718) -.nufc.com/forddirectbanner\.js -# ||nu2.nu^*_banner. (easylist.txt: 33717) -.nu2.nu/.*_banner\. -# ||nu2.nu^*/sponsor/ (easylist.txt: 33716) -.nu2.nu/.*/sponsor/ -# ||ntdtv.com^*/adv/ (easylist.txt: 33715) -.ntdtv.com/.*/adv/ -# ||nowwatchtvlive.com/revenuehits.html (easylist.txt: 33714) -.nowwatchtvlive.com/revenuehits\.html -# ||nowwatchtvlive.com/matomyads.php (easylist.txt: 33713) -.nowwatchtvlive.com/matomyads\.php -# ||nowgoal.com/images/foreign/ (easylist.txt: 33712) -.nowgoal.com/images/foreign/ -# ||novamov.com/images/download_video.jpg (easylist.txt: 33711) -.novamov.com/images/download_video\.jpg -# ||notebook-driver.com/wp-content/images/banner_ (easylist.txt: 33710) -.notebook-driver.com/wp-content/images/banner_ -# ||notdoppler.com^*-promo-siteskin. (easylist.txt: 33709) -.notdoppler.com/.*-promo-siteskin\. -# ||notdoppler.com^*-promo-homepageskin.png (easylist.txt: 33708) -.notdoppler.com/.*-promo-homepageskin\.png -# ||notalwaysromantic.com/images/banner- (easylist.txt: 33707) -.notalwaysromantic.com/images/banner- -# ||nosteam.ro^*/messagesprop.js (easylist.txt: 33706) -.nosteam.ro/.*/messagesprop\.js -# ||nosteam.ro^*/messages.js (easylist.txt: 33705) -.nosteam.ro/.*/messages\.js -# ||nosteam.ro^*/gamedvprop.js (easylist.txt: 33704) -.nosteam.ro/.*/gamedvprop\.js -# ||nosteam.ro^*/compressed.ggotab36.js (easylist.txt: 33703) -.nosteam.ro/.*/compressed\.ggotab36\.js -# ||norwaypost.no/images/banners/ (easylist.txt: 33702) -.norwaypost.no/images/banners/ -# ||northjersey.com^*_Sponsor. (easylist.txt: 33701) -.northjersey.com/.*_Sponsor\. -# ||noram.srv.ysm.yahoo.com^ (easylist.txt: 33700) -.noram.srv.ysm.yahoo.com -# ||nodevice.com/images/banners/ (easylist.txt: 33699) -.nodevice.com/images/banners/ -# ||nmimg.net/css/takeover_ (easylist.txt: 33698) -.nmimg.net/css/takeover_ -# ||nme.com/themes/takeovers/ (easylist.txt: 33697) -.nme.com/themes/takeovers/ -# ||nme.com/js/takeoverlay.js (easylist.txt: 33696) -.nme.com/js/takeoverlay\.js -# ||nmap.org/shared/images/p/$image (easylist.txt: 33695) -.nmap.org/shared/images/p/ -# ||nitrobahn.com.s3.amazonaws.com/theme/getclickybadge.gif (easylist.txt: 33694) -.nitrobahn.com.s3.amazonaws.com/theme/getclickybadge\.gif -# ||nirsoft.net/banners/ (easylist.txt: 33693) -.nirsoft.net/banners/ -# ||nijobfinder.co.uk/affiliates/ (easylist.txt: 33691) -.nijobfinder.co.uk/affiliates/ -# ||niggasbelike.com/wp-content/themes/zeecorporate/images/b.jpg (easylist.txt: 33690) -.niggasbelike.com/wp-content/themes/zeecorporate/images/b\.jpg -# ||nigerianyellowpages.com/images/banners/ (easylist.txt: 33689) -.nigerianyellowpages.com/images/banners/ -# ||nigerianbulletin.com^*/Siropu/ (easylist.txt: 33688) -.nigerianbulletin.com/.*/Siropu/ -# ||nigeriamasterweb.com/Masterweb/banners_pic/ (easylist.txt: 33687) -.nigeriamasterweb.com/Masterweb/banners_pic/ -# ||nigeriafootball.com/img/affiliate_ (easylist.txt: 33686) -.nigeriafootball.com/img/affiliate_ -# ||nichepursuits.com/wp-content/uploads/*/long-tail-pro-banner.gif (easylist.txt: 33685) -.nichepursuits.com/wp-content/uploads/.*/long-tail-pro-banner\.gif -# ||ngrguardiannews.com/images/banners/ (easylist.txt: 33684) -.ngrguardiannews.com/images/banners/ -# ||ngohq.com/images/ad.jpg$~collapse (easylist.txt: 33683) -.ngohq.com/images/ad\.jpg -# ||nflcdn.com^*/partner-type/$~stylesheet (easylist.txt: 33681) -.nflcdn.com/.*/partner-type/ -# ||nfl.com^*/page-background-image.jpg (easylist.txt: 33680) -.nfl.com/.*/page-background-image\.jpg -# ||nfl.com/assets/images/hp-poweredby- (easylist.txt: 33679) -.nfl.com/assets/images/hp-poweredby- -# ||nextstl.com/images/banners/ (easylist.txt: 33678) -.nextstl.com/images/banners/ -# ||nextbigwhat.com/wp-content/uploads/*ccavenue (easylist.txt: 33677) -.nextbigwhat.com/wp-content/uploads/.*ccavenue -# ||nextag.com^*/NextagSponsoredProducts.jsp? (easylist.txt: 33676) -.nextag.com/.*/NextagSponsoredProducts\.jsp\? -# ||newvision.co.ug/rightsidepopup/ (easylist.txt: 33675) -.newvision.co.ug/rightsidepopup/ -# ||newvision.co.ug/banners/ (easylist.txt: 33674) -.newvision.co.ug/banners/ -# ||newverhost.com/css/pp.js (easylist.txt: 33673) -.newverhost.com/css/pp\.js -# ||newverhost.com/css/onload.js (easylist.txt: 33672) -.newverhost.com/css/onload\.js -# ||newsweek.com^*interstitial.js (easylist.txt: 33671) -.newsweek.com/.*interstitial\.js -# ||newsvine.com/jenga/widget/ (easylist.txt: 33670) -.newsvine.com/jenga/widget/ -# ||newsvine.com//jenga/widget/ (easylist.txt: 33669) -# ||newsudanvision.com/images/Carjunctionadvert.gif (easylist.txt: 33668) -.newsudanvision.com/images/Carjunctionadvert\.gif -# ||newsudanvision.com/images/banners/ (easylist.txt: 33667) -.newsudanvision.com/images/banners/ -# ||newstrackindia.com/images/hairfallguru728x90.jpg (easylist.txt: 33666) -.newstrackindia.com/images/hairfallguru728x90\.jpg -# ||newstatesman.com/sites/all/themes/*_1280x2000.$image (easylist.txt: 33665) -.newstatesman.com/sites/all/themes/.*_1280x2000\. -# ||newsreview.com/images/promo.gif (easylist.txt: 33664) -.newsreview.com/images/promo\.gif -# ||newsonjapan.com^*/banner/ (easylist.txt: 33663) -.newsonjapan.com/.*/banner/ -# ||newsday.co.tt/banner/ (easylist.txt: 33662) -.newsday.co.tt/banner/ -# ||newscdn.com.au^*/aldi/ (easylist.txt: 33660) -.newscdn.com.au/.*/aldi/ -# ||newsbusters.org^*/banners/ (easylist.txt: 33659) -.newsbusters.org/.*/banners/ -# ||news.com.au^*/public/img/p/$image (easylist.txt: 33658) -.news.com.au/.*/public/img/p/ -# ||news.com.au^*/promotions/ (easylist.txt: 33657) -.news.com.au/.*/promotions/ -# ||news.com.au^*/promos/ (easylist.txt: 33656) -.news.com.au/.*/promos/ -# ||news.com.au^*/images/*-bg.jpg (easylist.txt: 33655) -.news.com.au/.*/images/.*-bg\.jpg -# ||news.com.au^*-promo$image (easylist.txt: 33654) -.news.com.au/.*-promo -# ||news.com.au/news/vodafone/$object (easylist.txt: 33653) -.news.com.au/news/vodafone/ -# ||news.com.au/cs/*/bg-body.jpg (easylist.txt: 33652) -.news.com.au/cs/.*/bg-body\.jpg -# ||news.am/pic/bnr/ (easylist.txt: 33651) -.news.am/pic/bnr/ -# ||news-record.com/app/deal/ (easylist.txt: 33650) -.news-record.com/app/deal/ -# ||news-leader.com^*/banner.js (easylist.txt: 33649) -.news-leader.com/.*/banner\.js -# ||newpct.com/soporte/ (easylist.txt: 33648) -.newpct.com/soporte/ -# ||newoxfordreview.org/banners/ad- (easylist.txt: 33647) -.newoxfordreview.org/banners/ad- -# ||newipnow.com/ad-js.php (easylist.txt: 33646) -.newipnow.com/ad-js\.php -# ||newburytoday.co.uk^*-WillisAinsworth1.gif (easylist.txt: 33645) -.newburytoday.co.uk/.*-WillisAinsworth1\.gif -# ||newalbumreleases.net/banners/ (easylist.txt: 33644) -.newalbumreleases.net/banners/ -# ||newafricanmagazine.com/images/banners/ (easylist.txt: 33643) -.newafricanmagazine.com/images/banners/ -# ||networx.com/widget.php?aff_id=$script (easylist.txt: 33642) -.networx.com/widget\.php\?aff_id= -# ||networkwestvirginia.com/uploads/user_banners/ (easylist.txt: 33641) -.networkwestvirginia.com/uploads/user_banners/ -# ||network.sofeminine.co.uk^ (easylist.txt: 33640) -.network.sofeminine.co.uk -# ||netupd8.com^*/ads/ (easylist.txt: 33639) -.netupd8.com/.*/ads/ -# ||netsplit.de/links/rootado.gif (easylist.txt: 33638) -.netsplit.de/links/rootado\.gif -# ||netspidermm.indiatimes.com^ (easylist.txt: 33637) -.netspidermm.indiatimes.com -# ||netindian.in/frontsquare*.php (easylist.txt: 33636) -.netindian.in/frontsquare.*\.php -# ||nest.youwatch.org^ (easylist.txt: 33633) -.nest.youwatch.org -# ||nesn.com/img/sponsors/ (easylist.txt: 33632) -.nesn.com/img/sponsors/ -# ||nesn.com/img/nesn-nation/header-dunkin.jpg (easylist.txt: 33631) -.nesn.com/img/nesn-nation/header-dunkin\.jpg -# ||nesn.com/img/nesn-nation/bg- (easylist.txt: 33630) -.nesn.com/img/nesn-nation/bg- -# ||nerej.com/c/ (easylist.txt: 33629) -.nerej.com/c/ -# ||neowin.net/images/atlas/aww (easylist.txt: 33628) -.neowin.net/images/atlas/aww -# ||neoseeker.com/a_pane.php (easylist.txt: 33627) -.neoseeker.com/a_pane\.php -# ||nemesistv.info/jQuery.NagAds1.min.js (easylist.txt: 33626) -.nemesistv.info/jQuery\.NagAds1\.min\.js -# ||nearlygood.com^*/_aff.php? (easylist.txt: 33625) -.nearlygood.com/.*/_aff\.php\? -# ||ndtv.com^*/sponsors/ (easylist.txt: 33624) -.ndtv.com/.*/sponsors/ -# ||ndtv.com^*/banner/ (easylist.txt: 33623) -.ndtv.com/.*/banner/ -# ||ncrypt.in^*/layer.$script (easylist.txt: 33622) -.ncrypt.in/.*/layer\. -# ||ncrypt.in/javascript/jquery.msgbox.min.js (easylist.txt: 33621) -.ncrypt.in/javascript/jquery\.msgbox\.min\.js -# ||ncrypt.in/images/useful/ (easylist.txt: 33620) -.ncrypt.in/images/useful/ -# ||ncrypt.in/images/banner (easylist.txt: 33619) -.ncrypt.in/images/banner -# ||ncrypt.in/images/a/ (easylist.txt: 33618) -.ncrypt.in/images/a/ -# ||ncrypt.in/images/1.gif (easylist.txt: 33617) -.ncrypt.in/images/1\.gif -# ||nciku.com^*banner (easylist.txt: 33616) -.nciku.com/.*banner -# ||nbr.co.nz^*-WingBanner_ (easylist.txt: 33615) -.nbr.co.nz/.*-WingBanner_ -# ||naukimg.com/banner/ (easylist.txt: 33614) -.naukimg.com/banner/ -# ||naturalnews.com/sba/ (easylist.txt: 33613) -.naturalnews.com/sba/ -# ||nativetimes.com/images/banners/ (easylist.txt: 33612) -.nativetimes.com/images/banners/ -# ||nationmultimedia.com/new/js/nation_popup.js (easylist.txt: 33611) -.nationmultimedia.com/new/js/nation_popup\.js -# ||nationmultimedia.com/home/banner/ (easylist.txt: 33610) -.nationmultimedia.com/home/banner/ -# ||nationalturk.com^*/banner (easylist.txt: 33609) -.nationalturk.com/.*/banner -# ||nationalreview.com/images/display_300x600- (easylist.txt: 33608) -.nationalreview.com/images/display_300x600- -# ||nationaljournal.com/js/njg.js (easylist.txt: 33607) -.nationaljournal.com/js/njg\.js -# ||nation.sc/images/pub (easylist.txt: 33606) -.nation.sc/images/pub -# ||nation.sc/images/banners/ (easylist.txt: 33605) -.nation.sc/images/banners/ -# ||nation.lk^*/banners/ (easylist.txt: 33604) -.nation.lk/.*/banners/ -# ||nation.co.ke^*_bg.png (easylist.txt: 33603) -.nation.co.ke/.*_bg\.png -# ||nairaland.com/dynamic/$image (easylist.txt: 33602) -.nairaland.com/dynamic/ -# ||nairaland.com/contents/$image (easylist.txt: 33601) -.nairaland.com/contents/ -# ||naij.com^*/branding/ (easylist.txt: 33600) -.naij.com/.*/branding/ -# ||mywot.net/files/wotcert/vipre.png (easylist.txt: 33599) -.mywot.net/files/wotcert/vipre\.png -# ||myway.com/gca_iframe.html (easylist.txt: 33598) -.myway.com/gca_iframe\.html -# ||mysuncoast.com^*/sponsors/ (easylist.txt: 33597) -.mysuncoast.com/.*/sponsors/ -# ||mysuncoast.com/app/wallpaper/ (easylist.txt: 33596) -.mysuncoast.com/app/wallpaper/ -# ||mysubtitles.com^*_banner.jpg (easylist.txt: 33595) -.mysubtitles.com/.*_banner\.jpg -# ||myspacecdn.com/cms/*_skin_ (easylist.txt: 33594) -.myspacecdn.com/cms/.*_skin_ -# ||myshadibridalexpo.com/banner/ (easylist.txt: 33593) -.myshadibridalexpo.com/banner/ -# ||mysafesearch.co.uk/adds/ (easylist.txt: 33592) -.mysafesearch.co.uk/adds/ -# ||myrls.me/open.js (easylist.txt: 33591) -.myrls.me/open\.js -# ||myretrotv.com^*_vertbnr.jpg (easylist.txt: 33590) -.myretrotv.com/.*_vertbnr\.jpg -# ||myretrotv.com^*_horbnr.jpg (easylist.txt: 33589) -.myretrotv.com/.*_horbnr\.jpg -# ||myproperty.co.za/banners/ (easylist.txt: 33588) -.myproperty.co.za/banners/ -# ||mypremium.tv^*/bpad.htm (easylist.txt: 33587) -.mypremium.tv/.*/bpad\.htm -# ||mypiratebay.cl^$subdocument (easylist.txt: 33586) -.mypiratebay.cl -# ||mypbrand.com/wp-content/uploads/*banner (easylist.txt: 33585) -.mypbrand.com/wp-content/uploads/.*banner -# ||myiplayer.eu/ad (easylist.txt: 33584) -.myiplayer.eu/ad -# ||mygaming.co.za/news/wp-content/wallpapers/ (easylist.txt: 33583) -.mygaming.co.za/news/wp-content/wallpapers/ -# ||myfpscheats.com/bannerimg.jpg (easylist.txt: 33582) -.myfpscheats.com/bannerimg\.jpg -# ||myfax.com/free/images/sendfax/cp_coffee_660x80.swf (easylist.txt: 33581) -.myfax.com/free/images/sendfax/cp_coffee_660x80\.swf -# ||mycentraljersey.com^*/sponsor_ (easylist.txt: 33580) -.mycentraljersey.com/.*/sponsor_ -# ||mybroadband.co.za/news/wp-content/wallpapers/ (easylist.txt: 33579) -.mybroadband.co.za/news/wp-content/wallpapers/ -# ||myam1230.com/images/banners/ (easylist.txt: 33578) -.myam1230.com/images/banners/ -# ||my-link.pro/rotatingBanner.js (easylist.txt: 33577) -.my-link.pro/rotatingBanner\.js -# ||muthafm.com^*/partners.png (easylist.txt: 33576) -.muthafm.com/.*/partners\.png -# ||mustangevolution.com^*/banners/ (easylist.txt: 33575) -.mustangevolution.com/.*/banners/ -# ||mustangevolution.com^*/banner/ (easylist.txt: 33574) -.mustangevolution.com/.*/banner/ -# ||mustangevolution.com/images/300x100_ (easylist.txt: 33573) -.mustangevolution.com/images/300x100_ -# ||musictarget.com*/! (easylist.txt: 33572) -.musictarget.com*./(.*/)?! -# ||musicremedy.com/banner/ (easylist.txt: 33571) -.musicremedy.com/banner/ -# ||musicplayon.com/banner? (easylist.txt: 33570) -.musicplayon.com/banner\? -# ||musicmaza.com/bannerdyn (easylist.txt: 33569) -.musicmaza.com/bannerdyn -# ||music.yahoo.com/get-free-html (easylist.txt: 33568) -.music.yahoo.com/get-free-html -# ||murdermysteries.com/banners-murder/ (easylist.txt: 33567) -.murdermysteries.com/banners-murder/ -# ||multiupload.biz/r_ads2 (easylist.txt: 33566) -.multiupload.biz/r_ads2 -# ||multiup.org/img/sonyoutube_long.gif (easylist.txt: 33565) -.multiup.org/img/sonyoutube_long\.gif -# ||muchmusic.com^*/leaderboard_frame_obiwan.html (easylist.txt: 33564) -.muchmusic.com/.*/leaderboard_frame_obiwan\.html -# ||muchmusic.com^*/bigbox_frame_resizer.html (easylist.txt: 33563) -.muchmusic.com/.*/bigbox_frame_resizer\.html -# ||muchmusic.com/images/*-skin.png (easylist.txt: 33562) -.muchmusic.com/images/.*-skin\.png -# ||mtvnimages.com/images/skins/$image (easylist.txt: 33561) -.mtvnimages.com/images/skins/ -# ||mtv.co.uk^*/btn_itunes.png (easylist.txt: 33560) -.mtv.co.uk/.*/btn_itunes\.png -# ||mtbr.com/ajax/hotdeals/ (easylist.txt: 33559) -.mtbr.com/ajax/hotdeals/ -# ||msw.ms^*/jquery.MSWPagePeel- (easylist.txt: 33558) -.msw.ms/.*/jquery\.MSWPagePeel- -# ||msn.com/?adunitid (easylist.txt: 33557) -.msn.com/\?adunitid -# ||mp3skull.com/call_banner_exec_new. (easylist.txt: 33555) -.mp3skull.com/call_banner_exec_new\. -# ||mp3s.su/uploads/___/djz_to.png (easylist.txt: 33554) -.mp3s.su/uploads/___/djz_to\.png -# ||mp3mediaworld.com*/! (easylist.txt: 33553) -.mp3mediaworld.com*./(.*/)?! -# ||mp3li.net^*banner (easylist.txt: 33552) -.mp3li.net/.*banner -# ||mp3.li/images/md_banner_ (easylist.txt: 33551) -.mp3.li/images/md_banner_ -# ||mp.adverts.itv.com/priority/*.mp4$object-subrequest (easylist.txt: 33550) -.mp.adverts.itv.com/priority/.*\.mp4 -# ||movzap.com/zad.html (easylist.txt: 33549) -.movzap.com/zad\.html -# ||movzap.com/aad.html (easylist.txt: 33548) -.movzap.com/aad\.html -# ||movstreaming.com/images/edhim.jpg (easylist.txt: 33547) -.movstreaming.com/images/edhim\.jpg -# ||movizland.com/images/banners/ (easylist.txt: 33546) -.movizland.com/images/banners/ -# ||moviewallpaper.net/js/mwpopunder.js (easylist.txt: 33545) -.moviewallpaper.net/js/mwpopunder\.js -# ||movie4k.tv/e.js (easylist.txt: 33544) -.movie4k.tv/e\.js -# ||movie4k.to/*.js (easylist.txt: 33543) -.movie4k.to/.*\.js -# ||movie2kto.ws/popup (easylist.txt: 33542) -.movie2kto.ws/popup -# ||movie2k.tl/serve.php (easylist.txt: 33541) -.movie2k.tl/serve\.php -# ||movie2k.tl/layers/ (easylist.txt: 33540) -.movie2k.tl/layers/ -# ||mouthshut.com^*/zedo.aspx (easylist.txt: 33539) -.mouthshut.com/.*/zedo\.aspx -# ||mousesteps.com/images/banners/ (easylist.txt: 33538) -.mousesteps.com/images/banners/ -# ||mountainbuzz.com/attachments/banners/ (easylist.txt: 33537) -.mountainbuzz.com/attachments/banners/ -# ||motorweek.org^*/sponsor_logos/ (easylist.txt: 33536) -.motorweek.org/.*/sponsor_logos/ -# ||motortrader.com.my/skinner/ (easylist.txt: 33535) -.motortrader.com.my/skinner/ -# ||motorhomefacts.com/images/banners/ (easylist.txt: 33534) -.motorhomefacts.com/images/banners/ -# ||motorcycles-motorbikes.com/pictures/sponsors/ (easylist.txt: 33533) -.motorcycles-motorbikes.com/pictures/sponsors/ -# ||morningstaronline.co.uk/offsite/progressive-listings/ (easylist.txt: 33532) -.morningstaronline.co.uk/offsite/progressive-listings/ -# ||morefree.net/wp-content/uploads/*/mauritanie.gif (easylist.txt: 33531) -.morefree.net/wp-content/uploads/.*/mauritanie\.gif -# ||morefmphilly.com^*/sponsors/ (easylist.txt: 33530) -.morefmphilly.com/.*/sponsors/ -# ||monster.com/null&pp (easylist.txt: 33529) -.monster.com/null&pp -# ||monkeygamesworld.com/images/banners/ (easylist.txt: 33528) -.monkeygamesworld.com/images/banners/ -# ||monitor.co.ug/image/view/*/468/ (easylist.txt: 33527) -.monitor.co.ug/image/view/.*/468/ -# ||monitor.co.ug/image/view/*/120/ (easylist.txt: 33526) -.monitor.co.ug/image/view/.*/120/ -# ||moneymedics.biz/upload/banners/ (easylist.txt: 33525) -.moneymedics.biz/upload/banners/ -# ||moneymakerdiscussion.com/mmd-banners/ (easylist.txt: 33524) -.moneymakerdiscussion.com/mmd-banners/ -# ||mochiads.com/srv/ (easylist.txt: 33522) -.mochiads.com/srv/ -# ||mobilephonetalk.com/eurovps.swf (easylist.txt: 33521) -.mobilephonetalk.com/eurovps\.swf -# ||mob.org/banner/ (easylist.txt: 33520) -.mob.org/banner/ -# ||mnn.com^*/120x60/ (easylist.txt: 33519) -.mnn.com/.*/120x60/ -# ||mnn.com/sites/*/popups/AllstatePopup$script (easylist.txt: 33518) -.mnn.com/sites/.*/popups/AllstatePopup -# ||mmosite.com/sponsor/ (easylist.txt: 33517) -.mmosite.com/sponsor/ -# ||mmorpg.com/images/skins/ (easylist.txt: 33516) -.mmorpg.com/images/skins/ -# ||mmorpg.com/images/mr_ss_ (easylist.txt: 33515) -.mmorpg.com/images/mr_ss_ -# ||mmorpg.com/images/*_hots_r0.jpg (easylist.txt: 33514) -.mmorpg.com/images/.*_hots_r0\.jpg -# ||mmoculture.com/wp-content/uploads/*-background- (easylist.txt: 33513) -.mmoculture.com/wp-content/uploads/.*-background- -# ||mlb.com^*/sponsorship/ (easylist.txt: 33511) -.mlb.com/.*/sponsorship/ -# ||mlb.com/images/*_videoskin_*.jpg (easylist.txt: 33510) -.mlb.com/images/.*_videoskin_.*\.jpg -# ||mizzima.com/images/banners/ (easylist.txt: 33509) -.mizzima.com/images/banners/ -# ||mixx96.com/images/banners/ (easylist.txt: 33508) -.mixx96.com/images/banners/ -# ||mixfm.co.za^*/tallspon (easylist.txt: 33507) -.mixfm.co.za/.*/tallspon -# ||mixfm.co.za/images/banner (easylist.txt: 33506) -.mixfm.co.za/images/banner -# ||misterwhat.co.uk/business-company-300/ (easylist.txt: 33505) -.misterwhat.co.uk/business-company-300/ -# ||mirrorstack.com/?q=r_ads (easylist.txt: 33504) -.mirrorstack.com/\?q=r_ads -# ||mirrorcreator.com/js/pu_ad.js (easylist.txt: 33503) -.mirrorcreator.com/js/pu_ad\.js -# ||mirrorcreator.com/js/mpop.js (easylist.txt: 33502) -.mirrorcreator.com/js/mpop\.js -# ||mirror.co.uk^*_promos_ (easylist.txt: 33501) -.mirror.co.uk/.*_promos_ -# ||mirror.co.uk^*/sponsors/ (easylist.txt: 33500) -.mirror.co.uk/.*/sponsors/ -# ||mirror.co.uk^*/gutters/ (easylist.txt: 33499) -.mirror.co.uk/.*/gutters/ -# ||minnpost.com^*/sponsor/ (easylist.txt: 33498) -.minnpost.com/.*/sponsor/ -# ||mininova.org/js/vidukilayer.js (easylist.txt: 33497) -.mininova.org/js/vidukilayer\.js -# ||miniclipcdn.com/images/takeovers/ (easylist.txt: 33496) -.miniclipcdn.com/images/takeovers/ -# ||mindfood.com/upload/images/wallpaper_images/ (easylist.txt: 33495) -.mindfood.com/upload/images/wallpaper_images/ -# ||milanounited.co.za/images/sponsor_ (easylist.txt: 33494) -.milanounited.co.za/images/sponsor_ -# ||mikejung.biz/images/*/728x90xLiquidWeb_ (easylist.txt: 33493) -.mikejung.biz/images/.*/728x90xLiquidWeb_ -# ||mightyupload.com/popuu.js (easylist.txt: 33492) -.mightyupload.com/popuu\.js -# ||midlandsradio.fm/bms/ (easylist.txt: 33491) -.midlandsradio.fm/bms/ -# ||middle-east-online.com^*/meoadv/ (easylist.txt: 33490) -.middle-east-online.com/.*/meoadv/ -# ||michronicleonline.com/images/banners/ (easylist.txt: 33489) -.michronicleonline.com/images/banners/ -# ||micast.tv/clean.php (easylist.txt: 33488) -.micast.tv/clean\.php -# ||miamiherald.com^*/teamfanshop/ (easylist.txt: 33487) -.miamiherald.com/.*/teamfanshop/ -# ||miamiherald.com^*/dealsaver/ (easylist.txt: 33486) -.miamiherald.com/.*/dealsaver/ -# ||mi-pro.co.uk/banners/ (easylist.txt: 33485) -.mi-pro.co.uk/banners/ -# ||mhvillage.com/ppc.php? (easylist.txt: 33484) -.mhvillage.com/ppc\.php\? -# ||mgnetwork.com/dealtaker/ (easylist.txt: 33483) -.mgnetwork.com/dealtaker/ -# ||mgid.com/ban/ (easylist.txt: 33482) -.mgid.com/ban/ -# ||mg.co.za^*/wallpaper (easylist.txt: 33481) -.mg.co.za/.*/wallpaper -# ||mfcdn.net/media/game321/$image (easylist.txt: 33479) -.mfcdn.net/media/game321/ -# ||mfcdn.net/media/*right (easylist.txt: 33478) -.mfcdn.net/media/.*right -# ||mfcdn.net/media/*left (easylist.txt: 33477) -.mfcdn.net/media/.*left -# ||metromedia.co.za/bannersys/banners/ (easylist.txt: 33476) -.metromedia.co.za/bannersys/banners/ -# ||metrolyrics.com/js/min/tonefuse.js (easylist.txt: 33475) -.metrolyrics.com/js/min/tonefuse\.js -# ||metradar.ch^*/banner_ (easylist.txt: 33474) -.metradar.ch/.*/banner_ -# ||meteox.com/bannerdetails.aspx? (easylist.txt: 33473) -.meteox.com/bannerdetails\.aspx\? -# ||meteox.co.uk/bannerdetails.aspx? (easylist.txt: 33472) -.meteox.co.uk/bannerdetails\.aspx\? -# ||meteovista.co.uk/go/banner/ (easylist.txt: 33471) -.meteovista.co.uk/go/banner/ -# ||meteomedia.com^*&placement (easylist.txt: 33470) -.meteomedia.com/.*&placement -# ||messianictimes.com/images/Word%20of%20Messiah%20Ministries1.png (easylist.txt: 33469) -.messianictimes.com/images/Word%20of%20Messiah%20Ministries1\.png -# ||messianictimes.com/images/MJBI.org.gif (easylist.txt: 33468) -.messianictimes.com/images/MJBI\.org\.gif -# ||messianictimes.com/images/Jews%20for%20Jesus%20Banner.png (easylist.txt: 33467) -.messianictimes.com/images/Jews%20for%20Jesus%20Banner\.png -# ||messianictimes.com/images/Israel%20Today%20Logo.png (easylist.txt: 33466) -.messianictimes.com/images/Israel%20Today%20Logo\.png -# ||messianictimes.com/images/banners/ (easylist.txt: 33465) -.messianictimes.com/images/banners/ -# ||messianictimes.com/images/4-13/reach.jpg (easylist.txt: 33464) -.messianictimes.com/images/4-13/reach\.jpg -# ||messianictimes.com/images/1-13/ba_mhfinal_ (easylist.txt: 33463) -.messianictimes.com/images/1-13/ba_mhfinal_ -# ||merriam-webster.com^*/accipiter.js (easylist.txt: 33462) -.merriam-webster.com/.*/accipiter\.js -# ||merriam-webster.com/creative.php? (easylist.txt: 33461) -.merriam-webster.com/creative\.php\? -# ||mentalfloss.com^*-skin- (easylist.txt: 33460) -.mentalfloss.com/.*-skin- -# ||menafn.com^*/banner_ (easylist.txt: 33459) -.menafn.com/.*/banner_ -# ||memory-alpha.org/__varnish_liftium/ (easylist.txt: 33457) -.memory-alpha.org/__varnish_liftium/ -# ||meizufans.eu/vifocal.gif (easylist.txt: 33456) -.meizufans.eu/vifocal\.gif -# ||meizufans.eu/merimobiles.gif (easylist.txt: 33455) -.meizufans.eu/merimobiles\.gif -# ||meizufans.eu/efox.gif (easylist.txt: 33454) -.meizufans.eu/efox\.gif -# ||megauploadtrend.com/iframe/if.php? (easylist.txt: 33452) -.megauploadtrend.com/iframe/if\.php\? -# ||megashares.com/cache_program_banner.html (easylist.txt: 33450) -.megashares.com/cache_program_banner\.html -# ||megasearch.us/turboflirt.gif (easylist.txt: 33449) -.megasearch.us/turboflirt\.gif -# ||megasearch.us/ifx/ifx.php? (easylist.txt: 33448) -.megasearch.us/ifx/ifx\.php\? -# ||meetic.com/js/*/site_under_ (easylist.txt: 33447) -.meetic.com/js/.*/site_under_ -# ||medicaldaily.com/views/images/banners/ (easylist.txt: 33446) -.medicaldaily.com/views/images/banners/ -# ||mediaweek.com.au/storage/*_234x234.jpg? (easylist.txt: 33445) -.mediaweek.com.au/storage/.*_234x234\.jpg\? -# ||mediaupdate.co.za/temp/banner_ (easylist.txt: 33444) -.mediaupdate.co.za/temp/banner_ -# ||mediaticks.com/images/genx.jpg (easylist.txt: 33443) -.mediaticks.com/images/genx\.jpg -# ||mediaticks.com/images/genx-infotech.jpg (easylist.txt: 33442) -.mediaticks.com/images/genx-infotech\.jpg -# ||mediaticks.com/bollywood.jpg (easylist.txt: 33441) -.mediaticks.com/bollywood\.jpg -# ||mediaspanonline.com/inc.php?uri=/&bannerPositions= (easylist.txt: 33438) -.mediaspanonline.com/inc\.php\?uri=/&bannerPositions= -# ||mediaspanonline.com/images/buy-itunes.png (easylist.txt: 33437) -.mediaspanonline.com/images/buy-itunes\.png -# ||mediamgr.ugo.com^ (easylist.txt: 33436) -.mediamgr.ugo.com -# ||mediafiretrend.com/turboflirt.gif (easylist.txt: 33435) -.mediafiretrend.com/turboflirt\.gif -# ||mediafiretrend.com/ifx/ifx.php? (easylist.txt: 33434) -.mediafiretrend.com/ifx/ifx\.php\? -# ||mediafire.re/popup.js (easylist.txt: 33433) -.mediafire.re/popup\.js -# ||mediafire.com^*/rockmelt_tabcontent.jpg (easylist.txt: 33432) -.mediafire.com/.*/rockmelt_tabcontent\.jpg -# ||mediafire.com^*/linkto/default-$subdocument (easylist.txt: 33431) -.mediafire.com/.*/linkto/default- -# ||mediafire.com/templates/linkto/ (easylist.txt: 33430) -.mediafire.com/templates/linkto/ -# ||mediafire.com/images/rockmelt/ (easylist.txt: 33429) -.mediafire.com/images/rockmelt/ -# ||media.abc.go.com^*/callouts/ (easylist.txt: 33427) -.media.abc.go.com/.*/callouts/ -# ||media-mgmt.armorgames.com^ (easylist.txt: 33426) -.media-mgmt.armorgames.com -# ||media-imdb.com^*/clicktale-$script (easylist.txt: 33425) -.media-imdb.com/.*/clicktale- -# ||media-imdb.com^*/affiliates/ (easylist.txt: 33424) -.media-imdb.com/.*/affiliates/ -# ||media-imdb.com/images/*/mptv_banner_ (easylist.txt: 33423) -.media-imdb.com/images/.*/mptv_banner_ -# ||media-delivery.armorgames.com^ (easylist.txt: 33422) -.media-delivery.armorgames.com -# ||medhelp.org/hserver/ (easylist.txt: 33421) -.medhelp.org/hserver/ -# ||mechodownload.com/forum/images/affiliates/ (easylist.txt: 33420) -.mechodownload.com/forum/images/affiliates/ -# ||meanjin.com.au/static/images/sponsors.jpg (easylist.txt: 33419) -.meanjin.com.au/static/images/sponsors\.jpg -# ||mealsandsteals.sandiego6.com^ (easylist.txt: 33418) -.mealsandsteals.sandiego6.com -# ||mcvuk.com/static/banners/ (easylist.txt: 33417) -.mcvuk.com/static/banners/ -# ||mcstatic.com^*/billboard_ (easylist.txt: 33416) -.mcstatic.com/.*/billboard_ -# ||mcsesports.com/images/sponsors/ (easylist.txt: 33415) -.mcsesports.com/images/sponsors/ -# ||mcnews.com.au/banners/ (easylist.txt: 33414) -.mcnews.com.au/banners/ -# ||mcjonline.com/filemanager/userfiles/banners/ (easylist.txt: 33413) -.mcjonline.com/filemanager/userfiles/banners/ -# ||mccont.com/takeover/ (easylist.txt: 33412) -.mccont.com/takeover/ -# ||mccont.com/sda/ (easylist.txt: 33411) -.mccont.com/sda/ -# ||mccont.com/campaign%20management/ (easylist.txt: 33410) -.mccont.com/campaign%20management/ -# ||mbl.is/mm/augl/ (easylist.txt: 33409) -.mbl.is/mm/augl/ -# ||mbl.is/augl/ (easylist.txt: 33408) -.mbl.is/augl/ -# ||mb.hockeybuzz.com^ (easylist.txt: 33407) -.mb.hockeybuzz.com -# ||mb.com.ph^*/skyscraper- (easylist.txt: 33406) -.mb.com.ph/.*/skyscraper- -# ||maxgames.com^*/sponsor_ (easylist.txt: 33405) -.maxgames.com/.*/sponsor_ -# ||maxconsole.com/maxconsole/banners/ (easylist.txt: 33404) -.maxconsole.com/maxconsole/banners/ -# ||mauritiusnews.co.uk/images/banners/ (easylist.txt: 33403) -.mauritiusnews.co.uk/images/banners/ -# ||mathforum.org/images/tutor.gif (easylist.txt: 33402) -.mathforum.org/images/tutor\.gif -# ||mashable.com/tripleclick.html (easylist.txt: 33401) -.mashable.com/tripleclick\.html -# ||mary.com/728_header.php (easylist.txt: 33400) -.mary.com/728_header\.php -# ||marketplace.org^*/support_block/ (easylist.txt: 33399) -.marketplace.org/.*/support_block/ -# ||marketnewsvideo.com/mnvport160.gif (easylist.txt: 33398) -.marketnewsvideo.com/mnvport160\.gif -# ||marketnewsvideo.com/etfchannel/evfad1.gif (easylist.txt: 33397) -.marketnewsvideo.com/etfchannel/evfad1\.gif -# ||marketintelligencecenter.com/images/brokers/ (easylist.txt: 33396) -.marketintelligencecenter.com/images/brokers/ -# ||marketingupdate.co.za/temp/banner_ (easylist.txt: 33395) -.marketingupdate.co.za/temp/banner_ -# ||marketingsolutions.yahoo.com^ (easylist.txt: 33394) -.marketingsolutions.yahoo.com -# ||marketingpilgrim.com/wp-content/uploads/*/trackur.com- (easylist.txt: 33393) -.marketingpilgrim.com/wp-content/uploads/.*/trackur\.com- -# ||marineterms.com/images/banners/ (easylist.txt: 33392) -.marineterms.com/images/banners/ -# ||marengo-uniontimes.com/images/banners/ (easylist.txt: 33391) -.marengo-uniontimes.com/images/banners/ -# ||maravipost.com/images/banners/ (easylist.txt: 33390) -.maravipost.com/images/banners/ -# ||mapsofindia.com/widgets/tribalfusionboxadd.html (easylist.txt: 33389) -.mapsofindia.com/widgets/tribalfusionboxadd\.html -# ||manxradio.com^*/banners_ (easylist.txt: 33388) -.manxradio.com/.*/banners_ -# ||manutd.com^*/Sponsors/ (easylist.txt: 33387) -.manutd.com/.*/Sponsors/ -# ||manilatimes.net/images/banners/ (easylist.txt: 33386) -.manilatimes.net/images/banners/ -# ||manicapost.com^*/banners/ (easylist.txt: 33385) -.manicapost.com/.*/banners/ -# ||maniastreaming.com/pp2/ (easylist.txt: 33384) -.maniastreaming.com/pp2/ -# ||mani-admin-plugin.com^*/banners/ (easylist.txt: 33383) -.mani-admin-plugin.com/.*/banners/ -# ||manhattantimesnews.com/images/banners/ (easylist.txt: 33382) -.manhattantimesnews.com/images/banners/ -# ||mangaupdates.com/affiliates/ (easylist.txt: 33381) -.mangaupdates.com/affiliates/ -# ||mangarush.com/xtend.php (easylist.txt: 33380) -.mangarush.com/xtend\.php -# ||mangareader.net/images/800-x-100 (easylist.txt: 33379) -.mangareader.net/images/800-x-100 -# ||mangafox.com/media/game321/ (easylist.txt: 33378) -.mangafox.com/media/game321/ -# ||malwaredomains.com/ra.jpg (easylist.txt: 33377) -.malwaredomains.com/ra\.jpg -# ||maltatoday.com.mt/ui_frontend/display_external_module/ (easylist.txt: 33376) -.maltatoday.com.mt/ui_frontend/display_external_module/ -# ||malaysiakini.com/misc/banners/ (easylist.txt: 33375) -.malaysiakini.com/misc/banners/ -# ||malaysiabay.org^*creatives.php? (easylist.txt: 33374) -.malaysiabay.org/.*creatives\.php\? -# ||malaysiabay.org^*/creative.js (easylist.txt: 33373) -.malaysiabay.org/.*/creative\.js -# ||makeagif.com/parts/fiframe.php (easylist.txt: 33372) -.makeagif.com/parts/fiframe\.php -# ||majorgeeks.com^*/banners/ (easylist.txt: 33371) -.majorgeeks.com/.*/banners/ -# ||majorgeeks.com/images/mg120.jpg (easylist.txt: 33370) -.majorgeeks.com/images/mg120\.jpg -# ||majorgeeks.com/images/mb-hb-2.jpg (easylist.txt: 33369) -.majorgeeks.com/images/mb-hb-2\.jpg -# ||majorgeeks.com/images/download_sd_ (easylist.txt: 33368) -.majorgeeks.com/images/download_sd_ -# ||majorgeeks.com/images/*_336x280.jpg (easylist.txt: 33367) -.majorgeeks.com/images/.*_336x280\.jpg -# ||majorgeeks.com/aff/ (easylist.txt: 33366) -.majorgeeks.com/aff/ -# ||mailinator.com^*/clickbanner.jpg (easylist.txt: 33365) -.mailinator.com/.*/clickbanner\.jpg -# ||mailinator.com/images/abine/leaderboard- (easylist.txt: 33364) -.mailinator.com/images/abine/leaderboard- -# ||mail.yahoo.com/neo/mbimg?av/curveball/ds/ (easylist.txt: 33363) -.mail.yahoo.com/neo/mbimg\?av/curveball/ds/ -# ||mail.yahoo.com/mc/md.php? (easylist.txt: 33362) -.mail.yahoo.com/mc/md\.php\? -# ||madville.com/afs.php (easylist.txt: 33361) -.madville.com/afs\.php -# ||madskristensen.net/discount2.js (easylist.txt: 33360) -.madskristensen.net/discount2\.js -# ||mads.dailymail.co.uk^ (easylist.txt: 33359) -.mads.dailymail.co.uk -# ||madamenoire.com/wp-content/*_Reskin-$image (easylist.txt: 33358) -.madamenoire.com/wp-content/.*_Reskin- -# ||macworld.com/ads/ (easylist.txt: 33357) -.macworld.com/ads/ -# ||macworld.co.uk^*/textdeals/ (easylist.txt: 33356) -.macworld.co.uk/.*/textdeals/ -# ||macworld.co.uk/promo/ (easylist.txt: 33355) -.macworld.co.uk/promo/ -# ||macupdate.com/js/google_service.js (easylist.txt: 33354) -.macupdate.com/js/google_service\.js -# ||macobserver.com^*/deal_brothers/ (easylist.txt: 33353) -.macobserver.com/.*/deal_brothers/ -# ||macobserver.com/js/givetotmo.js (easylist.txt: 33352) -.macobserver.com/js/givetotmo\.js -# ||macmillandictionary.com/info/frame.html?zone= (easylist.txt: 33351) -.macmillandictionary.com/info/frame\.html\?zone= -# ||maciverse.mangoco.netdna-cdn.com^*banner (easylist.txt: 33350) -.maciverse.mangoco.netdna-cdn.com/.*banner -# ||macintouch.com/images/owc_ (easylist.txt: 33349) -.macintouch.com/images/owc_ -# ||macintouch.com/images/amaz_ (easylist.txt: 33348) -.macintouch.com/images/amaz_ -# ||machovideo.com/img/site/postimg2/rotate.php (easylist.txt: 33347) -.machovideo.com/img/site/postimg2/rotate\.php -# ||macblurayplayer.com/image/amazon- (easylist.txt: 33346) -.macblurayplayer.com/image/amazon- -# ||macaunews.com.mo/images/stories/banners/ (easylist.txt: 33345) -.macaunews.com.mo/images/stories/banners/ -# ||macaudailytimes.com.mo/files/banners/ (easylist.txt: 33344) -.macaudailytimes.com.mo/files/banners/ -# ||m4carbine.net/tabs/ (easylist.txt: 33343) -.m4carbine.net/tabs/ -# ||m-w.com/creative.php (easylist.txt: 33342) -.m-w.com/creative\.php -# ||lyricsfreak.com^*/overlay.js (easylist.txt: 33341) -.lyricsfreak.com/.*/overlay\.js -# ||lyrics5ab.com/wp-content/add$subdocument (easylist.txt: 33340) -.lyrics5ab.com/wp-content/add -# ||lygo.com/scripts/catman/ (easylist.txt: 33339) -.lygo.com/scripts/catman/ -# ||lycos.com/catman/ (easylist.txt: 33338) -.lycos.com/catman/ -# ||lw2.gamecopyworld.com^ (easylist.txt: 33337) -.lw2.gamecopyworld.com -# ||lw1.lnkworld.com^$subdocument (easylist.txt: 33336) -.lw1.lnkworld.com -# ||lw1.gamecopyworld.com^$subdocument (easylist.txt: 33335) -.lw1.gamecopyworld.com -# ||luxury4play.com^*/ads/ (easylist.txt: 33334) -.luxury4play.com/.*/ads/ -# ||luckyshare.net/images/sda/ (easylist.txt: 33333) -.luckyshare.net/images/sda/ -# ||luckyshare.net/images/2top.png (easylist.txt: 33332) -.luckyshare.net/images/2top\.png -# ||luckyshare.net/images/1gotlucky.png (easylist.txt: 33331) -.luckyshare.net/images/1gotlucky\.png -# ||lucianne.com^*_*.html (easylist.txt: 33330) -.lucianne.com/.*_.*\.html -# ||lshunter.tv^*&task=getbets$xmlhttprequest (easylist.txt: 33329) -.lshunter.tv/.*&task=getbets -# ||lshunter.tv/images/bets/ (easylist.txt: 33328) -.lshunter.tv/images/bets/ -# ||lowyat.net/mainpage/background.jpg (easylist.txt: 33327) -.lowyat.net/mainpage/background\.jpg -# ||lowyat.net/lowyat/lowyat-bg.jpg (easylist.txt: 33326) -.lowyat.net/lowyat/lowyat-bg\.jpg -# ||lowendbox.com/wp-content/themes/leb/banners/ (easylist.txt: 33325) -.lowendbox.com/wp-content/themes/leb/banners/ -# ||lowellsun.com/litebanner/ (easylist.txt: 33324) -.lowellsun.com/litebanner/ -# ||lowbird.com/lbpun.php (easylist.txt: 33323) -.lowbird.com/lbpun\.php -# ||lowbird.com/lbpu.php (easylist.txt: 33322) -.lowbird.com/lbpu\.php -# ||lostrabbitmedia.com/images/banners/ (easylist.txt: 33321) -.lostrabbitmedia.com/images/banners/ -# ||looky.hyves.org^ (easylist.txt: 33320) -.looky.hyves.org -# ||lookbook.nu^*.html?$subdocument (easylist.txt: 33319) -.lookbook.nu/.*\.html\? -# ||lookbook.nu/show_skyscraper.html (easylist.txt: 33318) -.lookbook.nu/show_skyscraper\.html -# ||lookbook.nu/show_leaderboard.html (easylist.txt: 33317) -.lookbook.nu/show_leaderboard\.html -# ||londonstockexchange.com^*/fx.gif (easylist.txt: 33316) -.londonstockexchange.com/.*/fx\.gif -# ||londonprivaterentals.standard.co.uk^ (easylist.txt: 33315) -.londonprivaterentals.standard.co.uk -# ||london2012.com/imgml/partners/footer/ (easylist.txt: 33314) -.london2012.com/imgml/partners/footer/ -# ||london2012.com/img/sponsors/ (easylist.txt: 33313) -.london2012.com/img/sponsors/ -# ||lolzbook.com/test/ (easylist.txt: 33312) -.lolzbook.com/test/ -# ||loleasy.com^*/adsmanager.js (easylist.txt: 33311) -.loleasy.com/.*/adsmanager\.js -# ||loleasy.com/promo/ (easylist.txt: 33310) -.loleasy.com/promo/ -# ||logotv.com/content/skins/ (easylist.txt: 33309) -.logotv.com/content/skins/ -# ||logoopenstock.com/img/banners/ (easylist.txt: 33308) -.logoopenstock.com/img/banners/ -# ||locanto.co.za/run/afcbackfill/ (easylist.txt: 33307) -.locanto.co.za/run/afcbackfill/ -# ||localvictory.com^*/Trailblazer-Ad.png (easylist.txt: 33306) -.localvictory.com/.*/Trailblazer-Ad\.png -# ||localdirectories.com.au^*/bannerimages/ (easylist.txt: 33305) -.localdirectories.com.au/.*/bannerimages/ -# ||lmgtfy.com/s/images/ls_ (easylist.txt: 33304) -.lmgtfy.com/s/images/ls_ -# ||ll.a.hulu.com^ (easylist.txt: 33303) -.ll.a.hulu.com -# ||livingscoop.com/vastload.php (easylist.txt: 33302) -.livingscoop.com/vastload\.php -# ||livetvcenter.com/satellitedirect_ (easylist.txt: 33301) -.livetvcenter.com/satellitedirect_ -# ||livetv.ru/mb/ (easylist.txt: 33300) -.livetv.ru/mb/ -# ||livetradingnews.com/wp-content/uploads/vamp_cigarettes.png (easylist.txt: 33299) -.livetradingnews.com/wp-content/uploads/vamp_cigarettes\.png -# ||livestream.com^*/overlay/ (easylist.txt: 33298) -.livestream.com/.*/overlay/ -# ||livesearch.ninemsn.com.au^$subdocument (easylist.txt: 33297) -.livesearch.ninemsn.com.au -# ||livescore.in/res/image/bookmaker-list.png (easylist.txt: 33296) -.livescore.in/res/image/bookmaker-list\.png -# ||liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn.gif (easylist.txt: 33295) -.liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn\.gif -# ||livejasmin.com/freechat.php (easylist.txt: 33294) -.livejasmin.com/freechat\.php -# ||live-proxy.com/vectrotunnel-logo.jpg (easylist.txt: 33293) -.live-proxy.com/vectrotunnel-logo\.jpg -# ||live-proxy.com/hide-my-ass.gif (easylist.txt: 33292) -.live-proxy.com/hide-my-ass\.gif -# ||littleindia.com/files/banners/ (easylist.txt: 33291) -.littleindia.com/files/banners/ -# ||liquidcompass.net^*/purchase_ (easylist.txt: 33290) -.liquidcompass.net/.*/purchase_ -# ||liquidcompass.net/playerapi/redirect/ (easylist.txt: 33289) -.liquidcompass.net/playerapi/redirect/ -# ||lionsrugby.co.za^*/sponsors. (easylist.txt: 33288) -.lionsrugby.co.za/.*/sponsors\. -# ||linuxtopia.org/includes/$subdocument (easylist.txt: 33287) -.linuxtopia.org/includes/ -# ||linuxsat-support.com/vsa_banners/ (easylist.txt: 33286) -.linuxsat-support.com/vsa_banners/ -# ||linuxmint.com/pictures/sponsors/ (easylist.txt: 33285) -.linuxmint.com/pictures/sponsors/ -# ||linuxmint.com/img/sponsor/ (easylist.txt: 33284) -.linuxmint.com/img/sponsor/ -# ||linuxinsider.com/images/sda/ (easylist.txt: 33283) -.linuxinsider.com/images/sda/ -# ||linksrank.com/links/ (easylist.txt: 33282) -.linksrank.com/links/ -# ||linksave.in^*/downloadbutton_highspeed.png (easylist.txt: 33281) -.linksave.in/.*/downloadbutton_highspeed\.png -# ||linksave.in/img/downloadbutton_sh.png (easylist.txt: 33280) -.linksave.in/img/downloadbutton_sh\.png -# ||linksave.in/img/downloadbutton_hs.png (easylist.txt: 33279) -.linksave.in/img/downloadbutton_hs\.png -# ||linksave.in/img/downloadbutton_alt.png (easylist.txt: 33278) -.linksave.in/img/downloadbutton_alt\.png -# ||linksafe.info^*/mirror.png (easylist.txt: 33277) -.linksafe.info/.*/mirror\.png -# ||linkmoon.net/banners/ (easylist.txt: 33276) -.linkmoon.net/banners/ -# ||linkfm.co.za/images/banners/ (easylist.txt: 33275) -.linkfm.co.za/images/banners/ -# ||linkcentre.com/top_fp.php (easylist.txt: 33274) -.linkcentre.com/top_fp\.php -# ||linguee.com/banner/ (easylist.txt: 33273) -.linguee.com/banner/ -# ||limetorrentlinkmix.com/rd18/dop.js (easylist.txt: 33272) -.limetorrentlinkmix.com/rd18/dop\.js -# ||limesurvey.org/images/banners/ (easylist.txt: 33271) -.limesurvey.org/images/banners/ -# ||lifetips.com/sponsors/ (easylist.txt: 33270) -.lifetips.com/sponsors/ -# ||lifeinqueensland.com/images/156x183a_ (easylist.txt: 33269) -.lifeinqueensland.com/images/156x183a_ -# ||life.imagepix.org^ (easylist.txt: 33268) -.life.imagepix.org -# ||licensing.biz/media/banners/ (easylist.txt: 33267) -.licensing.biz/media/banners/ -# ||libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300.gif? (easylist.txt: 33266) -.libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300\.gif\? -# ||lfgcomic.com/wp-content/uploads/*/PageSkin_ (easylist.txt: 33265) -.lfgcomic.com/wp-content/uploads/.*/PageSkin_ -# ||lfcimages.com^*/sponsor- (easylist.txt: 33264) -.lfcimages.com/.*/sponsor- -# ||lfcimages.com^*/partner- (easylist.txt: 33263) -.lfcimages.com/.*/partner- -# ||letswatchsomething.com/images/filestreet_banner.jpg (easylist.txt: 33262) -.letswatchsomething.com/images/filestreet_banner\.jpg -# ||letour.fr/img/v6/sprite_partners_2x.png (easylist.txt: 33261) -.letour.fr/img/v6/sprite_partners_2x\.png -# ||letitbit.net/images/other/inst_forex_ (easylist.txt: 33260) -.letitbit.net/images/other/inst_forex_ -# ||lespagesjaunesafrique.com/bandeaux/ (easylist.txt: 33259) -.lespagesjaunesafrique.com/bandeaux/ -# ||lens101.com/images/banner.jpg (easylist.txt: 33258) -.lens101.com/images/banner\.jpg -# ||legalbusinessonline.com/popup/albpartners.aspx (easylist.txt: 33257) -.legalbusinessonline.com/popup/albpartners\.aspx -# ||lecydre.com/proxy.png (easylist.txt: 33256) -.lecydre.com/proxy\.png -# ||learnspanishtoday.com/aff/img/banners/ (easylist.txt: 33255) -.learnspanishtoday.com/aff/img/banners/ -# ||learnphotoediting.net/banners/ (easylist.txt: 33254) -.learnphotoediting.net/banners/ -# ||leagueunlimited.com/images/rooty/ (easylist.txt: 33253) -.leagueunlimited.com/images/rooty/ -# ||leadership.ng/cheki- (easylist.txt: 33252) -.leadership.ng/cheki- -# ||leader.co.za/leadership/banners/ (easylist.txt: 33251) -.leader.co.za/leadership/banners/ -# ||lazygirls.info/click.php (easylist.txt: 33250) -.lazygirls.info/click\.php -# ||lazygamer.net/kalahari.gif (easylist.txt: 33249) -.lazygamer.net/kalahari\.gif -# ||latex-community.org/images/banners/ (easylist.txt: 33248) -.latex-community.org/images/banners/ -# ||lasttorrents.org/pcmadd.swf (easylist.txt: 33247) -.lasttorrents.org/pcmadd\.swf -# ||lastminute.com^*/universal.html? (easylist.txt: 33246) -.lastminute.com/.*/universal\.html\? -# ||laredodaily.com/images/banners/ (easylist.txt: 33245) -.laredodaily.com/images/banners/ -# ||laptopmag.com/images/sponsorships/ (easylist.txt: 33244) -.laptopmag.com/images/sponsorships/ -# ||laobserved.com/tch-ad.jpg (easylist.txt: 33243) -.laobserved.com/tch-ad\.jpg -# ||lankabusinessonline.com/images/banners/ (easylist.txt: 33242) -.lankabusinessonline.com/images/banners/ -# ||lancasteronline.com^*/weather_sponsor.gif (easylist.txt: 33241) -.lancasteronline.com/.*/weather_sponsor\.gif -# ||lancasteronline.com^*/done_deal/ (easylist.txt: 33240) -.lancasteronline.com/.*/done_deal/ -# ||laliga.es/img/patrocinadores- (easylist.txt: 33239) -.laliga.es/img/patrocinadores- -# ||lake-link.com/images/sponsorLogos/ (easylist.txt: 33238) -.lake-link.com/images/sponsorLogos/ -# ||lagacetanewspaper.com^*/banners/ (easylist.txt: 33237) -.lagacetanewspaper.com/.*/banners/ -# ||labx.com/web/banners/ (easylist.txt: 33236) -.labx.com/web/banners/ -# ||labtimes.org/banner/ (easylist.txt: 33235) -.labtimes.org/banner/ -# ||l4dmaps.com/img/right_gameservers.gif (easylist.txt: 33234) -.l4dmaps.com/img/right_gameservers\.gif -# ||l4dmaps.com/i/right_dllme.gif (easylist.txt: 33233) -.l4dmaps.com/i/right_dllme\.gif -# ||l.yimg.com/mq/a/ (easylist.txt: 33232) -.l.yimg.com/mq/a/ -# ||l.yimg.com/ao/i/ad/ (easylist.txt: 33231) -.l.yimg.com/ao/i/ad/ -# ||l.yimg.com/a/i/*_wallpaper$image (easylist.txt: 33230) -.l.yimg.com/a/i/.*_wallpaper -# ||kyivpost.com/media/banners/ (easylist.txt: 33229) -.kyivpost.com/media/banners/ -# ||kxlh.com/images/banner/ (easylist.txt: 33228) -.kxlh.com/images/banner/ -# ||kwikupload.com/images/dlbtn.png (easylist.txt: 33225) -.kwikupload.com/images/dlbtn\.png -# ||kwanalu.co.za/upload/ad/ (easylist.txt: 33224) -.kwanalu.co.za/upload/ad/ -# ||kvcr.org^*/sponsors/ (easylist.txt: 33223) -.kvcr.org/.*/sponsors/ -# ||kuwaittimes.net/banners/ (easylist.txt: 33222) -.kuwaittimes.net/banners/ -# ||kukuplay.com/upload/*.swf (easylist.txt: 33221) -.kukuplay.com/upload/.*\.swf -# ||kuiken.co/static/w.js (easylist.txt: 33220) -.kuiken.co/static/w\.js -# ||ktradionetwork.com^*/banners/ (easylist.txt: 33219) -.ktradionetwork.com/.*/banners/ -# ||kstp.com^*/flexhousepromotions/ (easylist.txt: 33218) -.kstp.com/.*/flexhousepromotions/ -# ||ksstradio.com/wp-content/banners/ (easylist.txt: 33217) -.ksstradio.com/wp-content/banners/ -# ||krzk.com/uploads/banners/ (easylist.txt: 33216) -.krzk.com/uploads/banners/ -# ||kron.com/uploads/*-ad-$image (easylist.txt: 33215) -.kron.com/uploads/.*-ad- -# ||krebsonsecurity.com/b-kb/ (easylist.txt: 33214) -.krebsonsecurity.com/b-kb/ -# ||krebsonsecurity.com/b-ga/ (easylist.txt: 33213) -.krebsonsecurity.com/b-ga/ -# ||krapps.com^*-banner- (easylist.txt: 33212) -.krapps.com/.*-banner- -# ||kovideo.net^*.php?user_ (easylist.txt: 33211) -.kovideo.net/.*\.php\?user_ -# ||koreatimes.co.kr/www/images/bn/ (easylist.txt: 33210) -.koreatimes.co.kr/www/images/bn/ -# ||koreatimes.co.kr/upload/ad/ (easylist.txt: 33209) -.koreatimes.co.kr/upload/ad/ -# ||koreatimes.co.kr/images/bn/ (easylist.txt: 33208) -.koreatimes.co.kr/images/bn/ -# ||koreatimes.co.kr/ad/ (easylist.txt: 33207) -.koreatimes.co.kr/ad/ -# ||koreanmovie.com/img/banner/banner.jpg (easylist.txt: 33206) -.koreanmovie.com/img/banner/banner\.jpg -# ||koraliga.com/open.js (easylist.txt: 33205) -.koraliga.com/open\.js -# ||kontraband.com/media/takeovers/ (easylist.txt: 33204) -.kontraband.com/media/takeovers/ -# ||kongregate.com/images/help_devs_*.png (easylist.txt: 33203) -.kongregate.com/images/help_devs_.*\.png -# ||kompas.com/js_kompasads.php (easylist.txt: 33202) -.kompas.com/js_kompasads\.php -# ||komando.com^*/k2-interstitial.min.js? (easylist.txt: 33201) -.komando.com/.*/k2-interstitial\.min\.js\? -# ||kob.com/kobtvimages/flexhousepromotions/ (easylist.txt: 33200) -.kob.com/kobtvimages/flexhousepromotions/ -# ||knpr.org/common/sponsors/ (easylist.txt: 33199) -.knpr.org/common/sponsors/ -# ||knowthecause.com/images/banners/ (easylist.txt: 33198) -.knowthecause.com/images/banners/ -# ||knowledgespeak.com/images/banner/ (easylist.txt: 33197) -.knowledgespeak.com/images/banner/ -# ||knowfree.net^*/ezm125x125.gif (easylist.txt: 33196) -.knowfree.net/.*/ezm125x125\.gif -# ||knco.com/wp-content/uploads/wpt/ (easylist.txt: 33195) -.knco.com/wp-content/uploads/wpt/ -# ||kncminer.com/userfiles/image/250_240.jpg (easylist.txt: 33194) -.kncminer.com/userfiles/image/250_240\.jpg -# ||knbr.com^*/banners/ (easylist.txt: 33193) -.knbr.com/.*/banners/ -# ||klm.com^*/fls_redirect.html (easylist.txt: 33192) -.klm.com/.*/fls_redirect\.html -# ||klkdccs.net/pjs/yavli-tools.js (easylist.txt: 33191) -.klkdccs.net/pjs/yavli-tools\.js -# ||klfm967.co.uk/resources/creative/ (easylist.txt: 33190) -.klfm967.co.uk/resources/creative/ -# ||kleisauke.nl/static/img/bar.gif (easylist.txt: 33189) -.kleisauke.nl/static/img/bar\.gif -# ||klav1230am.com^*/banners/ (easylist.txt: 33188) -.klav1230am.com/.*/banners/ -# ||kjul1047.com^*/clientgraphics/ (easylist.txt: 33187) -.kjul1047.com/.*/clientgraphics/ -# ||kjlhradio.com^*/banners/ (easylist.txt: 33186) -.kjlhradio.com/.*/banners/ -# ||kjlhradio.com^*-300x250. (easylist.txt: 33185) -.kjlhradio.com/.*-300x250\. -# ||kitz.co.uk/files/jump2/ (easylist.txt: 33184) -.kitz.co.uk/files/jump2/ -# ||kitguru.net/wp-content/wrap.jpg (easylist.txt: 33183) -.kitguru.net/wp-content/wrap\.jpg -# ||kitguru.net/wp-content/banners/ (easylist.txt: 33182) -.kitguru.net/wp-content/banners/ -# ||kitguru.net/?kitguru_wrapjs=1&ver= (easylist.txt: 33181) -.kitguru.net/\?kitguru_wrapjs=1&ver= -# ||kitco.com^*/banners/ (easylist.txt: 33180) -.kitco.com/.*/banners/ -# ||kitco.com/ssi/market_ox_deanmg.stm (easylist.txt: 33179) -.kitco.com/ssi/market_ox_deanmg\.stm -# ||kitco.com/ssi/home_ox_deanmg.stm (easylist.txt: 33178) -.kitco.com/ssi/home_ox_deanmg\.stm -# ||kitco.com/ssi/dmg_banner_001.stm (easylist.txt: 33177) -.kitco.com/ssi/dmg_banner_001\.stm -# ||kirupa.com/supporter/ (easylist.txt: 33176) -.kirupa.com/supporter/ -# ||kinox.tv/g.js (easylist.txt: 33175) -.kinox.tv/g\.js -# ||kinox.to/com/ (easylist.txt: 33174) -.kinox.to/com/ -# ||kinox.to/392i921321.js (easylist.txt: 33173) -.kinox.to/392i921321\.js -# ||kingofsat.net/pub/ (easylist.txt: 33172) -.kingofsat.net/pub/ -# ||kingfiles.net/images/bt.png (easylist.txt: 33171) -.kingfiles.net/images/bt\.png -# ||kickoff.com/images/sleeves/ (easylist.txt: 33170) -.kickoff.com/images/sleeves/ -# ||kickasstorrent.ph/kat_adplib.js (easylist.txt: 33169) -.kickasstorrent.ph/kat_adplib\.js -# ||khon2.com^*/sponsors/ (easylist.txt: 33168) -.khon2.com/.*/sponsors/ -# ||khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N.jpg (easylist.txt: 33167) -.khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N\.jpg -# ||khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN.jpg (easylist.txt: 33166) -.khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN\.jpg -# ||kfog.com^*/banners/ (easylist.txt: 33165) -.kfog.com/.*/banners/ -# ||keygen-fm.ru/images/*.swf (easylist.txt: 33164) -.keygen-fm.ru/images/.*\.swf -# ||kexp.org^*/sponsoredby. (easylist.txt: 33163) -.kexp.org/.*/sponsoredby\. -# ||kexp.org^*/sponsor- (easylist.txt: 33162) -.kexp.org/.*/sponsor- -# ||kewlshare.com/reward.html (easylist.txt: 33161) -.kewlshare.com/reward\.html -# ||kermit.macnn.com^ (easylist.txt: 33160) -.kermit.macnn.com -# ||kephyr.com/spywarescanner/banner1.gif (easylist.txt: 33159) -.kephyr.com/spywarescanner/banner1\.gif -# ||kentonline.co.uk/weatherimages/sponsor_ (easylist.txt: 33158) -.kentonline.co.uk/weatherimages/sponsor_ -# ||kentonline.co.uk/weatherimages/SEW.jpg (easylist.txt: 33157) -.kentonline.co.uk/weatherimages/SEW\.jpg -# ||kentonline.co.uk/weatherimages/Britelite.gif (easylist.txt: 33156) -.kentonline.co.uk/weatherimages/Britelite\.gif -# ||kendrickcoleman.com/images/banners/ (easylist.txt: 33155) -.kendrickcoleman.com/images/banners/ -# ||keepvid.com/images/winxdvd- (easylist.txt: 33154) -.keepvid.com/images/winxdvd- -# ||keepvid.com/images/ilivid- (easylist.txt: 33153) -.keepvid.com/images/ilivid- -# ||keepthelighton.vpsboard.com^ (easylist.txt: 33152) -.keepthelighton.vpsboard.com -# ||keenspot.com/images/headerbar- (easylist.txt: 33151) -.keenspot.com/images/headerbar- -# ||kdoctv.net/images/banners/ (easylist.txt: 33150) -.kdoctv.net/images/banners/ -# ||kdnuggets.com/aps/ (easylist.txt: 33149) -.kdnuggets.com/aps/ -# ||kcrw.com/collage-images/itunes.gif (easylist.txt: 33148) -.kcrw.com/collage-images/itunes\.gif -# ||kcrw.com/collage-images/amazon.gif (easylist.txt: 33147) -.kcrw.com/collage-images/amazon\.gif -# ||kblx.com/upload/takeover_ (easylist.txt: 33146) -.kblx.com/upload/takeover_ -# ||kbcradio.eu/img/banner/ (easylist.txt: 33145) -.kbcradio.eu/img/banner/ -# ||kavkisfile.com/images/ly.gif (easylist.txt: 33144) -.kavkisfile.com/images/ly\.gif -# ||kavkisfile.com/images/ly-mini.gif (easylist.txt: 33143) -.kavkisfile.com/images/ly-mini\.gif -# ||kat-ads.torrenticity.com^ (easylist.txt: 33142) -.kat-ads.torrenticity.com -# ||kassfm.co.ke/images/moneygram.gif (easylist.txt: 33141) -.kassfm.co.ke/images/moneygram\.gif -# ||kansascity.com/images/touts/ds_ (easylist.txt: 33140) -.kansascity.com/images/touts/ds_ -# ||kamcity.com/menu/banners/ (easylist.txt: 33139) -.kamcity.com/menu/banners/ -# ||kamcity.com/banager/banners/ (easylist.txt: 33138) -.kamcity.com/banager/banners/ -# ||kaieteurnewsonline.com/revenue/ (easylist.txt: 33137) -.kaieteurnewsonline.com/revenue/ -# ||juventus.com/pics/sponsors/ (easylist.txt: 33136) -.juventus.com/pics/sponsors/ -# ||justsomething.co/wp-content/uploads/*-250x250. (easylist.txt: 33135) -.justsomething.co/wp-content/uploads/.*-250x250\. -# ||just-download.com/banner/ (easylist.txt: 33134) -.just-download.com/banner/ -# ||junocloud.me/promos/ (easylist.txt: 33133) -.junocloud.me/promos/ -# ||jumptags.com/joozit/presentation/images/banners/ (easylist.txt: 33132) -.jumptags.com/joozit/presentation/images/banners/ -# ||jozikids.co.za/uploadimages/140x140_ (easylist.txt: 33131) -.jozikids.co.za/uploadimages/140x140_ -# ||jozikids.co.za/uploadimages/*_140x140_ (easylist.txt: 33130) -.jozikids.co.za/uploadimages/.*_140x140_ -# ||joursouvres.fr^*/pub_ (easylist.txt: 33129) -.joursouvres.fr/.*/pub_ -# ||journeychristiannews.com/images/banners/ (easylist.txt: 33128) -.journeychristiannews.com/images/banners/ -# ||journal-news.net/annoyingpopup/ (easylist.txt: 33127) -.journal-news.net/annoyingpopup/ -# ||joomladigger.com/images/banners/ (easylist.txt: 33126) -.joomladigger.com/images/banners/ -# ||joindota.com/wp-content/*.png$image (easylist.txt: 33124) -.joindota.com/wp-content/.*\.png -# ||johngaltfla.com/wordpress/wp-content/uploads/*/TB2K_LOGO.jpg (easylist.txt: 33123) -.johngaltfla.com/wordpress/wp-content/uploads/.*/TB2K_LOGO\.jpg -# ||johngaltfla.com/wordpress/wp-content/uploads/*/jmcs_specaialbanner.jpg (easylist.txt: 33122) -.johngaltfla.com/wordpress/wp-content/uploads/.*/jmcs_specaialbanner\.jpg -# ||johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions.png (easylist.txt: 33121) -.johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions\.png -# ||johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge.jpg (easylist.txt: 33120) -.johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge\.jpg -# ||johnbridge.com/vbulletin/banner_rotate.js (easylist.txt: 33119) -.johnbridge.com/vbulletin/banner_rotate\.js -# ||jillianmichaels.com/images/publicsite/advertisingslug.gif (easylist.txt: 33118) -.jillianmichaels.com/images/publicsite/advertisingslug\.gif -# ||jheberg.net/img/mp.png (easylist.txt: 33117) -.jheberg.net/img/mp\.png -# ||jewishyellow.com/pics/banners/ (easylist.txt: 33116) -.jewishyellow.com/pics/banners/ -# ||jewishvoiceny.com/ban2/ (easylist.txt: 33115) -.jewishvoiceny.com/ban2/ -# ||jewishtribune.ca^*/banners/ (easylist.txt: 33114) -.jewishtribune.ca/.*/banners/ -# ||jewishtimes-sj.com/rop/ (easylist.txt: 33113) -.jewishtimes-sj.com/rop/ -# ||jewishnews.co.uk^*banner (easylist.txt: 33112) -.jewishnews.co.uk/.*banner -# ||jewishexponent.com^*/banners/ (easylist.txt: 33111) -.jewishexponent.com/.*/banners/ -# ||jebril.com/sites/default/files/images/top-banners/ (easylist.txt: 33110) -.jebril.com/sites/default/files/images/top-banners/ -# ||jdownloader.org^*/smbanner.png (easylist.txt: 33109) -.jdownloader.org/.*/smbanner\.png -# ||jdownloader.org/_media/screenshots/banner.png (easylist.txt: 33108) -.jdownloader.org/_media/screenshots/banner\.png -# ||jazzandblues.org^*/iTunes_ (easylist.txt: 33107) -.jazzandblues.org/.*/iTunes_ -# ||jayisgames.com/maxcdn_160x250.png (easylist.txt: 33106) -.jayisgames.com/maxcdn_160x250\.png -# ||javascript-coder.com^*/make-form-without-coding.png (easylist.txt: 33105) -.javascript-coder.com/.*/make-form-without-coding\.png -# ||javascript-coder.com^*/form-submit-larger.jpg (easylist.txt: 33104) -.javascript-coder.com/.*/form-submit-larger\.jpg -# ||javamex.com/images/AdFrenchVocabGamesAnim.gif (easylist.txt: 33103) -.javamex.com/images/AdFrenchVocabGamesAnim\.gif -# ||jango.com/assets/promo/1600x1000- (easylist.txt: 33102) -.jango.com/assets/promo/1600x1000- -# ||jame-world.com^*/adv/ (easylist.txt: 33101) -.jame-world.com/.*/adv/ -# ||jamaica-gleaner.com/images/promo/ (easylist.txt: 33100) -.jamaica-gleaner.com/images/promo/ -# ||ixquick.nl/graphics/banner_ (easylist.txt: 33099) -.ixquick.nl/graphics/banner_ -# ||iwebtool.com^*/bannerview.php (easylist.txt: 33098) -.iwebtool.com/.*/bannerview\.php -# ||iurfm.com/images/sponsors/ (easylist.txt: 33097) -.iurfm.com/images/sponsors/ -# ||itworld.com/slideshow/iframe/topimu/ (easylist.txt: 33096) -.itworld.com/slideshow/iframe/topimu/ -# ||itwebafrica.com/images/logos/ (easylist.txt: 33095) -.itwebafrica.com/images/logos/ -# ||itweb.co.za^*sponsoredby (easylist.txt: 33094) -.itweb.co.za/.*sponsoredby -# ||itweb.co.za/sidelogos/ (easylist.txt: 33093) -.itweb.co.za/sidelogos/ -# ||itweb.co.za/logos/ (easylist.txt: 33092) -.itweb.co.za/logos/ -# ||itweb.co.za/banners/ (easylist.txt: 33091) -.itweb.co.za/banners/ -# ||itv.com/adexplore/*/config.xml (easylist.txt: 33089) -.itv.com/adexplore/.*/config\.xml -# ||itpro.co.uk/images/skins/ (easylist.txt: 33088) -.itpro.co.uk/images/skins/ -# ||italiangenealogy.com/images/banners/ (easylist.txt: 33087) -.italiangenealogy.com/images/banners/ -# ||isxdead.com/images/showbox.png (easylist.txt: 33086) -.isxdead.com/images/showbox\.png -# ||isup.me/images/dotbiz_banner.jpg (easylist.txt: 33085) -.isup.me/images/dotbiz_banner\.jpg -# ||israeltoday.co.il^*/promo/ (easylist.txt: 33084) -.israeltoday.co.il/.*/promo/ -# ||israelidiamond.co.il^*/bannerdisplay.aspx? (easylist.txt: 33083) -.israelidiamond.co.il/.*/bannerdisplay\.aspx\? -# ||israeldefense.com/_Uploads/dbsBanners/ (easylist.txt: 33082) -.israeldefense.com/_Uploads/dbsBanners/ -# ||isportconnect.com//images/banners/ (easylist.txt: 33081) -# ||island.lk/userfiles/image/danweem/ (easylist.txt: 33080) -.island.lk/userfiles/image/danweem/ -# ||islamicfocus.co.za/images/banners/ (easylist.txt: 33079) -.islamicfocus.co.za/images/banners/ -# ||islamicfinder.org/cimage/ (easylist.txt: 33078) -.islamicfinder.org/cimage/ -# ||isitnormal.com/img/iphone_hp_promo_wide.png (easylist.txt: 33077) -.isitnormal.com/img/iphone_hp_promo_wide\.png -# ||isitdownrightnow.com/graphics/speedupmypc*.png (easylist.txt: 33076) -.isitdownrightnow.com/graphics/speedupmypc.*\.png -# ||irv2.com/images/sponsors/ (easylist.txt: 33075) -.irv2.com/images/sponsors/ -# ||irv2.com/forums/*show_banner (easylist.txt: 33074) -.irv2.com/forums/.*show_banner -# ||irv2.com/attachments/banners/ (easylist.txt: 33073) -.irv2.com/attachments/banners/ -# ||ironsquid.tv/data/uploads/sponsors/ (easylist.txt: 33072) -.ironsquid.tv/data/uploads/sponsors/ -# ||ironspider.ca/pics/hostgator_green120x600.gif (easylist.txt: 33071) -.ironspider.ca/pics/hostgator_green120x600\.gif -# ||ironmagazine.com^*/banners.php (easylist.txt: 33070) -.ironmagazine.com/.*/banners\.php -# ||irishracing.com/graphics/books (easylist.txt: 33069) -.irishracing.com/graphics/books -# ||irishdictionary.ie/view/images/ispaces-makes-any-computer.jpg (easylist.txt: 33068) -.irishdictionary.ie/view/images/ispaces-makes-any-computer\.jpg -# ||irishdev.com/files/banners/ (easylist.txt: 33067) -.irishdev.com/files/banners/ -# ||irishamericannews.com/images/banners/ (easylist.txt: 33066) -.irishamericannews.com/images/banners/ -# ||irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/*DealsBanner_ (easylist.txt: 33065) -.irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/.*DealsBanner_ -# ||iptools.com/sky.php (easylist.txt: 33064) -.iptools.com/sky\.php -# ||ipinfodb.com/img/adds/ (easylist.txt: 33063) -.ipinfodb.com/img/adds/ -# ||ipaddress.com/banner/ (easylist.txt: 33062) -.ipaddress.com/banner/ -# ||ip-adress.com/superb/ (easylist.txt: 33060) -.ip-adress.com/superb/ -# ||ip-adress.com/i/ewa/ (easylist.txt: 33059) -.ip-adress.com/i/ewa/ -# ||intoday.in/btstryad.html (easylist.txt: 33058) -.intoday.in/btstryad\.html -# ||internationalmeetingsreview.com//uploads/banner/ (easylist.txt: 33057) -# ||international.to/link_unit.html (easylist.txt: 33056) -.international.to/link_unit\.html -# ||international.to/large.html (easylist.txt: 33055) -.international.to/large\.html -# ||international.to/600.html (easylist.txt: 33054) -.international.to/600\.html -# ||interfacelift.com^*/artistsvalley_160x90_ (easylist.txt: 33053) -.interfacelift.com/.*/artistsvalley_160x90_ -# ||interfacelift.com/inc_new/$subdocument (easylist.txt: 33052) -.interfacelift.com/inc_new/ -# ||interest.co.nz^*_skin_ (easylist.txt: 33051) -.interest.co.nz/.*_skin_ -# ||interest.co.nz^*_skin. (easylist.txt: 33050) -.interest.co.nz/.*_skin\. -# ||interest.co.nz/banners/ (easylist.txt: 33049) -.interest.co.nz/banners/ -# ||intelseek.com/intelseekads/ (easylist.txt: 33048) -.intelseek.com/intelseekads/ -# ||intellicast.com/travel/cheapflightswidget.htm (easylist.txt: 33047) -.intellicast.com/travel/cheapflightswidget\.htm -# ||intellicast.com/outsidein.js (easylist.txt: 33046) -.intellicast.com/outsidein\.js -# ||intel.com/sites/wap/global/wap.js (easylist.txt: 33045) -.intel.com/sites/wap/global/wap\.js -# ||inspirefirst.com^*/banners/ (easylist.txt: 33044) -.inspirefirst.com/.*/banners/ -# ||insideyork.co.uk/assets/images/sponsors/ (easylist.txt: 33043) -.insideyork.co.uk/assets/images/sponsors/ -# ||insidethe.agency^*-300x250. (easylist.txt: 33042) -.insidethe.agency/.*-300x250\. -# ||insidehw.com/images/banners/ (easylist.txt: 33041) -.insidehw.com/images/banners/ -# ||insidedp.com/images/banners/ (easylist.txt: 33040) -.insidedp.com/images/banners/ -# ||insidebutlercounty.com/images/468- (easylist.txt: 33039) -.insidebutlercounty.com/images/468- -# ||insidebutlercounty.com/images/300- (easylist.txt: 33038) -.insidebutlercounty.com/images/300- -# ||insidebutlercounty.com/images/200- (easylist.txt: 33037) -.insidebutlercounty.com/images/200- -# ||insidebutlercounty.com/images/180- (easylist.txt: 33036) -.insidebutlercounty.com/images/180- -# ||insidebutlercounty.com/images/160- (easylist.txt: 33035) -.insidebutlercounty.com/images/160- -# ||insidebutlercounty.com/images/100- (easylist.txt: 33034) -.insidebutlercounty.com/images/100- -# ||inquirer.net/wp-content/themes/news/images/wallpaper_ (easylist.txt: 33033) -.inquirer.net/wp-content/themes/news/images/wallpaper_ -# ||inkscapeforum.com/images/banners/ (easylist.txt: 33032) -.inkscapeforum.com/images/banners/ -# ||injpn.net/images/banners/ (easylist.txt: 33031) -.injpn.net/images/banners/ -# ||ingdirect.com^*/adwizard/ (easylist.txt: 33030) -.ingdirect.com/.*/adwizard/ -# ||infoseek.co.jp/isweb/clip.html (easylist.txt: 33029) -.infoseek.co.jp/isweb/clip\.html -# ||infosecisland.com/ajax/viewbanner/ (easylist.txt: 33028) -.infosecisland.com/ajax/viewbanner/ -# ||informer.com/js/onexit*.js (easylist.txt: 33027) -.informer.com/js/onexit.*\.js -# ||informe.com/img/banner_ (easylist.txt: 33026) -.informe.com/img/banner_ -# ||infoq.com^*/banners/ (easylist.txt: 33025) -.infoq.com/.*/banners/ -# ||infobetting.com/bookmaker/ (easylist.txt: 33024) -.infobetting.com/bookmaker/ -# ||infobetting.com/b/ (easylist.txt: 33023) -.infobetting.com/b/ -# ||info.sciencedaily.com/api/ (easylist.txt: 33022) -.info.sciencedaily.com/api/ -# ||info.break.com^*/sponsors/ (easylist.txt: 33021) -.info.break.com/.*/sponsors/ -# ||industryabout.com/images/banners/ (easylist.txt: 33020) -.industryabout.com/images/banners/ -# ||indiatimes.com/google$subdocument (easylist.txt: 33019) -.indiatimes.com/google -# ||indiatimes.com/articleshow_google_$subdocument (easylist.txt: 33018) -.indiatimes.com/articleshow_google_ -# ||indiantelevision.com/banner/ (easylist.txt: 33017) -.indiantelevision.com/banner/ -# ||indianexpress.com^*/banner/ (easylist.txt: 33016) -.indianexpress.com/.*/banner/ -# ||indiainfoline.com/wc/ads/ (easylist.txt: 33015) -.indiainfoline.com/wc/ads/ -# ||india.com^*-sponsor. (easylist.txt: 33014) -.india.com/.*-sponsor\. -# ||india.com/zeenews_head2n.jpg (easylist.txt: 33013) -.india.com/zeenews_head2n\.jpg -# ||india.com/ads/jw/ova-jw.swf$object-subrequest (easylist.txt: 33012) -.india.com/ads/jw/ova-jw\.swf -# ||indepthafrica.com^*/Banner-canreach.gif (easylist.txt: 33011) -.indepthafrica.com/.*/Banner-canreach\.gif -# ||independent.co.uk^*/partners/ (easylist.txt: 33010) -.independent.co.uk/.*/partners/ -# ||independent.co.uk^*/300unit/ (easylist.txt: 33009) -.independent.co.uk/.*/300unit/ -# ||independent.co.uk/multimedia/archive/$subdocument (easylist.txt: 33008) -.independent.co.uk/multimedia/archive/ -# ||independent.co.uk/kelkoo/ (easylist.txt: 33007) -.independent.co.uk/kelkoo/ -# ||independent.co.ug/images/banners/ (easylist.txt: 33006) -.independent.co.ug/images/banners/ -# ||indeed.com/ads/ (easylist.txt: 33005) -.indeed.com/ads/ -# ||incentivetravel.co.uk/images/banners/ (easylist.txt: 33004) -.incentivetravel.co.uk/images/banners/ -# ||inanyevent.ch/images/banners/ (easylist.txt: 33003) -.inanyevent.ch/images/banners/ -# ||in.com^*/170x50_ (easylist.txt: 33002) -.in.com/.*/170x50_ -# ||in.com/addIframe/ (easylist.txt: 33001) -.in.com/addIframe/ -# ||impulsedriven.com/app_images/wallpaper/ (easylist.txt: 33000) -.impulsedriven.com/app_images/wallpaper/ -# ||impactradio.co.za^*/banners/ (easylist.txt: 32999) -.impactradio.co.za/.*/banners/ -# ||imouto.org/images/mangagamer/ (easylist.txt: 32998) -.imouto.org/images/mangagamer/ -# ||imouto.org/images/jlist/ (easylist.txt: 32997) -.imouto.org/images/jlist/ -# ||imgur.com/include/zedoinviewstub1621.html (easylist.txt: 32996) -.imgur.com/include/zedoinviewstub1621\.html -# ||imgshots.com/includes/js/layer.js (easylist.txt: 32994) -.imgshots.com/includes/js/layer\.js -# ||imgchili.net/lj.js (easylist.txt: 32993) -.imgchili.net/lj\.js -# ||imgchili.net/js/showa.js (easylist.txt: 32992) -.imgchili.net/js/showa\.js -# ||imgcarry.com^*/oc.js (easylist.txt: 32991) -.imgcarry.com/.*/oc\.js -# ||imgburn.com/images/your3gift.gif (easylist.txt: 32990) -.imgburn.com/images/your3gift\.gif -# ||imgburn.com/images/ddigest_ (easylist.txt: 32989) -.imgburn.com/images/ddigest_ -# ||imgah.com/traffic$subdocument (easylist.txt: 32988) -.imgah.com/traffic -# ||img*.i-comers.com^ (easylist.txt: 32987) -.img*./.*\.i-comers\.com[^\w%.-] -.img*.i-comers.com -# ||imfdb.org^*/FoG-300x250.jpg (easylist.txt: 32986) -.imfdb.org/.*/FoG-300x250\.jpg -# ||imdb.com/images/*/scriptloader.$subdocument (easylist.txt: 32985) -.imdb.com/images/.*/scriptloader\. -# ||imcdb.org/res/cth_ (easylist.txt: 32984) -.imcdb.org/res/cth_ -# ||imagevenue.com/interstitial. (easylist.txt: 32983) -.imagevenue.com/interstitial\. -# ||imagetoupload.com/images/87633952425570896161.jpg (easylist.txt: 32982) -.imagetoupload.com/images/87633952425570896161\.jpg -# ||imagesnake.com^*/oc.js (easylist.txt: 32981) -.imagesnake.com/.*/oc\.js -# ||imageshack.us/ym.php? (easylist.txt: 32980) -.imageshack.us/ym\.php\? -# ||imageshack.us/images/contests/*/lp-bg.jpg (easylist.txt: 32979) -.imageshack.us/images/contests/.*/lp-bg\.jpg -# ||images.sharkscope.com/everest/twister.jpg (easylist.txt: 32978) -.images.sharkscope.com/everest/twister\.jpg -# ||images.sharkscope.com/acr/*_Ad- (easylist.txt: 32977) -.images.sharkscope.com/acr/.*_Ad- -# ||images.mmorpg.com/images/*skin (easylist.txt: 32976) -.images.mmorpg.com/images/.*skin -# ||images.globes.co.il^*/fixedpromoright. (easylist.txt: 32975) -.images.globes.co.il/.*/fixedpromoright\. -# ||images.bitreactor.to/designs/ (easylist.txt: 32974) -.images.bitreactor.to/designs/ -# ||images-amazon.com^*/marqueepushdown/ (easylist.txt: 32973) -.images-amazon.com/.*/marqueepushdown/ -# ||images-amazon.com/images/*/da-us/da-$script (easylist.txt: 32972) -.images-amazon.com/images/.*/da-us/da- -# ||images-amazon.com/images/*/browser-scripts/dae- (easylist.txt: 32971) -.images-amazon.com/images/.*/browser-scripts/dae- -# ||images-amazon.com/images/*/browser-scripts/da- (easylist.txt: 32970) -.images-amazon.com/images/.*/browser-scripts/da- -# ||imagerise.com/ir2.js (easylist.txt: 32969) -.imagerise.com/ir2\.js -# ||imagerise.com/ir.js (easylist.txt: 32968) -.imagerise.com/ir\.js -# ||imageporter.com/someo.html (easylist.txt: 32967) -.imageporter.com/someo\.html -# ||imageporter.com/micromoo.html (easylist.txt: 32966) -.imageporter.com/micromoo\.html -# ||imageporter.com/hiokax.js (easylist.txt: 32965) -.imageporter.com/hiokax\.js -# ||imagepix.org/Images/imageput.jpg (easylist.txt: 32964) -.imagepix.org/Images/imageput\.jpg -# ||imagefruit.com/includes/js/layer.js (easylist.txt: 32963) -.imagefruit.com/includes/js/layer\.js -# ||imagefruit.com/includes/js/ex.js (easylist.txt: 32962) -.imagefruit.com/includes/js/ex\.js -# ||imagefruit.com/includes/js/bgcont.js (easylist.txt: 32961) -.imagefruit.com/includes/js/bgcont\.js -# ||imagebam.com/img/coolstuffbro.jpg (easylist.txt: 32960) -.imagebam.com/img/coolstuffbro\.jpg -# ||imagebam.com/download_button.png (easylist.txt: 32959) -.imagebam.com/download_button\.png -# ||imads.rediff.com^ (easylist.txt: 32957) -.imads.rediff.com -# ||iloveim.com/cadv (easylist.txt: 32956) -.iloveim.com/cadv -# ||iload.to/img/ul/impopi.js (easylist.txt: 32955) -.iload.to/img/ul/impopi\.js -# ||ilcorsaronero.info/home.gif (easylist.txt: 32953) -.ilcorsaronero.info/home\.gif -# ||ijoomla.com/aff/banners/ (easylist.txt: 32952) -.ijoomla.com/aff/banners/ -# ||ijn.com/images/banners/ (easylist.txt: 32951) -.ijn.com/images/banners/ -# ||iftn.ie/images/data/banners/ (easylist.txt: 32950) -.iftn.ie/images/data/banners/ -# ||iframe.travel.yahoo.com^ (easylist.txt: 32949) -.iframe.travel.yahoo.com -# ||ifilm.com/website/*-skin- (easylist.txt: 32948) -.ifilm.com/website/.*-skin- -# ||idg.com.au^*_skin.jpg (easylist.txt: 32946) -.idg.com.au/.*_skin\.jpg -# ||idg.com.au/images/*_promo$image (easylist.txt: 32945) -.idg.com.au/images/.*_promo -# ||idg.com.au/files/skins/ (easylist.txt: 32944) -.idg.com.au/files/skins/ -# ||idesitv.com^*/loadbanners. (easylist.txt: 32943) -.idesitv.com/.*/loadbanners\. -# ||iddin.com/img/chatwing_banner_ (easylist.txt: 32942) -.iddin.com/img/chatwing_banner_ -# ||iddin.com/img/chatwing_banner. (easylist.txt: 32941) -.iddin.com/img/chatwing_banner\. -# ||icydk.com^*/title_visit_sponsors. (easylist.txt: 32940) -.icydk.com/.*/title_visit_sponsors\. -# ||icrt.com.tw/downloads/banner/ (easylist.txt: 32938) -.icrt.com.tw/downloads/banner/ -# ||iconeye.com/images/banners/ (easylist.txt: 32937) -.iconeye.com/images/banners/ -# ||icelandreview.com^*/auglysingar/ (easylist.txt: 32936) -.icelandreview.com/.*/auglysingar/ -# ||iceinspace.com.au/iisads/ (easylist.txt: 32935) -.iceinspace.com.au/iisads/ -# ||ibtimes.com^*/sponsor_ (easylist.txt: 32934) -.ibtimes.com/.*/sponsor_ -# ||ibtimes.com^*&popunder (easylist.txt: 32933) -.ibtimes.com/.*&popunder -# ||ibtimes.com/banner/ (easylist.txt: 32932) -.ibtimes.com/banner/ -# ||ibsrv.net/sponsors/ (easylist.txt: 32931) -.ibsrv.net/sponsors/ -# ||ibsrv.net/*_215x30_ (easylist.txt: 32928) -.ibsrv.net/.*_215x30_ -# ||ibsrv.net/*_215x30. (easylist.txt: 32927) -.ibsrv.net/.*_215x30\. -# ||ibsrv.net/*214x30. (easylist.txt: 32926) -.ibsrv.net/.*214x30\. -# ||ibrod.tv/ib.php (easylist.txt: 32925) -.ibrod.tv/ib\.php -# ||ibnlive.in.com^*/ibn_*_banner_ (easylist.txt: 32924) -.ibnlive.in.com/.*/ibn_.*_banner_ -# ||ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ (easylist.txt: 32923) -.ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ -# ||ibanners.empoweredcomms.com.au^ (easylist.txt: 32922) -.ibanners.empoweredcomms.com.au -# ||ians.in/iansad/ (easylist.txt: 32921) -.ians.in/iansad/ -# ||i3investor.com^*/partner/ (easylist.txt: 32920) -.i3investor.com/.*/partner/ -# ||i3investor.com^*/offer_ (easylist.txt: 32919) -.i3investor.com/.*/offer_ -# ||i.neoseeker.com/d/$subdocument (easylist.txt: 32918) -.i.neoseeker.com/d/ -# ||i.i.com.com/cnwk.1d/*/tt_post_dl.jpg (easylist.txt: 32917) -.i.i.com.com/cnwk\.1d/.*/tt_post_dl\.jpg -# ||i.com.com^*/vendor_bg_ (easylist.txt: 32916) -.i.com.com/.*/vendor_bg_ -# ||i-tech.com.au^*/banner/ (easylist.txt: 32915) -.i-tech.com.au/.*/banner/ -# ||i-sgcm.com/pagetakeover/ (easylist.txt: 32914) -.i-sgcm.com/pagetakeover/ -# ||hypemagazine.co.za/assets/bg/ (easylist.txt: 32913) -.hypemagazine.co.za/assets/bg/ -# ||hwinfo.com/images/se2banner.png (easylist.txt: 32912) -.hwinfo.com/images/se2banner\.png -# ||hwinfo.com/images/lansweeper.jpg (easylist.txt: 32911) -.hwinfo.com/images/lansweeper\.jpg -# ||hwbot.org/banner.img (easylist.txt: 32910) -.hwbot.org/banner\.img -# ||hurriyetdailynews.com/images/*_100x250_ (easylist.txt: 32909) -.hurriyetdailynews.com/images/.*_100x250_ -# ||hummy.org.uk^*/brotator/ (easylist.txt: 32908) -.hummy.org.uk/.*/brotator/ -# ||hulu.com/v3/revenue/ (easylist.txt: 32907) -.hulu.com/v3/revenue/ -# ||hulu.com/beacon/*=adauditerror (easylist.txt: 32906) -.hulu.com/beacon/.*=adauditerror -# ||hulkshare.oncdn.com^*/removeads. (easylist.txt: 32905) -.hulkshare.oncdn.com/.*/removeads\. -# ||hulkshare.com^*/adsmanager.js (easylist.txt: 32904) -.hulkshare.com/.*/adsmanager\.js -# ||hulkshare.com/promo/ (easylist.txt: 32903) -.hulkshare.com/promo/ -# ||hulkload.com/recommended/ (easylist.txt: 32902) -.hulkload.com/recommended/ -# ||hulkload.com/b/ (easylist.txt: 32901) -.hulkload.com/b/ -# ||hulkfile.eu/images/africa.gif (easylist.txt: 32900) -.hulkfile.eu/images/africa\.gif -# ||htmldog.com/r10/flowers/ (easylist.txt: 32898) -.htmldog.com/r10/flowers/ -# ||hqfooty.tv/ad (easylist.txt: 32897) -.hqfooty.tv/ad -# ||hpfanficarchive.com/freecoins2.jpg (easylist.txt: 32896) -.hpfanficarchive.com/freecoins2\.jpg -# ||howwemadeitinafrica.com^*/dhl-hdr.gif (easylist.txt: 32895) -.howwemadeitinafrica.com/.*/dhl-hdr\.gif -# ||howtogermany.com/banner/ (easylist.txt: 32894) -.howtogermany.com/banner/ -# ||howtogeek.com/go/ (easylist.txt: 32893) -.howtogeek.com/go/ -# ||houseoftravel.co.nz/flash/banner/ (easylist.txt: 32892) -.houseoftravel.co.nz/flash/banner/ -# ||houndmirror.com/images/XmkuP.gif (easylist.txt: 32891) -.houndmirror.com/images/XmkuP\.gif -# ||hothardware.com^*_staticbanner_*.jpg (easylist.txt: 32890) -.hothardware.com/.*_staticbanner_.*\.jpg -# ||hothardware.com/pgmerchanttable.aspx? (easylist.txt: 32889) -.hothardware.com/pgmerchanttable\.aspx\? -# ||hotgamesforgirls.com/html/$subdocument (easylist.txt: 32888) -.hotgamesforgirls.com/html/ -# ||hotfiletrend.com/dlp.gif (easylist.txt: 32887) -.hotfiletrend.com/dlp\.gif -# ||hotfilesearch.com/includes/images/mov_ (easylist.txt: 32886) -.hotfilesearch.com/includes/images/mov_ -# ||hotfile.com^*/banners/ (easylist.txt: 32885) -.hotfile.com/.*/banners/ -# ||hotbollywoodactress.net/freedatingindia.gif (easylist.txt: 32884) -.hotbollywoodactress.net/freedatingindia\.gif -# ||hotbollywoodactress.net/ff2.gif (easylist.txt: 32883) -.hotbollywoodactress.net/ff2\.gif -# ||hot-scene.com/cpop.js (easylist.txt: 32882) -.hot-scene.com/cpop\.js -# ||hostsearch.com/creative/ (easylist.txt: 32881) -.hostsearch.com/creative/ -# ||hostratings.co.uk/zeepeel. (easylist.txt: 32880) -.hostratings.co.uk/zeepeel\. -# ||hostingdedi.com/wp-content/uploads/add$subdocument (easylist.txt: 32879) -.hostingdedi.com/wp-content/uploads/add -# ||hostingbulk.com/zad.html (easylist.txt: 32878) -.hostingbulk.com/zad\.html -# ||hostingbulk.com/aad.html (easylist.txt: 32877) -.hostingbulk.com/aad\.html -# ||horriblesubs.info/playasia (easylist.txt: 32876) -.horriblesubs.info/playasia -# ||horizonsunlimited.com/alogos/ (easylist.txt: 32875) -.horizonsunlimited.com/alogos/ -# ||hongkongindians.com/advimages/ (easylist.txt: 32874) -.hongkongindians.com/advimages/ -# ||hongfire.com/banner/ (easylist.txt: 32873) -.hongfire.com/banner/ -# ||honda-tech.com/*-140x90.gif (easylist.txt: 32872) -.honda-tech.com/.*-140x90\.gif -# ||homeschoolmath.net/a/ (easylist.txt: 32871) -.homeschoolmath.net/a/ -# ||holyfragger.com/images/skins/ (easylist.txt: 32870) -.holyfragger.com/images/skins/ -# ||holyfamilyradio.org/banners/ (easylist.txt: 32869) -.holyfamilyradio.org/banners/ -# ||hollywoodbackwash.com/glam/ (easylist.txt: 32868) -.hollywoodbackwash.com/glam/ -# ||hockeybuzz.com/mb/b? (easylist.txt: 32867) -.hockeybuzz.com/mb/b\? -# ||hltv.org/images/csLucky.swf (easylist.txt: 32866) -.hltv.org/images/csLucky\.swf -# ||hltv.org//images/csgofastsky.png (easylist.txt: 32865) -# ||hkclubbing.com/images/banners/ (easylist.txt: 32864) -.hkclubbing.com/images/banners/ -# ||hitechlegion.com/images/banners/ (easylist.txt: 32863) -.hitechlegion.com/images/banners/ -# ||hipforums.com/newforums/calendarcolumn.php?cquery=bush (easylist.txt: 32862) -.hipforums.com/newforums/calendarcolumn\.php\?cquery=bush -# ||hipforums.com/images/banners/ (easylist.txt: 32861) -.hipforums.com/images/banners/ -# ||highdefjunkies.com^*/sponsor.jpg (easylist.txt: 32860) -.highdefjunkies.com/.*/sponsor\.jpg -# ||highdefjunkies.com^*/monoprice.jpg (easylist.txt: 32859) -.highdefjunkies.com/.*/monoprice\.jpg -# ||highdefjunkies.com^*/cp.gif (easylist.txt: 32858) -.highdefjunkies.com/.*/cp\.gif -# ||highdefjunkies.com/images/misc/kindlejoin.jpg (easylist.txt: 32857) -.highdefjunkies.com/images/misc/kindlejoin\.jpg -# ||hickoryrecord.com/app/deal/ (easylist.txt: 32856) -.hickoryrecord.com/app/deal/ -# ||herzeleid.com/files/images/banners/ (easylist.txt: 32854) -.herzeleid.com/files/images/banners/ -# ||herold.at^*.swf?*&linktarget=_blank (easylist.txt: 32853) -.herold.at/.*\.swf\?.*&linktarget=_blank -# ||herold.at/images/dealofday.swf (easylist.txt: 32852) -.herold.at/images/dealofday\.swf -# ||herold.at/fs/orgimg/*.swf?baseurl=http%3a%2f%2fwww.*&linktarget=_blank$object (easylist.txt: 32851) -.herold.at/fs/orgimg/.*\.swf\?baseurl=http%3a%2f%2fwww\..*&linktarget=_blank -# ||heraldsun.com.au^*/images/sideskins- (easylist.txt: 32850) -.heraldsun.com.au/.*/images/sideskins- -# ||heraldm.com^*/banner/ (easylist.txt: 32849) -.heraldm.com/.*/banner/ -# ||heraldm.com/iframe/ (easylist.txt: 32848) -.heraldm.com/iframe/ -# ||heraldm.com/hb/imad/ (easylist.txt: 32847) -.heraldm.com/hb/imad/ -# ||hentaistream.com/wp-includes/images/$object (easylist.txt: 32846) -.hentaistream.com/wp-includes/images/ -# ||hentaihaven.org/wp-content/banners/ (easylist.txt: 32845) -.hentaihaven.org/wp-content/banners/ -# ||hentai2read.com/ios/swf/ (easylist.txt: 32844) -.hentai2read.com/ios/swf/ -# ||helsinkitimes.fi^*/banners/ (easylist.txt: 32843) -.helsinkitimes.fi/.*/banners/ -# ||hejban.youwatch.org^ (easylist.txt: 32842) -.hejban.youwatch.org -# ||heatworld.com^*_300x160.jpg (easylist.txt: 32841) -.heatworld.com/.*_300x160\.jpg -# ||heatworld.com/upload/takeovers/ (easylist.txt: 32840) -.heatworld.com/upload/takeovers/ -# ||heatworld.com/images/*_83x76_ (easylist.txt: 32839) -.heatworld.com/images/.*_83x76_ -# ||hearse.com^*/billboards/ (easylist.txt: 32838) -.hearse.com/.*/billboards/ -# ||healthfreedoms.org/assets/swf/320x320_ (easylist.txt: 32837) -.healthfreedoms.org/assets/swf/320x320_ -# ||headlineplanet.com/home/burstbox.html (easylist.txt: 32836) -.headlineplanet.com/home/burstbox\.html -# ||headlineplanet.com/home/box.html (easylist.txt: 32835) -.headlineplanet.com/home/box\.html -# ||hdtvtest.co.uk^*/pricerunner.php (easylist.txt: 32834) -.hdtvtest.co.uk/.*/pricerunner\.php -# ||hdtvtest.co.uk/image/partner/$image (easylist.txt: 32833) -.hdtvtest.co.uk/image/partner/ -# ||hd-bb.org^*/dl4fbanner.gif (easylist.txt: 32832) -.hd-bb.org/.*/dl4fbanner\.gif -# ||hawkesbaytoday.co.nz/nz_regionals/marketplace/ (easylist.txt: 32830) -.hawkesbaytoday.co.nz/nz_regionals/marketplace/ -# ||hawkesbay.co.nz/images/banners/ (easylist.txt: 32829) -.hawkesbay.co.nz/images/banners/ -# ||hawaiireporter.com^*_300x400.jpg (easylist.txt: 32828) -.hawaiireporter.com/.*_300x400\.jpg -# ||hawaiireporter.com^*/winnerscampad.jpg (easylist.txt: 32827) -.hawaiireporter.com/.*/winnerscampad\.jpg -# ||hawaiireporter.com^*/upandruningy.jpg (easylist.txt: 32826) -.hawaiireporter.com/.*/upandruningy\.jpg -# ||hawaiireporter.com^*/js.jpg (easylist.txt: 32825) -.hawaiireporter.com/.*/js\.jpg -# ||hawaiireporter.com^*/463%C3%9757-Kamaaina.jpg (easylist.txt: 32824) -.hawaiireporter.com/.*/463%C3%9757-Kamaaina\.jpg -# ||hawaiireporter.com^*-300x250.jpg (easylist.txt: 32823) -.hawaiireporter.com/.*-300x250\.jpg -# ||hardwareheaven.com/wp-content/*_skin_ (easylist.txt: 32822) -.hardwareheaven.com/wp-content/.*_skin_ -# ||hardwareheaven.com/styles/*/frontpage/backdrop.jpg (easylist.txt: 32821) -.hardwareheaven.com/styles/.*/frontpage/backdrop\.jpg -# ||happierabroad.com/Images/banner (easylist.txt: 32820) -.happierabroad.com/Images/banner -# ||hancinema.net/images/watch-now (easylist.txt: 32819) -.hancinema.net/images/watch-now -# ||hancinema.net/images/banner_ (easylist.txt: 32818) -.hancinema.net/images/banner_ -# ||hahasport.com/ads/ (easylist.txt: 32817) -.hahasport.com/ads/ -# ||hackingchinese.com/media/skritter5.jpg (easylist.txt: 32816) -.hackingchinese.com/media/skritter5\.jpg -# ||hackingchinese.com/media/pleco.png (easylist.txt: 32815) -.hackingchinese.com/media/pleco\.png -# ||hackingchinese.com/media/hellochinese.jpg (easylist.txt: 32814) -.hackingchinese.com/media/hellochinese\.jpg -# ||hackingchinese.com/media/hcw4.png (easylist.txt: 32813) -.hackingchinese.com/media/hcw4\.png -# ||ha.ckers.org/images/sectheory-bot.png (easylist.txt: 32812) -.ha.ckers.org/images/sectheory-bot\.png -# ||ha.ckers.org/images/nto_top.png (easylist.txt: 32811) -.ha.ckers.org/images/nto_top\.png -# ||ha.ckers.org/images/fallingrock-bot.png (easylist.txt: 32810) -.ha.ckers.org/images/fallingrock-bot\.png -# ||h33t.to/images/button_direct.png (easylist.txt: 32809) -.h33t.to/images/button_direct\.png -# ||gwinnettdailypost.com/1.iframe.asp? (easylist.txt: 32808) -.gwinnettdailypost.com/1\.iframe\.asp\? -# ||guru99.com/images/adblocker/ (easylist.txt: 32807) -.guru99.com/images/adblocker/ -# ||gurgle.com/modules/mod_m10banners/ (easylist.txt: 32806) -.gurgle.com/modules/mod_m10banners/ -# ||guns.ru^*/banners/ (easylist.txt: 32805) -.guns.ru/.*/banners/ -# ||guns.ru^*/banner/ (easylist.txt: 32804) -.guns.ru/.*/banner/ -# ||gunfreezone.net^*_ad.jpg (easylist.txt: 32803) -.gunfreezone.net/.*_ad\.jpg -# ||gumtree.com^*/dart_wrapper_ (easylist.txt: 32802) -.gumtree.com/.*/dart_wrapper_ -# ||gulfnews.com^*/channelSponsorImage/ (easylist.txt: 32801) -.gulfnews.com/.*/channelSponsorImage/ -# ||gulf-daily-news.com/180x150.htm (easylist.txt: 32800) -.gulf-daily-news.com/180x150\.htm -# ||guardian.bz/images/banners/ (easylist.txt: 32799) -.guardian.bz/images/banners/ -# ||gtweekly.com/images/banners/ (easylist.txt: 32798) -.gtweekly.com/images/banners/ -# ||gtsplus.net*/pantop.html (easylist.txt: 32797) -.gtsplus.net*./(.*/)?pantop\.html -# ||gtsplus.net*/panbottom.html (easylist.txt: 32796) -.gtsplus.net*./(.*/)?panbottom\.html -# ||gtop100.com/a_images/show-a.php? (easylist.txt: 32795) -.gtop100.com/a_images/show-a\.php\? -# ||gsprating.com/gap/image.php? (easylist.txt: 32794) -.gsprating.com/gap/image\.php\? -# ||greyorgray.com/images/hdtv-genie-gog.jpg (easylist.txt: 32792) -.greyorgray.com/images/hdtv-genie-gog\.jpg -# ||greyorgray.com/images/Fast%20Business%20Loans%20Ad.jpg (easylist.txt: 32791) -.greyorgray.com/images/Fast%20Business%20Loans%20Ad\.jpg -# ||greenoptimistic.com/images/electrician2.png (easylist.txt: 32790) -.greenoptimistic.com/images/electrician2\.png -# ||green.virtual-nights.com^ (easylist.txt: 32789) -.green.virtual-nights.com -# ||greatgirlsgames.com/a/skyscraper.php (easylist.txt: 32788) -.greatgirlsgames.com/a/skyscraper\.php -# ||greatgirlsgames.com/100x100.php (easylist.txt: 32787) -.greatgirlsgames.com/100x100\.php -# ||greaterkashmir.com/adds_ (easylist.txt: 32786) -.greaterkashmir.com/adds_ -# ||greatdeals.co.ke/images/banners/ (easylist.txt: 32785) -.greatdeals.co.ke/images/banners/ -# ||greatandhra.com/images/*_ga_ (easylist.txt: 32784) -.greatandhra.com/images/.*_ga_ -# ||graphic.com.gh/images/banners/ (easylist.txt: 32783) -.graphic.com.gh/images/banners/ -# ||grapevine.is/media/flash/*.swf (easylist.txt: 32782) -.grapevine.is/media/flash/.*\.swf -# ||grammar-monster.com/scripts/$subdocument (easylist.txt: 32781) -.grammar-monster.com/scripts/ -# ||gq.co.za^*/sitetakeover/ (easylist.txt: 32780) -.gq.co.za/.*/sitetakeover/ -# ||gp3series.com^*/Partners/ (easylist.txt: 32779) -.gp3series.com/.*/Partners/ -# ||gowilkes.com/other/ (easylist.txt: 32778) -.gowilkes.com/other/ -# ||gowilkes.com/cj/ (easylist.txt: 32777) -.gowilkes.com/cj/ -# ||gov-auctions.org^*/banner/ (easylist.txt: 32776) -.gov-auctions.org/.*/banner/ -# ||gospel1190.net/rotatorimages/ (easylist.txt: 32774) -.gospel1190.net/rotatorimages/ -# ||gopride.com^*/banners/ (easylist.txt: 32773) -.gopride.com/.*/banners/ -# ||gooster.co.uk/js/ov.js.php (easylist.txt: 32772) -.gooster.co.uk/js/ov\.js\.php -# ||goodgearguide.com.au/files/skins/ (easylist.txt: 32767) -.goodgearguide.com.au/files/skins/ -# ||goodanime.net/images/crazy*.jpg (easylist.txt: 32766) -.goodanime.net/images/crazy.*\.jpg -# ||gonzagamer.com/uci/popover.js (easylist.txt: 32765) -.gonzagamer.com/uci/popover\.js -# ||gomlab.com/img/banner/ (easylist.txt: 32764) -.gomlab.com/img/banner/ -# ||golf365.com^*/site-bg- (easylist.txt: 32763) -.golf365.com/.*/site-bg- -# ||golf365.co.za^*/site-bg- (easylist.txt: 32762) -.golf365.co.za/.*/site-bg- -# ||goldenskate.com/sponsors/ (easylist.txt: 32761) -.goldenskate.com/sponsors/ -# ||gold1013fm.com/promotion/ (easylist.txt: 32760) -.gold1013fm.com/promotion/ -# ||gold1013fm.com/images/background/ (easylist.txt: 32759) -.gold1013fm.com/images/background/ -# ||gold-prices.biz^*_400x300.gif (easylist.txt: 32758) -.gold-prices.biz/.*_400x300\.gif -# ||gold-prices.biz/gold_trading_leader.gif (easylist.txt: 32757) -.gold-prices.biz/gold_trading_leader\.gif -# ||gokunming.com/images/prom/ (easylist.txt: 32756) -.gokunming.com/images/prom/ -# ||godisageek.com/amazon.png (easylist.txt: 32755) -.godisageek.com/amazon\.png -# ||goauto.com.au/mellor/mellor.nsf/toy$subdocument (easylist.txt: 32754) -.goauto.com.au/mellor/mellor\.nsf/toy -# ||goal.com^*/branding/ (easylist.txt: 32753) -.goal.com/.*/branding/ -# ||goal.com^*/betting/$~stylesheet (easylist.txt: 32752) -.goal.com/.*/betting/ -# ||go4up.com/assets/img/download-button.png (easylist.txt: 32751) -.go4up.com/assets/img/download-button\.png -# ||go4up.com/assets/img/d0.png (easylist.txt: 32750) -.go4up.com/assets/img/d0\.png -# ||glocktalk.com/forums/images/banners/ (easylist.txt: 32749) -.glocktalk.com/forums/images/banners/ -# ||globaltimes.cn/desktopmodules/bannerdisplay/ (easylist.txt: 32748) -.globaltimes.cn/desktopmodules/bannerdisplay/ -# ||globalsecurity.org/_inc/frames/ (easylist.txt: 32747) -.globalsecurity.org/_inc/frames/ -# ||gledaisport.com/ads/ (easylist.txt: 32746) -.gledaisport.com/ads/ -# ||glassdoor.com/getAdSlotContentsAjax.htm? (easylist.txt: 32745) -.glassdoor.com/getAdSlotContentsAjax\.htm\? -# ||glamourviews.com/home/zones? (easylist.txt: 32744) -.glamourviews.com/home/zones\? -# ||glam.com^*/affiliate/ (easylist.txt: 32743) -.glam.com/.*/affiliate/ -# ||gizmochina.com^*/landvo-l600-pro-feature.jpg (easylist.txt: 32742) -.gizmochina.com/.*/landvo-l600-pro-feature\.jpg -# ||gizmochina.com^*/kingsing-t8-advert.jpg (easylist.txt: 32741) -.gizmochina.com/.*/kingsing-t8-advert\.jpg -# ||gizmochina.com^*/100002648432985.gif (easylist.txt: 32740) -.gizmochina.com/.*/100002648432985\.gif -# ||gizmochina.com/images/blackview.jpg (easylist.txt: 32739) -.gizmochina.com/images/blackview\.jpg -# ||girlsgames.biz/games/partner*.php (easylist.txt: 32738) -.girlsgames.biz/games/partner.*\.php -# ||girlguides.co.za/images/banners/ (easylist.txt: 32737) -.girlguides.co.za/images/banners/ -# ||gigaom2.files.wordpress.com^*-center-top$image (easylist.txt: 32736) -.gigaom2.files.wordpress.com/.*-center-top -# ||giftguide.savannahnow.com/giftguide/widgets/ (easylist.txt: 32735) -.giftguide.savannahnow.com/giftguide/widgets/ -# ||ghananewsagency.org/assets/banners/ (easylist.txt: 32734) -.ghananewsagency.org/assets/banners/ -# ||ghafla.co.ke/images/bgmax/ (easylist.txt: 32733) -.ghafla.co.ke/images/bgmax/ -# ||ghafla.co.ke/images/banners/ (easylist.txt: 32732) -.ghafla.co.ke/images/banners/ -# ||ghacks.net/skin- (easylist.txt: 32731) -.ghacks.net/skin- -# ||gfx.infomine.com^ (easylist.txt: 32730) -.gfx.infomine.com -# ||gfi.com/blog/wp-content/uploads/*-BlogBanner (easylist.txt: 32729) -.gfi.com/blog/wp-content/uploads/.*-BlogBanner -# ||getthekick.eu^*/banners/ (easylist.txt: 32728) -.getthekick.eu/.*/banners/ -# ||getsurrey.co.uk^*/bg_takeover_ (easylist.txt: 32727) -.getsurrey.co.uk/.*/bg_takeover_ -# ||getrichslowly.org/blog/img/banner/ (easylist.txt: 32726) -.getrichslowly.org/blog/img/banner/ -# ||getreading.co.uk/static/img/bg_takeover_ (easylist.txt: 32724) -.getreading.co.uk/static/img/bg_takeover_ -# ||getprice.com.au/searchwidget.aspx?$subdocument (easylist.txt: 32723) -.getprice.com.au/searchwidget\.aspx\? -# ||getfoxyproxy.org/images/abine/ (easylist.txt: 32722) -.getfoxyproxy.org/images/abine/ -# ||get.thefile.me^ (easylist.txt: 32721) -.get.thefile.me -# ||get-bitcoins-free.eu/img/blackred728smallsize.gif (easylist.txt: 32720) -.get-bitcoins-free.eu/img/blackred728smallsize\.gif -# ||gestetnerupdates.com^*/perfect-auto-collision_banner.gif (easylist.txt: 32719) -.gestetnerupdates.com/.*/perfect-auto-collision_banner\.gif -# ||gestetnerupdates.com^*/Gestetner-Miles.gif (easylist.txt: 32718) -.gestetnerupdates.com/.*/Gestetner-Miles\.gif -# ||gestetnerupdates.com^*/eagle-sewer.gif (easylist.txt: 32717) -.gestetnerupdates.com/.*/eagle-sewer\.gif -# ||gestetnerupdates.com^*/chesed-shel-emes-600x75.gif (easylist.txt: 32716) -.gestetnerupdates.com/.*/chesed-shel-emes-600x75\.gif -# ||geoshopping.nzherald.co.nz^ (easylist.txt: 32715) -.geoshopping.nzherald.co.nz -# ||geometria.tv/banners/ (easylist.txt: 32714) -.geometria.tv/banners/ -# ||geocities.yahoo.*/js/sq. (easylist.txt: 32713) -.geocities.yahoo.*./(.*/)?js/sq\. -# ||geocities.com/js_source/ (easylist.txt: 32712) -.geocities.com/js_source/ -# ||gentoo.org/images/sponsors/ (easylist.txt: 32711) -.gentoo.org/images/sponsors/ -# ||generalfiles.me^*/download_sponsored. (easylist.txt: 32710) -.generalfiles.me/.*/download_sponsored\. -# ||gelbooru.com/protech.php$subdocument (easylist.txt: 32709) -.gelbooru.com/protech\.php -# ||gelbooru.com/poll.php$subdocument (easylist.txt: 32708) -.gelbooru.com/poll\.php -# ||gelbooru.com/lk.php$subdocument (easylist.txt: 32707) -.gelbooru.com/lk\.php -# ||geeklab.info^*/billy.png (easylist.txt: 32706) -.geeklab.info/.*/billy\.png -# ||geckoforums.net/banners/ (easylist.txt: 32705) -.geckoforums.net/banners/ -# ||gcnlive.com/assets/sponsorsPlayer/ (easylist.txt: 32704) -.gcnlive.com/assets/sponsorsPlayer/ -# ||gcnlive.com/assets/sponsors/ (easylist.txt: 32703) -.gcnlive.com/assets/sponsors/ -# ||gbrej.com/c/ (easylist.txt: 32702) -.gbrej.com/c/ -# ||gbatemp.net/images/ab/ (easylist.txt: 32701) -.gbatemp.net/images/ab/ -# ||gaynz.gen.nz/mysa/banners/ (easylist.txt: 32700) -.gaynz.gen.nz/mysa/banners/ -# ||gaynz.com/mysa/banners/ (easylist.txt: 32699) -.gaynz.com/mysa/banners/ -# ||gaydarradio.com/userportal/miva/ (easylist.txt: 32698) -.gaydarradio.com/userportal/miva/ -# ||gawkerassets.com^*/background.jpg (easylist.txt: 32697) -.gawkerassets.com/.*/background\.jpg -# ||gateprep.com/templates/default/images/promo/ (easylist.txt: 32696) -.gateprep.com/templates/default/images/promo/ -# ||gasgoo.com/promo/ (easylist.txt: 32695) -.gasgoo.com/promo/ -# ||garrysmod.org/img/sad/ (easylist.txt: 32694) -.garrysmod.org/img/sad/ -# ||gappon.com/images/hot2.gif (easylist.txt: 32693) -.gappon.com/images/hot2\.gif -# ||ganool.com/wp-content/uploads/*/matrix303.gif (easylist.txt: 32692) -.ganool.com/wp-content/uploads/.*/matrix303\.gif -# ||ganool.com/wp-content/uploads/*/Javtoys300250..gif (easylist.txt: 32691) -.ganool.com/wp-content/uploads/.*/Javtoys300250\.\.gif -# ||ganool.com/pup.js (easylist.txt: 32690) -.ganool.com/pup\.js -# ||gamingsquid.com/wp-content/banners/ (easylist.txt: 32689) -.gamingsquid.com/wp-content/banners/ -# ||gamevid.com/13/ads/ (easylist.txt: 32688) -.gamevid.com/13/ads/ -# ||gametrailers.com^*/webskin_ (easylist.txt: 32687) -.gametrailers.com/.*/webskin_ -# ||gameshark.com^*/pageskin- (easylist.txt: 32686) -.gameshark.com/.*/pageskin- -# ||gamesgames.com/vda/ (easylist.txt: 32685) -.gamesgames.com/vda/ -# ||gamesfreez.com/banner/ (easylist.txt: 32684) -.gamesfreez.com/banner/ -# ||gamesforwork.com^*/dropalink_small.gif (easylist.txt: 32683) -.gamesforwork.com/.*/dropalink_small\.gif -# ||gameserpent.com/vc*.php (easylist.txt: 32682) -.gameserpent.com/vc.*\.php -# ||gameserpent.com/kit*.php (easylist.txt: 32681) -.gameserpent.com/kit.*\.php -# ||gamersbook.com^*/banners/ (easylist.txt: 32680) -.gamersbook.com/.*/banners/ -# ||gamerant.com/ads/ (easylist.txt: 32679) -.gamerant.com/ads/ -# ||gamepressure.com/ajax/f2p.asp (easylist.txt: 32678) -.gamepressure.com/ajax/f2p\.asp -# ||gameplanet.co.nz^*-takeover.jpg (easylist.txt: 32677) -.gameplanet.co.nz/.*-takeover\.jpg -# ||gamemakerblog.com/gma/gatob.php (easylist.txt: 32676) -.gamemakerblog.com/gma/gatob\.php -# ||gameknot.com/amaster.pl?j= (easylist.txt: 32675) -.gameknot.com/amaster\.pl\?j= -# ||gamecopyworld.eu*/! (easylist.txt: 32674) -.gamecopyworld.eu*./(.*/)?! -# ||gamecopyworld.com^*/vg_160x120_ (easylist.txt: 32673) -.gamecopyworld.com/.*/vg_160x120_ -# ||gamecopyworld.com/games/js/abd.js (easylist.txt: 32672) -.gamecopyworld.com/games/js/abd\.js -# ||gamecopyworld.com/games/i/if6.gif (easylist.txt: 32671) -.gamecopyworld.com/games/i/if6\.gif -# ||gamecopyworld.com*/! (easylist.txt: 32670) -.gamecopyworld.com*./(.*/)?! -# ||gameads.digyourowngrave.com^ (easylist.txt: 32669) -.gameads.digyourowngrave.com -# ||game1games.com/exchange/ (easylist.txt: 32668) -.game1games.com/exchange/ -# ||gamblinginsider.com^*/partner_events.php (easylist.txt: 32667) -.gamblinginsider.com/.*/partner_events\.php -# ||gallerysense.se/site/getBannerCode (easylist.txt: 32666) -.gallerysense.se/site/getBannerCode -# ||gallerynova.se^*/jquery.bpopup.min.js (easylist.txt: 32665) -.gallerynova.se/.*/jquery\.bpopup\.min\.js -# ||galatta.com^*/banners/ (easylist.txt: 32664) -.galatta.com/.*/banners/ -# ||galatta.com^*/bannerimages/ (easylist.txt: 32663) -.galatta.com/.*/bannerimages/ -# ||gaeatimes.com/ctad/ (easylist.txt: 32662) -.gaeatimes.com/ctad/ -# ||gadgetshowlive.net^*/banners/ (easylist.txt: 32661) -.gadgetshowlive.net/.*/banners/ -# ||gadgetmac.com^*/sponsors/ (easylist.txt: 32660) -.gadgetmac.com/.*/sponsors/ -# ||gadget.co.za/siteimages/banners/ (easylist.txt: 32659) -.gadget.co.za/siteimages/banners/ -# ||gaccwest.com/uploads/tx_bannermanagement/ (easylist.txt: 32658) -.gaccwest.com/uploads/tx_bannermanagement/ -# ||gaccsouth.com/uploads/tx_bannermanagement/ (easylist.txt: 32657) -.gaccsouth.com/uploads/tx_bannermanagement/ -# ||gaccny.com/uploads/tx_bannermanagement/ (easylist.txt: 32656) -.gaccny.com/uploads/tx_bannermanagement/ -# ||gaccmidwest.org/uploads/tx_bannermanagement/ (easylist.txt: 32655) -.gaccmidwest.org/uploads/tx_bannermanagement/ -# ||gabzfm.com/images/banners/ (easylist.txt: 32654) -.gabzfm.com/images/banners/ -# ||g.brothersoft.com^ (easylist.txt: 32653) -.g.brothersoft.com -# ||f谋rstrowsports.eu/pu/ (easylist.txt: 32652) -.f谋rstrowsports.eu/pu/ -# ||futbol24.com/f24/rek/$~xmlhttprequest (easylist.txt: 32650) -.futbol24.com/f24/rek/ -# ||fuse.tv/images/sponsor/ (easylist.txt: 32649) -.fuse.tv/images/sponsor/ -# ||funpic.org/layer.php? (easylist.txt: 32648) -.funpic.org/layer\.php\? -# ||funpic.de/layer.php? (easylist.txt: 32647) -.funpic.de/layer\.php\? -# ||fulltv.tv/pub_ (easylist.txt: 32646) -.fulltv.tv/pub_ -# ||fullrip.net/images/download- (easylist.txt: 32645) -.fullrip.net/images/download- -# ||fulhamfc.com/i/partner/ (easylist.txt: 32644) -.fulhamfc.com/i/partner/ -# ||fugitive.com^*-468x60web. (easylist.txt: 32643) -.fugitive.com/.*-468x60web\. -# ||fudzilla.com^*/banners/ (easylist.txt: 32642) -.fudzilla.com/.*/banners/ -# ||ftlauderdalewebcam.com^*-WebCamBannerFall_ (easylist.txt: 32641) -.ftlauderdalewebcam.com/.*-WebCamBannerFall_ -# ||ftlauderdalewebcam.com/images/*webcambanner (easylist.txt: 32640) -.ftlauderdalewebcam.com/images/.*webcambanner -# ||ftdworld.net/images/banners/ (easylist.txt: 32639) -.ftdworld.net/images/banners/ -# ||fscheetahs.co.za/images/Sponsers/ (easylist.txt: 32638) -.fscheetahs.co.za/images/Sponsers/ -# ||frozen-roms.me/popup.php (easylist.txt: 32637) -.frozen-roms.me/popup\.php -# ||frozen-roms.in/popup.php (easylist.txt: 32636) -.frozen-roms.in/popup\.php -# ||frombar.com/ads/ (easylist.txt: 32635) -.frombar.com/ads/ -# ||friday-ad.co.uk/endeca/afccontainer.aspx (easylist.txt: 32634) -.friday-ad.co.uk/endeca/afccontainer\.aspx -# ||friday-ad.co.uk/banner.js? (easylist.txt: 32633) -.friday-ad.co.uk/banner\.js\? -# ||freshremix.ru/images/ffdownloader1.jpg (easylist.txt: 32632) -.freshremix.ru/images/ffdownloader1\.jpg -# ||freshremix.org/templates/freshremix_eng/images/300.gif (easylist.txt: 32631) -.freshremix.org/templates/freshremix_eng/images/300\.gif -# ||freshplaza.com/b/ (easylist.txt: 32630) -.freshplaza.com/b/ -# ||fresh-weather.com/popup1.gif (easylist.txt: 32629) -.fresh-weather.com/popup1\.gif -# ||frenchradiolondon.com/data/carousel/ (easylist.txt: 32628) -.frenchradiolondon.com/data/carousel/ -# ||freeworldgroup.com/banner (easylist.txt: 32627) -.freeworldgroup.com/banner -# ||freevermontradio.org/pictures/lauren_Stagnitti.jpg (easylist.txt: 32626) -.freevermontradio.org/pictures/lauren_Stagnitti\.jpg -# ||freetypinggame.net/burst720.asp (easylist.txt: 32625) -.freetypinggame.net/burst720\.asp -# ||freetv-video.ca^*/popover-load-js.php? (easylist.txt: 32624) -.freetv-video.ca/.*/popover-load-js\.php\? -# ||freestockcharts.com/symbolhit.aspx$subdocument (easylist.txt: 32623) -.freestockcharts.com/symbolhit\.aspx -# ||freesoftwaremagazine.com/extras/ (easylist.txt: 32622) -.freesoftwaremagazine.com/extras/ -# ||freeroms.com/skyscraper_ (easylist.txt: 32621) -.freeroms.com/skyscraper_ -# ||freeroms.com/bigbox_ (easylist.txt: 32620) -.freeroms.com/bigbox_ -# ||freeroms.com/bigbox.html (easylist.txt: 32619) -.freeroms.com/bigbox\.html -# ||freepornsubmits.com/ads/ (easylist.txt: 32618) -.freepornsubmits.com/ads/ -# ||freenode.net/images/freenode_osuosl.png (easylist.txt: 32617) -.freenode.net/images/freenode_osuosl\.png -# ||freenode.net/images/ack_privateinternetaccess-freenode.png (easylist.txt: 32616) -.freenode.net/images/ack_privateinternetaccess-freenode\.png -# ||freeminecraft.me/mw3.png (easylist.txt: 32615) -.freeminecraft.me/mw3\.png -# ||freemediatv.com/images/inmemoryofmichael.jpg (easylist.txt: 32614) -.freemediatv.com/images/inmemoryofmichael\.jpg -# ||freeappaday.com/nimgs/bb/ (easylist.txt: 32613) -.freeappaday.com/nimgs/bb/ -# ||freeads.co.uk/ctx.php? (easylist.txt: 32612) -.freeads.co.uk/ctx\.php\? -# ||free-webhosts.com/images/a/ (easylist.txt: 32611) -.free-webhosts.com/images/a/ -# ||free-tv-video-online.me/season-side- (easylist.txt: 32610) -.free-tv-video-online.me/season-side- -# ||free-tv-video-online.me/episode-buttom- (easylist.txt: 32609) -.free-tv-video-online.me/episode-buttom- -# ||free-tv-video-online.me/300s.html (easylist.txt: 32608) -.free-tv-video-online.me/300s\.html -# ||free-torrents.org^*/banners/ (easylist.txt: 32607) -.free-torrents.org/.*/banners/ -# ||free-times.com/image/pool/ (easylist.txt: 32606) -.free-times.com/image/pool/ -# ||fredmiranda.com/buzz/canondble-600x90.jpg (easylist.txt: 32605) -.fredmiranda.com/buzz/canondble-600x90\.jpg -# ||freakshare.com/yild.js (easylist.txt: 32604) -.freakshare.com/yild\.js -# ||fpscheats.com/fpsbanner.jpg (easylist.txt: 32603) -.fpscheats.com/fpsbanner\.jpg -# ||fpscheats.com/banner-img.jpg (easylist.txt: 32602) -.fpscheats.com/banner-img\.jpg -# ||foxsportsradio.com/pages/second300x250iframe.html (easylist.txt: 32601) -.foxsportsradio.com/pages/second300x250iframe\.html -# ||foxsports540.com/images/banner2.png (easylist.txt: 32600) -.foxsports540.com/images/banner2\.png -# ||foxsports540.com/images/banner1.png (easylist.txt: 32599) -.foxsports540.com/images/banner1\.png -# ||foxsports.com^*_skin_ (easylist.txt: 32598) -.foxsports.com/.*_skin_ -# ||foxsports.com^*/Sponsors/ (easylist.txt: 32597) -.foxsports.com/.*/Sponsors/ -# ||foxsports.com^*-skin_ (easylist.txt: 32596) -.foxsports.com/.*-skin_ -# ||foxsports.com^*-Skin- (easylist.txt: 32595) -.foxsports.com/.*-Skin- -# ||foxsports.com/component/xml/SBMarketingTakeOverPromos (easylist.txt: 32594) -.foxsports.com/component/xml/SBMarketingTakeOverPromos -# ||foxsports.com/component/*_wallpaper_$image (easylist.txt: 32593) -.foxsports.com/component/.*_wallpaper_ -# ||foxsports.com.au^*/sponsor/ (easylist.txt: 32592) -.foxsports.com.au/.*/sponsor/ -# ||foxsoccer2go.com/namedImage/*/backgroundSkin.jpg (easylist.txt: 32591) -.foxsoccer2go.com/namedImage/.*/backgroundSkin\.jpg -# ||foxbusiness.com/html/google_homepage_promo (easylist.txt: 32590) -.foxbusiness.com/html/google_homepage_promo -# ||forward.com/workspace/assets/newimages/amazon.png (easylist.txt: 32589) -.forward.com/workspace/assets/newimages/amazon\.png -# ||forumw.org/images/uploading.gif (easylist.txt: 32588) -.forumw.org/images/uploading\.gif -# ||forumimg.ipmart.com/swf/ipmart_forum/banner (easylist.txt: 32587) -.forumimg.ipmart.com/swf/ipmart_forum/banner -# ||forexpeacearmy.com/images/banners/ (easylist.txt: 32586) -.forexpeacearmy.com/images/banners/ -# ||foreignersinuk.co.uk^*/banner/ (easylist.txt: 32585) -.foreignersinuk.co.uk/.*/banner/ -# ||fordforums.com.au/logos/ (easylist.txt: 32584) -.fordforums.com.au/logos/ -# ||footballtradedirectory.com^*banner (easylist.txt: 32583) -.footballtradedirectory.com/.*banner -# ||footballshirtculture.com/images/e12b.jpg (easylist.txt: 32582) -.footballshirtculture.com/images/e12b\.jpg -# ||football-italia.net/imgs/moveyourmouse.gif (easylist.txt: 32581) -.football-italia.net/imgs/moveyourmouse\.gif -# ||foodingredientsfirst.com/content/flash_loaders/loadskyscraper.swf (easylist.txt: 32580) -.foodingredientsfirst.com/content/flash_loaders/loadskyscraper\.swf -# ||foodingredientsfirst.com/content/flash_loaders/loadlargetile.swf (easylist.txt: 32579) -.foodingredientsfirst.com/content/flash_loaders/loadlargetile\.swf -# ||foodingredientsfirst.com/content/banners/ (easylist.txt: 32578) -.foodingredientsfirst.com/content/banners/ -# ||fncstatic.com^*/sponsored-by.gif (easylist.txt: 32577) -.fncstatic.com/.*/sponsored-by\.gif -# ||fmr.co.za^*/banners/ (easylist.txt: 32576) -.fmr.co.za/.*/banners/ -# ||flyordie.com/games/online/ca.html (easylist.txt: 32575) -.flyordie.com/games/online/ca\.html -# ||flyordie.com/games/free/b/ (easylist.txt: 32574) -.flyordie.com/games/free/b/ -# ||flvto.biz/scripts/banners.php? (easylist.txt: 32573) -.flvto.biz/scripts/banners\.php\? -# ||flopturnriver.com*/banners/ (easylist.txt: 32571) -.flopturnriver.com*./(.*/)?banners/ -# ||flightradar24.com/_includes/sections/airportAd.php (easylist.txt: 32570) -.flightradar24.com/_includes/sections/airportAd\.php -# ||flicks.co.nz/takeovercss/ (easylist.txt: 32569) -.flicks.co.nz/takeovercss/ -# ||flicks.co.nz/images/takeovers/ (easylist.txt: 32568) -.flicks.co.nz/images/takeovers/ -# ||fleetwatch.co.za/images/banners/ (easylist.txt: 32567) -.fleetwatch.co.za/images/banners/ -# ||flatpanelshd.com/pictures/*banner (easylist.txt: 32566) -.flatpanelshd.com/pictures/.*banner -# ||flashy8.com/banner/ (easylist.txt: 32565) -.flashy8.com/banner/ -# ||flashx.tv^*/counterck.html (easylist.txt: 32564) -.flashx.tv/.*/counterck\.html -# ||flashx.tv/nuevo/player/js/anya.js (easylist.txt: 32563) -.flashx.tv/nuevo/player/js/anya\.js -# ||flashx.tv/img/download_ (easylist.txt: 32562) -.flashx.tv/img/download_ -# ||flashtv.co/class/adjsxxs.js (easylist.txt: 32561) -.flashtv.co/class/adjsxxs\.js -# ||flashtv.co/adds/ (easylist.txt: 32560) -.flashtv.co/adds/ -# ||flashscore.com/res/image/bookmaker-list.png (easylist.txt: 32559) -.flashscore.com/res/image/bookmaker-list\.png -# ||flameload.com/onvertise. (easylist.txt: 32558) -.flameload.com/onvertise\. -# ||fiverr.com/javascripts/conversion.js (easylist.txt: 32557) -.fiverr.com/javascripts/conversion\.js -# ||fishchannel.com/images/sponsors/ (easylist.txt: 32556) -.fishchannel.com/images/sponsors/ -# ||firsttoknow.com^*/page-criteo- (easylist.txt: 32555) -.firsttoknow.com/.*/page-criteo- -# ||firstrowusa.eu/js/pu.js (easylist.txt: 32554) -.firstrowusa.eu/js/pu\.js -# ||firstrowusa.eu/js/bn.js (easylist.txt: 32553) -.firstrowusa.eu/js/bn\.js -# ||firstrowsports.li/frame/ (easylist.txt: 32552) -.firstrowsports.li/frame/ -# ||firstrows.biz/js/pu.js (easylist.txt: 32551) -.firstrows.biz/js/pu\.js -# ||firstrows.biz/js/bn.js (easylist.txt: 32550) -.firstrows.biz/js/bn\.js -# ||firstpost.in^*/promo/ (easylist.txt: 32549) -.firstpost.in/.*/promo/ -# ||firstpost.com^*_sponsored. (easylist.txt: 32548) -.firstpost.com/.*_sponsored\. -# ||firstpost.com^*_skin_ (easylist.txt: 32547) -.firstpost.com/.*_skin_ -# ||firstpost.com^*/sponsered- (easylist.txt: 32546) -.firstpost.com/.*/sponsered- -# ||firstpost.com/promo/ (easylist.txt: 32545) -.firstpost.com/promo/ -# ||firstnationsvoice.com/images/weblinks.swf (easylist.txt: 32544) -.firstnationsvoice.com/images/weblinks\.swf -# ||firingsquad.com^*/sponsor_row.gif (easylist.txt: 32543) -.firingsquad.com/.*/sponsor_row\.gif -# ||firedrive.com/appresources/ (easylist.txt: 32542) -.firedrive.com/appresources/ -# ||firedrive.com/appdata/ (easylist.txt: 32541) -.firedrive.com/appdata/ -# ||finextra.com^*/pantiles/ (easylist.txt: 32540) -.finextra.com/.*/pantiles/ -# ||finextra.com^*/leaderboards/ (easylist.txt: 32539) -.finextra.com/.*/leaderboards/ -# ||findthebest-sw.com/sponsor_event? (easylist.txt: 32538) -.findthebest-sw.com/sponsor_event\? -# ||findnsave.idahostatesman.com^ (easylist.txt: 32537) -.findnsave.idahostatesman.com -# ||findit.com.mt/viewer/ (easylist.txt: 32536) -.findit.com.mt/viewer/ -# ||findit.com.mt/dynimage/boxbanner/ (easylist.txt: 32535) -.findit.com.mt/dynimage/boxbanner/ -# ||findicons.com^*/125x125/ (easylist.txt: 32534) -.findicons.com/.*/125x125/ -# ||findfreegraphics.com/underp.js (easylist.txt: 32533) -.findfreegraphics.com/underp\.js -# ||findfiles.com/images/knife-dancing-1.gif (easylist.txt: 32532) -.findfiles.com/images/knife-dancing-1\.gif -# ||findfiles.com/images/icatchallfree.png (easylist.txt: 32531) -.findfiles.com/images/icatchallfree\.png -# ||financialsamurai.com/wp-content/uploads/*/sliced-alternative-10000.jpg (easylist.txt: 32530) -.financialsamurai.com/wp-content/uploads/.*/sliced-alternative-10000\.jpg -# ||financialnewsandtalk.com/scripts/slideshow-sponsors.js (easylist.txt: 32529) -.financialnewsandtalk.com/scripts/slideshow-sponsors\.js -# ||fimserve.ign.com^ (easylist.txt: 32528) -.fimserve.ign.com -# ||filmsite.org/dart-zones.js (easylist.txt: 32527) -.filmsite.org/dart-zones\.js -# ||filmovizija.com/Images/photo4sell.jpg (easylist.txt: 32526) -.filmovizija.com/Images/photo4sell\.jpg -# ||filmovizija.com/Images/ludovanjeaffilate.jpg (easylist.txt: 32525) -.filmovizija.com/Images/ludovanjeaffilate\.jpg -# ||filmey.com/Filmey.Ad.js (easylist.txt: 32524) -.filmey.com/Filmey\.Ad\.js -# ||filipinojournal.com/images/banners/ (easylist.txt: 32523) -.filipinojournal.com/images/banners/ -# ||filestream.me/requirements/images/ed.gif (easylist.txt: 32522) -.filestream.me/requirements/images/ed\.gif -# ||filestream.me/requirements/images/cialis_generic.gif (easylist.txt: 32521) -.filestream.me/requirements/images/cialis_generic\.gif -# ||filespazz.com^*/copyartwork_side_banner.gif (easylist.txt: 32520) -.filespazz.com/.*/copyartwork_side_banner\.gif -# ||filespazz.com/imx/template_r2_c3.jpg (easylist.txt: 32519) -.filespazz.com/imx/template_r2_c3\.jpg -# ||filespart.com/ot/fast.aspx? (easylist.txt: 32518) -.filespart.com/ot/fast\.aspx\? -# ||fileshut.com/etc/links.php?q= (easylist.txt: 32517) -.fileshut.com/etc/links\.php\?q= -# ||filesharingtalk.com/fst/8242/ (easylist.txt: 32516) -.filesharingtalk.com/fst/8242/ -# ||files.wordpress.com/*-reskin. (easylist.txt: 32515) -.files.wordpress.com/.*-reskin\. -# ||filerio.in^*/jquery.interstitial. (easylist.txt: 32514) -.filerio.in/.*/jquery\.interstitial\. -# ||fileplanet.com/fileblog/sub-no-ad.shtml (easylist.txt: 32513) -.fileplanet.com/fileblog/sub-no-ad\.shtml -# ||fileom.com/img/instadownload2.png (easylist.txt: 32512) -.fileom.com/img/instadownload2\.png -# ||fileom.com/img/downloadnow.png (easylist.txt: 32511) -.fileom.com/img/downloadnow\.png -# ||filegaga.com/ot/fast.php? (easylist.txt: 32510) -.filegaga.com/ot/fast\.php\? -# ||fileflyer.com/img/dap_banner_ (easylist.txt: 32509) -.fileflyer.com/img/dap_banner_ -# ||filedino.com/imagesn/downloadgif.gif (easylist.txt: 32508) -.filedino.com/imagesn/downloadgif\.gif -# ||file2hd.com/sweet.jpg (easylist.txt: 32507) -.file2hd.com/sweet\.jpg -# ||file.org^*/images/promo/ (easylist.txt: 32506) -.file.org/.*/images/promo/ -# ||file.org/fo/scripts/download_helpopt.js (easylist.txt: 32505) -.file.org/fo/scripts/download_helpopt\.js -# ||fijitimes.com/images/bspxchange.gif (easylist.txt: 32504) -.fijitimes.com/images/bspxchange\.gif -# ||fightersonlymag.com/images/banners/ (easylist.txt: 32503) -.fightersonlymag.com/images/banners/ -# ||fiberupload.org/300en.png (easylist.txt: 32502) -.fiberupload.org/300en\.png -# ||fiba.com/Content/Sponsors/ (easylist.txt: 32501) -.fiba.com/Content/Sponsors/ -# ||fhm.com^*_banner.png (easylist.txt: 32500) -.fhm.com/.*_banner\.png -# ||fhm.com^*_background.jpg (easylist.txt: 32499) -.fhm.com/.*_background\.jpg -# ||fhm.com/images/sportsbutton.gif (easylist.txt: 32498) -.fhm.com/images/sportsbutton\.gif -# ||fhm.com/images/casinobutton.gif (easylist.txt: 32497) -.fhm.com/images/casinobutton\.gif -# ||fgfx.co.uk/banner.js? (easylist.txt: 32496) -.fgfx.co.uk/banner\.js\? -# ||ffiles.com/counters.js (easylist.txt: 32495) -.ffiles.com/counters\.js -# ||fever.fm^*/sposor- (easylist.txt: 32494) -.fever.fm/.*/sposor- -# ||fever.fm^*/campaigns/ (easylist.txt: 32493) -.fever.fm/.*/campaigns/ -# ||feiwei.tv^*/sandbox.html (easylist.txt: 32492) -.feiwei.tv/.*/sandbox\.html -# ||feedsportal.com/videoserve/ (easylist.txt: 32491) -.feedsportal.com/videoserve/ -# ||feedsportal.com/creative/ (easylist.txt: 32490) -.feedsportal.com/creative/ -# ||feeds.feedburner.com/*.gif (easylist.txt: 32489) -.feeds.feedburner.com/.*\.gif -# ||feedly.com/amazon.$xmlhttprequest (easylist.txt: 32488) -.feedly.com/amazon\. -# ||feed-the-beast.com^*/gamevox.png (easylist.txt: 32487) -.feed-the-beast.com/.*/gamevox\.png -# ||fastvideo.eu/images/pl_box_rapid.jpg (easylist.txt: 32485) -.fastvideo.eu/images/pl_box_rapid\.jpg -# ||fastvideo.eu/images/down.png (easylist.txt: 32484) -.fastvideo.eu/images/down\.png -# ||fastpic.ru/dox (easylist.txt: 32483) -.fastpic.ru/dox -# ||fastcompany.com/sites/*/interstitial.js (easylist.txt: 32482) -.fastcompany.com/sites/.*/interstitial\.js -# ||farmville.com/promo_bar.php (easylist.txt: 32481) -.farmville.com/promo_bar\.php -# ||fark.com/cgi/buzzfeed_link.pl (easylist.txt: 32480) -.fark.com/cgi/buzzfeed_link\.pl -# ||fansshare.com/va/?$subdocument (easylist.txt: 32479) -.fansshare.com/va/\? -# ||fanfusion.org/as.js (easylist.txt: 32478) -.fanfusion.org/as\.js -# ||fancystreems.com/300x2503.php (easylist.txt: 32477) -.fancystreems.com/300x2503\.php -# ||fan.twitch.tv^ (easylist.txt: 32476) -.fan.twitch.tv -# ||famouspornstarstube.com/images/sponsors/ (easylist.txt: 32475) -.famouspornstarstube.com/images/sponsors/ -# ||familylawweek.co.uk/bin_1/ (easylist.txt: 32474) -.familylawweek.co.uk/bin_1/ -# ||fallout3nexus.com^*/300x600.php (easylist.txt: 32473) -.fallout3nexus.com/.*/300x600\.php -# ||fakku.net/static/seele-$subdocument (easylist.txt: 32472) -.fakku.net/static/seele- -# ||facenfacts.com^*/ads/ (easylist.txt: 32471) -.facenfacts.com/.*/ads/ -# ||faadooengineers.com/ads/ (easylist.txt: 32470) -.faadooengineers.com/ads/ -# ||f1today.net^*/sponsors/ (easylist.txt: 32469) -.f1today.net/.*/sponsors/ -# ||eztv.ag/js/openback*.js (easylist.txt: 32468) -.eztv.ag/js/openback.*\.js -# ||ezmoviestv.com^*/ad-for-ezmovies.png (easylist.txt: 32467) -.ezmoviestv.com/.*/ad-for-ezmovies\.png -# ||extremeoverclocking.com/template_images/it120x240.gif (easylist.txt: 32466) -.extremeoverclocking.com/template_images/it120x240\.gif -# ||extratorrent.cc/tz (easylist.txt: 32465) -.extratorrent.cc/tz -# ||extratorrent.cc/scripts/pp_ (easylist.txt: 32464) -.extratorrent.cc/scripts/pp_ -# ||extratorrent.cc/scripts/bo1o.js (easylist.txt: 32463) -.extratorrent.cc/scripts/bo1o\.js -# ||extratorrent.cc/images/wintoolspro.gif (easylist.txt: 32462) -.extratorrent.cc/images/wintoolspro\.gif -# ||expreview.com/exp2/ (easylist.txt: 32461) -.expreview.com/exp2/ -# ||expressmilwaukee.com/engines/backgrounds/js/backgrounds.js (easylist.txt: 32460) -.expressmilwaukee.com/engines/backgrounds/js/backgrounds\.js -# ||express.co.uk^*/sponsored/ (easylist.txt: 32459) -.express.co.uk/.*/sponsored/ -# ||expertreviews.co.uk^*/skins/ (easylist.txt: 32458) -.expertreviews.co.uk/.*/skins/ -# ||expertreviews.co.uk/?act=widgets. (easylist.txt: 32457) -.expertreviews.co.uk/\?act=widgets\. -# ||expatwomen.com/expat-women-sponsors/ (easylist.txt: 32456) -.expatwomen.com/expat-women-sponsors/ -# ||expatexchange.com/banner/ (easylist.txt: 32455) -.expatexchange.com/banner/ -# ||excite.com/gca_iframe.html (easylist.txt: 32454) -.excite.com/gca_iframe\.html -# ||exchangerates.org.uk/images/200x200_ (easylist.txt: 32453) -.exchangerates.org.uk/images/200x200_ -# ||exchangerates.org.uk/images/150_60_ (easylist.txt: 32452) -.exchangerates.org.uk/images/150_60_ -# ||exchangerates.org.uk/images-NEW/tor.gif (easylist.txt: 32451) -.exchangerates.org.uk/images-NEW/tor\.gif -# ||exceluser.com^*/pub/rotate_ (easylist.txt: 32450) -.exceluser.com/.*/pub/rotate_ -# ||exashare.com^*?*cbrandom=$script (easylist.txt: 32449) -.exashare.com/.*\?.*cbrandom= -# ||exashare.com/vod_stream.html (easylist.txt: 32448) -.exashare.com/vod_stream\.html -# ||exashare.com/playerexa.jpg (easylist.txt: 32447) -.exashare.com/playerexa\.jpg -# ||exashare.com/player_file.jpg (easylist.txt: 32446) -.exashare.com/player_file\.jpg -# ||exashare.com/player_begin.jpg (easylist.txt: 32445) -.exashare.com/player_begin\.jpg -# ||exashare.com/hq_stream.html (easylist.txt: 32444) -.exashare.com/hq_stream\.html -# ||ex1.gamecopyworld.com^$subdocument (easylist.txt: 32443) -.ex1.gamecopyworld.com -# ||ewrc-results.com/images/horni_ewrc_result_banner3.jpg (easylist.txt: 32442) -.ewrc-results.com/images/horni_ewrc_result_banner3\.jpg -# ||eweek.com^*/sponsored- (easylist.txt: 32441) -.eweek.com/.*/sponsored- -# ||eweek.com/widgets/ibmtco/ (easylist.txt: 32440) -.eweek.com/widgets/ibmtco/ -# ||eweek.com/images/stories/marketing/ (easylist.txt: 32439) -.eweek.com/images/stories/marketing/ -# ||evony.com/sevonyadvs2. (easylist.txt: 32438) -.evony.com/sevonyadvs2\. -# ||evolutionm.net/SponsorLogos/ (easylist.txt: 32437) -.evolutionm.net/SponsorLogos/ -# ||everythingsysadmin.com^*_sw_banner120x600_ (easylist.txt: 32436) -.everythingsysadmin.com/.*_sw_banner120x600_ -# ||evernote.com/prom/img/ (easylist.txt: 32435) -.evernote.com/prom/img/ -# ||eventful.com/tools/click/url? (easylist.txt: 32434) -.eventful.com/tools/click/url\? -# ||eve-search.com/gge.gif (easylist.txt: 32433) -.eve-search.com/gge\.gif -# ||eva.ucas.com^ (easylist.txt: 32432) -.eva.ucas.com -# ||euroweb.com^*/banner/ (easylist.txt: 32431) -.euroweb.com/.*/banner/ -# ||europeonline-magazine.eu/nuroa/ (easylist.txt: 32430) -.europeonline-magazine.eu/nuroa/ -# ||europeonline-magazine.eu/banner/ (easylist.txt: 32429) -.europeonline-magazine.eu/banner/ -# ||european-rubber-journal.com/160x600px_ (easylist.txt: 32428) -.european-rubber-journal.com/160x600px_ -# ||euronews.com/media/farnborough/farnborough_wp.jpg (easylist.txt: 32427) -.euronews.com/media/farnborough/farnborough_wp\.jpg -# ||euroleague.net^*/sponsors- (easylist.txt: 32426) -.euroleague.net/.*/sponsors- -# ||eurogamer.net^*/takeovers/ (easylist.txt: 32425) -.eurogamer.net/.*/takeovers/ -# ||eurogamer.net/quad.php (easylist.txt: 32424) -.eurogamer.net/quad\.php -# ||eurodict.com/images/banner_ (easylist.txt: 32423) -.eurodict.com/images/banner_ -# ||eurocupbasketball.com^*/sponsors- (easylist.txt: 32422) -.eurocupbasketball.com/.*/sponsors- -# ||eurochannel.com/images/banners/ (easylist.txt: 32421) -.eurochannel.com/images/banners/ -# ||euphonik.dj/img/sponsors- (easylist.txt: 32420) -.euphonik.dj/img/sponsors- -# ||etidbits.com/300x250news.php (easylist.txt: 32419) -.etidbits.com/300x250news\.php -# ||eteknix.com/wp-content/uploads/*Takeover (easylist.txt: 32418) -.eteknix.com/wp-content/uploads/.*Takeover -# ||eteknix.com/wp-content/uploads/*skin (easylist.txt: 32417) -.eteknix.com/wp-content/uploads/.*skin -# ||esus.com/images/regiochat_logo.png (easylist.txt: 32416) -.esus.com/images/regiochat_logo\.png -# ||essayscam.org^*/ads.js (easylist.txt: 32415) -.essayscam.org/.*/ads\.js -# ||essayinfo.com/img/125x125_ (easylist.txt: 32414) -.essayinfo.com/img/125x125_ -# ||espn1320.net/get_preroll.php? (easylist.txt: 32413) -.espn1320.net/get_preroll\.php\? -# ||espn.go.com/ads/ (easylist.txt: 32411) -.espn.go.com/ads/ -# ||espn.co.uk^*/viagogo_sports.html (easylist.txt: 32410) -.espn.co.uk/.*/viagogo_sports\.html -# ||espn.co.uk/espnuk/williamhill_ (easylist.txt: 32409) -.espn.co.uk/espnuk/williamhill_ -# ||espn.co.uk/espnuk/williamhill/ (easylist.txt: 32408) -.espn.co.uk/espnuk/williamhill/ -# ||escapementmagazine.com/wp-content/banners/ (easylist.txt: 32407) -.escapementmagazine.com/wp-content/banners/ -# ||eq2flames.com/images/styles/eq2/images/banner (easylist.txt: 32406) -.eq2flames.com/images/styles/eq2/images/banner -# ||eprop.co.za/images/banners/ (easylist.txt: 32405) -.eprop.co.za/images/banners/ -# ||episodic.com^*/logos/player- (easylist.txt: 32404) -.episodic.com/.*/logos/player- -# ||epictv.com/sites/default/files/290x400_ (easylist.txt: 32403) -.epictv.com/sites/default/files/290x400_ -# ||epicshare.net/p1.js (easylist.txt: 32402) -.epicshare.net/p1\.js -# ||environmental-finance.com^*rotate.gif (easylist.txt: 32401) -.environmental-finance.com/.*rotate\.gif -# ||environmental-finance.com^*banner (easylist.txt: 32400) -.environmental-finance.com/.*banner -# ||enigmagroup.org/clients/privatetunnels.swf (easylist.txt: 32399) -.enigmagroup.org/clients/privatetunnels\.swf -# ||englishtips.org/b/ (easylist.txt: 32398) -.englishtips.org/b/ -# ||england.fm/i/ducksunited120x60english.gif (easylist.txt: 32397) -.england.fm/i/ducksunited120x60english\.gif -# ||energytribune.com/res/banner/ (easylist.txt: 32396) -.energytribune.com/res/banner/ -# ||encyclopediadramatica.es/spon/ (easylist.txt: 32394) -.encyclopediadramatica.es/spon/ -# ||encyclopediadramatica.es/lanhell.js (easylist.txt: 32393) -.encyclopediadramatica.es/lanhell\.js -# ||emuleday.com/cpxt_$subdocument (easylist.txt: 32391) -.emuleday.com/cpxt_ -# ||emule-top50.com/extras/$subdocument (easylist.txt: 32390) -.emule-top50.com/extras/ -# ||empirestatenews.net/Banners/ (easylist.txt: 32387) -.empirestatenews.net/Banners/ -# ||emoneyspace.com/b.php (easylist.txt: 32386) -.emoneyspace.com/b\.php -# ||emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy.gif (easylist.txt: 32385) -.emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy\.gif -# ||elocallink.tv^*/showgif.php? (easylist.txt: 32384) -.elocallink.tv/.*/showgif\.php\? -# ||elivetv.in/pop/ (easylist.txt: 32383) -.elivetv.in/pop/ -# ||elgg.org/images/hostupon_banner.gif (easylist.txt: 32382) -.elgg.org/images/hostupon_banner\.gif -# ||elevenmyanmar.com/images/banners/ (easylist.txt: 32381) -.elevenmyanmar.com/images/banners/ -# ||electronicsfeed.com/bximg/ (easylist.txt: 32380) -.electronicsfeed.com/bximg/ -# ||electricenergyonline.com^*/bannieres/ (easylist.txt: 32379) -.electricenergyonline.com/.*/bannieres/ -# ||ekantipur.com/uploads/banner/ (easylist.txt: 32378) -.ekantipur.com/uploads/banner/ -# ||ejpress.org/img/banners/ (easylist.txt: 32377) -.ejpress.org/img/banners/ -# ||ejpress.org/images/banners/ (easylist.txt: 32376) -.ejpress.org/images/banners/ -# ||ejb.com/300_250 (easylist.txt: 32375) -.ejb.com/300_250 -# ||ehow.com/media/ad.html^ (easylist.txt: 32374) -.ehow.com/media/ad\.html[^\w%.-] -# ||ehow.com/marketing/ (easylist.txt: 32373) -.ehow.com/marketing/ -# ||ehow.com/images/brands/ (easylist.txt: 32372) -.ehow.com/images/brands/ -# ||ehow.co.uk/frames/directas_ (easylist.txt: 32371) -.ehow.co.uk/frames/directas_ -# ||egamer.co.za^*-background- (easylist.txt: 32370) -.egamer.co.za/.*-background- -# ||educationbusinessuk.net/images/stage.gif (easylist.txt: 32369) -.educationbusinessuk.net/images/stage\.gif -# ||edmunds.com/api/savesegment? (easylist.txt: 32368) -.edmunds.com/api/savesegment\? -# ||ed2k.2x4u.de/mfc/ (easylist.txt: 32366) -.ed2k.2x4u.de/mfc/ -# ||ecostream.tv/js/pu.js (easylist.txt: 32365) -.ecostream.tv/js/pu\.js -# ||ecostream.tv/assets/js/pu.min.js (easylist.txt: 32364) -.ecostream.tv/assets/js/pu\.min\.js -# ||economist.com^*/timekeeper-by-rolex-medium.png (easylist.txt: 32363) -.economist.com/.*/timekeeper-by-rolex-medium\.png -# ||economist.com.na^*/banners/ (easylist.txt: 32362) -.economist.com.na/.*/banners/ -# ||ecommerce-journal.com/specdata.php? (easylist.txt: 32361) -.ecommerce-journal.com/specdata\.php\? -# ||eclipse.org/membership/promo/images/ (easylist.txt: 32360) -.eclipse.org/membership/promo/images/ -# ||ebuddy.com/web_banners_ (easylist.txt: 32359) -.ebuddy.com/web_banners_ -# ||ebuddy.com/web_banners/ (easylist.txt: 32358) -.ebuddy.com/web_banners/ -# ||ebuddy.com/textlink.php? (easylist.txt: 32357) -.ebuddy.com/textlink\.php\? -# ||ebookshare.net^*/streamdirect160x600_ (easylist.txt: 32356) -.ebookshare.net/.*/streamdirect160x600_ -# ||ebookshare.net/pages/lt.html (easylist.txt: 32355) -.ebookshare.net/pages/lt\.html -# ||ebizmbainc.netdna-cdn.com/images/tab_sponsors.gif (easylist.txt: 32354) -.ebizmbainc.netdna-cdn.com/images/tab_sponsors\.gif -# ||ebizblitz.co.za/upload/ad/ (easylist.txt: 32353) -.ebizblitz.co.za/upload/ad/ -# ||ebaystatic.com/aw/signin/*_wallpaper_$image (easylist.txt: 32352) -.ebaystatic.com/aw/signin/.*_wallpaper_ -# ||ebaystatic.com/aw/pics/signin/*_signInSkin_ (easylist.txt: 32351) -.ebaystatic.com/aw/pics/signin/.*_signInSkin_ -# ||ebayrtm.com/rtm?RtmIt (easylist.txt: 32350) -.ebayrtm.com/rtm\?RtmIt -# ||ebayrtm.com/rtm?RtmCmd*&enc= (easylist.txt: 32349) -.ebayrtm.com/rtm\?RtmCmd.*&enc= -# ||eatsleepsport.com/images/manorgaming1.jpg (easylist.txt: 32348) -.eatsleepsport.com/images/manorgaming1\.jpg -# ||easybytez.com/pop3.js (easylist.txt: 32347) -.easybytez.com/pop3\.js -# ||eastonline.eu/images/eng_banner_ (easylist.txt: 32346) -.eastonline.eu/images/eng_banner_ -# ||eastonline.eu/images/banners/ (easylist.txt: 32345) -.eastonline.eu/images/banners/ -# ||earthmoversmagazine.co.uk/nimg/ (easylist.txt: 32344) -.earthmoversmagazine.co.uk/nimg/ -# ||earthlink.net^*/promos/ (easylist.txt: 32343) -.earthlink.net/.*/promos/ -# ||e90post.com/forums/images/banners/ (easylist.txt: 32342) -.e90post.com/forums/images/banners/ -# ||dyncdn.celebuzz.com/assets/ (easylist.txt: 32340) -.dyncdn.celebuzz.com/assets/ -# ||dwarfgames.com/pub/728_top. (easylist.txt: 32339) -.dwarfgames.com/pub/728_top\. -# ||dvdvideosoft.com^*/banners/ (easylist.txt: 32338) -.dvdvideosoft.com/.*/banners/ -# ||dustcoin.com^*/image/ad- (easylist.txt: 32337) -.dustcoin.com/.*/image/ad- -# ||durbannews.co.za^*_new728x60.gif (easylist.txt: 32336) -.durbannews.co.za/.*_new728x60\.gif -# ||dump8.com/wget_2leep_bottom.php (easylist.txt: 32335) -.dump8.com/wget_2leep_bottom\.php -# ||dump8.com/wget.php (easylist.txt: 32334) -.dump8.com/wget\.php -# ||dump8.com/tiz/ (easylist.txt: 32333) -.dump8.com/tiz/ -# ||duckload.com/js/abp.php? (easylist.txt: 32332) -.duckload.com/js/abp\.php\? -# ||duckduckgo.com/y.js (easylist.txt: 32331) -.duckduckgo.com/y\.js -# ||duckduckgo.com/m.js?*&o=a (easylist.txt: 32330) -.duckduckgo.com/m\.js\?.*&o=a -# ||duckduckgo.com/i.js?o=a& (easylist.txt: 32329) -.duckduckgo.com/i\.js\?o=a& -# ||dubcnm.com/Adon/ (easylist.txt: 32328) -.dubcnm.com/Adon/ -# ||dsogaming.com/interstitial/ (easylist.txt: 32327) -.dsogaming.com/interstitial/ -# ||droidgamers.com/images/banners/ (easylist.txt: 32326) -.droidgamers.com/images/banners/ -# ||driverdb.com^*/banners/ (easylist.txt: 32325) -.driverdb.com/.*/banners/ -# ||drivearchive.co.uk/images/amazon. (easylist.txt: 32324) -.drivearchive.co.uk/images/amazon\. -# ||drivearchive.co.uk/amazon/ (easylist.txt: 32323) -.drivearchive.co.uk/amazon/ -# ||drhinternet.net/mwimgsent/ (easylist.txt: 32322) -.drhinternet.net/mwimgsent/ -# ||dreamscene.org^*_Banner. (easylist.txt: 32321) -.dreamscene.org/.*_Banner\. -# ||dramabay.com/y/$subdocument (easylist.txt: 32320) -.dramabay.com/y/ -# ||dpstatic.com/s/ad.js (easylist.txt: 32319) -.dpstatic.com/s/ad\.js -# ||dpstatic.com/banner.png? (easylist.txt: 32318) -.dpstatic.com/banner\.png\? -# ||dprogram.net^*/rightsprites.png (easylist.txt: 32317) -.dprogram.net/.*/rightsprites\.png -# ||downloadian.com/assets/banner.jpg (easylist.txt: 32316) -.downloadian.com/assets/banner\.jpg -# ||downloadbox.to/Leadertop.html (easylist.txt: 32315) -.downloadbox.to/Leadertop\.html -# ||downforeveryoneorjustme.com/images/dotbiz_banner.jpg (easylist.txt: 32314) -.downforeveryoneorjustme.com/images/dotbiz_banner\.jpg -# ||doubleviking.com/ss.html (easylist.txt: 32313) -.doubleviking.com/ss\.html -# ||dota-trade.com/img/branding_ (easylist.txt: 32311) -.dota-trade.com/img/branding_ -# ||dontblockme.modaco.com^ (easylist.txt: 32310) -.dontblockme.modaco.com -# ||dominicantoday.com/stor/banners/ (easylist.txt: 32309) -.dominicantoday.com/stor/banners/ -# ||domaintools.com/partners/ (easylist.txt: 32308) -.domaintools.com/partners/ -# ||domaintools.com/marketing/ (easylist.txt: 32307) -.domaintools.com/marketing/ -# ||domaintools.com/eurodns_ (easylist.txt: 32306) -.domaintools.com/eurodns_ -# ||domainmarket.com/mm/ (easylist.txt: 32305) -.domainmarket.com/mm/ -# ||dogechain.info/content/img/a (easylist.txt: 32304) -.dogechain.info/content/img/a -# ||doge-dice.com/images/outpost.png (easylist.txt: 32303) -.doge-dice.com/images/outpost\.png -# ||doge-dice.com/images/faucet.jpg (easylist.txt: 32302) -.doge-dice.com/images/faucet\.jpg -# ||dnsstuff.com/dnsmedia/images/ft.banner. (easylist.txt: 32301) -.dnsstuff.com/dnsmedia/images/ft\.banner\. -# ||dnsstuff.com/dnsmedia/images/*_banner.jpg (easylist.txt: 32300) -.dnsstuff.com/dnsmedia/images/.*_banner\.jpg -# ||dl4all.com^*/hotfile.gif (easylist.txt: 32299) -.dl4all.com/.*/hotfile\.gif -# ||dl4all.com/img/download.jpg (easylist.txt: 32298) -.dl4all.com/img/download\.jpg -# ||dl4all.com/data4.files/dpopupwindow.js (easylist.txt: 32297) -.dl4all.com/data4\.files/dpopupwindow\.js -# ||dl-protect.com/pop.js (easylist.txt: 32296) -.dl-protect.com/pop\.js -# ||djtunes.com^*/adbg/ (easylist.txt: 32295) -.djtunes.com/.*/adbg/ -# ||djmag.com/sites/default/files/takeover/ (easylist.txt: 32294) -.djmag.com/sites/default/files/takeover/ -# ||djmag.co.uk/sites/default/files/takeover/ (easylist.txt: 32293) -.djmag.co.uk/sites/default/files/takeover/ -# ||djluv.in/android.gif (easylist.txt: 32292) -.djluv.in/android\.gif -# ||diytrade.com/diyep/dir?page=common/ppadv& (easylist.txt: 32291) -.diytrade.com/diyep/dir\?page=common/ppadv& -# ||divxstage.eu/images/download.png (easylist.txt: 32290) -.divxstage.eu/images/download\.png -# ||divxme.com/images/play.png (easylist.txt: 32289) -.divxme.com/images/play\.png -# ||dividendchannel.com/toprankedsm.gif (easylist.txt: 32288) -.dividendchannel.com/toprankedsm\.gif -# ||distrowatch.com^*/advanced-admin. (easylist.txt: 32287) -.distrowatch.com/.*/advanced-admin\. -# ||distrowatch.com^*/3cx.png (easylist.txt: 32286) -.distrowatch.com/.*/3cx\.png -# ||distrowatch.com^*-*.gif (easylist.txt: 32285) -.distrowatch.com/.*-.*\.gif -# ||distrowatch.com/images/kokoku/ (easylist.txt: 32284) -.distrowatch.com/images/kokoku/ -# ||distrogeeks.com/images/sponsors/ (easylist.txt: 32283) -.distrogeeks.com/images/sponsors/ -# ||display.superbay.net^ (easylist.txt: 32282) -.display.superbay.net -# ||dispatch.com^*/dpcpopunder.js (easylist.txt: 32281) -.dispatch.com/.*/dpcpopunder\.js -# ||dishusa.net/templates/flero/images/book_sprava.gif (easylist.txt: 32280) -.dishusa.net/templates/flero/images/book_sprava\.gif -# ||dippic.com/images/banner (easylist.txt: 32279) -.dippic.com/images/banner -# ||diplodocs.com/shopping/sol.js (easylist.txt: 32278) -.diplodocs.com/shopping/sol\.js -# ||digzip.com^*baner.swf (easylist.txt: 32277) -.digzip.com/.*baner\.swf -# ||digitizor.com/wp-content/digimages/xsoftspyse.png (easylist.txt: 32276) -.digitizor.com/wp-content/digimages/xsoftspyse\.png -# ||digitalreality.co.nz^*/360_hacks_banner.gif (easylist.txt: 32275) -.digitalreality.co.nz/.*/360_hacks_banner\.gif -# ||digitaljournal.com/promo/ (easylist.txt: 32274) -.digitaljournal.com/promo/ -# ||digdug.divxnetworks.com^ (easylist.txt: 32273) -.digdug.divxnetworks.com -# ||dictionary.com^*/serp_to/ (easylist.txt: 32272) -.dictionary.com/.*/serp_to/ -# ||dictionary.cambridge.org/info/frame.html?zone= (easylist.txt: 32271) -.dictionary.cambridge.org/info/frame\.html\?zone= -# ||diamondworld.net/admin/getresource.aspx? (easylist.txt: 32270) -.diamondworld.net/admin/getresource\.aspx\? -# ||di.fm^*/ads/webplayer (easylist.txt: 32269) -.di.fm/.*/ads/webplayer -# ||dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ (easylist.txt: 32268) -.dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ -# ||devx.com/devx/3174.gif (easylist.txt: 32267) -.devx.com/devx/3174\.gif -# ||devshed.com/images/backgrounds/$image (easylist.txt: 32265) -.devshed.com/images/backgrounds/ -# ||devour.com/*skin (easylist.txt: 32264) -.devour.com/.*skin -# ||devicemag.com^$subdocument,~third-party (easylist.txt: 32263) -.devicemag.com -# ||develop-online.net/static/banners/ (easylist.txt: 32262) -.develop-online.net/static/banners/ -# ||detroitindependent.net/images/ad_ (easylist.txt: 32261) -.detroitindependent.net/images/ad_ -# ||detnews.com^*/sponsor/ (easylist.txt: 32260) -.detnews.com/.*/sponsor/ -# ||desixpress.co.uk/image/banners/ (easylist.txt: 32259) -.desixpress.co.uk/image/banners/ -# ||desiretoinspire.net^*125x125 (easylist.txt: 32258) -.desiretoinspire.net/.*125x125 -# ||desiretoinspire.net^*/mgbanner.gif (easylist.txt: 32257) -.desiretoinspire.net/.*/mgbanner\.gif -# ||desiretoinspire.net/storage/layout/royalcountessad.gif (easylist.txt: 32256) -.desiretoinspire.net/storage/layout/royalcountessad\.gif -# ||desiretoinspire.net/storage/layout/modmaxbanner.gif (easylist.txt: 32255) -.desiretoinspire.net/storage/layout/modmaxbanner\.gif -# ||deshvidesh.com/banner/ (easylist.txt: 32254) -.deshvidesh.com/banner/ -# ||deseretnews.com/img/sponsors/ (easylist.txt: 32253) -.deseretnews.com/img/sponsors/ -# ||depositphotos.com^$subdocument,third-party (easylist.txt: 32252) -.depositphotos.com -# ||depic.me/bann/ (easylist.txt: 32251) -.depic.me/bann/ -# ||demonoid.unblockt.com/cached/$subdocument (easylist.txt: 32250) -.demonoid.unblockt.com/cached/ -# ||demerarawaves.com/images/banners/ (easylist.txt: 32249) -.demerarawaves.com/images/banners/ -# ||delvenetworks.com^*/acudeo.swf$object-subrequest,~third-party (easylist.txt: 32248) -.delvenetworks.com/.*/acudeo\.swf -# ||defensereview.com^*_banner_ (easylist.txt: 32247) -.defensereview.com/.*_banner_ -# ||defenceweb.co.za/logos/ (easylist.txt: 32246) -.defenceweb.co.za/logos/ -# ||defenceweb.co.za/images/sponsorlogos/ (easylist.txt: 32245) -.defenceweb.co.za/images/sponsorlogos/ -# ||decryptedtech.com/images/banners/ (easylist.txt: 32244) -.decryptedtech.com/images/banners/ -# ||deccanchronicle.com^*/shaadi.com/ (easylist.txt: 32243) -.deccanchronicle.com/.*/shaadi\.com/ -# ||deccanchronicle.com^*-searchquad-300100.swf (easylist.txt: 32242) -.deccanchronicle.com/.*-searchquad-300100\.swf -# ||deccanchronicle.com^*-banner- (easylist.txt: 32241) -.deccanchronicle.com/.*-banner- -# ||decadeforum.com/images/misc/download2.png (easylist.txt: 32240) -.decadeforum.com/images/misc/download2\.png -# ||deborah-bickel.de/banners/ (easylist.txt: 32239) -.deborah-bickel.de/banners/ -# ||deals.ledgertranscript.com^ (easylist.txt: 32238) -.deals.ledgertranscript.com -# ||deals.iphonehacks.com^$subdocument (easylist.txt: 32237) -.deals.iphonehacks.com -# ||deals.cultofmac.com^$subdocument (easylist.txt: 32236) -.deals.cultofmac.com -# ||ddl2.com/header.php? (easylist.txt: 32235) -.ddl2.com/header\.php\? -# ||ddccdn.com/js/google_ (easylist.txt: 32234) -.ddccdn.com/js/google_ -# ||dcourier.com/SiteImages/Banner/ (easylist.txt: 32233) -.dcourier.com/SiteImages/Banner/ -# ||dcad.watersoul.com^ (easylist.txt: 32232) -.dcad.watersoul.com -# ||dbstalk.com/sponsors/ (easylist.txt: 32231) -.dbstalk.com/sponsors/ -# ||dayport.com/ads/ (easylist.txt: 32230) -.dayport.com/ads/ -# ||davesite.com^*/aff/ (easylist.txt: 32229) -.davesite.com/.*/aff/ -# ||datpiff.com/skins/misc/ (easylist.txt: 32228) -.datpiff.com/skins/misc/ -# ||darknet.org.uk^*/do468. (easylist.txt: 32227) -.darknet.org.uk/.*/do468\. -# ||darknet.org.uk^*-250x250. (easylist.txt: 32226) -.darknet.org.uk/.*-250x250\. -# ||darknet.org.uk/images/acunetix_ (easylist.txt: 32225) -.darknet.org.uk/images/acunetix_ -# ||damnlol.com/damnlol.com.*.js (easylist.txt: 32224) -.damnlol.com/damnlol\.com\..*\.js -# ||damnlol.com/a/leaderboard.php (easylist.txt: 32223) -.damnlol.com/a/leaderboard\.php -# ||dailywritingtips.com^*/publisher2.gif (easylist.txt: 32222) -.dailywritingtips.com/.*/publisher2\.gif -# ||dailytrust.info/images/dangote.swf (easylist.txt: 32221) -.dailytrust.info/images/dangote\.swf -# ||dailytrust.info/images/banners/ (easylist.txt: 32220) -.dailytrust.info/images/banners/ -# ||dailytimes.com.pk/banners/ (easylist.txt: 32219) -.dailytimes.com.pk/banners/ -# ||dailysabah.com/banner/ (easylist.txt: 32218) -.dailysabah.com/banner/ -# ||dailypuppy.com/images/livestrong/ls_diet_120x90_1.gif (easylist.txt: 32217) -.dailypuppy.com/images/livestrong/ls_diet_120x90_1\.gif -# ||dailypioneer.com/images/banners/ (easylist.txt: 32216) -.dailypioneer.com/images/banners/ -# ||dailynews.lk^*/webadz/ (easylist.txt: 32215) -.dailynews.lk/.*/webadz/ -# ||dailynews.gov.bw^*/banner_ (easylist.txt: 32214) -.dailynews.gov.bw/.*/banner_ -# ||dailynews.co.zw^*-takeover. (easylist.txt: 32213) -.dailynews.co.zw/.*-takeover\. -# ||dailynews.co.tz/images/banners/ (easylist.txt: 32212) -.dailynews.co.tz/images/banners/ -# ||dailymotion.com/skin/data/default/partner/$~stylesheet (easylist.txt: 32211) -.dailymotion.com/skin/data/default/partner/ -# ||dailymotion.com/images/ie.png (easylist.txt: 32210) -.dailymotion.com/images/ie\.png -# ||dailymirror.lk/media/images/Nawaloka- (easylist.txt: 32209) -.dailymirror.lk/media/images/Nawaloka- -# ||dailymail.co.uk^*/promoboxes/ (easylist.txt: 32208) -.dailymail.co.uk/.*/promoboxes/ -# ||dailymail.co.uk/modules/commercial/ (easylist.txt: 32207) -.dailymail.co.uk/modules/commercial/ -# ||dailymail.co.uk/i/pix/ebay/ (easylist.txt: 32206) -.dailymail.co.uk/i/pix/ebay/ -# ||dailyhome.com/leaderboard_banner (easylist.txt: 32205) -.dailyhome.com/leaderboard_banner -# ||dailyherald.com^*/contextual.js (easylist.txt: 32204) -.dailyherald.com/.*/contextual\.js -# ||dailyfreegames.com/js/partners.html (easylist.txt: 32203) -.dailyfreegames.com/js/partners\.html -# ||dailyexpress.com.my/image/banner/ (easylist.txt: 32202) -.dailyexpress.com.my/image/banner/ -# ||dailyexpress.com.my/banners/ (easylist.txt: 32201) -.dailyexpress.com.my/banners/ -# ||dailydeals.sfgate.com/widget/ (easylist.txt: 32200) -.dailydeals.sfgate.com/widget/ -# ||dailydeals.savannahnow.com^ (easylist.txt: 32199) -.dailydeals.savannahnow.com -# ||dailydeals.onlineathens.com^ (easylist.txt: 32198) -.dailydeals.onlineathens.com -# ||dailydeals.lubbockonline.com^ (easylist.txt: 32197) -.dailydeals.lubbockonline.com -# ||dailydeals.brainerddispatch.com^ (easylist.txt: 32196) -.dailydeals.brainerddispatch.com -# ||dailydeals.augustachronicle.com^ (easylist.txt: 32195) -.dailydeals.augustachronicle.com -# ||dailydeals.amarillo.com^ (easylist.txt: 32194) -.dailydeals.amarillo.com -# ||dailydeal.news-record.com/widgets/ (easylist.txt: 32193) -.dailydeal.news-record.com/widgets/ -# ||dailycommercial.com/inc.php? (easylist.txt: 32192) -.dailycommercial.com/inc\.php\? -# ||dailyblogtips.com/wp-content/uploads/*.gif (easylist.txt: 32191) -.dailyblogtips.com/wp-content/uploads/.*\.gif -# ||dailybitcoins.org/banners/ (easylist.txt: 32190) -.dailybitcoins.org/banners/ -# ||daily-sun.com^*/banner/ (easylist.txt: 32189) -.daily-sun.com/.*/banner/ -# ||daily-mail.co.zm^*_banner. (easylist.txt: 32188) -.daily-mail.co.zm/.*_banner\. -# ||daily-mail.co.zm^*_270x312. (easylist.txt: 32187) -.daily-mail.co.zm/.*_270x312\. -# ||daily-mail.co.zm^*_1170x120. (easylist.txt: 32186) -.daily-mail.co.zm/.*_1170x120\. -# ||daily-mail.co.zm^*/singapore_auto. (easylist.txt: 32185) -.daily-mail.co.zm/.*/singapore_auto\. -# ||daily-mail.co.zm^*/side_strip. (easylist.txt: 32184) -.daily-mail.co.zm/.*/side_strip\. -# ||daily-mail.co.zm^*/sbt.gif (easylist.txt: 32183) -.daily-mail.co.zm/.*/sbt\.gif -# ||daily-mail.co.zm/images/banners/ (easylist.txt: 32182) -.daily-mail.co.zm/images/banners/ -# ||dads.new.digg.com^ (easylist.txt: 32181) -.dads.new.digg.com -# ||dabs.com/images/page-backgrounds/ (easylist.txt: 32180) -.dabs.com/images/page-backgrounds/ -# ||da.feedsportal.com^$~subdocument (easylist.txt: 32179) -.da.feedsportal.com -# ||d5e.info/2.png (easylist.txt: 32177) -.d5e.info/2\.png -# ||d5e.info/1.gif (easylist.txt: 32176) -.d5e.info/1\.gif -# ||d.thelocal.com^ (easylist.txt: 32175) -.d.thelocal.com -# ||d.imwx.com/js/wx-a21-plugthis- (easylist.txt: 32174) -.d.imwx.com/js/wx-a21-plugthis- -# ||d.gossipcenter.com^ (easylist.txt: 32173) -.d.gossipcenter.com -# ||d.businessinsider.com^ (easylist.txt: 32172) -.d.businessinsider.com -# ||d.annarbor.com^ (easylist.txt: 32171) -.d.annarbor.com -# ||d-h.st/assets/img/download1.png (easylist.txt: 32170) -.d-h.st/assets/img/download1\.png -# ||d-addicts.com^*/banner/ (easylist.txt: 32169) -.d-addicts.com/.*/banner/ -# ||cybergamer.com/skins/ (easylist.txt: 32168) -.cybergamer.com/skins/ -# ||cyanogenmod.com/static/tdr_skyscraper.png (easylist.txt: 32167) -.cyanogenmod.com/static/tdr_skyscraper\.png -# ||cur.lv/nbottom.php? (easylist.txt: 32166) -.cur.lv/nbottom\.php\? -# ||cur.lv/bootstrap/js/bootstrapx-clickover.js (easylist.txt: 32165) -.cur.lv/bootstrap/js/bootstrapx-clickover\.js -# ||ctv.ca/Sites/Ctv/assets/js/ctvDfpAd.js (easylist.txt: 32164) -.ctv.ca/Sites/Ctv/assets/js/ctvDfpAd\.js -# ||ctv.ca/ctvresources/js/ctvad.js (easylist.txt: 32163) -.ctv.ca/ctvresources/js/ctvad\.js -# ||ctmirror.org/randomsupporter/ (easylist.txt: 32162) -.ctmirror.org/randomsupporter/ -# ||cship.org/w/skins/monobook/uns.gif (easylist.txt: 32161) -.cship.org/w/skins/monobook/uns\.gif -# ||csgobackpack.net/653x50. (easylist.txt: 32160) -.csgobackpack.net/653x50\. -# ||crystalmedianetworks.com^*-180x150.jpg (easylist.txt: 32159) -.crystalmedianetworks.com/.*-180x150\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt.jpg (easylist.txt: 32158) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt-social.png (easylist.txt: 32157) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt-social\.png -# ||cryptocoinsnews.com/wp-content/uploads/*/cloudbet_ (easylist.txt: 32156) -.cryptocoinsnews.com/wp-content/uploads/.*/cloudbet_ -# ||cryptocoinsnews.com/wp-content/uploads/*/ccn.png (easylist.txt: 32155) -.cryptocoinsnews.com/wp-content/uploads/.*/ccn\.png -# ||cruzine.com^*/banners/ (easylist.txt: 32154) -.cruzine.com/.*/banners/ -# ||crushorflush.com/html/promoframe.html (easylist.txt: 32153) -.crushorflush.com/html/promoframe\.html -# ||crunchyroll.*/vast? (easylist.txt: 32152) -.crunchyroll.*./(.*/)?vast\? -# ||crimeaware.co.za/files-upload/banner/ (easylist.txt: 32151) -.crimeaware.co.za/files-upload/banner/ -# ||cricruns.com/images/hioxindia- (easylist.txt: 32150) -.cricruns.com/images/hioxindia- -# ||cricbuzz.com/js/banners/ (easylist.txt: 32149) -.cricbuzz.com/js/banners/ -# ||creattor.net/flashxmlbanners/ (easylist.txt: 32148) -.creattor.net/flashxmlbanners/ -# ||creatives.livejasmin.com^ (easylist.txt: 32147) -.creatives.livejasmin.com -# ||createtv.com/CreateProgram.nsf/vShowcaseFeaturedSideContentByLinkTitle/ (easylist.txt: 32146) -.createtv.com/CreateProgram\.nsf/vShowcaseFeaturedSideContentByLinkTitle/ -# ||crazymotion.net/video_*.php?key= (easylist.txt: 32145) -.crazymotion.net/video_.*\.php\?key= -# ||crazy-torrent.com/web/banner/online.jpg (easylist.txt: 32144) -.crazy-torrent.com/web/banner/online\.jpg -# ||crazy-torrent.com/web/banner/0xxx0.net.jpg (easylist.txt: 32143) -.crazy-torrent.com/web/banner/0xxx0\.net\.jpg -# ||craveonline.com/gnads/ (easylist.txt: 32142) -.craveonline.com/gnads/ -# ||cramdodge.com/mg- (easylist.txt: 32141) -.cramdodge.com/mg- -# ||crackdb.com/img/vpn.png (easylist.txt: 32140) -.crackdb.com/img/vpn\.png -# ||crackdb.cd/cd.swf (easylist.txt: 32139) -.crackdb.cd/cd\.swf -# ||cpub.co.uk/a? (easylist.txt: 32138) -.cpub.co.uk/a\? -# ||cphpost.dk^*/banners/ (easylist.txt: 32137) -.cphpost.dk/.*/banners/ -# ||countrychannel.tv/telvos_banners/ (easylist.txt: 32136) -.countrychannel.tv/telvos_banners/ -# ||cosplay.com/1lensvillage.gif (easylist.txt: 32135) -.cosplay.com/1lensvillage\.gif -# ||coryarcangel.com/images/banners/ (easylist.txt: 32134) -.coryarcangel.com/images/banners/ -# ||cops.com^*/copbanner_ (easylist.txt: 32133) -.cops.com/.*/copbanner_ -# ||copblock.org/wp-content/uploads/*/covert-handcuff-key-AD- (easylist.txt: 32132) -.copblock.org/wp-content/uploads/.*/covert-handcuff-key-AD- -# ||coolsport.tv/lshadd. (easylist.txt: 32131) -.coolsport.tv/lshadd\. -# ||coolsport.tv/adtadd. (easylist.txt: 32130) -.coolsport.tv/adtadd\. -# ||coolmath.net/*-medrect.html (easylist.txt: 32129) -.coolmath.net/.*-medrect\.html -# ||coolmath-games.com/images/160-notice.gif (easylist.txt: 32128) -.coolmath-games.com/images/160-notice\.gif -# ||coolfm.us/lagos969/images/banners/ (easylist.txt: 32127) -.coolfm.us/lagos969/images/banners/ -# ||conwaydailysun.com/images/Tiles_Skyscrapers/ (easylist.txt: 32126) -.conwaydailysun.com/images/Tiles_Skyscrapers/ -# ||conwaydailysun.com/images/banners/ (easylist.txt: 32125) -.conwaydailysun.com/images/banners/ -# ||convertmyimage.com/images/banner-square.png (easylist.txt: 32124) -.convertmyimage.com/images/banner-square\.png -# ||consumerreports.org^*/sx.js (easylist.txt: 32123) -.consumerreports.org/.*/sx\.js -# ||constructionreviewonline.com^*banner (easylist.txt: 32122) -.constructionreviewonline.com/.*banner -# ||constructionreviewonline.com^*730x90 (easylist.txt: 32121) -.constructionreviewonline.com/.*730x90 -# ||console-spot.com^*.swf (easylist.txt: 32120) -.console-spot.com/.*\.swf -# ||conscioustalk.net/images/sponsors/ (easylist.txt: 32119) -.conscioustalk.net/images/sponsors/ -# ||connectionstrings.com/csas/public/a.ashx? (easylist.txt: 32118) -.connectionstrings.com/csas/public/a\.ashx\? -# ||concrete.tv/images/banners/ (easylist.txt: 32117) -.concrete.tv/images/banners/ -# ||con-telegraph.ie/images/banners/ (easylist.txt: 32116) -.con-telegraph.ie/images/banners/ -# ||computerworld.com^*/jobroll/ (easylist.txt: 32115) -.computerworld.com/.*/jobroll/ -# ||computerhelp.com/temp/banners/ (easylist.txt: 32114) -.computerhelp.com/temp/banners/ -# ||computerandvideogames.com^*/promos/ (easylist.txt: 32113) -.computerandvideogames.com/.*/promos/ -# ||complexmedianetwork.com^*/toolbarlogo.png (easylist.txt: 32112) -.complexmedianetwork.com/.*/toolbarlogo\.png -# ||complexmedianetwork.com^*/takeovers/ (easylist.txt: 32111) -.complexmedianetwork.com/.*/takeovers/ -# ||complaintsboard.com/img/banner- (easylist.txt: 32110) -.complaintsboard.com/img/banner- -# ||complaintsboard.com/img/202x202.gif (easylist.txt: 32109) -.complaintsboard.com/img/202x202\.gif -# ||compassnewspaper.com/images/banners/ (easylist.txt: 32108) -.compassnewspaper.com/images/banners/ -# ||comparestoreprices.co.uk/images/promotions/ (easylist.txt: 32107) -.comparestoreprices.co.uk/images/promotions/ -# ||comicgenesis.com/tcontent.php?out= (easylist.txt: 32106) -.comicgenesis.com/tcontent\.php\?out= -# ||comicbookresources.com/assets/images/skins/ (easylist.txt: 32105) -.comicbookresources.com/assets/images/skins/ -# ||com.com/cnwk.1d/aud/ (easylist.txt: 32104) -.com.com/cnwk\.1d/aud/ -# ||com-a.in/images/banners/ (easylist.txt: 32103) -.com-a.in/images/banners/ -# ||collector.viki.io^ (easylist.txt: 32102) -.collector.viki.io -# ||collarme.com/zone_alt.asp (easylist.txt: 32101) -.collarme.com/zone_alt\.asp -# ||collarme.com/anv/ (easylist.txt: 32100) -.collarme.com/anv/ -# ||coinurl.com/nbottom.php? (easylist.txt: 32099) -.coinurl.com/nbottom\.php\? -# ||coinurl.com/get.php? (easylist.txt: 32098) -.coinurl.com/get\.php\? -# ||coinurl.com/bottom.php (easylist.txt: 32097) -.coinurl.com/bottom\.php -# ||coinurl.com/bootstrap/js/bootstrapx-clickover.js (easylist.txt: 32096) -.coinurl.com/bootstrap/js/bootstrapx-clickover\.js -# ||coinad.com/op.php? (easylist.txt: 32095) -.coinad.com/op\.php\? -# ||coderanch.com/shingles/ (easylist.txt: 32094) -.coderanch.com/shingles/ -# ||codecguide.com/driverscantop1.gif (easylist.txt: 32093) -.codecguide.com/driverscantop1\.gif -# ||codecguide.com/driverscan2.gif (easylist.txt: 32092) -.codecguide.com/driverscan2\.gif -# ||codecguide.com/beforedl2.gif (easylist.txt: 32091) -.codecguide.com/beforedl2\.gif -# ||codeasily.com^*/codeasily.js (easylist.txt: 32090) -.codeasily.com/.*/codeasily\.js -# ||cocomment.com/banner? (easylist.txt: 32089) -.cocomment.com/banner\? -# ||coastweek.com/graffix/ (easylist.txt: 32088) -.coastweek.com/graffix/ -# ||coastweek.com/banner_ (easylist.txt: 32087) -.coastweek.com/banner_ -# ||coastfm.ae/promotion/ (easylist.txt: 32086) -.coastfm.ae/promotion/ -# ||coastfm.ae/images/background/ (easylist.txt: 32085) -.coastfm.ae/images/background/ -# ||cnx-software.com/pic/technexion/ (easylist.txt: 32084) -.cnx-software.com/pic/technexion/ -# ||cnx-software.com/pic/gateworks/ (easylist.txt: 32083) -.cnx-software.com/pic/gateworks/ -# ||cntv.cn/Library/js/js_ad_gb.js (easylist.txt: 32082) -.cntv.cn/Library/js/js_ad_gb\.js -# ||cnn.net^*/lawyers.com/ (easylist.txt: 32081) -.cnn.net/.*/lawyers\.com/ -# ||cnn.com^*/banner.html?&csiid= (easylist.txt: 32080) -.cnn.com/.*/banner\.html\?&csiid= -# ||cnn.com/cnn_adspaces/ (easylist.txt: 32078) -.cnn.com/cnn_adspaces/ -# ||cnn.com/ad- (easylist.txt: 32077) -.cnn.com/ad- -# ||cnetwidget.creativemark.co.uk^ (easylist.txt: 32076) -.cnetwidget.creativemark.co.uk -# ||cnettv.com.edgesuite.net^*/ads/ (easylist.txt: 32075) -.cnettv.com.edgesuite.net/.*/ads/ -# ||cnet.com/imp? (easylist.txt: 32074) -.cnet.com/imp\? -# ||cms.myspacecdn.com^*/splash_assets/ (easylist.txt: 32073) -.cms.myspacecdn.com/.*/splash_assets/ -# ||cmpnet.com/ads/ (easylist.txt: 32072) -.cmpnet.com/ads/ -# ||clubplanet.com^*/wallpaper/ (easylist.txt: 32070) -.clubplanet.com/.*/wallpaper/ -# ||clubhyper.com/images/hannantsbanner_ (easylist.txt: 32069) -.clubhyper.com/images/hannantsbanner_ -# ||cloudyvideos.com/banner/ (easylist.txt: 32068) -.cloudyvideos.com/banner/ -# ||clicks.superpages.com^ (easylist.txt: 32062) -.clicks.superpages.com -# ||click.livedoor.com^ (easylist.txt: 32061) -.click.livedoor.com -# ||clgaming.net/interface/img/sponsor/ (easylist.txt: 32060) -.clgaming.net/interface/img/sponsor/ -# ||classicsdujour.com/artistbanners/ (easylist.txt: 32059) -.classicsdujour.com/artistbanners/ -# ||classicfeel.co.za^*/banners/ (easylist.txt: 32058) -.classicfeel.co.za/.*/banners/ -# ||classical897.org/common/sponsors/ (easylist.txt: 32057) -.classical897.org/common/sponsors/ -# ||classic97.net^*/banner/ (easylist.txt: 32056) -.classic97.net/.*/banner/ -# ||classic-tv.com/pubaccess.html (easylist.txt: 32055) -.classic-tv.com/pubaccess\.html -# ||classic-tv.com/burst$subdocument (easylist.txt: 32054) -.classic-tv.com/burst -# ||clarksvilleonline.com/cols/ (easylist.txt: 32053) -.clarksvilleonline.com/cols/ -# ||cjr.org/interstitial_ (easylist.txt: 32052) -.cjr.org/interstitial_ -# ||citywirecontent.co.uk^*/cw.oas.dx.js (easylist.txt: 32051) -.citywirecontent.co.uk/.*/cw\.oas\.dx\.js -# ||citywire.co.uk/wealth-manager/marketingcampaign? (easylist.txt: 32050) -.citywire.co.uk/wealth-manager/marketingcampaign\? -# ||citybeat.co.uk^*/ads/ (easylist.txt: 32049) -.citybeat.co.uk/.*/ads/ -# ||cityam.com^*/pageskin/ (easylist.txt: 32048) -.cityam.com/.*/pageskin/ -# ||citizen-usa.com/images/banners/ (easylist.txt: 32047) -.citizen-usa.com/images/banners/ -# ||citeulike.org/static/campaigns/ (easylist.txt: 32046) -.citeulike.org/static/campaigns/ -# ||citationmachine.net/images/grammarly/ (easylist.txt: 32045) -.citationmachine.net/images/grammarly/ -# ||ciol.com/zedotags/ (easylist.txt: 32044) -.ciol.com/zedotags/ -# ||cineplex.com/skins/ (easylist.txt: 32043) -.cineplex.com/skins/ -# ||cinemablend.com/templates/tpl/reskin/$image (easylist.txt: 32042) -.cinemablend.com/templates/tpl/reskin/ -# ||ciao.com^*/price_link/ (easylist.txt: 32041) -.ciao.com/.*/price_link/ -# ||ciao.co.uk/load_file.php? (easylist.txt: 32040) -.ciao.co.uk/load_file\.php\? -# ||churchnewssite.com^*/bannercard- (easylist.txt: 32039) -.churchnewssite.com/.*/bannercard- -# ||churchnewssite.com^*/banner- (easylist.txt: 32038) -.churchnewssite.com/.*/banner- -# ||churchnewssite.com^*-banner1. (easylist.txt: 32037) -.churchnewssite.com/.*-banner1\. -# ||chronicle.lu/images/Sponsor_ (easylist.txt: 32036) -.chronicle.lu/images/Sponsor_ -# ||chronicle.lu/images/banners/ (easylist.txt: 32035) -.chronicle.lu/images/banners/ -# ||chinanews.com/gg/ (easylist.txt: 32034) -.chinanews.com/gg/ -# ||chicagodefender.com/images/banners/ (easylist.txt: 32033) -.chicagodefender.com/images/banners/ -# ||chelsey.co.nz/uploads/Takeovers/ (easylist.txt: 32032) -.chelsey.co.nz/uploads/Takeovers/ -# ||checkwebsiteprice.com/images/bitcoin.jpg (easylist.txt: 32031) -.checkwebsiteprice.com/images/bitcoin\.jpg -# ||checkpagerank.net/banners/ (easylist.txt: 32030) -.checkpagerank.net/banners/ -# ||chapala.com/wwwboard/webboardtop.htm (easylist.txt: 32029) -.chapala.com/wwwboard/webboardtop\.htm -# ||channelonline.tv/channelonline_advantage/ (easylist.txt: 32028) -.channelonline.tv/channelonline_advantage/ -# ||channel5.com/assets/takeovers/ (easylist.txt: 32027) -.channel5.com/assets/takeovers/ -# ||channel4fm.com/promotion/ (easylist.txt: 32026) -.channel4fm.com/promotion/ -# ||channel4fm.com/images/background/ (easylist.txt: 32025) -.channel4fm.com/images/background/ -# ||channel4.com/bips/*/brand/$image (easylist.txt: 32024) -.channel4.com/bips/.*/brand/ -# ||channel4.com/assets/programmes/images/originals/$image (easylist.txt: 32023) -.channel4.com/assets/programmes/images/originals/ -# ||chaklyrics.com/add$subdocument (easylist.txt: 32022) -.chaklyrics.com/add -# ||ch131.so/images/2etio.gif (easylist.txt: 32021) -.ch131.so/images/2etio\.gif -# ||cghub.com/files/CampaignCode/ (easylist.txt: 32020) -.cghub.com/files/CampaignCode/ -# ||ceylontoday.lk^*/banner/ (easylist.txt: 32019) -.ceylontoday.lk/.*/banner/ -# ||ceoexpress.com/inc/ads (easylist.txt: 32018) -.ceoexpress.com/inc/ads -# ||centralfm.co.uk/images/banners/ (easylist.txt: 32017) -.centralfm.co.uk/images/banners/ -# ||centos.org/donors/ (easylist.txt: 32016) -.centos.org/donors/ -# ||ceforum.co.uk/images/misc/PartnerLinks (easylist.txt: 32014) -.ceforum.co.uk/images/misc/PartnerLinks -# ||cdn.turner.com^*/groupon/ (easylist.txt: 32012) -.cdn.turner.com/.*/groupon/ -# ||cdn-surfline.com/home/billabong-xxl.png (easylist.txt: 32011) -.cdn-surfline.com/home/billabong-xxl\.png -# ||cdmediaworld.com*/! (easylist.txt: 32010) -.cdmediaworld.com*./(.*/)?! -# ||cdmagurus.com/img/kcpf2.swf (easylist.txt: 32009) -.cdmagurus.com/img/kcpf2\.swf -# ||cdmagurus.com/img/*.gif (easylist.txt: 32008) -.cdmagurus.com/img/.*\.gif -# ||cdmagurus.com/forum/cyberflashing.swf (easylist.txt: 32007) -.cdmagurus.com/forum/cyberflashing\.swf -# ||cdcovers.cc/images/external/toolbar (easylist.txt: 32006) -.cdcovers.cc/images/external/toolbar -# ||cd1025.com/www/img/btn- (easylist.txt: 32005) -.cd1025.com/www/img/btn- -# ||cd1025.com/www/assets/a/ (easylist.txt: 32004) -.cd1025.com/www/assets/a/ -# ||ccfm.org.za^*/sads/ (easylist.txt: 32003) -.ccfm.org.za/.*/sads/ -# ||cbslocal.com/rotatable? (easylist.txt: 32002) -.cbslocal.com/rotatable\? -# ||cbslocal.com/deals/widget/ (easylist.txt: 32001) -.cbslocal.com/deals/widget/ -# ||cbsinteractive.co.uk/cbsi/ads/ (easylist.txt: 32000) -.cbsinteractive.co.uk/cbsi/ads/ -# ||cbn.co.za/images/banners/ (easylist.txt: 31999) -.cbn.co.za/images/banners/ -# ||cbfsms.com^*-banner.gif (easylist.txt: 31998) -.cbfsms.com/.*-banner\.gif -# ||cbc.ca/video/bigbox.html (easylist.txt: 31997) -.cbc.ca/video/bigbox\.html -# ||cbc.ca/deals/ (easylist.txt: 31996) -.cbc.ca/deals/ -# ||catholicculture.org/images/banners/ (easylist.txt: 31995) -.catholicculture.org/images/banners/ -# ||catalystmagazine.net/images/banners/ (easylist.txt: 31994) -.catalystmagazine.net/images/banners/ -# ||casualgaming.biz/banners/ (easylist.txt: 31993) -.casualgaming.biz/banners/ -# ||castanet.net/clients/ (easylist.txt: 31992) -.castanet.net/clients/ -# ||cash9.org/assets/img/banner2.gif (easylist.txt: 31991) -.cash9.org/assets/img/banner2\.gif -# ||carsuk.net/directory/panel-promo- (easylist.txt: 31990) -.carsuk.net/directory/panel-promo- -# ||carsguide.com.au^*/marketing/ (easylist.txt: 31989) -.carsguide.com.au/.*/marketing/ -# ||carsguide.com.au/images/uploads/*_bg. (easylist.txt: 31988) -.carsguide.com.au/images/uploads/.*_bg\. -# ||carsales.com.au^*/backgrounds/ (easylist.txt: 31987) -.carsales.com.au/.*/backgrounds/ -# ||cars.com/js/cars/catretargeting.js (easylist.txt: 31986) -.cars.com/js/cars/catretargeting\.js -# ||cars.com/go/includes/targeting/ (easylist.txt: 31985) -.cars.com/go/includes/targeting/ -# ||cargonewsasia.com/promotion/ (easylist.txt: 31984) -.cargonewsasia.com/promotion/ -# ||cardsharing.info/wp-content/uploads/*/ALLS.jpg (easylist.txt: 31983) -.cardsharing.info/wp-content/uploads/.*/ALLS\.jpg -# ||cardschat.com/pkimg/banners/ (easylist.txt: 31982) -.cardschat.com/pkimg/banners/ -# ||cardomain.com/empty_pg.htm (easylist.txt: 31981) -.cardomain.com/empty_pg\.htm -# ||card-sharing.net/umbrella.png (easylist.txt: 31980) -.card-sharing.net/umbrella\.png -# ||card-sharing.net/topsharingserver.jpg (easylist.txt: 31979) -.card-sharing.net/topsharingserver\.jpg -# ||card-sharing.net/cccamcorner.gif (easylist.txt: 31978) -.card-sharing.net/cccamcorner\.gif -# ||capitolfax.com/wp-content/*Ad_ (easylist.txt: 31976) -.capitolfax.com/wp-content/.*Ad_ -# ||capitolfax.com/wp-content/*ad. (easylist.txt: 31975) -.capitolfax.com/wp-content/.*ad\. -# ||capitalfm.co.ke^*/830x460-iv.jpg (easylist.txt: 31974) -.capitalfm.co.ke/.*/830x460-iv\.jpg -# ||capitalethiopia.com/images/banners/ (easylist.txt: 31973) -.capitalethiopia.com/images/banners/ -# ||capetownetc.com^*/wallpapers/ (easylist.txt: 31971) -.capetownetc.com/.*/wallpapers/ -# ||canvas.thenextweb.com^ (easylist.txt: 31970) -.canvas.thenextweb.com -# ||canindia.com^*_banner.png (easylist.txt: 31969) -.canindia.com/.*_banner\.png -# ||candystand.com/game-track.do? (easylist.txt: 31968) -.candystand.com/game-track\.do\? -# ||cancomuk.com/campaigns/ (easylist.txt: 31967) -.cancomuk.com/campaigns/ -# ||cananewsonline.com/files/banners/ (easylist.txt: 31966) -.cananewsonline.com/files/banners/ -# ||canalboat.co.uk^*/Banners/ (easylist.txt: 31965) -.canalboat.co.uk/.*/Banners/ -# ||canalboat.co.uk^*/bannerImage. (easylist.txt: 31964) -.canalboat.co.uk/.*/bannerImage\. -# ||cameroon-concord.com/images/banners/ (easylist.txt: 31963) -.cameroon-concord.com/images/banners/ -# ||calguns.net/images/ads (easylist.txt: 31962) -.calguns.net/images/ads -# ||calgaryherald.com/images/storysponsor/ (easylist.txt: 31961) -.calgaryherald.com/images/storysponsor/ -# ||calgaryherald.com/images/sponsor/ (easylist.txt: 31960) -.calgaryherald.com/images/sponsor/ -# ||caledonianrecord.com/SiteImages/Tile/ (easylist.txt: 31959) -.caledonianrecord.com/SiteImages/Tile/ -# ||caledonianrecord.com/SiteImages/HomePageTiles/ (easylist.txt: 31958) -.caledonianrecord.com/SiteImages/HomePageTiles/ -# ||caledonianrecord.com/iFrame_ (easylist.txt: 31957) -.caledonianrecord.com/iFrame_ -# ||caladvocate.com/images/banner- (easylist.txt: 31956) -.caladvocate.com/images/banner- -# ||cafonline.com^*/sponsors/ (easylist.txt: 31955) -.cafonline.com/.*/sponsors/ -# ||cafimg.com/images/other/ (easylist.txt: 31954) -.cafimg.com/images/other/ -# ||cafemomstatic.com/images/background/$image (easylist.txt: 31953) -.cafemomstatic.com/images/background/ -# ||cadvv.koreaherald.com^ (easylist.txt: 31952) -.cadvv.koreaherald.com -# ||cadvv.heraldm.com^ (easylist.txt: 31951) -.cadvv.heraldm.com -# ||cadplace.co.uk/banner/ (easylist.txt: 31950) -.cadplace.co.uk/banner/ -# ||caclubindia.com/campaign/ (easylist.txt: 31949) -.caclubindia.com/campaign/ -# ||c9tk.com/images/banner/ (easylist.txt: 31948) -.c9tk.com/images/banner/ -# ||c21media.net/wp-content/plugins/sam-images/ (easylist.txt: 31947) -.c21media.net/wp-content/plugins/sam-images/ -# ||c-ville.com/image/pool/ (easylist.txt: 31946) -.c-ville.com/image/pool/ -# ||c-sharpcorner.com^*/banners/ (easylist.txt: 31945) -.c-sharpcorner.com/.*/banners/ -# ||bypassoxy.com/vectrotunnel-banner.gif (easylist.txt: 31944) -.bypassoxy.com/vectrotunnel-banner\.gif -# ||bwp.theinsider.com.com^ (easylist.txt: 31943) -.bwp.theinsider.com.com -# ||bvibeacon.com^*/banners/ (easylist.txt: 31942) -.bvibeacon.com/.*/banners/ -# ||buzznet.com/topscript.js.php? (easylist.txt: 31941) -.buzznet.com/topscript\.js\.php\? -# ||buzzintown.com/show_bnr.php? (easylist.txt: 31940) -.buzzintown.com/show_bnr\.php\? -# ||buyselltrade.ca/banners/ (easylist.txt: 31939) -.buyselltrade.ca/banners/ -# ||buy.com/*/textlinks.aspx (easylist.txt: 31938) -.buy.com/.*/textlinks\.aspx -# ||buy-n-shoot.com/images/banners/banner- (easylist.txt: 31937) -.buy-n-shoot.com/images/banners/banner- -# ||busiweek.com^*/banners/ (easylist.txt: 31936) -.busiweek.com/.*/banners/ -# ||bundesliga.com^*/_partner/ (easylist.txt: 31935) -.bundesliga.com/.*/_partner/ -# ||btmon.com/da/$subdocument (easylist.txt: 31934) -.btmon.com/da/ -# ||btkitty.org/static/images/880X60.gif (easylist.txt: 31933) -.btkitty.org/static/images/880X60\.gif -# ||btkitty.com/static/images/880X60.gif (easylist.txt: 31932) -.btkitty.com/static/images/880X60\.gif -# ||btdigg.org/images/btguard (easylist.txt: 31931) -.btdigg.org/images/btguard -# ||bt.am/banners/ (easylist.txt: 31930) -.bt.am/banners/ -# ||bt-chat.com/images/affiliates/ (easylist.txt: 31929) -.bt-chat.com/images/affiliates/ -# ||bsvc.ebuddy.com/bannerservice/tabsaww (easylist.txt: 31928) -.bsvc.ebuddy.com/bannerservice/tabsaww -# ||bsmphilly.com/files/banners/ (easylist.txt: 31927) -.bsmphilly.com/files/banners/ -# ||brudirect.com/images/banners/ (easylist.txt: 31926) -.brudirect.com/images/banners/ -# ||browsershots.org/static/images/creative/ (easylist.txt: 31925) -.browsershots.org/static/images/creative/ -# ||brownfieldonline.com^*/banners/ (easylist.txt: 31924) -.brownfieldonline.com/.*/banners/ -# ||brothersoft.com^*/softsale/ (easylist.txt: 31923) -.brothersoft.com/.*/softsale/ -# ||brothersoft.com^*/homepage_ppd.html (easylist.txt: 31922) -.brothersoft.com/.*/homepage_ppd\.html -# ||brothersoft.com^*/float.js (easylist.txt: 31921) -.brothersoft.com/.*/float\.js -# ||brothersoft.com/softsale/ (easylist.txt: 31920) -.brothersoft.com/softsale/ -# ||brothersoft.com/gg/top.js (easylist.txt: 31919) -.brothersoft.com/gg/top\.js -# ||brothersoft.com/gg/soft_down.js (easylist.txt: 31918) -.brothersoft.com/gg/soft_down\.js -# ||brothersoft.com/gg/kontera_com.js (easylist.txt: 31917) -.brothersoft.com/gg/kontera_com\.js -# ||brothersoft.com/gg/g.js (easylist.txt: 31916) -.brothersoft.com/gg/g\.js -# ||brothersoft.com/gg/center_gg.js (easylist.txt: 31915) -.brothersoft.com/gg/center_gg\.js -# ||brobible.com/files/uploads/images/takeovers/ (easylist.txt: 31914) -.brobible.com/files/uploads/images/takeovers/ -# ||broadcastingworld.net/marquee- (easylist.txt: 31913) -.broadcastingworld.net/marquee- -# ||broadcastingworld.net/*-promo.jpg (easylist.txt: 31912) -.broadcastingworld.net/.*-promo\.jpg -# ||broadcastify.com/sm/ (easylist.txt: 31911) -.broadcastify.com/sm/ -# ||broadbandgenie.co.uk/img/talktalk/$image (easylist.txt: 31910) -.broadbandgenie.co.uk/img/talktalk/ -# ||broadbandgenie.co.uk/images/takeover/ (easylist.txt: 31909) -.broadbandgenie.co.uk/images/takeover/ -# ||broadbandforum.co/stock/ (easylist.txt: 31908) -.broadbandforum.co/stock/ -# ||broadbandchoices.co.uk/aff.js (easylist.txt: 31907) -.broadbandchoices.co.uk/aff\.js -# ||britishcolumbia.com/sys/ban.asp (easylist.txt: 31906) -.britishcolumbia.com/sys/ban\.asp -# ||brenz.net/img/bannerrss.gif (easylist.txt: 31904) -.brenz.net/img/bannerrss\.gif -# ||breitlingsource.com/images/pflogo.jpg (easylist.txt: 31903) -.breitlingsource.com/images/pflogo\.jpg -# ||breitlingsource.com/images/govberg*.jpg (easylist.txt: 31902) -.breitlingsource.com/images/govberg.*\.jpg -# ||brecorder.com^*/banners/ (easylist.txt: 31901) -.brecorder.com/.*/banners/ -# ||break.com^*/marketguide- (easylist.txt: 31900) -.break.com/.*/marketguide- -# ||brandchannel.com/images/educationconference/ (easylist.txt: 31899) -.brandchannel.com/images/educationconference/ -# ||boxlotto.com/banrotate. (easylist.txt: 31895) -.boxlotto.com/banrotate\. -# ||boulderjewishnews.org^*/JFSatHome-3.gif (easylist.txt: 31894) -.boulderjewishnews.org/.*/JFSatHome-3\.gif -# ||botswanaguardian.co.bw/images/banners/ (easylist.txt: 31893) -.botswanaguardian.co.bw/images/banners/ -# ||bom.gov.au/includes/marketing2.php? (easylist.txt: 31891) -.bom.gov.au/includes/marketing2\.php\? -# ||bolandrugby.com/images/sponsors. (easylist.txt: 31890) -.bolandrugby.com/images/sponsors\. -# ||bnrs.ilm.ee^ (easylist.txt: 31889) -.bnrs.ilm.ee -# ||bn0.com/4v4.js (easylist.txt: 31888) -.bn0.com/4v4\.js -# ||bloomberg.com^*/banner.js (easylist.txt: 31887) -.bloomberg.com/.*/banner\.js -# ||blogspider.net/images/promo/ (easylist.txt: 31886) -.blogspider.net/images/promo/ -# ||blogsmithmedia.com^*_skin_ (easylist.txt: 31884) -.blogsmithmedia.com/.*_skin_ -# ||blogsmithmedia.com^*_skin. (easylist.txt: 31883) -.blogsmithmedia.com/.*_skin\. -# ||blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments.png (easylist.txt: 31882) -.blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments\.png -# ||blogorama.com/images/banners/ (easylist.txt: 31881) -.blogorama.com/images/banners/ -# ||blogevaluation.com/templates/userfiles/banners/ (easylist.txt: 31880) -.blogevaluation.com/templates/userfiles/banners/ -# ||blog.co.uk/script/blogs/afc.js (easylist.txt: 31879) -.blog.co.uk/script/blogs/afc\.js -# ||blitzdownloads.com/promo/ (easylist.txt: 31878) -.blitzdownloads.com/promo/ -# ||blip.fm/ad/ (easylist.txt: 31877) -.blip.fm/ad/ -# ||blinkx.com/adhocnetwork/ (easylist.txt: 31876) -.blinkx.com/adhocnetwork/ -# ||bleacherreport.net^*_redesign_skin_ (easylist.txt: 31875) -.bleacherreport.net/.*_redesign_skin_ -# ||bleacherreport.net/images/skins/ (easylist.txt: 31874) -.bleacherreport.net/images/skins/ -# ||blbclassic.org/assets/images/*banners/ (easylist.txt: 31873) -.blbclassic.org/assets/images/.*banners/ -# ||blasternation.com/images/hearthstone.jpg (easylist.txt: 31872) -.blasternation.com/images/hearthstone\.jpg -# ||blackpressusa.com^*300x250. (easylist.txt: 31871) -.blackpressusa.com/.*300x250\. -# ||blackpressusa.com^*300by250. (easylist.txt: 31870) -.blackpressusa.com/.*300by250\. -# ||blackpressusa.com^*250by300. (easylist.txt: 31869) -.blackpressusa.com/.*250by300\. -# ||blackpressusa.com^*/Ford.jpg (easylist.txt: 31868) -.blackpressusa.com/.*/Ford\.jpg -# ||blacklistednews.com/images/*banner (easylist.txt: 31867) -.blacklistednews.com/images/.*banner -# ||blackhatlibrary.net/hacktalk.png (easylist.txt: 31866) -.blackhatlibrary.net/hacktalk\.png -# ||blackchronicle.com/images/Banners- (easylist.txt: 31865) -.blackchronicle.com/images/Banners- -# ||blackberryforums.net/banners/ (easylist.txt: 31864) -.blackberryforums.net/banners/ -# ||bkmag.com/binary/*/1380x800_ (easylist.txt: 31863) -.bkmag.com/binary/.*/1380x800_ -# ||bizhub.vn^*/agoda-for-bizhub.jpg (easylist.txt: 31862) -.bizhub.vn/.*/agoda-for-bizhub\.jpg -# ||bizarremag.com/images/skin_ (easylist.txt: 31861) -.bizarremag.com/images/skin_ -# ||bizanti.youwatch.org^ (easylist.txt: 31860) -.bizanti.youwatch.org -# ||bittorrent.am/banners/ (easylist.txt: 31859) -.bittorrent.am/banners/ -# ||bitreactor.to/static/subpage$subdocument (easylist.txt: 31858) -.bitreactor.to/static/subpage -# ||bitreactor.to/sponsor/ (easylist.txt: 31857) -.bitreactor.to/sponsor/ -# ||bitminter.com/images/info/spondoolies (easylist.txt: 31856) -.bitminter.com/images/info/spondoolies -# ||bitcoinreviewer.com/wp-content/uploads/*/banner-luckybit.jpg (easylist.txt: 31855) -.bitcoinreviewer.com/wp-content/uploads/.*/banner-luckybit\.jpg -# ||bitcoinist.net/wp-content/uploads/*_250x250_ (easylist.txt: 31854) -.bitcoinist.net/wp-content/uploads/.*_250x250_ -# ||bitcoinist.net/wp-content/*/630x80-bitcoinist.gif (easylist.txt: 31853) -.bitcoinist.net/wp-content/.*/630x80-bitcoinist\.gif -# ||bit-tech.net/images/backgrounds/skin/ (easylist.txt: 31852) -.bit-tech.net/images/backgrounds/skin/ -# ||binsearch.info/iframe.php (easylist.txt: 31850) -.binsearch.info/iframe\.php -# ||bikeradar.com/media/img/commercial/ (easylist.txt: 31848) -.bikeradar.com/media/img/commercial/ -# ||bikeforums.net/images/sponsors/ (easylist.txt: 31847) -.bikeforums.net/images/sponsors/ -# ||bigsports.tv/live/ado.php (easylist.txt: 31846) -.bigsports.tv/live/ado\.php -# ||bigpoint.com/xml/recommender.swf? (easylist.txt: 31845) -.bigpoint.com/xml/recommender\.swf\? -# ||bigeddieradio.com/uploads/sponsors/ (easylist.txt: 31844) -.bigeddieradio.com/uploads/sponsors/ -# ||bibme.org/images/grammarly/ (easylist.txt: 31843) -.bibme.org/images/grammarly/ -# ||bettyconfidential.com/media/fmads/ (easylist.txt: 31841) -.bettyconfidential.com/media/fmads/ -# ||bettingsports.com/where_to_bet (easylist.txt: 31840) -.bettingsports.com/where_to_bet -# ||bettingsports.com/top_bonuses (easylist.txt: 31839) -.bettingsports.com/top_bonuses -# ||better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend.png (easylist.txt: 31838) -.better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend\.png -# ||better-explorer.com/wp-content/uploads/2013/07/hf.5.png (easylist.txt: 31837) -.better-explorer.com/wp-content/uploads/2013/07/hf\.5\.png -# ||better-explorer.com/wp-content/uploads/2012/09/credits.png (easylist.txt: 31836) -.better-explorer.com/wp-content/uploads/2012/09/credits\.png -# ||bets4free.co.uk/content/5481b452d9ce40.09507031.jpg (easylist.txt: 31835) -.bets4free.co.uk/content/5481b452d9ce40\.09507031\.jpg -# ||bestvpn.com/wp-content/uploads/*/mosttrustedname_260x300_ (easylist.txt: 31834) -.bestvpn.com/wp-content/uploads/.*/mosttrustedname_260x300_ -# ||bestlistonline.info/link/ad.js (easylist.txt: 31833) -.bestlistonline.info/link/ad\.js -# ||bestblackhatforum.com/images/my_compas/ (easylist.txt: 31832) -.bestblackhatforum.com/images/my_compas/ -# ||bernama.com/banner/ (easylist.txt: 31831) -.bernama.com/banner/ -# ||benchmarkreviews.com^*/banners/ (easylist.txt: 31830) -.benchmarkreviews.com/.*/banners/ -# ||bellevision.com/belle/adds/ (easylist.txt: 31829) -.bellevision.com/belle/adds/ -# ||bellanaija.com^*/wp-banners/ (easylist.txt: 31828) -.bellanaija.com/.*/wp-banners/ -# ||belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img.js (easylist.txt: 31827) -.belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img\.js -# ||beingpc.com^*/banners/ (easylist.txt: 31826) -.beingpc.com/.*/banners/ -# ||beforeitsnews.com/static/iframe/ (easylist.txt: 31825) -.beforeitsnews.com/static/iframe/ -# ||beforeitsnews.com/static/data/story-stripmall-new.html (easylist.txt: 31824) -.beforeitsnews.com/static/data/story-stripmall-new\.html -# ||beap.gemini.yahoo.com^ (easylist.txt: 31823) -.beap.gemini.yahoo.com -# ||bdnews24.com^*/Ads/ (easylist.txt: 31822) -.bdnews24.com/.*/Ads/ -# ||bcdb.com^*/banners.pl? (easylist.txt: 31821) -.bcdb.com/.*/banners\.pl\? -# ||bbc.com^*/logoDupontSmall.png (easylist.txt: 31820) -.bbc.com/.*/logoDupontSmall\.png -# ||bbc.co.uk^*/bbccom.js? (easylist.txt: 31819) -.bbc.co.uk/.*/bbccom\.js\? -# ||bazaraki.com/bannerImage.php? (easylist.txt: 31818) -.bazaraki.com/bannerImage\.php\? -# ||baymirror.com/static/js/4728ba74bc.js (easylist.txt: 31817) -.baymirror.com/static/js/4728ba74bc\.js -# ||baymirror.com/static/img/bar.gif (easylist.txt: 31816) -.baymirror.com/static/img/bar\.gif -# ||bayfiles.net/img/download-button-orange.png (easylist.txt: 31815) -.bayfiles.net/img/download-button-orange\.png -# ||bay.com.mt/modules/mod_novarp/ (easylist.txt: 31814) -.bay.com.mt/modules/mod_novarp/ -# ||bay.com.mt/images/banners/ (easylist.txt: 31813) -.bay.com.mt/images/banners/ -# ||bassmaster.com^*/premier_sponsor_logo/ (easylist.txt: 31812) -.bassmaster.com/.*/premier_sponsor_logo/ -# ||basinsradio.com/images/banners/ (easylist.txt: 31811) -.basinsradio.com/images/banners/ -# ||bashandslash.com/images/banners/ (easylist.txt: 31810) -.bashandslash.com/images/banners/ -# ||baseballamerica.com/plugs/ (easylist.txt: 31809) -.baseballamerica.com/plugs/ -# ||barnesandnoble.com/promo/ (easylist.txt: 31808) -.barnesandnoble.com/promo/ -# ||banners.playocio.com^ (easylist.txt: 31807) -.banners.playocio.com -# ||banners.itweb.co.za^ (easylist.txt: 31806) -.banners.itweb.co.za -# ||banners.i-comers.com^ (easylist.txt: 31805) -.banners.i-comers.com -# ||banners.friday-ad.co.uk/hpbanneruploads/$image (easylist.txt: 31804) -.banners.friday-ad.co.uk/hpbanneruploads/ -# ||banners.expressindia.com^ (easylist.txt: 31803) -.banners.expressindia.com -# ||banners.clubworldgroup.com^ (easylist.txt: 31802) -.banners.clubworldgroup.com -# ||banners.beted.com^ (easylist.txt: 31801) -.banners.beted.com -# ||banners.beevpn.com^ (easylist.txt: 31800) -.banners.beevpn.com -# ||banner.itweb.co.za^ (easylist.txt: 31799) -.banner.itweb.co.za -# ||banner.automotiveworld.com^ (easylist.txt: 31798) -.banner.automotiveworld.com -# ||ballz.co.za^*/CLIENTS/ (easylist.txt: 31797) -.ballz.co.za/.*/CLIENTS/ -# ||ballz.co.za/system-files/banners/ (easylist.txt: 31796) -.ballz.co.za/system-files/banners/ -# ||ballislife.com^*/ova-player.swf$object-subrequest (easylist.txt: 31795) -.ballislife.com/.*/ova-player\.swf -# ||ballerarcade.com/ispark/ (easylist.txt: 31794) -.ballerarcade.com/ispark/ -# ||baku2015.com/imgml/sponsor/ (easylist.txt: 31793) -.baku2015.com/imgml/sponsor/ -# ||bakercountypress.com/images/banners/ (easylist.txt: 31792) -.bakercountypress.com/images/banners/ -# ||baixartv.com/img/bonsdescontos. (easylist.txt: 31791) -.baixartv.com/img/bonsdescontos\. -# ||bahamaslocal.com/img/banners/ (easylist.txt: 31790) -.bahamaslocal.com/img/banners/ -# ||badongo.com^*_banner_ (easylist.txt: 31789) -.badongo.com/.*_banner_ -# ||backpagelead.com.au/images/banners/ (easylist.txt: 31788) -.backpagelead.com.au/images/banners/ -# ||backin.net/s/promo/ (easylist.txt: 31787) -.backin.net/s/promo/ -# ||babycenter.com/viewadvertorialpoll.htm (easylist.txt: 31786) -.babycenter.com/viewadvertorialpoll\.htm -# ||babelzilla.org/images/banners/babelzilla-powerfox.png (easylist.txt: 31785) -.babelzilla.org/images/banners/babelzilla-powerfox\.png -# ||babelzilla.org/forum/images/powerfox-top.png (easylist.txt: 31784) -.babelzilla.org/forum/images/powerfox-top\.png -# ||ba.kioskea.net^ (easylist.txt: 31783) -.ba.kioskea.net -# ||ba.ccm2.net^ (easylist.txt: 31782) -.ba.ccm2.net -# ||b92.net/images/banners/ (easylist.txt: 31781) -.b92.net/images/banners/ -# ||b.thefile.me^ (easylist.txt: 31780) -.b.thefile.me -# ||b.localpages.com^ (easylist.txt: 31779) -.b.localpages.com -# ||azlyrics.com^*_az.js (easylist.txt: 31778) -.azlyrics.com/.*_az\.js -# ||azcs.co.uk^*/backgrounds/rotate.php (easylist.txt: 31777) -.azcs.co.uk/.*/backgrounds/rotate\.php -# ||azcentral.com/incs/dfp-refresh.php.inc? (easylist.txt: 31776) -.azcentral.com/incs/dfp-refresh\.php\.inc\? -# ||awkwardfamilyphotos.com*/?ad= (easylist.txt: 31775) -.awkwardfamilyphotos.com*./(.*/)?\?ad= -# ||avstop.com/avbanner/ (easylist.txt: 31774) -.avstop.com/avbanner/ -# ||avsforum.com/alliance/ (easylist.txt: 31773) -.avsforum.com/alliance/ -# ||avpa.dzone.com^ (easylist.txt: 31772) -.avpa.dzone.com -# ||avn.com/delivery/ (easylist.txt: 31771) -.avn.com/delivery/ -# ||avitop.com/image/mig.gif (easylist.txt: 31770) -.avitop.com/image/mig\.gif -# ||avitop.com/image/mig-anim.gif (easylist.txt: 31769) -.avitop.com/image/mig-anim\.gif -# ||avitop.com/image/amazon/ (easylist.txt: 31768) -.avitop.com/image/amazon/ -# ||aviationweek.com^*/leader_board.htm (easylist.txt: 31767) -.aviationweek.com/.*/leader_board\.htm -# ||avforums.com/images/skins/ (easylist.txt: 31766) -.avforums.com/images/skins/ -# ||aveherald.com/images/banners/ (easylist.txt: 31765) -.aveherald.com/images/banners/ -# ||autoworld.co.za^*/ads/ (easylist.txt: 31763) -.autoworld.co.za/.*/ads/ -# ||autosport.com/skinning/ (easylist.txt: 31762) -.autosport.com/skinning/ -# ||autoline.info/atlads/ (easylist.txt: 31761) -.autoline.info/atlads/ -# ||autoline-eu.ie/atlads/ (easylist.txt: 31760) -.autoline-eu.ie/atlads/ -# ||autoline-eu.co.za/atlads/ (easylist.txt: 31759) -.autoline-eu.co.za/atlads/ -# ||autoline-eu.co.uk/atlads/ (easylist.txt: 31758) -.autoline-eu.co.uk/atlads/ -# ||auto123.com/sasserve.spy (easylist.txt: 31757) -.auto123.com/sasserve\.spy -# ||at膽he.net/pu/ (easylist.txt: 31755) -.at膽he.net/pu/ -# ||attitude.co.uk/images/Music_Ticket_Button_ (easylist.txt: 31754) -.attitude.co.uk/images/Music_Ticket_Button_ -# ||atimes.com^*/ahm728x90.swf (easylist.txt: 31753) -.atimes.com/.*/ahm728x90\.swf -# ||atimes.com/banner/ (easylist.txt: 31752) -.atimes.com/banner/ -# ||atdhe.ws/pp.js (easylist.txt: 31751) -.atdhe.ws/pp\.js -# ||astronomynow.com/wp-content/promos/ (easylist.txt: 31750) -.astronomynow.com/wp-content/promos/ -# ||astronomy.com/sitefiles/overlays/overlaygenerator.aspx? (easylist.txt: 31749) -.astronomy.com/sitefiles/overlays/overlaygenerator\.aspx\? -# ||astalavista.com^*/sponsor- (easylist.txt: 31748) -.astalavista.com/.*/sponsor- -# ||astalavista.com/avtng/ (easylist.txt: 31747) -.astalavista.com/avtng/ -# ||askbobrankin.com/awpopup*.js (easylist.txt: 31746) -.askbobrankin.com/awpopup.*\.js -# ||askandyaboutclothes.com/images/$~third-party (easylist.txt: 31745) -.askandyaboutclothes.com/images/ -# ||ask.com/fifdart? (easylist.txt: 31744) -.ask.com/fifdart\? -# ||ask.com/display.html? (easylist.txt: 31743) -.ask.com/display\.html\? -# ||asianewsnet.net/banner/ (easylist.txt: 31742) -.asianewsnet.net/banner/ -# ||asd.projectfreetv.so^ (easylist.txt: 31741) -.asd.projectfreetv.so -# ||as.inbox.com^ (easylist.txt: 31740) -.as.inbox.com -# ||artima.com/zcr/ (easylist.txt: 31739) -.artima.com/zcr/ -# ||arstechnica.net^*/sponsor- (easylist.txt: 31738) -.arstechnica.net/.*/sponsor- -# ||arstechnica.net/public/shared/scripts/da- (easylist.txt: 31737) -.arstechnica.net/public/shared/scripts/da- -# ||arsenal-mania.com/images/backsplash_ (easylist.txt: 31736) -.arsenal-mania.com/images/backsplash_ -# ||aroundosceola.com/banner- (easylist.txt: 31735) -.aroundosceola.com/banner- -# ||arnnet.com.au/files/skins/ (easylist.txt: 31734) -.arnnet.com.au/files/skins/ -# ||armyrecognition.com^*/customer/ (easylist.txt: 31733) -.armyrecognition.com/.*/customer/ -# ||armslist.com/images/sponsors/ (easylist.txt: 31732) -.armslist.com/images/sponsors/ -# ||armorgames.com^*/siteskin.css (easylist.txt: 31731) -.armorgames.com/.*/siteskin\.css -# ||armorgames.com^*/site-skins/ (easylist.txt: 31730) -.armorgames.com/.*/site-skins/ -# ||armorgames.com^*/banners/ (easylist.txt: 31729) -.armorgames.com/.*/banners/ -# ||armorgames.com/backup_ (easylist.txt: 31728) -.armorgames.com/backup_ -# ||armorgames.com/assets/*_skin_ (easylist.txt: 31727) -.armorgames.com/assets/.*_skin_ -# ||arenadb.net^*/banners/ (easylist.txt: 31726) -.arenadb.net/.*/banners/ -# ||arenabg.com^*/banners/ (easylist.txt: 31725) -.arenabg.com/.*/banners/ -# ||archeagedatabase.net/images/okaygoods.gif (easylist.txt: 31724) -.archeagedatabase.net/images/okaygoods\.gif -# ||aravot.am/banner/ (easylist.txt: 31723) -.aravot.am/banner/ -# ||ar15.com^*_60x180.jpg (easylist.txt: 31722) -.ar15.com/.*_60x180\.jpg -# ||ar15.com/images/highlight/ (easylist.txt: 31721) -.ar15.com/images/highlight/ -# ||ar15.com/biz/ (easylist.txt: 31720) -.ar15.com/biz/ -# ||aps.dz^*/banners/ (easylist.txt: 31719) -.aps.dz/.*/banners/ -# ||appwork.org/a_d_s/ (easylist.txt: 31718) -.appwork.org/a_d_s/ -# ||appspot.com/adop/ (easylist.txt: 31717) -.appspot.com/adop/ -# ||applifier.com/bar.htm? (easylist.txt: 31716) -.applifier.com/bar\.htm\? -# ||appleserialnumberinfo.com/desktop/sdas/$subdocument (easylist.txt: 31715) -.appleserialnumberinfo.com/desktop/sdas/ -# ||appleinsider.com^*/ai_front_page_google_premium.js (easylist.txt: 31714) -.appleinsider.com/.*/ai_front_page_google_premium\.js -# ||appleinsider.com/macmall (easylist.txt: 31713) -.appleinsider.com/macmall -# ||api.toptenreviews.com^*/request.php (easylist.txt: 31712) -.api.toptenreviews.com/.*/request\.php -# ||apcointl.org/images/corporate_partners/ (easylist.txt: 31711) -.apcointl.org/images/corporate_partners/ -# ||apanews.net/pub/ (easylist.txt: 31710) -.apanews.net/pub/ -# ||apa.az^*/rebans/ (easylist.txt: 31709) -.apa.az/.*/rebans/ -# ||aolcdn.com/os/moat/$script (easylist.txt: 31707) -.aolcdn.com/os/moat/ -# ||aol.co.uk/images/skybet-logo.gif (easylist.txt: 31706) -.aol.co.uk/images/skybet-logo\.gif -# ||anvisoft.com^*/anviad.jpg (easylist.txt: 31705) -.anvisoft.com/.*/anviad\.jpg -# ||anti-scam.org/abanners/ (easylist.txt: 31704) -.anti-scam.org/abanners/ -# ||anti-leech.com/al.php? (easylist.txt: 31703) -.anti-leech.com/al\.php\? -# ||antag.co.uk/js/ov.js.php? (easylist.txt: 31702) -.antag.co.uk/js/ov\.js\.php\? -# ||answerology.com/index.aspx?*=ads.ascx (easylist.txt: 31701) -.answerology.com/index\.aspx\?.*=ads\.ascx -# ||anonytext.tk/re.php (easylist.txt: 31700) -.anonytext.tk/re\.php -# ||anonytext.tk/img/paste-sponsor.png (easylist.txt: 31699) -.anonytext.tk/img/paste-sponsor\.png -# ||anonytext.tk/img/paste-eb.png (easylist.txt: 31698) -.anonytext.tk/img/paste-eb\.png -# ||anonib.com/zimages/ (easylist.txt: 31697) -.anonib.com/zimages/ -# ||annistonstar.com/leaderboard_banner (easylist.txt: 31696) -.annistonstar.com/leaderboard_banner -# ||aniscartujo.com^*/layer.js (easylist.txt: 31695) -.aniscartujo.com/.*/layer\.js -# ||animeshippuuden.com/square.php (easylist.txt: 31694) -.animeshippuuden.com/square\.php -# ||animeshippuuden.com/adcpm.js (easylist.txt: 31693) -.animeshippuuden.com/adcpm\.js -# ||animenewsnetwork.com^*.aframe? (easylist.txt: 31692) -.animenewsnetwork.com/.*\.aframe\? -# ||animenewsnetwork.com/stylesheets/*skin$image (easylist.txt: 31691) -.animenewsnetwork.com/stylesheets/.*skin -# ||animehaven.org/wp-content/banners/ (easylist.txt: 31690) -.animehaven.org/wp-content/banners/ -# ||animefushigi.com/boxes/ (easylist.txt: 31689) -.animefushigi.com/boxes/ -# ||animeflv.net/cpm.html (easylist.txt: 31688) -.animeflv.net/cpm\.html -# ||animeflavor.com/animeflavor-gao-gamebox.swf (easylist.txt: 31687) -.animeflavor.com/animeflavor-gao-gamebox\.swf -# ||animea.net/do/ (easylist.txt: 31686) -.animea.net/do/ -# ||anime44.com/images/videobb2.png (easylist.txt: 31685) -.anime44.com/images/videobb2\.png -# ||anime44.com/anime44box.jpg (easylist.txt: 31684) -.anime44.com/anime44box\.jpg -# ||anime1.com/service/joyfun/ (easylist.txt: 31683) -.anime1.com/service/joyfun/ -# ||anime-source.com/banzai/banner.$subdocument (easylist.txt: 31682) -.anime-source.com/banzai/banner\. -# ||animationxpress.com/anex/solutions/ (easylist.txt: 31681) -.animationxpress.com/anex/solutions/ -# ||animationxpress.com/anex/crosspromotions/ (easylist.txt: 31680) -.animationxpress.com/anex/crosspromotions/ -# ||anilinkz.tv/kwarta- (easylist.txt: 31679) -.anilinkz.tv/kwarta- -# ||anilinkz.com/img/rightsponsors (easylist.txt: 31678) -.anilinkz.com/img/rightsponsors -# ||anilinkz.com/img/leftsponsors. (easylist.txt: 31677) -.anilinkz.com/img/leftsponsors\. -# ||anhits.com/files/banners/ (easylist.txt: 31676) -.anhits.com/files/banners/ -# ||androidpolice.com/wp-content/*/images/das/ (easylist.txt: 31675) -.androidpolice.com/wp-content/.*/images/das/ -# ||androidcommunity.com/external_marketing/$subdocument (easylist.txt: 31674) -.androidcommunity.com/external_marketing/ -# ||andr.net/banners/ (easylist.txt: 31673) -.andr.net/banners/ -# ||anchorfree.net^*/?tm=$subdocument (easylist.txt: 31672) -.anchorfree.net/.*/\?tm= -# ||anchorfree.net/?tm=$subdocument (easylist.txt: 31671) -.anchorfree.net/\?tm= -# ||anchorfree.com/delivery/ (easylist.txt: 31670) -.anchorfree.com/delivery/ -# ||anamera.com/DesktopModules/BannerDisplay/ (easylist.txt: 31669) -.anamera.com/DesktopModules/BannerDisplay/ -# ||analytics.mmosite.com^ (easylist.txt: 31668) -.analytics.mmosite.com -# ||amz.steamprices.com^ (easylist.txt: 31667) -.amz.steamprices.com -# ||amnesty.ca/images/banners/ (easylist.txt: 31666) -.amnesty.ca/images/banners/ -# ||americanfreepress.net/assets/images/Banner_ (easylist.txt: 31665) -.americanfreepress.net/assets/images/Banner_ -# ||americanangler.com/images/banners/ (easylist.txt: 31664) -.americanangler.com/images/banners/ -# ||amd.com/publishingimages/*/master_ (easylist.txt: 31663) -.amd.com/publishingimages/.*/master_ -# ||ambriefonline.com^*/banners/ (easylist.txt: 31662) -.ambriefonline.com/.*/banners/ -# ||amazonaws.com/files.bannersnack.com/ (easylist.txt: 31655) -.amazonaws.com/files\.bannersnack\.com/ -# ||amazonaws.com/cdn.megacpm.com/ (easylist.txt: 31652) -.amazonaws.com/cdn\.megacpm\.com/ -# ||amazon.com/aan/$subdocument (easylist.txt: 31651) -.amazon.com/aan/ -# ||amazingmoneymagnet.com//upload/banners/ (easylist.txt: 31650) -# ||alternet.org/givememygfp. (easylist.txt: 31649) -.alternet.org/givememygfp\. -# ||altdaily.com/images/banners/ (easylist.txt: 31648) -.altdaily.com/images/banners/ -# ||allthelyrics.com^*/popup.js (easylist.txt: 31647) -.allthelyrics.com/.*/popup\.js -# ||allsp.ch/feeder.php (easylist.txt: 31646) -.allsp.ch/feeder\.php -# ||allmyvideos.net^*/pu.js (easylist.txt: 31645) -.allmyvideos.net/.*/pu\.js -# ||allmyvideos.net/player/ova-jw.swf (easylist.txt: 31644) -.allmyvideos.net/player/ova-jw\.swf -# ||allmyvideos.net/js/ad_ (easylist.txt: 31643) -.allmyvideos.net/js/ad_ -# ||allmusic.com^*_affiliate_ (easylist.txt: 31642) -.allmusic.com/.*_affiliate_ -# ||allmovieportal.com/dynbanner. (easylist.txt: 31641) -.allmovieportal.com/dynbanner\. -# ||allmovie.com^*/affiliate_ (easylist.txt: 31640) -.allmovie.com/.*/affiliate_ -# ||allkpop.com^*/takeover/ (easylist.txt: 31639) -.allkpop.com/.*/takeover/ -# ||allhiphop.com/site_resources/ui-images/*-conduit-banner.gif (easylist.txt: 31638) -.allhiphop.com/site_resources/ui-images/.*-conduit-banner\.gif -# ||allghananews.com/images/banners/ (easylist.txt: 31637) -.allghananews.com/images/banners/ -# ||all4divx.com/js/jscode2.js (easylist.txt: 31636) -.all4divx.com/js/jscode2\.js -# ||alatest.com/banner/ (easylist.txt: 31635) -.alatest.com/banner/ -# ||alatest.co.uk/banner/ (easylist.txt: 31634) -.alatest.co.uk/banner/ -# ||alaska-native-news.com/files/banners/ (easylist.txt: 31633) -.alaska-native-news.com/files/banners/ -# ||alarabiya.net/dms/takeover/ (easylist.txt: 31632) -.alarabiya.net/dms/takeover/ -# ||alachuacountytoday.com/images/banners/ (easylist.txt: 31631) -.alachuacountytoday.com/images/banners/ -# ||akipress.org/bimages/ (easylist.txt: 31630) -.akipress.org/bimages/ -# ||akipress.org/ban/ (easylist.txt: 31629) -.akipress.org/ban/ -# ||akipress.com/_ban/ (easylist.txt: 31628) -.akipress.com/_ban/ -# ||akinator.com/publicite_ (easylist.txt: 31627) -.akinator.com/publicite_ -# ||akiba-online.com/forum/images/bs.gif (easylist.txt: 31625) -.akiba-online.com/forum/images/bs\.gif -# ||akamaihd.net/zbar/takeovers/ (easylist.txt: 31623) -.akamaihd.net/zbar/takeovers/ -# ||akamai.net/*/Prerolls/Campaigns/ (easylist.txt: 31622) -.akamai.net/.*/Prerolls/Campaigns/ -# ||ajnad.aljazeera.net^ (easylist.txt: 31621) -.ajnad.aljazeera.net -# ||ahk-usa.com/uploads/tx_bannermanagement/ (easylist.txt: 31620) -.ahk-usa.com/uploads/tx_bannermanagement/ -# ||ahashare.com/cpxt_ (easylist.txt: 31619) -.ahashare.com/cpxt_ -# ||agriculturalreviewonline.com/images/banners/ (easylist.txt: 31618) -.agriculturalreviewonline.com/images/banners/ -# ||afternoondc.in/banners/ (easylist.txt: 31617) -.afternoondc.in/banners/ -# ||africaonline.com.na^*/banners/ (easylist.txt: 31616) -.africaonline.com.na/.*/banners/ -# ||africanbusinessmagazine.com/images/banners/ (easylist.txt: 31615) -.africanbusinessmagazine.com/images/banners/ -# ||afmradio.co.za/images/slider/ (easylist.txt: 31614) -.afmradio.co.za/images/slider/ -# ||afloat.ie^*/banners/ (easylist.txt: 31613) -.afloat.ie/.*/banners/ -# ||affiliatesynergy.com^*/banner_ (easylist.txt: 31612) -.affiliatesynergy.com/.*/banner_ -# ||aff.lmgtfy.com^ (easylist.txt: 31611) -.aff.lmgtfy.com -# ||aetv.com/includes/dart/ (easylist.txt: 31610) -.aetv.com/includes/dart/ -# ||adz.lk^*_ad. (easylist.txt: 31609) -.adz.lk/.*_ad\. -# ||adx.kat.ph^ (easylist.txt: 31608) -.adx.kat.ph -# ||advpc.net/site_img/banner/ (easylist.txt: 31607) -.advpc.net/site_img/banner/ -# ||advice-ads-cdn.vice.com^ (easylist.txt: 31606) -.advice-ads-cdn.vice.com -# ||advfn.com/tf_ (easylist.txt: 31605) -.advfn.com/tf_ -# ||adverts.itv.com^$image (easylist.txt: 31604) -.adverts.itv.com -# ||advertise.twitpic.com^ (easylist.txt: 31603) -.advertise.twitpic.com -# ||advanced-television.com^*/banners/ (easylist.txt: 31602) -.advanced-television.com/.*/banners/ -# ||adv.li/ads/ (easylist.txt: 31601) -.adv.li/ads/ -# ||adtest.theonion.com^ (easylist.txt: 31600) -.adtest.theonion.com -# ||adswikia.com^*display300x250 (easylist.txt: 31599) -.adswikia.com/.*display300x250 -# ||adswikia.com^*banner (easylist.txt: 31598) -.adswikia.com/.*banner -# ||adstil.indiatimes.com^ (easylist.txt: 31597) -.adstil.indiatimes.com -# ||adss.yahoo.com^ (easylist.txt: 31596) -.adss.yahoo.com -# ||adsor.openrunner.com^ (easylist.txt: 31595) -.adsor.openrunner.com -# ||adsl2exchanges.com.au/images/spintel (easylist.txt: 31594) -.adsl2exchanges.com.au/images/spintel -# ||adshare.freedocast.com^ (easylist.txt: 31593) -.adshare.freedocast.com -# ||adsatt.espn.starwave.com^ (easylist.txt: 31592) -.adsatt.espn.starwave.com -# ||adsatt.abcnews.starwave.com^ (easylist.txt: 31591) -.adsatt.abcnews.starwave.com -# ||ads.zynga.com^ (easylist.txt: 31590) -.ads.zynga.com -# ||ads.yahoo.com^ (easylist.txt: 31589) -.ads.yahoo.com -# ||ads.pof.com^ (easylist.txt: 31588) -.ads.pof.com -# ||ads-rolandgarros.com^ (easylist.txt: 31587) -.ads-rolandgarros.com -# ||ads-*.hulu.com^ (easylist.txt: 31586) -.ads-*./.*\.hulu\.com[^\w%.-] -.ads-*.hulu.com -# ||adpost.com^*.g.html (easylist.txt: 31585) -.adpost.com/.*\.g\.html -# ||adpost.com/skyserver.g. (easylist.txt: 31584) -.adpost.com/skyserver\.g\. -# ||adpost.com/rectserver.g. (easylist.txt: 31583) -.adpost.com/rectserver\.g\. -# ||adpost.com/bannerserver.g. (easylist.txt: 31582) -.adpost.com/bannerserver\.g\. -# ||adpaths.com/_aspx/cpcinclude.aspx? (easylist.txt: 31581) -.adpaths.com/_aspx/cpcinclude\.aspx\? -# ||admeta.vo.llnwd.net^ (easylist.txt: 31580) -.admeta.vo.llnwd.net -# ||adlink.shopsafe.co.nz^ (easylist.txt: 31579) -.adlink.shopsafe.co.nz -# ||adirondackmtnclub.com/images/banner/ (easylist.txt: 31578) -.adirondackmtnclub.com/images/banner/ -# ||adifferentleague.co.uk^*/mcad.png (easylist.txt: 31577) -.adifferentleague.co.uk/.*/mcad\.png -# ||adf.ly/networks/ (easylist.txt: 31576) -.adf.ly/networks/ -# ||adf.ly/external/*/int.php (easylist.txt: 31575) -.adf.ly/external/.*/int\.php -# ||adelaidecityfc.com.au/oak.swf (easylist.txt: 31574) -.adelaidecityfc.com.au/oak\.swf -# ||adds.weatherology.com^ (easylist.txt: 31573) -.adds.weatherology.com -# ||addirector.vindicosuite.com^ (easylist.txt: 31572) -.addirector.vindicosuite.com -# ||adcitrus.com^ (easylist.txt: 31571) -.adcitrus.com -# ||adamvstheman.com/wp-content/uploads/*/AVTM_banner.jpg (easylist.txt: 31570) -.adamvstheman.com/wp-content/uploads/.*/AVTM_banner\.jpg -# ||ad.services.distractify.com^ (easylist.txt: 31569) -.ad.services.distractify.com -# ||ad.search.ch^ (easylist.txt: 31568) -.ad.search.ch -# ||ad.reachlocal.com^ (easylist.txt: 31567) -.ad.reachlocal.com -# ||ad.pandora.tv^ (easylist.txt: 31566) -.ad.pandora.tv -# ||ad.newegg.com^ (easylist.txt: 31565) -.ad.newegg.com -# ||ad.mangareader.net^ (easylist.txt: 31564) -.ad.mangareader.net -# ||ad.lyricswire.com^ (easylist.txt: 31563) -.ad.lyricswire.com -# ||ad.jamster.com^ (easylist.txt: 31562) -.ad.jamster.com -# ||ad.fnnews.com^ (easylist.txt: 31561) -.ad.fnnews.com -# ||ad.evozi.com^ (easylist.txt: 31560) -.ad.evozi.com -# ||ad.download.cnet.com^ (easylist.txt: 31559) -.ad.download.cnet.com -# ||ad.directmirror.com^ (easylist.txt: 31558) -.ad.directmirror.com -# ||ad.digitimes.com.tw^ (easylist.txt: 31557) -.ad.digitimes.com.tw -# ||ad.cooks.com^ (easylist.txt: 31556) -.ad.cooks.com -# ||actressarchives.com/takeover/ (easylist.txt: 31555) -.actressarchives.com/takeover/ -# ||activewin.com^*/blaze_static2.gif (easylist.txt: 31554) -.activewin.com/.*/blaze_static2\.gif -# ||activewin.com/images/*_ad.gif (easylist.txt: 31553) -.activewin.com/images/.*_ad\.gif -# ||acs86.com/a.htm? (easylist.txt: 31552) -.acs86.com/a\.htm\? -# ||acidcow.com/banners.php? (easylist.txt: 31551) -.acidcow.com/banners\.php\? -# ||accesshollywood.com/aife?$subdocument (easylist.txt: 31550) -.accesshollywood.com/aife\? -# ||access.njherald.com^ (easylist.txt: 31549) -.access.njherald.com -# ||ac2.msn.com^ (easylist.txt: 31548) -.ac2.msn.com -# ||absolutewrite.com^*_ad.jpg (easylist.txt: 31547) -.absolutewrite.com/.*_ad\.jpg -# ||absolutewrite.com^*_468x60banner. (easylist.txt: 31546) -.absolutewrite.com/.*_468x60banner\. -# ||absolutewrite.com^*/Scrivener-11-thumbnail-cover_160x136.gif (easylist.txt: 31545) -.absolutewrite.com/.*/Scrivener-11-thumbnail-cover_160x136\.gif -# ||absolutewrite.com^*/doyle_editorial.jpg (easylist.txt: 31544) -.absolutewrite.com/.*/doyle_editorial\.jpg -# ||absolutewrite.com^*/48HrBooks4.jpg (easylist.txt: 31543) -.absolutewrite.com/.*/48HrBooks4\.jpg -# ||absolutcheats.com/images/changemy*.gif (easylist.txt: 31542) -.absolutcheats.com/images/changemy.*\.gif -# ||abovetopsecret.com/images/plexidigest-300x300.jpg (easylist.txt: 31541) -.abovetopsecret.com/images/plexidigest-300x300\.jpg -# ||abovetopsecret.com/728_ (easylist.txt: 31540) -.abovetopsecret.com/728_ -# ||abovetopsecret.com/300_ (easylist.txt: 31539) -.abovetopsecret.com/300_ -# ||abovetopsecret.com/160_ (easylist.txt: 31538) -.abovetopsecret.com/160_ -# ||aboutmyip.com/images/SynaManBanner.gif (easylist.txt: 31537) -.aboutmyip.com/images/SynaManBanner\.gif -# ||aboutmyip.com/images/Ad0 (easylist.txt: 31536) -.aboutmyip.com/images/Ad0 -# ||aboutmyarea.co.uk/images/imgstore/ (easylist.txt: 31535) -.aboutmyarea.co.uk/images/imgstore/ -# ||about.com/0g/$subdocument (easylist.txt: 31534) -.about.com/0g/ -# ||abook.ws/th_mydl.gif (easylist.txt: 31533) -.abook.ws/th_mydl\.gif -# ||abook.ws/pyload.png (easylist.txt: 31532) -.abook.ws/pyload\.png -# ||abook.ws/banner6.png (easylist.txt: 31531) -.abook.ws/banner6\.png -# ||abduzeedo.com^*/mt-banner.jpg (easylist.txt: 31530) -.abduzeedo.com/.*/mt-banner\.jpg -# ||aaugh.com/images/dreamhostad.gif (easylist.txt: 31528) -.aaugh.com/images/dreamhostad\.gif -# ||a7.org/info/ (easylist.txt: 31527) -.a7.org/info/ -# ||a.lolwot.com^ (easylist.txt: 31526) -.a.lolwot.com -# ||a.kickass.to^ (easylist.txt: 31525) -.a.kickass.to -# ||a.kat.cr^ (easylist.txt: 31524) -.a.kat.cr -# ||a.i-sgcm.com^ (easylist.txt: 31523) -.a.i-sgcm.com -# ||a.giantrealm.com^ (easylist.txt: 31522) -.a.giantrealm.com -# ||a.clipconverter.cc^ (easylist.txt: 31521) -.a.clipconverter.cc -# ||a.cdngeek.net^ (easylist.txt: 31520) -.a.cdngeek.net -# ||9news.com/promo/ (easylist.txt: 31519) -.9news.com/promo/ -# ||980wcap.com/sponsorlogos/ (easylist.txt: 31518) -.980wcap.com/sponsorlogos/ -# ||977rocks.com/images/300- (easylist.txt: 31517) -.977rocks.com/images/300- -# ||977music.com/index.php?p=get_loading_banner (easylist.txt: 31516) -.977music.com/index\.php\?p=get_loading_banner -# ||947fm.bb/images/banners/ (easylist.txt: 31515) -.947fm.bb/images/banners/ -# ||947.co.za^*-branding. (easylist.txt: 31514) -.947.co.za/.*-branding\. -# ||911tabs.com^*/ringtones_overlay.js (easylist.txt: 31513) -.911tabs.com/.*/ringtones_overlay\.js -# ||911tabs.com/img/takeover_app_ (easylist.txt: 31512) -.911tabs.com/img/takeover_app_ -# ||911tabs.com/img/bgd_911tabs_ (easylist.txt: 31511) -.911tabs.com/img/bgd_911tabs_ -# ||8ch.net/proxy.php? (easylist.txt: 31510) -.8ch.net/proxy\.php\? -# ||8a.nu/sponsors/ (easylist.txt: 31509) -.8a.nu/sponsors/ -# ||8a.nu/site2/sponsors/ (easylist.txt: 31508) -.8a.nu/site2/sponsors/ -# ||88.80.16.183/streams/counters/ (easylist.txt: 31507) -.88.80.16.183/streams/counters/ -# ||810varsity.com^*/background- (easylist.txt: 31504) -.810varsity.com/.*/background- -# ||6waves.com/aff.php? (easylist.txt: 31502) -.6waves.com/aff\.php\? -# ||64.245.1.134/search/v2/jsp/pcwframe.jsp?provider= (easylist.txt: 31501) -.64.245.1.134/search/v2/jsp/pcwframe\.jsp\?provider= -# ||610kvnu.com*^/sponsors/ (easylist.txt: 31500) -.610kvnu.com*./(.*[^\w%.-])?/sponsors/ -# ||5star-shareware.com/scripts/5starads.js (easylist.txt: 31499) -.5star-shareware.com/scripts/5starads\.js -# ||5min.com^*/banners/ (easylist.txt: 31498) -.5min.com/.*/banners/ -# ||560theanswer.com/upload/sponsor- (easylist.txt: 31497) -.560theanswer.com/upload/sponsor- -# ||50statesclassifieds.com/image.php?size_id=$subdocument (easylist.txt: 31496) -.50statesclassifieds.com/image\.php\?size_id= -# ||4sysops.com^*.php?unit=main$xmlhttprequest (easylist.txt: 31494) -.4sysops.com/.*\.php\?unit=main -# ||4sharedtrend.com/ifx/ifx.php? (easylist.txt: 31493) -.4sharedtrend.com/ifx/ifx\.php\? -# ||4shared.com/images/label1.gif (easylist.txt: 31492) -.4shared.com/images/label1\.gif -# ||4fuckr.com/static/*-banner. (easylist.txt: 31491) -.4fuckr.com/static/.*-banner\. -# ||4fuckr.com/g/$image (easylist.txt: 31490) -.4fuckr.com/g/ -# ||4fastfile.com/afiliat.png (easylist.txt: 31489) -.4fastfile.com/afiliat\.png -# ||4downfiles.com/open1.js (easylist.txt: 31488) -.4downfiles.com/open1\.js -# ||4chan.org/support/ (easylist.txt: 31487) -.4chan.org/support/ -# ||3pmpickup.com.au/images/kmart_v2.jpg (easylist.txt: 31486) -.3pmpickup.com.au/images/kmart_v2\.jpg -# ||3g.co.uk/fad/ (easylist.txt: 31485) -.3g.co.uk/fad/ -# ||3dwallpaperstudio.com/hd_wallpapers.png (easylist.txt: 31484) -.3dwallpaperstudio.com/hd_wallpapers\.png -# ||3dsemulator.org/img/download.png (easylist.txt: 31483) -.3dsemulator.org/img/download\.png -# ||360haven.com/forums/*.advertising.com/ (easylist.txt: 31482) -.360haven.com/forums/.*\.advertising\.com/ -# ||2pass.co.uk/img/avanquest2013.gif (easylist.txt: 31481) -.2pass.co.uk/img/avanquest2013\.gif -# ||2oceansvibe.com/?custom=takeover (easylist.txt: 31480) -.2oceansvibe.com/\?custom=takeover -# ||2mfm.org/images/banners/ (easylist.txt: 31479) -.2mfm.org/images/banners/ -# ||2merkato.com/images/banners/ (easylist.txt: 31478) -.2merkato.com/images/banners/ -# ||2gb.com^*/backgrounds/ (easylist.txt: 31477) -.2gb.com/.*/backgrounds/ -# ||2flashgames.com/img/nfs.gif (easylist.txt: 31476) -.2flashgames.com/img/nfs\.gif -# ||24hourwristbands.com/*.googleadservices.com/ (easylist.txt: 31475) -.24hourwristbands.com/.*\.googleadservices\.com/ -# ||22lottery.com/images/lm468 (easylist.txt: 31474) -.22lottery.com/images/lm468 -# ||1up.com^*/promos/ (easylist.txt: 31469) -.1up.com/.*/promos/ -# ||1up.com/vip/vip_games.html (easylist.txt: 31468) -.1up.com/vip/vip_games\.html -# ||1up.com/scripts/takeover.js (easylist.txt: 31467) -.1up.com/scripts/takeover\.js -# ||180upload.com/pir/729.js (easylist.txt: 31464) -.180upload.com/pir/729\.js -# ||180upload.com/p1.js (easylist.txt: 31463) -.180upload.com/p1\.js -# ||1776coalition.com/wp-content/plugins/sam-images/ (easylist.txt: 31461) -.1776coalition.com/wp-content/plugins/sam-images/ -# ||1590wcgo.com/images/banners/ (easylist.txt: 31459) -.1590wcgo.com/images/banners/ -# ||1430wnav.com/images/468- (easylist.txt: 31458) -.1430wnav.com/images/468- -# ||1430wnav.com/images/300- (easylist.txt: 31457) -.1430wnav.com/images/300- -# ||1340wcmi.com/images/banners/ (easylist.txt: 31456) -.1340wcmi.com/images/banners/ -# ||1320wils.com/assets/images/promo%20banner/ (easylist.txt: 31455) -.1320wils.com/assets/images/promo%20banner/ -# ||11points.com/images/slack100.jpg (easylist.txt: 31454) -.11points.com/images/slack100\.jpg -# ||1077thebone.com^*/banners/ (easylist.txt: 31452) -.1077thebone.com/.*/banners/ -# ||1071thepeak.com/right/ (easylist.txt: 31451) -.1071thepeak.com/right/ -# ||1071radio.com//wp-content/banners/ (easylist.txt: 31450) -# ||1043thefan.com^*_Sponsors/ (easylist.txt: 31449) -.1043thefan.com/.*_Sponsors/ -# ||104.239.139.5/display/ (easylist.txt: 31448) -.104.239.139.5/display/ -# ||1023xlc.com/upload/*_background_ (easylist.txt: 31447) -.1023xlc.com/upload/.*_background_ -# ||100jamz.com^*/insurance-management (easylist.txt: 31446) -.100jamz.com/.*/insurance-management -# ||100jamz.com^*-wallpaper-ad- (easylist.txt: 31445) -.100jamz.com/.*-wallpaper-ad- -# ||100best-free-web-space.com/images/ipage.gif (easylist.txt: 31444) -.100best-free-web-space.com/images/ipage\.gif -# ||10-fast-fingers.com/quotebattle-ad.png (easylist.txt: 31443) -.10-fast-fingers.com/quotebattle-ad\.png -# ||04stream.com/podddpo.js (easylist.txt: 31442) -.04stream.com/podddpo\.js -# ||04stream.com/NEWAD11.php? (easylist.txt: 31441) -.04stream.com/NEWAD11\.php\? -# ||0-60mag.com/js/takeover-2.0/ (easylist.txt: 31440) -.0-60mag.com/js/takeover-2\.0/ -# |http://p.pw^$subdocument (easylist.txt: 31438) -p.pw -# |http://j.gs/omnigy*.swf (easylist.txt: 31437) -j.gs/omnigy.*\.swf -# |http://creative.*/smart.js$script,third-party (easylist.txt: 31436) -creative.*./(.*/)?smart\.js -# /get/path/.banners.$image,third-party (easylist.txt: 31425) -/(.*/)?get/path/\.banners\. -# /af.php?$subdocument (easylist.txt: 31420) -/(.*/)?af\.php\? -# .net/director/?$subdocument,third-party (easylist.txt: 31415) -/.*\.net/director/\? -.*.net/director/\? -# .info/*.js?guid=$script,third-party (easylist.txt: 31413) -/.*\.info/.*\.js\?guid= -.*.info/.*\.js\?guid= -# .com/jquery/*.js?_t=$script,third-party (easylist.txt: 31412) -/.*\.com/jquery/.*\.js\?_t= -.*.com/jquery/.*\.js\?_t= -# ||yuvutu.com^$popup,third-party (easylist.txt: 31408) -.yuvutu.com -# ||xvideoslive.com/landing/$popup,third-party (easylist.txt: 31407) -.xvideoslive.com/landing/ -# ||xvideoslive.com/?AFNO$popup,third-party (easylist.txt: 31406) -.xvideoslive.com/\?AFNO -# ||xrounds.com/?lmid=$popup,third-party (easylist.txt: 31405) -.xrounds.com/\?lmid= -# ||xdating.com/search/$popup,third-party (easylist.txt: 31404) -.xdating.com/search/ -# ||webcams.com^$popup,third-party (easylist.txt: 31403) -.webcams.com -# ||wantlive.com/landing/$popup (easylist.txt: 31402) -.wantlive.com/landing/ -# ||vs3.com^$popup,third-party (easylist.txt: 31401) -.vs3.com -# ||visit-x.net/cams/*.html?*&s=*&ws=$popup,third-party (easylist.txt: 31400) -.visit-x.net/cams/.*\.html\?.*&s=.*&ws= -# ||videosz.com^*&tracker_id=$popup,third-party (easylist.txt: 31399) -.videosz.com/.*&tracker_id= -# ||videosz.com/search.php$popup,third-party (easylist.txt: 31398) -.videosz.com/search\.php -# ||videobox.com/tour/$popup (easylist.txt: 31397) -.videobox.com/tour/ -# ||videobox.com/?tid=$popup (easylist.txt: 31396) -.videobox.com/\?tid= -# ||upforit.com/ext.php$popup (easylist.txt: 31395) -.upforit.com/ext\.php -# ||twistys.com/track/$popup,third-party (easylist.txt: 31394) -.twistys.com/track/ -# ||tube911.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylist.txt: 31393) -.tube911.com/scj/cgi/out\.php\?scheme_id= -# ||tour.mrskin.com^$popup,third-party (easylist.txt: 31392) -.tour.mrskin.com -# ||topbucks.com/popunder/$popup (easylist.txt: 31391) -.topbucks.com/popunder/ -# ||textad.sexsearch.com^$popup (easylist.txt: 31390) -.textad.sexsearch.com -# ||teenslikeitbig.com/track/$popup,third-party (easylist.txt: 31389) -.teenslikeitbig.com/track/ -# ||streamate.com/landing/$popup (easylist.txt: 31388) -.streamate.com/landing/ -# ||socialflirt.com/go/$popup,third-party (easylist.txt: 31387) -.socialflirt.com/go/ -# ||sexsearchcom.com^$popup,third-party (easylist.txt: 31386) -.sexsearchcom.com -# ||sexier.com^*_popunder&$popup (easylist.txt: 31385) -.sexier.com/.*_popunder& -# ||sexier.com/services/adsredirect.ashx?$popup,third-party (easylist.txt: 31384) -.sexier.com/services/adsredirect\.ashx\? -# ||sex.com/popunder/$popup (easylist.txt: 31383) -.sex.com/popunder/ -# ||seeme.com^*?aid=*&art=$popup (easylist.txt: 31382) -.seeme.com/.*\?aid=.*&art= -# ||seekbang.com/cs/rotator/$popup (easylist.txt: 31381) -.seekbang.com/cs/rotator/ -# ||rudefinder.com/?$popup,third-party (easylist.txt: 31380) -.rudefinder.com/\? -# ||redtube.com/bid/$popup (easylist.txt: 31379) -.redtube.com/bid/ -# ||redlightcenter.com/?trq=$popup,third-party (easylist.txt: 31378) -.redlightcenter.com/\?trq= -# ||postselfies.com^*?nats=$popup,third-party (easylist.txt: 31377) -.postselfies.com/.*\?nats= -# ||pornslash.com/cbp.php$popup (easylist.txt: 31376) -.pornslash.com/cbp\.php -# ||pornoh.info^$popup (easylist.txt: 31375) -.pornoh.info -# ||porno-onlain.info/top.php$popup (easylist.txt: 31374) -.porno-onlain.info/top\.php -# ||pornme.com^*.php?ref=$popup,third-party (easylist.txt: 31373) -.pornme.com/.*\.php\?ref= -# ||pornhub.com^*&utm_campaign=*-pop|$popup (easylist.txt: 31372) -.pornhub.com/.*&utm_campaign=.*-pop$ -# ||pomnach.ru^$popup (easylist.txt: 31371) -.pomnach.ru -# ||online.mydirtyhobby.com^*?naff=$popup,third-party (easylist.txt: 31370) -.online.mydirtyhobby.com/.*\?naff= -# ||myfreecams.com/?co_id=$popup (easylist.txt: 31369) -.myfreecams.com/\?co_id= -# ||mydirtyhobby.com/?$popup,third-party (easylist.txt: 31368) -.mydirtyhobby.com/\? -# ||mjtlive.com/exports/golive/?lp=*&afno=$popup,third-party (easylist.txt: 31367) -.mjtlive.com/exports/golive/\?lp=.*&afno= -# ||meetlocals.com^*popunder$popup (easylist.txt: 31366) -.meetlocals.com/.*popunder -# ||media.campartner.com^*?cp=$popup,third-party (easylist.txt: 31365) -.media.campartner.com/.*\?cp= -# ||media.campartner.com/index.php?cpID=*&cpMID=$popup,third-party (easylist.txt: 31364) -.media.campartner.com/index\.php\?cpID=.*&cpMID= -# ||livejasmin.com^$popup,third-party (easylist.txt: 31363) -.livejasmin.com -# ||livecams.com^$popup (easylist.txt: 31362) -.livecams.com -# ||linkfame.com^*/go.php?$popup,third-party (easylist.txt: 31361) -.linkfame.com/.*/go\.php\? -# ||letstryanal.com/track/$popup,third-party (easylist.txt: 31360) -.letstryanal.com/track/ -# ||judgeporn.com/video_pop.php?$popup (easylist.txt: 31359) -.judgeporn.com/video_pop\.php\? -# ||join.whitegfs.com^$popup (easylist.txt: 31358) -.join.whitegfs.com -# ||join.teamskeet.com/track/$popup,third-party (easylist.txt: 31357) -.join.teamskeet.com/track/ -# ||join.filthydatez.com^$popup,third-party (easylist.txt: 31356) -.join.filthydatez.com -# ||jasmin.com^$popup,third-party (easylist.txt: 31355) -.jasmin.com -# ||ipornia.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylist.txt: 31354) -.ipornia.com/scj/cgi/out\.php\?scheme_id= -# ||imlive.com/wmaster.ashx?$popup,third-party (easylist.txt: 31353) -.imlive.com/wmaster\.ashx\? -# ||icgirls.com^$popup (easylist.txt: 31352) -.icgirls.com -# ||hqtubevideos.com/play.html$popup,third-party (easylist.txt: 31351) -.hqtubevideos.com/play\.html -# ||hazeher.com/t1/pps$popup (easylist.txt: 31350) -.hazeher.com/t1/pps -# ||get-a-fuck-tonight.com^$popup (easylist.txt: 31349) -.get-a-fuck-tonight.com -# ||fucktapes.org/fucktube.htm$popup (easylist.txt: 31348) -.fucktapes.org/fucktube\.htm -# ||fuckshow.org^*&adr=$popup (easylist.txt: 31347) -.fuckshow.org/.*&adr= -# ||fuckbooknet.net/dating/$popup,third-party (easylist.txt: 31346) -.fuckbooknet.net/dating/ -# ||fuckbookhookups.com/go/$popup (easylist.txt: 31345) -.fuckbookhookups.com/go/ -# ||flirt4free.com/_special/pops/$popup,third-party (easylist.txt: 31344) -.flirt4free.com/_special/pops/ -# ||fling.com/enter.php?$popup (easylist.txt: 31343) -.fling.com/enter\.php\? -# ||fleshlight-international.eu^*?link=$popup,third-party (easylist.txt: 31342) -.fleshlight-international.eu/.*\?link= -# ||fantasti.cc/ajax/gw.php?$popup (easylist.txt: 31341) -.fantasti.cc/ajax/gw\.php\? -# ||extremefuse.com/out.php?$popup (easylist.txt: 31340) -.extremefuse.com/out\.php\? -# ||ext.affaire.com^$popup (easylist.txt: 31339) -.ext.affaire.com -# ||exposedwebcams.com/?token=$popup,third-party (easylist.txt: 31338) -.exposedwebcams.com/\?token= -# ||epornerlive.com/index.php?*=punder$popup (easylist.txt: 31337) -.epornerlive.com/index\.php\?.*=punder -# ||devilsfilm.com/track/go.php?$popup,third-party (easylist.txt: 31336) -.devilsfilm.com/track/go\.php\? -# ||cpm.amateurcommunity.*?cp=$popup,third-party (easylist.txt: 31335) -.cpm.amateurcommunity.*./.*\?cp= -# ||chaturbate.com/sitestats/openwindow/$popup (easylist.txt: 31334) -.chaturbate.com/sitestats/openwindow/ -# ||chaturbate.com/*/?join_overlay=$popup (easylist.txt: 31333) -.chaturbate.com/.*/\?join_overlay= -# ||candidvoyeurism.com/ads/$popup (easylist.txt: 31332) -.candidvoyeurism.com/ads/ -# ||camcity.com/rtr.php?aid=$popup (easylist.txt: 31331) -.camcity.com/rtr\.php\?aid= -# ||cam4.com/?$popup (easylist.txt: 31330) -.cam4.com/\? -# ||benaughty.com/aff.php?$popup,third-party (easylist.txt: 31329) -.benaughty.com/aff\.php\? -# ||babecams.net/landing/$popup,third-party (easylist.txt: 31327) -.babecams.net/landing/ -# ||amarotic.com^*?wmid=$popup,third-party (easylist.txt: 31326) -.amarotic.com/.*\?wmid= -# ||amarotic.com/?$popup,third-party (easylist.txt: 31325) -.amarotic.com/\? -# ||adultfriendfinder.com/go/$popup,third-party (easylist.txt: 31324) -.adultfriendfinder.com/go/ -# ||adultfriendfinder.com/banners/$popup,third-party (easylist.txt: 31323) -.adultfriendfinder.com/banners/ -# ||777livecams.com/?id=$popup,third-party (easylist.txt: 31322) -.777livecams.com/\?id= -# ||21sextury.com^$popup (easylist.txt: 31321) -.21sextury.com -# ||1800freecams.com^$popup,third-party (easylist.txt: 31320) -.1800freecams.com -# ||zubehost.com/*?zoneid= (easylist.txt: 31318) -.zubehost.com/.*\?zoneid= -# ||ztod.com/iframe/third/$subdocument (easylist.txt: 31317) -.ztod.com/iframe/third/ -# ||ztod.com/flash/wall*.swf (easylist.txt: 31316) -.ztod.com/flash/wall.*\.swf -# ||yplf.com/ram/files/sponsors/ (easylist.txt: 31315) -.yplf.com/ram/files/sponsors/ -# ||youfck.com^*/adawe.swf (easylist.txt: 31314) -.youfck.com/.*/adawe\.swf -# ||xxxoh.com/number/$third-party (easylist.txt: 31313) -.xxxoh.com/number/ -# ||xxtu.be^$subdocument,third-party (easylist.txt: 31312) -.xxtu.be -# ||xtrasize.pl/banner/ (easylist.txt: 31311) -.xtrasize.pl/banner/ -# ||xnxx.com^$third-party (easylist.txt: 31310) -.xnxx.com -# ||xlgirls.com/banner/$third-party (easylist.txt: 31309) -.xlgirls.com/banner/ -# ||xcabin.net/b/$third-party (easylist.txt: 31308) -.xcabin.net/b/ -# ||winkit.info/wink2.js (easylist.txt: 31307) -.winkit.info/wink2\.js -# ||widgetssec.cam-content.com^ (easylist.txt: 31306) -.widgetssec.cam-content.com -# ||widgets.comcontent.net^ (easylist.txt: 31305) -.widgets.comcontent.net -# ||wetandpuffy.com/galleries/banners/ (easylist.txt: 31304) -.wetandpuffy.com/galleries/banners/ -# ||wendi.com/ipt/$third-party (easylist.txt: 31303) -.wendi.com/ipt/ -# ||webmaster.erotik.com^$third-party (easylist.txt: 31302) -.webmaster.erotik.com -# ||webcams.com/misc/iframes_new/ (easylist.txt: 31301) -.webcams.com/misc/iframes_new/ -# ||webcams.com/js/im_popup.php? (easylist.txt: 31300) -.webcams.com/js/im_popup\.php\? -# ||watchmygf.com/preview/$third-party (easylist.txt: 31299) -.watchmygf.com/preview/ -# ||wafflegirl.com/galleries/banner/ (easylist.txt: 31298) -.wafflegirl.com/galleries/banner/ -# ||vzzk.com/uploads/banners/$third-party (easylist.txt: 31297) -.vzzk.com/uploads/banners/ -# ||vserv.bc.cdn.bitgravity.com^$third-party (easylist.txt: 31296) -.vserv.bc.cdn.bitgravity.com -# ||vs3.com/_special/banners/ (easylist.txt: 31295) -.vs3.com/_special/banners/ -# ||vodconcepts.com^*/banners/ (easylist.txt: 31294) -.vodconcepts.com/.*/banners/ -# ||visit-x.net/promo/$third-party (easylist.txt: 31293) -.visit-x.net/promo/ -# ||virtualhottie2.com/cash/tools/banners/ (easylist.txt: 31292) -.virtualhottie2.com/cash/tools/banners/ -# ||viorotica.com^*/banners/ (easylist.txt: 31291) -.viorotica.com/.*/banners/ -# ||vigrax.pl/banner/ (easylist.txt: 31290) -.vigrax.pl/banner/ -# ||vidz.com/promo_banner/$third-party (easylist.txt: 31289) -.vidz.com/promo_banner/ -# ||vectorpastel.com^$third-party (easylist.txt: 31288) -.vectorpastel.com -# ||uramov.info/wav/wavideo.html (easylist.txt: 31286) -.uramov.info/wav/wavideo\.html -# ||upsellit.com/custom/$third-party (easylist.txt: 31285) -.upsellit.com/custom/ -# ||updatetube.com/updatetube_html/ (easylist.txt: 31284) -.updatetube.com/updatetube_html/ -# ||updatetube.com/iframes/ (easylist.txt: 31283) -.updatetube.com/iframes/ -# ||twilightsex.com^$subdocument,third-party (easylist.txt: 31282) -.twilightsex.com -# ||twiant.com/img/banners/ (easylist.txt: 31281) -.twiant.com/img/banners/ -# ||turbolovervidz.com/fling/ (easylist.txt: 31280) -.turbolovervidz.com/fling/ -# ||tubefck.com^*/adawe.swf (easylist.txt: 31278) -.tubefck.com/.*/adawe\.swf -# ||ts.videosz.com/iframes/ (easylist.txt: 31277) -.ts.videosz.com/iframes/ -# ||trader.erosdlz.com^$third-party (easylist.txt: 31276) -.trader.erosdlz.com -# ||track.xtrasize.nl^$third-party (easylist.txt: 31275) -.track.xtrasize.nl -# ||tours.imlive.com^$third-party (easylist.txt: 31274) -.tours.imlive.com -# ||tour.cum-covered-gfs.com^$third-party (easylist.txt: 31273) -.tour.cum-covered-gfs.com -# ||tools.gfcash.com^$third-party (easylist.txt: 31272) -.tools.gfcash.com -# ||tools.bongacams.com^$third-party (easylist.txt: 31271) -.tools.bongacams.com -# ||tlavideo.com/affiliates/$third-party (easylist.txt: 31270) -.tlavideo.com/affiliates/ -# ||thumbs.vstreamcdn.com^*/slider.html (easylist.txt: 31269) -.thumbs.vstreamcdn.com/.*/slider\.html -# ||thumbs.sunporno.com^$third-party (easylist.txt: 31268) -.thumbs.sunporno.com -# ||thrixxx.com/scripts/show_banner.php? (easylist.txt: 31267) -.thrixxx.com/scripts/show_banner\.php\? -# ||thrixxx.com/affiliates/$image (easylist.txt: 31266) -.thrixxx.com/affiliates/ -# ||teendaporn.com/rk.js (easylist.txt: 31265) -.teendaporn.com/rk\.js -# ||target.vivid.com^$third-party (easylist.txt: 31264) -.target.vivid.com -# ||swurve.com/affiliates/ (easylist.txt: 31263) -.swurve.com/affiliates/ -# ||sweet.game-rust.ru^ (easylist.txt: 31262) -.sweet.game-rust.ru -# ||surv.xbizmedia.com^ (easylist.txt: 31261) -.surv.xbizmedia.com -# ||streamray.com/images/cams/flash/cams_live.swf (easylist.txt: 31260) -.streamray.com/images/cams/flash/cams_live\.swf -# ||streamen.com/exports/$third-party (easylist.txt: 31259) -.streamen.com/exports/ -# ||steadybucks.com^*/banners/ (easylist.txt: 31258) -.steadybucks.com/.*/banners/ -# ||sponsor4cash.de/script/ (easylist.txt: 31257) -.sponsor4cash.de/script/ -# ||spacash.com/tools/peel/ (easylist.txt: 31256) -.spacash.com/tools/peel/ -# ||spacash.com/popup/$third-party (easylist.txt: 31255) -.spacash.com/popup/ -# ||spacash.com//v2bannerview.php? (easylist.txt: 31254) -# ||snrcash.com/profilerotator/$third-party (easylist.txt: 31253) -.snrcash.com/profilerotator/ -# ||smyw.org/smyw_anima_1.gif (easylist.txt: 31252) -.smyw.org/smyw_anima_1\.gif -# ||smartmovies.net/promo_$third-party (easylist.txt: 31251) -.smartmovies.net/promo_ -# ||slickcash.com/flash/subtitles_$third-party (easylist.txt: 31250) -.slickcash.com/flash/subtitles_ -# ||sleepgalleries.com/recips/$third-party (easylist.txt: 31249) -.sleepgalleries.com/recips/ -# ||simonscans.com/banner/ (easylist.txt: 31248) -.simonscans.com/banner/ -# ||shinypics.com/blogbanner/$third-party (easylist.txt: 31247) -.shinypics.com/blogbanner/ -# ||shemalenova.com/smn/banners/ (easylist.txt: 31246) -.shemalenova.com/smn/banners/ -# ||shemale.asia/sma/banners/ (easylist.txt: 31245) -.shemale.asia/sma/banners/ -# ||shared.juicybucks.com^$third-party (easylist.txt: 31244) -.shared.juicybucks.com -# ||share-image.com/borky/ (easylist.txt: 31243) -.share-image.com/borky/ -# ||sexycams.com/exports/$third-party (easylist.txt: 31242) -.sexycams.com/exports/ -# ||sexy.fling.com^$third-party (easylist.txt: 31241) -.sexy.fling.com -# ||sextubepromo.com/ubr/ (easylist.txt: 31240) -.sextubepromo.com/ubr/ -# ||sextronix.com/images/$third-party (easylist.txt: 31239) -.sextronix.com/images/ -# ||sextronix.com/b/$third-party (easylist.txt: 31238) -.sextronix.com/b/ -# ||sextronix.*.cdnaccess.com^ (easylist.txt: 31237) -.sextronix.*./.*\.cdnaccess\.com[^\w%.-] -.sextronix.*.cdnaccess.com -# ||sexgangsters.com/sg-banners/ (easylist.txt: 31236) -.sexgangsters.com/sg-banners/ -# ||server140.com^$third-party (easylist.txt: 31235) -.server140.com -# ||screencapturewidget.aebn.net^$third-party (easylist.txt: 31234) -.screencapturewidget.aebn.net -# ||scoreland.com/banner/ (easylist.txt: 31233) -.scoreland.com/banner/ -# ||sakuralive.com/dynamicbanner/ (easylist.txt: 31232) -.sakuralive.com/dynamicbanner/ -# ||sadtube.com/chat/$script (easylist.txt: 31231) -.sadtube.com/chat/ -# ||saboom.com.pccdn.com^*/banner/ (easylist.txt: 31230) -.saboom.com.pccdn.com/.*/banner/ -# ||sabin.free.fr^$third-party (easylist.txt: 31229) -.sabin.free.fr -# ||s1magnettvcom.maynemyltf.netdna-cdn.com^ (easylist.txt: 31228) -.s1magnettvcom.maynemyltf.netdna-cdn.com -# ||russkoexxx.com/ban/$third-party (easylist.txt: 31227) -.russkoexxx.com/ban/ -# ||ruscams.com/promo/ (easylist.txt: 31226) -.ruscams.com/promo/ -# ||ruleclaim.web.fc2.com^$third-party (easylist.txt: 31225) -.ruleclaim.web.fc2.com -# ||rss.dtiserv.com^$third-party (easylist.txt: 31224) -.rss.dtiserv.com -# ||rough-sex-in-russia.com^*/webmaster/$third-party (easylist.txt: 31223) -.rough-sex-in-russia.com/.*/webmaster/ -# ||rotci.com/images/rotcibanner.png (easylist.txt: 31222) -.rotci.com/images/rotcibanner\.png -# ||rexcams.com/misc/iframes_new/ (easylist.txt: 31221) -.rexcams.com/misc/iframes_new/ -# ||resimler.randevum.com^$third-party (easylist.txt: 31220) -.resimler.randevum.com -# ||red-tube.com/dynbanner.php? (easylist.txt: 31219) -.red-tube.com/dynbanner\.php\? -# ||realitykings.com/vbanners/ (easylist.txt: 31218) -.realitykings.com/vbanners/ -# ||rawtubelive.com/exports/$third-party (easylist.txt: 31217) -.rawtubelive.com/exports/ -# ||rabbitporno.com/iframes/$third-party (easylist.txt: 31216) -.rabbitporno.com/iframes/ -# ||rabbitporno.com/friends/ (easylist.txt: 31215) -.rabbitporno.com/friends/ -# ||putana.cz/banners/ (easylist.txt: 31214) -.putana.cz/banners/ -# ||pussycash.com/content/banners/$third-party (easylist.txt: 31213) -.pussycash.com/content/banners/ -# ||punterlink.co.uk/images/storage/siteban$third-party (easylist.txt: 31212) -.punterlink.co.uk/images/storage/siteban -# ||ptcdn.mbicash.nl^$third-party (easylist.txt: 31211) -.ptcdn.mbicash.nl -# ||propbn.com/bonga/ (easylist.txt: 31210) -.propbn.com/bonga/ -# ||promos.wealthymen.com^$third-party (easylist.txt: 31209) -.promos.wealthymen.com -# ||promos.meetlocals.com^$third-party (easylist.txt: 31208) -.promos.meetlocals.com -# ||promos.gpniches.com^$third-party (easylist.txt: 31207) -.promos.gpniches.com -# ||promo1.webcams.nl^$third-party (easylist.txt: 31206) -.promo1.webcams.nl -# ||promo.pegcweb.com^$third-party (easylist.txt: 31205) -.promo.pegcweb.com -# ||promo.cams.com^$third-party (easylist.txt: 31204) -.promo.cams.com -# ||promo.blackcrush.com^$third-party (easylist.txt: 31203) -.promo.blackcrush.com -# ||profile.bharatmatrimony.com^$third-party (easylist.txt: 31202) -.profile.bharatmatrimony.com -# ||privatehomeclips.com/privatehomeclips.php?t_sid= (easylist.txt: 31201) -.privatehomeclips.com/privatehomeclips\.php\?t_sid= -# ||private.com/banner/ (easylist.txt: 31200) -.private.com/banner/ -# ||private.camz.$third-party (easylist.txt: 31199) -.private.camz.*. -# ||privatamateure.com/promotion/ (easylist.txt: 31198) -.privatamateure.com/promotion/ -# ||prettyincash.com/premade/$third-party (easylist.txt: 31196) -.prettyincash.com/premade/ -# ||potd.onlytease.com^$third-party (easylist.txt: 31195) -.potd.onlytease.com -# ||pornturbo.com^*.php?*&cmp=$subdocument,third-party (easylist.txt: 31194) -.pornturbo.com/.*\.php\?.*&cmp= -# ||pornturbo.com/*.php?g=$subdocument,third-party (easylist.txt: 31193) -.pornturbo.com/.*\.php\?g= -# ||pornstarnetwork.com^*_660x70.jpg (easylist.txt: 31192) -.pornstarnetwork.com/.*_660x70\.jpg -# ||pornravage.com/notification/$third-party (easylist.txt: 31191) -.pornravage.com/notification/ -# ||pornoh.info^$image,third-party (easylist.txt: 31190) -.pornoh.info -# ||pornhubpremium.com/relatedpremium/$subdocument,third-party (easylist.txt: 31189) -.pornhubpremium.com/relatedpremium/ -# ||porndeals.com^$subdocument,third-party (easylist.txt: 31188) -.porndeals.com -# ||porn2blog.com/wp-content/banners/ (easylist.txt: 31187) -.porn2blog.com/wp-content/banners/ -# ||pop6.com/javascript/im_box-*.js (easylist.txt: 31186) -.pop6.com/javascript/im_box-.*\.js -# ||pop6.com/banners/$third-party (easylist.txt: 31185) -.pop6.com/banners/ -# ||pop6.adultfriendfinder.com^$third-party (easylist.txt: 31184) -.pop6.adultfriendfinder.com -# ||pod.xpress.com^$third-party (easylist.txt: 31183) -.pod.xpress.com -# ||pod.manplay.com^$third-party (easylist.txt: 31182) -.pod.manplay.com -# ||plugin-x.com/rotaban/ (easylist.txt: 31181) -.plugin-x.com/rotaban/ -# ||pinkvisualgames.com/?revid=$third-party (easylist.txt: 31180) -.pinkvisualgames.com/\?revid= -# ||pcash.globalmailer5.com^$third-party (easylist.txt: 31179) -.pcash.globalmailer5.com -# ||paydir.com/images/bnr (easylist.txt: 31178) -.paydir.com/images/bnr -# ||partners.yobt.tv^$third-party (easylist.txt: 31177) -.partners.yobt.tv -# ||partners.yobt.com^$third-party (easylist.txt: 31176) -.partners.yobt.com -# ||partners.pornerbros.com^ (easylist.txt: 31175) -.partners.pornerbros.com -# ||partners.heart2heartnetwork.$third-party (easylist.txt: 31174) -.partners.heart2heartnetwork.*. -# ||partner.loveplanet.ru^$third-party (easylist.txt: 31173) -.partner.loveplanet.ru -# ||outils.f5biz.com^$third-party (easylist.txt: 31172) -.outils.f5biz.com -# ||otcash.com/images/$third-party (easylist.txt: 31171) -.otcash.com/images/ -# ||orgasmtube.com/js/superP/ (easylist.txt: 31170) -.orgasmtube.com/js/superP/ -# ||openadultdirectory.com/banner-$third-party (easylist.txt: 31169) -.openadultdirectory.com/banner- -# ||odnidoma.com/ban/$third-party (easylist.txt: 31168) -.odnidoma.com/ban/ -# ||nuvidp.com^$third-party (easylist.txt: 31167) -.nuvidp.com -# ||nudemix.com/widget/ (easylist.txt: 31166) -.nudemix.com/widget/ -# ||nude.hu/html/$third-party (easylist.txt: 31165) -.nude.hu/html/ -# ||nubiles.net/webmasters/promo/$third-party (easylist.txt: 31164) -.nubiles.net/webmasters/promo/ -# ||netvideogirls.com/adultfyi.jpg (easylist.txt: 31163) -.netvideogirls.com/adultfyi\.jpg -# ||naughtycdn.com/public/iframes/$third-party (easylist.txt: 31162) -.naughtycdn.com/public/iframes/ -# ||natuko-miracle.com/banner/$third-party (easylist.txt: 31161) -.natuko-miracle.com/banner/ -# ||nakedshygirls.com/bannerimg/ (easylist.txt: 31160) -.nakedshygirls.com/bannerimg/ -# ||naked.com/promos/$third-party (easylist.txt: 31159) -.naked.com/promos/ -# ||mysexjourney.com/revenue/$third-party (easylist.txt: 31158) -.mysexjourney.com/revenue/ -# ||mykocam.com/js/feeds.js$third-party (easylist.txt: 31157) -.mykocam.com/js/feeds\.js -# ||myfreakygf.com/www/click/$third-party (easylist.txt: 31156) -.myfreakygf.com/www/click/ -# ||myexposedgirlfriendz.com/pop/popuprk.js (easylist.txt: 31155) -.myexposedgirlfriendz.com/pop/popuprk\.js -# ||myexposedgirlfriendz.com/pop/popuppp.js (easylist.txt: 31154) -.myexposedgirlfriendz.com/pop/popuppp\.js -# ||mycams.com/freechat.php?$third-party (easylist.txt: 31153) -.mycams.com/freechat\.php\? -# ||my-dirty-hobby.com/?sub=$third-party (easylist.txt: 31152) -.my-dirty-hobby.com/\?sub= -# ||ms.wsex.com^$third-party (easylist.txt: 31151) -.ms.wsex.com -# ||mrvids.com/network/$third-party (easylist.txt: 31150) -.mrvids.com/network/ -# ||mrskincdn.com^*/flash/aff/$third-party (easylist.txt: 31149) -.mrskincdn.com/.*/flash/aff/ -# ||mrskin.com/affiliateframe/ (easylist.txt: 31148) -.mrskin.com/affiliateframe/ -# ||movies.spacash.com^*&th=180x135$script (easylist.txt: 31147) -.movies.spacash.com/.*&th=180x135 -# ||mofomedia.nl/pop-*.js (easylist.txt: 31146) -.mofomedia.nl/pop-.*\.js -# ||metartmoney.met-art.com^$third-party (easylist.txt: 31145) -.metartmoney.met-art.com -# ||metartmoney.com^$third-party (easylist.txt: 31144) -.metartmoney.com -# ||megacash.warpnet.com.br^$third-party (easylist.txt: 31143) -.megacash.warpnet.com.br -# ||media.pussycash.com^$third-party (easylist.txt: 31142) -.media.pussycash.com -# ||media.mykodial.com^$third-party (easylist.txt: 31141) -.media.mykodial.com -# ||media.mykocam.com^$third-party (easylist.txt: 31140) -.media.mykocam.com -# ||media.match.com^$third-party (easylist.txt: 31139) -.media.match.com -# ||media.eurolive.com^$third-party (easylist.txt: 31138) -.media.eurolive.com -# ||match.com/landing/$third-party (easylist.txt: 31137) -.match.com/landing/ -# ||map.pop6.com^$third-party (easylist.txt: 31136) -.map.pop6.com -# ||manhunt.net/?dm=$third-party (easylist.txt: 31135) -.manhunt.net/\?dm= -# ||manager.koocash.fr^$third-party (easylist.txt: 31134) -.manager.koocash.fr -# ||magazine-empire.com/images/pornstarad.jpg (easylist.txt: 31133) -.magazine-empire.com/images/pornstarad\.jpg -# ||loveme.com^$third-party (easylist.txt: 31132) -.loveme.com -# ||longmint.com/lm/banners/ (easylist.txt: 31131) -.longmint.com/lm/banners/ -# ||llnwd.net^*/takeover_ (easylist.txt: 31130) -.llnwd.net/.*/takeover_ -# ||livesexasian.com^$subdocument,third-party (easylist.txt: 31129) -.livesexasian.com -# ||links.freeones.com^$third-party (easylist.txt: 31127) -.links.freeones.com -# ||lb-69.com/pics/ (easylist.txt: 31126) -.lb-69.com/pics/ -# ||layers.spacash.com^$third-party (easylist.txt: 31125) -.layers.spacash.com -# ||latinteencash.com/potd/$third-party (easylist.txt: 31124) -.latinteencash.com/potd/ -# ||ladyboygoo.com/lbg/banners/ (easylist.txt: 31123) -.ladyboygoo.com/lbg/banners/ -# ||lacyx.com/images/banners/ (easylist.txt: 31122) -.lacyx.com/images/banners/ -# ||kuntfutube.com/bgbb.gif (easylist.txt: 31121) -.kuntfutube.com/bgbb\.gif -# ||kenny-glenn.net^*/longbanner_$third-party (easylist.txt: 31120) -.kenny-glenn.net/.*/longbanner_ -# ||kau.li/yad.js (easylist.txt: 31119) -.kau.li/yad\.js -# ||justcutegirls.com/banners/$third-party (easylist.txt: 31118) -.justcutegirls.com/banners/ -# ||just-nude.com/images/ban_$third-party (easylist.txt: 31117) -.just-nude.com/images/ban_ -# ||js.picsomania.info^$third-party (easylist.txt: 31116) -.js.picsomania.info -# ||ivitrine.buscape.com^$third-party (easylist.txt: 31115) -.ivitrine.buscape.com -# ||interracialbangblog.info^*-ban.png (easylist.txt: 31114) -.interracialbangblog.info/.*-ban\.png -# ||interracialbangblog.info/banner.jpg (easylist.txt: 31113) -.interracialbangblog.info/banner\.jpg -# ||imageteam.org/upload/big/2014/06/22/53a7181b378cb.png (easylist.txt: 31112) -.imageteam.org/upload/big/2014/06/22/53a7181b378cb\.png -# ||images.elenasmodels.com/Upload/$third-party (easylist.txt: 31111) -.images.elenasmodels.com/Upload/ -# ||image.nsk-sys.com^$third-party (easylist.txt: 31110) -.image.nsk-sys.com -# ||image.cecash.com^$third-party (easylist.txt: 31109) -.image.cecash.com -# ||ihookup.com/configcreatives/ (easylist.txt: 31108) -.ihookup.com/configcreatives/ -# ||ifriends.net^$subdocument,third-party (easylist.txt: 31107) -.ifriends.net -# ||iframes.hustler.com^$third-party (easylist.txt: 31106) -.iframes.hustler.com -# ||iframe.adultfriendfinder.com^$third-party (easylist.txt: 31105) -.iframe.adultfriendfinder.com -# ||hotsocialz.com^$third-party (easylist.txt: 31104) -.hotsocialz.com -# ||hotmovies.com/custom_videos.php? (easylist.txt: 31103) -.hotmovies.com/custom_videos\.php\? -# ||hotkinkyjo.xxx/resseler/banners/ (easylist.txt: 31102) -.hotkinkyjo.xxx/resseler/banners/ -# ||hotcaracum.com/banner/ (easylist.txt: 31101) -.hotcaracum.com/banner/ -# ||hosting24.com/images/banners/$third-party (easylist.txt: 31100) -.hosting24.com/images/banners/ -# ||hosted.x-art.com/potd$third-party (easylist.txt: 31099) -.hosted.x-art.com/potd -# ||hostave3.net/hvw/banners/ (easylist.txt: 31098) -.hostave3.net/hvw/banners/ -# ||hornypharaoh.com/banner_$third-party (easylist.txt: 31097) -.hornypharaoh.com/banner_ -# ||hornybirds.com^$subdocument,third-party (easylist.txt: 31096) -.hornybirds.com -# ||homoactive.tv/banner/ (easylist.txt: 31095) -.homoactive.tv/banner/ -# ||hodun.ru/files/promo/ (easylist.txt: 31094) -.hodun.ru/files/promo/ -# ||highrollercams.com/widgets/$third-party (easylist.txt: 31093) -.highrollercams.com/widgets/ -# ||hentaikey.com/images/banners/ (easylist.txt: 31092) -.hentaikey.com/images/banners/ -# ||hentaijunkie.com^*/banners/ (easylist.txt: 31091) -.hentaijunkie.com/.*/banners/ -# ||hdpornphotos.com/images/banner_ (easylist.txt: 31090) -.hdpornphotos.com/images/banner_ -# ||hdpornphotos.com/images/728x180_ (easylist.txt: 31089) -.hdpornphotos.com/images/728x180_ -# ||hardcoresexnow.com^$subdocument,third-party (easylist.txt: 31088) -.hardcoresexnow.com -# ||hardbritlads.com/banner/ (easylist.txt: 31087) -.hardbritlads.com/banner/ -# ||graphics.streamray.com^*/cams_live.swf$third-party (easylist.txt: 31086) -.graphics.streamray.com/.*/cams_live\.swf -# ||go2cdn.org/brand/$third-party (easylist.txt: 31084) -.go2cdn.org/brand/ -# ||girls-home-alone.com/dating/ (easylist.txt: 31083) -.girls-home-alone.com/dating/ -# ||gfrevenge.com/vbanners/ (easylist.txt: 31082) -.gfrevenge.com/vbanners/ -# ||geobanner.socialflirt.com^ (easylist.txt: 31081) -.geobanner.socialflirt.com -# ||geobanner.sexfinder.com^$third-party (easylist.txt: 31080) -.geobanner.sexfinder.com -# ||geobanner.fuckbookhookups.com^$third-party (easylist.txt: 31079) -.geobanner.fuckbookhookups.com -# ||geobanner.blacksexmatch.com^$third-party (easylist.txt: 31078) -.geobanner.blacksexmatch.com -# ||geobanner.alt.com^ (easylist.txt: 31077) -.geobanner.alt.com -# ||geobanner.adultfriendfinder.com^ (easylist.txt: 31076) -.geobanner.adultfriendfinder.com -# ||geo.frtya.com^ (easylist.txt: 31075) -.geo.frtya.com -# ||geo.cliphunter.com^ (easylist.txt: 31074) -.geo.cliphunter.com -# ||geo.camazon.com^$third-party (easylist.txt: 31073) -.geo.camazon.com -# ||gateway-banner.eravage.com^$third-party (easylist.txt: 31072) -.gateway-banner.eravage.com -# ||gammasites.com/pornication/pc_browsable.php? (easylist.txt: 31071) -.gammasites.com/pornication/pc_browsable\.php\? -# ||gallery.deskbabes.com^*.php?dir=*&ids=$third-party (easylist.txt: 31070) -.gallery.deskbabes.com/.*\.php\?dir=.*&ids= -# ||galleries.videosz.com^$object,third-party (easylist.txt: 31069) -.galleries.videosz.com -# ||galeriaseroticas.xpg.com.br^$third-party (easylist.txt: 31068) -.galeriaseroticas.xpg.com.br -# ||gagthebitch.com/track/$third-party (easylist.txt: 31067) -.gagthebitch.com/track/ -# ||fuckhub.net^*?pid=$third-party (easylist.txt: 31066) -.fuckhub.net/.*\?pid= -# ||freshnews.su/get_tizers.php? (easylist.txt: 31065) -.freshnews.su/get_tizers\.php\? -# ||freexxxvideoclip.aebn.net^ (easylist.txt: 31064) -.freexxxvideoclip.aebn.net -# ||freeporn.hu/banners/ (easylist.txt: 31063) -.freeporn.hu/banners/ -# ||freeonescams.com^$subdocument,third-party (easylist.txt: 31062) -.freeonescams.com -# ||freebbw.com/webcams.html$third-party (easylist.txt: 31061) -.freebbw.com/webcams\.html -# ||fleshlight.com/images/peel/ (easylist.txt: 31060) -.fleshlight.com/images/peel/ -# ||fleshlight.com/images/banners/ (easylist.txt: 31059) -.fleshlight.com/images/banners/ -# ||firestormmedia.tv^*?affid= (easylist.txt: 31058) -.firestormmedia.tv/.*\?affid= -# ||fgn.me^*/skins/ (easylist.txt: 31057) -.fgn.me/.*/skins/ -# ||ff.nsg.org.ua^ (easylist.txt: 31056) -.ff.nsg.org.ua -# ||femjoy.com/bnrs/$third-party (easylist.txt: 31055) -.femjoy.com/bnrs/ -# ||feeds.videosz.com^ (easylist.txt: 31054) -.feeds.videosz.com -# ||fckya.com/lj.js (easylist.txt: 31053) -.fckya.com/lj\.js -# ||fbooksluts.com^$subdocument,third-party (easylist.txt: 31052) -.fbooksluts.com -# ||fastcdn.me/mlr/ (easylist.txt: 31051) -.fastcdn.me/mlr/ -# ||fastcdn.me/js/snpp/ (easylist.txt: 31050) -.fastcdn.me/js/snpp/ -# ||fansign.streamray.com^$third-party (easylist.txt: 31049) -.fansign.streamray.com -# ||f5porn.com/porn.gif (easylist.txt: 31048) -.f5porn.com/porn\.gif -# ||extremeladyboys.com/elb/banners/ (easylist.txt: 31047) -.extremeladyboys.com/elb/banners/ -# ||exposedteencelebs.com/banner/$third-party (easylist.txt: 31046) -.exposedteencelebs.com/banner/ -# ||exposedemos.com/track/$third-party (easylist.txt: 31045) -.exposedemos.com/track/ -# ||evilangel.com/static/$third-party (easylist.txt: 31044) -.evilangel.com/static/ -# ||eurolive.com/index.php?module=public_eurolive_onlinetool& (easylist.txt: 31043) -.eurolive.com/index\.php\?module=public_eurolive_onlinetool& -# ||eurolive.com/?module=public_eurolive_onlinehostess& (easylist.txt: 31042) -.eurolive.com/\?module=public_eurolive_onlinehostess& -# ||escortforum.net/images/banners/$third-party (easylist.txt: 31041) -.escortforum.net/images/banners/ -# ||escortbook.com/banner_ (easylist.txt: 31040) -.escortbook.com/banner_ -# ||erotikdeal.com/?ref=$third-party (easylist.txt: 31039) -.erotikdeal.com/\?ref= -# ||eliterotica.com/images/banners/ (easylist.txt: 31038) -.eliterotica.com/images/banners/ -# ||dvdbox.com/promo/$third-party (easylist.txt: 31037) -.dvdbox.com/promo/ -# ||dump1.no-ip.biz^$third-party (easylist.txt: 31036) -.dump1.no-ip.biz -# ||downloadsmais.com/imagens/download-direto.gif (easylist.txt: 31035) -.downloadsmais.com/imagens/download-direto\.gif -# ||dom2xxx.com/ban/$third-party (easylist.txt: 31034) -.dom2xxx.com/ban/ -# ||devilgirls.co/pop.js (easylist.txt: 31033) -.devilgirls.co/pop\.js -# ||devilgirls.co/images/devil.gif (easylist.txt: 31032) -.devilgirls.co/images/devil\.gif -# ||desk.cmix.org^ (easylist.txt: 31031) -.desk.cmix.org -# ||ddstatic.com^*/banners/ (easylist.txt: 31030) -.ddstatic.com/.*/banners/ -# ||ddfcash.com/promo/banners/ (easylist.txt: 31029) -.ddfcash.com/promo/banners/ -# ||ddfcash.com/iframes/$third-party (easylist.txt: 31028) -.ddfcash.com/iframes/ -# ||datefree.com^$third-party (easylist.txt: 31027) -.datefree.com -# ||daredorm.com^$subdocument,third-party (easylist.txt: 31026) -.daredorm.com -# ||dailyvideo.securejoin.com^ (easylist.txt: 31025) -.dailyvideo.securejoin.com -# ||cs.exposedontape.com^$third-party (easylist.txt: 31024) -.cs.exposedontape.com -# ||cs.celebbusters.com^$third-party (easylist.txt: 31023) -.cs.celebbusters.com -# ||crocogirls.com/croco-new.js (easylist.txt: 31022) -.crocogirls.com/croco-new\.js -# ||creamgoodies.com/potd/ (easylist.txt: 31021) -.creamgoodies.com/potd/ -# ||cpm.amateurcommunity.com^ (easylist.txt: 31020) -.cpm.amateurcommunity.com -# ||cp.intl.match.com^$third-party (easylist.txt: 31019) -.cp.intl.match.com -# ||core.queerclick.com^$third-party (easylist.txt: 31018) -.core.queerclick.com -# ||contentcache-a.akamaihd.net^$third-party (easylist.txt: 31017) -.contentcache-a.akamaihd.net -# ||content.liveuniverse.com^$third-party (easylist.txt: 31016) -.content.liveuniverse.com -# ||cockfortwo.com/track/$third-party (easylist.txt: 31015) -.cockfortwo.com/track/ -# ||cmix.org/teasers/? (easylist.txt: 31014) -.cmix.org/teasers/\? -# ||closepics.com/media/banners/ (easylist.txt: 31013) -.closepics.com/media/banners/ -# ||clipjunkie.com/sftopbanner$third-party (easylist.txt: 31012) -.clipjunkie.com/sftopbanner -# ||clickz.lonelycheatingwives.com^$third-party (easylist.txt: 31011) -.clickz.lonelycheatingwives.com -# ||click.kink.com^$third-party (easylist.txt: 31010) -.click.kink.com -# ||click.absoluteagency.com^$third-party (easylist.txt: 31009) -.click.absoluteagency.com -# ||chaturbate.com/creative/ (easylist.txt: 31008) -.chaturbate.com/creative/ -# ||chaturbate.com/affiliates/ (easylist.txt: 31007) -.chaturbate.com/affiliates/ -# ||cdnjke.com^$third-party (easylist.txt: 31006) -.cdnjke.com -# ||cdncache2-a.akamaihd.net^$third-party (easylist.txt: 31005) -.cdncache2-a.akamaihd.net -# ||cdn.epom.com^*/940_250.gif (easylist.txt: 31004) -.cdn.epom.com/.*/940_250\.gif -# ||cash.femjoy.com^$third-party (easylist.txt: 31003) -.cash.femjoy.com -# ||cartoontube.com^$subdocument,third-party (easylist.txt: 31002) -.cartoontube.com -# ||camsrule.com/exports/$third-party (easylist.txt: 31001) -.camsrule.com/exports/ -# ||cams.spacash.com^$third-party (easylist.txt: 31000) -.cams.spacash.com -# ||cams.enjoy.be^$third-party (easylist.txt: 30999) -.cams.enjoy.be -# ||cams.com/p/cams/cpcs/streaminfo.cgi?$third-party (easylist.txt: 30998) -.cams.com/p/cams/cpcs/streaminfo\.cgi\? -# ||cams.com/go/$third-party (easylist.txt: 30997) -.cams.com/go/ -# ||camelmedia.net/thumbs/$third-party (easylist.txt: 30996) -.camelmedia.net/thumbs/ -# ||cache.worldfriends.tv^$third-party (easylist.txt: 30995) -.cache.worldfriends.tv -# ||bullz-eye.com/pictureofday/$third-party (easylist.txt: 30994) -.bullz-eye.com/pictureofday/ -# ||brazzers.com/ads/ (easylist.txt: 30993) -.brazzers.com/ads/ -# ||brasileirinhas.com.br/banners/ (easylist.txt: 30992) -.brasileirinhas.com.br/banners/ -# ||br.realitykings.com^ (easylist.txt: 30991) -.br.realitykings.com -# ||br.fling.com^ (easylist.txt: 30990) -.br.fling.com -# ||br.blackfling.com^ (easylist.txt: 30989) -.br.blackfling.com -# ||bongacash.com/tools/promo.php$third-party (easylist.txt: 30988) -.bongacash.com/tools/promo\.php -# ||bongacash.com/promo.php (easylist.txt: 30987) -.bongacash.com/promo\.php -# ||bongacash.com/dynamic_banner/ (easylist.txt: 30986) -.bongacash.com/dynamic_banner/ -# ||blogspot.com^*/ad.jpg (easylist.txt: 30985) -.blogspot.com/.*/ad\.jpg -# ||blackbrazilianshemales.com/bbs/banners/ (easylist.txt: 30984) -.blackbrazilianshemales.com/bbs/banners/ -# ||blaaaa12.googlecode.com^ (easylist.txt: 30983) -.blaaaa12.googlecode.com -# ||bigmovies.com/images/banners/ (easylist.txt: 30982) -.bigmovies.com/images/banners/ -# ||bbp.brazzers.com^$third-party (easylist.txt: 30981) -.bbp.brazzers.com -# ||bans.bride.ru^$third-party (easylist.txt: 30980) -.bans.bride.ru -# ||bannershotlink.perfectgonzo.com^ (easylist.txt: 30979) -.bannershotlink.perfectgonzo.com -# ||banners.webcams.com^$third-party (easylist.txt: 30978) -.banners.webcams.com -# ||banners.videosecrets.com^$third-party (easylist.txt: 30977) -.banners.videosecrets.com -# ||banners.rushcommerce.com^$third-party (easylist.txt: 30976) -.banners.rushcommerce.com -# ||banners.rude.com^$third-party (easylist.txt: 30975) -.banners.rude.com -# ||banners.penthouse.com^$third-party (easylist.txt: 30974) -.banners.penthouse.com -# ||banners.payserve.com^$third-party (easylist.txt: 30973) -.banners.payserve.com -# ||banners.passiondollars.com^$third-party (easylist.txt: 30972) -.banners.passiondollars.com -# ||banners.passion.com^$third-party (easylist.txt: 30971) -.banners.passion.com -# ||banners.outpersonals.com^$third-party (easylist.txt: 30970) -.banners.outpersonals.com -# ||banners.nostringsattached.com^$third-party (easylist.txt: 30969) -.banners.nostringsattached.com -# ||banners.fuckbookhookups.com^$third-party (easylist.txt: 30968) -.banners.fuckbookhookups.com -# ||banners.fastcupid.com^$third-party (easylist.txt: 30967) -.banners.fastcupid.com -# ||banners.blacksexmatch.com^$third-party (easylist.txt: 30966) -.banners.blacksexmatch.com -# ||banners.amigos.com^$third-party (easylist.txt: 30965) -.banners.amigos.com -# ||banners.alt.com^$third-party (easylist.txt: 30964) -.banners.alt.com -# ||banners.adultfriendfinder.com^$third-party (easylist.txt: 30963) -.banners.adultfriendfinder.com -# ||banners*.spacash.com^$third-party (easylist.txt: 30962) -.banners*./.*\.spacash\.com[^\w%.-] -.banners*.spacash.com -# ||banner.themediaplanets.com^$third-party (easylist.txt: 30961) -.banner.themediaplanets.com -# ||banner.resulthost.org^$third-party (easylist.txt: 30960) -.banner.resulthost.org -# ||banner.gasuki.com^$third-party (easylist.txt: 30959) -.banner.gasuki.com -# ||banner.69stream.com^$third-party (easylist.txt: 30958) -.banner.69stream.com -# ||babes.picrush.com^$third-party (easylist.txt: 30957) -.babes.picrush.com -# ||b.turbo.az^$third-party (easylist.txt: 30956) -.b.turbo.az -# ||avatraffic.com/b/ (easylist.txt: 30955) -.avatraffic.com/b/ -# ||atlasfiles.com^*/sp3_ep.js$third-party (easylist.txt: 30954) -.atlasfiles.com/.*/sp3_ep\.js -# ||assinclusive.com/linkstxt2.html (easylist.txt: 30953) -.assinclusive.com/linkstxt2\.html -# ||assinclusive.com/cyonix.html (easylist.txt: 30952) -.assinclusive.com/cyonix\.html -# ||asktiava.com/promotion/ (easylist.txt: 30951) -.asktiava.com/promotion/ -# ||asianbutterflies.com/potd/ (easylist.txt: 30950) -.asianbutterflies.com/potd/ -# ||ard.sweetdiscreet.com^ (easylist.txt: 30949) -.ard.sweetdiscreet.com -# ||animalsexfun.com/baner/ (easylist.txt: 30948) -.animalsexfun.com/baner/ -# ||ambya.com/potdc/ (easylist.txt: 30947) -.ambya.com/potdc/ -# ||amateurseite.com/banner/$third-party (easylist.txt: 30946) -.amateurseite.com/banner/ -# ||amateur.amarotic.com^$third-party (easylist.txt: 30945) -.amateur.amarotic.com -# ||amarotic.com^*?wmid=*&kamid=*&wsid=$third-party (easylist.txt: 30944) -.amarotic.com/.*\?wmid=.*&kamid=.*&wsid= -# ||amarotic.com/rotation/layer/chatpage/$third-party (easylist.txt: 30943) -.amarotic.com/rotation/layer/chatpage/ -# ||amarotic.com/Banner/$third-party (easylist.txt: 30942) -.amarotic.com/Banner/ -# ||alt.com/go/$third-party (easylist.txt: 30941) -.alt.com/go/ -# ||allanalpass.com/visitScript/ (easylist.txt: 30940) -.allanalpass.com/visitScript/ -# ||affiliates.thrixxx.com^ (easylist.txt: 30939) -.affiliates.thrixxx.com -# ||affiliates.franchisegator.com^$third-party (easylist.txt: 30938) -.affiliates.franchisegator.com -# ||affiliates.easydate.biz^$third-party (easylist.txt: 30937) -.affiliates.easydate.biz -# ||affiliates.cupidplc.com^$third-party (easylist.txt: 30936) -.affiliates.cupidplc.com -# ||affiliate.godaddy.com^$third-party (easylist.txt: 30935) -.affiliate.godaddy.com -# ||affiliate.dtiserv.com^$third-party (easylist.txt: 30934) -.affiliate.dtiserv.com -# ||affiliate.burn-out.tv^$third-party (easylist.txt: 30933) -.affiliate.burn-out.tv -# ||aff-jp.exshot.com^$third-party (easylist.txt: 30932) -.aff-jp.exshot.com -# ||aff-jp.dxlive.com^$third-party (easylist.txt: 30931) -.aff-jp.dxlive.com -# ||aebn.net/feed/$third-party (easylist.txt: 30930) -.aebn.net/feed/ -# ||aebn.net/banners/ (easylist.txt: 30929) -.aebn.net/banners/ -# ||adultporntubemovies.com/images/banners/ (easylist.txt: 30928) -.adultporntubemovies.com/images/banners/ -# ||adultfriendfinder.com/piclist?$third-party (easylist.txt: 30927) -.adultfriendfinder.com/piclist\? -# ||adultfriendfinder.com/javascript/$third-party (easylist.txt: 30926) -.adultfriendfinder.com/javascript/ -# ||adultfriendfinder.com/images/banners/$third-party (easylist.txt: 30925) -.adultfriendfinder.com/images/banners/ -# ||adultfriendfinder.com/go/$third-party (easylist.txt: 30924) -.adultfriendfinder.com/go/ -# ||adultfax.com/service/vsab.php? (easylist.txt: 30923) -.adultfax.com/service/vsab\.php\? -# ||adultdvd.com/plugins/*/store.html$third-party (easylist.txt: 30922) -.adultdvd.com/plugins/.*/store\.html -# ||adtools2.amakings.com^$third-party (easylist.txt: 30921) -.adtools2.amakings.com -# ||adtools.gossipkings.com^$third-party (easylist.txt: 30920) -.adtools.gossipkings.com -# ||adsrv.bangbros.com^$third-party (easylist.txt: 30919) -.adsrv.bangbros.com -# ||ads.videosz.com^ (easylist.txt: 30918) -.ads.videosz.com -# ||ads.contentabc.com^$third-party (easylist.txt: 30917) -.ads.contentabc.com -# ||adb.fling.com^$third-party (easylist.txt: 30916) -.adb.fling.com -# ||ad.traffmonster.info^$third-party (easylist.txt: 30915) -.ad.traffmonster.info -# ||ad.iloveinterracial.com^ (easylist.txt: 30914) -.ad.iloveinterracial.com -# ||ad.favod.net^$third-party (easylist.txt: 30913) -.ad.favod.net -# ||ad.duga.jp^ (easylist.txt: 30912) -.ad.duga.jp -# ||a.sucksex.com^$third-party (easylist.txt: 30911) -.a.sucksex.com -# ||91.83.237.41^*/banners/ (easylist.txt: 30910) -.91.83.237.41/.*/banners/ -# ||88.85.77.94/rotation/$third-party (easylist.txt: 30909) -.88.85.77.94/rotation/ -# ||79.120.183.166^*/banners/ (easylist.txt: 30907) -.79.120.183.166/.*/banners/ -# ||4tube.com/iframe/$third-party (easylist.txt: 30906) -.4tube.com/iframe/ -# ||213.174.140.76^*/js/msn.js (easylist.txt: 30905) -.213.174.140.76/.*/js/msn\.js -# ||213.174.140.76^*/js/msn-$script (easylist.txt: 30904) -.213.174.140.76/.*/js/msn- -# ||213.174.140.76^*/ads/ (easylist.txt: 30903) -.213.174.140.76/.*/ads/ -# ||213.174.140.76/js/showbanner4.js (easylist.txt: 30902) -.213.174.140.76/js/showbanner4\.js -# ||213.174.130.9/banners/ (easylist.txt: 30901) -.213.174.130.9/banners/ -# ||213.174.130.8/banners/ (easylist.txt: 30900) -.213.174.130.8/banners/ -# ||213.174.130.10/banners/ (easylist.txt: 30899) -.213.174.130.10/banners/ -# ||204.140.25.247/ads/ (easylist.txt: 30898) -.204.140.25.247/ads/ -# ||193.34.134.74^*/banners/ (easylist.txt: 30897) -.193.34.134.74/.*/banners/ -# ||193.34.134.18^*/banners/ (easylist.txt: 30896) -.193.34.134.18/.*/banners/ -# /exports/livemodel/?$subdocument (easylist.txt: 30895) -/(.*/)?exports/livemodel/\? -# .php?pub=*&trw_adblocker=$subdocument (easylist.txt: 30894) -/.*\.php\?pub=.*&trw_adblocker= -# ||wptpoker.com^$popup (easylist.txt: 30892) -.wptpoker.com -# ||withbinaryoptions.com^$popup,third-party (easylist.txt: 30891) -.withbinaryoptions.com -# ||with-binaryoption.com^$popup,third-party (easylist.txt: 30890) -.with-binaryoption.com -# ||widget.yavli.com^$popup,third-party (easylist.txt: 30889) -.widget.yavli.com -# ||weeklyprizewinner.com-net.info^$popup (easylist.txt: 30888) -.weeklyprizewinner.com-net.info -# ||wealth-at-home-millions.com^$popup,third-party (easylist.txt: 30887) -.wealth-at-home-millions.com -# ||virtuagirl.com/landing/$popup,third-party (easylist.txt: 30886) -.virtuagirl.com/landing/ -# ||vidds.net/?s=promo$popup,third-party (easylist.txt: 30885) -.vidds.net/\?s=promo -# ||usenet.nl^$popup (easylist.txt: 30884) -.usenet.nl -# ||urmediazone.com/play?ref=$popup,third-party (easylist.txt: 30883) -.urmediazone.com/play\?ref= -# ||urlcash.net/random*.php$popup (easylist.txt: 30882) -.urlcash.net/random.*\.php -# ||uploaded.net/ref/$popup (easylist.txt: 30881) -.uploaded.net/ref/ -# ||upbcd.info/vuze/$popup (easylist.txt: 30880) -.upbcd.info/vuze/ -# ||ul.to/ref/$popup (easylist.txt: 30879) -.ul.to/ref/ -# ||tripadvisor.*/HotelLander?$popup,third-party (easylist.txt: 30877) -.tripadvisor.*./(.*/)?HotelLander\? -# ||track.xtrasize.nl^$popup,third-party (easylist.txt: 30876) -.track.xtrasize.nl -# ||track.mypcbackup.com^$popup,third-party (easylist.txt: 30875) -.track.mypcbackup.com -# ||torntv-tvv.org^$popup,third-party (easylist.txt: 30874) -.torntv-tvv.org -# ||tipico.com^*?affiliateid=$popup,third-party (easylist.txt: 30873) -.tipico.com/.*\?affiliateid= -# ||thetraderinpajamas.com^$popup,third-party (easylist.txt: 30872) -.thetraderinpajamas.com -# ||theseforums.com^*/?ref=$popup (easylist.txt: 30871) -.theseforums.com/.*/\?ref= -# ||thebestbookies.com^$popup,third-party (easylist.txt: 30870) -.thebestbookies.com -# ||sunmaker.com^*^a_aid^$popup,third-party (easylist.txt: 30869) -.sunmaker.com/.*[^\w%.-]a_aid[^\w%.-] -# ||stargames.com/web/*&cid=*&pid=$popup,third-party (easylist.txt: 30868) -.stargames.com/web/.*&cid=.*&pid= -# ||stargames.com/bridge.asp?idr=$popup (easylist.txt: 30867) -.stargames.com/bridge\.asp\?idr= -# ||stake7.com^*?a_aid=$popup,third-party (easylist.txt: 30866) -.stake7.com/.*\?a_aid= -# ||softingo.com/clp/$popup (easylist.txt: 30865) -.softingo.com/clp/ -# ||sharecash.org^$popup,third-party (easylist.txt: 30864) -.sharecash.org -# ||settlecruise.org^$popup (easylist.txt: 30863) -.settlecruise.org -# ||serve.williamhillcasino.com^$popup,third-party (easylist.txt: 30862) -.serve.williamhillcasino.com -# ||serve.prestigecasino.com^$popup,third-party (easylist.txt: 30861) -.serve.prestigecasino.com -# ||secure.komli.com^$popup,third-party (easylist.txt: 30860) -.secure.komli.com -# ||roomkey.com/referrals?$popup,third-party (easylist.txt: 30859) -.roomkey.com/referrals\? -# ||rocketgames.com^$popup,third-party (easylist.txt: 30858) -.rocketgames.com -# ||red-tube.com/popunder/$popup (easylist.txt: 30857) -.red-tube.com/popunder/ -# ||record.sportsbetaffiliates.com.au^$popup,third-party (easylist.txt: 30856) -.record.sportsbetaffiliates.com.au -# ||rackcorp.com^$popup (easylist.txt: 30855) -.rackcorp.com -# ||pub.ezanga.com/rv2.php?$popup (easylist.txt: 30854) -.pub.ezanga.com/rv2\.php\? -# ||promo.xcasino.com/?$popup,third-party (easylist.txt: 30853) -.promo.xcasino.com/\? -# ||promo.galabingo.com^$popup,third-party (easylist.txt: 30852) -.promo.galabingo.com -# ||priceinfo.comuv.com^$popup (easylist.txt: 30851) -.priceinfo.comuv.com -# ||pokerstars.eu^*/?source=$popup,third-party (easylist.txt: 30850) -.pokerstars.eu/.*/\?source= -# ||platinumdown.com^$popup (easylist.txt: 30849) -.platinumdown.com -# ||planet49.com/cgi-bin/wingame.pl?$popup (easylist.txt: 30848) -.planet49.com/cgi-bin/wingame\.pl\? -# ||pc.thevideo.me^$popup,third-party (easylist.txt: 30847) -.pc.thevideo.me -# ||paid.outbrain.com/network/redir?$popup,third-party (easylist.txt: 30846) -.paid.outbrain.com/network/redir\? -# ||otvetus.com^$popup,third-party (easylist.txt: 30845) -.otvetus.com -# ||opendownloadmanager.com^$popup,third-party (easylist.txt: 30844) -.opendownloadmanager.com -# ||noowmedia.com^$popup (easylist.txt: 30843) -.noowmedia.com -# ||mypromocenter.com^$popup (easylist.txt: 30842) -.mypromocenter.com -# ||mp3ger.com^$popup,third-party (easylist.txt: 30841) -.mp3ger.com -# ||mgid.com^$popup,third-party (easylist.txt: 30840) -.mgid.com -# ||meme.smhlmao.com^$popup,third-party (easylist.txt: 30839) -.meme.smhlmao.com -# ||megacloud.com/signup?$popup,third-party (easylist.txt: 30838) -.megacloud.com/signup\? -# ||media.mybet.com/redirect.aspx?pid=*&bid=$popup,third-party (easylist.txt: 30837) -.media.mybet.com/redirect\.aspx\?pid=.*&bid= -# ||mcars.org/landing/$popup,third-party (easylist.txt: 30836) -.mcars.org/landing/ -# ||maxedtube.com/video_play?*&utm_campaign=$popup,third-party (easylist.txt: 30835) -.maxedtube.com/video_play\?.*&utm_campaign= -# ||makemoneyonline.2yu.in^$popup (easylist.txt: 30834) -.makemoneyonline.2yu.in -# ||lyricsbogie.com/?$popup,third-party (easylist.txt: 30833) -.lyricsbogie.com/\? -# ||lumosity.com/landing_pages/$popup (easylist.txt: 30832) -.lumosity.com/landing_pages/ -# ||lsbet.com/bonus/$popup,third-party (easylist.txt: 30831) -.lsbet.com/bonus/ -# ||lp.titanpoker.com^$popup,third-party (easylist.txt: 30830) -.lp.titanpoker.com -# ||lp.musicboxnewtab.com^$popup,third-party (easylist.txt: 30829) -.lp.musicboxnewtab.com -# ||lp.imesh.com/?$popup,third-party (easylist.txt: 30828) -.lp.imesh.com/\? -# ||lp.ilivid.com/?$popup,third-party (easylist.txt: 30827) -.lp.ilivid.com/\? -# ||lovepoker.de^*/?pid=$popup (easylist.txt: 30826) -.lovepoker.de/.*/\?pid= -# ||lovefilm.com/partners/$popup,third-party (easylist.txt: 30825) -.lovefilm.com/partners/ -# ||liutilities.com^*/affiliate/$popup (easylist.txt: 30824) -.liutilities.com/.*/affiliate/ -# ||i2casting.com^$popup,third-party (easylist.txt: 30822) -.i2casting.com -# ||hyperlinksecure.com/go/$popup (easylist.txt: 30821) -.hyperlinksecure.com/go/ -# ||hyperlinksecure.com/back?token=$popup (easylist.txt: 30820) -.hyperlinksecure.com/back\?token= -# ||house-rent.us^$popup,third-party (easylist.txt: 30819) -.house-rent.us -# ||homemadecelebrityporn.com/track/$popup,third-party (easylist.txt: 30818) -.homemadecelebrityporn.com/track/ -# ||hmn-net.com^*/xdirect/$popup,third-party (easylist.txt: 30817) -.hmn-net.com/.*/xdirect/ -# ||hetu.in^$popup,third-party (easylist.txt: 30816) -.hetu.in -# ||hdvidcodecs.com^$popup (easylist.txt: 30815) -.hdvidcodecs.com -# ||hdvid-codec.com^$popup (easylist.txt: 30814) -.hdvid-codec.com -# ||getsecuredfiles.com^$popup,third-party (easylist.txt: 30813) -.getsecuredfiles.com -# ||generic4all.com^*.dhtml?refid=$popup,third-party (easylist.txt: 30812) -.generic4all.com/.*\.dhtml\?refid= -# ||fwmrm.net/ad/$popup (easylist.txt: 30811) -.fwmrm.net/ad/ -# ||fulltiltpoker.com/affiliates/$popup,third-party (easylist.txt: 30810) -.fulltiltpoker.com/affiliates/ -# ||fulltiltpoker.com/?key=$popup,third-party (easylist.txt: 30809) -.fulltiltpoker.com/\?key= -# ||fsoft4down.com^$popup (easylist.txt: 30808) -.fsoft4down.com -# ||free-rewards.com-s.tv^$popup (easylist.txt: 30807) -.free-rewards.com-s.tv -# ||fleshlight.com/?link=$popup,third-party (easylist.txt: 30806) -.fleshlight.com/\?link= -# ||flashplayer-updates.com^$popup (easylist.txt: 30805) -.flashplayer-updates.com -# ||firstload.de^$popup (easylist.txt: 30804) -.firstload.de -# ||firstload.com^$popup (easylist.txt: 30803) -.firstload.com -# ||fastclick.net^$popup (easylist.txt: 30802) -.fastclick.net -# ||facebookcoverx.com^$popup,third-party (easylist.txt: 30801) -.facebookcoverx.com -# ||evanetwork.com^$popup (easylist.txt: 30800) -.evanetwork.com -# ||europacasino.com^$popup,third-party (easylist.txt: 30799) -.europacasino.com -# ||eurogrand.com^$popup (easylist.txt: 30798) -.eurogrand.com -# ||erotikdeal.com/advertising.html$popup,third-party (easylist.txt: 30797) -.erotikdeal.com/advertising\.html -# ||erotikdeal.com/?ref=$popup,third-party (easylist.txt: 30796) -.erotikdeal.com/\?ref= -# ||eroticmix.blogspot.$popup (easylist.txt: 30795) -.eroticmix.blogspot.*. -# ||dateoffer.net/?s=*&subid=$popup,third-party (easylist.txt: 30794) -.dateoffer.net/\?s=.*&subid= -# ||d1110e4.se^$popup (easylist.txt: 30793) -.d1110e4.se -# ||ctcautobody.com^$popup,third-party (easylist.txt: 30792) -.ctcautobody.com -# ||coolguruji.com/l.php?$popup (easylist.txt: 30791) -.coolguruji.com/l\.php\? -# ||clickansave.net^$popup,third-party (easylist.txt: 30790) -.clickansave.net -# ||click.scour.com^$popup,third-party (easylist.txt: 30789) -.click.scour.com -# ||chaturbate.com/affiliates/$popup,third-party (easylist.txt: 30788) -.chaturbate.com/affiliates/ -# ||chatulfetelor.net/$popup (easylist.txt: 30787) -.chatulfetelor.net -# ||chatlivejasmin.net^$popup (easylist.txt: 30786) -.chatlivejasmin.net -# ||cdnfarm18.com^$popup,third-party (easylist.txt: 30785) -.cdnfarm18.com -# ||cdn.optmd.com^$popup,third-party (easylist.txt: 30784) -.cdn.optmd.com -# ||casinoadviser.net^$popup (easylist.txt: 30783) -.casinoadviser.net -# ||casino.com^*?*=$popup,third-party (easylist.txt: 30782) -.casino.com/.*\?.*= -# ||casino-x.com^*?partner=$popup,third-party (easylist.txt: 30781) -.casino-x.com/.*\?partner= -# ||bovada.lv^$popup,third-party (easylist.txt: 30780) -.bovada.lv -# ||binaryoptions24h.com^$popup,third-party (easylist.txt: 30779) -.binaryoptions24h.com -# ||bet365.com^*affiliate=$popup (easylist.txt: 30778) -.bet365.com/.*affiliate= -# ||banner.galabingo.com^$popup,third-party (easylist.txt: 30777) -.banner.galabingo.com -# ||babylon.com/welcome/index.html?affID=$popup,third-party (easylist.txt: 30776) -.babylon.com/welcome/index\.html\?affID= -# ||babylon.com/redirects/$popup,third-party (easylist.txt: 30775) -.babylon.com/redirects/ -# ||amazing-offers.co.il^$popup,third-party (easylist.txt: 30774) -.amazing-offers.co.il -# ||aliexpress.com/?af=$popup,third-party (easylist.txt: 30773) -.aliexpress.com/\?af= -# ||affportal-lb.bevomedia.com^$popup,third-party (easylist.txt: 30772) -.affportal-lb.bevomedia.com -# ||affiliates.galapartners.co.uk^$popup,third-party (easylist.txt: 30771) -.affiliates.galapartners.co.uk -# ||adserving.unibet.com^$popup,third-party (easylist.txt: 30770) -.adserving.unibet.com -# ||adrotator.se^$popup (easylist.txt: 30769) -.adrotator.se -# ||admngronline.com^$popup,third-party (easylist.txt: 30768) -.admngronline.com -# ||adfoc.us/serve/$popup,third-party (easylist.txt: 30767) -.adfoc.us/serve/ -# ||6angebot.ch/?ref=$popup,third-party (easylist.txt: 30766) -.6angebot.ch/\?ref= -# ||5.39.67.191/promo.php?$popup (easylist.txt: 30765) -.5.39.67.191/promo\.php\? -# ||4utro.ru^$popup (easylist.txt: 30764) -.4utro.ru -# ||d1nmk7iw7hajjn.cloudfront.net^ (easylist.txt: 30762) -.d1nmk7iw7hajjn.cloudfront.net -# ||chronophotographie.science^$third-party (easylist.txt: 30761) -.chronophotographie.science -# ||iadc.qwapi.com^ (easylist.txt: 30759) -.iadc.qwapi.com -# ||zmh.zope.net^$third-party (easylist.txt: 30756) -.zmh.zope.net -# ||zip2save.com/widget.php? (easylist.txt: 30755) -.zip2save.com/widget\.php\? -# ||ziffstatic.com/jst/zdvtools. (easylist.txt: 30754) -.ziffstatic.com/jst/zdvtools\. -# ||ziffstatic.com/jst/zdsticky. (easylist.txt: 30753) -.ziffstatic.com/jst/zdsticky\. -# ||ziffprod.com/CSE/BestPrice? (easylist.txt: 30752) -.ziffprod.com/CSE/BestPrice\? -# ||ziffdavisenterprise.com/contextclicks/ (easylist.txt: 30751) -.ziffdavisenterprise.com/contextclicks/ -# ||zeusfiles.com/promo/ (easylist.txt: 30750) -.zeusfiles.com/promo/ -# ||zeus.qj.net^ (easylist.txt: 30749) -.zeus.qj.net -# ||zergnet.com^$third-party (easylist.txt: 30748) -.zergnet.com -# ||zazzle.com^*?rf$third-party (easylist.txt: 30747) -.zazzle.com/.*\?rf -# ||zazzle.com/utl/getpanel$third-party (easylist.txt: 30746) -.zazzle.com/utl/getpanel -# ||zapads.zapak.com^ (easylist.txt: 30745) -.zapads.zapak.com -# ||youinsure.co.za/frame/$third-party (easylist.txt: 30744) -.youinsure.co.za/frame/ -# ||you-cubez.com/images/banners/ (easylist.txt: 30743) -.you-cubez.com/images/banners/ -# ||yooclick.com^$subdocument,third-party (easylist.txt: 30742) -.yooclick.com -# ||yontoo.com^$subdocument,third-party (easylist.txt: 30741) -.yontoo.com -# ||ynet.co.il^*/ynetbanneradmin/ (easylist.txt: 30740) -.ynet.co.il/.*/ynetbanneradmin/ -# ||yimg.com^*/sponsored.js (easylist.txt: 30738) -.yimg.com/.*/sponsored\.js -# ||yimg.com^*/quickplay_maxwellhouse.png (easylist.txt: 30737) -.yimg.com/.*/quickplay_maxwellhouse\.png -# ||yimg.com/gs/apex/mediastore/ (easylist.txt: 30735) -.yimg.com/gs/apex/mediastore/ -# ||yieldmanager.edgesuite.net^$third-party (easylist.txt: 30734) -.yieldmanager.edgesuite.net -# ||yeas.yahoo.co.jp^ (easylist.txt: 30733) -.yeas.yahoo.co.jp -# ||yb.torchbrowser.com^ (easylist.txt: 30732) -.yb.torchbrowser.com -# ||yahoo.net^*/ads/ (easylist.txt: 30731) -.yahoo.net/.*/ads/ -# ||yachting.org^*/banner/ (easylist.txt: 30730) -.yachting.org/.*/banner/ -# ||xproxyhost.com/images/banners/ (easylist.txt: 30729) -.xproxyhost.com/images/banners/ -# ||xml.exactseek.com/cgi-bin/js-feed.cgi?$third-party (easylist.txt: 30728) -.xml.exactseek.com/cgi-bin/js-feed\.cgi\? -# ||xingcloud.com^*/uid_ (easylist.txt: 30727) -.xingcloud.com/.*/uid_ -# ||xigen.co.uk^*/Affiliate/ (easylist.txt: 30726) -.xigen.co.uk/.*/Affiliate/ -# ||xgaming.com/rotate*.php?$third-party (easylist.txt: 30725) -.xgaming.com/rotate.*\.php\? -# ||xcams.com/livecams/pub_collante/script.php?$third-party (easylist.txt: 30724) -.xcams.com/livecams/pub_collante/script\.php\? -# ||x3cms.com/ads/ (easylist.txt: 30723) -.x3cms.com/ads/ -# ||wupload.com/referral/$third-party (easylist.txt: 30722) -.wupload.com/referral/ -# ||wupload.com/images/banners/ (easylist.txt: 30721) -.wupload.com/images/banners/ -# ||wtprn.com/sponsors/ (easylist.txt: 30720) -.wtprn.com/sponsors/ -# ||wtpn.twenga.de^ (easylist.txt: 30718) -.wtpn.twenga.de -# ||wtpn.twenga.co.uk^ (easylist.txt: 30717) -.wtpn.twenga.co.uk -# ||wsockd.com^$third-party (easylist.txt: 30716) -.wsockd.com -# ||ws.amazon.*/widgets/$third-party (easylist.txt: 30715) -.ws.amazon.*./(.*/)?widgets/ -# ||wrapper.ign.com^$third-party (easylist.txt: 30714) -.wrapper.ign.com -# ||worldofjudaica.com/static/show/external/ (easylist.txt: 30712) -.worldofjudaica.com/static/show/external/ -# ||worldofjudaica.com/products/dynamic_banner/ (easylist.txt: 30711) -.worldofjudaica.com/products/dynamic_banner/ -# ||worldnow.com/images/incoming/RTJ/rtj201303fall.jpg (easylist.txt: 30710) -.worldnow.com/images/incoming/RTJ/rtj201303fall\.jpg -# ||worldcdn.net^*/banners/ (easylist.txt: 30709) -.worldcdn.net/.*/banners/ -# ||wonderlabs.com/affiliate_pro/banners/ (easylist.txt: 30708) -.wonderlabs.com/affiliate_pro/banners/ -# ||wm.co.za/wmjs.php? (easylist.txt: 30707) -.wm.co.za/wmjs\.php\? -# ||wm.co.za/24com.php? (easylist.txt: 30706) -.wm.co.za/24com\.php\? -# ||wishlistproducts.com/affiliatetools/$third-party (easylist.txt: 30705) -.wishlistproducts.com/affiliatetools/ -# ||winsms.co.za/banner/ (easylist.txt: 30704) -.winsms.co.za/banner/ -# ||winpalace.com/?affid= (easylist.txt: 30703) -.winpalace.com/\?affid= -# ||wildamaginations.com/mdm/banner/ (easylist.txt: 30702) -.wildamaginations.com/mdm/banner/ -# ||widgets.solaramerica.org^$third-party (easylist.txt: 30701) -.widgets.solaramerica.org -# ||widgets.realestate.com.au^ (easylist.txt: 30700) -.widgets.realestate.com.au -# ||widgets.progrids.com^$third-party (easylist.txt: 30699) -.widgets.progrids.com -# ||widgets.privateproperty.com.ng^$third-party (easylist.txt: 30698) -.widgets.privateproperty.com.ng -# ||widgets.mozo.com.au^$third-party (easylist.txt: 30697) -.widgets.mozo.com.au -# ||widgets.mobilelocalnews.com^$third-party (easylist.txt: 30696) -.widgets.mobilelocalnews.com -# ||widgets.itunes.apple.com^*&affiliate_id=$third-party (easylist.txt: 30695) -.widgets.itunes.apple.com/.*&affiliate_id= -# ||widgets.fie.futurecdn.net^$script (easylist.txt: 30694) -.widgets.fie.futurecdn.net -# ||widgets.adviceiq.com^$third-party (easylist.txt: 30693) -.widgets.adviceiq.com -# ||widgetcf.adviceiq.com^$third-party (easylist.txt: 30692) -.widgetcf.adviceiq.com -# ||widget.solarquotes.com.au^ (easylist.txt: 30691) -.widget.solarquotes.com.au -# ||widget.shopstyle.com/widget?pid=$subdocument,third-party (easylist.txt: 30690) -.widget.shopstyle.com/widget\?pid= -# ||widget.shopstyle.com.au^ (easylist.txt: 30689) -.widget.shopstyle.com.au -# ||widget.searchschoolsnetwork.com^ (easylist.txt: 30688) -.widget.searchschoolsnetwork.com -# ||widget.scoutpa.com^$third-party (easylist.txt: 30687) -.widget.scoutpa.com -# ||widget.raaze.com^ (easylist.txt: 30686) -.widget.raaze.com -# ||widget.kelkoo.com^ (easylist.txt: 30685) -.widget.kelkoo.com -# ||widget.jobberman.com^$third-party (easylist.txt: 30684) -.widget.jobberman.com -# ||widget.imshopping.com^$third-party (easylist.txt: 30683) -.widget.imshopping.com -# ||widget.crowdignite.com^ (easylist.txt: 30682) -.widget.crowdignite.com -# ||widget.cheki.com.ng^$third-party (easylist.txt: 30681) -.widget.cheki.com.ng -# ||widgeo.net/popup.js (easylist.txt: 30680) -.widgeo.net/popup\.js -# ||whistleout.s3.amazonaws.com^ (easylist.txt: 30679) -.whistleout.s3.amazonaws.com -# ||website.ws^*/banners/ (easylist.txt: 30678) -.website.ws/.*/banners/ -# ||webmasterrock.com/cpxt_pab (easylist.txt: 30677) -.webmasterrock.com/cpxt_pab -# ||webdev.co.zw/images/banners/$third-party (easylist.txt: 30676) -.webdev.co.zw/images/banners/ -# ||web2feel.com/images/$third-party (easylist.txt: 30675) -.web2feel.com/images/ -# ||web-jp.ad-v.jp^ (easylist.txt: 30674) -.web-jp.ad-v.jp -# ||weatherthreat.com^*/app_add.png (easylist.txt: 30673) -.weatherthreat.com/.*/app_add\.png -# ||wealthyrush.com^*/banners/$third-party (easylist.txt: 30672) -.wealthyrush.com/.*/banners/ -# ||watersoul.com^$subdocument,third-party (easylist.txt: 30671) -.watersoul.com -# ||watchme.com/track/$subdocument,third-party (easylist.txt: 30670) -.watchme.com/track/ -# ||watch-naruto.tv/images/$third-party (easylist.txt: 30669) -.watch-naruto.tv/images/ -# ||watch-free-movie-online.net/adds- (easylist.txt: 30668) -.watch-free-movie-online.net/adds- -# ||washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie.html (easylist.txt: 30667) -.washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie\.html -# ||warrantydirect.co.uk/widgets/ (easylist.txt: 30666) -.warrantydirect.co.uk/widgets/ -# ||warezhaven.org/warezhavenbann.jpg (easylist.txt: 30665) -.warezhaven.org/warezhavenbann\.jpg -# ||walmartimages.com^*/HealthPartner_ (easylist.txt: 30664) -.walmartimages.com/.*/HealthPartner_ -# ||wagital.com/Wagital-Ads.html (easylist.txt: 30663) -.wagital.com/Wagital-Ads\.html -# ||vxite.com/banner/ (easylist.txt: 30661) -.vxite.com/banner/ -# ||vuvuplaza.com^$subdocument,third-party (easylist.txt: 30660) -.vuvuplaza.com -# ||vrvm.com/t? (easylist.txt: 30659) -.vrvm.com/t\? -# ||vpnxs.nl/images/vpnxs_banner (easylist.txt: 30658) -.vpnxs.nl/images/vpnxs_banner -# ||vpntunnel.se/aff/$third-party (easylist.txt: 30657) -.vpntunnel.se/aff/ -# ||vpn4all.com^*/banner/ (easylist.txt: 30656) -.vpn4all.com/.*/banner/ -# ||voodoo.com^$third-party (easylist.txt: 30655) -.voodoo.com -# ||vittgam.net/images/b/ (easylist.txt: 30654) -.vittgam.net/images/b/ -# ||vitabase.com/images/relationships/$third-party (easylist.txt: 30653) -.vitabase.com/images/relationships/ -# ||visitorboost.com/images/$third-party (easylist.txt: 30652) -.visitorboost.com/images/ -# ||visit.homepagle.com^$third-party (easylist.txt: 30651) -.visit.homepagle.com -# ||virtuaguyhd.com/ref.php? (easylist.txt: 30650) -.virtuaguyhd.com/ref\.php\? -# ||virtuagirl.com/ref.php? (easylist.txt: 30649) -.virtuagirl.com/ref\.php\? -# ||virool.com/widgets/$third-party (easylist.txt: 30648) -.virool.com/widgets/ -# ||viglink.com/api/products^$third-party (easylist.txt: 30647) -.viglink.com/api/products[^\w%.-] -# ||viglink.com/api/optimize^$third-party (easylist.txt: 30646) -.viglink.com/api/optimize[^\w%.-] -# ||viglink.com/api/insert^$third-party (easylist.txt: 30645) -.viglink.com/api/insert[^\w%.-] -# ||viglink.com/api/batch^$third-party (easylist.txt: 30644) -.viglink.com/api/batch[^\w%.-] -# ||vidyoda.com/fambaa/chnls/ADSgmts.ashx? (easylist.txt: 30643) -.vidyoda.com/fambaa/chnls/ADSgmts\.ashx\? -# ||vidible.tv/prod/tags/ (easylist.txt: 30642) -.vidible.tv/prod/tags/ -# ||vidible.tv/placement/vast/ (easylist.txt: 30641) -.vidible.tv/placement/vast/ -# ||videozr.com^$third-party (easylist.txt: 30640) -.videozr.com -# ||videoweed.es/js/aff.js (easylist.txt: 30639) -.videoweed.es/js/aff\.js -# ||viagogo.co.uk/feeds/widget.ashx? (easylist.txt: 30638) -.viagogo.co.uk/feeds/widget\.ashx\? -# ||veospot.com^*.html (easylist.txt: 30637) -.veospot.com/.*\.html -# ||vendor1.fitschigogerl.com^ (easylist.txt: 30636) -.vendor1.fitschigogerl.com -# ||vdownloader.com/pages/$subdocument,third-party (easylist.txt: 30635) -.vdownloader.com/pages/ -# ||vcnewsdaily.com/images/vcnews_right_banner.gif (easylist.txt: 30634) -.vcnewsdaily.com/images/vcnews_right_banner\.gif -# ||vast.videe.tv/vast-proxy/ (easylist.txt: 30633) -.vast.videe.tv/vast-proxy/ -# ||valuechecker.co.uk/banners/$third-party (easylist.txt: 30632) -.valuechecker.co.uk/banners/ -# ||ussearch.com/preview/banner/ (easylist.txt: 30631) -.ussearch.com/preview/banner/ -# ||usfine.com/images/sty_img/usfine.gif (easylist.txt: 30630) -.usfine.com/images/sty_img/usfine\.gif -# ||usersfiles.com/images/72890UF.png (easylist.txt: 30629) -.usersfiles.com/images/72890UF\.png -# ||usenetbucket.com^*-banner/ (easylist.txt: 30628) -.usenetbucket.com/.*-banner/ -# ||usenet.pw^$third-party (easylist.txt: 30627) -.usenet.pw -# ||urtig.net/scripts/js3caf.js (easylist.txt: 30626) -.urtig.net/scripts/js3caf\.js -# ||uploadstation.com/images/banners/ (easylist.txt: 30625) -.uploadstation.com/images/banners/ -# ||uploaded.to/js/layer.js (easylist.txt: 30624) -.uploaded.to/js/layer\.js -# ||uploaded.to/img/public/$third-party (easylist.txt: 30623) -.uploaded.to/img/public/ -# ||uploaded.net/img/public/$third-party (easylist.txt: 30622) -.uploaded.net/img/public/ -# ||upload2.com/upload2.html (easylist.txt: 30621) -.upload2.com/upload2\.html -# ||upickem.net^*/affiliates/$third-party (easylist.txt: 30620) -.upickem.net/.*/affiliates/ -# ||unsereuni.at/resources/img/$third-party (easylist.txt: 30619) -.unsereuni.at/resources/img/ -# ||united-domains.de^*/parking/ (easylist.txt: 30618) -.united-domains.de/.*/parking/ -# ||united-domains.de/parking/ (easylist.txt: 30617) -.united-domains.de/parking/ -# ||uniblue.com^*/affiliates/ (easylist.txt: 30616) -.uniblue.com/.*/affiliates/ -# ||ultimatewebtraffic.info/images/fbautocash (easylist.txt: 30615) -.ultimatewebtraffic.info/images/fbautocash -# ||ukrd.com/images/icons/itunes.png (easylist.txt: 30614) -.ukrd.com/images/icons/itunes\.png -# ||ukrd.com/images/icons/amazon.png (easylist.txt: 30613) -.ukrd.com/images/icons/amazon\.png -# ||ukrd.com/image/*-160x160.png (easylist.txt: 30612) -.ukrd.com/image/.*-160x160\.png -# ||ukrd.com/image/*-160x133.jpg (easylist.txt: 30611) -.ukrd.com/image/.*-160x133\.jpg -# ||ukcast.tv/adds/ (easylist.txt: 30610) -.ukcast.tv/adds/ -# ||ubuntudeal.co.za^$subdocument,third-party (easylist.txt: 30609) -.ubuntudeal.co.za -# ||u-loader.com/image/hotspot_ (easylist.txt: 30608) -.u-loader.com/image/hotspot_ -# ||twivert.com/external/banner234x60. (easylist.txt: 30607) -.twivert.com/external/banner234x60\. -# ||twinplan.com^ (easylist.txt: 30606) -.twinplan.com -# ||turner.com^*/promos/ (easylist.txt: 30605) -.turner.com/.*/promos/ -# ||turbotrafficsystem.com^*/banners/ (easylist.txt: 30604) -.turbotrafficsystem.com/.*/banners/ -# ||turbobit.net/refers/$third-party (easylist.txt: 30603) -.turbobit.net/refers/ -# ||turbobit.net/ref/$third-party (easylist.txt: 30602) -.turbobit.net/ref/ -# ||ttt.co.uk/TMConverter/$third-party (easylist.txt: 30601) -.ttt.co.uk/TMConverter/ -# ||tshirthell.com/img/affiliate_section/$third-party (easylist.txt: 30600) -.tshirthell.com/img/affiliate_section/ -# ||trivago.co.uk/uk/srv/$third-party (easylist.txt: 30599) -.trivago.co.uk/uk/srv/ -# ||tritondigital.com/ltflash.php? (easylist.txt: 30598) -.tritondigital.com/ltflash\.php\? -# ||tritondigital.com/lt?sid*&hasads= (easylist.txt: 30597) -.tritondigital.com/lt\?sid.*&hasads= -# ||tribwgnam.files.wordpress.com^*reskin2. (easylist.txt: 30595) -.tribwgnam.files.wordpress.com/.*reskin2\. -# ||tribktla.files.wordpress.com/*-639x125-sponsorship.jpg? (easylist.txt: 30594) -.tribktla.files.wordpress.com/.*-639x125-sponsorship\.jpg\? -# ||trialpay.com^*&dw-ptid=$third-party (easylist.txt: 30593) -.trialpay.com/.*&dw-ptid= -# ||trialfunder.com/banner/ (easylist.txt: 30592) -.trialfunder.com/banner/ -# ||trhnt.com/sx.tr.js (easylist.txt: 30591) -.trhnt.com/sx\.tr\.js -# ||tremormedia.com^*_preroll_ (easylist.txt: 30590) -.tremormedia.com/.*_preroll_ -# ||tremormedia.com^*/tpacudeoplugin46.swf (easylist.txt: 30589) -.tremormedia.com/.*/tpacudeoplugin46\.swf -# ||tremormedia.com/embed/js/*_ads.js (easylist.txt: 30588) -.tremormedia.com/embed/js/.*_ads\.js -# ||treatme.co.nz/Affiliates/ (easylist.txt: 30587) -.treatme.co.nz/Affiliates/ -# ||travelmail.traveltek.net^$third-party (easylist.txt: 30585) -.travelmail.traveltek.net -# ||tradeboss.com/1/banners/ (easylist.txt: 30584) -.tradeboss.com/1/banners/ -# ||track.bcvcmedia.com^ (easylist.txt: 30583) -.track.bcvcmedia.com -# ||traceybell.co.uk^$subdocument,third-party (easylist.txt: 30582) -.traceybell.co.uk -# ||toysrus.com/graphics/promo/ (easylist.txt: 30581) -.toysrus.com/graphics/promo/ -# ||townsquareblogs.com^*=sponsor& (easylist.txt: 30580) -.townsquareblogs.com/.*=sponsor& -# ||townnews.com^*/upickem-deals.js? (easylist.txt: 30579) -.townnews.com/.*/upickem-deals\.js\? -# ||townnews.com^*/dealwidget.css? (easylist.txt: 30578) -.townnews.com/.*/dealwidget\.css\? -# ||tosol.co.uk/international.php?$third-party (easylist.txt: 30577) -.tosol.co.uk/international\.php\? -# ||torguard.net/images/aff/ (easylist.txt: 30576) -.torguard.net/images/aff/ -# ||toptenreviews.com/w/af_widget.js$third-party (easylist.txt: 30575) -.toptenreviews.com/w/af_widget\.js -# ||toptenreviews.com/r/c/ (easylist.txt: 30574) -.toptenreviews.com/r/c/ -# ||topmedia.com/external/ (easylist.txt: 30572) -.topmedia.com/external/ -# ||topbinaryaffiliates.ck-cdn.com^$third-party (easylist.txt: 30571) -.topbinaryaffiliates.ck-cdn.com -# ||top5result.com/promo/ (easylist.txt: 30570) -.top5result.com/promo/ -# ||tonefuse.s3.amazonaws.com/clientjs/ (easylist.txt: 30569) -.tonefuse.s3.amazonaws.com/clientjs/ -# ||todaysfinder.com^$subdocument,third-party (easylist.txt: 30568) -.todaysfinder.com -# ||tmz.vo.llnwd.net^*_rightrail_200x987.swf (easylist.txt: 30567) -.tmz.vo.llnwd.net/.*_rightrail_200x987\.swf -# ||tmbattle.com/images/promo_ (easylist.txt: 30566) -.tmbattle.com/images/promo_ -# ||tiqiq.com/Tiqiq/WidgetInactiveIFrame.aspx?WidgetID=*&PublisherID=$subdocument,third-party (easylist.txt: 30565) -.tiqiq.com/Tiqiq/WidgetInactiveIFrame\.aspx\?WidgetID=.*&PublisherID= -# ||tipico.*?affiliateId=$third-party (easylist.txt: 30564) -.tipico.*./.*\?affiliateId= -# ||tipico.*/affiliate/$third-party (easylist.txt: 30563) -.tipico.*./(.*/)?affiliate/ -# ||tinyurl.com/4x848hd$subdocument (easylist.txt: 30562) -.tinyurl.com/4x848hd -# ||timesinternet.in/ad/ (easylist.txt: 30561) -.timesinternet.in/ad/ -# ||tigerdirect.com^*/affiliate_ (easylist.txt: 30560) -.tigerdirect.com/.*/affiliate_ -# ||tickles.ie^$subdocument,third-party (easylist.txt: 30559) -.tickles.ie -# ||tickles.co.uk^$subdocument,third-party (easylist.txt: 30558) -.tickles.co.uk -# ||ticketmaster.com/promotionalcontent/ (easylist.txt: 30557) -.ticketmaster.com/promotionalcontent/ -# ||ticketkai.com/banner/ (easylist.txt: 30556) -.ticketkai.com/banner/ -# ||ti.tradetracker.net^ (easylist.txt: 30555) -.ti.tradetracker.net -# ||thirdpartycdn.lumovies.com^$third-party (easylist.txt: 30554) -.thirdpartycdn.lumovies.com -# ||thetechnologyblog.net^*/bp_internet/ (easylist.txt: 30553) -.thetechnologyblog.net/.*/bp_internet/ -# ||theselfdefenseco.com/?affid=$third-party (easylist.txt: 30552) -.theselfdefenseco.com/\?affid= -# ||theseforums.com/visitScript/ (easylist.txt: 30551) -.theseforums.com/visitScript/ -# ||theseblogs.com/visitScript/ (easylist.txt: 30550) -.theseblogs.com/visitScript/ -# ||thereadystore.com/affiliate/ (easylist.txt: 30549) -.thereadystore.com/affiliate/ -# ||themis-media.com^*/sponsorships/ (easylist.txt: 30548) -.themis-media.com/.*/sponsorships/ -# ||themify.me/banners/$third-party (easylist.txt: 30547) -.themify.me/banners/ -# ||themes420.com/bnrsbtns/ (easylist.txt: 30546) -.themes420.com/bnrsbtns/ -# ||thebigchair.com.au^$subdocument,third-party (easylist.txt: 30545) -.thebigchair.com.au -# ||theatm.info/images/$third-party (easylist.txt: 30544) -.theatm.info/images/ -# ||thatfreething.com/images/banners/ (easylist.txt: 30543) -.thatfreething.com/images/banners/ -# ||thaiforlove.com/userfiles/affb- (easylist.txt: 30542) -.thaiforlove.com/userfiles/affb- -# ||textlinks.com/images/banners/ (easylist.txt: 30541) -.textlinks.com/images/banners/ -# ||tedswoodworking.com/images/banners/ (easylist.txt: 30540) -.tedswoodworking.com/images/banners/ -# ||techbargains.com/scripts/banner.js$third-party (easylist.txt: 30539) -.techbargains.com/scripts/banner\.js -# ||techbargains.com/inc_iframe_deals_feed.cfm?$third-party (easylist.txt: 30538) -.techbargains.com/inc_iframe_deals_feed\.cfm\? -# ||tcmwebcorp.com/dtm/tc_global_dtm_delivery.js (easylist.txt: 30537) -.tcmwebcorp.com/dtm/tc_global_dtm_delivery\.js -# ||tap.more-results.net^ (easylist.txt: 30536) -.tap.more-results.net -# ||tankionline.com/tankiref.swf (easylist.txt: 30535) -.tankionline.com/tankiref\.swf -# ||talkfusion.com^*/banners/ (easylist.txt: 30534) -.talkfusion.com/.*/banners/ -# ||takeover.bauermedia.co.uk^$~stylesheet (easylist.txt: 30533) -.takeover.bauermedia.co.uk -# ||take2.co.za/misc/bannerscript.php? (easylist.txt: 30532) -.take2.co.za/misc/bannerscript\.php\? -# ||tag.regieci.com^$third-party (easylist.txt: 30531) -.tag.regieci.com -# ||syndication1.viraladnetwork.net^ (easylist.txt: 30530) -.syndication1.viraladnetwork.net -# ||syndication.visualthesaurus.com/std/vtad.js (easylist.txt: 30529) -.syndication.visualthesaurus.com/std/vtad\.js -# ||syndication.jsadapi.com^ (easylist.txt: 30528) -.syndication.jsadapi.com -# ||syndicate.payloadz.com^$third-party (easylist.txt: 30527) -.syndicate.payloadz.com -# ||swimg.net^*/banners/ (easylist.txt: 30526) -.swimg.net/.*/banners/ -# ||sweeva.com/widget.php?w=$third-party (easylist.txt: 30525) -.sweeva.com/widget\.php\?w= -# ||sweetwater.com/feature/$third-party (easylist.txt: 30524) -.sweetwater.com/feature/ -# ||sweed.to/affiliates/ (easylist.txt: 30523) -.sweed.to/affiliates/ -# ||sweed.to/?pid=$third-party (easylist.txt: 30522) -.sweed.to/\?pid= -# ||swarmjam.com^$script,third-party (easylist.txt: 30521) -.swarmjam.com -# ||svcs.ebay.com/services/search/FindingService/*^affiliate.tracking$third-party (easylist.txt: 30520) -.svcs.ebay.com/services/search/FindingService/.*[^\w%.-]affiliate\.tracking -# ||survivaltop50.com/wp-content/uploads/*/Survival215x150Link.png (easylist.txt: 30519) -.survivaltop50.com/wp-content/uploads/.*/Survival215x150Link\.png -# ||surveywriter.net^$script,third-party (easylist.txt: 30518) -.surveywriter.net -# ||surveymonkey.com/jspop.aspx?$third-party (easylist.txt: 30517) -.surveymonkey.com/jspop\.aspx\? -# ||survey.g.doubleclick.net^ (easylist.txt: 30516) -.survey.g.doubleclick.net -# ||surf100sites.com/images/banner_ (easylist.txt: 30515) -.surf100sites.com/images/banner_ -# ||supply.upjers.com^$third-party (easylist.txt: 30514) -.supply.upjers.com -# ||supersport.com/content/Sponsors (easylist.txt: 30513) -.supersport.com/content/Sponsors -# ||supersport.com/content/2014_Sponsor (easylist.txt: 30512) -.supersport.com/content/2014_Sponsor -# ||supersport.co.za^*180x254 (easylist.txt: 30511) -.supersport.co.za/.*180x254 -# ||superherostuff.com/pages/cbmpage.aspx?*&cbmid=$subdocument,third-party (easylist.txt: 30510) -.superherostuff.com/pages/cbmpage\.aspx\?.*&cbmid= -# ||subliminalmp3s.com^*/banners/ (easylist.txt: 30509) -.subliminalmp3s.com/.*/banners/ -# ||stylefind.com^*?campaign=$subdocument,third-party (easylist.txt: 30508) -.stylefind.com/.*\?campaign= -# ||stuff-nzwhistleout.s3.amazonaws.com^ (easylist.txt: 30507) -.stuff-nzwhistleout.s3.amazonaws.com -# ||structuredchannel.com/sw/swchannel/images/MarketingAssets/*/BannerAd (easylist.txt: 30506) -.structuredchannel.com/sw/swchannel/images/MarketingAssets/.*/BannerAd -# ||strikeadcdn.s3.amazonaws.com^$third-party (easylist.txt: 30505) -.strikeadcdn.s3.amazonaws.com -# ||streamtheworld.com/ondemand/creative? (easylist.txt: 30504) -.streamtheworld.com/ondemand/creative\? -# ||streamtheworld.com/ondemand/ars?type=preroll$object-subrequest (easylist.txt: 30503) -.streamtheworld.com/ondemand/ars\?type=preroll -# ||storage.to/affiliate/ (easylist.txt: 30502) -.storage.to/affiliate/ -# ||stats.sitesuite.org^ (easylist.txt: 30501) -.stats.sitesuite.org -# ||stats.hosting24.com^ (easylist.txt: 30500) -.stats.hosting24.com -# ||staticworld.net/images/*_skin_ (easylist.txt: 30499) -.staticworld.net/images/.*_skin_ -# ||static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2.jpg (easylist.txt: 30498) -.static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2\.jpg -# ||static.tradetracker.net^$third-party (easylist.txt: 30497) -.static.tradetracker.net -# ||static.multiplayuk.com/images/w/w- (easylist.txt: 30496) -.static.multiplayuk.com/images/w/w- -# ||static.criteo.net/js/duplo^$third-party (easylist.txt: 30495) -.static.criteo.net/js/duplo[^\w%.-] -# ||static.criteo.net/images^$third-party (easylist.txt: 30494) -.static.criteo.net/images[^\w%.-] -# ||static.criteo.net/flash^$third-party (easylist.txt: 30493) -.static.criteo.net/flash[^\w%.-] -# ||static.criteo.net/design^$third-party (easylist.txt: 30492) -.static.criteo.net/design[^\w%.-] -# ||static.criteo.com/js/duplo^$third-party (easylist.txt: 30491) -.static.criteo.com/js/duplo[^\w%.-] -# ||static.criteo.com/images^$third-party (easylist.txt: 30490) -.static.criteo.com/images[^\w%.-] -# ||static.criteo.com/flash^$third-party (easylist.txt: 30489) -.static.criteo.com/flash[^\w%.-] -# ||static.criteo.com/design^$third-party (easylist.txt: 30488) -.static.criteo.com/design[^\w%.-] -# ||static.*.criteo.net/js/duplo^$third-party (easylist.txt: 30487) -.static.*./.*\.criteo\.net/js/duplo[^\w%.-] -.static.*.criteo.net/js/duplo[^\w%.-] -# ||static.*.criteo.net/images^$third-party (easylist.txt: 30486) -.static.*./.*\.criteo\.net/images[^\w%.-] -.static.*.criteo.net/images[^\w%.-] -# ||static.*.criteo.net/flash^$third-party (easylist.txt: 30485) -.static.*./.*\.criteo\.net/flash[^\w%.-] -.static.*.criteo.net/flash[^\w%.-] -# ||static.*.criteo.net/design^$third-party (easylist.txt: 30484) -.static.*./.*\.criteo\.net/design[^\w%.-] -.static.*.criteo.net/design[^\w%.-] -# ||stargames.com/bridge.asp?$third-party (easylist.txt: 30483) -.stargames.com/bridge\.asp\? -# ||stalliongold.com/images/*x$third-party (easylist.txt: 30482) -.stalliongold.com/images/.*x -# ||stacksocial.com^*?aid=$third-party (easylist.txt: 30481) -.stacksocial.com/.*\?aid= -# ||stacksocial.com/bundles/$third-party (easylist.txt: 30480) -.stacksocial.com/bundles/ -# ||ssshoesss.ro/banners/ (easylist.txt: 30479) -.ssshoesss.ro/banners/ -# ||ssl-images-amazon.com/images/*/banner/$third-party (easylist.txt: 30478) -.ssl-images-amazon.com/images/.*/banner/ -# ||srwww1.com^*/affiliate/ (easylist.txt: 30477) -.srwww1.com/.*/affiliate/ -# ||srv.dynamicyield.com^$third-party (easylist.txt: 30475) -.srv.dynamicyield.com -# ||squarespace.evyy.net^ (easylist.txt: 30474) -.squarespace.evyy.net -# ||sproutnova.com/serve.php$third-party (easylist.txt: 30473) -.sproutnova.com/serve\.php -# ||sportsdigitalcontent.com/betting/ (easylist.txt: 30472) -.sportsdigitalcontent.com/betting/ -# ||sportsbetaffiliates.com.au^$third-party (easylist.txt: 30471) -.sportsbetaffiliates.com.au -# ||sportingbet.com.au/sbacontent/puntersparadise.html (easylist.txt: 30470) -.sportingbet.com.au/sbacontent/puntersparadise\.html -# ||sponsorandwin.com/images/banner- (easylist.txt: 30469) -.sponsorandwin.com/images/banner- -# ||splashpagemaker.com/images/$third-party (easylist.txt: 30468) -.splashpagemaker.com/images/ -# ||spilcdn.com/vda/vendor/flowplayer/ova.swf (easylist.txt: 30467) -.spilcdn.com/vda/vendor/flowplayer/ova\.swf -# ||spilcdn.com/vda/css/sgadfamily2.css (easylist.txt: 30466) -.spilcdn.com/vda/css/sgadfamily2\.css -# ||spilcdn.com/vda/css/sgadfamily.css (easylist.txt: 30465) -.spilcdn.com/vda/css/sgadfamily\.css -# ||speedtv.com.edgesuite.net/img/static/takeovers/ (easylist.txt: 30464) -.speedtv.com.edgesuite.net/img/static/takeovers/ -# ||speedppc.com^*/banners/ (easylist.txt: 30463) -.speedppc.com/.*/banners/ -# ||speedbit.com^*-banner1- (easylist.txt: 30462) -.speedbit.com/.*-banner1- -# ||softneo.com/popup.js (easylist.txt: 30461) -.softneo.com/popup\.js -# ||socialorganicleads.com/interstitial/ (easylist.txt: 30460) -.socialorganicleads.com/interstitial/ -# ||socialmonkee.com/images/$third-party (easylist.txt: 30459) -.socialmonkee.com/images/ -# ||sndkorea.nowcdn.co.kr^$third-party (easylist.txt: 30458) -.sndkorea.nowcdn.co.kr -# ||snapdeal.com^*.php$third-party (easylist.txt: 30457) -.snapdeal.com/.*\.php -# ||snacktools.net/bannersnack/ (easylist.txt: 30455) -.snacktools.net/bannersnack/ -# ||smilepk.com/bnrsbtns/ (easylist.txt: 30454) -.smilepk.com/bnrsbtns/ -# ||smartlinks.dianomi.com^$third-party (easylist.txt: 30453) -.smartlinks.dianomi.com -# ||smartdestinations.com/ai/$third-party (easylist.txt: 30452) -.smartdestinations.com/ai/ -# ||smart.styria-digital.com^ (easylist.txt: 30451) -.smart.styria-digital.com -# ||slysoft.com/img/banner/$third-party (easylist.txt: 30450) -.slysoft.com/img/banner/ -# ||slot.union.ucweb.com^ (easylist.txt: 30449) -.slot.union.ucweb.com -# ||slickdeals.meritline.com^$third-party (easylist.txt: 30448) -.slickdeals.meritline.com -# ||skydsl.eu/banner/$third-party (easylist.txt: 30447) -.skydsl.eu/banner/ -# ||sitescout-video-cdn.edgesuite.net^ (easylist.txt: 30446) -.sitescout-video-cdn.edgesuite.net -# ||sitegrip.com^*/swagbucks- (easylist.txt: 30445) -.sitegrip.com/.*/swagbucks- -# ||sitegiant.my/affiliate/$third-party (easylist.txt: 30444) -.sitegiant.my/affiliate/ -# ||site5.com/creative/*/234x60.gif (easylist.txt: 30443) -.site5.com/creative/.*/234x60\.gif -# ||site5.com/creative/$third-party (easylist.txt: 30442) -.site5.com/creative/ -# ||sisters-magazine.com/iframebanners/$third-party (easylist.txt: 30441) -.sisters-magazine.com/iframebanners/ -# ||sis.amazon.com/iu?$third-party (easylist.txt: 30440) -.sis.amazon.com/iu\? -# ||singlemuslim.com/affiliates/ (easylist.txt: 30439) -.singlemuslim.com/affiliates/ -# ||singlehop.com/affiliates/$third-party (easylist.txt: 30438) -.singlehop.com/affiliates/ -# ||simplyfwd.com/?dn=*&pid=$subdocument (easylist.txt: 30437) -.simplyfwd.com/\?dn=.*&pid= -# ||simplifydigital.co.uk^*/widget_premium_bb.htm (easylist.txt: 30436) -.simplifydigital.co.uk/.*/widget_premium_bb\.htm -# ||sidekickunlock.net/banner/ (easylist.txt: 30435) -.sidekickunlock.net/banner/ -# ||shragle.com^*?ref= (easylist.txt: 30434) -.shragle.com/.*\?ref= -# ||shows-tv.net/codepopup.js (easylist.txt: 30433) -.shows-tv.net/codepopup\.js -# ||shorte.st^*/referral_banners/ (easylist.txt: 30432) -.shorte.st/.*/referral_banners/ -# ||shorte.st/link-converter.min.js (easylist.txt: 30431) -.shorte.st/link-converter\.min\.js -# ||shopping.com/sc/pac/sdc_widget_v2.0_proxy.js$third-party (easylist.txt: 30430) -.shopping.com/sc/pac/sdc_widget_v2\.0_proxy\.js -# ||shopilize.com^$third-party (easylist.txt: 30429) -.shopilize.com -# ||shopbrazos.com/widgets/ (easylist.txt: 30428) -.shopbrazos.com/widgets/ -# ||shop4tech.com^*/banner/ (easylist.txt: 30427) -.shop4tech.com/.*/banner/ -# ||shop-top1000.com/images/ (easylist.txt: 30426) -.shop-top1000.com/images/ -# ||sharingzone.net/images/banner$third-party (easylist.txt: 30425) -.sharingzone.net/images/banner -# ||shariahprogram.ca/banners/ (easylist.txt: 30424) -.shariahprogram.ca/banners/ -# ||shareflare.net/images/$third-party (easylist.txt: 30423) -.shareflare.net/images/ -# ||shaadi.com^*/get-html-banner.php? (easylist.txt: 30422) -.shaadi.com/.*/get-html-banner\.php\? -# ||shaadi.com^*/get-banner.php? (easylist.txt: 30421) -.shaadi.com/.*/get-banner\.php\? -# ||sfstatic.com^*/js/fl.js$third-party (easylist.txt: 30420) -.sfstatic.com/.*/js/fl\.js -# ||sfm-offshore.com/images/banners/ (easylist.txt: 30419) -.sfm-offshore.com/images/banners/ -# ||sfimg.com/SFIBanners/ (easylist.txt: 30418) -.sfimg.com/SFIBanners/ -# ||sfimg.com/images/banners/ (easylist.txt: 30417) -.sfimg.com/images/banners/ -# ||sfcdn.in/sailfish/$script (easylist.txt: 30416) -.sfcdn.in/sailfish/ -# ||settleships.com^$third-party (easylist.txt: 30415) -.settleships.com -# ||service.smscoin.com/js/sendpic.js (easylist.txt: 30413) -.service.smscoin.com/js/sendpic\.js -# ||server4.pro/images/banner.jpg (easylist.txt: 30412) -.server4.pro/images/banner\.jpg -# ||server.freegamesall.com^$third-party (easylist.txt: 30411) -.server.freegamesall.com -# ||servedby.yell.com^$third-party (easylist.txt: 30410) -.servedby.yell.com -# ||servedby.keygamesnetwork.com^ (easylist.txt: 30409) -.servedby.keygamesnetwork.com -# ||selectperformers.com/images/elements/bannercolours/ (easylist.txt: 30408) -.selectperformers.com/images/elements/bannercolours/ -# ||selectperformers.com/images/a/ (easylist.txt: 30407) -.selectperformers.com/images/a/ -# ||seedsman.com/affiliate/$third-party (easylist.txt: 30406) -.seedsman.com/affiliate/ -# ||seedboxco.net/*.swf$third-party (easylist.txt: 30405) -.seedboxco.net/.*\.swf -# ||secureupload.eu/banners/ (easylist.txt: 30404) -.secureupload.eu/banners/ -# ||secureserver.net^*/event? (easylist.txt: 30403) -.secureserver.net/.*/event\? -# ||securep2p.com^$subdocument,third-party (easylist.txt: 30402) -.securep2p.com -# ||secretmedia.s3.amazonaws.com^ (easylist.txt: 30401) -.secretmedia.s3.amazonaws.com -# ||secondspin.com/twcontent/ (easylist.txt: 30400) -.secondspin.com/twcontent/ -# ||searchportal.information.com/?$third-party (easylist.txt: 30399) -.searchportal.information.com/\? -# ||scribol.com/txwidget$third-party (easylist.txt: 30398) -.scribol.com/txwidget -# ||screenconnect.com/miscellaneous/ScreenConnect-$image,third-party (easylist.txt: 30397) -.screenconnect.com/miscellaneous/ScreenConnect- -# ||scoopdragon.com/images/Goodgame-Empire-MPU.jpg (easylist.txt: 30396) -.scoopdragon.com/images/Goodgame-Empire-MPU\.jpg -# ||sciremedia.tv/images/banners/ (easylist.txt: 30395) -.sciremedia.tv/images/banners/ -# ||sciencecareers.org/widget/$third-party (easylist.txt: 30394) -.sciencecareers.org/widget/ -# ||schurzdigital.com/deals/widget/ (easylist.txt: 30393) -.schurzdigital.com/deals/widget/ -# ||schenkelklopfer.org^*pop.js (easylist.txt: 30392) -.schenkelklopfer.org/.*pop\.js -# ||satshop.tv/images/banner/$third-party (easylist.txt: 30391) -.satshop.tv/images/banner/ -# ||sat-shop.co.uk/images/$third-party (easylist.txt: 30390) -.sat-shop.co.uk/images/ -# ||salemwebnetwork.com/Stations/images/SiteWrapper/ (easylist.txt: 30389) -.salemwebnetwork.com/Stations/images/SiteWrapper/ -# ||salefile.googlecode.com^$third-party (easylist.txt: 30388) -.salefile.googlecode.com -# ||sailthru.com^*/horizon.js (easylist.txt: 30387) -.sailthru.com/.*/horizon\.js -# ||safarinow.com/affiliate-zone/ (easylist.txt: 30386) -.safarinow.com/affiliate-zone/ -# ||s3.amazonaws.com/draftset/banners/ (easylist.txt: 30385) -.s3.amazonaws.com/draftset/banners/ -# ||s1now.com^*/takeovers/ (easylist.txt: 30384) -.s1now.com/.*/takeovers/ -# ||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com^$third-party (easylist.txt: 30383) -.s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com -# ||s1.wp.com^$subdocument,third-party (easylist.txt: 30382) -.s1.wp.com -# ||s.cxt.ms^$third-party (easylist.txt: 30381) -.s.cxt.ms -# ||s-yoolk-billboard-assets.yoolk.com^ (easylist.txt: 30380) -.s-yoolk-billboard-assets.yoolk.com -# ||s-yoolk-banner-assets.yoolk.com^ (easylist.txt: 30379) -.s-yoolk-banner-assets.yoolk.com -# ||s-assets.tp-cdn.com/widgets/*/vwid/*.html? (easylist.txt: 30378) -.s-assets.tp-cdn.com/widgets/.*/vwid/.*\.html\? -# ||rya.rockyou.com^$third-party (easylist.txt: 30377) -.rya.rockyou.com -# ||russian-dreams.net/static/js/$third-party (easylist.txt: 30376) -.russian-dreams.net/static/js/ -# ||runerich.com/images/sty_img/runerich.gif (easylist.txt: 30374) -.runerich.com/images/sty_img/runerich\.gif -# ||rover.ebay.com^*&adtype=$third-party (easylist.txt: 30373) -.rover.ebay.com/.*&adtype= -# ||rotator.tradetracker.net^ (easylist.txt: 30372) -.rotator.tradetracker.net -# ||rotabanner.kulichki.net^ (easylist.txt: 30371) -.rotabanner.kulichki.net -# ||roshantv.com/adad. (easylist.txt: 30370) -.roshantv.com/adad\. -# ||roshansports.com/iframe.php (easylist.txt: 30369) -.roshansports.com/iframe\.php -# ||roia.hutchmedia.com^$third-party (easylist.txt: 30368) -.roia.hutchmedia.com -# ||roadrecord.co.uk/widget.js? (easylist.txt: 30367) -.roadrecord.co.uk/widget\.js\? -# ||roadcomponentsdb.com^$subdocument,third-party (easylist.txt: 30366) -.roadcomponentsdb.com -# ||richmedia.yahoo.com^$third-party (easylist.txt: 30365) -.richmedia.yahoo.com -# ||ribbon.india.com^$third-party (easylist.txt: 30364) -.ribbon.india.com -# ||rewards1.com/images/referralbanners/$third-party (easylist.txt: 30363) -.rewards1.com/images/referralbanners/ -# ||revealads.appspot.com^ (easylist.txt: 30362) -.revealads.appspot.com -# ||resources.heavenmedia.net/selection.php? (easylist.txt: 30361) -.resources.heavenmedia.net/selection\.php\? -# ||res3.feedsportal.com^ (easylist.txt: 30360) -.res3.feedsportal.com -# ||relink.us/images/$third-party (easylist.txt: 30358) -.relink.us/images/ -# ||rehost.to/?ref= (easylist.txt: 30357) -.rehost.to/\?ref= -# ||regnow.com/vendor/ (easylist.txt: 30356) -.regnow.com/vendor/ -# ||regmyudid.com^*/index.html$third-party (easylist.txt: 30355) -.regmyudid.com/.*/index\.html -# ||redtram.com^$script,third-party (easylist.txt: 30354) -.redtram.com -# ||redflagdeals.com/dealoftheday/widgets/$third-party (easylist.txt: 30353) -.redflagdeals.com/dealoftheday/widgets/ -# ||redbeacon.com/widget/$third-party (easylist.txt: 30352) -.redbeacon.com/widget/ -# ||red-tube.com^*.php?wmid=*&kamid=*&wsid=$third-party (easylist.txt: 30351) -.red-tube.com/.*\.php\?wmid=.*&kamid=.*&wsid= -# ||realwritingjobs.com^*/banners/ (easylist.txt: 30350) -.realwritingjobs.com/.*/banners/ -# ||readme.ru/informer/$third-party (easylist.txt: 30349) -.readme.ru/informer/ -# ||rdio.com/media/images/affiliate/$third-party (easylist.txt: 30348) -.rdio.com/media/images/affiliate/ -# ||rcm*.amazon.$third-party (easylist.txt: 30347) -.rcm*./.*\.amazon\. -.rcm*.amazon.*. -# ||rbth.ru/widget/$third-party (easylist.txt: 30346) -.rbth.ru/widget/ -# ||ratesupermarket.ca/widgets/ (easylist.txt: 30345) -.ratesupermarket.ca/widgets/ -# ||rapidjazz.com/banner_rotation/ (easylist.txt: 30344) -.rapidjazz.com/banner_rotation/ -# ||rapidgator.net/images/pics/*_300%D1%85250_ (easylist.txt: 30343) -.rapidgator.net/images/pics/.*_300%D1%85250_ -# ||radley.co.uk^*/Affiliate/ (easylist.txt: 30342) -.radley.co.uk/.*/Affiliate/ -# ||radiotown.com/splash/images/*_960x600_ (easylist.txt: 30341) -.radiotown.com/splash/images/.*_960x600_ -# ||radioshack.com^*/promo/ (easylist.txt: 30340) -.radioshack.com/.*/promo/ -# ||radioreference.com/sm/300x75_v3.jpg (easylist.txt: 30339) -.radioreference.com/sm/300x75_v3\.jpg -# ||radiocentre.ca/randomimages/$third-party (easylist.txt: 30338) -.radiocentre.ca/randomimages/ -# ||rack.bauermedia.co.uk^ (easylist.txt: 30333) -.rack.bauermedia.co.uk -# ||racebets.com/media.php? (easylist.txt: 30332) -.racebets.com/media\.php\? -# ||quirk.biz/webtracking/ (easylist.txt: 30331) -.quirk.biz/webtracking/ -# ||quickflix*.gridserver.com^$third-party (easylist.txt: 30330) -.quickflix*./.*\.gridserver\.com[^\w%.-] -.quickflix*.gridserver.com -# ||qualoo.net/now/interstitial/ (easylist.txt: 30329) -.qualoo.net/now/interstitial/ -# ||putlocker.com/images/banners/$third-party (easylist.txt: 30328) -.putlocker.com/images/banners/ -# ||purevpn.com/affiliates/ (easylist.txt: 30327) -.purevpn.com/affiliates/ -# ||puntersparadise.com.au/banners/ (easylist.txt: 30326) -.puntersparadise.com.au/banners/ -# ||pubs.hiddennetwork.com^ (easylist.txt: 30325) -.pubs.hiddennetwork.com -# ||public.porn.fr^$third-party (easylist.txt: 30324) -.public.porn.fr -# ||pub.sapo.pt/vast.php$object-subrequest (easylist.txt: 30323) -.pub.sapo.pt/vast\.php -# ||pub.dreamboxcart.com^$third-party (easylist.txt: 30322) -.pub.dreamboxcart.com -# ||pub.betclick.com^ (easylist.txt: 30321) -.pub.betclick.com -# ||pub.aujourdhui.com^$third-party (easylist.txt: 30320) -.pub.aujourdhui.com -# ||proxysolutions.net/affiliates/ (easylist.txt: 30319) -.proxysolutions.net/affiliates/ -# ||proxyroll.com/proxybanner.php (easylist.txt: 30318) -.proxyroll.com/proxybanner\.php -# ||proxynoid.com/images/referrals/ (easylist.txt: 30317) -.proxynoid.com/images/referrals/ -# ||proxy.org/blasts.gif (easylist.txt: 30316) -.proxy.org/blasts\.gif -# ||proxies2u.com/images/btn/$third-party (easylist.txt: 30315) -.proxies2u.com/images/btn/ -# ||propgoluxury.com/partners/$third-party (easylist.txt: 30314) -.propgoluxury.com/partners/ -# ||promotions.iasbet.com^ (easylist.txt: 30313) -.promotions.iasbet.com -# ||promote.pair.com^ (easylist.txt: 30312) -.promote.pair.com -# ||promos.fling.com^ (easylist.txt: 30311) -.promos.fling.com -# ||promo.musicradio.com^ (easylist.txt: 30310) -.promo.musicradio.com -# ||pro-gmedia.com^*/skins/ (easylist.txt: 30308) -.pro-gmedia.com/.*/skins/ -# ||prizerebel.com/images/banner$third-party (easylist.txt: 30307) -.prizerebel.com/images/banner -# ||privatewifi.com/swf/banners/ (easylist.txt: 30306) -.privatewifi.com/swf/banners/ -# ||print2webcorp.com/widgetcontent/ (easylist.txt: 30305) -.print2webcorp.com/widgetcontent/ -# ||primeloopstracking.com/affil/ (easylist.txt: 30304) -.primeloopstracking.com/affil/ -# ||priceinfo.comuv.com^ (easylist.txt: 30303) -.priceinfo.comuv.com -# ||pricegrabber.com/mlink3.php?$third-party (easylist.txt: 30302) -.pricegrabber.com/mlink3\.php\? -# ||pricegrabber.com/mlink.php?$third-party (easylist.txt: 30301) -.pricegrabber.com/mlink\.php\? -# ||pricegrabber.com/export_feeds.php?$third-party (easylist.txt: 30300) -.pricegrabber.com/export_feeds\.php\? -# ||pricegrabber.com/cb_table.php$third-party (easylist.txt: 30299) -.pricegrabber.com/cb_table\.php -# ||pricedinfo.com^$third-party (easylist.txt: 30298) -.pricedinfo.com -# ||premium.naturalnews.tv^$third-party (easylist.txt: 30297) -.premium.naturalnews.tv -# ||premium-template.com/banner/$third-party (easylist.txt: 30296) -.premium-template.com/banner/ -# ||ppc-coach.com/jamaffiliates/ (easylist.txt: 30295) -.ppc-coach.com/jamaffiliates/ -# ||postaffiliatepro.com^*/banners/$image (easylist.txt: 30294) -.postaffiliatepro.com/.*/banners/ -# ||post.rmbn.ru^$third-party (easylist.txt: 30293) -.post.rmbn.ru -# ||pornturbo.com/tmarket.php (easylist.txt: 30292) -.pornturbo.com/tmarket\.php -# ||pops.freeze.com^$third-party (easylist.txt: 30291) -.pops.freeze.com -# ||popmog.com^$third-party (easylist.txt: 30290) -.popmog.com -# ||popeoftheplayers.eu/ad (easylist.txt: 30289) -.popeoftheplayers.eu/ad -# ||pokerstars.com/euro_bnrs/ (easylist.txt: 30288) -.pokerstars.com/euro_bnrs/ -# ||pokerstars.com/?source=$subdocument,third-party (easylist.txt: 30287) -.pokerstars.com/\?source= -# ||pokersavvy.com^*/banners/ (easylist.txt: 30286) -.pokersavvy.com/.*/banners/ -# ||pokerroomkings.com^*/banner/$third-party (easylist.txt: 30285) -.pokerroomkings.com/.*/banner/ -# ||pokerjunkie.com/rss/ (easylist.txt: 30284) -.pokerjunkie.com/rss/ -# ||pm.web.com^$third-party (easylist.txt: 30283) -.pm.web.com -# ||plus.net/images/referrals/*_banner_$third-party (easylist.txt: 30282) -.plus.net/images/referrals/.*_banner_ -# ||plexidigest.com/plexidigest-300x300.jpg (easylist.txt: 30280) -.plexidigest.com/plexidigest-300x300\.jpg -# ||playfooty.tv/jojo.html (easylist.txt: 30279) -.playfooty.tv/jojo\.html -# ||player.screenwavemedia.com^*/ova-jw.swf$object-subrequest (easylist.txt: 30278) -.player.screenwavemedia.com/.*/ova-jw\.swf -# ||playata.myvideo.de^$subdocument,third-party (easylist.txt: 30277) -.playata.myvideo.de -# ||play-asia.com/paos-$third-party (easylist.txt: 30276) -.play-asia.com/paos- -# ||pics.firstload.de^$third-party (easylist.txt: 30275) -.pics.firstload.de -# ||picoasis.net/3xlayer.htm (easylist.txt: 30274) -.picoasis.net/3xlayer\.htm -# ||pic.pbsrc.com/hpto/ (easylist.txt: 30273) -.pic.pbsrc.com/hpto/ -# ||pianoteq.com/images/banners/ (easylist.txt: 30272) -.pianoteq.com/images/banners/ -# ||pianobuyer.com/pianoworld/ (easylist.txt: 30271) -.pianobuyer.com/pianoworld/ -# ||phonephotographytricks.com/images/banners/ (easylist.txt: 30270) -.phonephotographytricks.com/images/banners/ -# ||ph.hillcountrytexas.com/imp.php?$third-party (easylist.txt: 30268) -.ph.hillcountrytexas.com/imp\.php\? -# ||perfectmoney.com/img/banners/$third-party (easylist.txt: 30267) -.perfectmoney.com/img/banners/ -# ||perfectforex.biz/images/*x$third-party (easylist.txt: 30266) -.perfectforex.biz/images/.*x -# ||pearlriverusa.com/images/banner/ (easylist.txt: 30265) -.pearlriverusa.com/images/banner/ -# ||pdl.viaplay.com/commercials/$third-party (easylist.txt: 30264) -.pdl.viaplay.com/commercials/ -# ||pcmall.co.za/affiliates/ (easylist.txt: 30263) -.pcmall.co.za/affiliates/ -# ||pcash.imlive.com^$third-party (easylist.txt: 30262) -.pcash.imlive.com -# ||payza.com/images/banners/ (easylist.txt: 30261) -.payza.com/images/banners/ -# ||paytel.co.za/code/ref (easylist.txt: 30260) -.paytel.co.za/code/ref -# ||partners.xpertmarket.com^ (easylist.txt: 30259) -.partners.xpertmarket.com -# ||partners.vouchedfor.co.uk^ (easylist.txt: 30258) -.partners.vouchedfor.co.uk -# ||partners.sportingbet.com.au^ (easylist.txt: 30257) -.partners.sportingbet.com.au -# ||partners.rochen.com^ (easylist.txt: 30256) -.partners.rochen.com -# ||partners.optiontide.com^ (easylist.txt: 30255) -.partners.optiontide.com -# ||partners.fshealth.com^ (easylist.txt: 30254) -.partners.fshealth.com -# ||partners.dogtime.com/network/ (easylist.txt: 30253) -.partners.dogtime.com/network/ -# ||partners.betus.com^$third-party (easylist.txt: 30252) -.partners.betus.com -# ||partnerads1.ysm.yahoo.com^ (easylist.txt: 30251) -.partnerads1.ysm.yahoo.com -# ||partnerads.ysm.yahoo.com^ (easylist.txt: 30250) -.partnerads.ysm.yahoo.com -# ||partner.premiumdomains.com^ (easylist.txt: 30249) -.partner.premiumdomains.com -# ||partner.e-conomic.com^$third-party (easylist.txt: 30248) -.partner.e-conomic.com -# ||partner.catchy.com^ (easylist.txt: 30247) -.partner.catchy.com -# ||partner.bargaindomains.com^ (easylist.txt: 30246) -.partner.bargaindomains.com -# ||partner.alloy.com^$third-party (easylist.txt: 30245) -.partner.alloy.com -# ||pan.dogster.com^$third-party (easylist.txt: 30244) -.pan.dogster.com -# ||paidinvite.com/promo/ (easylist.txt: 30243) -.paidinvite.com/promo/ -# ||pagerage.com^$subdocument,third-party (easylist.txt: 30242) -.pagerage.com -# ||pagead2.googlesyndication.com^$~object-subrequest (easylist.txt: 30241) -.pagead2.googlesyndication.com -# ||padsdel.com^$third-party (easylist.txt: 30240) -.padsdel.com -# ||p.pw/banners/$third-party (easylist.txt: 30239) -.p.pw/banners/ -# ||oxygenboutique.com/Linkshare/ (easylist.txt: 30238) -.oxygenboutique.com/Linkshare/ -# ||ox-i.cordillera.tv^ (easylist.txt: 30237) -.ox-i.cordillera.tv -# ||ovpn.to/ovpn.to/banner/ (easylist.txt: 30236) -.ovpn.to/ovpn\.to/banner/ -# ||overseasradio.com/affbanner.php? (easylist.txt: 30235) -.overseasradio.com/affbanner\.php\? -# ||outdoorhub.com/js/_bookends.min.js (easylist.txt: 30234) -.outdoorhub.com/js/_bookends\.min\.js -# ||osobnosti.cz/images/casharena_ (easylist.txt: 30233) -.osobnosti.cz/images/casharena_ -# ||oriongadgets.com^*/banners/ (easylist.txt: 30232) -.oriongadgets.com/.*/banners/ -# ||origin.getprice.com.au/widgetnewssmall.aspx (easylist.txt: 30231) -.origin.getprice.com.au/widgetnewssmall\.aspx -# ||origin.getprice.com.au/WidgetNews.aspx (easylist.txt: 30230) -.origin.getprice.com.au/WidgetNews\.aspx -# ||organicprospects.com^*/banners/ (easylist.txt: 30229) -.organicprospects.com/.*/banners/ -# ||optimus-pm.com^*_300-250.jpg (easylist.txt: 30228) -.optimus-pm.com/.*_300-250\.jpg -# ||oovoo.com^*/banners/ (easylist.txt: 30227) -.oovoo.com/.*/banners/ -# ||onegameplace.com/iframe.php$third-party (easylist.txt: 30226) -.onegameplace.com/iframe\.php -# ||onecache.com/banner_ (easylist.txt: 30225) -.onecache.com/banner_ -# ||on.maxspeedcdn.com^ (easylist.txt: 30224) -.on.maxspeedcdn.com -# ||ojooo.com^*/banner_$third-party (easylist.txt: 30223) -.ojooo.com/.*/banner_ -# ||ojooo.com/register_f/$third-party (easylist.txt: 30222) -.ojooo.com/register_f/ -# ||oilofasia.com/images/banners/ (easylist.txt: 30221) -.oilofasia.com/images/banners/ -# ||office.eteachergroup.com/leads/$third-party (easylist.txt: 30220) -.office.eteachergroup.com/leads/ -# ||offerssyndication.appspot.com^$third-party (easylist.txt: 30219) -.offerssyndication.appspot.com -# ||offers-service.cbsinteractive.com^$third-party (easylist.txt: 30218) -.offers-service.cbsinteractive.com -# ||odin.goo.mx^ (easylist.txt: 30217) -.odin.goo.mx -# ||ocp.cbs.com/pacific/request.jsp? (easylist.txt: 30216) -.ocp.cbs.com/pacific/request\.jsp\? -# ||oclasrv.comindex-2.htmlapu.php^ (easylist.txt: 30215) -.oclasrv.comindex-2.htmlapu.php -# ||obox-design.com/affiliate-banners/ (easylist.txt: 30214) -.obox-design.com/affiliate-banners/ -# ||oasap.com/images/affiliate/ (easylist.txt: 30213) -.oasap.com/images/affiliate/ -# ||o2live.com^$third-party (easylist.txt: 30212) -.o2live.com -# ||nzpages.co.nz^*/banners/ (easylist.txt: 30211) -.nzpages.co.nz/.*/banners/ -# ||nwadealpiggy.com/widgets/ (easylist.txt: 30210) -.nwadealpiggy.com/widgets/ -# ||numb.hotshare.biz^$third-party (easylist.txt: 30209) -.numb.hotshare.biz -# ||nude.mk/images/$third-party (easylist.txt: 30208) -.nude.mk/images/ -# ||ntnd.net^*/store-buttons/ (easylist.txt: 30207) -.ntnd.net/.*/store-buttons/ -# ||nster.com/tpl/this/js/popnster.js (easylist.txt: 30206) -.nster.com/tpl/this/js/popnster\.js -# ||novadune.com^$third-party (easylist.txt: 30205) -.novadune.com -# ||nocookie.net^*/wikiasearchads.js (easylist.txt: 30204) -.nocookie.net/.*/wikiasearchads\.js -# ||nlsl.about.com/img?$third-party (easylist.txt: 30203) -.nlsl.about.com/img\? -# ||nitropdf.com/graphics/promo/$third-party (easylist.txt: 30202) -.nitropdf.com/graphics/promo/ -# ||nimblecommerce.com/widget.action? (easylist.txt: 30201) -.nimblecommerce.com/widget\.action\? -# ||newware.net/home/newware-sm.png$third-party (easylist.txt: 30200) -.newware.net/home/newware-sm\.png -# ||newware.net/home/banner$third-party (easylist.txt: 30199) -.newware.net/home/banner -# ||news-whistleout.s3.amazonaws.com^$third-party (easylist.txt: 30198) -.news-whistleout.s3.amazonaws.com -# ||networkice.com^$subdocument,third-party (easylist.txt: 30197) -.networkice.com -# ||network.business.com^ (easylist.txt: 30196) -.network.business.com -# ||network.aufeminin.com^ (easylist.txt: 30195) -.network.aufeminin.com -# ||nettvplus.com/images/banner_ (easylist.txt: 30194) -.nettvplus.com/images/banner_ -# ||netdigix.com/google_banners/ (easylist.txt: 30190) -.netdigix.com/google_banners/ -# ||nesgamezone.com/syndicate? (easylist.txt: 30189) -.nesgamezone.com/syndicate\? -# ||neogames-tech.com/resources/genericbanners/ (easylist.txt: 30188) -.neogames-tech.com/resources/genericbanners/ -# ||nanoinvestgroup.com/images/banner*.gif (easylist.txt: 30186) -.nanoinvestgroup.com/images/banner.*\.gif -# ||nanobrokers.com/img/banner_ (easylist.txt: 30185) -.nanobrokers.com/img/banner_ -# ||namecheap.com/graphics/linkus/$third-party (easylist.txt: 30184) -.namecheap.com/graphics/linkus/ -# ||n4g.com^*/IndieMonthSideBarWidget?$third-party (easylist.txt: 30183) -.n4g.com/.*/IndieMonthSideBarWidget\? -# ||n.nu/banner.js (easylist.txt: 30182) -.n.nu/banner\.js -# ||myvi.ru/feed/$object-subrequest (easylist.txt: 30180) -.myvi.ru/feed/ -# ||myusenet.net/promo.cgi? (easylist.txt: 30179) -.myusenet.net/promo\.cgi\? -# ||mytrafficstrategy.com/images/$third-party (easylist.txt: 30178) -.mytrafficstrategy.com/images/ -# ||myspace.com/play/myspace/*&locationId$third-party (easylist.txt: 30177) -.myspace.com/play/myspace/.*&locationId -# ||mylife.com/partner/$third-party (easylist.txt: 30176) -.mylife.com/partner/ -# ||myhpf.co.uk/banners/ (easylist.txt: 30175) -.myhpf.co.uk/banners/ -# ||myfreeshares.com/120x60b.gif (easylist.txt: 30174) -.myfreeshares.com/120x60b\.gif -# ||myfreeresources.com/getimg.php?$third-party (easylist.txt: 30173) -.myfreeresources.com/getimg\.php\? -# ||myfreepaysite.info^*.gif$third-party (easylist.txt: 30172) -.myfreepaysite.info/.*\.gif -# ||myezbz.com/marketplace/widget/$third-party (easylist.txt: 30171) -.myezbz.com/marketplace/widget/ -# ||mydownloader.net/banners/$third-party (easylist.txt: 30170) -.mydownloader.net/banners/ -# ||mybdhost.com/imgv2/$third-party (easylist.txt: 30168) -.mybdhost.com/imgv2/ -# ||myalter1tv.altervista.org^$subdocument,third-party (easylist.txt: 30167) -.myalter1tv.altervista.org -# ||my-dirty-hobby.com/track/$subdocument,third-party (easylist.txt: 30166) -.my-dirty-hobby.com/track/ -# ||my-best-jobs.com^$subdocument,third-party (easylist.txt: 30165) -.my-best-jobs.com -# ||musik-a-z.com^$subdocument,third-party (easylist.txt: 30164) -.musik-a-z.com -# ||musicmemorization.com/images/$third-party (easylist.txt: 30163) -.musicmemorization.com/images/ -# ||multivizyon.tv^*/flysatbanner.swf (easylist.txt: 30162) -.multivizyon.tv/.*/flysatbanner\.swf -# ||multisitelive.com^*/banner_ (easylist.txt: 30161) -.multisitelive.com/.*/banner_ -# ||mto.mediatakeout.com^$third-party (easylist.txt: 30160) -.mto.mediatakeout.com -# ||mt.sellingrealestatemalta.com^$third-party (easylist.txt: 30159) -.mt.sellingrealestatemalta.com -# ||msnbcmedia.msn.com^*/sponsors/ (easylist.txt: 30158) -.msnbcmedia.msn.com/.*/sponsors/ -# ||msm.mysavings.com^*.asp?afid=$third-party (easylist.txt: 30157) -.msm.mysavings.com/.*\.asp\?afid= -# ||msecnd.net/scripts/*.pop.$script (easylist.txt: 30156) -.msecnd.net/scripts/.*\.pop\. -# ||mrskincdn.com/data/uploader/affiliate/$script (easylist.txt: 30155) -.mrskincdn.com/data/uploader/affiliate/ -# ||mrc.org^*/take-over-charlotte300x250.gif (easylist.txt: 30154) -.mrc.org/.*/take-over-charlotte300x250\.gif -# ||mrc.org^*/Collusion_Banner300x250.jpg (easylist.txt: 30153) -.mrc.org/.*/Collusion_Banner300x250\.jpg -# ||mrc.org/sites/default/files/uploads/images/Collusion_Banner (easylist.txt: 30152) -.mrc.org/sites/default/files/uploads/images/Collusion_Banner -# ||mp3ix.com^$third-party (easylist.txt: 30151) -.mp3ix.com -# ||mozo-widgets.f2.com.au^ (easylist.txt: 30150) -.mozo-widgets.f2.com.au -# ||mosso.com^*/banners/ (easylist.txt: 30149) -.mosso.com/.*/banners/ -# ||moosify.com/widgets/explorer/?partner= (easylist.txt: 30148) -.moosify.com/widgets/explorer/\?partner= -# ||moneywise.co.uk/affiliate/ (easylist.txt: 30147) -.moneywise.co.uk/affiliate/ -# ||moneycontrol.com/share-market-game/$third-party (easylist.txt: 30146) -.moneycontrol.com/share-market-game/ -# ||moneycontrol.co.in^*PopUnder.js (easylist.txt: 30145) -.moneycontrol.co.in/.*PopUnder\.js -# ||mol.im/i/pix/ebay/ (easylist.txt: 30144) -.mol.im/i/pix/ebay/ -# ||mobyler.com/img/banner/ (easylist.txt: 30143) -.mobyler.com/img/banner/ -# ||mobilemetrics.appspot.com^$third-party (easylist.txt: 30142) -.mobilemetrics.appspot.com -# ||mnginteractive.com^*/dartinclude.js (easylist.txt: 30141) -.mnginteractive.com/.*/dartinclude\.js -# ||mmwebhandler.888.com^$third-party (easylist.txt: 30140) -.mmwebhandler.888.com -# ||mmosale.com/baner_images/$third-party (easylist.txt: 30139) -.mmosale.com/baner_images/ -# ||mmo4rpg.com^*.gif|$third-party (easylist.txt: 30138) -.mmo4rpg.com/.*\.gif$ -# ||mmdcash.com/mmdcash01.gif (easylist.txt: 30137) -.mmdcash.com/mmdcash01\.gif -# ||mlive.com/js/oas/ (easylist.txt: 30136) -.mlive.com/js/oas/ -# ||mkini.net/banners/ (easylist.txt: 30135) -.mkini.net/banners/ -# ||missnowmrs.com/images/banners/ (easylist.txt: 30134) -.missnowmrs.com/images/banners/ -# ||millionaires-club-international.com/banner/ (easylist.txt: 30133) -.millionaires-club-international.com/banner/ -# ||mightydeals.s3.amazonaws.com/md_adv/ (easylist.txt: 30131) -.mightydeals.s3.amazonaws.com/md_adv/ -# ||mightydeals.com/widgets/$third-party (easylist.txt: 30130) -.mightydeals.com/widgets/ -# ||mightydeals.com/widget?$third-party (easylist.txt: 30129) -.mightydeals.com/widget\? -# ||mightyape.co.nz/stuff/$third-party (easylist.txt: 30128) -.mightyape.co.nz/stuff/ -# ||microsoft.com^*/community/images/windowsintune/$third-party (easylist.txt: 30127) -.microsoft.com/.*/community/images/windowsintune/ -# ||microsoft.com^*/bannerrotator/$third-party (easylist.txt: 30126) -.microsoft.com/.*/bannerrotator/ -# ||mgprofit.com/images/*x$third-party (easylist.txt: 30125) -.mgprofit.com/images/.*x -# ||mgm.com/www/$third-party (easylist.txt: 30124) -.mgm.com/www/ -# ||mfeed.newzfind.com^$third-party (easylist.txt: 30123) -.mfeed.newzfind.com -# ||mfcdn.net/store/spotlight/ (easylist.txt: 30122) -.mfcdn.net/store/spotlight/ -# ||metroland.com/wagjag/ (easylist.txt: 30121) -.metroland.com/wagjag/ -# ||metaboli.fr^*/adgude_$third-party (easylist.txt: 30120) -.metaboli.fr/.*/adgude_ -# ||merdb.org/js/$script,third-party (easylist.txt: 30119) -.merdb.org/js/ -# ||meraad2.blogspot.com^$third-party (easylist.txt: 30118) -.meraad2.blogspot.com -# ||memepix.com/spark.php? (easylist.txt: 30117) -.memepix.com/spark\.php\? -# ||megalivestream.net/pub.js (easylist.txt: 30116) -.megalivestream.net/pub\.js -# ||mediaspanonline.com^*-Takeover_ (easylist.txt: 30115) -.mediaspanonline.com/.*-Takeover_ -# ||mediaspanonline.com^*-Takeover- (easylist.txt: 30114) -.mediaspanonline.com/.*-Takeover- -# ||mediaserver.digitec.ch^$subdocument,third-party (easylist.txt: 30113) -.mediaserver.digitec.ch -# ||mediaplex.com/ad/js/$third-party (easylist.txt: 30112) -.mediaplex.com/ad/js/ -# ||mediaplex.com/ad/fm/$third-party (easylist.txt: 30111) -.mediaplex.com/ad/fm/ -# ||mediaplex.com/ad/bn/$third-party (easylist.txt: 30110) -.mediaplex.com/ad/bn/ -# ||mediaon.com/moneymoney/ (easylist.txt: 30109) -.mediaon.com/moneymoney/ -# ||media.onlineteachers.co.in^$third-party (easylist.txt: 30108) -.media.onlineteachers.co.in -# ||media.netrefer.com^$third-party (easylist.txt: 30107) -.media.netrefer.com -# ||media.myspace.com/play/*/featured-videos-$third-party (easylist.txt: 30106) -.media.myspace.com/play/.*/featured-videos- -# ||media.enimgs.net/brand/files/escalatenetwork/ (easylist.txt: 30105) -.media.enimgs.net/brand/files/escalatenetwork/ -# ||media.domainking.ng/media/$third-party (easylist.txt: 30104) -.media.domainking.ng/media/ -# ||media.complex.com/videos/prerolls/ (easylist.txt: 30103) -.media.complex.com/videos/prerolls/ -# ||media-toolbar.com^$third-party (easylist.txt: 30102) -.media-toolbar.com -# ||mdpcdn.com^*/gpt/ (easylist.txt: 30101) -.mdpcdn.com/.*/gpt/ -# ||mcclatchyinteractive.com/creative/ (easylist.txt: 30100) -.mcclatchyinteractive.com/creative/ -# ||mcc.godaddy.com/park/$subdocument,third-party (easylist.txt: 30099) -.mcc.godaddy.com/park/ -# ||mb.zam.com^ (easylist.txt: 30098) -.mb.zam.com -# ||mb.marathonbet.com^$third-party (easylist.txt: 30097) -.mb.marathonbet.com -# ||mb-hostservice.de/banner_ (easylist.txt: 30096) -.mb-hostservice.de/banner_ -# ||mazda.com.au/banners/ (easylist.txt: 30095) -.mazda.com.au/banners/ -# ||maximainvest.net^$image,third-party (easylist.txt: 30094) -.maximainvest.net -# ||matrixmails.com/images/$third-party (easylist.txt: 30093) -.matrixmails.com/images/ -# ||matchbin.com/javascripts/remote_widget.js (easylist.txt: 30092) -.matchbin.com/javascripts/remote_widget\.js -# ||match.com^*/prm/$third-party (easylist.txt: 30091) -.match.com/.*/prm/ -# ||mastiway.com/webimages/$third-party (easylist.txt: 30090) -.mastiway.com/webimages/ -# ||marketing.888.com^ (easylist.txt: 30088) -.marketing.888.com -# ||marinejobs.gr/images/marine_adv.gif (easylist.txt: 30087) -.marinejobs.gr/images/marine_adv\.gif -# ||mantra.com.au^*/campaigns/$third-party (easylist.txt: 30086) -.mantra.com.au/.*/campaigns/ -# ||mahndi.com/images/banner/ (easylist.txt: 30085) -.mahndi.com/images/banner/ -# ||magniwork.com/banner/ (easylist.txt: 30084) -.magniwork.com/banner/ -# ||magicmembers.com/img/mgm-125x125 (easylist.txt: 30083) -.magicmembers.com/img/mgm-125x125 -# ||magicaffiliateplugin.com/img/mga-125x125.gif (easylist.txt: 30082) -.magicaffiliateplugin.com/img/mga-125x125\.gif -# ||mads.aol.com^ (easylist.txt: 30081) -.mads.aol.com -# ||madisonlogic.com^$third-party (easylist.txt: 30080) -.madisonlogic.com -# ||lynku.com/partners/$third-party (easylist.txt: 30077) -.lynku.com/partners/ -# ||lygo.com/d/toolbar/sponsors/ (easylist.txt: 30075) -.lygo.com/d/toolbar/sponsors/ -# ||lumfile.com/lumimage/ourbanner/$third-party (easylist.txt: 30074) -.lumfile.com/lumimage/ourbanner/ -# ||luckyshare.net/images/banners/ (easylist.txt: 30073) -.luckyshare.net/images/banners/ -# ||luckygunner.com^*/banners/ (easylist.txt: 30072) -.luckygunner.com/.*/banners/ -# ||lucky-dating.net/banners/ (easylist.txt: 30071) -.lucky-dating.net/banners/ -# ||lucky-ace-casino.net/banners/ (easylist.txt: 30070) -.lucky-ace-casino.net/banners/ -# ||ltfm.ca/stats.php? (easylist.txt: 30069) -.ltfm.ca/stats\.php\? -# ||lp.ncdownloader.com^$third-party (easylist.txt: 30068) -.lp.ncdownloader.com -# ||lp.longtailvideo.com^*/adaptv*.swf (easylist.txt: 30067) -.lp.longtailvideo.com/.*/adaptv.*\.swf -# ||lowcountrymarketplace.com/widgets/$third-party (easylist.txt: 30066) -.lowcountrymarketplace.com/widgets/ -# ||lowbird.com/random/$third-party (easylist.txt: 30065) -.lowbird.com/random/ -# ||lottoelite.com/banners/$third-party (easylist.txt: 30064) -.lottoelite.com/banners/ -# ||loot.co.za^*/banners/$third-party (easylist.txt: 30063) -.loot.co.za/.*/banners/ -# ||loot.co.za/shop/product.jsp?$third-party (easylist.txt: 30062) -.loot.co.za/shop/product\.jsp\? -# ||loopnet.com^*/searchwidget.htm$third-party (easylist.txt: 30061) -.loopnet.com/.*/searchwidget\.htm -# ||longtailvideo.com^*/yume.swf (easylist.txt: 30060) -.longtailvideo.com/.*/yume\.swf -# ||longtailvideo.com^*/yume-h.swf (easylist.txt: 30059) -.longtailvideo.com/.*/yume-h\.swf -# ||longtailvideo.com^*/ova-$object-subrequest (easylist.txt: 30058) -.longtailvideo.com/.*/ova- -# ||longtailvideo.com^*/ltas-$object-subrequest,third-party (easylist.txt: 30057) -.longtailvideo.com/.*/ltas- -# ||longtailvideo.com^*/googima.swf$object-subrequest,third-party (easylist.txt: 30056) -.longtailvideo.com/.*/googima\.swf -# ||longtailvideo.com^*/googima-$object-subrequest (easylist.txt: 30055) -.longtailvideo.com/.*/googima- -# ||longtailvideo.com^*/adawe-$object-subrequest,third-party (easylist.txt: 30054) -.longtailvideo.com/.*/adawe- -# ||longtailvideo.com^*/adaptvjw5.swf$object-subrequest (easylist.txt: 30053) -.longtailvideo.com/.*/adaptvjw5\.swf -# ||longtailvideo.com^*/adaptvjw5-$object-subrequest (easylist.txt: 30052) -.longtailvideo.com/.*/adaptvjw5- -# ||longtailvideo.com*/ltas.swf (easylist.txt: 30051) -.longtailvideo.com*./(.*/)?ltas\.swf -# ||london24.com^*/mpu/ (easylist.txt: 30050) -.london24.com/.*/mpu/ -# ||localdata.eu/images/banners/ (easylist.txt: 30049) -.localdata.eu/images/banners/ -# ||llnwd.net/o28/assets/*-sponsored- (easylist.txt: 30048) -.llnwd.net/o28/assets/.*-sponsored- -# ||liveshows.com^*/live.js$third-party (easylist.txt: 30047) -.liveshows.com/.*/live\.js -# ||liveperson.com/affiliates/ (easylist.txt: 30046) -.liveperson.com/affiliates/ -# ||liutilities.com^*/affiliate/ (easylist.txt: 30044) -.liutilities.com/.*/affiliate/ -# ||liutilities.com/partners/$third-party (easylist.txt: 30043) -.liutilities.com/partners/ -# ||literatureandlatte.com/gfx/buynowaffiliate.jpg (easylist.txt: 30042) -.literatureandlatte.com/gfx/buynowaffiliate\.jpg -# ||litecoinkamikaze.com/assets/images/banner$third-party (easylist.txt: 30041) -.litecoinkamikaze.com/assets/images/banner -# ||lionheartdms.com^*/walmart_300.jpg (easylist.txt: 30040) -.lionheartdms.com/.*/walmart_300\.jpg -# ||linkedin.com/csp/dtag?$subdocument,third-party (easylist.txt: 30039) -.linkedin.com/csp/dtag\? -# ||linkbird.com/static/upload/*/banner/$third-party (easylist.txt: 30038) -.linkbird.com/static/upload/.*/banner/ -# ||link.link.ru^$third-party (easylist.txt: 30037) -.link.link.ru -# ||lijit.com/delivery/ (easylist.txt: 30036) -.lijit.com/delivery/ -# ||lijit.com/adif_px.php (easylist.txt: 30035) -.lijit.com/adif_px\.php -# ||lifestyle24h.com/reward/$third-party (easylist.txt: 30034) -.lifestyle24h.com/reward/ -# ||lg.com/in/cinema3d.jsp$subdocument,third-party (easylist.txt: 30033) -.lg.com/in/cinema3d\.jsp -# ||letters.coursekey.com/lettertemplates_$third-party (easylist.txt: 30032) -.letters.coursekey.com/lettertemplates_ -# ||letmewatchthis.ru/movies/linkbottom (easylist.txt: 30031) -.letmewatchthis.ru/movies/linkbottom -# ||lessemf.com/images/banner-$third-party (easylist.txt: 30030) -.lessemf.com/images/banner- -# ||lesmeilleurs-jeux.net/images/ban/$third-party (easylist.txt: 30029) -.lesmeilleurs-jeux.net/images/ban/ -# ||lego.com^*/affiliate/ (easylist.txt: 30028) -.lego.com/.*/affiliate/ -# ||legitonlinejobs.com/images/$third-party (easylist.txt: 30027) -.legitonlinejobs.com/images/ -# ||legaljobscentre.com/feed/jobad.aspx (easylist.txt: 30026) -.legaljobscentre.com/feed/jobad\.aspx -# ||leadsleap.com/widget/ (easylist.txt: 30025) -.leadsleap.com/widget/ -# ||leadsleap.com/images/banner_ (easylist.txt: 30024) -.leadsleap.com/images/banner_ -# ||leadintelligence.co.uk/in-text.js$third-party (easylist.txt: 30023) -.leadintelligence.co.uk/in-text\.js -# ||lawdepot.com/affiliate/$third-party (easylist.txt: 30022) -.lawdepot.com/affiliate/ -# ||lastlocation.com/images/banner (easylist.txt: 30021) -.lastlocation.com/images/banner -# ||lapi.ebay.com^$third-party (easylist.txt: 30020) -.lapi.ebay.com -# ||ladbrokes.com^*&aff_id= (easylist.txt: 30019) -.ladbrokes.com/.*&aff_id= -# ||l.yimg.com^*&partner=*&url= (easylist.txt: 30018) -.l.yimg.com/.*&partner=.*&url= -# ||kurtgeiger.com^*/linkshare/ (easylist.txt: 30017) -.kurtgeiger.com/.*/linkshare/ -# ||krillion.com^*/productoffers.js (easylist.txt: 30016) -.krillion.com/.*/productoffers\.js -# ||kraken.giantrealm.com^$third-party (easylist.txt: 30015) -.kraken.giantrealm.com -# ||kozmetikcerrahi.com/banner/ (easylist.txt: 30014) -.kozmetikcerrahi.com/banner/ -# ||kontera.com/javascript/lib/KonaLibInline.js$third-party (easylist.txt: 30013) -.kontera.com/javascript/lib/KonaLibInline\.js -# ||knorex.asia/static-firefly/ (easylist.txt: 30012) -.knorex.asia/static-firefly/ -# ||king.com^*/banners/ (easylist.txt: 30011) -.king.com/.*/banners/ -# ||keyword-winner.com/demo/images/ (easylist.txt: 30010) -.keyword-winner.com/demo/images/ -# ||keep2share.cc/images/i/00468x0060- (easylist.txt: 30009) -.keep2share.cc/images/i/00468x0060- -# ||kaltura.com^*/vastPlugin.swf$third-party (easylist.txt: 30008) -.kaltura.com/.*/vastPlugin\.swf -# ||kallout.com^*.php?id= (easylist.txt: 30007) -.kallout.com/.*\.php\?id= -# ||kaango.com/fecustomwidgetdisplay? (easylist.txt: 30006) -.kaango.com/fecustomwidgetdisplay\? -# ||k2team.kyiv.ua^ (easylist.txt: 30005) -.k2team.kyiv.ua -# ||k.co.il/iefilter.html (easylist.txt: 30004) -.k.co.il/iefilter\.html -# ||k-po.com/img/ebay.png$third-party (easylist.txt: 30003) -.k-po.com/img/ebay\.png -# ||jvzoo.com/assets/widget/$third-party (easylist.txt: 30002) -.jvzoo.com/assets/widget/ -# ||justclicktowatch.to/jstp.js (easylist.txt: 30001) -.justclicktowatch.to/jstp\.js -# ||junction.co.za/widget/$third-party (easylist.txt: 30000) -.junction.co.za/widget/ -# ||jugglu.com/content/widgets/$third-party (easylist.txt: 29999) -.jugglu.com/content/widgets/ -# ||jubimax.com/banner_images/ (easylist.txt: 29998) -.jubimax.com/banner_images/ -# ||jsrdn.com/s/1.js (easylist.txt: 29997) -.jsrdn.com/s/1\.js -# ||jsfeedget.com^$script,third-party (easylist.txt: 29996) -.jsfeedget.com -# ||jrcdev.net/promos/ (easylist.txt: 29995) -.jrcdev.net/promos/ -# ||jocly.com^*.html?click=$subdocument,third-party (easylist.txt: 29994) -.jocly.com/.*\.html\?click= -# ||jobs-affiliates.ws/images/$third-party (easylist.txt: 29993) -.jobs-affiliates.ws/images/ -# ||joblet.jp/javascripts/$third-party (easylist.txt: 29992) -.joblet.jp/javascripts/ -# ||jivox.com/jivox/serverapis/getcampaignbyid.php?$object-subrequest (easylist.txt: 29991) -.jivox.com/jivox/serverapis/getcampaignbyid\.php\? -# ||jinx.com/content/banner/$third-party (easylist.txt: 29990) -.jinx.com/content/banner/ -# ||jeysearch.com^$subdocument,third-party (easylist.txt: 29989) -.jeysearch.com -# ||jenningsforddirect.co.uk/sitewide/extras/$third-party (easylist.txt: 29988) -.jenningsforddirect.co.uk/sitewide/extras/ -# ||jalbum.net/widgetapi/js/dlbutton.js? (easylist.txt: 29987) -.jalbum.net/widgetapi/js/dlbutton\.js\? -# ||iypcdn.com^*/ypbanners/ (easylist.txt: 29986) -.iypcdn.com/.*/ypbanners/ -# ||iypcdn.com^*/otherbanners/ (easylist.txt: 29985) -.iypcdn.com/.*/otherbanners/ -# ||iypcdn.com^*/bgbanners/ (easylist.txt: 29984) -.iypcdn.com/.*/bgbanners/ -# ||iwebzoo.com/banner/ (easylist.txt: 29983) -.iwebzoo.com/banner/ -# ||iselectmedia.com^*/banners/ (easylist.txt: 29982) -.iselectmedia.com/.*/banners/ -# ||ipixs.com/ban/$third-party (easylist.txt: 29981) -.ipixs.com/ban/ -# ||ipercast.net^*/ova-jw.swf$object-subrequest (easylist.txt: 29980) -.ipercast.net/.*/ova-jw\.swf -# ||iobit.com/partner/$third-party (easylist.txt: 29979) -.iobit.com/partner/ -# ||intexchange.ru/Content/banners/ (easylist.txt: 29978) -.intexchange.ru/Content/banners/ -# ||interstitial.glsp.netdna-cdn.com^$third-party (easylist.txt: 29977) -.interstitial.glsp.netdna-cdn.com -# ||interserver.net/logos/vps-$third-party (easylist.txt: 29976) -.interserver.net/logos/vps- -# ||internetbrands.com/partners/$third-party (easylist.txt: 29975) -.internetbrands.com/partners/ -# ||intermrkts.vo.llnwd.net^$third-party (easylist.txt: 29974) -.intermrkts.vo.llnwd.net -# ||integrityvpn.com/img/integrityvpn.jpg (easylist.txt: 29973) -.integrityvpn.com/img/integrityvpn\.jpg -# ||instaprofitgram.com/images/banners/ (easylist.txt: 29972) -.instaprofitgram.com/images/banners/ -# ||instantpaysites.com/banner/ (easylist.txt: 29971) -.instantpaysites.com/banner/ -# ||inskin.vo.llnwd.net^ (easylist.txt: 29970) -.inskin.vo.llnwd.net -# ||inline.playbryte.com^$third-party (easylist.txt: 29969) -.inline.playbryte.com -# ||init.lingospot.com^$third-party (easylist.txt: 29968) -.init.lingospot.com -# ||inisrael-travel.com/jpost/ (easylist.txt: 29967) -.inisrael-travel.com/jpost/ -# ||infomarine.gr^*/images/banners/ (easylist.txt: 29966) -.infomarine.gr/.*/images/banners/ -# ||infomarine.gr/images/banerr.gif (easylist.txt: 29965) -.infomarine.gr/images/banerr\.gif -# ||infochoice.com.au/Handler/WidgetV2Handler.ashx? (easylist.txt: 29964) -.infochoice.com.au/Handler/WidgetV2Handler\.ashx\? -# ||infibeam.com/affiliate/$third-party (easylist.txt: 29963) -.infibeam.com/affiliate/ -# ||indieclick.3janecdn.com^ (easylist.txt: 29962) -.indieclick.3janecdn.com -# ||indian-forex.com^*/banners/$third-party (easylist.txt: 29961) -.indian-forex.com/.*/banners/ -# ||indeed.fr/ads/ (easylist.txt: 29960) -.indeed.fr/ads/ -# ||imptestrm.com/rg-main.php? (easylist.txt: 29959) -.imptestrm.com/rg-main\.php\? -# ||imgpop.googlecode.com^$third-party (easylist.txt: 29957) -.imgpop.googlecode.com -# ||imgehost.com^*/banners/$third-party (easylist.txt: 29956) -.imgehost.com/.*/banners/ -# ||imgdino.com/gsmpop.js (easylist.txt: 29955) -.imgdino.com/gsmpop\.js -# ||img.servint.net^$third-party (easylist.txt: 29954) -.img.servint.net -# ||img.promoddl.com^$third-party (easylist.txt: 29953) -.img.promoddl.com -# ||img.mybet.com^$third-party (easylist.txt: 29952) -.img.mybet.com -# ||img.hostmonster.com^$third-party (easylist.txt: 29951) -.img.hostmonster.com -# ||img.bluehost.com^$third-party (easylist.txt: 29950) -.img.bluehost.com -# ||imagetwist.com/banner/ (easylist.txt: 29949) -.imagetwist.com/banner/ -# ||images.youbuy.it/images/$third-party (easylist.txt: 29948) -.images.youbuy.it/images/ -# ||images.mylot.com^$third-party (easylist.txt: 29947) -.images.mylot.com -# ||images.dreamhost.com^$third-party (easylist.txt: 29946) -.images.dreamhost.com -# ||images.criteo.net^$third-party (easylist.txt: 29945) -.images.criteo.net -# ||images.*.criteo.net^$third-party (easylist.txt: 29944) -.images.*./.*\.criteo\.net[^\w%.-] -.images.*.criteo.net -# ||images-pw.secureserver.net^*_*.$image,third-party (easylist.txt: 29943) -.images-pw.secureserver.net/.*_.*\. -# ||images-pw.secureserver.net/images/100yearsofchevy.gif (easylist.txt: 29942) -.images-pw.secureserver.net/images/100yearsofchevy\.gif -# ||images-amazon.com/images/*/banner/$third-party (easylist.txt: 29940) -.images-amazon.com/images/.*/banner/ -# ||images-amazon.com/images/*/associates/widgets/ (easylist.txt: 29939) -.images-amazon.com/images/.*/associates/widgets/ -# ||image.dhgate.com^*/dhgate-logo-$third-party (easylist.txt: 29938) -.image.dhgate.com/.*/dhgate-logo- -# ||image.com.com^*/skin2.jpg$third-party (easylist.txt: 29937) -.image.com.com/.*/skin2\.jpg -# ||ima3vpaid.appspot.com^ (easylist.txt: 29936) -.ima3vpaid.appspot.com -# ||im.ov.yahoo.co.jp^ (easylist.txt: 29935) -.im.ov.yahoo.co.jp -# ||ilapi.ebay.com^$third-party (easylist.txt: 29934) -.ilapi.ebay.com -# ||ifilm.com/website/*_skin_$third-party (easylist.txt: 29933) -.ifilm.com/website/.*_skin_ -# ||idg.com.au/ggg/images/*_home.jpg$third-party (easylist.txt: 29931) -.idg.com.au/ggg/images/.*_home\.jpg -# ||idealo.co.uk/priceinfo/$third-party (easylist.txt: 29930) -.idealo.co.uk/priceinfo/ -# ||icastcenter.com^*/itunes.jpg (easylist.txt: 29929) -.icastcenter.com/.*/itunes\.jpg -# ||icastcenter.com^*/amazon-buyfrom.gif (easylist.txt: 29928) -.icastcenter.com/.*/amazon-buyfrom\.gif -# ||ibvpn.com/img/banners/ (easylist.txt: 29927) -.ibvpn.com/img/banners/ -# ||ibsys.com/sh/sponsors/ (easylist.txt: 29926) -.ibsys.com/sh/sponsors/ -# ||ibsrv.net/sponsor_images/ (easylist.txt: 29925) -.ibsrv.net/sponsor_images/ -# ||ibsrv.net/sidetiles/125x125/ (easylist.txt: 29924) -.ibsrv.net/sidetiles/125x125/ -# ||i.lsimg.net^*/takeover/ (easylist.txt: 29923) -.i.lsimg.net/.*/takeover/ -# ||i.lsimg.net^*/sides_clickable. (easylist.txt: 29922) -.i.lsimg.net/.*/sides_clickable\. -# ||i.ligatus.com/*-placements/$third-party (easylist.txt: 29921) -.i.ligatus.com/.*-placements/ -# ||hyperscale.com/images/adh_button.jpg (easylist.txt: 29920) -.hyperscale.com/images/adh_button\.jpg -# ||hyperfbtraffic.com/images/graphicsbanners/ (easylist.txt: 29919) -.hyperfbtraffic.com/images/graphicsbanners/ -# ||hyipregulate.com/images/hyipregulatebanner.gif (easylist.txt: 29918) -.hyipregulate.com/images/hyipregulatebanner\.gif -# ||hubbardradio.com^*/my_deals.php (easylist.txt: 29916) -.hubbardradio.com/.*/my_deals\.php -# ||hubbarddeals.com^*/promo/ (easylist.txt: 29915) -.hubbarddeals.com/.*/promo/ -# ||hstpnetwork.com/zeus.php (easylist.txt: 29914) -.hstpnetwork.com/zeus\.php -# ||hstpnetwork.com/ads/ (easylist.txt: 29913) -.hstpnetwork.com/ads/ -# ||hqfootyad4.blogspot.com^$third-party (easylist.txt: 29912) -.hqfootyad4.blogspot.com -# ||hotlinking.dosmil.imap.cc^$third-party (easylist.txt: 29911) -.hotlinking.dosmil.imap.cc -# ||hoteltravel.com/partner/$third-party (easylist.txt: 29910) -.hoteltravel.com/partner/ -# ||hotelsbycity.com^*/bannermtg.php?$third-party (easylist.txt: 29909) -.hotelsbycity.com/.*/bannermtg\.php\? -# ||hostmonster.com/src/js/izahariev/$third-party (easylist.txt: 29908) -.hostmonster.com/src/js/izahariev/ -# ||hostinger.nl/banners/ (easylist.txt: 29907) -.hostinger.nl/banners/ -# ||hosting.conduit.com^$third-party (easylist.txt: 29906) -.hosting.conduit.com -# ||hostgator.com/~affiliat/cgi-bin/affiliates/$third-party (easylist.txt: 29905) -.hostgator.com/~affiliat/cgi-bin/affiliates/ -# ||hostdime.com/images/affiliate/$third-party (easylist.txt: 29904) -.hostdime.com/images/affiliate/ -# ||homad-global-configs.schneevonmorgen.com^ (easylist.txt: 29903) -.homad-global-configs.schneevonmorgen.com -# ||hm-sat.de/b.php (easylist.txt: 29902) -.hm-sat.de/b\.php -# ||hitleap.com/assets/banner.png (easylist.txt: 29901) -.hitleap.com/assets/banner\.png -# ||hitleap.com/assets/banner- (easylist.txt: 29900) -.hitleap.com/assets/banner- -# ||highepcoffer.com/images/banners/ (easylist.txt: 29899) -.highepcoffer.com/images/banners/ -# ||hide-my-ip.com/promo/ (easylist.txt: 29898) -.hide-my-ip.com/promo/ -# ||hexero.com/images/banner.gif (easylist.txt: 29897) -.hexero.com/images/banner\.gif -# ||heidiklein.com/media/banners/ (easylist.txt: 29896) -.heidiklein.com/media/banners/ -# ||healthtrader.com/banner-$third-party (easylist.txt: 29895) -.healthtrader.com/banner- -# ||hdvid-codecs.com^$third-party (easylist.txt: 29894) -.hdvid-codecs.com -# ||haymarket.net.au/Skins/ (easylist.txt: 29893) -.haymarket.net.au/Skins/ -# ||haymarket-whistleout.s3.amazonaws.com/*_ad.html (easylist.txt: 29892) -.haymarket-whistleout.s3.amazonaws.com/.*_ad\.html -# ||handango.com/marketing/affiliate/ (easylist.txt: 29891) -.handango.com/marketing/affiliate/ -# ||halllakeland.com/banner/ (easylist.txt: 29890) -.halllakeland.com/banner/ -# ||guzzle.co.za/media/banners/ (easylist.txt: 29889) -.guzzle.co.za/media/banners/ -# ||guim.co.uk/guardian/thirdparty/tv-site/side.html (easylist.txt: 29888) -.guim.co.uk/guardian/thirdparty/tv-site/side\.html -# ||gsniper.com/images/$third-party (easylist.txt: 29887) -.gsniper.com/images/ -# ||grouponcdn.com^*/affiliate_widget/$third-party (easylist.txt: 29886) -.grouponcdn.com/.*/affiliate_widget/ -# ||groupon.com/javascripts/common/affiliate_widget/$third-party (easylist.txt: 29885) -.groupon.com/javascripts/common/affiliate_widget/ -# ||grindabuck.com/img/skyscraper.jpg (easylist.txt: 29884) -.grindabuck.com/img/skyscraper\.jpg -# ||grammar.coursekey.com/inter/$third-party (easylist.txt: 29883) -.grammar.coursekey.com/inter/ -# ||graduateinjapan.com/affiliates/ (easylist.txt: 29882) -.graduateinjapan.com/affiliates/ -# ||graboid.com/affiliates/ (easylist.txt: 29881) -.graboid.com/affiliates/ -# ||govids.net/adss/ (easylist.txt: 29879) -.govids.net/adss/ -# ||gotraffic.net^*/sponsors/ (easylist.txt: 29878) -.gotraffic.net/.*/sponsors/ -# ||gorgonprojectinvest.com/images/banners/ (easylist.txt: 29877) -.gorgonprojectinvest.com/images/banners/ -# ||googlesyndication.com^*/simgad/$third-party (easylist.txt: 29876) -.googlesyndication.com/.*/simgad/ -# ||googlesyndication.com^*/googlevideoadslibraryas3.swf$object-subrequest,third-party (easylist.txt: 29875) -.googlesyndication.com/.*/googlevideoadslibraryas3\.swf -# ||googlesyndication.com^*/domainpark.cgi? (easylist.txt: 29874) -.googlesyndication.com/.*/domainpark\.cgi\? -# ||googlesyndication.com^*/click_to_buy/$object-subrequest,third-party (easylist.txt: 29873) -.googlesyndication.com/.*/click_to_buy/ -# ||googlesyndication.com/simgad/$third-party (easylist.txt: 29872) -.googlesyndication.com/simgad/ -# ||googlesyndication.com/safeframe/$third-party (easylist.txt: 29871) -.googlesyndication.com/safeframe/ -# ||googlesyndication.com/pagead/$third-party (easylist.txt: 29870) -.googlesyndication.com/pagead/ -# ||google.com/uds/afs?*adsense$subdocument (easylist.txt: 29869) -.google.com/uds/afs\?.*adsense -# ||google.com/pagead/ (easylist.txt: 29868) -.google.com/pagead/ -# ||goldmoney.com/~/media/Images/Banners/$third-party (easylist.txt: 29865) -.goldmoney.com/~/media/Images/Banners/ -# ||gold4rs.com/images/$third-party (easylist.txt: 29864) -.gold4rs.com/images/ -# ||gogousenet.com^*/promo2.cgi (easylist.txt: 29863) -.gogousenet.com/.*/promo2\.cgi -# ||gogousenet.com^*/promo.cgi (easylist.txt: 29862) -.gogousenet.com/.*/promo\.cgi -# ||goadv.com^*/ads.js (easylist.txt: 29861) -.goadv.com/.*/ads\.js -# ||gmstatic.net^*/itunesbadge.png (easylist.txt: 29860) -.gmstatic.net/.*/itunesbadge\.png -# ||gmstatic.net^*/amazonbadge.png (easylist.txt: 29859) -.gmstatic.net/.*/amazonbadge\.png -# ||globalprocash.com/banner125.gif (easylist.txt: 29858) -.globalprocash.com/banner125\.gif -# ||glam.com^*?affiliateid= (easylist.txt: 29857) -.glam.com/.*\?affiliateid= -# ||glam.com/gad/ (easylist.txt: 29856) -.glam.com/gad/ -# ||giffgaff.com/banner/ (easylist.txt: 29855) -.giffgaff.com/banner/ -# ||giantsavings-a.akamaihd.net^$third-party (easylist.txt: 29854) -.giantsavings-a.akamaihd.net -# ||giantrealm.com/saj/ (easylist.txt: 29853) -.giantrealm.com/saj/ -# ||ggmania.com^*.jpg$third-party (easylist.txt: 29852) -.ggmania.com/.*\.jpg -# ||gfxa.sheetmusicplus.com^$third-party (easylist.txt: 29851) -.gfxa.sheetmusicplus.com -# ||gfaf-banners.s3.amazonaws.com^ (easylist.txt: 29850) -.gfaf-banners.s3.amazonaws.com -# ||getpaidforyourtime.org/basic-rotating-banner/ (easylist.txt: 29849) -.getpaidforyourtime.org/basic-rotating-banner/ -# ||getnzb.com/img/partner/banners/$third-party (easylist.txt: 29848) -.getnzb.com/img/partner/banners/ -# ||gethopper.com/tp/$third-party (easylist.txt: 29847) -.gethopper.com/tp/ -# ||getadblock.com/images/adblock_banners/$third-party (easylist.txt: 29846) -.getadblock.com/images/adblock_banners/ -# ||get.thisisvegas.com^$third-party (easylist.txt: 29845) -.get.thisisvegas.com -# ||get.slotocash.com^$third-party (easylist.txt: 29844) -.get.slotocash.com -# ||get.rubyroyal.com^$third-party (easylist.txt: 29843) -.get.rubyroyal.com -# ||get.paradise8.com^$third-party (easylist.txt: 29842) -.get.paradise8.com -# ||get.davincisgold.com^$third-party (easylist.txt: 29841) -.get.davincisgold.com -# ||get.box24casino.com^$third-party (easylist.txt: 29840) -.get.box24casino.com -# ||get.2leep.com^$third-party (easylist.txt: 29839) -.get.2leep.com -# ||get.*.website/static/get-js?stid=$third-party (easylist.txt: 29838) -.get.*./.*\.website/static/get-js\?stid= -.get.*.website/static/get-js\?stid= -# ||geobanner.passion.com^ (easylist.txt: 29837) -.geobanner.passion.com -# ||geobanner.friendfinder.com^ (easylist.txt: 29836) -.geobanner.friendfinder.com -# ||geo.connexionsecure.com^ (easylist.txt: 29835) -.geo.connexionsecure.com -# ||generic4all.com^*?refid=$third-party (easylist.txt: 29834) -.generic4all.com/.*\?refid= -# ||gemini.yahoo.com^*^syndication^ (easylist.txt: 29833) -.gemini.yahoo.com/.*[^\w%.-]syndication[^\w%.-] -# ||gawkerassets.com/assets/marquee/$object,third-party (easylist.txt: 29831) -.gawkerassets.com/assets/marquee/ -# ||gateways.s3.amazonaws.com^ (easylist.txt: 29830) -.gateways.s3.amazonaws.com -# ||gateway.fortunelounge.com^ (easylist.txt: 29829) -.gateway.fortunelounge.com -# ||gamingjobsonline.com/images/banner/ (easylist.txt: 29828) -.gamingjobsonline.com/images/banner/ -# ||gamestop.com^*/aflbanners/ (easylist.txt: 29827) -.gamestop.com/.*/aflbanners/ -# ||gamesports.net/img/betting_campaigns/ (easylist.txt: 29826) -.gamesports.net/img/betting_campaigns/ -# ||gamersaloon.com/images/banners/ (easylist.txt: 29825) -.gamersaloon.com/images/banners/ -# ||gamer-network.net/plugins/dfp/ (easylist.txt: 29824) -.gamer-network.net/plugins/dfp/ -# ||gameorc.net/a.html (easylist.txt: 29823) -.gameorc.net/a\.html -# ||gameduell.com/res/affiliate/ (easylist.txt: 29822) -.gameduell.com/res/affiliate/ -# ||gamblingwages.com/images/$third-party (easylist.txt: 29821) -.gamblingwages.com/images/ -# ||gadgetresearch.net^$subdocument,third-party (easylist.txt: 29820) -.gadgetresearch.net -# ||fyygame.com/images/*.swf$third-party (easylist.txt: 29819) -.fyygame.com/images/.*\.swf -# ||fyiwashtenaw.com/remote_widget? (easylist.txt: 29818) -.fyiwashtenaw.com/remote_widget\? -# ||fyicentralmi.com/remote_widget?$third-party (easylist.txt: 29817) -.fyicentralmi.com/remote_widget\? -# ||fxultima.com/banner/ (easylist.txt: 29816) -.fxultima.com/banner/ -# ||fxcc.com/promo/ (easylist.txt: 29815) -.fxcc.com/promo/ -# ||futuresite.register.com/us?$third-party (easylist.txt: 29814) -.futuresite.register.com/us\? -# ||futuboxhd.com/js/bc.js (easylist.txt: 29813) -.futuboxhd.com/js/bc\.js -# ||furiousteam.com^*/external_banner/ (easylist.txt: 29812) -.furiousteam.com/.*/external_banner/ -# ||fupa.com/aw.aspx?$third-party (easylist.txt: 29811) -.fupa.com/aw\.aspx\? -# ||funtonia.com/promo/ (easylist.txt: 29810) -.funtonia.com/promo/ -# ||fugger.netfirms.com/moa.swf$third-party (easylist.txt: 29809) -.fugger.netfirms.com/moa\.swf -# ||fugger.ipage.com^$third-party (easylist.txt: 29808) -.fugger.ipage.com -# ||ft.pnop.com^ (easylist.txt: 29807) -.ft.pnop.com -# ||frontsight.com^*/banners/ (easylist.txt: 29806) -.frontsight.com/.*/banners/ -# ||frogatto.com/images/$third-party (easylist.txt: 29805) -.frogatto.com/images/ -# ||friedrice.la/widget/$third-party (easylist.txt: 29804) -.friedrice.la/widget/ -# ||freshbooks.com/images/banners/$third-party (easylist.txt: 29803) -.freshbooks.com/images/banners/ -# ||freewheel.mtgx.tv^$~object-subrequest (easylist.txt: 29802) -.freewheel.mtgx.tv -# ||freetricktipss.info^$subdocument,third-party (easylist.txt: 29801) -.freetricktipss.info -# ||freetrafficsystem.com/fts/ban/ (easylist.txt: 29800) -.freetrafficsystem.com/fts/ban/ -# ||freecycle.org^*/sponsors/ (easylist.txt: 29799) -.freecycle.org/.*/sponsors/ -# ||free-football.tv/images/usd/ (easylist.txt: 29798) -.free-football.tv/images/usd/ -# ||freakshare.net/banner/ (easylist.txt: 29797) -.freakshare.net/banner/ -# ||freakshare.com/banner/$third-party (easylist.txt: 29796) -.freakshare.com/banner/ -# ||freakshare.com/?ref= (easylist.txt: 29795) -.freakshare.com/\?ref= -# ||fragfestservers.com/bannerb.gif (easylist.txt: 29794) -.fragfestservers.com/bannerb\.gif -# ||forumimg.ipmart.com/swf/img.php (easylist.txt: 29793) -.forumimg.ipmart.com/swf/img\.php -# ||fortune5minutes.com^*/banner_ (easylist.txt: 29792) -.fortune5minutes.com/.*/banner_ -# ||forms.aweber.com/form/styled_popovers_and_lightboxes.js$third-party (easylist.txt: 29791) -.forms.aweber.com/form/styled_popovers_and_lightboxes\.js -# ||footymad.net/partners/ (easylist.txt: 29790) -.footymad.net/partners/ -# ||followfairy.com/followfairy300x250.jpg (easylist.txt: 29789) -.followfairy.com/followfairy300x250\.jpg -# ||fncstatic.com^*/business-exchange.html (easylist.txt: 29788) -.fncstatic.com/.*/business-exchange\.html -# ||flower.com/img/lsh/ (easylist.txt: 29787) -.flower.com/img/lsh/ -# ||flixcart.com/affiliate/$third-party (easylist.txt: 29786) -.flixcart.com/affiliate/ -# ||flipkart.com/affiliateWidget/$third-party (easylist.txt: 29785) -.flipkart.com/affiliateWidget/ -# ||flipchat.com/index.php?$third-party (easylist.txt: 29784) -.flipchat.com/index\.php\? -# ||flagship.asp-host.co.uk^$third-party (easylist.txt: 29783) -.flagship.asp-host.co.uk -# ||firstclass-download.com^$subdocument,third-party (easylist.txt: 29782) -.firstclass-download.com -# ||firecenter.pl/banners/ (easylist.txt: 29781) -.firecenter.pl/banners/ -# ||fimserve.myspace.com^$third-party (easylist.txt: 29780) -.fimserve.myspace.com -# ||filterforge.com/images/banners/ (easylist.txt: 29779) -.filterforge.com/images/banners/ -# ||filmehd.net/imagini/banner_$third-party (easylist.txt: 29777) -.filmehd.net/imagini/banner_ -# ||fileserver1.net/download (easylist.txt: 29776) -.fileserver1.net/download -# ||fileserve.com/images/banner_$third-party (easylist.txt: 29775) -.fileserve.com/images/banner_ -# ||filepost.com/static/images/bn/ (easylist.txt: 29774) -.filepost.com/static/images/bn/ -# ||fileparadox.com/images/banner/ (easylist.txt: 29773) -.fileparadox.com/images/banner/ -# ||fileloadr.com^$third-party (easylist.txt: 29772) -.fileloadr.com -# ||filejungle.com/images/banner/ (easylist.txt: 29771) -.filejungle.com/images/banner/ -# ||filefactory.com^*/refer.php?hash= (easylist.txt: 29770) -.filefactory.com/.*/refer\.php\?hash= -# ||filedroid.net/af_ta/$third-party (easylist.txt: 29769) -.filedroid.net/af_ta/ -# ||filedownloader.net/design/$third-party (easylist.txt: 29768) -.filedownloader.net/design/ -# ||fenixm.com/actions/*Skin*.$image (easylist.txt: 29767) -.fenixm.com/actions/.*Skin.*\. -# ||feeds.logicbuy.com^ (easylist.txt: 29766) -.feeds.logicbuy.com -# ||feedburner.com/~a/ (easylist.txt: 29765) -.feedburner.com/~a/ -# ||fcgadgets.blogspot.com^$third-party (easylist.txt: 29764) -.fcgadgets.blogspot.com -# ||fatburningfurnace.com^*/fbf-banner- (easylist.txt: 29763) -.fatburningfurnace.com/.*/fbf-banner- -# ||fatads.toldya.com^$third-party (easylist.txt: 29762) -.fatads.toldya.com -# ||fastcccam.com/images/fcbanner2.gif (easylist.txt: 29761) -.fastcccam.com/images/fcbanner2\.gif -# ||farmholidays.is/iframeallfarmsearch.aspx?$third-party (easylist.txt: 29760) -.farmholidays.is/iframeallfarmsearch\.aspx\? -# ||fapturbo.com/testoid/ (easylist.txt: 29759) -.fapturbo.com/testoid/ -# ||fantaz.com^*/banners/$third-party (easylist.txt: 29758) -.fantaz.com/.*/banners/ -# ||fantasyplayers.com/templates/banner_code. (easylist.txt: 29757) -.fantasyplayers.com/templates/banner_code\. -# ||fancybar.net/ac/fancybar.js?zoneid$third-party (easylist.txt: 29756) -.fancybar.net/ac/fancybar\.js\?zoneid -# ||familytreedna.com/img/affiliates/ (easylist.txt: 29755) -.familytreedna.com/img/affiliates/ -# ||fairfaxregional.com.au/proxy/commercial-partner-solar/ (easylist.txt: 29754) -.fairfaxregional.com.au/proxy/commercial-partner-solar/ -# ||eyetopics.com/content_images/$third-party (easylist.txt: 29753) -.eyetopics.com/content_images/ -# ||exwp.org/partners/ (easylist.txt: 29752) -.exwp.org/partners/ -# ||extras.mnginteractive.com^*/todaysdeals.gif (easylist.txt: 29751) -.extras.mnginteractive.com/.*/todaysdeals\.gif -# ||extras.mercurynews.com/tapin_directory/ (easylist.txt: 29750) -.extras.mercurynews.com/tapin_directory/ -# ||extensoft.com/artisteer/banners/ (easylist.txt: 29749) -.extensoft.com/artisteer/banners/ -# ||extabit.com/s/$third-party (easylist.txt: 29748) -.extabit.com/s/ -# ||ext.theglobalweb.com^ (easylist.txt: 29747) -.ext.theglobalweb.com -# ||explorer.sheknows.com^$third-party (easylist.txt: 29746) -.explorer.sheknows.com -# ||expekt.com/affiliates/ (easylist.txt: 29745) -.expekt.com/affiliates/ -# ||exoplanetwar.com/l/landing.php? (easylist.txt: 29744) -.exoplanetwar.com/l/landing\.php\? -# ||everestpoker.com^*/?adv= (easylist.txt: 29743) -.everestpoker.com/.*/\?adv= -# ||events.kalooga.com^ (easylist.txt: 29742) -.events.kalooga.com -# ||euwidget.imshopping.com^ (easylist.txt: 29741) -.euwidget.imshopping.com -# ||europolitique.info^*/pub/ (easylist.txt: 29740) -.europolitique.info/.*/pub/ -# ||etrader.kalahari.net^$third-party (easylist.txt: 29739) -.etrader.kalahari.net -# ||etrader.kalahari.com^$third-party (easylist.txt: 29738) -.etrader.kalahari.com -# ||etoro.com/B*_A*_TGet.aspx$third-party (easylist.txt: 29737) -.etoro.com/B.*_A.*_TGet\.aspx -# ||etoolkit.com/banner/$third-party (easylist.txt: 29736) -.etoolkit.com/banner/ -# ||esport-betting.com^*/betbanner/ (easylist.txt: 29735) -.esport-betting.com/.*/betbanner/ -# ||escape.insites.eu^$third-party (easylist.txt: 29734) -.escape.insites.eu -# ||epowernetworktrackerimages.s3.amazonaws.com^ (easylist.txt: 29733) -.epowernetworktrackerimages.s3.amazonaws.com -# ||eplreplays.com/wl/ (easylist.txt: 29732) -.eplreplays.com/wl/ -# ||epimg.net/js/pbs/ (easylist.txt: 29731) -.epimg.net/js/pbs/ -# ||enticelabs.com/el/ (easylist.txt: 29730) -.enticelabs.com/el/ -# ||engine.gamerati.net^$third-party (easylist.txt: 29729) -.engine.gamerati.net -# ||emsisoft.com/bnr/ (easylist.txt: 29728) -.emsisoft.com/bnr/ -# ||emailcashpro.com/images/$third-party (easylist.txt: 29727) -.emailcashpro.com/images/ -# ||eltexonline.com/contentrotator/$third-party (easylist.txt: 29726) -.eltexonline.com/contentrotator/ -# ||elliottwave.com/fw/regular_leaderboard.js (easylist.txt: 29725) -.elliottwave.com/fw/regular_leaderboard\.js -# ||elitsearch.com^$subdocument,third-party (easylist.txt: 29724) -.elitsearch.com -# ||elenasmodels.com/cache/cb_$third-party (easylist.txt: 29723) -.elenasmodels.com/cache/cb_ -# ||eholidayfinder.com/images/logo.gif$third-party (easylist.txt: 29722) -.eholidayfinder.com/images/logo\.gif -# ||edgecastcdn.net^*.barstoolsports.com/wp-content/banners/ (easylist.txt: 29721) -.edgecastcdn.net/.*\.barstoolsports\.com/wp-content/banners/ -# ||edge.viagogo.co.uk^*/widget.ashx?$third-party (easylist.txt: 29720) -.edge.viagogo.co.uk/.*/widget\.ashx\? -# ||ectaco-store.com^*/promo.jsp? (easylist.txt: 29719) -.ectaco-store.com/.*/promo\.jsp\? -# ||echineselearning.com^*/banner.jpg (easylist.txt: 29718) -.echineselearning.com/.*/banner\.jpg -# ||eblastengine.upickem.net^$third-party (easylist.txt: 29717) -.eblastengine.upickem.net -# ||ebladestore.com^*/banners/ (easylist.txt: 29716) -.ebladestore.com/.*/banners/ -# ||ebaystatic.com/aw/signin/ebay-signin-toyota- (easylist.txt: 29715) -.ebaystatic.com/aw/signin/ebay-signin-toyota- -# ||ebaycommercenetwork.com/publisher/$third-party (easylist.txt: 29714) -.ebaycommercenetwork.com/publisher/ -# ||eattoday.com.mt/widgets/$third-party (easylist.txt: 29713) -.eattoday.com.mt/widgets/ -# ||easyretiredmillionaire.com/img/aff-img/ (easylist.txt: 29712) -.easyretiredmillionaire.com/img/aff-img/ -# ||easy-share.com/images/es20/ (easylist.txt: 29711) -.easy-share.com/images/es20/ -# ||e-webcorp.com/images/$third-party (easylist.txt: 29710) -.e-webcorp.com/images/ -# ||e-tailwebstores.com/accounts/default1/banners/ (easylist.txt: 29709) -.e-tailwebstores.com/accounts/default1/banners/ -# ||dynw.com/banner (easylist.txt: 29708) -.dynw.com/banner -# ||dynamicserving.com^$third-party (easylist.txt: 29707) -.dynamicserving.com -# ||dyl3p6so5yozo.cloudfront.net^ (easylist.txt: 29706) -.dyl3p6so5yozo.cloudfront.net -# ||dycpc40hvg4ki.cloudfront.net^ (easylist.txt: 29705) -.dycpc40hvg4ki.cloudfront.net -# ||dy48bnzanqw0v.cloudfront.net^ (easylist.txt: 29704) -.dy48bnzanqw0v.cloudfront.net -# ||dxqd86uz345mg.cloudfront.net^ (easylist.txt: 29703) -.dxqd86uz345mg.cloudfront.net -# ||dxq6c0tx3v6mm.cloudfront.net^ (easylist.txt: 29702) -.dxq6c0tx3v6mm.cloudfront.net -# ||dx5qvhwg92mjd.cloudfront.net^ (easylist.txt: 29701) -.dx5qvhwg92mjd.cloudfront.net -# ||dx.com/affiliate/$third-party (easylist.txt: 29700) -.dx.com/affiliate/ -# ||dvt4pepo9om3r.cloudfront.net^ (easylist.txt: 29699) -.dvt4pepo9om3r.cloudfront.net -# ||dvf2u7vwmkr5w.cloudfront.net^ (easylist.txt: 29698) -.dvf2u7vwmkr5w.cloudfront.net -# ||dvdfab.com/images/fabnewbanner/$third-party (easylist.txt: 29697) -.dvdfab.com/images/fabnewbanner/ -# ||duct5ntjian71.cloudfront.net^ (easylist.txt: 29696) -.duct5ntjian71.cloudfront.net -# ||dttek.com/sponsors/ (easylist.txt: 29695) -.dttek.com/sponsors/ -# ||droidnetwork.net/img/vendors/ (easylist.txt: 29693) -.droidnetwork.net/img/vendors/ -# ||droidnetwork.net/img/dt-atv160.jpg (easylist.txt: 29692) -.droidnetwork.net/img/dt-atv160\.jpg -# ||dreamstime.com/refbanner- (easylist.txt: 29691) -.dreamstime.com/refbanner- -# ||dreamstime.com/img/badges/banner$third-party (easylist.txt: 29690) -.dreamstime.com/img/badges/banner -# ||dreamstime.com/banner/ (easylist.txt: 29689) -.dreamstime.com/banner/ -# ||dreamhost.com/rewards/$third-party (easylist.txt: 29688) -.dreamhost.com/rewards/ -# ||dreamboxcart.com/earning/$third-party (easylist.txt: 29687) -.dreamboxcart.com/earning/ -# ||dramafeverw2.appspot.com/widget/$third-party (easylist.txt: 29686) -.dramafeverw2.appspot.com/widget/ -# ||dramafever.com/widget/$third-party (easylist.txt: 29685) -.dramafever.com/widget/ -# ||dr8pk6ovub897.cloudfront.net^ (easylist.txt: 29684) -.dr8pk6ovub897.cloudfront.net -# ||dqhi3ea93ztgv.cloudfront.net^ (easylist.txt: 29683) -.dqhi3ea93ztgv.cloudfront.net -# ||dq2tgxnc2knif.cloudfront.net^ (easylist.txt: 29682) -.dq2tgxnc2knif.cloudfront.net -# ||dpsq2uzakdgqz.cloudfront.net^ (easylist.txt: 29681) -.dpsq2uzakdgqz.cloudfront.net -# ||dp51h10v6ggpa.cloudfront.net^ (easylist.txt: 29680) -.dp51h10v6ggpa.cloudfront.net -# ||downloadprovider.me/en/search/*?aff.id=*&iframe=$third-party (easylist.txt: 29679) -.downloadprovider.me/en/search/.*\?aff\.id=.*&iframe= -# ||downloadandsave-a.akamaihd.net^$third-party (easylist.txt: 29678) -.downloadandsave-a.akamaihd.net -# ||download.bitdefender.com/resources/media/$third-party (easylist.txt: 29677) -.download.bitdefender.com/resources/media/ -# ||download-provider.org/?aff.id=$third-party (easylist.txt: 29676) -.download-provider.org/\?aff\.id= -# ||dotz123.com/run.php? (easylist.txt: 29675) -.dotz123.com/run\.php\? -# ||dot.tk/urlfwd/searchbar/bar.html (easylist.txt: 29674) -.dot.tk/urlfwd/searchbar/bar\.html -# ||dorabet.com/banner/ (easylist.txt: 29673) -.dorabet.com/banner/ -# ||domainnamesales.com/return_js.php? (easylist.txt: 29672) -.domainnamesales.com/return_js\.php\? -# ||domaingateway.com/js/redirect-min.js (easylist.txt: 29671) -.domaingateway.com/js/redirect-min\.js -# ||domainapps.com/assets/img/domain-apps.gif$third-party (easylist.txt: 29670) -.domainapps.com/assets/img/domain-apps\.gif -# ||dntrck.com/trax? (easylist.txt: 29669) -.dntrck.com/trax\? -# ||dm8srf206hien.cloudfront.net^ (easylist.txt: 29668) -.dm8srf206hien.cloudfront.net -# ||dm0acvguygm9h.cloudfront.net^ (easylist.txt: 29667) -.dm0acvguygm9h.cloudfront.net -# ||dlupv9uqtjlie.cloudfront.net^ (easylist.txt: 29666) -.dlupv9uqtjlie.cloudfront.net -# ||dl5v5atodo7gn.cloudfront.net^ (easylist.txt: 29665) -.dl5v5atodo7gn.cloudfront.net -# ||dl392qndlveq0.cloudfront.net^ (easylist.txt: 29664) -.dl392qndlveq0.cloudfront.net -# ||dkdwv3lcby5zi.cloudfront.net^ (easylist.txt: 29663) -.dkdwv3lcby5zi.cloudfront.net -# ||dkd69bwkvrht1.cloudfront.net^ (easylist.txt: 29662) -.dkd69bwkvrht1.cloudfront.net -# ||djlf5xdlz7m8m.cloudfront.net^ (easylist.txt: 29661) -.djlf5xdlz7m8m.cloudfront.net -# ||dizixdllzznrf.cloudfront.net^ (easylist.txt: 29660) -.dizixdllzznrf.cloudfront.net -# ||disy2s34euyqm.cloudfront.net^ (easylist.txt: 29659) -.disy2s34euyqm.cloudfront.net -# ||disqus.com/listPromoted? (easylist.txt: 29658) -.disqus.com/listPromoted\? -# ||display.digitalriver.com^ (easylist.txt: 29657) -.display.digitalriver.com -# ||directnicparking.com^$third-party (easylist.txt: 29656) -.directnicparking.com -# ||direct.quasir.info^$third-party (easylist.txt: 29655) -.direct.quasir.info -# ||digitalsatellite.tv/banners/ (easylist.txt: 29654) -.digitalsatellite.tv/banners/ -# ||digitalmediacommunications.com/belleville/employment/ (easylist.txt: 29653) -.digitalmediacommunications.com/belleville/employment/ -# ||dff7tx5c2qbxc.cloudfront.net^ (easylist.txt: 29651) -.dff7tx5c2qbxc.cloudfront.net -# ||dew9ckzjyt2gn.cloudfront.net^ (easylist.txt: 29650) -.dew9ckzjyt2gn.cloudfront.net -# ||devil-bet.com/banner/ (easylist.txt: 29649) -.devil-bet.com/banner/ -# ||developermedia.com/a.min.js (easylist.txt: 29648) -.developermedia.com/a\.min\.js -# ||dev-cms.com^*/promobanners/ (easylist.txt: 29647) -.dev-cms.com/.*/promobanners/ -# ||detroitmedia.com/jfry/ (easylist.txt: 29646) -.detroitmedia.com/jfry/ -# ||desperateseller.co.uk/affiliates/ (easylist.txt: 29645) -.desperateseller.co.uk/affiliates/ -# ||deskbabes.com/ref.php? (easylist.txt: 29644) -.deskbabes.com/ref\.php\? -# ||desi4m.com/desi4m.gif$third-party (easylist.txt: 29643) -.desi4m.com/desi4m\.gif -# ||depositfiles.com^*.php?ref= (easylist.txt: 29642) -.depositfiles.com/.*\.php\?ref= -# ||dennis.co.uk^*/siteskins/ (easylist.txt: 29641) -.dennis.co.uk/.*/siteskins/ -# ||delivery.importantmedia.org^$third-party (easylist.txt: 29640) -.delivery.importantmedia.org -# ||dealzone.co.za^$script,third-party (easylist.txt: 29639) -.dealzone.co.za -# ||dealtoday.com.mt/banners/ (easylist.txt: 29638) -.dealtoday.com.mt/banners/ -# ||dealswarm.com^$subdocument,third-party (easylist.txt: 29637) -.dealswarm.com -# ||deals4thecure.com/widgets/*?affiliateurl= (easylist.txt: 29636) -.deals4thecure.com/widgets/.*\?affiliateurl= -# ||deals.macupdate.com^$third-party (easylist.txt: 29635) -.deals.macupdate.com -# ||deals.buxr.net^$third-party (easylist.txt: 29634) -.deals.buxr.net -# ||dealplatform.com^*/widgets/$third-party (easylist.txt: 29633) -.dealplatform.com/.*/widgets/ -# ||dealextreme.com/affiliate_upload/$third-party (easylist.txt: 29632) -.dealextreme.com/affiliate_upload/ -# ||ddwht76d9jvfl.cloudfront.net^ (easylist.txt: 29631) -.ddwht76d9jvfl.cloudfront.net -# ||dbam.dashbida.com^ (easylist.txt: 29630) -.dbam.dashbida.com -# ||dawanda.com/widget/$third-party (easylist.txt: 29629) -.dawanda.com/widget/ -# ||daterly.com/*.widget.php$third-party (easylist.txt: 29628) -.daterly.com/.*\.widget\.php -# ||datakl.com/banner/ (easylist.txt: 29627) -.datakl.com/banner/ -# ||datafeedfile.com/widget/readywidget/ (easylist.txt: 29626) -.datafeedfile.com/widget/readywidget/ -# ||data.neuroxmedia.com^ (easylist.txt: 29625) -.data.neuroxmedia.com -# ||dasfdasfasdf.no-ip.info^ (easylist.txt: 29624) -.dasfdasfasdf.no-ip.info -# ||dart.clearchannel.com^ (easylist.txt: 29623) -.dart.clearchannel.com -# ||dapatwang.com/images/banner/ (easylist.txt: 29622) -.dapatwang.com/images/banner/ -# ||dal9hkyfi0m0n.cloudfront.net^ (easylist.txt: 29621) -.dal9hkyfi0m0n.cloudfront.net -# ||dailydealstwincities.com/widgets/$subdocument,third-party (easylist.txt: 29620) -.dailydealstwincities.com/widgets/ -# ||d8qy7md4cj3gz.cloudfront.net^ (easylist.txt: 29619) -.d8qy7md4cj3gz.cloudfront.net -# ||d6bdy3eto8fyu.cloudfront.net^ (easylist.txt: 29618) -.d6bdy3eto8fyu.cloudfront.net -# ||d5pvnbpawsaav.cloudfront.net^ (easylist.txt: 29617) -.d5pvnbpawsaav.cloudfront.net -# ||d3vc1nm9xbncz5.cloudfront.net^ (easylist.txt: 29616) -.d3vc1nm9xbncz5.cloudfront.net -# ||d3tdefw8pwfkbk.cloudfront.net^ (easylist.txt: 29615) -.d3tdefw8pwfkbk.cloudfront.net -# ||d3t9ip55bsuxrf.cloudfront.net^ (easylist.txt: 29614) -.d3t9ip55bsuxrf.cloudfront.net -# ||d3t2wca0ou3lqz.cloudfront.net^ (easylist.txt: 29613) -.d3t2wca0ou3lqz.cloudfront.net -# ||d3qszud4qdthr8.cloudfront.net^ (easylist.txt: 29612) -.d3qszud4qdthr8.cloudfront.net -# ||d3q2dpprdsteo.cloudfront.net^ (easylist.txt: 29611) -.d3q2dpprdsteo.cloudfront.net -# ||d3pkae9owd2lcf.cloudfront.net^ (easylist.txt: 29610) -.d3pkae9owd2lcf.cloudfront.net -# ||d3p9ql8flgemg7.cloudfront.net^ (easylist.txt: 29609) -.d3p9ql8flgemg7.cloudfront.net -# ||d3nvrqlo8rj1kw.cloudfront.net^ (easylist.txt: 29608) -.d3nvrqlo8rj1kw.cloudfront.net -# ||d3m41swuqq4sv5.cloudfront.net^ (easylist.txt: 29607) -.d3m41swuqq4sv5.cloudfront.net -# ||d3lzezfa753mqu.cloudfront.net^ (easylist.txt: 29606) -.d3lzezfa753mqu.cloudfront.net -# ||d3lvr7yuk4uaui.cloudfront.net^ (easylist.txt: 29605) -.d3lvr7yuk4uaui.cloudfront.net -# ||d3iwjrnl4m67rd.cloudfront.net^ (easylist.txt: 29604) -.d3iwjrnl4m67rd.cloudfront.net -# ||d3irruagotonpp.cloudfront.net^ (easylist.txt: 29603) -.d3irruagotonpp.cloudfront.net -# ||d3fzrm6pcer44x.cloudfront.net^ (easylist.txt: 29602) -.d3fzrm6pcer44x.cloudfront.net -# ||d3f9mcik999dte.cloudfront.net^ (easylist.txt: 29601) -.d3f9mcik999dte.cloudfront.net -# ||d3dphmosjk9rot.cloudfront.net^ (easylist.txt: 29600) -.d3dphmosjk9rot.cloudfront.net -# ||d3bvcf24wln03d.cloudfront.net^ (easylist.txt: 29599) -.d3bvcf24wln03d.cloudfront.net -# ||d39xqloz8t5a6x.cloudfront.net^ (easylist.txt: 29598) -.d39xqloz8t5a6x.cloudfront.net -# ||d38r21vtgndgb1.cloudfront.net^ (easylist.txt: 29597) -.d38r21vtgndgb1.cloudfront.net -# ||d38pxm3dmrdu6d.cloudfront.net^ (easylist.txt: 29596) -.d38pxm3dmrdu6d.cloudfront.net -# ||d37kzqe5knnh6t.cloudfront.net^ (easylist.txt: 29595) -.d37kzqe5knnh6t.cloudfront.net -# ||d34rdvn2ky3gnm.cloudfront.net^ (easylist.txt: 29594) -.d34rdvn2ky3gnm.cloudfront.net -# ||d34obr29voew8l.cloudfront.net^ (easylist.txt: 29593) -.d34obr29voew8l.cloudfront.net -# ||d33otidwg56k90.cloudfront.net^ (easylist.txt: 29592) -.d33otidwg56k90.cloudfront.net -# ||d33f10u0pfpplc.cloudfront.net^ (easylist.txt: 29591) -.d33f10u0pfpplc.cloudfront.net -# ||d32pxqbknuxsuy.cloudfront.net^ (easylist.txt: 29590) -.d32pxqbknuxsuy.cloudfront.net -# ||d31807xkria1x4.cloudfront.net^ (easylist.txt: 29589) -.d31807xkria1x4.cloudfront.net -# ||d2z1smm3i01tnr.cloudfront.net^ (easylist.txt: 29588) -.d2z1smm3i01tnr.cloudfront.net -# ||d2yhukq7vldf1u.cloudfront.net^ (easylist.txt: 29587) -.d2yhukq7vldf1u.cloudfront.net -# ||d2vt6q0n0iy66w.cloudfront.net^ (easylist.txt: 29586) -.d2vt6q0n0iy66w.cloudfront.net -# ||d2v9ajh2eysdau.cloudfront.net^ (easylist.txt: 29585) -.d2v9ajh2eysdau.cloudfront.net -# ||d2v4glj2m8yzg5.cloudfront.net^ (easylist.txt: 29584) -.d2v4glj2m8yzg5.cloudfront.net -# ||d2ue9k1rhsumed.cloudfront.net^ (easylist.txt: 29583) -.d2ue9k1rhsumed.cloudfront.net -# ||d2ubicnllnnszy.cloudfront.net^ (easylist.txt: 29582) -.d2ubicnllnnszy.cloudfront.net -# ||d2tnimpzlb191i.cloudfront.net^ (easylist.txt: 29581) -.d2tnimpzlb191i.cloudfront.net -# ||d2tgev5wuprbqq.cloudfront.net^ (easylist.txt: 29580) -.d2tgev5wuprbqq.cloudfront.net -# ||d2s64zaa9ua7uv.cloudfront.net^ (easylist.txt: 29579) -.d2s64zaa9ua7uv.cloudfront.net -# ||d2r359adnh3sfn.cloudfront.net^ (easylist.txt: 29578) -.d2r359adnh3sfn.cloudfront.net -# ||d2plxos94peuwp.cloudfront.net^ (easylist.txt: 29577) -.d2plxos94peuwp.cloudfront.net -# ||d2pgy8h4i30on1.cloudfront.net^ (easylist.txt: 29576) -.d2pgy8h4i30on1.cloudfront.net -# ||d2omcicc3a4zlg.cloudfront.net^ (easylist.txt: 29575) -.d2omcicc3a4zlg.cloudfront.net -# ||d2oallm7wrqvmi.cloudfront.net^ (easylist.txt: 29574) -.d2oallm7wrqvmi.cloudfront.net -# ||d2o307dm5mqftz.cloudfront.net^ (easylist.txt: 29573) -.d2o307dm5mqftz.cloudfront.net -# ||d2nlytvx51ywh9.cloudfront.net^ (easylist.txt: 29572) -.d2nlytvx51ywh9.cloudfront.net -# ||d2mq0uzafv8ytp.cloudfront.net^ (easylist.txt: 29571) -.d2mq0uzafv8ytp.cloudfront.net -# ||d2mic0r0bo3i6z.cloudfront.net^ (easylist.txt: 29570) -.d2mic0r0bo3i6z.cloudfront.net -# ||d2ipklohrie3lo.cloudfront.net^ (easylist.txt: 29569) -.d2ipklohrie3lo.cloudfront.net -# ||d2hap2bsh1k9lw.cloudfront.net^ (easylist.txt: 29568) -.d2hap2bsh1k9lw.cloudfront.net -# ||d2gz6iop9uxobu.cloudfront.net^ (easylist.txt: 29567) -.d2gz6iop9uxobu.cloudfront.net -# ||d2gtlljtkeiyzd.cloudfront.net^ (easylist.txt: 29566) -.d2gtlljtkeiyzd.cloudfront.net -# ||d2gpgaupalra1d.cloudfront.net^ (easylist.txt: 29565) -.d2gpgaupalra1d.cloudfront.net -# ||d2dxgm96wvaa5j.cloudfront.net^ (easylist.txt: 29564) -.d2dxgm96wvaa5j.cloudfront.net -# ||d2d2lbvq8xirbs.cloudfront.net^ (easylist.txt: 29563) -.d2d2lbvq8xirbs.cloudfront.net -# ||d2cxkkxhecdzsq.cloudfront.net^ (easylist.txt: 29562) -.d2cxkkxhecdzsq.cloudfront.net -# ||d2bgg7rjywcwsy.cloudfront.net^ (easylist.txt: 29561) -.d2bgg7rjywcwsy.cloudfront.net -# ||d2b65ihpmocv7w.cloudfront.net^ (easylist.txt: 29560) -.d2b65ihpmocv7w.cloudfront.net -# ||d2b2x1ywompm1b.cloudfront.net^ (easylist.txt: 29559) -.d2b2x1ywompm1b.cloudfront.net -# ||d2anfhdgjxf8s1.cloudfront.net^ (easylist.txt: 29558) -.d2anfhdgjxf8s1.cloudfront.net -# ||d29r6igjpnoykg.cloudfront.net^ (easylist.txt: 29556) -.d29r6igjpnoykg.cloudfront.net -# ||d287x05ve9a63s.cloudfront.net^ (easylist.txt: 29555) -.d287x05ve9a63s.cloudfront.net -# ||d27jt7xr4fq3e8.cloudfront.net^ (easylist.txt: 29554) -.d27jt7xr4fq3e8.cloudfront.net -# ||d26wy0pxd3qqpv.cloudfront.net^ (easylist.txt: 29553) -.d26wy0pxd3qqpv.cloudfront.net -# ||d26j9bp9bq4uhd.cloudfront.net^ (easylist.txt: 29552) -.d26j9bp9bq4uhd.cloudfront.net -# ||d26dzd2k67we08.cloudfront.net^ (easylist.txt: 29551) -.d26dzd2k67we08.cloudfront.net -# ||d25xkbr68qqtcn.cloudfront.net^ (easylist.txt: 29550) -.d25xkbr68qqtcn.cloudfront.net -# ||d25ruj6ht8bs1.cloudfront.net^ (easylist.txt: 29549) -.d25ruj6ht8bs1.cloudfront.net -# ||d23nyyb6dc29z6.cloudfront.net^ (easylist.txt: 29548) -.d23nyyb6dc29z6.cloudfront.net -# ||d23guct4biwna6.cloudfront.net^ (easylist.txt: 29547) -.d23guct4biwna6.cloudfront.net -# ||d1zgderxoe1a.cloudfront.net^ (easylist.txt: 29546) -.d1zgderxoe1a.cloudfront.net -# ||d1wa9546y9kg0n.cloudfront.net/index.js (easylist.txt: 29545) -.d1wa9546y9kg0n.cloudfront.net/index\.js -# ||d1vbm0eveofcle.cloudfront.net^ (easylist.txt: 29544) -.d1vbm0eveofcle.cloudfront.net -# ||d1spb7fplenrp4.cloudfront.net^ (easylist.txt: 29543) -.d1spb7fplenrp4.cloudfront.net -# ||d1pdpbxj733bb1.cloudfront.net^ (easylist.txt: 29542) -.d1pdpbxj733bb1.cloudfront.net -# ||d1pcttwib15k25.cloudfront.net^ (easylist.txt: 29541) -.d1pcttwib15k25.cloudfront.net -# ||d1noellhv8fksc.cloudfront.net^ (easylist.txt: 29540) -.d1noellhv8fksc.cloudfront.net -# ||d1k74lgicilrr3.cloudfront.net^ (easylist.txt: 29539) -.d1k74lgicilrr3.cloudfront.net -# ||d1gojtoka5qi10.cloudfront.net^ (easylist.txt: 29538) -.d1gojtoka5qi10.cloudfront.net -# ||d1fo96xm8fci0r.cloudfront.net^ (easylist.txt: 29537) -.d1fo96xm8fci0r.cloudfront.net -# ||d1ey3fksimezm4.cloudfront.net^ (easylist.txt: 29536) -.d1ey3fksimezm4.cloudfront.net -# ||d1ep3cn6qx0l3z.cloudfront.net^ (easylist.txt: 29535) -.d1ep3cn6qx0l3z.cloudfront.net -# ||d1d95giojjkirt.cloudfront.net^ (easylist.txt: 29534) -.d1d95giojjkirt.cloudfront.net -# ||d1cl1sqtf3o420.cloudfront.net^ (easylist.txt: 29533) -.d1cl1sqtf3o420.cloudfront.net -# ||d1ade4ciw4bqyc.cloudfront.net^ (easylist.txt: 29532) -.d1ade4ciw4bqyc.cloudfront.net -# ||d19972r8wdpby8.cloudfront.net^ (easylist.txt: 29531) -.d19972r8wdpby8.cloudfront.net -# ||d17f2fxw547952.cloudfront.net^ (easylist.txt: 29530) -.d17f2fxw547952.cloudfront.net -# ||d15gt9gwxw5wu0.cloudfront.net^ (easylist.txt: 29529) -.d15gt9gwxw5wu0.cloudfront.net -# ||d15565yqt7pv7r.cloudfront.net^ (easylist.txt: 29528) -.d15565yqt7pv7r.cloudfront.net -# ||d140sbu1b1m3h0.cloudfront.net^ (easylist.txt: 29527) -.d140sbu1b1m3h0.cloudfront.net -# ||d13czkep7ax7nj.cloudfront.net^ (easylist.txt: 29526) -.d13czkep7ax7nj.cloudfront.net -# ||d-l-t.com^$subdocument,third-party (easylist.txt: 29525) -.d-l-t.com -# ||cuteonly.com/banners.php$third-party (easylist.txt: 29524) -.cuteonly.com/banners\.php -# ||customer.heartinternet.co.uk^$third-party (easylist.txt: 29523) -.customer.heartinternet.co.uk -# ||customcodebydan.com/images/banner.gif (easylist.txt: 29522) -.customcodebydan.com/images/banner\.gif -# ||cursecdn.com/shared-assets/current/anchor.js?id=$third-party (easylist.txt: 29521) -.cursecdn.com/shared-assets/current/anchor\.js\?id= -# ||cursecdn.com/banner/ (easylist.txt: 29520) -.cursecdn.com/banner/ -# ||cts.tradepub.com/cts4/?ptnr=*&tm=$third-party (easylist.txt: 29519) -.cts.tradepub.com/cts4/\?ptnr=.*&tm= -# ||cstv.com^*/sponsors/ (easylist.txt: 29518) -.cstv.com/.*/sponsors/ -# ||crunchyroll.com/awidget/$third-party (easylist.txt: 29517) -.crunchyroll.com/awidget/ -# ||cruisesalefinder.co.nz/affiliates.html$third-party (easylist.txt: 29516) -.cruisesalefinder.co.nz/affiliates\.html -# ||crowdsavings.com/r/banner/ (easylist.txt: 29515) -.crowdsavings.com/r/banner/ -# ||creatives.summitconnect.co.uk^ (easylist.txt: 29514) -.creatives.summitconnect.co.uk -# ||creatives.inmotionhosting.com^ (easylist.txt: 29513) -.creatives.inmotionhosting.com -# ||cpm.amateurcommunity.de^ (easylist.txt: 29512) -.cpm.amateurcommunity.de -# ||cplayer.blinkx.com^$third-party (easylist.txt: 29511) -.cplayer.blinkx.com -# ||coxnewsweb.com^*/ads/ (easylist.txt: 29510) -.coxnewsweb.com/.*/ads/ -# ||couptopia.com/affiliate/$third-party (easylist.txt: 29509) -.couptopia.com/affiliate/ -# ||couponcp-a.akamaihd.net^$third-party (easylist.txt: 29508) -.couponcp-a.akamaihd.net -# ||conversionplanet.com/published/feeds/$third-party (easylist.txt: 29507) -.conversionplanet.com/published/feeds/ -# ||continent8.com^*/bannerflow/ (easylist.txt: 29506) -.continent8.com/.*/bannerflow/ -# ||contentcastsyndication.com^*&banner (easylist.txt: 29505) -.contentcastsyndication.com/.*&banner -# ||content.secondspace.com^$~image,third-party (easylist.txt: 29504) -.content.secondspace.com -# ||content.livesportmedia.eu^ (easylist.txt: 29503) -.content.livesportmedia.eu -# ||consolpub.com/weatherwindow/ (easylist.txt: 29502) -.consolpub.com/weatherwindow/ -# ||connect.summit.co.uk^ (easylist.txt: 29500) -.connect.summit.co.uk -# ||conduit.com//banners/$third-party (easylist.txt: 29499) -# ||comx-computers.co.za/banners/$third-party (easylist.txt: 29498) -.comx-computers.co.za/banners/ -# ||complexmedianetwork.com/js/cmnUNT.js (easylist.txt: 29497) -.complexmedianetwork.com/js/cmnUNT\.js -# ||colorlabsproject.com^*/banner_ (easylist.txt: 29495) -.colorlabsproject.com/.*/banner_ -# ||colmwynne.com^$image,third-party (easylist.txt: 29494) -.colmwynne.com -# ||code.popup2m.com^$third-party (easylist.txt: 29493) -.code.popup2m.com -# ||cnnewmedia.co.uk/locker/ (easylist.txt: 29492) -.cnnewmedia.co.uk/locker/ -# ||cnhionline.com^*/rtj_ad.jpg (easylist.txt: 29491) -.cnhionline.com/.*/rtj_ad\.jpg -# ||cngroup.co.uk/service/creative/ (easylist.txt: 29490) -.cngroup.co.uk/service/creative/ -# ||cloudzer.net^*/banner/$third-party (easylist.txt: 29489) -.cloudzer.net/.*/banner/ -# ||cloudzer.net/ref/ (easylist.txt: 29488) -.cloudzer.net/ref/ -# ||cloudfront.net/tie.js (easylist.txt: 29484) -.cloudfront.net/tie\.js -# ||cloudfront.net/st.js (easylist.txt: 29483) -.cloudfront.net/st\.js -# ||cloudfront.net/scripts/js3caf.js (easylist.txt: 29482) -.cloudfront.net/scripts/js3caf\.js -# ||cloudfront.net/nimblebuy/ (easylist.txt: 29481) -.cloudfront.net/nimblebuy/ -# ||cloudfront.net/dfpd.js (easylist.txt: 29479) -.cloudfront.net/dfpd\.js -# ||clipdealer.com/?action=widget&*&partner= (easylist.txt: 29478) -.clipdealer.com/\?action=widget&.*&partner= -# ||clicktripz.com/scripts/js/ct.js (easylist.txt: 29477) -.clicktripz.com/scripts/js/ct\.js -# ||clicksure.com/img/resources/banner_ (easylist.txt: 29476) -.clicksure.com/img/resources/banner_ -# ||clickstrip.6wav.es^ (easylist.txt: 29475) -.clickstrip.6wav.es -# ||click.eyk.net^ (easylist.txt: 29474) -.click.eyk.net -# ||clarity.abacast.com^ (easylist.txt: 29473) -.clarity.abacast.com -# ||cjmooter.xcache.kinxcdn.com^ (easylist.txt: 29472) -.cjmooter.xcache.kinxcdn.com -# ||citygridmedia.com/ads/ (easylist.txt: 29471) -.citygridmedia.com/ads/ -# ||circularhub.com^$third-party (easylist.txt: 29470) -.circularhub.com -# ||cimg.in/images/banners/ (easylist.txt: 29469) -.cimg.in/images/banners/ -# ||chriscasconi.com/nostalgia_ad. (easylist.txt: 29468) -.chriscasconi.com/nostalgia_ad\. -# ||choices.truste.com^$third-party (easylist.txt: 29467) -.choices.truste.com -# ||charlestondealstoday.com/aux/ux/_component/ss_dealrail/$subdocument,third-party (easylist.txt: 29466) -.charlestondealstoday.com/aux/ux/_component/ss_dealrail/ -# ||challies.com^*/wtsbooks5.png$third-party (easylist.txt: 29465) -.challies.com/.*/wtsbooks5\.png -# ||chacsystems.com/gk_add.html$third-party (easylist.txt: 29464) -.chacsystems.com/gk_add\.html -# ||cgmlab.com/tools/geotarget/custombanner.js (easylist.txt: 29463) -.cgmlab.com/tools/geotarget/custombanner\.js -# ||cfcdn.com/showcase_sample/search_widget/ (easylist.txt: 29462) -.cfcdn.com/showcase_sample/search_widget/ -# ||cex.io/informer/$third-party (easylist.txt: 29461) -.cex.io/informer/ -# ||cex.io/img/b/ (easylist.txt: 29460) -.cex.io/img/b/ -# ||cerebral.typn.com^ (easylist.txt: 29459) -.cerebral.typn.com -# ||centralscotlandjoinery.co.uk/images/csj-125.gif$third-party (easylist.txt: 29458) -.centralscotlandjoinery.co.uk/images/csj-125\.gif -# ||centralmediaserver.com^*_side_bars.jpg (easylist.txt: 29457) -.centralmediaserver.com/.*_side_bars\.jpg -# ||cdnprk.com/scripts/js3caf.js (easylist.txt: 29456) -.cdnprk.com/scripts/js3caf\.js -# ||cdnprk.com/scripts/js3.js (easylist.txt: 29455) -.cdnprk.com/scripts/js3\.js -# ||cdnpark.com/scripts/js3.js (easylist.txt: 29454) -.cdnpark.com/scripts/js3\.js -# ||cdn.sweeva.com/images/$third-party (easylist.txt: 29452) -.cdn.sweeva.com/images/ -# ||cdn.pubexchange.com/modules/display/$script (easylist.txt: 29451) -.cdn.pubexchange.com/modules/display/ -# ||cdn.offcloud.com^$third-party (easylist.txt: 29450) -.cdn.offcloud.com -# ||cdn.ndparking.com/js/init.min.js (easylist.txt: 29449) -.cdn.ndparking.com/js/init\.min\.js -# ||cdn.cdncomputer.com/js/main.js (easylist.txt: 29448) -.cdn.cdncomputer.com/js/main\.js -# ||cdn.assets.gorillanation.com^$third-party (easylist.txt: 29447) -.cdn.assets.gorillanation.com -# ||cccam.co/banner_big.gif (easylist.txt: 29446) -.cccam.co/banner_big\.gif -# ||cbpirate.com/getimg.php? (easylist.txt: 29445) -.cbpirate.com/getimg\.php\? -# ||caw.criteo.com^$third-party (easylist.txt: 29444) -.caw.criteo.com -# ||caw.*.criteo.com^$third-party (easylist.txt: 29443) -.caw.*./.*\.criteo\.com[^\w%.-] -.caw.*.criteo.com -# ||catholicweb.com^*/banners/ (easylist.txt: 29442) -.catholicweb.com/.*/banners/ -# ||casti.tv/adds/ (easylist.txt: 29441) -.casti.tv/adds/ -# ||castasap.com/publi2.html (easylist.txt: 29440) -.castasap.com/publi2\.html -# ||cashmyvideo.com/images/cashmyvideo_banner.gif (easylist.txt: 29438) -.cashmyvideo.com/images/cashmyvideo_banner\.gif -# ||cashmakingpowersites.com^*/banners/ (easylist.txt: 29437) -.cashmakingpowersites.com/.*/banners/ -# ||cash.neweramediaworks.com^ (easylist.txt: 29436) -.cash.neweramediaworks.com -# ||cas.criteo.com^$third-party (easylist.txt: 29435) -.cas.criteo.com -# ||cas.clickability.com^ (easylist.txt: 29434) -.cas.clickability.com -# ||cas.*.criteo.com^$third-party (easylist.txt: 29433) -.cas.*./.*\.criteo\.com[^\w%.-] -.cas.*.criteo.com -# ||cars.fyidriving.com^$subdocument,third-party (easylist.txt: 29432) -.cars.fyidriving.com -# ||carfax.com/img_myap/$third-party (easylist.txt: 29431) -.carfax.com/img_myap/ -# ||careerjunction.co.za^*/widget?$third-party (easylist.txt: 29430) -.careerjunction.co.za/.*/widget\? -# ||careerjunction.co.za/widgets/$third-party (easylist.txt: 29429) -.careerjunction.co.za/widgets/ -# ||carbiz.in/affiliates-and-partners/ (easylist.txt: 29428) -.carbiz.in/affiliates-and-partners/ -# ||canonresourcecenter.com^$third-party (easylist.txt: 29427) -.canonresourcecenter.com -# ||cancomdigital.com/resourcecenter/$third-party (easylist.txt: 29426) -.cancomdigital.com/resourcecenter/ -# ||camelmedia.net^*/banners/ (easylist.txt: 29425) -.camelmedia.net/.*/banners/ -# ||cal-one.net/ellington/search_form.php? (easylist.txt: 29424) -.cal-one.net/ellington/search_form\.php\? -# ||cal-one.net/ellington/deals_widget.php? (easylist.txt: 29423) -.cal-one.net/ellington/deals_widget\.php\? -# ||cactusvpn.com/images/affiliates/ (easylist.txt: 29422) -.cactusvpn.com/images/affiliates/ -# ||cachefly.net/cricad.html (easylist.txt: 29421) -.cachefly.net/cricad\.html -# ||c.netu.tv^ (easylist.txt: 29420) -.c.netu.tv -# ||byzoo.org/script/tu*.js (easylist.txt: 29419) -.byzoo.org/script/tu.*\.js -# ||buzznet.com^*/showpping-banner-$third-party (easylist.txt: 29418) -.buzznet.com/.*/showpping-banner- -# ||buzina.xyz^$script (easylist.txt: 29417) -.buzina.xyz -# ||buyt.in/api?widgets=$script,third-party (easylist.txt: 29416) -.buyt.in/api\?widgets= -# ||buyhatke.com/widgetBack/ (easylist.txt: 29415) -.buyhatke.com/widgetBack/ -# ||buy.com^*/affiliate/ (easylist.txt: 29414) -.buy.com/.*/affiliate/ -# ||businessnewswatch.ca/images/nnwbanner/ (easylist.txt: 29413) -.businessnewswatch.ca/images/nnwbanner/ -# ||burstnet.akadns.net^$image (easylist.txt: 29412) -.burstnet.akadns.net -# ||burst.net/aff/ (easylist.txt: 29411) -.burst.net/aff/ -# ||bullguard.com^*/banners/ (easylist.txt: 29410) -.bullguard.com/.*/banners/ -# ||bubbles-uk.com/banner/$third-party (easylist.txt: 29409) -.bubbles-uk.com/banner/ -# ||btrd.net/assets/interstitial$script (easylist.txt: 29408) -.btrd.net/assets/interstitial -# ||btr.domywife.com^ (easylist.txt: 29407) -.btr.domywife.com -# ||btguard.com/images/$third-party (easylist.txt: 29406) -.btguard.com/images/ -# ||bruteforcesocialmedia.com/affiliates/ (easylist.txt: 29405) -.bruteforcesocialmedia.com/affiliates/ -# ||bruteforceseo.com/affiliates/ (easylist.txt: 29404) -.bruteforceseo.com/affiliates/ -# ||broadbandgenie.co.uk/widget?$third-party (easylist.txt: 29403) -.broadbandgenie.co.uk/widget\? -# ||brettterpstra.com/wp-content/uploads/$third-party (easylist.txt: 29402) -.brettterpstra.com/wp-content/uploads/ -# ||break.com^*/partnerpublish/ (easylist.txt: 29401) -.break.com/.*/partnerpublish/ -# ||break.com/break/html/$subdocument (easylist.txt: 29400) -.break.com/break/html/ -# ||bravenet.com/cserv.php (easylist.txt: 29399) -.bravenet.com/cserv\.php -# ||bplaced.net/pub/ (easylist.txt: 29398) -.bplaced.net/pub/ -# ||bpath.com/affiliates/ (easylist.txt: 29397) -.bpath.com/affiliates/ -# ||box.anchorfree.net^ (easylist.txt: 29396) -.box.anchorfree.net -# ||bosh.tv/hdplugin. (easylist.txt: 29395) -.bosh.tv/hdplugin\. -# ||borrowlenses.com/affiliate/ (easylist.txt: 29394) -.borrowlenses.com/affiliate/ -# ||bordernode.com/images/$third-party (easylist.txt: 29393) -.bordernode.com/images/ -# ||bookingdragon.com^$subdocument,third-party (easylist.txt: 29392) -.bookingdragon.com -# ||booking.com^*;tmpl=banner_ (easylist.txt: 29391) -.booking.com/.*;tmpl=banner_ -# ||bollyrulez.net/media/adz/ (easylist.txt: 29389) -.bollyrulez.net/media/adz/ -# ||boago.com^*_Takeover_ (easylist.txt: 29388) -.boago.com/.*_Takeover_ -# ||bo-videos.s3.amazonaws.com^$third-party (easylist.txt: 29387) -.bo-videos.s3.amazonaws.com -# ||bluhostedbanners.blucigs.com^ (easylist.txt: 29386) -.bluhostedbanners.blucigs.com -# ||bluesattv.net/bluesattvnet.gif (easylist.txt: 29385) -.bluesattv.net/bluesattvnet\.gif -# ||bluesattv.net/bluesat.swf (easylist.txt: 29384) -.bluesattv.net/bluesat\.swf -# ||bluepromocode.com/images/widgets/$third-party (easylist.txt: 29383) -.bluepromocode.com/images/widgets/ -# ||bloodstock.uk.com/affiliates/ (easylist.txt: 29382) -.bloodstock.uk.com/affiliates/ -# ||blocks.ginotrack.com^$third-party (easylist.txt: 29381) -.blocks.ginotrack.com -# ||blissful-sin.com/affiliates/ (easylist.txt: 29380) -.blissful-sin.com/affiliates/ -# ||bliss-systems-api.co.uk^$third-party (easylist.txt: 29379) -.bliss-systems-api.co.uk -# ||blinkx.com/f2/overlays/ (easylist.txt: 29378) -.blinkx.com/f2/overlays/ -# ||blinkx.com/?i=*&adc_pub_id=$script,third-party (easylist.txt: 29377) -.blinkx.com/\?i=.*&adc_pub_id= -# ||blindferret.com/images/*_skin_ (easylist.txt: 29376) -.blindferret.com/images/.*_skin_ -# ||blamads-assets.s3.amazonaws.com^ (easylist.txt: 29375) -.blamads-assets.s3.amazonaws.com -# ||bl.wavecdn.de^ (easylist.txt: 29374) -.bl.wavecdn.de -# ||bittorrent.am/serws.php?$third-party (easylist.txt: 29373) -.bittorrent.am/serws\.php\? -# ||bitshare.com^*/banner/ (easylist.txt: 29372) -.bitshare.com/.*/banner/ -# ||bitcoinwebhosting.net/banners/$third-party (easylist.txt: 29371) -.bitcoinwebhosting.net/banners/ -# ||bitcoindice.com/img/bitcoindice_$third-party (easylist.txt: 29370) -.bitcoindice.com/img/bitcoindice_ -# ||binopt.net/banners/ (easylist.txt: 29368) -.binopt.net/banners/ -# ||binbox.io/public/img/promo/$third-party (easylist.txt: 29367) -.binbox.io/public/img/promo/ -# ||bijk.com^*/banners/ (easylist.txt: 29366) -.bijk.com/.*/banners/ -# ||bigrock.in/affiliate/ (easylist.txt: 29365) -.bigrock.in/affiliate/ -# ||bigpond.com/specials/$subdocument,third-party (easylist.txt: 29364) -.bigpond.com/specials/ -# ||bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview.jsp?$third-party (easylist.txt: 29362) -.bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview\.jsp\? -# ||bidorbuy.co.za/jsp/system/referral.jsp? (easylist.txt: 29361) -.bidorbuy.co.za/jsp/system/referral\.jsp\? -# ||bidgo.ca^$subdocument,third-party (easylist.txt: 29360) -.bidgo.ca -# ||bharatmatrimony.com/matrimoney/matrimoneybanners/$third-party (easylist.txt: 29359) -.bharatmatrimony.com/matrimoney/matrimoneybanners/ -# ||betwaypartners.com/affiliate_media/$third-party (easylist.txt: 29358) -.betwaypartners.com/affiliate_media/ -# ||betting.betfair.com^$third-party (easylist.txt: 29357) -.betting.betfair.com -# ||betterbills.com.au/widgets/ (easylist.txt: 29356) -.betterbills.com.au/widgets/ -# ||beta.down2crazy.com^$third-party (easylist.txt: 29355) -.beta.down2crazy.com -# ||bet-at-home.com/oddbanner.aspx? (easylist.txt: 29354) -.bet-at-home.com/oddbanner\.aspx\? -# ||bestofmedia.com/ws/communicationSpot.php? (easylist.txt: 29353) -.bestofmedia.com/ws/communicationSpot\.php\? -# ||besthosting.ua/banner/ (easylist.txt: 29352) -.besthosting.ua/banner/ -# ||berush.com/images/whorush_120x120_ (easylist.txt: 29351) -.berush.com/images/whorush_120x120_ -# ||berush.com/images/semrush_banner_ (easylist.txt: 29350) -.berush.com/images/semrush_banner_ -# ||berush.com/images/*_semrush_$third-party (easylist.txt: 29349) -.berush.com/images/.*_semrush_ -# ||bergen.com^*/sponsoredby- (easylist.txt: 29348) -.bergen.com/.*/sponsoredby- -# ||bemyapp.com/trk/$third-party (easylist.txt: 29347) -.bemyapp.com/trk/ -# ||bee4.biz/banners/ (easylist.txt: 29346) -.bee4.biz/banners/ -# ||beachcamera.com/assets/banners/ (easylist.txt: 29345) -.beachcamera.com/assets/banners/ -# ||bc.vc/js/link-converter.js$third-party (easylist.txt: 29344) -.bc.vc/js/link-converter\.js -# ||bc.coupons.com^$third-party (easylist.txt: 29343) -.bc.coupons.com -# ||bbcchannels.com/workspace/uploads/ (easylist.txt: 29342) -.bbcchannels.com/workspace/uploads/ -# ||banners.webmasterplan.com^$third-party (easylist.txt: 29341) -.banners.webmasterplan.com -# ||banners.videosz.com^$third-party (easylist.txt: 29340) -.banners.videosz.com -# ||banners.smarttweak.com^$third-party (easylist.txt: 29339) -.banners.smarttweak.com -# ||banners.moreniche.com^$third-party (easylist.txt: 29338) -.banners.moreniche.com -# ||banners.ixitools.com^$third-party (easylist.txt: 29337) -.banners.ixitools.com -# ||banners.cfspm.com.au^$third-party (easylist.txt: 29336) -.banners.cfspm.com.au -# ||bannermaken.nl/banners/$third-party (easylist.txt: 29335) -.bannermaken.nl/banners/ -# ||banner2.casino.com^$third-party (easylist.txt: 29334) -.banner2.casino.com -# ||banner.titanpoker.com^$third-party (easylist.txt: 29333) -.banner.titanpoker.com -# ||banner.titancasino.com^ (easylist.txt: 29332) -.banner.titancasino.com -# ||banner.telefragged.com^ (easylist.txt: 29331) -.banner.telefragged.com -# ||banner.europacasino.com^ (easylist.txt: 29330) -.banner.europacasino.com -# ||banner.3ddownloads.com^ (easylist.txt: 29329) -.banner.3ddownloads.com -# ||banner.101xp.com^ (easylist.txt: 29328) -.banner.101xp.com -# ||banman.isoftmarketing.com^$third-party (easylist.txt: 29327) -.banman.isoftmarketing.com -# ||bankrate.com/jsfeeds/$third-party (easylist.txt: 29325) -.bankrate.com/jsfeeds/ -# ||bamstudent.com/files/banners/ (easylist.txt: 29324) -.bamstudent.com/files/banners/ -# ||ball2win.com/Affiliate/ (easylist.txt: 29323) -.ball2win.com/Affiliate/ -# ||badoo.com/informer/$third-party (easylist.txt: 29322) -.badoo.com/informer/ -# ||babylon.com^*?affid= (easylist.txt: 29321) -.babylon.com/.*\?affid= -# ||babylon.com/trans_box/*&affiliate= (easylist.txt: 29320) -.babylon.com/trans_box/.*&affiliate= -# ||babylon.com/systems/af/landing/$third-party (easylist.txt: 29319) -.babylon.com/systems/af/landing/ -# ||babylon.com/site/images/common.js$third-party (easylist.txt: 29318) -.babylon.com/site/images/common\.js -# ||b92s.net/images/banners/ (easylist.txt: 29317) -.b92s.net/images/banners/ -# ||b92.putniktravel.com^ (easylist.txt: 29316) -.b92.putniktravel.com -# ||b.sell.com^$third-party (easylist.txt: 29314) -.b.sell.com -# ||b.livesport.eu^ (easylist.txt: 29313) -.b.livesport.eu -# ||b.babylon.com^ (easylist.txt: 29312) -.b.babylon.com -# ||axandra.com/affiliates/ (easylist.txt: 29310) -.axandra.com/affiliates/ -# ||award.sitekeuring.net^ (easylist.txt: 29309) -.award.sitekeuring.net -# ||awadhtimes.com^$third-party (easylist.txt: 29308) -.awadhtimes.com -# ||autoprivileges.net/news/ (easylist.txt: 29307) -.autoprivileges.net/news/ -# ||augine.com/widget|$third-party (easylist.txt: 29306) -.augine.com/widget$ -# ||atomicpopularity.com/dfpd.js (easylist.txt: 29305) -.atomicpopularity.com/dfpd\.js -# ||athena-ads.wikia.com^$third-party (easylist.txt: 29304) -.athena-ads.wikia.com -# ||astrology.com/partnerpages/ (easylist.txt: 29303) -.astrology.com/partnerpages/ -# ||astalavista.box.sk/c-astalink2a.jpg (easylist.txt: 29302) -.astalavista.box.sk/c-astalink2a\.jpg -# ||associmg.com^*.gif?tag- (easylist.txt: 29301) -.associmg.com/.*\.gif\?tag- -# ||assets.betterbills.com/widgets/ (easylist.txt: 29300) -.assets.betterbills.com/widgets/ -# ||as.jivox.com/jivox/serverapis/getcampaignbysite.php?$object-subrequest (easylist.txt: 29299) -.as.jivox.com/jivox/serverapis/getcampaignbysite\.php\? -# ||as.devbridge.com^$third-party (easylist.txt: 29298) -.as.devbridge.com -# ||artistdirect.com/partner/ (easylist.txt: 29297) -.artistdirect.com/partner/ -# ||arntrnassets.mediaspanonline.com^*_HP_wings_ (easylist.txt: 29296) -.arntrnassets.mediaspanonline.com/.*_HP_wings_ -# ||ard.ihookup.com^ (easylist.txt: 29295) -.ard.ihookup.com -# ||arcadetown.com/as/show.asp (easylist.txt: 29294) -.arcadetown.com/as/show\.asp -# ||appwork.org/hoster/banner_$third-party (easylist.txt: 29293) -.appwork.org/hoster/banner_ -# ||appsgenius.com/images/$third-party (easylist.txt: 29292) -.appsgenius.com/images/ -# ||apple.com/itunesaffiliates/ (easylist.txt: 29291) -.apple.com/itunesaffiliates/ -# ||appdevsecrets.com/images/nuts/ (easylist.txt: 29290) -.appdevsecrets.com/images/nuts/ -# ||apnonline.com.au/img/marketplace/*_ct50x50.gif (easylist.txt: 29289) -.apnonline.com.au/img/marketplace/.*_ct50x50\.gif -# ||api.ticketnetwork.com/Events/TopSelling/domain=nytimes.com (easylist.txt: 29288) -.api.ticketnetwork.com/Events/TopSelling/domain=nytimes\.com -# ||api.groupon.com/v2/deals/$third-party (easylist.txt: 29287) -.api.groupon.com/v2/deals/ -# ||api.bitp.it^$third-party (easylist.txt: 29286) -.api.bitp.it -# ||api.140proof.com^$third-party (easylist.txt: 29285) -.api.140proof.com -# ||aolcdn.com/os/music/img/*-skin.jpg (easylist.txt: 29284) -.aolcdn.com/os/music/img/.*-skin\.jpg -# ||aolcdn.com/os/mapquest/promo-images/ (easylist.txt: 29283) -.aolcdn.com/os/mapquest/promo-images/ -# ||aolcdn.com/os/mapquest/marketing/promos/ (easylist.txt: 29282) -.aolcdn.com/os/mapquest/marketing/promos/ -# ||aol.co.uk^*/cobrand.js (easylist.txt: 29281) -.aol.co.uk/.*/cobrand\.js -# ||any.gs/visitScript/$third-party (easylist.txt: 29280) -.any.gs/visitScript/ -# ||anonym.to/*findandtry.com (easylist.txt: 29279) -.anonym.to/.*findandtry\.com -# ||anime.jlist.com^$third-party (easylist.txt: 29278) -.anime.jlist.com -# ||angelbc.com/clients/*/banners/$third-party (easylist.txt: 29277) -.angelbc.com/clients/.*/banners/ -# ||analytics.disneyinternational.com^ (easylist.txt: 29275) -.analytics.disneyinternational.com -# ||amazonaws.com/youpop/ (easylist.txt: 29272) -.amazonaws.com/youpop/ -# ||amazonaws.com/widgets.youcompare.com.au/ (easylist.txt: 29271) -.amazonaws.com/widgets\.youcompare\.com\.au/ -# ||amazonaws.com/streetpulse/ads/ (easylist.txt: 29270) -.amazonaws.com/streetpulse/ads/ -# ||amazonaws.com/skyscrpr.js (easylist.txt: 29269) -.amazonaws.com/skyscrpr\.js -# ||amazonaws.com/publishflow/ (easylist.txt: 29268) -.amazonaws.com/publishflow/ -# ||amazonaws.com/pmb-musics/download_itunes.png (easylist.txt: 29267) -.amazonaws.com/pmb-musics/download_itunes\.png -# ||amazonaws.com/photos.offers.analoganalytics.com/ (easylist.txt: 29265) -.amazonaws.com/photos\.offers\.analoganalytics\.com/ -# ||amazonaws.com/lms/sponsors/ (easylist.txt: 29263) -.amazonaws.com/lms/sponsors/ -# ||amazonaws.com/fvefwdds/ (easylist.txt: 29261) -.amazonaws.com/fvefwdds/ -# ||amazonaws.com/btrb-prd-banners/ (easylist.txt: 29258) -.amazonaws.com/btrb-prd-banners/ -# ||amazonaws.com/bo-assets/production/banner_attachments/ (easylist.txt: 29257) -.amazonaws.com/bo-assets/production/banner_attachments/ -# ||amazonaws.com/ad_w_intersitial.html (easylist.txt: 29254) -.amazonaws.com/ad_w_intersitial\.html -# ||amazon.com^*/getaanad?$third-party (easylist.txt: 29253) -.amazon.com/.*/getaanad\? -# ||amazon.com/gp/redirect.html?$subdocument,third-party (easylist.txt: 29252) -.amazon.com/gp/redirect\.html\? -# ||amazon.com/?_encoding*&linkcode$third-party (easylist.txt: 29251) -.amazon.com/\?_encoding.*&linkcode -# ||altushost.com/docs/$third-party (easylist.txt: 29250) -.altushost.com/docs/ -# ||alpsat.com/banner/ (easylist.txt: 29249) -.alpsat.com/banner/ -# ||alluremedia.com.au^*/campaigns/ (easylist.txt: 29248) -.alluremedia.com.au/.*/campaigns/ -# ||allsend.com/public/assets/images/ (easylist.txt: 29247) -.allsend.com/public/assets/images/ -# ||allposters.com^*/banners/ (easylist.txt: 29246) -.allposters.com/.*/banners/ -# ||algovid.com/player/get_player_vasts? (easylist.txt: 29245) -.algovid.com/player/get_player_vasts\? -# ||algart.net*_banner_$third-party (easylist.txt: 29244) -.algart.net*./.*_banner_ -# ||alexa.com^*/promotebuttons/ (easylist.txt: 29243) -.alexa.com/.*/promotebuttons/ -# ||akamaihd.net^*/web/pdk/swf/freewheel.swf?$third-party (easylist.txt: 29242) -.akamaihd.net/.*/web/pdk/swf/freewheel\.swf\? -# ||akamaihd.net/ssa/*?zoneid=$subdocument (easylist.txt: 29241) -.akamaihd.net/ssa/.*\?zoneid= -# ||akamaihd.net/lmedianet.js (easylist.txt: 29239) -.akamaihd.net/lmedianet\.js -# ||akamai.net^*/pics.drugstore.com/prodimg/promo/ (easylist.txt: 29238) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# ||akamai.net^*/espnpreroll/$object-subrequest (easylist.txt: 29237) -.akamai.net/.*/espnpreroll/ -# ||akamai.net^*.247realmedia.com/$third-party (easylist.txt: 29236) -.akamai.net/.*\.247realmedia\.com/ -# ||ak1.imgaft.com^$third-party (easylist.txt: 29235) -.ak1.imgaft.com -# ||ak.imgaft.com^$third-party (easylist.txt: 29234) -.ak.imgaft.com -# ||ais.abacast.com^ (easylist.txt: 29233) -.ais.abacast.com -# ||airvpn.org/images/promotional/ (easylist.txt: 29232) -.airvpn.org/images/promotional/ -# ||airpushmarketing.s3.amazonaws.com^ (easylist.txt: 29231) -.airpushmarketing.s3.amazonaws.com -# ||ahlanlive.com/newsletters/banners/$third-party (easylist.txt: 29230) -.ahlanlive.com/newsletters/banners/ -# ||agoda.net/banners/ (easylist.txt: 29229) -.agoda.net/banners/ -# ||agenda.complex.com^ (easylist.txt: 29228) -.agenda.complex.com -# ||afimg.liveperson.com^$third-party (easylist.txt: 29227) -.afimg.liveperson.com -# ||affutdmedia.com^$third-party (easylist.txt: 29226) -.affutdmedia.com -# ||affiliation.fotovista.com^ (easylist.txt: 29225) -.affiliation.fotovista.com -# ||affiliation.filestube.com^$third-party (easylist.txt: 29224) -.affiliation.filestube.com -# ||affiliatesmedia.sbobet.com^ (easylist.txt: 29223) -.affiliatesmedia.sbobet.com -# ||affiliates.picaboocorp.com^$third-party (easylist.txt: 29222) -.affiliates.picaboocorp.com -# ||affiliates.lynda.com^$third-party (easylist.txt: 29221) -.affiliates.lynda.com -# ||affiliates.homestead.com^$third-party (easylist.txt: 29220) -.affiliates.homestead.com -# ||affiliates.bookdepository.com^$third-party (easylist.txt: 29219) -.affiliates.bookdepository.com -# ||affiliates.bookdepository.co.uk^$third-party (easylist.txt: 29218) -.affiliates.bookdepository.co.uk -# ||affiliates.allposters.com^ (easylist.txt: 29217) -.affiliates.allposters.com -# ||affiliates-cdn.mozilla.org^$third-party (easylist.txt: 29216) -.affiliates-cdn.mozilla.org -# ||affiliateprogram.keywordspy.com^ (easylist.txt: 29215) -.affiliateprogram.keywordspy.com -# ||affiliatehub.skybet.com^$third-party (easylist.txt: 29214) -.affiliatehub.skybet.com -# ||affiliate.mediatemple.net^$third-party (easylist.txt: 29213) -.affiliate.mediatemple.net -# ||affiliate.juno.co.uk^$third-party (easylist.txt: 29212) -.affiliate.juno.co.uk -# ||affil.mupromo.com^ (easylist.txt: 29211) -.affil.mupromo.com -# ||aff.svjump.com^ (easylist.txt: 29210) -.aff.svjump.com -# ||aff.marathonbet.com^ (easylist.txt: 29209) -.aff.marathonbet.com -# ||aff.eteachergroup.com^ (easylist.txt: 29208) -.aff.eteachergroup.com -# ||aff.cupidplc.com^$third-party (easylist.txt: 29207) -.aff.cupidplc.com -# ||afcdn.com^*/ova-jw.swf$object-subrequest (easylist.txt: 29206) -.afcdn.com/.*/ova-jw\.swf -# ||adziff.com^*/zdcse.min.js (easylist.txt: 29205) -.adziff.com/.*/zdcse\.min\.js -# ||adz.zwee.ly^ (easylist.txt: 29204) -.adz.zwee.ly -# ||advanced-intelligence.com/banner (easylist.txt: 29203) -.advanced-intelligence.com/banner -# ||adstest.zaman.com.tr^$third-party (easylist.txt: 29202) -.adstest.zaman.com.tr -# ||adss.dotdo.net^ (easylist.txt: 29201) -.adss.dotdo.net -# ||adsrv.eacdn.com^$third-party (easylist.txt: 29200) -.adsrv.eacdn.com -# ||adserv.legitreviews.com^$third-party (easylist.txt: 29199) -.adserv.legitreviews.com -# ||adscaspion.appspot.com^ (easylist.txt: 29198) -.adscaspion.appspot.com -# ||ads.tremorhub.com^ (easylist.txt: 29197) -.ads.tremorhub.com -# ||ads.mp.mydas.mobi^ (easylist.txt: 29196) -.ads.mp.mydas.mobi -# ||ads.dynamicyield.com^$third-party (easylist.txt: 29195) -.ads.dynamicyield.com -# ||adr-*.vindicosuite.com^ (easylist.txt: 29194) -.adr-*./.*\.vindicosuite\.com[^\w%.-] -.adr-*.vindicosuite.com -# ||adplus.goo.mx^ (easylist.txt: 29193) -.adplus.goo.mx -# ||adn.ebay.com^ (easylist.txt: 29192) -.adn.ebay.com -# ||adm.shinobi.jp^$third-party (easylist.txt: 29191) -.adm.shinobi.jp -# ||adlandpro.com^$third-party (easylist.txt: 29190) -.adlandpro.com -# ||adingo.jp.eimg.jp^ (easylist.txt: 29189) -.adingo.jp.eimg.jp -# ||adfoc.us/js/$third-party (easylist.txt: 29188) -.adfoc.us/js/ -# ||adf.ly^*/link-converter.js$third-party (easylist.txt: 29187) -.adf.ly/.*/link-converter\.js -# ||adf.ly/images/banners/ (easylist.txt: 29185) -.adf.ly/images/banners/ -# ||addme.com/images/addme_$third-party (easylist.txt: 29183) -.addme.com/images/addme_ -# ||add.bugun.com.tr^ (easylist.txt: 29182) -.add.bugun.com.tr -# ||adap.tv/redir/plugins3/$object-subrequest (easylist.txt: 29181) -.adap.tv/redir/plugins3/ -# ||adap.tv/redir/plugins/$object-subrequest (easylist.txt: 29180) -.adap.tv/redir/plugins/ -# ||adap.tv/redir/client/static/as3adplayer.swf (easylist.txt: 29179) -.adap.tv/redir/client/static/as3adplayer\.swf -# ||ad2links.com/js/$third-party (easylist.txt: 29178) -.ad2links.com/js/ -# ||ad.zaman.com.tr^$third-party (easylist.txt: 29177) -.ad.zaman.com.tr -# ||ad.wsod.com^$third-party (easylist.txt: 29176) -.ad.wsod.com -# ||ad.winningpartner.com^ (easylist.txt: 29175) -.ad.winningpartner.com -# ||ad.vidaroo.com^ (easylist.txt: 29174) -.ad.vidaroo.com -# ||ad.valuecalling.com^$third-party (easylist.txt: 29173) -.ad.valuecalling.com -# ||ad.sponsoreo.com^$third-party (easylist.txt: 29172) -.ad.sponsoreo.com -# ||ad.spielothek.so^ (easylist.txt: 29171) -.ad.spielothek.so -# ||ad.smartclip.net^ (easylist.txt: 29170) -.ad.smartclip.net -# ||ad.sharethis.com^$third-party (easylist.txt: 29169) -.ad.sharethis.com -# ||ad.sensismediasmart.com.au^ (easylist.txt: 29168) -.ad.sensismediasmart.com.au -# ||ad.reklamport.com^ (easylist.txt: 29167) -.ad.reklamport.com -# ||ad.realmcdn.net^$third-party (easylist.txt: 29166) -.ad.realmcdn.net -# ||ad.rambler.ru^ (easylist.txt: 29165) -.ad.rambler.ru -# ||ad.r.worldssl.net^ (easylist.txt: 29164) -.ad.r.worldssl.net -# ||ad.proxy.sh^ (easylist.txt: 29163) -.ad.proxy.sh -# ||ad.premiumonlinemedia.com^$third-party (easylist.txt: 29162) -.ad.premiumonlinemedia.com -# ||ad.pickple.net^ (easylist.txt: 29161) -.ad.pickple.net -# ||ad.outsidehub.com^ (easylist.txt: 29160) -.ad.outsidehub.com -# ||ad.openmultimedia.biz^ (easylist.txt: 29159) -.ad.openmultimedia.biz -# ||ad.netcommunities.com^$third-party (easylist.txt: 29158) -.ad.netcommunities.com -# ||ad.mygamesol.com^$third-party (easylist.txt: 29157) -.ad.mygamesol.com -# ||ad.mesomorphosis.com^ (easylist.txt: 29156) -.ad.mesomorphosis.com -# ||ad.mail.ru^ (easylist.txt: 29155) -.ad.mail.ru -# ||ad.livere.co.kr^ (easylist.txt: 29154) -.ad.livere.co.kr -# ||ad.linkstorms.com^$third-party (easylist.txt: 29153) -.ad.linkstorms.com -# ||ad.lijit.com^$third-party (easylist.txt: 29152) -.ad.lijit.com -# ||ad.jokeroo.com^$third-party (easylist.txt: 29151) -.ad.jokeroo.com -# ||ad.jamba.net^ (easylist.txt: 29150) -.ad.jamba.net -# ||ad.indomp3z.us^$third-party (easylist.txt: 29149) -.ad.indomp3z.us -# ||ad.imad.co.kr^$third-party (easylist.txt: 29148) -.ad.imad.co.kr -# ||ad.idgtn.net^ (easylist.txt: 29147) -.ad.idgtn.net -# ||ad.icasthq.com^ (easylist.txt: 29146) -.ad.icasthq.com -# ||ad.ghfusion.com^$third-party (easylist.txt: 29145) -.ad.ghfusion.com -# ||ad.foxnetworks.com^ (easylist.txt: 29144) -.ad.foxnetworks.com -# ||ad.flux.com^ (easylist.txt: 29143) -.ad.flux.com -# ||ad.e-kolay.net^$third-party (easylist.txt: 29142) -.ad.e-kolay.net -# ||ad.bitmedia.io^ (easylist.txt: 29141) -.ad.bitmedia.io -# ||ad.aquamediadirect.com^$third-party (easylist.txt: 29140) -.ad.aquamediadirect.com -# ||ad.accessmediaproductions.com^ (easylist.txt: 29138) -.ad.accessmediaproductions.com -# ||ad.about.co.kr^ (easylist.txt: 29137) -.ad.about.co.kr -# ||ad.23blogs.com^$third-party (easylist.txt: 29136) -.ad.23blogs.com -# ||ablacrack.com/popup-pvd.js$third-party (easylist.txt: 29135) -.ablacrack.com/popup-pvd\.js -# ||abacast.com/banner/ (easylist.txt: 29134) -.abacast.com/banner/ -# ||aadvertismentt.com^$subdocument (easylist.txt: 29133) -.aadvertismentt.com -# ||a1channel.net/img/watch_now.gif (easylist.txt: 29132) -.a1channel.net/img/watch_now\.gif -# ||a1channel.net/img/downloadbtn2.png (easylist.txt: 29131) -.a1channel.net/img/downloadbtn2\.png -# ||a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com^ (easylist.txt: 29130) -.a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com -# ||a.watershed-publishing.com^ (easylist.txt: 29129) -.a.watershed-publishing.com -# ||a.ucoz.net^ (easylist.txt: 29128) -.a.ucoz.net -# ||a.livesportmedia.eu^ (easylist.txt: 29127) -.a.livesportmedia.eu -# ||96.9.176.245^$third-party (easylist.txt: 29126) -.96.9.176.245 -# ||80.94.76.4/abd.php? (easylist.txt: 29124) -.80.94.76.4/abd\.php\? -# ||770.com/banniere.php? (easylist.txt: 29123) -.770.com/banniere\.php\? -# ||6theory.com/pub/ (easylist.txt: 29122) -.6theory.com/pub/ -# ||4getlikes.com/promo/ (easylist.txt: 29119) -.4getlikes.com/promo/ -# ||3dots.co.il/pop/ (easylist.txt: 29118) -.3dots.co.il/pop/ -# ||360pal.com/ads/$third-party (easylist.txt: 29117) -.360pal.com/ads/ -# ||2yu.in/banner/$third-party (easylist.txt: 29116) -.2yu.in/banner/ -# ||2leep.com/ticker2/$third-party (easylist.txt: 29115) -.2leep.com/ticker2/ -# ||2beon.co.kr/nad/$third-party (easylist.txt: 29114) -.2beon.co.kr/nad/ -# ||24hrlikes.com/images/$third-party (easylist.txt: 29113) -.24hrlikes.com/images/ -# ||24casino.cz/poker300-$third-party (easylist.txt: 29112) -.24casino.cz/poker300- -# ||247hd.net/ad| (easylist.txt: 29111) -.247hd.net/ad$ -# ||24.com//flashplayer/ova-jw.swf$object-subrequest (easylist.txt: 29110) -# ||1whois.org/static/popup.js (easylist.txt: 29105) -.1whois.org/static/popup\.js -# ||1stag.com/main/img/banners/ (easylist.txt: 29104) -.1stag.com/main/img/banners/ -# ||1page.co.za/affiliate/ (easylist.txt: 29103) -.1page.co.za/affiliate/ -# ||178.238.233.242/open.js (easylist.txt: 29102) -.178.238.233.242/open\.js -# ||178.17.164.58^$script,third-party (easylist.txt: 29101) -.178.17.164.58 -# ||12dayswidget.com/widgets/ (easylist.txt: 29098) -.12dayswidget.com/widgets/ -# ||110mb.com/images/banners/ (easylist.txt: 29097) -.110mb.com/images/banners/ -# ||110.45.173.103/ad/$third-party (easylist.txt: 29096) -.110.45.173.103/ad/ -# ||1-million-usd.com/images/banners/ (easylist.txt: 29093) -.1-million-usd.com/images/banners/ -# ||04stream.com/pop*.js (easylist.txt: 29092) -.04stream.com/pop.*\.js -# ||000webhost.com/images/banners/ (easylist.txt: 29091) -.000webhost.com/images/banners/ -# -api.adyoulike.com (easylist.txt: 29090) -/.*-api\.adyoulike\.com -.*-api.adyoulike.com*. -# ||y72yuyr9.com^$popup,third-party (easylist.txt: 29087) -.y72yuyr9.com -# ||xxxmatch.com^$popup (easylist.txt: 29086) -.xxxmatch.com -# ||xxxbunker.com^$popup,third-party (easylist.txt: 29085) -.xxxbunker.com -# ||xvika.net^$popup,third-party (easylist.txt: 29084) -.xvika.net -# ||xvika.com^$popup,third-party (easylist.txt: 29083) -.xvika.com -# ||xpeeps.com^$popup,third-party (easylist.txt: 29082) -.xpeeps.com -# ||xmatch.com^$popup (easylist.txt: 29081) -.xmatch.com -# ||xdtraffic.com^$popup,third-party (easylist.txt: 29080) -.xdtraffic.com -# ||x2porn.eu^$popup,third-party (easylist.txt: 29079) -.x2porn.eu -# ||watchmygf.com^$popup (easylist.txt: 29078) -.watchmygf.com -# ||voyeurbase.com^$popup,third-party (easylist.txt: 29077) -.voyeurbase.com -# ||vlexokrako.com^$popup (easylist.txt: 29076) -.vlexokrako.com -# ||turnefo.ru^$popup (easylist.txt: 29075) -.turnefo.ru -# ||trafficstars.com^$popup (easylist.txt: 29074) -.trafficstars.com -# ||trafficholder.com^$popup,third-party (easylist.txt: 29073) -.trafficholder.com -# ||trafficbroker.com^$popup (easylist.txt: 29072) -.trafficbroker.com -# ||trackvoluum.com^$popup (easylist.txt: 29071) -.trackvoluum.com -# ||targetingnow.com^$popup,third-party (easylist.txt: 29070) -.targetingnow.com -# ||socialsex.com^$popup,third-party (easylist.txt: 29069) -.socialsex.com -# ||socialsex.biz^$popup,third-party (easylist.txt: 29068) -.socialsex.biz -# ||sexintheuk.com^$popup,third-party (easylist.txt: 29067) -.sexintheuk.com -# ||sexflirtbook.com^$popup,third-party (easylist.txt: 29066) -.sexflirtbook.com -# ||sexad.net^$popup,third-party (easylist.txt: 29065) -.sexad.net -# ||sex-journey.com^$popup,third-party (easylist.txt: 29064) -.sex-journey.com -# ||setravieso.com^$popup,third-party (easylist.txt: 29063) -.setravieso.com -# ||sascentral.com^$popup,third-party (easylist.txt: 29062) -.sascentral.com -# ||royalads.net^$popup,third-party (easylist.txt: 29061) -.royalads.net -# ||reviewdollars.com^$popup,third-party (easylist.txt: 29060) -.reviewdollars.com -# ||reporo.net^$popup,third-party (easylist.txt: 29059) -.reporo.net -# ||repmbuycurl.com^$popup,third-party (easylist.txt: 29058) -.repmbuycurl.com -# ||prpops.com^$popup,third-party (easylist.txt: 29057) -.prpops.com -# ||prexista.com^$popup,third-party (easylist.txt: 29056) -.prexista.com -# ||pornbus.org^$popup (easylist.txt: 29055) -.pornbus.org -# ||popcash.net^$popup,third-party (easylist.txt: 29054) -.popcash.net -# ||plugrush.com^$popup,third-party (easylist.txt: 29053) -.plugrush.com -# ||plinx.net^$popup,third-party (easylist.txt: 29052) -.plinx.net -# ||playgirl.com^$popup (easylist.txt: 29051) -.playgirl.com -# ||pinkberrytube.com^$popup (easylist.txt: 29050) -.pinkberrytube.com -# ||njmaq.com^$popup,third-party (easylist.txt: 29049) -.njmaq.com -# ||needlive.com^$popup (easylist.txt: 29048) -.needlive.com -# ||naughtyplayful.com^$popup,third-party (easylist.txt: 29047) -.naughtyplayful.com -# ||loltrk.com^$popup,third-party (easylist.txt: 29046) -.loltrk.com -# ||legacyminerals.net^$popup,third-party (easylist.txt: 29045) -.legacyminerals.net -# ||kaizentraffic.com^$popup,third-party (easylist.txt: 29044) -.kaizentraffic.com -# ||juicyads.com^$popup,third-party (easylist.txt: 29043) -.juicyads.com -# ||ipvertising.com^$popup (easylist.txt: 29042) -.ipvertising.com -# ||indianfriendfinder.com^$popup,third-party (easylist.txt: 29041) -.indianfriendfinder.com -# ||imgcarry.com^$popup,third-party (easylist.txt: 29040) -.imgcarry.com -# ||imagesnake.com^$popup,third-party (easylist.txt: 29039) -.imagesnake.com -# ||hornymatches.com^$popup,third-party (easylist.txt: 29038) -.hornymatches.com -# ||hizlireklam.com^$popup,third-party (easylist.txt: 29037) -.hizlireklam.com -# ||herezera.com^$popup (easylist.txt: 29036) -.herezera.com -# ||hapend.biz^$popup,third-party (easylist.txt: 29035) -.hapend.biz -# ||hanaprop.com^$popup,third-party (easylist.txt: 29034) -.hanaprop.com -# ||gothot.org^$popup,third-party (easylist.txt: 29033) -.gothot.org -# ||freewebcams.com^$popup,third-party (easylist.txt: 29032) -.freewebcams.com -# ||freecamsexposed.com^$popup (easylist.txt: 29031) -.freecamsexposed.com -# ||fpctraffic2.com^$popup,third-party (easylist.txt: 29030) -.fpctraffic2.com -# ||fox-forden.ru^$popup,third-party (easylist.txt: 29029) -.fox-forden.ru -# ||foaks.com^$popup,third-party (easylist.txt: 29028) -.foaks.com -# ||flagads.net^$popup (easylist.txt: 29027) -.flagads.net -# ||filthads.com^$popup,third-party (easylist.txt: 29026) -.filthads.com -# ||fbay.tv^$popup (easylist.txt: 29025) -.fbay.tv -# ||exogripper.com^$popup (easylist.txt: 29024) -.exogripper.com -# ||exgfpunished.com^$popup,third-party (easylist.txt: 29023) -.exgfpunished.com -# ||everyporn.net^$popup,third-party (easylist.txt: 29022) -.everyporn.net -# ||ertya.com^$popup (easylist.txt: 29021) -.ertya.com -# ||ero-advertising.com^$popup,third-party (easylist.txt: 29020) -.ero-advertising.com -# ||ekod.info^$popup,third-party (easylist.txt: 29019) -.ekod.info -# ||ebocornac.com^$popup,third-party (easylist.txt: 29018) -.ebocornac.com -# ||easysexdate.com^$popup (easylist.txt: 29017) -.easysexdate.com -# ||dverser.ru^$popup,third-party (easylist.txt: 29016) -.dverser.ru -# ||doublegear.com^$popup,third-party (easylist.txt: 29015) -.doublegear.com -# ||connexionsafe.com^$popup (easylist.txt: 29014) -.connexionsafe.com -# ||chtic.net^$popup,third-party (easylist.txt: 29013) -.chtic.net -# ||chokertraffic.com^$popup,third-party (easylist.txt: 29012) -.chokertraffic.com -# ||c4tracking01.com^$popup,third-party (easylist.txt: 29011) -.c4tracking01.com -# ||buy404s.com^$popup (easylist.txt: 29010) -.buy404s.com -# ||bitterstrawberry.com^$popup (easylist.txt: 29009) -.bitterstrawberry.com -# ||banners.cams.com^$popup,third-party (easylist.txt: 29008) -.banners.cams.com -# ||aquete.com^$popup,third-party (easylist.txt: 29007) -.aquete.com -# ||adxpansion.com^$popup,third-party (easylist.txt: 29006) -.adxpansion.com -# ||adxite.com^$popup,third-party (easylist.txt: 29005) -.adxite.com -# ||adultmoda.com^$popup,third-party (easylist.txt: 29004) -.adultmoda.com -# ||adultadworld.com^$popup,third-party (easylist.txt: 29003) -.adultadworld.com -# ||adultadmedia.com^$popup,third-party (easylist.txt: 29002) -.adultadmedia.com -# ||adtgs.com^$popup (easylist.txt: 29001) -.adtgs.com -# ||adsnero.website^$popup,third-party (easylist.txt: 29000) -.adsnero.website -# ||45i73jv6.com^$popup,third-party (easylist.txt: 28999) -.45i73jv6.com -# ||3questionsgetthegirl.com^$popup (easylist.txt: 28998) -.3questionsgetthegirl.com -# ||3file.info^$popup,third-party (easylist.txt: 28997) -.3file.info -# ||33traffic.com^$popup (easylist.txt: 28996) -.33traffic.com -# ||reporo.net^$third-party (easylist.txt: 28994) -.reporo.net -# ||ziphentai.com^$third-party (easylist.txt: 28992) -.ziphentai.com -# ||zinzimo.info^$third-party (easylist.txt: 28991) -.zinzimo.info -# ||zenkreka.com^$third-party (easylist.txt: 28990) -.zenkreka.com -# ||zboac.com^$third-party (easylist.txt: 28989) -.zboac.com -# ||yx0banners.com^$third-party (easylist.txt: 28988) -.yx0banners.com -# ||yuppads.com^$third-party (easylist.txt: 28987) -.yuppads.com -# ||yu0123456.com^$third-party (easylist.txt: 28986) -.yu0123456.com -# ||ypmadserver.com^$third-party (easylist.txt: 28985) -.ypmadserver.com -# ||yourdatelink.com^$third-party (easylist.txt: 28983) -.yourdatelink.com -# ||your-big.com^$third-party (easylist.txt: 28982) -.your-big.com -# ||yoshatia.com^$third-party (easylist.txt: 28981) -.yoshatia.com -# ||yobihost.com^$third-party (easylist.txt: 28980) -.yobihost.com -# ||yfum.com^$third-party (easylist.txt: 28979) -.yfum.com -# ||yesmessenger.com^$third-party (easylist.txt: 28978) -.yesmessenger.com -# ||yazcash.com^$third-party (easylist.txt: 28977) -.yazcash.com -# ||y72yuyr9.com^$third-party (easylist.txt: 28976) -.y72yuyr9.com -# ||xxxwebtraffic.com^$third-party (easylist.txt: 28975) -.xxxwebtraffic.com -# ||xxxvipporno.com^$third-party (easylist.txt: 28974) -.xxxvipporno.com -# ||xxxmatch.com^$third-party (easylist.txt: 28973) -.xxxmatch.com -# ||xxxlnk.com^$third-party (easylist.txt: 28972) -.xxxlnk.com -# ||xxxex.com^$third-party (easylist.txt: 28971) -.xxxex.com -# ||xxxblackbook.com^$third-party (easylist.txt: 28970) -.xxxblackbook.com -# ||xxxbannerswap.com^$third-party (easylist.txt: 28969) -.xxxbannerswap.com -# ||xxxallaccesspass.com^$third-party (easylist.txt: 28968) -.xxxallaccesspass.com -# ||xxltr.com^$third-party (easylist.txt: 28967) -.xxltr.com -# ||xpop.co^$third-party (easylist.txt: 28966) -.xpop.co -# ||xpollo.com^$third-party (easylist.txt: 28965) -.xpollo.com -# ||xoliter.com^$third-party (easylist.txt: 28964) -.xoliter.com -# ||xmediawebs.net^$third-party (easylist.txt: 28963) -.xmediawebs.net -# ||xlovecam.com^$third-party (easylist.txt: 28962) -.xlovecam.com -# ||xidx.org^$third-party (easylist.txt: 28961) -.xidx.org -# ||xhamstercams.com^$third-party (easylist.txt: 28960) -.xhamstercams.com -# ||xfuckbook.com^$third-party (easylist.txt: 28959) -.xfuckbook.com -# ||xf43506e8.pw^$third-party (easylist.txt: 28958) -.xf43506e8.pw -# ||xclicks.net^$third-party (easylist.txt: 28957) -.xclicks.net -# ||xclickdirect.com^$third-party (easylist.txt: 28956) -.xclickdirect.com -# ||xaxoro.com^^$third-party (easylist.txt: 28955) -.xaxoro.com/[^\w%.-] -# ||x3v66zlz.com^$third-party (easylist.txt: 28954) -.x3v66zlz.com -# ||x-exchanger.co.uk^$third-party (easylist.txt: 28953) -.x-exchanger.co.uk -# ||x-adservice.com^$third-party (easylist.txt: 28952) -.x-adservice.com -# ||wwwmobiroll.com^$third-party (easylist.txt: 28951) -.wwwmobiroll.com -# ||wqlkp.com^$third-party (easylist.txt: 28950) -.wqlkp.com -# ||worldsbestcams.com^$third-party (easylist.txt: 28949) -.worldsbestcams.com -# ||wood-pen.com^$third-party (easylist.txt: 28948) -.wood-pen.com -# ||wma.io^$third-party (easylist.txt: 28947) -.wma.io -# ||wildmatch.com^$third-party (easylist.txt: 28946) -.wildmatch.com -# ||wildhookups.com^$third-party (easylist.txt: 28945) -.wildhookups.com -# ||wifelovers.com^$third-party (easylist.txt: 28944) -.wifelovers.com -# ||whaleads.com^$third-party (easylist.txt: 28943) -.whaleads.com -# ||wetpeachcash.com^$third-party (easylist.txt: 28942) -.wetpeachcash.com -# ||weselltraffic.com^$third-party (easylist.txt: 28941) -.weselltraffic.com -# ||weownthetraffic.com^$third-party (easylist.txt: 28940) -.weownthetraffic.com -# ||webteaser.ru^$third-party (easylist.txt: 28939) -.webteaser.ru -# ||webstats.com.br^$third-party (easylist.txt: 28938) -.webstats.com.br -# ||websitepromoserver.com^$third-party (easylist.txt: 28937) -.websitepromoserver.com -# ||webclickmanager.com^$third-party (easylist.txt: 28936) -.webclickmanager.com -# ||webclickengine.com^$third-party (easylist.txt: 28935) -.webclickengine.com -# ||webcampromotions.com^$third-party (easylist.txt: 28934) -.webcampromotions.com -# ||webcambait.com^$third-party (easylist.txt: 28933) -.webcambait.com -# ||watchmygf.to^$third-party (easylist.txt: 28932) -.watchmygf.to -# ||warsomnet.com^$third-party (easylist.txt: 28931) -.warsomnet.com -# ||wamcash.com^$third-party (easylist.txt: 28930) -.wamcash.com -# ||walprater.com^$third-party (easylist.txt: 28929) -.walprater.com -# ||vsexshop.ru^$third-party (easylist.txt: 28928) -.vsexshop.ru -# ||vrstage.com^$third-party (easylist.txt: 28927) -.vrstage.com -# ||vroll.net^$third-party (easylist.txt: 28926) -.vroll.net -# ||voluumtrk.com^$third-party (easylist.txt: 28925) -.voluumtrk.com -# ||vogozae.ru^$third-party (easylist.txt: 28924) -.vogozae.ru -# ||vogotita.com^$third-party (easylist.txt: 28923) -.vogotita.com -# ||vogorana.ru^$third-party (easylist.txt: 28922) -.vogorana.ru -# ||vogopita.com^$third-party (easylist.txt: 28921) -.vogopita.com -# ||vod-cash.com^$third-party (easylist.txt: 28920) -.vod-cash.com -# ||vlogexpert.com^$third-party (easylist.txt: 28919) -.vlogexpert.com -# ||vlexokrako.com^$third-party (easylist.txt: 28918) -.vlexokrako.com -# ||vktr073.net^$third-party (easylist.txt: 28917) -.vktr073.net -# ||vividcash.com^$third-party (easylist.txt: 28916) -.vividcash.com -# ||virtuagirlhd.com^$third-party (easylist.txt: 28915) -.virtuagirlhd.com -# ||viewrtb.com^$third-party (easylist.txt: 28914) -.viewrtb.com -# ||video-people.com^$third-party (easylist.txt: 28913) -.video-people.com -# ||verticalaffiliation.com^$third-party (easylist.txt: 28912) -.verticalaffiliation.com -# ||ver-pelis.net^$third-party (easylist.txt: 28911) -.ver-pelis.net -# ||uxernab.com^$third-party (easylist.txt: 28910) -.uxernab.com -# ||uuidksinc.net^$third-party (easylist.txt: 28909) -.uuidksinc.net -# ||unlimedia.net^$third-party (easylist.txt: 28908) -.unlimedia.net -# ||unaspajas.com^$third-party (easylist.txt: 28907) -.unaspajas.com -# ||ukreggae.ru^$third-party (easylist.txt: 28906) -.ukreggae.ru -# ||tynyh.com^$third-party (easylist.txt: 28905) -.tynyh.com -# ||txxx.com^$third-party (easylist.txt: 28904) -.txxx.com -# ||twistyscash.com^$third-party (easylist.txt: 28903) -.twistyscash.com -# ||tvzavr.ru^$third-party (easylist.txt: 28902) -.tvzavr.ru -# ||tufosex.com.br^$third-party (easylist.txt: 28901) -.tufosex.com.br -# ||tubedspots.com^$third-party (easylist.txt: 28900) -.tubedspots.com -# ||tubeadnetwork.com^$third-party (easylist.txt: 28899) -.tubeadnetwork.com -# ||ttlmodels.com^$third-party (easylist.txt: 28898) -.ttlmodels.com -# ||try9.com^$third-party (easylist.txt: 28897) -.try9.com -# ||trw12.com^$third-party (easylist.txt: 28896) -.trw12.com -# ||trustedadserver.com^$third-party (easylist.txt: 28895) -.trustedadserver.com -# ||transexy.it^$third-party (easylist.txt: 28894) -.transexy.it -# ||trafogon.net^$third-party (easylist.txt: 28893) -.trafogon.net -# ||traficmax.fr^$third-party (easylist.txt: 28892) -.traficmax.fr -# ||trafficundercontrol.com^$third-party (easylist.txt: 28891) -.trafficundercontrol.com -# ||trafficstars.com^$third-party (easylist.txt: 28890) -.trafficstars.com -# ||trafficshop.com^$third-party (easylist.txt: 28889) -.trafficshop.com -# ||trafficpimps.com^$third-party (easylist.txt: 28888) -.trafficpimps.com -# ||trafficlearn.com^$third-party (easylist.txt: 28887) -.trafficlearn.com -# ||traffichunt.com^$third-party (easylist.txt: 28886) -.traffichunt.com -# ||trafficholder.com^$third-party (easylist.txt: 28885) -.trafficholder.com -# ||traffic.ru^$third-party (easylist.txt: 28884) -.traffic.ru -# ||traffic-in.com^$third-party (easylist.txt: 28883) -.traffic-in.com -# ||traffbiz.ru^$third-party (easylist.txt: 28882) -.traffbiz.ru -# ||trackerodss.eu^$third-party (easylist.txt: 28881) -.trackerodss.eu -# ||tracker2kss.eu^$third-party (easylist.txt: 28880) -.tracker2kss.eu -# ||tracelive.ru^$third-party (easylist.txt: 28879) -.tracelive.ru -# ||tossoffads.com^$third-party (easylist.txt: 28878) -.tossoffads.com -# ||torrent-anime.ru^$third-party (easylist.txt: 28877) -.torrent-anime.ru -# ||topbucks.com^$third-party (easylist.txt: 28876) -.topbucks.com -# ||top-sponsor.com^$third-party (easylist.txt: 28875) -.top-sponsor.com -# ||toget.ru^$third-party (easylist.txt: 28874) -.toget.ru -# ||todayssn.com^$third-party (easylist.txt: 28873) -.todayssn.com -# ||tmserver-2.net^$third-party (easylist.txt: 28872) -.tmserver-2.net -# ||tmserver-1.com^$third-party (easylist.txt: 28871) -.tmserver-1.com -# ||tm-core.net^$third-party (easylist.txt: 28870) -.tm-core.net -# ||tkhigh.com^$third-party (easylist.txt: 28869) -.tkhigh.com -# ||tizernet.com^$third-party (easylist.txt: 28868) -.tizernet.com -# ||titsbro.pw^$third-party (easylist.txt: 28867) -.titsbro.pw -# ||titsbro.org^$third-party (easylist.txt: 28866) -.titsbro.org -# ||titsbro.net^$third-party (easylist.txt: 28865) -.titsbro.net -# ||tinyweene.com^$third-party (easylist.txt: 28864) -.tinyweene.com -# ||tingrinter.com^$third-party (easylist.txt: 28863) -.tingrinter.com -# ||timteen.com^$third-party (easylist.txt: 28862) -.timteen.com -# ||thumbnail-galleries.net^$third-party (easylist.txt: 28861) -.thumbnail-galleries.net -# ||thesocialsexnetwork.com^$third-party (easylist.txt: 28860) -.thesocialsexnetwork.com -# ||thepayporn.com^$third-party (easylist.txt: 28859) -.thepayporn.com -# ||thebunsenburner.com^$third-party (easylist.txt: 28858) -.thebunsenburner.com -# ||the-adult-company.com^$third-party (easylist.txt: 28857) -.the-adult-company.com -# ||teendestruction.com^$third-party (easylist.txt: 28856) -.teendestruction.com -# ||tech-board.com^$third-party (easylist.txt: 28855) -.tech-board.com -# ||teaservizio.com^$third-party (easylist.txt: 28854) -.teaservizio.com -# ||teasernet.ru^$third-party (easylist.txt: 28853) -.teasernet.ru -# ||tarkita.ru^$third-party (easylist.txt: 28852) -.tarkita.ru -# ||targettrafficmarketing.net^$third-party (easylist.txt: 28851) -.targettrafficmarketing.net -# ||targetingnow.com^$third-party (easylist.txt: 28850) -.targetingnow.com -# ||talk-blog.com^$third-party (easylist.txt: 28849) -.talk-blog.com -# ||sweetstudents.com^$third-party (easylist.txt: 28848) -.sweetstudents.com -# ||sweetmedia.org^$third-party (easylist.txt: 28847) -.sweetmedia.org -# ||sv2.biz^$third-party (easylist.txt: 28846) -.sv2.biz -# ||sunnysmedia.com^$third-party (easylist.txt: 28845) -.sunnysmedia.com -# ||stripsaver.com^$third-party (easylist.txt: 28844) -.stripsaver.com -# ||streamateaccess.com^$third-party (easylist.txt: 28843) -.streamateaccess.com -# ||sterrencash.nl^$third-party (easylist.txt: 28842) -.sterrencash.nl -# ||steamtraffic.com^$third-party (easylist.txt: 28841) -.steamtraffic.com -# ||stat-data.net^$third-party (easylist.txt: 28840) -.stat-data.net -# ||startwebpromo.com^$third-party (easylist.txt: 28839) -.startwebpromo.com -# ||startede.com^$third-party (easylist.txt: 28838) -.startede.com -# ||squeeder.com^$third-party (easylist.txt: 28837) -.squeeder.com -# ||spunkycash.com^$third-party (easylist.txt: 28836) -.spunkycash.com -# ||spcwm.com^$third-party (easylist.txt: 28835) -.spcwm.com -# ||sortow.ru^$third-party (easylist.txt: 28834) -.sortow.ru -# ||solutionsadultes.com^$third-party (easylist.txt: 28833) -.solutionsadultes.com -# ||socialsexnetwork.net^$third-party (easylist.txt: 28832) -.socialsexnetwork.net -# ||smutty.com^$third-party (easylist.txt: 28831) -.smutty.com -# ||sms-xxx.com^$third-party (easylist.txt: 28830) -.sms-xxx.com -# ||smartbn.ru^$third-party (easylist.txt: 28829) -.smartbn.ru -# ||slendastic.com^$third-party (easylist.txt: 28828) -.slendastic.com -# ||skeettools.com^$third-party (easylist.txt: 28827) -.skeettools.com -# ||sjosteras.com^$third-party (easylist.txt: 28826) -.sjosteras.com -# ||sixsigmatraffic.com^$third-party (easylist.txt: 28825) -.sixsigmatraffic.com -# ||siccash.com^$third-party (easylist.txt: 28824) -.siccash.com -# ||shopping-centres.org^$third-party (easylist.txt: 28823) -.shopping-centres.org -# ||sexypower.net^$third-party (easylist.txt: 28822) -.sexypower.net -# ||sexy-ch.com^$third-party (easylist.txt: 28821) -.sexy-ch.com -# ||sexvertise.com^$third-party (easylist.txt: 28820) -.sexvertise.com -# ||sextubecash.com^$third-party (easylist.txt: 28819) -.sextubecash.com -# ||sextracker.com^$third-party (easylist.txt: 28818) -.sextracker.com -# ||sexsearch.com^$third-party (easylist.txt: 28817) -.sexsearch.com -# ||sexplaycam.com^$third-party (easylist.txt: 28816) -.sexplaycam.com -# ||sexopages.com^$third-party (easylist.txt: 28815) -.sexopages.com -# ||sexole.com^$third-party (easylist.txt: 28814) -.sexole.com -# ||sexlist.com^$third-party (easylist.txt: 28813) -.sexlist.com -# ||sexdatecash.com^$third-party (easylist.txt: 28812) -.sexdatecash.com -# ||sexad.net^$third-party (easylist.txt: 28811) -.sexad.net -# ||sesxc.com^$third-party (easylist.txt: 28810) -.sesxc.com -# ||senkinar.com^$third-party (easylist.txt: 28809) -.senkinar.com -# ||seitentipp.com^$third-party (easylist.txt: 28808) -.seitentipp.com -# ||seemybucks.com^$third-party (easylist.txt: 28807) -.seemybucks.com -# ||seekbang.com^$third-party (easylist.txt: 28806) -.seekbang.com -# ||secretbehindporn.com^$third-party (easylist.txt: 28805) -.secretbehindporn.com -# ||searchx.eu^$third-party (easylist.txt: 28804) -.searchx.eu -# ||searchpeack.com^$third-party (easylist.txt: 28803) -.searchpeack.com -# ||scenesgirls.com^$third-party (easylist.txt: 28802) -.scenesgirls.com -# ||sbs-ad.com^$third-party (easylist.txt: 28801) -.sbs-ad.com -# ||sascentral.com^$third-party (easylist.txt: 28800) -.sascentral.com -# ||sancdn.net^$third-party (easylist.txt: 28799) -.sancdn.net -# ||safelinktracker.com^$third-party (easylist.txt: 28798) -.safelinktracker.com -# ||russianlovematch.com^$third-party (easylist.txt: 28797) -.russianlovematch.com -# ||runetki.com^$third-party (easylist.txt: 28796) -.runetki.com -# ||runetki.co^$third-party (easylist.txt: 28795) -.runetki.co -# ||rulerclick.ru^$third-party (easylist.txt: 28794) -.rulerclick.ru -# ||rulerclick.com^$third-party (easylist.txt: 28793) -.rulerclick.com -# ||rukplaza.com^$third-party (easylist.txt: 28792) -.rukplaza.com -# ||rubanners.com^$third-party (easylist.txt: 28791) -.rubanners.com -# ||rtbsystem.com^$third-party (easylist.txt: 28790) -.rtbsystem.com -# ||rsdisp.ru^$third-party (easylist.txt: 28789) -.rsdisp.ru -# ||royal-cash.com^$third-party (easylist.txt: 28788) -.royal-cash.com -# ||robotadserver.com^$third-party (easylist.txt: 28787) -.robotadserver.com -# ||rmkflouh.com^$third-party (easylist.txt: 28786) -.rmkflouh.com -# ||rmbn.net^$third-party (easylist.txt: 28785) -.rmbn.net -# ||rlogoro.ru^$third-party (easylist.txt: 28784) -.rlogoro.ru -# ||rivcash.com^$third-party (easylist.txt: 28783) -.rivcash.com -# ||ripbwing.com^$third-party (easylist.txt: 28782) -.ripbwing.com -# ||rexbucks.com^$third-party (easylist.txt: 28781) -.rexbucks.com -# ||retoxo.com^$third-party (easylist.txt: 28780) -.retoxo.com -# ||retargetpro.net^$third-party (easylist.txt: 28779) -.retargetpro.net -# ||reprak.com^$third-party (easylist.txt: 28778) -.reprak.com -# ||reliablebanners.com^$third-party (easylist.txt: 28777) -.reliablebanners.com -# ||redpineapplemedia.com^$third-party (easylist.txt: 28776) -.redpineapplemedia.com -# ||redlightcenter.com^$third-party (easylist.txt: 28775) -.redlightcenter.com -# ||redirectoptimizer.com^$third-party (easylist.txt: 28774) -.redirectoptimizer.com -# ||redcash.net^$third-party (easylist.txt: 28773) -.redcash.net -# ||realitytraffic.com^$third-party (easylist.txt: 28772) -.realitytraffic.com -# ||realitycash.com^$third-party (easylist.txt: 28771) -.realitycash.com -# ||realdatechat.com^$third-party (easylist.txt: 28770) -.realdatechat.com -# ||real2clean.ru^$third-party (easylist.txt: 28769) -.real2clean.ru -# ||reachword.com^$third-party (easylist.txt: 28768) -.reachword.com -# ||rdiul.com^$third-party (easylist.txt: 28767) -.rdiul.com -# ||rareru.ru^$third-party (easylist.txt: 28766) -.rareru.ru -# ||ramctrlgate.com^$third-party (easylist.txt: 28765) -.ramctrlgate.com -# ||ragazzeinvendita.com^$third-party (easylist.txt: 28764) -.ragazzeinvendita.com -# ||rack-media.com^$third-party (easylist.txt: 28763) -.rack-media.com -# ||r7e0zhv8.com^$third-party (easylist.txt: 28762) -.r7e0zhv8.com -# ||quexotac.com^$third-party (easylist.txt: 28761) -.quexotac.com -# ||queronamoro.com^$third-party (easylist.txt: 28760) -.queronamoro.com -# ||quagodex.com^$third-party (easylist.txt: 28759) -.quagodex.com -# ||pyiel2bz.com^$third-party (easylist.txt: 28758) -.pyiel2bz.com -# ||putanapartners.com^$third-party (easylist.txt: 28757) -.putanapartners.com -# ||putags.com^$third-party (easylist.txt: 28756) -.putags.com -# ||pussyeatingclubcams.com^$third-party (easylist.txt: 28755) -.pussyeatingclubcams.com -# ||pussyeatingclub.com^$third-party (easylist.txt: 28754) -.pussyeatingclub.com -# ||publish4.com^$third-party (easylist.txt: 28753) -.publish4.com -# ||ptwebcams.com^$third-party (easylist.txt: 28752) -.ptwebcams.com -# ||ptrfc.com^$third-party (easylist.txt: 28751) -.ptrfc.com -# ||ptclassic.com^$third-party (easylist.txt: 28750) -.ptclassic.com -# ||psma01.com^$third-party (easylist.txt: 28749) -.psma01.com -# ||prscripts.com^$third-party (easylist.txt: 28748) -.prscripts.com -# ||protizer.ru^$third-party (easylist.txt: 28747) -.protizer.ru -# ||protect-x.com^$third-party (easylist.txt: 28746) -.protect-x.com -# ||promowebstar.com^$third-party (easylist.txt: 28745) -.promowebstar.com -# ||promotools.biz^$third-party (easylist.txt: 28744) -.promotools.biz -# ||promotion-campaigns.com^$third-party (easylist.txt: 28743) -.promotion-campaigns.com -# ||promocionesweb.com^$third-party (easylist.txt: 28742) -.promocionesweb.com -# ||promo4partners.com^$third-party (easylist.txt: 28741) -.promo4partners.com -# ||program3.com^$third-party (easylist.txt: 28740) -.program3.com -# ||profitstat.biz^$third-party (easylist.txt: 28739) -.profitstat.biz -# ||profistats.net^$third-party (easylist.txt: 28738) -.profistats.net -# ||privatewebseiten.com^$third-party (easylist.txt: 28737) -.privatewebseiten.com -# ||privateseiten.net^$third-party (easylist.txt: 28736) -.privateseiten.net -# ||private4.com^$third-party (easylist.txt: 28735) -.private4.com -# ||privacyprotector.com^$third-party (easylist.txt: 28734) -.privacyprotector.com -# ||premiumhdv.com^$third-party (easylist.txt: 28733) -.premiumhdv.com -# ||premature-ejaculation-causes.org^$third-party (easylist.txt: 28732) -.premature-ejaculation-causes.org -# ||ppc-direct.com^$third-party (easylist.txt: 28731) -.ppc-direct.com -# ||pourmajeurs.com^$third-party (easylist.txt: 28730) -.pourmajeurs.com -# ||portable-basketball.com^$third-party (easylist.txt: 28729) -.portable-basketball.com -# ||porntrack.com^$third-party (easylist.txt: 28728) -.porntrack.com -# ||pornoow.com^$third-party (easylist.txt: 28727) -.pornoow.com -# ||porno-file.ru^$third-party (easylist.txt: 28726) -.porno-file.ru -# ||pornleep.com^$third-party (easylist.txt: 28725) -.pornleep.com -# ||pornkings.com^$third-party (easylist.txt: 28724) -.pornkings.com -# ||pornearn.com^$third-party (easylist.txt: 28723) -.pornearn.com -# ||pornconversions.com^$third-party (easylist.txt: 28722) -.pornconversions.com -# ||pornattitude.com^$third-party (easylist.txt: 28721) -.pornattitude.com -# ||porn99.net^$third-party (easylist.txt: 28720) -.porn99.net -# ||porn88.net^$third-party (easylist.txt: 28719) -.porn88.net -# ||porn-site-builder.com^$third-party (easylist.txt: 28718) -.porn-site-builder.com -# ||porn-hitz.com^$third-party (easylist.txt: 28717) -.porn-hitz.com -# ||porn-ad.org^$third-party (easylist.txt: 28716) -.porn-ad.org -# ||porkolt.com^$third-party (easylist.txt: 28715) -.porkolt.com -# ||popupclick.ru^$third-party (easylist.txt: 28714) -.popupclick.ru -# ||poppcheck.de^$third-party (easylist.txt: 28713) -.poppcheck.de -# ||popdown.biz^$third-party (easylist.txt: 28712) -.popdown.biz -# ||popander.com^$third-party (easylist.txt: 28711) -.popander.com -# ||popander.biz^$third-party (easylist.txt: 28710) -.popander.biz -# ||pop-bazar.net^$third-party (easylist.txt: 28709) -.pop-bazar.net -# ||poonproscash.com^$third-party (easylist.txt: 28708) -.poonproscash.com -# ||polimantu.com^$third-party (easylist.txt: 28707) -.polimantu.com -# ||pnads.com^$third-party (easylist.txt: 28706) -.pnads.com -# ||plugrush.com^$third-party (easylist.txt: 28705) -.plugrush.com -# ||plantaosexy.com^$third-party (easylist.txt: 28704) -.plantaosexy.com -# ||plachetde.biz^$third-party (easylist.txt: 28703) -.plachetde.biz -# ||pinkhoneypots.com^$third-party (easylist.txt: 28702) -.pinkhoneypots.com -# ||pictureturn.com^$third-party (easylist.txt: 28701) -.pictureturn.com -# ||philstraffic.com^$third-party (easylist.txt: 28700) -.philstraffic.com -# ||pepipo.com^$third-party (easylist.txt: 28699) -.pepipo.com -# ||pecash.com^$third-party (easylist.txt: 28698) -.pecash.com -# ||partnercash.de^$third-party (easylist.txt: 28697) -.partnercash.de -# ||partnercash.com^$third-party (easylist.txt: 28696) -.partnercash.com -# ||parkingpremium.com^$third-party (easylist.txt: 28695) -.parkingpremium.com -# ||panoll.com^$third-party (easylist.txt: 28694) -.panoll.com -# ||paid-to-promote.net^$third-party (easylist.txt: 28693) -.paid-to-promote.net -# ||p51d20aa4.website^$third-party (easylist.txt: 28692) -.p51d20aa4.website -# ||ozonru.eu^$third-party (easylist.txt: 28691) -.ozonru.eu -# ||ozon.ru^$third-party (easylist.txt: 28689) -.ozon.ru -# ||ozelmedikal.com^$third-party (easylist.txt: 28688) -.ozelmedikal.com -# ||owpawuk.ru^$third-party (easylist.txt: 28687) -.owpawuk.ru -# ||owlopadjet.info^$third-party (easylist.txt: 28686) -.owlopadjet.info -# ||outster.com^$third-party (easylist.txt: 28685) -.outster.com -# ||otherprofit.com^$third-party (easylist.txt: 28684) -.otherprofit.com -# ||otaserve.net^$third-party (easylist.txt: 28683) -.otaserve.net -# ||orodi.ru^$third-party (easylist.txt: 28682) -.orodi.ru -# ||ordermc.com^$third-party (easylist.txt: 28681) -.ordermc.com -# ||onyarysh.ru^$third-party (easylist.txt: 28680) -.onyarysh.ru -# ||onhercam.com^$third-party (easylist.txt: 28679) -.onhercam.com -# ||omynews.net^$third-party (easylist.txt: 28678) -.omynews.net -# ||okeo.ru^$third-party (easylist.txt: 28677) -.okeo.ru -# ||odzb5nkp.com^$third-party (easylist.txt: 28676) -.odzb5nkp.com -# ||oddads.net^$third-party (easylist.txt: 28675) -.oddads.net -# ||o333o.com^$third-party (easylist.txt: 28674) -.o333o.com -# ||nvp2auf5.com^$third-party (easylist.txt: 28673) -.nvp2auf5.com -# ||nummobile.com^$third-party (easylist.txt: 28672) -.nummobile.com -# ||nsfwads.com^$third-party (easylist.txt: 28671) -.nsfwads.com -# ||nscash.com^$third-party (easylist.txt: 28670) -.nscash.com -# ||nkk31jjp.com^$third-party (easylist.txt: 28669) -.nkk31jjp.com -# ||njmaq.com^$third-party (easylist.txt: 28668) -.njmaq.com -# ||ningme.ru^$third-party (easylist.txt: 28667) -.ningme.ru -# ||nikkiscash.com^$third-party (easylist.txt: 28666) -.nikkiscash.com -# ||ngbn.net^$third-party (easylist.txt: 28665) -.ngbn.net -# ||newsexbook.com^$third-party (easylist.txt: 28664) -.newsexbook.com -# ||newnudecash.com^$third-party (easylist.txt: 28663) -.newnudecash.com -# ||newagerevenue.com^$third-party (easylist.txt: 28662) -.newagerevenue.com -# ||newads.bangbros.com^$third-party (easylist.txt: 28661) -.newads.bangbros.com -# ||neuesdate.com^$third-party (easylist.txt: 28660) -.neuesdate.com -# ||netosdesalim.info^$third-party (easylist.txt: 28659) -.netosdesalim.info -# ||nature-friend.com^$third-party (easylist.txt: 28658) -.nature-friend.com -# ||nastydollars.com^$third-party (easylist.txt: 28657) -.nastydollars.com -# ||n9nedegrees.com^$third-party (easylist.txt: 28656) -.n9nedegrees.com -# ||mywebclick.net^$third-party (easylist.txt: 28655) -.mywebclick.net -# ||myprecisionads.com^$third-party (easylist.txt: 28654) -.myprecisionads.com -# ||mymirror.biz^$third-party (easylist.txt: 28653) -.mymirror.biz -# ||myadultbanners.com^$third-party (easylist.txt: 28652) -.myadultbanners.com -# ||mtree.com^$third-party (easylist.txt: 28651) -.mtree.com -# ||mtoor.com^$third-party (easylist.txt: 28650) -.mtoor.com -# ||msquaredproductions.com^$third-party (easylist.txt: 28649) -.msquaredproductions.com -# ||mrskincash.com^$third-party (easylist.txt: 28648) -.mrskincash.com -# ||mpmcash.com^$third-party (easylist.txt: 28647) -.mpmcash.com -# ||mp3vicio.com^$third-party (easylist.txt: 28646) -.mp3vicio.com -# ||morehitserver.com^$third-party (easylist.txt: 28645) -.morehitserver.com -# ||mopilod.com^$third-party (easylist.txt: 28644) -.mopilod.com -# ||mobred.net^$third-party (easylist.txt: 28643) -.mobred.net -# ||mobilerevenu.com^$third-party (easylist.txt: 28642) -.mobilerevenu.com -# ||mobbobr.com^$third-party (easylist.txt: 28641) -.mobbobr.com -# ||mobalives.com^$third-party (easylist.txt: 28640) -.mobalives.com -# ||mo8mwxi1.com^$third-party (easylist.txt: 28639) -.mo8mwxi1.com -# ||mmaaxx.com^$third-party (easylist.txt: 28638) -.mmaaxx.com -# ||millioncash.ru^$third-party (easylist.txt: 28637) -.millioncash.ru -# ||might-stay.info^$third-party (easylist.txt: 28636) -.might-stay.info -# ||meubonus.com^$third-party (easylist.txt: 28635) -.meubonus.com -# ||methodcash.com^$third-party (easylist.txt: 28634) -.methodcash.com -# ||meta4-group.com^$third-party (easylist.txt: 28633) -.meta4-group.com -# ||menteret.com^$third-party (easylist.txt: 28632) -.menteret.com -# ||meineserver.com^$third-party (easylist.txt: 28631) -.meineserver.com -# ||megoads.eu^$third-party (easylist.txt: 28630) -.megoads.eu -# ||mediumpimpin.com^$third-party (easylist.txt: 28629) -.mediumpimpin.com -# ||mediagra.com^$third-party (easylist.txt: 28628) -.mediagra.com -# ||media-click.ru^$third-party (easylist.txt: 28627) -.media-click.ru -# ||meccahoo.com^$third-party (easylist.txt: 28626) -.meccahoo.com -# ||mdlsrv.com^$third-party (easylist.txt: 28625) -.mdlsrv.com -# ||mc-nudes.com^$third-party (easylist.txt: 28624) -.mc-nudes.com -# ||mb103.com^$third-party (easylist.txt: 28623) -.mb103.com -# ||mazetin.ru^$third-party (easylist.txt: 28622) -.mazetin.ru -# ||maxiadv.com^$third-party (easylist.txt: 28621) -.maxiadv.com -# ||maxcash.com^$third-party (easylist.txt: 28620) -.maxcash.com -# ||matrix-cash.com^$third-party (easylist.txt: 28619) -.matrix-cash.com -# ||matrimoniale3x.ro^$third-party (easylist.txt: 28618) -.matrimoniale3x.ro -# ||masterwanker.com^$third-party (easylist.txt: 28617) -.masterwanker.com -# ||markswebcams.com^$third-party (easylist.txt: 28616) -.markswebcams.com -# ||manfys.com^$third-party (easylist.txt: 28615) -.manfys.com -# ||mallorcash.com^$third-party (easylist.txt: 28614) -.mallorcash.com -# ||mallcom.com^$third-party (easylist.txt: 28613) -.mallcom.com -# ||mahnatka.ru^$third-party (easylist.txt: 28612) -.mahnatka.ru -# ||magical-sky.com^$third-party (easylist.txt: 28611) -.magical-sky.com -# ||madbanner.com^$third-party (easylist.txt: 28610) -.madbanner.com -# ||lyubnozo.ru^$third-party (easylist.txt: 28609) -.lyubnozo.ru -# ||luvcom.com^$third-party (easylist.txt: 28608) -.luvcom.com -# ||luvcash.com^$third-party (easylist.txt: 28607) -.luvcash.com -# ||lucidcommerce.com^$third-party (easylist.txt: 28606) -.lucidcommerce.com -# ||lsawards.com^$third-party (easylist.txt: 28605) -.lsawards.com -# ||lovercash.com^$third-party (easylist.txt: 28604) -.lovercash.com -# ||lovecam.com.br^$third-party (easylist.txt: 28603) -.lovecam.com.br -# ||loveadverts.com^$third-party (easylist.txt: 28602) -.loveadverts.com -# ||lostun.com^$third-party (easylist.txt: 28601) -.lostun.com -# ||loading-delivery1.com^$third-party (easylist.txt: 28600) -.loading-delivery1.com -# ||loa-traffic.com^$third-party (easylist.txt: 28599) -.loa-traffic.com -# ||lizads.com^$third-party (easylist.txt: 28598) -.lizads.com -# ||livetraf.com^$third-party (easylist.txt: 28597) -.livetraf.com -# ||livepromotools.com^$third-party (easylist.txt: 28596) -.livepromotools.com -# ||liveprivates.com^$third-party (easylist.txt: 28595) -.liveprivates.com -# ||livejasmin.tv^$third-party (easylist.txt: 28594) -.livejasmin.tv -# ||livecam.com^$third-party (easylist.txt: 28593) -.livecam.com -# ||links-and-traffic.com^$third-party (easylist.txt: 28592) -.links-and-traffic.com -# ||limon.biz^$third-party (easylist.txt: 28591) -.limon.biz -# ||lifepromo.biz^$third-party (easylist.txt: 28590) -.lifepromo.biz -# ||lickbylick.com^$third-party (easylist.txt: 28589) -.lickbylick.com -# ||legendarylars.com^$third-party (easylist.txt: 28588) -.legendarylars.com -# ||leche69.com^$third-party (easylist.txt: 28587) -.leche69.com -# ||lavantat.com^$third-party (easylist.txt: 28586) -.lavantat.com -# ||kwot.biz^$third-party (easylist.txt: 28585) -.kwot.biz -# ||kuhnivsemisrazu.ru^$third-party (easylist.txt: 28584) -.kuhnivsemisrazu.ru -# ||kolort.ru^$third-party (easylist.txt: 28583) -.kolort.ru -# ||kolitat.com^$third-party (easylist.txt: 28582) -.kolitat.com -# ||kolestence.com^$third-party (easylist.txt: 28581) -.kolestence.com -# ||kliklink.ru^$third-party (easylist.txt: 28580) -.kliklink.ru -# ||kinopokaz.org^$third-party (easylist.txt: 28579) -.kinopokaz.org -# ||kingpinmedia.net^$third-party (easylist.txt: 28578) -.kingpinmedia.net -# ||kaplay.com^$third-party (easylist.txt: 28577) -.kaplay.com -# ||kadam.ru^$third-party (easylist.txt: 28576) -.kadam.ru -# ||k9x.net^$third-party (easylist.txt: 28575) -.k9x.net -# ||jz9ugaqb.com^$third-party (easylist.txt: 28574) -.jz9ugaqb.com -# ||justresa.com^$third-party (easylist.txt: 28573) -.justresa.com -# ||juicycash.net^$third-party (easylist.txt: 28572) -.juicycash.net -# ||juicyads.com^$third-party (easylist.txt: 28571) -.juicyads.com -# ||joyourself.com^$third-party (easylist.txt: 28570) -.joyourself.com -# ||jowapt.com^$third-party (easylist.txt: 28569) -.jowapt.com -# ||joinnowinstantly.com^$third-party (easylist.txt: 28568) -.joinnowinstantly.com -# ||jfresi.com^$third-party (easylist.txt: 28567) -.jfresi.com -# ||jerrcotch.com^$third-party (easylist.txt: 28566) -.jerrcotch.com -# ||jaymancash.com^$third-party (easylist.txt: 28565) -.jaymancash.com -# ||javbucks.com^$third-party (easylist.txt: 28564) -.javbucks.com -# ||jackao.net^$third-party (easylist.txt: 28563) -.jackao.net -# ||ixspublic.com^$third-party (easylist.txt: 28562) -.ixspublic.com -# ||iwinnersadvantage.com^$third-party (easylist.txt: 28561) -.iwinnersadvantage.com -# ||itw.me^$third-party (easylist.txt: 28560) -.itw.me -# ||itslive.com^$third-party (easylist.txt: 28559) -.itslive.com -# ||itrxx.com^$third-party (easylist.txt: 28558) -.itrxx.com -# ||itmcash.com^$third-party (easylist.txt: 28557) -.itmcash.com -# ||iprofit.cc^$third-party (easylist.txt: 28556) -.iprofit.cc -# ||intrapromotion.com^$third-party (easylist.txt: 28555) -.intrapromotion.com -# ||internebula.net^$third-party (easylist.txt: 28554) -.internebula.net -# ||intellichatadult.com^$third-party (easylist.txt: 28553) -.intellichatadult.com -# ||inheart.ru^$third-party (easylist.txt: 28552) -.inheart.ru -# ||impotencehelp.info^$third-party (easylist.txt: 28551) -.impotencehelp.info -# ||ilovecheating.com^$third-party (easylist.txt: 28550) -.ilovecheating.com -# ||iheartbucks.com^$third-party (easylist.txt: 28549) -.iheartbucks.com -# ||igiplay.net^$third-party (easylist.txt: 28548) -.igiplay.net -# ||idolbucks.com^$third-party (easylist.txt: 28547) -.idolbucks.com -# ||ideal-sexe.com^$third-party (easylist.txt: 28546) -.ideal-sexe.com -# ||ictowaz.ru^$third-party (easylist.txt: 28545) -.ictowaz.ru -# ||icqadvert.org^$third-party (easylist.txt: 28544) -.icqadvert.org -# ||icetraffic.com^$third-party (easylist.txt: 28543) -.icetraffic.com -# ||hubtraffic.com^$third-party (easylist.txt: 28542) -.hubtraffic.com -# ||hsmclick.com^$third-party (easylist.txt: 28541) -.hsmclick.com -# ||hotsocials.com^$third-party (easylist.txt: 28540) -.hotsocials.com -# ||hot-socials.com^$third-party (easylist.txt: 28539) -.hot-socials.com -# ||hot-dances.com^$third-party (easylist.txt: 28538) -.hot-dances.com -# ||hostave4.net^$third-party (easylist.txt: 28537) -.hostave4.net -# ||host-go.info^$third-party (easylist.txt: 28536) -.host-go.info -# ||hornyspots.com^$third-party (easylist.txt: 28535) -.hornyspots.com -# ||hornymatches.com^$third-party (easylist.txt: 28534) -.hornymatches.com -# ||hoptopboy.com^$third-party (easylist.txt: 28533) -.hoptopboy.com -# ||hopilos.com^$third-party (easylist.txt: 28532) -.hopilos.com -# ||hookupbucks.com^$third-party (easylist.txt: 28531) -.hookupbucks.com -# ||home-soon.com^$third-party (easylist.txt: 28530) -.home-soon.com -# ||hizlireklam.com^$third-party (easylist.txt: 28529) -.hizlireklam.com -# ||hipals.com^$third-party (easylist.txt: 28528) -.hipals.com -# ||highnets.com^$third-party (easylist.txt: 28527) -.highnets.com -# ||hiddenbucks.com^$third-party (easylist.txt: 28526) -.hiddenbucks.com -# ||herezera.com^$third-party (easylist.txt: 28525) -.herezera.com -# ||hentaibiz.com^$third-party (easylist.txt: 28524) -.hentaibiz.com -# ||helltraffic.com^$third-party (easylist.txt: 28523) -.helltraffic.com -# ||gzbop.com^$third-party (easylist.txt: 28522) -.gzbop.com -# ||gunzblazingpromo.com^$third-party (easylist.txt: 28521) -.gunzblazingpromo.com -# ||gtsads.com^$third-party (easylist.txt: 28520) -.gtsads.com -# ||gridlockparadise.com^$third-party (easylist.txt: 28519) -.gridlockparadise.com -# ||greatcpm.com^$third-party (easylist.txt: 28518) -.greatcpm.com -# ||govereign.com^$third-party (easylist.txt: 28517) -.govereign.com -# ||golderotica.com^$third-party (easylist.txt: 28516) -.golderotica.com -# ||goklics.ru^$third-party (easylist.txt: 28515) -.goklics.ru -# ||goallurl.ru^$third-party (easylist.txt: 28514) -.goallurl.ru -# ||go2euroshop.com^$third-party (easylist.txt: 28513) -.go2euroshop.com -# ||glbtrk.com^$third-party (easylist.txt: 28512) -.glbtrk.com -# ||gl-cash.com^$third-party (easylist.txt: 28511) -.gl-cash.com -# ||ggwcash.com^$third-party (easylist.txt: 28510) -.ggwcash.com -# ||gfhdkse.com^$third-party (easylist.txt: 28509) -.gfhdkse.com -# ||getiton.com^$third-party (easylist.txt: 28508) -.getiton.com -# ||geoinventory.com^$third-party (easylist.txt: 28507) -.geoinventory.com -# ||geofamily.ru^$third-party (easylist.txt: 28506) -.geofamily.ru -# ||geoaddicted.net^$third-party (easylist.txt: 28505) -.geoaddicted.net -# ||genialradio.com^$third-party (easylist.txt: 28504) -.genialradio.com -# ||gefnaro.com^$third-party (easylist.txt: 28503) -.gefnaro.com -# ||gayxperience.com^$third-party (easylist.txt: 28502) -.gayxperience.com -# ||gayadpros.com^$third-party (easylist.txt: 28501) -.gayadpros.com -# ||ganardineroreal.com^$third-party (easylist.txt: 28500) -.ganardineroreal.com -# ||gamblespot.ru^$third-party (easylist.txt: 28499) -.gamblespot.ru -# ||g726n8cy.com^$third-party (easylist.txt: 28498) -.g726n8cy.com -# ||g6ni40i7.com^$third-party (easylist.txt: 28497) -.g6ni40i7.com -# ||funnypickuplinesforgirls.com^$third-party (easylist.txt: 28496) -.funnypickuplinesforgirls.com -# ||funcel.mobi^$third-party (easylist.txt: 28495) -.funcel.mobi -# ||fuelbuck.com^$third-party (easylist.txt: 28494) -.fuelbuck.com -# ||fuckyoucash.com^$third-party (easylist.txt: 28493) -.fuckyoucash.com -# ||fuckermedia.com^$third-party (easylist.txt: 28492) -.fuckermedia.com -# ||fuckbookdating.com^$third-party (easylist.txt: 28491) -.fuckbookdating.com -# ||fuckbook.cm^$third-party (easylist.txt: 28490) -.fuckbook.cm -# ||frutrun.com^$third-party (easylist.txt: 28489) -.frutrun.com -# ||frivol-ads.com^$third-party (easylist.txt: 28488) -.frivol-ads.com -# ||frestime.com^$third-party (easylist.txt: 28487) -.frestime.com -# ||frestacero.com^$third-party (easylist.txt: 28486) -.frestacero.com -# ||free-porn-vidz.com^$third-party (easylist.txt: 28485) -.free-porn-vidz.com -# ||freakads.com^$third-party (easylist.txt: 28484) -.freakads.com -# ||forgetstore.com^$third-party (easylist.txt: 28483) -.forgetstore.com -# ||fncash.com^$third-party (easylist.txt: 28482) -.fncash.com -# ||fmscash.com^$third-party (easylist.txt: 28481) -.fmscash.com -# ||flirtingsms.com^$third-party (easylist.txt: 28480) -.flirtingsms.com -# ||flirt4free.com^$third-party (easylist.txt: 28479) -.flirt4free.com -# ||flirt4e.com^$third-party (easylist.txt: 28478) -.flirt4e.com -# ||flipflapflo.net^$third-party (easylist.txt: 28477) -.flipflapflo.net -# ||flipflapflo.info^$third-party (easylist.txt: 28476) -.flipflapflo.info -# ||fleshlightgirls.com^$third-party (easylist.txt: 28475) -.fleshlightgirls.com -# ||fleshcash.com^$third-party (easylist.txt: 28474) -.fleshcash.com -# ||flashadtools.com^$third-party (easylist.txt: 28473) -.flashadtools.com -# ||findandtry.com^$third-party (easylist.txt: 28472) -.findandtry.com -# ||filthads.com^$third-party (easylist.txt: 28471) -.filthads.com -# ||fickads.net^$third-party (easylist.txt: 28470) -.fickads.net -# ||felixflow.com^$third-party (easylist.txt: 28469) -.felixflow.com -# ||feeder.xxx^$third-party (easylist.txt: 28468) -.feeder.xxx -# ||fanmalinin.ru^$third-party (easylist.txt: 28467) -.fanmalinin.ru -# ||facetz.net^$third-party (easylist.txt: 28466) -.facetz.net -# ||faceporn.com^$third-party (easylist.txt: 28465) -.faceporn.com -# ||facebookofsex.com^$third-party (easylist.txt: 28464) -.facebookofsex.com -# ||eyemedias.com^$third-party (easylist.txt: 28463) -.eyemedias.com -# ||exsifsi.ru^$third-party (easylist.txt: 28462) -.exsifsi.ru -# ||exoticads.com^$third-party (easylist.txt: 28461) -.exoticads.com -# ||exogripper.com^$third-party (easylist.txt: 28460) -.exogripper.com -# ||exoclickz.com^$third-party (easylist.txt: 28459) -.exoclickz.com -# ||exclusivepussy.com^$third-party (easylist.txt: 28458) -.exclusivepussy.com -# ||exchangecash.de^$third-party (easylist.txt: 28457) -.exchangecash.de -# ||euro4ads.de^$third-party (easylist.txt: 28456) -.euro4ads.de -# ||euro-rx.com^$third-party (easylist.txt: 28455) -.euro-rx.com -# ||eu2xml.com^$third-party (easylist.txt: 28454) -.eu2xml.com -# ||escortso.com^$third-party (easylist.txt: 28453) -.escortso.com -# ||erotizer.info^$third-party (easylist.txt: 28452) -.erotizer.info -# ||erotikdating.com^$third-party (easylist.txt: 28451) -.erotikdating.com -# ||erosadv.com^$third-party (easylist.txt: 28450) -.erosadv.com -# ||eragi.ru^$third-party (easylist.txt: 28449) -.eragi.ru -# ||enoratraffic.com^$third-party (easylist.txt: 28448) -.enoratraffic.com -# ||emediawebs.com^$third-party (easylist.txt: 28447) -.emediawebs.com -# ||eltepo.ru^$third-party (easylist.txt: 28446) -.eltepo.ru -# ||elekted.com^$third-party (easylist.txt: 28445) -.elekted.com -# ||ecortb.com^$third-party (easylist.txt: 28444) -.ecortb.com -# ||ebocornac.com^$third-party (easylist.txt: 28443) -.ebocornac.com -# ||ebdr2.com^$third-party (easylist.txt: 28442) -.ebdr2.com -# ||easyflirt.com^$third-party (easylist.txt: 28441) -.easyflirt.com -# ||easy-dating.org^$third-party (easylist.txt: 28440) -.easy-dating.org -# ||eadulttraffic.com^$third-party (easylist.txt: 28439) -.eadulttraffic.com -# ||dvdkinoteatr.com^$third-party (easylist.txt: 28438) -.dvdkinoteatr.com -# ||dtiserv2.com^$third-party (easylist.txt: 28437) -.dtiserv2.com -# ||dro4icho.ru^$third-party (easylist.txt: 28436) -.dro4icho.ru -# ||drevil.to^$third-party (easylist.txt: 28435) -.drevil.to -# ||doublegear.com^$third-party (easylist.txt: 28434) -.doublegear.com -# ||double-check.com^$third-party (easylist.txt: 28433) -.double-check.com -# ||dosugcz.biz^$third-party (easylist.txt: 28432) -.dosugcz.biz -# ||dofolo.ru^$third-party (easylist.txt: 28431) -.dofolo.ru -# ||divertura.com^$third-party (easylist.txt: 28430) -.divertura.com -# ||divascam.com^$third-party (easylist.txt: 28429) -.divascam.com -# ||discreetlocalgirls.com^$third-party (easylist.txt: 28428) -.discreetlocalgirls.com -# ||direction-x.com^$third-party (easylist.txt: 28427) -.direction-x.com -# ||directchat.tv^$third-party (easylist.txt: 28426) -.directchat.tv -# ||directadvert.ru^$third-party (easylist.txt: 28425) -.directadvert.ru -# ||digitaldesire.com^$third-party (easylist.txt: 28424) -.digitaldesire.com -# ||desiad.net^$third-party (easylist.txt: 28423) -.desiad.net -# ||depravedwhores.com^$third-party (easylist.txt: 28422) -.depravedwhores.com -# ||depilflash.tv^$third-party (easylist.txt: 28421) -.depilflash.tv -# ||denotyro.com^$third-party (easylist.txt: 28420) -.denotyro.com -# ||demanier.com^$third-party (easylist.txt: 28419) -.demanier.com -# ||deecash.com^$third-party (easylist.txt: 28418) -.deecash.com -# ||dblpmp.com^$third-party (easylist.txt: 28417) -.dblpmp.com -# ||datingidol.com^$third-party (easylist.txt: 28416) -.datingidol.com -# ||datingamateurs.com^$third-party (easylist.txt: 28415) -.datingamateurs.com -# ||datingadnetwork.com^$third-party (easylist.txt: 28414) -.datingadnetwork.com -# ||dating-adv.com^$third-party (easylist.txt: 28413) -.dating-adv.com -# ||datexchanges.net^$third-party (easylist.txt: 28412) -.datexchanges.net -# ||datetraders.com^$third-party (easylist.txt: 28411) -.datetraders.com -# ||datefunclub.com^$third-party (easylist.txt: 28410) -.datefunclub.com -# ||data.13dc235d.xyz^$third-party (easylist.txt: 28409) -.data.13dc235d.xyz -# ||data-ero-advertising.com^$third-party (easylist.txt: 28408) -.data-ero-advertising.com -# ||darangi.ru^$third-party (easylist.txt: 28407) -.darangi.ru -# ||danzabucks.com^$third-party (easylist.txt: 28406) -.danzabucks.com -# ||dana123.com^$third-party (easylist.txt: 28405) -.dana123.com -# ||dallavel.com^$third-party (easylist.txt: 28404) -.dallavel.com -# ||daffaite.com^$third-party (easylist.txt: 28403) -.daffaite.com -# ||d3b3e6340.website^$third-party (easylist.txt: 28402) -.d3b3e6340.website -# ||d29gqcij.com^$third-party (easylist.txt: 28401) -.d29gqcij.com -# ||d0main.ru^$third-party (easylist.txt: 28400) -.d0main.ru -# ||d-agency.net^$third-party (easylist.txt: 28399) -.d-agency.net -# ||cybernetentertainment.com^$third-party (easylist.txt: 28398) -.cybernetentertainment.com -# ||cyberbidhost.com^$third-party (easylist.txt: 28397) -.cyberbidhost.com -# ||cwgads.com^$third-party (easylist.txt: 28396) -.cwgads.com -# ||ctyzd.com^$third-party (easylist.txt: 28395) -.ctyzd.com -# ||crtracklink.com^$third-party (easylist.txt: 28394) -.crtracklink.com -# ||crocoads.com^$third-party (easylist.txt: 28393) -.crocoads.com -# ||creoads.com^$third-party (easylist.txt: 28392) -.creoads.com -# ||crakcash.com^$third-party (easylist.txt: 28391) -.crakcash.com -# ||crakbanner.com^$third-party (easylist.txt: 28390) -.crakbanner.com -# ||cpl1.ru^$third-party (easylist.txt: 28389) -.cpl1.ru -# ||cpacoreg.com^$third-party (easylist.txt: 28388) -.cpacoreg.com -# ||comunicazio.com^$third-party (easylist.txt: 28387) -.comunicazio.com -# ||colpory.com^$third-party (easylist.txt: 28386) -.colpory.com -# ||coloredguitar.com^$third-party (easylist.txt: 28385) -.coloredguitar.com -# ||coldhardcash.com^$third-party (easylist.txt: 28384) -.coldhardcash.com -# ||codelnet.com^$third-party (easylist.txt: 28383) -.codelnet.com -# ||cmdfnow.com^$third-party (easylist.txt: 28382) -.cmdfnow.com -# ||clicktrace.info^$third-party (easylist.txt: 28381) -.clicktrace.info -# ||clickthruserver.com^$third-party (easylist.txt: 28380) -.clickthruserver.com -# ||clicksvenue.com^$third-party (easylist.txt: 28379) -.clicksvenue.com -# ||clickpapa.com^$third-party (easylist.txt: 28378) -.clickpapa.com -# ||clickganic.com^$third-party (easylist.txt: 28377) -.clickganic.com -# ||clearac.com^$third-party (easylist.txt: 28376) -.clearac.com -# ||citysex.com^$third-party (easylist.txt: 28375) -.citysex.com -# ||chopstick16.com^$third-party (easylist.txt: 28374) -.chopstick16.com -# ||chestyry.com^$third-party (easylist.txt: 28373) -.chestyry.com -# ||che-ka.com^$third-party (easylist.txt: 28372) -.che-ka.com -# ||chatischat.com^$third-party (easylist.txt: 28371) -.chatischat.com -# ||cervicalknowledge.info^$third-party (easylist.txt: 28370) -.cervicalknowledge.info -# ||certified-apps.com^$third-party (easylist.txt: 28369) -.certified-apps.com -# ||cennter.com^$third-party (easylist.txt: 28368) -.cennter.com -# ||celogera.com^$third-party (easylist.txt: 28367) -.celogera.com -# ||celeb-ads.com^$third-party (easylist.txt: 28366) -.celeb-ads.com -# ||ceepq.com^$third-party (easylist.txt: 28365) -.ceepq.com -# ||cashtraff.com^$third-party (easylist.txt: 28364) -.cashtraff.com -# ||cashthat.com^$third-party (easylist.txt: 28363) -.cashthat.com -# ||cashlayer.com^$third-party (easylist.txt: 28362) -.cashlayer.com -# ||cash4movie.com^$third-party (easylist.txt: 28361) -.cash4movie.com -# ||cash-program.com^$third-party (easylist.txt: 28360) -.cash-program.com -# ||camzap.com^$third-party (easylist.txt: 28359) -.camzap.com -# ||camsitecash.com^$third-party (easylist.txt: 28358) -.camsitecash.com -# ||camsense.com^$third-party (easylist.txt: 28357) -.camsense.com -# ||campromos.nl^$third-party (easylist.txt: 28356) -.campromos.nl -# ||camprime.com^$third-party (easylist.txt: 28355) -.camprime.com -# ||camplacecash.com^$third-party (easylist.txt: 28354) -.camplacecash.com -# ||campartner.com^$third-party (easylist.txt: 28353) -.campartner.com -# ||camduty.com^$third-party (easylist.txt: 28352) -.camduty.com -# ||camdough.com^$third-party (easylist.txt: 28351) -.camdough.com -# ||camcrush.com^$third-party (easylist.txt: 28350) -.camcrush.com -# ||camads.net^$third-party (easylist.txt: 28349) -.camads.net -# ||cam4flat.com^$third-party (easylist.txt: 28348) -.cam4flat.com -# ||cam-lolita.net^$third-party (easylist.txt: 28347) -.cam-lolita.net -# ||bumskontakte.ch^$third-party (easylist.txt: 28346) -.bumskontakte.ch -# ||bumblecash.com^$third-party (easylist.txt: 28345) -.bumblecash.com -# ||brqvld0p.com^$third-party (easylist.txt: 28344) -.brqvld0p.com -# ||brothersincash.com^$third-party (easylist.txt: 28343) -.brothersincash.com -# ||brightcpm.net^$third-party (easylist.txt: 28342) -.brightcpm.net -# ||branzas.com^$third-party (easylist.txt: 28341) -.branzas.com -# ||bposterss.net^$third-party (easylist.txt: 28340) -.bposterss.net -# ||bookofsex.com^$third-party (easylist.txt: 28339) -.bookofsex.com -# ||boinkcash.com^$third-party (easylist.txt: 28338) -.boinkcash.com -# ||board-books.com^$third-party (easylist.txt: 28337) -.board-books.com -# ||blossoms.com^$third-party (easylist.txt: 28336) -.blossoms.com -# ||black-ghettos.info^$third-party (easylist.txt: 28335) -.black-ghettos.info -# ||biksibo.ru^$third-party (easylist.txt: 28334) -.biksibo.ru -# ||bgmtracker.com^$third-party (easylist.txt: 28333) -.bgmtracker.com -# ||betweendigital.com^$third-party (easylist.txt: 28332) -.betweendigital.com -# ||bestssn.com^$third-party (easylist.txt: 28331) -.bestssn.com -# ||bestholly.com^$third-party (easylist.txt: 28330) -.bestholly.com -# ||belasninfetas.org^$third-party (easylist.txt: 28329) -.belasninfetas.org -# ||belamicash.com^$third-party (easylist.txt: 28328) -.belamicash.com -# ||bcash4you.com^$third-party (easylist.txt: 28327) -.bcash4you.com -# ||baskodenta.com^$third-party (easylist.txt: 28326) -.baskodenta.com -# ||basesclick.ru^$third-party (easylist.txt: 28325) -.basesclick.ru -# ||banerator.net^$third-party (easylist.txt: 28324) -.banerator.net -# ||aztecash.com^$third-party (easylist.txt: 28323) -.aztecash.com -# ||azerbazer.com^$third-party (easylist.txt: 28322) -.azerbazer.com -# ||ax47mp-xp-21.com^$third-party (easylist.txt: 28321) -.ax47mp-xp-21.com -# ||awmpartners.com^$third-party (easylist.txt: 28320) -.awmpartners.com -# ||awmcenter.eu^$third-party (easylist.txt: 28319) -.awmcenter.eu -# ||augrenso.com^$third-party (easylist.txt: 28318) -.augrenso.com -# ||asiafriendfinder.com^$third-party (easylist.txt: 28317) -.asiafriendfinder.com -# ||are-ter.com^$third-party (easylist.txt: 28316) -.are-ter.com -# ||apromoweb.com^$third-party (easylist.txt: 28315) -.apromoweb.com -# ||antoball.com^$third-party (easylist.txt: 28314) -.antoball.com -# ||antaraimedia.com^$third-party (easylist.txt: 28313) -.antaraimedia.com -# ||angelpastel.com^$third-party (easylist.txt: 28312) -.angelpastel.com -# ||anastasia-international.com^$third-party (easylist.txt: 28311) -.anastasia-international.com -# ||amvotes.ru^$third-party (easylist.txt: 28310) -.amvotes.ru -# ||amtracking01.com^$third-party (easylist.txt: 28309) -.amtracking01.com -# ||allotraffic.com^$third-party (easylist.txt: 28308) -.allotraffic.com -# ||allosponsor.com^$third-party (easylist.txt: 28307) -.allosponsor.com -# ||alladultcash.com^$third-party (easylist.txt: 28306) -.alladultcash.com -# ||all-about-tech.com^$third-party (easylist.txt: 28305) -.all-about-tech.com -# ||alfatraffic.com^$third-party (easylist.txt: 28304) -.alfatraffic.com -# ||aipmedia.com^$third-party (easylist.txt: 28303) -.aipmedia.com -# ||aipbannerx.com^$third-party (easylist.txt: 28302) -.aipbannerx.com -# ||affiligay.net^$third-party (easylist.txt: 28301) -.affiligay.net -# ||affiliaxe.com^$third-party (easylist.txt: 28300) -.affiliaxe.com -# ||affiliation-int.com^$third-party (easylist.txt: 28299) -.affiliation-int.com -# ||affiliatewindow.com^$third-party (easylist.txt: 28298) -.affiliatewindow.com -# ||aeesy.com^$third-party (easylist.txt: 28297) -.aeesy.com -# ||adzs.com^$third-party (easylist.txt: 28296) -.adzs.com -# ||adxregie.com^$third-party (easylist.txt: 28295) -.adxregie.com -# ||adxpansion.com^$third-party (easylist.txt: 28294) -.adxpansion.com -# ||adxmarket.com^$third-party (easylist.txt: 28293) -.adxmarket.com -# ||adxite.com^$third-party (easylist.txt: 28292) -.adxite.com -# ||advsense.info^$third-party (easylist.txt: 28291) -.advsense.info -# ||advredir.com^$third-party (easylist.txt: 28290) -.advredir.com -# ||advprotraffic.com^$third-party (easylist.txt: 28289) -.advprotraffic.com -# ||advmania.com^$third-party (easylist.txt: 28288) -.advmania.com -# ||advmaker.ru^$third-party (easylist.txt: 28287) -.advmaker.ru -# ||advertrtb.com^$third-party (easylist.txt: 28286) -.advertrtb.com -# ||advertom.com^$third-party (easylist.txt: 28285) -.advertom.com -# ||advertisingsex.com^$third-party (easylist.txt: 28284) -.advertisingsex.com -# ||adventory.com^$third-party (easylist.txt: 28283) -.adventory.com -# ||adv777.com^$third-party (easylist.txt: 28282) -.adv777.com -# ||adv-plus.com^$third-party (easylist.txt: 28281) -.adv-plus.com -# ||adulttubetraffic.com^$third-party (easylist.txt: 28280) -.adulttubetraffic.com -# ||adulttiz.com^$third-party (easylist.txt: 28279) -.adulttiz.com -# ||adultsense.org^$third-party (easylist.txt: 28278) -.adultsense.org -# ||adultsense.com^$third-party (easylist.txt: 28277) -.adultsense.com -# ||adultpopunders.com^$third-party (easylist.txt: 28276) -.adultpopunders.com -# ||adultoafiliados.com.br^$third-party (easylist.txt: 28275) -.adultoafiliados.com.br -# ||adultmoviegroup.com^$third-party (easylist.txt: 28274) -.adultmoviegroup.com -# ||adultmediabuying.com^$third-party (easylist.txt: 28273) -.adultmediabuying.com -# ||adultlinkexchange.com^$third-party (easylist.txt: 28272) -.adultlinkexchange.com -# ||adultdatingtraffic.com^$third-party (easylist.txt: 28271) -.adultdatingtraffic.com -# ||adultcommercial.net^$third-party (easylist.txt: 28270) -.adultcommercial.net -# ||adultadvertising.net^$third-party (easylist.txt: 28269) -.adultadvertising.net -# ||adultadmedia.com^$third-party (easylist.txt: 28268) -.adultadmedia.com -# ||adultaccessnow.com^$third-party (easylist.txt: 28267) -.adultaccessnow.com -# ||adult3dcomics.com^$third-party (easylist.txt: 28266) -.adult3dcomics.com -# ||adsyst.biz^$third-party (easylist.txt: 28265) -.adsyst.biz -# ||adskape.ru^$third-party (easylist.txt: 28264) -.adskape.ru -# ||adshostview.com^$third-party (easylist.txt: 28263) -.adshostview.com -# ||adsgangsta.com^$third-party (easylist.txt: 28262) -.adsgangsta.com -# ||adsbr.info^$third-party (easylist.txt: 28261) -.adsbr.info -# ||adrent.net^$third-party (easylist.txt: 28260) -.adrent.net -# ||adpron.com^$third-party (easylist.txt: 28259) -.adpron.com -# ||adperiun.com^$third-party (easylist.txt: 28258) -.adperiun.com -# ||adparad.net^$third-party (easylist.txt: 28257) -.adparad.net -# ||adnetxchange.com^$third-party (easylist.txt: 28256) -.adnetxchange.com -# ||admez.com^$third-party (easylist.txt: 28255) -.admez.com -# ||adlook.net^$third-party (easylist.txt: 28254) -.adlook.net -# ||adjunky.com^$third-party (easylist.txt: 28253) -.adjunky.com -# ||adfux.com^$third-party (easylist.txt: 28252) -.adfux.com -# ||addbags.com^$third-party (easylist.txt: 28251) -.addbags.com -# ||adcell.de^$third-party (easylist.txt: 28250) -.adcell.de -# ||adbmi.com^$third-party (easylist.txt: 28249) -.adbmi.com -# ||adbars.net^$third-party (easylist.txt: 28248) -.adbars.net -# ||ad4partners.com^$third-party (easylist.txt: 28247) -.ad4partners.com -# ||ad001.ru^$third-party (easylist.txt: 28246) -.ad001.ru -# ||ad-u.com^$third-party (easylist.txt: 28245) -.ad-u.com -# ||ad-411.com^$third-party (easylist.txt: 28244) -.ad-411.com -# ||actionlocker.com^$third-party (easylist.txt: 28243) -.actionlocker.com -# ||acnescarsx.info^$third-party (easylist.txt: 28242) -.acnescarsx.info -# ||acmexxx.com^$third-party (easylist.txt: 28241) -.acmexxx.com -# ||abusedbabysitters.com^$third-party (easylist.txt: 28240) -.abusedbabysitters.com -# ||abgeobalancer.com^$third-party (easylist.txt: 28239) -.abgeobalancer.com -# ||abakys.ru^$third-party (easylist.txt: 28238) -.abakys.ru -# ||ab4tn.com^$third-party (easylist.txt: 28237) -.ab4tn.com -# ||aaovn.info^$third-party (easylist.txt: 28236) -.aaovn.info -# ||8ipztcc1.com^$third-party (easylist.txt: 28235) -.8ipztcc1.com -# ||89.248.172.46^$third-party (easylist.txt: 28234) -.89.248.172.46 -# ||85.17.210.202^$third-party (easylist.txt: 28233) -.85.17.210.202 -# ||80.77.113.200^$third-party (easylist.txt: 28232) -.80.77.113.200 -# ||7vws1j1j.com^$third-party (easylist.txt: 28231) -.7vws1j1j.com -# ||7cxcrejm.com^$third-party (easylist.txt: 28230) -.7cxcrejm.com -# ||777partners.com^$third-party (easylist.txt: 28229) -.777partners.com -# ||777partner.net^$third-party (easylist.txt: 28228) -.777partner.net -# ||777partner.com^$third-party (easylist.txt: 28227) -.777partner.com -# ||777-partners.net^$third-party (easylist.txt: 28226) -.777-partners.net -# ||777-partners.com^$third-party (easylist.txt: 28225) -.777-partners.com -# ||777-partner.net^$third-party (easylist.txt: 28224) -.777-partner.net -# ||777-partner.com^$third-party (easylist.txt: 28223) -.777-partner.com -# ||76.76.5.113^$third-party (easylist.txt: 28222) -.76.76.5.113 -# ||750industries.com^$third-party (easylist.txt: 28221) -.750industries.com -# ||699fy4ne.com^$third-party (easylist.txt: 28220) -.699fy4ne.com -# ||59zs1xei.com^$third-party (easylist.txt: 28219) -.59zs1xei.com -# ||4link.it^$third-party (easylist.txt: 28218) -.4link.it -# ||45i73jv6.com^$third-party (easylist.txt: 28217) -.45i73jv6.com -# ||40xbfzk8.com^$third-party (easylist.txt: 28216) -.40xbfzk8.com -# ||33traffic.com^$third-party (easylist.txt: 28215) -.33traffic.com -# ||24x7adservice.com^$third-party (easylist.txt: 28214) -.24x7adservice.com -# ||24smile.org^$third-party (easylist.txt: 28213) -.24smile.org -# ||247teencash.net^$third-party (easylist.txt: 28212) -.247teencash.net -# ||21sexturycash.com^$third-party (easylist.txt: 28211) -.21sexturycash.com -# ||212.150.34.117^$third-party (easylist.txt: 28210) -.212.150.34.117 -# ||206.217.206.137^$third-party (easylist.txt: 28209) -.206.217.206.137 -# ||1tizer.com^$third-party (easylist.txt: 28208) -.1tizer.com -# ||1loop.com^$third-party (easylist.txt: 28207) -.1loop.com -# ||195.228.74.26^$third-party (easylist.txt: 28206) -.195.228.74.26 -# ||18naked.com^$third-party (easylist.txt: 28205) -.18naked.com -# ||15yomodels.com^$third-party (easylist.txt: 28203) -.15yomodels.com -# ||123advertising.nl^$third-party (easylist.txt: 28202) -.123advertising.nl -# ||10y5gehv.com^$third-party (easylist.txt: 28201) -.10y5gehv.com -# ||100pour.com^$third-party (easylist.txt: 28200) -.100pour.com -# ||0llii0g6.com^$third-party (easylist.txt: 28199) -.0llii0g6.com -# ||zeroredirect1.com^$popup,third-party (easylist.txt: 28197) -.zeroredirect1.com -# ||zedo.com^$popup,third-party (easylist.txt: 28196) -.zedo.com -# ||z5x.net^$popup,third-party (easylist.txt: 28195) -.z5x.net -# ||yupiromo.ru^$popup,third-party (easylist.txt: 28194) -.yupiromo.ru -# ||yieldtraffic.com^$popup,third-party (easylist.txt: 28193) -.yieldtraffic.com -# ||yieldmanager.com^$popup,third-party (easylist.txt: 28192) -.yieldmanager.com -# ||xtendmedia.com^$popup,third-party (easylist.txt: 28191) -.xtendmedia.com -# ||xclicks.net^$popup,third-party (easylist.txt: 28190) -.xclicks.net -# ||xaxoro.com^$popup,third-party (easylist.txt: 28189) -.xaxoro.com -# ||wzus1.ask.com^$popup,third-party (easylist.txt: 28188) -.wzus1.ask.com -# ||wwwpromoter.com^$popup,third-party (easylist.txt: 28187) -.wwwpromoter.com -# ||worldrewardcenter.net^$popup,third-party (easylist.txt: 28186) -.worldrewardcenter.net -# ||wonderlandads.com^$popup,third-party (easylist.txt: 28185) -.wonderlandads.com -# ||wigetmedia.com^$popup,third-party (easylist.txt: 28184) -.wigetmedia.com -# ||whoads.net^$popup,third-party (easylist.txt: 28183) -.whoads.net -# ||weliketofuckstrangers.com^$popup,third-party (easylist.txt: 28182) -.weliketofuckstrangers.com -# ||webtrackerplus.com^$popup,third-party (easylist.txt: 28181) -.webtrackerplus.com -# ||websearchers.net^$popup,third-party (easylist.txt: 28180) -.websearchers.net -# ||weareheard.org^$popup,third-party (easylist.txt: 28179) -.weareheard.org -# ||wbsadsdel2.com^$popup,third-party (easylist.txt: 28178) -.wbsadsdel2.com -# ||wbsadsdel.com^$popup,third-party (easylist.txt: 28177) -.wbsadsdel.com -# ||wahoha.com^$popup,third-party (easylist.txt: 28176) -.wahoha.com -# ||waframedia5.com^$popup,third-party (easylist.txt: 28175) -.waframedia5.com -# ||w4statistics.info^$popup,third-party (easylist.txt: 28174) -.w4statistics.info -# ||vprmnwbskk.com^$popup,third-party (easylist.txt: 28173) -.vprmnwbskk.com -# ||vipcpms.com^$popup,third-party (easylist.txt: 28172) -.vipcpms.com -# ||vgsgaming-ads.com^$popup,third-party (easylist.txt: 28171) -.vgsgaming-ads.com -# ||updater-checker.net^$popup,third-party (easylist.txt: 28170) -.updater-checker.net -# ||twqiqiang.com^$popup,third-party (easylist.txt: 28169) -.twqiqiang.com -# ||tvas-b.pw^$popup,third-party (easylist.txt: 28168) -.tvas-b.pw -# ||tvas-a.pw^$popup,third-party (easylist.txt: 28167) -.tvas-a.pw -# ||tutvp.com^$popup,third-party (easylist.txt: 28166) -.tutvp.com -# ||trw12.com^$popup,third-party (easylist.txt: 28165) -.trw12.com -# ||trklnks.com^$popup,third-party (easylist.txt: 28164) -.trklnks.com -# ||traffichaus.com^$popup,third-party (easylist.txt: 28163) -.traffichaus.com -# ||trafficforce.com^$popup,third-party (easylist.txt: 28162) -.trafficforce.com -# ||tracki112.com^$popup,third-party (easylist.txt: 28161) -.tracki112.com -# ||totrack.ru^$popup,third-party (easylist.txt: 28160) -.totrack.ru -# ||totaladperformance.com^$popup,third-party (easylist.txt: 28159) -.totaladperformance.com -# ||toroadvertisingmedia.com^$popup,third-party (easylist.txt: 28158) -.toroadvertisingmedia.com -# ||topshelftraffic.com^$popup,third-party (easylist.txt: 28157) -.topshelftraffic.com -# ||tonefuse.com^$popup,third-party (easylist.txt: 28156) -.tonefuse.com -# ||tjoomo.com^$popup,third-party (easylist.txt: 28155) -.tjoomo.com -# ||therewardsurvey.com^$popup,third-party (easylist.txt: 28154) -.therewardsurvey.com -# ||thepornsurvey.com^$popup,third-party (easylist.txt: 28153) -.thepornsurvey.com -# ||the-consumer-reporter.org^$popup,third-party (easylist.txt: 28152) -.the-consumer-reporter.org -# ||the-binary-trader.biz^$popup,third-party (easylist.txt: 28151) -.the-binary-trader.biz -# ||textsrv.com^$popup,third-party (easylist.txt: 28150) -.textsrv.com -# ||terraclicks.com^$popup,third-party (easylist.txt: 28149) -.terraclicks.com -# ||technicssurveys.info^$popup,third-party (easylist.txt: 28148) -.technicssurveys.info -# ||techcloudtrk.com^$popup,third-party (easylist.txt: 28147) -.techcloudtrk.com -# ||td563.com^$popup,third-party (easylist.txt: 28146) -.td563.com -# ||syncedvision.com^$popup,third-party (easylist.txt: 28145) -.syncedvision.com -# ||symkashop.ru^$popup,third-party (easylist.txt: 28144) -.symkashop.ru -# ||swadvertising.org^$popup,third-party (easylist.txt: 28143) -.swadvertising.org -# ||surveystope.com^$popup,third-party (easylist.txt: 28142) -.surveystope.com -# ||surveyspaid.com^$popup,third-party (easylist.txt: 28141) -.surveyspaid.com -# ||surveysforgifts.org^$popup,third-party (easylist.txt: 28140) -.surveysforgifts.org -# ||surveyend.com^$popup,third-party (easylist.txt: 28139) -.surveyend.com -# ||statstrackeronline.com^$popup,third-party (easylist.txt: 28138) -.statstrackeronline.com -# ||statsmobi.com^$popup,third-party (easylist.txt: 28137) -.statsmobi.com -# ||stabletrappeddevote.info^$popup,third-party (easylist.txt: 28136) -.stabletrappeddevote.info -# ||srvpub.com^$popup,third-party (easylist.txt: 28135) -.srvpub.com -# ||srv2trking.com^$popup,third-party (easylist.txt: 28134) -.srv2trking.com -# ||srv-ad.com^$popup,third-party (easylist.txt: 28133) -.srv-ad.com -# ||sparkstudios.com^$popup,third-party (easylist.txt: 28132) -.sparkstudios.com -# ||smutty.com^$popup,third-party (easylist.txt: 28131) -.smutty.com -# ||sms-mmm.com^$popup,third-party (easylist.txt: 28130) -.sms-mmm.com -# ||smartwebads.com^$popup,third-party (easylist.txt: 28129) -.smartwebads.com -# ||slimspots.com^$popup,third-party (easylist.txt: 28128) -.slimspots.com -# ||slikslik.com^$popup,third-party (easylist.txt: 28127) -.slikslik.com -# ||singlesexdates.com^$popup,third-party (easylist.txt: 28126) -.singlesexdates.com -# ||simpleinternetupdate.com^$popup,third-party (easylist.txt: 28125) -.simpleinternetupdate.com -# ||silstavo.com^$popup,third-party (easylist.txt: 28124) -.silstavo.com -# ||sexitnow.com^$popup,third-party (easylist.txt: 28123) -.sexitnow.com -# ||servingit.co^$popup,third-party (easylist.txt: 28122) -.servingit.co -# ||serving-sys.com^$popup,third-party (easylist.txt: 28121) -.serving-sys.com -# ||senzapudore.it^$popup,third-party (easylist.txt: 28120) -.senzapudore.it -# ||secureintl.com^$popup,third-party (easylist.txt: 28119) -.secureintl.com -# ||rubikon6.if.ua^$popup,third-party (easylist.txt: 28118) -.rubikon6.if.ua -# ||roulettebotplus.com^$popup,third-party (easylist.txt: 28117) -.roulettebotplus.com -# ||ronetu.ru^$popup,third-party (easylist.txt: 28116) -.ronetu.ru -# ||ringtonepartner.com^$popup,third-party (easylist.txt: 28115) -.ringtonepartner.com -# ||ringtonematcher.com^$popup,third-party (easylist.txt: 28114) -.ringtonematcher.com -# ||rikhov.ru^$popup,third-party (easylist.txt: 28113) -.rikhov.ru -# ||rgadvert.com^$popup,third-party (easylist.txt: 28112) -.rgadvert.com -# ||retkow.com^$popup,third-party (easylist.txt: 28111) -.retkow.com -# ||rehok.km.ua^$popup,third-party (easylist.txt: 28110) -.rehok.km.ua -# ||rdsrv.com^$popup,third-party (easylist.txt: 28109) -.rdsrv.com -# ||ratari.ru^$popup,third-party (easylist.txt: 28108) -.ratari.ru -# ||raoplenort.biz^$popup,third-party (easylist.txt: 28107) -.raoplenort.biz -# ||pwrads.net^$popup,third-party (easylist.txt: 28106) -.pwrads.net -# ||pureadexchange.com^$popup,third-party (easylist.txt: 28105) -.pureadexchange.com -# ||pulse360.com^$popup,third-party (easylist.txt: 28104) -.pulse360.com -# ||pubted.com^$popup,third-party (easylist.txt: 28103) -.pubted.com -# ||pubdirecte.com^$popup,third-party (easylist.txt: 28102) -.pubdirecte.com -# ||pubads.g.doubleclick.net^$popup,third-party (easylist.txt: 28101) -.pubads.g.doubleclick.net -# ||prowlerz.com^$popup,third-party (easylist.txt: 28100) -.prowlerz.com -# ||propellerpops.com^$popup,third-party (easylist.txt: 28099) -.propellerpops.com -# ||propellerads.com^$popup,third-party (easylist.txt: 28098) -.propellerads.com -# ||promotions.sportsbet.com.au^$popup,third-party (easylist.txt: 28097) -.promotions.sportsbet.com.au -# ||promotions-paradise.org^$popup,third-party (easylist.txt: 28096) -.promotions-paradise.org -# ||prizegiveaway.org^$popup,third-party (easylist.txt: 28095) -.prizegiveaway.org -# ||print3.info^$popup,third-party (easylist.txt: 28094) -.print3.info -# ||poponclick.com^$popup,third-party (easylist.txt: 28093) -.poponclick.com -# ||popmyads.com^$popup,third-party (easylist.txt: 28092) -.popmyads.com -# ||popads.net^$popup,third-party (easylist.txt: 28091) -.popads.net -# ||pomofon.ru^$popup,third-party (easylist.txt: 28090) -.pomofon.ru -# ||pointroll.com^$popup,third-party (easylist.txt: 28089) -.pointroll.com -# ||pointclicktrack.com^$popup,third-party (easylist.txt: 28088) -.pointclicktrack.com -# ||plsdrct2.me^$popup,third-party (easylist.txt: 28087) -.plsdrct2.me -# ||plexop.net^$popup,third-party (easylist.txt: 28086) -.plexop.net -# ||pipaoffers.com^$popup,third-party (easylist.txt: 28085) -.pipaoffers.com -# ||pgmediaserve.com^$popup,third-party (easylist.txt: 28084) -.pgmediaserve.com -# ||pexu.com^$popup,third-party (easylist.txt: 28083) -.pexu.com -# ||perfcreatives.com^$popup,third-party (easylist.txt: 28082) -.perfcreatives.com -# ||pdfcomplete.com^$popup,third-party (easylist.txt: 28081) -.pdfcomplete.com -# ||partypills.org^$popup,third-party (easylist.txt: 28080) -.partypills.org -# ||oxybe.com^$popup,third-party (easylist.txt: 28079) -.oxybe.com -# ||overturs.com^$popup,third-party (easylist.txt: 28078) -.overturs.com -# ||openadserving.com^$popup,third-party (easylist.txt: 28077) -.openadserving.com -# ||open-downloads.net^$popup,third-party (easylist.txt: 28076) -.open-downloads.net -# ||onlinecashmethod.com^$popup,third-party (easylist.txt: 28075) -.onlinecashmethod.com -# ||onlinecareerpackage.com^$popup,third-party (easylist.txt: 28074) -.onlinecareerpackage.com -# ||onhitads.net^$popup,third-party (easylist.txt: 28073) -.onhitads.net -# ||onclickads.net^$popup,third-party (easylist.txt: 28072) -.onclickads.net -# ||onad.eu^$popup,third-party (easylist.txt: 28071) -.onad.eu -# ||o333o.com^$popup,third-party (easylist.txt: 28070) -.o333o.com -# ||nymphdate.com^$popup,third-party (easylist.txt: 28069) -.nymphdate.com -# ||nturveev.com^$popup,third-party (easylist.txt: 28068) -.nturveev.com -# ||netliker.com^$popup,third-party (easylist.txt: 28067) -.netliker.com -# ||n388hkxg.com^$popup,third-party (easylist.txt: 28066) -.n388hkxg.com -# ||my-layer.net^$popup,third-party (easylist.txt: 28065) -.my-layer.net -# ||moneytec.com^$popup,third-party (easylist.txt: 28064) -.moneytec.com -# ||mobileraffles.com^$popup,third-party (easylist.txt: 28063) -.mobileraffles.com -# ||mktmobi.com^$popup,third-party (easylist.txt: 28062) -.mktmobi.com -# ||millionairesurveys.com^$popup,third-party (easylist.txt: 28061) -.millionairesurveys.com -# ||metodoroleta24h.com^$popup,third-party (easylist.txt: 28060) -.metodoroleta24h.com -# ||menepe.com^$popup,third-party (easylist.txt: 28059) -.menepe.com -# ||megapopads.com^$popup,third-party (easylist.txt: 28058) -.megapopads.com -# ||meetsexygirls.org^$popup,third-party (easylist.txt: 28057) -.meetsexygirls.org -# ||meetgoodgirls.com^$popup,third-party (easylist.txt: 28056) -.meetgoodgirls.com -# ||mediaseeding.com^$popup,third-party (easylist.txt: 28055) -.mediaseeding.com -# ||media-servers.net^$popup,third-party (easylist.txt: 28054) -.media-servers.net -# ||media-app.com^$popup,third-party (easylist.txt: 28053) -.media-app.com -# ||mdn2015x1.com^$popup,third-party (easylist.txt: 28052) -.mdn2015x1.com -# ||marketresearchglobal.com^$popup,third-party (easylist.txt: 28051) -.marketresearchglobal.com -# ||maomaotang.com^$popup,third-party (easylist.txt: 28050) -.maomaotang.com -# ||m57ku6sm.com^$popup,third-party (easylist.txt: 28049) -.m57ku6sm.com -# ||lustigbanner.com^$popup,third-party (easylist.txt: 28048) -.lustigbanner.com -# ||lnkgt.com^$popup,third-party (easylist.txt: 28047) -.lnkgt.com -# ||lmebxwbsno.com^$popup,third-party (easylist.txt: 28046) -.lmebxwbsno.com -# ||liversely.net^$popup,third-party (easylist.txt: 28045) -.liversely.net -# ||livepromotools.com^$popup,third-party (easylist.txt: 28044) -.livepromotools.com -# ||livechatflirt.com^$popup,third-party (easylist.txt: 28043) -.livechatflirt.com -# ||ligatus.com^$popup,third-party (easylist.txt: 28042) -.ligatus.com -# ||letshareus.com^$popup,third-party (easylist.txt: 28041) -.letshareus.com -# ||legisland.net^$popup,third-party (easylist.txt: 28040) -.legisland.net -# ||landsraad.cc^$popup,third-party (easylist.txt: 28039) -.landsraad.cc -# ||kanoodle.com^$popup,third-party (easylist.txt: 28038) -.kanoodle.com -# ||junbi-tracker.com^$popup,third-party (easylist.txt: 28037) -.junbi-tracker.com -# ||jujzh9va.com^$popup,third-party (easylist.txt: 28036) -.jujzh9va.com -# ||jdtracker.com^$popup,third-party (easylist.txt: 28035) -.jdtracker.com -# ||integral-marketing.com^$popup,third-party (easylist.txt: 28034) -.integral-marketing.com -# ||instantpaydaynetwork.com^$popup,third-party (easylist.txt: 28033) -.instantpaydaynetwork.com -# ||insta-cash.net^$popup,third-party (easylist.txt: 28032) -.insta-cash.net -# ||indianweeklynews.com^$popup,third-party (easylist.txt: 28031) -.indianweeklynews.com -# ||inbinaryoption.com^$popup,third-party (easylist.txt: 28029) -.inbinaryoption.com -# ||ilividnewtab.com^$popup,third-party (easylist.txt: 28028) -.ilividnewtab.com -# ||iiasdomk1m9812m4z3.com^$popup,third-party (easylist.txt: 28027) -.iiasdomk1m9812m4z3.com -# ||ifilez.org^$popup,third-party (easylist.txt: 28026) -.ifilez.org -# ||hstpnetwork.com^$popup,third-party (easylist.txt: 28025) -.hstpnetwork.com -# ||hotchatdirect.com^$popup,third-party (easylist.txt: 28024) -.hotchatdirect.com -# ||hornygirlsexposed.com^$popup,third-party (easylist.txt: 28023) -.hornygirlsexposed.com -# ||homecareerforyou1.info^$popup,third-party (easylist.txt: 28022) -.homecareerforyou1.info -# ||hilltopads.net^$popup,third-party (easylist.txt: 28021) -.hilltopads.net -# ||highcpms.com^$popup,third-party (easylist.txt: 28020) -.highcpms.com -# ||hd-plugin.com^$popup,third-party (easylist.txt: 28019) -.hd-plugin.com -# ||gsniper2.com^$popup,third-party (easylist.txt: 28018) -.gsniper2.com -# ||greatbranddeals.com^$popup,third-party (easylist.txt: 28017) -.greatbranddeals.com -# ||gotoplaymillion.com^$popup,third-party (easylist.txt: 28016) -.gotoplaymillion.com -# ||googleads.g.doubleclick.net^$popup,third-party (easylist.txt: 28015) -.googleads.g.doubleclick.net -# ||gofindmedia.net^$popup,third-party (easylist.txt: 28014) -.gofindmedia.net -# ||giveaways.club^$popup,third-party (easylist.txt: 28013) -.giveaways.club -# ||gib-gib-la.com^$popup,third-party (easylist.txt: 28012) -.gib-gib-la.com -# ||ganja.com^$popup,third-party (easylist.txt: 28011) -.ganja.com -# ||g05.info^$popup,third-party (easylist.txt: 28010) -.g05.info -# ||frtya.com^$popup,third-party (easylist.txt: 28009) -.frtya.com -# ||friendlyduck.com^$popup,third-party (easylist.txt: 28008) -.friendlyduck.com -# ||fmdwbsfxf0.com^$popup,third-party (easylist.txt: 28007) -.fmdwbsfxf0.com -# ||firstmediahub.com^$popup,third-party (easylist.txt: 28006) -.firstmediahub.com -# ||firstclass-download.com^$popup,third-party (easylist.txt: 28005) -.firstclass-download.com -# ||findonlinesurveysforcash.com^$popup,third-party (easylist.txt: 28004) -.findonlinesurveysforcash.com -# ||finance-reporting.org^$popup,third-party (easylist.txt: 28003) -.finance-reporting.org -# ||filestube.com^$popup,third-party (easylist.txt: 28002) -.filestube.com -# ||fidel.to^$popup,third-party (easylist.txt: 28001) -.fidel.to -# ||fhserve.com^$popup,third-party (easylist.txt: 28000) -.fhserve.com -# ||f-questionnaire.com^$popup,third-party (easylist.txt: 27999) -.f-questionnaire.com -# ||f-hookups.com^$popup,third-party (easylist.txt: 27998) -.f-hookups.com -# ||ezdownloadpro.info^$popup,third-party (easylist.txt: 27997) -.ezdownloadpro.info -# ||exoclick.com^$popup,third-party (easylist.txt: 27996) -.exoclick.com -# ||ewebse.com^$popup,third-party (easylist.txt: 27995) -.ewebse.com -# ||euromillionairesystem.me^$popup,third-party (easylist.txt: 27994) -.euromillionairesystem.me -# ||eroanalysis.com^$popup,third-party (easylist.txt: 27993) -.eroanalysis.com -# ||epicgameads.com^$popup,third-party (easylist.txt: 27992) -.epicgameads.com -# ||ebzkswbs78.com^$popup,third-party (easylist.txt: 27991) -.ebzkswbs78.com -# ||easykits.org^$popup,third-party (easylist.txt: 27990) -.easykits.org -# ||easydownloadnow.com^$popup,third-party (easylist.txt: 27989) -.easydownloadnow.com -# ||durokuro.com^$popup,third-party (easylist.txt: 27988) -.durokuro.com -# ||downloadthesefile.com^$popup,third-party (easylist.txt: 27987) -.downloadthesefile.com -# ||downloadboutique.com^$popup,third-party (easylist.txt: 27986) -.downloadboutique.com -# ||down1oads.com^$popup,third-party (easylist.txt: 27985) -.down1oads.com -# ||doublepimp.com^$popup,third-party (easylist.txt: 27984) -.doublepimp.com -# ||dojerena.com^$popup,third-party (easylist.txt: 27983) -.dojerena.com -# ||distantstat.com^$popup,third-party (easylist.txt: 27982) -.distantstat.com -# ||distantnews.com^$popup,third-party (easylist.txt: 27981) -.distantnews.com -# ||directrev.com^$popup,third-party (easylist.txt: 27980) -.directrev.com -# ||denza.pro^$popup,third-party (easylist.txt: 27979) -.denza.pro -# ||crazyad.net^$popup,third-party (easylist.txt: 27978) -.crazyad.net -# ||cpvadvertise.com^$popup,third-party (easylist.txt: 27977) -.cpvadvertise.com -# ||cpmterra.com^$popup,third-party (easylist.txt: 27976) -.cpmterra.com -# ||cpmstar.com^$popup,third-party (easylist.txt: 27975) -.cpmstar.com -# ||cpayard.com^$popup,third-party (easylist.txt: 27974) -.cpayard.com -# ||contractallsinstance.info^$popup,third-party (easylist.txt: 27973) -.contractallsinstance.info -# ||contentabc.com^$popup,third-party (easylist.txt: 27972) -.contentabc.com -# ||computersoftwarelive.com^$popup,third-party (easylist.txt: 27971) -.computersoftwarelive.com -# ||cmllk2.info^$popup,third-party (easylist.txt: 27970) -.cmllk2.info -# ||clpremdo.com^$popup,third-party (easylist.txt: 27969) -.clpremdo.com -# ||cloudtracked.com^$popup,third-party (easylist.txt: 27968) -.cloudtracked.com -# ||clkrev.com^$popup,third-party (easylist.txt: 27967) -.clkrev.com -# ||clkmon.com^$popup,third-party (easylist.txt: 27966) -.clkmon.com -# ||clkads.com^$popup,third-party (easylist.txt: 27965) -.clkads.com -# ||clicktripz.com^$popup,third-party (easylist.txt: 27964) -.clicktripz.com -# ||clickter.net^$popup,third-party (easylist.txt: 27963) -.clickter.net -# ||clicksvenue.com^$popup,third-party (easylist.txt: 27962) -.clicksvenue.com -# ||clicksor.com^$popup,third-party (easylist.txt: 27961) -.clicksor.com -# ||clickosmedia.com^$popup,third-party (easylist.txt: 27960) -.clickosmedia.com -# ||clickmngr.com^$popup,third-party (easylist.txt: 27959) -.clickmngr.com -# ||clickfuse.com^$popup,third-party (easylist.txt: 27958) -.clickfuse.com -# ||casino.betsson.com^$popup,third-party (easylist.txt: 27957) -.casino.betsson.com -# ||careerjournalonline.com^$popup (easylist.txt: 27956) -.careerjournalonline.com -# ||callhelpmetaroll.rocks^$popup,third-party (easylist.txt: 27955) -.callhelpmetaroll.rocks -# ||bzrvwbsh5o.com^$popup,third-party (easylist.txt: 27954) -.bzrvwbsh5o.com -# ||brandreachsys.com^$popup,third-party (easylist.txt: 27953) -.brandreachsys.com -# ||bonzuna.com^$popup,third-party (easylist.txt: 27952) -.bonzuna.com -# ||bongacams.com^$popup,third-party (easylist.txt: 27951) -.bongacams.com -# ||blogscash.info^$popup,third-party (easylist.txt: 27950) -.blogscash.info -# ||blockthis.es^$popup,third-party (easylist.txt: 27949) -.blockthis.es -# ||blinkogold.es^$popup,third-party (easylist.txt: 27948) -.blinkogold.es -# ||blinko.es^$popup,third-party (easylist.txt: 27947) -.blinko.es -# ||binaryoptionsgame.com^$popup,third-party (easylist.txt: 27946) -.binaryoptionsgame.com -# ||bighot.ru^$popup,third-party (easylist.txt: 27945) -.bighot.ru -# ||bidvertiser.com^$popup,third-party (easylist.txt: 27944) -.bidvertiser.com -# ||bidsystem.com^$popup,third-party (easylist.txt: 27943) -.bidsystem.com -# ||bestproducttesters.com^$popup,third-party (easylist.txt: 27942) -.bestproducttesters.com -# ||best-zb.com^$popup,third-party (easylist.txt: 27941) -.best-zb.com -# ||bentdownload.com^$popup,third-party (easylist.txt: 27940) -.bentdownload.com -# ||becoquins.net^$popup,third-party (easylist.txt: 27939) -.becoquins.net -# ||becoquin.com^$popup,third-party (easylist.txt: 27938) -.becoquin.com -# ||bbuni.com^$popup,third-party (easylist.txt: 27937) -.bbuni.com -# ||baypops.com^$popup,third-party (easylist.txt: 27936) -.baypops.com -# ||awsclic.com^$popup,third-party (easylist.txt: 27935) -.awsclic.com -# ||awempire.com^$popup,third-party (easylist.txt: 27934) -.awempire.com -# ||avalopaly.com^$popup,third-party (easylist.txt: 27933) -.avalopaly.com -# ||august15download.com^$popup,third-party (easylist.txt: 27932) -.august15download.com -# ||ar.voicefive.com^$popup,third-party (easylist.txt: 27931) -.ar.voicefive.com -# ||answered-questions.com^$popup,third-party (easylist.txt: 27930) -.answered-questions.com -# ||annualinternetsurvey.com^$popup,third-party (easylist.txt: 27929) -.annualinternetsurvey.com -# ||angege.com^$popup,third-party (easylist.txt: 27928) -.angege.com -# ||am10.ru^$popup,third-party (easylist.txt: 27927) -.am10.ru -# ||alternads.info^$popup,third-party (easylist.txt: 27926) -.alternads.info -# ||alpinedrct.com^$popup,third-party (easylist.txt: 27925) -.alpinedrct.com -# ||allsporttv.com^$popup,third-party (easylist.txt: 27924) -.allsporttv.com -# ||allslotscasino.com^$popup,third-party (easylist.txt: 27923) -.allslotscasino.com -# ||aflrm.com^$popup,third-party (easylist.txt: 27922) -.aflrm.com -# ||affbuzzads.com^$popup,third-party (easylist.txt: 27921) -.affbuzzads.com -# ||advmedialtd.com^$popup,third-party (easylist.txt: 27920) -.advmedialtd.com -# ||advertserve.com^$popup,third-party (easylist.txt: 27919) -.advertserve.com -# ||adtraffic.org^$popup,third-party (easylist.txt: 27918) -.adtraffic.org -# ||adtrace.org^$popup,third-party (easylist.txt: 27917) -.adtrace.org -# ||adsurve.com^$popup,third-party (easylist.txt: 27916) -.adsurve.com -# ||adsupplyads.com^$popup,third-party (easylist.txt: 27915) -.adsupplyads.com -# ||adsupply.com^$popup,third-party (easylist.txt: 27914) -.adsupply.com -# ||adsmarket.com^$popup,third-party (easylist.txt: 27913) -.adsmarket.com -# ||adshostnet.com^$popup,third-party (easylist.txt: 27912) -.adshostnet.com -# ||adserverplus.com^$popup,third-party (easylist.txt: 27911) -.adserverplus.com -# ||ads.sexier.com^$popup,third-party (easylist.txt: 27910) -.ads.sexier.com -# ||adplxmd.com^$popup,third-party (easylist.txt: 27909) -.adplxmd.com -# ||adonweb.ru^$popup,third-party (easylist.txt: 27908) -.adonweb.ru -# ||adnxs.com^$popup,third-party (easylist.txt: 27907) -.adnxs.com -# ||adnetworkperformance.com^$popup,third-party (easylist.txt: 27906) -.adnetworkperformance.com -# ||adlure.net^$popup,third-party (easylist.txt: 27905) -.adlure.net -# ||adk2x.com^$popup,third-party (easylist.txt: 27904) -.adk2x.com -# ||adk2.net^$popup,third-party (easylist.txt: 27903) -.adk2.net -# ||adk2.com^$popup,third-party (easylist.txt: 27902) -.adk2.com -# ||adk2.co^$popup,third-party (easylist.txt: 27901) -.adk2.co -# ||adjuggler.net^$popup,third-party (easylist.txt: 27900) -.adjuggler.net -# ||aditor.com^$popup,third-party (easylist.txt: 27899) -.aditor.com -# ||adimps.com^$popup,third-party (easylist.txt: 27898) -.adimps.com -# ||adform.net^$popup,third-party (easylist.txt: 27897) -.adform.net -# ||adfarm.mediaplex.com^$popup,third-party (easylist.txt: 27896) -.adfarm.mediaplex.com -# ||adcdnx.com^$popup,third-party (easylist.txt: 27895) -.adcdnx.com -# ||adcash.com^$popup,third-party (easylist.txt: 27894) -.adcash.com -# ||adbma.com^$popup,third-party (easylist.txt: 27893) -.adbma.com -# ||ad4game.com^$popup,third-party (easylist.txt: 27892) -.ad4game.com -# ||ad2games.com^$popup,third-party (easylist.txt: 27891) -.ad2games.com -# ||ad2387.com^$popup,third-party (easylist.txt: 27890) -.ad2387.com -# ||ad131m.com^$popup,third-party (easylist.txt: 27889) -.ad131m.com -# ||ad.doubleclick.net^$popup,third-party (easylist.txt: 27888) -.ad.doubleclick.net -# ||ad-feeds.com^$popup,third-party (easylist.txt: 27887) -.ad-feeds.com -# ||ad-emea.doubleclick.net^$popup,third-party (easylist.txt: 27886) -.ad-emea.doubleclick.net -# ||ad-apac.doubleclick.net^$popup,third-party (easylist.txt: 27885) -.ad-apac.doubleclick.net -# ||absoluteclickscom.com^$popup,third-party (easylist.txt: 27884) -.absoluteclickscom.com -# ||abbeyblog.me^$popup,third-party (easylist.txt: 27883) -.abbeyblog.me -# ||9newstoday.net^$popup,third-party (easylist.txt: 27882) -.9newstoday.net -# ||888promos.com^$popup,third-party (easylist.txt: 27881) -.888promos.com -# ||888poker.com^$popup,third-party (easylist.txt: 27880) -.888poker.com -# ||888media.net^$popup,third-party (easylist.txt: 27879) -.888media.net -# ||888games.com^$popup,third-party (easylist.txt: 27878) -.888games.com -# ||888casino.com^$popup,third-party (easylist.txt: 27877) -.888casino.com -# ||83nsdjqqo1cau183xz.com^$popup,third-party (easylist.txt: 27876) -.83nsdjqqo1cau183xz.com -# ||5dimes.com^$popup,third-party (easylist.txt: 27875) -.5dimes.com -# ||4dsply.com^$popup,third-party (easylist.txt: 27874) -.4dsply.com -# ||360adstrack.com^$popup,third-party (easylist.txt: 27873) -.360adstrack.com -# ||360adshost.net^$popup,third-party (easylist.txt: 27872) -.360adshost.net -# ||32d1d3b9c.se^$popup,third-party (easylist.txt: 27871) -.32d1d3b9c.se -# ||30daychange.co^$popup,third-party (easylist.txt: 27870) -.30daychange.co -# ||2mdn.info^$popup,third-party (easylist.txt: 27869) -.2mdn.info -# ||1phads.com^$popup,third-party (easylist.txt: 27868) -.1phads.com -# ||1afcfcb2c.ninja^$popup,third-party (easylist.txt: 27867) -.1afcfcb2c.ninja -# ||123vidz.com^$popup,third-party (easylist.txt: 27866) -.123vidz.com -# ||zrfrornn.net^$third-party (easylist.txt: 27864) -.zrfrornn.net -# ||zomri.net^$third-party (easylist.txt: 27863) -.zomri.net -# ||ziccardia.com^$third-party (easylist.txt: 27862) -.ziccardia.com -# ||z4pick.com^$third-party (easylist.txt: 27861) -.z4pick.com -# ||yuasaghn.com^$third-party (easylist.txt: 27860) -.yuasaghn.com -# ||yrrrbn.me^$third-party (easylist.txt: 27859) -.yrrrbn.me -# ||ypprr.com^$third-party (easylist.txt: 27858) -.ypprr.com -# ||ypppdc.com^$third-party (easylist.txt: 27857) -.ypppdc.com -# ||yopdi.com^$third-party (easylist.txt: 27856) -.yopdi.com -# ||yomri.net^$third-party (easylist.txt: 27855) -.yomri.net -# ||yodr.net^$third-party (easylist.txt: 27854) -.yodr.net -# ||yobr.net^$third-party (easylist.txt: 27853) -.yobr.net -# ||yardr.net^$third-party (easylist.txt: 27852) -.yardr.net -# ||xylopologyn.com^$third-party (easylist.txt: 27851) -.xylopologyn.com -# ||xplrer.co^$third-party (easylist.txt: 27850) -.xplrer.co -# ||xcrsqg.com^$third-party (easylist.txt: 27849) -.xcrsqg.com -# ||wudr.net^$third-party (easylist.txt: 27848) -.wudr.net -# ||wuatriser.net^$third-party (easylist.txt: 27847) -.wuatriser.net -# ||wuarnurf.net^$third-party (easylist.txt: 27846) -.wuarnurf.net -# ||wopdi.com^$third-party (easylist.txt: 27845) -.wopdi.com -# ||wensdteuy.com^$third-party (easylist.txt: 27844) -.wensdteuy.com -# ||waddr.com^$third-party (easylist.txt: 27843) -.waddr.com -# ||vuadiolgy.net^$third-party (easylist.txt: 27842) -.vuadiolgy.net -# ||vopdi.com^$third-party (easylist.txt: 27841) -.vopdi.com -# ||virsualr.com^$third-party (easylist.txt: 27840) -.virsualr.com -# ||viewscout.com^$third-party (easylist.txt: 27839) -.viewscout.com -# ||v8bridge.link^$third-party (easylist.txt: 27838) -.v8bridge.link -# ||username1.link^$third-party (easylist.txt: 27837) -.username1.link -# ||uppo.co^$third-party (easylist.txt: 27836) -.uppo.co -# ||unuarvse.net^$third-party (easylist.txt: 27835) -.unuarvse.net -# ||tualipoly.net^$third-party (easylist.txt: 27834) -.tualipoly.net -# ||trndi.net^$third-party (easylist.txt: 27833) -.trndi.net -# ||trllxv.co^$third-party (easylist.txt: 27832) -.trllxv.co -# ||topdi.net^$third-party (easylist.txt: 27831) -.topdi.net -# ||tolosgrey.net^$third-party (easylist.txt: 27830) -.tolosgrey.net -# ||thrilamd.net^$third-party (easylist.txt: 27829) -.thrilamd.net -# ||thiscdn.com^$third-party (easylist.txt: 27828) -.thiscdn.com -# ||th4wwe.net^$third-party (easylist.txt: 27827) -.th4wwe.net -# ||t7row.com^$third-party (easylist.txt: 27826) -.t7row.com -# ||t3sort.com^$third-party (easylist.txt: 27825) -.t3sort.com -# ||sxrrxa.net^$third-party (easylist.txt: 27824) -.sxrrxa.net -# ||spoa-soard.com^$third-party (easylist.txt: 27823) -.spoa-soard.com -# ||splazards.com^$third-party (easylist.txt: 27822) -.splazards.com -# ||spereminf.com^$third-party (easylist.txt: 27821) -.spereminf.com -# ||simusangr.com^$third-party (easylist.txt: 27820) -.simusangr.com -# ||sfesd.net^$third-party (easylist.txt: 27819) -.sfesd.net -# ||selectr.net^$third-party (easylist.txt: 27818) -.selectr.net -# ||rugistratuan.com^$third-party (easylist.txt: 27817) -.rugistratuan.com -# ||rugistoto.net^$third-party (easylist.txt: 27816) -.rugistoto.net -# ||rterdf.me^$third-party (easylist.txt: 27815) -.rterdf.me -# ||rlex.org^$third-party (easylist.txt: 27814) -.rlex.org -# ||rigistrar.net^$third-party (easylist.txt: 27813) -.rigistrar.net -# ||rhgersf.com^$third-party (easylist.txt: 27812) -.rhgersf.com -# ||regersd.net^$third-party (easylist.txt: 27811) -.regersd.net -# ||rdige.com^$third-party (easylist.txt: 27810) -.rdige.com -# ||r3seek.com^$third-party (easylist.txt: 27809) -.r3seek.com -# ||qzsccm.com^$third-party (easylist.txt: 27808) -.qzsccm.com -# ||qewa33a.com^$third-party (easylist.txt: 27807) -.qewa33a.com -# ||q3sift.com^$third-party (easylist.txt: 27806) -.q3sift.com -# ||prndi.net^$third-party (easylist.txt: 27805) -.prndi.net -# ||prfffc.info^$third-party (easylist.txt: 27804) -.prfffc.info -# ||polawrg.com^$third-party (easylist.txt: 27803) -.polawrg.com -# ||pikkr.net^$third-party (easylist.txt: 27802) -.pikkr.net -# ||p7vortex.com^$third-party (easylist.txt: 27801) -.p7vortex.com -# ||opner.co^$third-party (easylist.txt: 27800) -.opner.co -# ||oplo.org^$third-party (easylist.txt: 27799) -.oplo.org -# ||nuaknamg.net^$third-party (easylist.txt: 27798) -.nuaknamg.net -# ||nrfort.com^$third-party (easylist.txt: 27797) -.nrfort.com -# ||maningrs.com^$third-party (easylist.txt: 27796) -.maningrs.com -# ||luadcik.com^$third-party (easylist.txt: 27795) -.luadcik.com -# ||loopr.co^$third-party (easylist.txt: 27794) -.loopr.co -# ||lirte.org^$third-party (easylist.txt: 27793) -.lirte.org -# ||lia-ndr.com^$third-party (easylist.txt: 27792) -.lia-ndr.com -# ||lesuard.com^$third-party (easylist.txt: 27791) -.lesuard.com -# ||leanoisgo.com^$third-party (easylist.txt: 27790) -.leanoisgo.com -# ||kuangard.net^$third-party (easylist.txt: 27789) -.kuangard.net -# ||knoandr.com^$third-party (easylist.txt: 27788) -.knoandr.com -# ||kioshow.com^$third-party (easylist.txt: 27787) -.kioshow.com -# ||kilomonj.net^$third-party (easylist.txt: 27786) -.kilomonj.net -# ||jusukrs.com^$third-party (easylist.txt: 27785) -.jusukrs.com -# ||juruasikr.net^$third-party (easylist.txt: 27784) -.juruasikr.net -# ||jellr.net^$third-party (easylist.txt: 27783) -.jellr.net -# ||jdrm4.com^$third-party (easylist.txt: 27782) -.jdrm4.com -# ||jaspensar.com^$third-party (easylist.txt: 27781) -.jaspensar.com -# ||ivism.org^$third-party (easylist.txt: 27780) -.ivism.org -# ||iunbrudy.net^$third-party (easylist.txt: 27779) -.iunbrudy.net -# ||ignup.com^$third-party (easylist.txt: 27778) -.ignup.com -# ||hoppr.co^$third-party (easylist.txt: 27777) -.hoppr.co -# ||holmgard.link^$third-party (easylist.txt: 27776) -.holmgard.link -# ||hobri.net^$third-party (easylist.txt: 27775) -.hobri.net -# ||heizuanubr.net^$third-party (easylist.txt: 27774) -.heizuanubr.net -# ||havnr.com^$third-party (easylist.txt: 27773) -.havnr.com -# ||hapnr.net^$third-party (easylist.txt: 27772) -.hapnr.net -# ||gusufrs.me^$third-party (easylist.txt: 27771) -.gusufrs.me -# ||gghfncd.net^$third-party (easylist.txt: 27770) -.gghfncd.net -# ||fuandarst.com^$third-party (easylist.txt: 27769) -.fuandarst.com -# ||frxrydv.com^$third-party (easylist.txt: 27768) -.frxrydv.com -# ||frxle.com^$third-party (easylist.txt: 27767) -.frxle.com -# ||fowar.net^$third-party (easylist.txt: 27766) -.fowar.net -# ||foulsomty.com^$third-party (easylist.txt: 27765) -.foulsomty.com -# ||flaurse.net^$third-party (easylist.txt: 27764) -.flaurse.net -# ||flaudnrs.me^$third-party (easylist.txt: 27763) -.flaudnrs.me -# ||faunsts.me^$third-party (easylist.txt: 27762) -.faunsts.me -# ||extonsuan.com^$third-party (easylist.txt: 27761) -.extonsuan.com -# ||exlpor.com^$third-party (easylist.txt: 27760) -.exlpor.com -# ||exernala.com^$third-party (easylist.txt: 27759) -.exernala.com -# ||excolobar.com^$third-party (easylist.txt: 27758) -.excolobar.com -# ||exciliburn.com^$third-party (easylist.txt: 27757) -.exciliburn.com -# ||exactly0r.com^$third-party (easylist.txt: 27756) -.exactly0r.com -# ||esults.net^$third-party (easylist.txt: 27755) -.esults.net -# ||ershgrst.com^$third-party (easylist.txt: 27754) -.ershgrst.com -# ||ergers.net^$third-party (easylist.txt: 27753) -.ergers.net -# ||entru.co^$third-party (easylist.txt: 27752) -.entru.co -# ||elepheny.com^$third-party (easylist.txt: 27751) -.elepheny.com -# ||edabl.net^$third-party (easylist.txt: 27750) -.edabl.net -# ||dutolats.net^$third-party (easylist.txt: 27749) -.dutolats.net -# ||duactinor.net^$third-party (easylist.txt: 27748) -.duactinor.net -# ||drfflt.info^$third-party (easylist.txt: 27747) -.drfflt.info -# ||draugonda.net^$third-party (easylist.txt: 27746) -.draugonda.net -# ||doumantr.com^$third-party (easylist.txt: 27745) -.doumantr.com -# ||domri.net^$third-party (easylist.txt: 27744) -.domri.net -# ||dilpy.org^$third-party (easylist.txt: 27743) -.dilpy.org -# ||diabolicaf.com^$third-party (easylist.txt: 27742) -.diabolicaf.com -# ||deuskex.link^$third-party (easylist.txt: 27741) -.deuskex.link -# ||d3lens.com^$third-party (easylist.txt: 27740) -.d3lens.com -# ||crhikay.me^$third-party (easylist.txt: 27739) -.crhikay.me -# ||cotnr.com^$third-party (easylist.txt: 27738) -.cotnr.com -# ||contentr.net^$third-party (easylist.txt: 27737) -.contentr.net -# ||contentolyze.net^$third-party (easylist.txt: 27736) -.contentolyze.net -# ||compoter.net^$third-party (easylist.txt: 27735) -.compoter.net -# ||coaterhand.net^$third-party (easylist.txt: 27734) -.coaterhand.net -# ||chualangry.com^$third-party (easylist.txt: 27733) -.chualangry.com -# ||chiuawa.net^$third-party (easylist.txt: 27732) -.chiuawa.net -# ||chansiar.net^$third-party (easylist.txt: 27731) -.chansiar.net -# ||casiours.com^$third-party (easylist.txt: 27730) -.casiours.com -# ||c8factor.com^$third-party (easylist.txt: 27729) -.c8factor.com -# ||buoalait.com^$third-party (easylist.txt: 27728) -.buoalait.com -# ||buhafr.net^$third-party (easylist.txt: 27727) -.buhafr.net -# ||buatongz.net^$third-party (easylist.txt: 27726) -.buatongz.net -# ||boafernd.com^$third-party (easylist.txt: 27725) -.boafernd.com -# ||bluazard.net^$third-party (easylist.txt: 27724) -.bluazard.net -# ||blipi.net^$third-party (easylist.txt: 27723) -.blipi.net -# ||bliankerd.net^$third-party (easylist.txt: 27722) -.bliankerd.net -# ||blazwuatr.com^$third-party (easylist.txt: 27721) -.blazwuatr.com -# ||blaundorz.com^$third-party (easylist.txt: 27720) -.blaundorz.com -# ||biastoful.net^$third-party (easylist.txt: 27719) -.biastoful.net -# ||biankord.net^$third-party (easylist.txt: 27718) -.biankord.net -# ||baungarnr.com^$third-party (easylist.txt: 27717) -.baungarnr.com -# ||batarsur.com^$third-party (easylist.txt: 27716) -.batarsur.com -# ||baordrid.com^$third-party (easylist.txt: 27715) -.baordrid.com -# ||artbr.net^$third-party (easylist.txt: 27714) -.artbr.net -# ||appr8.net^$third-party (easylist.txt: 27713) -.appr8.net -# ||anomiely.com^$third-party (easylist.txt: 27712) -.anomiely.com -# ||allianrd.net^$third-party (easylist.txt: 27711) -.allianrd.net -# ||advuatianf.com^$third-party (easylist.txt: 27710) -.advuatianf.com -# ||addo-mnton.com^$third-party (easylist.txt: 27709) -.addo-mnton.com -# ||accmndtion.org^$third-party (easylist.txt: 27708) -.accmndtion.org -# ||atresadvertising.com^$third-party (easylist.txt: 27706) -.atresadvertising.com -# ||adhood.com^$third-party (easylist.txt: 27705) -.adhood.com -# ||yieldmo.com^$third-party (easylist.txt: 27703) -.yieldmo.com -# ||waptrick.com^$third-party (easylist.txt: 27702) -.waptrick.com -# ||wapdollar.in^$third-party (easylist.txt: 27701) -.wapdollar.in -# ||vungle.com^$third-party (easylist.txt: 27700) -.vungle.com -# ||tapjoyads.com^$third-party (easylist.txt: 27699) -.tapjoyads.com -# ||stepkeydo.com^$third-party (easylist.txt: 27698) -.stepkeydo.com -# ||startappexchange.com^$third-party (easylist.txt: 27697) -.startappexchange.com -# ||smaato.net^$third-party (easylist.txt: 27696) -.smaato.net -# ||sascdn.com^$third-party (easylist.txt: 27695) -.sascdn.com -# ||mysearch-online.com^$third-party (easylist.txt: 27694) -.mysearch-online.com -# ||mojiva.com^$third-party (easylist.txt: 27693) -.mojiva.com -# ||mocean.mobi^$third-party (easylist.txt: 27692) -.mocean.mobi -# ||mobpartner.mobi^$third-party (easylist.txt: 27691) -.mobpartner.mobi -# ||mobizme.net^$third-party (easylist.txt: 27690) -.mobizme.net -# ||mobgold.com^$third-party (easylist.txt: 27689) -.mobgold.com -# ||mkhoj.com^$third-party (easylist.txt: 27688) -.mkhoj.com -# ||millennialmedia.com^$third-party (easylist.txt: 27687) -.millennialmedia.com -# ||mad-adz.com^$third-party (easylist.txt: 27686) -.mad-adz.com -# ||kuad.kusogi.com^$third-party (easylist.txt: 27685) -.kuad.kusogi.com -# ||inmobi.com^$third-party (easylist.txt: 27684) -.inmobi.com -# ||greystripe.com^$third-party (easylist.txt: 27683) -.greystripe.com -# ||doubleclick.net^*/pfadx/app.ytpwatch.$third-party (easylist.txt: 27682) -.doubleclick.net/.*/pfadx/app\.ytpwatch\. -# ||dmg-mobile.com^$third-party (easylist.txt: 27681) -.dmg-mobile.com -# ||buxx.mobi^$third-party (easylist.txt: 27680) -.buxx.mobi -# ||appads.com^$third-party (easylist.txt: 27679) -.appads.com -# ||amobee.com^$third-party (easylist.txt: 27678) -.amobee.com -# ||airpush.com^$third-party (easylist.txt: 27677) -.airpush.com -# ||adzmob.com^$third-party (easylist.txt: 27676) -.adzmob.com -# ||adwired.mobi^$third-party (easylist.txt: 27675) -.adwired.mobi -# ||adwhirl.com^$third-party (easylist.txt: 27674) -.adwhirl.com -# ||admob.com^$third-party (easylist.txt: 27673) -.admob.com -# ||adiquity.com^$third-party (easylist.txt: 27672) -.adiquity.com -# ||adcolony.com^$third-party (easylist.txt: 27671) -.adcolony.com -# ||adbuddiz.com^$third-party (easylist.txt: 27670) -.adbuddiz.com -# ||zypenetwork.com^$third-party (easylist.txt: 27668) -.zypenetwork.com -# ||zyiis.net^$third-party (easylist.txt: 27667) -.zyiis.net -# ||zxxds.net^$third-party (easylist.txt: 27666) -.zxxds.net -# ||zwaar.org^$third-party (easylist.txt: 27665) -.zwaar.org -# ||zugo.com^$third-party (easylist.txt: 27664) -.zugo.com -# ||zoomdirect.com.au^$third-party (easylist.txt: 27663) -.zoomdirect.com.au -# ||zonplug.com^$third-party (easylist.txt: 27662) -.zonplug.com -# ||zonealta.com^$third-party (easylist.txt: 27661) -.zonealta.com -# ||zompmedia.com^$third-party (easylist.txt: 27660) -.zompmedia.com -# ||zoglafi.info^$third-party (easylist.txt: 27659) -.zoglafi.info -# ||znaptag.com^$third-party (easylist.txt: 27658) -.znaptag.com -# ||zipropyl.com^$third-party (easylist.txt: 27657) -.zipropyl.com -# ||ziffdavis.com^$third-party (easylist.txt: 27656) -.ziffdavis.com -# ||zidae.com^$third-party (easylist.txt: 27655) -.zidae.com -# ||zferral.com^$third-party (easylist.txt: 27654) -.zferral.com -# ||zeropark.com^$third-party (easylist.txt: 27653) -.zeropark.com -# ||zerezas.com^$third-party (easylist.txt: 27652) -.zerezas.com -# ||zercstas.com^$third-party (easylist.txt: 27651) -.zercstas.com -# ||zenoviagroup.com^$third-party (easylist.txt: 27650) -.zenoviagroup.com -# ||zenoviaexchange.com^$third-party (easylist.txt: 27649) -.zenoviaexchange.com -# ||zeesiti.com^$third-party (easylist.txt: 27648) -.zeesiti.com -# ||zedo.com^$third-party (easylist.txt: 27647) -.zedo.com -# ||zeads.com^$third-party (easylist.txt: 27646) -.zeads.com -# ||zde-engage.com^$third-party (easylist.txt: 27645) -.zde-engage.com -# ||zapunited.com^$third-party (easylist.txt: 27644) -.zapunited.com -# ||zappy.co.za^$third-party (easylist.txt: 27643) -.zappy.co.za -# ||zaparena.com^$third-party (easylist.txt: 27642) -.zaparena.com -# ||zanox.com/ppv/$third-party (easylist.txt: 27641) -.zanox.com/ppv/ -# ||zanox-affiliate.de/ppv/$third-party (easylist.txt: 27640) -.zanox-affiliate.de/ppv/ -# ||zangocash.com^$third-party (easylist.txt: 27639) -.zangocash.com -# ||z5x.net^$third-party (easylist.txt: 27638) -.z5x.net -# ||z-defense.com^$third-party (easylist.txt: 27637) -.z-defense.com -# ||yzus09by.com^$third-party (easylist.txt: 27636) -.yzus09by.com -# ||yzrnur.com^$third-party (easylist.txt: 27635) -.yzrnur.com -# ||yz56lywd.com^$third-party (easylist.txt: 27634) -.yz56lywd.com -# ||yvoria.com^$third-party (easylist.txt: 27633) -.yvoria.com -# ||yupfiles.net^$third-party (easylist.txt: 27632) -.yupfiles.net -# ||yumenetworks.com^$third-party (easylist.txt: 27631) -.yumenetworks.com -# ||yucce.com^$third-party (easylist.txt: 27630) -.yucce.com -# ||yuarth.com^$third-party (easylist.txt: 27629) -.yuarth.com -# ||ytsa.net^$third-party (easylist.txt: 27628) -.ytsa.net -# ||yourquickads.com^$third-party (easylist.txt: 27627) -.yourquickads.com -# ||yourfastpaydayloans.com^$third-party (easylist.txt: 27626) -.yourfastpaydayloans.com -# ||youradexchange.com^$third-party (easylist.txt: 27625) -.youradexchange.com -# ||your-tornado-file.org^$third-party (easylist.txt: 27624) -.your-tornado-file.org -# ||your-tornado-file.com^$third-party (easylist.txt: 27623) -.your-tornado-file.com -# ||youlouk.com^$third-party (easylist.txt: 27622) -.youlouk.com -# ||youlamedia.com^$third-party (easylist.txt: 27621) -.youlamedia.com -# ||youcandoitwithroi.com^$third-party (easylist.txt: 27620) -.youcandoitwithroi.com -# ||yottacash.com^$third-party (easylist.txt: 27619) -.yottacash.com -# ||yoc-adserver.com^$third-party (easylist.txt: 27618) -.yoc-adserver.com -# ||ymads.com^$third-party (easylist.txt: 27617) -.ymads.com -# ||yllix.com^$third-party (easylist.txt: 27616) -.yllix.com -# ||yldmgrimg.net^$third-party (easylist.txt: 27615) -.yldmgrimg.net -# ||yldbt.com^$third-party (easylist.txt: 27614) -.yldbt.com -# ||yieldx.com^$third-party (easylist.txt: 27613) -.yieldx.com -# ||yieldselect.com^$third-party (easylist.txt: 27612) -.yieldselect.com -# ||yieldoptimizer.com^$third-party (easylist.txt: 27611) -.yieldoptimizer.com -# ||yieldmanager.net^$third-party (easylist.txt: 27610) -.yieldmanager.net -# ||yieldmanager.com^$third-party (easylist.txt: 27609) -.yieldmanager.com -# ||yieldlab.net^$third-party (easylist.txt: 27608) -.yieldlab.net -# ||yieldkit.com^$third-party (easylist.txt: 27607) -.yieldkit.com -# ||yieldbuild.com^$third-party (easylist.txt: 27606) -.yieldbuild.com -# ||yieldadvert.com^$third-party (easylist.txt: 27605) -.yieldadvert.com -# ||yieldads.com^$third-party (easylist.txt: 27604) -.yieldads.com -# ||yesnexus.com^$third-party (easylist.txt: 27603) -.yesnexus.com -# ||yesadsrv.com^$third-party (easylist.txt: 27602) -.yesadsrv.com -# ||yes-messenger.com^$third-party (easylist.txt: 27601) -.yes-messenger.com -# ||yellads.com^$third-party (easylist.txt: 27600) -.yellads.com -# ||yeabble.com^$third-party (easylist.txt: 27599) -.yeabble.com -# ||yceml.net^$third-party (easylist.txt: 27598) -.yceml.net -# ||ycasmd.info^$third-party (easylist.txt: 27597) -.ycasmd.info -# ||yb0t.com^$third-party (easylist.txt: 27596) -.yb0t.com -# ||yawnedgtuis.org^$third-party (easylist.txt: 27595) -.yawnedgtuis.org -# ||yashi.com^$third-party (easylist.txt: 27594) -.yashi.com -# ||yambotan.ru^$third-party (easylist.txt: 27593) -.yambotan.ru -# ||yadomedia.com^$third-party (easylist.txt: 27592) -.yadomedia.com -# ||yabuka.com^$third-party (easylist.txt: 27591) -.yabuka.com -# ||ya88s1yk.com^$third-party (easylist.txt: 27590) -.ya88s1yk.com -# ||xxlink.net^$third-party (easylist.txt: 27589) -.xxlink.net -# ||xx00.info^$third-party (easylist.txt: 27588) -.xx00.info -# ||xvika.com^$third-party (easylist.txt: 27587) -.xvika.com -# ||xubob.com^$third-party (easylist.txt: 27586) -.xubob.com -# ||xtendmedia.com^$third-party (easylist.txt: 27585) -.xtendmedia.com -# ||xtendadvert.com^$third-party (easylist.txt: 27584) -.xtendadvert.com -# ||xtcie.com^$third-party (easylist.txt: 27583) -.xtcie.com -# ||xs.mochiads.com^$third-party (easylist.txt: 27582) -.xs.mochiads.com -# ||xmlconfig.ltassrv.com^$third-party (easylist.txt: 27581) -.xmlconfig.ltassrv.com -# ||xmasdom.com^$third-party (easylist.txt: 27580) -.xmasdom.com -# ||xjfjx8hw.com^$third-party (easylist.txt: 27579) -.xjfjx8hw.com -# ||xgraph.net^$third-party (easylist.txt: 27578) -.xgraph.net -# ||xfs5yhr1.com^$third-party (easylist.txt: 27577) -.xfs5yhr1.com -# ||xfileload.com^$third-party (easylist.txt: 27576) -.xfileload.com -# ||xeontopa.com^$third-party (easylist.txt: 27575) -.xeontopa.com -# ||xdirectx.com^$third-party (easylist.txt: 27574) -.xdirectx.com -# ||xdev.info^$third-party (easylist.txt: 27573) -.xdev.info -# ||xchangebanners.com^$third-party (easylist.txt: 27572) -.xchangebanners.com -# ||xcelsiusadserver.com^$third-party (easylist.txt: 27571) -.xcelsiusadserver.com -# ||xcelltech.com^$third-party (easylist.txt: 27570) -.xcelltech.com -# ||xaxoro.com^$third-party (easylist.txt: 27569) -.xaxoro.com -# ||xadcentral.com^$third-party (easylist.txt: 27568) -.xadcentral.com -# ||xad.com^$third-party (easylist.txt: 27567) -.xad.com -# ||x4300tiz.com^$third-party (easylist.txt: 27566) -.x4300tiz.com -# ||x.mochiads.com^$third-party (easylist.txt: 27565) -.x.mochiads.com -# ||wwwpromoter.com^$third-party (easylist.txt: 27564) -.wwwpromoter.com -# ||wwwadcntr.com^$third-party (easylist.txt: 27563) -.wwwadcntr.com -# ||wwv4ez0n.com^$third-party (easylist.txt: 27562) -.wwv4ez0n.com -# ||wwbn.com^$third-party (easylist.txt: 27561) -.wwbn.com -# ||wurea.com^$third-party (easylist.txt: 27560) -.wurea.com -# ||wulium.com^$third-party (easylist.txt: 27559) -.wulium.com -# ||worthyadvertising.com^$third-party (easylist.txt: 27558) -.worthyadvertising.com -# ||worthathousandwords.com^$third-party (easylist.txt: 27557) -.worthathousandwords.com -# ||worldwidemailer.com^$third-party (easylist.txt: 27556) -.worldwidemailer.com -# ||worlddatinghere.com^$third-party (easylist.txt: 27555) -.worlddatinghere.com -# ||wordego.com^$third-party (easylist.txt: 27554) -.wordego.com -# ||wordbankads.com^$third-party (easylist.txt: 27553) -.wordbankads.com -# ||wootmedia.net^$third-party (easylist.txt: 27552) -.wootmedia.net -# ||wonclick.com^$third-party (easylist.txt: 27551) -.wonclick.com -# ||wmmediacorp.com^$third-party (easylist.txt: 27550) -.wmmediacorp.com -# ||wlmarketing.com^$third-party (easylist.txt: 27549) -.wlmarketing.com -# ||winsspeeder.info^$third-party (easylist.txt: 27548) -.winsspeeder.info -# ||wingads.com^$third-party (easylist.txt: 27547) -.wingads.com -# ||winbuyer.com^$third-party (easylist.txt: 27546) -.winbuyer.com -# ||wigetstudios.com^$third-party (easylist.txt: 27545) -.wigetstudios.com -# ||wigetmedia.com^$third-party (easylist.txt: 27544) -.wigetmedia.com -# ||widgetwidget.mobi^$third-party (easylist.txt: 27543) -.widgetwidget.mobi -# ||widgetvalue.net^$third-party (easylist.txt: 27542) -.widgetvalue.net -# ||widgetsurvey.biz^$third-party (easylist.txt: 27541) -.widgetsurvey.biz -# ||widgets.fccinteractive.com^$third-party (easylist.txt: 27540) -.widgets.fccinteractive.com -# ||widgetlead.net^$third-party (easylist.txt: 27539) -.widgetlead.net -# ||widgetbucks.com^$third-party (easylist.txt: 27538) -.widgetbucks.com -# ||widgetbanner.mobi^$third-party (easylist.txt: 27537) -.widgetbanner.mobi -# ||widgetadvertising.biz^$third-party (easylist.txt: 27536) -.widgetadvertising.biz -# ||widget.yavli.com^$third-party (easylist.txt: 27535) -.widget.yavli.com -# ||why-outsource.net^$third-party (easylist.txt: 27534) -.why-outsource.net -# ||whtsrv9.com^$third-party (easylist.txt: 27533) -.whtsrv9.com -# ||whoads.net^$third-party (easylist.txt: 27532) -.whoads.net -# ||where.com^$third-party (easylist.txt: 27531) -.where.com -# ||wh5kb0u4.com^$third-party (easylist.txt: 27530) -.wh5kb0u4.com -# ||wgreatdream.com^$third-party (easylist.txt: 27529) -.wgreatdream.com -# ||wfnetwork.com^$third-party (easylist.txt: 27528) -.wfnetwork.com -# ||werbe-sponsor.de^$third-party (easylist.txt: 27527) -.werbe-sponsor.de -# ||wellturnedpenne.info^$third-party (easylist.txt: 27526) -.wellturnedpenne.info -# ||wegotmedia.com^$third-party (easylist.txt: 27525) -.wegotmedia.com -# ||wegetpaid.net^$third-party (easylist.txt: 27524) -.wegetpaid.net -# ||webusersurvey.com^$third-party (easylist.txt: 27523) -.webusersurvey.com -# ||webtraffic.ttinet.com^$third-party (easylist.txt: 27522) -.webtraffic.ttinet.com -# ||webseeds.com^$third-party (easylist.txt: 27521) -.webseeds.com -# ||weborama.fr^$third-party (easylist.txt: 27520) -.weborama.fr -# ||webmedia.co.il^$third-party (easylist.txt: 27519) -.webmedia.co.il -# ||webgains.com^$third-party (easylist.txt: 27518) -.webgains.com -# ||webadvertise123.com^$third-party (easylist.txt: 27517) -.webadvertise123.com -# ||webads.nl^$third-party (easylist.txt: 27516) -.webads.nl -# ||webads.co.nz^$third-party (easylist.txt: 27515) -.webads.co.nz -# ||web-bird.jp^$third-party (easylist.txt: 27514) -.web-bird.jp -# ||web-adservice.com^$third-party (easylist.txt: 27513) -.web-adservice.com -# ||weadrevenue.com^$third-party (easylist.txt: 27512) -.weadrevenue.com -# ||wcpanalytics.com^$third-party (easylist.txt: 27511) -.wcpanalytics.com -# ||wcmcs.net^$third-party (easylist.txt: 27510) -.wcmcs.net -# ||wbptqzmv.com^$third-party (easylist.txt: 27509) -.wbptqzmv.com -# ||waymp.com^$third-party (easylist.txt: 27508) -.waymp.com -# ||wateristian.com^$third-party (easylist.txt: 27507) -.wateristian.com -# ||watchnowlive.eu^$third-party (easylist.txt: 27506) -.watchnowlive.eu -# ||watchfree.flv.in^$third-party (easylist.txt: 27505) -.watchfree.flv.in -# ||warfacco.com^$third-party (easylist.txt: 27504) -.warfacco.com -# ||warezlayer.to^$third-party (easylist.txt: 27503) -.warezlayer.to -# ||wangfenxi.com^$third-party (easylist.txt: 27502) -.wangfenxi.com -# ||wamnetwork.com^$third-party (easylist.txt: 27501) -.wamnetwork.com -# ||wallacemaloneymindanao.info^$third-party (easylist.txt: 27500) -.wallacemaloneymindanao.info -# ||wahoha.com^$third-party (easylist.txt: 27499) -.wahoha.com -# ||wagershare.com^$third-party (easylist.txt: 27498) -.wagershare.com -# ||waframedia8.com^$third-party (easylist.txt: 27497) -.waframedia8.com -# ||waframedia7.com^$third-party (easylist.txt: 27496) -.waframedia7.com -# ||waframedia5.com^$third-party (easylist.txt: 27495) -.waframedia5.com -# ||waframedia3.com^$third-party (easylist.txt: 27494) -.waframedia3.com -# ||wafmedia6.com^$third-party (easylist.txt: 27493) -.wafmedia6.com -# ||wafmedia5.com^$third-party (easylist.txt: 27492) -.wafmedia5.com -# ||wafmedia3.com^$third-party (easylist.txt: 27491) -.wafmedia3.com -# ||w9statistics.info^$third-party (easylist.txt: 27490) -.w9statistics.info -# ||w5statistics.info^$third-party (easylist.txt: 27489) -.w5statistics.info -# ||w4.com^$third-party (easylist.txt: 27488) -.w4.com -# ||w3exit.com^$third-party (easylist.txt: 27487) -.w3exit.com -# ||w00tmedia.net^$third-party (easylist.txt: 27486) -.w00tmedia.net -# ||w00tads.com^$third-party (easylist.txt: 27485) -.w00tads.com -# ||vuiads.net^$third-party (easylist.txt: 27484) -.vuiads.net -# ||vuiads.info^$third-party (easylist.txt: 27483) -.vuiads.info -# ||vuiads.de^$third-party (easylist.txt: 27482) -.vuiads.de -# ||vth05dse.com^$third-party (easylist.txt: 27481) -.vth05dse.com -# ||vsservers.net^$third-party (easylist.txt: 27480) -.vsservers.net -# ||vs4family.com^$third-party (easylist.txt: 27479) -.vs4family.com -# ||vs4entertainment.com^$third-party (easylist.txt: 27478) -.vs4entertainment.com -# ||vs20060817.com^$third-party (easylist.txt: 27477) -.vs20060817.com -# ||vpico.com^$third-party (easylist.txt: 27476) -.vpico.com -# ||vogozaw.ru^$third-party (easylist.txt: 27475) -.vogozaw.ru -# ||vogosita.com^$third-party (easylist.txt: 27474) -.vogosita.com -# ||vntsm.com^$third-party (easylist.txt: 27473) -.vntsm.com -# ||vixnixxer.com^$third-party (easylist.txt: 27472) -.vixnixxer.com -# ||vivamob.net^$third-party (easylist.txt: 27471) -.vivamob.net -# ||vitalads.net^$third-party (easylist.txt: 27470) -.vitalads.net -# ||visualsteel.net^$third-party (easylist.txt: 27469) -.visualsteel.net -# ||visitweb.com^$third-party (easylist.txt: 27468) -.visitweb.com -# ||visitdetails.com^$third-party (easylist.txt: 27467) -.visitdetails.com -# ||visiblemeasures.com^$~object-subrequest,third-party (easylist.txt: 27466) -.visiblemeasures.com -# ||visiblegains.com^$third-party (easylist.txt: 27465) -.visiblegains.com -# ||visiads.com^$third-party (easylist.txt: 27464) -.visiads.com -# ||viralmediatech.com^$third-party (easylist.txt: 27463) -.viralmediatech.com -# ||vipquesting.com^$third-party (easylist.txt: 27462) -.vipquesting.com -# ||vipcpms.com^$third-party (easylist.txt: 27461) -.vipcpms.com -# ||vindicosuite.com^$third-party (easylist.txt: 27460) -.vindicosuite.com -# ||viewivo.com^$third-party (easylist.txt: 27459) -.viewivo.com -# ||viewex.co.uk^$third-party (easylist.txt: 27458) -.viewex.co.uk -# ||viewclc.com^$third-party (easylist.txt: 27457) -.viewclc.com -# ||viewablemedia.net^$third-party (easylist.txt: 27456) -.viewablemedia.net -# ||view.atdmt.com^*/view/$third-party (easylist.txt: 27455) -.view.atdmt.com/.*/view/ -# ||view.atdmt.com^*/iview/$third-party (easylist.txt: 27454) -.view.atdmt.com/.*/iview/ -# ||view.atdmt.com/partner/$third-party (easylist.txt: 27453) -.view.atdmt.com/partner/ -# ||view-ads.de^$third-party (easylist.txt: 27452) -.view-ads.de -# ||viedeo2k.tv^$third-party (easylist.txt: 27451) -.viedeo2k.tv -# ||vidpay.com^$third-party (easylist.txt: 27450) -.vidpay.com -# ||videovfr.com^$third-party (easylist.txt: 27449) -.videovfr.com -# ||videoroll.net^$third-party (easylist.txt: 27448) -.videoroll.net -# ||videoplaza.tv^$~object-subrequest,third-party (easylist.txt: 27447) -.videoplaza.tv -# ||videoplaza.tv/proxy/distributor^$object-subrequest,third-party (easylist.txt: 27445) -.videoplaza.tv/proxy/distributor[^\w%.-] -# ||videoplaza.com^$~object-subrequest,third-party (easylist.txt: 27444) -.videoplaza.com -# ||videologygroup.com^$third-party (easylist.txt: 27442) -.videologygroup.com -# ||videoliver.com^$third-party (easylist.txt: 27441) -.videoliver.com -# ||videolansoftware.com^$third-party (easylist.txt: 27440) -.videolansoftware.com -# ||videohube.eu^$third-party (easylist.txt: 27439) -.videohube.eu -# ||videohub.com^$third-party (easylist.txt: 27438) -.videohub.com -# ||videoegg.com^$third-party (easylist.txt: 27437) -.videoegg.com -# ||videodeals.com^$third-party (easylist.txt: 27436) -.videodeals.com -# ||videoclick.ru^$third-party (easylist.txt: 27435) -.videoclick.ru -# ||videoadex.com^$third-party (easylist.txt: 27434) -.videoadex.com -# ||video1404.info^$third-party (easylist.txt: 27433) -.video1404.info -# ||video-loader.com^$third-party (easylist.txt: 27432) -.video-loader.com -# ||vibrantmedia.com^$third-party (easylist.txt: 27431) -.vibrantmedia.com -# ||vibrant.co^$third-party (easylist.txt: 27430) -.vibrant.co -# ||vianadserver.com^$third-party (easylist.txt: 27429) -.vianadserver.com -# ||vhmnetwork.com^$third-party (easylist.txt: 27428) -.vhmnetwork.com -# ||versetime.com^$third-party (easylist.txt: 27427) -.versetime.com -# ||versahq.com^$third-party (easylist.txt: 27426) -.versahq.com -# ||verata.xyz^$third-party (easylist.txt: 27425) -.verata.xyz -# ||veoxa.com^$third-party (easylist.txt: 27424) -.veoxa.com -# ||venusbux.com^$third-party (easylist.txt: 27423) -.venusbux.com -# ||vendexo.com^$third-party (easylist.txt: 27422) -.vendexo.com -# ||vemba.com^$third-party (easylist.txt: 27421) -.vemba.com -# ||velti.com^$third-party (easylist.txt: 27420) -.velti.com -# ||velmedia.net^$third-party (easylist.txt: 27419) -.velmedia.net -# ||vellde.com^$third-party (easylist.txt: 27418) -.vellde.com -# ||vectorstock.com^$third-party (easylist.txt: 27417) -.vectorstock.com -# ||vdopia.com^$third-party (easylist.txt: 27416) -.vdopia.com -# ||vcommission.com^$third-party (easylist.txt: 27415) -.vcommission.com -# ||vcmedia.com^$third-party (easylist.txt: 27414) -.vcmedia.com -# ||vastopped.com^$third-party (easylist.txt: 27413) -.vastopped.com -# ||vapedia.com^$third-party (easylist.txt: 27412) -.vapedia.com -# ||valuecontent.net^$third-party (easylist.txt: 27411) -.valuecontent.net -# ||valuecommerce.com^$third-party (easylist.txt: 27410) -.valuecommerce.com -# ||valueclickmedia.com^$third-party (easylist.txt: 27409) -.valueclickmedia.com -# ||valueclick.net^$third-party (easylist.txt: 27408) -.valueclick.net -# ||valueclick.com^$third-party (easylist.txt: 27407) -.valueclick.com -# ||valueaffiliate.net^$third-party (easylist.txt: 27406) -.valueaffiliate.net -# ||valuead.com^$third-party (easylist.txt: 27405) -.valuead.com -# ||validclick.com^$third-party (easylist.txt: 27404) -.validclick.com -# ||vadpay.com^$third-party (easylist.txt: 27403) -.vadpay.com -# ||v2mlblack.biz^$third-party (easylist.txt: 27402) -.v2mlblack.biz -# ||v2cigs.com^$third-party (easylist.txt: 27401) -.v2cigs.com -# ||v11media.com^$third-party (easylist.txt: 27400) -.v11media.com -# ||v.movad.de^$third-party (easylist.txt: 27399) -.v.movad.de -# ||v.fwmrm.net^$object-subrequest,third-party (easylist.txt: 27398) -.v.fwmrm.net -# ||utubeconverter.com^$third-party (easylist.txt: 27397) -.utubeconverter.com -# ||utokapa.com^$third-party (easylist.txt: 27396) -.utokapa.com -# ||utarget.ru^$third-party (easylist.txt: 27395) -.utarget.ru -# ||utarget.co.uk^$third-party (easylist.txt: 27394) -.utarget.co.uk -# ||usurv.com^$third-party (easylist.txt: 27393) -.usurv.com -# ||usercash.com^$third-party (easylist.txt: 27392) -.usercash.com -# ||usenetpassport.com^$third-party (easylist.txt: 27391) -.usenetpassport.com -# ||usenetjunction.com^$third-party (easylist.txt: 27390) -.usenetjunction.com -# ||usemax.de^$third-party (easylist.txt: 27389) -.usemax.de -# ||usbanners.com^$third-party (easylist.txt: 27388) -.usbanners.com -# ||urlcash.net^$third-party (easylist.txt: 27387) -.urlcash.net -# ||urlads.net^$third-party (easylist.txt: 27386) -.urlads.net -# ||ureace.com^$third-party (easylist.txt: 27385) -.ureace.com -# ||urbation.net^$third-party (easylist.txt: 27384) -.urbation.net -# ||upliftsearch.com^$third-party (easylist.txt: 27383) -.upliftsearch.com -# ||upads.info^$third-party (easylist.txt: 27382) -.upads.info -# ||unterary.com^$third-party (easylist.txt: 27381) -.unterary.com -# ||unrulymedia.com^$third-party (easylist.txt: 27380) -.unrulymedia.com -# ||unlockr.com^$third-party (easylist.txt: 27379) -.unlockr.com -# ||universityofinternetscience.com^$third-party (easylist.txt: 27378) -.universityofinternetscience.com -# ||unitethecows.com^$third-party (easylist.txt: 27377) -.unitethecows.com -# ||unicast.com^$third-party (easylist.txt: 27376) -.unicast.com -# ||undertone.com^$third-party (easylist.txt: 27375) -.undertone.com -# ||underclick.ru^$third-party (easylist.txt: 27374) -.underclick.ru -# ||unanimis.co.uk^$third-party (easylist.txt: 27373) -.unanimis.co.uk -# ||ultimategracelessness.info^$third-party (easylist.txt: 27372) -.ultimategracelessness.info -# ||ukbanners.com^$third-party (easylist.txt: 27371) -.ukbanners.com -# ||uiqatnpooq.com^$third-party (easylist.txt: 27370) -.uiqatnpooq.com -# ||uiadserver.com^$third-party (easylist.txt: 27369) -.uiadserver.com -# ||uglyst.com^$third-party (easylist.txt: 27368) -.uglyst.com -# ||ughus.com^$third-party (easylist.txt: 27367) -.ughus.com -# ||ugaral.com^$third-party (easylist.txt: 27366) -.ugaral.com -# ||udmserve.net^$third-party (easylist.txt: 27365) -.udmserve.net -# ||ubudigital.com^$third-party (easylist.txt: 27364) -.ubudigital.com -# ||u1hw38x0.com^$third-party (easylist.txt: 27363) -.u1hw38x0.com -# ||u-ad.info^$third-party (easylist.txt: 27362) -.u-ad.info -# ||tyroo.com^$third-party (easylist.txt: 27361) -.tyroo.com -# ||twtad.com^$third-party (easylist.txt: 27360) -.twtad.com -# ||twittad.com^$third-party (easylist.txt: 27359) -.twittad.com -# ||twistads.com^$third-party (easylist.txt: 27358) -.twistads.com -# ||twinpinenetwork.com^$third-party (easylist.txt: 27357) -.twinpinenetwork.com -# ||tweard.com^$third-party (easylist.txt: 27356) -.tweard.com -# ||twalm.com^$third-party (easylist.txt: 27355) -.twalm.com -# ||tvprocessing.com^$third-party (easylist.txt: 27354) -.tvprocessing.com -# ||tvas-c.pw^$third-party (easylist.txt: 27353) -.tvas-c.pw -# ||tutvp.com^$third-party (easylist.txt: 27352) -.tutvp.com -# ||tusno.com^$third-party (easylist.txt: 27351) -.tusno.com -# ||turn.com^$third-party (easylist.txt: 27350) -.turn.com -# ||turbotraff.net^$third-party (easylist.txt: 27349) -.turbotraff.net -# ||tumri.net^$third-party (easylist.txt: 27348) -.tumri.net -# ||tubereplay.com^$third-party (easylist.txt: 27347) -.tubereplay.com -# ||tubemogul.com^$third-party (easylist.txt: 27346) -.tubemogul.com -# ||tubberlo.com^$third-party (easylist.txt: 27345) -.tubberlo.com -# ||ttzmedia.com^$third-party (easylist.txt: 27344) -.ttzmedia.com -# ||trygen.co.uk^$third-party (easylist.txt: 27343) -.trygen.co.uk -# ||truex.com^$third-party (easylist.txt: 27342) -.truex.com -# ||truesecurejump.com^$third-party (easylist.txt: 27341) -.truesecurejump.com -# ||trtrccl.com^$third-party (easylist.txt: 27340) -.trtrccl.com -# ||trmit.com^$third-party (easylist.txt: 27339) -.trmit.com -# ||trks.us^$third-party (easylist.txt: 27338) -.trks.us -# ||trklnks.com^$third-party (easylist.txt: 27337) -.trklnks.com -# ||trker.com^$third-party (easylist.txt: 27336) -.trker.com -# ||trkclk.net^$third-party (easylist.txt: 27335) -.trkclk.net -# ||trkalot.com^$third-party (easylist.txt: 27334) -.trkalot.com -# ||trk4.com^$third-party (easylist.txt: 27333) -.trk4.com -# ||trigami.com^$third-party (easylist.txt: 27332) -.trigami.com -# ||tribalfusion.com^$third-party (easylist.txt: 27331) -.tribalfusion.com -# ||triadmedianetwork.com^$third-party (easylist.txt: 27330) -.triadmedianetwork.com -# ||trenpyle.com^$third-party (easylist.txt: 27329) -.trenpyle.com -# ||tredirect.com^$third-party (easylist.txt: 27328) -.tredirect.com -# ||travidia.com^$third-party (easylist.txt: 27327) -.travidia.com -# ||travelscream.com^$third-party (easylist.txt: 27326) -.travelscream.com -# ||traveladvertising.com^$third-party (easylist.txt: 27325) -.traveladvertising.com -# ||trapasol.com^$third-party (easylist.txt: 27324) -.trapasol.com -# ||trahic.ru^$third-party (easylist.txt: 27323) -.trahic.ru -# ||traffirms.com^$third-party (easylist.txt: 27322) -.traffirms.com -# ||trafficzap.com^$third-party (easylist.txt: 27321) -.trafficzap.com -# ||trafficz.com^$third-party (easylist.txt: 27320) -.trafficz.com -# ||trafficwave.net^$third-party (easylist.txt: 27319) -.trafficwave.net -# ||trafficvance.com^$third-party (easylist.txt: 27318) -.trafficvance.com -# ||trafficular.com^$third-party (easylist.txt: 27317) -.trafficular.com -# ||traffictrader.net^$third-party (easylist.txt: 27316) -.traffictrader.net -# ||trafficsynergy.com^$third-party (easylist.txt: 27315) -.trafficsynergy.com -# ||trafficsway.com^$third-party (easylist.txt: 27314) -.trafficsway.com -# ||trafficswarm.com^$third-party (easylist.txt: 27313) -.trafficswarm.com -# ||trafficspaces.net^$third-party (easylist.txt: 27312) -.trafficspaces.net -# ||trafficrevenue.net^$third-party (easylist.txt: 27311) -.trafficrevenue.net -# ||trafficposse.com^$third-party (easylist.txt: 27310) -.trafficposse.com -# ||trafficmp.com^$third-party (easylist.txt: 27309) -.trafficmp.com -# ||trafficmasterz.net^$third-party (easylist.txt: 27308) -.trafficmasterz.net -# ||trafficjunky.net^$third-party (easylist.txt: 27307) -.trafficjunky.net -# ||traffichaus.com^$third-party (easylist.txt: 27306) -.traffichaus.com -# ||trafficforce.com^$third-party (easylist.txt: 27305) -.trafficforce.com -# ||trafficfactory.biz^$third-party (easylist.txt: 27304) -.trafficfactory.biz -# ||trafficbroker.com^$third-party (easylist.txt: 27303) -.trafficbroker.com -# ||trafficbarads.com^$third-party (easylist.txt: 27302) -.trafficbarads.com -# ||traffic-supremacy.com^$third-party (easylist.txt: 27301) -.traffic-supremacy.com -# ||traffboost.net^$third-party (easylist.txt: 27300) -.traffboost.net -# ||traff-advertazer.com^$third-party (easylist.txt: 27299) -.traff-advertazer.com -# ||tradepopups.com^$third-party (easylist.txt: 27298) -.tradepopups.com -# ||tradeexpert.net^$third-party (easylist.txt: 27297) -.tradeexpert.net -# ||tradeadexchange.com^$third-party (easylist.txt: 27296) -.tradeadexchange.com -# ||trackyourlinks.com^$third-party (easylist.txt: 27295) -.trackyourlinks.com -# ||trackword.net^$third-party (easylist.txt: 27294) -.trackword.net -# ||tracktor.co.uk^$third-party (easylist.txt: 27293) -.tracktor.co.uk -# ||trackthatad.com^$third-party (easylist.txt: 27292) -.trackthatad.com -# ||trackstarsengland.net^$third-party (easylist.txt: 27291) -.trackstarsengland.net -# ||trackpromotion.net^$third-party (easylist.txt: 27290) -.trackpromotion.net -# ||trackpath.biz^$third-party (easylist.txt: 27289) -.trackpath.biz -# ||trackingoffer.net^$third-party (easylist.txt: 27288) -.trackingoffer.net -# ||trackingoffer.info^$third-party (easylist.txt: 27287) -.trackingoffer.info -# ||tracking11.com^$third-party (easylist.txt: 27286) -.tracking11.com -# ||tracking101.com^$third-party (easylist.txt: 27285) -.tracking101.com -# ||tracking.to^$third-party (easylist.txt: 27284) -.tracking.to -# ||trackcorner.com^$third-party (easylist.txt: 27283) -.trackcorner.com -# ||trackadvertising.net^$third-party (easylist.txt: 27282) -.trackadvertising.net -# ||traceadmanager.com^$third-party (easylist.txt: 27281) -.traceadmanager.com -# ||tqlkg.net^$third-party (easylist.txt: 27280) -.tqlkg.net -# ||tqlkg.com^$third-party (easylist.txt: 27279) -.tqlkg.com -# ||tpnads.com^$third-party (easylist.txt: 27278) -.tpnads.com -# ||tower-colocation.info^$third-party (easylist.txt: 27277) -.tower-colocation.info -# ||tower-colocation.de^$third-party (easylist.txt: 27276) -.tower-colocation.de -# ||towardstelephone.com^$third-party (easylist.txt: 27275) -.towardstelephone.com -# ||totemcash.com^$third-party (easylist.txt: 27274) -.totemcash.com -# ||totalprofitplan.com^$third-party (easylist.txt: 27273) -.totalprofitplan.com -# ||total-media.net^$third-party (easylist.txt: 27272) -.total-media.net -# ||torrpedoads.net^$third-party (easylist.txt: 27271) -.torrpedoads.net -# ||torrida.net^$third-party (easylist.txt: 27270) -.torrida.net -# ||toroadvertising.com^$third-party (easylist.txt: 27269) -.toroadvertising.com -# ||torerolumiere.net^$third-party (easylist.txt: 27268) -.torerolumiere.net -# ||torconpro.com^$third-party (easylist.txt: 27267) -.torconpro.com -# ||torads.xyz^$third-party (easylist.txt: 27266) -.torads.xyz -# ||torads.me^$third-party (easylist.txt: 27265) -.torads.me -# ||tophotoffers.com^$third-party (easylist.txt: 27264) -.tophotoffers.com -# ||topfox.co.uk^$third-party (easylist.txt: 27263) -.topfox.co.uk -# ||topeuro.biz^$third-party (easylist.txt: 27262) -.topeuro.biz -# ||topcasino10.com^$third-party (easylist.txt: 27261) -.topcasino10.com -# ||topauto10.com^$third-party (easylist.txt: 27260) -.topauto10.com -# ||top26.net^$third-party (easylist.txt: 27259) -.top26.net -# ||tool-site.com^$third-party (easylist.txt: 27258) -.tool-site.com -# ||tonefuse.com^$third-party (easylist.txt: 27257) -.tonefuse.com -# ||tomekas.com^$third-party (easylist.txt: 27256) -.tomekas.com -# ||tollfreeforwarding.com^$third-party (easylist.txt: 27255) -.tollfreeforwarding.com -# ||tokenads.com^$third-party (easylist.txt: 27254) -.tokenads.com -# ||toboads.com^$third-party (easylist.txt: 27253) -.toboads.com -# ||tnyzin.ru^$third-party (easylist.txt: 27252) -.tnyzin.ru -# ||tlvmedia.com^$third-party (easylist.txt: 27251) -.tlvmedia.com -# ||tldadserv.com^$third-party (easylist.txt: 27250) -.tldadserv.com -# ||tkqlhce.com^$third-party (easylist.txt: 27249) -.tkqlhce.com -# ||tissage-extension.com^$third-party (easylist.txt: 27248) -.tissage-extension.com -# ||tiser.com^$third-party (easylist.txt: 27247) -.tiser.com -# ||tisadama.com^$third-party (easylist.txt: 27246) -.tisadama.com -# ||tinbuadserv.com^$third-party (easylist.txt: 27245) -.tinbuadserv.com -# ||tightexact.net^$third-party (easylist.txt: 27244) -.tightexact.net -# ||tidaltv.com^$third-party (easylist.txt: 27243) -.tidaltv.com -# ||thoughtsondance.info^$third-party (easylist.txt: 27242) -.thoughtsondance.info -# ||thoughtleadr.com^$third-party (easylist.txt: 27241) -.thoughtleadr.com -# ||thoseads.com^$third-party (easylist.txt: 27240) -.thoseads.com -# ||thewheelof.com^$third-party (easylist.txt: 27239) -.thewheelof.com -# ||thewebgemnetwork.com^$third-party (easylist.txt: 27238) -.thewebgemnetwork.com -# ||thepiratereactor.net^$third-party (easylist.txt: 27237) -.thepiratereactor.net -# ||themidnightmatulas.com^$third-party (easylist.txt: 27236) -.themidnightmatulas.com -# ||theloungenet.com^$third-party (easylist.txt: 27235) -.theloungenet.com -# ||thelistassassin.com^$third-party (easylist.txt: 27234) -.thelistassassin.com -# ||theequalground.info^$third-party (easylist.txt: 27233) -.theequalground.info -# ||thebflix.info^$third-party (easylist.txt: 27232) -.thebflix.info -# ||thebannerexchange.com^$third-party (easylist.txt: 27231) -.thebannerexchange.com -# ||theads.me^$third-party (easylist.txt: 27230) -.theads.me -# ||theadgateway.com^$third-party (easylist.txt: 27229) -.theadgateway.com -# ||thangasoline.com^$third-party (easylist.txt: 27228) -.thangasoline.com -# ||tgtmedia.com^$third-party (easylist.txt: 27227) -.tgtmedia.com -# ||tfag.de^$third-party (easylist.txt: 27226) -.tfag.de -# ||textsrv.com^$third-party (easylist.txt: 27225) -.textsrv.com -# ||textonlyads.com^$third-party (easylist.txt: 27224) -.textonlyads.com -# ||text-link-ads.com^$third-party (easylist.txt: 27223) -.text-link-ads.com -# ||testnet.nl^$third-party (easylist.txt: 27222) -.testnet.nl -# ||testfilter.com^$third-party (easylist.txt: 27221) -.testfilter.com -# ||terraclicks.com^$third-party (easylist.txt: 27220) -.terraclicks.com -# ||teracreative.com^$third-party (easylist.txt: 27219) -.teracreative.com -# ||teracent.net^$third-party (easylist.txt: 27218) -.teracent.net -# ||teosredic.com^$third-party (easylist.txt: 27217) -.teosredic.com -# ||tennerlist.com^$third-party (easylist.txt: 27216) -.tennerlist.com -# ||telemetryverification.net^$third-party (easylist.txt: 27215) -.telemetryverification.net -# ||technoratimedia.com^$third-party (easylist.txt: 27214) -.technoratimedia.com -# ||techclicks.net^$third-party (easylist.txt: 27213) -.techclicks.net -# ||tec-tec-boom.com^$third-party (easylist.txt: 27212) -.tec-tec-boom.com -# ||teasernet.com^$third-party (easylist.txt: 27211) -.teasernet.com -# ||teambetaffiliates.com^$third-party (easylist.txt: 27210) -.teambetaffiliates.com -# ||teads.tv^$third-party (easylist.txt: 27209) -.teads.tv -# ||td563.com^$third-party (easylist.txt: 27208) -.td563.com -# ||td553.com^$third-party (easylist.txt: 27207) -.td553.com -# ||tcadops.ca^$third-party (easylist.txt: 27206) -.tcadops.ca -# ||tbaffiliate.com^$third-party (easylist.txt: 27205) -.tbaffiliate.com -# ||tattomedia.com^$third-party (easylist.txt: 27204) -.tattomedia.com -# ||targetspot.com^$third-party (easylist.txt: 27203) -.targetspot.com -# ||targetpoint.com^$third-party (easylist.txt: 27202) -.targetpoint.com -# ||targetnet.com^$third-party (easylist.txt: 27201) -.targetnet.com -# ||targetadverts.com^$third-party (easylist.txt: 27200) -.targetadverts.com -# ||tardangro.com^$third-party (easylist.txt: 27199) -.tardangro.com -# ||tapad.com^$third-party (easylist.txt: 27198) -.tapad.com -# ||tangozebra.com^$third-party (easylist.txt: 27197) -.tangozebra.com -# ||talaropa.com^$third-party (easylist.txt: 27196) -.talaropa.com -# ||takensparks.com^$third-party (easylist.txt: 27195) -.takensparks.com -# ||tailsweep.com^$third-party (easylist.txt: 27194) -.tailsweep.com -# ||tagshost.com^$third-party (easylist.txt: 27193) -.tagshost.com -# ||tagjunction.com^$third-party (easylist.txt: 27192) -.tagjunction.com -# ||taggify.net^$third-party (easylist.txt: 27191) -.taggify.net -# ||tafmaster.com^$third-party (easylist.txt: 27190) -.tafmaster.com -# ||tacticalrepublic.com^$third-party (easylist.txt: 27189) -.tacticalrepublic.com -# ||tacoda.net^$third-party (easylist.txt: 27188) -.tacoda.net -# ||tacastas.com^$third-party (easylist.txt: 27187) -.tacastas.com -# ||t3q7af0z.com^$third-party (easylist.txt: 27186) -.t3q7af0z.com -# ||syndicatedsearchresults.com^$third-party (easylist.txt: 27185) -.syndicatedsearchresults.com -# ||synapsys.us^$third-party (easylist.txt: 27184) -.synapsys.us -# ||symbiosting.com^$third-party (easylist.txt: 27183) -.symbiosting.com -# ||swoop.com^$third-party (easylist.txt: 27182) -.swoop.com -# ||switchadhub.com^$third-party (easylist.txt: 27181) -.switchadhub.com -# ||swelen.com^$third-party (easylist.txt: 27180) -.swelen.com -# ||swbdds.com^$third-party (easylist.txt: 27179) -.swbdds.com -# ||swadvertising.org^$third-party (easylist.txt: 27178) -.swadvertising.org -# ||svlu.net^$third-party (easylist.txt: 27177) -.svlu.net -# ||suthome.com^$third-party (easylist.txt: 27176) -.suthome.com -# ||surveywidget.biz^$third-party (easylist.txt: 27175) -.surveywidget.biz -# ||surveyvalue.net^$third-party (easylist.txt: 27174) -.surveyvalue.net -# ||surveyvalue.mobi^$third-party (easylist.txt: 27173) -.surveyvalue.mobi -# ||survey-poll.com^$third-party (easylist.txt: 27172) -.survey-poll.com -# ||surfboarddigital.com.au^$third-party (easylist.txt: 27171) -.surfboarddigital.com.au -# ||surf-bar-traffic.com^$third-party (easylist.txt: 27170) -.surf-bar-traffic.com -# ||supremeadsonline.com^$third-party (easylist.txt: 27169) -.supremeadsonline.com -# ||supplyframe.com^$third-party (easylist.txt: 27168) -.supplyframe.com -# ||supersitetime.com^$third-party (easylist.txt: 27167) -.supersitetime.com -# ||superloofy.com^$third-party (easylist.txt: 27166) -.superloofy.com -# ||super-links.net^$third-party (easylist.txt: 27165) -.super-links.net -# ||suparewards.com^$third-party (easylist.txt: 27164) -.suparewards.com -# ||sunmedia.net^$third-party (easylist.txt: 27163) -.sunmedia.net -# ||sumarketing.co.uk^$third-party (easylist.txt: 27162) -.sumarketing.co.uk -# ||sulvo.co^$third-party (easylist.txt: 27161) -.sulvo.co -# ||suitesmart.com^$third-party (easylist.txt: 27160) -.suitesmart.com -# ||suite6ixty6ix.com^$third-party (easylist.txt: 27159) -.suite6ixty6ix.com -# ||suggesttool.com^$third-party (easylist.txt: 27158) -.suggesttool.com -# ||sugarlistsuggest.info^$third-party (easylist.txt: 27157) -.sugarlistsuggest.info -# ||suffusefacultytsunami.info^$third-party (easylist.txt: 27156) -.suffusefacultytsunami.info -# ||successfultogether.co.uk^$third-party (easylist.txt: 27155) -.successfultogether.co.uk -# ||submitexpress.co.uk^$third-party (easylist.txt: 27154) -.submitexpress.co.uk -# ||sublimemedia.net^$third-party (easylist.txt: 27153) -.sublimemedia.net -# ||style-eyes.eu^$third-party (easylist.txt: 27152) -.style-eyes.eu -# ||struq.com^$third-party (easylist.txt: 27151) -.struq.com -# ||strikead.com^$third-party (easylist.txt: 27150) -.strikead.com -# ||streamdownloadonline.com^$third-party (easylist.txt: 27149) -.streamdownloadonline.com -# ||streamate.com^$third-party (easylist.txt: 27148) -.streamate.com -# ||stocker.bonnint.net^$third-party (easylist.txt: 27147) -.stocker.bonnint.net -# ||stickyadstv.com^$third-party (easylist.txt: 27146) -.stickyadstv.com -# ||stealthlockers.com^$third-party (easylist.txt: 27145) -.stealthlockers.com -# ||statsmobi.com^$third-party (easylist.txt: 27144) -.statsmobi.com -# ||statelead.com^$third-party (easylist.txt: 27143) -.statelead.com -# ||statecannoticed.com^$third-party (easylist.txt: 27142) -.statecannoticed.com -# ||statcamp.net^$third-party (easylist.txt: 27141) -.statcamp.net -# ||startpagea.com^$third-party (easylist.txt: 27140) -.startpagea.com -# ||starlayer.com^$third-party (easylist.txt: 27139) -.starlayer.com -# ||stargamesaffiliate.com^$third-party (easylist.txt: 27138) -.stargamesaffiliate.com -# ||star-advertising.com^$third-party (easylist.txt: 27137) -.star-advertising.com -# ||standartads.com^$third-party (easylist.txt: 27136) -.standartads.com -# ||stalesplit.com^$third-party (easylist.txt: 27135) -.stalesplit.com -# ||stackattacka.com^$third-party (easylist.txt: 27134) -.stackattacka.com -# ||stackadapt.com^$third-party (easylist.txt: 27133) -.stackadapt.com -# ||stabletrappeddevote.info^$third-party (easylist.txt: 27132) -.stabletrappeddevote.info -# ||sta-ads.com^$third-party (easylist.txt: 27131) -.sta-ads.com -# ||srx.com.sg^$third-party (easylist.txt: 27130) -.srx.com.sg -# ||srtk.net^$third-party (easylist.txt: 27129) -.srtk.net -# ||sq2trk2.com^$third-party (easylist.txt: 27128) -.sq2trk2.com -# ||sproose.com^$third-party (easylist.txt: 27127) -.sproose.com -# ||sprintrade.com^$third-party (easylist.txt: 27126) -.sprintrade.com -# ||spoutable.com^$third-party (easylist.txt: 27125) -.spoutable.com -# ||spotxchange.com^$third-party (easylist.txt: 27124) -.spotxchange.com -# ||spottt.com^$third-party (easylist.txt: 27123) -.spottt.com -# ||spotscenered.info^$third-party (easylist.txt: 27122) -.spotscenered.info -# ||spotrails.com^$third-party (easylist.txt: 27121) -.spotrails.com -# ||sportsyndicator.com^$third-party (easylist.txt: 27120) -.sportsyndicator.com -# ||sponsorselect.com^$third-party (easylist.txt: 27119) -.sponsorselect.com -# ||sponsorpay.com^$third-party (easylist.txt: 27118) -.sponsorpay.com -# ||sponsorpalace.com^$third-party (easylist.txt: 27117) -.sponsorpalace.com -# ||sponsormob.com^$third-party (easylist.txt: 27116) -.sponsormob.com -# ||sponsoredtweets.com^$third-party (easylist.txt: 27115) -.sponsoredtweets.com -# ||sponsoredby.me^$third-party (easylist.txt: 27114) -.sponsoredby.me -# ||spongecell.com^$third-party (easylist.txt: 27113) -.spongecell.com -# ||spmxs.com^$third-party (easylist.txt: 27112) -.spmxs.com -# ||splut.com^$third-party (easylist.txt: 27111) -.splut.com -# ||splinky.com^$third-party (easylist.txt: 27110) -.splinky.com -# ||spinbox.net^$third-party (easylist.txt: 27109) -.spinbox.net -# ||spinbox.freedom.com^$third-party (easylist.txt: 27108) -.spinbox.freedom.com -# ||spiderhood.net^$third-party (easylist.txt: 27107) -.spiderhood.net -# ||speedsuccess.net^$third-party (easylist.txt: 27106) -.speedsuccess.net -# ||speedshiftmedia.com^$third-party (easylist.txt: 27105) -.speedshiftmedia.com -# ||speeb.com^$third-party (easylist.txt: 27104) -.speeb.com -# ||spectato.com^$third-party (easylist.txt: 27103) -.spectato.com -# ||specificmedia.com^$third-party (easylist.txt: 27102) -.specificmedia.com -# ||specificclick.net^$third-party (easylist.txt: 27101) -.specificclick.net -# ||sparkstudios.com^$third-party (easylist.txt: 27100) -.sparkstudios.com -# ||sotuktraffic.com^$third-party (easylist.txt: 27099) -.sotuktraffic.com -# ||sophiasearch.com^$third-party (easylist.txt: 27098) -.sophiasearch.com -# ||sonobi.com^$third-party (easylist.txt: 27097) -.sonobi.com -# ||sonnerie.net^$third-party (easylist.txt: 27096) -.sonnerie.net -# ||solutionzip.info^$third-party (easylist.txt: 27095) -.solutionzip.info -# ||solocpm.com^$third-party (easylist.txt: 27094) -.solocpm.com -# ||solarmosa.com^$third-party (easylist.txt: 27093) -.solarmosa.com -# ||solapoka.com^$third-party (easylist.txt: 27092) -.solapoka.com -# ||sokitosa.com^$third-party (easylist.txt: 27091) -.sokitosa.com -# ||softwares2015.com^$third-party (easylist.txt: 27090) -.softwares2015.com -# ||softpopads.com^$third-party (easylist.txt: 27089) -.softpopads.com -# ||softonicads.com^$third-party (easylist.txt: 27088) -.softonicads.com -# ||soft4dle.com^$third-party (easylist.txt: 27087) -.soft4dle.com -# ||sodud.com^$third-party (easylist.txt: 27086) -.sodud.com -# ||sociomantic.com^$third-party (easylist.txt: 27085) -.sociomantic.com -# ||sociocast.com^$third-party (easylist.txt: 27084) -.sociocast.com -# ||society6.com^$third-party (easylist.txt: 27083) -.society6.com -# ||socialspark.com^$third-party (easylist.txt: 27082) -.socialspark.com -# ||socialreach.com^$third-party (easylist.txt: 27081) -.socialreach.com -# ||socialmedia.com^$third-party (easylist.txt: 27080) -.socialmedia.com -# ||sociallypublish.com^$third-party (easylist.txt: 27079) -.sociallypublish.com -# ||socialelective.com^$third-party (easylist.txt: 27078) -.socialelective.com -# ||socialbirth.com^$third-party (easylist.txt: 27077) -.socialbirth.com -# ||sochr.com^$third-party (easylist.txt: 27076) -.sochr.com -# ||so-excited.com^$third-party (easylist.txt: 27075) -.so-excited.com -# ||sndkorea.co.kr^$third-party (easylist.txt: 27074) -.sndkorea.co.kr -# ||snap.com^$third-party (easylist.txt: 27073) -.snap.com -# ||sn00.net^$third-party (easylist.txt: 27072) -.sn00.net -# ||sms-mmm.com^$third-party (easylist.txt: 27071) -.sms-mmm.com -# ||smpgfx.com^$third-party (easylist.txt: 27070) -.smpgfx.com -# ||smowtion.com^$third-party (easylist.txt: 27069) -.smowtion.com -# ||smilyes4u.com^$third-party (easylist.txt: 27068) -.smilyes4u.com -# ||smileycentral.com^$third-party (easylist.txt: 27067) -.smileycentral.com -# ||smartyads.com^$third-party (easylist.txt: 27066) -.smartyads.com -# ||smarttds.ru^$third-party (easylist.txt: 27065) -.smarttds.ru -# ||smarttargetting.net^$third-party (easylist.txt: 27064) -.smarttargetting.net -# ||smarttargetting.com^$third-party (easylist.txt: 27063) -.smarttargetting.com -# ||smarttargetting.co.uk^$third-party (easylist.txt: 27062) -.smarttargetting.co.uk -# ||smarterdownloads.net^$third-party (easylist.txt: 27061) -.smarterdownloads.net -# ||smartdevicemedia.com^$third-party (easylist.txt: 27060) -.smartdevicemedia.com -# ||smartadserver.com^$third-party (easylist.txt: 27059) -.smartadserver.com -# ||smartad.ee^$third-party (easylist.txt: 27058) -.smartad.ee -# ||smart2.allocine.fr^$third-party (easylist.txt: 27057) -.smart2.allocine.fr -# ||smart.allocine.fr^$third-party (easylist.txt: 27056) -.smart.allocine.fr -# ||smart-feed-online.com^$third-party (easylist.txt: 27055) -.smart-feed-online.com -# ||smaclick.com^$third-party (easylist.txt: 27054) -.smaclick.com -# ||slinse.com^$third-party (easylist.txt: 27053) -.slinse.com -# ||slimtrade.com^$third-party (easylist.txt: 27052) -.slimtrade.com -# ||slimspots.com^$third-party (easylist.txt: 27051) -.slimspots.com -# ||slikslik.com^$third-party (easylist.txt: 27050) -.slikslik.com -# ||slfpu.com^$third-party (easylist.txt: 27049) -.slfpu.com -# ||skyscrpr.com^$third-party (easylist.txt: 27048) -.skyscrpr.com -# ||skyactivate.com^$third-party (easylist.txt: 27047) -.skyactivate.com -# ||skoovyads.com^$third-party (easylist.txt: 27046) -.skoovyads.com -# ||skinected.com^$third-party (easylist.txt: 27045) -.skinected.com -# ||skimlinks.com^$third-party (easylist.txt: 27044) -.skimlinks.com -# ||sittiad.com^$third-party (easylist.txt: 27043) -.sittiad.com -# ||sitethree.com^$third-party (easylist.txt: 27042) -.sitethree.com -# ||sitesense-oo.com^$third-party (easylist.txt: 27041) -.sitesense-oo.com -# ||sitescoutadserver.com^$third-party (easylist.txt: 27040) -.sitescoutadserver.com -# ||sitescout.com^$third-party (easylist.txt: 27039) -.sitescout.com -# ||siteencore.com^$third-party (easylist.txt: 27038) -.siteencore.com -# ||sitebrand.com^$third-party (easylist.txt: 27037) -.sitebrand.com -# ||simplyhired.com^$third-party (easylist.txt: 27036) -.simplyhired.com -# ||simply.com^$third-party (easylist.txt: 27035) -.simply.com -# ||simpio.com^$third-party (easylist.txt: 27034) -.simpio.com -# ||silverads.net^$third-party (easylist.txt: 27033) -.silverads.net -# ||silstavo.com^$third-party (easylist.txt: 27032) -.silstavo.com -# ||silence-ads.com^$third-party (easylist.txt: 27031) -.silence-ads.com -# ||siamzone.com^$third-party (easylist.txt: 27030) -.siamzone.com -# ||showyoursite.com^$third-party (easylist.txt: 27029) -.showyoursite.com -# ||shopzyapp.com^$third-party (easylist.txt: 27028) -.shopzyapp.com -# ||shoppingads.com^$third-party (easylist.txt: 27027) -.shoppingads.com -# ||shopalyst.com^$third-party (easylist.txt: 27026) -.shopalyst.com -# ||shoogloonetwork.com^$third-party (easylist.txt: 27025) -.shoogloonetwork.com -# ||sharethrough.com^$third-party (easylist.txt: 27024) -.sharethrough.com -# ||shareresults.com^$third-party (easylist.txt: 27023) -.shareresults.com -# ||sharegods.com^$third-party (easylist.txt: 27022) -.sharegods.com -# ||shareasale.com^$third-party (easylist.txt: 27021) -.shareasale.com -# ||share-server.com^$third-party (easylist.txt: 27020) -.share-server.com -# ||shakamech.com^$third-party (easylist.txt: 27019) -.shakamech.com -# ||sexmoney.com^$third-party (easylist.txt: 27018) -.sexmoney.com -# ||sevendaystart.com^$third-party (easylist.txt: 27017) -.sevendaystart.com -# ||sevenads.net^$third-party (easylist.txt: 27016) -.sevenads.net -# ||sev4ifmxa.com^$third-party (easylist.txt: 27015) -.sev4ifmxa.com -# ||sethads.info^$third-party (easylist.txt: 27014) -.sethads.info -# ||serving-sys.com^$third-party (easylist.txt: 27013) -.serving-sys.com -# ||servemeads.com^$third-party (easylist.txt: 27012) -.servemeads.com -# ||servedbyopenx.com^$third-party (easylist.txt: 27011) -.servedbyopenx.com -# ||servedbyadbutler.com^$third-party (easylist.txt: 27010) -.servedbyadbutler.com -# ||servebom.com^$third-party (easylist.txt: 27009) -.servebom.com -# ||serve-sys.com^$third-party (easylist.txt: 27008) -.serve-sys.com -# ||servali.net^$third-party (easylist.txt: 27007) -.servali.net -# ||seriousfiles.com^$third-party (easylist.txt: 27006) -.seriousfiles.com -# ||serialbay.com^$third-party (easylist.txt: 27005) -.serialbay.com -# ||senzapudore.net^$third-party (easylist.txt: 27004) -.senzapudore.net -# ||sendptp.com^$third-party (easylist.txt: 27003) -.sendptp.com -# ||selsin.net^$third-party (easylist.txt: 27002) -.selsin.net -# ||sellhealth.com^$third-party (easylist.txt: 27001) -.sellhealth.com -# ||sekindo.com^$third-party (easylist.txt: 27000) -.sekindo.com -# ||seekads.net^$third-party (easylist.txt: 26999) -.seekads.net -# ||seductionprofits.com^$third-party (easylist.txt: 26998) -.seductionprofits.com -# ||sedoparking.com^$third-party (easylist.txt: 26997) -.sedoparking.com -# ||securitain.com^$third-party (easylist.txt: 26996) -.securitain.com -# ||securewebsiteaccess.com^$third-party (easylist.txt: 26995) -.securewebsiteaccess.com -# ||securesoft.info^$third-party (easylist.txt: 26994) -.securesoft.info -# ||secure-softwaremanager.com^$third-party (easylist.txt: 26993) -.secure-softwaremanager.com -# ||secondstreetmedia.com^$third-party (easylist.txt: 26992) -.secondstreetmedia.com -# ||seccoads.com^$third-party (easylist.txt: 26991) -.seccoads.com -# ||search123.uk.com^$third-party (easylist.txt: 26990) -.search123.uk.com -# ||scratchaffs.com^$third-party (easylist.txt: 26989) -.scratchaffs.com -# ||scootloor.com^$third-party (easylist.txt: 26988) -.scootloor.com -# ||sceno.ru^$third-party (easylist.txt: 26987) -.sceno.ru -# ||scanscout.com^$third-party (easylist.txt: 26986) -.scanscout.com -# ||scanmedios.com^$third-party (easylist.txt: 26985) -.scanmedios.com -# ||sbcpower.com^$third-party (easylist.txt: 26984) -.sbcpower.com -# ||sbaffiliates.com^$third-party (easylist.txt: 26983) -.sbaffiliates.com -# ||sba.about.co.kr^$third-party (easylist.txt: 26982) -.sba.about.co.kr -# ||saymedia.com^$third-party (easylist.txt: 26981) -.saymedia.com -# ||sayadcoltd.com^$third-party (easylist.txt: 26980) -.sayadcoltd.com -# ||saveads.org^$third-party (easylist.txt: 26979) -.saveads.org -# ||saveads.net^$third-party (easylist.txt: 26978) -.saveads.net -# ||satgreera.com^$third-party (easylist.txt: 26977) -.satgreera.com -# ||saple.net^$third-party (easylist.txt: 26976) -.saple.net -# ||salvador24.com^$third-party (easylist.txt: 26975) -.salvador24.com -# ||saltamendors.com^$third-party (easylist.txt: 26974) -.saltamendors.com -# ||salesnleads.com^$third-party (easylist.txt: 26973) -.salesnleads.com -# ||sakura-traffic.com^$third-party (easylist.txt: 26972) -.sakura-traffic.com -# ||safelistextreme.com^$third-party (easylist.txt: 26971) -.safelistextreme.com -# ||safecllc.com^$third-party (easylist.txt: 26970) -.safecllc.com -# ||safeadnetworkdata.net^$third-party (easylist.txt: 26969) -.safeadnetworkdata.net -# ||sa.entireweb.com^$third-party (easylist.txt: 26968) -.sa.entireweb.com -# ||s2d6.com^$third-party (easylist.txt: 26967) -.s2d6.com -# ||s.adroll.com^$third-party (easylist.txt: 26966) -.s.adroll.com -# ||ryminos.com^$third-party (easylist.txt: 26965) -.ryminos.com -# ||rwpads.com^$third-party (easylist.txt: 26964) -.rwpads.com -# ||runreproducerow.com^$third-party (easylist.txt: 26963) -.runreproducerow.com -# ||runadtag.com^$third-party (easylist.txt: 26962) -.runadtag.com -# ||rummyaffiliates.com^$third-party (easylist.txt: 26961) -.rummyaffiliates.com -# ||rubiconproject.com^$third-party (easylist.txt: 26960) -.rubiconproject.com -# ||rtbpops.com^$third-party (easylist.txt: 26959) -.rtbpops.com -# ||rtbpop.com^$third-party (easylist.txt: 26958) -.rtbpop.com -# ||rtbmedia.org^$third-party (easylist.txt: 26957) -.rtbmedia.org -# ||rtbidder.net^$third-party (easylist.txt: 26956) -.rtbidder.net -# ||roxyaffiliates.com^$third-party (easylist.txt: 26955) -.roxyaffiliates.com -# ||rovion.com^$third-party (easylist.txt: 26954) -.rovion.com -# ||rotorads.com^$third-party (easylist.txt: 26953) -.rotorads.com -# ||rotatingad.com^$third-party (easylist.txt: 26952) -.rotatingad.com -# ||rotaban.ru^$third-party (easylist.txt: 26951) -.rotaban.ru -# ||romance-net.com^$third-party (easylist.txt: 26950) -.romance-net.com -# ||roirocket.com^$third-party (easylist.txt: 26949) -.roirocket.com -# ||roicharger.com^$third-party (easylist.txt: 26948) -.roicharger.com -# ||rogueaffiliatesystem.com^$third-party (easylist.txt: 26947) -.rogueaffiliatesystem.com -# ||rocketier.net^$third-party (easylist.txt: 26946) -.rocketier.net -# ||robocat.me^$third-party (easylist.txt: 26945) -.robocat.me -# ||rnmd.net^$third-party (easylist.txt: 26944) -.rnmd.net -# ||rmxads.com^$third-party (easylist.txt: 26943) -.rmxads.com -# ||rixaka.com^$third-party (easylist.txt: 26942) -.rixaka.com -# ||riverbanksand.com^$third-party (easylist.txt: 26941) -.riverbanksand.com -# ||ripplead.com^$third-party (easylist.txt: 26940) -.ripplead.com -# ||ringtonepartner.com^$third-party (easylist.txt: 26939) -.ringtonepartner.com -# ||ringtonematcher.com^$third-party (easylist.txt: 26938) -.ringtonematcher.com -# ||richwebmedia.com^$third-party (easylist.txt: 26937) -.richwebmedia.com -# ||richmedia247.com^$third-party (easylist.txt: 26936) -.richmedia247.com -# ||ricead.com^$third-party (easylist.txt: 26935) -.ricead.com -# ||rhythmxchange.com^$third-party (easylist.txt: 26934) -.rhythmxchange.com -# ||rhown.com^$third-party (easylist.txt: 26933) -.rhown.com -# ||rfihub.net^$third-party (easylist.txt: 26932) -.rfihub.net -# ||rewardstyle.com^$third-party (easylist.txt: 26931) -.rewardstyle.com -# ||rewardsaffiliates.com^$third-party (easylist.txt: 26930) -.rewardsaffiliates.com -# ||rewardisement.com^$third-party (easylist.txt: 26929) -.rewardisement.com -# ||revsci.net^$third-party (easylist.txt: 26928) -.revsci.net -# ||revresponse.com^$third-party (easylist.txt: 26927) -.revresponse.com -# ||revresda.com^$third-party (easylist.txt: 26926) -.revresda.com -# ||revokinets.com^$third-party (easylist.txt: 26925) -.revokinets.com -# ||revmob.com^$third-party (easylist.txt: 26924) -.revmob.com -# ||revfusion.net^$third-party (easylist.txt: 26923) -.revfusion.net -# ||revenuemax.de^$third-party (easylist.txt: 26922) -.revenuemax.de -# ||revenuemantra.com^$third-party (easylist.txt: 26921) -.revenuemantra.com -# ||revenuehits.com^$third-party (easylist.txt: 26920) -.revenuehits.com -# ||revenuegiants.com^$third-party (easylist.txt: 26919) -.revenuegiants.com -# ||revenue.com^$third-party (easylist.txt: 26918) -.revenue.com -# ||revcontent.com^$third-party (easylist.txt: 26917) -.revcontent.com -# ||rev2pub.com^$third-party (easylist.txt: 26916) -.rev2pub.com -# ||reussissonsensemble.fr^$third-party (easylist.txt: 26915) -.reussissonsensemble.fr -# ||retargeter.com^$third-party (easylist.txt: 26914) -.retargeter.com -# ||resultsz.com^$third-party (easylist.txt: 26913) -.resultsz.com -# ||resultlinks.com^$third-party (easylist.txt: 26912) -.resultlinks.com -# ||respondhq.com^$third-party (easylist.txt: 26911) -.respondhq.com -# ||respond-adserver.cloudapp.net^$third-party (easylist.txt: 26910) -.respond-adserver.cloudapp.net -# ||respecific.net^$third-party (easylist.txt: 26909) -.respecific.net -# ||resideral.com^$third-party (easylist.txt: 26908) -.resideral.com -# ||repaynik.com^$third-party (easylist.txt: 26907) -.repaynik.com -# ||remiroyal.ro^$third-party (easylist.txt: 26906) -.remiroyal.ro -# ||remintrex.com^$third-party (easylist.txt: 26905) -.remintrex.com -# ||relytec.com^$third-party (easylist.txt: 26904) -.relytec.com -# ||relevanti.com^$third-party (easylist.txt: 26903) -.relevanti.com -# ||relestar.com^$third-party (easylist.txt: 26902) -.relestar.com -# ||relatedweboffers.com^$third-party (easylist.txt: 26901) -.relatedweboffers.com -# ||reklamz.com^$third-party (easylist.txt: 26900) -.reklamz.com -# ||regurgical.com^$third-party (easylist.txt: 26899) -.regurgical.com -# ||registry.cw.cm^$third-party (easylist.txt: 26898) -.registry.cw.cm -# ||regdfh.info^$third-party (easylist.txt: 26897) -.regdfh.info -# ||referback.com^$third-party (easylist.txt: 26896) -.referback.com -# ||refban.com^$third-party (easylist.txt: 26895) -.refban.com -# ||reelcentric.com^$third-party (easylist.txt: 26894) -.reelcentric.com -# ||reduxmediagroup.com^$third-party (easylist.txt: 26893) -.reduxmediagroup.com -# ||redpeepers.com^$third-party (easylist.txt: 26892) -.redpeepers.com -# ||redintelligence.net^$third-party (easylist.txt: 26891) -.redintelligence.net -# ||redcourtside.com^$third-party (easylist.txt: 26890) -.redcourtside.com -# ||recomendedsite.com^$third-party (easylist.txt: 26889) -.recomendedsite.com -# ||reate.info^$third-party (easylist.txt: 26888) -.reate.info -# ||realvu.net^$third-party (easylist.txt: 26887) -.realvu.net -# ||realsecuredredirect.com^$third-party (easylist.txt: 26886) -.realsecuredredirect.com -# ||realsecuredredir.com^$third-party (easylist.txt: 26885) -.realsecuredredir.com -# ||realmedia.com^$third-party (easylist.txt: 26884) -.realmedia.com -# ||realmatch.com^$third-party (easylist.txt: 26883) -.realmatch.com -# ||realclick.co.kr^$third-party (easylist.txt: 26882) -.realclick.co.kr -# ||readserver.net^$third-party (easylist.txt: 26881) -.readserver.net -# ||reactx.com^$third-party (easylist.txt: 26880) -.reactx.com -# ||reachmode.com^$third-party (easylist.txt: 26879) -.reachmode.com -# ||reachlocal.com^$third-party (easylist.txt: 26878) -.reachlocal.com -# ||reachjunction.com^$third-party (easylist.txt: 26877) -.reachjunction.com -# ||rddywd.com^$third-party (easylist.txt: 26876) -.rddywd.com -# ||rcurn.com^$third-party (easylist.txt: 26875) -.rcurn.com -# ||rcads.net^$third-party (easylist.txt: 26874) -.rcads.net -# ||rbnt.org^$third-party (easylist.txt: 26873) -.rbnt.org -# ||rawasy.com^$third-party (easylist.txt: 26872) -.rawasy.com -# ||rateaccept.net^$third-party (easylist.txt: 26871) -.rateaccept.net -# ||rapt.com^$third-party (easylist.txt: 26870) -.rapt.com -# ||rampanel.com^$third-party (easylist.txt: 26869) -.rampanel.com -# ||rainwealth.com^$third-party (easylist.txt: 26868) -.rainwealth.com -# ||rainbowtgx.com^$third-party (easylist.txt: 26867) -.rainbowtgx.com -# ||raiggy.com^$third-party (easylist.txt: 26866) -.raiggy.com -# ||ragapa.com^$third-party (easylist.txt: 26865) -.ragapa.com -# ||radiusmarketing.com^$third-party (easylist.txt: 26864) -.radiusmarketing.com -# ||radicalwealthformula.com^$third-party (easylist.txt: 26863) -.radicalwealthformula.com -# ||radeant.com^$third-party (easylist.txt: 26862) -.radeant.com -# ||rabilitan.com^$third-party (easylist.txt: 26861) -.rabilitan.com -# ||qwzmje9w.com^$third-party (easylist.txt: 26860) -.qwzmje9w.com -# ||qwobl.net^$third-party (easylist.txt: 26859) -.qwobl.net -# ||quinstreet.com^$third-party (easylist.txt: 26858) -.quinstreet.com -# ||quickcash500.com^$third-party (easylist.txt: 26857) -.quickcash500.com -# ||questus.com^$third-party (easylist.txt: 26856) -.questus.com -# ||questionmarket.com^$third-party (easylist.txt: 26855) -.questionmarket.com -# ||quensillo.com^$third-party (easylist.txt: 26854) -.quensillo.com -# ||quantumads.com^$third-party (easylist.txt: 26853) -.quantumads.com -# ||qualitypageviews.com^$third-party (easylist.txt: 26852) -.qualitypageviews.com -# ||qservz.com^$third-party (easylist.txt: 26851) -.qservz.com -# ||qnsr.com^$third-party (easylist.txt: 26850) -.qnsr.com -# ||qnrzmapdcc.com^$third-party (easylist.txt: 26849) -.qnrzmapdcc.com -# ||qksz.net^$third-party (easylist.txt: 26848) -.qksz.net -# ||qksrv.net^$third-party (easylist.txt: 26847) -.qksrv.net -# ||qdmil.com^$third-party (easylist.txt: 26846) -.qdmil.com -# ||qadservice.com^$third-party (easylist.txt: 26845) -.qadservice.com -# ||qadserve.com^$third-party (easylist.txt: 26844) -.qadserve.com -# ||q1xyxm89.com^$third-party (easylist.txt: 26843) -.q1xyxm89.com -# ||q1mediahydraplatform.com^$third-party (easylist.txt: 26842) -.q1mediahydraplatform.com -# ||q1media.com^$third-party (easylist.txt: 26841) -.q1media.com -# ||pzuwqncdai.com^$third-party (easylist.txt: 26840) -.pzuwqncdai.com -# ||pzaasocba.com^$third-party (easylist.txt: 26839) -.pzaasocba.com -# ||pxstda.com^$third-party (easylist.txt: 26838) -.pxstda.com -# ||pxl2015x1.com^$third-party (easylist.txt: 26837) -.pxl2015x1.com -# ||pwrads.net^$third-party (easylist.txt: 26836) -.pwrads.net -# ||push2check.com^$third-party (easylist.txt: 26835) -.push2check.com -# ||purpleflag.net^$third-party (easylist.txt: 26834) -.purpleflag.net -# ||pulsemgr.com^$third-party (easylist.txt: 26833) -.pulsemgr.com -# ||pulse360.com^$third-party (easylist.txt: 26832) -.pulse360.com -# ||puhtml.com^$third-party (easylist.txt: 26831) -.puhtml.com -# ||pubted.com^$third-party (easylist.txt: 26830) -.pubted.com -# ||pubserve.net^$third-party (easylist.txt: 26829) -.pubserve.net -# ||pubnation.com^$third-party (easylist.txt: 26828) -.pubnation.com -# ||pubmine.com^$third-party (easylist.txt: 26827) -.pubmine.com -# ||pubmatic.com^$third-party (easylist.txt: 26826) -.pubmatic.com -# ||publisheradnetwork.com^$third-party (easylist.txt: 26825) -.publisheradnetwork.com -# ||publisher.to^$third-party (easylist.txt: 26824) -.publisher.to -# ||publicsunrise.link^$third-party (easylist.txt: 26823) -.publicsunrise.link -# ||publicityclerks.com^$third-party (easylist.txt: 26822) -.publicityclerks.com -# ||publicidees.com^$third-party (easylist.txt: 26821) -.publicidees.com -# ||publicidad.net^$third-party (easylist.txt: 26820) -.publicidad.net -# ||pubgears.com^$third-party (easylist.txt: 26819) -.pubgears.com -# ||pub-fit.com^$third-party (easylist.txt: 26817) -.pub-fit.com -# ||ptp24.com^$third-party (easylist.txt: 26816) -.ptp24.com -# ||ptp22.com^$third-party (easylist.txt: 26815) -.ptp22.com -# ||ptp.lolco.net^$third-party (easylist.txt: 26814) -.ptp.lolco.net -# ||ptmzr.com^$third-party (easylist.txt: 26813) -.ptmzr.com -# ||psma02.com^$third-party (easylist.txt: 26812) -.psma02.com -# ||pseqcs05.com^$third-party (easylist.txt: 26811) -.pseqcs05.com -# ||psclicks.com^$third-party (easylist.txt: 26810) -.psclicks.com -# ||prre.ru^$third-party (easylist.txt: 26809) -.prre.ru -# ||proximic.com^$third-party (easylist.txt: 26808) -.proximic.com -# ||provider-direct.com^$third-party (easylist.txt: 26807) -.provider-direct.com -# ||protally.net^$third-party (easylist.txt: 26806) -.protally.net -# ||prosperent.com^$third-party (easylist.txt: 26805) -.prosperent.com -# ||proper.io^$third-party (easylist.txt: 26804) -.proper.io -# ||propelplus.com^$third-party (easylist.txt: 26803) -.propelplus.com -# ||propellerpops.com^$third-party (easylist.txt: 26802) -.propellerpops.com -# ||propellerads.com^$third-party (easylist.txt: 26801) -.propellerads.com -# ||promotiontrack.mobi^$third-party (easylist.txt: 26800) -.promotiontrack.mobi -# ||promotionoffer.mobi^$third-party (easylist.txt: 26799) -.promotionoffer.mobi -# ||promoted.com^$third-party (easylist.txt: 26798) -.promoted.com -# ||promobenef.com^$third-party (easylist.txt: 26797) -.promobenef.com -# ||promo-reklama.ru^$third-party (easylist.txt: 26796) -.promo-reklama.ru -# ||projectwonderful.com^$third-party (easylist.txt: 26795) -.projectwonderful.com -# ||programresolver.net^$third-party (easylist.txt: 26794) -.programresolver.net -# ||profitpeelers.com^$third-party (easylist.txt: 26793) -.profitpeelers.com -# ||proffigurufast.com^$third-party (easylist.txt: 26792) -.proffigurufast.com -# ||prod.untd.com^$third-party (easylist.txt: 26791) -.prod.untd.com -# ||probannerswap.com^$third-party (easylist.txt: 26790) -.probannerswap.com -# ||proadsdirect.com^$third-party (easylist.txt: 26789) -.proadsdirect.com -# ||pro-market.net^$third-party (easylist.txt: 26788) -.pro-market.net -# ||pro-advertising.com^$third-party (easylist.txt: 26787) -.pro-advertising.com -# ||pro-advert.de^$third-party (easylist.txt: 26786) -.pro-advert.de -# ||primaryads.com^$third-party (easylist.txt: 26785) -.primaryads.com -# ||prickac.com^$third-party (easylist.txt: 26784) -.prickac.com -# ||prf.hn^$third-party (easylist.txt: 26783) -.prf.hn -# ||prexista.com^$third-party (easylist.txt: 26782) -.prexista.com -# ||prestadsng.com^$third-party (easylist.txt: 26781) -.prestadsng.com -# ||predictad.com^$third-party (easylist.txt: 26780) -.predictad.com -# ||precisionclick.com^$third-party (easylist.txt: 26779) -.precisionclick.com -# ||prebid.org^$third-party (easylist.txt: 26778) -.prebid.org -# ||ppsearcher.ru^$third-party (easylist.txt: 26777) -.ppsearcher.ru -# ||ppcwebspy.com^$third-party (easylist.txt: 26776) -.ppcwebspy.com -# ||ppctrck.com^$third-party (easylist.txt: 26775) -.ppctrck.com -# ||ppclinking.com^$third-party (easylist.txt: 26774) -.ppclinking.com -# ||ppcindo.com^$third-party (easylist.txt: 26773) -.ppcindo.com -# ||powerlinks.com^$third-party (easylist.txt: 26772) -.powerlinks.com -# ||powerfulbusiness.net^$third-party (easylist.txt: 26771) -.powerfulbusiness.net -# ||poweradvertising.co.uk^$third-party (easylist.txt: 26770) -.poweradvertising.co.uk -# ||postrelease.com^$third-party (easylist.txt: 26769) -.postrelease.com -# ||posternel.com^$third-party (easylist.txt: 26768) -.posternel.com -# ||pornv.org^$third-party (easylist.txt: 26767) -.pornv.org -# ||popupvia.com^$third-party (easylist.txt: 26766) -.popupvia.com -# ||popuptraffic.com^$third-party (easylist.txt: 26765) -.popuptraffic.com -# ||popunderz.com^$third-party (easylist.txt: 26764) -.popunderz.com -# ||popundertotal.com^$third-party (easylist.txt: 26763) -.popundertotal.com -# ||popunder.ru^$third-party (easylist.txt: 26762) -.popunder.ru -# ||populisengage.com^$third-party (easylist.txt: 26761) -.populisengage.com -# ||populis.com^$third-party (easylist.txt: 26760) -.populis.com -# ||popularmedia.net^$third-party (easylist.txt: 26759) -.popularmedia.net -# ||popularitish.com^$third-party (easylist.txt: 26758) -.popularitish.com -# ||poptarts.me^$third-party (easylist.txt: 26757) -.poptarts.me -# ||popshow.info^$third-party (easylist.txt: 26756) -.popshow.info -# ||popsads.com^$third-party (easylist.txt: 26755) -.popsads.com -# ||poponclick.com^$third-party (easylist.txt: 26754) -.poponclick.com -# ||popmyads.com^$third-party (easylist.txt: 26753) -.popmyads.com -# ||popmyad.com^$third-party (easylist.txt: 26752) -.popmyad.com -# ||popmarker.com^$third-party (easylist.txt: 26751) -.popmarker.com -# ||popmajor.com^$third-party (easylist.txt: 26750) -.popmajor.com -# ||popearn.com^$third-party (easylist.txt: 26749) -.popearn.com -# ||popcpv.com^$third-party (easylist.txt: 26748) -.popcpv.com -# ||popcpm.com^$third-party (easylist.txt: 26747) -.popcpm.com -# ||popcash.net^$third-party (easylist.txt: 26746) -.popcash.net -# ||popadscdn.net^$third-party (easylist.txt: 26745) -.popadscdn.net -# ||popads.net^$third-party (easylist.txt: 26744) -.popads.net -# ||polydarth.com^$third-party (easylist.txt: 26743) -.polydarth.com -# ||polyad.net^$third-party (easylist.txt: 26742) -.polyad.net -# ||polmontventures.com^$third-party (easylist.txt: 26741) -.polmontventures.com -# ||polluxnetwork.com^$third-party (easylist.txt: 26740) -.polluxnetwork.com -# ||points2shop.com^$third-party (easylist.txt: 26739) -.points2shop.com -# ||pointroll.com^$third-party (easylist.txt: 26738) -.pointroll.com -# ||pointclicktrack.com^$third-party (easylist.txt: 26737) -.pointclicktrack.com -# ||pntrs.com^$third-party (easylist.txt: 26736) -.pntrs.com -# ||pntrac.com^$third-party (easylist.txt: 26735) -.pntrac.com -# ||pntra.com^$third-party (easylist.txt: 26734) -.pntra.com -# ||pnoss.com^$third-party (easylist.txt: 26733) -.pnoss.com -# ||pmsrvr.com^$third-party (easylist.txt: 26732) -.pmsrvr.com -# ||plxserve.com^$third-party (easylist.txt: 26731) -.plxserve.com -# ||plusfind.net^$third-party (easylist.txt: 26730) -.plusfind.net -# ||plugerr.com^$third-party (easylist.txt: 26729) -.plugerr.com -# ||plocap.com^$third-party (easylist.txt: 26728) -.plocap.com -# ||pllddc.com^$third-party (easylist.txt: 26727) -.pllddc.com -# ||plexop.net^$third-party (easylist.txt: 26726) -.plexop.net -# ||plenomedia.com^$third-party (easylist.txt: 26725) -.plenomedia.com -# ||pleeko.com^$third-party (easylist.txt: 26724) -.pleeko.com -# ||playukinternet.com^$third-party (easylist.txt: 26723) -.playukinternet.com -# ||playertraffic.com^$third-party (easylist.txt: 26722) -.playertraffic.com -# ||play24.us^$third-party (easylist.txt: 26721) -.play24.us -# ||platinumadvertisement.com^$third-party (easylist.txt: 26720) -.platinumadvertisement.com -# ||plannto.com^$third-party (easylist.txt: 26719) -.plannto.com -# ||pjtra.com^$third-party (easylist.txt: 26718) -.pjtra.com -# ||pjatr.com^$third-party (easylist.txt: 26717) -.pjatr.com -# ||pixxur.com^$third-party (easylist.txt: 26716) -.pixxur.com -# ||pixfuture.net^$third-party (easylist.txt: 26715) -.pixfuture.net -# ||pixeltrack66.com^$third-party (easylist.txt: 26714) -.pixeltrack66.com -# ||pixazza.com^$third-party (easylist.txt: 26713) -.pixazza.com -# ||pivotrunner.com^$third-party (easylist.txt: 26712) -.pivotrunner.com -# ||pivotalmedialabs.com^$third-party (easylist.txt: 26711) -.pivotalmedialabs.com -# ||piticlik.com^$third-party (easylist.txt: 26710) -.piticlik.com -# ||pioneeringad.com^$third-party (easylist.txt: 26709) -.pioneeringad.com -# ||pinballpublishernetwork.com^$third-party (easylist.txt: 26708) -.pinballpublishernetwork.com -# ||pictela.net^$third-party (easylist.txt: 26707) -.pictela.net -# ||picsti.com^$third-party (easylist.txt: 26706) -.picsti.com -# ||picbucks.com^$third-party (easylist.txt: 26705) -.picbucks.com -# ||picadmedia.com^$third-party (easylist.txt: 26704) -.picadmedia.com -# ||pianobuyerdeals.com^$third-party (easylist.txt: 26703) -.pianobuyerdeals.com -# ||phonespybubble.com^$third-party (easylist.txt: 26702) -.phonespybubble.com -# ||philosophere.com^$third-party (easylist.txt: 26701) -.philosophere.com -# ||philipstreehouse.info^$third-party (easylist.txt: 26700) -.philipstreehouse.info -# ||philbardre.com^$third-party (easylist.txt: 26699) -.philbardre.com -# ||pheedo.com^$third-party (easylist.txt: 26698) -.pheedo.com -# ||pharmcash.com^$third-party (easylist.txt: 26697) -.pharmcash.com -# ||pgssl.com^$third-party (easylist.txt: 26696) -.pgssl.com -# ||pgpartner.com^$third-party (easylist.txt: 26695) -.pgpartner.com -# ||pgmediaserve.com^$third-party (easylist.txt: 26694) -.pgmediaserve.com -# ||pezrphjl.com^$third-party (easylist.txt: 26693) -.pezrphjl.com -# ||persevered.com^$third-party (easylist.txt: 26692) -.persevered.com -# ||permutive.com^$third-party (easylist.txt: 26691) -.permutive.com -# ||performancingads.com^$third-party (easylist.txt: 26690) -.performancingads.com -# ||performancetrack.info^$third-party (easylist.txt: 26689) -.performancetrack.info -# ||performanceadvertising.mobi^$third-party (easylist.txt: 26688) -.performanceadvertising.mobi -# ||performance-based.com^$third-party (easylist.txt: 26687) -.performance-based.com -# ||perfoormapp.info^$third-party (easylist.txt: 26686) -.perfoormapp.info -# ||perfcreatives.com^$third-party (easylist.txt: 26685) -.perfcreatives.com -# ||perfb.com^$third-party (easylist.txt: 26684) -.perfb.com -# ||percularity.com^$third-party (easylist.txt: 26683) -.percularity.com -# ||pepperjamnetwork.com^$third-party (easylist.txt: 26682) -.pepperjamnetwork.com -# ||penuma.com^$third-party (easylist.txt: 26681) -.penuma.com -# ||peer39.net^$third-party (easylist.txt: 26680) -.peer39.net -# ||peemee.com^$third-party (easylist.txt: 26679) -.peemee.com -# ||peelawaymaker.com^$third-party (easylist.txt: 26678) -.peelawaymaker.com -# ||peakclick.com^$third-party (easylist.txt: 26677) -.peakclick.com -# ||pe2k2dty.com^$third-party (easylist.txt: 26676) -.pe2k2dty.com -# ||pc-ads.com^$third-party (easylist.txt: 26675) -.pc-ads.com -# ||payperpost.com^$third-party (easylist.txt: 26674) -.payperpost.com -# ||paydotcom.com^$third-party (easylist.txt: 26673) -.paydotcom.com -# ||pay-click.ru^$third-party (easylist.txt: 26672) -.pay-click.ru -# ||pautaspr.com^$third-party (easylist.txt: 26671) -.pautaspr.com -# ||passionfruitads.com^$third-party (easylist.txt: 26670) -.passionfruitads.com -# ||pas-rahav.com^$third-party (easylist.txt: 26669) -.pas-rahav.com -# ||partypoker.com^$third-party (easylist.txt: 26668) -.partypoker.com -# ||partypartners.com^$third-party (easylist.txt: 26667) -.partypartners.com -# ||partycasino.com^$third-party (easylist.txt: 26666) -.partycasino.com -# ||partnermax.de^$third-party (easylist.txt: 26665) -.partnermax.de -# ||partnerearning.com^$third-party (easylist.txt: 26664) -.partnerearning.com -# ||partner.video.syndication.msn.com^$~object-subrequest,third-party (easylist.txt: 26663) -.partner.video.syndication.msn.com -# ||partner.googleadservices.com^$third-party (easylist.txt: 26662) -.partner.googleadservices.com -# ||partner-ads.com^$third-party (easylist.txt: 26661) -.partner-ads.com -# ||paradocs.ru^$third-party (easylist.txt: 26660) -.paradocs.ru -# ||paperg.com^$third-party (easylist.txt: 26659) -.paperg.com -# ||pantherads.com^$third-party (easylist.txt: 26658) -.pantherads.com -# ||panachetech.com^$third-party (easylist.txt: 26657) -.panachetech.com -# ||pakbanners.com^$third-party (easylist.txt: 26656) -.pakbanners.com -# ||paidsearchexperts.com^$third-party (easylist.txt: 26655) -.paidsearchexperts.com -# ||paidonresults.net^$third-party (easylist.txt: 26654) -.paidonresults.net -# ||paid4ad.de^$third-party (easylist.txt: 26653) -.paid4ad.de -# ||pagesinxt.com^$third-party (easylist.txt: 26652) -.pagesinxt.com -# ||pagefair.net^$third-party (easylist.txt: 26651) -.pagefair.net -# ||padstm.com^$third-party (easylist.txt: 26650) -.padstm.com -# ||padsdelivery.com^$third-party (easylist.txt: 26649) -.padsdelivery.com -# ||paads.dk^$third-party (easylist.txt: 26648) -.paads.dk -# ||p2ads.com^$third-party (easylist.txt: 26647) -.p2ads.com -# ||p-digital-server.com^$third-party (easylist.txt: 26646) -.p-digital-server.com -# ||p-comme-performance.com^$third-party (easylist.txt: 26645) -.p-comme-performance.com -# ||p-advg.com^$third-party (easylist.txt: 26644) -.p-advg.com -# ||ozonemedia.com^$third-party (easylist.txt: 26643) -.ozonemedia.com -# ||ozertesa.com^$third-party (easylist.txt: 26642) -.ozertesa.com -# ||oxybe.com^$third-party (easylist.txt: 26641) -.oxybe.com -# ||oxtracking.com^$third-party (easylist.txt: 26640) -.oxtracking.com -# ||oxsng.com^$third-party (easylist.txt: 26639) -.oxsng.com -# ||oxado.com^$third-party (easylist.txt: 26638) -.oxado.com -# ||ovtopli.ru^$third-party (easylist.txt: 26637) -.ovtopli.ru -# ||overturs.com^$third-party (easylist.txt: 26636) -.overturs.com -# ||overture.com^$third-party (easylist.txt: 26635) -.overture.com -# ||overhaps.com^$third-party (easylist.txt: 26634) -.overhaps.com -# ||oveld.com^$third-party (easylist.txt: 26633) -.oveld.com -# ||ov8pc.tv^$third-party (easylist.txt: 26632) -.ov8pc.tv -# ||ourunlimitedleads.com^$third-party (easylist.txt: 26631) -.ourunlimitedleads.com -# ||othersonline.com^$third-party (easylist.txt: 26630) -.othersonline.com -# ||ospreymedialp.com^$third-party (easylist.txt: 26629) -.ospreymedialp.com -# ||oskale.ru^$third-party (easylist.txt: 26628) -.oskale.ru -# ||ordingly.com^$third-party (easylist.txt: 26627) -.ordingly.com -# ||orbengine.com^$third-party (easylist.txt: 26626) -.orbengine.com -# ||orarala.com^$third-party (easylist.txt: 26625) -.orarala.com -# ||orangeads.fr^$third-party (easylist.txt: 26624) -.orangeads.fr -# ||optinmonster.com^$third-party (easylist.txt: 26623) -.optinmonster.com -# ||optinemailpro.com^$third-party (easylist.txt: 26622) -.optinemailpro.com -# ||optimizeadvert.biz^$third-party (easylist.txt: 26621) -.optimizeadvert.biz -# ||optimatic.com^$third-party (easylist.txt: 26620) -.optimatic.com -# ||optimalroi.info^$third-party (easylist.txt: 26619) -.optimalroi.info -# ||optiad.net^$third-party (easylist.txt: 26618) -.optiad.net -# ||opteama.com^$third-party (easylist.txt: 26617) -.opteama.com -# ||opt-n.net^$third-party (easylist.txt: 26616) -.opt-n.net -# ||opt-intelligence.com^$third-party (easylist.txt: 26615) -.opt-intelligence.com -# ||operatical.com^$third-party (easylist.txt: 26614) -.operatical.com -# ||openxmarket.asia^$third-party (easylist.txt: 26613) -.openxmarket.asia -# ||openxenterprise.com^$third-party (easylist.txt: 26612) -.openxenterprise.com -# ||openxadexchange.com^$third-party (easylist.txt: 26611) -.openxadexchange.com -# ||opensourceadvertisementnetwork.info^$third-party (easylist.txt: 26610) -.opensourceadvertisementnetwork.info -# ||openetray.com^$third-party (easylist.txt: 26609) -.openetray.com -# ||openbook.net^$third-party (easylist.txt: 26608) -.openbook.net -# ||opap.co.kr^$third-party (easylist.txt: 26607) -.opap.co.kr -# ||oos4l.com^$third-party (easylist.txt: 26606) -.oos4l.com -# ||oofte.com^$third-party (easylist.txt: 26605) -.oofte.com -# ||ooecyaauiz.com^$third-party (easylist.txt: 26604) -.ooecyaauiz.com -# ||oodode.com^$third-party (easylist.txt: 26603) -.oodode.com -# ||onvertise.com^$third-party (easylist.txt: 26602) -.onvertise.com -# ||onsitemarketplace.net^$third-party (easylist.txt: 26601) -.onsitemarketplace.net -# ||onscroll.com^$third-party (easylist.txt: 26600) -.onscroll.com -# ||onrampadvertising.com^$third-party (easylist.txt: 26599) -.onrampadvertising.com -# ||onlyalad.net^$third-party (easylist.txt: 26598) -.onlyalad.net -# ||onlinedl.info^$third-party (easylist.txt: 26597) -.onlinedl.info -# ||onlineadtracker.co.uk^$third-party (easylist.txt: 26596) -.onlineadtracker.co.uk -# ||online-media24.de^$third-party (easylist.txt: 26595) -.online-media24.de -# ||online-adnetwork.com^$third-party (easylist.txt: 26594) -.online-adnetwork.com -# ||onespot.com^$third-party (easylist.txt: 26593) -.onespot.com -# ||onenetworkdirect.net^$third-party (easylist.txt: 26592) -.onenetworkdirect.net -# ||onenetworkdirect.com^$third-party (easylist.txt: 26591) -.onenetworkdirect.com -# ||onedmp.com^$third-party (easylist.txt: 26590) -.onedmp.com -# ||onclickads.net^$third-party (easylist.txt: 26589) -.onclickads.net -# ||onads.com^$third-party (easylist.txt: 26588) -.onads.com -# ||onad.eu^$third-party (easylist.txt: 26587) -.onad.eu -# ||omni-ads.com^$third-party (easylist.txt: 26586) -.omni-ads.com -# ||omg2.com^$third-party (easylist.txt: 26585) -.omg2.com -# ||omclick.com^$third-party (easylist.txt: 26584) -.omclick.com -# ||oldtiger.net^$third-party (easylist.txt: 26583) -.oldtiger.net -# ||oileddaintiessunset.info^$third-party (easylist.txt: 26582) -.oileddaintiessunset.info -# ||ohmcasting.com^$third-party (easylist.txt: 26581) -.ohmcasting.com -# ||oggifinogi.com^$third-party (easylist.txt: 26580) -.oggifinogi.com -# ||ofino.ru^$third-party (easylist.txt: 26579) -.ofino.ru -# ||offersquared.com^$third-party (easylist.txt: 26578) -.offersquared.com -# ||offerserve.com^$third-party (easylist.txt: 26577) -.offerserve.com -# ||offerpalads.com^$third-party (easylist.txt: 26576) -.offerpalads.com -# ||offerforge.com^$third-party (easylist.txt: 26575) -.offerforge.com -# ||offeradvertising.biz^$third-party (easylist.txt: 26574) -.offeradvertising.biz -# ||oehposan.com^$third-party (easylist.txt: 26573) -.oehposan.com -# ||oclus.com^$third-party (easylist.txt: 26572) -.oclus.com -# ||oclsasrv.com^$third-party (easylist.txt: 26571) -.oclsasrv.com -# ||oclasrv.com^$third-party (easylist.txt: 26570) -.oclasrv.com -# ||oceanwebcraft.com^$third-party (easylist.txt: 26569) -.oceanwebcraft.com -# ||objectservers.com^$third-party (easylist.txt: 26568) -.objectservers.com -# ||objects.tremormedia.com^$~object-subrequest,third-party (easylist.txt: 26567) -.objects.tremormedia.com -# ||obibanners.com^$third-party (easylist.txt: 26566) -.obibanners.com -# ||obeus.com^$third-party (easylist.txt: 26565) -.obeus.com -# ||obesw.com^$third-party (easylist.txt: 26564) -.obesw.com -# ||oainternetservices.com^$third-party (easylist.txt: 26563) -.oainternetservices.com -# ||oads.co^$third-party (easylist.txt: 26562) -.oads.co -# ||nzphoenix.com^$third-party (easylist.txt: 26561) -.nzphoenix.com -# ||nzads.net.nz^$third-party (easylist.txt: 26560) -.nzads.net.nz -# ||nyadmcncserve-05y06a.com^$third-party (easylist.txt: 26559) -.nyadmcncserve-05y06a.com -# ||nxtck.com^$third-party (easylist.txt: 26558) -.nxtck.com -# ||nwfhalifax.com^$third-party (easylist.txt: 26557) -.nwfhalifax.com -# ||nvero.net^$third-party (easylist.txt: 26556) -.nvero.net -# ||nvadn.com^$third-party (easylist.txt: 26555) -.nvadn.com -# ||nuseek.com^$third-party (easylist.txt: 26554) -.nuseek.com -# ||numbers.md^$third-party (easylist.txt: 26553) -.numbers.md -# ||numberium.com^$third-party (easylist.txt: 26552) -.numberium.com -# ||ntv.io^$third-party (easylist.txt: 26551) -.ntv.io -# ||ntent.com^$third-party (easylist.txt: 26550) -.ntent.com -# ||nspmotion.com^$third-party (easylist.txt: 26548) -.nspmotion.com -# ||nsmartad.com^$third-party (easylist.txt: 26547) -.nsmartad.com -# ||nsdsvc.com^$third-party (easylist.txt: 26546) -.nsdsvc.com -# ||nscontext.com^$third-party (easylist.txt: 26545) -.nscontext.com -# ||nrnma.com^$third-party (easylist.txt: 26544) -.nrnma.com -# ||nquchhfyex.com^$third-party (easylist.txt: 26543) -.nquchhfyex.com -# ||npvos.com^$third-party (easylist.txt: 26542) -.npvos.com -# ||nplexmedia.com^$third-party (easylist.txt: 26541) -.nplexmedia.com -# ||nowspots.com^$third-party (easylist.txt: 26540) -.nowspots.com -# ||nowlooking.net^$third-party (easylist.txt: 26539) -.nowlooking.net -# ||novarevenue.com^$third-party (easylist.txt: 26538) -.novarevenue.com -# ||northmay.com^$third-party (easylist.txt: 26537) -.northmay.com -# ||normkela.com^$third-party (easylist.txt: 26536) -.normkela.com -# ||noretia.com^$third-party (easylist.txt: 26535) -.noretia.com -# ||nonstoppartner.de^$third-party (easylist.txt: 26534) -.nonstoppartner.de -# ||nobsetfinvestor.com^$third-party (easylist.txt: 26533) -.nobsetfinvestor.com -# ||nobleppc.com^$third-party (easylist.txt: 26532) -.nobleppc.com -# ||nmwrdr.net^$third-party (easylist.txt: 26531) -.nmwrdr.net -# ||nmcdn.us^$third-party (easylist.txt: 26530) -.nmcdn.us -# ||nkredir.com^$third-party (easylist.txt: 26529) -.nkredir.com -# ||nighter.club^$third-party (easylist.txt: 26528) -.nighter.club -# ||nicheads.com^$third-party (easylist.txt: 26527) -.nicheads.com -# ||nicheadgenerator.com^$third-party (easylist.txt: 26526) -.nicheadgenerator.com -# ||ngecity.com^$third-party (easylist.txt: 26525) -.ngecity.com -# ||nextmobilecash.com^$third-party (easylist.txt: 26524) -.nextmobilecash.com -# ||nexage.com^$third-party (easylist.txt: 26523) -.nexage.com -# ||nexac.com^$third-party (easylist.txt: 26522) -.nexac.com -# ||newtention.net^$third-party (easylist.txt: 26521) -.newtention.net -# ||newstogram.com^$third-party (easylist.txt: 26520) -.newstogram.com -# ||newsnet.in.ua^$third-party (easylist.txt: 26519) -.newsnet.in.ua -# ||newsadstream.com^$third-party (easylist.txt: 26518) -.newsadstream.com -# ||newideasdaily.com^$third-party (easylist.txt: 26517) -.newideasdaily.com -# ||newgentraffic.com^$third-party (easylist.txt: 26516) -.newgentraffic.com -# ||newdosug.eu^$third-party (easylist.txt: 26515) -.newdosug.eu -# ||neudesicmediagroup.com^$third-party (easylist.txt: 26514) -.neudesicmediagroup.com -# ||networldmedia.net^$third-party (easylist.txt: 26513) -.networldmedia.net -# ||networld.hk^$third-party (easylist.txt: 26512) -.networld.hk -# ||networkxi.com^$third-party (easylist.txt: 26511) -.networkxi.com -# ||networkplay.in^$third-party (easylist.txt: 26510) -.networkplay.in -# ||netsolads.com^$third-party (easylist.txt: 26509) -.netsolads.com -# ||netshelter.net^$third-party (easylist.txt: 26508) -.netshelter.net -# ||netseer.com^$third-party (easylist.txt: 26507) -.netseer.com -# ||netpondads.com^$third-party (easylist.txt: 26506) -.netpondads.com -# ||netloader.cc^$third-party (easylist.txt: 26505) -.netloader.cc -# ||netliker.com^$third-party (easylist.txt: 26504) -.netliker.com -# ||netflixalternative.net^$third-party (easylist.txt: 26503) -.netflixalternative.net -# ||netavenir.com^$third-party (easylist.txt: 26502) -.netavenir.com -# ||netaffiliation.com^$~script,third-party (easylist.txt: 26501) -.netaffiliation.com -# ||net3media.com^$third-party (easylist.txt: 26500) -.net3media.com -# ||net-ad-vantage.com^$third-party (easylist.txt: 26499) -.net-ad-vantage.com -# ||neoffic.com^$third-party (easylist.txt: 26498) -.neoffic.com -# ||neodatagroup.com^$third-party (easylist.txt: 26497) -.neodatagroup.com -# ||neobux.com^$third-party (easylist.txt: 26496) -.neobux.com -# ||negolist.com^$third-party (easylist.txt: 26495) -.negolist.com -# ||neblotech.com^$third-party (easylist.txt: 26494) -.neblotech.com -# ||ncrjsserver.com^$third-party (easylist.txt: 26493) -.ncrjsserver.com -# ||nbstatic.com^$third-party (easylist.txt: 26492) -.nbstatic.com -# ||nbjmp.com^$third-party (easylist.txt: 26491) -.nbjmp.com -# ||nativeads.com^$third-party (easylist.txt: 26490) -.nativeads.com -# ||nativead.co^$third-party (easylist.txt: 26489) -.nativead.co -# ||native-adserver.com^$third-party (easylist.txt: 26488) -.native-adserver.com -# ||nanigans.com^$third-party (easylist.txt: 26487) -.nanigans.com -# ||nagrande.com^$third-party (easylist.txt: 26486) -.nagrande.com -# ||nabbr.com^$third-party (easylist.txt: 26485) -.nabbr.com -# ||n4403ad.doubleclick.net^$third-party (easylist.txt: 26484) -.n4403ad.doubleclick.net -# ||n388hkxg.com^$third-party (easylist.txt: 26483) -.n388hkxg.com -# ||mz28ismn.com^$third-party (easylist.txt: 26482) -.mz28ismn.com -# ||mywidget.mobi^$third-party (easylist.txt: 26481) -.mywidget.mobi -# ||myvads.com^$third-party (easylist.txt: 26480) -.myvads.com -# ||myuniques.ru^$third-party (easylist.txt: 26479) -.myuniques.ru -# ||mythings.com^$third-party (easylist.txt: 26478) -.mythings.com -# ||mysafeurl.com^$third-party (easylist.txt: 26477) -.mysafeurl.com -# ||myplayerhd.net^$third-party (easylist.txt: 26476) -.myplayerhd.net -# ||mynewcarquote.us^$third-party (easylist.txt: 26475) -.mynewcarquote.us -# ||mylinkbox.com^$third-party (easylist.txt: 26474) -.mylinkbox.com -# ||myinfotopia.com^$third-party (easylist.txt: 26473) -.myinfotopia.com -# ||myemailbox.info^$third-party (easylist.txt: 26472) -.myemailbox.info -# ||mydreamads.com^$third-party (easylist.txt: 26471) -.mydreamads.com -# ||mycooliframe.net^$third-party (easylist.txt: 26470) -.mycooliframe.net -# ||myclickbankads.com^$third-party (easylist.txt: 26469) -.myclickbankads.com -# ||myaffiliates.com^$third-party (easylist.txt: 26468) -.myaffiliates.com -# ||my-layer.net^$third-party (easylist.txt: 26467) -.my-layer.net -# ||mxtads.com^$third-party (easylist.txt: 26466) -.mxtads.com -# ||mutary.com^$third-party (easylist.txt: 26465) -.mutary.com -# ||musicnote.info^$third-party (easylist.txt: 26464) -.musicnote.info -# ||music-desktop.com^$third-party (easylist.txt: 26463) -.music-desktop.com -# ||munically.com^$third-party (easylist.txt: 26462) -.munically.com -# ||multiview.com^$third-party (easylist.txt: 26461) -.multiview.com -# ||multiadserv.com^$third-party (easylist.txt: 26460) -.multiadserv.com -# ||mujap.com^$third-party (easylist.txt: 26459) -.mujap.com -# ||mtrcss.com^$third-party (easylist.txt: 26458) -.mtrcss.com -# ||mtagmonetizationb.com^$third-party (easylist.txt: 26457) -.mtagmonetizationb.com -# ||mtagmonetizationa.com^$third-party (easylist.txt: 26456) -.mtagmonetizationa.com -# ||msypr.com^$third-party (easylist.txt: 26455) -.msypr.com -# ||msads.net^$third-party (easylist.txt: 26454) -.msads.net -# ||mprezchc.com^$third-party (easylist.txt: 26453) -.mprezchc.com -# ||mpression.net^$third-party (easylist.txt: 26452) -.mpression.net -# ||mpnrs.com^$third-party (easylist.txt: 26451) -.mpnrs.com -# ||movad.net^$third-party (easylist.txt: 26450) -.movad.net -# ||mottnow.com^$third-party (easylist.txt: 26449) -.mottnow.com -# ||moselats.com^$third-party (easylist.txt: 26448) -.moselats.com -# ||morgdm.ru^$third-party (easylist.txt: 26447) -.morgdm.ru -# ||moreplayerz.com^$third-party (easylist.txt: 26446) -.moreplayerz.com -# ||moregamers.com^$third-party (easylist.txt: 26445) -.moregamers.com -# ||mooxar.com^$third-party (easylist.txt: 26444) -.mooxar.com -# ||mootermedia.com^$third-party (easylist.txt: 26443) -.mootermedia.com -# ||mookie1.com^$third-party (easylist.txt: 26442) -.mookie1.com -# ||monsoonads.com^$third-party (easylist.txt: 26441) -.monsoonads.com -# ||monkeybroker.net^$third-party (easylist.txt: 26440) -.monkeybroker.net -# ||moneywhisper.com^$third-party (easylist.txt: 26439) -.moneywhisper.com -# ||moneycosmos.com^$third-party (easylist.txt: 26438) -.moneycosmos.com -# ||money4ads.com^$third-party (easylist.txt: 26437) -.money4ads.com -# ||money-cpm.fr^$third-party (easylist.txt: 26436) -.money-cpm.fr -# ||mokonocdn.com^$third-party (easylist.txt: 26435) -.mokonocdn.com -# ||mojoaffiliates.com^$third-party (easylist.txt: 26434) -.mojoaffiliates.com -# ||mogointeractive.com^$third-party (easylist.txt: 26433) -.mogointeractive.com -# ||moffsets.com^$third-party (easylist.txt: 26432) -.moffsets.com -# ||modelegating.com^$third-party (easylist.txt: 26431) -.modelegating.com -# ||mobytrks.com^$third-party (easylist.txt: 26430) -.mobytrks.com -# ||mobtrks.com^$third-party (easylist.txt: 26429) -.mobtrks.com -# ||mobstrks.com^$third-party (easylist.txt: 26428) -.mobstrks.com -# ||moborobot.com^$third-party (easylist.txt: 26427) -.moborobot.com -# ||mobiyield.com^$third-party (easylist.txt: 26426) -.mobiyield.com -# ||mobitracker.info^$third-party (easylist.txt: 26425) -.mobitracker.info -# ||mobisla.com^$third-party (easylist.txt: 26424) -.mobisla.com -# ||mobiright.com^$third-party (easylist.txt: 26423) -.mobiright.com -# ||mobile-10.com^$third-party (easylist.txt: 26422) -.mobile-10.com -# ||mobikano.com^$third-party (easylist.txt: 26421) -.mobikano.com -# ||mobifobi.com^$third-party (easylist.txt: 26420) -.mobifobi.com -# ||mobicont.com^$third-party (easylist.txt: 26419) -.mobicont.com -# ||mobfox.com^$third-party (easylist.txt: 26418) -.mobfox.com -# ||mobday.com^$third-party (easylist.txt: 26417) -.mobday.com -# ||mobatory.com^$third-party (easylist.txt: 26416) -.mobatory.com -# ||mobatori.com^$third-party (easylist.txt: 26415) -.mobatori.com -# ||moatads.com^$third-party (easylist.txt: 26414) -.moatads.com -# ||mmotraffic.com^$third-party (easylist.txt: 26413) -.mmotraffic.com -# ||mmoptional.com^$third-party (easylist.txt: 26412) -.mmoptional.com -# ||mmondi.com^$third-party (easylist.txt: 26411) -.mmondi.com -# ||mmngte.net^$third-party (easylist.txt: 26410) -.mmngte.net -# ||mmismm.com^$third-party (easylist.txt: 26409) -.mmismm.com -# ||mmgads.com^$third-party (easylist.txt: 26408) -.mmgads.com -# ||mmadsgadget.com^$third-party (easylist.txt: 26407) -.mmadsgadget.com -# ||mlnadvertising.com^$third-party (easylist.txt: 26406) -.mlnadvertising.com -# ||mktseek.com^$third-party (easylist.txt: 26405) -.mktseek.com -# ||mixpo.com^$third-party (easylist.txt: 26404) -.mixpo.com -# ||mixmarket.biz^$third-party (easylist.txt: 26403) -.mixmarket.biz -# ||miva.com^$third-party (easylist.txt: 26402) -.miva.com -# ||mistands.com^$third-party (easylist.txt: 26401) -.mistands.com -# ||mirrorpersonalinjury.co.uk^$third-party (easylist.txt: 26400) -.mirrorpersonalinjury.co.uk -# ||mirago.com^$third-party (easylist.txt: 26399) -.mirago.com -# ||minimumpay.info^$third-party (easylist.txt: 26398) -.minimumpay.info -# ||mindlytix.com^$third-party (easylist.txt: 26397) -.mindlytix.com -# ||milabra.com^$third-party (easylist.txt: 26396) -.milabra.com -# ||microsoftaffiliates.net^$third-party (easylist.txt: 26395) -.microsoftaffiliates.net -# ||microadinc.com^$third-party (easylist.txt: 26394) -.microadinc.com -# ||microad.jp^$third-party (easylist.txt: 26393) -.microad.jp -# ||mibebu.com^$third-party (easylist.txt: 26392) -.mibebu.com -# ||mgplatform.com^$third-party (easylist.txt: 26391) -.mgplatform.com -# ||mgcashgate.com^$third-party (easylist.txt: 26389) -.mgcashgate.com -# ||mgcash.com^$third-party (easylist.txt: 26388) -.mgcash.com -# ||mezimedia.com^$third-party (easylist.txt: 26387) -.mezimedia.com -# ||meya41w7.com^$third-party (easylist.txt: 26386) -.meya41w7.com -# ||meviodisplayads.com^$third-party (easylist.txt: 26385) -.meviodisplayads.com -# ||metrics.io^$third-party (easylist.txt: 26384) -.metrics.io -# ||metavertizer.com^$third-party (easylist.txt: 26383) -.metavertizer.com -# ||metavertising.com^$third-party (easylist.txt: 26382) -.metavertising.com -# ||metaffiliation.com^*^taff= (easylist.txt: 26381) -.metaffiliation.com/.*[^\w%.-]taff= -# ||metaffiliation.com^*^maff= (easylist.txt: 26380) -.metaffiliation.com/.*[^\w%.-]maff= -# ||metaffiliation.com^$~image,~subdocument,third-party (easylist.txt: 26379) -.metaffiliation.com -# ||messagespaceads.com^$third-party (easylist.txt: 26378) -.messagespaceads.com -# ||mercuras.com^$third-party (easylist.txt: 26377) -.mercuras.com -# ||merchenta.com^$third-party (easylist.txt: 26376) -.merchenta.com -# ||mentalks.ru^$third-party (easylist.txt: 26375) -.mentalks.ru -# ||mentad.com^$third-party (easylist.txt: 26374) -.mentad.com -# ||mengheng.net^$third-party (easylist.txt: 26373) -.mengheng.net -# ||mellowads.com^$third-party (easylist.txt: 26372) -.mellowads.com -# ||meinlist.com^$third-party (easylist.txt: 26371) -.meinlist.com -# ||megbase.com^$third-party (easylist.txt: 26370) -.megbase.com -# ||megatronmailer.com^$third-party (easylist.txt: 26369) -.megatronmailer.com -# ||megapopads.com^$third-party (easylist.txt: 26368) -.megapopads.com -# ||megacpm.com^$third-party (easylist.txt: 26367) -.megacpm.com -# ||megaad.nz^$third-party (easylist.txt: 26366) -.megaad.nz -# ||meetic-partners.com^$third-party (easylist.txt: 26365) -.meetic-partners.com -# ||meendocash.com^$third-party (easylist.txt: 26364) -.meendocash.com -# ||medyanetads.com^$third-party (easylist.txt: 26363) -.medyanetads.com -# ||medyanet.net^$third-party (easylist.txt: 26362) -.medyanet.net -# ||medrx.sensis.com.au^$third-party (easylist.txt: 26361) -.medrx.sensis.com.au -# ||medleyads.com^$third-party (easylist.txt: 26360) -.medleyads.com -# ||mediatraks.com^$third-party (easylist.txt: 26359) -.mediatraks.com -# ||mediatraffic.com^$third-party (easylist.txt: 26358) -.mediatraffic.com -# ||mediative.ca^$third-party (easylist.txt: 26357) -.mediative.ca -# ||mediatarget.com^$third-party (easylist.txt: 26356) -.mediatarget.com -# ||mediapeo.com^$third-party (easylist.txt: 26355) -.mediapeo.com -# ||mediaonpro.com^$third-party (easylist.txt: 26354) -.mediaonpro.com -# ||mediaonenetwork.net^$third-party (easylist.txt: 26353) -.mediaonenetwork.net -# ||medialation.net^$third-party (easylist.txt: 26352) -.medialation.net -# ||medialand.ru^$third-party (easylist.txt: 26351) -.medialand.ru -# ||mediakeywords.com^$third-party (easylist.txt: 26350) -.mediakeywords.com -# ||mediagridwork.com^$third-party (easylist.txt: 26349) -.mediagridwork.com -# ||mediag4.com^$third-party (easylist.txt: 26348) -.mediag4.com -# ||mediaforge.com^$third-party (easylist.txt: 26347) -.mediaforge.com -# ||mediaflire.com^$third-party (easylist.txt: 26346) -.mediaflire.com -# ||mediafilesdownload.com^$third-party (easylist.txt: 26345) -.mediafilesdownload.com -# ||mediaffiliation.com^$third-party (easylist.txt: 26344) -.mediaffiliation.com -# ||mediacpm.com^$third-party (easylist.txt: 26343) -.mediacpm.com -# ||mediaclick.com^$third-party (easylist.txt: 26342) -.mediaclick.com -# ||mediaadserver.org^$third-party (easylist.txt: 26341) -.mediaadserver.org -# ||media970.com^$third-party (easylist.txt: 26340) -.media970.com -# ||media6degrees.com^$third-party (easylist.txt: 26339) -.media6degrees.com -# ||media303.com^$third-party (easylist.txt: 26338) -.media303.com -# ||media.net^$third-party (easylist.txt: 26337) -.media.net -# ||media-servers.net^$third-party (easylist.txt: 26336) -.media-servers.net -# ||media-networks.ru^$third-party (easylist.txt: 26335) -.media-networks.ru -# ||media-ks.net^$third-party (easylist.txt: 26334) -.media-ks.net -# ||media-general.com^$third-party (easylist.txt: 26333) -.media-general.com -# ||meadigital.com^$third-party (easylist.txt: 26332) -.meadigital.com -# ||mdn2015x4.com^$third-party (easylist.txt: 26331) -.mdn2015x4.com -# ||mdn2015x2.com^$third-party (easylist.txt: 26330) -.mdn2015x2.com -# ||mdn2015x1.com^$third-party (easylist.txt: 26329) -.mdn2015x1.com -# ||mdialog.com^$third-party (easylist.txt: 26328) -.mdialog.com -# ||mdadx.com^$third-party (easylist.txt: 26327) -.mdadx.com -# ||mdadvertising.net^$third-party (easylist.txt: 26326) -.mdadvertising.net -# ||mcdstorage.com^$third-party (easylist.txt: 26325) -.mcdstorage.com -# ||mcdomainalot.com^$third-party (easylist.txt: 26324) -.mcdomainalot.com -# ||mbn.com.ua^$third-party (easylist.txt: 26323) -.mbn.com.ua -# ||mb8e17f12.website^$third-party (easylist.txt: 26322) -.mb8e17f12.website -# ||mb57.com^$third-party (easylist.txt: 26321) -.mb57.com -# ||mb38.com^$third-party (easylist.txt: 26320) -.mb38.com -# ||mb104.com^$third-party (easylist.txt: 26319) -.mb104.com -# ||mb102.com^$third-party (easylist.txt: 26318) -.mb102.com -# ||mb01.com^$third-party (easylist.txt: 26317) -.mb01.com -# ||maxserving.com^$third-party (easylist.txt: 26316) -.maxserving.com -# ||maudau.com^$third-party (easylist.txt: 26315) -.maudau.com -# ||matiro.com^$third-party (easylist.txt: 26314) -.matiro.com -# ||mastertraffic.cn^$third-party (easylist.txt: 26313) -.mastertraffic.cn -# ||masternal.com^$third-party (easylist.txt: 26312) -.masternal.com -# ||masterads.org^$third-party (easylist.txt: 26311) -.masterads.org -# ||martiniadnetwork.com^$third-party (easylist.txt: 26310) -.martiniadnetwork.com -# ||marsads.com^$third-party (easylist.txt: 26309) -.marsads.com -# ||marketoring.com^$third-party (easylist.txt: 26308) -.marketoring.com -# ||marketnetwork.com^$third-party (easylist.txt: 26307) -.marketnetwork.com -# ||marketleverage.com^$third-party (easylist.txt: 26306) -.marketleverage.com -# ||marketingenhanced.com^$third-party (easylist.txt: 26305) -.marketingenhanced.com -# ||markethealth.com^$third-party (easylist.txt: 26304) -.markethealth.com -# ||marketgid.com^$third-party (easylist.txt: 26303) -.marketgid.com -# ||marketfly.net^$third-party (easylist.txt: 26302) -.marketfly.net -# ||marketbanker.com^$third-party (easylist.txt: 26301) -.marketbanker.com -# ||marfeel.com^$third-party (easylist.txt: 26300) -.marfeel.com -# ||marbil24.co.za^$third-party (easylist.txt: 26299) -.marbil24.co.za -# ||mangoforex.com^$third-party (easylist.txt: 26298) -.mangoforex.com -# ||mallsponsor.com^$third-party (easylist.txt: 26297) -.mallsponsor.com -# ||makemoneymakemoney.net^$third-party (easylist.txt: 26296) -.makemoneymakemoney.net -# ||makecashtakingsurveys.biz^$third-party (easylist.txt: 26295) -.makecashtakingsurveys.biz -# ||mainroll.com^$third-party (easylist.txt: 26294) -.mainroll.com -# ||mainadv.com^$third-party (easylist.txt: 26293) -.mainadv.com -# ||mailmarketingmachine.com^$third-party (easylist.txt: 26292) -.mailmarketingmachine.com -# ||magnetisemedia.com^$third-party (easylist.txt: 26291) -.magnetisemedia.com -# ||magicalled.info^$third-party (easylist.txt: 26290) -.magicalled.info -# ||madsone.com^$third-party (easylist.txt: 26289) -.madsone.com -# ||madserving.com^$third-party (easylist.txt: 26288) -.madserving.com -# ||madadsmedia.com^$third-party (easylist.txt: 26287) -.madadsmedia.com -# ||machings.com^^$third-party (easylist.txt: 26286) -.machings.com/[^\w%.-] -# ||mabirol.com^$third-party (easylist.txt: 26285) -.mabirol.com -# ||m5prod.net^$third-party (easylist.txt: 26284) -.m5prod.net -# ||m57ku6sm.com^$third-party (easylist.txt: 26283) -.m57ku6sm.com -# ||m4pub.com^$third-party (easylist.txt: 26282) -.m4pub.com -# ||m2pub.com^$third-party (easylist.txt: 26281) -.m2pub.com -# ||m1.fwmrm.net^$object-subrequest,third-party (easylist.txt: 26280) -.m1.fwmrm.net -# ||lzjl.com^$third-party (easylist.txt: 26279) -.lzjl.com -# ||lx2rv.com^$third-party (easylist.txt: 26278) -.lx2rv.com -# ||luxup.ru^$third-party (easylist.txt: 26277) -.luxup.ru -# ||luxbetaffiliates.com.au^$third-party (easylist.txt: 26276) -.luxbetaffiliates.com.au -# ||luxadv.com^$third-party (easylist.txt: 26275) -.luxadv.com -# ||lushcrush.com^$third-party (easylist.txt: 26274) -.lushcrush.com -# ||lucidmedia.com^$third-party (easylist.txt: 26273) -.lucidmedia.com -# ||ltassrv.com/serve/ (easylist.txt: 26272) -.ltassrv.com/serve/ -# ||ltassrv.com/goads.swf (easylist.txt: 26271) -.ltassrv.com/goads\.swf -# ||ltassrv.com.s3.amazonaws.com^$third-party (easylist.txt: 26270) -.ltassrv.com.s3.amazonaws.com -# ||lqw.me^$third-party (easylist.txt: 26269) -.lqw.me -# ||lqcdn.com^$third-party (easylist.txt: 26268) -.lqcdn.com -# ||loxtk.com^$third-party (easylist.txt: 26267) -.loxtk.com -# ||love-banner.com^$third-party (easylist.txt: 26266) -.love-banner.com -# ||lotteryaffiliates.com^$third-party (easylist.txt: 26265) -.lotteryaffiliates.com -# ||lostelephants.xyz^$third-party (easylist.txt: 26264) -.lostelephants.xyz -# ||losomy.com^$third-party (easylist.txt: 26263) -.losomy.com -# ||loseads.eu^$third-party (easylist.txt: 26262) -.loseads.eu -# ||lose-ads.de^$third-party (easylist.txt: 26261) -.lose-ads.de -# ||looneynetwork.com^$third-party (easylist.txt: 26260) -.looneynetwork.com -# ||looneyads.com^$third-party (easylist.txt: 26259) -.looneyads.com -# ||looksmart.com^$third-party (easylist.txt: 26258) -.looksmart.com -# ||lookit-quick.com^$third-party (easylist.txt: 26257) -.lookit-quick.com -# ||loodyas.com^$third-party (easylist.txt: 26256) -.loodyas.com -# ||logo-net.co.uk^$third-party (easylist.txt: 26255) -.logo-net.co.uk -# ||lockscalecompare.com^$third-party (easylist.txt: 26254) -.lockscalecompare.com -# ||lockhosts.com^$third-party (easylist.txt: 26253) -.lockhosts.com -# ||lockerdome.com^$third-party (easylist.txt: 26252) -.lockerdome.com -# ||localsearch24.co.uk^$third-party (easylist.txt: 26251) -.localsearch24.co.uk -# ||localedgemedia.com^$third-party (easylist.txt: 26250) -.localedgemedia.com -# ||localadbuy.com^$third-party (easylist.txt: 26249) -.localadbuy.com -# ||loading-resource.com^$third-party (easylist.txt: 26248) -.loading-resource.com -# ||lndjj.com^$third-party (easylist.txt: 26247) -.lndjj.com -# ||liveuniversenetwork.com^$third-party (easylist.txt: 26246) -.liveuniversenetwork.com -# ||liverail.com^$~object-subrequest,third-party (easylist.txt: 26245) -.liverail.com -# ||liveadserver.net^$third-party (easylist.txt: 26244) -.liveadserver.net -# ||liveadoptimizer.com^$third-party (easylist.txt: 26243) -.liveadoptimizer.com -# ||liveadexchanger.com^$third-party (easylist.txt: 26242) -.liveadexchanger.com -# ||listingcafe.com^$third-party (easylist.txt: 26241) -.listingcafe.com -# ||liqwid.net^$third-party (easylist.txt: 26240) -.liqwid.net -# ||linkz.net^$third-party (easylist.txt: 26239) -.linkz.net -# ||linkybank.com^$third-party (easylist.txt: 26238) -.linkybank.com -# ||linkworth.com^$third-party (easylist.txt: 26237) -.linkworth.com -# ||linkwash.de^$third-party (easylist.txt: 26236) -.linkwash.de -# ||linkstorm.net^$third-party (easylist.txt: 26235) -.linkstorm.net -# ||linksmart.com^$third-party (easylist.txt: 26234) -.linksmart.com -# ||linkshowoff.com^$third-party (easylist.txt: 26233) -.linkshowoff.com -# ||links.io^$third-party (easylist.txt: 26232) -.links.io -# ||linkreferral.com^$third-party (easylist.txt: 26231) -.linkreferral.com -# ||linkoffers.net^$third-party (easylist.txt: 26230) -.linkoffers.net -# ||linkmads.com^$third-party (easylist.txt: 26229) -.linkmads.com -# ||linkgrand.com^$third-party (easylist.txt: 26228) -.linkgrand.com -# ||linkexchangers.net^$third-party (easylist.txt: 26227) -.linkexchangers.net -# ||linkexchange.com^$third-party (easylist.txt: 26226) -.linkexchange.com -# ||linkelevator.com^$third-party (easylist.txt: 26225) -.linkelevator.com -# ||linkconnector.com^$third-party (easylist.txt: 26224) -.linkconnector.com -# ||linkclicks.com^$third-party (easylist.txt: 26223) -.linkclicks.com -# ||linkbuddies.com^$third-party (easylist.txt: 26222) -.linkbuddies.com -# ||linicom.co.il^$third-party (easylist.txt: 26221) -.linicom.co.il -# ||lightningcast.net^$~object-subrequest,third-party (easylist.txt: 26220) -.lightningcast.net -# ||lightad.co.kr^$third-party (easylist.txt: 26219) -.lightad.co.kr -# ||ligational.com^$third-party (easylist.txt: 26218) -.ligational.com -# ||liftdna.com^$third-party (easylist.txt: 26217) -.liftdna.com -# ||lgse.com^$third-party (easylist.txt: 26216) -.lgse.com -# ||lfstmedia.com^$third-party (easylist.txt: 26215) -.lfstmedia.com -# ||letsgoshopping.tk^$third-party (easylist.txt: 26214) -.letsgoshopping.tk -# ||letilyadothejob.com^$third-party (easylist.txt: 26213) -.letilyadothejob.com -# ||legisland.net^$third-party (easylist.txt: 26212) -.legisland.net -# ||leetmedia.com^$third-party (easylist.txt: 26211) -.leetmedia.com -# ||leadmediapartners.com^$third-party (easylist.txt: 26210) -.leadmediapartners.com -# ||leaderpub.fr^$third-party (easylist.txt: 26209) -.leaderpub.fr -# ||leadcola.com^$third-party (easylist.txt: 26208) -.leadcola.com -# ||leadbolt.net^$third-party (easylist.txt: 26207) -.leadbolt.net -# ||leadadvert.info^$third-party (easylist.txt: 26206) -.leadadvert.info -# ||leadad.mobi^$third-party (easylist.txt: 26205) -.leadad.mobi -# ||leadacceptor.com^$third-party (easylist.txt: 26204) -.leadacceptor.com -# ||lduhtrp.net^$third-party (easylist.txt: 26203) -.lduhtrp.net -# ||ldgateway.com^$third-party (easylist.txt: 26202) -.ldgateway.com -# ||lcl2adserver.com^$third-party (easylist.txt: 26201) -.lcl2adserver.com -# ||lbm1.com^$third-party (easylist.txt: 26200) -.lbm1.com -# ||lazynerd.info^$third-party (easylist.txt: 26199) -.lazynerd.info -# ||layerwelt.com^$third-party (easylist.txt: 26198) -.layerwelt.com -# ||layerloop.com^$third-party (easylist.txt: 26197) -.layerloop.com -# ||layer-ad.org^$third-party (easylist.txt: 26196) -.layer-ad.org -# ||launchbit.com^$third-party (easylist.txt: 26195) -.launchbit.com -# ||laserhairremovalstore.com^$third-party (easylist.txt: 26194) -.laserhairremovalstore.com -# ||largestable.com^$third-party (easylist.txt: 26193) -.largestable.com -# ||lanistaconcepts.com^$third-party (easylist.txt: 26192) -.lanistaconcepts.com -# ||lakidar.net^$third-party (easylist.txt: 26191) -.lakidar.net -# ||lakequincy.com^$third-party (easylist.txt: 26190) -.lakequincy.com -# ||ladbrokesaffiliates.com.au^$third-party (easylist.txt: 26189) -.ladbrokesaffiliates.com.au -# ||l3op.info^$third-party (easylist.txt: 26188) -.l3op.info -# ||kumpulblogger.com^$third-party (easylist.txt: 26187) -.kumpulblogger.com -# ||kromeleta.ru^$third-party (easylist.txt: 26186) -.kromeleta.ru -# ||kr3vinsx.com^$third-party (easylist.txt: 26185) -.kr3vinsx.com -# ||kqzyfj.com^$third-party (easylist.txt: 26184) -.kqzyfj.com -# ||kovla.com^$third-party (easylist.txt: 26183) -.kovla.com -# ||korrelate.net^$third-party (easylist.txt: 26182) -.korrelate.net -# ||koocash.com^$third-party (easylist.txt: 26181) -.koocash.com -# ||kontextua.com^$third-party (easylist.txt: 26180) -.kontextua.com -# ||komoona.com^$third-party (easylist.txt: 26179) -.komoona.com -# ||kolition.com^$third-party (easylist.txt: 26178) -.kolition.com -# ||knowd.com^$third-party (easylist.txt: 26177) -.knowd.com -# ||knorex.asia^$third-party (easylist.txt: 26176) -.knorex.asia -# ||klonedaset.org^$third-party (easylist.txt: 26175) -.klonedaset.org -# ||kloapers.com^$third-party (easylist.txt: 26174) -.kloapers.com -# ||klixfeed.com^$third-party (easylist.txt: 26173) -.klixfeed.com -# ||klipmart.com^$third-party (easylist.txt: 26172) -.klipmart.com -# ||klikvip.com^$third-party (easylist.txt: 26171) -.klikvip.com -# ||kliksaya.com^$third-party (easylist.txt: 26170) -.kliksaya.com -# ||klikadvertising.com^$third-party (easylist.txt: 26169) -.klikadvertising.com -# ||kjgh5o.com^$third-party (easylist.txt: 26168) -.kjgh5o.com -# ||kitnmedia.com^$third-party (easylist.txt: 26167) -.kitnmedia.com -# ||kiosked.com^$third-party (easylist.txt: 26166) -.kiosked.com -# ||kintokup.com^$third-party (easylist.txt: 26165) -.kintokup.com -# ||kinley.com^$third-party (easylist.txt: 26164) -.kinley.com -# ||kikuzip.com^$third-party (easylist.txt: 26163) -.kikuzip.com -# ||keywordblocks.com^$third-party (easylist.txt: 26162) -.keywordblocks.com -# ||keyrunmodel.com^$third-party (easylist.txt: 26161) -.keyrunmodel.com -# ||ketoo.com^$third-party (easylist.txt: 26160) -.ketoo.com -# ||kerg.net^$third-party (easylist.txt: 26159) -.kerg.net -# ||kehalim.com^$third-party (easylist.txt: 26158) -.kehalim.com -# ||keewurd.com^$third-party (easylist.txt: 26157) -.keewurd.com -# ||kavanga.ru^$third-party (easylist.txt: 26156) -.kavanga.ru -# ||kantarmedia.com^$third-party (easylist.txt: 26155) -.kantarmedia.com -# ||kanoodle.com^$third-party (easylist.txt: 26154) -.kanoodle.com -# ||k0z09okc.com^$third-party (easylist.txt: 26153) -.k0z09okc.com -# ||jyvtidkx.com^$third-party (easylist.txt: 26152) -.jyvtidkx.com -# ||jwaavsze.com^$third-party (easylist.txt: 26151) -.jwaavsze.com -# ||justrelevant.com^$third-party (easylist.txt: 26150) -.justrelevant.com -# ||jursp.com^$third-party (easylist.txt: 26149) -.jursp.com -# ||jumptap.com^$third-party (easylist.txt: 26148) -.jumptap.com -# ||jumpelead.com^$third-party (easylist.txt: 26147) -.jumpelead.com -# ||jumia.com.ng^$third-party (easylist.txt: 26146) -.jumia.com.ng -# ||jumbolt.ru^$third-party (easylist.txt: 26145) -.jumbolt.ru -# ||jumboaffiliates.com^$third-party (easylist.txt: 26144) -.jumboaffiliates.com -# ||jujzh9va.com^$third-party (easylist.txt: 26143) -.jujzh9va.com -# ||jujuads.com^$third-party (easylist.txt: 26142) -.jujuads.com -# ||juiceadv.net^$third-party (easylist.txt: 26141) -.juiceadv.net -# ||juiceadv.com^$third-party (easylist.txt: 26140) -.juiceadv.com -# ||judicated.com^$third-party (easylist.txt: 26139) -.judicated.com -# ||jtrakk.com^$third-party (easylist.txt: 26138) -.jtrakk.com -# ||jssearch.net^$third-party (easylist.txt: 26137) -.jssearch.net -# ||jsretra.com^$third-party (easylist.txt: 26136) -.jsretra.com -# ||jsfeedadsget.com^$third-party (easylist.txt: 26135) -.jsfeedadsget.com -# ||jscount.com^$third-party (easylist.txt: 26134) -.jscount.com -# ||js.cdn.ac^$third-party (easylist.txt: 26133) -.js.cdn.ac -# ||jque.net^$third-party (easylist.txt: 26132) -.jque.net -# ||joytocash.com^$third-party (easylist.txt: 26131) -.joytocash.com -# ||jobtarget.com^$third-party (easylist.txt: 26130) -.jobtarget.com -# ||jobsyndicate.com^$third-party (easylist.txt: 26129) -.jobsyndicate.com -# ||jo7cofh3.com^$third-party (easylist.txt: 26128) -.jo7cofh3.com -# ||jmp9.com^$third-party (easylist.txt: 26127) -.jmp9.com -# ||jizzontoy.com^$third-party (easylist.txt: 26126) -.jizzontoy.com -# ||jiwire.com^$third-party (easylist.txt: 26125) -.jiwire.com -# ||jivox.com^$third-party (easylist.txt: 26124) -.jivox.com -# ||jiawen88.com^$third-party (easylist.txt: 26123) -.jiawen88.com -# ||jemmgroup.com^$third-party (easylist.txt: 26122) -.jemmgroup.com -# ||jeetyetmedia.com^$third-party (easylist.txt: 26121) -.jeetyetmedia.com -# ||jdproject.net^$third-party (easylist.txt: 26120) -.jdproject.net -# ||jdoqocy.com^$third-party (easylist.txt: 26119) -.jdoqocy.com -# ||jbrlsr.com^$third-party (easylist.txt: 26118) -.jbrlsr.com -# ||jangonetwork.com^$third-party (easylist.txt: 26117) -.jangonetwork.com -# ||jango.com^$third-party (easylist.txt: 26116) -.jango.com -# ||jadcenter.com^$third-party (easylist.txt: 26115) -.jadcenter.com -# ||j2ef76da3.website^$third-party (easylist.txt: 26114) -.j2ef76da3.website -# ||izeads.com^$third-party (easylist.txt: 26113) -.izeads.com -# ||ixnp.com^$third-party (easylist.txt: 26112) -.ixnp.com -# ||iwantmoar.net^$third-party (easylist.txt: 26111) -.iwantmoar.net -# ||iv.doubleclick.net^$third-party (easylist.txt: 26110) -.iv.doubleclick.net -# ||iu16wmye.com^$third-party (easylist.txt: 26109) -.iu16wmye.com -# ||itrengia.com^$third-party (easylist.txt: 26108) -.itrengia.com -# ||isparkmedia.com^$third-party (easylist.txt: 26107) -.isparkmedia.com -# ||isohits.com^$third-party (easylist.txt: 26106) -.isohits.com -# ||isapi.solutions^$third-party (easylist.txt: 26105) -.isapi.solutions -# ||ipromote.com^$third-party (easylist.txt: 26104) -.ipromote.com -# ||ipredictive.com^$third-party (easylist.txt: 26103) -.ipredictive.com -# ||ip-adress.com^$third-party (easylist.txt: 26102) -.ip-adress.com -# ||inviziads.com^$third-party (easylist.txt: 26101) -.inviziads.com -# ||investingchannel.com^$third-party (easylist.txt: 26100) -.investingchannel.com -# ||inuxu.co.in^$third-party (easylist.txt: 26099) -.inuxu.co.in -# ||inuxu.biz^$third-party (easylist.txt: 26098) -.inuxu.biz -# ||inuvo.com^$third-party (easylist.txt: 26097) -.inuvo.com -# ||intuneads.com^$third-party (easylist.txt: 26096) -.intuneads.com -# ||inttrax.com^$third-party (easylist.txt: 26095) -.inttrax.com -# ||intopicmedia.com^$third-party (easylist.txt: 26094) -.intopicmedia.com -# ||intgr.net^$third-party (easylist.txt: 26093) -.intgr.net -# ||intextual.net^$third-party (easylist.txt: 26092) -.intextual.net -# ||intextscript.com^$third-party (easylist.txt: 26091) -.intextscript.com -# ||intextdirect.com^$third-party (easylist.txt: 26090) -.intextdirect.com -# ||interworksmedia.co.kr^$third-party (easylist.txt: 26089) -.interworksmedia.co.kr -# ||interpolls.com^$third-party (easylist.txt: 26088) -.interpolls.com -# ||internetadbrokers.com^$third-party (easylist.txt: 26087) -.internetadbrokers.com -# ||intermarkets.net^$third-party (easylist.txt: 26086) -.intermarkets.net -# ||interesting.cc^$third-party (easylist.txt: 26085) -.interesting.cc -# ||interestably.com^$third-party (easylist.txt: 26084) -.interestably.com -# ||interclick.com^$third-party (easylist.txt: 26083) -.interclick.com -# ||interactivespot.net^$third-party (easylist.txt: 26082) -.interactivespot.net -# ||intentmedia.net^$third-party (easylist.txt: 26081) -.intentmedia.net -# ||intenthq.com^$third-party (easylist.txt: 26080) -.intenthq.com -# ||intellitxt.com^$third-party (easylist.txt: 26079) -.intellitxt.com -# ||intellibanners.com^$third-party (easylist.txt: 26078) -.intellibanners.com -# ||integral-marketing.com^$third-party (easylist.txt: 26077) -.integral-marketing.com -# ||instivate.com^$third-party (easylist.txt: 26076) -.instivate.com -# ||instinctiveads.com^$third-party (easylist.txt: 26075) -.instinctiveads.com -# ||instantdollarz.com^$third-party (easylist.txt: 26074) -.instantdollarz.com -# ||instantbannercreator.com^$third-party (easylist.txt: 26073) -.instantbannercreator.com -# ||insta-cash.net^$third-party (easylist.txt: 26072) -.insta-cash.net -# ||inspiringsweater.xyz^$third-party (easylist.txt: 26071) -.inspiringsweater.xyz -# ||inskinmedia.com^$~stylesheet,third-party (easylist.txt: 26070) -.inskinmedia.com -# ||inskinad.com^$third-party (easylist.txt: 26069) -.inskinad.com -# ||insitesystems.com^$third-party (easylist.txt: 26068) -.insitesystems.com -# ||insitepromotion.com^$third-party (easylist.txt: 26067) -.insitepromotion.com -# ||insightexpressai.com^$third-party (easylist.txt: 26066) -.insightexpressai.com -# ||insightexpress.com^$third-party (easylist.txt: 26065) -.insightexpress.com -# ||innovid.com^$third-party (easylist.txt: 26064) -.innovid.com -# ||innity.net^$third-party (easylist.txt: 26063) -.innity.net -# ||innity.com^$third-party (easylist.txt: 26062) -.innity.com -# ||inktad.com^$third-party (easylist.txt: 26061) -.inktad.com -# ||ingame.ad^$third-party (easylist.txt: 26060) -.ingame.ad -# ||infra-ad.com^$third-party (easylist.txt: 26059) -.infra-ad.com -# ||information-sale.com^$third-party (easylist.txt: 26058) -.information-sale.com -# ||infolinks.com^$third-party (easylist.txt: 26057) -.infolinks.com -# ||info4.a7.org^$third-party (easylist.txt: 26056) -.info4.a7.org -# ||influads.com^$third-party (easylist.txt: 26055) -.influads.com -# ||infinityads.com^$third-party (easylist.txt: 26054) -.infinityads.com -# ||infinite-ads.com^$third-party (easylist.txt: 26053) -.infinite-ads.com -# ||infectiousmedia.com^$third-party (easylist.txt: 26052) -.infectiousmedia.com -# ||inetinteractive.com^$third-party (easylist.txt: 26051) -.inetinteractive.com -# ||inentasky.com^$third-party (easylist.txt: 26050) -.inentasky.com -# ||industrybrains.com^$third-party (easylist.txt: 26049) -.industrybrains.com -# ||indofad.com^$third-party (easylist.txt: 26048) -.indofad.com -# ||indieclick.com^$third-party (easylist.txt: 26047) -.indieclick.com -# ||indicate.to^$third-party (easylist.txt: 26046) -.indicate.to -# ||indianlinkexchange.com^$third-party (easylist.txt: 26045) -.indianlinkexchange.com -# ||indianbannerexchange.com^$third-party (easylist.txt: 26044) -.indianbannerexchange.com -# ||indiads.com^$third-party (easylist.txt: 26043) -.indiads.com -# ||indiabanner.com^$third-party (easylist.txt: 26042) -.indiabanner.com -# ||indexww.com^$third-party (easylist.txt: 26041) -.indexww.com -# ||increase-marketing.com^$third-party (easylist.txt: 26040) -.increase-marketing.com -# ||incomeliberation.com^$third-party (easylist.txt: 26039) -.incomeliberation.com -# ||incentaclick.com^$third-party (easylist.txt: 26038) -.incentaclick.com -# ||in-appadvertising.com^$third-party (easylist.txt: 26037) -.in-appadvertising.com -# ||impressionvalue.mobi^$third-party (easylist.txt: 26036) -.impressionvalue.mobi -# ||impressionperformance.biz^$third-party (easylist.txt: 26035) -.impressionperformance.biz -# ||impressiondesk.com^$third-party (easylist.txt: 26034) -.impressiondesk.com -# ||impressioncontent.info^$third-party (easylist.txt: 26033) -.impressioncontent.info -# ||impressionaffiliate.mobi^$third-party (easylist.txt: 26032) -.impressionaffiliate.mobi -# ||impressionaffiliate.com^$third-party (easylist.txt: 26031) -.impressionaffiliate.com -# ||impresionesweb.com^$third-party (easylist.txt: 26030) -.impresionesweb.com -# ||implix.com^$third-party (easylist.txt: 26029) -.implix.com -# ||impactradius.com^$third-party (easylist.txt: 26028) -.impactradius.com -# ||impact-ad.jp^$third-party (easylist.txt: 26027) -.impact-ad.jp -# ||imp*.tradedoubler.com^$third-party (easylist.txt: 26026) -.imp*./.*\.tradedoubler\.com[^\w%.-] -.imp*.tradedoubler.com -# ||imonomy.com^$third-party (easylist.txt: 26025) -.imonomy.com -# ||imiclk.com^$third-party (easylist.txt: 26024) -.imiclk.com -# ||imho.ru^$third-party (easylist.txt: 26023) -.imho.ru -# ||imgwebfeed.com^$third-party (easylist.txt: 26022) -.imgwebfeed.com -# ||imgsniper.com^$third-party (easylist.txt: 26021) -.imgsniper.com -# ||imglt.com^$third-party (easylist.txt: 26020) -.imglt.com -# ||imgfeedget.com^$third-party (easylist.txt: 26019) -.imgfeedget.com -# ||img-giganto.net^$third-party (easylist.txt: 26018) -.img-giganto.net -# ||imediarevenue.com^$third-party (easylist.txt: 26017) -.imediarevenue.com -# ||imediaaudiences.com^$third-party (easylist.txt: 26016) -.imediaaudiences.com -# ||imedia.co.il^$third-party (easylist.txt: 26015) -.imedia.co.il -# ||imasdk.googleapis.com^$third-party (easylist.txt: 26014) -.imasdk.googleapis.com -# ||imageadnet.com^$third-party (easylist.txt: 26013) -.imageadnet.com -# ||ikzikistheking.com^$third-party (easylist.txt: 26012) -.ikzikistheking.com -# ||ignitioninstaller.com^$third-party (easylist.txt: 26011) -.ignitioninstaller.com -# ||igloohq.com^$third-party (easylist.txt: 26010) -.igloohq.com -# ||igameunion.com^$third-party (easylist.txt: 26009) -.igameunion.com -# ||iframe.mediaplazza.com^$third-party (easylist.txt: 26008) -.iframe.mediaplazza.com -# ||idownloadgalore.com^$third-party (easylist.txt: 26007) -.idownloadgalore.com -# ||identads.com^$third-party (easylist.txt: 26006) -.identads.com -# ||idealmedia.com^$third-party (easylist.txt: 26005) -.idealmedia.com -# ||icqadvnew.com^$third-party (easylist.txt: 26004) -.icqadvnew.com -# ||icdirect.com^$third-party (easylist.txt: 26003) -.icdirect.com -# ||ibryte.com^$third-party (easylist.txt: 26002) -.ibryte.com -# ||ibatom.com^$third-party (easylist.txt: 26001) -.ibatom.com -# ||ibannerexchange.com^$third-party (easylist.txt: 26000) -.ibannerexchange.com -# ||iasrv.com^$third-party (easylist.txt: 25999) -.iasrv.com -# ||iasbetaffiliates.com^$third-party (easylist.txt: 25998) -.iasbetaffiliates.com -# ||iamediaserve.com^$third-party (easylist.txt: 25997) -.iamediaserve.com -# ||i.skimresources.com^$third-party (easylist.txt: 25996) -.i.skimresources.com -# ||i-media.co.nz^$third-party (easylist.txt: 25995) -.i-media.co.nz -# ||hyperwebads.com^$third-party (easylist.txt: 25994) -.hyperwebads.com -# ||hypervre.com^$third-party (easylist.txt: 25993) -.hypervre.com -# ||hypertrackeraff.com^$third-party (easylist.txt: 25992) -.hypertrackeraff.com -# ||hyperlinksecure.com^$third-party (easylist.txt: 25991) -.hyperlinksecure.com -# ||hypemakers.net^$third-party (easylist.txt: 25990) -.hypemakers.net -# ||hypeads.org^$third-party (easylist.txt: 25989) -.hypeads.org -# ||hype-ads.com^$third-party (easylist.txt: 25988) -.hype-ads.com -# ||huzonico.com^$third-party (easylist.txt: 25987) -.huzonico.com -# ||httpsecurity.org^$third-party (easylist.txt: 25986) -.httpsecurity.org -# ||httpool.com^$third-party (easylist.txt: 25985) -.httpool.com -# ||htmlhubing.xyz^$third-party (easylist.txt: 25984) -.htmlhubing.xyz -# ||hstpnetwork.com^$third-party (easylist.txt: 25983) -.hstpnetwork.com -# ||hsslx.com^$third-party (easylist.txt: 25982) -.hsslx.com -# ||hplose.de^$third-party (easylist.txt: 25981) -.hplose.de -# ||hover.in^$third-party (easylist.txt: 25980) -.hover.in -# ||hotwords.com^$third-party (easylist.txt: 25979) -.hotwords.com -# ||hotwords.com.mx^$third-party (easylist.txt: 25978) -.hotwords.com.mx -# ||hotwords.com.br^$third-party (easylist.txt: 25977) -.hotwords.com.br -# ||hotptp.com^$third-party (easylist.txt: 25976) -.hotptp.com -# ||hotkeys.com^$third-party (easylist.txt: 25975) -.hotkeys.com -# ||hotfeed.net^$third-party (easylist.txt: 25974) -.hotfeed.net -# ||hotelscombined.com^$third-party (easylist.txt: 25973) -.hotelscombined.com -# ||hotelscombined.com.au^$third-party (easylist.txt: 25972) -.hotelscombined.com.au -# ||hot-hits.us^$third-party (easylist.txt: 25971) -.hot-hits.us -# ||hosticanaffiliate.com^$third-party (easylist.txt: 25970) -.hosticanaffiliate.com -# ||horyzon-media.com^$third-party (easylist.txt: 25969) -.horyzon-media.com -# ||horsered.com^$third-party (easylist.txt: 25968) -.horsered.com -# ||horse-racing-affiliate-program.co.uk^$third-party (easylist.txt: 25967) -.horse-racing-affiliate-program.co.uk -# ||hopfeed.com^$third-party (easylist.txt: 25966) -.hopfeed.com -# ||hoomezip.biz^$third-party (easylist.txt: 25965) -.hoomezip.biz -# ||holidaytravelguide.org^$third-party (easylist.txt: 25964) -.holidaytravelguide.org -# ||holdingprice.net^$third-party (easylist.txt: 25963) -.holdingprice.net -# ||hokaybo.com^$third-party (easylist.txt: 25962) -.hokaybo.com -# ||hlads.com^$third-party (easylist.txt: 25961) -.hlads.com -# ||hitwastedgarden.com^$third-party (easylist.txt: 25960) -.hitwastedgarden.com -# ||hits.sys.lv^$third-party (easylist.txt: 25959) -.hits.sys.lv -# ||hit-now.com^$third-party (easylist.txt: 25958) -.hit-now.com -# ||histians.com^$third-party (easylist.txt: 25957) -.histians.com -# ||hiplair.com^$third-party (easylist.txt: 25956) -.hiplair.com -# ||himediadx.com^$third-party (easylist.txt: 25955) -.himediadx.com -# ||himediads.com^$third-party (easylist.txt: 25954) -.himediads.com -# ||hilltopads.net^$third-party (easylist.txt: 25953) -.hilltopads.net -# ||hijacksystem.com^$third-party (easylist.txt: 25952) -.hijacksystem.com -# ||hiadone.com^$third-party (easylist.txt: 25951) -.hiadone.com -# ||hgdat.com^$third-party (easylist.txt: 25950) -.hgdat.com -# ||hexagram.com^$third-party (easylist.txt: 25949) -.hexagram.com -# ||helloreverb.com^$third-party (easylist.txt: 25948) -.helloreverb.com -# ||hebiichigo.com^$third-party (easylist.txt: 25947) -.hebiichigo.com -# ||healthcarestars.com^$third-party (easylist.txt: 25946) -.healthcarestars.com -# ||healthaffiliatesnetwork.com^$third-party (easylist.txt: 25945) -.healthaffiliatesnetwork.com -# ||headup.com^$third-party (easylist.txt: 25944) -.headup.com -# ||hdvidcodecs.com^$third-party (easylist.txt: 25943) -.hdvidcodecs.com -# ||hdvid-codecs-dl.net^$third-party (easylist.txt: 25942) -.hdvid-codecs-dl.net -# ||hdplayer-download.com^$third-party (easylist.txt: 25941) -.hdplayer-download.com -# ||hd-plugin.com^$third-party (easylist.txt: 25940) -.hd-plugin.com -# ||hb-247.com^$third-party (easylist.txt: 25939) -.hb-247.com -# ||havetohave.com^$third-party (easylist.txt: 25938) -.havetohave.com -# ||havamedia.net^$third-party (easylist.txt: 25937) -.havamedia.net -# ||harrenmedianetwork.com^$third-party (easylist.txt: 25936) -.harrenmedianetwork.com -# ||happilyswitching.net^$third-party (easylist.txt: 25935) -.happilyswitching.net -# ||hanaprop.com^$third-party (easylist.txt: 25934) -.hanaprop.com -# ||halogennetwork.com^$third-party (easylist.txt: 25933) -.halogennetwork.com -# ||halfpriceozarks.com^$third-party (easylist.txt: 25932) -.halfpriceozarks.com -# ||h12-media.com^$third-party (easylist.txt: 25931) -.h12-media.com -# ||h-images.net^$third-party (easylist.txt: 25930) -.h-images.net -# ||gx101.com^$third-party (easylist.txt: 25929) -.gx101.com -# ||gwallet.com^$third-party (easylist.txt: 25928) -.gwallet.com -# ||gururevenue.com^$third-party (easylist.txt: 25927) -.gururevenue.com -# ||gunpartners.com^$third-party (easylist.txt: 25926) -.gunpartners.com -# ||gumgum.com^$third-party (easylist.txt: 25925) -.gumgum.com -# ||guitaralliance.com^$third-party (easylist.txt: 25924) -.guitaralliance.com -# ||guardiandigitalcomparison.co.uk^$third-party (easylist.txt: 25923) -.guardiandigitalcomparison.co.uk -# ||gscsystemwithdarren.com^$third-party (easylist.txt: 25922) -.gscsystemwithdarren.com -# ||gscontxt.net^$third-party (easylist.txt: 25921) -.gscontxt.net -# ||grt03.com^$third-party (easylist.txt: 25920) -.grt03.com -# ||grt02.com^$third-party (easylist.txt: 25919) -.grt02.com -# ||groupcommerce.com^$third-party (easylist.txt: 25918) -.groupcommerce.com -# ||groovinads.com^$third-party (easylist.txt: 25917) -.groovinads.com -# ||grllopa.com^$third-party (easylist.txt: 25916) -.grllopa.com -# ||gripdownload.co^$third-party (easylist.txt: 25915) -.gripdownload.co -# ||gretzalz.com^$third-party (easylist.txt: 25914) -.gretzalz.com -# ||grenstia.com^$third-party (easylist.txt: 25913) -.grenstia.com -# ||greenlabelppc.com^$third-party (easylist.txt: 25912) -.greenlabelppc.com -# ||greenads.org^$third-party (easylist.txt: 25911) -.greenads.org -# ||gratisnetwork.com^$third-party (easylist.txt: 25910) -.gratisnetwork.com -# ||grapeshot.co.uk^$third-party (easylist.txt: 25909) -.grapeshot.co.uk -# ||grafpedia.com^$third-party (easylist.txt: 25908) -.grafpedia.com -# ||grabo.bg^$third-party (easylist.txt: 25907) -.grabo.bg -# ||grabmyads.com^$third-party (easylist.txt: 25906) -.grabmyads.com -# ||gpacalculatorhighschoolfree.com^$third-party (easylist.txt: 25905) -.gpacalculatorhighschoolfree.com -# ||goviral.hs.llnwd.net^$third-party (easylist.txt: 25904) -.goviral.hs.llnwd.net -# ||goviral-content.com^$third-party (easylist.txt: 25903) -.goviral-content.com -# ||governmenttrainingexchange.com^$third-party (easylist.txt: 25902) -.governmenttrainingexchange.com -# ||gourmetads.com^$third-party (easylist.txt: 25901) -.gourmetads.com -# ||gorgonkil.com^$third-party (easylist.txt: 25900) -.gorgonkil.com -# ||gopjn.com^$third-party (easylist.txt: 25899) -.gopjn.com -# ||googletagservices.com/tag/static/$third-party (easylist.txt: 25898) -.googletagservices.com/tag/static/ -# ||googletagservices.com/tag/js/gpt_$third-party (easylist.txt: 25897) -.googletagservices.com/tag/js/gpt_ -# ||googlesyndicatiion.com^$third-party (easylist.txt: 25896) -.googlesyndicatiion.com -# ||googleadservicepixel.com^$third-party (easylist.txt: 25895) -.googleadservicepixel.com -# ||goodadvertising.info^$third-party (easylist.txt: 25894) -.goodadvertising.info -# ||goodadvert.ru^$third-party (easylist.txt: 25893) -.goodadvert.ru -# ||gojoingscnow.com^$third-party (easylist.txt: 25892) -.gojoingscnow.com -# ||gogoplexer.com^$third-party (easylist.txt: 25891) -.gogoplexer.com -# ||goember.com^$third-party (easylist.txt: 25890) -.goember.com -# ||godspeaks.net^$third-party (easylist.txt: 25889) -.godspeaks.net -# ||goclickon.us^$third-party (easylist.txt: 25888) -.goclickon.us -# ||go2speed.org^$third-party (easylist.txt: 25887) -.go2speed.org -# ||go2media.org^$third-party (easylist.txt: 25886) -.go2media.org -# ||go2jump.org^$third-party (easylist.txt: 25885) -.go2jump.org -# ||gmads.net^$third-party (easylist.txt: 25884) -.gmads.net -# ||glowdot.com^$third-party (easylist.txt: 25883) -.glowdot.com -# ||globaltakeoff.net^$third-party (easylist.txt: 25882) -.globaltakeoff.net -# ||globalsuccessclub.com^$third-party (easylist.txt: 25881) -.globalsuccessclub.com -# ||globalinteractive.com^$third-party (easylist.txt: 25880) -.globalinteractive.com -# ||globaladv.net^$third-party (easylist.txt: 25879) -.globaladv.net -# ||globaladsales.com^$third-party (easylist.txt: 25878) -.globaladsales.com -# ||global-success-club.net^$third-party (easylist.txt: 25877) -.global-success-club.net -# ||glical.com^$third-party (easylist.txt: 25876) -.glical.com -# ||gklmedia.com^$third-party (easylist.txt: 25875) -.gklmedia.com -# ||gimiclub.com^$third-party (easylist.txt: 25874) -.gimiclub.com -# ||gigamega.su^$third-party (easylist.txt: 25873) -.gigamega.su -# ||giantaffiliates.com^$third-party (easylist.txt: 25872) -.giantaffiliates.com -# ||ggncpm.com^$third-party (easylist.txt: 25871) -.ggncpm.com -# ||gettipsz.info^$third-party (easylist.txt: 25870) -.gettipsz.info -# ||getthislistbuildingvideo.biz^$third-party (easylist.txt: 25869) -.getthislistbuildingvideo.biz -# ||getscorecash.com^$third-party (easylist.txt: 25868) -.getscorecash.com -# ||getgscfree.com^$third-party (easylist.txt: 25867) -.getgscfree.com -# ||getgamers.eu^$third-party (easylist.txt: 25866) -.getgamers.eu -# ||gestionpub.com^$third-party (easylist.txt: 25865) -.gestionpub.com -# ||geovisite.com^$third-party (easylist.txt: 25864) -.geovisite.com -# ||geopromos.com^$third-party (easylist.txt: 25863) -.geopromos.com -# ||geoipads.com^$third-party (easylist.txt: 25862) -.geoipads.com -# ||geo-idm.fr^$third-party (easylist.txt: 25861) -.geo-idm.fr -# ||genovesetacet.com^$third-party (easylist.txt: 25860) -.genovesetacet.com -# ||genieessp.com^$third-party (easylist.txt: 25859) -.genieessp.com -# ||geniad.net^$third-party (easylist.txt: 25858) -.geniad.net -# ||genesismedia.com^$third-party (easylist.txt: 25857) -.genesismedia.com -# ||genericsteps.com^$third-party (easylist.txt: 25856) -.genericsteps.com -# ||genericlink.com^$third-party (easylist.txt: 25855) -.genericlink.com -# ||gemineering.com^$third-party (easylist.txt: 25854) -.gemineering.com -# ||geld-internet-verdienen.net^$third-party (easylist.txt: 25853) -.geld-internet-verdienen.net -# ||gefhasio.com^$third-party (easylist.txt: 25852) -.gefhasio.com -# ||geek2us.net^$third-party (easylist.txt: 25851) -.geek2us.net -# ||geede.info^$third-party (easylist.txt: 25850) -.geede.info -# ||gdmdigital.com^$third-party (easylist.txt: 25849) -.gdmdigital.com -# ||gayadnetwork.com^$third-party (easylist.txt: 25848) -.gayadnetwork.com -# ||gatikus.com^$third-party (easylist.txt: 25847) -.gatikus.com -# ||gate-ru.com^$third-party (easylist.txt: 25846) -.gate-ru.com -# ||garvmedia.com^$third-party (easylist.txt: 25845) -.garvmedia.com -# ||garristo.com^$third-party (easylist.txt: 25844) -.garristo.com -# ||gannett.gcion.com^$third-party (easylist.txt: 25843) -.gannett.gcion.com -# ||gandrad.org^$third-party (easylist.txt: 25842) -.gandrad.org -# ||gan.doubleclick.net^$third-party (easylist.txt: 25841) -.gan.doubleclick.net -# ||gamesrevenue.com^$third-party (easylist.txt: 25840) -.gamesrevenue.com -# ||gamesbannerexchange.com^$third-party (easylist.txt: 25839) -.gamesbannerexchange.com -# ||gamersbanner.com^$third-party (easylist.txt: 25838) -.gamersbanner.com -# ||gamersad.com^$third-party (easylist.txt: 25837) -.gamersad.com -# ||gamehotus.com^$third-party (easylist.txt: 25836) -.gamehotus.com -# ||gamecetera.com^$third-party (easylist.txt: 25835) -.gamecetera.com -# ||gameads.com^$third-party (easylist.txt: 25834) -.gameads.com -# ||game-clicks.com^$third-party (easylist.txt: 25833) -.game-clicks.com -# ||game-advertising-online.com^$third-party (easylist.txt: 25832) -.game-advertising-online.com -# ||gambling-affiliation.com^$third-party (easylist.txt: 25831) -.gambling-affiliation.com -# ||galleyn.com^$third-party (easylist.txt: 25830) -.galleyn.com -# ||gainmoneyfast.com^$third-party (easylist.txt: 25829) -.gainmoneyfast.com -# ||gagenez.com^$third-party (easylist.txt: 25828) -.gagenez.com -# ||gagacon.com^$third-party (easylist.txt: 25827) -.gagacon.com -# ||g4whisperermedia.com^$third-party (easylist.txt: 25826) -.g4whisperermedia.com -# ||g-cash.biz^$third-party (easylist.txt: 25825) -.g-cash.biz -# ||fxyc0dwa.com^$third-party (easylist.txt: 25824) -.fxyc0dwa.com -# ||fxdepo.com^$third-party (easylist.txt: 25823) -.fxdepo.com -# ||fwmrm.net^$~object-subrequest,third-party (easylist.txt: 25822) -.fwmrm.net -# ||futureus.com^$third-party (easylist.txt: 25821) -.futureus.com -# ||futureresiduals.com^$third-party (easylist.txt: 25820) -.futureresiduals.com -# ||fusionads.net^$third-party (easylist.txt: 25819) -.fusionads.net -# ||funklicks.com^$third-party (easylist.txt: 25818) -.funklicks.com -# ||fulltraffic.net^$third-party (easylist.txt: 25817) -.fulltraffic.net -# ||ftv-publicite.fr^$third-party (easylist.txt: 25816) -.ftv-publicite.fr -# ||ftjcfx.com^$third-party (easylist.txt: 25815) -.ftjcfx.com -# ||fruitkings.com^$third-party (easylist.txt: 25814) -.fruitkings.com -# ||fromfriendswithlove.com^$third-party (easylist.txt: 25813) -.fromfriendswithlove.com -# ||friendlyduck.com^$third-party (easylist.txt: 25812) -.friendlyduck.com -# ||fresh8.co^$third-party (easylist.txt: 25811) -.fresh8.co -# ||freesoftwarelive.com^$third-party (easylist.txt: 25810) -.freesoftwarelive.com -# ||freeskreen.com^$third-party (easylist.txt: 25809) -.freeskreen.com -# ||freerotator.com^$third-party (easylist.txt: 25808) -.freerotator.com -# ||freepaidsurveyz.com^$third-party (easylist.txt: 25807) -.freepaidsurveyz.com -# ||freedownloadsoft.net^$third-party (easylist.txt: 25806) -.freedownloadsoft.net -# ||freecouponbiz.com^$third-party (easylist.txt: 25805) -.freecouponbiz.com -# ||freebiesurveys.com^$third-party (easylist.txt: 25804) -.freebiesurveys.com -# ||freebannerswap.co.uk^$third-party (easylist.txt: 25803) -.freebannerswap.co.uk -# ||frameptp.com^$third-party (easylist.txt: 25802) -.frameptp.com -# ||forrestersurveys.com^$third-party (easylist.txt: 25801) -.forrestersurveys.com -# ||forpyke.com^$third-party (easylist.txt: 25800) -.forpyke.com -# ||forifiha.com^$third-party (easylist.txt: 25799) -.forifiha.com -# ||forexyard.com^$third-party (easylist.txt: 25798) -.forexyard.com -# ||forex-affiliate.net^$third-party (easylist.txt: 25797) -.forex-affiliate.net -# ||forex-affiliate.com^$third-party (easylist.txt: 25796) -.forex-affiliate.com -# ||forcepprofile.com^$third-party (easylist.txt: 25795) -.forcepprofile.com -# ||forced-lose.de^$third-party (easylist.txt: 25794) -.forced-lose.de -# ||footnote.com^$third-party (easylist.txt: 25793) -.footnote.com -# ||footerslideupad.com^$third-party (easylist.txt: 25792) -.footerslideupad.com -# ||footar.com^$third-party (easylist.txt: 25791) -.footar.com -# ||foonad.com^$third-party (easylist.txt: 25790) -.foonad.com -# ||foodieblogroll.com^$third-party (easylist.txt: 25789) -.foodieblogroll.com -# ||focre.info^$third-party (easylist.txt: 25788) -.focre.info -# ||focalex.com^$third-party (easylist.txt: 25787) -.focalex.com -# ||fmsads.com^$third-party (easylist.txt: 25786) -.fmsads.com -# ||fmpub.net^$third-party (easylist.txt: 25785) -.fmpub.net -# ||flymyads.com^$third-party (easylist.txt: 25784) -.flymyads.com -# ||flyertown.ca^$third-party (easylist.txt: 25783) -.flyertown.ca -# ||fluxads.com^$third-party (easylist.txt: 25782) -.fluxads.com -# ||fluidads.co^$third-party (easylist.txt: 25781) -.fluidads.co -# ||flomigo.com^$third-party (easylist.txt: 25780) -.flomigo.com -# ||flodonas.com^$third-party (easylist.txt: 25779) -.flodonas.com -# ||fllwert.net^$third-party (easylist.txt: 25778) -.fllwert.net -# ||flite.com^$third-party (easylist.txt: 25777) -.flite.com -# ||fliionos.co.uk^$third-party (easylist.txt: 25776) -.fliionos.co.uk -# ||flexlinks.com^$third-party (easylist.txt: 25775) -.flexlinks.com -# ||flashtalking.com^$third-party (easylist.txt: 25774) -.flashtalking.com -# ||flashclicks.com^$third-party (easylist.txt: 25773) -.flashclicks.com -# ||flappysquid.net^$third-party (easylist.txt: 25772) -.flappysquid.net -# ||flappyhamster.net^$third-party (easylist.txt: 25771) -.flappyhamster.net -# ||flappybadger.net^$third-party (easylist.txt: 25770) -.flappybadger.net -# ||flagads.net^$third-party (easylist.txt: 25769) -.flagads.net -# ||fl-ads.com^$third-party (easylist.txt: 25768) -.fl-ads.com -# ||fixionmedia.com^$third-party (easylist.txt: 25767) -.fixionmedia.com -# ||fisari.com^$third-party (easylist.txt: 25766) -.fisari.com -# ||firstlightera.com^$third-party (easylist.txt: 25765) -.firstlightera.com -# ||firstimpression.io^$third-party (easylist.txt: 25764) -.firstimpression.io -# ||firstadsolution.com^$third-party (easylist.txt: 25763) -.firstadsolution.com -# ||first-rate.com^$third-party (easylist.txt: 25762) -.first-rate.com -# ||firmharborlinked.com^$third-party (easylist.txt: 25761) -.firmharborlinked.com -# ||firegob.com^$third-party (easylist.txt: 25760) -.firegob.com -# ||firefeeder.com^$third-party (easylist.txt: 25759) -.firefeeder.com -# ||firaxtech.com^$third-party (easylist.txt: 25758) -.firaxtech.com -# ||findsthat.com^$third-party (easylist.txt: 25757) -.findsthat.com -# ||findbestsolution.net^$third-party (easylist.txt: 25756) -.findbestsolution.net -# ||find-cheap-hotels.org^$third-party (easylist.txt: 25755) -.find-cheap-hotels.org -# ||find-abc.com^$third-party (easylist.txt: 25754) -.find-abc.com -# ||finalanypar.link^$third-party (easylist.txt: 25753) -.finalanypar.link -# ||fimserve.com^$third-party (easylist.txt: 25752) -.fimserve.com -# ||filtermomosearch.com^$third-party (easylist.txt: 25751) -.filtermomosearch.com -# ||filetarget.com^$third-party (easylist.txt: 25750) -.filetarget.com -# ||fidel.to^$third-party (easylist.txt: 25749) -.fidel.to -# ||fenixm.com^$third-party (easylist.txt: 25748) -.fenixm.com -# ||feljack.com^$third-party (easylist.txt: 25747) -.feljack.com -# ||feed-ads.com^$third-party (easylist.txt: 25746) -.feed-ads.com -# ||featurelink.com^$third-party (easylist.txt: 25745) -.featurelink.com -# ||featuredusers.com^$third-party (easylist.txt: 25744) -.featuredusers.com -# ||fbsvu.com^$third-party (easylist.txt: 25743) -.fbsvu.com -# ||fbgdc.com^$third-party (easylist.txt: 25742) -.fbgdc.com -# ||fb-plus.com^$third-party (easylist.txt: 25741) -.fb-plus.com -# ||fasttracktech.biz^$third-party (easylist.txt: 25740) -.fasttracktech.biz -# ||fastclick.net^$third-party (easylist.txt: 25739) -.fastclick.net -# ||fastates.net^$third-party (easylist.txt: 25738) -.fastates.net -# ||fastapi.net^$third-party (easylist.txt: 25737) -.fastapi.net -# ||fast2earn.com^$third-party (easylist.txt: 25736) -.fast2earn.com -# ||falkag.net^$third-party (easylist.txt: 25735) -.falkag.net -# ||fairadsnetwork.com^$third-party (easylist.txt: 25734) -.fairadsnetwork.com -# ||faggrim.com^$third-party (easylist.txt: 25733) -.faggrim.com -# ||ezoic.net^$third-party (easylist.txt: 25732) -.ezoic.net -# ||ezmob.com^$third-party (easylist.txt: 25731) -.ezmob.com -# ||ezadserver.net^$third-party (easylist.txt: 25730) -.ezadserver.net -# ||eyewonder.com^$third-party (easylist.txt: 25729) -.eyewonder.com -# ||eyewond.hs.llnwd.net^$third-party (easylist.txt: 25728) -.eyewond.hs.llnwd.net -# ||eyeviewads.com^$third-party (easylist.txt: 25727) -.eyeviewads.com -# ||eyereturn.com^$third-party (easylist.txt: 25726) -.eyereturn.com -# ||eyere.com^$third-party (easylist.txt: 25725) -.eyere.com -# ||extra33.com^$third-party (easylist.txt: 25724) -.extra33.com -# ||expresswebtraffic.com^$third-party (easylist.txt: 25723) -.expresswebtraffic.com -# ||exponential.com^$third-party (easylist.txt: 25722) -.exponential.com -# ||explainidentifycoding.info^$third-party (easylist.txt: 25721) -.explainidentifycoding.info -# ||exoneratedresignation.info^$third-party (easylist.txt: 25720) -.exoneratedresignation.info -# ||exoclick.com^$third-party (easylist.txt: 25719) -.exoclick.com -# ||exitjunction.com^$third-party (easylist.txt: 25718) -.exitjunction.com -# ||exitexplosion.com^$third-party (easylist.txt: 25717) -.exitexplosion.com -# ||exchange4media.com^$third-party (easylist.txt: 25716) -.exchange4media.com -# ||excellenceads.com^$third-party (easylist.txt: 25715) -.excellenceads.com -# ||exactdrive.com^$third-party (easylist.txt: 25714) -.exactdrive.com -# ||evolvenation.com^$third-party (easylist.txt: 25713) -.evolvenation.com -# ||evolvemediallc.com^$third-party (easylist.txt: 25712) -.evolvemediallc.com -# ||euz.net^$third-party (easylist.txt: 25711) -.euz.net -# ||euros4click.de^$third-party (easylist.txt: 25710) -.euros4click.de -# ||europacash.com^$third-party (easylist.txt: 25709) -.europacash.com -# ||euroclick.com^$third-party (easylist.txt: 25708) -.euroclick.com -# ||eurew.com^$third-party (easylist.txt: 25707) -.eurew.com -# ||etology.com^$third-party (easylist.txt: 25706) -.etology.com -# ||etmanly.ru^$third-party (easylist.txt: 25705) -.etmanly.ru -# ||etgdta.com^$third-party (easylist.txt: 25704) -.etgdta.com -# ||etargetnet.com^$third-party (easylist.txt: 25703) -.etargetnet.com -# ||essaycoupons.com^$third-party (easylist.txt: 25702) -.essaycoupons.com -# ||essayads.com^$third-party (easylist.txt: 25701) -.essayads.com -# ||especifican.com^$third-party (easylist.txt: 25700) -.especifican.com -# ||escokuro.com^$third-party (easylist.txt: 25699) -.escokuro.com -# ||escale.to^$third-party (easylist.txt: 25698) -.escale.to -# ||escalatenetwork.com^$third-party (easylist.txt: 25697) -.escalatenetwork.com -# ||erovinmo.com^$third-party (easylist.txt: 25696) -.erovinmo.com -# ||erovation.com^$third-party (easylist.txt: 25695) -.erovation.com -# ||ero-advertising.com^$third-party (easylist.txt: 25694) -.ero-advertising.com -# ||ergoledo.com^$third-party (easylist.txt: 25693) -.ergoledo.com -# ||ergodob.ru^$third-party (easylist.txt: 25692) -.ergodob.ru -# ||ergerww.net^$third-party (easylist.txt: 25691) -.ergerww.net -# ||erendri.com^$third-party (easylist.txt: 25690) -.erendri.com -# ||erado.org^$third-party (easylist.txt: 25689) -.erado.org -# ||eqads.com^$third-party (easylist.txt: 25688) -.eqads.com -# ||eptum.com^$third-party (easylist.txt: 25687) -.eptum.com -# ||eptord.com^$third-party (easylist.txt: 25686) -.eptord.com -# ||epnredirect.ru^$third-party (easylist.txt: 25685) -.epnredirect.ru -# ||epicgameads.com^$third-party (easylist.txt: 25684) -.epicgameads.com -# ||eosads.com^$third-party (easylist.txt: 25683) -.eosads.com -# ||entrecard.s3.amazonaws.com^$third-party (easylist.txt: 25682) -.entrecard.s3.amazonaws.com -# ||entrecard.com^$third-party (easylist.txt: 25681) -.entrecard.com -# ||enterads.com^$third-party (easylist.txt: 25680) -.enterads.com -# ||enlnks.com^$third-party (easylist.txt: 25679) -.enlnks.com -# ||engineseeker.com^$third-party (easylist.txt: 25678) -.engineseeker.com -# ||emptyspaceads.com^$third-party (easylist.txt: 25677) -.emptyspaceads.com -# ||employers-freshly.org^$third-party (easylist.txt: 25676) -.employers-freshly.org -# ||empiremoney.com^$third-party (easylist.txt: 25675) -.empiremoney.com -# ||emediate.se^$third-party (easylist.txt: 25674) -.emediate.se -# ||emediate.eu^$third-party (easylist.txt: 25673) -.emediate.eu -# ||emediate.dk^$third-party (easylist.txt: 25672) -.emediate.dk -# ||emediate.ch^$third-party (easylist.txt: 25671) -.emediate.ch -# ||emberads.com^$third-party (easylist.txt: 25670) -.emberads.com -# ||elvate.net^$third-party (easylist.txt: 25669) -.elvate.net -# ||elefantsearch.com^$third-party (easylist.txt: 25668) -.elefantsearch.com -# ||electnext.com^$third-party (easylist.txt: 25667) -.electnext.com -# ||elasticad.net^$third-party (easylist.txt: 25666) -.elasticad.net -# ||ektezis.ru^$third-party (easylist.txt: 25665) -.ektezis.ru -# ||ekmas.com^$third-party (easylist.txt: 25664) -.ekmas.com -# ||egamingonline.com^$third-party (easylist.txt: 25663) -.egamingonline.com -# ||effectivemeasure.net^$third-party (easylist.txt: 25662) -.effectivemeasure.net -# ||eedr.org^$third-party (easylist.txt: 25661) -.eedr.org -# ||edomz.net^$third-party (easylist.txt: 25660) -.edomz.net -# ||edgevertise.com^$third-party (easylist.txt: 25659) -.edgevertise.com -# ||edgeads.org^$third-party (easylist.txt: 25658) -.edgeads.org -# ||ecpmrocks.com^$third-party (easylist.txt: 25657) -.ecpmrocks.com -# ||ebz.io^$third-party (easylist.txt: 25656) -.ebz.io -# ||ebuzzing.com^$third-party (easylist.txt: 25655) -.ebuzzing.com -# ||eblastengine.com^$third-party (easylist.txt: 25654) -.eblastengine.com -# ||ebayobjects.com^$third-party (easylist.txt: 25653) -.ebayobjects.com -# ||ebayobjects.com.au^$third-party (easylist.txt: 25652) -.ebayobjects.com.au -# ||ebannertraffic.com^$third-party (easylist.txt: 25651) -.ebannertraffic.com -# ||easyinline.com^$third-party (easylist.txt: 25650) -.easyinline.com -# ||easyhits4u.com^$third-party (easylist.txt: 25649) -.easyhits4u.com -# ||easyflirt-partners.biz^$third-party (easylist.txt: 25648) -.easyflirt-partners.biz -# ||easydownload4you.com^$third-party (easylist.txt: 25647) -.easydownload4you.com -# ||easyad.com^$third-party (easylist.txt: 25646) -.easyad.com -# ||easy-adserver.com^$third-party (easylist.txt: 25645) -.easy-adserver.com -# ||earnify.com^$third-party (easylist.txt: 25644) -.earnify.com -# ||eads.to^$third-party (easylist.txt: 25643) -.eads.to -# ||eads-adserving.com^$third-party (easylist.txt: 25642) -.eads-adserving.com -# ||e9mlrvy1.com^$third-party (easylist.txt: 25641) -.e9mlrvy1.com -# ||e2yth.tv^$third-party (easylist.txt: 25640) -.e2yth.tv -# ||e-viral.com^$third-party (easylist.txt: 25639) -.e-viral.com -# ||e-planning.net^$third-party (easylist.txt: 25638) -.e-planning.net -# ||e-generator.com^$third-party (easylist.txt: 25637) -.e-generator.com -# ||e-find.co^$third-party (easylist.txt: 25636) -.e-find.co -# ||dynamitedata.com^$third-party (easylist.txt: 25635) -.dynamitedata.com -# ||dynamicoxygen.com^$third-party (easylist.txt: 25634) -.dynamicoxygen.com -# ||dyino.com^$third-party (easylist.txt: 25633) -.dyino.com -# ||dvaminusodin.net^$third-party (easylist.txt: 25632) -.dvaminusodin.net -# ||durtz.com^$third-party (easylist.txt: 25631) -.durtz.com -# ||durokuro.com^$third-party (easylist.txt: 25630) -.durokuro.com -# ||durnowar.com^$third-party (easylist.txt: 25629) -.durnowar.com -# ||dumedia.ru^$third-party (easylist.txt: 25628) -.dumedia.ru -# ||duggiads.com^$third-party (easylist.txt: 25627) -.duggiads.com -# ||duetads.com^$third-party (easylist.txt: 25626) -.duetads.com -# ||dudelsa.com^$third-party (easylist.txt: 25625) -.dudelsa.com -# ||dualmarket.info^$third-party (easylist.txt: 25624) -.dualmarket.info -# ||dtzads.com^$third-party (easylist.txt: 25623) -.dtzads.com -# ||dtmpub.com^$third-party (easylist.txt: 25622) -.dtmpub.com -# ||dsultra.com^$third-party (easylist.txt: 25619) -.dsultra.com -# ||dsnr-affiliates.com^$third-party (easylist.txt: 25618) -.dsnr-affiliates.com -# ||dsnextgen.com^$third-party (easylist.txt: 25617) -.dsnextgen.com -# ||dsero.net^$third-party (easylist.txt: 25616) -.dsero.net -# ||drowle.com^$third-party (easylist.txt: 25615) -.drowle.com -# ||dreamsearch.or.kr^$third-party (easylist.txt: 25614) -.dreamsearch.or.kr -# ||dreamaquarium.com^$third-party (easylist.txt: 25613) -.dreamaquarium.com -# ||dpstack.com^$third-party (easylist.txt: 25612) -.dpstack.com -# ||dpsrexor.com^$third-party (easylist.txt: 25611) -.dpsrexor.com -# ||dpmsrv.com^$third-party (easylist.txt: 25610) -.dpmsrv.com -# ||dpbolvw.net^$third-party (easylist.txt: 25609) -.dpbolvw.net -# ||dp25.kr^$third-party (easylist.txt: 25608) -.dp25.kr -# ||downsonglyrics.com^$third-party (easylist.txt: 25607) -.downsonglyrics.com -# ||downloadboutique.com^$third-party (easylist.txt: 25606) -.downloadboutique.com -# ||down1oads.com^$third-party (easylist.txt: 25605) -.down1oads.com -# ||doubleverify.com^$third-party (easylist.txt: 25604) -.doubleverify.com -# ||doublerecall.com^$third-party (easylist.txt: 25603) -.doublerecall.com -# ||doublerads.com^$third-party (easylist.txt: 25602) -.doublerads.com -# ||doublepimp.com^$third-party (easylist.txt: 25601) -.doublepimp.com -# ||doublemax.net^$third-party (easylist.txt: 25600) -.doublemax.net -# ||doubleclicks.me^$third-party (easylist.txt: 25599) -.doubleclicks.me -# ||doubleclickbygoogle.com^$third-party (easylist.txt: 25598) -.doubleclickbygoogle.com -# ||doubleclick.net^*;afv_flvurl=http://cdn.c.ooyala.com/$third-party (easylist.txt: 25597) -.doubleclick.net/.*;afv_flvurl=http://cdn\.c\.ooyala\.com/ -# ||doubleclick.net^*/pfadx/team.sd/$third-party (easylist.txt: 25596) -.doubleclick.net/.*/pfadx/team\.sd/ -# ||doubleclick.net^*/pfadx/team.dal/$third-party (easylist.txt: 25595) -.doubleclick.net/.*/pfadx/team\.dal/ -# ||doubleclick.net^*/pfadx/team.car/$third-party (easylist.txt: 25594) -.doubleclick.net/.*/pfadx/team\.car/ -# ||doubleclick.net^*/pfadx/ssp.wews/$third-party (easylist.txt: 25593) -.doubleclick.net/.*/pfadx/ssp\.wews/ -# ||doubleclick.net^*/pfadx/muzumain/$third-party (easylist.txt: 25592) -.doubleclick.net/.*/pfadx/muzumain/ -# ||doubleclick.net^*/pfadx/ibs.orl.news/$third-party (easylist.txt: 25591) -.doubleclick.net/.*/pfadx/ibs\.orl\.news/ -# ||doubleclick.net^*/pfadx/embed.ytpwatch.$third-party (easylist.txt: 25590) -.doubleclick.net/.*/pfadx/embed\.ytpwatch\. -# ||doubleclick.net^*/pfadx/com.ytpwatch.$third-party (easylist.txt: 25589) -.doubleclick.net/.*/pfadx/com\.ytpwatch\. -# ||doubleclick.net^*/pfadx/cmn_complextv/$third-party (easylist.txt: 25588) -.doubleclick.net/.*/pfadx/cmn_complextv/ -# ||doubleclick.net^*/pfadx/ccr.newyork.$third-party (easylist.txt: 25587) -.doubleclick.net/.*/pfadx/ccr\.newyork\. -# ||doubleclick.net^*/adj/$~object-subrequest,third-party (easylist.txt: 25586) -.doubleclick.net/.*/adj/ -# ||doubleclick.net^*/adi/$~object-subrequest,third-party (easylist.txt: 25585) -.doubleclick.net/.*/adi/ -# ||doubleclick.net^*/ad/$~object-subrequest,third-party (easylist.txt: 25584) -.doubleclick.net/.*/ad/ -# ||doubleclick.net/xbbe/creative/vast? (easylist.txt: 25582) -.doubleclick.net/xbbe/creative/vast\? -# ||doubleclick.net/pfadx/www.tv3.co.nz$third-party (easylist.txt: 25581) -.doubleclick.net/pfadx/www\.tv3\.co\.nz -# ||doubleclick.net/pfadx/video.wsj.com/$third-party (easylist.txt: 25580) -.doubleclick.net/pfadx/video\.wsj\.com/ -# ||doubleclick.net/pfadx/video.marketwatch.com/$third-party (easylist.txt: 25579) -.doubleclick.net/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/pfadx/ugo.gv.1up/$third-party (easylist.txt: 25578) -.doubleclick.net/pfadx/ugo\.gv\.1up/ -# ||doubleclick.net/pfadx/trb.$third-party (easylist.txt: 25577) -.doubleclick.net/pfadx/trb\. -# ||doubleclick.net/pfadx/tmz.video.wb.dart/$third-party (easylist.txt: 25576) -.doubleclick.net/pfadx/tmz\.video\.wb\.dart/ -# ||doubleclick.net/pfadx/tmg.telegraph.$third-party (easylist.txt: 25575) -.doubleclick.net/pfadx/tmg\.telegraph\. -# ||doubleclick.net/pfadx/sugar.poptv/$third-party (easylist.txt: 25574) -.doubleclick.net/pfadx/sugar\.poptv/ -# ||doubleclick.net/pfadx/storm.no/$third-party (easylist.txt: 25573) -.doubleclick.net/pfadx/storm\.no/ -# ||doubleclick.net/pfadx/ssp.kgtv/$third-party (easylist.txt: 25572) -.doubleclick.net/pfadx/ssp\.kgtv/ -# ||doubleclick.net/pfadx/ng.videoplayer/$third-party (easylist.txt: 25571) -.doubleclick.net/pfadx/ng\.videoplayer/ -# ||doubleclick.net/pfadx/nfl.$third-party (easylist.txt: 25570) -.doubleclick.net/pfadx/nfl\. -# ||doubleclick.net/pfadx/ndm.tcm/$third-party (easylist.txt: 25569) -.doubleclick.net/pfadx/ndm\.tcm/ -# ||doubleclick.net/pfadx/nbcu.nhl/$third-party (easylist.txt: 25568) -.doubleclick.net/pfadx/nbcu\.nhl/ -# ||doubleclick.net/pfadx/nbcu.nhl.$third-party (easylist.txt: 25567) -.doubleclick.net/pfadx/nbcu\.nhl\. -# ||doubleclick.net/pfadx/nbcu.nbc/$third-party (easylist.txt: 25566) -.doubleclick.net/pfadx/nbcu\.nbc/ -# ||doubleclick.net/pfadx/muzuoffsite/$third-party (easylist.txt: 25565) -.doubleclick.net/pfadx/muzuoffsite/ -# ||doubleclick.net/pfadx/muzumain/$third-party (easylist.txt: 25564) -.doubleclick.net/pfadx/muzumain/ -# ||doubleclick.net/pfadx/miniclip.prevideo/$third-party (easylist.txt: 25563) -.doubleclick.net/pfadx/miniclip\.prevideo/ -# ||doubleclick.net/pfadx/miniclip.midvideo/$third-party (easylist.txt: 25562) -.doubleclick.net/pfadx/miniclip\.midvideo/ -# ||doubleclick.net/pfadx/mc.channelnewsasia.com^$third-party (easylist.txt: 25561) -.doubleclick.net/pfadx/mc\.channelnewsasia\.com[^\w%.-] -# ||doubleclick.net/pfadx/ltv.wtvr.video/$third-party (easylist.txt: 25560) -.doubleclick.net/pfadx/ltv\.wtvr\.video/ -# ||doubleclick.net/pfadx/intl.sps.com/$third-party (easylist.txt: 25559) -.doubleclick.net/pfadx/intl\.sps\.com/ -# ||doubleclick.net/pfadx/gn.movieweb.com/$third-party (easylist.txt: 25558) -.doubleclick.net/pfadx/gn\.movieweb\.com/ -# ||doubleclick.net/pfadx/ddm.ksl/$third-party (easylist.txt: 25557) -.doubleclick.net/pfadx/ddm\.ksl/ -# ||doubleclick.net/pfadx/ctv.spacecast/$third-party (easylist.txt: 25556) -.doubleclick.net/pfadx/ctv\.spacecast/ -# ||doubleclick.net/pfadx/ctv.muchmusic.com/$third-party (easylist.txt: 25555) -.doubleclick.net/pfadx/ctv\.muchmusic\.com/ -# ||doubleclick.net/pfadx/ctv.ctvwatch.ca/$third-party (easylist.txt: 25554) -.doubleclick.net/pfadx/ctv\.ctvwatch\.ca/ -# ||doubleclick.net/pfadx/csn.$third-party (easylist.txt: 25553) -.doubleclick.net/pfadx/csn\. -# ||doubleclick.net/pfadx/comedycentral.$third-party (easylist.txt: 25552) -.doubleclick.net/pfadx/comedycentral\. -# ||doubleclick.net/pfadx/ccr.$third-party (easylist.txt: 25551) -.doubleclick.net/pfadx/ccr\. -# ||doubleclick.net/pfadx/CBS.$third-party (easylist.txt: 25550) -.doubleclick.net/pfadx/CBS\. -# ||doubleclick.net/pfadx/cblvsn.nwsd.videogallery/$third-party (easylist.txt: 25549) -.doubleclick.net/pfadx/cblvsn\.nwsd\.videogallery/ -# ||doubleclick.net/pfadx/bzj.bizjournals/$third-party (easylist.txt: 25548) -.doubleclick.net/pfadx/bzj\.bizjournals/ -# ||doubleclick.net/pfadx/blp.video/midroll$third-party (easylist.txt: 25547) -.doubleclick.net/pfadx/blp\.video/midroll -# ||doubleclick.net/pfadx/bet.com/$third-party (easylist.txt: 25546) -.doubleclick.net/pfadx/bet\.com/ -# ||doubleclick.net/pfadx/belo.king5.pre/$third-party (easylist.txt: 25545) -.doubleclick.net/pfadx/belo\.king5\.pre/ -# ||doubleclick.net/pfadx/aetn.aetv.shows/$third-party (easylist.txt: 25544) -.doubleclick.net/pfadx/aetn\.aetv\.shows/ -# ||doubleclick.net/pfadx/*CBSINTERACTIVE/$third-party (easylist.txt: 25543) -.doubleclick.net/pfadx/.*CBSINTERACTIVE/ -# ||doubleclick.net/pfadx/*adcat=$third-party (easylist.txt: 25542) -.doubleclick.net/pfadx/.*adcat= -# ||doubleclick.net/pfadx/*/kidstv/$third-party (easylist.txt: 25541) -.doubleclick.net/pfadx/.*/kidstv/ -# ||doubleclick.net/pfadx/*.WALTDISNEYINTERNETGROU/$third-party (easylist.txt: 25540) -.doubleclick.net/pfadx/.*\.WALTDISNEYINTERNETGROU/ -# ||doubleclick.net/pfadx/*.VIACOMINTERNATIONAL/$third-party (easylist.txt: 25539) -.doubleclick.net/pfadx/.*\.VIACOMINTERNATIONAL/ -# ||doubleclick.net/pfadx/*.sevenload.com_$third-party (easylist.txt: 25538) -.doubleclick.net/pfadx/.*\.sevenload\.com_ -# ||doubleclick.net/pfadx/*.reuters/$third-party (easylist.txt: 25537) -.doubleclick.net/pfadx/.*\.reuters/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL/$third-party (easylist.txt: 25536) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL-CNBC/$third-party (easylist.txt: 25535) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL-CNBC/ -# ||doubleclick.net/pfadx/*.NBCUNI.COM/$third-party (easylist.txt: 25534) -.doubleclick.net/pfadx/.*\.NBCUNI\.COM/ -# ||doubleclick.net/pfadx/*.nbc.com/$third-party (easylist.txt: 25533) -.doubleclick.net/pfadx/.*\.nbc\.com/ -# ||doubleclick.net/pfadx/*.muzu/$third-party (easylist.txt: 25532) -.doubleclick.net/pfadx/.*\.muzu/ -# ||doubleclick.net/pfadx/*.mtvi$third-party (easylist.txt: 25531) -.doubleclick.net/pfadx/.*\.mtvi -# ||doubleclick.net/pfadx/*.MTV-Viacom/$third-party (easylist.txt: 25530) -.doubleclick.net/pfadx/.*\.MTV-Viacom/ -# ||doubleclick.net/pfadx/*.MCNONLINE/$third-party (easylist.txt: 25529) -.doubleclick.net/pfadx/.*\.MCNONLINE/ -# ||doubleclick.net/pfadx/*.ESPN/$third-party (easylist.txt: 25528) -.doubleclick.net/pfadx/.*\.ESPN/ -# ||doubleclick.net/pfadx/*.BLIPTV/$third-party (easylist.txt: 25527) -.doubleclick.net/pfadx/.*\.BLIPTV/ -# ||doubleclick.net/pfadx/*.ABC.com/$third-party (easylist.txt: 25526) -.doubleclick.net/pfadx/.*\.ABC\.com/ -# ||doubleclick.net/N6872/pfadx/shaw.mylifetimetv.ca/$third-party (easylist.txt: 25525) -.doubleclick.net/N6872/pfadx/shaw\.mylifetimetv\.ca/ -# ||doubleclick.net/N6088/pfadx/ssp.kshb/$third-party (easylist.txt: 25524) -.doubleclick.net/N6088/pfadx/ssp\.kshb/ -# ||doubleclick.net/N5479/pfadx/ctv.$third-party (easylist.txt: 25523) -.doubleclick.net/N5479/pfadx/ctv\. -# ||doubleclick.net/N5202/pfadx/cmn_livemixtapes/$third-party (easylist.txt: 25522) -.doubleclick.net/N5202/pfadx/cmn_livemixtapes/ -# ||doubleclick.net/N4526/pfadx/*.muzu/$third-party (easylist.txt: 25521) -.doubleclick.net/N4526/pfadx/.*\.muzu/ -# ||doubleclick.net/N4117/pfadx/*.sbs.com.au/$third-party (easylist.txt: 25520) -.doubleclick.net/N4117/pfadx/.*\.sbs\.com\.au/ -# ||doubleclick.net/N3626/pfadx/thehothits.com.au/$third-party (easylist.txt: 25519) -.doubleclick.net/N3626/pfadx/thehothits\.com\.au/ -# ||doubleclick.net/N2/pfadx/video.wsj.com/$third-party (easylist.txt: 25518) -.doubleclick.net/N2/pfadx/video\.wsj\.com/ -# ||doubleclick.net/N2/pfadx/video.marketwatch.com/ (easylist.txt: 25517) -.doubleclick.net/N2/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/N2/pfadx/video.allthingsd.com/$third-party (easylist.txt: 25516) -.doubleclick.net/N2/pfadx/video\.allthingsd\.com/ -# ||doubleclick.net/N2/pfadx/video.*.wsj.com/$third-party (easylist.txt: 25515) -.doubleclick.net/N2/pfadx/video\..*\.wsj\.com/ -# ||doubleclick.net/adx/wn.nat.$third-party (easylist.txt: 25513) -.doubleclick.net/adx/wn\.nat\. -# ||doubleclick.net/adx/wn.loc.$third-party (easylist.txt: 25512) -.doubleclick.net/adx/wn\.loc\. -# ||doubleclick.net/adx/tsg.$third-party (easylist.txt: 25511) -.doubleclick.net/adx/tsg\. -# ||doubleclick.net/adx/ibs.$third-party (easylist.txt: 25510) -.doubleclick.net/adx/ibs\. -# ||doubleclick.net/adx/CBS.$third-party (easylist.txt: 25509) -.doubleclick.net/adx/CBS\. -# ||doubleclick.net/adx/*.ted/$third-party (easylist.txt: 25508) -.doubleclick.net/adx/.*\.ted/ -# ||doubleclick.net/adx/*.NPR/$third-party (easylist.txt: 25507) -.doubleclick.net/adx/.*\.NPR/ -# ||doubleclick.net/adx/*.NPR.MUSIC/$third-party (easylist.txt: 25506) -.doubleclick.net/adx/.*\.NPR\.MUSIC/ -# ||doubleclick.net/adx/*.collegehumor/$third-party (easylist.txt: 25505) -.doubleclick.net/adx/.*\.collegehumor/ -# ||doubleclick.net/adx/$~object-subrequest,third-party (easylist.txt: 25504) -.doubleclick.net/adx/ -# ||doubleclick.net/adj/*.collegehumor/sec=videos_originalcontent;$third-party (easylist.txt: 25503) -.doubleclick.net/adj/.*\.collegehumor/sec=videos_originalcontent; -# ||doubleclick.net/adj/$~object-subrequest,third-party (easylist.txt: 25502) -.doubleclick.net/adj/ -# ||doubleclick.net/adi/$~object-subrequest,third-party (easylist.txt: 25501) -.doubleclick.net/adi/ -# ||doubleclick.net/ad/$third-party (easylist.txt: 25500) -.doubleclick.net/ad/ -# ||doubleclick.net/*/pfadx/lin.$third-party (easylist.txt: 25499) -.doubleclick.net/.*/pfadx/lin\. -# ||doubleclick.net/*/ch_news.com/$third-party (easylist.txt: 25498) -.doubleclick.net/.*/ch_news\.com/ -# ||doubleclick.com^$third-party (easylist.txt: 25497) -.doubleclick.com -# ||double.net^$third-party (easylist.txt: 25496) -.double.net -# ||dotandad.com^$third-party (easylist.txt: 25495) -.dotandad.com -# ||dorenga.com^$third-party (easylist.txt: 25494) -.dorenga.com -# ||doomail.org^$third-party (easylist.txt: 25493) -.doomail.org -# ||doogleonduty.com^$third-party (easylist.txt: 25492) -.doogleonduty.com -# ||dooc.info^$third-party (easylist.txt: 25491) -.dooc.info -# ||domdex.com^$third-party (easylist.txt: 25490) -.domdex.com -# ||domainsponsor.com^$third-party (easylist.txt: 25489) -.domainsponsor.com -# ||domainbuyingservices.com^$third-party (easylist.txt: 25488) -.domainbuyingservices.com -# ||domainadvertising.com^$third-party (easylist.txt: 25487) -.domainadvertising.com -# ||dollarsponsor.com^$third-party (easylist.txt: 25486) -.dollarsponsor.com -# ||dollarade.com^$third-party (easylist.txt: 25485) -.dollarade.com -# ||document4u.info^$third-party (easylist.txt: 25484) -.document4u.info -# ||dntrck.com^$third-party (easylist.txt: 25483) -.dntrck.com -# ||dmu20vut.com^$third-party (easylist.txt: 25482) -.dmu20vut.com -# ||dl-rms.com^$third-party (easylist.txt: 25481) -.dl-rms.com -# ||dj-updates.com^$third-party (easylist.txt: 25480) -.dj-updates.com -# ||districtm.ca^$third-party (easylist.txt: 25479) -.districtm.ca -# ||distilled.ie^$third-party (easylist.txt: 25478) -.distilled.ie -# ||dispop.com^$third-party (easylist.txt: 25477) -.dispop.com -# ||directtrk.com^$third-party (easylist.txt: 25476) -.directtrk.com -# ||directtrack.com^$third-party (easylist.txt: 25475) -.directtrack.com -# ||directrev.com^$third-party (easylist.txt: 25474) -.directrev.com -# ||directorym.com^$third-party (easylist.txt: 25473) -.directorym.com -# ||directoral.info^$third-party (easylist.txt: 25472) -.directoral.info -# ||directleads.com^$third-party (easylist.txt: 25471) -.directleads.com -# ||directile.net^$third-party (easylist.txt: 25470) -.directile.net -# ||directile.info^$third-party (easylist.txt: 25469) -.directile.info -# ||directaclick.com^$third-party (easylist.txt: 25468) -.directaclick.com -# ||dipads.net^$~image,third-party (easylist.txt: 25467) -.dipads.net -# ||dinclinx.com^$third-party (easylist.txt: 25466) -.dinclinx.com -# ||digitrevenue.com^$third-party (easylist.txt: 25465) -.digitrevenue.com -# ||digipathmedia.com^$third-party (easylist.txt: 25464) -.digipathmedia.com -# ||dianomioffers.co.uk^$third-party (easylist.txt: 25463) -.dianomioffers.co.uk -# ||diamondtraff.com^$third-party (easylist.txt: 25462) -.diamondtraff.com -# ||dhundora.com^$third-party (easylist.txt: 25461) -.dhundora.com -# ||dgmaxinteractive.com^$third-party (easylist.txt: 25460) -.dgmaxinteractive.com -# ||dgmaustralia.com^$third-party (easylist.txt: 25459) -.dgmaustralia.com -# ||dgmatix.com^$third-party (easylist.txt: 25458) -.dgmatix.com -# ||dexplatform.com^$third-party (easylist.txt: 25457) -.dexplatform.com -# ||deximedia.com^$third-party (easylist.txt: 25456) -.deximedia.com -# ||developermedia.com^$third-party (easylist.txt: 25455) -.developermedia.com -# ||detroposal.com^$third-party (easylist.txt: 25454) -.detroposal.com -# ||destinationurl.com^$third-party (easylist.txt: 25453) -.destinationurl.com -# ||derlatas.com^$third-party (easylist.txt: 25452) -.derlatas.com -# ||deriversal.com^$third-party (easylist.txt: 25451) -.deriversal.com -# ||deployads.com^$third-party (easylist.txt: 25450) -.deployads.com -# ||deplayer.net^$third-party (easylist.txt: 25449) -.deplayer.net -# ||delnapb.com^$third-party (easylist.txt: 25448) -.delnapb.com -# ||delivery51.com^$third-party (easylist.txt: 25447) -.delivery51.com -# ||delivery49.com^$third-party (easylist.txt: 25446) -.delivery49.com -# ||delivery47.com^$third-party (easylist.txt: 25445) -.delivery47.com -# ||delivery45.com^$third-party (easylist.txt: 25444) -.delivery45.com -# ||dehtale.ru^$third-party (easylist.txt: 25443) -.dehtale.ru -# ||deguiste.com^$third-party (easylist.txt: 25442) -.deguiste.com -# ||defaultimg.com^$third-party (easylist.txt: 25441) -.defaultimg.com -# ||deepmetrix.com^$third-party (easylist.txt: 25440) -.deepmetrix.com -# ||dedicatednetworks.com^$third-party (easylist.txt: 25439) -.dedicatednetworks.com -# ||dedicatedmedia.com^$third-party (easylist.txt: 25438) -.dedicatedmedia.com -# ||decknetwork.net^$third-party (easylist.txt: 25437) -.decknetwork.net -# ||decisionnews.com^$third-party (easylist.txt: 25436) -.decisionnews.com -# ||decisionmark.com^$third-party (easylist.txt: 25435) -.decisionmark.com -# ||dealcurrent.com^$third-party (easylist.txt: 25434) -.dealcurrent.com -# ||dbclix.com^$third-party (easylist.txt: 25433) -.dbclix.com -# ||dbbsrv.com^$third-party (easylist.txt: 25432) -.dbbsrv.com -# ||dazhantai.com^$third-party (easylist.txt: 25431) -.dazhantai.com -# ||datumreact.com^$third-party (easylist.txt: 25430) -.datumreact.com -# ||datinggold.com^$third-party (easylist.txt: 25429) -.datinggold.com -# ||dating-banners.com^$third-party (easylist.txt: 25428) -.dating-banners.com -# ||data.adroll.com^$third-party (easylist.txt: 25427) -.data.adroll.com -# ||dashboardad.net^$third-party (easylist.txt: 25426) -.dashboardad.net -# ||dashbida.com^$third-party (easylist.txt: 25425) -.dashbida.com -# ||das5ku9q.com^$third-party (easylist.txt: 25424) -.das5ku9q.com -# ||darwarvid.com^$third-party (easylist.txt: 25423) -.darwarvid.com -# ||dapper.net^$third-party (easylist.txt: 25422) -.dapper.net -# ||danitabedtick.net^$third-party (easylist.txt: 25421) -.danitabedtick.net -# ||dadegid.ru^$third-party (easylist.txt: 25420) -.dadegid.ru -# ||da-ads.com^$third-party (easylist.txt: 25419) -.da-ads.com -# ||d2ship.com^$third-party (easylist.txt: 25418) -.d2ship.com -# ||d1110e4.se^$third-party (easylist.txt: 25417) -.d1110e4.se -# ||d03x2011.com^$third-party (easylist.txt: 25416) -.d03x2011.com -# ||d.m3.net^$third-party (easylist.txt: 25415) -.d.m3.net -# ||d.adroll.com^$third-party (easylist.txt: 25414) -.d.adroll.com -# ||czasnaherbate.info^$third-party (easylist.txt: 25413) -.czasnaherbate.info -# ||cygnus.com^$third-party (easylist.txt: 25412) -.cygnus.com -# ||cybmas.com^$third-party (easylist.txt: 25411) -.cybmas.com -# ||curtisfrierson.com^$third-party (easylist.txt: 25410) -.curtisfrierson.com -# ||currentlyobsessed.me^$third-party (easylist.txt: 25409) -.currentlyobsessed.me -# ||curancience.com^$third-party (easylist.txt: 25408) -.curancience.com -# ||cuelinks.com^$third-party (easylist.txt: 25407) -.cuelinks.com -# ||cubics.com^$third-party (easylist.txt: 25406) -.cubics.com -# ||ctrhub.com^$third-party (easylist.txt: 25405) -.ctrhub.com -# ||ctm-media.com^$third-party (easylist.txt: 25404) -.ctm-media.com -# ||ctenetwork.com^$third-party (easylist.txt: 25403) -.ctenetwork.com -# ||ctasnet.com^$third-party (easylist.txt: 25402) -.ctasnet.com -# ||cruiseworldinc.com^$third-party (easylist.txt: 25401) -.cruiseworldinc.com -# ||cruftexcision.xyz^$third-party (easylist.txt: 25400) -.cruftexcision.xyz -# ||crowdgravity.com^$third-party (easylist.txt: 25399) -.crowdgravity.com -# ||crowdgatheradnetwork.com^$third-party (easylist.txt: 25398) -.crowdgatheradnetwork.com -# ||crossrider.com^$third-party (easylist.txt: 25397) -.crossrider.com -# ||crispads.com^$third-party (easylist.txt: 25396) -.crispads.com -# ||creditcards15x.tk^$third-party (easylist.txt: 25395) -.creditcards15x.tk -# ||creative-serving.com^$third-party (easylist.txt: 25394) -.creative-serving.com -# ||crazyvideosempire.com^$third-party (easylist.txt: 25393) -.crazyvideosempire.com -# ||crazylead.com^$third-party (easylist.txt: 25392) -.crazylead.com -# ||crakmedia.com^$third-party (easylist.txt: 25391) -.crakmedia.com -# ||cpxinteractive.com^$third-party (easylist.txt: 25390) -.cpxinteractive.com -# ||cpxadroit.com^$third-party (easylist.txt: 25389) -.cpxadroit.com -# ||cpx24.com^$third-party (easylist.txt: 25388) -.cpx24.com -# ||cpvtgt.com^$third-party (easylist.txt: 25387) -.cpvtgt.com -# ||cpvmarketplace.info^$third-party (easylist.txt: 25386) -.cpvmarketplace.info -# ||cpvadvertise.com^$third-party (easylist.txt: 25385) -.cpvadvertise.com -# ||cpvads.com^$third-party (easylist.txt: 25384) -.cpvads.com -# ||cpulaptop.com^$third-party (easylist.txt: 25383) -.cpulaptop.com -# ||cpuim.com^$third-party (easylist.txt: 25382) -.cpuim.com -# ||cpmtree.com^$third-party (easylist.txt: 25381) -.cpmtree.com -# ||cpmstar.com^$third-party (easylist.txt: 25380) -.cpmstar.com -# ||cpmrocket.com^$third-party (easylist.txt: 25379) -.cpmrocket.com -# ||cpmmedia.net^$third-party (easylist.txt: 25378) -.cpmmedia.net -# ||cpmleader.com^$third-party (easylist.txt: 25377) -.cpmleader.com -# ||cpmaffiliation.com^$third-party (easylist.txt: 25376) -.cpmaffiliation.com -# ||cpmadvisors.com^$third-party (easylist.txt: 25375) -.cpmadvisors.com -# ||cpm.biz^$third-party (easylist.txt: 25374) -.cpm.biz -# ||cpfclassifieds.com^$third-party (easylist.txt: 25373) -.cpfclassifieds.com -# ||cpcadnet.com^$third-party (easylist.txt: 25372) -.cpcadnet.com -# ||cpays.com^$third-party (easylist.txt: 25371) -.cpays.com -# ||cpaway.com^$third-party (easylist.txt: 25370) -.cpaway.com -# ||cpanuk.com^$third-party (easylist.txt: 25369) -.cpanuk.com -# ||cpalock.com^$third-party (easylist.txt: 25368) -.cpalock.com -# ||cpalead.com^$third-party (easylist.txt: 25367) -.cpalead.com -# ||cpagrip.com^$third-party (easylist.txt: 25366) -.cpagrip.com -# ||cpaclickz.com^$third-party (easylist.txt: 25365) -.cpaclickz.com -# ||cpaclicks.com^$third-party (easylist.txt: 25364) -.cpaclicks.com -# ||cpabeyond.com^$third-party (easylist.txt: 25363) -.cpabeyond.com -# ||covertarget.com^*_*.php (easylist.txt: 25362) -.covertarget.com/.*_.*\.php -# ||coupon2buy.com^$third-party (easylist.txt: 25361) -.coupon2buy.com -# ||coull.com^$third-party (easylist.txt: 25360) -.coull.com -# ||cosmjs.com^$third-party (easylist.txt: 25359) -.cosmjs.com -# ||cornflip.com^$third-party (easylist.txt: 25358) -.cornflip.com -# ||coretarget.co.uk^$third-party (easylist.txt: 25357) -.coretarget.co.uk -# ||cor-natty.com^$third-party (easylist.txt: 25356) -.cor-natty.com -# ||copacet.com^$third-party (easylist.txt: 25355) -.copacet.com -# ||coolmirage.com^$third-party (easylist.txt: 25354) -.coolmirage.com -# ||coolerads.com^$third-party (easylist.txt: 25353) -.coolerads.com -# ||contextweb.com^$third-party (easylist.txt: 25352) -.contextweb.com -# ||contextuads.com^$third-party (easylist.txt: 25351) -.contextuads.com -# ||contextads.net^$third-party (easylist.txt: 25350) -.contextads.net -# ||contexlink.se^$third-party (easylist.txt: 25349) -.contexlink.se -# ||contentwidgets.net^$third-party (easylist.txt: 25348) -.contentwidgets.net -# ||contenture.com^$third-party (easylist.txt: 25347) -.contenture.com -# ||contentjs.com^$third-party (easylist.txt: 25346) -.contentjs.com -# ||contentdigital.info^$third-party (easylist.txt: 25345) -.contentdigital.info -# ||contentclick.co.uk^$third-party (easylist.txt: 25344) -.contentclick.co.uk -# ||content.ad^$third-party (easylist.txt: 25343) -.content.ad -# ||content-cooperation.com^$third-party (easylist.txt: 25342) -.content-cooperation.com -# ||contaxe.com^$third-party (easylist.txt: 25341) -.contaxe.com -# ||contadd.com^$third-party (easylist.txt: 25340) -.contadd.com -# ||consumergenepool.com^$third-party (easylist.txt: 25339) -.consumergenepool.com -# ||construment.com^$third-party (easylist.txt: 25338) -.construment.com -# ||connextra.com^$third-party (easylist.txt: 25337) -.connextra.com -# ||connexplace.com^$third-party (easylist.txt: 25336) -.connexplace.com -# ||connexity.net^$third-party (easylist.txt: 25335) -.connexity.net -# ||connectionads.com^$third-party (easylist.txt: 25334) -.connectionads.com -# ||connectedads.net^$third-party (easylist.txt: 25333) -.connectedads.net -# ||connatix.com^$third-party (easylist.txt: 25332) -.connatix.com -# ||conduit-services.com^$third-party (easylist.txt: 25331) -.conduit-services.com -# ||conduit-banners.com^$third-party (easylist.txt: 25330) -.conduit-banners.com -# ||comscore.com^$third-party (easylist.txt: 25329) -.comscore.com -# ||complive.link^$third-party (easylist.txt: 25328) -.complive.link -# ||completecarrd.com^$third-party (easylist.txt: 25327) -.completecarrd.com -# ||commissionmonster.com^$third-party (easylist.txt: 25326) -.commissionmonster.com -# ||commissionlounge.com^$third-party (easylist.txt: 25325) -.commissionlounge.com -# ||commissionfactory.com.au^$third-party (easylist.txt: 25324) -.commissionfactory.com.au -# ||commission.bz^$third-party (easylist.txt: 25323) -.commission.bz -# ||commission-junction.com^$third-party (easylist.txt: 25322) -.commission-junction.com -# ||comclick.com^$third-party (easylist.txt: 25321) -.comclick.com -# ||colliersads.com^$third-party (easylist.txt: 25320) -.colliersads.com -# ||collective-media.net^$third-party (easylist.txt: 25319) -.collective-media.net -# ||collection-day.com^$third-party (easylist.txt: 25318) -.collection-day.com -# ||coinadvert.net^$third-party (easylist.txt: 25317) -.coinadvert.net -# ||coguan.com^$third-party (easylist.txt: 25316) -.coguan.com -# ||cogsdigital.com^$third-party (easylist.txt: 25315) -.cogsdigital.com -# ||cogocast.net^$third-party (easylist.txt: 25314) -.cogocast.net -# ||coedmediagroup.com^$third-party (easylist.txt: 25313) -.coedmediagroup.com -# ||codigobarras.net^$third-party (easylist.txt: 25312) -.codigobarras.net -# ||codezap.com^$third-party (easylist.txt: 25311) -.codezap.com -# ||coadvertise.com^$third-party (easylist.txt: 25310) -.coadvertise.com -# ||cntdy.mobi^$third-party (easylist.txt: 25309) -.cntdy.mobi -# ||cnt.my^$third-party (easylist.txt: 25308) -.cnt.my -# ||cmllk1.info^$third-party (easylist.txt: 25307) -.cmllk1.info -# ||cmfads.com^$third-party (easylist.txt: 25306) -.cmfads.com -# ||clz3.net^$third-party (easylist.txt: 25305) -.clz3.net -# ||cltomedia.info^$third-party (easylist.txt: 25304) -.cltomedia.info -# ||cloudioo.net^$third-party (easylist.txt: 25303) -.cloudioo.net -# ||clnk.me^$third-party (easylist.txt: 25302) -.clnk.me -# ||clkrev.com^ (easylist.txt: 25301) -.clkrev.com -# ||clixtrac.com^$third-party (easylist.txt: 25300) -.clixtrac.com -# ||clixsense.com^$third-party (easylist.txt: 25299) -.clixsense.com -# ||clixgalore.com^$third-party (easylist.txt: 25298) -.clixgalore.com -# ||clickzxc.com^$third-party (easylist.txt: 25297) -.clickzxc.com -# ||clickxchange.com^$third-party (easylist.txt: 25296) -.clickxchange.com -# ||clickwinks.com^$third-party (easylist.txt: 25295) -.clickwinks.com -# ||clickupto.com^$third-party (easylist.txt: 25294) -.clickupto.com -# ||clicktripz.com^$third-party (easylist.txt: 25293) -.clicktripz.com -# ||clicktripz.co^$third-party (easylist.txt: 25292) -.clicktripz.co -# ||clickthrucash.com^$third-party (easylist.txt: 25291) -.clickthrucash.com -# ||clickterra.net^$third-party (easylist.txt: 25290) -.clickterra.net -# ||clicksurvey.mobi^$third-party (easylist.txt: 25289) -.clicksurvey.mobi -# ||clicksor.net^$third-party (easylist.txt: 25288) -.clicksor.net -# ||clicksor.com^$third-party (easylist.txt: 25287) -.clicksor.com -# ||clicks2count.com^$third-party (easylist.txt: 25286) -.clicks2count.com -# ||clickosmedia.com^$third-party (easylist.txt: 25285) -.clickosmedia.com -# ||clicknano.com^$third-party (easylist.txt: 25284) -.clicknano.com -# ||clickmyads.info^$third-party (easylist.txt: 25283) -.clickmyads.info -# ||clickkingdom.net^$third-party (easylist.txt: 25282) -.clickkingdom.net -# ||clickiocdn.com^$third-party (easylist.txt: 25281) -.clickiocdn.com -# ||clickintext.net^$third-party (easylist.txt: 25280) -.clickintext.net -# ||clickintext.com^$third-party (easylist.txt: 25279) -.clickintext.com -# ||clickfuse.com^$third-party (easylist.txt: 25278) -.clickfuse.com -# ||clickexperts.net^$third-party (easylist.txt: 25277) -.clickexperts.net -# ||clickexa.com^$third-party (easylist.txt: 25276) -.clickexa.com -# ||clickequations.net^$third-party (easylist.txt: 25275) -.clickequations.net -# ||clickcertain.com^$third-party (easylist.txt: 25274) -.clickcertain.com -# ||clickcash.com^$third-party (easylist.txt: 25273) -.clickcash.com -# ||clickbubbles.net^$third-party (easylist.txt: 25272) -.clickbubbles.net -# ||clickboothlnk.com^$third-party (easylist.txt: 25271) -.clickboothlnk.com -# ||clickbooth.com^$third-party (easylist.txt: 25270) -.clickbooth.com -# ||clickbet88.com^$third-party (easylist.txt: 25269) -.clickbet88.com -# ||clickagy.com^$third-party (easylist.txt: 25268) -.clickagy.com -# ||clickad.pl^$third-party (easylist.txt: 25267) -.clickad.pl -# ||clickable.com^$third-party (easylist.txt: 25266) -.clickable.com -# ||click4free.info^$third-party (easylist.txt: 25265) -.click4free.info -# ||click2jump.com^$third-party (easylist.txt: 25264) -.click2jump.com -# ||click.scour.com^$third-party (easylist.txt: 25263) -.click.scour.com -# ||clevv.com^$third-party (easylist.txt: 25262) -.clevv.com -# ||clente.com^$third-party (easylist.txt: 25261) -.clente.com -# ||clear-request.com^$third-party (easylist.txt: 25260) -.clear-request.com -# ||cleafs.com^$third-party (easylist.txt: 25259) -.cleafs.com -# ||cldlr.com^$third-party (easylist.txt: 25258) -.cldlr.com -# ||clayaim.com^$third-party (easylist.txt: 25257) -.clayaim.com -# ||claxonmedia.com^$third-party (easylist.txt: 25256) -.claxonmedia.com -# ||clash-media.com^$third-party (easylist.txt: 25255) -.clash-media.com -# ||clarityray.com^$third-party (easylist.txt: 25254) -.clarityray.com -# ||cjt1.net^$third-party (easylist.txt: 25253) -.cjt1.net -# ||citysite.net^$third-party (easylist.txt: 25252) -.citysite.net -# ||city-ads.de^$third-party (easylist.txt: 25251) -.city-ads.de -# ||cibleclick.com^$third-party (easylist.txt: 25250) -.cibleclick.com -# ||chronicads.com^$third-party (easylist.txt: 25249) -.chronicads.com -# ||chitika.net^$third-party (easylist.txt: 25248) -.chitika.net -# ||chitika.com^$third-party (easylist.txt: 25247) -.chitika.com -# ||chipleader.com^$third-party (easylist.txt: 25246) -.chipleader.com -# ||chinagrad.ru^$third-party (easylist.txt: 25245) -.chinagrad.ru -# ||china-netwave.com^$third-party (easylist.txt: 25244) -.china-netwave.com -# ||chicbuy.info^$third-party (easylist.txt: 25243) -.chicbuy.info -# ||cherytso.com^$third-party (easylist.txt: 25242) -.cherytso.com -# ||checkoutfree.com^$third-party (easylist.txt: 25241) -.checkoutfree.com -# ||checkmystats.com.au^$third-party (easylist.txt: 25240) -.checkmystats.com.au -# ||checkm8.com^$third-party (easylist.txt: 25239) -.checkm8.com -# ||charltonmedia.com^$third-party (easylist.txt: 25238) -.charltonmedia.com -# ||chanished.net^$third-party (easylist.txt: 25237) -.chanished.net -# ||chango.com^$third-party (easylist.txt: 25236) -.chango.com -# ||chameleon.ad^$third-party (easylist.txt: 25235) -.chameleon.ad -# ||cgecwm.org^$third-party (easylist.txt: 25234) -.cgecwm.org -# ||cerotop.com^$third-party (easylist.txt: 25233) -.cerotop.com -# ||centralnervous.net^$third-party (easylist.txt: 25232) -.centralnervous.net -# ||cdnservr.com^$third-party (easylist.txt: 25231) -.cdnservr.com -# ||cdnrl.com^$third-party (easylist.txt: 25230) -.cdnrl.com -# ||cdnads.com^$third-party (easylist.txt: 25229) -.cdnads.com -# ||cdna.tremormedia.com^$third-party (easylist.txt: 25228) -.cdna.tremormedia.com -# ||cdn.mobicow.com^$third-party (easylist.txt: 25227) -.cdn.mobicow.com -# ||cdn-image.com^$third-party (easylist.txt: 25226) -.cdn-image.com -# ||cd828.com^$third-party (easylist.txt: 25225) -.cd828.com -# ||cc-dt.com^$third-party (easylist.txt: 25224) -.cc-dt.com -# ||cbn.tbn.ru^$third-party (easylist.txt: 25223) -.cbn.tbn.ru -# ||cbleads.com^$third-party (easylist.txt: 25222) -.cbleads.com -# ||cbclicks.com^$third-party (easylist.txt: 25221) -.cbclicks.com -# ||cbclickbank.com^$third-party (easylist.txt: 25220) -.cbclickbank.com -# ||cbaazars.com^$third-party (easylist.txt: 25219) -.cbaazars.com -# ||cb-content.com^$third-party (easylist.txt: 25218) -.cb-content.com -# ||caygh.com^$third-party (easylist.txt: 25217) -.caygh.com -# ||castplatform.com^$third-party (easylist.txt: 25216) -.castplatform.com -# ||casterpretic.com^$third-party (easylist.txt: 25215) -.casterpretic.com -# ||caspion.com^$third-party (easylist.txt: 25214) -.caspion.com -# ||casino-zilla.com^$third-party (easylist.txt: 25213) -.casino-zilla.com -# ||cashworld.biz^$third-party (easylist.txt: 25212) -.cashworld.biz -# ||cashtrafic.info^$third-party (easylist.txt: 25211) -.cashtrafic.info -# ||cashtrafic.com^$third-party (easylist.txt: 25210) -.cashtrafic.com -# ||cashonvisit.com^$third-party (easylist.txt: 25209) -.cashonvisit.com -# ||cashmylinks.com^$third-party (easylist.txt: 25208) -.cashmylinks.com -# ||cashatgsc.com^$third-party (easylist.txt: 25207) -.cashatgsc.com -# ||cash4members.com^$third-party (easylist.txt: 25206) -.cash4members.com -# ||cash-duck.com^$third-party (easylist.txt: 25205) -.cash-duck.com -# ||casalemedia.com^$third-party (easylist.txt: 25204) -.casalemedia.com -# ||cartorkins.com^$third-party (easylist.txt: 25203) -.cartorkins.com -# ||carrier.bz^$third-party (easylist.txt: 25202) -.carrier.bz -# ||cardincraping.net^$third-party (easylist.txt: 25201) -.cardincraping.net -# ||carbonads.com^$third-party (easylist.txt: 25200) -.carbonads.com -# ||captifymedia.com^$third-party (easylist.txt: 25199) -.captifymedia.com -# ||captainad.com^$third-party (easylist.txt: 25198) -.captainad.com -# ||capitatmarket.com^$third-party (easylist.txt: 25197) -.capitatmarket.com -# ||capacitygrid.com^$third-party (easylist.txt: 25196) -.capacitygrid.com -# ||canoeklix.com^$third-party (easylist.txt: 25195) -.canoeklix.com -# ||campanja.com^$third-party (easylist.txt: 25194) -.campanja.com -# ||camleyads.info^$third-party (easylist.txt: 25193) -.camleyads.info -# ||c8.net.ua^$third-party (easylist.txt: 25192) -.c8.net.ua -# ||c-planet.net^$third-party (easylist.txt: 25191) -.c-planet.net -# ||c-on-text.com^$third-party (easylist.txt: 25190) -.c-on-text.com -# ||byzoo.org^$third-party (easylist.txt: 25189) -.byzoo.org -# ||byspot.com^$third-party (easylist.txt: 25188) -.byspot.com -# ||bwinpartypartners.com^$third-party (easylist.txt: 25187) -.bwinpartypartners.com -# ||buzzparadise.com^$third-party (easylist.txt: 25186) -.buzzparadise.com -# ||buzzcity.net^$third-party (easylist.txt: 25185) -.buzzcity.net -# ||buyt.in^$third-party (easylist.txt: 25184) -.buyt.in -# ||buysellads.com^$third-party (easylist.txt: 25183) -.buysellads.com -# ||buyorselltnhomes.com^$third-party (easylist.txt: 25182) -.buyorselltnhomes.com -# ||buyflood.com^$third-party (easylist.txt: 25181) -.buyflood.com -# ||buxp.org^$third-party (easylist.txt: 25180) -.buxp.org -# ||buxflow.com^$third-party (easylist.txt: 25179) -.buxflow.com -# ||buxept.com^$third-party (easylist.txt: 25178) -.buxept.com -# ||busterzaster.de^$third-party (easylist.txt: 25177) -.busterzaster.de -# ||businessclick.com^$third-party (easylist.txt: 25176) -.businessclick.com -# ||businesscare.com^$third-party (easylist.txt: 25175) -.businesscare.com -# ||burstnet.com^$third-party (easylist.txt: 25174) -.burstnet.com -# ||burnsoftware.info^$third-party (easylist.txt: 25173) -.burnsoftware.info -# ||burjam.com^$third-party (easylist.txt: 25172) -.burjam.com -# ||burbanked.info^$third-party (easylist.txt: 25171) -.burbanked.info -# ||bunny-net.com^$third-party (easylist.txt: 25170) -.bunny-net.com -# ||bunchofads.com^$third-party (easylist.txt: 25169) -.bunchofads.com -# ||bulletproofserving.com^$third-party (easylist.txt: 25168) -.bulletproofserving.com -# ||buildtrafficx.com^$third-party (easylist.txt: 25167) -.buildtrafficx.com -# ||budurl.com^$third-party (easylist.txt: 25166) -.budurl.com -# ||budgetedbauer.com^$third-party (easylist.txt: 25165) -.budgetedbauer.com -# ||bucketsofbanners.com^$third-party (easylist.txt: 25164) -.bucketsofbanners.com -# ||bubblesmedia.ru^$third-party (easylist.txt: 25163) -.bubblesmedia.ru -# ||bu520.com^$third-party (easylist.txt: 25162) -.bu520.com -# ||bttrack.com^$third-party (easylist.txt: 25161) -.bttrack.com -# ||bttbgroup.com^$third-party (easylist.txt: 25160) -.bttbgroup.com -# ||btrll.com^$third-party (easylist.txt: 25159) -.btrll.com -# ||btnibbler.com^$third-party (easylist.txt: 25158) -.btnibbler.com -# ||bstrtb.com^$third-party (easylist.txt: 25157) -.bstrtb.com -# ||brucelead.com^$third-party (easylist.txt: 25156) -.brucelead.com -# ||browsersfeedback.com^$third-party (easylist.txt: 25155) -.browsersfeedback.com -# ||broadstreetads.com^$third-party (easylist.txt: 25154) -.broadstreetads.com -# ||brightshare.com^$third-party (easylist.txt: 25153) -.brightshare.com -# ||brighteroption.com^$third-party (easylist.txt: 25152) -.brighteroption.com -# ||bridgetrack.com^$third-party (easylist.txt: 25151) -.bridgetrack.com -# ||brealtime.com^$third-party (easylist.txt: 25150) -.brealtime.com -# ||breadpro.com^$third-party (easylist.txt: 25149) -.breadpro.com -# ||bravenetmedianetwork.com^$third-party (easylist.txt: 25148) -.bravenetmedianetwork.com -# ||braside.ru^$third-party (easylist.txt: 25147) -.braside.ru -# ||brandreachsys.com^$third-party (easylist.txt: 25146) -.brandreachsys.com -# ||brandclik.com^$third-party (easylist.txt: 25145) -.brandclik.com -# ||brandaffinity.net^$third-party (easylist.txt: 25144) -.brandaffinity.net -# ||brandads.net^$third-party (easylist.txt: 25143) -.brandads.net -# ||brand.net^$third-party (easylist.txt: 25142) -.brand.net -# ||brand-display.com^$third-party (easylist.txt: 25141) -.brand-display.com -# ||branchr.com^$third-party (easylist.txt: 25140) -.branchr.com -# ||brainient.com^$third-party (easylist.txt: 25139) -.brainient.com -# ||br.rk.com^$third-party (easylist.txt: 25138) -.br.rk.com -# ||bptracking.com^$third-party (easylist.txt: 25137) -.bptracking.com -# ||boylesportsreklame.com^$third-party (easylist.txt: 25136) -.boylesportsreklame.com -# ||boydadvertising.co.uk^$third-party (easylist.txt: 25135) -.boydadvertising.co.uk -# ||bororas.com^$third-party (easylist.txt: 25134) -.bororas.com -# ||bormoni.ru^$third-party (easylist.txt: 25133) -.bormoni.ru -# ||boostclic.com^$third-party (easylist.txt: 25132) -.boostclic.com -# ||boostable.com^$third-party (easylist.txt: 25131) -.boostable.com -# ||booklandonline.info^$third-party (easylist.txt: 25130) -.booklandonline.info -# ||boo-box.com^$third-party (easylist.txt: 25129) -.boo-box.com -# ||bonusfapturbo.com^$third-party (easylist.txt: 25128) -.bonusfapturbo.com -# ||bokroet.com^$third-party (easylist.txt: 25127) -.bokroet.com -# ||bogads.com^$third-party (easylist.txt: 25126) -.bogads.com -# ||bnr.sys.lv^$third-party (easylist.txt: 25125) -.bnr.sys.lv -# ||bnmla.com^$third-party (easylist.txt: 25124) -.bnmla.com -# ||bnhtml.com^$third-party (easylist.txt: 25123) -.bnhtml.com -# ||bnetworx.com^$third-party (easylist.txt: 25122) -.bnetworx.com -# ||bmanpn.com^$third-party (easylist.txt: 25121) -.bmanpn.com -# ||blumi.to^$third-party (easylist.txt: 25120) -.blumi.to -# ||bluestreak.com^$third-party (easylist.txt: 25119) -.bluestreak.com -# ||blueadvertise.com^$third-party (easylist.txt: 25118) -.blueadvertise.com -# ||blogohertz.com^$third-party (easylist.txt: 25117) -.blogohertz.com -# ||blogherads.com^$third-party (easylist.txt: 25116) -.blogherads.com -# ||bloggerex.com^$third-party (easylist.txt: 25115) -.bloggerex.com -# ||blogclans.com^$third-party (easylist.txt: 25114) -.blogclans.com -# ||blogbannerexchange.com^$third-party (easylist.txt: 25113) -.blogbannerexchange.com -# ||blogads.com^$third-party (easylist.txt: 25112) -.blogads.com -# ||blinkadr.com^$third-party (easylist.txt: 25111) -.blinkadr.com -# ||blardenso.com^$third-party (easylist.txt: 25110) -.blardenso.com -# ||blamcity.com^$third-party (easylist.txt: 25109) -.blamcity.com -# ||blamads.com^$third-party (easylist.txt: 25108) -.blamads.com -# ||bjjingda.com^$third-party (easylist.txt: 25107) -.bjjingda.com -# ||bizzclick.com^$third-party (easylist.txt: 25106) -.bizzclick.com -# ||bizrotator.com^$third-party (easylist.txt: 25105) -.bizrotator.com -# ||bizographics.com^$third-party (easylist.txt: 25104) -.bizographics.com -# ||bitx.tv^$third-party (easylist.txt: 25103) -.bitx.tv -# ||bittads.com^$third-party (easylist.txt: 25102) -.bittads.com -# ||bitfalcon.tv^$third-party (easylist.txt: 25101) -.bitfalcon.tv -# ||bitcoinadvertisers.com^$third-party (easylist.txt: 25100) -.bitcoinadvertisers.com -# ||bitads.net^$third-party (easylist.txt: 25099) -.bitads.net -# ||binlayer.de^$third-party (easylist.txt: 25098) -.binlayer.de -# ||binlayer.com^$third-party (easylist.txt: 25097) -.binlayer.com -# ||bingo4affiliates.com^$third-party (easylist.txt: 25096) -.bingo4affiliates.com -# ||binaryoptionssystems.org^$third-party (easylist.txt: 25095) -.binaryoptionssystems.org -# ||bin-layer.ru^$third-party (easylist.txt: 25094) -.bin-layer.ru -# ||bin-layer.de^$third-party (easylist.txt: 25093) -.bin-layer.de -# ||bimlocal.com^$third-party (easylist.txt: 25092) -.bimlocal.com -# ||billypub.com^$third-party (easylist.txt: 25091) -.billypub.com -# ||bijscode.com^$third-party (easylist.txt: 25090) -.bijscode.com -# ||bigfineads.com^$third-party (easylist.txt: 25089) -.bigfineads.com -# ||bigadpoint.net^$third-party (easylist.txt: 25088) -.bigadpoint.net -# ||biemedia.com^$third-party (easylist.txt: 25087) -.biemedia.com -# ||bidvertiser.com^$third-party (easylist.txt: 25086) -.bidvertiser.com -# ||bidsystem.com^$third-party (easylist.txt: 25085) -.bidsystem.com -# ||bidgewatr.com^$third-party (easylist.txt: 25084) -.bidgewatr.com -# ||bh3.net^$third-party (easylist.txt: 25083) -.bh3.net -# ||bfast.com^$third-party (easylist.txt: 25082) -.bfast.com -# ||bettingpartners.com^$third-party (easylist.txt: 25081) -.bettingpartners.com -# ||betrad.com^$third-party (easylist.txt: 25080) -.betrad.com -# ||betoga.com^$third-party (easylist.txt: 25079) -.betoga.com -# ||betaffs.com^$third-party (easylist.txt: 25078) -.betaffs.com -# ||bet365affiliates.com^$third-party (easylist.txt: 25077) -.bet365affiliates.com -# ||bet3000partners.com^$third-party (easylist.txt: 25076) -.bet3000partners.com -# ||bestpricewala.com^$third-party (easylist.txt: 25075) -.bestpricewala.com -# ||bestonlinecoupons.com^$third-party (easylist.txt: 25074) -.bestonlinecoupons.com -# ||bestofferdirect.com^$third-party (easylist.txt: 25073) -.bestofferdirect.com -# ||besthitsnow.com^$third-party (easylist.txt: 25072) -.besthitsnow.com -# ||bestgameads.com^$third-party (easylist.txt: 25071) -.bestgameads.com -# ||bestforexpartners.com^$third-party (easylist.txt: 25070) -.bestforexpartners.com -# ||bestfindsite.com^$third-party (easylist.txt: 25069) -.bestfindsite.com -# ||bestdeals.ws^$third-party (easylist.txt: 25068) -.bestdeals.ws -# ||bestcasinopartner.com^$third-party (easylist.txt: 25067) -.bestcasinopartner.com -# ||beringmedia.com^$third-party (easylist.txt: 25066) -.beringmedia.com -# ||bepolite.eu^$third-party (easylist.txt: 25065) -.bepolite.eu -# ||bentdownload.com^$third-party (easylist.txt: 25064) -.bentdownload.com -# ||belvertising.be^$third-party (easylist.txt: 25063) -.belvertising.be -# ||belointeractive.com^$third-party (easylist.txt: 25062) -.belointeractive.com -# ||begun.ru^$third-party (easylist.txt: 25061) -.begun.ru -# ||beforescence.com^$third-party (easylist.txt: 25060) -.beforescence.com -# ||befade.com^$third-party (easylist.txt: 25059) -.befade.com -# ||beead.net^$third-party (easylist.txt: 25058) -.beead.net -# ||beead.co.uk^$third-party (easylist.txt: 25057) -.beead.co.uk -# ||bedorm.com^$third-party (easylist.txt: 25056) -.bedorm.com -# ||bebi.com^$third-party (easylist.txt: 25055) -.bebi.com -# ||beatchucknorris.com^$third-party (easylist.txt: 25054) -.beatchucknorris.com -# ||beaconads.com^$third-party (easylist.txt: 25053) -.beaconads.com -# ||bbuni.com^$third-party (easylist.txt: 25052) -.bbuni.com -# ||bbelements.com^$third-party (easylist.txt: 25051) -.bbelements.com -# ||basebanner.com^$third-party (easylist.txt: 25050) -.basebanner.com -# ||baronsoffers.com^$third-party (easylist.txt: 25049) -.baronsoffers.com -# ||bannerweb.com^$third-party (easylist.txt: 25048) -.bannerweb.com -# ||bannertracker-script.com^$third-party (easylist.txt: 25047) -.bannertracker-script.com -# ||bannertgt.com^$third-party (easylist.txt: 25046) -.bannertgt.com -# ||bannersurvey.biz^$third-party (easylist.txt: 25045) -.bannersurvey.biz -# ||bannersnack.net^$third-party (easylist.txt: 25044) -.bannersnack.net -# ||bannersnack.com^$third-party (easylist.txt: 25043) -.bannersnack.com -# ||bannersmania.com^$third-party (easylist.txt: 25042) -.bannersmania.com -# ||bannerrage.com^$third-party (easylist.txt: 25041) -.bannerrage.com -# ||bannerperformance.net^$third-party (easylist.txt: 25040) -.bannerperformance.net -# ||bannerlot.com^$third-party (easylist.txt: 25039) -.bannerlot.com -# ||bannerjammers.com^$third-party (easylist.txt: 25038) -.bannerjammers.com -# ||bannerignition.co.za^$third-party (easylist.txt: 25037) -.bannerignition.co.za -# ||bannerflux.com^$third-party (easylist.txt: 25036) -.bannerflux.com -# ||bannerflow.com^$third-party (easylist.txt: 25035) -.bannerflow.com -# ||bannerexchange.com.au^$third-party (easylist.txt: 25034) -.bannerexchange.com.au -# ||bannerdealer.com^$third-party (easylist.txt: 25033) -.bannerdealer.com -# ||bannerconnect.net^$third-party (easylist.txt: 25032) -.bannerconnect.net -# ||bannerconnect.com^$third-party (easylist.txt: 25031) -.bannerconnect.com -# ||bannercde.com^$third-party (easylist.txt: 25030) -.bannercde.com -# ||bannerbridge.net^$third-party (easylist.txt: 25029) -.bannerbridge.net -# ||bannerblasters.com^$third-party (easylist.txt: 25028) -.bannerblasters.com -# ||bannerbank.ru^$third-party (easylist.txt: 25027) -.bannerbank.ru -# ||banner-rotation.com^$third-party (easylist.txt: 25026) -.banner-rotation.com -# ||banner-clix.com^$third-party (easylist.txt: 25025) -.banner-clix.com -# ||bananaflippy.com^$third-party (easylist.txt: 25024) -.bananaflippy.com -# ||baldiro.de^$third-party (easylist.txt: 25023) -.baldiro.de -# ||badjocks.com^$third-party (easylist.txt: 25022) -.badjocks.com -# ||backlinks.com^$third-party (easylist.txt: 25021) -.backlinks.com -# ||backbeatmedia.com^$third-party (easylist.txt: 25020) -.backbeatmedia.com -# ||babbnrs.com^$third-party (easylist.txt: 25019) -.babbnrs.com -# ||b6508157d.website^$third-party (easylist.txt: 25018) -.b6508157d.website -# ||b117f8da23446a91387efea0e428392a.pl^$third-party (easylist.txt: 25017) -.b117f8da23446a91387efea0e428392a.pl -# ||azorbe.com^$third-party (easylist.txt: 25016) -.azorbe.com -# ||azoogleads.com^$third-party (easylist.txt: 25015) -.azoogleads.com -# ||azjmp.com^$third-party (easylist.txt: 25014) -.azjmp.com -# ||azads.com^$third-party (easylist.txt: 25013) -.azads.com -# ||ayboll.com^$third-party (easylist.txt: 25012) -.ayboll.com -# ||axill.com^$third-party (easylist.txt: 25011) -.axill.com -# ||awsurveys.com^$third-party (easylist.txt: 25010) -.awsurveys.com -# ||awsmer.com^$third-party (easylist.txt: 25009) -.awsmer.com -# ||awltovhc.com^$third-party (easylist.txt: 25008) -.awltovhc.com -# ||awin1.com^$third-party (easylist.txt: 25007) -.awin1.com -# ||awempire.com^$third-party (easylist.txt: 25006) -.awempire.com -# ||awaps.net^$third-party (easylist.txt: 25005) -.awaps.net -# ||avercarto.com^$third-party (easylist.txt: 25004) -.avercarto.com -# ||avazutracking.net^$third-party (easylist.txt: 25003) -.avazutracking.net -# ||avazu.net^$third-party (easylist.txt: 25002) -.avazu.net -# ||avalopaly.com^$third-party (easylist.txt: 25001) -.avalopaly.com -# ||avalanchers.com^$third-party (easylist.txt: 25000) -.avalanchers.com -# ||avads.co.uk^$third-party (easylist.txt: 24999) -.avads.co.uk -# ||automateyourlist.com^$third-party (easylist.txt: 24998) -.automateyourlist.com -# ||automatedtraffic.com^$third-party (easylist.txt: 24997) -.automatedtraffic.com -# ||auto-insurance-quotes-compare.com^$third-party (easylist.txt: 24996) -.auto-insurance-quotes-compare.com -# ||auto-im.com^$third-party (easylist.txt: 24995) -.auto-im.com -# ||auspipe.com^$third-party (easylist.txt: 24994) -.auspipe.com -# ||aunmdhxrco.com^$third-party (easylist.txt: 24993) -.aunmdhxrco.com -# ||august15download.com^$third-party (easylist.txt: 24992) -.august15download.com -# ||augmentad.net^$third-party (easylist.txt: 24991) -.augmentad.net -# ||auditude.com^$third-party (easylist.txt: 24990) -.auditude.com -# ||auditoire.ph^$third-party (easylist.txt: 24989) -.auditoire.ph -# ||audienceprofiler.com^$third-party (easylist.txt: 24988) -.audienceprofiler.com -# ||audiencefuel.com^$third-party (easylist.txt: 24987) -.audiencefuel.com -# ||audience2media.com^$third-party (easylist.txt: 24986) -.audience2media.com -# ||auctionnudge.com^$third-party (easylist.txt: 24985) -.auctionnudge.com -# ||au2m8.com^$third-party (easylist.txt: 24984) -.au2m8.com -# ||atwola.com^$third-party (easylist.txt: 24983) -.atwola.com -# ||atrinsic.com^$third-party (easylist.txt: 24982) -.atrinsic.com -# ||atomex.net^$third-party (easylist.txt: 24981) -.atomex.net -# ||ato.mx^$third-party (easylist.txt: 24980) -.ato.mx -# ||atmalinks.com^$third-party (easylist.txt: 24979) -.atmalinks.com -# ||atemda.com^$third-party (easylist.txt: 24978) -.atemda.com -# ||atadserver.com^$third-party (easylist.txt: 24977) -.atadserver.com -# ||astree.be^$third-party (easylist.txt: 24976) -.astree.be -# ||asterpix.com^$third-party (easylist.txt: 24975) -.asterpix.com -# ||assoc-amazon.it^$third-party (easylist.txt: 24974) -.assoc-amazon.it -# ||assoc-amazon.fr^$third-party (easylist.txt: 24973) -.assoc-amazon.fr -# ||assoc-amazon.es^$third-party (easylist.txt: 24972) -.assoc-amazon.es -# ||assoc-amazon.de^$third-party (easylist.txt: 24971) -.assoc-amazon.de -# ||assoc-amazon.com^$third-party (easylist.txt: 24970) -.assoc-amazon.com -# ||assoc-amazon.co.uk^$third-party (easylist.txt: 24969) -.assoc-amazon.co.uk -# ||assoc-amazon.ca^$third-party (easylist.txt: 24968) -.assoc-amazon.ca -# ||assetize.com^$third-party (easylist.txt: 24967) -.assetize.com -# ||asrety.com^$third-party (easylist.txt: 24966) -.asrety.com -# ||asooda.com^$third-party (easylist.txt: 24965) -.asooda.com -# ||asklots.com^$third-party (easylist.txt: 24964) -.asklots.com -# ||aseadnet.com^$third-party (easylist.txt: 24963) -.aseadnet.com -# ||asafesite.com^$third-party (easylist.txt: 24962) -.asafesite.com -# ||as5000.com^$third-party (easylist.txt: 24961) -.as5000.com -# ||as-farm.com^$third-party (easylist.txt: 24960) -.as-farm.com -# ||arti-mediagroup.com^$third-party (easylist.txt: 24959) -.arti-mediagroup.com -# ||areasnap.com^$third-party (easylist.txt: 24958) -.areasnap.com -# ||arcadechain.com^$third-party (easylist.txt: 24957) -.arcadechain.com -# ||arcadebe.com^$third-party (easylist.txt: 24956) -.arcadebe.com -# ||arcadebanners.com^$third-party (easylist.txt: 24955) -.arcadebanners.com -# ||arcadebannerexchange.org^$third-party (easylist.txt: 24954) -.arcadebannerexchange.org -# ||arcadebannerexchange.net^$third-party (easylist.txt: 24953) -.arcadebannerexchange.net -# ||arabweb.biz^$third-party (easylist.txt: 24952) -.arabweb.biz -# ||arab4eg.com^$third-party (easylist.txt: 24951) -.arab4eg.com -# ||apxlv.com^$third-party (easylist.txt: 24950) -.apxlv.com -# ||apsmediaagency.com^$third-party (easylist.txt: 24949) -.apsmediaagency.com -# ||april29-disp-download.com^$third-party (easylist.txt: 24948) -.april29-disp-download.com -# ||apptap.com^$third-party (easylist.txt: 24947) -.apptap.com -# ||apportium.com^$third-party (easylist.txt: 24946) -.apportium.com -# ||applebarq.com^$third-party (easylist.txt: 24945) -.applebarq.com -# ||appendad.com^$third-party (easylist.txt: 24944) -.appendad.com -# ||apmebf.com^$third-party (easylist.txt: 24943) -.apmebf.com -# ||apex-ad.com^$third-party (easylist.txt: 24942) -.apex-ad.com -# ||aorpum.com^$third-party (easylist.txt: 24941) -.aorpum.com -# ||aorms.com^$third-party (easylist.txt: 24940) -.aorms.com -# ||aoqneyvmaz.com^$third-party (easylist.txt: 24939) -.aoqneyvmaz.com -# ||anyxp.com^$third-party (easylist.txt: 24938) -.anyxp.com -# ||anymedia.lv^$third-party (easylist.txt: 24937) -.anymedia.lv -# ||anwufkjjja.com^$third-party (easylist.txt: 24936) -.anwufkjjja.com -# ||anrdoezrs.net^$third-party (easylist.txt: 24935) -.anrdoezrs.net -# ||anonymousads.com^$third-party (easylist.txt: 24934) -.anonymousads.com -# ||angege.com^$third-party (easylist.txt: 24933) -.angege.com -# ||anet*.tradedoubler.com^$third-party (easylist.txt: 24932) -.anet*./.*\.tradedoubler\.com[^\w%.-] -.anet*.tradedoubler.com -# ||andomediagroup.com^$third-party (easylist.txt: 24931) -.andomediagroup.com -# ||andomedia.com^$third-party (easylist.txt: 24930) -.andomedia.com -# ||andohs.net^$third-party (easylist.txt: 24929) -.andohs.net -# ||anastasiasaffiliate.com^$third-party (easylist.txt: 24928) -.anastasiasaffiliate.com -# ||ampxchange.com^$third-party (easylist.txt: 24927) -.ampxchange.com -# ||amgdgt.com^$third-party (easylist.txt: 24926) -.amgdgt.com -# ||amertazy.com^$third-party (easylist.txt: 24925) -.amertazy.com -# ||amazonily.com^$third-party (easylist.txt: 24924) -.amazonily.com -# ||amazon-cornerstone.com^$third-party (easylist.txt: 24923) -.amazon-cornerstone.com -# ||amazon-adsystem.com^$third-party (easylist.txt: 24922) -.amazon-adsystem.com -# ||am15.net^$third-party (easylist.txt: 24921) -.am15.net -# ||am11.ru^$third-party (easylist.txt: 24920) -.am11.ru -# ||am10.ru^$third-party (easylist.txt: 24919) -.am10.ru -# ||am-display.com^$third-party (easylist.txt: 24918) -.am-display.com -# ||altitude-arena.com^$third-party (easylist.txt: 24917) -.altitude-arena.com -# ||alternativeadverts.com^$third-party (easylist.txt: 24916) -.alternativeadverts.com -# ||alternads.info^$third-party (easylist.txt: 24915) -.alternads.info -# ||alphagodaddy.com^$third-party (easylist.txt: 24914) -.alphagodaddy.com -# ||alphabirdnetwork.com^$third-party (easylist.txt: 24913) -.alphabirdnetwork.com -# ||alphabird.com^$third-party (easylist.txt: 24912) -.alphabird.com -# ||allyes.com^$third-party (easylist.txt: 24911) -.allyes.com -# ||alloydigital.com^$third-party (easylist.txt: 24910) -.alloydigital.com -# ||allmt.com^$third-party (easylist.txt: 24909) -.allmt.com -# ||alleliteads.com^$third-party (easylist.txt: 24908) -.alleliteads.com -# ||allabc.com^$third-party (easylist.txt: 24907) -.allabc.com -# ||alimama.com^$third-party (easylist.txt: 24906) -.alimama.com -# ||alfynetwork.com^$third-party (easylist.txt: 24905) -.alfynetwork.com -# ||alchemysocial.com^$third-party (easylist.txt: 24904) -.alchemysocial.com -# ||ajansreklam.net^$third-party (easylist.txt: 24903) -.ajansreklam.net -# ||aimatch.com^$third-party (easylist.txt: 24902) -.aimatch.com -# ||aim4media.com^$third-party (easylist.txt: 24901) -.aim4media.com -# ||agvzvwof.com^$third-party (easylist.txt: 24900) -.agvzvwof.com -# ||agomwefq.com^$third-party (easylist.txt: 24899) -.agomwefq.com -# ||agmtrk.com^$third-party (easylist.txt: 24898) -.agmtrk.com -# ||aglocobanners.com^$third-party (easylist.txt: 24897) -.aglocobanners.com -# ||aggregateknowledge.com^$third-party (easylist.txt: 24896) -.aggregateknowledge.com -# ||agentcenters.com^$third-party (easylist.txt: 24895) -.agentcenters.com -# ||agcdn.com^$third-party (easylist.txt: 24894) -.agcdn.com -# ||afy11.net^$third-party (easylist.txt: 24893) -.afy11.net -# ||afterdownloads.com^$third-party (easylist.txt: 24892) -.afterdownloads.com -# ||afterdownload.com^$third-party (easylist.txt: 24891) -.afterdownload.com -# ||africawin.com^$third-party (easylist.txt: 24890) -.africawin.com -# ||aflrm.com^$third-party (easylist.txt: 24889) -.aflrm.com -# ||afftrack.com^$third-party (easylist.txt: 24888) -.afftrack.com -# ||affplanet.com^$third-party (easylist.txt: 24887) -.affplanet.com -# ||affiz.net^$third-party (easylist.txt: 24886) -.affiz.net -# ||affinity.com^$third-party (easylist.txt: 24885) -.affinity.com -# ||affinitad.com^$third-party (easylist.txt: 24884) -.affinitad.com -# ||affimo.de^$third-party (easylist.txt: 24883) -.affimo.de -# ||affiliserve.com^$third-party (easylist.txt: 24882) -.affiliserve.com -# ||affiliproducts.com^$third-party (easylist.txt: 24881) -.affiliproducts.com -# ||affilijack.de^$third-party (easylist.txt: 24880) -.affilijack.de -# ||affiliationzone.com^$third-party (easylist.txt: 24879) -.affiliationzone.com -# ||affiliationworld.com^$third-party (easylist.txt: 24878) -.affiliationworld.com -# ||affiliationcash.com^$third-party (easylist.txt: 24877) -.affiliationcash.com -# ||affiliation-france.com^$third-party (easylist.txt: 24876) -.affiliation-france.com -# ||affiliatesensor.com^$third-party (easylist.txt: 24875) -.affiliatesensor.com -# ||affiliatemembership.com^$third-party (easylist.txt: 24874) -.affiliatemembership.com -# ||affiliatelounge.com^$third-party (easylist.txt: 24873) -.affiliatelounge.com -# ||affiliategroove.com^$third-party (easylist.txt: 24872) -.affiliategroove.com -# ||affiliategateways.co^$third-party (easylist.txt: 24871) -.affiliategateways.co -# ||affiliatefuture.com^$third-party (easylist.txt: 24870) -.affiliatefuture.com -# ||affiliatefuel.com^$third-party (easylist.txt: 24869) -.affiliatefuel.com -# ||affiliateer.com^$third-party (easylist.txt: 24868) -.affiliateer.com -# ||affiliateedge.com^$third-party (easylist.txt: 24867) -.affiliateedge.com -# ||affiliatebannerfarm.com^$third-party (easylist.txt: 24866) -.affiliatebannerfarm.com -# ||affiliate.cx^$third-party (easylist.txt: 24865) -.affiliate.cx -# ||affiliate.com^$third-party (easylist.txt: 24864) -.affiliate.com -# ||affiliate-robot.com^$third-party (easylist.txt: 24863) -.affiliate-robot.com -# ||affiliate-gate.com^$third-party (easylist.txt: 24862) -.affiliate-gate.com -# ||affiliate-b.com^$third-party (easylist.txt: 24861) -.affiliate-b.com -# ||affec.tv^$third-party (easylist.txt: 24860) -.affec.tv -# ||affbuzzads.com^$third-party (easylist.txt: 24859) -.affbuzzads.com -# ||affbot8.com^$third-party (easylist.txt: 24858) -.affbot8.com -# ||affbot7.com^$third-party (easylist.txt: 24857) -.affbot7.com -# ||affbot3.com^$third-party (easylist.txt: 24856) -.affbot3.com -# ||affbot1.com^$third-party (easylist.txt: 24855) -.affbot1.com -# ||aff.biz^$third-party (easylist.txt: 24854) -.aff.biz -# ||aff-online.com^$third-party (easylist.txt: 24853) -.aff-online.com -# ||afdads.com^$third-party (easylist.txt: 24852) -.afdads.com -# ||afcyhf.com^$third-party (easylist.txt: 24851) -.afcyhf.com -# ||adzs.nl^$third-party (easylist.txt: 24850) -.adzs.nl -# ||adzouk.com^$third-party (easylist.txt: 24849) -.adzouk.com -# ||adzonk.com^$third-party (easylist.txt: 24848) -.adzonk.com -# ||adziff.com^$third-party (easylist.txt: 24847) -.adziff.com -# ||adzhub.com^$third-party (easylist.txt: 24846) -.adzhub.com -# ||adzerk.net^$third-party (easylist.txt: 24845) -.adzerk.net -# ||adzbazar.com^$third-party (easylist.txt: 24844) -.adzbazar.com -# ||adz.co.zw^$third-party (easylist.txt: 24843) -.adz.co.zw -# ||adyoz.com^$third-party (easylist.txt: 24842) -.adyoz.com -# ||adyoulike.com^$third-party (easylist.txt: 24841) -.adyoulike.com -# ||adxpower.com^$third-party (easylist.txt: 24840) -.adxpower.com -# ||adxpose.com^$third-party (easylist.txt: 24839) -.adxpose.com -# ||adxion.com^$third-party (easylist.txt: 24838) -.adxion.com -# ||adxcore.com^$third-party (easylist.txt: 24837) -.adxcore.com -# ||adworldmedia.net^$third-party (easylist.txt: 24836) -.adworldmedia.net -# ||adworldmedia.com^$third-party (easylist.txt: 24835) -.adworldmedia.com -# ||adworkmedia.com^$third-party (easylist.txt: 24834) -.adworkmedia.com -# ||adwordsservicapi.com^$third-party (easylist.txt: 24833) -.adwordsservicapi.com -# ||adwires.com^$third-party (easylist.txt: 24832) -.adwires.com -# ||advsnx.net^$third-party (easylist.txt: 24831) -.advsnx.net -# ||advrtice.com^$third-party (easylist.txt: 24830) -.advrtice.com -# ||advpoints.com^$third-party (easylist.txt: 24829) -.advpoints.com -# ||advombat.ru^$third-party (easylist.txt: 24828) -.advombat.ru -# ||advmedialtd.com^$third-party (easylist.txt: 24827) -.advmedialtd.com -# ||advmd.com^$third-party (easylist.txt: 24826) -.advmd.com -# ||adviva.net^$third-party (easylist.txt: 24825) -.adviva.net -# ||advgoogle.com^$third-party (easylist.txt: 24824) -.advgoogle.com -# ||advg.jp^$third-party (easylist.txt: 24823) -.advg.jp -# ||advertxi.com^$third-party (easylist.txt: 24822) -.advertxi.com -# ||advertur.ru^$third-party (easylist.txt: 24821) -.advertur.ru -# ||advertstream.com^$third-party (easylist.txt: 24820) -.advertstream.com -# ||advertstatic.com^$third-party (easylist.txt: 24819) -.advertstatic.com -# ||advertserve.com^$third-party (easylist.txt: 24818) -.advertserve.com -# ||advertrev.com^$third-party (easylist.txt: 24817) -.advertrev.com -# ||advertpay.net^$third-party (easylist.txt: 24816) -.advertpay.net -# ||advertone.ru^$third-party (easylist.txt: 24815) -.advertone.ru -# ||advertmedias.com^$third-party (easylist.txt: 24814) -.advertmedias.com -# ||advertmarketing.com^$third-party (easylist.txt: 24813) -.advertmarketing.com -# ||advertlets.com^$third-party (easylist.txt: 24812) -.advertlets.com -# ||advertlead.net^$third-party (easylist.txt: 24811) -.advertlead.net -# ||advertjunction.com^$third-party (easylist.txt: 24810) -.advertjunction.com -# ||advertisingvalue.info^$third-party (easylist.txt: 24809) -.advertisingvalue.info -# ||advertisingpath.net^$third-party (easylist.txt: 24808) -.advertisingpath.net -# ||advertisingiq.com^$third-party (easylist.txt: 24807) -.advertisingiq.com -# ||advertising365.com^$third-party (easylist.txt: 24806) -.advertising365.com -# ||advertising.com^$third-party (easylist.txt: 24805) -.advertising.com -# ||advertising-department.com^$third-party (easylist.txt: 24804) -.advertising-department.com -# ||advertiseyourgame.com^$third-party (easylist.txt: 24803) -.advertiseyourgame.com -# ||advertisespace.com^$third-party (easylist.txt: 24802) -.advertisespace.com -# ||advertisegame.com^$third-party (easylist.txt: 24801) -.advertisegame.com -# ||advertiseforfree.co.za^$third-party (easylist.txt: 24800) -.advertiseforfree.co.za -# ||advertise.com^$third-party (easylist.txt: 24799) -.advertise.com -# ||adverticum.net^$third-party (easylist.txt: 24798) -.adverticum.net -# ||adverteerdirect.nl^$third-party (easylist.txt: 24797) -.adverteerdirect.nl -# ||advertbox.us^$third-party (easylist.txt: 24796) -.advertbox.us -# ||advertarium.com.ua^$third-party (easylist.txt: 24795) -.advertarium.com.ua -# ||adverserve.net^$third-party (easylist.txt: 24794) -.adverserve.net -# ||adversalservers.com^$third-party (easylist.txt: 24793) -.adversalservers.com -# ||adversaldisplay.com^$third-party (easylist.txt: 24792) -.adversaldisplay.com -# ||adversal.com^$third-party (easylist.txt: 24791) -.adversal.com -# ||adventori.com^$third-party (easylist.txt: 24790) -.adventori.com -# ||advatar.to^$third-party (easylist.txt: 24789) -.advatar.to -# ||advard.com^$third-party (easylist.txt: 24788) -.advard.com -# ||advantageglobalmarketing.com^$third-party (easylist.txt: 24787) -.advantageglobalmarketing.com -# ||advanseads.com^$third-party (easylist.txt: 24786) -.advanseads.com -# ||adv9.net^$third-party (easylist.txt: 24785) -.adv9.net -# ||adv-adserver.com^$third-party (easylist.txt: 24784) -.adv-adserver.com -# ||adurr.com^$third-party (easylist.txt: 24783) -.adurr.com -# ||adulttds.com^$third-party (easylist.txt: 24782) -.adulttds.com -# ||adultimate.net^$third-party (easylist.txt: 24781) -.adultimate.net -# ||adultadworld.com^$third-party (easylist.txt: 24780) -.adultadworld.com -# ||adult-adv.com^$third-party (easylist.txt: 24779) -.adult-adv.com -# ||aduacni.com^$third-party (easylist.txt: 24778) -.aduacni.com -# ||adtwirl.com^$third-party (easylist.txt: 24777) -.adtwirl.com -# ||adtruism.com^$third-party (easylist.txt: 24776) -.adtruism.com -# ||adtrovert.com^$third-party (easylist.txt: 24775) -.adtrovert.com -# ||adtrix.com^$third-party (easylist.txt: 24774) -.adtrix.com -# ||adtrgt.com^$third-party (easylist.txt: 24773) -.adtrgt.com -# ||adtransfer.net^$third-party (easylist.txt: 24772) -.adtransfer.net -# ||adtrace.org^$third-party (easylist.txt: 24771) -.adtrace.org -# ||adtpix.com^$third-party (easylist.txt: 24770) -.adtpix.com -# ||adtotal.pl^$third-party (easylist.txt: 24769) -.adtotal.pl -# ||adtoox.com^$third-party (easylist.txt: 24768) -.adtoox.com -# ||adtomafusion.com^$third-party (easylist.txt: 24767) -.adtomafusion.com -# ||adtoma.com^$third-party (easylist.txt: 24766) -.adtoma.com -# ||adtology3.com^$third-party (easylist.txt: 24765) -.adtology3.com -# ||adtology2.com^$third-party (easylist.txt: 24764) -.adtology2.com -# ||adtology1.com^$third-party (easylist.txt: 24763) -.adtology1.com -# ||adtoll.com^$third-party (easylist.txt: 24762) -.adtoll.com -# ||adtoadd.com^$third-party (easylist.txt: 24761) -.adtoadd.com -# ||adtlgc.com^$third-party (easylist.txt: 24760) -.adtlgc.com -# ||adtgs.com^$third-party (easylist.txt: 24759) -.adtgs.com -# ||adteractive.com^$third-party (easylist.txt: 24758) -.adteractive.com -# ||adtegrity.net^$third-party (easylist.txt: 24757) -.adtegrity.net -# ||adtechus.com^$third-party (easylist.txt: 24756) -.adtechus.com -# ||adtech.de^$third-party (easylist.txt: 24755) -.adtech.de -# ||adtecc.com^$third-party (easylist.txt: 24754) -.adtecc.com -# ||adtdp.com^$third-party (easylist.txt: 24753) -.adtdp.com -# ||adtaily.pl^$third-party (easylist.txt: 24752) -.adtaily.pl -# ||adtaily.eu^$third-party (easylist.txt: 24751) -.adtaily.eu -# ||adtaily.com^$third-party (easylist.txt: 24750) -.adtaily.com -# ||adsymptotic.com^$third-party (easylist.txt: 24749) -.adsymptotic.com -# ||adsxgm.com^$third-party (easylist.txt: 24748) -.adsxgm.com -# ||adswizz.com^$third-party (easylist.txt: 24747) -.adswizz.com -# ||adsvert.com^$third-party (easylist.txt: 24746) -.adsvert.com -# ||adsurve.com^$third-party (easylist.txt: 24745) -.adsurve.com -# ||adsupply.com^$third-party (easylist.txt: 24744) -.adsupply.com -# ||adsupermarket.com^$third-party (easylist.txt: 24743) -.adsupermarket.com -# ||adsummos.net^$third-party (easylist.txt: 24742) -.adsummos.net -# ||adsterra.com^$third-party (easylist.txt: 24741) -.adsterra.com -# ||adstatic.com^$third-party (easylist.txt: 24740) -.adstatic.com -# ||adstargeting.com^$third-party (easylist.txt: 24739) -.adstargeting.com -# ||adssites.net^$third-party (easylist.txt: 24738) -.adssites.net -# ||adssend.net^$third-party (easylist.txt: 24737) -.adssend.net -# ||adsrvr.org^$third-party (easylist.txt: 24736) -.adsrvr.org -# ||adsrvmedia.net^$third-party (easylist.txt: 24735) -.adsrvmedia.net -# ||adsrvmedia.com^$third-party (easylist.txt: 24734) -.adsrvmedia.com -# ||adsrv.us^$third-party (easylist.txt: 24733) -.adsrv.us -# ||adsring.com^$third-party (easylist.txt: 24732) -.adsring.com -# ||adsrevenue.net^$third-party (easylist.txt: 24731) -.adsrevenue.net -# ||adspynet.com^$third-party (easylist.txt: 24730) -.adspynet.com -# ||adspruce.com^$third-party (easylist.txt: 24729) -.adspruce.com -# ||adspring.to^$third-party (easylist.txt: 24728) -.adspring.to -# ||adspirit.de^$third-party (easylist.txt: 24727) -.adspirit.de -# ||adspeed.com^$third-party (easylist.txt: 24726) -.adspeed.com -# ||adspdbl.com^$third-party (easylist.txt: 24725) -.adspdbl.com -# ||adsparc.net^$third-party (easylist.txt: 24724) -.adsparc.net -# ||adspaper.org^$third-party (easylist.txt: 24723) -.adspaper.org -# ||adsovo.com^$third-party (easylist.txt: 24722) -.adsovo.com -# ||adsopx.com^$third-party (easylist.txt: 24721) -.adsopx.com -# ||adsonar.com^$third-party (easylist.txt: 24720) -.adsonar.com -# ||adsniper.ru^$third-party (easylist.txt: 24719) -.adsniper.ru -# ||adsnext.net^$third-party (easylist.txt: 24718) -.adsnext.net -# ||adsnetworkserver.com^$third-party (easylist.txt: 24717) -.adsnetworkserver.com -# ||adsnative.com^$third-party (easylist.txt: 24716) -.adsnative.com -# ||adsmws.cloudapp.net^$third-party (easylist.txt: 24715) -.adsmws.cloudapp.net -# ||adsmoon.com^$third-party (easylist.txt: 24714) -.adsmoon.com -# ||adsmile.biz^$third-party (easylist.txt: 24713) -.adsmile.biz -# ||adsmedia.cc^$third-party (easylist.txt: 24712) -.adsmedia.cc -# ||adsmarket.es^$third-party (easylist.txt: 24711) -.adsmarket.es -# ||adsmarket.com^$third-party (easylist.txt: 24710) -.adsmarket.com -# ||adslot.com^$third-party (easylist.txt: 24709) -.adslot.com -# ||adslingers.com^$third-party (easylist.txt: 24708) -.adslingers.com -# ||adslidango.com^$third-party (easylist.txt: 24707) -.adslidango.com -# ||adskeeper.co.uk^$third-party (easylist.txt: 24706) -.adskeeper.co.uk -# ||adsinimages.com^$third-party (easylist.txt: 24705) -.adsinimages.com -# ||adsimilis.com^$third-party (easylist.txt: 24704) -.adsimilis.com -# ||adsignals.com^$third-party (easylist.txt: 24703) -.adsignals.com -# ||adshuffle.com^$third-party (easylist.txt: 24702) -.adshuffle.com -# ||adshot.de^$third-party (easylist.txt: 24701) -.adshot.de -# ||adshost2.com^$third-party (easylist.txt: 24700) -.adshost2.com -# ||adshost1.com^$third-party (easylist.txt: 24699) -.adshost1.com -# ||adshopping.com^$third-party (easylist.txt: 24698) -.adshopping.com -# ||adshexa.com^$third-party (easylist.txt: 24697) -.adshexa.com -# ||adshack.com^$third-party (easylist.txt: 24696) -.adshack.com -# ||adsfuse.com^$third-party (easylist.txt: 24695) -.adsfuse.com -# ||adsfundi.net^$third-party (easylist.txt: 24694) -.adsfundi.net -# ||adsfundi.com^$third-party (easylist.txt: 24693) -.adsfundi.com -# ||adsforindians.com^$third-party (easylist.txt: 24692) -.adsforindians.com -# ||adsfast.com^$third-party (easylist.txt: 24691) -.adsfast.com -# ||adsfactor.net^$third-party (easylist.txt: 24690) -.adsfactor.net -# ||adsfac.us^$third-party (easylist.txt: 24689) -.adsfac.us -# ||adsfac.net^$third-party (easylist.txt: 24688) -.adsfac.net -# ||adsfac.eu^$third-party (easylist.txt: 24687) -.adsfac.eu -# ||adservr.de^$third-party (easylist.txt: 24686) -.adservr.de -# ||adservpi.com^$third-party (easylist.txt: 24685) -.adservpi.com -# ||adservinginternational.com^$third-party (easylist.txt: 24684) -.adservinginternational.com -# ||adservingfactory.com^$third-party (easylist.txt: 24683) -.adservingfactory.com -# ||adservhere.com^$third-party (easylist.txt: 24682) -.adservhere.com -# ||adserverpub.com^$third-party (easylist.txt: 24681) -.adserverpub.com -# ||adserverplus.com^$third-party (easylist.txt: 24680) -.adserverplus.com -# ||adserver-fx.com^$third-party (easylist.txt: 24679) -.adserver-fx.com -# ||adserve.ph^$third-party (easylist.txt: 24678) -.adserve.ph -# ||adserve.com^$third-party (easylist.txt: 24677) -.adserve.com -# ||adserv8.com^$third-party (easylist.txt: 24676) -.adserv8.com -# ||adsensecamp.com^$third-party (easylist.txt: 24675) -.adsensecamp.com -# ||adsearcher.ru^$third-party (easylist.txt: 24674) -.adsearcher.ru -# ||adsdot.ph^$third-party (easylist.txt: 24673) -.adsdot.ph -# ||adsdk.com^$third-party (easylist.txt: 24672) -.adsdk.com -# ||adsclickingnetwork.com^$third-party (easylist.txt: 24671) -.adsclickingnetwork.com -# ||adscendmedia.com^$third-party (easylist.txt: 24670) -.adscendmedia.com -# ||adscampaign.net^$third-party (easylist.txt: 24669) -.adscampaign.net -# ||adscale.de^$third-party (easylist.txt: 24668) -.adscale.de -# ||adsbrook.com^$third-party (easylist.txt: 24667) -.adsbrook.com -# ||adsbookie.com^$third-party (easylist.txt: 24666) -.adsbookie.com -# ||adsame.com^$third-party (easylist.txt: 24665) -.adsame.com -# ||adsalvo.com^$third-party (easylist.txt: 24664) -.adsalvo.com -# ||adsafeprotected.com^$third-party (easylist.txt: 24663) -.adsafeprotected.com -# ||ads4cheap.com^$third-party (easylist.txt: 24662) -.ads4cheap.com -# ||ads2srv.com^$third-party (easylist.txt: 24661) -.ads2srv.com -# ||ads2ads.net^$third-party (easylist.txt: 24660) -.ads2ads.net -# ||ads01.com^$third-party (easylist.txt: 24659) -.ads01.com -# ||ads.intergi.com^$third-party (easylist.txt: 24658) -.ads.intergi.com -# ||ads-stats.com^$third-party (easylist.txt: 24657) -.ads-stats.com -# ||ads-elsevier.net^$third-party (easylist.txt: 24656) -.ads-elsevier.net -# ||ads-4u.com^$third-party (easylist.txt: 24655) -.ads-4u.com -# ||adrocket.com^$third-party (easylist.txt: 24654) -.adrocket.com -# ||adrise.de^$third-party (easylist.txt: 24653) -.adrise.de -# ||adrich.cash^$third-party (easylist.txt: 24652) -.adrich.cash -# ||adrevolver.com^$third-party (easylist.txt: 24651) -.adrevolver.com -# ||adresellers.com^$third-party (easylist.txt: 24650) -.adresellers.com -# ||adreadytractions.com^$third-party (easylist.txt: 24649) -.adreadytractions.com -# ||adready.com^$third-party (easylist.txt: 24648) -.adready.com -# ||adreactor.com^$third-party (easylist.txt: 24647) -.adreactor.com -# ||adrcdn.com^$third-party (easylist.txt: 24646) -.adrcdn.com -# ||adquest3d.com^$third-party (easylist.txt: 24645) -.adquest3d.com -# ||adquantix.com^$third-party (easylist.txt: 24644) -.adquantix.com -# ||adpushup.com^$third-party (easylist.txt: 24643) -.adpushup.com -# ||adprs.net^$third-party (easylist.txt: 24642) -.adprs.net -# ||adprovi.de^$third-party (easylist.txt: 24641) -.adprovi.de -# ||adprotected.com^$third-party (easylist.txt: 24640) -.adprotected.com -# ||adproper.info^$third-party (easylist.txt: 24639) -.adproper.info -# ||adprofit2share.com^$third-party (easylist.txt: 24638) -.adprofit2share.com -# ||adpremo.com^$third-party (easylist.txt: 24637) -.adpremo.com -# ||adpredictive.com^$third-party (easylist.txt: 24636) -.adpredictive.com -# ||adppv.com^$third-party (easylist.txt: 24635) -.adppv.com -# ||adpoper.com^$third-party (easylist.txt: 24634) -.adpoper.com -# ||adplxmd.com^$third-party (easylist.txt: 24633) -.adplxmd.com -# ||adplugg.com^$third-party (easylist.txt: 24632) -.adplugg.com -# ||adplex.media^$third-party (easylist.txt: 24631) -.adplex.media -# ||adplans.info^$third-party (easylist.txt: 24630) -.adplans.info -# ||adpionier.de^$third-party (easylist.txt: 24629) -.adpionier.de -# ||adpinion.com^$third-party (easylist.txt: 24628) -.adpinion.com -# ||adphreak.com^$third-party (easylist.txt: 24627) -.adphreak.com -# ||adperium.com^$third-party (easylist.txt: 24626) -.adperium.com -# ||adperfect.com^$third-party (easylist.txt: 24625) -.adperfect.com -# ||adpay.com^$third-party (easylist.txt: 24624) -.adpay.com -# ||adpath.mobi^$third-party (easylist.txt: 24623) -.adpath.mobi -# ||adparlor.com^$third-party (easylist.txt: 24622) -.adparlor.com -# ||adpacks.com^$third-party (easylist.txt: 24621) -.adpacks.com -# ||adowner.net^$third-party (easylist.txt: 24620) -.adowner.net -# ||adovida.com^$third-party (easylist.txt: 24619) -.adovida.com -# ||adotube.com^$third-party (easylist.txt: 24618) -.adotube.com -# ||adotomy.com^$third-party (easylist.txt: 24617) -.adotomy.com -# ||adotic.com^$third-party (easylist.txt: 24616) -.adotic.com -# ||adorika.net^$third-party (easylist.txt: 24615) -.adorika.net -# ||adorika.com^$third-party (easylist.txt: 24614) -.adorika.com -# ||adoptim.com^$third-party (easylist.txt: 24613) -.adoptim.com -# ||adoperator.com^$third-party (easylist.txt: 24612) -.adoperator.com -# ||adonweb.ru^$third-party (easylist.txt: 24611) -.adonweb.ru -# ||adonnews.com^$third-party (easylist.txt: 24610) -.adonnews.com -# ||adonly.com^$third-party (easylist.txt: 24609) -.adonly.com -# ||adonion.com^$third-party (easylist.txt: 24608) -.adonion.com -# ||adohana.com^$third-party (easylist.txt: 24607) -.adohana.com -# ||adocean.pl^$third-party (easylist.txt: 24606) -.adocean.pl -# ||adnxs1.com^$third-party (easylist.txt: 24605) -.adnxs1.com -# ||adnxs.net^$third-party (easylist.txt: 24604) -.adnxs.net -# ||adnxs.com^$third-party (easylist.txt: 24603) -.adnxs.com -# ||adnow.com^$third-party (easylist.txt: 24602) -.adnow.com -# ||adnoble.com^$third-party (easylist.txt: 24601) -.adnoble.com -# ||adnmore.co.kr^$third-party (easylist.txt: 24600) -.adnmore.co.kr -# ||adnium.com^$third-party (easylist.txt: 24599) -.adnium.com -# ||adnimation.com^$third-party (easylist.txt: 24598) -.adnimation.com -# ||adngin.com^$third-party (easylist.txt: 24597) -.adngin.com -# ||adnext.fr^$third-party (easylist.txt: 24596) -.adnext.fr -# ||adnetworkperformance.com^$third-party (easylist.txt: 24595) -.adnetworkperformance.com -# ||adnetworkme.com^$third-party (easylist.txt: 24594) -.adnetworkme.com -# ||adnet.vn^$third-party (easylist.txt: 24593) -.adnet.vn -# ||adnet.ru^$third-party (easylist.txt: 24592) -.adnet.ru -# ||adnet.lt^$third-party (easylist.txt: 24591) -.adnet.lt -# ||adnet.de^$third-party (easylist.txt: 24590) -.adnet.de -# ||adnet.com^$third-party (easylist.txt: 24589) -.adnet.com -# ||adnet.biz^$third-party (easylist.txt: 24588) -.adnet.biz -# ||adnet-media.net^$third-party (easylist.txt: 24587) -.adnet-media.net -# ||adnectar.com^$third-party (easylist.txt: 24586) -.adnectar.com -# ||adne.tv^$third-party (easylist.txt: 24585) -.adne.tv -# ||admzn.com^$third-party (easylist.txt: 24584) -.admzn.com -# ||admulti.com^$third-party (easylist.txt: 24583) -.admulti.com -# ||admtpmp127.com^$third-party (easylist.txt: 24582) -.admtpmp127.com -# ||admpads.com^$third-party (easylist.txt: 24581) -.admpads.com -# ||admngronline.com^$third-party (easylist.txt: 24580) -.admngronline.com -# ||admixer.net^$third-party (easylist.txt: 24579) -.admixer.net -# ||admitad.com^$third-party (easylist.txt: 24578) -.admitad.com -# ||admission.net^$third-party (easylist.txt: 24577) -.admission.net -# ||admeta.com^$third-party (easylist.txt: 24576) -.admeta.com -# ||admeld.com^$third-party (easylist.txt: 24575) -.admeld.com -# ||admedo.com^$third-party (easylist.txt: 24574) -.admedo.com -# ||admedias.net^$third-party (easylist.txt: 24573) -.admedias.net -# ||admedia.com^$third-party (easylist.txt: 24572) -.admedia.com -# ||admaya.in^$third-party (easylist.txt: 24571) -.admaya.in -# ||admaxim.com^$third-party (easylist.txt: 24570) -.admaxim.com -# ||admarketplace.net^$third-party (easylist.txt: 24569) -.admarketplace.net -# ||admanmedia.com^$third-party (easylist.txt: 24568) -.admanmedia.com -# ||admanage.com^$third-party (easylist.txt: 24567) -.admanage.com -# ||adman.gr^$third-party (easylist.txt: 24566) -.adman.gr -# ||admamba.com^$third-party (easylist.txt: 24565) -.admamba.com -# ||admailtiser.com^$third-party (easylist.txt: 24564) -.admailtiser.com -# ||admagnet.net^$third-party (easylist.txt: 24563) -.admagnet.net -# ||adm.fwmrm.net/p/mtvn_live/$object-subrequest,third-party (easylist.txt: 24562) -.adm.fwmrm.net/p/mtvn_live/ -# ||adlux.com^$third-party (easylist.txt: 24559) -.adlux.com -# ||adlure.biz^$third-party (easylist.txt: 24558) -.adlure.biz -# ||adlpartner.com^$third-party (easylist.txt: 24557) -.adlpartner.com -# ||adlooxtracking.com^$third-party (easylist.txt: 24556) -.adlooxtracking.com -# ||adloaded.com^$third-party (easylist.txt: 24555) -.adloaded.com -# ||adlisher.com^$third-party (easylist.txt: 24554) -.adlisher.com -# ||adlinx.info^$third-party (easylist.txt: 24553) -.adlinx.info -# ||adlink.net^$third-party (easylist.txt: 24552) -.adlink.net -# ||adlegend.com^$third-party (easylist.txt: 24551) -.adlegend.com -# ||adlayer.net^$third-party (easylist.txt: 24550) -.adlayer.net -# ||adkonekt.com^$third-party (easylist.txt: 24549) -.adkonekt.com -# ||adknowledge.com^$third-party (easylist.txt: 24548) -.adknowledge.com -# ||adklip.com^$third-party (easylist.txt: 24547) -.adklip.com -# ||adkick.net^$third-party (easylist.txt: 24546) -.adkick.net -# ||adkengage.com^$third-party (easylist.txt: 24545) -.adkengage.com -# ||adk2x.com^$third-party (easylist.txt: 24544) -.adk2x.com -# ||adk2.com^$third-party (easylist.txt: 24543) -.adk2.com -# ||adk2.co^$third-party (easylist.txt: 24542) -.adk2.co -# ||adjungle.com^$third-party (easylist.txt: 24541) -.adjungle.com -# ||adjuggler.net^$third-party (easylist.txt: 24540) -.adjuggler.net -# ||adjuggler.com^$third-party (easylist.txt: 24539) -.adjuggler.com -# ||adjug.com^$third-party (easylist.txt: 24538) -.adjug.com -# ||adjector.com^$third-party (easylist.txt: 24537) -.adjector.com -# ||adjal.com^$third-party (easylist.txt: 24536) -.adjal.com -# ||adition.com^$third-party (easylist.txt: 24535) -.adition.com -# ||adit-media.com^$third-party (easylist.txt: 24534) -.adit-media.com -# ||adisn.com^$third-party (easylist.txt: 24533) -.adisn.com -# ||adisfy.com^$third-party (easylist.txt: 24532) -.adisfy.com -# ||adireland.com^$third-party (easylist.txt: 24531) -.adireland.com -# ||adiqglobal.com^$third-party (easylist.txt: 24530) -.adiqglobal.com -# ||adip.ly^$third-party (easylist.txt: 24529) -.adip.ly -# ||adinterax.com^$third-party (easylist.txt: 24528) -.adinterax.com -# ||adintend.com^$third-party (easylist.txt: 24527) -.adintend.com -# ||adinfinity.com.au^$third-party (easylist.txt: 24526) -.adinfinity.com.au -# ||adindigo.com^$third-party (easylist.txt: 24525) -.adindigo.com -# ||adincon.com^$third-party (easylist.txt: 24524) -.adincon.com -# ||adinch.com^$third-party (easylist.txt: 24523) -.adinch.com -# ||adimpression.net^$third-party (easylist.txt: 24522) -.adimpression.net -# ||adimperia.com^$third-party (easylist.txt: 24521) -.adimperia.com -# ||adimpact.com^$third-party (easylist.txt: 24520) -.adimpact.com -# ||adimise.com^$third-party (easylist.txt: 24519) -.adimise.com -# ||adikteev.com^$third-party (easylist.txt: 24518) -.adikteev.com -# ||adigniter.org^$third-party (easylist.txt: 24517) -.adigniter.org -# ||adicate.com^$third-party (easylist.txt: 24516) -.adicate.com -# ||adhub.co.nz^$third-party (easylist.txt: 24515) -.adhub.co.nz -# ||adhostingsolutions.com^$third-party (easylist.txt: 24514) -.adhostingsolutions.com -# ||adhitzads.com^$third-party (easylist.txt: 24513) -.adhitzads.com -# ||adhigh.net^$third-party (easylist.txt: 24512) -.adhigh.net -# ||adhese.net^$third-party (easylist.txt: 24511) -.adhese.net -# ||adhese.com^$third-party (easylist.txt: 24510) -.adhese.com -# ||adhese.be^$third-party (easylist.txt: 24509) -.adhese.be -# ||adgrx.com^$third-party (easylist.txt: 24508) -.adgrx.com -# ||adgroups.com^$third-party (easylist.txt: 24507) -.adgroups.com -# ||adgoto.com^$third-party (easylist.txt: 24506) -.adgoto.com -# ||adgorithms.com^$third-party (easylist.txt: 24505) -.adgorithms.com -# ||adglare.net^$third-party (easylist.txt: 24504) -.adglare.net -# ||adglamour.net^$third-party (easylist.txt: 24503) -.adglamour.net -# ||adgitize.com^$third-party (easylist.txt: 24502) -.adgitize.com -# ||adgine.net^$third-party (easylist.txt: 24501) -.adgine.net -# ||adgila.com^$third-party (easylist.txt: 24500) -.adgila.com -# ||adgent007.com^$third-party (easylist.txt: 24499) -.adgent007.com -# ||adgebra.co.in^$third-party (easylist.txt: 24498) -.adgebra.co.in -# ||adgear.com^$third-party (easylist.txt: 24497) -.adgear.com -# ||adgatemedia.com^$third-party (easylist.txt: 24496) -.adgatemedia.com -# ||adgardener.com^$third-party (easylist.txt: 24495) -.adgardener.com -# ||adgalax.com^$third-party (easylist.txt: 24494) -.adgalax.com -# ||adfusion.com^$third-party (easylist.txt: 24493) -.adfusion.com -# ||adfunkyserver.com^$third-party (easylist.txt: 24492) -.adfunkyserver.com -# ||adfrontiers.com^$third-party (easylist.txt: 24491) -.adfrontiers.com -# ||adfrog.info^$third-party (easylist.txt: 24490) -.adfrog.info -# ||adfrika.com^$third-party (easylist.txt: 24489) -.adfrika.com -# ||adframesrc.com^$third-party (easylist.txt: 24488) -.adframesrc.com -# ||adform.net^$third-party (easylist.txt: 24487) -.adform.net -# ||adforgeinc.com^$third-party (easylist.txt: 24486) -.adforgeinc.com -# ||adforgames.com^$third-party (easylist.txt: 24485) -.adforgames.com -# ||adfootprints.com^$third-party (easylist.txt: 24484) -.adfootprints.com -# ||adfeedstrk.com^$third-party (easylist.txt: 24483) -.adfeedstrk.com -# ||adfactory88.com^$third-party (easylist.txt: 24482) -.adfactory88.com -# ||adf01.net^$third-party (easylist.txt: 24481) -.adf01.net -# ||adextent.com^$third-party (easylist.txt: 24480) -.adextent.com -# ||adexprts.com^$third-party (easylist.txt: 24479) -.adexprts.com -# ||adexprt.com^$third-party (easylist.txt: 24478) -.adexprt.com -# ||adexcite.com^$third-party (easylist.txt: 24477) -.adexcite.com -# ||adespresso.com^$third-party (easylist.txt: 24476) -.adespresso.com -# ||adengage.com^$third-party (easylist.txt: 24475) -.adengage.com -# ||ademails.com^$third-party (easylist.txt: 24474) -.ademails.com -# ||adelement.com^$third-party (easylist.txt: 24473) -.adelement.com -# ||adedy.com^$third-party (easylist.txt: 24472) -.adedy.com -# ||adecn.com^$third-party (easylist.txt: 24471) -.adecn.com -# ||addynamo.net^$third-party (easylist.txt: 24470) -.addynamo.net -# ||addynamix.com^$third-party (easylist.txt: 24469) -.addynamix.com -# ||addynamics.eu^$third-party (easylist.txt: 24468) -.addynamics.eu -# ||addroid.com^$third-party (easylist.txt: 24467) -.addroid.com -# ||addoer.com^$third-party (easylist.txt: 24466) -.addoer.com -# ||addiply.com^$third-party (easylist.txt: 24465) -.addiply.com -# ||addelive.com^$third-party (easylist.txt: 24464) -.addelive.com -# ||addaim.com^$third-party (easylist.txt: 24463) -.addaim.com -# ||adcru.com^$third-party (easylist.txt: 24462) -.adcru.com -# ||adcron.com^$third-party (easylist.txt: 24461) -.adcron.com -# ||adcount.in^$third-party (easylist.txt: 24460) -.adcount.in -# ||adconscious.com^$third-party (easylist.txt: 24459) -.adconscious.com -# ||adcolo.com^$third-party (easylist.txt: 24458) -.adcolo.com -# ||adcloud.net^$third-party (easylist.txt: 24457) -.adcloud.net -# ||adclickmedia.com^$third-party (easylist.txt: 24456) -.adclickmedia.com -# ||adclickafrica.com^$third-party (easylist.txt: 24455) -.adclickafrica.com -# ||adclick.pk^$third-party (easylist.txt: 24454) -.adclick.pk -# ||adclick.lv^$third-party (easylist.txt: 24453) -.adclick.lv -# ||adchoice.co.za^$third-party (easylist.txt: 24452) -.adchoice.co.za -# ||adchemical.com^$third-party (easylist.txt: 24451) -.adchemical.com -# ||adchap.com^$third-party (easylist.txt: 24450) -.adchap.com -# ||adcfrthyo.tk^$third-party (easylist.txt: 24449) -.adcfrthyo.tk -# ||adcentriconline.com^$third-party (easylist.txt: 24448) -.adcentriconline.com -# ||adcdnx.com^$third-party (easylist.txt: 24447) -.adcdnx.com -# ||adcde.com^$third-party (easylist.txt: 24446) -.adcde.com -# ||adcastplus.net^$third-party (easylist.txt: 24445) -.adcastplus.net -# ||adcash.com^$third-party (easylist.txt: 24444) -.adcash.com -# ||adcade.com^$third-party (easylist.txt: 24443) -.adcade.com -# ||adbuyer.com^$third-party (easylist.txt: 24442) -.adbuyer.com -# ||adbutler.com^$third-party (easylist.txt: 24441) -.adbutler.com -# ||adbureau.net^$third-party (easylist.txt: 24440) -.adbureau.net -# ||adbull.com^$third-party (easylist.txt: 24439) -.adbull.com -# ||adbrook.com^$third-party (easylist.txt: 24438) -.adbrook.com -# ||adbroo.com^$third-party (easylist.txt: 24437) -.adbroo.com -# ||adbrite.com^$third-party (easylist.txt: 24436) -.adbrite.com -# ||adbrau.com^$third-party (easylist.txt: 24435) -.adbrau.com -# ||adbooth.net^$third-party (easylist.txt: 24434) -.adbooth.net -# ||adboost.com^$third-party (easylist.txt: 24433) -.adboost.com -# ||adblade.com^$third-party (easylist.txt: 24432) -.adblade.com -# ||adbasket.net^$third-party (easylist.txt: 24431) -.adbasket.net -# ||adbard.net^$third-party (easylist.txt: 24430) -.adbard.net -# ||adapd.com^$third-party (easylist.txt: 24429) -.adapd.com -# ||adap.tv^$~object-subrequest,third-party (easylist.txt: 24428) -.adap.tv -# ||adaos-ads.net^$third-party (easylist.txt: 24427) -.adaos-ads.net -# ||adagora.com^$third-party (easylist.txt: 24426) -.adagora.com -# ||adadvisor.net^$third-party (easylist.txt: 24425) -.adadvisor.net -# ||adaction.se^$third-party (easylist.txt: 24424) -.adaction.se -# ||adacado.com^$third-party (easylist.txt: 24423) -.adacado.com -# ||ad6media.fr^$third-party (easylist.txt: 24422) -.ad6media.fr -# ||ad4game.com^$third-party (easylist.txt: 24421) -.ad4game.com -# ||ad2up.com^$third-party (easylist.txt: 24420) -.ad2up.com -# ||ad2adnetwork.biz^$third-party (easylist.txt: 24418) -.ad2adnetwork.biz -# ||ad2387.com^$third-party (easylist.txt: 24417) -.ad2387.com -# ||ad20.net^$third-party (easylist.txt: 24416) -.ad20.net -# ||ad134m.com^$third-party (easylist.txt: 24415) -.ad134m.com -# ||ad132m.com^$third-party (easylist.txt: 24414) -.ad132m.com -# ||ad131m.com^$third-party (easylist.txt: 24413) -.ad131m.com -# ||ad129m.com^$third-party (easylist.txt: 24412) -.ad129m.com -# ||ad128m.com^$third-party (easylist.txt: 24411) -.ad128m.com -# ||ad127m.com^$third-party (easylist.txt: 24410) -.ad127m.com -# ||ad125m.com^$third-party (easylist.txt: 24409) -.ad125m.com -# ||ad123m.com^$third-party (easylist.txt: 24408) -.ad123m.com -# ||ad122m.com^$third-party (easylist.txt: 24407) -.ad122m.com -# ||ad121m.com^$third-party (easylist.txt: 24406) -.ad121m.com -# ||ad120m.com^$third-party (easylist.txt: 24405) -.ad120m.com -# ||ad.yieldpartners.com^$third-party (easylist.txt: 24404) -.ad.yieldpartners.com -# ||ad.pxlad.io^$third-party (easylist.txt: 24403) -.ad.pxlad.io -# ||ad.mo.doubleclick.net/dartproxy/$third-party (easylist.txt: 24402) -.ad.mo.doubleclick.net/dartproxy/ -# ||ad.linksynergy.com^$third-party (easylist.txt: 24401) -.ad.linksynergy.com -# ||ad.doubleclick.net^$~object-subrequest,third-party (easylist.txt: 24400) -.ad.doubleclick.net -# ||ad.atdmt.com/i/a.js$third-party (easylist.txt: 24399) -.ad.atdmt.com/i/a\.js -# ||ad.atdmt.com/i/a.html$third-party (easylist.txt: 24398) -.ad.atdmt.com/i/a\.html -# ||ad-vice.biz^$third-party (easylist.txt: 24397) -.ad-vice.biz -# ||ad-stir.com^$third-party (easylist.txt: 24396) -.ad-stir.com -# ||ad-srv.net^$third-party (easylist.txt: 24395) -.ad-srv.net -# ||ad-sponsor.com^$third-party (easylist.txt: 24394) -.ad-sponsor.com -# ||ad-serverparc.nl^$third-party (easylist.txt: 24393) -.ad-serverparc.nl -# ||ad-server.co.za^$third-party (easylist.txt: 24392) -.ad-server.co.za -# ||ad-media.org^$third-party (easylist.txt: 24391) -.ad-media.org -# ||ad-maven.com^$third-party (easylist.txt: 24390) -.ad-maven.com -# ||ad-m.asia^$third-party (easylist.txt: 24389) -.ad-m.asia -# ||ad-indicator.com^$third-party (easylist.txt: 24388) -.ad-indicator.com -# ||ad-gbn.com^$third-party (easylist.txt: 24387) -.ad-gbn.com -# ||ad-flow.com^$third-party (easylist.txt: 24386) -.ad-flow.com -# ||ad-delivery.net^$third-party (easylist.txt: 24385) -.ad-delivery.net -# ||ad-clicks.com^$third-party (easylist.txt: 24384) -.ad-clicks.com -# ||ad-bay.com^$third-party (easylist.txt: 24383) -.ad-bay.com -# ||ad-balancer.net^$third-party (easylist.txt: 24382) -.ad-balancer.net -# ||ad-back.net^$third-party (easylist.txt: 24381) -.ad-back.net -# ||activedancer.com^$third-party (easylist.txt: 24380) -.activedancer.com -# ||actiondesk.com^$third-party (easylist.txt: 24379) -.actiondesk.com -# ||acronym.com^$third-party (easylist.txt: 24378) -.acronym.com -# ||acf-webmaster.net^$third-party (easylist.txt: 24377) -.acf-webmaster.net -# ||accuserveadsystem.com^$third-party (easylist.txt: 24376) -.accuserveadsystem.com -# ||accounts.pkr.com^$third-party (easylist.txt: 24375) -.accounts.pkr.com -# ||accmgr.com^$third-party (easylist.txt: 24374) -.accmgr.com -# ||access-mc.com^$third-party (easylist.txt: 24373) -.access-mc.com -# ||accelacomm.com^$third-party (easylist.txt: 24372) -.accelacomm.com -# ||abtracker.us^$third-party (easylist.txt: 24371) -.abtracker.us -# ||aboutads.quantcast.com^$third-party (easylist.txt: 24370) -.aboutads.quantcast.com -# ||abnad.net^$third-party (easylist.txt: 24369) -.abnad.net -# ||abletomeet.com^$third-party (easylist.txt: 24368) -.abletomeet.com -# ||aaa.dv0.info^$third-party (easylist.txt: 24367) -.aaa.dv0.info -# ||aaa.at4.info^$third-party (easylist.txt: 24366) -.aaa.at4.info -# ||aa.voice2page.com^$third-party (easylist.txt: 24365) -.aa.voice2page.com -# ||a5pub.com^$third-party (easylist.txt: 24364) -.a5pub.com -# ||a4dtrk.com^$third-party (easylist.txt: 24363) -.a4dtrk.com -# ||a433.com^$third-party (easylist.txt: 24362) -.a433.com -# ||a3pub.com^$third-party (easylist.txt: 24361) -.a3pub.com -# ||a2pub.com^$third-party (easylist.txt: 24360) -.a2pub.com -# ||a2dfp.net^$third-party (easylist.txt: 24359) -.a2dfp.net -# ||a.raasnet.com^$third-party (easylist.txt: 24358) -.a.raasnet.com -# ||a.ligatus.com^$third-party (easylist.txt: 24357) -.a.ligatus.com -# ||a.adroll.com^$third-party (easylist.txt: 24356) -.a.adroll.com -# ||a-static.com^$third-party (easylist.txt: 24355) -.a-static.com -# ||a-ads.com^$third-party (easylist.txt: 24354) -.a-ads.com -# ||9ts3tpia.com^$third-party (easylist.txt: 24353) -.9ts3tpia.com -# ||9d63c80da.pw^$third-party (easylist.txt: 24352) -.9d63c80da.pw -# ||97d73lsi.com^$third-party (easylist.txt: 24351) -.97d73lsi.com -# ||8yxupue8.com^$third-party (easylist.txt: 24350) -.8yxupue8.com -# ||888promos.com^$third-party (easylist.txt: 24349) -.888promos.com -# ||888medianetwork.com^$third-party (easylist.txt: 24348) -.888medianetwork.com -# ||888media.net^$third-party (easylist.txt: 24347) -.888media.net -# ||82d914.se^$third-party (easylist.txt: 24345) -.82d914.se -# ||7u8a8i88.com^$third-party (easylist.txt: 24344) -.7u8a8i88.com -# ||7search.com^$third-party (easylist.txt: 24343) -.7search.com -# ||7pud.com^$third-party (easylist.txt: 24342) -.7pud.com -# ||7insight.com^$third-party (easylist.txt: 24341) -.7insight.com -# ||78.140.131.214^ (easylist.txt: 24340) -.78.140.131.214 -# ||78.138.126.253^$third-party (easylist.txt: 24339) -.78.138.126.253 -# ||778669.com^$third-party (easylist.txt: 24338) -.778669.com -# ||777seo.com^$third-party (easylist.txt: 24337) -.777seo.com -# ||74.117.182.77^ (easylist.txt: 24336) -.74.117.182.77 -# ||64.20.60.123^$third-party (easylist.txt: 24335) -.64.20.60.123 -# ||63.225.61.4^$third-party (easylist.txt: 24334) -.63.225.61.4 -# ||600z.com^$third-party (easylist.txt: 24332) -.600z.com -# ||5gl1x9qc.com^$third-party (easylist.txt: 24331) -.5gl1x9qc.com -# ||5clickcashsoftware.com^$third-party (easylist.txt: 24330) -.5clickcashsoftware.com -# ||5advertise.com^$third-party (easylist.txt: 24329) -.5advertise.com -# ||5362367e.info^$third-party (easylist.txt: 24328) -.5362367e.info -# ||50.7.243.123^$third-party (easylist.txt: 24327) -.50.7.243.123 -# ||4wnet.com^$third-party (easylist.txt: 24326) -.4wnet.com -# ||4uvjosuc.com^$third-party (easylist.txt: 24325) -.4uvjosuc.com -# ||4e43ac9c.info^$third-party (easylist.txt: 24324) -.4e43ac9c.info -# ||4dsply.com^$third-party (easylist.txt: 24323) -.4dsply.com -# ||4affiliate.net^$third-party (easylist.txt: 24322) -.4affiliate.net -# ||46.165.197.231^ (easylist.txt: 24320) -.46.165.197.231 -# ||46.165.197.153^ (easylist.txt: 24319) -.46.165.197.153 -# ||43plc.com^$third-party (easylist.txt: 24318) -.43plc.com -# ||3t7euflv.com^$third-party (easylist.txt: 24317) -.3t7euflv.com -# ||3redlightfix.com^$third-party (easylist.txt: 24316) -.3redlightfix.com -# ||3rdads.com^$third-party (easylist.txt: 24315) -.3rdads.com -# ||3omb.com^$third-party (easylist.txt: 24314) -.3omb.com -# ||3lr67y45.com^$third-party (easylist.txt: 24313) -.3lr67y45.com -# ||3lift.com^$third-party (easylist.txt: 24312) -.3lift.com -# ||3cnce854.com^$third-party (easylist.txt: 24311) -.3cnce854.com -# ||365sbaffiliates.com^$third-party (easylist.txt: 24310) -.365sbaffiliates.com -# ||360yield.com^$third-party (easylist.txt: 24309) -.360yield.com -# ||360popads.com^$third-party (easylist.txt: 24308) -.360popads.com -# ||360installer.com^$third-party (easylist.txt: 24307) -.360installer.com -# ||360adstrack.com^$third-party (easylist.txt: 24306) -.360adstrack.com -# ||360ads.com^$third-party (easylist.txt: 24305) -.360ads.com -# ||350media.com^$third-party (easylist.txt: 24304) -.350media.com -# ||3393.com^$third-party (easylist.txt: 24303) -.3393.com -# ||32b4oilo.com^$third-party (easylist.txt: 24302) -.32b4oilo.com -# ||2xbpub.com^$third-party (easylist.txt: 24301) -.2xbpub.com -# ||2mdn.net^$~object-subrequest,third-party (easylist.txt: 24300) -.2mdn.net -# ||2mdn.net/dot.gif$object-subrequest,third-party (easylist.txt: 24298) -.2mdn.net/dot\.gif -# ||2mdn.info^$third-party (easylist.txt: 24297) -.2mdn.info -# ||2dpt.com^$third-party (easylist.txt: 24296) -.2dpt.com -# ||2d4c3872.info^$third-party (easylist.txt: 24295) -.2d4c3872.info -# ||2d4c3870.info^$third-party (easylist.txt: 24294) -.2d4c3870.info -# ||254a.com^$third-party (easylist.txt: 24293) -.254a.com -# ||247realmedia.com^$third-party (easylist.txt: 24292) -.247realmedia.com -# ||213.163.70.183^$third-party (easylist.txt: 24291) -.213.163.70.183 -# ||20dollars2surf.com^$third-party (easylist.txt: 24290) -.20dollars2surf.com -# ||206ads.com^$third-party (easylist.txt: 24288) -.206ads.com -# ||1yk851od.com^$third-party (easylist.txt: 24286) -.1yk851od.com -# ||1sadx.net^$third-party (easylist.txt: 24285) -.1sadx.net -# ||1phads.com^$third-party (easylist.txt: 24284) -.1phads.com -# ||1nimo.com^$third-party (easylist.txt: 24283) -.1nimo.com -# ||1empiredirect.com^$third-party (easylist.txt: 24282) -.1empiredirect.com -# ||1e0y.xyz^$third-party (easylist.txt: 24281) -.1e0y.xyz -# ||1clickdownloads.com^$third-party (easylist.txt: 24280) -.1clickdownloads.com -# ||1ccbt.com^$third-party (easylist.txt: 24279) -.1ccbt.com -# ||194.71.107.25^$third-party (easylist.txt: 24277) -.194.71.107.25 -# ||18clicks.com^$third-party (easylist.txt: 24276) -.18clicks.com -# ||188server.com^$third-party (easylist.txt: 24275) -.188server.com -# ||17a898bb.info^$third-party (easylist.txt: 24273) -.17a898bb.info -# ||17a898b9.info^$third-party (easylist.txt: 24272) -.17a898b9.info -# ||174.142.194.177^$third-party (easylist.txt: 24271) -.174.142.194.177 -# ||15f3c01c.info^$third-party (easylist.txt: 24270) -.15f3c01c.info -# ||15f3c01a.info^$third-party (easylist.txt: 24269) -.15f3c01a.info -# ||152media.com^$third-party (easylist.txt: 24268) -.152media.com -# ||12place.com^$third-party (easylist.txt: 24267) -.12place.com -# ||123date.me^$third-party (easylist.txt: 24266) -.123date.me -# ||1100i.com^$third-party (easylist.txt: 24265) -.1100i.com -# ||10pipsaffiliates.com^$third-party (easylist.txt: 24264) -.10pipsaffiliates.com -# ||10fbb07a4b0.se^$third-party (easylist.txt: 24263) -.10fbb07a4b0.se -# ||103092804.com^$third-party (easylist.txt: 24262) -.103092804.com -# ||101m3.com^$third-party (easylist.txt: 24261) -.101m3.com -# ||0icep80f.com^$third-party (easylist.txt: 24260) -.0icep80f.com -# ||007-gateway.com^$third-party (easylist.txt: 24259) -.007-gateway.com -# _popunder+$popup (easylist.txt: 7171) -/.*_popunder\+ -# ?zoneid=*_bannerid=$popup (easylist.txt: 7170) -/.*\?zoneid=.*_bannerid= -# ?iiadext=$popup (easylist.txt: 7169) -/.*\?iiadext= -# ?bannerid=*&punder=$popup (easylist.txt: 7168) -/.*\?bannerid=.*&punder= -# ?AdUrl=$popup (easylist.txt: 7167) -/.*\?AdUrl= -# =popunders&$popup (easylist.txt: 7166) -/.*=popunders& -# =popunder&$popup (easylist.txt: 7165) -/.*=popunder& -# ://adv.$popup (easylist.txt: 7164) -/.*://adv\. -adv.*. -# ://ads.$popup (easylist.txt: 7163) -/.*://ads\. -ads.*. -# /yesbaby.$popup (easylist.txt: 7162) -/(.*/)?yesbaby\. -yesbaby.*. -# /srvclk.php?$popup (easylist.txt: 7161) -/(.*/)?srvclk\.php\? -# /spopunder^$popup (easylist.txt: 7160) -/(.*/)?spopunder[^\w%.-] -# /showads/*$popup (easylist.txt: 7159) -/(.*/)?showads/.* -# /servlet/ajrotator/*$popup (easylist.txt: 7158) -/(.*/)?servlet/ajrotator/.* -# /rotator.php?$popup (easylist.txt: 7157) -/(.*/)?rotator\.php\? -# /redirect.spark?$popup,third-party (easylist.txt: 7156) -/(.*/)?redirect\.spark\? -# /Redirect.engine$popup (easylist.txt: 7155) -/(.*/)?Redirect\.engine -Redirect.engine*. -# /Redirect.eng?$popup (easylist.txt: 7154) -/(.*/)?Redirect\.eng\? -# /realmedia/ads/*$popup (easylist.txt: 7153) -/(.*/)?realmedia/ads/.* -# /punder.php$popup (easylist.txt: 7152) -/(.*/)?punder\.php -punder.php*. -# /promoredirect?*&campaign=*&zone=$popup (easylist.txt: 7151) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /popupads.$popup (easylist.txt: 7150) -/(.*/)?popupads\. -popupads.*. -# /popunder_$popup (easylist.txt: 7149) -/(.*/)?popunder_ -# /popunder.$popup (easylist.txt: 7148) -/(.*/)?popunder\. -popunder.*. -# /popout.$popup (easylist.txt: 7147) -/(.*/)?popout\. -popout.*. -# /lr.php?zoneid=$popup (easylist.txt: 7146) -/(.*/)?lr\.php\?zoneid= -# /fp.engine?$popup,third-party (easylist.txt: 7145) -/(.*/)?fp\.engine\? -# /bani/index.php?id=$popup (easylist.txt: 7144) -/(.*/)?bani/index\.php\?id= -# /afu.php?$popup (easylist.txt: 7143) -/(.*/)?afu\.php\? -# /advlink.$popup (easylist.txt: 7142) -/(.*/)?advlink\. -advlink.*. -# /adsynserveuserid=$popup (easylist.txt: 7141) -/(.*/)?adsynserveuserid= -# /adstream_sx.ads/*$popup (easylist.txt: 7140) -/(.*/)?adstream_sx\.ads/.* -# /adserver.$popup (easylist.txt: 7139) -/(.*/)?adserver\. -adserver.*. -# /adServe/sa?cid=$popup (easylist.txt: 7138) -/(.*/)?adServe/sa\?cid= -# /ads.htm$popup (easylist.txt: 7137) -/(.*/)?ads\.htm -ads.htm*. -# /AdHandler.aspx?$popup (easylist.txt: 7136) -/(.*/)?AdHandler\.aspx\? -# /adclick.$popup (easylist.txt: 7135) -/(.*/)?adclick\. -adclick.*. -# /ad_pop.php?$popup (easylist.txt: 7134) -/(.*/)?ad_pop\.php\? -# /ad132m/*$popup (easylist.txt: 7133) -/(.*/)?ad132m/.* -# /ad/window.php?$popup (easylist.txt: 7132) -/(.*/)?ad/window\.php\? -# /ad/display.php$popup (easylist.txt: 7131) -/(.*/)?ad/display\.php -# /ad.php|$popup (easylist.txt: 7130) -/(.*/)?ad\.php$ -ad.php -# /ad.php?zone$popup (easylist.txt: 7129) -/(.*/)?ad\.php\?zone -# /ad.php?tag=$popup (easylist.txt: 7128) -/(.*/)?ad\.php\?tag= -# /a/display.php?$popup (easylist.txt: 7127) -/(.*/)?a/display\.php\? -# /?reef=$popup (easylist.txt: 7126) -/(.*/)?\?reef= -# /?placement=*&redirect$popup (easylist.txt: 7125) -/(.*/)?\?placement=.*&redirect -# .engine?PlacementId=$popup (easylist.txt: 7124) -/.*\.engine\?PlacementId= -# .com/ads?$popup (easylist.txt: 7123) -/.*\.com/ads\? -.*.com/ads\? -# .com/?adv=$popup (easylist.txt: 7122) -/.*\.com/\?adv= -.*.com/\?adv= -# .co/ads/$popup (easylist.txt: 7121) -/.*\.co/ads/ -.*.co/ads/ -# -ads-campaign/$popup (easylist.txt: 7120) -/.*-ads-campaign/ -.*-ads-campaign -# &program=revshare&$popup (easylist.txt: 7119) -/.*&program=revshare& -# &popunder=$popup (easylist.txt: 7118) -/.*&popunder= -# &link_type=offer$popup,third-party (easylist.txt: 7117) -/.*&link_type=offer -# _a468x60. (easylist.txt: 7115) -/.*_a468x60\. -# _980x100. (easylist.txt: 7114) -/.*_980x100\. -# _970x30_ (easylist.txt: 7113) -/.*_970x30_ -# _960_90. (easylist.txt: 7112) -/.*_960_90\. -# _936x60. (easylist.txt: 7111) -/.*_936x60\. -# _900x350. (easylist.txt: 7110) -/.*_900x350\. -# _80x468. (easylist.txt: 7109) -/.*_80x468\. -# _800x80_ (easylist.txt: 7108) -/.*_800x80_ -# _800x100. (easylist.txt: 7107) -/.*_800x100\. -# _798x99_ (easylist.txt: 7106) -/.*_798x99_ -# _796x110_ (easylist.txt: 7105) -/.*_796x110_ -# _768x90_ (easylist.txt: 7104) -/.*_768x90_ -# _764x70_ (easylist.txt: 7103) -/.*_764x70_ -# _764x70. (easylist.txt: 7102) -/.*_764x70\. -# _760x90_ (easylist.txt: 7101) -/.*_760x90_ -# _760x100. (easylist.txt: 7100) -/.*_760x100\. -# _750x100. (easylist.txt: 7099) -/.*_750x100\. -# _745_90. (easylist.txt: 7098) -/.*_745_90\. -# _745_60. (easylist.txt: 7097) -/.*_745_60\. -# _730x90_ (easylist.txt: 7096) -/.*_730x90_ -# _730x60_ (easylist.txt: 7095) -/.*_730x60_ -# _730_440. (easylist.txt: 7094) -/.*_730_440\. -# _728x90v1. (easylist.txt: 7093) -/.*_728x90v1\. -# _728x90px_ (easylist.txt: 7092) -/.*_728x90px_ -# _728x90px. (easylist.txt: 7091) -/.*_728x90px\. -# _728x90px- (easylist.txt: 7090) -/.*_728x90px- -# _728x90pg_ (easylist.txt: 7089) -/.*_728x90pg_ -# _728x90b_ (easylist.txt: 7088) -/.*_728x90b_ -# _728x90a_ (easylist.txt: 7087) -/.*_728x90a_ -# _728x90a. (easylist.txt: 7086) -/.*_728x90a\. -# _728x90_ (easylist.txt: 7085) -/.*_728x90_ -# _728x901. (easylist.txt: 7084) -/.*_728x901\. -# _728x90/ (easylist.txt: 7083) -/.*_728x90/ -# _728x90. (easylist.txt: 7082) -/.*_728x90\. -# _728x90- (easylist.txt: 7081) -/.*_728x90- -# _728x90& (easylist.txt: 7080) -/.*_728x90& -# _728x60. (easylist.txt: 7079) -/.*_728x60\. -# _728x150. (easylist.txt: 7078) -/.*_728x150\. -# _728x-90. (easylist.txt: 7077) -/.*_728x-90\. -# _728by90_ (easylist.txt: 7076) -/.*_728by90_ -# _728_x_90_ (easylist.txt: 7075) -/.*_728_x_90_ -# _728_90_ (easylist.txt: 7074) -/.*_728_90_ -# _728_90. (easylist.txt: 7073) -/.*_728_90\. -# _728.htm (easylist.txt: 7072) -/.*_728\.htm -# _728-90_ (easylist.txt: 7071) -/.*_728-90_ -# _728-90. (easylist.txt: 7070) -/.*_728-90\. -# _720x90_ (easylist.txt: 7069) -/.*_720x90_ -# _720x90. (easylist.txt: 7068) -/.*_720x90\. -# _720_90. (easylist.txt: 7067) -/.*_720_90\. -# _700x200. (easylist.txt: 7066) -/.*_700x200\. -# _700_200_ (easylist.txt: 7065) -/.*_700_200_ -# _700_150_ (easylist.txt: 7064) -/.*_700_150_ -# _700_100_ (easylist.txt: 7063) -/.*_700_100_ -# _682x90_ (easylist.txt: 7062) -/.*_682x90_ -# _680x93_ (easylist.txt: 7061) -/.*_680x93_ -# _672x120_ (easylist.txt: 7060) -/.*_672x120_ -# _650x80_ (easylist.txt: 7059) -/.*_650x80_ -# _650x350. (easylist.txt: 7058) -/.*_650x350\. -# _638x200_ (easylist.txt: 7057) -/.*_638x200_ -# _620x203_ (easylist.txt: 7056) -/.*_620x203_ -# _600x90. (easylist.txt: 7055) -/.*_600x90\. -# _600x80. (easylist.txt: 7054) -/.*_600x80\. -# _600x180. (easylist.txt: 7053) -/.*_600x180\. -# _600x160. (easylist.txt: 7052) -/.*_600x160\. -# _600x120_ (easylist.txt: 7051) -/.*_600x120_ -# _600-90. (easylist.txt: 7050) -/.*_600-90\. -# _590x105. (easylist.txt: 7049) -/.*_590x105\. -# _585x75_ (easylist.txt: 7048) -/.*_585x75_ -# _585x75- (easylist.txt: 7047) -/.*_585x75- -# _580x100. (easylist.txt: 7046) -/.*_580x100\. -# _555x70. (easylist.txt: 7045) -/.*_555x70\. -# _550x150. (easylist.txt: 7044) -/.*_550x150\. -# _540_70_ (easylist.txt: 7043) -/.*_540_70_ -# _540_70. (easylist.txt: 7042) -/.*_540_70\. -# _500x440. (easylist.txt: 7041) -/.*_500x440\. -# _490-90_ (easylist.txt: 7040) -/.*_490-90_ -# _486x60_ (easylist.txt: 7039) -/.*_486x60_ -# _486x60. (easylist.txt: 7038) -/.*_486x60\. -# _480x60_ (easylist.txt: 7037) -/.*_480x60_ -# _480x60/ (easylist.txt: 7036) -/.*_480x60/ -# _480x60. (easylist.txt: 7035) -/.*_480x60\. -# _480x60- (easylist.txt: 7034) -/.*_480x60- -# _480_80_ (easylist.txt: 7033) -/.*_480_80_ -# _480_60. (easylist.txt: 7032) -/.*_480_60\. -# _468x90_ (easylist.txt: 7031) -/.*_468x90_ -# _468x90. (easylist.txt: 7030) -/.*_468x90\. -# _468x80_ (easylist.txt: 7029) -/.*_468x80_ -# _468x80/ (easylist.txt: 7028) -/.*_468x80/ -# _468x80. (easylist.txt: 7027) -/.*_468x80\. -# _468x80- (easylist.txt: 7026) -/.*_468x80- -# _468x6o_ (easylist.txt: 7025) -/.*_468x6o_ -# _468x60px_ (easylist.txt: 7024) -/.*_468x60px_ -# _468x60b. (easylist.txt: 7023) -/.*_468x60b\. -# _468x60_ (easylist.txt: 7022) -/.*_468x60_ -# _468x60/ (easylist.txt: 7021) -/.*_468x60/ -# _468x60. (easylist.txt: 7020) -/.*_468x60\. -# _468x60- (easylist.txt: 7019) -/.*_468x60- -# _468x120. (easylist.txt: 7018) -/.*_468x120\. -# _468x100_ (easylist.txt: 7017) -/.*_468x100_ -# _468x100. (easylist.txt: 7016) -/.*_468x100\. -# _468x060_ (easylist.txt: 7015) -/.*_468x060_ -# _468x060. (easylist.txt: 7014) -/.*_468x060\. -# _468x060- (easylist.txt: 7013) -/.*_468x060- -# _468_80_ (easylist.txt: 7012) -/.*_468_80_ -# _468_80. (easylist.txt: 7011) -/.*_468_80\. -# _468_60_ (easylist.txt: 7010) -/.*_468_60_ -# _468_60. (easylist.txt: 7009) -/.*_468_60\. -# _468_60- (easylist.txt: 7008) -/.*_468_60- -# _468.htm (easylist.txt: 7007) -/.*_468\.htm -# _468.gif (easylist.txt: 7006) -/.*_468\.gif -# _468-60. (easylist.txt: 7005) -/.*_468-60\. -# _465x110_ (easylist.txt: 7004) -/.*_465x110_ -# _460x60. (easylist.txt: 7003) -/.*_460x60\. -# _460_60. (easylist.txt: 7002) -/.*_460_60\. -# _438x60_ (easylist.txt: 7001) -/.*_438x60_ -# _438x60. (easylist.txt: 7000) -/.*_438x60\. -# _438x50. (easylist.txt: 6999) -/.*_438x50\. -# _420x80_ (easylist.txt: 6998) -/.*_420x80_ -# _420x80. (easylist.txt: 6997) -/.*_420x80\. -# _400x68. (easylist.txt: 6996) -/.*_400x68\. -# _400x60. (easylist.txt: 6995) -/.*_400x60\. -# _400-80. (easylist.txt: 6994) -/.*_400-80\. -# _370x270. (easylist.txt: 6993) -/.*_370x270\. -# _350x100. (easylist.txt: 6992) -/.*_350x100\. -# _350_100_ (easylist.txt: 6991) -/.*_350_100_ -# _350_100. (easylist.txt: 6990) -/.*_350_100\. -# _336x850. (easylist.txt: 6989) -/.*_336x850\. -# _336x280s. (easylist.txt: 6988) -/.*_336x280s\. -# _336x280a. (easylist.txt: 6987) -/.*_336x280a\. -# _336x280_ (easylist.txt: 6986) -/.*_336x280_ -# _336x120. (easylist.txt: 6985) -/.*_336x120\. -# _323x120_ (easylist.txt: 6984) -/.*_323x120_ -# _320x250_ (easylist.txt: 6983) -/.*_320x250_ -# _300x600_ (easylist.txt: 6982) -/.*_300x600_ -# _300x600. (easylist.txt: 6981) -/.*_300x600\. -# _300x250v2. (easylist.txt: 6980) -/.*_300x250v2\. -# _300x250px. (easylist.txt: 6979) -/.*_300x250px\. -# _300x250b. (easylist.txt: 6978) -/.*_300x250b\. -# _300x250a_ (easylist.txt: 6977) -/.*_300x250a_ -# _300x250_ (easylist.txt: 6976) -/.*_300x250_ -# _300x250. (easylist.txt: 6975) -/.*_300x250\. -# _300x250- (easylist.txt: 6974) -/.*_300x250- -# _300x160_ (easylist.txt: 6973) -/.*_300x160_ -# _300_60_ (easylist.txt: 6972) -/.*_300_60_ -# _300_250_ (easylist.txt: 6971) -/.*_300_250_ -# _300_250. (easylist.txt: 6970) -/.*_300_250\. -# _300.htm (easylist.txt: 6969) -/.*_300\.htm -# _300-250- (easylist.txt: 6968) -/.*_300-250- -# _200x600_ (easylist.txt: 6967) -/.*_200x600_ -# _180x450_ (easylist.txt: 6966) -/.*_180x450_ -# _180x300_ (easylist.txt: 6965) -/.*_180x300_ -# _160x600b. (easylist.txt: 6964) -/.*_160x600b\. -# _160x600_ (easylist.txt: 6963) -/.*_160x600_ -# _160x600/ (easylist.txt: 6962) -/.*_160x600/ -# _160x600. (easylist.txt: 6961) -/.*_160x600\. -# _160x600- (easylist.txt: 6960) -/.*_160x600- -# _160x600& (easylist.txt: 6959) -/.*_160x600& -# _160x500. (easylist.txt: 6958) -/.*_160x500\. -# _160x400. (easylist.txt: 6957) -/.*_160x400\. -# _160x350. (easylist.txt: 6956) -/.*_160x350\. -# _160x300_ (easylist.txt: 6955) -/.*_160x300_ -# _160x300. (easylist.txt: 6954) -/.*_160x300\. -# _160x290. (easylist.txt: 6953) -/.*_160x290\. -# _160x1600. (easylist.txt: 6952) -/.*_160x1600\. -# _160by600_ (easylist.txt: 6951) -/.*_160by600_ -# _160_600_ (easylist.txt: 6950) -/.*_160_600_ -# _160_600. (easylist.txt: 6949) -/.*_160_600\. -# _160-600. (easylist.txt: 6948) -/.*_160-600\. -# _150x700_ (easylist.txt: 6947) -/.*_150x700_ -# _140x600_ (easylist.txt: 6946) -/.*_140x600_ -# _140x600. (easylist.txt: 6945) -/.*_140x600\. -# _125x600_ (easylist.txt: 6944) -/.*_125x600_ -# _120x800a. (easylist.txt: 6943) -/.*_120x800a\. -# _120x60_ (easylist.txt: 6942) -/.*_120x60_ -# _120x600px. (easylist.txt: 6941) -/.*_120x600px\. -# _120x600a. (easylist.txt: 6940) -/.*_120x600a\. -# _120x600_ (easylist.txt: 6939) -/.*_120x600_ -# _120x600. (easylist.txt: 6938) -/.*_120x600\. -# _120x600- (easylist.txt: 6937) -/.*_120x600- -# _120x60. (easylist.txt: 6936) -/.*_120x60\. -# _120x500. (easylist.txt: 6935) -/.*_120x500\. -# _120x240_ (easylist.txt: 6934) -/.*_120x240_ -# _120x240. (easylist.txt: 6933) -/.*_120x240\. -# _120h600. (easylist.txt: 6932) -/.*_120h600\. -# _120_x_600. (easylist.txt: 6931) -/.*_120_x_600\. -# _120_600_ (easylist.txt: 6930) -/.*_120_600_ -# _120_600. (easylist.txt: 6929) -/.*_120_600\. -# _120_60. (easylist.txt: 6928) -/.*_120_60\. -# _115x220. (easylist.txt: 6927) -/.*_115x220\. -# _100x480_ (easylist.txt: 6926) -/.*_100x480_ -# =900x60; (easylist.txt: 6925) -/.*=900x60; -# =888x10; (easylist.txt: 6924) -/.*=888x10; -# =760x120& (easylist.txt: 6923) -/.*=760x120& -# =728x90_ (easylist.txt: 6922) -/.*=728x90_ -# =728x90; (easylist.txt: 6921) -/.*=728x90; -# =728x90/ (easylist.txt: 6920) -/.*=728x90/ -# =728x90, (easylist.txt: 6919) -/.*=728x90, -# =728x90& (easylist.txt: 6918) -/.*=728x90& -# =480x60; (easylist.txt: 6917) -/.*=480x60; -# =468x80_ (easylist.txt: 6916) -/.*=468x80_ -# =468x60_ (easylist.txt: 6915) -/.*=468x60_ -# =468x60; (easylist.txt: 6914) -/.*=468x60; -# =468x60/ (easylist.txt: 6913) -/.*=468x60/ -# =468x60, (easylist.txt: 6912) -/.*=468x60, -# =468x60& (easylist.txt: 6911) -/.*=468x60& -# =440x410; (easylist.txt: 6910) -/.*=440x410; -# =336x280; (easylist.txt: 6909) -/.*=336x280; -# =336x280, (easylist.txt: 6908) -/.*=336x280, -# =300x300; (easylist.txt: 6907) -/.*=300x300; -# =300x250_ (easylist.txt: 6906) -/.*=300x250_ -# =300x250; (easylist.txt: 6905) -/.*=300x250; -# =300x250/ (easylist.txt: 6904) -/.*=300x250/ -# =300x250, (easylist.txt: 6903) -/.*=300x250, -# =300x250& (easylist.txt: 6902) -/.*=300x250& -# =234x60_ (easylist.txt: 6901) -/.*=234x60_ -# =234x60; (easylist.txt: 6900) -/.*=234x60; -# =160x600; (easylist.txt: 6899) -/.*=160x600; -# =160x600, (easylist.txt: 6898) -/.*=160x600, -# =160x600& (easylist.txt: 6897) -/.*=160x600& -# =160x160; (easylist.txt: 6896) -/.*=160x160; -# =120x600; (easylist.txt: 6895) -/.*=120x600; -# =120x600, (easylist.txt: 6894) -/.*=120x600, -# 760x90.jpg| (easylist.txt: 6893) -/.*760x90\.jpg$ -.*760x90.jpg -# 750x90.gif| (easylist.txt: 6892) -/.*750x90\.gif$ -.*750x90.gif -# 750x80.swf| (easylist.txt: 6891) -/.*750x80\.swf$ -.*750x80.swf -# 728x90_2.jpg| (easylist.txt: 6890) -/.*728x90_2\.jpg$ -# 728x90.swf| (easylist.txt: 6889) -/.*728x90\.swf$ -.*728x90.swf -# 728x90.swf? (easylist.txt: 6888) -/.*728x90\.swf\? -# 728x90.png| (easylist.txt: 6887) -/.*728x90\.png$ -.*728x90.png -# 728x90.php| (easylist.txt: 6886) -/.*728x90\.php$ -.*728x90.php -# 728x90.php? (easylist.txt: 6885) -/.*728x90\.php\? -# 728x90.jpg| (easylist.txt: 6884) -/.*728x90\.jpg$ -.*728x90.jpg -# 728x90.htm| (easylist.txt: 6883) -/.*728x90\.htm$ -.*728x90.htm -# 728x90.html| (easylist.txt: 6882) -/.*728x90\.html$ -.*728x90.html -# 728x90.gif| (easylist.txt: 6881) -/.*728x90\.gif$ -.*728x90.gif -# 728x290.gif| (easylist.txt: 6880) -/.*728x290\.gif$ -.*728x290.gif -# 700x200.gif| (easylist.txt: 6879) -/.*700x200\.gif$ -.*700x200.gif -# 700_200.jpg| (easylist.txt: 6878) -/.*700_200\.jpg$ -# 700_200.gif| (easylist.txt: 6877) -/.*700_200\.gif$ -# 480x80.jpg| (easylist.txt: 6876) -/.*480x80\.jpg$ -.*480x80.jpg -# 480x60.png| (easylist.txt: 6875) -/.*480x60\.png$ -.*480x60.png -# 470x60.swf| (easylist.txt: 6874) -/.*470x60\.swf$ -.*470x60.swf -# 470x60.swf? (easylist.txt: 6873) -/.*470x60\.swf\? -# 470x60.jpg| (easylist.txt: 6872) -/.*470x60\.jpg$ -.*470x60.jpg -# 470x60.gif| (easylist.txt: 6871) -/.*470x60\.gif$ -.*470x60.gif -# 468x80.gif| (easylist.txt: 6870) -/.*468x80\.gif$ -.*468x80.gif -# 468x60_2.jpg| (easylist.txt: 6869) -/.*468x60_2\.jpg$ -# 468x60_1.gif| (easylist.txt: 6868) -/.*468x60_1\.gif$ -# 468x60.swf| (easylist.txt: 6867) -/.*468x60\.swf$ -.*468x60.swf -# 468x60.swf? (easylist.txt: 6866) -/.*468x60\.swf\? -# 468x60.php| (easylist.txt: 6865) -/.*468x60\.php$ -.*468x60.php -# 468x60.php? (easylist.txt: 6864) -/.*468x60\.php\? -# 468x60.jpg| (easylist.txt: 6863) -/.*468x60\.jpg$ -.*468x60.jpg -# 468x60.htm| (easylist.txt: 6862) -/.*468x60\.htm$ -.*468x60.htm -# 468x60.html| (easylist.txt: 6861) -/.*468x60\.html$ -.*468x60.html -# 468x60.gif| (easylist.txt: 6860) -/.*468x60\.gif$ -.*468x60.gif -# 468_60.gif| (easylist.txt: 6859) -/.*468_60\.gif$ -# 468-60.swf| (easylist.txt: 6858) -/.*468-60\.swf$ -.*468-60.swf -# 468-60.swf? (easylist.txt: 6857) -/.*468-60\.swf\? -# 468-60.gif| (easylist.txt: 6856) -/.*468-60\.gif$ -.*468-60.gif -# 460x70.jpg| (easylist.txt: 6855) -/.*460x70\.jpg$ -.*460x70.jpg -# 450x55.jpg| (easylist.txt: 6854) -/.*450x55\.jpg$ -.*450x55.jpg -# 160x6001.jpg| (easylist.txt: 6853) -/.*160x6001\.jpg$ -.*160x6001.jpg -# 160x600.swf| (easylist.txt: 6852) -/.*160x600\.swf$ -.*160x600.swf -# 160x600.swf? (easylist.txt: 6851) -/.*160x600\.swf\? -# 160x600.png| (easylist.txt: 6850) -/.*160x600\.png$ -.*160x600.png -# 160x600.php| (easylist.txt: 6849) -/.*160x600\.php$ -.*160x600.php -# 160x600.php? (easylist.txt: 6848) -/.*160x600\.php\? -# 160x600.jpg| (easylist.txt: 6847) -/.*160x600\.jpg$ -.*160x600.jpg -# 160x600.htm| (easylist.txt: 6846) -/.*160x600\.htm$ -.*160x600.htm -# 160x600.html| (easylist.txt: 6845) -/.*160x600\.html$ -.*160x600.html -# 160x600.gif| (easylist.txt: 6844) -/.*160x600\.gif$ -.*160x600.gif -# 160x300.gif| (easylist.txt: 6843) -/.*160x300\.gif$ -.*160x300.gif -# 133x394.gif| (easylist.txt: 6842) -/.*133x394\.gif$ -.*133x394.gif -# 125x600.swf| (easylist.txt: 6841) -/.*125x600\.swf$ -.*125x600.swf -# 125x600.swf? (easylist.txt: 6840) -/.*125x600\.swf\? -# 125x600.gif| (easylist.txt: 6839) -/.*125x600\.gif$ -.*125x600.gif -# 120x600.swf| (easylist.txt: 6838) -/.*120x600\.swf$ -.*120x600.swf -# 120x600.swf? (easylist.txt: 6837) -/.*120x600\.swf\? -# 120x600.png| (easylist.txt: 6836) -/.*120x600\.png$ -.*120x600.png -# 120x600.htm| (easylist.txt: 6835) -/.*120x600\.htm$ -.*120x600.htm -# 120x600.html| (easylist.txt: 6834) -/.*120x600\.html$ -.*120x600.html -# 120x600.gif| (easylist.txt: 6833) -/.*120x600\.gif$ -.*120x600.gif -# 120x600.gif? (easylist.txt: 6832) -/.*120x600\.gif\? -# 120x500.gif| (easylist.txt: 6831) -/.*120x500\.gif$ -.*120x500.gif -# 120-600.gif| (easylist.txt: 6830) -/.*120-600\.gif$ -.*120-600.gif -# /top728x90. (easylist.txt: 6829) -/(.*/)?top728x90\. -top728x90.*. -# /top728.html (easylist.txt: 6828) -/(.*/)?top728\.html -top728.html*. -# /top468.html (easylist.txt: 6827) -/(.*/)?top468\.html -top468.html*. -# /new300x250/* (easylist.txt: 6826) -/(.*/)?new300x250/.* -# /new160x600/* (easylist.txt: 6825) -/(.*/)?new160x600/.* -# /lightake728x90. (easylist.txt: 6824) -/(.*/)?lightake728x90\. -lightake728x90.*. -# /L300xH250/* (easylist.txt: 6823) -/(.*/)?L300xH250/.* -# /img/728_90 (easylist.txt: 6822) -/(.*/)?img/728_90 -# /img/468_60 (easylist.txt: 6821) -/(.*/)?img/468_60 -# /head486x60. (easylist.txt: 6820) -/(.*/)?head486x60\. -head486x60.*. -# /bottom728x90. (easylist.txt: 6819) -/(.*/)?bottom728x90\. -bottom728x90.*. -# /bottom728.html (easylist.txt: 6818) -/(.*/)?bottom728\.html -bottom728.html*. -# /ban468. (easylist.txt: 6817) -/(.*/)?ban468\. -ban468.*. -# /_iframe728x90. (easylist.txt: 6816) -/(.*/)?_iframe728x90\. -# /980x90. (easylist.txt: 6815) -/(.*/)?980x90\. -980x90.*. -# /960_60_ (easylist.txt: 6814) -/(.*/)?960_60_ -# /950_250. (easylist.txt: 6813) -/(.*/)?950_250\. -# /900x350_ (easylist.txt: 6812) -/(.*/)?900x350_ -# /900x130_ (easylist.txt: 6811) -/(.*/)?900x130_ -# /80x468_ (easylist.txt: 6810) -/(.*/)?80x468_ -# /800x90. (easylist.txt: 6809) -/(.*/)?800x90\. -800x90.*. -# /780x90. (easylist.txt: 6808) -/(.*/)?780x90\. -780x90.*. -# /768x90. (easylist.txt: 6807) -/(.*/)?768x90\. -768x90.*. -# /768x90- (easylist.txt: 6806) -/(.*/)?768x90- -768x90-*. -# /760x90_ (easylist.txt: 6805) -/(.*/)?760x90_ -# /760x120_ (easylist.txt: 6804) -/(.*/)?760x120_ -# /760x120. (easylist.txt: 6803) -/(.*/)?760x120\. -760x120.*. -# /750x100. (easylist.txt: 6802) -/(.*/)?750x100\. -750x100.*. -# /750-100. (easylist.txt: 6801) -/(.*/)?750-100\. -750-100.*. -# /728x90top. (easylist.txt: 6800) -/(.*/)?728x90top\. -728x90top.*. -# /728x90l. (easylist.txt: 6799) -/(.*/)?728x90l\. -728x90l.*. -# /728x90h. (easylist.txt: 6798) -/(.*/)?728x90h\. -728x90h.*. -# /728x90g. (easylist.txt: 6797) -/(.*/)?728x90g\. -728x90g.*. -# /728x90d. (easylist.txt: 6796) -/(.*/)?728x90d\. -728x90d.*. -# /728x90b/* (easylist.txt: 6795) -/(.*/)?728x90b/.* -# /728x90b. (easylist.txt: 6794) -/(.*/)?728x90b\. -728x90b.*. -# /728x90_ (easylist.txt: 6793) -/(.*/)?728x90_ -# /728x90? (easylist.txt: 6792) -/(.*/)?728x90\? -# /728x901. (easylist.txt: 6791) -/(.*/)?728x901\. -728x901.*. -# /728x90/* (easylist.txt: 6790) -/(.*/)?728x90/.* -# /728x90. (easylist.txt: 6789) -/(.*/)?728x90\. -728x90.*. -# /728x90- (easylist.txt: 6788) -/(.*/)?728x90- -728x90-*. -# /728x79_ (easylist.txt: 6787) -/(.*/)?728x79_ -# /728x180- (easylist.txt: 6786) -/(.*/)?728x180- -728x180-*. -# /728x15. (easylist.txt: 6785) -/(.*/)?728x15\. -728x15.*. -# /728by90_ (easylist.txt: 6784) -/(.*/)?728by90_ -# /728_90n. (easylist.txt: 6783) -/(.*/)?728_90n\. -# /728_90_ (easylist.txt: 6782) -/(.*/)?728_90_ -# /728_90/* (easylist.txt: 6781) -/(.*/)?728_90/.* -# /728_90. (easylist.txt: 6780) -/(.*/)?728_90\. -# /728_200_ (easylist.txt: 6779) -/(.*/)?728_200_ -# /728_200. (easylist.txt: 6778) -/(.*/)?728_200\. -# /728.html$subdocument (easylist.txt: 6777) -/(.*/)?728\.html -728.html*. -# /728-90_ (easylist.txt: 6776) -/(.*/)?728-90_ -# /728-90/* (easylist.txt: 6775) -/(.*/)?728-90/.* -# /728-90. (easylist.txt: 6774) -/(.*/)?728-90\. -728-90.*. -# /728-90- (easylist.txt: 6773) -/(.*/)?728-90- -728-90-*. -# /700x90. (easylist.txt: 6772) -/(.*/)?700x90\. -700x90.*. -# /700x250. (easylist.txt: 6771) -/(.*/)?700x250\. -700x250.*. -# /700x120. (easylist.txt: 6770) -/(.*/)?700x120\. -700x120.*. -# /700x100. (easylist.txt: 6769) -/(.*/)?700x100\. -700x100.*. -# /700_200. (easylist.txt: 6768) -/(.*/)?700_200\. -# /700_100_ (easylist.txt: 6767) -/(.*/)?700_100_ -# /660x60. (easylist.txt: 6766) -/(.*/)?660x60\. -660x60.*. -# /660x120_ (easylist.txt: 6765) -/(.*/)?660x120_ -# /640x80- (easylist.txt: 6764) -/(.*/)?640x80- -640x80-*. -# /640x100/* (easylist.txt: 6763) -/(.*/)?640x100/.* -# /60x468. (easylist.txt: 6762) -/(.*/)?60x468\. -60x468.*. -# /600x90. (easylist.txt: 6761) -/(.*/)?600x90\. -600x90.*. -# /600x75_ (easylist.txt: 6760) -/(.*/)?600x75_ -# /600x160_ (easylist.txt: 6759) -/(.*/)?600x160_ -# /600_90_ (easylist.txt: 6758) -/(.*/)?600_90_ -# /600_120_ (easylist.txt: 6757) -/(.*/)?600_120_ -# /600-90. (easylist.txt: 6756) -/(.*/)?600-90\. -600-90.*. -# /600-60. (easylist.txt: 6755) -/(.*/)?600-60\. -600-60.*. -# /540x80_ (easylist.txt: 6754) -/(.*/)?540x80_ -# /530x60_ (easylist.txt: 6753) -/(.*/)?530x60_ -# /500x90. (easylist.txt: 6752) -/(.*/)?500x90\. -500x90.*. -# /496_98_ (easylist.txt: 6751) -/(.*/)?496_98_ -# /486x60_ (easylist.txt: 6750) -/(.*/)?486x60_ -# /480x70_ (easylist.txt: 6749) -/(.*/)?480x70_ -# /480x60_ (easylist.txt: 6748) -/(.*/)?480x60_ -# /480x60/* (easylist.txt: 6747) -/(.*/)?480x60/.* -# /480x60. (easylist.txt: 6746) -/(.*/)?480x60\. -480x60.*. -# /480x60- (easylist.txt: 6745) -/(.*/)?480x60- -480x60-*. -# /480x030_ (easylist.txt: 6744) -/(.*/)?480x030_ -# /480x030. (easylist.txt: 6743) -/(.*/)?480x030\. -480x030.*. -# /475x150- (easylist.txt: 6742) -/(.*/)?475x150- -475x150-*. -# /470x030_ (easylist.txt: 6741) -/(.*/)?470x030_ -# /468x80g. (easylist.txt: 6740) -/(.*/)?468x80g\. -468x80g.*. -# /468x80b. (easylist.txt: 6739) -/(.*/)?468x80b\. -468x80b.*. -# /468x80_ (easylist.txt: 6738) -/(.*/)?468x80_ -# /468x80/* (easylist.txt: 6737) -/(.*/)?468x80/.* -# /468x80. (easylist.txt: 6736) -/(.*/)?468x80\. -468x80.*. -# /468x80- (easylist.txt: 6735) -/(.*/)?468x80- -468x80-*. -# /468x72_ (easylist.txt: 6734) -/(.*/)?468x72_ -# /468x72. (easylist.txt: 6733) -/(.*/)?468x72\. -468x72.*. -# /468x70- (easylist.txt: 6732) -/(.*/)?468x70- -468x70-*. -# /468x60v1_ (easylist.txt: 6731) -/(.*/)?468x60v1_ -# /468x60b. (easylist.txt: 6730) -/(.*/)?468x60b\. -468x60b.*. -# /468x60a_ (easylist.txt: 6729) -/(.*/)?468x60a_ -# /468x60a. (easylist.txt: 6728) -/(.*/)?468x60a\. -468x60a.*. -# /468x60_ (easylist.txt: 6727) -/(.*/)?468x60_ -# /468x60/* (easylist.txt: 6726) -/(.*/)?468x60/.* -# /468x60. (easylist.txt: 6725) -/(.*/)?468x60\. -468x60.*. -# /468x60- (easylist.txt: 6724) -/(.*/)?468x60- -468x60-*. -# /468x280_ (easylist.txt: 6723) -/(.*/)?468x280_ -# /468x280. (easylist.txt: 6722) -/(.*/)?468x280\. -468x280.*. -# /468x060_ (easylist.txt: 6721) -/(.*/)?468x060_ -# /468x060. (easylist.txt: 6720) -/(.*/)?468x060\. -468x060.*. -# /468_80/* (easylist.txt: 6719) -/(.*/)?468_80/.* -# /468_80. (easylist.txt: 6718) -/(.*/)?468_80\. -# /468_60_ (easylist.txt: 6717) -/(.*/)?468_60_ -# /468_60. (easylist.txt: 6716) -/(.*/)?468_60\. -# /468-60_ (easylist.txt: 6715) -/(.*/)?468-60_ -# /468-60. (easylist.txt: 6714) -/(.*/)?468-60\. -468-60.*. -# /468-60- (easylist.txt: 6713) -/(.*/)?468-60- -468-60-*. -# /468-20. (easylist.txt: 6712) -/(.*/)?468-20\. -468-20.*. -# /460x80_ (easylist.txt: 6711) -/(.*/)?460x80_ -# /460x60. (easylist.txt: 6710) -/(.*/)?460x60\. -460x60.*. -# /428x60. (easylist.txt: 6709) -/(.*/)?428x60\. -428x60.*. -# /400x297. (easylist.txt: 6708) -/(.*/)?400x297\. -400x297.*. -# /4-6-8x60. (easylist.txt: 6707) -/(.*/)?4-6-8x60\. -4-6-8x60.*. -# /340x85_ (easylist.txt: 6706) -/(.*/)?340x85_ -# /336x280_ (easylist.txt: 6705) -/(.*/)?336x280_ -# /336x280. (easylist.txt: 6704) -/(.*/)?336x280\. -336x280.*. -# /336x280- (easylist.txt: 6703) -/(.*/)?336x280- -336x280-*. -# /335x205_ (easylist.txt: 6702) -/(.*/)?335x205_ -# /320x250. (easylist.txt: 6701) -/(.*/)?320x250\. -320x250.*. -# /300x90_ (easylist.txt: 6700) -/(.*/)?300x90_ -# /300x350. (easylist.txt: 6699) -/(.*/)?300x350\. -300x350.*. -# /300x250px_ (easylist.txt: 6698) -/(.*/)?300x250px_ -# /300x250px- (easylist.txt: 6697) -/(.*/)?300x250px- -300x250px-*. -# /300x250b. (easylist.txt: 6696) -/(.*/)?300x250b\. -300x250b.*. -# /300x250_ (easylist.txt: 6695) -/(.*/)?300x250_ -# /300x250/* (easylist.txt: 6694) -/(.*/)?300x250/.* -# /300x250. (easylist.txt: 6693) -/(.*/)?300x250\. -300x250.*. -# /300x250- (easylist.txt: 6692) -/(.*/)?300x250- -300x250-*. -# /300x150_ (easylist.txt: 6691) -/(.*/)?300x150_ -# /300_250_ (easylist.txt: 6690) -/(.*/)?300_250_ -# /300.html$subdocument (easylist.txt: 6689) -/(.*/)?300\.html -300.html*. -# /300-250. (easylist.txt: 6688) -/(.*/)?300-250\. -300-250.*. -# /300-250- (easylist.txt: 6687) -/(.*/)?300-250- -300-250-*. -# /270x90- (easylist.txt: 6686) -/(.*/)?270x90- -270x90-*. -# /234x60/* (easylist.txt: 6685) -/(.*/)?234x60/.* -# /230x90_ (easylist.txt: 6684) -/(.*/)?230x90_ -# /190x600. (easylist.txt: 6683) -/(.*/)?190x600\. -190x600.*. -# /190_900. (easylist.txt: 6682) -/(.*/)?190_900\. -# /180x150- (easylist.txt: 6681) -/(.*/)?180x150- -180x150-*. -# /170x700. (easylist.txt: 6680) -/(.*/)?170x700\. -170x700.*. -# /160x600partner. (easylist.txt: 6679) -/(.*/)?160x600partner\. -160x600partner.*. -# /160x600_ (easylist.txt: 6678) -/(.*/)?160x600_ -# /160x600/* (easylist.txt: 6677) -/(.*/)?160x600/.* -# /160x600. (easylist.txt: 6676) -/(.*/)?160x600\. -160x600.*. -# /160x600- (easylist.txt: 6675) -/(.*/)?160x600- -160x600-*. -# /160x400_ (easylist.txt: 6674) -/(.*/)?160x400_ -# /160x400- (easylist.txt: 6673) -/(.*/)?160x400- -160x400-*. -# /160_600_ (easylist.txt: 6672) -/(.*/)?160_600_ -# /160_600. (easylist.txt: 6671) -/(.*/)?160_600\. -# /160.html$subdocument (easylist.txt: 6670) -/(.*/)?160\.html -160.html*. -# /160-600. (easylist.txt: 6669) -/(.*/)?160-600\. -160-600.*. -# /160-600- (easylist.txt: 6668) -/(.*/)?160-600- -160-600-*. -# /150x600_ (easylist.txt: 6667) -/(.*/)?150x600_ -# /150x300_ (easylist.txt: 6666) -/(.*/)?150x300_ -# /150x200- (easylist.txt: 6665) -/(.*/)?150x200- -150x200-*. -# /150_500. (easylist.txt: 6664) -/(.*/)?150_500\. -# /150-500. (easylist.txt: 6663) -/(.*/)?150-500\. -150-500.*. -# /130x600. (easylist.txt: 6662) -/(.*/)?130x600\. -130x600.*. -# /130x600- (easylist.txt: 6661) -/(.*/)?130x600- -130x600-*. -# /125x600_ (easylist.txt: 6660) -/(.*/)?125x600_ -# /125x600- (easylist.txt: 6659) -/(.*/)?125x600- -125x600-*. -# /125x400/* (easylist.txt: 6658) -/(.*/)?125x400/.* -# /125x300_ (easylist.txt: 6657) -/(.*/)?125x300_ -# /125x240/* (easylist.txt: 6656) -/(.*/)?125x240/.* -# /120x600_ (easylist.txt: 6655) -/(.*/)?120x600_ -# /120x600/* (easylist.txt: 6654) -/(.*/)?120x600/.* -# /120x600. (easylist.txt: 6653) -/(.*/)?120x600\. -120x600.*. -# /120x600- (easylist.txt: 6652) -/(.*/)?120x600- -120x600-*. -# /120x240_ (easylist.txt: 6651) -/(.*/)?120x240_ -# /120_600_ (easylist.txt: 6650) -/(.*/)?120_600_ -# /120_600/* (easylist.txt: 6649) -/(.*/)?120_600/.* -# /120_600. (easylist.txt: 6648) -/(.*/)?120_600\. -# /1200x70_ (easylist.txt: 6647) -/(.*/)?1200x70_ -# /120-600. (easylist.txt: 6646) -/(.*/)?120-600\. -120-600.*. -# /120-600- (easylist.txt: 6645) -/(.*/)?120-600- -120-600-*. -# .900x100. (easylist.txt: 6644) -/.*\.900x100\. -.*.900x100.*. -# .728x90_ (easylist.txt: 6643) -/.*\.728x90_ -# .728x90/ (easylist.txt: 6642) -/.*\.728x90/ -.*.728x90 -# .728x90. (easylist.txt: 6641) -/.*\.728x90\. -.*.728x90.*. -# .728x90- (easylist.txt: 6640) -/.*\.728x90- -.*.728x90-*. -# .650x100. (easylist.txt: 6639) -/.*\.650x100\. -.*.650x100.*. -# .480x60_ (easylist.txt: 6638) -/.*\.480x60_ -# .480x60/ (easylist.txt: 6637) -/.*\.480x60/ -.*.480x60 -# .480x60. (easylist.txt: 6636) -/.*\.480x60\. -.*.480x60.*. -# .480x60- (easylist.txt: 6635) -/.*\.480x60- -.*.480x60-*. -# .468x80_ (easylist.txt: 6634) -/.*\.468x80_ -# .468x80/ (easylist.txt: 6633) -/.*\.468x80/ -.*.468x80 -# .468x80. (easylist.txt: 6632) -/.*\.468x80\. -.*.468x80.*. -# .468x80- (easylist.txt: 6631) -/.*\.468x80- -.*.468x80-*. -# .468x60_ (easylist.txt: 6630) -/.*\.468x60_ -# .468x60/ (easylist.txt: 6629) -/.*\.468x60/ -.*.468x60 -# .468x60. (easylist.txt: 6628) -/.*\.468x60\. -.*.468x60.*. -# .468x60- (easylist.txt: 6627) -/.*\.468x60- -.*.468x60-*. -# .300x250_ (easylist.txt: 6626) -/.*\.300x250_ -# .300x250. (easylist.txt: 6625) -/.*\.300x250\. -.*.300x250.*. -# .160x600_ (easylist.txt: 6624) -/.*\.160x600_ -# .160x600. (easylist.txt: 6623) -/.*\.160x600\. -.*.160x600.*. -# .120x600. (easylist.txt: 6622) -/.*\.120x600\. -.*.120x600.*. -# -988x60. (easylist.txt: 6621) -/.*-988x60\. -.*-988x60.*. -# -980x60- (easylist.txt: 6620) -/.*-980x60- -.*-980x60-*. -# -800x150. (easylist.txt: 6619) -/.*-800x150\. -.*-800x150.*. -# -780x90- (easylist.txt: 6618) -/.*-780x90- -.*-780x90-*. -# -729x91- (easylist.txt: 6617) -/.*-729x91- -.*-729x91-*. -# -728x90px2. (easylist.txt: 6616) -/.*-728x90px2\. -.*-728x90px2.*. -# -728x90a_ (easylist.txt: 6615) -/.*-728x90a_ -# -728x90_ (easylist.txt: 6614) -/.*-728x90_ -# -728x90/ (easylist.txt: 6613) -/.*-728x90/ -.*-728x90 -# -728x90. (easylist.txt: 6612) -/.*-728x90\. -.*-728x90.*. -# -728x90- (easylist.txt: 6611) -/.*-728x90- -.*-728x90-*. -# -728x90& (easylist.txt: 6610) -/.*-728x90& -# -728.90. (easylist.txt: 6609) -/.*-728\.90\. -.*-728.90.*. -# -728-90. (easylist.txt: 6608) -/.*-728-90\. -.*-728-90.*. -# -720x90. (easylist.txt: 6607) -/.*-720x90\. -.*-720x90.*. -# -720x90- (easylist.txt: 6606) -/.*-720x90- -.*-720x90-*. -# -720x120- (easylist.txt: 6605) -/.*-720x120- -.*-720x120-*. -# -700-200. (easylist.txt: 6604) -/.*-700-200\. -.*-700-200.*. -# -600x90- (easylist.txt: 6603) -/.*-600x90- -.*-600x90-*. -# -600x70. (easylist.txt: 6602) -/.*-600x70\. -.*-600x70.*. -# -500x100. (easylist.txt: 6601) -/.*-500x100\. -.*-500x100.*. -# -486x60. (easylist.txt: 6600) -/.*-486x60\. -.*-486x60.*. -# -480x60_ (easylist.txt: 6599) -/.*-480x60_ -# -480x60/ (easylist.txt: 6598) -/.*-480x60/ -.*-480x60 -# -480x60. (easylist.txt: 6597) -/.*-480x60\. -.*-480x60.*. -# -480x60- (easylist.txt: 6596) -/.*-480x60- -.*-480x60-*. -# -480x120. (easylist.txt: 6595) -/.*-480x120\. -.*-480x120.*. -# -468x90. (easylist.txt: 6594) -/.*-468x90\. -.*-468x90.*. -# -468x80_ (easylist.txt: 6593) -/.*-468x80_ -# -468x80/ (easylist.txt: 6592) -/.*-468x80/ -.*-468x80 -# -468x80. (easylist.txt: 6591) -/.*-468x80\. -.*-468x80.*. -# -468x80- (easylist.txt: 6590) -/.*-468x80- -.*-468x80-*. -# -468x70. (easylist.txt: 6589) -/.*-468x70\. -.*-468x70.*. -# -468x60px- (easylist.txt: 6588) -/.*-468x60px- -.*-468x60px-*. -# -468x60_ (easylist.txt: 6587) -/.*-468x60_ -# -468x60/ (easylist.txt: 6586) -/.*-468x60/ -.*-468x60 -# -468x60. (easylist.txt: 6585) -/.*-468x60\. -.*-468x60.*. -# -468x60- (easylist.txt: 6584) -/.*-468x60- -.*-468x60-*. -# -468x060_ (easylist.txt: 6583) -/.*-468x060_ -# -468x060- (easylist.txt: 6582) -/.*-468x060- -.*-468x060-*. -# -468by60. (easylist.txt: 6581) -/.*-468by60\. -.*-468by60.*. -# -468_60. (easylist.txt: 6580) -/.*-468_60\. -# -468-60_ (easylist.txt: 6579) -/.*-468-60_ -# -468-60. (easylist.txt: 6578) -/.*-468-60\. -.*-468-60.*. -# -468-60- (easylist.txt: 6577) -/.*-468-60- -.*-468-60-*. -# -468-100. (easylist.txt: 6576) -/.*-468-100\. -.*-468-100.*. -# -460x68. (easylist.txt: 6575) -/.*-460x68\. -.*-460x68.*. -# -300x600. (easylist.txt: 6574) -/.*-300x600\. -.*-300x600.*. -# -300x250_ (easylist.txt: 6573) -/.*-300x250_ -# -300x250-$~xmlhttprequest (easylist.txt: 6572) -/.*-300x250- -.*-300x250-*. -# -300-250. (easylist.txt: 6571) -/.*-300-250\. -.*-300-250.*. -# -161x601- (easylist.txt: 6570) -/.*-161x601- -.*-161x601-*. -# -160x600b. (easylist.txt: 6569) -/.*-160x600b\. -.*-160x600b.*. -# -160x600_ (easylist.txt: 6568) -/.*-160x600_ -# -160x600. (easylist.txt: 6567) -/.*-160x600\. -.*-160x600.*. -# -160x600- (easylist.txt: 6566) -/.*-160x600- -.*-160x600-*. -# -160x400- (easylist.txt: 6565) -/.*-160x400- -.*-160x400-*. -# -160-600. (easylist.txt: 6564) -/.*-160-600\. -.*-160-600.*. -# -125x40- (easylist.txt: 6563) -/.*-125x40- -.*-125x40-*. -# -120x600c. (easylist.txt: 6562) -/.*-120x600c\. -.*-120x600c.*. -# -120x600_ (easylist.txt: 6561) -/.*-120x600_ -# -120x600. (easylist.txt: 6560) -/.*-120x600\. -.*-120x600.*. -# -120x600- (easylist.txt: 6559) -/.*-120x600- -.*-120x600-*. -# -120x60. (easylist.txt: 6558) -/.*-120x60\. -.*-120x60.*. -# -120x60- (easylist.txt: 6557) -/.*-120x60- -.*-120x60-*. -# -120x400. (easylist.txt: 6556) -/.*-120x400\. -.*-120x400.*. -# -120x300. (easylist.txt: 6555) -/.*-120x300\. -.*-120x300.*. -# -120x240. (easylist.txt: 6554) -/.*-120x240\. -.*-120x240.*. -# -120_600_ (easylist.txt: 6553) -/.*-120_600_ -# -120-600. (easylist.txt: 6552) -/.*-120-600\. -.*-120-600.*. -# ,970x90; (easylist.txt: 6551) -/.*,970x90; -# ,728x90, (easylist.txt: 6550) -/.*,728x90, -# ,468x60; (easylist.txt: 6549) -/.*,468x60; -# ,468x60- (easylist.txt: 6548) -/.*,468x60- -# ,160x600; (easylist.txt: 6547) -/.*,160x600; -# /wp-content/plugins/anti_ad_blocker/* (easylist.txt: 6545) -/(.*/)?wp-content/plugins/anti_ad_blocker/.* -# /wp-content/plugins/anti-block/* (easylist.txt: 6544) -/(.*/)?wp-content/plugins/anti-block/.* -# /no-adblock/* (easylist.txt: 6543) -/(.*/)?no-adblock/.* -# /fuckadblock. (easylist.txt: 6542) -/(.*/)?fuckadblock\. -fuckadblock.*. -# /FuckAdBlock-$script (easylist.txt: 6541) -/(.*/)?FuckAdBlock- -FuckAdBlock-*. -# /fuckadb.js (easylist.txt: 6540) -/(.*/)?fuckadb\.js -fuckadb.js*. -# /Disable%2BAdblock. (easylist.txt: 6539) -/(.*/)?Disable%2BAdblock\. -# /blockblock/blockblock.jquery.js (easylist.txt: 6538) -/(.*/)?blockblock/blockblock\.jquery\.js -# /antiadblock. (easylist.txt: 6536) -/(.*/)?antiadblock\. -antiadblock.*. -# /anti_ab. (easylist.txt: 6535) -/(.*/)?anti_ab\. -# /anti-adblock/*$~stylesheet (easylist.txt: 6534) -/(.*/)?anti-adblock/.* -# /adsblocker. (easylist.txt: 6533) -/(.*/)?adsblocker\. -adsblocker.*. -# /adbuddy. (easylist.txt: 6532) -/(.*/)?adbuddy\. -adbuddy.*. -# /adblockdetection. (easylist.txt: 6531) -/(.*/)?adblockdetection\. -adblockdetection.*. -# /adblockdetect. (easylist.txt: 6530) -/(.*/)?adblockdetect\. -adblockdetect.*. -# /adblock_logger. (easylist.txt: 6529) -/(.*/)?adblock_logger\. -# /adblock_detector2. (easylist.txt: 6528) -/(.*/)?adblock_detector2\. -# /adblock_detector. (easylist.txt: 6527) -/(.*/)?adblock_detector\. -# /adblock.gif? (easylist.txt: 6526) -/(.*/)?adblock\.gif\? -# /adblock-notify-by-bweb/* (easylist.txt: 6525) -/(.*/)?adblock-notify-by-bweb/.* -# /adblock-detect. (easylist.txt: 6524) -/(.*/)?adblock-detect\. -adblock-detect.*. -# /adblock-blocker/* (easylist.txt: 6523) -/(.*/)?adblock-blocker/.* -# /adblock-alerter/* (easylist.txt: 6522) -/(.*/)?adblock-alerter/.* -# /adb_detector. (easylist.txt: 6521) -/(.*/)?adb_detector\. -# /adb.min.js (easylist.txt: 6520) -/(.*/)?adb\.min\.js -adb.min.js*. -# /ad-blocker.js (easylist.txt: 6519) -/(.*/)?ad-blocker\.js -ad-blocker.js*. -# -adblocker-detection/ (easylist.txt: 6518) -/.*-adblocker-detection/ -.*-adblocker-detection -# /jquery.peelback.js (easylist.txt: 6516) -/(.*/)?jquery\.peelback\.js -jquery.peelback.js*. -# /sl/assetlisting/? (easylist.txt: 6514) -/(.*/)?sl/assetlisting/\? -# /Tag.rb$script,third-party (easylist.txt: 6512) -/(.*/)?Tag\.rb -Tag.rb*. -# /Tag.eng$script,third-party (easylist.txt: 6511) -/(.*/)?Tag\.eng -Tag.eng*. -# /mediahosting.engine$script,third-party (easylist.txt: 6510) -/(.*/)?mediahosting\.engine -mediahosting.engine*. -# /cdn-cgi/pe/bag?r[]=*pubads.g.doubleclick.net (easylist.txt: 6508) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*pubads\.g\.doubleclick\.net -# /cdn-cgi/pe/bag?r[]=*cpalead.com (easylist.txt: 6507) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*cpalead\.com -# /cdn-cgi/pe/bag2?r[]=*srvpub.com (easylist.txt: 6506) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*srvpub\.com -# /cdn-cgi/pe/bag2?r[]=*revcontent.com (easylist.txt: 6505) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*revcontent\.com -# /cdn-cgi/pe/bag2?r[]=*popcash.net (easylist.txt: 6504) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popcash\.net -# /cdn-cgi/pe/bag2?r[]=*popads.net (easylist.txt: 6503) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# /cdn-cgi/pe/bag2?r[]=*linksmart.com (easylist.txt: 6502) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*linksmart\.com -# /cdn-cgi/pe/bag2?r[]=*juicyads.com (easylist.txt: 6501) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# /cdn-cgi/pe/bag2?r[]=*intellitxt.com (easylist.txt: 6500) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*intellitxt\.com -# /cdn-cgi/pe/bag2?r[]=*googleadservices.com (easylist.txt: 6499) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*googleadservices\.com -# /cdn-cgi/pe/bag2?r[]=*eclkspsa.com (easylist.txt: 6498) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkspsa\.com -# /cdn-cgi/pe/bag2?r[]=*eclkmpbn.com (easylist.txt: 6497) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkmpbn\.com -# /cdn-cgi/pe/bag2?r[]=*cpx.to (easylist.txt: 6496) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*cpx\.to -# /cdn-cgi/pe/bag2?r[]=*content.ad (easylist.txt: 6495) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*content\.ad -# /cdn-cgi/pe/bag2?r[]=*az708531.vo.msecnd.net (easylist.txt: 6494) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*az708531\.vo\.msecnd\.net -# /cdn-cgi/pe/bag2?r[]=*ads.exoclick.com (easylist.txt: 6493) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# /cdn-cgi/pe/bag2?r[]=*adk2.co (easylist.txt: 6492) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adk2\.co -# /cdn-cgi/pe/bag2?r[]=*adblade.com (easylist.txt: 6491) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adblade\.com -# /webservices/jsparselinks.aspx?$script (easylist.txt: 6489) -/(.*/)?webservices/jsparselinks\.aspx\? -# /jquery.dfp.min.js$script (easylist.txt: 6487) -/(.*/)?jquery\.dfp\.min\.js -jquery.dfp.min.js*. -# /jquery.dfp.js$script (easylist.txt: 6486) -/(.*/)?jquery\.dfp\.js -jquery.dfp.js*. -# ||serve.*/promoload? (easylist.txt: 6484) -.serve.*./(.*/)?promoload\? -# ||ox-d.*^auid= (easylist.txt: 6483) -.ox-d.*./(.*[^\w%.-])?auid= -# ||online.*/promoredirect?key= (easylist.txt: 6482) -.online.*./(.*/)?promoredirect\?key= -# ||com/banners/$image,object,subdocument (easylist.txt: 6481) -# ||cacheserve.*/promodisplay? (easylist.txt: 6480) -.cacheserve.*./(.*/)?promodisplay\? -# ||cacheserve.*/promodisplay/ (easylist.txt: 6479) -.cacheserve.*./(.*/)?promodisplay/ -# takeover_banner_ (easylist.txt: 6478) -/.*takeover_banner_ -# takeover_background. (easylist.txt: 6477) -/.*takeover_background\. -# _zedo. (easylist.txt: 6476) -/.*_zedo\. -# _your_ad. (easylist.txt: 6475) -/.*_your_ad\. -# _yahooads/ (easylist.txt: 6474) -/.*_yahooads/ -# _widget_ad. (easylist.txt: 6473) -/.*_widget_ad\. -# _WebBannerAd_ (easylist.txt: 6472) -/.*_WebBannerAd_ -# _webad_ (easylist.txt: 6471) -/.*_webad_ -# _webad. (easylist.txt: 6470) -/.*_webad\. -# _web_ad_ (easylist.txt: 6469) -/.*_web_ad_ -# _Web_ad. (easylist.txt: 6468) -/.*_Web_ad\. -# _web-advert. (easylist.txt: 6467) -/.*_web-advert\. -# _vodaaffi_ (easylist.txt: 6466) -/.*_vodaaffi_ -# _videoad. (easylist.txt: 6465) -/.*_videoad\. -# _video_ads_ (easylist.txt: 6464) -/.*_video_ads_ -# _video_ads/ (easylist.txt: 6463) -/.*_video_ads/ -# _vertical_ad. (easylist.txt: 6462) -/.*_vertical_ad\. -# _valueclick. (easylist.txt: 6461) -/.*_valueclick\. -# _UIM-Ads_ (easylist.txt: 6460) -/.*_UIM-Ads_ -# _tribalfusion. (easylist.txt: 6459) -/.*_tribalfusion\. -# _topad. (easylist.txt: 6458) -/.*_topad\. -# _top_ad_ (easylist.txt: 6457) -/.*_top_ad_ -# _top_ad. (easylist.txt: 6456) -/.*_top_ad\. -# _tile_ad_ (easylist.txt: 6455) -/.*_tile_ad_ -# _theme/ads/ (easylist.txt: 6454) -/.*_theme/ads/ -# _textads/ (easylist.txt: 6453) -/.*_textads/ -# _textads. (easylist.txt: 6452) -/.*_textads\. -# _textad_ (easylist.txt: 6451) -/.*_textad_ -# _text_ads. (easylist.txt: 6450) -/.*_text_ads\. -# _temp/ad_ (easylist.txt: 6449) -/.*_temp/ad_ -# _tagadvertising. (easylist.txt: 6448) -/.*_tagadvertising\. -# _survey_ad_ (easylist.txt: 6447) -/.*_survey_ad_ -# _StickyAdFunc. (easylist.txt: 6446) -/.*_StickyAdFunc\. -# _StickyAd. (easylist.txt: 6445) -/.*_StickyAd\. -# _sticky_ad. (easylist.txt: 6444) -/.*_sticky_ad\. -# _static_ads. (easylist.txt: 6443) -/.*_static_ads\. -# _static/ads/ (easylist.txt: 6442) -/.*_static/ads/ -# _square_ad. (easylist.txt: 6441) -/.*_square_ad\. -# _Spot-Ad_ (easylist.txt: 6440) -/.*_Spot-Ad_ -# _sponsoredlinks_ (easylist.txt: 6439) -/.*_sponsoredlinks_ -# _sponsor/css/ (easylist.txt: 6438) -/.*_sponsor/css/ -# _smartads_ (easylist.txt: 6437) -/.*_smartads_ -# _small_ad. (easylist.txt: 6436) -/.*_small_ad\. -# _Slot_Adv_ (easylist.txt: 6435) -/.*_Slot_Adv_ -# _skyscraper160x600. (easylist.txt: 6434) -/.*_skyscraper160x600\. -# _skybannerview. (easylist.txt: 6433) -/.*_skybannerview\. -# _skinad. (easylist.txt: 6432) -/.*_skinad\. -# _site_sponsor (easylist.txt: 6431) -/.*_site_sponsor -# _sidebarad_ (easylist.txt: 6430) -/.*_sidebarad_ -# _sidebar_ad_ (easylist.txt: 6429) -/.*_sidebar_ad_ -# _sidebar_ad. (easylist.txt: 6428) -/.*_sidebar_ad\. -# _sidead. (easylist.txt: 6427) -/.*_sidead\. -# _show_ads_ (easylist.txt: 6426) -/.*_show_ads_ -# _show_ads= (easylist.txt: 6425) -/.*_show_ads= -# _show_ads. (easylist.txt: 6424) -/.*_show_ads\. -# _sectionfront_ad. (easylist.txt: 6423) -/.*_sectionfront_ad\. -# _search/ads.js (easylist.txt: 6422) -/.*_search/ads\.js -# _rightmn_ads. (easylist.txt: 6421) -/.*_rightmn_ads\. -# _rightad_ (easylist.txt: 6420) -/.*_rightad_ -# _rightad1. (easylist.txt: 6419) -/.*_rightad1\. -# _rightad. (easylist.txt: 6418) -/.*_rightad\. -# _right_ads_ (easylist.txt: 6417) -/.*_right_ads_ -# _right_ads/ (easylist.txt: 6416) -/.*_right_ads/ -# _right_ads. (easylist.txt: 6415) -/.*_right_ads\. -# _right_ad. (easylist.txt: 6414) -/.*_right_ad\. -# _response_ad. (easylist.txt: 6413) -/.*_response_ad\. -# _request_ad. (easylist.txt: 6412) -/.*_request_ad\. -# _reporting_ads. (easylist.txt: 6411) -/.*_reporting_ads\. -# _rectangle_ads. (easylist.txt: 6409) -/.*_rectangle_ads\. -# _railads. (easylist.txt: 6408) -/.*_railads\. -# _radio_ad_ (easylist.txt: 6407) -/.*_radio_ad_ -# _pushads. (easylist.txt: 6406) -/.*_pushads\. -# _psu_ad. (easylist.txt: 6405) -/.*_psu_ad\. -# _promo_ad/ (easylist.txt: 6404) -/.*_promo_ad/ -# _prime_ad. (easylist.txt: 6403) -/.*_prime_ad\. -# _preorderad. (easylist.txt: 6402) -/.*_preorderad\. -# _post_ads. (easylist.txt: 6401) -/.*_post_ads\. -# _popupunder. (easylist.txt: 6400) -/.*_popupunder\. -# _popunder_ (easylist.txt: 6399) -/.*_popunder_ -# _popunder. (easylist.txt: 6398) -/.*_popunder\. -# _pop_under. (easylist.txt: 6397) -/.*_pop_under\. -# _pop_ad/ (easylist.txt: 6396) -/.*_pop_ad/ -# _pop_ad. (easylist.txt: 6395) -/.*_pop_ad\. -# _plus/ads/ (easylist.txt: 6394) -/.*_plus/ads/ -# _player_ads_ (easylist.txt: 6393) -/.*_player_ads_ -# _platform_ads_ (easylist.txt: 6392) -/.*_platform_ads_ -# _platform_ads. (easylist.txt: 6391) -/.*_platform_ads\. -# _partner_ad. (easylist.txt: 6390) -/.*_partner_ad\. -# _panel_ads. (easylist.txt: 6389) -/.*_panel_ads\. -# _paidadvert_ (easylist.txt: 6388) -/.*_paidadvert_ -# _paid_ads/ (easylist.txt: 6387) -/.*_paid_ads/ -# _overlay_ad. (easylist.txt: 6386) -/.*_overlay_ad\. -# _org_ad. (easylist.txt: 6385) -/.*_org_ad\. -# _openx/ (easylist.txt: 6384) -/.*_openx/ -# _openx. (easylist.txt: 6383) -/.*_openx\. -# _onlinead_ (easylist.txt: 6382) -/.*_onlinead_ -# _online_ad. (easylist.txt: 6381) -/.*_online_ad\. -# _mpu_widget? (easylist.txt: 6380) -/.*_mpu_widget\? -# _Mobile_Ad_ (easylist.txt: 6379) -/.*_Mobile_Ad_ -# _mmsadbanner/ (easylist.txt: 6378) -/.*_mmsadbanner/ -# _mid_ad. (easylist.txt: 6377) -/.*_mid_ad\. -# _media/ads/ (easylist.txt: 6376) -/.*_media/ads/ -# _maxi_ad/ (easylist.txt: 6375) -/.*_maxi_ad/ -# _mainad. (easylist.txt: 6374) -/.*_mainad\. -# _main_ad. (easylist.txt: 6373) -/.*_main_ad\. -# _mailLoginAd. (easylist.txt: 6372) -/.*_mailLoginAd\. -# _longad_ (easylist.txt: 6371) -/.*_longad_ -# _logadslot& (easylist.txt: 6370) -/.*_logadslot& -# _load_ad? (easylist.txt: 6369) -/.*_load_ad\? -# _live/ad/ (easylist.txt: 6368) -/.*_live/ad/ -# _link_ads- (easylist.txt: 6367) -/.*_link_ads- -# _left_ad. (easylist.txt: 6366) -/.*_left_ad\. -# _leaderboard_ad_ (easylist.txt: 6365) -/.*_leaderboard_ad_ -# _layerad. (easylist.txt: 6364) -/.*_layerad\. -# _juicyads. (easylist.txt: 6363) -/.*_juicyads\. -# _juiceadv. (easylist.txt: 6362) -/.*_juiceadv\. -# _jtads/ (easylist.txt: 6361) -/.*_jtads/ -# _js/ads.js (easylist.txt: 6360) -/.*_js/ads\.js -# _inlineads. (easylist.txt: 6359) -/.*_inlineads\. -# _inline_advert& (easylist.txt: 6358) -/.*_inline_advert& -# _index_ad. (easylist.txt: 6357) -/.*_index_ad\. -# _images/ads/ (easylist.txt: 6356) -/.*_images/ads/ -# _images/ad_ (easylist.txt: 6355) -/.*_images/ad_ -# _images/ad. (easylist.txt: 6354) -/.*_images/ad\. -# _iframe_ad_ (easylist.txt: 6353) -/.*_iframe_ad_ -# _iad.html? (easylist.txt: 6352) -/.*_iad\.html\? -# _hr_advt/ (easylist.txt: 6351) -/.*_hr_advt/ -# _house_ad_ (easylist.txt: 6350) -/.*_house_ad_ -# _hosting_ad. (easylist.txt: 6349) -/.*_hosting_ad\. -# _home_ad_ (easylist.txt: 6348) -/.*_home_ad_ -# _home_ad. (easylist.txt: 6347) -/.*_home_ad\. -# _homadconfig. (easylist.txt: 6346) -/.*_homadconfig\. -# _homad. (easylist.txt: 6345) -/.*_homad\. -# _headline_ad. (easylist.txt: 6344) -/.*_headline_ad\. -# _headerad. (easylist.txt: 6343) -/.*_headerad\. -# _header_ad_ (easylist.txt: 6342) -/.*_header_ad_ -# _header_ad. (easylist.txt: 6341) -/.*_header_ad\. -# _grid_ad? (easylist.txt: 6340) -/.*_grid_ad\? -# _googlead. (easylist.txt: 6339) -/.*_googlead\. -# _google_ads_ (easylist.txt: 6338) -/.*_google_ads_ -# _google_ads/ (easylist.txt: 6337) -/.*_google_ads/ -# _google_ads. (easylist.txt: 6336) -/.*_google_ads\. -# _google_ad. (easylist.txt: 6335) -/.*_google_ad\. -# _geobanner. (easylist.txt: 6334) -/.*_geobanner\. -# _generic_ad. (easylist.txt: 6333) -/.*_generic_ad\. -# _genads/ (easylist.txt: 6332) -/.*_genads/ -# _gallery_image_ads_$~stylesheet (easylist.txt: 6331) -/.*_gallery_image_ads_ -# _gallery_ads. (easylist.txt: 6330) -/.*_gallery_ads\. -# _gads_top. (easylist.txt: 6329) -/.*_gads_top\. -# _gads_footer. (easylist.txt: 6328) -/.*_gads_footer\. -# _gads_bottom. (easylist.txt: 6327) -/.*_gads_bottom\. -# _fullscreen_ad. (easylist.txt: 6326) -/.*_fullscreen_ad\. -# _friendlyduck. (easylist.txt: 6325) -/.*_friendlyduck\. -# _framed_ad/ (easylist.txt: 6324) -/.*_framed_ad/ -# _footer_ad_ (easylist.txt: 6323) -/.*_footer_ad_ -# _floatingad_ (easylist.txt: 6322) -/.*_floatingad_ -# _floating_ad_ (easylist.txt: 6321) -/.*_floating_ad_ -# _fixed_ad. (easylist.txt: 6320) -/.*_fixed_ad\. -# _files/ad. (easylist.txt: 6319) -/.*_files/ad\. -# _feast_ad. (easylist.txt: 6318) -/.*_feast_ad\. -# _fbadbookingsystem& (easylist.txt: 6317) -/.*_fbadbookingsystem& -# _fach_ad. (easylist.txt: 6316) -/.*_fach_ad\. -# _externalad. (easylist.txt: 6315) -/.*_externalad\. -# _english/adv/ (easylist.txt: 6314) -/.*_english/adv/ -# _engine_ads_ (easylist.txt: 6313) -/.*_engine_ads_ -# _elements/ads/ (easylist.txt: 6312) -/.*_elements/ads/ -# _dynamicads/ (easylist.txt: 6311) -/.*_dynamicads/ -# _dropdown_ad. (easylist.txt: 6310) -/.*_dropdown_ad\. -# _down_ad_ (easylist.txt: 6309) -/.*_down_ad_ -# _doubleclick_ad. (easylist.txt: 6308) -/.*_doubleclick_ad\. -# _doubleclick. (easylist.txt: 6307) -/.*_doubleclick\. -# _displaytopads. (easylist.txt: 6306) -/.*_displaytopads\. -# _displayad_ (easylist.txt: 6305) -/.*_displayad_ -# _dfp.php? (easylist.txt: 6304) -/.*_dfp\.php\? -# _dashad_ (easylist.txt: 6303) -/.*_dashad_ -# _dart_interstitial. (easylist.txt: 6302) -/.*_dart_interstitial\. -# _dart_ads. (easylist.txt: 6301) -/.*_dart_ads\. -# _custom_ad_ (easylist.txt: 6300) -/.*_custom_ad_ -# _custom_ad. (easylist.txt: 6299) -/.*_custom_ad\. -# _contest_ad_ (easylist.txt: 6298) -/.*_contest_ad_ -# _content_ad_ (easylist.txt: 6297) -/.*_content_ad_ -# _content_ad. (easylist.txt: 6296) -/.*_content_ad\. -# _companionad. (easylist.txt: 6295) -/.*_companionad\. -# _ChatAd_ (easylist.txt: 6294) -/.*_ChatAd_ -# _cgbanners.php? (easylist.txt: 6293) -/.*_cgbanners\.php\? -# _centre_ad. (easylist.txt: 6292) -/.*_centre_ad\. -# _buttonad. (easylist.txt: 6291) -/.*_buttonad\. -# _button_ad_ (easylist.txt: 6290) -/.*_button_ad_ -# _btnad_ (easylist.txt: 6289) -/.*_btnad_ -# _box_ad_ (easylist.txt: 6288) -/.*_box_ad_ -# _bottom_ads_ (easylist.txt: 6287) -/.*_bottom_ads_ -# _bottom_ads. (easylist.txt: 6286) -/.*_bottom_ads\. -# _blogads_ (easylist.txt: 6285) -/.*_blogads_ -# _blogads. (easylist.txt: 6284) -/.*_blogads\. -# _blank_ads. (easylist.txt: 6283) -/.*_blank_ads\. -# _bg_ad_left. (easylist.txt: 6282) -/.*_bg_ad_left\. -# _bannerview.php?*&aid= (easylist.txt: 6281) -/.*_bannerview\.php\?.*&aid= -# _bannerads_ (easylist.txt: 6280) -/.*_bannerads_ -# _BannerAd_ (easylist.txt: 6279) -/.*_BannerAd_ -# _bannerad. (easylist.txt: 6278) -/.*_bannerad\. -# _banner_adv_ (easylist.txt: 6277) -/.*_banner_adv_ -# _banner_adv300x250px. (easylist.txt: 6276) -/.*_banner_adv300x250px\. -# _Banner_Ads_ (easylist.txt: 6275) -/.*_Banner_Ads_ -# _banner_ads. (easylist.txt: 6274) -/.*_banner_ads\. -# _banner_ad_ (easylist.txt: 6273) -/.*_banner_ad_ -# _banner_ad. (easylist.txt: 6272) -/.*_banner_ad\. -# _background_ad/ (easylist.txt: 6271) -/.*_background_ad/ -# _background_ad. (easylist.txt: 6270) -/.*_background_ad\. -# _assets/ads/ (easylist.txt: 6269) -/.*_assets/ads/ -# _argus_ad_ (easylist.txt: 6268) -/.*_argus_ad_ -# _alt/ads/ (easylist.txt: 6267) -/.*_alt/ads/ -# _afs_ads. (easylist.txt: 6266) -/.*_afs_ads\. -# _affiliate_ad. (easylist.txt: 6265) -/.*_affiliate_ad\. -# _affiliate/banners/ (easylist.txt: 6264) -/.*_affiliate/banners/ -# _afd_ads. (easylist.txt: 6263) -/.*_afd_ads\. -# _adwriter. (easylist.txt: 6262) -/.*_adwriter\. -# _adwrap. (easylist.txt: 6261) -/.*_adwrap\. -# _advservices. (easylist.txt: 6260) -/.*_advservices\. -# _adview_ (easylist.txt: 6259) -/.*_adview_ -# _adview? (easylist.txt: 6258) -/.*_adview\? -# _AdvertsImgs/ (easylist.txt: 6257) -/.*_AdvertsImgs/ -# _advertsarea. (easylist.txt: 6256) -/.*_advertsarea\. -# _adverts3. (easylist.txt: 6255) -/.*_adverts3\. -# _adverts/ (easylist.txt: 6254) -/.*_adverts/ -# _adverts.js (easylist.txt: 6253) -/.*_adverts\.js -# _advertphoto. (easylist.txt: 6252) -/.*_advertphoto\. -# _advertorials/ (easylist.txt: 6251) -/.*_advertorials/ -# _advertorial_ (easylist.txt: 6250) -/.*_advertorial_ -# _advertorial3. (easylist.txt: 6249) -/.*_advertorial3\. -# _advertorial. (easylist.txt: 6248) -/.*_advertorial\. -# _advertisment. (easylist.txt: 6247) -/.*_advertisment\. -# _advertising_iframe. (easylist.txt: 6246) -/.*_advertising_iframe\. -# _advertising_header. (easylist.txt: 6245) -/.*_advertising_header\. -# _advertising/ (easylist.txt: 6244) -/.*_advertising/ -# _advertising. (easylist.txt: 6243) -/.*_advertising\. -# _advertisementtxt_ (easylist.txt: 6242) -/.*_advertisementtxt_ -# _advertisements/ (easylist.txt: 6241) -/.*_advertisements/ -# _advertisementbar. (easylist.txt: 6240) -/.*_advertisementbar\. -# _advertisement_ (easylist.txt: 6239) -/.*_advertisement_ -# _advertisement/ (easylist.txt: 6238) -/.*_advertisement/ -# _advertisement. (easylist.txt: 6237) -/.*_advertisement\. -# _advertisement- (easylist.txt: 6236) -/.*_advertisement- -# _advertisehere. (easylist.txt: 6235) -/.*_advertisehere\. -# _advertise180. (easylist.txt: 6234) -/.*_advertise180\. -# _advertise. (easylist.txt: 6233) -/.*_advertise\. -# _advertise- (easylist.txt: 6232) -/.*_advertise- -# _advert_vert (easylist.txt: 6231) -/.*_advert_vert -# _advert_overview. (easylist.txt: 6230) -/.*_advert_overview\. -# _advert_label. (easylist.txt: 6229) -/.*_advert_label\. -# _advert_2. (easylist.txt: 6228) -/.*_advert_2\. -# _advert_1. (easylist.txt: 6227) -/.*_advert_1\. -# _advert1. (easylist.txt: 6226) -/.*_advert1\. -# _advert/ (easylist.txt: 6225) -/.*_advert/ -# _advert. (easylist.txt: 6224) -/.*_advert\. -# _Adv_Banner_ (easylist.txt: 6223) -/.*_Adv_Banner_ -# _adv/overlay/ (easylist.txt: 6222) -/.*_adv/overlay/ -# _adv/leaderboard_ (easylist.txt: 6221) -/.*_adv/leaderboard_ -# _adv/300. (easylist.txt: 6220) -/.*_adv/300\. -# _adunit. (easylist.txt: 6219) -/.*_adunit\. -# _adtxt. (easylist.txt: 6218) -/.*_adtxt\. -# _adtop. (easylist.txt: 6217) -/.*_adtop\. -# _adtoma. (easylist.txt: 6216) -/.*_adtoma\. -# _adtitle. (easylist.txt: 6215) -/.*_adtitle\. -# _adtext_ (easylist.txt: 6214) -/.*_adtext_ -# _adtech_ (easylist.txt: 6213) -/.*_adtech_ -# _adtech/$~stylesheet (easylist.txt: 6212) -/.*_adtech/ -# _adtech. (easylist.txt: 6211) -/.*_adtech\. -# _adtech- (easylist.txt: 6210) -/.*_adtech- -# _adtech& (easylist.txt: 6209) -/.*_adtech& -# _adtags. (easylist.txt: 6208) -/.*_adtags\. -# _adsystem/ (easylist.txt: 6207) -/.*_adsystem/ -# _adsys_ (easylist.txt: 6206) -/.*_adsys_ -# _adsys. (easylist.txt: 6205) -/.*_adsys\. -# _adstat. (easylist.txt: 6204) -/.*_adstat\. -# _adssource. (easylist.txt: 6203) -/.*_adssource\. -# _adsrv? (easylist.txt: 6202) -/.*_adsrv\? -# _adsrv= (easylist.txt: 6201) -/.*_adsrv= -# _adsperfectmarket/ (easylist.txt: 6200) -/.*_adsperfectmarket/ -# _adspace_ (easylist.txt: 6199) -/.*_adspace_ -# _adspace- (easylist.txt: 6198) -/.*_adspace- -# _adsonar. (easylist.txt: 6197) -/.*_adsonar\. -# _adskin_ (easylist.txt: 6196) -/.*_adskin_ -# _adskin. (easylist.txt: 6195) -/.*_adskin\. -# _adsjs. (easylist.txt: 6194) -/.*_adsjs\. -# _adshow. (easylist.txt: 6193) -/.*_adshow\. -# _adshare. (easylist.txt: 6192) -/.*_adshare\. -# _adsframe. (easylist.txt: 6191) -/.*_adsframe\. -# _adsetup. (easylist.txt: 6190) -/.*_adsetup\. -# _adserver/ (easylist.txt: 6189) -/.*_adserver/ -# _adserver. (easylist.txt: 6188) -/.*_adserver\. -# _adserved. (easylist.txt: 6187) -/.*_adserved\. -# _adserve/ (easylist.txt: 6186) -/.*_adserve/ -# _adserve. (easylist.txt: 6185) -/.*_adserve\. -# _adsense_ (easylist.txt: 6184) -/.*_adsense_ -# _adsense. (easylist.txt: 6183) -/.*_adsense\. -# _adsdaq. (easylist.txt: 6182) -/.*_adsdaq\. -# _adscript. (easylist.txt: 6181) -/.*_adscript\. -# _adsbgd. (easylist.txt: 6180) -/.*_adsbgd\. -# _ads_top. (easylist.txt: 6179) -/.*_ads_top\. -# _ads_text. (easylist.txt: 6178) -/.*_ads_text\. -# _ads_targeting. (easylist.txt: 6177) -/.*_ads_targeting\. -# _ads_single_ (easylist.txt: 6176) -/.*_ads_single_ -# _ads_reporting. (easylist.txt: 6175) -/.*_ads_reporting\. -# _ads_only& (easylist.txt: 6174) -/.*_ads_only& -# _ads_new. (easylist.txt: 6173) -/.*_ads_new\. -# _ads_multi. (easylist.txt: 6172) -/.*_ads_multi\. -# _ads_index_ (easylist.txt: 6171) -/.*_ads_index_ -# _ads_iframe_ (easylist.txt: 6170) -/.*_ads_iframe_ -# _ads_iframe. (easylist.txt: 6169) -/.*_ads_iframe\. -# _ads_Home. (easylist.txt: 6168) -/.*_ads_Home\. -# _ads_contextualtargeting_ (easylist.txt: 6167) -/.*_ads_contextualtargeting_ -# _ads_cached. (easylist.txt: 6166) -/.*_ads_cached\. -# _ads_async. (easylist.txt: 6165) -/.*_ads_async\. -# _ads? (easylist.txt: 6164) -/.*_ads\? -# _ads9. (easylist.txt: 6163) -/.*_ads9\. -# _ads8. (easylist.txt: 6162) -/.*_ads8\. -# _ads3. (easylist.txt: 6161) -/.*_ads3\. -# _ads2. (easylist.txt: 6160) -/.*_ads2\. -# _ads12. (easylist.txt: 6159) -/.*_ads12\. -# _ads1. (easylist.txt: 6158) -/.*_ads1\. -# _ads/square/ (easylist.txt: 6157) -/.*_ads/square/ -# _ads/js/ (easylist.txt: 6156) -/.*_ads/js/ -# _ads/ip/ (easylist.txt: 6155) -/.*_ads/ip/ -# _ads/inhouse/ (easylist.txt: 6154) -/.*_ads/inhouse/ -# _ads/iframe. (easylist.txt: 6153) -/.*_ads/iframe\. -# _ads/horiz_ (easylist.txt: 6152) -/.*_ads/horiz_ -# _ads/horiz/ (easylist.txt: 6151) -/.*_ads/horiz/ -# _ads/css/ (easylist.txt: 6150) -/.*_ads/css/ -# _ads.php? (easylist.txt: 6149) -/.*_ads\.php\? -# _ads.js? (easylist.txt: 6148) -/.*_ads\.js\? -# _ads.html (easylist.txt: 6147) -/.*_ads\.html -# _ads.cgi (easylist.txt: 6146) -/.*_ads\.cgi -# _ads-affiliates_ (easylist.txt: 6145) -/.*_ads-affiliates_ -# _adrow- (easylist.txt: 6144) -/.*_adrow- -# _adrotator. (easylist.txt: 6143) -/.*_adrotator\. -# _adright2. (easylist.txt: 6142) -/.*_adright2\. -# _adright. (easylist.txt: 6141) -/.*_adright\. -# _adplugin. (easylist.txt: 6140) -/.*_adplugin\. -# _adpartner. (easylist.txt: 6139) -/.*_adpartner\. -# _adpage= (easylist.txt: 6138) -/.*_adpage= -# _adobjects. (easylist.txt: 6137) -/.*_adobjects\. -# _adnetwork. (easylist.txt: 6136) -/.*_adnetwork\. -# _adminka/ (easylist.txt: 6135) -/.*_adminka/ -# _admin/ads/ (easylist.txt: 6134) -/.*_admin/ads/ -# _admarking_ (easylist.txt: 6133) -/.*_admarking_ -# _admanager/ (easylist.txt: 6132) -/.*_admanager/ -# _adlog. (easylist.txt: 6131) -/.*_adlog\. -# _adlinkbar. (easylist.txt: 6130) -/.*_adlinkbar\. -# _adlib. (easylist.txt: 6129) -/.*_adlib\. -# _adlesse. (easylist.txt: 6128) -/.*_adlesse\. -# _adlabel_ (easylist.txt: 6127) -/.*_adlabel_ -# _adjug. (easylist.txt: 6126) -/.*_adjug\. -# _adify. (easylist.txt: 6125) -/.*_adify\. -# _adhub_ (easylist.txt: 6124) -/.*_adhub_ -# _adhoriz. (easylist.txt: 6123) -/.*_adhoriz\. -# _adhome_ (easylist.txt: 6122) -/.*_adhome_ -# _adhome. (easylist.txt: 6121) -/.*_adhome\. -# _adhoc? (easylist.txt: 6120) -/.*_adhoc\? -# _adfunction. (easylist.txt: 6119) -/.*_adfunction\. -# _adframe_ (easylist.txt: 6118) -/.*_adframe_ -# _adframe/ (easylist.txt: 6117) -/.*_adframe/ -# _adframe. (easylist.txt: 6116) -/.*_adframe\. -# _adengine_ (easylist.txt: 6115) -/.*_adengine_ -# _adengage_ (easylist.txt: 6114) -/.*_adengage_ -# _adengage. (easylist.txt: 6113) -/.*_adengage\. -# _adcount= (easylist.txt: 6112) -/.*_adcount= -# _adcontent/ (easylist.txt: 6111) -/.*_adcontent/ -# _adcom. (easylist.txt: 6110) -/.*_adcom\. -# _adchoices. (easylist.txt: 6109) -/.*_adchoices\. -# _adchoice. (easylist.txt: 6108) -/.*_adchoice\. -# _adcall_ (easylist.txt: 6107) -/.*_adcall_ -# _adcall. (easylist.txt: 6106) -/.*_adcall\. -# _adbreak. (easylist.txt: 6105) -/.*_adbreak\. -# _adbox_ (easylist.txt: 6104) -/.*_adbox_ -# _adbox. (easylist.txt: 6103) -/.*_adbox\. -# _adblue. (easylist.txt: 6102) -/.*_adblue\. -# _adbit. (easylist.txt: 6101) -/.*_adbit\. -# _adbg2a. (easylist.txt: 6100) -/.*_adbg2a\. -# _adbg2. (easylist.txt: 6099) -/.*_adbg2\. -# _adbg1a. (easylist.txt: 6098) -/.*_adbg1a\. -# _adbar. (easylist.txt: 6097) -/.*_adbar\. -# _adbanners. (easylist.txt: 6096) -/.*_adbanners\. -# _adbanner_ (easylist.txt: 6095) -/.*_adbanner_ -# _adbanner/ (easylist.txt: 6094) -/.*_adbanner/ -# _adbanner. (easylist.txt: 6093) -/.*_adbanner\. -# _adaptvad. (easylist.txt: 6092) -/.*_adaptvad\. -# _adagency/ (easylist.txt: 6091) -/.*_adagency/ -# _ad_zone_ (easylist.txt: 6090) -/.*_ad_zone_ -# _ad_yellow. (easylist.txt: 6089) -/.*_ad_yellow\. -# _ad_wrapper. (easylist.txt: 6088) -/.*_ad_wrapper\. -# _ad_widesky. (easylist.txt: 6087) -/.*_ad_widesky\. -# _ad_view= (easylist.txt: 6086) -/.*_ad_view= -# _ad_vertical. (easylist.txt: 6085) -/.*_ad_vertical\. -# _ad_url= (easylist.txt: 6084) -/.*_ad_url= -# _ad_template_ (easylist.txt: 6083) -/.*_ad_template_ -# _ad_tall. (easylist.txt: 6082) -/.*_ad_tall\. -# _ad_square. (easylist.txt: 6081) -/.*_ad_square\. -# _ad_sponsor/ (easylist.txt: 6080) -/.*_ad_sponsor/ -# _ad_small. (easylist.txt: 6079) -/.*_ad_small\. -# _ad_slot= (easylist.txt: 6078) -/.*_ad_slot= -# _ad_skyscraper. (easylist.txt: 6077) -/.*_ad_skyscraper\. -# _ad_sky. (easylist.txt: 6076) -/.*_ad_sky\. -# _ad_size. (easylist.txt: 6075) -/.*_ad_size\. -# _ad_side. (easylist.txt: 6074) -/.*_ad_side\. -# _ad_show& (easylist.txt: 6073) -/.*_ad_show& -# _ad_serving. (easylist.txt: 6072) -/.*_ad_serving\. -# _ad_service. (easylist.txt: 6071) -/.*_ad_service\. -# _ad_run. (easylist.txt: 6070) -/.*_ad_run\. -# _ad_right_ (easylist.txt: 6069) -/.*_ad_right_ -# _ad_right. (easylist.txt: 6068) -/.*_ad_right\. -# _ad_renderer_ (easylist.txt: 6067) -/.*_ad_renderer_ -# _ad_render_ (easylist.txt: 6066) -/.*_ad_render_ -# _ad_promo2. (easylist.txt: 6065) -/.*_ad_promo2\. -# _ad_position_ (easylist.txt: 6064) -/.*_ad_position_ -# _ad_placeholder- (easylist.txt: 6063) -/.*_ad_placeholder- -# _ad_page_ (easylist.txt: 6062) -/.*_ad_page_ -# _ad_over_ (easylist.txt: 6061) -/.*_ad_over_ -# _ad_one. (easylist.txt: 6060) -/.*_ad_one\. -# _ad_number= (easylist.txt: 6059) -/.*_ad_number= -# _ad_new_ (easylist.txt: 6058) -/.*_ad_new_ -# _ad_minileaderboard. (easylist.txt: 6057) -/.*_ad_minileaderboard\. -# _ad_middle_ (easylist.txt: 6056) -/.*_ad_middle_ -# _ad_logo. (easylist.txt: 6055) -/.*_ad_logo\. -# _ad_leaderboard. (easylist.txt: 6054) -/.*_ad_leaderboard\. -# _ad_layer_ (easylist.txt: 6053) -/.*_ad_layer_ -# _ad_label. (easylist.txt: 6052) -/.*_ad_label\. -# _ad_interactive. (easylist.txt: 6051) -/.*_ad_interactive\. -# _ad_integration. (easylist.txt: 6050) -/.*_ad_integration\. -# _ad_init/ (easylist.txt: 6049) -/.*_ad_init/ -# _ad_images/ (easylist.txt: 6048) -/.*_ad_images/ -# _ad_image_ (easylist.txt: 6047) -/.*_ad_image_ -# _ad_iframe. (easylist.txt: 6046) -/.*_ad_iframe\. -# _ad_ids= (easylist.txt: 6045) -/.*_ad_ids= -# _ad_homepage. (easylist.txt: 6044) -/.*_ad_homepage\. -# _ad_heading. (easylist.txt: 6043) -/.*_ad_heading\. -# _ad_header. (easylist.txt: 6042) -/.*_ad_header\. -# _ad_head. (easylist.txt: 6041) -/.*_ad_head\. -# _ad_handler. (easylist.txt: 6040) -/.*_ad_handler\. -# _ad_frame. (easylist.txt: 6039) -/.*_ad_frame\. -# _ad_footer_ (easylist.txt: 6038) -/.*_ad_footer_ -# _ad_footer. (easylist.txt: 6037) -/.*_ad_footer\. -# _ad_feed. (easylist.txt: 6036) -/.*_ad_feed\. -# _ad_expand_ (easylist.txt: 6035) -/.*_ad_expand_ -# _ad_engine/ (easylist.txt: 6034) -/.*_ad_engine/ -# _ad_end_ (easylist.txt: 6033) -/.*_ad_end_ -# _ad_domain_ (easylist.txt: 6032) -/.*_ad_domain_ -# _ad_div= (easylist.txt: 6031) -/.*_ad_div= -# _ad_desktop_ (easylist.txt: 6030) -/.*_ad_desktop_ -# _ad_courier. (easylist.txt: 6029) -/.*_ad_courier\. -# _ad_count= (easylist.txt: 6028) -/.*_ad_count= -# _ad_count. (easylist.txt: 6027) -/.*_ad_count\. -# _ad_controller. (easylist.txt: 6026) -/.*_ad_controller\. -# _ad_content. (easylist.txt: 6025) -/.*_ad_content\. -# _ad_code. (easylist.txt: 6024) -/.*_ad_code\. -# _ad_close. (easylist.txt: 6023) -/.*_ad_close\. -# _ad_choices_ (easylist.txt: 6022) -/.*_ad_choices_ -# _ad_choices. (easylist.txt: 6021) -/.*_ad_choices\. -# _ad_change. (easylist.txt: 6020) -/.*_ad_change\. -# _ad_center. (easylist.txt: 6019) -/.*_ad_center\. -# _ad_bsb. (easylist.txt: 6018) -/.*_ad_bsb\. -# _ad_box. (easylist.txt: 6017) -/.*_ad_box\. -# _ad_bottom. (easylist.txt: 6016) -/.*_ad_bottom\. -# _ad_block& (easylist.txt: 6015) -/.*_ad_block& -# _ad_big. (easylist.txt: 6014) -/.*_ad_big\. -# _ad_banner_ (easylist.txt: 6013) -/.*_ad_banner_ -# _ad_banner. (easylist.txt: 6012) -/.*_ad_banner\. -# _ad_background. (easylist.txt: 6011) -/.*_ad_background\. -# _ad_article_ (easylist.txt: 6010) -/.*_ad_article_ -# _ad_actron. (easylist.txt: 6009) -/.*_ad_actron\. -# _ad_350x250. (easylist.txt: 6008) -/.*_ad_350x250\. -# _ad_300. (easylist.txt: 6007) -/.*_ad_300\. -# _ad_2012. (easylist.txt: 6006) -/.*_ad_2012\. -# _ad_125x125. (easylist.txt: 6005) -/.*_ad_125x125\. -# _ad?size= (easylist.txt: 6004) -/.*_ad\?size= -# _ad?darttag= (easylist.txt: 6003) -/.*_ad\?darttag= -# _ad9. (easylist.txt: 6002) -/.*_ad9\. -# _ad728x90. (easylist.txt: 6001) -/.*_ad728x90\. -# _ad6. (easylist.txt: 6000) -/.*_ad6\. -# _ad300x250. (easylist.txt: 5999) -/.*_ad300x250\. -# _ad300. (easylist.txt: 5998) -/.*_ad300\. -# _ad3. (easylist.txt: 5997) -/.*_ad3\. -# _ad234x90- (easylist.txt: 5996) -/.*_ad234x90- -# _ad2. (easylist.txt: 5995) -/.*_ad2\. -# _ad1b. (easylist.txt: 5994) -/.*_ad1b\. -# _ad1a. (easylist.txt: 5993) -/.*_ad1a\. -# _Ad125. (easylist.txt: 5992) -/.*_Ad125\. -# _ad120x120_ (easylist.txt: 5991) -/.*_ad120x120_ -# _ad103. (easylist.txt: 5990) -/.*_ad103\. -# _ad1.$~stylesheet (easylist.txt: 5989) -/.*_ad1\. -# _ad01_ (easylist.txt: 5988) -/.*_ad01_ -# _ad01. (easylist.txt: 5987) -/.*_ad01\. -# _ad/section_ (easylist.txt: 5986) -/.*_ad/section_ -# _ad/public/ (easylist.txt: 5985) -/.*_ad/public/ -# _AD/jquery. (easylist.txt: 5984) -/.*_AD/jquery\. -# _ad/full_ (easylist.txt: 5983) -/.*_ad/full_ -# _ad/display? (easylist.txt: 5982) -/.*_ad/display\? -# _ad.png? (easylist.txt: 5981) -/.*_ad\.png\? -# _ad.php? (easylist.txt: 5980) -/.*_ad\.php\? -# _ad.jsp? (easylist.txt: 5979) -/.*_ad\.jsp\? -# _ad.gif| (easylist.txt: 5978) -/.*_ad\.gif$ -# _ad-125x125. (easylist.txt: 5977) -/.*_ad-125x125\. -# _ad&zone= (easylist.txt: 5976) -/.*_ad&zone= -# _acorn_ad_ (easylist.txt: 5975) -/.*_acorn_ad_ -# _728x90ad_ (easylist.txt: 5974) -/.*_728x90ad_ -# _468x60ad. (easylist.txt: 5973) -/.*_468x60ad\. -# _300x250Banner_ (easylist.txt: 5972) -/.*_300x250Banner_ -# _160x550. (easylist.txt: 5971) -/.*_160x550\. -# _160_ad_ (easylist.txt: 5970) -/.*_160_ad_ -# _125ad. (easylist.txt: 5969) -/.*_125ad\. -# ^pid=Ads^ (easylist.txt: 5968) -/(.*[^\w%.-])?pid=Ads[^\w%.-] -# ^mod=wms&do=view_*&zone= (easylist.txt: 5967) -/(.*[^\w%.-])?mod=wms&do=view_.*&zone= -# ^fp=*&prvtof= (easylist.txt: 5966) -/(.*[^\w%.-])?fp=.*&prvtof= -# ?ZoneID=*&SiteID=*&PageID= (easylist.txt: 5965) -/.*\?ZoneID=.*&SiteID=.*&PageID= -# ?ZoneID=*&PageID=*&SiteID= (easylist.txt: 5964) -/.*\?ZoneID=.*&PageID=.*&SiteID= -# ?wpproadszoneid= (easylist.txt: 5963) -/.*\?wpproadszoneid= -# ?wm=*&prm=rev& (easylist.txt: 5962) -/.*\?wm=.*&prm=rev& -# ?view=ad& (easylist.txt: 5961) -/.*\?view=ad& -# ?type=oas_pop& (easylist.txt: 5960) -/.*\?type=oas_pop& -# ?type=ad& (easylist.txt: 5959) -/.*\?type=ad& -# ?simple_ad_ (easylist.txt: 5958) -/.*\?simple_ad_ -# ?sid=ads (easylist.txt: 5957) -/.*\?sid=ads -# ?service=ad& (easylist.txt: 5956) -/.*\?service=ad& -# ?phpAds_ (easylist.txt: 5955) -/.*\?phpAds_ -# ?OASTagURL= (easylist.txt: 5954) -/.*\?OASTagURL= -# ?module=ads/ (easylist.txt: 5953) -/.*\?module=ads/ -# ?idaffiliation= (easylist.txt: 5952) -/.*\?idaffiliation= -# ?handler=ads& (easylist.txt: 5951) -/.*\?handler=ads& -# ?goto=ad| (easylist.txt: 5950) -/.*\?goto=ad$ -# ?getad=&$~object-subrequest (easylist.txt: 5949) -/.*\?getad=& -# ?g1t2h=*&t1m2k3= (easylist.txt: 5948) -/.*\?g1t2h=.*&t1m2k3= -# ?file=ads& (easylist.txt: 5947) -/.*\?file=ads& -# ?dfpadname= (easylist.txt: 5946) -/.*\?dfpadname= -# ?bannerXGroupId= (easylist.txt: 5945) -/.*\?bannerXGroupId= -# ?bannerid= (easylist.txt: 5944) -/.*\?bannerid= -# ?banner_id= (easylist.txt: 5943) -/.*\?banner_id= -# ?banner.id= (easylist.txt: 5942) -/.*\?banner\.id= -# ?adzone= (easylist.txt: 5941) -/.*\?adzone= -# ?adx= (easylist.txt: 5940) -/.*\?adx= -# ?advurl= (easylist.txt: 5939) -/.*\?advurl= -# ?advtile= (easylist.txt: 5938) -/.*\?advtile= -# ?advsystem= (easylist.txt: 5937) -/.*\?advsystem= -# ?advideo_ (easylist.txt: 5936) -/.*\?advideo_ -# ?advertising= (easylist.txt: 5935) -/.*\?advertising= -# ?advertiser= (easylist.txt: 5932) -/.*\?advertiser= -# ?advertisement= (easylist.txt: 5931) -/.*\?advertisement= -# ?advert_key= (easylist.txt: 5930) -/.*\?advert_key= -# ?adversion= (easylist.txt: 5929) -/.*\?adversion= -# ?adv_type= (easylist.txt: 5928) -/.*\?adv_type= -# ?adv/id= (easylist.txt: 5927) -/.*\?adv/id= -# ?adunitname= (easylist.txt: 5926) -/.*\?adunitname= -# ?adunitid= (easylist.txt: 5925) -/.*\?adunitid= -# ?adunit_id= (easylist.txt: 5924) -/.*\?adunit_id= -# ?adtype= (easylist.txt: 5923) -/.*\?adtype= -# ?adtechplacementid= (easylist.txt: 5922) -/.*\?adtechplacementid= -# ?adtarget= (easylist.txt: 5921) -/.*\?adtarget= -# ?adTagUrl= (easylist.txt: 5920) -/.*\?adTagUrl= -# ?adtag= (easylist.txt: 5919) -/.*\?adtag= -# ?adslot= (easylist.txt: 5918) -/.*\?adslot= -# ?adsize= (easylist.txt: 5917) -/.*\?adsize= -# ?adsite= (easylist.txt: 5916) -/.*\?adsite= -# ?adsdata= (easylist.txt: 5915) -/.*\?adsdata= -# ?ads= (easylist.txt: 5914) -/.*\?ads= -# ?adpartner= (easylist.txt: 5913) -/.*\?adpartner= -# ?adpage= (easylist.txt: 5912) -/.*\?adpage= -# ?adlocation= (easylist.txt: 5911) -/.*\?adlocation= -# ?adloc= (easylist.txt: 5910) -/.*\?adloc= -# ?adfox_ (easylist.txt: 5909) -/.*\?adfox_ -# ?adformat= (easylist.txt: 5908) -/.*\?adformat= -# ?adflashid= (easylist.txt: 5907) -/.*\?adflashid= -# ?adCount= (easylist.txt: 5906) -/.*\?adCount= -# ?adcontext= (easylist.txt: 5905) -/.*\?adcontext= -# ?adclass= (easylist.txt: 5904) -/.*\?adclass= -# ?adarea= (easylist.txt: 5903) -/.*\?adarea= -# ?ad_width= (easylist.txt: 5902) -/.*\?ad_width= -# ?ad_type= (easylist.txt: 5901) -/.*\?ad_type= -# ?ad_tag= (easylist.txt: 5900) -/.*\?ad_tag= -# ?ad_size= (easylist.txt: 5899) -/.*\?ad_size= -# ?ad_ids= (easylist.txt: 5898) -/.*\?ad_ids= -# ?action=ads& (easylist.txt: 5897) -/.*\?action=ads& -# ?*=x55g%3add4vv4fy. (easylist.txt: 5896) -/.*\?.*=x55g%3add4vv4fy\. -# =webad2& (easylist.txt: 5895) -/.*=webad2& -# =web&ads= (easylist.txt: 5894) -/.*=web&ads= -# =tickerReportAdCallback_ (easylist.txt: 5893) -/.*=tickerReportAdCallback_ -# =textads& (easylist.txt: 5892) -/.*=textads& -# =simpleads/ (easylist.txt: 5891) -/.*=simpleads/ -# =showsearchgoogleads& (easylist.txt: 5890) -/.*=showsearchgoogleads& -# =searchadslider| (easylist.txt: 5889) -/.*=searchadslider$ -# =rightAds_ (easylist.txt: 5888) -/.*=rightAds_ -# =oas_tag. (easylist.txt: 5887) -/.*=oas_tag\. -# =js_ads& (easylist.txt: 5886) -/.*=js_ads& -# =iframe_adv& (easylist.txt: 5885) -/.*=iframe_adv& -# =half-page-ad& (easylist.txt: 5884) -/.*=half-page-ad& -# =GetSponsorAds& (easylist.txt: 5883) -/.*=GetSponsorAds& -# =dynamicwebad& (easylist.txt: 5882) -/.*=dynamicwebad& -# =dynamicads& (easylist.txt: 5881) -/.*=dynamicads& -# =displayAds& (easylist.txt: 5880) -/.*=displayAds& -# =DisplayAd& (easylist.txt: 5879) -/.*=DisplayAd& -# =display_ad& (easylist.txt: 5878) -/.*=display_ad& -# =deliverAdFrame& (easylist.txt: 5877) -/.*=deliverAdFrame& -# =dartad_ (easylist.txt: 5876) -/.*=dartad_ -# =com_ads& (easylist.txt: 5875) -/.*=com_ads& -# =clkads/ (easylist.txt: 5874) -/.*=clkads/ -# =big-ad-switch_ (easylist.txt: 5873) -/.*=big-ad-switch_ -# =banners_ad& (easylist.txt: 5872) -/.*=banners_ad& -# =akiba_ads_ (easylist.txt: 5871) -/.*=akiba_ads_ -# =adView& (easylist.txt: 5870) -/.*=adView& -# =advertorial& (easylist.txt: 5869) -/.*=advertorial& -# =advertiser/ (easylist.txt: 5868) -/.*=advertiser/ -# =advertiser. (easylist.txt: 5867) -/.*=advertiser\. -# =advert/ (easylist.txt: 5866) -/.*=advert/ -# =adunit& (easylist.txt: 5865) -/.*=adunit& -# =adtech_ (easylist.txt: 5864) -/.*=adtech_ -# =adspremiumplacement& (easylist.txt: 5863) -/.*=adspremiumplacement& -# =adslot& (easylist.txt: 5862) -/.*=adslot& -# =adshow& (easylist.txt: 5861) -/.*=adshow& -# =adsfinal. (easylist.txt: 5860) -/.*=adsfinal\. -# =adscripts& (easylist.txt: 5859) -/.*=adscripts& -# =adsCallback& (easylist.txt: 5858) -/.*=adsCallback& -# =adreplacementWrapperReg. (easylist.txt: 5857) -/.*=adreplacementWrapperReg\. -# =admodeliframe& (easylist.txt: 5856) -/.*=admodeliframe& -# =adMenu& (easylist.txt: 5855) -/.*=adMenu& -# =admeld& (easylist.txt: 5854) -/.*=admeld& -# =adlabs& (easylist.txt: 5853) -/.*=adlabs& -# =adexpert& (easylist.txt: 5852) -/.*=adexpert& -# =adcode& (easylist.txt: 5851) -/.*=adcode& -# =adcenter& (easylist.txt: 5850) -/.*=adcenter& -# =adbanner_ (easylist.txt: 5849) -/.*=adbanner_ -# =ad_iframe_ (easylist.txt: 5848) -/.*=ad_iframe_ -# =ad_iframe& (easylist.txt: 5847) -/.*=ad_iframe& -# =ad320x50- (easylist.txt: 5846) -/.*=ad320x50- -# =ad-rectangle- (easylist.txt: 5845) -/.*=ad-rectangle- -# =ad-leaderboard- (easylist.txt: 5844) -/.*=ad-leaderboard- -# ;iframeid=ad_ (easylist.txt: 5843) -/.*;iframeid=ad_ -# ;cue=pre;$object-subrequest (easylist.txt: 5842) -/.*;cue=pre; -# ;adsense_ (easylist.txt: 5841) -/.*;adsense_ -# :8080/ads/ (easylist.txt: 5840) -/.*:8080/ads/ -# ://wrapper.*/a? (easylist.txt: 5839) -/.*://wrapper\..*/a\? -wrapper.*./(.*/)?a\? -# ://synad. (easylist.txt: 5838) -/.*://synad\. -synad.*. -# ://rss.*/~a/ (easylist.txt: 5837) -/.*://rss\..*/~a/ -rss.*./(.*/)?~a/ -# ://promo.$third-party (easylist.txt: 5836) -/.*://promo\. -promo.*. -# ://pop-over. (easylist.txt: 5835) -/.*://pop-over\. -pop-over.*. -# ://ox-*/jstag^ (easylist.txt: 5834) -/.*://ox-.*/jstag[^\w%.-] -ox-*./(.*/)?jstag[^\w%.-] -# ://oas.*@ (easylist.txt: 5833) -/.*://oas\..*@ -oas.*./.*@ -# ://findnsave.*.*/td/portablerop.aspx? (easylist.txt: 5832) -/.*://findnsave\..*\..*/td/portablerop\.aspx\? -findnsave.*./.*\..*/td/portablerop\.aspx\? -findnsave.*.*./(.*/)?td/portablerop\.aspx\? -# ://findnsave.*.*/api/groupon.json? (easylist.txt: 5831) -/.*://findnsave\..*\..*/api/groupon\.json\? -findnsave.*./.*\..*/api/groupon\.json\? -findnsave.*.*./(.*/)?api/groupon\.json\? -# ://feeds.*/~a/ (easylist.txt: 5830) -/.*://feeds\..*/~a/ -feeds.*./(.*/)?~a/ -# ://delivery.*/jstag^ (easylist.txt: 5829) -/.*://delivery\..*/jstag[^\w%.-] -delivery.*./(.*/)?jstag[^\w%.-] -# ://bwp.*/search (easylist.txt: 5828) -/.*://bwp\..*/search -bwp.*./(.*/)?search -# ://banners.$third-party (easylist.txt: 5827) -/.*://banners\. -banners.*. -# ://banner.$third-party (easylist.txt: 5826) -/.*://banner\. -banner.*. -# ://ax-d.*/jstag^ (easylist.txt: 5825) -/.*://ax-d\..*/jstag[^\w%.-] -ax-d.*./(.*/)?jstag[^\w%.-] -# ://affiliates.$third-party (easylist.txt: 5824) -/.*://affiliates\. -affiliates.*. -# ://affiliate.$third-party (easylist.txt: 5823) -/.*://affiliate\. -affiliate.*. -# ://ads. (easylist.txt: 5821) -/.*://ads\. -ads.*. -# ://adcl. (easylist.txt: 5820) -/.*://adcl\. -adcl.*. -# ://ad.*/jstag^ (easylist.txt: 5819) -/.*://ad\..*/jstag[^\w%.-] -ad.*./(.*/)?jstag[^\w%.-] -# ://a.ads. (easylist.txt: 5818) -/.*://a\.ads\. -a.ads.*. -# /~cdn/ads/* (easylist.txt: 5817) -/(.*/)?~cdn/ads/.* -# /zedo_ (easylist.txt: 5816) -/(.*/)?zedo_ -# /zanox_ad/* (easylist.txt: 5815) -/(.*/)?zanox_ad/.* -# /zanox/banner/* (easylist.txt: 5814) -/(.*/)?zanox/banner/.* -# /zalando-ad- (easylist.txt: 5813) -/(.*/)?zalando-ad- -zalando-ad-*. -# /zagcookie_ (easylist.txt: 5812) -/(.*/)?zagcookie_ -# /z/ads/* (easylist.txt: 5811) -/(.*/)?z/ads/.* -# /z-ads. (easylist.txt: 5810) -/(.*/)?z-ads\. -z-ads.*. -# /yume_ad_library_ (easylist.txt: 5809) -/(.*/)?yume_ad_library_ -# /ysmwrapper.js (easylist.txt: 5808) -/(.*/)?ysmwrapper\.js -ysmwrapper.js*. -# /ysmads. (easylist.txt: 5807) -/(.*/)?ysmads\. -ysmads.*. -# /ysc_csc_news (easylist.txt: 5806) -/(.*/)?ysc_csc_news -# /ypad/* (easylist.txt: 5805) -/(.*/)?ypad/.* -# /youradhere_ (easylist.txt: 5804) -/(.*/)?youradhere_ -# /youradhere468- (easylist.txt: 5803) -/(.*/)?youradhere468- -youradhere468-*. -# /youradhere. (easylist.txt: 5802) -/(.*/)?youradhere\. -youradhere.*. -# /yourad1. (easylist.txt: 5801) -/(.*/)?yourad1\. -yourad1.*. -# /your_ad. (easylist.txt: 5800) -/(.*/)?your_ad\. -# /your-ad. (easylist.txt: 5799) -/(.*/)?your-ad\. -your-ad.*. -# /your-ad- (easylist.txt: 5798) -/(.*/)?your-ad- -your-ad-*. -# /yld_mgr/* (easylist.txt: 5797) -/(.*/)?yld_mgr/.* -# /yld/js/* (easylist.txt: 5796) -/(.*/)?yld/js/.* -# /yin-ad/* (easylist.txt: 5795) -/(.*/)?yin-ad/.* -# /yieldmanager/* (easylist.txt: 5794) -/(.*/)?yieldmanager/.* -# /yieldlab. (easylist.txt: 5793) -/(.*/)?yieldlab\. -yieldlab.*. -# /yieldads. (easylist.txt: 5792) -/(.*/)?yieldads\. -yieldads.*. -# /yhs/ads? (easylist.txt: 5791) -/(.*/)?yhs/ads\? -# /yesbaby. (easylist.txt: 5790) -/(.*/)?yesbaby\. -yesbaby.*. -# /yellowpagesads/* (easylist.txt: 5789) -/(.*/)?yellowpagesads/.* -# /yahoofeedproxy. (easylist.txt: 5788) -/(.*/)?yahoofeedproxy\. -yahoofeedproxy.*. -# /yahooadsobject. (easylist.txt: 5787) -/(.*/)?yahooadsobject\. -yahooadsobject.*. -# /yahooadsapi. (easylist.txt: 5786) -/(.*/)?yahooadsapi\. -yahooadsapi.*. -# /yahooads/* (easylist.txt: 5785) -/(.*/)?yahooads/.* -# /yahooads. (easylist.txt: 5784) -/(.*/)?yahooads\. -yahooads.*. -# /YahooAd_ (easylist.txt: 5783) -/(.*/)?YahooAd_ -# /yahoo_overture. (easylist.txt: 5782) -/(.*/)?yahoo_overture\. -# /yahoo/ads. (easylist.txt: 5781) -/(.*/)?yahoo/ads\. -# /yahoo-ads/* (easylist.txt: 5780) -/(.*/)?yahoo-ads/.* -# /yahoo-ad- (easylist.txt: 5779) -/(.*/)?yahoo-ad- -yahoo-ad-*. -# /yads_ (easylist.txt: 5778) -/(.*/)?yads_ -# /yads/* (easylist.txt: 5777) -/(.*/)?yads/.* -# /yads. (easylist.txt: 5776) -/(.*/)?yads\. -yads.*. -# /yads- (easylist.txt: 5775) -/(.*/)?yads- -yads-*. -# /xxxmatch_ (easylist.txt: 5774) -/(.*/)?xxxmatch_ -# /xwords. (easylist.txt: 5773) -/(.*/)?xwords\. -xwords.*. -# /xpiads. (easylist.txt: 5771) -/(.*/)?xpiads\. -xpiads.*. -# /xnxx-ads. (easylist.txt: 5770) -/(.*/)?xnxx-ads\. -xnxx-ads.*. -# /xmladparser. (easylist.txt: 5769) -/(.*/)?xmladparser\. -xmladparser.*. -# /xml/ads_ (easylist.txt: 5768) -/(.*/)?xml/ads_ -# /xml/ad/* (easylist.txt: 5767) -/(.*/)?xml/ad/.* -# /xlayer/layer.php?uid=$script (easylist.txt: 5766) -/(.*/)?xlayer/layer\.php\?uid= -# /xhr/ad/* (easylist.txt: 5765) -/(.*/)?xhr/ad/.* -# /xfiles/ads/* (easylist.txt: 5764) -/(.*/)?xfiles/ads/.* -# /xclicks. (easylist.txt: 5763) -/(.*/)?xclicks\. -xclicks.*. -# /xbanner.php? (easylist.txt: 5762) -/(.*/)?xbanner\.php\? -# /xadvertisement. (easylist.txt: 5761) -/(.*/)?xadvertisement\. -xadvertisement.*. -# /xads.php (easylist.txt: 5760) -/(.*/)?xads\.php -xads.php*. -# /x5advcorner. (easylist.txt: 5759) -/(.*/)?x5advcorner\. -x5advcorner.*. -# /www/js/ad/* (easylist.txt: 5758) -/(.*/)?www/js/ad/.* -# /www/delivery/* (easylist.txt: 5757) -/(.*/)?www/delivery/.* -# /www/deliverx/* (easylist.txt: 5756) -/(.*/)?www/deliverx/.* -# /www/ads/* (easylist.txt: 5755) -/(.*/)?www/ads/.* -# /www/ad/* (easylist.txt: 5754) -/(.*/)?www/ad/.* -# /wwe_ads/* (easylist.txt: 5753) -/(.*/)?wwe_ads/.* -# /wwe_ads. (easylist.txt: 5752) -/(.*/)?wwe_ads\. -# /writelayerad. (easylist.txt: 5751) -/(.*/)?writelayerad\. -writelayerad.*. -# /wrapper/ads/* (easylist.txt: 5750) -/(.*/)?wrapper/ads/.* -# /wpproads. (easylist.txt: 5749) -/(.*/)?wpproads\. -wpproads.*. -# /wpproadds. (easylist.txt: 5748) -/(.*/)?wpproadds\. -wpproadds.*. -# /wpbanners_show.php (easylist.txt: 5747) -/(.*/)?wpbanners_show\.php -# /wpads/iframe. (easylist.txt: 5746) -/(.*/)?wpads/iframe\. -# /wp_pro_ad_system/* (easylist.txt: 5745) -/(.*/)?wp_pro_ad_system/.* -# /wp_ad_250_ (easylist.txt: 5744) -/(.*/)?wp_ad_250_ -# /wp_ad_250. (easylist.txt: 5743) -/(.*/)?wp_ad_250\. -# /wp-srv/ad/* (easylist.txt: 5742) -/(.*/)?wp-srv/ad/.* -# /wp-popup-scheduler/* (easylist.txt: 5741) -/(.*/)?wp-popup-scheduler/.* -# /wp-content/uploads/useful_banner_manager_banners/* (easylist.txt: 5740) -/(.*/)?wp-content/uploads/useful_banner_manager_banners/.* -# /wp-content/plugins/wp-super-popup/*$~stylesheet (easylist.txt: 5739) -/(.*/)?wp-content/plugins/wp-super-popup/.* -# /wp-content/plugins/wp-super-popup-pro/* (easylist.txt: 5738) -/(.*/)?wp-content/plugins/wp-super-popup-pro/.* -# /wp-content/plugins/wp-bannerize/* (easylist.txt: 5737) -/(.*/)?wp-content/plugins/wp-bannerize/.* -# /wp-content/plugins/useful-banner-manager/* (easylist.txt: 5736) -/(.*/)?wp-content/plugins/useful-banner-manager/.* -# /wp-content/plugins/platinumpopup/* (easylist.txt: 5735) -/(.*/)?wp-content/plugins/platinumpopup/.* -# /wp-content/plugins/m-wp-popup/*$~stylesheet (easylist.txt: 5734) -/(.*/)?wp-content/plugins/m-wp-popup/.* -# /wp-content/plugins/fasterim-optin/* (easylist.txt: 5733) -/(.*/)?wp-content/plugins/fasterim-optin/.* -# /wp-content/plugins/bhcb/lock.js (easylist.txt: 5732) -/(.*/)?wp-content/plugins/bhcb/lock\.js -# /wp-content/plugins/banner-manager/* (easylist.txt: 5731) -/(.*/)?wp-content/plugins/banner-manager/.* -# /wp-content/plugins/automatic-social-locker/* (easylist.txt: 5730) -/(.*/)?wp-content/plugins/automatic-social-locker/.* -# /wp-content/plugins/amazon-product-in-a-post-plugin/* (easylist.txt: 5729) -/(.*/)?wp-content/plugins/amazon-product-in-a-post-plugin/.* -# /wp-content/mbp-banner/* (easylist.txt: 5728) -/(.*/)?wp-content/mbp-banner/.* -# /wp-content/ads/* (easylist.txt: 5727) -/(.*/)?wp-content/ads/.* -# /work.php?n=*&size=*&c= (easylist.txt: 5726) -/(.*/)?work\.php\?n=.*&size=.*&c= -# /wordpress-ads-plug-in/* (easylist.txt: 5725) -/(.*/)?wordpress-ads-plug-in/.* -# /wmads. (easylist.txt: 5724) -/(.*/)?wmads\. -wmads.*. -# /wlbetathome/bannerflow/* (easylist.txt: 5723) -/(.*/)?wlbetathome/bannerflow/.* -# /wix-ad. (easylist.txt: 5722) -/(.*/)?wix-ad\. -wix-ad.*. -# /wired/ads/* (easylist.txt: 5721) -/(.*/)?wired/ads/.* -# /wire/ads/* (easylist.txt: 5720) -/(.*/)?wire/ads/.* -# /wipeads/* (easylist.txt: 5719) -/(.*/)?wipeads/.* -# /widgets/sponsored/* (easylist.txt: 5718) -/(.*/)?widgets/sponsored/.* -# /widgets/ads. (easylist.txt: 5717) -/(.*/)?widgets/ads\. -# /widgetadsense. (easylist.txt: 5716) -/(.*/)?widgetadsense\. -widgetadsense.*. -# /widgetad. (easylist.txt: 5715) -/(.*/)?widgetad\. -widgetad.*. -# /widget/ads/* (easylist.txt: 5714) -/(.*/)?widget/ads/.* -# /widget/ads. (easylist.txt: 5713) -/(.*/)?widget/ads\. -# /widget/ad/* (easylist.txt: 5712) -/(.*/)?widget/ad/.* -# /werbebanner/* (easylist.txt: 5711) -/(.*/)?werbebanner/.* -# /welcomeadredirect. (easylist.txt: 5710) -/(.*/)?welcomeadredirect\. -welcomeadredirect.*. -# /welcomead. (easylist.txt: 5709) -/(.*/)?welcomead\. -welcomead.*. -# /welcome_ad. (easylist.txt: 5708) -/(.*/)?welcome_ad\. -# /weeklyAdsLabel. (easylist.txt: 5707) -/(.*/)?weeklyAdsLabel\. -weeklyAdsLabel.*. -# /weborama.js (easylist.txt: 5706) -/(.*/)?weborama\.js -weborama.js*. -# /webmaster_ads/* (easylist.txt: 5705) -/(.*/)?webmaster_ads/.* -# /webmailad. (easylist.txt: 5704) -/(.*/)?webmailad\. -webmailad.*. -# /webadverts/* (easylist.txt: 5703) -/(.*/)?webadverts/.* -# /webadvert3/* (easylist.txt: 5702) -/(.*/)?webadvert3/.* -# /webadvert/* (easylist.txt: 5701) -/(.*/)?webadvert/.* -# /webadvert. (easylist.txt: 5700) -/(.*/)?webadvert\. -webadvert.*. -# /webadserver. (easylist.txt: 5699) -/(.*/)?webadserver\. -webadserver.*. -# /webads_ (easylist.txt: 5698) -/(.*/)?webads_ -# /webads/* (easylist.txt: 5697) -/(.*/)?webads/.* -# /webads. (easylist.txt: 5696) -/(.*/)?webads\. -webads.*. -# /webadimg/* (easylist.txt: 5695) -/(.*/)?webadimg/.* -# /webad? (easylist.txt: 5694) -/(.*/)?webad\? -# /WebAd/* (easylist.txt: 5693) -/(.*/)?WebAd/.* -# /webad. (easylist.txt: 5692) -/(.*/)?webad\. -webad.*. -# /web_ads/* (easylist.txt: 5691) -/(.*/)?web_ads/.* -# /web/ads/* (easylist.txt: 5690) -/(.*/)?web/ads/.* -# /web-ads/* (easylist.txt: 5689) -/(.*/)?web-ads/.* -# /web-ads. (easylist.txt: 5688) -/(.*/)?web-ads\. -web-ads.*. -# /web-ad_ (easylist.txt: 5687) -/(.*/)?web-ad_ -# /weather/ads/* (easylist.txt: 5686) -/(.*/)?weather/ads/.* -# /weather-sponsor/* (easylist.txt: 5685) -/(.*/)?weather-sponsor/.* -# /wbadvert/* (easylist.txt: 5684) -/(.*/)?wbadvert/.* -# /wave-ad- (easylist.txt: 5683) -/(.*/)?wave-ad- -wave-ad-*. -# /watchit_ad. (easylist.txt: 5682) -/(.*/)?watchit_ad\. -# /wallpaperads/* (easylist.txt: 5681) -/(.*/)?wallpaperads/.* -# /wallpaper_ads/* (easylist.txt: 5680) -/(.*/)?wallpaper_ads/.* -# /wahoha. (easylist.txt: 5679) -/(.*/)?wahoha\. -wahoha.*. -# /w/d/capu.php?z=$script,third-party (easylist.txt: 5678) -/(.*/)?w/d/capu\.php\?z= -# /w/ads/* (easylist.txt: 5677) -/(.*/)?w/ads/.* -# /VXLayerAd- (easylist.txt: 5676) -/(.*/)?VXLayerAd- -VXLayerAd-*. -# /vtextads. (easylist.txt: 5675) -/(.*/)?vtextads\. -vtextads.*. -# /vrdinterads- (easylist.txt: 5674) -/(.*/)?vrdinterads- -vrdinterads-*. -# /vplayerad. (easylist.txt: 5673) -/(.*/)?vplayerad\. -vplayerad.*. -# /vpaidadrenderer. (easylist.txt: 5672) -/(.*/)?vpaidadrenderer\. -vpaidadrenderer.*. -# /vpaidad3. (easylist.txt: 5671) -/(.*/)?vpaidad3\. -vpaidad3.*. -# /vogue_ads/* (easylist.txt: 5670) -/(.*/)?vogue_ads/.* -# /vnads/* (easylist.txt: 5669) -/(.*/)?vnads/.* -# /vnads. (easylist.txt: 5668) -/(.*/)?vnads\. -vnads.*. -# /visitoursponsors. (easylist.txt: 5667) -/(.*/)?visitoursponsors\. -visitoursponsors.*. -# /vision/ads/* (easylist.txt: 5666) -/(.*/)?vision/ads/.* -# /virtualgirlhd- (easylist.txt: 5665) -/(.*/)?virtualgirlhd- -virtualgirlhd-*. -# /virtualgirl/* (easylist.txt: 5664) -/(.*/)?virtualgirl/.* -# /virtual_girl_ (easylist.txt: 5663) -/(.*/)?virtual_girl_ -# /virtuagirlhd. (easylist.txt: 5662) -/(.*/)?virtuagirlhd\. -virtuagirlhd.*. -# /virtuagirl3. (easylist.txt: 5661) -/(.*/)?virtuagirl3\. -virtuagirl3.*. -# /virtuagirl/* (easylist.txt: 5660) -/(.*/)?virtuagirl/.* -# /virtuagirl. (easylist.txt: 5659) -/(.*/)?virtuagirl\. -virtuagirl.*. -# /views/ads/* (easylist.txt: 5658) -/(.*/)?views/ads/.* -# /viewid=*/site=*/size= (easylist.txt: 5657) -/(.*/)?viewid=.*/site=.*/size= -# /viewer/rad? (easylist.txt: 5656) -/(.*/)?viewer/rad\? -# /viewbannerad. (easylist.txt: 5655) -/(.*/)?viewbannerad\. -viewbannerad.*. -# /viewad? (easylist.txt: 5654) -/(.*/)?viewad\? -# /viewad/* (easylist.txt: 5653) -/(.*/)?viewad/.* -# /viewad. (easylist.txt: 5652) -/(.*/)?viewad\. -viewad.*. -# /view_banner. (easylist.txt: 5651) -/(.*/)?view_banner\. -# /view/banner/* (easylist.txt: 5650) -/(.*/)?view/banner/.* -# /view/ads/* (easylist.txt: 5649) -/(.*/)?view/ads/.* -# /videowall-ad. (easylist.txt: 5648) -/(.*/)?videowall-ad\. -videowall-ad.*. -# /videostreaming_ads. (easylist.txt: 5647) -/(.*/)?videostreaming_ads\. -# /videojs.ads. (easylist.txt: 5646) -/(.*/)?videojs\.ads\. -videojs.ads.*. -# /VideoAdsServingService/* (easylist.txt: 5645) -/(.*/)?VideoAdsServingService/.* -# /videoads/* (easylist.txt: 5644) -/(.*/)?videoads/.* -# /videoads. (easylist.txt: 5643) -/(.*/)?videoads\. -videoads.*. -# /videoadrenderer. (easylist.txt: 5642) -/(.*/)?videoadrenderer\. -videoadrenderer.*. -# /VideoAdContent? (easylist.txt: 5641) -/(.*/)?VideoAdContent\? -# /videoad_new. (easylist.txt: 5640) -/(.*/)?videoad_new\. -# /VideoAd/* (easylist.txt: 5639) -/(.*/)?VideoAd/.* -# /videoad. (easylist.txt: 5638) -/(.*/)?videoad\. -videoad.*. -# /video_ads/* (easylist.txt: 5637) -/(.*/)?video_ads/.* -# /video_ads. (easylist.txt: 5636) -/(.*/)?video_ads\. -# /video_ad_ (easylist.txt: 5635) -/(.*/)?video_ad_ -# /video_ad. (easylist.txt: 5634) -/(.*/)?video_ad\. -# /video2adrenderer. (easylist.txt: 5633) -/(.*/)?video2adrenderer\. -video2adrenderer.*. -# /video/ads/* (easylist.txt: 5632) -/(.*/)?video/ads/.* -# /video.ads.php? (easylist.txt: 5631) -/(.*/)?video\.ads\.php\? -# /video-ads-player. (easylist.txt: 5630) -/(.*/)?video-ads-player\. -video-ads-player.*. -# /video-ad-overlay. (easylist.txt: 5629) -/(.*/)?video-ad-overlay\. -video-ad-overlay.*. -# /vidadv. (easylist.txt: 5628) -/(.*/)?vidadv\. -vidadv.*. -# /viagogoads. (easylist.txt: 5627) -/(.*/)?viagogoads\. -viagogoads.*. -# /VHDpoppingModels/* (easylist.txt: 5626) -/(.*/)?VHDpoppingModels/.* -# /vghd2.gif (easylist.txt: 5625) -/(.*/)?vghd2\.gif -vghd2.gif*. -# /vghd.swf (easylist.txt: 5624) -/(.*/)?vghd\.swf -vghd.swf*. -# /vghd.gif (easylist.txt: 5623) -/(.*/)?vghd\.gif -vghd.gif*. -# /verticaladrotatorv2. (easylist.txt: 5622) -/(.*/)?verticaladrotatorv2\. -verticaladrotatorv2.*. -# /vert_ad. (easylist.txt: 5621) -/(.*/)?vert_ad\. -# /vert728ad. (easylist.txt: 5620) -/(.*/)?vert728ad\. -vert728ad.*. -# /vericaladtitle. (easylist.txt: 5619) -/(.*/)?vericaladtitle\. -vericaladtitle.*. -# /vendor-ads- (easylist.txt: 5618) -/(.*/)?vendor-ads- -vendor-ads-*. -# /vclkads. (easylist.txt: 5617) -/(.*/)?vclkads\. -vclkads.*. -# /vbvua.js (easylist.txt: 5616) -/(.*/)?vbvua\.js -vbvua.js*. -# /vboard/ads/* (easylist.txt: 5615) -/(.*/)?vboard/ads/.* -# /vb/ads/* (easylist.txt: 5614) -/(.*/)?vb/ads/.* -# /vastads. (easylist.txt: 5613) -/(.*/)?vastads\. -vastads.*. -# /VASTAdPlugin. (easylist.txt: 5612) -/(.*/)?VASTAdPlugin\. -VASTAdPlugin.*. -# /vast_ads_ (easylist.txt: 5611) -/(.*/)?vast_ads_ -# /valueclickvert. (easylist.txt: 5610) -/(.*/)?valueclickvert\. -valueclickvert.*. -# /valueclickbanner. (easylist.txt: 5609) -/(.*/)?valueclickbanner\. -valueclickbanner.*. -# /valueclick. (easylist.txt: 5608) -/(.*/)?valueclick\. -valueclick.*. -# /valueclick-ad. (easylist.txt: 5607) -/(.*/)?valueclick-ad\. -valueclick-ad.*. -# /vads/* (easylist.txt: 5606) -/(.*/)?vads/.* -# /v9/adv/* (easylist.txt: 5605) -/(.*/)?v9/adv/.* -# /v5/ads/* (easylist.txt: 5604) -/(.*/)?v5/ads/.* -# /utep_ad.js (easylist.txt: 5603) -/(.*/)?utep_ad\.js -# /utep/ad/* (easylist.txt: 5602) -/(.*/)?utep/ad/.* -# /usernext. (easylist.txt: 5601) -/(.*/)?usernext\. -usernext.*. -# /userimages/ads/* (easylist.txt: 5600) -/(.*/)?userimages/ads/.* -# /userad/* (easylist.txt: 5599) -/(.*/)?userad/.* -# /userad. (easylist.txt: 5598) -/(.*/)?userad\. -userad.*. -# /user_ads/* (easylist.txt: 5597) -/(.*/)?user_ads/.* -# /user/ads? (easylist.txt: 5596) -/(.*/)?user/ads\? -# /usenext16. (easylist.txt: 5595) -/(.*/)?usenext16\. -usenext16.*. -# /us-ads. (easylist.txt: 5594) -/(.*/)?us-ads\. -us-ads.*. -# /upsellingads/* (easylist.txt: 5593) -/(.*/)?upsellingads/.* -# /uploads/adv_ (easylist.txt: 5592) -/(.*/)?uploads/adv_ -# /uploads/adv/* (easylist.txt: 5591) -/(.*/)?uploads/adv/.* -# /uploads/ads/* (easylist.txt: 5590) -/(.*/)?uploads/ads/.* -# /UploadedAds/* (easylist.txt: 5589) -/(.*/)?UploadedAds/.* -# /uploaded/ads/* (easylist.txt: 5588) -/(.*/)?uploaded/ads/.* -# /upload/ads/* (easylist.txt: 5587) -/(.*/)?upload/ads/.* -# /uplimg/ads/* (easylist.txt: 5586) -/(.*/)?uplimg/ads/.* -# /update_layer/layer_os_new.php (easylist.txt: 5585) -/(.*/)?update_layer/layer_os_new\.php -# /update_ads/* (easylist.txt: 5584) -/(.*/)?update_ads/.* -# /up/ads/* (easylist.txt: 5583) -/(.*/)?up/ads/.* -# /unity/ad/* (easylist.txt: 5582) -/(.*/)?unity/ad/.* -# /unibluead. (easylist.txt: 5581) -/(.*/)?unibluead\. -unibluead.*. -# /ukc-ad. (easylist.txt: 5580) -/(.*/)?ukc-ad\. -ukc-ad.*. -# /uk/ads/* (easylist.txt: 5579) -/(.*/)?uk/ads/.* -# /uk.ads. (easylist.txt: 5578) -/(.*/)?uk\.ads\. -uk.ads.*. -# /ui/adv_ (easylist.txt: 5577) -/(.*/)?ui/adv_ -# /ui/adv. (easylist.txt: 5576) -/(.*/)?ui/adv\. -# /ui/ads/* (easylist.txt: 5575) -/(.*/)?ui/ads/.* -# /ugoads_inner. (easylist.txt: 5574) -/(.*/)?ugoads_inner\. -# /ugoads. (easylist.txt: 5573) -/(.*/)?ugoads\. -ugoads.*. -# /ucstat. (easylist.txt: 5572) -/(.*/)?ucstat\. -ucstat.*. -# /uberlayadrenderer. (easylist.txt: 5571) -/(.*/)?uberlayadrenderer\. -uberlayadrenderer.*. -# /u?pub= (easylist.txt: 5570) -/(.*/)?u\?pub= -# /u/ads/* (easylist.txt: 5569) -/(.*/)?u/ads/.* -# /u-ads. (easylist.txt: 5568) -/(.*/)?u-ads\. -u-ads.*. -# /txtads/* (easylist.txt: 5567) -/(.*/)?txtads/.* -# /txtad. (easylist.txt: 5566) -/(.*/)?txtad\. -txtad.*. -# /txt_adv. (easylist.txt: 5565) -/(.*/)?txt_adv\. -# /txt_ad_ (easylist.txt: 5564) -/(.*/)?txt_ad_ -# /txt_ad. (easylist.txt: 5563) -/(.*/)?txt_ad\. -# /TwtAd_ (easylist.txt: 5562) -/(.*/)?TwtAd_ -# /twgetad3. (easylist.txt: 5561) -/(.*/)?twgetad3\. -twgetad3.*. -# /TWBadbanner. (easylist.txt: 5560) -/(.*/)?TWBadbanner\. -TWBadbanner.*. -# /tvgdartads. (easylist.txt: 5559) -/(.*/)?tvgdartads\. -tvgdartads.*. -# /turbo_ad. (easylist.txt: 5558) -/(.*/)?turbo_ad\. -# /ttz_ad. (easylist.txt: 5557) -/(.*/)?ttz_ad\. -# /tsc.php?*&ses= (easylist.txt: 5556) -/(.*/)?tsc\.php\?.*&ses= -# /tripplead/* (easylist.txt: 5555) -/(.*/)?tripplead/.* -# /tribalad. (easylist.txt: 5554) -/(.*/)?tribalad\. -tribalad.*. -# /triadshow. (easylist.txt: 5553) -/(.*/)?triadshow\. -triadshow.*. -# /tremoradrenderer. (easylist.txt: 5552) -/(.*/)?tremoradrenderer\. -tremoradrenderer.*. -# /travidia/* (easylist.txt: 5551) -/(.*/)?travidia/.* -# /transad. (easylist.txt: 5550) -/(.*/)?transad\. -transad.*. -# /trafficsynergysupportresponse_ (easylist.txt: 5549) -/(.*/)?trafficsynergysupportresponse_ -# /trafficengineads. (easylist.txt: 5548) -/(.*/)?trafficengineads\. -trafficengineads.*. -# /trafficads. (easylist.txt: 5547) -/(.*/)?trafficads\. -trafficads.*. -# /trafficadpdf02. (easylist.txt: 5546) -/(.*/)?trafficadpdf02\. -trafficadpdf02.*. -# /tradedoubler. (easylist.txt: 5545) -/(.*/)?tradedoubler\. -tradedoubler.*. -# /TradeAds/* (easylist.txt: 5544) -/(.*/)?TradeAds/.* -# /tradead_ (easylist.txt: 5543) -/(.*/)?tradead_ -# /trade_punder. (easylist.txt: 5542) -/(.*/)?trade_punder\. -# /tracking/events/* (easylist.txt: 5541) -/(.*/)?tracking/events/.* -# /tracked_ad. (easylist.txt: 5540) -/(.*/)?tracked_ad\. -# /trackads/* (easylist.txt: 5539) -/(.*/)?trackads/.* -# /track_ad_ (easylist.txt: 5538) -/(.*/)?track_ad_ -# /track.php?uid=*.*&d= (easylist.txt: 5537) -/(.*/)?track\.php\?uid=.*\..*&d= -# /track.php?click=*&domain=*&uid=$xmlhttprequest (easylist.txt: 5536) -/(.*/)?track\.php\?click=.*&domain=.*&uid= -# /tr2/ads/* (easylist.txt: 5535) -/(.*/)?tr2/ads/.* -# /towerbannerad/* (easylist.txt: 5534) -/(.*/)?towerbannerad/.* -# /tower_ad_ (easylist.txt: 5533) -/(.*/)?tower_ad_ -# /totemcash1. (easylist.txt: 5532) -/(.*/)?totemcash1\. -totemcash1.*. -# /totemcash/*$image (easylist.txt: 5531) -/(.*/)?totemcash/.* -# /Totem-Cash/* (easylist.txt: 5530) -/(.*/)?Totem-Cash/.* -# /totalmedia/* (easylist.txt: 5529) -/(.*/)?totalmedia/.* -# /torget_ads. (easylist.txt: 5528) -/(.*/)?torget_ads\. -# /tops.ads. (easylist.txt: 5527) -/(.*/)?tops\.ads\. -tops.ads.*. -# /toprightads. (easylist.txt: 5526) -/(.*/)?toprightads\. -toprightads.*. -# /topperad. (easylist.txt: 5525) -/(.*/)?topperad\. -topperad.*. -# /topleftads. (easylist.txt: 5524) -/(.*/)?topleftads\. -topleftads.*. -# /topadvert. (easylist.txt: 5523) -/(.*/)?topadvert\. -topadvert.*. -# /topadv. (easylist.txt: 5522) -/(.*/)?topadv\. -topadv.*. -# /topads| (easylist.txt: 5521) -/(.*/)?topads$ -# /topads_ (easylist.txt: 5520) -/(.*/)?topads_ -# /topads3. (easylist.txt: 5519) -/(.*/)?topads3\. -topads3.*. -# /topads2. (easylist.txt: 5518) -/(.*/)?topads2\. -topads2.*. -# /topads1. (easylist.txt: 5517) -/(.*/)?topads1\. -topads1.*. -# /topads/* (easylist.txt: 5516) -/(.*/)?topads/.* -# /topads. (easylist.txt: 5515) -/(.*/)?topads\. -topads.*. -# /topadheader. (easylist.txt: 5514) -/(.*/)?topadheader\. -topadheader.*. -# /topadfooter. (easylist.txt: 5513) -/(.*/)?topadfooter\. -topadfooter.*. -# /topadbg. (easylist.txt: 5512) -/(.*/)?topadbg\. -topadbg.*. -# /topad_ (easylist.txt: 5511) -/(.*/)?topad_ -# /topad3. (easylist.txt: 5510) -/(.*/)?topad3\. -topad3.*. -# /topad/* (easylist.txt: 5509) -/(.*/)?topad/.* -# /topad. (easylist.txt: 5508) -/(.*/)?topad\. -topad.*. -# /top_adv_ (easylist.txt: 5507) -/(.*/)?top_adv_ -# /top_ads_ (easylist.txt: 5506) -/(.*/)?top_ads_ -# /top_ads/* (easylist.txt: 5505) -/(.*/)?top_ads/.* -# /top_ads. (easylist.txt: 5504) -/(.*/)?top_ads\. -# /top_ad_ (easylist.txt: 5503) -/(.*/)?top_ad_ -# /top_ad/* (easylist.txt: 5502) -/(.*/)?top_ad/.* -# /top_ad. (easylist.txt: 5501) -/(.*/)?top_ad\. -# /top-ads. (easylist.txt: 5500) -/(.*/)?top-ads\. -top-ads.*. -# /top-ad_ (easylist.txt: 5499) -/(.*/)?top-ad_ -# /top-ad. (easylist.txt: 5498) -/(.*/)?top-ad\. -top-ad.*. -# /top-ad- (easylist.txt: 5497) -/(.*/)?top-ad- -top-ad-*. -# /toonad. (easylist.txt: 5496) -/(.*/)?toonad\. -toonad.*. -# /tools/ad. (easylist.txt: 5495) -/(.*/)?tools/ad\. -# /toolkitads. (easylist.txt: 5494) -/(.*/)?toolkitads\. -toolkitads.*. -# /toigoogleads. (easylist.txt: 5493) -/(.*/)?toigoogleads\. -toigoogleads.*. -# /toggleAds. (easylist.txt: 5492) -/(.*/)?toggleAds\. -toggleAds.*. -# /tncms/ads/* (easylist.txt: 5491) -/(.*/)?tncms/ads/.* -# /tmobilead. (easylist.txt: 5490) -/(.*/)?tmobilead\. -tmobilead.*. -# /tmo/ads/* (easylist.txt: 5489) -/(.*/)?tmo/ads/.* -# /tmnadsense. (easylist.txt: 5488) -/(.*/)?tmnadsense\. -tmnadsense.*. -# /tmnadsense- (easylist.txt: 5487) -/(.*/)?tmnadsense- -tmnadsense-*. -# /tl.ads- (easylist.txt: 5486) -/(.*/)?tl\.ads- -tl.ads-*. -# /tizers.php? (easylist.txt: 5485) -/(.*/)?tizers\.php\? -# /title_ad. (easylist.txt: 5484) -/(.*/)?title_ad\. -# /title-ad/* (easylist.txt: 5483) -/(.*/)?title-ad/.* -# /tit-ads. (easylist.txt: 5482) -/(.*/)?tit-ads\. -tit-ads.*. -# /tinyad. (easylist.txt: 5481) -/(.*/)?tinyad\. -tinyad.*. -# /tinlads. (easylist.txt: 5480) -/(.*/)?tinlads\. -tinlads.*. -# /tileads/* (easylist.txt: 5479) -/(.*/)?tileads/.* -# /TILE_ADS/* (easylist.txt: 5478) -/(.*/)?TILE_ADS/.* -# /tikilink? (easylist.txt: 5477) -/(.*/)?tikilink\? -# /tii_ads. (easylist.txt: 5476) -/(.*/)?tii_ads\. -# /tidaladplugin. (easylist.txt: 5475) -/(.*/)?tidaladplugin\. -tidaladplugin.*. -# /tickeradsget. (easylist.txt: 5474) -/(.*/)?tickeradsget\. -tickeradsget.*. -# /thunder/ad. (easylist.txt: 5473) -/(.*/)?thunder/ad\. -# /thumbs/ads/* (easylist.txt: 5472) -/(.*/)?thumbs/ads/.* -# /thirdpartyframedad/* (easylist.txt: 5471) -/(.*/)?thirdpartyframedad/.* -# /thirdpartyads/* (easylist.txt: 5470) -/(.*/)?thirdpartyads/.* -# /thirdparty/ad/* (easylist.txt: 5469) -/(.*/)?thirdparty/ad/.* -# /thebannerserver.net/* (easylist.txt: 5468) -/(.*/)?thebannerserver\.net/.* -thebannerserver.net/.* -# /thdgoogleadsense. (easylist.txt: 5467) -/(.*/)?thdgoogleadsense\. -thdgoogleadsense.*. -# /tg.php?uid= (easylist.txt: 5466) -/(.*/)?tg\.php\?uid= -# /tfs-ad. (easylist.txt: 5465) -/(.*/)?tfs-ad\. -tfs-ad.*. -# /textadspromo_ (easylist.txt: 5464) -/(.*/)?textadspromo_ -# /textads_ (easylist.txt: 5463) -/(.*/)?textads_ -# /textads/* (easylist.txt: 5462) -/(.*/)?textads/.* -# /textads. (easylist.txt: 5461) -/(.*/)?textads\. -textads.*. -# /textads- (easylist.txt: 5460) -/(.*/)?textads- -textads-*. -# /textadrotate. (easylist.txt: 5459) -/(.*/)?textadrotate\. -textadrotate.*. -# /textad_ (easylist.txt: 5458) -/(.*/)?textad_ -# /textad? (easylist.txt: 5457) -/(.*/)?textad\? -# /textad1. (easylist.txt: 5456) -/(.*/)?textad1\. -textad1.*. -# /textad/* (easylist.txt: 5455) -/(.*/)?textad/.* -# /textad. (easylist.txt: 5454) -/(.*/)?textad\. -textad.*. -# /text_ads_ (easylist.txt: 5453) -/(.*/)?text_ads_ -# /text_ads. (easylist.txt: 5452) -/(.*/)?text_ads\. -# /text_ad_ (easylist.txt: 5451) -/(.*/)?text_ad_ -# /text_ad. (easylist.txt: 5450) -/(.*/)?text_ad\. -# /testingad. (easylist.txt: 5449) -/(.*/)?testingad\. -testingad.*. -# /testads/* (easylist.txt: 5448) -/(.*/)?testads/.* -# /templates/adv_ (easylist.txt: 5447) -/(.*/)?templates/adv_ -# /templates/ads/* (easylist.txt: 5446) -/(.*/)?templates/ads/.* -# /templates/ad/* (easylist.txt: 5445) -/(.*/)?templates/ad/.* -# /templates/ad. (easylist.txt: 5444) -/(.*/)?templates/ad\. -# /templateadvimages/* (easylist.txt: 5443) -/(.*/)?templateadvimages/.* -# /template/ad. (easylist.txt: 5442) -/(.*/)?template/ad\. -# /tempads/* (easylist.txt: 5441) -/(.*/)?tempads/.* -# /teletoon_ad. (easylist.txt: 5440) -/(.*/)?teletoon_ad\. -# /technomedia. (easylist.txt: 5439) -/(.*/)?technomedia\. -technomedia.*. -# /teaseimg/ads/* (easylist.txt: 5438) -/(.*/)?teaseimg/ads/.* -# /teamplayer-ads. (easylist.txt: 5437) -/(.*/)?teamplayer-ads\. -teamplayer-ads.*. -# /tdlads/* (easylist.txt: 5436) -/(.*/)?tdlads/.* -# /td_ads/* (easylist.txt: 5435) -/(.*/)?td_ads/.* -# /td-ads- (easylist.txt: 5434) -/(.*/)?td-ads- -td-ads-*. -# /taxonomy-ads. (easylist.txt: 5433) -/(.*/)?taxonomy-ads\. -taxonomy-ads.*. -# /talkads/* (easylist.txt: 5432) -/(.*/)?talkads/.* -# /tagadv_ (easylist.txt: 5431) -/(.*/)?tagadv_ -# /tag_sys. (easylist.txt: 5430) -/(.*/)?tag_sys\. -# /tag_oas. (easylist.txt: 5429) -/(.*/)?tag_oas\. -# /tag_adv/* (easylist.txt: 5428) -/(.*/)?tag_adv/.* -# /tag-adv. (easylist.txt: 5427) -/(.*/)?tag-adv\. -tag-adv.*. -# /tableadnorth. (easylist.txt: 5426) -/(.*/)?tableadnorth\. -tableadnorth.*. -# /tabads/* (easylist.txt: 5425) -/(.*/)?tabads/.* -# /t.php?uid=*.*&src= (easylist.txt: 5424) -/(.*/)?t\.php\?uid=.*\..*&src= -# /t-ads. (easylist.txt: 5423) -/(.*/)?t-ads\. -t-ads.*. -# /systemad_ (easylist.txt: 5422) -/(.*/)?systemad_ -# /systemad. (easylist.txt: 5421) -/(.*/)?systemad\. -systemad.*. -# /system_ad. (easylist.txt: 5420) -/(.*/)?system_ad\. -# /system/ads/* (easylist.txt: 5419) -/(.*/)?system/ads/.* -# /system/ad/* (easylist.txt: 5418) -/(.*/)?system/ad/.* -# /sys/ad/* (easylist.txt: 5417) -/(.*/)?sys/ad/.* -# /syndication/ad. (easylist.txt: 5416) -/(.*/)?syndication/ad\. -# /synad3. (easylist.txt: 5415) -/(.*/)?synad3\. -synad3.*. -# /synad2. (easylist.txt: 5414) -/(.*/)?synad2\. -synad2.*. -# /SWMAdPlayer. (easylist.txt: 5413) -/(.*/)?SWMAdPlayer\. -SWMAdPlayer.*. -# /switchadbanner. (easylist.txt: 5412) -/(.*/)?switchadbanner\. -switchadbanner.*. -# /swfbin/ad3_ (easylist.txt: 5411) -/(.*/)?swfbin/ad3_ -# /swfbin/ad3- (easylist.txt: 5410) -/(.*/)?swfbin/ad3- -# /swfbin/ad- (easylist.txt: 5409) -/(.*/)?swfbin/ad- -# /swf/ads/* (easylist.txt: 5408) -/(.*/)?swf/ads/.* -# /swf/ad- (easylist.txt: 5407) -/(.*/)?swf/ad- -# /svnad/* (easylist.txt: 5406) -/(.*/)?svnad/.* -# /supernorthroomad. (easylist.txt: 5405) -/(.*/)?supernorthroomad\. -supernorthroomad.*. -# /superads_ (easylist.txt: 5404) -/(.*/)?superads_ -# /sugarads- (easylist.txt: 5403) -/(.*/)?sugarads- -sugarads-*. -# /sugar-ads/* (easylist.txt: 5402) -/(.*/)?sugar-ads/.* -# /sugar-ads. (easylist.txt: 5401) -/(.*/)?sugar-ads\. -sugar-ads.*. -# /subs-ads/* (easylist.txt: 5400) -/(.*/)?subs-ads/.* -# /subnavads/* (easylist.txt: 5399) -/(.*/)?subnavads/.* -# /subadz. (easylist.txt: 5398) -/(.*/)?subadz\. -subadz.*. -# /subad2_ (easylist.txt: 5397) -/(.*/)?subad2_ -# /subAd. (easylist.txt: 5396) -/(.*/)?subAd\. -subAd.*. -# /styles/ads/* (easylist.txt: 5395) -/(.*/)?styles/ads/.* -# /styles/ads. (easylist.txt: 5394) -/(.*/)?styles/ads\. -# /style_ad. (easylist.txt: 5393) -/(.*/)?style_ad\. -# /stuff/ad- (easylist.txt: 5392) -/(.*/)?stuff/ad- -# /studioads/* (easylist.txt: 5391) -/(.*/)?studioads/.* -# /streamatepop. (easylist.txt: 5390) -/(.*/)?streamatepop\. -streamatepop.*. -# /streamads. (easylist.txt: 5389) -/(.*/)?streamads\. -streamads.*. -# /stream-ad. (easylist.txt: 5388) -/(.*/)?stream-ad\. -stream-ad.*. -# /storyads. (easylist.txt: 5387) -/(.*/)?storyads\. -storyads.*. -# /storyadcode. (easylist.txt: 5386) -/(.*/)?storyadcode\. -storyadcode.*. -# /story_ads_ (easylist.txt: 5385) -/(.*/)?story_ads_ -# /story_ad. (easylist.txt: 5384) -/(.*/)?story_ad\. -# /stories/ads/* (easylist.txt: 5383) -/(.*/)?stories/ads/.* -# /storage/adv/* (easylist.txt: 5382) -/(.*/)?storage/adv/.* -# /storage/ads/* (easylist.txt: 5381) -/(.*/)?storage/ads/.* -# /stickyad2. (easylist.txt: 5380) -/(.*/)?stickyad2\. -stickyad2.*. -# /stickyad. (easylist.txt: 5379) -/(.*/)?stickyad\. -stickyad.*. -# /sticky_ad. (easylist.txt: 5378) -/(.*/)?sticky_ad\. -# /sticker_ad. (easylist.txt: 5377) -/(.*/)?sticker_ad\. -# /stats/?t_sid= (easylist.txt: 5376) -/(.*/)?stats/\?t_sid= -# /staticadslot. (easylist.txt: 5375) -/(.*/)?staticadslot\. -staticadslot.*. -# /static_ads/* (easylist.txt: 5374) -/(.*/)?static_ads/.* -# /static/js/4728ba74bc.js$~third-party (easylist.txt: 5373) -/(.*/)?static/js/4728ba74bc\.js -# /static/adv/* (easylist.txt: 5372) -/(.*/)?static/adv/.* -# /static/ads/* (easylist.txt: 5371) -/(.*/)?static/ads/.* -# /static/ad_ (easylist.txt: 5370) -/(.*/)?static/ad_ -# /static/ad/* (easylist.txt: 5369) -/(.*/)?static/ad/.* -# /static/ad- (easylist.txt: 5368) -/(.*/)?static/ad- -# /static.ad. (easylist.txt: 5367) -/(.*/)?static\.ad\. -static.ad.*. -# /standard_ads. (easylist.txt: 5366) -/(.*/)?standard_ads\. -# /ssc_ad. (easylist.txt: 5365) -/(.*/)?ssc_ad\. -# /ss3/ads/* (easylist.txt: 5364) -/(.*/)?ss3/ads/.* -# /srv/ad/* (easylist.txt: 5363) -/(.*/)?srv/ad/.* -# /srec_ad_ (easylist.txt: 5362) -/(.*/)?srec_ad_ -# /src/ads_ (easylist.txt: 5361) -/(.*/)?src/ads_ -# /squareads. (easylist.txt: 5360) -/(.*/)?squareads\. -squareads.*. -# /squaread. (easylist.txt: 5359) -/(.*/)?squaread\. -squaread.*. -# /square-ads/* (easylist.txt: 5358) -/(.*/)?square-ads/.* -# /square-ad. (easylist.txt: 5357) -/(.*/)?square-ad\. -square-ad.*. -# /spotxchangevpaid. (easylist.txt: 5356) -/(.*/)?spotxchangevpaid\. -spotxchangevpaid.*. -# /spotxchangeplugin. (easylist.txt: 5355) -/(.*/)?spotxchangeplugin\. -spotxchangeplugin.*. -# /spotx_adapter. (easylist.txt: 5354) -/(.*/)?spotx_adapter\. -# /spotlightads/* (easylist.txt: 5353) -/(.*/)?spotlightads/.* -# /sponsorstrips/* (easylist.txt: 5352) -/(.*/)?sponsorstrips/.* -# /sponsorshipimage- (easylist.txt: 5351) -/(.*/)?sponsorshipimage- -sponsorshipimage-*. -# /sponsorsgif. (easylist.txt: 5350) -/(.*/)?sponsorsgif\. -sponsorsgif.*. -# /sponsors_box. (easylist.txt: 5349) -/(.*/)?sponsors_box\. -# /sponsors/amg.php? (easylist.txt: 5348) -/(.*/)?sponsors/amg\.php\? -# /sponsors/ads/* (easylist.txt: 5347) -/(.*/)?sponsors/ads/.* -# /sponsors.js? (easylist.txt: 5346) -/(.*/)?sponsors\.js\? -# /sponsors-ads/* (easylist.txt: 5345) -/(.*/)?sponsors-ads/.* -# /sponsorpaynetwork. (easylist.txt: 5344) -/(.*/)?sponsorpaynetwork\. -sponsorpaynetwork.*. -# /sponsoringbanner/* (easylist.txt: 5343) -/(.*/)?sponsoringbanner/.* -# /sponsorHeaderDeriv_ (easylist.txt: 5342) -/(.*/)?sponsorHeaderDeriv_ -# /sponsoredlisting. (easylist.txt: 5341) -/(.*/)?sponsoredlisting\. -sponsoredlisting.*. -# /sponsoredlinksiframe. (easylist.txt: 5340) -/(.*/)?sponsoredlinksiframe\. -sponsoredlinksiframe.*. -# /sponsoredlinks? (easylist.txt: 5339) -/(.*/)?sponsoredlinks\? -# /sponsoredlinks/* (easylist.txt: 5338) -/(.*/)?sponsoredlinks/.* -# /sponsoredlinks. (easylist.txt: 5337) -/(.*/)?sponsoredlinks\. -sponsoredlinks.*. -# /sponsoredheadline. (easylist.txt: 5336) -/(.*/)?sponsoredheadline\. -sponsoredheadline.*. -# /sponsoredcontent. (easylist.txt: 5335) -/(.*/)?sponsoredcontent\. -sponsoredcontent.*. -# /sponsoredbanner/* (easylist.txt: 5334) -/(.*/)?sponsoredbanner/.* -# /sponsoredads/* (easylist.txt: 5333) -/(.*/)?sponsoredads/.* -# /sponsored_top. (easylist.txt: 5332) -/(.*/)?sponsored_top\. -# /sponsored_title. (easylist.txt: 5331) -/(.*/)?sponsored_title\. -# /sponsored_text. (easylist.txt: 5330) -/(.*/)?sponsored_text\. -# /sponsored_listings. (easylist.txt: 5329) -/(.*/)?sponsored_listings\. -# /sponsored_links_ (easylist.txt: 5328) -/(.*/)?sponsored_links_ -# /sponsored_links1. (easylist.txt: 5327) -/(.*/)?sponsored_links1\. -# /sponsored_links. (easylist.txt: 5326) -/(.*/)?sponsored_links\. -# /sponsored_link. (easylist.txt: 5325) -/(.*/)?sponsored_link\. -# /sponsored_by. (easylist.txt: 5324) -/(.*/)?sponsored_by\. -# /sponsored_ads/* (easylist.txt: 5323) -/(.*/)?sponsored_ads/.* -# /sponsored_ad_ (easylist.txt: 5322) -/(.*/)?sponsored_ad_ -# /sponsored_ad. (easylist.txt: 5321) -/(.*/)?sponsored_ad\. -# /sponsored-links/* (easylist.txt: 5320) -/(.*/)?sponsored-links/.* -# /sponsored-links- (easylist.txt: 5319) -/(.*/)?sponsored-links- -sponsored-links-*. -# /sponsored-banner- (easylist.txt: 5318) -/(.*/)?sponsored-banner- -sponsored-banner-*. -# /sponsored-backgrounds/* (easylist.txt: 5317) -/(.*/)?sponsored-backgrounds/.* -# /sponsorbg/* (easylist.txt: 5316) -/(.*/)?sponsorbg/.* -# /sponsorbanners/* (easylist.txt: 5315) -/(.*/)?sponsorbanners/.* -# /sponsorads/* (easylist.txt: 5314) -/(.*/)?sponsorads/.* -# /sponsorads. (easylist.txt: 5313) -/(.*/)?sponsorads\. -sponsorads.*. -# /sponsoradds/* (easylist.txt: 5312) -/(.*/)?sponsoradds/.* -# /sponsorad2. (easylist.txt: 5311) -/(.*/)?sponsorad2\. -sponsorad2.*. -# /sponsorad. (easylist.txt: 5310) -/(.*/)?sponsorad\. -sponsorad.*. -# /sponsor_select. (easylist.txt: 5309) -/(.*/)?sponsor_select\. -# /sponsor_ads. (easylist.txt: 5308) -/(.*/)?sponsor_ads\. -# /sponsor/click. (easylist.txt: 5307) -/(.*/)?sponsor/click\. -# /sponsor-links. (easylist.txt: 5306) -/(.*/)?sponsor-links\. -sponsor-links.*. -# /sponsor-box? (easylist.txt: 5305) -/(.*/)?sponsor-box\? -# /sponsor-banner. (easylist.txt: 5304) -/(.*/)?sponsor-banner\. -sponsor-banner.*. -# /sponsor-ad (easylist.txt: 5303) -/(.*/)?sponsor-ad -sponsor-ad*. -# /sponsor%20banners/* (easylist.txt: 5302) -/(.*/)?sponsor%20banners/.* -# /sponslink_ (easylist.txt: 5301) -/(.*/)?sponslink_ -# /sponsimages/* (easylist.txt: 5300) -/(.*/)?sponsimages/.* -# /sponsers.cgi (easylist.txt: 5299) -/(.*/)?sponsers\.cgi -sponsers.cgi*. -# /sponseredlinksros. (easylist.txt: 5298) -/(.*/)?sponseredlinksros\. -sponseredlinksros.*. -# /sponser. (easylist.txt: 5297) -/(.*/)?sponser\. -sponser.*. -# /spons_links_ (easylist.txt: 5296) -/(.*/)?spons_links_ -# /spons/banners/* (easylist.txt: 5295) -/(.*/)?spons/banners/.* -# /sponlink. (easylist.txt: 5294) -/(.*/)?sponlink\. -sponlink.*. -# /spo_show.asp? (easylist.txt: 5293) -/(.*/)?spo_show\.asp\? -# /SplashAd_ (easylist.txt: 5292) -/(.*/)?SplashAd_ -# /splash_ads_ (easylist.txt: 5291) -/(.*/)?splash_ads_ -# /spiderad/* (easylist.txt: 5290) -/(.*/)?spiderad/.* -# /specialfeatureads/* (easylist.txt: 5289) -/(.*/)?specialfeatureads/.* -# /specialads/* (easylist.txt: 5288) -/(.*/)?specialads/.* -# /special_ads/* (easylist.txt: 5287) -/(.*/)?special_ads/.* -# /special_ad. (easylist.txt: 5286) -/(.*/)?special_ad\. -# /special-ads/* (easylist.txt: 5285) -/(.*/)?special-ads/.* -# /spcjs_min. (easylist.txt: 5284) -/(.*/)?spcjs_min\. -# /spcjs.php (easylist.txt: 5283) -/(.*/)?spcjs\.php -spcjs.php*. -# /spc.php (easylist.txt: 5282) -/(.*/)?spc\.php -spc.php*. -# /spark_ad. (easylist.txt: 5281) -/(.*/)?spark_ad\. -# /spacedesc= (easylist.txt: 5280) -/(.*/)?spacedesc= -# /space_ad. (easylist.txt: 5279) -/(.*/)?space_ad\. -# /spac_adx. (easylist.txt: 5278) -/(.*/)?spac_adx\. -# /sp/delivery/* (easylist.txt: 5277) -/(.*/)?sp/delivery/.* -# /someads. (easylist.txt: 5276) -/(.*/)?someads\. -someads.*. -# /some-ad. (easylist.txt: 5275) -/(.*/)?some-ad\. -some-ad.*. -# /somaadscaleskyscraperscript. (easylist.txt: 5274) -/(.*/)?somaadscaleskyscraperscript\. -somaadscaleskyscraperscript.*. -# /socialads/* (easylist.txt: 5273) -/(.*/)?socialads/.* -# /socialads. (easylist.txt: 5272) -/(.*/)?socialads\. -socialads.*. -# /SmpAds. (easylist.txt: 5271) -/(.*/)?SmpAds\. -SmpAds.*. -# /smoozed-ad/* (easylist.txt: 5270) -/(.*/)?smoozed-ad/.* -# /smedia/ad/* (easylist.txt: 5269) -/(.*/)?smedia/ad/.* -# /smeadvertisement/* (easylist.txt: 5268) -/(.*/)?smeadvertisement/.* -# /smb/ads/* (easylist.txt: 5267) -/(.*/)?smb/ads/.* -# /smartlinks.epl? (easylist.txt: 5266) -/(.*/)?smartlinks\.epl\? -# /smartadserver. (easylist.txt: 5265) -/(.*/)?smartadserver\. -smartadserver.*. -# /smartads. (easylist.txt: 5264) -/(.*/)?smartads\. -smartads.*. -# /smartAd? (easylist.txt: 5263) -/(.*/)?smartAd\? -# /smartad. (easylist.txt: 5262) -/(.*/)?smartad\. -smartad.*. -# /smartad- (easylist.txt: 5261) -/(.*/)?smartad- -smartad-*. -# /smart_ad/* (easylist.txt: 5260) -/(.*/)?smart_ad/.* -# /smart-ad-server. (easylist.txt: 5259) -/(.*/)?smart-ad-server\. -smart-ad-server.*. -# /smalltopl. (easylist.txt: 5258) -/(.*/)?smalltopl\. -smalltopl.*. -# /smalladblockbg- (easylist.txt: 5257) -/(.*/)?smalladblockbg- -smalladblockbg-*. -# /smallad- (easylist.txt: 5256) -/(.*/)?smallad- -smallad-*. -# /small_ads/* (easylist.txt: 5255) -/(.*/)?small_ads/.* -# /small_ad_ (easylist.txt: 5254) -/(.*/)?small_ad_ -# /small_ad. (easylist.txt: 5253) -/(.*/)?small_ad\. -# /smalAds. (easylist.txt: 5252) -/(.*/)?smalAds\. -smalAds.*. -# /slidetopad. (easylist.txt: 5251) -/(.*/)?slidetopad\. -slidetopad.*. -# /slideshowintad? (easylist.txt: 5250) -/(.*/)?slideshowintad\? -# /slideshow/ads. (easylist.txt: 5249) -/(.*/)?slideshow/ads\. -# /SliderJobAdList. (easylist.txt: 5248) -/(.*/)?SliderJobAdList\. -SliderJobAdList.*. -# /sliderad3. (easylist.txt: 5247) -/(.*/)?sliderad3\. -sliderad3.*. -# /sliderAd/* (easylist.txt: 5246) -/(.*/)?sliderAd/.* -# /slider_ad. (easylist.txt: 5245) -/(.*/)?slider_ad\. -# /slider.ad. (easylist.txt: 5244) -/(.*/)?slider\.ad\. -slider.ad.*. -# /slider-ad- (easylist.txt: 5243) -/(.*/)?slider-ad- -slider-ad-*. -# /slideinad. (easylist.txt: 5242) -/(.*/)?slideinad\. -slideinad.*. -# /slideadverts/* (easylist.txt: 5241) -/(.*/)?slideadverts/.* -# /slafc.js (easylist.txt: 5240) -/(.*/)?slafc\.js -slafc.js*. -# /skyscraperad. (easylist.txt: 5239) -/(.*/)?skyscraperad\. -skyscraperad.*. -# /skyscraper_ad_ (easylist.txt: 5238) -/(.*/)?skyscraper_ad_ -# /skyscraper-ad. (easylist.txt: 5237) -/(.*/)?skyscraper-ad\. -skyscraper-ad.*. -# /skyframeopenads_ (easylist.txt: 5236) -/(.*/)?skyframeopenads_ -# /skyframeopenads. (easylist.txt: 5235) -/(.*/)?skyframeopenads\. -skyframeopenads.*. -# /skybar_ad. (easylist.txt: 5234) -/(.*/)?skybar_ad\. -# /skybannerview. (easylist.txt: 5233) -/(.*/)?skybannerview\. -skybannerview.*. -# /skyadright. (easylist.txt: 5232) -/(.*/)?skyadright\. -skyadright.*. -# /skyadjs/* (easylist.txt: 5231) -/(.*/)?skyadjs/.* -# /skyad_ (easylist.txt: 5230) -/(.*/)?skyad_ -# /skyad. (easylist.txt: 5229) -/(.*/)?skyad\. -skyad.*. -# /skins/ads/* (easylist.txt: 5228) -/(.*/)?skins/ads/.* -# /skins/ads- (easylist.txt: 5227) -/(.*/)?skins/ads- -# /skinads/* (easylist.txt: 5226) -/(.*/)?skinads/.* -# /skinad. (easylist.txt: 5225) -/(.*/)?skinad\. -skinad.*. -# /skin3/ads/* (easylist.txt: 5224) -/(.*/)?skin3/ads/.* -# /skin/adv/* (easylist.txt: 5223) -/(.*/)?skin/adv/.* -# /skin/ad3/* (easylist.txt: 5222) -/(.*/)?skin/ad3/.* -# /skin/ad/* (easylist.txt: 5221) -/(.*/)?skin/ad/.* -# /size=*/random=*/viewid= (easylist.txt: 5220) -/(.*/)?size=.*/random=.*/viewid= -# /sitewide/ads/* (easylist.txt: 5219) -/(.*/)?sitewide/ads/.* -# /sites/ad_ (easylist.txt: 5218) -/(.*/)?sites/ad_ -# /sitemanagement/ads/* (easylist.txt: 5217) -/(.*/)?sitemanagement/ads/.* -# /siteimages/ads- (easylist.txt: 5216) -/(.*/)?siteimages/ads- -# /siteafs.txt? (easylist.txt: 5215) -/(.*/)?siteafs\.txt\? -# /siteadvert. (easylist.txt: 5214) -/(.*/)?siteadvert\. -siteadvert.*. -# /siteads/* (easylist.txt: 5213) -/(.*/)?siteads/.* -# /siteads. (easylist.txt: 5212) -/(.*/)?siteads\. -siteads.*. -# /site_under. (easylist.txt: 5211) -/(.*/)?site_under\. -# /site_ads/* (easylist.txt: 5210) -/(.*/)?site_ads/.* -# /site_ads. (easylist.txt: 5209) -/(.*/)?site_ads\. -# /site=*/viewid=*/size= (easylist.txt: 5208) -/(.*/)?site=.*/viewid=.*/size= -# /site=*/size=*/viewid= (easylist.txt: 5207) -/(.*/)?site=.*/size=.*/viewid= -# /site/ads? (easylist.txt: 5206) -/(.*/)?site/ads\? -# /site/ads/* (easylist.txt: 5205) -/(.*/)?site/ads/.* -# /site/ad/* (easylist.txt: 5204) -/(.*/)?site/ad/.* -# /site-advert. (easylist.txt: 5203) -/(.*/)?site-advert\. -site-advert.*. -# /site-ads/* (easylist.txt: 5202) -/(.*/)?site-ads/.* -# /sisterads. (easylist.txt: 5201) -/(.*/)?sisterads\. -sisterads.*. -# /singleadextension. (easylist.txt: 5200) -/(.*/)?singleadextension\. -singleadextension.*. -# /simpleadvert/* (easylist.txt: 5199) -/(.*/)?simpleadvert/.* -# /simpleadvert. (easylist.txt: 5198) -/(.*/)?simpleadvert\. -simpleadvert.*. -# /simpleads/* (easylist.txt: 5197) -/(.*/)?simpleads/.* -# /silverads. (easylist.txt: 5196) -/(.*/)?silverads\. -silverads.*. -# /silver/ads/* (easylist.txt: 5195) -/(.*/)?silver/ads/.* -# /siframead. (easylist.txt: 5194) -/(.*/)?siframead\. -siframead.*. -# /sidelinead. (easylist.txt: 5193) -/(.*/)?sidelinead\. -sidelinead.*. -# /sidekickads. (easylist.txt: 5192) -/(.*/)?sidekickads\. -sidekickads.*. -# /sidecol_ad. (easylist.txt: 5191) -/(.*/)?sidecol_ad\. -# /sidebaradvertisement. (easylist.txt: 5190) -/(.*/)?sidebaradvertisement\. -sidebaradvertisement.*. -# /sidebarad/* (easylist.txt: 5189) -/(.*/)?sidebarad/.* -# /sidebar_ads/* (easylist.txt: 5188) -/(.*/)?sidebar_ads/.* -# /sidebar_ad_ (easylist.txt: 5187) -/(.*/)?sidebar_ad_ -# /sidebar_ad. (easylist.txt: 5186) -/(.*/)?sidebar_ad\. -# /sidebar-ads/* (easylist.txt: 5185) -/(.*/)?sidebar-ads/.* -# /sidebar-ad- (easylist.txt: 5184) -/(.*/)?sidebar-ad- -sidebar-ad-*. -# /sideadvtmp. (easylist.txt: 5183) -/(.*/)?sideadvtmp\. -sideadvtmp.*. -# /sideads| (easylist.txt: 5182) -/(.*/)?sideads$ -# /sideads/* (easylist.txt: 5181) -/(.*/)?sideads/.* -# /sideadiframe. (easylist.txt: 5180) -/(.*/)?sideadiframe\. -sideadiframe.*. -# /sidead3. (easylist.txt: 5179) -/(.*/)?sidead3\. -sidead3.*. -# /sidead2. (easylist.txt: 5178) -/(.*/)?sidead2\. -sidead2.*. -# /sidead1. (easylist.txt: 5177) -/(.*/)?sidead1\. -sidead1.*. -# /sidead/* (easylist.txt: 5176) -/(.*/)?sidead/.* -# /sidead. (easylist.txt: 5175) -/(.*/)?sidead\. -sidead.*. -# /side_adverts. (easylist.txt: 5174) -/(.*/)?side_adverts\. -# /side-ads- (easylist.txt: 5173) -/(.*/)?side-ads- -side-ads-*. -# /side-ad. (easylist.txt: 5172) -/(.*/)?side-ad\. -side-ad.*. -# /side-ad- (easylist.txt: 5171) -/(.*/)?side-ad- -side-ad-*. -# /showSp.php? (easylist.txt: 5170) -/(.*/)?showSp\.php\? -# /showsidebar-ad- (easylist.txt: 5169) -/(.*/)?showsidebar-ad- -showsidebar-ad-*. -# /showpost-ad- (easylist.txt: 5168) -/(.*/)?showpost-ad- -showpost-ad-*. -# /showmarketingmaterial. (easylist.txt: 5167) -/(.*/)?showmarketingmaterial\. -showmarketingmaterial.*. -# /showJsAd/* (easylist.txt: 5166) -/(.*/)?showJsAd/.* -# /showindex-ad- (easylist.txt: 5165) -/(.*/)?showindex-ad- -showindex-ad-*. -# /showflashad. (easylist.txt: 5164) -/(.*/)?showflashad\. -showflashad.*. -# /showcasead/* (easylist.txt: 5163) -/(.*/)?showcasead/.* -# /showbanner. (easylist.txt: 5162) -/(.*/)?showbanner\. -showbanner.*. -# /showban.asp? (easylist.txt: 5161) -/(.*/)?showban\.asp\? -# /showadvertising. (easylist.txt: 5160) -/(.*/)?showadvertising\. -showadvertising.*. -# /showadvert. (easylist.txt: 5159) -/(.*/)?showadvert\. -showadvert.*. -# /showads_ (easylist.txt: 5158) -/(.*/)?showads_ -# /showads/* (easylist.txt: 5157) -/(.*/)?showads/.* -# /showads. (easylist.txt: 5156) -/(.*/)?showads\. -showads.*. -# /showadjs. (easylist.txt: 5155) -/(.*/)?showadjs\. -showadjs.*. -# /showadcode. (easylist.txt: 5154) -/(.*/)?showadcode\. -showadcode.*. -# /showad_ (easylist.txt: 5153) -/(.*/)?showad_ -# /showAd300. (easylist.txt: 5152) -/(.*/)?showAd300\. -showAd300.*. -# /showAd300- (easylist.txt: 5151) -/(.*/)?showAd300- -showAd300-*. -# /showad/* (easylist.txt: 5150) -/(.*/)?showad/.* -# /showad. (easylist.txt: 5149) -/(.*/)?showad\. -showad.*. -# /show_ads_ (easylist.txt: 5148) -/(.*/)?show_ads_ -# /show_ads.js (easylist.txt: 5147) -/(.*/)?show_ads\.js -# /show_ad_ (easylist.txt: 5146) -/(.*/)?show_ad_ -# /show_ad. (easylist.txt: 5145) -/(.*/)?show_ad\. -# /show.cgi?adp (easylist.txt: 5144) -/(.*/)?show\.cgi\?adp -# /show.ad? (easylist.txt: 5143) -/(.*/)?show\.ad\? -# /show-ads. (easylist.txt: 5142) -/(.*/)?show-ads\. -show-ads.*. -# /show-ad. (easylist.txt: 5141) -/(.*/)?show-ad\. -show-ad.*. -# /shortmediads/* (easylist.txt: 5140) -/(.*/)?shortmediads/.* -# /shared/ads/* (easylist.txt: 5139) -/(.*/)?shared/ads/.* -# /shared/ads. (easylist.txt: 5138) -/(.*/)?shared/ads\. -# /shared/ad_ (easylist.txt: 5137) -/(.*/)?shared/ad_ -# /share/ads/* (easylist.txt: 5136) -/(.*/)?share/ads/.* -# /sevenl_ad. (easylist.txt: 5135) -/(.*/)?sevenl_ad\. -# /sevenads. (easylist.txt: 5134) -/(.*/)?sevenads\. -sevenads.*. -# /settings/ad. (easylist.txt: 5133) -/(.*/)?settings/ad\. -# /servlet/view/* (easylist.txt: 5132) -/(.*/)?servlet/view/.* -# /services/ads/* (easylist.txt: 5131) -/(.*/)?services/ads/.* -# /service/ads/* (easylist.txt: 5130) -/(.*/)?service/ads/.* -# /servewebads/* (easylist.txt: 5129) -/(.*/)?servewebads/.* -# /server/ads/* (easylist.txt: 5128) -/(.*/)?server/ads/.* -# /Server/AD/* (easylist.txt: 5127) -/(.*/)?Server/AD/.* -# /serveads. (easylist.txt: 5126) -/(.*/)?serveads\. -serveads.*. -# /ServeAd? (easylist.txt: 5125) -/(.*/)?ServeAd\? -# /servead/* (easylist.txt: 5124) -/(.*/)?servead/.* -# /servead. (easylist.txt: 5123) -/(.*/)?servead\. -servead.*. -# /serve.ads. (easylist.txt: 5122) -/(.*/)?serve\.ads\. -serve.ads.*. -# /serv.ads. (easylist.txt: 5121) -/(.*/)?serv\.ads\. -serv.ads.*. -# /seo-ads. (easylist.txt: 5120) -/(.*/)?seo-ads\. -seo-ads.*. -# /securepubads. (easylist.txt: 5119) -/(.*/)?securepubads\. -securepubads.*. -# /secondads_ (easylist.txt: 5118) -/(.*/)?secondads_ -# /secondads. (easylist.txt: 5117) -/(.*/)?secondads\. -secondads.*. -# /searchads/* (easylist.txt: 5116) -/(.*/)?searchads/.* -# /searchad_ (easylist.txt: 5115) -/(.*/)?searchad_ -# /searchad. (easylist.txt: 5114) -/(.*/)?searchad\. -searchad.*. -# /search_ads. (easylist.txt: 5113) -/(.*/)?search_ads\. -# /search/ads_ (easylist.txt: 5112) -/(.*/)?search/ads_ -# /search/ads? (easylist.txt: 5111) -/(.*/)?search/ads\? -# /search/ad/* (easylist.txt: 5110) -/(.*/)?search/ad/.* -# /search.php?uid=*.*&src= (easylist.txt: 5109) -/(.*/)?search\.php\?uid=.*\..*&src= -# /search-ads? (easylist.txt: 5108) -/(.*/)?search-ads\? -# /scrpads. (easylist.txt: 5107) -/(.*/)?scrpads\. -scrpads.*. -# /scrollads/* (easylist.txt: 5106) -/(.*/)?scrollads/.* -# /scripts/zanox- (easylist.txt: 5105) -/(.*/)?scripts/zanox- -# /scripts/feedmeCaf.php?q=*&d=*&ron=$script (easylist.txt: 5104) -/(.*/)?scripts/feedmeCaf\.php\?q=.*&d=.*&ron= -# /scripts/afc/* (easylist.txt: 5103) -/(.*/)?scripts/afc/.* -# /scripts/adv. (easylist.txt: 5102) -/(.*/)?scripts/adv\. -# /scripts/AdService_ (easylist.txt: 5101) -/(.*/)?scripts/AdService_ -# /scripts/ads/* (easylist.txt: 5100) -/(.*/)?scripts/ads/.* -# /scripts/ads. (easylist.txt: 5099) -/(.*/)?scripts/ads\. -# /scripts/ad_ (easylist.txt: 5098) -/(.*/)?scripts/ad_ -# /scripts/ad/* (easylist.txt: 5097) -/(.*/)?scripts/ad/.* -# /scripts/ad. (easylist.txt: 5096) -/(.*/)?scripts/ad\. -# /scripts/ad- (easylist.txt: 5095) -/(.*/)?scripts/ad- -# /script/oas/* (easylist.txt: 5094) -/(.*/)?script/oas/.* -# /script/banniere_*.php?id=*&ref=$script,third-party (easylist.txt: 5093) -/(.*/)?script/banniere_.*\.php\?id=.*&ref= -# /script/ads_ (easylist.txt: 5092) -/(.*/)?script/ads_ -# /script/ads. (easylist.txt: 5091) -/(.*/)?script/ads\. -# /script/ad. (easylist.txt: 5090) -/(.*/)?script/ad\. -# /scaradcontrol. (easylist.txt: 5089) -/(.*/)?scaradcontrol\. -scaradcontrol.*. -# /scanscoutplugin. (easylist.txt: 5088) -/(.*/)?scanscoutplugin\. -scanscoutplugin.*. -# /scanscoutoverlayadrenderer. (easylist.txt: 5087) -/(.*/)?scanscoutoverlayadrenderer\. -scanscoutoverlayadrenderer.*. -# /scanscout. (easylist.txt: 5086) -/(.*/)?scanscout\. -scanscout.*. -# /sb-relevance.js (easylist.txt: 5085) -/(.*/)?sb-relevance\.js -sb-relevance.js*. -# /savvyads. (easylist.txt: 5084) -/(.*/)?savvyads\. -savvyads.*. -# /satnetgoogleads. (easylist.txt: 5083) -/(.*/)?satnetgoogleads\. -satnetgoogleads.*. -# /satnetads. (easylist.txt: 5082) -/(.*/)?satnetads\. -satnetads.*. -# /samsung_ad. (easylist.txt: 5081) -/(.*/)?samsung_ad\. -# /samplead1. (easylist.txt: 5080) -/(.*/)?samplead1\. -samplead1.*. -# /salesad/* (easylist.txt: 5079) -/(.*/)?salesad/.* -# /sailthru.js (easylist.txt: 5078) -/(.*/)?sailthru\.js -sailthru.js*. -# /safead/* (easylist.txt: 5077) -/(.*/)?safead/.* -# /rule34v2/ads/* (easylist.txt: 5076) -/(.*/)?rule34v2/ads/.* -# /rule34/ads/* (easylist.txt: 5075) -/(.*/)?rule34/ads/.* -# /rswebsiteads/* (easylist.txt: 5074) -/(.*/)?rswebsiteads/.* -# /rss2/?np=*&hp=$script,third-party (easylist.txt: 5073) -/(.*/)?rss2/\?np=.*&hp= -# /rss2/?hp=*&np=$script,third-party (easylist.txt: 5072) -/(.*/)?rss2/\?hp=.*&np= -# /rss2/?*&np=*&hp=$script,third-party (easylist.txt: 5071) -/(.*/)?rss2/\?.*&np=.*&hp= -# /rss2/?*&hp=*&np=$script,third-party (easylist.txt: 5070) -/(.*/)?rss2/\?.*&hp=.*&np= -# /rss/ads/* (easylist.txt: 5069) -/(.*/)?rss/ads/.* -# /rsc_ad_ (easylist.txt: 5068) -/(.*/)?rsc_ad_ -# /rsads/* (easylist.txt: 5067) -/(.*/)?rsads/.* -# /rsads.js (easylist.txt: 5066) -/(.*/)?rsads\.js -rsads.js*. -# /rpgetad. (easylist.txt: 5065) -/(.*/)?rpgetad\. -rpgetad.*. -# /rpc/ad/* (easylist.txt: 5064) -/(.*/)?rpc/ad/.* -# /roturl.js (easylist.txt: 5063) -/(.*/)?roturl\.js -roturl.js*. -# /rotatoradbottom. (easylist.txt: 5062) -/(.*/)?rotatoradbottom\. -rotatoradbottom.*. -# /rotatorad300x250. (easylist.txt: 5061) -/(.*/)?rotatorad300x250\. -rotatorad300x250.*. -# /rotationad. (easylist.txt: 5060) -/(.*/)?rotationad\. -rotationad.*. -# /rotation/banner (easylist.txt: 5059) -/(.*/)?rotation/banner -# /rotatingtextad. (easylist.txt: 5058) -/(.*/)?rotatingtextad\. -rotatingtextad.*. -# /rotatingpeels. (easylist.txt: 5057) -/(.*/)?rotatingpeels\. -rotatingpeels.*. -# /rotatingad. (easylist.txt: 5056) -/(.*/)?rotatingad\. -rotatingad.*. -# /rotating_banner.php (easylist.txt: 5055) -/(.*/)?rotating_banner\.php -# /rotatedads2. (easylist.txt: 5054) -/(.*/)?rotatedads2\. -rotatedads2.*. -# /rotatedads13. (easylist.txt: 5053) -/(.*/)?rotatedads13\. -rotatedads13.*. -# /rotatedads1. (easylist.txt: 5052) -/(.*/)?rotatedads1\. -rotatedads1.*. -# /rotateads. (easylist.txt: 5051) -/(.*/)?rotateads\. -rotateads.*. -# /rotads/* (easylist.txt: 5050) -/(.*/)?rotads/.* -# /rotad/* (easylist.txt: 5049) -/(.*/)?rotad/.* -# /root_ad. (easylist.txt: 5048) -/(.*/)?root_ad\. -# /rolloverbannerad. (easylist.txt: 5047) -/(.*/)?rolloverbannerad\. -rolloverbannerad.*. -# /rolloverads/* (easylist.txt: 5046) -/(.*/)?rolloverads/.* -# /rollad. (easylist.txt: 5045) -/(.*/)?rollad\. -rollad.*. -# /righttopads. (easylist.txt: 5044) -/(.*/)?righttopads\. -righttopads.*. -# /rightsideaddisplay. (easylist.txt: 5043) -/(.*/)?rightsideaddisplay\. -rightsideaddisplay.*. -# /rightrailgoogleads. (easylist.txt: 5042) -/(.*/)?rightrailgoogleads\. -rightrailgoogleads.*. -# /rightnavadsanswer. (easylist.txt: 5041) -/(.*/)?rightnavadsanswer\. -rightnavadsanswer.*. -# /rightnavads. (easylist.txt: 5040) -/(.*/)?rightnavads\. -rightnavads.*. -# /rightbanner/* (easylist.txt: 5039) -/(.*/)?rightbanner/.* -# /rightads. (easylist.txt: 5038) -/(.*/)?rightads\. -rightads.*. -# /rightad/* (easylist.txt: 5037) -/(.*/)?rightad/.* -# /rightad. (easylist.txt: 5036) -/(.*/)?rightad\. -rightad.*. -# /right_ads. (easylist.txt: 5035) -/(.*/)?right_ads\. -# /right_ad_ (easylist.txt: 5034) -/(.*/)?right_ad_ -# /right_ad^ (easylist.txt: 5033) -/(.*/)?right_ad[^\w%.-] -# /right_ad. (easylist.txt: 5032) -/(.*/)?right_ad\. -# /right-ad- (easylist.txt: 5031) -/(.*/)?right-ad- -right-ad-*. -# /richoas. (easylist.txt: 5030) -/(.*/)?richoas\. -richoas.*. -# /rhspushads/* (easylist.txt: 5029) -/(.*/)?rhspushads/.* -# /rgads. (easylist.txt: 5028) -/(.*/)?rgads\. -rgads.*. -# /rg-rlog.php$xmlhttprequest (easylist.txt: 5027) -/(.*/)?rg-rlog\.php -rg-rlog.php*. -# /rg-erdr.php$xmlhttprequest (easylist.txt: 5026) -/(.*/)?rg-erdr\.php -rg-erdr.php*. -# /revealads2/* (easylist.txt: 5025) -/(.*/)?revealads2/.* -# /revealads/* (easylist.txt: 5024) -/(.*/)?revealads/.* -# /revealads. (easylist.txt: 5023) -/(.*/)?revealads\. -revealads.*. -# /revealaads/* (easylist.txt: 5022) -/(.*/)?revealaads/.* -# /revealaads. (easylist.txt: 5021) -/(.*/)?revealaads\. -revealaads.*. -# /retrieve-ad. (easylist.txt: 5020) -/(.*/)?retrieve-ad\. -retrieve-ad.*. -# /retrad. (easylist.txt: 5019) -/(.*/)?retrad\. -retrad.*. -# /restorationad- (easylist.txt: 5018) -/(.*/)?restorationad- -restorationad-*. -# /responsive_dfp_ (easylist.txt: 5017) -/(.*/)?responsive_dfp_ -# /responsive_dfp. (easylist.txt: 5016) -/(.*/)?responsive_dfp\. -# /responsive-ads. (easylist.txt: 5015) -/(.*/)?responsive-ads\. -responsive-ads.*. -# /resources/ads_ (easylist.txt: 5014) -/(.*/)?resources/ads_ -# /resources/ads/* (easylist.txt: 5013) -/(.*/)?resources/ads/.* -# /resources/ad. (easylist.txt: 5012) -/(.*/)?resources/ad\. -# /requestmyspacead. (easylist.txt: 5011) -/(.*/)?requestmyspacead\. -requestmyspacead.*. -# /requestadvertisement. (easylist.txt: 5010) -/(.*/)?requestadvertisement\. -requestadvertisement.*. -# /report_ad_ (easylist.txt: 5009) -/(.*/)?report_ad_ -# /report_ad. (easylist.txt: 5008) -/(.*/)?report_ad\. -# /repeat_adv. (easylist.txt: 5007) -/(.*/)?repeat_adv\. -# /renderBanner.do? (easylist.txt: 5006) -/(.*/)?renderBanner\.do\? -# /render-ad/* (easylist.txt: 5005) -/(.*/)?render-ad/.* -# /remove_ads. (easylist.txt: 5004) -/(.*/)?remove_ads\. -# /remove-ads. (easylist.txt: 5003) -/(.*/)?remove-ads\. -remove-ads.*. -# /relevance_ad. (easylist.txt: 5002) -/(.*/)?relevance_ad\. -# /relatedads. (easylist.txt: 5001) -/(.*/)?relatedads\. -relatedads.*. -# /related-ads. (easylist.txt: 5000) -/(.*/)?related-ads\. -related-ads.*. -# /reklame/* (easylist.txt: 4999) -/(.*/)?reklame/.* -# /reklama5. (easylist.txt: 4998) -/(.*/)?reklama5\. -reklama5.*. -# /reklama2. (easylist.txt: 4997) -/(.*/)?reklama2\. -reklama2.*. -# /reklama/* (easylist.txt: 4996) -/(.*/)?reklama/.* -# /reklama.$~stylesheet (easylist.txt: 4995) -/(.*/)?reklama\. -reklama.*. -# /reklam/* (easylist.txt: 4994) -/(.*/)?reklam/.* -# /reklam. (easylist.txt: 4993) -/(.*/)?reklam\. -reklam.*. -# /RefSplDicAdsTopL. (easylist.txt: 4992) -/(.*/)?RefSplDicAdsTopL\. -RefSplDicAdsTopL.*. -# /refreshsyncbannerad? (easylist.txt: 4991) -/(.*/)?refreshsyncbannerad\? -# /refreshads- (easylist.txt: 4990) -/(.*/)?refreshads- -refreshads-*. -# /refads/* (easylist.txt: 4989) -/(.*/)?refads/.* -# /redirect_awe. (easylist.txt: 4988) -/(.*/)?redirect_awe\. -# /rectangle_advertorials_ (easylist.txt: 4987) -/(.*/)?rectangle_advertorials_ -# /rectangle_ad. (easylist.txt: 4986) -/(.*/)?rectangle_ad\. -# /rect_ad. (easylist.txt: 4985) -/(.*/)?rect_ad\. -# /recordadsall. (easylist.txt: 4984) -/(.*/)?recordadsall\. -recordadsall.*. -# /recommendations/ad. (easylist.txt: 4983) -/(.*/)?recommendations/ad\. -# /reclame/* (easylist.txt: 4982) -/(.*/)?reclame/.* -# /reclama/* (easylist.txt: 4981) -/(.*/)?reclama/.* -# /realmedia_mjx_ (easylist.txt: 4980) -/(.*/)?realmedia_mjx_ -# /realmedia_mjx. (easylist.txt: 4979) -/(.*/)?realmedia_mjx\. -# /realmedia_banner_ (easylist.txt: 4978) -/(.*/)?realmedia_banner_ -# /realmedia_banner. (easylist.txt: 4977) -/(.*/)?realmedia_banner\. -# /realmedia/ads/* (easylist.txt: 4976) -/(.*/)?realmedia/ads/.* -# /rcom-video-ads. (easylist.txt: 4975) -/(.*/)?rcom-video-ads\. -rcom-video-ads.*. -# /rcom-ads. (easylist.txt: 4974) -/(.*/)?rcom-ads\. -rcom-ads.*. -# /rcom-ads- (easylist.txt: 4973) -/(.*/)?rcom-ads- -rcom-ads-*. -# /rcolads2. (easylist.txt: 4972) -/(.*/)?rcolads2\. -rcolads2.*. -# /rcolads1. (easylist.txt: 4971) -/(.*/)?rcolads1\. -rcolads1.*. -# /rawtubelivead. (easylist.txt: 4970) -/(.*/)?rawtubelivead\. -rawtubelivead.*. -# /randomads. (easylist.txt: 4969) -/(.*/)?randomads\. -randomads.*. -# /randomad_ (easylist.txt: 4968) -/(.*/)?randomad_ -# /randomad728x90nsfw. (easylist.txt: 4967) -/(.*/)?randomad728x90nsfw\. -randomad728x90nsfw.*. -# /randomad300x250nsfw. (easylist.txt: 4966) -/(.*/)?randomad300x250nsfw\. -randomad300x250nsfw.*. -# /randomad2. (easylist.txt: 4965) -/(.*/)?randomad2\. -randomad2.*. -# /randomad160x600nsfw. (easylist.txt: 4964) -/(.*/)?randomad160x600nsfw\. -randomad160x600nsfw.*. -# /randomad120x600nsfw. (easylist.txt: 4963) -/(.*/)?randomad120x600nsfw\. -randomad120x600nsfw.*. -# /randomad. (easylist.txt: 4962) -/(.*/)?randomad\. -randomad.*. -# /ram/ads/* (easylist.txt: 4961) -/(.*/)?ram/ads/.* -# /RainbowTGXServer/* (easylist.txt: 4960) -/(.*/)?RainbowTGXServer/.* -# /railsad_ (easylist.txt: 4959) -/(.*/)?railsad_ -# /railsad. (easylist.txt: 4958) -/(.*/)?railsad\. -railsad.*. -# /railads. (easylist.txt: 4957) -/(.*/)?railads\. -railads.*. -# /railad. (easylist.txt: 4956) -/(.*/)?railad\. -railad.*. -# /rail_ad_ (easylist.txt: 4955) -/(.*/)?rail_ad_ -# /radopenx? (easylist.txt: 4954) -/(.*/)?radopenx\? -# /radioAdEmbedGPT. (easylist.txt: 4953) -/(.*/)?radioAdEmbedGPT\. -radioAdEmbedGPT.*. -# /radioadembedgenre. (easylist.txt: 4952) -/(.*/)?radioadembedgenre\. -radioadembedgenre.*. -# /radioAdEmbed. (easylist.txt: 4951) -/(.*/)?radioAdEmbed\. -radioAdEmbed.*. -# /r_ads/* (easylist.txt: 4950) -/(.*/)?r_ads/.* -# /quigo_ad (easylist.txt: 4949) -/(.*/)?quigo_ad -# /quick_ads/* (easylist.txt: 4948) -/(.*/)?quick_ads/.* -# /questions/ads/* (easylist.txt: 4947) -/(.*/)?questions/ads/.* -# /quadadvert. (easylist.txt: 4946) -/(.*/)?quadadvert\. -quadadvert.*. -# /qpon_big_ad (easylist.txt: 4945) -/(.*/)?qpon_big_ad -# /qd_ads/* (easylist.txt: 4944) -/(.*/)?qd_ads/.* -# /qandaads/* (easylist.txt: 4943) -/(.*/)?qandaads/.* -# /pushdownAd. (easylist.txt: 4942) -/(.*/)?pushdownAd\. -pushdownAd.*. -# /punder.php (easylist.txt: 4941) -/(.*/)?punder\.php -punder.php*. -# /punder.js (easylist.txt: 4940) -/(.*/)?punder\.js -punder.js*. -# /pullads. (easylist.txt: 4939) -/(.*/)?pullads\. -pullads.*. -# /puff_ad? (easylist.txt: 4938) -/(.*/)?puff_ad\? -# /pubs_aff.asp? (easylist.txt: 4937) -/(.*/)?pubs_aff\.asp\? -# /pubmatic_ (easylist.txt: 4936) -/(.*/)?pubmatic_ -# /publicidade/* (easylist.txt: 4935) -/(.*/)?publicidade/.* -# /publicidade. (easylist.txt: 4934) -/(.*/)?publicidade\. -publicidade.*. -# /publicidad_$~stylesheet (easylist.txt: 4933) -/(.*/)?publicidad_ -# /publicidad/* (easylist.txt: 4932) -/(.*/)?publicidad/.* -# /publicidad.$~object-subrequest,~stylesheet (easylist.txt: 4931) -/(.*/)?publicidad\. -publicidad.*. -# /public/adv/* (easylist.txt: 4930) -/(.*/)?public/adv/.* -# /public/ads/* (easylist.txt: 4929) -/(.*/)?public/ads/.* -# /public/ad? (easylist.txt: 4928) -/(.*/)?public/ad\? -# /public/ad/* (easylist.txt: 4927) -/(.*/)?public/ad/.* -# /pubads_ (easylist.txt: 4926) -/(.*/)?pubads_ -# /pubads. (easylist.txt: 4925) -/(.*/)?pubads\. -pubads.*. -# /pubad. (easylist.txt: 4924) -/(.*/)?pubad\. -pubad.*. -# /pub_images/*$third-party (easylist.txt: 4923) -/(.*/)?pub_images/.* -# /pub/ads/* (easylist.txt: 4922) -/(.*/)?pub/ads/.* -# /pub/ad/* (easylist.txt: 4921) -/(.*/)?pub/ad/.* -# /proxyadcall? (easylist.txt: 4920) -/(.*/)?proxyadcall\? -# /proxxorad. (easylist.txt: 4919) -/(.*/)?proxxorad\. -proxxorad.*. -# /provider_ads/* (easylist.txt: 4918) -/(.*/)?provider_ads/.* -# /provideadcode. (easylist.txt: 4917) -/(.*/)?provideadcode\. -provideadcode.*. -# /protection/ad/* (easylist.txt: 4916) -/(.*/)?protection/ad/.* -# /promotools1. (easylist.txt: 4915) -/(.*/)?promotools1\. -promotools1.*. -# /promotools/* (easylist.txt: 4914) -/(.*/)?promotools/.* -# /promotools. (easylist.txt: 4913) -/(.*/)?promotools\. -promotools.*. -# /promotions/ads? (easylist.txt: 4912) -/(.*/)?promotions/ads\? -# /promotions/ads/* (easylist.txt: 4911) -/(.*/)?promotions/ads/.* -# /promotions/ads. (easylist.txt: 4910) -/(.*/)?promotions/ads\. -# /promotion/geoip/* (easylist.txt: 4909) -/(.*/)?promotion/geoip/.* -# /promoredirect?*&campaign=*&zone= (easylist.txt: 4908) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /promoloaddisplay? (easylist.txt: 4907) -/(.*/)?promoloaddisplay\? -# /promobuttonad. (easylist.txt: 4906) -/(.*/)?promobuttonad\. -promobuttonad.*. -# /promoads/* (easylist.txt: 4905) -/(.*/)?promoads/.* -# /promo300x250. (easylist.txt: 4904) -/(.*/)?promo300x250\. -promo300x250.*. -# /promo300by250. (easylist.txt: 4903) -/(.*/)?promo300by250\. -promo300by250.*. -# /promo/banners/* (easylist.txt: 4902) -/(.*/)?promo/banners/.* -# /promo/affiframe. (easylist.txt: 4901) -/(.*/)?promo/affiframe\. -# /promo/ads/* (easylist.txt: 4900) -/(.*/)?promo/ads/.* -# /promo/ad_ (easylist.txt: 4899) -/(.*/)?promo/ad_ -# /promo-ads/* (easylist.txt: 4898) -/(.*/)?promo-ads/.* -# /projectwonderful_ (easylist.txt: 4897) -/(.*/)?projectwonderful_ -# /prog-sponsor/* (easylist.txt: 4896) -/(.*/)?prog-sponsor/.* -# /production/ads/* (easylist.txt: 4895) -/(.*/)?production/ads/.* -# /product-ads/* (easylist.txt: 4894) -/(.*/)?product-ads/.* -# /product-ad/* (easylist.txt: 4893) -/(.*/)?product-ad/.* -# /processing/impressions.asp? (easylist.txt: 4892) -/(.*/)?processing/impressions\.asp\? -# /processads. (easylist.txt: 4891) -/(.*/)?processads\. -processads.*. -# /processad. (easylist.txt: 4890) -/(.*/)?processad\. -processad.*. -# /proadvertising_ (easylist.txt: 4889) -/(.*/)?proadvertising_ -# /proadvertising. (easylist.txt: 4888) -/(.*/)?proadvertising\. -proadvertising.*. -# /proads/* (easylist.txt: 4887) -/(.*/)?proads/.* -# /PRNAd300x150. (easylist.txt: 4886) -/(.*/)?PRNAd300x150\. -PRNAd300x150.*. -# /printads/* (easylist.txt: 4885) -/(.*/)?printads/.* -# /printad/* (easylist.txt: 4884) -/(.*/)?printad/.* -# /printad. (easylist.txt: 4883) -/(.*/)?printad\. -printad.*. -# /previews/ad/* (easylist.txt: 4882) -/(.*/)?previews/ad/.* -# /prerollads. (easylist.txt: 4881) -/(.*/)?prerollads\. -prerollads.*. -# /prerollad. (easylist.txt: 4880) -/(.*/)?prerollad\. -prerollad.*. -# /premiumadzone. (easylist.txt: 4879) -/(.*/)?premiumadzone\. -premiumadzone.*. -# /premiumads/* (easylist.txt: 4878) -/(.*/)?premiumads/.* -# /premium_ad. (easylist.txt: 4877) -/(.*/)?premium_ad\. -# /premierebtnad/* (easylist.txt: 4876) -/(.*/)?premierebtnad/.* -# /predictad. (easylist.txt: 4875) -/(.*/)?predictad\. -predictad.*. -# /ppd_ads_ (easylist.txt: 4874) -/(.*/)?ppd_ads_ -# /ppd_ads. (easylist.txt: 4873) -/(.*/)?ppd_ads\. -# /pounder-$~image (easylist.txt: 4872) -/(.*/)?pounder- -pounder-*. -# /posts_ad. (easylist.txt: 4871) -/(.*/)?posts_ad\. -# /postprofileverticalad. (easylist.txt: 4870) -/(.*/)?postprofileverticalad\. -postprofileverticalad.*. -# /postprofilehorizontalad. (easylist.txt: 4869) -/(.*/)?postprofilehorizontalad\. -postprofilehorizontalad.*. -# /postprocad. (easylist.txt: 4868) -/(.*/)?postprocad\. -postprocad.*. -# /postad. (easylist.txt: 4867) -/(.*/)?postad\. -postad.*. -# /post_ads_ (easylist.txt: 4866) -/(.*/)?post_ads_ -# /post/ads/* (easylist.txt: 4865) -/(.*/)?post/ads/.* -# /post-ad- (easylist.txt: 4864) -/(.*/)?post-ad- -post-ad-*. -# /popupunder. (easylist.txt: 4863) -/(.*/)?popupunder\. -popupunder.*. -# /popupdfp. (easylist.txt: 4862) -/(.*/)?popupdfp\. -popupdfp.*. -# /popupads. (easylist.txt: 4861) -/(.*/)?popupads\. -popupads.*. -# /popup_code. (easylist.txt: 4860) -/(.*/)?popup_code\. -# /popup_ad. (easylist.txt: 4859) -/(.*/)?popup_ad\. -# /popup3.js (easylist.txt: 4858) -/(.*/)?popup3\.js -popup3.js*. -# /popup2.js (easylist.txt: 4857) -/(.*/)?popup2\.js -popup2.js*. -# /popup-domination/*$~stylesheet (easylist.txt: 4856) -/(.*/)?popup-domination/.* -# /popundr_ (easylist.txt: 4855) -/(.*/)?popundr_ -# /popundr. (easylist.txt: 4854) -/(.*/)?popundr\. -popundr.*. -# /popunders/* (easylist.txt: 4853) -/(.*/)?popunders/.* -# /popunders. (easylist.txt: 4852) -/(.*/)?popunders\. -popunders.*. -# /popunderking. (easylist.txt: 4851) -/(.*/)?popunderking\. -popunderking.*. -# /popundercode. (easylist.txt: 4850) -/(.*/)?popundercode\. -popundercode.*. -# /popunderblogs. (easylist.txt: 4849) -/(.*/)?popunderblogs\. -popunderblogs.*. -# /popunder_ (easylist.txt: 4848) -/(.*/)?popunder_ -# /popunder? (easylist.txt: 4847) -/(.*/)?popunder\? -# /popunder7. (easylist.txt: 4846) -/(.*/)?popunder7\. -popunder7.*. -# /popunder5. (easylist.txt: 4845) -/(.*/)?popunder5\. -popunder5.*. -# /popunder4. (easylist.txt: 4844) -/(.*/)?popunder4\. -popunder4.*. -# /popunder2. (easylist.txt: 4843) -/(.*/)?popunder2\. -popunder2.*. -# /popunder1_ (easylist.txt: 4842) -/(.*/)?popunder1_ -# /popunder1. (easylist.txt: 4841) -/(.*/)?popunder1\. -popunder1.*. -# /popunder/* (easylist.txt: 4840) -/(.*/)?popunder/.* -# /popunder. (easylist.txt: 4839) -/(.*/)?popunder\. -popunder.*. -# /popunder- (easylist.txt: 4838) -/(.*/)?popunder- -popunder-*. -# /popu.js (easylist.txt: 4837) -/(.*/)?popu\.js -popu.js*. -# /popshow.$~stylesheet (easylist.txt: 4836) -/(.*/)?popshow\. -popshow.*. -# /poprotator. (easylist.txt: 4835) -/(.*/)?poprotator\. -poprotator.*. -# /popounder4. (easylist.txt: 4834) -/(.*/)?popounder4\. -popounder4.*. -# /poplivejasmine. (easylist.txt: 4833) -/(.*/)?poplivejasmine\. -poplivejasmine.*. -# /popads_ (easylist.txt: 4832) -/(.*/)?popads_ -# /popads/* (easylist.txt: 4831) -/(.*/)?popads/.* -# /popads. (easylist.txt: 4830) -/(.*/)?popads\. -popads.*. -# /popad. (easylist.txt: 4829) -/(.*/)?popad\. -popad.*. -# /popad- (easylist.txt: 4828) -/(.*/)?popad- -popad-*. -# /pop_under/* (easylist.txt: 4827) -/(.*/)?pop_under/.* -# /pop_under. (easylist.txt: 4826) -/(.*/)?pop_under\. -# /pop_camgirlcity. (easylist.txt: 4825) -/(.*/)?pop_camgirlcity\. -# /pop_adfy. (easylist.txt: 4824) -/(.*/)?pop_adfy\. -# /pop_ad. (easylist.txt: 4823) -/(.*/)?pop_ad\. -# /pop?tid= (easylist.txt: 4822) -/(.*/)?pop\?tid= -# /pop2.js| (easylist.txt: 4821) -/(.*/)?pop2\.js$ -pop2.js -# /pop.js| (easylist.txt: 4820) -/(.*/)?pop\.js$ -pop.js -# /pop-under. (easylist.txt: 4819) -/(.*/)?pop-under\. -pop-under.*. -# /pool/ad/* (easylist.txt: 4818) -/(.*/)?pool/ad/.* -# /pool.ads. (easylist.txt: 4817) -/(.*/)?pool\.ads\. -pool.ads.*. -# /polopoly_fs/ad- (easylist.txt: 4816) -/(.*/)?polopoly_fs/ad- -# /poll-ad- (easylist.txt: 4815) -/(.*/)?poll-ad- -poll-ad-*. -# /poker-ad. (easylist.txt: 4814) -/(.*/)?poker-ad\. -poker-ad.*. -# /plus/ad_ (easylist.txt: 4813) -/(.*/)?plus/ad_ -# /plugins_ads_ (easylist.txt: 4812) -/(.*/)?plugins_ads_ -# /plugins/wp_actionpop/* (easylist.txt: 4811) -/(.*/)?plugins/wp_actionpop/.* -# /plugins/wp125/*$~stylesheet (easylist.txt: 4810) -/(.*/)?plugins/wp125/.* -# /plugins/wp-moreads/*$~stylesheet (easylist.txt: 4809) -/(.*/)?plugins/wp-moreads/.* -# /plugins/page-cornr- (easylist.txt: 4808) -/(.*/)?plugins/page-cornr- -# /plugins/ads/* (easylist.txt: 4807) -/(.*/)?plugins/ads/.* -# /plugins/ad. (easylist.txt: 4806) -/(.*/)?plugins/ad\. -# /plugin/ad/* (easylist.txt: 4805) -/(.*/)?plugin/ad/.* -# /pledgead. (easylist.txt: 4804) -/(.*/)?pledgead\. -pledgead.*. -# /player_ads/* (easylist.txt: 4803) -/(.*/)?player_ads/.* -# /player/ads/* (easylist.txt: 4802) -/(.*/)?player/ads/.* -# /player/ads. (easylist.txt: 4801) -/(.*/)?player/ads\. -# /player/ad/* (easylist.txt: 4800) -/(.*/)?player/ad/.* -# /play/ad/* (easylist.txt: 4799) -/(.*/)?play/ad/.* -# /placements/ad_ (easylist.txt: 4798) -/(.*/)?placements/ad_ -# /placeholder-ad- (easylist.txt: 4797) -/(.*/)?placeholder-ad- -placeholder-ad-*. -# /placead_ (easylist.txt: 4796) -/(.*/)?placead_ -# /place-ads/* (easylist.txt: 4795) -/(.*/)?place-ads/.* -# /pixelads/* (easylist.txt: 4794) -/(.*/)?pixelads/.* -# /pix/ads/* (easylist.txt: 4793) -/(.*/)?pix/ads/.* -# /pitattoad. (easylist.txt: 4792) -/(.*/)?pitattoad\. -pitattoad.*. -# /pilot_ad. (easylist.txt: 4791) -/(.*/)?pilot_ad\. -# /pictures/ads/* (easylist.txt: 4790) -/(.*/)?pictures/ads/.* -# /pictureads/* (easylist.txt: 4789) -/(.*/)?pictureads/.* -# /picture/ad/* (easylist.txt: 4788) -/(.*/)?picture/ad/.* -# /pics/ads/* (easylist.txt: 4787) -/(.*/)?pics/ads/.* -# /pickle-adsystem/* (easylist.txt: 4786) -/(.*/)?pickle-adsystem/.* -# /pic_adv/* (easylist.txt: 4785) -/(.*/)?pic_adv/.* -# /pic/ads/* (easylist.txt: 4784) -/(.*/)?pic/ads/.* -# /phpbanner/banner_ (easylist.txt: 4783) -/(.*/)?phpbanner/banner_ -# /phpadsnew/* (easylist.txt: 4782) -/(.*/)?phpadsnew/.* -# /phpadserver/* (easylist.txt: 4781) -/(.*/)?phpadserver/.* -# /phpads2/* (easylist.txt: 4780) -/(.*/)?phpads2/.* -# /phpads/* (easylist.txt: 4779) -/(.*/)?phpads/.* -# /phpads. (easylist.txt: 4778) -/(.*/)?phpads\. -phpads.*. -# /php/ads/* (easylist.txt: 4777) -/(.*/)?php/ads/.* -# /php/ad/* (easylist.txt: 4776) -/(.*/)?php/ad/.* -# /photogallaryads. (easylist.txt: 4775) -/(.*/)?photogallaryads\. -photogallaryads.*. -# /photoflipper/ads/* (easylist.txt: 4774) -/(.*/)?photoflipper/ads/.* -# /photoads/* (easylist.txt: 4773) -/(.*/)?photoads/.* -# /photoad. (easylist.txt: 4772) -/(.*/)?photoad\. -photoad.*. -# /photo728ad. (easylist.txt: 4771) -/(.*/)?photo728ad\. -photo728ad.*. -# /pgrightsideads. (easylist.txt: 4770) -/(.*/)?pgrightsideads\. -pgrightsideads.*. -# /pgad. (easylist.txt: 4769) -/(.*/)?pgad\. -pgad.*. -# /pfpadv. (easylist.txt: 4768) -/(.*/)?pfpadv\. -pfpadv.*. -# /persadpub/* (easylist.txt: 4767) -/(.*/)?persadpub/.* -# /permanent/ads/* (easylist.txt: 4766) -/(.*/)?permanent/ads/.* -# /performancingads/* (easylist.txt: 4765) -/(.*/)?performancingads/.* -# /performance_ads/* (easylist.txt: 4764) -/(.*/)?performance_ads/.* -# /perfads. (easylist.txt: 4763) -/(.*/)?perfads\. -perfads.*. -# /pencilad. (easylist.txt: 4762) -/(.*/)?pencilad\. -pencilad.*. -# /peeltr. (easylist.txt: 4761) -/(.*/)?peeltr\. -peeltr.*. -# /peeltl. (easylist.txt: 4760) -/(.*/)?peeltl\. -peeltl.*. -# /peeljs.php (easylist.txt: 4759) -/(.*/)?peeljs\.php -peeljs.php*. -# /peelbackscript/ad_ (easylist.txt: 4758) -/(.*/)?peelbackscript/ad_ -# /peelaway_images/* (easylist.txt: 4757) -/(.*/)?peelaway_images/.* -# /peelads/* (easylist.txt: 4756) -/(.*/)?peelads/.* -# /peelad/* (easylist.txt: 4755) -/(.*/)?peelad/.* -# /peelad. (easylist.txt: 4754) -/(.*/)?peelad\. -peelad.*. -# /peel_ads/* (easylist.txt: 4753) -/(.*/)?peel_ads/.* -# /peel1.js (easylist.txt: 4752) -/(.*/)?peel1\.js -peel1.js*. -# /peel/?webscr= (easylist.txt: 4751) -/(.*/)?peel/\?webscr= -# /peel.php? (easylist.txt: 4750) -/(.*/)?peel\.php\? -# /peel.js (easylist.txt: 4749) -/(.*/)?peel\.js -peel.js*. -# /pcad.js? (easylist.txt: 4748) -/(.*/)?pcad\.js\? -# /pc/ads. (easylist.txt: 4747) -/(.*/)?pc/ads\. -# /pb-ads/* (easylist.txt: 4746) -/(.*/)?pb-ads/.* -# /payperpost. (easylist.txt: 4745) -/(.*/)?payperpost\. -payperpost.*. -# /pauseadextension. (easylist.txt: 4744) -/(.*/)?pauseadextension\. -pauseadextension.*. -# /parts/ad/* (easylist.txt: 4743) -/(.*/)?parts/ad/.* -# /partnersadbutler/* (easylist.txt: 4742) -/(.*/)?partnersadbutler/.* -# /partners/get-banner. (easylist.txt: 4741) -/(.*/)?partners/get-banner\. -# /partners/ads/* (easylist.txt: 4740) -/(.*/)?partners/ads/.* -# /partners/ad- (easylist.txt: 4739) -/(.*/)?partners/ad- -# /partnerbanner/* (easylist.txt: 4738) -/(.*/)?partnerbanner/.* -# /partnerbanner. (easylist.txt: 4737) -/(.*/)?partnerbanner\. -partnerbanner.*. -# /partneradwidget. (easylist.txt: 4736) -/(.*/)?partneradwidget\. -partneradwidget.*. -# /partnerads_ (easylist.txt: 4735) -/(.*/)?partnerads_ -# /partnerads/* (easylist.txt: 4734) -/(.*/)?partnerads/.* -# /partnerad. (easylist.txt: 4733) -/(.*/)?partnerad\. -partnerad.*. -# /partner_ads_ (easylist.txt: 4732) -/(.*/)?partner_ads_ -# /partner_ads/* (easylist.txt: 4731) -/(.*/)?partner_ads/.* -# /park_html_functions_general.js (easylist.txt: 4730) -/(.*/)?park_html_functions_general\.js -# /park_html_functions.js (easylist.txt: 4729) -/(.*/)?park_html_functions\.js -# /park_html_functions.*.js (easylist.txt: 4728) -/(.*/)?park_html_functions\..*\.js -# /panelad. (easylist.txt: 4727) -/(.*/)?panelad\. -panelad.*. -# /paidlisting/* (easylist.txt: 4726) -/(.*/)?paidlisting/.* -# /paidads/* (easylist.txt: 4725) -/(.*/)?paidads/.* -# /pages/ads (easylist.txt: 4724) -/(.*/)?pages/ads -# /pagepeelads. (easylist.txt: 4723) -/(.*/)?pagepeelads\. -pagepeelads.*. -# /pagepeel_ (easylist.txt: 4722) -/(.*/)?pagepeel_ -# /pagepeel/* (easylist.txt: 4721) -/(.*/)?pagepeel/.* -# /pagepeel. (easylist.txt: 4720) -/(.*/)?pagepeel\. -pagepeel.*. -# /pagepeel- (easylist.txt: 4719) -/(.*/)?pagepeel- -pagepeel-*. -# /pageear_ (easylist.txt: 4718) -/(.*/)?pageear_ -# /pageear/* (easylist.txt: 4717) -/(.*/)?pageear/.* -# /pageear. (easylist.txt: 4716) -/(.*/)?pageear\. -pageear.*. -# /pagecurl/* (easylist.txt: 4715) -/(.*/)?pagecurl/.* -# /pagecall_dfp_async. (easylist.txt: 4714) -/(.*/)?pagecall_dfp_async\. -# /pageads/* (easylist.txt: 4713) -/(.*/)?pageads/.* -# /pageadimg/* (easylist.txt: 4712) -/(.*/)?pageadimg/.* -# /pagead? (easylist.txt: 4711) -/(.*/)?pagead\? -# /pagead46. (easylist.txt: 4710) -/(.*/)?pagead46\. -pagead46.*. -# /pagead2. (easylist.txt: 4709) -/(.*/)?pagead2\. -pagead2.*. -# /pagead/gen_ (easylist.txt: 4708) -/(.*/)?pagead/gen_ -# /pagead/ads? (easylist.txt: 4707) -/(.*/)?pagead/ads\? -# /page/ad/* (easylist.txt: 4706) -/(.*/)?page/ad/.* -# /page-peel (easylist.txt: 4705) -/(.*/)?page-peel -page-peel*. -# /page-ads. (easylist.txt: 4704) -/(.*/)?page-ads\. -page-ads.*. -# /p8network.js (easylist.txt: 4703) -/(.*/)?p8network\.js -p8network.js*. -# /p2ads/* (easylist.txt: 4702) -/(.*/)?p2ads/.* -# /p2/ads/* (easylist.txt: 4701) -/(.*/)?p2/ads/.* -# /p2-header-ad/* (easylist.txt: 4700) -/(.*/)?p2-header-ad/.* -# /p2-header-ad- (easylist.txt: 4699) -/(.*/)?p2-header-ad- -p2-header-ad-*. -# /ox_ultimate/www/* (easylist.txt: 4698) -/(.*/)?ox_ultimate/www/.* -# /ox/www/* (easylist.txt: 4697) -/(.*/)?ox/www/.* -# /ovt_show.asp? (easylist.txt: 4696) -/(.*/)?ovt_show\.asp\? -# /overture_ (easylist.txt: 4695) -/(.*/)?overture_ -# /overture/*$script,subdocument (easylist.txt: 4694) -/(.*/)?overture/.* -# /overture.$script,stylesheet (easylist.txt: 4693) -/(.*/)?overture\. -overture.*. -# /overlayads. (easylist.txt: 4692) -/(.*/)?overlayads\. -overlayads.*. -# /overlayad. (easylist.txt: 4691) -/(.*/)?overlayad\. -overlayad.*. -# /overlay_ad_ (easylist.txt: 4690) -/(.*/)?overlay_ad_ -# /overlay-ad. (easylist.txt: 4689) -/(.*/)?overlay-ad\. -overlay-ad.*. -# /outbrain-min. (easylist.txt: 4688) -/(.*/)?outbrain-min\. -outbrain-min.*. -# /other/ads/* (easylist.txt: 4687) -/(.*/)?other/ads/.* -# /origin-ad- (easylist.txt: 4686) -/(.*/)?origin-ad- -origin-ad-*. -# /orbitads. (easylist.txt: 4685) -/(.*/)?orbitads\. -orbitads.*. -# /opxads. (easylist.txt: 4684) -/(.*/)?opxads\. -opxads.*. -# /optonlineadcode. (easylist.txt: 4683) -/(.*/)?optonlineadcode\. -optonlineadcode.*. -# /openxtag. (easylist.txt: 4682) -/(.*/)?openxtag\. -openxtag.*. -# /openx_ (easylist.txt: 4681) -/(.*/)?openx_ -# /openx/* (easylist.txt: 4680) -/(.*/)?openx/.* -# /openx. (easylist.txt: 4679) -/(.*/)?openx\. -openx.*. -# /openx- (easylist.txt: 4678) -/(.*/)?openx- -openx-*. -# /openadserver/* (easylist.txt: 4677) -/(.*/)?openadserver/.* -# /openads_ (easylist.txt: 4676) -/(.*/)?openads_ -# /openads2/* (easylist.txt: 4675) -/(.*/)?openads2/.* -# /openads/* (easylist.txt: 4674) -/(.*/)?openads/.* -# /openads. (easylist.txt: 4673) -/(.*/)?openads\. -openads.*. -# /openads- (easylist.txt: 4672) -/(.*/)?openads- -openads-*. -# /openad. (easylist.txt: 4671) -/(.*/)?openad\. -openad.*. -# /ontopadvertising. (easylist.txt: 4670) -/(.*/)?ontopadvertising\. -ontopadvertising.*. -# /onplayerad. (easylist.txt: 4669) -/(.*/)?onplayerad\. -onplayerad.*. -# /onlineads/* (easylist.txt: 4668) -/(.*/)?onlineads/.* -# /online_ads/* (easylist.txt: 4667) -/(.*/)?online_ads/.* -# /online/ads/* (easylist.txt: 4666) -/(.*/)?online/ads/.* -# /onesheet-ad- (easylist.txt: 4665) -/(.*/)?onesheet-ad- -onesheet-ad-*. -# /onecam4ads. (easylist.txt: 4664) -/(.*/)?onecam4ads\. -onecam4ads.*. -# /onead. (easylist.txt: 4663) -/(.*/)?onead\. -onead.*. -# /ome.ads. (easylist.txt: 4662) -/(.*/)?ome\.ads\. -ome.ads.*. -# /omb-ad- (easylist.txt: 4661) -/(.*/)?omb-ad- -omb-ad-*. -# /old/ads- (easylist.txt: 4660) -/(.*/)?old/ads- -# /oiopub-direct/*$~stylesheet (easylist.txt: 4659) -/(.*/)?oiopub-direct/.* -# /oiopub-ads/* (easylist.txt: 4658) -/(.*/)?oiopub-ads/.* -# /oasx/* (easylist.txt: 4657) -/(.*/)?oasx/.* -# /oasisi. (easylist.txt: 4656) -/(.*/)?oasisi\. -oasisi.*. -# /oasisi- (easylist.txt: 4655) -/(.*/)?oasisi- -oasisi-*. -# /oasdefault/* (easylist.txt: 4654) -/(.*/)?oasdefault/.* -# /oascontroller. (easylist.txt: 4653) -/(.*/)?oascontroller\. -oascontroller.*. -# /oasconfig/* (easylist.txt: 4652) -/(.*/)?oasconfig/.* -# /oascentral/* (easylist.txt: 4651) -/(.*/)?oascentral/.* -# /oascentral.$~object-subrequest (easylist.txt: 4650) -/(.*/)?oascentral\. -oascentral.*. -# /oascache/* (easylist.txt: 4649) -/(.*/)?oascache/.* -# /oasbanner_ (easylist.txt: 4648) -/(.*/)?oasbanner_ -# /oasadfunctionlive. (easylist.txt: 4647) -/(.*/)?oasadfunctionlive\. -oasadfunctionlive.*. -# /oasadfunction. (easylist.txt: 4646) -/(.*/)?oasadfunction\. -oasadfunction.*. -# /oasadframe. (easylist.txt: 4645) -/(.*/)?oasadframe\. -oasadframe.*. -# /oasadconnector. (easylist.txt: 4644) -/(.*/)?oasadconnector\. -oasadconnector.*. -# /oas_mjx3. (easylist.txt: 4643) -/(.*/)?oas_mjx3\. -# /oas_mjx2. (easylist.txt: 4642) -/(.*/)?oas_mjx2\. -# /oas_mjx1. (easylist.txt: 4641) -/(.*/)?oas_mjx1\. -# /oas_mjx. (easylist.txt: 4640) -/(.*/)?oas_mjx\. -# /oas_home_ (easylist.txt: 4639) -/(.*/)?oas_home_ -# /oas_handler. (easylist.txt: 4638) -/(.*/)?oas_handler\. -# /oas_ads. (easylist.txt: 4637) -/(.*/)?oas_ads\. -# /oas_ad_ (easylist.txt: 4636) -/(.*/)?oas_ad_ -# /oas_ad/* (easylist.txt: 4635) -/(.*/)?oas_ad/.* -# /oas_ad. (easylist.txt: 4634) -/(.*/)?oas_ad\. -# /OAS/show? (easylist.txt: 4633) -/(.*/)?OAS/show\? -# /oas/oas- (easylist.txt: 4632) -/(.*/)?oas/oas- -# /oas/iframe. (easylist.txt: 4631) -/(.*/)?oas/iframe\. -# /oas/banners/* (easylist.txt: 4630) -/(.*/)?oas/banners/.* -# /oas/ad/* (easylist.txt: 4629) -/(.*/)?oas/ad/.* -# /oas.js (easylist.txt: 4628) -/(.*/)?oas\.js -oas.js*. -# /oas.aspx (easylist.txt: 4627) -/(.*/)?oas\.aspx -oas.aspx*. -# /oas-config. (easylist.txt: 4626) -/(.*/)?oas-config\. -oas-config.*. -# /o2contentad. (easylist.txt: 4625) -/(.*/)?o2contentad\. -o2contentad.*. -# /o2ad. (easylist.txt: 4624) -/(.*/)?o2ad\. -o2ad.*. -# /nymag_ads_ (easylist.txt: 4623) -/(.*/)?nymag_ads_ -# /nymag_ads. (easylist.txt: 4622) -/(.*/)?nymag_ads\. -# /nsfw/sponsors/* (easylist.txt: 4621) -/(.*/)?nsfw/sponsors/.* -# /noticead. (easylist.txt: 4620) -/(.*/)?noticead\. -noticead.*. -# /noodleAdFramed. (easylist.txt: 4619) -/(.*/)?noodleAdFramed\. -noodleAdFramed.*. -# /nonrotatingads/* (easylist.txt: 4618) -/(.*/)?nonrotatingads/.* -# /no_ads. (easylist.txt: 4617) -/(.*/)?no_ads\. -# /nflads. (easylist.txt: 4616) -/(.*/)?nflads\. -nflads.*. -# /nextad/* (easylist.txt: 4615) -/(.*/)?nextad/.* -# /newtopmsgad. (easylist.txt: 4614) -/(.*/)?newtopmsgad\. -newtopmsgad.*. -# /newsmaxadcontrol. (easylist.txt: 4613) -/(.*/)?newsmaxadcontrol\. -newsmaxadcontrol.*. -# /newsletters/ads/* (easylist.txt: 4612) -/(.*/)?newsletters/ads/.* -# /newsletterads/* (easylist.txt: 4611) -/(.*/)?newsletterads/.* -# /newsite/ads/* (easylist.txt: 4610) -/(.*/)?newsite/ads/.* -# /news_ad. (easylist.txt: 4609) -/(.*/)?news_ad\. -# /news/ads/* (easylist.txt: 4608) -/(.*/)?news/ads/.* -# /newrightcolad. (easylist.txt: 4607) -/(.*/)?newrightcolad\. -newrightcolad.*. -# /newimplugs. (easylist.txt: 4606) -/(.*/)?newimplugs\. -newimplugs.*. -# /newimages/ads/* (easylist.txt: 4605) -/(.*/)?newimages/ads/.* -# /newdesign/ad/* (easylist.txt: 4604) -/(.*/)?newdesign/ad/.* -# /newaff/float (easylist.txt: 4603) -/(.*/)?newaff/float -# /newadvert/* (easylist.txt: 4602) -/(.*/)?newadvert/.* -# /newadv/* (easylist.txt: 4601) -/(.*/)?newadv/.* -# /newads/* (easylist.txt: 4600) -/(.*/)?newads/.* -# /newads. (easylist.txt: 4599) -/(.*/)?newads\. -newads.*. -# /newad? (easylist.txt: 4598) -/(.*/)?newad\? -# /newad2? (easylist.txt: 4597) -/(.*/)?newad2\? -# /newad. (easylist.txt: 4596) -/(.*/)?newad\. -newad.*. -# /new_oas. (easylist.txt: 4595) -/(.*/)?new_oas\. -# /new_ads/* (easylist.txt: 4594) -/(.*/)?new_ads/.* -# /new/ads/* (easylist.txt: 4593) -/(.*/)?new/ads/.* -# /new/ad/* (easylist.txt: 4592) -/(.*/)?new/ad/.* -# /new-ads/* (easylist.txt: 4591) -/(.*/)?new-ads/.* -# /neudesicad. (easylist.txt: 4590) -/(.*/)?neudesicad\. -neudesicad.*. -# /network_ad. (easylist.txt: 4589) -/(.*/)?network_ad\. -# /netspiderads3. (easylist.txt: 4588) -/(.*/)?netspiderads3\. -netspiderads3.*. -# /netspiderads2. (easylist.txt: 4587) -/(.*/)?netspiderads2\. -netspiderads2.*. -# /netshelter/* (easylist.txt: 4586) -/(.*/)?netshelter/.* -# /netseerads. (easylist.txt: 4585) -/(.*/)?netseerads\. -netseerads.*. -# /netreachtextads/* (easylist.txt: 4584) -/(.*/)?netreachtextads/.* -# /netads. (easylist.txt: 4583) -/(.*/)?netads\. -netads.*. -# /neoads. (easylist.txt: 4582) -/(.*/)?neoads\. -neoads.*. -# /neo/ads/* (easylist.txt: 4581) -/(.*/)?neo/ads/.* -# /nd_affiliate. (easylist.txt: 4580) -/(.*/)?nd_affiliate\. -# /nbcuadops- (easylist.txt: 4579) -/(.*/)?nbcuadops- -nbcuadops-*. -# /navads/* (easylist.txt: 4578) -/(.*/)?navads/.* -# /navad/* (easylist.txt: 4577) -/(.*/)?navad/.* -# /nativeads/* (easylist.txt: 4576) -/(.*/)?nativeads/.* -# /nativeads- (easylist.txt: 4575) -/(.*/)?nativeads- -nativeads-*. -# /namediaad. (easylist.txt: 4574) -/(.*/)?namediaad\. -namediaad.*. -# /n_ads/* (easylist.txt: 4573) -/(.*/)?n_ads/.* -# /n4403ad. (easylist.txt: 4572) -/(.*/)?n4403ad\. -n4403ad.*. -# /n/adv_ (easylist.txt: 4571) -/(.*/)?n/adv_ -# /mysimpleads/* (easylist.txt: 4570) -/(.*/)?mysimpleads/.* -# /mylayer-ad/* (easylist.txt: 4569) -/(.*/)?mylayer-ad/.* -# /myfreepaysitebanner. (easylist.txt: 4568) -/(.*/)?myfreepaysitebanner\. -myfreepaysitebanner.*. -# /myads/* (easylist.txt: 4566) -/(.*/)?myads/.* -# /my-ad-integration. (easylist.txt: 4565) -/(.*/)?my-ad-integration\. -my-ad-integration.*. -# /my-ad-injector/* (easylist.txt: 4564) -/(.*/)?my-ad-injector/.* -# /multiad/* (easylist.txt: 4563) -/(.*/)?multiad/.* -# /mtvi_ads_ (easylist.txt: 4562) -/(.*/)?mtvi_ads_ -# /MTA-Ad- (easylist.txt: 4561) -/(.*/)?MTA-Ad- -MTA-Ad-*. -# /mstextad? (easylist.txt: 4560) -/(.*/)?mstextad\? -# /msnpopup4. (easylist.txt: 4559) -/(.*/)?msnpopup4\. -msnpopup4.*. -# /msnpopup. (easylist.txt: 4558) -/(.*/)?msnpopup\. -msnpopup.*. -# /msnpopsingle2. (easylist.txt: 4557) -/(.*/)?msnpopsingle2\. -msnpopsingle2.*. -# /msnpop. (easylist.txt: 4556) -/(.*/)?msnpop\. -msnpop.*. -# /msnads1. (easylist.txt: 4555) -/(.*/)?msnads1\. -msnads1.*. -# /msnads/* (easylist.txt: 4554) -/(.*/)?msnads/.* -# /msnadimg. (easylist.txt: 4553) -/(.*/)?msnadimg\. -msnadimg.*. -# /msn-exo- (easylist.txt: 4552) -/(.*/)?msn-exo- -msn-exo-*. -# /msn-1.js (easylist.txt: 4551) -/(.*/)?msn-1\.js -msn-1.js*. -# /msgads. (easylist.txt: 4550) -/(.*/)?msgads\. -msgads.*. -# /mrskinleftside. (easylist.txt: 4549) -/(.*/)?mrskinleftside\. -mrskinleftside.*. -# /mpumessage. (easylist.txt: 4548) -/(.*/)?mpumessage\. -mpumessage.*. -# /mpuguardian. (easylist.txt: 4547) -/(.*/)?mpuguardian\. -mpuguardian.*. -# /mpuad. (easylist.txt: 4546) -/(.*/)?mpuad\. -mpuad.*. -# /mpu-dm.htm (easylist.txt: 4545) -/(.*/)?mpu-dm\.htm -mpu-dm.htm*. -# /mpads/* (easylist.txt: 4544) -/(.*/)?mpads/.* -# /moneyball/ads/* (easylist.txt: 4543) -/(.*/)?moneyball/ads/.* -# /momsads. (easylist.txt: 4542) -/(.*/)?momsads\. -momsads.*. -# /modules_ads. (easylist.txt: 4541) -/(.*/)?modules_ads\. -# /modules/doubleclick/* (easylist.txt: 4540) -/(.*/)?modules/doubleclick/.* -# /modules/adv/* (easylist.txt: 4539) -/(.*/)?modules/adv/.* -# /modules/ads/* (easylist.txt: 4538) -/(.*/)?modules/ads/.* -# /modules/ad_ (easylist.txt: 4537) -/(.*/)?modules/ad_ -# /modules/ad/* (easylist.txt: 4536) -/(.*/)?modules/ad/.* -# /module/ads/* (easylist.txt: 4535) -/(.*/)?module/ads/.* -# /module-ads/* (easylist.txt: 4534) -/(.*/)?module-ads/.* -# /modalad. (easylist.txt: 4533) -/(.*/)?modalad\. -modalad.*. -# /mod_pagepeel_banner/* (easylist.txt: 4532) -/(.*/)?mod_pagepeel_banner/.* -# /mod_ad/* (easylist.txt: 4531) -/(.*/)?mod_ad/.* -# /mobilephonesad/* (easylist.txt: 4530) -/(.*/)?mobilephonesad/.* -# /mobileads/* (easylist.txt: 4529) -/(.*/)?mobileads/.* -# /mobileads. (easylist.txt: 4528) -/(.*/)?mobileads\. -mobileads.*. -# /mobile_ad/* (easylist.txt: 4527) -/(.*/)?mobile_ad/.* -# /mobile_ad. (easylist.txt: 4526) -/(.*/)?mobile_ad\. -# /mobile-ad. (easylist.txt: 4525) -/(.*/)?mobile-ad\. -mobile-ad.*. -# /mnads1. (easylist.txt: 4524) -/(.*/)?mnads1\. -mnads1.*. -# /mmt_ad. (easylist.txt: 4523) -/(.*/)?mmt_ad\. -# /mmsAds. (easylist.txt: 4522) -/(.*/)?mmsAds\. -mmsAds.*. -# /ml9pagepeel. (easylist.txt: 4521) -/(.*/)?ml9pagepeel\. -ml9pagepeel.*. -# /mktad. (easylist.txt: 4520) -/(.*/)?mktad\. -mktad.*. -# /mkadsrv. (easylist.txt: 4519) -/(.*/)?mkadsrv\. -mkadsrv.*. -# /mjx-oas. (easylist.txt: 4518) -/(.*/)?mjx-oas\. -mjx-oas.*. -# /MixBerryAdsProduction/* (easylist.txt: 4517) -/(.*/)?MixBerryAdsProduction/.* -# /miva_ads. (easylist.txt: 4516) -/(.*/)?miva_ads\. -# /misc/ads/* (easylist.txt: 4515) -/(.*/)?misc/ads/.* -# /misc/ads. (easylist.txt: 4514) -/(.*/)?misc/ads\. -# /misc/ad- (easylist.txt: 4513) -/(.*/)?misc/ad- -# /mint/ads/* (easylist.txt: 4512) -/(.*/)?mint/ads/.* -# /minpagead/* (easylist.txt: 4511) -/(.*/)?minpagead/.* -# /minify/ads- (easylist.txt: 4510) -/(.*/)?minify/ads- -# /miniadvert. (easylist.txt: 4509) -/(.*/)?miniadvert\. -miniadvert.*. -# /miniads? (easylist.txt: 4508) -/(.*/)?miniads\? -# /miniadbar/* (easylist.txt: 4507) -/(.*/)?miniadbar/.* -# /mini_ads. (easylist.txt: 4506) -/(.*/)?mini_ads\. -# /mini-ads/* (easylist.txt: 4505) -/(.*/)?mini-ads/.* -# /min/ads/* (easylist.txt: 4504) -/(.*/)?min/ads/.* -# /middleads. (easylist.txt: 4503) -/(.*/)?middleads\. -middleads.*. -# /middle_adv_ (easylist.txt: 4502) -/(.*/)?middle_adv_ -# /microsofttag/* (easylist.txt: 4501) -/(.*/)?microsofttag/.* -# /microads/* (easylist.txt: 4500) -/(.*/)?microads/.* -# /microad. (easylist.txt: 4499) -/(.*/)?microad\. -microad.*. -# /mgid.html (easylist.txt: 4498) -/(.*/)?mgid\.html -mgid.html*. -# /mgid-header. (easylist.txt: 4497) -/(.*/)?mgid-header\. -mgid-header.*. -# /mgid-ad- (easylist.txt: 4496) -/(.*/)?mgid-ad- -mgid-ad-*. -# /metsbanner. (easylist.txt: 4495) -/(.*/)?metsbanner\. -metsbanner.*. -# /metaadserver/* (easylist.txt: 4494) -/(.*/)?metaadserver/.* -# /metaad. (easylist.txt: 4493) -/(.*/)?metaad\. -metaad.*. -# /meme_ad. (easylist.txt: 4492) -/(.*/)?meme_ad\. -# /megaad. (easylist.txt: 4491) -/(.*/)?megaad\. -megaad.*. -# /media_ads/* (easylist.txt: 4490) -/(.*/)?media_ads/.* -# /media/adv/* (easylist.txt: 4489) -/(.*/)?media/adv/.* -# /media/ads/* (easylist.txt: 4488) -/(.*/)?media/ads/.* -# /media/ad/* (easylist.txt: 4487) -/(.*/)?media/ad/.* -# /mDialogAdModule. (easylist.txt: 4486) -/(.*/)?mDialogAdModule\. -mDialogAdModule.*. -# /mda-ads/* (easylist.txt: 4485) -/(.*/)?mda-ads/.* -# /mcad.php (easylist.txt: 4484) -/(.*/)?mcad\.php -mcad.php*. -# /mbn_ad. (easylist.txt: 4483) -/(.*/)?mbn_ad\. -# /mbads? (easylist.txt: 4482) -/(.*/)?mbads\? -# /maxi_ad. (easylist.txt: 4481) -/(.*/)?maxi_ad\. -# /maxadselect. (easylist.txt: 4480) -/(.*/)?maxadselect\. -maxadselect.*. -# /match_ads. (easylist.txt: 4479) -/(.*/)?match_ads\. -# /masterad. (easylist.txt: 4478) -/(.*/)?masterad\. -masterad.*. -# /masonad.gif (easylist.txt: 4477) -/(.*/)?masonad\.gif -masonad.gif*. -# /markpop.js (easylist.txt: 4476) -/(.*/)?markpop\.js -markpop.js*. -# /marketing/banners_ (easylist.txt: 4475) -/(.*/)?marketing/banners_ -# /marketing/banners/* (easylist.txt: 4474) -/(.*/)?marketing/banners/.* -# /marketing-banners/* (easylist.txt: 4473) -/(.*/)?marketing-banners/.* -# /marginaleadservlet? (easylist.txt: 4472) -/(.*/)?marginaleadservlet\? -# /mapquest/Ads/* (easylist.txt: 4471) -/(.*/)?mapquest/Ads/.* -# /mainpagepopupadv1. (easylist.txt: 4470) -/(.*/)?mainpagepopupadv1\. -mainpagepopupadv1.*. -# /mainad. (easylist.txt: 4469) -/(.*/)?mainad\. -mainad.*. -# /main_ad_ (easylist.txt: 4468) -/(.*/)?main_ad_ -# /main_ad/* (easylist.txt: 4467) -/(.*/)?main_ad/.* -# /main_ad. (easylist.txt: 4466) -/(.*/)?main_ad\. -# /main/ads/* (easylist.txt: 4465) -/(.*/)?main/ads/.* -# /main/ad_ (easylist.txt: 4464) -/(.*/)?main/ad_ -# /main/ad/* (easylist.txt: 4463) -/(.*/)?main/ad/.* -# /magic-ads/* (easylist.txt: 4462) -/(.*/)?magic-ads/.* -# /magic-ad/* (easylist.txt: 4461) -/(.*/)?magic-ad/.* -# /magazine/ads. (easylist.txt: 4460) -/(.*/)?magazine/ads\. -# /mad_ad. (easylist.txt: 4459) -/(.*/)?mad_ad\. -# /mad.aspx? (easylist.txt: 4458) -/(.*/)?mad\.aspx\? -# /mac-ad? (easylist.txt: 4457) -/(.*/)?mac-ad\? -# /m0ar_ads. (easylist.txt: 4456) -/(.*/)?m0ar_ads\. -# /lrec_ad. (easylist.txt: 4455) -/(.*/)?lrec_ad\. -# /lotto_ad_ (easylist.txt: 4454) -/(.*/)?lotto_ad_ -# /logoutad. (easylist.txt: 4453) -/(.*/)?logoutad\. -logoutad.*. -# /logoads. (easylist.txt: 4452) -/(.*/)?logoads\. -logoads.*. -# /logo-ads. (easylist.txt: 4451) -/(.*/)?logo-ads\. -logo-ads.*. -# /logad? (easylist.txt: 4450) -/(.*/)?logad\? -# /log_ad_ (easylist.txt: 4449) -/(.*/)?log_ad_ -# /log_ad? (easylist.txt: 4448) -/(.*/)?log_ad\? -# /locker.php?pub=*&gateid=$script (easylist.txt: 4447) -/(.*/)?locker\.php\?pub=.*&gateid= -# /localcom-ad- (easylist.txt: 4446) -/(.*/)?localcom-ad- -localcom-ad-*. -# /localads. (easylist.txt: 4445) -/(.*/)?localads\. -localads.*. -# /LocalAdNet/* (easylist.txt: 4444) -/(.*/)?LocalAdNet/.* -# /localAdData/* (easylist.txt: 4443) -/(.*/)?localAdData/.* -# /LocalAd_ (easylist.txt: 4442) -/(.*/)?LocalAd_ -# /localAd/* (easylist.txt: 4441) -/(.*/)?localAd/.* -# /local_ads_ (easylist.txt: 4440) -/(.*/)?local_ads_ -# /loadTargetUrl? (easylist.txt: 4439) -/(.*/)?loadTargetUrl\? -# /loading_ads. (easylist.txt: 4438) -/(.*/)?loading_ads\. -# /loadadwiz. (easylist.txt: 4437) -/(.*/)?loadadwiz\. -loadadwiz.*. -# /loadadsparam. (easylist.txt: 4436) -/(.*/)?loadadsparam\. -loadadsparam.*. -# /loadadsmainparam. (easylist.txt: 4435) -/(.*/)?loadadsmainparam\. -loadadsmainparam.*. -# /loadadsmain. (easylist.txt: 4434) -/(.*/)?loadadsmain\. -loadadsmain.*. -# /loadads/* (easylist.txt: 4433) -/(.*/)?loadads/.* -# /loadads. (easylist.txt: 4432) -/(.*/)?loadads\. -loadads.*. -# /loadad.aspx? (easylist.txt: 4431) -/(.*/)?loadad\.aspx\? -# /load_ad? (easylist.txt: 4430) -/(.*/)?load_ad\? -# /load-ads| (easylist.txt: 4429) -/(.*/)?load-ads$ -# /livejasmine05. (easylist.txt: 4428) -/(.*/)?livejasmine05\. -livejasmine05.*. -# /livejasmine03. (easylist.txt: 4427) -/(.*/)?livejasmine03\. -livejasmine03.*. -# /livejasmin_ (easylist.txt: 4426) -/(.*/)?livejasmin_ -# /livejasmin2. (easylist.txt: 4425) -/(.*/)?livejasmin2\. -livejasmin2.*. -# /livejasmin/*&id= (easylist.txt: 4424) -/(.*/)?livejasmin/.*&id= -# /livejasmin. (easylist.txt: 4423) -/(.*/)?livejasmin\. -livejasmin.*. -# /liveads. (easylist.txt: 4422) -/(.*/)?liveads\. -liveads.*. -# /livead- (easylist.txt: 4421) -/(.*/)?livead- -livead-*. -# /live_ad. (easylist.txt: 4420) -/(.*/)?live_ad\. -# /links_sponsored_ (easylist.txt: 4419) -/(.*/)?links_sponsored_ -# /linkedads/* (easylist.txt: 4418) -/(.*/)?linkedads/.* -# /linkadv_ (easylist.txt: 4417) -/(.*/)?linkadv_ -# /linkadv. (easylist.txt: 4416) -/(.*/)?linkadv\. -linkadv.*. -# /linkads. (easylist.txt: 4415) -/(.*/)?linkads\. -linkads.*. -# /linkad2. (easylist.txt: 4414) -/(.*/)?linkad2\. -linkad2.*. -# /lijitads. (easylist.txt: 4413) -/(.*/)?lijitads\. -lijitads.*. -# /lijit-ad- (easylist.txt: 4412) -/(.*/)?lijit-ad- -lijit-ad-*. -# /lightboxbannerad^ (easylist.txt: 4411) -/(.*/)?lightboxbannerad[^\w%.-] -# /lightboxad^ (easylist.txt: 4410) -/(.*/)?lightboxad[^\w%.-] -# /lightad. (easylist.txt: 4409) -/(.*/)?lightad\. -lightad.*. -# /lifeshowad/* (easylist.txt: 4408) -/(.*/)?lifeshowad/.* -# /library/ads/* (easylist.txt: 4407) -/(.*/)?library/ads/.* -# /lib/ad.js (easylist.txt: 4406) -/(.*/)?lib/ad\.js -# /lg.php?adid= (easylist.txt: 4405) -/(.*/)?lg\.php\?adid= -# /leftsidebarads. (easylist.txt: 4404) -/(.*/)?leftsidebarads\. -leftsidebarads.*. -# /leftads. (easylist.txt: 4403) -/(.*/)?leftads\. -leftads.*. -# /leftad_ (easylist.txt: 4402) -/(.*/)?leftad_ -# /leftad. (easylist.txt: 4401) -/(.*/)?leftad\. -leftad.*. -# /left_ads. (easylist.txt: 4400) -/(.*/)?left_ads\. -# /left_ad_ (easylist.txt: 4399) -/(.*/)?left_ad_ -# /left-ads. (easylist.txt: 4398) -/(.*/)?left-ads\. -left-ads.*. -# /ledad. (easylist.txt: 4397) -/(.*/)?ledad\. -ledad.*. -# /leaderboardads. (easylist.txt: 4396) -/(.*/)?leaderboardads\. -leaderboardads.*. -# /leaderboardadblock. (easylist.txt: 4395) -/(.*/)?leaderboardadblock\. -leaderboardadblock.*. -# /leaderboardad. (easylist.txt: 4394) -/(.*/)?leaderboardad\. -leaderboardad.*. -# /leaderboard_adv/* (easylist.txt: 4393) -/(.*/)?leaderboard_adv/.* -# /leaderboard_ad/* (easylist.txt: 4392) -/(.*/)?leaderboard_ad/.* -# /leaderboard-advert. (easylist.txt: 4391) -/(.*/)?leaderboard-advert\. -leaderboard-advert.*. -# /leaderad. (easylist.txt: 4390) -/(.*/)?leaderad\. -leaderad.*. -# /leader_ad. (easylist.txt: 4389) -/(.*/)?leader_ad\. -# /leadads/* (easylist.txt: 4388) -/(.*/)?leadads/.* -# /lbl_ad. (easylist.txt: 4387) -/(.*/)?lbl_ad\. -# /lazyad. (easylist.txt: 4386) -/(.*/)?lazyad\. -lazyad.*. -# /layout/ads/* (easylist.txt: 4385) -/(.*/)?layout/ads/.* -# /layout/ad. (easylist.txt: 4384) -/(.*/)?layout/ad\. -# /layout.inc.php?img (easylist.txt: 4383) -/(.*/)?layout\.inc\.php\?img -# /layerads_ (easylist.txt: 4382) -/(.*/)?layerads_ -# /layerads. (easylist.txt: 4381) -/(.*/)?layerads\. -layerads.*. -# /layerads- (easylist.txt: 4380) -/(.*/)?layerads- -layerads-*. -# /LayerAd^ (easylist.txt: 4379) -/(.*/)?LayerAd[^\w%.-] -# /layerad. (easylist.txt: 4378) -/(.*/)?layerad\. -layerad.*. -# /layerad- (easylist.txt: 4377) -/(.*/)?layerad- -layerad-*. -# /layer_ad? (easylist.txt: 4376) -/(.*/)?layer_ad\? -# /layer160x600. (easylist.txt: 4375) -/(.*/)?layer160x600\. -layer160x600.*. -# /layer/ads. (easylist.txt: 4374) -/(.*/)?layer/ads\. -# /layer/ad. (easylist.txt: 4373) -/(.*/)?layer/ad\. -# /layer.php?bid= (easylist.txt: 4372) -/(.*/)?layer\.php\?bid= -# /layer-advert- (easylist.txt: 4371) -/(.*/)?layer-advert- -layer-advert-*. -# /layer-ads. (easylist.txt: 4370) -/(.*/)?layer-ads\. -layer-ads.*. -# /layer-ad. (easylist.txt: 4369) -/(.*/)?layer-ad\. -layer-ad.*. -# /layad. (easylist.txt: 4368) -/(.*/)?layad\. -layad.*. -# /large_ads/* (easylist.txt: 4367) -/(.*/)?large_ads/.* -# /landingadvertisements/* (easylist.txt: 4366) -/(.*/)?landingadvertisements/.* -# /landerbanners/* (easylist.txt: 4365) -/(.*/)?landerbanners/.* -# /kskads. (easylist.txt: 4364) -/(.*/)?kskads\. -kskads.*. -# /kredit-ad. (easylist.txt: 4363) -/(.*/)?kredit-ad\. -kredit-ad.*. -# /kogeePopupAd. (easylist.txt: 4362) -/(.*/)?kogeePopupAd\. -kogeePopupAd.*. -# /keyword_ad. (easylist.txt: 4361) -/(.*/)?keyword_ad\. -# /keyade.js (easylist.txt: 4360) -/(.*/)?keyade\.js -keyade.js*. -# /kantarmedia. (easylist.txt: 4359) -/(.*/)?kantarmedia\. -kantarmedia.*. -# /kampyle.js (easylist.txt: 4358) -/(.*/)?kampyle\.js -kampyle.js*. -# /KalahariAds. (easylist.txt: 4357) -/(.*/)?KalahariAds\. -KalahariAds.*. -# /kaksvpopup. (easylist.txt: 4356) -/(.*/)?kaksvpopup\. -kaksvpopup.*. -# /k_ads/* (easylist.txt: 4355) -/(.*/)?k_ads/.* -# /jumpstartunpaidad. (easylist.txt: 4354) -/(.*/)?jumpstartunpaidad\. -jumpstartunpaidad.*. -# /juicyads_ (easylist.txt: 4353) -/(.*/)?juicyads_ -# /jtcashbanners/* (easylist.txt: 4352) -/(.*/)?jtcashbanners/.* -# /jsVideoPopAd. (easylist.txt: 4351) -/(.*/)?jsVideoPopAd\. -jsVideoPopAd.*. -# /jstextad. (easylist.txt: 4350) -/(.*/)?jstextad\. -jstextad.*. -# /jspopunder. (easylist.txt: 4349) -/(.*/)?jspopunder\. -jspopunder.*. -# /jsplayerads- (easylist.txt: 4348) -/(.*/)?jsplayerads- -jsplayerads-*. -# /json/ad/* (easylist.txt: 4347) -/(.*/)?json/ad/.* -# /jsfiles/ads/* (easylist.txt: 4346) -/(.*/)?jsfiles/ads/.* -# /jsc/ads. (easylist.txt: 4345) -/(.*/)?jsc/ads\. -# /jsadscripts/* (easylist.txt: 4344) -/(.*/)?jsadscripts/.* -# /jsAds/* (easylist.txt: 4343) -/(.*/)?jsAds/.* -# /jsads- (easylist.txt: 4342) -/(.*/)?jsads- -jsads-*. -# /jsad/* (easylist.txt: 4341) -/(.*/)?jsad/.* -# /jsad.php (easylist.txt: 4340) -/(.*/)?jsad\.php -jsad.php*. -# /js_adv_ (easylist.txt: 4339) -/(.*/)?js_adv_ -# /js_ads_ (easylist.txt: 4338) -/(.*/)?js_ads_ -# /js_ads/* (easylist.txt: 4337) -/(.*/)?js_ads/.* -# /js_ad_utf8. (easylist.txt: 4336) -/(.*/)?js_ad_utf8\. -# /js2.ad/size= (easylist.txt: 4335) -/(.*/)?js2\.ad/size= -js2.ad/size= -# /js/youmuffpu.js (easylist.txt: 4334) -/(.*/)?js/youmuffpu\.js -# /js/ppu.$script (easylist.txt: 4333) -/(.*/)?js/ppu\. -# /js/oas. (easylist.txt: 4332) -/(.*/)?js/oas\. -# /js/oas- (easylist.txt: 4331) -/(.*/)?js/oas- -# /js/doubleclick/* (easylist.txt: 4330) -/(.*/)?js/doubleclick/.* -# /js/adv/* (easylist.txt: 4329) -/(.*/)?js/adv/.* -# /js/adv. (easylist.txt: 4328) -/(.*/)?js/adv\. -# /js/ads_ (easylist.txt: 4327) -/(.*/)?js/ads_ -# /js/ads. (easylist.txt: 4326) -/(.*/)?js/ads\. -# /js/ads- (easylist.txt: 4325) -/(.*/)?js/ads- -# /js.ng/size= (easylist.txt: 4324) -/(.*/)?js\.ng/size= -js.ng/size= -# /js.ng/site= (easylist.txt: 4323) -/(.*/)?js\.ng/site= -js.ng/site= -# /js.ng/pagepos= (easylist.txt: 4322) -/(.*/)?js\.ng/pagepos= -js.ng/pagepos= -# /js.ng/channel_ (easylist.txt: 4321) -/(.*/)?js\.ng/channel_ -js.ng/channel_ -# /js.ng/cat= (easylist.txt: 4320) -/(.*/)?js\.ng/cat= -js.ng/cat= -# /js.ad/size= (easylist.txt: 4319) -/(.*/)?js\.ad/size= -js.ad/size= -# /jqueryadvertising. (easylist.txt: 4318) -/(.*/)?jqueryadvertising\. -jqueryadvertising.*. -# /jquery_FOR_AD/* (easylist.txt: 4317) -/(.*/)?jquery_FOR_AD/.* -# /jquery/ad. (easylist.txt: 4316) -/(.*/)?jquery/ad\. -# /jquery.adx. (easylist.txt: 4315) -/(.*/)?jquery\.adx\. -jquery.adx.*. -# /jquery-ads. (easylist.txt: 4314) -/(.*/)?jquery-ads\. -jquery-ads.*. -# /jqads. (easylist.txt: 4313) -/(.*/)?jqads\. -jqads.*. -# /JPlayerAdFoxAdvertisementPlugin. (easylist.txt: 4312) -/(.*/)?JPlayerAdFoxAdvertisementPlugin\. -JPlayerAdFoxAdvertisementPlugin.*. -# /jlist-affiliates/* (easylist.txt: 4311) -/(.*/)?jlist-affiliates/.* -# /jivoxadplayer. (easylist.txt: 4310) -/(.*/)?jivoxadplayer\. -jivoxadplayer.*. -# /jitads. (easylist.txt: 4309) -/(.*/)?jitads\. -jitads.*. -# /jcorner.php?partner= (easylist.txt: 4308) -/(.*/)?jcorner\.php\?partner= -# /javascripts/ads/* (easylist.txt: 4307) -/(.*/)?javascripts/ads/.* -# /javascripts/ads. (easylist.txt: 4306) -/(.*/)?javascripts/ads\. -# /javascript/oas? (easylist.txt: 4305) -/(.*/)?javascript/oas\? -# /javascript/oas. (easylist.txt: 4304) -/(.*/)?javascript/oas\. -# /javascript/ads/* (easylist.txt: 4303) -/(.*/)?javascript/ads/.* -# /javascript/ads. (easylist.txt: 4302) -/(.*/)?javascript/ads\. -# /jamnboad. (easylist.txt: 4301) -/(.*/)?jamnboad\. -jamnboad.*. -# /j/ads.js (easylist.txt: 4300) -/(.*/)?j/ads\.js -# /iwadsense. (easylist.txt: 4299) -/(.*/)?iwadsense\. -iwadsense.*. -# /ispy/ads/* (easylist.txt: 4298) -/(.*/)?ispy/ads/.* -# /isgadvertisement/* (easylist.txt: 4297) -/(.*/)?isgadvertisement/.* -# /iserver/site= (easylist.txt: 4296) -/(.*/)?iserver/site= -# /iserver/ccid= (easylist.txt: 4295) -/(.*/)?iserver/ccid= -# /is.php?ipua_id=*&search_id= (easylist.txt: 4294) -/(.*/)?is\.php\?ipua_id=.*&search_id= -# /ireel/ad*.jpg (easylist.txt: 4293) -/(.*/)?ireel/ad.*\.jpg -# /irc_ad_ (easylist.txt: 4292) -/(.*/)?irc_ad_ -# /iqadcontroller. (easylist.txt: 4291) -/(.*/)?iqadcontroller\. -iqadcontroller.*. -# /iprom-ad/* (easylist.txt: 4290) -/(.*/)?iprom-ad/.* -# /ipadad. (easylist.txt: 4289) -/(.*/)?ipadad\. -ipadad.*. -# /ip-advertising/* (easylist.txt: 4288) -/(.*/)?ip-advertising/.* -# /inx-ad. (easylist.txt: 4287) -/(.*/)?inx-ad\. -inx-ad.*. -# /inviteads/* (easylist.txt: 4286) -/(.*/)?inviteads/.* -# /invideoad. (easylist.txt: 4285) -/(.*/)?invideoad\. -invideoad.*. -# /inventory/ad/* (easylist.txt: 4284) -/(.*/)?inventory/ad/.* -# /inv/ads/* (easylist.txt: 4283) -/(.*/)?inv/ads/.* -# /introduction_ad. (easylist.txt: 4282) -/(.*/)?introduction_ad\. -# /intextads. (easylist.txt: 4281) -/(.*/)?intextads\. -intextads.*. -# /intextadd/* (easylist.txt: 4280) -/(.*/)?intextadd/.* -# /interstitial_ad. (easylist.txt: 4279) -/(.*/)?interstitial_ad\. -# /interstitial-ad? (easylist.txt: 4278) -/(.*/)?interstitial-ad\? -# /interstitial-ad/* (easylist.txt: 4277) -/(.*/)?interstitial-ad/.* -# /interstitial-ad. (easylist.txt: 4276) -/(.*/)?interstitial-ad\. -interstitial-ad.*. -# /internetad/* (easylist.txt: 4275) -/(.*/)?internetad/.* -# /internet_ad_ (easylist.txt: 4274) -/(.*/)?internet_ad_ -# /internal-ad- (easylist.txt: 4273) -/(.*/)?internal-ad- -internal-ad-*. -# /internAds. (easylist.txt: 4272) -/(.*/)?internAds\. -internAds.*. -# /intermediate-ad- (easylist.txt: 4271) -/(.*/)?intermediate-ad- -intermediate-ad-*. -# /interface/ads/* (easylist.txt: 4270) -/(.*/)?interface/ads/.* -# /interad. (easylist.txt: 4269) -/(.*/)?interad\. -interad.*. -# /intellitext. (easylist.txt: 4268) -/(.*/)?intellitext\. -intellitext.*. -# /intelliad. (easylist.txt: 4267) -/(.*/)?intelliad\. -intelliad.*. -# /instreamad/* (easylist.txt: 4266) -/(.*/)?instreamad/.* -# /insertads. (easylist.txt: 4265) -/(.*/)?insertads\. -insertads.*. -# /insertAd. (easylist.txt: 4264) -/(.*/)?insertAd\. -insertAd.*. -# /inquirer/ads/* (easylist.txt: 4263) -/(.*/)?inquirer/ads/.* -# /innerads. (easylist.txt: 4262) -/(.*/)?innerads\. -innerads.*. -# /inner-ads/* (easylist.txt: 4261) -/(.*/)?inner-ads/.* -# /inner-ads- (easylist.txt: 4260) -/(.*/)?inner-ads- -inner-ads-*. -# /inlinetextads? (easylist.txt: 4259) -/(.*/)?inlinetextads\? -# /inlineads/* (easylist.txt: 4258) -/(.*/)?inlineads/.* -# /inline_ads. (easylist.txt: 4257) -/(.*/)?inline_ads\. -# /inline_ad_ (easylist.txt: 4256) -/(.*/)?inline_ad_ -# /inline_ad. (easylist.txt: 4255) -/(.*/)?inline_ad\. -# /INjspopunder. (easylist.txt: 4254) -/(.*/)?INjspopunder\. -INjspopunder.*. -# /injectad. (easylist.txt: 4253) -/(.*/)?injectad\. -injectad.*. -# /initlayeredwelcomead- (easylist.txt: 4252) -/(.*/)?initlayeredwelcomead- -initlayeredwelcomead-*. -# /initdefineads. (easylist.txt: 4251) -/(.*/)?initdefineads\. -initdefineads.*. -# /inhouse_ads/* (easylist.txt: 4250) -/(.*/)?inhouse_ads/.* -# /index_ads. (easylist.txt: 4249) -/(.*/)?index_ads\. -# /index_ad/* (easylist.txt: 4248) -/(.*/)?index_ad/.* -# /index-ad. (easylist.txt: 4247) -/(.*/)?index-ad\. -index-ad.*. -# /index-ad- (easylist.txt: 4246) -/(.*/)?index-ad- -index-ad-*. -# /incmpuad. (easylist.txt: 4245) -/(.*/)?incmpuad\. -incmpuad.*. -# /includes/ads_ (easylist.txt: 4244) -/(.*/)?includes/ads_ -# /includes/ads/* (easylist.txt: 4243) -/(.*/)?includes/ads/.* -# /includes/ad_ (easylist.txt: 4242) -/(.*/)?includes/ad_ -# /includes/ad. (easylist.txt: 4241) -/(.*/)?includes/ad\. -# /included_ads/* (easylist.txt: 4240) -/(.*/)?included_ads/.* -# /include/adsdaq (easylist.txt: 4239) -/(.*/)?include/adsdaq -# /include/ads/* (easylist.txt: 4238) -/(.*/)?include/ads/.* -# /include/ad_ (easylist.txt: 4237) -/(.*/)?include/ad_ -# /include/ad/* (easylist.txt: 4236) -/(.*/)?include/ad/.* -# /inc_v2/ad_ (easylist.txt: 4235) -/(.*/)?inc_v2/ad_ -# /inc_ads. (easylist.txt: 4234) -/(.*/)?inc_ads\. -# /inc_ad_ (easylist.txt: 4233) -/(.*/)?inc_ad_ -# /inc_ad. (easylist.txt: 4232) -/(.*/)?inc_ad\. -# /inc/ads/* (easylist.txt: 4231) -/(.*/)?inc/ads/.* -# /inc/ad. (easylist.txt: 4230) -/(.*/)?inc/ad\. -# /inc/ad- (easylist.txt: 4229) -/(.*/)?inc/ad- -# /inad. (easylist.txt: 4228) -/(.*/)?inad\. -inad.*. -# /impopup/* (easylist.txt: 4227) -/(.*/)?impopup/.* -# /impop. (easylist.txt: 4226) -/(.*/)?impop\. -impop.*. -# /imp.ads/* (easylist.txt: 4225) -/(.*/)?imp\.ads/.* -imp.ads/.* -# /imlive5. (easylist.txt: 4224) -/(.*/)?imlive5\. -imlive5.*. -# /imlive300_ (easylist.txt: 4223) -/(.*/)?imlive300_ -# /imlive.gif (easylist.txt: 4222) -/(.*/)?imlive\.gif -imlive.gif*. -# /imgs/ads/* (easylist.txt: 4221) -/(.*/)?imgs/ads/.* -# /imgs/ad/* (easylist.txt: 4220) -/(.*/)?imgs/ad/.* -# /imgaffl/* (easylist.txt: 4219) -/(.*/)?imgaffl/.* -# /imgads/* (easylist.txt: 4218) -/(.*/)?imgads/.* -# /imgAdITN. (easylist.txt: 4217) -/(.*/)?imgAdITN\. -imgAdITN.*. -# /imgad_ (easylist.txt: 4216) -/(.*/)?imgad_ -# /imgad? (easylist.txt: 4215) -/(.*/)?imgad\? -# /imgad. (easylist.txt: 4214) -/(.*/)?imgad\. -imgad.*. -# /img_adv/* (easylist.txt: 4213) -/(.*/)?img_adv/.* -# /img_ads/* (easylist.txt: 4212) -/(.*/)?img_ads/.* -# /img_ad_ (easylist.txt: 4211) -/(.*/)?img_ad_ -# /img_ad/* (easylist.txt: 4210) -/(.*/)?img_ad/.* -# /img3/ads/* (easylist.txt: 4209) -/(.*/)?img3/ads/.* -# /img2/ad/* (easylist.txt: 4208) -/(.*/)?img2/ad/.* -# /img/aff/* (easylist.txt: 4207) -/(.*/)?img/aff/.* -# /img/adv/* (easylist.txt: 4206) -/(.*/)?img/adv/.* -# /img/adv. (easylist.txt: 4205) -/(.*/)?img/adv\. -# /img/ads/* (easylist.txt: 4204) -/(.*/)?img/ads/.* -# /img/ad_ (easylist.txt: 4203) -/(.*/)?img/ad_ -# /img/ad/* (easylist.txt: 4202) -/(.*/)?img/ad/.* -# /img/ad. (easylist.txt: 4201) -/(.*/)?img/ad\. -# /img/ad- (easylist.txt: 4200) -/(.*/)?img/ad- -# /img/_ad. (easylist.txt: 4199) -/(.*/)?img/_ad\. -# /img.ads. (easylist.txt: 4198) -/(.*/)?img\.ads\. -img.ads.*. -# /img-ads/* (easylist.txt: 4197) -/(.*/)?img-ads/.* -# /imfloat. (easylist.txt: 4196) -/(.*/)?imfloat\. -imfloat.*. -# /imagesadspro/* (easylist.txt: 4195) -/(.*/)?imagesadspro/.* -# /images_ads/* (easylist.txt: 4194) -/(.*/)?images_ads/.* -# /images_ad/* (easylist.txt: 4193) -/(.*/)?images_ad/.* -# /images2/ads/* (easylist.txt: 4192) -/(.*/)?images2/ads/.* -# /images1/ad_ (easylist.txt: 4191) -/(.*/)?images1/ad_ -# /images/vghd (easylist.txt: 4190) -/(.*/)?images/vghd -# /images/sponsored/* (easylist.txt: 4189) -/(.*/)?images/sponsored/.* -# /images/sponsored. (easylist.txt: 4188) -/(.*/)?images/sponsored\. -# /images/livejasmin/* (easylist.txt: 4187) -/(.*/)?images/livejasmin/.* -# /images/gads_ (easylist.txt: 4186) -/(.*/)?images/gads_ -# /images/bg_ad/* (easylist.txt: 4185) -/(.*/)?images/bg_ad/.* -# /images/awebanner (easylist.txt: 4184) -/(.*/)?images/awebanner -# /images/affs/* (easylist.txt: 4183) -/(.*/)?images/affs/.* -# /images/aff- (easylist.txt: 4182) -/(.*/)?images/aff- -# /images/adver- (easylist.txt: 4181) -/(.*/)?images/adver- -# /images/adv_ (easylist.txt: 4180) -/(.*/)?images/adv_ -# /images/adv/* (easylist.txt: 4179) -/(.*/)?images/adv/.* -# /images/adv. (easylist.txt: 4178) -/(.*/)?images/adv\. -# /images/adv- (easylist.txt: 4177) -/(.*/)?images/adv- -# /images/ads_ (easylist.txt: 4176) -/(.*/)?images/ads_ -# /images/ads/* (easylist.txt: 4175) -/(.*/)?images/ads/.* -# /images/ads. (easylist.txt: 4174) -/(.*/)?images/ads\. -# /images/ads- (easylist.txt: 4173) -/(.*/)?images/ads- -# /images/adds/* (easylist.txt: 4172) -/(.*/)?images/adds/.* -# /images/ad2/* (easylist.txt: 4171) -/(.*/)?images/ad2/.* -# /images/ad/* (easylist.txt: 4170) -/(.*/)?images/ad/.* -# /images/ad- (easylist.txt: 4168) -/(.*/)?images/ad- -# /images.adv/* (easylist.txt: 4167) -/(.*/)?images\.adv/.* -images.adv/.* -# /images.ads. (easylist.txt: 4166) -/(.*/)?images\.ads\. -images.ads.*. -# /images-v2/ad_ (easylist.txt: 4165) -/(.*/)?images-v2/ad_ -# /images-ad/* (easylist.txt: 4164) -/(.*/)?images-ad/.* -# /imagecache_ads/* (easylist.txt: 4163) -/(.*/)?imagecache_ads/.* -# /imageads/* (easylist.txt: 4162) -/(.*/)?imageads/.* -# /image_ads/* (easylist.txt: 4161) -/(.*/)?image_ads/.* -# /image/affiliate/* (easylist.txt: 4160) -/(.*/)?image/affiliate/.* -# /image/adv/* (easylist.txt: 4159) -/(.*/)?image/adv/.* -# /image/ads_ (easylist.txt: 4158) -/(.*/)?image/ads_ -# /image/ads/* (easylist.txt: 4157) -/(.*/)?image/ads/.* -# /image/ad/* (easylist.txt: 4156) -/(.*/)?image/ad/.* -# /imads.js (easylist.txt: 4155) -/(.*/)?imads\.js -imads.js*. -# /imaads. (easylist.txt: 4154) -/(.*/)?imaads\. -imaads.*. -# /ima/ads_ (easylist.txt: 4153) -/(.*/)?ima/ads_ -# /im.cams. (easylist.txt: 4152) -/(.*/)?im\.cams\. -im.cams.*. -# /im-popup/* (easylist.txt: 4151) -/(.*/)?im-popup/.* -# /im-ad/im-rotator2. (easylist.txt: 4150) -/(.*/)?im-ad/im-rotator2\. -# /im-ad/im-rotator. (easylist.txt: 4149) -/(.*/)?im-ad/im-rotator\. -# /ilivid-ad- (easylist.txt: 4148) -/(.*/)?ilivid-ad- -ilivid-ad-*. -# /ignitecampaigns.com/* (easylist.txt: 4147) -/(.*/)?ignitecampaigns\.com/.* -ignitecampaigns.com/.* -# /ignite.partnerembed.js (easylist.txt: 4146) -/(.*/)?ignite\.partnerembed\.js -ignite.partnerembed.js*. -# /ifrm_ads/* (easylist.txt: 4145) -/(.*/)?ifrm_ads/.* -# /iframes/ad/* (easylist.txt: 4144) -/(.*/)?iframes/ad/.* -# /iframedartad. (easylist.txt: 4143) -/(.*/)?iframedartad\. -iframedartad.*. -# /iframeadsensewrapper. (easylist.txt: 4142) -/(.*/)?iframeadsensewrapper\. -iframeadsensewrapper.*. -# /iframeadsense. (easylist.txt: 4141) -/(.*/)?iframeadsense\. -iframeadsense.*. -# /iframeads/* (easylist.txt: 4140) -/(.*/)?iframeads/.* -# /iframeads. (easylist.txt: 4139) -/(.*/)?iframeads\. -iframeads.*. -# /iframeadcontent. (easylist.txt: 4138) -/(.*/)?iframeadcontent\. -iframeadcontent.*. -# /iframead_ (easylist.txt: 4137) -/(.*/)?iframead_ -# /iframead/* (easylist.txt: 4136) -/(.*/)?iframead/.* -# /iframead. (easylist.txt: 4135) -/(.*/)?iframead\. -iframead.*. -# /iframe_sponsor_ (easylist.txt: 4134) -/(.*/)?iframe_sponsor_ -# /iframe_chitika_ (easylist.txt: 4133) -/(.*/)?iframe_chitika_ -# /iframe_ads_ (easylist.txt: 4132) -/(.*/)?iframe_ads_ -# /iframe_ads/* (easylist.txt: 4131) -/(.*/)?iframe_ads/.* -# /iframe_ad_ (easylist.txt: 4130) -/(.*/)?iframe_ad_ -# /iframe_ad? (easylist.txt: 4129) -/(.*/)?iframe_ad\? -# /iframe_ad. (easylist.txt: 4128) -/(.*/)?iframe_ad\. -# /iframe/ads/* (easylist.txt: 4127) -/(.*/)?iframe/ads/.* -# /iframe/ad_ (easylist.txt: 4126) -/(.*/)?iframe/ad_ -# /iframe/ad/* (easylist.txt: 4125) -/(.*/)?iframe/ad/.* -# /iframe.ad/* (easylist.txt: 4124) -/(.*/)?iframe\.ad/.* -iframe.ad/.* -# /iframe-mgid- (easylist.txt: 4123) -/(.*/)?iframe-mgid- -iframe-mgid-*. -# /iframe-ads/* (easylist.txt: 4122) -/(.*/)?iframe-ads/.* -# /iframe-ad/* (easylist.txt: 4121) -/(.*/)?iframe-ad/.* -# /iframe-ad. (easylist.txt: 4120) -/(.*/)?iframe-ad\. -iframe-ad.*. -# /ifolder-ads. (easylist.txt: 4119) -/(.*/)?ifolder-ads\. -ifolder-ads.*. -# /idevaffiliate/banners/* (easylist.txt: 4118) -/(.*/)?idevaffiliate/banners/.* -# /icon_advertising_ (easylist.txt: 4117) -/(.*/)?icon_advertising_ -# /icon_ads_ (easylist.txt: 4116) -/(.*/)?icon_ads_ -# /icon_ad. (easylist.txt: 4115) -/(.*/)?icon_ad\. -# /IBNjspopunder. (easylist.txt: 4114) -/(.*/)?IBNjspopunder\. -IBNjspopunder.*. -# /iabadvertisingplugin.swf (easylist.txt: 4113) -/(.*/)?iabadvertisingplugin\.swf -iabadvertisingplugin.swf*. -# /ia/ads/* (easylist.txt: 4112) -/(.*/)?ia/ads/.* -# /i_ads. (easylist.txt: 4111) -/(.*/)?i_ads\. -# /i/adv/* (easylist.txt: 4110) -/(.*/)?i/adv/.* -# /i/ads/* (easylist.txt: 4109) -/(.*/)?i/ads/.* -# /hubxt.*/js/ht.js (easylist.txt: 4108) -/(.*/)?hubxt\..*/js/ht\.js -hubxt.*./(.*/)?js/ht\.js -# /hubxt.*/js/eht.js? (easylist.txt: 4107) -/(.*/)?hubxt\..*/js/eht\.js\? -hubxt.*./(.*/)?js/eht\.js\? -# /httpads/* (easylist.txt: 4106) -/(.*/)?httpads/.* -# /htmlads/* (easylist.txt: 4105) -/(.*/)?htmlads/.* -# /html/sponsors/* (easylist.txt: 4104) -/(.*/)?html/sponsors/.* -# /html/ads_ (easylist.txt: 4103) -/(.*/)?html/ads_ -# /html/ads/* (easylist.txt: 4102) -/(.*/)?html/ads/.* -# /html/ad/* (easylist.txt: 4101) -/(.*/)?html/ad/.* -# /html/ad. (easylist.txt: 4100) -/(.*/)?html/ad\. -# /html.ng/* (easylist.txt: 4099) -/(.*/)?html\.ng/.* -html.ng/.* -# /ht.js?site_ (easylist.txt: 4098) -/(.*/)?ht\.js\?site_ -# /hpcwire/ads/* (easylist.txt: 4097) -/(.*/)?hpcwire/ads/.* -# /hoverad. (easylist.txt: 4096) -/(.*/)?hoverad\. -hoverad.*. -# /houseads? (easylist.txt: 4095) -/(.*/)?houseads\? -# /houseads/* (easylist.txt: 4094) -/(.*/)?houseads/.* -# /houseads. (easylist.txt: 4093) -/(.*/)?houseads\. -houseads.*. -# /housead_ (easylist.txt: 4092) -/(.*/)?housead_ -# /housead/* (easylist.txt: 4091) -/(.*/)?housead/.* -# /housead. (easylist.txt: 4090) -/(.*/)?housead\. -housead.*. -# /house_ads/* (easylist.txt: 4089) -/(.*/)?house_ads/.* -# /house_ad_ (easylist.txt: 4088) -/(.*/)?house_ad_ -# /house_ad- (easylist.txt: 4087) -/(.*/)?house_ad- -# /house-ads/* (easylist.txt: 4086) -/(.*/)?house-ads/.* -# /house-ad/* (easylist.txt: 4085) -/(.*/)?house-ad/.* -# /house-ad. (easylist.txt: 4084) -/(.*/)?house-ad\. -house-ad.*. -# /hostkey-ad. (easylist.txt: 4083) -/(.*/)?hostkey-ad\. -hostkey-ad.*. -# /hosting/ads/* (easylist.txt: 4082) -/(.*/)?hosting/ads/.* -# /hostgator-ad. (easylist.txt: 4081) -/(.*/)?hostgator-ad\. -hostgator-ad.*. -# /hostedbannerads. (easylist.txt: 4080) -/(.*/)?hostedbannerads\. -hostedbannerads.*. -# /hostedads. (easylist.txt: 4079) -/(.*/)?hostedads\. -hostedads.*. -# /horizontalAd. (easylist.txt: 4078) -/(.*/)?horizontalAd\. -horizontalAd.*. -# /horizontal_advert_ (easylist.txt: 4077) -/(.*/)?horizontal_advert_ -# /HompageStickyAd. (easylist.txt: 4076) -/(.*/)?HompageStickyAd\. -HompageStickyAd.*. -# /HomeStaticAds/* (easylist.txt: 4075) -/(.*/)?HomeStaticAds/.* -# /homeslideadtop/* (easylist.txt: 4074) -/(.*/)?homeslideadtop/.* -# /homepageadvertright. (easylist.txt: 4073) -/(.*/)?homepageadvertright\. -homepageadvertright.*. -# /homepage_ad_ (easylist.txt: 4071) -/(.*/)?homepage_ad_ -# /homepage/ads/* (easylist.txt: 4070) -/(.*/)?homepage/ads/.* -# /homepage-ads/* (easylist.txt: 4069) -/(.*/)?homepage-ads/.* -# /homeoutside/ads/* (easylist.txt: 4068) -/(.*/)?homeoutside/ads/.* -# /home_adv. (easylist.txt: 4067) -/(.*/)?home_adv\. -# /home30/ad. (easylist.txt: 4066) -/(.*/)?home30/ad\. -# /home/sponsor_ (easylist.txt: 4065) -/(.*/)?home/sponsor_ -# /home/ads_ (easylist.txt: 4064) -/(.*/)?home/ads_ -# /home/ads/* (easylist.txt: 4063) -/(.*/)?home/ads/.* -# /home/ads- (easylist.txt: 4062) -/(.*/)?home/ads- -# /home/ad_ (easylist.txt: 4061) -/(.*/)?home/ad_ -# /home/_ads (easylist.txt: 4060) -/(.*/)?home/_ads -# /holl_ad. (easylist.txt: 4059) -/(.*/)?holl_ad\. -# /hitbar_ad_ (easylist.txt: 4058) -/(.*/)?hitbar_ad_ -# /hikaku/banner/* (easylist.txt: 4057) -/(.*/)?hikaku/banner/.* -# /hiadone_ (easylist.txt: 4056) -/(.*/)?hiadone_ -# /Heat_Ad. (easylist.txt: 4055) -/(.*/)?Heat_Ad\. -# /headvert. (easylist.txt: 4054) -/(.*/)?headvert\. -headvert.*. -# /headermktgpromoads. (easylist.txt: 4053) -/(.*/)?headermktgpromoads\. -headermktgpromoads.*. -# /headerAdvertismentTab. (easylist.txt: 4052) -/(.*/)?headerAdvertismentTab\. -headerAdvertismentTab.*. -# /headerads1. (easylist.txt: 4051) -/(.*/)?headerads1\. -headerads1.*. -# /headerads. (easylist.txt: 4050) -/(.*/)?headerads\. -headerads.*. -# /headeradd2. (easylist.txt: 4049) -/(.*/)?headeradd2\. -headeradd2.*. -# /headerad. (easylist.txt: 4048) -/(.*/)?headerad\. -headerad.*. -# /header_ads_ (easylist.txt: 4047) -/(.*/)?header_ads_ -# /header_ad_ (easylist.txt: 4046) -/(.*/)?header_ad_ -# /header-ad. (easylist.txt: 4045) -/(.*/)?header-ad\. -header-ad.*. -# /hdadvertisment- (easylist.txt: 4044) -/(.*/)?hdadvertisment- -hdadvertisment-*. -# /hcm_ads/* (easylist.txt: 4043) -/(.*/)?hcm_ads/.* -# /Handlers/Ads. (easylist.txt: 4042) -/(.*/)?Handlers/Ads\. -# /hads- (easylist.txt: 4041) -/(.*/)?hads- -hads-*. -# /gutterAd. (easylist.txt: 4040) -/(.*/)?gutterAd\. -gutterAd.*. -# /GujAd/* (easylist.txt: 4039) -/(.*/)?GujAd/.* -# /gujAd. (easylist.txt: 4038) -/(.*/)?gujAd\. -gujAd.*. -# /guardrailad_ (easylist.txt: 4037) -/(.*/)?guardrailad_ -# /guardianleader. (easylist.txt: 4036) -/(.*/)?guardianleader\. -guardianleader.*. -# /gtv_ads. (easylist.txt: 4035) -/(.*/)?gtv_ads\. -# /gtags/pin_tag. (easylist.txt: 4034) -/(.*/)?gtags/pin_tag\. -# /gt6skyadtop. (easylist.txt: 4033) -/(.*/)?gt6skyadtop\. -gt6skyadtop.*. -# /groupon/ads/* (easylist.txt: 4032) -/(.*/)?groupon/ads/.* -# /grid-ad. (easylist.txt: 4031) -/(.*/)?grid-ad\. -grid-ad.*. -# /graphics/ads/* (easylist.txt: 4030) -/(.*/)?graphics/ads/.* -# /graphics/ad_ (easylist.txt: 4029) -/(.*/)?graphics/ad_ -# /gpt_ads- (easylist.txt: 4028) -/(.*/)?gpt_ads- -# /googlempu. (easylist.txt: 4027) -/(.*/)?googlempu\. -googlempu.*. -# /googleleads. (easylist.txt: 4026) -/(.*/)?googleleads\. -googleleads.*. -# /googleleader. (easylist.txt: 4025) -/(.*/)?googleleader\. -googleleader.*. -# /googleheadad. (easylist.txt: 4024) -/(.*/)?googleheadad\. -googleheadad.*. -# /googlecontextualads. (easylist.txt: 4023) -/(.*/)?googlecontextualads\. -googlecontextualads.*. -# /googleafvadrenderer. (easylist.txt: 4022) -/(.*/)?googleafvadrenderer\. -googleafvadrenderer.*. -# /googleafs. (easylist.txt: 4021) -/(.*/)?googleafs\. -googleafs.*. -# /googleafc. (easylist.txt: 4020) -/(.*/)?googleafc\. -googleafc.*. -# /googleadunit? (easylist.txt: 4019) -/(.*/)?googleadunit\? -# /googleAdTaggingSubSec. (easylist.txt: 4018) -/(.*/)?googleAdTaggingSubSec\. -googleAdTaggingSubSec.*. -# /googleadsense. (easylist.txt: 4017) -/(.*/)?googleadsense\. -googleadsense.*. -# /googleAdScripts. (easylist.txt: 4016) -/(.*/)?googleAdScripts\. -googleAdScripts.*. -# /googleadsafs_ (easylist.txt: 4015) -/(.*/)?googleadsafs_ -# /googleadsafc_ (easylist.txt: 4014) -/(.*/)?googleadsafc_ -# /googleads_ (easylist.txt: 4013) -/(.*/)?googleads_ -# /googleads3widetext. (easylist.txt: 4012) -/(.*/)?googleads3widetext\. -googleads3widetext.*. -# /googleads2. (easylist.txt: 4011) -/(.*/)?googleads2\. -googleads2.*. -# /googleads1. (easylist.txt: 4010) -/(.*/)?googleads1\. -googleads1.*. -# /googleads/* (easylist.txt: 4009) -/(.*/)?googleads/.* -# /googleads. (easylist.txt: 4008) -/(.*/)?googleads\. -googleads.*. -# /googleads- (easylist.txt: 4007) -/(.*/)?googleads- -googleads-*. -# /googleadright. (easylist.txt: 4006) -/(.*/)?googleadright\. -googleadright.*. -# /googleadiframe_ (easylist.txt: 4005) -/(.*/)?googleadiframe_ -# /googleadhtml/* (easylist.txt: 4004) -/(.*/)?googleadhtml/.* -# /googleadhpbot. (easylist.txt: 4003) -/(.*/)?googleadhpbot\. -googleadhpbot.*. -# /googleadhp. (easylist.txt: 4002) -/(.*/)?googleadhp\. -googleadhp.*. -# /googleaddisplayframe. (easylist.txt: 4001) -/(.*/)?googleaddisplayframe\. -googleaddisplayframe.*. -# /googleaddfooter. (easylist.txt: 4000) -/(.*/)?googleaddfooter\. -googleaddfooter.*. -# /googleadcode. (easylist.txt: 3999) -/(.*/)?googleadcode\. -googleadcode.*. -# /GoogleAdBg. (easylist.txt: 3998) -/(.*/)?GoogleAdBg\. -GoogleAdBg.*. -# /googlead_ (easylist.txt: 3997) -/(.*/)?googlead_ -# /googlead336x280. (easylist.txt: 3996) -/(.*/)?googlead336x280\. -googlead336x280.*. -# /GoogleAd300. (easylist.txt: 3995) -/(.*/)?GoogleAd300\. -GoogleAd300.*. -# /googlead160. (easylist.txt: 3994) -/(.*/)?googlead160\. -googlead160.*. -# /googlead1. (easylist.txt: 3993) -/(.*/)?googlead1\. -googlead1.*. -# /googlead. (easylist.txt: 3992) -/(.*/)?googlead\. -googlead.*. -# /googlead- (easylist.txt: 3991) -/(.*/)?googlead- -googlead-*. -# /google_radlinks_ (easylist.txt: 3990) -/(.*/)?google_radlinks_ -# /google_lander2.js (easylist.txt: 3989) -/(.*/)?google_lander2\.js -# /google_caf.js? (easylist.txt: 3988) -/(.*/)?google_caf\.js\? -# /google_afs_widget/* (easylist.txt: 3987) -/(.*/)?google_afs_widget/.* -# /google_afs. (easylist.txt: 3986) -/(.*/)?google_afs\. -# /google_afc_ (easylist.txt: 3985) -/(.*/)?google_afc_ -# /google_afc. (easylist.txt: 3984) -/(.*/)?google_afc\. -# /google_adv/* (easylist.txt: 3983) -/(.*/)?google_adv/.* -# /google_ads_ (easylist.txt: 3982) -/(.*/)?google_ads_ -# /google_ads/* (easylist.txt: 3981) -/(.*/)?google_ads/.* -# /google_ads. (easylist.txt: 3980) -/(.*/)?google_ads\. -# /google_ad_ (easylist.txt: 3979) -/(.*/)?google_ad_ -# /google_ad. (easylist.txt: 3978) -/(.*/)?google_ad\. -# /google728. (easylist.txt: 3977) -/(.*/)?google728\. -google728.*. -# /google160. (easylist.txt: 3976) -/(.*/)?google160\. -google160.*. -# /google/adv. (easylist.txt: 3975) -/(.*/)?google/adv\. -# /google/ad? (easylist.txt: 3974) -/(.*/)?google/ad\? -# /google-afc. (easylist.txt: 3973) -/(.*/)?google-afc\. -google-afc.*. -# /google-afc- (easylist.txt: 3972) -/(.*/)?google-afc- -google-afc-*. -# /google-adwords (easylist.txt: 3971) -/(.*/)?google-adwords -google-adwords*. -# /google-adverts- (easylist.txt: 3970) -/(.*/)?google-adverts- -google-adverts-*. -# /google-adsense. (easylist.txt: 3969) -/(.*/)?google-adsense\. -google-adsense.*. -# /google-adsense- (easylist.txt: 3968) -/(.*/)?google-adsense- -google-adsense-*. -# /google-ads/* (easylist.txt: 3967) -/(.*/)?google-ads/.* -# /google-ads. (easylist.txt: 3966) -/(.*/)?google-ads\. -google-ads.*. -# /google-ad? (easylist.txt: 3965) -/(.*/)?google-ad\? -# /google-ad- (easylist.txt: 3964) -/(.*/)?google-ad- -google-ad-*. -# /googad300by600. (easylist.txt: 3963) -/(.*/)?googad300by600\. -googad300by600.*. -# /globalbannerad. (easylist.txt: 3962) -/(.*/)?globalbannerad\. -globalbannerad.*. -# /globaladprostyles. (easylist.txt: 3961) -/(.*/)?globaladprostyles\. -globaladprostyles.*. -# /globalad. (easylist.txt: 3960) -/(.*/)?globalad\. -globalad.*. -# /global/ads/* (easylist.txt: 3959) -/(.*/)?global/ads/.* -# /global/ads. (easylist.txt: 3958) -/(.*/)?global/ads\. -# /global/ad/* (easylist.txt: 3957) -/(.*/)?global/ad/.* -# /global-ads_ (easylist.txt: 3956) -/(.*/)?global-ads_ -# /glam_ads. (easylist.txt: 3955) -/(.*/)?glam_ads\. -# /glam728. (easylist.txt: 3954) -/(.*/)?glam728\. -glam728.*. -# /glam300. (easylist.txt: 3953) -/(.*/)?glam300\. -glam300.*. -# /glam160. (easylist.txt: 3952) -/(.*/)?glam160\. -glam160.*. -# /gifs/ads/* (easylist.txt: 3951) -/(.*/)?gifs/ads/.* -# /ggadsense. (easylist.txt: 3950) -/(.*/)?ggadsense\. -ggadsense.*. -# /gfx/ads/* (easylist.txt: 3949) -/(.*/)?gfx/ads/.* -# /gfx/ad/* (easylist.txt: 3948) -/(.*/)?gfx/ad/.* -# /gexternalad. (easylist.txt: 3947) -/(.*/)?gexternalad\. -gexternalad.*. -# /getwebsitead/* (easylist.txt: 3946) -/(.*/)?getwebsitead/.* -# /getvideoad. (easylist.txt: 3945) -/(.*/)?getvideoad\. -getvideoad.*. -# /getvdopiaads. (easylist.txt: 3944) -/(.*/)?getvdopiaads\. -getvdopiaads.*. -# /GetVASTAd? (easylist.txt: 3943) -/(.*/)?GetVASTAd\? -# /getTextAD. (easylist.txt: 3942) -/(.*/)?getTextAD\. -getTextAD.*. -# /getsponslinksauto. (easylist.txt: 3941) -/(.*/)?getsponslinksauto\. -getsponslinksauto.*. -# /getsponslinks. (easylist.txt: 3940) -/(.*/)?getsponslinks\. -getsponslinks.*. -# /getsad.php? (easylist.txt: 3939) -/(.*/)?getsad\.php\? -# /getrcmd.js? (easylist.txt: 3938) -/(.*/)?getrcmd\.js\? -# /getmyad/* (easylist.txt: 3937) -/(.*/)?getmyad/.* -# /getmdhlink. (easylist.txt: 3936) -/(.*/)?getmdhlink\. -getmdhlink.*. -# /getmdhlayer. (easylist.txt: 3935) -/(.*/)?getmdhlayer\. -getmdhlayer.*. -# /getmarketplaceads. (easylist.txt: 3934) -/(.*/)?getmarketplaceads\. -getmarketplaceads.*. -# /getJsonAds? (easylist.txt: 3933) -/(.*/)?getJsonAds\? -# /getinlineads/* (easylist.txt: 3932) -/(.*/)?getinlineads/.* -# /gethalfpagead. (easylist.txt: 3931) -/(.*/)?gethalfpagead\. -gethalfpagead.*. -# /getfeaturedadsforshow. (easylist.txt: 3930) -/(.*/)?getfeaturedadsforshow\. -getfeaturedadsforshow.*. -# /getdigitalad/* (easylist.txt: 3929) -/(.*/)?getdigitalad/.* -# /getbanner.php? (easylist.txt: 3928) -/(.*/)?getbanner\.php\? -# /getbanner.cfm? (easylist.txt: 3927) -/(.*/)?getbanner\.cfm\? -# /getban.php? (easylist.txt: 3926) -/(.*/)?getban\.php\? -# /getarticleadvertimageservlet? (easylist.txt: 3925) -/(.*/)?getarticleadvertimageservlet\? -# /GetADVOverlay. (easylist.txt: 3924) -/(.*/)?GetADVOverlay\. -GetADVOverlay.*. -# /getadverts? (easylist.txt: 3923) -/(.*/)?getadverts\? -# /getadvertiserimage. (easylist.txt: 3922) -/(.*/)?getadvertiserimage\. -getadvertiserimage.*. -# /getAdvertisement^ (easylist.txt: 3921) -/(.*/)?getAdvertisement[^\w%.-] -# /getadvertimageservlet? (easylist.txt: 3920) -/(.*/)?getadvertimageservlet\? -# /getads| (easylist.txt: 3919) -/(.*/)?getads$ -# /getAdsForClient? (easylist.txt: 3918) -/(.*/)?getAdsForClient\? -# /getadsettingsjs? (easylist.txt: 3917) -/(.*/)?getadsettingsjs\? -# /getadserver. (easylist.txt: 3916) -/(.*/)?getadserver\. -getadserver.*. -# /getads? (easylist.txt: 3915) -/(.*/)?getads\? -# /getads/* (easylist.txt: 3914) -/(.*/)?getads/.* -# /getads. (easylist.txt: 3913) -/(.*/)?getads\. -getads.*. -# /getads- (easylist.txt: 3912) -/(.*/)?getads- -getads-*. -# /getadframe. (easylist.txt: 3911) -/(.*/)?getadframe\. -getadframe.*. -# /GetAdForCallBack? (easylist.txt: 3910) -/(.*/)?GetAdForCallBack\? -# /getadds. (easylist.txt: 3909) -/(.*/)?getadds\. -getadds.*. -# /getadcontent. (easylist.txt: 3908) -/(.*/)?getadcontent\. -getadcontent.*. -# /getad? (easylist.txt: 3907) -/(.*/)?getad\? -# /getad/* (easylist.txt: 3906) -/(.*/)?getad/.* -# /getad. (easylist.txt: 3905) -/(.*/)?getad\. -getad.*. -# /get_banner.asp? (easylist.txt: 3904) -/(.*/)?get_banner\.asp\? -# /get_ads/* (easylist.txt: 3903) -/(.*/)?get_ads/.* -# /get_ads. (easylist.txt: 3902) -/(.*/)?get_ads\. -# /get_ad_ (easylist.txt: 3901) -/(.*/)?get_ad_ -# /get/ad? (easylist.txt: 3900) -/(.*/)?get/ad\? -# /get/ad/* (easylist.txt: 3899) -/(.*/)?get/ad/.* -# /get/ad. (easylist.txt: 3898) -/(.*/)?get/ad\. -# /get.ad? (easylist.txt: 3897) -/(.*/)?get\.ad\? -# /get.*/get.$script (easylist.txt: 3896) -/(.*/)?get\..*/get\. -get.*./(.*/)?get\. -# /get-advert- (easylist.txt: 3895) -/(.*/)?get-advert- -get-advert-*. -# /get-ad. (easylist.txt: 3894) -/(.*/)?get-ad\. -get-ad.*. -# /ges_ads/* (easylist.txt: 3893) -/(.*/)?ges_ads/.* -# /GeoDynBanner.php?wmid= (easylist.txt: 3892) -/(.*/)?GeoDynBanner\.php\?wmid= -# /geobox.html (easylist.txt: 3891) -/(.*/)?geobox\.html -geobox.html*. -# /geoad/* (easylist.txt: 3890) -/(.*/)?geoad/.* -# /geo_banner.htm? (easylist.txt: 3889) -/(.*/)?geo_banner\.htm\? -# /geo/ads. (easylist.txt: 3888) -/(.*/)?geo/ads\. -# /geo-ads_ (easylist.txt: 3887) -/(.*/)?geo-ads_ -# /genericrichmediabannerad/* (easylist.txt: 3886) -/(.*/)?genericrichmediabannerad/.* -# /generic.ads. (easylist.txt: 3885) -/(.*/)?generic\.ads\. -generic.ads.*. -# /generateplayerads. (easylist.txt: 3884) -/(.*/)?generateplayerads\. -generateplayerads.*. -# /generated/key.js? (easylist.txt: 3883) -/(.*/)?generated/key\.js\? -# /generateadtag. (easylist.txt: 3882) -/(.*/)?generateadtag\. -generateadtag.*. -# /generate_ads. (easylist.txt: 3881) -/(.*/)?generate_ads\. -# /generate_ad. (easylist.txt: 3880) -/(.*/)?generate_ad\. -# /general/ads (easylist.txt: 3879) -/(.*/)?general/ads -# /general-ad- (easylist.txt: 3878) -/(.*/)?general-ad- -general-ad-*. -# /genads/* (easylist.txt: 3877) -/(.*/)?genads/.* -# /gen_ads_ (easylist.txt: 3876) -/(.*/)?gen_ads_ -# /geitonpop. (easylist.txt: 3875) -/(.*/)?geitonpop\. -geitonpop.*. -# /gazette/ads/* (easylist.txt: 3874) -/(.*/)?gazette/ads/.* -# /gatewayAds. (easylist.txt: 3873) -/(.*/)?gatewayAds\. -gatewayAds.*. -# /gate-ad- (easylist.txt: 3872) -/(.*/)?gate-ad- -gate-ad-*. -# /gannett/ads/* (easylist.txt: 3871) -/(.*/)?gannett/ads/.* -# /GAN_Ads/* (easylist.txt: 3870) -/(.*/)?GAN_Ads/.* -# /gamersad. (easylist.txt: 3869) -/(.*/)?gamersad\. -gamersad.*. -# /gameadsync. (easylist.txt: 3868) -/(.*/)?gameadsync\. -gameadsync.*. -# /gamead/* (easylist.txt: 3867) -/(.*/)?gamead/.* -# /game-ads. (easylist.txt: 3866) -/(.*/)?game-ads\. -game-ads.*. -# /gamads/* (easylist.txt: 3865) -/(.*/)?gamads/.* -# /gam_ads. (easylist.txt: 3864) -/(.*/)?gam_ads\. -# /gam_ad_ (easylist.txt: 3863) -/(.*/)?gam_ad_ -# /gam_ad. (easylist.txt: 3862) -/(.*/)?gam_ad\. -# /gam.html? (easylist.txt: 3861) -/(.*/)?gam\.html\? -# /galleryad. (easylist.txt: 3860) -/(.*/)?galleryad\. -galleryad.*. -# /gafv_adapter. (easylist.txt: 3859) -/(.*/)?gafv_adapter\. -# /gafsads? (easylist.txt: 3858) -/(.*/)?gafsads\? -# /gafc.js (easylist.txt: 3857) -/(.*/)?gafc\.js -gafc.js*. -# /gads.js (easylist.txt: 3856) -/(.*/)?gads\.js -gads.js*. -# /gads.html (easylist.txt: 3855) -/(.*/)?gads\.html -gads.html*. -# /gadgets/ad/* (easylist.txt: 3854) -/(.*/)?gadgets/ad/.* -# /fwadmanager. (easylist.txt: 3853) -/(.*/)?fwadmanager\. -fwadmanager.*. -# /fuseads/* (easylist.txt: 3852) -/(.*/)?fuseads/.* -# /fulladbazee. (easylist.txt: 3851) -/(.*/)?fulladbazee\. -fulladbazee.*. -# /fullad. (easylist.txt: 3850) -/(.*/)?fullad\. -fullad.*. -# /full/ads/* (easylist.txt: 3849) -/(.*/)?full/ads/.* -# /ftp/adv/* (easylist.txt: 3848) -/(.*/)?ftp/adv/.* -# /frontpagead/* (easylist.txt: 3847) -/(.*/)?frontpagead/.* -# /frontend/ads/* (easylist.txt: 3846) -/(.*/)?frontend/ads/.* -# /frnads. (easylist.txt: 3845) -/(.*/)?frnads\. -frnads.*. -# /friendfinder_ (easylist.txt: 3844) -/(.*/)?friendfinder_ -# /frequencyads. (easylist.txt: 3843) -/(.*/)?frequencyads\. -frequencyads.*. -# /freead2. (easylist.txt: 3842) -/(.*/)?freead2\. -freead2.*. -# /freead. (easylist.txt: 3841) -/(.*/)?freead\. -freead.*. -# /frameadsz. (easylist.txt: 3840) -/(.*/)?frameadsz\. -frameadsz.*. -# /frameads_ (easylist.txt: 3839) -/(.*/)?frameads_ -# /frameads1. (easylist.txt: 3838) -/(.*/)?frameads1\. -frameads1.*. -# /frameads. (easylist.txt: 3837) -/(.*/)?frameads\. -frameads.*. -# /framead_ (easylist.txt: 3836) -/(.*/)?framead_ -# /framead/* (easylist.txt: 3835) -/(.*/)?framead/.* -# /framead. (easylist.txt: 3834) -/(.*/)?framead\. -framead.*. -# /framead- (easylist.txt: 3833) -/(.*/)?framead- -framead-*. -# /frame_ads_ (easylist.txt: 3832) -/(.*/)?frame_ads_ -# /forums/ad/* (easylist.txt: 3831) -/(.*/)?forums/ad/.* -# /forum/ads/* (easylist.txt: 3830) -/(.*/)?forum/ads/.* -# /forads. (easylist.txt: 3829) -/(.*/)?forads\. -forads.*. -# /footertextads. (easylist.txt: 3828) -/(.*/)?footertextads\. -footertextads.*. -# /footerads/* (easylist.txt: 3827) -/(.*/)?footerads/.* -# /footerads. (easylist.txt: 3826) -/(.*/)?footerads\. -footerads.*. -# /footerad? (easylist.txt: 3825) -/(.*/)?footerad\? -# /footerad. (easylist.txt: 3824) -/(.*/)?footerad\. -footerad.*. -# /footer_ads. (easylist.txt: 3823) -/(.*/)?footer_ads\. -# /footer_ad_ (easylist.txt: 3822) -/(.*/)?footer_ad_ -# /footer_ad. (easylist.txt: 3821) -/(.*/)?footer_ad\. -# /footer-ads/* (easylist.txt: 3820) -/(.*/)?footer-ads/.* -# /footer-ad. (easylist.txt: 3819) -/(.*/)?footer-ad\. -footer-ad.*. -# /footer-ad- (easylist.txt: 3818) -/(.*/)?footer-ad- -footer-ad-*. -# /footad. (easylist.txt: 3817) -/(.*/)?footad\. -footad.*. -# /footad- (easylist.txt: 3816) -/(.*/)?footad- -footad-*. -# /fn_ads. (easylist.txt: 3815) -/(.*/)?fn_ads\. -# /flyers/ads/* (easylist.txt: 3814) -/(.*/)?flyers/ads/.* -# /flyads/* (easylist.txt: 3813) -/(.*/)?flyads/.* -# /flyad/* (easylist.txt: 3812) -/(.*/)?flyad/.* -# /flyad. (easylist.txt: 3811) -/(.*/)?flyad\. -flyad.*. -# /flvads/* (easylist.txt: 3810) -/(.*/)?flvads/.* -# /flvad_ (easylist.txt: 3809) -/(.*/)?flvad_ -# /flv-ad- (easylist.txt: 3808) -/(.*/)?flv-ad- -flv-ad-*. -# /floaty_rotator (easylist.txt: 3807) -/(.*/)?floaty_rotator -# /floatingads. (easylist.txt: 3806) -/(.*/)?floatingads\. -floatingads.*. -# /FloatingAd_ (easylist.txt: 3805) -/(.*/)?FloatingAd_ -# /floatingad. (easylist.txt: 3804) -/(.*/)?floatingad\. -floatingad.*. -# /floater_ad. (easylist.txt: 3803) -/(.*/)?floater_ad\. -# /floatadv. (easylist.txt: 3802) -/(.*/)?floatadv\. -floatadv.*. -# /floatads. (easylist.txt: 3801) -/(.*/)?floatads\. -floatads.*. -# /floatad_ (easylist.txt: 3800) -/(.*/)?floatad_ -# /float_ad. (easylist.txt: 3799) -/(.*/)?float_ad\. -# /float-ads/* (easylist.txt: 3798) -/(.*/)?float-ads/.* -# /flirt4free. (easylist.txt: 3797) -/(.*/)?flirt4free\. -flirt4free.*. -# /fliionosadcapture- (easylist.txt: 3796) -/(.*/)?fliionosadcapture- -fliionosadcapture-*. -# /flexads? (easylist.txt: 3795) -/(.*/)?flexads\? -# /fleshlightcash_ (easylist.txt: 3794) -/(.*/)?fleshlightcash_ -# /fleshlight. (easylist.txt: 3793) -/(.*/)?fleshlight\. -fleshlight.*. -# /flesh_banner (easylist.txt: 3792) -/(.*/)?flesh_banner -# /flatad. (easylist.txt: 3791) -/(.*/)?flatad\. -flatad.*. -# /flashpeelads/* (easylist.txt: 3790) -/(.*/)?flashpeelads/.* -# /flashads/* (easylist.txt: 3789) -/(.*/)?flashads/.* -# /flashads. (easylist.txt: 3788) -/(.*/)?flashads\. -flashads.*. -# /flashad3. (easylist.txt: 3787) -/(.*/)?flashad3\. -flashad3.*. -# /flashad. (easylist.txt: 3786) -/(.*/)?flashad\. -flashad.*. -# /flash_ads. (easylist.txt: 3785) -/(.*/)?flash_ads\. -# /flash/advertis (easylist.txt: 3784) -/(.*/)?flash/advertis -# /flash/ads/* (easylist.txt: 3783) -/(.*/)?flash/ads/.* -# /flash/ad_ (easylist.txt: 3782) -/(.*/)?flash/ad_ -# /flash/ad/* (easylist.txt: 3781) -/(.*/)?flash/ad/.* -# /flash-ads/* (easylist.txt: 3780) -/(.*/)?flash-ads/.* -# /flash-ads. (easylist.txt: 3779) -/(.*/)?flash-ads\. -flash-ads.*. -# /flag_ads. (easylist.txt: 3778) -/(.*/)?flag_ads\. -# /first-ad_ (easylist.txt: 3777) -/(.*/)?first-ad_ -# /finads. (easylist.txt: 3776) -/(.*/)?finads\. -finads.*. -# /fimserve. (easylist.txt: 3775) -/(.*/)?fimserve\. -fimserve.*. -# /filter.php?pro$script (easylist.txt: 3774) -/(.*/)?filter\.php\?pro -# /files/ads/* (easylist.txt: 3773) -/(.*/)?files/ads/.* -# /files/ads- (easylist.txt: 3772) -/(.*/)?files/ads- -# /files/ad/* (easylist.txt: 3771) -/(.*/)?files/ad/.* -# /files/ad- (easylist.txt: 3770) -/(.*/)?files/ad- -# /file/ad. (easylist.txt: 3769) -/(.*/)?file/ad\. -# /feedads. (easylist.txt: 3768) -/(.*/)?feedads\. -feedads.*. -# /featuredadshome. (easylist.txt: 3767) -/(.*/)?featuredadshome\. -featuredadshome.*. -# /fea_ads. (easylist.txt: 3766) -/(.*/)?fea_ads\. -# /fc_ads. (easylist.txt: 3765) -/(.*/)?fc_ads\. -# /fbads/* (easylist.txt: 3764) -/(.*/)?fbads/.* -# /fatads. (easylist.txt: 3763) -/(.*/)?fatads\. -fatads.*. -# /fastclick728. (easylist.txt: 3762) -/(.*/)?fastclick728\. -fastclick728.*. -# /fastclick160. (easylist.txt: 3761) -/(.*/)?fastclick160\. -fastclick160.*. -# /fan-ads.$script (easylist.txt: 3760) -/(.*/)?fan-ads\. -fan-ads.*. -# /facebooksex. (easylist.txt: 3759) -/(.*/)?facebooksex\. -facebooksex.*. -# /facebookaff2/* (easylist.txt: 3758) -/(.*/)?facebookaff2/.* -# /facebookaff/* (easylist.txt: 3757) -/(.*/)?facebookaff/.* -# /eyewondermanagement28. (easylist.txt: 3756) -/(.*/)?eyewondermanagement28\. -eyewondermanagement28.*. -# /eyewondermanagement. (easylist.txt: 3755) -/(.*/)?eyewondermanagement\. -eyewondermanagement.*. -# /externalhtmladrenderer. (easylist.txt: 3754) -/(.*/)?externalhtmladrenderer\. -externalhtmladrenderer.*. -# /externalads/* (easylist.txt: 3753) -/(.*/)?externalads/.* -# /ExternalAdNetworkViewlogLogServlet? (easylist.txt: 3752) -/(.*/)?ExternalAdNetworkViewlogLogServlet\? -# /externalad. (easylist.txt: 3751) -/(.*/)?externalad\. -externalad.*. -# /external_ads. (easylist.txt: 3750) -/(.*/)?external_ads\. -# /external/ads/* (easylist.txt: 3749) -/(.*/)?external/ads/.* -# /external/ad/* (easylist.txt: 3748) -/(.*/)?external/ad/.* -# /external/ad. (easylist.txt: 3747) -/(.*/)?external/ad\. -# /extendedadvert. (easylist.txt: 3746) -/(.*/)?extendedadvert\. -extendedadvert.*. -# /extadv/* (easylist.txt: 3745) -/(.*/)?extadv/.* -# /ext_ads. (easylist.txt: 3744) -/(.*/)?ext_ads\. -# /ext/ads/* (easylist.txt: 3743) -/(.*/)?ext/ads/.* -# /exports/tour_20/* (easylist.txt: 3742) -/(.*/)?exports/tour_20/.* -# /exports/tour/*$third-party (easylist.txt: 3741) -/(.*/)?exports/tour/.* -# /expop.js (easylist.txt: 3740) -/(.*/)?expop\.js -expop.js*. -# /expandy-ads. (easylist.txt: 3739) -/(.*/)?expandy-ads\. -expandy-ads.*. -# /expandingads. (easylist.txt: 3738) -/(.*/)?expandingads\. -expandingads.*. -# /expandable_ad? (easylist.txt: 3737) -/(.*/)?expandable_ad\? -# /expandable_ad.php (easylist.txt: 3736) -/(.*/)?expandable_ad\.php -# /exoclickright3. (easylist.txt: 3735) -/(.*/)?exoclickright3\. -exoclickright3.*. -# /exoclickright2. (easylist.txt: 3734) -/(.*/)?exoclickright2\. -exoclickright2.*. -# /exoclickright1. (easylist.txt: 3733) -/(.*/)?exoclickright1\. -exoclickright1.*. -# /exoclickright. (easylist.txt: 3732) -/(.*/)?exoclickright\. -exoclickright.*. -# /exoclick. (easylist.txt: 3731) -/(.*/)?exoclick\. -exoclick.*. -# /exobanner. (easylist.txt: 3730) -/(.*/)?exobanner\. -exobanner.*. -# /exo120x60. (easylist.txt: 3729) -/(.*/)?exo120x60\. -exo120x60.*. -# /exitsplash. (easylist.txt: 3728) -/(.*/)?exitsplash\. -exitsplash.*. -# /exitpopup. (easylist.txt: 3727) -/(.*/)?exitpopup\. -exitpopup.*. -# /exitpopunder_ (easylist.txt: 3726) -/(.*/)?exitpopunder_ -# /exitpopunder. (easylist.txt: 3725) -/(.*/)?exitpopunder\. -exitpopunder.*. -# /exitpop. (easylist.txt: 3724) -/(.*/)?exitpop\. -exitpop.*. -# /exit_popup (easylist.txt: 3723) -/(.*/)?exit_popup -# /exchange_banner_ (easylist.txt: 3722) -/(.*/)?exchange_banner_ -# /excellence/ads/* (easylist.txt: 3721) -/(.*/)?excellence/ads/.* -# /event.ng/* (easylist.txt: 3720) -/(.*/)?event\.ng/.* -event.ng/.* -# /euads/* (easylist.txt: 3719) -/(.*/)?euads/.* -# /esi/ads/* (easylist.txt: 3717) -/(.*/)?esi/ads/.* -# /eshopoffer. (easylist.txt: 3716) -/(.*/)?eshopoffer\. -eshopoffer.*. -# /eros.htm (easylist.txt: 3715) -/(.*/)?eros\.htm -eros.htm*. -# /erobanner. (easylist.txt: 3714) -/(.*/)?erobanner\. -erobanner.*. -# /eroadvertorial3. (easylist.txt: 3713) -/(.*/)?eroadvertorial3\. -eroadvertorial3.*. -# /eroadvertorial2. (easylist.txt: 3712) -/(.*/)?eroadvertorial2\. -eroadvertorial2.*. -# /eroadvertising. (easylist.txt: 3711) -/(.*/)?eroadvertising\. -eroadvertising.*. -# /eroads. (easylist.txt: 3710) -/(.*/)?eroads\. -eroads.*. -# /eroad2. (easylist.txt: 3709) -/(.*/)?eroad2\. -eroad2.*. -# /eroad.php (easylist.txt: 3708) -/(.*/)?eroad\.php -eroad.php*. -# /ero_line_ (easylist.txt: 3707) -/(.*/)?ero_line_ -# /ero_hosted_ (easylist.txt: 3706) -/(.*/)?ero_hosted_ -# /ero.htm (easylist.txt: 3705) -/(.*/)?ero\.htm -ero.htm*. -# /ero-advertising. (easylist.txt: 3704) -/(.*/)?ero-advertising\. -ero-advertising.*. -# /ero-ads_ (easylist.txt: 3703) -/(.*/)?ero-ads_ -# /ero-ads- (easylist.txt: 3702) -/(.*/)?ero-ads- -ero-ads-*. -# /ero-1. (easylist.txt: 3701) -/(.*/)?ero-1\. -ero-1.*. -# /ept_in.php? (easylist.txt: 3700) -/(.*/)?ept_in\.php\? -# /eporner-banner- (easylist.txt: 3699) -/(.*/)?eporner-banner- -eporner-banner-*. -# /eplanningv4. (easylist.txt: 3698) -/(.*/)?eplanningv4\. -eplanningv4.*. -# /eng/ads/* (easylist.txt: 3697) -/(.*/)?eng/ads/.* -# /en/ads/* (easylist.txt: 3696) -/(.*/)?en/ads/.* -# /ems/ads. (easylist.txt: 3695) -/(.*/)?ems/ads\. -# /EmreAds. (easylist.txt: 3694) -/(.*/)?EmreAds\. -EmreAds.*. -# /emediatead. (easylist.txt: 3693) -/(.*/)?emediatead\. -emediatead.*. -# /embed_ad. (easylist.txt: 3692) -/(.*/)?embed_ad\. -# /emailads/* (easylist.txt: 3691) -/(.*/)?emailads/.* -# /eht.js?site_ (easylist.txt: 3690) -/(.*/)?eht\.js\?site_ -# /editable/ads/* (easylist.txt: 3689) -/(.*/)?editable/ads/.* -# /ecom/magnet. (easylist.txt: 3688) -/(.*/)?ecom/magnet\. -# /eco_ads/* (easylist.txt: 3687) -/(.*/)?eco_ads/.* -# /ebayad. (easylist.txt: 3686) -/(.*/)?ebayad\. -ebayad.*. -# /ebay_ads/* (easylist.txt: 3685) -/(.*/)?ebay_ads/.* -# /easyazon- (easylist.txt: 3684) -/(.*/)?easyazon- -easyazon-*. -# /easyadstrack. (easylist.txt: 3683) -/(.*/)?easyadstrack\. -easyadstrack.*. -# /easyads/* (easylist.txt: 3682) -/(.*/)?easyads/.* -# /easyads. (easylist.txt: 3681) -/(.*/)?easyads\. -easyads.*. -# /eas_tag.1.0.js (easylist.txt: 3680) -/(.*/)?eas_tag\.1\.0\.js -# /eas_fif. (easylist.txt: 3679) -/(.*/)?eas_fif\. -# /eas?cu=*;ord= (easylist.txt: 3678) -/(.*/)?eas\?cu=.*;ord= -# /eas?cu=*;cre= (easylist.txt: 3677) -/(.*/)?eas\?cu=.*;cre= -# /eas?camp=*;cre= (easylist.txt: 3676) -/(.*/)?eas\?camp=.*;cre= -# /eas?*^easformat= (easylist.txt: 3675) -/(.*/)?eas\?.*[^\w%.-]easformat= -# /eas-fif.htm (easylist.txt: 3674) -/(.*/)?eas-fif\.htm -eas-fif.htm*. -# /e-vertising/* (easylist.txt: 3673) -/(.*/)?e-vertising/.* -# /e-advertising/* (easylist.txt: 3672) -/(.*/)?e-advertising/.* -# /dynbanner/flash/* (easylist.txt: 3671) -/(.*/)?dynbanner/flash/.* -# /dynanews/ad- (easylist.txt: 3670) -/(.*/)?dynanews/ad- -# /dynamicvideoad? (easylist.txt: 3669) -/(.*/)?dynamicvideoad\? -# /dynamiccsad? (easylist.txt: 3668) -/(.*/)?dynamiccsad\? -# /dynamicad? (easylist.txt: 3667) -/(.*/)?dynamicad\? -# /DynamicAd/* (easylist.txt: 3666) -/(.*/)?DynamicAd/.* -# /dynamic_ads/* (easylist.txt: 3665) -/(.*/)?dynamic_ads/.* -# /dynamic/ads/* (easylist.txt: 3664) -/(.*/)?dynamic/ads/.* -# /dynamic-ad- (easylist.txt: 3663) -/(.*/)?dynamic-ad- -dynamic-ad-*. -# /dyn_banners_ (easylist.txt: 3662) -/(.*/)?dyn_banners_ -# /dyn_banner. (easylist.txt: 3661) -/(.*/)?dyn_banner\. -# /dxd/ads/* (easylist.txt: 3660) -/(.*/)?dxd/ads/.* -# /dtmads/* (easylist.txt: 3659) -/(.*/)?dtmads/.* -# /dtim300x250.$script (easylist.txt: 3658) -/(.*/)?dtim300x250\. -dtim300x250.*. -# /dtiadvert125x125. (easylist.txt: 3657) -/(.*/)?dtiadvert125x125\. -dtiadvert125x125.*. -# /dspads. (easylist.txt: 3656) -/(.*/)?dspads\. -dspads.*. -# /dsg/bnn/* (easylist.txt: 3655) -/(.*/)?dsg/bnn/.* -# /dropdown_ad. (easylist.txt: 3654) -/(.*/)?dropdown_ad\. -# /droelf.kit/a/* (easylist.txt: 3653) -/(.*/)?droelf\.kit/a/.* -droelf.kit/a/.* -# /drivingrevenue/* (easylist.txt: 3652) -/(.*/)?drivingrevenue/.* -# /driveragentad2. (easylist.txt: 3651) -/(.*/)?driveragentad2\. -driveragentad2.*. -# /driveragentad1. (easylist.txt: 3650) -/(.*/)?driveragentad1\. -driveragentad1.*. -# /drawad. (easylist.txt: 3649) -/(.*/)?drawad\. -drawad.*. -# /download/ads (easylist.txt: 3648) -/(.*/)?download/ads -# /download/ad/* (easylist.txt: 3647) -/(.*/)?download/ad/.* -# /download/ad. (easylist.txt: 3646) -/(.*/)?download/ad\. -# /downads. (easylist.txt: 3645) -/(.*/)?downads\. -downads.*. -# /doublepimp2.js (easylist.txt: 3644) -/(.*/)?doublepimp2\.js -doublepimp2.js*. -# /doubleclicktag. (easylist.txt: 3643) -/(.*/)?doubleclicktag\. -doubleclicktag.*. -# /doubleclickplugin. (easylist.txt: 3642) -/(.*/)?doubleclickplugin\. -doubleclickplugin.*. -# /doubleclickloader. (easylist.txt: 3641) -/(.*/)?doubleclickloader\. -doubleclickloader.*. -# /doubleclickinstreamad. (easylist.txt: 3640) -/(.*/)?doubleclickinstreamad\. -doubleclickinstreamad.*. -# /doubleclickcontainer. (easylist.txt: 3639) -/(.*/)?doubleclickcontainer\. -doubleclickcontainer.*. -# /doubleclickbannerad? (easylist.txt: 3638) -/(.*/)?doubleclickbannerad\? -# /doubleclickads? (easylist.txt: 3637) -/(.*/)?doubleclickads\? -# /doubleclickads/* (easylist.txt: 3636) -/(.*/)?doubleclickads/.* -# /doubleclickad. (easylist.txt: 3635) -/(.*/)?doubleclickad\. -doubleclickad.*. -# /doubleclick_ads/* (easylist.txt: 3634) -/(.*/)?doubleclick_ads/.* -# /doubleclick_ads. (easylist.txt: 3633) -/(.*/)?doubleclick_ads\. -# /doubleclick/iframe. (easylist.txt: 3632) -/(.*/)?doubleclick/iframe\. -# /doubleclick.swf (easylist.txt: 3631) -/(.*/)?doubleclick\.swf -doubleclick.swf*. -# /doubleclick.php (easylist.txt: 3630) -/(.*/)?doubleclick\.php -doubleclick.php*. -# /doubleclick.js (easylist.txt: 3629) -/(.*/)?doubleclick\.js -doubleclick.js*. -# /doubleclick.aspx (easylist.txt: 3628) -/(.*/)?doubleclick\.aspx -doubleclick.aspx*. -# /doors/ads/* (easylist.txt: 3627) -/(.*/)?doors/ads/.* -# /door/ads/* (easylist.txt: 3626) -/(.*/)?door/ads/.* -# /domainads/* (easylist.txt: 3625) -/(.*/)?domainads/.* -# /dnsads. (easylist.txt: 3624) -/(.*/)?dnsads\. -dnsads.*. -# /dns_ad/* (easylist.txt: 3623) -/(.*/)?dns_ad/.* -# /dne_ad. (easylist.txt: 3622) -/(.*/)?dne_ad\. -# /dmn-advert. (easylist.txt: 3621) -/(.*/)?dmn-advert\. -dmn-advert.*. -# /dlfeatads. (easylist.txt: 3620) -/(.*/)?dlfeatads\. -dlfeatads.*. -# /divad/* (easylist.txt: 3619) -/(.*/)?divad/.* -# /div-ads. (easylist.txt: 3618) -/(.*/)?div-ads\. -div-ads.*. -# /displaybanner/* (easylist.txt: 3617) -/(.*/)?displaybanner/.* -# /displayadsiframe. (easylist.txt: 3616) -/(.*/)?displayadsiframe\. -displayadsiframe.*. -# /displayads3. (easylist.txt: 3615) -/(.*/)?displayads3\. -displayads3.*. -# /displayads2. (easylist.txt: 3614) -/(.*/)?displayads2\. -displayads2.*. -# /displayads1. (easylist.txt: 3613) -/(.*/)?displayads1\. -displayads1.*. -# /displayads/* (easylist.txt: 3612) -/(.*/)?displayads/.* -# /displayads. (easylist.txt: 3611) -/(.*/)?displayads\. -displayads.*. -# /displayadleader. (easylist.txt: 3610) -/(.*/)?displayadleader\. -displayadleader.*. -# /displayadiframe. (easylist.txt: 3609) -/(.*/)?displayadiframe\. -displayadiframe.*. -# /displayadbanner_ (easylist.txt: 3608) -/(.*/)?displayadbanner_ -# /displayad? (easylist.txt: 3607) -/(.*/)?displayad\? -# /displayad/* (easylist.txt: 3606) -/(.*/)?displayad/.* -# /displayad. (easylist.txt: 3605) -/(.*/)?displayad\. -displayad.*. -# /display_ad (easylist.txt: 3604) -/(.*/)?display_ad -# /display?ad_ (easylist.txt: 3603) -/(.*/)?display\?ad_ -# /display.ad. (easylist.txt: 3602) -/(.*/)?display\.ad\. -display.ad.*. -# /display-ads/* (easylist.txt: 3601) -/(.*/)?display-ads/.* -# /display-ads- (easylist.txt: 3600) -/(.*/)?display-ads- -display-ads-*. -# /display-ad/* (easylist.txt: 3599) -/(.*/)?display-ad/.* -# /DispAd_ (easylist.txt: 3598) -/(.*/)?DispAd_ -# /discuss_ad/* (easylist.txt: 3597) -/(.*/)?discuss_ad/.* -# /directrev. (easylist.txt: 3596) -/(.*/)?directrev\. -directrev.*. -# /directadvert. (easylist.txt: 3595) -/(.*/)?directadvert\. -directadvert.*. -# /directads. (easylist.txt: 3594) -/(.*/)?directads\. -directads.*. -# /direct_ads. (easylist.txt: 3593) -/(.*/)?direct_ads\. -# /dinclinx.com/* (easylist.txt: 3592) -/(.*/)?dinclinx\.com/.* -dinclinx.com/.* -# /digg_ads_ (easylist.txt: 3591) -/(.*/)?digg_ads_ -# /digg_ads. (easylist.txt: 3590) -/(.*/)?digg_ads\. -# /digest/ads. (easylist.txt: 3589) -/(.*/)?digest/ads\. -# /dig_ad. (easylist.txt: 3588) -/(.*/)?dig_ad\. -# /dif/?cid (easylist.txt: 3587) -/(.*/)?dif/\?cid -# /dictionary/ads/* (easylist.txt: 3586) -/(.*/)?dictionary/ads/.* -# /dfpsearchads. (easylist.txt: 3585) -/(.*/)?dfpsearchads\. -dfpsearchads.*. -# /dfpsds. (easylist.txt: 3584) -/(.*/)?dfpsds\. -dfpsds.*. -# /dfpads. (easylist.txt: 3583) -/(.*/)?dfpads\. -dfpads.*. -# /dfp_delivery.js (easylist.txt: 3582) -/(.*/)?dfp_delivery\.js -# /dfp_ads/* (easylist.txt: 3581) -/(.*/)?dfp_ads/.* -# /dfp/jquery. (easylist.txt: 3580) -/(.*/)?dfp/jquery\. -# /dfp/head/* (easylist.txt: 3579) -/(.*/)?dfp/head/.* -# /dfp/dc.js (easylist.txt: 3578) -/(.*/)?dfp/dc\.js -# /dfp/blocks/* (easylist.txt: 3577) -/(.*/)?dfp/blocks/.* -# /dfp/async. (easylist.txt: 3576) -/(.*/)?dfp/async\. -# /dfp.js (easylist.txt: 3575) -/(.*/)?dfp\.js -dfp.js*. -# /dfp-custom/* (easylist.txt: 3574) -/(.*/)?dfp-custom/.* -# /devicead/* (easylist.txt: 3573) -/(.*/)?devicead/.* -# /develop/ads_ (easylist.txt: 3572) -/(.*/)?develop/ads_ -# /design/ads/* (easylist.txt: 3571) -/(.*/)?design/ads/.* -# /descpopup.js (easylist.txt: 3570) -/(.*/)?descpopup\.js -descpopup.js*. -# /DemoAd. (easylist.txt: 3569) -/(.*/)?DemoAd\. -DemoAd.*. -# /demo/ads/* (easylist.txt: 3568) -/(.*/)?demo/ads/.* -# /delivery_ads/* (easylist.txt: 3567) -/(.*/)?delivery_ads/.* -# /delivery/vbafr.php (easylist.txt: 3566) -/(.*/)?delivery/vbafr\.php -# /delivery/spc. (easylist.txt: 3565) -/(.*/)?delivery/spc\. -# /delivery/lg. (easylist.txt: 3564) -/(.*/)?delivery/lg\. -# /delivery/fl. (easylist.txt: 3563) -/(.*/)?delivery/fl\. -# /delivery/fc. (easylist.txt: 3562) -/(.*/)?delivery/fc\. -# /delivery/avw. (easylist.txt: 3561) -/(.*/)?delivery/avw\. -# /delivery/apu.php (easylist.txt: 3560) -/(.*/)?delivery/apu\.php -# /delivery/al.php (easylist.txt: 3559) -/(.*/)?delivery/al\.php -# /delivery/ag. (easylist.txt: 3558) -/(.*/)?delivery/ag\. -# /delivery/afr. (easylist.txt: 3557) -/(.*/)?delivery/afr\. -# /delivery/*?advplaces= (easylist.txt: 3556) -/(.*/)?delivery/.*\?advplaces= -# /delivery.php?rnd= (easylist.txt: 3555) -/(.*/)?delivery\.php\?rnd= -# /delivery.php?pool_id= (easylist.txt: 3554) -/(.*/)?delivery\.php\?pool_id= -# /delivery.ads. (easylist.txt: 3553) -/(.*/)?delivery\.ads\. -delivery.ads.*. -# /deliversds. (easylist.txt: 3552) -/(.*/)?deliversds\. -deliversds.*. -# /deliversd/* (easylist.txt: 3551) -/(.*/)?deliversd/.* -# /deliverjs.nmi? (easylist.txt: 3550) -/(.*/)?deliverjs\.nmi\? -# /deliverads. (easylist.txt: 3549) -/(.*/)?deliverads\. -deliverads.*. -# /deliverad/* (easylist.txt: 3548) -/(.*/)?deliverad/.* -# /deliver.nmi? (easylist.txt: 3547) -/(.*/)?deliver\.nmi\? -# /deliver.jphp? (easylist.txt: 3546) -/(.*/)?deliver\.jphp\? -# /delayedad. (easylist.txt: 3545) -/(.*/)?delayedad\. -delayedad.*. -# /defersds. (easylist.txt: 3544) -/(.*/)?defersds\. -defersds.*. -# /deferads. (easylist.txt: 3543) -/(.*/)?deferads\. -deferads.*. -# /defer_ads. (easylist.txt: 3542) -/(.*/)?defer_ads\. -# /defaults_ads/* (easylist.txt: 3541) -/(.*/)?defaults_ads/.* -# /defaultad? (easylist.txt: 3540) -/(.*/)?defaultad\? -# /default_oas. (easylist.txt: 3539) -/(.*/)?default_oas\. -# /default_adv. (easylist.txt: 3538) -/(.*/)?default_adv\. -# /default_ads/* (easylist.txt: 3537) -/(.*/)?default_ads/.* -# /default/ads/* (easylist.txt: 3536) -/(.*/)?default/ads/.* -# /default-adv/* (easylist.txt: 3535) -/(.*/)?default-adv/.* -# /de/ads/* (easylist.txt: 3534) -/(.*/)?de/ads/.* -# /ddlads/* (easylist.txt: 3533) -/(.*/)?ddlads/.* -# /dcloadads/* (easylist.txt: 3532) -/(.*/)?dcloadads/.* -# /dclk_ads_ (easylist.txt: 3531) -/(.*/)?dclk_ads_ -# /dclk_ads. (easylist.txt: 3530) -/(.*/)?dclk_ads\. -# /dclk/dfp/* (easylist.txt: 3529) -/(.*/)?dclk/dfp/.* -# /dblclickad. (easylist.txt: 3528) -/(.*/)?dblclickad\. -dblclickad.*. -# /dblclick. (easylist.txt: 3527) -/(.*/)?dblclick\. -dblclick.*. -# /dateads. (easylist.txt: 3526) -/(.*/)?dateads\. -dateads.*. -# /data/init?site_id= (easylist.txt: 3525) -/(.*/)?data/init\?site_id= -# /data/init2?site_id= (easylist.txt: 3524) -/(.*/)?data/init2\?site_id= -# /data/ads/* (easylist.txt: 3523) -/(.*/)?data/ads/.* -# /dartfunctions. (easylist.txt: 3522) -/(.*/)?dartfunctions\. -dartfunctions.*. -# /dartcall. (easylist.txt: 3521) -/(.*/)?dartcall\. -dartcall.*. -# /dartads. (easylist.txt: 3520) -/(.*/)?dartads\. -dartads.*. -# /dartadengine2. (easylist.txt: 3519) -/(.*/)?dartadengine2\. -dartadengine2.*. -# /dartadengine. (easylist.txt: 3518) -/(.*/)?dartadengine\. -dartadengine.*. -# /dartad/* (easylist.txt: 3517) -/(.*/)?dartad/.* -# /dart_enhancements/* (easylist.txt: 3516) -/(.*/)?dart_enhancements/.* -# /dart_ads/* (easylist.txt: 3515) -/(.*/)?dart_ads/.* -# /dart_ads. (easylist.txt: 3514) -/(.*/)?dart_ads\. -# /daily/ads/* (easylist.txt: 3513) -/(.*/)?daily/ads/.* -# /d/ads/* (easylist.txt: 3512) -/(.*/)?d/ads/.* -# /cwggoogleadshow. (easylist.txt: 3511) -/(.*/)?cwggoogleadshow\. -cwggoogleadshow.*. -# /cvs/ads/* (easylist.txt: 3510) -/(.*/)?cvs/ads/.* -# /cutead. (easylist.txt: 3509) -/(.*/)?cutead\. -cutead.*. -# /customerad_ (easylist.txt: 3508) -/(.*/)?customerad_ -# /customcontrols/ads/* (easylist.txt: 3507) -/(.*/)?customcontrols/ads/.* -# /customadsense. (easylist.txt: 3506) -/(.*/)?customadsense\. -customadsense.*. -# /customads/* (easylist.txt: 3505) -/(.*/)?customads/.* -# /customadmode. (easylist.txt: 3504) -/(.*/)?customadmode\. -customadmode.*. -# /customad. (easylist.txt: 3503) -/(.*/)?customad\. -customad.*. -# /custom_ads/* (easylist.txt: 3502) -/(.*/)?custom_ads/.* -# /custom11x5ad. (easylist.txt: 3501) -/(.*/)?custom11x5ad\. -custom11x5ad.*. -# /custom/doubleclick/* (easylist.txt: 3500) -/(.*/)?custom/doubleclick/.* -# /custom/ads (easylist.txt: 3499) -/(.*/)?custom/ads -# /custads/* (easylist.txt: 3498) -/(.*/)?custads/.* -# /curveball/ads/* (easylist.txt: 3497) -/(.*/)?curveball/ads/.* -# /curlad. (easylist.txt: 3496) -/(.*/)?curlad\. -curlad.*. -# /cubeads_ (easylist.txt: 3495) -/(.*/)?cubeads_ -# /cubeads/* (easylist.txt: 3494) -/(.*/)?cubeads/.* -# /cubead. (easylist.txt: 3493) -/(.*/)?cubead\. -cubead.*. -# /cube_ads/* (easylist.txt: 3492) -/(.*/)?cube_ads/.* -# /ctamlive160x160. (easylist.txt: 3491) -/(.*/)?ctamlive160x160\. -ctamlive160x160.*. -# /cssjs/ads/* (easylist.txt: 3490) -/(.*/)?cssjs/ads/.* -# /css/adv. (easylist.txt: 3489) -/(.*/)?css/adv\. -# /css/adsense (easylist.txt: 3488) -/(.*/)?css/adsense -# /css/ads. (easylist.txt: 3487) -/(.*/)?css/ads\. -# /css/ads- (easylist.txt: 3486) -/(.*/)?css/ads- -# /css/ad. (easylist.txt: 3485) -/(.*/)?css/ad\. -# /csp/ads? (easylist.txt: 3484) -/(.*/)?csp/ads\? -# /crossoverad- (easylist.txt: 3483) -/(.*/)?crossoverad- -crossoverad-*. -# /cramitin/ads_ (easylist.txt: 3482) -/(.*/)?cramitin/ads_ -# /cpxads. (easylist.txt: 3481) -/(.*/)?cpxads\. -cpxads.*. -# /cpx_ads. (easylist.txt: 3480) -/(.*/)?cpx_ads\. -# /cpx-ad. (easylist.txt: 3479) -/(.*/)?cpx-ad\. -cpx-ad.*. -# /cpmrect. (easylist.txt: 3478) -/(.*/)?cpmrect\. -cpmrect.*. -# /cpmcampaigns/* (easylist.txt: 3477) -/(.*/)?cpmcampaigns/.* -# /cpmbanner. (easylist.txt: 3476) -/(.*/)?cpmbanner\. -cpmbanner.*. -# /cpm_ad. (easylist.txt: 3475) -/(.*/)?cpm_ad\. -# /cpm728. (easylist.txt: 3474) -/(.*/)?cpm728\. -cpm728.*. -# /cpm160. (easylist.txt: 3473) -/(.*/)?cpm160\. -cpm160.*. -# /coxads/* (easylist.txt: 3472) -/(.*/)?coxads/.* -# /country_ad. (easylist.txt: 3471) -/(.*/)?country_ad\. -# /cornersmall.swf (easylist.txt: 3470) -/(.*/)?cornersmall\.swf -cornersmall.swf*. -# /cornerbig.swf (easylist.txt: 3469) -/(.*/)?cornerbig\.swf -cornerbig.swf*. -# /corner_ads/* (easylist.txt: 3468) -/(.*/)?corner_ads/.* -# /corner-ad. (easylist.txt: 3467) -/(.*/)?corner-ad\. -corner-ad.*. -# /coread/* (easylist.txt: 3466) -/(.*/)?coread/.* -# /core/ads/* (easylist.txt: 3465) -/(.*/)?core/ads/.* -# /core/ad/* (easylist.txt: 3464) -/(.*/)?core/ad/.* -# /core-ads- (easylist.txt: 3463) -/(.*/)?core-ads- -core-ads-*. -# /convertjsontoad. (easylist.txt: 3462) -/(.*/)?convertjsontoad\. -convertjsontoad.*. -# /controllerimg/adv/* (easylist.txt: 3461) -/(.*/)?controllerimg/adv/.* -# /controller/ads/* (easylist.txt: 3460) -/(.*/)?controller/ads/.* -# /contribute_ad. (easylist.txt: 3459) -/(.*/)?contribute_ad\. -# /contpop.js| (easylist.txt: 3458) -/(.*/)?contpop\.js$ -contpop.js -# /contextualad. (easylist.txt: 3457) -/(.*/)?contextualad\. -contextualad.*. -# /contextads. (easylist.txt: 3456) -/(.*/)?contextads\. -contextads.*. -# /contextad. (easylist.txt: 3455) -/(.*/)?contextad\. -contextad.*. -# /context_ads. (easylist.txt: 3454) -/(.*/)?context_ads\. -# /context_ad/* (easylist.txt: 3453) -/(.*/)?context_ad/.* -# /contentad| (easylist.txt: 3452) -/(.*/)?contentad$ -# /contentadxxl. (easylist.txt: 3451) -/(.*/)?contentadxxl\. -contentadxxl.*. -# /contentadvert1. (easylist.txt: 3450) -/(.*/)?contentadvert1\. -contentadvert1.*. -# /contentAdServlet? (easylist.txt: 3449) -/(.*/)?contentAdServlet\? -# /contentad_ (easylist.txt: 3448) -/(.*/)?contentad_ -# /contentad/* (easylist.txt: 3447) -/(.*/)?contentad/.* -# /contentAd. (easylist.txt: 3446) -/(.*/)?contentAd\. -contentAd.*. -# /content_ad_ (easylist.txt: 3445) -/(.*/)?content_ad_ -# /content_ad. (easylist.txt: 3444) -/(.*/)?content_ad\. -# /content/adv/* (easylist.txt: 3443) -/(.*/)?content/adv/.* -# /content/ads/* (easylist.txt: 3442) -/(.*/)?content/ads/.* -# /content/ad_ (easylist.txt: 3441) -/(.*/)?content/ad_ -# /content/ad/* (easylist.txt: 3440) -/(.*/)?content/ad/.* -# /content-ads. (easylist.txt: 3439) -/(.*/)?content-ads\. -content-ads.*. -# /contaxe_ (easylist.txt: 3438) -/(.*/)?contaxe_ -# /contads. (easylist.txt: 3437) -/(.*/)?contads\. -contads.*. -# /cont-adv. (easylist.txt: 3436) -/(.*/)?cont-adv\. -cont-adv.*. -# /configspace/ads/* (easylist.txt: 3435) -/(.*/)?configspace/ads/.* -# /conad_ (easylist.txt: 3434) -/(.*/)?conad_ -# /conad. (easylist.txt: 3433) -/(.*/)?conad\. -conad.*. -# /components/ads_ (easylist.txt: 3432) -/(.*/)?components/ads_ -# /components/ads/* (easylist.txt: 3431) -/(.*/)?components/ads/.* -# /compban.html? (easylist.txt: 3430) -/(.*/)?compban\.html\? -# /companionAdFunc. (easylist.txt: 3429) -/(.*/)?companionAdFunc\. -companionAdFunc.*. -# /companion_ads. (easylist.txt: 3428) -/(.*/)?companion_ads\. -# /companion_ad. (easylist.txt: 3427) -/(.*/)?companion_ad\. -# /commspace_ad. (easylist.txt: 3426) -/(.*/)?commspace_ad\. -# /commons/ad/* (easylist.txt: 3425) -/(.*/)?commons/ad/.* -# /common_ad. (easylist.txt: 3424) -/(.*/)?common_ad\. -# /common/results.htm?block=*[colorAdSeparator]$subdocument,~third-party (easylist.txt: 3423) -/(.*/)?common/results\.htm\?block=.*\[colorAdSeparator\] -# /common/dart_wrapper_ (easylist.txt: 3422) -/(.*/)?common/dart_wrapper_ -# /common/adv_ (easylist.txt: 3421) -/(.*/)?common/adv_ -# /common/ads/* (easylist.txt: 3420) -/(.*/)?common/ads/.* -# /common/ad_ (easylist.txt: 3419) -/(.*/)?common/ad_ -# /common/ad/* (easylist.txt: 3418) -/(.*/)?common/ad/.* -# /common/ad. (easylist.txt: 3417) -/(.*/)?common/ad\. -# /common-ads/* (easylist.txt: 3416) -/(.*/)?common-ads/.* -# /commercial_top. (easylist.txt: 3415) -/(.*/)?commercial_top\. -# /commercial_horizontal. (easylist.txt: 3414) -/(.*/)?commercial_horizontal\. -# /comment-ad. (easylist.txt: 3413) -/(.*/)?comment-ad\. -comment-ad.*. -# /comment-ad- (easylist.txt: 3412) -/(.*/)?comment-ad- -comment-ad-*. -# /combo?darla/* (easylist.txt: 3411) -/(.*/)?combo\?darla/.* -# /com/ads/* (easylist.txt: 3410) -/(.*/)?com/ads/.* -# /columnads/* (easylist.txt: 3409) -/(.*/)?columnads/.* -# /columnadcounter. (easylist.txt: 3408) -/(.*/)?columnadcounter\. -columnadcounter.*. -# /colorscheme/ads/* (easylist.txt: 3407) -/(.*/)?colorscheme/ads/.* -# /collisionadmarker. (easylist.txt: 3406) -/(.*/)?collisionadmarker\. -collisionadmarker.*. -# /coldseal_ad. (easylist.txt: 3405) -/(.*/)?coldseal_ad\. -# /codaadconfig. (easylist.txt: 3404) -/(.*/)?codaadconfig\. -codaadconfig.*. -# /cnxad- (easylist.txt: 3403) -/(.*/)?cnxad- -cnxad-*. -# /cnnslads. (easylist.txt: 3402) -/(.*/)?cnnslads\. -cnnslads.*. -# /cnads.js (easylist.txt: 3401) -/(.*/)?cnads\.js -cnads.js*. -# /cn-advert. (easylist.txt: 3400) -/(.*/)?cn-advert\. -cn-advert.*. -# /cms/js/ad_ (easylist.txt: 3399) -/(.*/)?cms/js/ad_ -# /cms/ads/* (easylist.txt: 3398) -/(.*/)?cms/ads/.* -# /cm/ads/* (easylist.txt: 3397) -/(.*/)?cm/ads/.* -# /clkads. (easylist.txt: 3396) -/(.*/)?clkads\. -clkads.*. -# /clients/ads/* (easylist.txt: 3395) -/(.*/)?clients/ads/.* -# /clickunder. (easylist.txt: 3394) -/(.*/)?clickunder\. -clickunder.*. -# /clicksor. (easylist.txt: 3393) -/(.*/)?clicksor\. -clicksor.*. -# /clickboothad. (easylist.txt: 3392) -/(.*/)?clickboothad\. -clickboothad.*. -# /click/creative/* (easylist.txt: 3391) -/(.*/)?click/creative/.* -# /click/ads_ (easylist.txt: 3390) -/(.*/)?click/ads_ -# /classifieds/banners/* (easylist.txt: 3389) -/(.*/)?classifieds/banners/.* -# /ClassAds/* (easylist.txt: 3388) -/(.*/)?ClassAds/.* -# /clarityray.js (easylist.txt: 3387) -/(.*/)?clarityray\.js -clarityray.js*. -# /ck.php?nids (easylist.txt: 3386) -/(.*/)?ck\.php\?nids -# /cjadsprite. (easylist.txt: 3385) -/(.*/)?cjadsprite\. -cjadsprite.*. -# /circads. (easylist.txt: 3384) -/(.*/)?circads\. -circads.*. -# /ciaad. (easylist.txt: 3383) -/(.*/)?ciaad\. -ciaad.*. -# /chrome-ad. (easylist.txt: 3382) -/(.*/)?chrome-ad\. -chrome-ad.*. -# /chitika-ad? (easylist.txt: 3381) -/(.*/)?chitika-ad\? -# /chinaadclient. (easylist.txt: 3380) -/(.*/)?chinaadclient\. -chinaadclient.*. -# /checkm8header_ (easylist.txt: 3379) -/(.*/)?checkm8header_ -# /checkm8footer_ (easylist.txt: 3378) -/(.*/)?checkm8footer_ -# /channelblockads. (easylist.txt: 3377) -/(.*/)?channelblockads\. -channelblockads.*. -# /cgi/ad_ (easylist.txt: 3376) -/(.*/)?cgi/ad_ -# /cgi-exe/ad. (easylist.txt: 3375) -/(.*/)?cgi-exe/ad\. -# /cgi-bin/ads_ (easylist.txt: 3374) -/(.*/)?cgi-bin/ads_ -# /cgi-bin/ads/* (easylist.txt: 3373) -/(.*/)?cgi-bin/ads/.* -# /cgi-bin/ads. (easylist.txt: 3372) -/(.*/)?cgi-bin/ads\. -# /cgi-bin/ad/* (easylist.txt: 3371) -/(.*/)?cgi-bin/ad/.* -# /ceoads/* (easylist.txt: 3370) -/(.*/)?ceoads/.* -# /centralresource/ad_ (easylist.txt: 3369) -/(.*/)?centralresource/ad_ -# /central/ads/* (easylist.txt: 3368) -/(.*/)?central/ads/.* -# /centerads. (easylist.txt: 3367) -/(.*/)?centerads\. -centerads.*. -# /cdn.ads. (easylist.txt: 3366) -/(.*/)?cdn\.ads\. -cdn.ads.*. -# /cci-ads- (easylist.txt: 3365) -/(.*/)?cci-ads- -cci-ads-*. -# /cb.php?sub$script,third-party (easylist.txt: 3364) -/(.*/)?cb\.php\?sub -# /catfishads/* (easylist.txt: 3363) -/(.*/)?catfishads/.* -# /category-sponsorship/* (easylist.txt: 3362) -/(.*/)?category-sponsorship/.* -# /cashad2. (easylist.txt: 3361) -/(.*/)?cashad2\. -cashad2.*. -# /cashad. (easylist.txt: 3360) -/(.*/)?cashad\. -cashad.*. -# /carsadtaggenerator.js (easylist.txt: 3359) -/(.*/)?carsadtaggenerator\.js -carsadtaggenerator.js*. -# /carbonads/* (easylist.txt: 3358) -/(.*/)?carbonads/.* -# /carbonads- (easylist.txt: 3357) -/(.*/)?carbonads- -carbonads-*. -# /campus/ads/* (easylist.txt: 3356) -/(.*/)?campus/ads/.* -# /campaign/advertiser_ (easylist.txt: 3355) -/(.*/)?campaign/advertiser_ -# /camfuzeads/* (easylist.txt: 3354) -/(.*/)?camfuzeads/.* -# /camaoAdsenseHomepage. (easylist.txt: 3353) -/(.*/)?camaoAdsenseHomepage\. -camaoAdsenseHomepage.*. -# /camaoadsense. (easylist.txt: 3352) -/(.*/)?camaoadsense\. -camaoadsense.*. -# /callAdserver? (easylist.txt: 3351) -/(.*/)?callAdserver\? -# /callads5. (easylist.txt: 3350) -/(.*/)?callads5\. -callads5.*. -# /call_ads/* (easylist.txt: 3349) -/(.*/)?call_ads/.* -# /call/pubj/* (easylist.txt: 3348) -/(.*/)?call/pubj/.* -# /call/pubif/* (easylist.txt: 3347) -/(.*/)?call/pubif/.* -# /calendar-ads/* (easylist.txt: 3346) -/(.*/)?calendar-ads/.* -# /cads-min.js (easylist.txt: 3345) -/(.*/)?cads-min\.js -cads-min.js*. -# /cache/ads_ (easylist.txt: 3344) -/(.*/)?cache/ads_ -# /bytemark_ad. (easylist.txt: 3343) -/(.*/)?bytemark_ad\. -# /buzz/ads/* (easylist.txt: 3342) -/(.*/)?buzz/ads/.* -# /buysellads. (easylist.txt: 3341) -/(.*/)?buysellads\. -buysellads.*. -# /buysellads- (easylist.txt: 3340) -/(.*/)?buysellads- -buysellads-*. -# /buyer/dyad/* (easylist.txt: 3339) -/(.*/)?buyer/dyad/.* -# /buyclicks/* (easylist.txt: 3338) -/(.*/)?buyclicks/.* -# /buyad. (easylist.txt: 3337) -/(.*/)?buyad\. -buyad.*. -# /buttonads/* (easylist.txt: 3336) -/(.*/)?buttonads/.* -# /buttonads. (easylist.txt: 3335) -/(.*/)?buttonads\. -buttonads.*. -# /buttonad/* (easylist.txt: 3334) -/(.*/)?buttonad/.* -# /button_ads/* (easylist.txt: 3333) -/(.*/)?button_ads/.* -# /butler.php?type= (easylist.txt: 3332) -/(.*/)?butler\.php\?type= -# /burt/adv_ (easylist.txt: 3331) -/(.*/)?burt/adv_ -# /buddyw_ad. (easylist.txt: 3330) -/(.*/)?buddyw_ad\. -# /bucketads. (easylist.txt: 3329) -/(.*/)?bucketads\. -bucketads.*. -# /btn_ad_ (easylist.txt: 3328) -/(.*/)?btn_ad_ -# /btmadsx. (easylist.txt: 3327) -/(.*/)?btmadsx\. -btmadsx.*. -# /btmads. (easylist.txt: 3326) -/(.*/)?btmads\. -btmads.*. -# /btbuckets/btb.js (easylist.txt: 3325) -/(.*/)?btbuckets/btb\.js -# /bserver/* (easylist.txt: 3324) -/(.*/)?bserver/.* -# /brightcovead. (easylist.txt: 3323) -/(.*/)?brightcovead\. -brightcovead.*. -# /breakad_ (easylist.txt: 3322) -/(.*/)?breakad_ -# /boxad_ (easylist.txt: 3321) -/(.*/)?boxad_ -# /boxad3. (easylist.txt: 3320) -/(.*/)?boxad3\. -boxad3.*. -# /boxad2. (easylist.txt: 3319) -/(.*/)?boxad2\. -boxad2.*. -# /boxad1. (easylist.txt: 3318) -/(.*/)?boxad1\. -boxad1.*. -# /boxad. (easylist.txt: 3317) -/(.*/)?boxad\. -boxad.*. -# /box_ads_ (easylist.txt: 3316) -/(.*/)?box_ads_ -# /box_ad_ (easylist.txt: 3315) -/(.*/)?box_ad_ -# /bottomsidead/* (easylist.txt: 3314) -/(.*/)?bottomsidead/.* -# /bottomads. (easylist.txt: 3313) -/(.*/)?bottomads\. -bottomads.*. -# /bottomad/* (easylist.txt: 3312) -/(.*/)?bottomad/.* -# /bottomad. (easylist.txt: 3311) -/(.*/)?bottomad\. -bottomad.*. -# /bottom_adv_ (easylist.txt: 3310) -/(.*/)?bottom_adv_ -# /bottom_adv. (easylist.txt: 3309) -/(.*/)?bottom_adv\. -# /bottom_ads. (easylist.txt: 3308) -/(.*/)?bottom_ads\. -# /bottom_ad. (easylist.txt: 3307) -/(.*/)?bottom_ad\. -# /bottom-advert- (easylist.txt: 3306) -/(.*/)?bottom-advert- -bottom-advert-*. -# /bottom-ads. (easylist.txt: 3305) -/(.*/)?bottom-ads\. -bottom-ads.*. -# /bottom-ad- (easylist.txt: 3304) -/(.*/)?bottom-ad- -bottom-ad-*. -# /boomad. (easylist.txt: 3303) -/(.*/)?boomad\. -boomad.*. -# /bookads2. (easylist.txt: 3302) -/(.*/)?bookads2\. -bookads2.*. -# /bookads. (easylist.txt: 3301) -/(.*/)?bookads\. -bookads.*. -# /bookad/* (easylist.txt: 3300) -/(.*/)?bookad/.* -# /BOM/Ads/* (easylist.txt: 3299) -/(.*/)?BOM/Ads/.* -# /bodyads/* (easylist.txt: 3298) -/(.*/)?bodyads/.* -# /bnrsrv. (easylist.txt: 3297) -/(.*/)?bnrsrv\. -bnrsrv.*. -# /bnrimg. (easylist.txt: 3296) -/(.*/)?bnrimg\. -bnrimg.*. -# /bnrad/* (easylist.txt: 3295) -/(.*/)?bnrad/.* -# /bnr_show.php?id=$script (easylist.txt: 3294) -/(.*/)?bnr_show\.php\?id= -# /bnr.php? (easylist.txt: 3293) -/(.*/)?bnr\.php\? -# /bmndoubleclickad. (easylist.txt: 3292) -/(.*/)?bmndoubleclickad\. -bmndoubleclickad.*. -# /blogoas- (easylist.txt: 3291) -/(.*/)?blogoas- -blogoas-*. -# /bloggerex. (easylist.txt: 3290) -/(.*/)?bloggerex\. -bloggerex.*. -# /blogadsbg. (easylist.txt: 3289) -/(.*/)?blogadsbg\. -blogadsbg.*. -# /blogads_ (easylist.txt: 3288) -/(.*/)?blogads_ -# /blogads3/* (easylist.txt: 3287) -/(.*/)?blogads3/.* -# /blogads2_ (easylist.txt: 3286) -/(.*/)?blogads2_ -# /blogads/* (easylist.txt: 3285) -/(.*/)?blogads/.* -# /blogads. (easylist.txt: 3284) -/(.*/)?blogads\. -blogads.*. -# /blogads- (easylist.txt: 3283) -/(.*/)?blogads- -blogads-*. -# /blogad_ (easylist.txt: 3282) -/(.*/)?blogad_ -# /blogad02. (easylist.txt: 3281) -/(.*/)?blogad02\. -blogad02.*. -# /blogad. (easylist.txt: 3280) -/(.*/)?blogad\. -blogad.*. -# /blog_ads/* (easylist.txt: 3279) -/(.*/)?blog_ads/.* -# /blog_ad? (easylist.txt: 3278) -/(.*/)?blog_ad\? -# /blog/ads/* (easylist.txt: 3277) -/(.*/)?blog/ads/.* -# /blog-ad- (easylist.txt: 3276) -/(.*/)?blog-ad- -blog-ad-*. -# /blocks/ads/* (easylist.txt: 3275) -/(.*/)?blocks/ads/.* -# /blockad_ (easylist.txt: 3274) -/(.*/)?blockad_ -# /bkgrndads/* (easylist.txt: 3273) -/(.*/)?bkgrndads/.* -# /bizad. (easylist.txt: 3272) -/(.*/)?bizad\. -bizad.*. -# /binary/ad/* (easylist.txt: 3271) -/(.*/)?binary/ad/.* -# /bin/ads/* (easylist.txt: 3270) -/(.*/)?bin/ads/.* -# /bigtopl.swf (easylist.txt: 3269) -/(.*/)?bigtopl\.swf -bigtopl.swf*. -# /bigboxad. (easylist.txt: 3268) -/(.*/)?bigboxad\. -bigboxad.*. -# /bigads/* (easylist.txt: 3267) -/(.*/)?bigads/.* -# /bigad_ (easylist.txt: 3266) -/(.*/)?bigad_ -# /bigad. (easylist.txt: 3265) -/(.*/)?bigad\. -bigad.*. -# /bi_affiliate.js (easylist.txt: 3264) -/(.*/)?bi_affiliate\.js -# /bgads/* (easylist.txt: 3263) -/(.*/)?bgads/.* -# /bg_ads_ (easylist.txt: 3262) -/(.*/)?bg_ads_ -# /bg/ads/* (easylist.txt: 3261) -/(.*/)?bg/ads/.* -# /bg-advert- (easylist.txt: 3260) -/(.*/)?bg-advert- -bg-advert-*. -# /bftv/ads/* (easylist.txt: 3259) -/(.*/)?bftv/ads/.* -# /betrad.js (easylist.txt: 3258) -/(.*/)?betrad\.js -betrad.js*. -# /beta-ad. (easylist.txt: 3257) -/(.*/)?beta-ad\. -beta-ad.*. -# /behaviorads/* (easylist.txt: 3256) -/(.*/)?behaviorads/.* -# /beacon/ad/* (easylist.txt: 3255) -/(.*/)?beacon/ad/.* -# /bdcustomadsense- (easylist.txt: 3254) -/(.*/)?bdcustomadsense- -bdcustomadsense-*. -# /bckgrnd_ad. (easylist.txt: 3253) -/(.*/)?bckgrnd_ad\. -# /bbad9. (easylist.txt: 3252) -/(.*/)?bbad9\. -bbad9.*. -# /bbad8. (easylist.txt: 3251) -/(.*/)?bbad8\. -bbad8.*. -# /bbad7. (easylist.txt: 3250) -/(.*/)?bbad7\. -bbad7.*. -# /bbad6. (easylist.txt: 3249) -/(.*/)?bbad6\. -bbad6.*. -# /bbad5. (easylist.txt: 3248) -/(.*/)?bbad5\. -bbad5.*. -# /bbad4. (easylist.txt: 3247) -/(.*/)?bbad4\. -bbad4.*. -# /bbad3. (easylist.txt: 3246) -/(.*/)?bbad3\. -bbad3.*. -# /bbad2. (easylist.txt: 3245) -/(.*/)?bbad2\. -bbad2.*. -# /bbad10. (easylist.txt: 3244) -/(.*/)?bbad10\. -bbad10.*. -# /bbad1. (easylist.txt: 3243) -/(.*/)?bbad1\. -bbad1.*. -# /bbad. (easylist.txt: 3242) -/(.*/)?bbad\. -bbad.*. -# /basic/ad/* (easylist.txt: 3241) -/(.*/)?basic/ad/.* -# /baselinead. (easylist.txt: 3240) -/(.*/)?baselinead\. -baselinead.*. -# /baseAd. (easylist.txt: 3239) -/(.*/)?baseAd\. -baseAd.*. -# /bar-ad. (easylist.txt: 3238) -/(.*/)?bar-ad\. -bar-ad.*. -# /bansrc/* (easylist.txt: 3237) -/(.*/)?bansrc/.* -# /bannery/*?banner= (easylist.txt: 3236) -/(.*/)?bannery/.*\?banner= -# /bannerwerbung/* (easylist.txt: 3235) -/(.*/)?bannerwerbung/.* -# /bannerview.*? (easylist.txt: 3234) -/(.*/)?bannerview\..*\? -bannerview.*./.*\? -# /bannersyndication. (easylist.txt: 3233) -/(.*/)?bannersyndication\. -bannersyndication.*. -# /bannerserver? (easylist.txt: 3232) -/(.*/)?bannerserver\? -# /bannerserver3| (easylist.txt: 3231) -/(.*/)?bannerserver3$ -# /bannerserver3/* (easylist.txt: 3230) -/(.*/)?bannerserver3/.* -# /bannerserver/* (easylist.txt: 3229) -/(.*/)?bannerserver/.* -# /bannerserve/* (easylist.txt: 3228) -/(.*/)?bannerserve/.* -# /bannerscript/* (easylist.txt: 3227) -/(.*/)?bannerscript/.* -# /bannersAds_ (easylist.txt: 3226) -/(.*/)?bannersAds_ -# /banners_rotation. (easylist.txt: 3225) -/(.*/)?banners_rotation\. -# /banners/promo/* (easylist.txt: 3224) -/(.*/)?banners/promo/.* -# /banners/googlebanner (easylist.txt: 3223) -/(.*/)?banners/googlebanner -# /banners/ffadult/* (easylist.txt: 3222) -/(.*/)?banners/ffadult/.* -# /banners/affiliate/* (easylist.txt: 3221) -/(.*/)?banners/affiliate/.* -# /banners/affil/* (easylist.txt: 3220) -/(.*/)?banners/affil/.* -# /banners/aff. (easylist.txt: 3219) -/(.*/)?banners/aff\. -# /banners/adv_ (easylist.txt: 3218) -/(.*/)?banners/adv_ -# /banners/adv/* (easylist.txt: 3217) -/(.*/)?banners/adv/.* -# /banners/ads/* (easylist.txt: 3216) -/(.*/)?banners/ads/.* -# /banners/ads. (easylist.txt: 3215) -/(.*/)?banners/ads\. -# /banners/ads- (easylist.txt: 3214) -/(.*/)?banners/ads- -# /banners/ad_ (easylist.txt: 3213) -/(.*/)?banners/ad_ -# /banners/ad11. (easylist.txt: 3212) -/(.*/)?banners/ad11\. -# /banners/ad10. (easylist.txt: 3211) -/(.*/)?banners/ad10\. -# /banners/ad/* (easylist.txt: 3210) -/(.*/)?banners/ad/.* -# /banners/728 (easylist.txt: 3209) -/(.*/)?banners/728 -# /banners/468 (easylist.txt: 3208) -/(.*/)?banners/468 -# /banners/460 (easylist.txt: 3207) -/(.*/)?banners/460 -# /banners/300 (easylist.txt: 3206) -/(.*/)?banners/300 -# /banners/160 (easylist.txt: 3205) -/(.*/)?banners/160 -# /banners.php?id (easylist.txt: 3204) -/(.*/)?banners\.php\?id -# /banners.cgi? (easylist.txt: 3203) -/(.*/)?banners\.cgi\? -# /banners.*&iframe= (easylist.txt: 3202) -/(.*/)?banners\..*&iframe= -banners.*./.*&iframe= -# /bannerrotation/* (easylist.txt: 3201) -/(.*/)?bannerrotation/.* -# /bannerrotation. (easylist.txt: 3200) -/(.*/)?bannerrotation\. -bannerrotation.*. -# /bannerrotater/* (easylist.txt: 3199) -/(.*/)?bannerrotater/.* -# /bannerrotate. (easylist.txt: 3198) -/(.*/)?bannerrotate\. -bannerrotate.*. -# /bannerpump. (easylist.txt: 3197) -/(.*/)?bannerpump\. -bannerpump.*. -# /bannermvt. (easylist.txt: 3196) -/(.*/)?bannermvt\. -bannermvt.*. -# /bannermanager/* (easylist.txt: 3195) -/(.*/)?bannermanager/.* -# /bannermaker/* (easylist.txt: 3194) -/(.*/)?bannermaker/.* -# /bannerjs.php? (easylist.txt: 3193) -/(.*/)?bannerjs\.php\? -# /bannerinc. (easylist.txt: 3192) -/(.*/)?bannerinc\. -bannerinc.*. -# /bannerframeopenads_ (easylist.txt: 3191) -/(.*/)?bannerframeopenads_ -# /bannerframeopenads. (easylist.txt: 3190) -/(.*/)?bannerframeopenads\. -bannerframeopenads.*. -# /bannerframe.*? (easylist.txt: 3189) -/(.*/)?bannerframe\..*\? -bannerframe.*./.*\? -# /bannerfile/ad_ (easylist.txt: 3188) -/(.*/)?bannerfile/ad_ -# /bannerfarm/* (easylist.txt: 3187) -/(.*/)?bannerfarm/.* -# /bannerfarm. (easylist.txt: 3186) -/(.*/)?bannerfarm\. -bannerfarm.*. -# /bannerexchange/* (easylist.txt: 3185) -/(.*/)?bannerexchange/.* -# /bannerdeliver.php (easylist.txt: 3184) -/(.*/)?bannerdeliver\.php -bannerdeliver.php*. -# /bannerconduit. (easylist.txt: 3183) -/(.*/)?bannerconduit\. -bannerconduit.*. -# /bannercode.php (easylist.txt: 3182) -/(.*/)?bannercode\.php -bannercode.php*. -# /banneradviva. (easylist.txt: 3181) -/(.*/)?banneradviva\. -banneradviva.*. -# /banneradverts/* (easylist.txt: 3180) -/(.*/)?banneradverts/.* -# /banneradsgenerator. (easylist.txt: 3179) -/(.*/)?banneradsgenerator\. -banneradsgenerator.*. -# /banneradsajax. (easylist.txt: 3178) -/(.*/)?banneradsajax\. -banneradsajax.*. -# /bannerads/* (easylist.txt: 3177) -/(.*/)?bannerads/.* -# /bannerads. (easylist.txt: 3176) -/(.*/)?bannerads\. -bannerads.*. -# /bannerads- (easylist.txt: 3175) -/(.*/)?bannerads- -bannerads-*. -# /bannerad_ (easylist.txt: 3174) -/(.*/)?bannerad_ -# /bannerad6. (easylist.txt: 3173) -/(.*/)?bannerad6\. -bannerad6.*. -# /bannerad3. (easylist.txt: 3172) -/(.*/)?bannerad3\. -bannerad3.*. -# /bannerad2- (easylist.txt: 3171) -/(.*/)?bannerad2- -bannerad2-*. -# /bannerad1- (easylist.txt: 3170) -/(.*/)?bannerad1- -bannerad1-*. -# /bannerad/* (easylist.txt: 3169) -/(.*/)?bannerad/.* -# /bannerad. (easylist.txt: 3168) -/(.*/)?bannerad\. -bannerad.*. -# /banner_zedo/* (easylist.txt: 3167) -/(.*/)?banner_zedo/.* -# /banner_zanox/* (easylist.txt: 3166) -/(.*/)?banner_zanox/.* -# /banner_view. (easylist.txt: 3165) -/(.*/)?banner_view\. -# /banner_skyscraper. (easylist.txt: 3164) -/(.*/)?banner_skyscraper\. -# /banner_OAS.js (easylist.txt: 3163) -/(.*/)?banner_OAS\.js -# /banner_js.*? (easylist.txt: 3162) -/(.*/)?banner_js\..*\? -# /banner_image.php? (easylist.txt: 3161) -/(.*/)?banner_image\.php\? -# /banner_iframe_ (easylist.txt: 3160) -/(.*/)?banner_iframe_ -# /banner_file.php? (easylist.txt: 3159) -/(.*/)?banner_file\.php\? -# /banner_db.php? (easylist.txt: 3158) -/(.*/)?banner_db\.php\? -# /banner_control.php? (easylist.txt: 3157) -/(.*/)?banner_control\.php\? -# /banner_adv/* (easylist.txt: 3156) -/(.*/)?banner_adv/.* -# /banner_ads_ (easylist.txt: 3155) -/(.*/)?banner_ads_ -# /banner_ads/* (easylist.txt: 3154) -/(.*/)?banner_ads/.* -# /banner_ads. (easylist.txt: 3153) -/(.*/)?banner_ads\. -# /banner_ad_ (easylist.txt: 3152) -/(.*/)?banner_ad_ -# /banner_ad. (easylist.txt: 3151) -/(.*/)?banner_ad\. -# /banner_468x (easylist.txt: 3150) -/(.*/)?banner_468x -# /banner_468. (easylist.txt: 3149) -/(.*/)?banner_468\. -# /banner_125x (easylist.txt: 3148) -/(.*/)?banner_125x -# /banner728x90_ (easylist.txt: 3147) -/(.*/)?banner728x90_ -# /banner468x80. (easylist.txt: 3146) -/(.*/)?banner468x80\. -banner468x80.*. -# /banner468x60. (easylist.txt: 3145) -/(.*/)?banner468x60\. -banner468x60.*. -# /banner468a. (easylist.txt: 3144) -/(.*/)?banner468a\. -banner468a.*. -# /banner468_ (easylist.txt: 3143) -/(.*/)?banner468_ -# /banner468. (easylist.txt: 3142) -/(.*/)?banner468\. -banner468.*. -# /banner460x80. (easylist.txt: 3141) -/(.*/)?banner460x80\. -banner460x80.*. -# /banner20468x60. (easylist.txt: 3140) -/(.*/)?banner20468x60\. -banner20468x60.*. -# /banner160x600- (easylist.txt: 3139) -/(.*/)?banner160x600- -banner160x600-*. -# /banner/virtuagirl (easylist.txt: 3138) -/(.*/)?banner/virtuagirl -# /banner/sponsor_ (easylist.txt: 3137) -/(.*/)?banner/sponsor_ -# /banner/rtads/* (easylist.txt: 3136) -/(.*/)?banner/rtads/.* -# /banner/affiliate/* (easylist.txt: 3135) -/(.*/)?banner/affiliate/.* -# /banner/adv_ (easylist.txt: 3134) -/(.*/)?banner/adv_ -# /banner/adv/* (easylist.txt: 3133) -/(.*/)?banner/adv/.* -# /banner/ad_ (easylist.txt: 3132) -/(.*/)?banner/ad_ -# /banner/ad/* (easylist.txt: 3131) -/(.*/)?banner/ad/.* -# /banner/ad. (easylist.txt: 3130) -/(.*/)?banner/ad\. -# /banner/700 (easylist.txt: 3129) -/(.*/)?banner/700 -# /banner/468 (easylist.txt: 3128) -/(.*/)?banner/468 -# /banner.ws? (easylist.txt: 3127) -/(.*/)?banner\.ws\? -# /banner.php (easylist.txt: 3126) -/(.*/)?banner\.php -banner.php*. -# /banner.htm? (easylist.txt: 3125) -/(.*/)?banner\.htm\? -# /banner.gif? (easylist.txt: 3124) -/(.*/)?banner\.gif\? -# /banner.cgi? (easylist.txt: 3123) -/(.*/)?banner\.cgi\? -# /banner.ca? (easylist.txt: 3122) -/(.*/)?banner\.ca\? -# /banner.asp?$third-party (easylist.txt: 3121) -/(.*/)?banner\.asp\? -# /banner-ads/* (easylist.txt: 3120) -/(.*/)?banner-ads/.* -# /banner-ad_ (easylist.txt: 3119) -/(.*/)?banner-ad_ -# /banner-ad/* (easylist.txt: 3118) -/(.*/)?banner-ad/.* -# /banner-ad. (easylist.txt: 3117) -/(.*/)?banner-ad\. -banner-ad.*. -# /banner-ad- (easylist.txt: 3116) -/(.*/)?banner-ad- -banner-ad-*. -# /Banner-300x250. (easylist.txt: 3115) -/(.*/)?Banner-300x250\. -Banner-300x250.*. -# /banmanpro/* (easylist.txt: 3114) -/(.*/)?banmanpro/.* -# /banman/* (easylist.txt: 3113) -/(.*/)?banman/.* -# /banman.asp? (easylist.txt: 3112) -/(.*/)?banman\.asp\? -# /banimpress. (easylist.txt: 3111) -/(.*/)?banimpress\. -banimpress.*. -# /ban_m.php? (easylist.txt: 3110) -/(.*/)?ban_m\.php\? -# /ban_ad. (easylist.txt: 3109) -/(.*/)?ban_ad\. -# /ban728x90. (easylist.txt: 3108) -/(.*/)?ban728x90\. -ban728x90.*. -# /ban728.php (easylist.txt: 3107) -/(.*/)?ban728\.php -ban728.php*. -# /ban728.html (easylist.txt: 3106) -/(.*/)?ban728\.html -ban728.html*. -# /ban300.php (easylist.txt: 3105) -/(.*/)?ban300\.php -ban300.php*. -# /ban300.html (easylist.txt: 3104) -/(.*/)?ban300\.html -ban300.html*. -# /ban160.php (easylist.txt: 3103) -/(.*/)?ban160\.php -ban160.php*. -# /ban.php? (easylist.txt: 3102) -/(.*/)?ban\.php\? -# /badge_ad_ (easylist.txt: 3101) -/(.*/)?badge_ad_ -# /backlinxxx/js/* (easylist.txt: 3100) -/(.*/)?backlinxxx/js/.* -# /backgroundAdvertising. (easylist.txt: 3099) -/(.*/)?backgroundAdvertising\. -backgroundAdvertising.*. -# /BackgroundAd40. (easylist.txt: 3098) -/(.*/)?BackgroundAd40\. -BackgroundAd40.*. -# /background_ad_ (easylist.txt: 3097) -/(.*/)?background_ad_ -# /back-ad. (easylist.txt: 3096) -/(.*/)?back-ad\. -back-ad.*. -# /b.ads. (easylist.txt: 3095) -/(.*/)?b\.ads\. -b.ads.*. -# /awepop. (easylist.txt: 3094) -/(.*/)?awepop\. -awepop.*. -# /awempire. (easylist.txt: 3093) -/(.*/)?awempire\. -awempire.*. -# /awe2.js (easylist.txt: 3092) -/(.*/)?awe2\.js -awe2.js*. -# /auto_ad_ (easylist.txt: 3091) -/(.*/)?auto_ad_ -# /austria_ad. (easylist.txt: 3090) -/(.*/)?austria_ad\. -# /auditudebanners. (easylist.txt: 3089) -/(.*/)?auditudebanners\. -auditudebanners.*. -# /auditudeadunit. (easylist.txt: 3088) -/(.*/)?auditudeadunit\. -auditudeadunit.*. -# /audioads/* (easylist.txt: 3087) -/(.*/)?audioads/.* -# /audio-ads/* (easylist.txt: 3086) -/(.*/)?audio-ads/.* -# /au2m8_preloader/* (easylist.txt: 3085) -/(.*/)?au2m8_preloader/.* -# /AttractiveAdsCube. (easylist.txt: 3084) -/(.*/)?AttractiveAdsCube\. -AttractiveAdsCube.*. -# /AttractiveAds_ (easylist.txt: 3083) -/(.*/)?AttractiveAds_ -# /AttractiveAds/* (easylist.txt: 3082) -/(.*/)?AttractiveAds/.* -# /atrads. (easylist.txt: 3081) -/(.*/)?atrads\. -atrads.*. -# /atnads/* (easylist.txt: 3080) -/(.*/)?atnads/.* -# /athena/tag/? (easylist.txt: 3079) -/(.*/)?athena/tag/\? -# /asyncspc. (easylist.txt: 3078) -/(.*/)?asyncspc\. -asyncspc.*. -# /asyncadload. (easylist.txt: 3076) -/(.*/)?asyncadload\. -asyncadload.*. -# /ast/ads/* (easylist.txt: 3075) -/(.*/)?ast/ads/.* -# /assets/sponsored/* (easylist.txt: 3074) -/(.*/)?assets/sponsored/.* -# /assets/doubleclick/* (easylist.txt: 3073) -/(.*/)?assets/doubleclick/.* -# /assets/adv/* (easylist.txt: 3072) -/(.*/)?assets/adv/.* -# /assets/ads_ (easylist.txt: 3071) -/(.*/)?assets/ads_ -# /assets/ads/* (easylist.txt: 3070) -/(.*/)?assets/ads/.* -# /assets/ads- (easylist.txt: 3069) -/(.*/)?assets/ads- -# /assets/ad/* (easylist.txt: 3068) -/(.*/)?assets/ad/.* -# /assets/ad- (easylist.txt: 3067) -/(.*/)?assets/ad- -# /asset/adv/* (easylist.txt: 3066) -/(.*/)?asset/adv/.* -# /asset/ad/* (easylist.txt: 3065) -/(.*/)?asset/ad/.* -# /aspbanner_inc.asp? (easylist.txt: 3064) -/(.*/)?aspbanner_inc\.asp\? -# /aseadnshow. (easylist.txt: 3063) -/(.*/)?aseadnshow\. -aseadnshow.*. -# /as_u/ads/* (easylist.txt: 3062) -/(.*/)?as_u/ads/.* -# /as3overstreamplatformadapter. (easylist.txt: 3061) -/(.*/)?as3overstreamplatformadapter\. -as3overstreamplatformadapter.*. -# /as/gb?stid= (easylist.txt: 3060) -/(.*/)?as/gb\?stid= -# /as/gb2?stid= (easylist.txt: 3059) -/(.*/)?as/gb2\?stid= -# /artimediatargetads. (easylist.txt: 3058) -/(.*/)?artimediatargetads\. -artimediatargetads.*. -# /articleSponsorDeriv_ (easylist.txt: 3057) -/(.*/)?articleSponsorDeriv_ -# /article_ad. (easylist.txt: 3056) -/(.*/)?article_ad\. -# /Article-Ad- (easylist.txt: 3055) -/(.*/)?Article-Ad- -Article-Ad-*. -# /aptads/* (easylist.txt: 3054) -/(.*/)?aptads/.* -# /app/ads/* (easylist.txt: 3053) -/(.*/)?app/ads/.* -# /app/ads. (easylist.txt: 3052) -/(.*/)?app/ads\. -# /app.ads. (easylist.txt: 3051) -/(.*/)?app\.ads\. -app.ads.*. -# /app.ads- (easylist.txt: 3050) -/(.*/)?app\.ads- -app.ads-*. -# /apopwin. (easylist.txt: 3049) -/(.*/)?apopwin\. -apopwin.*. -# /api/ads/* (easylist.txt: 3048) -/(.*/)?api/ads/.* -# /api/ad/* (easylist.txt: 3047) -/(.*/)?api/ad/.* -# /api.ad. (easylist.txt: 3046) -/(.*/)?api\.ad\. -api.ad.*. -# /anyad.js (easylist.txt: 3045) -/(.*/)?anyad\.js -anyad.js*. -# /announce/adv/* (easylist.txt: 3044) -/(.*/)?announce/adv/.* -# /annonser/* (easylist.txt: 3043) -/(.*/)?annonser/.* -# /annonser. (easylist.txt: 3042) -/(.*/)?annonser\. -annonser.*. -# /annonse/* (easylist.txt: 3041) -/(.*/)?annonse/.* -# /anchorad. (easylist.txt: 3039) -/(.*/)?anchorad\. -anchorad.*. -# /amzn_omakase. (easylist.txt: 3038) -/(.*/)?amzn_omakase\. -# /amzn_ads. (easylist.txt: 3037) -/(.*/)?amzn_ads\. -# /amazon/widget/* (easylist.txt: 3036) -/(.*/)?amazon/widget/.* -# /amazon/iframeproxy- (easylist.txt: 3035) -/(.*/)?amazon/iframeproxy- -# /am/ads. (easylist.txt: 3034) -/(.*/)?am/ads\. -# /alwebad_ (easylist.txt: 3033) -/(.*/)?alwebad_ -# /alternet.ad? (easylist.txt: 3032) -/(.*/)?alternet\.ad\? -# /all_ads/* (easylist.txt: 3031) -/(.*/)?all_ads/.* -# /all/ad/* (easylist.txt: 3030) -/(.*/)?all/ad/.* -# /ak/ads/* (easylist.txt: 3029) -/(.*/)?ak/ads/.* -# /ak-ads- (easylist.txt: 3028) -/(.*/)?ak-ads- -ak-ads-*. -# /ajs?auid= (easylist.txt: 3027) -/(.*/)?ajs\?auid= -# /ajs.php? (easylist.txt: 3026) -/(.*/)?ajs\.php\? -# /ajrotator/* (easylist.txt: 3025) -/(.*/)?ajrotator/.* -# /ajaxads. (easylist.txt: 3024) -/(.*/)?ajaxads\. -ajaxads.*. -# /ajaxAd? (easylist.txt: 3023) -/(.*/)?ajaxAd\? -# /ajax/ads/* (easylist.txt: 3022) -/(.*/)?ajax/ads/.* -# /ajax/ad/* (easylist.txt: 3021) -/(.*/)?ajax/ad/.* -# /ajax-advert. (easylist.txt: 3020) -/(.*/)?ajax-advert\. -ajax-advert.*. -# /ajax-advert- (easylist.txt: 3019) -/(.*/)?ajax-advert- -ajax-advert-*. -# /ajax-ad/* (easylist.txt: 3018) -/(.*/)?ajax-ad/.* -# /ahmestatic/ads/* (easylist.txt: 3017) -/(.*/)?ahmestatic/ads/.* -# /afr?auid= (easylist.txt: 3016) -/(.*/)?afr\?auid= -# /afr.php? (easylist.txt: 3015) -/(.*/)?afr\.php\? -# /affpic/* (easylist.txt: 3014) -/(.*/)?affpic/.* -# /affliate-banners/* (easylist.txt: 3013) -/(.*/)?affliate-banners/.* -# /affimg/* (easylist.txt: 3012) -/(.*/)?affimg/.* -# /affimages/* (easylist.txt: 3011) -/(.*/)?affimages/.* -# /affilitebanners/* (easylist.txt: 3010) -/(.*/)?affilitebanners/.* -# /affilinet/* (easylist.txt: 3009) -/(.*/)?affilinet/.* -# /affiliationcash. (easylist.txt: 3008) -/(.*/)?affiliationcash\. -affiliationcash.*. -# /affiliation/* (easylist.txt: 3007) -/(.*/)?affiliation/.* -# /affiliatewiz/* (easylist.txt: 3006) -/(.*/)?affiliatewiz/.* -# /affiliatetags/* (easylist.txt: 3005) -/(.*/)?affiliatetags/.* -# /affiliateserver. (easylist.txt: 3004) -/(.*/)?affiliateserver\. -affiliateserver.*. -# /affiliates/contextual. (easylist.txt: 3003) -/(.*/)?affiliates/contextual\. -# /affiliates/ban (easylist.txt: 3002) -/(.*/)?affiliates/ban -# /affiliates/*/show_banner. (easylist.txt: 3001) -/(.*/)?affiliates/.*/show_banner\. -# /affiliates.*.aspx? (easylist.txt: 3000) -/(.*/)?affiliates\..*\.aspx\? -affiliates.*./.*\.aspx\? -# /affiliateimages/* (easylist.txt: 2999) -/(.*/)?affiliateimages/.* -# /affiliatebanners/* (easylist.txt: 2998) -/(.*/)?affiliatebanners/.* -# /affiliatebanner/* (easylist.txt: 2997) -/(.*/)?affiliatebanner/.* -# /affiliateadvertisement. (easylist.txt: 2996) -/(.*/)?affiliateadvertisement\. -affiliateadvertisement.*. -# /affiliateads/* (easylist.txt: 2995) -/(.*/)?affiliateads/.* -# /affiliate_show_iframe. (easylist.txt: 2994) -/(.*/)?affiliate_show_iframe\. -# /affiliate_show_banner. (easylist.txt: 2993) -/(.*/)?affiliate_show_banner\. -# /affiliate_resources/* (easylist.txt: 2992) -/(.*/)?affiliate_resources/.* -# /affiliate_base/banners/* (easylist.txt: 2991) -/(.*/)?affiliate_base/banners/.* -# /affiliate_banners/* (easylist.txt: 2990) -/(.*/)?affiliate_banners/.* -# /affiliate_banner/* (easylist.txt: 2989) -/(.*/)?affiliate_banner/.* -# /affiliate/small_banner/* (easylist.txt: 2988) -/(.*/)?affiliate/small_banner/.* -# /affiliate/script.php? (easylist.txt: 2987) -/(.*/)?affiliate/script\.php\? -# /affiliate/promo/* (easylist.txt: 2986) -/(.*/)?affiliate/promo/.* -# /affiliate/promo- (easylist.txt: 2985) -/(.*/)?affiliate/promo- -# /affiliate/banners/* (easylist.txt: 2984) -/(.*/)?affiliate/banners/.* -# /affiliate/banner/* (easylist.txt: 2983) -/(.*/)?affiliate/banner/.* -# /affiliate/ads/* (easylist.txt: 2982) -/(.*/)?affiliate/ads/.* -# /affiliate/ad/* (easylist.txt: 2981) -/(.*/)?affiliate/ad/.* -# /affiliate-content/* (easylist.txt: 2980) -/(.*/)?affiliate-content/.* -# /Affiliate-Banner- (easylist.txt: 2979) -/(.*/)?Affiliate-Banner- -Affiliate-Banner-*. -# /affilatebanner. (easylist.txt: 2978) -/(.*/)?affilatebanner\. -affilatebanner.*. -# /affclick/* (easylist.txt: 2977) -/(.*/)?affclick/.* -# /affbeat/banners/* (easylist.txt: 2976) -/(.*/)?affbeat/banners/.* -# /affbanners/* (easylist.txt: 2975) -/(.*/)?affbanners/.* -# /affbanner/* (easylist.txt: 2974) -/(.*/)?affbanner/.* -# /affads/* (easylist.txt: 2973) -/(.*/)?affads/.* -# /affad? (easylist.txt: 2972) -/(.*/)?affad\? -# /aff_i?offer_id= (easylist.txt: 2971) -/(.*/)?aff_i\?offer_id= -# /aff_frame. (easylist.txt: 2970) -/(.*/)?aff_frame\. -# /aff_banners/* (easylist.txt: 2969) -/(.*/)?aff_banners/.* -# /aff_ad? (easylist.txt: 2968) -/(.*/)?aff_ad\? -# /aff/images/* (easylist.txt: 2967) -/(.*/)?aff/images/.* -# /aff/ads_ (easylist.txt: 2966) -/(.*/)?aff/ads_ -# /aff.htm (easylist.txt: 2965) -/(.*/)?aff\.htm -aff.htm*. -# /aff-exchange/* (easylist.txt: 2964) -/(.*/)?aff-exchange/.* -# /afdsafads/* (easylist.txt: 2963) -/(.*/)?afdsafads/.* -# /afcsearchads. (easylist.txt: 2962) -/(.*/)?afcsearchads\. -afcsearchads.*. -# /afcads. (easylist.txt: 2961) -/(.*/)?afcads\. -afcads.*. -# /afc-match?q= (easylist.txt: 2960) -/(.*/)?afc-match\?q= -# /adztop. (easylist.txt: 2959) -/(.*/)?adztop\. -adztop.*. -# /adzonetop. (easylist.txt: 2958) -/(.*/)?adzonetop\. -adzonetop.*. -# /adzonesidead. (easylist.txt: 2957) -/(.*/)?adzonesidead\. -adzonesidead.*. -# /adzones/* (easylist.txt: 2956) -/(.*/)?adzones/.* -# /adzoneright. (easylist.txt: 2955) -/(.*/)?adzoneright\. -adzoneright.*. -# /adzoneplayerright. (easylist.txt: 2954) -/(.*/)?adzoneplayerright\. -adzoneplayerright.*. -# /adzonelegend. (easylist.txt: 2953) -/(.*/)?adzonelegend\. -adzonelegend.*. -# /adzoneleft. (easylist.txt: 2952) -/(.*/)?adzoneleft\. -adzoneleft.*. -# /adzonecenteradhomepage. (easylist.txt: 2951) -/(.*/)?adzonecenteradhomepage\. -adzonecenteradhomepage.*. -# /adzonebottom. (easylist.txt: 2950) -/(.*/)?adzonebottom\. -adzonebottom.*. -# /adzonebelowplayer. (easylist.txt: 2949) -/(.*/)?adzonebelowplayer\. -adzonebelowplayer.*. -# /AdZoneAdXp. (easylist.txt: 2948) -/(.*/)?AdZoneAdXp\. -AdZoneAdXp.*. -# /adzone_ (easylist.txt: 2947) -/(.*/)?adzone_ -# /adzone4. (easylist.txt: 2946) -/(.*/)?adzone4\. -adzone4.*. -# /adzone/* (easylist.txt: 2945) -/(.*/)?adzone/.* -# /adzone. (easylist.txt: 2944) -/(.*/)?adzone\. -adzone.*. -# /adzilla/* (easylist.txt: 2943) -/(.*/)?adzilla/.* -# /adzerk2_ (easylist.txt: 2942) -/(.*/)?adzerk2_ -# /adzbotm. (easylist.txt: 2941) -/(.*/)?adzbotm\. -adzbotm.*. -# /adyea. (easylist.txt: 2940) -/(.*/)?adyea\. -adyea.*. -# /adyard300. (easylist.txt: 2939) -/(.*/)?adyard300\. -adyard300.*. -# /adyard. (easylist.txt: 2938) -/(.*/)?adyard\. -adyard.*. -# /adxx.php? (easylist.txt: 2937) -/(.*/)?adxx\.php\? -# /adxsite. (easylist.txt: 2936) -/(.*/)?adxsite\. -adxsite.*. -# /adx_iframe_ (easylist.txt: 2935) -/(.*/)?adx_iframe_ -# /adx_flash. (easylist.txt: 2934) -/(.*/)?adx_flash\. -# /adx_exo_ (easylist.txt: 2933) -/(.*/)?adx_exo_ -# /adx2. (easylist.txt: 2932) -/(.*/)?adx2\. -adx2.*. -# /adx160. (easylist.txt: 2931) -/(.*/)?adx160\. -adx160.*. -# /adx/ads? (easylist.txt: 2930) -/(.*/)?adx/ads\? -# /adwriter2. (easylist.txt: 2928) -/(.*/)?adwriter2\. -adwriter2.*. -# /adwrapperiframe. (easylist.txt: 2927) -/(.*/)?adwrapperiframe\. -adwrapperiframe.*. -# /adwrapper/* (easylist.txt: 2926) -/(.*/)?adwrapper/.* -# /adworx_ (easylist.txt: 2925) -/(.*/)?adworx_ -# /adworx. (easylist.txt: 2924) -/(.*/)?adworx\. -adworx.*. -# /adworldmedia/* (easylist.txt: 2923) -/(.*/)?adworldmedia/.* -# /adworks/* (easylist.txt: 2922) -/(.*/)?adworks/.* -# /adWorking/* (easylist.txt: 2920) -/(.*/)?adWorking/.* -# /adwordstracking.js (easylist.txt: 2919) -/(.*/)?adwordstracking\.js -adwordstracking.js*. -# /adwords/* (easylist.txt: 2918) -/(.*/)?adwords/.* -# /adwolf. (easylist.txt: 2916) -/(.*/)?adwolf\. -adwolf.*. -# /adwizard_ (easylist.txt: 2915) -/(.*/)?adwizard_ -# /adwizard. (easylist.txt: 2914) -/(.*/)?adwizard\. -adwizard.*. -# /adwiz/* (easylist.txt: 2913) -/(.*/)?adwiz/.* -# /adwiz. (easylist.txt: 2912) -/(.*/)?adwiz\. -adwiz.*. -# /adWiseShopPlus1. (easylist.txt: 2911) -/(.*/)?adWiseShopPlus1\. -adWiseShopPlus1.*. -# /adwise/* (easylist.txt: 2910) -/(.*/)?adwise/.* -# /adwidgets/* (easylist.txt: 2909) -/(.*/)?adwidgets/.* -# /adwidget/* (easylist.txt: 2908) -/(.*/)?adwidget/.* -# /adweb33. (easylist.txt: 2907) -/(.*/)?adweb33\. -adweb33.*. -# /adweb2. (easylist.txt: 2906) -/(.*/)?adweb2\. -adweb2.*. -# /adweb. (easylist.txt: 2905) -/(.*/)?adweb\. -adweb.*. -# /adw2.shtml (easylist.txt: 2904) -/(.*/)?adw2\.shtml -adw2.shtml*. -# /adw.shtml (easylist.txt: 2903) -/(.*/)?adw\.shtml -adw.shtml*. -# /advzones/* (easylist.txt: 2902) -/(.*/)?advzones/.* -# /AdvWindow/* (easylist.txt: 2901) -/(.*/)?AdvWindow/.* -# /advweb. (easylist.txt: 2900) -/(.*/)?advweb\. -advweb.*. -# /advtemplate_ (easylist.txt: 2899) -/(.*/)?advtemplate_ -# /advtemplate/* (easylist.txt: 2898) -/(.*/)?advtemplate/.* -# /advtarget/* (easylist.txt: 2897) -/(.*/)?advtarget/.* -# /advt2. (easylist.txt: 2896) -/(.*/)?advt2\. -advt2.*. -# /advt/* (easylist.txt: 2895) -/(.*/)?advt/.* -# /advt. (easylist.txt: 2894) -/(.*/)?advt\. -advt.*. -# /advshow. (easylist.txt: 2893) -/(.*/)?advshow\. -advshow.*. -# /advscripts/* (easylist.txt: 2892) -/(.*/)?advscripts/.* -# /advscript. (easylist.txt: 2891) -/(.*/)?advscript\. -advscript.*. -# /advs/* (easylist.txt: 2890) -/(.*/)?advs/.* -# /advs.ads. (easylist.txt: 2889) -/(.*/)?advs\.ads\. -advs.ads.*. -# /advrotator. (easylist.txt: 2888) -/(.*/)?advrotator\. -advrotator.*. -# /advris/* (easylist.txt: 2887) -/(.*/)?advris/.* -# /advpreload. (easylist.txt: 2886) -/(.*/)?advpreload\. -advpreload.*. -# /advPop. (easylist.txt: 2885) -/(.*/)?advPop\. -advPop.*. -# /advpartnerinit. (easylist.txt: 2884) -/(.*/)?advpartnerinit\. -advpartnerinit.*. -# /advolatility. (easylist.txt: 2883) -/(.*/)?advolatility\. -advolatility.*. -# /advloader. (easylist.txt: 2882) -/(.*/)?advloader\. -advloader.*. -# /advlink300. (easylist.txt: 2881) -/(.*/)?advlink300\. -advlink300.*. -# /adVisit. (easylist.txt: 2880) -/(.*/)?adVisit\. -adVisit.*. -# /advision. (easylist.txt: 2879) -/(.*/)?advision\. -advision.*. -# /advinfo. (easylist.txt: 2878) -/(.*/)?advinfo\. -advinfo.*. -# /adviframe/* (easylist.txt: 2877) -/(.*/)?adviframe/.* -# /adviewer. (easylist.txt: 2876) -/(.*/)?adviewer\. -adviewer.*. -# /adviewed. (easylist.txt: 2875) -/(.*/)?adviewed\. -adviewed.*. -# /adviewas3. (easylist.txt: 2874) -/(.*/)?adviewas3\. -adviewas3.*. -# /adview_ (easylist.txt: 2873) -/(.*/)?adview_ -# /adview? (easylist.txt: 2872) -/(.*/)?adview\? -# /adview/* (easylist.txt: 2871) -/(.*/)?adview/.* -# /adview. (easylist.txt: 2870) -/(.*/)?adview\. -adview.*. -# /advice-ads. (easylist.txt: 2869) -/(.*/)?advice-ads\. -advice-ads.*. -# /advhd. (easylist.txt: 2868) -/(.*/)?advhd\. -advhd.*. -# /advfiles/* (easylist.txt: 2867) -/(.*/)?advfiles/.* -# /advf1. (easylist.txt: 2866) -/(.*/)?advf1\. -advf1.*. -# /advertwebapp. (easylist.txt: 2865) -/(.*/)?advertwebapp\. -advertwebapp.*. -# /advertverticallong. (easylist.txt: 2864) -/(.*/)?advertverticallong\. -advertverticallong.*. -# /adverttop. (easylist.txt: 2863) -/(.*/)?adverttop\. -adverttop.*. -# /advertstub. (easylist.txt: 2862) -/(.*/)?advertstub\. -advertstub.*. -# /advertsquare. (easylist.txt: 2861) -/(.*/)?advertsquare\. -advertsquare.*. -# /advertsky. (easylist.txt: 2860) -/(.*/)?advertsky\. -advertsky.*. -# /advertserve. (easylist.txt: 2859) -/(.*/)?advertserve\. -advertserve.*. -# /adverts_ (easylist.txt: 2858) -/(.*/)?adverts_ -# /adverts/* (easylist.txt: 2857) -/(.*/)?adverts/.* -# /adverts. (easylist.txt: 2856) -/(.*/)?adverts\. -adverts.*. -# /advertright. (easylist.txt: 2855) -/(.*/)?advertright\. -advertright.*. -# /advertrail. (easylist.txt: 2854) -/(.*/)?advertrail\. -advertrail.*. -# /advertpro/* (easylist.txt: 2853) -/(.*/)?advertpro/.* -# /advertpixelmedia1. (easylist.txt: 2852) -/(.*/)?advertpixelmedia1\. -advertpixelmedia1.*. -# /advertphp/* (easylist.txt: 2851) -/(.*/)?advertphp/.* -# /advertorials/* (easylist.txt: 2850) -/(.*/)?advertorials/.* -# /advertorial_ (easylist.txt: 2849) -/(.*/)?advertorial_ -# /advertorial/* (easylist.txt: 2848) -/(.*/)?advertorial/.* -# /advertmsig. (easylist.txt: 2847) -/(.*/)?advertmsig\. -advertmsig.*. -# /advertmedia/* (easylist.txt: 2846) -/(.*/)?advertmedia/.* -# /advertlayer. (easylist.txt: 2845) -/(.*/)?advertlayer\. -advertlayer.*. -# /advertize_ (easylist.txt: 2844) -/(.*/)?advertize_ -# /advertisments/* (easylist.txt: 2843) -/(.*/)?advertisments/.* -# /advertisment_ (easylist.txt: 2842) -/(.*/)?advertisment_ -# /advertisment1- (easylist.txt: 2841) -/(.*/)?advertisment1- -advertisment1-*. -# /advertisment/* (easylist.txt: 2840) -/(.*/)?advertisment/.* -# /advertisment. (easylist.txt: 2839) -/(.*/)?advertisment\. -advertisment.*. -# /advertisment- (easylist.txt: 2838) -/(.*/)?advertisment- -advertisment-*. -# /advertisingwidgets/* (easylist.txt: 2837) -/(.*/)?advertisingwidgets/.* -# /advertisings. (easylist.txt: 2836) -/(.*/)?advertisings\. -advertisings.*. -# /advertisingmodule. (easylist.txt: 2835) -/(.*/)?advertisingmodule\. -advertisingmodule.*. -# /advertisingmanual. (easylist.txt: 2834) -/(.*/)?advertisingmanual\. -advertisingmanual.*. -# /advertisinglinks_ (easylist.txt: 2833) -/(.*/)?advertisinglinks_ -# /AdvertisingIsPresent6? (easylist.txt: 2832) -/(.*/)?AdvertisingIsPresent6\? -# /advertisingimageexte/* (easylist.txt: 2831) -/(.*/)?advertisingimageexte/.* -# /advertisingcontent/* (easylist.txt: 2830) -/(.*/)?advertisingcontent/.* -# /advertisingbutton. (easylist.txt: 2829) -/(.*/)?advertisingbutton\. -advertisingbutton.*. -# /advertisingbanner_ (easylist.txt: 2828) -/(.*/)?advertisingbanner_ -# /advertisingbanner1. (easylist.txt: 2827) -/(.*/)?advertisingbanner1\. -advertisingbanner1.*. -# /advertisingbanner/* (easylist.txt: 2826) -/(.*/)?advertisingbanner/.* -# /advertisingbanner. (easylist.txt: 2825) -/(.*/)?advertisingbanner\. -advertisingbanner.*. -# /advertising_ (easylist.txt: 2824) -/(.*/)?advertising_ -# /advertising? (easylist.txt: 2823) -/(.*/)?advertising\? -# /advertising300x250. (easylist.txt: 2822) -/(.*/)?advertising300x250\. -advertising300x250.*. -# /advertising2. (easylist.txt: 2821) -/(.*/)?advertising2\. -advertising2.*. -# /advertising02. (easylist.txt: 2820) -/(.*/)?advertising02\. -advertising02.*. -# /advertising. (easylist.txt: 2818) -/(.*/)?advertising\. -advertising.*. -# /advertisewithus_ (easylist.txt: 2816) -/(.*/)?advertisewithus_ -# /advertises/* (easylist.txt: 2815) -/(.*/)?advertises/.* -# /advertiserwidget. (easylist.txt: 2814) -/(.*/)?advertiserwidget\. -advertiserwidget.*. -# /advertisementview/* (easylist.txt: 2809) -/(.*/)?advertisementview/.* -# /AdvertisementShare. (easylist.txt: 2808) -/(.*/)?AdvertisementShare\. -AdvertisementShare.*. -# /advertisements_ (easylist.txt: 2807) -/(.*/)?advertisements_ -# /advertisements2. (easylist.txt: 2806) -/(.*/)?advertisements2\. -advertisements2.*. -# /advertisements/* (easylist.txt: 2805) -/(.*/)?advertisements/.* -# /advertisements. (easylist.txt: 2804) -/(.*/)?advertisements\. -advertisements.*. -# /advertisements- (easylist.txt: 2803) -/(.*/)?advertisements- -advertisements-*. -# /advertisementrotation. (easylist.txt: 2802) -/(.*/)?advertisementrotation\. -advertisementrotation.*. -# /advertisementmapping. (easylist.txt: 2801) -/(.*/)?advertisementmapping\. -advertisementmapping.*. -# /advertisementheader. (easylist.txt: 2800) -/(.*/)?advertisementheader\. -advertisementheader.*. -# /advertisementAPI/* (easylist.txt: 2799) -/(.*/)?advertisementAPI/.* -# /advertisement_ (easylist.txt: 2798) -/(.*/)?advertisement_ -# /advertisement3. (easylist.txt: 2797) -/(.*/)?advertisement3\. -advertisement3.*. -# /advertisement2. (easylist.txt: 2796) -/(.*/)?advertisement2\. -advertisement2.*. -# /advertisement160. (easylist.txt: 2795) -/(.*/)?advertisement160\. -advertisement160.*. -# /advertisement1. (easylist.txt: 2794) -/(.*/)?advertisement1\. -advertisement1.*. -# /advertisement/* (easylist.txt: 2793) -/(.*/)?advertisement/.* -# /advertisement. (easylist.txt: 2792) -/(.*/)?advertisement\. -advertisement.*. -# /advertisement- (easylist.txt: 2791) -/(.*/)?advertisement- -advertisement-*. -# /advertisehere. (easylist.txt: 2790) -/(.*/)?advertisehere\. -advertisehere.*. -# /advertise_ (easylist.txt: 2789) -/(.*/)?advertise_ -# /advertise125x125. (easylist.txt: 2788) -/(.*/)?advertise125x125\. -advertise125x125.*. -# /advertise/* (easylist.txt: 2787) -/(.*/)?advertise/.* -# /advertise- (easylist.txt: 2785) -/(.*/)?advertise- -advertise-*. -# /advertical. (easylist.txt: 2784) -/(.*/)?advertical\. -advertical.*. -# /adverthorisontalfullwidth. (easylist.txt: 2783) -/(.*/)?adverthorisontalfullwidth\. -adverthorisontalfullwidth.*. -# /adverth. (easylist.txt: 2782) -/(.*/)?adverth\. -adverth.*. -# /advertguruonline1. (easylist.txt: 2781) -/(.*/)?advertguruonline1\. -advertguruonline1.*. -# /advertbox. (easylist.txt: 2780) -/(.*/)?advertbox\. -advertbox.*. -# /advertbanner2. (easylist.txt: 2779) -/(.*/)?advertbanner2\. -advertbanner2.*. -# /advertbanner. (easylist.txt: 2778) -/(.*/)?advertbanner\. -advertbanner.*. -# /advert_ (easylist.txt: 2777) -/(.*/)?advert_ -# /advert? (easylist.txt: 2776) -/(.*/)?advert\? -# /advert6. (easylist.txt: 2775) -/(.*/)?advert6\. -advert6.*. -# /advert5. (easylist.txt: 2774) -/(.*/)?advert5\. -advert5.*. -# /advert4. (easylist.txt: 2773) -/(.*/)?advert4\. -advert4.*. -# /advert37. (easylist.txt: 2772) -/(.*/)?advert37\. -advert37.*. -# /advert36. (easylist.txt: 2771) -/(.*/)?advert36\. -advert36.*. -# /advert35. (easylist.txt: 2770) -/(.*/)?advert35\. -advert35.*. -# /advert34. (easylist.txt: 2769) -/(.*/)?advert34\. -advert34.*. -# /advert33. (easylist.txt: 2768) -/(.*/)?advert33\. -advert33.*. -# /advert32. (easylist.txt: 2767) -/(.*/)?advert32\. -advert32.*. -# /advert31. (easylist.txt: 2766) -/(.*/)?advert31\. -advert31.*. -# /advert3. (easylist.txt: 2765) -/(.*/)?advert3\. -advert3.*. -# /advert2. (easylist.txt: 2764) -/(.*/)?advert2\. -advert2.*. -# /advert1/* (easylist.txt: 2763) -/(.*/)?advert1/.* -# /advert1. (easylist.txt: 2762) -/(.*/)?advert1\. -advert1.*. -# /advert01. (easylist.txt: 2761) -/(.*/)?advert01\. -advert01.*. -# /advert/* (easylist.txt: 2760) -/(.*/)?advert/.* -# /advert. (easylist.txt: 2759) -/(.*/)?advert\. -advert.*. -# /advert- (easylist.txt: 2758) -/(.*/)?advert- -advert-*. -# /adversting? (easylist.txt: 2757) -/(.*/)?adversting\? -# /adversting/* (easylist.txt: 2756) -/(.*/)?adversting/.* -# /adverserve. (easylist.txt: 2755) -/(.*/)?adverserve\. -adverserve.*. -# /adverfisement2. (easylist.txt: 2754) -/(.*/)?adverfisement2\. -adverfisement2.*. -# /adverfisement. (easylist.txt: 2753) -/(.*/)?adverfisement\. -adverfisement.*. -# /adver_hor. (easylist.txt: 2752) -/(.*/)?adver_hor\. -# /adver. (easylist.txt: 2751) -/(.*/)?adver\. -adver.*. -# /adver-left. (easylist.txt: 2750) -/(.*/)?adver-left\. -adver-left.*. -# /advengine. (easylist.txt: 2749) -/(.*/)?advengine\. -advengine.*. -# /advdoc/* (easylist.txt: 2748) -/(.*/)?advdoc/.* -# /advdl. (easylist.txt: 2747) -/(.*/)?advdl\. -advdl.*. -# /advcounter. (easylist.txt: 2746) -/(.*/)?advcounter\. -advcounter.*. -# /advcontents. (easylist.txt: 2745) -/(.*/)?advcontents\. -advcontents.*. -# /advbanners/* (easylist.txt: 2744) -/(.*/)?advbanners/.* -# /advbanner/* (easylist.txt: 2743) -/(.*/)?advbanner/.* -# /advault. (easylist.txt: 2742) -/(.*/)?advault\. -advault.*. -# /advanced-ads- (easylist.txt: 2741) -/(.*/)?advanced-ads- -advanced-ads-*. -# /advaluewriter. (easylist.txt: 2740) -/(.*/)?advaluewriter\. -advaluewriter.*. -# /advalue_ (easylist.txt: 2739) -/(.*/)?advalue_ -# /advalue/* (easylist.txt: 2738) -/(.*/)?advalue/.* -# /adv_vertical. (easylist.txt: 2737) -/(.*/)?adv_vertical\. -# /adv_vert. (easylist.txt: 2736) -/(.*/)?adv_vert\. -# /adv_top. (easylist.txt: 2735) -/(.*/)?adv_top\. -# /adv_teasers. (easylist.txt: 2734) -/(.*/)?adv_teasers\. -# /adv_server. (easylist.txt: 2733) -/(.*/)?adv_server\. -# /adv_script_ (easylist.txt: 2732) -/(.*/)?adv_script_ -# /adv_player_ (easylist.txt: 2731) -/(.*/)?adv_player_ -# /adv_out. (easylist.txt: 2730) -/(.*/)?adv_out\. -# /adv_manager_ (easylist.txt: 2729) -/(.*/)?adv_manager_ -# /adv_link. (easylist.txt: 2728) -/(.*/)?adv_link\. -# /adv_library3. (easylist.txt: 2727) -/(.*/)?adv_library3\. -# /adv_left_ (easylist.txt: 2726) -/(.*/)?adv_left_ -# /adv_image/* (easylist.txt: 2725) -/(.*/)?adv_image/.* -# /adv_horiz. (easylist.txt: 2724) -/(.*/)?adv_horiz\. -# /adv_frame/* (easylist.txt: 2723) -/(.*/)?adv_frame/.* -# /adv_flash. (easylist.txt: 2722) -/(.*/)?adv_flash\. -# /adv_display. (easylist.txt: 2721) -/(.*/)?adv_display\. -# /adv_burt_ (easylist.txt: 2720) -/(.*/)?adv_burt_ -# /adv_box_ (easylist.txt: 2719) -/(.*/)?adv_box_ -# /adv_banner_ (easylist.txt: 2718) -/(.*/)?adv_banner_ -# /adv_background/* (easylist.txt: 2717) -/(.*/)?adv_background/.* -# /adv_468. (easylist.txt: 2716) -/(.*/)?adv_468\. -# /adv_2. (easylist.txt: 2715) -/(.*/)?adv_2\. -# /adv8. (easylist.txt: 2714) -/(.*/)?adv8\. -adv8.*. -# /adv6. (easylist.txt: 2713) -/(.*/)?adv6\. -adv6.*. -# /adv5. (easylist.txt: 2712) -/(.*/)?adv5\. -adv5.*. -# /Adv468. (easylist.txt: 2711) -/(.*/)?Adv468\. -Adv468.*. -# /adv4. (easylist.txt: 2710) -/(.*/)?adv4\. -adv4.*. -# /adv3. (easylist.txt: 2709) -/(.*/)?adv3\. -adv3.*. -# /adv2. (easylist.txt: 2708) -/(.*/)?adv2\. -adv2.*. -# /adv180x150. (easylist.txt: 2707) -/(.*/)?adv180x150\. -adv180x150.*. -# /Adv150. (easylist.txt: 2706) -/(.*/)?Adv150\. -Adv150.*. -# /adv1. (easylist.txt: 2705) -/(.*/)?adv1\. -adv1.*. -# /adv03. (easylist.txt: 2704) -/(.*/)?adv03\. -adv03.*. -# /adv02. (easylist.txt: 2703) -/(.*/)?adv02\. -adv02.*. -# /adv/topBanners. (easylist.txt: 2702) -/(.*/)?adv/topBanners\. -# /adv/sprintf- (easylist.txt: 2701) -/(.*/)?adv/sprintf- -# /adv/sponsor/* (easylist.txt: 2700) -/(.*/)?adv/sponsor/.* -# /adv/skin_ (easylist.txt: 2699) -/(.*/)?adv/skin_ -# /adv/skin. (easylist.txt: 2698) -/(.*/)?adv/skin\. -# /adv/search. (easylist.txt: 2697) -/(.*/)?adv/search\. -# /adv/script2. (easylist.txt: 2696) -/(.*/)?adv/script2\. -# /adv/script1. (easylist.txt: 2695) -/(.*/)?adv/script1\. -# /adv/rdb. (easylist.txt: 2694) -/(.*/)?adv/rdb\. -# /adv/preroll_ (easylist.txt: 2693) -/(.*/)?adv/preroll_ -# /adv/mobile/* (easylist.txt: 2692) -/(.*/)?adv/mobile/.* -# /adv/mjx. (easylist.txt: 2691) -/(.*/)?adv/mjx\. -# /adv/managers/* (easylist.txt: 2690) -/(.*/)?adv/managers/.* -# /adv/lrec_ (easylist.txt: 2689) -/(.*/)?adv/lrec_ -# /adv/kelkoo_ (easylist.txt: 2688) -/(.*/)?adv/kelkoo_ -# /adv/kelkoo/* (easylist.txt: 2687) -/(.*/)?adv/kelkoo/.* -# /adv/interstitial. (easylist.txt: 2686) -/(.*/)?adv/interstitial\. -# /adv/box- (easylist.txt: 2685) -/(.*/)?adv/box- -# /adv/bottomBanners. (easylist.txt: 2684) -/(.*/)?adv/bottomBanners\. -# /adv/banner1/* (easylist.txt: 2683) -/(.*/)?adv/banner1/.* -# /adv/banner/* (easylist.txt: 2682) -/(.*/)?adv/banner/.* -# /adv/background/* (easylist.txt: 2681) -/(.*/)?adv/background/.* -# /adv/adv_ (easylist.txt: 2680) -/(.*/)?adv/adv_ -# /adv/ads/* (easylist.txt: 2679) -/(.*/)?adv/ads/.* -# /adv/adriver (easylist.txt: 2678) -/(.*/)?adv/adriver -# /adv.png (easylist.txt: 2677) -/(.*/)?adv\.png -adv.png*. -# /adv.php (easylist.txt: 2676) -/(.*/)?adv\.php -adv.php*. -# /adv.jsp (easylist.txt: 2675) -/(.*/)?adv\.jsp -adv.jsp*. -# /adv.html (easylist.txt: 2674) -/(.*/)?adv\.html -adv.html*. -# /adv.css? (easylist.txt: 2673) -/(.*/)?adv\.css\? -# /adv.asp (easylist.txt: 2672) -/(.*/)?adv\.asp -adv.asp*. -# /adv-socialbar- (easylist.txt: 2671) -/(.*/)?adv-socialbar- -adv-socialbar-*. -# /adv-scroll. (easylist.txt: 2670) -/(.*/)?adv-scroll\. -adv-scroll.*. -# /adv-f. (easylist.txt: 2669) -/(.*/)?adv-f\. -adv-f.*. -# /adv-ext- (easylist.txt: 2668) -/(.*/)?adv-ext- -adv-ext-*. -# /adv-expand/* (easylist.txt: 2667) -/(.*/)?adv-expand/.* -# /adv-div- (easylist.txt: 2666) -/(.*/)?adv-div- -adv-div-*. -# /adv-banners/* (easylist.txt: 2665) -/(.*/)?adv-banners/.* -# /adv-bannerize- (easylist.txt: 2664) -/(.*/)?adv-bannerize- -adv-bannerize-*. -# /adv-banner. (easylist.txt: 2663) -/(.*/)?adv-banner\. -adv-banner.*. -# /adv-2. (easylist.txt: 2662) -/(.*/)?adv-2\. -adv-2.*. -# /adv-1. (easylist.txt: 2661) -/(.*/)?adv-1\. -adv-1.*. -# /aduxads/* (easylist.txt: 2660) -/(.*/)?aduxads/.* -# /aduxads. (easylist.txt: 2659) -/(.*/)?aduxads\. -aduxads.*. -# /adutils. (easylist.txt: 2658) -/(.*/)?adutils\. -adutils.*. -# /adutil. (easylist.txt: 2657) -/(.*/)?adutil\. -adutil.*. -# /adunix. (easylist.txt: 2656) -/(.*/)?adunix\. -adunix.*. -# /adunittop| (easylist.txt: 2655) -/(.*/)?adunittop$ -# /adunits? (easylist.txt: 2654) -/(.*/)?adunits\? -# /adunits/* (easylist.txt: 2653) -/(.*/)?adunits/.* -# /adunits. (easylist.txt: 2652) -/(.*/)?adunits\. -adunits.*. -# /adunit/* (easylist.txt: 2651) -/(.*/)?adunit/.* -# /adunit. (easylist.txt: 2650) -/(.*/)?adunit\. -adunit.*. -# /adultimate. (easylist.txt: 2649) -/(.*/)?adultimate\. -adultimate.*. -# /adultadworldpop_ (easylist.txt: 2648) -/(.*/)?adultadworldpop_ -# /adtype= (easylist.txt: 2647) -/(.*/)?adtype= -# /adtype. (easylist.txt: 2646) -/(.*/)?adtype\. -adtype.*. -# /adtxt. (easylist.txt: 2645) -/(.*/)?adtxt\. -adtxt.*. -# /adtvideo. (easylist.txt: 2644) -/(.*/)?adtvideo\. -adtvideo.*. -# /adttext. (easylist.txt: 2643) -/(.*/)?adttext\. -adttext.*. -# /adttext- (easylist.txt: 2642) -/(.*/)?adttext- -adttext-*. -# /adtraff. (easylist.txt: 2641) -/(.*/)?adtraff\. -adtraff.*. -# /adtracking/* (easylist.txt: 2640) -/(.*/)?adtracking/.* -# /adtracking. (easylist.txt: 2639) -/(.*/)?adtracking\. -adtracking.*. -# /adtracker? (easylist.txt: 2638) -/(.*/)?adtracker\? -# /adtracker/* (easylist.txt: 2637) -/(.*/)?adtracker/.* -# /adtracker. (easylist.txt: 2636) -/(.*/)?adtracker\. -adtracker.*. -# /adtrack/* (easylist.txt: 2635) -/(.*/)?adtrack/.* -# /adtrack. (easylist.txt: 2634) -/(.*/)?adtrack\. -adtrack.*. -# /adtopsky. (easylist.txt: 2633) -/(.*/)?adtopsky\. -adtopsky.*. -# /adtopright. (easylist.txt: 2632) -/(.*/)?adtopright\. -adtopright.*. -# /adtopmidsky. (easylist.txt: 2631) -/(.*/)?adtopmidsky\. -adtopmidsky.*. -# /adtopleft. (easylist.txt: 2630) -/(.*/)?adtopleft\. -adtopleft.*. -# /adtopcenter. (easylist.txt: 2629) -/(.*/)?adtopcenter\. -adtopcenter.*. -# /adtop728. (easylist.txt: 2628) -/(.*/)?adtop728\. -adtop728.*. -# /adtop300. (easylist.txt: 2627) -/(.*/)?adtop300\. -adtop300.*. -# /adtop160. (easylist.txt: 2626) -/(.*/)?adtop160\. -adtop160.*. -# /adtop. (easylist.txt: 2625) -/(.*/)?adtop\. -adtop.*. -# /adtooltip/* (easylist.txt: 2624) -/(.*/)?adtooltip/.* -# /adtools2. (easylist.txt: 2623) -/(.*/)?adtools2\. -adtools2.*. -# /adtools/* (easylist.txt: 2622) -/(.*/)?adtools/.* -# /adtool/* (easylist.txt: 2621) -/(.*/)?adtool/.* -# /adtonomy. (easylist.txt: 2620) -/(.*/)?adtonomy\. -adtonomy.*. -# /adtomo/* (easylist.txt: 2619) -/(.*/)?adtomo/.* -# /adtology. (easylist.txt: 2618) -/(.*/)?adtology\. -adtology.*. -# /adtitle. (easylist.txt: 2617) -/(.*/)?adtitle\. -adtitle.*. -# /adtimage. (easylist.txt: 2616) -/(.*/)?adtimage\. -adtimage.*. -# /adtextmpu2. (easylist.txt: 2615) -/(.*/)?adtextmpu2\. -adtextmpu2.*. -# /adtext_ (easylist.txt: 2614) -/(.*/)?adtext_ -# /adtext4. (easylist.txt: 2613) -/(.*/)?adtext4\. -adtext4.*. -# /adtext2. (easylist.txt: 2612) -/(.*/)?adtext2\. -adtext2.*. -# /adtext. (easylist.txt: 2611) -/(.*/)?adtext\. -adtext.*. -# /adtest/* (easylist.txt: 2610) -/(.*/)?adtest/.* -# /adtest. (easylist.txt: 2609) -/(.*/)?adtest\. -adtest.*. -# /adtechscript. (easylist.txt: 2608) -/(.*/)?adtechscript\. -adtechscript.*. -# /adtechHeader. (easylist.txt: 2607) -/(.*/)?adtechHeader\. -adtechHeader.*. -# /adtechglobalsettings.js (easylist.txt: 2606) -/(.*/)?adtechglobalsettings\.js -adtechglobalsettings.js*. -# /adtech_ (easylist.txt: 2605) -/(.*/)?adtech_ -# /adtech; (easylist.txt: 2604) -/(.*/)?adtech; -# /adtech/* (easylist.txt: 2603) -/(.*/)?adtech/.* -# /adtech. (easylist.txt: 2602) -/(.*/)?adtech\. -adtech.*. -# /adtech- (easylist.txt: 2601) -/(.*/)?adtech- -adtech-*. -# /adtaobao. (easylist.txt: 2600) -/(.*/)?adtaobao\. -adtaobao.*. -# /adtaily_ (easylist.txt: 2599) -/(.*/)?adtaily_ -# /adtagtranslator. (easylist.txt: 2598) -/(.*/)?adtagtranslator\. -adtagtranslator.*. -# /adtagtc. (easylist.txt: 2597) -/(.*/)?adtagtc\. -adtagtc.*. -# /adtags/* (easylist.txt: 2596) -/(.*/)?adtags/.* -# /adtags. (easylist.txt: 2595) -/(.*/)?adtags\. -adtags.*. -# /adTagRequest. (easylist.txt: 2594) -/(.*/)?adTagRequest\. -adTagRequest.*. -# /adtago. (easylist.txt: 2593) -/(.*/)?adtago\. -adtago.*. -# /adtaggingsubsec. (easylist.txt: 2592) -/(.*/)?adtaggingsubsec\. -adtaggingsubsec.*. -# /adtagcms. (easylist.txt: 2591) -/(.*/)?adtagcms\. -adtagcms.*. -# /adtag_ (easylist.txt: 2590) -/(.*/)?adtag_ -# /adtag? (easylist.txt: 2589) -/(.*/)?adtag\? -# /adtag/* (easylist.txt: 2588) -/(.*/)?adtag/.* -# /adtag. (easylist.txt: 2587) -/(.*/)?adtag\. -adtag.*. -# /adtadd1. (easylist.txt: 2586) -/(.*/)?adtadd1\. -adtadd1.*. -# /adtabs. (easylist.txt: 2585) -/(.*/)?adtabs\. -adtabs.*. -# /adtable_ (easylist.txt: 2584) -/(.*/)?adtable_ -# /ads~adsize~ (easylist.txt: 2583) -/(.*/)?ads~adsize~ -# /adsystem/* (easylist.txt: 2582) -/(.*/)?adsystem/.* -# /adsystem. (easylist.txt: 2581) -/(.*/)?adsystem\. -adsystem.*. -# /adsys/* (easylist.txt: 2580) -/(.*/)?adsys/.* -# /adsys. (easylist.txt: 2579) -/(.*/)?adsys\. -adsys.*. -# /adsyndication/* (easylist.txt: 2578) -/(.*/)?adsyndication/.* -# /adsyndication. (easylist.txt: 2577) -/(.*/)?adsyndication\. -adsyndication.*. -# /adsync/* (easylist.txt: 2576) -/(.*/)?adsync/.* -# /adsxml/* (easylist.txt: 2575) -/(.*/)?adsxml/.* -# /adsx_728. (easylist.txt: 2574) -/(.*/)?adsx_728\. -# /adsx728. (easylist.txt: 2573) -/(.*/)?adsx728\. -adsx728.*. -# /adsx/* (easylist.txt: 2572) -/(.*/)?adsx/.* -# /adswrapperintl. (easylist.txt: 2571) -/(.*/)?adswrapperintl\. -adswrapperintl.*. -# /adswrapper3. (easylist.txt: 2570) -/(.*/)?adswrapper3\. -adswrapper3.*. -# /adswrapper. (easylist.txt: 2569) -/(.*/)?adswrapper\. -adswrapper.*. -# /adsword. (easylist.txt: 2568) -/(.*/)?adsword\. -adsword.*. -# /adswidejs. (easylist.txt: 2567) -/(.*/)?adswidejs\. -adswidejs.*. -# /adswide. (easylist.txt: 2566) -/(.*/)?adswide\. -adswide.*. -# /adsweb. (easylist.txt: 2565) -/(.*/)?adsweb\. -adsweb.*. -# /adswap/* (easylist.txt: 2564) -/(.*/)?adswap/.* -# /adswap. (easylist.txt: 2563) -/(.*/)?adswap\. -adswap.*. -# /adswap- (easylist.txt: 2562) -/(.*/)?adswap- -adswap-*. -# /adsvr2. (easylist.txt: 2561) -/(.*/)?adsvr2\. -adsvr2.*. -# /adsvr. (easylist.txt: 2560) -/(.*/)?adsvr\. -adsvr.*. -# /adsvo. (easylist.txt: 2559) -/(.*/)?adsvo\. -adsvo.*. -# /adsvariables. (easylist.txt: 2558) -/(.*/)?adsvariables\. -adsvariables.*. -# /adsup. (easylist.txt: 2557) -/(.*/)?adsup\. -adsup.*. -# /adsummos2. (easylist.txt: 2556) -/(.*/)?adsummos2\. -adsummos2.*. -# /adsummos. (easylist.txt: 2555) -/(.*/)?adsummos\. -adsummos.*. -# /adstyle. (easylist.txt: 2554) -/(.*/)?adstyle\. -adstyle.*. -# /adstx. (easylist.txt: 2553) -/(.*/)?adstx\. -adstx.*. -# /adstubs/* (easylist.txt: 2552) -/(.*/)?adstubs/.* -# /adstube/* (easylist.txt: 2551) -/(.*/)?adstube/.* -# /adstub. (easylist.txt: 2550) -/(.*/)?adstub\. -adstub.*. -# /adstrm/* (easylist.txt: 2549) -/(.*/)?adstrm/.* -# /adstrk. (easylist.txt: 2548) -/(.*/)?adstrk\. -adstrk.*. -# /adStrip. (easylist.txt: 2547) -/(.*/)?adStrip\. -adStrip.*. -# /adstreamjscontroller. (easylist.txt: 2546) -/(.*/)?adstreamjscontroller\. -adstreamjscontroller.*. -# /adstream_ (easylist.txt: 2545) -/(.*/)?adstream_ -# /adstream. (easylist.txt: 2544) -/(.*/)?adstream\. -adstream.*. -# /adStrategies/* (easylist.txt: 2543) -/(.*/)?adStrategies/.* -# /adstract/* (easylist.txt: 2542) -/(.*/)?adstract/.* -# /adstracking. (easylist.txt: 2541) -/(.*/)?adstracking\. -adstracking.*. -# /adstorage. (easylist.txt: 2540) -/(.*/)?adstorage\. -adstorage.*. -# /adstop_ (easylist.txt: 2539) -/(.*/)?adstop_ -# /adstop728. (easylist.txt: 2538) -/(.*/)?adstop728\. -adstop728.*. -# /adstop. (easylist.txt: 2537) -/(.*/)?adstop\. -adstop.*. -# /adstitle. (easylist.txt: 2536) -/(.*/)?adstitle\. -adstitle.*. -# /adstemplate/* (easylist.txt: 2535) -/(.*/)?adstemplate/.* -# /adstatic/* (easylist.txt: 2534) -/(.*/)?adstatic/.* -# /adstatic. (easylist.txt: 2533) -/(.*/)?adstatic\. -adstatic.*. -# /adstakeover. (easylist.txt: 2532) -/(.*/)?adstakeover\. -adstakeover.*. -# /adstacodaeu. (easylist.txt: 2531) -/(.*/)?adstacodaeu\. -adstacodaeu.*. -# /adssrv. (easylist.txt: 2530) -/(.*/)?adssrv\. -adssrv.*. -# /adssp. (easylist.txt: 2529) -/(.*/)?adssp\. -adssp.*. -# /adsshow/* (easylist.txt: 2528) -/(.*/)?adsshow/.* -# /AdsShow. (easylist.txt: 2527) -/(.*/)?AdsShow\. -AdsShow.*. -# /adsserver. (easylist.txt: 2526) -/(.*/)?adsserver\. -adsserver.*. -# /adsserv. (easylist.txt: 2525) -/(.*/)?adsserv\. -adsserv.*. -# /adsscript. (easylist.txt: 2524) -/(.*/)?adsscript\. -adsscript.*. -# /adss.asp (easylist.txt: 2523) -/(.*/)?adss\.asp -adss.asp*. -# /adsrv2/* (easylist.txt: 2522) -/(.*/)?adsrv2/.* -# /adsrv/* (easylist.txt: 2521) -/(.*/)?adsrv/.* -# /adsrv. (easylist.txt: 2520) -/(.*/)?adsrv\. -adsrv.*. -# /adsrules/* (easylist.txt: 2519) -/(.*/)?adsrules/.* -# /adsrule. (easylist.txt: 2518) -/(.*/)?adsrule\. -adsrule.*. -# /adsrotator. (easylist.txt: 2517) -/(.*/)?adsrotator\. -adsrotator.*. -# /AdsRotateNEWHeader. (easylist.txt: 2516) -/(.*/)?AdsRotateNEWHeader\. -AdsRotateNEWHeader.*. -# /AdsRotateNEW2right. (easylist.txt: 2515) -/(.*/)?AdsRotateNEW2right\. -AdsRotateNEW2right.*. -# /AdsRotateNEW1right. (easylist.txt: 2514) -/(.*/)?AdsRotateNEW1right\. -AdsRotateNEW1right.*. -# /adsrotateheader. (easylist.txt: 2513) -/(.*/)?adsrotateheader\. -adsrotateheader.*. -# /adsrotate2left. (easylist.txt: 2512) -/(.*/)?adsrotate2left\. -adsrotate2left.*. -# /adsrotate1right. (easylist.txt: 2511) -/(.*/)?adsrotate1right\. -adsrotate1right.*. -# /adsrotate1left. (easylist.txt: 2510) -/(.*/)?adsrotate1left\. -adsrotate1left.*. -# /adsrotate. (easylist.txt: 2509) -/(.*/)?adsrotate\. -adsrotate.*. -# /adsrot2. (easylist.txt: 2508) -/(.*/)?adsrot2\. -adsrot2.*. -# /adsrot. (easylist.txt: 2507) -/(.*/)?adsrot\. -adsrot.*. -# /adsright. (easylist.txt: 2506) -/(.*/)?adsright\. -adsright.*. -# /adsrich. (easylist.txt: 2505) -/(.*/)?adsrich\. -adsrich.*. -# /adsresources/* (easylist.txt: 2504) -/(.*/)?adsresources/.* -# /adsreporting/* (easylist.txt: 2503) -/(.*/)?adsreporting/.* -# /adsremote. (easylist.txt: 2502) -/(.*/)?adsremote\. -adsremote.*. -# /adsrc300. (easylist.txt: 2501) -/(.*/)?adsrc300\. -adsrc300.*. -# /adsrc. (easylist.txt: 2500) -/(.*/)?adsrc\. -adsrc.*. -# /adsquareleft. (easylist.txt: 2499) -/(.*/)?adsquareleft\. -adsquareleft.*. -# /adsquare. (easylist.txt: 2498) -/(.*/)?adsquare\. -adsquare.*. -# /adsq/* (easylist.txt: 2497) -/(.*/)?adsq/.* -# /AdsPublisher. (easylist.txt: 2496) -/(.*/)?AdsPublisher\. -AdsPublisher.*. -# /adspro/* (easylist.txt: 2495) -/(.*/)?adspro/.* -# /adspots/* (easylist.txt: 2494) -/(.*/)?adspots/.* -# /adspot_ (easylist.txt: 2493) -/(.*/)?adspot_ -# /adspot/* (easylist.txt: 2492) -/(.*/)?adspot/.* -# /adspot. (easylist.txt: 2491) -/(.*/)?adspot\. -adspot.*. -# /adsponsor. (easylist.txt: 2490) -/(.*/)?adsponsor\. -adsponsor.*. -# /adsplupu. (easylist.txt: 2489) -/(.*/)?adsplupu\. -adsplupu.*. -# /adsPlugin/* (easylist.txt: 2488) -/(.*/)?adsPlugin/.* -# /AdsPlugin. (easylist.txt: 2487) -/(.*/)?AdsPlugin\. -AdsPlugin.*. -# /Adsplex- (easylist.txt: 2486) -/(.*/)?Adsplex- -Adsplex-*. -# /adsplay. (easylist.txt: 2485) -/(.*/)?adsplay\. -adsplay.*. -# /adspeeler/* (easylist.txt: 2484) -/(.*/)?adspeeler/.* -# /adspan. (easylist.txt: 2483) -/(.*/)?adspan\. -adspan.*. -# /adspacer. (easylist.txt: 2482) -/(.*/)?adspacer\. -adspacer.*. -# /adspace? (easylist.txt: 2481) -/(.*/)?adspace\? -# /adspace2. (easylist.txt: 2480) -/(.*/)?adspace2\. -adspace2.*. -# /AdSpace160x60. (easylist.txt: 2479) -/(.*/)?AdSpace160x60\. -AdSpace160x60.*. -# /adspace1. (easylist.txt: 2478) -/(.*/)?adspace1\. -adspace1.*. -# /adspace/* (easylist.txt: 2477) -/(.*/)?adspace/.* -# /adspace. (easylist.txt: 2476) -/(.*/)?adspace\. -adspace.*. -# /adsp/* (easylist.txt: 2475) -/(.*/)?adsp/.* -# /adsoverlay_ (easylist.txt: 2474) -/(.*/)?adsoverlay_ -# /adsource_ (easylist.txt: 2473) -/(.*/)?adsource_ -# /adsopenx/* (easylist.txt: 2472) -/(.*/)?adsopenx/.* -# /adsonar. (easylist.txt: 2471) -/(.*/)?adsonar\. -adsonar.*. -# /adsniptrack. (easylist.txt: 2470) -/(.*/)?adsniptrack\. -adsniptrack.*. -# /adsnippet. (easylist.txt: 2469) -/(.*/)?adsnippet\. -adsnippet.*. -# /adsnip. (easylist.txt: 2468) -/(.*/)?adsnip\. -adsnip.*. -# /adsnew/* (easylist.txt: 2467) -/(.*/)?adsnew/.* -# /adsnew. (easylist.txt: 2466) -/(.*/)?adsnew\. -adsnew.*. -# /adsmodules/* (easylist.txt: 2465) -/(.*/)?adsmodules/.* -# /adsmm.dll/* (easylist.txt: 2464) -/(.*/)?adsmm\.dll/.* -adsmm.dll/.* -# /adsmedia_ (easylist.txt: 2463) -/(.*/)?adsmedia_ -# /adsManagerV2. (easylist.txt: 2462) -/(.*/)?adsManagerV2\. -adsManagerV2.*. -# /adsmanager/* (easylist.txt: 2461) -/(.*/)?adsmanager/.* -# /adsmanagement/* (easylist.txt: 2460) -/(.*/)?adsmanagement/.* -# /adsm2. (easylist.txt: 2459) -/(.*/)?adsm2\. -adsm2.*. -# /adslugs/* (easylist.txt: 2458) -/(.*/)?adslugs/.* -# /adslug_ (easylist.txt: 2457) -/(.*/)?adslug_ -# /adslug- (easylist.txt: 2456) -/(.*/)?adslug- -adslug-*. -# /adslots. (easylist.txt: 2455) -/(.*/)?adslots\. -adslots.*. -# /adsline. (easylist.txt: 2454) -/(.*/)?adsline\. -adsline.*. -# /adslides. (easylist.txt: 2453) -/(.*/)?adslides\. -adslides.*. -# /adslide. (easylist.txt: 2452) -/(.*/)?adslide\. -adslide.*. -# /adskyscraper. (easylist.txt: 2451) -/(.*/)?adskyscraper\. -adskyscraper.*. -# /adskyright. (easylist.txt: 2450) -/(.*/)?adskyright\. -adskyright.*. -# /adsky. (easylist.txt: 2449) -/(.*/)?adsky\. -adsky.*. -# /adskin/* (easylist.txt: 2448) -/(.*/)?adskin/.* -# /adsjs. (easylist.txt: 2447) -/(.*/)?adsjs\. -adsjs.*. -# /adsites/* (easylist.txt: 2446) -/(.*/)?adsites/.* -# /adsite/* (easylist.txt: 2445) -/(.*/)?adsite/.* -# /adsinsert. (easylist.txt: 2444) -/(.*/)?adsinsert\. -adsinsert.*. -# /adsindie/* (easylist.txt: 2443) -/(.*/)?adsindie/.* -# /adsinclude. (easylist.txt: 2442) -/(.*/)?adsinclude\. -adsinclude.*. -# /adsImg/* (easylist.txt: 2441) -/(.*/)?adsImg/.* -# /adsimages/* (easylist.txt: 2440) -/(.*/)?adsimages/.* -# /adsimage/* (easylist.txt: 2439) -/(.*/)?adsimage/.* -# /adsign. (easylist.txt: 2438) -/(.*/)?adsign\. -adsign.*. -# /adsiframe/* (easylist.txt: 2437) -/(.*/)?adsiframe/.* -# /adsiframe. (easylist.txt: 2436) -/(.*/)?adsiframe\. -adsiframe.*. -# /adsidebarrect. (easylist.txt: 2435) -/(.*/)?adsidebarrect\. -adsidebarrect.*. -# /adsidebar. (easylist.txt: 2434) -/(.*/)?adsidebar\. -adsidebar.*. -# /adsicon/* (easylist.txt: 2433) -/(.*/)?adsicon/.* -# /adsico3. (easylist.txt: 2432) -/(.*/)?adsico3\. -adsico3.*. -# /adsico2. (easylist.txt: 2431) -/(.*/)?adsico2\. -adsico2.*. -# /adsico. (easylist.txt: 2430) -/(.*/)?adsico\. -adsico.*. -# /adsi-j. (easylist.txt: 2429) -/(.*/)?adsi-j\. -adsi-j.*. -# /adshtml2/* (easylist.txt: 2428) -/(.*/)?adshtml2/.* -# /adshow_ (easylist.txt: 2427) -/(.*/)?adshow_ -# /adshow? (easylist.txt: 2426) -/(.*/)?adshow\? -# /adshow/* (easylist.txt: 2425) -/(.*/)?adshow/.* -# /adshow. (easylist.txt: 2424) -/(.*/)?adshow\. -adshow.*. -# /adshow- (easylist.txt: 2423) -/(.*/)?adshow- -adshow-*. -# /adsheader. (easylist.txt: 2422) -/(.*/)?adsheader\. -adsheader.*. -# /adshare3. (easylist.txt: 2421) -/(.*/)?adshare3\. -adshare3.*. -# /adshare/* (easylist.txt: 2420) -/(.*/)?adshare/.* -# /adshare. (easylist.txt: 2419) -/(.*/)?adshare\. -adshare.*. -# /adshandler. (easylist.txt: 2418) -/(.*/)?adshandler\. -adshandler.*. -# /adsGooglePP3. (easylist.txt: 2417) -/(.*/)?adsGooglePP3\. -adsGooglePP3.*. -# /adsgame. (easylist.txt: 2416) -/(.*/)?adsgame\. -adsgame.*. -# /adsfuse- (easylist.txt: 2415) -/(.*/)?adsfuse- -adsfuse-*. -# /adsframe. (easylist.txt: 2414) -/(.*/)?adsframe\. -adsframe.*. -# /adsfolder/* (easylist.txt: 2413) -/(.*/)?adsfolder/.* -# /adsfloat. (easylist.txt: 2412) -/(.*/)?adsfloat\. -adsfloat.*. -# /adsfinal. (easylist.txt: 2411) -/(.*/)?adsfinal\. -adsfinal.*. -# /adsfiles. (easylist.txt: 2410) -/(.*/)?adsfiles\. -adsfiles.*. -# /adsfile. (easylist.txt: 2409) -/(.*/)?adsfile\. -adsfile.*. -# /adsfetch. (easylist.txt: 2408) -/(.*/)?adsfetch\. -adsfetch.*. -# /adsfac. (easylist.txt: 2407) -/(.*/)?adsfac\. -adsfac.*. -# /adsetup_ (easylist.txt: 2406) -/(.*/)?adsetup_ -# /adsetup. (easylist.txt: 2405) -/(.*/)?adsetup\. -adsetup.*. -# /adsession_ (easylist.txt: 2404) -/(.*/)?adsession_ -# /adsession. (easylist.txt: 2403) -/(.*/)?adsession\. -adsession.*. -# /adserv|*|adtech; (easylist.txt: 2402) -/(.*/)?adserv\|.*\|adtech; -# /AdServlet? (easylist.txt: 2401) -/(.*/)?AdServlet\? -# /adserving_ (easylist.txt: 2400) -/(.*/)?adserving_ -# /adserving/* (easylist.txt: 2399) -/(.*/)?adserving/.* -# /adserving. (easylist.txt: 2398) -/(.*/)?adserving\. -adserving.*. -# /adservice| (easylist.txt: 2397) -/(.*/)?adservice$ -# /adservices/* (easylist.txt: 2396) -/(.*/)?adservices/.* -# /adservice/* (easylist.txt: 2395) -/(.*/)?adservice/.* -# /adservice. (easylist.txt: 2394) -/(.*/)?adservice\. -adservice.*. -# /adservice- (easylist.txt: 2393) -/(.*/)?adservice- -adservice-*. -# /adservervastvideovizu. (easylist.txt: 2392) -/(.*/)?adservervastvideovizu\. -adservervastvideovizu.*. -# /adserverstore. (easylist.txt: 2391) -/(.*/)?adserverstore\. -adserverstore.*. -# /adserversolutions/* (easylist.txt: 2390) -/(.*/)?adserversolutions/.* -# /adservers- (easylist.txt: 2389) -/(.*/)?adservers- -adservers-*. -# /adserverpub? (easylist.txt: 2388) -/(.*/)?adserverpub\? -# /adserverdata. (easylist.txt: 2387) -/(.*/)?adserverdata\. -adserverdata.*. -# /adserver_ (easylist.txt: 2386) -/(.*/)?adserver_ -# /adserver? (easylist.txt: 2385) -/(.*/)?adserver\? -# /adserver8strip. (easylist.txt: 2384) -/(.*/)?adserver8strip\. -adserver8strip.*. -# /adserver7/* (easylist.txt: 2383) -/(.*/)?adserver7/.* -# /adserver3. (easylist.txt: 2382) -/(.*/)?adserver3\. -adserver3.*. -# /adserver2/* (easylist.txt: 2381) -/(.*/)?adserver2/.* -# /adserver2. (easylist.txt: 2380) -/(.*/)?adserver2\. -adserver2.*. -# /adserver1. (easylist.txt: 2379) -/(.*/)?adserver1\. -adserver1.*. -# /adserver1- (easylist.txt: 2378) -/(.*/)?adserver1- -adserver1-*. -# /adserver/* (easylist.txt: 2377) -/(.*/)?adserver/.* -# /adserver. (easylist.txt: 2376) -/(.*/)?adserver\. -adserver.*. -# /adserver- (easylist.txt: 2375) -/(.*/)?adserver- -adserver-*. -# /adserve_ (easylist.txt: 2374) -/(.*/)?adserve_ -# /adserve/* (easylist.txt: 2373) -/(.*/)?adserve/.* -# /adserve. (easylist.txt: 2372) -/(.*/)?adserve\. -adserve.*. -# /adserve- (easylist.txt: 2371) -/(.*/)?adserve- -adserve-*. -# /adserv_ (easylist.txt: 2370) -/(.*/)?adserv_ -# /adserv3. (easylist.txt: 2369) -/(.*/)?adserv3\. -adserv3.*. -# /adserv2. (easylist.txt: 2368) -/(.*/)?adserv2\. -adserv2.*. -# /adserv1. (easylist.txt: 2367) -/(.*/)?adserv1\. -adserv1.*. -# /adserv/* (easylist.txt: 2366) -/(.*/)?adserv/.* -# /adserv. (easylist.txt: 2365) -/(.*/)?adserv\. -adserv.*. -# /adser/* (easylist.txt: 2364) -/(.*/)?adser/.* -# /adseperator_ (easylist.txt: 2363) -/(.*/)?adseperator_ -# /adseo/* (easylist.txt: 2362) -/(.*/)?adseo/.* -# /adseo. (easylist.txt: 2361) -/(.*/)?adseo\. -adseo.*. -# /adsenze. (easylist.txt: 2360) -/(.*/)?adsenze\. -adsenze.*. -# /adsensev2. (easylist.txt: 2359) -/(.*/)?adsensev2\. -adsensev2.*. -# /adsensets. (easylist.txt: 2358) -/(.*/)?adsensets\. -adsensets.*. -# /adsensegoogle. (easylist.txt: 2357) -/(.*/)?adsensegoogle\. -adsensegoogle.*. -# /adsensegb. (easylist.txt: 2356) -/(.*/)?adsensegb\. -adsensegb.*. -# /AdsenseBlockView. (easylist.txt: 2355) -/(.*/)?AdsenseBlockView\. -AdsenseBlockView.*. -# /adsense_ (easylist.txt: 2354) -/(.*/)?adsense_ -# /adsense? (easylist.txt: 2353) -/(.*/)?adsense\? -# /adsense5. (easylist.txt: 2352) -/(.*/)?adsense5\. -adsense5.*. -# /adsense4. (easylist.txt: 2351) -/(.*/)?adsense4\. -adsense4.*. -# /adsense3. (easylist.txt: 2350) -/(.*/)?adsense3\. -adsense3.*. -# /adsense250. (easylist.txt: 2349) -/(.*/)?adsense250\. -adsense250.*. -# /adsense24. (easylist.txt: 2348) -/(.*/)?adsense24\. -adsense24.*. -# /adsense23. (easylist.txt: 2347) -/(.*/)?adsense23\. -adsense23.*. -# /adsense2. (easylist.txt: 2346) -/(.*/)?adsense2\. -adsense2.*. -# /adsense1. (easylist.txt: 2345) -/(.*/)?adsense1\. -adsense1.*. -# /adsense/* (easylist.txt: 2344) -/(.*/)?adsense/.* -# /adsense. (easylist.txt: 2343) -/(.*/)?adsense\. -adsense.*. -# /adsense- (easylist.txt: 2342) -/(.*/)?adsense- -adsense-*. -# /adsEnd. (easylist.txt: 2341) -/(.*/)?adsEnd\. -adsEnd.*. -# /adsenceSearchTop. (easylist.txt: 2340) -/(.*/)?adsenceSearchTop\. -adsenceSearchTop.*. -# /adsenceSearch. (easylist.txt: 2339) -/(.*/)?adsenceSearch\. -adsenceSearch.*. -# /adsence. (easylist.txt: 2338) -/(.*/)?adsence\. -adsence.*. -# /adseller/* (easylist.txt: 2337) -/(.*/)?adseller/.* -# /adsegmentation. (easylist.txt: 2336) -/(.*/)?adsegmentation\. -adsegmentation.*. -# /adsecondary. (easylist.txt: 2335) -/(.*/)?adsecondary\. -adsecondary.*. -# /adSearch? (easylist.txt: 2334) -/(.*/)?adSearch\? -# /adsearch. (easylist.txt: 2333) -/(.*/)?adsearch\. -adsearch.*. -# /adsDynLoad/* (easylist.txt: 2332) -/(.*/)?adsDynLoad/.* -# /adsdyn160x160. (easylist.txt: 2331) -/(.*/)?adsdyn160x160\. -adsdyn160x160.*. -# /adsdm. (easylist.txt: 2330) -/(.*/)?adsdm\. -adsdm.*. -# /adsdfp/* (easylist.txt: 2329) -/(.*/)?adsdfp/.* -# /adsdelivery. (easylist.txt: 2328) -/(.*/)?adsdelivery\. -adsdelivery.*. -# /adsDateValidation. (easylist.txt: 2327) -/(.*/)?adsDateValidation\. -adsDateValidation.*. -# /adsdaqsky_ (easylist.txt: 2326) -/(.*/)?adsdaqsky_ -# /adsdaqbox_ (easylist.txt: 2325) -/(.*/)?adsdaqbox_ -# /adsdaqbanner_ (easylist.txt: 2324) -/(.*/)?adsdaqbanner_ -# /adsdaq_ (easylist.txt: 2323) -/(.*/)?adsdaq_ -# /adscroll. (easylist.txt: 2322) -/(.*/)?adscroll\. -adscroll.*. -# /adscripts3. (easylist.txt: 2321) -/(.*/)?adscripts3\. -adscripts3.*. -# /adscripts2. (easylist.txt: 2320) -/(.*/)?adscripts2\. -adscripts2.*. -# /adscripts1. (easylist.txt: 2319) -/(.*/)?adscripts1\. -adscripts1.*. -# /adscripts/* (easylist.txt: 2318) -/(.*/)?adscripts/.* -# /adscript_ (easylist.txt: 2317) -/(.*/)?adscript_ -# /adscript1. (easylist.txt: 2316) -/(.*/)?adscript1\. -adscript1.*. -# /adscript. (easylist.txt: 2315) -/(.*/)?adscript\. -adscript.*. -# /adscpv/* (easylist.txt: 2314) -/(.*/)?adscpv/.* -# /adscontent2. (easylist.txt: 2313) -/(.*/)?adscontent2\. -adscontent2.*. -# /adscontent. (easylist.txt: 2312) -/(.*/)?adscontent\. -adscontent.*. -# /adscluster. (easylist.txt: 2311) -/(.*/)?adscluster\. -adscluster.*. -# /adscloud. (easylist.txt: 2310) -/(.*/)?adscloud\. -adscloud.*. -# /adscaleskyscraper. (easylist.txt: 2309) -/(.*/)?adscaleskyscraper\. -adscaleskyscraper.*. -# /adscalecontentad. (easylist.txt: 2308) -/(.*/)?adscalecontentad\. -adscalecontentad.*. -# /adscalebigsize. (easylist.txt: 2307) -/(.*/)?adscalebigsize\. -adscalebigsize.*. -# /adscale_ (easylist.txt: 2306) -/(.*/)?adscale_ -# /adscale1. (easylist.txt: 2305) -/(.*/)?adscale1\. -adscale1.*. -# /adscale. (easylist.txt: 2304) -/(.*/)?adscale\. -adscale.*. -# /adsbygoogle. (easylist.txt: 2303) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# /adsbycurse. (easylist.txt: 2302) -/(.*/)?adsbycurse\. -adsbycurse.*. -# /adsby. (easylist.txt: 2301) -/(.*/)?adsby\. -adsby.*. -# /adsbox. (easylist.txt: 2300) -/(.*/)?adsbox\. -adsbox.*. -# /adsbannerjs. (easylist.txt: 2299) -/(.*/)?adsbannerjs\. -adsbannerjs.*. -# /adsbanner/* (easylist.txt: 2298) -/(.*/)?adsbanner/.* -# /adsbanner. (easylist.txt: 2297) -/(.*/)?adsbanner\. -adsbanner.*. -# /adsbanner- (easylist.txt: 2296) -/(.*/)?adsbanner- -adsbanner-*. -# /adsatt. (easylist.txt: 2295) -/(.*/)?adsatt\. -adsatt.*. -# /adsAPI. (easylist.txt: 2294) -/(.*/)?adsAPI\. -adsAPI.*. -# /adsandtps/* (easylist.txt: 2293) -/(.*/)?adsandtps/.* -# /adsandbox. (easylist.txt: 2292) -/(.*/)?adsandbox\. -adsandbox.*. -# /adsample. (easylist.txt: 2291) -/(.*/)?adsample\. -adsample.*. -# /adsame. (easylist.txt: 2290) -/(.*/)?adsame\. -adsame.*. -# /adsales/* (easylist.txt: 2289) -/(.*/)?adsales/.* -# /AdsAjaxRefresh. (easylist.txt: 2288) -/(.*/)?AdsAjaxRefresh\. -AdsAjaxRefresh.*. -# /adsadview. (easylist.txt: 2287) -/(.*/)?adsadview\. -adsadview.*. -# /adsadclient31. (easylist.txt: 2286) -/(.*/)?adsadclient31\. -adsadclient31.*. -# /adsa728. (easylist.txt: 2285) -/(.*/)?adsa728\. -adsa728.*. -# /adsa468. (easylist.txt: 2284) -/(.*/)?adsa468\. -adsa468.*. -# /ads_yahoo. (easylist.txt: 2283) -/(.*/)?ads_yahoo\. -# /Ads_WFC. (easylist.txt: 2282) -/(.*/)?Ads_WFC\. -# /ads_view. (easylist.txt: 2281) -/(.*/)?ads_view\. -# /ads_ui. (easylist.txt: 2280) -/(.*/)?ads_ui\. -# /ads_topbar_ (easylist.txt: 2279) -/(.*/)?ads_topbar_ -# /ads_top_ (easylist.txt: 2278) -/(.*/)?ads_top_ -# /ads_text_ (easylist.txt: 2277) -/(.*/)?ads_text_ -# /ads_start. (easylist.txt: 2276) -/(.*/)?ads_start\. -# /ads_sidebar. (easylist.txt: 2275) -/(.*/)?ads_sidebar\. -# /ads_show_ (easylist.txt: 2274) -/(.*/)?ads_show_ -# /ads_server_ (easylist.txt: 2273) -/(.*/)?ads_server_ -# /ads_reporting/* (easylist.txt: 2272) -/(.*/)?ads_reporting/.* -# /ads_redirect. (easylist.txt: 2271) -/(.*/)?ads_redirect\. -# /ads_r. (easylist.txt: 2270) -/(.*/)?ads_r\. -# /ads_pro/* (easylist.txt: 2269) -/(.*/)?ads_pro/.* -# /ads_premium. (easylist.txt: 2268) -/(.*/)?ads_premium\. -# /ads_php/* (easylist.txt: 2267) -/(.*/)?ads_php/.* -# /ads_patron. (easylist.txt: 2266) -/(.*/)?ads_patron\. -# /ads_openx_ (easylist.txt: 2265) -/(.*/)?ads_openx_ -# /ads_new/* (easylist.txt: 2264) -/(.*/)?ads_new/.* -# /ads_new. (easylist.txt: 2263) -/(.*/)?ads_new\. -# /ads_min_ (easylist.txt: 2262) -/(.*/)?ads_min_ -# /ads_medrec_ (easylist.txt: 2261) -/(.*/)?ads_medrec_ -# /ads_manager. (easylist.txt: 2260) -/(.*/)?ads_manager\. -# /ads_loader. (easylist.txt: 2259) -/(.*/)?ads_loader\. -# /ads_load/* (easylist.txt: 2258) -/(.*/)?ads_load/.* -# /ads_left_ (easylist.txt: 2257) -/(.*/)?ads_left_ -# /ads_leaderboard_ (easylist.txt: 2256) -/(.*/)?ads_leaderboard_ -# /ads_images/* (easylist.txt: 2255) -/(.*/)?ads_images/.* -# /ads_image/* (easylist.txt: 2254) -/(.*/)?ads_image/.* -# /ads_iframe. (easylist.txt: 2253) -/(.*/)?ads_iframe\. -# /ads_ifr. (easylist.txt: 2252) -/(.*/)?ads_ifr\. -# /ads_home_ (easylist.txt: 2251) -/(.*/)?ads_home_ -# /ads_google. (easylist.txt: 2250) -/(.*/)?ads_google\. -# /ads_gnm/* (easylist.txt: 2249) -/(.*/)?ads_gnm/.* -# /ads_global. (easylist.txt: 2248) -/(.*/)?ads_global\. -# /ads_gallery/* (easylist.txt: 2247) -/(.*/)?ads_gallery/.* -# /ads_frame. (easylist.txt: 2246) -/(.*/)?ads_frame\. -# /ads_footer. (easylist.txt: 2245) -/(.*/)?ads_footer\. -# /Ads_Fix. (easylist.txt: 2244) -/(.*/)?Ads_Fix\. -# /ads_files/* (easylist.txt: 2243) -/(.*/)?ads_files/.* -# /ads_event. (easylist.txt: 2242) -/(.*/)?ads_event\. -# /ads_display. (easylist.txt: 2241) -/(.*/)?ads_display\. -# /ads_dfp/* (easylist.txt: 2240) -/(.*/)?ads_dfp/.* -# /ads_controller. (easylist.txt: 2239) -/(.*/)?ads_controller\. -# /ads_config. (easylist.txt: 2238) -/(.*/)?ads_config\. -# /ads_codes/* (easylist.txt: 2237) -/(.*/)?ads_codes/.* -# /ads_code_ (easylist.txt: 2236) -/(.*/)?ads_code_ -# /ads_code. (easylist.txt: 2235) -/(.*/)?ads_code\. -# /ads_box_ (easylist.txt: 2234) -/(.*/)?ads_box_ -# /ads_bottom_ (easylist.txt: 2233) -/(.*/)?ads_bottom_ -# /ads_bottom. (easylist.txt: 2232) -/(.*/)?ads_bottom\. -# /ads_bg. (easylist.txt: 2231) -/(.*/)?ads_bg\. -# /ads_banners/* (easylist.txt: 2230) -/(.*/)?ads_banners/.* -# /ads_banner_ (easylist.txt: 2229) -/(.*/)?ads_banner_ -# /ads_ad_ (easylist.txt: 2228) -/(.*/)?ads_ad_ -# /ads_728_ (easylist.txt: 2227) -/(.*/)?ads_728_ -# /ads_6. (easylist.txt: 2226) -/(.*/)?ads_6\. -# /ads_300_ (easylist.txt: 2225) -/(.*/)?ads_300_ -# /ads_300. (easylist.txt: 2224) -/(.*/)?ads_300\. -# /ads_3. (easylist.txt: 2223) -/(.*/)?ads_3\. -# /ads_160_ (easylist.txt: 2222) -/(.*/)?ads_160_ -# /ads_1. (easylist.txt: 2221) -/(.*/)?ads_1\. -# /ads?zone_id= (easylist.txt: 2220) -/(.*/)?ads\?zone_id= -# /ads?zone= (easylist.txt: 2219) -/(.*/)?ads\?zone= -# /ads?spaceid (easylist.txt: 2218) -/(.*/)?ads\?spaceid -# /ads?id= (easylist.txt: 2217) -/(.*/)?ads\?id= -# /ads?callback (easylist.txt: 2216) -/(.*/)?ads\?callback -# /ads?apid (easylist.txt: 2215) -/(.*/)?ads\?apid -# /ads9/* (easylist.txt: 2214) -/(.*/)?ads9/.* -# /ads9. (easylist.txt: 2213) -/(.*/)?ads9\. -ads9.*. -# /ads88. (easylist.txt: 2212) -/(.*/)?ads88\. -ads88.*. -# /ads8/* (easylist.txt: 2211) -/(.*/)?ads8/.* -# /ads8. (easylist.txt: 2210) -/(.*/)?ads8\. -ads8.*. -# /ads790. (easylist.txt: 2209) -/(.*/)?ads790\. -ads790.*. -# /ads728x90a. (easylist.txt: 2208) -/(.*/)?ads728x90a\. -ads728x90a.*. -# /ads728x90_ (easylist.txt: 2207) -/(.*/)?ads728x90_ -# /ads728adn2. (easylist.txt: 2206) -/(.*/)?ads728adn2\. -ads728adn2.*. -# /ads728. (easylist.txt: 2205) -/(.*/)?ads728\. -ads728.*. -# /ads7/* (easylist.txt: 2204) -/(.*/)?ads7/.* -# /ads7. (easylist.txt: 2203) -/(.*/)?ads7\. -ads7.*. -# /ads620x60/* (easylist.txt: 2202) -/(.*/)?ads620x60/.* -# /ads600- (easylist.txt: 2201) -/(.*/)?ads600- -ads600-*. -# /ads6/* (easylist.txt: 2200) -/(.*/)?ads6/.* -# /ads6. (easylist.txt: 2199) -/(.*/)?ads6\. -ads6.*. -# /ads5t. (easylist.txt: 2198) -/(.*/)?ads5t\. -ads5t.*. -# /ads5/* (easylist.txt: 2197) -/(.*/)?ads5/.* -# /ads5. (easylist.txt: 2196) -/(.*/)?ads5\. -ads5.*. -# /ads4n. (easylist.txt: 2195) -/(.*/)?ads4n\. -ads4n.*. -# /ads4j. (easylist.txt: 2194) -/(.*/)?ads4j\. -ads4j.*. -# /ads468x60_ (easylist.txt: 2193) -/(.*/)?ads468x60_ -# /ads468x60. (easylist.txt: 2192) -/(.*/)?ads468x60\. -ads468x60.*. -# /ads468. (easylist.txt: 2191) -/(.*/)?ads468\. -ads468.*. -# /ads4/* (easylist.txt: 2190) -/(.*/)?ads4/.* -# /ads300x250px. (easylist.txt: 2188) -/(.*/)?ads300x250px\. -ads300x250px.*. -# /ads300x250_ (easylist.txt: 2187) -/(.*/)?ads300x250_ -# /ads300X2502. (easylist.txt: 2186) -/(.*/)?ads300X2502\. -ads300X2502.*. -# /ads300x250. (easylist.txt: 2185) -/(.*/)?ads300x250\. -ads300x250.*. -# /ads300adn2. (easylist.txt: 2184) -/(.*/)?ads300adn2\. -ads300adn2.*. -# /ads300. (easylist.txt: 2183) -/(.*/)?ads300\. -ads300.*. -# /ads3/* (easylist.txt: 2182) -/(.*/)?ads3/.* -# /ads3. (easylist.txt: 2181) -/(.*/)?ads3\. -ads3.*. -# /ads2x300new. (easylist.txt: 2180) -/(.*/)?ads2x300new\. -ads2x300new.*. -# /ads2_ (easylist.txt: 2179) -/(.*/)?ads2_ -# /ads210. (easylist.txt: 2178) -/(.*/)?ads210\. -ads210.*. -# /ads2013/* (easylist.txt: 2177) -/(.*/)?ads2013/.* -# /ads2012/* (easylist.txt: 2176) -/(.*/)?ads2012/.* -# /ads2/* (easylist.txt: 2175) -/(.*/)?ads2/.* -# /ads2. (easylist.txt: 2174) -/(.*/)?ads2\. -ads2.*. -# /ads18. (easylist.txt: 2173) -/(.*/)?ads18\. -ads18.*. -# /ads160x600px. (easylist.txt: 2172) -/(.*/)?ads160x600px\. -ads160x600px.*. -# /ads160x600. (easylist.txt: 2171) -/(.*/)?ads160x600\. -ads160x600.*. -# /ads160x600- (easylist.txt: 2170) -/(.*/)?ads160x600- -ads160x600-*. -# /ads160. (easylist.txt: 2169) -/(.*/)?ads160\. -ads160.*. -# /ads125_ (easylist.txt: 2168) -/(.*/)?ads125_ -# /ads125. (easylist.txt: 2167) -/(.*/)?ads125\. -ads125.*. -# /ads12. (easylist.txt: 2166) -/(.*/)?ads12\. -ads12.*. -# /ads11/* (easylist.txt: 2165) -/(.*/)?ads11/.* -# /ads11. (easylist.txt: 2164) -/(.*/)?ads11\. -ads11.*. -# /ads100. (easylist.txt: 2163) -/(.*/)?ads100\. -ads100.*. -# /ads10/* (easylist.txt: 2162) -/(.*/)?ads10/.* -# /ads10. (easylist.txt: 2161) -/(.*/)?ads10\. -ads10.*. -# /ads1/* (easylist.txt: 2160) -/(.*/)?ads1/.* -# /ads1. (easylist.txt: 2159) -/(.*/)?ads1\. -ads1.*. -# /ads09a/* (easylist.txt: 2158) -/(.*/)?ads09a/.* -# /ads05. (easylist.txt: 2157) -/(.*/)?ads05\. -ads05.*. -# /ads01. (easylist.txt: 2156) -/(.*/)?ads01\. -ads01.*. -# /ads0. (easylist.txt: 2155) -/(.*/)?ads0\. -ads0.*. -# /ads/zone/* (easylist.txt: 2154) -/(.*/)?ads/zone/.* -# /ads/yahoo/* (easylist.txt: 2153) -/(.*/)?ads/yahoo/.* -# /ads/xtcore. (easylist.txt: 2152) -/(.*/)?ads/xtcore\. -# /ads/www/* (easylist.txt: 2151) -/(.*/)?ads/www/.* -# /ads/writecapture. (easylist.txt: 2150) -/(.*/)?ads/writecapture\. -# /ads/widget. (easylist.txt: 2149) -/(.*/)?ads/widget\. -# /ads/widebanner. (easylist.txt: 2148) -/(.*/)?ads/widebanner\. -# /ads/welcomescreen. (easylist.txt: 2147) -/(.*/)?ads/welcomescreen\. -# /ads/webplayer. (easylist.txt: 2146) -/(.*/)?ads/webplayer\. -# /ads/web/* (easylist.txt: 2145) -/(.*/)?ads/web/.* -# /ads/vip_ (easylist.txt: 2144) -/(.*/)?ads/vip_ -# /ads/views/* (easylist.txt: 2143) -/(.*/)?ads/views/.* -# /ads/view. (easylist.txt: 2142) -/(.*/)?ads/view\. -# /ads/video_ (easylist.txt: 2141) -/(.*/)?ads/video_ -# /ads/video/* (easylist.txt: 2140) -/(.*/)?ads/video/.* -# /ads/vg/* (easylist.txt: 2139) -/(.*/)?ads/vg/.* -# /ads/vertical/* (easylist.txt: 2138) -/(.*/)?ads/vertical/.* -# /ads/txt_ (easylist.txt: 2137) -/(.*/)?ads/txt_ -# /ads/triggers/* (easylist.txt: 2136) -/(.*/)?ads/triggers/.* -# /ads/tracker/* (easylist.txt: 2135) -/(.*/)?ads/tracker/.* -# /ads/tr_ (easylist.txt: 2134) -/(.*/)?ads/tr_ -# /ads/top. (easylist.txt: 2133) -/(.*/)?ads/top\. -# /ads/top- (easylist.txt: 2132) -/(.*/)?ads/top- -# /ads/tile- (easylist.txt: 2131) -/(.*/)?ads/tile- -# /ads/third- (easylist.txt: 2130) -/(.*/)?ads/third- -# /ads/text/* (easylist.txt: 2129) -/(.*/)?ads/text/.* -# /ads/targeting. (easylist.txt: 2128) -/(.*/)?ads/targeting\. -# /ads/takeovers/* (easylist.txt: 2127) -/(.*/)?ads/takeovers/.* -# /ads/syndicated/* (easylist.txt: 2126) -/(.*/)?ads/syndicated/.* -# /ads/swfobject. (easylist.txt: 2125) -/(.*/)?ads/swfobject\. -# /ads/sub/* (easylist.txt: 2124) -/(.*/)?ads/sub/.* -# /ads/storysponsors/* (easylist.txt: 2123) -/(.*/)?ads/storysponsors/.* -# /ads/square3. (easylist.txt: 2122) -/(.*/)?ads/square3\. -# /ads/square2. (easylist.txt: 2121) -/(.*/)?ads/square2\. -# /ads/square. (easylist.txt: 2120) -/(.*/)?ads/square\. -# /ads/square- (easylist.txt: 2119) -/(.*/)?ads/square- -# /ads/sponsor (easylist.txt: 2118) -/(.*/)?ads/sponsor -# /ads/spacer. (easylist.txt: 2117) -/(.*/)?ads/spacer\. -# /ads/sky_ (easylist.txt: 2116) -/(.*/)?ads/sky_ -# /ads/skins/* (easylist.txt: 2115) -/(.*/)?ads/skins/.* -# /ads/sitewide_ (easylist.txt: 2114) -/(.*/)?ads/sitewide_ -# /ads/sidedoor/* (easylist.txt: 2113) -/(.*/)?ads/sidedoor/.* -# /ads/sidebar- (easylist.txt: 2112) -/(.*/)?ads/sidebar- -# /ads/side- (easylist.txt: 2111) -/(.*/)?ads/side- -# /ads/show/* (easylist.txt: 2110) -/(.*/)?ads/show/.* -# /ads/show. (easylist.txt: 2109) -/(.*/)?ads/show\. -# /ads/serveIt/* (easylist.txt: 2108) -/(.*/)?ads/serveIt/.* -# /ads/select/* (easylist.txt: 2107) -/(.*/)?ads/select/.* -# /ads/scripts/* (easylist.txt: 2106) -/(.*/)?ads/scripts/.* -# /ads/scriptinject. (easylist.txt: 2105) -/(.*/)?ads/scriptinject\. -# /ads/rotate_ (easylist.txt: 2104) -/(.*/)?ads/rotate_ -# /ads/rotate/* (easylist.txt: 2103) -/(.*/)?ads/rotate/.* -# /ads/ringtone_ (easylist.txt: 2102) -/(.*/)?ads/ringtone_ -# /ads/right/* (easylist.txt: 2101) -/(.*/)?ads/right/.* -# /ads/right. (easylist.txt: 2100) -/(.*/)?ads/right\. -# /ads/reskins/* (easylist.txt: 2099) -/(.*/)?ads/reskins/.* -# /ads/request. (easylist.txt: 2098) -/(.*/)?ads/request\. -# /Ads/Refresher. (easylist.txt: 2097) -/(.*/)?Ads/Refresher\. -# /ads/rectangle_ (easylist.txt: 2096) -/(.*/)?ads/rectangle_ -# /ads/rect_ (easylist.txt: 2095) -/(.*/)?ads/rect_ -# /ads/real_ (easylist.txt: 2094) -/(.*/)?ads/real_ -# /ads/rawstory_ (easylist.txt: 2093) -/(.*/)?ads/rawstory_ -# /ads/rail- (easylist.txt: 2092) -/(.*/)?ads/rail- -# /AdS/RAD. (easylist.txt: 2091) -/(.*/)?AdS/RAD\. -# /ads/proxy- (easylist.txt: 2090) -/(.*/)?ads/proxy- -# /ads/proximic. (easylist.txt: 2089) -/(.*/)?ads/proximic\. -# /ads/promo_ (easylist.txt: 2088) -/(.*/)?ads/promo_ -# /ads/profile/* (easylist.txt: 2087) -/(.*/)?ads/profile/.* -# /ads/preroll_ (easylist.txt: 2086) -/(.*/)?ads/preroll_ -# /ads/preroll/* (easylist.txt: 2085) -/(.*/)?ads/preroll/.* -# /ads/preroll- (easylist.txt: 2084) -/(.*/)?ads/preroll- -# /ads/preloader/* (easylist.txt: 2083) -/(.*/)?ads/preloader/.* -# /ads/postscribe. (easylist.txt: 2082) -/(.*/)?ads/postscribe\. -# /ads/post- (easylist.txt: 2081) -/(.*/)?ads/post- -# /ads/popup_ (easylist.txt: 2080) -/(.*/)?ads/popup_ -# /ads/popup. (easylist.txt: 2079) -/(.*/)?ads/popup\. -# /ads/popshow. (easylist.txt: 2078) -/(.*/)?ads/popshow\. -# /ads/popout. (easylist.txt: 2077) -/(.*/)?ads/popout\. -# /ads/pop. (easylist.txt: 2076) -/(.*/)?ads/pop\. -# /ads/plugs/* (easylist.txt: 2075) -/(.*/)?ads/plugs/.* -# /ads/player- (easylist.txt: 2074) -/(.*/)?ads/player- -# /ads/pencil/* (easylist.txt: 2073) -/(.*/)?ads/pencil/.* -# /ads/payload/* (easylist.txt: 2072) -/(.*/)?ads/payload/.* -# /ads/panel. (easylist.txt: 2071) -/(.*/)?ads/panel\. -# /ads/page. (easylist.txt: 2070) -/(.*/)?ads/page\. -# /ads/p/* (easylist.txt: 2069) -/(.*/)?ads/p/.* -# /ads/overlay/* (easylist.txt: 2068) -/(.*/)?ads/overlay/.* -# /ads/overlay- (easylist.txt: 2067) -/(.*/)?ads/overlay- -# /ads/outbrain? (easylist.txt: 2066) -/(.*/)?ads/outbrain\? -# /ads/oscar/* (easylist.txt: 2065) -/(.*/)?ads/oscar/.* -# /ads/original/* (easylist.txt: 2064) -/(.*/)?ads/original/.* -# /ads/oas_ (easylist.txt: 2063) -/(.*/)?ads/oas_ -# /ads/oas/* (easylist.txt: 2062) -/(.*/)?ads/oas/.* -# /ads/oas- (easylist.txt: 2061) -/(.*/)?ads/oas- -# /ads/ninemsn. (easylist.txt: 2060) -/(.*/)?ads/ninemsn\. -# /ads/navbar/* (easylist.txt: 2059) -/(.*/)?ads/navbar/.* -# /ads/mt_ (easylist.txt: 2058) -/(.*/)?ads/mt_ -# /ads/msn/* (easylist.txt: 2057) -/(.*/)?ads/msn/.* -# /ads/mpu? (easylist.txt: 2056) -/(.*/)?ads/mpu\? -# /ads/mpu2? (easylist.txt: 2055) -/(.*/)?ads/mpu2\? -# /ads/mpu/* (easylist.txt: 2054) -/(.*/)?ads/mpu/.* -# /ads/motherless. (easylist.txt: 2053) -/(.*/)?ads/motherless\. -# /ads/middle/* (easylist.txt: 2052) -/(.*/)?ads/middle/.* -# /ads/menu_ (easylist.txt: 2051) -/(.*/)?ads/menu_ -# /ads/masthead_ (easylist.txt: 2050) -/(.*/)?ads/masthead_ -# /ads/marketing/* (easylist.txt: 2049) -/(.*/)?ads/marketing/.* -# /ads/main. (easylist.txt: 2048) -/(.*/)?ads/main\. -# /ads/load. (easylist.txt: 2047) -/(.*/)?ads/load\. -# /ads/leaderbox. (easylist.txt: 2046) -/(.*/)?ads/leaderbox\. -# /ads/leaderboard_ (easylist.txt: 2045) -/(.*/)?ads/leaderboard_ -# /ads/leaderboard? (easylist.txt: 2044) -/(.*/)?ads/leaderboard\? -# /ads/leaderboard/* (easylist.txt: 2043) -/(.*/)?ads/leaderboard/.* -# /ads/leaderboard. (easylist.txt: 2042) -/(.*/)?ads/leaderboard\. -# /ads/leaderboard- (easylist.txt: 2041) -/(.*/)?ads/leaderboard- -# /ads/layer. (easylist.txt: 2040) -/(.*/)?ads/layer\. -# /ads/labels/* (easylist.txt: 2039) -/(.*/)?ads/labels/.* -# /ads/jsbannertext. (easylist.txt: 2038) -/(.*/)?ads/jsbannertext\. -# /ads/js_ (easylist.txt: 2037) -/(.*/)?ads/js_ -# /ads/js/* (easylist.txt: 2036) -/(.*/)?ads/js/.* -# /ads/js. (easylist.txt: 2035) -/(.*/)?ads/js\. -# /ads/interstitial/* (easylist.txt: 2034) -/(.*/)?ads/interstitial/.* -# /ads/interstitial. (easylist.txt: 2033) -/(.*/)?ads/interstitial\. -# /ads/inner_ (easylist.txt: 2032) -/(.*/)?ads/inner_ -# /ads/inline. (easylist.txt: 2031) -/(.*/)?ads/inline\. -# /Ads/InFullScreen. (easylist.txt: 2030) -/(.*/)?Ads/InFullScreen\. -# /ads/indexsponsors/* (easylist.txt: 2029) -/(.*/)?ads/indexsponsors/.* -# /ads/index. (easylist.txt: 2028) -/(.*/)?ads/index\. -# /ads/index- (easylist.txt: 2027) -/(.*/)?ads/index- -# /ads/img/* (easylist.txt: 2026) -/(.*/)?ads/img/.* -# /ads/imbox- (easylist.txt: 2025) -/(.*/)?ads/imbox- -# /ads/images/* (easylist.txt: 2024) -/(.*/)?ads/images/.* -# /ads/image/* (easylist.txt: 2023) -/(.*/)?ads/image/.* -# /ads/im2. (easylist.txt: 2022) -/(.*/)?ads/im2\. -# /ads/iframe (easylist.txt: 2021) -/(.*/)?ads/iframe -# /ads/htmlparser. (easylist.txt: 2020) -/(.*/)?ads/htmlparser\. -# /ads/html/* (easylist.txt: 2019) -/(.*/)?ads/html/.* -# /ads/house_ (easylist.txt: 2018) -/(.*/)?ads/house_ -# /ads/house/* (easylist.txt: 2017) -/(.*/)?ads/house/.* -# /ads/horizontal/* (easylist.txt: 2016) -/(.*/)?ads/horizontal/.* -# /ads/homepage/* (easylist.txt: 2015) -/(.*/)?ads/homepage/.* -# /ads/home/* (easylist.txt: 2014) -/(.*/)?ads/home/.* -# /ads/header_ (easylist.txt: 2013) -/(.*/)?ads/header_ -# /ads/header/* (easylist.txt: 2012) -/(.*/)?ads/header/.* -# /ads/header- (easylist.txt: 2011) -/(.*/)?ads/header- -# /ads/head. (easylist.txt: 2010) -/(.*/)?ads/head\. -# /ads/gray/* (easylist.txt: 2009) -/(.*/)?ads/gray/.* -# /ads/gpt_ (easylist.txt: 2008) -/(.*/)?ads/gpt_ -# /ads/gpt/* (easylist.txt: 2007) -/(.*/)?ads/gpt/.* -# /ads/google_ (easylist.txt: 2006) -/(.*/)?ads/google_ -# /ads/google2. (easylist.txt: 2005) -/(.*/)?ads/google2\. -# /ads/google1. (easylist.txt: 2004) -/(.*/)?ads/google1\. -# /ads/generator/* (easylist.txt: 2003) -/(.*/)?ads/generator/.* -# /ads/generatedHTML/* (easylist.txt: 2002) -/(.*/)?ads/generatedHTML/.* -# /ads/g/* (easylist.txt: 2001) -/(.*/)?ads/g/.* -# /ads/freewheel/* (easylist.txt: 2000) -/(.*/)?ads/freewheel/.* -# /ads/footer_ (easylist.txt: 1999) -/(.*/)?ads/footer_ -# /ads/footer. (easylist.txt: 1998) -/(.*/)?ads/footer\. -# /ads/footer- (easylist.txt: 1997) -/(.*/)?ads/footer- -# /ads/flashbanners/* (easylist.txt: 1996) -/(.*/)?ads/flashbanners/.* -# /ads/flash_ (easylist.txt: 1995) -/(.*/)?ads/flash_ -# /ads/flash/* (easylist.txt: 1994) -/(.*/)?ads/flash/.* -# /ads/fb- (easylist.txt: 1993) -/(.*/)?ads/fb- -# /ads/exit. (easylist.txt: 1992) -/(.*/)?ads/exit\. -# /ads/empty. (easylist.txt: 1991) -/(.*/)?ads/empty\. -# /ads/elementViewability. (easylist.txt: 1990) -/(.*/)?ads/elementViewability\. -# /ads/displaytrust. (easylist.txt: 1989) -/(.*/)?ads/displaytrust\. -# /ads/display/* (easylist.txt: 1988) -/(.*/)?ads/display/.* -# /ads/directory/* (easylist.txt: 1987) -/(.*/)?ads/directory/.* -# /ads/dhtml/* (easylist.txt: 1986) -/(.*/)?ads/dhtml/.* -# /ads/dfp/* (easylist.txt: 1985) -/(.*/)?ads/dfp/.* -# /ads/dfp. (easylist.txt: 1984) -/(.*/)?ads/dfp\. -# /ads/design- (easylist.txt: 1983) -/(.*/)?ads/design- -# /ads/default_ (easylist.txt: 1982) -/(.*/)?ads/default_ -# /ads/dart. (easylist.txt: 1981) -/(.*/)?ads/dart\. -# /ads/daily_ (easylist.txt: 1980) -/(.*/)?ads/daily_ -# /ads/daily. (easylist.txt: 1979) -/(.*/)?ads/daily\. -# /ads/cube- (easylist.txt: 1978) -/(.*/)?ads/cube- -# /ads/creatives/* (easylist.txt: 1977) -/(.*/)?ads/creatives/.* -# /ads/create_ (easylist.txt: 1976) -/(.*/)?ads/create_ -# /ads/contextuallinks/* (easylist.txt: 1975) -/(.*/)?ads/contextuallinks/.* -# /ads/contextual_ (easylist.txt: 1974) -/(.*/)?ads/contextual_ -# /ads/contextual. (easylist.txt: 1973) -/(.*/)?ads/contextual\. -# /ads/configuration/* (easylist.txt: 1972) -/(.*/)?ads/configuration/.* -# /ads/config/* (easylist.txt: 1971) -/(.*/)?ads/config/.* -# /ads/common/* (easylist.txt: 1970) -/(.*/)?ads/common/.* -# /ads/cnvideo/* (easylist.txt: 1969) -/(.*/)?ads/cnvideo/.* -# /ads/click_ (easylist.txt: 1968) -/(.*/)?ads/click_ -# /ads/checkViewport. (easylist.txt: 1967) -/(.*/)?ads/checkViewport\. -# /ads/center. (easylist.txt: 1966) -/(.*/)?ads/center\. -# /ads/center- (easylist.txt: 1965) -/(.*/)?ads/center- -# /ads/cbr. (easylist.txt: 1964) -/(.*/)?ads/cbr\. -# /Ads/Builder. (easylist.txt: 1963) -/(.*/)?Ads/Builder\. -# /ads/btbuckets/* (easylist.txt: 1962) -/(.*/)?ads/btbuckets/.* -# /ads/bt/* (easylist.txt: 1961) -/(.*/)?ads/bt/.* -# /ads/branding/* (easylist.txt: 1960) -/(.*/)?ads/branding/.* -# /ads/box/* (easylist.txt: 1959) -/(.*/)?ads/box/.* -# /ads/bottom/* (easylist.txt: 1958) -/(.*/)?ads/bottom/.* -# /ads/bottom. (easylist.txt: 1957) -/(.*/)?ads/bottom\. -# /ads/blank. (easylist.txt: 1956) -/(.*/)?ads/blank\. -# /Ads/Biz_ (easylist.txt: 1955) -/(.*/)?Ads/Biz_ -# /ads/bilar/* (easylist.txt: 1954) -/(.*/)?ads/bilar/.* -# /ads/behicon. (easylist.txt: 1953) -/(.*/)?ads/behicon\. -# /ads/beacon. (easylist.txt: 1952) -/(.*/)?ads/beacon\. -# /ads/base. (easylist.txt: 1951) -/(.*/)?ads/base\. -# /ads/banners/* (easylist.txt: 1950) -/(.*/)?ads/banners/.* -# /ads/banner_ (easylist.txt: 1949) -/(.*/)?ads/banner_ -# /ads/banner01. (easylist.txt: 1948) -/(.*/)?ads/banner01\. -# /ads/banner/* (easylist.txt: 1947) -/(.*/)?ads/banner/.* -# /ads/banner. (easylist.txt: 1946) -/(.*/)?ads/banner\. -# /ads/banner- (easylist.txt: 1945) -/(.*/)?ads/banner- -# /ads/b/* (easylist.txt: 1944) -/(.*/)?ads/b/.* -# /ads/async/* (easylist.txt: 1943) -/(.*/)?ads/async/.* -# /ads/assets/* (easylist.txt: 1942) -/(.*/)?ads/assets/.* -# /ads/as_header. (easylist.txt: 1941) -/(.*/)?ads/as_header\. -# /ads/aff- (easylist.txt: 1940) -/(.*/)?ads/aff- -# /ads/afc/* (easylist.txt: 1939) -/(.*/)?ads/afc/.* -# /ads/adv/* (easylist.txt: 1938) -/(.*/)?ads/adv/.* -# /ads/ads_ (easylist.txt: 1937) -/(.*/)?ads/ads_ -# /ads/ads/* (easylist.txt: 1936) -/(.*/)?ads/ads/.* -# /ads/ads. (easylist.txt: 1935) -/(.*/)?ads/ads\. -# /ads/ads-$~stylesheet (easylist.txt: 1934) -/(.*/)?ads/ads- -# /Ads/adrp0. (easylist.txt: 1933) -/(.*/)?Ads/adrp0\. -# /ads/adrime/* (easylist.txt: 1932) -/(.*/)?ads/adrime/.* -# /ads/ad_ (easylist.txt: 1931) -/(.*/)?ads/ad_ -# /ads/ad. (easylist.txt: 1930) -/(.*/)?ads/ad\. -# /ads/ad- (easylist.txt: 1929) -/(.*/)?ads/ad- -# /ads/acctid= (easylist.txt: 1928) -/(.*/)?ads/acctid= -# /ads/a. (easylist.txt: 1927) -/(.*/)?ads/a\. -# /ads/?QAPS_ (easylist.txt: 1926) -/(.*/)?ads/\?QAPS_ -# /ads/728b. (easylist.txt: 1925) -/(.*/)?ads/728b\. -# /ads/728. (easylist.txt: 1924) -/(.*/)?ads/728\. -# /ads/468a. (easylist.txt: 1923) -/(.*/)?ads/468a\. -# /ads/468. (easylist.txt: 1922) -/(.*/)?ads/468\. -# /ads/300x120_ (easylist.txt: 1921) -/(.*/)?ads/300x120_ -# /ads/3002. (easylist.txt: 1920) -/(.*/)?ads/3002\. -# /ads/300. (easylist.txt: 1919) -/(.*/)?ads/300\. -# /ads/3.0/* (easylist.txt: 1918) -/(.*/)?ads/3\.0/.* -# /ads/250x120_ (easylist.txt: 1917) -/(.*/)?ads/250x120_ -# /ads/2010/* (easylist.txt: 1916) -/(.*/)?ads/2010/.* -# /ads/2.0/* (easylist.txt: 1915) -/(.*/)?ads/2\.0/.* -# /ads/160/* (easylist.txt: 1914) -/(.*/)?ads/160/.* -# /ads/160. (easylist.txt: 1913) -/(.*/)?ads/160\. -# /ads/125r. (easylist.txt: 1912) -/(.*/)?ads/125r\. -# /ads/125l. (easylist.txt: 1911) -/(.*/)?ads/125l\. -# /ads.w3c. (easylist.txt: 1910) -/(.*/)?ads\.w3c\. -ads.w3c.*. -# /ads.v5.js (easylist.txt: 1909) -/(.*/)?ads\.v5\.js -ads.v5.js*. -# /ads.swf (easylist.txt: 1908) -/(.*/)?ads\.swf -ads.swf*. -# /ads.png (easylist.txt: 1907) -/(.*/)?ads\.png -ads.png*. -# /ads.pl? (easylist.txt: 1906) -/(.*/)?ads\.pl\? -# /ads.php (easylist.txt: 1905) -/(.*/)?ads\.php -ads.php*. -# /ads.pbs (easylist.txt: 1904) -/(.*/)?ads\.pbs -ads.pbs*. -# /ads.jsp (easylist.txt: 1903) -/(.*/)?ads\.jsp -ads.jsp*. -# /ads.json? (easylist.txt: 1902) -/(.*/)?ads\.json\? -# /ads.js? (easylist.txt: 1901) -/(.*/)?ads\.js\? -# /ads.js/* (easylist.txt: 1900) -/(.*/)?ads\.js/.* -ads.js/.* -# /ads.js. (easylist.txt: 1899) -/(.*/)?ads\.js\. -ads.js.*. -# /ads.htm (easylist.txt: 1898) -/(.*/)?ads\.htm -ads.htm*. -# /ads.gif (easylist.txt: 1897) -/(.*/)?ads\.gif -ads.gif*. -# /ads.dll/* (easylist.txt: 1896) -/(.*/)?ads\.dll/.* -ads.dll/.* -# /ads.css (easylist.txt: 1895) -/(.*/)?ads\.css -ads.css*. -# /ads.cfm? (easylist.txt: 1894) -/(.*/)?ads\.cfm\? -# /ads.aspx (easylist.txt: 1893) -/(.*/)?ads\.aspx -ads.aspx*. -# /ads.asp? (easylist.txt: 1892) -/(.*/)?ads\.asp\? -# /Ads.ashx (easylist.txt: 1891) -/(.*/)?Ads\.ashx -Ads.ashx*. -# /ads-top. (easylist.txt: 1890) -/(.*/)?ads-top\. -ads-top.*. -# /ads-sky| (easylist.txt: 1889) -/(.*/)?ads-sky$ -# /ads-skyscraper. (easylist.txt: 1888) -/(.*/)?ads-skyscraper\. -ads-skyscraper.*. -# /ads-service. (easylist.txt: 1887) -/(.*/)?ads-service\. -ads-service.*. -# /ads-segmentjs. (easylist.txt: 1886) -/(.*/)?ads-segmentjs\. -ads-segmentjs.*. -# /ads-scroller- (easylist.txt: 1885) -/(.*/)?ads-scroller- -ads-scroller-*. -# /ads-screen. (easylist.txt: 1884) -/(.*/)?ads-screen\. -ads-screen.*. -# /ads-sa. (easylist.txt: 1883) -/(.*/)?ads-sa\. -ads-sa.*. -# /ads-right. (easylist.txt: 1882) -/(.*/)?ads-right\. -ads-right.*. -# /ads-reviews- (easylist.txt: 1881) -/(.*/)?ads-reviews- -ads-reviews-*. -# /ads-request. (easylist.txt: 1880) -/(.*/)?ads-request\. -ads-request.*. -# /ads-rec| (easylist.txt: 1879) -/(.*/)?ads-rec$ -# /ads-rectangle. (easylist.txt: 1878) -/(.*/)?ads-rectangle\. -ads-rectangle.*. -# /ads-pd. (easylist.txt: 1877) -/(.*/)?ads-pd\. -ads-pd.*. -# /ads-nodep. (easylist.txt: 1876) -/(.*/)?ads-nodep\. -ads-nodep.*. -# /ads-new. (easylist.txt: 1875) -/(.*/)?ads-new\. -ads-new.*. -# /ads-net. (easylist.txt: 1874) -/(.*/)?ads-net\. -ads-net.*. -# /ads-min. (easylist.txt: 1873) -/(.*/)?ads-min\. -ads-min.*. -# /ads-leader| (easylist.txt: 1872) -/(.*/)?ads-leader$ -# /ads-holder. (easylist.txt: 1871) -/(.*/)?ads-holder\. -ads-holder.*. -# /ads-header- (easylist.txt: 1870) -/(.*/)?ads-header- -ads-header-*. -# /ads-gpt. (easylist.txt: 1869) -/(.*/)?ads-gpt\. -ads-gpt.*. -# /ads-footer. (easylist.txt: 1868) -/(.*/)?ads-footer\. -ads-footer.*. -# /ads-foot. (easylist.txt: 1867) -/(.*/)?ads-foot\. -ads-foot.*. -# /ads-common. (easylist.txt: 1866) -/(.*/)?ads-common\. -ads-common.*. -# /ads-blogs- (easylist.txt: 1865) -/(.*/)?ads-blogs- -ads-blogs-*. -# /ads-banner (easylist.txt: 1864) -/(.*/)?ads-banner -ads-banner*. -# /ads-arc. (easylist.txt: 1863) -/(.*/)?ads-arc\. -ads-arc.*. -# /ads-admin. (easylist.txt: 1862) -/(.*/)?ads-admin\. -ads-admin.*. -# /ads-300. (easylist.txt: 1861) -/(.*/)?ads-300\. -ads-300.*. -# /ads-300- (easylist.txt: 1860) -/(.*/)?ads-300- -ads-300-*. -# /ads-250. (easylist.txt: 1859) -/(.*/)?ads-250\. -ads-250.*. -# /ads-2. (easylist.txt: 1858) -/(.*/)?ads-2\. -ads-2.*. -# /ads-1. (easylist.txt: 1857) -/(.*/)?ads-1\. -ads-1.*. -# /ads-07. (easylist.txt: 1856) -/(.*/)?ads-07\. -ads-07.*. -# /ads-06. (easylist.txt: 1855) -/(.*/)?ads-06\. -ads-06.*. -# /ads-05. (easylist.txt: 1854) -/(.*/)?ads-05\. -ads-05.*. -# /ads-04. (easylist.txt: 1853) -/(.*/)?ads-04\. -ads-04.*. -# /ads-03. (easylist.txt: 1852) -/(.*/)?ads-03\. -ads-03.*. -# /ads-02. (easylist.txt: 1851) -/(.*/)?ads-02\. -ads-02.*. -# /ads-01. (easylist.txt: 1850) -/(.*/)?ads-01\. -ads-01.*. -# /adruptive. (easylist.txt: 1849) -/(.*/)?adruptive\. -adruptive.*. -# /adrun. (easylist.txt: 1848) -/(.*/)?adrun\. -adrun.*. -# /adrotv2. (easylist.txt: 1847) -/(.*/)?adrotv2\. -adrotv2.*. -# /adrotator_ (easylist.txt: 1846) -/(.*/)?adrotator_ -# /adrotator2. (easylist.txt: 1845) -/(.*/)?adrotator2\. -adrotator2.*. -# /adrotator/* (easylist.txt: 1844) -/(.*/)?adrotator/.* -# /adrotator. (easylist.txt: 1843) -/(.*/)?adrotator\. -adrotator.*. -# /adrotation. (easylist.txt: 1842) -/(.*/)?adrotation\. -adrotation.*. -# /adrotate/* (easylist.txt: 1841) -/(.*/)?adrotate/.* -# /adrotate. (easylist.txt: 1840) -/(.*/)?adrotate\. -adrotate.*. -# /adrotate- (easylist.txt: 1839) -/(.*/)?adrotate- -adrotate-*. -# /adrotat. (easylist.txt: 1838) -/(.*/)?adrotat\. -adrotat.*. -# /adrot_ (easylist.txt: 1837) -/(.*/)?adrot_ -# /adrot. (easylist.txt: 1836) -/(.*/)?adrot\. -adrot.*. -# /adroot/* (easylist.txt: 1835) -/(.*/)?adroot/.* -# /adrollpixel. (easylist.txt: 1834) -/(.*/)?adrollpixel\. -adrollpixel.*. -# /adroller. (easylist.txt: 1833) -/(.*/)?adroller\. -adroller.*. -# /adRoll. (easylist.txt: 1832) -/(.*/)?adRoll\. -adRoll.*. -# /adrolays. (easylist.txt: 1831) -/(.*/)?adrolays\. -adrolays.*. -# /adrobot. (easylist.txt: 1830) -/(.*/)?adrobot\. -adrobot.*. -# /adriver_$~object-subrequest (easylist.txt: 1829) -/(.*/)?adriver_ -# /adriver/* (easylist.txt: 1828) -/(.*/)?adriver/.* -# /adriver.$~object-subrequest (easylist.txt: 1827) -/(.*/)?adriver\. -adriver.*. -# /adrightcol. (easylist.txt: 1826) -/(.*/)?adrightcol\. -adrightcol.*. -# /adright/* (easylist.txt: 1825) -/(.*/)?adright/.* -# /adright. (easylist.txt: 1824) -/(.*/)?adright\. -adright.*. -# /adrevolver/* (easylist.txt: 1823) -/(.*/)?adrevolver/.* -# /adrevenue/* (easylist.txt: 1822) -/(.*/)?adrevenue/.* -# /adrequisitor- (easylist.txt: 1821) -/(.*/)?adrequisitor- -adrequisitor-*. -# /adrequestvo. (easylist.txt: 1820) -/(.*/)?adrequestvo\. -adrequestvo.*. -# /adrequests. (easylist.txt: 1819) -/(.*/)?adrequests\. -adrequests.*. -# /adrequest. (easylist.txt: 1818) -/(.*/)?adrequest\. -adrequest.*. -# /adreplace728x90. (easylist.txt: 1817) -/(.*/)?adreplace728x90\. -adreplace728x90.*. -# /adreplace160x600. (easylist.txt: 1816) -/(.*/)?adreplace160x600\. -adreplace160x600.*. -# /adreplace/* (easylist.txt: 1815) -/(.*/)?adreplace/.* -# /adrendererfactory. (easylist.txt: 1814) -/(.*/)?adrendererfactory\. -adrendererfactory.*. -# /adremote. (easylist.txt: 1813) -/(.*/)?adremote\. -adremote.*. -# /adreload? (easylist.txt: 1812) -/(.*/)?adreload\? -# /adreload. (easylist.txt: 1811) -/(.*/)?adreload\. -adreload.*. -# /adrelated. (easylist.txt: 1810) -/(.*/)?adrelated\. -adrelated.*. -# /adrefresh. (easylist.txt: 1809) -/(.*/)?adrefresh\. -adrefresh.*. -# /adrefresh- (easylist.txt: 1808) -/(.*/)?adrefresh- -adrefresh-*. -# /adrectanglebanner? (easylist.txt: 1807) -/(.*/)?adrectanglebanner\? -# /adrec. (easylist.txt: 1806) -/(.*/)?adrec\. -adrec.*. -# /adreadytractions. (easylist.txt: 1805) -/(.*/)?adreadytractions\. -adreadytractions.*. -# /adreactor/* (easylist.txt: 1804) -/(.*/)?adreactor/.* -# /adrawdata/* (easylist.txt: 1803) -/(.*/)?adrawdata/.* -# /adratio. (easylist.txt: 1802) -/(.*/)?adratio\. -adratio.*. -# /adquality/* (easylist.txt: 1801) -/(.*/)?adquality/.* -# /AdPub/* (easylist.txt: 1800) -/(.*/)?AdPub/.* -# /adproxy/* (easylist.txt: 1799) -/(.*/)?adproxy/.* -# /adproxy. (easylist.txt: 1798) -/(.*/)?adproxy\. -adproxy.*. -# /adprovider. (easylist.txt: 1797) -/(.*/)?adprovider\. -adprovider.*. -# /adprove_ (easylist.txt: 1796) -/(.*/)?adprove_ -# /adproducts/* (easylist.txt: 1795) -/(.*/)?adproducts/.* -# /adprime. (easylist.txt: 1794) -/(.*/)?adprime\. -adprime.*. -# /AdPreview/* (easylist.txt: 1793) -/(.*/)?AdPreview/.* -# /AdPostInjectAsync. (easylist.txt: 1792) -/(.*/)?AdPostInjectAsync\. -AdPostInjectAsync.*. -# /adpositionsizein- (easylist.txt: 1791) -/(.*/)?adpositionsizein- -adpositionsizein-*. -# /adPositions. (easylist.txt: 1790) -/(.*/)?adPositions\. -adPositions.*. -# /adpopup. (easylist.txt: 1789) -/(.*/)?adpopup\. -adpopup.*. -# /adpop32. (easylist.txt: 1788) -/(.*/)?adpop32\. -adpop32.*. -# /adpop. (easylist.txt: 1787) -/(.*/)?adpop\. -adpop.*. -# /adpool/* (easylist.txt: 1786) -/(.*/)?adpool/.* -# /adpolestar/* (easylist.txt: 1785) -/(.*/)?adpolestar/.* -# /adpoint. (easylist.txt: 1784) -/(.*/)?adpoint\. -adpoint.*. -# /adplugin_ (easylist.txt: 1783) -/(.*/)?adplugin_ -# /adplugin. (easylist.txt: 1782) -/(.*/)?adplugin\. -adplugin.*. -# /adplayer/* (easylist.txt: 1781) -/(.*/)?adplayer/.* -# /adplayer. (easylist.txt: 1780) -/(.*/)?adplayer\. -adplayer.*. -# /adplayer- (easylist.txt: 1779) -/(.*/)?adplayer- -adplayer-*. -# /adplay. (easylist.txt: 1778) -/(.*/)?adplay\. -adplay.*. -# /adplacement. (easylist.txt: 1777) -/(.*/)?adplacement\. -adplacement.*. -# /adplace5_ (easylist.txt: 1776) -/(.*/)?adplace5_ -# /adplace/* (easylist.txt: 1775) -/(.*/)?adplace/.* -# /adpix/* (easylist.txt: 1774) -/(.*/)?adpix/.* -# /adping. (easylist.txt: 1773) -/(.*/)?adping\. -adping.*. -# /adpictures/* (easylist.txt: 1772) -/(.*/)?adpictures/.* -# /adpicture2| (easylist.txt: 1771) -/(.*/)?adpicture2$ -# /adpicture2. (easylist.txt: 1770) -/(.*/)?adpicture2\. -adpicture2.*. -# /adpicture1| (easylist.txt: 1769) -/(.*/)?adpicture1$ -# /adpicture1. (easylist.txt: 1768) -/(.*/)?adpicture1\. -adpicture1.*. -# /adpicture. (easylist.txt: 1767) -/(.*/)?adpicture\. -adpicture.*. -# /adpic/* (easylist.txt: 1766) -/(.*/)?adpic/.* -# /adpic. (easylist.txt: 1765) -/(.*/)?adpic\. -adpic.*. -# /adperfdemo. (easylist.txt: 1763) -/(.*/)?adperfdemo\. -adperfdemo.*. -# /adperf_ (easylist.txt: 1762) -/(.*/)?adperf_ -# /adpeeps/* (easylist.txt: 1761) -/(.*/)?adpeeps/.* -# /adpeeps. (easylist.txt: 1760) -/(.*/)?adpeeps\. -adpeeps.*. -# /adpatch. (easylist.txt: 1759) -/(.*/)?adpatch\. -adpatch.*. -# /adparts/* (easylist.txt: 1758) -/(.*/)?adparts/.* -# /adpartner. (easylist.txt: 1757) -/(.*/)?adpartner\. -adpartner.*. -# /adpanelcontent. (easylist.txt: 1756) -/(.*/)?adpanelcontent\. -adpanelcontent.*. -# /adpanel/* (easylist.txt: 1755) -/(.*/)?adpanel/.* -# /adpan/* (easylist.txt: 1754) -/(.*/)?adpan/.* -# /adpages/* (easylist.txt: 1753) -/(.*/)?adpages/.* -# /adpagem. (easylist.txt: 1752) -/(.*/)?adpagem\. -adpagem.*. -# /adpage/* (easylist.txt: 1751) -/(.*/)?adpage/.* -# /adpage. (easylist.txt: 1750) -/(.*/)?adpage\. -adpage.*. -# /adpage- (easylist.txt: 1749) -/(.*/)?adpage- -adpage-*. -# /adp.htm (easylist.txt: 1748) -/(.*/)?adp\.htm -adp.htm*. -# /adp-pro/* (easylist.txt: 1747) -/(.*/)?adp-pro/.* -# /adoverride. (easylist.txt: 1746) -/(.*/)?adoverride\. -adoverride.*. -# /adoverlayplugin. (easylist.txt: 1745) -/(.*/)?adoverlayplugin\. -adoverlayplugin.*. -# /adoverlay/* (easylist.txt: 1744) -/(.*/)?adoverlay/.* -# /adoverlay. (easylist.txt: 1743) -/(.*/)?adoverlay\. -adoverlay.*. -# /adotubeplugin. (easylist.txt: 1742) -/(.*/)?adotubeplugin\. -adotubeplugin.*. -# /adotube_adapter. (easylist.txt: 1741) -/(.*/)?adotube_adapter\. -# /ados.js (easylist.txt: 1740) -/(.*/)?ados\.js -ados.js*. -# /adorika728. (easylist.txt: 1739) -/(.*/)?adorika728\. -adorika728.*. -# /adorika300. (easylist.txt: 1738) -/(.*/)?adorika300\. -adorika300.*. -# /adoptions. (easylist.txt: 1737) -/(.*/)?adoptions\. -adoptions.*. -# /adoptionicon. (easylist.txt: 1736) -/(.*/)?adoptionicon\. -adoptionicon.*. -# /AdOptimizer. (easylist.txt: 1735) -/(.*/)?AdOptimizer\. -AdOptimizer.*. -# /adops/* (easylist.txt: 1734) -/(.*/)?adops/.* -# /adops. (easylist.txt: 1733) -/(.*/)?adops\. -adops.*. -# /adonly468. (easylist.txt: 1732) -/(.*/)?adonly468\. -adonly468.*. -# /adonline. (easylist.txt: 1731) -/(.*/)?adonline\. -adonline.*. -# /adometry? (easylist.txt: 1730) -/(.*/)?adometry\? -# /adometry. (easylist.txt: 1729) -/(.*/)?adometry\. -adometry.*. -# /adometry- (easylist.txt: 1728) -/(.*/)?adometry- -adometry-*. -# /adocean. (easylist.txt: 1727) -/(.*/)?adocean\. -adocean.*. -# /adobject. (easylist.txt: 1726) -/(.*/)?adobject\. -adobject.*. -# /adnotice. (easylist.txt: 1725) -/(.*/)?adnotice\. -adnotice.*. -# /adnl. (easylist.txt: 1724) -/(.*/)?adnl\. -adnl.*. -# /adng.html (easylist.txt: 1723) -/(.*/)?adng\.html -adng.html*. -# /adnexus- (easylist.txt: 1722) -/(.*/)?adnexus- -adnexus-*. -# /AdNewsclip15. (easylist.txt: 1720) -/(.*/)?AdNewsclip15\. -AdNewsclip15.*. -# /AdNewsclip14. (easylist.txt: 1719) -/(.*/)?AdNewsclip14\. -AdNewsclip14.*. -# /adnews. (easylist.txt: 1718) -/(.*/)?adnews\. -adnews.*. -# /adnew2. (easylist.txt: 1717) -/(.*/)?adnew2\. -adnew2.*. -# /adnetwork_ (easylist.txt: 1716) -/(.*/)?adnetwork_ -# /adnetwork468. (easylist.txt: 1715) -/(.*/)?adnetwork468\. -adnetwork468.*. -# /adnetwork300. (easylist.txt: 1714) -/(.*/)?adnetwork300\. -adnetwork300.*. -# /adnetwork/* (easylist.txt: 1713) -/(.*/)?adnetwork/.* -# /adnetmedia. (easylist.txt: 1711) -/(.*/)?adnetmedia\. -adnetmedia.*. -# /adnet2. (easylist.txt: 1710) -/(.*/)?adnet2\. -adnet2.*. -# /ADNet/* (easylist.txt: 1709) -/(.*/)?ADNet/.* -# /adnet. (easylist.txt: 1708) -/(.*/)?adnet\. -adnet.*. -# /adNdsoft/* (easylist.txt: 1707) -/(.*/)?adNdsoft/.* -# /adnap/* (easylist.txt: 1706) -/(.*/)?adnap/.* -# /admonitor. (easylist.txt: 1705) -/(.*/)?admonitor\. -admonitor.*. -# /admonitor- (easylist.txt: 1704) -/(.*/)?admonitor- -admonitor-*. -# /admob. (easylist.txt: 1703) -/(.*/)?admob\. -admob.*. -# /admixer_ (easylist.txt: 1702) -/(.*/)?admixer_ -# /admixer- (easylist.txt: 1701) -/(.*/)?admixer- -admixer-*. -# /adminibanner2. (easylist.txt: 1700) -/(.*/)?adminibanner2\. -adminibanner2.*. -# /admin/sponsors/* (easylist.txt: 1699) -/(.*/)?admin/sponsors/.* -# /admin/banners/* (easylist.txt: 1698) -/(.*/)?admin/banners/.* -# /admin/ad_ (easylist.txt: 1697) -/(.*/)?admin/ad_ -# /admicro_ (easylist.txt: 1696) -/(.*/)?admicro_ -# /admicro2. (easylist.txt: 1695) -/(.*/)?admicro2\. -admicro2.*. -# /admgr. (easylist.txt: 1694) -/(.*/)?admgr\. -admgr.*. -# /admez/* (easylist.txt: 1693) -/(.*/)?admez/.* -# /admez. (easylist.txt: 1692) -/(.*/)?admez\. -admez.*. -# /admeta. (easylist.txt: 1691) -/(.*/)?admeta\. -admeta.*. -# /admentorserve. (easylist.txt: 1690) -/(.*/)?admentorserve\. -admentorserve.*. -# /admentorasp/* (easylist.txt: 1689) -/(.*/)?admentorasp/.* -# /admentor302/* (easylist.txt: 1688) -/(.*/)?admentor302/.* -# /admentor/* (easylist.txt: 1687) -/(.*/)?admentor/.* -# /admeldscript. (easylist.txt: 1686) -/(.*/)?admeldscript\. -admeldscript.*. -# /admeld_ (easylist.txt: 1685) -/(.*/)?admeld_ -# /admeld/* (easylist.txt: 1684) -/(.*/)?admeld/.* -# /admeld. (easylist.txt: 1683) -/(.*/)?admeld\. -admeld.*. -# /admega. (easylist.txt: 1682) -/(.*/)?admega\. -admega.*. -# /admedia/* (easylist.txt: 1681) -/(.*/)?admedia/.* -# /admedia. (easylist.txt: 1680) -/(.*/)?admedia\. -admedia.*. -# /admeasure. (easylist.txt: 1679) -/(.*/)?admeasure\. -admeasure.*. -# /admaxads. (easylist.txt: 1678) -/(.*/)?admaxads\. -admaxads.*. -# /admax/* (easylist.txt: 1677) -/(.*/)?admax/.* -# /admatik. (easylist.txt: 1675) -/(.*/)?admatik\. -admatik.*. -# /admatcherclient. (easylist.txt: 1674) -/(.*/)?admatcherclient\. -admatcherclient.*. -# /admatcher.$~object-subrequest,~xmlhttprequest (easylist.txt: 1673) -/(.*/)?admatcher\. -admatcher.*. -# /admatch- (easylist.txt: 1672) -/(.*/)?admatch- -admatch-*. -# /admaster? (easylist.txt: 1671) -/(.*/)?admaster\? -# /admaster. (easylist.txt: 1670) -/(.*/)?admaster\. -admaster.*. -# /admarvel. (easylist.txt: 1669) -/(.*/)?admarvel\. -admarvel.*. -# /adMarketplace. (easylist.txt: 1668) -/(.*/)?adMarketplace\. -adMarketplace.*. -# /admarket/* (easylist.txt: 1667) -/(.*/)?admarket/.* -# /admarker_ (easylist.txt: 1666) -/(.*/)?admarker_ -# /admarker. (easylist.txt: 1665) -/(.*/)?admarker\. -admarker.*. -# /admantx/* (easylist.txt: 1664) -/(.*/)?admantx/.* -# /admantx. (easylist.txt: 1663) -/(.*/)?admantx\. -admantx.*. -# /admantx- (easylist.txt: 1662) -/(.*/)?admantx- -admantx-*. -# /admanproxy. (easylist.txt: 1661) -/(.*/)?admanproxy\. -admanproxy.*. -# /admanagerstatus/* (easylist.txt: 1660) -/(.*/)?admanagerstatus/.* -# /admanagers/* (easylist.txt: 1659) -/(.*/)?admanagers/.* -# /admanager_ (easylist.txt: 1658) -/(.*/)?admanager_ -# /admanager3. (easylist.txt: 1657) -/(.*/)?admanager3\. -admanager3.*. -# /admanager/*$~object-subrequest (easylist.txt: 1656) -/(.*/)?admanager/.* -# /admanager.$~object-subrequest (easylist.txt: 1655) -/(.*/)?admanager\. -admanager.*. -# /admanagementadvanced. (easylist.txt: 1654) -/(.*/)?admanagementadvanced\. -admanagementadvanced.*. -# /admanagement/* (easylist.txt: 1653) -/(.*/)?admanagement/.* -# /adman/* (easylist.txt: 1652) -/(.*/)?adman/.* -# /adman. (easylist.txt: 1651) -/(.*/)?adman\. -adman.*. -# /adman- (easylist.txt: 1650) -/(.*/)?adman- -adman-*. -# /admain| (easylist.txt: 1649) -/(.*/)?admain$ -# /admain. (easylist.txt: 1648) -/(.*/)?admain\. -admain.*. -# /adm/ad/* (easylist.txt: 1647) -/(.*/)?adm/ad/.* -# /adlog.php? (easylist.txt: 1646) -/(.*/)?adlog\.php\? -# /adlock300. (easylist.txt: 1645) -/(.*/)?adlock300\. -adlock300.*. -# /adloader. (easylist.txt: 1644) -/(.*/)?adloader\. -adloader.*. -# /adload. (easylist.txt: 1643) -/(.*/)?adload\. -adload.*. -# /adlist_ (easylist.txt: 1642) -/(.*/)?adlist_ -# /adlinks_ (easylist.txt: 1641) -/(.*/)?adlinks_ -# /adlinks2. (easylist.txt: 1640) -/(.*/)?adlinks2\. -adlinks2.*. -# /adlinks. (easylist.txt: 1639) -/(.*/)?adlinks\. -adlinks.*. -# /adlink_ (easylist.txt: 1638) -/(.*/)?adlink_ -# /adLink728. (easylist.txt: 1637) -/(.*/)?adLink728\. -adLink728.*. -# /adlink/* (easylist.txt: 1636) -/(.*/)?adlink/.* -# /adlink. (easylist.txt: 1635) -/(.*/)?adlink\. -adlink.*. -# /adlink- (easylist.txt: 1634) -/(.*/)?adlink- -adlink-*. -# /adlift4_ (easylist.txt: 1632) -/(.*/)?adlift4_ -# /adlift4. (easylist.txt: 1631) -/(.*/)?adlift4\. -adlift4.*. -# /adlib. (easylist.txt: 1630) -/(.*/)?adlib\. -adlib.*. -# /adlesse. (easylist.txt: 1629) -/(.*/)?adlesse\. -adlesse.*. -# /adlens- (easylist.txt: 1628) -/(.*/)?adlens- -adlens-*. -# /adleftsidebar. (easylist.txt: 1627) -/(.*/)?adleftsidebar\. -adleftsidebar.*. -# /adleft/* (easylist.txt: 1626) -/(.*/)?adleft/.* -# /adleft. (easylist.txt: 1625) -/(.*/)?adleft\. -adleft.*. -# /adleaderboardtop. (easylist.txt: 1624) -/(.*/)?adleaderboardtop\. -adleaderboardtop.*. -# /adleader. (easylist.txt: 1623) -/(.*/)?adleader\. -adleader.*. -# /adlead. (easylist.txt: 1622) -/(.*/)?adlead\. -adlead.*. -# /adlayer/* (easylist.txt: 1621) -/(.*/)?adlayer/.* -# /adlayer. (easylist.txt: 1620) -/(.*/)?adlayer\. -adlayer.*. -# /adlargefooter2. (easylist.txt: 1619) -/(.*/)?adlargefooter2\. -adlargefooter2.*. -# /adlargefooter. (easylist.txt: 1618) -/(.*/)?adlargefooter\. -adlargefooter.*. -# /adlantisloader. (easylist.txt: 1617) -/(.*/)?adlantisloader\. -adlantisloader.*. -# /adlantis. (easylist.txt: 1616) -/(.*/)?adlantis\. -adlantis.*. -# /adlandr. (easylist.txt: 1615) -/(.*/)?adlandr\. -adlandr.*. -# /AdLanding. (easylist.txt: 1614) -/(.*/)?AdLanding\. -AdLanding.*. -# /adlabs.js (easylist.txt: 1613) -/(.*/)?adlabs\.js -adlabs.js*. -# /adlabel_ (easylist.txt: 1612) -/(.*/)?adlabel_ -# /adlabel. (easylist.txt: 1611) -/(.*/)?adlabel\. -adlabel.*. -# /adl.php (easylist.txt: 1610) -/(.*/)?adl\.php -adl.php*. -# /adkeys. (easylist.txt: 1609) -/(.*/)?adkeys\. -adkeys.*. -# /adjuggler? (easylist.txt: 1608) -/(.*/)?adjuggler\? -# /adjug. (easylist.txt: 1607) -/(.*/)?adjug\. -adjug.*. -# /adjsmp. (easylist.txt: 1606) -/(.*/)?adjsmp\. -adjsmp.*. -# /adjs_ (easylist.txt: 1605) -/(.*/)?adjs_ -# /adjs? (easylist.txt: 1604) -/(.*/)?adjs\? -# /adjs/* (easylist.txt: 1603) -/(.*/)?adjs/.* -# /adjs. (easylist.txt: 1602) -/(.*/)?adjs\. -adjs.*. -# /adjk. (easylist.txt: 1601) -/(.*/)?adjk\. -adjk.*. -# /adj.php? (easylist.txt: 1600) -/(.*/)?adj\.php\? -# /adixs. (easylist.txt: 1599) -/(.*/)?adixs\. -adixs.*. -# /adition. (easylist.txt: 1598) -/(.*/)?adition\. -adition.*. -# /adiquity. (easylist.txt: 1596) -/(.*/)?adiquity\. -adiquity.*. -# /adinterax. (easylist.txt: 1595) -/(.*/)?adinterax\. -adinterax.*. -# /adinsertjuicy. (easylist.txt: 1594) -/(.*/)?adinsertjuicy\. -adinsertjuicy.*. -# /adinsertionplugin. (easylist.txt: 1593) -/(.*/)?adinsertionplugin\. -adinsertionplugin.*. -# /adinsert. (easylist.txt: 1592) -/(.*/)?adinsert\. -adinsert.*. -# /adinjector_ (easylist.txt: 1591) -/(.*/)?adinjector_ -# /adinjector. (easylist.txt: 1590) -/(.*/)?adinjector\. -adinjector.*. -# /adinject. (easylist.txt: 1589) -/(.*/)?adinject\. -adinject.*. -# /adinit. (easylist.txt: 1588) -/(.*/)?adinit\. -adinit.*. -# /adindicatortext. (easylist.txt: 1587) -/(.*/)?adindicatortext\. -adindicatortext.*. -# /adindex/* (easylist.txt: 1586) -/(.*/)?adindex/.* -# /adinclude/* (easylist.txt: 1585) -/(.*/)?adinclude/.* -# /adinclude. (easylist.txt: 1584) -/(.*/)?adinclude\. -adinclude.*. -# /adinator/* (easylist.txt: 1583) -/(.*/)?adinator/.* -# /adimg/* (easylist.txt: 1582) -/(.*/)?adimg/.* -# /adimg. (easylist.txt: 1581) -/(.*/)?adimg\. -adimg.*. -# /adimages/*$~subdocument (easylist.txt: 1580) -/(.*/)?adimages/.* -# /adimages. (easylist.txt: 1579) -/(.*/)?adimages\. -adimages.*. -# /adimage? (easylist.txt: 1578) -/(.*/)?adimage\? -# /adimage/* (easylist.txt: 1577) -/(.*/)?adimage/.* -# /adimage. (easylist.txt: 1576) -/(.*/)?adimage\. -adimage.*. -# /adim.html?ad (easylist.txt: 1575) -/(.*/)?adim\.html\?ad -# /adifyoverlay. (easylist.txt: 1574) -/(.*/)?adifyoverlay\. -adifyoverlay.*. -# /adifyids. (easylist.txt: 1573) -/(.*/)?adifyids\. -adifyids.*. -# /adifyad. (easylist.txt: 1572) -/(.*/)?adifyad\. -adifyad.*. -# /adify_ (easylist.txt: 1571) -/(.*/)?adify_ -# /adiframe|*|adtech; (easylist.txt: 1570) -/(.*/)?adiframe\|.*\|adtech; -# /adiframetop. (easylist.txt: 1569) -/(.*/)?adiframetop\. -adiframetop.*. -# /adiframem2. (easylist.txt: 1568) -/(.*/)?adiframem2\. -adiframem2.*. -# /adiframem1. (easylist.txt: 1567) -/(.*/)?adiframem1\. -adiframem1.*. -# /adiframeanchor. (easylist.txt: 1566) -/(.*/)?adiframeanchor\. -adiframeanchor.*. -# /adiframe_ (easylist.txt: 1565) -/(.*/)?adiframe_ -# /adiframe? (easylist.txt: 1564) -/(.*/)?adiframe\? -# /adiframe9. (easylist.txt: 1563) -/(.*/)?adiframe9\. -adiframe9.*. -# /adiframe7. (easylist.txt: 1562) -/(.*/)?adiframe7\. -adiframe7.*. -# /adiframe2. (easylist.txt: 1561) -/(.*/)?adiframe2\. -adiframe2.*. -# /adiframe18. (easylist.txt: 1560) -/(.*/)?adiframe18\. -adiframe18.*. -# /adiframe1. (easylist.txt: 1559) -/(.*/)?adiframe1\. -adiframe1.*. -# /adiframe/* (easylist.txt: 1558) -/(.*/)?adiframe/.* -# /adiframe. (easylist.txt: 1557) -/(.*/)?adiframe\. -adiframe.*. -# /adicon_ (easylist.txt: 1556) -/(.*/)?adicon_ -# /adhug_ (easylist.txt: 1555) -/(.*/)?adhug_ -# /adhub. (easylist.txt: 1554) -/(.*/)?adhub\. -adhub.*. -# /adhtml/* (easylist.txt: 1553) -/(.*/)?adhtml/.* -# /adhref. (easylist.txt: 1552) -/(.*/)?adhref\. -adhref.*. -# /adhood. (easylist.txt: 1550) -/(.*/)?adhood\. -adhood.*. -# /adhomepage2. (easylist.txt: 1549) -/(.*/)?adhomepage2\. -adhomepage2.*. -# /adhomepage. (easylist.txt: 1548) -/(.*/)?adhomepage\. -adhomepage.*. -# /adhints/* (easylist.txt: 1547) -/(.*/)?adhints/.* -# /adhese_ (easylist.txt: 1546) -/(.*/)?adhese_ -# /adhese. (easylist.txt: 1545) -/(.*/)?adhese\. -adhese.*. -# /adheading_ (easylist.txt: 1544) -/(.*/)?adheading_ -# /adheadertxt. (easylist.txt: 1543) -/(.*/)?adheadertxt\. -adheadertxt.*. -# /adheader. (easylist.txt: 1542) -/(.*/)?adheader\. -adheader.*. -# /adhandlers2. (easylist.txt: 1541) -/(.*/)?adhandlers2\. -adhandlers2.*. -# /adhandlers- (easylist.txt: 1540) -/(.*/)?adhandlers- -adhandlers-*. -# /adhandler/*$~subdocument (easylist.txt: 1539) -/(.*/)?adhandler/.* -# /adhandler. (easylist.txt: 1538) -/(.*/)?adhandler\. -adhandler.*. -# /adhalfbanner. (easylist.txt: 1537) -/(.*/)?adhalfbanner\. -adhalfbanner.*. -# /adhads. (easylist.txt: 1536) -/(.*/)?adhads\. -adhads.*. -# /adguru. (easylist.txt: 1535) -/(.*/)?adguru\. -adguru.*. -# /adguard. (easylist.txt: 1534) -/(.*/)?adguard\. -adguard.*. -# /adgraphics/* (easylist.txt: 1533) -/(.*/)?adgraphics/.* -# /adgooglefull2. (easylist.txt: 1532) -/(.*/)?adgooglefull2\. -adgooglefull2.*. -# /adgitize- (easylist.txt: 1531) -/(.*/)?adgitize- -adgitize-*. -# /adgetter. (easylist.txt: 1530) -/(.*/)?adgetter\. -adgetter.*. -# /adGet. (easylist.txt: 1529) -/(.*/)?adGet\. -adGet.*. -# /adgeo/* (easylist.txt: 1528) -/(.*/)?adgeo/.* -# /adgenerator. (easylist.txt: 1527) -/(.*/)?adgenerator\. -adgenerator.*. -# /adgearsegmentation. (easylist.txt: 1526) -/(.*/)?adgearsegmentation\. -adgearsegmentation.*. -# /adgear2- (easylist.txt: 1525) -/(.*/)?adgear2- -adgear2-*. -# /adgear1- (easylist.txt: 1524) -/(.*/)?adgear1- -adgear1-*. -# /adgear/* (easylist.txt: 1523) -/(.*/)?adgear/.* -# /adgear.js (easylist.txt: 1522) -/(.*/)?adgear\.js -adgear.js*. -# /adgalleryheader. (easylist.txt: 1521) -/(.*/)?adgalleryheader\. -adgalleryheader.*. -# /adgallery3| (easylist.txt: 1520) -/(.*/)?adgallery3$ -# /adgallery3. (easylist.txt: 1519) -/(.*/)?adgallery3\. -adgallery3.*. -# /adgallery2| (easylist.txt: 1518) -/(.*/)?adgallery2$ -# /adgallery2. (easylist.txt: 1517) -/(.*/)?adgallery2\. -adgallery2.*. -# /adgallery1| (easylist.txt: 1516) -/(.*/)?adgallery1$ -# /adgallery1. (easylist.txt: 1515) -/(.*/)?adgallery1\. -adgallery1.*. -# /adfunctions. (easylist.txt: 1514) -/(.*/)?adfunctions\. -adfunctions.*. -# /adfunction. (easylist.txt: 1513) -/(.*/)?adfunction\. -adfunction.*. -# /adfuncs. (easylist.txt: 1512) -/(.*/)?adfuncs\. -adfuncs.*. -# /adfshow? (easylist.txt: 1511) -/(.*/)?adfshow\? -# /adfrm. (easylist.txt: 1510) -/(.*/)?adfrm\. -adfrm.*. -# /adfrequencycapping. (easylist.txt: 1509) -/(.*/)?adfrequencycapping\. -adfrequencycapping.*. -# /adframewrapper. (easylist.txt: 1508) -/(.*/)?adframewrapper\. -adframewrapper.*. -# /adframetop. (easylist.txt: 1507) -/(.*/)?adframetop\. -adframetop.*. -# /adframemiddle. (easylist.txt: 1506) -/(.*/)?adframemiddle\. -adframemiddle.*. -# /adframecommon. (easylist.txt: 1505) -/(.*/)?adframecommon\. -adframecommon.*. -# /adframebottom. (easylist.txt: 1504) -/(.*/)?adframebottom\. -adframebottom.*. -# /adframe_ (easylist.txt: 1503) -/(.*/)?adframe_ -# /adframe? (easylist.txt: 1502) -/(.*/)?adframe\? -# /adframe728bot. (easylist.txt: 1501) -/(.*/)?adframe728bot\. -adframe728bot.*. -# /adframe728b2. (easylist.txt: 1500) -/(.*/)?adframe728b2\. -adframe728b2.*. -# /adframe728b. (easylist.txt: 1499) -/(.*/)?adframe728b\. -adframe728b.*. -# /adframe728a. (easylist.txt: 1498) -/(.*/)?adframe728a\. -adframe728a.*. -# /adframe468. (easylist.txt: 1497) -/(.*/)?adframe468\. -adframe468.*. -# /adframe2. (easylist.txt: 1496) -/(.*/)?adframe2\. -adframe2.*. -# /adframe120x240. (easylist.txt: 1495) -/(.*/)?adframe120x240\. -adframe120x240.*. -# /adframe120. (easylist.txt: 1494) -/(.*/)?adframe120\. -adframe120.*. -# /adframe/* (easylist.txt: 1493) -/(.*/)?adframe/.* -# /adframe. (easylist.txt: 1492) -/(.*/)?adframe\. -adframe.*. -# /adfr. (easylist.txt: 1491) -/(.*/)?adfr\. -adfr.*. -# /adfox. (easylist.txt: 1490) -/(.*/)?adfox\. -adfox.*. -# /adforums/* (easylist.txt: 1489) -/(.*/)?adforums/.* -# /adformats/* (easylist.txt: 1488) -/(.*/)?adformats/.* -# /adforge. (easylist.txt: 1487) -/(.*/)?adforge\. -adforge.*. -# /adforgame728x90_ (easylist.txt: 1486) -/(.*/)?adforgame728x90_ -# /adforgame728x90. (easylist.txt: 1485) -/(.*/)?adforgame728x90\. -adforgame728x90.*. -# /adforgame160x600. (easylist.txt: 1484) -/(.*/)?adforgame160x600\. -adforgame160x600.*. -# /adfootright. (easylist.txt: 1483) -/(.*/)?adfootright\. -adfootright.*. -# /adfootleft. (easylist.txt: 1482) -/(.*/)?adfootleft\. -adfootleft.*. -# /adFooterBG. (easylist.txt: 1481) -/(.*/)?adFooterBG\. -adFooterBG.*. -# /adfooter. (easylist.txt: 1480) -/(.*/)?adfooter\. -adfooter.*. -# /adfootcenter. (easylist.txt: 1479) -/(.*/)?adfootcenter\. -adfootcenter.*. -# /adfolder/* (easylist.txt: 1478) -/(.*/)?adfolder/.* -# /adfly/* (easylist.txt: 1477) -/(.*/)?adfly/.* -# /adflashes/* (easylist.txt: 1476) -/(.*/)?adflashes/.* -# /adflash. (easylist.txt: 1475) -/(.*/)?adflash\. -adflash.*. -# /adfillers/* (easylist.txt: 1474) -/(.*/)?adfillers/.* -# /adfiles/* (easylist.txt: 1473) -/(.*/)?adfiles/.* -# /adfiles. (easylist.txt: 1472) -/(.*/)?adfiles\. -adfiles.*. -# /adfile/* (easylist.txt: 1471) -/(.*/)?adfile/.* -# /adfile. (easylist.txt: 1470) -/(.*/)?adfile\. -adfile.*. -# /adfever_ (easylist.txt: 1469) -/(.*/)?adfever_ -# /adfetcher? (easylist.txt: 1468) -/(.*/)?adfetcher\? -# /adfetch? (easylist.txt: 1467) -/(.*/)?adfetch\? -# /adfetch. (easylist.txt: 1466) -/(.*/)?adfetch\. -adfetch.*. -# /adfeedtestview. (easylist.txt: 1465) -/(.*/)?adfeedtestview\. -adfeedtestview.*. -# /adfeedback/* (easylist.txt: 1464) -/(.*/)?adfeedback/.* -# /adfeed. (easylist.txt: 1463) -/(.*/)?adfeed\. -adfeed.*. -# /adfarm/* (easylist.txt: 1462) -/(.*/)?adfarm/.* -# /adfactory_ (easylist.txt: 1459) -/(.*/)?adfactory_ -# /adfactory- (easylist.txt: 1457) -/(.*/)?adfactory- -adfactory-*. -# /adfactor_ (easylist.txt: 1456) -/(.*/)?adfactor_ -# /adfactor/* (easylist.txt: 1455) -/(.*/)?adfactor/.* -# /adf.cgi? (easylist.txt: 1454) -/(.*/)?adf\.cgi\? -# /adexternal. (easylist.txt: 1453) -/(.*/)?adexternal\. -adexternal.*. -# /adexclude/* (easylist.txt: 1452) -/(.*/)?adexclude/.* -# /adexample? (easylist.txt: 1451) -/(.*/)?adexample\? -# /adevents. (easylist.txt: 1450) -/(.*/)?adevents\. -adevents.*. -# /adevent. (easylist.txt: 1449) -/(.*/)?adevent\. -adevent.*. -# /adError/* (easylist.txt: 1448) -/(.*/)?adError/.* -# /aderlee_ads. (easylist.txt: 1447) -/(.*/)?aderlee_ads\. -# /adentry. (easylist.txt: 1446) -/(.*/)?adentry\. -adentry.*. -# /adengine_ (easylist.txt: 1445) -/(.*/)?adengine_ -# /adengine/* (easylist.txt: 1444) -/(.*/)?adengine/.* -# /adengage_ (easylist.txt: 1443) -/(.*/)?adengage_ -# /adengage6. (easylist.txt: 1442) -/(.*/)?adengage6\. -adengage6.*. -# /adengage5. (easylist.txt: 1441) -/(.*/)?adengage5\. -adengage5.*. -# /adengage4. (easylist.txt: 1440) -/(.*/)?adengage4\. -adengage4.*. -# /adengage3. (easylist.txt: 1439) -/(.*/)?adengage3\. -adengage3.*. -# /adengage2. (easylist.txt: 1438) -/(.*/)?adengage2\. -adengage2.*. -# /adengage1. (easylist.txt: 1437) -/(.*/)?adengage1\. -adengage1.*. -# /adengage0. (easylist.txt: 1436) -/(.*/)?adengage0\. -adengage0.*. -# /adengage/* (easylist.txt: 1435) -/(.*/)?adengage/.* -# /adengage. (easylist.txt: 1434) -/(.*/)?adengage\. -adengage.*. -# /adengage- (easylist.txt: 1433) -/(.*/)?adengage- -adengage-*. -# /adedge/* (easylist.txt: 1432) -/(.*/)?adedge/.* -# /addyn|*|adtech; (easylist.txt: 1431) -/(.*/)?addyn\|.*\|adtech; -# /addyn|*;adtech; (easylist.txt: 1430) -/(.*/)?addyn\|.*;adtech; -# /addyn/3.0/* (easylist.txt: 1429) -/(.*/)?addyn/3\.0/.* -# /adds_banner/* (easylist.txt: 1428) -/(.*/)?adds_banner/.* -# /addon/ad/* (easylist.txt: 1427) -/(.*/)?addon/ad/.* -# /addisplay. (easylist.txt: 1426) -/(.*/)?addisplay\. -addisplay.*. -# /addeliverymodule/* (easylist.txt: 1425) -/(.*/)?addeliverymodule/.* -# /addelivery/* (easylist.txt: 1424) -/(.*/)?addelivery/.* -# /addefend/* (easylist.txt: 1423) -/(.*/)?addefend/.* -# /addefend. (easylist.txt: 1422) -/(.*/)?addefend\. -addefend.*. -# /addeals/* (easylist.txt: 1421) -/(.*/)?addeals/.* -# /addatasandbox? (easylist.txt: 1420) -/(.*/)?addatasandbox\? -# /addata. (easylist.txt: 1419) -/(.*/)?addata\. -addata.*. -# /add728. (easylist.txt: 1418) -/(.*/)?add728\. -add728.*. -# /adcycle/* (easylist.txt: 1417) -/(.*/)?adcycle/.* -# /adcycle. (easylist.txt: 1416) -/(.*/)?adcycle\. -adcycle.*. -# /adcss/* (easylist.txt: 1415) -/(.*/)?adcss/.* -# /adcreative/* (easylist.txt: 1414) -/(.*/)?adcreative/.* -# /adcreative. (easylist.txt: 1413) -/(.*/)?adcreative\. -adcreative.*. -# /adcounter. (easylist.txt: 1412) -/(.*/)?adcounter\. -adcounter.*. -# /adcount. (easylist.txt: 1411) -/(.*/)?adcount\. -adcount.*. -# /adcore_ (easylist.txt: 1410) -/(.*/)?adcore_ -# /adcore. (easylist.txt: 1409) -/(.*/)?adcore\. -adcore.*. -# /adcontroller. (easylist.txt: 1408) -/(.*/)?adcontroller\. -adcontroller.*. -# /adcontrol/* (easylist.txt: 1407) -/(.*/)?adcontrol/.* -# /adcontrol. (easylist.txt: 1406) -/(.*/)?adcontrol\. -adcontrol.*. -# /adcontents_ (easylist.txt: 1405) -/(.*/)?adcontents_ -# /adcontent/* (easylist.txt: 1404) -/(.*/)?adcontent/.* -# /adcontent.$~object-subrequest (easylist.txt: 1403) -/(.*/)?adcontent\. -adcontent.*. -# /adcontainer? (easylist.txt: 1402) -/(.*/)?adcontainer\? -# /adconfig/* (easylist.txt: 1401) -/(.*/)?adconfig/.* -# /adconfig.xml? (easylist.txt: 1400) -/(.*/)?adconfig\.xml\? -# /adconfig.js (easylist.txt: 1399) -/(.*/)?adconfig\.js -adconfig.js*. -# /adcomponent/* (easylist.txt: 1398) -/(.*/)?adcomponent/.* -# /adcomp. (easylist.txt: 1397) -/(.*/)?adcomp\. -adcomp.*. -# /adcommon? (easylist.txt: 1396) -/(.*/)?adcommon\? -# /adcollector. (easylist.txt: 1395) -/(.*/)?adcollector\. -adcollector.*. -# /adcodes/* (easylist.txt: 1394) -/(.*/)?adcodes/.* -# /adcode_ (easylist.txt: 1393) -/(.*/)?adcode_ -# /adcode/* (easylist.txt: 1392) -/(.*/)?adcode/.* -# /adcode. (easylist.txt: 1391) -/(.*/)?adcode\. -adcode.*. -# /adclutter. (easylist.txt: 1390) -/(.*/)?adclutter\. -adclutter.*. -# /adclixad. (easylist.txt: 1389) -/(.*/)?adclixad\. -adclixad.*. -# /adclix. (easylist.txt: 1388) -/(.*/)?adclix\. -adclix.*. -# /adclient/* (easylist.txt: 1387) -/(.*/)?adclient/.* -# /adclient. (easylist.txt: 1386) -/(.*/)?adclient\. -adclient.*. -# /adclient- (easylist.txt: 1385) -/(.*/)?adclient- -adclient-*. -# /adclick/* (easylist.txt: 1384) -/(.*/)?adclick/.* -# /adclick. (easylist.txt: 1383) -/(.*/)?adclick\. -adclick.*. -# /adcircle. (easylist.txt: 1382) -/(.*/)?adcircle\. -adcircle.*. -# /adchoicesv4. (easylist.txt: 1381) -/(.*/)?adchoicesv4\. -adchoicesv4.*. -# /adchoiceslogo. (easylist.txt: 1380) -/(.*/)?adchoiceslogo\. -adchoiceslogo.*. -# /adchoicesicon. (easylist.txt: 1379) -/(.*/)?adchoicesicon\. -adchoicesicon.*. -# /adchoicesfooter. (easylist.txt: 1378) -/(.*/)?adchoicesfooter\. -adchoicesfooter.*. -# /adchoices_ (easylist.txt: 1377) -/(.*/)?adchoices_ -# /adchoices2. (easylist.txt: 1376) -/(.*/)?adchoices2\. -adchoices2.*. -# /adchoices16. (easylist.txt: 1375) -/(.*/)?adchoices16\. -adchoices16.*. -# /adchoices/* (easylist.txt: 1374) -/(.*/)?adchoices/.* -# /adchoices. (easylist.txt: 1373) -/(.*/)?adchoices\. -adchoices.*. -# /adchoices- (easylist.txt: 1372) -/(.*/)?adchoices- -adchoices-*. -# /adchoice_ (easylist.txt: 1371) -/(.*/)?adchoice_ -# /adchoice/* (easylist.txt: 1370) -/(.*/)?adchoice/.* -# /adchoice. (easylist.txt: 1369) -/(.*/)?adchoice\. -adchoice.*. -# /adcheck? (easylist.txt: 1368) -/(.*/)?adcheck\? -# /adcheck. (easylist.txt: 1367) -/(.*/)?adcheck\. -adcheck.*. -# /adchannel_ (easylist.txt: 1366) -/(.*/)?adchannel_ -# /adchain. (easylist.txt: 1365) -/(.*/)?adchain\. -adchain.*. -# /adchain- (easylist.txt: 1364) -/(.*/)?adchain- -adchain-*. -# /adcgi? (easylist.txt: 1363) -/(.*/)?adcgi\? -# /adcframe. (easylist.txt: 1362) -/(.*/)?adcframe\. -adcframe.*. -# /adcentral. (easylist.txt: 1361) -/(.*/)?adcentral\. -adcentral.*. -# /adcenter.$script (easylist.txt: 1360) -/(.*/)?adcenter\. -adcenter.*. -# /adcell/* (easylist.txt: 1359) -/(.*/)?adcell/.* -# /adcdn. (easylist.txt: 1358) -/(.*/)?adcdn\. -adcdn.*. -# /adcde.js (easylist.txt: 1357) -/(.*/)?adcde\.js -adcde.js*. -# /adcast_ (easylist.txt: 1356) -/(.*/)?adcast_ -# /adcast01_ (easylist.txt: 1355) -/(.*/)?adcast01_ -# /adcash. (easylist.txt: 1354) -/(.*/)?adcash\. -adcash.*. -# /adcash- (easylist.txt: 1353) -/(.*/)?adcash- -adcash-*. -# /adcampaigns/* (easylist.txt: 1352) -/(.*/)?adcampaigns/.* -# /adcalloverride. (easylist.txt: 1351) -/(.*/)?adcalloverride\. -adcalloverride.*. -# /adcall. (easylist.txt: 1350) -/(.*/)?adcall\. -adcall.*. -# /adcache. (easylist.txt: 1349) -/(.*/)?adcache\. -adcache.*. -# /adbytes. (easylist.txt: 1348) -/(.*/)?adbytes\. -adbytes.*. -# /adbutler/* (easylist.txt: 1347) -/(.*/)?adbutler/.* -# /adbureau. (easylist.txt: 1346) -/(.*/)?adbureau\. -adbureau.*. -# /adbug_ (easylist.txt: 1345) -/(.*/)?adbug_ -# /adbucks/* (easylist.txt: 1344) -/(.*/)?adbucks/.* -# /adbriteincright. (easylist.txt: 1343) -/(.*/)?adbriteincright\. -adbriteincright.*. -# /adbriteincleft2. (easylist.txt: 1342) -/(.*/)?adbriteincleft2\. -adbriteincleft2.*. -# /adbriteinc. (easylist.txt: 1341) -/(.*/)?adbriteinc\. -adbriteinc.*. -# /adbrite_ (easylist.txt: 1340) -/(.*/)?adbrite_ -# /adbrite2. (easylist.txt: 1339) -/(.*/)?adbrite2\. -adbrite2.*. -# /adbrite/* (easylist.txt: 1338) -/(.*/)?adbrite/.* -# /adbrite. (easylist.txt: 1337) -/(.*/)?adbrite\. -adbrite.*. -# /adbrite- (easylist.txt: 1336) -/(.*/)?adbrite- -adbrite-*. -# /adboxtable- (easylist.txt: 1335) -/(.*/)?adboxtable- -adboxtable-*. -# /adboxes/* (easylist.txt: 1334) -/(.*/)?adboxes/.* -# /adboxbk. (easylist.txt: 1333) -/(.*/)?adboxbk\. -adboxbk.*. -# /adbox_ (easylist.txt: 1332) -/(.*/)?adbox_ -# /adbox2. (easylist.txt: 1331) -/(.*/)?adbox2\. -adbox2.*. -# /adbox1. (easylist.txt: 1330) -/(.*/)?adbox1\. -adbox1.*. -# /adbox/* (easylist.txt: 1329) -/(.*/)?adbox/.* -# /adbox. (easylist.txt: 1328) -/(.*/)?adbox\. -adbox.*. -# /adbottom. (easylist.txt: 1327) -/(.*/)?adbottom\. -adbottom.*. -# /adbotright. (easylist.txt: 1326) -/(.*/)?adbotright\. -adbotright.*. -# /adbotleft. (easylist.txt: 1325) -/(.*/)?adbotleft\. -adbotleft.*. -# /adbot_ (easylist.txt: 1324) -/(.*/)?adbot_ -# /adbot728. (easylist.txt: 1323) -/(.*/)?adbot728\. -adbot728.*. -# /adbot300. (easylist.txt: 1322) -/(.*/)?adbot300\. -adbot300.*. -# /adbot160. (easylist.txt: 1321) -/(.*/)?adbot160\. -adbot160.*. -# /adborder. (easylist.txt: 1320) -/(.*/)?adborder\. -adborder.*. -# /adboost. (easylist.txt: 1319) -/(.*/)?adboost\. -adboost.*. -# /adbn? (easylist.txt: 1318) -/(.*/)?adbn\? -# /adblockr. (easylist.txt: 1317) -/(.*/)?adblockr\. -adblockr.*. -# /adblockl. (easylist.txt: 1316) -/(.*/)?adblockl\. -adblockl.*. -# /adblock?id= (easylist.txt: 1315) -/(.*/)?adblock\?id= -# /adblock26. (easylist.txt: 1314) -/(.*/)?adblock26\. -adblock26.*. -# /adblock.js (easylist.txt: 1313) -/(.*/)?adblock\.js -adblock.js*. -# /adblock.ash (easylist.txt: 1312) -/(.*/)?adblock\.ash -adblock.ash*. -# /adblob. (easylist.txt: 1311) -/(.*/)?adblob\. -adblob.*. -# /adblade-publisher-tools/* (easylist.txt: 1310) -/(.*/)?adblade-publisher-tools/.* -# /adbg.jpg (easylist.txt: 1309) -/(.*/)?adbg\.jpg -adbg.jpg*. -# /adbetween/* (easylist.txt: 1308) -/(.*/)?adbetween/.* -# /adbebi_ (easylist.txt: 1307) -/(.*/)?adbebi_ -# /adbeacon. (easylist.txt: 1306) -/(.*/)?adbeacon\. -adbeacon.*. -# /adbase. (easylist.txt: 1305) -/(.*/)?adbase\. -adbase.*. -# /adbars. (easylist.txt: 1304) -/(.*/)?adbars\. -adbars.*. -# /adbar_ (easylist.txt: 1303) -/(.*/)?adbar_ -# /adbar2_ (easylist.txt: 1302) -/(.*/)?adbar2_ -# /adbar/* (easylist.txt: 1301) -/(.*/)?adbar/.* -# /adbar. (easylist.txt: 1300) -/(.*/)?adbar\. -adbar.*. -# /adbanners/* (easylist.txt: 1299) -/(.*/)?adbanners/.* -# /adbanner_ (easylist.txt: 1298) -/(.*/)?adbanner_ -# /adbanner2. (easylist.txt: 1297) -/(.*/)?adbanner2\. -adbanner2.*. -# /adbanner/* (easylist.txt: 1296) -/(.*/)?adbanner/.* -# /adbanner. (easylist.txt: 1295) -/(.*/)?adbanner\. -adbanner.*. -# /adban. (easylist.txt: 1294) -/(.*/)?adban\. -adban.*. -# /adback? (easylist.txt: 1293) -/(.*/)?adback\? -# /adback. (easylist.txt: 1292) -/(.*/)?adback\. -adback.*. -# /adb.js?tag= (easylist.txt: 1291) -/(.*/)?adb\.js\?tag= -# /adasset4/* (easylist.txt: 1290) -/(.*/)?adasset4/.* -# /adasset/* (easylist.txt: 1289) -/(.*/)?adasset/.* -# /adarena/* (easylist.txt: 1288) -/(.*/)?adarena/.* -# /adaptvexchangevastvideo. (easylist.txt: 1287) -/(.*/)?adaptvexchangevastvideo\. -adaptvexchangevastvideo.*. -# /adaptvadservervastvideo. (easylist.txt: 1286) -/(.*/)?adaptvadservervastvideo\. -adaptvadservervastvideo.*. -# /adaptvadplayer. (easylist.txt: 1285) -/(.*/)?adaptvadplayer\. -adaptvadplayer.*. -# /adanim/* (easylist.txt: 1284) -/(.*/)?adanim/.* -# /adanalytics. (easylist.txt: 1283) -/(.*/)?adanalytics\. -adanalytics.*. -# /adaffiliate_ (easylist.txt: 1282) -/(.*/)?adaffiliate_ -# /adactions. (easylist.txt: 1281) -/(.*/)?adactions\. -adactions.*. -# /ad_www_ (easylist.txt: 1280) -/(.*/)?ad_www_ -# /ad_wrapper. (easylist.txt: 1279) -/(.*/)?ad_wrapper\. -# /ad_width/* (easylist.txt: 1278) -/(.*/)?ad_width/.* -# /ad_wide_ (easylist.txt: 1277) -/(.*/)?ad_wide_ -# /ad_view_ (easylist.txt: 1276) -/(.*/)?ad_view_ -# /ad_video1. (easylist.txt: 1275) -/(.*/)?ad_video1\. -# /ad_video.htm (easylist.txt: 1274) -/(.*/)?ad_video\.htm -# /ad_vertical. (easylist.txt: 1273) -/(.*/)?ad_vertical\. -# /ad_vert. (easylist.txt: 1272) -/(.*/)?ad_vert\. -# /ad_ver/* (easylist.txt: 1271) -/(.*/)?ad_ver/.* -# /ad_utils/* (easylist.txt: 1270) -/(.*/)?ad_utils/.* -# /ad_utils. (easylist.txt: 1269) -/(.*/)?ad_utils\. -# /ad_util. (easylist.txt: 1268) -/(.*/)?ad_util\. -# /ad_upload/* (easylist.txt: 1267) -/(.*/)?ad_upload/.* -# /ad_units/* (easylist.txt: 1266) -/(.*/)?ad_units/.* -# /ad_units. (easylist.txt: 1265) -/(.*/)?ad_units\. -# /ad_txt. (easylist.txt: 1264) -/(.*/)?ad_txt\. -# /ad_tpl. (easylist.txt: 1263) -/(.*/)?ad_tpl\. -# /ad_tower_ (easylist.txt: 1262) -/(.*/)?ad_tower_ -# /ad_topgray2. (easylist.txt: 1261) -/(.*/)?ad_topgray2\. -# /ad_top_ (easylist.txt: 1260) -/(.*/)?ad_top_ -# /ad_top/* (easylist.txt: 1259) -/(.*/)?ad_top/.* -# /ad_top. (easylist.txt: 1258) -/(.*/)?ad_top\. -# /ad_title_ (easylist.txt: 1257) -/(.*/)?ad_title_ -# /ad_timer. (easylist.txt: 1256) -/(.*/)?ad_timer\. -# /ad_tile/* (easylist.txt: 1255) -/(.*/)?ad_tile/.* -# /ad_tickets. (easylist.txt: 1254) -/(.*/)?ad_tickets\. -# /ad_text_ (easylist.txt: 1253) -/(.*/)?ad_text_ -# /ad_text. (easylist.txt: 1252) -/(.*/)?ad_text\. -# /ad_tags_ (easylist.txt: 1251) -/(.*/)?ad_tags_ -# /ad_tag_ (easylist.txt: 1250) -/(.*/)?ad_tag_ -# /ad_tag. (easylist.txt: 1249) -/(.*/)?ad_tag\. -# /ad_tab. (easylist.txt: 1248) -/(.*/)?ad_tab\. -# /ad_system/* (easylist.txt: 1247) -/(.*/)?ad_system/.* -# /ad_syshome. (easylist.txt: 1246) -/(.*/)?ad_syshome\. -# /ad_sys/* (easylist.txt: 1245) -/(.*/)?ad_sys/.* -# /ad_supertile/* (easylist.txt: 1244) -/(.*/)?ad_supertile/.* -# /ad_styling_ (easylist.txt: 1243) -/(.*/)?ad_styling_ -# /ad_stem/* (easylist.txt: 1242) -/(.*/)?ad_stem/.* -# /ad_status. (easylist.txt: 1241) -/(.*/)?ad_status\. -# /ad_srv. (easylist.txt: 1240) -/(.*/)?ad_srv\. -# /ad_squares. (easylist.txt: 1239) -/(.*/)?ad_squares\. -# /ad_square_ (easylist.txt: 1238) -/(.*/)?ad_square_ -# /ad_square. (easylist.txt: 1237) -/(.*/)?ad_square\. -# /ad_spot. (easylist.txt: 1236) -/(.*/)?ad_spot\. -# /ad_space. (easylist.txt: 1235) -/(.*/)?ad_space\. -# /ad_slideout. (easylist.txt: 1234) -/(.*/)?ad_slideout\. -# /ad_skyscraper. (easylist.txt: 1233) -/(.*/)?ad_skyscraper\. -# /ad_sky. (easylist.txt: 1232) -/(.*/)?ad_sky\. -# /ad_skin_ (easylist.txt: 1231) -/(.*/)?ad_skin_ -# /ad_sizes= (easylist.txt: 1230) -/(.*/)?ad_sizes= -# /ad_sidebar/* (easylist.txt: 1229) -/(.*/)?ad_sidebar/.* -# /ad_side. (easylist.txt: 1228) -/(.*/)?ad_side\. -# /ad_show? (easylist.txt: 1227) -/(.*/)?ad_show\? -# /ad_show. (easylist.txt: 1226) -/(.*/)?ad_show\. -# /ad_shared/* (easylist.txt: 1225) -/(.*/)?ad_shared/.* -# /ad_servlet. (easylist.txt: 1224) -/(.*/)?ad_servlet\. -# /ad_server/* (easylist.txt: 1223) -/(.*/)?ad_server/.* -# /ad_server. (easylist.txt: 1222) -/(.*/)?ad_server\. -# /ad_serve_ (easylist.txt: 1221) -/(.*/)?ad_serve_ -# /ad_serve. (easylist.txt: 1220) -/(.*/)?ad_serve\. -# /ad_serv. (easylist.txt: 1219) -/(.*/)?ad_serv\. -# /ad_scroller. (easylist.txt: 1218) -/(.*/)?ad_scroller\. -# /ad_script_ (easylist.txt: 1217) -/(.*/)?ad_script_ -# /ad_script. (easylist.txt: 1216) -/(.*/)?ad_script\. -# /ad_rotator_ (easylist.txt: 1215) -/(.*/)?ad_rotator_ -# /ad_rotator/* (easylist.txt: 1214) -/(.*/)?ad_rotator/.* -# /ad_rotator. (easylist.txt: 1213) -/(.*/)?ad_rotator\. -# /ad_rotation. (easylist.txt: 1212) -/(.*/)?ad_rotation\. -# /ad_right_ (easylist.txt: 1211) -/(.*/)?ad_right_ -# /ad_right. (easylist.txt: 1210) -/(.*/)?ad_right\. -# /ad_resize. (easylist.txt: 1209) -/(.*/)?ad_resize\. -# /ad_request. (easylist.txt: 1208) -/(.*/)?ad_request\. -# /ad_req. (easylist.txt: 1207) -/(.*/)?ad_req\. -# /ad_rentangle. (easylist.txt: 1206) -/(.*/)?ad_rentangle\. -# /ad_renderv4_ (easylist.txt: 1205) -/(.*/)?ad_renderv4_ -# /ad_render_ (easylist.txt: 1204) -/(.*/)?ad_render_ -# /ad_reloader_ (easylist.txt: 1203) -/(.*/)?ad_reloader_ -# /ad_refresher. (easylist.txt: 1202) -/(.*/)?ad_refresher\. -# /ad_refresh. (easylist.txt: 1201) -/(.*/)?ad_refresh\. -# /ad_rectangle_ (easylist.txt: 1200) -/(.*/)?ad_rectangle_ -# /ad_print. (easylist.txt: 1199) -/(.*/)?ad_print\. -# /ad_preroll- (easylist.txt: 1198) -/(.*/)?ad_preroll- -# /ad_premium_ (easylist.txt: 1197) -/(.*/)?ad_premium_ -# /ad_premium. (easylist.txt: 1196) -/(.*/)?ad_premium\. -# /ad_position_ (easylist.txt: 1195) -/(.*/)?ad_position_ -# /ad_position= (easylist.txt: 1194) -/(.*/)?ad_position= -# /ad_pos= (easylist.txt: 1193) -/(.*/)?ad_pos= -# /ad_popup_ (easylist.txt: 1192) -/(.*/)?ad_popup_ -# /ad_pop1. (easylist.txt: 1191) -/(.*/)?ad_pop1\. -# /ad_pop. (easylist.txt: 1190) -/(.*/)?ad_pop\. -# /ad_pics/* (easylist.txt: 1189) -/(.*/)?ad_pics/.* -# /ad_peel/* (easylist.txt: 1188) -/(.*/)?ad_peel/.* -# /ad_parts. (easylist.txt: 1187) -/(.*/)?ad_parts\. -# /ad_paper_ (easylist.txt: 1186) -/(.*/)?ad_paper_ -# /ad_page_ (easylist.txt: 1185) -/(.*/)?ad_page_ -# /ad_overlay. (easylist.txt: 1184) -/(.*/)?ad_overlay\. -# /ad_option_ (easylist.txt: 1183) -/(.*/)?ad_option_ -# /ad_ops/* (easylist.txt: 1182) -/(.*/)?ad_ops/.* -# /ad_offersmail_ (easylist.txt: 1181) -/(.*/)?ad_offersmail_ -# /ad_oas/* (easylist.txt: 1180) -/(.*/)?ad_oas/.* -# /ad_notice. (easylist.txt: 1179) -/(.*/)?ad_notice\. -# /ad_note. (easylist.txt: 1178) -/(.*/)?ad_note\. -# /ad_news. (easylist.txt: 1177) -/(.*/)?ad_news\. -# /ad_navigbar_ (easylist.txt: 1176) -/(.*/)?ad_navigbar_ -# /ad_multi_ (easylist.txt: 1175) -/(.*/)?ad_multi_ -# /ad_mpu. (easylist.txt: 1174) -/(.*/)?ad_mpu\. -# /ad_mobile. (easylist.txt: 1173) -/(.*/)?ad_mobile\. -# /ad_mini_ (easylist.txt: 1172) -/(.*/)?ad_mini_ -# /ad_medium_ (easylist.txt: 1171) -/(.*/)?ad_medium_ -# /ad_media/* (easylist.txt: 1170) -/(.*/)?ad_media/.* -# /ad_mbox. (easylist.txt: 1169) -/(.*/)?ad_mbox\. -# /ad_master_ (easylist.txt: 1168) -/(.*/)?ad_master_ -# /ad_manager/* (easylist.txt: 1167) -/(.*/)?ad_manager/.* -# /ad_manager. (easylist.txt: 1166) -/(.*/)?ad_manager\. -# /ad_manage. (easylist.txt: 1165) -/(.*/)?ad_manage\. -# /ad_lomadee. (easylist.txt: 1164) -/(.*/)?ad_lomadee\. -# /ad_log_ (easylist.txt: 1163) -/(.*/)?ad_log_ -# /ad_locations/* (easylist.txt: 1162) -/(.*/)?ad_locations/.* -# /ad_loader2. (easylist.txt: 1161) -/(.*/)?ad_loader2\. -# /ad_loader. (easylist.txt: 1160) -/(.*/)?ad_loader\. -# /ad_load. (easylist.txt: 1159) -/(.*/)?ad_load\. -# /ad_listpage. (easylist.txt: 1158) -/(.*/)?ad_listpage\. -# /ad_links/* (easylist.txt: 1157) -/(.*/)?ad_links/.* -# /ad_link. (easylist.txt: 1156) -/(.*/)?ad_link\. -# /ad_legend_ (easylist.txt: 1155) -/(.*/)?ad_legend_ -# /ad_left_ (easylist.txt: 1154) -/(.*/)?ad_left_ -# /ad_left. (easylist.txt: 1153) -/(.*/)?ad_left\. -# /ad_leaderboard/* (easylist.txt: 1152) -/(.*/)?ad_leaderboard/.* -# /ad_leaderboard. (easylist.txt: 1151) -/(.*/)?ad_leaderboard\. -# /ad_leader_ (easylist.txt: 1150) -/(.*/)?ad_leader_ -# /ad_leader. (easylist.txt: 1149) -/(.*/)?ad_leader\. -# /ad_large. (easylist.txt: 1148) -/(.*/)?ad_large\. -# /ad_label_ (easylist.txt: 1147) -/(.*/)?ad_label_ -# /ad_label728. (easylist.txt: 1146) -/(.*/)?ad_label728\. -# /ad_label2_ (easylist.txt: 1145) -/(.*/)?ad_label2_ -# /ad_keywords. (easylist.txt: 1144) -/(.*/)?ad_keywords\. -# /ad_jnaught/* (easylist.txt: 1143) -/(.*/)?ad_jnaught/.* -# /ad_insert. (easylist.txt: 1142) -/(.*/)?ad_insert\. -# /ad_index_ (easylist.txt: 1141) -/(.*/)?ad_index_ -# /ad_include. (easylist.txt: 1140) -/(.*/)?ad_include\. -# /ad_img/* (easylist.txt: 1139) -/(.*/)?ad_img/.* -# /ad_img. (easylist.txt: 1138) -/(.*/)?ad_img\. -# /ad_images/* (easylist.txt: 1137) -/(.*/)?ad_images/.* -# /ad_image2. (easylist.txt: 1136) -/(.*/)?ad_image2\. -# /ad_image. (easylist.txt: 1135) -/(.*/)?ad_image\. -# /ad_iframe_ (easylist.txt: 1134) -/(.*/)?ad_iframe_ -# /ad_iframe. (easylist.txt: 1133) -/(.*/)?ad_iframe\. -# /ad_icons/* (easylist.txt: 1132) -/(.*/)?ad_icons/.* -# /ad_html/* (easylist.txt: 1131) -/(.*/)?ad_html/.* -# /ad_horizontal. (easylist.txt: 1130) -/(.*/)?ad_horizontal\. -# /ad_horiz. (easylist.txt: 1129) -/(.*/)?ad_horiz\. -# /ad_horisontal. (easylist.txt: 1128) -/(.*/)?ad_horisontal\. -# /ad_homepage_ (easylist.txt: 1127) -/(.*/)?ad_homepage_ -# /ad_home_ (easylist.txt: 1126) -/(.*/)?ad_home_ -# /ad_home2011_ (easylist.txt: 1125) -/(.*/)?ad_home2011_ -# /ad_holder/* (easylist.txt: 1124) -/(.*/)?ad_holder/.* -# /ad_height/* (easylist.txt: 1123) -/(.*/)?ad_height/.* -# /ad_header_ (easylist.txt: 1122) -/(.*/)?ad_header_ -# /ad_header. (easylist.txt: 1121) -/(.*/)?ad_header\. -# /ad_head_ (easylist.txt: 1120) -/(.*/)?ad_head_ -# /ad_hcr_ (easylist.txt: 1119) -/(.*/)?ad_hcr_ -# /ad_hcl_ (easylist.txt: 1118) -/(.*/)?ad_hcl_ -# /ad_h.css? (easylist.txt: 1117) -/(.*/)?ad_h\.css\? -# /ad_google. (easylist.txt: 1116) -/(.*/)?ad_google\. -# /ad_gif_ (easylist.txt: 1115) -/(.*/)?ad_gif_ -# /ad_gif/* (easylist.txt: 1114) -/(.*/)?ad_gif/.* -# /ad_generator? (easylist.txt: 1113) -/(.*/)?ad_generator\? -# /ad_generator. (easylist.txt: 1112) -/(.*/)?ad_generator\. -# /ad_function. (easylist.txt: 1111) -/(.*/)?ad_function\. -# /ad_frm. (easylist.txt: 1110) -/(.*/)?ad_frm\. -# /ad_frame? (easylist.txt: 1109) -/(.*/)?ad_frame\? -# /ad_frame. (easylist.txt: 1108) -/(.*/)?ad_frame\. -# /ad_forum_ (easylist.txt: 1107) -/(.*/)?ad_forum_ -# /ad_footer_ (easylist.txt: 1106) -/(.*/)?ad_footer_ -# /ad_footer. (easylist.txt: 1105) -/(.*/)?ad_footer\. -# /ad_folder/* (easylist.txt: 1104) -/(.*/)?ad_folder/.* -# /ad_floater. (easylist.txt: 1103) -/(.*/)?ad_floater\. -# /ad_flat_ (easylist.txt: 1102) -/(.*/)?ad_flat_ -# /ad_flash/* (easylist.txt: 1101) -/(.*/)?ad_flash/.* -# /ad_filmstrip/* (easylist.txt: 1100) -/(.*/)?ad_filmstrip/.* -# /ad_filler. (easylist.txt: 1099) -/(.*/)?ad_filler\. -# /ad_fill. (easylist.txt: 1098) -/(.*/)?ad_fill\. -# /ad_files/* (easylist.txt: 1097) -/(.*/)?ad_files/.* -# /ad_file/* (easylist.txt: 1096) -/(.*/)?ad_file/.* -# /ad_feed. (easylist.txt: 1095) -/(.*/)?ad_feed\. -# /ad_entry_ (easylist.txt: 1094) -/(.*/)?ad_entry_ -# /ad_engine? (easylist.txt: 1093) -/(.*/)?ad_engine\? -# /ad_editorials_ (easylist.txt: 1092) -/(.*/)?ad_editorials_ -# /ad_ebound. (easylist.txt: 1091) -/(.*/)?ad_ebound\. -# /ad_drivers/* (easylist.txt: 1090) -/(.*/)?ad_drivers/.* -# /ad_display_ (easylist.txt: 1089) -/(.*/)?ad_display_ -# /ad_display. (easylist.txt: 1088) -/(.*/)?ad_display\. -# /ad_dir/* (easylist.txt: 1087) -/(.*/)?ad_dir/.* -# /ad_digital. (easylist.txt: 1086) -/(.*/)?ad_digital\. -# /ad_detect. (easylist.txt: 1085) -/(.*/)?ad_detect\. -# /ad_data/* (easylist.txt: 1084) -/(.*/)?ad_data/.* -# /ad_creatives. (easylist.txt: 1083) -/(.*/)?ad_creatives\. -# /ad_counter_ (easylist.txt: 1082) -/(.*/)?ad_counter_ -# /ad_counter. (easylist.txt: 1081) -/(.*/)?ad_counter\. -# /ad_count. (easylist.txt: 1080) -/(.*/)?ad_count\. -# /ad_contents/* (easylist.txt: 1079) -/(.*/)?ad_contents/.* -# /ad_content. (easylist.txt: 1078) -/(.*/)?ad_content\. -# /ad_container_ (easylist.txt: 1077) -/(.*/)?ad_container_ -# /ad_configurations_ (easylist.txt: 1076) -/(.*/)?ad_configurations_ -# /ad_configuration. (easylist.txt: 1075) -/(.*/)?ad_configuration\. -# /ad_commonside_ (easylist.txt: 1074) -/(.*/)?ad_commonside_ -# /ad_commonside. (easylist.txt: 1073) -/(.*/)?ad_commonside\. -# /ad_code. (easylist.txt: 1072) -/(.*/)?ad_code\. -# /ad_choices_ (easylist.txt: 1071) -/(.*/)?ad_choices_ -# /ad_choices. (easylist.txt: 1070) -/(.*/)?ad_choices\. -# /ad_check. (easylist.txt: 1069) -/(.*/)?ad_check\. -# /ad_caption. (easylist.txt: 1068) -/(.*/)?ad_caption\. -# /ad_campaigns/* (easylist.txt: 1067) -/(.*/)?ad_campaigns/.* -# /ad_cache/* (easylist.txt: 1066) -/(.*/)?ad_cache/.* -# /ad_button. (easylist.txt: 1065) -/(.*/)?ad_button\. -# /ad_bsb. (easylist.txt: 1064) -/(.*/)?ad_bsb\. -# /ad_box_ (easylist.txt: 1063) -/(.*/)?ad_box_ -# /ad_box? (easylist.txt: 1062) -/(.*/)?ad_box\? -# /ad_box2. (easylist.txt: 1061) -/(.*/)?ad_box2\. -# /ad_box1. (easylist.txt: 1060) -/(.*/)?ad_box1\. -# /ad_box. (easylist.txt: 1059) -/(.*/)?ad_box\. -# /ad_bottom. (easylist.txt: 1058) -/(.*/)?ad_bottom\. -# /ad_bot. (easylist.txt: 1057) -/(.*/)?ad_bot\. -# /ad_bomb/* (easylist.txt: 1056) -/(.*/)?ad_bomb/.* -# /ad_blog. (easylist.txt: 1055) -/(.*/)?ad_blog\. -# /ad_big_ (easylist.txt: 1054) -/(.*/)?ad_big_ -# /ad_base. (easylist.txt: 1053) -/(.*/)?ad_base\. -# /ad_bar_ (easylist.txt: 1052) -/(.*/)?ad_bar_ -# /ad_banners/* (easylist.txt: 1051) -/(.*/)?ad_banners/.* -# /ad_bannerPool- (easylist.txt: 1050) -/(.*/)?ad_bannerPool- -# /ad_banner_ (easylist.txt: 1049) -/(.*/)?ad_banner_ -# /ad_banner2. (easylist.txt: 1048) -/(.*/)?ad_banner2\. -# /ad_banner1. (easylist.txt: 1047) -/(.*/)?ad_banner1\. -# /ad_banner/* (easylist.txt: 1046) -/(.*/)?ad_banner/.* -# /ad_banner. (easylist.txt: 1045) -/(.*/)?ad_banner\. -# /Ad_Arub_ (easylist.txt: 1044) -/(.*/)?Ad_Arub_ -# /ad_art/* (easylist.txt: 1043) -/(.*/)?ad_art/.* -# /ad_area. (easylist.txt: 1042) -/(.*/)?ad_area\. -# /ad_agency/* (easylist.txt: 1041) -/(.*/)?ad_agency/.* -# /ad_960x90_ (easylist.txt: 1040) -/(.*/)?ad_960x90_ -# /ad_728_ (easylist.txt: 1039) -/(.*/)?ad_728_ -# /ad_728. (easylist.txt: 1038) -/(.*/)?ad_728\. -# /ad_600x160_ (easylist.txt: 1037) -/(.*/)?ad_600x160_ -# /ad_600_ (easylist.txt: 1036) -/(.*/)?ad_600_ -# /ad_300_ (easylist.txt: 1035) -/(.*/)?ad_300_ -# /ad_300250. (easylist.txt: 1034) -/(.*/)?ad_300250\. -# /ad_300. (easylist.txt: 1033) -/(.*/)?ad_300\. -# /ad_250x250_ (easylist.txt: 1032) -/(.*/)?ad_250x250_ -# /ad_234x60_ (easylist.txt: 1031) -/(.*/)?ad_234x60_ -# /ad_200x90_ (easylist.txt: 1030) -/(.*/)?ad_200x90_ -# /ad_120_ (easylist.txt: 1029) -/(.*/)?ad_120_ -# /ad?type= (easylist.txt: 1028) -/(.*/)?ad\?type= -# /ad?sponsor= (easylist.txt: 1027) -/(.*/)?ad\?sponsor= -# /ad?pos_ (easylist.txt: 1026) -/(.*/)?ad\?pos_ -# /ad?iframe_ (easylist.txt: 1025) -/(.*/)?ad\?iframe_ -# /ad?currentview= (easylist.txt: 1024) -/(.*/)?ad\?currentview= -# /ad?count= (easylist.txt: 1023) -/(.*/)?ad\?count= -# /ad?cid= (easylist.txt: 1022) -/(.*/)?ad\?cid= -# /ad?channel= (easylist.txt: 1021) -/(.*/)?ad\?channel= -# /ad8. (easylist.txt: 1020) -/(.*/)?ad8\. -ad8.*. -# /ad728x90. (easylist.txt: 1019) -/(.*/)?ad728x90\. -ad728x90.*. -# /ad728x15_ (easylist.txt: 1018) -/(.*/)?ad728x15_ -# /ad728x15. (easylist.txt: 1017) -/(.*/)?ad728x15\. -ad728x15.*. -# /ad728x. (easylist.txt: 1016) -/(.*/)?ad728x\. -ad728x.*. -# /ad728ws. (easylist.txt: 1015) -/(.*/)?ad728ws\. -ad728ws.*. -# /ad728w. (easylist.txt: 1014) -/(.*/)?ad728w\. -ad728w.*. -# /ad728t. (easylist.txt: 1013) -/(.*/)?ad728t\. -ad728t.*. -# /ad728s. (easylist.txt: 1012) -/(.*/)?ad728s\. -ad728s.*. -# /ad728home. (easylist.txt: 1011) -/(.*/)?ad728home\. -ad728home.*. -# /ad728f2. (easylist.txt: 1010) -/(.*/)?ad728f2\. -ad728f2.*. -# /ad728f. (easylist.txt: 1009) -/(.*/)?ad728f\. -ad728f.*. -# /ad728. (easylist.txt: 1008) -/(.*/)?ad728\. -ad728.*. -# /ad728- (easylist.txt: 1007) -/(.*/)?ad728- -ad728-*. -# /ad7. (easylist.txt: 1006) -/(.*/)?ad7\. -ad7.*. -# /ad600x330. (easylist.txt: 1005) -/(.*/)?ad600x330\. -ad600x330.*. -# /ad600x250. (easylist.txt: 1004) -/(.*/)?ad600x250\. -ad600x250.*. -# /ad6. (easylist.txt: 1003) -/(.*/)?ad6\. -ad6.*. -# /ad5. (easylist.txt: 1002) -/(.*/)?ad5\. -ad5.*. -# /ad4i. (easylist.txt: 1001) -/(.*/)?ad4i\. -ad4i.*. -# /ad468x80. (easylist.txt: 1000) -/(.*/)?ad468x80\. -ad468x80.*. -# /ad468x60. (easylist.txt: 999) -/(.*/)?ad468x60\. -ad468x60.*. -# /ad468. (easylist.txt: 998) -/(.*/)?ad468\. -ad468.*. -# /ad41_ (easylist.txt: 997) -/(.*/)?ad41_ -# /ad3i. (easylist.txt: 995) -/(.*/)?ad3i\. -ad3i.*. -# /ad3_ima. (easylist.txt: 994) -/(.*/)?ad3_ima\. -# /ad350. (easylist.txt: 993) -/(.*/)?ad350\. -ad350.*. -# /ad300x250_ (easylist.txt: 992) -/(.*/)?ad300x250_ -# /ad300x250. (easylist.txt: 991) -/(.*/)?ad300x250\. -ad300x250.*. -# /ad300x250- (easylist.txt: 990) -/(.*/)?ad300x250- -ad300x250-*. -# /ad300x145. (easylist.txt: 989) -/(.*/)?ad300x145\. -ad300x145.*. -# /ad300x. (easylist.txt: 988) -/(.*/)?ad300x\. -ad300x.*. -# /ad300ws. (easylist.txt: 987) -/(.*/)?ad300ws\. -ad300ws.*. -# /ad300s. (easylist.txt: 986) -/(.*/)?ad300s\. -ad300s.*. -# /ad300home. (easylist.txt: 985) -/(.*/)?ad300home\. -ad300home.*. -# /ad300f2. (easylist.txt: 984) -/(.*/)?ad300f2\. -ad300f2.*. -# /ad300f. (easylist.txt: 983) -/(.*/)?ad300f\. -ad300f.*. -# /ad300. (easylist.txt: 982) -/(.*/)?ad300\. -ad300.*. -# /ad2you/* (easylist.txt: 980) -/(.*/)?ad2you/.* -# /ad2push. (easylist.txt: 979) -/(.*/)?ad2push\. -ad2push.*. -# /ad2gather. (easylist.txt: 978) -/(.*/)?ad2gather\. -ad2gather.*. -# /ad2gate. (easylist.txt: 977) -/(.*/)?ad2gate\. -ad2gate.*. -# /ad2con. (easylist.txt: 976) -/(.*/)?ad2con\. -ad2con.*. -# /ad2border. (easylist.txt: 975) -/(.*/)?ad2border\. -ad2border.*. -# /ad2_ (easylist.txt: 974) -/(.*/)?ad2_ -# /ad290x60_ (easylist.txt: 973) -/(.*/)?ad290x60_ -# /ad247realmedia/* (easylist.txt: 972) -/(.*/)?ad247realmedia/.* -# /ad24/* (easylist.txt: 971) -/(.*/)?ad24/.* -# /ad234. (easylist.txt: 970) -/(.*/)?ad234\. -ad234.*. -# /ad2010. (easylist.txt: 969) -/(.*/)?ad2010\. -ad2010.*. -# /ad2/res/* (easylist.txt: 968) -/(.*/)?ad2/res/.* -# /ad2/index. (easylist.txt: 967) -/(.*/)?ad2/index\. -# /ad2-728- (easylist.txt: 965) -/(.*/)?ad2-728- -ad2-728-*. -# /ad1x1home. (easylist.txt: 964) -/(.*/)?ad1x1home\. -ad1x1home.*. -# /ad1r. (easylist.txt: 963) -/(.*/)?ad1r\. -ad1r.*. -# /ad1place. (easylist.txt: 962) -/(.*/)?ad1place\. -ad1place.*. -# /ad1_ (easylist.txt: 961) -/(.*/)?ad1_ -# /ad160x600. (easylist.txt: 960) -/(.*/)?ad160x600\. -ad160x600.*. -# /ad160k. (easylist.txt: 959) -/(.*/)?ad160k\. -ad160k.*. -# /ad160. (easylist.txt: 958) -/(.*/)?ad160\. -ad160.*. -# /ad16. (easylist.txt: 957) -/(.*/)?ad16\. -ad16.*. -# /ad15. (easylist.txt: 956) -/(.*/)?ad15\. -ad15.*. -# /ad136/* (easylist.txt: 955) -/(.*/)?ad136/.* -# /ad134m/* (easylist.txt: 954) -/(.*/)?ad134m/.* -# /ad132m/* (easylist.txt: 953) -/(.*/)?ad132m/.* -# /ad132m. (easylist.txt: 952) -/(.*/)?ad132m\. -ad132m.*. -# /ad125x125. (easylist.txt: 951) -/(.*/)?ad125x125\. -ad125x125.*. -# /ad125b. (easylist.txt: 950) -/(.*/)?ad125b\. -ad125b.*. -# /ad125. (easylist.txt: 949) -/(.*/)?ad125\. -ad125.*. -# /ad120x60. (easylist.txt: 948) -/(.*/)?ad120x60\. -ad120x60.*. -# /ad12. (easylist.txt: 947) -/(.*/)?ad12\. -ad12.*. -# /ad1/index. (easylist.txt: 946) -/(.*/)?ad1/index\. -# /ad1-728- (easylist.txt: 944) -/(.*/)?ad1-728- -ad1-728-*. -# /ad02/background_ (easylist.txt: 943) -/(.*/)?ad02/background_ -# /ad01. (easylist.txt: 942) -/(.*/)?ad01\. -ad01.*. -# /ad000/* (easylist.txt: 941) -/(.*/)?ad000/.* -# /ad/view/* (easylist.txt: 939) -/(.*/)?ad/view/.* -# /ad/top_ (easylist.txt: 938) -/(.*/)?ad/top_ -# /ad/top3. (easylist.txt: 937) -/(.*/)?ad/top3\. -# /ad/top2. (easylist.txt: 936) -/(.*/)?ad/top2\. -# /ad/top1. (easylist.txt: 935) -/(.*/)?ad/top1\. -# /ad/top/* (easylist.txt: 934) -/(.*/)?ad/top/.* -# /ad/top. (easylist.txt: 933) -/(.*/)?ad/top\. -# /ad/timing. (easylist.txt: 932) -/(.*/)?ad/timing\. -# /ad/textlinks/* (easylist.txt: 931) -/(.*/)?ad/textlinks/.* -# /ad/takeover/* (easylist.txt: 930) -/(.*/)?ad/takeover/.* -# /ad/swf/* (easylist.txt: 929) -/(.*/)?ad/swf/.* -# /ad/superbanner. (easylist.txt: 928) -/(.*/)?ad/superbanner\. -# /ad/status? (easylist.txt: 927) -/(.*/)?ad/status\? -# /ad/sponsors/* (easylist.txt: 926) -/(.*/)?ad/sponsors/.* -# /ad/sponsored- (easylist.txt: 925) -/(.*/)?ad/sponsored- -# /ad/spacer. (easylist.txt: 924) -/(.*/)?ad/spacer\. -# /ad/small- (easylist.txt: 923) -/(.*/)?ad/small- -# /ad/skyscrapper. (easylist.txt: 922) -/(.*/)?ad/skyscrapper\. -# /ad/skyscraper. (easylist.txt: 921) -/(.*/)?ad/skyscraper\. -# /ad/skin_ (easylist.txt: 920) -/(.*/)?ad/skin_ -# /ad/side_ (easylist.txt: 919) -/(.*/)?ad/side_ -# /ad/show. (easylist.txt: 918) -/(.*/)?ad/show\. -# /ad/serve. (easylist.txt: 917) -/(.*/)?ad/serve\. -# /ad/select? (easylist.txt: 916) -/(.*/)?ad/select\? -# /ad/script/* (easylist.txt: 915) -/(.*/)?ad/script/.* -# /ad/rotate? (easylist.txt: 914) -/(.*/)?ad/rotate\? -# /ad/right2. (easylist.txt: 913) -/(.*/)?ad/right2\. -# /ad/request? (easylist.txt: 912) -/(.*/)?ad/request\? -# /ad/reklamy. (easylist.txt: 911) -/(.*/)?ad/reklamy\. -# /ad/rectangle. (easylist.txt: 910) -/(.*/)?ad/rectangle\. -# /ad/realclick/* (easylist.txt: 909) -/(.*/)?ad/realclick/.* -# /ad/realclick. (easylist.txt: 908) -/(.*/)?ad/realclick\. -# /ad/random_ (easylist.txt: 907) -/(.*/)?ad/random_ -# /ad/quigo/* (easylist.txt: 906) -/(.*/)?ad/quigo/.* -# /ad/preview/* (easylist.txt: 905) -/(.*/)?ad/preview/.* -# /ad/popup. (easylist.txt: 904) -/(.*/)?ad/popup\. -# /ad/pong? (easylist.txt: 903) -/(.*/)?ad/pong\? -# /ad/player| (easylist.txt: 902) -/(.*/)?ad/player$ -# /ad/omakasa. (easylist.txt: 901) -/(.*/)?ad/omakasa\. -# /ad/network/* (easylist.txt: 900) -/(.*/)?ad/network/.* -# /ad/mpu/* (easylist.txt: 899) -/(.*/)?ad/mpu/.* -# /ad/middle. (easylist.txt: 898) -/(.*/)?ad/middle\. -# /ad/logo/* (easylist.txt: 897) -/(.*/)?ad/logo/.* -# /ad/login- (easylist.txt: 896) -/(.*/)?ad/login- -# /ad/log/* (easylist.txt: 895) -/(.*/)?ad/log/.* -# /ad/loading. (easylist.txt: 894) -/(.*/)?ad/loading\. -# /ad/load_ (easylist.txt: 893) -/(.*/)?ad/load_ -# /ad/load. (easylist.txt: 892) -/(.*/)?ad/load\. -# /ad/live- (easylist.txt: 891) -/(.*/)?ad/live- -# /ad/listing- (easylist.txt: 890) -/(.*/)?ad/listing- -# /ad/leaderboard. (easylist.txt: 889) -/(.*/)?ad/leaderboard\. -# /ad/jsonp/* (easylist.txt: 888) -/(.*/)?ad/jsonp/.* -# /ad/inventory/* (easylist.txt: 887) -/(.*/)?ad/inventory/.* -# /ad/integral- (easylist.txt: 886) -/(.*/)?ad/integral- -# /ad/inline? (easylist.txt: 885) -/(.*/)?ad/inline\? -# /ad/index_ (easylist.txt: 884) -/(.*/)?ad/index_ -# /ad/index/* (easylist.txt: 883) -/(.*/)?ad/index/.* -# /ad/index. (easylist.txt: 882) -/(.*/)?ad/index\. -# /ad/img/* (easylist.txt: 881) -/(.*/)?ad/img/.* -# /ad/image/* (easylist.txt: 880) -/(.*/)?ad/image/.* -# /ad/iframe/* (easylist.txt: 879) -/(.*/)?ad/iframe/.* -# /ad/iframe. (easylist.txt: 878) -/(.*/)?ad/iframe\. -# /ad/html/* (easylist.txt: 877) -/(.*/)?ad/html/.* -# /ad/google_ (easylist.txt: 876) -/(.*/)?ad/google_ -# /ad/google/* (easylist.txt: 875) -/(.*/)?ad/google/.* -# /ad/getbanandfile? (easylist.txt: 874) -/(.*/)?ad/getbanandfile\? -# /ad/getban? (easylist.txt: 873) -/(.*/)?ad/getban\? -# /ad/generate? (easylist.txt: 872) -/(.*/)?ad/generate\? -# /ad/framed? (easylist.txt: 871) -/(.*/)?ad/framed\? -# /ad/frame1. (easylist.txt: 870) -/(.*/)?ad/frame1\. -# /AD/Footer_ (easylist.txt: 869) -/(.*/)?AD/Footer_ -# /ad/files/* (easylist.txt: 868) -/(.*/)?ad/files/.* -# /ad/extra_ (easylist.txt: 867) -/(.*/)?ad/extra_ -# /ad/extra/* (easylist.txt: 866) -/(.*/)?ad/extra/.* -# /ad/empty. (easylist.txt: 865) -/(.*/)?ad/empty\. -# /ad/directcall/* (easylist.txt: 864) -/(.*/)?ad/directcall/.* -# /ad/css/* (easylist.txt: 863) -/(.*/)?ad/css/.* -# /ad/cpmstar/* (easylist.txt: 862) -/(.*/)?ad/cpmstar/.* -# /ad/content/* (easylist.txt: 861) -/(.*/)?ad/content/.* -# /ad/commons/* (easylist.txt: 860) -/(.*/)?ad/commons/.* -# /ad/common_ (easylist.txt: 859) -/(.*/)?ad/common_ -# /ad/common/* (easylist.txt: 858) -/(.*/)?ad/common/.* -# /ad/card- (easylist.txt: 857) -/(.*/)?ad/card- -# /ad/bottom. (easylist.txt: 856) -/(.*/)?ad/bottom\. -# /ad/blog_ (easylist.txt: 855) -/(.*/)?ad/blog_ -# /ad/blank. (easylist.txt: 854) -/(.*/)?ad/blank\. -# /ad/bin/* (easylist.txt: 853) -/(.*/)?ad/bin/.* -# /ad/behavpixel. (easylist.txt: 852) -/(.*/)?ad/behavpixel\. -# /ad/banners/* (easylist.txt: 851) -/(.*/)?ad/banners/.* -# /ad/bannerimg/* (easylist.txt: 850) -/(.*/)?ad/bannerimg/.* -# /ad/bannerdetails/* (easylist.txt: 849) -/(.*/)?ad/bannerdetails/.* -# /ad/banner_ (easylist.txt: 848) -/(.*/)?ad/banner_ -# /ad/banner? (easylist.txt: 847) -/(.*/)?ad/banner\? -# /ad/banner/* (easylist.txt: 846) -/(.*/)?ad/banner/.* -# /ad/banner. (easylist.txt: 845) -/(.*/)?ad/banner\. -# /ad/audsci. (easylist.txt: 844) -/(.*/)?ad/audsci\. -# /ad/article_ (easylist.txt: 843) -/(.*/)?ad/article_ -# /ad/afc_ (easylist.txt: 842) -/(.*/)?ad/afc_ -# /ad/a.aspx? (easylist.txt: 841) -/(.*/)?ad/a\.aspx\? -# /ad/?site= (easylist.txt: 840) -/(.*/)?ad/\?site= -# /ad/?section= (easylist.txt: 839) -/(.*/)?ad/\?section= -# /ad/?host= (easylist.txt: 838) -/(.*/)?ad/\?host= -# /ad/960x60. (easylist.txt: 837) -/(.*/)?ad/960x60\. -# /ad/940- (easylist.txt: 836) -/(.*/)?ad/940- -# /ad/938- (easylist.txt: 835) -/(.*/)?ad/938- -# /ad/728- (easylist.txt: 834) -/(.*/)?ad/728- -# /ad/600- (easylist.txt: 833) -/(.*/)?ad/600- -# /ad/130- (easylist.txt: 832) -/(.*/)?ad/130- -# /ad.ytn. (easylist.txt: 831) -/(.*/)?ad\.ytn\. -ad.ytn.*. -# /ad.view? (easylist.txt: 830) -/(.*/)?ad\.view\? -# /ad.valary? (easylist.txt: 829) -/(.*/)?ad\.valary\? -# /ad.serve. (easylist.txt: 828) -/(.*/)?ad\.serve\. -ad.serve.*. -# /ad.sense/* (easylist.txt: 827) -/(.*/)?ad\.sense/.* -ad.sense/.* -# /ad.redirect. (easylist.txt: 826) -/(.*/)?ad\.redirect\. -ad.redirect.*. -# /ad.popup? (easylist.txt: 825) -/(.*/)?ad\.popup\? -# /ad.php| (easylist.txt: 824) -/(.*/)?ad\.php$ -ad.php -# /ad.php? (easylist.txt: 823) -/(.*/)?ad\.php\? -# /ad.php3? (easylist.txt: 822) -/(.*/)?ad\.php3\? -# /ad.min. (easylist.txt: 821) -/(.*/)?ad\.min\. -ad.min.*. -# /ad.mason? (easylist.txt: 820) -/(.*/)?ad\.mason\? -# /ad.jsp? (easylist.txt: 819) -/(.*/)?ad\.jsp\? -# /ad.info. (easylist.txt: 818) -/(.*/)?ad\.info\. -ad.info.*. -# /ad.html? (easylist.txt: 817) -/(.*/)?ad\.html\? -# /ad.gif| (easylist.txt: 816) -/(.*/)?ad\.gif$ -ad.gif -# /ad.epl? (easylist.txt: 815) -/(.*/)?ad\.epl\? -# /ad.css? (easylist.txt: 814) -/(.*/)?ad\.css\? -# /ad.code? (easylist.txt: 813) -/(.*/)?ad\.code\? -# /ad.cgi? (easylist.txt: 812) -/(.*/)?ad\.cgi\? -# /ad.aspx? (easylist.txt: 811) -/(.*/)?ad\.aspx\? -# /ad.asp? (easylist.txt: 810) -/(.*/)?ad\.asp\? -# /ad.ashx? (easylist.txt: 809) -/(.*/)?ad\.ashx\? -# /ad.ams. (easylist.txt: 808) -/(.*/)?ad\.ams\. -ad.ams.*. -# /ad-view- (easylist.txt: 807) -/(.*/)?ad-view- -ad-view-*. -# /ad-verticalbar. (easylist.txt: 806) -/(.*/)?ad-verticalbar\. -ad-verticalbar.*. -# /ad-vertical- (easylist.txt: 805) -/(.*/)?ad-vertical- -ad-vertical-*. -# /ad-vert. (easylist.txt: 804) -/(.*/)?ad-vert\. -ad-vert.*. -# /ad-utilities. (easylist.txt: 803) -/(.*/)?ad-utilities\. -ad-utilities.*. -# /ad-updated- (easylist.txt: 802) -/(.*/)?ad-updated- -ad-updated-*. -# /ad-unit- (easylist.txt: 801) -/(.*/)?ad-unit- -ad-unit-*. -# /ad-topbanner- (easylist.txt: 800) -/(.*/)?ad-topbanner- -ad-topbanner-*. -# /ad-top/* (easylist.txt: 799) -/(.*/)?ad-top/.* -# /ad-top. (easylist.txt: 798) -/(.*/)?ad-top\. -ad-top.*. -# /ad-top- (easylist.txt: 797) -/(.*/)?ad-top- -ad-top-*. -# /ad-title. (easylist.txt: 796) -/(.*/)?ad-title\. -ad-title.*. -# /ad-text. (easylist.txt: 795) -/(.*/)?ad-text\. -ad-text.*. -# /ad-template/* (easylist.txt: 794) -/(.*/)?ad-template/.* -# /ad-template. (easylist.txt: 793) -/(.*/)?ad-template\. -ad-template.*. -# /ad-tandem. (easylist.txt: 792) -/(.*/)?ad-tandem\. -ad-tandem.*. -# /ad-tag2. (easylist.txt: 791) -/(.*/)?ad-tag2\. -ad-tag2.*. -# /ad-styles. (easylist.txt: 790) -/(.*/)?ad-styles\. -ad-styles.*. -# /ad-studio/* (easylist.txt: 789) -/(.*/)?ad-studio/.* -# /ad-strip. (easylist.txt: 788) -/(.*/)?ad-strip\. -ad-strip.*. -# /ad-sprite. (easylist.txt: 787) -/(.*/)?ad-sprite\. -ad-sprite.*. -# /ad-specs. (easylist.txt: 786) -/(.*/)?ad-specs\. -ad-specs.*. -# /ad-source/* (easylist.txt: 785) -/(.*/)?ad-source/.* -# /ad-skyscraper. (easylist.txt: 784) -/(.*/)?ad-skyscraper\. -ad-skyscraper.*. -# /ad-sidebar- (easylist.txt: 783) -/(.*/)?ad-sidebar- -ad-sidebar-*. -# /ad-side/* (easylist.txt: 782) -/(.*/)?ad-side/.* -# /ad-server/* (easylist.txt: 781) -/(.*/)?ad-server/.* -# /ad-server. (easylist.txt: 780) -/(.*/)?ad-server\. -ad-server.*. -# /ad-serve? (easylist.txt: 779) -/(.*/)?ad-serve\? -# /ad-rotator- (easylist.txt: 778) -/(.*/)?ad-rotator- -ad-rotator-*. -# /ad-ros- (easylist.txt: 777) -/(.*/)?ad-ros- -ad-ros-*. -# /ad-right2. (easylist.txt: 776) -/(.*/)?ad-right2\. -ad-right2.*. -# /ad-refresh. (easylist.txt: 775) -/(.*/)?ad-refresh\. -ad-refresh.*. -# /ad-refresh- (easylist.txt: 774) -/(.*/)?ad-refresh- -ad-refresh-*. -# /ad-record. (easylist.txt: 773) -/(.*/)?ad-record\. -ad-record.*. -# /ad-pub. (easylist.txt: 772) -/(.*/)?ad-pub\. -ad-pub.*. -# /ad-position- (easylist.txt: 771) -/(.*/)?ad-position- -ad-position-*. -# /ad-point/* (easylist.txt: 770) -/(.*/)?ad-point/.* -# /ad-plate/* (easylist.txt: 769) -/(.*/)?ad-plate/.* -# /ad-page/* (easylist.txt: 768) -/(.*/)?ad-page/.* -# /ad-openx. (easylist.txt: 767) -/(.*/)?ad-openx\. -ad-openx.*. -# /ad-offer1. (easylist.txt: 766) -/(.*/)?ad-offer1\. -ad-offer1.*. -# /ad-nytimes. (easylist.txt: 765) -/(.*/)?ad-nytimes\. -ad-nytimes.*. -# /ad-modules/* (easylist.txt: 764) -/(.*/)?ad-modules/.* -# /ad-minister/* (easylist.txt: 763) -/(.*/)?ad-minister/.* -# /ad-minister. (easylist.txt: 762) -/(.*/)?ad-minister\. -ad-minister.*. -# /ad-minister- (easylist.txt: 761) -/(.*/)?ad-minister- -ad-minister-*. -# /ad-methods. (easylist.txt: 760) -/(.*/)?ad-methods\. -ad-methods.*. -# /ad-maven- (easylist.txt: 759) -/(.*/)?ad-maven- -ad-maven-*. -# /ad-managment/* (easylist.txt: 758) -/(.*/)?ad-managment/.* -# /ad-manager/* (easylist.txt: 757) -/(.*/)?ad-manager/.* -# /ad-logger/* (easylist.txt: 756) -/(.*/)?ad-logger/.* -# /ad-loading. (easylist.txt: 754) -/(.*/)?ad-loading\. -ad-loading.*. -# /ad-loader. (easylist.txt: 753) -/(.*/)?ad-loader\. -ad-loader.*. -# /ad-loader- (easylist.txt: 752) -/(.*/)?ad-loader- -ad-loader-*. -# /ad-link/* (easylist.txt: 751) -/(.*/)?ad-link/.* -# /ad-lil. (easylist.txt: 750) -/(.*/)?ad-lil\. -ad-lil.*. -# /ad-letter. (easylist.txt: 749) -/(.*/)?ad-letter\. -ad-letter.*. -# /ad-left. (easylist.txt: 748) -/(.*/)?ad-left\. -ad-left.*. -# /ad-leaderboard. (easylist.txt: 747) -/(.*/)?ad-leaderboard\. -ad-leaderboard.*. -# /ad-layout/*$~script,~stylesheet (easylist.txt: 746) -/(.*/)?ad-layout/.* -# /ad-layering- (easylist.txt: 745) -/(.*/)?ad-layering- -ad-layering-*. -# /ad-label. (easylist.txt: 744) -/(.*/)?ad-label\. -ad-label.*. -# /ad-label- (easylist.txt: 743) -/(.*/)?ad-label- -ad-label-*. -# /ad-issue. (easylist.txt: 742) -/(.*/)?ad-issue\. -ad-issue.*. -# /ad-int- (easylist.txt: 741) -/(.*/)?ad-int- -ad-int-*. -# /ad-injection/* (easylist.txt: 740) -/(.*/)?ad-injection/.* -# /ad-inject/* (easylist.txt: 739) -/(.*/)?ad-inject/.* -# /ad-indicator- (easylist.txt: 738) -/(.*/)?ad-indicator- -ad-indicator-*. -# /ad-ina. (easylist.txt: 737) -/(.*/)?ad-ina\. -ad-ina.*. -# /ad-images/* (easylist.txt: 736) -/(.*/)?ad-images/.* -# /ad-image. (easylist.txt: 735) -/(.*/)?ad-image\. -ad-image.*. -# /ad-iframe? (easylist.txt: 734) -/(.*/)?ad-iframe\? -# /ad-iframe. (easylist.txt: 733) -/(.*/)?ad-iframe\. -ad-iframe.*. -# /ad-iframe- (easylist.txt: 732) -/(.*/)?ad-iframe- -ad-iframe-*. -# /ad-ifr. (easylist.txt: 731) -/(.*/)?ad-ifr\. -ad-ifr.*. -# /ad-identifier. (easylist.txt: 730) -/(.*/)?ad-identifier\. -ad-identifier.*. -# /ad-hug. (easylist.txt: 729) -/(.*/)?ad-hug\. -ad-hug.*. -# /ad-home- (easylist.txt: 728) -/(.*/)?ad-home- -ad-home-*. -# /ad-header. (easylist.txt: 727) -/(.*/)?ad-header\. -ad-header.*. -# /ad-hcm. (easylist.txt: 726) -/(.*/)?ad-hcm\. -ad-hcm.*. -# /ad-half_ (easylist.txt: 725) -/(.*/)?ad-half_ -# /ad-gallery.$~stylesheet (easylist.txt: 724) -/(.*/)?ad-gallery\. -ad-gallery.*. -# /ad-frame/* (easylist.txt: 723) -/(.*/)?ad-frame/.* -# /ad-frame. (easylist.txt: 722) -/(.*/)?ad-frame\. -ad-frame.*. -# /ad-format. (easylist.txt: 721) -/(.*/)?ad-format\. -ad-format.*. -# /ad-flashgame. (easylist.txt: 720) -/(.*/)?ad-flashgame\. -ad-flashgame.*. -# /ad-fix- (easylist.txt: 719) -/(.*/)?ad-fix- -ad-fix-*. -# /ad-feedback. (easylist.txt: 718) -/(.*/)?ad-feedback\. -ad-feedback.*. -# /ad-feature- (easylist.txt: 717) -/(.*/)?ad-feature- -ad-feature-*. -# /ad-exchange. (easylist.txt: 716) -/(.*/)?ad-exchange\. -ad-exchange.*. -# /ad-engine. (easylist.txt: 715) -/(.*/)?ad-engine\. -ad-engine.*. -# /ad-emea. (easylist.txt: 714) -/(.*/)?ad-emea\. -ad-emea.*. -# /ad-creatives/* (easylist.txt: 713) -/(.*/)?ad-creatives/.* -# /ad-creatives- (easylist.txt: 712) -/(.*/)?ad-creatives- -ad-creatives-*. -# /ad-choices. (easylist.txt: 711) -/(.*/)?ad-choices\. -ad-choices.*. -# /ad-choices- (easylist.txt: 710) -/(.*/)?ad-choices- -ad-choices-*. -# /ad-channel- (easylist.txt: 709) -/(.*/)?ad-channel- -ad-channel-*. -# /ad-cdn. (easylist.txt: 708) -/(.*/)?ad-cdn\. -ad-cdn.*. -# /ad-callback. (easylist.txt: 707) -/(.*/)?ad-callback\. -ad-callback.*. -# /ad-button1. (easylist.txt: 706) -/(.*/)?ad-button1\. -ad-button1.*. -# /ad-builder. (easylist.txt: 705) -/(.*/)?ad-builder\. -ad-builder.*. -# /ad-boxes- (easylist.txt: 704) -/(.*/)?ad-boxes- -ad-boxes-*. -# /ad-box- (easylist.txt: 703) -/(.*/)?ad-box- -ad-box-*. -# /ad-bottom. (easylist.txt: 702) -/(.*/)?ad-bottom\. -ad-bottom.*. -# /ad-bin/* (easylist.txt: 701) -/(.*/)?ad-bin/.* -# /ad-bckg. (easylist.txt: 700) -/(.*/)?ad-bckg\. -ad-bckg.*. -# /ad-banner. (easylist.txt: 699) -/(.*/)?ad-banner\. -ad-banner.*. -# /ad-banner- (easylist.txt: 698) -/(.*/)?ad-banner- -ad-banner-*. -# /ad-background. (easylist.txt: 697) -/(.*/)?ad-background\. -ad-background.*. -# /ad-audit. (easylist.txt: 696) -/(.*/)?ad-audit\. -ad-audit.*. -# /ad-amz. (easylist.txt: 695) -/(.*/)?ad-amz\. -ad-amz.*. -# /ad-600- (easylist.txt: 694) -/(.*/)?ad-600- -ad-600-*. -# /ad-468- (easylist.txt: 693) -/(.*/)?ad-468- -ad-468-*. -# /ad-410x300. (easylist.txt: 692) -/(.*/)?ad-410x300\. -ad-410x300.*. -# /ad-350x350- (easylist.txt: 691) -/(.*/)?ad-350x350- -ad-350x350-*. -# /ad-300x254. (easylist.txt: 690) -/(.*/)?ad-300x254\. -ad-300x254.*. -# /ad-300x250. (easylist.txt: 689) -/(.*/)?ad-300x250\. -ad-300x250.*. -# /ad-300topleft. (easylist.txt: 688) -/(.*/)?ad-300topleft\. -ad-300topleft.*. -# /ad-125. (easylist.txt: 687) -/(.*/)?ad-125\. -ad-125.*. -# /ad%20images/* (easylist.txt: 686) -/(.*/)?ad%20images/.* -# /ad%20banners/* (easylist.txt: 685) -/(.*/)?ad%20banners/.* -# /active-ad- (easylist.txt: 684) -/(.*/)?active-ad- -active-ad-*. -# /acc_random= (easylist.txt: 683) -/(.*/)?acc_random= -# /AbvProductAds/* (easylist.txt: 682) -/(.*/)?AbvProductAds/.* -# /abvAds_ (easylist.txt: 681) -/(.*/)?abvAds_ -# /absolutebm.aspx? (easylist.txt: 680) -/(.*/)?absolutebm\.aspx\? -# /about-these-ads. (easylist.txt: 679) -/(.*/)?about-these-ads\. -about-these-ads.*. -# /abnl/?narodads^ (easylist.txt: 678) -/(.*/)?abnl/\?narodads[^\w%.-] -# /abnl/?begun^ (easylist.txt: 677) -/(.*/)?abnl/\?begun[^\w%.-] -# /abmw/* (easylist.txt: 676) -/(.*/)?abmw/.* -# /abmw.asp (easylist.txt: 675) -/(.*/)?abmw\.asp -abmw.asp*. -# /abm.aspx (easylist.txt: 674) -/(.*/)?abm\.aspx -abm.aspx*. -# /abm.asp? (easylist.txt: 673) -/(.*/)?abm\.asp\? -# /ABAdsv1. (easylist.txt: 672) -/(.*/)?ABAdsv1\. -ABAdsv1.*. -# /aamsz= (easylist.txt: 671) -/(.*/)?aamsz= -# /a3/?sub=$third-party (easylist.txt: 670) -/(.*/)?a3/\?sub= -# /a2/ads/* (easylist.txt: 669) -/(.*/)?a2/ads/.* -# /a2/?sub=$third-party (easylist.txt: 668) -/(.*/)?a2/\?sub= -# /a1/*?sub=$third-party (easylist.txt: 667) -/(.*/)?a1/.*\?sub= -# /a/display.php? (easylist.txt: 666) -/(.*/)?a/display\.php\? -# /a/ads/* (easylist.txt: 665) -/(.*/)?a/ads/.* -# /_svc/ad/* (easylist.txt: 664) -/(.*/)?_svc/ad/.* -# /_scripts/_oas/* (easylist.txt: 663) -/(.*/)?_scripts/_oas/.* -# /_js2/oas. (easylist.txt: 662) -/(.*/)?_js2/oas\. -# /_img/ad_ (easylist.txt: 661) -/(.*/)?_img/ad_ -# /_global/ads/* (easylist.txt: 660) -/(.*/)?_global/ads/.* -# /_affiliatebanners/* (easylist.txt: 659) -/(.*/)?_affiliatebanners/.* -# /_ads/* (easylist.txt: 658) -/(.*/)?_ads/.* -# /_30/ads/* (easylist.txt: 657) -/(.*/)?_30/ads/.* -# /_/ads/* (easylist.txt: 656) -/(.*/)?_/ads/.* -# /?view=ad (easylist.txt: 655) -/(.*/)?\?view=ad -# /?advideo/* (easylist.txt: 654) -/(.*/)?\?advideo/.* -# /?adv_partner (easylist.txt: 653) -/(.*/)?\?adv_partner -# /?addyn|* (easylist.txt: 652) -/(.*/)?\?addyn\|.* -# /728x90banner. (easylist.txt: 651) -/(.*/)?728x90banner\. -728x90banner.*. -# /728x80topad. (easylist.txt: 650) -/(.*/)?728x80topad\. -728x80topad.*. -# /728_ad_ (easylist.txt: 649) -/(.*/)?728_ad_ -# /468xads. (easylist.txt: 648) -/(.*/)?468xads\. -468xads.*. -# /468ad. (easylist.txt: 647) -/(.*/)?468ad\. -468ad.*. -# /468-banner. (easylist.txt: 646) -/(.*/)?468-banner\. -468-banner.*. -# /3pt_ads. (easylist.txt: 645) -/(.*/)?3pt_ads\. -# /336x280ads. (easylist.txt: 644) -/(.*/)?336x280ads\. -336x280ads.*. -# /300x500_ad (easylist.txt: 643) -/(.*/)?300x500_ad -# /300x250advert. (easylist.txt: 642) -/(.*/)?300x250advert\. -300x250advert.*. -# /300x250ads. (easylist.txt: 641) -/(.*/)?300x250ads\. -300x250ads.*. -# /300x250adbg. (easylist.txt: 640) -/(.*/)?300x250adbg\. -300x250adbg.*. -# /300x250ad. (easylist.txt: 639) -/(.*/)?300x250ad\. -300x250ad.*. -# /300by250ad. (easylist.txt: 638) -/(.*/)?300by250ad\. -300by250ad.*. -# /300ad. (easylist.txt: 637) -/(.*/)?300ad\. -300ad.*. -# /300_ad_ (easylist.txt: 636) -/(.*/)?300_ad_ -# /300250_ad- (easylist.txt: 635) -/(.*/)?300250_ad- -# /300-ad- (easylist.txt: 634) -/(.*/)?300-ad- -300-ad-*. -# /250x250_advert_ (easylist.txt: 633) -/(.*/)?250x250_advert_ -# /24adscript. (easylist.txt: 632) -/(.*/)?24adscript\. -24adscript.*. -# /24-7ads. (easylist.txt: 631) -/(.*/)?24-7ads\. -24-7ads.*. -# /2015/ads/* (easylist.txt: 630) -/(.*/)?2015/ads/.* -# /2014/ads/* (easylist.txt: 629) -/(.*/)?2014/ads/.* -# /2013/ads/* (easylist.txt: 628) -/(.*/)?2013/ads/.* -# /2011/ads/* (easylist.txt: 627) -/(.*/)?2011/ads/.* -# /2010main/ad/* (easylist.txt: 626) -/(.*/)?2010main/ad/.* -# /2010/ads/* (easylist.txt: 625) -/(.*/)?2010/ads/.* -# /1afr.php? (easylist.txt: 624) -/(.*/)?1afr\.php\? -# /1912/ads/* (easylist.txt: 623) -/(.*/)?1912/ads/.* -# /17/ads/* (easylist.txt: 622) -/(.*/)?17/ads/.* -# /160_ad_ (easylist.txt: 621) -/(.*/)?160_ad_ -# /126_ad. (easylist.txt: 620) -/(.*/)?126_ad\. -# /125x125ad. (easylist.txt: 619) -/(.*/)?125x125ad\. -125x125ad.*. -# /125x125_banner. (easylist.txt: 618) -/(.*/)?125x125_banner\. -# /125x125_ADS/* (easylist.txt: 617) -/(.*/)?125x125_ADS/.* -# /120ads/* (easylist.txt: 616) -/(.*/)?120ads/.* -# /120ad. (easylist.txt: 615) -/(.*/)?120ad\. -120ad.*. -# /1/ads/* (easylist.txt: 614) -/(.*/)?1/ads/.* -# /04/ads- (easylist.txt: 613) -/(.*/)?04/ads- -# /0/ads/* (easylist.txt: 612) -/(.*/)?0/ads/.* -# /!advert_ (easylist.txt: 611) -/(.*/)?!advert_ -# .zw/ads/ (easylist.txt: 610) -/.*\.zw/ads/ -.*.zw/ads/ -# .zm/ads/ (easylist.txt: 609) -/.*\.zm/ads/ -.*.zm/ads/ -# .za/ads/ (easylist.txt: 608) -/.*\.za/ads/ -.*.za/ads/ -# .za/ads. (easylist.txt: 607) -/.*\.za/ads\. -.*.za/ads\. -# .xxx/ads/ (easylist.txt: 606) -/.*\.xxx/ads/ -.*.xxx/ads/ -# .ws/ads/ (easylist.txt: 605) -/.*\.ws/ads/ -.*.ws/ads/ -# .widgets.ad? (easylist.txt: 604) -/.*\.widgets\.ad\? -# .vert.ad. (easylist.txt: 603) -/.*\.vert\.ad\. -.*.vert.ad.*. -# .utils.ads. (easylist.txt: 602) -/.*\.utils\.ads\. -.*.utils.ads.*. -# .us/ads/ (easylist.txt: 601) -/.*\.us/ads/ -.*.us/ads/ -# .uk/adv/ (easylist.txt: 600) -/.*\.uk/adv/ -.*.uk/adv/ -# .uk/ads/ (easylist.txt: 599) -/.*\.uk/ads/ -.*.uk/ads/ -# .tz/ads/ (easylist.txt: 598) -/.*\.tz/ads/ -.*.tz/ads/ -# .twoads. (easylist.txt: 597) -/.*\.twoads\. -.*.twoads.*. -# .tv/ads/ (easylist.txt: 596) -/.*\.tv/ads/ -.*.tv/ads/ -# .tv/ads. (easylist.txt: 595) -/.*\.tv/ads\. -.*.tv/ads\. -# .tv/adl. (easylist.txt: 594) -/.*\.tv/adl\. -.*.tv/adl\. -# .topad. (easylist.txt: 593) -/.*\.topad\. -.*.topad.*. -# .to/ads/ (easylist.txt: 592) -/.*\.to/ads/ -.*.to/ads/ -# .th/ads/ (easylist.txt: 591) -/.*\.th/ads/ -.*.th/ads/ -# .textads. (easylist.txt: 590) -/.*\.textads\. -.*.textads.*. -# .text-link-ads. (easylist.txt: 589) -/.*\.text-link-ads\. -.*.text-link-ads.*. -# .swf?popupiniframe= (easylist.txt: 588) -/.*\.swf\?popupiniframe= -# .swf?link=http (easylist.txt: 587) -/.*\.swf\?link=http -# .swf?link1=http (easylist.txt: 586) -/.*\.swf\?link1=http -# .swf?iurl=http (easylist.txt: 585) -/.*\.swf\?iurl=http -# .swf?clickthru= (easylist.txt: 584) -/.*\.swf\?clickthru= -# .swf?clicktag= (easylist.txt: 583) -/.*\.swf\?clicktag= -# .swf?click= (easylist.txt: 582) -/.*\.swf\?click= -# .swf?ad= (easylist.txt: 581) -/.*\.swf\?ad= -# .swf?2&clicktag= (easylist.txt: 580) -/.*\.swf\?2&clicktag= -# .swf?1&clicktag= (easylist.txt: 579) -/.*\.swf\?1&clicktag= -# .streamads. (easylist.txt: 578) -/.*\.streamads\. -.*.streamads.*. -# .sponsorads. (easylist.txt: 577) -/.*\.sponsorads\. -.*.sponsorads.*. -# .spider.ad/ (easylist.txt: 576) -/.*\.spider\.ad/ -.*.spider.ad -# .sk/ads/ (easylist.txt: 575) -/.*\.sk/ads/ -.*.sk/ads/ -# .show_ad_ (easylist.txt: 574) -/.*\.show_ad_ -# .shortcuts.search. (easylist.txt: 573) -/.*\.shortcuts\.search\. -.*.shortcuts.search.*. -# .se/ads/ (easylist.txt: 572) -/.*\.se/ads/ -.*.se/ads/ -# .se/?placement=$script,subdocument,third-party (easylist.txt: 571) -/.*\.se/\?placement= -.*.se/\?placement= -# .rolloverad. (easylist.txt: 570) -/.*\.rolloverad\. -.*.rolloverad.*. -# .refit.ads. (easylist.txt: 569) -/.*\.refit\.ads\. -.*.refit.ads.*. -# .popupvideoad. (easylist.txt: 568) -/.*\.popupvideoad\. -.*.popupvideoad.*. -# .popup_im. (easylist.txt: 567) -/.*\.popup_im\. -# .popunder.js (easylist.txt: 566) -/.*\.popunder\.js -.*.popunder.js*. -# .pl/ads/ (easylist.txt: 565) -/.*\.pl/ads/ -.*.pl/ads/ -# .pk/ads/ (easylist.txt: 564) -/.*\.pk/ads/ -.*.pk/ads/ -# .php?zoneid= (easylist.txt: 563) -/.*\.php\?zoneid= -# .php?zone_id= (easylist.txt: 562) -/.*\.php\?zone_id= -# .php?nats= (easylist.txt: 561) -/.*\.php\?nats= -# .php?clicktag= (easylist.txt: 560) -/.*\.php\?clicktag= -# .php?affid= (easylist.txt: 559) -/.*\.php\?affid= -# .php?adv_ (easylist.txt: 558) -/.*\.php\?adv_ -# .php?adv= (easylist.txt: 557) -/.*\.php\?adv= -# .php?adsid= (easylist.txt: 556) -/.*\.php\?adsid= -# .php?ad_ (easylist.txt: 555) -/.*\.php\?ad_ -# .php?ad= (easylist.txt: 554) -/.*\.php\?ad= -# .php/ads/ (easylist.txt: 553) -/.*\.php/ads/ -.*.php/ads/ -# .php/ad/ (easylist.txt: 552) -/.*\.php/ad/ -.*.php/ad/ -# .ph/ads/ (easylist.txt: 551) -/.*\.ph/ads/ -.*.ph/ads/ -# .org/pops.js (easylist.txt: 550) -/.*\.org/pops\.js -.*.org/pops\.js -# .org/gads/ (easylist.txt: 549) -/.*\.org/gads/ -.*.org/gads/ -# .org/exit.js (easylist.txt: 548) -/.*\.org/exit\.js -.*.org/exit\.js -# .org/adv/ (easylist.txt: 547) -/.*\.org/adv/ -.*.org/adv/ -# .org/ads_ (easylist.txt: 546) -/.*\.org/ads_ -.*.org/ads_ -# .org/ads/ (easylist.txt: 545) -/.*\.org/ads/ -.*.org/ads/ -# .org/ads- (easylist.txt: 544) -/.*\.org/ads- -.*.org/ads- -# .org/adgallery1 (easylist.txt: 543) -/.*\.org/adgallery1 -.*.org/adgallery1 -# .org/ad_ (easylist.txt: 542) -/.*\.org/ad_ -.*.org/ad_ -# .org/ad/ (easylist.txt: 541) -/.*\.org/ad/ -.*.org/ad/ -# .org/ad. (easylist.txt: 540) -/.*\.org/ad\. -.*.org/ad\. -# .org/ad- (easylist.txt: 539) -/.*\.org/ad- -.*.org/ad- -# .openxtag.min.js (easylist.txt: 538) -/.*\.openxtag\.min\.js -.*.openxtag.min.js*. -# .openxtag.js (easylist.txt: 537) -/.*\.openxtag\.js -.*.openxtag.js*. -# .openx. (easylist.txt: 536) -/.*\.openx\. -.*.openx.*. -# .openad. (easylist.txt: 535) -/.*\.openad\. -.*.openad.*. -# .oasfile. (easylist.txt: 534) -/.*\.oasfile\. -.*.oasfile.*. -# .nz/ads/ (easylist.txt: 533) -/.*\.nz/ads/ -.*.nz/ads/ -# .nu/ads/ (easylist.txt: 532) -/.*\.nu/ads/ -.*.nu/ads/ -# .no/ads/ (easylist.txt: 531) -/.*\.no/ads/ -.*.no/ads/ -# .nl/ads/ (easylist.txt: 530) -/.*\.nl/ads/ -.*.nl/ads/ -# .nl/ad2/ (easylist.txt: 529) -/.*\.nl/ad2/ -.*.nl/ad2/ -# .net/vghd_ (easylist.txt: 528) -/.*\.net/vghd_ -.*.net/vghd_ -# .net/pops.js (easylist.txt: 527) -/.*\.net/pops\.js -.*.net/pops\.js -# .net/pfadj/ (easylist.txt: 526) -/.*\.net/pfadj/ -.*.net/pfadj/ -# .net/noidadx/ (easylist.txt: 525) -/.*\.net/noidadx/ -.*.net/noidadx/ -# .net/gads/ (easylist.txt: 524) -/.*\.net/gads/ -.*.net/gads/ -# .net/flashads (easylist.txt: 523) -/.*\.net/flashads -.*.net/flashads -# .net/bnr/ (easylist.txt: 522) -/.*\.net/bnr/ -.*.net/bnr/ -# .net/affiliate/ (easylist.txt: 521) -/.*\.net/affiliate/ -.*.net/affiliate/ -# .net/adv/ (easylist.txt: 520) -/.*\.net/adv/ -.*.net/adv/ -# .net/adt? (easylist.txt: 519) -/.*\.net/adt\? -.*.net/adt\? -# .net/ads_ (easylist.txt: 518) -/.*\.net/ads_ -.*.net/ads_ -# .net/ads? (easylist.txt: 517) -/.*\.net/ads\? -.*.net/ads\? -# .net/ads/ (easylist.txt: 516) -/.*\.net/ads/ -.*.net/ads/ -# .net/ads. (easylist.txt: 515) -/.*\.net/ads\. -.*.net/ads\. -# .net/ads- (easylist.txt: 514) -/.*\.net/ads- -.*.net/ads- -# .net/adj; (easylist.txt: 513) -/.*\.net/adj; -.*.net/adj; -# .net/adgallery (easylist.txt: 512) -/.*\.net/adgallery -.*.net/adgallery -# .net/ad_ (easylist.txt: 511) -/.*\.net/ad_ -.*.net/ad_ -# .net/ad2/ (easylist.txt: 510) -/.*\.net/ad2/ -.*.net/ad2/ -# .net/ad/$~object-subrequest (easylist.txt: 509) -/.*\.net/ad/ -.*.net/ad/ -# .net/ad- (easylist.txt: 508) -/.*\.net/ad- -.*.net/ad- -# .net/_adv/ (easylist.txt: 507) -/.*\.net/_adv/ -.*.net/_adv/ -# .name/ads/ (easylist.txt: 506) -/.*\.name/ads/ -.*.name/ads/ -# .my/ads/ (easylist.txt: 505) -/.*\.my/ads/ -.*.my/ads/ -# .mx/ads/ (easylist.txt: 504) -/.*\.mx/ads/ -.*.mx/ads/ -# .mv/ads/ (easylist.txt: 503) -/.*\.mv/ads/ -.*.mv/ads/ -# .mobileads. (easylist.txt: 502) -/.*\.mobileads\. -.*.mobileads.*. -# .me/ads/ (easylist.txt: 501) -/.*\.me/ads/ -.*.me/ads/ -# .me/ads- (easylist.txt: 500) -/.*\.me/ads- -.*.me/ads- -# .lk/ads/ (easylist.txt: 499) -/.*\.lk/ads/ -.*.lk/ads/ -# .link/ads/ (easylist.txt: 498) -/.*\.link/ads/ -.*.link/ads/ -# .lazyload-ad. (easylist.txt: 497) -/.*\.lazyload-ad\. -.*.lazyload-ad.*. -# .lazyload-ad- (easylist.txt: 496) -/.*\.lazyload-ad- -.*.lazyload-ad-*. -# .ke/ads/ (easylist.txt: 495) -/.*\.ke/ads/ -.*.ke/ads/ -# .jsp?adcode= (easylist.txt: 494) -/.*\.jsp\?adcode= -# .jp/ads/ (easylist.txt: 493) -/.*\.jp/ads/ -.*.jp/ads/ -# .is/ads/ (easylist.txt: 492) -/.*\.is/ads/ -.*.is/ads/ -# .internads. (easylist.txt: 491) -/.*\.internads\. -.*.internads.*. -# .intad/ (easylist.txt: 490) -/.*\.intad/ -.*.intad -# .intad. (easylist.txt: 489) -/.*\.intad\. -.*.intad.*. -# .initdoubleclickadselementcontent? (easylist.txt: 488) -/.*\.initdoubleclickadselementcontent\? -# .info/ads/ (easylist.txt: 487) -/.*\.info/ads/ -.*.info/ads/ -# .info/ads- (easylist.txt: 486) -/.*\.info/ads- -.*.info/ads- -# .info/ad_ (easylist.txt: 485) -/.*\.info/ad_ -.*.info/ad_ -# .in/ads/ (easylist.txt: 484) -/.*\.in/ads/ -.*.in/ads/ -# .il/ads/ (easylist.txt: 483) -/.*\.il/ads/ -.*.il/ads/ -# .ie/ads/ (easylist.txt: 482) -/.*\.ie/ads/ -.*.ie/ads/ -# .iads.js (easylist.txt: 481) -/.*\.iads\.js -.*.iads.js*. -# .html?clicktag= (easylist.txt: 480) -/.*\.html\?clicktag= -# .html?ad_ (easylist.txt: 479) -/.*\.html\?ad_ -# .html?ad= (easylist.txt: 478) -/.*\.html\?ad= -# .HomepageAdvertismentBottom. (easylist.txt: 477) -/.*\.HomepageAdvertismentBottom\. -.*.HomepageAdvertismentBottom.*. -# .homad. (easylist.txt: 476) -/.*\.homad\. -.*.homad.*. -# .hk/ads/ (easylist.txt: 475) -/.*\.hk/ads/ -.*.hk/ads/ -# .gr/ads/ (easylist.txt: 474) -/.*\.gr/ads/ -.*.gr/ads/ -# .gif?ad= (easylist.txt: 473) -/.*\.gif\?ad= -# .gg/ads/ (easylist.txt: 472) -/.*\.gg/ads/ -.*.gg/ads/ -# .fm/ads/ (easylist.txt: 471) -/.*\.fm/ads/ -.*.fm/ads/ -# .exp_ad- (easylist.txt: 470) -/.*\.exp_ad- -# .eu/adv/ (easylist.txt: 469) -/.*\.eu/adv/ -.*.eu/adv/ -# .eu/ads/ (easylist.txt: 468) -/.*\.eu/ads/ -.*.eu/ads/ -# .eg/ads/ (easylist.txt: 467) -/.*\.eg/ads/ -.*.eg/ads/ -# .displayAds& (easylist.txt: 466) -/.*\.displayAds& -# .digital/ads/ (easylist.txt: 465) -/.*\.digital/ads/ -.*.digital/ads/ -# .dartconfig.js (easylist.txt: 464) -/.*\.dartconfig\.js -.*.dartconfig.js*. -# .cz/bannery/ (easylist.txt: 463) -/.*\.cz/bannery/ -.*.cz/bannery/ -# .cz/affil/ (easylist.txt: 462) -/.*\.cz/affil/ -.*.cz/affil/ -# .com/video-ad- (easylist.txt: 461) -/.*\.com/video-ad- -.*.com/video-ad- -# .com/ss/ad/ (easylist.txt: 460) -/.*\.com/ss/ad/ -.*.com/ss/ad/ -# .com/promodisplay? (easylist.txt: 459) -/.*\.com/promodisplay\? -.*.com/promodisplay\? -# .com/pm/ad- (easylist.txt: 458) -/.*\.com/pm/ad- -.*.com/pm/ad- -# .com/peels/ (easylist.txt: 457) -/.*\.com/peels/ -.*.com/peels/ -# .com/miads/ (easylist.txt: 456) -/.*\.com/miads/ -.*.com/miads/ -# .com/js/adsense (easylist.txt: 455) -/.*\.com/js/adsense -.*.com/js/adsense -# .com/js/ads/ (easylist.txt: 454) -/.*\.com/js/ads/ -.*.com/js/ads/ -# .com/js/ad. (easylist.txt: 453) -/.*\.com/js/ad\. -.*.com/js/ad\. -# .com/js.ng/ (easylist.txt: 452) -/.*\.com/js\.ng/ -.*.com/js\.ng/ -# .com/iplgadshow (easylist.txt: 451) -/.*\.com/iplgadshow -.*.com/iplgadshow -# .com/im_ad/ (easylist.txt: 450) -/.*\.com/im_ad/ -.*.com/im_ad/ -# .com/im-ad/ (easylist.txt: 449) -/.*\.com/im-ad/ -.*.com/im-ad/ -# .com/gads/ (easylist.txt: 448) -/.*\.com/gads/ -.*.com/gads/ -# .com/doubleclick/ (easylist.txt: 447) -/.*\.com/doubleclick/ -.*.com/doubleclick/ -# .com/bads/ (easylist.txt: 446) -/.*\.com/bads/ -.*.com/bads/ -# .com/adz/ (easylist.txt: 445) -/.*\.com/adz/ -.*.com/adz/ -# .com/adx_ (easylist.txt: 444) -/.*\.com/adx_ -.*.com/adx_ -# .com/adx/ (easylist.txt: 443) -/.*\.com/adx/ -.*.com/adx/ -# .com/adv_ (easylist.txt: 442) -/.*\.com/adv_ -.*.com/adv_ -# .com/adv? (easylist.txt: 441) -/.*\.com/adv\? -.*.com/adv\? -# .com/adv3/ (easylist.txt: 440) -/.*\.com/adv3/ -.*.com/adv3/ -# .com/adv/ (easylist.txt: 439) -/.*\.com/adv/ -.*.com/adv/ -# .com/ads_ (easylist.txt: 438) -/.*\.com/ads_ -.*.com/ads_ -# .com/ads? (easylist.txt: 437) -/.*\.com/ads\? -.*.com/ads\? -# .com/ads/$image,object,subdocument (easylist.txt: 436) -/.*\.com/ads/ -.*.com/ads/ -# .com/ads. (easylist.txt: 435) -/.*\.com/ads\. -.*.com/ads\. -# .com/ads- (easylist.txt: 434) -/.*\.com/ads- -.*.com/ads- -# .com/adpicture (easylist.txt: 433) -/.*\.com/adpicture -.*.com/adpicture -# .com/adlib_ (easylist.txt: 432) -/.*\.com/adlib_ -.*.com/adlib_ -# .com/adlib/ (easylist.txt: 431) -/.*\.com/adlib/ -.*.com/adlib/ -# .com/adinf/ (easylist.txt: 430) -/.*\.com/adinf/ -.*.com/adinf/ -# .com/adgallery (easylist.txt: 429) -/.*\.com/adgallery -.*.com/adgallery -# .com/adds/ (easylist.txt: 428) -/.*\.com/adds/ -.*.com/adds/ -# .com/adclk? (easylist.txt: 427) -/.*\.com/adclk\? -.*.com/adclk\? -# .com/ad? (easylist.txt: 426) -/.*\.com/ad\? -.*.com/ad\? -# .com/ad6/ (easylist.txt: 425) -/.*\.com/ad6/ -.*.com/ad6/ -# .com/ad2/ (easylist.txt: 424) -/.*\.com/ad2/ -.*.com/ad2/ -# .com/a?size (easylist.txt: 420) -/.*\.com/a\?size -.*.com/a\?size -# .com/a?pagetype (easylist.txt: 419) -/.*\.com/a\?pagetype -.*.com/a\?pagetype -# .com/a?network (easylist.txt: 418) -/.*\.com/a\?network -.*.com/a\?network -# .com/?wid= (easylist.txt: 417) -/.*\.com/\?wid= -.*.com/\?wid= -# .com/?ad= (easylist.txt: 416) -/.*\.com/\?ad= -.*.com/\?ad= -# .co/ads? (easylist.txt: 415) -/.*\.co/ads\? -.*.co/ads\? -# .co/ads/ (easylist.txt: 414) -/.*\.co/ads/ -.*.co/ads/ -# .clkads. (easylist.txt: 413) -/.*\.clkads\. -.*.clkads.*. -# .ch/adv/ (easylist.txt: 412) -/.*\.ch/adv/ -.*.ch/adv/ -# .ch/ads/ (easylist.txt: 411) -/.*\.ch/ads/ -.*.ch/ads/ -# .cgi?ad= (easylist.txt: 410) -/.*\.cgi\?ad= -# .cfm?advideo% (easylist.txt: 409) -/.*\.cfm\?advideo% -# .cfm?ad= (easylist.txt: 408) -/.*\.cfm\?ad= -# .cc/ads/ (easylist.txt: 407) -/.*\.cc/ads/ -.*.cc/ads/ -# .ca/ads/ (easylist.txt: 406) -/.*\.ca/ads/ -.*.ca/ads/ -# .bz/ads/ (easylist.txt: 405) -/.*\.bz/ads/ -.*.bz/ads/ -# .br/ads/ (easylist.txt: 404) -/.*\.br/ads/ -.*.br/ads/ -# .box.ad. (easylist.txt: 403) -/.*\.box\.ad\. -.*.box.ad.*. -# .bns1.net/ (easylist.txt: 402) -/.*\.bns1\.net/ -.*.bns1.net -# .biz/ads/ (easylist.txt: 401) -/.*\.biz/ads/ -.*.biz/ads/ -# .biz/ad2/ (easylist.txt: 400) -/.*\.biz/ad2/ -.*.biz/ad2/ -# .biz/ad/ (easylist.txt: 399) -/.*\.biz/ad/ -.*.biz/ad/ -# .biz/ad. (easylist.txt: 398) -/.*\.biz/ad\. -.*.biz/ad\. -# .be/ads/ (easylist.txt: 397) -/.*\.be/ads/ -.*.be/ads/ -# .bbn.by/ (easylist.txt: 396) -/.*\.bbn\.by/ -.*.bbn.by -# .banner%20ad. (easylist.txt: 395) -/.*\.banner%20ad\. -# .az/adv/ (easylist.txt: 394) -/.*\.az/adv/ -.*.az/adv/ -# .au/ads/ (easylist.txt: 393) -/.*\.au/ads/ -.*.au/ads/ -# .at/ads/ (easylist.txt: 392) -/.*\.at/ads/ -.*.at/ads/ -# .aspx?adid= (easylist.txt: 391) -/.*\.aspx\?adid= -# .aspx?ad= (easylist.txt: 390) -/.*\.aspx\?ad= -# .asp?coad (easylist.txt: 389) -/.*\.asp\?coad -# .ashx?AdID= (easylist.txt: 388) -/.*\.ashx\?AdID= -# .ashx?ad= (easylist.txt: 387) -/.*\.ashx\?ad= -# .ar/ads/ (easylist.txt: 386) -/.*\.ar/ads/ -.*.ar/ads/ -# .ae/ads/ (easylist.txt: 385) -/.*\.ae/ads/ -.*.ae/ads/ -# .adwolf. (easylist.txt: 384) -/.*\.adwolf\. -.*.adwolf.*. -# .advertmarket. (easylist.txt: 383) -/.*\.advertmarket\. -.*.advertmarket.*. -# .AdvertismentBottom. (easylist.txt: 382) -/.*\.AdvertismentBottom\. -.*.AdvertismentBottom.*. -# .adv.cdn. (easylist.txt: 380) -/.*\.adv\.cdn\. -.*.adv.cdn.*. -# .adtooltip& (easylist.txt: 379) -/.*\.adtooltip& -# .adtech_ (easylist.txt: 378) -/.*\.adtech_ -# .adsremote. (easylist.txt: 377) -/.*\.adsremote\. -.*.adsremote.*. -# .adspace. (easylist.txt: 376) -/.*\.adspace\. -.*.adspace.*. -# .adserver1. (easylist.txt: 374) -/.*\.adserver1\. -.*.adserver1.*. -# .adserver01. (easylist.txt: 373) -/.*\.adserver01\. -.*.adserver01.*. -# .adserver. (easylist.txt: 372) -/.*\.adserver\. -.*.adserver.*. -# .adserv/ (easylist.txt: 371) -/.*\.adserv/ -.*.adserv -# .adsense. (easylist.txt: 370) -/.*\.adsense\. -.*.adsense.*. -# .adsbox. (easylist.txt: 369) -/.*\.adsbox\. -.*.adsbox.*. -# .ads_clickthru. (easylist.txt: 368) -/.*\.ads_clickthru\. -# .ads3- (easylist.txt: 367) -/.*\.ads3- -.*.ads3-*. -# .ads2- (easylist.txt: 366) -/.*\.ads2- -.*.ads2-*. -# .ads1. (easylist.txt: 365) -/.*\.ads1\. -.*.ads1.*. -# .ads1- (easylist.txt: 364) -/.*\.ads1- -.*.ads1-*. -# .ads.zones. (easylist.txt: 363) -/.*\.ads\.zones\. -.*.ads.zones.*. -# .ads.loader- (easylist.txt: 362) -/.*\.ads\.loader- -.*.ads.loader-*. -# .ads.darla. (easylist.txt: 361) -/.*\.ads\.darla\. -.*.ads.darla.*. -# .ads.css (easylist.txt: 360) -/.*\.ads\.css -.*.ads.css*. -# .ads.core. (easylist.txt: 359) -/.*\.ads\.core\. -.*.ads.core.*. -# .ads.controller. (easylist.txt: 358) -/.*\.ads\.controller\. -.*.ads.controller.*. -# .ads-tool. (easylist.txt: 357) -/.*\.ads-tool\. -.*.ads-tool.*. -# .ads-min. (easylist.txt: 356) -/.*\.ads-min\. -.*.ads-min.*. -# .ads-lazy. (easylist.txt: 355) -/.*\.ads-lazy\. -.*.ads-lazy.*. -# .ads-and-tracking. (easylist.txt: 354) -/.*\.ads-and-tracking\. -.*.ads-and-tracking.*. -# .adru. (easylist.txt: 353) -/.*\.adru\. -.*.adru.*. -# .adrotate. (easylist.txt: 352) -/.*\.adrotate\. -.*.adrotate.*. -# .adriver.$~object-subrequest (easylist.txt: 351) -/.*\.adriver\. -.*.adriver.*. -# .adplacement= (easylist.txt: 349) -/.*\.adplacement= -# .adpartner. (easylist.txt: 348) -/.*\.adpartner\. -.*.adpartner.*. -# .admarvel. (easylist.txt: 346) -/.*\.admarvel\. -.*.admarvel.*. -# .adgearpubs. (easylist.txt: 344) -/.*\.adgearpubs\. -.*.adgearpubs.*. -# .adframesrc. (easylist.txt: 343) -/.*\.adframesrc\. -.*.adframesrc.*. -# .adforge. (easylist.txt: 342) -/.*\.adforge\. -.*.adforge.*. -# .adcenter. (easylist.txt: 341) -/.*\.adcenter\. -.*.adcenter.*. -# .adbutler- (easylist.txt: 340) -/.*\.adbutler- -.*.adbutler-*. -# .adbanner. (easylist.txt: 339) -/.*\.adbanner\. -.*.adbanner.*. -# .ad1.nspace (easylist.txt: 338) -/.*\.ad1\.nspace -.*.ad1.nspace*. -# .ad/tag. (easylist.txt: 337) -/.*\.ad/tag\. -.*.ad/tag\. -# .ad/scripts/ (easylist.txt: 336) -/.*\.ad/scripts/ -.*.ad/scripts/ -# .ad/script/ (easylist.txt: 335) -/.*\.ad/script/ -.*.ad/script/ -# .ad/positions/ (easylist.txt: 334) -/.*\.ad/positions/ -.*.ad/positions/ -# .ad/content/ (easylist.txt: 333) -/.*\.ad/content/ -.*.ad/content/ -# .ad.premiere. (easylist.txt: 332) -/.*\.ad\.premiere\. -.*.ad.premiere.*. -# .ad.page. (easylist.txt: 331) -/.*\.ad\.page\. -.*.ad.page.*. -# .ad.json? (easylist.txt: 330) -/.*\.ad\.json\? -# .ad.footer. (easylist.txt: 329) -/.*\.ad\.footer\. -.*.ad.footer.*. -# .ad.final. (easylist.txt: 328) -/.*\.ad\.final\. -.*.ad.final.*. -# .ad-traffic. (easylist.txt: 327) -/.*\.ad-traffic\. -.*.ad-traffic.*. -# .ad-sys. (easylist.txt: 326) -/.*\.ad-sys\. -.*.ad-sys.*. -# .ad-cloud. (easylist.txt: 325) -/.*\.ad-cloud\. -.*.ad-cloud.*. -# .ace.advertising. (easylist.txt: 324) -/.*\.ace\.advertising\. -.*.ace.advertising.*. -# .a3s?n=*&zone_id= (easylist.txt: 323) -/.*\.a3s\?n=.*&zone_id= -# .1d/ads/ (easylist.txt: 322) -/.*\.1d/ads/ -.*.1d/ads/ -# -your-ads-here. (easylist.txt: 321) -/.*-your-ads-here\. -.*-your-ads-here.*. -# -webad1. (easylist.txt: 320) -/.*-webad1\. -.*-webad1.*. -# -Web-Advert. (easylist.txt: 319) -/.*-Web-Advert\. -.*-Web-Advert.*. -# -web-advert- (easylist.txt: 318) -/.*-web-advert- -.*-web-advert-*. -# -Web-Ads. (easylist.txt: 317) -/.*-Web-Ads\. -.*-Web-Ads.*. -# -Web-Ad. (easylist.txt: 316) -/.*-Web-Ad\. -.*-Web-Ad.*. -# -web-ad- (easylist.txt: 315) -/.*-web-ad- -.*-web-ad-*. -# -video-ads/ (easylist.txt: 314) -/.*-video-ads/ -.*-video-ads -# -us/ads/ (easylist.txt: 313) -/.*-us/ads/ -.*-us/ads/ -# -top-ads. (easylist.txt: 312) -/.*-top-ads\. -.*-top-ads.*. -# -top-ad. (easylist.txt: 311) -/.*-top-ad\. -.*-top-ad.*. -# -third-ad. (easylist.txt: 310) -/.*-third-ad\. -.*-third-ad.*. -# -theme/ads/ (easylist.txt: 309) -/.*-theme/ads/ -.*-theme/ads/ -# -text-ads. (easylist.txt: 308) -/.*-text-ads\. -.*-text-ads.*. -# -template-ads/ (easylist.txt: 307) -/.*-template-ads/ -.*-template-ads -# -strip-ads- (easylist.txt: 306) -/.*-strip-ads- -.*-strip-ads-*. -# -sponsored-links- (easylist.txt: 305) -/.*-sponsored-links- -.*-sponsored-links-*. -# -sponsor-ad. (easylist.txt: 304) -/.*-sponsor-ad\. -.*-sponsor-ad.*. -# -source/ads/ (easylist.txt: 303) -/.*-source/ads/ -.*-source/ads/ -# -small-ad. (easylist.txt: 302) -/.*-small-ad\. -.*-small-ad.*. -# -skyscrapper160x600. (easylist.txt: 301) -/.*-skyscrapper160x600\. -.*-skyscrapper160x600.*. -# -Skyscraper-Ad. (easylist.txt: 300) -/.*-Skyscraper-Ad\. -.*-Skyscraper-Ad.*. -# -side-ad- (easylist.txt: 299) -/.*-side-ad- -.*-side-ad-*. -# -show-ads. (easylist.txt: 298) -/.*-show-ads\. -.*-show-ads.*. -# -seasonal-ad. (easylist.txt: 297) -/.*-seasonal-ad\. -.*-seasonal-ad.*. -# -scrollads. (easylist.txt: 296) -/.*-scrollads\. -.*-scrollads.*. -# -rollout-ad- (easylist.txt: 295) -/.*-rollout-ad- -.*-rollout-ad-*. -# -rightrailad- (easylist.txt: 294) -/.*-rightrailad- -.*-rightrailad-*. -# -right-ad. (easylist.txt: 293) -/.*-right-ad\. -.*-right-ad.*. -# -Results-Sponsored. (easylist.txt: 292) -/.*-Results-Sponsored\. -.*-Results-Sponsored.*. -# -rectangle/ad- (easylist.txt: 291) -/.*-rectangle/ad- -.*-rectangle/ad- -# -publicidad. (easylist.txt: 290) -/.*-publicidad\. -.*-publicidad.*. -# -printhousead- (easylist.txt: 289) -/.*-printhousead- -.*-printhousead-*. -# -pri/adv- (easylist.txt: 288) -/.*-pri/adv- -.*-pri/adv- -# -popup-ads- (easylist.txt: 287) -/.*-popup-ads- -.*-popup-ads-*. -# -popup-ad. (easylist.txt: 286) -/.*-popup-ad\. -.*-popup-ad.*. -# -popunder. (easylist.txt: 285) -/.*-popunder\. -.*-popunder.*. -# -popexit. (easylist.txt: 284) -/.*-popexit\. -.*-popexit.*. -# -pop-under/ (easylist.txt: 283) -/.*-pop-under/ -.*-pop-under -# -permads. (easylist.txt: 282) -/.*-permads\. -.*-permads.*. -# -peel-ads- (easylist.txt: 281) -/.*-peel-ads- -.*-peel-ads-*. -# -panel_ad_ (easylist.txt: 280) -/.*-panel_ad_ -# -panel-ad. (easylist.txt: 279) -/.*-panel-ad\. -.*-panel-ad.*. -# -page-peel/ (easylist.txt: 278) -/.*-page-peel/ -.*-page-peel -# -page-ad? (easylist.txt: 277) -/.*-page-ad\? -# -page-ad. (easylist.txt: 276) -/.*-page-ad\. -.*-page-ad.*. -# -online-advert. (easylist.txt: 275) -/.*-online-advert\. -.*-online-advert.*. -# -NewStockAd- (easylist.txt: 274) -/.*-NewStockAd- -.*-NewStockAd-*. -# -newsletter-ad- (easylist.txt: 273) -/.*-newsletter-ad- -.*-newsletter-ad-*. -# -news-ad- (easylist.txt: 272) -/.*-news-ad- -.*-news-ad-*. -# -NewAd. (easylist.txt: 271) -/.*-NewAd\. -.*-NewAd.*. -# -load-ads. (easylist.txt: 270) -/.*-load-ads\. -.*-load-ads.*. -# -leaderboard-ad- (easylist.txt: 269) -/.*-leaderboard-ad- -.*-leaderboard-ad-*. -# -layer-ads/ (easylist.txt: 268) -/.*-layer-ads/ -.*-layer-ads -# -layer-ad. (easylist.txt: 267) -/.*-layer-ad\. -.*-layer-ad.*. -# -intern-ads/ (easylist.txt: 266) -/.*-intern-ads/ -.*-intern-ads -# -inspire-ad. (easylist.txt: 265) -/.*-inspire-ad\. -.*-inspire-ad.*. -# -img/ads/ (easylist.txt: 264) -/.*-img/ads/ -.*-img/ads/ -# -images/ad- (easylist.txt: 263) -/.*-images/ad- -.*-images/ad- -# -image/Ads/ (easylist.txt: 262) -/.*-image/Ads/ -.*-image/Ads/ -# -image-ad. (easylist.txt: 261) -/.*-image-ad\. -.*-image-ad.*. -# -iframe-ads/ (easylist.txt: 260) -/.*-iframe-ads/ -.*-iframe-ads -# -iframe-ad. (easylist.txt: 259) -/.*-iframe-ad\. -.*-iframe-ad.*. -# -housead- (easylist.txt: 258) -/.*-housead- -.*-housead-*. -# -gpt-ad- (easylist.txt: 257) -/.*-gpt-ad- -.*-gpt-ad-*. -# -google2-ad- (easylist.txt: 256) -/.*-google2-ad- -.*-google2-ad-*. -# -google-ads/ (easylist.txt: 255) -/.*-google-ads/ -.*-google-ads -# -google-ads- (easylist.txt: 254) -/.*-google-ads- -.*-google-ads-*. -# -games/ads/ (easylist.txt: 253) -/.*-games/ads/ -.*-games/ads/ -# -gallery_ad/ (easylist.txt: 252) -/.*-gallery_ad/ -# -footerads. (easylist.txt: 251) -/.*-footerads\. -.*-footerads.*. -# -footerads- (easylist.txt: 250) -/.*-footerads- -.*-footerads-*. -# -floorboard-ads/ (easylist.txt: 249) -/.*-floorboard-ads/ -.*-floorboard-ads -# -floater_ads_ (easylist.txt: 248) -/.*-floater_ads_ -# -fleshlight2. (easylist.txt: 247) -/.*-fleshlight2\. -.*-fleshlight2.*. -# -feed-ads. (easylist.txt: 246) -/.*-feed-ads\. -.*-feed-ads.*. -# -featured-ads/ (easylist.txt: 245) -/.*-featured-ads/ -.*-featured-ads -# -featured-ads. (easylist.txt: 244) -/.*-featured-ads\. -.*-featured-ads.*. -# -fe-ads/ (easylist.txt: 243) -/.*-fe-ads/ -.*-fe-ads -# -euads. (easylist.txt: 242) -/.*-euads\. -.*-euads.*. -# -dfp-ads/ (easylist.txt: 241) -/.*-dfp-ads/ -.*-dfp-ads -# -cpm-ads. (easylist.txt: 240) -/.*-cpm-ads\. -.*-cpm-ads.*. -# -cpm-ad. (easylist.txt: 239) -/.*-cpm-ad\. -.*-cpm-ad.*. -# -contest-ad. (easylist.txt: 238) -/.*-contest-ad\. -.*-contest-ad.*. -# -content-ad. (easylist.txt: 237) -/.*-content-ad\. -.*-content-ad.*. -# -box2-ad? (easylist.txt: 236) -/.*-box2-ad\? -# -Box-Ad. (easylist.txt: 235) -/.*-Box-Ad\. -.*-Box-Ad.*. -# -book-ad- (easylist.txt: 234) -/.*-book-ad- -.*-book-ad-*. -# -blog-ad- (easylist.txt: 233) -/.*-blog-ad- -.*-blog-ad-*. -# -bin/ad_ (easylist.txt: 232) -/.*-bin/ad_ -.*-bin/ad_ -# -billboard-ads/ (easylist.txt: 231) -/.*-billboard-ads/ -.*-billboard-ads -# -bg_ads. (easylist.txt: 230) -/.*-bg_ads\. -# -bannerads/ (easylist.txt: 229) -/.*-bannerads/ -.*-bannerads -# -banner468x60. (easylist.txt: 228) -/.*-banner468x60\. -.*-banner468x60.*. -# -banner300x250. (easylist.txt: 227) -/.*-banner300x250\. -.*-banner300x250.*. -# -banner.swf? (easylist.txt: 226) -/.*-banner\.swf\? -# -banner-ads/ (easylist.txt: 225) -/.*-banner-ads/ -.*-banner-ads -# -banner-ads- (easylist.txt: 224) -/.*-banner-ads- -.*-banner-ads-*. -# -banner-ad/ (easylist.txt: 223) -/.*-banner-ad/ -.*-banner-ad -# -banner-ad. (easylist.txt: 222) -/.*-banner-ad\. -.*-banner-ad.*. -# -banner-ad- (easylist.txt: 221) -/.*-banner-ad- -.*-banner-ad-*. -# -banner-768. (easylist.txt: 220) -/.*-banner-768\. -.*-banner-768.*. -# -article-advert- (easylist.txt: 219) -/.*-article-advert- -.*-article-advert-*. -# -article-ads- (easylist.txt: 218) -/.*-article-ads- -.*-article-ads-*. -# -affiliates/img_ (easylist.txt: 217) -/.*-affiliates/img_ -.*-affiliates/img_ -# -affiliate-link. (easylist.txt: 216) -/.*-affiliate-link\. -.*-affiliate-link.*. -# -adwords. (easylist.txt: 215) -/.*-adwords\. -.*-adwords.*. -# -advertisment- (easylist.txt: 214) -/.*-advertisment- -.*-advertisment-*. -# -advertising_ (easylist.txt: 213) -/.*-advertising_ -# -advertisement_ (easylist.txt: 212) -/.*-advertisement_ -# -advertisement. (easylist.txt: 211) -/.*-advertisement\. -.*-advertisement.*. -# -advertisement-icon. (easylist.txt: 210) -/.*-advertisement-icon\. -.*-advertisement-icon.*. -# -advertise01. (easylist.txt: 209) -/.*-advertise01\. -.*-advertise01.*. -# -advertise/ (easylist.txt: 208) -/.*-advertise/ -.*-advertise -# -advert_August. (easylist.txt: 206) -/.*-advert_August\. -# -advert3. (easylist.txt: 205) -/.*-advert3\. -.*-advert3.*. -# -advert2. (easylist.txt: 204) -/.*-advert2\. -.*-advert2.*. -# -advert1. (easylist.txt: 203) -/.*-advert1\. -.*-advert1.*. -# -advert.swf (easylist.txt: 202) -/.*-advert\.swf -.*-advert.swf*. -# -advert.jpg? (easylist.txt: 201) -/.*-advert\.jpg\? -# -advert-label- (easylist.txt: 200) -/.*-advert-label- -.*-advert-label-*. -# -adv.js (easylist.txt: 199) -/.*-adv\.js -.*-adv.js*. -# -adv.jpg (easylist.txt: 198) -/.*-adv\.jpg -.*-adv.jpg*. -# -adv-v1/ (easylist.txt: 197) -/.*-adv-v1/ -.*-adv-v1 -# -adtrack. (easylist.txt: 196) -/.*-adtrack\. -.*-adtrack.*. -# -adtopbanner- (easylist.txt: 195) -/.*-adtopbanner- -.*-adtopbanner-*. -# -adtechfront. (easylist.txt: 194) -/.*-adtechfront\. -.*-adtechfront.*. -# -adsystem- (easylist.txt: 193) -/.*-adsystem- -.*-adsystem-*. -# -adswizz- (easylist.txt: 192) -/.*-adswizz- -.*-adswizz-*. -# -adspot- (easylist.txt: 191) -/.*-adspot- -.*-adspot-*. -# -adspace_ (easylist.txt: 190) -/.*-adspace_ -# -adspace. (easylist.txt: 189) -/.*-adspace\. -.*-adspace.*. -# -adsonar. (easylist.txt: 188) -/.*-adsonar\. -.*-adsonar.*. -# -adserver/ (easylist.txt: 187) -/.*-adserver/ -.*-adserver -# -adserver- (easylist.txt: 186) -/.*-adserver- -.*-adserver-*. -# -adsense2. (easylist.txt: 185) -/.*-adsense2\. -.*-adsense2.*. -# -adscript. (easylist.txt: 184) -/.*-adscript\. -.*-adscript.*. -# -Ads_Billboard_ (easylist.txt: 183) -/.*-Ads_Billboard_ -# -ads_9_3. (easylist.txt: 182) -/.*-ads_9_3\. -# -Ads_728x902. (easylist.txt: 181) -/.*-Ads_728x902\. -# -ads/static- (easylist.txt: 180) -/.*-ads/static- -.*-ads/static- -# -ads/oas/ (easylist.txt: 179) -/.*-ads/oas/ -.*-ads/oas/ -# -ads/img/ (easylist.txt: 178) -/.*-ads/img/ -.*-ads/img/ -# -ads/ad- (easylist.txt: 177) -/.*-ads/ad- -.*-ads/ad- -# -ads/728x (easylist.txt: 176) -/.*-ads/728x -.*-ads/728x -# -ads.swf (easylist.txt: 175) -/.*-ads\.swf -.*-ads.swf*. -# -ads.php? (easylist.txt: 174) -/.*-ads\.php\? -# -ads.js? (easylist.txt: 173) -/.*-ads\.js\? -# -ads.gif (easylist.txt: 172) -/.*-ads\.gif -.*-ads.gif*. -# -ads.generated. (easylist.txt: 171) -/.*-ads\.generated\. -.*-ads.generated.*. -# -ads-widget? (easylist.txt: 170) -/.*-ads-widget\? -# -ads-right. (easylist.txt: 169) -/.*-ads-right\. -.*-ads-right.*. -# -ads-placement. (easylist.txt: 168) -/.*-ads-placement\. -.*-ads-placement.*. -# -ads-ns. (easylist.txt: 167) -/.*-ads-ns\. -.*-ads-ns.*. -# -ads-manager/ (easylist.txt: 166) -/.*-ads-manager/ -.*-ads-manager -# -ads-management/ (easylist.txt: 165) -/.*-ads-management/ -.*-ads-management -# -ads-init& (easylist.txt: 164) -/.*-ads-init& -# -ads-iframe. (easylist.txt: 163) -/.*-ads-iframe\. -.*-ads-iframe.*. -# -ads-bottom. (easylist.txt: 162) -/.*-ads-bottom\. -.*-ads-bottom.*. -# -ads-banner. (easylist.txt: 161) -/.*-ads-banner\. -.*-ads-banner.*. -# -ads-728x (easylist.txt: 160) -/.*-ads-728x -.*-ads-728x*. -# -ads-180x (easylist.txt: 159) -/.*-ads-180x -.*-ads-180x*. -# -adrotation. (easylist.txt: 158) -/.*-adrotation\. -.*-adrotation.*. -# -adnow. (easylist.txt: 157) -/.*-adnow\. -.*-adnow.*. -# -admarvel/ (easylist.txt: 156) -/.*-admarvel/ -.*-admarvel -# -adimage- (easylist.txt: 155) -/.*-adimage- -.*-adimage-*. -# -adhere2. (easylist.txt: 154) -/.*-adhere2\. -.*-adhere2.*. -# -adhelper. (easylist.txt: 153) -/.*-adhelper\. -.*-adhelper.*. -# -adchain. (easylist.txt: 152) -/.*-adchain\. -.*-adchain.*. -# -adcentre. (easylist.txt: 151) -/.*-adcentre\. -.*-adcentre.*. -# -adblack- (easylist.txt: 150) -/.*-adblack- -.*-adblack-*. -# -adap. (easylist.txt: 149) -/.*-adap\. -.*-adap.*. -# -ad_leaderboard/ (easylist.txt: 148) -/.*-ad_leaderboard/ -# -ad_injector/ (easylist.txt: 147) -/.*-ad_injector/ -# -ad_banner- (easylist.txt: 146) -/.*-ad_banner- -# -ad_125x125. (easylist.txt: 145) -/.*-ad_125x125\. -# -ad5. (easylist.txt: 144) -/.*-ad5\. -.*-ad5.*. -# -ad4. (easylist.txt: 143) -/.*-ad4\. -.*-ad4.*. -# -Ad300x90- (easylist.txt: 142) -/.*-Ad300x90- -.*-Ad300x90-*. -# -Ad300x250. (easylist.txt: 141) -/.*-Ad300x250\. -.*-Ad300x250.*. -# -ad3. (easylist.txt: 140) -/.*-ad3\. -.*-ad3.*. -# -ad2_ (easylist.txt: 139) -/.*-ad2_ -# -ad2. (easylist.txt: 138) -/.*-ad2\. -.*-ad2.*. -# -ad1. (easylist.txt: 137) -/.*-ad1\. -.*-ad1.*. -# -ad03. (easylist.txt: 136) -/.*-ad03\. -.*-ad03.*. -# -ad/right_ (easylist.txt: 135) -/.*-ad/right_ -.*-ad/right_ -# -ad/main. (easylist.txt: 134) -/.*-ad/main\. -.*-ad/main\. -# -ad.php? (easylist.txt: 133) -/.*-ad\.php\? -# -ad.jsp| (easylist.txt: 132) -/.*-ad\.jsp$ -.*-ad.jsp -# -ad.jpg? (easylist.txt: 131) -/.*-ad\.jpg\? -# -ad.jpg.pagespeed. (easylist.txt: 130) -/.*-ad\.jpg\.pagespeed\. -.*-ad.jpg.pagespeed.*. -# -ad-zone. (easylist.txt: 129) -/.*-ad-zone\. -.*-ad-zone.*. -# -ad-vertical- (easylist.txt: 128) -/.*-ad-vertical- -.*-ad-vertical-*. -# -ad-util. (easylist.txt: 127) -/.*-ad-util\. -.*-ad-util.*. -# -ad-util- (easylist.txt: 126) -/.*-ad-util- -.*-ad-util-*. -# -ad-unit/ (easylist.txt: 125) -/.*-ad-unit/ -.*-ad-unit -# -ad-unit. (easylist.txt: 124) -/.*-ad-unit\. -.*-ad-unit.*. -# -ad-top. (easylist.txt: 123) -/.*-ad-top\. -.*-ad-top.*. -# -ad-tile. (easylist.txt: 122) -/.*-ad-tile\. -.*-ad-tile.*. -# -ad-switcher. (easylist.txt: 121) -/.*-ad-switcher\. -.*-ad-switcher.*. -# -ad-sidebar- (easylist.txt: 120) -/.*-ad-sidebar- -.*-ad-sidebar-*. -# -ad-server/ (easylist.txt: 119) -/.*-ad-server/ -.*-ad-server -# -ad-rotators/ (easylist.txt: 118) -/.*-ad-rotators/ -.*-ad-rotators -# -ad-right. (easylist.txt: 117) -/.*-ad-right\. -.*-ad-right.*. -# -ad-new_ (easylist.txt: 116) -/.*-ad-new_ -# -ad-mpu+ (easylist.txt: 115) -/.*-ad-mpu\+ -# -ad-marker. (easylist.txt: 114) -/.*-ad-marker\. -.*-ad-marker.*. -# -ad-manager/$~stylesheet (easylist.txt: 113) -/.*-ad-manager/ -.*-ad-manager -# -ad-loading. (easylist.txt: 112) -/.*-ad-loading\. -.*-ad-loading.*. -# -ad-limits. (easylist.txt: 111) -/.*-ad-limits\. -.*-ad-limits.*. -# -ad-left. (easylist.txt: 110) -/.*-ad-left\. -.*-ad-left.*. -# -ad-large. (easylist.txt: 109) -/.*-ad-large\. -.*-ad-large.*. -# -ad-iframe/ (easylist.txt: 108) -/.*-ad-iframe/ -.*-ad-iframe -# -ad-hrule. (easylist.txt: 107) -/.*-ad-hrule\. -.*-ad-hrule.*. -# -ad-hrule- (easylist.txt: 106) -/.*-ad-hrule- -.*-ad-hrule-*. -# -ad-home. (easylist.txt: 105) -/.*-ad-home\. -.*-ad-home.*. -# -ad-gif1- (easylist.txt: 104) -/.*-ad-gif1- -.*-ad-gif1-*. -# -ad-gif- (easylist.txt: 103) -/.*-ad-gif- -.*-ad-gif-*. -# -ad-exo- (easylist.txt: 102) -/.*-ad-exo- -.*-ad-exo-*. -# -ad-ero- (easylist.txt: 101) -/.*-ad-ero- -.*-ad-ero-*. -# -ad-data/ (easylist.txt: 100) -/.*-ad-data/ -.*-ad-data -# -ad-cube. (easylist.txt: 99) -/.*-ad-cube\. -.*-ad-cube.*. -# -ad-column- (easylist.txt: 98) -/.*-ad-column- -.*-ad-column-*. -# -ad-choices. (easylist.txt: 97) -/.*-ad-choices\. -.*-ad-choices.*. -# -ad-category- (easylist.txt: 96) -/.*-ad-category- -.*-ad-category-*. -# -ad-button- (easylist.txt: 95) -/.*-ad-button- -.*-ad-button-*. -# -ad-bottom- (easylist.txt: 94) -/.*-ad-bottom- -.*-ad-bottom-*. -# -ad-big. (easylist.txt: 93) -/.*-ad-big\. -.*-ad-big.*. -# -ad-banner. (easylist.txt: 92) -/.*-ad-banner\. -.*-ad-banner.*. -# -ad-400. (easylist.txt: 91) -/.*-ad-400\. -.*-ad-400.*. -# -ad-340x400- (easylist.txt: 90) -/.*-ad-340x400- -.*-ad-340x400-*. -# -ad-336x280- (easylist.txt: 89) -/.*-ad-336x280- -.*-ad-336x280-*. -# -ad-313x232. (easylist.txt: 88) -/.*-ad-313x232\. -.*-ad-313x232.*. -# -ad-300x250. (easylist.txt: 87) -/.*-ad-300x250\. -.*-ad-300x250.*. -# -ad-24x24. (easylist.txt: 86) -/.*-ad-24x24\. -.*-ad-24x24.*. -# -ad-200x200- (easylist.txt: 85) -/.*-ad-200x200- -.*-ad-200x200-*. -# -ad-180x150px. (easylist.txt: 84) -/.*-ad-180x150px\. -.*-ad-180x150px.*. -# -ad-001- (easylist.txt: 83) -/.*-ad-001- -.*-ad-001-*. -# -300x100ad2. (easylist.txt: 82) -/.*-300x100ad2\. -.*-300x100ad2.*. -# -2011ad_ (easylist.txt: 81) -/.*-2011ad_ -# -2/ads/ (easylist.txt: 80) -/.*-2/ads/ -.*-2/ads/ -# +adverts/ (easylist.txt: 79) -/.*\+adverts/ -# +advertorial. (easylist.txt: 78) -/.*\+advertorial\. -# &view=ad& (easylist.txt: 77) -/.*&view=ad& -# &videoadid= (easylist.txt: 76) -/.*&videoadid= -# &video_ads_ (easylist.txt: 75) -/.*&video_ads_ -# &UrlAdParam= (easylist.txt: 74) -/.*&UrlAdParam= -# &type=ad& (easylist.txt: 73) -/.*&type=ad& -# &strategy=adsense& (easylist.txt: 72) -/.*&strategy=adsense& -# &smart_ad_ (easylist.txt: 71) -/.*&smart_ad_ -# &smallad= (easylist.txt: 70) -/.*&smallad= -# &simple_ad_ (easylist.txt: 69) -/.*&simple_ad_ -# &showad= (easylist.txt: 68) -/.*&showad= -# &show_ad_ (easylist.txt: 67) -/.*&show_ad_ -# &prvtof=*&poru= (easylist.txt: 66) -/.*&prvtof=.*&poru= -# &program=revshare& (easylist.txt: 65) -/.*&program=revshare& -# &popunder= (easylist.txt: 64) -/.*&popunder= -# &maxads= (easylist.txt: 63) -/.*&maxads= -# &largead= (easylist.txt: 62) -/.*&largead= -# &jumpstartadformat= (easylist.txt: 61) -/.*&jumpstartadformat= -# &googleadword= (easylist.txt: 60) -/.*&googleadword= -# &gIncludeExternalAds= (easylist.txt: 59) -/.*&gIncludeExternalAds= -# &expandable_ad_ (easylist.txt: 58) -/.*&expandable_ad_ -# &displayads= (easylist.txt: 57) -/.*&displayads= -# &customSizeAd= (easylist.txt: 56) -/.*&customSizeAd= -# &clicktag=http (easylist.txt: 55) -/.*&clicktag=http -# &banner_id= (easylist.txt: 54) -/.*&banner_id= -# &adzone= (easylist.txt: 53) -/.*&adzone= -# &advtile= (easylist.txt: 52) -/.*&advtile= -# &advid= (easylist.txt: 51) -/.*&advid= -# &advertiserid= (easylist.txt: 50) -/.*&advertiserid= -# &advert_ (easylist.txt: 49) -/.*&advert_ -# &adv_keywords= (easylist.txt: 48) -/.*&adv_keywords= -# &adurl= (easylist.txt: 47) -/.*&adurl= -# &adunit= (easylist.txt: 46) -/.*&adunit= -# &adType=PREROLL& (easylist.txt: 45) -/.*&adType=PREROLL& -# &adstype= (easylist.txt: 44) -/.*&adstype= -# &adspace= (easylist.txt: 43) -/.*&adspace= -# &adsourceid= (easylist.txt: 42) -/.*&adsourceid= -# &adslots= (easylist.txt: 41) -/.*&adslots= -# &adslot= (easylist.txt: 40) -/.*&adslot= -# &adsize= (easylist.txt: 39) -/.*&adsize= -# &adserver= (easylist.txt: 38) -/.*&adserver= -# &adsafe= (easylist.txt: 37) -/.*&adsafe= -# &adpageurl= (easylist.txt: 36) -/.*&adpageurl= -# &adnum= (easylist.txt: 35) -/.*&adnum= -# &adnet= (easylist.txt: 34) -/.*&adnet= -# &adname= (easylist.txt: 33) -/.*&adname= -# &admid= (easylist.txt: 32) -/.*&admid= -# &admeld_ (easylist.txt: 31) -/.*&admeld_ -# &adgroupid= (easylist.txt: 30) -/.*&adgroupid= -# &adcount= (easylist.txt: 29) -/.*&adcount= -# &adclient= (easylist.txt: 28) -/.*&adclient= -# &adbannerid= (easylist.txt: 27) -/.*&adbannerid= -# &ad_zones= (easylist.txt: 26) -/.*&ad_zones= -# &ad_url= (easylist.txt: 25) -/.*&ad_url= -# &ad_type_ (easylist.txt: 24) -/.*&ad_type_ -# &ad_type= (easylist.txt: 23) -/.*&ad_type= -# &ad_number= (easylist.txt: 22) -/.*&ad_number= -# &ad_network_ (easylist.txt: 21) -/.*&ad_network_ -# &ad_keyword= (easylist.txt: 20) -/.*&ad_keyword= -# &ad_height= (easylist.txt: 19) -/.*&ad_height= -# &ad_classid= (easylist.txt: 18) -/.*&ad_classid= -# &ad_channel= (easylist.txt: 17) -/.*&ad_channel= -# &ad_box_ (easylist.txt: 16) -/.*&ad_box_ #ab2p-block-elem-R1 {+client-header-tagger{ab2p-block-elem-R1} \ } -# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|107.150.17.66|20fuck.com|20men.com|22fuck.com|23.226.134.115|23.226.134.116|23.226.138.28|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina+easylist.txt: 1159) +# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tb001.xyz|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina.txt: 1177) /(.*/)?images/.*\.gif #ab2p-block-elem-R2 {+client-header-tagger{ab2p-block-elem-R2} \ } -# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina+easylist.txt: 4612) +# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tb001.xyz|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina.txt: 4590) .sinaimg.cn/.*\.gif #ab2p-block-elem-R3 {+client-header-tagger{ab2p-block-elem-R3} \ } -# ||109.201.134.110^$domain=04stream.com (easylistchina+easylist.txt: 39580) -.109.201.134.110 -# ||109.201.134.110^$domain=04stream.com (easylist.txt: 29095) -.109.201.134.110 +# ||chinaacc.com^$domain=100ksw.com (easylistchina.txt: 2414) +.chinaacc.com #ab2p-block-elem-R4 {+client-header-tagger{ab2p-block-elem-R4} \ } -# ||chinaacc.com^$domain=100ksw.com (easylistchina+easylist.txt: 2428) -.chinaacc.com +# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina.txt: 1184) +/(.*/)?images/moe #ab2p-block-elem-R5 {+client-header-tagger{ab2p-block-elem-R5} \ } -# ||2mdn.net^$object-subrequest,third-party,domain=101cargames.com|1025thebull.com|1031iheartaustin.com|1037theq.com|1041beat.com|1053kissfm.com|1057ezrock.com|1067litefm.com|10news.com|1310news.com|247comedy.com|3news.co.nz|49ers.com|610cktb.com|680news.com|700wlw.com|850koa.com|923jackfm.com|92q.com|940winz.com|94hjy.com|99kisscountry.com|abc15.com|abc2news.com|abcactionnews.com|am1300thezone.com|ap.org|atlantafalcons.com|automobilemag.com|automotive.com|azcardinals.com|baltimoreravens.com|baynews9.com|bbc.co.uk|bbc.com|belfasttelegraph.co.uk|bengals.com|bet.com|big1059.com|bigdog1009.ca|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boom973.com|boom997.com|boomphilly.com|box10.com|brisbanetimes.com.au|buccaneers.com|buffalobills.com|bullz-eye.com|calgaryherald.com|caller.com|canada.com|capitalfm.ca|cbslocal.com|cbsnews.com|cbssports.com|channel955.com|chargers.com|chez106.com|chfi.com|chicagobears.com|chicagotribune.com|cj104.com|cjad.com|cjbk.com|clevelandbrowns.com|cnet.com|coast933.com|colts.com|commercialappeal.com|country1011.com|country1043.com|country1067.com|country600.com|courierpress.com|cp24.com|cricketcountry.com|csmonitor.com|ctvnews.ca|dallascowboys.com|denverbroncos.com|detroitlions.com|drive.com.au|earthcam.com|easyrecipesite.com|edmontonjournal.com|egirlgames.net|elvisduran.com|enjoydressup.com|entrepreneur.com|eonline.com|escapegames.com|euronews.com|eveningecho.ie|fm98wjlb.com|foodnetwork.ca|four.co.nz|foxradio.ca|foxsportsradio.com|gamingbolt.com|ghananation.com|giantbomb.com|giants.com|globalnews.ca|globalpost.com|globaltoronto.com|globaltv.com|globaltvbc.com|globaltvcalgary.com|go.com|gorillanation.com|gosanangelo.com|hallelujah1051.com|hellobeautiful.com|heraldsun.com.au|hgtv.ca|hiphopnc.com|hot1041stl.com|hotair.com|hothiphopdetroit.com|hotspotatl.com|houstontexans.com|ibtimes.co.uk|ign.com|iheart.com|independent.ie|independentmail.com|indyhiphop.com|ipowerrichmond.com|jackfm.ca|jaguars.com|jwplatform.com|kase101.com|kcchiefs.com|kcci.com|kcra.com|kdvr.com|kfiam640.com|kgbx.com|khow.com|kiisfm.com|kiss925.com|kissnorthbay.com|kisssoo.com|kisstimmins.com|kitsapsun.com|kitv.com|kjrh.com|knoxnews.com|kogo.com|komonews.com|kshb.com|kwgn.com|kxan.com|kysdc.com|latimes.com|latinchat.com|leaderpost.com|livestream.com|local8now.com|magic96.com|majorleaguegaming.com|metacafe.com|miamidolphins.com|mix923fm.com|moneycontrol.com|montrealgazette.com|motorcyclistonline.com|moviemistakes.com|mtv.ca|myboom1029.com|mycolumbuspower.com|myezrock.com|naplesnews.com|nationalpost.com|nba.com|ndtv.com|neworleanssaints.com|news1130.com|newsinc.com|newsmax.com|newsmaxhealth.com|newsnet5.com|newsone.com|newstalk1010.com|newstalk1130.com|newyorkjets.com|nydailynews.com|nymag.com|oldschoolcincy.com|ottawacitizen.com|packers.com|panthers.com|patriots.com|pcworld.com|philadelphiaeagles.com|play.it|player.screenwavemedia.com|prowrestling.com|q92timmins.com|raaga.com|radio.com|radionowindy.com|raiders.com|rapbasement.com|redding.com|redskins.com|reporternews.com|reuters.com|rollingstone.com|rootsports.com|rottentomatoes.com|seahawks.com|sherdog.com|skynews.com.au|slice.ca|smh.com.au|sploder.com|sportsnet590.ca|sportsnet960.ca|springboardplatform.com|steelers.com|stlouisrams.com|streetfire.net|stuff.co.nz|tcpalm.com|telegraph.co.uk|theage.com.au|theaustralian.com.au|thebeatdfw.com|theboxhouston.com|thedenverchannel.com|thedrocks.com|theindychannel.com|theprovince.com|thestarphoenix.com|tide.com|timescolonist.com|timeslive.co.za|timesrecordnews.com|titansonline.com|totaljerkface.com|townhall.com|tripadvisor.ca|tripadvisor.co.uk|tripadvisor.co.za|tripadvisor.com|tripadvisor.com.au|tripadvisor.com.my|tripadvisor.com.sg|tripadvisor.ie|tripadvisor.in|turnto23.com|tvone.tv|twitch.tv|twitchy.com|usmagazine.com|vancouversun.com|vcstar.com|veetle.com|vice.com|videojug.com|viki.com|vikings.com|virginradio.ca|vzaar.com|wapt.com|washingtonpost.com|washingtontimes.com|wcpo.com|wdfn.com|weather.com|wescfm.com|wgci.com|wibw.com|wikihow.com|windsorstar.com|wiod.com|wiznation.com|wjdx.com|wkyt.com|wor710.com|wptv.com|wsj.com|wxyz.com|wyff4.com|yahoo.com|youtube.com|z100.com|zhiphopcleveland.com (easylistchina+easylist.txt: 34784) -.2mdn.net -# ||2mdn.net^$object-subrequest,third-party,domain=101cargames.com|1025thebull.com|1031iheartaustin.com|1037theq.com|1041beat.com|1053kissfm.com|1057ezrock.com|1067litefm.com|10news.com|1310news.com|247comedy.com|3news.co.nz|49ers.com|610cktb.com|680news.com|700wlw.com|850koa.com|923jackfm.com|92q.com|940winz.com|94hjy.com|99kisscountry.com|abc15.com|abc2news.com|abcactionnews.com|am1300thezone.com|ap.org|atlantafalcons.com|automobilemag.com|automotive.com|azcardinals.com|baltimoreravens.com|baynews9.com|bbc.co.uk|bbc.com|belfasttelegraph.co.uk|bengals.com|bet.com|big1059.com|bigdog1009.ca|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boom973.com|boom997.com|boomphilly.com|box10.com|brisbanetimes.com.au|buccaneers.com|buffalobills.com|bullz-eye.com|calgaryherald.com|caller.com|canada.com|capitalfm.ca|cbslocal.com|cbsnews.com|cbssports.com|channel955.com|chargers.com|chez106.com|chfi.com|chicagobears.com|chicagotribune.com|cj104.com|cjad.com|cjbk.com|clevelandbrowns.com|cnet.com|coast933.com|colts.com|commercialappeal.com|country1011.com|country1043.com|country1067.com|country600.com|courierpress.com|cp24.com|cricketcountry.com|csmonitor.com|ctvnews.ca|dallascowboys.com|denverbroncos.com|detroitlions.com|drive.com.au|earthcam.com|easyrecipesite.com|edmontonjournal.com|egirlgames.net|elvisduran.com|enjoydressup.com|entrepreneur.com|eonline.com|escapegames.com|euronews.com|eveningecho.ie|fm98wjlb.com|foodnetwork.ca|four.co.nz|foxradio.ca|foxsportsradio.com|gamingbolt.com|ghananation.com|giantbomb.com|giants.com|globalnews.ca|globalpost.com|globaltoronto.com|globaltv.com|globaltvbc.com|globaltvcalgary.com|go.com|gorillanation.com|gosanangelo.com|hallelujah1051.com|hellobeautiful.com|heraldsun.com.au|hgtv.ca|hiphopnc.com|hot1041stl.com|hotair.com|hothiphopdetroit.com|hotspotatl.com|houstontexans.com|ibtimes.co.uk|ign.com|iheart.com|independent.ie|independentmail.com|indyhiphop.com|ipowerrichmond.com|jackfm.ca|jaguars.com|jwplatform.com|kase101.com|kcchiefs.com|kcci.com|kcra.com|kdvr.com|kfiam640.com|kgbx.com|khow.com|kiisfm.com|kiss925.com|kissnorthbay.com|kisssoo.com|kisstimmins.com|kitsapsun.com|kitv.com|kjrh.com|knoxnews.com|kogo.com|komonews.com|kshb.com|kwgn.com|kxan.com|kysdc.com|latimes.com|latinchat.com|leaderpost.com|livestream.com|local8now.com|magic96.com|majorleaguegaming.com|metacafe.com|miamidolphins.com|mix923fm.com|moneycontrol.com|montrealgazette.com|motorcyclistonline.com|moviemistakes.com|mtv.ca|myboom1029.com|mycolumbuspower.com|myezrock.com|naplesnews.com|nationalpost.com|nba.com|ndtv.com|neworleanssaints.com|news1130.com|newsinc.com|newsmax.com|newsmaxhealth.com|newsnet5.com|newsone.com|newstalk1010.com|newstalk1130.com|newyorkjets.com|nydailynews.com|nymag.com|oldschoolcincy.com|ottawacitizen.com|packers.com|panthers.com|patriots.com|pcworld.com|philadelphiaeagles.com|play.it|player.screenwavemedia.com|prowrestling.com|q92timmins.com|raaga.com|radio.com|radionowindy.com|raiders.com|rapbasement.com|redding.com|redskins.com|reporternews.com|reuters.com|rollingstone.com|rootsports.com|rottentomatoes.com|seahawks.com|sherdog.com|skynews.com.au|slice.ca|smh.com.au|sploder.com|sportsnet590.ca|sportsnet960.ca|springboardplatform.com|steelers.com|stlouisrams.com|streetfire.net|stuff.co.nz|tcpalm.com|telegraph.co.uk|theage.com.au|theaustralian.com.au|thebeatdfw.com|theboxhouston.com|thedenverchannel.com|thedrocks.com|theindychannel.com|theprovince.com|thestarphoenix.com|tide.com|timescolonist.com|timeslive.co.za|timesrecordnews.com|titansonline.com|totaljerkface.com|townhall.com|tripadvisor.ca|tripadvisor.co.uk|tripadvisor.co.za|tripadvisor.com|tripadvisor.com.au|tripadvisor.com.my|tripadvisor.com.sg|tripadvisor.ie|tripadvisor.in|turnto23.com|tvone.tv|twitch.tv|twitchy.com|usmagazine.com|vancouversun.com|vcstar.com|veetle.com|vice.com|videojug.com|viki.com|vikings.com|virginradio.ca|vzaar.com|wapt.com|washingtonpost.com|washingtontimes.com|wcpo.com|wdfn.com|weather.com|wescfm.com|wgci.com|wibw.com|wikihow.com|windsorstar.com|wiod.com|wiznation.com|wjdx.com|wkyt.com|wor710.com|wptv.com|wsj.com|wxyz.com|wyff4.com|yahoo.com|youtube.com|z100.com|zhiphopcleveland.com (easylist.txt: 24299) -.2mdn.net +# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina.txt: 1159) +/(.*/)?config\. +config.*. #ab2p-block-elem-R6 {+client-header-tagger{ab2p-block-elem-R6} \ } -# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina+easylist.txt: 1166) -/(.*/)?images/moe +# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina.txt: 1228) +/(.*/)?Sitefiles/.* #ab2p-block-elem-R7 {+client-header-tagger{ab2p-block-elem-R7} \ } -# /skin/1212/bg$domain=114la.com|ylmf.com (easylistchina+easylist.txt: 1214) -/(.*/)?skin/1212/bg -# /material/vph.$domain=114la.com|ylmf.com (easylistchina+easylist.txt: 1189) -/(.*/)?material/vph\. +# ||sohucs.com^*_gif$domain=12580sky.com (easylistchina.txt: 4633) +.sohucs.com/.*_gif #ab2p-block-elem-R8 {+client-header-tagger{ab2p-block-elem-R8} \ } -# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina+easylist.txt: 1139) -/(.*/)?config\. -config.*. +# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina.txt: 1118) +/.*\.gif$ +.*.gif #ab2p-block-elem-R9 {+client-header-tagger{ab2p-block-elem-R9} \ } -# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina+easylist.txt: 1213) -/(.*/)?Sitefiles/.* +# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina.txt: 1116) +/.*\.com/x/ +.*.com/x/ #ab2p-block-elem-R10 {+client-header-tagger{ab2p-block-elem-R10} \ } -# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina+easylist.txt: 1094) -/.*\.gif$ -.*.gif +# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina.txt: 1279) +/(.*/)?ts\.js #ab2p-block-elem-R11 {+client-header-tagger{ab2p-block-elem-R11} \ } -# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina+easylist.txt: 1092) -/.*\.com/x/ -.*.com/x/ +# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina.txt: 4822) +.tinypic.com #ab2p-block-elem-R12 {+client-header-tagger{ab2p-block-elem-R12} \ } -# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina+easylist.txt: 1265) -/(.*/)?ts\.js +# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84fn.com|99ee1.com|99re5.com|99rr6.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|caoliuzx.com|cililian.me|fdzone.org|izzs.cc|jisuzhibo.net|links.hjav.in|liulanmi.com|sbme.me|taohuazu.tw|thzhd.net|ttdyy.tv|xinqixi.com|xxxbt.com|youb444.com|zhiboche.com (easylistchina.txt: 4589) +.sinaimg.cn #ab2p-block-elem-R13 {+client-header-tagger{ab2p-block-elem-R13} \ } -# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina+easylist.txt: 4844) -.tinypic.com +# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1229) +/(.*/)?skin/tb12/.* +# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1192) +/(.*/)?img/skin/.*_bg\. #ab2p-block-elem-R14 {+client-header-tagger{ab2p-block-elem-R14} \ } -# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84zr.com|99re.city|99re.co|99re.net|99re.org|99re6.com|99re8.com|99rehomes.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|cao1024.com|caoliuzx.com|cililian.me|fdzone.org|jisuzhibo.net|links.hjav.in|liulanmi.com|lululu.club|lululu.lu|ml.gg|sbme.me|taohuazu.tw|ttdyy.tv|xinqixi.com|xxxbt.com|zhiboche.com (easylistchina+easylist.txt: 4611) -.sinaimg.cn +# |http:$script,domain=189so.cn (easylistchina.txt: 1269) #ab2p-block-elem-R15 {+client-header-tagger{ab2p-block-elem-R15} \ } -# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina+easylist.txt: 1215) -/(.*/)?skin/tb12/.* -# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina+easylist.txt: 1174) -/(.*/)?img/skin/.*_bg\. +# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina.txt: 3456) +.imgmega.com/i/.*\.gif #ab2p-block-elem-R16 {+client-header-tagger{ab2p-block-elem-R16} \ } -# |http:$script,domain=189so.cn (easylistchina+easylist.txt: 1255) +# ||imgur.com^*.gif$domain=18p2p.com (easylistchina.txt: 3468) +.imgur.com/.*\.gif #ab2p-block-elem-R17 {+client-header-tagger{ab2p-block-elem-R17} \ } -# /adpost_$domain=18avday.cc|18avday.com (easylistchina+easylist.txt: 1117) -/(.*/)?adpost_ -# /adpost.$domain=18avday.cc|18avday.com (easylistchina+easylist.txt: 1116) -/(.*/)?adpost\. -adpost.*. +# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina.txt: 2388) +.cdndm.com/3/2015/ #ab2p-block-elem-R18 {+client-header-tagger{ab2p-block-elem-R18} \ } -# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina+easylist.txt: 3471) -.imgmega.com/i/.*\.gif +# |http://*/adblock$domain=26766.com (easylistchina.txt: 1275) +/(.*/)?adblock #ab2p-block-elem-R19 {+client-header-tagger{ab2p-block-elem-R19} \ } -# ||imgur.com^*.gif$domain=18p2p.com (easylistchina+easylist.txt: 3483) -.imgur.com/.*\.gif +# /the_top$domain=28188.com|28188.net (easylistchina.txt: 1235) +/(.*/)?the_top +# /banner.js$domain=28188.com|28188.net (easylistchina.txt: 1151) +/(.*/)?banner\.js +banner.js*. #ab2p-block-elem-R20 {+client-header-tagger{ab2p-block-elem-R20} \ } -# /images/banners/*$domain=19rus.info|1tvnet.ru|arendator.ru|biwork.ru|bvedomosti.ru|cars.ru|csmania.ru|fitsport.ru|fuzz-magazine.ru|gamegpu.ru|hd-systems.com.ua|itexpert.org.ua|karelia.ru|km.ru|mebelminsk.by|moscow-post.com|nakanune.ru|newizv.ru|ngregion.ru|poiskvps.ru|pretenziy.ru|rbc.ru|ridna.ua|rtr24.ru|ruslife.eu|sevastopol.su|skoda-club.org.ua|starkosino.ru|vjazhi.ru|vp-news.ru|vsatke.ru|zrenue.com|谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎 (advblock.txt: 5387) -/(.*/)?images/banners/.* +# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina.txt: 4564) +.sinaimg.cn/large/ #ab2p-block-elem-R21 {+client-header-tagger{ab2p-block-elem-R21} \ } -# ||windows.net/script/p.js$domain=1fichier.com|limetorrents.cc|primewire.ag|thepiratebay.銇裤倱銇 (easylistchina+easylist.txt: 45606) -.windows.net/script/p\.js -# ||windows.net/script/p.js$domain=1fichier.com|limetorrents.cc|primewire.ag|thepiratebay.銇裤倱銇 (easylist.txt: 35121) -.windows.net/script/p\.js +# ||qpic.cn^$domain=360-bo.com|pptiyu.com (easylistchina.txt: 4318) +.qpic.cn #ab2p-block-elem-R22 {+client-header-tagger{ab2p-block-elem-R22} \ } -# ||megogo.net^*?autoplay=1$domain=1kinobig.ru|hdkinomax.com|kino-dom.tv (advblock.txt: 6040) -.megogo.net/.*\?autoplay=1 +# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina.txt: 1136) +/(.*/)?ad2014\.js +ad2014.js*. #ab2p-block-elem-R23 {+client-header-tagger{ab2p-block-elem-R23} \ } -# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina+easylist.txt: 2402) -.cdndm.com/3/2015/ +# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina.txt: 1212) +/(.*/)?mydisplay\.php\?i= #ab2p-block-elem-R24 {+client-header-tagger{ab2p-block-elem-R24} \ } -# ||adfox.ru/*/getCode?$domain=1tv.ru (advblock.txt: 5452) -.adfox.ru/.*/getCode\? +# /xiaoshuo.js$domain=45zw.com (easylistchina.txt: 1252) +/(.*/)?xiaoshuo\.js +xiaoshuo.js*. #ab2p-block-elem-R25 {+client-header-tagger{ab2p-block-elem-R25} \ } -# .ru/*.swf|$third-party,domain=21forum.ru|afisha21.ru|cheb.ru|cheb.ws|cheboksary.ws|kugesi.ru|na-svyazi.ru|zarulem.ws (advblock.txt: 7075) -/.*\.ru/.*\.swf$ -.*.ru/.*\.swf$ +# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1180) +/(.*/)?images/888\.gif +# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1178) +/(.*/)?images/.*gamble +# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1170) +/(.*/)?gennie_b\.htm #ab2p-block-elem-R26 {+client-header-tagger{ab2p-block-elem-R26} \ } -# /uploads/*$object,domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7069) -/(.*/)?uploads/.* -# /img/bg/*$domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7068) -/(.*/)?img/bg/.* -# /img/*$object,domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7067) -/(.*/)?img/.* +# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina.txt: 1193) +/(.*/)?ipower\.htm +ipower.htm*. #ab2p-block-elem-R27 {+client-header-tagger{ab2p-block-elem-R27} \ } -# /ads/*$domain=240513.com|ozdpt.com (easylistchina+easylist.txt: 1118) -/(.*/)?ads/.* +# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina.txt: 1196) +/(.*/)?js/gTool\.js #ab2p-block-elem-R28 {+client-header-tagger{ab2p-block-elem-R28} \ } -# ||com/s/$script,subdocument,domain=24warez.ru|anideshka.ru|anilost.com|artero.ru|babestar.ru|best-xxx.net|bestcamsxxx.com|bestrepack.net|bigtorrent.org|bookitut.ru|demotivators.to|drochunov.net|eroox.ru|exoticvideo.net|filmasik.net|filmomax.com|fotooplata.ru|free-torrents.org|freebie.net.ua|freepublish.ru|gidporno.com|girlstop.info|guide-box.ru|hentaiz.org|huyandex.com|i-pic.ru|iarex.ru|imgmoney.ru|kino-zal.kz|kinohost.nov.ru|kinoonlain.org|kritka.net|leporno.org|leporno.ws|mega-track.org|mnogohlama.ru|moresofta.com|ontracker.ru|palevo.com|pic4you.ru|pic5you.ru|pics-money.ru|politland.ru|porn-news.org|porno-gid.info|porno-torrent.biz|porno-torrents.ru|pornoboss.tv|pornoero.com|pornogovno.ru|pornomage.net|pornorip.biz|pornorun.com|pornovizion.com|prisnilos.su|privsex.ru|promotevid.ru|raketa-tv.com|rosporn.com|ru-admin.net|seasonvar.ru|seti-ceti.ru|sibiryak-soft.org|suero.tv|tedkino.com|tyt-kinofilm.ru|uploadimagex.com|uptube.su|uvideos.ru|v-chulkahh.ru|video-magnet.com|vodkov.net|vodvore.net|vserisunki.ru|vzale.tv|wifilm.ru|x-zona.org|xxlbunny.com|xxx-russian.ru|xyu.tv (advblock.txt: 3349) +# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|downhhh.com|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina.txt: 1067) #ab2p-block-elem-R29 {+client-header-tagger{ab2p-block-elem-R29} \ } -# |http://*/adblock$domain=26766.com (easylistchina+easylist.txt: 1261) -/(.*/)?adblock +# ||wal8.com^$domain=52jifenbao.net (easylistchina.txt: 4974) +.wal8.com +# ||qiniudn.com^$domain=52jifenbao.net (easylistchina.txt: 4283) +.qiniudn.com #ab2p-block-elem-R30 {+client-header-tagger{ab2p-block-elem-R30} \ } -# /the_top$domain=28188.com|28188.net (easylistchina+easylist.txt: 1221) -/(.*/)?the_top -# /banner.js$domain=28188.com|28188.net (easylistchina+easylist.txt: 1131) -/(.*/)?banner\.js -banner.js*. +# ||tietuku.com^$domain=5ydj.com|99ee1.com|99re5.com|99rr6.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina.txt: 4793) +.tietuku.com #ab2p-block-elem-R31 {+client-header-tagger{ab2p-block-elem-R31} \ } -# |http:$subdocument,third-party,domain=2ad.in|ad2links.com|adf.ly|adfoc.us|adv.li|adyou.me|allmyvideos.net|ay.gy|fuestfka.com|imgmega.com|j.gs|linkbucksmedia.com|mortastica.com|prodsetter-in.com|q.gs|sh.st|shr77.com|sonomerit.com|ssovgoxbvppy.net|thevideo.me|twer.info|u.bb|vidspot.net (easylistchina+easylist.txt: 41919) -# |http:$subdocument,third-party,domain=2ad.in|ad2links.com|adf.ly|adfoc.us|adv.li|adyou.me|allmyvideos.net|ay.gy|fuestfka.com|imgmega.com|j.gs|linkbucksmedia.com|mortastica.com|prodsetter-in.com|q.gs|sh.st|shr77.com|sonomerit.com|ssovgoxbvppy.net|thevideo.me|twer.info|u.bb|vidspot.net (easylist.txt: 31434) +# ||media.*.gif$domain=6668.se (easylistchina.txt: 3913) +.media.*./.*\.gif +.media.*.gif*. #ab2p-block-elem-R32 {+client-header-tagger{ab2p-block-elem-R32} \ } -# |https:$subdocument,third-party,domain=2ad.in|adf.ly|adfoc.us|adjet.biz|adv.li|ay.gy|j.gs|linkbucksmedia.com|q.gs|sh.st|tvbximak.com|u.bb (easylistchina+easylist.txt: 41924) -# |https:$subdocument,third-party,domain=2ad.in|adf.ly|adfoc.us|adjet.biz|adv.li|ay.gy|j.gs|linkbucksmedia.com|q.gs|sh.st|tvbximak.com|u.bb (easylist.txt: 31439) +# /js/top.js$domain=8comic.com|comicvip.com (easylistchina.txt: 1198) +/(.*/)?js/top\.js #ab2p-block-elem-R33 {+client-header-tagger{ab2p-block-elem-R33} \ } -# ||softexter.com^$popup,domain=2drive.net (easylistchina+easylist.txt: 46183) -.softexter.com -# ||softexter.com^$popup,domain=2drive.net (easylist.txt: 35698) -.softexter.com +# ||meimb.com^$domain=94as.com (easylistchina.txt: 3919) +.meimb.com #ab2p-block-elem-R34 {+client-header-tagger{ab2p-block-elem-R34} \ } -# ||xplian.com^$domain=2mm.tv (easylistchina+easylist.txt: 5197) -.xplian.com +# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1278) +/(.*/)?t\.js +# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1277) +/(.*/)?p +# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1201) +/(.*/)?jsc/stat\.js +# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1200) +/(.*/)?jsc/Copy\.js +# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1199) +/(.*/)?jsc/book_ #ab2p-block-elem-R35 {+client-header-tagger{ab2p-block-elem-R35} \ } -# ||href.li^$popup,domain=300mblink.com (easylistchina+easylist.txt: 46153) -.href.li -# ||href.li^$popup,domain=300mblink.com (easylist.txt: 35668) -.href.li +# ||chuantu.biz^$domain=99ee1.com|99re5.com|99rr6.com (easylistchina.txt: 2461) +.chuantu.biz #ab2p-block-elem-R36 {+client-header-tagger{ab2p-block-elem-R36} \ } -# ||qpic.cn^$domain=360-bo.com|54xr.com|pptiyu.com|xrba.net (easylistchina+easylist.txt: 4328) -.qpic.cn +# |http:$image,third-party,domain=99files.net (easylistchina.txt: 1268) #ab2p-block-elem-R37 {+client-header-tagger{ab2p-block-elem-R37} \ } -# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina+easylist.txt: 4576) -.sinaimg.cn/large/ +# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina.txt: 1104) +.taobao.com #ab2p-block-elem-R38 {+client-header-tagger{ab2p-block-elem-R38} \ } -# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina+easylist.txt: 1112) -/(.*/)?ad2014\.js -ad2014.js*. +# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina.txt: 4572) +.sinaimg.cn/large/ec76730dgw #ab2p-block-elem-R39 {+client-header-tagger{ab2p-block-elem-R39} \ } -# /smw.js$script,domain=3dnews.ru (advblock.txt: 5396) -/(.*/)?smw\.js -smw.js*. +# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina.txt: 1281) +t.cn #ab2p-block-elem-R40 {+client-header-tagger{ab2p-block-elem-R40} \ } -# ||doubleclick.net^$third-party,domain=3news.co.nz|92q.com|abc-7.com|addictinggames.com|allbusiness.com|bizjournals.com|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boomphilly.com|break.com|cbc.ca|cbs19.tv|cbs3springfield.com|cbslocal.com|complex.com|dailymail.co.uk|darkhorizons.com|doubleviking.com|euronews.com|extratv.com|fandango.com|fox19.com|fox5vegas.com|gorillanation.com|hawaiinewsnow.com|hellobeautiful.com|hiphopnc.com|hot1041stl.com|hothiphopdetroit.com|hotspotatl.com|hulu.com|imdb.com|indiatimes.com|indyhiphop.com|ipowerrichmond.com|joblo.com|kcra.com|kctv5.com|ketv.com|koat.com|koco.com|kolotv.com|kpho.com|kptv.com|ksat.com|ksbw.com|ksfy.com|ksl.com|kypost.com|kysdc.com|live5news.com|livestation.com|livestream.com|metro.us|metronews.ca|miamiherald.com|my9nj.com|myboom1029.com|mycolumbuspower.com|nbcrightnow.com|neatorama.com|necn.com|neopets.com|news.com.au|news4jax.com|newsone.com|nintendoeverything.com|oldschoolcincy.com|pagesuite-professional.co.uk|pandora.com|play.it|player.theplatform.com|radio.com|radionowindy.com|rottentomatoes.com|sbsun.com|shacknews.com|sk-gaming.com|ted.com|thebeatdfw.com|theboxhouston.com|theglobeandmail.com|timesnow.tv|tv2.no|twitch.tv|ustream.tv|wapt.com|washingtonpost.com|wate.com|wbaltv.com|wcvb.com|wdrb.com|wdsu.com|wflx.com|wfmz.com|wfsb.com|wgal.com|whdh.com|wired.com|wisn.com|wiznation.com|wlky.com|wlns.com|wlwt.com|wmur.com|wnem.com|wowt.com|wral.com|wsj.com|wsmv.com|wsvn.com|wtae.com|wthr.com|wxii12.com|wyff4.com|yahoo.com|youtube-nocookie.com|youtube.com|zhiphopcleveland.com (easylistchina+easylist.txt: 36068) -.doubleclick.net -# ||doubleclick.net^$third-party,domain=3news.co.nz|92q.com|abc-7.com|addictinggames.com|allbusiness.com|bizjournals.com|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boomphilly.com|break.com|cbc.ca|cbs19.tv|cbs3springfield.com|cbslocal.com|complex.com|dailymail.co.uk|darkhorizons.com|doubleviking.com|euronews.com|extratv.com|fandango.com|fox19.com|fox5vegas.com|gorillanation.com|hawaiinewsnow.com|hellobeautiful.com|hiphopnc.com|hot1041stl.com|hothiphopdetroit.com|hotspotatl.com|hulu.com|imdb.com|indiatimes.com|indyhiphop.com|ipowerrichmond.com|joblo.com|kcra.com|kctv5.com|ketv.com|koat.com|koco.com|kolotv.com|kpho.com|kptv.com|ksat.com|ksbw.com|ksfy.com|ksl.com|kypost.com|kysdc.com|live5news.com|livestation.com|livestream.com|metro.us|metronews.ca|miamiherald.com|my9nj.com|myboom1029.com|mycolumbuspower.com|nbcrightnow.com|neatorama.com|necn.com|neopets.com|news.com.au|news4jax.com|newsone.com|nintendoeverything.com|oldschoolcincy.com|pagesuite-professional.co.uk|pandora.com|play.it|player.theplatform.com|radio.com|radionowindy.com|rottentomatoes.com|sbsun.com|shacknews.com|sk-gaming.com|ted.com|thebeatdfw.com|theboxhouston.com|theglobeandmail.com|timesnow.tv|tv2.no|twitch.tv|ustream.tv|wapt.com|washingtonpost.com|wate.com|wbaltv.com|wcvb.com|wdrb.com|wdsu.com|wflx.com|wfmz.com|wfsb.com|wgal.com|whdh.com|wired.com|wisn.com|wiznation.com|wlky.com|wlns.com|wlwt.com|wmur.com|wnem.com|wowt.com|wral.com|wsj.com|wsmv.com|wsvn.com|wtae.com|wthr.com|wxii12.com|wyff4.com|yahoo.com|youtube-nocookie.com|youtube.com|zhiphopcleveland.com (easylist.txt: 25583) -.doubleclick.net +# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina.txt: 1061) +/(.*/)?\? #ab2p-block-elem-R41 {+client-header-tagger{ab2p-block-elem-R41} \ } -# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina+easylist.txt: 1197) -/(.*/)?mydisplay\.php\?i= +# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1124) +/(.*/)?2015new\.js +2015new.js*. #ab2p-block-elem-R42 {+client-header-tagger{ab2p-block-elem-R42} \ } -# /xiaoshuo.js$domain=45zw.com (easylistchina+easylist.txt: 1238) -/(.*/)?xiaoshuo\.js -xiaoshuo.js*. +# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1273) +/(.*/)?83/ #ab2p-block-elem-R43 {+client-header-tagger{ab2p-block-elem-R43} \ } -# ||schenkelklopfer.org^$popup,domain=4fuckr.com (easylistchina+easylist.txt: 46180) -.schenkelklopfer.org -# ||jokertraffic.com^$popup,domain=4fuckr.com (easylistchina+easylist.txt: 46160) -.jokertraffic.com -# ||schenkelklopfer.org^$domain=4fuckr.com (easylistchina+easylist.txt: 44676) -.schenkelklopfer.org -# ||jokertraffic.com^$domain=4fuckr.com (easylistchina+easylist.txt: 43610) -.jokertraffic.com -# ||schenkelklopfer.org^$popup,domain=4fuckr.com (easylist.txt: 35695) -.schenkelklopfer.org -# ||jokertraffic.com^$popup,domain=4fuckr.com (easylist.txt: 35675) -.jokertraffic.com -# ||schenkelklopfer.org^$domain=4fuckr.com (easylist.txt: 34191) -.schenkelklopfer.org -# ||jokertraffic.com^$domain=4fuckr.com (easylist.txt: 33125) -.jokertraffic.com +# ||bp.blogspot.com^$domain=avmimi.com (easylistchina.txt: 2297) +.bp.blogspot.com #ab2p-block-elem-R44 {+client-header-tagger{ab2p-block-elem-R44} \ } -# ||youtube.com/embed/$domain=4put.ru (advblock.txt: 6621) -.youtube.com/embed/ +# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina.txt: 4740) +.taobaocdn.com/imgextra/ #ab2p-block-elem-R45 {+client-header-tagger{ab2p-block-elem-R45} \ } -# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1162) -/(.*/)?images/888\.gif -# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1160) -/(.*/)?images/.*gamble -# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1152) -/(.*/)?gennie_b\.htm +# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina.txt: 4912) +.upload.chinaz.com/20.*\.gif #ab2p-block-elem-R46 {+client-header-tagger{ab2p-block-elem-R46} \ } -# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1175) -/(.*/)?ipower\.htm -ipower.htm*. +# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina.txt: 3428) +.img.china.alibaba.com/img/ibank/ #ab2p-block-elem-R47 {+client-header-tagger{ab2p-block-elem-R47} \ } -# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina+easylist.txt: 1179) -/(.*/)?js/gTool\.js +# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina.txt: 1174) +/(.*/)?house/images/.* #ab2p-block-elem-R48 {+client-header-tagger{ab2p-block-elem-R48} \ } -# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina+easylist.txt: 1044) +# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina.txt: 1280) +rc.sz.zj.cn/.*\.swf #ab2p-block-elem-R49 {+client-header-tagger{ab2p-block-elem-R49} \ } -# ||wal8.com^$domain=52jifenbao.net (easylistchina+easylist.txt: 4997) -.wal8.com -# ||qiniudn.com^$domain=52jifenbao.net (easylistchina+easylist.txt: 4291) -.qiniudn.com +# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina.txt: 3954) +.momoshop.com.tw/league/ #ab2p-block-elem-R50 {+client-header-tagger{ab2p-block-elem-R50} \ } -# ||tietuku.com^$domain=5ydj.com|99re.city|99re.net|99re6.com|99re8.com|99rehomes.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina+easylist.txt: 4816) -.tietuku.com +# ||acg.tv^$object,domain=bilibili.com (easylistchina.txt: 1979) +.acg.tv #ab2p-block-elem-R51 {+client-header-tagger{ab2p-block-elem-R51} \ } -# ||netdna-cdn.com^*-Background-1280x10241.$domain=7daysindubai.com (easylistchina+easylist.txt: 40678) -.netdna-cdn.com/.*-Background-1280x10241\. -# ||netdna-cdn.com/wp-content/plugins/background-manager/$domain=7daysindubai.com (easylistchina+easylist.txt: 40676) -.netdna-cdn.com/wp-content/plugins/background-manager/ -# ||netdna-cdn.com^*-Background-1280x10241.$domain=7daysindubai.com (easylist.txt: 30193) -.netdna-cdn.com/.*-Background-1280x10241\. -# ||netdna-cdn.com/wp-content/plugins/background-manager/$domain=7daysindubai.com (easylist.txt: 30191) -.netdna-cdn.com/wp-content/plugins/background-manager/ +# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina.txt: 3149) +.hdslb.com/u_user/ #ab2p-block-elem-R52 {+client-header-tagger{ab2p-block-elem-R52} \ } -# /float.js$domain=8888eee.com|xav4.com|xav5.com|xav6.com|xav7.com|xav8.com|xav9.com|xiaav.cc|xiaav.me (easylistchina+easylist.txt: 1146) -/(.*/)?float\.js -float.js*. -# /attachment/Mon_$domain=8888eee.com|xav4.com|xav5.com|xav6.com|xav7.com|xav8.com|xav9.com|xiaav.cc|xiaav.me (easylistchina+easylist.txt: 1128) -/(.*/)?attachment/Mon_ +# /images/tuangou$domain=bjxxw.com (easylistchina.txt: 1185) +/(.*/)?images/tuangou #ab2p-block-elem-R53 {+client-header-tagger{ab2p-block-elem-R53} \ } -# /js/top.js$domain=8comic.com|comicvip.com (easylistchina+easylist.txt: 1182) -/(.*/)?js/top\.js +# ||85rere.com^$popup,domain=btbbt.cc (easylistchina.txt: 1071) +.85rere.com #ab2p-block-elem-R54 {+client-header-tagger{ab2p-block-elem-R54} \ } -# /js/alls_$domain=911-sss.com|911semm.com|911semm.info|911seqq.info|913sss.com|kuaisou222.com|ylgbt.info|ylgxxbt.com (easylistchina+easylist.txt: 1178) -/(.*/)?js/alls_ +# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina.txt: 1234) +/(.*/)?tb780x90\.gif +tb780x90.gif*. #ab2p-block-elem-R55 {+client-header-tagger{ab2p-block-elem-R55} \ } -# ||meimb.com^$domain=94as.com (easylistchina+easylist.txt: 3928) -.meimb.com +# /d125.260.gif$domain=btup.net (easylistchina.txt: 1161) +/(.*/)?d125\.260\.gif +d125.260.gif*. #ab2p-block-elem-R56 {+client-header-tagger{ab2p-block-elem-R56} \ } -# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1264) -/(.*/)?t\.js -# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1263) -/(.*/)?p -# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1185) -/(.*/)?jsc/stat\.js -# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1184) -/(.*/)?jsc/Copy\.js -# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1183) -/(.*/)?jsc/book_ +# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina.txt: 1168) +/(.*/)?gamepic/.* #ab2p-block-elem-R57 {+client-header-tagger{ab2p-block-elem-R57} \ } -# |http:$image,third-party,domain=99files.net (easylistchina+easylist.txt: 1254) +# ||duapp.com^$domain=ccav1.com (easylistchina.txt: 2726) +.duapp.com #ab2p-block-elem-R58 {+client-header-tagger{ab2p-block-elem-R58} \ } -# ||tumblr.com^$domain=99re.co|99re.org (easylistchina+easylist.txt: 4878) -.tumblr.com +# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina.txt: 1270) #ab2p-block-elem-R59 {+client-header-tagger{ab2p-block-elem-R59} \ } -# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina+easylist.txt: 1079) -.taobao.com +# |http://*/bn/$domain=chimatong.com (easylistchina.txt: 1276) +/(.*/)?bn/ #ab2p-block-elem-R60 {+client-header-tagger{ab2p-block-elem-R60} \ } -# /somebody-$image,domain=aallenbwest.com|activistpost.com|addictinginfo.org|alfonzorachel.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45938) -/(.*/)?somebody- -somebody-*. -# /somebody-$image,domain=aallenbwest.com|activistpost.com|addictinginfo.org|alfonzorachel.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35453) -/(.*/)?somebody- -somebody-*. +# /sda/*$domain=chineseinla.com (easylistchina.txt: 1225) +/(.*/)?sda/.* +# /images/content/1436/*$domain=chineseinla.com (easylistchina.txt: 1183) +/(.*/)?images/content/1436/.* #ab2p-block-elem-R61 {+client-header-tagger{ab2p-block-elem-R61} \ } -# ||edgedatg.com^*/AdCountdownPlugin.swf$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 42852) -.edgedatg.com/.*/AdCountdownPlugin\.swf -# ||abc.com/abcvideo/*/mp4/*_Promo_$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 42014) -.abc.com/abcvideo/.*/mp4/.*_Promo_ -# ||edgedatg.com^*/AdCountdownPlugin.swf$object-subrequest,domain=abc.go.com (easylist.txt: 32367) -.edgedatg.com/.*/AdCountdownPlugin\.swf -# ||abc.com/abcvideo/*/mp4/*_Promo_$object-subrequest,domain=abc.go.com (easylist.txt: 31529) -.abc.com/abcvideo/.*/mp4/.*_Promo_ +# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina.txt: 5276) +.youtube.com/embed/.*&autoplay=1& #ab2p-block-elem-R62 {+client-header-tagger{ab2p-block-elem-R62} \ } -# ||doubleclick.net/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easylistchina+easylist.txt: 35999) -.doubleclick.net/crossdomain\.xml -# ||doubleclick.net/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easylist.txt: 25514) -.doubleclick.net/crossdomain\.xml +# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina.txt: 4743) +.taobaocdn.com #ab2p-block-elem-R63 {+client-header-tagger{ab2p-block-elem-R63} \ } -# ||rackcdn.com/*Rails_$domain=accesshollywood.com (easylistchina+easylist.txt: 44520) -.rackcdn.com/.*Rails_ -# ||rackcdn.com/*Rails_$domain=accesshollywood.com (easylist.txt: 34035) -.rackcdn.com/.*Rails_ +# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina.txt: 4864) +.tw.partner.buy.yahoo.com #ab2p-block-elem-R64 {+client-header-tagger{ab2p-block-elem-R64} \ } -# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina+easylist.txt: 4592) -.sinaimg.cn/large/ec76730dgw +# /assets/images/banner$domain=cpbl.com.tw (easylistchina.txt: 1144) +/(.*/)?assets/images/banner #ab2p-block-elem-R65 {+client-header-tagger{ab2p-block-elem-R65} \ } -# ||googleusercontent.com^*/s468/$domain=activistpost.com (easylistchina+easylist.txt: 43256) -.googleusercontent.com/.*/s468/ -# ||googleusercontent.com^*/s220/$domain=activistpost.com (easylistchina+easylist.txt: 43255) -.googleusercontent.com/.*/s220/ -# ||googleusercontent.com^*/s468/$domain=activistpost.com (easylist.txt: 32771) -.googleusercontent.com/.*/s468/ -# ||googleusercontent.com^*/s220/$domain=activistpost.com (easylist.txt: 32770) -.googleusercontent.com/.*/s220/ +# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina.txt: 1155) +/(.*/)?biz_icon/.* #ab2p-block-elem-R66 {+client-header-tagger{ab2p-block-elem-R66} \ } -# |https://$script,third-party,domain=activistpost.com|addictinginfo.org|ailyheadlines.net|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46063) -# |https://$script,third-party,domain=activistpost.com|addictinginfo.org|ailyheadlines.net|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35578) +# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina.txt: 4366) +.rakuten-static.com +# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina.txt: 4184) +.pic.pimg.tw/cwyuni/.*\.gif\?v= #ab2p-block-elem-R67 {+client-header-tagger{ab2p-block-elem-R67} \ } -# |http://$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46061) -# |http://$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35576) +# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina.txt: 4577) +.sinaimg.cn/mw1024/6283e.*\.jpg +# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina.txt: 4001) +.mygeek.cn/pic_ #ab2p-block-elem-R68 {+client-header-tagger{ab2p-block-elem-R68} \ } -# /mobius-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45936) -/(.*/)?mobius- -mobius-*. -# /bismuth/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45932) -/(.*/)?bismuth/.* -# /mobius-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35451) -/(.*/)?mobius- -mobius-*. -# /bismuth/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35447) -/(.*/)?bismuth/.* +# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina.txt: 1285) +.005.tv/data/attachment/forum/.*\.gif #ab2p-block-elem-R69 {+client-header-tagger{ab2p-block-elem-R69} \ } -# /rubidium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45937) -/(.*/)?rubidium/.* -# /hallon-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45935) -/(.*/)?hallon- -hallon-*. -# /farrel*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45934) -/(.*/)?farrel.*\. -farrel*./.*\. -farrel*.*. -# /caesium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45933) -/(.*/)?caesium/.* -# /authenv*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45931) -/(.*/)?authenv.*\. -authenv*./.*\. -authenv*.*. -# /astatine/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45930) -/(.*/)?astatine/.* -# /rubidium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35452) -/(.*/)?rubidium/.* -# /hallon-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35450) -/(.*/)?hallon- -hallon-*. -# /farrel*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35449) -/(.*/)?farrel.*\. -farrel*./.*\. -farrel*.*. -# /caesium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35448) -/(.*/)?caesium/.* -# /authenv*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35446) -/(.*/)?authenv.*\. -authenv*./.*\. -authenv*.*. -# /astatine/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35445) -/(.*/)?astatine/.* +# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina.txt: 1141) +/(.*/)?aeiou/.* #ab2p-block-elem-R70 {+client-header-tagger{ab2p-block-elem-R70} \ } -# |https://$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativeintel.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|sportsmole.co.uk|stevedeace.com|techtimes.com|unilad.co.uk|weaponsmedia.com (easylistchina+easylist.txt: 46062) -# |https://$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativeintel.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|sportsmole.co.uk|stevedeace.com|techtimes.com|unilad.co.uk|weaponsmedia.com (easylist.txt: 35577) +# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina.txt: 1250) +/(.*/)?wxhfm\.html +wxhfm.html*. +# /wxh.js$domain=dm5.com|dm5.hk (easylistchina.txt: 1249) +/(.*/)?wxh\.js +wxh.js*. #ab2p-block-elem-R71 {+client-header-tagger{ab2p-block-elem-R71} \ } -# ||bit.ly^$subdocument,domain=adf.ly (easylistchina+easylist.txt: 39854) -.bit.ly -# ||adf.ly/?$subdocument,~third-party,domain=adf.ly (easylistchina+easylist.txt: 39669) -.adf.ly/\? -# ||bit.ly^$subdocument,domain=adf.ly (easylist.txt: 29369) -.bit.ly -# ||adf.ly/?$subdocument,~third-party,domain=adf.ly (easylist.txt: 29184) -.adf.ly/\? +# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina.txt: 4742) +.taobaocdn.com #ab2p-block-elem-R72 {+client-header-tagger{ab2p-block-elem-R72} \ } -# /3market.php?$domain=adf.ly|j.gs|q.gs|u.bb (easylistchina+easylist.txt: 41903) -/(.*/)?3market\.php\? -# /3market.php?$domain=adf.ly|j.gs|q.gs|u.bb (easylist.txt: 31418) -/(.*/)?3market\.php\? +# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina.txt: 1152) +/(.*/)?banner/.* #ab2p-block-elem-R73 {+client-header-tagger{ab2p-block-elem-R73} \ } -# /market.php?$domain=adf.ly|u.bb (easylistchina+easylist.txt: 41912) -/(.*/)?market\.php\? -# /market.php?$domain=adf.ly|u.bb (easylist.txt: 31427) -/(.*/)?market\.php\? +# ||1.baidu.com^$popup,domain=douban.com (easylistchina.txt: 1069) +.1.baidu.com #ab2p-block-elem-R74 {+client-header-tagger{ab2p-block-elem-R74} \ } -# ||newsgate.pw^$popup,domain=adjet.biz (easylistchina+easylist.txt: 46169) -.newsgate.pw -# ||newsgate.pw^$popup,domain=adjet.biz (easylist.txt: 35684) -.newsgate.pw +# /static/media/curl.swf$domain=duba.com (easylistchina.txt: 1231) +/(.*/)?static/media/curl\.swf #ab2p-block-elem-R75 {+client-header-tagger{ab2p-block-elem-R75} \ } -# ||rmbn.net^$third-party,domain=adultmult.tv (advblock.txt: 6650) -.rmbn.net -# ||com^$script,domain=adultmult.tv (advblock.txt: 6645) -# ||adultmult.tv^$object,stylesheet,domain=adultmult.tv (advblock.txt: 6643) -.adultmult.tv +# |http:$domain=e.70e.com|e701.net (easylistchina.txt: 1267) #ab2p-block-elem-R76 {+client-header-tagger{ab2p-block-elem-R76} \ } -# ||dumedia.ru^$domain=adultmult.tv|moonwalk.cc (advblock.txt: 6646) -.dumedia.ru -# ||am15.net^$third-party,domain=adultmult.tv|moonwalk.cc (advblock.txt: 6644) -.am15.net +# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina.txt: 1164) +/(.*/)?EZ-YAHOO/.* #ab2p-block-elem-R77 {+client-header-tagger{ab2p-block-elem-R77} \ } -# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina+easylist.txt: 1267) -t.cn +# /pagead/*$domain=fankudo.com (easylistchina.txt: 1221) +/(.*/)?pagead/.* #ab2p-block-elem-R78 {+client-header-tagger{ab2p-block-elem-R78} \ } -# /http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+/$script,third-party,domain=affluentinvestor.com|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|allthumbsgaming.com|barbwire.com|bighealthreport.com|bulletsfirst.net|cheatsheet.com|clashdaily.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|creationrevolution.com|dailysurge.com|dccrimestories.com|drginaloudon.com|drhotze.com|eaglerising.com|freedomoutpost.com|godfatherpolitics.com|instigatornews.com|joeforamerica.com|libertyalliance.com|libertymafia.com|libertyunyielding.com|mediafire.com|menrec.com|nickadamsinamerica.com|patriot.tv|patriotoutdoornews.com|photobucket.com|pitgrit.com|politicaloutcast.com|primewire.ag|promptfile.com|quinhillyer.com|shark-tank.com|stevedeace.com|themattwalshblog.com|therealside.com|tinypic.com|victoriajackson.com|zionica.com (easylistchina+easylist.txt: 41911) -/(.*/)?http://\[a-zA-Z0-9-\]\+\\\.\[a-z\]\+\\/\..*\[a-zA-Z0-9\]\+/ -/http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+ -# /http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+/$script,third-party,domain=affluentinvestor.com|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|allthumbsgaming.com|barbwire.com|bighealthreport.com|bulletsfirst.net|cheatsheet.com|clashdaily.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|creationrevolution.com|dailysurge.com|dccrimestories.com|drginaloudon.com|drhotze.com|eaglerising.com|freedomoutpost.com|godfatherpolitics.com|instigatornews.com|joeforamerica.com|libertyalliance.com|libertymafia.com|libertyunyielding.com|mediafire.com|menrec.com|nickadamsinamerica.com|patriot.tv|patriotoutdoornews.com|photobucket.com|pitgrit.com|politicaloutcast.com|primewire.ag|promptfile.com|quinhillyer.com|shark-tank.com|stevedeace.com|themattwalshblog.com|therealside.com|tinypic.com|victoriajackson.com|zionica.com (easylist.txt: 31426) -/(.*/)?http://\[a-zA-Z0-9-\]\+\\\.\[a-z\]\+\\/\..*\[a-zA-Z0-9\]\+/ -/http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+ +# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina.txt: 1160) +/(.*/)?cooperation/.* #ab2p-block-elem-R79 {+client-header-tagger{ab2p-block-elem-R79} \ } -# /images/banners_$domain=agronews.ru|agrotv.ru (advblock.txt: 5388) -/(.*/)?images/banners_ +# ||k.youku.com^$domain=flvcd.com (easylistchina.txt: 3690) +.k.youku.com #ab2p-block-elem-R80 {+client-header-tagger{ab2p-block-elem-R80} \ } -# ||cloudfront.net/ccmtblv2.png$domain=aim.org (easylistchina+easylist.txt: 42549) -.cloudfront.net/ccmtblv2\.png -# ||cloudfront.net/ccmtblv2.png$domain=aim.org (easylist.txt: 32064) -.cloudfront.net/ccmtblv2\.png +# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina.txt: 2474) +.cj.qidian.com/Picture/ #ab2p-block-elem-R81 {+client-header-tagger{ab2p-block-elem-R81} \ } -# ||akiba.ookami-cdn.net/images/subby.jpg$domain=akiba-online.com (easylistchina+easylist.txt: 42111) -.akiba.ookami-cdn.net/images/subby\.jpg -# ||akiba.ookami-cdn.net/images/subby.jpg$domain=akiba-online.com (easylist.txt: 31626) -.akiba.ookami-cdn.net/images/subby\.jpg +# /jquery.$domain=game.macx.cn (easylistchina.txt: 1194) +/(.*/)?jquery\. +jquery.*. #ab2p-block-elem-R82 {+client-header-tagger{ab2p-block-elem-R82} \ } -# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina+easylist.txt: 1038) -/(.*/)?\? +# ||8kele.com^$~collapse,domain=gamer.com.tw (easylistchina.txt: 1887) +.8kele.com +# /web/ad/*$domain=gamer.com.tw (easylistchina.txt: 1243) +/(.*/)?web/ad/.* +# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1169) +/(.*/)?gamer/.* +# /baha/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1150) +/(.*/)?baha/.* #ab2p-block-elem-R83 {+client-header-tagger{ab2p-block-elem-R83} \ } -# |http:$popup,third-party,domain=allmyvideos.net|embed.videoweed.es|extreme-board.com|fastspics.net|filepost.com|filmovizija.com|go4up.com|imagebam.com|imagefruit.com|imageporter.com|imgbox.com|imgmade.com|imgshots.com|imgsin.com|imgspice.com|load.to|mofunzone.com|openload.co|promptfile.com|putlocker.is|thevideo.me|twer.info|vidspot.net|watchcartoononline.com|xtshare.com|youwatch.org (easylistchina+easylist.txt: 46104) -# |http:$popup,third-party,domain=allmyvideos.net|embed.videoweed.es|extreme-board.com|fastspics.net|filepost.com|filmovizija.com|go4up.com|imagebam.com|imagefruit.com|imageporter.com|imgbox.com|imgmade.com|imgshots.com|imgsin.com|imgspice.com|load.to|mofunzone.com|openload.co|promptfile.com|putlocker.is|thevideo.me|twer.info|vidspot.net|watchcartoononline.com|xtshare.com|youwatch.org (easylist.txt: 35619) +# /marketing/cover/*$domain=geekpark.net (easylistchina.txt: 1204) +/(.*/)?marketing/cover/.* #ab2p-block-elem-R84 {+client-header-tagger{ab2p-block-elem-R84} \ } -# .info^$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|royalvids.eu|tvmuse.com|tvmuse.eu|vidspot.net|vidtomp3.com (easylistchina+easylist.txt: 41899) -/.*\.info[^\w%.-] -.*.info -# .info^$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|royalvids.eu|tvmuse.com|tvmuse.eu|vidspot.net|vidtomp3.com (easylist.txt: 31414) -/.*\.info[^\w%.-] -.*.info +# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina.txt: 3475) +.info.lm.tv.sohu.com #ab2p-block-elem-R85 {+client-header-tagger{ab2p-block-elem-R85} \ } -# ^guid=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylistchina+easylist.txt: 41918) -/(.*[^\w%.-])?guid= -# ?random=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylistchina+easylist.txt: 41917) -/.*\?random= -# ^guid=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylist.txt: 31433) -/(.*[^\w%.-])?guid= -# ?random=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylist.txt: 31432) -/.*\?random= +# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina.txt: 4835) +.top.taobao.com/interface_v2\.php\? #ab2p-block-elem-R86 {+client-header-tagger{ab2p-block-elem-R86} \ } -# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina+easylist.txt: 1100) -/(.*/)?2015new\.js -2015new.js*. +# /bao/uploaded/*$domain=hacg.lol (easylistchina.txt: 1154) +/(.*/)?bao/uploaded/.* +# ||taobao.com$popup,domain=hacg.lol (easylistchina.txt: 1103) +.taobao.com*. #ab2p-block-elem-R87 {+client-header-tagger{ab2p-block-elem-R87} \ } -# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina+easylist.txt: 1259) -/(.*/)?83/ +# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina.txt: 1181) +/(.*/)?Images/ak47/.* #ab2p-block-elem-R88 {+client-header-tagger{ab2p-block-elem-R88} \ } -# ||titanbrowser.com^$popup,domain=amaderforum.com (easylistchina+easylist.txt: 46193) -.titanbrowser.com -# ||findgrid.com^$popup,domain=amaderforum.com (easylistchina+easylist.txt: 46131) -.findgrid.com -# ||titanbrowser.com^$popup,domain=amaderforum.com (easylist.txt: 35708) -.titanbrowser.com -# ||findgrid.com^$popup,domain=amaderforum.com (easylist.txt: 35646) -.findgrid.com +# ||51img1.com^$domain=hdscg.com (easylistchina.txt: 1664) +.51img1.com #ab2p-block-elem-R89 {+client-header-tagger{ab2p-block-elem-R89} \ } -# ||goo.gl^$popup,domain=amaderforum.com|jumbofile.net|videomega.tv (easylistchina+easylist.txt: 46146) -.goo.gl -# ||goo.gl^$popup,domain=amaderforum.com|jumbofile.net|videomega.tv (easylist.txt: 35661) -.goo.gl +# ||xldytt.com^$popup,domain=henbt.com (easylistchina.txt: 1107) +.xldytt.com #ab2p-block-elem-R90 {+client-header-tagger{ab2p-block-elem-R90} \ } -# /images/branding/*$domain=amovies.tv|cybergame.tv|dfiles.ru|filmz.ru (advblock.txt: 5390) -/(.*/)?images/branding/.* +# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina.txt: 4431) +.s.yimg.com/ja/ap/ #ab2p-block-elem-R91 {+client-header-tagger{ab2p-block-elem-R91} \ } -# /images/brand/*$domain=amuzic.ru|emuzic.ru|pikabu.ru (advblock.txt: 5389) -/(.*/)?images/brand/.* +# /nfs/ad/*$domain=hkbici.com (easylistchina.txt: 1216) +/(.*/)?nfs/ad/.* +# /attachment/ad/*$domain=hkbici.com (easylistchina.txt: 1147) +/(.*/)?attachment/ad/.* #ab2p-block-elem-R92 {+client-header-tagger{ab2p-block-elem-R92} \ } -# ||spendcrazy.net^$popup,third-party,domain=animegalaxy.net|animenova.tv|animetoon.tv|animewow.eu|gogoanime.com|goodanime.eu|gooddrama.net|toonget.com (easylistchina+easylist.txt: 46185) -.spendcrazy.net -# ||spendcrazy.net^$popup,third-party,domain=animegalaxy.net|animenova.tv|animetoon.tv|animewow.eu|gogoanime.com|goodanime.eu|gooddrama.net|toonget.com (easylist.txt: 35700) -.spendcrazy.net +# ||megalife.com.hk^$domain=hkgolden.com (easylistchina.txt: 3916) +.megalife.com.hk #ab2p-block-elem-R93 {+client-header-tagger{ab2p-block-elem-R93} \ } -# ||adcdn.tv^$domain=anistar.ru (advblock.txt: 5451) -.adcdn.tv +# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk (easylistchina.txt: 1271) #ab2p-block-elem-R94 {+client-header-tagger{ab2p-block-elem-R94} \ } -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 46099) -.youtube.com/yva_video\?adformat= -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com (easylist.txt: 35614) -.youtube.com/yva_video\?adformat= +# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina.txt: 1423) +.163.com/special/ #ab2p-block-elem-R95 {+client-header-tagger{ab2p-block-elem-R95} \ } -# /rotator.js|$domain=antistarforce.com|rustorka.com|rustorka.net (advblock.txt: 5395) -/(.*/)?rotator\.js$ -rotator.js -# .js?rt=$domain=antistarforce.com|rustorka.com|rustorka.net (advblock.txt: 5370) -/.*\.js\?rt= +# ||alicdn.com^*.jpg$domain=htai.me (easylistchina.txt: 2071) +.alicdn.com/.*\.jpg +# ||alicdn.com^*.gif$domain=htai.me (easylistchina.txt: 2070) +.alicdn.com/.*\.gif #ab2p-block-elem-R96 {+client-header-tagger{ab2p-block-elem-R96} \ } -# ||ru/code/$script,domain=aphorisme.ru|kinopod.ru|mp3ray.ru|tusnya.net (advblock.txt: 3255) +# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina.txt: 3527) +.item.taobao.com #ab2p-block-elem-R97 {+client-header-tagger{ab2p-block-elem-R97} \ } -# ||pladform.ru^$domain=api.cybergame.tv (advblock.txt: 6227) -.pladform.ru +# /tres/recommend/*$domain=ifeng.com (easylistchina.txt: 1237) +/(.*/)?tres/recommend/.* #ab2p-block-elem-R98 {+client-header-tagger{ab2p-block-elem-R98} \ } -# ||gpawireservices.com/input/files/*.gif$domain=archerywire.com (easylistchina+easylist.txt: 40365) -.gpawireservices.com/input/files/.*\.gif -# ||gpawireservices.com/input/files/*.gif$domain=archerywire.com (easylist.txt: 29880) -.gpawireservices.com/input/files/.*\.gif +# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina.txt: 1133) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ +/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf +# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina.txt: 1095) +.miaozhen.com #ab2p-block-elem-R99 {+client-header-tagger{ab2p-block-elem-R99} \ } -# /images/partners/*$domain=argumenti.ru|fonarevka.ru|profit-maker.org (advblock.txt: 5391) -/(.*/)?images/partners/.* +# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina.txt: 1134) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ +/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) #ab2p-block-elem-R100 {+client-header-tagger{ab2p-block-elem-R100} \ } -# ||cloudfront.net/hot/ars.dart/$domain=arstechnica.com (easylistchina+easylist.txt: 42550) -.cloudfront.net/hot/ars\.dart/ -# ||cloudfront.net/hot/ars.dart/$domain=arstechnica.com (easylist.txt: 32065) -.cloudfront.net/hot/ars\.dart/ +# ||imgchr.com^$domain=iyejie.com (easylistchina.txt: 3453) +.imgchr.com #ab2p-block-elem-R101 {+client-header-tagger{ab2p-block-elem-R101} \ } -# ||patrickjames.com/images/$domain=askandyaboutclothes.com (easylistchina+easylist.txt: 44318) -.patrickjames.com/images/ -# ||patrickjames.com/images/$domain=askandyaboutclothes.com (easylist.txt: 33833) -.patrickjames.com/images/ +# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina.txt: 4392) +.riju.com/pr/ +# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina.txt: 3630) +.jpunion.com +# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1191) +/(.*/)?img/kana\.jpg +# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1190) +/(.*/)?img/disc\.jpg #ab2p-block-elem-R102 {+client-header-tagger{ab2p-block-elem-R102} \ } -# ||174.143.241.129^$domain=astalavista.com (easylistchina+easylist.txt: 41945) -.174.143.241.129 -# ||174.143.241.129^$domain=astalavista.com (easylist.txt: 31460) -.174.143.241.129 +# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina.txt: 4321) +.qq.com/bqq_qfpic/ #ab2p-block-elem-R103 {+client-header-tagger{ab2p-block-elem-R103} \ } -# ||playlist.yahoo.com/makeplaylist.dll?$domain=au.tv.yahoo.com (easylistchina+easylist.txt: 44393) -.playlist.yahoo.com/makeplaylist\.dll\? -# ||playlist.yahoo.com/makeplaylist.dll?$domain=au.tv.yahoo.com (easylist.txt: 33908) -.playlist.yahoo.com/makeplaylist\.dll\? +# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina.txt: 1132) +/(.*/)?\?age=1& #ab2p-block-elem-R104 {+client-header-tagger{ab2p-block-elem-R104} \ } -# ||ibsrv.net/royalpurple/$domain=audiforums.com (easylistchina+easylist.txt: 43415) -.ibsrv.net/royalpurple/ -# ||ibsrv.net/*forumsponsor$domain=audiforums.com (easylistchina+easylist.txt: 43414) -.ibsrv.net/.*forumsponsor -# ||ibsrv.net/royalpurple/$domain=audiforums.com (easylist.txt: 32930) -.ibsrv.net/royalpurple/ -# ||ibsrv.net/*forumsponsor$domain=audiforums.com (easylist.txt: 32929) -.ibsrv.net/.*forumsponsor +# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina.txt: 1187) +/(.*/)?img/.*\.gif #ab2p-block-elem-R105 {+client-header-tagger{ab2p-block-elem-R105} \ } -# ||augusta.com/sites/*/yca_plugin/yahoo.js$domain=augusta.com (easylistchina+easylist.txt: 42241) -.augusta.com/sites/.*/yca_plugin/yahoo\.js -# ||augusta.com/sites/*/yca_plugin/yahoo.js$domain=augusta.com (easylist.txt: 31756) -.augusta.com/sites/.*/yca_plugin/yahoo\.js +# .fancybox.$domain=life.com.tw (easylistchina.txt: 1117) +/.*\.fancybox\. +.*.fancybox.*. #ab2p-block-elem-R106 {+client-header-tagger{ab2p-block-elem-R106} \ } -# ||videoplaza.com^$object-subrequest,third-party,domain=autoexpress.co.uk|evo.co.uk|givemefootball.com|mensfitness.co.uk|mpora.com|tribalfootball.com (easylistchina+easylist.txt: 37928) -.videoplaza.com -# ||videoplaza.com^$object-subrequest,third-party,domain=autoexpress.co.uk|evo.co.uk|givemefootball.com|mensfitness.co.uk|mpora.com|tribalfootball.com (easylist.txt: 27443) -.videoplaza.com +# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina.txt: 4795) +.tietuku.com/.*\.gif #ab2p-block-elem-R107 {+client-header-tagger{ab2p-block-elem-R107} \ } -# ||avaxnews.net/yb_$subdocument,domain=avaxhm.com (easylistchina+easylist.txt: 42249) -.avaxnews.net/yb_ -# ||avaxnews.net/yb_$subdocument,domain=avaxhm.com (easylist.txt: 31764) -.avaxnews.net/yb_ +# ||gp.jstv.com^$domain=live.jstv.com (easylistchina.txt: 3028) +.gp.jstv.com #ab2p-block-elem-R108 {+client-header-tagger{ab2p-block-elem-R108} \ } -# ||bp.blogspot.com^$domain=avmimi.com (easylistchina+easylist.txt: 2311) -.bp.blogspot.com +# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina.txt: 1162) +/(.*/)?da\.aspx$ +da.aspx #ab2p-block-elem-R109 {+client-header-tagger{ab2p-block-elem-R109} \ } -# ||goo.gl^$subdocument,domain=backin.net|uploadlw.com (easylistchina+easylist.txt: 40352) -.goo.gl -# ||goo.gl^$subdocument,domain=backin.net|uploadlw.com (easylist.txt: 29867) -.goo.gl +# /js/index_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1197) +/(.*/)?js/index_ +# .com/js/l_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1114) +/.*\.com/js/l_ +.*.com/js/l_ #ab2p-block-elem-R110 {+client-header-tagger{ab2p-block-elem-R110} \ } -# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina+easylist.txt: 4759) -.taobaocdn.com/imgextra/ +# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina.txt: 1717) +.55.la/anonymous/banner/ #ab2p-block-elem-R111 {+client-header-tagger{ab2p-block-elem-R111} \ } -# ||site-rips.org^$popup,domain=backupload.net (easylistchina+easylist.txt: 47093) -.site-rips.org -# ||site-rips.org^$popup,domain=backupload.net (easylist.txt: 36608) -.site-rips.org +# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina.txt: 4131) +.pchome.com.tw/iframe/ #ab2p-block-elem-R112 {+client-header-tagger{ab2p-block-elem-R112} \ } -# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina+easylist.txt: 4936) -.upload.chinaz.com/20.*\.gif +# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina.txt: 3591) +.jiaoyou8.com #ab2p-block-elem-R113 {+client-header-tagger{ab2p-block-elem-R113} \ } -# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina+easylist.txt: 3443) -.img.china.alibaba.com/img/ibank/ +# ||picuphost.com^$domain=mmload.info (easylistchina.txt: 4195) +.picuphost.com #ab2p-block-elem-R114 {+client-header-tagger{ab2p-block-elem-R114} \ } -# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina+easylist.txt: 1156) -/(.*/)?house/images/.* +# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina.txt: 3300) +.i.alipayobjects.com/i/ecmng/ #ab2p-block-elem-R115 {+client-header-tagger{ab2p-block-elem-R115} \ } -# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina+easylist.txt: 1266) -rc.sz.zj.cn/.*\.swf +# /js/adBom.js$domain=myqcloud.com (easylistchina.txt: 1195) +/(.*/)?js/adBom\.js #ab2p-block-elem-R116 {+client-header-tagger{ab2p-block-elem-R116} \ } -# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina+easylist.txt: 3967) -.momoshop.com.tw/league/ +# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina.txt: 5067) +.www.china.com.cn/node_ #ab2p-block-elem-R117 {+client-header-tagger{ab2p-block-elem-R117} \ } -# /btcclicksskyscraper.png$domain=best-bitcoin-faucet.eu|best-free-faucet.eu|bitcoin-best-faucet.eu|bitcoin-cloud.eu|bitcoin-faucet.eu|bitcoin-free-faucet.eu|free-bitcoin-faucet.eu|get-bitcoins-free.eu|get-free-bitcoin.eu|win-free-bitcoins.eu (easylistchina+easylist.txt: 41907) -/(.*/)?btcclicksskyscraper\.png -btcclicksskyscraper.png*. -# /btcclicksskyscraper.png$domain=best-bitcoin-faucet.eu|best-free-faucet.eu|bitcoin-best-faucet.eu|bitcoin-cloud.eu|bitcoin-faucet.eu|bitcoin-free-faucet.eu|free-bitcoin-faucet.eu|get-bitcoins-free.eu|get-free-bitcoin.eu|win-free-bitcoins.eu (easylist.txt: 31422) -/(.*/)?btcclicksskyscraper\.png -btcclicksskyscraper.png*. +# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina.txt: 1264) +/.*_iframe\.htm$ #ab2p-block-elem-R118 {+client-header-tagger{ab2p-block-elem-R118} \ } -# ||finegame.org^$popup,domain=bestreams.net (easylistchina+easylist.txt: 46132) -.finegame.org -# ||finegame.org^$popup,domain=bestreams.net (easylist.txt: 35647) -.finegame.org +# .com/tps/$domain=ocucn.com (easylistchina.txt: 1115) +/.*\.com/tps/ +.*.com/tps/ #ab2p-block-elem-R119 {+client-header-tagger{ab2p-block-elem-R119} \ } -# ||caphyon.com/img/press/caphyon/small-logo.png$domain=better-explorer.com (easylistchina+easylist.txt: 42457) -.caphyon.com/img/press/caphyon/small-logo\.png -# ||caphyon.com/img/press/caphyon/small-logo.png$domain=better-explorer.com (easylist.txt: 31972) -.caphyon.com/img/press/caphyon/small-logo\.png +# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina.txt: 1239) +/(.*/)?upload/gad/.* #ab2p-block-elem-R120 {+client-header-tagger{ab2p-block-elem-R120} \ } -# ||acg.tv^$object,domain=bilibili.com (easylistchina+easylist.txt: 1991) -.acg.tv +# ||baidu.com^$domain=pos.baidu.com (easylistchina.txt: 2177) +.baidu.com #ab2p-block-elem-R121 {+client-header-tagger{ab2p-block-elem-R121} \ } -# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina+easylist.txt: 3167) -.hdslb.com/u_user/ +# ||imgbus.com^$domain=qiannao.com|ref.so (easylistchina.txt: 3450) +.imgbus.com #ab2p-block-elem-R122 {+client-header-tagger{ab2p-block-elem-R122} \ } -# /images/tuangou$domain=bjxxw.com (easylistchina+easylist.txt: 1167) -/(.*/)?images/tuangou +# /950-90.gif$domain=qire213.com (easylistchina.txt: 1131) +/(.*/)?950-90\.gif +950-90.gif*. #ab2p-block-elem-R123 {+client-header-tagger{ab2p-block-elem-R123} \ } -# ||apress-barmen.ru^$third-party,domain=blizko.ru (advblock.txt: 5504) -.apress-barmen.ru +# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1253) +/(.*/)?xybgg\.gif +xybgg.gif*. +# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1189) +/(.*/)?img/br650\.gif +# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1188) +/(.*/)?img/br300\.gif #ab2p-block-elem-R124 {+client-header-tagger{ab2p-block-elem-R124} \ } -# ||wordpress.com^*_reskin-$image,domain=bossip.com (easylistchina+easylist.txt: 45636) -.wordpress.com/.*_reskin- -# ||wordpress.com^*_reskin-$image,domain=bossip.com (easylist.txt: 35151) -.wordpress.com/.*_reskin- +# ||howbbs.net^$domain=ref.so (easylistchina.txt: 3245) +.howbbs.net #ab2p-block-elem-R125 {+client-header-tagger{ab2p-block-elem-R125} \ } -# ||snapapp.com^$third-party,domain=bostonmagazine.com (easylistchina+easylist.txt: 40941) -.snapapp.com -# ||snapapp.com^$third-party,domain=bostonmagazine.com (easylist.txt: 30456) -.snapapp.com +# /afp/*$domain=scol.com.cn (easylistchina.txt: 1143) +/(.*/)?afp/.* #ab2p-block-elem-R126 {+client-header-tagger{ab2p-block-elem-R126} \ } -# ||amazonaws.com/digitalcinemanec.swf$domain=boxoffice.com (easylistchina+easylist.txt: 39745) -.amazonaws.com/digitalcinemanec\.swf -# ||amazonaws.com/digitalcinemanec.swf$domain=boxoffice.com (easylist.txt: 29260) -.amazonaws.com/digitalcinemanec\.swf +# /images/20$domain=sex169.info|sex169.org (easylistchina.txt: 1179) +/(.*/)?images/20 #ab2p-block-elem-R127 {+client-header-tagger{ab2p-block-elem-R127} \ } -# ||213.174.140.38^*/msn-*.js$domain=boyfriendtv.com|pornoxo.com (easylistchina+easylist.txt: 46231) -.213.174.140.38/.*/msn-.*\.js -# ||213.174.140.38^*/msn-*.js$domain=boyfriendtv.com|pornoxo.com (easylist.txt: 35746) -.213.174.140.38/.*/msn-.*\.js +# ||iweek.ly^$domain=share.popgo.org (easylistchina.txt: 3556) +.iweek.ly #ab2p-block-elem-R128 {+client-header-tagger{ab2p-block-elem-R128} \ } -# ||dotua.org/player.$image,domain=brb.to|cxz.to|fs.to (advblock.txt: 5659) -.dotua.org/player\. -# ||dotua.org/img.$image,domain=brb.to|cxz.to|fs.to (advblock.txt: 5658) -.dotua.org/img\. +# ||url.cn^$domain=shuajizhijia.com (easylistchina.txt: 4915) +.url.cn #ab2p-block-elem-R129 {+client-header-tagger{ab2p-block-elem-R129} \ } -# ||85rere.com^$popup,domain=btbbt.cc (easylistchina+easylist.txt: 1048) -.85rere.com +# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina.txt: 4794) +.tietuku.com #ab2p-block-elem-R130 {+client-header-tagger{ab2p-block-elem-R130} \ } -# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina+easylist.txt: 1220) -/(.*/)?tb780x90\.gif -tb780x90.gif*. +# /ycpiframe.aspx$domain=strtv.cn (easylistchina.txt: 1254) +/(.*/)?ycpiframe\.aspx +ycpiframe.aspx*. #ab2p-block-elem-R131 {+client-header-tagger{ab2p-block-elem-R131} \ } -# /d125.260.gif$domain=btup.net (easylistchina+easylist.txt: 1141) -/(.*/)?d125\.260\.gif -d125.260.gif*. +# /sungg/*$domain=sun0769.com (easylistchina.txt: 1232) +/(.*/)?sungg/.* #ab2p-block-elem-R132 {+client-header-tagger{ab2p-block-elem-R132} \ } -# ||amazonaws.com/cdn/ipfc/$object,domain=caclubindia.com (easylistchina+easylist.txt: 42139) -.amazonaws.com/cdn/ipfc/ -# ||amazonaws.com/cdn/campaign/$domain=caclubindia.com (easylistchina+easylist.txt: 42138) -.amazonaws.com/cdn/campaign/ -# ||amazonaws.com/cdn/ipfc/$object,domain=caclubindia.com (easylist.txt: 31654) -.amazonaws.com/cdn/ipfc/ -# ||amazonaws.com/cdn/campaign/$domain=caclubindia.com (easylist.txt: 31653) -.amazonaws.com/cdn/campaign/ +# ||junph.cn^$domain=tiexue.net (easylistchina.txt: 3665) +.junph.cn #ab2p-block-elem-R133 {+client-header-tagger{ab2p-block-elem-R133} \ } -# ||imgbus.com^$domain=cao1024.com|qiannao.com|ref.so (easylistchina+easylist.txt: 3465) -.imgbus.com +# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina.txt: 5293) +.yupoo.com/3126961304/ #ab2p-block-elem-R134 {+client-header-tagger{ab2p-block-elem-R134} \ } -# ||cc/banners/$domain=capricornus.cc|moonwalk.cc (advblock.txt: 5579) +# /img/*$image,domain=txzqw.com (easylistchina.txt: 1186) +/(.*/)?img/.* +# /gif/*$image,domain=txzqw.com (easylistchina.txt: 1171) +/(.*/)?gif/.* #ab2p-block-elem-R135 {+client-header-tagger{ab2p-block-elem-R135} \ } -# ||gpm-digital.com^$object-subrequest,domain=carambatv.ru|goodgame.ru (advblock.txt: 5807) -.gpm-digital.com +# /lagou-$domain=uisdc.com (easylistchina.txt: 1203) +/(.*/)?lagou- +lagou-*. #ab2p-block-elem-R136 {+client-header-tagger{ab2p-block-elem-R136} \ } -# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina+easylist.txt: 1150) -/(.*/)?gamepic/.* +# /bannerpic/*$domain=uopera.net (easylistchina.txt: 1153) +/(.*/)?bannerpic/.* #ab2p-block-elem-R137 {+client-header-tagger{ab2p-block-elem-R137} \ } -# ||alidw.net^$domain=cbs.com (easylistchina+easylist.txt: 46075) -.alidw.net -# ||ailde.com^$domain=cbs.com (easylistchina+easylist.txt: 46074) -.ailde.com -# /ailde.$domain=cbs.com (easylistchina+easylist.txt: 46072) -/(.*/)?ailde\. -ailde.*. -# ||doubleclick.net/gampad/ads?*^vpos^$domain=cbs.com (easylistchina+easylist.txt: 42797) -.doubleclick.net/gampad/ads\?.*[^\w%.-]vpos[^\w%.-] -# ||alidw.net^$domain=cbs.com (easylist.txt: 35590) -.alidw.net -# ||ailde.com^$domain=cbs.com (easylist.txt: 35589) -.ailde.com -# /ailde.$domain=cbs.com (easylist.txt: 35587) -/(.*/)?ailde\. -ailde.*. -# ||doubleclick.net/gampad/ads?*^vpos^$domain=cbs.com (easylist.txt: 32312) -.doubleclick.net/gampad/ads\?.*[^\w%.-]vpos[^\w%.-] +# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina.txt: 4465) +.sdo.com #ab2p-block-elem-R138 {+client-header-tagger{ab2p-block-elem-R138} \ } -# ||flv.sales.cbs.com^$object-subrequest,domain=cbs.com|cbsnews.com|twitch.tv (easylistchina+easylist.txt: 43057) -.flv.sales.cbs.com -# ||flv.sales.cbs.com^$object-subrequest,domain=cbs.com|cbsnews.com|twitch.tv (easylist.txt: 32572) -.flv.sales.cbs.com +# /friends/*$image,domain=v2ex.com (easylistchina.txt: 1165) +/(.*/)?friends/.* +# /assets/sidebar/*$domain=v2ex.com (easylistchina.txt: 1145) +/(.*/)?assets/sidebar/.* #ab2p-block-elem-R139 {+client-header-tagger{ab2p-block-elem-R139} \ } -# ||adm.fwmrm.net/crossdomain.xml$domain=cc.com|mtv.com (easylistchina+easylist.txt: 35045) -.adm.fwmrm.net/crossdomain\.xml -# ||adm.fwmrm.net/crossdomain.xml$domain=cc.com|mtv.com (easylist.txt: 24560) -.adm.fwmrm.net/crossdomain\.xml +# ||alicdn.com^$domain=wangyueblog.com|xiadele.com|xm9x.net (easylistchina.txt: 2069) +.alicdn.com #ab2p-block-elem-R140 {+client-header-tagger{ab2p-block-elem-R140} \ } -# ||duapp.com^$domain=ccav1.com (easylistchina+easylist.txt: 2745) -.duapp.com +# ||imgur.com^$domain=wgun.net (easylistchina.txt: 3467) +.imgur.com #ab2p-block-elem-R141 {+client-header-tagger{ab2p-block-elem-R141} \ } -# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina+easylist.txt: 1256) +# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina.txt: 4914) +.uploadhouse.com/.*\.gif #ab2p-block-elem-R142 {+client-header-tagger{ab2p-block-elem-R142} \ } -# ||censor.net.ua^$subdocument,domain=censor.net.ua (advblock.txt: 5582) -.censor.net.ua +# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina.txt: 1246) +/(.*/)?wp-content/uploads/.*vpn +# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina.txt: 1245) +/(.*/)?wp-content/uploads/.*hidemyass +# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina.txt: 1244) +/(.*/)?Webbanner_ +# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina.txt: 1137) +/(.*/)?ad_nydus\.png #ab2p-block-elem-R143 {+client-header-tagger{ab2p-block-elem-R143} \ } -# ||bips.channel4.com^*/backgrounds/$image,domain=channel4.com (easylistchina+easylist.txt: 42336) -.bips.channel4.com/.*/backgrounds/ -# ||bips.channel4.com^*/backgrounds/$image,domain=channel4.com (easylist.txt: 31851) -.bips.channel4.com/.*/backgrounds/ +# /attachment/album/*$domain=www.52hardware.com (easylistchina.txt: 1148) +/(.*/)?attachment/album/.* #ab2p-block-elem-R144 {+client-header-tagger{ab2p-block-elem-R144} \ } -# ||aliimg.com^$domain=chem21.info (advblock.txt: 5462) -.aliimg.com +# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina.txt: 5407) +.zsg.kimi.com.tw +# .html|$domain=www.gamer.com.tw (easylistchina.txt: 1119) +/.*\.html$ +.*.html #ab2p-block-elem-R145 {+client-header-tagger{ab2p-block-elem-R145} \ } -# |http://*/bn/$domain=chimatong.com (easylistchina+easylist.txt: 1262) -/(.*/)?bn/ +# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina.txt: 4065) +.nmgnews.com.cn/swf/0/10/ #ab2p-block-elem-R146 {+client-header-tagger{ab2p-block-elem-R146} \ } -# /sda/*$domain=chineseinla.com (easylistchina+easylist.txt: 1210) -/(.*/)?sda/.* -# /images/content/1436/*$domain=chineseinla.com (easylistchina+easylist.txt: 1165) -/(.*/)?images/content/1436/.* +# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina.txt: 3420) +.img*./.*\.itiexue\.net/2.*\.gif +.img*.itiexue.net/2.*\.gif #ab2p-block-elem-R147 {+client-header-tagger{ab2p-block-elem-R147} \ } -# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina+easylist.txt: 5302) -.youtube.com/embed/.*&autoplay=1& +# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1108) +.xmds.opd2c.com +# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1097) +.moezone.taobao.com +# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1073) +.acgpost.taobao.com +# /item.htm?$popup,domain=www.tsdm.net (easylistchina.txt: 1063) +/(.*/)?item\.htm\? #ab2p-block-elem-R148 {+client-header-tagger{ab2p-block-elem-R148} \ } -# ||cloudfront.net/pop?$domain=clipconverter.cc (easylistchina+easylist.txt: 42551) -.cloudfront.net/pop\? -# ||cloudfront.net/pop?$domain=clipconverter.cc (easylist.txt: 32066) -.cloudfront.net/pop\? +# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina.txt: 5311) +.yytcdn.com/swf/plugins_new\.xml\? #ab2p-block-elem-R149 {+client-header-tagger{ab2p-block-elem-R149} \ } -# ||images-amazon.com^$domain=cloudfront.net (easylistchina+easylist.txt: 40426) -.images-amazon.com -# ||images-amazon.com^$domain=cloudfront.net (easylist.txt: 29941) -.images-amazon.com +# /r/video/*$domain=youxi.baidu.com (easylistchina.txt: 1223) +/(.*/)?r/video/.* #ab2p-block-elem-R150 {+client-header-tagger{ab2p-block-elem-R150} \ } -# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina+easylist.txt: 4762) -.taobaocdn.com +# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina.txt: 3021) +.googleusercontent.com/.*=w800-h352-no #ab2p-block-elem-R151 {+client-header-tagger{ab2p-block-elem-R151} \ } -# ||cnn.com^*/ad_policy.xml$object-subrequest,domain=cnn.com (easylistchina+easylist.txt: 42564) -.cnn.com/.*/ad_policy\.xml -# ||cnn.com^*/ad_policy.xml$object-subrequest,domain=cnn.com (easylist.txt: 32079) -.cnn.com/.*/ad_policy\.xml +# ||srcdd.com^$domain=zasv.com (easylistchina.txt: 4650) +.srcdd.com #ab2p-block-elem-R152 {+client-header-tagger{ab2p-block-elem-R152} \ } -# ||wp.com^*/coedmagazine3/gads/$domain=coedmagazine.com (easylistchina+easylist.txt: 45656) -.wp.com/.*/coedmagazine3/gads/ -# ||wp.com^*/linkwidgets/$domain=coedmagazine.com (easylistchina+easylist.txt: 41198) -.wp.com/.*/linkwidgets/ -# ||wp.com^*/coedmagazine3/gads/$domain=coedmagazine.com (easylist.txt: 35171) -.wp.com/.*/coedmagazine3/gads/ -# ||wp.com^*/linkwidgets/$domain=coedmagazine.com (easylist.txt: 30713) -.wp.com/.*/linkwidgets/ - -#ab2p-block-elem-R153 -{+client-header-tagger{ab2p-block-elem-R153} \ -} -# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina+easylist.txt: 4888) -.tw.partner.buy.yahoo.com - -#ab2p-block-elem-R154 -{+client-header-tagger{ab2p-block-elem-R154} \ -} -# ||yolasite.com/resources/$domain=coolsport.tv (easylistchina+easylist.txt: 45761) -.yolasite.com/resources/ -# ||yolasite.com/resources/$domain=coolsport.tv (easylist.txt: 35276) -.yolasite.com/resources/ - -#ab2p-block-elem-R155 -{+client-header-tagger{ab2p-block-elem-R155} \ -} -# .com/b?z=$domain=couchtuner.eu|zzstream.li (easylistchina+easylist.txt: 41896) -/.*\.com/b\?z= -.*.com/b\?z= -# .com/b?z=$domain=couchtuner.eu|zzstream.li (easylist.txt: 31411) -/.*\.com/b\?z= -.*.com/b\?z= - -#ab2p-block-elem-R156 -{+client-header-tagger{ab2p-block-elem-R156} \ -} -# ||imgur.com/i2iBMaD.gif$domain=cpahero.com (easylistchina+easylist.txt: 43480) -.imgur.com/i2iBMaD\.gif -# ||imgur.com/i2iBMaD.gif$domain=cpahero.com (easylist.txt: 32995) -.imgur.com/i2iBMaD\.gif - -#ab2p-block-elem-R157 -{+client-header-tagger{ab2p-block-elem-R157} \ -} -# /assets/images/banner$domain=cpbl.com.tw (easylistchina+easylist.txt: 1123) -/(.*/)?assets/images/banner - -#ab2p-block-elem-R158 -{+client-header-tagger{ab2p-block-elem-R158} \ -} -# ||goo.gl^$image,domain=cracksfiles.com (easylistchina+easylist.txt: 40351) -.goo.gl -# ||goo.gl^$image,domain=cracksfiles.com (easylist.txt: 29866) -.goo.gl - -#ab2p-block-elem-R159 -{+client-header-tagger{ab2p-block-elem-R159} \ -} -# ||lylebarn.com/crashwidget/$domain=crash.net (easylistchina+easylist.txt: 40561) -.lylebarn.com/crashwidget/ -# ||lylebarn.com/crashwidget/$domain=crash.net (easylist.txt: 30076) -.lylebarn.com/crashwidget/ - -#ab2p-block-elem-R160 -{+client-header-tagger{ab2p-block-elem-R160} \ -} -# /files/!modules/*$domain=crazys.info|ucrazy.ru (advblock.txt: 5382) -/(.*/)?files/!modules/.* - -#ab2p-block-elem-R161 -{+client-header-tagger{ab2p-block-elem-R161} \ -} -# ||amazonaws.com/newscloud-production/*/backgrounds/$domain=crescent-news.com|daily-jeff.com|recordpub.com|state-journal.com|the-daily-record.com|the-review.com|times-gazette.com (easylistchina+easylist.txt: 39749) -.amazonaws.com/newscloud-production/.*/backgrounds/ -# ||amazonaws.com/newscloud-production/*/backgrounds/$domain=crescent-news.com|daily-jeff.com|recordpub.com|state-journal.com|the-daily-record.com|the-review.com|times-gazette.com (easylist.txt: 29264) -.amazonaws.com/newscloud-production/.*/backgrounds/ - -#ab2p-block-elem-R162 -{+client-header-tagger{ab2p-block-elem-R162} \ -} -# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina+easylist.txt: 1135) -/(.*/)?biz_icon/.* - -#ab2p-block-elem-R163 -{+client-header-tagger{ab2p-block-elem-R163} \ -} -# ||akamaihd.net/preroll*.mp4?$domain=csnnw.com (easylistchina+easylist.txt: 39725) -.akamaihd.net/preroll.*\.mp4\? -# ||akamaihd.net/preroll*.mp4?$domain=csnnw.com (easylist.txt: 29240) -.akamaihd.net/preroll.*\.mp4\? - -#ab2p-block-elem-R164 -{+client-header-tagger{ab2p-block-elem-R164} \ -} -# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina+easylist.txt: 4376) -.rakuten-static.com -# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina+easylist.txt: 4194) -.pic.pimg.tw/cwyuni/.*\.gif\?v= - -#ab2p-block-elem-R165 -{+client-header-tagger{ab2p-block-elem-R165} \ -} -# .adriver.$object-subrequest,domain=cybergame.tv|smotri.com (advblock.txt: 5368) -/.*\.adriver\. -.*.adriver.*. - -#ab2p-block-elem-R166 -{+client-header-tagger{ab2p-block-elem-R166} \ -} -# ||mzstatic.com^$image,object-subrequest,domain=dailymotion.com (easylistchina+easylist.txt: 40666) -.mzstatic.com -# ||mzstatic.com^$image,object-subrequest,domain=dailymotion.com (easylist.txt: 30181) -.mzstatic.com - -#ab2p-block-elem-R167 -{+client-header-tagger{ab2p-block-elem-R167} \ -} -# ||phobos.apple.com^$image,domain=dailymotion.com|youtube.com (easylistchina+easylist.txt: 40754) -.phobos.apple.com -# ||phobos.apple.com^$image,domain=dailymotion.com|youtube.com (easylist.txt: 30269) -.phobos.apple.com - -#ab2p-block-elem-R168 -{+client-header-tagger{ab2p-block-elem-R168} \ -} -# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina+easylist.txt: 4597) -.sinaimg.cn/mw1024/6283e.*\.jpg -# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina+easylist.txt: 4013) -.mygeek.cn/pic_ - -#ab2p-block-elem-R169 -{+client-header-tagger{ab2p-block-elem-R169} \ -} -# ||screenshot.ru^$domain=darkmoney.cc (advblock.txt: 6378) -.screenshot.ru - -#ab2p-block-elem-R170 -{+client-header-tagger{ab2p-block-elem-R170} \ -} -# ||bangstage.com^$popup,domain=datacloud.to (easylistchina+easylist.txt: 46113) -.bangstage.com -# ||bangstage.com^$popup,domain=datacloud.to (easylist.txt: 35628) -.bangstage.com - -#ab2p-block-elem-R171 -{+client-header-tagger{ab2p-block-elem-R171} \ -} -# ||googleapis.com/dfh/$image,domain=datafilehost.com (easylistchina+easylist.txt: 43254) -.googleapis.com/dfh/ -# ||googleapis.com/dfh/$image,domain=datafilehost.com (easylist.txt: 32769) -.googleapis.com/dfh/ - -#ab2p-block-elem-R172 -{+client-header-tagger{ab2p-block-elem-R172} \ -} -# ||fuzface.com/dcrtv/ad$domain=dcrtv.com (easylistchina+easylist.txt: 43136) -.fuzface.com/dcrtv/ad -# ||fuzface.com/dcrtv/ad$domain=dcrtv.com (easylist.txt: 32651) -.fuzface.com/dcrtv/ad - -#ab2p-block-elem-R173 -{+client-header-tagger{ab2p-block-elem-R173} \ -} -# ||b117f8da23446a91387efea0e428392a.pl^$domain=ddlvalley.net (easylistchina+easylist.txt: 39800) -.b117f8da23446a91387efea0e428392a.pl -# ||b117f8da23446a91387efea0e428392a.pl^$domain=ddlvalley.net (easylist.txt: 29315) -.b117f8da23446a91387efea0e428392a.pl - -#ab2p-block-elem-R174 -{+client-header-tagger{ab2p-block-elem-R174} \ -} -# /assets/_takeover/*$domain=deadspin.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com (easylistchina+easylist.txt: 41906) -/(.*/)?assets/_takeover/.* -# /assets/_takeover/*$domain=deadspin.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com (easylist.txt: 31421) -/(.*/)?assets/_takeover/.* - -#ab2p-block-elem-R175 -{+client-header-tagger{ab2p-block-elem-R175} \ -} -# ||cloudfront.net^*/shaadi.com/$domain=deccanchronicle.com (easylistchina+easylist.txt: 42552) -.cloudfront.net/.*/shaadi\.com/ -# ||cloudfront.net^*/shaadi.com/$domain=deccanchronicle.com (easylist.txt: 32067) -.cloudfront.net/.*/shaadi\.com/ - -#ab2p-block-elem-R176 -{+client-header-tagger{ab2p-block-elem-R176} \ -} -# ||zmovie.tv^$popup,domain=deditv.com|vidbox.net (easylistchina+easylist.txt: 46219) -.zmovie.tv -# ||zmovie.tv^$popup,domain=deditv.com|vidbox.net (easylist.txt: 35734) -.zmovie.tv - -#ab2p-block-elem-R177 -{+client-header-tagger{ab2p-block-elem-R177} \ -} -# ||objects.tremormedia.com/embed/swf/acudeo.swf$object-subrequest,domain=deluxemusic.tv.staging.ipercast.net (easylistchina+easylist.txt: 44241) -.objects.tremormedia.com/embed/swf/acudeo\.swf -# ||objects.tremormedia.com/embed/swf/acudeo.swf$object-subrequest,domain=deluxemusic.tv.staging.ipercast.net (easylist.txt: 33756) -.objects.tremormedia.com/embed/swf/acudeo\.swf - -#ab2p-block-elem-R178 -{+client-header-tagger{ab2p-block-elem-R178} \ -} -# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina+easylist.txt: 1271) -.005.tv/data/attachment/forum/.*\.gif - -#ab2p-block-elem-R179 -{+client-header-tagger{ab2p-block-elem-R179} \ -} -# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina+easylist.txt: 1120) -/(.*/)?aeiou/.* - -#ab2p-block-elem-R180 -{+client-header-tagger{ab2p-block-elem-R180} \ -} -# ||photobucket.com/albums/cc94/dl4all/temp/enginesong.gif$domain=dl4all.com (easylistchina+easylist.txt: 44357) -.photobucket.com/albums/cc94/dl4all/temp/enginesong\.gif -# ||photobucket.com/albums/cc94/dl4all/temp/enginesong.gif$domain=dl4all.com (easylist.txt: 33872) -.photobucket.com/albums/cc94/dl4all/temp/enginesong\.gif - -#ab2p-block-elem-R181 -{+client-header-tagger{ab2p-block-elem-R181} \ -} -# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina+easylist.txt: 1236) -/(.*/)?wxhfm\.html -wxhfm.html*. -# /wxh.js$domain=dm5.com|dm5.hk (easylistchina+easylist.txt: 1235) -/(.*/)?wxh\.js -wxh.js*. - -#ab2p-block-elem-R182 -{+client-header-tagger{ab2p-block-elem-R182} \ -} -# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina+easylist.txt: 4761) -.taobaocdn.com - -#ab2p-block-elem-R183 -{+client-header-tagger{ab2p-block-elem-R183} \ -} -# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina+easylist.txt: 1132) -/(.*/)?banner/.* - -#ab2p-block-elem-R184 -{+client-header-tagger{ab2p-block-elem-R184} \ -} -# ||1.baidu.com^$popup,domain=douban.com (easylistchina+easylist.txt: 1046) -.1.baidu.com - -#ab2p-block-elem-R185 -{+client-header-tagger{ab2p-block-elem-R185} \ -} -# ||amazonaws.com^$script,domain=dsero.com|ginormousbargains.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com|unfair.co (easylistchina+easylist.txt: 46076) -.amazonaws.com -# ||amazonaws.com^$script,domain=dsero.com|ginormousbargains.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com|unfair.co (easylist.txt: 35591) -.amazonaws.com - -#ab2p-block-elem-R186 -{+client-header-tagger{ab2p-block-elem-R186} \ -} -# ||zapto.org^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46097) -.zapto.org -# ||sytes.net^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46093) -.sytes.net -# ||servequake.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46091) -.servequake.com -# ||servepics.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46090) -.servepics.com -# ||servemp3.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46089) -.servemp3.com -# ||servebeer.com^$domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46088) -.servebeer.com -# ||no-ip.biz^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46086) -.no-ip.biz -# ||zapto.org^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35612) -.zapto.org -# ||sytes.net^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35608) -.sytes.net -# ||servequake.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35606) -.servequake.com -# ||servepics.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35605) -.servepics.com -# ||servemp3.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35604) -.servemp3.com -# ||servebeer.com^$domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35603) -.servebeer.com -# ||no-ip.biz^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35601) -.no-ip.biz - -#ab2p-block-elem-R187 -{+client-header-tagger{ab2p-block-elem-R187} \ -} -# /static/media/curl.swf$domain=duba.com (easylistchina+easylist.txt: 1217) -/(.*/)?static/media/curl\.swf - -#ab2p-block-elem-R188 -{+client-header-tagger{ab2p-block-elem-R188} \ -} -# |http:$domain=e.70e.com|e701.net (easylistchina+easylist.txt: 1253) - -#ab2p-block-elem-R189 -{+client-header-tagger{ab2p-block-elem-R189} \ -} -# //rs.mail.ru/b$domain=e.mail.ru (advblock.txt: 6806) -rs.mail.ru/b - -#ab2p-block-elem-R190 -{+client-header-tagger{ab2p-block-elem-R190} \ -} -# ||adriver.ru/cgi-bin/erle.cgi?$object-subrequest,domain=echo.msk.ru (advblock.txt: 5454) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-block-elem-R191 -{+client-header-tagger{ab2p-block-elem-R191} \ -} -# ||adriver.ru/cgi-bin/click.$popup,domain=edinstvennaya.ua|gazeta.ua (advblock.txt: 113) -.adriver.ru/cgi-bin/click\. - -#ab2p-block-elem-R192 -{+client-header-tagger{ab2p-block-elem-R192} \ -} -# ||rackcdn.com/banner/$domain=enjore.com (easylistchina+easylist.txt: 40819) -.rackcdn.com/banner/ -# ||rackcdn.com/banner/$domain=enjore.com (easylist.txt: 30334) -.rackcdn.com/banner/ - -#ab2p-block-elem-R193 -{+client-header-tagger{ab2p-block-elem-R193} \ -} -# ||amazonaws.com^*MPU%20Banner.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42146) -.amazonaws.com/.*MPU%20Banner\.jpg -# ||amazonaws.com^*-Banner.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42144) -.amazonaws.com/.*-Banner\.jpg -# ||amazonaws.com^*-ad.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42143) -.amazonaws.com/.*-ad\.jpg -# ||amazonaws.com^*MPU%20Banner.jpg$domain=ewn.co.za (easylist.txt: 31661) -.amazonaws.com/.*MPU%20Banner\.jpg -# ||amazonaws.com^*-Banner.jpg$domain=ewn.co.za (easylist.txt: 31659) -.amazonaws.com/.*-Banner\.jpg -# ||amazonaws.com^*-ad.jpg$domain=ewn.co.za (easylist.txt: 31658) -.amazonaws.com/.*-ad\.jpg - -#ab2p-block-elem-R194 -{+client-header-tagger{ab2p-block-elem-R194} \ -} -# ^utm_source=$popup,domain=exashare.com|sex.com|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 46103) -/(.*[^\w%.-])?utm_source= -# ^utm_source=$popup,domain=exashare.com|sex.com|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 35618) -/(.*[^\w%.-])?utm_source= - -#ab2p-block-elem-R195 -{+client-header-tagger{ab2p-block-elem-R195} \ -} -# |https://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylistchina+easylist.txt: 45862) -# |http://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylistchina+easylist.txt: 45861) -# |https://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylist.txt: 35377) -# |http://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylist.txt: 35376) - -#ab2p-block-elem-R196 -{+client-header-tagger{ab2p-block-elem-R196} \ -} -# |http://$image,domain=explosm.net (easylistchina+easylist.txt: 46060) -# |http://$image,domain=explosm.net (easylist.txt: 35575) - -#ab2p-block-elem-R197 -{+client-header-tagger{ab2p-block-elem-R197} \ -} -# |https://$script,third-party,domain=extremetech.com (easylistchina+easylist.txt: 45854) -# |http://$script,third-party,domain=extremetech.com (easylistchina+easylist.txt: 45853) -# .xyz^$domain=extremetech.com (easylistchina+easylist.txt: 41901) -/.*\.xyz[^\w%.-] -.*.xyz -# ||cloudfront.net^$script,domain=extremetech.com (easylistchina+easylist.txt: 39970) -.cloudfront.net -# |https://$script,third-party,domain=extremetech.com (easylist.txt: 35369) -# |http://$script,third-party,domain=extremetech.com (easylist.txt: 35368) -# .xyz^$domain=extremetech.com (easylist.txt: 31416) -/.*\.xyz[^\w%.-] -.*.xyz -# ||cloudfront.net^$script,domain=extremetech.com (easylist.txt: 29485) -.cloudfront.net - -#ab2p-block-elem-R198 -{+client-header-tagger{ab2p-block-elem-R198} \ -} -# ||rackcdn.com^$popup,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47092) -.rackcdn.com -# |http://*?*^id^$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47070) -/.*\?.*[^\w%.-]id[^\w%.-] -# |http://*?*=$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47069) -/.*\?.*= -# ||rackcdn.com^$popup,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36607) -.rackcdn.com -# |http://*?*^id^$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36585) -/.*\?.*[^\w%.-]id[^\w%.-] -# |http://*?*=$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36584) -/.*\?.*= - -#ab2p-block-elem-R199 -{+client-header-tagger{ab2p-block-elem-R199} \ -} -# ||msecnd.net/script/$script,domain=eztv.ag|firedrive.com|limetorrents.cc|monova.org|sankakucomplex.com|sockshare.com|ukpirate.org|unblocked.la|userscloud.com|yourbittorrent.com (easylistchina+easylist.txt: 44041) -.msecnd.net/script/ -# ||msecnd.net/script/$script,domain=eztv.ag|firedrive.com|limetorrents.cc|monova.org|sankakucomplex.com|sockshare.com|ukpirate.org|unblocked.la|userscloud.com|yourbittorrent.com (easylist.txt: 33556) -.msecnd.net/script/ - -#ab2p-block-elem-R200 -{+client-header-tagger{ab2p-block-elem-R200} \ -} -# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina+easylist.txt: 1145) -/(.*/)?EZ-YAHOO/.* - -#ab2p-block-elem-R201 -{+client-header-tagger{ab2p-block-elem-R201} \ -} -# ||onlytrailer.ru/embed/$domain=f-picture.net|filmasik.net|radikal.ru (advblock.txt: 6179) -.onlytrailer.ru/embed/ - -#ab2p-block-elem-R202 -{+client-header-tagger{ab2p-block-elem-R202} \ -} -# ||fbcdn.net^*/flyers/$domain=facebook.com (easylistchina+easylist.txt: 42971) -.fbcdn.net/.*/flyers/ -# ||bing.com/fblogout?$subdocument,domain=facebook.com (easylistchina+easylist.txt: 42334) -.bing.com/fblogout\? -# ||fbcdn.net^*/flyers/$domain=facebook.com (easylist.txt: 32486) -.fbcdn.net/.*/flyers/ -# ||bing.com/fblogout?$subdocument,domain=facebook.com (easylist.txt: 31849) -.bing.com/fblogout\? - -#ab2p-block-elem-R203 -{+client-header-tagger{ab2p-block-elem-R203} \ -} -# /pagead/*$domain=fankudo.com (easylistchina+easylist.txt: 1206) -/(.*/)?pagead/.* - -#ab2p-block-elem-R204 -{+client-header-tagger{ab2p-block-elem-R204} \ -} -# ||mediaspanonline.com^*_Background.$domain=farmingshow.com (easylistchina+easylist.txt: 43924) -.mediaspanonline.com/.*_Background\. -# ||mediaspanonline.com^*_Background.$domain=farmingshow.com (easylist.txt: 33439) -.mediaspanonline.com/.*_Background\. - -#ab2p-block-elem-R205 -{+client-header-tagger{ab2p-block-elem-R205} \ -} -# ||mediaspanonline.com^*_Background_$domain=farmingshow.com|radiosport.co.nz (easylistchina+easylist.txt: 43925) -.mediaspanonline.com/.*_Background_ -# ||mediaspanonline.com^*_Background_$domain=farmingshow.com|radiosport.co.nz (easylist.txt: 33440) -.mediaspanonline.com/.*_Background_ - -#ab2p-block-elem-R206 -{+client-header-tagger{ab2p-block-elem-R206} \ -} -# ||ruralpressevents.com/agquip/logos/$domain=farmonline.com.au (easylistchina+easylist.txt: 40860) -.ruralpressevents.com/agquip/logos/ -# ||ruralpressevents.com/agquip/logos/$domain=farmonline.com.au (easylist.txt: 30375) -.ruralpressevents.com/agquip/logos/ - -#ab2p-block-elem-R207 -{+client-header-tagger{ab2p-block-elem-R207} \ -} -# ||bit.ly^$popup,domain=fastvideo.eu|rapidvideo.org|sh.st (easylistchina+easylist.txt: 46115) -.bit.ly -# ||bit.ly^$popup,domain=fastvideo.eu|rapidvideo.org|sh.st (easylist.txt: 35630) -.bit.ly - -#ab2p-block-elem-R208 -{+client-header-tagger{ab2p-block-elem-R208} \ -} -# ||cityads.ru/click-$popup,domain=fayloobmennik.net|lovekinozal.ru|rusfolder.com|rutor.org (advblock.txt: 130) -.cityads.ru/click- - -#ab2p-block-elem-R209 -{+client-header-tagger{ab2p-block-elem-R209} \ -} -# ||cloudfront.net^*banner$domain=fiaformulae.com (easylistchina+easylist.txt: 39972) -.cloudfront.net/.*banner -# ||cloudfront.net^*ad$domain=fiaformulae.com (easylistchina+easylist.txt: 39971) -.cloudfront.net/.*ad -# ||cloudfront.net^*banner$domain=fiaformulae.com (easylist.txt: 29487) -.cloudfront.net/.*banner -# ||cloudfront.net^*ad$domain=fiaformulae.com (easylist.txt: 29486) -.cloudfront.net/.*ad - -#ab2p-block-elem-R210 -{+client-header-tagger{ab2p-block-elem-R210} \ -} -# ||leaderdownload.com^$popup,domain=fiberupload.net (easylistchina+easylist.txt: 46162) -.leaderdownload.com -# ||leaderdownload.com^$popup,domain=fiberupload.net (easylist.txt: 35677) -.leaderdownload.com - -#ab2p-block-elem-R211 -{+client-header-tagger{ab2p-block-elem-R211} \ -} -# ||74.86.208.249^$domain=fijivillage.com (easylistchina+easylist.txt: 41988) -.74.86.208.249 -# ||74.86.208.249^$domain=fijivillage.com (easylist.txt: 31503) -.74.86.208.249 - -#ab2p-block-elem-R212 -{+client-header-tagger{ab2p-block-elem-R212} \ -} -# ||kalemaro.com^$popup,domain=filatak.com (easylistchina+easylist.txt: 46161) -.kalemaro.com -# ||kalemaro.com^$popup,domain=filatak.com (easylist.txt: 35676) -.kalemaro.com - -#ab2p-block-elem-R213 -{+client-header-tagger{ab2p-block-elem-R213} \ -} -# ||109.236.82.94^$domain=fileforever.net (easylistchina+easylist.txt: 41938) -.109.236.82.94 -# ||109.236.82.94^$domain=fileforever.net (easylist.txt: 31453) -.109.236.82.94 - -#ab2p-block-elem-R214 -{+client-header-tagger{ab2p-block-elem-R214} \ -} -# ||moevideo.net/framevideo/$domain=fileplaneta.com|freezpic.ru|mediapapa.org (advblock.txt: 6076) -.moevideo.net/framevideo/ - -#ab2p-block-elem-R215 -{+client-header-tagger{ab2p-block-elem-R215} \ -} -# ||itunes.apple.com^$popup,domain=fillinn.com (easylistchina+easylist.txt: 41308) -.itunes.apple.com -# ||itunes.apple.com^$popup,domain=fillinn.com (easylist.txt: 30823) -.itunes.apple.com - -#ab2p-block-elem-R216 -{+client-header-tagger{ab2p-block-elem-R216} \ -} -# ||photo4sell.com^$popup,domain=filmovizija.com (easylistchina+easylist.txt: 46174) -.photo4sell.com -# ||217.79.184.79^$domain=filmovizija.com (easylistchina+easylist.txt: 41958) -.217.79.184.79 -# ||photo4sell.com^$popup,domain=filmovizija.com (easylist.txt: 35689) -.photo4sell.com -# ||217.79.184.79^$domain=filmovizija.com (easylist.txt: 31473) -.217.79.184.79 - -#ab2p-block-elem-R217 -{+client-header-tagger{ab2p-block-elem-R217} \ -} -# |https://$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 45882) -# |http://$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 45881) -# |https://$script,third-party,domain=filmovizija.in (easylist.txt: 35397) -# |http://$script,third-party,domain=filmovizija.in (easylist.txt: 35396) - -#ab2p-block-elem-R218 -{+client-header-tagger{ab2p-block-elem-R218} \ -} -# ||ancestrydata.com/widget.html?$domain=findagrave.com (easylistchina+easylist.txt: 39761) -.ancestrydata.com/widget\.html\? -# ||ancestrydata.com/widget.html?$domain=findagrave.com (easylist.txt: 29276) -.ancestrydata.com/widget\.html\? - -#ab2p-block-elem-R219 -{+client-header-tagger{ab2p-block-elem-R219} \ -} -# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina+easylist.txt: 1140) -/(.*/)?cooperation/.* - -#ab2p-block-elem-R220 -{+client-header-tagger{ab2p-block-elem-R220} \ -} -# ||ad.adriver.ru^$domain=firstrownow.eu|kyivpost.com|uatoday.tv|unian.info (easylistchina+easylist.txt: 39624) -.ad.adriver.ru -# ||ad.adriver.ru^$domain=firstrownow.eu|kyivpost.com|uatoday.tv|unian.info (easylist.txt: 29139) -.ad.adriver.ru - -#ab2p-block-elem-R221 -{+client-header-tagger{ab2p-block-elem-R221} \ -} -# |http://li.ru/go?$popup,domain=fishki.net (advblock.txt: 29) -li.ru/go\? - -#ab2p-block-elem-R222 -{+client-header-tagger{ab2p-block-elem-R222} \ -} -# ||vibeo.to^$popup,domain=flashx.tv (easylistchina+easylist.txt: 46204) -.vibeo.to -# ||free-stream.tv^$popup,domain=flashx.tv (easylistchina+easylist.txt: 46138) -.free-stream.tv -# ||vibeo.to^$popup,domain=flashx.tv (easylist.txt: 35719) -.vibeo.to -# ||free-stream.tv^$popup,domain=flashx.tv (easylist.txt: 35653) -.free-stream.tv - -#ab2p-block-elem-R223 -{+client-header-tagger{ab2p-block-elem-R223} \ -} -# ||k.youku.com^$domain=flvcd.com (easylistchina+easylist.txt: 3698) -.k.youku.com - -#ab2p-block-elem-R224 -{+client-header-tagger{ab2p-block-elem-R224} \ -} -# ||m.uploadedit.com^$third-party,domain=flysat.com (easylistchina+easylist.txt: 40563) -.m.uploadedit.com -# ||m.uploadedit.com^$third-party,domain=flysat.com (easylist.txt: 30078) -.m.uploadedit.com - -#ab2p-block-elem-R225 -{+client-header-tagger{ab2p-block-elem-R225} \ -} -# ||rq.adfox.ru^$domain=fontanka.ru (advblock.txt: 6325) -.rq.adfox.ru - -#ab2p-block-elem-R226 -{+client-header-tagger{ab2p-block-elem-R226} \ -} -# /upload/rk/*$domain=footballreview.ru|innov.ru|newkaliningrad.ru|seonews.ru (advblock.txt: 5400) -/(.*/)?upload/rk/.* - -#ab2p-block-elem-R227 -{+client-header-tagger{ab2p-block-elem-R227} \ -} -# ||srvv.co^$domain=foreverceleb.com (easylistchina+easylist.txt: 40961) -.srvv.co -# ||srvv.co^$domain=foreverceleb.com (easylist.txt: 30476) -.srvv.co - -#ab2p-block-elem-R228 -{+client-header-tagger{ab2p-block-elem-R228} \ -} -# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina+easylist.txt: 2486) -.cj.qidian.com/Picture/ - -#ab2p-block-elem-R229 -{+client-header-tagger{ab2p-block-elem-R229} \ -} -# -torrent.*/t/$script,domain=free-torrent.org|free-torrents.org|game-torrent.info (advblock.txt: 5367) -/.*-torrent\..*/t/ -.*-torrent.*./(.*/)?t/ -# -torrent.*/forum/$object,domain=free-torrent.org|free-torrents.org|game-torrent.info (advblock.txt: 5366) -/.*-torrent\..*/forum/ -.*-torrent.*./(.*/)?forum/ - -#ab2p-block-elem-R230 -{+client-header-tagger{ab2p-block-elem-R230} \ -} -# .space^$third-party,domain=free-torrent.org|free-torrents.org|game-torrent.info|jpgstore.ru|pics2pay.ru (advblock.txt: 5373) -/.*\.space[^\w%.-] -.*.space - -#ab2p-block-elem-R231 -{+client-header-tagger{ab2p-block-elem-R231} \ -} -# $third-party,script,domain=free-torrents.org|hentaichan.ru|nude-moon.com (advblock.txt: 5365) - - -#ab2p-block-elem-R232 -{+client-header-tagger{ab2p-block-elem-R232} \ -} -# ||ruorange.org^$popup,domain=freezpic.ru (advblock.txt: 173) -.ruorange.org - -#ab2p-block-elem-R233 -{+client-header-tagger{ab2p-block-elem-R233} \ -} -# ||pik-tv.com/embed/$domain=freshrecords.ru (advblock.txt: 6215) -.pik-tv.com/embed/ - -#ab2p-block-elem-R234 -{+client-header-tagger{ab2p-block-elem-R234} \ -} -# ||casinobonusdeal.com^$subdocument,domain=frombar.com|gledaisport.com|smotrisport.com|sportcategory.com|sportlemon.org|sportlemon.tv (easylistchina+easylist.txt: 39924) -.casinobonusdeal.com -# ||casinobonusdeal.com^$subdocument,domain=frombar.com|gledaisport.com|smotrisport.com|sportcategory.com|sportlemon.org|sportlemon.tv (easylist.txt: 29439) -.casinobonusdeal.com - -#ab2p-block-elem-R235 -{+client-header-tagger{ab2p-block-elem-R235} \ -} -# ||rackcdn.com/brokers/$third-party,domain=fxempire.com|fxempire.de|fxempire.it|fxempire.nl (easylistchina+easylist.txt: 40820) -.rackcdn.com/brokers/ -# ||rackcdn.com/brokers/$third-party,domain=fxempire.com|fxempire.de|fxempire.it|fxempire.nl (easylist.txt: 30335) -.rackcdn.com/brokers/ - -#ab2p-block-elem-R236 -{+client-header-tagger{ab2p-block-elem-R236} \ -} -# ||thebestbookies.com^$popup,domain=f谋rstrowsports.eu (easylistchina+easylist.txt: 46190) -.thebestbookies.com -# ||thebestbookies.com^$popup,domain=f谋rstrowsports.eu (easylist.txt: 35705) -.thebestbookies.com - -#ab2p-block-elem-R237 -{+client-header-tagger{ab2p-block-elem-R237} \ -} -# /static/banners/*$domain=gagadget.com|maxpark.com|vse-sto.com.ua (advblock.txt: 5397) -/(.*/)?static/banners/.* - -#ab2p-block-elem-R238 -{+client-header-tagger{ab2p-block-elem-R238} \ -} -# /jquery.$domain=game.macx.cn (easylistchina+easylist.txt: 1176) -/(.*/)?jquery\. -jquery.*. - -#ab2p-block-elem-R239 -{+client-header-tagger{ab2p-block-elem-R239} \ -} -# /web/ad/*$domain=gamer.com.tw (easylistchina+easylist.txt: 1229) -/(.*/)?web/ad/.* -# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina+easylist.txt: 1151) -/(.*/)?gamer/.* -# /baha/*$subdocument,domain=gamer.com.tw (easylistchina+easylist.txt: 1130) -/(.*/)?baha/.* - -#ab2p-block-elem-R240 -{+client-header-tagger{ab2p-block-elem-R240} \ -} -# ||imagebam.com/download/$image,domain=ganool.com (easylistchina+easylist.txt: 43443) -.imagebam.com/download/ -# ||idup.in/embed$third-party,domain=ganool.com (easylistchina+easylist.txt: 40417) -.idup.in/embed -# ||imagebam.com/download/$image,domain=ganool.com (easylist.txt: 32958) -.imagebam.com/download/ -# ||idup.in/embed$third-party,domain=ganool.com (easylist.txt: 29932) -.idup.in/embed - -#ab2p-block-elem-R241 -{+client-header-tagger{ab2p-block-elem-R241} \ -} -# /\/[0-9].*\-.*\-[a-z0-9]{4}/$script,xmlhttprequest,domain=gaytube.com|keezmovies.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 46222) -/(.*/)?\\/\[0-9\]\..*\\-\..*\\-\[a-z0-9\]\{4\}/ -/\/[0-9].*\-.*\-[a-z0-9]{4} -# /\/[0-9].*\-.*\-[a-z0-9]{4}/$script,xmlhttprequest,domain=gaytube.com|keezmovies.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylist.txt: 35737) -/(.*/)?\\/\[0-9\]\..*\\-\..*\\-\[a-z0-9\]\{4\}/ -/\/[0-9].*\-.*\-[a-z0-9]{4} - -#ab2p-block-elem-R242 -{+client-header-tagger{ab2p-block-elem-R242} \ -} -# ||captchaad.com/captchaad.js$domain=gca.sh (easylistchina+easylist.txt: 42462) -.captchaad.com/captchaad\.js -# ||captchaad.com/captchaad.js$domain=gca.sh (easylist.txt: 31977) -.captchaad.com/captchaad\.js - -#ab2p-block-elem-R243 -{+client-header-tagger{ab2p-block-elem-R243} \ -} -# ||4548621445004054774f0039660873e9ae60d8fb.googledrive.com^$domain=gearshout.net (advblock.txt: 5434) -.4548621445004054774f0039660873e9ae60d8fb.googledrive.com - -#ab2p-block-elem-R244 -{+client-header-tagger{ab2p-block-elem-R244} \ -} -# /marketing/cover/*$domain=geekpark.net (easylistchina+easylist.txt: 1188) -/(.*/)?marketing/cover/.* - -#ab2p-block-elem-R245 -{+client-header-tagger{ab2p-block-elem-R245} \ -} -# ||thedoujin.com^$domain=gelbooru.com (easylistchina+easylist.txt: 46922) -.thedoujin.com -# ||twitch.tv/widgets/live_embed_player.swf$domain=gelbooru.com (easylistchina+easylist.txt: 45298) -.twitch.tv/widgets/live_embed_player\.swf -# ||thedoujin.com^$domain=gelbooru.com (easylist.txt: 36437) -.thedoujin.com -# ||twitch.tv/widgets/live_embed_player.swf$domain=gelbooru.com (easylist.txt: 34813) -.twitch.tv/widgets/live_embed_player\.swf - -#ab2p-block-elem-R246 -{+client-header-tagger{ab2p-block-elem-R246} \ -} -# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina+easylist.txt: 3490) -.info.lm.tv.sohu.com - -#ab2p-block-elem-R247 -{+client-header-tagger{ab2p-block-elem-R247} \ -} -# ||wordpress.com^*/amazon2-center-top.$domain=gigaom.com (easylistchina+easylist.txt: 45632) -.wordpress.com/.*/amazon2-center-top\. -# ||wordpress.com^*/amazon2-center-top.$domain=gigaom.com (easylist.txt: 35147) -.wordpress.com/.*/amazon2-center-top\. - -#ab2p-block-elem-R248 -{+client-header-tagger{ab2p-block-elem-R248} \ -} -# ||video-cdn.abcnews.com^*_ad_$object-subrequest,domain=go.com (easylistchina+easylist.txt: 45411) -.video-cdn.abcnews.com/.*_ad_ -# ||video-cdn.abcnews.com^*_ad_$object-subrequest,domain=go.com (easylist.txt: 34926) -.video-cdn.abcnews.com/.*_ad_ - -#ab2p-block-elem-R249 -{+client-header-tagger{ab2p-block-elem-R249} \ -} -# /^https?://goodgame\.ru/[a-z0-9]+$/$subdocument,domain=goodgame.ru (advblock.txt: 5378) -/(.*/)?[^\w%.-]https\?://goodgame\\\.ru/\[a-z0-9\]\+\$/ -/^https?://goodgame\.ru/[a-z0-9]+$ - -#ab2p-block-elem-R250 -{+client-header-tagger{ab2p-block-elem-R250} \ -} -# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina+easylist.txt: 4856) -.top.taobao.com/interface_v2\.php\? - -#ab2p-block-elem-R251 -{+client-header-tagger{ab2p-block-elem-R251} \ -} -# ||dropbox.com^*/aff-resources/$domain=gramfeed.com (easylistchina+easylist.txt: 40179) -.dropbox.com/.*/aff-resources/ -# ||dropbox.com^*/aff-resources/$domain=gramfeed.com (easylist.txt: 29694) -.dropbox.com/.*/aff-resources/ - -#ab2p-block-elem-R252 -{+client-header-tagger{ab2p-block-elem-R252} \ -} -# ||megaswf.com/file/$domain=gruntig.net (easylistchina+easylist.txt: 43936) -.megaswf.com/file/ -# ||gruntig2008.opendrive.com^$domain=gruntig.net (easylistchina+easylist.txt: 43278) -.gruntig2008.opendrive.com -# ||megaswf.com/file/$domain=gruntig.net (easylist.txt: 33451) -.megaswf.com/file/ -# ||gruntig2008.opendrive.com^$domain=gruntig.net (easylist.txt: 32793) -.gruntig2008.opendrive.com - -#ab2p-block-elem-R253 -{+client-header-tagger{ab2p-block-elem-R253} \ -} -# ||amazonaws.com/banner/$domain=gserp.com (easylistchina+easylist.txt: 39741) -.amazonaws.com/banner/ -# ||amazonaws.com/banner/$domain=gserp.com (easylist.txt: 29256) -.amazonaws.com/banner/ - -#ab2p-block-elem-R254 -{+client-header-tagger{ab2p-block-elem-R254} \ -} -# /bao/uploaded/*$domain=hacg.lol (easylistchina+easylist.txt: 1134) -/(.*/)?bao/uploaded/.* - -#ab2p-block-elem-R255 -{+client-header-tagger{ab2p-block-elem-R255} \ -} -# ||rackcdn.com^*/banners/$domain=hanime.tv (easylistchina+easylist.txt: 46823) -.rackcdn.com/.*/banners/ -# ||rackcdn.com^*/banners/$domain=hanime.tv (easylist.txt: 36338) -.rackcdn.com/.*/banners/ - -#ab2p-block-elem-R256 -{+client-header-tagger{ab2p-block-elem-R256} \ -} -# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina+easylist.txt: 1163) -/(.*/)?Images/ak47/.* - -#ab2p-block-elem-R257 -{+client-header-tagger{ab2p-block-elem-R257} \ -} -# ||amazonaws.com/kbnetworkz/$domain=hardforum.com (easylistchina+easylist.txt: 42141) -.amazonaws.com/kbnetworkz/ -# ||amazonaws.com/kbnetworkz/$domain=hardforum.com (easylist.txt: 31656) -.amazonaws.com/kbnetworkz/ - -#ab2p-block-elem-R258 -{+client-header-tagger{ab2p-block-elem-R258} \ -} -# |http://$script,third-party,domain=have69.net|i-gay.org (easylistchina+easylist.txt: 46226) -# |http://$script,third-party,domain=have69.net|i-gay.org (easylist.txt: 35741) - -#ab2p-block-elem-R259 -{+client-header-tagger{ab2p-block-elem-R259} \ -} -# ||tracker.hdclub.com.ua/dox/$domain=hdclub.org|tracker.hdclub.com.ua (advblock.txt: 6484) -.tracker.hdclub.com.ua/dox/ - -#ab2p-block-elem-R260 -{+client-header-tagger{ab2p-block-elem-R260} \ -} -# ||rackcdn.com^$domain=hdkinomax.com (advblock.txt: 6284) -.rackcdn.com - -#ab2p-block-elem-R261 -{+client-header-tagger{ab2p-block-elem-R261} \ -} -# ||51img1.com^$domain=hdscg.com|v8gay.com (easylistchina+easylist.txt: 1669) -.51img1.com - -#ab2p-block-elem-R262 -{+client-header-tagger{ab2p-block-elem-R262} \ -} -# ||youtube.com^$domain=help2play.com|otvetes.com|vkonagt.com (advblock.txt: 208) -.youtube.com - -#ab2p-block-elem-R263 -{+client-header-tagger{ab2p-block-elem-R263} \ -} -# ||xldytt.com^$popup,domain=henbt.com (easylistchina+easylist.txt: 1083) -.xldytt.com - -#ab2p-block-elem-R264 -{+client-header-tagger{ab2p-block-elem-R264} \ -} -# ||avetirus.ru^$domain=hentaiz.org (advblock.txt: 5518) -.avetirus.ru - -#ab2p-block-elem-R265 -{+client-header-tagger{ab2p-block-elem-R265} \ -} -# ||watchclip.tv^$popup,domain=hipfile.com (easylistchina+easylist.txt: 46210) -.watchclip.tv -# ||watchclip.tv^$popup,domain=hipfile.com (easylist.txt: 35725) -.watchclip.tv - -#ab2p-block-elem-R266 -{+client-header-tagger{ab2p-block-elem-R266} \ -} -# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina+easylist.txt: 4441) -.s.yimg.com/ja/ap/ - -#ab2p-block-elem-R267 -{+client-header-tagger{ab2p-block-elem-R267} \ -} -# /nfs/ad/*$domain=hkbici.com (easylistchina+easylist.txt: 1201) -/(.*/)?nfs/ad/.* -# /attachment/ad/*$domain=hkbici.com (easylistchina+easylist.txt: 1126) -/(.*/)?attachment/ad/.* - -#ab2p-block-elem-R268 -{+client-header-tagger{ab2p-block-elem-R268} \ -} -# ||megalife.com.hk^$domain=hkgolden.com (easylistchina+easylist.txt: 3925) -.megalife.com.hk - -#ab2p-block-elem-R269 -{+client-header-tagger{ab2p-block-elem-R269} \ -} -# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk|wwledsbb.net (easylistchina+easylist.txt: 1257) - -#ab2p-block-elem-R270 -{+client-header-tagger{ab2p-block-elem-R270} \ -} -# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina+easylist.txt: 1413) -.163.com/special/ - -#ab2p-block-elem-R271 -{+client-header-tagger{ab2p-block-elem-R271} \ -} -# ||alicdn.com^*.jpg$domain=htai.me (easylistchina+easylist.txt: 2081) -.alicdn.com/.*\.jpg -# ||alicdn.com^*.gif$domain=htai.me (easylistchina+easylist.txt: 2080) -.alicdn.com/.*\.gif - -#ab2p-block-elem-R272 -{+client-header-tagger{ab2p-block-elem-R272} \ -} -# ||google.com.eg/url?$popup,domain=hulkload.com (easylistchina+easylist.txt: 46147) -.google.com.eg/url\? -# ||google.com.eg/url?$popup,domain=hulkload.com (easylist.txt: 35662) -.google.com.eg/url\? - -#ab2p-block-elem-R273 -{+client-header-tagger{ab2p-block-elem-R273} \ -} -# ||gotupload.com^$subdocument,domain=hulkshare.com (easylistchina+easylist.txt: 43260) -.gotupload.com -# ||gotupload.com^$subdocument,domain=hulkshare.com (easylist.txt: 32775) -.gotupload.com - -#ab2p-block-elem-R274 -{+client-header-tagger{ab2p-block-elem-R274} \ -} -# /forum/images/*$object,domain=hvosty.ru|vsehvosty.ru (advblock.txt: 5383) -/(.*/)?forum/images/.* - -#ab2p-block-elem-R275 -{+client-header-tagger{ab2p-block-elem-R275} \ -} -# ||noiseblocker.de^$domain=hw-lab.com (advblock.txt: 6139) -.noiseblocker.de -# ||antec.com/*/web_banner/$domain=hw-lab.com (advblock.txt: 5495) -.antec.com/.*/web_banner/ - -#ab2p-block-elem-R276 -{+client-header-tagger{ab2p-block-elem-R276} \ -} -# ||hwcdn.net^$domain=i24news.tv|newindianexpress.com (easylistchina+easylist.txt: 40402) -.hwcdn.net -# ||hwcdn.net^$domain=i24news.tv|newindianexpress.com (easylist.txt: 29917) -.hwcdn.net - -#ab2p-block-elem-R277 -{+client-header-tagger{ab2p-block-elem-R277} \ -} -# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina+easylist.txt: 3542) -.item.taobao.com - -#ab2p-block-elem-R278 -{+client-header-tagger{ab2p-block-elem-R278} \ -} -# ||axisbank.com/shopaholics-festival/$domain=ibnlive.in.com (easylistchina+easylist.txt: 39796) -.axisbank.com/shopaholics-festival/ -# ||axisbank.com/shopaholics-festival/$domain=ibnlive.in.com (easylist.txt: 29311) -.axisbank.com/shopaholics-festival/ - -#ab2p-block-elem-R279 -{+client-header-tagger{ab2p-block-elem-R279} \ -} -# /tres/recommend/*$domain=ifeng.com (easylistchina+easylist.txt: 1223) -/(.*/)?tres/recommend/.* - -#ab2p-block-elem-R280 -{+client-header-tagger{ab2p-block-elem-R280} \ -} -# ||ru/code/$domain=imageban.ru|tekst-pesni-tut.ru (advblock.txt: 3343) - -#ab2p-block-elem-R281 -{+client-header-tagger{ab2p-block-elem-R281} \ -} -# ||wordpress.com^*_250x2501.$domain=inspirationfeed.com (easylistchina+easylist.txt: 45635) -.wordpress.com/.*_250x2501\. -# ||wordpress.com^*/mediatemple.jpg$domain=inspirationfeed.com (easylistchina+easylist.txt: 45634) -.wordpress.com/.*/mediatemple\.jpg -# ||wordpress.com^*-banner-$domain=inspirationfeed.com (easylistchina+easylist.txt: 45631) -.wordpress.com/.*-banner- -# ||wordpress.com^*_250x2501.$domain=inspirationfeed.com (easylist.txt: 35150) -.wordpress.com/.*_250x2501\. -# ||wordpress.com^*/mediatemple.jpg$domain=inspirationfeed.com (easylist.txt: 35149) -.wordpress.com/.*/mediatemple\.jpg -# ||wordpress.com^*-banner-$domain=inspirationfeed.com (easylist.txt: 35146) -.wordpress.com/.*-banner- - -#ab2p-block-elem-R282 -{+client-header-tagger{ab2p-block-elem-R282} \ -} -# $third-party,object,subdocument,domain=ints.rusfolder.com|ints.rusfolder.net|piccash.net|pornolab.net (advblock.txt: 5364) - - -#ab2p-block-elem-R283 -{+client-header-tagger{ab2p-block-elem-R283} \ -} -# ||rackspacecloud.com/Broker%20Buttons/$domain=investing.com (easylistchina+easylist.txt: 40822) -.rackspacecloud.com/Broker%20Buttons/ -# ||rackspacecloud.com/Broker%20Buttons/$domain=investing.com (easylist.txt: 30337) -.rackspacecloud.com/Broker%20Buttons/ - -#ab2p-block-elem-R284 -{+client-header-tagger{ab2p-block-elem-R284} \ -} -# ||livecrics.livet20worldcup.com/video.php$domain=iplstream.com (easylistchina+easylist.txt: 40530) -.livecrics.livet20worldcup.com/video\.php -# ||livecrics.livet20worldcup.com/video.php$domain=iplstream.com (easylist.txt: 30045) -.livecrics.livet20worldcup.com/video\.php - -#ab2p-block-elem-R285 -{+client-header-tagger{ab2p-block-elem-R285} \ -} -# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina+easylist.txt: 1109) -/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ -/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf -# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina+easylist.txt: 1071) -.miaozhen.com - -#ab2p-block-elem-R286 -{+client-header-tagger{ab2p-block-elem-R286} \ -} -# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina+easylist.txt: 1110) -/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ -/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) - -#ab2p-block-elem-R287 -{+client-header-tagger{ab2p-block-elem-R287} \ -} -# ||dfs.digitalaccess.ru^$object-subrequest,domain=ivi.ru (advblock.txt: 5646) -.dfs.digitalaccess.ru - -#ab2p-block-elem-R288 -{+client-header-tagger{ab2p-block-elem-R288} \ -} -# ||imgchr.com^$domain=iyejie.com (easylistchina+easylist.txt: 3468) -.imgchr.com - -#ab2p-block-elem-R289 -{+client-header-tagger{ab2p-block-elem-R289} \ -} -# ||sinaimg.cn^$domain=izzs.cc (easylistchina+easylist.txt: 5454) -.sinaimg.cn - -#ab2p-block-elem-R290 -{+client-header-tagger{ab2p-block-elem-R290} \ -} -# ||brightcove.com/js/BrightcoveExperiences.js$domain=java-forums.org (easylistchina+easylist.txt: 42390) -.brightcove.com/js/BrightcoveExperiences\.js -# ||brightcove.com/js/BrightcoveExperiences.js$domain=java-forums.org (easylist.txt: 31905) -.brightcove.com/js/BrightcoveExperiences\.js - -#ab2p-block-elem-R291 -{+client-header-tagger{ab2p-block-elem-R291} \ -} -# ||most3.ykt.ru/vast/$xmlhttprequest,domain=joker.ykt.ru (advblock.txt: 6085) -.most3.ykt.ru/vast/ - -#ab2p-block-elem-R292 -{+client-header-tagger{ab2p-block-elem-R292} \ -} -# /joynew.css?$domain=joyreactor.cc|reactor.cc (advblock.txt: 5392) -/(.*/)?joynew\.css\? - -#ab2p-block-elem-R293 -{+client-header-tagger{ab2p-block-elem-R293} \ -} -# ||blogsmithmedia.com^*wallpaper$image,domain=joystiq.com (easylistchina+easylist.txt: 42370) -.blogsmithmedia.com/.*wallpaper -# ||blogsmithmedia.com^*wallpaper$image,domain=joystiq.com (easylist.txt: 31885) -.blogsmithmedia.com/.*wallpaper - -#ab2p-block-elem-R294 -{+client-header-tagger{ab2p-block-elem-R294} \ -} -# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 4402) -.riju.com/pr/ -# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 3640) -.jpunion.com -# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 1173) -/(.*/)?img/kana\.jpg -# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 1172) -/(.*/)?img/disc\.jpg - -#ab2p-block-elem-R295 -{+client-header-tagger{ab2p-block-elem-R295} \ -} -# ||com^$popup,domain=kartinka.in (advblock.txt: 32) - -#ab2p-block-elem-R296 -{+client-header-tagger{ab2p-block-elem-R296} \ -} -# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina+easylist.txt: 4331) -.qq.com/bqq_qfpic/ - -#ab2p-block-elem-R297 -{+client-header-tagger{ab2p-block-elem-R297} \ -} -# ||v.adfox.ru^$object-subrequest,domain=kg-portal.ru|tvc.ru|tvzvezda.ru|zoomby.ru (advblock.txt: 6531) -.v.adfox.ru - -#ab2p-block-elem-R298 -{+client-header-tagger{ab2p-block-elem-R298} \ -} -# ||toptrailers.net^$popup,domain=kingfiles.net|uploadrocket.net (easylistchina+easylist.txt: 46196) -.toptrailers.net -# ||toptrailers.net^$popup,domain=kingfiles.net|uploadrocket.net (easylist.txt: 35711) -.toptrailers.net - -#ab2p-block-elem-R299 -{+client-header-tagger{ab2p-block-elem-R299} \ -} -# ||g-tv.ru^*&auto_play=1$domain=kino-dom.tv (advblock.txt: 5759) -.g-tv.ru/.*&auto_play=1 - -#ab2p-block-elem-R300 -{+client-header-tagger{ab2p-block-elem-R300} \ -} -# /swf/*$domain=kino-live.org|riper.am (advblock.txt: 5398) -/(.*/)?swf/.* -# /js/init.js$domain=kino-live.org|riper.am (advblock.txt: 5393) -/(.*/)?js/init\.js -# /images/*-banners.$domain=kino-live.org|riper.am (advblock.txt: 5386) -/(.*/)?images/.*-banners\. -# /css/styles.css$domain=kino-live.org|riper.am (advblock.txt: 5381) -/(.*/)?css/styles\.css - -#ab2p-block-elem-R301 -{+client-header-tagger{ab2p-block-elem-R301} \ -} -# ||data.videonow.ru^$domain=kinonews.ru|lifenews.ru|sport-express.ru (advblock.txt: 5630) -.data.videonow.ru - -#ab2p-block-elem-R302 -{+client-header-tagger{ab2p-block-elem-R302} \ -} -# ||cdn.kinoprofi.net/vasp$object-subrequest,domain=kinoprofi.net (advblock.txt: 5580) -.cdn.kinoprofi.net/vasp - -#ab2p-block-elem-R303 -{+client-header-tagger{ab2p-block-elem-R303} \ -} -# /com.js$domain=kinox.to (easylistchina+easylist.txt: 41909) -/(.*/)?com\.js -com.js*. -# /com.js$domain=kinox.to (easylist.txt: 31424) -/(.*/)?com\.js -com.js*. - -#ab2p-block-elem-R304 -{+client-header-tagger{ab2p-block-elem-R304} \ -} -# ||cdn77.org^$script,domain=kinox.to|movie4k.to|thevideo.me|unblocked.la|vidup.me (easylistchina+easylist.txt: 42498) -.cdn77.org -# ||cdn77.org^$script,domain=kinox.to|movie4k.to|thevideo.me|unblocked.la|vidup.me (easylist.txt: 32013) -.cdn77.org - -#ab2p-block-elem-R305 -{+client-header-tagger{ab2p-block-elem-R305} \ -} -# /rklm/*$domain=kirovnet.ru|ui.ua (advblock.txt: 5394) -/(.*/)?rklm/.* - -#ab2p-block-elem-R306 -{+client-header-tagger{ab2p-block-elem-R306} \ -} -# ||travelplus.tv^$third-party,domain=kissanime.com (easylistchina+easylist.txt: 41071) -.travelplus.tv -# ||travelplus.tv^$third-party,domain=kissanime.com (easylist.txt: 30586) -.travelplus.tv - -#ab2p-block-elem-R307 -{+client-header-tagger{ab2p-block-elem-R307} \ -} -# ||koob.ru/*.php?*=$domain=klex.ru (advblock.txt: 5960) -.koob.ru/.*\.php\?.*= - -#ab2p-block-elem-R308 -{+client-header-tagger{ab2p-block-elem-R308} \ -} -# ||bmu.img.com.ua^$domain=korrespondent.net (advblock.txt: 5560) -.bmu.img.com.ua - -#ab2p-block-elem-R309 -{+client-header-tagger{ab2p-block-elem-R309} \ -} -# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina+easylist.txt: 1108) -/(.*/)?\?age=1& - -#ab2p-block-elem-R310 -{+client-header-tagger{ab2p-block-elem-R310} \ -} -# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina+easylist.txt: 1169) -/(.*/)?img/.*\.gif - -#ab2p-block-elem-R311 -{+client-header-tagger{ab2p-block-elem-R311} \ -} -# ||porn101.com^$popup,domain=lexsteele.com (easylistchina+easylist.txt: 47087) -.porn101.com -# ||porn101.com^$popup,domain=lexsteele.com (easylist.txt: 36602) -.porn101.com - -#ab2p-block-elem-R312 -{+client-header-tagger{ab2p-block-elem-R312} \ -} -# .fancybox.$domain=life.com.tw (easylistchina+easylist.txt: 1093) -/.*\.fancybox\. -.*.fancybox.*. - -#ab2p-block-elem-R313 -{+client-header-tagger{ab2p-block-elem-R313} \ -} -# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina+easylist.txt: 4818) -.tietuku.com/.*\.gif - -#ab2p-block-elem-R314 -{+client-header-tagger{ab2p-block-elem-R314} \ -} -# ||bp.blogspot.com^*banner*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42383) -.bp.blogspot.com/.*banner.*\.jpg -# ||bp.blogspot.com^*/poster*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42382) -.bp.blogspot.com/.*/poster.*\.jpg -# ||bp.blogspot.com^*%2bad*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42381) -.bp.blogspot.com/.*%2bad.*\.jpg -# ||bp.blogspot.com^*banner*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31898) -.bp.blogspot.com/.*banner.*\.jpg -# ||bp.blogspot.com^*/poster*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31897) -.bp.blogspot.com/.*/poster.*\.jpg -# ||bp.blogspot.com^*%2bad*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31896) -.bp.blogspot.com/.*%2bad.*\.jpg - -#ab2p-block-elem-R315 -{+client-header-tagger{ab2p-block-elem-R315} \ -} -# ||masqforo.com^$third-party,domain=linkbucks.com (easylistchina+easylist.txt: 40574) -.masqforo.com -# ||masqforo.com^$third-party,domain=linkbucks.com (easylist.txt: 30089) -.masqforo.com - -#ab2p-block-elem-R316 -{+client-header-tagger{ab2p-block-elem-R316} \ -} -# |http://$script,subdocument,third-party,domain=linkshrink.net (easylistchina+easylist.txt: 45925) -# |http://$script,subdocument,third-party,domain=linkshrink.net (easylist.txt: 35440) - -#ab2p-block-elem-R317 -{+client-header-tagger{ab2p-block-elem-R317} \ -} -# ||gp.jstv.com^$domain=live.jstv.com (easylistchina+easylist.txt: 3046) -.gp.jstv.com - -#ab2p-block-elem-R318 -{+client-header-tagger{ab2p-block-elem-R318} \ -} -# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina+easylist.txt: 1142) -/(.*/)?da\.aspx$ -da.aspx - -#ab2p-block-elem-R319 -{+client-header-tagger{ab2p-block-elem-R319} \ -} -# ||mp3albomov.net^$popup,domain=lossless-galaxy.ru (advblock.txt: 37) -.mp3albomov.net - -#ab2p-block-elem-R320 -{+client-header-tagger{ab2p-block-elem-R320} \ -} -# /js/index_right$domain=lt57.com|ltwbook.com|ltxsw.com (easylistchina+easylist.txt: 1181) -/(.*/)?js/index_right -# /js/index_*68860.js$domain=lt57.com|ltwbook.com|ltxsw.com (easylistchina+easylist.txt: 1180) -/(.*/)?js/index_.*68860\.js - -#ab2p-block-elem-R321 -{+client-header-tagger{ab2p-block-elem-R321} \ -} -# ||qndown.com^$domain=lululu8.net (easylistchina+easylist.txt: 4326) -.qndown.com - -#ab2p-block-elem-R322 -{+client-header-tagger{ab2p-block-elem-R322} \ -} -# ||abbigli.com^$popup,domain=luxtorrents.com (advblock.txt: 30) -.abbigli.com - -#ab2p-block-elem-R323 -{+client-header-tagger{ab2p-block-elem-R323} \ -} -# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina+easylist.txt: 1724) -.55.la/anonymous/banner/ - -#ab2p-block-elem-R324 -{+client-header-tagger{ab2p-block-elem-R324} \ -} -# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina+easylist.txt: 4140) -.pchome.com.tw/iframe/ - -#ab2p-block-elem-R325 -{+client-header-tagger{ab2p-block-elem-R325} \ -} -# ||c-cdn.coub.com^$script,domain=mail.ru (advblock.txt: 6811) -.c-cdn.coub.com -# /brandingVideo.js$domain=mail.ru (advblock.txt: 6810) -/(.*/)?brandingVideo\.js -brandingVideo.js*. - -#ab2p-block-elem-R326 -{+client-header-tagger{ab2p-block-elem-R326} \ -} -# ||beap.gemini.yahoo.com^$popup,domain=mail.yahoo.com (easylistchina+easylist.txt: 46114) -.beap.gemini.yahoo.com -# ||beap.gemini.yahoo.com^$popup,domain=mail.yahoo.com (easylist.txt: 35629) -.beap.gemini.yahoo.com - -#ab2p-block-elem-R327 -{+client-header-tagger{ab2p-block-elem-R327} \ -} -# ||pagefair.com/static/adblock_detection/js/d.min.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 46087) -.pagefair.com/static/adblock_detection/js/d\.min\.js -# ||mlg-ad-ops.s3.amazonaws.com^$domain=majorleaguegaming.com (easylistchina+easylist.txt: 43997) -.mlg-ad-ops.s3.amazonaws.com -# ||pagefair.com/static/adblock_detection/js/d.min.js$domain=majorleaguegaming.com (easylist.txt: 35602) -.pagefair.com/static/adblock_detection/js/d\.min\.js -# ||mlg-ad-ops.s3.amazonaws.com^$domain=majorleaguegaming.com (easylist.txt: 33512) -.mlg-ad-ops.s3.amazonaws.com - -#ab2p-block-elem-R328 -{+client-header-tagger{ab2p-block-elem-R328} \ -} -# ||wambacdn.net/images/upload/adv/$domain=mamba.ru (easylistchina+easylist.txt: 45499) -.wambacdn.net/images/upload/adv/ -# ||wambacdn.net/images/upload/adv/$domain=mamba.ru (easylist.txt: 35014) -.wambacdn.net/images/upload/adv/ - -#ab2p-block-elem-R329 -{+client-header-tagger{ab2p-block-elem-R329} \ -} -# ||mfcdn.net/store/banners/$domain=mangafox.me (easylistchina+easylist.txt: 43965) -.mfcdn.net/store/banners/ -# ||mfcdn.net/store/banners/$domain=mangafox.me (easylist.txt: 33480) -.mfcdn.net/store/banners/ - -#ab2p-block-elem-R330 -{+client-header-tagger{ab2p-block-elem-R330} \ -} -# ||indianmasala.com^$popup,third-party,domain=masalaboard.com (easylistchina+easylist.txt: 38515) -.indianmasala.com -# ||indianmasala.com^$popup,third-party,domain=masalaboard.com (easylist.txt: 28030) -.indianmasala.com - -#ab2p-block-elem-R331 -{+client-header-tagger{ab2p-block-elem-R331} \ -} -# ||firepic.org^$domain=mega-pics-money.ru (advblock.txt: 5719) -.firepic.org - -#ab2p-block-elem-R332 -{+client-header-tagger{ab2p-block-elem-R332} \ -} -# ||orange-pic.net^$domain=megaimg.ru (advblock.txt: 6185) -.orange-pic.net - -#ab2p-block-elem-R333 -{+client-header-tagger{ab2p-block-elem-R333} \ -} -# ||bazr.ru/player?playlistId=$domain=megaresheba.ru|muzofon.com|teledidar.tv (advblock.txt: 5533) -.bazr.ru/player\?playlistId= - -#ab2p-block-elem-R334 -{+client-header-tagger{ab2p-block-elem-R334} \ -} -# ||vcdn.biz/*_mggads/$domain=megogo.net (advblock.txt: 6536) -.vcdn.biz/.*_mggads/ -# _advideo/$object-subrequest,domain=megogo.net (advblock.txt: 5406) -/.*_advideo/ -# /u_vod/1/*$object-subrequest,domain=megogo.net (advblock.txt: 5399) -/(.*/)?u_vod/1/.* - -#ab2p-block-elem-R335 -{+client-header-tagger{ab2p-block-elem-R335} \ -} -# ||memorygapdotorg.files.wordpress.com^*allamerican3.jpg$domain=memoryholeblog.com (easylistchina+easylist.txt: 43943) -.memorygapdotorg.files.wordpress.com/.*allamerican3\.jpg -# ||memorygapdotorg.files.wordpress.com^*allamerican3.jpg$domain=memoryholeblog.com (easylist.txt: 33458) -.memorygapdotorg.files.wordpress.com/.*allamerican3\.jpg - -#ab2p-block-elem-R336 -{+client-header-tagger{ab2p-block-elem-R336} \ -} -# ||ge.tt/api/$domain=mhktricks.net (easylistchina+easylist.txt: 40317) -.ge.tt/api/ -# ||ge.tt/api/$domain=mhktricks.net (easylist.txt: 29832) -.ge.tt/api/ - -#ab2p-block-elem-R337 -{+client-header-tagger{ab2p-block-elem-R337} \ -} -# /clickpop.js$domain=miliblog.co.uk (easylistchina+easylist.txt: 41908) -/(.*/)?clickpop\.js -clickpop.js*. -# /clickpop.js$domain=miliblog.co.uk (easylist.txt: 31423) -/(.*/)?clickpop\.js -clickpop.js*. - -#ab2p-block-elem-R338 -{+client-header-tagger{ab2p-block-elem-R338} \ -} -# ||plista.com/async.js$domain=mirror.co.uk (easylistchina+easylist.txt: 40766) -.plista.com/async\.js -# ||plista.com/async.js$domain=mirror.co.uk (easylist.txt: 30281) -.plista.com/async\.js - -#ab2p-block-elem-R339 -{+client-header-tagger{ab2p-block-elem-R339} \ -} -# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina+easylist.txt: 3604) -.jiaoyou8.com - -#ab2p-block-elem-R340 -{+client-header-tagger{ab2p-block-elem-R340} \ -} -# ||picuphost.com^$domain=mmload.info (easylistchina+easylist.txt: 4205) -.picuphost.com - -#ab2p-block-elem-R341 -{+client-header-tagger{ab2p-block-elem-R341} \ -} -# ||netdna-cdn.com^$domain=modovideo.com|mooshare.biz (easylistchina+easylist.txt: 44119) -.netdna-cdn.com -# ||netdna-cdn.com^$domain=modovideo.com|mooshare.biz (easylist.txt: 33634) -.netdna-cdn.com - -#ab2p-block-elem-R342 -{+client-header-tagger{ab2p-block-elem-R342} \ -} -# ||pladform.ru^$object,object-subrequest,subdocument,domain=molodejj.tv|smotri.com (advblock.txt: 6228) -.pladform.ru - -#ab2p-block-elem-R343 -{+client-header-tagger{ab2p-block-elem-R343} \ -} -# ||winvideo.org^$domain=moonwalk.cc (advblock.txt: 6651) -.winvideo.org -# ||mxtads.com^$domain=moonwalk.cc (advblock.txt: 6649) -.mxtads.com -# $popup,domain=moonwalk.cc (advblock.txt: 27) - - -#ab2p-block-elem-R344 -{+client-header-tagger{ab2p-block-elem-R344} \ -} -# /zvooq.css$domain=moskva.fm|piter.fm (advblock.txt: 5403) -/(.*/)?zvooq\.css -zvooq.css*. - -#ab2p-block-elem-R345 -{+client-header-tagger{ab2p-block-elem-R345} \ -} -# ||amazonaws.com/ansible.js$domain=motherjones.com (easylistchina+easylist.txt: 39740) -.amazonaws.com/ansible\.js -# ||amazonaws.com/ansible.js$domain=motherjones.com (easylist.txt: 29255) -.amazonaws.com/ansible\.js - -#ab2p-block-elem-R346 -{+client-header-tagger{ab2p-block-elem-R346} \ -} -# ||aolcdn.com/os/movies/css-js/sprite/*-wallpaper?$domain=moviefone.com (easylistchina+easylist.txt: 42193) -.aolcdn.com/os/movies/css-js/sprite/.*-wallpaper\? -# ||aolcdn.com/os/movies/css-js/sprite/*-wallpaper?$domain=moviefone.com (easylist.txt: 31708) -.aolcdn.com/os/movies/css-js/sprite/.*-wallpaper\? - -#ab2p-block-elem-R347 -{+client-header-tagger{ab2p-block-elem-R347} \ -} -# ||click.aliexpress.com^$popup,domain=multiupfile.com (easylistchina+easylist.txt: 46118) -.click.aliexpress.com -# ||click.aliexpress.com^$popup,domain=multiupfile.com (easylist.txt: 35633) -.click.aliexpress.com - -#ab2p-block-elem-R348 -{+client-header-tagger{ab2p-block-elem-R348} \ -} -# ||planeta-online.tv^$domain=my-hit.org (advblock.txt: 6229) -.planeta-online.tv - -#ab2p-block-elem-R349 -{+client-header-tagger{ab2p-block-elem-R349} \ -} -# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina+easylist.txt: 3316) -.i.alipayobjects.com/i/ecmng/ - -#ab2p-block-elem-R350 -{+client-header-tagger{ab2p-block-elem-R350} \ -} -# ||nimbb.com^$domain=my.rsscache.com (easylistchina+easylist.txt: 44177) -.nimbb.com -# ||nimbb.com^$domain=my.rsscache.com (easylist.txt: 33692) -.nimbb.com - -#ab2p-block-elem-R351 -{+client-header-tagger{ab2p-block-elem-R351} \ -} -# /js/adBom.js$domain=myqcloud.com (easylistchina+easylist.txt: 1177) -/(.*/)?js/adBom\.js - -#ab2p-block-elem-R352 -{+client-header-tagger{ab2p-block-elem-R352} \ -} -# ||namba.kg^$popup,domain=namba.kg (advblock.txt: 38) -.namba.kg - -#ab2p-block-elem-R353 -{+client-header-tagger{ab2p-block-elem-R353} \ -} -# /www/base/*&cb=$domain=namba.kg|namba.tj (advblock.txt: 5402) -/(.*/)?www/base/.*&cb= -# /banner_fullscreen.js|$domain=namba.kg|namba.tj (advblock.txt: 5380) -/(.*/)?banner_fullscreen\.js$ - -#ab2p-block-elem-R354 -{+client-header-tagger{ab2p-block-elem-R354} \ -} -# ||namba.tj^$popup,domain=namba.tj (advblock.txt: 39) -.namba.tj - -#ab2p-block-elem-R355 -{+client-header-tagger{ab2p-block-elem-R355} \ -} -# ||hide.me^$popup,domain=ncrypt.in (easylistchina+easylist.txt: 46149) -.hide.me -# ||5.199.170.67^$domain=ncrypt.in (easylistchina+easylist.txt: 41980) -.5.199.170.67 -# ||hide.me^$popup,domain=ncrypt.in (easylist.txt: 35664) -.hide.me -# ||5.199.170.67^$domain=ncrypt.in (easylist.txt: 31495) -.5.199.170.67 - -#ab2p-block-elem-R356 -{+client-header-tagger{ab2p-block-elem-R356} \ -} -# ||amazonaws.com^*=taboola-$script,domain=ndtv.com (easylistchina+easylist.txt: 39759) -.amazonaws.com/.*=taboola- -# ||amazonaws.com^*&dontMissWithoutHeader=$script,domain=ndtv.com (easylistchina+easylist.txt: 39758) -.amazonaws.com/.*&dontMissWithoutHeader= -# ||amazonaws.com/player.php?vidurl=$object-subrequest,domain=ndtv.com (easylistchina+easylist.txt: 39751) -.amazonaws.com/player\.php\?vidurl= -# ||amazonaws.com/crossdomain.xml$object-subrequest,domain=ndtv.com (easylistchina+easylist.txt: 39744) -.amazonaws.com/crossdomain\.xml -# ||amazonaws.com^*=taboola-$script,domain=ndtv.com (easylist.txt: 29274) -.amazonaws.com/.*=taboola- -# ||amazonaws.com^*&dontMissWithoutHeader=$script,domain=ndtv.com (easylist.txt: 29273) -.amazonaws.com/.*&dontMissWithoutHeader= -# ||amazonaws.com/player.php?vidurl=$object-subrequest,domain=ndtv.com (easylist.txt: 29266) -.amazonaws.com/player\.php\?vidurl= -# ||amazonaws.com/crossdomain.xml$object-subrequest,domain=ndtv.com (easylist.txt: 29259) -.amazonaws.com/crossdomain\.xml - -#ab2p-block-elem-R357 -{+client-header-tagger{ab2p-block-elem-R357} \ -} -# ||single-vergleich.de^$popup,domain=netload.in (easylistchina+easylist.txt: 46182) -.single-vergleich.de -# ||6angebot.ch^$third-party,domain=netload.in (easylistchina+easylist.txt: 39606) -.6angebot.ch -# ||single-vergleich.de^$popup,domain=netload.in (easylist.txt: 35697) -.single-vergleich.de -# ||6angebot.ch^$third-party,domain=netload.in (easylist.txt: 29121) -.6angebot.ch - -#ab2p-block-elem-R358 -{+client-header-tagger{ab2p-block-elem-R358} \ -} -# ||ngfiles.com/bg-skins/sponsored/skins/$domain=newgrounds.com (easylistchina+easylist.txt: 44167) -.ngfiles.com/bg-skins/sponsored/skins/ -# ||ngfiles.com/bg-skins/sponsored/skins/$domain=newgrounds.com (easylist.txt: 33682) -.ngfiles.com/bg-skins/sponsored/skins/ - -#ab2p-block-elem-R359 -{+client-header-tagger{ab2p-block-elem-R359} \ -} -# ||aviasales.ru/partners/$domain=newrbk.ru (advblock.txt: 5521) -.aviasales.ru/partners/ - -#ab2p-block-elem-R360 -{+client-header-tagger{ab2p-block-elem-R360} \ -} -# ||rentalcars.com/affxml/$domain=news-headlines.co.za (easylistchina+easylist.txt: 40844) -.rentalcars.com/affxml/ -# ||rentalcars.com/affxml/$domain=news-headlines.co.za (easylist.txt: 30359) -.rentalcars.com/affxml/ - -#ab2p-block-elem-R361 -{+client-header-tagger{ab2p-block-elem-R361} \ -} -# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina+easylist.txt: 5091) -.www.china.com.cn/node_ - -#ab2p-block-elem-R362 -{+client-header-tagger{ab2p-block-elem-R362} \ -} -# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina+easylist.txt: 1250) -/.*_iframe\.htm$ - -#ab2p-block-elem-R363 -{+client-header-tagger{ab2p-block-elem-R363} \ -} -# ||newscdn.com.au^*/desktop-bg-body.png$domain=news.com.au (easylistchina+easylist.txt: 44146) -.newscdn.com.au/.*/desktop-bg-body\.png -# ||newscdn.com.au^*/desktop-bg-body.png$domain=news.com.au (easylist.txt: 33661) -.newscdn.com.au/.*/desktop-bg-body\.png - -#ab2p-block-elem-R364 -{+client-header-tagger{ab2p-block-elem-R364} \ -} -# ||connectok.com/brightcove/?$domain=newsok.com (easylistchina+easylist.txt: 39986) -.connectok.com/brightcove/\? -# ||connectok.com/brightcove/?$domain=newsok.com (easylist.txt: 29501) -.connectok.com/brightcove/\? - -#ab2p-block-elem-R365 -{+client-header-tagger{ab2p-block-elem-R365} \ -} -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=nfl.com|viki.com (easylistchina+easylist.txt: 45781) -.youtube.com/yva_video\?adformat= -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=nfl.com|viki.com (easylist.txt: 35296) -.youtube.com/yva_video\?adformat= - -#ab2p-block-elem-R366 -{+client-header-tagger{ab2p-block-elem-R366} \ -} -# ||hostingkartinok.com/uploads/images/$domain=nikolaev-city.net (advblock.txt: 5844) -.hostingkartinok.com/uploads/images/ - -#ab2p-block-elem-R367 -{+client-header-tagger{ab2p-block-elem-R367} \ -} -# ||info^$popup,domain=nnm.me|serialu.net (advblock.txt: 35) - -#ab2p-block-elem-R368 -{+client-header-tagger{ab2p-block-elem-R368} \ -} -# ||oboom.com/assets/raw/$media,domain=oboom.com (easylistchina+easylist.txt: 44242) -.oboom.com/assets/raw/ -# ||oboom.com/assets/raw/$media,domain=oboom.com (easylist.txt: 33757) -.oboom.com/assets/raw/ - -#ab2p-block-elem-R369 -{+client-header-tagger{ab2p-block-elem-R369} \ -} -# .com/tps/$domain=ocucn.com (easylistchina+easylist.txt: 1091) -/.*\.com/tps/ -.*.com/tps/ - -#ab2p-block-elem-R370 -{+client-header-tagger{ab2p-block-elem-R370} \ -} -# ||cloudfront.net/*/takeover/$domain=offers.com (easylistchina+easylist.txt: 42548) -.cloudfront.net/.*/takeover/ -# ||cloudfront.net/*/takeover/$domain=offers.com (easylist.txt: 32063) -.cloudfront.net/.*/takeover/ - -#ab2p-block-elem-R371 -{+client-header-tagger{ab2p-block-elem-R371} \ -} -# ||wp.com^*/downloadlink$domain=onhax.net (easylistchina+easylist.txt: 45658) -.wp.com/.*/downloadlink -# ||wp.com^*/dlinks/$domain=onhax.net (easylistchina+easylist.txt: 45657) -.wp.com/.*/dlinks/ -# ||wp.com^*/downloadlink$domain=onhax.net (easylist.txt: 35173) -.wp.com/.*/downloadlink -# ||wp.com^*/dlinks/$domain=onhax.net (easylist.txt: 35172) -.wp.com/.*/dlinks/ - -#ab2p-block-elem-R372 -{+client-header-tagger{ab2p-block-elem-R372} \ -} -# ||rutube.ru/embed/$domain=ontracker.ru (advblock.txt: 6360) -.rutube.ru/embed/ - -#ab2p-block-elem-R373 -{+client-header-tagger{ab2p-block-elem-R373} \ -} -# ||rubiconproject.com^$domain=optimized-by.rubiconproject.com (easylistchina+easylist.txt: 44628) -.rubiconproject.com -# ||rubiconproject.com^$domain=optimized-by.rubiconproject.com (easylist.txt: 34143) -.rubiconproject.com - -#ab2p-block-elem-R374 -{+client-header-tagger{ab2p-block-elem-R374} \ -} -# ||209.62.111.179/ad.aspx$domain=pachanyc.com (easylistchina+easylist.txt: 41955) -.209.62.111.179/ad\.aspx -# ||209.62.111.179/ad.aspx$domain=pachanyc.com (easylist.txt: 31470) -.209.62.111.179/ad\.aspx - -#ab2p-block-elem-R375 -{+client-header-tagger{ab2p-block-elem-R375} \ -} -# |https://$script,third-party,domain=patheos.com (easylistchina+easylist.txt: 45845) -# |http://$script,third-party,domain=patheos.com (easylistchina+easylist.txt: 45844) -# |https://$script,third-party,domain=patheos.com (easylist.txt: 35360) -# |http://$script,third-party,domain=patheos.com (easylist.txt: 35359) - -#ab2p-block-elem-R376 -{+client-header-tagger{ab2p-block-elem-R376} \ -} -# ||roomguru.ru/SearchBox/$domain=pavelkesh.ru (advblock.txt: 6319) -.roomguru.ru/SearchBox/ - -#ab2p-block-elem-R377 -{+client-header-tagger{ab2p-block-elem-R377} \ -} -# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina+easylist.txt: 1225) -/(.*/)?upload/gad/.* - -#ab2p-block-elem-R378 -{+client-header-tagger{ab2p-block-elem-R378} \ -} -# ||rackcdn.com/*skin-$domain=pcgamesn.com (easylistchina+easylist.txt: 44521) -.rackcdn.com/.*skin- -# ||rackcdn.com/*skin-$domain=pcgamesn.com (easylist.txt: 34036) -.rackcdn.com/.*skin- - -#ab2p-block-elem-R379 -{+client-header-tagger{ab2p-block-elem-R379} \ -} -# |https://$script,third-party,domain=photobucket.com (easylistchina+easylist.txt: 45897) -# |http://$script,third-party,domain=photobucket.com (easylistchina+easylist.txt: 45896) -# |https://$script,third-party,domain=photobucket.com (easylist.txt: 35412) -# |http://$script,third-party,domain=photobucket.com (easylist.txt: 35411) - -#ab2p-block-elem-R380 -{+client-header-tagger{ab2p-block-elem-R380} \ -} -# ||phpbb-phpbb*.x-tk.ru^$domain=phpbb3.x-tk.ru (advblock.txt: 6207) -.phpbb-phpbb*./.*\.x-tk\.ru[^\w%.-] -.phpbb-phpbb*.x-tk.ru -# ||forum-gta.com^$script,domain=phpbb3.x-tk.ru (advblock.txt: 5734) -.forum-gta.com - -#ab2p-block-elem-R381 -{+client-header-tagger{ab2p-block-elem-R381} \ -} -# ||letitbit-porno.com^$popup,domain=pic2profit.com (advblock.txt: 36) -.letitbit-porno.com - -#ab2p-block-elem-R382 -{+client-header-tagger{ab2p-block-elem-R382} \ -} -# ||slavakirkudu.ru^$domain=picforall.ru (advblock.txt: 6403) -.slavakirkudu.ru - -#ab2p-block-elem-R383 -{+client-header-tagger{ab2p-block-elem-R383} \ -} -# ||garmin.ru/virb/?$popup,domain=pikabu.ru (advblock.txt: 148) -.garmin.ru/virb/\? - -#ab2p-block-elem-R384 -{+client-header-tagger{ab2p-block-elem-R384} \ -} -# /static/js/pop*.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 41915) -/(.*/)?static/js/pop.*\.js -# /poptest.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 41914) -/(.*/)?poptest\.js -poptest.js*. -# /static/js/pop*.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 31430) -/(.*/)?static/js/pop.*\.js -# /poptest.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 31429) -/(.*/)?poptest\.js -poptest.js*. - -#ab2p-block-elem-R385 -{+client-header-tagger{ab2p-block-elem-R385} \ -} -# ||teslagear.ru^$object-subrequest,domain=pladform.ru|smotri.com (advblock.txt: 6458) -.teslagear.ru - -#ab2p-block-elem-R386 -{+client-header-tagger{ab2p-block-elem-R386} \ -} -# ||deltamarket.com.ua^$domain=planetaua.net (advblock.txt: 5642) -.deltamarket.com.ua - -#ab2p-block-elem-R387 -{+client-header-tagger{ab2p-block-elem-R387} \ -} -# ||akamaihd.net^*/ads/$domain=player.theplatform.com (easylistchina+easylist.txt: 42109) -.akamaihd.net/.*/ads/ -# ||akamaihd.net^*/ads/$domain=player.theplatform.com (easylist.txt: 31624) -.akamaihd.net/.*/ads/ - -#ab2p-block-elem-R388 -{+client-header-tagger{ab2p-block-elem-R388} \ -} -# ||adfox.ru^$object-subrequest,domain=player.vgtrk.com (advblock.txt: 5453) -.adfox.ru - -#ab2p-block-elem-R389 -{+client-header-tagger{ab2p-block-elem-R389} \ -} -# ||bigcommerce.com^*/product_images/$domain=politicalears.com (easylistchina+easylist.txt: 39848) -.bigcommerce.com/.*/product_images/ -# ||bigcommerce.com^*/product_images/$domain=politicalears.com (easylist.txt: 29363) -.bigcommerce.com/.*/product_images/ - -#ab2p-block-elem-R390 -{+client-header-tagger{ab2p-block-elem-R390} \ -} -# ||politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/$script,domain=politicususa.com (easylistchina+easylist.txt: 44411) -.politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/ -# ||politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/$script,domain=politicususa.com (easylist.txt: 33926) -.politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/ - -#ab2p-block-elem-R391 -{+client-header-tagger{ab2p-block-elem-R391} \ -} -# ||celebjihad.com/widget/widget.js$domain=popbytes.com (easylistchina+easylist.txt: 42500) -.celebjihad.com/widget/widget\.js -# ||celebjihad.com/widget/widget.js$domain=popbytes.com (easylist.txt: 32015) -.celebjihad.com/widget/widget\.js - -#ab2p-block-elem-R392 -{+client-header-tagger{ab2p-block-elem-R392} \ -} -# ||phncdn.com/css/campaign.css?$domain=pornhub.com (easylistchina+easylist.txt: 46678) -.phncdn.com/css/campaign\.css\? -# ||phncdn.com/css/campaign.css?$domain=pornhub.com (easylist.txt: 36193) -.phncdn.com/css/campaign\.css\? - -#ab2p-block-elem-R393 -{+client-header-tagger{ab2p-block-elem-R393} \ -} -# |https://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46228) -# |https://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46227) -# |http://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46225) -# |http://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46224) -# |https://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35743) -# |https://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35742) -# |http://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35740) -# |http://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35739) - -#ab2p-block-elem-R394 -{+client-header-tagger{ab2p-block-elem-R394} \ -} -# ||reine.ru$image,domain=pornolab.net (advblock.txt: 6297) -.reine.ru*. - -#ab2p-block-elem-R395 -{+client-header-tagger{ab2p-block-elem-R395} \ -} -# ||baidu.com^$domain=pos.baidu.com (easylistchina+easylist.txt: 2187) -.baidu.com - -#ab2p-block-elem-R396 -{+client-header-tagger{ab2p-block-elem-R396} \ -} -# ||cdn.totalfratmove.com^$image,domain=postgradproblems.com (easylistchina+easylist.txt: 39938) -.cdn.totalfratmove.com -# ||cdn.totalfratmove.com^$image,domain=postgradproblems.com (easylist.txt: 29453) -.cdn.totalfratmove.com - -#ab2p-block-elem-R397 -{+client-header-tagger{ab2p-block-elem-R397} \ -} -# ||pr-cy.ru^*.swf^$domain=pr-cy.ru (advblock.txt: 6251) -.pr-cy.ru/.*\.swf[^\w%.-] - -#ab2p-block-elem-R398 -{+client-header-tagger{ab2p-block-elem-R398} \ -} -# ||zanox.com^$popup,domain=pregen.net (easylistchina+easylist.txt: 46217) -.zanox.com -# ||zanox.com^$popup,domain=pregen.net (easylist.txt: 35732) -.zanox.com - -#ab2p-block-elem-R399 -{+client-header-tagger{ab2p-block-elem-R399} \ -} -# ||prime.ms^$domain=primejailbait.com (easylistchina+easylist.txt: 41682) -.prime.ms -# ||prime.ms^$domain=primejailbait.com (easylist.txt: 31197) -.prime.ms - -#ab2p-block-elem-R400 -{+client-header-tagger{ab2p-block-elem-R400} \ -} -# |https://$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45888) -# |http://$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45887) -# |https://$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35403) -# |http://$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35402) - -#ab2p-block-elem-R401 -{+client-header-tagger{ab2p-block-elem-R401} \ -} -# ||maases.com/i/br/$domain=promodj.com (easylistchina+easylist.txt: 40564) -.maases.com/i/br/ -# ||maases.com/i/br/$domain=promodj.com (easylist.txt: 30079) -.maases.com/i/br/ - -#ab2p-block-elem-R402 -{+client-header-tagger{ab2p-block-elem-R402} \ -} -# |https://$script,third-party,domain=promptfile.com (easylistchina+easylist.txt: 45872) -# |http://$script,third-party,domain=promptfile.com (easylistchina+easylist.txt: 45871) -# |https://$script,third-party,domain=promptfile.com (easylist.txt: 35387) -# |http://$script,third-party,domain=promptfile.com (easylist.txt: 35386) - -#ab2p-block-elem-R403 -{+client-header-tagger{ab2p-block-elem-R403} \ -} -# ||fashionsaga.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 46128) -.fashionsaga.com -# ||fashionsaga.com^$popup,domain=putlocker.is (easylist.txt: 35643) -.fashionsaga.com - -#ab2p-block-elem-R404 -{+client-header-tagger{ab2p-block-elem-R404} \ -} -# /950-90.gif$domain=qire213.com (easylistchina+easylist.txt: 1107) -/(.*/)?950-90\.gif -950-90.gif*. - -#ab2p-block-elem-R405 -{+client-header-tagger{ab2p-block-elem-R405} \ -} -# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1239) -/(.*/)?xybgg\.gif -xybgg.gif*. -# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1171) -/(.*/)?img/br650\.gif -# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1170) -/(.*/)?img/br300\.gif - -#ab2p-block-elem-R406 -{+client-header-tagger{ab2p-block-elem-R406} \ -} -# ||dyncdn.me/static/20/js/expla*.js$domain=rarbg.to|rarbg.unblocked.la|rarbgmirror.com (easylistchina+easylist.txt: 42826) -.dyncdn.me/static/20/js/expla.*\.js -# ||dyncdn.me/static/20/js/expla*.js$domain=rarbg.to|rarbg.unblocked.la|rarbgmirror.com (easylist.txt: 32341) -.dyncdn.me/static/20/js/expla.*\.js - -#ab2p-block-elem-R407 -{+client-header-tagger{ab2p-block-elem-R407} \ -} -# ^utm_medium=pops^$popup,domain=ratedporntube.com|sextuberate.com (easylistchina+easylist.txt: 47068) -/(.*[^\w%.-])?utm_medium=pops[^\w%.-] -# ^utm_medium=pops^$popup,domain=ratedporntube.com|sextuberate.com (easylist.txt: 36583) -/(.*[^\w%.-])?utm_medium=pops[^\w%.-] - -#ab2p-block-elem-R408 -{+client-header-tagger{ab2p-block-elem-R408} \ -} -# ||tripadvisor.com/WidgetEmbed-*&partnerId=$domain=rbth.co.uk|rbth.com (easylistchina+easylist.txt: 41081) -.tripadvisor.com/WidgetEmbed-.*&partnerId= -# ||tripadvisor.com/WidgetEmbed-*&partnerId=$domain=rbth.co.uk|rbth.com (easylist.txt: 30596) -.tripadvisor.com/WidgetEmbed-.*&partnerId= - -#ab2p-block-elem-R409 -{+client-header-tagger{ab2p-block-elem-R409} \ -} -# ||cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:*.mp3$domain=rdio.com (easylistchina+easylist.txt: 42556) -.cmodmedia*./.*\.live\.streamtheworld\.com/media/cm-audio/cm:.*\.mp3 -.cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:.*\.mp3 -# ||cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:*.mp3$domain=rdio.com (easylist.txt: 32071) -.cmodmedia*./.*\.live\.streamtheworld\.com/media/cm-audio/cm:.*\.mp3 -.cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:.*\.mp3 - -#ab2p-block-elem-R410 -{+client-header-tagger{ab2p-block-elem-R410} \ -} -# ||netdna-cdn.com^*-300x250.$domain=readersdigest.co.uk (easylistchina+easylist.txt: 40677) -.netdna-cdn.com/.*-300x250\. -# ||netdna-cdn.com^*-300x250.$domain=readersdigest.co.uk (easylist.txt: 30192) -.netdna-cdn.com/.*-300x250\. - -#ab2p-block-elem-R411 -{+client-header-tagger{ab2p-block-elem-R411} \ -} -# ||porn4free.tv^$popup,domain=redtube.cc (easylistchina+easylist.txt: 47088) -.porn4free.tv -# ||porn4free.tv^$popup,domain=redtube.cc (easylist.txt: 36603) -.porn4free.tv - -#ab2p-block-elem-R412 -{+client-header-tagger{ab2p-block-elem-R412} \ -} -# ||howbbs.net^$domain=ref.so (easylistchina+easylist.txt: 3263) -.howbbs.net - -#ab2p-block-elem-R413 -{+client-header-tagger{ab2p-block-elem-R413} \ -} -# ||restotv.ru/promo/$domain=restoclub.ru (advblock.txt: 6303) -.restotv.ru/promo/ - -#ab2p-block-elem-R414 -{+client-header-tagger{ab2p-block-elem-R414} \ -} -# ||static.crowdscience.com/max-*.js?callback=crowdScienceCallback$domain=reuters.com (easylistchina+easylist.txt: 46069) -.static.crowdscience.com/max-.*\.js\?callback=crowdScienceCallback -# ||static.crowdscience.com/max-*.js?callback=crowdScienceCallback$domain=reuters.com (easylist.txt: 35584) -.static.crowdscience.com/max-.*\.js\?callback=crowdScienceCallback - -#ab2p-block-elem-R415 -{+client-header-tagger{ab2p-block-elem-R415} \ -} -# ||dgrad-host.com/banner.$domain=rootden.ru (advblock.txt: 5647) -.dgrad-host.com/banner\. - -#ab2p-block-elem-R416 -{+client-header-tagger{ab2p-block-elem-R416} \ -} -# ||wtprn.com/images/$domain=rprradio.com (easylistchina+easylist.txt: 41204) -.wtprn.com/images/ -# ||wtprn.com/images/$domain=rprradio.com (easylist.txt: 30719) -.wtprn.com/images/ - -#ab2p-block-elem-R417 -{+client-header-tagger{ab2p-block-elem-R417} \ -} -# ||vcdn.biz^$domain=rusfolder.com|rusfolder.net|rutube.ru (advblock.txt: 6537) -.vcdn.biz - -#ab2p-block-elem-R418 -{+client-header-tagger{ab2p-block-elem-R418} \ -} -# //94.198.53.135^$object,subdocument,domain=rutracker.org (advblock.txt: 5376) -94.198.53.135 -# //195.82.146.52^$domain=rutracker.org (advblock.txt: 5375) -195.82.146.52 - -#ab2p-block-elem-R419 -{+client-header-tagger{ab2p-block-elem-R419} \ -} -# ||dhgate.com^$third-party,domain=sammyhub.com (easylistchina+easylist.txt: 40137) -.dhgate.com -# ||dhgate.com^$third-party,domain=sammyhub.com (easylist.txt: 29652) -.dhgate.com - -#ab2p-block-elem-R420 -{+client-header-tagger{ab2p-block-elem-R420} \ -} -# /afp/*$domain=scol.com.cn (easylistchina+easylist.txt: 1122) -/(.*/)?afp/.* - -#ab2p-block-elem-R421 -{+client-header-tagger{ab2p-block-elem-R421} \ -} -# ||fastpic.ru^$domain=screenlist.ru (advblock.txt: 5701) -.fastpic.ru - -#ab2p-block-elem-R422 -{+client-header-tagger{ab2p-block-elem-R422} \ -} -# ||rackcdn.com^$script,domain=search.aol.com (easylistchina+easylist.txt: 40821) -.rackcdn.com -# ||rackcdn.com^$script,domain=search.aol.com (easylist.txt: 30336) -.rackcdn.com - -#ab2p-block-elem-R423 -{+client-header-tagger{ab2p-block-elem-R423} \ -} -# ||r.search.yahoo.com/_ylt=*;_ylu=*.r.msn.com$popup,domain=search.yahoo.com (easylistchina+easylist.txt: 46178) -.r.search.yahoo.com/_ylt=.*;_ylu=.*\.r\.msn\.com -# ||r.search.yahoo.com/_ylt=*;_ylu=*.r.msn.com$popup,domain=search.yahoo.com (easylist.txt: 35693) -.r.search.yahoo.com/_ylt=.*;_ylu=.*\.r\.msn\.com - -#ab2p-block-elem-R424 -{+client-header-tagger{ab2p-block-elem-R424} \ -} -# ||datalock.ru^*player.swf|$domain=seasonvar.ru (advblock.txt: 5631) -.datalock.ru/.*player\.swf$ - -#ab2p-block-elem-R425 -{+client-header-tagger{ab2p-block-elem-R425} \ -} -# ||pamaradio.com^$popup,domain=secureupload.eu (easylistchina+easylist.txt: 46172) -.pamaradio.com -# ||pamaradio.com^$popup,domain=secureupload.eu (easylist.txt: 35687) -.pamaradio.com - -#ab2p-block-elem-R426 -{+client-header-tagger{ab2p-block-elem-R426} \ -} -# /sendspace-pop.$popup,domain=sendspace.com (easylistchina+easylist.txt: 46102) -/(.*/)?sendspace-pop\. -sendspace-pop.*. -# ||216.151.186.5^*/serve.php?$domain=sendspace.com (easylistchina+easylist.txt: 41957) -.216.151.186.5/.*/serve\.php\? -# /sendspace-pop.$popup,domain=sendspace.com (easylist.txt: 35617) -/(.*/)?sendspace-pop\. -sendspace-pop.*. -# ||216.151.186.5^*/serve.php?$domain=sendspace.com (easylist.txt: 31472) -.216.151.186.5/.*/serve\.php\? - -#ab2p-block-elem-R427 -{+client-header-tagger{ab2p-block-elem-R427} \ -} -# /images/20$domain=sex169.info|sex169.org (easylistchina+easylist.txt: 1161) -/(.*/)?images/20 - -#ab2p-block-elem-R428 -{+client-header-tagger{ab2p-block-elem-R428} \ -} -# ||iweek.ly^$domain=share.popgo.org (easylistchina+easylist.txt: 3570) -.iweek.ly - -#ab2p-block-elem-R429 -{+client-header-tagger{ab2p-block-elem-R429} \ -} -# ||hcdn.co/scripts/shadowbox/shadowbox.js$domain=shared.sx (easylistchina+easylist.txt: 43316) -.hcdn.co/scripts/shadowbox/shadowbox\.js -# ||hcdn.co/scripts/shadowbox/shadowbox.js$domain=shared.sx (easylist.txt: 32831) -.hcdn.co/scripts/shadowbox/shadowbox\.js - -#ab2p-block-elem-R430 -{+client-header-tagger{ab2p-block-elem-R430} \ -} -# ||truckingunlimited.com^$popup,domain=sharpfile.com (easylistchina+easylist.txt: 41363) -.truckingunlimited.com -# ||truckingunlimited.com^$popup,domain=sharpfile.com (easylist.txt: 30878) -.truckingunlimited.com - -#ab2p-block-elem-R431 -{+client-header-tagger{ab2p-block-elem-R431} \ -} -# ||wp.com^*/banners/$domain=showbiz411.com (easylistchina+easylist.txt: 45655) -.wp.com/.*/banners/ -# ||wp.com^*/banners/$domain=showbiz411.com (easylist.txt: 35170) -.wp.com/.*/banners/ - -#ab2p-block-elem-R432 -{+client-header-tagger{ab2p-block-elem-R432} \ -} -# ||url.cn^$domain=shuajizhijia.com (easylistchina+easylist.txt: 4939) -.url.cn - -#ab2p-block-elem-R433 -{+client-header-tagger{ab2p-block-elem-R433} \ -} -# /helper/special$domain=siliconrus.com|tjournal.ru (advblock.txt: 5385) -/(.*/)?helper/special - -#ab2p-block-elem-R434 -{+client-header-tagger{ab2p-block-elem-R434} \ -} -# ||gratuit.niloo.fr^$popup,domain=simophone.com (easylistchina+easylist.txt: 46148) -.gratuit.niloo.fr -# ||gratuit.niloo.fr^$popup,domain=simophone.com (easylist.txt: 35663) -.gratuit.niloo.fr - -#ab2p-block-elem-R435 -{+client-header-tagger{ab2p-block-elem-R435} \ -} -# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina+easylist.txt: 4817) -.tietuku.com - -#ab2p-block-elem-R436 -{+client-header-tagger{ab2p-block-elem-R436} \ -} -# ||prod-skybet.s3.amazonaws.com^$domain=skysports.com (easylistchina+easylist.txt: 40794) -.prod-skybet.s3.amazonaws.com -# ||prod-skybet.s3.amazonaws.com^$domain=skysports.com (easylist.txt: 30309) -.prod-skybet.s3.amazonaws.com - -#ab2p-block-elem-R437 -{+client-header-tagger{ab2p-block-elem-R437} \ -} -# ||cloudfront.net/images/amazon/$domain=slader.com (easylistchina+easylist.txt: 39965) -.cloudfront.net/images/amazon/ -# ||amazonaws.com/images/a/$domain=slader.com (easylistchina+easylist.txt: 39747) -.amazonaws.com/images/a/ -# ||cloudfront.net/images/amazon/$domain=slader.com (easylist.txt: 29480) -.cloudfront.net/images/amazon/ -# ||amazonaws.com/images/a/$domain=slader.com (easylist.txt: 29262) -.amazonaws.com/images/a/ - -#ab2p-block-elem-R438 -{+client-header-tagger{ab2p-block-elem-R438} \ -} -# ||devtools2.networkcities.net/wp-content/uploads/output_trLIFi.gif$domain=smallseotools.com (easylistchina+easylist.txt: 42751) -.devtools2.networkcities.net/wp-content/uploads/output_trLIFi\.gif -# ||devtools2.networkcities.net/wp-content/uploads/output_trLIFi.gif$domain=smallseotools.com (easylist.txt: 32266) -.devtools2.networkcities.net/wp-content/uploads/output_trLIFi\.gif - -#ab2p-block-elem-R439 -{+client-header-tagger{ab2p-block-elem-R439} \ -} -# ||bookingbuddy.com/js/bookingbuddy.strings.php?$domain=smartertravel.com (easylistchina+easylist.txt: 42377) -.bookingbuddy.com/js/bookingbuddy\.strings\.php\? -# ||bookingbuddy.com/js/bookingbuddy.strings.php?$domain=smartertravel.com (easylist.txt: 31892) -.bookingbuddy.com/js/bookingbuddy\.strings\.php\? - -#ab2p-block-elem-R440 -{+client-header-tagger{ab2p-block-elem-R440} \ -} -# ||gpm-digital.com^$domain=smexo.tv (advblock.txt: 6648) -.gpm-digital.com -# ||googlesyndication.com^$domain=smexo.tv (advblock.txt: 6647) -.googlesyndication.com - -#ab2p-block-elem-R441 -{+client-header-tagger{ab2p-block-elem-R441} \ -} -# ||smi2.tv/aa/$script,domain=smi2.ru (advblock.txt: 6406) -.smi2.tv/aa/ - -#ab2p-block-elem-R442 -{+client-header-tagger{ab2p-block-elem-R442} \ -} -# /?placement=$script,domain=sockshare.com (easylistchina+easylist.txt: 41904) -/(.*/)?\?placement= -# /?placement=$script,domain=sockshare.com (easylist.txt: 31419) -/(.*/)?\?placement= - -#ab2p-block-elem-R443 -{+client-header-tagger{ab2p-block-elem-R443} \ -} -# ||softpedia-static.com/images/afh/$domain=softpedia.com (easylistchina+easylist.txt: 44831) -.softpedia-static.com/images/afh/ -# ||softpedia-static.com/images/afh/$domain=softpedia.com (easylist.txt: 34346) -.softpedia-static.com/images/afh/ - -#ab2p-block-elem-R444 -{+client-header-tagger{ab2p-block-elem-R444} \ -} -# ||songspk.name/fidelity.html$domain=songs.pk|songspk.name (easylistchina+easylist.txt: 44841) -.songspk.name/fidelity\.html -# ||songspk.name/fidelity.html$domain=songs.pk|songspk.name (easylist.txt: 34356) -.songspk.name/fidelity\.html - -#ab2p-block-elem-R445 -{+client-header-tagger{ab2p-block-elem-R445} \ -} -# ||amazonaws.com^*/site-takeover/$domain=songza.com (easylistchina+easylist.txt: 42145) -.amazonaws.com/.*/site-takeover/ -# ||amazonaws.com^*/site-takeover/$domain=songza.com (easylist.txt: 31660) -.amazonaws.com/.*/site-takeover/ - -#ab2p-block-elem-R446 -{+client-header-tagger{ab2p-block-elem-R446} \ -} -# ||sinaimg.cn/large/*.gif$domain=souqiu8.com|zhaofuli.club (easylistchina+easylist.txt: 4577) -.sinaimg.cn/large/.*\.gif - -#ab2p-block-elem-R447 -{+client-header-tagger{ab2p-block-elem-R447} \ -} -# |https://$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45919) -# |http://$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45918) -# ||wistia.net/embed/$domain=speedtest.net (easylistchina+easylist.txt: 45616) -.wistia.net/embed/ -# |https://$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35434) -# |http://$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35433) -# ||wistia.net/embed/$domain=speedtest.net (easylist.txt: 35131) -.wistia.net/embed/ - -#ab2p-block-elem-R448 -{+client-header-tagger{ab2p-block-elem-R448} \ -} -# ||media.mtvnservices.com/player/scripts/mtvn_player_control.js$domain=spike.com (easylistchina+easylist.txt: 43913) -.media.mtvnservices.com/player/scripts/mtvn_player_control\.js -# ||media.mtvnservices.com/player/scripts/mtvn_player_control.js$domain=spike.com (easylist.txt: 33428) -.media.mtvnservices.com/player/scripts/mtvn_player_control\.js - -#ab2p-block-elem-R449 -{+client-header-tagger{ab2p-block-elem-R449} \ -} -# |http://*=*&$third-party,xmlhttprequest,domain=sporcle.com (easylistchina+easylist.txt: 46073) -/.*=.*& -# .com/lib/f=$third-party,xmlhttprequest,domain=sporcle.com (easylistchina+easylist.txt: 46071) -/.*\.com/lib/f= -.*.com/lib/f= -# ||spcontentcdn.net^$domain=sporcle.com (easylistchina+easylist.txt: 44857) -.spcontentcdn.net -# ||d6vwe9xdz9i45.cloudfront.net/psa.js$domain=sporcle.com (easylistchina+easylist.txt: 42663) -.d6vwe9xdz9i45.cloudfront.net/psa\.js -# |http://*.com^*|*$script,third-party,domain=sporcle.com (easylistchina+easylist.txt: 41920) -/.*\.com[^\w%.-].*\|.* -.*.com/.*\|.* -# |http://*=*&$third-party,xmlhttprequest,domain=sporcle.com (easylist.txt: 35588) -/.*=.*& -# .com/lib/f=$third-party,xmlhttprequest,domain=sporcle.com (easylist.txt: 35586) -/.*\.com/lib/f= -.*.com/lib/f= -# ||spcontentcdn.net^$domain=sporcle.com (easylist.txt: 34372) -.spcontentcdn.net -# ||d6vwe9xdz9i45.cloudfront.net/psa.js$domain=sporcle.com (easylist.txt: 32178) -.d6vwe9xdz9i45.cloudfront.net/psa\.js -# |http://*.com^*|*$script,third-party,domain=sporcle.com (easylist.txt: 31435) -/.*\.com[^\w%.-].*\|.* -.*.com/.*\|.* - -#ab2p-block-elem-R450 -{+client-header-tagger{ab2p-block-elem-R450} \ -} -# ||tumblr.com^*/tumblr_mht2lq0XUC1rmg71eo1_500.gif$domain=stocporn.com (easylistchina+easylist.txt: 41764) -.tumblr.com/.*/tumblr_mht2lq0XUC1rmg71eo1_500\.gif -# ||tumblr.com^*/tumblr_mht2lq0XUC1rmg71eo1_500.gif$domain=stocporn.com (easylist.txt: 31279) -.tumblr.com/.*/tumblr_mht2lq0XUC1rmg71eo1_500\.gif - -#ab2p-block-elem-R451 -{+client-header-tagger{ab2p-block-elem-R451} \ -} -# ||lp.longtailvideo.com^$domain=stopgame.ru (advblock.txt: 6009) -.lp.longtailvideo.com - -#ab2p-block-elem-R452 -{+client-header-tagger{ab2p-block-elem-R452} \ -} -# /ycpiframe.aspx$domain=strtv.cn (easylistchina+easylist.txt: 1240) -/(.*/)?ycpiframe\.aspx -ycpiframe.aspx*. - -#ab2p-block-elem-R453 -{+client-header-tagger{ab2p-block-elem-R453} \ -} -# ||stuff.priceme.co.nz^$domain=stuff.co.nz (easylistchina+easylist.txt: 44939) -.stuff.priceme.co.nz -# ||beyondd.co.nz/ezibuy/$third-party,domain=stuff.co.nz (easylistchina+easylist.txt: 42327) -.beyondd.co.nz/ezibuy/ -# ||neighbourly.co.nz^$subdocument,domain=stuff.co.nz (easylistchina+easylist.txt: 40672) -.neighbourly.co.nz -# ||stuff.priceme.co.nz^$domain=stuff.co.nz (easylist.txt: 34454) -.stuff.priceme.co.nz -# ||beyondd.co.nz/ezibuy/$third-party,domain=stuff.co.nz (easylist.txt: 31842) -.beyondd.co.nz/ezibuy/ -# ||neighbourly.co.nz^$subdocument,domain=stuff.co.nz (easylist.txt: 30187) -.neighbourly.co.nz - -#ab2p-block-elem-R454 -{+client-header-tagger{ab2p-block-elem-R454} \ -} -# /sungg/*$domain=sun0769.com (easylistchina+easylist.txt: 1218) -/(.*/)?sungg/.* - -#ab2p-block-elem-R455 -{+client-header-tagger{ab2p-block-elem-R455} \ -} -# ||fuckandcdn.com/sun/sunstatic/frms/$subdocument,domain=sunporno.com (easylistchina+easylist.txt: 46434) -.fuckandcdn.com/sun/sunstatic/frms/ -# ||fuckandcdn.com/sun/sunstatic/frms/$subdocument,domain=sunporno.com (easylist.txt: 35949) -.fuckandcdn.com/sun/sunstatic/frms/ - -#ab2p-block-elem-R456 -{+client-header-tagger{ab2p-block-elem-R456} \ -} -# ||imgur.com^$image,domain=talksport.com (easylistchina+easylist.txt: 40443) -.imgur.com -# ||imgur.com^$image,domain=talksport.com (easylist.txt: 29958) -.imgur.com - -#ab2p-block-elem-R457 -{+client-header-tagger{ab2p-block-elem-R457} \ -} -# ^user_id^*^stream_id^$script,domain=tapochek.net|unionpeer.org (advblock.txt: 5405) -/(.*[^\w%.-])?user_id[^\w%.-].*[^\w%.-]stream_id[^\w%.-] - -#ab2p-block-elem-R458 -{+client-header-tagger{ab2p-block-elem-R458} \ -} -# ||tbs.com^*/ad_policy.xml$object-subrequest,domain=tbs.com (easylistchina+easylist.txt: 44991) -.tbs.com/.*/ad_policy\.xml -# ||tbs.com^*/ad_policy.xml$object-subrequest,domain=tbs.com (easylist.txt: 34506) -.tbs.com/.*/ad_policy\.xml - -#ab2p-block-elem-R459 -{+client-header-tagger{ab2p-block-elem-R459} \ -} -# ||fileparadox.in/free$popup,domain=tdarkangel.com (easylistchina+easylist.txt: 47076) -.fileparadox.in/free -# ||fileparadox.in/free$popup,domain=tdarkangel.com (easylist.txt: 36591) -.fileparadox.in/free - -#ab2p-block-elem-R460 -{+client-header-tagger{ab2p-block-elem-R460} \ -} -# ||amazonaws.com/videos/$domain=technewstoday.com (easylistchina+easylist.txt: 42142) -.amazonaws.com/videos/ -# ||amazonaws.com/videos/$domain=technewstoday.com (easylist.txt: 31657) -.amazonaws.com/videos/ - -#ab2p-block-elem-R461 -{+client-header-tagger{ab2p-block-elem-R461} \ -} -# ||tpucdn.com/images/bnnrs/$domain=techpowerup.com (easylistchina+easylist.txt: 45245) -.tpucdn.com/images/bnnrs/ -# ||tpucdn.com/images/b/$domain=techpowerup.com (easylistchina+easylist.txt: 45244) -.tpucdn.com/images/b/ -# ||tpucdn.com/images/bnnrs/$domain=techpowerup.com (easylist.txt: 34760) -.tpucdn.com/images/bnnrs/ -# ||tpucdn.com/images/b/$domain=techpowerup.com (easylist.txt: 34759) -.tpucdn.com/images/b/ - -#ab2p-block-elem-R462 -{+client-header-tagger{ab2p-block-elem-R462} \ -} -# ||pladform.ru/player?pl=35495$domain=teledidar.tv (advblock.txt: 6226) -.pladform.ru/player\?pl=35495 - -#ab2p-block-elem-R463 -{+client-header-tagger{ab2p-block-elem-R463} \ -} -# ||histats.com/js15.js$domain=televisaofutebol.com (easylistchina+easylist.txt: 46080) -.histats.com/js15\.js -# ||histats.com/js15.js$domain=televisaofutebol.com (easylist.txt: 35595) -.histats.com/js15\.js - -#ab2p-block-elem-R464 -{+client-header-tagger{ab2p-block-elem-R464} \ -} -# ||wordpress.com^*/chive-skin-$image,domain=thechive.com (easylistchina+easylist.txt: 45633) -.wordpress.com/.*/chive-skin- -# ||wordpress.com^*/chive-skin-$image,domain=thechive.com (easylist.txt: 35148) -.wordpress.com/.*/chive-skin- - -#ab2p-block-elem-R465 -{+client-header-tagger{ab2p-block-elem-R465} \ -} -# ||wpcomwidgets.com^$domain=thegrio.com (easylistchina+easylist.txt: 45659) -.wpcomwidgets.com -# ||wpcomwidgets.com^$domain=thegrio.com (easylist.txt: 35174) -.wpcomwidgets.com - -#ab2p-block-elem-R466 -{+client-header-tagger{ab2p-block-elem-R466} \ -} -# ||filmreel.tv^$domain=thepiratebay.si (easylistchina+easylist.txt: 40263) -.filmreel.tv -# ||filmreel.tv^$domain=thepiratebay.si (easylist.txt: 29778) -.filmreel.tv - -#ab2p-block-elem-R467 -{+client-header-tagger{ab2p-block-elem-R467} \ -} -# ||goo.gl^$popup,domain=thisav.com (easylistchina+easylist.txt: 47077) -.goo.gl -# ||goo.gl^$popup,domain=thisav.com (easylist.txt: 36592) -.goo.gl - -#ab2p-block-elem-R468 -{+client-header-tagger{ab2p-block-elem-R468} \ -} -# ||serving.portal.dmflex.com^$domain=thisdaylive.com (easylistchina+easylist.txt: 40899) -.serving.portal.dmflex.com -# ||serving.portal.dmflex.com^$domain=thisdaylive.com (easylist.txt: 30414) -.serving.portal.dmflex.com - -#ab2p-block-elem-R469 -{+client-header-tagger{ab2p-block-elem-R469} \ -} -# ||netdna-cdn.com^*/tiwib-lootr-ad.png$domain=thisiswhyimbroke.com (easylistchina+easylist.txt: 44120) -.netdna-cdn.com/.*/tiwib-lootr-ad\.png -# ||netdna-cdn.com^*/tiwib-lootr-ad.png$domain=thisiswhyimbroke.com (easylist.txt: 33635) -.netdna-cdn.com/.*/tiwib-lootr-ad\.png - -#ab2p-block-elem-R470 -{+client-header-tagger{ab2p-block-elem-R470} \ -} -# ||junph.cn^$domain=tiexue.net (easylistchina+easylist.txt: 3673) -.junph.cn - -#ab2p-block-elem-R471 -{+client-header-tagger{ab2p-block-elem-R471} \ -} -# ||booking.com/general.html?$domain=timeout.com (easylistchina+easylist.txt: 39875) -.booking.com/general\.html\? -# ||booking.com/general.html?$domain=timeout.com (easylist.txt: 29390) -.booking.com/general\.html\? - -#ab2p-block-elem-R472 -{+client-header-tagger{ab2p-block-elem-R472} \ -} -# ||tinychat.com/channel?frame=true&$subdocument,domain=tinypaste.com (easylistchina+easylist.txt: 45184) -.tinychat.com/channel\?frame=true& -# ||tinychat.com/channel?frame=true&$subdocument,domain=tinypaste.com (easylist.txt: 34699) -.tinychat.com/channel\?frame=true& - -#ab2p-block-elem-R473 -{+client-header-tagger{ab2p-block-elem-R473} \ -} -# ||tmz.vo.llnwd.net^*/sponsorship/$domain=tmz.com (easylistchina+easylist.txt: 45192) -.tmz.vo.llnwd.net/.*/sponsorship/ -# ||tmz.vo.llnwd.net^*/sponsorship/$domain=tmz.com (easylist.txt: 34707) -.tmz.vo.llnwd.net/.*/sponsorship/ - -#ab2p-block-elem-R474 -{+client-header-tagger{ab2p-block-elem-R474} \ -} -# ||194.14.0.39/pia_wide.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylistchina+easylist.txt: 41951) -.194.14.0.39/pia_wide\.png -# ||194.14.0.39/pia.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylistchina+easylist.txt: 41950) -.194.14.0.39/pia\.png -# ||194.14.0.39/pia_wide.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylist.txt: 31466) -.194.14.0.39/pia_wide\.png -# ||194.14.0.39/pia.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylist.txt: 31465) -.194.14.0.39/pia\.png - -#ab2p-block-elem-R475 -{+client-header-tagger{ab2p-block-elem-R475} \ -} -# ||kxcdn.com/dlbutton3.png$domain=torlock.com (easylistchina+easylist.txt: 43712) -.kxcdn.com/dlbutton3\.png -# ||kxcdn.com/dlbutton1.png$domain=torlock.com (easylistchina+easylist.txt: 43711) -.kxcdn.com/dlbutton1\.png -# ||kxcdn.com/dlbutton3.png$domain=torlock.com (easylist.txt: 33227) -.kxcdn.com/dlbutton3\.png -# ||kxcdn.com/dlbutton1.png$domain=torlock.com (easylist.txt: 33226) -.kxcdn.com/dlbutton1\.png - -#ab2p-block-elem-R476 -{+client-header-tagger{ab2p-block-elem-R476} \ -} -# ||aiosearch.com^$popup,domain=torrent-finder.info (easylistchina+easylist.txt: 46110) -.aiosearch.com -# ||aiosearch.com^$popup,domain=torrent-finder.info (easylist.txt: 35625) -.aiosearch.com - -#ab2p-block-elem-R477 -{+client-header-tagger{ab2p-block-elem-R477} \ -} -# ||runetki.tv^$popup,domain=torrent-pirat.com (advblock.txt: 40) -.runetki.tv - -#ab2p-block-elem-R478 -{+client-header-tagger{ab2p-block-elem-R478} \ -} -# ||vizortv.com^$subdocument,domain=torrentszona.com (advblock.txt: 6948) -.vizortv.com -# ||torrentsporno.com^$subdocument,domain=torrentszona.com (advblock.txt: 6946) -.torrentsporno.com -# ||torrentsline.com^$subdocument,domain=torrentszona.com (advblock.txt: 6945) -.torrentsline.com -# ||torrentsfilm.com^$subdocument,domain=torrentszona.com (advblock.txt: 6944) -.torrentsfilm.com -# ||onlinepsyholog.com^$subdocument,domain=torrentszona.com (advblock.txt: 6943) -.onlinepsyholog.com -# ||luxtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6942) -.luxtorrents.com -# ||listtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6941) -.listtorrents.com -# ||lifetorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6939) -.lifetorrents.com -# ||kinovizor.com^$subdocument,domain=torrentszona.com (advblock.txt: 6938) -.kinovizor.com -# ||funtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6937) -.funtorrents.com - -#ab2p-block-elem-R479 -{+client-header-tagger{ab2p-block-elem-R479} \ -} -# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina+easylist.txt: 5321) -.yupoo.com/3126961304/ - -#ab2p-block-elem-R480 -{+client-header-tagger{ab2p-block-elem-R480} \ -} -# ||t8.*.com/?$xmlhttprequest,domain=tube8.com (easylistchina+easylist.txt: 46910) -.t8.*./.*\.com/\? -.t8.*.com/\? -# ||t8.*.com/?$xmlhttprequest,domain=tube8.com (easylist.txt: 36425) -.t8.*./.*\.com/\? -.t8.*.com/\? - -#ab2p-block-elem-R481 -{+client-header-tagger{ab2p-block-elem-R481} \ -} -# ||cwer.ws^$popup,domain=turbobit.net (advblock.txt: 33) -.cwer.ws - -#ab2p-block-elem-R482 -{+client-header-tagger{ab2p-block-elem-R482} \ -} -# ||limbohost.net^$popup,domain=tusfiles.net (easylistchina+easylist.txt: 46163) -.limbohost.net -# ||limbohost.net^$popup,domain=tusfiles.net (easylist.txt: 35678) -.limbohost.net - -#ab2p-block-elem-R483 -{+client-header-tagger{ab2p-block-elem-R483} \ -} -# ||videoplaza.tv^$object-subrequest,third-party,domain=tv4play.se (easylistchina+easylist.txt: 37931) -.videoplaza.tv -# ||videoplaza.tv^$object-subrequest,third-party,domain=tv4play.se (easylist.txt: 27446) -.videoplaza.tv - -#ab2p-block-elem-R484 -{+client-header-tagger{ab2p-block-elem-R484} \ -} -# ||84.234.22.104/ads/$domain=tvcatchup.com (easylistchina+easylist.txt: 41990) -.84.234.22.104/ads/ -# ||84.234.22.104/ads/$domain=tvcatchup.com (easylist.txt: 31505) -.84.234.22.104/ads/ - -#ab2p-block-elem-R485 -{+client-header-tagger{ab2p-block-elem-R485} \ -} -# ||zoomin.tv/video/*.flv$third-party,domain=twitch.tv (easylistchina+easylist.txt: 41242) -.zoomin.tv/video/.*\.flv -# ||zoomin.tv/video/*.flv$third-party,domain=twitch.tv (easylist.txt: 30757) -.zoomin.tv/video/.*\.flv - -#ab2p-block-elem-R486 -{+client-header-tagger{ab2p-block-elem-R486} \ -} -# ||ictv-ic-ec.indieclicktv.com/media/videos/$object-subrequest,domain=twitchfilm.com (easylistchina+easylist.txt: 43424) -.ictv-ic-ec.indieclicktv.com/media/videos/ -# ||ictv-ic-ec.indieclicktv.com/media/videos/$object-subrequest,domain=twitchfilm.com (easylist.txt: 32939) -.ictv-ic-ec.indieclicktv.com/media/videos/ - -#ab2p-block-elem-R487 -{+client-header-tagger{ab2p-block-elem-R487} \ -} -# /img/*$image,domain=txzqw.com (easylistchina+easylist.txt: 1168) -/(.*/)?img/.* -# /gif/*$image,domain=txzqw.com (easylistchina+easylist.txt: 1153) -/(.*/)?gif/.* - -#ab2p-block-elem-R488 -{+client-header-tagger{ab2p-block-elem-R488} \ -} -# ||itv.com/priority/$object-subrequest,domain=u.tv (easylistchina+easylist.txt: 43575) -.itv.com/priority/ -# ||itv.com/priority/$object-subrequest,domain=u.tv (easylist.txt: 33090) -.itv.com/priority/ - -#ab2p-block-elem-R489 -{+client-header-tagger{ab2p-block-elem-R489} \ -} -# /nexp/dok2v=*/cloudflare/rocket.js$script,domain=ubuntugeek.com (easylistchina+easylist.txt: 41913) -/(.*/)?nexp/dok2v=.*/cloudflare/rocket\.js -# /nexp/dok2v=*/cloudflare/rocket.js$script,domain=ubuntugeek.com (easylist.txt: 31428) -/(.*/)?nexp/dok2v=.*/cloudflare/rocket\.js - -#ab2p-block-elem-R490 -{+client-header-tagger{ab2p-block-elem-R490} \ -} -# /lagou-$domain=uisdc.com (easylistchina+easylist.txt: 1187) -/(.*/)?lagou- -lagou-*. - -#ab2p-block-elem-R491 -{+client-header-tagger{ab2p-block-elem-R491} \ -} -# ||ustatik.com/_img/promo/takeovers_$domain=ultimate-guitar.com (easylistchina+easylist.txt: 45386) -.ustatik.com/_img/promo/takeovers_ -# ||ustatik.com/_img/promo/takeovers/$domain=ultimate-guitar.com (easylistchina+easylist.txt: 45385) -.ustatik.com/_img/promo/takeovers/ -# ||ustatik.com/_img/promo/takeovers_$domain=ultimate-guitar.com (easylist.txt: 34901) -.ustatik.com/_img/promo/takeovers_ -# ||ustatik.com/_img/promo/takeovers/$domain=ultimate-guitar.com (easylist.txt: 34900) -.ustatik.com/_img/promo/takeovers/ - -#ab2p-block-elem-R492 -{+client-header-tagger{ab2p-block-elem-R492} \ -} -# .cloudfront.net^$domain=unionpeer.org (advblock.txt: 1852) -/.*\.cloudfront\.net[^\w%.-] -.*.cloudfront.net - -#ab2p-block-elem-R493 -{+client-header-tagger{ab2p-block-elem-R493} \ -} -# ||postimg.org/998w2sb0b/blackops2hack.gif$domain=unknowncheats.me (easylistchina+easylist.txt: 44425) -.postimg.org/998w2sb0b/blackops2hack\.gif -# ||ilikecheats.net/images/$image,domain=unknowncheats.me (easylistchina+easylist.txt: 43439) -.ilikecheats.net/images/ -# ||postimg.org/998w2sb0b/blackops2hack.gif$domain=unknowncheats.me (easylist.txt: 33940) -.postimg.org/998w2sb0b/blackops2hack\.gif -# ||ilikecheats.net/images/$image,domain=unknowncheats.me (easylist.txt: 32954) -.ilikecheats.net/images/ - -#ab2p-block-elem-R494 -{+client-header-tagger{ab2p-block-elem-R494} \ -} -# /bannerpic/*$domain=uopera.net (easylistchina+easylist.txt: 1133) -/(.*/)?bannerpic/.* - -#ab2p-block-elem-R495 -{+client-header-tagger{ab2p-block-elem-R495} \ -} -# ||short.zain.biz^$popup,domain=up09.com (easylistchina+easylist.txt: 46181) -.short.zain.biz -# ||short.zain.biz^$popup,domain=up09.com (easylist.txt: 35696) -.short.zain.biz - -#ab2p-block-elem-R496 -{+client-header-tagger{ab2p-block-elem-R496} \ -} -# ||hexupload.com^*.gif$domain=uploadbaz.com (easylistchina+easylist.txt: 43340) -.hexupload.com/.*\.gif -# ||hexupload.com^*.gif$domain=uploadbaz.com (easylist.txt: 32855) -.hexupload.com/.*\.gif - -#ab2p-block-elem-R497 -{+client-header-tagger{ab2p-block-elem-R497} \ -} -# ||adf.ly^$popup,domain=uploadcore.com|urgrove.com (easylistchina+easylist.txt: 46107) -.adf.ly -# ||adf.ly^$popup,domain=uploadcore.com|urgrove.com (easylist.txt: 35622) -.adf.ly - -#ab2p-block-elem-R498 -{+client-header-tagger{ab2p-block-elem-R498} \ -} -# ||spyw.com^$domain=uploadlw.com (easylistchina+easylist.txt: 44875) -.spyw.com -# ||vze.com^$domain=uploadlw.com (easylistchina+easylist.txt: 41147) -.vze.com -# ||milanomoda.info^$domain=uploadlw.com (easylistchina+easylist.txt: 40617) -.milanomoda.info -# ||spyw.com^$domain=uploadlw.com (easylist.txt: 34390) -.spyw.com -# ||vze.com^$domain=uploadlw.com (easylist.txt: 30662) -.vze.com -# ||milanomoda.info^$domain=uploadlw.com (easylist.txt: 30132) -.milanomoda.info - -#ab2p-block-elem-R499 -{+client-header-tagger{ab2p-block-elem-R499} \ -} -# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina+easylist.txt: 4475) -.sdo.com - -#ab2p-block-elem-R500 -{+client-header-tagger{ab2p-block-elem-R500} \ -} -# /friends/*$image,domain=v2ex.com (easylistchina+easylist.txt: 1147) -/(.*/)?friends/.* -# /assets/sidebar/*$domain=v2ex.com (easylistchina+easylist.txt: 1124) -/(.*/)?assets/sidebar/.* - -#ab2p-block-elem-R501 -{+client-header-tagger{ab2p-block-elem-R501} \ -} -# ||nesk.co^$popup,domain=veehd.com (easylistchina+easylist.txt: 46168) -.nesk.co -# ||nesk.co^$popup,domain=veehd.com (easylist.txt: 35683) -.nesk.co - -#ab2p-block-elem-R502 -{+client-header-tagger{ab2p-block-elem-R502} \ -} -# /uploads/payad/*$domain=via-midgard.info|via-midgard1.info (advblock.txt: 5401) -/(.*/)?uploads/payad/.* - -#ab2p-block-elem-R503 -{+client-header-tagger{ab2p-block-elem-R503} \ -} -# ||moevideo.net/getit/$object-subrequest,domain=videochart.net (easylistchina+easylist.txt: 44008) -.moevideo.net/getit/ -# ||moevideo.net/getit/$object-subrequest,domain=videochart.net (easylist.txt: 33523) -.moevideo.net/getit/ - -#ab2p-block-elem-R504 -{+client-header-tagger{ab2p-block-elem-R504} \ -} -# ||vidspot.net^$subdocument,domain=vidspot.net (easylistchina+easylist.txt: 45444) -.vidspot.net -# ||vidspot.net^$subdocument,domain=vidspot.net (easylist.txt: 34959) -.vidspot.net - -#ab2p-block-elem-R505 -{+client-header-tagger{ab2p-block-elem-R505} \ -} -# ||babereporters.info^$popup,domain=viewcube.org (easylistchina+easylist.txt: 41813) -.babereporters.info -# ||babereporters.info^$popup,domain=viewcube.org (easylist.txt: 31328) -.babereporters.info - -#ab2p-block-elem-R506 -{+client-header-tagger{ab2p-block-elem-R506} \ -} -# /wp-content/plugins/wbounce/*$script,domain=viralcraze.net (easylistchina+easylist.txt: 41916) -/(.*/)?wp-content/plugins/wbounce/.* -# /wp-content/plugins/wbounce/*$script,domain=viralcraze.net (easylist.txt: 31431) -/(.*/)?wp-content/plugins/wbounce/.* - -#ab2p-block-elem-R507 -{+client-header-tagger{ab2p-block-elem-R507} \ -} -# ||jizz.best^$popup,domain=vivo.sx (easylistchina+easylist.txt: 46159) -.jizz.best -# ||jizz.best^$popup,domain=vivo.sx (easylist.txt: 35674) -.jizz.best - -#ab2p-block-elem-R508 -{+client-header-tagger{ab2p-block-elem-R508} \ -} -# ||safe.vk-saver.in.ua^$domain=vk-saver.in.ua (advblock.txt: 6369) -.safe.vk-saver.in.ua - -#ab2p-block-elem-R509 -{+client-header-tagger{ab2p-block-elem-R509} \ -} -# ||superfish.com^$domain=vk.com (advblock.txt: 6439) -.superfish.com - -#ab2p-block-elem-R510 -{+client-header-tagger{ab2p-block-elem-R510} \ -} -# ||video.thestaticvube.com/video/*.mp4$object-subrequest,domain=vube.com (easylistchina+easylist.txt: 45414) -.video.thestaticvube.com/video/.*\.mp4 -# ||video.thestaticvube.com/video/*.mp4$object-subrequest,domain=vube.com (easylist.txt: 34929) -.video.thestaticvube.com/video/.*\.mp4 - -#ab2p-block-elem-R511 -{+client-header-tagger{ab2p-block-elem-R511} \ -} -# .ru/inc/$subdocument,domain=vz.ru (advblock.txt: 5372) -/.*\.ru/inc/ -.*.ru/inc/ - -#ab2p-block-elem-R512 -{+client-header-tagger{ab2p-block-elem-R512} \ -} -# ||alicdn.com^$domain=wangyueblog.com|xiadele.com (easylistchina+easylist.txt: 2079) -.alicdn.com - -#ab2p-block-elem-R513 -{+client-header-tagger{ab2p-block-elem-R513} \ -} -# ||twt-static.washtimes.com^$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45923) -.twt-static.washtimes.com -# ||twt-static.washtimes.com^$script,domain=washingtontimes.com (easylist.txt: 35438) -.twt-static.washtimes.com - -#ab2p-block-elem-R514 -{+client-header-tagger{ab2p-block-elem-R514} \ -} -# ||wegrin.com^$popup,domain=watchfreemovies.ch (easylistchina+easylist.txt: 46211) -.wegrin.com -# ||wegrin.com^$popup,domain=watchfreemovies.ch (easylist.txt: 35726) -.wegrin.com - -#ab2p-block-elem-R515 -{+client-header-tagger{ab2p-block-elem-R515} \ -} -# ||whtsrv3.com^*==$domain=webhostingtalk.com (easylistchina+easylist.txt: 45598) -.whtsrv3.com/.*== -# /*;sz=*;ord=$domain=webhostingtalk.com (easylistchina+easylist.txt: 41902) -/(.*/)?.*;sz=.*;ord= -/.*;sz=.*;ord= -# ||whtsrv3.com^*==$domain=webhostingtalk.com (easylist.txt: 35113) -.whtsrv3.com/.*== -# /*;sz=*;ord=$domain=webhostingtalk.com (easylist.txt: 31417) -/(.*/)?.*;sz=.*;ord= -/.*;sz=.*;ord= - -#ab2p-block-elem-R516 -{+client-header-tagger{ab2p-block-elem-R516} \ -} -# ||ientrymail.com/webheadtools$domain=webpronews.com (easylistchina+easylist.txt: 43432) -.ientrymail.com/webheadtools -# ||ientrymail.com/webheadtools$domain=webpronews.com (easylist.txt: 32947) -.ientrymail.com/webheadtools - -#ab2p-block-elem-R517 -{+client-header-tagger{ab2p-block-elem-R517} \ -} -# ||static.plista.com^$script,domain=wg-gesucht.de (easylistchina+easylist.txt: 44890) -.static.plista.com -# ||static.plista.com^$script,domain=wg-gesucht.de (easylist.txt: 34405) -.static.plista.com - -#ab2p-block-elem-R518 -{+client-header-tagger{ab2p-block-elem-R518} \ -} -# ||imgur.com^$domain=wgun.net (easylistchina+easylist.txt: 3482) -.imgur.com - -#ab2p-block-elem-R519 -{+client-header-tagger{ab2p-block-elem-R519} \ -} -# ||getresponse.com^$domain=wigflip.com (easylistchina+easylist.txt: 43210) -.getresponse.com -# ||getresponse.com^$domain=wigflip.com (easylist.txt: 32725) -.getresponse.com - -#ab2p-block-elem-R520 -{+client-header-tagger{ab2p-block-elem-R520} \ -} -# ||85.17.254.150^*.php?$domain=wiretarget.com (easylistchina+easylist.txt: 41991) -.85.17.254.150/.*\.php\? -# ||85.17.254.150^*.php?$domain=wiretarget.com (easylist.txt: 31506) -.85.17.254.150/.*\.php\? - -#ab2p-block-elem-R521 -{+client-header-tagger{ab2p-block-elem-R521} \ -} -# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina+easylist.txt: 4938) -.uploadhouse.com/.*\.gif - -#ab2p-block-elem-R522 -{+client-header-tagger{ab2p-block-elem-R522} \ -} -# ||212.7.200.164^$domain=wjunction.com (easylistchina+easylist.txt: 41956) -.212.7.200.164 -# ||212.7.200.164^$domain=wjunction.com (easylist.txt: 31471) -.212.7.200.164 - -#ab2p-block-elem-R523 -{+client-header-tagger{ab2p-block-elem-R523} \ -} -# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1232) -/(.*/)?wp-content/uploads/.*vpn -# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1231) -/(.*/)?wp-content/uploads/.*hidemyass -# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1230) -/(.*/)?Webbanner_ -# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1113) -/(.*/)?ad_nydus\.png - -#ab2p-block-elem-R524 -{+client-header-tagger{ab2p-block-elem-R524} \ -} -# /attachment/album/*$domain=www.52hardware.com (easylistchina+easylist.txt: 1127) -/(.*/)?attachment/album/.* - -#ab2p-block-elem-R525 -{+client-header-tagger{ab2p-block-elem-R525} \ -} -# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina+easylist.txt: 5433) -.zsg.kimi.com.tw -# .html|$domain=www.gamer.com.tw (easylistchina+easylist.txt: 1095) -/.*\.html$ -.*.html - -#ab2p-block-elem-R526 -{+client-header-tagger{ab2p-block-elem-R526} \ -} -# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina+easylist.txt: 4074) -.nmgnews.com.cn/swf/0/10/ - -#ab2p-block-elem-R527 -{+client-header-tagger{ab2p-block-elem-R527} \ -} -# .info^$script,domain=www.pornhub.com (easylistchina+easylist.txt: 46221) -/.*\.info[^\w%.-] -.*.info -# .info^$script,domain=www.pornhub.com (easylist.txt: 35736) -/.*\.info[^\w%.-] -.*.info - -#ab2p-block-elem-R528 -{+client-header-tagger{ab2p-block-elem-R528} \ -} -# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina+easylist.txt: 3435) -.img*./.*\.itiexue\.net/2.*\.gif -.img*.itiexue.net/2.*\.gif - -#ab2p-block-elem-R529 -{+client-header-tagger{ab2p-block-elem-R529} \ -} -# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1084) -.xmds.opd2c.com -# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1073) -.moezone.taobao.com -# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1050) -.acgpost.taobao.com -# /item.htm?$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1040) -/(.*/)?item\.htm\? - -#ab2p-block-elem-R530 -{+client-header-tagger{ab2p-block-elem-R530} \ -} -# ||88.208.23.$third-party,domain=xhamster.com (easylistchina+easylist.txt: 41393) -.88.208.23.*. -# ||88.208.23.$third-party,domain=xhamster.com (easylist.txt: 30908) -.88.208.23.*. - -#ab2p-block-elem-R531 -{+client-header-tagger{ab2p-block-elem-R531} \ -} -# ||meinbonusxxl.de^$domain=xup.in (easylistchina+easylist.txt: 43938) -.meinbonusxxl.de -# ||meinbonusxxl.de^$domain=xup.in (easylist.txt: 33453) -.meinbonusxxl.de - -#ab2p-block-elem-R532 -{+client-header-tagger{ab2p-block-elem-R532} \ -} -# ||fc2.com^$popup,domain=xvideos.com (easylistchina+easylist.txt: 47075) -.fc2.com -# ||fc2.com^$popup,domain=xvideos.com (easylist.txt: 36590) -.fc2.com - -#ab2p-block-elem-R533 -{+client-header-tagger{ab2p-block-elem-R533} \ -} -# ||109.201.146.142^$domain=xxxbunker.com (easylistchina+easylist.txt: 46229) -.109.201.146.142 -# ||109.201.146.142^$domain=xxxbunker.com (easylist.txt: 35744) -.109.201.146.142 - -#ab2p-block-elem-R534 -{+client-header-tagger{ab2p-block-elem-R534} \ -} -# ||yimg.com^*_west.swf$domain=yahoo.com (easylistchina+easylist.txt: 45757) -.yimg.com/.*_west\.swf -# ||yimg.com^*_north.swf$domain=yahoo.com (easylistchina+easylist.txt: 45756) -.yimg.com/.*_north\.swf -# ||yimg.com^*_east.swf$domain=yahoo.com (easylistchina+easylist.txt: 45755) -.yimg.com/.*_east\.swf -# ||yimg.com^*/yfpadobject.js$domain=yahoo.com (easylistchina+easylist.txt: 45754) -.yimg.com/.*/yfpadobject\.js -# ||yimg.com^*/yad*.js$domain=yahoo.com (easylistchina+easylist.txt: 45752) -.yimg.com/.*/yad.*\.js -# ||yimg.com^*/ya-answers-dmros-ssl-min.js$domain=yahoo.com (easylistchina+easylist.txt: 45751) -.yimg.com/.*/ya-answers-dmros-ssl-min\.js -# ||yimg.com^*/darla-secure-pre-min.js$domain=yahoo.com (easylistchina+easylist.txt: 45748) -.yimg.com/.*/darla-secure-pre-min\.js -# ||yimg.com^*/billboardv2r5min.js$domain=yahoo.com (easylistchina+easylist.txt: 45747) -.yimg.com/.*/billboardv2r5min\.js -# ||yimg.com/rq/darla/$domain=yahoo.com (easylistchina+easylist.txt: 45746) -.yimg.com/rq/darla/ -# ||yimg.com/la/i/wan/widgets/wjobs/$subdocument,domain=yahoo.com (easylistchina+easylist.txt: 45745) -.yimg.com/la/i/wan/widgets/wjobs/ -# ||yimg.com/i/i/de/cat/yahoo.html$domain=yahoo.com (easylistchina+easylist.txt: 45744) -.yimg.com/i/i/de/cat/yahoo\.html -# ||yimg.com/hl/ap/default/*_background$image,domain=yahoo.com (easylistchina+easylist.txt: 45743) -.yimg.com/hl/ap/default/.*_background -# ||yimg.com/hl/ap/*_takeover_$domain=yahoo.com (easylistchina+easylist.txt: 45742) -.yimg.com/hl/ap/.*_takeover_ -# ||yimg.com/dh/ap/default/*/skins_$image,domain=yahoo.com (easylistchina+easylist.txt: 45741) -.yimg.com/dh/ap/default/.*/skins_ -# ||yimg.com/cv/eng/*/970x250_$domain=yahoo.com (easylistchina+easylist.txt: 45740) -.yimg.com/cv/eng/.*/970x250_ -# ||yimg.com/cv/eng/*/635x100_$domain=yahoo.com (easylistchina+easylist.txt: 45739) -.yimg.com/cv/eng/.*/635x100_ -# ||yimg.com/cv/eng/*.webm$domain=yahoo.com (easylistchina+easylist.txt: 45738) -.yimg.com/cv/eng/.*\.webm -# ||yimg.com/cv/ae/us/audience/$image,domain=yahoo.com (easylistchina+easylist.txt: 45737) -.yimg.com/cv/ae/us/audience/ -# ||yimg.com/cv/ae/ca/audience/$image,domain=yahoo.com (easylistchina+easylist.txt: 45736) -.yimg.com/cv/ae/ca/audience/ -# ||yimg.com/ao/adv/$script,domain=yahoo.com (easylistchina+easylist.txt: 45735) -.yimg.com/ao/adv/ -# ||http.atlas.cdn.yimg.com/yamplus/video_*.mp4?$object-subrequest,domain=yahoo.com (easylistchina+easylist.txt: 43384) -.http.atlas.cdn.yimg.com/yamplus/video_.*\.mp4\? -# ||yimg.com^*_skin_$domain=yahoo.com (easylistchina+easylist.txt: 41224) -.yimg.com/.*_skin_ -# ||yimg.com^*/dianominewwidget2.html$domain=yahoo.com (easylistchina+easylist.txt: 41221) -.yimg.com/.*/dianominewwidget2\.html -# ||bankrate.com^$subdocument,domain=yahoo.com (easylistchina+easylist.txt: 39811) -.bankrate.com -# ||yimg.com^*_west.swf$domain=yahoo.com (easylist.txt: 35272) -.yimg.com/.*_west\.swf -# ||yimg.com^*_north.swf$domain=yahoo.com (easylist.txt: 35271) -.yimg.com/.*_north\.swf -# ||yimg.com^*_east.swf$domain=yahoo.com (easylist.txt: 35270) -.yimg.com/.*_east\.swf -# ||yimg.com^*/yfpadobject.js$domain=yahoo.com (easylist.txt: 35269) -.yimg.com/.*/yfpadobject\.js -# ||yimg.com^*/yad*.js$domain=yahoo.com (easylist.txt: 35267) -.yimg.com/.*/yad.*\.js -# ||yimg.com^*/ya-answers-dmros-ssl-min.js$domain=yahoo.com (easylist.txt: 35266) -.yimg.com/.*/ya-answers-dmros-ssl-min\.js -# ||yimg.com^*/darla-secure-pre-min.js$domain=yahoo.com (easylist.txt: 35263) -.yimg.com/.*/darla-secure-pre-min\.js -# ||yimg.com^*/billboardv2r5min.js$domain=yahoo.com (easylist.txt: 35262) -.yimg.com/.*/billboardv2r5min\.js -# ||yimg.com/rq/darla/$domain=yahoo.com (easylist.txt: 35261) -.yimg.com/rq/darla/ -# ||yimg.com/la/i/wan/widgets/wjobs/$subdocument,domain=yahoo.com (easylist.txt: 35260) -.yimg.com/la/i/wan/widgets/wjobs/ -# ||yimg.com/i/i/de/cat/yahoo.html$domain=yahoo.com (easylist.txt: 35259) -.yimg.com/i/i/de/cat/yahoo\.html -# ||yimg.com/hl/ap/default/*_background$image,domain=yahoo.com (easylist.txt: 35258) -.yimg.com/hl/ap/default/.*_background -# ||yimg.com/hl/ap/*_takeover_$domain=yahoo.com (easylist.txt: 35257) -.yimg.com/hl/ap/.*_takeover_ -# ||yimg.com/dh/ap/default/*/skins_$image,domain=yahoo.com (easylist.txt: 35256) -.yimg.com/dh/ap/default/.*/skins_ -# ||yimg.com/cv/eng/*/970x250_$domain=yahoo.com (easylist.txt: 35255) -.yimg.com/cv/eng/.*/970x250_ -# ||yimg.com/cv/eng/*/635x100_$domain=yahoo.com (easylist.txt: 35254) -.yimg.com/cv/eng/.*/635x100_ -# ||yimg.com/cv/eng/*.webm$domain=yahoo.com (easylist.txt: 35253) -.yimg.com/cv/eng/.*\.webm -# ||yimg.com/cv/ae/us/audience/$image,domain=yahoo.com (easylist.txt: 35252) -.yimg.com/cv/ae/us/audience/ -# ||yimg.com/cv/ae/ca/audience/$image,domain=yahoo.com (easylist.txt: 35251) -.yimg.com/cv/ae/ca/audience/ -# ||yimg.com/ao/adv/$script,domain=yahoo.com (easylist.txt: 35250) -.yimg.com/ao/adv/ -# ||http.atlas.cdn.yimg.com/yamplus/video_*.mp4?$object-subrequest,domain=yahoo.com (easylist.txt: 32899) -.http.atlas.cdn.yimg.com/yamplus/video_.*\.mp4\? -# ||yimg.com^*_skin_$domain=yahoo.com (easylist.txt: 30739) -.yimg.com/.*_skin_ -# ||yimg.com^*/dianominewwidget2.html$domain=yahoo.com (easylist.txt: 30736) -.yimg.com/.*/dianominewwidget2\.html -# ||bankrate.com^$subdocument,domain=yahoo.com (easylist.txt: 29326) -.bankrate.com - -#ab2p-block-elem-R535 -{+client-header-tagger{ab2p-block-elem-R535} \ -} -# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina+easylist.txt: 5338) -.yytcdn.com/swf/plugins_new\.xml\? - -#ab2p-block-elem-R536 -{+client-header-tagger{ab2p-block-elem-R536} \ -} -# ||uselessjunk.com^$domain=yoloselfie.com (easylistchina+easylist.txt: 41772) -.uselessjunk.com -# ||uselessjunk.com^$domain=yoloselfie.com (easylist.txt: 31287) -.uselessjunk.com - -#ab2p-block-elem-R537 -{+client-header-tagger{ab2p-block-elem-R537} \ -} -# ||youporn.com^$script,domain=youporn.com (easylistchina+easylist.txt: 47051) -.youporn.com -# ||phncdn.com/cb/youpornwebfront/css/skin.css$domain=youporn.com (easylistchina+easylist.txt: 46677) -.phncdn.com/cb/youpornwebfront/css/skin\.css -# ||phncdn.com/cb/youpornwebfront/css/babes.css$domain=youporn.com (easylistchina+easylist.txt: 46676) -.phncdn.com/cb/youpornwebfront/css/babes\.css -# ||youporn.com^$script,domain=youporn.com (easylist.txt: 36566) -.youporn.com -# ||phncdn.com/cb/youpornwebfront/css/skin.css$domain=youporn.com (easylist.txt: 36192) -.phncdn.com/cb/youpornwebfront/css/skin\.css -# ||phncdn.com/cb/youpornwebfront/css/babes.css$domain=youporn.com (easylist.txt: 36191) -.phncdn.com/cb/youpornwebfront/css/babes\.css - -#ab2p-block-elem-R538 -{+client-header-tagger{ab2p-block-elem-R538} \ -} -# ||youporn.com^$script,subdocument,domain=youporngay.com (easylistchina+easylist.txt: 47052) -.youporn.com -# ||youporn.com^$script,subdocument,domain=youporngay.com (easylist.txt: 36567) -.youporn.com - -#ab2p-block-elem-R539 -{+client-header-tagger{ab2p-block-elem-R539} \ -} -# ||ytimg.com^*_banner$domain=youtube.com (easylistchina+easylist.txt: 45794) -.ytimg.com/.*_banner -# ||ytimg.com^*/new_watch_background_*.jpg?$domain=youtube.com (easylistchina+easylist.txt: 45793) -.ytimg.com/.*/new_watch_background_.*\.jpg\? -# ||ytimg.com^*/new_watch_background.jpg?$domain=youtube.com (easylistchina+easylist.txt: 45792) -.ytimg.com/.*/new_watch_background\.jpg\? -# ||google.com/jsapi?autoload=*%22ads%22$script,domain=youtube.com (easylistchina+easylist.txt: 43253) -.google.com/jsapi\?autoload=.*%22ads%22 -# ||espn.vad.go.com^$domain=youtube.com (easylistchina+easylist.txt: 42897) -.espn.vad.go.com -# ||topspin.net/secure/media/$image,domain=youtube.com (easylistchina+easylist.txt: 41058) -.topspin.net/secure/media/ -# ||ytimg.com^*_banner$domain=youtube.com (easylist.txt: 35309) -.ytimg.com/.*_banner -# ||ytimg.com^*/new_watch_background_*.jpg?$domain=youtube.com (easylist.txt: 35308) -.ytimg.com/.*/new_watch_background_.*\.jpg\? -# ||ytimg.com^*/new_watch_background.jpg?$domain=youtube.com (easylist.txt: 35307) -.ytimg.com/.*/new_watch_background\.jpg\? -# ||google.com/jsapi?autoload=*%22ads%22$script,domain=youtube.com (easylist.txt: 32768) -.google.com/jsapi\?autoload=.*%22ads%22 -# ||espn.vad.go.com^$domain=youtube.com (easylist.txt: 32412) -.espn.vad.go.com -# ||topspin.net/secure/media/$image,domain=youtube.com (easylist.txt: 30573) -.topspin.net/secure/media/ - -#ab2p-block-elem-R540 -{+client-header-tagger{ab2p-block-elem-R540} \ -} -# ||vids.ma^$domain=youwatch.org (easylistchina+easylist.txt: 45441) -.vids.ma -# ||vids.ma^$domain=youwatch.org (easylist.txt: 34956) -.vids.ma - -#ab2p-block-elem-R541 -{+client-header-tagger{ab2p-block-elem-R541} \ -} -# /r/video/*$domain=youxi.baidu.com (easylistchina+easylist.txt: 1208) -/(.*/)?r/video/.* - -#ab2p-block-elem-R542 -{+client-header-tagger{ab2p-block-elem-R542} \ -} -# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina+easylist.txt: 3039) -.googleusercontent.com/.*=w800-h352-no - -#ab2p-block-elem-R543 -{+client-header-tagger{ab2p-block-elem-R543} \ -} -# ||srcdd.com^$domain=zasv.com (easylistchina+easylist.txt: 4668) -.srcdd.com - -#ab2p-block-elem-R544 -{+client-header-tagger{ab2p-block-elem-R544} \ -} -# ||ip-ads.de^$domain=zattoo.com (easylistchina+easylist.txt: 43546) -.ip-ads.de -# ||emsservice.de/videos/$domain=zattoo.com (easylistchina+easylist.txt: 42874) -.emsservice.de/videos/ -# ||emsservice.de.s3.amazonaws.com/videos/$domain=zattoo.com (easylistchina+easylist.txt: 42873) -.emsservice.de.s3.amazonaws.com/videos/ -# ||ip-ads.de^$domain=zattoo.com (easylist.txt: 33061) -.ip-ads.de -# ||emsservice.de/videos/$domain=zattoo.com (easylist.txt: 32389) -.emsservice.de/videos/ -# ||emsservice.de.s3.amazonaws.com/videos/$domain=zattoo.com (easylist.txt: 32388) -.emsservice.de.s3.amazonaws.com/videos/ - -#ab2p-block-elem-R545 -{+client-header-tagger{ab2p-block-elem-R545} \ -} -# ||178.209.48.7^$domain=zerohedge.com (easylistchina+easylist.txt: 41947) -.178.209.48.7 -# ||178.209.48.7^$domain=zerohedge.com (easylist.txt: 31462) -.178.209.48.7 - -#ab2p-block-elem-R546 -{+client-header-tagger{ab2p-block-elem-R546} \ -} -# ||sinaimg.cn/large/*.jpg?$domain=zhaofuli.club (easylistchina+easylist.txt: 4578) -.sinaimg.cn/large/.*\.jpg\? - -#ab2p-block-elem-R547 -{+client-header-tagger{ab2p-block-elem-R547} \ -} -# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina+easylist.txt: 1069) +# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina.txt: 1093) .kanzipai.com -#ab2p-block-elem-R548 -{+client-header-tagger{ab2p-block-elem-R548} \ +#ab2p-block-elem-Rn153 +{+client-header-tagger{ab2p-block-elem-Rn153} \ } -# ||zloy.im^$domain=zloy.bz (advblock.txt: 6631) -.zloy.im - -#ab2p-block-elem-R549 -{+client-header-tagger{ab2p-block-elem-R549} \ -} -# ||v*.zoomby.ru/video/$object-subrequest,domain=zoomby.ru (advblock.txt: 6527) -.v*./.*\.zoomby\.ru/video/ -.v*.zoomby.ru/video/ - -#ab2p-block-elem-R550 -{+client-header-tagger{ab2p-block-elem-R550} \ -} -# ||moneycaptcha.ru/swf/$domain=写械褌褋泻懈泄-屑懈褉.net (advblock.txt: 6082) -.moneycaptcha.ru/swf/ - -#ab2p-block-elem-Rn551 -{+client-header-tagger{ab2p-block-elem-Rn551} \ -} -# |http://*/gg/$domain=~11185.cn (easylistchina+easylist.txt: 251) +# |http://*/gg/$domain=~11185.cn (easylistchina.txt: 260) /(.*/)?gg/ -#ab2p-block-elem-Rn552 -{+client-header-tagger{ab2p-block-elem-Rn552} \ +#ab2p-block-elem-Rn154 +{+client-header-tagger{ab2p-block-elem-Rn154} \ } -# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina+easylist.txt: 791) +# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina.txt: 808) .img.uu1001.cn -#ab2p-block-elem-Rn553 -{+client-header-tagger{ab2p-block-elem-Rn553} \ +#ab2p-block-elem-Rn155 +{+client-header-tagger{ab2p-block-elem-Rn155} \ } -# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina+easylist.txt: 927) +# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina.txt: 948) .tanx.com -#ab2p-block-elem-Rn554 -{+client-header-tagger{ab2p-block-elem-Rn554} \ +#ab2p-block-elem-Rn156 +{+client-header-tagger{ab2p-block-elem-Rn156} \ } -# /ad-local.$domain=~ad-local.de (easylistchina+easylist.txt: 11240) -/(.*/)?ad-local\. -ad-local.*. -# /ad-local.$domain=~ad-local.de (easylist.txt: 755) -/(.*/)?ad-local\. -ad-local.*. - -#ab2p-block-elem-Rn555 -{+client-header-tagger{ab2p-block-elem-Rn555} \ -} -# .com/ad.$domain=~ad-tuning.de (easylistchina+easylist.txt: 10906) -/.*\.com/ad\. -.*.com/ad\. -# .com/ad.$domain=~ad-tuning.de (easylist.txt: 421) -/.*\.com/ad\. -.*.com/ad\. - -#ab2p-block-elem-Rn556 -{+client-header-tagger{ab2p-block-elem-Rn556} \ -} -# ||46.246.120.230^$third-party,domain=~adexprt.com.ip (easylistchina+easylist.txt: 34806) -.46.246.120.230 -# ||46.246.120.230^$third-party,domain=~adexprt.com.ip (easylist.txt: 24321) -.46.246.120.230 - -#ab2p-block-elem-Rn557 -{+client-header-tagger{ab2p-block-elem-Rn557} \ -} -# /adfactory.$domain=~adfactory.rocks (easylistchina+easylist.txt: 11943) -/(.*/)?adfactory\. -adfactory.*. -# /adfactory.$domain=~adfactory.rocks (easylist.txt: 1458) -/(.*/)?adfactory\. -adfactory.*. - -#ab2p-block-elem-Rn558 -{+client-header-tagger{ab2p-block-elem-Rn558} \ -} -# /adhost.$domain=~adhost.dk (easylistchina+easylist.txt: 12036) -/(.*/)?adhost\. -adhost.*. -# /adhost.$domain=~adhost.dk (easylist.txt: 1551) -/(.*/)?adhost\. -adhost.*. - -#ab2p-block-elem-Rn559 -{+client-header-tagger{ab2p-block-elem-Rn559} \ -} -# /adiro.$domain=~adiro.se (easylistchina+easylist.txt: 12082) -/(.*/)?adiro\. -adiro.*. -# /adiro.$domain=~adiro.se (easylist.txt: 1597) -/(.*/)?adiro\. -adiro.*. - -#ab2p-block-elem-Rn560 -{+client-header-tagger{ab2p-block-elem-Rn560} \ -} -# .adlabs.$domain=~adlabs.ru (easylistchina+easylist.txt: 10830) -/.*\.adlabs\. -.*.adlabs.*. -# .adlabs.$domain=~adlabs.ru (easylist.txt: 345) -/.*\.adlabs\. -.*.adlabs.*. - -#ab2p-block-elem-Rn561 -{+client-header-tagger{ab2p-block-elem-Rn561} \ -} -# /adline.$domain=~adline.co.il (easylistchina+easylist.txt: 12118) -/(.*/)?adline\. -adline.*. -# /adline.$domain=~adline.co.il (easylist.txt: 1633) -/(.*/)?adline\. -adline.*. - -#ab2p-block-elem-Rn562 -{+client-header-tagger{ab2p-block-elem-Rn562} \ -} -# ||62.27.51.163^$third-party,domain=~adlive.de.ip (easylistchina+easylist.txt: 34818) -.62.27.51.163 -# ||62.27.51.163^$third-party,domain=~adlive.de.ip (easylist.txt: 24333) -.62.27.51.163 - -#ab2p-block-elem-Rn563 -{+client-header-tagger{ab2p-block-elem-Rn563} \ -} -# /admax.$domain=~admax.cn|~admax.co|~admax.eu|~admax.fi|~admax.info|~admax.net|~admax.nu|~admax.org|~admax.se|~admax.us (easylistchina+easylist.txt: 12161) -/(.*/)?admax\. -admax.*. -# /admax.$domain=~admax.cn|~admax.co|~admax.eu|~admax.fi|~admax.info|~admax.net|~admax.nu|~admax.org|~admax.se|~admax.us (easylist.txt: 1676) -/(.*/)?admax\. -admax.*. - -#ab2p-block-elem-Rn564 -{+client-header-tagger{ab2p-block-elem-Rn564} \ -} -# /adnetwork.$domain=~adnetwork.ie (easylistchina+easylist.txt: 12197) -/(.*/)?adnetwork\. -adnetwork.*. -# /adnetwork.$domain=~adnetwork.ie (easylist.txt: 1712) -/(.*/)?adnetwork\. -adnetwork.*. - -#ab2p-block-elem-Rn565 -{+client-header-tagger{ab2p-block-elem-Rn565} \ -} -# .adnetwork.$domain=~adnetwork.ie|~adnetwork.sk (easylistchina+easylist.txt: 10832) -/.*\.adnetwork\. -.*.adnetwork.*. -# .adnetwork.$domain=~adnetwork.ie|~adnetwork.sk (easylist.txt: 347) -/.*\.adnetwork\. -.*.adnetwork.*. - -#ab2p-block-elem-Rn566 -{+client-header-tagger{ab2p-block-elem-Rn566} \ -} -# /adnext.$domain=~adnext.pl (easylistchina+easylist.txt: 12206) -/(.*/)?adnext\. -adnext.*. -# /adnext.$domain=~adnext.pl (easylist.txt: 1721) -/(.*/)?adnext\. -adnext.*. - -#ab2p-block-elem-Rn567 -{+client-header-tagger{ab2p-block-elem-Rn567} \ -} -# /adphoto.$domain=~adphoto.fr (easylistchina+easylist.txt: 12249) -/(.*/)?adphoto\. -adphoto.*. -# /adphoto.$domain=~adphoto.fr (easylist.txt: 1764) -/(.*/)?adphoto\. -adphoto.*. - -#ab2p-block-elem-Rn568 -{+client-header-tagger{ab2p-block-elem-Rn568} \ -} -# .adresult.$domain=~adresult.ch (easylistchina+easylist.txt: 10835) -/.*\.adresult\. -.*.adresult.*. -# .adresult.$domain=~adresult.ch (easylist.txt: 350) -/.*\.adresult\. -.*.adresult.*. - -#ab2p-block-elem-Rn569 -{+client-header-tagger{ab2p-block-elem-Rn569} \ -} -# /ads4.$domain=~ads4.city (easylistchina+easylist.txt: 12674) -/(.*/)?ads4\. -ads4.*. -# /ads4.$domain=~ads4.city (easylist.txt: 2189) -/(.*/)?ads4\. -ads4.*. - -#ab2p-block-elem-Rn570 -{+client-header-tagger{ab2p-block-elem-Rn570} \ -} -# .adService.$domain=~adservice.com (easylistchina+easylist.txt: 10860) -/.*\.adService\. -.*.adService.*. -# .adService.$domain=~adservice.com (easylist.txt: 375) -/.*\.adService\. -.*.adService.*. - -#ab2p-block-elem-Rn571 -{+client-header-tagger{ab2p-block-elem-Rn571} \ -} -# ||199.102.225.178^$third-party,domain=~adsimilate.ip (easylistchina+easylist.txt: 34763) -.199.102.225.178 -# ||199.102.225.178^$third-party,domain=~adsimilate.ip (easylist.txt: 24278) -.199.102.225.178 - -#ab2p-block-elem-Rn572 -{+client-header-tagger{ab2p-block-elem-Rn572} \ -} -# ||graphics.pop6.com/javascript/$script,third-party,domain=~adultfriendfinder.co.uk|~adultfriendfinder.com (easylistchina+easylist.txt: 41570) -.graphics.pop6.com/javascript/ -# ||graphics.pop6.com/javascript/$script,third-party,domain=~adultfriendfinder.co.uk|~adultfriendfinder.com (easylist.txt: 31085) -.graphics.pop6.com/javascript/ - -#ab2p-block-elem-Rn573 -{+client-header-tagger{ab2p-block-elem-Rn573} \ -} -# ://adv.$domain=~adv.ru|~adv.vg|~advids.co|~farapp.com|~forex-tv-online.com|~typeform.com|~welaika.com (easylistchina+easylist.txt: 16307) -/.*://adv\. -adv.*. -# ://adv.$domain=~adv.ru|~adv.vg|~advids.co|~farapp.com|~forex-tv-online.com|~typeform.com|~welaika.com (easylist.txt: 5822) -/.*://adv\. -adv.*. - -#ab2p-block-elem-Rn574 -{+client-header-tagger{ab2p-block-elem-Rn574} \ -} -# .advert.$domain=~advert.ly (easylistchina+easylist.txt: 10866) -/.*\.advert\. -.*.advert.*. -# .advert.$domain=~advert.ly (easylist.txt: 381) -/.*\.advert\. -.*.advert.*. - -#ab2p-block-elem-Rn575 -{+client-header-tagger{ab2p-block-elem-Rn575} \ -} -# /advertise.$domain=~advertise.apartments.com|~advertise.bingads.microsoft.com (easylistchina+easylist.txt: 13271) -/(.*/)?advertise\. -advertise.*. -# /advertise.$domain=~advertise.apartments.com|~advertise.bingads.microsoft.com (easylist.txt: 2786) -/(.*/)?advertise\. -advertise.*. - -#ab2p-block-elem-Rn576 -{+client-header-tagger{ab2p-block-elem-Rn576} \ -} -# /advertiser.$domain=~advertiser.growmobile.com|~panel.rightflow.com (easylistchina+easylist.txt: 13295) -/(.*/)?advertiser\. -advertiser.*. -# /advertiser.$domain=~advertiser.growmobile.com|~panel.rightflow.com (easylist.txt: 2810) -/(.*/)?advertiser\. -advertiser.*. - -#ab2p-block-elem-Rn577 -{+client-header-tagger{ab2p-block-elem-Rn577} \ -} -# /adworks.$domain=~adworks.co.il (easylistchina+easylist.txt: 13406) -/(.*/)?adworks\. -adworks.*. -# /adworks.$domain=~adworks.co.il (easylist.txt: 2921) -/(.*/)?adworks\. -adworks.*. - -#ab2p-block-elem-Rn578 -{+client-header-tagger{ab2p-block-elem-Rn578} \ -} -# /adx.$domain=~adx.uk.com (easylistchina+easylist.txt: 13414) -/(.*/)?adx\. -adx.*. -# /adx.$domain=~adx.uk.com (easylist.txt: 2929) -/(.*/)?adx\. -adx.*. - -#ab2p-block-elem-Rn579 -{+client-header-tagger{ab2p-block-elem-Rn579} \ -} -# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina+easylist.txt: 928) +# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina.txt: 949) .taobao.com/go/ -#ab2p-block-elem-Rn580 -{+client-header-tagger{ab2p-block-elem-Rn580} \ +#ab2p-block-elem-Rn157 +{+client-header-tagger{ab2p-block-elem-Rn157} \ } -# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina+easylist.txt: 648) +# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina.txt: 663) .alimama.cn -#ab2p-block-elem-Rn581 -{+client-header-tagger{ab2p-block-elem-Rn581} \ +#ab2p-block-elem-Rn158 +{+client-header-tagger{ab2p-block-elem-Rn158} \ } -# /annonse.$domain=~annonse.nu (easylistchina+easylist.txt: 13525) -/(.*/)?annonse\. -annonse.*. -# /annonse.$domain=~annonse.nu (easylist.txt: 3040) -/(.*/)?annonse\. -annonse.*. - -#ab2p-block-elem-Rn582 -{+client-header-tagger{ab2p-block-elem-Rn582} \ -} -# ||173.225.186.54^$third-party,domain=~apps.su.ip (easylistchina+easylist.txt: 39585) -.173.225.186.54 -# ||173.225.186.54^$third-party,domain=~apps.su.ip (easylist.txt: 29100) -.173.225.186.54 - -#ab2p-block-elem-Rn583 -{+client-header-tagger{ab2p-block-elem-Rn583} \ -} -# /asyncjs.$domain=~asyncjs.com (easylistchina+easylist.txt: 13562) -/(.*/)?asyncjs\. -asyncjs.*. -# /asyncjs.$domain=~asyncjs.com (easylist.txt: 3077) -/(.*/)?asyncjs\. -asyncjs.*. - -#ab2p-block-elem-Rn584 -{+client-header-tagger{ab2p-block-elem-Rn584} \ -} -# ||livejasmin.com^$third-party,domain=~awempire.com (easylistchina+easylist.txt: 41613) -.livejasmin.com -# ||livejasmin.com^$third-party,domain=~awempire.com (easylist.txt: 31128) -.livejasmin.com - -#ab2p-block-elem-Rn585 -{+client-header-tagger{ab2p-block-elem-Rn585} \ -} -# /advertiser/*$domain=~bingads.microsoft.com|~mobileapptracking.com|~trialpay.com (easylistchina+easylist.txt: 13296) -/(.*/)?advertiser/.* -# /advertiser/*$domain=~bingads.microsoft.com|~mobileapptracking.com|~trialpay.com (easylist.txt: 2811) -/(.*/)?advertiser/.* - -#ab2p-block-elem-Rn586 -{+client-header-tagger{ab2p-block-elem-Rn586} \ -} -# /blockadblock.$domain=~blockadblock.com (easylistchina+easylist.txt: 17022) -/(.*/)?blockadblock\. -blockadblock.*. -# /blockadblock.$domain=~blockadblock.com (easylist.txt: 6537) -/(.*/)?blockadblock\. -blockadblock.*. - -#ab2p-block-elem-Rn587 -{+client-header-tagger{ab2p-block-elem-Rn587} \ -} -# ||216.41.211.36/widget/$third-party,domain=~bpaww.com.ip (easylistchina+easylist.txt: 39593) -.216.41.211.36/widget/ -# ||216.41.211.36/widget/$third-party,domain=~bpaww.com.ip (easylist.txt: 29108) -.216.41.211.36/widget/ - -#ab2p-block-elem-Rn588 -{+client-header-tagger{ab2p-block-elem-Rn588} \ -} -# ||bt.kiev.ua^$domain=~bt.kiev.ua (advblock.txt: 873) -.bt.kiev.ua - -#ab2p-block-elem-Rn589 -{+client-header-tagger{ab2p-block-elem-Rn589} \ -} -# ||carnage.ru^$popup,domain=~carnage.ru|~karnage.ru|~sesterce.ru (advblock.txt: 126) -.carnage.ru - -#ab2p-block-elem-Rn590 -{+client-header-tagger{ab2p-block-elem-Rn590} \ -} -# .com/ad/$~third-party,domain=~channel4.com|~mediaplex.com (easylistchina+easylist.txt: 10908) -/.*\.com/ad/ -.*.com/ad/ -# .com/ad/$~third-party,domain=~channel4.com|~mediaplex.com (easylist.txt: 423) -/.*\.com/ad/ -.*.com/ad/ - -#ab2p-block-elem-Rn591 -{+client-header-tagger{ab2p-block-elem-Rn591} \ -} -# ||clickad.com.ua^$domain=~clickad.com.ua (advblock.txt: 895) -.clickad.com.ua - -#ab2p-block-elem-Rn592 -{+client-header-tagger{ab2p-block-elem-Rn592} \ -} -# ||complexmedianetwork.com/cdn/agenda.complex.com/$domain=~complex.com (easylistchina+easylist.txt: 39981) -.complexmedianetwork.com/cdn/agenda\.complex\.com/ -# ||complexmedianetwork.com/cdn/agenda.complex.com/$domain=~complex.com (easylist.txt: 29496) -.complexmedianetwork.com/cdn/agenda\.complex\.com/ - -#ab2p-block-elem-Rn593 -{+client-header-tagger{ab2p-block-elem-Rn593} \ -} -# ||pubdirecte.com^$third-party,domain=~debrideurstream.fr (easylistchina+easylist.txt: 37303) -.pubdirecte.com -# ||pubdirecte.com^$third-party,domain=~debrideurstream.fr (easylist.txt: 26818) -.pubdirecte.com - -#ab2p-block-elem-Rn594 -{+client-header-tagger{ab2p-block-elem-Rn594} \ -} -# ||204.93.181.78^$third-party,domain=~discountmags.ip (easylistchina+easylist.txt: 34772) -.204.93.181.78 -# ||204.93.181.78^$third-party,domain=~discountmags.ip (easylist.txt: 24287) -.204.93.181.78 - -#ab2p-block-elem-Rn595 -{+client-header-tagger{ab2p-block-elem-Rn595} \ -} -# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina+easylist.txt: 1988) +# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina.txt: 1976) .acg.178.com/.*/t_ -#ab2p-block-elem-Rn596 -{+client-header-tagger{ab2p-block-elem-Rn596} \ +#ab2p-block-elem-Rn159 +{+client-header-tagger{ab2p-block-elem-Rn159} \ } -# /duilian.$domain=~duilian.msra.cn (easylistchina+easylist.txt: 142) +# /duilian.$domain=~duilian.msra.cn (easylistchina.txt: 145) /(.*/)?duilian\. duilian.*. -#ab2p-block-elem-Rn597 -{+client-header-tagger{ab2p-block-elem-Rn597} \ +#ab2p-block-elem-Rn160 +{+client-header-tagger{ab2p-block-elem-Rn160} \ } -# ||217.115.147.241/media/$third-party,domain=~elb-kind.de.ip (easylistchina+easylist.txt: 39594) -.217.115.147.241/media/ -# ||217.115.147.241/media/$third-party,domain=~elb-kind.de.ip (easylist.txt: 29109) -.217.115.147.241/media/ - -#ab2p-block-elem-Rn598 -{+client-header-tagger{ab2p-block-elem-Rn598} \ -} -# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina+easylist.txt: 875) +# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina.txt: 894) .offcn.com -#ab2p-block-elem-Rn599 -{+client-header-tagger{ab2p-block-elem-Rn599} \ +#ab2p-block-elem-Rn161 +{+client-header-tagger{ab2p-block-elem-Rn161} \ } -# /etology.$domain=~etology.com (easylistchina+easylist.txt: 14203) -/(.*/)?etology\. -etology.*. -# /etology.$domain=~etology.com (easylist.txt: 3718) -/(.*/)?etology\. -etology.*. - -#ab2p-block-elem-Rn600 -{+client-header-tagger{ab2p-block-elem-Rn600} \ -} -# ||encyclopediadramatica.es/edf/$domain=~forum.encyclopediadramatica.es (easylistchina+easylist.txt: 42877) -.encyclopediadramatica.es/edf/ -# ||encyclopediadramatica.es/edf/$domain=~forum.encyclopediadramatica.es (easylist.txt: 32392) -.encyclopediadramatica.es/edf/ - -#ab2p-block-elem-Rn601 -{+client-header-tagger{ab2p-block-elem-Rn601} \ -} -# ||encyclopediadramatica.se/edf/$domain=~forum.encyclopediadramatica.se (easylistchina+easylist.txt: 42880) -.encyclopediadramatica.se/edf/ -# ||encyclopediadramatica.se/edf/$domain=~forum.encyclopediadramatica.se (easylist.txt: 32395) -.encyclopediadramatica.se/edf/ - -#ab2p-block-elem-Rn602 -{+client-header-tagger{ab2p-block-elem-Rn602} \ -} -# ||amazonaws.com/fotomag/$domain=~fotomag.com.ua (advblock.txt: 789) -.amazonaws.com/fotomag/ - -#ab2p-block-elem-Rn603 -{+client-header-tagger{ab2p-block-elem-Rn603} \ -} -# ||yourfuckbook.com^$third-party,domain=~fuckbookhookups.com (easylistchina+easylist.txt: 39469) -.yourfuckbook.com -# ||yourfuckbook.com^$third-party,domain=~fuckbookhookups.com (easylist.txt: 28984) -.yourfuckbook.com - -#ab2p-block-elem-Rn604 -{+client-header-tagger{ab2p-block-elem-Rn604} \ -} -# /floatad.$domain=~fwxgx.com (easylistchina+easylist.txt: 147) +# /floatad.$domain=~fwxgx.com (easylistchina.txt: 151) /(.*/)?floatad\. floatad.*. -#ab2p-block-elem-Rn605 -{+client-header-tagger{ab2p-block-elem-Rn605} \ +#ab2p-block-elem-Rn162 +{+client-header-tagger{ab2p-block-elem-Rn162} \ } -# ||online.ua/goods/$domain=~goods.ua (advblock.txt: 6174) -.online.ua/goods/ - -#ab2p-block-elem-Rn606 -{+client-header-tagger{ab2p-block-elem-Rn606} \ -} -# ||d2a0bnlkc0czvp.cloudfront.net^$domain=~gowatchit.com (easylistchina+easylist.txt: 40042) -.d2a0bnlkc0czvp.cloudfront.net -# ||d2a0bnlkc0czvp.cloudfront.net^$domain=~gowatchit.com (easylist.txt: 29557) -.d2a0bnlkc0czvp.cloudfront.net - -#ab2p-block-elem-Rn607 -{+client-header-tagger{ab2p-block-elem-Rn607} \ -} -# |http://gg.$third-party,domain=~guagua.cn (easylistchina+easylist.txt: 261) +# |http://gg.$third-party,domain=~guagua.cn (easylistchina.txt: 270) gg.*. -#ab2p-block-elem-Rn608 -{+client-header-tagger{ab2p-block-elem-Rn608} \ +#ab2p-block-elem-Rn163 +{+client-header-tagger{ab2p-block-elem-Rn163} \ } -# ||hitex.com.ua^$domain=~hitex.com.ua (advblock.txt: 1057) -.hitex.com.ua - -#ab2p-block-elem-Rn609 -{+client-header-tagger{ab2p-block-elem-Rn609} \ -} -# /advertisers/*$domain=~home.tapjoy.com|~panel.rightflow.com (easylistchina+easylist.txt: 13298) -/(.*/)?advertisers/.* -# /advertisers/*$domain=~home.tapjoy.com|~panel.rightflow.com (easylist.txt: 2813) -/(.*/)?advertisers/.* - -#ab2p-block-elem-Rn610 -{+client-header-tagger{ab2p-block-elem-Rn610} \ -} -# ||108.166.93.81/rotate/$domain=~infowars.com.ip (easylistchina+easylist.txt: 39579) -.108.166.93.81/rotate/ -# ||108.166.93.81/rotate/$domain=~infowars.com.ip (easylist.txt: 29094) -.108.166.93.81/rotate/ - -#ab2p-block-elem-Rn611 -{+client-header-tagger{ab2p-block-elem-Rn611} \ -} -# ||itsellservice.com.ua^$domain=~itsellservice.com.ua (advblock.txt: 1109) -.itsellservice.com.ua - -#ab2p-block-elem-Rn612 -{+client-header-tagger{ab2p-block-elem-Rn612} \ -} -# ||itsmygame.com.ua^$domain=~itsmygame.com.ua (advblock.txt: 1110) -.itsmygame.com.ua - -#ab2p-block-elem-Rn613 -{+client-header-tagger{ab2p-block-elem-Rn613} \ -} -# ||adf.ly/js/$third-party,domain=~j.gs|~q.gs (easylistchina+easylist.txt: 39671) -.adf.ly/js/ -# ||adf.ly/js/$third-party,domain=~j.gs|~q.gs (easylist.txt: 29186) -.adf.ly/js/ - -#ab2p-block-elem-Rn614 -{+client-header-tagger{ab2p-block-elem-Rn614} \ -} -# ||go.jetswap.com^$domain=~jetswap.com (advblock.txt: 2318) -.go.jetswap.com - -#ab2p-block-elem-Rn615 -{+client-header-tagger{ab2p-block-elem-Rn615} \ -} -# ||bw.pronto.ru^$domain=~job.ru (advblock.txt: 2068) -.bw.pronto.ru - -#ab2p-block-elem-Rn616 -{+client-header-tagger{ab2p-block-elem-Rn616} \ -} -# ||ad2games.com^$third-party,domain=~jobvite.com (easylistchina+easylist.txt: 34904) -.ad2games.com -# ||ad2games.com^$third-party,domain=~jobvite.com (easylist.txt: 24419) -.ad2games.com - -#ab2p-block-elem-Rn617 -{+client-header-tagger{ab2p-block-elem-Rn617} \ -} -# ||kinofilms.com.ua^$domain=~kinofilms.com.ua (advblock.txt: 1131) -.kinofilms.com.ua - -#ab2p-block-elem-Rn618 -{+client-header-tagger{ab2p-block-elem-Rn618} \ -} -# //rs.mail.ru/b$third-party,domain=~km.ru (advblock.txt: 6830) -rs.mail.ru/b - -#ab2p-block-elem-Rn619 -{+client-header-tagger{ab2p-block-elem-Rn619} \ -} -# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina+easylist.txt: 4409) +# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina.txt: 4399) .rm.sina.com.cn -#ab2p-block-elem-Rn620 -{+client-header-tagger{ab2p-block-elem-Rn620} \ +#ab2p-block-elem-Rn164 +{+client-header-tagger{ab2p-block-elem-Rn164} \ } -# .leads.su/$domain=~leads.su (advblock.txt: 1853) -/.*\.leads\.su/ -.*.leads.su +# ||lianmeng.360.cn^$domain=~lianmeng.360.cn (easylistchina.txt: 861) +.lianmeng.360.cn -#ab2p-block-elem-Rn621 -{+client-header-tagger{ab2p-block-elem-Rn621} \ +#ab2p-block-elem-Rn165 +{+client-header-tagger{ab2p-block-elem-Rn165} \ } -# ||209.15.224.6^$third-party,domain=~liverail-mlgtv.ip (easylistchina+easylist.txt: 39592) -.209.15.224.6 -# ||209.15.224.6^$third-party,domain=~liverail-mlgtv.ip (easylist.txt: 29107) -.209.15.224.6 +# ||bahamut.com.tw^*/2KU/*?v=$~collapse,image,domain=~m.gamer.com.tw (easylistchina.txt: 2144) +.bahamut.com.tw/.*/2KU/.*\?v= -#ab2p-block-elem-Rn622 -{+client-header-tagger{ab2p-block-elem-Rn622} \ +#ab2p-block-elem-Rn166 +{+client-header-tagger{ab2p-block-elem-Rn166} \ } -# ||magnet.kiev.ua^$domain=~magnet.kiev.ua (advblock.txt: 1193) -.magnet.kiev.ua - -#ab2p-block-elem-Rn623 -{+client-header-tagger{ab2p-block-elem-Rn623} \ -} -# ||95.131.238.35^$third-party,domain=~maltatoday.mt.ip (easylistchina+easylist.txt: 39610) -.95.131.238.35 -# ||95.131.238.35^$third-party,domain=~maltatoday.mt.ip (easylist.txt: 29125) -.95.131.238.35 - -#ab2p-block-elem-Rn624 -{+client-header-tagger{ab2p-block-elem-Rn624} \ -} -# ||mambo.kiev.ua^$domain=~mambo.kiev.ua (advblock.txt: 1196) -.mambo.kiev.ua - -#ab2p-block-elem-Rn625 -{+client-header-tagger{ab2p-block-elem-Rn625} \ -} -# ||mgid.com^$third-party,domain=~marketgid.com|~marketgid.com.ua (easylistchina+easylist.txt: 36875) -.mgid.com -# ||mgid.com^$third-party,domain=~marketgid.com|~marketgid.com.ua (easylist.txt: 26390) -.mgid.com - -#ab2p-block-elem-Rn626 -{+client-header-tagger{ab2p-block-elem-Rn626} \ -} -# ||dt07.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylistchina+easylist.txt: 36106) -.dt07.net -# ||dt00.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylistchina+easylist.txt: 36105) -.dt00.net -# ||dt07.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylist.txt: 25621) -.dt07.net -# ||dt00.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylist.txt: 25620) -.dt00.net - -#ab2p-block-elem-Rn627 -{+client-header-tagger{ab2p-block-elem-Rn627} \ -} -# -advertise.$domain=~mb-advertise.gr (easylistchina+easylist.txt: 10692) -/.*-advertise\. -.*-advertise.*. -# -advertise.$domain=~mb-advertise.gr (easylist.txt: 207) -/.*-advertise\. -.*-advertise.*. - -#ab2p-block-elem-Rn628 -{+client-header-tagger{ab2p-block-elem-Rn628} \ -} -# /adfarm.$~third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 11946) -/(.*/)?adfarm\. -adfarm.*. -# /adfarm.$~image,third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 11945) -/(.*/)?adfarm\. -adfarm.*. -# .com/ad/$~image,third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 10907) -/.*\.com/ad/ -.*.com/ad/ -# /adfarm.$~third-party,domain=~mediaplex.com (easylist.txt: 1461) -/(.*/)?adfarm\. -adfarm.*. -# /adfarm.$~image,third-party,domain=~mediaplex.com (easylist.txt: 1460) -/(.*/)?adfarm\. -adfarm.*. -# .com/ad/$~image,third-party,domain=~mediaplex.com (easylist.txt: 422) -/.*\.com/ad/ -.*.com/ad/ - -#ab2p-block-elem-Rn629 -{+client-header-tagger{ab2p-block-elem-Rn629} \ -} -# ||meganews.kiev.ua^$domain=~meganews.kiev.ua (advblock.txt: 1221) -.meganews.kiev.ua - -#ab2p-block-elem-Rn630 -{+client-header-tagger{ab2p-block-elem-Rn630} \ -} -# ||anyfiles.ru^$domain=~moi-progi.ru (advblock.txt: 796) -.anyfiles.ru - -#ab2p-block-elem-Rn631 -{+client-header-tagger{ab2p-block-elem-Rn631} \ -} -# ||adm.fwmrm.net/p/msnbc_live/$object-subrequest,third-party,domain=~msnbc.msn.com|~www.nbcnews.com (easylistchina+easylist.txt: 35046) -.adm.fwmrm.net/p/msnbc_live/ -# ||adm.fwmrm.net/p/msnbc_live/$object-subrequest,third-party,domain=~msnbc.msn.com|~www.nbcnews.com (easylist.txt: 24561) -.adm.fwmrm.net/p/msnbc_live/ - -#ab2p-block-elem-Rn632 -{+client-header-tagger{ab2p-block-elem-Rn632} \ -} -# ||mydirtyhobby.com^$third-party,domain=~my-dirty-hobby.com|~mydirtyhobby.de (easylistchina+easylist.txt: 40654) -.mydirtyhobby.com -# ||mydirtyhobby.com^$third-party,domain=~my-dirty-hobby.com|~mydirtyhobby.de (easylist.txt: 30169) -.mydirtyhobby.com - -#ab2p-block-elem-Rn633 -{+client-header-tagger{ab2p-block-elem-Rn633} \ -} -# //rs.mail.ru/b*.swf|$domain=~my.mail.ru (advblock.txt: 6809) -rs.mail.ru/b.*\.swf$ - -#ab2p-block-elem-Rn634 -{+client-header-tagger{ab2p-block-elem-Rn634} \ -} -# /mydirtyhobby.$domain=~mydirtyhobby.com|~mydirtyhobby.de (easylistchina+easylist.txt: 15052) -/(.*/)?mydirtyhobby\. -mydirtyhobby.*. -# /mydirtyhobby.$domain=~mydirtyhobby.com|~mydirtyhobby.de (easylist.txt: 4567) -/(.*/)?mydirtyhobby\. -mydirtyhobby.*. - -#ab2p-block-elem-Rn635 -{+client-header-tagger{ab2p-block-elem-Rn635} \ -} -# /images/ad.$domain=~ngohq.com (easylistchina+easylist.txt: 14654) -/(.*/)?images/ad\. -# /images/ad.$domain=~ngohq.com (easylist.txt: 4169) -/(.*/)?images/ad\. - -#ab2p-block-elem-Rn636 -{+client-header-tagger{ab2p-block-elem-Rn636} \ -} -# ||novostimira.$domain=~novostimira.com|~novostimira.com.ua|~novostimira.ua (advblock.txt: 1806) -.novostimira.*. - -#ab2p-block-elem-Rn637 -{+client-header-tagger{ab2p-block-elem-Rn637} \ -} -# ||nster.net^$third-party,domain=~nster.com (easylistchina+easylist.txt: 37034) -.nster.net -# ||nster.net^$third-party,domain=~nster.com (easylist.txt: 26549) -.nster.net - -#ab2p-block-elem-Rn638 -{+client-header-tagger{ab2p-block-elem-Rn638} \ -} -# /advertising-$domain=~outbrain.com (easylistchina+easylist.txt: 13302) -/(.*/)?advertising- -advertising-*. -# /advertising-$domain=~outbrain.com (easylist.txt: 2817) -/(.*/)?advertising- -advertising-*. - -#ab2p-block-elem-Rn639 -{+client-header-tagger{ab2p-block-elem-Rn639} \ -} -# ?advertiserid=$domain=~outbrain.com|~seek.co.nz|~seek.com.au (easylistchina+easylist.txt: 16419) -/.*\?advertiserid= -# ?advertiserid=$domain=~outbrain.com|~seek.co.nz|~seek.com.au (easylist.txt: 5934) -/.*\?advertiserid= - -#ab2p-block-elem-Rn640 -{+client-header-tagger{ab2p-block-elem-Rn640} \ -} -# ||ozone.ru^$third-party,domain=~ozon.ru|~ozonru.co.il|~ozonru.com|~ozonru.eu|~ozonru.kz (easylistchina+easylist.txt: 39175) -.ozone.ru -# ||ozone.ru^$third-party,domain=~ozon.ru|~ozonru.co.il|~ozonru.com|~ozonru.eu|~ozonru.kz (easylist.txt: 28690) -.ozone.ru - -#ab2p-block-elem-Rn641 -{+client-header-tagger{ab2p-block-elem-Rn641} \ -} -# ||173.199.120.7/delivery/$domain=~p2p.adserver.ip (easylistchina+easylist.txt: 39584) -.173.199.120.7/delivery/ -# ||87.230.102.24^$third-party,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 34831) -.87.230.102.24 -# ||209.222.8.217^$third-party,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 34774) -.209.222.8.217 -# ||173.199.120.7/delivery/$domain=~p2p.adserver.ip (easylist.txt: 29099) -.173.199.120.7/delivery/ -# ||87.230.102.24^$third-party,domain=~p2p.adserver.ip (easylist.txt: 24346) -.87.230.102.24 -# ||209.222.8.217^$third-party,domain=~p2p.adserver.ip (easylist.txt: 24289) -.209.222.8.217 - -#ab2p-block-elem-Rn642 -{+client-header-tagger{ab2p-block-elem-Rn642} \ -} -# ?advertiser_id=$domain=~panel.rightflow.com (easylistchina+easylist.txt: 16418) -/.*\?advertiser_id= -# /advertisers.$image,script,subdocument,domain=~panel.rightflow.com (easylistchina+easylist.txt: 13297) -/(.*/)?advertisers\. -advertisers.*. -# ?advertiser_id=$domain=~panel.rightflow.com (easylist.txt: 5933) -/.*\?advertiser_id= -# /advertisers.$image,script,subdocument,domain=~panel.rightflow.com (easylist.txt: 2812) -/(.*/)?advertisers\. -advertisers.*. - -#ab2p-block-elem-Rn643 -{+client-header-tagger{ab2p-block-elem-Rn643} \ -} -# /adwords.$domain=~ppc.ee (easylistchina+easylist.txt: 13402) -/(.*/)?adwords\. -adwords.*. -# /adwords.$domain=~ppc.ee (easylist.txt: 2917) -/(.*/)?adwords\. -adwords.*. - -#ab2p-block-elem-Rn644 -{+client-header-tagger{ab2p-block-elem-Rn644} \ -} -# ||qs.kiev.ua^$domain=~qs.kiev.ua (advblock.txt: 1400) -.qs.kiev.ua - -#ab2p-block-elem-Rn645 -{+client-header-tagger{ab2p-block-elem-Rn645} \ -} -# /redtram.$domain=~redtram.com|~redtram.fm (advblock.txt: 522) -/(.*/)?redtram\. -redtram.*. -# .redtram.$domain=~redtram.com|~redtram.fm (advblock.txt: 328) -/.*\.redtram\. -.*.redtram.*. - -#ab2p-block-elem-Rn646 -{+client-header-tagger{ab2p-block-elem-Rn646} \ -} -# ||rozetka.com.ua^$domain=~rozetka.com.ua (advblock.txt: 1451) -.rozetka.com.ua - -#ab2p-block-elem-Rn647 -{+client-header-tagger{ab2p-block-elem-Rn647} \ -} -# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina+easylist.txt: 245) +# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina.txt: 254) /.*\.tw/ad/ .*.tw/ad/ -#ab2p-block-elem-Rn648 -{+client-header-tagger{ab2p-block-elem-Rn648} \ +#ab2p-block-elem-Rn167 +{+client-header-tagger{ab2p-block-elem-Rn167} \ } -# |http://*/js/ad.$domain=~sac.net.cn (easylistchina+easylist.txt: 255) +# |http://*/js/ad.$domain=~sac.net.cn (easylistchina.txt: 264) /(.*/)?js/ad\. -#ab2p-block-elem-Rn649 -{+client-header-tagger{ab2p-block-elem-Rn649} \ +#ab2p-block-elem-Rn168 +{+client-header-tagger{ab2p-block-elem-Rn168} \ } -# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina+easylist.txt: 710) +# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina.txt: 726) .dotmore.com.tw -#ab2p-block-elem-Rn650 -{+client-header-tagger{ab2p-block-elem-Rn650} \ +#ab2p-block-elem-Rn169 +{+client-header-tagger{ab2p-block-elem-Rn169} \ } -# ||sedo.cachefly.net^$domain=~sedoparking.com (easylistchina+easylist.txt: 44709) -.sedo.cachefly.net -# ||sedo.cachefly.net^$domain=~sedoparking.com (easylist.txt: 34224) -.sedo.cachefly.net - -#ab2p-block-elem-Rn651 -{+client-header-tagger{ab2p-block-elem-Rn651} \ -} -# ||seo24.com.ua^$domain=~seo24.com.ua (advblock.txt: 1489) -.seo24.com.ua - -#ab2p-block-elem-Rn652 -{+client-header-tagger{ab2p-block-elem-Rn652} \ -} -# ||sextalk.com.ru^$domain=~sextalk.com.ru (advblock.txt: 1507) -.sextalk.com.ru - -#ab2p-block-elem-Rn653 -{+client-header-tagger{ab2p-block-elem-Rn653} \ -} -# ||188.138.1.45^$third-party,domain=~shatecraft.com.ip (easylistchina+easylist.txt: 34759) -.188.138.1.45 -# ||188.138.1.45^$third-party,domain=~shatecraft.com.ip (easylist.txt: 24274) -.188.138.1.45 - -#ab2p-block-elem-Rn654 -{+client-header-tagger{ab2p-block-elem-Rn654} \ -} -# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina+easylist.txt: 5001) +# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina.txt: 4978) .wan.sogoucdn.com/cdn/flash/ -#ab2p-block-elem-Rn655 -{+client-header-tagger{ab2p-block-elem-Rn655} \ +#ab2p-block-elem-Rn170 +{+client-header-tagger{ab2p-block-elem-Rn170} \ } -# /homepage_ads/*$domain=~swedishbeauty.com (easylistchina+easylist.txt: 14557) -/(.*/)?homepage_ads/.* -# /homepage_ads/*$domain=~swedishbeauty.com (easylist.txt: 4072) -/(.*/)?homepage_ads/.* - -#ab2p-block-elem-Rn656 -{+client-header-tagger{ab2p-block-elem-Rn656} \ -} -# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina+easylist.txt: 3370) +# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina.txt: 3355) .ifengimg.com/mappa/ -#ab2p-block-elem-Rn657 -{+client-header-tagger{ab2p-block-elem-Rn657} \ +#ab2p-block-elem-Rn171 +{+client-header-tagger{ab2p-block-elem-Rn171} \ } -# /advertising/*$~xmlhttprequest,domain=~temple.edu (easylistchina+easylist.txt: 13304) -/(.*/)?advertising/.* -# /advertising/*$~xmlhttprequest,domain=~temple.edu (easylist.txt: 2819) -/(.*/)?advertising/.* - -#ab2p-block-elem-Rn658 -{+client-header-tagger{ab2p-block-elem-Rn658} \ -} -# ||208.43.84.120/trueswordsa3.gif$third-party,domain=~trueswords.com.ip (easylistchina+easylist.txt: 39591) -.208.43.84.120/trueswordsa3\.gif -# ||208.43.84.120/trueswordsa3.gif$third-party,domain=~trueswords.com.ip (easylist.txt: 29106) -.208.43.84.120/trueswordsa3\.gif - -#ab2p-block-elem-Rn659 -{+client-header-tagger{ab2p-block-elem-Rn659} \ -} -# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina+easylist.txt: 73) +# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina.txt: 70) .s.yimg.com/.*/flash_general_ -#ab2p-block-elem-Rn660 -{+client-header-tagger{ab2p-block-elem-Rn660} \ +#ab2p-block-elem-Rn172 +{+client-header-tagger{ab2p-block-elem-Rn172} \ } -# /ad4.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11481) -/(.*/)?ad4\. -ad4.*. -# /ad3.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11466) -/(.*/)?ad3\. -ad3.*. -# /ad2.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11451) -/(.*/)?ad2\. -ad2.*. -# /ad1.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11430) -/(.*/)?ad1\. -ad1.*. -# /ad0.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11425) -/(.*/)?ad0\. -ad0.*. -# /ad4.$domain=~vereinslinie.de (easylist.txt: 996) -/(.*/)?ad4\. -ad4.*. -# /ad3.$domain=~vereinslinie.de (easylist.txt: 981) -/(.*/)?ad3\. -ad3.*. -# /ad2.$domain=~vereinslinie.de (easylist.txt: 966) -/(.*/)?ad2\. -ad2.*. -# /ad1.$domain=~vereinslinie.de (easylist.txt: 945) -/(.*/)?ad1\. -ad1.*. -# /ad0.$domain=~vereinslinie.de (easylist.txt: 940) -/(.*/)?ad0\. -ad0.*. - -#ab2p-block-elem-Rn661 -{+client-header-tagger{ab2p-block-elem-Rn661} \ -} -# ||viprelax.com.ua^$domain=~viprelax.com.ua (advblock.txt: 1679) -.viprelax.com.ua - -#ab2p-block-elem-Rn662 -{+client-header-tagger{ab2p-block-elem-Rn662} \ -} -# ||ero.ru^$third-party,domain=~vpets.ru (advblock.txt: 2237) -.ero.ru - -#ab2p-block-elem-Rn663 -{+client-header-tagger{ab2p-block-elem-Rn663} \ -} -# ||wau.com.ua^$domain=~wau.com.ua (advblock.txt: 1707) -.wau.com.ua - -#ab2p-block-elem-Rn664 -{+client-header-tagger{ab2p-block-elem-Rn664} \ -} -# ||wave525.com.ua^$domain=~wave525.com.ua (advblock.txt: 1708) -.wave525.com.ua - -#ab2p-block-elem-Rn665 -{+client-header-tagger{ab2p-block-elem-Rn665} \ -} -# ||worldofrest.com.ua^$domain=~worldofrest.com.ua (advblock.txt: 1736) -.worldofrest.com.ua - -#ab2p-block-elem-Rn666 -{+client-header-tagger{ab2p-block-elem-Rn666} \ -} -# ||cpm.wargaming.net^$popup,domain=~worldoftanks.ru (advblock.txt: 134) -.cpm.wargaming.net - -#ab2p-block-elem-Rn667 -{+client-header-tagger{ab2p-block-elem-Rn667} \ -} -# ||69.50.226.158^$third-party,domain=~worth1000.com.ip (easylistchina+easylist.txt: 39605) -.69.50.226.158 -# ||69.50.226.158^$third-party,domain=~worth1000.com.ip (easylist.txt: 29120) -.69.50.226.158 - -#ab2p-block-elem-Rn668 -{+client-header-tagger{ab2p-block-elem-Rn668} \ -} -# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina+easylist.txt: 4056) +# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina.txt: 4047) .news.sina.com.cn/pfpnews/js/libweb\.js -# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina+easylist.txt: 2593) +# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina.txt: 2579) .d5.sina.com.cn -#ab2p-block-elem-Rn669 -{+client-header-tagger{ab2p-block-elem-Rn669} \ +#ab2p-block-elem-Rn173 +{+client-header-tagger{ab2p-block-elem-Rn173} \ } -# /xtendmedia.$domain=~xtendmedia.dk (easylistchina+easylist.txt: 16257) -/(.*/)?xtendmedia\. -xtendmedia.*. -# /xtendmedia.$domain=~xtendmedia.dk (easylist.txt: 5772) -/(.*/)?xtendmedia\. -xtendmedia.*. - -#ab2p-block-elem-Rn670 -{+client-header-tagger{ab2p-block-elem-Rn670} \ -} -# ||yimg.com/no/$domain=~yahoo.com (easylistchina+easylist.txt: 5262) +# ||yimg.com/no/$domain=~yahoo.com (easylistchina.txt: 5236) .yimg.com/no/ -#ab2p-block-elem-Rn671 -{+client-header-tagger{ab2p-block-elem-Rn671} \ +#ab2p-block-elem-Rn174 +{+client-header-tagger{ab2p-block-elem-Rn174} \ } -# /picad/*$domain=~ychr.com (easylistchina+easylist.txt: 195) +# /picad/*$domain=~ychr.com (easylistchina.txt: 203) /(.*/)?picad/.* -#ab2p-block-elem-Rn672 -{+client-header-tagger{ab2p-block-elem-Rn672} \ +#ab2p-block-elem-Rn175 +{+client-header-tagger{ab2p-block-elem-Rn175} \ } -# ||114la.com^$third-party,domain=~ylmf.com (easylistchina+easylist.txt: 514) +# ||114la.com^$third-party,domain=~ylmf.com (easylistchina.txt: 527) .114la.com -#ab2p-block-elem-Rn673 -{+client-header-tagger{ab2p-block-elem-Rn673} \ -} -# ||173.245.86.115^$domain=~yobt.com.ip (easylistchina+easylist.txt: 38689) -.173.245.86.115 -# ||173.245.86.115^$domain=~yobt.com.ip (easylist.txt: 28204) -.173.245.86.115 - -#ab2p-block-elem-Rn674 -{+client-header-tagger{ab2p-block-elem-Rn674} \ -} -# _reklama_$domain=~youtube.com (easylistchina+easylist.txt: 16895) -/.*_reklama_ -# _reklama_$domain=~youtube.com (easylist.txt: 6410) -/.*_reklama_ - -#ab2p-block-elem-Rn675 -{+client-header-tagger{ab2p-block-elem-Rn675} \ -} -# ||zzima.com^$popup,domain=~zzima.com (advblock.txt: 199) -.zzima.com - #ab2p-block-request {+block{ adblock rules } \ +server-header-tagger{ab2p-block-s} \ } TAG:^ab2p-block-request$ -# ||ymages.org/prepop.php$popup (easylistchina+easylist.txt: 47094) -.ymages.org/prepop\.php -# ||r18.com/*utm_source$popup (easylistchina+easylist.txt: 47091) -.r18.com/.*utm_source -# ||publicagent.com/bigzpup.php$popup (easylistchina+easylist.txt: 47090) -.publicagent.com/bigzpup\.php -# ||pornuppz.info/out.php$popup (easylistchina+easylist.txt: 47089) -.pornuppz.info/out\.php -# ||pop.mrstiff.com^$popup (easylistchina+easylist.txt: 47086) -.pop.mrstiff.com -# ||pop.fapxl.com^$popup (easylistchina+easylist.txt: 47085) -.pop.fapxl.com -# ||pinporn.com/popunder/$popup (easylistchina+easylist.txt: 47084) -.pinporn.com/popunder/ -# ||namethatporn.com/ntpoo$popup (easylistchina+easylist.txt: 47083) -.namethatporn.com/ntpoo -# ||movies.askjolene.com/c64?clickid=$popup (easylistchina+easylist.txt: 47082) -.movies.askjolene.com/c64\?clickid= -# ||imagebam.com/redirect_awe.php$popup (easylistchina+easylist.txt: 47081) -.imagebam.com/redirect_awe\.php -# ||heganteens.com/exo.php$popup (easylistchina+easylist.txt: 47080) -.heganteens.com/exo\.php -# ||hegansex.com/exo.php$popup (easylistchina+easylist.txt: 47079) -.hegansex.com/exo\.php -# ||h2porn.com/pu.php$popup (easylistchina+easylist.txt: 47078) -.h2porn.com/pu\.php -# ||fantastube.com/track.php$popup (easylistchina+easylist.txt: 47074) -.fantastube.com/track\.php -# ||fantasti.cc^*?ad=$popup (easylistchina+easylist.txt: 47073) -.fantasti.cc/.*\?ad= -# ||eporner.com/pop.php$popup (easylistchina+easylist.txt: 47072) -.eporner.com/pop\.php -# ||ad.userporn.com^$popup (easylistchina+easylist.txt: 47071) -.ad.userporn.com -# ||zazzybabes.com/misc/virtuagirl-skin.js (easylistchina+easylist.txt: 47066) -.zazzybabes.com/misc/virtuagirl-skin\.js -# ||yuvutu.com^*/banners/ (easylistchina+easylist.txt: 47065) -.yuvutu.com/.*/banners/ -# ||yumymilf.com^*/banners/ (easylistchina+easylist.txt: 47064) -.yumymilf.com/.*/banners/ -# ||yporn.tv/uploads/flv_player/midroll_images/ (easylistchina+easylist.txt: 47063) -.yporn.tv/uploads/flv_player/midroll_images/ -# ||yporn.tv/uploads/flv_player/commercials/ (easylistchina+easylist.txt: 47062) -.yporn.tv/uploads/flv_player/commercials/ -# ||youx.xxx/thumb_top/ (easylistchina+easylist.txt: 47061) -.youx.xxx/thumb_top/ -# ||youtubelike.com/ftt2/toplists/ (easylistchina+easylist.txt: 47060) -.youtubelike.com/ftt2/toplists/ -# ||yourlust.com/im/postroll.html (easylistchina+easylist.txt: 47059) -.yourlust.com/im/postroll\.html -# ||yourlust.com/im/onpause.html (easylistchina+easylist.txt: 47058) -.yourlust.com/im/onpause\.html -# ||yourdarkdesires.com/3.html (easylistchina+easylist.txt: 47057) -.yourdarkdesires.com/3\.html -# ||yourdarkdesires.com/2.html (easylistchina+easylist.txt: 47056) -.yourdarkdesires.com/2\.html -# ||yourdarkdesires.com/1.html (easylistchina+easylist.txt: 47055) -.yourdarkdesires.com/1\.html -# ||yourdailygirls.com/vanilla/process.php (easylistchina+easylist.txt: 47054) -.yourdailygirls.com/vanilla/process\.php -# ||youporn.com/watch_postroll/ (easylistchina+easylist.txt: 47050) -.youporn.com/watch_postroll/ -# ||youporn.com/capedorset/ (easylistchina+easylist.txt: 47049) -.youporn.com/capedorset/ -# ||youporn-hub.com/newlcd.js (easylistchina+easylist.txt: 47048) -.youporn-hub.com/newlcd\.js -# ||youporn-hub.com/lcdscript.js (easylistchina+easylist.txt: 47047) -.youporn-hub.com/lcdscript\.js -# ||youngpornvideos.com/images/wmasterthecoolporn/ (easylistchina+easylist.txt: 47046) -.youngpornvideos.com/images/wmasterthecoolporn/ -# ||youngpornvideos.com/images/webmasterdelightlinks/ (easylistchina+easylist.txt: 47045) -.youngpornvideos.com/images/webmasterdelightlinks/ -# ||youngpornvideos.com/images/teencash/ (easylistchina+easylist.txt: 47044) -.youngpornvideos.com/images/teencash/ -# ||youngpornvideos.com/images/mofoscash/ (easylistchina+easylist.txt: 47043) -.youngpornvideos.com/images/mofoscash/ -# ||youngpornvideos.com/images/glamglam/ (easylistchina+easylist.txt: 47042) -.youngpornvideos.com/images/glamglam/ -# ||youngpornvideos.com/images/bangbros/ (easylistchina+easylist.txt: 47041) -.youngpornvideos.com/images/bangbros/ -# ||youjizz.com/vivid/ (easylistchina+easylist.txt: 47038) -.youjizz.com/vivid/ -# ||youaresogay.com/*.html (easylistchina+easylist.txt: 47037) -.youaresogay.com/.*\.html -# ||yobt.tv/rec/ (easylistchina+easylist.txt: 47036) -.yobt.tv/rec/ -# ||yobt.tv/js/ttu.js (easylistchina+easylist.txt: 47035) -.yobt.tv/js/ttu\.js -# ||yobt.com/rec/ (easylistchina+easylist.txt: 47034) -.yobt.com/rec/ -# ||yea.xxx/img/creatives/ (easylistchina+easylist.txt: 47033) -.yea.xxx/img/creatives/ -# ||xxxymovies.com/js/win.js (easylistchina+easylist.txt: 47032) -.xxxymovies.com/js/win\.js -# ||xxxporntalk.com/images/ (easylistchina+easylist.txt: 47030) -.xxxporntalk.com/images/ -# ||xxxlinks.es/xvideos.js (easylistchina+easylist.txt: 47029) -.xxxlinks.es/xvideos\.js -# ||xxxkinky.com/pap.js (easylistchina+easylist.txt: 47028) -.xxxkinky.com/pap\.js -# ||xxxhost.me/xpw.gif (easylistchina+easylist.txt: 47027) -.xxxhost.me/xpw\.gif -# ||xxxgames.biz^*/sponsors/ (easylistchina+easylist.txt: 47026) -.xxxgames.biz/.*/sponsors/ -# ||xxxfile.net^*/netload_premium.gif (easylistchina+easylist.txt: 47025) -.xxxfile.net/.*/netload_premium\.gif -# ||xxxblink.com/rec/ (easylistchina+easylist.txt: 47024) -.xxxblink.com/rec/ -# ||xxxblink.com/js/pops. (easylistchina+easylist.txt: 47023) -.xxxblink.com/js/pops\. -# ||xxvideo.us/playertext.html (easylistchina+easylist.txt: 47022) -.xxvideo.us/playertext\.html -# ||xxvideo.us/bnr.js (easylistchina+easylist.txt: 47021) -.xxvideo.us/bnr\.js -# ||xxvideo.us/ad728x15 (easylistchina+easylist.txt: 47020) -.xxvideo.us/ad728x15 -# ||xxnxx.eu/index.php?xyz_lbx= (easylistchina+easylist.txt: 47019) -.xxnxx.eu/index\.php\?xyz_lbx= -# ||xvideohost.com/hor_banner.php (easylistchina+easylist.txt: 47018) -.xvideohost.com/hor_banner\.php -# ||xtravids.com/pop.php (easylistchina+easylist.txt: 47017) -.xtravids.com/pop\.php -# ||xogogo.com/images/latestpt.gif (easylistchina+easylist.txt: 47016) -.xogogo.com/images/latestpt\.gif -# ||xhcdn.com^*/ads_ (easylistchina+easylist.txt: 47015) -.xhcdn.com/.*/ads_ -# ||xhamsterpremiumpass.com/premium_scenes.html (easylistchina+easylist.txt: 47014) -.xhamsterpremiumpass.com/premium_scenes\.html -# ||xhamster.com/js/xpu.js (easylistchina+easylist.txt: 47013) -.xhamster.com/js/xpu\.js -# ||xhamster.com/ads/ (easylistchina+easylist.txt: 47012) -.xhamster.com/ads/ -# ||xfanz.com^*_banner_ (easylistchina+easylist.txt: 47011) -.xfanz.com/.*_banner_ -# ||xcritic.com/img/200x150_ (easylistchina+easylist.txt: 47010) -.xcritic.com/img/200x150_ -# ||xcritic.com/images/watch- (easylistchina+easylist.txt: 47009) -.xcritic.com/images/watch- -# ||xcritic.com/images/rent- (easylistchina+easylist.txt: 47008) -.xcritic.com/images/rent- -# ||xcritic.com/images/buy- (easylistchina+easylist.txt: 47007) -.xcritic.com/images/buy- -# ||xbutter.com/js/pop-er.js (easylistchina+easylist.txt: 47006) -.xbutter.com/js/pop-er\.js -# ||xbutter.com/geturl.php/ (easylistchina+easylist.txt: 47005) -.xbutter.com/geturl\.php/ -# ||xbutter.com/adz.html (easylistchina+easylist.txt: 47004) -.xbutter.com/adz\.html -# ||xbooru.com/block/adblocks.js (easylistchina+easylist.txt: 47003) -.xbooru.com/block/adblocks\.js -# ||xbabe.com/iframes/ (easylistchina+easylist.txt: 47002) -.xbabe.com/iframes/ -# ||x3xtube.com/banner_rotating_ (easylistchina+easylist.txt: 47001) -.x3xtube.com/banner_rotating_ -# ||x.vipergirls.to^ (easylistchina+easylist.txt: 47000) -.x.vipergirls.to -# ||x.eroticity.net^ (easylistchina+easylist.txt: 46999) -.x.eroticity.net -# ||wunbuck.com/iframes/aaw_leaderboard.html (easylistchina+easylist.txt: 46998) -.wunbuck.com/iframes/aaw_leaderboard\.html -# ||wunbuck.com/_odd_images/banners/ (easylistchina+easylist.txt: 46997) -.wunbuck.com/_odd_images/banners/ -# ||wrenchtube.com/poppt.js (easylistchina+easylist.txt: 46996) -.wrenchtube.com/poppt\.js -# ||wowomg.com/*.html (easylistchina+easylist.txt: 46995) -.wowomg.com/.*\.html -# ||worldsex.com/c/ (easylistchina+easylist.txt: 46994) -.worldsex.com/c/ -# ||wikiporno.org/header21.html (easylistchina+easylist.txt: 46993) -.wikiporno.org/header21\.html -# ||wikiporno.org/header2.html (easylistchina+easylist.txt: 46992) -.wikiporno.org/header2\.html -# ||wiki-stars.com/trade/ (easylistchina+easylist.txt: 46991) -.wiki-stars.com/trade/ -# ||wiki-stars.com/thumb_if.php? (easylistchina+easylist.txt: 46990) -.wiki-stars.com/thumb_if\.php\? -# ||whozacunt.com/images/banner_ (easylistchina+easylist.txt: 46989) -.whozacunt.com/images/banner_ -# ||whozacunt.com/images/*_300x200_ (easylistchina+easylist.txt: 46988) -.whozacunt.com/images/.*_300x200_ -# ||whozacunt.com/images/*-300x250. (easylistchina+easylist.txt: 46987) -.whozacunt.com/images/.*-300x250\. -# ||whitedolly.com/wcf/images/redbar/logo_neu.gif (easylistchina+easylist.txt: 46986) -.whitedolly.com/wcf/images/redbar/logo_neu\.gif -# ||wetpussygames.com/images/promo/ (easylistchina+easylist.txt: 46985) -.wetpussygames.com/images/promo/ -# ||wetplace.com/wetplace_html/ (easylistchina+easylist.txt: 46984) -.wetplace.com/wetplace_html/ -# ||wetplace.com/js/adpwetplace (easylistchina+easylist.txt: 46983) -.wetplace.com/js/adpwetplace -# ||wegcash.com/click/ (easylistchina+easylist.txt: 46981) -.wegcash.com/click/ -# ||weberotic.net/banners/ (easylistchina+easylist.txt: 46980) -.weberotic.net/banners/ -# ||watchindianporn.net/js/pu.js (easylistchina+easylist.txt: 46979) -.watchindianporn.net/js/pu\.js -# ||watch2porn.net/pads2.js (easylistchina+easylist.txt: 46978) -.watch2porn.net/pads2\.js -# ||wankspider.com/js/wankspider.js (easylistchina+easylist.txt: 46977) -.wankspider.com/js/wankspider\.js -# ||wank.to/partner/ (easylistchina+easylist.txt: 46976) -.wank.to/partner/ -# ||vstreamcdn.com^*/ads/ (easylistchina+easylist.txt: 46975) -.vstreamcdn.com/.*/ads/ -# ||voyeurhit.com/related/voyeurhit.php?t_sid= (easylistchina+easylist.txt: 46974) -.voyeurhit.com/related/voyeurhit\.php\?t_sid= -# ||voyeurhit.com/contents/content_sources/ (easylistchina+easylist.txt: 46973) -.voyeurhit.com/contents/content_sources/ -# ||vivatube.com/upload/banners/ (easylistchina+easylist.txt: 46972) -.vivatube.com/upload/banners/ -# ||viralporn.com^*/popnew.js (easylistchina+easylist.txt: 46971) -.viralporn.com/.*/popnew\.js -# ||vidgrab.net/pads2.js (easylistchina+easylist.txt: 46970) -.vidgrab.net/pads2\.js -# ||vidgrab.net/images/adsbar (easylistchina+easylist.txt: 46969) -.vidgrab.net/images/adsbar -# ||vidgrab.net/bnr.js (easylistchina+easylist.txt: 46968) -.vidgrab.net/bnr\.js -# ||vidgrab.net/adsbar.png (easylistchina+easylist.txt: 46967) -.vidgrab.net/adsbar\.png -# ||videos.com^*/jsp.js (easylistchina+easylist.txt: 46966) -.videos.com/.*/jsp\.js -# ||videarn.com/vibrate.js (easylistchina+easylist.txt: 46965) -.videarn.com/vibrate\.js -# ||vid2c.com/pp.js (easylistchina+easylist.txt: 46964) -.vid2c.com/pp\.js -# ||vid2c.com/pap.js (easylistchina+easylist.txt: 46963) -.vid2c.com/pap\.js -# ||vid2c.com/js/pp.js (easylistchina+easylist.txt: 46962) -.vid2c.com/js/pp\.js -# ||vid2c.com/js/atxpp.js? (easylistchina+easylist.txt: 46961) -.vid2c.com/js/atxpp\.js\? -# ||vibraporn.com/vg/ (easylistchina+easylist.txt: 46960) -.vibraporn.com/vg/ -# ||upornia.com/contents/content_sources/ (easylistchina+easylist.txt: 46959) -.upornia.com/contents/content_sources/ -# ||updatetube.com/js/adpupdatetube (easylistchina+easylist.txt: 46958) -.updatetube.com/js/adpupdatetube -# ||unoxxx.com/pages/en_player_video_right.html (easylistchina+easylist.txt: 46957) -.unoxxx.com/pages/en_player_video_right\.html -# ||unblockedpiratebay.com/static/img/bar.gif (easylistchina+easylist.txt: 46956) -.unblockedpiratebay.com/static/img/bar\.gif -# ||ukrainamateurs.com/images/banners/ (easylistchina+easylist.txt: 46955) -.ukrainamateurs.com/images/banners/ -# ||uflash.tv^*/affiliates/ (easylistchina+easylist.txt: 46954) -.uflash.tv/.*/affiliates/ -# ||twofuckers.com/brazzers (easylistchina+easylist.txt: 46953) -.twofuckers.com/brazzers -# ||twinsporn.net/images/free-penis-pills.png (easylistchina+easylist.txt: 46952) -.twinsporn.net/images/free-penis-pills\.png -# ||twinsporn.net/images/delay.gif (easylistchina+easylist.txt: 46951) -.twinsporn.net/images/delay\.gif -# ||turboimagehost.com/p1.js (easylistchina+easylist.txt: 46950) -.turboimagehost.com/p1\.js -# ||tubedupe.com/side_two.html (easylistchina+easylist.txt: 46949) -.tubedupe.com/side_two\.html -# ||tubedupe.com/footer_four.html (easylistchina+easylist.txt: 46948) -.tubedupe.com/footer_four\.html -# ||tubecup.org/?t_sid= (easylistchina+easylist.txt: 46947) -.tubecup.org/\?t_sid= -# ||tubecup.com/js/1.js (easylistchina+easylist.txt: 46946) -.tubecup.com/js/1\.js -# ||tubecup.com/contents/content_sources/ (easylistchina+easylist.txt: 46945) -.tubecup.com/contents/content_sources/ -# ||tube8.com/sugarcrush/ (easylistchina+easylist.txt: 46943) -.tube8.com/sugarcrush/ -# ||tube8.com/penthouse/ (easylistchina+easylist.txt: 46942) -.tube8.com/penthouse/ -# ||tnaflix.com^*_promo.jpg (easylistchina+easylist.txt: 46940) -.tnaflix.com/.*_promo\.jpg -# ||tnaflix.com/flixPlayerImages/ (easylistchina+easylist.txt: 46939) -.tnaflix.com/flixPlayerImages/ -# ||tnaflix.com/banner/ (easylistchina+easylist.txt: 46938) -.tnaflix.com/banner/ -# ||tjoob.com/kellyban.gif (easylistchina+easylist.txt: 46937) -.tjoob.com/kellyban\.gif -# ||tjoob.com/bgbb.jpg (easylistchina+easylist.txt: 46936) -.tjoob.com/bgbb\.jpg -# ||titsintops.com/rotate/ (easylistchina+easylist.txt: 46935) -.titsintops.com/rotate/ -# ||titsintops.com/intersitial/ (easylistchina+easylist.txt: 46934) -.titsintops.com/intersitial/ -# ||timtube.com/traffic.js (easylistchina+easylist.txt: 46933) -.timtube.com/traffic\.js -# ||thumblogger.com/thumblog/top_banner_silver.js (easylistchina+easylist.txt: 46932) -.thumblogger.com/thumblog/top_banner_silver\.js -# ||thisav.com/js/thisav_pop.js (easylistchina+easylist.txt: 46931) -.thisav.com/js/thisav_pop\.js -# ||thisav.com/js/pu.js (easylistchina+easylist.txt: 46930) -.thisav.com/js/pu\.js -# ||thinkexist.com/images/afm.js (easylistchina+easylist.txt: 46929) -.thinkexist.com/images/afm\.js -# ||thepornomatrix.com/images/1- (easylistchina+easylist.txt: 46928) -.thepornomatrix.com/images/1- -# ||theporncore.com/contents/content_sources/ (easylistchina+easylist.txt: 46927) -.theporncore.com/contents/content_sources/ -# ||thenipslip.com/mfcbanner.gif (easylistchina+easylist.txt: 46926) -.thenipslip.com/mfcbanner\.gif -# ||thenipslip.com/GGWDrunkenAd.jpg (easylistchina+easylist.txt: 46925) -.thenipslip.com/GGWDrunkenAd\.jpg -# ||thenewporn.com/js/adpthenewporn (easylistchina+easylist.txt: 46924) -.thenewporn.com/js/adpthenewporn -# ||thehun.net^*/banners/ (easylistchina+easylist.txt: 46923) -.thehun.net/.*/banners/ -# ||the-feeding-tube.com^*/Topbanner.php (easylistchina+easylist.txt: 46921) -.the-feeding-tube.com/.*/Topbanner\.php -# ||the-analist.info^*150x150 (easylistchina+easylist.txt: 46920) -.the-analist.info/.*150x150 -# ||the-analist.info^*150sq (easylistchina+easylist.txt: 46919) -.the-analist.info/.*150sq -# ||the-analist.info^*150-150 (easylistchina+easylist.txt: 46918) -.the-analist.info/.*150-150 -# ||temptingangels.org/media/banners/ (easylistchina+easylist.txt: 46917) -.temptingangels.org/media/banners/ -# ||temptingangels.org/banner/ (easylistchina+easylist.txt: 46916) -.temptingangels.org/banner/ -# ||teentube18.com/js/realamateurtube.js (easylistchina+easylist.txt: 46915) -.teentube18.com/js/realamateurtube\.js -# ||teensexcraze.com/awesome/leader.html (easylistchina+easylist.txt: 46914) -.teensexcraze.com/awesome/leader\.html -# ||teensanalfactor.com/best/ (easylistchina+easylist.txt: 46913) -.teensanalfactor.com/best/ -# ||taxidrivermovie.com/mrskin_runner/ (easylistchina+easylist.txt: 46912) -.taxidrivermovie.com/mrskin_runner/ -# ||tabletporn.com/images/pinkvisualpad- (easylistchina+easylist.txt: 46911) -.tabletporn.com/images/pinkvisualpad- -# ||sxx.com/js/lj.js (easylistchina+easylist.txt: 46909) -.sxx.com/js/lj\.js -# ||svscomics.com^*/dtrotator.js (easylistchina+easylist.txt: 46908) -.svscomics.com/.*/dtrotator\.js -# ||sunporno.com/js/flirt/serve.js (easylistchina+easylist.txt: 46907) -.sunporno.com/js/flirt/serve\.js -# ||submityourflicks.com/banner/ (easylistchina+easylist.txt: 46906) -.submityourflicks.com/banner/ -# ||stolenvideos.net/stolen.js (easylistchina+easylist.txt: 46905) -.stolenvideos.net/stolen\.js -# ||stockingstv.com/partners/ (easylistchina+easylist.txt: 46904) -.stockingstv.com/partners/ -# ||static.kinghost.com^ (easylistchina+easylist.txt: 46903) -.static.kinghost.com -# ||static.flabber.net^*background (easylistchina+easylist.txt: 46902) -.static.flabber.net/.*background -# ||springbreaktubegirls.com/js/springpop.js (easylistchina+easylist.txt: 46900) -.springbreaktubegirls.com/js/springpop\.js -# ||spankbang.com/gateway/ (easylistchina+easylist.txt: 46899) -.spankbang.com/gateway/ -# ||songs.pk/ie/ietext.html (easylistchina+easylist.txt: 46898) -.songs.pk/ie/ietext\.html -# ||socaseiras.com.br/banners.php? (easylistchina+easylist.txt: 46897) -.socaseiras.com.br/banners\.php\? -# ||socaseiras.com.br/banner_ (easylistchina+easylist.txt: 46896) -.socaseiras.com.br/banner_ -# ||socaseiras.com.br/arquivos/banners/ (easylistchina+easylist.txt: 46895) -.socaseiras.com.br/arquivos/banners/ -# ||smutmodels.com/sponsors/ (easylistchina+easylist.txt: 46894) -.smutmodels.com/sponsors/ -# ||slinky.com.au/banners/ (easylistchina+easylist.txt: 46893) -.slinky.com.au/banners/ -# ||skimtube.com/kellyban.gif (easylistchina+easylist.txt: 46892) -.skimtube.com/kellyban\.gif -# ||site.img.4tube.com^ (easylistchina+easylist.txt: 46891) -.site.img.4tube.com -# ||sillusions.ws^*/vpn-banner.gif (easylistchina+easylist.txt: 46890) -.sillusions.ws/.*/vpn-banner\.gif -# ||sillusions.ws^*/pr0pop.js (easylistchina+easylist.txt: 46889) -.sillusions.ws/.*/pr0pop\.js -# ||signbucksdaily.com/data/promo/ (easylistchina+easylist.txt: 46888) -.signbucksdaily.com/data/promo/ -# ||signbucks.com/s/bns/ (easylistchina+easylist.txt: 46887) -.signbucks.com/s/bns/ -# ||shy-cams.com/tube.js (easylistchina+easylist.txt: 46886) -.shy-cams.com/tube\.js -# ||shooshtimeinc.com/under.php (easylistchina+easylist.txt: 46885) -.shooshtimeinc.com/under\.php -# ||shooshtime.com/images/chosenplugs/ (easylistchina+easylist.txt: 46884) -.shooshtime.com/images/chosenplugs/ -# ||shooshtime.com/ads/ (easylistchina+easylist.txt: 46883) -.shooshtime.com/ads/ -# ||sharew.org/modalfiles/ (easylistchina+easylist.txt: 46882) -.sharew.org/modalfiles/ -# ||shanbara.jp/okusamadx.gif (easylistchina+easylist.txt: 46881) -.shanbara.jp/okusamadx\.gif -# ||shanbara.jp/300_200plus.jpg (easylistchina+easylist.txt: 46880) -.shanbara.jp/300_200plus\.jpg -# ||sexytime.com/img/sexytime_anima.gif (easylistchina+easylist.txt: 46879) -.sexytime.com/img/sexytime_anima\.gif -# ||sexyshare.net//banners/ (easylistchina+easylist.txt: 46878) -# ||sexyfuckgames.com/images/promo/ (easylistchina+easylist.txt: 46877) -.sexyfuckgames.com/images/promo/ -# ||sexyclips.org/i/130x500.gif (easylistchina+easylist.txt: 46876) -.sexyclips.org/i/130x500\.gif -# ||sexyclips.org/banners/ (easylistchina+easylist.txt: 46875) -.sexyclips.org/banners/ -# ||sexyandshocking.com/mzpop.js (easylistchina+easylist.txt: 46874) -.sexyandshocking.com/mzpop\.js -# ||sexyandfunny.com/images/totem (easylistchina+easylist.txt: 46873) -.sexyandfunny.com/images/totem -# ||sexy-toons.org/interface/pub/ (easylistchina+easylist.txt: 46872) -.sexy-toons.org/interface/pub/ -# ||sexy-toons.org/interface/partenariat/ (easylistchina+easylist.txt: 46871) -.sexy-toons.org/interface/partenariat/ -# ||sexvines.co/images/cp (easylistchina+easylist.txt: 46870) -.sexvines.co/images/cp -# ||sexuhot.com/splayer.js (easylistchina+easylist.txt: 46869) -.sexuhot.com/splayer\.js -# ||sexuhot.com/images/xbanner (easylistchina+easylist.txt: 46868) -.sexuhot.com/images/xbanner -# ||sextubebox.com/ab2.shtml (easylistchina+easylist.txt: 46867) -.sextubebox.com/ab2\.shtml -# ||sextubebox.com/ab1.shtml (easylistchina+easylist.txt: 46866) -.sextubebox.com/ab1\.shtml -# ||sextube.com/lj.js (easylistchina+easylist.txt: 46865) -.sextube.com/lj\.js -# ||sexseeimage.com^*/banner.gif (easylistchina+easylist.txt: 46864) -.sexseeimage.com/.*/banner\.gif -# ||sexmummy.com/footer.htm (easylistchina+easylist.txt: 46863) -.sexmummy.com/footer\.htm -# ||sexmummy.com/float.htm (easylistchina+easylist.txt: 46862) -.sexmummy.com/float\.htm -# ||sexilation.com/wp-content/uploads/2013/01/Untitled-1.jpg (easylistchina+easylist.txt: 46861) -.sexilation.com/wp-content/uploads/2013/01/Untitled-1\.jpg -# ||sex3dtoons.com/im/ (easylistchina+easylist.txt: 46860) -.sex3dtoons.com/im/ -# ||sex3.com/if/ (easylistchina+easylist.txt: 46859) -.sex3.com/if/ -# ||sex.com/images/*/banner_ (easylistchina+easylist.txt: 46858) -.sex.com/images/.*/banner_ -# ||sex-techniques-and-positions.com/banners (easylistchina+easylist.txt: 46857) -.sex-techniques-and-positions.com/banners -# ||sex-techniques-and-positions.com/123ima/ (easylistchina+easylist.txt: 46856) -.sex-techniques-and-positions.com/123ima/ -# ||serveporn.com/images/plug-in.jpg (easylistchina+easylist.txt: 46855) -.serveporn.com/images/plug-in\.jpg -# ||serveporn.com/images/a-en.jpg (easylistchina+easylist.txt: 46854) -.serveporn.com/images/a-en\.jpg -# ||sensualgirls.org/media/banners/ (easylistchina+easylist.txt: 46853) -.sensualgirls.org/media/banners/ -# ||sensualgirls.org/banner/ (easylistchina+easylist.txt: 46852) -.sensualgirls.org/banner/ -# ||seemygf.com/webmasters/ (easylistchina+easylist.txt: 46851) -.seemygf.com/webmasters/ -# ||seaporn.org/scripts/life.js (easylistchina+easylist.txt: 46850) -.seaporn.org/scripts/life\.js -# ||scorevideos.com/banner/ (easylistchina+easylist.txt: 46849) -.scorevideos.com/banner/ -# ||scorehd.com/banner/ (easylistchina+easylist.txt: 46848) -.scorehd.com/banner/ -# ||rusdosug.com/Fotos/Banners/ (easylistchina+easylist.txt: 46846) -.rusdosug.com/Fotos/Banners/ -# ||rude.com/js/PopupWindow.js (easylistchina+easylist.txt: 46845) -.rude.com/js/PopupWindow\.js -# ||rikotachibana.org/wp-content/banner/ (easylistchina+easylist.txt: 46844) -.rikotachibana.org/wp-content/banner/ -# ||rextube.com/plug/iframe.asp? (easylistchina+easylist.txt: 46843) -.rextube.com/plug/iframe\.asp\? -# ||rev.fapdu.com^ (easylistchina+easylist.txt: 46842) -.rev.fapdu.com -# ||redtubefiles.com^*/skins/ (easylistchina+easylist.txt: 46841) -.redtubefiles.com/.*/skins/ -# ||redtubefiles.com^*/banner/ (easylistchina+easylist.txt: 46840) -.redtubefiles.com/.*/banner/ -# ||redtube.com^*/banner/ (easylistchina+easylist.txt: 46839) -.redtube.com/.*/banner/ -# ||redtube.com/wierd/ (easylistchina+easylist.txt: 46837) -.redtube.com/wierd/ -# ||redtube.com/sexychicks/ (easylistchina+easylist.txt: 46836) -.redtube.com/sexychicks/ -# ||redtube.com/nymphos/ (easylistchina+easylist.txt: 46835) -.redtube.com/nymphos/ -# ||redtube.com/bestporn/ (easylistchina+easylist.txt: 46834) -.redtube.com/bestporn/ -# ||redtube.com/barelylegal/ (easylistchina+easylist.txt: 46833) -.redtube.com/barelylegal/ -# ||redtube.cc/images/bongacams.png (easylistchina+easylist.txt: 46832) -.redtube.cc/images/bongacams\.png -# ||realhomesex.net/pop/ (easylistchina+easylist.txt: 46831) -.realhomesex.net/pop/ -# ||realhomesex.net/floater.js (easylistchina+easylist.txt: 46830) -.realhomesex.net/floater\.js -# ||realgfporn.com/js/realgfporn.js (easylistchina+easylist.txt: 46827) -.realgfporn.com/js/realgfporn\.js -# ||realgfporn.com/js/popall.js (easylistchina+easylist.txt: 46826) -.realgfporn.com/js/popall\.js -# ||rampant.tv/images/sexypics/ (easylistchina+easylist.txt: 46825) -.rampant.tv/images/sexypics/ -# ||raincoatreviews.com/images/banners/ (easylistchina+easylist.txt: 46824) -.raincoatreviews.com/images/banners/ -# ||r.radikal.ru^ (easylistchina+easylist.txt: 46822) -.r.radikal.ru -# ||pwpwpoker.com/images/banners/ (easylistchina+easylist.txt: 46821) -.pwpwpoker.com/images/banners/ -# ||pwpwpoker.com/images/*/strip_poker_ (easylistchina+easylist.txt: 46820) -.pwpwpoker.com/images/.*/strip_poker_ -# ||puteros.com/publisecciones/ (easylistchina+easylist.txt: 46819) -.puteros.com/publisecciones/ -# ||putascaseiras.com/botao/ (easylistchina+easylist.txt: 46818) -.putascaseiras.com/botao/ -# ||purpleporno.com/pop*.js (easylistchina+easylist.txt: 46817) -.purpleporno.com/pop.*\.js -# ||purepornvids.com/randomadseb. (easylistchina+easylist.txt: 46816) -.purepornvids.com/randomadseb\. -# ||purelynsfw.com^*/banners/ (easylistchina+easylist.txt: 46815) -.purelynsfw.com/.*/banners/ -# ||pureandsexy.org/banner/ (easylistchina+easylist.txt: 46814) -.pureandsexy.org/banner/ -# ||pr-static.tnaflix.com^ (easylistchina+easylist.txt: 46813) -.pr-static.tnaflix.com -# ||pr-static.empflix.com^ (easylistchina+easylist.txt: 46812) -.pr-static.empflix.com -# ||pornxs.com/js/files/jasminNew (easylistchina+easylist.txt: 46811) -.pornxs.com/js/files/jasminNew -# ||pornwikileaks.com/adultdvd.com.jpg (easylistchina+easylist.txt: 46810) -.pornwikileaks.com/adultdvd\.com\.jpg -# ||pornup.me/js/pp.js (easylistchina+easylist.txt: 46808) -.pornup.me/js/pp\.js -# ||porntube.com/ads| (easylistchina+easylist.txt: 46807) -.porntube.com/ads$ -# ||porntalk.com/rec/ (easylistchina+easylist.txt: 46806) -.porntalk.com/rec/ -# ||porntalk.com/img/banners/ (easylistchina+easylist.txt: 46805) -.porntalk.com/img/banners/ -# ||pornstreet.com/siteunder.js (easylistchina+easylist.txt: 46804) -.pornstreet.com/siteunder\.js -# ||pornstarterritory.com^*/alsbanner (easylistchina+easylist.txt: 46803) -.pornstarterritory.com/.*/alsbanner -# ||pornstarterritory.com//images/bannernew.jpg (easylistchina+easylist.txt: 46802) -# ||pornstarlabs.com/spons/ (easylistchina+easylist.txt: 46801) -.pornstarlabs.com/spons/ -# ||pornslash.com/images/pr.jpg (easylistchina+easylist.txt: 46800) -.pornslash.com/images/pr\.jpg -# ||pornslash.com/images/downicon.png (easylistchina+easylist.txt: 46799) -.pornslash.com/images/downicon\.png -# ||pornslash.com/images/cbt.gif (easylistchina+easylist.txt: 46798) -.pornslash.com/images/cbt\.gif -# ||pornslash.com/images/cbside.gif (easylistchina+easylist.txt: 46797) -.pornslash.com/images/cbside\.gif -# ||pornslash.com/images/a.gif (easylistchina+easylist.txt: 46796) -.pornslash.com/images/a\.gif -# ||pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia*.js (easylistchina+easylist.txt: 46795) -.pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharianew/js/adppornsharia*.js (easylistchina+easylist.txt: 46793) -.pornsharing.com/App_Themes/pornsharianew/js/adppornsharia.*\.js -# ||pornsharia.com^*/js/pcin.js (easylistchina+easylist.txt: 46791) -.pornsharia.com/.*/js/pcin\.js -# ||pornsharia.com^*/exo- (easylistchina+easylist.txt: 46790) -.pornsharia.com/.*/exo- -# ||pornsharia.com^*/adppornsharia.js (easylistchina+easylist.txt: 46789) -.pornsharia.com/.*/adppornsharia\.js -# ||pornsharia.com/Images/Sponsors/ (easylistchina+easylist.txt: 46788) -.pornsharia.com/Images/Sponsors/ -# ||pornshare.biz/2.js (easylistchina+easylist.txt: 46787) -.pornshare.biz/2\.js -# ||pornshare.biz/1.js (easylistchina+easylist.txt: 46786) -.pornshare.biz/1\.js -# ||pornreleasez.com/prpop.js (easylistchina+easylist.txt: 46785) -.pornreleasez.com/prpop\.js -# ||pornper.com^*/pp.js (easylistchina+easylist.txt: 46784) -.pornper.com/.*/pp\.js -# ||pornper.com/mlr/ (easylistchina+easylist.txt: 46783) -.pornper.com/mlr/ -# ||pornoxo.com/tradethumbs/ (easylistchina+easylist.txt: 46782) -.pornoxo.com/tradethumbs/ -# ||pornosexxxtits.com/rec/ (easylistchina+easylist.txt: 46780) -.pornosexxxtits.com/rec/ -# ||pornorips.com^*/rotate*.php (easylistchina+easylist.txt: 46779) -.pornorips.com/.*/rotate.*\.php -# ||pornorips.com^*/rda.js (easylistchina+easylist.txt: 46778) -.pornorips.com/.*/rda\.js -# ||pornorips.com/hwpop.js (easylistchina+easylist.txt: 46777) -.pornorips.com/hwpop\.js -# ||pornomovies.com/pop/ (easylistchina+easylist.txt: 46776) -.pornomovies.com/pop/ -# ||pornomovies.com/js/1/login_bonus (easylistchina+easylist.txt: 46775) -.pornomovies.com/js/1/login_bonus -# ||pornoinside.com/efpop.js (easylistchina+easylist.txt: 46774) -.pornoinside.com/efpop\.js -# ||pornoid.com/pornoid_html/ (easylistchina+easylist.txt: 46773) -.pornoid.com/pornoid_html/ -# ||pornoid.com/js/adppornoid (easylistchina+easylist.txt: 46772) -.pornoid.com/js/adppornoid -# ||pornoid.com/iframes/bottom (easylistchina+easylist.txt: 46771) -.pornoid.com/iframes/bottom -# ||pornoid.com/contents/content_sources/ (easylistchina+easylist.txt: 46770) -.pornoid.com/contents/content_sources/ -# ||pornnavigate.com/feeds/delivery.php? (easylistchina+easylist.txt: 46769) -.pornnavigate.com/feeds/delivery\.php\? -# ||pornmade.com/images/cb (easylistchina+easylist.txt: 46768) -.pornmade.com/images/cb -# ||pornmade.com/images/az.gif (easylistchina+easylist.txt: 46767) -.pornmade.com/images/az\.gif -# ||pornmade.com/images/404vz.gif (easylistchina+easylist.txt: 46766) -.pornmade.com/images/404vz\.gif -# ||pornizer.com/_Themes/javascript/cts.js? (easylistchina+easylist.txt: 46765) -.pornizer.com/_Themes/javascript/cts\.js\? -# ||pornhub.phncdn.com/misc/xml/preroll.xml (easylistchina+easylist.txt: 46764) -.pornhub.phncdn.com/misc/xml/preroll\.xml -# ||pornhub.phncdn.com/images/campaign-backgrounds/ (easylistchina+easylist.txt: 46763) -.pornhub.phncdn.com/images/campaign-backgrounds/ -# ||pornhub.com/jpg/ (easylistchina+easylist.txt: 46761) -.pornhub.com/jpg/ -# ||pornhub.com/front/alternative/ (easylistchina+easylist.txt: 46760) -.pornhub.com/front/alternative/ -# ||pornhub.com/channels/pay/ (easylistchina+easylist.txt: 46759) -.pornhub.com/channels/pay/ -# ||pornhub.com/catagories/costume/ (easylistchina+easylist.txt: 46758) -.pornhub.com/catagories/costume/ -# ||pornfanplace.com/rec/ (easylistchina+easylist.txt: 46757) -.pornfanplace.com/rec/ -# ||pornfanplace.com/js/pops. (easylistchina+easylist.txt: 46756) -.pornfanplace.com/js/pops\. -# ||pornerbros.com/p_bnrs/ (easylistchina+easylist.txt: 46754) -.pornerbros.com/p_bnrs/ -# ||porncor.com/sitelist.php (easylistchina+easylist.txt: 46753) -.porncor.com/sitelist\.php -# ||pornbus.org/includes/js/layer.js (easylistchina+easylist.txt: 46752) -.pornbus.org/includes/js/layer\.js -# ||pornbus.org/includes/js/exa.js (easylistchina+easylist.txt: 46751) -.pornbus.org/includes/js/exa\.js -# ||pornbus.org/includes/js/ex.js (easylistchina+easylist.txt: 46750) -.pornbus.org/includes/js/ex\.js -# ||pornbus.org/includes/js/cat.js (easylistchina+easylist.txt: 46749) -.pornbus.org/includes/js/cat\.js -# ||pornbus.org/includes/js/bgcont.js (easylistchina+easylist.txt: 46748) -.pornbus.org/includes/js/bgcont\.js -# ||pornbb.org/adsnov. (easylistchina+easylist.txt: 46746) -.pornbb.org/adsnov\. -# ||pornbay.org/popup.js (easylistchina+easylist.txt: 46745) -.pornbay.org/popup\.js -# ||pornbanana.com/pornbanana/deals/ (easylistchina+easylist.txt: 46744) -.pornbanana.com/pornbanana/deals/ -# ||pornarchive.net/images/cb (easylistchina+easylist.txt: 46743) -.pornarchive.net/images/cb -# ||pornalized.com/pornalized_html/closetoplay_ (easylistchina+easylist.txt: 46742) -.pornalized.com/pornalized_html/closetoplay_ -# ||pornalized.com/js/adppornalized5.js (easylistchina+easylist.txt: 46741) -.pornalized.com/js/adppornalized5\.js -# ||pornalized.com/contents/content_sources/ (easylistchina+easylist.txt: 46740) -.pornalized.com/contents/content_sources/ -# ||porn8x.net/js/popup.js (easylistchina+easylist.txt: 46739) -.porn8x.net/js/popup\.js -# ||porn8x.net/js/outtrade.js (easylistchina+easylist.txt: 46738) -.porn8x.net/js/outtrade\.js -# ||porn4down.com^*/ryuvuong.gif (easylistchina+easylist.txt: 46737) -.porn4down.com/.*/ryuvuong\.gif -# ||porn.com/js/pu.js (easylistchina+easylist.txt: 46736) -.porn.com/js/pu\.js -# ||porn.com/assets/partner_ (easylistchina+easylist.txt: 46735) -.porn.com/assets/partner_ -# ||porn-w.org/images/zevera.png (easylistchina+easylist.txt: 46734) -.porn-w.org/images/zevera\.png -# ||porn-w.org/images/cosy/ (easylistchina+easylist.txt: 46733) -.porn-w.org/images/cosy/ -# ||porn-w.org/images/chs.gif (easylistchina+easylist.txt: 46732) -.porn-w.org/images/chs\.gif -# ||pontoperdido.com/js/webmessenger.js (easylistchina+easylist.txt: 46731) -.pontoperdido.com/js/webmessenger\.js -# ||poguide.com/cdn/images/ad*.gif (easylistchina+easylist.txt: 46730) -.poguide.com/cdn/images/ad.*\.gif -# ||pnet.co.za/jobsearch_iframe_ (easylistchina+easylist.txt: 46729) -.pnet.co.za/jobsearch_iframe_ -# ||plumper6.com/images/ban_pp.jpg (easylistchina+easylist.txt: 46728) -.plumper6.com/images/ban_pp\.jpg -# ||playgirl.com/pg/media/prolong_ad.png (easylistchina+easylist.txt: 46727) -.playgirl.com/pg/media/prolong_ad\.png -# ||planetsuzy.org/kakiframe/ (easylistchina+easylist.txt: 46726) -.planetsuzy.org/kakiframe/ -# ||placepictures.com/Frame.aspx? (easylistchina+easylist.txt: 46725) -.placepictures.com/Frame\.aspx\? -# ||pixroute.com/spl.js (easylistchina+easylist.txt: 46724) -.pixroute.com/spl\.js -# ||pixhost.org/js/jquery_show2.js (easylistchina+easylist.txt: 46723) -.pixhost.org/js/jquery_show2\.js -# ||pixhost.org/image/rotate/ (easylistchina+easylist.txt: 46722) -.pixhost.org/image/rotate/ -# ||pixhost.org/image/cu/ (easylistchina+easylist.txt: 46721) -.pixhost.org/image/cu/ -# ||pinkrod.com/pinkrod_html/ (easylistchina+easylist.txt: 46720) -.pinkrod.com/pinkrod_html/ -# ||pinkrod.com/js/adppinkrod (easylistchina+easylist.txt: 46719) -.pinkrod.com/js/adppinkrod -# ||pinkrod.com/iframes/ (easylistchina+easylist.txt: 46718) -.pinkrod.com/iframes/ -# ||pinkems.com/images/buttons/ (easylistchina+easylist.txt: 46717) -.pinkems.com/images/buttons/ -# ||pink-o-rama.com/Teendreams (easylistchina+easylist.txt: 46716) -.pink-o-rama.com/Teendreams -# ||pink-o-rama.com/Royalcash/ (easylistchina+easylist.txt: 46715) -.pink-o-rama.com/Royalcash/ -# ||pink-o-rama.com/Privatecash (easylistchina+easylist.txt: 46714) -.pink-o-rama.com/Privatecash -# ||pink-o-rama.com/Pimproll/ (easylistchina+easylist.txt: 46713) -.pink-o-rama.com/Pimproll/ -# ||pink-o-rama.com/Nscash (easylistchina+easylist.txt: 46712) -.pink-o-rama.com/Nscash -# ||pink-o-rama.com/Longbucks/ (easylistchina+easylist.txt: 46711) -.pink-o-rama.com/Longbucks/ -# ||pink-o-rama.com/Karups (easylistchina+easylist.txt: 46710) -.pink-o-rama.com/Karups -# ||pink-o-rama.com/Gammae (easylistchina+easylist.txt: 46709) -.pink-o-rama.com/Gammae -# ||pink-o-rama.com/Fuckyou (easylistchina+easylist.txt: 46708) -.pink-o-rama.com/Fuckyou -# ||pink-o-rama.com/Fetishhits (easylistchina+easylist.txt: 46707) -.pink-o-rama.com/Fetishhits -# ||pink-o-rama.com/Brothersincash (easylistchina+easylist.txt: 46706) -.pink-o-rama.com/Brothersincash -# ||pink-o-rama.com/Blazingbucks (easylistchina+easylist.txt: 46705) -.pink-o-rama.com/Blazingbucks -# ||pimpandhost.com/static/i/*-pah.jpg (easylistchina+easylist.txt: 46704) -.pimpandhost.com/static/i/.*-pah\.jpg -# ||pimpandhost.com/static/html/iframe.html (easylistchina+easylist.txt: 46703) -.pimpandhost.com/static/html/iframe\.html -# ||pimpandhost.com/images/pah-download.gif (easylistchina+easylist.txt: 46702) -.pimpandhost.com/images/pah-download\.gif -# ||picxme.com/rec/ (easylistchina+easylist.txt: 46701) -.picxme.com/rec/ -# ||picxme.com/js/pops. (easylistchina+easylist.txt: 46700) -.picxme.com/js/pops\. -# ||picturevip.com/imagehost/top_banners.html (easylistchina+easylist.txt: 46699) -.picturevip.com/imagehost/top_banners\.html -# ||picturescream.com/top_banners.html (easylistchina+easylist.txt: 46698) -.picturescream.com/top_banners\.html -# ||picturescream.com/porn_movies.gif (easylistchina+easylist.txt: 46697) -.picturescream.com/porn_movies\.gif -# ||picturedip.com/windowfiles/dhtmlwindow.css (easylistchina+easylist.txt: 46696) -.picturedip.com/windowfiles/dhtmlwindow\.css -# ||picturedip.com/modalfiles/modal.js (easylistchina+easylist.txt: 46695) -.picturedip.com/modalfiles/modal\.js -# ||picsexhub.com/rec/ (easylistchina+easylist.txt: 46694) -.picsexhub.com/rec/ -# ||picsexhub.com/js/pops2. (easylistchina+easylist.txt: 46693) -.picsexhub.com/js/pops2\. -# ||picsexhub.com/js/pops. (easylistchina+easylist.txt: 46692) -.picsexhub.com/js/pops\. -# ||picp2.com/img/putv (easylistchina+easylist.txt: 46691) -.picp2.com/img/putv -# ||picleet.com/inter_picleet.js (easylistchina+easylist.txt: 46690) -.picleet.com/inter_picleet\.js -# ||pichunter.com/deals/ (easylistchina+easylist.txt: 46689) -.pichunter.com/deals/ -# ||pichunter.com/creatives/ (easylistchina+easylist.txt: 46688) -.pichunter.com/creatives/ -# ||phun.org/phun/gfx/banner/ (easylistchina+easylist.txt: 46687) -.phun.org/phun/gfx/banner/ -# ||phncdn.com/mobile/js/interstitial-min.js? (easylistchina+easylist.txt: 46686) -.phncdn.com/mobile/js/interstitial-min\.js\? -# ||phncdn.com/images/skin/ (easylistchina+easylist.txt: 46685) -.phncdn.com/images/skin/ -# ||phncdn.com/images/premium_ (easylistchina+easylist.txt: 46684) -.phncdn.com/images/premium_ -# ||phncdn.com/images/premium/ (easylistchina+easylist.txt: 46683) -.phncdn.com/images/premium/ -# ||phncdn.com/images/banners/ (easylistchina+easylist.txt: 46682) -.phncdn.com/images/banners/ -# ||phncdn.com/images/*_skin_ (easylistchina+easylist.txt: 46681) -.phncdn.com/images/.*_skin_ -# ||phncdn.com/images/*_skin. (easylistchina+easylist.txt: 46680) -.phncdn.com/images/.*_skin\. -# ||phncdn.com/iframe (easylistchina+easylist.txt: 46679) -.phncdn.com/iframe -# ||perfectgirls.net/b/ (easylistchina+easylist.txt: 46675) -.perfectgirls.net/b/ -# ||pastime.biz^*/personalad*.jpg (easylistchina+easylist.txt: 46674) -.pastime.biz/.*/personalad.*\.jpg -# ||pastime.biz/images/interracial-porn.gif (easylistchina+easylist.txt: 46673) -.pastime.biz/images/interracial-porn\.gif -# ||pastime.biz/images/iloveint.gif (easylistchina+easylist.txt: 46672) -.pastime.biz/images/iloveint\.gif -# ||partners.xhamster.com^ (easylistchina+easylist.txt: 46671) -.partners.xhamster.com -# ||oporn.com/js/wspop.js (easylistchina+easylist.txt: 46670) -.oporn.com/js/wspop\.js -# ||openjavascript.com/jtools/jads. (easylistchina+easylist.txt: 46669) -.openjavascript.com/jtools/jads\. -# ||onlinestars.net/br/ (easylistchina+easylist.txt: 46668) -.onlinestars.net/br/ -# ||onlinestars.net/ban/ (easylistchina+easylist.txt: 46667) -.onlinestars.net/ban/ -# ||onhercam.tv^*/banners/ (easylistchina+easylist.txt: 46666) -.onhercam.tv/.*/banners/ -# ||olderhill.com^*.html| (easylistchina+easylist.txt: 46665) -.olderhill.com/.*\.html$ -# ||olderhill.com/ubr.js (easylistchina+easylist.txt: 46664) -.olderhill.com/ubr\.js -# ||oasisactive.com^*/oasis-widget.html (easylistchina+easylist.txt: 46663) -.oasisactive.com/.*/oasis-widget\.html -# ||nuvid.com/videos_banner.html (easylistchina+easylist.txt: 46662) -.nuvid.com/videos_banner\.html -# ||nudography.com/photos/banners/ (easylistchina+easylist.txt: 46661) -.nudography.com/photos/banners/ -# ||nudevista.com^*/nv-com.min.js (easylistchina+easylist.txt: 46660) -.nudevista.com/.*/nv-com\.min\.js -# ||nudevista.com/_/teasernet (easylistchina+easylist.txt: 46659) -.nudevista.com/_/teasernet -# ||nudevista.com/_/pp. (easylistchina+easylist.txt: 46658) -.nudevista.com/_/pp\. -# ||nudevista.com/_/exo_ (easylistchina+easylist.txt: 46657) -.nudevista.com/_/exo_ -# ||nudebabes.ws/galleries/banners/ (easylistchina+easylist.txt: 46656) -.nudebabes.ws/galleries/banners/ -# ||nude.hu/banners/ (easylistchina+easylist.txt: 46655) -.nude.hu/banners/ -# ||ns4w.org/images/vod_ (easylistchina+easylist.txt: 46654) -.ns4w.org/images/vod_ -# ||ns4w.org/images/promo/ (easylistchina+easylist.txt: 46653) -.ns4w.org/images/promo/ -# ||ns4w.org/gsm.js (easylistchina+easylist.txt: 46652) -.ns4w.org/gsm\.js -# ||novoporn.com/imagelinks/ (easylistchina+easylist.txt: 46651) -.novoporn.com/imagelinks/ -# ||nonktube.com/popembed.js (easylistchina+easylist.txt: 46650) -.nonktube.com/popembed\.js -# ||nonktube.com/nuevox/midroll.php? (easylistchina+easylist.txt: 46649) -.nonktube.com/nuevox/midroll\.php\? -# ||nonktube.com/brazzers/ (easylistchina+easylist.txt: 46648) -.nonktube.com/brazzers/ -# ||niceyoungteens.com/mct.js (easylistchina+easylist.txt: 46647) -.niceyoungteens.com/mct\.js -# ||niceyoungteens.com/ero-advertising (easylistchina+easylist.txt: 46646) -.niceyoungteens.com/ero-advertising -# ||newcelebnipslips.com/nipslipop.js (easylistchina+easylist.txt: 46645) -.newcelebnipslips.com/nipslipop\.js -# ||netronline.com/Include/burst.js (easylistchina+easylist.txt: 46644) -.netronline.com/Include/burst\.js -# ||netasdesalim.com/js/netas (easylistchina+easylist.txt: 46643) -.netasdesalim.com/js/netas -# ||naughtyblog.org/pr1pop.js (easylistchina+easylist.txt: 46642) -.naughtyblog.org/pr1pop\.js -# ||naughty.com/js/popJava.js (easylistchina+easylist.txt: 46641) -.naughty.com/js/popJava\.js -# ||namethatpornstar.com/topphotos/ (easylistchina+easylist.txt: 46640) -.namethatpornstar.com/topphotos/ -# ||naked-sluts.us/prpop.js (easylistchina+easylist.txt: 46639) -.naked-sluts.us/prpop\.js -# ||myslavegirl.org/follow/go.js (easylistchina+easylist.txt: 46638) -.myslavegirl.org/follow/go\.js -# ||myhentai.tv/popsstuff. (easylistchina+easylist.txt: 46637) -.myhentai.tv/popsstuff\. -# ||mygirlfriendvids.net/js/popall1.js (easylistchina+easylist.txt: 46636) -.mygirlfriendvids.net/js/popall1\.js -# ||mydailytube.com/nothing/ (easylistchina+easylist.txt: 46635) -.mydailytube.com/nothing/ -# ||my-pornbase.com/banner/ (easylistchina+easylist.txt: 46634) -.my-pornbase.com/banner/ -# ||mrstiff.com/view/movie/finished/ (easylistchina+easylist.txt: 46633) -.mrstiff.com/view/movie/finished/ -# ||mrstiff.com/view/movie/bar/ (easylistchina+easylist.txt: 46632) -.mrstiff.com/view/movie/bar/ -# ||mrstiff.com/view/context/ (easylistchina+easylist.txt: 46631) -.mrstiff.com/view/context/ -# ||mrstiff.com/uploads/paysite/ (easylistchina+easylist.txt: 46630) -.mrstiff.com/uploads/paysite/ -# ||mp3musicengine.com/images/freewatchtv1. (easylistchina+easylist.txt: 46628) -.mp3musicengine.com/images/freewatchtv1\. -# ||mp3musicengine.com/bearshare_logo. (easylistchina+easylist.txt: 46627) -.mp3musicengine.com/bearshare_logo\. -# ||motherman.com/*.html (easylistchina+easylist.txt: 46626) -.motherman.com/.*\.html -# ||motherless.com/images/banners/ (easylistchina+easylist.txt: 46625) -.motherless.com/images/banners/ -# ||morebabes.to/morebabes.js (easylistchina+easylist.txt: 46624) -.morebabes.to/morebabes\.js -# ||morazzia.com^*/banners/ (easylistchina+easylist.txt: 46623) -.morazzia.com/.*/banners/ -# ||monstertube.com/images/vjoin_ (easylistchina+easylist.txt: 46622) -.monstertube.com/images/vjoin_ -# ||monstertube.com/images/vjoin. (easylistchina+easylist.txt: 46621) -.monstertube.com/images/vjoin\. -# ||monstertube.com/images/bottom-features.jpg (easylistchina+easylist.txt: 46620) -.monstertube.com/images/bottom-features\.jpg -# ||monstertube.com/images/access_ (easylistchina+easylist.txt: 46619) -.monstertube.com/images/access_ -# ||monstercockz.com/eds/ (easylistchina+easylist.txt: 46618) -.monstercockz.com/eds/ -# ||monstercockz.com/cont/ (easylistchina+easylist.txt: 46617) -.monstercockz.com/cont/ -# ||mobilepornmovies.com/images/banners/ (easylistchina+easylist.txt: 46616) -.mobilepornmovies.com/images/banners/ -# ||miragepics.com/images/11361497289209202613.jpg (easylistchina+easylist.txt: 46615) -.miragepics.com/images/11361497289209202613\.jpg -# ||milkmanbook.com/dat/promo/ (easylistchina+easylist.txt: 46614) -.milkmanbook.com/dat/promo/ -# ||merb.ca/banner/ (easylistchina+easylist.txt: 46613) -.merb.ca/banner/ -# ||meendo.com/promos/ (easylistchina+easylist.txt: 46612) -.meendo.com/promos/ -# ||meatspin.com/images/fl.gif (easylistchina+easylist.txt: 46610) -.meatspin.com/images/fl\.gif -# ||meatspin.com/facebookchatlist.php (easylistchina+easylist.txt: 46609) -.meatspin.com/facebookchatlist\.php -# ||maxjizztube.com/downloadfreemovies.php (easylistchina+easylist.txt: 46608) -.maxjizztube.com/downloadfreemovies\.php -# ||matureworld.ws/images/banners/ (easylistchina+easylist.txt: 46607) -.matureworld.ws/images/banners/ -# ||mallandrinhas.net/flutuante (easylistchina+easylist.txt: 46606) -.mallandrinhas.net/flutuante -# ||madthumbs.com/madthumbs/sponsor/ (easylistchina+easylist.txt: 46605) -.madthumbs.com/madthumbs/sponsor/ -# ||madmovs.com/rec/ (easylistchina+easylist.txt: 46604) -.madmovs.com/rec/ -# ||m2.xhamster.com^ (easylistchina+easylist.txt: 46603) -.m2.xhamster.com -# ||lw1.cdmediaworld.com^ (easylistchina+easylist.txt: 46602) -.lw1.cdmediaworld.com -# ||lukeisback.com^*/250.gif (easylistchina+easylist.txt: 46601) -.lukeisback.com/.*/250\.gif -# ||lukeisback.com/images/boxes/ (easylistchina+easylist.txt: 46600) -.lukeisback.com/images/boxes/ -# ||lucidsponge.pl/pop_ (easylistchina+easylist.txt: 46599) -.lucidsponge.pl/pop_ -# ||lubetube.com/js/cspop.js (easylistchina+easylist.txt: 46598) -.lubetube.com/js/cspop\.js -# ||livedoor.jp^*/bnr/bnr- (easylistchina+easylist.txt: 46597) -.livedoor.jp/.*/bnr/bnr- -# ||liveandchat.tv/bana-/ (easylistchina+easylist.txt: 46596) -.liveandchat.tv/bana-/ -# ||live-porn.tv/adds/ (easylistchina+easylist.txt: 46595) -.live-porn.tv/adds/ -# ||literotica.com/images/lit_banners/ (easylistchina+easylist.txt: 46594) -.literotica.com/images/lit_banners/ -# ||literotica.com/images/banners/ (easylistchina+easylist.txt: 46593) -.literotica.com/images/banners/ -# ||linksave.in/fopen.html (easylistchina+easylist.txt: 46592) -.linksave.in/fopen\.html -# ||lesbian.hu/banners/ (easylistchina+easylist.txt: 46591) -.lesbian.hu/banners/ -# ||laxtime.com/rotation/ (easylistchina+easylist.txt: 46590) -.laxtime.com/rotation/ -# ||kyte.tv/flash/MarbachAdvertsDartInstream. (easylistchina+easylist.txt: 46589) -.kyte.tv/flash/MarbachAdvertsDartInstream\. -# ||kuntfutube.com/kellyban.gif (easylistchina+easylist.txt: 46588) -.kuntfutube.com/kellyban\.gif -# ||kuiken.co/inc/ex.js (easylistchina+easylist.txt: 46587) -.kuiken.co/inc/ex\.js -# ||krasview.ru/resource/a.php (easylistchina+easylist.txt: 46586) -.krasview.ru/resource/a\.php -# ||konachan.com/images/bam/ (easylistchina+easylist.txt: 46584) -.konachan.com/images/bam/ -# ||kindgirls.com/banners2/ (easylistchina+easylist.txt: 46583) -.kindgirls.com/banners2/ -# ||keezmovies.com/iframe.html? (easylistchina+easylist.txt: 46582) -.keezmovies.com/iframe\.html\? -# ||kaotic.com^*/popnew.js (easylistchina+easylist.txt: 46581) -.kaotic.com/.*/popnew\.js -# ||justporno.tv/ad/ (easylistchina+easylist.txt: 46580) -.justporno.tv/ad/ -# ||javsin.com/vip.html (easylistchina+easylist.txt: 46578) -.javsin.com/vip\.html -# ||javporn.in/clicunder.js (easylistchina+easylist.txt: 46577) -.javporn.in/clicunder\.js -# ||jav-porn.net/js/popup.js (easylistchina+easylist.txt: 46576) -.jav-porn.net/js/popup\.js -# ||jav-porn.net/js/popout.js (easylistchina+easylist.txt: 46575) -.jav-porn.net/js/popout\.js -# ||jailbaitgallery.com/banners300/ (easylistchina+easylist.txt: 46574) -.jailbaitgallery.com/banners300/ -# ||iseekgirls.com^*/banners/ (easylistchina+easylist.txt: 46573) -.iseekgirls.com/.*/banners/ -# ||iseekgirls.com/rotating_ (easylistchina+easylist.txt: 46572) -.iseekgirls.com/rotating_ -# ||iseekgirls.com/js/fabulous.js (easylistchina+easylist.txt: 46571) -.iseekgirls.com/js/fabulous\.js -# ||iseekgirls.com/g/pandoracash/ (easylistchina+easylist.txt: 46570) -.iseekgirls.com/g/pandoracash/ -# ||intporn.org/scripts/asma.js (easylistchina+easylist.txt: 46569) -.intporn.org/scripts/asma\.js -# ||intporn.com^*/asma.js (easylistchina+easylist.txt: 46568) -.intporn.com/.*/asma\.js -# ||intporn.com^*/21s.js (easylistchina+easylist.txt: 46567) -.intporn.com/.*/21s\.js -# ||indexxx.com^*/banners/ (easylistchina+easylist.txt: 46566) -.indexxx.com/.*/banners/ -# ||imperia-of-hentai.net/banner/ (easylistchina+easylist.txt: 46565) -.imperia-of-hentai.net/banner/ -# ||imgwet.com/aa/ (easylistchina+easylist.txt: 46564) -.imgwet.com/aa/ -# ||imghost.us.to/xxx/content/system/js/iframe.html (easylistchina+easylist.txt: 46563) -.imghost.us.to/xxx/content/system/js/iframe\.html -# ||imgflare.com^*/splash.php (easylistchina+easylist.txt: 46562) -.imgflare.com/.*/splash\.php -# ||imgflare.com/exo.html (easylistchina+easylist.txt: 46561) -.imgflare.com/exo\.html -# ||imgbabes.com^*/splash.php (easylistchina+easylist.txt: 46560) -.imgbabes.com/.*/splash\.php -# ||imgbabes.com/ja.html (easylistchina+easylist.txt: 46559) -.imgbabes.com/ja\.html -# ||imgbabes.com/ero-foo.html (easylistchina+easylist.txt: 46558) -.imgbabes.com/ero-foo\.html -# ||imgbabes.com/element.js (easylistchina+easylist.txt: 46557) -.imgbabes.com/element\.js -# ||imagetwist.com/lj.js (easylistchina+easylist.txt: 46556) -.imagetwist.com/lj\.js -# ||imagetwist.com/imagetwist*.js (easylistchina+easylist.txt: 46555) -.imagetwist.com/imagetwist.*\.js -# ||imagesnake.com/includes/js/pops.js (easylistchina+easylist.txt: 46554) -.imagesnake.com/includes/js/pops\.js -# ||imagesnake.com/includes/js/layer.js (easylistchina+easylist.txt: 46553) -.imagesnake.com/includes/js/layer\.js -# ||imagesnake.com/includes/js/cat.js (easylistchina+easylist.txt: 46552) -.imagesnake.com/includes/js/cat\.js -# ||imageshack.us^*/bannng.jpg (easylistchina+easylist.txt: 46551) -.imageshack.us/.*/bannng\.jpg -# ||imagepost.com/stuff/ (easylistchina+easylist.txt: 46550) -.imagepost.com/stuff/ -# ||imagepost.com/includes/dating/ (easylistchina+easylist.txt: 46549) -.imagepost.com/includes/dating/ -# ||imageporter.com/smate.html (easylistchina+easylist.txt: 46548) -.imageporter.com/smate\.html -# ||imageporter.com/ro-7bgsd.html (easylistchina+easylist.txt: 46547) -.imageporter.com/ro-7bgsd\.html -# ||imagehyper.com/prom/ (easylistchina+easylist.txt: 46546) -.imagehyper.com/prom/ -# ||imagefruit.com^*/pops.js (easylistchina+easylist.txt: 46545) -.imagefruit.com/.*/pops\.js -# ||imagedunk.com^*_imagedunk.js (easylistchina+easylist.txt: 46544) -.imagedunk.com/.*_imagedunk\.js -# ||imagecarry.com/top (easylistchina+easylist.txt: 46543) -.imagecarry.com/top -# ||imagecarry.com/down (easylistchina+easylist.txt: 46542) -.imagecarry.com/down -# ||imagearn.com/img/picBanner.swf (easylistchina+easylist.txt: 46541) -.imagearn.com/img/picBanner\.swf -# ||hustler.com/backout-script/ (easylistchina+easylist.txt: 46540) -.hustler.com/backout-script/ -# ||hungangels.com/vboard/friends/ (easylistchina+easylist.txt: 46539) -.hungangels.com/vboard/friends/ -# ||hottubeclips.com/stxt/banners/ (easylistchina+easylist.txt: 46538) -.hottubeclips.com/stxt/banners/ -# ||hottestgirlsofmyspace.net/smallpics/fb-150x150.gif (easylistchina+easylist.txt: 46537) -.hottestgirlsofmyspace.net/smallpics/fb-150x150\.gif -# ||hottestgirlsofmyspace.net/smallpics/300x200b.gif (easylistchina+easylist.txt: 46536) -.hottestgirlsofmyspace.net/smallpics/300x200b\.gif -# ||hotshame.com/js/adphotshame (easylistchina+easylist.txt: 46535) -.hotshame.com/js/adphotshame -# ||hotshame.com/iframes/ (easylistchina+easylist.txt: 46534) -.hotshame.com/iframes/ -# ||hotshame.com/hotshame_html/ (easylistchina+easylist.txt: 46533) -.hotshame.com/hotshame_html/ -# ||hotsashagrey.com^*/throated.jpg (easylistchina+easylist.txt: 46532) -.hotsashagrey.com/.*/throated\.jpg -# ||hotsashagrey.com^*/squ-fantasygirlsasha-001.gif (easylistchina+easylist.txt: 46531) -.hotsashagrey.com/.*/squ-fantasygirlsasha-001\.gif -# ||hotsashagrey.com^*/PeterNorth-800x350.jpg (easylistchina+easylist.txt: 46530) -.hotsashagrey.com/.*/PeterNorth-800x350\.jpg -# ||hotsashagrey.com^*/New_Sensations-1091.gif (easylistchina+easylist.txt: 46529) -.hotsashagrey.com/.*/New_Sensations-1091\.gif -# ||hotsashagrey.com^*/Anabolic.jpg (easylistchina+easylist.txt: 46528) -.hotsashagrey.com/.*/Anabolic\.jpg -# ||hotkellymadison.com^*/pf_640x100.jpg (easylistchina+easylist.txt: 46527) -.hotkellymadison.com/.*/pf_640x100\.jpg -# ||hotkellymadison.com^*/km_300x300.gif (easylistchina+easylist.txt: 46526) -.hotkellymadison.com/.*/km_300x300\.gif -# ||hotkellymadison.com^*/kelly4.jpg (easylistchina+easylist.txt: 46525) -.hotkellymadison.com/.*/kelly4\.jpg -# ||hotkellymadison.com^*/kelly1.jpg (easylistchina+easylist.txt: 46524) -.hotkellymadison.com/.*/kelly1\.jpg -# ||hotdylanryder.com^*/wicked.gif (easylistchina+easylist.txt: 46523) -.hotdylanryder.com/.*/wicked\.gif -# ||hotdylanryder.com^*/pf_640x100.jpg (easylistchina+easylist.txt: 46522) -.hotdylanryder.com/.*/pf_640x100\.jpg -# ||hotdylanryder.com^*/iframes_174.jpg (easylistchina+easylist.txt: 46521) -.hotdylanryder.com/.*/iframes_174\.jpg -# ||hotdylanryder.com^*/dylan_350x250_01.jpg (easylistchina+easylist.txt: 46520) -.hotdylanryder.com/.*/dylan_350x250_01\.jpg -# ||hotdylanryder.com^*/Big-Tits-Like-Big-Dicks.jpg (easylistchina+easylist.txt: 46519) -.hotdylanryder.com/.*/Big-Tits-Like-Big-Dicks\.jpg -# ||hotdevonmichaels.com^*/wicked.gif (easylistchina+easylist.txt: 46518) -.hotdevonmichaels.com/.*/wicked\.gif -# ||hotdevonmichaels.com^*/streamate2.jpg (easylistchina+easylist.txt: 46517) -.hotdevonmichaels.com/.*/streamate2\.jpg -# ||hotdevonmichaels.com^*/pf_640x1001.jpg (easylistchina+easylist.txt: 46516) -.hotdevonmichaels.com/.*/pf_640x1001\.jpg -# ||hornywhores.net/img/zevera_rec.jpg (easylistchina+easylist.txt: 46515) -.hornywhores.net/img/zevera_rec\.jpg -# ||hornywhores.net/img/double.jpg (easylistchina+easylist.txt: 46514) -.hornywhores.net/img/double\.jpg -# ||hornygamer.com/images/promo/ (easylistchina+easylist.txt: 46512) -.hornygamer.com/images/promo/ -# ||homeprivatevids.com/banners.shtml (easylistchina+easylist.txt: 46511) -.homeprivatevids.com/banners\.shtml -# ||homeprivatevids.com/banner2.shtml (easylistchina+easylist.txt: 46510) -.homeprivatevids.com/banner2\.shtml -# ||homegrownfreaks.net/homegfreaks.js (easylistchina+easylist.txt: 46508) -.homegrownfreaks.net/homegfreaks\.js -# ||hollywoodoops.com/img/*banner (easylistchina+easylist.txt: 46507) -.hollywoodoops.com/img/.*banner -# ||hollyscoop.com/sites/*/skins/ (easylistchina+easylist.txt: 46506) -.hollyscoop.com/sites/.*/skins/ -# ||hidefporn.ws/nitro.png (easylistchina+easylist.txt: 46505) -.hidefporn.ws/nitro\.png -# ||hidefporn.ws/img.png (easylistchina+easylist.txt: 46504) -.hidefporn.ws/img\.png -# ||hidefporn.ws/client (easylistchina+easylist.txt: 46503) -.hidefporn.ws/client -# ||hidefporn.ws/055.jpg (easylistchina+easylist.txt: 46502) -.hidefporn.ws/055\.jpg -# ||hidefporn.ws/05.jpg (easylistchina+easylist.txt: 46501) -.hidefporn.ws/05\.jpg -# ||hidefporn.ws/04.jpg (easylistchina+easylist.txt: 46500) -.hidefporn.ws/04\.jpg -# ||hgimg.com/js/beacon. (easylistchina+easylist.txt: 46499) -.hgimg.com/js/beacon\. -# ||heraldnetdailydeal.com/widgets/DailyDealWidget300x250 (easylistchina+easylist.txt: 46498) -.heraldnetdailydeal.com/widgets/DailyDealWidget300x250 -# ||heraldnet.com/section/iFrame_AutosInternetSpecials? (easylistchina+easylist.txt: 46497) -.heraldnet.com/section/iFrame_AutosInternetSpecials\? -# ||hentaistream.com/wp-includes/images/mofos/webcams_ (easylistchina+easylist.txt: 46496) -.hentaistream.com/wp-includes/images/mofos/webcams_ -# ||hentaistream.com/wp-includes/images/bg- (easylistchina+easylist.txt: 46495) -.hentaistream.com/wp-includes/images/bg- -# ||hentaistream.com/out/ (easylistchina+easylist.txt: 46494) -.hentaistream.com/out/ -# ||hentai-foundry.com/themes/Hentai/images/hu/hu.jpg (easylistchina+easylist.txt: 46492) -.hentai-foundry.com/themes/Hentai/images/hu/hu\.jpg -# ||hentai-foundry.com/themes/*Banner (easylistchina+easylist.txt: 46491) -.hentai-foundry.com/themes/.*Banner -# ||hellporno.com/iframes/ (easylistchina+easylist.txt: 46489) -.hellporno.com/iframes/ -# ||hebus.com/p/hebusx/ (easylistchina+easylist.txt: 46488) -.hebus.com/p/hebusx/ -# ||heavy-r.com/js/imbox.js (easylistchina+easylist.txt: 46487) -.heavy-r.com/js/imbox\.js -# ||heavy-r.com/a/ (easylistchina+easylist.txt: 46486) -.heavy-r.com/a/ -# ||hdzog.com/hdzog.php?t_sid= (easylistchina+easylist.txt: 46485) -.hdzog.com/hdzog\.php\?t_sid= -# ||hdzog.com/contents/cst/ (easylistchina+easylist.txt: 46484) -.hdzog.com/contents/cst/ -# ||hdzog.com/contents/content_sources/ (easylistchina+easylist.txt: 46483) -.hdzog.com/contents/content_sources/ -# ||hdporn.net/images/hd-porn-banner.gif (easylistchina+easylist.txt: 46482) -.hdporn.net/images/hd-porn-banner\.gif -# ||hdporn.in/js/pops2. (easylistchina+easylist.txt: 46480) -.hdporn.in/js/pops2\. -# ||hdporn.in/js/focus.*.js (easylistchina+easylist.txt: 46479) -.hdporn.in/js/focus\..*\.js -# ||hdporn.in/images/rec/ (easylistchina+easylist.txt: 46478) -.hdporn.in/images/rec/ -# ||hcomicbook.com^*_banner1.gif (easylistchina+easylist.txt: 46477) -.hcomicbook.com/.*_banner1\.gif -# ||hcomicbook.com/banner/ (easylistchina+easylist.txt: 46475) -.hcomicbook.com/banner/ -# ||hclips.com/js/m.js (easylistchina+easylist.txt: 46474) -.hclips.com/js/m\.js -# ||hawaiipornblog.com/post_images/ (easylistchina+easylist.txt: 46473) -.hawaiipornblog.com/post_images/ -# ||hardsextube.com/zone.php (easylistchina+easylist.txt: 46472) -.hardsextube.com/zone\.php -# ||hardsextube.com/testxml.php (easylistchina+easylist.txt: 46471) -.hardsextube.com/testxml\.php -# ||hardsextube.com/preroll/getiton/ (easylistchina+easylist.txt: 46470) -.hardsextube.com/preroll/getiton/ -# ||hardcoresexgif.com/wp-content/msn.js (easylistchina+easylist.txt: 46468) -.hardcoresexgif.com/wp-content/msn\.js -# ||hanksgalleries.com/vg_ad_ (easylistchina+easylist.txt: 46467) -.hanksgalleries.com/vg_ad_ -# ||hanksgalleries.com/stxt_ (easylistchina+easylist.txt: 46466) -.hanksgalleries.com/stxt_ -# ||hanksgalleries.com/galleryimgs/ (easylistchina+easylist.txt: 46465) -.hanksgalleries.com/galleryimgs/ -# ||hanksgalleries.com/gallery- (easylistchina+easylist.txt: 46464) -.hanksgalleries.com/gallery- -# ||hanksgalleries.com/aff- (easylistchina+easylist.txt: 46463) -.hanksgalleries.com/aff- -# ||h2porn.com/contents/content_sources/ (easylistchina+easylist.txt: 46462) -.h2porn.com/contents/content_sources/ -# ||gspcdn.com^*/banners/ (easylistchina+easylist.txt: 46461) -.gspcdn.com/.*/banners/ -# ||grannysexforum.com/filter.php (easylistchina+easylist.txt: 46460) -.grannysexforum.com/filter\.php -# ||gotgayporn.com/Watermarks/ (easylistchina+easylist.txt: 46459) -.gotgayporn.com/Watermarks/ -# ||goldporntube.com/iframes/ (easylistchina+easylist.txt: 46458) -.goldporntube.com/iframes/ -# ||gloryholegirlz.com/images/banners/ (easylistchina+easylist.txt: 46457) -.gloryholegirlz.com/images/banners/ -# ||glamour.cz/banners/ (easylistchina+easylist.txt: 46456) -.glamour.cz/banners/ -# ||girlsofdesire.org/media/banners/ (easylistchina+easylist.txt: 46455) -.girlsofdesire.org/media/banners/ -# ||girlsofdesire.org/banner/ (easylistchina+easylist.txt: 46454) -.girlsofdesire.org/banner/ -# ||girlsnaked.net/gallery/banners/ (easylistchina+easylist.txt: 46453) -.girlsnaked.net/gallery/banners/ -# ||girlsintube.com/images/get-free-server.jpg (easylistchina+easylist.txt: 46452) -.girlsintube.com/images/get-free-server\.jpg -# ||girlsfromprague.eu^*468x (easylistchina+easylist.txt: 46451) -.girlsfromprague.eu/.*468x -# ||girlsfromprague.eu/banners/ (easylistchina+easylist.txt: 46450) -.girlsfromprague.eu/banners/ -# ||girlsfrombudapest.eu/banners/ (easylistchina+easylist.txt: 46449) -.girlsfrombudapest.eu/banners/ -# ||girlfriendvideos.com/pcode.js (easylistchina+easylist.txt: 46448) -.girlfriendvideos.com/pcode\.js -# ||gina-lynn.net/pr4.html (easylistchina+easylist.txt: 46447) -.gina-lynn.net/pr4\.html -# ||ghettotube.com/images/banners/ (easylistchina+easylist.txt: 46446) -.ghettotube.com/images/banners/ -# ||gggtube.com/images/banners/ (easylistchina+easylist.txt: 46445) -.gggtube.com/images/banners/ -# ||gaytube.com/chacha/ (easylistchina+easylist.txt: 46444) -.gaytube.com/chacha/ -# ||gayporntimes.com^*/CockyBoys-July-2012.jpg (easylistchina+easylist.txt: 46443) -.gayporntimes.com/.*/CockyBoys-July-2012\.jpg -# ||gayporntimes.com^*/Bel-Ami-Mick-Lovell-July-2012.jpeg (easylistchina+easylist.txt: 46442) -.gayporntimes.com/.*/Bel-Ami-Mick-Lovell-July-2012\.jpeg -# ||gayporntimes.com/img/GP_Heroes.jpg (easylistchina+easylist.txt: 46441) -.gayporntimes.com/img/GP_Heroes\.jpg -# ||gapeandfist.com/uploads/thumbs/ (easylistchina+easylist.txt: 46440) -.gapeandfist.com/uploads/thumbs/ -# ||gamesofdesire.com/images/banners/ (easylistchina+easylist.txt: 46439) -.gamesofdesire.com/images/banners/ -# ||gals4free.net/images/banners/ (easylistchina+easylist.txt: 46438) -.gals4free.net/images/banners/ -# ||galleries-pornstar.com/thumb_top/ (easylistchina+easylist.txt: 46437) -.galleries-pornstar.com/thumb_top/ -# ||funny-games.biz/banners/ (easylistchina+easylist.txt: 46436) -.funny-games.biz/banners/ -# ||fuckuh.com/pr_ad.swf (easylistchina+easylist.txt: 46435) -.fuckuh.com/pr_ad\.swf -# ||freepornvs.com/im.js (easylistchina+easylist.txt: 46433) -.freepornvs.com/im\.js -# ||freeporninhd.com/images/cbzide. (easylistchina+easylist.txt: 46432) -.freeporninhd.com/images/cbzide\. -# ||freeporninhd.com/images/cbside. (easylistchina+easylist.txt: 46431) -.freeporninhd.com/images/cbside\. -# ||freeporn.to/wpbanner/ (easylistchina+easylist.txt: 46430) -.freeporn.to/wpbanner/ -# ||freeimgup.com/xxx/content/system/js/iframe.html (easylistchina+easylist.txt: 46428) -.freeimgup.com/xxx/content/system/js/iframe\.html -# ||freebunker.com^*/raw.js (easylistchina+easylist.txt: 46427) -.freebunker.com/.*/raw\.js -# ||freebunker.com^*/pops.js (easylistchina+easylist.txt: 46426) -.freebunker.com/.*/pops\.js -# ||freebunker.com^*/oc.js (easylistchina+easylist.txt: 46425) -.freebunker.com/.*/oc\.js -# ||freebunker.com^*/layer.js (easylistchina+easylist.txt: 46424) -.freebunker.com/.*/layer\.js -# ||freebunker.com^*/exa.js (easylistchina+easylist.txt: 46423) -.freebunker.com/.*/exa\.js -# ||freebunker.com^*/ex.js (easylistchina+easylist.txt: 46422) -.freebunker.com/.*/ex\.js -# ||freebunker.com/includes/js/cat.js (easylistchina+easylist.txt: 46421) -.freebunker.com/includes/js/cat\.js -# ||free-celebrity-tube.com/js/freeceleb.js (easylistchina+easylist.txt: 46420) -.free-celebrity-tube.com/js/freeceleb\.js -# ||floppy-tits.com/iframes/ (easylistchina+easylist.txt: 46419) -.floppy-tits.com/iframes/ -# ||fleshbot.com/wp-content/themes/fbdesktop_aff/images/af (easylistchina+easylist.txt: 46418) -.fleshbot.com/wp-content/themes/fbdesktop_aff/images/af -# ||fingerslam.com/*.html (easylistchina+easylist.txt: 46417) -.fingerslam.com/.*\.html -# ||finehub.com/p3.js (easylistchina+easylist.txt: 46416) -.finehub.com/p3\.js -# ||filthyrx.com/rx.js (easylistchina+easylist.txt: 46415) -.filthyrx.com/rx\.js -# ||filthyrx.com/inline.php? (easylistchina+easylist.txt: 46414) -.filthyrx.com/inline\.php\? -# ||filthyrx.com/images/porno/ (easylistchina+easylist.txt: 46413) -.filthyrx.com/images/porno/ -# ||fileshare.ro^*/dhtmlwindow.js (easylistchina+easylist.txt: 46412) -.fileshare.ro/.*/dhtmlwindow\.js -# ||femdom-fetish-tube.com/popfemdom.js (easylistchina+easylist.txt: 46409) -.femdom-fetish-tube.com/popfemdom\.js -# ||fastpic.ru/js_h2.jpg (easylistchina+easylist.txt: 46408) -.fastpic.ru/js_h2\.jpg -# ||fastpic.ru/js_f2.jpg (easylistchina+easylist.txt: 46407) -.fastpic.ru/js_f2\.jpg -# ||fapdick.com/uploads/fap_ (easylistchina+easylist.txt: 46406) -.fapdick.com/uploads/fap_ -# ||fapdick.com/uploads/1fap_ (easylistchina+easylist.txt: 46405) -.fapdick.com/uploads/1fap_ -# ||fantasti.cc/_special/ (easylistchina+easylist.txt: 46404) -.fantasti.cc/_special/ -# ||extremetube.com/player_related? (easylistchina+easylist.txt: 46403) -.extremetube.com/player_related\? -# ||extreme-board.com/bannrs/ (easylistchina+easylist.txt: 46402) -.extreme-board.com/bannrs/ -# ||exit.macandbumble.com^ (easylistchina+easylist.txt: 46401) -.exit.macandbumble.com -# ||exhentai.net/img/aaf1.gif (easylistchina+easylist.txt: 46400) -.exhentai.net/img/aaf1\.gif -# ||eskimotube.com/kellyban.gif (easylistchina+easylist.txt: 46399) -.eskimotube.com/kellyban\.gif -# ||eroprofile.com/js/pu*.js (easylistchina+easylist.txt: 46398) -.eroprofile.com/js/pu.*\.js -# ||eporner.com/pjsall-*.js (easylistchina+easylist.txt: 46396) -.eporner.com/pjsall-.*\.js -# ||eporner.com/cppb/ (easylistchina+easylist.txt: 46394) -.eporner.com/cppb/ -# ||epicwank.com/social/jquery.stp.min.js (easylistchina+easylist.txt: 46393) -.epicwank.com/social/jquery\.stp\.min\.js -# ||entensity.net/crap/ (easylistchina+easylist.txt: 46392) -.entensity.net/crap/ -# ||empireamateurs.com/images/*banner (easylistchina+easylist.txt: 46391) -.empireamateurs.com/images/.*banner -# ||empflix.com/embedding_player/600x474_ (easylistchina+easylist.txt: 46390) -.empflix.com/embedding_player/600x474_ -# ||egoporn.com/videotop.gif (easylistchina+easylist.txt: 46389) -.egoporn.com/videotop\.gif -# ||egoporn.com/themagic.js (easylistchina+easylist.txt: 46388) -.egoporn.com/themagic\.js -# ||eccie.net/eros/ (easylistchina+easylist.txt: 46386) -.eccie.net/eros/ -# ||eccie.net/buploads/ (easylistchina+easylist.txt: 46385) -.eccie.net/buploads/ -# ||easypic.com/js/easypicads.js (easylistchina+easylist.txt: 46384) -.easypic.com/js/easypicads\.js -# ||dusttube.com/pop*.js (easylistchina+easylist.txt: 46383) -.dusttube.com/pop.*\.js -# ||drtuber.com^*/aff_banner.swf (easylistchina+easylist.txt: 46382) -.drtuber.com/.*/aff_banner\.swf -# ||drtuber.com/templates/frontend/white/js/embed.js? (easylistchina+easylist.txt: 46381) -.drtuber.com/templates/frontend/white/js/embed\.js\? -# ||drtuber.com/promo/banners/ (easylistchina+easylist.txt: 46380) -.drtuber.com/promo/banners/ -# ||dronporn.com/tizer.html (easylistchina+easylist.txt: 46379) -.dronporn.com/tizer\.html -# ||dronporn.com/main-video-place.html (easylistchina+easylist.txt: 46378) -.dronporn.com/main-video-place\.html -# ||dot2.eporner.com^ (easylistchina+easylist.txt: 46377) -.dot2.eporner.com -# ||dot.eporner.com^ (easylistchina+easylist.txt: 46376) -.dot.eporner.com -# ||dominationtube.com/exit.js (easylistchina+easylist.txt: 46375) -.dominationtube.com/exit\.js -# ||dixyporn.com/include/ (easylistchina+easylist.txt: 46374) -.dixyporn.com/include/ -# ||dirtypriest.com/sexpics/ (easylistchina+easylist.txt: 46373) -.dirtypriest.com/sexpics/ -# ||dickbig.net/scr/ (easylistchina+easylist.txt: 46372) -.dickbig.net/scr/ -# ||diamond-tgp.com/fp.js (easylistchina+easylist.txt: 46371) -.diamond-tgp.com/fp\.js -# ||devatube.com/img/partners/ (easylistchina+easylist.txt: 46370) -.devatube.com/img/partners/ -# ||destroymilf.com/popup%20floater.js (easylistchina+easylist.txt: 46369) -.destroymilf.com/popup%20floater\.js -# ||depic.me/banners/ (easylistchina+easylist.txt: 46368) -.depic.me/banners/ -# ||deliciousbabes.org/media/banners/ (easylistchina+easylist.txt: 46367) -.deliciousbabes.org/media/banners/ -# ||deliciousbabes.org/banner/ (easylistchina+easylist.txt: 46366) -.deliciousbabes.org/banner/ -# ||definefetish.com/df/js/dpcm.js (easylistchina+easylist.txt: 46365) -.definefetish.com/df/js/dpcm\.js -# ||definebabe.com/sponsor/ (easylistchina+easylist.txt: 46364) -.definebabe.com/sponsor/ -# ||definebabe.com/db/js/pcme.js (easylistchina+easylist.txt: 46363) -.definebabe.com/db/js/pcme\.js -# ||definebabe.com/db/images/leftnav/webcams2.png (easylistchina+easylist.txt: 46362) -.definebabe.com/db/images/leftnav/webcams2\.png -# ||data18.com^*/banners/ (easylistchina+easylist.txt: 46361) -.data18.com/.*/banners/ -# ||damimage.com^*/DocaWedrOJPPx.png (easylistchina+easylist.txt: 46360) -.damimage.com/.*/DocaWedrOJPPx\.png -# ||creepshots.com^*/250x250_ (easylistchina+easylist.txt: 46359) -.creepshots.com/.*/250x250_ -# ||creatives.pichunter.com^ (easylistchina+easylist.txt: 46358) -.creatives.pichunter.com -# ||creatives.cliphunter.com^ (easylistchina+easylist.txt: 46357) -.creatives.cliphunter.com -# ||creampietubeporn.com/porn.html (easylistchina+easylist.txt: 46356) -.creampietubeporn.com/porn\.html -# ||creampietubeporn.com/ctp.html (easylistchina+easylist.txt: 46355) -.creampietubeporn.com/ctp\.html -# ||crazyshit.com/p0pzIn.js (easylistchina+easylist.txt: 46354) -.crazyshit.com/p0pzIn\.js -# ||crackwhoreconfessions.com/images/banners/ (easylistchina+easylist.txt: 46353) -.crackwhoreconfessions.com/images/banners/ -# ||coolmovs.com/js/focus.*.js (easylistchina+easylist.txt: 46351) -.coolmovs.com/js/focus\..*\.js -# ||comdotgame.com/vgirl/ (easylistchina+easylist.txt: 46350) -.comdotgame.com/vgirl/ -# ||clips-and-pics.org/clipsandpics.js (easylistchina+easylist.txt: 46349) -.clips-and-pics.org/clipsandpics\.js -# ||chubby-ocean.com/banner/ (easylistchina+easylist.txt: 46348) -.chubby-ocean.com/banner/ -# ||chanweb.info/en/adult/hc/local_include/ (easylistchina+easylist.txt: 46347) -.chanweb.info/en/adult/hc/local_include/ -# ||cfake.com/images/a/ (easylistchina+easylist.txt: 46346) -.cfake.com/images/a/ -# ||celebritypink.com/bannedcelebs- (easylistchina+easylist.txt: 46345) -.celebritypink.com/bannedcelebs- -# ||celeb.gate.cc/misc/event_*.js (easylistchina+easylist.txt: 46344) -.celeb.gate.cc/misc/event_.*\.js -# ||celeb.gate.cc/banner/ (easylistchina+easylist.txt: 46343) -.celeb.gate.cc/banner/ -# ||canadianhottie.ca/images/banners/ (easylistchina+easylist.txt: 46342) -.canadianhottie.ca/images/banners/ -# ||cameltoe.com^*/banners/ (easylistchina+easylist.txt: 46341) -.cameltoe.com/.*/banners/ -# ||bustnow.com^*/sponsors/ (easylistchina+easylist.txt: 46340) -.bustnow.com/.*/sponsors/ -# ||bustnow.com^*/999.js.php (easylistchina+easylist.txt: 46339) -.bustnow.com/.*/999\.js\.php -# ||bustnow.com/xv/x/002.php (easylistchina+easylist.txt: 46338) -.bustnow.com/xv/x/002\.php -# ||bustnow.com/xv/ad/ (easylistchina+easylist.txt: 46337) -.bustnow.com/xv/ad/ -# ||bunnylust.com/sponsors/ (easylistchina+easylist.txt: 46336) -.bunnylust.com/sponsors/ -# ||brcache.madthumbs.com^ (easylistchina+easylist.txt: 46335) -.brcache.madthumbs.com -# ||bravotube.net/dp.html (easylistchina+easylist.txt: 46333) -.bravotube.net/dp\.html -# ||bralesscelebs.com/320x240ps.gif (easylistchina+easylist.txt: 46331) -.bralesscelebs.com/320x240ps\.gif -# ||bralesscelebs.com/160x600ps.gif (easylistchina+easylist.txt: 46330) -.bralesscelebs.com/160x600ps\.gif -# ||bralesscelebs.com/160x600hcp.gif (easylistchina+easylist.txt: 46329) -.bralesscelebs.com/160x600hcp\.gif -# ||bralesscelebs.com/*banner (easylistchina+easylist.txt: 46328) -.bralesscelebs.com/.*banner -# ||boobieblog.com/TilaTequilaBackdoorBanner2.jpg (easylistchina+easylist.txt: 46327) -.boobieblog.com/TilaTequilaBackdoorBanner2\.jpg -# ||boobieblog.com/submityourbitchbanner3.jpg (easylistchina+easylist.txt: 46326) -.boobieblog.com/submityourbitchbanner3\.jpg -# ||boneprone.com/premium.html (easylistchina+easylist.txt: 46325) -.boneprone.com/premium\.html -# ||bonbonsex.com/js/workhome.js (easylistchina+easylist.txt: 46324) -.bonbonsex.com/js/workhome\.js -# ||bonbonsex.com/js/dl/bottom.js (easylistchina+easylist.txt: 46323) -.bonbonsex.com/js/dl/bottom\.js -# ||bonbonme.com/js/rightbanner.js (easylistchina+easylist.txt: 46322) -.bonbonme.com/js/rightbanner\.js -# ||bonbonme.com/js/dticash/ (easylistchina+easylist.txt: 46321) -.bonbonme.com/js/dticash/ -# ||bonbonme.com/js/cams.js (easylistchina+easylist.txt: 46320) -.bonbonme.com/js/cams\.js -# ||bob.crazyshit.com^ (easylistchina+easylist.txt: 46319) -.bob.crazyshit.com -# ||blackredtube.com/fadebox2.js (easylistchina+easylist.txt: 46318) -.blackredtube.com/fadebox2\.js -# ||blackonasianblog.com/uploads/banners/ (easylistchina+easylist.txt: 46317) -.blackonasianblog.com/uploads/banners/ -# ||bigxvideos.com/rec/ (easylistchina+easylist.txt: 46316) -.bigxvideos.com/rec/ -# ||bigxvideos.com/js/popu. (easylistchina+easylist.txt: 46315) -.bigxvideos.com/js/popu\. -# ||bigxvideos.com/js/pops2. (easylistchina+easylist.txt: 46314) -.bigxvideos.com/js/pops2\. -# ||bigxvideos.com/js/focus.*.js (easylistchina+easylist.txt: 46313) -.bigxvideos.com/js/focus\..*\.js -# ||bigboobs.hu/banners/ (easylistchina+easylist.txt: 46312) -.bigboobs.hu/banners/ -# ||bellyboner.com/facebookchatlist.php (easylistchina+easylist.txt: 46311) -.bellyboner.com/facebookchatlist\.php -# ||befuck.com/js/adpbefuck (easylistchina+easylist.txt: 46310) -.befuck.com/js/adpbefuck -# ||befuck.com/befuck_html/ (easylistchina+easylist.txt: 46309) -.befuck.com/befuck_html/ -# ||banners.cams.com^ (easylistchina+easylist.txt: 46308) -.banners.cams.com -# ||banner1.pornhost.com^ (easylistchina+easylist.txt: 46307) -.banner1.pornhost.com -# ||bangyoulater.com/pages/aff.php (easylistchina+easylist.txt: 46306) -.bangyoulater.com/pages/aff\.php -# ||bangyoulater.com/images/banners_ (easylistchina+easylist.txt: 46305) -.bangyoulater.com/images/banners_ -# ||bagslap.com/*.html (easylistchina+easylist.txt: 46304) -.bagslap.com/.*\.html -# ||badjojo.com/js/scripts- (easylistchina+easylist.txt: 46303) -.badjojo.com/js/scripts- -# ||badjojo.com/b2s.php (easylistchina+easylist.txt: 46302) -.badjojo.com/b2s\.php -# ||babesmachine.com/html/ (easylistchina+easylist.txt: 46301) -.babesmachine.com/html/ -# ||babeshows.co.uk^*banner (easylistchina+easylist.txt: 46300) -.babeshows.co.uk/.*banner -# ||babeshows.co.uk/fvn53.jpg (easylistchina+easylist.txt: 46299) -.babeshows.co.uk/fvn53\.jpg -# ||babesandstars.com/thumbs/paysites/ (easylistchina+easylist.txt: 46298) -.babesandstars.com/thumbs/paysites/ -# ||babesandstars.com/images/a/ (easylistchina+easylist.txt: 46297) -.babesandstars.com/images/a/ -# ||babepicture.co.uk^*banner (easylistchina+easylist.txt: 46296) -.babepicture.co.uk/.*banner -# ||babedrop.com/babelogger_images/ (easylistchina+easylist.txt: 46295) -.babedrop.com/babelogger_images/ -# ||babblesex.com/js/misc.js (easylistchina+easylist.txt: 46294) -.babblesex.com/js/misc\.js -# ||axatube.com/dos.html (easylistchina+easylist.txt: 46293) -.axatube.com/dos\.html -# ||avn.com/templates/avnav/skins/ (easylistchina+easylist.txt: 46292) -.avn.com/templates/avnav/skins/ -# ||asspoint.com/images/banners/ (easylistchina+easylist.txt: 46291) -.asspoint.com/images/banners/ -# ||asianpornmovies.com/images/banners/ (easylistchina+easylist.txt: 46290) -.asianpornmovies.com/images/banners/ -# ||asgayas.com/popin.js (easylistchina+easylist.txt: 46289) -.asgayas.com/popin\.js -# ||asgayas.com/floater/ (easylistchina+easylist.txt: 46288) -.asgayas.com/floater/ -# ||asexstories.com/010ads/ (easylistchina+easylist.txt: 46287) -.asexstories.com/010ads/ -# ||arionmovies.com/*/popup.php (easylistchina+easylist.txt: 46286) -.arionmovies.com/.*/popup\.php -# ||anysex.com/content_sources/ (easylistchina+easylist.txt: 46285) -.anysex.com/content_sources/ -# ||anysex.com/b/ (easylistchina+easylist.txt: 46284) -.anysex.com/b/ -# ||angelshack.com/images/under-video.png (easylistchina+easylist.txt: 46283) -.angelshack.com/images/under-video\.png -# ||andtube.com/ban_ (easylistchina+easylist.txt: 46282) -.andtube.com/ban_ -# ||analtubegirls.com/js/realamateurtube.js (easylistchina+easylist.txt: 46281) -.analtubegirls.com/js/realamateurtube\.js -# ||analpornpix.com/agent.php? (easylistchina+easylist.txt: 46280) -.analpornpix.com/agent\.php\? -# ||amateurfarm.net/layer.js (easylistchina+easylist.txt: 46279) -.amateurfarm.net/layer\.js -# ||amateuralbum.net/affb.html (easylistchina+easylist.txt: 46278) -.amateuralbum.net/affb\.html -# ||amateur-streams.com^*/popup.js (easylistchina+easylist.txt: 46277) -.amateur-streams.com/.*/popup\.js -# ||amateur-desire.com/pics/sm_ (easylistchina+easylist.txt: 46276) -.amateur-desire.com/pics/sm_ -# ||amateur-desire.com/pics/724x90d.jpg (easylistchina+easylist.txt: 46275) -.amateur-desire.com/pics/724x90d\.jpg -# ||amadorastube.com^*/banner_ (easylistchina+easylist.txt: 46274) -.amadorastube.com/.*/banner_ -# ||alotporn.com^*/js/oopopw.js (easylistchina+easylist.txt: 46273) -.alotporn.com/.*/js/oopopw\.js -# ||alotporn.com/media/banners/ (easylistchina+easylist.txt: 46272) -.alotporn.com/media/banners/ -# ||alladultnetwork.tv/main/videoadroll.xml (easylistchina+easylist.txt: 46271) -.alladultnetwork.tv/main/videoadroll\.xml -# ||affiliates.goodvibes.com^ (easylistchina+easylist.txt: 46270) -.affiliates.goodvibes.com -# ||adultwork.com/images/AWBanners/ (easylistchina+easylist.txt: 46269) -.adultwork.com/images/AWBanners/ -# ||adultfyi.com/images/banners/ (easylistchina+easylist.txt: 46268) -.adultfyi.com/images/banners/ -# ||adultfilmdatabase.com/graphics/banners/ (easylistchina+easylist.txt: 46267) -.adultfilmdatabase.com/graphics/banners/ -# ||adultdvdtalk.com/studios/ (easylistchina+easylist.txt: 46266) -.adultdvdtalk.com/studios/ -# ||adult-sex-games.com/images/promo/ (easylistchina+easylist.txt: 46265) -.adult-sex-games.com/images/promo/ -# ||adult-profit-files.com/banner (easylistchina+easylist.txt: 46264) -.adult-profit-files.com/banner -# ||ads.xxxbunker.com^ (easylistchina+easylist.txt: 46263) -.ads.xxxbunker.com -# ||adrive.com/images/fc_banner.jpg (easylistchina+easylist.txt: 46262) -.adrive.com/images/fc_banner\.jpg -# ||ad.userporn.com^ (easylistchina+easylist.txt: 46261) -.ad.userporn.com -# ||ad.thisav.com^ (easylistchina+easylist.txt: 46260) -.ad.thisav.com -# ||ad.slutload.com^ (easylistchina+easylist.txt: 46259) -.ad.slutload.com -# ||ad.eporner.com^ (easylistchina+easylist.txt: 46258) -.ad.eporner.com -# ||absoluporn.com/code/pub/ (easylistchina+easylist.txt: 46257) -.absoluporn.com/code/pub/ -# ||abc-celebs.com/spons/ (easylistchina+easylist.txt: 46256) -.abc-celebs.com/spons/ -# ||a.killergram-girls.com^ (easylistchina+easylist.txt: 46255) -.a.killergram-girls.com -# ||a.heavy-r.com^ (easylistchina+easylist.txt: 46254) -.a.heavy-r.com -# ||a.eporner.com^ (easylistchina+easylist.txt: 46253) -.a.eporner.com -# ||64.62.202.124^*/cumlouder.jpg (easylistchina+easylist.txt: 46252) -.64.62.202.124/.*/cumlouder\.jpg -# ||5ilthy.com/porn.php (easylistchina+easylist.txt: 46251) -.5ilthy.com/porn\.php -# ||4ufrom.me/xpw.gif (easylistchina+easylist.txt: 46250) -.4ufrom.me/xpw\.gif -# ||3yen.com/wfn_ (easylistchina+easylist.txt: 46249) -.3yen.com/wfn_ -# ||3xupdate.com^*/ryusharepremium.gif (easylistchina+easylist.txt: 46248) -.3xupdate.com/.*/ryusharepremium\.gif -# ||3xupdate.com^*/ryushare2.gif (easylistchina+easylist.txt: 46247) -.3xupdate.com/.*/ryushare2\.gif -# ||3xupdate.com^*/ryushare.gif (easylistchina+easylist.txt: 46246) -.3xupdate.com/.*/ryushare\.gif -# ||3movs.com/contents/content_sources/ (easylistchina+easylist.txt: 46245) -.3movs.com/contents/content_sources/ -# ||2adultflashgames.com/teaser/teaser.swf (easylistchina+easylist.txt: 46244) -.2adultflashgames.com/teaser/teaser\.swf -# ||2adultflashgames.com/img/ (easylistchina+easylist.txt: 46243) -.2adultflashgames.com/img/ -# ||2adultflashgames.com/images/v12.gif (easylistchina+easylist.txt: 46242) -.2adultflashgames.com/images/v12\.gif -# ||24porn7.com/toonad/ (easylistchina+easylist.txt: 46241) -.24porn7.com/toonad/ -# ||24porn7.com/right3.php (easylistchina+easylist.txt: 46240) -.24porn7.com/right3\.php -# ||24porn7.com/odd.php (easylistchina+easylist.txt: 46239) -.24porn7.com/odd\.php -# ||24porn7.com/imads/ (easylistchina+easylist.txt: 46238) -.24porn7.com/imads/ -# ||24porn7.com/float/float_adplib.js (easylistchina+easylist.txt: 46237) -.24porn7.com/float/float_adplib\.js -# ||24porn7.com/ebanners/ (easylistchina+easylist.txt: 46236) -.24porn7.com/ebanners/ -# ||24porn7.com/banned/ (easylistchina+easylist.txt: 46235) -.24porn7.com/banned/ -# ||24porn7.com/300.php (easylistchina+easylist.txt: 46234) -.24porn7.com/300\.php -# ||24porn7.com/24roll.html (easylistchina+easylist.txt: 46233) -.24porn7.com/24roll\.html -# ||244pix.com/webop.jpg (easylistchina+easylist.txt: 46232) -.244pix.com/webop\.jpg -# ||213.174.140.38/bftv/js/msn- (easylistchina+easylist.txt: 46230) -.213.174.140.38/bftv/js/msn- -# ||ziddu.com/onclickpop.php$popup (easylistchina+easylist.txt: 46218) -.ziddu.com/onclickpop\.php -# ||youwatch.org^*^crr^$popup (easylistchina+easylist.txt: 46216) -.youwatch.org/.*[^\w%.-]crr[^\w%.-] -# ||youwatch.org^*^ban^$popup (easylistchina+easylist.txt: 46215) -.youwatch.org/.*[^\w%.-]ban[^\w%.-] -# ||youwatch.org/vids*.html$popup (easylistchina+easylist.txt: 46214) -.youwatch.org/vids.*\.html -# ||yasni.ca/ad_pop.php$popup (easylistchina+easylist.txt: 46213) -.yasni.ca/ad_pop\.php -# ||whies.info^$popup (easylistchina+easylist.txt: 46212) -.whies.info -# ||watch-movies.net.in/popup.php$popup (easylistchina+easylist.txt: 46209) -.watch-movies.net.in/popup\.php -# ||vodu.ch/play_video.php$popup (easylistchina+easylist.txt: 46208) -.vodu.ch/play_video\.php -# ||virtualtourist.com/commerce/popunder/$popup (easylistchina+easylist.txt: 46207) -.virtualtourist.com/commerce/popunder/ -# ||vidspot.net^*http$popup (easylistchina+easylist.txt: 46206) -.vidspot.net/.*http -# ||vidhog.com/ilivid-redirect.php$popup (easylistchina+easylist.txt: 46205) -.vidhog.com/ilivid-redirect\.php -# ||tripadvisor.*/SimilarHotelsPopunder?$popup (easylistchina+easylist.txt: 46203) -.tripadvisor.*./(.*/)?SimilarHotelsPopunder\? -# ||tripadvisor.*/rulebasedpopunder?$popup (easylistchina+easylist.txt: 46202) -.tripadvisor.*./(.*/)?rulebasedpopunder\? -# ||trans.youwatch.org^$popup (easylistchina+easylist.txt: 46201) -.trans.youwatch.org -# ||tozer.youwatch.org^$popup (easylistchina+easylist.txt: 46200) -.tozer.youwatch.org -# ||torrentz.eu/p/$popup (easylistchina+easylist.txt: 46199) -.torrentz.eu/p/ -# ||torrentz.*/wgmpop/$popup (easylistchina+easylist.txt: 46198) -.torrentz.*./(.*/)?wgmpop/ -# ||torrentz.*/mgidpop/$popup (easylistchina+easylist.txt: 46197) -.torrentz.*./(.*/)?mgidpop/ -# ||tny.cz/red/first.php$popup (easylistchina+easylist.txt: 46195) -.tny.cz/red/first\.php -# ||titanshare.to/download-extern.php?type=*&n=$popup (easylistchina+easylist.txt: 46194) -.titanshare.to/download-extern\.php\?type=.*&n= -# ||thevideo.me/script/$popup (easylistchina+easylist.txt: 46192) -.thevideo.me/script/ -# ||thesource.com/magicshave/$popup (easylistchina+easylist.txt: 46191) -.thesource.com/magicshave/ -# ||subs4free.com/_pop_link.php$popup (easylistchina+easylist.txt: 46189) -.subs4free.com/_pop_link\.php -# ||streamcloud.eu/deliver.php$popup (easylistchina+easylist.txt: 46187) -.streamcloud.eu/deliver\.php -# ||sponsorselect.com/Common/LandingPage.aspx?eu=$popup (easylistchina+easylist.txt: 46186) -.sponsorselect.com/Common/LandingPage\.aspx\?eu= -# ||songspk.cc/pop*.html$popup (easylistchina+easylist.txt: 46184) -.songspk.cc/pop.*\.html -# ||rediff.com/uim/ads/$popup (easylistchina+easylist.txt: 46179) -.rediff.com/uim/ads/ -# ||pop.billionuploads.com^$popup (easylistchina+easylist.txt: 46177) -.pop.billionuploads.com -# ||playhd.eu/test$popup (easylistchina+easylist.txt: 46176) -.playhd.eu/test -# ||plarium.com/play/*adCampaign=$popup (easylistchina+easylist.txt: 46175) -.plarium.com/play/.*adCampaign= -# ||park.above.com^$popup (easylistchina+easylist.txt: 46173) -.park.above.com -# ||oddschecker.com/clickout.htm?type=takeover-$popup (easylistchina+easylist.txt: 46171) -.oddschecker.com/clickout\.htm\?type=takeover- -# ||nosteam.ro/pma/$popup (easylistchina+easylist.txt: 46170) -.nosteam.ro/pma/ -# ||multiupload.nl/popunder/$popup (easylistchina+easylist.txt: 46167) -.multiupload.nl/popunder/ -# ||miniurls.co^*?ref=$popup (easylistchina+easylist.txt: 46166) -.miniurls.co/.*\?ref= -# ||military.com/data/popup/new_education_popunder.htm$popup (easylistchina+easylist.txt: 46165) -.military.com/data/popup/new_education_popunder\.htm -# ||linkbucks.com^*/?*=$popup (easylistchina+easylist.txt: 46164) -.linkbucks.com/.*/\?.*= -# ||itv.com/itv/adclick/$popup (easylistchina+easylist.txt: 46158) -.itv.com/itv/adclick/ -# ||intradayfun.com/news_intradayfun.com.html$popup (easylistchina+easylist.txt: 46157) -.intradayfun.com/news_intradayfun\.com\.html -# ||imageshack.us/newuploader_ad.php$popup (easylistchina+easylist.txt: 46156) -.imageshack.us/newuploader_ad\.php -# ||imageshack.us/ads/$popup (easylistchina+easylist.txt: 46155) -.imageshack.us/ads/ -# ||ifly.com/trip-plan/ifly-trip?*&ad=$popup (easylistchina+easylist.txt: 46154) -.ifly.com/trip-plan/ifly-trip\?.*&ad= -# ||houndmirror.com/out.php$popup (easylistchina+easylist.txt: 46152) -.houndmirror.com/out\.php -# ||homets.info/queen_file?$popup (easylistchina+easylist.txt: 46151) -.homets.info/queen_file\? -# ||homerun.re/adServe/$popup (easylistchina+easylist.txt: 46150) -.homerun.re/adServe/ -# ||gamezadvisor.com/popup.php$popup (easylistchina+easylist.txt: 46145) -.gamezadvisor.com/popup\.php -# ||fullonsms.com/sid.html$popup (easylistchina+easylist.txt: 46144) -.fullonsms.com/sid\.html -# ||fullonsms.com/quikrad.html$popup (easylistchina+easylist.txt: 46143) -.fullonsms.com/quikrad\.html -# ||fullonsms.com/quikr.html$popup (easylistchina+easylist.txt: 46142) -.fullonsms.com/quikr\.html -# ||fullonsms.com/mixpop.html$popup (easylistchina+easylist.txt: 46141) -.fullonsms.com/mixpop\.html -# ||fullonsms.com/blank.php$popup (easylistchina+easylist.txt: 46140) -.fullonsms.com/blank\.php -# ||freean.us^*?ref=$popup (easylistchina+easylist.txt: 46139) -.freean.us/.*\?ref= -# ||free-filehost.net/pop/$popup (easylistchina+easylist.txt: 46137) -.free-filehost.net/pop/ -# ||flashx.tv/frame/$popup (easylistchina+easylist.txt: 46136) -.flashx.tv/frame/ -# ||flashx.tv/ads/$popup (easylistchina+easylist.txt: 46135) -.flashx.tv/ads/ -# ||firedrive.com/tools/$popup (easylistchina+easylist.txt: 46134) -.firedrive.com/tools/ -# ||firedrive.com/appresources/$popup (easylistchina+easylist.txt: 46133) -.firedrive.com/appresources/ -# ||filmon.com^*&adn=$popup (easylistchina+easylist.txt: 46130) -.filmon.com/.*&adn= -# ||filepost.com/default_popup.html$popup (easylistchina+easylist.txt: 46129) -.filepost.com/default_popup\.html -# ||f-picture.net/Misc/JumpClick?$popup (easylistchina+easylist.txt: 46127) -.f-picture.net/Misc/JumpClick\? -# ||edomz.com/re.php?mid=$popup (easylistchina+easylist.txt: 46125) -.edomz.com/re\.php\?mid= -# ||eafyfsuh.net^*/?name=$popup (easylistchina+easylist.txt: 46124) -.eafyfsuh.net/.*/\?name= -# ||deb.gs^*?ref=$popup (easylistchina+easylist.txt: 46123) -.deb.gs/.*\?ref= -# ||damoh.muzu.tv^$popup (easylistchina+easylist.txt: 46122) -.damoh.muzu.tv -# ||conservativepost.com/pu/$popup (easylistchina+easylist.txt: 46121) -.conservativepost.com/pu/ -# ||comicbookmovie.com/plugins/ads/$popup (easylistchina+easylist.txt: 46120) -.comicbookmovie.com/plugins/ads/ -# ||cloudzilla.to/cam/wpop.php$popup (easylistchina+easylist.txt: 46119) -.cloudzilla.to/cam/wpop\.php -# ||channel4.com/ad/$popup (easylistchina+easylist.txt: 46117) -.channel4.com/ad/ -# ||casino-x.com^*&promo$popup (easylistchina+easylist.txt: 46116) -.casino-x.com/.*&promo -# ||avalanchers.com/out/$popup (easylistchina+easylist.txt: 46112) -.avalanchers.com/out/ -# ||allmyvideos.net^*?p=$popup (easylistchina+easylist.txt: 46111) -.allmyvideos.net/.*\?p= -# ||adyou.me/bug/adcash$popup (easylistchina+easylist.txt: 46109) -.adyou.me/bug/adcash -# ||adx.kat.ph^$popup (easylistchina+easylist.txt: 46108) -.adx.kat.ph -# ||4fuckr.com/api.php$popup (easylistchina+easylist.txt: 46106) -.4fuckr.com/api\.php -# ||104.239.139.5/display/$popup (easylistchina+easylist.txt: 46105) -.104.239.139.5/display/ -# ||ytconv.net/site/adblock_detect (easylistchina+easylist.txt: 46096) -.ytconv.net/site/adblock_detect -# ||watchfreeinhd.com/js/adblocker.js (easylistchina+easylist.txt: 46095) -.watchfreeinhd.com/js/adblocker\.js -# ||vapingunderground.com/js/vapingunderground/fucking_adblock.js (easylistchina+easylist.txt: 46094) -.vapingunderground.com/js/vapingunderground/fucking_adblock\.js -# ||nintendolife.com^*/adblock.jpg (easylistchina+easylist.txt: 46085) -.nintendolife.com/.*/adblock\.jpg -# ||http.anno.channel4.com*_*_*_ (easylistchina+easylist.txt: 46082) -.http.anno.channel4.com*./.*_.*_.*_ -# ||http.anno.channel4.com*- (easylistchina+easylist.txt: 46081) -.http.anno.channel4.com*./.*- -.http.anno.channel4.com*-*. -# ||getdebrid.com/blocker.js (easylistchina+easylist.txt: 46079) -.getdebrid.com/blocker\.js -# ||supercheats.com/js/yavli.js (easylistchina+easylist.txt: 46065) -.supercheats.com/js/yavli\.js -# ||zurrieqfc.com/images/banners/ (easylistchina+easylist.txt: 45833) -.zurrieqfc.com/images/banners/ -# ||zshares.net/fm.html (easylistchina+easylist.txt: 45832) -.zshares.net/fm\.html -# ||zpag.es/b/ (easylistchina+easylist.txt: 45831) -.zpag.es/b/ -# ||zorrovpn.com/static/img/promo/ (easylistchina+easylist.txt: 45830) -.zorrovpn.com/static/img/promo/ -# ||zophar.net/files/tf_ (easylistchina+easylist.txt: 45829) -.zophar.net/files/tf_ -# ||zoozle.org/if.php?q= (easylistchina+easylist.txt: 45828) -.zoozle.org/if\.php\?q= -# ||zoover.*/shared/bannerpages/darttagsbanner.aspx? (easylistchina+easylist.txt: 45827) -.zoover.*./(.*/)?shared/bannerpages/darttagsbanner\.aspx\? -# ||zootoday.com/pub/21publish/Zoo-navtop-poker.gif (easylistchina+easylist.txt: 45826) -.zootoday.com/pub/21publish/Zoo-navtop-poker\.gif -# ||zootoday.com/pub/21publish/Zoo-navtop-casino_ (easylistchina+easylist.txt: 45825) -.zootoday.com/pub/21publish/Zoo-navtop-casino_ -# ||zoomin.tv/decagonhandler/ (easylistchina+easylist.txt: 45824) -.zoomin.tv/decagonhandler/ -# ||zoneradio.co.za/img/banners/ (easylistchina+easylist.txt: 45823) -.zoneradio.co.za/img/banners/ -# ||zomobo.net/images/removeads.png (easylistchina+easylist.txt: 45821) -.zomobo.net/images/removeads\.png -# ||zombiegamer.co.za/wp-content/uploads/*-skin- (easylistchina+easylist.txt: 45820) -.zombiegamer.co.za/wp-content/uploads/.*-skin- -# ||zipcode.org/site_images/flash/zip_v.swf (easylistchina+easylist.txt: 45819) -.zipcode.org/site_images/flash/zip_v\.swf -# ||zigzag.co.za/images/oww- (easylistchina+easylist.txt: 45818) -.zigzag.co.za/images/oww- -# ||ziddu.com/images/wxdfast/ (easylistchina+easylist.txt: 45817) -.ziddu.com/images/wxdfast/ -# ||ziddu.com/images/globe7.gif (easylistchina+easylist.txt: 45816) -.ziddu.com/images/globe7\.gif -# ||ziddu.com/images/140x150_egglad.gif (easylistchina+easylist.txt: 45815) -.ziddu.com/images/140x150_egglad\.gif -# ||zeropaid.com^*/94.jpg (easylistchina+easylist.txt: 45814) -.zeropaid.com/.*/94\.jpg -# ||zeropaid.com/images/ (easylistchina+easylist.txt: 45813) -.zeropaid.com/images/ -# ||zerochan.net/skyscraper.html (easylistchina+easylist.txt: 45812) -.zerochan.net/skyscraper\.html -# ||zeetvusa.com/images/SevaWeb.gif (easylistchina+easylist.txt: 45811) -.zeetvusa.com/images/SevaWeb\.gif -# ||zeetvusa.com/images/hightlow.jpg (easylistchina+easylist.txt: 45810) -.zeetvusa.com/images/hightlow\.jpg -# ||zeetvusa.com/images/CARIBBEN.jpg (easylistchina+easylist.txt: 45809) -.zeetvusa.com/images/CARIBBEN\.jpg -# ||zbc.co.zw^*/banners/ (easylistchina+easylist.txt: 45808) -.zbc.co.zw/.*/banners/ -# ||zawya.com/brands/ (easylistchina+easylist.txt: 45807) -.zawya.com/brands/ -# ||zawya.com/ads/ (easylistchina+easylist.txt: 45806) -.zawya.com/ads/ -# ||zattoo.com/ads/ (easylistchina+easylist.txt: 45805) -.zattoo.com/ads/ -# ||zap2it.com/wp-content/themes/overmind/js/zcode- (easylistchina+easylist.txt: 45804) -.zap2it.com/wp-content/themes/overmind/js/zcode- -# ||zanews.co.za^*/banners/ (easylistchina+easylist.txt: 45803) -.zanews.co.za/.*/banners/ -# ||zamimg.com/shared/minifeatures/ (easylistchina+easylist.txt: 45802) -.zamimg.com/shared/minifeatures/ -# ||zamimg.com/images/skins/ (easylistchina+easylist.txt: 45801) -.zamimg.com/images/skins/ -# ||zambiz.co.zm/banners/ (easylistchina+easylist.txt: 45800) -.zambiz.co.zm/banners/ -# ||zam.com/i/promos/*-skin. (easylistchina+easylist.txt: 45799) -.zam.com/i/promos/.*-skin\. -# ||zads.care2.com^ (easylistchina+easylist.txt: 45798) -.zads.care2.com -# ||zabasearch.com/search_box.php?*&adword= (easylistchina+easylist.txt: 45797) -.zabasearch.com/search_box\.php\?.*&adword= -# ||yudu.com^*_intro_ads (easylistchina+easylist.txt: 45796) -.yudu.com/.*_intro_ads -# ||ytmnd.com/ugh (easylistchina+easylist.txt: 45795) -.ytmnd.com/ugh -# ||ysm.yahoo.com^ (easylistchina+easylist.txt: 45791) -.ysm.yahoo.com -# ||yrt7dgkf.exashare.com^ (easylistchina+easylist.txt: 45790) -.yrt7dgkf.exashare.com -# ||yp.mo^*/ads/ (easylistchina+easylist.txt: 45789) -.yp.mo/.*/ads/ -# ||youwatch.org/vod-str.html (easylistchina+easylist.txt: 45788) -.youwatch.org/vod-str\.html -# ||youwatch.org/iframe1.html (easylistchina+easylist.txt: 45787) -.youwatch.org/iframe1\.html -# ||youwatch.org/driba.html (easylistchina+easylist.txt: 45786) -.youwatch.org/driba\.html -# ||youwatch.org/9elawi.html (easylistchina+easylist.txt: 45785) -.youwatch.org/9elawi\.html -# ||youtubeproxy.pk/images/lahore.jpg (easylistchina+easylist.txt: 45784) -.youtubeproxy.pk/images/lahore\.jpg -# ||youtubeproxy.pk/images/Lahore.fm.jpg (easylistchina+easylist.txt: 45783) -.youtubeproxy.pk/images/Lahore\.fm\.jpg -# ||youtubeproxy.pk/images/Indiansongs.pk.jpg (easylistchina+easylist.txt: 45782) -.youtubeproxy.pk/images/Indiansongs\.pk\.jpg -# ||youtube-mp3.org/acode/ (easylistchina+easylist.txt: 45780) -.youtube-mp3.org/acode/ -# ||youserials.com/i/banner_pos.jpg (easylistchina+easylist.txt: 45779) -.youserials.com/i/banner_pos\.jpg -# ||yourwire.net/images/refssder.gif (easylistchina+easylist.txt: 45778) -.yourwire.net/images/refssder\.gif -# ||yourradioplace.com/images/banners/ (easylistchina+easylist.txt: 45777) -.yourradioplace.com/images/banners/ -# ||yourradioplace.com//images/banners/ (easylistchina+easylist.txt: 45776) -# ||yourmuze.fm/images/banner_ym.png (easylistchina+easylist.txt: 45775) -.yourmuze.fm/images/banner_ym\.png -# ||yourmuze.fm/images/audionow.png (easylistchina+easylist.txt: 45774) -.yourmuze.fm/images/audionow\.png -# ||yourmovies.com.au^*/side_panels_ (easylistchina+easylist.txt: 45773) -.yourmovies.com.au/.*/side_panels_ -# ||yourindustrynews.com/ads/ (easylistchina+easylist.txt: 45772) -.yourindustrynews.com/ads/ -# ||yourfilehost.com/ads/ (easylistchina+easylist.txt: 45771) -.yourfilehost.com/ads/ -# ||yourepeat.com^*/skins/ (easylistchina+easylist.txt: 45770) -.yourepeat.com/.*/skins/ -# ||yourepeat.com/revive_wrapper? (easylistchina+easylist.txt: 45769) -.yourepeat.com/revive_wrapper\? -# ||yourbittorrent.com/images/lumovies.js (easylistchina+easylist.txt: 45768) -.yourbittorrent.com/images/lumovies\.js -# ||yourbittorrent.com/downloadnow.png (easylistchina+easylist.txt: 45767) -.yourbittorrent.com/downloadnow\.png -# ||youngrider.com/images/sponsorships/ (easylistchina+easylist.txt: 45766) -.youngrider.com/images/sponsorships/ -# ||youconvertit.com/_images/*ad.png (easylistchina+easylist.txt: 45765) -.youconvertit.com/_images/.*ad\.png -# ||yorkshirecoastradio.com/resources/creative/ (easylistchina+easylist.txt: 45764) -.yorkshirecoastradio.com/resources/creative/ -# ||yopmail.com/fbd.js (easylistchina+easylist.txt: 45763) -.yopmail.com/fbd\.js -# ||yomzansi.com^*-300x250. (easylistchina+easylist.txt: 45762) -.yomzansi.com/.*-300x250\. -# ||ynaija.com^*300X300 (easylistchina+easylist.txt: 45760) -.ynaija.com/.*300X300 -# ||ynaija.com^*300x250 (easylistchina+easylist.txt: 45759) -.ynaija.com/.*300x250 -# ||ynaija.com^*/ad. (easylistchina+easylist.txt: 45758) -.ynaija.com/.*/ad\. -# ||yimg.com^*/yad.html (easylistchina+easylist.txt: 45753) -.yimg.com/.*/yad\.html -# ||yimg.com^*/flash/promotions/ (easylistchina+easylist.txt: 45750) -.yimg.com/.*/flash/promotions/ -# ||yfrog.com/ym.php? (easylistchina+easylist.txt: 45732) -.yfrog.com/ym\.php\? -# ||yfrog.com/images/weezer-bloggie-bg.png (easylistchina+easylist.txt: 45731) -.yfrog.com/images/weezer-bloggie-bg\.png -# ||yfrog.com/images/contests/ (easylistchina+easylist.txt: 45730) -.yfrog.com/images/contests/ -# ||yfmghana.com/images/banners/ (easylistchina+easylist.txt: 45729) -.yfmghana.com/images/banners/ -# ||yesbeby.whies.info^ (easylistchina+easylist.txt: 45728) -.yesbeby.whies.info -# ||yellowpageskenya.com/sponsored/ (easylistchina+easylist.txt: 45727) -.yellowpageskenya.com/sponsored/ -# ||yellowpages.ly^*/sponsors/ (easylistchina+easylist.txt: 45726) -.yellowpages.ly/.*/sponsors/ -# ||yellowpages.ly/user_media/banner/ (easylistchina+easylist.txt: 45725) -.yellowpages.ly/user_media/banner/ -# ||yellowpages.com.lb/uploaded/banners/ (easylistchina+easylist.txt: 45724) -.yellowpages.com.lb/uploaded/banners/ -# ||yellowpages.com.jo/banners/ (easylistchina+easylist.txt: 45723) -.yellowpages.com.jo/banners/ -# ||yellowpages.ae/UI/WM/ (easylistchina+easylist.txt: 45722) -.yellowpages.ae/UI/WM/ -# ||yellowpages.ae/UI/WA/ (easylistchina+easylist.txt: 45721) -.yellowpages.ae/UI/WA/ -# ||yellowpages.ae/UI/ST/ (easylistchina+easylist.txt: 45720) -.yellowpages.ae/UI/ST/ -# ||yellowpages.ae/UI/SR/ (easylistchina+easylist.txt: 45719) -.yellowpages.ae/UI/SR/ -# ||yellowpages.ae/UI/MR/ (easylistchina+easylist.txt: 45718) -.yellowpages.ae/UI/MR/ -# ||yellowpages.ae/UI/LB/ (easylistchina+easylist.txt: 45717) -.yellowpages.ae/UI/LB/ -# ||yellowpages.ae/UI/FC/ (easylistchina+easylist.txt: 45716) -.yellowpages.ae/UI/FC/ -# ||yellowpage-jp.com/images/banners/ (easylistchina+easylist.txt: 45715) -.yellowpage-jp.com/images/banners/ -# ||yellow.co.ke/img/top_banner/ (easylistchina+easylist.txt: 45714) -.yellow.co.ke/img/top_banner/ -# ||yellow.co.ke/img/right_side/ (easylistchina+easylist.txt: 45713) -.yellow.co.ke/img/right_side/ -# ||yellow.co.ke/img/left_side/ (easylistchina+easylist.txt: 45712) -.yellow.co.ke/img/left_side/ -# ||yea.uploadimagex.com^ (easylistchina+easylist.txt: 45711) -.yea.uploadimagex.com -# ||yavideo.tv/ajaxlog.txt? (easylistchina+easylist.txt: 45710) -.yavideo.tv/ajaxlog\.txt\? -# ||yasni.*/design/relaunch/gfx/elitepartner_ (easylistchina+easylist.txt: 45709) -.yasni.*./(.*/)?design/relaunch/gfx/elitepartner_ -# ||yarisworld.com^*/banners/ (easylistchina+easylist.txt: 45708) -.yarisworld.com/.*/banners/ -# ||yamivideo.com^*/download_video.jpg (easylistchina+easylist.txt: 45706) -.yamivideo.com/.*/download_video\.jpg -# ||yamgo.mobi/images/banner/ (easylistchina+easylist.txt: 45705) -.yamgo.mobi/images/banner/ -# ||yahoo.com^*/eyc-themis? (easylistchina+easylist.txt: 45704) -.yahoo.com/.*/eyc-themis\? -# ||yahoo.com/ysmload.html? (easylistchina+easylist.txt: 45703) -.yahoo.com/ysmload\.html\? -# ||yahoo.com/sdarla/ (easylistchina+easylist.txt: 45702) -.yahoo.com/sdarla/ -# ||yahoo.com/neo/darla/ (easylistchina+easylist.txt: 45701) -.yahoo.com/neo/darla/ -# ||yahoo.com/livewords/ (easylistchina+easylist.txt: 45700) -.yahoo.com/livewords/ -# ||yahoo.com/darla/ (easylistchina+easylist.txt: 45699) -.yahoo.com/darla/ -# ||yahoo.com/contextual-shortcuts (easylistchina+easylist.txt: 45698) -.yahoo.com/contextual-shortcuts -# ||yahoo.com/__darla/ (easylistchina+easylist.txt: 45697) -.yahoo.com/__darla/ -# ||yahoo.*/serv?s= (easylistchina+easylist.txt: 45696) -.yahoo.*./(.*/)?serv\?s= -# ||xup.in/layer.php (easylistchina+easylist.txt: 45695) -.xup.in/layer\.php -# ||xtremesystems.org/forums/brotator/ (easylistchina+easylist.txt: 45694) -.xtremesystems.org/forums/brotator/ -# ||xsreviews.co.uk/style/bgg2.jpg (easylistchina+easylist.txt: 45693) -.xsreviews.co.uk/style/bgg2\.jpg -# ||xscores.com/livescore/banners/ (easylistchina+easylist.txt: 45692) -.xscores.com/livescore/banners/ -# ||xoops-theme.com/images/banners/ (easylistchina+easylist.txt: 45691) -.xoops-theme.com/images/banners/ -# ||xomreviews.com/sponsors/ (easylistchina+easylist.txt: 45690) -.xomreviews.com/sponsors/ -# ||xiaopan.co/Reaver.png (easylistchina+easylist.txt: 45689) -.xiaopan.co/Reaver\.png -# ||xboxgaming.co.za^*/images/background/ (easylistchina+easylist.txt: 45688) -.xboxgaming.co.za/.*/images/background/ -# ||xbox-scene.com/crave/logo_on_white_s160.jpg (easylistchina+easylist.txt: 45687) -.xbox-scene.com/crave/logo_on_white_s160\.jpg -# ||xbox-hq.com/html/images/banners/ (easylistchina+easylist.txt: 45686) -.xbox-hq.com/html/images/banners/ -# ||xbitlabs.com/images/banners/ (easylistchina+easylist.txt: 45685) -.xbitlabs.com/images/banners/ -# ||xbitlabs.com/cms/module_banners/ (easylistchina+easylist.txt: 45684) -.xbitlabs.com/cms/module_banners/ -# ||x.castanet.net^ (easylistchina+easylist.txt: 45683) -.x.castanet.net -# ||www2.sys-con.com^*.cfm (easylistchina+easylist.txt: 45682) -.www2.sys-con.com/.*\.cfm -# ||wwbf.com/b/topbanner.htm (easylistchina+easylist.txt: 45681) -.wwbf.com/b/topbanner\.htm -# ||wwaytv3.com^*/curlypage.js (easylistchina+easylist.txt: 45680) -.wwaytv3.com/.*/curlypage\.js -# ||wvbr.com/images/banner/ (easylistchina+easylist.txt: 45679) -.wvbr.com/images/banner/ -# ||wunderground.com^*/wuss_300ad2.php? (easylistchina+easylist.txt: 45678) -.wunderground.com/.*/wuss_300ad2\.php\? -# ||wunderground.com/geo/swfad/ (easylistchina+easylist.txt: 45677) -.wunderground.com/geo/swfad/ -# ||wttrend.com/images/hs.jpg (easylistchina+easylist.txt: 45676) -.wttrend.com/images/hs\.jpg -# ||wsj.net/internal/krux.js (easylistchina+easylist.txt: 45675) -.wsj.net/internal/krux\.js -# ||wshh.me/vast/ (easylistchina+easylist.txt: 45674) -.wshh.me/vast/ -# ||wrmf.com/upload/*_Webskin_ (easylistchina+easylist.txt: 45673) -.wrmf.com/upload/.*_Webskin_ -# ||wrlr.fm/images/banners/ (easylistchina+easylist.txt: 45672) -.wrlr.fm/images/banners/ -# ||wrko.com^*/sponsors/ (easylistchina+easylist.txt: 45671) -.wrko.com/.*/sponsors/ -# ||wrko.com/sites/wrko.com/files/poll/*_285x95.jpg (easylistchina+easylist.txt: 45670) -.wrko.com/sites/wrko\.com/files/poll/.*_285x95\.jpg -# ||wrcjfm.org/images/banners/ (easylistchina+easylist.txt: 45669) -.wrcjfm.org/images/banners/ -# ||wrc.com/swf/homeclock_edox_hori.swf (easylistchina+easylist.txt: 45668) -.wrc.com/swf/homeclock_edox_hori\.swf -# ||wrc.com/img/sponsors- (easylistchina+easylist.txt: 45667) -.wrc.com/img/sponsors- -# ||wranglerforum.com/images/sponsor/ (easylistchina+easylist.txt: 45666) -.wranglerforum.com/images/sponsor/ -# ||wqxe.com/images/sponsors/ (easylistchina+easylist.txt: 45665) -.wqxe.com/images/sponsors/ -# ||wqam.com/partners/ (easylistchina+easylist.txt: 45664) -.wqam.com/partners/ -# ||wqah.com/images/banners/ (easylistchina+easylist.txt: 45663) -.wqah.com/images/banners/ -# ||wptmag.com/promo/ (easylistchina+easylist.txt: 45662) -.wptmag.com/promo/ -# ||wpdaddy.com^*/banners/ (easylistchina+easylist.txt: 45661) -.wpdaddy.com/.*/banners/ -# ||wpcv.com/includes/header_banner.htm (easylistchina+easylist.txt: 45660) -.wpcv.com/includes/header_banner\.htm -# ||wp.com/wp-content/themes/vip/tctechcrunch/images/tc_*_skin.jpg (easylistchina+easylist.txt: 45654) -.wp.com/wp-content/themes/vip/tctechcrunch/images/tc_.*_skin\.jpg -# ||wowwiki.com/__varnish_ (easylistchina+easylist.txt: 45653) -.wowwiki.com/__varnish_ -# ||worthofweb.com/images/wow-ad- (easylistchina+easylist.txt: 45651) -.worthofweb.com/images/wow-ad- -# ||worldstagegroup.com/worldstagenew/banner/ (easylistchina+easylist.txt: 45650) -.worldstagegroup.com/worldstagenew/banner/ -# ||worldstagegroup.com/banner/ (easylistchina+easylist.txt: 45649) -.worldstagegroup.com/banner/ -# ||worldstadiums.com/world_stadiums/bugarrishoes/ (easylistchina+easylist.txt: 45648) -.worldstadiums.com/world_stadiums/bugarrishoes/ -# ||worldometers.info/L728.html (easylistchina+easylist.txt: 45647) -.worldometers.info/L728\.html -# ||worldometers.info/L300R.html (easylistchina+easylist.txt: 45646) -.worldometers.info/L300R\.html -# ||worldometers.info/L300L.html (easylistchina+easylist.txt: 45645) -.worldometers.info/L300L\.html -# ||worldarchitecturenews.com/flash_banners/ (easylistchina+easylist.txt: 45644) -.worldarchitecturenews.com/flash_banners/ -# ||worldarchitecturenews.com/banner/ (easylistchina+easylist.txt: 45643) -.worldarchitecturenews.com/banner/ -# ||workingdays.us/pub_ (easylistchina+easylist.txt: 45642) -.workingdays.us/pub_ -# ||workingdays.org/pub_ (easylistchina+easylist.txt: 45641) -.workingdays.org/pub_ -# ||workingdays.ca/pub_ (easylistchina+easylist.txt: 45640) -.workingdays.ca/pub_ -# ||work-day.co.uk/pub_ (easylistchina+easylist.txt: 45639) -.work-day.co.uk/pub_ -# ||wordwebonline.com/img/122x36ccbanner.png (easylistchina+easylist.txt: 45638) -.wordwebonline.com/img/122x36ccbanner\.png -# ||wordreference.com/*/publ/ (easylistchina+easylist.txt: 45637) -.wordreference.com/.*/publ/ -# ||worddictionary.co.uk/static//inpage-affinity/ (easylistchina+easylist.txt: 45630) -.worddictionary.co.uk/static//inpage-affinity/ -# ||wolf-howl.com/wp-content/banners/ (easylistchina+easylist.txt: 45629) -.wolf-howl.com/wp-content/banners/ -# ||wnst.net/img/coupon/ (easylistchina+easylist.txt: 45628) -.wnst.net/img/coupon/ -# ||wnpv1440.com/images/banners/ (easylistchina+easylist.txt: 45627) -.wnpv1440.com/images/banners/ -# ||wned.org/underwriting/sponsors/ (easylistchina+easylist.txt: 45626) -.wned.org/underwriting/sponsors/ -# ||wlrfm.com/images/banners/ (easylistchina+easylist.txt: 45625) -.wlrfm.com/images/banners/ -# ||wlcr.org/banners/ (easylistchina+easylist.txt: 45624) -.wlcr.org/banners/ -# ||wksu.org/graphics/banners/ (easylistchina+easylist.txt: 45623) -.wksu.org/graphics/banners/ -# ||wjunction.com/images/rectangle (easylistchina+easylist.txt: 45622) -.wjunction.com/images/rectangle -# ||wjunction.com/images/constant/ (easylistchina+easylist.txt: 45621) -.wjunction.com/images/constant/ -# ||wjunction.com/images/468x60 (easylistchina+easylist.txt: 45620) -.wjunction.com/images/468x60 -# ||wjie.org/media/img/sponsers/ (easylistchina+easylist.txt: 45619) -.wjie.org/media/img/sponsers/ -# ||witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ (easylistchina+easylist.txt: 45618) -.witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ -# ||witbankspurs.co.za/layout_images/sponsor.jpg (easylistchina+easylist.txt: 45617) -.witbankspurs.co.za/layout_images/sponsor\.jpg -# ||wirenh.com/images/banners/ (easylistchina+easylist.txt: 45614) -.wirenh.com/images/banners/ -# ||wired.com/images/xrail/*/samsung_layar_ (easylistchina+easylist.txt: 45613) -.wired.com/images/xrail/.*/samsung_layar_ -# ||wipfilms.net^*/instant-video.png (easylistchina+easylist.txt: 45612) -.wipfilms.net/.*/instant-video\.png -# ||wipfilms.net^*/amazon.png (easylistchina+easylist.txt: 45611) -.wipfilms.net/.*/amazon\.png -# ||winsupersite.com^*/roadblock. (easylistchina+easylist.txt: 45610) -.winsupersite.com/.*/roadblock\. -# ||winpcap.org/assets/image/banner_ (easylistchina+easylist.txt: 45609) -.winpcap.org/assets/image/banner_ -# ||winnfm.com/grfx/banners/ (easylistchina+easylist.txt: 45608) -.winnfm.com/grfx/banners/ -# ||windowsitpro.com^*/roadblock. (easylistchina+easylist.txt: 45607) -.windowsitpro.com/.*/roadblock\. -# ||wildtangent.com/leaderboard? (easylistchina+easylist.txt: 45605) -.wildtangent.com/leaderboard\? -# ||wikinvest.com/wikinvest/images/zap_trade_ (easylistchina+easylist.txt: 45604) -.wikinvest.com/wikinvest/images/zap_trade_ -# ||wikinvest.com/wikinvest/ads/ (easylistchina+easylist.txt: 45603) -.wikinvest.com/wikinvest/ads/ -# ||wikia.com/__varnish_ (easylistchina+easylist.txt: 45602) -.wikia.com/__varnish_ -# ||wiilovemario.com/images/fc-twin-play-nes-snes-cartridges.png (easylistchina+easylist.txt: 45601) -.wiilovemario.com/images/fc-twin-play-nes-snes-cartridges\.png -# ||widih.org/banners/ (easylistchina+easylist.txt: 45600) -.widih.org/banners/ -# ||widget.directory.dailycommercial.com^ (easylistchina+easylist.txt: 45599) -.widget.directory.dailycommercial.com -# ||whoownsfacebook.com/images/topbanner.gif (easylistchina+easylist.txt: 45597) -.whoownsfacebook.com/images/topbanner\.gif -# ||whois.net/images/banners/ (easylistchina+easylist.txt: 45596) -.whois.net/images/banners/ -# ||whois.net/dombot.php? (easylistchina+easylist.txt: 45595) -.whois.net/dombot\.php\? -# ||whoer.net/images/vpnlab20_ (easylistchina+easylist.txt: 45594) -.whoer.net/images/vpnlab20_ -# ||whoer.net/images/vlab50_ (easylistchina+easylist.txt: 45593) -.whoer.net/images/vlab50_ -# ||whoer.net/images/pb/ (easylistchina+easylist.txt: 45592) -.whoer.net/images/pb/ -# ||who.is/images/domain-transfer2.jpg (easylistchina+easylist.txt: 45591) -.who.is/images/domain-transfer2\.jpg -# ||whitepages.ae/images/UI/WS/ (easylistchina+easylist.txt: 45590) -.whitepages.ae/images/UI/WS/ -# ||whitepages.ae/images/UI/SRB/ (easylistchina+easylist.txt: 45589) -.whitepages.ae/images/UI/SRB/ -# ||whitepages.ae/images/UI/SRA/ (easylistchina+easylist.txt: 45588) -.whitepages.ae/images/UI/SRA/ -# ||whitepages.ae/images/UI/SR/ (easylistchina+easylist.txt: 45587) -.whitepages.ae/images/UI/SR/ -# ||whitepages.ae/images/UI/MR/ (easylistchina+easylist.txt: 45586) -.whitepages.ae/images/UI/MR/ -# ||whitepages.ae/images/UI/LB/ (easylistchina+easylist.txt: 45585) -.whitepages.ae/images/UI/LB/ -# ||whitepages.ae/images/UI/FC/ (easylistchina+easylist.txt: 45584) -.whitepages.ae/images/UI/FC/ -# ||whistleout.com.au/imagelibrary/ads/wo_skin_ (easylistchina+easylist.txt: 45583) -.whistleout.com.au/imagelibrary/ads/wo_skin_ -# ||whispersinthecorridors.com/banner (easylistchina+easylist.txt: 45582) -.whispersinthecorridors.com/banner -# ||wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system.png (easylistchina+easylist.txt: 45581) -.wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system\.png -# ||wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100.gif (easylistchina+easylist.txt: 45580) -.wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100\.gif -# ||wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila.jpg (easylistchina+easylist.txt: 45579) -.wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila\.jpg -# ||wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup.gif (easylistchina+easylist.txt: 45578) -.wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup\.gif -# ||whdh.com/images/promotions/ (easylistchina+easylist.txt: 45577) -.whdh.com/images/promotions/ -# ||whatsthescore.com/logos/icons/bookmakers/ (easylistchina+easylist.txt: 45576) -.whatsthescore.com/logos/icons/bookmakers/ -# ||whatsontv.co.uk^*/promo/ (easylistchina+easylist.txt: 45575) -.whatsontv.co.uk/.*/promo/ -# ||whatsonstage.com/images/sitetakeover/ (easylistchina+easylist.txt: 45574) -.whatsonstage.com/images/sitetakeover/ -# ||whatsonnamibia.com/images/banners/ (easylistchina+easylist.txt: 45573) -.whatsonnamibia.com/images/banners/ -# ||whatson.co.za/img/hp.png (easylistchina+easylist.txt: 45572) -.whatson.co.za/img/hp\.png -# ||whatsnewonnetflix.com/assets/blockless-ad- (easylistchina+easylist.txt: 45571) -.whatsnewonnetflix.com/assets/blockless-ad- -# ||whatsabyte.com/images/Acronis_Banners/ (easylistchina+easylist.txt: 45570) -.whatsabyte.com/images/Acronis_Banners/ -# ||whatreallyhappened.com/webpageimages/banners/uwslogosm.jpg (easylistchina+easylist.txt: 45569) -.whatreallyhappened.com/webpageimages/banners/uwslogosm\.jpg -# ||whatmyip.co/images/speedcoin_ (easylistchina+easylist.txt: 45568) -.whatmyip.co/images/speedcoin_ -# ||whatmobile.com.pk/banners/ (easylistchina+easylist.txt: 45567) -.whatmobile.com.pk/banners/ -# ||whatismyip.org/ez_display_au_fillslot.js (easylistchina+easylist.txt: 45566) -.whatismyip.org/ez_display_au_fillslot\.js -# ||whatismyip.com/images/vyprvpn_ (easylistchina+easylist.txt: 45565) -.whatismyip.com/images/vyprvpn_ -# ||whatismyip.com/images/VYPR__125x125.png (easylistchina+easylist.txt: 45564) -.whatismyip.com/images/VYPR__125x125\.png -# ||wgfaradio.com/images/banners/ (easylistchina+easylist.txt: 45563) -.wgfaradio.com/images/banners/ -# ||werlv.com^*banner (easylistchina+easylist.txt: 45562) -.werlv.com/.*banner -# ||weknowmemes.com/sidesky. (easylistchina+easylist.txt: 45561) -.weknowmemes.com/sidesky\. -# ||wegoted.com/uploads/sponsors/ (easylistchina+easylist.txt: 45560) -.wegoted.com/uploads/sponsors/ -# ||wegoted.com/uploads/memsponsor/ (easylistchina+easylist.txt: 45559) -.wegoted.com/uploads/memsponsor/ -# ||wegoted.com/includes/biogreen.swf (easylistchina+easylist.txt: 45558) -.wegoted.com/includes/biogreen\.swf -# ||weei.com^*_banner.jpg (easylistchina+easylist.txt: 45557) -.weei.com/.*_banner\.jpg -# ||weei.com^*/sponsors/ (easylistchina+easylist.txt: 45556) -.weei.com/.*/sponsors/ -# ||weddingtv.com/src/baners/ (easylistchina+easylist.txt: 45555) -.weddingtv.com/src/baners/ -# ||webstatschecker.com/links/ (easylistchina+easylist.txt: 45554) -.webstatschecker.com/links/ -# ||websitehome.co.uk/seoheap/cheap-web-hosting.gif (easylistchina+easylist.txt: 45553) -.websitehome.co.uk/seoheap/cheap-web-hosting\.gif -# ||webnewswire.com/images/banner (easylistchina+easylist.txt: 45552) -.webnewswire.com/images/banner -# ||webmastercrunch.com^*/hostgator300x30.gif (easylistchina+easylist.txt: 45551) -.webmastercrunch.com/.*/hostgator300x30\.gif -# ||webmaster.extabit.com^ (easylistchina+easylist.txt: 45550) -.webmaster.extabit.com -# ||webmailnotifier.mozdev.org/etc/af/ (easylistchina+easylist.txt: 45549) -.webmailnotifier.mozdev.org/etc/af/ -# ||webhostranking.com/images/bluehost-coupon-banner-1.gif (easylistchina+easylist.txt: 45548) -.webhostranking.com/images/bluehost-coupon-banner-1\.gif -# ||webhostingtalk.com/images/style/lw-header.png (easylistchina+easylist.txt: 45547) -.webhostingtalk.com/images/style/lw-header\.png -# ||webhostingtalk.com/images/style/lw-160x400.jpg (easylistchina+easylist.txt: 45546) -.webhostingtalk.com/images/style/lw-160x400\.jpg -# ||webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ (easylistchina+easylist.txt: 45545) -.webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ -# ||webdesignerdepot.com/wp-content/plugins/md-popup/ (easylistchina+easylist.txt: 45544) -.webdesignerdepot.com/wp-content/plugins/md-popup/ -# ||weatheroffice.gc.ca/banner/ (easylistchina+easylist.txt: 45543) -.weatheroffice.gc.ca/banner/ -# ||weather365.net/images/banners/ (easylistchina+easylist.txt: 45541) -.weather365.net/images/banners/ -# ||wearetennis.com/img/common/logo_bnp_ (easylistchina+easylist.txt: 45540) -.wearetennis.com/img/common/logo_bnp_ -# ||wearetennis.com/img/common/bnp-logo.png (easylistchina+easylist.txt: 45539) -.wearetennis.com/img/common/bnp-logo\.png -# ||wearetennis.com/img/common/bnp-logo- (easylistchina+easylist.txt: 45538) -.wearetennis.com/img/common/bnp-logo- -# ||wealthycashmagnet.com/upload/banners/ (easylistchina+easylist.txt: 45537) -.wealthycashmagnet.com/upload/banners/ -# ||wdwinfo.com/js/swap.js (easylistchina+easylist.txt: 45536) -.wdwinfo.com/js/swap\.js -# ||wctk.com/banner_rotator.php (easylistchina+easylist.txt: 45535) -.wctk.com/banner_rotator\.php -# ||wcbm.com/includes/clientgraphics/ (easylistchina+easylist.txt: 45534) -.wcbm.com/includes/clientgraphics/ -# ||wbj.pl/im/partners.gif (easylistchina+easylist.txt: 45533) -.wbj.pl/im/partners\.gif -# ||wbgo.org^*/banners/ (easylistchina+easylist.txt: 45532) -.wbgo.org/.*/banners/ -# ||wbal.com/absolutebm/banners/ (easylistchina+easylist.txt: 45531) -.wbal.com/absolutebm/banners/ -# ||way2sms.com/w2sv5/js/fo_ (easylistchina+easylist.txt: 45530) -.way2sms.com/w2sv5/js/fo_ -# ||wavelengthcalculator.com/banner (easylistchina+easylist.txt: 45529) -.wavelengthcalculator.com/banner -# ||waterford-today.ie^*/banners/ (easylistchina+easylist.txt: 45528) -.waterford-today.ie/.*/banners/ -# ||watchwwelive.net^*/long_ban2.jpg (easylistchina+easylist.txt: 45527) -.watchwwelive.net/.*/long_ban2\.jpg -# ||watchwwelive.net^*/big_ban.gif (easylistchina+easylist.txt: 45526) -.watchwwelive.net/.*/big_ban\.gif -# ||watchuseek.com/site/forabar/zixenflashwatch.swf (easylistchina+easylist.txt: 45525) -.watchuseek.com/site/forabar/zixenflashwatch\.swf -# ||watchuseek.com/media/wus-image.jpg (easylistchina+easylist.txt: 45524) -.watchuseek.com/media/wus-image\.jpg -# ||watchuseek.com/media/longines_legenddiver.gif (easylistchina+easylist.txt: 45523) -.watchuseek.com/media/longines_legenddiver\.gif -# ||watchuseek.com/media/clerc-final.jpg (easylistchina+easylist.txt: 45522) -.watchuseek.com/media/clerc-final\.jpg -# ||watchuseek.com/media/banner_ (easylistchina+easylist.txt: 45521) -.watchuseek.com/media/banner_ -# ||watchuseek.com/media/1900x220_ (easylistchina+easylist.txt: 45520) -.watchuseek.com/media/1900x220_ -# ||watchuseek.com/media/*_250x250 (easylistchina+easylist.txt: 45519) -.watchuseek.com/media/.*_250x250 -# ||watchuseek.com/media/*-banner- (easylistchina+easylist.txt: 45518) -.watchuseek.com/media/.*-banner- -# ||watchuseek.com/flashwatchwus.swf (easylistchina+easylist.txt: 45517) -.watchuseek.com/flashwatchwus\.swf -# ||watchseries.eu/js/csspopup.js (easylistchina+easylist.txt: 45516) -.watchseries.eu/js/csspopup\.js -# ||watchseries.eu/images/download.png (easylistchina+easylist.txt: 45515) -.watchseries.eu/images/download\.png -# ||watchseries.eu/images/affiliate_buzz.gif (easylistchina+easylist.txt: 45514) -.watchseries.eu/images/affiliate_buzz\.gif -# ||watchop.com/player/watchonepiece-gao-gamebox.swf (easylistchina+easylist.txt: 45513) -.watchop.com/player/watchonepiece-gao-gamebox\.swf -# ||watchfreemovies.ch/js/lmst.js (easylistchina+easylist.txt: 45512) -.watchfreemovies.ch/js/lmst\.js -# ||watchcartoononline.com^*/530x90. (easylistchina+easylist.txt: 45511) -.watchcartoononline.com/.*/530x90\. -# ||watchcartoononline.com/inc/siteskin. (easylistchina+easylist.txt: 45510) -.watchcartoononline.com/inc/siteskin\. -# ||washtimes.net/banners/ (easylistchina+easylist.txt: 45509) -.washtimes.net/banners/ -# ||washtimes.com/static/images/SelectAutoWeather_v2.gif (easylistchina+easylist.txt: 45508) -.washtimes.com/static/images/SelectAutoWeather_v2\.gif -# ||washtimes.com/js/dart. (easylistchina+easylist.txt: 45507) -.washtimes.com/js/dart\. -# ||washpost.com^*/cmag_sponsor3.php? (easylistchina+easylist.txt: 45506) -.washpost.com/.*/cmag_sponsor3\.php\? -# ||washingtonpost.com/wp-srv/javascript/piggy-back-on-ads.js (easylistchina+easylist.txt: 45505) -.washingtonpost.com/wp-srv/javascript/piggy-back-on-ads\.js -# ||warriorforum.com/vbppb/ (easylistchina+easylist.txt: 45504) -.warriorforum.com/vbppb/ -# ||wardsauto.com^*/pm_doubleclick/ (easylistchina+easylist.txt: 45503) -.wardsauto.com/.*/pm_doubleclick/ -# ||waoanime.tv/playerimg.jpg (easylistchina+easylist.txt: 45502) -.waoanime.tv/playerimg\.jpg -# ||wantitall.co.za/images/banners/ (easylistchina+easylist.txt: 45501) -.wantitall.co.za/images/banners/ -# ||wantedinmilan.com/images/banner/ (easylistchina+easylist.txt: 45500) -.wantedinmilan.com/images/banner/ -# ||walshfreedom.com^*/liberty-luxury.png (easylistchina+easylist.txt: 45498) -.walshfreedom.com/.*/liberty-luxury\.png -# ||walshfreedom.com^*-300x250. (easylistchina+easylist.txt: 45497) -.walshfreedom.com/.*-300x250\. -# ||wadldetroit.com/images/banners/ (easylistchina+easylist.txt: 45495) -.wadldetroit.com/images/banners/ -# ||waamradio.com/images/sponsors/ (easylistchina+easylist.txt: 45494) -.waamradio.com/images/sponsors/ -# ||w.homes.yahoo.net^ (easylistchina+easylist.txt: 45493) -.w.homes.yahoo.net -# ||vpsboard.com/display/ (easylistchina+easylist.txt: 45492) -.vpsboard.com/display/ -# ||vox-cdn.com/campaigns_images/ (easylistchina+easylist.txt: 45491) -.vox-cdn.com/campaigns_images/ -# ||vosizneias.com/perms/ (easylistchina+easylist.txt: 45490) -.vosizneias.com/perms/ -# ||vortez.co.uk^*skyscraper.jpg (easylistchina+easylist.txt: 45489) -.vortez.co.uk/.*skyscraper\.jpg -# ||vortez.co.uk^*120x600.swf (easylistchina+easylist.txt: 45488) -.vortez.co.uk/.*120x600\.swf -# ||vonradio.com/grfx/banners/ (easylistchina+easylist.txt: 45487) -.vonradio.com/grfx/banners/ -# ||vondroid.com/site-img/*-adv-ex- (easylistchina+easylist.txt: 45486) -.vondroid.com/site-img/.*-adv-ex- -# ||voicesvancouver.com/images/stories/banners/ (easylistchina+easylist.txt: 45485) -.voicesvancouver.com/images/stories/banners/ -# ||voicesvancouver.com/images/leaderBoards/ (easylistchina+easylist.txt: 45484) -.voicesvancouver.com/images/leaderBoards/ -# ||voicestoronto.com/images/stories/banners/ (easylistchina+easylist.txt: 45483) -.voicestoronto.com/images/stories/banners/ -# ||voicestoronto.com/images/leaderBoards/ (easylistchina+easylist.txt: 45482) -.voicestoronto.com/images/leaderBoards/ -# ||voicesottawa.com/images/stories/banners/ (easylistchina+easylist.txt: 45481) -.voicesottawa.com/images/stories/banners/ -# ||voicesottawa.com/images/leaderBoards/ (easylistchina+easylist.txt: 45480) -.voicesottawa.com/images/leaderBoards/ -# ||voicesedmonton.com/images/stories/banners/ (easylistchina+easylist.txt: 45479) -.voicesedmonton.com/images/stories/banners/ -# ||voicesedmonton.com/images/leaderBoards/ (easylistchina+easylist.txt: 45478) -.voicesedmonton.com/images/leaderBoards/ -# ||voicescalgary.com/images/stories/banners/ (easylistchina+easylist.txt: 45477) -.voicescalgary.com/images/stories/banners/ -# ||voicescalgary.com/images/leaderBoards/ (easylistchina+easylist.txt: 45476) -.voicescalgary.com/images/leaderBoards/ -# ||vogue.in/node/*?section= (easylistchina+easylist.txt: 45475) -.vogue.in/node/.*\?section= -# ||vodo.net/static/images/promotion/utorrent_plus_buy.png (easylistchina+easylist.txt: 45474) -.vodo.net/static/images/promotion/utorrent_plus_buy\.png -# ||vodlocker.com/images/acenter.png (easylistchina+easylist.txt: 45473) -.vodlocker.com/images/acenter\.png -# ||vnbitcoin.org/gawminers.png (easylistchina+easylist.txt: 45472) -.vnbitcoin.org/gawminers\.png -# ||vnbitcoin.org/140_350.jpg (easylistchina+easylist.txt: 45471) -.vnbitcoin.org/140_350\.jpg -# ||vitalmtb.com/assets/vital.aba- (easylistchina+easylist.txt: 45470) -.vitalmtb.com/assets/vital\.aba- -# ||vitalmtb.com/assets/ablock- (easylistchina+easylist.txt: 45469) -.vitalmtb.com/assets/ablock- -# ||vitalmtb.com/api/ (easylistchina+easylist.txt: 45468) -.vitalmtb.com/api/ -# ||vitalfootball.co.uk^*/partners/ (easylistchina+easylist.txt: 45467) -.vitalfootball.co.uk/.*/partners/ -# ||vitalfootball.co.uk/app-interstitial/ (easylistchina+easylist.txt: 45466) -.vitalfootball.co.uk/app-interstitial/ -# ||vistandpoint.com/images/banners/ (easylistchina+easylist.txt: 45465) -.vistandpoint.com/images/banners/ -# ||virtualtourist.com/adp/ (easylistchina+easylist.txt: 45464) -.virtualtourist.com/adp/ -# ||virtual-hideout.net/banner (easylistchina+easylist.txt: 45463) -.virtual-hideout.net/banner -# ||virginislandsthisweek.com/images/728- (easylistchina+easylist.txt: 45462) -.virginislandsthisweek.com/images/728- -# ||virginislandsthisweek.com/images/336- (easylistchina+easylist.txt: 45461) -.virginislandsthisweek.com/images/336- -# ||vipleague.se/js/vip.js (easylistchina+easylist.txt: 45460) -.vipleague.se/js/vip\.js -# ||vipleague.me/blackwhite/ (easylistchina+easylist.txt: 45459) -.vipleague.me/blackwhite/ -# ||vipi.tv/ad.php (easylistchina+easylist.txt: 45458) -.vipi.tv/ad\.php -# ||vipbox.tv/js/layer.js (easylistchina+easylist.txt: 45457) -.vipbox.tv/js/layer\.js -# ||vipbox.tv/js/layer- (easylistchina+easylist.txt: 45456) -.vipbox.tv/js/layer- -# ||vipbox.tv/blackwhite/ (easylistchina+easylist.txt: 45455) -.vipbox.tv/blackwhite/ -# ||vipbox.sx/blackwhite/ (easylistchina+easylist.txt: 45454) -.vipbox.sx/blackwhite/ -# ||vipbox.eu/pu/ (easylistchina+easylist.txt: 45453) -.vipbox.eu/pu/ -# ||vipbox.co^*/pu.js (easylistchina+easylist.txt: 45452) -.vipbox.co/.*/pu\.js -# ||vipbox.co/js/bn.js (easylistchina+easylist.txt: 45451) -.vipbox.co/js/bn\.js -# ||vinaora.com/xmedia/hosting/ (easylistchina+easylist.txt: 45450) -.vinaora.com/xmedia/hosting/ -# ||villagevoice.com/img/VDotDFallback-large.gif (easylistchina+easylist.txt: 45449) -.villagevoice.com/img/VDotDFallback-large\.gif -# ||viewdocsonline.com/images/banners/ (easylistchina+easylist.txt: 45448) -.viewdocsonline.com/images/banners/ -# ||vidvib.com/vidvibpopb. (easylistchina+easylist.txt: 45447) -.vidvib.com/vidvibpopb\. -# ||vidvib.com/vidvibpopa. (easylistchina+easylist.txt: 45446) -.vidvib.com/vidvibpopa\. -# ||vidspot.net^*/pu.js (easylistchina+easylist.txt: 45445) -.vidspot.net/.*/pu\.js -# ||vidspot.net/s/xfs.min.js? (easylistchina+easylist.txt: 45443) -.vidspot.net/s/xfs\.min\.js\? -# ||vidhog.com/images/download_banner_ (easylistchina+easylist.txt: 45440) -.vidhog.com/images/download_banner_ -# ||videowood.tv/pop2 (easylistchina+easylist.txt: 45439) -.videowood.tv/pop2 -# ||videowood.tv/assets/js/popup.js (easylistchina+easylist.txt: 45438) -.videowood.tv/assets/js/popup\.js -# ||videowood.tv/ads (easylistchina+easylist.txt: 45437) -.videowood.tv/ads -# ||videositeprofits.com^*/banner.jpg (easylistchina+easylist.txt: 45436) -.videositeprofits.com/.*/banner\.jpg -# ||videos.mediaite.com/decor/live/white_alpha_60. (easylistchina+easylist.txt: 45435) -.videos.mediaite.com/decor/live/white_alpha_60\. -# ||videos.com/click? (easylistchina+easylist.txt: 45434) -.videos.com/click\? -# ||videopediaworld.com/nuevo/plugins/midroll. (easylistchina+easylist.txt: 45433) -.videopediaworld.com/nuevo/plugins/midroll\. -# ||videolan.org/images/events/animated_packliberte.gif (easylistchina+easylist.txt: 45432) -.videolan.org/images/events/animated_packliberte\.gif -# ||videogamesblogger.com^*/scripts/takeover.js (easylistchina+easylist.txt: 45431) -.videogamesblogger.com/.*/scripts/takeover\.js -# ||videogamesblogger.com/takeover.html (easylistchina+easylist.txt: 45430) -.videogamesblogger.com/takeover\.html -# ||videogamer.com/videogamer*/skins/ (easylistchina+easylist.txt: 45428) -.videogamer.com/videogamer.*/skins/ -# ||videodownloadtoolbar.com/fancybox/ (easylistchina+easylist.txt: 45427) -.videodownloadtoolbar.com/fancybox/ -# ||videobull.to/wp-content/themes/videozoom/images/stream-hd-button.gif (easylistchina+easylist.txt: 45425) -.videobull.to/wp-content/themes/videozoom/images/stream-hd-button\.gif -# ||videobull.to/wp-content/themes/videozoom/images/gotowatchnow.png (easylistchina+easylist.txt: 45424) -.videobull.to/wp-content/themes/videozoom/images/gotowatchnow\.png -# ||videobull.com^*/amazon_ico.png (easylistchina+easylist.txt: 45423) -.videobull.com/.*/amazon_ico\.png -# ||videobull.com/wp-content/themes/*/watch-now.jpg (easylistchina+easylist.txt: 45422) -.videobull.com/wp-content/themes/.*/watch-now\.jpg -# ||videobash.com/images/playboy/ (easylistchina+easylist.txt: 45421) -.videobash.com/images/playboy/ -# ||videobam.com/this-pays-for-bandwidth/ (easylistchina+easylist.txt: 45420) -.videobam.com/this-pays-for-bandwidth/ -# ||videobam.com/images/banners/ (easylistchina+easylist.txt: 45419) -.videobam.com/images/banners/ -# ||video44.net/gogo/qc.js (easylistchina+easylist.txt: 45417) -.video44.net/gogo/qc\.js -# ||video44.net/gogo/a_d_s. (easylistchina+easylist.txt: 45416) -.video44.net/gogo/a_d_s\. -# ||video2mp3.net/images/download_button.png (easylistchina+easylist.txt: 45415) -.video2mp3.net/images/download_button\.png -# ||video.abc.com^*/ads/ (easylistchina+easylist.txt: 45412) -.video.abc.com/.*/ads/ -# ||vidds.net/pads*.js (easylistchina+easylist.txt: 45409) -.vidds.net/pads.*\.js -# ||vidbull.com/tags/vidbull_bnr.png (easylistchina+easylist.txt: 45408) -.vidbull.com/tags/vidbull_bnr\.png -# ||vice-ads-cdn.vice.com^ (easylistchina+easylist.txt: 45407) -.vice-ads-cdn.vice.com -# ||viator.com/analytics/percent_mobile_hash.js (easylistchina+easylist.txt: 45406) -.viator.com/analytics/percent_mobile_hash\.js -# ||viamichelin.co.uk/htm/cmn/afs*.htm? (easylistchina+easylist.txt: 45405) -.viamichelin.co.uk/htm/cmn/afs.*\.htm\? -# ||viadeo.com/pub/ (easylistchina+easylist.txt: 45404) -.viadeo.com/pub/ -# ||vhd.me/custom/interstitial (easylistchina+easylist.txt: 45403) -.vhd.me/custom/interstitial -# ||vfs-uk-in.com/images/webbanner- (easylistchina+easylist.txt: 45402) -.vfs-uk-in.com/images/webbanner- -# ||verzing.com/popup (easylistchina+easylist.txt: 45401) -.verzing.com/popup -# ||verzend.be/images/download.png (easylistchina+easylist.txt: 45400) -.verzend.be/images/download\.png -# ||verizon.com/ads/ (easylistchina+easylist.txt: 45399) -.verizon.com/ads/ -# ||verdict.abc.go.com^ (easylistchina+easylist.txt: 45398) -.verdict.abc.go.com -# ||vcdq.com^*/ad.html (easylistchina+easylist.txt: 45396) -.vcdq.com/.*/ad\.html -# ||vcdq.com/tag.html (easylistchina+easylist.txt: 45395) -.vcdq.com/tag\.html -# ||vault.starproperty.my/widget/ (easylistchina+easylist.txt: 45394) -.vault.starproperty.my/widget/ -# ||vasco.co.za/images/banners/ (easylistchina+easylist.txt: 45393) -.vasco.co.za/images/banners/ -# ||vanityfair.com/custom/ebook-ad-bookbiz (easylistchina+easylist.txt: 45392) -.vanityfair.com/custom/ebook-ad-bookbiz -# ||valleyplanet.com/images/banners/ (easylistchina+easylist.txt: 45390) -.valleyplanet.com/images/banners/ -# ||val.fm/images/banners/ (easylistchina+easylist.txt: 45389) -.val.fm/images/banners/ -# ||uvnc.com/img/housecall. (easylistchina+easylist.txt: 45388) -.uvnc.com/img/housecall\. -# ||ustream.tv/takeover/ (easylistchina+easylist.txt: 45387) -.ustream.tv/takeover/ -# ||usforacle.com^*-300x250.gif (easylistchina+easylist.txt: 45384) -.usforacle.com/.*-300x250\.gif -# ||usenet-crawler.com/purevpn.png (easylistchina+easylist.txt: 45383) -.usenet-crawler.com/purevpn\.png -# ||usenet-crawler.com/astraweb.png (easylistchina+easylist.txt: 45382) -.usenet-crawler.com/astraweb\.png -# ||uschess.org/images/banners/ (easylistchina+easylist.txt: 45381) -.uschess.org/images/banners/ -# ||usatodayhss.com/images/*skin (easylistchina+easylist.txt: 45380) -.usatodayhss.com/images/.*skin -# ||usatoday.net^*/lb-agate.png (easylistchina+easylist.txt: 45379) -.usatoday.net/.*/lb-agate\.png -# ||usanetwork.com/_js/ad.js (easylistchina+easylist.txt: 45378) -.usanetwork.com/_js/ad\.js -# ||urlgone.com^*/banners/ (easylistchina+easylist.txt: 45377) -.urlgone.com/.*/banners/ -# ||urlcash.org/newpop.js (easylistchina+easylist.txt: 45376) -.urlcash.org/newpop\.js -# ||urlcash.org/banners/ (easylistchina+easylist.txt: 45375) -.urlcash.org/banners/ -# ||urlcash.org/abp/ (easylistchina+easylist.txt: 45374) -.urlcash.org/abp/ -# ||urlcash.net/random*.php (easylistchina+easylist.txt: 45373) -.urlcash.net/random.*\.php -# ||urlcash.net/newpop.js (easylistchina+easylist.txt: 45372) -.urlcash.net/newpop\.js -# ||urethanes-technology-international.com^*/banners/ (easylistchina+easylist.txt: 45371) -.urethanes-technology-international.com/.*/banners/ -# ||urbanvelo.org/sidebarbanner/ (easylistchina+easylist.txt: 45370) -.urbanvelo.org/sidebarbanner/ -# ||urbanfonts.com/images/fonts_com/ (easylistchina+easylist.txt: 45369) -.urbanfonts.com/images/fonts_com/ -# ||urbanchristiannews.com/ucn/sidebar- (easylistchina+easylist.txt: 45368) -.urbanchristiannews.com/ucn/sidebar- -# ||uptobox.com/images/downloaden.gif (easylistchina+easylist.txt: 45367) -.uptobox.com/images/downloaden\.gif -# ||uptobox.com/images/download.png (easylistchina+easylist.txt: 45366) -.uptobox.com/images/download\.png -# ||uptobox.com/ayl.js (easylistchina+easylist.txt: 45365) -.uptobox.com/ayl\.js -# ||uploadlw.com^*/download_button.gif (easylistchina+easylist.txt: 45364) -.uploadlw.com/.*/download_button\.gif -# ||uploadlw.com^*/download-now (easylistchina+easylist.txt: 45363) -.uploadlw.com/.*/download-now -# ||uploadlw.com/js/cash.js (easylistchina+easylist.txt: 45362) -.uploadlw.com/js/cash\.js -# ||uploading.com/static/banners/ (easylistchina+easylist.txt: 45361) -.uploading.com/static/banners/ -# ||uploadedtrend.com/turboflirt.gif (easylistchina+easylist.txt: 45360) -.uploadedtrend.com/turboflirt\.gif -# ||uploaded.to/img/e/ad/ (easylistchina+easylist.txt: 45359) -.uploaded.to/img/e/ad/ -# ||uploaded.net/js2/downloadam.js (easylistchina+easylist.txt: 45358) -.uploaded.net/js2/downloadam\.js -# ||uploadcore.com/images/*-Rad.png (easylistchina+easylist.txt: 45357) -.uploadcore.com/images/.*-Rad\.png -# ||uploadcore.com/images/*-mad.jpg (easylistchina+easylist.txt: 45356) -.uploadcore.com/images/.*-mad\.jpg -# ||uploadcore.com/images/*-Lad.jpg (easylistchina+easylist.txt: 45355) -.uploadcore.com/images/.*-Lad\.jpg -# ||upload.ee/image/*/B_descarga_tipo12.gif (easylistchina+easylist.txt: 45353) -.upload.ee/image/.*/B_descarga_tipo12\.gif -# ||universalhub.com/bban/ (easylistchina+easylist.txt: 45352) -.universalhub.com/bban/ -# ||uniquefm.gm/images/banners/ (easylistchina+easylist.txt: 45351) -.uniquefm.gm/images/banners/ -# ||uniindia.net/eng/banners/ (easylistchina+easylist.txt: 45350) -.uniindia.net/eng/banners/ -# ||uniindia.com/eng/bannertopright.php (easylistchina+easylist.txt: 45349) -.uniindia.com/eng/bannertopright\.php -# ||uniindia.com/eng/banners/ (easylistchina+easylist.txt: 45348) -.uniindia.com/eng/banners/ -# ||uniindia.com/eng/bannerrightside.php (easylistchina+easylist.txt: 45347) -.uniindia.com/eng/bannerrightside\.php -# ||uniindia.com/eng/bannerheader.php (easylistchina+easylist.txt: 45346) -.uniindia.com/eng/bannerheader\.php -# ||uniindia.com/eng/bannerbottom.php (easylistchina+easylist.txt: 45345) -.uniindia.com/eng/bannerbottom\.php -# ||unicast.msn.com^ (easylistchina+easylist.txt: 45344) -.unicast.msn.com -# ||unicast.ign.com^ (easylistchina+easylist.txt: 45343) -.unicast.ign.com -# ||uncoached.com/smallpics/ashley (easylistchina+easylist.txt: 45342) -.uncoached.com/smallpics/ashley -# ||unblockt.com/scrape_if.php (easylistchina+easylist.txt: 45341) -.unblockt.com/scrape_if\.php -# ||umbrelladetective.com/uploaded_files/banners/ (easylistchina+easylist.txt: 45335) -.umbrelladetective.com/uploaded_files/banners/ -# ||ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners.swf (easylistchina+easylist.txt: 45334) -.ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners\.swf -# ||ultimatewindowssecurity.com/images/spale.swf (easylistchina+easylist.txt: 45333) -.ultimatewindowssecurity.com/images/spale\.swf -# ||ultimatewindowssecurity.com/images/patchzone-resource-80x490.jpg (easylistchina+easylist.txt: 45332) -.ultimatewindowssecurity.com/images/patchzone-resource-80x490\.jpg -# ||ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool.jpg (easylistchina+easylist.txt: 45331) -.ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool\.jpg -# ||ultimatehandyman.org/bh1.gif (easylistchina+easylist.txt: 45330) -.ultimatehandyman.org/bh1\.gif -# ||ultimatehandyman.co.uk/ban.txt (easylistchina+easylist.txt: 45329) -.ultimatehandyman.co.uk/ban\.txt -# ||ultimate-guitar.com^*/takeover/ (easylistchina+easylist.txt: 45328) -.ultimate-guitar.com/.*/takeover/ -# ||ultimate-guitar.com/_img/promo/takeovers/ (easylistchina+easylist.txt: 45326) -.ultimate-guitar.com/_img/promo/takeovers/ -# ||ultimate-guitar.com/_img/bgd/bgd_main_ (easylistchina+easylist.txt: 45325) -.ultimate-guitar.com/_img/bgd/bgd_main_ -# ||ukradioplayer.kerrangradio.co.uk^*/icon_apple.png (easylistchina+easylist.txt: 45324) -.ukradioplayer.kerrangradio.co.uk/.*/icon_apple\.png -# ||ukradioplayer.kerrangradio.co.uk^*/icon_amazon.png (easylistchina+easylist.txt: 45323) -.ukradioplayer.kerrangradio.co.uk/.*/icon_amazon\.png -# ||ukfindit.com/wipedebtclean.png (easylistchina+easylist.txt: 45322) -.ukfindit.com/wipedebtclean\.png -# ||ukfindit.com/images/*_125x125.gif (easylistchina+easylist.txt: 45321) -.ukfindit.com/images/.*_125x125\.gif -# ||ukcast.co/rbt728.php (easylistchina+easylist.txt: 45320) -.ukcast.co/rbt728\.php -# ||ukcast.co/pubfit.php (easylistchina+easylist.txt: 45319) -.ukcast.co/pubfit\.php -# ||ukcampsite.co.uk/banners/ (easylistchina+easylist.txt: 45318) -.ukcampsite.co.uk/banners/ -# ||ukbusinessforums.co.uk/adblock/ (easylistchina+easylist.txt: 45317) -.ukbusinessforums.co.uk/adblock/ -# ||uk-mkivs.net/uploads/banners/ (easylistchina+easylist.txt: 45316) -.uk-mkivs.net/uploads/banners/ -# ||ujfm.co.za/images/banners/ (easylistchina+easylist.txt: 45315) -.ujfm.co.za/images/banners/ -# ||uimserv.net^ (easylistchina+easylist.txt: 45314) -.uimserv.net -# ||ugo.com/takeover/ (easylistchina+easylist.txt: 45313) -.ugo.com/takeover/ -# ||ufonts.com/gfx/uFonts_Banner5.png (easylistchina+easylist.txt: 45312) -.ufonts.com/gfx/uFonts_Banner5\.png -# ||ubuntugeek.com^*/rocket.js (easylistchina+easylist.txt: 45311) -.ubuntugeek.com/.*/rocket\.js -# ||ubuntugeek.com/images/ubuntu1.png (easylistchina+easylist.txt: 45310) -.ubuntugeek.com/images/ubuntu1\.png -# ||ubuntugeek.com/images/od.jpg (easylistchina+easylist.txt: 45309) -.ubuntugeek.com/images/od\.jpg -# ||ubuntugeek.com/images/dnsstock.png (easylistchina+easylist.txt: 45308) -.ubuntugeek.com/images/dnsstock\.png -# ||ua.badongo.com^ (easylistchina+easylist.txt: 45305) -.ua.badongo.com -# ||u.tv/utvplayer/jwplayer/ova.swf (easylistchina+easylist.txt: 45304) -.u.tv/utvplayer/jwplayer/ova\.swf -# ||u.tv/images/sponsors/ (easylistchina+easylist.txt: 45303) -.u.tv/images/sponsors/ -# ||u.tv/images/misc/progressive.png (easylistchina+easylist.txt: 45302) -.u.tv/images/misc/progressive\.png -# ||txfm.ie^*/itunes-16x16.png (easylistchina+easylist.txt: 45301) -.txfm.ie/.*/itunes-16x16\.png -# ||txfm.ie^*/amazon-16x16.png (easylistchina+easylist.txt: 45300) -.txfm.ie/.*/amazon-16x16\.png -# ||twnmm.com^*/sponsored_logo. (easylistchina+easylist.txt: 45299) -.twnmm.com/.*/sponsored_logo\. -# ||twitch.tv/ad/*=preroll (easylistchina+easylist.txt: 45297) -.twitch.tv/ad/.*=preroll -# ||twentyfour7football.com^*/gpprint.jpg (easylistchina+easylist.txt: 45296) -.twentyfour7football.com/.*/gpprint\.jpg -# ||tweaktown.com/cms/includes/i*.php (easylistchina+easylist.txt: 45295) -.tweaktown.com/cms/includes/i.*\.php -# ||tvsubtitles.net/banners/ (easylistchina+easylist.txt: 45294) -.tvsubtitles.net/banners/ -# ||tvguide.com^*/ecommerce/ (easylistchina+easylist.txt: 45293) -.tvguide.com/.*/ecommerce/ -# ||tvducky.com/imgs/graboid. (easylistchina+easylist.txt: 45292) -.tvducky.com/imgs/graboid\. -# ||tvcatchup.com/wowee/ (easylistchina+easylist.txt: 45291) -.tvcatchup.com/wowee/ -# ||tvbrowser.org/logo_df_tvsponsor_ (easylistchina+easylist.txt: 45290) -.tvbrowser.org/logo_df_tvsponsor_ -# ||tv4chan.com/iframes/ (easylistchina+easylist.txt: 45289) -.tv4chan.com/iframes/ -# ||tv3.ie^*/sponsor. (easylistchina+easylist.txt: 45288) -.tv3.ie/.*/sponsor\. -# ||tuspics.net/onlyPopupOnce.js (easylistchina+easylist.txt: 45287) -.tuspics.net/onlyPopupOnce\.js -# ||tusfiles.net/images/tusfilesb.gif (easylistchina+easylist.txt: 45286) -.tusfiles.net/images/tusfilesb\.gif -# ||tusfiles.net/i/dll.png (easylistchina+easylist.txt: 45285) -.tusfiles.net/i/dll\.png -# ||turnstylenews.com^*/sponsors.png (easylistchina+easylist.txt: 45284) -.turnstylenews.com/.*/sponsors\.png -# ||turboyourpc.com/images/affiliates/ (easylistchina+easylist.txt: 45283) -.turboyourpc.com/images/affiliates/ -# ||turboimagehost.com/p.js (easylistchina+easylist.txt: 45282) -.turboimagehost.com/p\.js -# ||turboimagehost.com/b728_ (easylistchina+easylist.txt: 45281) -.turboimagehost.com/b728_ -# ||turboimagehost.com/b728. (easylistchina+easylist.txt: 45280) -.turboimagehost.com/b728\. -# ||turboimagehost.com/b300_ (easylistchina+easylist.txt: 45279) -.turboimagehost.com/b300_ -# ||turboimagehost.com/b300. (easylistchina+easylist.txt: 45278) -.turboimagehost.com/b300\. -# ||turboimagehost.com/728*.html^ (easylistchina+easylist.txt: 45277) -.turboimagehost.com/728.*\.html[^\w%.-] -# ||turboimagehost.com/300*.html^ (easylistchina+easylist.txt: 45276) -.turboimagehost.com/300.*\.html[^\w%.-] -# ||turbobit.net/pics/7z1xla23ay_ (easylistchina+easylist.txt: 45275) -.turbobit.net/pics/7z1xla23ay_ -# ||turbobit.net/oexktl/muzebra_ (easylistchina+easylist.txt: 45274) -.turbobit.net/oexktl/muzebra_ -# ||turbobit.net/js/acontrol.js? (easylistchina+easylist.txt: 45273) -.turbobit.net/js/acontrol\.js\? -# ||tune.pk/plugins/cb_tunepk/ads/ (easylistchina+easylist.txt: 45272) -.tune.pk/plugins/cb_tunepk/ads/ -# ||tullahomanews.com/news/tn-popup.js (easylistchina+easylist.txt: 45271) -.tullahomanews.com/news/tn-popup\.js -# ||tullahomanews.com/news/banners/ (easylistchina+easylist.txt: 45270) -.tullahomanews.com/news/banners/ -# ||tubeplus.me/resources/js/codec.js (easylistchina+easylist.txt: 45269) -.tubeplus.me/resources/js/codec\.js -# ||tubehome.com/imgs/undressme (easylistchina+easylist.txt: 45268) -.tubehome.com/imgs/undressme -# ||tsn.ca^*_sponsor. (easylistchina+easylist.txt: 45267) -.tsn.ca/.*_sponsor\. -# ||tsdmemphis.com/images/banners/ (easylistchina+easylist.txt: 45266) -.tsdmemphis.com/images/banners/ -# ||trutv.com/includes/mods/iframes/mgid-blog.php (easylistchina+easylist.txt: 45264) -.trutv.com/includes/mods/iframes/mgid-blog\.php -# ||trustedreviews.com/mobile/widgets/html/promoted-phones? (easylistchina+easylist.txt: 45263) -.trustedreviews.com/mobile/widgets/html/promoted-phones\? -# ||trunews.com^*/Webbanner.jpg (easylistchina+easylist.txt: 45262) -.trunews.com/.*/Webbanner\.jpg -# ||trucktrend.com^*_160x200_ (easylistchina+easylist.txt: 45261) -.trucktrend.com/.*_160x200_ -# ||trucknetuk.com^*/sponsors/ (easylistchina+easylist.txt: 45260) -.trucknetuk.com/.*/sponsors/ -# ||truck1.eu/_BANNERS_/ (easylistchina+easylist.txt: 45259) -.truck1.eu/_BANNERS_/ -# ||triplehfm.com.au/images/banners/ (easylistchina+easylist.txt: 45258) -.triplehfm.com.au/images/banners/ -# ||tripadvisor.com^*/skyscraper.jpg (easylistchina+easylist.txt: 45257) -.tripadvisor.com/.*/skyscraper\.jpg -# ||tripadvisor.com/adp/ (easylistchina+easylist.txt: 45256) -.tripadvisor.com/adp/ -# ||tribune242.com/pubfiles/ (easylistchina+easylist.txt: 45254) -.tribune242.com/pubfiles/ -# ||tribune.com.ng/images/banners/ (easylistchina+easylist.txt: 45253) -.tribune.com.ng/images/banners/ -# ||trgoals.es/adk.html (easylistchina+easylist.txt: 45252) -.trgoals.es/adk\.html -# ||trailrunnermag.com/images/takeovers/ (easylistchina+easylist.txt: 45251) -.trailrunnermag.com/images/takeovers/ -# ||traduguide.com/banner/ (easylistchina+easylist.txt: 45250) -.traduguide.com/banner/ -# ||tradewinds.vi/images/banners/ (easylistchina+easylist.txt: 45249) -.tradewinds.vi/images/banners/ -# ||tracksat.com^*/banners/ (easylistchina+easylist.txt: 45248) -.tracksat.com/.*/banners/ -# ||trackitdown.net/skins/*_campaign/ (easylistchina+easylist.txt: 45247) -.trackitdown.net/skins/.*_campaign/ -# ||tracking.hostgator.com^ (easylistchina+easylist.txt: 45246) -.tracking.hostgator.com -# ||tpb.piraten.lu/static/img/bar.gif (easylistchina+easylist.txt: 45243) -.tpb.piraten.lu/static/img/bar\.gif -# ||toywiz.com/lower-caption-global.html (easylistchina+easylist.txt: 45242) -.toywiz.com/lower-caption-global\.html -# ||toynewsi.com/a/ (easylistchina+easylist.txt: 45241) -.toynewsi.com/a/ -# ||toynews-online.biz/media/banners/ (easylistchina+easylist.txt: 45240) -.toynews-online.biz/media/banners/ -# ||townhall.com^*/ads/ (easylistchina+easylist.txt: 45239) -.townhall.com/.*/ads/ -# ||toucharcade.com/wp-content/uploads/skins/ (easylistchina+easylist.txt: 45238) -.toucharcade.com/wp-content/uploads/skins/ -# ||toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin.jpg (easylistchina+easylist.txt: 45237) -.toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin\.jpg -# ||toucharcade.com/wp-content/themes/*_background_*.jpg (easylistchina+easylist.txt: 45236) -.toucharcade.com/wp-content/themes/.*_background_.*\.jpg -# ||totalguitar.net/images/tgMagazineBanner.gif (easylistchina+easylist.txt: 45235) -.totalguitar.net/images/tgMagazineBanner\.gif -# ||totalguitar.net/images/*_125X125.jpg (easylistchina+easylist.txt: 45234) -.totalguitar.net/images/.*_125X125\.jpg -# ||totalcmd.pl/img/olszak. (easylistchina+easylist.txt: 45233) -.totalcmd.pl/img/olszak\. -# ||totalcmd.pl/img/nucom. (easylistchina+easylist.txt: 45232) -.totalcmd.pl/img/nucom\. -# ||totalcmd.pl/img/billboard_ (easylistchina+easylist.txt: 45231) -.totalcmd.pl/img/billboard_ -# ||total-croatia-news.com/images/banners/ (easylistchina+easylist.txt: 45230) -.total-croatia-news.com/images/banners/ -# ||toshiba.com^*/toshibapromowidget/ (easylistchina+easylist.txt: 45229) -.toshiba.com/.*/toshibapromowidget/ -# ||toshiba.com^*/bookingpromowidget/ (easylistchina+easylist.txt: 45228) -.toshiba.com/.*/bookingpromowidget/ -# ||torrentz.*/mgid/ (easylistchina+easylist.txt: 45227) -.torrentz.*./(.*/)?mgid/ -# ||torrentv.org/images/tsdls.jpg (easylistchina+easylist.txt: 45226) -.torrentv.org/images/tsdls\.jpg -# ||torrentv.org/images/tsdd.jpg (easylistchina+easylist.txt: 45225) -.torrentv.org/images/tsdd\.jpg -# ||torrents.net/wiget.js (easylistchina+easylist.txt: 45224) -.torrents.net/wiget\.js -# ||torrents.net/btguard.gif (easylistchina+easylist.txt: 45223) -.torrents.net/btguard\.gif -# ||torrentroom.com/js/torrents.js (easylistchina+easylist.txt: 45222) -.torrentroom.com/js/torrents\.js -# ||torrentproject.org/out/ (easylistchina+easylist.txt: 45221) -.torrentproject.org/out/ -# ||torrentfusion.com/FastDownload.html (easylistchina+easylist.txt: 45220) -.torrentfusion.com/FastDownload\.html -# ||torrentfunk.com/affprofslider.js (easylistchina+easylist.txt: 45219) -.torrentfunk.com/affprofslider\.js -# ||torrentfreak.com/images/vuze.png (easylistchina+easylist.txt: 45218) -.torrentfreak.com/images/vuze\.png -# ||torrentfreak.com/images/torguard.gif (easylistchina+easylist.txt: 45217) -.torrentfreak.com/images/torguard\.gif -# ||torrenteditor.com/img/graphical-network-monitor.gif (easylistchina+easylist.txt: 45216) -.torrenteditor.com/img/graphical-network-monitor\.gif -# ||torrentcrazy.com/pnd.js (easylistchina+easylist.txt: 45215) -.torrentcrazy.com/pnd\.js -# ||torrentcrazy.com/img/wx.png (easylistchina+easylist.txt: 45214) -.torrentcrazy.com/img/wx\.png -# ||torrentbox.sx/img/download_direct.png (easylistchina+easylist.txt: 45213) -.torrentbox.sx/img/download_direct\.png -# ||torrentbit.net/images/1click/button-long.png (easylistchina+easylist.txt: 45212) -.torrentbit.net/images/1click/button-long\.png -# ||torrent.cd/images/sp/ (easylistchina+easylist.txt: 45211) -.torrent.cd/images/sp/ -# ||torrent.cd/images/main_big_msoft.jpg (easylistchina+easylist.txt: 45210) -.torrent.cd/images/main_big_msoft\.jpg -# ||torrent.cd/images/big_use.gif (easylistchina+easylist.txt: 45209) -.torrent.cd/images/big_use\.gif -# ||torrent.cd/images/banner- (easylistchina+easylist.txt: 45208) -.torrent.cd/images/banner- -# ||torrent-finder.info/cont.php (easylistchina+easylist.txt: 45207) -.torrent-finder.info/cont\.php -# ||torrent-finder.info/cont.html (easylistchina+easylist.txt: 45206) -.torrent-finder.info/cont\.html -# ||toptenreviews.com/flash/ (easylistchina+easylist.txt: 45205) -.toptenreviews.com/flash/ -# ||topix.com/ajax/krillion/ (easylistchina+easylist.txt: 45204) -.topix.com/ajax/krillion/ -# ||topfriv.com/popup.js (easylistchina+easylist.txt: 45203) -.topfriv.com/popup\.js -# ||topalternate.com/assets/sponsored_links- (easylistchina+easylist.txt: 45202) -.topalternate.com/assets/sponsored_links- -# ||toonzone.net^*/placements.php? (easylistchina+easylist.txt: 45201) -.toonzone.net/.*/placements\.php\? -# ||toonova.com/images/site/front/xgift- (easylistchina+easylist.txt: 45200) -.toonova.com/images/site/front/xgift- -# ||toomuchnews.com/dropin/ (easylistchina+easylist.txt: 45199) -.toomuchnews.com/dropin/ -# ||toolslib.net/assets/img/a_dvt/ (easylistchina+easylist.txt: 45198) -.toolslib.net/assets/img/a_dvt/ -# ||tom.itv.com^ (easylistchina+easylist.txt: 45195) -.tom.itv.com -# ||tny.cz/oo/ (easylistchina+easylist.txt: 45194) -.tny.cz/oo/ -# ||tnij.org/rotator (easylistchina+easylist.txt: 45193) -.tnij.org/rotator -# ||tmz.vo.llnwd.net^*/images/*skin (easylistchina+easylist.txt: 45191) -.tmz.vo.llnwd.net/.*/images/.*skin -# ||tmcs.net^ (easylistchina+easylist.txt: 45190) -.tmcs.net -# ||titantv.com/gravity.ashx (easylistchina+easylist.txt: 45189) -.titantv.com/gravity\.ashx -# ||titantorrent.to^*/buttons/download.gif (easylistchina+easylist.txt: 45188) -.titantorrent.to/.*/buttons/download\.gif -# ||titanshare.to/images/buttons/download.gif (easylistchina+easylist.txt: 45187) -.titanshare.to/images/buttons/download\.gif -# ||tinyurl.com/firefox_banner_ (easylistchina+easylist.txt: 45186) -.tinyurl.com/firefox_banner_ -# ||tinypaste.com/public/images/480.png (easylistchina+easylist.txt: 45185) -.tinypaste.com/public/images/480\.png -# ||tindleradio.net/banners/ (easylistchina+easylist.txt: 45183) -.tindleradio.net/banners/ -# ||timestalks.com/images/sponsor- (easylistchina+easylist.txt: 45182) -.timestalks.com/images/sponsor- -# ||timesofoman.com^*/banner/ (easylistchina+easylist.txt: 45181) -.timesofoman.com/.*/banner/ -# ||timesofoman.com/siteImages/MyBannerImages/ (easylistchina+easylist.txt: 45180) -.timesofoman.com/siteImages/MyBannerImages/ -# ||timesofoman.com/FrontInc/top.aspx (easylistchina+easylist.txt: 45179) -.timesofoman.com/FrontInc/top\.aspx -# ||timesnow.tv/googlehome.cms (easylistchina+easylist.txt: 45178) -.timesnow.tv/googlehome\.cms -# ||times.co.sz/files/banners/ (easylistchina+easylist.txt: 45177) -.times.co.sz/files/banners/ -# ||times-herald.com/pubfiles/ (easylistchina+easylist.txt: 45176) -.times-herald.com/pubfiles/ -# ||timeinc.net^*/recirc.js (easylistchina+easylist.txt: 45175) -.timeinc.net/.*/recirc\.js -# ||timeinc.net/*/i/oba-compliance.png (easylistchina+easylist.txt: 45174) -.timeinc.net/.*/i/oba-compliance\.png -# ||time4tv.com/tlv. (easylistchina+easylist.txt: 45173) -.time4tv.com/tlv\. -# ||tigerdroppings.com^*&adcode= (easylistchina+easylist.txt: 45172) -.tigerdroppings.com/.*&adcode= -# ||ticketnetwork.com/images/affiliates/ (easylistchina+easylist.txt: 45171) -.ticketnetwork.com/images/affiliates/ -# ||thunder106.com//wp-content/banners/ (easylistchina+easylist.txt: 45170) -# ||thisisanfield.com^*takeover (easylistchina+easylist.txt: 45169) -.thisisanfield.com/.*takeover -# ||thirdage.com^*_banner.php (easylistchina+easylist.txt: 45168) -.thirdage.com/.*_banner\.php -# ||thinkingwithportals.com^*-skyscraper.swf (easylistchina+easylist.txt: 45167) -.thinkingwithportals.com/.*-skyscraper\.swf -# ||thinkingwithportals.com/images/*-skyscraper. (easylistchina+easylist.txt: 45166) -.thinkingwithportals.com/images/.*-skyscraper\. -# ||thinkbroadband.com/uploads/banners/ (easylistchina+easylist.txt: 45165) -.thinkbroadband.com/uploads/banners/ -# ||theyeshivaworld.com/yw/ (easylistchina+easylist.txt: 45164) -.theyeshivaworld.com/yw/ -# ||thewindowsclub.com^*/banner_ (easylistchina+easylist.txt: 45163) -.thewindowsclub.com/.*/banner_ -# ||thewb.com/thewb/swf/tmz-adblock/ (easylistchina+easylist.txt: 45162) -.thewb.com/thewb/swf/tmz-adblock/ -# ||thevoicebw.com^*325x290.jpg (easylistchina+easylist.txt: 45161) -.thevoicebw.com/.*325x290\.jpg -# ||thevideo.me/js/popup.min.js (easylistchina+easylist.txt: 45160) -.thevideo.me/js/popup\.min\.js -# ||thevideo.me/js/jspc.js (easylistchina+easylist.txt: 45159) -.thevideo.me/js/jspc\.js -# ||thevideo.me/js/jsmpc.js (easylistchina+easylist.txt: 45158) -.thevideo.me/js/jsmpc\.js -# ||thevideo.me/creatives/ (easylistchina+easylist.txt: 45157) -.thevideo.me/creatives/ -# ||thevideo.me/cgi-bin/get_creatives.cgi? (easylistchina+easylist.txt: 45156) -.thevideo.me/cgi-bin/get_creatives\.cgi\? -# ||thetvdb.com/images/jriver_banner.png (easylistchina+easylist.txt: 45155) -.thetvdb.com/images/jriver_banner\.png -# ||thetvdb.com/images/frugal.gif (easylistchina+easylist.txt: 45154) -.thetvdb.com/images/frugal\.gif -# ||thetimes.co.uk/public/encounters/ (easylistchina+easylist.txt: 45153) -.thetimes.co.uk/public/encounters/ -# ||theticketmiami.com/Pics/listenlive/*-Right.jpg (easylistchina+easylist.txt: 45152) -.theticketmiami.com/Pics/listenlive/.*-Right\.jpg -# ||theticketmiami.com/Pics/listenlive/*-Left.jpg (easylistchina+easylist.txt: 45151) -.theticketmiami.com/Pics/listenlive/.*-Left\.jpg -# ||thesweetscience.com/images/banners/ (easylistchina+easylist.txt: 45150) -.thesweetscience.com/images/banners/ -# ||thesurvivalistblog.net^*-banner- (easylistchina+easylist.txt: 45149) -.thesurvivalistblog.net/.*-banner- -# ||thesundaily.my/sites/default/files/twinskyscrapers (easylistchina+easylist.txt: 45148) -.thesundaily.my/sites/default/files/twinskyscrapers -# ||thesuburban.com/universe/addsspace/ (easylistchina+easylist.txt: 45147) -.thesuburban.com/universe/addsspace/ -# ||thesuburban.com/universe/adds/ (easylistchina+easylist.txt: 45146) -.thesuburban.com/universe/adds/ -# ||thestkittsnevisobserver.com/images/banners/ (easylistchina+easylist.txt: 45145) -.thestkittsnevisobserver.com/images/banners/ -# ||thestandard.com.ph^*/banner/ (easylistchina+easylist.txt: 45144) -.thestandard.com.ph/.*/banner/ -# ||thestandard.com.hk/rotate_ (easylistchina+easylist.txt: 45143) -.thestandard.com.hk/rotate_ -# ||thestandard.com.hk/banners/ (easylistchina+easylist.txt: 45142) -.thestandard.com.hk/banners/ -# ||thessdreview.com^*/owc-new-gif1.gif (easylistchina+easylist.txt: 45141) -.thessdreview.com/.*/owc-new-gif1\.gif -# ||thessdreview.com^*/owc-full-banner.jpg (easylistchina+easylist.txt: 45140) -.thessdreview.com/.*/owc-full-banner\.jpg -# ||thessdreview.com^*/amazon-buy (easylistchina+easylist.txt: 45139) -.thessdreview.com/.*/amazon-buy -# ||thessdreview.com^*-bg.jpg (easylistchina+easylist.txt: 45138) -.thessdreview.com/.*-bg\.jpg -# ||thessdreview.com^*-bg-banner- (easylistchina+easylist.txt: 45137) -.thessdreview.com/.*-bg-banner- -# ||thessdreview.com/wp-content/uploads/*/930x64_ (easylistchina+easylist.txt: 45136) -.thessdreview.com/wp-content/uploads/.*/930x64_ -# ||thespiritsbusiness.com^*/Banner150 (easylistchina+easylist.txt: 45135) -.thespiritsbusiness.com/.*/Banner150 -# ||thesource.com/magicshave/ (easylistchina+easylist.txt: 45134) -.thesource.com/magicshave/ -# ||thesentinel.com^*/banners/ (easylistchina+easylist.txt: 45133) -.thesentinel.com/.*/banners/ -# ||therugbyforum.com/trf-images/sponsors/ (easylistchina+easylist.txt: 45132) -.therugbyforum.com/trf-images/sponsors/ -# ||theradiomagazine.co.uk/images/bionics.jpg (easylistchina+easylist.txt: 45131) -.theradiomagazine.co.uk/images/bionics\.jpg -# ||theradiomagazine.co.uk/banners/ (easylistchina+easylist.txt: 45130) -.theradiomagazine.co.uk/banners/ -# ||thepreparednessreview.com/wp-content/uploads/*_185x185.jpg (easylistchina+easylist.txt: 45129) -.thepreparednessreview.com/wp-content/uploads/.*_185x185\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*_175x175.jpg (easylistchina+easylist.txt: 45128) -.thepreparednessreview.com/wp-content/uploads/.*_175x175\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*/250x125- (easylistchina+easylist.txt: 45127) -.thepreparednessreview.com/wp-content/uploads/.*/250x125- -# ||theportugalnews.com/uploads/banner/ (easylistchina+easylist.txt: 45126) -.theportugalnews.com/uploads/banner/ -# ||theplanetweekly.com/images/banners/ (easylistchina+easylist.txt: 45125) -.theplanetweekly.com/images/banners/ -# ||thephuketnews.com/photo/banner/ (easylistchina+easylist.txt: 45124) -.thephuketnews.com/photo/banner/ -# ||thepeninsulaqatar.com^*/banners/ (easylistchina+easylist.txt: 45123) -.thepeninsulaqatar.com/.*/banners/ -# ||thepeak.fm/images/banners/ (easylistchina+easylist.txt: 45122) -.thepeak.fm/images/banners/ -# ||thepaper24-7.com/SiteImages/Tile/ (easylistchina+easylist.txt: 45121) -.thepaper24-7.com/SiteImages/Tile/ -# ||thepaper24-7.com/SiteImages/Banner/ (easylistchina+easylist.txt: 45120) -.thepaper24-7.com/SiteImages/Banner/ -# ||theorganicprepper.ca/images/banners/ (easylistchina+easylist.txt: 45119) -.theorganicprepper.ca/images/banners/ -# ||theonion.com/ads/ (easylistchina+easylist.txt: 45118) -.theonion.com/ads/ -# ||theolympian.com/static/images/weathersponsor/ (easylistchina+easylist.txt: 45117) -.theolympian.com/static/images/weathersponsor/ -# ||theoldie.co.uk/Banners/ (easylistchina+easylist.txt: 45116) -.theoldie.co.uk/Banners/ -# ||thenonleaguefootballpaper.com^*/Lovell-Soccer.jpg (easylistchina+easylist.txt: 45115) -.thenonleaguefootballpaper.com/.*/Lovell-Soccer\.jpg -# ||thenonleaguefootballpaper.com^*/J4K-new-range-pictures.jpg (easylistchina+easylist.txt: 45114) -.thenonleaguefootballpaper.com/.*/J4K-new-range-pictures\.jpg -# ||thenonleaguefootballpaper.com^*/image-non-league.jpeg (easylistchina+easylist.txt: 45113) -.thenonleaguefootballpaper.com/.*/image-non-league\.jpeg -# ||thenonleaguefootballpaper.com^*/Budweiser.jpg (easylistchina+easylist.txt: 45112) -.thenonleaguefootballpaper.com/.*/Budweiser\.jpg -# ||thenonleaguefootballpaper.com^*/ADIDAS_11PRO_WHITEOUT.jpg (easylistchina+easylist.txt: 45111) -.thenonleaguefootballpaper.com/.*/ADIDAS_11PRO_WHITEOUT\.jpg -# ||thenonleaguefootballpaper.com^*/140x140_ (easylistchina+easylist.txt: 45110) -.thenonleaguefootballpaper.com/.*/140x140_ -# ||thenonleaguefootballpaper.com^*-140x300- (easylistchina+easylist.txt: 45109) -.thenonleaguefootballpaper.com/.*-140x300- -# ||thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ (easylistchina+easylist.txt: 45107) -.thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ -# ||thenewjournalandguide.com/images/banners/ (easylistchina+easylist.txt: 45106) -.thenewjournalandguide.com/images/banners/ -# ||thenewage.co.za/Image/kingprice.gif (easylistchina+easylist.txt: 45105) -.thenewage.co.za/Image/kingprice\.gif -# ||thenationonlineng.net^*/banners/ (easylistchina+easylist.txt: 45104) -.thenationonlineng.net/.*/banners/ -# ||thenassauguardian.com/images/banners/ (easylistchina+easylist.txt: 45103) -.thenassauguardian.com/images/banners/ -# ||themittani.com/sites/*-skin (easylistchina+easylist.txt: 45102) -.themittani.com/sites/.*-skin -# ||themiscellany.org/images/banners/ (easylistchina+easylist.txt: 45101) -.themiscellany.org/images/banners/ -# ||themis.yahoo.com^ (easylistchina+easylist.txt: 45100) -.themis.yahoo.com -# ||themis-media.com/media/global/images/cskins/ (easylistchina+easylist.txt: 45099) -.themis-media.com/media/global/images/cskins/ -# ||theminiforum.co.uk/images/banners/ (easylistchina+easylist.txt: 45098) -.theminiforum.co.uk/images/banners/ -# ||themidweeksun.co.bw/images/banners/ (easylistchina+easylist.txt: 45097) -.themidweeksun.co.bw/images/banners/ -# ||themag.co.uk/assets/BV200x90TOPBANNER.png (easylistchina+easylist.txt: 45096) -.themag.co.uk/assets/BV200x90TOPBANNER\.png -# ||thelyricarchive.com/new/view/ (easylistchina+easylist.txt: 45095) -.thelyricarchive.com/new/view/ -# ||thelodownny.com/leslog/ads/ (easylistchina+easylist.txt: 45094) -.thelodownny.com/leslog/ads/ -# ||thelocal.com/scripts/fancybox/ (easylistchina+easylist.txt: 45093) -.thelocal.com/scripts/fancybox/ -# ||theliberianjournal.com/flash/banner (easylistchina+easylist.txt: 45092) -.theliberianjournal.com/flash/banner -# ||theleader.info/banner (easylistchina+easylist.txt: 45091) -.theleader.info/banner -# ||thelakewoodscoop.com^*banner (easylistchina+easylist.txt: 45090) -.thelakewoodscoop.com/.*banner -# ||thejournal.ie/media/hpto/ (easylistchina+easylist.txt: 45089) -.thejournal.ie/media/hpto/ -# ||thejointblog.com^*/dablab.gif (easylistchina+easylist.txt: 45088) -.thejointblog.com/.*/dablab\.gif -# ||thejointblog.com/wp-content/uploads/*-235x (easylistchina+easylist.txt: 45087) -.thejointblog.com/wp-content/uploads/.*-235x -# ||thejesperbay.com^ (easylistchina+easylist.txt: 45086) -.thejesperbay.com -# ||theispguide.com/topbanner.asp? (easylistchina+easylist.txt: 45085) -.theispguide.com/topbanner\.asp\? -# ||theispguide.com/premiumisp.html (easylistchina+easylist.txt: 45084) -.theispguide.com/premiumisp\.html -# ||theindependentbd.com^*/banner/ (easylistchina+easylist.txt: 45083) -.theindependentbd.com/.*/banner/ -# ||thehubsa.co.za^*/sponsor_ (easylistchina+easylist.txt: 45082) -.thehubsa.co.za/.*/sponsor_ -# ||thehindu.com/multimedia/*/sivananda_sponsorch_ (easylistchina+easylist.txt: 45081) -.thehindu.com/multimedia/.*/sivananda_sponsorch_ -# ||thehighstreetweb.com^*/banners/ (easylistchina+easylist.txt: 45080) -.thehighstreetweb.com/.*/banners/ -# ||thehealthcareblog.com/files/*/THCB-Validic-jpg-opt.jpg (easylistchina+easylist.txt: 45079) -.thehealthcareblog.com/files/.*/THCB-Validic-jpg-opt\.jpg -# ||thehealthcareblog.com/files/*/athena-300.jpg (easylistchina+easylist.txt: 45078) -.thehealthcareblog.com/files/.*/athena-300\.jpg -# ||thehealthcareblog.com/files/*/American-Resident-Project-Logo- (easylistchina+easylist.txt: 45077) -.thehealthcareblog.com/files/.*/American-Resident-Project-Logo- -# ||thefrontierpost.com/media/banner/ (easylistchina+easylist.txt: 45076) -.thefrontierpost.com/media/banner/ -# ||thefile.me^*.php?*zoneid (easylistchina+easylist.txt: 45075) -.thefile.me/.*\.php\?.*zoneid -# ||theenglishgarden.co.uk^*/bannerImage. (easylistchina+easylist.txt: 45074) -.theenglishgarden.co.uk/.*/bannerImage\. -# ||theedinburghreporter.co.uk/hmbanner/ (easylistchina+easylist.txt: 45073) -.theedinburghreporter.co.uk/hmbanner/ -# ||thedomainstat.com/filemanager/userfiles/banners/ (easylistchina+easylist.txt: 45072) -.thedomainstat.com/filemanager/userfiles/banners/ -# ||thedirectory.co.zw/banners/ (easylistchina+easylist.txt: 45071) -.thedirectory.co.zw/banners/ -# ||theday.com/assets/images/sponsorlogos/ (easylistchina+easylist.txt: 45070) -.theday.com/assets/images/sponsorlogos/ -# ||thedailystar.net^*/scbbd.gif (easylistchina+easylist.txt: 45069) -.thedailystar.net/.*/scbbd\.gif -# ||thedailystar.net^*/footer-sticky-add/ (easylistchina+easylist.txt: 45068) -.thedailystar.net/.*/footer-sticky-add/ -# ||thedailystar.net^*/aritel-logo.jpg (easylistchina+easylist.txt: 45067) -.thedailystar.net/.*/aritel-logo\.jpg -# ||thedailystar.net^*/Animation-200-X-30.gif (easylistchina+easylist.txt: 45066) -.thedailystar.net/.*/Animation-200-X-30\.gif -# ||thedailystar.net^*/400-x-120-pixel.jpg (easylistchina+easylist.txt: 45065) -.thedailystar.net/.*/400-x-120-pixel\.jpg -# ||thedailysheeple.com/images/banners/ (easylistchina+easylist.txt: 45064) -.thedailysheeple.com/images/banners/ -# ||thedailypaul.com/images/amzn- (easylistchina+easylist.txt: 45063) -.thedailypaul.com/images/amzn- -# ||thedailymeal.net^*/featured_partners/ (easylistchina+easylist.txt: 45062) -.thedailymeal.net/.*/featured_partners/ -# ||thedailymeal.com^*_sponsoredby.png (easylistchina+easylist.txt: 45061) -.thedailymeal.com/.*_sponsoredby\.png -# ||thedailymash.co.uk/templates/mashtastic/gutters/ (easylistchina+easylist.txt: 45060) -.thedailymash.co.uk/templates/mashtastic/gutters/ -# ||thedailyherald.com/images/banners/ (easylistchina+easylist.txt: 45059) -.thedailyherald.com/images/banners/ -# ||thecsuite.co.uk^*/banners/ (easylistchina+easylist.txt: 45058) -.thecsuite.co.uk/.*/banners/ -# ||thecorrsmisc.com/msb_banner.jpg (easylistchina+easylist.txt: 45057) -.thecorrsmisc.com/msb_banner\.jpg -# ||thecorrsmisc.com/brokenthread.jpg (easylistchina+easylist.txt: 45056) -.thecorrsmisc.com/brokenthread\.jpg -# ||thecorrsmisc.com/10feet_banner.gif (easylistchina+easylist.txt: 45055) -.thecorrsmisc.com/10feet_banner\.gif -# ||thecnj.com/images/hotel-banner.jpg (easylistchina+easylist.txt: 45054) -.thecnj.com/images/hotel-banner\.jpg -# ||thecitizen.co.tz^*/banners/ (easylistchina+easylist.txt: 45053) -.thecitizen.co.tz/.*/banners/ -# ||thechive.files.wordpress.com^*-wallpaper- (easylistchina+easylist.txt: 45052) -.thechive.files.wordpress.com/.*-wallpaper- -# ||thecharlottepost.com/cache/sql/fba/ (easylistchina+easylist.txt: 45051) -.thecharlottepost.com/cache/sql/fba/ -# ||thecenturion.co.za^*/banners/ (easylistchina+easylist.txt: 45050) -.thecenturion.co.za/.*/banners/ -# ||thecatholicuniverse.com^*-banner- (easylistchina+easylist.txt: 45049) -.thecatholicuniverse.com/.*-banner- -# ||thecatholicuniverse.com^*-advert- (easylistchina+easylist.txt: 45048) -.thecatholicuniverse.com/.*-advert- -# ||thecatholicuniverse.com^*-ad. (easylistchina+easylist.txt: 45047) -.thecatholicuniverse.com/.*-ad\. -# ||thebusinessdesk.com/assets/_files/banners/ (easylistchina+easylist.txt: 45046) -.thebusinessdesk.com/assets/_files/banners/ -# ||theburningplatform.com/wp-content/uploads/*_180x150.gif (easylistchina+easylist.txt: 45045) -.theburningplatform.com/wp-content/uploads/.*_180x150\.gif -# ||thebulls.co.za^*/sponsors/ (easylistchina+easylist.txt: 45044) -.thebulls.co.za/.*/sponsors/ -# ||thebull.com.au/admin/uploads/banners/ (easylistchina+easylist.txt: 45043) -.thebull.com.au/admin/uploads/banners/ -# ||theblaze.com^*_background_ (easylistchina+easylist.txt: 45042) -.theblaze.com/.*_background_ -# ||theblaze.com^*-interstitial- (easylistchina+easylist.txt: 45041) -.theblaze.com/.*-interstitial- -# ||theblaze.com^*-backgroundwide- (easylistchina+easylist.txt: 45040) -.theblaze.com/.*-backgroundwide- -# ||theblaze.com^*-background2- (easylistchina+easylist.txt: 45039) -.theblaze.com/.*-background2- -# ||theblaze.com^*-background- (easylistchina+easylist.txt: 45038) -.theblaze.com/.*-background- -# ||thebeat99.com/cmsadmin/banner/ (easylistchina+easylist.txt: 45037) -.thebeat99.com/cmsadmin/banner/ -# ||thebay.co.uk/banners/ (easylistchina+easylist.txt: 45036) -.thebay.co.uk/banners/ -# ||theattractionforums.com/images/rbsbanners/ (easylistchina+easylist.txt: 45035) -.theattractionforums.com/images/rbsbanners/ -# ||theasiantoday.com/image/banners/ (easylistchina+easylist.txt: 45034) -.theasiantoday.com/image/banners/ -# ||theartnewspaper.com/aads/ (easylistchina+easylist.txt: 45033) -.theartnewspaper.com/aads/ -# ||theaquarian.com^*/banners/ (easylistchina+easylist.txt: 45032) -.theaquarian.com/.*/banners/ -# ||theafricachannel.com^*/promos/ (easylistchina+easylist.txt: 45031) -.theafricachannel.com/.*/promos/ -# ||theactivetimes.net^*/featured_partners/ (easylistchina+easylist.txt: 45030) -.theactivetimes.net/.*/featured_partners/ -# ||the-numbers.com^*/allposters/ (easylistchina+easylist.txt: 45029) -.the-numbers.com/.*/allposters/ -# ||thaivisa.com/promotions/banners/ (easylistchina+easylist.txt: 45028) -.thaivisa.com/promotions/banners/ -# ||tfd.com^*/grammarly/ (easylistchina+easylist.txt: 45027) -.tfd.com/.*/grammarly/ -# ||textpattern.com/images/117.gif (easylistchina+easylist.txt: 45026) -.textpattern.com/images/117\.gif -# ||testseek.com/price_pricegrabber_ (easylistchina+easylist.txt: 45025) -.testseek.com/price_pricegrabber_ -# ||terafile.co/i/banners/ (easylistchina+easylist.txt: 45024) -.terafile.co/i/banners/ -# ||tentonhammer.com^*/takeovers/ (easylistchina+easylist.txt: 45023) -.tentonhammer.com/.*/takeovers/ -# ||tennisworldusa.org/banners/ (easylistchina+easylist.txt: 45022) -.tennisworldusa.org/banners/ -# ||tennischannel.com/tc-button-gif.gif (easylistchina+easylist.txt: 45021) -.tennischannel.com/tc-button-gif\.gif -# ||tennischannel.com/prud.jpg (easylistchina+easylist.txt: 45020) -.tennischannel.com/prud\.jpg -# ||tenmanga.com/files/js/site_skin.js (easylistchina+easylist.txt: 45019) -.tenmanga.com/files/js/site_skin\.js -# ||ten-tenths.com/sidebar.html (easylistchina+easylist.txt: 45017) -.ten-tenths.com/sidebar\.html -# ||templatesbox.com^*/banners/ (easylistchina+easylist.txt: 45016) -.templatesbox.com/.*/banners/ -# ||telegraphindia.com^*/hoabanner. (easylistchina+easylist.txt: 45015) -.telegraphindia.com/.*/hoabanner\. -# ||telegraphindia.com^*/banners/ (easylistchina+easylist.txt: 45014) -.telegraphindia.com/.*/banners/ -# ||telegraph.co.uk/sponsored/ (easylistchina+easylist.txt: 45013) -.telegraph.co.uk/sponsored/ -# ||telecomtiger.com^*_640x480_ (easylistchina+easylist.txt: 45011) -.telecomtiger.com/.*_640x480_ -# ||telecomtiger.com^*_250x250_ (easylistchina+easylist.txt: 45010) -.telecomtiger.com/.*_250x250_ -# ||tehrantimes.com/images/banners/ (easylistchina+easylist.txt: 45009) -.tehrantimes.com/images/banners/ -# ||teesupport.com/wp-content/themes/ts-blog/images/cp- (easylistchina+easylist.txt: 45008) -.teesupport.com/wp-content/themes/ts-blog/images/cp- -# ||teesoft.info/images/uniblue.png (easylistchina+easylist.txt: 45007) -.teesoft.info/images/uniblue\.png -# ||techtree.com^*/jquery.catfish.js (easylistchina+easylist.txt: 45006) -.techtree.com/.*/jquery\.catfish\.js -# ||techtarget.com^*/leaderboard.html (easylistchina+easylist.txt: 45005) -.techtarget.com/.*/leaderboard\.html -# ||techsupportforum.com^*/banners/ (easylistchina+easylist.txt: 45004) -.techsupportforum.com/.*/banners/ -# ||techradar.com^*/img/*_takeover_ (easylistchina+easylist.txt: 45003) -.techradar.com/.*/img/.*_takeover_ -# ||techpowerup.com/images/bnnrs/ (easylistchina+easylist.txt: 45002) -.techpowerup.com/images/bnnrs/ -# ||technomag.co.zw^*/TakeOverCampaign. (easylistchina+easylist.txt: 45001) -.technomag.co.zw/.*/TakeOverCampaign\. -# ||technewsworld.com/images/sda/ (easylistchina+easylist.txt: 45000) -.technewsworld.com/images/sda/ -# ||technewsdaily.com/crime-stats/local_crime_stats.php (easylistchina+easylist.txt: 44999) -.technewsdaily.com/crime-stats/local_crime_stats\.php -# ||techhive.com/ads/ (easylistchina+easylist.txt: 44998) -.techhive.com/ads/ -# ||techexams.net/banners/ (easylistchina+easylist.txt: 44997) -.techexams.net/banners/ -# ||techcentral.co.za^*/wallpaper- (easylistchina+easylist.txt: 44996) -.techcentral.co.za/.*/wallpaper- -# ||techcentral.co.za^*/background-manager/ (easylistchina+easylist.txt: 44995) -.techcentral.co.za/.*/background-manager/ -# ||techcentral.co.za^*-wallpaper- (easylistchina+easylist.txt: 44994) -.techcentral.co.za/.*-wallpaper- -# ||teamfourstar.com/img/918thefan.jpg (easylistchina+easylist.txt: 44993) -.teamfourstar.com/img/918thefan\.jpg -# ||tdfimg.com/go/*.html (easylistchina+easylist.txt: 44992) -.tdfimg.com/go/.*\.html -# ||tbib.org/kona/ (easylistchina+easylist.txt: 44990) -.tbib.org/kona/ -# ||taxsutra.com^*/banner/ (easylistchina+easylist.txt: 44989) -.taxsutra.com/.*/banner/ -# ||taxidrivermovie.com/style/sk-p.js (easylistchina+easylist.txt: 44988) -.taxidrivermovie.com/style/sk-p\.js -# ||tastro.org/x/ads*.php (easylistchina+easylist.txt: 44987) -.tastro.org/x/ads.*\.php -# ||targetedtopic.com^ (easylistchina+easylist.txt: 44986) -.targetedtopic.com -# ||targetedinfo.com^ (easylistchina+easylist.txt: 44985) -.targetedinfo.com -# ||tanzanite.infomine.com^ (easylistchina+easylist.txt: 44984) -.tanzanite.infomine.com -# ||tampermonkey.net/bner/ (easylistchina+easylist.txt: 44982) -.tampermonkey.net/bner/ -# ||talksport.co.uk^*/ts_takeover/ (easylistchina+easylist.txt: 44981) -.talksport.co.uk/.*/ts_takeover/ -# ||talkradioeurope.net/images/banners/ (easylistchina+easylist.txt: 44980) -.talkradioeurope.net/images/banners/ -# ||talkradioeurope.com/images/banners/ (easylistchina+easylist.txt: 44979) -.talkradioeurope.com/images/banners/ -# ||talkphotography.co.uk/images/externallogos/banners/ (easylistchina+easylist.txt: 44978) -.talkphotography.co.uk/images/externallogos/banners/ -# ||talkgold.com/bans/ (easylistchina+easylist.txt: 44977) -.talkgold.com/bans/ -# ||talkers.com/images/banners/ (easylistchina+easylist.txt: 44976) -.talkers.com/images/banners/ -# ||talkers.com/imagebase/ (easylistchina+easylist.txt: 44975) -.talkers.com/imagebase/ -# ||take40.com/images/takeover/ (easylistchina+easylist.txt: 44974) -.take40.com/images/takeover/ -# ||take40.com/css/takeover.css (easylistchina+easylist.txt: 44973) -.take40.com/css/takeover\.css -# ||taiwannews.com.tw/etn/images/banner_ (easylistchina+easylist.txt: 44972) -.taiwannews.com.tw/etn/images/banner_ -# ||taipeitimes.com/js/gad.js? (easylistchina+easylist.txt: 44971) -.taipeitimes.com/js/gad\.js\? -# ||tabloidmedia.co.za/images/signs2.swf (easylistchina+easylist.txt: 44970) -.tabloidmedia.co.za/images/signs2\.swf -# ||tabla.com.sg/SIA.jpg (easylistchina+easylist.txt: 44969) -.tabla.com.sg/SIA\.jpg -# ||sythe.org/clientscript/agold.png (easylistchina+easylist.txt: 44968) -.sythe.org/clientscript/agold\.png -# ||sythe.org/bnrs/ (easylistchina+easylist.txt: 44967) -.sythe.org/bnrs/ -# ||systemexplorer.net/sessg.php (easylistchina+easylist.txt: 44966) -.systemexplorer.net/sessg\.php -# ||sxc.hu/img/banner (easylistchina+easylist.txt: 44964) -.sxc.hu/img/banner -# ||swoknews.com/images/banners/ (easylistchina+easylist.txt: 44963) -.swoknews.com/images/banners/ -# ||swimnewslibrary.com^*_960x120.jpg (easylistchina+easylist.txt: 44962) -.swimnewslibrary.com/.*_960x120\.jpg -# ||swimnews.com^*/banner_ (easylistchina+easylist.txt: 44961) -.swimnews.com/.*/banner_ -# ||swiftco.net/banner/ (easylistchina+easylist.txt: 44960) -.swiftco.net/banner/ -# ||sweepsadvantage.com/336x230-2.php (easylistchina+easylist.txt: 44959) -.sweepsadvantage.com/336x230-2\.php -# ||swedishwire.com/images/banners/ (easylistchina+easylist.txt: 44958) -.swedishwire.com/images/banners/ -# ||swampbuggy.com/media/images/banners/ (easylistchina+easylist.txt: 44957) -.swampbuggy.com/media/images/banners/ -# ||swagmp3.com/cdn-cgi/pe/ (easylistchina+easylist.txt: 44956) -.swagmp3.com/cdn-cgi/pe/ -# ||surfthechannel.com/promo/ (easylistchina+easylist.txt: 44955) -.surfthechannel.com/promo/ -# ||superplatyna.com/automater.swf (easylistchina+easylist.txt: 44954) -.superplatyna.com/automater\.swf -# ||supermonitoring.com/images/banners/ (easylistchina+easylist.txt: 44953) -.supermonitoring.com/images/banners/ -# ||supermarket.co.za/images/advetising/ (easylistchina+easylist.txt: 44952) -.supermarket.co.za/images/advetising/ -# ||superbike-news.co.uk/absolutebm/banners/ (easylistchina+easylist.txt: 44951) -.superbike-news.co.uk/absolutebm/banners/ -# ||suntimes.com^*/banners/ (easylistchina+easylist.txt: 44950) -.suntimes.com/.*/banners/ -# ||sunshineradio.ie/images/banners/ (easylistchina+easylist.txt: 44949) -.sunshineradio.ie/images/banners/ -# ||sunriseradio.com/js/rbanners.js (easylistchina+easylist.txt: 44948) -.sunriseradio.com/js/rbanners\.js -# ||sun-fm.com/resources/creative/ (easylistchina+easylist.txt: 44947) -.sun-fm.com/resources/creative/ -# ||sulekha.com^*/sulekhabanner.aspx (easylistchina+easylist.txt: 44946) -.sulekha.com/.*/sulekhabanner\.aspx -# ||sulekha.com^*/bannerhelper.html (easylistchina+easylist.txt: 44945) -.sulekha.com/.*/bannerhelper\.html -# ||succeed.co.za^*/banner_ (easylistchina+easylist.txt: 44944) -.succeed.co.za/.*/banner_ -# ||submarinecablemap.com^*-sponsored.png (easylistchina+easylist.txt: 44942) -.submarinecablemap.com/.*-sponsored\.png -# ||stv.tv/img/player/stvplayer-sponsorstrip- (easylistchina+easylist.txt: 44941) -.stv.tv/img/player/stvplayer-sponsorstrip- -# ||stuff.tv/client/skinning/ (easylistchina+easylist.txt: 44940) -.stuff.tv/client/skinning/ -# ||stuff.co.nz/stuff/widgets/lifedirect/ (easylistchina+easylist.txt: 44938) -.stuff.co.nz/stuff/widgets/lifedirect/ -# ||stuff.co.nz/stuff/tom/mags-widget/ (easylistchina+easylist.txt: 44937) -.stuff.co.nz/stuff/tom/mags-widget/ -# ||stuff.co.nz/stuff/misc/flying-flowers/ (easylistchina+easylist.txt: 44936) -.stuff.co.nz/stuff/misc/flying-flowers/ -# ||stuff.co.nz/stuff/*banner (easylistchina+easylist.txt: 44935) -.stuff.co.nz/stuff/.*banner -# ||stuff.co.nz/interactives/stuff-bayleys/ (easylistchina+easylist.txt: 44934) -.stuff.co.nz/interactives/stuff-bayleys/ -# ||stuff.co.nz/files/NZBoatM4Gwidget.html (easylistchina+easylist.txt: 44933) -.stuff.co.nz/files/NZBoatM4Gwidget\.html -# ||stuff.co.nz/clientdev/production/iframes/ (easylistchina+easylist.txt: 44932) -.stuff.co.nz/clientdev/production/iframes/ -# ||stuff.co.nz/1361239022/107/8323107.jpg (easylistchina+easylist.txt: 44931) -.stuff.co.nz/1361239022/107/8323107\.jpg -# ||stuff.co.nz/1319769787/395/5871395.jpg (easylistchina+easylist.txt: 44930) -.stuff.co.nz/1319769787/395/5871395\.jpg -# ||student-jobs.co.uk/banner. (easylistchina+easylist.txt: 44929) -.student-jobs.co.uk/banner\. -# ||streams.tv/js/slidingbanner.js (easylistchina+easylist.txt: 44928) -.streams.tv/js/slidingbanner\.js -# ||streams.tv/js/pu.js (easylistchina+easylist.txt: 44927) -.streams.tv/js/pu\.js -# ||streams.tv/js/bn5.js (easylistchina+easylist.txt: 44926) -.streams.tv/js/bn5\.js -# ||streamguys.com^*/amazon.png (easylistchina+easylist.txt: 44925) -.streamguys.com/.*/amazon\.png -# ||streamcloud.eu/deliver.php (easylistchina+easylist.txt: 44924) -.streamcloud.eu/deliver\.php -# ||stream2watch.me/yield.html (easylistchina+easylist.txt: 44923) -.stream2watch.me/yield\.html -# ||stream2watch.me/Los_Br.png (easylistchina+easylist.txt: 44922) -.stream2watch.me/Los_Br\.png -# ||stream2watch.me/images/hd1.png (easylistchina+easylist.txt: 44921) -.stream2watch.me/images/hd1\.png -# ||stream2watch.me/ed (easylistchina+easylist.txt: 44920) -.stream2watch.me/ed -# ||stream2watch.me/eadt.php (easylistchina+easylist.txt: 44919) -.stream2watch.me/eadt\.php -# ||stream2watch.me/eadb.php (easylistchina+easylist.txt: 44918) -.stream2watch.me/eadb\.php -# ||stream2watch.me/chat1.html (easylistchina+easylist.txt: 44917) -.stream2watch.me/chat1\.html -# ||stream2watch.me/ad10.html (easylistchina+easylist.txt: 44916) -.stream2watch.me/ad10\.html -# ||stream2watch.me/ad.html (easylistchina+easylist.txt: 44915) -.stream2watch.me/ad\.html -# ||stream2watch.me/900yahoo.html (easylistchina+easylist.txt: 44913) -.stream2watch.me/900yahoo\.html -# ||stream2watch.me/900rev.html (easylistchina+easylist.txt: 44912) -.stream2watch.me/900rev\.html -# ||stream2watch.me/600pick.png (easylistchina+easylist.txt: 44911) -.stream2watch.me/600pick\.png -# ||stream2watch.co/images/hd1.png (easylistchina+easylist.txt: 44910) -.stream2watch.co/images/hd1\.png -# ||stream2watch.co/frames/ (easylistchina+easylist.txt: 44909) -.stream2watch.co/frames/ -# ||stream.heavenmedia.net^ (easylistchina+easylist.txt: 44908) -.stream.heavenmedia.net -# ||strategypage.com^*_banner (easylistchina+easylist.txt: 44907) -.strategypage.com/.*_banner -# ||storewidget.pcauthority.com.au^ (easylistchina+easylist.txt: 44906) -.storewidget.pcauthority.com.au -# ||stopstream.com/ads/ (easylistchina+easylist.txt: 44905) -.stopstream.com/ads/ -# ||stopforumspam.com/img/snelserver.swf (easylistchina+easylist.txt: 44904) -.stopforumspam.com/img/snelserver\.swf -# ||stockhouse.com^*-300x75.gif (easylistchina+easylist.txt: 44903) -.stockhouse.com/.*-300x75\.gif -# ||stlyrics.com^*_st.js (easylistchina+easylist.txt: 44902) -.stlyrics.com/.*_st\.js -# ||stlyrics.com^*_az.js (easylistchina+easylist.txt: 44901) -.stlyrics.com/.*_az\.js -# ||stltoday.com^*_sponsor.gif (easylistchina+easylist.txt: 44900) -.stltoday.com/.*_sponsor\.gif -# ||stjohntradewindsnews.com/images/banners/ (easylistchina+easylist.txt: 44899) -.stjohntradewindsnews.com/images/banners/ -# ||sticker.yadro.ru/ad/ (easylistchina+easylist.txt: 44898) -.sticker.yadro.ru/ad/ -# ||steroid.com/dsoct09.swf (easylistchina+easylist.txt: 44897) -.steroid.com/dsoct09\.swf -# ||steroid.com/banner/ (easylistchina+easylist.txt: 44896) -.steroid.com/banner/ -# ||sternfannetwork.com/forum/images/banners/ (easylistchina+easylist.txt: 44895) -.sternfannetwork.com/forum/images/banners/ -# ||steambuy.com/steambuy.gif (easylistchina+easylist.txt: 44894) -.steambuy.com/steambuy\.gif -# ||steamanalyst.com/a/www/ (easylistchina+easylist.txt: 44893) -.steamanalyst.com/a/www/ -# ||staticworld.net/images/*_pcwskin_ (easylistchina+easylist.txt: 44892) -.staticworld.net/images/.*_pcwskin_ -# ||staticneo.com/neoassets/iframes/leaderboard_bottom. (easylistchina+easylist.txt: 44891) -.staticneo.com/neoassets/iframes/leaderboard_bottom\. -# ||static.nfl.com^*-background- (easylistchina+easylist.txt: 44889) -.static.nfl.com/.*-background- -# ||static.hltv.org//images/gofastbg.png (easylistchina+easylist.txt: 44888) -# ||static.hd-trailers.net/js/javascript_*.js| (easylistchina+easylist.txt: 44887) -.static.hd-trailers.net/js/javascript_.*\.js$ -# ||static-economist.com^*/timekeeper-by-rolex-medium.png (easylistchina+easylist.txt: 44886) -.static-economist.com/.*/timekeeper-by-rolex-medium\.png -# ||startxchange.com/bnr.php (easylistchina+easylist.txt: 44885) -.startxchange.com/bnr\.php -# ||star883.org^*/sponsors. (easylistchina+easylist.txt: 44884) -.star883.org/.*/sponsors\. -# ||standardmedia.co.ke/flash/ (easylistchina+easylist.txt: 44883) -.standardmedia.co.ke/flash/ -# ||standard.net/sites/default/files/images/wallpapers/ (easylistchina+easylist.txt: 44882) -.standard.net/sites/default/files/images/wallpapers/ -# ||stagnitomedia.com/view-banner- (easylistchina+easylist.txt: 44881) -.stagnitomedia.com/view-banner- -# ||stad.com/googlefoot2.php? (easylistchina+easylist.txt: 44880) -.stad.com/googlefoot2\.php\? -# ||st701.com/stomp/banners/ (easylistchina+easylist.txt: 44879) -.st701.com/stomp/banners/ -# ||ssl-images-amazon.com/images/*/browser-scripts/da- (easylistchina+easylist.txt: 44878) -.ssl-images-amazon.com/images/.*/browser-scripts/da- -# ||srv.thespacereporter.com^ (easylistchina+easylist.txt: 44877) -.srv.thespacereporter.com -# ||squadedit.com/img/peanuts/ (easylistchina+easylist.txt: 44876) -.squadedit.com/img/peanuts/ -# ||spycss.com/images/hostgator.gif (easylistchina+easylist.txt: 44874) -.spycss.com/images/hostgator\.gif -# ||spreaker.net/spots/ (easylistchina+easylist.txt: 44873) -.spreaker.net/spots/ -# ||spotflux.com/service/partner.php (easylistchina+easylist.txt: 44872) -.spotflux.com/service/partner\.php -# ||sportcategory.org/pu/ (easylistchina+easylist.txt: 44871) -.sportcategory.org/pu/ -# ||sportcategory.com/ads/ (easylistchina+easylist.txt: 44870) -.sportcategory.com/ads/ -# ||sporcle.com/adn/yak.php? (easylistchina+easylist.txt: 44869) -.sporcle.com/adn/yak\.php\? -# ||sponsors.webosroundup.com^ (easylistchina+easylist.txt: 44868) -.sponsors.webosroundup.com -# ||sponsors.s2ki.com^ (easylistchina+easylist.txt: 44867) -.sponsors.s2ki.com -# ||spicegrenada.com/images/banners/ (easylistchina+easylist.txt: 44866) -.spicegrenada.com/images/banners/ -# ||speroforum.com/images/sponsor_ (easylistchina+easylist.txt: 44865) -.speroforum.com/images/sponsor_ -# ||speedvideo.net/img/playerFk.gif (easylistchina+easylist.txt: 44864) -.speedvideo.net/img/playerFk\.gif -# ||speedvid.net/ad.htm (easylistchina+easylist.txt: 44863) -.speedvid.net/ad\.htm -# ||speedtv.com^*/tissot-logo.png (easylistchina+easylist.txt: 44862) -.speedtv.com/.*/tissot-logo\.png -# ||speedtv.com/js/interstitial.js (easylistchina+easylist.txt: 44861) -.speedtv.com/js/interstitial\.js -# ||speedtv.com.edgesuite.net/img/monthly/takeovers/ (easylistchina+easylist.txt: 44860) -.speedtv.com.edgesuite.net/img/monthly/takeovers/ -# ||spartoo.eu/footer_tag_iframe_ (easylistchina+easylist.txt: 44856) -.spartoo.eu/footer_tag_iframe_ -# ||space.com/promo/ (easylistchina+easylist.txt: 44854) -.space.com/promo/ -# ||sowetanlive.co.za/banners/ (easylistchina+easylist.txt: 44853) -.sowetanlive.co.za/banners/ -# ||southafricab2b.co.za/banners/ (easylistchina+easylist.txt: 44852) -.southafricab2b.co.za/banners/ -# ||sourceforge.net/images/ban/ (easylistchina+easylist.txt: 44851) -.sourceforge.net/images/ban/ -# ||sourcefed.com/wp-content/uploads/*/netflix4.jpg (easylistchina+easylist.txt: 44850) -.sourcefed.com/wp-content/uploads/.*/netflix4\.jpg -# ||soundtracklyrics.net^*_az.js (easylistchina+easylist.txt: 44849) -.soundtracklyrics.net/.*_az\.js -# ||soundspheremag.com/images/banners/ (easylistchina+easylist.txt: 44848) -.soundspheremag.com/images/banners/ -# ||soundcloud.com/promoted/ (easylistchina+easylist.txt: 44847) -.soundcloud.com/promoted/ -# ||soundcloud.com/audio-ad? (easylistchina+easylist.txt: 44846) -.soundcloud.com/audio-ad\? -# ||sorcerers.net/images/aff/ (easylistchina+easylist.txt: 44845) -.sorcerers.net/images/aff/ -# ||sootoday.com/uploads/banners/ (easylistchina+easylist.txt: 44844) -.sootoday.com/uploads/banners/ -# ||songspk.name/textlinks/ (easylistchina+easylist.txt: 44843) -.songspk.name/textlinks/ -# ||songspk.name/imagepk.gif (easylistchina+easylist.txt: 44842) -.songspk.name/imagepk\.gif -# ||songspk.link/textlinks/ (easylistchina+easylist.txt: 44840) -.songspk.link/textlinks/ -# ||songs.pk/textlinks/ (easylistchina+easylist.txt: 44839) -.songs.pk/textlinks/ -# ||someecards.com^*/images/skin/ (easylistchina+easylist.txt: 44838) -.someecards.com/.*/images/skin/ -# ||solvater.com/images/hd.jpg (easylistchina+easylist.txt: 44837) -.solvater.com/images/hd\.jpg -# ||solomonstarnews.com/images/banners/ (easylistchina+easylist.txt: 44836) -.solomonstarnews.com/images/banners/ -# ||soldierx.com/system/files/images/sx-mini-1.jpg (easylistchina+easylist.txt: 44835) -.soldierx.com/system/files/images/sx-mini-1\.jpg -# ||softpedia.com/*_square. (easylistchina+easylist.txt: 44834) -.softpedia.com/.*_square\. -# ||softpedia.com/*_rect. (easylistchina+easylist.txt: 44833) -.softpedia.com/.*_rect\. -# ||softpedia.com/*_longrect. (easylistchina+easylist.txt: 44832) -.softpedia.com/.*_longrect\. -# ||softpedia-static.com/images/afg/ (easylistchina+easylist.txt: 44830) -.softpedia-static.com/images/afg/ -# ||softpedia-static.com/images/aff/ (easylistchina+easylist.txt: 44829) -.softpedia-static.com/images/aff/ -# ||softpedia-static.com/images/*.png?v (easylistchina+easylist.txt: 44828) -.softpedia-static.com/images/.*\.png\?v -# ||softpedia-static.com/images/*.jpg?v (easylistchina+easylist.txt: 44827) -.softpedia-static.com/images/.*\.jpg\?v -# ||softonic.com/specials_leaderboard/ (easylistchina+easylist.txt: 44826) -.softonic.com/specials_leaderboard/ -# ||softcab.com/google.php? (easylistchina+easylist.txt: 44825) -.softcab.com/google\.php\? -# ||socsa.org.za/images/banners/ (easylistchina+easylist.txt: 44824) -.socsa.org.za/images/banners/ -# ||sockshare.com^*_728.php (easylistchina+easylist.txt: 44823) -.sockshare.com/.*_728\.php -# ||sockshare.com/rev/ (easylistchina+easylist.txt: 44821) -.sockshare.com/rev/ -# ||sockshare.com/moo.php (easylistchina+easylist.txt: 44820) -.sockshare.com/moo\.php -# ||socialstreamingplayer.crystalmedianetworks.com//async/banner/ (easylistchina+easylist.txt: 44818) -# ||soccerway.com/img/betting/ (easylistchina+easylist.txt: 44817) -.soccerway.com/img/betting/ -# ||soccerway.com/buttons/120x90_ (easylistchina+easylist.txt: 44816) -.soccerway.com/buttons/120x90_ -# ||soccervista.com/sporting.gif (easylistchina+easylist.txt: 44815) -.soccervista.com/sporting\.gif -# ||soccervista.com/bonus.html (easylistchina+easylist.txt: 44814) -.soccervista.com/bonus\.html -# ||soccervista.com/bahforgif.gif (easylistchina+easylist.txt: 44813) -.soccervista.com/bahforgif\.gif -# ||soccerlens.com/files1/ (easylistchina+easylist.txt: 44812) -.soccerlens.com/files1/ -# ||snopes.com^*/tribalbox.asp (easylistchina+easylist.txt: 44811) -.snopes.com/.*/tribalbox\.asp -# ||snopes.com^*/casalesky.asp (easylistchina+easylist.txt: 44810) -.snopes.com/.*/casalesky\.asp -# ||snopes.com^*/casalebox.asp (easylistchina+easylist.txt: 44809) -.snopes.com/.*/casalebox\.asp -# ||snopes.com^*/casalebanner.asp (easylistchina+easylist.txt: 44808) -.snopes.com/.*/casalebanner\.asp -# ||snimg.com/image/sponsors/ (easylistchina+easylist.txt: 44806) -.snimg.com/image/sponsors/ -# ||smotrisport.com/ads/ (easylistchina+easylist.txt: 44804) -.smotrisport.com/ads/ -# ||smoothjazznetwork.com/images/buyicon.jpg (easylistchina+easylist.txt: 44803) -.smoothjazznetwork.com/images/buyicon\.jpg -# ||smn-news.com/images/flash/ (easylistchina+easylist.txt: 44802) -.smn-news.com/images/flash/ -# ||smn-news.com/images/banners/ (easylistchina+easylist.txt: 44801) -.smn-news.com/images/banners/ -# ||smile904.fm/images/banners/ (easylistchina+easylist.txt: 44800) -.smile904.fm/images/banners/ -# ||smh.com.au/images/promo/ (easylistchina+easylist.txt: 44799) -.smh.com.au/images/promo/ -# ||smh.com.au/compareandsave/ (easylistchina+easylist.txt: 44798) -.smh.com.au/compareandsave/ -# ||smashingapps.com/banner/ (easylistchina+easylist.txt: 44797) -.smashingapps.com/banner/ -# ||smartname.com/scripts/google_afd_v2.js (easylistchina+easylist.txt: 44796) -.smartname.com/scripts/google_afd_v2\.js -# ||smartmoney.net^*-sponsor- (easylistchina+easylist.txt: 44795) -.smartmoney.net/.*-sponsor- -# ||smartearningsecrets.com^*/FameThemes.png (easylistchina+easylist.txt: 44794) -.smartearningsecrets.com/.*/FameThemes\.png -# ||smartcompany.com.au/images/stories/sponsored-posts/ (easylistchina+easylist.txt: 44793) -.smartcompany.com.au/images/stories/sponsored-posts/ -# ||slyck.com/pics/*304x83_ (easylistchina+easylist.txt: 44792) -.slyck.com/pics/.*304x83_ -# ||slickvid.com/js/fun2.js (easylistchina+easylist.txt: 44791) -.slickvid.com/js/fun2\.js -# ||slickvid.com/js/fun.js (easylistchina+easylist.txt: 44790) -.slickvid.com/js/fun\.js -# ||slayradio.org/images/c64audio.com.gif (easylistchina+easylist.txt: 44789) -.slayradio.org/images/c64audio\.com\.gif -# ||slashgear.com/static/banners/ (easylistchina+easylist.txt: 44788) -.slashgear.com/static/banners/ -# ||slader.com/amazon-modal/ (easylistchina+easylist.txt: 44787) -.slader.com/amazon-modal/ -# ||slacker.com^*/getspot/?spotid= (easylistchina+easylist.txt: 44786) -.slacker.com/.*/getspot/\?spotid= -# ||slacker.com^*/ads.js (easylistchina+easylist.txt: 44785) -.slacker.com/.*/ads\.js -# ||slacker.com^*/adnetworks.swf (easylistchina+easylist.txt: 44784) -.slacker.com/.*/adnetworks\.swf -# ||skyvalleychronicle.com/999/images/ban (easylistchina+easylist.txt: 44782) -.skyvalleychronicle.com/999/images/ban -# ||skysports.com/images/skybet.png (easylistchina+easylist.txt: 44781) -.skysports.com/images/skybet\.png -# ||skynews.com.au/elements/img/sponsor/ (easylistchina+easylist.txt: 44780) -.skynews.com.au/elements/img/sponsor/ -# ||skilouise.com/images/sponsors/ (easylistchina+easylist.txt: 44779) -.skilouise.com/images/sponsors/ -# ||sk-gaming.com/www/skdelivery/ (easylistchina+easylist.txt: 44778) -.sk-gaming.com/www/skdelivery/ -# ||sk-gaming.com/image/takeover_ (easylistchina+easylist.txt: 44777) -.sk-gaming.com/image/takeover_ -# ||sk-gaming.com/image/pts/ (easylistchina+easylist.txt: 44776) -.sk-gaming.com/image/pts/ -# ||sk-gaming.com/image/acersocialw.gif (easylistchina+easylist.txt: 44775) -.sk-gaming.com/image/acersocialw\.gif -# ||siteslike.com/js/fpa.js (easylistchina+easylist.txt: 44774) -.siteslike.com/js/fpa\.js -# ||siteslike.com/images/celeb (easylistchina+easylist.txt: 44773) -.siteslike.com/images/celeb -# ||sitesfrog.com/images/banner/ (easylistchina+easylist.txt: 44772) -.sitesfrog.com/images/banner/ -# ||sitedata.info/doctor/ (easylistchina+easylist.txt: 44771) -.sitedata.info/doctor/ -# ||sisters-magazine.com^*/Banners/ (easylistchina+easylist.txt: 44770) -.sisters-magazine.com/.*/Banners/ -# ||silverdoctors.com^*/Silver-Shield-2015.jpg (easylistchina+easylist.txt: 44769) -.silverdoctors.com/.*/Silver-Shield-2015\.jpg -# ||siliconrepublic.com/fs/img/partners/ (easylistchina+easylist.txt: 44768) -.siliconrepublic.com/fs/img/partners/ -# ||sify.com^*/gads_ (easylistchina+easylist.txt: 44766) -.sify.com/.*/gads_ -# ||sify.com/images/games/gadvt/ (easylistchina+easylist.txt: 44765) -.sify.com/images/games/gadvt/ -# ||sickipedia.org/static/images/banners/ (easylistchina+easylist.txt: 44764) -.sickipedia.org/static/images/banners/ -# ||sicilianelmondo.com/banner/ (easylistchina+easylist.txt: 44763) -.sicilianelmondo.com/banner/ -# ||siberiantimes.com/upload/banners/ (easylistchina+easylist.txt: 44762) -.siberiantimes.com/upload/banners/ -# ||shtfplan.com/images/banners/ (easylistchina+easylist.txt: 44761) -.shtfplan.com/images/banners/ -# ||shroomery.org/images/www.shroomery.org.please.png (easylistchina+easylist.txt: 44760) -.shroomery.org/images/www\.shroomery\.org\.please\.png -# ||shroomery.org/images/shroomery.please.png (easylistchina+easylist.txt: 44759) -.shroomery.org/images/shroomery\.please\.png -# ||shroomery.org/bnr/ (easylistchina+easylist.txt: 44758) -.shroomery.org/bnr/ -# ||shroomery.org/bimg/ (easylistchina+easylist.txt: 44757) -.shroomery.org/bimg/ -# ||showstreet.com/banner. (easylistchina+easylist.txt: 44756) -.showstreet.com/banner\. -# ||showsport-tv.com/images/xtreamfile.jpg (easylistchina+easylist.txt: 44755) -.showsport-tv.com/images/xtreamfile\.jpg -# ||showbusinessweekly.com/imgs/hed/ (easylistchina+easylist.txt: 44754) -.showbusinessweekly.com/imgs/hed/ -# ||show-links.tv/layer.php (easylistchina+easylist.txt: 44753) -.show-links.tv/layer\.php -# ||shoutmeloud.com^*/hostgator- (easylistchina+easylist.txt: 44752) -.shoutmeloud.com/.*/hostgator- -# ||shortlist.com^*-takeover. (easylistchina+easylist.txt: 44751) -.shortlist.com/.*-takeover\. -# ||shortlist.com/resource/cache/*skin (easylistchina+easylist.txt: 44750) -.shortlist.com/resource/cache/.*skin -# ||shortcuts.search.yahoo.com^*&callback=yahoo.shortcuts.utils.setdittoadcontents& (easylistchina+easylist.txt: 44749) -.shortcuts.search.yahoo.com/.*&callback=yahoo\.shortcuts\.utils\.setdittoadcontents& -# ||shopwiki.com/banner_iframe/ (easylistchina+easylist.txt: 44748) -.shopwiki.com/banner_iframe/ -# ||shops.tgdaily.com^*&widget= (easylistchina+easylist.txt: 44747) -.shops.tgdaily.com/.*&widget= -# ||shoppingpartners2.futurenet.com^ (easylistchina+easylist.txt: 44746) -.shoppingpartners2.futurenet.com -# ||shopping.stylelist.com/widget? (easylistchina+easylist.txt: 44745) -.shopping.stylelist.com/widget\? -# ||shop.sportsmole.co.uk/pages/deeplink/ (easylistchina+easylist.txt: 44744) -.shop.sportsmole.co.uk/pages/deeplink/ -# ||shop.com/cc.class/dfp? (easylistchina+easylist.txt: 44743) -.shop.com/cc\.class/dfp\? -# ||shodanhq.com/images/s/acehackware-obscured.jpg (easylistchina+easylist.txt: 44742) -.shodanhq.com/images/s/acehackware-obscured\.jpg -# ||sherdog.com/index/load-banner? (easylistchina+easylist.txt: 44741) -.sherdog.com/index/load-banner\? -# ||shazam.com^*/stores/ (easylistchina+easylist.txt: 44740) -.shazam.com/.*/stores/ -# ||sharetera.com/promo.php? (easylistchina+easylist.txt: 44738) -.sharetera.com/promo\.php\? -# ||sharetera.com/images/icon_download.png (easylistchina+easylist.txt: 44737) -.sharetera.com/images/icon_download\.png -# ||sharesix.com/a/images/watch-bnr.gif (easylistchina+easylist.txt: 44736) -.sharesix.com/a/images/watch-bnr\.gif -# ||sharephile.com/js/pw.js (easylistchina+easylist.txt: 44735) -.sharephile.com/js/pw\.js -# ||sharebeast.com/topbar.js (easylistchina+easylist.txt: 44734) -.sharebeast.com/topbar\.js -# ||share-links.biz^*/hs.gif (easylistchina+easylist.txt: 44733) -.share-links.biz/.*/hs\.gif -# ||share-links.biz^*/hisp.gif (easylistchina+easylist.txt: 44732) -.share-links.biz/.*/hisp\.gif -# ||share-links.biz/get/cmm/ (easylistchina+easylist.txt: 44731) -.share-links.biz/get/cmm/ -# ||shanghaiexpat.com^*/wallpaper_ (easylistchina+easylist.txt: 44730) -.shanghaiexpat.com/.*/wallpaper_ -# ||shanghaidaily.com/include/bettertraffic.asp (easylistchina+easylist.txt: 44729) -.shanghaidaily.com/include/bettertraffic\.asp -# ||shadowpool.info/images/banner- (easylistchina+easylist.txt: 44728) -.shadowpool.info/images/banner- -# ||sfltimes.com/images/banners/ (easylistchina+easylist.txt: 44726) -.sfltimes.com/images/banners/ -# ||sfbaytimes.com/img-cont/banners (easylistchina+easylist.txt: 44725) -.sfbaytimes.com/img-cont/banners -# ||sexmummy.com/avnadsbanner. (easylistchina+easylist.txt: 44724) -.sexmummy.com/avnadsbanner\. -# ||sermonaudio.com/images/sponsors/ (easylistchina+easylist.txt: 44723) -.sermonaudio.com/images/sponsors/ -# ||serialzz.us/ad.js (easylistchina+easylist.txt: 44722) -.serialzz.us/ad\.js -# ||serials.ws^*/logo.gif (easylistchina+easylist.txt: 44721) -.serials.ws/.*/logo\.gif -# ||serial.sw.cracks.me.uk/img/logo.gif (easylistchina+easylist.txt: 44720) -.serial.sw.cracks.me.uk/img/logo\.gif -# ||sensongs.com/nfls/ (easylistchina+easylist.txt: 44719) -.sensongs.com/nfls/ -# ||sendspace.com^*?zone= (easylistchina+easylist.txt: 44718) -.sendspace.com/.*\?zone= -# ||sendspace.com/images/shutter.png (easylistchina+easylist.txt: 44717) -.sendspace.com/images/shutter\.png -# ||sendspace.com/defaults/framer.html?z= (easylistchina+easylist.txt: 44716) -.sendspace.com/defaults/framer\.html\?z= -# ||segmentnext.com/javascripts/interstitial.client.js (easylistchina+easylist.txt: 44715) -.segmentnext.com/javascripts/interstitial\.client\.js -# ||seeingwithsound.com/noad.gif (easylistchina+easylist.txt: 44714) -.seeingwithsound.com/noad\.gif -# ||seedboxes.cc/images/seedad.jpg (easylistchina+easylist.txt: 44713) -.seedboxes.cc/images/seedad\.jpg -# ||sedoparking.com/registrar/dopark.js (easylistchina+easylist.txt: 44712) -.sedoparking.com/registrar/dopark\.js -# ||sedoparking.com/jspartner/ (easylistchina+easylist.txt: 44711) -.sedoparking.com/jspartner/ -# ||sedoparking.com/images/js_preloader.gif (easylistchina+easylist.txt: 44710) -.sedoparking.com/images/js_preloader\.gif -# ||securitywonks.net/promotions/ (easylistchina+easylist.txt: 44708) -.securitywonks.net/promotions/ -# ||securitymattersmag.com/scripts/popup.js (easylistchina+easylist.txt: 44707) -.securitymattersmag.com/scripts/popup\.js -# ||secureupload.eu/js/poad.js (easylistchina+easylist.txt: 44706) -.secureupload.eu/js/poad\.js -# ||secureupload.eu/gfx/freedl.png (easylistchina+easylist.txt: 44705) -.secureupload.eu/gfx/freedl\.png -# ||secureupload.eu/gfx/dlbtn.png (easylistchina+easylist.txt: 44704) -.secureupload.eu/gfx/dlbtn\.png -# ||sebar.thand.info^ (easylistchina+easylist.txt: 44701) -.sebar.thand.info -# ||seatguru.com/deals? (easylistchina+easylist.txt: 44700) -.seatguru.com/deals\? -# ||searchtempest.com/clhimages/aocbanner.jpg (easylistchina+easylist.txt: 44699) -.searchtempest.com/clhimages/aocbanner\.jpg -# ||searchignited.com^ (easylistchina+easylist.txt: 44698) -.searchignited.com -# ||searchenginejournal.com^*/sponsored- (easylistchina+easylist.txt: 44697) -.searchenginejournal.com/.*/sponsored- -# ||searchenginejournal.com^*/sej-bg-takeover/ (easylistchina+easylist.txt: 44696) -.searchenginejournal.com/.*/sej-bg-takeover/ -# ||searchenginejournal.com^*-takeover- (easylistchina+easylist.txt: 44695) -.searchenginejournal.com/.*-takeover- -# ||search.triadcars.news-record.com/autos/widgets/featuredautos.php (easylistchina+easylist.txt: 44694) -.search.triadcars.news-record.com/autos/widgets/featuredautos\.php -# ||search.triadcareers.news-record.com/jobs/search/results?*&isfeatured=y& (easylistchina+easylist.txt: 44693) -.search.triadcareers.news-record.com/jobs/search/results\?.*&isfeatured=y& -# ||search.ch/htmlbanner.html (easylistchina+easylist.txt: 44692) -.search.ch/htmlbanner\.html -# ||search.ch/acs/ (easylistchina+easylist.txt: 44691) -.search.ch/acs/ -# ||search-torrent.com/images/videox/ (easylistchina+easylist.txt: 44690) -.search-torrent.com/images/videox/ -# ||sdancelive.com/images/banners/ (easylistchina+easylist.txt: 44689) -.sdancelive.com/images/banners/ -# ||scriptmafia.org/banner.gif (easylistchina+easylist.txt: 44688) -.scriptmafia.org/banner\.gif -# ||scriptcopy.com/tpl/phplb/search.jpg (easylistchina+easylist.txt: 44687) -.scriptcopy.com/tpl/phplb/search\.jpg -# ||scribol.com/broadspring.js (easylistchina+easylist.txt: 44686) -.scribol.com/broadspring\.js -# ||screenlist.ru/porevo.js (easylistchina+easylist.txt: 44685) -.screenlist.ru/porevo\.js -# ||screenlist.ru/dodopo.js (easylistchina+easylist.txt: 44684) -.screenlist.ru/dodopo\.js -# ||screencrave.com/show/ (easylistchina+easylist.txt: 44683) -.screencrave.com/show/ -# ||screenafrica.com/jquery.jcarousel.min.js (easylistchina+easylist.txt: 44682) -.screenafrica.com/jquery\.jcarousel\.min\.js -# ||screen4u.net/templates/banner.html (easylistchina+easylist.txt: 44681) -.screen4u.net/templates/banner\.html -# ||scoot.co.uk/delivery.php (easylistchina+easylist.txt: 44680) -.scoot.co.uk/delivery\.php -# ||scmagazine.com.au/Utils/SkinCSS.ashx?skinID= (easylistchina+easylist.txt: 44678) -.scmagazine.com.au/Utils/SkinCSS\.ashx\?skinID= -# ||scientopia.org/public_html/clr_lympholyte_banner.gif (easylistchina+easylist.txt: 44677) -.scientopia.org/public_html/clr_lympholyte_banner\.gif -# ||sceper.eu/wp-content/banners.min.js (easylistchina+easylist.txt: 44675) -.sceper.eu/wp-content/banners\.min\.js -# ||scenicreflections.com/dhtmlpopup/ (easylistchina+easylist.txt: 44674) -.scenicreflections.com/dhtmlpopup/ -# ||sbnation.com/campaigns_images/ (easylistchina+easylist.txt: 44673) -.sbnation.com/campaigns_images/ -# ||saysuncle.com^*ad.jpg (easylistchina+easylist.txt: 44672) -.saysuncle.com/.*ad\.jpg -# ||sayellow.com/Clients/Banners/ (easylistchina+easylist.txt: 44671) -.sayellow.com/Clients/Banners/ -# ||sawlive.tv/ad (easylistchina+easylist.txt: 44670) -.sawlive.tv/ad -# ||saveondish.com/banner3.jpg (easylistchina+easylist.txt: 44669) -.saveondish.com/banner3\.jpg -# ||saveondish.com/banner2.jpg (easylistchina+easylist.txt: 44668) -.saveondish.com/banner2\.jpg -# ||savefrom.net/img/a1d/ (easylistchina+easylist.txt: 44667) -.savefrom.net/img/a1d/ -# ||satopsites.com^*/banners/ (easylistchina+easylist.txt: 44666) -.satopsites.com/.*/banners/ -# ||satnews.com/images/MSMPromoSubSky.jpg (easylistchina+easylist.txt: 44665) -.satnews.com/images/MSMPromoSubSky\.jpg -# ||satnews.com/images/MITEQ_sky.jpg (easylistchina+easylist.txt: 44664) -.satnews.com/images/MITEQ_sky\.jpg -# ||satellites.co.uk/images/sponsors/ (easylistchina+easylist.txt: 44663) -.satellites.co.uk/images/sponsors/ -# ||satelliteguys.us/pulsepoint_ (easylistchina+easylist.txt: 44662) -.satelliteguys.us/pulsepoint_ -# ||satelliteguys.us/burst_ (easylistchina+easylist.txt: 44661) -.satelliteguys.us/burst_ -# ||sat24.com/bannerdetails.aspx? (easylistchina+easylist.txt: 44660) -.sat24.com/bannerdetails\.aspx\? -# ||sarugbymag.co.za^*-wallpaper2. (easylistchina+easylist.txt: 44659) -.sarugbymag.co.za/.*-wallpaper2\. -# ||sarasotatalkradio.com^*-200x200.jpg (easylistchina+easylist.txt: 44658) -.sarasotatalkradio.com/.*-200x200\.jpg -# ||sapeople.com/wp-content/uploads/wp-banners/ (easylistchina+easylist.txt: 44657) -.sapeople.com/wp-content/uploads/wp-banners/ -# ||samsung.com/ph/nextisnow/files/javascript.js (easylistchina+easylist.txt: 44656) -.samsung.com/ph/nextisnow/files/javascript\.js -# ||samoatimes.co.nz^*/banner468x60/ (easylistchina+easylist.txt: 44655) -.samoatimes.co.nz/.*/banner468x60/ -# ||samoaobserver.ws^*/banner/ (easylistchina+easylist.txt: 44654) -.samoaobserver.ws/.*/banner/ -# ||sameip.org/images/froghost.gif (easylistchina+easylist.txt: 44653) -.sameip.org/images/froghost\.gif -# ||salfordonline.com/sponsors2/ (easylistchina+easylist.txt: 44652) -.salfordonline.com/sponsors2/ -# ||salfordonline.com/sponsors/ (easylistchina+easylist.txt: 44651) -.salfordonline.com/sponsors/ -# ||sail-world.com/rotate/ (easylistchina+easylist.txt: 44650) -.sail-world.com/rotate/ -# ||sagoodnews.co.za/templates/ubuntu-deals/ (easylistchina+easylist.txt: 44649) -.sagoodnews.co.za/templates/ubuntu-deals/ -# ||safelinks.eu/open.js (easylistchina+easylist.txt: 44648) -.safelinks.eu/open\.js -# ||saf.org/wp-content/uploads/*/women_guns192x50.png (easylistchina+easylist.txt: 44647) -.saf.org/wp-content/uploads/.*/women_guns192x50\.png -# ||saf.org/wp-content/uploads/*/theGunMagbanner.png (easylistchina+easylist.txt: 44646) -.saf.org/wp-content/uploads/.*/theGunMagbanner\.png -# ||sacommercialpropnews.co.za/files/banners/ (easylistchina+easylist.txt: 44645) -.sacommercialpropnews.co.za/files/banners/ -# ||sacbee.com/static/dealsaver/ (easylistchina+easylist.txt: 44644) -.sacbee.com/static/dealsaver/ -# ||saabsunited.com/wp-content/uploads/werbung- (easylistchina+easylist.txt: 44643) -.saabsunited.com/wp-content/uploads/werbung- -# ||saabsunited.com/wp-content/uploads/USACANADA.jpg (easylistchina+easylist.txt: 44642) -.saabsunited.com/wp-content/uploads/USACANADA\.jpg -# ||saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC.gif (easylistchina+easylist.txt: 44641) -.saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC\.gif -# ||saabsunited.com/wp-content/uploads/rbm21.jpg (easylistchina+easylist.txt: 44640) -.saabsunited.com/wp-content/uploads/rbm21\.jpg -# ||saabsunited.com/wp-content/uploads/ban- (easylistchina+easylist.txt: 44639) -.saabsunited.com/wp-content/uploads/ban- -# ||saabsunited.com/wp-content/uploads/180x460_ (easylistchina+easylist.txt: 44638) -.saabsunited.com/wp-content/uploads/180x460_ -# ||saabsunited.com/wp-content/uploads/*_banner_ (easylistchina+easylist.txt: 44637) -.saabsunited.com/wp-content/uploads/.*_banner_ -# ||saabsunited.com/wp-content/uploads/*-banner. (easylistchina+easylist.txt: 44636) -.saabsunited.com/wp-content/uploads/.*-banner\. -# ||saabsunited.com/wp-content/uploads/*-banner- (easylistchina+easylist.txt: 44635) -.saabsunited.com/wp-content/uploads/.*-banner- -# ||s.yimg.com^*/audience/ (easylistchina+easylist.txt: 44634) -.s.yimg.com/.*/audience/ -# ||s.imwx.com^*/wx-a21-plugthis.js (easylistchina+easylist.txt: 44633) -.s.imwx.com/.*/wx-a21-plugthis\.js -# ||rustourismnews.com/images/banners/ (easylistchina+easylist.txt: 44632) -.rustourismnews.com/images/banners/ -# ||russianireland.com/images/banners/ (easylistchina+easylist.txt: 44631) -.russianireland.com/images/banners/ -# ||runt-of-the-web.com/wrap1.jpg (easylistchina+easylist.txt: 44630) -.runt-of-the-web.com/wrap1\.jpg -# ||rugbyweek.com^*/sponsors/ (easylistchina+easylist.txt: 44629) -.rugbyweek.com/.*/sponsors/ -# ||rtcc.org/systems/sponsors/ (easylistchina+easylist.txt: 44627) -.rtcc.org/systems/sponsors/ -# ||rt.com/static/img/banners/ (easylistchina+easylist.txt: 44626) -.rt.com/static/img/banners/ -# ||rt.com/banner/ (easylistchina+easylist.txt: 44625) -.rt.com/banner/ -# ||rss2search.com/delivery/ (easylistchina+easylist.txt: 44624) -.rss2search.com/delivery/ -# ||rsbuddy.com/campaign/ (easylistchina+easylist.txt: 44623) -.rsbuddy.com/campaign/ -# ||rpt.anchorfree.net^ (easylistchina+easylist.txt: 44622) -.rpt.anchorfree.net -# ||rpgwatch.com^*/banner/ (easylistchina+easylist.txt: 44621) -.rpgwatch.com/.*/banner/ -# ||routesonline.com/banner/ (easylistchina+easylist.txt: 44620) -.routesonline.com/banner/ -# ||routes-news.com/images/banners/ (easylistchina+easylist.txt: 44619) -.routes-news.com/images/banners/ -# ||routerpasswords.com/routers.jpg (easylistchina+easylist.txt: 44618) -.routerpasswords.com/routers\.jpg -# ||rough-polished.com/upload/bx/ (easylistchina+easylist.txt: 44617) -.rough-polished.com/upload/bx/ -# ||roseindia.net^*/banners/ (easylistchina+easylist.txt: 44615) -.roseindia.net/.*/banners/ -# ||rootsweb.com/js/o*.js (easylistchina+easylist.txt: 44614) -.rootsweb.com/js/o.*\.js -# ||romhustler.net/square.js (easylistchina+easylist.txt: 44613) -.romhustler.net/square\.js -# ||rom-freaks.net/popup.php (easylistchina+easylist.txt: 44612) -.rom-freaks.net/popup\.php -# ||rollingstone.co.za/images/banners/ (easylistchina+easylist.txt: 44611) -.rollingstone.co.za/images/banners/ -# ||rok.com.com/rok-get? (easylistchina+easylist.txt: 44610) -.rok.com.com/rok-get\? -# ||rojadirecta.ge^*/pu.js (easylistchina+easylist.txt: 44609) -.rojadirecta.ge/.*/pu\.js -# ||roia.com^ (easylistchina+easylist.txt: 44608) -.roia.com -# ||rodfile.com/images/esr.gif (easylistchina+easylist.txt: 44607) -.rodfile.com/images/esr\.gif -# ||rockthebells.net/images/bot_banner_ (easylistchina+easylist.txt: 44605) -.rockthebells.net/images/bot_banner_ -# ||rockthebells.net/images/banners/ (easylistchina+easylist.txt: 44604) -.rockthebells.net/images/banners/ -# ||rocktelevision.com^*_banner_ (easylistchina+easylist.txt: 44603) -.rocktelevision.com/.*_banner_ -# ||rocksound.tv/images/uploads/*-rocksound-1920x1000_ (easylistchina+easylist.txt: 44602) -.rocksound.tv/images/uploads/.*-rocksound-1920x1000_ -# ||rockettheme.com/aff/ (easylistchina+easylist.txt: 44601) -.rockettheme.com/aff/ -# ||robhasawebsite.com^*/shop-amazon. (easylistchina+easylist.txt: 44600) -.robhasawebsite.com/.*/shop-amazon\. -# ||robhasawebsite.com^*/amazon- (easylistchina+easylist.txt: 44599) -.robhasawebsite.com/.*/amazon- -# ||rlsbb.com/wp-content/uploads/smoke.jpg (easylistchina+easylist.txt: 44598) -.rlsbb.com/wp-content/uploads/smoke\.jpg -# ||rlsbb.com/wp-content/uploads/izilol.gif (easylistchina+easylist.txt: 44597) -.rlsbb.com/wp-content/uploads/izilol\.gif -# ||rislivetv.com/ad*.php (easylistchina+easylist.txt: 44596) -.rislivetv.com/ad.*\.php -# ||ringostrack.com^*/amazon-buy.gif (easylistchina+easylist.txt: 44595) -.ringostrack.com/.*/amazon-buy\.gif -# ||rightsidenews.com/images/banners/ (easylistchina+easylist.txt: 44594) -.rightsidenews.com/images/banners/ -# ||riderfans.com/other/ (easylistchina+easylist.txt: 44593) -.riderfans.com/other/ -# ||richmedia.yimg.com^ (easylistchina+easylist.txt: 44592) -.richmedia.yimg.com -# ||richardroeper.com/assets/banner/ (easylistchina+easylist.txt: 44591) -.richardroeper.com/assets/banner/ -# ||rghost.ru/download/a/*/banner_download_ (easylistchina+easylist.txt: 44590) -.rghost.ru/download/a/.*/banner_download_ -# ||rfu.com/js/jquery.jcarousel.js (easylistchina+easylist.txt: 44589) -.rfu.com/js/jquery\.jcarousel\.js -# ||revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2.gif (easylistchina+easylist.txt: 44588) -.revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2\.gif -# ||reviewcentre.com/cinergy-adv.php (easylistchina+easylist.txt: 44587) -.reviewcentre.com/cinergy-adv\.php -# ||reuters.com/reuters_gpt_bootstrap*.js (easylistchina+easylist.txt: 44586) -.reuters.com/reuters_gpt_bootstrap.*\.js -# ||reuters.com/reuters_bootstrap.js (easylistchina+easylist.txt: 44585) -.reuters.com/reuters_bootstrap\.js -# ||retrevo.com^*/pcwframe.jsp? (easylistchina+easylist.txt: 44584) -.retrevo.com/.*/pcwframe\.jsp\? -# ||retrevo.com/m/google?q= (easylistchina+easylist.txt: 44583) -.retrevo.com/m/google\?q= -# ||replacementdocs.com^*/popup.js (easylistchina+easylist.txt: 44582) -.replacementdocs.com/.*/popup\.js -# ||relink.us/js/ibunkerslide.js (easylistchina+easylist.txt: 44581) -.relink.us/js/ibunkerslide\.js -# ||releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40.jpg (easylistchina+easylist.txt: 44580) -.releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40\.jpg -# ||releaselog.net/468.htm (easylistchina+easylist.txt: 44579) -.releaselog.net/468\.htm -# ||rejournal.com^*/images/homepage/ (easylistchina+easylist.txt: 44578) -.rejournal.com/.*/images/homepage/ -# ||rejournal.com/users/blinks/ (easylistchina+easylist.txt: 44577) -.rejournal.com/users/blinks/ -# ||rejournal.com/images/banners/ (easylistchina+easylist.txt: 44576) -.rejournal.com/images/banners/ -# ||regmender.com^*/banner336x280. (easylistchina+easylist.txt: 44574) -.regmender.com/.*/banner336x280\. -# ||reelzchannel.com^*-skin- (easylistchina+easylist.txt: 44573) -.reelzchannel.com/.*-skin- -# ||redvase.bravenet.com^ (easylistchina+easylist.txt: 44572) -.redvase.bravenet.com -# ||redpepper.org.uk/ad- (easylistchina+easylist.txt: 44571) -.redpepper.org.uk/ad- -# ||rednationonline.ca/Portals/0/derbystar_leaderboard.jpg (easylistchina+easylist.txt: 44570) -.rednationonline.ca/Portals/0/derbystar_leaderboard\.jpg -# ||reddit.com^*_sponsor.png? (easylistchina+easylist.txt: 44568) -.reddit.com/.*_sponsor\.png\? -# ||red.bayimg.net^ (easylistchina+easylist.txt: 44567) -.red.bayimg.net -# ||reason.org/UserFiles/web-fin1.gif (easylistchina+easylist.txt: 44566) -.reason.org/UserFiles/web-fin1\.gif -# ||realitytvworld.com/includes/rtvw-jscript.js (easylistchina+easylist.txt: 44565) -.realitytvworld.com/includes/rtvw-jscript\.js -# ||realitytvworld.com/burst.js (easylistchina+easylist.txt: 44564) -.realitytvworld.com/burst\.js -# ||readingeagle.com/lib/dailysponser.js (easylistchina+easylist.txt: 44563) -.readingeagle.com/lib/dailysponser\.js -# ||rc.feedsportal.com/r/*/rc.img (easylistchina+easylist.txt: 44562) -.rc.feedsportal.com/r/.*/rc\.img -# ||raysindex.com/wp-content/uploads/*/dolmansept2012flash.swf (easylistchina+easylist.txt: 44561) -.raysindex.com/wp-content/uploads/.*/dolmansept2012flash\.swf -# ||rawstory.com^*/ads/ (easylistchina+easylist.txt: 44560) -.rawstory.com/.*/ads/ -# ||rawstory.com^*.php?code=bottom (easylistchina+easylist.txt: 44559) -.rawstory.com/.*\.php\?code=bottom -# ||rawstory.com/givememyrawjuggler.php (easylistchina+easylist.txt: 44558) -.rawstory.com/givememyrawjuggler\.php -# ||rawstory.com/givememyrawgfpdirect.php? (easylistchina+easylist.txt: 44557) -.rawstory.com/givememyrawgfpdirect\.php\? -# ||rawstory.com/givememyrawgfp.php? (easylistchina+easylist.txt: 44556) -.rawstory.com/givememyrawgfp\.php\? -# ||ravchat.com/img/reversephone.gif (easylistchina+easylist.txt: 44555) -.ravchat.com/img/reversephone\.gif -# ||ratio-magazine.com/images/banners/ (easylistchina+easylist.txt: 44554) -.ratio-magazine.com/images/banners/ -# ||rapidvideo.tv/images/pl.jpg (easylistchina+easylist.txt: 44553) -.rapidvideo.tv/images/pl\.jpg -# ||rapidvideo.org/images/pl_box_rapid.jpg (easylistchina+easylist.txt: 44552) -.rapidvideo.org/images/pl_box_rapid\.jpg -# ||rapidtvnews.com^*BannerAd. (easylistchina+easylist.txt: 44551) -.rapidtvnews.com/.*BannerAd\. -# ||rapidsafe.de/eislogo.gif (easylistchina+easylist.txt: 44549) -.rapidsafe.de/eislogo\.gif -# ||rapidlibrary.com/banner_*.png (easylistchina+easylist.txt: 44548) -.rapidlibrary.com/banner_.*\.png -# ||rapidlibrary.com/baner*.png (easylistchina+easylist.txt: 44547) -.rapidlibrary.com/baner.*\.png -# ||rapidgator.net/images/pics/button.png (easylistchina+easylist.txt: 44546) -.rapidgator.net/images/pics/button\.png -# ||rapidgator.net/images/banners/ (easylistchina+easylist.txt: 44545) -.rapidgator.net/images/banners/ -# ||rapidgamez.com/images/ (easylistchina+easylist.txt: 44544) -.rapidgamez.com/images/ -# ||rapidfiledownload.com^*/btn-input-download.png (easylistchina+easylist.txt: 44543) -.rapidfiledownload.com/.*/btn-input-download\.png -# ||rainbowpages.lk/images/banners/ (easylistchina+easylist.txt: 44542) -.rainbowpages.lk/images/banners/ -# ||ragezone.com/output.php/ (easylistchina+easylist.txt: 44541) -.ragezone.com/output\.php/ -# ||radiozindagi.com/sponsors/ (easylistchina+easylist.txt: 44539) -.radiozindagi.com/sponsors/ -# ||radiowavesforum.com/rw/radioapp.gif (easylistchina+easylist.txt: 44538) -.radiowavesforum.com/rw/radioapp\.gif -# ||radiowave.com.na/images/banners/ (easylistchina+easylist.txt: 44537) -.radiowave.com.na/images/banners/ -# ||radiotoday.co.uk/a/ (easylistchina+easylist.txt: 44536) -.radiotoday.co.uk/a/ -# ||radioreference.com^*_banner_ (easylistchina+easylist.txt: 44535) -.radioreference.com/.*_banner_ -# ||radioreference.com/i/p4/tp/smPortalBanner.gif (easylistchina+easylist.txt: 44534) -.radioreference.com/i/p4/tp/smPortalBanner\.gif -# ||radioloyalty.com/newPlayer/loadbanner.html? (easylistchina+easylist.txt: 44533) -.radioloyalty.com/newPlayer/loadbanner\.html\? -# ||radioinfo.com^*/575x112- (easylistchina+easylist.txt: 44532) -.radioinfo.com/.*/575x112- -# ||radioinfo.com/270x270/ (easylistchina+easylist.txt: 44531) -.radioinfo.com/270x270/ -# ||radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg.swf (easylistchina+easylist.txt: 44530) -.radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg\.swf -# ||radioasiafm.com^*-300x250. (easylistchina+easylist.txt: 44529) -.radioasiafm.com/.*-300x250\. -# ||radio786.co.za/images/banners/ (easylistchina+easylist.txt: 44528) -.radio786.co.za/images/banners/ -# ||radio4fm.com/promotion/ (easylistchina+easylist.txt: 44527) -.radio4fm.com/promotion/ -# ||radio4fm.com/images/background/ (easylistchina+easylist.txt: 44526) -.radio4fm.com/images/background/ -# ||radio.com/rotatable? (easylistchina+easylist.txt: 44525) -.radio.com/rotatable\? -# ||radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr.swf? (easylistchina+easylist.txt: 44524) -.radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr\.swf\? -# ||rad.msn.com^ (easylistchina+easylist.txt: 44523) -.rad.msn.com -# ||rad.microsoft.com^ (easylistchina+easylist.txt: 44522) -.rad.microsoft.com -# ||racinguk.com/images/site/foot_ (easylistchina+easylist.txt: 44519) -.racinguk.com/images/site/foot_ -# ||racingpost.com^*_607x30.2.0.gif (easylistchina+easylist.txt: 44518) -.racingpost.com/.*_607x30\.2\.0\.gif -# ||racingpost.com/ads/ (easylistchina+easylist.txt: 44517) -.racingpost.com/ads/ -# ||race-dezert.com^*/sponsor- (easylistchina+easylist.txt: 44516) -.race-dezert.com/.*/sponsor- -# ||race-dezert.com/images/wrap- (easylistchina+easylist.txt: 44515) -.race-dezert.com/images/wrap- -# ||quoteland.com/images/banner2.swf (easylistchina+easylist.txt: 44514) -.quoteland.com/images/banner2\.swf -# ||quicksilverscreen.com/img/moviesforfree.jpg (easylistchina+easylist.txt: 44513) -.quicksilverscreen.com/img/moviesforfree\.jpg -# ||quickmeme.com/media/rostile (easylistchina+easylist.txt: 44511) -.quickmeme.com/media/rostile -# ||queenshare.com/popx.js (easylistchina+easylist.txt: 44510) -.queenshare.com/popx\.js -# ||qualityhealth.com^*/banner.jsp? (easylistchina+easylist.txt: 44509) -.qualityhealth.com/.*/banner\.jsp\? -# ||qrz.com/pix/*.gif (easylistchina+easylist.txt: 44508) -.qrz.com/pix/.*\.gif -# ||qiksilver.net^*/banners/ (easylistchina+easylist.txt: 44507) -.qiksilver.net/.*/banners/ -# ||qatar-tribune.com/images/banners/ (easylistchina+easylist.txt: 44506) -.qatar-tribune.com/images/banners/ -# ||q1075.com/images/banners/ (easylistchina+easylist.txt: 44505) -.q1075.com/images/banners/ -# ||pv-tech.org/images/suntech_m2fbblew.png (easylistchina+easylist.txt: 44504) -.pv-tech.org/images/suntech_m2fbblew\.png -# ||pv-tech.org/images/footer_logos/ (easylistchina+easylist.txt: 44503) -.pv-tech.org/images/footer_logos/ -# ||putlocker.mn^*/stream-hd.gif (easylistchina+easylist.txt: 44502) -.putlocker.mn/.*/stream-hd\.gif -# ||putlocker.mn^*/download.gif (easylistchina+easylist.txt: 44501) -.putlocker.mn/.*/download\.gif -# ||putlocker.is/images/banner (easylistchina+easylist.txt: 44500) -.putlocker.is/images/banner -# ||pushsquare.com/wp-content/themes/pushsquare/skins/ (easylistchina+easylist.txt: 44499) -.pushsquare.com/wp-content/themes/pushsquare/skins/ -# ||punksbusted.com^*/clanwarz-portal.jpg (easylistchina+easylist.txt: 44498) -.punksbusted.com/.*/clanwarz-portal\.jpg -# ||punksbusted.com/images/ventrilo/ (easylistchina+easylist.txt: 44497) -.punksbusted.com/images/ventrilo/ -# ||punchng.com^*/wp-banners/ (easylistchina+easylist.txt: 44496) -.punchng.com/.*/wp-banners/ -# ||punch.cdn.ng^*/wp-banners/ (easylistchina+easylist.txt: 44495) -.punch.cdn.ng/.*/wp-banners/ -# ||pumasrugbyunion.com/images/sponsors/ (easylistchina+easylist.txt: 44494) -.pumasrugbyunion.com/images/sponsors/ -# ||pulsetv.com/banner/ (easylistchina+easylist.txt: 44493) -.pulsetv.com/banner/ -# ||publicservice.co.uk^*/spons_ (easylistchina+easylist.txt: 44492) -.publicservice.co.uk/.*/spons_ -# ||publicradio.org^*/banners/ (easylistchina+easylist.txt: 44491) -.publicradio.org/.*/banners/ -# ||publicityupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 44490) -.publicityupdate.co.za/temp/banner_ -# ||publichd.eu/images/directdownload.png (easylistchina+easylist.txt: 44489) -.publichd.eu/images/directdownload\.png -# ||publichd.eu/images/direct.download.ico (easylistchina+easylist.txt: 44488) -.publichd.eu/images/direct\.download\.ico -# ||ptf.com/js/rc_banner.js (easylistchina+easylist.txt: 44487) -.ptf.com/js/rc_banner\.js -# ||ptf.com/js/ptf_rc_*.js (easylistchina+easylist.txt: 44486) -.ptf.com/js/ptf_rc_.*\.js -# ||ptf.com/js/fdm_banner.js (easylistchina+easylist.txt: 44485) -.ptf.com/js/fdm_banner\.js -# ||ptf.com/fdm_frame_ (easylistchina+easylist.txt: 44484) -.ptf.com/fdm_frame_ -# ||psgroove.com/images/*.jpg| (easylistchina+easylist.txt: 44483) -.psgroove.com/images/.*\.jpg$ -# ||ps3crunch.net/forum/images/gamers/ (easylistchina+easylist.txt: 44482) -.ps3crunch.net/forum/images/gamers/ -# ||proxycape.com/blah.js (easylistchina+easylist.txt: 44481) -.proxycape.com/blah\.js -# ||proxy.org/ah.html (easylistchina+easylist.txt: 44480) -.proxy.org/ah\.html -# ||proxy.org/af.html (easylistchina+easylist.txt: 44479) -.proxy.org/af\.html -# ||proxy-list.org/img/isellsite.gif (easylistchina+easylist.txt: 44478) -.proxy-list.org/img/isellsite\.gif -# ||propertyeu.info/peu_storage_banners/ (easylistchina+easylist.txt: 44477) -.propertyeu.info/peu_storage_banners/ -# ||propakistani.pk/wp-content/themes/propakistani/images/776.jpg (easylistchina+easylist.txt: 44476) -.propakistani.pk/wp-content/themes/propakistani/images/776\.jpg -# ||propakistani.pk/wp-content/*/warid.jpg (easylistchina+easylist.txt: 44475) -.propakistani.pk/wp-content/.*/warid\.jpg -# ||propakistani.pk/data/zong.html (easylistchina+easylist.txt: 44474) -.propakistani.pk/data/zong\.html -# ||propakistani.pk/data/warid_top1.html (easylistchina+easylist.txt: 44473) -.propakistani.pk/data/warid_top1\.html -# ||promo.fileforum.com^ (easylistchina+easylist.txt: 44472) -.promo.fileforum.com -# ||projectfreetv.ch/adblock/ (easylistchina+easylist.txt: 44470) -.projectfreetv.ch/adblock/ -# ||project-for-sell.com/_google.php (easylistchina+easylist.txt: 44469) -.project-for-sell.com/_google\.php -# ||professionalmuscle.com/PL2.gif (easylistchina+easylist.txt: 44468) -.professionalmuscle.com/PL2\.gif -# ||professionalmuscle.com/phil1.jpg (easylistchina+easylist.txt: 44467) -.professionalmuscle.com/phil1\.jpg -# ||professionalmuscle.com/featured-concreter.jpg (easylistchina+easylist.txt: 44466) -.professionalmuscle.com/featured-concreter\.jpg -# ||professionalmuscle.com/220x105%20ver2.gif (easylistchina+easylist.txt: 44465) -.professionalmuscle.com/220x105%20ver2\.gif -# ||professionalmuscle.com/*banner (easylistchina+easylist.txt: 44464) -.professionalmuscle.com/.*banner -# ||pro-clockers.com/images/banners/ (easylistchina+easylist.txt: 44463) -.pro-clockers.com/images/banners/ -# ||privateproperty.co.za^*/siteTakeover/ (easylistchina+easylist.txt: 44462) -.privateproperty.co.za/.*/siteTakeover/ -# ||prisonplanet.com^*banner (easylistchina+easylist.txt: 44461) -.prisonplanet.com/.*banner -# ||printfriendly.com/a/lijit/ (easylistchina+easylist.txt: 44460) -.printfriendly.com/a/lijit/ -# ||primewire.in/load_link.php? (easylistchina+easylist.txt: 44459) -.primewire.in/load_link\.php\? -# ||primewire.guru/pagetop.php (easylistchina+easylist.txt: 44458) -.primewire.guru/pagetop\.php -# ||primewire.guru/load_link.php? (easylistchina+easylist.txt: 44457) -.primewire.guru/load_link\.php\? -# ||primewire.ag/load_link.php? (easylistchina+easylist.txt: 44456) -.primewire.ag/load_link\.php\? -# ||primewire.ag/js/jquery*.js (easylistchina+easylist.txt: 44455) -.primewire.ag/js/jquery.*\.js -# ||primenews.com.bd/add/ (easylistchina+easylist.txt: 44453) -.primenews.com.bd/add/ -# ||pressrepublican.com/wallpaper/ (easylistchina+easylist.txt: 44452) -.pressrepublican.com/wallpaper/ -# ||prerollads.ign.com^ (easylistchina+easylist.txt: 44451) -.prerollads.ign.com -# ||prepperwebsite.com/wp-content/uploads/*_250x250.jpg (easylistchina+easylist.txt: 44450) -.prepperwebsite.com/wp-content/uploads/.*_250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*_250x150.png (easylistchina+easylist.txt: 44449) -.prepperwebsite.com/wp-content/uploads/.*_250x150\.png -# ||prepperwebsite.com/wp-content/uploads/*/tsepulveda-1.jpg (easylistchina+easylist.txt: 44448) -.prepperwebsite.com/wp-content/uploads/.*/tsepulveda-1\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/PW-Ad.jpg (easylistchina+easylist.txt: 44447) -.prepperwebsite.com/wp-content/uploads/.*/PW-Ad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/jihad.jpg (easylistchina+easylist.txt: 44446) -.prepperwebsite.com/wp-content/uploads/.*/jihad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/FME-Red-CAP.jpg (easylistchina+easylist.txt: 44445) -.prepperwebsite.com/wp-content/uploads/.*/FME-Red-CAP\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/DeadwoodStove-PW.gif (easylistchina+easylist.txt: 44444) -.prepperwebsite.com/wp-content/uploads/.*/DeadwoodStove-PW\.gif -# ||prepperwebsite.com/wp-content/uploads/*/apmgoldmembership250x250.jpg (easylistchina+easylist.txt: 44443) -.prepperwebsite.com/wp-content/uploads/.*/apmgoldmembership250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/250x250- (easylistchina+easylist.txt: 44442) -.prepperwebsite.com/wp-content/uploads/.*/250x250- -# ||prepperwebsite.com/wp-content/uploads/*-250x250.jpg (easylistchina+easylist.txt: 44441) -.prepperwebsite.com/wp-content/uploads/.*-250x250\.jpg -# ||preppersmallbiz.com/wp-content/uploads/*/PSB-Support.jpg (easylistchina+easylist.txt: 44440) -.preppersmallbiz.com/wp-content/uploads/.*/PSB-Support\.jpg -# ||premierleague.com^*/sponsor_ (easylistchina+easylist.txt: 44439) -.premierleague.com/.*/sponsor_ -# ||prehackshub.com/js/popup-wide.js (easylistchina+easylist.txt: 44438) -.prehackshub.com/js/popup-wide\.js -# ||preev.com/ad| (easylistchina+easylist.txt: 44437) -.preev.com/ad$ -# ||preev.com/ads| (easylistchina+easylist.txt: 44436) -.preev.com/ads$ -# ||praguepost.com/images/banners/ (easylistchina+easylist.txt: 44435) -.praguepost.com/images/banners/ -# ||pr0gramm.com/wm/ (easylistchina+easylist.txt: 44434) -.pr0gramm.com/wm/ -# ||pqarchiver.com^*/utilstextlinksxml.js (easylistchina+easylist.txt: 44433) -.pqarchiver.com/.*/utilstextlinksxml\.js -# ||powvideo.net/ban/ (easylistchina+easylist.txt: 44432) -.powvideo.net/ban/ -# ||powerbot.org^*/ads/ (easylistchina+easylist.txt: 44431) -.powerbot.org/.*/ads/ -# ||power977.com/images/banners/ (easylistchina+easylist.txt: 44430) -.power977.com/images/banners/ -# ||power1035fm.com^*/banners/ (easylistchina+easylist.txt: 44429) -.power1035fm.com/.*/banners/ -# ||poststar.com^*/promos/ (easylistchina+easylist.txt: 44428) -.poststar.com/.*/promos/ -# ||poststar.com^*/dealwidget.php? (easylistchina+easylist.txt: 44427) -.poststar.com/.*/dealwidget\.php\? -# ||poststar.com^*/ad_ (easylistchina+easylist.txt: 44426) -.poststar.com/.*/ad_ -# ||postcrescent.com^*/promos/ (easylistchina+easylist.txt: 44424) -.postcrescent.com/.*/promos/ -# ||postadsnow.com/panbanners/ (easylistchina+easylist.txt: 44423) -.postadsnow.com/panbanners/ -# ||positivehealth.com^*/TopicbannerAvatar/ (easylistchina+easylist.txt: 44422) -.positivehealth.com/.*/TopicbannerAvatar/ -# ||positivehealth.com^*/BannerAvatar/ (easylistchina+easylist.txt: 44421) -.positivehealth.com/.*/BannerAvatar/ -# ||porttechnology.org/images/partners/ (easylistchina+easylist.txt: 44420) -.porttechnology.org/images/partners/ -# ||portmiamiwebcam.com/images/sling_ (easylistchina+easylist.txt: 44419) -.portmiamiwebcam.com/images/sling_ -# ||portlanddailysun.me/images/banners/ (easylistchina+easylist.txt: 44418) -.portlanddailysun.me/images/banners/ -# ||portevergladeswebcam.com^*-WebCamBannerFall_ (easylistchina+easylist.txt: 44417) -.portevergladeswebcam.com/.*-WebCamBannerFall_ -# ||portevergladeswebcam.com^*-Ad.jpg (easylistchina+easylist.txt: 44416) -.portevergladeswebcam.com/.*-Ad\.jpg -# ||portcanaveralwebcam.com/images/ad_ (easylistchina+easylist.txt: 44415) -.portcanaveralwebcam.com/images/ad_ -# ||pornevo.com/events_ (easylistchina+easylist.txt: 44414) -.pornevo.com/events_ -# ||pop-over.powered-by.justplayzone.com^ (easylistchina+easylist.txt: 44413) -.pop-over.powered-by.justplayzone.com -# ||pons.eu^*/lingeniobanner.swf (easylistchina+easylist.txt: 44412) -.pons.eu/.*/lingeniobanner\.swf -# ||politicususa.com/psa/ (easylistchina+easylist.txt: 44410) -.politicususa.com/psa/ -# ||politico.com^*_skin_ (easylistchina+easylist.txt: 44409) -.politico.com/.*_skin_ -# ||politicalwire.com/images/*-sponsor.jpg (easylistchina+easylist.txt: 44408) -.politicalwire.com/images/.*-sponsor\.jpg -# ||policeprofessional.com/files/pictures- (easylistchina+easylist.txt: 44407) -.policeprofessional.com/files/pictures- -# ||policeprofessional.com/files/banners- (easylistchina+easylist.txt: 44406) -.policeprofessional.com/files/banners- -# ||police-car-photos.com/pictures/sponsors/ (easylistchina+easylist.txt: 44405) -.police-car-photos.com/pictures/sponsors/ -# ||pokernews.com/preroll.php? (easylistchina+easylist.txt: 44404) -.pokernews.com/preroll\.php\? -# ||pokernews.com/b/ (easylistchina+easylist.txt: 44403) -.pokernews.com/b/ -# ||pogo.com/v/*/js/ad.js (easylistchina+easylist.txt: 44402) -.pogo.com/v/.*/js/ad\.js -# ||pocketpcaddict.com/forums/images/banners/ (easylistchina+easylist.txt: 44401) -.pocketpcaddict.com/forums/images/banners/ -# ||pocket-lint.com/images/bytemarkad. (easylistchina+easylist.txt: 44400) -.pocket-lint.com/images/bytemarkad\. -# ||pmm.people.com.cn^ (easylistchina+easylist.txt: 44399) -.pmm.people.com.cn -# ||plundermedia.com*rectangle- (easylistchina+easylist.txt: 44398) -.plundermedia.com*./.*rectangle- -.plundermedia.com*rectangle-*. -# ||plunderguide.com/rectangle2.html (easylistchina+easylist.txt: 44397) -.plunderguide.com/rectangle2\.html -# ||plunderguide.com/leaderboard-gor.html (easylistchina+easylist.txt: 44396) -.plunderguide.com/leaderboard-gor\.html -# ||plsn.com/images/PLSN-Bg1.jpg (easylistchina+easylist.txt: 44395) -.plsn.com/images/PLSN-Bg1\.jpg -# ||playtowerdefensegames.com/ptdg-gao-gamebox-homepage.swf (easylistchina+easylist.txt: 44394) -.playtowerdefensegames.com/ptdg-gao-gamebox-homepage\.swf -# ||playhub.com/js/popup-wide.js (easylistchina+easylist.txt: 44392) -.playhub.com/js/popup-wide\.js -# ||playgames2.com/rand100x100.php (easylistchina+easylist.txt: 44389) -.playgames2.com/rand100x100\.php -# ||playgames2.com/mmoout.php (easylistchina+easylist.txt: 44388) -.playgames2.com/mmoout\.php -# ||playgames2.com/default160x160.php (easylistchina+easylist.txt: 44387) -.playgames2.com/default160x160\.php -# ||playgames2.com/ban300- (easylistchina+easylist.txt: 44386) -.playgames2.com/ban300- -# ||player.insuranceandhealth.com^ (easylistchina+easylist.txt: 44385) -.player.insuranceandhealth.com -# ||player.alloutwedding.com^ (easylistchina+easylist.txt: 44384) -.player.alloutwedding.com -# ||player.accoona.com^ (easylistchina+easylist.txt: 44383) -.player.accoona.com -# ||player.800directories.com^ (easylistchina+easylist.txt: 44382) -.player.800directories.com -# ||player.1stcreditrepairs.com^ (easylistchina+easylist.txt: 44381) -.player.1stcreditrepairs.com -# ||player.1800coupon.com^ (easylistchina+easylist.txt: 44380) -.player.1800coupon.com -# ||play4movie.com/banner/ (easylistchina+easylist.txt: 44379) -.play4movie.com/banner/ -# ||planetlotus.org/images/partners/ (easylistchina+easylist.txt: 44378) -.planetlotus.org/images/partners/ -# ||planecrashinfo.com/images/advertize1.gif (easylistchina+easylist.txt: 44377) -.planecrashinfo.com/images/advertize1\.gif -# ||pixhost.org/image/fik1.jpg (easylistchina+easylist.txt: 44376) -.pixhost.org/image/fik1\.jpg -# ||pittnews.com/modules/mod_novarp/ (easylistchina+easylist.txt: 44375) -.pittnews.com/modules/mod_novarp/ -# ||pitchero.com^*/toolstation.gif (easylistchina+easylist.txt: 44374) -.pitchero.com/.*/toolstation\.gif -# ||pirateproxy.nl/inc/ex.js (easylistchina+easylist.txt: 44373) -.pirateproxy.nl/inc/ex\.js -# ||piratefm.co.uk/resources/creative/ (easylistchina+easylist.txt: 44372) -.piratefm.co.uk/resources/creative/ -# ||pinknews.co.uk/newweb/ (easylistchina+easylist.txt: 44371) -.pinknews.co.uk/newweb/ -# ||pinknews.co.uk/gsky. (easylistchina+easylist.txt: 44370) -.pinknews.co.uk/gsky\. -# ||pinkbike.org^*/skins/ (easylistchina+easylist.txt: 44369) -.pinkbike.org/.*/skins/ -# ||picsee.net/clk.js (easylistchina+easylist.txt: 44368) -.picsee.net/clk\.js -# ||pickmeupnews.com/cfopop.js (easylistchina+easylist.txt: 44367) -.pickmeupnews.com/cfopop\.js -# ||physorg.com^*/addetect.js (easylistchina+easylist.txt: 44366) -.physorg.com/.*/addetect\.js -# ||phuketwan.com/img/b/ (easylistchina+easylist.txt: 44365) -.phuketwan.com/img/b/ -# ||phuketgazette.net^*/banners/ (easylistchina+easylist.txt: 44364) -.phuketgazette.net/.*/banners/ -# ||phuketgazette.net/banners/ (easylistchina+easylist.txt: 44363) -.phuketgazette.net/banners/ -# ||phuket-post.com/img/a/ (easylistchina+easylist.txt: 44362) -.phuket-post.com/img/a/ -# ||phpmotion.com/images/banners-webhosts/ (easylistchina+easylist.txt: 44361) -.phpmotion.com/images/banners-webhosts/ -# ||phpbb.com/theme/images/hosting/hostmonster-downloads.gif (easylistchina+easylist.txt: 44360) -.phpbb.com/theme/images/hosting/hostmonster-downloads\.gif -# ||phpbb.com/theme/images/bg_forumatic_front_page.png (easylistchina+easylist.txt: 44359) -.phpbb.com/theme/images/bg_forumatic_front_page\.png -# ||photosupload.net/photosupload.js (easylistchina+easylist.txt: 44358) -.photosupload.net/photosupload\.js -# ||photo.net/equipment/pg-160^ (easylistchina+easylist.txt: 44356) -.photo.net/equipment/pg-160[^\w%.-] -# ||phoronix.com/phxforums-thread-show.php (easylistchina+easylist.txt: 44355) -.phoronix.com/phxforums-thread-show\.php -# ||phonescoop.com^*/a_tab.gif (easylistchina+easylist.txt: 44354) -.phonescoop.com/.*/a_tab\.gif -# ||phonebunch.com/images/flipkart_offers_alt.jpg (easylistchina+easylist.txt: 44353) -.phonebunch.com/images/flipkart_offers_alt\.jpg -# ||phonearena.com/images/banners/ (easylistchina+easylist.txt: 44352) -.phonearena.com/images/banners/ -# ||phnompenhpost.com^*/banner_ (easylistchina+easylist.txt: 44351) -.phnompenhpost.com/.*/banner_ -# ||phnompenhpost.com/images/stories/banner/ (easylistchina+easylist.txt: 44350) -.phnompenhpost.com/images/stories/banner/ -# ||phillytrib.com/images/banners/ (easylistchina+easylist.txt: 44349) -.phillytrib.com/images/banners/ -# ||phantom.ie^*/banners/ (easylistchina+easylist.txt: 44348) -.phantom.ie/.*/banners/ -# ||pghcitypaper.com/general/modalbox/modalbox.js (easylistchina+easylist.txt: 44347) -.pghcitypaper.com/general/modalbox/modalbox\.js -# ||pgatour.com^*/featurebillboard_ (easylistchina+easylist.txt: 44346) -.pgatour.com/.*/featurebillboard_ -# ||pettube.com/images/*-partner. (easylistchina+easylist.txt: 44345) -.pettube.com/images/.*-partner\. -# ||petri.co.il/wp-content/uploads/banner700x475_ (easylistchina+easylist.txt: 44344) -.petri.co.il/wp-content/uploads/banner700x475_ -# ||petri.co.il/wp-content/uploads/banner1000x75_ (easylistchina+easylist.txt: 44343) -.petri.co.il/wp-content/uploads/banner1000x75_ -# ||peruthisweek.com/uploads/sponsor_image/ (easylistchina+easylist.txt: 44341) -.peruthisweek.com/uploads/sponsor_image/ -# ||perezhilton.com/images/ask/ (easylistchina+easylist.txt: 44340) -.perezhilton.com/images/ask/ -# ||penguin-news.com/images/banners/ (easylistchina+easylist.txt: 44339) -.penguin-news.com/images/banners/ -# ||pedestrian.tv/_crunk/wp-content/files_flutter/ (easylistchina+easylist.txt: 44338) -.pedestrian.tv/_crunk/wp-content/files_flutter/ -# ||pechextreme.com^*/banners/ (easylistchina+easylist.txt: 44337) -.pechextreme.com/.*/banners/ -# ||pechextreme.com^*/banner. (easylistchina+easylist.txt: 44336) -.pechextreme.com/.*/banner\. -# ||pe.com^*/biice2scripts.js (easylistchina+easylist.txt: 44335) -.pe.com/.*/biice2scripts\.js -# ||pcworld.com/templates/video/popup.jsp?*&flv=/pcw/ads/ (easylistchina+easylist.txt: 44334) -.pcworld.com/templates/video/popup\.jsp\?.*&flv=/pcw/ads/ -# ||pcworld.com/images/*_vidmod_316x202_ (easylistchina+easylist.txt: 44333) -.pcworld.com/images/.*_vidmod_316x202_ -# ||pcworld.com/ads/ (easylistchina+easylist.txt: 44332) -.pcworld.com/ads/ -# ||pcworld.co.nz^*_siteskin_ (easylistchina+easylist.txt: 44331) -.pcworld.co.nz/.*_siteskin_ -# ||pcr-online.biz/static/banners/ (easylistchina+easylist.txt: 44330) -.pcr-online.biz/static/banners/ -# ||pcpro.co.uk^*skin_wide. (easylistchina+easylist.txt: 44329) -.pcpro.co.uk/.*skin_wide\. -# ||pcpro.co.uk^*/pcprositeskin (easylistchina+easylist.txt: 44328) -.pcpro.co.uk/.*/pcprositeskin -# ||pcpro.co.uk/images/skins/ (easylistchina+easylist.txt: 44327) -.pcpro.co.uk/images/skins/ -# ||pcpro.co.uk/images/*_siteskin (easylistchina+easylist.txt: 44326) -.pcpro.co.uk/images/.*_siteskin -# ||pcmag.com/blogshome/logicbuy.js (easylistchina+easylist.txt: 44325) -.pcmag.com/blogshome/logicbuy\.js -# ||pcauthority.com.au^*/skins/ (easylistchina+easylist.txt: 44324) -.pcauthority.com.au/.*/skins/ -# ||pcadvisor.co.uk/graphics/sponsored/ (easylistchina+easylist.txt: 44323) -.pcadvisor.co.uk/graphics/sponsored/ -# ||pbsrc.com^*/sponsor/ (easylistchina+easylist.txt: 44322) -.pbsrc.com/.*/sponsor/ -# ||pbsrc.com/sponsor/ (easylistchina+easylist.txt: 44321) -.pbsrc.com/sponsor/ -# ||pbs.org^*/sponsors/ (easylistchina+easylist.txt: 44320) -.pbs.org/.*/sponsors/ -# ||payplay.fm^*/mastercs.js (easylistchina+easylist.txt: 44319) -.payplay.fm/.*/mastercs\.js -# ||pasadenajournal.com/images/banners/ (easylistchina+easylist.txt: 44317) -.pasadenajournal.com/images/banners/ -# ||partners-z.com^ (easylistchina+easylist.txt: 44316) -.partners-z.com -# ||parlemagazine.com/images/banners/ (easylistchina+easylist.txt: 44315) -.parlemagazine.com/images/banners/ -# ||pardaphash.com/direct/tracker/add/ (easylistchina+easylist.txt: 44314) -.pardaphash.com/direct/tracker/add/ -# ||paradoxwikis.com/Sidebar.jpg (easylistchina+easylist.txt: 44313) -.paradoxwikis.com/Sidebar\.jpg -# ||parade.com/images/skins/ (easylistchina+easylist.txt: 44312) -.parade.com/images/skins/ -# ||pandora.com^*/mediaserverPublicRedirect.jsp (easylistchina+easylist.txt: 44311) -.pandora.com/.*/mediaserverPublicRedirect\.jsp -# ||paktribune.com^*/banner (easylistchina+easylist.txt: 44309) -.paktribune.com/.*/banner -# ||pakistantoday.com.pk^*/karachi_houston_PakistanToday.jpg (easylistchina+easylist.txt: 44308) -.pakistantoday.com.pk/.*/karachi_houston_PakistanToday\.jpg -# ||paisalive.com/include/popup.js (easylistchina+easylist.txt: 44307) -.paisalive.com/include/popup\.js -# ||pagesinventory.com/_data/img/*_125x400_ (easylistchina+easylist.txt: 44306) -.pagesinventory.com/_data/img/.*_125x400_ -# ||pacificnewscenter.com/images/banners/ (easylistchina+easylist.txt: 44305) -.pacificnewscenter.com/images/banners/ -# ||ozy.com^*/interstitial/ (easylistchina+easylist.txt: 44303) -.ozy.com/.*/interstitial/ -# ||ozy.com/modules/_common/ozy/pushdown/ (easylistchina+easylist.txt: 44302) -.ozy.com/modules/_common/ozy/pushdown/ -# ||ozy.com/modules/_common/ozy/full_width/ (easylistchina+easylist.txt: 44301) -.ozy.com/modules/_common/ozy/full_width/ -# ||ozy.com/modules/_common/ozy/blade/ (easylistchina+easylist.txt: 44300) -.ozy.com/modules/_common/ozy/blade/ -# ||ozqul.com^*/webbanners.png (easylistchina+easylist.txt: 44299) -.ozqul.com/.*/webbanners\.png -# ||oyetimes.com/join/advertisers.html (easylistchina+easylist.txt: 44298) -.oyetimes.com/join/advertisers\.html -# ||ox.furaffinity.net^ (easylistchina+easylist.txt: 44297) -.ox.furaffinity.net -# ||ox-d.wetransfer.com^ (easylistchina+easylist.txt: 44296) -.ox-d.wetransfer.com -# ||ox-d.sbnation.com^ (easylistchina+easylist.txt: 44295) -.ox-d.sbnation.com -# ||ox-d.rantsports.com^ (easylistchina+easylist.txt: 44294) -.ox-d.rantsports.com -# ||ow.ly^*/hootsuite_promo.jpg (easylistchina+easylist.txt: 44293) -.ow.ly/.*/hootsuite_promo\.jpg -# ||overclockers.co.uk^*/background/ (easylistchina+easylist.txt: 44291) -.overclockers.co.uk/.*/background/ -# ||overclock3d.net/img/pcp.jpg (easylistchina+easylist.txt: 44290) -.overclock3d.net/img/pcp\.jpg -# ||outlookmoney.com/sharekhan_ad.jpg (easylistchina+easylist.txt: 44288) -.outlookmoney.com/sharekhan_ad\.jpg -# ||outlookindia.com/image/banner_ (easylistchina+easylist.txt: 44287) -.outlookindia.com/image/banner_ -# ||ourmanga.com/funklicks (easylistchina+easylist.txt: 44286) -.ourmanga.com/funklicks -# ||oteupload.com/images/iLivid-download- (easylistchina+easylist.txt: 44285) -.oteupload.com/images/iLivid-download- -# ||orlandosentinel2.com^*-sponsorship- (easylistchina+easylist.txt: 44283) -.orlandosentinel2.com/.*-sponsorship- -# ||orkut.gmodules.com^/promote.xml (easylistchina+easylist.txt: 44282) -.orkut.gmodules.com//promote\.xml -# ||orissadiary.com/img/*-banner.gif (easylistchina+easylist.txt: 44281) -.orissadiary.com/img/.*-banner\.gif -# ||originalfm.com/images/hotspots/ (easylistchina+easylist.txt: 44280) -.originalfm.com/images/hotspots/ -# ||oraclebroadcasting.com/images/hempusa_330.gif (easylistchina+easylist.txt: 44279) -.oraclebroadcasting.com/images/hempusa_330\.gif -# ||oraclebroadcasting.com/images/extendovite300.gif (easylistchina+easylist.txt: 44278) -.oraclebroadcasting.com/images/extendovite300\.gif -# ||oraclebroadcasting.com/images/enerfood-300x90.gif (easylistchina+easylist.txt: 44277) -.oraclebroadcasting.com/images/enerfood-300x90\.gif -# ||optimum.net/utilities/doubleclicktargeting (easylistchina+easylist.txt: 44276) -.optimum.net/utilities/doubleclicktargeting -# ||optics.org/banners/ (easylistchina+easylist.txt: 44275) -.optics.org/banners/ -# ||oprah.com^*-300x335.jpg (easylistchina+easylist.txt: 44274) -.oprah.com/.*-300x335\.jpg -# ||opensubtitles.org/gfx/banners_campaigns/ (easylistchina+easylist.txt: 44273) -.opensubtitles.org/gfx/banners_campaigns/ -# ||opencurrency.com/wp-content/uploads/*-aocs-sidebar-commodity-bank.png (easylistchina+easylist.txt: 44272) -.opencurrency.com/wp-content/uploads/.*-aocs-sidebar-commodity-bank\.png -# ||opednews.com^*/iframe.php? (easylistchina+easylist.txt: 44271) -.opednews.com/.*/iframe\.php\? -# ||onvasortir.com/maximemo-pense-bete-ovs.png (easylistchina+easylist.txt: 44270) -.onvasortir.com/maximemo-pense-bete-ovs\.png -# ||onlygoodmovies.com/netflix.gif (easylistchina+easylist.txt: 44268) -.onlygoodmovies.com/netflix\.gif -# ||onlineshopping.co.za/expop/ (easylistchina+easylist.txt: 44267) -.onlineshopping.co.za/expop/ -# ||onlinenews.com.pk/onlinenews-admin/banners/ (easylistchina+easylist.txt: 44265) -.onlinenews.com.pk/onlinenews-admin/banners/ -# ||onlinemarketnews.org^*/silver72890.gif (easylistchina+easylist.txt: 44264) -.onlinemarketnews.org/.*/silver72890\.gif -# ||onlinemarketnews.org^*/silver300600.gif (easylistchina+easylist.txt: 44263) -.onlinemarketnews.org/.*/silver300600\.gif -# ||onlinekeystore.com/skin1/images/side- (easylistchina+easylist.txt: 44262) -.onlinekeystore.com/skin1/images/side- -# ||onionstatic.com/sponsored/ (easylistchina+easylist.txt: 44261) -.onionstatic.com/sponsored/ -# ||onepieceofbleach.com/onepieceofbleach-gao- (easylistchina+easylist.txt: 44260) -.onepieceofbleach.com/onepieceofbleach-gao- -# ||one-delivery.co.uk^*/sensitivedating.png (easylistchina+easylist.txt: 44259) -.one-delivery.co.uk/.*/sensitivedating\.png -# ||oncyprus.com^*/banners/ (easylistchina+easylist.txt: 44258) -.oncyprus.com/.*/banners/ -# ||on.net/images/gon_nodestore.jpg (easylistchina+easylist.txt: 44257) -.on.net/images/gon_nodestore\.jpg -# ||omgpop.com/dc? (easylistchina+easylist.txt: 44256) -.omgpop.com/dc\? -# ||oldgames.sk/images/topbar/ (easylistchina+easylist.txt: 44255) -.oldgames.sk/images/topbar/ -# ||okccdn.com/media/img/takeovers/ (easylistchina+easylist.txt: 44253) -.okccdn.com/media/img/takeovers/ -# ||oilprice.com/oiopub/ (easylistchina+easylist.txt: 44252) -.oilprice.com/oiopub/ -# ||oilprice.com/images/sponsors/ (easylistchina+easylist.txt: 44251) -.oilprice.com/images/sponsors/ -# ||oilprice.com/images/banners/ (easylistchina+easylist.txt: 44250) -.oilprice.com/images/banners/ -# ||ohmygore.com/ef_pub*.php (easylistchina+easylist.txt: 44249) -.ohmygore.com/ef_pub.*\.php -# ||oddschecker.com^*/takeover/ (easylistchina+easylist.txt: 44248) -.oddschecker.com/.*/takeover/ -# ||ocp.cbssports.com/pacific/request.jsp? (easylistchina+easylist.txt: 44247) -.ocp.cbssports.com/pacific/request\.jsp\? -# ||ocforums.com/adj/ (easylistchina+easylist.txt: 44246) -.ocforums.com/adj/ -# ||observer.ug/images/banners/ (easylistchina+easylist.txt: 44245) -.observer.ug/images/banners/ -# ||observer.org.sz/files/banners/ (easylistchina+easylist.txt: 44244) -.observer.org.sz/files/banners/ -# ||observer.com.na/images/banners/ (easylistchina+easylist.txt: 44243) -.observer.com.na/images/banners/ -# ||oascentral.newsmax.com^ (easylistchina+easylist.txt: 44240) -.oascentral.newsmax.com -# ||oascentral.hosted.ap.org^ (easylistchina+easylist.txt: 44239) -.oascentral.hosted.ap.org -# ||oascentral.chron.com^ (easylistchina+easylist.txt: 44238) -.oascentral.chron.com -# ||oasc07.citywire.co.uk^ (easylistchina+easylist.txt: 44237) -.oasc07.citywire.co.uk -# ||oas.skyscanner.net^ (easylistchina+easylist.txt: 44236) -.oas.skyscanner.net -# ||oas.autotrader.co.uk^ (easylistchina+easylist.txt: 44235) -.oas.autotrader.co.uk -# ||oanda.com/wandacache/wf-banner- (easylistchina+easylist.txt: 44234) -.oanda.com/wandacache/wf-banner- -# ||nznewsuk.co.uk/banners/ (easylistchina+easylist.txt: 44233) -.nznewsuk.co.uk/banners/ -# ||nzbking.com/static/nzbdrive_banner.swf (easylistchina+easylist.txt: 44232) -.nzbking.com/static/nzbdrive_banner\.swf -# ||nzbindex.nl/images/banners/ (easylistchina+easylist.txt: 44231) -.nzbindex.nl/images/banners/ -# ||nytimes.com^*-sponsor- (easylistchina+easylist.txt: 44230) -.nytimes.com/.*-sponsor- -# ||nytimes.com/ads/ (easylistchina+easylist.txt: 44229) -.nytimes.com/ads/ -# ||nyt.com^*-sponsor- (easylistchina+easylist.txt: 44228) -.nyt.com/.*-sponsor- -# ||nyrej.com/c/ (easylistchina+easylist.txt: 44227) -.nyrej.com/c/ -# ||nypost.com^*/takeovers/ (easylistchina+easylist.txt: 44226) -.nypost.com/.*/takeovers/ -# ||nymag.com^*/metrony_ (easylistchina+easylist.txt: 44225) -.nymag.com/.*/metrony_ -# ||nymag.com/scripts/skintakeover.js (easylistchina+easylist.txt: 44224) -.nymag.com/scripts/skintakeover\.js -# ||nymag.com/partners/ (easylistchina+easylist.txt: 44223) -.nymag.com/partners/ -# ||nydailynews.com^*-reskin- (easylistchina+easylist.txt: 44222) -.nydailynews.com/.*-reskin- -# ||nydailynews.com/PCRichards/ (easylistchina+easylist.txt: 44221) -.nydailynews.com/PCRichards/ -# ||nydailynews.com/img/sponsor/ (easylistchina+easylist.txt: 44220) -.nydailynews.com/img/sponsor/ -# ||nyaa.se/al (easylistchina+easylist.txt: 44219) -.nyaa.se/al -# ||nyaa.se/aj (easylistchina+easylist.txt: 44218) -.nyaa.se/aj -# ||nyaa.se/ai (easylistchina+easylist.txt: 44217) -.nyaa.se/ai -# ||nyaa.se/ah (easylistchina+easylist.txt: 44216) -.nyaa.se/ah -# ||nyaa.se/ag (easylistchina+easylist.txt: 44215) -.nyaa.se/ag -# ||nuvo.net^*/FooterPromoButtons.html (easylistchina+easylist.txt: 44214) -.nuvo.net/.*/FooterPromoButtons\.html -# ||nuttynewstoday.com/images/percento-banner.jpg (easylistchina+easylist.txt: 44213) -.nuttynewstoday.com/images/percento-banner\.jpg -# ||nuttynewstoday.com/images/hostwink.jpg (easylistchina+easylist.txt: 44212) -.nuttynewstoday.com/images/hostwink\.jpg -# ||nutritionhorizon.com/content/banners/ (easylistchina+easylist.txt: 44210) -.nutritionhorizon.com/content/banners/ -# ||numberempire.com/images/b/ (easylistchina+easylist.txt: 44209) -.numberempire.com/images/b/ -# ||nufc.com^*_360x120.gif (easylistchina+easylist.txt: 44208) -.nufc.com/.*_360x120\.gif -# ||nufc.com^*/The%20Gate_NUFC.com%20banner_%2016.8.13.gif (easylistchina+easylist.txt: 44207) -.nufc.com/.*/The%20Gate_NUFC\.com%20banner_%2016\.8\.13\.gif -# ||nufc.com^*/skyscraper.gif (easylistchina+easylist.txt: 44206) -.nufc.com/.*/skyscraper\.gif -# ||nufc.com^*/mjs-2013-11.png (easylistchina+easylist.txt: 44205) -.nufc.com/.*/mjs-2013-11\.png -# ||nufc.com^*/altoonative_Cardiff.gif (easylistchina+easylist.txt: 44204) -.nufc.com/.*/altoonative_Cardiff\.gif -# ||nufc.com/forddirectbanner.js (easylistchina+easylist.txt: 44203) -.nufc.com/forddirectbanner\.js -# ||nu2.nu^*_banner. (easylistchina+easylist.txt: 44202) -.nu2.nu/.*_banner\. -# ||nu2.nu^*/sponsor/ (easylistchina+easylist.txt: 44201) -.nu2.nu/.*/sponsor/ -# ||ntdtv.com^*/adv/ (easylistchina+easylist.txt: 44200) -.ntdtv.com/.*/adv/ -# ||nowwatchtvlive.com/revenuehits.html (easylistchina+easylist.txt: 44199) -.nowwatchtvlive.com/revenuehits\.html -# ||nowwatchtvlive.com/matomyads.php (easylistchina+easylist.txt: 44198) -.nowwatchtvlive.com/matomyads\.php -# ||nowgoal.com/images/foreign/ (easylistchina+easylist.txt: 44197) -.nowgoal.com/images/foreign/ -# ||novamov.com/images/download_video.jpg (easylistchina+easylist.txt: 44196) -.novamov.com/images/download_video\.jpg -# ||notebook-driver.com/wp-content/images/banner_ (easylistchina+easylist.txt: 44195) -.notebook-driver.com/wp-content/images/banner_ -# ||notdoppler.com^*-promo-siteskin. (easylistchina+easylist.txt: 44194) -.notdoppler.com/.*-promo-siteskin\. -# ||notdoppler.com^*-promo-homepageskin.png (easylistchina+easylist.txt: 44193) -.notdoppler.com/.*-promo-homepageskin\.png -# ||notalwaysromantic.com/images/banner- (easylistchina+easylist.txt: 44192) -.notalwaysromantic.com/images/banner- -# ||nosteam.ro^*/messagesprop.js (easylistchina+easylist.txt: 44191) -.nosteam.ro/.*/messagesprop\.js -# ||nosteam.ro^*/messages.js (easylistchina+easylist.txt: 44190) -.nosteam.ro/.*/messages\.js -# ||nosteam.ro^*/gamedvprop.js (easylistchina+easylist.txt: 44189) -.nosteam.ro/.*/gamedvprop\.js -# ||nosteam.ro^*/compressed.ggotab36.js (easylistchina+easylist.txt: 44188) -.nosteam.ro/.*/compressed\.ggotab36\.js -# ||norwaypost.no/images/banners/ (easylistchina+easylist.txt: 44187) -.norwaypost.no/images/banners/ -# ||northjersey.com^*_Sponsor. (easylistchina+easylist.txt: 44186) -.northjersey.com/.*_Sponsor\. -# ||noram.srv.ysm.yahoo.com^ (easylistchina+easylist.txt: 44185) -.noram.srv.ysm.yahoo.com -# ||nodevice.com/images/banners/ (easylistchina+easylist.txt: 44184) -.nodevice.com/images/banners/ -# ||nmimg.net/css/takeover_ (easylistchina+easylist.txt: 44183) -.nmimg.net/css/takeover_ -# ||nme.com/themes/takeovers/ (easylistchina+easylist.txt: 44182) -.nme.com/themes/takeovers/ -# ||nme.com/js/takeoverlay.js (easylistchina+easylist.txt: 44181) -.nme.com/js/takeoverlay\.js -# ||nitrobahn.com.s3.amazonaws.com/theme/getclickybadge.gif (easylistchina+easylist.txt: 44179) -.nitrobahn.com.s3.amazonaws.com/theme/getclickybadge\.gif -# ||nirsoft.net/banners/ (easylistchina+easylist.txt: 44178) -.nirsoft.net/banners/ -# ||nijobfinder.co.uk/affiliates/ (easylistchina+easylist.txt: 44176) -.nijobfinder.co.uk/affiliates/ -# ||niggasbelike.com/wp-content/themes/zeecorporate/images/b.jpg (easylistchina+easylist.txt: 44175) -.niggasbelike.com/wp-content/themes/zeecorporate/images/b\.jpg -# ||nigerianyellowpages.com/images/banners/ (easylistchina+easylist.txt: 44174) -.nigerianyellowpages.com/images/banners/ -# ||nigerianbulletin.com^*/Siropu/ (easylistchina+easylist.txt: 44173) -.nigerianbulletin.com/.*/Siropu/ -# ||nigeriamasterweb.com/Masterweb/banners_pic/ (easylistchina+easylist.txt: 44172) -.nigeriamasterweb.com/Masterweb/banners_pic/ -# ||nigeriafootball.com/img/affiliate_ (easylistchina+easylist.txt: 44171) -.nigeriafootball.com/img/affiliate_ -# ||nichepursuits.com/wp-content/uploads/*/long-tail-pro-banner.gif (easylistchina+easylist.txt: 44170) -.nichepursuits.com/wp-content/uploads/.*/long-tail-pro-banner\.gif -# ||ngrguardiannews.com/images/banners/ (easylistchina+easylist.txt: 44169) -.ngrguardiannews.com/images/banners/ -# ||ngohq.com/images/ad.jpg$~collapse (easylistchina+easylist.txt: 44168) -.ngohq.com/images/ad\.jpg -# ||nfl.com^*/page-background-image.jpg (easylistchina+easylist.txt: 44165) -.nfl.com/.*/page-background-image\.jpg -# ||nfl.com/assets/images/hp-poweredby- (easylistchina+easylist.txt: 44164) -.nfl.com/assets/images/hp-poweredby- -# ||nextstl.com/images/banners/ (easylistchina+easylist.txt: 44163) -.nextstl.com/images/banners/ -# ||nextbigwhat.com/wp-content/uploads/*ccavenue (easylistchina+easylist.txt: 44162) -.nextbigwhat.com/wp-content/uploads/.*ccavenue -# ||nextag.com^*/NextagSponsoredProducts.jsp? (easylistchina+easylist.txt: 44161) -.nextag.com/.*/NextagSponsoredProducts\.jsp\? -# ||newvision.co.ug/rightsidepopup/ (easylistchina+easylist.txt: 44160) -.newvision.co.ug/rightsidepopup/ -# ||newvision.co.ug/banners/ (easylistchina+easylist.txt: 44159) -.newvision.co.ug/banners/ -# ||newverhost.com/css/pp.js (easylistchina+easylist.txt: 44158) -.newverhost.com/css/pp\.js -# ||newverhost.com/css/onload.js (easylistchina+easylist.txt: 44157) -.newverhost.com/css/onload\.js -# ||newsweek.com^*interstitial.js (easylistchina+easylist.txt: 44156) -.newsweek.com/.*interstitial\.js -# ||newsvine.com/jenga/widget/ (easylistchina+easylist.txt: 44155) -.newsvine.com/jenga/widget/ -# ||newsvine.com//jenga/widget/ (easylistchina+easylist.txt: 44154) -# ||newsudanvision.com/images/Carjunctionadvert.gif (easylistchina+easylist.txt: 44153) -.newsudanvision.com/images/Carjunctionadvert\.gif -# ||newsudanvision.com/images/banners/ (easylistchina+easylist.txt: 44152) -.newsudanvision.com/images/banners/ -# ||newstrackindia.com/images/hairfallguru728x90.jpg (easylistchina+easylist.txt: 44151) -.newstrackindia.com/images/hairfallguru728x90\.jpg -# ||newsreview.com/images/promo.gif (easylistchina+easylist.txt: 44149) -.newsreview.com/images/promo\.gif -# ||newsonjapan.com^*/banner/ (easylistchina+easylist.txt: 44148) -.newsonjapan.com/.*/banner/ -# ||newsday.co.tt/banner/ (easylistchina+easylist.txt: 44147) -.newsday.co.tt/banner/ -# ||newscdn.com.au^*/aldi/ (easylistchina+easylist.txt: 44145) -.newscdn.com.au/.*/aldi/ -# ||newsbusters.org^*/banners/ (easylistchina+easylist.txt: 44144) -.newsbusters.org/.*/banners/ -# ||news.com.au^*/promotions/ (easylistchina+easylist.txt: 44142) -.news.com.au/.*/promotions/ -# ||news.com.au^*/promos/ (easylistchina+easylist.txt: 44141) -.news.com.au/.*/promos/ -# ||news.com.au^*/images/*-bg.jpg (easylistchina+easylist.txt: 44140) -.news.com.au/.*/images/.*-bg\.jpg -# ||news.com.au/cs/*/bg-body.jpg (easylistchina+easylist.txt: 44137) -.news.com.au/cs/.*/bg-body\.jpg -# ||news.am/pic/bnr/ (easylistchina+easylist.txt: 44136) -.news.am/pic/bnr/ -# ||news-record.com/app/deal/ (easylistchina+easylist.txt: 44135) -.news-record.com/app/deal/ -# ||news-leader.com^*/banner.js (easylistchina+easylist.txt: 44134) -.news-leader.com/.*/banner\.js -# ||newpct.com/soporte/ (easylistchina+easylist.txt: 44133) -.newpct.com/soporte/ -# ||newoxfordreview.org/banners/ad- (easylistchina+easylist.txt: 44132) -.newoxfordreview.org/banners/ad- -# ||newipnow.com/ad-js.php (easylistchina+easylist.txt: 44131) -.newipnow.com/ad-js\.php -# ||newburytoday.co.uk^*-WillisAinsworth1.gif (easylistchina+easylist.txt: 44130) -.newburytoday.co.uk/.*-WillisAinsworth1\.gif -# ||newalbumreleases.net/banners/ (easylistchina+easylist.txt: 44129) -.newalbumreleases.net/banners/ -# ||newafricanmagazine.com/images/banners/ (easylistchina+easylist.txt: 44128) -.newafricanmagazine.com/images/banners/ -# ||networkwestvirginia.com/uploads/user_banners/ (easylistchina+easylist.txt: 44126) -.networkwestvirginia.com/uploads/user_banners/ -# ||network.sofeminine.co.uk^ (easylistchina+easylist.txt: 44125) -.network.sofeminine.co.uk -# ||netupd8.com^*/ads/ (easylistchina+easylist.txt: 44124) -.netupd8.com/.*/ads/ -# ||netsplit.de/links/rootado.gif (easylistchina+easylist.txt: 44123) -.netsplit.de/links/rootado\.gif -# ||netspidermm.indiatimes.com^ (easylistchina+easylist.txt: 44122) -.netspidermm.indiatimes.com -# ||netindian.in/frontsquare*.php (easylistchina+easylist.txt: 44121) -.netindian.in/frontsquare.*\.php -# ||nest.youwatch.org^ (easylistchina+easylist.txt: 44118) -.nest.youwatch.org -# ||nesn.com/img/sponsors/ (easylistchina+easylist.txt: 44117) -.nesn.com/img/sponsors/ -# ||nesn.com/img/nesn-nation/header-dunkin.jpg (easylistchina+easylist.txt: 44116) -.nesn.com/img/nesn-nation/header-dunkin\.jpg -# ||nesn.com/img/nesn-nation/bg- (easylistchina+easylist.txt: 44115) -.nesn.com/img/nesn-nation/bg- -# ||nerej.com/c/ (easylistchina+easylist.txt: 44114) -.nerej.com/c/ -# ||neowin.net/images/atlas/aww (easylistchina+easylist.txt: 44113) -.neowin.net/images/atlas/aww -# ||neoseeker.com/a_pane.php (easylistchina+easylist.txt: 44112) -.neoseeker.com/a_pane\.php -# ||nemesistv.info/jQuery.NagAds1.min.js (easylistchina+easylist.txt: 44111) -.nemesistv.info/jQuery\.NagAds1\.min\.js -# ||nearlygood.com^*/_aff.php? (easylistchina+easylist.txt: 44110) -.nearlygood.com/.*/_aff\.php\? -# ||ndtv.com^*/sponsors/ (easylistchina+easylist.txt: 44109) -.ndtv.com/.*/sponsors/ -# ||ndtv.com^*/banner/ (easylistchina+easylist.txt: 44108) -.ndtv.com/.*/banner/ -# ||ncrypt.in/javascript/jquery.msgbox.min.js (easylistchina+easylist.txt: 44106) -.ncrypt.in/javascript/jquery\.msgbox\.min\.js -# ||ncrypt.in/images/useful/ (easylistchina+easylist.txt: 44105) -.ncrypt.in/images/useful/ -# ||ncrypt.in/images/banner (easylistchina+easylist.txt: 44104) -.ncrypt.in/images/banner -# ||ncrypt.in/images/a/ (easylistchina+easylist.txt: 44103) -.ncrypt.in/images/a/ -# ||ncrypt.in/images/1.gif (easylistchina+easylist.txt: 44102) -.ncrypt.in/images/1\.gif -# ||nciku.com^*banner (easylistchina+easylist.txt: 44101) -.nciku.com/.*banner -# ||nbr.co.nz^*-WingBanner_ (easylistchina+easylist.txt: 44100) -.nbr.co.nz/.*-WingBanner_ -# ||naukimg.com/banner/ (easylistchina+easylist.txt: 44099) -.naukimg.com/banner/ -# ||naturalnews.com/sba/ (easylistchina+easylist.txt: 44098) -.naturalnews.com/sba/ -# ||nativetimes.com/images/banners/ (easylistchina+easylist.txt: 44097) -.nativetimes.com/images/banners/ -# ||nationmultimedia.com/new/js/nation_popup.js (easylistchina+easylist.txt: 44096) -.nationmultimedia.com/new/js/nation_popup\.js -# ||nationmultimedia.com/home/banner/ (easylistchina+easylist.txt: 44095) -.nationmultimedia.com/home/banner/ -# ||nationalturk.com^*/banner (easylistchina+easylist.txt: 44094) -.nationalturk.com/.*/banner -# ||nationalreview.com/images/display_300x600- (easylistchina+easylist.txt: 44093) -.nationalreview.com/images/display_300x600- -# ||nationaljournal.com/js/njg.js (easylistchina+easylist.txt: 44092) -.nationaljournal.com/js/njg\.js -# ||nation.sc/images/pub (easylistchina+easylist.txt: 44091) -.nation.sc/images/pub -# ||nation.sc/images/banners/ (easylistchina+easylist.txt: 44090) -.nation.sc/images/banners/ -# ||nation.lk^*/banners/ (easylistchina+easylist.txt: 44089) -.nation.lk/.*/banners/ -# ||nation.co.ke^*_bg.png (easylistchina+easylist.txt: 44088) -.nation.co.ke/.*_bg\.png -# ||naij.com^*/branding/ (easylistchina+easylist.txt: 44085) -.naij.com/.*/branding/ -# ||mywot.net/files/wotcert/vipre.png (easylistchina+easylist.txt: 44084) -.mywot.net/files/wotcert/vipre\.png -# ||myway.com/gca_iframe.html (easylistchina+easylist.txt: 44083) -.myway.com/gca_iframe\.html -# ||mysuncoast.com^*/sponsors/ (easylistchina+easylist.txt: 44082) -.mysuncoast.com/.*/sponsors/ -# ||mysuncoast.com/app/wallpaper/ (easylistchina+easylist.txt: 44081) -.mysuncoast.com/app/wallpaper/ -# ||mysubtitles.com^*_banner.jpg (easylistchina+easylist.txt: 44080) -.mysubtitles.com/.*_banner\.jpg -# ||myspacecdn.com/cms/*_skin_ (easylistchina+easylist.txt: 44079) -.myspacecdn.com/cms/.*_skin_ -# ||myshadibridalexpo.com/banner/ (easylistchina+easylist.txt: 44078) -.myshadibridalexpo.com/banner/ -# ||mysafesearch.co.uk/adds/ (easylistchina+easylist.txt: 44077) -.mysafesearch.co.uk/adds/ -# ||myrls.me/open.js (easylistchina+easylist.txt: 44076) -.myrls.me/open\.js -# ||myretrotv.com^*_vertbnr.jpg (easylistchina+easylist.txt: 44075) -.myretrotv.com/.*_vertbnr\.jpg -# ||myretrotv.com^*_horbnr.jpg (easylistchina+easylist.txt: 44074) -.myretrotv.com/.*_horbnr\.jpg -# ||myproperty.co.za/banners/ (easylistchina+easylist.txt: 44073) -.myproperty.co.za/banners/ -# ||mypremium.tv^*/bpad.htm (easylistchina+easylist.txt: 44072) -.mypremium.tv/.*/bpad\.htm -# ||mypbrand.com/wp-content/uploads/*banner (easylistchina+easylist.txt: 44070) -.mypbrand.com/wp-content/uploads/.*banner -# ||myiplayer.eu/ad (easylistchina+easylist.txt: 44069) -.myiplayer.eu/ad -# ||mygaming.co.za/news/wp-content/wallpapers/ (easylistchina+easylist.txt: 44068) -.mygaming.co.za/news/wp-content/wallpapers/ -# ||myfpscheats.com/bannerimg.jpg (easylistchina+easylist.txt: 44067) -.myfpscheats.com/bannerimg\.jpg -# ||myfax.com/free/images/sendfax/cp_coffee_660x80.swf (easylistchina+easylist.txt: 44066) -.myfax.com/free/images/sendfax/cp_coffee_660x80\.swf -# ||mycentraljersey.com^*/sponsor_ (easylistchina+easylist.txt: 44065) -.mycentraljersey.com/.*/sponsor_ -# ||mybroadband.co.za/news/wp-content/wallpapers/ (easylistchina+easylist.txt: 44064) -.mybroadband.co.za/news/wp-content/wallpapers/ -# ||myam1230.com/images/banners/ (easylistchina+easylist.txt: 44063) -.myam1230.com/images/banners/ -# ||my-link.pro/rotatingBanner.js (easylistchina+easylist.txt: 44062) -.my-link.pro/rotatingBanner\.js -# ||muthafm.com^*/partners.png (easylistchina+easylist.txt: 44061) -.muthafm.com/.*/partners\.png -# ||mustangevolution.com^*/banners/ (easylistchina+easylist.txt: 44060) -.mustangevolution.com/.*/banners/ -# ||mustangevolution.com^*/banner/ (easylistchina+easylist.txt: 44059) -.mustangevolution.com/.*/banner/ -# ||mustangevolution.com/images/300x100_ (easylistchina+easylist.txt: 44058) -.mustangevolution.com/images/300x100_ -# ||musictarget.com*/! (easylistchina+easylist.txt: 44057) -.musictarget.com*./(.*/)?! -# ||musicremedy.com/banner/ (easylistchina+easylist.txt: 44056) -.musicremedy.com/banner/ -# ||musicplayon.com/banner? (easylistchina+easylist.txt: 44055) -.musicplayon.com/banner\? -# ||musicmaza.com/bannerdyn (easylistchina+easylist.txt: 44054) -.musicmaza.com/bannerdyn -# ||music.yahoo.com/get-free-html (easylistchina+easylist.txt: 44053) -.music.yahoo.com/get-free-html -# ||murdermysteries.com/banners-murder/ (easylistchina+easylist.txt: 44052) -.murdermysteries.com/banners-murder/ -# ||multiupload.biz/r_ads2 (easylistchina+easylist.txt: 44051) -.multiupload.biz/r_ads2 -# ||multiup.org/img/sonyoutube_long.gif (easylistchina+easylist.txt: 44050) -.multiup.org/img/sonyoutube_long\.gif -# ||muchmusic.com^*/leaderboard_frame_obiwan.html (easylistchina+easylist.txt: 44049) -.muchmusic.com/.*/leaderboard_frame_obiwan\.html -# ||muchmusic.com^*/bigbox_frame_resizer.html (easylistchina+easylist.txt: 44048) -.muchmusic.com/.*/bigbox_frame_resizer\.html -# ||muchmusic.com/images/*-skin.png (easylistchina+easylist.txt: 44047) -.muchmusic.com/images/.*-skin\.png -# ||mtv.co.uk^*/btn_itunes.png (easylistchina+easylist.txt: 44045) -.mtv.co.uk/.*/btn_itunes\.png -# ||mtbr.com/ajax/hotdeals/ (easylistchina+easylist.txt: 44044) -.mtbr.com/ajax/hotdeals/ -# ||msw.ms^*/jquery.MSWPagePeel- (easylistchina+easylist.txt: 44043) -.msw.ms/.*/jquery\.MSWPagePeel- -# ||msn.com/?adunitid (easylistchina+easylist.txt: 44042) -.msn.com/\?adunitid -# ||mp3skull.com/call_banner_exec_new. (easylistchina+easylist.txt: 44040) -.mp3skull.com/call_banner_exec_new\. -# ||mp3s.su/uploads/___/djz_to.png (easylistchina+easylist.txt: 44039) -.mp3s.su/uploads/___/djz_to\.png -# ||mp3mediaworld.com*/! (easylistchina+easylist.txt: 44038) -.mp3mediaworld.com*./(.*/)?! -# ||mp3li.net^*banner (easylistchina+easylist.txt: 44037) -.mp3li.net/.*banner -# ||mp3.li/images/md_banner_ (easylistchina+easylist.txt: 44036) -.mp3.li/images/md_banner_ -# ||movzap.com/zad.html (easylistchina+easylist.txt: 44034) -.movzap.com/zad\.html -# ||movzap.com/aad.html (easylistchina+easylist.txt: 44033) -.movzap.com/aad\.html -# ||movstreaming.com/images/edhim.jpg (easylistchina+easylist.txt: 44032) -.movstreaming.com/images/edhim\.jpg -# ||movizland.com/images/banners/ (easylistchina+easylist.txt: 44031) -.movizland.com/images/banners/ -# ||moviewallpaper.net/js/mwpopunder.js (easylistchina+easylist.txt: 44030) -.moviewallpaper.net/js/mwpopunder\.js -# ||movie4k.tv/e.js (easylistchina+easylist.txt: 44029) -.movie4k.tv/e\.js -# ||movie4k.to/*.js (easylistchina+easylist.txt: 44028) -.movie4k.to/.*\.js -# ||movie2kto.ws/popup (easylistchina+easylist.txt: 44027) -.movie2kto.ws/popup -# ||movie2k.tl/serve.php (easylistchina+easylist.txt: 44026) -.movie2k.tl/serve\.php -# ||movie2k.tl/layers/ (easylistchina+easylist.txt: 44025) -.movie2k.tl/layers/ -# ||mouthshut.com^*/zedo.aspx (easylistchina+easylist.txt: 44024) -.mouthshut.com/.*/zedo\.aspx -# ||mousesteps.com/images/banners/ (easylistchina+easylist.txt: 44023) -.mousesteps.com/images/banners/ -# ||mountainbuzz.com/attachments/banners/ (easylistchina+easylist.txt: 44022) -.mountainbuzz.com/attachments/banners/ -# ||motorweek.org^*/sponsor_logos/ (easylistchina+easylist.txt: 44021) -.motorweek.org/.*/sponsor_logos/ -# ||motortrader.com.my/skinner/ (easylistchina+easylist.txt: 44020) -.motortrader.com.my/skinner/ -# ||motorhomefacts.com/images/banners/ (easylistchina+easylist.txt: 44019) -.motorhomefacts.com/images/banners/ -# ||motorcycles-motorbikes.com/pictures/sponsors/ (easylistchina+easylist.txt: 44018) -.motorcycles-motorbikes.com/pictures/sponsors/ -# ||morningstaronline.co.uk/offsite/progressive-listings/ (easylistchina+easylist.txt: 44017) -.morningstaronline.co.uk/offsite/progressive-listings/ -# ||morefree.net/wp-content/uploads/*/mauritanie.gif (easylistchina+easylist.txt: 44016) -.morefree.net/wp-content/uploads/.*/mauritanie\.gif -# ||morefmphilly.com^*/sponsors/ (easylistchina+easylist.txt: 44015) -.morefmphilly.com/.*/sponsors/ -# ||monster.com/null&pp (easylistchina+easylist.txt: 44014) -.monster.com/null&pp -# ||monkeygamesworld.com/images/banners/ (easylistchina+easylist.txt: 44013) -.monkeygamesworld.com/images/banners/ -# ||monitor.co.ug/image/view/*/468/ (easylistchina+easylist.txt: 44012) -.monitor.co.ug/image/view/.*/468/ -# ||monitor.co.ug/image/view/*/120/ (easylistchina+easylist.txt: 44011) -.monitor.co.ug/image/view/.*/120/ -# ||moneymedics.biz/upload/banners/ (easylistchina+easylist.txt: 44010) -.moneymedics.biz/upload/banners/ -# ||moneymakerdiscussion.com/mmd-banners/ (easylistchina+easylist.txt: 44009) -.moneymakerdiscussion.com/mmd-banners/ -# ||mochiads.com/srv/ (easylistchina+easylist.txt: 44007) -.mochiads.com/srv/ -# ||mobilephonetalk.com/eurovps.swf (easylistchina+easylist.txt: 44006) -.mobilephonetalk.com/eurovps\.swf -# ||mob.org/banner/ (easylistchina+easylist.txt: 44005) -.mob.org/banner/ -# ||mnn.com^*/120x60/ (easylistchina+easylist.txt: 44004) -.mnn.com/.*/120x60/ -# ||mmosite.com/sponsor/ (easylistchina+easylist.txt: 44002) -.mmosite.com/sponsor/ -# ||mmorpg.com/images/skins/ (easylistchina+easylist.txt: 44001) -.mmorpg.com/images/skins/ -# ||mmorpg.com/images/mr_ss_ (easylistchina+easylist.txt: 44000) -.mmorpg.com/images/mr_ss_ -# ||mmorpg.com/images/*_hots_r0.jpg (easylistchina+easylist.txt: 43999) -.mmorpg.com/images/.*_hots_r0\.jpg -# ||mmoculture.com/wp-content/uploads/*-background- (easylistchina+easylist.txt: 43998) -.mmoculture.com/wp-content/uploads/.*-background- -# ||mlb.com^*/sponsorship/ (easylistchina+easylist.txt: 43996) -.mlb.com/.*/sponsorship/ -# ||mlb.com/images/*_videoskin_*.jpg (easylistchina+easylist.txt: 43995) -.mlb.com/images/.*_videoskin_.*\.jpg -# ||mizzima.com/images/banners/ (easylistchina+easylist.txt: 43994) -.mizzima.com/images/banners/ -# ||mixx96.com/images/banners/ (easylistchina+easylist.txt: 43993) -.mixx96.com/images/banners/ -# ||mixfm.co.za^*/tallspon (easylistchina+easylist.txt: 43992) -.mixfm.co.za/.*/tallspon -# ||mixfm.co.za/images/banner (easylistchina+easylist.txt: 43991) -.mixfm.co.za/images/banner -# ||misterwhat.co.uk/business-company-300/ (easylistchina+easylist.txt: 43990) -.misterwhat.co.uk/business-company-300/ -# ||mirrorstack.com/?q=r_ads (easylistchina+easylist.txt: 43989) -.mirrorstack.com/\?q=r_ads -# ||mirrorcreator.com/js/pu_ad.js (easylistchina+easylist.txt: 43988) -.mirrorcreator.com/js/pu_ad\.js -# ||mirrorcreator.com/js/mpop.js (easylistchina+easylist.txt: 43987) -.mirrorcreator.com/js/mpop\.js -# ||mirror.co.uk^*_promos_ (easylistchina+easylist.txt: 43986) -.mirror.co.uk/.*_promos_ -# ||mirror.co.uk^*/sponsors/ (easylistchina+easylist.txt: 43985) -.mirror.co.uk/.*/sponsors/ -# ||mirror.co.uk^*/gutters/ (easylistchina+easylist.txt: 43984) -.mirror.co.uk/.*/gutters/ -# ||minnpost.com^*/sponsor/ (easylistchina+easylist.txt: 43983) -.minnpost.com/.*/sponsor/ -# ||mininova.org/js/vidukilayer.js (easylistchina+easylist.txt: 43982) -.mininova.org/js/vidukilayer\.js -# ||miniclipcdn.com/images/takeovers/ (easylistchina+easylist.txt: 43981) -.miniclipcdn.com/images/takeovers/ -# ||mindfood.com/upload/images/wallpaper_images/ (easylistchina+easylist.txt: 43980) -.mindfood.com/upload/images/wallpaper_images/ -# ||milanounited.co.za/images/sponsor_ (easylistchina+easylist.txt: 43979) -.milanounited.co.za/images/sponsor_ -# ||mikejung.biz/images/*/728x90xLiquidWeb_ (easylistchina+easylist.txt: 43978) -.mikejung.biz/images/.*/728x90xLiquidWeb_ -# ||mightyupload.com/popuu.js (easylistchina+easylist.txt: 43977) -.mightyupload.com/popuu\.js -# ||midlandsradio.fm/bms/ (easylistchina+easylist.txt: 43976) -.midlandsradio.fm/bms/ -# ||middle-east-online.com^*/meoadv/ (easylistchina+easylist.txt: 43975) -.middle-east-online.com/.*/meoadv/ -# ||michronicleonline.com/images/banners/ (easylistchina+easylist.txt: 43974) -.michronicleonline.com/images/banners/ -# ||micast.tv/clean.php (easylistchina+easylist.txt: 43973) -.micast.tv/clean\.php -# ||miamiherald.com^*/teamfanshop/ (easylistchina+easylist.txt: 43972) -.miamiherald.com/.*/teamfanshop/ -# ||miamiherald.com^*/dealsaver/ (easylistchina+easylist.txt: 43971) -.miamiherald.com/.*/dealsaver/ -# ||mi-pro.co.uk/banners/ (easylistchina+easylist.txt: 43970) -.mi-pro.co.uk/banners/ -# ||mhvillage.com/ppc.php? (easylistchina+easylist.txt: 43969) -.mhvillage.com/ppc\.php\? -# ||mgnetwork.com/dealtaker/ (easylistchina+easylist.txt: 43968) -.mgnetwork.com/dealtaker/ -# ||mgid.com/ban/ (easylistchina+easylist.txt: 43967) -.mgid.com/ban/ -# ||mg.co.za^*/wallpaper (easylistchina+easylist.txt: 43966) -.mg.co.za/.*/wallpaper -# ||mfcdn.net/media/*right (easylistchina+easylist.txt: 43963) -.mfcdn.net/media/.*right -# ||mfcdn.net/media/*left (easylistchina+easylist.txt: 43962) -.mfcdn.net/media/.*left -# ||metromedia.co.za/bannersys/banners/ (easylistchina+easylist.txt: 43961) -.metromedia.co.za/bannersys/banners/ -# ||metrolyrics.com/js/min/tonefuse.js (easylistchina+easylist.txt: 43960) -.metrolyrics.com/js/min/tonefuse\.js -# ||metradar.ch^*/banner_ (easylistchina+easylist.txt: 43959) -.metradar.ch/.*/banner_ -# ||meteox.com/bannerdetails.aspx? (easylistchina+easylist.txt: 43958) -.meteox.com/bannerdetails\.aspx\? -# ||meteox.co.uk/bannerdetails.aspx? (easylistchina+easylist.txt: 43957) -.meteox.co.uk/bannerdetails\.aspx\? -# ||meteovista.co.uk/go/banner/ (easylistchina+easylist.txt: 43956) -.meteovista.co.uk/go/banner/ -# ||meteomedia.com^*&placement (easylistchina+easylist.txt: 43955) -.meteomedia.com/.*&placement -# ||messianictimes.com/images/Word%20of%20Messiah%20Ministries1.png (easylistchina+easylist.txt: 43954) -.messianictimes.com/images/Word%20of%20Messiah%20Ministries1\.png -# ||messianictimes.com/images/MJBI.org.gif (easylistchina+easylist.txt: 43953) -.messianictimes.com/images/MJBI\.org\.gif -# ||messianictimes.com/images/Jews%20for%20Jesus%20Banner.png (easylistchina+easylist.txt: 43952) -.messianictimes.com/images/Jews%20for%20Jesus%20Banner\.png -# ||messianictimes.com/images/Israel%20Today%20Logo.png (easylistchina+easylist.txt: 43951) -.messianictimes.com/images/Israel%20Today%20Logo\.png -# ||messianictimes.com/images/banners/ (easylistchina+easylist.txt: 43950) -.messianictimes.com/images/banners/ -# ||messianictimes.com/images/4-13/reach.jpg (easylistchina+easylist.txt: 43949) -.messianictimes.com/images/4-13/reach\.jpg -# ||messianictimes.com/images/1-13/ba_mhfinal_ (easylistchina+easylist.txt: 43948) -.messianictimes.com/images/1-13/ba_mhfinal_ -# ||merriam-webster.com^*/accipiter.js (easylistchina+easylist.txt: 43947) -.merriam-webster.com/.*/accipiter\.js -# ||merriam-webster.com/creative.php? (easylistchina+easylist.txt: 43946) -.merriam-webster.com/creative\.php\? -# ||mentalfloss.com^*-skin- (easylistchina+easylist.txt: 43945) -.mentalfloss.com/.*-skin- -# ||menafn.com^*/banner_ (easylistchina+easylist.txt: 43944) -.menafn.com/.*/banner_ -# ||memory-alpha.org/__varnish_liftium/ (easylistchina+easylist.txt: 43942) -.memory-alpha.org/__varnish_liftium/ -# ||meizufans.eu/vifocal.gif (easylistchina+easylist.txt: 43941) -.meizufans.eu/vifocal\.gif -# ||meizufans.eu/merimobiles.gif (easylistchina+easylist.txt: 43940) -.meizufans.eu/merimobiles\.gif -# ||meizufans.eu/efox.gif (easylistchina+easylist.txt: 43939) -.meizufans.eu/efox\.gif -# ||megauploadtrend.com/iframe/if.php? (easylistchina+easylist.txt: 43937) -.megauploadtrend.com/iframe/if\.php\? -# ||megashares.com/cache_program_banner.html (easylistchina+easylist.txt: 43935) -.megashares.com/cache_program_banner\.html -# ||megasearch.us/turboflirt.gif (easylistchina+easylist.txt: 43934) -.megasearch.us/turboflirt\.gif -# ||megasearch.us/ifx/ifx.php? (easylistchina+easylist.txt: 43933) -.megasearch.us/ifx/ifx\.php\? -# ||meetic.com/js/*/site_under_ (easylistchina+easylist.txt: 43932) -.meetic.com/js/.*/site_under_ -# ||medicaldaily.com/views/images/banners/ (easylistchina+easylist.txt: 43931) -.medicaldaily.com/views/images/banners/ -# ||mediaweek.com.au/storage/*_234x234.jpg? (easylistchina+easylist.txt: 43930) -.mediaweek.com.au/storage/.*_234x234\.jpg\? -# ||mediaupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 43929) -.mediaupdate.co.za/temp/banner_ -# ||mediaticks.com/images/genx.jpg (easylistchina+easylist.txt: 43928) -.mediaticks.com/images/genx\.jpg -# ||mediaticks.com/images/genx-infotech.jpg (easylistchina+easylist.txt: 43927) -.mediaticks.com/images/genx-infotech\.jpg -# ||mediaticks.com/bollywood.jpg (easylistchina+easylist.txt: 43926) -.mediaticks.com/bollywood\.jpg -# ||mediaspanonline.com/inc.php?uri=/&bannerPositions= (easylistchina+easylist.txt: 43923) -.mediaspanonline.com/inc\.php\?uri=/&bannerPositions= -# ||mediaspanonline.com/images/buy-itunes.png (easylistchina+easylist.txt: 43922) -.mediaspanonline.com/images/buy-itunes\.png -# ||mediamgr.ugo.com^ (easylistchina+easylist.txt: 43921) -.mediamgr.ugo.com -# ||mediafiretrend.com/turboflirt.gif (easylistchina+easylist.txt: 43920) -.mediafiretrend.com/turboflirt\.gif -# ||mediafiretrend.com/ifx/ifx.php? (easylistchina+easylist.txt: 43919) -.mediafiretrend.com/ifx/ifx\.php\? -# ||mediafire.re/popup.js (easylistchina+easylist.txt: 43918) -.mediafire.re/popup\.js -# ||mediafire.com^*/rockmelt_tabcontent.jpg (easylistchina+easylist.txt: 43917) -.mediafire.com/.*/rockmelt_tabcontent\.jpg -# ||mediafire.com/templates/linkto/ (easylistchina+easylist.txt: 43915) -.mediafire.com/templates/linkto/ -# ||mediafire.com/images/rockmelt/ (easylistchina+easylist.txt: 43914) -.mediafire.com/images/rockmelt/ -# ||media.abc.go.com^*/callouts/ (easylistchina+easylist.txt: 43912) -.media.abc.go.com/.*/callouts/ -# ||media-mgmt.armorgames.com^ (easylistchina+easylist.txt: 43911) -.media-mgmt.armorgames.com -# ||media-imdb.com^*/affiliates/ (easylistchina+easylist.txt: 43909) -.media-imdb.com/.*/affiliates/ -# ||media-imdb.com/images/*/mptv_banner_ (easylistchina+easylist.txt: 43908) -.media-imdb.com/images/.*/mptv_banner_ -# ||media-delivery.armorgames.com^ (easylistchina+easylist.txt: 43907) -.media-delivery.armorgames.com -# ||medhelp.org/hserver/ (easylistchina+easylist.txt: 43906) -.medhelp.org/hserver/ -# ||mechodownload.com/forum/images/affiliates/ (easylistchina+easylist.txt: 43905) -.mechodownload.com/forum/images/affiliates/ -# ||meanjin.com.au/static/images/sponsors.jpg (easylistchina+easylist.txt: 43904) -.meanjin.com.au/static/images/sponsors\.jpg -# ||mealsandsteals.sandiego6.com^ (easylistchina+easylist.txt: 43903) -.mealsandsteals.sandiego6.com -# ||mcvuk.com/static/banners/ (easylistchina+easylist.txt: 43902) -.mcvuk.com/static/banners/ -# ||mcstatic.com^*/billboard_ (easylistchina+easylist.txt: 43901) -.mcstatic.com/.*/billboard_ -# ||mcsesports.com/images/sponsors/ (easylistchina+easylist.txt: 43900) -.mcsesports.com/images/sponsors/ -# ||mcnews.com.au/banners/ (easylistchina+easylist.txt: 43899) -.mcnews.com.au/banners/ -# ||mcjonline.com/filemanager/userfiles/banners/ (easylistchina+easylist.txt: 43898) -.mcjonline.com/filemanager/userfiles/banners/ -# ||mccont.com/takeover/ (easylistchina+easylist.txt: 43897) -.mccont.com/takeover/ -# ||mccont.com/sda/ (easylistchina+easylist.txt: 43896) -.mccont.com/sda/ -# ||mccont.com/campaign%20management/ (easylistchina+easylist.txt: 43895) -.mccont.com/campaign%20management/ -# ||mbl.is/mm/augl/ (easylistchina+easylist.txt: 43894) -.mbl.is/mm/augl/ -# ||mbl.is/augl/ (easylistchina+easylist.txt: 43893) -.mbl.is/augl/ -# ||mb.hockeybuzz.com^ (easylistchina+easylist.txt: 43892) -.mb.hockeybuzz.com -# ||mb.com.ph^*/skyscraper- (easylistchina+easylist.txt: 43891) -.mb.com.ph/.*/skyscraper- -# ||maxgames.com^*/sponsor_ (easylistchina+easylist.txt: 43890) -.maxgames.com/.*/sponsor_ -# ||maxconsole.com/maxconsole/banners/ (easylistchina+easylist.txt: 43889) -.maxconsole.com/maxconsole/banners/ -# ||mauritiusnews.co.uk/images/banners/ (easylistchina+easylist.txt: 43888) -.mauritiusnews.co.uk/images/banners/ -# ||mathforum.org/images/tutor.gif (easylistchina+easylist.txt: 43887) -.mathforum.org/images/tutor\.gif -# ||mashable.com/tripleclick.html (easylistchina+easylist.txt: 43886) -.mashable.com/tripleclick\.html -# ||mary.com/728_header.php (easylistchina+easylist.txt: 43885) -.mary.com/728_header\.php -# ||marketplace.org^*/support_block/ (easylistchina+easylist.txt: 43884) -.marketplace.org/.*/support_block/ -# ||marketnewsvideo.com/mnvport160.gif (easylistchina+easylist.txt: 43883) -.marketnewsvideo.com/mnvport160\.gif -# ||marketnewsvideo.com/etfchannel/evfad1.gif (easylistchina+easylist.txt: 43882) -.marketnewsvideo.com/etfchannel/evfad1\.gif -# ||marketintelligencecenter.com/images/brokers/ (easylistchina+easylist.txt: 43881) -.marketintelligencecenter.com/images/brokers/ -# ||marketingupdate.co.za/temp/banner_ (easylistchina+easylist.txt: 43880) -.marketingupdate.co.za/temp/banner_ -# ||marketingsolutions.yahoo.com^ (easylistchina+easylist.txt: 43879) -.marketingsolutions.yahoo.com -# ||marketingpilgrim.com/wp-content/uploads/*/trackur.com- (easylistchina+easylist.txt: 43878) -.marketingpilgrim.com/wp-content/uploads/.*/trackur\.com- -# ||marineterms.com/images/banners/ (easylistchina+easylist.txt: 43877) -.marineterms.com/images/banners/ -# ||marengo-uniontimes.com/images/banners/ (easylistchina+easylist.txt: 43876) -.marengo-uniontimes.com/images/banners/ -# ||maravipost.com/images/banners/ (easylistchina+easylist.txt: 43875) -.maravipost.com/images/banners/ -# ||mapsofindia.com/widgets/tribalfusionboxadd.html (easylistchina+easylist.txt: 43874) -.mapsofindia.com/widgets/tribalfusionboxadd\.html -# ||manxradio.com^*/banners_ (easylistchina+easylist.txt: 43873) -.manxradio.com/.*/banners_ -# ||manutd.com^*/Sponsors/ (easylistchina+easylist.txt: 43872) -.manutd.com/.*/Sponsors/ -# ||manilatimes.net/images/banners/ (easylistchina+easylist.txt: 43871) -.manilatimes.net/images/banners/ -# ||manicapost.com^*/banners/ (easylistchina+easylist.txt: 43870) -.manicapost.com/.*/banners/ -# ||maniastreaming.com/pp2/ (easylistchina+easylist.txt: 43869) -.maniastreaming.com/pp2/ -# ||mani-admin-plugin.com^*/banners/ (easylistchina+easylist.txt: 43868) -.mani-admin-plugin.com/.*/banners/ -# ||manhattantimesnews.com/images/banners/ (easylistchina+easylist.txt: 43867) -.manhattantimesnews.com/images/banners/ -# ||mangaupdates.com/affiliates/ (easylistchina+easylist.txt: 43866) -.mangaupdates.com/affiliates/ -# ||mangarush.com/xtend.php (easylistchina+easylist.txt: 43865) -.mangarush.com/xtend\.php -# ||mangareader.net/images/800-x-100 (easylistchina+easylist.txt: 43864) -.mangareader.net/images/800-x-100 -# ||mangafox.com/media/game321/ (easylistchina+easylist.txt: 43863) -.mangafox.com/media/game321/ -# ||malwaredomains.com/ra.jpg (easylistchina+easylist.txt: 43862) -.malwaredomains.com/ra\.jpg -# ||maltatoday.com.mt/ui_frontend/display_external_module/ (easylistchina+easylist.txt: 43861) -.maltatoday.com.mt/ui_frontend/display_external_module/ -# ||malaysiakini.com/misc/banners/ (easylistchina+easylist.txt: 43860) -.malaysiakini.com/misc/banners/ -# ||malaysiabay.org^*creatives.php? (easylistchina+easylist.txt: 43859) -.malaysiabay.org/.*creatives\.php\? -# ||malaysiabay.org^*/creative.js (easylistchina+easylist.txt: 43858) -.malaysiabay.org/.*/creative\.js -# ||makeagif.com/parts/fiframe.php (easylistchina+easylist.txt: 43857) -.makeagif.com/parts/fiframe\.php -# ||majorgeeks.com^*/banners/ (easylistchina+easylist.txt: 43856) -.majorgeeks.com/.*/banners/ -# ||majorgeeks.com/images/mg120.jpg (easylistchina+easylist.txt: 43855) -.majorgeeks.com/images/mg120\.jpg -# ||majorgeeks.com/images/mb-hb-2.jpg (easylistchina+easylist.txt: 43854) -.majorgeeks.com/images/mb-hb-2\.jpg -# ||majorgeeks.com/images/download_sd_ (easylistchina+easylist.txt: 43853) -.majorgeeks.com/images/download_sd_ -# ||majorgeeks.com/images/*_336x280.jpg (easylistchina+easylist.txt: 43852) -.majorgeeks.com/images/.*_336x280\.jpg -# ||majorgeeks.com/aff/ (easylistchina+easylist.txt: 43851) -.majorgeeks.com/aff/ -# ||mailinator.com^*/clickbanner.jpg (easylistchina+easylist.txt: 43850) -.mailinator.com/.*/clickbanner\.jpg -# ||mailinator.com/images/abine/leaderboard- (easylistchina+easylist.txt: 43849) -.mailinator.com/images/abine/leaderboard- -# ||mail.yahoo.com/neo/mbimg?av/curveball/ds/ (easylistchina+easylist.txt: 43848) -.mail.yahoo.com/neo/mbimg\?av/curveball/ds/ -# ||mail.yahoo.com/mc/md.php? (easylistchina+easylist.txt: 43847) -.mail.yahoo.com/mc/md\.php\? -# ||madville.com/afs.php (easylistchina+easylist.txt: 43846) -.madville.com/afs\.php -# ||madskristensen.net/discount2.js (easylistchina+easylist.txt: 43845) -.madskristensen.net/discount2\.js -# ||mads.dailymail.co.uk^ (easylistchina+easylist.txt: 43844) -.mads.dailymail.co.uk -# ||macworld.com/ads/ (easylistchina+easylist.txt: 43842) -.macworld.com/ads/ -# ||macworld.co.uk^*/textdeals/ (easylistchina+easylist.txt: 43841) -.macworld.co.uk/.*/textdeals/ -# ||macworld.co.uk/promo/ (easylistchina+easylist.txt: 43840) -.macworld.co.uk/promo/ -# ||macupdate.com/js/google_service.js (easylistchina+easylist.txt: 43839) -.macupdate.com/js/google_service\.js -# ||macobserver.com^*/deal_brothers/ (easylistchina+easylist.txt: 43838) -.macobserver.com/.*/deal_brothers/ -# ||macobserver.com/js/givetotmo.js (easylistchina+easylist.txt: 43837) -.macobserver.com/js/givetotmo\.js -# ||macmillandictionary.com/info/frame.html?zone= (easylistchina+easylist.txt: 43836) -.macmillandictionary.com/info/frame\.html\?zone= -# ||maciverse.mangoco.netdna-cdn.com^*banner (easylistchina+easylist.txt: 43835) -.maciverse.mangoco.netdna-cdn.com/.*banner -# ||macintouch.com/images/owc_ (easylistchina+easylist.txt: 43834) -.macintouch.com/images/owc_ -# ||macintouch.com/images/amaz_ (easylistchina+easylist.txt: 43833) -.macintouch.com/images/amaz_ -# ||machovideo.com/img/site/postimg2/rotate.php (easylistchina+easylist.txt: 43832) -.machovideo.com/img/site/postimg2/rotate\.php -# ||macblurayplayer.com/image/amazon- (easylistchina+easylist.txt: 43831) -.macblurayplayer.com/image/amazon- -# ||macaunews.com.mo/images/stories/banners/ (easylistchina+easylist.txt: 43830) -.macaunews.com.mo/images/stories/banners/ -# ||macaudailytimes.com.mo/files/banners/ (easylistchina+easylist.txt: 43829) -.macaudailytimes.com.mo/files/banners/ -# ||m4carbine.net/tabs/ (easylistchina+easylist.txt: 43828) -.m4carbine.net/tabs/ -# ||m-w.com/creative.php (easylistchina+easylist.txt: 43827) -.m-w.com/creative\.php -# ||lyricsfreak.com^*/overlay.js (easylistchina+easylist.txt: 43826) -.lyricsfreak.com/.*/overlay\.js -# ||lygo.com/scripts/catman/ (easylistchina+easylist.txt: 43824) -.lygo.com/scripts/catman/ -# ||lycos.com/catman/ (easylistchina+easylist.txt: 43823) -.lycos.com/catman/ -# ||lw2.gamecopyworld.com^ (easylistchina+easylist.txt: 43822) -.lw2.gamecopyworld.com -# ||luxury4play.com^*/ads/ (easylistchina+easylist.txt: 43819) -.luxury4play.com/.*/ads/ -# ||luckyshare.net/images/sda/ (easylistchina+easylist.txt: 43818) -.luckyshare.net/images/sda/ -# ||luckyshare.net/images/2top.png (easylistchina+easylist.txt: 43817) -.luckyshare.net/images/2top\.png -# ||luckyshare.net/images/1gotlucky.png (easylistchina+easylist.txt: 43816) -.luckyshare.net/images/1gotlucky\.png -# ||lucianne.com^*_*.html (easylistchina+easylist.txt: 43815) -.lucianne.com/.*_.*\.html -# ||lshunter.tv/images/bets/ (easylistchina+easylist.txt: 43813) -.lshunter.tv/images/bets/ -# ||lowyat.net/mainpage/background.jpg (easylistchina+easylist.txt: 43812) -.lowyat.net/mainpage/background\.jpg -# ||lowyat.net/lowyat/lowyat-bg.jpg (easylistchina+easylist.txt: 43811) -.lowyat.net/lowyat/lowyat-bg\.jpg -# ||lowendbox.com/wp-content/themes/leb/banners/ (easylistchina+easylist.txt: 43810) -.lowendbox.com/wp-content/themes/leb/banners/ -# ||lowellsun.com/litebanner/ (easylistchina+easylist.txt: 43809) -.lowellsun.com/litebanner/ -# ||lowbird.com/lbpun.php (easylistchina+easylist.txt: 43808) -.lowbird.com/lbpun\.php -# ||lowbird.com/lbpu.php (easylistchina+easylist.txt: 43807) -.lowbird.com/lbpu\.php -# ||lostrabbitmedia.com/images/banners/ (easylistchina+easylist.txt: 43806) -.lostrabbitmedia.com/images/banners/ -# ||looky.hyves.org^ (easylistchina+easylist.txt: 43805) -.looky.hyves.org -# ||lookbook.nu/show_skyscraper.html (easylistchina+easylist.txt: 43803) -.lookbook.nu/show_skyscraper\.html -# ||lookbook.nu/show_leaderboard.html (easylistchina+easylist.txt: 43802) -.lookbook.nu/show_leaderboard\.html -# ||londonstockexchange.com^*/fx.gif (easylistchina+easylist.txt: 43801) -.londonstockexchange.com/.*/fx\.gif -# ||londonprivaterentals.standard.co.uk^ (easylistchina+easylist.txt: 43800) -.londonprivaterentals.standard.co.uk -# ||london2012.com/imgml/partners/footer/ (easylistchina+easylist.txt: 43799) -.london2012.com/imgml/partners/footer/ -# ||london2012.com/img/sponsors/ (easylistchina+easylist.txt: 43798) -.london2012.com/img/sponsors/ -# ||lolzbook.com/test/ (easylistchina+easylist.txt: 43797) -.lolzbook.com/test/ -# ||loleasy.com^*/adsmanager.js (easylistchina+easylist.txt: 43796) -.loleasy.com/.*/adsmanager\.js -# ||loleasy.com/promo/ (easylistchina+easylist.txt: 43795) -.loleasy.com/promo/ -# ||logotv.com/content/skins/ (easylistchina+easylist.txt: 43794) -.logotv.com/content/skins/ -# ||logoopenstock.com/img/banners/ (easylistchina+easylist.txt: 43793) -.logoopenstock.com/img/banners/ -# ||locanto.co.za/run/afcbackfill/ (easylistchina+easylist.txt: 43792) -.locanto.co.za/run/afcbackfill/ -# ||localvictory.com^*/Trailblazer-Ad.png (easylistchina+easylist.txt: 43791) -.localvictory.com/.*/Trailblazer-Ad\.png -# ||localdirectories.com.au^*/bannerimages/ (easylistchina+easylist.txt: 43790) -.localdirectories.com.au/.*/bannerimages/ -# ||lmgtfy.com/s/images/ls_ (easylistchina+easylist.txt: 43789) -.lmgtfy.com/s/images/ls_ -# ||ll.a.hulu.com^ (easylistchina+easylist.txt: 43788) -.ll.a.hulu.com -# ||livingscoop.com/vastload.php (easylistchina+easylist.txt: 43787) -.livingscoop.com/vastload\.php -# ||livetvcenter.com/satellitedirect_ (easylistchina+easylist.txt: 43786) -.livetvcenter.com/satellitedirect_ -# ||livetv.ru/mb/ (easylistchina+easylist.txt: 43785) -.livetv.ru/mb/ -# ||livetradingnews.com/wp-content/uploads/vamp_cigarettes.png (easylistchina+easylist.txt: 43784) -.livetradingnews.com/wp-content/uploads/vamp_cigarettes\.png -# ||livestream.com^*/overlay/ (easylistchina+easylist.txt: 43783) -.livestream.com/.*/overlay/ -# ||livescore.in/res/image/bookmaker-list.png (easylistchina+easylist.txt: 43781) -.livescore.in/res/image/bookmaker-list\.png -# ||liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn.gif (easylistchina+easylist.txt: 43780) -.liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn\.gif -# ||livejasmin.com/freechat.php (easylistchina+easylist.txt: 43779) -.livejasmin.com/freechat\.php -# ||live-proxy.com/vectrotunnel-logo.jpg (easylistchina+easylist.txt: 43778) -.live-proxy.com/vectrotunnel-logo\.jpg -# ||live-proxy.com/hide-my-ass.gif (easylistchina+easylist.txt: 43777) -.live-proxy.com/hide-my-ass\.gif -# ||littleindia.com/files/banners/ (easylistchina+easylist.txt: 43776) -.littleindia.com/files/banners/ -# ||liquidcompass.net^*/purchase_ (easylistchina+easylist.txt: 43775) -.liquidcompass.net/.*/purchase_ -# ||liquidcompass.net/playerapi/redirect/ (easylistchina+easylist.txt: 43774) -.liquidcompass.net/playerapi/redirect/ -# ||lionsrugby.co.za^*/sponsors. (easylistchina+easylist.txt: 43773) -.lionsrugby.co.za/.*/sponsors\. -# ||linuxsat-support.com/vsa_banners/ (easylistchina+easylist.txt: 43771) -.linuxsat-support.com/vsa_banners/ -# ||linuxmint.com/pictures/sponsors/ (easylistchina+easylist.txt: 43770) -.linuxmint.com/pictures/sponsors/ -# ||linuxmint.com/img/sponsor/ (easylistchina+easylist.txt: 43769) -.linuxmint.com/img/sponsor/ -# ||linuxinsider.com/images/sda/ (easylistchina+easylist.txt: 43768) -.linuxinsider.com/images/sda/ -# ||linksrank.com/links/ (easylistchina+easylist.txt: 43767) -.linksrank.com/links/ -# ||linksave.in^*/downloadbutton_highspeed.png (easylistchina+easylist.txt: 43766) -.linksave.in/.*/downloadbutton_highspeed\.png -# ||linksave.in/img/downloadbutton_sh.png (easylistchina+easylist.txt: 43765) -.linksave.in/img/downloadbutton_sh\.png -# ||linksave.in/img/downloadbutton_hs.png (easylistchina+easylist.txt: 43764) -.linksave.in/img/downloadbutton_hs\.png -# ||linksave.in/img/downloadbutton_alt.png (easylistchina+easylist.txt: 43763) -.linksave.in/img/downloadbutton_alt\.png -# ||linksafe.info^*/mirror.png (easylistchina+easylist.txt: 43762) -.linksafe.info/.*/mirror\.png -# ||linkmoon.net/banners/ (easylistchina+easylist.txt: 43761) -.linkmoon.net/banners/ -# ||linkfm.co.za/images/banners/ (easylistchina+easylist.txt: 43760) -.linkfm.co.za/images/banners/ -# ||linkcentre.com/top_fp.php (easylistchina+easylist.txt: 43759) -.linkcentre.com/top_fp\.php -# ||linguee.com/banner/ (easylistchina+easylist.txt: 43758) -.linguee.com/banner/ -# ||limetorrentlinkmix.com/rd18/dop.js (easylistchina+easylist.txt: 43757) -.limetorrentlinkmix.com/rd18/dop\.js -# ||limesurvey.org/images/banners/ (easylistchina+easylist.txt: 43756) -.limesurvey.org/images/banners/ -# ||lifetips.com/sponsors/ (easylistchina+easylist.txt: 43755) -.lifetips.com/sponsors/ -# ||lifeinqueensland.com/images/156x183a_ (easylistchina+easylist.txt: 43754) -.lifeinqueensland.com/images/156x183a_ -# ||life.imagepix.org^ (easylistchina+easylist.txt: 43753) -.life.imagepix.org -# ||licensing.biz/media/banners/ (easylistchina+easylist.txt: 43752) -.licensing.biz/media/banners/ -# ||libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300.gif? (easylistchina+easylist.txt: 43751) -.libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300\.gif\? -# ||lfgcomic.com/wp-content/uploads/*/PageSkin_ (easylistchina+easylist.txt: 43750) -.lfgcomic.com/wp-content/uploads/.*/PageSkin_ -# ||lfcimages.com^*/sponsor- (easylistchina+easylist.txt: 43749) -.lfcimages.com/.*/sponsor- -# ||lfcimages.com^*/partner- (easylistchina+easylist.txt: 43748) -.lfcimages.com/.*/partner- -# ||letswatchsomething.com/images/filestreet_banner.jpg (easylistchina+easylist.txt: 43747) -.letswatchsomething.com/images/filestreet_banner\.jpg -# ||letour.fr/img/v6/sprite_partners_2x.png (easylistchina+easylist.txt: 43746) -.letour.fr/img/v6/sprite_partners_2x\.png -# ||letitbit.net/images/other/inst_forex_ (easylistchina+easylist.txt: 43745) -.letitbit.net/images/other/inst_forex_ -# ||lespagesjaunesafrique.com/bandeaux/ (easylistchina+easylist.txt: 43744) -.lespagesjaunesafrique.com/bandeaux/ -# ||lens101.com/images/banner.jpg (easylistchina+easylist.txt: 43743) -.lens101.com/images/banner\.jpg -# ||legalbusinessonline.com/popup/albpartners.aspx (easylistchina+easylist.txt: 43742) -.legalbusinessonline.com/popup/albpartners\.aspx -# ||lecydre.com/proxy.png (easylistchina+easylist.txt: 43741) -.lecydre.com/proxy\.png -# ||learnspanishtoday.com/aff/img/banners/ (easylistchina+easylist.txt: 43740) -.learnspanishtoday.com/aff/img/banners/ -# ||learnphotoediting.net/banners/ (easylistchina+easylist.txt: 43739) -.learnphotoediting.net/banners/ -# ||leagueunlimited.com/images/rooty/ (easylistchina+easylist.txt: 43738) -.leagueunlimited.com/images/rooty/ -# ||leadership.ng/cheki- (easylistchina+easylist.txt: 43737) -.leadership.ng/cheki- -# ||leader.co.za/leadership/banners/ (easylistchina+easylist.txt: 43736) -.leader.co.za/leadership/banners/ -# ||lazygirls.info/click.php (easylistchina+easylist.txt: 43735) -.lazygirls.info/click\.php -# ||lazygamer.net/kalahari.gif (easylistchina+easylist.txt: 43734) -.lazygamer.net/kalahari\.gif -# ||latex-community.org/images/banners/ (easylistchina+easylist.txt: 43733) -.latex-community.org/images/banners/ -# ||lasttorrents.org/pcmadd.swf (easylistchina+easylist.txt: 43732) -.lasttorrents.org/pcmadd\.swf -# ||lastminute.com^*/universal.html? (easylistchina+easylist.txt: 43731) -.lastminute.com/.*/universal\.html\? -# ||laredodaily.com/images/banners/ (easylistchina+easylist.txt: 43730) -.laredodaily.com/images/banners/ -# ||laptopmag.com/images/sponsorships/ (easylistchina+easylist.txt: 43729) -.laptopmag.com/images/sponsorships/ -# ||laobserved.com/tch-ad.jpg (easylistchina+easylist.txt: 43728) -.laobserved.com/tch-ad\.jpg -# ||lankabusinessonline.com/images/banners/ (easylistchina+easylist.txt: 43727) -.lankabusinessonline.com/images/banners/ -# ||lancasteronline.com^*/weather_sponsor.gif (easylistchina+easylist.txt: 43726) -.lancasteronline.com/.*/weather_sponsor\.gif -# ||lancasteronline.com^*/done_deal/ (easylistchina+easylist.txt: 43725) -.lancasteronline.com/.*/done_deal/ -# ||laliga.es/img/patrocinadores- (easylistchina+easylist.txt: 43724) -.laliga.es/img/patrocinadores- -# ||lake-link.com/images/sponsorLogos/ (easylistchina+easylist.txt: 43723) -.lake-link.com/images/sponsorLogos/ -# ||lagacetanewspaper.com^*/banners/ (easylistchina+easylist.txt: 43722) -.lagacetanewspaper.com/.*/banners/ -# ||labx.com/web/banners/ (easylistchina+easylist.txt: 43721) -.labx.com/web/banners/ -# ||labtimes.org/banner/ (easylistchina+easylist.txt: 43720) -.labtimes.org/banner/ -# ||l4dmaps.com/img/right_gameservers.gif (easylistchina+easylist.txt: 43719) -.l4dmaps.com/img/right_gameservers\.gif -# ||l4dmaps.com/i/right_dllme.gif (easylistchina+easylist.txt: 43718) -.l4dmaps.com/i/right_dllme\.gif -# ||l.yimg.com/mq/a/ (easylistchina+easylist.txt: 43717) -.l.yimg.com/mq/a/ -# ||l.yimg.com/ao/i/ad/ (easylistchina+easylist.txt: 43716) -.l.yimg.com/ao/i/ad/ -# ||kyivpost.com/media/banners/ (easylistchina+easylist.txt: 43714) -.kyivpost.com/media/banners/ -# ||kxlh.com/images/banner/ (easylistchina+easylist.txt: 43713) -.kxlh.com/images/banner/ -# ||kwikupload.com/images/dlbtn.png (easylistchina+easylist.txt: 43710) -.kwikupload.com/images/dlbtn\.png -# ||kwanalu.co.za/upload/ad/ (easylistchina+easylist.txt: 43709) -.kwanalu.co.za/upload/ad/ -# ||kvcr.org^*/sponsors/ (easylistchina+easylist.txt: 43708) -.kvcr.org/.*/sponsors/ -# ||kuwaittimes.net/banners/ (easylistchina+easylist.txt: 43707) -.kuwaittimes.net/banners/ -# ||kukuplay.com/upload/*.swf (easylistchina+easylist.txt: 43706) -.kukuplay.com/upload/.*\.swf -# ||kuiken.co/static/w.js (easylistchina+easylist.txt: 43705) -.kuiken.co/static/w\.js -# ||ktradionetwork.com^*/banners/ (easylistchina+easylist.txt: 43704) -.ktradionetwork.com/.*/banners/ -# ||kstp.com^*/flexhousepromotions/ (easylistchina+easylist.txt: 43703) -.kstp.com/.*/flexhousepromotions/ -# ||ksstradio.com/wp-content/banners/ (easylistchina+easylist.txt: 43702) -.ksstradio.com/wp-content/banners/ -# ||krzk.com/uploads/banners/ (easylistchina+easylist.txt: 43701) -.krzk.com/uploads/banners/ -# ||krebsonsecurity.com/b-kb/ (easylistchina+easylist.txt: 43699) -.krebsonsecurity.com/b-kb/ -# ||krebsonsecurity.com/b-ga/ (easylistchina+easylist.txt: 43698) -.krebsonsecurity.com/b-ga/ -# ||krapps.com^*-banner- (easylistchina+easylist.txt: 43697) -.krapps.com/.*-banner- -# ||kovideo.net^*.php?user_ (easylistchina+easylist.txt: 43696) -.kovideo.net/.*\.php\?user_ -# ||koreatimes.co.kr/www/images/bn/ (easylistchina+easylist.txt: 43695) -.koreatimes.co.kr/www/images/bn/ -# ||koreatimes.co.kr/upload/ad/ (easylistchina+easylist.txt: 43694) -.koreatimes.co.kr/upload/ad/ -# ||koreatimes.co.kr/images/bn/ (easylistchina+easylist.txt: 43693) -.koreatimes.co.kr/images/bn/ -# ||koreatimes.co.kr/ad/ (easylistchina+easylist.txt: 43692) -.koreatimes.co.kr/ad/ -# ||koreanmovie.com/img/banner/banner.jpg (easylistchina+easylist.txt: 43691) -.koreanmovie.com/img/banner/banner\.jpg -# ||koraliga.com/open.js (easylistchina+easylist.txt: 43690) -.koraliga.com/open\.js -# ||kontraband.com/media/takeovers/ (easylistchina+easylist.txt: 43689) -.kontraband.com/media/takeovers/ -# ||kongregate.com/images/help_devs_*.png (easylistchina+easylist.txt: 43688) -.kongregate.com/images/help_devs_.*\.png -# ||kompas.com/js_kompasads.php (easylistchina+easylist.txt: 43687) -.kompas.com/js_kompasads\.php -# ||komando.com^*/k2-interstitial.min.js? (easylistchina+easylist.txt: 43686) -.komando.com/.*/k2-interstitial\.min\.js\? -# ||kob.com/kobtvimages/flexhousepromotions/ (easylistchina+easylist.txt: 43685) -.kob.com/kobtvimages/flexhousepromotions/ -# ||knpr.org/common/sponsors/ (easylistchina+easylist.txt: 43684) -.knpr.org/common/sponsors/ -# ||knowthecause.com/images/banners/ (easylistchina+easylist.txt: 43683) -.knowthecause.com/images/banners/ -# ||knowledgespeak.com/images/banner/ (easylistchina+easylist.txt: 43682) -.knowledgespeak.com/images/banner/ -# ||knowfree.net^*/ezm125x125.gif (easylistchina+easylist.txt: 43681) -.knowfree.net/.*/ezm125x125\.gif -# ||knco.com/wp-content/uploads/wpt/ (easylistchina+easylist.txt: 43680) -.knco.com/wp-content/uploads/wpt/ -# ||kncminer.com/userfiles/image/250_240.jpg (easylistchina+easylist.txt: 43679) -.kncminer.com/userfiles/image/250_240\.jpg -# ||knbr.com^*/banners/ (easylistchina+easylist.txt: 43678) -.knbr.com/.*/banners/ -# ||klm.com^*/fls_redirect.html (easylistchina+easylist.txt: 43677) -.klm.com/.*/fls_redirect\.html -# ||klkdccs.net/pjs/yavli-tools.js (easylistchina+easylist.txt: 43676) -.klkdccs.net/pjs/yavli-tools\.js -# ||klfm967.co.uk/resources/creative/ (easylistchina+easylist.txt: 43675) -.klfm967.co.uk/resources/creative/ -# ||kleisauke.nl/static/img/bar.gif (easylistchina+easylist.txt: 43674) -.kleisauke.nl/static/img/bar\.gif -# ||klav1230am.com^*/banners/ (easylistchina+easylist.txt: 43673) -.klav1230am.com/.*/banners/ -# ||kjul1047.com^*/clientgraphics/ (easylistchina+easylist.txt: 43672) -.kjul1047.com/.*/clientgraphics/ -# ||kjlhradio.com^*/banners/ (easylistchina+easylist.txt: 43671) -.kjlhradio.com/.*/banners/ -# ||kjlhradio.com^*-300x250. (easylistchina+easylist.txt: 43670) -.kjlhradio.com/.*-300x250\. -# ||kitz.co.uk/files/jump2/ (easylistchina+easylist.txt: 43669) -.kitz.co.uk/files/jump2/ -# ||kitguru.net/wp-content/wrap.jpg (easylistchina+easylist.txt: 43668) -.kitguru.net/wp-content/wrap\.jpg -# ||kitguru.net/wp-content/banners/ (easylistchina+easylist.txt: 43667) -.kitguru.net/wp-content/banners/ -# ||kitguru.net/?kitguru_wrapjs=1&ver= (easylistchina+easylist.txt: 43666) -.kitguru.net/\?kitguru_wrapjs=1&ver= -# ||kitco.com^*/banners/ (easylistchina+easylist.txt: 43665) -.kitco.com/.*/banners/ -# ||kitco.com/ssi/market_ox_deanmg.stm (easylistchina+easylist.txt: 43664) -.kitco.com/ssi/market_ox_deanmg\.stm -# ||kitco.com/ssi/home_ox_deanmg.stm (easylistchina+easylist.txt: 43663) -.kitco.com/ssi/home_ox_deanmg\.stm -# ||kitco.com/ssi/dmg_banner_001.stm (easylistchina+easylist.txt: 43662) -.kitco.com/ssi/dmg_banner_001\.stm -# ||kirupa.com/supporter/ (easylistchina+easylist.txt: 43661) -.kirupa.com/supporter/ -# ||kinox.tv/g.js (easylistchina+easylist.txt: 43660) -.kinox.tv/g\.js -# ||kinox.to/com/ (easylistchina+easylist.txt: 43659) -.kinox.to/com/ -# ||kinox.to/392i921321.js (easylistchina+easylist.txt: 43658) -.kinox.to/392i921321\.js -# ||kingofsat.net/pub/ (easylistchina+easylist.txt: 43657) -.kingofsat.net/pub/ -# ||kingfiles.net/images/bt.png (easylistchina+easylist.txt: 43656) -.kingfiles.net/images/bt\.png -# ||kickoff.com/images/sleeves/ (easylistchina+easylist.txt: 43655) -.kickoff.com/images/sleeves/ -# ||kickasstorrent.ph/kat_adplib.js (easylistchina+easylist.txt: 43654) -.kickasstorrent.ph/kat_adplib\.js -# ||khon2.com^*/sponsors/ (easylistchina+easylist.txt: 43653) -.khon2.com/.*/sponsors/ -# ||khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N.jpg (easylistchina+easylist.txt: 43652) -.khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N\.jpg -# ||khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN.jpg (easylistchina+easylist.txt: 43651) -.khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN\.jpg -# ||kfog.com^*/banners/ (easylistchina+easylist.txt: 43650) -.kfog.com/.*/banners/ -# ||keygen-fm.ru/images/*.swf (easylistchina+easylist.txt: 43649) -.keygen-fm.ru/images/.*\.swf -# ||kexp.org^*/sponsoredby. (easylistchina+easylist.txt: 43648) -.kexp.org/.*/sponsoredby\. -# ||kexp.org^*/sponsor- (easylistchina+easylist.txt: 43647) -.kexp.org/.*/sponsor- -# ||kewlshare.com/reward.html (easylistchina+easylist.txt: 43646) -.kewlshare.com/reward\.html -# ||kermit.macnn.com^ (easylistchina+easylist.txt: 43645) -.kermit.macnn.com -# ||kephyr.com/spywarescanner/banner1.gif (easylistchina+easylist.txt: 43644) -.kephyr.com/spywarescanner/banner1\.gif -# ||kentonline.co.uk/weatherimages/sponsor_ (easylistchina+easylist.txt: 43643) -.kentonline.co.uk/weatherimages/sponsor_ -# ||kentonline.co.uk/weatherimages/SEW.jpg (easylistchina+easylist.txt: 43642) -.kentonline.co.uk/weatherimages/SEW\.jpg -# ||kentonline.co.uk/weatherimages/Britelite.gif (easylistchina+easylist.txt: 43641) -.kentonline.co.uk/weatherimages/Britelite\.gif -# ||kendrickcoleman.com/images/banners/ (easylistchina+easylist.txt: 43640) -.kendrickcoleman.com/images/banners/ -# ||keepvid.com/images/winxdvd- (easylistchina+easylist.txt: 43639) -.keepvid.com/images/winxdvd- -# ||keepvid.com/images/ilivid- (easylistchina+easylist.txt: 43638) -.keepvid.com/images/ilivid- -# ||keepthelighton.vpsboard.com^ (easylistchina+easylist.txt: 43637) -.keepthelighton.vpsboard.com -# ||keenspot.com/images/headerbar- (easylistchina+easylist.txt: 43636) -.keenspot.com/images/headerbar- -# ||kdoctv.net/images/banners/ (easylistchina+easylist.txt: 43635) -.kdoctv.net/images/banners/ -# ||kdnuggets.com/aps/ (easylistchina+easylist.txt: 43634) -.kdnuggets.com/aps/ -# ||kcrw.com/collage-images/itunes.gif (easylistchina+easylist.txt: 43633) -.kcrw.com/collage-images/itunes\.gif -# ||kcrw.com/collage-images/amazon.gif (easylistchina+easylist.txt: 43632) -.kcrw.com/collage-images/amazon\.gif -# ||kblx.com/upload/takeover_ (easylistchina+easylist.txt: 43631) -.kblx.com/upload/takeover_ -# ||kbcradio.eu/img/banner/ (easylistchina+easylist.txt: 43630) -.kbcradio.eu/img/banner/ -# ||kavkisfile.com/images/ly.gif (easylistchina+easylist.txt: 43629) -.kavkisfile.com/images/ly\.gif -# ||kavkisfile.com/images/ly-mini.gif (easylistchina+easylist.txt: 43628) -.kavkisfile.com/images/ly-mini\.gif -# ||kat-ads.torrenticity.com^ (easylistchina+easylist.txt: 43627) -.kat-ads.torrenticity.com -# ||kassfm.co.ke/images/moneygram.gif (easylistchina+easylist.txt: 43626) -.kassfm.co.ke/images/moneygram\.gif -# ||kansascity.com/images/touts/ds_ (easylistchina+easylist.txt: 43625) -.kansascity.com/images/touts/ds_ -# ||kamcity.com/menu/banners/ (easylistchina+easylist.txt: 43624) -.kamcity.com/menu/banners/ -# ||kamcity.com/banager/banners/ (easylistchina+easylist.txt: 43623) -.kamcity.com/banager/banners/ -# ||kaieteurnewsonline.com/revenue/ (easylistchina+easylist.txt: 43622) -.kaieteurnewsonline.com/revenue/ -# ||juventus.com/pics/sponsors/ (easylistchina+easylist.txt: 43621) -.juventus.com/pics/sponsors/ -# ||justsomething.co/wp-content/uploads/*-250x250. (easylistchina+easylist.txt: 43620) -.justsomething.co/wp-content/uploads/.*-250x250\. -# ||just-download.com/banner/ (easylistchina+easylist.txt: 43619) -.just-download.com/banner/ -# ||junocloud.me/promos/ (easylistchina+easylist.txt: 43618) -.junocloud.me/promos/ -# ||jumptags.com/joozit/presentation/images/banners/ (easylistchina+easylist.txt: 43617) -.jumptags.com/joozit/presentation/images/banners/ -# ||jozikids.co.za/uploadimages/140x140_ (easylistchina+easylist.txt: 43616) -.jozikids.co.za/uploadimages/140x140_ -# ||jozikids.co.za/uploadimages/*_140x140_ (easylistchina+easylist.txt: 43615) -.jozikids.co.za/uploadimages/.*_140x140_ -# ||joursouvres.fr^*/pub_ (easylistchina+easylist.txt: 43614) -.joursouvres.fr/.*/pub_ -# ||journeychristiannews.com/images/banners/ (easylistchina+easylist.txt: 43613) -.journeychristiannews.com/images/banners/ -# ||journal-news.net/annoyingpopup/ (easylistchina+easylist.txt: 43612) -.journal-news.net/annoyingpopup/ -# ||joomladigger.com/images/banners/ (easylistchina+easylist.txt: 43611) -.joomladigger.com/images/banners/ -# ||johngaltfla.com/wordpress/wp-content/uploads/*/TB2K_LOGO.jpg (easylistchina+easylist.txt: 43608) -.johngaltfla.com/wordpress/wp-content/uploads/.*/TB2K_LOGO\.jpg -# ||johngaltfla.com/wordpress/wp-content/uploads/*/jmcs_specaialbanner.jpg (easylistchina+easylist.txt: 43607) -.johngaltfla.com/wordpress/wp-content/uploads/.*/jmcs_specaialbanner\.jpg -# ||johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions.png (easylistchina+easylist.txt: 43606) -.johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions\.png -# ||johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge.jpg (easylistchina+easylist.txt: 43605) -.johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge\.jpg -# ||johnbridge.com/vbulletin/banner_rotate.js (easylistchina+easylist.txt: 43604) -.johnbridge.com/vbulletin/banner_rotate\.js -# ||jillianmichaels.com/images/publicsite/advertisingslug.gif (easylistchina+easylist.txt: 43603) -.jillianmichaels.com/images/publicsite/advertisingslug\.gif -# ||jheberg.net/img/mp.png (easylistchina+easylist.txt: 43602) -.jheberg.net/img/mp\.png -# ||jewishyellow.com/pics/banners/ (easylistchina+easylist.txt: 43601) -.jewishyellow.com/pics/banners/ -# ||jewishvoiceny.com/ban2/ (easylistchina+easylist.txt: 43600) -.jewishvoiceny.com/ban2/ -# ||jewishtribune.ca^*/banners/ (easylistchina+easylist.txt: 43599) -.jewishtribune.ca/.*/banners/ -# ||jewishtimes-sj.com/rop/ (easylistchina+easylist.txt: 43598) -.jewishtimes-sj.com/rop/ -# ||jewishnews.co.uk^*banner (easylistchina+easylist.txt: 43597) -.jewishnews.co.uk/.*banner -# ||jewishexponent.com^*/banners/ (easylistchina+easylist.txt: 43596) -.jewishexponent.com/.*/banners/ -# ||jebril.com/sites/default/files/images/top-banners/ (easylistchina+easylist.txt: 43595) -.jebril.com/sites/default/files/images/top-banners/ -# ||jdownloader.org^*/smbanner.png (easylistchina+easylist.txt: 43594) -.jdownloader.org/.*/smbanner\.png -# ||jdownloader.org/_media/screenshots/banner.png (easylistchina+easylist.txt: 43593) -.jdownloader.org/_media/screenshots/banner\.png -# ||jazzandblues.org^*/iTunes_ (easylistchina+easylist.txt: 43592) -.jazzandblues.org/.*/iTunes_ -# ||jayisgames.com/maxcdn_160x250.png (easylistchina+easylist.txt: 43591) -.jayisgames.com/maxcdn_160x250\.png -# ||javascript-coder.com^*/make-form-without-coding.png (easylistchina+easylist.txt: 43590) -.javascript-coder.com/.*/make-form-without-coding\.png -# ||javascript-coder.com^*/form-submit-larger.jpg (easylistchina+easylist.txt: 43589) -.javascript-coder.com/.*/form-submit-larger\.jpg -# ||javamex.com/images/AdFrenchVocabGamesAnim.gif (easylistchina+easylist.txt: 43588) -.javamex.com/images/AdFrenchVocabGamesAnim\.gif -# ||jango.com/assets/promo/1600x1000- (easylistchina+easylist.txt: 43587) -.jango.com/assets/promo/1600x1000- -# ||jame-world.com^*/adv/ (easylistchina+easylist.txt: 43586) -.jame-world.com/.*/adv/ -# ||jamaica-gleaner.com/images/promo/ (easylistchina+easylist.txt: 43585) -.jamaica-gleaner.com/images/promo/ -# ||ixquick.nl/graphics/banner_ (easylistchina+easylist.txt: 43584) -.ixquick.nl/graphics/banner_ -# ||iwebtool.com^*/bannerview.php (easylistchina+easylist.txt: 43583) -.iwebtool.com/.*/bannerview\.php -# ||iurfm.com/images/sponsors/ (easylistchina+easylist.txt: 43582) -.iurfm.com/images/sponsors/ -# ||itworld.com/slideshow/iframe/topimu/ (easylistchina+easylist.txt: 43581) -.itworld.com/slideshow/iframe/topimu/ -# ||itwebafrica.com/images/logos/ (easylistchina+easylist.txt: 43580) -.itwebafrica.com/images/logos/ -# ||itweb.co.za^*sponsoredby (easylistchina+easylist.txt: 43579) -.itweb.co.za/.*sponsoredby -# ||itweb.co.za/sidelogos/ (easylistchina+easylist.txt: 43578) -.itweb.co.za/sidelogos/ -# ||itweb.co.za/logos/ (easylistchina+easylist.txt: 43577) -.itweb.co.za/logos/ -# ||itweb.co.za/banners/ (easylistchina+easylist.txt: 43576) -.itweb.co.za/banners/ -# ||itv.com/adexplore/*/config.xml (easylistchina+easylist.txt: 43574) -.itv.com/adexplore/.*/config\.xml -# ||itpro.co.uk/images/skins/ (easylistchina+easylist.txt: 43573) -.itpro.co.uk/images/skins/ -# ||italiangenealogy.com/images/banners/ (easylistchina+easylist.txt: 43572) -.italiangenealogy.com/images/banners/ -# ||isxdead.com/images/showbox.png (easylistchina+easylist.txt: 43571) -.isxdead.com/images/showbox\.png -# ||isup.me/images/dotbiz_banner.jpg (easylistchina+easylist.txt: 43570) -.isup.me/images/dotbiz_banner\.jpg -# ||israeltoday.co.il^*/promo/ (easylistchina+easylist.txt: 43569) -.israeltoday.co.il/.*/promo/ -# ||israelidiamond.co.il^*/bannerdisplay.aspx? (easylistchina+easylist.txt: 43568) -.israelidiamond.co.il/.*/bannerdisplay\.aspx\? -# ||israeldefense.com/_Uploads/dbsBanners/ (easylistchina+easylist.txt: 43567) -.israeldefense.com/_Uploads/dbsBanners/ -# ||isportconnect.com//images/banners/ (easylistchina+easylist.txt: 43566) -# ||island.lk/userfiles/image/danweem/ (easylistchina+easylist.txt: 43565) -.island.lk/userfiles/image/danweem/ -# ||islamicfocus.co.za/images/banners/ (easylistchina+easylist.txt: 43564) -.islamicfocus.co.za/images/banners/ -# ||islamicfinder.org/cimage/ (easylistchina+easylist.txt: 43563) -.islamicfinder.org/cimage/ -# ||isitnormal.com/img/iphone_hp_promo_wide.png (easylistchina+easylist.txt: 43562) -.isitnormal.com/img/iphone_hp_promo_wide\.png -# ||isitdownrightnow.com/graphics/speedupmypc*.png (easylistchina+easylist.txt: 43561) -.isitdownrightnow.com/graphics/speedupmypc.*\.png -# ||irv2.com/images/sponsors/ (easylistchina+easylist.txt: 43560) -.irv2.com/images/sponsors/ -# ||irv2.com/forums/*show_banner (easylistchina+easylist.txt: 43559) -.irv2.com/forums/.*show_banner -# ||irv2.com/attachments/banners/ (easylistchina+easylist.txt: 43558) -.irv2.com/attachments/banners/ -# ||ironsquid.tv/data/uploads/sponsors/ (easylistchina+easylist.txt: 43557) -.ironsquid.tv/data/uploads/sponsors/ -# ||ironspider.ca/pics/hostgator_green120x600.gif (easylistchina+easylist.txt: 43556) -.ironspider.ca/pics/hostgator_green120x600\.gif -# ||ironmagazine.com^*/banners.php (easylistchina+easylist.txt: 43555) -.ironmagazine.com/.*/banners\.php -# ||irishracing.com/graphics/books (easylistchina+easylist.txt: 43554) -.irishracing.com/graphics/books -# ||irishdictionary.ie/view/images/ispaces-makes-any-computer.jpg (easylistchina+easylist.txt: 43553) -.irishdictionary.ie/view/images/ispaces-makes-any-computer\.jpg -# ||irishdev.com/files/banners/ (easylistchina+easylist.txt: 43552) -.irishdev.com/files/banners/ -# ||irishamericannews.com/images/banners/ (easylistchina+easylist.txt: 43551) -.irishamericannews.com/images/banners/ -# ||irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/*DealsBanner_ (easylistchina+easylist.txt: 43550) -.irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/.*DealsBanner_ -# ||iptools.com/sky.php (easylistchina+easylist.txt: 43549) -.iptools.com/sky\.php -# ||ipinfodb.com/img/adds/ (easylistchina+easylist.txt: 43548) -.ipinfodb.com/img/adds/ -# ||ipaddress.com/banner/ (easylistchina+easylist.txt: 43547) -.ipaddress.com/banner/ -# ||ip-adress.com/superb/ (easylistchina+easylist.txt: 43545) -.ip-adress.com/superb/ -# ||ip-adress.com/i/ewa/ (easylistchina+easylist.txt: 43544) -.ip-adress.com/i/ewa/ -# ||intoday.in/btstryad.html (easylistchina+easylist.txt: 43543) -.intoday.in/btstryad\.html -# ||internationalmeetingsreview.com//uploads/banner/ (easylistchina+easylist.txt: 43542) -# ||international.to/link_unit.html (easylistchina+easylist.txt: 43541) -.international.to/link_unit\.html -# ||international.to/large.html (easylistchina+easylist.txt: 43540) -.international.to/large\.html -# ||international.to/600.html (easylistchina+easylist.txt: 43539) -.international.to/600\.html -# ||interfacelift.com^*/artistsvalley_160x90_ (easylistchina+easylist.txt: 43538) -.interfacelift.com/.*/artistsvalley_160x90_ -# ||interest.co.nz^*_skin_ (easylistchina+easylist.txt: 43536) -.interest.co.nz/.*_skin_ -# ||interest.co.nz^*_skin. (easylistchina+easylist.txt: 43535) -.interest.co.nz/.*_skin\. -# ||interest.co.nz/banners/ (easylistchina+easylist.txt: 43534) -.interest.co.nz/banners/ -# ||intelseek.com/intelseekads/ (easylistchina+easylist.txt: 43533) -.intelseek.com/intelseekads/ -# ||intellicast.com/travel/cheapflightswidget.htm (easylistchina+easylist.txt: 43532) -.intellicast.com/travel/cheapflightswidget\.htm -# ||intellicast.com/outsidein.js (easylistchina+easylist.txt: 43531) -.intellicast.com/outsidein\.js -# ||intel.com/sites/wap/global/wap.js (easylistchina+easylist.txt: 43530) -.intel.com/sites/wap/global/wap\.js -# ||inspirefirst.com^*/banners/ (easylistchina+easylist.txt: 43529) -.inspirefirst.com/.*/banners/ -# ||insideyork.co.uk/assets/images/sponsors/ (easylistchina+easylist.txt: 43528) -.insideyork.co.uk/assets/images/sponsors/ -# ||insidethe.agency^*-300x250. (easylistchina+easylist.txt: 43527) -.insidethe.agency/.*-300x250\. -# ||insidehw.com/images/banners/ (easylistchina+easylist.txt: 43526) -.insidehw.com/images/banners/ -# ||insidedp.com/images/banners/ (easylistchina+easylist.txt: 43525) -.insidedp.com/images/banners/ -# ||insidebutlercounty.com/images/468- (easylistchina+easylist.txt: 43524) -.insidebutlercounty.com/images/468- -# ||insidebutlercounty.com/images/300- (easylistchina+easylist.txt: 43523) -.insidebutlercounty.com/images/300- -# ||insidebutlercounty.com/images/200- (easylistchina+easylist.txt: 43522) -.insidebutlercounty.com/images/200- -# ||insidebutlercounty.com/images/180- (easylistchina+easylist.txt: 43521) -.insidebutlercounty.com/images/180- -# ||insidebutlercounty.com/images/160- (easylistchina+easylist.txt: 43520) -.insidebutlercounty.com/images/160- -# ||insidebutlercounty.com/images/100- (easylistchina+easylist.txt: 43519) -.insidebutlercounty.com/images/100- -# ||inquirer.net/wp-content/themes/news/images/wallpaper_ (easylistchina+easylist.txt: 43518) -.inquirer.net/wp-content/themes/news/images/wallpaper_ -# ||inkscapeforum.com/images/banners/ (easylistchina+easylist.txt: 43517) -.inkscapeforum.com/images/banners/ -# ||injpn.net/images/banners/ (easylistchina+easylist.txt: 43516) -.injpn.net/images/banners/ -# ||ingdirect.com^*/adwizard/ (easylistchina+easylist.txt: 43515) -.ingdirect.com/.*/adwizard/ -# ||infoseek.co.jp/isweb/clip.html (easylistchina+easylist.txt: 43514) -.infoseek.co.jp/isweb/clip\.html -# ||infosecisland.com/ajax/viewbanner/ (easylistchina+easylist.txt: 43513) -.infosecisland.com/ajax/viewbanner/ -# ||informer.com/js/onexit*.js (easylistchina+easylist.txt: 43512) -.informer.com/js/onexit.*\.js -# ||informe.com/img/banner_ (easylistchina+easylist.txt: 43511) -.informe.com/img/banner_ -# ||infoq.com^*/banners/ (easylistchina+easylist.txt: 43510) -.infoq.com/.*/banners/ -# ||infobetting.com/bookmaker/ (easylistchina+easylist.txt: 43509) -.infobetting.com/bookmaker/ -# ||infobetting.com/b/ (easylistchina+easylist.txt: 43508) -.infobetting.com/b/ -# ||info.sciencedaily.com/api/ (easylistchina+easylist.txt: 43507) -.info.sciencedaily.com/api/ -# ||info.break.com^*/sponsors/ (easylistchina+easylist.txt: 43506) -.info.break.com/.*/sponsors/ -# ||industryabout.com/images/banners/ (easylistchina+easylist.txt: 43505) -.industryabout.com/images/banners/ -# ||indiantelevision.com/banner/ (easylistchina+easylist.txt: 43502) -.indiantelevision.com/banner/ -# ||indianexpress.com^*/banner/ (easylistchina+easylist.txt: 43501) -.indianexpress.com/.*/banner/ -# ||indiainfoline.com/wc/ads/ (easylistchina+easylist.txt: 43500) -.indiainfoline.com/wc/ads/ -# ||india.com^*-sponsor. (easylistchina+easylist.txt: 43499) -.india.com/.*-sponsor\. -# ||india.com/zeenews_head2n.jpg (easylistchina+easylist.txt: 43498) -.india.com/zeenews_head2n\.jpg -# ||indepthafrica.com^*/Banner-canreach.gif (easylistchina+easylist.txt: 43496) -.indepthafrica.com/.*/Banner-canreach\.gif -# ||independent.co.uk^*/partners/ (easylistchina+easylist.txt: 43495) -.independent.co.uk/.*/partners/ -# ||independent.co.uk^*/300unit/ (easylistchina+easylist.txt: 43494) -.independent.co.uk/.*/300unit/ -# ||independent.co.uk/kelkoo/ (easylistchina+easylist.txt: 43492) -.independent.co.uk/kelkoo/ -# ||independent.co.ug/images/banners/ (easylistchina+easylist.txt: 43491) -.independent.co.ug/images/banners/ -# ||indeed.com/ads/ (easylistchina+easylist.txt: 43490) -.indeed.com/ads/ -# ||incentivetravel.co.uk/images/banners/ (easylistchina+easylist.txt: 43489) -.incentivetravel.co.uk/images/banners/ -# ||inanyevent.ch/images/banners/ (easylistchina+easylist.txt: 43488) -.inanyevent.ch/images/banners/ -# ||in.com^*/170x50_ (easylistchina+easylist.txt: 43487) -.in.com/.*/170x50_ -# ||in.com/addIframe/ (easylistchina+easylist.txt: 43486) -.in.com/addIframe/ -# ||impulsedriven.com/app_images/wallpaper/ (easylistchina+easylist.txt: 43485) -.impulsedriven.com/app_images/wallpaper/ -# ||impactradio.co.za^*/banners/ (easylistchina+easylist.txt: 43484) -.impactradio.co.za/.*/banners/ -# ||imouto.org/images/mangagamer/ (easylistchina+easylist.txt: 43483) -.imouto.org/images/mangagamer/ -# ||imouto.org/images/jlist/ (easylistchina+easylist.txt: 43482) -.imouto.org/images/jlist/ -# ||imgur.com/include/zedoinviewstub1621.html (easylistchina+easylist.txt: 43481) -.imgur.com/include/zedoinviewstub1621\.html -# ||imgshots.com/includes/js/layer.js (easylistchina+easylist.txt: 43479) -.imgshots.com/includes/js/layer\.js -# ||imgchili.net/lj.js (easylistchina+easylist.txt: 43478) -.imgchili.net/lj\.js -# ||imgchili.net/js/showa.js (easylistchina+easylist.txt: 43477) -.imgchili.net/js/showa\.js -# ||imgcarry.com^*/oc.js (easylistchina+easylist.txt: 43476) -.imgcarry.com/.*/oc\.js -# ||imgburn.com/images/your3gift.gif (easylistchina+easylist.txt: 43475) -.imgburn.com/images/your3gift\.gif -# ||imgburn.com/images/ddigest_ (easylistchina+easylist.txt: 43474) -.imgburn.com/images/ddigest_ -# ||img*.i-comers.com^ (easylistchina+easylist.txt: 43472) -.img*./.*\.i-comers\.com[^\w%.-] -.img*.i-comers.com -# ||imfdb.org^*/FoG-300x250.jpg (easylistchina+easylist.txt: 43471) -.imfdb.org/.*/FoG-300x250\.jpg -# ||imcdb.org/res/cth_ (easylistchina+easylist.txt: 43469) -.imcdb.org/res/cth_ -# ||imagevenue.com/interstitial. (easylistchina+easylist.txt: 43468) -.imagevenue.com/interstitial\. -# ||imagetoupload.com/images/87633952425570896161.jpg (easylistchina+easylist.txt: 43467) -.imagetoupload.com/images/87633952425570896161\.jpg -# ||imagesnake.com^*/oc.js (easylistchina+easylist.txt: 43466) -.imagesnake.com/.*/oc\.js -# ||imageshack.us/ym.php? (easylistchina+easylist.txt: 43465) -.imageshack.us/ym\.php\? -# ||imageshack.us/images/contests/*/lp-bg.jpg (easylistchina+easylist.txt: 43464) -.imageshack.us/images/contests/.*/lp-bg\.jpg -# ||images.sharkscope.com/everest/twister.jpg (easylistchina+easylist.txt: 43463) -.images.sharkscope.com/everest/twister\.jpg -# ||images.sharkscope.com/acr/*_Ad- (easylistchina+easylist.txt: 43462) -.images.sharkscope.com/acr/.*_Ad- -# ||images.mmorpg.com/images/*skin (easylistchina+easylist.txt: 43461) -.images.mmorpg.com/images/.*skin -# ||images.globes.co.il^*/fixedpromoright. (easylistchina+easylist.txt: 43460) -.images.globes.co.il/.*/fixedpromoright\. -# ||images.bitreactor.to/designs/ (easylistchina+easylist.txt: 43459) -.images.bitreactor.to/designs/ -# ||images-amazon.com^*/marqueepushdown/ (easylistchina+easylist.txt: 43458) -.images-amazon.com/.*/marqueepushdown/ -# ||images-amazon.com/images/*/browser-scripts/dae- (easylistchina+easylist.txt: 43456) -.images-amazon.com/images/.*/browser-scripts/dae- -# ||images-amazon.com/images/*/browser-scripts/da- (easylistchina+easylist.txt: 43455) -.images-amazon.com/images/.*/browser-scripts/da- -# ||imagerise.com/ir2.js (easylistchina+easylist.txt: 43454) -.imagerise.com/ir2\.js -# ||imagerise.com/ir.js (easylistchina+easylist.txt: 43453) -.imagerise.com/ir\.js -# ||imageporter.com/someo.html (easylistchina+easylist.txt: 43452) -.imageporter.com/someo\.html -# ||imageporter.com/micromoo.html (easylistchina+easylist.txt: 43451) -.imageporter.com/micromoo\.html -# ||imageporter.com/hiokax.js (easylistchina+easylist.txt: 43450) -.imageporter.com/hiokax\.js -# ||imagepix.org/Images/imageput.jpg (easylistchina+easylist.txt: 43449) -.imagepix.org/Images/imageput\.jpg -# ||imagefruit.com/includes/js/layer.js (easylistchina+easylist.txt: 43448) -.imagefruit.com/includes/js/layer\.js -# ||imagefruit.com/includes/js/ex.js (easylistchina+easylist.txt: 43447) -.imagefruit.com/includes/js/ex\.js -# ||imagefruit.com/includes/js/bgcont.js (easylistchina+easylist.txt: 43446) -.imagefruit.com/includes/js/bgcont\.js -# ||imagebam.com/img/coolstuffbro.jpg (easylistchina+easylist.txt: 43445) -.imagebam.com/img/coolstuffbro\.jpg -# ||imagebam.com/download_button.png (easylistchina+easylist.txt: 43444) -.imagebam.com/download_button\.png -# ||imads.rediff.com^ (easylistchina+easylist.txt: 43442) -.imads.rediff.com -# ||iloveim.com/cadv (easylistchina+easylist.txt: 43441) -.iloveim.com/cadv -# ||iload.to/img/ul/impopi.js (easylistchina+easylist.txt: 43440) -.iload.to/img/ul/impopi\.js -# ||ilcorsaronero.info/home.gif (easylistchina+easylist.txt: 43438) -.ilcorsaronero.info/home\.gif -# ||ijoomla.com/aff/banners/ (easylistchina+easylist.txt: 43437) -.ijoomla.com/aff/banners/ -# ||ijn.com/images/banners/ (easylistchina+easylist.txt: 43436) -.ijn.com/images/banners/ -# ||iftn.ie/images/data/banners/ (easylistchina+easylist.txt: 43435) -.iftn.ie/images/data/banners/ -# ||iframe.travel.yahoo.com^ (easylistchina+easylist.txt: 43434) -.iframe.travel.yahoo.com -# ||ifilm.com/website/*-skin- (easylistchina+easylist.txt: 43433) -.ifilm.com/website/.*-skin- -# ||idg.com.au^*_skin.jpg (easylistchina+easylist.txt: 43431) -.idg.com.au/.*_skin\.jpg -# ||idg.com.au/files/skins/ (easylistchina+easylist.txt: 43429) -.idg.com.au/files/skins/ -# ||idesitv.com^*/loadbanners. (easylistchina+easylist.txt: 43428) -.idesitv.com/.*/loadbanners\. -# ||iddin.com/img/chatwing_banner_ (easylistchina+easylist.txt: 43427) -.iddin.com/img/chatwing_banner_ -# ||iddin.com/img/chatwing_banner. (easylistchina+easylist.txt: 43426) -.iddin.com/img/chatwing_banner\. -# ||icydk.com^*/title_visit_sponsors. (easylistchina+easylist.txt: 43425) -.icydk.com/.*/title_visit_sponsors\. -# ||icrt.com.tw/downloads/banner/ (easylistchina+easylist.txt: 43423) -.icrt.com.tw/downloads/banner/ -# ||iconeye.com/images/banners/ (easylistchina+easylist.txt: 43422) -.iconeye.com/images/banners/ -# ||icelandreview.com^*/auglysingar/ (easylistchina+easylist.txt: 43421) -.icelandreview.com/.*/auglysingar/ -# ||iceinspace.com.au/iisads/ (easylistchina+easylist.txt: 43420) -.iceinspace.com.au/iisads/ -# ||ibtimes.com^*/sponsor_ (easylistchina+easylist.txt: 43419) -.ibtimes.com/.*/sponsor_ -# ||ibtimes.com^*&popunder (easylistchina+easylist.txt: 43418) -.ibtimes.com/.*&popunder -# ||ibtimes.com/banner/ (easylistchina+easylist.txt: 43417) -.ibtimes.com/banner/ -# ||ibsrv.net/sponsors/ (easylistchina+easylist.txt: 43416) -.ibsrv.net/sponsors/ -# ||ibsrv.net/*_215x30_ (easylistchina+easylist.txt: 43413) -.ibsrv.net/.*_215x30_ -# ||ibsrv.net/*_215x30. (easylistchina+easylist.txt: 43412) -.ibsrv.net/.*_215x30\. -# ||ibsrv.net/*214x30. (easylistchina+easylist.txt: 43411) -.ibsrv.net/.*214x30\. -# ||ibrod.tv/ib.php (easylistchina+easylist.txt: 43410) -.ibrod.tv/ib\.php -# ||ibnlive.in.com^*/ibn_*_banner_ (easylistchina+easylist.txt: 43409) -.ibnlive.in.com/.*/ibn_.*_banner_ -# ||ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ (easylistchina+easylist.txt: 43408) -.ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ -# ||ibanners.empoweredcomms.com.au^ (easylistchina+easylist.txt: 43407) -.ibanners.empoweredcomms.com.au -# ||ians.in/iansad/ (easylistchina+easylist.txt: 43406) -.ians.in/iansad/ -# ||i3investor.com^*/partner/ (easylistchina+easylist.txt: 43405) -.i3investor.com/.*/partner/ -# ||i3investor.com^*/offer_ (easylistchina+easylist.txt: 43404) -.i3investor.com/.*/offer_ -# ||i.i.com.com/cnwk.1d/*/tt_post_dl.jpg (easylistchina+easylist.txt: 43402) -.i.i.com.com/cnwk\.1d/.*/tt_post_dl\.jpg -# ||i.com.com^*/vendor_bg_ (easylistchina+easylist.txt: 43401) -.i.com.com/.*/vendor_bg_ -# ||i-tech.com.au^*/banner/ (easylistchina+easylist.txt: 43400) -.i-tech.com.au/.*/banner/ -# ||i-sgcm.com/pagetakeover/ (easylistchina+easylist.txt: 43399) -.i-sgcm.com/pagetakeover/ -# ||hypemagazine.co.za/assets/bg/ (easylistchina+easylist.txt: 43398) -.hypemagazine.co.za/assets/bg/ -# ||hwinfo.com/images/se2banner.png (easylistchina+easylist.txt: 43397) -.hwinfo.com/images/se2banner\.png -# ||hwinfo.com/images/lansweeper.jpg (easylistchina+easylist.txt: 43396) -.hwinfo.com/images/lansweeper\.jpg -# ||hwbot.org/banner.img (easylistchina+easylist.txt: 43395) -.hwbot.org/banner\.img -# ||hurriyetdailynews.com/images/*_100x250_ (easylistchina+easylist.txt: 43394) -.hurriyetdailynews.com/images/.*_100x250_ -# ||hummy.org.uk^*/brotator/ (easylistchina+easylist.txt: 43393) -.hummy.org.uk/.*/brotator/ -# ||hulu.com/v3/revenue/ (easylistchina+easylist.txt: 43392) -.hulu.com/v3/revenue/ -# ||hulu.com/beacon/*=adauditerror (easylistchina+easylist.txt: 43391) -.hulu.com/beacon/.*=adauditerror -# ||hulkshare.oncdn.com^*/removeads. (easylistchina+easylist.txt: 43390) -.hulkshare.oncdn.com/.*/removeads\. -# ||hulkshare.com^*/adsmanager.js (easylistchina+easylist.txt: 43389) -.hulkshare.com/.*/adsmanager\.js -# ||hulkshare.com/promo/ (easylistchina+easylist.txt: 43388) -.hulkshare.com/promo/ -# ||hulkload.com/recommended/ (easylistchina+easylist.txt: 43387) -.hulkload.com/recommended/ -# ||hulkload.com/b/ (easylistchina+easylist.txt: 43386) -.hulkload.com/b/ -# ||hulkfile.eu/images/africa.gif (easylistchina+easylist.txt: 43385) -.hulkfile.eu/images/africa\.gif -# ||htmldog.com/r10/flowers/ (easylistchina+easylist.txt: 43383) -.htmldog.com/r10/flowers/ -# ||hqfooty.tv/ad (easylistchina+easylist.txt: 43382) -.hqfooty.tv/ad -# ||hpfanficarchive.com/freecoins2.jpg (easylistchina+easylist.txt: 43381) -.hpfanficarchive.com/freecoins2\.jpg -# ||howwemadeitinafrica.com^*/dhl-hdr.gif (easylistchina+easylist.txt: 43380) -.howwemadeitinafrica.com/.*/dhl-hdr\.gif -# ||howtogermany.com/banner/ (easylistchina+easylist.txt: 43379) -.howtogermany.com/banner/ -# ||howtogeek.com/go/ (easylistchina+easylist.txt: 43378) -.howtogeek.com/go/ -# ||houseoftravel.co.nz/flash/banner/ (easylistchina+easylist.txt: 43377) -.houseoftravel.co.nz/flash/banner/ -# ||houndmirror.com/images/XmkuP.gif (easylistchina+easylist.txt: 43376) -.houndmirror.com/images/XmkuP\.gif -# ||hothardware.com^*_staticbanner_*.jpg (easylistchina+easylist.txt: 43375) -.hothardware.com/.*_staticbanner_.*\.jpg -# ||hothardware.com/pgmerchanttable.aspx? (easylistchina+easylist.txt: 43374) -.hothardware.com/pgmerchanttable\.aspx\? -# ||hotfiletrend.com/dlp.gif (easylistchina+easylist.txt: 43372) -.hotfiletrend.com/dlp\.gif -# ||hotfilesearch.com/includes/images/mov_ (easylistchina+easylist.txt: 43371) -.hotfilesearch.com/includes/images/mov_ -# ||hotfile.com^*/banners/ (easylistchina+easylist.txt: 43370) -.hotfile.com/.*/banners/ -# ||hotbollywoodactress.net/freedatingindia.gif (easylistchina+easylist.txt: 43369) -.hotbollywoodactress.net/freedatingindia\.gif -# ||hotbollywoodactress.net/ff2.gif (easylistchina+easylist.txt: 43368) -.hotbollywoodactress.net/ff2\.gif -# ||hot-scene.com/cpop.js (easylistchina+easylist.txt: 43367) -.hot-scene.com/cpop\.js -# ||hostsearch.com/creative/ (easylistchina+easylist.txt: 43366) -.hostsearch.com/creative/ -# ||hostratings.co.uk/zeepeel. (easylistchina+easylist.txt: 43365) -.hostratings.co.uk/zeepeel\. -# ||hostingbulk.com/zad.html (easylistchina+easylist.txt: 43363) -.hostingbulk.com/zad\.html -# ||hostingbulk.com/aad.html (easylistchina+easylist.txt: 43362) -.hostingbulk.com/aad\.html -# ||horriblesubs.info/playasia (easylistchina+easylist.txt: 43361) -.horriblesubs.info/playasia -# ||horizonsunlimited.com/alogos/ (easylistchina+easylist.txt: 43360) -.horizonsunlimited.com/alogos/ -# ||hongkongindians.com/advimages/ (easylistchina+easylist.txt: 43359) -.hongkongindians.com/advimages/ -# ||hongfire.com/banner/ (easylistchina+easylist.txt: 43358) -.hongfire.com/banner/ -# ||honda-tech.com/*-140x90.gif (easylistchina+easylist.txt: 43357) -.honda-tech.com/.*-140x90\.gif -# ||homeschoolmath.net/a/ (easylistchina+easylist.txt: 43356) -.homeschoolmath.net/a/ -# ||holyfragger.com/images/skins/ (easylistchina+easylist.txt: 43355) -.holyfragger.com/images/skins/ -# ||holyfamilyradio.org/banners/ (easylistchina+easylist.txt: 43354) -.holyfamilyradio.org/banners/ -# ||hollywoodbackwash.com/glam/ (easylistchina+easylist.txt: 43353) -.hollywoodbackwash.com/glam/ -# ||hockeybuzz.com/mb/b? (easylistchina+easylist.txt: 43352) -.hockeybuzz.com/mb/b\? -# ||hltv.org/images/csLucky.swf (easylistchina+easylist.txt: 43351) -.hltv.org/images/csLucky\.swf -# ||hltv.org//images/csgofastsky.png (easylistchina+easylist.txt: 43350) -# ||hkclubbing.com/images/banners/ (easylistchina+easylist.txt: 43349) -.hkclubbing.com/images/banners/ -# ||hitechlegion.com/images/banners/ (easylistchina+easylist.txt: 43348) -.hitechlegion.com/images/banners/ -# ||hipforums.com/newforums/calendarcolumn.php?cquery=bush (easylistchina+easylist.txt: 43347) -.hipforums.com/newforums/calendarcolumn\.php\?cquery=bush -# ||hipforums.com/images/banners/ (easylistchina+easylist.txt: 43346) -.hipforums.com/images/banners/ -# ||highdefjunkies.com^*/sponsor.jpg (easylistchina+easylist.txt: 43345) -.highdefjunkies.com/.*/sponsor\.jpg -# ||highdefjunkies.com^*/monoprice.jpg (easylistchina+easylist.txt: 43344) -.highdefjunkies.com/.*/monoprice\.jpg -# ||highdefjunkies.com^*/cp.gif (easylistchina+easylist.txt: 43343) -.highdefjunkies.com/.*/cp\.gif -# ||highdefjunkies.com/images/misc/kindlejoin.jpg (easylistchina+easylist.txt: 43342) -.highdefjunkies.com/images/misc/kindlejoin\.jpg -# ||hickoryrecord.com/app/deal/ (easylistchina+easylist.txt: 43341) -.hickoryrecord.com/app/deal/ -# ||herzeleid.com/files/images/banners/ (easylistchina+easylist.txt: 43339) -.herzeleid.com/files/images/banners/ -# ||herold.at^*.swf?*&linktarget=_blank (easylistchina+easylist.txt: 43338) -.herold.at/.*\.swf\?.*&linktarget=_blank -# ||herold.at/images/dealofday.swf (easylistchina+easylist.txt: 43337) -.herold.at/images/dealofday\.swf -# ||heraldsun.com.au^*/images/sideskins- (easylistchina+easylist.txt: 43335) -.heraldsun.com.au/.*/images/sideskins- -# ||heraldm.com^*/banner/ (easylistchina+easylist.txt: 43334) -.heraldm.com/.*/banner/ -# ||heraldm.com/iframe/ (easylistchina+easylist.txt: 43333) -.heraldm.com/iframe/ -# ||heraldm.com/hb/imad/ (easylistchina+easylist.txt: 43332) -.heraldm.com/hb/imad/ -# ||hentaihaven.org/wp-content/banners/ (easylistchina+easylist.txt: 43330) -.hentaihaven.org/wp-content/banners/ -# ||hentai2read.com/ios/swf/ (easylistchina+easylist.txt: 43329) -.hentai2read.com/ios/swf/ -# ||helsinkitimes.fi^*/banners/ (easylistchina+easylist.txt: 43328) -.helsinkitimes.fi/.*/banners/ -# ||hejban.youwatch.org^ (easylistchina+easylist.txt: 43327) -.hejban.youwatch.org -# ||heatworld.com^*_300x160.jpg (easylistchina+easylist.txt: 43326) -.heatworld.com/.*_300x160\.jpg -# ||heatworld.com/upload/takeovers/ (easylistchina+easylist.txt: 43325) -.heatworld.com/upload/takeovers/ -# ||heatworld.com/images/*_83x76_ (easylistchina+easylist.txt: 43324) -.heatworld.com/images/.*_83x76_ -# ||hearse.com^*/billboards/ (easylistchina+easylist.txt: 43323) -.hearse.com/.*/billboards/ -# ||healthfreedoms.org/assets/swf/320x320_ (easylistchina+easylist.txt: 43322) -.healthfreedoms.org/assets/swf/320x320_ -# ||headlineplanet.com/home/burstbox.html (easylistchina+easylist.txt: 43321) -.headlineplanet.com/home/burstbox\.html -# ||headlineplanet.com/home/box.html (easylistchina+easylist.txt: 43320) -.headlineplanet.com/home/box\.html -# ||hdtvtest.co.uk^*/pricerunner.php (easylistchina+easylist.txt: 43319) -.hdtvtest.co.uk/.*/pricerunner\.php -# ||hd-bb.org^*/dl4fbanner.gif (easylistchina+easylist.txt: 43317) -.hd-bb.org/.*/dl4fbanner\.gif -# ||hawkesbaytoday.co.nz/nz_regionals/marketplace/ (easylistchina+easylist.txt: 43315) -.hawkesbaytoday.co.nz/nz_regionals/marketplace/ -# ||hawkesbay.co.nz/images/banners/ (easylistchina+easylist.txt: 43314) -.hawkesbay.co.nz/images/banners/ -# ||hawaiireporter.com^*_300x400.jpg (easylistchina+easylist.txt: 43313) -.hawaiireporter.com/.*_300x400\.jpg -# ||hawaiireporter.com^*/winnerscampad.jpg (easylistchina+easylist.txt: 43312) -.hawaiireporter.com/.*/winnerscampad\.jpg -# ||hawaiireporter.com^*/upandruningy.jpg (easylistchina+easylist.txt: 43311) -.hawaiireporter.com/.*/upandruningy\.jpg -# ||hawaiireporter.com^*/js.jpg (easylistchina+easylist.txt: 43310) -.hawaiireporter.com/.*/js\.jpg -# ||hawaiireporter.com^*/463%C3%9757-Kamaaina.jpg (easylistchina+easylist.txt: 43309) -.hawaiireporter.com/.*/463%C3%9757-Kamaaina\.jpg -# ||hawaiireporter.com^*-300x250.jpg (easylistchina+easylist.txt: 43308) -.hawaiireporter.com/.*-300x250\.jpg -# ||hardwareheaven.com/wp-content/*_skin_ (easylistchina+easylist.txt: 43307) -.hardwareheaven.com/wp-content/.*_skin_ -# ||hardwareheaven.com/styles/*/frontpage/backdrop.jpg (easylistchina+easylist.txt: 43306) -.hardwareheaven.com/styles/.*/frontpage/backdrop\.jpg -# ||happierabroad.com/Images/banner (easylistchina+easylist.txt: 43305) -.happierabroad.com/Images/banner -# ||hancinema.net/images/watch-now (easylistchina+easylist.txt: 43304) -.hancinema.net/images/watch-now -# ||hancinema.net/images/banner_ (easylistchina+easylist.txt: 43303) -.hancinema.net/images/banner_ -# ||hahasport.com/ads/ (easylistchina+easylist.txt: 43302) -.hahasport.com/ads/ -# ||hackingchinese.com/media/skritter5.jpg (easylistchina+easylist.txt: 43301) -.hackingchinese.com/media/skritter5\.jpg -# ||hackingchinese.com/media/pleco.png (easylistchina+easylist.txt: 43300) -.hackingchinese.com/media/pleco\.png -# ||hackingchinese.com/media/hellochinese.jpg (easylistchina+easylist.txt: 43299) -.hackingchinese.com/media/hellochinese\.jpg -# ||hackingchinese.com/media/hcw4.png (easylistchina+easylist.txt: 43298) -.hackingchinese.com/media/hcw4\.png -# ||ha.ckers.org/images/sectheory-bot.png (easylistchina+easylist.txt: 43297) -.ha.ckers.org/images/sectheory-bot\.png -# ||ha.ckers.org/images/nto_top.png (easylistchina+easylist.txt: 43296) -.ha.ckers.org/images/nto_top\.png -# ||ha.ckers.org/images/fallingrock-bot.png (easylistchina+easylist.txt: 43295) -.ha.ckers.org/images/fallingrock-bot\.png -# ||h33t.to/images/button_direct.png (easylistchina+easylist.txt: 43294) -.h33t.to/images/button_direct\.png -# ||gwinnettdailypost.com/1.iframe.asp? (easylistchina+easylist.txt: 43293) -.gwinnettdailypost.com/1\.iframe\.asp\? -# ||guru99.com/images/adblocker/ (easylistchina+easylist.txt: 43292) -.guru99.com/images/adblocker/ -# ||gurgle.com/modules/mod_m10banners/ (easylistchina+easylist.txt: 43291) -.gurgle.com/modules/mod_m10banners/ -# ||guns.ru^*/banners/ (easylistchina+easylist.txt: 43290) -.guns.ru/.*/banners/ -# ||guns.ru^*/banner/ (easylistchina+easylist.txt: 43289) -.guns.ru/.*/banner/ -# ||gunfreezone.net^*_ad.jpg (easylistchina+easylist.txt: 43288) -.gunfreezone.net/.*_ad\.jpg -# ||gumtree.com^*/dart_wrapper_ (easylistchina+easylist.txt: 43287) -.gumtree.com/.*/dart_wrapper_ -# ||gulfnews.com^*/channelSponsorImage/ (easylistchina+easylist.txt: 43286) -.gulfnews.com/.*/channelSponsorImage/ -# ||gulf-daily-news.com/180x150.htm (easylistchina+easylist.txt: 43285) -.gulf-daily-news.com/180x150\.htm -# ||guardian.bz/images/banners/ (easylistchina+easylist.txt: 43284) -.guardian.bz/images/banners/ -# ||gtweekly.com/images/banners/ (easylistchina+easylist.txt: 43283) -.gtweekly.com/images/banners/ -# ||gtsplus.net*/pantop.html (easylistchina+easylist.txt: 43282) -.gtsplus.net*./(.*/)?pantop\.html -# ||gtsplus.net*/panbottom.html (easylistchina+easylist.txt: 43281) -.gtsplus.net*./(.*/)?panbottom\.html -# ||gtop100.com/a_images/show-a.php? (easylistchina+easylist.txt: 43280) -.gtop100.com/a_images/show-a\.php\? -# ||gsprating.com/gap/image.php? (easylistchina+easylist.txt: 43279) -.gsprating.com/gap/image\.php\? -# ||greyorgray.com/images/hdtv-genie-gog.jpg (easylistchina+easylist.txt: 43277) -.greyorgray.com/images/hdtv-genie-gog\.jpg -# ||greyorgray.com/images/Fast%20Business%20Loans%20Ad.jpg (easylistchina+easylist.txt: 43276) -.greyorgray.com/images/Fast%20Business%20Loans%20Ad\.jpg -# ||greenoptimistic.com/images/electrician2.png (easylistchina+easylist.txt: 43275) -.greenoptimistic.com/images/electrician2\.png -# ||green.virtual-nights.com^ (easylistchina+easylist.txt: 43274) -.green.virtual-nights.com -# ||greatgirlsgames.com/a/skyscraper.php (easylistchina+easylist.txt: 43273) -.greatgirlsgames.com/a/skyscraper\.php -# ||greatgirlsgames.com/100x100.php (easylistchina+easylist.txt: 43272) -.greatgirlsgames.com/100x100\.php -# ||greaterkashmir.com/adds_ (easylistchina+easylist.txt: 43271) -.greaterkashmir.com/adds_ -# ||greatdeals.co.ke/images/banners/ (easylistchina+easylist.txt: 43270) -.greatdeals.co.ke/images/banners/ -# ||greatandhra.com/images/*_ga_ (easylistchina+easylist.txt: 43269) -.greatandhra.com/images/.*_ga_ -# ||graphic.com.gh/images/banners/ (easylistchina+easylist.txt: 43268) -.graphic.com.gh/images/banners/ -# ||grapevine.is/media/flash/*.swf (easylistchina+easylist.txt: 43267) -.grapevine.is/media/flash/.*\.swf -# ||gq.co.za^*/sitetakeover/ (easylistchina+easylist.txt: 43265) -.gq.co.za/.*/sitetakeover/ -# ||gp3series.com^*/Partners/ (easylistchina+easylist.txt: 43264) -.gp3series.com/.*/Partners/ -# ||gowilkes.com/other/ (easylistchina+easylist.txt: 43263) -.gowilkes.com/other/ -# ||gowilkes.com/cj/ (easylistchina+easylist.txt: 43262) -.gowilkes.com/cj/ -# ||gov-auctions.org^*/banner/ (easylistchina+easylist.txt: 43261) -.gov-auctions.org/.*/banner/ -# ||gospel1190.net/rotatorimages/ (easylistchina+easylist.txt: 43259) -.gospel1190.net/rotatorimages/ -# ||gopride.com^*/banners/ (easylistchina+easylist.txt: 43258) -.gopride.com/.*/banners/ -# ||gooster.co.uk/js/ov.js.php (easylistchina+easylist.txt: 43257) -.gooster.co.uk/js/ov\.js\.php -# ||goodgearguide.com.au/files/skins/ (easylistchina+easylist.txt: 43252) -.goodgearguide.com.au/files/skins/ -# ||goodanime.net/images/crazy*.jpg (easylistchina+easylist.txt: 43251) -.goodanime.net/images/crazy.*\.jpg -# ||gonzagamer.com/uci/popover.js (easylistchina+easylist.txt: 43250) -.gonzagamer.com/uci/popover\.js -# ||gomlab.com/img/banner/ (easylistchina+easylist.txt: 43249) -.gomlab.com/img/banner/ -# ||golf365.com^*/site-bg- (easylistchina+easylist.txt: 43248) -.golf365.com/.*/site-bg- -# ||golf365.co.za^*/site-bg- (easylistchina+easylist.txt: 43247) -.golf365.co.za/.*/site-bg- -# ||goldenskate.com/sponsors/ (easylistchina+easylist.txt: 43246) -.goldenskate.com/sponsors/ -# ||gold1013fm.com/promotion/ (easylistchina+easylist.txt: 43245) -.gold1013fm.com/promotion/ -# ||gold1013fm.com/images/background/ (easylistchina+easylist.txt: 43244) -.gold1013fm.com/images/background/ -# ||gold-prices.biz^*_400x300.gif (easylistchina+easylist.txt: 43243) -.gold-prices.biz/.*_400x300\.gif -# ||gold-prices.biz/gold_trading_leader.gif (easylistchina+easylist.txt: 43242) -.gold-prices.biz/gold_trading_leader\.gif -# ||gokunming.com/images/prom/ (easylistchina+easylist.txt: 43241) -.gokunming.com/images/prom/ -# ||godisageek.com/amazon.png (easylistchina+easylist.txt: 43240) -.godisageek.com/amazon\.png -# ||goal.com^*/branding/ (easylistchina+easylist.txt: 43238) -.goal.com/.*/branding/ -# ||go4up.com/assets/img/download-button.png (easylistchina+easylist.txt: 43236) -.go4up.com/assets/img/download-button\.png -# ||go4up.com/assets/img/d0.png (easylistchina+easylist.txt: 43235) -.go4up.com/assets/img/d0\.png -# ||glocktalk.com/forums/images/banners/ (easylistchina+easylist.txt: 43234) -.glocktalk.com/forums/images/banners/ -# ||globaltimes.cn/desktopmodules/bannerdisplay/ (easylistchina+easylist.txt: 43233) -.globaltimes.cn/desktopmodules/bannerdisplay/ -# ||globalsecurity.org/_inc/frames/ (easylistchina+easylist.txt: 43232) -.globalsecurity.org/_inc/frames/ -# ||gledaisport.com/ads/ (easylistchina+easylist.txt: 43231) -.gledaisport.com/ads/ -# ||glassdoor.com/getAdSlotContentsAjax.htm? (easylistchina+easylist.txt: 43230) -.glassdoor.com/getAdSlotContentsAjax\.htm\? -# ||glamourviews.com/home/zones? (easylistchina+easylist.txt: 43229) -.glamourviews.com/home/zones\? -# ||glam.com^*/affiliate/ (easylistchina+easylist.txt: 43228) -.glam.com/.*/affiliate/ -# ||gizmochina.com^*/landvo-l600-pro-feature.jpg (easylistchina+easylist.txt: 43227) -.gizmochina.com/.*/landvo-l600-pro-feature\.jpg -# ||gizmochina.com^*/kingsing-t8-advert.jpg (easylistchina+easylist.txt: 43226) -.gizmochina.com/.*/kingsing-t8-advert\.jpg -# ||gizmochina.com^*/100002648432985.gif (easylistchina+easylist.txt: 43225) -.gizmochina.com/.*/100002648432985\.gif -# ||gizmochina.com/images/blackview.jpg (easylistchina+easylist.txt: 43224) -.gizmochina.com/images/blackview\.jpg -# ||girlsgames.biz/games/partner*.php (easylistchina+easylist.txt: 43223) -.girlsgames.biz/games/partner.*\.php -# ||girlguides.co.za/images/banners/ (easylistchina+easylist.txt: 43222) -.girlguides.co.za/images/banners/ -# ||giftguide.savannahnow.com/giftguide/widgets/ (easylistchina+easylist.txt: 43220) -.giftguide.savannahnow.com/giftguide/widgets/ -# ||ghananewsagency.org/assets/banners/ (easylistchina+easylist.txt: 43219) -.ghananewsagency.org/assets/banners/ -# ||ghafla.co.ke/images/bgmax/ (easylistchina+easylist.txt: 43218) -.ghafla.co.ke/images/bgmax/ -# ||ghafla.co.ke/images/banners/ (easylistchina+easylist.txt: 43217) -.ghafla.co.ke/images/banners/ -# ||ghacks.net/skin- (easylistchina+easylist.txt: 43216) -.ghacks.net/skin- -# ||gfx.infomine.com^ (easylistchina+easylist.txt: 43215) -.gfx.infomine.com -# ||gfi.com/blog/wp-content/uploads/*-BlogBanner (easylistchina+easylist.txt: 43214) -.gfi.com/blog/wp-content/uploads/.*-BlogBanner -# ||getthekick.eu^*/banners/ (easylistchina+easylist.txt: 43213) -.getthekick.eu/.*/banners/ -# ||getsurrey.co.uk^*/bg_takeover_ (easylistchina+easylist.txt: 43212) -.getsurrey.co.uk/.*/bg_takeover_ -# ||getrichslowly.org/blog/img/banner/ (easylistchina+easylist.txt: 43211) -.getrichslowly.org/blog/img/banner/ -# ||getreading.co.uk/static/img/bg_takeover_ (easylistchina+easylist.txt: 43209) -.getreading.co.uk/static/img/bg_takeover_ -# ||getfoxyproxy.org/images/abine/ (easylistchina+easylist.txt: 43207) -.getfoxyproxy.org/images/abine/ -# ||get.thefile.me^ (easylistchina+easylist.txt: 43206) -.get.thefile.me -# ||get-bitcoins-free.eu/img/blackred728smallsize.gif (easylistchina+easylist.txt: 43205) -.get-bitcoins-free.eu/img/blackred728smallsize\.gif -# ||gestetnerupdates.com^*/perfect-auto-collision_banner.gif (easylistchina+easylist.txt: 43204) -.gestetnerupdates.com/.*/perfect-auto-collision_banner\.gif -# ||gestetnerupdates.com^*/Gestetner-Miles.gif (easylistchina+easylist.txt: 43203) -.gestetnerupdates.com/.*/Gestetner-Miles\.gif -# ||gestetnerupdates.com^*/eagle-sewer.gif (easylistchina+easylist.txt: 43202) -.gestetnerupdates.com/.*/eagle-sewer\.gif -# ||gestetnerupdates.com^*/chesed-shel-emes-600x75.gif (easylistchina+easylist.txt: 43201) -.gestetnerupdates.com/.*/chesed-shel-emes-600x75\.gif -# ||geoshopping.nzherald.co.nz^ (easylistchina+easylist.txt: 43200) -.geoshopping.nzherald.co.nz -# ||geometria.tv/banners/ (easylistchina+easylist.txt: 43199) -.geometria.tv/banners/ -# ||geocities.yahoo.*/js/sq. (easylistchina+easylist.txt: 43198) -.geocities.yahoo.*./(.*/)?js/sq\. -# ||geocities.com/js_source/ (easylistchina+easylist.txt: 43197) -.geocities.com/js_source/ -# ||gentoo.org/images/sponsors/ (easylistchina+easylist.txt: 43196) -.gentoo.org/images/sponsors/ -# ||generalfiles.me^*/download_sponsored. (easylistchina+easylist.txt: 43195) -.generalfiles.me/.*/download_sponsored\. -# ||geeklab.info^*/billy.png (easylistchina+easylist.txt: 43191) -.geeklab.info/.*/billy\.png -# ||geckoforums.net/banners/ (easylistchina+easylist.txt: 43190) -.geckoforums.net/banners/ -# ||gcnlive.com/assets/sponsorsPlayer/ (easylistchina+easylist.txt: 43189) -.gcnlive.com/assets/sponsorsPlayer/ -# ||gcnlive.com/assets/sponsors/ (easylistchina+easylist.txt: 43188) -.gcnlive.com/assets/sponsors/ -# ||gbrej.com/c/ (easylistchina+easylist.txt: 43187) -.gbrej.com/c/ -# ||gbatemp.net/images/ab/ (easylistchina+easylist.txt: 43186) -.gbatemp.net/images/ab/ -# ||gaynz.gen.nz/mysa/banners/ (easylistchina+easylist.txt: 43185) -.gaynz.gen.nz/mysa/banners/ -# ||gaynz.com/mysa/banners/ (easylistchina+easylist.txt: 43184) -.gaynz.com/mysa/banners/ -# ||gaydarradio.com/userportal/miva/ (easylistchina+easylist.txt: 43183) -.gaydarradio.com/userportal/miva/ -# ||gawkerassets.com^*/background.jpg (easylistchina+easylist.txt: 43182) -.gawkerassets.com/.*/background\.jpg -# ||gateprep.com/templates/default/images/promo/ (easylistchina+easylist.txt: 43181) -.gateprep.com/templates/default/images/promo/ -# ||gasgoo.com/promo/ (easylistchina+easylist.txt: 43180) -.gasgoo.com/promo/ -# ||garrysmod.org/img/sad/ (easylistchina+easylist.txt: 43179) -.garrysmod.org/img/sad/ -# ||gappon.com/images/hot2.gif (easylistchina+easylist.txt: 43178) -.gappon.com/images/hot2\.gif -# ||ganool.com/wp-content/uploads/*/matrix303.gif (easylistchina+easylist.txt: 43177) -.ganool.com/wp-content/uploads/.*/matrix303\.gif -# ||ganool.com/wp-content/uploads/*/Javtoys300250..gif (easylistchina+easylist.txt: 43176) -.ganool.com/wp-content/uploads/.*/Javtoys300250\.\.gif -# ||ganool.com/pup.js (easylistchina+easylist.txt: 43175) -.ganool.com/pup\.js -# ||gamingsquid.com/wp-content/banners/ (easylistchina+easylist.txt: 43174) -.gamingsquid.com/wp-content/banners/ -# ||gamevid.com/13/ads/ (easylistchina+easylist.txt: 43173) -.gamevid.com/13/ads/ -# ||gametrailers.com^*/webskin_ (easylistchina+easylist.txt: 43172) -.gametrailers.com/.*/webskin_ -# ||gameshark.com^*/pageskin- (easylistchina+easylist.txt: 43171) -.gameshark.com/.*/pageskin- -# ||gamesgames.com/vda/ (easylistchina+easylist.txt: 43170) -.gamesgames.com/vda/ -# ||gamesfreez.com/banner/ (easylistchina+easylist.txt: 43169) -.gamesfreez.com/banner/ -# ||gamesforwork.com^*/dropalink_small.gif (easylistchina+easylist.txt: 43168) -.gamesforwork.com/.*/dropalink_small\.gif -# ||gameserpent.com/vc*.php (easylistchina+easylist.txt: 43167) -.gameserpent.com/vc.*\.php -# ||gameserpent.com/kit*.php (easylistchina+easylist.txt: 43166) -.gameserpent.com/kit.*\.php -# ||gamersbook.com^*/banners/ (easylistchina+easylist.txt: 43165) -.gamersbook.com/.*/banners/ -# ||gamerant.com/ads/ (easylistchina+easylist.txt: 43164) -.gamerant.com/ads/ -# ||gamepressure.com/ajax/f2p.asp (easylistchina+easylist.txt: 43163) -.gamepressure.com/ajax/f2p\.asp -# ||gameplanet.co.nz^*-takeover.jpg (easylistchina+easylist.txt: 43162) -.gameplanet.co.nz/.*-takeover\.jpg -# ||gamemakerblog.com/gma/gatob.php (easylistchina+easylist.txt: 43161) -.gamemakerblog.com/gma/gatob\.php -# ||gameknot.com/amaster.pl?j= (easylistchina+easylist.txt: 43160) -.gameknot.com/amaster\.pl\?j= -# ||gamecopyworld.eu*/! (easylistchina+easylist.txt: 43159) -.gamecopyworld.eu*./(.*/)?! -# ||gamecopyworld.com^*/vg_160x120_ (easylistchina+easylist.txt: 43158) -.gamecopyworld.com/.*/vg_160x120_ -# ||gamecopyworld.com/games/js/abd.js (easylistchina+easylist.txt: 43157) -.gamecopyworld.com/games/js/abd\.js -# ||gamecopyworld.com/games/i/if6.gif (easylistchina+easylist.txt: 43156) -.gamecopyworld.com/games/i/if6\.gif -# ||gamecopyworld.com*/! (easylistchina+easylist.txt: 43155) -.gamecopyworld.com*./(.*/)?! -# ||gameads.digyourowngrave.com^ (easylistchina+easylist.txt: 43154) -.gameads.digyourowngrave.com -# ||game1games.com/exchange/ (easylistchina+easylist.txt: 43153) -.game1games.com/exchange/ -# ||gamblinginsider.com^*/partner_events.php (easylistchina+easylist.txt: 43152) -.gamblinginsider.com/.*/partner_events\.php -# ||gallerysense.se/site/getBannerCode (easylistchina+easylist.txt: 43151) -.gallerysense.se/site/getBannerCode -# ||gallerynova.se^*/jquery.bpopup.min.js (easylistchina+easylist.txt: 43150) -.gallerynova.se/.*/jquery\.bpopup\.min\.js -# ||galatta.com^*/banners/ (easylistchina+easylist.txt: 43149) -.galatta.com/.*/banners/ -# ||galatta.com^*/bannerimages/ (easylistchina+easylist.txt: 43148) -.galatta.com/.*/bannerimages/ -# ||gaeatimes.com/ctad/ (easylistchina+easylist.txt: 43147) -.gaeatimes.com/ctad/ -# ||gadgetshowlive.net^*/banners/ (easylistchina+easylist.txt: 43146) -.gadgetshowlive.net/.*/banners/ -# ||gadgetmac.com^*/sponsors/ (easylistchina+easylist.txt: 43145) -.gadgetmac.com/.*/sponsors/ -# ||gadget.co.za/siteimages/banners/ (easylistchina+easylist.txt: 43144) -.gadget.co.za/siteimages/banners/ -# ||gaccwest.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43143) -.gaccwest.com/uploads/tx_bannermanagement/ -# ||gaccsouth.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43142) -.gaccsouth.com/uploads/tx_bannermanagement/ -# ||gaccny.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43141) -.gaccny.com/uploads/tx_bannermanagement/ -# ||gaccmidwest.org/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 43140) -.gaccmidwest.org/uploads/tx_bannermanagement/ -# ||gabzfm.com/images/banners/ (easylistchina+easylist.txt: 43139) -.gabzfm.com/images/banners/ -# ||g.brothersoft.com^ (easylistchina+easylist.txt: 43138) -.g.brothersoft.com -# ||f谋rstrowsports.eu/pu/ (easylistchina+easylist.txt: 43137) -.f谋rstrowsports.eu/pu/ -# ||fuse.tv/images/sponsor/ (easylistchina+easylist.txt: 43134) -.fuse.tv/images/sponsor/ -# ||funpic.org/layer.php? (easylistchina+easylist.txt: 43133) -.funpic.org/layer\.php\? -# ||funpic.de/layer.php? (easylistchina+easylist.txt: 43132) -.funpic.de/layer\.php\? -# ||fulltv.tv/pub_ (easylistchina+easylist.txt: 43131) -.fulltv.tv/pub_ -# ||fullrip.net/images/download- (easylistchina+easylist.txt: 43130) -.fullrip.net/images/download- -# ||fulhamfc.com/i/partner/ (easylistchina+easylist.txt: 43129) -.fulhamfc.com/i/partner/ -# ||fugitive.com^*-468x60web. (easylistchina+easylist.txt: 43128) -.fugitive.com/.*-468x60web\. -# ||fudzilla.com^*/banners/ (easylistchina+easylist.txt: 43127) -.fudzilla.com/.*/banners/ -# ||ftlauderdalewebcam.com^*-WebCamBannerFall_ (easylistchina+easylist.txt: 43126) -.ftlauderdalewebcam.com/.*-WebCamBannerFall_ -# ||ftlauderdalewebcam.com/images/*webcambanner (easylistchina+easylist.txt: 43125) -.ftlauderdalewebcam.com/images/.*webcambanner -# ||ftdworld.net/images/banners/ (easylistchina+easylist.txt: 43124) -.ftdworld.net/images/banners/ -# ||fscheetahs.co.za/images/Sponsers/ (easylistchina+easylist.txt: 43123) -.fscheetahs.co.za/images/Sponsers/ -# ||frozen-roms.me/popup.php (easylistchina+easylist.txt: 43122) -.frozen-roms.me/popup\.php -# ||frozen-roms.in/popup.php (easylistchina+easylist.txt: 43121) -.frozen-roms.in/popup\.php -# ||frombar.com/ads/ (easylistchina+easylist.txt: 43120) -.frombar.com/ads/ -# ||friday-ad.co.uk/endeca/afccontainer.aspx (easylistchina+easylist.txt: 43119) -.friday-ad.co.uk/endeca/afccontainer\.aspx -# ||friday-ad.co.uk/banner.js? (easylistchina+easylist.txt: 43118) -.friday-ad.co.uk/banner\.js\? -# ||freshremix.ru/images/ffdownloader1.jpg (easylistchina+easylist.txt: 43117) -.freshremix.ru/images/ffdownloader1\.jpg -# ||freshremix.org/templates/freshremix_eng/images/300.gif (easylistchina+easylist.txt: 43116) -.freshremix.org/templates/freshremix_eng/images/300\.gif -# ||freshplaza.com/b/ (easylistchina+easylist.txt: 43115) -.freshplaza.com/b/ -# ||fresh-weather.com/popup1.gif (easylistchina+easylist.txt: 43114) -.fresh-weather.com/popup1\.gif -# ||frenchradiolondon.com/data/carousel/ (easylistchina+easylist.txt: 43113) -.frenchradiolondon.com/data/carousel/ -# ||freeworldgroup.com/banner (easylistchina+easylist.txt: 43112) -.freeworldgroup.com/banner -# ||freevermontradio.org/pictures/lauren_Stagnitti.jpg (easylistchina+easylist.txt: 43111) -.freevermontradio.org/pictures/lauren_Stagnitti\.jpg -# ||freetypinggame.net/burst720.asp (easylistchina+easylist.txt: 43110) -.freetypinggame.net/burst720\.asp -# ||freetv-video.ca^*/popover-load-js.php? (easylistchina+easylist.txt: 43109) -.freetv-video.ca/.*/popover-load-js\.php\? -# ||freesoftwaremagazine.com/extras/ (easylistchina+easylist.txt: 43107) -.freesoftwaremagazine.com/extras/ -# ||freeroms.com/skyscraper_ (easylistchina+easylist.txt: 43106) -.freeroms.com/skyscraper_ -# ||freeroms.com/bigbox_ (easylistchina+easylist.txt: 43105) -.freeroms.com/bigbox_ -# ||freeroms.com/bigbox.html (easylistchina+easylist.txt: 43104) -.freeroms.com/bigbox\.html -# ||freepornsubmits.com/ads/ (easylistchina+easylist.txt: 43103) -.freepornsubmits.com/ads/ -# ||freenode.net/images/freenode_osuosl.png (easylistchina+easylist.txt: 43102) -.freenode.net/images/freenode_osuosl\.png -# ||freenode.net/images/ack_privateinternetaccess-freenode.png (easylistchina+easylist.txt: 43101) -.freenode.net/images/ack_privateinternetaccess-freenode\.png -# ||freeminecraft.me/mw3.png (easylistchina+easylist.txt: 43100) -.freeminecraft.me/mw3\.png -# ||freemediatv.com/images/inmemoryofmichael.jpg (easylistchina+easylist.txt: 43099) -.freemediatv.com/images/inmemoryofmichael\.jpg -# ||freeappaday.com/nimgs/bb/ (easylistchina+easylist.txt: 43098) -.freeappaday.com/nimgs/bb/ -# ||freeads.co.uk/ctx.php? (easylistchina+easylist.txt: 43097) -.freeads.co.uk/ctx\.php\? -# ||free-webhosts.com/images/a/ (easylistchina+easylist.txt: 43096) -.free-webhosts.com/images/a/ -# ||free-tv-video-online.me/season-side- (easylistchina+easylist.txt: 43095) -.free-tv-video-online.me/season-side- -# ||free-tv-video-online.me/episode-buttom- (easylistchina+easylist.txt: 43094) -.free-tv-video-online.me/episode-buttom- -# ||free-tv-video-online.me/300s.html (easylistchina+easylist.txt: 43093) -.free-tv-video-online.me/300s\.html -# ||free-torrents.org^*/banners/ (easylistchina+easylist.txt: 43092) -.free-torrents.org/.*/banners/ -# ||free-times.com/image/pool/ (easylistchina+easylist.txt: 43091) -.free-times.com/image/pool/ -# ||fredmiranda.com/buzz/canondble-600x90.jpg (easylistchina+easylist.txt: 43090) -.fredmiranda.com/buzz/canondble-600x90\.jpg -# ||freakshare.com/yild.js (easylistchina+easylist.txt: 43089) -.freakshare.com/yild\.js -# ||fpscheats.com/fpsbanner.jpg (easylistchina+easylist.txt: 43088) -.fpscheats.com/fpsbanner\.jpg -# ||fpscheats.com/banner-img.jpg (easylistchina+easylist.txt: 43087) -.fpscheats.com/banner-img\.jpg -# ||foxsportsradio.com/pages/second300x250iframe.html (easylistchina+easylist.txt: 43086) -.foxsportsradio.com/pages/second300x250iframe\.html -# ||foxsports540.com/images/banner2.png (easylistchina+easylist.txt: 43085) -.foxsports540.com/images/banner2\.png -# ||foxsports540.com/images/banner1.png (easylistchina+easylist.txt: 43084) -.foxsports540.com/images/banner1\.png -# ||foxsports.com^*_skin_ (easylistchina+easylist.txt: 43083) -.foxsports.com/.*_skin_ -# ||foxsports.com^*/Sponsors/ (easylistchina+easylist.txt: 43082) -.foxsports.com/.*/Sponsors/ -# ||foxsports.com^*-skin_ (easylistchina+easylist.txt: 43081) -.foxsports.com/.*-skin_ -# ||foxsports.com^*-Skin- (easylistchina+easylist.txt: 43080) -.foxsports.com/.*-Skin- -# ||foxsports.com/component/xml/SBMarketingTakeOverPromos (easylistchina+easylist.txt: 43079) -.foxsports.com/component/xml/SBMarketingTakeOverPromos -# ||foxsports.com.au^*/sponsor/ (easylistchina+easylist.txt: 43077) -.foxsports.com.au/.*/sponsor/ -# ||foxsoccer2go.com/namedImage/*/backgroundSkin.jpg (easylistchina+easylist.txt: 43076) -.foxsoccer2go.com/namedImage/.*/backgroundSkin\.jpg -# ||foxbusiness.com/html/google_homepage_promo (easylistchina+easylist.txt: 43075) -.foxbusiness.com/html/google_homepage_promo -# ||forward.com/workspace/assets/newimages/amazon.png (easylistchina+easylist.txt: 43074) -.forward.com/workspace/assets/newimages/amazon\.png -# ||forumw.org/images/uploading.gif (easylistchina+easylist.txt: 43073) -.forumw.org/images/uploading\.gif -# ||forumimg.ipmart.com/swf/ipmart_forum/banner (easylistchina+easylist.txt: 43072) -.forumimg.ipmart.com/swf/ipmart_forum/banner -# ||forexpeacearmy.com/images/banners/ (easylistchina+easylist.txt: 43071) -.forexpeacearmy.com/images/banners/ -# ||foreignersinuk.co.uk^*/banner/ (easylistchina+easylist.txt: 43070) -.foreignersinuk.co.uk/.*/banner/ -# ||fordforums.com.au/logos/ (easylistchina+easylist.txt: 43069) -.fordforums.com.au/logos/ -# ||footballtradedirectory.com^*banner (easylistchina+easylist.txt: 43068) -.footballtradedirectory.com/.*banner -# ||footballshirtculture.com/images/e12b.jpg (easylistchina+easylist.txt: 43067) -.footballshirtculture.com/images/e12b\.jpg -# ||football-italia.net/imgs/moveyourmouse.gif (easylistchina+easylist.txt: 43066) -.football-italia.net/imgs/moveyourmouse\.gif -# ||foodingredientsfirst.com/content/flash_loaders/loadskyscraper.swf (easylistchina+easylist.txt: 43065) -.foodingredientsfirst.com/content/flash_loaders/loadskyscraper\.swf -# ||foodingredientsfirst.com/content/flash_loaders/loadlargetile.swf (easylistchina+easylist.txt: 43064) -.foodingredientsfirst.com/content/flash_loaders/loadlargetile\.swf -# ||foodingredientsfirst.com/content/banners/ (easylistchina+easylist.txt: 43063) -.foodingredientsfirst.com/content/banners/ -# ||fncstatic.com^*/sponsored-by.gif (easylistchina+easylist.txt: 43062) -.fncstatic.com/.*/sponsored-by\.gif -# ||fmr.co.za^*/banners/ (easylistchina+easylist.txt: 43061) -.fmr.co.za/.*/banners/ -# ||flyordie.com/games/online/ca.html (easylistchina+easylist.txt: 43060) -.flyordie.com/games/online/ca\.html -# ||flyordie.com/games/free/b/ (easylistchina+easylist.txt: 43059) -.flyordie.com/games/free/b/ -# ||flvto.biz/scripts/banners.php? (easylistchina+easylist.txt: 43058) -.flvto.biz/scripts/banners\.php\? -# ||flopturnriver.com*/banners/ (easylistchina+easylist.txt: 43056) -.flopturnriver.com*./(.*/)?banners/ -# ||flightradar24.com/_includes/sections/airportAd.php (easylistchina+easylist.txt: 43055) -.flightradar24.com/_includes/sections/airportAd\.php -# ||flicks.co.nz/takeovercss/ (easylistchina+easylist.txt: 43054) -.flicks.co.nz/takeovercss/ -# ||flicks.co.nz/images/takeovers/ (easylistchina+easylist.txt: 43053) -.flicks.co.nz/images/takeovers/ -# ||fleetwatch.co.za/images/banners/ (easylistchina+easylist.txt: 43052) -.fleetwatch.co.za/images/banners/ -# ||flatpanelshd.com/pictures/*banner (easylistchina+easylist.txt: 43051) -.flatpanelshd.com/pictures/.*banner -# ||flashy8.com/banner/ (easylistchina+easylist.txt: 43050) -.flashy8.com/banner/ -# ||flashx.tv^*/counterck.html (easylistchina+easylist.txt: 43049) -.flashx.tv/.*/counterck\.html -# ||flashx.tv/nuevo/player/js/anya.js (easylistchina+easylist.txt: 43048) -.flashx.tv/nuevo/player/js/anya\.js -# ||flashx.tv/img/download_ (easylistchina+easylist.txt: 43047) -.flashx.tv/img/download_ -# ||flashtv.co/class/adjsxxs.js (easylistchina+easylist.txt: 43046) -.flashtv.co/class/adjsxxs\.js -# ||flashtv.co/adds/ (easylistchina+easylist.txt: 43045) -.flashtv.co/adds/ -# ||flashscore.com/res/image/bookmaker-list.png (easylistchina+easylist.txt: 43044) -.flashscore.com/res/image/bookmaker-list\.png -# ||flameload.com/onvertise. (easylistchina+easylist.txt: 43043) -.flameload.com/onvertise\. -# ||fiverr.com/javascripts/conversion.js (easylistchina+easylist.txt: 43042) -.fiverr.com/javascripts/conversion\.js -# ||fishchannel.com/images/sponsors/ (easylistchina+easylist.txt: 43041) -.fishchannel.com/images/sponsors/ -# ||firsttoknow.com^*/page-criteo- (easylistchina+easylist.txt: 43040) -.firsttoknow.com/.*/page-criteo- -# ||firstrowusa.eu/js/pu.js (easylistchina+easylist.txt: 43039) -.firstrowusa.eu/js/pu\.js -# ||firstrowusa.eu/js/bn.js (easylistchina+easylist.txt: 43038) -.firstrowusa.eu/js/bn\.js -# ||firstrowsports.li/frame/ (easylistchina+easylist.txt: 43037) -.firstrowsports.li/frame/ -# ||firstrows.biz/js/pu.js (easylistchina+easylist.txt: 43036) -.firstrows.biz/js/pu\.js -# ||firstrows.biz/js/bn.js (easylistchina+easylist.txt: 43035) -.firstrows.biz/js/bn\.js -# ||firstpost.in^*/promo/ (easylistchina+easylist.txt: 43034) -.firstpost.in/.*/promo/ -# ||firstpost.com^*_sponsored. (easylistchina+easylist.txt: 43033) -.firstpost.com/.*_sponsored\. -# ||firstpost.com^*_skin_ (easylistchina+easylist.txt: 43032) -.firstpost.com/.*_skin_ -# ||firstpost.com^*/sponsered- (easylistchina+easylist.txt: 43031) -.firstpost.com/.*/sponsered- -# ||firstpost.com/promo/ (easylistchina+easylist.txt: 43030) -.firstpost.com/promo/ -# ||firstnationsvoice.com/images/weblinks.swf (easylistchina+easylist.txt: 43029) -.firstnationsvoice.com/images/weblinks\.swf -# ||firingsquad.com^*/sponsor_row.gif (easylistchina+easylist.txt: 43028) -.firingsquad.com/.*/sponsor_row\.gif -# ||firedrive.com/appresources/ (easylistchina+easylist.txt: 43027) -.firedrive.com/appresources/ -# ||firedrive.com/appdata/ (easylistchina+easylist.txt: 43026) -.firedrive.com/appdata/ -# ||finextra.com^*/pantiles/ (easylistchina+easylist.txt: 43025) -.finextra.com/.*/pantiles/ -# ||finextra.com^*/leaderboards/ (easylistchina+easylist.txt: 43024) -.finextra.com/.*/leaderboards/ -# ||findthebest-sw.com/sponsor_event? (easylistchina+easylist.txt: 43023) -.findthebest-sw.com/sponsor_event\? -# ||findnsave.idahostatesman.com^ (easylistchina+easylist.txt: 43022) -.findnsave.idahostatesman.com -# ||findit.com.mt/viewer/ (easylistchina+easylist.txt: 43021) -.findit.com.mt/viewer/ -# ||findit.com.mt/dynimage/boxbanner/ (easylistchina+easylist.txt: 43020) -.findit.com.mt/dynimage/boxbanner/ -# ||findicons.com^*/125x125/ (easylistchina+easylist.txt: 43019) -.findicons.com/.*/125x125/ -# ||findfreegraphics.com/underp.js (easylistchina+easylist.txt: 43018) -.findfreegraphics.com/underp\.js -# ||findfiles.com/images/knife-dancing-1.gif (easylistchina+easylist.txt: 43017) -.findfiles.com/images/knife-dancing-1\.gif -# ||findfiles.com/images/icatchallfree.png (easylistchina+easylist.txt: 43016) -.findfiles.com/images/icatchallfree\.png -# ||financialsamurai.com/wp-content/uploads/*/sliced-alternative-10000.jpg (easylistchina+easylist.txt: 43015) -.financialsamurai.com/wp-content/uploads/.*/sliced-alternative-10000\.jpg -# ||financialnewsandtalk.com/scripts/slideshow-sponsors.js (easylistchina+easylist.txt: 43014) -.financialnewsandtalk.com/scripts/slideshow-sponsors\.js -# ||fimserve.ign.com^ (easylistchina+easylist.txt: 43013) -.fimserve.ign.com -# ||filmsite.org/dart-zones.js (easylistchina+easylist.txt: 43012) -.filmsite.org/dart-zones\.js -# ||filmovizija.com/Images/photo4sell.jpg (easylistchina+easylist.txt: 43011) -.filmovizija.com/Images/photo4sell\.jpg -# ||filmovizija.com/Images/ludovanjeaffilate.jpg (easylistchina+easylist.txt: 43010) -.filmovizija.com/Images/ludovanjeaffilate\.jpg -# ||filmey.com/Filmey.Ad.js (easylistchina+easylist.txt: 43009) -.filmey.com/Filmey\.Ad\.js -# ||filipinojournal.com/images/banners/ (easylistchina+easylist.txt: 43008) -.filipinojournal.com/images/banners/ -# ||filestream.me/requirements/images/ed.gif (easylistchina+easylist.txt: 43007) -.filestream.me/requirements/images/ed\.gif -# ||filestream.me/requirements/images/cialis_generic.gif (easylistchina+easylist.txt: 43006) -.filestream.me/requirements/images/cialis_generic\.gif -# ||filespazz.com^*/copyartwork_side_banner.gif (easylistchina+easylist.txt: 43005) -.filespazz.com/.*/copyartwork_side_banner\.gif -# ||filespazz.com/imx/template_r2_c3.jpg (easylistchina+easylist.txt: 43004) -.filespazz.com/imx/template_r2_c3\.jpg -# ||filespart.com/ot/fast.aspx? (easylistchina+easylist.txt: 43003) -.filespart.com/ot/fast\.aspx\? -# ||fileshut.com/etc/links.php?q= (easylistchina+easylist.txt: 43002) -.fileshut.com/etc/links\.php\?q= -# ||filesharingtalk.com/fst/8242/ (easylistchina+easylist.txt: 43001) -.filesharingtalk.com/fst/8242/ -# ||files.wordpress.com/*-reskin. (easylistchina+easylist.txt: 43000) -.files.wordpress.com/.*-reskin\. -# ||filerio.in^*/jquery.interstitial. (easylistchina+easylist.txt: 42999) -.filerio.in/.*/jquery\.interstitial\. -# ||fileplanet.com/fileblog/sub-no-ad.shtml (easylistchina+easylist.txt: 42998) -.fileplanet.com/fileblog/sub-no-ad\.shtml -# ||fileom.com/img/instadownload2.png (easylistchina+easylist.txt: 42997) -.fileom.com/img/instadownload2\.png -# ||fileom.com/img/downloadnow.png (easylistchina+easylist.txt: 42996) -.fileom.com/img/downloadnow\.png -# ||filegaga.com/ot/fast.php? (easylistchina+easylist.txt: 42995) -.filegaga.com/ot/fast\.php\? -# ||fileflyer.com/img/dap_banner_ (easylistchina+easylist.txt: 42994) -.fileflyer.com/img/dap_banner_ -# ||filedino.com/imagesn/downloadgif.gif (easylistchina+easylist.txt: 42993) -.filedino.com/imagesn/downloadgif\.gif -# ||file2hd.com/sweet.jpg (easylistchina+easylist.txt: 42992) -.file2hd.com/sweet\.jpg -# ||file.org^*/images/promo/ (easylistchina+easylist.txt: 42991) -.file.org/.*/images/promo/ -# ||file.org/fo/scripts/download_helpopt.js (easylistchina+easylist.txt: 42990) -.file.org/fo/scripts/download_helpopt\.js -# ||fijitimes.com/images/bspxchange.gif (easylistchina+easylist.txt: 42989) -.fijitimes.com/images/bspxchange\.gif -# ||fightersonlymag.com/images/banners/ (easylistchina+easylist.txt: 42988) -.fightersonlymag.com/images/banners/ -# ||fiberupload.org/300en.png (easylistchina+easylist.txt: 42987) -.fiberupload.org/300en\.png -# ||fiba.com/Content/Sponsors/ (easylistchina+easylist.txt: 42986) -.fiba.com/Content/Sponsors/ -# ||fhm.com^*_banner.png (easylistchina+easylist.txt: 42985) -.fhm.com/.*_banner\.png -# ||fhm.com^*_background.jpg (easylistchina+easylist.txt: 42984) -.fhm.com/.*_background\.jpg -# ||fhm.com/images/sportsbutton.gif (easylistchina+easylist.txt: 42983) -.fhm.com/images/sportsbutton\.gif -# ||fhm.com/images/casinobutton.gif (easylistchina+easylist.txt: 42982) -.fhm.com/images/casinobutton\.gif -# ||fgfx.co.uk/banner.js? (easylistchina+easylist.txt: 42981) -.fgfx.co.uk/banner\.js\? -# ||ffiles.com/counters.js (easylistchina+easylist.txt: 42980) -.ffiles.com/counters\.js -# ||fever.fm^*/sposor- (easylistchina+easylist.txt: 42979) -.fever.fm/.*/sposor- -# ||fever.fm^*/campaigns/ (easylistchina+easylist.txt: 42978) -.fever.fm/.*/campaigns/ -# ||feiwei.tv^*/sandbox.html (easylistchina+easylist.txt: 42977) -.feiwei.tv/.*/sandbox\.html -# ||feedsportal.com/videoserve/ (easylistchina+easylist.txt: 42976) -.feedsportal.com/videoserve/ -# ||feedsportal.com/creative/ (easylistchina+easylist.txt: 42975) -.feedsportal.com/creative/ -# ||feeds.feedburner.com/*.gif (easylistchina+easylist.txt: 42974) -.feeds.feedburner.com/.*\.gif -# ||feed-the-beast.com^*/gamevox.png (easylistchina+easylist.txt: 42972) -.feed-the-beast.com/.*/gamevox\.png -# ||fastvideo.eu/images/pl_box_rapid.jpg (easylistchina+easylist.txt: 42970) -.fastvideo.eu/images/pl_box_rapid\.jpg -# ||fastvideo.eu/images/down.png (easylistchina+easylist.txt: 42969) -.fastvideo.eu/images/down\.png -# ||fastpic.ru/dox (easylistchina+easylist.txt: 42968) -.fastpic.ru/dox -# ||fastcompany.com/sites/*/interstitial.js (easylistchina+easylist.txt: 42967) -.fastcompany.com/sites/.*/interstitial\.js -# ||farmville.com/promo_bar.php (easylistchina+easylist.txt: 42966) -.farmville.com/promo_bar\.php -# ||fark.com/cgi/buzzfeed_link.pl (easylistchina+easylist.txt: 42965) -.fark.com/cgi/buzzfeed_link\.pl -# ||fanfusion.org/as.js (easylistchina+easylist.txt: 42963) -.fanfusion.org/as\.js -# ||fancystreems.com/300x2503.php (easylistchina+easylist.txt: 42962) -.fancystreems.com/300x2503\.php -# ||fan.twitch.tv^ (easylistchina+easylist.txt: 42961) -.fan.twitch.tv -# ||famouspornstarstube.com/images/sponsors/ (easylistchina+easylist.txt: 42960) -.famouspornstarstube.com/images/sponsors/ -# ||familylawweek.co.uk/bin_1/ (easylistchina+easylist.txt: 42959) -.familylawweek.co.uk/bin_1/ -# ||fallout3nexus.com^*/300x600.php (easylistchina+easylist.txt: 42958) -.fallout3nexus.com/.*/300x600\.php -# ||facenfacts.com^*/ads/ (easylistchina+easylist.txt: 42956) -.facenfacts.com/.*/ads/ -# ||faadooengineers.com/ads/ (easylistchina+easylist.txt: 42955) -.faadooengineers.com/ads/ -# ||f1today.net^*/sponsors/ (easylistchina+easylist.txt: 42954) -.f1today.net/.*/sponsors/ -# ||eztv.ag/js/openback*.js (easylistchina+easylist.txt: 42953) -.eztv.ag/js/openback.*\.js -# ||ezmoviestv.com^*/ad-for-ezmovies.png (easylistchina+easylist.txt: 42952) -.ezmoviestv.com/.*/ad-for-ezmovies\.png -# ||extremeoverclocking.com/template_images/it120x240.gif (easylistchina+easylist.txt: 42951) -.extremeoverclocking.com/template_images/it120x240\.gif -# ||extratorrent.cc/tz (easylistchina+easylist.txt: 42950) -.extratorrent.cc/tz -# ||extratorrent.cc/scripts/pp_ (easylistchina+easylist.txt: 42949) -.extratorrent.cc/scripts/pp_ -# ||extratorrent.cc/scripts/bo1o.js (easylistchina+easylist.txt: 42948) -.extratorrent.cc/scripts/bo1o\.js -# ||extratorrent.cc/images/wintoolspro.gif (easylistchina+easylist.txt: 42947) -.extratorrent.cc/images/wintoolspro\.gif -# ||expreview.com/exp2/ (easylistchina+easylist.txt: 42946) -.expreview.com/exp2/ -# ||expressmilwaukee.com/engines/backgrounds/js/backgrounds.js (easylistchina+easylist.txt: 42945) -.expressmilwaukee.com/engines/backgrounds/js/backgrounds\.js -# ||express.co.uk^*/sponsored/ (easylistchina+easylist.txt: 42944) -.express.co.uk/.*/sponsored/ -# ||expertreviews.co.uk^*/skins/ (easylistchina+easylist.txt: 42943) -.expertreviews.co.uk/.*/skins/ -# ||expertreviews.co.uk/?act=widgets. (easylistchina+easylist.txt: 42942) -.expertreviews.co.uk/\?act=widgets\. -# ||expatwomen.com/expat-women-sponsors/ (easylistchina+easylist.txt: 42941) -.expatwomen.com/expat-women-sponsors/ -# ||expatexchange.com/banner/ (easylistchina+easylist.txt: 42940) -.expatexchange.com/banner/ -# ||excite.com/gca_iframe.html (easylistchina+easylist.txt: 42939) -.excite.com/gca_iframe\.html -# ||exchangerates.org.uk/images/200x200_ (easylistchina+easylist.txt: 42938) -.exchangerates.org.uk/images/200x200_ -# ||exchangerates.org.uk/images/150_60_ (easylistchina+easylist.txt: 42937) -.exchangerates.org.uk/images/150_60_ -# ||exchangerates.org.uk/images-NEW/tor.gif (easylistchina+easylist.txt: 42936) -.exchangerates.org.uk/images-NEW/tor\.gif -# ||exceluser.com^*/pub/rotate_ (easylistchina+easylist.txt: 42935) -.exceluser.com/.*/pub/rotate_ -# ||exashare.com/vod_stream.html (easylistchina+easylist.txt: 42933) -.exashare.com/vod_stream\.html -# ||exashare.com/playerexa.jpg (easylistchina+easylist.txt: 42932) -.exashare.com/playerexa\.jpg -# ||exashare.com/player_file.jpg (easylistchina+easylist.txt: 42931) -.exashare.com/player_file\.jpg -# ||exashare.com/player_begin.jpg (easylistchina+easylist.txt: 42930) -.exashare.com/player_begin\.jpg -# ||exashare.com/hq_stream.html (easylistchina+easylist.txt: 42929) -.exashare.com/hq_stream\.html -# ||ewrc-results.com/images/horni_ewrc_result_banner3.jpg (easylistchina+easylist.txt: 42927) -.ewrc-results.com/images/horni_ewrc_result_banner3\.jpg -# ||eweek.com^*/sponsored- (easylistchina+easylist.txt: 42926) -.eweek.com/.*/sponsored- -# ||eweek.com/widgets/ibmtco/ (easylistchina+easylist.txt: 42925) -.eweek.com/widgets/ibmtco/ -# ||eweek.com/images/stories/marketing/ (easylistchina+easylist.txt: 42924) -.eweek.com/images/stories/marketing/ -# ||evony.com/sevonyadvs2. (easylistchina+easylist.txt: 42923) -.evony.com/sevonyadvs2\. -# ||evolutionm.net/SponsorLogos/ (easylistchina+easylist.txt: 42922) -.evolutionm.net/SponsorLogos/ -# ||everythingsysadmin.com^*_sw_banner120x600_ (easylistchina+easylist.txt: 42921) -.everythingsysadmin.com/.*_sw_banner120x600_ -# ||evernote.com/prom/img/ (easylistchina+easylist.txt: 42920) -.evernote.com/prom/img/ -# ||eventful.com/tools/click/url? (easylistchina+easylist.txt: 42919) -.eventful.com/tools/click/url\? -# ||eve-search.com/gge.gif (easylistchina+easylist.txt: 42918) -.eve-search.com/gge\.gif -# ||eva.ucas.com^ (easylistchina+easylist.txt: 42917) -.eva.ucas.com -# ||euroweb.com^*/banner/ (easylistchina+easylist.txt: 42916) -.euroweb.com/.*/banner/ -# ||europeonline-magazine.eu/nuroa/ (easylistchina+easylist.txt: 42915) -.europeonline-magazine.eu/nuroa/ -# ||europeonline-magazine.eu/banner/ (easylistchina+easylist.txt: 42914) -.europeonline-magazine.eu/banner/ -# ||european-rubber-journal.com/160x600px_ (easylistchina+easylist.txt: 42913) -.european-rubber-journal.com/160x600px_ -# ||euronews.com/media/farnborough/farnborough_wp.jpg (easylistchina+easylist.txt: 42912) -.euronews.com/media/farnborough/farnborough_wp\.jpg -# ||euroleague.net^*/sponsors- (easylistchina+easylist.txt: 42911) -.euroleague.net/.*/sponsors- -# ||eurogamer.net^*/takeovers/ (easylistchina+easylist.txt: 42910) -.eurogamer.net/.*/takeovers/ -# ||eurogamer.net/quad.php (easylistchina+easylist.txt: 42909) -.eurogamer.net/quad\.php -# ||eurodict.com/images/banner_ (easylistchina+easylist.txt: 42908) -.eurodict.com/images/banner_ -# ||eurocupbasketball.com^*/sponsors- (easylistchina+easylist.txt: 42907) -.eurocupbasketball.com/.*/sponsors- -# ||eurochannel.com/images/banners/ (easylistchina+easylist.txt: 42906) -.eurochannel.com/images/banners/ -# ||euphonik.dj/img/sponsors- (easylistchina+easylist.txt: 42905) -.euphonik.dj/img/sponsors- -# ||etidbits.com/300x250news.php (easylistchina+easylist.txt: 42904) -.etidbits.com/300x250news\.php -# ||eteknix.com/wp-content/uploads/*Takeover (easylistchina+easylist.txt: 42903) -.eteknix.com/wp-content/uploads/.*Takeover -# ||eteknix.com/wp-content/uploads/*skin (easylistchina+easylist.txt: 42902) -.eteknix.com/wp-content/uploads/.*skin -# ||esus.com/images/regiochat_logo.png (easylistchina+easylist.txt: 42901) -.esus.com/images/regiochat_logo\.png -# ||essayscam.org^*/ads.js (easylistchina+easylist.txt: 42900) -.essayscam.org/.*/ads\.js -# ||essayinfo.com/img/125x125_ (easylistchina+easylist.txt: 42899) -.essayinfo.com/img/125x125_ -# ||espn1320.net/get_preroll.php? (easylistchina+easylist.txt: 42898) -.espn1320.net/get_preroll\.php\? -# ||espn.go.com/ads/ (easylistchina+easylist.txt: 42896) -.espn.go.com/ads/ -# ||espn.co.uk^*/viagogo_sports.html (easylistchina+easylist.txt: 42895) -.espn.co.uk/.*/viagogo_sports\.html -# ||espn.co.uk/espnuk/williamhill_ (easylistchina+easylist.txt: 42894) -.espn.co.uk/espnuk/williamhill_ -# ||espn.co.uk/espnuk/williamhill/ (easylistchina+easylist.txt: 42893) -.espn.co.uk/espnuk/williamhill/ -# ||escapementmagazine.com/wp-content/banners/ (easylistchina+easylist.txt: 42892) -.escapementmagazine.com/wp-content/banners/ -# ||eq2flames.com/images/styles/eq2/images/banner (easylistchina+easylist.txt: 42891) -.eq2flames.com/images/styles/eq2/images/banner -# ||eprop.co.za/images/banners/ (easylistchina+easylist.txt: 42890) -.eprop.co.za/images/banners/ -# ||episodic.com^*/logos/player- (easylistchina+easylist.txt: 42889) -.episodic.com/.*/logos/player- -# ||epictv.com/sites/default/files/290x400_ (easylistchina+easylist.txt: 42888) -.epictv.com/sites/default/files/290x400_ -# ||epicshare.net/p1.js (easylistchina+easylist.txt: 42887) -.epicshare.net/p1\.js -# ||environmental-finance.com^*rotate.gif (easylistchina+easylist.txt: 42886) -.environmental-finance.com/.*rotate\.gif -# ||environmental-finance.com^*banner (easylistchina+easylist.txt: 42885) -.environmental-finance.com/.*banner -# ||enigmagroup.org/clients/privatetunnels.swf (easylistchina+easylist.txt: 42884) -.enigmagroup.org/clients/privatetunnels\.swf -# ||englishtips.org/b/ (easylistchina+easylist.txt: 42883) -.englishtips.org/b/ -# ||england.fm/i/ducksunited120x60english.gif (easylistchina+easylist.txt: 42882) -.england.fm/i/ducksunited120x60english\.gif -# ||energytribune.com/res/banner/ (easylistchina+easylist.txt: 42881) -.energytribune.com/res/banner/ -# ||encyclopediadramatica.es/spon/ (easylistchina+easylist.txt: 42879) -.encyclopediadramatica.es/spon/ -# ||encyclopediadramatica.es/lanhell.js (easylistchina+easylist.txt: 42878) -.encyclopediadramatica.es/lanhell\.js -# ||empirestatenews.net/Banners/ (easylistchina+easylist.txt: 42872) -.empirestatenews.net/Banners/ -# ||emoneyspace.com/b.php (easylistchina+easylist.txt: 42871) -.emoneyspace.com/b\.php -# ||emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy.gif (easylistchina+easylist.txt: 42870) -.emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy\.gif -# ||elocallink.tv^*/showgif.php? (easylistchina+easylist.txt: 42869) -.elocallink.tv/.*/showgif\.php\? -# ||elivetv.in/pop/ (easylistchina+easylist.txt: 42868) -.elivetv.in/pop/ -# ||elgg.org/images/hostupon_banner.gif (easylistchina+easylist.txt: 42867) -.elgg.org/images/hostupon_banner\.gif -# ||elevenmyanmar.com/images/banners/ (easylistchina+easylist.txt: 42866) -.elevenmyanmar.com/images/banners/ -# ||electronicsfeed.com/bximg/ (easylistchina+easylist.txt: 42865) -.electronicsfeed.com/bximg/ -# ||electricenergyonline.com^*/bannieres/ (easylistchina+easylist.txt: 42864) -.electricenergyonline.com/.*/bannieres/ -# ||ekantipur.com/uploads/banner/ (easylistchina+easylist.txt: 42863) -.ekantipur.com/uploads/banner/ -# ||ejpress.org/img/banners/ (easylistchina+easylist.txt: 42862) -.ejpress.org/img/banners/ -# ||ejpress.org/images/banners/ (easylistchina+easylist.txt: 42861) -.ejpress.org/images/banners/ -# ||ejb.com/300_250 (easylistchina+easylist.txt: 42860) -.ejb.com/300_250 -# ||ehow.com/media/ad.html^ (easylistchina+easylist.txt: 42859) -.ehow.com/media/ad\.html[^\w%.-] -# ||ehow.com/marketing/ (easylistchina+easylist.txt: 42858) -.ehow.com/marketing/ -# ||ehow.com/images/brands/ (easylistchina+easylist.txt: 42857) -.ehow.com/images/brands/ -# ||ehow.co.uk/frames/directas_ (easylistchina+easylist.txt: 42856) -.ehow.co.uk/frames/directas_ -# ||egamer.co.za^*-background- (easylistchina+easylist.txt: 42855) -.egamer.co.za/.*-background- -# ||educationbusinessuk.net/images/stage.gif (easylistchina+easylist.txt: 42854) -.educationbusinessuk.net/images/stage\.gif -# ||edmunds.com/api/savesegment? (easylistchina+easylist.txt: 42853) -.edmunds.com/api/savesegment\? -# ||ed2k.2x4u.de/mfc/ (easylistchina+easylist.txt: 42851) -.ed2k.2x4u.de/mfc/ -# ||ecostream.tv/js/pu.js (easylistchina+easylist.txt: 42850) -.ecostream.tv/js/pu\.js -# ||ecostream.tv/assets/js/pu.min.js (easylistchina+easylist.txt: 42849) -.ecostream.tv/assets/js/pu\.min\.js -# ||economist.com^*/timekeeper-by-rolex-medium.png (easylistchina+easylist.txt: 42848) -.economist.com/.*/timekeeper-by-rolex-medium\.png -# ||economist.com.na^*/banners/ (easylistchina+easylist.txt: 42847) -.economist.com.na/.*/banners/ -# ||ecommerce-journal.com/specdata.php? (easylistchina+easylist.txt: 42846) -.ecommerce-journal.com/specdata\.php\? -# ||eclipse.org/membership/promo/images/ (easylistchina+easylist.txt: 42845) -.eclipse.org/membership/promo/images/ -# ||ebuddy.com/web_banners_ (easylistchina+easylist.txt: 42844) -.ebuddy.com/web_banners_ -# ||ebuddy.com/web_banners/ (easylistchina+easylist.txt: 42843) -.ebuddy.com/web_banners/ -# ||ebuddy.com/textlink.php? (easylistchina+easylist.txt: 42842) -.ebuddy.com/textlink\.php\? -# ||ebookshare.net^*/streamdirect160x600_ (easylistchina+easylist.txt: 42841) -.ebookshare.net/.*/streamdirect160x600_ -# ||ebookshare.net/pages/lt.html (easylistchina+easylist.txt: 42840) -.ebookshare.net/pages/lt\.html -# ||ebizmbainc.netdna-cdn.com/images/tab_sponsors.gif (easylistchina+easylist.txt: 42839) -.ebizmbainc.netdna-cdn.com/images/tab_sponsors\.gif -# ||ebizblitz.co.za/upload/ad/ (easylistchina+easylist.txt: 42838) -.ebizblitz.co.za/upload/ad/ -# ||ebaystatic.com/aw/pics/signin/*_signInSkin_ (easylistchina+easylist.txt: 42836) -.ebaystatic.com/aw/pics/signin/.*_signInSkin_ -# ||ebayrtm.com/rtm?RtmIt (easylistchina+easylist.txt: 42835) -.ebayrtm.com/rtm\?RtmIt -# ||ebayrtm.com/rtm?RtmCmd*&enc= (easylistchina+easylist.txt: 42834) -.ebayrtm.com/rtm\?RtmCmd.*&enc= -# ||eatsleepsport.com/images/manorgaming1.jpg (easylistchina+easylist.txt: 42833) -.eatsleepsport.com/images/manorgaming1\.jpg -# ||easybytez.com/pop3.js (easylistchina+easylist.txt: 42832) -.easybytez.com/pop3\.js -# ||eastonline.eu/images/eng_banner_ (easylistchina+easylist.txt: 42831) -.eastonline.eu/images/eng_banner_ -# ||eastonline.eu/images/banners/ (easylistchina+easylist.txt: 42830) -.eastonline.eu/images/banners/ -# ||earthmoversmagazine.co.uk/nimg/ (easylistchina+easylist.txt: 42829) -.earthmoversmagazine.co.uk/nimg/ -# ||earthlink.net^*/promos/ (easylistchina+easylist.txt: 42828) -.earthlink.net/.*/promos/ -# ||e90post.com/forums/images/banners/ (easylistchina+easylist.txt: 42827) -.e90post.com/forums/images/banners/ -# ||dyncdn.celebuzz.com/assets/ (easylistchina+easylist.txt: 42825) -.dyncdn.celebuzz.com/assets/ -# ||dwarfgames.com/pub/728_top. (easylistchina+easylist.txt: 42824) -.dwarfgames.com/pub/728_top\. -# ||dvdvideosoft.com^*/banners/ (easylistchina+easylist.txt: 42823) -.dvdvideosoft.com/.*/banners/ -# ||dustcoin.com^*/image/ad- (easylistchina+easylist.txt: 42822) -.dustcoin.com/.*/image/ad- -# ||durbannews.co.za^*_new728x60.gif (easylistchina+easylist.txt: 42821) -.durbannews.co.za/.*_new728x60\.gif -# ||dump8.com/wget_2leep_bottom.php (easylistchina+easylist.txt: 42820) -.dump8.com/wget_2leep_bottom\.php -# ||dump8.com/wget.php (easylistchina+easylist.txt: 42819) -.dump8.com/wget\.php -# ||dump8.com/tiz/ (easylistchina+easylist.txt: 42818) -.dump8.com/tiz/ -# ||duckload.com/js/abp.php? (easylistchina+easylist.txt: 42817) -.duckload.com/js/abp\.php\? -# ||duckduckgo.com/y.js (easylistchina+easylist.txt: 42816) -.duckduckgo.com/y\.js -# ||duckduckgo.com/m.js?*&o=a (easylistchina+easylist.txt: 42815) -.duckduckgo.com/m\.js\?.*&o=a -# ||duckduckgo.com/i.js?o=a& (easylistchina+easylist.txt: 42814) -.duckduckgo.com/i\.js\?o=a& -# ||dubcnm.com/Adon/ (easylistchina+easylist.txt: 42813) -.dubcnm.com/Adon/ -# ||dsogaming.com/interstitial/ (easylistchina+easylist.txt: 42812) -.dsogaming.com/interstitial/ -# ||droidgamers.com/images/banners/ (easylistchina+easylist.txt: 42811) -.droidgamers.com/images/banners/ -# ||driverdb.com^*/banners/ (easylistchina+easylist.txt: 42810) -.driverdb.com/.*/banners/ -# ||drivearchive.co.uk/images/amazon. (easylistchina+easylist.txt: 42809) -.drivearchive.co.uk/images/amazon\. -# ||drivearchive.co.uk/amazon/ (easylistchina+easylist.txt: 42808) -.drivearchive.co.uk/amazon/ -# ||drhinternet.net/mwimgsent/ (easylistchina+easylist.txt: 42807) -.drhinternet.net/mwimgsent/ -# ||dreamscene.org^*_Banner. (easylistchina+easylist.txt: 42806) -.dreamscene.org/.*_Banner\. -# ||dpstatic.com/s/ad.js (easylistchina+easylist.txt: 42804) -.dpstatic.com/s/ad\.js -# ||dpstatic.com/banner.png? (easylistchina+easylist.txt: 42803) -.dpstatic.com/banner\.png\? -# ||dprogram.net^*/rightsprites.png (easylistchina+easylist.txt: 42802) -.dprogram.net/.*/rightsprites\.png -# ||downloadian.com/assets/banner.jpg (easylistchina+easylist.txt: 42801) -.downloadian.com/assets/banner\.jpg -# ||downloadbox.to/Leadertop.html (easylistchina+easylist.txt: 42800) -.downloadbox.to/Leadertop\.html -# ||downforeveryoneorjustme.com/images/dotbiz_banner.jpg (easylistchina+easylist.txt: 42799) -.downforeveryoneorjustme.com/images/dotbiz_banner\.jpg -# ||doubleviking.com/ss.html (easylistchina+easylist.txt: 42798) -.doubleviking.com/ss\.html -# ||dota-trade.com/img/branding_ (easylistchina+easylist.txt: 42796) -.dota-trade.com/img/branding_ -# ||dontblockme.modaco.com^ (easylistchina+easylist.txt: 42795) -.dontblockme.modaco.com -# ||dominicantoday.com/stor/banners/ (easylistchina+easylist.txt: 42794) -.dominicantoday.com/stor/banners/ -# ||domaintools.com/partners/ (easylistchina+easylist.txt: 42793) -.domaintools.com/partners/ -# ||domaintools.com/marketing/ (easylistchina+easylist.txt: 42792) -.domaintools.com/marketing/ -# ||domaintools.com/eurodns_ (easylistchina+easylist.txt: 42791) -.domaintools.com/eurodns_ -# ||domainmarket.com/mm/ (easylistchina+easylist.txt: 42790) -.domainmarket.com/mm/ -# ||dogechain.info/content/img/a (easylistchina+easylist.txt: 42789) -.dogechain.info/content/img/a -# ||doge-dice.com/images/outpost.png (easylistchina+easylist.txt: 42788) -.doge-dice.com/images/outpost\.png -# ||doge-dice.com/images/faucet.jpg (easylistchina+easylist.txt: 42787) -.doge-dice.com/images/faucet\.jpg -# ||dnsstuff.com/dnsmedia/images/ft.banner. (easylistchina+easylist.txt: 42786) -.dnsstuff.com/dnsmedia/images/ft\.banner\. -# ||dnsstuff.com/dnsmedia/images/*_banner.jpg (easylistchina+easylist.txt: 42785) -.dnsstuff.com/dnsmedia/images/.*_banner\.jpg -# ||dl4all.com^*/hotfile.gif (easylistchina+easylist.txt: 42784) -.dl4all.com/.*/hotfile\.gif -# ||dl4all.com/img/download.jpg (easylistchina+easylist.txt: 42783) -.dl4all.com/img/download\.jpg -# ||dl4all.com/data4.files/dpopupwindow.js (easylistchina+easylist.txt: 42782) -.dl4all.com/data4\.files/dpopupwindow\.js -# ||dl-protect.com/pop.js (easylistchina+easylist.txt: 42781) -.dl-protect.com/pop\.js -# ||djtunes.com^*/adbg/ (easylistchina+easylist.txt: 42780) -.djtunes.com/.*/adbg/ -# ||djmag.com/sites/default/files/takeover/ (easylistchina+easylist.txt: 42779) -.djmag.com/sites/default/files/takeover/ -# ||djmag.co.uk/sites/default/files/takeover/ (easylistchina+easylist.txt: 42778) -.djmag.co.uk/sites/default/files/takeover/ -# ||djluv.in/android.gif (easylistchina+easylist.txt: 42777) -.djluv.in/android\.gif -# ||diytrade.com/diyep/dir?page=common/ppadv& (easylistchina+easylist.txt: 42776) -.diytrade.com/diyep/dir\?page=common/ppadv& -# ||divxstage.eu/images/download.png (easylistchina+easylist.txt: 42775) -.divxstage.eu/images/download\.png -# ||divxme.com/images/play.png (easylistchina+easylist.txt: 42774) -.divxme.com/images/play\.png -# ||dividendchannel.com/toprankedsm.gif (easylistchina+easylist.txt: 42773) -.dividendchannel.com/toprankedsm\.gif -# ||distrowatch.com^*/advanced-admin. (easylistchina+easylist.txt: 42772) -.distrowatch.com/.*/advanced-admin\. -# ||distrowatch.com^*/3cx.png (easylistchina+easylist.txt: 42771) -.distrowatch.com/.*/3cx\.png -# ||distrowatch.com^*-*.gif (easylistchina+easylist.txt: 42770) -.distrowatch.com/.*-.*\.gif -# ||distrowatch.com/images/kokoku/ (easylistchina+easylist.txt: 42769) -.distrowatch.com/images/kokoku/ -# ||distrogeeks.com/images/sponsors/ (easylistchina+easylist.txt: 42768) -.distrogeeks.com/images/sponsors/ -# ||display.superbay.net^ (easylistchina+easylist.txt: 42767) -.display.superbay.net -# ||dispatch.com^*/dpcpopunder.js (easylistchina+easylist.txt: 42766) -.dispatch.com/.*/dpcpopunder\.js -# ||dishusa.net/templates/flero/images/book_sprava.gif (easylistchina+easylist.txt: 42765) -.dishusa.net/templates/flero/images/book_sprava\.gif -# ||dippic.com/images/banner (easylistchina+easylist.txt: 42764) -.dippic.com/images/banner -# ||diplodocs.com/shopping/sol.js (easylistchina+easylist.txt: 42763) -.diplodocs.com/shopping/sol\.js -# ||digzip.com^*baner.swf (easylistchina+easylist.txt: 42762) -.digzip.com/.*baner\.swf -# ||digitizor.com/wp-content/digimages/xsoftspyse.png (easylistchina+easylist.txt: 42761) -.digitizor.com/wp-content/digimages/xsoftspyse\.png -# ||digitalreality.co.nz^*/360_hacks_banner.gif (easylistchina+easylist.txt: 42760) -.digitalreality.co.nz/.*/360_hacks_banner\.gif -# ||digitaljournal.com/promo/ (easylistchina+easylist.txt: 42759) -.digitaljournal.com/promo/ -# ||digdug.divxnetworks.com^ (easylistchina+easylist.txt: 42758) -.digdug.divxnetworks.com -# ||dictionary.com^*/serp_to/ (easylistchina+easylist.txt: 42757) -.dictionary.com/.*/serp_to/ -# ||dictionary.cambridge.org/info/frame.html?zone= (easylistchina+easylist.txt: 42756) -.dictionary.cambridge.org/info/frame\.html\?zone= -# ||diamondworld.net/admin/getresource.aspx? (easylistchina+easylist.txt: 42755) -.diamondworld.net/admin/getresource\.aspx\? -# ||di.fm^*/ads/webplayer (easylistchina+easylist.txt: 42754) -.di.fm/.*/ads/webplayer -# ||dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ (easylistchina+easylist.txt: 42753) -.dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ -# ||devx.com/devx/3174.gif (easylistchina+easylist.txt: 42752) -.devx.com/devx/3174\.gif -# ||devour.com/*skin (easylistchina+easylist.txt: 42749) -.devour.com/.*skin -# ||develop-online.net/static/banners/ (easylistchina+easylist.txt: 42747) -.develop-online.net/static/banners/ -# ||detroitindependent.net/images/ad_ (easylistchina+easylist.txt: 42746) -.detroitindependent.net/images/ad_ -# ||detnews.com^*/sponsor/ (easylistchina+easylist.txt: 42745) -.detnews.com/.*/sponsor/ -# ||desixpress.co.uk/image/banners/ (easylistchina+easylist.txt: 42744) -.desixpress.co.uk/image/banners/ -# ||desiretoinspire.net^*125x125 (easylistchina+easylist.txt: 42743) -.desiretoinspire.net/.*125x125 -# ||desiretoinspire.net^*/mgbanner.gif (easylistchina+easylist.txt: 42742) -.desiretoinspire.net/.*/mgbanner\.gif -# ||desiretoinspire.net/storage/layout/royalcountessad.gif (easylistchina+easylist.txt: 42741) -.desiretoinspire.net/storage/layout/royalcountessad\.gif -# ||desiretoinspire.net/storage/layout/modmaxbanner.gif (easylistchina+easylist.txt: 42740) -.desiretoinspire.net/storage/layout/modmaxbanner\.gif -# ||deshvidesh.com/banner/ (easylistchina+easylist.txt: 42739) -.deshvidesh.com/banner/ -# ||deseretnews.com/img/sponsors/ (easylistchina+easylist.txt: 42738) -.deseretnews.com/img/sponsors/ -# ||depic.me/bann/ (easylistchina+easylist.txt: 42736) -.depic.me/bann/ -# ||demerarawaves.com/images/banners/ (easylistchina+easylist.txt: 42734) -.demerarawaves.com/images/banners/ -# ||defensereview.com^*_banner_ (easylistchina+easylist.txt: 42732) -.defensereview.com/.*_banner_ -# ||defenceweb.co.za/logos/ (easylistchina+easylist.txt: 42731) -.defenceweb.co.za/logos/ -# ||defenceweb.co.za/images/sponsorlogos/ (easylistchina+easylist.txt: 42730) -.defenceweb.co.za/images/sponsorlogos/ -# ||decryptedtech.com/images/banners/ (easylistchina+easylist.txt: 42729) -.decryptedtech.com/images/banners/ -# ||deccanchronicle.com^*/shaadi.com/ (easylistchina+easylist.txt: 42728) -.deccanchronicle.com/.*/shaadi\.com/ -# ||deccanchronicle.com^*-searchquad-300100.swf (easylistchina+easylist.txt: 42727) -.deccanchronicle.com/.*-searchquad-300100\.swf -# ||deccanchronicle.com^*-banner- (easylistchina+easylist.txt: 42726) -.deccanchronicle.com/.*-banner- -# ||decadeforum.com/images/misc/download2.png (easylistchina+easylist.txt: 42725) -.decadeforum.com/images/misc/download2\.png -# ||deborah-bickel.de/banners/ (easylistchina+easylist.txt: 42724) -.deborah-bickel.de/banners/ -# ||deals.ledgertranscript.com^ (easylistchina+easylist.txt: 42723) -.deals.ledgertranscript.com -# ||ddl2.com/header.php? (easylistchina+easylist.txt: 42720) -.ddl2.com/header\.php\? -# ||ddccdn.com/js/google_ (easylistchina+easylist.txt: 42719) -.ddccdn.com/js/google_ -# ||dcourier.com/SiteImages/Banner/ (easylistchina+easylist.txt: 42718) -.dcourier.com/SiteImages/Banner/ -# ||dcad.watersoul.com^ (easylistchina+easylist.txt: 42717) -.dcad.watersoul.com -# ||dbstalk.com/sponsors/ (easylistchina+easylist.txt: 42716) -.dbstalk.com/sponsors/ -# ||dayport.com/ads/ (easylistchina+easylist.txt: 42715) -.dayport.com/ads/ -# ||davesite.com^*/aff/ (easylistchina+easylist.txt: 42714) -.davesite.com/.*/aff/ -# ||datpiff.com/skins/misc/ (easylistchina+easylist.txt: 42713) -.datpiff.com/skins/misc/ -# ||darknet.org.uk^*/do468. (easylistchina+easylist.txt: 42712) -.darknet.org.uk/.*/do468\. -# ||darknet.org.uk^*-250x250. (easylistchina+easylist.txt: 42711) -.darknet.org.uk/.*-250x250\. -# ||darknet.org.uk/images/acunetix_ (easylistchina+easylist.txt: 42710) -.darknet.org.uk/images/acunetix_ -# ||damnlol.com/damnlol.com.*.js (easylistchina+easylist.txt: 42709) -.damnlol.com/damnlol\.com\..*\.js -# ||damnlol.com/a/leaderboard.php (easylistchina+easylist.txt: 42708) -.damnlol.com/a/leaderboard\.php -# ||dailywritingtips.com^*/publisher2.gif (easylistchina+easylist.txt: 42707) -.dailywritingtips.com/.*/publisher2\.gif -# ||dailytrust.info/images/dangote.swf (easylistchina+easylist.txt: 42706) -.dailytrust.info/images/dangote\.swf -# ||dailytrust.info/images/banners/ (easylistchina+easylist.txt: 42705) -.dailytrust.info/images/banners/ -# ||dailytimes.com.pk/banners/ (easylistchina+easylist.txt: 42704) -.dailytimes.com.pk/banners/ -# ||dailysabah.com/banner/ (easylistchina+easylist.txt: 42703) -.dailysabah.com/banner/ -# ||dailypuppy.com/images/livestrong/ls_diet_120x90_1.gif (easylistchina+easylist.txt: 42702) -.dailypuppy.com/images/livestrong/ls_diet_120x90_1\.gif -# ||dailypioneer.com/images/banners/ (easylistchina+easylist.txt: 42701) -.dailypioneer.com/images/banners/ -# ||dailynews.lk^*/webadz/ (easylistchina+easylist.txt: 42700) -.dailynews.lk/.*/webadz/ -# ||dailynews.gov.bw^*/banner_ (easylistchina+easylist.txt: 42699) -.dailynews.gov.bw/.*/banner_ -# ||dailynews.co.zw^*-takeover. (easylistchina+easylist.txt: 42698) -.dailynews.co.zw/.*-takeover\. -# ||dailynews.co.tz/images/banners/ (easylistchina+easylist.txt: 42697) -.dailynews.co.tz/images/banners/ -# ||dailymotion.com/images/ie.png (easylistchina+easylist.txt: 42695) -.dailymotion.com/images/ie\.png -# ||dailymirror.lk/media/images/Nawaloka- (easylistchina+easylist.txt: 42694) -.dailymirror.lk/media/images/Nawaloka- -# ||dailymail.co.uk^*/promoboxes/ (easylistchina+easylist.txt: 42693) -.dailymail.co.uk/.*/promoboxes/ -# ||dailymail.co.uk/modules/commercial/ (easylistchina+easylist.txt: 42692) -.dailymail.co.uk/modules/commercial/ -# ||dailymail.co.uk/i/pix/ebay/ (easylistchina+easylist.txt: 42691) -.dailymail.co.uk/i/pix/ebay/ -# ||dailyhome.com/leaderboard_banner (easylistchina+easylist.txt: 42690) -.dailyhome.com/leaderboard_banner -# ||dailyherald.com^*/contextual.js (easylistchina+easylist.txt: 42689) -.dailyherald.com/.*/contextual\.js -# ||dailyfreegames.com/js/partners.html (easylistchina+easylist.txt: 42688) -.dailyfreegames.com/js/partners\.html -# ||dailyexpress.com.my/image/banner/ (easylistchina+easylist.txt: 42687) -.dailyexpress.com.my/image/banner/ -# ||dailyexpress.com.my/banners/ (easylistchina+easylist.txt: 42686) -.dailyexpress.com.my/banners/ -# ||dailydeals.sfgate.com/widget/ (easylistchina+easylist.txt: 42685) -.dailydeals.sfgate.com/widget/ -# ||dailydeals.savannahnow.com^ (easylistchina+easylist.txt: 42684) -.dailydeals.savannahnow.com -# ||dailydeals.onlineathens.com^ (easylistchina+easylist.txt: 42683) -.dailydeals.onlineathens.com -# ||dailydeals.lubbockonline.com^ (easylistchina+easylist.txt: 42682) -.dailydeals.lubbockonline.com -# ||dailydeals.brainerddispatch.com^ (easylistchina+easylist.txt: 42681) -.dailydeals.brainerddispatch.com -# ||dailydeals.augustachronicle.com^ (easylistchina+easylist.txt: 42680) -.dailydeals.augustachronicle.com -# ||dailydeals.amarillo.com^ (easylistchina+easylist.txt: 42679) -.dailydeals.amarillo.com -# ||dailydeal.news-record.com/widgets/ (easylistchina+easylist.txt: 42678) -.dailydeal.news-record.com/widgets/ -# ||dailycommercial.com/inc.php? (easylistchina+easylist.txt: 42677) -.dailycommercial.com/inc\.php\? -# ||dailyblogtips.com/wp-content/uploads/*.gif (easylistchina+easylist.txt: 42676) -.dailyblogtips.com/wp-content/uploads/.*\.gif -# ||dailybitcoins.org/banners/ (easylistchina+easylist.txt: 42675) -.dailybitcoins.org/banners/ -# ||daily-sun.com^*/banner/ (easylistchina+easylist.txt: 42674) -.daily-sun.com/.*/banner/ -# ||daily-mail.co.zm^*_banner. (easylistchina+easylist.txt: 42673) -.daily-mail.co.zm/.*_banner\. -# ||daily-mail.co.zm^*_270x312. (easylistchina+easylist.txt: 42672) -.daily-mail.co.zm/.*_270x312\. -# ||daily-mail.co.zm^*_1170x120. (easylistchina+easylist.txt: 42671) -.daily-mail.co.zm/.*_1170x120\. -# ||daily-mail.co.zm^*/singapore_auto. (easylistchina+easylist.txt: 42670) -.daily-mail.co.zm/.*/singapore_auto\. -# ||daily-mail.co.zm^*/side_strip. (easylistchina+easylist.txt: 42669) -.daily-mail.co.zm/.*/side_strip\. -# ||daily-mail.co.zm^*/sbt.gif (easylistchina+easylist.txt: 42668) -.daily-mail.co.zm/.*/sbt\.gif -# ||daily-mail.co.zm/images/banners/ (easylistchina+easylist.txt: 42667) -.daily-mail.co.zm/images/banners/ -# ||dads.new.digg.com^ (easylistchina+easylist.txt: 42666) -.dads.new.digg.com -# ||dabs.com/images/page-backgrounds/ (easylistchina+easylist.txt: 42665) -.dabs.com/images/page-backgrounds/ -# ||d5e.info/2.png (easylistchina+easylist.txt: 42662) -.d5e.info/2\.png -# ||d5e.info/1.gif (easylistchina+easylist.txt: 42661) -.d5e.info/1\.gif -# ||d.thelocal.com^ (easylistchina+easylist.txt: 42660) -.d.thelocal.com -# ||d.imwx.com/js/wx-a21-plugthis- (easylistchina+easylist.txt: 42659) -.d.imwx.com/js/wx-a21-plugthis- -# ||d.gossipcenter.com^ (easylistchina+easylist.txt: 42658) -.d.gossipcenter.com -# ||d.businessinsider.com^ (easylistchina+easylist.txt: 42657) -.d.businessinsider.com -# ||d.annarbor.com^ (easylistchina+easylist.txt: 42656) -.d.annarbor.com -# ||d-h.st/assets/img/download1.png (easylistchina+easylist.txt: 42655) -.d-h.st/assets/img/download1\.png -# ||d-addicts.com^*/banner/ (easylistchina+easylist.txt: 42654) -.d-addicts.com/.*/banner/ -# ||cybergamer.com/skins/ (easylistchina+easylist.txt: 42653) -.cybergamer.com/skins/ -# ||cyanogenmod.com/static/tdr_skyscraper.png (easylistchina+easylist.txt: 42652) -.cyanogenmod.com/static/tdr_skyscraper\.png -# ||cur.lv/nbottom.php? (easylistchina+easylist.txt: 42651) -.cur.lv/nbottom\.php\? -# ||cur.lv/bootstrap/js/bootstrapx-clickover.js (easylistchina+easylist.txt: 42650) -.cur.lv/bootstrap/js/bootstrapx-clickover\.js -# ||ctv.ca/Sites/Ctv/assets/js/ctvDfpAd.js (easylistchina+easylist.txt: 42649) -.ctv.ca/Sites/Ctv/assets/js/ctvDfpAd\.js -# ||ctv.ca/ctvresources/js/ctvad.js (easylistchina+easylist.txt: 42648) -.ctv.ca/ctvresources/js/ctvad\.js -# ||ctmirror.org/randomsupporter/ (easylistchina+easylist.txt: 42647) -.ctmirror.org/randomsupporter/ -# ||cship.org/w/skins/monobook/uns.gif (easylistchina+easylist.txt: 42646) -.cship.org/w/skins/monobook/uns\.gif -# ||csgobackpack.net/653x50. (easylistchina+easylist.txt: 42645) -.csgobackpack.net/653x50\. -# ||crystalmedianetworks.com^*-180x150.jpg (easylistchina+easylist.txt: 42644) -.crystalmedianetworks.com/.*-180x150\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt.jpg (easylistchina+easylist.txt: 42643) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt-social.png (easylistchina+easylist.txt: 42642) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt-social\.png -# ||cryptocoinsnews.com/wp-content/uploads/*/cloudbet_ (easylistchina+easylist.txt: 42641) -.cryptocoinsnews.com/wp-content/uploads/.*/cloudbet_ -# ||cryptocoinsnews.com/wp-content/uploads/*/ccn.png (easylistchina+easylist.txt: 42640) -.cryptocoinsnews.com/wp-content/uploads/.*/ccn\.png -# ||cruzine.com^*/banners/ (easylistchina+easylist.txt: 42639) -.cruzine.com/.*/banners/ -# ||crushorflush.com/html/promoframe.html (easylistchina+easylist.txt: 42638) -.crushorflush.com/html/promoframe\.html -# ||crunchyroll.*/vast? (easylistchina+easylist.txt: 42637) -.crunchyroll.*./(.*/)?vast\? -# ||crimeaware.co.za/files-upload/banner/ (easylistchina+easylist.txt: 42636) -.crimeaware.co.za/files-upload/banner/ -# ||cricruns.com/images/hioxindia- (easylistchina+easylist.txt: 42635) -.cricruns.com/images/hioxindia- -# ||cricbuzz.com/js/banners/ (easylistchina+easylist.txt: 42634) -.cricbuzz.com/js/banners/ -# ||creattor.net/flashxmlbanners/ (easylistchina+easylist.txt: 42633) -.creattor.net/flashxmlbanners/ -# ||creatives.livejasmin.com^ (easylistchina+easylist.txt: 42632) -.creatives.livejasmin.com -# ||createtv.com/CreateProgram.nsf/vShowcaseFeaturedSideContentByLinkTitle/ (easylistchina+easylist.txt: 42631) -.createtv.com/CreateProgram\.nsf/vShowcaseFeaturedSideContentByLinkTitle/ -# ||crazymotion.net/video_*.php?key= (easylistchina+easylist.txt: 42630) -.crazymotion.net/video_.*\.php\?key= -# ||crazy-torrent.com/web/banner/online.jpg (easylistchina+easylist.txt: 42629) -.crazy-torrent.com/web/banner/online\.jpg -# ||crazy-torrent.com/web/banner/0xxx0.net.jpg (easylistchina+easylist.txt: 42628) -.crazy-torrent.com/web/banner/0xxx0\.net\.jpg -# ||craveonline.com/gnads/ (easylistchina+easylist.txt: 42627) -.craveonline.com/gnads/ -# ||cramdodge.com/mg- (easylistchina+easylist.txt: 42626) -.cramdodge.com/mg- -# ||crackdb.com/img/vpn.png (easylistchina+easylist.txt: 42625) -.crackdb.com/img/vpn\.png -# ||crackdb.cd/cd.swf (easylistchina+easylist.txt: 42624) -.crackdb.cd/cd\.swf -# ||cpub.co.uk/a? (easylistchina+easylist.txt: 42623) -.cpub.co.uk/a\? -# ||cphpost.dk^*/banners/ (easylistchina+easylist.txt: 42622) -.cphpost.dk/.*/banners/ -# ||countrychannel.tv/telvos_banners/ (easylistchina+easylist.txt: 42621) -.countrychannel.tv/telvos_banners/ -# ||cosplay.com/1lensvillage.gif (easylistchina+easylist.txt: 42620) -.cosplay.com/1lensvillage\.gif -# ||coryarcangel.com/images/banners/ (easylistchina+easylist.txt: 42619) -.coryarcangel.com/images/banners/ -# ||cops.com^*/copbanner_ (easylistchina+easylist.txt: 42618) -.cops.com/.*/copbanner_ -# ||copblock.org/wp-content/uploads/*/covert-handcuff-key-AD- (easylistchina+easylist.txt: 42617) -.copblock.org/wp-content/uploads/.*/covert-handcuff-key-AD- -# ||coolsport.tv/lshadd. (easylistchina+easylist.txt: 42616) -.coolsport.tv/lshadd\. -# ||coolsport.tv/adtadd. (easylistchina+easylist.txt: 42615) -.coolsport.tv/adtadd\. -# ||coolmath.net/*-medrect.html (easylistchina+easylist.txt: 42614) -.coolmath.net/.*-medrect\.html -# ||coolmath-games.com/images/160-notice.gif (easylistchina+easylist.txt: 42613) -.coolmath-games.com/images/160-notice\.gif -# ||coolfm.us/lagos969/images/banners/ (easylistchina+easylist.txt: 42612) -.coolfm.us/lagos969/images/banners/ -# ||conwaydailysun.com/images/Tiles_Skyscrapers/ (easylistchina+easylist.txt: 42611) -.conwaydailysun.com/images/Tiles_Skyscrapers/ -# ||conwaydailysun.com/images/banners/ (easylistchina+easylist.txt: 42610) -.conwaydailysun.com/images/banners/ -# ||convertmyimage.com/images/banner-square.png (easylistchina+easylist.txt: 42609) -.convertmyimage.com/images/banner-square\.png -# ||consumerreports.org^*/sx.js (easylistchina+easylist.txt: 42608) -.consumerreports.org/.*/sx\.js -# ||constructionreviewonline.com^*banner (easylistchina+easylist.txt: 42607) -.constructionreviewonline.com/.*banner -# ||constructionreviewonline.com^*730x90 (easylistchina+easylist.txt: 42606) -.constructionreviewonline.com/.*730x90 -# ||console-spot.com^*.swf (easylistchina+easylist.txt: 42605) -.console-spot.com/.*\.swf -# ||conscioustalk.net/images/sponsors/ (easylistchina+easylist.txt: 42604) -.conscioustalk.net/images/sponsors/ -# ||connectionstrings.com/csas/public/a.ashx? (easylistchina+easylist.txt: 42603) -.connectionstrings.com/csas/public/a\.ashx\? -# ||concrete.tv/images/banners/ (easylistchina+easylist.txt: 42602) -.concrete.tv/images/banners/ -# ||con-telegraph.ie/images/banners/ (easylistchina+easylist.txt: 42601) -.con-telegraph.ie/images/banners/ -# ||computerworld.com^*/jobroll/ (easylistchina+easylist.txt: 42600) -.computerworld.com/.*/jobroll/ -# ||computerhelp.com/temp/banners/ (easylistchina+easylist.txt: 42599) -.computerhelp.com/temp/banners/ -# ||computerandvideogames.com^*/promos/ (easylistchina+easylist.txt: 42598) -.computerandvideogames.com/.*/promos/ -# ||complexmedianetwork.com^*/toolbarlogo.png (easylistchina+easylist.txt: 42597) -.complexmedianetwork.com/.*/toolbarlogo\.png -# ||complexmedianetwork.com^*/takeovers/ (easylistchina+easylist.txt: 42596) -.complexmedianetwork.com/.*/takeovers/ -# ||complaintsboard.com/img/banner- (easylistchina+easylist.txt: 42595) -.complaintsboard.com/img/banner- -# ||complaintsboard.com/img/202x202.gif (easylistchina+easylist.txt: 42594) -.complaintsboard.com/img/202x202\.gif -# ||compassnewspaper.com/images/banners/ (easylistchina+easylist.txt: 42593) -.compassnewspaper.com/images/banners/ -# ||comparestoreprices.co.uk/images/promotions/ (easylistchina+easylist.txt: 42592) -.comparestoreprices.co.uk/images/promotions/ -# ||comicgenesis.com/tcontent.php?out= (easylistchina+easylist.txt: 42591) -.comicgenesis.com/tcontent\.php\?out= -# ||comicbookresources.com/assets/images/skins/ (easylistchina+easylist.txt: 42590) -.comicbookresources.com/assets/images/skins/ -# ||com.com/cnwk.1d/aud/ (easylistchina+easylist.txt: 42589) -.com.com/cnwk\.1d/aud/ -# ||com-a.in/images/banners/ (easylistchina+easylist.txt: 42588) -.com-a.in/images/banners/ -# ||collector.viki.io^ (easylistchina+easylist.txt: 42587) -.collector.viki.io -# ||collarme.com/zone_alt.asp (easylistchina+easylist.txt: 42586) -.collarme.com/zone_alt\.asp -# ||collarme.com/anv/ (easylistchina+easylist.txt: 42585) -.collarme.com/anv/ -# ||coinurl.com/nbottom.php? (easylistchina+easylist.txt: 42584) -.coinurl.com/nbottom\.php\? -# ||coinurl.com/get.php? (easylistchina+easylist.txt: 42583) -.coinurl.com/get\.php\? -# ||coinurl.com/bottom.php (easylistchina+easylist.txt: 42582) -.coinurl.com/bottom\.php -# ||coinurl.com/bootstrap/js/bootstrapx-clickover.js (easylistchina+easylist.txt: 42581) -.coinurl.com/bootstrap/js/bootstrapx-clickover\.js -# ||coinad.com/op.php? (easylistchina+easylist.txt: 42580) -.coinad.com/op\.php\? -# ||coderanch.com/shingles/ (easylistchina+easylist.txt: 42579) -.coderanch.com/shingles/ -# ||codecguide.com/driverscantop1.gif (easylistchina+easylist.txt: 42578) -.codecguide.com/driverscantop1\.gif -# ||codecguide.com/driverscan2.gif (easylistchina+easylist.txt: 42577) -.codecguide.com/driverscan2\.gif -# ||codecguide.com/beforedl2.gif (easylistchina+easylist.txt: 42576) -.codecguide.com/beforedl2\.gif -# ||codeasily.com^*/codeasily.js (easylistchina+easylist.txt: 42575) -.codeasily.com/.*/codeasily\.js -# ||cocomment.com/banner? (easylistchina+easylist.txt: 42574) -.cocomment.com/banner\? -# ||coastweek.com/graffix/ (easylistchina+easylist.txt: 42573) -.coastweek.com/graffix/ -# ||coastweek.com/banner_ (easylistchina+easylist.txt: 42572) -.coastweek.com/banner_ -# ||coastfm.ae/promotion/ (easylistchina+easylist.txt: 42571) -.coastfm.ae/promotion/ -# ||coastfm.ae/images/background/ (easylistchina+easylist.txt: 42570) -.coastfm.ae/images/background/ -# ||cnx-software.com/pic/technexion/ (easylistchina+easylist.txt: 42569) -.cnx-software.com/pic/technexion/ -# ||cnx-software.com/pic/gateworks/ (easylistchina+easylist.txt: 42568) -.cnx-software.com/pic/gateworks/ -# ||cntv.cn/Library/js/js_ad_gb.js (easylistchina+easylist.txt: 42567) -.cntv.cn/Library/js/js_ad_gb\.js -# ||cnn.net^*/lawyers.com/ (easylistchina+easylist.txt: 42566) -.cnn.net/.*/lawyers\.com/ -# ||cnn.com^*/banner.html?&csiid= (easylistchina+easylist.txt: 42565) -.cnn.com/.*/banner\.html\?&csiid= -# ||cnn.com/cnn_adspaces/ (easylistchina+easylist.txt: 42563) -.cnn.com/cnn_adspaces/ -# ||cnn.com/ad- (easylistchina+easylist.txt: 42562) -.cnn.com/ad- -# ||cnetwidget.creativemark.co.uk^ (easylistchina+easylist.txt: 42561) -.cnetwidget.creativemark.co.uk -# ||cnettv.com.edgesuite.net^*/ads/ (easylistchina+easylist.txt: 42560) -.cnettv.com.edgesuite.net/.*/ads/ -# ||cnet.com/imp? (easylistchina+easylist.txt: 42559) -.cnet.com/imp\? -# ||cms.myspacecdn.com^*/splash_assets/ (easylistchina+easylist.txt: 42558) -.cms.myspacecdn.com/.*/splash_assets/ -# ||cmpnet.com/ads/ (easylistchina+easylist.txt: 42557) -.cmpnet.com/ads/ -# ||clubplanet.com^*/wallpaper/ (easylistchina+easylist.txt: 42555) -.clubplanet.com/.*/wallpaper/ -# ||clubhyper.com/images/hannantsbanner_ (easylistchina+easylist.txt: 42554) -.clubhyper.com/images/hannantsbanner_ -# ||cloudyvideos.com/banner/ (easylistchina+easylist.txt: 42553) -.cloudyvideos.com/banner/ -# ||clicks.superpages.com^ (easylistchina+easylist.txt: 42547) -.clicks.superpages.com -# ||click.livedoor.com^ (easylistchina+easylist.txt: 42546) -.click.livedoor.com -# ||clgaming.net/interface/img/sponsor/ (easylistchina+easylist.txt: 42545) -.clgaming.net/interface/img/sponsor/ -# ||classicsdujour.com/artistbanners/ (easylistchina+easylist.txt: 42544) -.classicsdujour.com/artistbanners/ -# ||classicfeel.co.za^*/banners/ (easylistchina+easylist.txt: 42543) -.classicfeel.co.za/.*/banners/ -# ||classical897.org/common/sponsors/ (easylistchina+easylist.txt: 42542) -.classical897.org/common/sponsors/ -# ||classic97.net^*/banner/ (easylistchina+easylist.txt: 42541) -.classic97.net/.*/banner/ -# ||classic-tv.com/pubaccess.html (easylistchina+easylist.txt: 42540) -.classic-tv.com/pubaccess\.html -# ||clarksvilleonline.com/cols/ (easylistchina+easylist.txt: 42538) -.clarksvilleonline.com/cols/ -# ||cjr.org/interstitial_ (easylistchina+easylist.txt: 42537) -.cjr.org/interstitial_ -# ||citywirecontent.co.uk^*/cw.oas.dx.js (easylistchina+easylist.txt: 42536) -.citywirecontent.co.uk/.*/cw\.oas\.dx\.js -# ||citywire.co.uk/wealth-manager/marketingcampaign? (easylistchina+easylist.txt: 42535) -.citywire.co.uk/wealth-manager/marketingcampaign\? -# ||citybeat.co.uk^*/ads/ (easylistchina+easylist.txt: 42534) -.citybeat.co.uk/.*/ads/ -# ||cityam.com^*/pageskin/ (easylistchina+easylist.txt: 42533) -.cityam.com/.*/pageskin/ -# ||citizen-usa.com/images/banners/ (easylistchina+easylist.txt: 42532) -.citizen-usa.com/images/banners/ -# ||citeulike.org/static/campaigns/ (easylistchina+easylist.txt: 42531) -.citeulike.org/static/campaigns/ -# ||citationmachine.net/images/grammarly/ (easylistchina+easylist.txt: 42530) -.citationmachine.net/images/grammarly/ -# ||ciol.com/zedotags/ (easylistchina+easylist.txt: 42529) -.ciol.com/zedotags/ -# ||cineplex.com/skins/ (easylistchina+easylist.txt: 42528) -.cineplex.com/skins/ -# ||ciao.com^*/price_link/ (easylistchina+easylist.txt: 42526) -.ciao.com/.*/price_link/ -# ||ciao.co.uk/load_file.php? (easylistchina+easylist.txt: 42525) -.ciao.co.uk/load_file\.php\? -# ||churchnewssite.com^*/bannercard- (easylistchina+easylist.txt: 42524) -.churchnewssite.com/.*/bannercard- -# ||churchnewssite.com^*/banner- (easylistchina+easylist.txt: 42523) -.churchnewssite.com/.*/banner- -# ||churchnewssite.com^*-banner1. (easylistchina+easylist.txt: 42522) -.churchnewssite.com/.*-banner1\. -# ||chronicle.lu/images/Sponsor_ (easylistchina+easylist.txt: 42521) -.chronicle.lu/images/Sponsor_ -# ||chronicle.lu/images/banners/ (easylistchina+easylist.txt: 42520) -.chronicle.lu/images/banners/ -# ||chinanews.com/gg/ (easylistchina+easylist.txt: 42519) -.chinanews.com/gg/ -# ||chicagodefender.com/images/banners/ (easylistchina+easylist.txt: 42518) -.chicagodefender.com/images/banners/ -# ||chelsey.co.nz/uploads/Takeovers/ (easylistchina+easylist.txt: 42517) -.chelsey.co.nz/uploads/Takeovers/ -# ||checkwebsiteprice.com/images/bitcoin.jpg (easylistchina+easylist.txt: 42516) -.checkwebsiteprice.com/images/bitcoin\.jpg -# ||checkpagerank.net/banners/ (easylistchina+easylist.txt: 42515) -.checkpagerank.net/banners/ -# ||chapala.com/wwwboard/webboardtop.htm (easylistchina+easylist.txt: 42514) -.chapala.com/wwwboard/webboardtop\.htm -# ||channelonline.tv/channelonline_advantage/ (easylistchina+easylist.txt: 42513) -.channelonline.tv/channelonline_advantage/ -# ||channel5.com/assets/takeovers/ (easylistchina+easylist.txt: 42512) -.channel5.com/assets/takeovers/ -# ||channel4fm.com/promotion/ (easylistchina+easylist.txt: 42511) -.channel4fm.com/promotion/ -# ||channel4fm.com/images/background/ (easylistchina+easylist.txt: 42510) -.channel4fm.com/images/background/ -# ||ch131.so/images/2etio.gif (easylistchina+easylist.txt: 42506) -.ch131.so/images/2etio\.gif -# ||cghub.com/files/CampaignCode/ (easylistchina+easylist.txt: 42505) -.cghub.com/files/CampaignCode/ -# ||ceylontoday.lk^*/banner/ (easylistchina+easylist.txt: 42504) -.ceylontoday.lk/.*/banner/ -# ||ceoexpress.com/inc/ads (easylistchina+easylist.txt: 42503) -.ceoexpress.com/inc/ads -# ||centralfm.co.uk/images/banners/ (easylistchina+easylist.txt: 42502) -.centralfm.co.uk/images/banners/ -# ||centos.org/donors/ (easylistchina+easylist.txt: 42501) -.centos.org/donors/ -# ||ceforum.co.uk/images/misc/PartnerLinks (easylistchina+easylist.txt: 42499) -.ceforum.co.uk/images/misc/PartnerLinks -# ||cdn.turner.com^*/groupon/ (easylistchina+easylist.txt: 42497) -.cdn.turner.com/.*/groupon/ -# ||cdn-surfline.com/home/billabong-xxl.png (easylistchina+easylist.txt: 42496) -.cdn-surfline.com/home/billabong-xxl\.png -# ||cdmediaworld.com*/! (easylistchina+easylist.txt: 42495) -.cdmediaworld.com*./(.*/)?! -# ||cdmagurus.com/img/kcpf2.swf (easylistchina+easylist.txt: 42494) -.cdmagurus.com/img/kcpf2\.swf -# ||cdmagurus.com/img/*.gif (easylistchina+easylist.txt: 42493) -.cdmagurus.com/img/.*\.gif -# ||cdmagurus.com/forum/cyberflashing.swf (easylistchina+easylist.txt: 42492) -.cdmagurus.com/forum/cyberflashing\.swf -# ||cdcovers.cc/images/external/toolbar (easylistchina+easylist.txt: 42491) -.cdcovers.cc/images/external/toolbar -# ||cd1025.com/www/img/btn- (easylistchina+easylist.txt: 42490) -.cd1025.com/www/img/btn- -# ||cd1025.com/www/assets/a/ (easylistchina+easylist.txt: 42489) -.cd1025.com/www/assets/a/ -# ||ccfm.org.za^*/sads/ (easylistchina+easylist.txt: 42488) -.ccfm.org.za/.*/sads/ -# ||cbslocal.com/rotatable? (easylistchina+easylist.txt: 42487) -.cbslocal.com/rotatable\? -# ||cbslocal.com/deals/widget/ (easylistchina+easylist.txt: 42486) -.cbslocal.com/deals/widget/ -# ||cbsinteractive.co.uk/cbsi/ads/ (easylistchina+easylist.txt: 42485) -.cbsinteractive.co.uk/cbsi/ads/ -# ||cbn.co.za/images/banners/ (easylistchina+easylist.txt: 42484) -.cbn.co.za/images/banners/ -# ||cbfsms.com^*-banner.gif (easylistchina+easylist.txt: 42483) -.cbfsms.com/.*-banner\.gif -# ||cbc.ca/video/bigbox.html (easylistchina+easylist.txt: 42482) -.cbc.ca/video/bigbox\.html -# ||cbc.ca/deals/ (easylistchina+easylist.txt: 42481) -.cbc.ca/deals/ -# ||catholicculture.org/images/banners/ (easylistchina+easylist.txt: 42480) -.catholicculture.org/images/banners/ -# ||catalystmagazine.net/images/banners/ (easylistchina+easylist.txt: 42479) -.catalystmagazine.net/images/banners/ -# ||casualgaming.biz/banners/ (easylistchina+easylist.txt: 42478) -.casualgaming.biz/banners/ -# ||castanet.net/clients/ (easylistchina+easylist.txt: 42477) -.castanet.net/clients/ -# ||cash9.org/assets/img/banner2.gif (easylistchina+easylist.txt: 42476) -.cash9.org/assets/img/banner2\.gif -# ||carsuk.net/directory/panel-promo- (easylistchina+easylist.txt: 42475) -.carsuk.net/directory/panel-promo- -# ||carsguide.com.au^*/marketing/ (easylistchina+easylist.txt: 42474) -.carsguide.com.au/.*/marketing/ -# ||carsguide.com.au/images/uploads/*_bg. (easylistchina+easylist.txt: 42473) -.carsguide.com.au/images/uploads/.*_bg\. -# ||carsales.com.au^*/backgrounds/ (easylistchina+easylist.txt: 42472) -.carsales.com.au/.*/backgrounds/ -# ||cars.com/js/cars/catretargeting.js (easylistchina+easylist.txt: 42471) -.cars.com/js/cars/catretargeting\.js -# ||cars.com/go/includes/targeting/ (easylistchina+easylist.txt: 42470) -.cars.com/go/includes/targeting/ -# ||cargonewsasia.com/promotion/ (easylistchina+easylist.txt: 42469) -.cargonewsasia.com/promotion/ -# ||cardsharing.info/wp-content/uploads/*/ALLS.jpg (easylistchina+easylist.txt: 42468) -.cardsharing.info/wp-content/uploads/.*/ALLS\.jpg -# ||cardschat.com/pkimg/banners/ (easylistchina+easylist.txt: 42467) -.cardschat.com/pkimg/banners/ -# ||cardomain.com/empty_pg.htm (easylistchina+easylist.txt: 42466) -.cardomain.com/empty_pg\.htm -# ||card-sharing.net/umbrella.png (easylistchina+easylist.txt: 42465) -.card-sharing.net/umbrella\.png -# ||card-sharing.net/topsharingserver.jpg (easylistchina+easylist.txt: 42464) -.card-sharing.net/topsharingserver\.jpg -# ||card-sharing.net/cccamcorner.gif (easylistchina+easylist.txt: 42463) -.card-sharing.net/cccamcorner\.gif -# ||capitolfax.com/wp-content/*Ad_ (easylistchina+easylist.txt: 42461) -.capitolfax.com/wp-content/.*Ad_ -# ||capitolfax.com/wp-content/*ad. (easylistchina+easylist.txt: 42460) -.capitolfax.com/wp-content/.*ad\. -# ||capitalfm.co.ke^*/830x460-iv.jpg (easylistchina+easylist.txt: 42459) -.capitalfm.co.ke/.*/830x460-iv\.jpg -# ||capitalethiopia.com/images/banners/ (easylistchina+easylist.txt: 42458) -.capitalethiopia.com/images/banners/ -# ||capetownetc.com^*/wallpapers/ (easylistchina+easylist.txt: 42456) -.capetownetc.com/.*/wallpapers/ -# ||canvas.thenextweb.com^ (easylistchina+easylist.txt: 42455) -.canvas.thenextweb.com -# ||canindia.com^*_banner.png (easylistchina+easylist.txt: 42454) -.canindia.com/.*_banner\.png -# ||candystand.com/game-track.do? (easylistchina+easylist.txt: 42453) -.candystand.com/game-track\.do\? -# ||cancomuk.com/campaigns/ (easylistchina+easylist.txt: 42452) -.cancomuk.com/campaigns/ -# ||cananewsonline.com/files/banners/ (easylistchina+easylist.txt: 42451) -.cananewsonline.com/files/banners/ -# ||canalboat.co.uk^*/Banners/ (easylistchina+easylist.txt: 42450) -.canalboat.co.uk/.*/Banners/ -# ||canalboat.co.uk^*/bannerImage. (easylistchina+easylist.txt: 42449) -.canalboat.co.uk/.*/bannerImage\. -# ||cameroon-concord.com/images/banners/ (easylistchina+easylist.txt: 42448) -.cameroon-concord.com/images/banners/ -# ||calguns.net/images/ads (easylistchina+easylist.txt: 42447) -.calguns.net/images/ads -# ||calgaryherald.com/images/storysponsor/ (easylistchina+easylist.txt: 42446) -.calgaryherald.com/images/storysponsor/ -# ||calgaryherald.com/images/sponsor/ (easylistchina+easylist.txt: 42445) -.calgaryherald.com/images/sponsor/ -# ||caledonianrecord.com/SiteImages/Tile/ (easylistchina+easylist.txt: 42444) -.caledonianrecord.com/SiteImages/Tile/ -# ||caledonianrecord.com/SiteImages/HomePageTiles/ (easylistchina+easylist.txt: 42443) -.caledonianrecord.com/SiteImages/HomePageTiles/ -# ||caledonianrecord.com/iFrame_ (easylistchina+easylist.txt: 42442) -.caledonianrecord.com/iFrame_ -# ||caladvocate.com/images/banner- (easylistchina+easylist.txt: 42441) -.caladvocate.com/images/banner- -# ||cafonline.com^*/sponsors/ (easylistchina+easylist.txt: 42440) -.cafonline.com/.*/sponsors/ -# ||cafimg.com/images/other/ (easylistchina+easylist.txt: 42439) -.cafimg.com/images/other/ -# ||cadvv.koreaherald.com^ (easylistchina+easylist.txt: 42437) -.cadvv.koreaherald.com -# ||cadvv.heraldm.com^ (easylistchina+easylist.txt: 42436) -.cadvv.heraldm.com -# ||cadplace.co.uk/banner/ (easylistchina+easylist.txt: 42435) -.cadplace.co.uk/banner/ -# ||caclubindia.com/campaign/ (easylistchina+easylist.txt: 42434) -.caclubindia.com/campaign/ -# ||c9tk.com/images/banner/ (easylistchina+easylist.txt: 42433) -.c9tk.com/images/banner/ -# ||c21media.net/wp-content/plugins/sam-images/ (easylistchina+easylist.txt: 42432) -.c21media.net/wp-content/plugins/sam-images/ -# ||c-ville.com/image/pool/ (easylistchina+easylist.txt: 42431) -.c-ville.com/image/pool/ -# ||c-sharpcorner.com^*/banners/ (easylistchina+easylist.txt: 42430) -.c-sharpcorner.com/.*/banners/ -# ||bypassoxy.com/vectrotunnel-banner.gif (easylistchina+easylist.txt: 42429) -.bypassoxy.com/vectrotunnel-banner\.gif -# ||bwp.theinsider.com.com^ (easylistchina+easylist.txt: 42428) -.bwp.theinsider.com.com -# ||bvibeacon.com^*/banners/ (easylistchina+easylist.txt: 42427) -.bvibeacon.com/.*/banners/ -# ||buzznet.com/topscript.js.php? (easylistchina+easylist.txt: 42426) -.buzznet.com/topscript\.js\.php\? -# ||buzzintown.com/show_bnr.php? (easylistchina+easylist.txt: 42425) -.buzzintown.com/show_bnr\.php\? -# ||buyselltrade.ca/banners/ (easylistchina+easylist.txt: 42424) -.buyselltrade.ca/banners/ -# ||buy.com/*/textlinks.aspx (easylistchina+easylist.txt: 42423) -.buy.com/.*/textlinks\.aspx -# ||buy-n-shoot.com/images/banners/banner- (easylistchina+easylist.txt: 42422) -.buy-n-shoot.com/images/banners/banner- -# ||busiweek.com^*/banners/ (easylistchina+easylist.txt: 42421) -.busiweek.com/.*/banners/ -# ||bundesliga.com^*/_partner/ (easylistchina+easylist.txt: 42420) -.bundesliga.com/.*/_partner/ -# ||btkitty.org/static/images/880X60.gif (easylistchina+easylist.txt: 42418) -.btkitty.org/static/images/880X60\.gif -# ||btkitty.com/static/images/880X60.gif (easylistchina+easylist.txt: 42417) -.btkitty.com/static/images/880X60\.gif -# ||btdigg.org/images/btguard (easylistchina+easylist.txt: 42416) -.btdigg.org/images/btguard -# ||bt.am/banners/ (easylistchina+easylist.txt: 42415) -.bt.am/banners/ -# ||bt-chat.com/images/affiliates/ (easylistchina+easylist.txt: 42414) -.bt-chat.com/images/affiliates/ -# ||bsvc.ebuddy.com/bannerservice/tabsaww (easylistchina+easylist.txt: 42413) -.bsvc.ebuddy.com/bannerservice/tabsaww -# ||bsmphilly.com/files/banners/ (easylistchina+easylist.txt: 42412) -.bsmphilly.com/files/banners/ -# ||brudirect.com/images/banners/ (easylistchina+easylist.txt: 42411) -.brudirect.com/images/banners/ -# ||browsershots.org/static/images/creative/ (easylistchina+easylist.txt: 42410) -.browsershots.org/static/images/creative/ -# ||brownfieldonline.com^*/banners/ (easylistchina+easylist.txt: 42409) -.brownfieldonline.com/.*/banners/ -# ||brothersoft.com^*/softsale/ (easylistchina+easylist.txt: 42408) -.brothersoft.com/.*/softsale/ -# ||brothersoft.com^*/homepage_ppd.html (easylistchina+easylist.txt: 42407) -.brothersoft.com/.*/homepage_ppd\.html -# ||brothersoft.com^*/float.js (easylistchina+easylist.txt: 42406) -.brothersoft.com/.*/float\.js -# ||brothersoft.com/softsale/ (easylistchina+easylist.txt: 42405) -.brothersoft.com/softsale/ -# ||brothersoft.com/gg/top.js (easylistchina+easylist.txt: 42404) -.brothersoft.com/gg/top\.js -# ||brothersoft.com/gg/soft_down.js (easylistchina+easylist.txt: 42403) -.brothersoft.com/gg/soft_down\.js -# ||brothersoft.com/gg/kontera_com.js (easylistchina+easylist.txt: 42402) -.brothersoft.com/gg/kontera_com\.js -# ||brothersoft.com/gg/g.js (easylistchina+easylist.txt: 42401) -.brothersoft.com/gg/g\.js -# ||brothersoft.com/gg/center_gg.js (easylistchina+easylist.txt: 42400) -.brothersoft.com/gg/center_gg\.js -# ||brobible.com/files/uploads/images/takeovers/ (easylistchina+easylist.txt: 42399) -.brobible.com/files/uploads/images/takeovers/ -# ||broadcastingworld.net/marquee- (easylistchina+easylist.txt: 42398) -.broadcastingworld.net/marquee- -# ||broadcastingworld.net/*-promo.jpg (easylistchina+easylist.txt: 42397) -.broadcastingworld.net/.*-promo\.jpg -# ||broadcastify.com/sm/ (easylistchina+easylist.txt: 42396) -.broadcastify.com/sm/ -# ||broadbandgenie.co.uk/images/takeover/ (easylistchina+easylist.txt: 42394) -.broadbandgenie.co.uk/images/takeover/ -# ||broadbandforum.co/stock/ (easylistchina+easylist.txt: 42393) -.broadbandforum.co/stock/ -# ||broadbandchoices.co.uk/aff.js (easylistchina+easylist.txt: 42392) -.broadbandchoices.co.uk/aff\.js -# ||britishcolumbia.com/sys/ban.asp (easylistchina+easylist.txt: 42391) -.britishcolumbia.com/sys/ban\.asp -# ||brenz.net/img/bannerrss.gif (easylistchina+easylist.txt: 42389) -.brenz.net/img/bannerrss\.gif -# ||breitlingsource.com/images/pflogo.jpg (easylistchina+easylist.txt: 42388) -.breitlingsource.com/images/pflogo\.jpg -# ||breitlingsource.com/images/govberg*.jpg (easylistchina+easylist.txt: 42387) -.breitlingsource.com/images/govberg.*\.jpg -# ||brecorder.com^*/banners/ (easylistchina+easylist.txt: 42386) -.brecorder.com/.*/banners/ -# ||break.com^*/marketguide- (easylistchina+easylist.txt: 42385) -.break.com/.*/marketguide- -# ||brandchannel.com/images/educationconference/ (easylistchina+easylist.txt: 42384) -.brandchannel.com/images/educationconference/ -# ||boxlotto.com/banrotate. (easylistchina+easylist.txt: 42380) -.boxlotto.com/banrotate\. -# ||boulderjewishnews.org^*/JFSatHome-3.gif (easylistchina+easylist.txt: 42379) -.boulderjewishnews.org/.*/JFSatHome-3\.gif -# ||botswanaguardian.co.bw/images/banners/ (easylistchina+easylist.txt: 42378) -.botswanaguardian.co.bw/images/banners/ -# ||bom.gov.au/includes/marketing2.php? (easylistchina+easylist.txt: 42376) -.bom.gov.au/includes/marketing2\.php\? -# ||bolandrugby.com/images/sponsors. (easylistchina+easylist.txt: 42375) -.bolandrugby.com/images/sponsors\. -# ||bnrs.ilm.ee^ (easylistchina+easylist.txt: 42374) -.bnrs.ilm.ee -# ||bn0.com/4v4.js (easylistchina+easylist.txt: 42373) -.bn0.com/4v4\.js -# ||bloomberg.com^*/banner.js (easylistchina+easylist.txt: 42372) -.bloomberg.com/.*/banner\.js -# ||blogspider.net/images/promo/ (easylistchina+easylist.txt: 42371) -.blogspider.net/images/promo/ -# ||blogsmithmedia.com^*_skin_ (easylistchina+easylist.txt: 42369) -.blogsmithmedia.com/.*_skin_ -# ||blogsmithmedia.com^*_skin. (easylistchina+easylist.txt: 42368) -.blogsmithmedia.com/.*_skin\. -# ||blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments.png (easylistchina+easylist.txt: 42367) -.blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments\.png -# ||blogorama.com/images/banners/ (easylistchina+easylist.txt: 42366) -.blogorama.com/images/banners/ -# ||blogevaluation.com/templates/userfiles/banners/ (easylistchina+easylist.txt: 42365) -.blogevaluation.com/templates/userfiles/banners/ -# ||blog.co.uk/script/blogs/afc.js (easylistchina+easylist.txt: 42364) -.blog.co.uk/script/blogs/afc\.js -# ||blitzdownloads.com/promo/ (easylistchina+easylist.txt: 42363) -.blitzdownloads.com/promo/ -# ||blip.fm/ad/ (easylistchina+easylist.txt: 42362) -.blip.fm/ad/ -# ||blinkx.com/adhocnetwork/ (easylistchina+easylist.txt: 42361) -.blinkx.com/adhocnetwork/ -# ||bleacherreport.net^*_redesign_skin_ (easylistchina+easylist.txt: 42360) -.bleacherreport.net/.*_redesign_skin_ -# ||bleacherreport.net/images/skins/ (easylistchina+easylist.txt: 42359) -.bleacherreport.net/images/skins/ -# ||blbclassic.org/assets/images/*banners/ (easylistchina+easylist.txt: 42358) -.blbclassic.org/assets/images/.*banners/ -# ||blasternation.com/images/hearthstone.jpg (easylistchina+easylist.txt: 42357) -.blasternation.com/images/hearthstone\.jpg -# ||blackpressusa.com^*300x250. (easylistchina+easylist.txt: 42356) -.blackpressusa.com/.*300x250\. -# ||blackpressusa.com^*300by250. (easylistchina+easylist.txt: 42355) -.blackpressusa.com/.*300by250\. -# ||blackpressusa.com^*250by300. (easylistchina+easylist.txt: 42354) -.blackpressusa.com/.*250by300\. -# ||blackpressusa.com^*/Ford.jpg (easylistchina+easylist.txt: 42353) -.blackpressusa.com/.*/Ford\.jpg -# ||blacklistednews.com/images/*banner (easylistchina+easylist.txt: 42352) -.blacklistednews.com/images/.*banner -# ||blackhatlibrary.net/hacktalk.png (easylistchina+easylist.txt: 42351) -.blackhatlibrary.net/hacktalk\.png -# ||blackchronicle.com/images/Banners- (easylistchina+easylist.txt: 42350) -.blackchronicle.com/images/Banners- -# ||blackberryforums.net/banners/ (easylistchina+easylist.txt: 42349) -.blackberryforums.net/banners/ -# ||bkmag.com/binary/*/1380x800_ (easylistchina+easylist.txt: 42348) -.bkmag.com/binary/.*/1380x800_ -# ||bizhub.vn^*/agoda-for-bizhub.jpg (easylistchina+easylist.txt: 42347) -.bizhub.vn/.*/agoda-for-bizhub\.jpg -# ||bizarremag.com/images/skin_ (easylistchina+easylist.txt: 42346) -.bizarremag.com/images/skin_ -# ||bizanti.youwatch.org^ (easylistchina+easylist.txt: 42345) -.bizanti.youwatch.org -# ||bittorrent.am/banners/ (easylistchina+easylist.txt: 42344) -.bittorrent.am/banners/ -# ||bitreactor.to/sponsor/ (easylistchina+easylist.txt: 42342) -.bitreactor.to/sponsor/ -# ||bitminter.com/images/info/spondoolies (easylistchina+easylist.txt: 42341) -.bitminter.com/images/info/spondoolies -# ||bitcoinreviewer.com/wp-content/uploads/*/banner-luckybit.jpg (easylistchina+easylist.txt: 42340) -.bitcoinreviewer.com/wp-content/uploads/.*/banner-luckybit\.jpg -# ||bitcoinist.net/wp-content/uploads/*_250x250_ (easylistchina+easylist.txt: 42339) -.bitcoinist.net/wp-content/uploads/.*_250x250_ -# ||bitcoinist.net/wp-content/*/630x80-bitcoinist.gif (easylistchina+easylist.txt: 42338) -.bitcoinist.net/wp-content/.*/630x80-bitcoinist\.gif -# ||bit-tech.net/images/backgrounds/skin/ (easylistchina+easylist.txt: 42337) -.bit-tech.net/images/backgrounds/skin/ -# ||binsearch.info/iframe.php (easylistchina+easylist.txt: 42335) -.binsearch.info/iframe\.php -# ||bikeradar.com/media/img/commercial/ (easylistchina+easylist.txt: 42333) -.bikeradar.com/media/img/commercial/ -# ||bikeforums.net/images/sponsors/ (easylistchina+easylist.txt: 42332) -.bikeforums.net/images/sponsors/ -# ||bigsports.tv/live/ado.php (easylistchina+easylist.txt: 42331) -.bigsports.tv/live/ado\.php -# ||bigpoint.com/xml/recommender.swf? (easylistchina+easylist.txt: 42330) -.bigpoint.com/xml/recommender\.swf\? -# ||bigeddieradio.com/uploads/sponsors/ (easylistchina+easylist.txt: 42329) -.bigeddieradio.com/uploads/sponsors/ -# ||bibme.org/images/grammarly/ (easylistchina+easylist.txt: 42328) -.bibme.org/images/grammarly/ -# ||bettyconfidential.com/media/fmads/ (easylistchina+easylist.txt: 42326) -.bettyconfidential.com/media/fmads/ -# ||bettingsports.com/where_to_bet (easylistchina+easylist.txt: 42325) -.bettingsports.com/where_to_bet -# ||bettingsports.com/top_bonuses (easylistchina+easylist.txt: 42324) -.bettingsports.com/top_bonuses -# ||better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend.png (easylistchina+easylist.txt: 42323) -.better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend\.png -# ||better-explorer.com/wp-content/uploads/2013/07/hf.5.png (easylistchina+easylist.txt: 42322) -.better-explorer.com/wp-content/uploads/2013/07/hf\.5\.png -# ||better-explorer.com/wp-content/uploads/2012/09/credits.png (easylistchina+easylist.txt: 42321) -.better-explorer.com/wp-content/uploads/2012/09/credits\.png -# ||bets4free.co.uk/content/5481b452d9ce40.09507031.jpg (easylistchina+easylist.txt: 42320) -.bets4free.co.uk/content/5481b452d9ce40\.09507031\.jpg -# ||bestvpn.com/wp-content/uploads/*/mosttrustedname_260x300_ (easylistchina+easylist.txt: 42319) -.bestvpn.com/wp-content/uploads/.*/mosttrustedname_260x300_ -# ||bestlistonline.info/link/ad.js (easylistchina+easylist.txt: 42318) -.bestlistonline.info/link/ad\.js -# ||bestblackhatforum.com/images/my_compas/ (easylistchina+easylist.txt: 42317) -.bestblackhatforum.com/images/my_compas/ -# ||bernama.com/banner/ (easylistchina+easylist.txt: 42316) -.bernama.com/banner/ -# ||benchmarkreviews.com^*/banners/ (easylistchina+easylist.txt: 42315) -.benchmarkreviews.com/.*/banners/ -# ||bellevision.com/belle/adds/ (easylistchina+easylist.txt: 42314) -.bellevision.com/belle/adds/ -# ||bellanaija.com^*/wp-banners/ (easylistchina+easylist.txt: 42313) -.bellanaija.com/.*/wp-banners/ -# ||belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img.js (easylistchina+easylist.txt: 42312) -.belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img\.js -# ||beingpc.com^*/banners/ (easylistchina+easylist.txt: 42311) -.beingpc.com/.*/banners/ -# ||beforeitsnews.com/static/iframe/ (easylistchina+easylist.txt: 42310) -.beforeitsnews.com/static/iframe/ -# ||beforeitsnews.com/static/data/story-stripmall-new.html (easylistchina+easylist.txt: 42309) -.beforeitsnews.com/static/data/story-stripmall-new\.html -# ||beap.gemini.yahoo.com^ (easylistchina+easylist.txt: 42308) -.beap.gemini.yahoo.com -# ||bdnews24.com^*/Ads/ (easylistchina+easylist.txt: 42307) -.bdnews24.com/.*/Ads/ -# ||bcdb.com^*/banners.pl? (easylistchina+easylist.txt: 42306) -.bcdb.com/.*/banners\.pl\? -# ||bbc.com^*/logoDupontSmall.png (easylistchina+easylist.txt: 42305) -.bbc.com/.*/logoDupontSmall\.png -# ||bbc.co.uk^*/bbccom.js? (easylistchina+easylist.txt: 42304) -.bbc.co.uk/.*/bbccom\.js\? -# ||bazaraki.com/bannerImage.php? (easylistchina+easylist.txt: 42303) -.bazaraki.com/bannerImage\.php\? -# ||baymirror.com/static/js/4728ba74bc.js (easylistchina+easylist.txt: 42302) -.baymirror.com/static/js/4728ba74bc\.js -# ||baymirror.com/static/img/bar.gif (easylistchina+easylist.txt: 42301) -.baymirror.com/static/img/bar\.gif -# ||bayfiles.net/img/download-button-orange.png (easylistchina+easylist.txt: 42300) -.bayfiles.net/img/download-button-orange\.png -# ||bay.com.mt/modules/mod_novarp/ (easylistchina+easylist.txt: 42299) -.bay.com.mt/modules/mod_novarp/ -# ||bay.com.mt/images/banners/ (easylistchina+easylist.txt: 42298) -.bay.com.mt/images/banners/ -# ||bassmaster.com^*/premier_sponsor_logo/ (easylistchina+easylist.txt: 42297) -.bassmaster.com/.*/premier_sponsor_logo/ -# ||basinsradio.com/images/banners/ (easylistchina+easylist.txt: 42296) -.basinsradio.com/images/banners/ -# ||bashandslash.com/images/banners/ (easylistchina+easylist.txt: 42295) -.bashandslash.com/images/banners/ -# ||baseballamerica.com/plugs/ (easylistchina+easylist.txt: 42294) -.baseballamerica.com/plugs/ -# ||barnesandnoble.com/promo/ (easylistchina+easylist.txt: 42293) -.barnesandnoble.com/promo/ -# ||banners.playocio.com^ (easylistchina+easylist.txt: 42292) -.banners.playocio.com -# ||banners.itweb.co.za^ (easylistchina+easylist.txt: 42291) -.banners.itweb.co.za -# ||banners.i-comers.com^ (easylistchina+easylist.txt: 42290) -.banners.i-comers.com -# ||banners.expressindia.com^ (easylistchina+easylist.txt: 42288) -.banners.expressindia.com -# ||banners.clubworldgroup.com^ (easylistchina+easylist.txt: 42287) -.banners.clubworldgroup.com -# ||banners.beted.com^ (easylistchina+easylist.txt: 42286) -.banners.beted.com -# ||banners.beevpn.com^ (easylistchina+easylist.txt: 42285) -.banners.beevpn.com -# ||banner.itweb.co.za^ (easylistchina+easylist.txt: 42284) -.banner.itweb.co.za -# ||banner.automotiveworld.com^ (easylistchina+easylist.txt: 42283) -.banner.automotiveworld.com -# ||ballz.co.za^*/CLIENTS/ (easylistchina+easylist.txt: 42282) -.ballz.co.za/.*/CLIENTS/ -# ||ballz.co.za/system-files/banners/ (easylistchina+easylist.txt: 42281) -.ballz.co.za/system-files/banners/ -# ||ballerarcade.com/ispark/ (easylistchina+easylist.txt: 42279) -.ballerarcade.com/ispark/ -# ||baku2015.com/imgml/sponsor/ (easylistchina+easylist.txt: 42278) -.baku2015.com/imgml/sponsor/ -# ||bakercountypress.com/images/banners/ (easylistchina+easylist.txt: 42277) -.bakercountypress.com/images/banners/ -# ||baixartv.com/img/bonsdescontos. (easylistchina+easylist.txt: 42276) -.baixartv.com/img/bonsdescontos\. -# ||bahamaslocal.com/img/banners/ (easylistchina+easylist.txt: 42275) -.bahamaslocal.com/img/banners/ -# ||badongo.com^*_banner_ (easylistchina+easylist.txt: 42274) -.badongo.com/.*_banner_ -# ||backpagelead.com.au/images/banners/ (easylistchina+easylist.txt: 42273) -.backpagelead.com.au/images/banners/ -# ||backin.net/s/promo/ (easylistchina+easylist.txt: 42272) -.backin.net/s/promo/ -# ||babycenter.com/viewadvertorialpoll.htm (easylistchina+easylist.txt: 42271) -.babycenter.com/viewadvertorialpoll\.htm -# ||babelzilla.org/images/banners/babelzilla-powerfox.png (easylistchina+easylist.txt: 42270) -.babelzilla.org/images/banners/babelzilla-powerfox\.png -# ||babelzilla.org/forum/images/powerfox-top.png (easylistchina+easylist.txt: 42269) -.babelzilla.org/forum/images/powerfox-top\.png -# ||ba.kioskea.net^ (easylistchina+easylist.txt: 42268) -.ba.kioskea.net -# ||ba.ccm2.net^ (easylistchina+easylist.txt: 42267) -.ba.ccm2.net -# ||b92.net/images/banners/ (easylistchina+easylist.txt: 42266) -.b92.net/images/banners/ -# ||b.thefile.me^ (easylistchina+easylist.txt: 42265) -.b.thefile.me -# ||b.localpages.com^ (easylistchina+easylist.txt: 42264) -.b.localpages.com -# ||azlyrics.com^*_az.js (easylistchina+easylist.txt: 42263) -.azlyrics.com/.*_az\.js -# ||azcs.co.uk^*/backgrounds/rotate.php (easylistchina+easylist.txt: 42262) -.azcs.co.uk/.*/backgrounds/rotate\.php -# ||azcentral.com/incs/dfp-refresh.php.inc? (easylistchina+easylist.txt: 42261) -.azcentral.com/incs/dfp-refresh\.php\.inc\? -# ||awkwardfamilyphotos.com*/?ad= (easylistchina+easylist.txt: 42260) -.awkwardfamilyphotos.com*./(.*/)?\?ad= -# ||avstop.com/avbanner/ (easylistchina+easylist.txt: 42259) -.avstop.com/avbanner/ -# ||avsforum.com/alliance/ (easylistchina+easylist.txt: 42258) -.avsforum.com/alliance/ -# ||avpa.dzone.com^ (easylistchina+easylist.txt: 42257) -.avpa.dzone.com -# ||avn.com/delivery/ (easylistchina+easylist.txt: 42256) -.avn.com/delivery/ -# ||avitop.com/image/mig.gif (easylistchina+easylist.txt: 42255) -.avitop.com/image/mig\.gif -# ||avitop.com/image/mig-anim.gif (easylistchina+easylist.txt: 42254) -.avitop.com/image/mig-anim\.gif -# ||avitop.com/image/amazon/ (easylistchina+easylist.txt: 42253) -.avitop.com/image/amazon/ -# ||aviationweek.com^*/leader_board.htm (easylistchina+easylist.txt: 42252) -.aviationweek.com/.*/leader_board\.htm -# ||avforums.com/images/skins/ (easylistchina+easylist.txt: 42251) -.avforums.com/images/skins/ -# ||aveherald.com/images/banners/ (easylistchina+easylist.txt: 42250) -.aveherald.com/images/banners/ -# ||autoworld.co.za^*/ads/ (easylistchina+easylist.txt: 42248) -.autoworld.co.za/.*/ads/ -# ||autosport.com/skinning/ (easylistchina+easylist.txt: 42247) -.autosport.com/skinning/ -# ||autoline.info/atlads/ (easylistchina+easylist.txt: 42246) -.autoline.info/atlads/ -# ||autoline-eu.ie/atlads/ (easylistchina+easylist.txt: 42245) -.autoline-eu.ie/atlads/ -# ||autoline-eu.co.za/atlads/ (easylistchina+easylist.txt: 42244) -.autoline-eu.co.za/atlads/ -# ||autoline-eu.co.uk/atlads/ (easylistchina+easylist.txt: 42243) -.autoline-eu.co.uk/atlads/ -# ||auto123.com/sasserve.spy (easylistchina+easylist.txt: 42242) -.auto123.com/sasserve\.spy -# ||at膽he.net/pu/ (easylistchina+easylist.txt: 42240) -.at膽he.net/pu/ -# ||attitude.co.uk/images/Music_Ticket_Button_ (easylistchina+easylist.txt: 42239) -.attitude.co.uk/images/Music_Ticket_Button_ -# ||atimes.com^*/ahm728x90.swf (easylistchina+easylist.txt: 42238) -.atimes.com/.*/ahm728x90\.swf -# ||atimes.com/banner/ (easylistchina+easylist.txt: 42237) -.atimes.com/banner/ -# ||atdhe.ws/pp.js (easylistchina+easylist.txt: 42236) -.atdhe.ws/pp\.js -# ||astronomynow.com/wp-content/promos/ (easylistchina+easylist.txt: 42235) -.astronomynow.com/wp-content/promos/ -# ||astronomy.com/sitefiles/overlays/overlaygenerator.aspx? (easylistchina+easylist.txt: 42234) -.astronomy.com/sitefiles/overlays/overlaygenerator\.aspx\? -# ||astalavista.com^*/sponsor- (easylistchina+easylist.txt: 42233) -.astalavista.com/.*/sponsor- -# ||astalavista.com/avtng/ (easylistchina+easylist.txt: 42232) -.astalavista.com/avtng/ -# ||askbobrankin.com/awpopup*.js (easylistchina+easylist.txt: 42231) -.askbobrankin.com/awpopup.*\.js -# ||ask.com/fifdart? (easylistchina+easylist.txt: 42229) -.ask.com/fifdart\? -# ||ask.com/display.html? (easylistchina+easylist.txt: 42228) -.ask.com/display\.html\? -# ||asianewsnet.net/banner/ (easylistchina+easylist.txt: 42227) -.asianewsnet.net/banner/ -# ||asd.projectfreetv.so^ (easylistchina+easylist.txt: 42226) -.asd.projectfreetv.so -# ||as.inbox.com^ (easylistchina+easylist.txt: 42225) -.as.inbox.com -# ||artima.com/zcr/ (easylistchina+easylist.txt: 42224) -.artima.com/zcr/ -# ||arstechnica.net^*/sponsor- (easylistchina+easylist.txt: 42223) -.arstechnica.net/.*/sponsor- -# ||arstechnica.net/public/shared/scripts/da- (easylistchina+easylist.txt: 42222) -.arstechnica.net/public/shared/scripts/da- -# ||arsenal-mania.com/images/backsplash_ (easylistchina+easylist.txt: 42221) -.arsenal-mania.com/images/backsplash_ -# ||aroundosceola.com/banner- (easylistchina+easylist.txt: 42220) -.aroundosceola.com/banner- -# ||arnnet.com.au/files/skins/ (easylistchina+easylist.txt: 42219) -.arnnet.com.au/files/skins/ -# ||armyrecognition.com^*/customer/ (easylistchina+easylist.txt: 42218) -.armyrecognition.com/.*/customer/ -# ||armslist.com/images/sponsors/ (easylistchina+easylist.txt: 42217) -.armslist.com/images/sponsors/ -# ||armorgames.com^*/siteskin.css (easylistchina+easylist.txt: 42216) -.armorgames.com/.*/siteskin\.css -# ||armorgames.com^*/site-skins/ (easylistchina+easylist.txt: 42215) -.armorgames.com/.*/site-skins/ -# ||armorgames.com^*/banners/ (easylistchina+easylist.txt: 42214) -.armorgames.com/.*/banners/ -# ||armorgames.com/backup_ (easylistchina+easylist.txt: 42213) -.armorgames.com/backup_ -# ||armorgames.com/assets/*_skin_ (easylistchina+easylist.txt: 42212) -.armorgames.com/assets/.*_skin_ -# ||arenadb.net^*/banners/ (easylistchina+easylist.txt: 42211) -.arenadb.net/.*/banners/ -# ||arenabg.com^*/banners/ (easylistchina+easylist.txt: 42210) -.arenabg.com/.*/banners/ -# ||archeagedatabase.net/images/okaygoods.gif (easylistchina+easylist.txt: 42209) -.archeagedatabase.net/images/okaygoods\.gif -# ||aravot.am/banner/ (easylistchina+easylist.txt: 42208) -.aravot.am/banner/ -# ||ar15.com^*_60x180.jpg (easylistchina+easylist.txt: 42207) -.ar15.com/.*_60x180\.jpg -# ||ar15.com/images/highlight/ (easylistchina+easylist.txt: 42206) -.ar15.com/images/highlight/ -# ||ar15.com/biz/ (easylistchina+easylist.txt: 42205) -.ar15.com/biz/ -# ||aps.dz^*/banners/ (easylistchina+easylist.txt: 42204) -.aps.dz/.*/banners/ -# ||appwork.org/a_d_s/ (easylistchina+easylist.txt: 42203) -.appwork.org/a_d_s/ -# ||appspot.com/adop/ (easylistchina+easylist.txt: 42202) -.appspot.com/adop/ -# ||applifier.com/bar.htm? (easylistchina+easylist.txt: 42201) -.applifier.com/bar\.htm\? -# ||appleinsider.com^*/ai_front_page_google_premium.js (easylistchina+easylist.txt: 42199) -.appleinsider.com/.*/ai_front_page_google_premium\.js -# ||appleinsider.com/macmall (easylistchina+easylist.txt: 42198) -.appleinsider.com/macmall -# ||api.toptenreviews.com^*/request.php (easylistchina+easylist.txt: 42197) -.api.toptenreviews.com/.*/request\.php -# ||apcointl.org/images/corporate_partners/ (easylistchina+easylist.txt: 42196) -.apcointl.org/images/corporate_partners/ -# ||apanews.net/pub/ (easylistchina+easylist.txt: 42195) -.apanews.net/pub/ -# ||apa.az^*/rebans/ (easylistchina+easylist.txt: 42194) -.apa.az/.*/rebans/ -# ||aol.co.uk/images/skybet-logo.gif (easylistchina+easylist.txt: 42191) -.aol.co.uk/images/skybet-logo\.gif -# ||anvisoft.com^*/anviad.jpg (easylistchina+easylist.txt: 42190) -.anvisoft.com/.*/anviad\.jpg -# ||anti-scam.org/abanners/ (easylistchina+easylist.txt: 42189) -.anti-scam.org/abanners/ -# ||anti-leech.com/al.php? (easylistchina+easylist.txt: 42188) -.anti-leech.com/al\.php\? -# ||antag.co.uk/js/ov.js.php? (easylistchina+easylist.txt: 42187) -.antag.co.uk/js/ov\.js\.php\? -# ||answerology.com/index.aspx?*=ads.ascx (easylistchina+easylist.txt: 42186) -.answerology.com/index\.aspx\?.*=ads\.ascx -# ||anonytext.tk/re.php (easylistchina+easylist.txt: 42185) -.anonytext.tk/re\.php -# ||anonytext.tk/img/paste-sponsor.png (easylistchina+easylist.txt: 42184) -.anonytext.tk/img/paste-sponsor\.png -# ||anonytext.tk/img/paste-eb.png (easylistchina+easylist.txt: 42183) -.anonytext.tk/img/paste-eb\.png -# ||anonib.com/zimages/ (easylistchina+easylist.txt: 42182) -.anonib.com/zimages/ -# ||annistonstar.com/leaderboard_banner (easylistchina+easylist.txt: 42181) -.annistonstar.com/leaderboard_banner -# ||aniscartujo.com^*/layer.js (easylistchina+easylist.txt: 42180) -.aniscartujo.com/.*/layer\.js -# ||animeshippuuden.com/square.php (easylistchina+easylist.txt: 42179) -.animeshippuuden.com/square\.php -# ||animeshippuuden.com/adcpm.js (easylistchina+easylist.txt: 42178) -.animeshippuuden.com/adcpm\.js -# ||animenewsnetwork.com^*.aframe? (easylistchina+easylist.txt: 42177) -.animenewsnetwork.com/.*\.aframe\? -# ||animehaven.org/wp-content/banners/ (easylistchina+easylist.txt: 42175) -.animehaven.org/wp-content/banners/ -# ||animefushigi.com/boxes/ (easylistchina+easylist.txt: 42174) -.animefushigi.com/boxes/ -# ||animeflv.net/cpm.html (easylistchina+easylist.txt: 42173) -.animeflv.net/cpm\.html -# ||animeflavor.com/animeflavor-gao-gamebox.swf (easylistchina+easylist.txt: 42172) -.animeflavor.com/animeflavor-gao-gamebox\.swf -# ||animea.net/do/ (easylistchina+easylist.txt: 42171) -.animea.net/do/ -# ||anime44.com/images/videobb2.png (easylistchina+easylist.txt: 42170) -.anime44.com/images/videobb2\.png -# ||anime44.com/anime44box.jpg (easylistchina+easylist.txt: 42169) -.anime44.com/anime44box\.jpg -# ||anime1.com/service/joyfun/ (easylistchina+easylist.txt: 42168) -.anime1.com/service/joyfun/ -# ||animationxpress.com/anex/solutions/ (easylistchina+easylist.txt: 42166) -.animationxpress.com/anex/solutions/ -# ||animationxpress.com/anex/crosspromotions/ (easylistchina+easylist.txt: 42165) -.animationxpress.com/anex/crosspromotions/ -# ||anilinkz.tv/kwarta- (easylistchina+easylist.txt: 42164) -.anilinkz.tv/kwarta- -# ||anilinkz.com/img/rightsponsors (easylistchina+easylist.txt: 42163) -.anilinkz.com/img/rightsponsors -# ||anilinkz.com/img/leftsponsors. (easylistchina+easylist.txt: 42162) -.anilinkz.com/img/leftsponsors\. -# ||anhits.com/files/banners/ (easylistchina+easylist.txt: 42161) -.anhits.com/files/banners/ -# ||androidpolice.com/wp-content/*/images/das/ (easylistchina+easylist.txt: 42160) -.androidpolice.com/wp-content/.*/images/das/ -# ||andr.net/banners/ (easylistchina+easylist.txt: 42158) -.andr.net/banners/ -# ||anchorfree.com/delivery/ (easylistchina+easylist.txt: 42155) -.anchorfree.com/delivery/ -# ||anamera.com/DesktopModules/BannerDisplay/ (easylistchina+easylist.txt: 42154) -.anamera.com/DesktopModules/BannerDisplay/ -# ||analytics.mmosite.com^ (easylistchina+easylist.txt: 42153) -.analytics.mmosite.com -# ||amz.steamprices.com^ (easylistchina+easylist.txt: 42152) -.amz.steamprices.com -# ||amnesty.ca/images/banners/ (easylistchina+easylist.txt: 42151) -.amnesty.ca/images/banners/ -# ||americanfreepress.net/assets/images/Banner_ (easylistchina+easylist.txt: 42150) -.americanfreepress.net/assets/images/Banner_ -# ||americanangler.com/images/banners/ (easylistchina+easylist.txt: 42149) -.americanangler.com/images/banners/ -# ||amd.com/publishingimages/*/master_ (easylistchina+easylist.txt: 42148) -.amd.com/publishingimages/.*/master_ -# ||ambriefonline.com^*/banners/ (easylistchina+easylist.txt: 42147) -.ambriefonline.com/.*/banners/ -# ||amazonaws.com/files.bannersnack.com/ (easylistchina+easylist.txt: 42140) -.amazonaws.com/files\.bannersnack\.com/ -# ||amazonaws.com/cdn.megacpm.com/ (easylistchina+easylist.txt: 42137) -.amazonaws.com/cdn\.megacpm\.com/ -# ||amazingmoneymagnet.com//upload/banners/ (easylistchina+easylist.txt: 42135) -# ||alternet.org/givememygfp. (easylistchina+easylist.txt: 42134) -.alternet.org/givememygfp\. -# ||altdaily.com/images/banners/ (easylistchina+easylist.txt: 42133) -.altdaily.com/images/banners/ -# ||allthelyrics.com^*/popup.js (easylistchina+easylist.txt: 42132) -.allthelyrics.com/.*/popup\.js -# ||allsp.ch/feeder.php (easylistchina+easylist.txt: 42131) -.allsp.ch/feeder\.php -# ||allmyvideos.net^*/pu.js (easylistchina+easylist.txt: 42130) -.allmyvideos.net/.*/pu\.js -# ||allmyvideos.net/player/ova-jw.swf (easylistchina+easylist.txt: 42129) -.allmyvideos.net/player/ova-jw\.swf -# ||allmyvideos.net/js/ad_ (easylistchina+easylist.txt: 42128) -.allmyvideos.net/js/ad_ -# ||allmusic.com^*_affiliate_ (easylistchina+easylist.txt: 42127) -.allmusic.com/.*_affiliate_ -# ||allmovieportal.com/dynbanner. (easylistchina+easylist.txt: 42126) -.allmovieportal.com/dynbanner\. -# ||allmovie.com^*/affiliate_ (easylistchina+easylist.txt: 42125) -.allmovie.com/.*/affiliate_ -# ||allkpop.com^*/takeover/ (easylistchina+easylist.txt: 42124) -.allkpop.com/.*/takeover/ -# ||allhiphop.com/site_resources/ui-images/*-conduit-banner.gif (easylistchina+easylist.txt: 42123) -.allhiphop.com/site_resources/ui-images/.*-conduit-banner\.gif -# ||allghananews.com/images/banners/ (easylistchina+easylist.txt: 42122) -.allghananews.com/images/banners/ -# ||all4divx.com/js/jscode2.js (easylistchina+easylist.txt: 42121) -.all4divx.com/js/jscode2\.js -# ||alatest.com/banner/ (easylistchina+easylist.txt: 42120) -.alatest.com/banner/ -# ||alatest.co.uk/banner/ (easylistchina+easylist.txt: 42119) -.alatest.co.uk/banner/ -# ||alaska-native-news.com/files/banners/ (easylistchina+easylist.txt: 42118) -.alaska-native-news.com/files/banners/ -# ||alarabiya.net/dms/takeover/ (easylistchina+easylist.txt: 42117) -.alarabiya.net/dms/takeover/ -# ||alachuacountytoday.com/images/banners/ (easylistchina+easylist.txt: 42116) -.alachuacountytoday.com/images/banners/ -# ||akipress.org/bimages/ (easylistchina+easylist.txt: 42115) -.akipress.org/bimages/ -# ||akipress.org/ban/ (easylistchina+easylist.txt: 42114) -.akipress.org/ban/ -# ||akipress.com/_ban/ (easylistchina+easylist.txt: 42113) -.akipress.com/_ban/ -# ||akinator.com/publicite_ (easylistchina+easylist.txt: 42112) -.akinator.com/publicite_ -# ||akiba-online.com/forum/images/bs.gif (easylistchina+easylist.txt: 42110) -.akiba-online.com/forum/images/bs\.gif -# ||akamaihd.net/zbar/takeovers/ (easylistchina+easylist.txt: 42108) -.akamaihd.net/zbar/takeovers/ -# ||akamai.net/*/Prerolls/Campaigns/ (easylistchina+easylist.txt: 42107) -.akamai.net/.*/Prerolls/Campaigns/ -# ||ajnad.aljazeera.net^ (easylistchina+easylist.txt: 42106) -.ajnad.aljazeera.net -# ||ahk-usa.com/uploads/tx_bannermanagement/ (easylistchina+easylist.txt: 42105) -.ahk-usa.com/uploads/tx_bannermanagement/ -# ||ahashare.com/cpxt_ (easylistchina+easylist.txt: 42104) -.ahashare.com/cpxt_ -# ||agriculturalreviewonline.com/images/banners/ (easylistchina+easylist.txt: 42103) -.agriculturalreviewonline.com/images/banners/ -# ||afternoondc.in/banners/ (easylistchina+easylist.txt: 42102) -.afternoondc.in/banners/ -# ||africaonline.com.na^*/banners/ (easylistchina+easylist.txt: 42101) -.africaonline.com.na/.*/banners/ -# ||africanbusinessmagazine.com/images/banners/ (easylistchina+easylist.txt: 42100) -.africanbusinessmagazine.com/images/banners/ -# ||afmradio.co.za/images/slider/ (easylistchina+easylist.txt: 42099) -.afmradio.co.za/images/slider/ -# ||afloat.ie^*/banners/ (easylistchina+easylist.txt: 42098) -.afloat.ie/.*/banners/ -# ||affiliatesynergy.com^*/banner_ (easylistchina+easylist.txt: 42097) -.affiliatesynergy.com/.*/banner_ -# ||aff.lmgtfy.com^ (easylistchina+easylist.txt: 42096) -.aff.lmgtfy.com -# ||aetv.com/includes/dart/ (easylistchina+easylist.txt: 42095) -.aetv.com/includes/dart/ -# ||adz.lk^*_ad. (easylistchina+easylist.txt: 42094) -.adz.lk/.*_ad\. -# ||adx.kat.ph^ (easylistchina+easylist.txt: 42093) -.adx.kat.ph -# ||advpc.net/site_img/banner/ (easylistchina+easylist.txt: 42092) -.advpc.net/site_img/banner/ -# ||advice-ads-cdn.vice.com^ (easylistchina+easylist.txt: 42091) -.advice-ads-cdn.vice.com -# ||advfn.com/tf_ (easylistchina+easylist.txt: 42090) -.advfn.com/tf_ -# ||advertise.twitpic.com^ (easylistchina+easylist.txt: 42088) -.advertise.twitpic.com -# ||advanced-television.com^*/banners/ (easylistchina+easylist.txt: 42087) -.advanced-television.com/.*/banners/ -# ||adv.li/ads/ (easylistchina+easylist.txt: 42086) -.adv.li/ads/ -# ||adtest.theonion.com^ (easylistchina+easylist.txt: 42085) -.adtest.theonion.com -# ||adswikia.com^*display300x250 (easylistchina+easylist.txt: 42084) -.adswikia.com/.*display300x250 -# ||adswikia.com^*banner (easylistchina+easylist.txt: 42083) -.adswikia.com/.*banner -# ||adstil.indiatimes.com^ (easylistchina+easylist.txt: 42082) -.adstil.indiatimes.com -# ||adss.yahoo.com^ (easylistchina+easylist.txt: 42081) -.adss.yahoo.com -# ||adsor.openrunner.com^ (easylistchina+easylist.txt: 42080) -.adsor.openrunner.com -# ||adsl2exchanges.com.au/images/spintel (easylistchina+easylist.txt: 42079) -.adsl2exchanges.com.au/images/spintel -# ||adshare.freedocast.com^ (easylistchina+easylist.txt: 42078) -.adshare.freedocast.com -# ||adsatt.espn.starwave.com^ (easylistchina+easylist.txt: 42077) -.adsatt.espn.starwave.com -# ||adsatt.abcnews.starwave.com^ (easylistchina+easylist.txt: 42076) -.adsatt.abcnews.starwave.com -# ||ads.zynga.com^ (easylistchina+easylist.txt: 42075) -.ads.zynga.com -# ||ads.yahoo.com^ (easylistchina+easylist.txt: 42074) -.ads.yahoo.com -# ||ads.pof.com^ (easylistchina+easylist.txt: 42073) -.ads.pof.com -# ||ads-rolandgarros.com^ (easylistchina+easylist.txt: 42072) -.ads-rolandgarros.com -# ||ads-*.hulu.com^ (easylistchina+easylist.txt: 42071) -.ads-*./.*\.hulu\.com[^\w%.-] -.ads-*.hulu.com -# ||adpost.com^*.g.html (easylistchina+easylist.txt: 42070) -.adpost.com/.*\.g\.html -# ||adpost.com/skyserver.g. (easylistchina+easylist.txt: 42069) -.adpost.com/skyserver\.g\. -# ||adpost.com/rectserver.g. (easylistchina+easylist.txt: 42068) -.adpost.com/rectserver\.g\. -# ||adpost.com/bannerserver.g. (easylistchina+easylist.txt: 42067) -.adpost.com/bannerserver\.g\. -# ||adpaths.com/_aspx/cpcinclude.aspx? (easylistchina+easylist.txt: 42066) -.adpaths.com/_aspx/cpcinclude\.aspx\? -# ||admeta.vo.llnwd.net^ (easylistchina+easylist.txt: 42065) -.admeta.vo.llnwd.net -# ||adlink.shopsafe.co.nz^ (easylistchina+easylist.txt: 42064) -.adlink.shopsafe.co.nz -# ||adirondackmtnclub.com/images/banner/ (easylistchina+easylist.txt: 42063) -.adirondackmtnclub.com/images/banner/ -# ||adifferentleague.co.uk^*/mcad.png (easylistchina+easylist.txt: 42062) -.adifferentleague.co.uk/.*/mcad\.png -# ||adf.ly/networks/ (easylistchina+easylist.txt: 42061) -.adf.ly/networks/ -# ||adf.ly/external/*/int.php (easylistchina+easylist.txt: 42060) -.adf.ly/external/.*/int\.php -# ||adelaidecityfc.com.au/oak.swf (easylistchina+easylist.txt: 42059) -.adelaidecityfc.com.au/oak\.swf -# ||adds.weatherology.com^ (easylistchina+easylist.txt: 42058) -.adds.weatherology.com -# ||addirector.vindicosuite.com^ (easylistchina+easylist.txt: 42057) -.addirector.vindicosuite.com -# ||adcitrus.com^ (easylistchina+easylist.txt: 42056) -.adcitrus.com -# ||adamvstheman.com/wp-content/uploads/*/AVTM_banner.jpg (easylistchina+easylist.txt: 42055) -.adamvstheman.com/wp-content/uploads/.*/AVTM_banner\.jpg -# ||ad.services.distractify.com^ (easylistchina+easylist.txt: 42054) -.ad.services.distractify.com -# ||ad.search.ch^ (easylistchina+easylist.txt: 42053) -.ad.search.ch -# ||ad.reachlocal.com^ (easylistchina+easylist.txt: 42052) -.ad.reachlocal.com -# ||ad.pandora.tv^ (easylistchina+easylist.txt: 42051) -.ad.pandora.tv -# ||ad.newegg.com^ (easylistchina+easylist.txt: 42050) -.ad.newegg.com -# ||ad.mangareader.net^ (easylistchina+easylist.txt: 42049) -.ad.mangareader.net -# ||ad.lyricswire.com^ (easylistchina+easylist.txt: 42048) -.ad.lyricswire.com -# ||ad.jamster.com^ (easylistchina+easylist.txt: 42047) -.ad.jamster.com -# ||ad.fnnews.com^ (easylistchina+easylist.txt: 42046) -.ad.fnnews.com -# ||ad.evozi.com^ (easylistchina+easylist.txt: 42045) -.ad.evozi.com -# ||ad.download.cnet.com^ (easylistchina+easylist.txt: 42044) -.ad.download.cnet.com -# ||ad.directmirror.com^ (easylistchina+easylist.txt: 42043) -.ad.directmirror.com -# ||ad.digitimes.com.tw^ (easylistchina+easylist.txt: 42042) -.ad.digitimes.com.tw -# ||ad.cooks.com^ (easylistchina+easylist.txt: 42041) -.ad.cooks.com -# ||actressarchives.com/takeover/ (easylistchina+easylist.txt: 42040) -.actressarchives.com/takeover/ -# ||activewin.com^*/blaze_static2.gif (easylistchina+easylist.txt: 42039) -.activewin.com/.*/blaze_static2\.gif -# ||activewin.com/images/*_ad.gif (easylistchina+easylist.txt: 42038) -.activewin.com/images/.*_ad\.gif -# ||acs86.com/a.htm? (easylistchina+easylist.txt: 42037) -.acs86.com/a\.htm\? -# ||acidcow.com/banners.php? (easylistchina+easylist.txt: 42036) -.acidcow.com/banners\.php\? -# ||access.njherald.com^ (easylistchina+easylist.txt: 42034) -.access.njherald.com -# ||ac2.msn.com^ (easylistchina+easylist.txt: 42033) -.ac2.msn.com -# ||absolutewrite.com^*_ad.jpg (easylistchina+easylist.txt: 42032) -.absolutewrite.com/.*_ad\.jpg -# ||absolutewrite.com^*_468x60banner. (easylistchina+easylist.txt: 42031) -.absolutewrite.com/.*_468x60banner\. -# ||absolutewrite.com^*/Scrivener-11-thumbnail-cover_160x136.gif (easylistchina+easylist.txt: 42030) -.absolutewrite.com/.*/Scrivener-11-thumbnail-cover_160x136\.gif -# ||absolutewrite.com^*/doyle_editorial.jpg (easylistchina+easylist.txt: 42029) -.absolutewrite.com/.*/doyle_editorial\.jpg -# ||absolutewrite.com^*/48HrBooks4.jpg (easylistchina+easylist.txt: 42028) -.absolutewrite.com/.*/48HrBooks4\.jpg -# ||absolutcheats.com/images/changemy*.gif (easylistchina+easylist.txt: 42027) -.absolutcheats.com/images/changemy.*\.gif -# ||abovetopsecret.com/images/plexidigest-300x300.jpg (easylistchina+easylist.txt: 42026) -.abovetopsecret.com/images/plexidigest-300x300\.jpg -# ||abovetopsecret.com/728_ (easylistchina+easylist.txt: 42025) -.abovetopsecret.com/728_ -# ||abovetopsecret.com/300_ (easylistchina+easylist.txt: 42024) -.abovetopsecret.com/300_ -# ||abovetopsecret.com/160_ (easylistchina+easylist.txt: 42023) -.abovetopsecret.com/160_ -# ||aboutmyip.com/images/SynaManBanner.gif (easylistchina+easylist.txt: 42022) -.aboutmyip.com/images/SynaManBanner\.gif -# ||aboutmyip.com/images/Ad0 (easylistchina+easylist.txt: 42021) -.aboutmyip.com/images/Ad0 -# ||aboutmyarea.co.uk/images/imgstore/ (easylistchina+easylist.txt: 42020) -.aboutmyarea.co.uk/images/imgstore/ -# ||abook.ws/th_mydl.gif (easylistchina+easylist.txt: 42018) -.abook.ws/th_mydl\.gif -# ||abook.ws/pyload.png (easylistchina+easylist.txt: 42017) -.abook.ws/pyload\.png -# ||abook.ws/banner6.png (easylistchina+easylist.txt: 42016) -.abook.ws/banner6\.png -# ||abduzeedo.com^*/mt-banner.jpg (easylistchina+easylist.txt: 42015) -.abduzeedo.com/.*/mt-banner\.jpg -# ||aaugh.com/images/dreamhostad.gif (easylistchina+easylist.txt: 42013) -.aaugh.com/images/dreamhostad\.gif -# ||a7.org/info/ (easylistchina+easylist.txt: 42012) -.a7.org/info/ -# ||a.lolwot.com^ (easylistchina+easylist.txt: 42011) -.a.lolwot.com -# ||a.kickass.to^ (easylistchina+easylist.txt: 42010) -.a.kickass.to -# ||a.kat.cr^ (easylistchina+easylist.txt: 42009) -.a.kat.cr -# ||a.i-sgcm.com^ (easylistchina+easylist.txt: 42008) -.a.i-sgcm.com -# ||a.giantrealm.com^ (easylistchina+easylist.txt: 42007) -.a.giantrealm.com -# ||a.clipconverter.cc^ (easylistchina+easylist.txt: 42006) -.a.clipconverter.cc -# ||a.cdngeek.net^ (easylistchina+easylist.txt: 42005) -.a.cdngeek.net -# ||9news.com/promo/ (easylistchina+easylist.txt: 42004) -.9news.com/promo/ -# ||980wcap.com/sponsorlogos/ (easylistchina+easylist.txt: 42003) -.980wcap.com/sponsorlogos/ -# ||977rocks.com/images/300- (easylistchina+easylist.txt: 42002) -.977rocks.com/images/300- -# ||977music.com/index.php?p=get_loading_banner (easylistchina+easylist.txt: 42001) -.977music.com/index\.php\?p=get_loading_banner -# ||947fm.bb/images/banners/ (easylistchina+easylist.txt: 42000) -.947fm.bb/images/banners/ -# ||947.co.za^*-branding. (easylistchina+easylist.txt: 41999) -.947.co.za/.*-branding\. -# ||911tabs.com^*/ringtones_overlay.js (easylistchina+easylist.txt: 41998) -.911tabs.com/.*/ringtones_overlay\.js -# ||911tabs.com/img/takeover_app_ (easylistchina+easylist.txt: 41997) -.911tabs.com/img/takeover_app_ -# ||911tabs.com/img/bgd_911tabs_ (easylistchina+easylist.txt: 41996) -.911tabs.com/img/bgd_911tabs_ -# ||8ch.net/proxy.php? (easylistchina+easylist.txt: 41995) -.8ch.net/proxy\.php\? -# ||8a.nu/sponsors/ (easylistchina+easylist.txt: 41994) -.8a.nu/sponsors/ -# ||8a.nu/site2/sponsors/ (easylistchina+easylist.txt: 41993) -.8a.nu/site2/sponsors/ -# ||88.80.16.183/streams/counters/ (easylistchina+easylist.txt: 41992) -.88.80.16.183/streams/counters/ -# ||810varsity.com^*/background- (easylistchina+easylist.txt: 41989) -.810varsity.com/.*/background- -# ||6waves.com/aff.php? (easylistchina+easylist.txt: 41987) -.6waves.com/aff\.php\? -# ||64.245.1.134/search/v2/jsp/pcwframe.jsp?provider= (easylistchina+easylist.txt: 41986) -.64.245.1.134/search/v2/jsp/pcwframe\.jsp\?provider= -# ||610kvnu.com*^/sponsors/ (easylistchina+easylist.txt: 41985) -.610kvnu.com*./(.*[^\w%.-])?/sponsors/ -# ||5star-shareware.com/scripts/5starads.js (easylistchina+easylist.txt: 41984) -.5star-shareware.com/scripts/5starads\.js -# ||5min.com^*/banners/ (easylistchina+easylist.txt: 41983) -.5min.com/.*/banners/ -# ||560theanswer.com/upload/sponsor- (easylistchina+easylist.txt: 41982) -.560theanswer.com/upload/sponsor- -# ||4sharedtrend.com/ifx/ifx.php? (easylistchina+easylist.txt: 41978) -.4sharedtrend.com/ifx/ifx\.php\? -# ||4shared.com/images/label1.gif (easylistchina+easylist.txt: 41977) -.4shared.com/images/label1\.gif -# ||4fuckr.com/static/*-banner. (easylistchina+easylist.txt: 41976) -.4fuckr.com/static/.*-banner\. -# ||4fastfile.com/afiliat.png (easylistchina+easylist.txt: 41974) -.4fastfile.com/afiliat\.png -# ||4downfiles.com/open1.js (easylistchina+easylist.txt: 41973) -.4downfiles.com/open1\.js -# ||4chan.org/support/ (easylistchina+easylist.txt: 41972) -.4chan.org/support/ -# ||3pmpickup.com.au/images/kmart_v2.jpg (easylistchina+easylist.txt: 41971) -.3pmpickup.com.au/images/kmart_v2\.jpg -# ||3g.co.uk/fad/ (easylistchina+easylist.txt: 41970) -.3g.co.uk/fad/ -# ||3dwallpaperstudio.com/hd_wallpapers.png (easylistchina+easylist.txt: 41969) -.3dwallpaperstudio.com/hd_wallpapers\.png -# ||3dsemulator.org/img/download.png (easylistchina+easylist.txt: 41968) -.3dsemulator.org/img/download\.png -# ||360haven.com/forums/*.advertising.com/ (easylistchina+easylist.txt: 41967) -.360haven.com/forums/.*\.advertising\.com/ -# ||2pass.co.uk/img/avanquest2013.gif (easylistchina+easylist.txt: 41966) -.2pass.co.uk/img/avanquest2013\.gif -# ||2oceansvibe.com/?custom=takeover (easylistchina+easylist.txt: 41965) -.2oceansvibe.com/\?custom=takeover -# ||2mfm.org/images/banners/ (easylistchina+easylist.txt: 41964) -.2mfm.org/images/banners/ -# ||2merkato.com/images/banners/ (easylistchina+easylist.txt: 41963) -.2merkato.com/images/banners/ -# ||2gb.com^*/backgrounds/ (easylistchina+easylist.txt: 41962) -.2gb.com/.*/backgrounds/ -# ||2flashgames.com/img/nfs.gif (easylistchina+easylist.txt: 41961) -.2flashgames.com/img/nfs\.gif -# ||24hourwristbands.com/*.googleadservices.com/ (easylistchina+easylist.txt: 41960) -.24hourwristbands.com/.*\.googleadservices\.com/ -# ||22lottery.com/images/lm468 (easylistchina+easylist.txt: 41959) -.22lottery.com/images/lm468 -# ||1up.com^*/promos/ (easylistchina+easylist.txt: 41954) -.1up.com/.*/promos/ -# ||1up.com/vip/vip_games.html (easylistchina+easylist.txt: 41953) -.1up.com/vip/vip_games\.html -# ||1up.com/scripts/takeover.js (easylistchina+easylist.txt: 41952) -.1up.com/scripts/takeover\.js -# ||180upload.com/pir/729.js (easylistchina+easylist.txt: 41949) -.180upload.com/pir/729\.js -# ||180upload.com/p1.js (easylistchina+easylist.txt: 41948) -.180upload.com/p1\.js -# ||1776coalition.com/wp-content/plugins/sam-images/ (easylistchina+easylist.txt: 41946) -.1776coalition.com/wp-content/plugins/sam-images/ -# ||1590wcgo.com/images/banners/ (easylistchina+easylist.txt: 41944) -.1590wcgo.com/images/banners/ -# ||1430wnav.com/images/468- (easylistchina+easylist.txt: 41943) -.1430wnav.com/images/468- -# ||1430wnav.com/images/300- (easylistchina+easylist.txt: 41942) -.1430wnav.com/images/300- -# ||1340wcmi.com/images/banners/ (easylistchina+easylist.txt: 41941) -.1340wcmi.com/images/banners/ -# ||1320wils.com/assets/images/promo%20banner/ (easylistchina+easylist.txt: 41940) -.1320wils.com/assets/images/promo%20banner/ -# ||11points.com/images/slack100.jpg (easylistchina+easylist.txt: 41939) -.11points.com/images/slack100\.jpg -# ||1077thebone.com^*/banners/ (easylistchina+easylist.txt: 41937) -.1077thebone.com/.*/banners/ -# ||1071thepeak.com/right/ (easylistchina+easylist.txt: 41936) -.1071thepeak.com/right/ -# ||1071radio.com//wp-content/banners/ (easylistchina+easylist.txt: 41935) -# ||1043thefan.com^*_Sponsors/ (easylistchina+easylist.txt: 41934) -.1043thefan.com/.*_Sponsors/ -# ||104.239.139.5/display/ (easylistchina+easylist.txt: 41933) -.104.239.139.5/display/ -# ||1023xlc.com/upload/*_background_ (easylistchina+easylist.txt: 41932) -.1023xlc.com/upload/.*_background_ -# ||100jamz.com^*/insurance-management (easylistchina+easylist.txt: 41931) -.100jamz.com/.*/insurance-management -# ||100jamz.com^*-wallpaper-ad- (easylistchina+easylist.txt: 41930) -.100jamz.com/.*-wallpaper-ad- -# ||100best-free-web-space.com/images/ipage.gif (easylistchina+easylist.txt: 41929) -.100best-free-web-space.com/images/ipage\.gif -# ||10-fast-fingers.com/quotebattle-ad.png (easylistchina+easylist.txt: 41928) -.10-fast-fingers.com/quotebattle-ad\.png -# ||04stream.com/podddpo.js (easylistchina+easylist.txt: 41927) -.04stream.com/podddpo\.js -# ||04stream.com/NEWAD11.php? (easylistchina+easylist.txt: 41926) -.04stream.com/NEWAD11\.php\? -# ||0-60mag.com/js/takeover-2.0/ (easylistchina+easylist.txt: 41925) -.0-60mag.com/js/takeover-2\.0/ -# |http://j.gs/omnigy*.swf (easylistchina+easylist.txt: 41922) -j.gs/omnigy.*\.swf -# ||wantlive.com/landing/$popup (easylistchina+easylist.txt: 41887) -.wantlive.com/landing/ -# ||videobox.com/tour/$popup (easylistchina+easylist.txt: 41882) -.videobox.com/tour/ -# ||videobox.com/?tid=$popup (easylistchina+easylist.txt: 41881) -.videobox.com/\?tid= -# ||upforit.com/ext.php$popup (easylistchina+easylist.txt: 41880) -.upforit.com/ext\.php -# ||topbucks.com/popunder/$popup (easylistchina+easylist.txt: 41876) -.topbucks.com/popunder/ -# ||textad.sexsearch.com^$popup (easylistchina+easylist.txt: 41875) -.textad.sexsearch.com -# ||streamate.com/landing/$popup (easylistchina+easylist.txt: 41873) -.streamate.com/landing/ -# ||sexier.com^*_popunder&$popup (easylistchina+easylist.txt: 41870) -.sexier.com/.*_popunder& -# ||sex.com/popunder/$popup (easylistchina+easylist.txt: 41868) -.sex.com/popunder/ -# ||seeme.com^*?aid=*&art=$popup (easylistchina+easylist.txt: 41867) -.seeme.com/.*\?aid=.*&art= -# ||seekbang.com/cs/rotator/$popup (easylistchina+easylist.txt: 41866) -.seekbang.com/cs/rotator/ -# ||redtube.com/bid/$popup (easylistchina+easylist.txt: 41864) -.redtube.com/bid/ -# ||pornslash.com/cbp.php$popup (easylistchina+easylist.txt: 41861) -.pornslash.com/cbp\.php -# ||pornoh.info^$popup (easylistchina+easylist.txt: 41860) -.pornoh.info -# ||porno-onlain.info/top.php$popup (easylistchina+easylist.txt: 41859) -.porno-onlain.info/top\.php -# ||pornhub.com^*&utm_campaign=*-pop|$popup (easylistchina+easylist.txt: 41857) -.pornhub.com/.*&utm_campaign=.*-pop$ -# ||pomnach.ru^$popup (easylistchina+easylist.txt: 41856) -.pomnach.ru -# ||myfreecams.com/?co_id=$popup (easylistchina+easylist.txt: 41854) -.myfreecams.com/\?co_id= -# ||meetlocals.com^*popunder$popup (easylistchina+easylist.txt: 41851) -.meetlocals.com/.*popunder -# ||livecams.com^$popup (easylistchina+easylist.txt: 41847) -.livecams.com -# ||judgeporn.com/video_pop.php?$popup (easylistchina+easylist.txt: 41844) -.judgeporn.com/video_pop\.php\? -# ||join.whitegfs.com^$popup (easylistchina+easylist.txt: 41843) -.join.whitegfs.com -# ||icgirls.com^$popup (easylistchina+easylist.txt: 41837) -.icgirls.com -# ||hazeher.com/t1/pps$popup (easylistchina+easylist.txt: 41835) -.hazeher.com/t1/pps -# ||get-a-fuck-tonight.com^$popup (easylistchina+easylist.txt: 41834) -.get-a-fuck-tonight.com -# ||fucktapes.org/fucktube.htm$popup (easylistchina+easylist.txt: 41833) -.fucktapes.org/fucktube\.htm -# ||fuckshow.org^*&adr=$popup (easylistchina+easylist.txt: 41832) -.fuckshow.org/.*&adr= -# ||fuckbookhookups.com/go/$popup (easylistchina+easylist.txt: 41830) -.fuckbookhookups.com/go/ -# ||fling.com/enter.php?$popup (easylistchina+easylist.txt: 41828) -.fling.com/enter\.php\? -# ||fantasti.cc/ajax/gw.php?$popup (easylistchina+easylist.txt: 41826) -.fantasti.cc/ajax/gw\.php\? -# ||extremefuse.com/out.php?$popup (easylistchina+easylist.txt: 41825) -.extremefuse.com/out\.php\? -# ||ext.affaire.com^$popup (easylistchina+easylist.txt: 41824) -.ext.affaire.com -# ||epornerlive.com/index.php?*=punder$popup (easylistchina+easylist.txt: 41822) -.epornerlive.com/index\.php\?.*=punder -# ||chaturbate.com/sitestats/openwindow/$popup (easylistchina+easylist.txt: 41819) -.chaturbate.com/sitestats/openwindow/ -# ||chaturbate.com/*/?join_overlay=$popup (easylistchina+easylist.txt: 41818) -.chaturbate.com/.*/\?join_overlay= -# ||candidvoyeurism.com/ads/$popup (easylistchina+easylist.txt: 41817) -.candidvoyeurism.com/ads/ -# ||camcity.com/rtr.php?aid=$popup (easylistchina+easylist.txt: 41816) -.camcity.com/rtr\.php\?aid= -# ||cam4.com/?$popup (easylistchina+easylist.txt: 41815) -.cam4.com/\? -# ||21sextury.com^$popup (easylistchina+easylist.txt: 41806) -.21sextury.com -# ||zubehost.com/*?zoneid= (easylistchina+easylist.txt: 41803) -.zubehost.com/.*\?zoneid= -# ||ztod.com/flash/wall*.swf (easylistchina+easylist.txt: 41801) -.ztod.com/flash/wall.*\.swf -# ||yplf.com/ram/files/sponsors/ (easylistchina+easylist.txt: 41800) -.yplf.com/ram/files/sponsors/ -# ||youfck.com^*/adawe.swf (easylistchina+easylist.txt: 41799) -.youfck.com/.*/adawe\.swf -# ||xtrasize.pl/banner/ (easylistchina+easylist.txt: 41796) -.xtrasize.pl/banner/ -# ||winkit.info/wink2.js (easylistchina+easylist.txt: 41792) -.winkit.info/wink2\.js -# ||widgetssec.cam-content.com^ (easylistchina+easylist.txt: 41791) -.widgetssec.cam-content.com -# ||widgets.comcontent.net^ (easylistchina+easylist.txt: 41790) -.widgets.comcontent.net -# ||wetandpuffy.com/galleries/banners/ (easylistchina+easylist.txt: 41789) -.wetandpuffy.com/galleries/banners/ -# ||webcams.com/misc/iframes_new/ (easylistchina+easylist.txt: 41786) -.webcams.com/misc/iframes_new/ -# ||webcams.com/js/im_popup.php? (easylistchina+easylist.txt: 41785) -.webcams.com/js/im_popup\.php\? -# ||wafflegirl.com/galleries/banner/ (easylistchina+easylist.txt: 41783) -.wafflegirl.com/galleries/banner/ -# ||vs3.com/_special/banners/ (easylistchina+easylist.txt: 41780) -.vs3.com/_special/banners/ -# ||vodconcepts.com^*/banners/ (easylistchina+easylist.txt: 41779) -.vodconcepts.com/.*/banners/ -# ||virtualhottie2.com/cash/tools/banners/ (easylistchina+easylist.txt: 41777) -.virtualhottie2.com/cash/tools/banners/ -# ||viorotica.com^*/banners/ (easylistchina+easylist.txt: 41776) -.viorotica.com/.*/banners/ -# ||vigrax.pl/banner/ (easylistchina+easylist.txt: 41775) -.vigrax.pl/banner/ -# ||uramov.info/wav/wavideo.html (easylistchina+easylist.txt: 41771) -.uramov.info/wav/wavideo\.html -# ||updatetube.com/updatetube_html/ (easylistchina+easylist.txt: 41769) -.updatetube.com/updatetube_html/ -# ||updatetube.com/iframes/ (easylistchina+easylist.txt: 41768) -.updatetube.com/iframes/ -# ||twiant.com/img/banners/ (easylistchina+easylist.txt: 41766) -.twiant.com/img/banners/ -# ||turbolovervidz.com/fling/ (easylistchina+easylist.txt: 41765) -.turbolovervidz.com/fling/ -# ||tubefck.com^*/adawe.swf (easylistchina+easylist.txt: 41763) -.tubefck.com/.*/adawe\.swf -# ||ts.videosz.com/iframes/ (easylistchina+easylist.txt: 41762) -.ts.videosz.com/iframes/ -# ||thumbs.vstreamcdn.com^*/slider.html (easylistchina+easylist.txt: 41754) -.thumbs.vstreamcdn.com/.*/slider\.html -# ||thrixxx.com/scripts/show_banner.php? (easylistchina+easylist.txt: 41752) -.thrixxx.com/scripts/show_banner\.php\? -# ||teendaporn.com/rk.js (easylistchina+easylist.txt: 41750) -.teendaporn.com/rk\.js -# ||swurve.com/affiliates/ (easylistchina+easylist.txt: 41748) -.swurve.com/affiliates/ -# ||sweet.game-rust.ru^ (easylistchina+easylist.txt: 41747) -.sweet.game-rust.ru -# ||surv.xbizmedia.com^ (easylistchina+easylist.txt: 41746) -.surv.xbizmedia.com -# ||streamray.com/images/cams/flash/cams_live.swf (easylistchina+easylist.txt: 41745) -.streamray.com/images/cams/flash/cams_live\.swf -# ||steadybucks.com^*/banners/ (easylistchina+easylist.txt: 41743) -.steadybucks.com/.*/banners/ -# ||sponsor4cash.de/script/ (easylistchina+easylist.txt: 41742) -.sponsor4cash.de/script/ -# ||spacash.com/tools/peel/ (easylistchina+easylist.txt: 41741) -.spacash.com/tools/peel/ -# ||spacash.com//v2bannerview.php? (easylistchina+easylist.txt: 41739) -# ||smyw.org/smyw_anima_1.gif (easylistchina+easylist.txt: 41737) -.smyw.org/smyw_anima_1\.gif -# ||simonscans.com/banner/ (easylistchina+easylist.txt: 41733) -.simonscans.com/banner/ -# ||shemalenova.com/smn/banners/ (easylistchina+easylist.txt: 41731) -.shemalenova.com/smn/banners/ -# ||shemale.asia/sma/banners/ (easylistchina+easylist.txt: 41730) -.shemale.asia/sma/banners/ -# ||share-image.com/borky/ (easylistchina+easylist.txt: 41728) -.share-image.com/borky/ -# ||sextubepromo.com/ubr/ (easylistchina+easylist.txt: 41725) -.sextubepromo.com/ubr/ -# ||sextronix.*.cdnaccess.com^ (easylistchina+easylist.txt: 41722) -.sextronix.*./.*\.cdnaccess\.com[^\w%.-] -.sextronix.*.cdnaccess.com -# ||sexgangsters.com/sg-banners/ (easylistchina+easylist.txt: 41721) -.sexgangsters.com/sg-banners/ -# ||scoreland.com/banner/ (easylistchina+easylist.txt: 41718) -.scoreland.com/banner/ -# ||sakuralive.com/dynamicbanner/ (easylistchina+easylist.txt: 41717) -.sakuralive.com/dynamicbanner/ -# ||saboom.com.pccdn.com^*/banner/ (easylistchina+easylist.txt: 41715) -.saboom.com.pccdn.com/.*/banner/ -# ||s1magnettvcom.maynemyltf.netdna-cdn.com^ (easylistchina+easylist.txt: 41713) -.s1magnettvcom.maynemyltf.netdna-cdn.com -# ||ruscams.com/promo/ (easylistchina+easylist.txt: 41711) -.ruscams.com/promo/ -# ||rotci.com/images/rotcibanner.png (easylistchina+easylist.txt: 41707) -.rotci.com/images/rotcibanner\.png -# ||rexcams.com/misc/iframes_new/ (easylistchina+easylist.txt: 41706) -.rexcams.com/misc/iframes_new/ -# ||red-tube.com/dynbanner.php? (easylistchina+easylist.txt: 41704) -.red-tube.com/dynbanner\.php\? -# ||realitykings.com/vbanners/ (easylistchina+easylist.txt: 41703) -.realitykings.com/vbanners/ -# ||rabbitporno.com/friends/ (easylistchina+easylist.txt: 41700) -.rabbitporno.com/friends/ -# ||putana.cz/banners/ (easylistchina+easylist.txt: 41699) -.putana.cz/banners/ -# ||propbn.com/bonga/ (easylistchina+easylist.txt: 41695) -.propbn.com/bonga/ -# ||privatehomeclips.com/privatehomeclips.php?t_sid= (easylistchina+easylist.txt: 41686) -.privatehomeclips.com/privatehomeclips\.php\?t_sid= -# ||private.com/banner/ (easylistchina+easylist.txt: 41685) -.private.com/banner/ -# ||privatamateure.com/promotion/ (easylistchina+easylist.txt: 41683) -.privatamateure.com/promotion/ -# ||pornstarnetwork.com^*_660x70.jpg (easylistchina+easylist.txt: 41677) -.pornstarnetwork.com/.*_660x70\.jpg -# ||porn2blog.com/wp-content/banners/ (easylistchina+easylist.txt: 41672) -.porn2blog.com/wp-content/banners/ -# ||pop6.com/javascript/im_box-*.js (easylistchina+easylist.txt: 41671) -.pop6.com/javascript/im_box-.*\.js -# ||plugin-x.com/rotaban/ (easylistchina+easylist.txt: 41666) -.plugin-x.com/rotaban/ -# ||paydir.com/images/bnr (easylistchina+easylist.txt: 41663) -.paydir.com/images/bnr -# ||partners.pornerbros.com^ (easylistchina+easylist.txt: 41660) -.partners.pornerbros.com -# ||orgasmtube.com/js/superP/ (easylistchina+easylist.txt: 41655) -.orgasmtube.com/js/superP/ -# ||nudemix.com/widget/ (easylistchina+easylist.txt: 41651) -.nudemix.com/widget/ -# ||netvideogirls.com/adultfyi.jpg (easylistchina+easylist.txt: 41648) -.netvideogirls.com/adultfyi\.jpg -# ||nakedshygirls.com/bannerimg/ (easylistchina+easylist.txt: 41645) -.nakedshygirls.com/bannerimg/ -# ||myexposedgirlfriendz.com/pop/popuprk.js (easylistchina+easylist.txt: 41640) -.myexposedgirlfriendz.com/pop/popuprk\.js -# ||myexposedgirlfriendz.com/pop/popuppp.js (easylistchina+easylist.txt: 41639) -.myexposedgirlfriendz.com/pop/popuppp\.js -# ||mrskin.com/affiliateframe/ (easylistchina+easylist.txt: 41633) -.mrskin.com/affiliateframe/ -# ||mofomedia.nl/pop-*.js (easylistchina+easylist.txt: 41631) -.mofomedia.nl/pop-.*\.js -# ||magazine-empire.com/images/pornstarad.jpg (easylistchina+easylist.txt: 41618) -.magazine-empire.com/images/pornstarad\.jpg -# ||longmint.com/lm/banners/ (easylistchina+easylist.txt: 41616) -.longmint.com/lm/banners/ -# ||llnwd.net^*/takeover_ (easylistchina+easylist.txt: 41615) -.llnwd.net/.*/takeover_ -# ||lb-69.com/pics/ (easylistchina+easylist.txt: 41611) -.lb-69.com/pics/ -# ||ladyboygoo.com/lbg/banners/ (easylistchina+easylist.txt: 41608) -.ladyboygoo.com/lbg/banners/ -# ||lacyx.com/images/banners/ (easylistchina+easylist.txt: 41607) -.lacyx.com/images/banners/ -# ||kuntfutube.com/bgbb.gif (easylistchina+easylist.txt: 41606) -.kuntfutube.com/bgbb\.gif -# ||kau.li/yad.js (easylistchina+easylist.txt: 41604) -.kau.li/yad\.js -# ||interracialbangblog.info^*-ban.png (easylistchina+easylist.txt: 41599) -.interracialbangblog.info/.*-ban\.png -# ||interracialbangblog.info/banner.jpg (easylistchina+easylist.txt: 41598) -.interracialbangblog.info/banner\.jpg -# ||imageteam.org/upload/big/2014/06/22/53a7181b378cb.png (easylistchina+easylist.txt: 41597) -.imageteam.org/upload/big/2014/06/22/53a7181b378cb\.png -# ||ihookup.com/configcreatives/ (easylistchina+easylist.txt: 41593) -.ihookup.com/configcreatives/ -# ||hotmovies.com/custom_videos.php? (easylistchina+easylist.txt: 41588) -.hotmovies.com/custom_videos\.php\? -# ||hotkinkyjo.xxx/resseler/banners/ (easylistchina+easylist.txt: 41587) -.hotkinkyjo.xxx/resseler/banners/ -# ||hotcaracum.com/banner/ (easylistchina+easylist.txt: 41586) -.hotcaracum.com/banner/ -# ||hostave3.net/hvw/banners/ (easylistchina+easylist.txt: 41583) -.hostave3.net/hvw/banners/ -# ||homoactive.tv/banner/ (easylistchina+easylist.txt: 41580) -.homoactive.tv/banner/ -# ||hodun.ru/files/promo/ (easylistchina+easylist.txt: 41579) -.hodun.ru/files/promo/ -# ||hentaikey.com/images/banners/ (easylistchina+easylist.txt: 41577) -.hentaikey.com/images/banners/ -# ||hentaijunkie.com^*/banners/ (easylistchina+easylist.txt: 41576) -.hentaijunkie.com/.*/banners/ -# ||hdpornphotos.com/images/banner_ (easylistchina+easylist.txt: 41575) -.hdpornphotos.com/images/banner_ -# ||hdpornphotos.com/images/728x180_ (easylistchina+easylist.txt: 41574) -.hdpornphotos.com/images/728x180_ -# ||hardbritlads.com/banner/ (easylistchina+easylist.txt: 41572) -.hardbritlads.com/banner/ -# ||girls-home-alone.com/dating/ (easylistchina+easylist.txt: 41568) -.girls-home-alone.com/dating/ -# ||gfrevenge.com/vbanners/ (easylistchina+easylist.txt: 41567) -.gfrevenge.com/vbanners/ -# ||geobanner.socialflirt.com^ (easylistchina+easylist.txt: 41566) -.geobanner.socialflirt.com -# ||geobanner.alt.com^ (easylistchina+easylist.txt: 41562) -.geobanner.alt.com -# ||geobanner.adultfriendfinder.com^ (easylistchina+easylist.txt: 41561) -.geobanner.adultfriendfinder.com -# ||geo.frtya.com^ (easylistchina+easylist.txt: 41560) -.geo.frtya.com -# ||geo.cliphunter.com^ (easylistchina+easylist.txt: 41559) -.geo.cliphunter.com -# ||gammasites.com/pornication/pc_browsable.php? (easylistchina+easylist.txt: 41556) -.gammasites.com/pornication/pc_browsable\.php\? -# ||freshnews.su/get_tizers.php? (easylistchina+easylist.txt: 41550) -.freshnews.su/get_tizers\.php\? -# ||freexxxvideoclip.aebn.net^ (easylistchina+easylist.txt: 41549) -.freexxxvideoclip.aebn.net -# ||freeporn.hu/banners/ (easylistchina+easylist.txt: 41548) -.freeporn.hu/banners/ -# ||fleshlight.com/images/peel/ (easylistchina+easylist.txt: 41545) -.fleshlight.com/images/peel/ -# ||fleshlight.com/images/banners/ (easylistchina+easylist.txt: 41544) -.fleshlight.com/images/banners/ -# ||firestormmedia.tv^*?affid= (easylistchina+easylist.txt: 41543) -.firestormmedia.tv/.*\?affid= -# ||fgn.me^*/skins/ (easylistchina+easylist.txt: 41542) -.fgn.me/.*/skins/ -# ||ff.nsg.org.ua^ (easylistchina+easylist.txt: 41541) -.ff.nsg.org.ua -# ||feeds.videosz.com^ (easylistchina+easylist.txt: 41539) -.feeds.videosz.com -# ||fckya.com/lj.js (easylistchina+easylist.txt: 41538) -.fckya.com/lj\.js -# ||fastcdn.me/mlr/ (easylistchina+easylist.txt: 41536) -.fastcdn.me/mlr/ -# ||fastcdn.me/js/snpp/ (easylistchina+easylist.txt: 41535) -.fastcdn.me/js/snpp/ -# ||f5porn.com/porn.gif (easylistchina+easylist.txt: 41533) -.f5porn.com/porn\.gif -# ||extremeladyboys.com/elb/banners/ (easylistchina+easylist.txt: 41532) -.extremeladyboys.com/elb/banners/ -# ||eurolive.com/index.php?module=public_eurolive_onlinetool& (easylistchina+easylist.txt: 41528) -.eurolive.com/index\.php\?module=public_eurolive_onlinetool& -# ||eurolive.com/?module=public_eurolive_onlinehostess& (easylistchina+easylist.txt: 41527) -.eurolive.com/\?module=public_eurolive_onlinehostess& -# ||escortbook.com/banner_ (easylistchina+easylist.txt: 41525) -.escortbook.com/banner_ -# ||eliterotica.com/images/banners/ (easylistchina+easylist.txt: 41523) -.eliterotica.com/images/banners/ -# ||downloadsmais.com/imagens/download-direto.gif (easylistchina+easylist.txt: 41520) -.downloadsmais.com/imagens/download-direto\.gif -# ||devilgirls.co/pop.js (easylistchina+easylist.txt: 41518) -.devilgirls.co/pop\.js -# ||devilgirls.co/images/devil.gif (easylistchina+easylist.txt: 41517) -.devilgirls.co/images/devil\.gif -# ||desk.cmix.org^ (easylistchina+easylist.txt: 41516) -.desk.cmix.org -# ||ddstatic.com^*/banners/ (easylistchina+easylist.txt: 41515) -.ddstatic.com/.*/banners/ -# ||ddfcash.com/promo/banners/ (easylistchina+easylist.txt: 41514) -.ddfcash.com/promo/banners/ -# ||dailyvideo.securejoin.com^ (easylistchina+easylist.txt: 41510) -.dailyvideo.securejoin.com -# ||crocogirls.com/croco-new.js (easylistchina+easylist.txt: 41507) -.crocogirls.com/croco-new\.js -# ||creamgoodies.com/potd/ (easylistchina+easylist.txt: 41506) -.creamgoodies.com/potd/ -# ||cpm.amateurcommunity.com^ (easylistchina+easylist.txt: 41505) -.cpm.amateurcommunity.com -# ||cmix.org/teasers/? (easylistchina+easylist.txt: 41499) -.cmix.org/teasers/\? -# ||closepics.com/media/banners/ (easylistchina+easylist.txt: 41498) -.closepics.com/media/banners/ -# ||chaturbate.com/creative/ (easylistchina+easylist.txt: 41493) -.chaturbate.com/creative/ -# ||chaturbate.com/affiliates/ (easylistchina+easylist.txt: 41492) -.chaturbate.com/affiliates/ -# ||cdn.epom.com^*/940_250.gif (easylistchina+easylist.txt: 41489) -.cdn.epom.com/.*/940_250\.gif -# ||brazzers.com/ads/ (easylistchina+easylist.txt: 41478) -.brazzers.com/ads/ -# ||brasileirinhas.com.br/banners/ (easylistchina+easylist.txt: 41477) -.brasileirinhas.com.br/banners/ -# ||br.realitykings.com^ (easylistchina+easylist.txt: 41476) -.br.realitykings.com -# ||br.fling.com^ (easylistchina+easylist.txt: 41475) -.br.fling.com -# ||br.blackfling.com^ (easylistchina+easylist.txt: 41474) -.br.blackfling.com -# ||bongacash.com/promo.php (easylistchina+easylist.txt: 41472) -.bongacash.com/promo\.php -# ||bongacash.com/dynamic_banner/ (easylistchina+easylist.txt: 41471) -.bongacash.com/dynamic_banner/ -# ||blogspot.com^*/ad.jpg (easylistchina+easylist.txt: 41470) -.blogspot.com/.*/ad\.jpg -# ||blackbrazilianshemales.com/bbs/banners/ (easylistchina+easylist.txt: 41469) -.blackbrazilianshemales.com/bbs/banners/ -# ||blaaaa12.googlecode.com^ (easylistchina+easylist.txt: 41468) -.blaaaa12.googlecode.com -# ||bigmovies.com/images/banners/ (easylistchina+easylist.txt: 41467) -.bigmovies.com/images/banners/ -# ||bannershotlink.perfectgonzo.com^ (easylistchina+easylist.txt: 41464) -.bannershotlink.perfectgonzo.com -# ||avatraffic.com/b/ (easylistchina+easylist.txt: 41440) -.avatraffic.com/b/ -# ||assinclusive.com/linkstxt2.html (easylistchina+easylist.txt: 41438) -.assinclusive.com/linkstxt2\.html -# ||assinclusive.com/cyonix.html (easylistchina+easylist.txt: 41437) -.assinclusive.com/cyonix\.html -# ||asktiava.com/promotion/ (easylistchina+easylist.txt: 41436) -.asktiava.com/promotion/ -# ||asianbutterflies.com/potd/ (easylistchina+easylist.txt: 41435) -.asianbutterflies.com/potd/ -# ||ard.sweetdiscreet.com^ (easylistchina+easylist.txt: 41434) -.ard.sweetdiscreet.com -# ||animalsexfun.com/baner/ (easylistchina+easylist.txt: 41433) -.animalsexfun.com/baner/ -# ||ambya.com/potdc/ (easylistchina+easylist.txt: 41432) -.ambya.com/potdc/ -# ||allanalpass.com/visitScript/ (easylistchina+easylist.txt: 41425) -.allanalpass.com/visitScript/ -# ||affiliates.thrixxx.com^ (easylistchina+easylist.txt: 41424) -.affiliates.thrixxx.com -# ||aebn.net/banners/ (easylistchina+easylist.txt: 41414) -.aebn.net/banners/ -# ||adultporntubemovies.com/images/banners/ (easylistchina+easylist.txt: 41413) -.adultporntubemovies.com/images/banners/ -# ||adultfax.com/service/vsab.php? (easylistchina+easylist.txt: 41408) -.adultfax.com/service/vsab\.php\? -# ||ads.videosz.com^ (easylistchina+easylist.txt: 41403) -.ads.videosz.com -# ||ad.iloveinterracial.com^ (easylistchina+easylist.txt: 41399) -.ad.iloveinterracial.com -# ||ad.duga.jp^ (easylistchina+easylist.txt: 41397) -.ad.duga.jp -# ||91.83.237.41^*/banners/ (easylistchina+easylist.txt: 41395) -.91.83.237.41/.*/banners/ -# ||79.120.183.166^*/banners/ (easylistchina+easylist.txt: 41392) -.79.120.183.166/.*/banners/ -# ||213.174.140.76^*/js/msn.js (easylistchina+easylist.txt: 41390) -.213.174.140.76/.*/js/msn\.js -# ||213.174.140.76^*/ads/ (easylistchina+easylist.txt: 41388) -.213.174.140.76/.*/ads/ -# ||213.174.140.76/js/showbanner4.js (easylistchina+easylist.txt: 41387) -.213.174.140.76/js/showbanner4\.js -# ||213.174.130.9/banners/ (easylistchina+easylist.txt: 41386) -.213.174.130.9/banners/ -# ||213.174.130.8/banners/ (easylistchina+easylist.txt: 41385) -.213.174.130.8/banners/ -# ||213.174.130.10/banners/ (easylistchina+easylist.txt: 41384) -.213.174.130.10/banners/ -# ||204.140.25.247/ads/ (easylistchina+easylist.txt: 41383) -.204.140.25.247/ads/ -# ||193.34.134.74^*/banners/ (easylistchina+easylist.txt: 41382) -.193.34.134.74/.*/banners/ -# ||193.34.134.18^*/banners/ (easylistchina+easylist.txt: 41381) -.193.34.134.18/.*/banners/ -# ||wptpoker.com^$popup (easylistchina+easylist.txt: 41377) -.wptpoker.com -# ||weeklyprizewinner.com-net.info^$popup (easylistchina+easylist.txt: 41373) -.weeklyprizewinner.com-net.info -# ||usenet.nl^$popup (easylistchina+easylist.txt: 41369) -.usenet.nl -# ||urlcash.net/random*.php$popup (easylistchina+easylist.txt: 41367) -.urlcash.net/random.*\.php -# ||uploaded.net/ref/$popup (easylistchina+easylist.txt: 41366) -.uploaded.net/ref/ -# ||upbcd.info/vuze/$popup (easylistchina+easylist.txt: 41365) -.upbcd.info/vuze/ -# ||ul.to/ref/$popup (easylistchina+easylist.txt: 41364) -.ul.to/ref/ -# ||theseforums.com^*/?ref=$popup (easylistchina+easylist.txt: 41356) -.theseforums.com/.*/\?ref= -# ||stargames.com/bridge.asp?idr=$popup (easylistchina+easylist.txt: 41352) -.stargames.com/bridge\.asp\?idr= -# ||softingo.com/clp/$popup (easylistchina+easylist.txt: 41350) -.softingo.com/clp/ -# ||settlecruise.org^$popup (easylistchina+easylist.txt: 41348) -.settlecruise.org -# ||red-tube.com/popunder/$popup (easylistchina+easylist.txt: 41342) -.red-tube.com/popunder/ -# ||rackcorp.com^$popup (easylistchina+easylist.txt: 41340) -.rackcorp.com -# ||pub.ezanga.com/rv2.php?$popup (easylistchina+easylist.txt: 41339) -.pub.ezanga.com/rv2\.php\? -# ||priceinfo.comuv.com^$popup (easylistchina+easylist.txt: 41336) -.priceinfo.comuv.com -# ||platinumdown.com^$popup (easylistchina+easylist.txt: 41334) -.platinumdown.com -# ||planet49.com/cgi-bin/wingame.pl?$popup (easylistchina+easylist.txt: 41333) -.planet49.com/cgi-bin/wingame\.pl\? -# ||noowmedia.com^$popup (easylistchina+easylist.txt: 41328) -.noowmedia.com -# ||mypromocenter.com^$popup (easylistchina+easylist.txt: 41327) -.mypromocenter.com -# ||makemoneyonline.2yu.in^$popup (easylistchina+easylist.txt: 41319) -.makemoneyonline.2yu.in -# ||lumosity.com/landing_pages/$popup (easylistchina+easylist.txt: 41317) -.lumosity.com/landing_pages/ -# ||lovepoker.de^*/?pid=$popup (easylistchina+easylist.txt: 41311) -.lovepoker.de/.*/\?pid= -# ||liutilities.com^*/affiliate/$popup (easylistchina+easylist.txt: 41309) -.liutilities.com/.*/affiliate/ -# ||hyperlinksecure.com/go/$popup (easylistchina+easylist.txt: 41306) -.hyperlinksecure.com/go/ -# ||hyperlinksecure.com/back?token=$popup (easylistchina+easylist.txt: 41305) -.hyperlinksecure.com/back\?token= -# ||hdvidcodecs.com^$popup (easylistchina+easylist.txt: 41300) -.hdvidcodecs.com -# ||hdvid-codec.com^$popup (easylistchina+easylist.txt: 41299) -.hdvid-codec.com -# ||fwmrm.net/ad/$popup (easylistchina+easylist.txt: 41296) -.fwmrm.net/ad/ -# ||fsoft4down.com^$popup (easylistchina+easylist.txt: 41293) -.fsoft4down.com -# ||free-rewards.com-s.tv^$popup (easylistchina+easylist.txt: 41292) -.free-rewards.com-s.tv -# ||flashplayer-updates.com^$popup (easylistchina+easylist.txt: 41290) -.flashplayer-updates.com -# ||firstload.de^$popup (easylistchina+easylist.txt: 41289) -.firstload.de -# ||firstload.com^$popup (easylistchina+easylist.txt: 41288) -.firstload.com -# ||fastclick.net^$popup (easylistchina+easylist.txt: 41287) -.fastclick.net -# ||evanetwork.com^$popup (easylistchina+easylist.txt: 41285) -.evanetwork.com -# ||eurogrand.com^$popup (easylistchina+easylist.txt: 41283) -.eurogrand.com -# ||eroticmix.blogspot.$popup (easylistchina+easylist.txt: 41280) -.eroticmix.blogspot.*. -# ||d1110e4.se^$popup (easylistchina+easylist.txt: 41278) -.d1110e4.se -# ||coolguruji.com/l.php?$popup (easylistchina+easylist.txt: 41276) -.coolguruji.com/l\.php\? -# ||chatulfetelor.net/$popup (easylistchina+easylist.txt: 41272) -.chatulfetelor.net -# ||chatlivejasmin.net^$popup (easylistchina+easylist.txt: 41271) -.chatlivejasmin.net -# ||casinoadviser.net^$popup (easylistchina+easylist.txt: 41268) -.casinoadviser.net -# ||bet365.com^*affiliate=$popup (easylistchina+easylist.txt: 41263) -.bet365.com/.*affiliate= -# ||adrotator.se^$popup (easylistchina+easylist.txt: 41254) -.adrotator.se -# ||5.39.67.191/promo.php?$popup (easylistchina+easylist.txt: 41250) -.5.39.67.191/promo\.php\? -# ||4utro.ru^$popup (easylistchina+easylist.txt: 41249) -.4utro.ru -# ||d1nmk7iw7hajjn.cloudfront.net^ (easylistchina+easylist.txt: 41247) -.d1nmk7iw7hajjn.cloudfront.net -# ||iadc.qwapi.com^ (easylistchina+easylist.txt: 41244) -.iadc.qwapi.com -# ||zip2save.com/widget.php? (easylistchina+easylist.txt: 41240) -.zip2save.com/widget\.php\? -# ||ziffstatic.com/jst/zdvtools. (easylistchina+easylist.txt: 41239) -.ziffstatic.com/jst/zdvtools\. -# ||ziffstatic.com/jst/zdsticky. (easylistchina+easylist.txt: 41238) -.ziffstatic.com/jst/zdsticky\. -# ||ziffprod.com/CSE/BestPrice? (easylistchina+easylist.txt: 41237) -.ziffprod.com/CSE/BestPrice\? -# ||ziffdavisenterprise.com/contextclicks/ (easylistchina+easylist.txt: 41236) -.ziffdavisenterprise.com/contextclicks/ -# ||zeusfiles.com/promo/ (easylistchina+easylist.txt: 41235) -.zeusfiles.com/promo/ -# ||zeus.qj.net^ (easylistchina+easylist.txt: 41234) -.zeus.qj.net -# ||zapads.zapak.com^ (easylistchina+easylist.txt: 41230) -.zapads.zapak.com -# ||you-cubez.com/images/banners/ (easylistchina+easylist.txt: 41228) -.you-cubez.com/images/banners/ -# ||ynet.co.il^*/ynetbanneradmin/ (easylistchina+easylist.txt: 41225) -.ynet.co.il/.*/ynetbanneradmin/ -# ||yimg.com^*/sponsored.js (easylistchina+easylist.txt: 41223) -.yimg.com/.*/sponsored\.js -# ||yimg.com^*/quickplay_maxwellhouse.png (easylistchina+easylist.txt: 41222) -.yimg.com/.*/quickplay_maxwellhouse\.png -# ||yimg.com/gs/apex/mediastore/ (easylistchina+easylist.txt: 41220) -.yimg.com/gs/apex/mediastore/ -# ||yeas.yahoo.co.jp^ (easylistchina+easylist.txt: 41218) -.yeas.yahoo.co.jp -# ||yb.torchbrowser.com^ (easylistchina+easylist.txt: 41217) -.yb.torchbrowser.com -# ||yahoo.net^*/ads/ (easylistchina+easylist.txt: 41216) -.yahoo.net/.*/ads/ -# ||yachting.org^*/banner/ (easylistchina+easylist.txt: 41215) -.yachting.org/.*/banner/ -# ||xproxyhost.com/images/banners/ (easylistchina+easylist.txt: 41214) -.xproxyhost.com/images/banners/ -# ||xingcloud.com^*/uid_ (easylistchina+easylist.txt: 41212) -.xingcloud.com/.*/uid_ -# ||xigen.co.uk^*/Affiliate/ (easylistchina+easylist.txt: 41211) -.xigen.co.uk/.*/Affiliate/ -# ||x3cms.com/ads/ (easylistchina+easylist.txt: 41208) -.x3cms.com/ads/ -# ||wupload.com/images/banners/ (easylistchina+easylist.txt: 41206) -.wupload.com/images/banners/ -# ||wtprn.com/sponsors/ (easylistchina+easylist.txt: 41205) -.wtprn.com/sponsors/ -# ||wtpn.twenga.de^ (easylistchina+easylist.txt: 41203) -.wtpn.twenga.de -# ||wtpn.twenga.co.uk^ (easylistchina+easylist.txt: 41202) -.wtpn.twenga.co.uk -# ||worldofjudaica.com/static/show/external/ (easylistchina+easylist.txt: 41197) -.worldofjudaica.com/static/show/external/ -# ||worldofjudaica.com/products/dynamic_banner/ (easylistchina+easylist.txt: 41196) -.worldofjudaica.com/products/dynamic_banner/ -# ||worldnow.com/images/incoming/RTJ/rtj201303fall.jpg (easylistchina+easylist.txt: 41195) -.worldnow.com/images/incoming/RTJ/rtj201303fall\.jpg -# ||worldcdn.net^*/banners/ (easylistchina+easylist.txt: 41194) -.worldcdn.net/.*/banners/ -# ||wonderlabs.com/affiliate_pro/banners/ (easylistchina+easylist.txt: 41193) -.wonderlabs.com/affiliate_pro/banners/ -# ||wm.co.za/wmjs.php? (easylistchina+easylist.txt: 41192) -.wm.co.za/wmjs\.php\? -# ||wm.co.za/24com.php? (easylistchina+easylist.txt: 41191) -.wm.co.za/24com\.php\? -# ||winsms.co.za/banner/ (easylistchina+easylist.txt: 41189) -.winsms.co.za/banner/ -# ||winpalace.com/?affid= (easylistchina+easylist.txt: 41188) -.winpalace.com/\?affid= -# ||wildamaginations.com/mdm/banner/ (easylistchina+easylist.txt: 41187) -.wildamaginations.com/mdm/banner/ -# ||widgets.realestate.com.au^ (easylistchina+easylist.txt: 41185) -.widgets.realestate.com.au -# ||widget.solarquotes.com.au^ (easylistchina+easylist.txt: 41176) -.widget.solarquotes.com.au -# ||widget.shopstyle.com.au^ (easylistchina+easylist.txt: 41174) -.widget.shopstyle.com.au -# ||widget.searchschoolsnetwork.com^ (easylistchina+easylist.txt: 41173) -.widget.searchschoolsnetwork.com -# ||widget.raaze.com^ (easylistchina+easylist.txt: 41171) -.widget.raaze.com -# ||widget.kelkoo.com^ (easylistchina+easylist.txt: 41170) -.widget.kelkoo.com -# ||widget.crowdignite.com^ (easylistchina+easylist.txt: 41167) -.widget.crowdignite.com -# ||widgeo.net/popup.js (easylistchina+easylist.txt: 41165) -.widgeo.net/popup\.js -# ||whistleout.s3.amazonaws.com^ (easylistchina+easylist.txt: 41164) -.whistleout.s3.amazonaws.com -# ||website.ws^*/banners/ (easylistchina+easylist.txt: 41163) -.website.ws/.*/banners/ -# ||webmasterrock.com/cpxt_pab (easylistchina+easylist.txt: 41162) -.webmasterrock.com/cpxt_pab -# ||web-jp.ad-v.jp^ (easylistchina+easylist.txt: 41159) -.web-jp.ad-v.jp -# ||weatherthreat.com^*/app_add.png (easylistchina+easylist.txt: 41158) -.weatherthreat.com/.*/app_add\.png -# ||watch-free-movie-online.net/adds- (easylistchina+easylist.txt: 41153) -.watch-free-movie-online.net/adds- -# ||washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie.html (easylistchina+easylist.txt: 41152) -.washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie\.html -# ||warrantydirect.co.uk/widgets/ (easylistchina+easylist.txt: 41151) -.warrantydirect.co.uk/widgets/ -# ||warezhaven.org/warezhavenbann.jpg (easylistchina+easylist.txt: 41150) -.warezhaven.org/warezhavenbann\.jpg -# ||walmartimages.com^*/HealthPartner_ (easylistchina+easylist.txt: 41149) -.walmartimages.com/.*/HealthPartner_ -# ||wagital.com/Wagital-Ads.html (easylistchina+easylist.txt: 41148) -.wagital.com/Wagital-Ads\.html -# ||vxite.com/banner/ (easylistchina+easylist.txt: 41146) -.vxite.com/banner/ -# ||vrvm.com/t? (easylistchina+easylist.txt: 41144) -.vrvm.com/t\? -# ||vpnxs.nl/images/vpnxs_banner (easylistchina+easylist.txt: 41143) -.vpnxs.nl/images/vpnxs_banner -# ||vpn4all.com^*/banner/ (easylistchina+easylist.txt: 41141) -.vpn4all.com/.*/banner/ -# ||vittgam.net/images/b/ (easylistchina+easylist.txt: 41139) -.vittgam.net/images/b/ -# ||virtuaguyhd.com/ref.php? (easylistchina+easylist.txt: 41135) -.virtuaguyhd.com/ref\.php\? -# ||virtuagirl.com/ref.php? (easylistchina+easylist.txt: 41134) -.virtuagirl.com/ref\.php\? -# ||vidyoda.com/fambaa/chnls/ADSgmts.ashx? (easylistchina+easylist.txt: 41128) -.vidyoda.com/fambaa/chnls/ADSgmts\.ashx\? -# ||vidible.tv/prod/tags/ (easylistchina+easylist.txt: 41127) -.vidible.tv/prod/tags/ -# ||vidible.tv/placement/vast/ (easylistchina+easylist.txt: 41126) -.vidible.tv/placement/vast/ -# ||videoweed.es/js/aff.js (easylistchina+easylist.txt: 41124) -.videoweed.es/js/aff\.js -# ||viagogo.co.uk/feeds/widget.ashx? (easylistchina+easylist.txt: 41123) -.viagogo.co.uk/feeds/widget\.ashx\? -# ||veospot.com^*.html (easylistchina+easylist.txt: 41122) -.veospot.com/.*\.html -# ||vendor1.fitschigogerl.com^ (easylistchina+easylist.txt: 41121) -.vendor1.fitschigogerl.com -# ||vcnewsdaily.com/images/vcnews_right_banner.gif (easylistchina+easylist.txt: 41119) -.vcnewsdaily.com/images/vcnews_right_banner\.gif -# ||vast.videe.tv/vast-proxy/ (easylistchina+easylist.txt: 41118) -.vast.videe.tv/vast-proxy/ -# ||ussearch.com/preview/banner/ (easylistchina+easylist.txt: 41116) -.ussearch.com/preview/banner/ -# ||usfine.com/images/sty_img/usfine.gif (easylistchina+easylist.txt: 41115) -.usfine.com/images/sty_img/usfine\.gif -# ||usersfiles.com/images/72890UF.png (easylistchina+easylist.txt: 41114) -.usersfiles.com/images/72890UF\.png -# ||usenetbucket.com^*-banner/ (easylistchina+easylist.txt: 41113) -.usenetbucket.com/.*-banner/ -# ||urtig.net/scripts/js3caf.js (easylistchina+easylist.txt: 41111) -.urtig.net/scripts/js3caf\.js -# ||uploadstation.com/images/banners/ (easylistchina+easylist.txt: 41110) -.uploadstation.com/images/banners/ -# ||uploaded.to/js/layer.js (easylistchina+easylist.txt: 41109) -.uploaded.to/js/layer\.js -# ||upload2.com/upload2.html (easylistchina+easylist.txt: 41106) -.upload2.com/upload2\.html -# ||united-domains.de^*/parking/ (easylistchina+easylist.txt: 41103) -.united-domains.de/.*/parking/ -# ||united-domains.de/parking/ (easylistchina+easylist.txt: 41102) -.united-domains.de/parking/ -# ||uniblue.com^*/affiliates/ (easylistchina+easylist.txt: 41101) -.uniblue.com/.*/affiliates/ -# ||ultimatewebtraffic.info/images/fbautocash (easylistchina+easylist.txt: 41100) -.ultimatewebtraffic.info/images/fbautocash -# ||ukrd.com/images/icons/itunes.png (easylistchina+easylist.txt: 41099) -.ukrd.com/images/icons/itunes\.png -# ||ukrd.com/images/icons/amazon.png (easylistchina+easylist.txt: 41098) -.ukrd.com/images/icons/amazon\.png -# ||ukrd.com/image/*-160x160.png (easylistchina+easylist.txt: 41097) -.ukrd.com/image/.*-160x160\.png -# ||ukrd.com/image/*-160x133.jpg (easylistchina+easylist.txt: 41096) -.ukrd.com/image/.*-160x133\.jpg -# ||ukcast.tv/adds/ (easylistchina+easylist.txt: 41095) -.ukcast.tv/adds/ -# ||u-loader.com/image/hotspot_ (easylistchina+easylist.txt: 41093) -.u-loader.com/image/hotspot_ -# ||twivert.com/external/banner234x60. (easylistchina+easylist.txt: 41092) -.twivert.com/external/banner234x60\. -# ||twinplan.com^ (easylistchina+easylist.txt: 41091) -.twinplan.com -# ||turner.com^*/promos/ (easylistchina+easylist.txt: 41090) -.turner.com/.*/promos/ -# ||turbotrafficsystem.com^*/banners/ (easylistchina+easylist.txt: 41089) -.turbotrafficsystem.com/.*/banners/ -# ||tritondigital.com/ltflash.php? (easylistchina+easylist.txt: 41083) -.tritondigital.com/ltflash\.php\? -# ||tritondigital.com/lt?sid*&hasads= (easylistchina+easylist.txt: 41082) -.tritondigital.com/lt\?sid.*&hasads= -# ||tribwgnam.files.wordpress.com^*reskin2. (easylistchina+easylist.txt: 41080) -.tribwgnam.files.wordpress.com/.*reskin2\. -# ||tribktla.files.wordpress.com/*-639x125-sponsorship.jpg? (easylistchina+easylist.txt: 41079) -.tribktla.files.wordpress.com/.*-639x125-sponsorship\.jpg\? -# ||trialfunder.com/banner/ (easylistchina+easylist.txt: 41077) -.trialfunder.com/banner/ -# ||trhnt.com/sx.tr.js (easylistchina+easylist.txt: 41076) -.trhnt.com/sx\.tr\.js -# ||tremormedia.com^*_preroll_ (easylistchina+easylist.txt: 41075) -.tremormedia.com/.*_preroll_ -# ||tremormedia.com^*/tpacudeoplugin46.swf (easylistchina+easylist.txt: 41074) -.tremormedia.com/.*/tpacudeoplugin46\.swf -# ||tremormedia.com/embed/js/*_ads.js (easylistchina+easylist.txt: 41073) -.tremormedia.com/embed/js/.*_ads\.js -# ||treatme.co.nz/Affiliates/ (easylistchina+easylist.txt: 41072) -.treatme.co.nz/Affiliates/ -# ||tradeboss.com/1/banners/ (easylistchina+easylist.txt: 41069) -.tradeboss.com/1/banners/ -# ||track.bcvcmedia.com^ (easylistchina+easylist.txt: 41068) -.track.bcvcmedia.com -# ||toysrus.com/graphics/promo/ (easylistchina+easylist.txt: 41066) -.toysrus.com/graphics/promo/ -# ||townsquareblogs.com^*=sponsor& (easylistchina+easylist.txt: 41065) -.townsquareblogs.com/.*=sponsor& -# ||townnews.com^*/upickem-deals.js? (easylistchina+easylist.txt: 41064) -.townnews.com/.*/upickem-deals\.js\? -# ||townnews.com^*/dealwidget.css? (easylistchina+easylist.txt: 41063) -.townnews.com/.*/dealwidget\.css\? -# ||torguard.net/images/aff/ (easylistchina+easylist.txt: 41061) -.torguard.net/images/aff/ -# ||toptenreviews.com/r/c/ (easylistchina+easylist.txt: 41059) -.toptenreviews.com/r/c/ -# ||topmedia.com/external/ (easylistchina+easylist.txt: 41057) -.topmedia.com/external/ -# ||top5result.com/promo/ (easylistchina+easylist.txt: 41055) -.top5result.com/promo/ -# ||tonefuse.s3.amazonaws.com/clientjs/ (easylistchina+easylist.txt: 41054) -.tonefuse.s3.amazonaws.com/clientjs/ -# ||tmz.vo.llnwd.net^*_rightrail_200x987.swf (easylistchina+easylist.txt: 41052) -.tmz.vo.llnwd.net/.*_rightrail_200x987\.swf -# ||tmbattle.com/images/promo_ (easylistchina+easylist.txt: 41051) -.tmbattle.com/images/promo_ -# ||timesinternet.in/ad/ (easylistchina+easylist.txt: 41046) -.timesinternet.in/ad/ -# ||tigerdirect.com^*/affiliate_ (easylistchina+easylist.txt: 41045) -.tigerdirect.com/.*/affiliate_ -# ||ticketmaster.com/promotionalcontent/ (easylistchina+easylist.txt: 41042) -.ticketmaster.com/promotionalcontent/ -# ||ticketkai.com/banner/ (easylistchina+easylist.txt: 41041) -.ticketkai.com/banner/ -# ||ti.tradetracker.net^ (easylistchina+easylist.txt: 41040) -.ti.tradetracker.net -# ||thetechnologyblog.net^*/bp_internet/ (easylistchina+easylist.txt: 41038) -.thetechnologyblog.net/.*/bp_internet/ -# ||theseforums.com/visitScript/ (easylistchina+easylist.txt: 41036) -.theseforums.com/visitScript/ -# ||theseblogs.com/visitScript/ (easylistchina+easylist.txt: 41035) -.theseblogs.com/visitScript/ -# ||thereadystore.com/affiliate/ (easylistchina+easylist.txt: 41034) -.thereadystore.com/affiliate/ -# ||themis-media.com^*/sponsorships/ (easylistchina+easylist.txt: 41033) -.themis-media.com/.*/sponsorships/ -# ||themes420.com/bnrsbtns/ (easylistchina+easylist.txt: 41031) -.themes420.com/bnrsbtns/ -# ||thatfreething.com/images/banners/ (easylistchina+easylist.txt: 41028) -.thatfreething.com/images/banners/ -# ||thaiforlove.com/userfiles/affb- (easylistchina+easylist.txt: 41027) -.thaiforlove.com/userfiles/affb- -# ||textlinks.com/images/banners/ (easylistchina+easylist.txt: 41026) -.textlinks.com/images/banners/ -# ||tedswoodworking.com/images/banners/ (easylistchina+easylist.txt: 41025) -.tedswoodworking.com/images/banners/ -# ||tcmwebcorp.com/dtm/tc_global_dtm_delivery.js (easylistchina+easylist.txt: 41022) -.tcmwebcorp.com/dtm/tc_global_dtm_delivery\.js -# ||tap.more-results.net^ (easylistchina+easylist.txt: 41021) -.tap.more-results.net -# ||tankionline.com/tankiref.swf (easylistchina+easylist.txt: 41020) -.tankionline.com/tankiref\.swf -# ||talkfusion.com^*/banners/ (easylistchina+easylist.txt: 41019) -.talkfusion.com/.*/banners/ -# ||take2.co.za/misc/bannerscript.php? (easylistchina+easylist.txt: 41017) -.take2.co.za/misc/bannerscript\.php\? -# ||syndication1.viraladnetwork.net^ (easylistchina+easylist.txt: 41015) -.syndication1.viraladnetwork.net -# ||syndication.visualthesaurus.com/std/vtad.js (easylistchina+easylist.txt: 41014) -.syndication.visualthesaurus.com/std/vtad\.js -# ||syndication.jsadapi.com^ (easylistchina+easylist.txt: 41013) -.syndication.jsadapi.com -# ||swimg.net^*/banners/ (easylistchina+easylist.txt: 41011) -.swimg.net/.*/banners/ -# ||sweed.to/affiliates/ (easylistchina+easylist.txt: 41008) -.sweed.to/affiliates/ -# ||survivaltop50.com/wp-content/uploads/*/Survival215x150Link.png (easylistchina+easylist.txt: 41004) -.survivaltop50.com/wp-content/uploads/.*/Survival215x150Link\.png -# ||survey.g.doubleclick.net^ (easylistchina+easylist.txt: 41001) -.survey.g.doubleclick.net -# ||surf100sites.com/images/banner_ (easylistchina+easylist.txt: 41000) -.surf100sites.com/images/banner_ -# ||supersport.com/content/Sponsors (easylistchina+easylist.txt: 40998) -.supersport.com/content/Sponsors -# ||supersport.com/content/2014_Sponsor (easylistchina+easylist.txt: 40997) -.supersport.com/content/2014_Sponsor -# ||supersport.co.za^*180x254 (easylistchina+easylist.txt: 40996) -.supersport.co.za/.*180x254 -# ||subliminalmp3s.com^*/banners/ (easylistchina+easylist.txt: 40994) -.subliminalmp3s.com/.*/banners/ -# ||stuff-nzwhistleout.s3.amazonaws.com^ (easylistchina+easylist.txt: 40992) -.stuff-nzwhistleout.s3.amazonaws.com -# ||structuredchannel.com/sw/swchannel/images/MarketingAssets/*/BannerAd (easylistchina+easylist.txt: 40991) -.structuredchannel.com/sw/swchannel/images/MarketingAssets/.*/BannerAd -# ||streamtheworld.com/ondemand/creative? (easylistchina+easylist.txt: 40989) -.streamtheworld.com/ondemand/creative\? -# ||storage.to/affiliate/ (easylistchina+easylist.txt: 40987) -.storage.to/affiliate/ -# ||stats.sitesuite.org^ (easylistchina+easylist.txt: 40986) -.stats.sitesuite.org -# ||stats.hosting24.com^ (easylistchina+easylist.txt: 40985) -.stats.hosting24.com -# ||staticworld.net/images/*_skin_ (easylistchina+easylist.txt: 40984) -.staticworld.net/images/.*_skin_ -# ||static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2.jpg (easylistchina+easylist.txt: 40983) -.static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2\.jpg -# ||static.multiplayuk.com/images/w/w- (easylistchina+easylist.txt: 40981) -.static.multiplayuk.com/images/w/w- -# ||ssshoesss.ro/banners/ (easylistchina+easylist.txt: 40964) -.ssshoesss.ro/banners/ -# ||srwww1.com^*/affiliate/ (easylistchina+easylist.txt: 40962) -.srwww1.com/.*/affiliate/ -# ||squarespace.evyy.net^ (easylistchina+easylist.txt: 40959) -.squarespace.evyy.net -# ||sportsdigitalcontent.com/betting/ (easylistchina+easylist.txt: 40957) -.sportsdigitalcontent.com/betting/ -# ||sportingbet.com.au/sbacontent/puntersparadise.html (easylistchina+easylist.txt: 40955) -.sportingbet.com.au/sbacontent/puntersparadise\.html -# ||sponsorandwin.com/images/banner- (easylistchina+easylist.txt: 40954) -.sponsorandwin.com/images/banner- -# ||spilcdn.com/vda/vendor/flowplayer/ova.swf (easylistchina+easylist.txt: 40952) -.spilcdn.com/vda/vendor/flowplayer/ova\.swf -# ||spilcdn.com/vda/css/sgadfamily2.css (easylistchina+easylist.txt: 40951) -.spilcdn.com/vda/css/sgadfamily2\.css -# ||spilcdn.com/vda/css/sgadfamily.css (easylistchina+easylist.txt: 40950) -.spilcdn.com/vda/css/sgadfamily\.css -# ||speedtv.com.edgesuite.net/img/static/takeovers/ (easylistchina+easylist.txt: 40949) -.speedtv.com.edgesuite.net/img/static/takeovers/ -# ||speedppc.com^*/banners/ (easylistchina+easylist.txt: 40948) -.speedppc.com/.*/banners/ -# ||speedbit.com^*-banner1- (easylistchina+easylist.txt: 40947) -.speedbit.com/.*-banner1- -# ||softneo.com/popup.js (easylistchina+easylist.txt: 40946) -.softneo.com/popup\.js -# ||socialorganicleads.com/interstitial/ (easylistchina+easylist.txt: 40945) -.socialorganicleads.com/interstitial/ -# ||snacktools.net/bannersnack/ (easylistchina+easylist.txt: 40940) -.snacktools.net/bannersnack/ -# ||smilepk.com/bnrsbtns/ (easylistchina+easylist.txt: 40939) -.smilepk.com/bnrsbtns/ -# ||smart.styria-digital.com^ (easylistchina+easylist.txt: 40936) -.smart.styria-digital.com -# ||slot.union.ucweb.com^ (easylistchina+easylist.txt: 40934) -.slot.union.ucweb.com -# ||sitescout-video-cdn.edgesuite.net^ (easylistchina+easylist.txt: 40931) -.sitescout-video-cdn.edgesuite.net -# ||sitegrip.com^*/swagbucks- (easylistchina+easylist.txt: 40930) -.sitegrip.com/.*/swagbucks- -# ||site5.com/creative/*/234x60.gif (easylistchina+easylist.txt: 40928) -.site5.com/creative/.*/234x60\.gif -# ||singlemuslim.com/affiliates/ (easylistchina+easylist.txt: 40924) -.singlemuslim.com/affiliates/ -# ||simplifydigital.co.uk^*/widget_premium_bb.htm (easylistchina+easylist.txt: 40921) -.simplifydigital.co.uk/.*/widget_premium_bb\.htm -# ||sidekickunlock.net/banner/ (easylistchina+easylist.txt: 40920) -.sidekickunlock.net/banner/ -# ||shragle.com^*?ref= (easylistchina+easylist.txt: 40919) -.shragle.com/.*\?ref= -# ||shows-tv.net/codepopup.js (easylistchina+easylist.txt: 40918) -.shows-tv.net/codepopup\.js -# ||shorte.st^*/referral_banners/ (easylistchina+easylist.txt: 40917) -.shorte.st/.*/referral_banners/ -# ||shorte.st/link-converter.min.js (easylistchina+easylist.txt: 40916) -.shorte.st/link-converter\.min\.js -# ||shopbrazos.com/widgets/ (easylistchina+easylist.txt: 40913) -.shopbrazos.com/widgets/ -# ||shop4tech.com^*/banner/ (easylistchina+easylist.txt: 40912) -.shop4tech.com/.*/banner/ -# ||shop-top1000.com/images/ (easylistchina+easylist.txt: 40911) -.shop-top1000.com/images/ -# ||shariahprogram.ca/banners/ (easylistchina+easylist.txt: 40909) -.shariahprogram.ca/banners/ -# ||shaadi.com^*/get-html-banner.php? (easylistchina+easylist.txt: 40907) -.shaadi.com/.*/get-html-banner\.php\? -# ||shaadi.com^*/get-banner.php? (easylistchina+easylist.txt: 40906) -.shaadi.com/.*/get-banner\.php\? -# ||sfm-offshore.com/images/banners/ (easylistchina+easylist.txt: 40904) -.sfm-offshore.com/images/banners/ -# ||sfimg.com/SFIBanners/ (easylistchina+easylist.txt: 40903) -.sfimg.com/SFIBanners/ -# ||sfimg.com/images/banners/ (easylistchina+easylist.txt: 40902) -.sfimg.com/images/banners/ -# ||service.smscoin.com/js/sendpic.js (easylistchina+easylist.txt: 40898) -.service.smscoin.com/js/sendpic\.js -# ||server4.pro/images/banner.jpg (easylistchina+easylist.txt: 40897) -.server4.pro/images/banner\.jpg -# ||servedby.keygamesnetwork.com^ (easylistchina+easylist.txt: 40894) -.servedby.keygamesnetwork.com -# ||selectperformers.com/images/elements/bannercolours/ (easylistchina+easylist.txt: 40893) -.selectperformers.com/images/elements/bannercolours/ -# ||selectperformers.com/images/a/ (easylistchina+easylist.txt: 40892) -.selectperformers.com/images/a/ -# ||secureupload.eu/banners/ (easylistchina+easylist.txt: 40889) -.secureupload.eu/banners/ -# ||secureserver.net^*/event? (easylistchina+easylist.txt: 40888) -.secureserver.net/.*/event\? -# ||secretmedia.s3.amazonaws.com^ (easylistchina+easylist.txt: 40886) -.secretmedia.s3.amazonaws.com -# ||secondspin.com/twcontent/ (easylistchina+easylist.txt: 40885) -.secondspin.com/twcontent/ -# ||scoopdragon.com/images/Goodgame-Empire-MPU.jpg (easylistchina+easylist.txt: 40881) -.scoopdragon.com/images/Goodgame-Empire-MPU\.jpg -# ||sciremedia.tv/images/banners/ (easylistchina+easylist.txt: 40880) -.sciremedia.tv/images/banners/ -# ||schurzdigital.com/deals/widget/ (easylistchina+easylist.txt: 40878) -.schurzdigital.com/deals/widget/ -# ||schenkelklopfer.org^*pop.js (easylistchina+easylist.txt: 40877) -.schenkelklopfer.org/.*pop\.js -# ||salemwebnetwork.com/Stations/images/SiteWrapper/ (easylistchina+easylist.txt: 40874) -.salemwebnetwork.com/Stations/images/SiteWrapper/ -# ||sailthru.com^*/horizon.js (easylistchina+easylist.txt: 40872) -.sailthru.com/.*/horizon\.js -# ||safarinow.com/affiliate-zone/ (easylistchina+easylist.txt: 40871) -.safarinow.com/affiliate-zone/ -# ||s3.amazonaws.com/draftset/banners/ (easylistchina+easylist.txt: 40870) -.s3.amazonaws.com/draftset/banners/ -# ||s1now.com^*/takeovers/ (easylistchina+easylist.txt: 40869) -.s1now.com/.*/takeovers/ -# ||s-yoolk-billboard-assets.yoolk.com^ (easylistchina+easylist.txt: 40865) -.s-yoolk-billboard-assets.yoolk.com -# ||s-yoolk-banner-assets.yoolk.com^ (easylistchina+easylist.txt: 40864) -.s-yoolk-banner-assets.yoolk.com -# ||s-assets.tp-cdn.com/widgets/*/vwid/*.html? (easylistchina+easylist.txt: 40863) -.s-assets.tp-cdn.com/widgets/.*/vwid/.*\.html\? -# ||runerich.com/images/sty_img/runerich.gif (easylistchina+easylist.txt: 40859) -.runerich.com/images/sty_img/runerich\.gif -# ||rotator.tradetracker.net^ (easylistchina+easylist.txt: 40857) -.rotator.tradetracker.net -# ||rotabanner.kulichki.net^ (easylistchina+easylist.txt: 40856) -.rotabanner.kulichki.net -# ||roshantv.com/adad. (easylistchina+easylist.txt: 40855) -.roshantv.com/adad\. -# ||roshansports.com/iframe.php (easylistchina+easylist.txt: 40854) -.roshansports.com/iframe\.php -# ||roadrecord.co.uk/widget.js? (easylistchina+easylist.txt: 40852) -.roadrecord.co.uk/widget\.js\? -# ||revealads.appspot.com^ (easylistchina+easylist.txt: 40847) -.revealads.appspot.com -# ||resources.heavenmedia.net/selection.php? (easylistchina+easylist.txt: 40846) -.resources.heavenmedia.net/selection\.php\? -# ||res3.feedsportal.com^ (easylistchina+easylist.txt: 40845) -.res3.feedsportal.com -# ||rehost.to/?ref= (easylistchina+easylist.txt: 40842) -.rehost.to/\?ref= -# ||regnow.com/vendor/ (easylistchina+easylist.txt: 40841) -.regnow.com/vendor/ -# ||realwritingjobs.com^*/banners/ (easylistchina+easylist.txt: 40835) -.realwritingjobs.com/.*/banners/ -# ||ratesupermarket.ca/widgets/ (easylistchina+easylist.txt: 40830) -.ratesupermarket.ca/widgets/ -# ||rapidjazz.com/banner_rotation/ (easylistchina+easylist.txt: 40829) -.rapidjazz.com/banner_rotation/ -# ||rapidgator.net/images/pics/*_300%D1%85250_ (easylistchina+easylist.txt: 40828) -.rapidgator.net/images/pics/.*_300%D1%85250_ -# ||radley.co.uk^*/Affiliate/ (easylistchina+easylist.txt: 40827) -.radley.co.uk/.*/Affiliate/ -# ||radiotown.com/splash/images/*_960x600_ (easylistchina+easylist.txt: 40826) -.radiotown.com/splash/images/.*_960x600_ -# ||radioshack.com^*/promo/ (easylistchina+easylist.txt: 40825) -.radioshack.com/.*/promo/ -# ||radioreference.com/sm/300x75_v3.jpg (easylistchina+easylist.txt: 40824) -.radioreference.com/sm/300x75_v3\.jpg -# ||rack.bauermedia.co.uk^ (easylistchina+easylist.txt: 40818) -.rack.bauermedia.co.uk -# ||racebets.com/media.php? (easylistchina+easylist.txt: 40817) -.racebets.com/media\.php\? -# ||quirk.biz/webtracking/ (easylistchina+easylist.txt: 40816) -.quirk.biz/webtracking/ -# ||qualoo.net/now/interstitial/ (easylistchina+easylist.txt: 40814) -.qualoo.net/now/interstitial/ -# ||purevpn.com/affiliates/ (easylistchina+easylist.txt: 40812) -.purevpn.com/affiliates/ -# ||puntersparadise.com.au/banners/ (easylistchina+easylist.txt: 40811) -.puntersparadise.com.au/banners/ -# ||pubs.hiddennetwork.com^ (easylistchina+easylist.txt: 40810) -.pubs.hiddennetwork.com -# ||pub.betclick.com^ (easylistchina+easylist.txt: 40806) -.pub.betclick.com -# ||proxysolutions.net/affiliates/ (easylistchina+easylist.txt: 40804) -.proxysolutions.net/affiliates/ -# ||proxyroll.com/proxybanner.php (easylistchina+easylist.txt: 40803) -.proxyroll.com/proxybanner\.php -# ||proxynoid.com/images/referrals/ (easylistchina+easylist.txt: 40802) -.proxynoid.com/images/referrals/ -# ||proxy.org/blasts.gif (easylistchina+easylist.txt: 40801) -.proxy.org/blasts\.gif -# ||promotions.iasbet.com^ (easylistchina+easylist.txt: 40798) -.promotions.iasbet.com -# ||promote.pair.com^ (easylistchina+easylist.txt: 40797) -.promote.pair.com -# ||promos.fling.com^ (easylistchina+easylist.txt: 40796) -.promos.fling.com -# ||promo.musicradio.com^ (easylistchina+easylist.txt: 40795) -.promo.musicradio.com -# ||pro-gmedia.com^*/skins/ (easylistchina+easylist.txt: 40793) -.pro-gmedia.com/.*/skins/ -# ||privatewifi.com/swf/banners/ (easylistchina+easylist.txt: 40791) -.privatewifi.com/swf/banners/ -# ||print2webcorp.com/widgetcontent/ (easylistchina+easylist.txt: 40790) -.print2webcorp.com/widgetcontent/ -# ||primeloopstracking.com/affil/ (easylistchina+easylist.txt: 40789) -.primeloopstracking.com/affil/ -# ||priceinfo.comuv.com^ (easylistchina+easylist.txt: 40788) -.priceinfo.comuv.com -# ||ppc-coach.com/jamaffiliates/ (easylistchina+easylist.txt: 40780) -.ppc-coach.com/jamaffiliates/ -# ||pornturbo.com/tmarket.php (easylistchina+easylist.txt: 40777) -.pornturbo.com/tmarket\.php -# ||popeoftheplayers.eu/ad (easylistchina+easylist.txt: 40774) -.popeoftheplayers.eu/ad -# ||pokerstars.com/euro_bnrs/ (easylistchina+easylist.txt: 40773) -.pokerstars.com/euro_bnrs/ -# ||pokersavvy.com^*/banners/ (easylistchina+easylist.txt: 40771) -.pokersavvy.com/.*/banners/ -# ||pokerjunkie.com/rss/ (easylistchina+easylist.txt: 40769) -.pokerjunkie.com/rss/ -# ||plexidigest.com/plexidigest-300x300.jpg (easylistchina+easylist.txt: 40765) -.plexidigest.com/plexidigest-300x300\.jpg -# ||playfooty.tv/jojo.html (easylistchina+easylist.txt: 40764) -.playfooty.tv/jojo\.html -# ||picoasis.net/3xlayer.htm (easylistchina+easylist.txt: 40759) -.picoasis.net/3xlayer\.htm -# ||pic.pbsrc.com/hpto/ (easylistchina+easylist.txt: 40758) -.pic.pbsrc.com/hpto/ -# ||pianoteq.com/images/banners/ (easylistchina+easylist.txt: 40757) -.pianoteq.com/images/banners/ -# ||pianobuyer.com/pianoworld/ (easylistchina+easylist.txt: 40756) -.pianobuyer.com/pianoworld/ -# ||phonephotographytricks.com/images/banners/ (easylistchina+easylist.txt: 40755) -.phonephotographytricks.com/images/banners/ -# ||pearlriverusa.com/images/banner/ (easylistchina+easylist.txt: 40750) -.pearlriverusa.com/images/banner/ -# ||pcmall.co.za/affiliates/ (easylistchina+easylist.txt: 40748) -.pcmall.co.za/affiliates/ -# ||payza.com/images/banners/ (easylistchina+easylist.txt: 40746) -.payza.com/images/banners/ -# ||paytel.co.za/code/ref (easylistchina+easylist.txt: 40745) -.paytel.co.za/code/ref -# ||partners.xpertmarket.com^ (easylistchina+easylist.txt: 40744) -.partners.xpertmarket.com -# ||partners.vouchedfor.co.uk^ (easylistchina+easylist.txt: 40743) -.partners.vouchedfor.co.uk -# ||partners.sportingbet.com.au^ (easylistchina+easylist.txt: 40742) -.partners.sportingbet.com.au -# ||partners.rochen.com^ (easylistchina+easylist.txt: 40741) -.partners.rochen.com -# ||partners.optiontide.com^ (easylistchina+easylist.txt: 40740) -.partners.optiontide.com -# ||partners.fshealth.com^ (easylistchina+easylist.txt: 40739) -.partners.fshealth.com -# ||partners.dogtime.com/network/ (easylistchina+easylist.txt: 40738) -.partners.dogtime.com/network/ -# ||partnerads1.ysm.yahoo.com^ (easylistchina+easylist.txt: 40736) -.partnerads1.ysm.yahoo.com -# ||partnerads.ysm.yahoo.com^ (easylistchina+easylist.txt: 40735) -.partnerads.ysm.yahoo.com -# ||partner.premiumdomains.com^ (easylistchina+easylist.txt: 40734) -.partner.premiumdomains.com -# ||partner.catchy.com^ (easylistchina+easylist.txt: 40732) -.partner.catchy.com -# ||partner.bargaindomains.com^ (easylistchina+easylist.txt: 40731) -.partner.bargaindomains.com -# ||paidinvite.com/promo/ (easylistchina+easylist.txt: 40728) -.paidinvite.com/promo/ -# ||oxygenboutique.com/Linkshare/ (easylistchina+easylist.txt: 40723) -.oxygenboutique.com/Linkshare/ -# ||ox-i.cordillera.tv^ (easylistchina+easylist.txt: 40722) -.ox-i.cordillera.tv -# ||ovpn.to/ovpn.to/banner/ (easylistchina+easylist.txt: 40721) -.ovpn.to/ovpn\.to/banner/ -# ||overseasradio.com/affbanner.php? (easylistchina+easylist.txt: 40720) -.overseasradio.com/affbanner\.php\? -# ||outdoorhub.com/js/_bookends.min.js (easylistchina+easylist.txt: 40719) -.outdoorhub.com/js/_bookends\.min\.js -# ||osobnosti.cz/images/casharena_ (easylistchina+easylist.txt: 40718) -.osobnosti.cz/images/casharena_ -# ||oriongadgets.com^*/banners/ (easylistchina+easylist.txt: 40717) -.oriongadgets.com/.*/banners/ -# ||origin.getprice.com.au/widgetnewssmall.aspx (easylistchina+easylist.txt: 40716) -.origin.getprice.com.au/widgetnewssmall\.aspx -# ||origin.getprice.com.au/WidgetNews.aspx (easylistchina+easylist.txt: 40715) -.origin.getprice.com.au/WidgetNews\.aspx -# ||organicprospects.com^*/banners/ (easylistchina+easylist.txt: 40714) -.organicprospects.com/.*/banners/ -# ||optimus-pm.com^*_300-250.jpg (easylistchina+easylist.txt: 40713) -.optimus-pm.com/.*_300-250\.jpg -# ||oovoo.com^*/banners/ (easylistchina+easylist.txt: 40712) -.oovoo.com/.*/banners/ -# ||onecache.com/banner_ (easylistchina+easylist.txt: 40710) -.onecache.com/banner_ -# ||on.maxspeedcdn.com^ (easylistchina+easylist.txt: 40709) -.on.maxspeedcdn.com -# ||oilofasia.com/images/banners/ (easylistchina+easylist.txt: 40706) -.oilofasia.com/images/banners/ -# ||odin.goo.mx^ (easylistchina+easylist.txt: 40702) -.odin.goo.mx -# ||ocp.cbs.com/pacific/request.jsp? (easylistchina+easylist.txt: 40701) -.ocp.cbs.com/pacific/request\.jsp\? -# ||oclasrv.comindex-2.htmlapu.php^ (easylistchina+easylist.txt: 40700) -.oclasrv.comindex-2.htmlapu.php -# ||obox-design.com/affiliate-banners/ (easylistchina+easylist.txt: 40699) -.obox-design.com/affiliate-banners/ -# ||oasap.com/images/affiliate/ (easylistchina+easylist.txt: 40698) -.oasap.com/images/affiliate/ -# ||nzpages.co.nz^*/banners/ (easylistchina+easylist.txt: 40696) -.nzpages.co.nz/.*/banners/ -# ||nwadealpiggy.com/widgets/ (easylistchina+easylist.txt: 40695) -.nwadealpiggy.com/widgets/ -# ||ntnd.net^*/store-buttons/ (easylistchina+easylist.txt: 40692) -.ntnd.net/.*/store-buttons/ -# ||nster.com/tpl/this/js/popnster.js (easylistchina+easylist.txt: 40691) -.nster.com/tpl/this/js/popnster\.js -# ||nocookie.net^*/wikiasearchads.js (easylistchina+easylist.txt: 40689) -.nocookie.net/.*/wikiasearchads\.js -# ||nimblecommerce.com/widget.action? (easylistchina+easylist.txt: 40686) -.nimblecommerce.com/widget\.action\? -# ||network.business.com^ (easylistchina+easylist.txt: 40681) -.network.business.com -# ||network.aufeminin.com^ (easylistchina+easylist.txt: 40680) -.network.aufeminin.com -# ||nettvplus.com/images/banner_ (easylistchina+easylist.txt: 40679) -.nettvplus.com/images/banner_ -# ||netdigix.com/google_banners/ (easylistchina+easylist.txt: 40675) -.netdigix.com/google_banners/ -# ||nesgamezone.com/syndicate? (easylistchina+easylist.txt: 40674) -.nesgamezone.com/syndicate\? -# ||neogames-tech.com/resources/genericbanners/ (easylistchina+easylist.txt: 40673) -.neogames-tech.com/resources/genericbanners/ -# ||nanoinvestgroup.com/images/banner*.gif (easylistchina+easylist.txt: 40671) -.nanoinvestgroup.com/images/banner.*\.gif -# ||nanobrokers.com/img/banner_ (easylistchina+easylist.txt: 40670) -.nanobrokers.com/img/banner_ -# ||n.nu/banner.js (easylistchina+easylist.txt: 40667) -.n.nu/banner\.js -# ||myusenet.net/promo.cgi? (easylistchina+easylist.txt: 40664) -.myusenet.net/promo\.cgi\? -# ||myhpf.co.uk/banners/ (easylistchina+easylist.txt: 40660) -.myhpf.co.uk/banners/ -# ||myfreeshares.com/120x60b.gif (easylistchina+easylist.txt: 40659) -.myfreeshares.com/120x60b\.gif -# ||multivizyon.tv^*/flysatbanner.swf (easylistchina+easylist.txt: 40647) -.multivizyon.tv/.*/flysatbanner\.swf -# ||multisitelive.com^*/banner_ (easylistchina+easylist.txt: 40646) -.multisitelive.com/.*/banner_ -# ||msnbcmedia.msn.com^*/sponsors/ (easylistchina+easylist.txt: 40643) -.msnbcmedia.msn.com/.*/sponsors/ -# ||mrc.org^*/take-over-charlotte300x250.gif (easylistchina+easylist.txt: 40639) -.mrc.org/.*/take-over-charlotte300x250\.gif -# ||mrc.org^*/Collusion_Banner300x250.jpg (easylistchina+easylist.txt: 40638) -.mrc.org/.*/Collusion_Banner300x250\.jpg -# ||mrc.org/sites/default/files/uploads/images/Collusion_Banner (easylistchina+easylist.txt: 40637) -.mrc.org/sites/default/files/uploads/images/Collusion_Banner -# ||mozo-widgets.f2.com.au^ (easylistchina+easylist.txt: 40635) -.mozo-widgets.f2.com.au -# ||mosso.com^*/banners/ (easylistchina+easylist.txt: 40634) -.mosso.com/.*/banners/ -# ||moosify.com/widgets/explorer/?partner= (easylistchina+easylist.txt: 40633) -.moosify.com/widgets/explorer/\?partner= -# ||moneywise.co.uk/affiliate/ (easylistchina+easylist.txt: 40632) -.moneywise.co.uk/affiliate/ -# ||moneycontrol.co.in^*PopUnder.js (easylistchina+easylist.txt: 40630) -.moneycontrol.co.in/.*PopUnder\.js -# ||mol.im/i/pix/ebay/ (easylistchina+easylist.txt: 40629) -.mol.im/i/pix/ebay/ -# ||mobyler.com/img/banner/ (easylistchina+easylist.txt: 40628) -.mobyler.com/img/banner/ -# ||mnginteractive.com^*/dartinclude.js (easylistchina+easylist.txt: 40626) -.mnginteractive.com/.*/dartinclude\.js -# ||mmdcash.com/mmdcash01.gif (easylistchina+easylist.txt: 40622) -.mmdcash.com/mmdcash01\.gif -# ||mlive.com/js/oas/ (easylistchina+easylist.txt: 40621) -.mlive.com/js/oas/ -# ||mkini.net/banners/ (easylistchina+easylist.txt: 40620) -.mkini.net/banners/ -# ||missnowmrs.com/images/banners/ (easylistchina+easylist.txt: 40619) -.missnowmrs.com/images/banners/ -# ||millionaires-club-international.com/banner/ (easylistchina+easylist.txt: 40618) -.millionaires-club-international.com/banner/ -# ||mightydeals.s3.amazonaws.com/md_adv/ (easylistchina+easylist.txt: 40616) -.mightydeals.s3.amazonaws.com/md_adv/ -# ||mfcdn.net/store/spotlight/ (easylistchina+easylist.txt: 40607) -.mfcdn.net/store/spotlight/ -# ||metroland.com/wagjag/ (easylistchina+easylist.txt: 40606) -.metroland.com/wagjag/ -# ||memepix.com/spark.php? (easylistchina+easylist.txt: 40602) -.memepix.com/spark\.php\? -# ||megalivestream.net/pub.js (easylistchina+easylist.txt: 40601) -.megalivestream.net/pub\.js -# ||mediaspanonline.com^*-Takeover_ (easylistchina+easylist.txt: 40600) -.mediaspanonline.com/.*-Takeover_ -# ||mediaspanonline.com^*-Takeover- (easylistchina+easylist.txt: 40599) -.mediaspanonline.com/.*-Takeover- -# ||mediaon.com/moneymoney/ (easylistchina+easylist.txt: 40594) -.mediaon.com/moneymoney/ -# ||media.enimgs.net/brand/files/escalatenetwork/ (easylistchina+easylist.txt: 40590) -.media.enimgs.net/brand/files/escalatenetwork/ -# ||media.complex.com/videos/prerolls/ (easylistchina+easylist.txt: 40588) -.media.complex.com/videos/prerolls/ -# ||mdpcdn.com^*/gpt/ (easylistchina+easylist.txt: 40586) -.mdpcdn.com/.*/gpt/ -# ||mcclatchyinteractive.com/creative/ (easylistchina+easylist.txt: 40585) -.mcclatchyinteractive.com/creative/ -# ||mb.zam.com^ (easylistchina+easylist.txt: 40583) -.mb.zam.com -# ||mb-hostservice.de/banner_ (easylistchina+easylist.txt: 40581) -.mb-hostservice.de/banner_ -# ||mazda.com.au/banners/ (easylistchina+easylist.txt: 40580) -.mazda.com.au/banners/ -# ||matchbin.com/javascripts/remote_widget.js (easylistchina+easylist.txt: 40577) -.matchbin.com/javascripts/remote_widget\.js -# ||marketing.888.com^ (easylistchina+easylist.txt: 40573) -.marketing.888.com -# ||marinejobs.gr/images/marine_adv.gif (easylistchina+easylist.txt: 40572) -.marinejobs.gr/images/marine_adv\.gif -# ||mahndi.com/images/banner/ (easylistchina+easylist.txt: 40570) -.mahndi.com/images/banner/ -# ||magniwork.com/banner/ (easylistchina+easylist.txt: 40569) -.magniwork.com/banner/ -# ||magicmembers.com/img/mgm-125x125 (easylistchina+easylist.txt: 40568) -.magicmembers.com/img/mgm-125x125 -# ||magicaffiliateplugin.com/img/mga-125x125.gif (easylistchina+easylist.txt: 40567) -.magicaffiliateplugin.com/img/mga-125x125\.gif -# ||mads.aol.com^ (easylistchina+easylist.txt: 40566) -.mads.aol.com -# ||lygo.com/d/toolbar/sponsors/ (easylistchina+easylist.txt: 40560) -.lygo.com/d/toolbar/sponsors/ -# ||luckyshare.net/images/banners/ (easylistchina+easylist.txt: 40558) -.luckyshare.net/images/banners/ -# ||luckygunner.com^*/banners/ (easylistchina+easylist.txt: 40557) -.luckygunner.com/.*/banners/ -# ||lucky-dating.net/banners/ (easylistchina+easylist.txt: 40556) -.lucky-dating.net/banners/ -# ||lucky-ace-casino.net/banners/ (easylistchina+easylist.txt: 40555) -.lucky-ace-casino.net/banners/ -# ||ltfm.ca/stats.php? (easylistchina+easylist.txt: 40554) -.ltfm.ca/stats\.php\? -# ||lp.longtailvideo.com^*/adaptv*.swf (easylistchina+easylist.txt: 40552) -.lp.longtailvideo.com/.*/adaptv.*\.swf -# ||longtailvideo.com^*/yume.swf (easylistchina+easylist.txt: 40545) -.longtailvideo.com/.*/yume\.swf -# ||longtailvideo.com^*/yume-h.swf (easylistchina+easylist.txt: 40544) -.longtailvideo.com/.*/yume-h\.swf -# ||longtailvideo.com*/ltas.swf (easylistchina+easylist.txt: 40536) -.longtailvideo.com*./(.*/)?ltas\.swf -# ||london24.com^*/mpu/ (easylistchina+easylist.txt: 40535) -.london24.com/.*/mpu/ -# ||localdata.eu/images/banners/ (easylistchina+easylist.txt: 40534) -.localdata.eu/images/banners/ -# ||llnwd.net/o28/assets/*-sponsored- (easylistchina+easylist.txt: 40533) -.llnwd.net/o28/assets/.*-sponsored- -# ||liveperson.com/affiliates/ (easylistchina+easylist.txt: 40531) -.liveperson.com/affiliates/ -# ||liutilities.com^*/affiliate/ (easylistchina+easylist.txt: 40529) -.liutilities.com/.*/affiliate/ -# ||literatureandlatte.com/gfx/buynowaffiliate.jpg (easylistchina+easylist.txt: 40527) -.literatureandlatte.com/gfx/buynowaffiliate\.jpg -# ||lionheartdms.com^*/walmart_300.jpg (easylistchina+easylist.txt: 40525) -.lionheartdms.com/.*/walmart_300\.jpg -# ||lijit.com/delivery/ (easylistchina+easylist.txt: 40521) -.lijit.com/delivery/ -# ||lijit.com/adif_px.php (easylistchina+easylist.txt: 40520) -.lijit.com/adif_px\.php -# ||letmewatchthis.ru/movies/linkbottom (easylistchina+easylist.txt: 40516) -.letmewatchthis.ru/movies/linkbottom -# ||lego.com^*/affiliate/ (easylistchina+easylist.txt: 40513) -.lego.com/.*/affiliate/ -# ||legaljobscentre.com/feed/jobad.aspx (easylistchina+easylist.txt: 40511) -.legaljobscentre.com/feed/jobad\.aspx -# ||leadsleap.com/widget/ (easylistchina+easylist.txt: 40510) -.leadsleap.com/widget/ -# ||leadsleap.com/images/banner_ (easylistchina+easylist.txt: 40509) -.leadsleap.com/images/banner_ -# ||lastlocation.com/images/banner (easylistchina+easylist.txt: 40506) -.lastlocation.com/images/banner -# ||ladbrokes.com^*&aff_id= (easylistchina+easylist.txt: 40504) -.ladbrokes.com/.*&aff_id= -# ||l.yimg.com^*&partner=*&url= (easylistchina+easylist.txt: 40503) -.l.yimg.com/.*&partner=.*&url= -# ||kurtgeiger.com^*/linkshare/ (easylistchina+easylist.txt: 40502) -.kurtgeiger.com/.*/linkshare/ -# ||krillion.com^*/productoffers.js (easylistchina+easylist.txt: 40501) -.krillion.com/.*/productoffers\.js -# ||kozmetikcerrahi.com/banner/ (easylistchina+easylist.txt: 40499) -.kozmetikcerrahi.com/banner/ -# ||knorex.asia/static-firefly/ (easylistchina+easylist.txt: 40497) -.knorex.asia/static-firefly/ -# ||king.com^*/banners/ (easylistchina+easylist.txt: 40496) -.king.com/.*/banners/ -# ||keyword-winner.com/demo/images/ (easylistchina+easylist.txt: 40495) -.keyword-winner.com/demo/images/ -# ||keep2share.cc/images/i/00468x0060- (easylistchina+easylist.txt: 40494) -.keep2share.cc/images/i/00468x0060- -# ||kallout.com^*.php?id= (easylistchina+easylist.txt: 40492) -.kallout.com/.*\.php\?id= -# ||kaango.com/fecustomwidgetdisplay? (easylistchina+easylist.txt: 40491) -.kaango.com/fecustomwidgetdisplay\? -# ||k2team.kyiv.ua^ (easylistchina+easylist.txt: 40490) -.k2team.kyiv.ua -# ||k.co.il/iefilter.html (easylistchina+easylist.txt: 40489) -.k.co.il/iefilter\.html -# ||justclicktowatch.to/jstp.js (easylistchina+easylist.txt: 40486) -.justclicktowatch.to/jstp\.js -# ||jubimax.com/banner_images/ (easylistchina+easylist.txt: 40483) -.jubimax.com/banner_images/ -# ||jsrdn.com/s/1.js (easylistchina+easylist.txt: 40482) -.jsrdn.com/s/1\.js -# ||jrcdev.net/promos/ (easylistchina+easylist.txt: 40480) -.jrcdev.net/promos/ -# ||jalbum.net/widgetapi/js/dlbutton.js? (easylistchina+easylist.txt: 40472) -.jalbum.net/widgetapi/js/dlbutton\.js\? -# ||iypcdn.com^*/ypbanners/ (easylistchina+easylist.txt: 40471) -.iypcdn.com/.*/ypbanners/ -# ||iypcdn.com^*/otherbanners/ (easylistchina+easylist.txt: 40470) -.iypcdn.com/.*/otherbanners/ -# ||iypcdn.com^*/bgbanners/ (easylistchina+easylist.txt: 40469) -.iypcdn.com/.*/bgbanners/ -# ||iwebzoo.com/banner/ (easylistchina+easylist.txt: 40468) -.iwebzoo.com/banner/ -# ||iselectmedia.com^*/banners/ (easylistchina+easylist.txt: 40467) -.iselectmedia.com/.*/banners/ -# ||intexchange.ru/Content/banners/ (easylistchina+easylist.txt: 40463) -.intexchange.ru/Content/banners/ -# ||integrityvpn.com/img/integrityvpn.jpg (easylistchina+easylist.txt: 40458) -.integrityvpn.com/img/integrityvpn\.jpg -# ||instaprofitgram.com/images/banners/ (easylistchina+easylist.txt: 40457) -.instaprofitgram.com/images/banners/ -# ||instantpaysites.com/banner/ (easylistchina+easylist.txt: 40456) -.instantpaysites.com/banner/ -# ||inskin.vo.llnwd.net^ (easylistchina+easylist.txt: 40455) -.inskin.vo.llnwd.net -# ||inisrael-travel.com/jpost/ (easylistchina+easylist.txt: 40452) -.inisrael-travel.com/jpost/ -# ||infomarine.gr^*/images/banners/ (easylistchina+easylist.txt: 40451) -.infomarine.gr/.*/images/banners/ -# ||infomarine.gr/images/banerr.gif (easylistchina+easylist.txt: 40450) -.infomarine.gr/images/banerr\.gif -# ||infochoice.com.au/Handler/WidgetV2Handler.ashx? (easylistchina+easylist.txt: 40449) -.infochoice.com.au/Handler/WidgetV2Handler\.ashx\? -# ||indieclick.3janecdn.com^ (easylistchina+easylist.txt: 40447) -.indieclick.3janecdn.com -# ||indeed.fr/ads/ (easylistchina+easylist.txt: 40445) -.indeed.fr/ads/ -# ||imptestrm.com/rg-main.php? (easylistchina+easylist.txt: 40444) -.imptestrm.com/rg-main\.php\? -# ||imgdino.com/gsmpop.js (easylistchina+easylist.txt: 40440) -.imgdino.com/gsmpop\.js -# ||imagetwist.com/banner/ (easylistchina+easylist.txt: 40434) -.imagetwist.com/banner/ -# ||images-pw.secureserver.net/images/100yearsofchevy.gif (easylistchina+easylist.txt: 40427) -.images-pw.secureserver.net/images/100yearsofchevy\.gif -# ||images-amazon.com/images/*/associates/widgets/ (easylistchina+easylist.txt: 40424) -.images-amazon.com/images/.*/associates/widgets/ -# ||ima3vpaid.appspot.com^ (easylistchina+easylist.txt: 40421) -.ima3vpaid.appspot.com -# ||im.ov.yahoo.co.jp^ (easylistchina+easylist.txt: 40420) -.im.ov.yahoo.co.jp -# ||icastcenter.com^*/itunes.jpg (easylistchina+easylist.txt: 40414) -.icastcenter.com/.*/itunes\.jpg -# ||icastcenter.com^*/amazon-buyfrom.gif (easylistchina+easylist.txt: 40413) -.icastcenter.com/.*/amazon-buyfrom\.gif -# ||ibvpn.com/img/banners/ (easylistchina+easylist.txt: 40412) -.ibvpn.com/img/banners/ -# ||ibsys.com/sh/sponsors/ (easylistchina+easylist.txt: 40411) -.ibsys.com/sh/sponsors/ -# ||ibsrv.net/sponsor_images/ (easylistchina+easylist.txt: 40410) -.ibsrv.net/sponsor_images/ -# ||ibsrv.net/sidetiles/125x125/ (easylistchina+easylist.txt: 40409) -.ibsrv.net/sidetiles/125x125/ -# ||i.lsimg.net^*/takeover/ (easylistchina+easylist.txt: 40408) -.i.lsimg.net/.*/takeover/ -# ||i.lsimg.net^*/sides_clickable. (easylistchina+easylist.txt: 40407) -.i.lsimg.net/.*/sides_clickable\. -# ||hyperscale.com/images/adh_button.jpg (easylistchina+easylist.txt: 40405) -.hyperscale.com/images/adh_button\.jpg -# ||hyperfbtraffic.com/images/graphicsbanners/ (easylistchina+easylist.txt: 40404) -.hyperfbtraffic.com/images/graphicsbanners/ -# ||hyipregulate.com/images/hyipregulatebanner.gif (easylistchina+easylist.txt: 40403) -.hyipregulate.com/images/hyipregulatebanner\.gif -# ||hubbardradio.com^*/my_deals.php (easylistchina+easylist.txt: 40401) -.hubbardradio.com/.*/my_deals\.php -# ||hubbarddeals.com^*/promo/ (easylistchina+easylist.txt: 40400) -.hubbarddeals.com/.*/promo/ -# ||hstpnetwork.com/zeus.php (easylistchina+easylist.txt: 40399) -.hstpnetwork.com/zeus\.php -# ||hstpnetwork.com/ads/ (easylistchina+easylist.txt: 40398) -.hstpnetwork.com/ads/ -# ||hostinger.nl/banners/ (easylistchina+easylist.txt: 40392) -.hostinger.nl/banners/ -# ||homad-global-configs.schneevonmorgen.com^ (easylistchina+easylist.txt: 40388) -.homad-global-configs.schneevonmorgen.com -# ||hm-sat.de/b.php (easylistchina+easylist.txt: 40387) -.hm-sat.de/b\.php -# ||hitleap.com/assets/banner.png (easylistchina+easylist.txt: 40386) -.hitleap.com/assets/banner\.png -# ||hitleap.com/assets/banner- (easylistchina+easylist.txt: 40385) -.hitleap.com/assets/banner- -# ||highepcoffer.com/images/banners/ (easylistchina+easylist.txt: 40384) -.highepcoffer.com/images/banners/ -# ||hide-my-ip.com/promo/ (easylistchina+easylist.txt: 40383) -.hide-my-ip.com/promo/ -# ||hexero.com/images/banner.gif (easylistchina+easylist.txt: 40382) -.hexero.com/images/banner\.gif -# ||heidiklein.com/media/banners/ (easylistchina+easylist.txt: 40381) -.heidiklein.com/media/banners/ -# ||haymarket.net.au/Skins/ (easylistchina+easylist.txt: 40378) -.haymarket.net.au/Skins/ -# ||haymarket-whistleout.s3.amazonaws.com/*_ad.html (easylistchina+easylist.txt: 40377) -.haymarket-whistleout.s3.amazonaws.com/.*_ad\.html -# ||handango.com/marketing/affiliate/ (easylistchina+easylist.txt: 40376) -.handango.com/marketing/affiliate/ -# ||halllakeland.com/banner/ (easylistchina+easylist.txt: 40375) -.halllakeland.com/banner/ -# ||guzzle.co.za/media/banners/ (easylistchina+easylist.txt: 40374) -.guzzle.co.za/media/banners/ -# ||guim.co.uk/guardian/thirdparty/tv-site/side.html (easylistchina+easylist.txt: 40373) -.guim.co.uk/guardian/thirdparty/tv-site/side\.html -# ||grindabuck.com/img/skyscraper.jpg (easylistchina+easylist.txt: 40369) -.grindabuck.com/img/skyscraper\.jpg -# ||graduateinjapan.com/affiliates/ (easylistchina+easylist.txt: 40367) -.graduateinjapan.com/affiliates/ -# ||graboid.com/affiliates/ (easylistchina+easylist.txt: 40366) -.graboid.com/affiliates/ -# ||govids.net/adss/ (easylistchina+easylist.txt: 40364) -.govids.net/adss/ -# ||gotraffic.net^*/sponsors/ (easylistchina+easylist.txt: 40363) -.gotraffic.net/.*/sponsors/ -# ||gorgonprojectinvest.com/images/banners/ (easylistchina+easylist.txt: 40362) -.gorgonprojectinvest.com/images/banners/ -# ||googlesyndication.com^*/domainpark.cgi? (easylistchina+easylist.txt: 40359) -.googlesyndication.com/.*/domainpark\.cgi\? -# ||google.com/pagead/ (easylistchina+easylist.txt: 40353) -.google.com/pagead/ -# ||gogousenet.com^*/promo2.cgi (easylistchina+easylist.txt: 40348) -.gogousenet.com/.*/promo2\.cgi -# ||gogousenet.com^*/promo.cgi (easylistchina+easylist.txt: 40347) -.gogousenet.com/.*/promo\.cgi -# ||goadv.com^*/ads.js (easylistchina+easylist.txt: 40346) -.goadv.com/.*/ads\.js -# ||gmstatic.net^*/itunesbadge.png (easylistchina+easylist.txt: 40345) -.gmstatic.net/.*/itunesbadge\.png -# ||gmstatic.net^*/amazonbadge.png (easylistchina+easylist.txt: 40344) -.gmstatic.net/.*/amazonbadge\.png -# ||globalprocash.com/banner125.gif (easylistchina+easylist.txt: 40343) -.globalprocash.com/banner125\.gif -# ||glam.com^*?affiliateid= (easylistchina+easylist.txt: 40342) -.glam.com/.*\?affiliateid= -# ||glam.com/gad/ (easylistchina+easylist.txt: 40341) -.glam.com/gad/ -# ||giffgaff.com/banner/ (easylistchina+easylist.txt: 40340) -.giffgaff.com/banner/ -# ||giantrealm.com/saj/ (easylistchina+easylist.txt: 40338) -.giantrealm.com/saj/ -# ||gfaf-banners.s3.amazonaws.com^ (easylistchina+easylist.txt: 40335) -.gfaf-banners.s3.amazonaws.com -# ||getpaidforyourtime.org/basic-rotating-banner/ (easylistchina+easylist.txt: 40334) -.getpaidforyourtime.org/basic-rotating-banner/ -# ||geobanner.passion.com^ (easylistchina+easylist.txt: 40322) -.geobanner.passion.com -# ||geobanner.friendfinder.com^ (easylistchina+easylist.txt: 40321) -.geobanner.friendfinder.com -# ||geo.connexionsecure.com^ (easylistchina+easylist.txt: 40320) -.geo.connexionsecure.com -# ||gemini.yahoo.com^*^syndication^ (easylistchina+easylist.txt: 40318) -.gemini.yahoo.com/.*[^\w%.-]syndication[^\w%.-] -# ||gateways.s3.amazonaws.com^ (easylistchina+easylist.txt: 40315) -.gateways.s3.amazonaws.com -# ||gateway.fortunelounge.com^ (easylistchina+easylist.txt: 40314) -.gateway.fortunelounge.com -# ||gamingjobsonline.com/images/banner/ (easylistchina+easylist.txt: 40313) -.gamingjobsonline.com/images/banner/ -# ||gamestop.com^*/aflbanners/ (easylistchina+easylist.txt: 40312) -.gamestop.com/.*/aflbanners/ -# ||gamesports.net/img/betting_campaigns/ (easylistchina+easylist.txt: 40311) -.gamesports.net/img/betting_campaigns/ -# ||gamersaloon.com/images/banners/ (easylistchina+easylist.txt: 40310) -.gamersaloon.com/images/banners/ -# ||gamer-network.net/plugins/dfp/ (easylistchina+easylist.txt: 40309) -.gamer-network.net/plugins/dfp/ -# ||gameorc.net/a.html (easylistchina+easylist.txt: 40308) -.gameorc.net/a\.html -# ||gameduell.com/res/affiliate/ (easylistchina+easylist.txt: 40307) -.gameduell.com/res/affiliate/ -# ||fyiwashtenaw.com/remote_widget? (easylistchina+easylist.txt: 40303) -.fyiwashtenaw.com/remote_widget\? -# ||fxultima.com/banner/ (easylistchina+easylist.txt: 40301) -.fxultima.com/banner/ -# ||fxcc.com/promo/ (easylistchina+easylist.txt: 40300) -.fxcc.com/promo/ -# ||futuboxhd.com/js/bc.js (easylistchina+easylist.txt: 40298) -.futuboxhd.com/js/bc\.js -# ||furiousteam.com^*/external_banner/ (easylistchina+easylist.txt: 40297) -.furiousteam.com/.*/external_banner/ -# ||funtonia.com/promo/ (easylistchina+easylist.txt: 40295) -.funtonia.com/promo/ -# ||ft.pnop.com^ (easylistchina+easylist.txt: 40292) -.ft.pnop.com -# ||frontsight.com^*/banners/ (easylistchina+easylist.txt: 40291) -.frontsight.com/.*/banners/ -# ||freetrafficsystem.com/fts/ban/ (easylistchina+easylist.txt: 40285) -.freetrafficsystem.com/fts/ban/ -# ||freecycle.org^*/sponsors/ (easylistchina+easylist.txt: 40284) -.freecycle.org/.*/sponsors/ -# ||free-football.tv/images/usd/ (easylistchina+easylist.txt: 40283) -.free-football.tv/images/usd/ -# ||freakshare.net/banner/ (easylistchina+easylist.txt: 40282) -.freakshare.net/banner/ -# ||freakshare.com/?ref= (easylistchina+easylist.txt: 40280) -.freakshare.com/\?ref= -# ||fragfestservers.com/bannerb.gif (easylistchina+easylist.txt: 40279) -.fragfestservers.com/bannerb\.gif -# ||forumimg.ipmart.com/swf/img.php (easylistchina+easylist.txt: 40278) -.forumimg.ipmart.com/swf/img\.php -# ||fortune5minutes.com^*/banner_ (easylistchina+easylist.txt: 40277) -.fortune5minutes.com/.*/banner_ -# ||footymad.net/partners/ (easylistchina+easylist.txt: 40275) -.footymad.net/partners/ -# ||followfairy.com/followfairy300x250.jpg (easylistchina+easylist.txt: 40274) -.followfairy.com/followfairy300x250\.jpg -# ||fncstatic.com^*/business-exchange.html (easylistchina+easylist.txt: 40273) -.fncstatic.com/.*/business-exchange\.html -# ||flower.com/img/lsh/ (easylistchina+easylist.txt: 40272) -.flower.com/img/lsh/ -# ||firecenter.pl/banners/ (easylistchina+easylist.txt: 40266) -.firecenter.pl/banners/ -# ||filterforge.com/images/banners/ (easylistchina+easylist.txt: 40264) -.filterforge.com/images/banners/ -# ||fileserver1.net/download (easylistchina+easylist.txt: 40261) -.fileserver1.net/download -# ||filepost.com/static/images/bn/ (easylistchina+easylist.txt: 40259) -.filepost.com/static/images/bn/ -# ||fileparadox.com/images/banner/ (easylistchina+easylist.txt: 40258) -.fileparadox.com/images/banner/ -# ||filejungle.com/images/banner/ (easylistchina+easylist.txt: 40256) -.filejungle.com/images/banner/ -# ||filefactory.com^*/refer.php?hash= (easylistchina+easylist.txt: 40255) -.filefactory.com/.*/refer\.php\?hash= -# ||feeds.logicbuy.com^ (easylistchina+easylist.txt: 40251) -.feeds.logicbuy.com -# ||feedburner.com/~a/ (easylistchina+easylist.txt: 40250) -.feedburner.com/~a/ -# ||fatburningfurnace.com^*/fbf-banner- (easylistchina+easylist.txt: 40248) -.fatburningfurnace.com/.*/fbf-banner- -# ||fastcccam.com/images/fcbanner2.gif (easylistchina+easylist.txt: 40246) -.fastcccam.com/images/fcbanner2\.gif -# ||fapturbo.com/testoid/ (easylistchina+easylist.txt: 40244) -.fapturbo.com/testoid/ -# ||fantasyplayers.com/templates/banner_code. (easylistchina+easylist.txt: 40242) -.fantasyplayers.com/templates/banner_code\. -# ||familytreedna.com/img/affiliates/ (easylistchina+easylist.txt: 40240) -.familytreedna.com/img/affiliates/ -# ||fairfaxregional.com.au/proxy/commercial-partner-solar/ (easylistchina+easylist.txt: 40239) -.fairfaxregional.com.au/proxy/commercial-partner-solar/ -# ||exwp.org/partners/ (easylistchina+easylist.txt: 40237) -.exwp.org/partners/ -# ||extras.mnginteractive.com^*/todaysdeals.gif (easylistchina+easylist.txt: 40236) -.extras.mnginteractive.com/.*/todaysdeals\.gif -# ||extras.mercurynews.com/tapin_directory/ (easylistchina+easylist.txt: 40235) -.extras.mercurynews.com/tapin_directory/ -# ||extensoft.com/artisteer/banners/ (easylistchina+easylist.txt: 40234) -.extensoft.com/artisteer/banners/ -# ||ext.theglobalweb.com^ (easylistchina+easylist.txt: 40232) -.ext.theglobalweb.com -# ||expekt.com/affiliates/ (easylistchina+easylist.txt: 40230) -.expekt.com/affiliates/ -# ||exoplanetwar.com/l/landing.php? (easylistchina+easylist.txt: 40229) -.exoplanetwar.com/l/landing\.php\? -# ||everestpoker.com^*/?adv= (easylistchina+easylist.txt: 40228) -.everestpoker.com/.*/\?adv= -# ||events.kalooga.com^ (easylistchina+easylist.txt: 40227) -.events.kalooga.com -# ||euwidget.imshopping.com^ (easylistchina+easylist.txt: 40226) -.euwidget.imshopping.com -# ||europolitique.info^*/pub/ (easylistchina+easylist.txt: 40225) -.europolitique.info/.*/pub/ -# ||esport-betting.com^*/betbanner/ (easylistchina+easylist.txt: 40220) -.esport-betting.com/.*/betbanner/ -# ||epowernetworktrackerimages.s3.amazonaws.com^ (easylistchina+easylist.txt: 40218) -.epowernetworktrackerimages.s3.amazonaws.com -# ||eplreplays.com/wl/ (easylistchina+easylist.txt: 40217) -.eplreplays.com/wl/ -# ||epimg.net/js/pbs/ (easylistchina+easylist.txt: 40216) -.epimg.net/js/pbs/ -# ||enticelabs.com/el/ (easylistchina+easylist.txt: 40215) -.enticelabs.com/el/ -# ||emsisoft.com/bnr/ (easylistchina+easylist.txt: 40213) -.emsisoft.com/bnr/ -# ||elliottwave.com/fw/regular_leaderboard.js (easylistchina+easylist.txt: 40210) -.elliottwave.com/fw/regular_leaderboard\.js -# ||edgecastcdn.net^*.barstoolsports.com/wp-content/banners/ (easylistchina+easylist.txt: 40206) -.edgecastcdn.net/.*\.barstoolsports\.com/wp-content/banners/ -# ||ectaco-store.com^*/promo.jsp? (easylistchina+easylist.txt: 40204) -.ectaco-store.com/.*/promo\.jsp\? -# ||echineselearning.com^*/banner.jpg (easylistchina+easylist.txt: 40203) -.echineselearning.com/.*/banner\.jpg -# ||ebladestore.com^*/banners/ (easylistchina+easylist.txt: 40201) -.ebladestore.com/.*/banners/ -# ||ebaystatic.com/aw/signin/ebay-signin-toyota- (easylistchina+easylist.txt: 40200) -.ebaystatic.com/aw/signin/ebay-signin-toyota- -# ||easyretiredmillionaire.com/img/aff-img/ (easylistchina+easylist.txt: 40197) -.easyretiredmillionaire.com/img/aff-img/ -# ||easy-share.com/images/es20/ (easylistchina+easylist.txt: 40196) -.easy-share.com/images/es20/ -# ||e-tailwebstores.com/accounts/default1/banners/ (easylistchina+easylist.txt: 40194) -.e-tailwebstores.com/accounts/default1/banners/ -# ||dynw.com/banner (easylistchina+easylist.txt: 40193) -.dynw.com/banner -# ||dyl3p6so5yozo.cloudfront.net^ (easylistchina+easylist.txt: 40191) -.dyl3p6so5yozo.cloudfront.net -# ||dycpc40hvg4ki.cloudfront.net^ (easylistchina+easylist.txt: 40190) -.dycpc40hvg4ki.cloudfront.net -# ||dy48bnzanqw0v.cloudfront.net^ (easylistchina+easylist.txt: 40189) -.dy48bnzanqw0v.cloudfront.net -# ||dxqd86uz345mg.cloudfront.net^ (easylistchina+easylist.txt: 40188) -.dxqd86uz345mg.cloudfront.net -# ||dxq6c0tx3v6mm.cloudfront.net^ (easylistchina+easylist.txt: 40187) -.dxq6c0tx3v6mm.cloudfront.net -# ||dx5qvhwg92mjd.cloudfront.net^ (easylistchina+easylist.txt: 40186) -.dx5qvhwg92mjd.cloudfront.net -# ||dvt4pepo9om3r.cloudfront.net^ (easylistchina+easylist.txt: 40184) -.dvt4pepo9om3r.cloudfront.net -# ||dvf2u7vwmkr5w.cloudfront.net^ (easylistchina+easylist.txt: 40183) -.dvf2u7vwmkr5w.cloudfront.net -# ||duct5ntjian71.cloudfront.net^ (easylistchina+easylist.txt: 40181) -.duct5ntjian71.cloudfront.net -# ||dttek.com/sponsors/ (easylistchina+easylist.txt: 40180) -.dttek.com/sponsors/ -# ||droidnetwork.net/img/vendors/ (easylistchina+easylist.txt: 40178) -.droidnetwork.net/img/vendors/ -# ||droidnetwork.net/img/dt-atv160.jpg (easylistchina+easylist.txt: 40177) -.droidnetwork.net/img/dt-atv160\.jpg -# ||dreamstime.com/refbanner- (easylistchina+easylist.txt: 40176) -.dreamstime.com/refbanner- -# ||dreamstime.com/banner/ (easylistchina+easylist.txt: 40174) -.dreamstime.com/banner/ -# ||dr8pk6ovub897.cloudfront.net^ (easylistchina+easylist.txt: 40169) -.dr8pk6ovub897.cloudfront.net -# ||dqhi3ea93ztgv.cloudfront.net^ (easylistchina+easylist.txt: 40168) -.dqhi3ea93ztgv.cloudfront.net -# ||dq2tgxnc2knif.cloudfront.net^ (easylistchina+easylist.txt: 40167) -.dq2tgxnc2knif.cloudfront.net -# ||dpsq2uzakdgqz.cloudfront.net^ (easylistchina+easylist.txt: 40166) -.dpsq2uzakdgqz.cloudfront.net -# ||dp51h10v6ggpa.cloudfront.net^ (easylistchina+easylist.txt: 40165) -.dp51h10v6ggpa.cloudfront.net -# ||dotz123.com/run.php? (easylistchina+easylist.txt: 40160) -.dotz123.com/run\.php\? -# ||dot.tk/urlfwd/searchbar/bar.html (easylistchina+easylist.txt: 40159) -.dot.tk/urlfwd/searchbar/bar\.html -# ||dorabet.com/banner/ (easylistchina+easylist.txt: 40158) -.dorabet.com/banner/ -# ||domainnamesales.com/return_js.php? (easylistchina+easylist.txt: 40157) -.domainnamesales.com/return_js\.php\? -# ||domaingateway.com/js/redirect-min.js (easylistchina+easylist.txt: 40156) -.domaingateway.com/js/redirect-min\.js -# ||dntrck.com/trax? (easylistchina+easylist.txt: 40154) -.dntrck.com/trax\? -# ||dm8srf206hien.cloudfront.net^ (easylistchina+easylist.txt: 40153) -.dm8srf206hien.cloudfront.net -# ||dm0acvguygm9h.cloudfront.net^ (easylistchina+easylist.txt: 40152) -.dm0acvguygm9h.cloudfront.net -# ||dlupv9uqtjlie.cloudfront.net^ (easylistchina+easylist.txt: 40151) -.dlupv9uqtjlie.cloudfront.net -# ||dl5v5atodo7gn.cloudfront.net^ (easylistchina+easylist.txt: 40150) -.dl5v5atodo7gn.cloudfront.net -# ||dl392qndlveq0.cloudfront.net^ (easylistchina+easylist.txt: 40149) -.dl392qndlveq0.cloudfront.net -# ||dkdwv3lcby5zi.cloudfront.net^ (easylistchina+easylist.txt: 40148) -.dkdwv3lcby5zi.cloudfront.net -# ||dkd69bwkvrht1.cloudfront.net^ (easylistchina+easylist.txt: 40147) -.dkd69bwkvrht1.cloudfront.net -# ||djlf5xdlz7m8m.cloudfront.net^ (easylistchina+easylist.txt: 40146) -.djlf5xdlz7m8m.cloudfront.net -# ||dizixdllzznrf.cloudfront.net^ (easylistchina+easylist.txt: 40145) -.dizixdllzznrf.cloudfront.net -# ||disy2s34euyqm.cloudfront.net^ (easylistchina+easylist.txt: 40144) -.disy2s34euyqm.cloudfront.net -# ||disqus.com/listPromoted? (easylistchina+easylist.txt: 40143) -.disqus.com/listPromoted\? -# ||display.digitalriver.com^ (easylistchina+easylist.txt: 40142) -.display.digitalriver.com -# ||digitalsatellite.tv/banners/ (easylistchina+easylist.txt: 40139) -.digitalsatellite.tv/banners/ -# ||digitalmediacommunications.com/belleville/employment/ (easylistchina+easylist.txt: 40138) -.digitalmediacommunications.com/belleville/employment/ -# ||dff7tx5c2qbxc.cloudfront.net^ (easylistchina+easylist.txt: 40136) -.dff7tx5c2qbxc.cloudfront.net -# ||dew9ckzjyt2gn.cloudfront.net^ (easylistchina+easylist.txt: 40135) -.dew9ckzjyt2gn.cloudfront.net -# ||devil-bet.com/banner/ (easylistchina+easylist.txt: 40134) -.devil-bet.com/banner/ -# ||developermedia.com/a.min.js (easylistchina+easylist.txt: 40133) -.developermedia.com/a\.min\.js -# ||dev-cms.com^*/promobanners/ (easylistchina+easylist.txt: 40132) -.dev-cms.com/.*/promobanners/ -# ||detroitmedia.com/jfry/ (easylistchina+easylist.txt: 40131) -.detroitmedia.com/jfry/ -# ||desperateseller.co.uk/affiliates/ (easylistchina+easylist.txt: 40130) -.desperateseller.co.uk/affiliates/ -# ||deskbabes.com/ref.php? (easylistchina+easylist.txt: 40129) -.deskbabes.com/ref\.php\? -# ||depositfiles.com^*.php?ref= (easylistchina+easylist.txt: 40127) -.depositfiles.com/.*\.php\?ref= -# ||dennis.co.uk^*/siteskins/ (easylistchina+easylist.txt: 40126) -.dennis.co.uk/.*/siteskins/ -# ||dealtoday.com.mt/banners/ (easylistchina+easylist.txt: 40123) -.dealtoday.com.mt/banners/ -# ||deals4thecure.com/widgets/*?affiliateurl= (easylistchina+easylist.txt: 40121) -.deals4thecure.com/widgets/.*\?affiliateurl= -# ||ddwht76d9jvfl.cloudfront.net^ (easylistchina+easylist.txt: 40116) -.ddwht76d9jvfl.cloudfront.net -# ||dbam.dashbida.com^ (easylistchina+easylist.txt: 40115) -.dbam.dashbida.com -# ||datakl.com/banner/ (easylistchina+easylist.txt: 40112) -.datakl.com/banner/ -# ||datafeedfile.com/widget/readywidget/ (easylistchina+easylist.txt: 40111) -.datafeedfile.com/widget/readywidget/ -# ||data.neuroxmedia.com^ (easylistchina+easylist.txt: 40110) -.data.neuroxmedia.com -# ||dasfdasfasdf.no-ip.info^ (easylistchina+easylist.txt: 40109) -.dasfdasfasdf.no-ip.info -# ||dart.clearchannel.com^ (easylistchina+easylist.txt: 40108) -.dart.clearchannel.com -# ||dapatwang.com/images/banner/ (easylistchina+easylist.txt: 40107) -.dapatwang.com/images/banner/ -# ||dal9hkyfi0m0n.cloudfront.net^ (easylistchina+easylist.txt: 40106) -.dal9hkyfi0m0n.cloudfront.net -# ||d8qy7md4cj3gz.cloudfront.net^ (easylistchina+easylist.txt: 40104) -.d8qy7md4cj3gz.cloudfront.net -# ||d6bdy3eto8fyu.cloudfront.net^ (easylistchina+easylist.txt: 40103) -.d6bdy3eto8fyu.cloudfront.net -# ||d5pvnbpawsaav.cloudfront.net^ (easylistchina+easylist.txt: 40102) -.d5pvnbpawsaav.cloudfront.net -# ||d3vc1nm9xbncz5.cloudfront.net^ (easylistchina+easylist.txt: 40101) -.d3vc1nm9xbncz5.cloudfront.net -# ||d3tdefw8pwfkbk.cloudfront.net^ (easylistchina+easylist.txt: 40100) -.d3tdefw8pwfkbk.cloudfront.net -# ||d3t9ip55bsuxrf.cloudfront.net^ (easylistchina+easylist.txt: 40099) -.d3t9ip55bsuxrf.cloudfront.net -# ||d3t2wca0ou3lqz.cloudfront.net^ (easylistchina+easylist.txt: 40098) -.d3t2wca0ou3lqz.cloudfront.net -# ||d3qszud4qdthr8.cloudfront.net^ (easylistchina+easylist.txt: 40097) -.d3qszud4qdthr8.cloudfront.net -# ||d3q2dpprdsteo.cloudfront.net^ (easylistchina+easylist.txt: 40096) -.d3q2dpprdsteo.cloudfront.net -# ||d3pkae9owd2lcf.cloudfront.net^ (easylistchina+easylist.txt: 40095) -.d3pkae9owd2lcf.cloudfront.net -# ||d3p9ql8flgemg7.cloudfront.net^ (easylistchina+easylist.txt: 40094) -.d3p9ql8flgemg7.cloudfront.net -# ||d3nvrqlo8rj1kw.cloudfront.net^ (easylistchina+easylist.txt: 40093) -.d3nvrqlo8rj1kw.cloudfront.net -# ||d3m41swuqq4sv5.cloudfront.net^ (easylistchina+easylist.txt: 40092) -.d3m41swuqq4sv5.cloudfront.net -# ||d3lzezfa753mqu.cloudfront.net^ (easylistchina+easylist.txt: 40091) -.d3lzezfa753mqu.cloudfront.net -# ||d3lvr7yuk4uaui.cloudfront.net^ (easylistchina+easylist.txt: 40090) -.d3lvr7yuk4uaui.cloudfront.net -# ||d3iwjrnl4m67rd.cloudfront.net^ (easylistchina+easylist.txt: 40089) -.d3iwjrnl4m67rd.cloudfront.net -# ||d3irruagotonpp.cloudfront.net^ (easylistchina+easylist.txt: 40088) -.d3irruagotonpp.cloudfront.net -# ||d3fzrm6pcer44x.cloudfront.net^ (easylistchina+easylist.txt: 40087) -.d3fzrm6pcer44x.cloudfront.net -# ||d3f9mcik999dte.cloudfront.net^ (easylistchina+easylist.txt: 40086) -.d3f9mcik999dte.cloudfront.net -# ||d3dphmosjk9rot.cloudfront.net^ (easylistchina+easylist.txt: 40085) -.d3dphmosjk9rot.cloudfront.net -# ||d3bvcf24wln03d.cloudfront.net^ (easylistchina+easylist.txt: 40084) -.d3bvcf24wln03d.cloudfront.net -# ||d39xqloz8t5a6x.cloudfront.net^ (easylistchina+easylist.txt: 40083) -.d39xqloz8t5a6x.cloudfront.net -# ||d38r21vtgndgb1.cloudfront.net^ (easylistchina+easylist.txt: 40082) -.d38r21vtgndgb1.cloudfront.net -# ||d38pxm3dmrdu6d.cloudfront.net^ (easylistchina+easylist.txt: 40081) -.d38pxm3dmrdu6d.cloudfront.net -# ||d37kzqe5knnh6t.cloudfront.net^ (easylistchina+easylist.txt: 40080) -.d37kzqe5knnh6t.cloudfront.net -# ||d34rdvn2ky3gnm.cloudfront.net^ (easylistchina+easylist.txt: 40079) -.d34rdvn2ky3gnm.cloudfront.net -# ||d34obr29voew8l.cloudfront.net^ (easylistchina+easylist.txt: 40078) -.d34obr29voew8l.cloudfront.net -# ||d33otidwg56k90.cloudfront.net^ (easylistchina+easylist.txt: 40077) -.d33otidwg56k90.cloudfront.net -# ||d33f10u0pfpplc.cloudfront.net^ (easylistchina+easylist.txt: 40076) -.d33f10u0pfpplc.cloudfront.net -# ||d32pxqbknuxsuy.cloudfront.net^ (easylistchina+easylist.txt: 40075) -.d32pxqbknuxsuy.cloudfront.net -# ||d31807xkria1x4.cloudfront.net^ (easylistchina+easylist.txt: 40074) -.d31807xkria1x4.cloudfront.net -# ||d2z1smm3i01tnr.cloudfront.net^ (easylistchina+easylist.txt: 40073) -.d2z1smm3i01tnr.cloudfront.net -# ||d2yhukq7vldf1u.cloudfront.net^ (easylistchina+easylist.txt: 40072) -.d2yhukq7vldf1u.cloudfront.net -# ||d2vt6q0n0iy66w.cloudfront.net^ (easylistchina+easylist.txt: 40071) -.d2vt6q0n0iy66w.cloudfront.net -# ||d2v9ajh2eysdau.cloudfront.net^ (easylistchina+easylist.txt: 40070) -.d2v9ajh2eysdau.cloudfront.net -# ||d2v4glj2m8yzg5.cloudfront.net^ (easylistchina+easylist.txt: 40069) -.d2v4glj2m8yzg5.cloudfront.net -# ||d2ue9k1rhsumed.cloudfront.net^ (easylistchina+easylist.txt: 40068) -.d2ue9k1rhsumed.cloudfront.net -# ||d2ubicnllnnszy.cloudfront.net^ (easylistchina+easylist.txt: 40067) -.d2ubicnllnnszy.cloudfront.net -# ||d2tnimpzlb191i.cloudfront.net^ (easylistchina+easylist.txt: 40066) -.d2tnimpzlb191i.cloudfront.net -# ||d2tgev5wuprbqq.cloudfront.net^ (easylistchina+easylist.txt: 40065) -.d2tgev5wuprbqq.cloudfront.net -# ||d2s64zaa9ua7uv.cloudfront.net^ (easylistchina+easylist.txt: 40064) -.d2s64zaa9ua7uv.cloudfront.net -# ||d2r359adnh3sfn.cloudfront.net^ (easylistchina+easylist.txt: 40063) -.d2r359adnh3sfn.cloudfront.net -# ||d2plxos94peuwp.cloudfront.net^ (easylistchina+easylist.txt: 40062) -.d2plxos94peuwp.cloudfront.net -# ||d2pgy8h4i30on1.cloudfront.net^ (easylistchina+easylist.txt: 40061) -.d2pgy8h4i30on1.cloudfront.net -# ||d2omcicc3a4zlg.cloudfront.net^ (easylistchina+easylist.txt: 40060) -.d2omcicc3a4zlg.cloudfront.net -# ||d2oallm7wrqvmi.cloudfront.net^ (easylistchina+easylist.txt: 40059) -.d2oallm7wrqvmi.cloudfront.net -# ||d2o307dm5mqftz.cloudfront.net^ (easylistchina+easylist.txt: 40058) -.d2o307dm5mqftz.cloudfront.net -# ||d2nlytvx51ywh9.cloudfront.net^ (easylistchina+easylist.txt: 40057) -.d2nlytvx51ywh9.cloudfront.net -# ||d2mq0uzafv8ytp.cloudfront.net^ (easylistchina+easylist.txt: 40056) -.d2mq0uzafv8ytp.cloudfront.net -# ||d2mic0r0bo3i6z.cloudfront.net^ (easylistchina+easylist.txt: 40055) -.d2mic0r0bo3i6z.cloudfront.net -# ||d2ipklohrie3lo.cloudfront.net^ (easylistchina+easylist.txt: 40054) -.d2ipklohrie3lo.cloudfront.net -# ||d2hap2bsh1k9lw.cloudfront.net^ (easylistchina+easylist.txt: 40053) -.d2hap2bsh1k9lw.cloudfront.net -# ||d2gz6iop9uxobu.cloudfront.net^ (easylistchina+easylist.txt: 40052) -.d2gz6iop9uxobu.cloudfront.net -# ||d2gtlljtkeiyzd.cloudfront.net^ (easylistchina+easylist.txt: 40051) -.d2gtlljtkeiyzd.cloudfront.net -# ||d2gpgaupalra1d.cloudfront.net^ (easylistchina+easylist.txt: 40050) -.d2gpgaupalra1d.cloudfront.net -# ||d2dxgm96wvaa5j.cloudfront.net^ (easylistchina+easylist.txt: 40049) -.d2dxgm96wvaa5j.cloudfront.net -# ||d2d2lbvq8xirbs.cloudfront.net^ (easylistchina+easylist.txt: 40048) -.d2d2lbvq8xirbs.cloudfront.net -# ||d2cxkkxhecdzsq.cloudfront.net^ (easylistchina+easylist.txt: 40047) -.d2cxkkxhecdzsq.cloudfront.net -# ||d2bgg7rjywcwsy.cloudfront.net^ (easylistchina+easylist.txt: 40046) -.d2bgg7rjywcwsy.cloudfront.net -# ||d2b65ihpmocv7w.cloudfront.net^ (easylistchina+easylist.txt: 40045) -.d2b65ihpmocv7w.cloudfront.net -# ||d2b2x1ywompm1b.cloudfront.net^ (easylistchina+easylist.txt: 40044) -.d2b2x1ywompm1b.cloudfront.net -# ||d2anfhdgjxf8s1.cloudfront.net^ (easylistchina+easylist.txt: 40043) -.d2anfhdgjxf8s1.cloudfront.net -# ||d29r6igjpnoykg.cloudfront.net^ (easylistchina+easylist.txt: 40041) -.d29r6igjpnoykg.cloudfront.net -# ||d287x05ve9a63s.cloudfront.net^ (easylistchina+easylist.txt: 40040) -.d287x05ve9a63s.cloudfront.net -# ||d27jt7xr4fq3e8.cloudfront.net^ (easylistchina+easylist.txt: 40039) -.d27jt7xr4fq3e8.cloudfront.net -# ||d26wy0pxd3qqpv.cloudfront.net^ (easylistchina+easylist.txt: 40038) -.d26wy0pxd3qqpv.cloudfront.net -# ||d26j9bp9bq4uhd.cloudfront.net^ (easylistchina+easylist.txt: 40037) -.d26j9bp9bq4uhd.cloudfront.net -# ||d26dzd2k67we08.cloudfront.net^ (easylistchina+easylist.txt: 40036) -.d26dzd2k67we08.cloudfront.net -# ||d25xkbr68qqtcn.cloudfront.net^ (easylistchina+easylist.txt: 40035) -.d25xkbr68qqtcn.cloudfront.net -# ||d25ruj6ht8bs1.cloudfront.net^ (easylistchina+easylist.txt: 40034) -.d25ruj6ht8bs1.cloudfront.net -# ||d23nyyb6dc29z6.cloudfront.net^ (easylistchina+easylist.txt: 40033) -.d23nyyb6dc29z6.cloudfront.net -# ||d23guct4biwna6.cloudfront.net^ (easylistchina+easylist.txt: 40032) -.d23guct4biwna6.cloudfront.net -# ||d1zgderxoe1a.cloudfront.net^ (easylistchina+easylist.txt: 40031) -.d1zgderxoe1a.cloudfront.net -# ||d1wa9546y9kg0n.cloudfront.net/index.js (easylistchina+easylist.txt: 40030) -.d1wa9546y9kg0n.cloudfront.net/index\.js -# ||d1vbm0eveofcle.cloudfront.net^ (easylistchina+easylist.txt: 40029) -.d1vbm0eveofcle.cloudfront.net -# ||d1spb7fplenrp4.cloudfront.net^ (easylistchina+easylist.txt: 40028) -.d1spb7fplenrp4.cloudfront.net -# ||d1pdpbxj733bb1.cloudfront.net^ (easylistchina+easylist.txt: 40027) -.d1pdpbxj733bb1.cloudfront.net -# ||d1pcttwib15k25.cloudfront.net^ (easylistchina+easylist.txt: 40026) -.d1pcttwib15k25.cloudfront.net -# ||d1noellhv8fksc.cloudfront.net^ (easylistchina+easylist.txt: 40025) -.d1noellhv8fksc.cloudfront.net -# ||d1k74lgicilrr3.cloudfront.net^ (easylistchina+easylist.txt: 40024) -.d1k74lgicilrr3.cloudfront.net -# ||d1gojtoka5qi10.cloudfront.net^ (easylistchina+easylist.txt: 40023) -.d1gojtoka5qi10.cloudfront.net -# ||d1fo96xm8fci0r.cloudfront.net^ (easylistchina+easylist.txt: 40022) -.d1fo96xm8fci0r.cloudfront.net -# ||d1ey3fksimezm4.cloudfront.net^ (easylistchina+easylist.txt: 40021) -.d1ey3fksimezm4.cloudfront.net -# ||d1ep3cn6qx0l3z.cloudfront.net^ (easylistchina+easylist.txt: 40020) -.d1ep3cn6qx0l3z.cloudfront.net -# ||d1d95giojjkirt.cloudfront.net^ (easylistchina+easylist.txt: 40019) -.d1d95giojjkirt.cloudfront.net -# ||d1cl1sqtf3o420.cloudfront.net^ (easylistchina+easylist.txt: 40018) -.d1cl1sqtf3o420.cloudfront.net -# ||d1ade4ciw4bqyc.cloudfront.net^ (easylistchina+easylist.txt: 40017) -.d1ade4ciw4bqyc.cloudfront.net -# ||d19972r8wdpby8.cloudfront.net^ (easylistchina+easylist.txt: 40016) -.d19972r8wdpby8.cloudfront.net -# ||d17f2fxw547952.cloudfront.net^ (easylistchina+easylist.txt: 40015) -.d17f2fxw547952.cloudfront.net -# ||d15gt9gwxw5wu0.cloudfront.net^ (easylistchina+easylist.txt: 40014) -.d15gt9gwxw5wu0.cloudfront.net -# ||d15565yqt7pv7r.cloudfront.net^ (easylistchina+easylist.txt: 40013) -.d15565yqt7pv7r.cloudfront.net -# ||d140sbu1b1m3h0.cloudfront.net^ (easylistchina+easylist.txt: 40012) -.d140sbu1b1m3h0.cloudfront.net -# ||d13czkep7ax7nj.cloudfront.net^ (easylistchina+easylist.txt: 40011) -.d13czkep7ax7nj.cloudfront.net -# ||customcodebydan.com/images/banner.gif (easylistchina+easylist.txt: 40007) -.customcodebydan.com/images/banner\.gif -# ||cursecdn.com/banner/ (easylistchina+easylist.txt: 40005) -.cursecdn.com/banner/ -# ||cstv.com^*/sponsors/ (easylistchina+easylist.txt: 40003) -.cstv.com/.*/sponsors/ -# ||crowdsavings.com/r/banner/ (easylistchina+easylist.txt: 40000) -.crowdsavings.com/r/banner/ -# ||creatives.summitconnect.co.uk^ (easylistchina+easylist.txt: 39999) -.creatives.summitconnect.co.uk -# ||creatives.inmotionhosting.com^ (easylistchina+easylist.txt: 39998) -.creatives.inmotionhosting.com -# ||cpm.amateurcommunity.de^ (easylistchina+easylist.txt: 39997) -.cpm.amateurcommunity.de -# ||coxnewsweb.com^*/ads/ (easylistchina+easylist.txt: 39995) -.coxnewsweb.com/.*/ads/ -# ||continent8.com^*/bannerflow/ (easylistchina+easylist.txt: 39991) -.continent8.com/.*/bannerflow/ -# ||contentcastsyndication.com^*&banner (easylistchina+easylist.txt: 39990) -.contentcastsyndication.com/.*&banner -# ||content.livesportmedia.eu^ (easylistchina+easylist.txt: 39988) -.content.livesportmedia.eu -# ||consolpub.com/weatherwindow/ (easylistchina+easylist.txt: 39987) -.consolpub.com/weatherwindow/ -# ||connect.summit.co.uk^ (easylistchina+easylist.txt: 39985) -.connect.summit.co.uk -# ||complexmedianetwork.com/js/cmnUNT.js (easylistchina+easylist.txt: 39982) -.complexmedianetwork.com/js/cmnUNT\.js -# ||colorlabsproject.com^*/banner_ (easylistchina+easylist.txt: 39980) -.colorlabsproject.com/.*/banner_ -# ||cnnewmedia.co.uk/locker/ (easylistchina+easylist.txt: 39977) -.cnnewmedia.co.uk/locker/ -# ||cnhionline.com^*/rtj_ad.jpg (easylistchina+easylist.txt: 39976) -.cnhionline.com/.*/rtj_ad\.jpg -# ||cngroup.co.uk/service/creative/ (easylistchina+easylist.txt: 39975) -.cngroup.co.uk/service/creative/ -# ||cloudzer.net/ref/ (easylistchina+easylist.txt: 39973) -.cloudzer.net/ref/ -# ||cloudfront.net/tie.js (easylistchina+easylist.txt: 39969) -.cloudfront.net/tie\.js -# ||cloudfront.net/st.js (easylistchina+easylist.txt: 39968) -.cloudfront.net/st\.js -# ||cloudfront.net/scripts/js3caf.js (easylistchina+easylist.txt: 39967) -.cloudfront.net/scripts/js3caf\.js -# ||cloudfront.net/nimblebuy/ (easylistchina+easylist.txt: 39966) -.cloudfront.net/nimblebuy/ -# ||cloudfront.net/dfpd.js (easylistchina+easylist.txt: 39964) -.cloudfront.net/dfpd\.js -# ||clipdealer.com/?action=widget&*&partner= (easylistchina+easylist.txt: 39963) -.clipdealer.com/\?action=widget&.*&partner= -# ||clicktripz.com/scripts/js/ct.js (easylistchina+easylist.txt: 39962) -.clicktripz.com/scripts/js/ct\.js -# ||clicksure.com/img/resources/banner_ (easylistchina+easylist.txt: 39961) -.clicksure.com/img/resources/banner_ -# ||clickstrip.6wav.es^ (easylistchina+easylist.txt: 39960) -.clickstrip.6wav.es -# ||click.eyk.net^ (easylistchina+easylist.txt: 39959) -.click.eyk.net -# ||clarity.abacast.com^ (easylistchina+easylist.txt: 39958) -.clarity.abacast.com -# ||cjmooter.xcache.kinxcdn.com^ (easylistchina+easylist.txt: 39957) -.cjmooter.xcache.kinxcdn.com -# ||citygridmedia.com/ads/ (easylistchina+easylist.txt: 39956) -.citygridmedia.com/ads/ -# ||cimg.in/images/banners/ (easylistchina+easylist.txt: 39954) -.cimg.in/images/banners/ -# ||chriscasconi.com/nostalgia_ad. (easylistchina+easylist.txt: 39953) -.chriscasconi.com/nostalgia_ad\. -# ||cgmlab.com/tools/geotarget/custombanner.js (easylistchina+easylist.txt: 39948) -.cgmlab.com/tools/geotarget/custombanner\.js -# ||cfcdn.com/showcase_sample/search_widget/ (easylistchina+easylist.txt: 39947) -.cfcdn.com/showcase_sample/search_widget/ -# ||cex.io/img/b/ (easylistchina+easylist.txt: 39945) -.cex.io/img/b/ -# ||cerebral.typn.com^ (easylistchina+easylist.txt: 39944) -.cerebral.typn.com -# ||centralmediaserver.com^*_side_bars.jpg (easylistchina+easylist.txt: 39942) -.centralmediaserver.com/.*_side_bars\.jpg -# ||cdnprk.com/scripts/js3caf.js (easylistchina+easylist.txt: 39941) -.cdnprk.com/scripts/js3caf\.js -# ||cdnprk.com/scripts/js3.js (easylistchina+easylist.txt: 39940) -.cdnprk.com/scripts/js3\.js -# ||cdnpark.com/scripts/js3.js (easylistchina+easylist.txt: 39939) -.cdnpark.com/scripts/js3\.js -# ||cdn.ndparking.com/js/init.min.js (easylistchina+easylist.txt: 39934) -.cdn.ndparking.com/js/init\.min\.js -# ||cdn.cdncomputer.com/js/main.js (easylistchina+easylist.txt: 39933) -.cdn.cdncomputer.com/js/main\.js -# ||cccam.co/banner_big.gif (easylistchina+easylist.txt: 39931) -.cccam.co/banner_big\.gif -# ||cbpirate.com/getimg.php? (easylistchina+easylist.txt: 39930) -.cbpirate.com/getimg\.php\? -# ||catholicweb.com^*/banners/ (easylistchina+easylist.txt: 39927) -.catholicweb.com/.*/banners/ -# ||casti.tv/adds/ (easylistchina+easylist.txt: 39926) -.casti.tv/adds/ -# ||castasap.com/publi2.html (easylistchina+easylist.txt: 39925) -.castasap.com/publi2\.html -# ||cashmyvideo.com/images/cashmyvideo_banner.gif (easylistchina+easylist.txt: 39923) -.cashmyvideo.com/images/cashmyvideo_banner\.gif -# ||cashmakingpowersites.com^*/banners/ (easylistchina+easylist.txt: 39922) -.cashmakingpowersites.com/.*/banners/ -# ||cash.neweramediaworks.com^ (easylistchina+easylist.txt: 39921) -.cash.neweramediaworks.com -# ||cas.clickability.com^ (easylistchina+easylist.txt: 39919) -.cas.clickability.com -# ||carbiz.in/affiliates-and-partners/ (easylistchina+easylist.txt: 39913) -.carbiz.in/affiliates-and-partners/ -# ||camelmedia.net^*/banners/ (easylistchina+easylist.txt: 39910) -.camelmedia.net/.*/banners/ -# ||cal-one.net/ellington/search_form.php? (easylistchina+easylist.txt: 39909) -.cal-one.net/ellington/search_form\.php\? -# ||cal-one.net/ellington/deals_widget.php? (easylistchina+easylist.txt: 39908) -.cal-one.net/ellington/deals_widget\.php\? -# ||cactusvpn.com/images/affiliates/ (easylistchina+easylist.txt: 39907) -.cactusvpn.com/images/affiliates/ -# ||cachefly.net/cricad.html (easylistchina+easylist.txt: 39906) -.cachefly.net/cricad\.html -# ||c.netu.tv^ (easylistchina+easylist.txt: 39905) -.c.netu.tv -# ||byzoo.org/script/tu*.js (easylistchina+easylist.txt: 39904) -.byzoo.org/script/tu.*\.js -# ||buyhatke.com/widgetBack/ (easylistchina+easylist.txt: 39900) -.buyhatke.com/widgetBack/ -# ||buy.com^*/affiliate/ (easylistchina+easylist.txt: 39899) -.buy.com/.*/affiliate/ -# ||businessnewswatch.ca/images/nnwbanner/ (easylistchina+easylist.txt: 39898) -.businessnewswatch.ca/images/nnwbanner/ -# ||burst.net/aff/ (easylistchina+easylist.txt: 39896) -.burst.net/aff/ -# ||bullguard.com^*/banners/ (easylistchina+easylist.txt: 39895) -.bullguard.com/.*/banners/ -# ||btr.domywife.com^ (easylistchina+easylist.txt: 39892) -.btr.domywife.com -# ||bruteforcesocialmedia.com/affiliates/ (easylistchina+easylist.txt: 39890) -.bruteforcesocialmedia.com/affiliates/ -# ||bruteforceseo.com/affiliates/ (easylistchina+easylist.txt: 39889) -.bruteforceseo.com/affiliates/ -# ||break.com^*/partnerpublish/ (easylistchina+easylist.txt: 39886) -.break.com/.*/partnerpublish/ -# ||bravenet.com/cserv.php (easylistchina+easylist.txt: 39884) -.bravenet.com/cserv\.php -# ||bplaced.net/pub/ (easylistchina+easylist.txt: 39883) -.bplaced.net/pub/ -# ||bpath.com/affiliates/ (easylistchina+easylist.txt: 39882) -.bpath.com/affiliates/ -# ||box.anchorfree.net^ (easylistchina+easylist.txt: 39881) -.box.anchorfree.net -# ||bosh.tv/hdplugin. (easylistchina+easylist.txt: 39880) -.bosh.tv/hdplugin\. -# ||borrowlenses.com/affiliate/ (easylistchina+easylist.txt: 39879) -.borrowlenses.com/affiliate/ -# ||booking.com^*;tmpl=banner_ (easylistchina+easylist.txt: 39876) -.booking.com/.*;tmpl=banner_ -# ||bollyrulez.net/media/adz/ (easylistchina+easylist.txt: 39874) -.bollyrulez.net/media/adz/ -# ||boago.com^*_Takeover_ (easylistchina+easylist.txt: 39873) -.boago.com/.*_Takeover_ -# ||bluhostedbanners.blucigs.com^ (easylistchina+easylist.txt: 39871) -.bluhostedbanners.blucigs.com -# ||bluesattv.net/bluesattvnet.gif (easylistchina+easylist.txt: 39870) -.bluesattv.net/bluesattvnet\.gif -# ||bluesattv.net/bluesat.swf (easylistchina+easylist.txt: 39869) -.bluesattv.net/bluesat\.swf -# ||bloodstock.uk.com/affiliates/ (easylistchina+easylist.txt: 39867) -.bloodstock.uk.com/affiliates/ -# ||blissful-sin.com/affiliates/ (easylistchina+easylist.txt: 39865) -.blissful-sin.com/affiliates/ -# ||blinkx.com/f2/overlays/ (easylistchina+easylist.txt: 39863) -.blinkx.com/f2/overlays/ -# ||blindferret.com/images/*_skin_ (easylistchina+easylist.txt: 39861) -.blindferret.com/images/.*_skin_ -# ||blamads-assets.s3.amazonaws.com^ (easylistchina+easylist.txt: 39860) -.blamads-assets.s3.amazonaws.com -# ||bl.wavecdn.de^ (easylistchina+easylist.txt: 39859) -.bl.wavecdn.de -# ||bitshare.com^*/banner/ (easylistchina+easylist.txt: 39857) -.bitshare.com/.*/banner/ -# ||binopt.net/banners/ (easylistchina+easylist.txt: 39853) -.binopt.net/banners/ -# ||bijk.com^*/banners/ (easylistchina+easylist.txt: 39851) -.bijk.com/.*/banners/ -# ||bigrock.in/affiliate/ (easylistchina+easylist.txt: 39850) -.bigrock.in/affiliate/ -# ||bidorbuy.co.za/jsp/system/referral.jsp? (easylistchina+easylist.txt: 39846) -.bidorbuy.co.za/jsp/system/referral\.jsp\? -# ||betterbills.com.au/widgets/ (easylistchina+easylist.txt: 39841) -.betterbills.com.au/widgets/ -# ||bet-at-home.com/oddbanner.aspx? (easylistchina+easylist.txt: 39839) -.bet-at-home.com/oddbanner\.aspx\? -# ||bestofmedia.com/ws/communicationSpot.php? (easylistchina+easylist.txt: 39838) -.bestofmedia.com/ws/communicationSpot\.php\? -# ||besthosting.ua/banner/ (easylistchina+easylist.txt: 39837) -.besthosting.ua/banner/ -# ||berush.com/images/whorush_120x120_ (easylistchina+easylist.txt: 39836) -.berush.com/images/whorush_120x120_ -# ||berush.com/images/semrush_banner_ (easylistchina+easylist.txt: 39835) -.berush.com/images/semrush_banner_ -# ||bergen.com^*/sponsoredby- (easylistchina+easylist.txt: 39833) -.bergen.com/.*/sponsoredby- -# ||bee4.biz/banners/ (easylistchina+easylist.txt: 39831) -.bee4.biz/banners/ -# ||beachcamera.com/assets/banners/ (easylistchina+easylist.txt: 39830) -.beachcamera.com/assets/banners/ -# ||bbcchannels.com/workspace/uploads/ (easylistchina+easylist.txt: 39827) -.bbcchannels.com/workspace/uploads/ -# ||banner.titancasino.com^ (easylistchina+easylist.txt: 39817) -.banner.titancasino.com -# ||banner.telefragged.com^ (easylistchina+easylist.txt: 39816) -.banner.telefragged.com -# ||banner.europacasino.com^ (easylistchina+easylist.txt: 39815) -.banner.europacasino.com -# ||banner.3ddownloads.com^ (easylistchina+easylist.txt: 39814) -.banner.3ddownloads.com -# ||banner.101xp.com^ (easylistchina+easylist.txt: 39813) -.banner.101xp.com -# ||bamstudent.com/files/banners/ (easylistchina+easylist.txt: 39809) -.bamstudent.com/files/banners/ -# ||ball2win.com/Affiliate/ (easylistchina+easylist.txt: 39808) -.ball2win.com/Affiliate/ -# ||babylon.com^*?affid= (easylistchina+easylist.txt: 39806) -.babylon.com/.*\?affid= -# ||babylon.com/trans_box/*&affiliate= (easylistchina+easylist.txt: 39805) -.babylon.com/trans_box/.*&affiliate= -# ||b92s.net/images/banners/ (easylistchina+easylist.txt: 39802) -.b92s.net/images/banners/ -# ||b92.putniktravel.com^ (easylistchina+easylist.txt: 39801) -.b92.putniktravel.com -# ||b.livesport.eu^ (easylistchina+easylist.txt: 39798) -.b.livesport.eu -# ||b.babylon.com^ (easylistchina+easylist.txt: 39797) -.b.babylon.com -# ||axandra.com/affiliates/ (easylistchina+easylist.txt: 39795) -.axandra.com/affiliates/ -# ||award.sitekeuring.net^ (easylistchina+easylist.txt: 39794) -.award.sitekeuring.net -# ||autoprivileges.net/news/ (easylistchina+easylist.txt: 39792) -.autoprivileges.net/news/ -# ||atomicpopularity.com/dfpd.js (easylistchina+easylist.txt: 39790) -.atomicpopularity.com/dfpd\.js -# ||astrology.com/partnerpages/ (easylistchina+easylist.txt: 39788) -.astrology.com/partnerpages/ -# ||astalavista.box.sk/c-astalink2a.jpg (easylistchina+easylist.txt: 39787) -.astalavista.box.sk/c-astalink2a\.jpg -# ||associmg.com^*.gif?tag- (easylistchina+easylist.txt: 39786) -.associmg.com/.*\.gif\?tag- -# ||assets.betterbills.com/widgets/ (easylistchina+easylist.txt: 39785) -.assets.betterbills.com/widgets/ -# ||artistdirect.com/partner/ (easylistchina+easylist.txt: 39782) -.artistdirect.com/partner/ -# ||arntrnassets.mediaspanonline.com^*_HP_wings_ (easylistchina+easylist.txt: 39781) -.arntrnassets.mediaspanonline.com/.*_HP_wings_ -# ||ard.ihookup.com^ (easylistchina+easylist.txt: 39780) -.ard.ihookup.com -# ||arcadetown.com/as/show.asp (easylistchina+easylist.txt: 39779) -.arcadetown.com/as/show\.asp -# ||apple.com/itunesaffiliates/ (easylistchina+easylist.txt: 39776) -.apple.com/itunesaffiliates/ -# ||appdevsecrets.com/images/nuts/ (easylistchina+easylist.txt: 39775) -.appdevsecrets.com/images/nuts/ -# ||apnonline.com.au/img/marketplace/*_ct50x50.gif (easylistchina+easylist.txt: 39774) -.apnonline.com.au/img/marketplace/.*_ct50x50\.gif -# ||api.ticketnetwork.com/Events/TopSelling/domain=nytimes.com (easylistchina+easylist.txt: 39773) -.api.ticketnetwork.com/Events/TopSelling/domain=nytimes\.com -# ||aolcdn.com/os/music/img/*-skin.jpg (easylistchina+easylist.txt: 39769) -.aolcdn.com/os/music/img/.*-skin\.jpg -# ||aolcdn.com/os/mapquest/promo-images/ (easylistchina+easylist.txt: 39768) -.aolcdn.com/os/mapquest/promo-images/ -# ||aolcdn.com/os/mapquest/marketing/promos/ (easylistchina+easylist.txt: 39767) -.aolcdn.com/os/mapquest/marketing/promos/ -# ||aol.co.uk^*/cobrand.js (easylistchina+easylist.txt: 39766) -.aol.co.uk/.*/cobrand\.js -# ||anonym.to/*findandtry.com (easylistchina+easylist.txt: 39764) -.anonym.to/.*findandtry\.com -# ||analytics.disneyinternational.com^ (easylistchina+easylist.txt: 39760) -.analytics.disneyinternational.com -# ||amazonaws.com/youpop/ (easylistchina+easylist.txt: 39757) -.amazonaws.com/youpop/ -# ||amazonaws.com/widgets.youcompare.com.au/ (easylistchina+easylist.txt: 39756) -.amazonaws.com/widgets\.youcompare\.com\.au/ -# ||amazonaws.com/streetpulse/ads/ (easylistchina+easylist.txt: 39755) -.amazonaws.com/streetpulse/ads/ -# ||amazonaws.com/skyscrpr.js (easylistchina+easylist.txt: 39754) -.amazonaws.com/skyscrpr\.js -# ||amazonaws.com/publishflow/ (easylistchina+easylist.txt: 39753) -.amazonaws.com/publishflow/ -# ||amazonaws.com/pmb-musics/download_itunes.png (easylistchina+easylist.txt: 39752) -.amazonaws.com/pmb-musics/download_itunes\.png -# ||amazonaws.com/photos.offers.analoganalytics.com/ (easylistchina+easylist.txt: 39750) -.amazonaws.com/photos\.offers\.analoganalytics\.com/ -# ||amazonaws.com/lms/sponsors/ (easylistchina+easylist.txt: 39748) -.amazonaws.com/lms/sponsors/ -# ||amazonaws.com/fvefwdds/ (easylistchina+easylist.txt: 39746) -.amazonaws.com/fvefwdds/ -# ||amazonaws.com/btrb-prd-banners/ (easylistchina+easylist.txt: 39743) -.amazonaws.com/btrb-prd-banners/ -# ||amazonaws.com/bo-assets/production/banner_attachments/ (easylistchina+easylist.txt: 39742) -.amazonaws.com/bo-assets/production/banner_attachments/ -# ||amazonaws.com/ad_w_intersitial.html (easylistchina+easylist.txt: 39739) -.amazonaws.com/ad_w_intersitial\.html -# ||alpsat.com/banner/ (easylistchina+easylist.txt: 39734) -.alpsat.com/banner/ -# ||alluremedia.com.au^*/campaigns/ (easylistchina+easylist.txt: 39733) -.alluremedia.com.au/.*/campaigns/ -# ||allsend.com/public/assets/images/ (easylistchina+easylist.txt: 39732) -.allsend.com/public/assets/images/ -# ||allposters.com^*/banners/ (easylistchina+easylist.txt: 39731) -.allposters.com/.*/banners/ -# ||algovid.com/player/get_player_vasts? (easylistchina+easylist.txt: 39730) -.algovid.com/player/get_player_vasts\? -# ||alexa.com^*/promotebuttons/ (easylistchina+easylist.txt: 39728) -.alexa.com/.*/promotebuttons/ -# ||akamaihd.net/lmedianet.js (easylistchina+easylist.txt: 39724) -.akamaihd.net/lmedianet\.js -# ||akamai.net^*/pics.drugstore.com/prodimg/promo/ (easylistchina+easylist.txt: 39723) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# ||ais.abacast.com^ (easylistchina+easylist.txt: 39718) -.ais.abacast.com -# ||airvpn.org/images/promotional/ (easylistchina+easylist.txt: 39717) -.airvpn.org/images/promotional/ -# ||airpushmarketing.s3.amazonaws.com^ (easylistchina+easylist.txt: 39716) -.airpushmarketing.s3.amazonaws.com -# ||agoda.net/banners/ (easylistchina+easylist.txt: 39714) -.agoda.net/banners/ -# ||agenda.complex.com^ (easylistchina+easylist.txt: 39713) -.agenda.complex.com -# ||affiliation.fotovista.com^ (easylistchina+easylist.txt: 39710) -.affiliation.fotovista.com -# ||affiliatesmedia.sbobet.com^ (easylistchina+easylist.txt: 39708) -.affiliatesmedia.sbobet.com -# ||affiliates.allposters.com^ (easylistchina+easylist.txt: 39702) -.affiliates.allposters.com -# ||affiliateprogram.keywordspy.com^ (easylistchina+easylist.txt: 39700) -.affiliateprogram.keywordspy.com -# ||affil.mupromo.com^ (easylistchina+easylist.txt: 39696) -.affil.mupromo.com -# ||aff.svjump.com^ (easylistchina+easylist.txt: 39695) -.aff.svjump.com -# ||aff.marathonbet.com^ (easylistchina+easylist.txt: 39694) -.aff.marathonbet.com -# ||aff.eteachergroup.com^ (easylistchina+easylist.txt: 39693) -.aff.eteachergroup.com -# ||adziff.com^*/zdcse.min.js (easylistchina+easylist.txt: 39690) -.adziff.com/.*/zdcse\.min\.js -# ||adz.zwee.ly^ (easylistchina+easylist.txt: 39689) -.adz.zwee.ly -# ||advanced-intelligence.com/banner (easylistchina+easylist.txt: 39688) -.advanced-intelligence.com/banner -# ||adss.dotdo.net^ (easylistchina+easylist.txt: 39686) -.adss.dotdo.net -# ||adscaspion.appspot.com^ (easylistchina+easylist.txt: 39683) -.adscaspion.appspot.com -# ||ads.tremorhub.com^ (easylistchina+easylist.txt: 39682) -.ads.tremorhub.com -# ||ads.mp.mydas.mobi^ (easylistchina+easylist.txt: 39681) -.ads.mp.mydas.mobi -# ||adr-*.vindicosuite.com^ (easylistchina+easylist.txt: 39679) -.adr-*./.*\.vindicosuite\.com[^\w%.-] -.adr-*.vindicosuite.com -# ||adplus.goo.mx^ (easylistchina+easylist.txt: 39678) -.adplus.goo.mx -# ||adn.ebay.com^ (easylistchina+easylist.txt: 39677) -.adn.ebay.com -# ||adingo.jp.eimg.jp^ (easylistchina+easylist.txt: 39674) -.adingo.jp.eimg.jp -# ||adf.ly/images/banners/ (easylistchina+easylist.txt: 39670) -.adf.ly/images/banners/ -# ||add.bugun.com.tr^ (easylistchina+easylist.txt: 39667) -.add.bugun.com.tr -# ||adap.tv/redir/client/static/as3adplayer.swf (easylistchina+easylist.txt: 39664) -.adap.tv/redir/client/static/as3adplayer\.swf -# ||ad.winningpartner.com^ (easylistchina+easylist.txt: 39660) -.ad.winningpartner.com -# ||ad.vidaroo.com^ (easylistchina+easylist.txt: 39659) -.ad.vidaroo.com -# ||ad.spielothek.so^ (easylistchina+easylist.txt: 39656) -.ad.spielothek.so -# ||ad.smartclip.net^ (easylistchina+easylist.txt: 39655) -.ad.smartclip.net -# ||ad.sensismediasmart.com.au^ (easylistchina+easylist.txt: 39653) -.ad.sensismediasmart.com.au -# ||ad.reklamport.com^ (easylistchina+easylist.txt: 39652) -.ad.reklamport.com -# ||ad.rambler.ru^ (easylistchina+easylist.txt: 39650) -.ad.rambler.ru -# ||ad.r.worldssl.net^ (easylistchina+easylist.txt: 39649) -.ad.r.worldssl.net -# ||ad.proxy.sh^ (easylistchina+easylist.txt: 39648) -.ad.proxy.sh -# ||ad.pickple.net^ (easylistchina+easylist.txt: 39646) -.ad.pickple.net -# ||ad.outsidehub.com^ (easylistchina+easylist.txt: 39645) -.ad.outsidehub.com -# ||ad.openmultimedia.biz^ (easylistchina+easylist.txt: 39644) -.ad.openmultimedia.biz -# ||ad.mesomorphosis.com^ (easylistchina+easylist.txt: 39641) -.ad.mesomorphosis.com -# ||ad.mail.ru^ (easylistchina+easylist.txt: 39640) -.ad.mail.ru -# ||ad.livere.co.kr^ (easylistchina+easylist.txt: 39639) -.ad.livere.co.kr -# ||ad.jamba.net^ (easylistchina+easylist.txt: 39635) -.ad.jamba.net -# ||ad.idgtn.net^ (easylistchina+easylist.txt: 39632) -.ad.idgtn.net -# ||ad.icasthq.com^ (easylistchina+easylist.txt: 39631) -.ad.icasthq.com -# ||ad.foxnetworks.com^ (easylistchina+easylist.txt: 39629) -.ad.foxnetworks.com -# ||ad.flux.com^ (easylistchina+easylist.txt: 39628) -.ad.flux.com -# ||ad.bitmedia.io^ (easylistchina+easylist.txt: 39626) -.ad.bitmedia.io -# ||ad.accessmediaproductions.com^ (easylistchina+easylist.txt: 39623) -.ad.accessmediaproductions.com -# ||ad.about.co.kr^ (easylistchina+easylist.txt: 39622) -.ad.about.co.kr -# ||abacast.com/banner/ (easylistchina+easylist.txt: 39619) -.abacast.com/banner/ -# ||a1channel.net/img/watch_now.gif (easylistchina+easylist.txt: 39617) -.a1channel.net/img/watch_now\.gif -# ||a1channel.net/img/downloadbtn2.png (easylistchina+easylist.txt: 39616) -.a1channel.net/img/downloadbtn2\.png -# ||a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com^ (easylistchina+easylist.txt: 39615) -.a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com -# ||a.watershed-publishing.com^ (easylistchina+easylist.txt: 39614) -.a.watershed-publishing.com -# ||a.ucoz.net^ (easylistchina+easylist.txt: 39613) -.a.ucoz.net -# ||a.livesportmedia.eu^ (easylistchina+easylist.txt: 39612) -.a.livesportmedia.eu -# ||80.94.76.4/abd.php? (easylistchina+easylist.txt: 39609) -.80.94.76.4/abd\.php\? -# ||770.com/banniere.php? (easylistchina+easylist.txt: 39608) -.770.com/banniere\.php\? -# ||6theory.com/pub/ (easylistchina+easylist.txt: 39607) -.6theory.com/pub/ -# ||4getlikes.com/promo/ (easylistchina+easylist.txt: 39604) -.4getlikes.com/promo/ -# ||3dots.co.il/pop/ (easylistchina+easylist.txt: 39603) -.3dots.co.il/pop/ -# ||247hd.net/ad| (easylistchina+easylist.txt: 39596) -.247hd.net/ad$ -# ||1whois.org/static/popup.js (easylistchina+easylist.txt: 39590) -.1whois.org/static/popup\.js -# ||1stag.com/main/img/banners/ (easylistchina+easylist.txt: 39589) -.1stag.com/main/img/banners/ -# ||1page.co.za/affiliate/ (easylistchina+easylist.txt: 39588) -.1page.co.za/affiliate/ -# ||178.238.233.242/open.js (easylistchina+easylist.txt: 39587) -.178.238.233.242/open\.js -# ||12dayswidget.com/widgets/ (easylistchina+easylist.txt: 39583) -.12dayswidget.com/widgets/ -# ||110mb.com/images/banners/ (easylistchina+easylist.txt: 39582) -.110mb.com/images/banners/ -# ||1-million-usd.com/images/banners/ (easylistchina+easylist.txt: 39578) -.1-million-usd.com/images/banners/ -# ||04stream.com/pop*.js (easylistchina+easylist.txt: 39577) -.04stream.com/pop.*\.js -# ||000webhost.com/images/banners/ (easylistchina+easylist.txt: 39576) -.000webhost.com/images/banners/ -# -api.adyoulike.com (easylistchina+easylist.txt: 39575) -/.*-api\.adyoulike\.com -.*-api.adyoulike.com*. -# ||xxxmatch.com^$popup (easylistchina+easylist.txt: 39571) -.xxxmatch.com -# ||xmatch.com^$popup (easylistchina+easylist.txt: 39566) -.xmatch.com -# ||watchmygf.com^$popup (easylistchina+easylist.txt: 39563) -.watchmygf.com -# ||vlexokrako.com^$popup (easylistchina+easylist.txt: 39561) -.vlexokrako.com -# ||turnefo.ru^$popup (easylistchina+easylist.txt: 39560) -.turnefo.ru -# ||trafficstars.com^$popup (easylistchina+easylist.txt: 39559) -.trafficstars.com -# ||trafficbroker.com^$popup (easylistchina+easylist.txt: 39557) -.trafficbroker.com -# ||trackvoluum.com^$popup (easylistchina+easylist.txt: 39556) -.trackvoluum.com -# ||pornbus.org^$popup (easylistchina+easylist.txt: 39540) -.pornbus.org -# ||playgirl.com^$popup (easylistchina+easylist.txt: 39536) -.playgirl.com -# ||pinkberrytube.com^$popup (easylistchina+easylist.txt: 39535) -.pinkberrytube.com -# ||needlive.com^$popup (easylistchina+easylist.txt: 39533) -.needlive.com -# ||ipvertising.com^$popup (easylistchina+easylist.txt: 39527) -.ipvertising.com -# ||herezera.com^$popup (easylistchina+easylist.txt: 39521) -.herezera.com -# ||freecamsexposed.com^$popup (easylistchina+easylist.txt: 39516) -.freecamsexposed.com -# ||flagads.net^$popup (easylistchina+easylist.txt: 39512) -.flagads.net -# ||fbay.tv^$popup (easylistchina+easylist.txt: 39510) -.fbay.tv -# ||exogripper.com^$popup (easylistchina+easylist.txt: 39509) -.exogripper.com -# ||ertya.com^$popup (easylistchina+easylist.txt: 39506) -.ertya.com -# ||easysexdate.com^$popup (easylistchina+easylist.txt: 39502) -.easysexdate.com -# ||connexionsafe.com^$popup (easylistchina+easylist.txt: 39499) -.connexionsafe.com -# ||buy404s.com^$popup (easylistchina+easylist.txt: 39495) -.buy404s.com -# ||bitterstrawberry.com^$popup (easylistchina+easylist.txt: 39494) -.bitterstrawberry.com -# ||adtgs.com^$popup (easylistchina+easylist.txt: 39486) -.adtgs.com -# ||3questionsgetthegirl.com^$popup (easylistchina+easylist.txt: 39483) -.3questionsgetthegirl.com -# ||33traffic.com^$popup (easylistchina+easylist.txt: 39481) -.33traffic.com -# ||careerjournalonline.com^$popup (easylistchina+easylist.txt: 38441) -.careerjournalonline.com -# ||metaffiliation.com^*^taff= (easylistchina+easylist.txt: 36866) -.metaffiliation.com/.*[^\w%.-]taff= -# ||metaffiliation.com^*^maff= (easylistchina+easylist.txt: 36865) -.metaffiliation.com/.*[^\w%.-]maff= -# ||ltassrv.com/serve/ (easylistchina+easylist.txt: 36757) -.ltassrv.com/serve/ -# ||ltassrv.com/goads.swf (easylistchina+easylist.txt: 36756) -.ltassrv.com/goads\.swf -# ||doubleclick.net/xbbe/creative/vast? (easylistchina+easylist.txt: 36067) -.doubleclick.net/xbbe/creative/vast\? -# ||doubleclick.net/N2/pfadx/video.marketwatch.com/ (easylistchina+easylist.txt: 36002) -.doubleclick.net/N2/pfadx/video\.marketwatch\.com/ -# ||covertarget.com^*_*.php (easylistchina+easylist.txt: 35847) -.covertarget.com/.*_.*\.php -# ||clkrev.com^ (easylistchina+easylist.txt: 35786) -.clkrev.com -# ||78.140.131.214^ (easylistchina+easylist.txt: 34825) -.78.140.131.214 -# ||74.117.182.77^ (easylistchina+easylist.txt: 34821) -.74.117.182.77 -# ||46.165.197.231^ (easylistchina+easylist.txt: 34805) -.46.165.197.231 -# ||46.165.197.153^ (easylistchina+easylist.txt: 34804) -.46.165.197.153 -# _popunder+$popup (easylistchina+easylist.txt: 17656) -/.*_popunder\+ -# ?zoneid=*_bannerid=$popup (easylistchina+easylist.txt: 17655) -/.*\?zoneid=.*_bannerid= -# ?iiadext=$popup (easylistchina+easylist.txt: 17654) -/.*\?iiadext= -# ?bannerid=*&punder=$popup (easylistchina+easylist.txt: 17653) -/.*\?bannerid=.*&punder= -# ?AdUrl=$popup (easylistchina+easylist.txt: 17652) -/.*\?AdUrl= -# =popunders&$popup (easylistchina+easylist.txt: 17651) -/.*=popunders& -# =popunder&$popup (easylistchina+easylist.txt: 17650) -/.*=popunder& -# ://adv.$popup (easylistchina+easylist.txt: 17649) -/.*://adv\. -adv.*. -# ://ads.$popup (easylistchina+easylist.txt: 17648) -/.*://ads\. -ads.*. -# /yesbaby.$popup (easylistchina+easylist.txt: 17647) -/(.*/)?yesbaby\. -yesbaby.*. -# /srvclk.php?$popup (easylistchina+easylist.txt: 17646) -/(.*/)?srvclk\.php\? -# /spopunder^$popup (easylistchina+easylist.txt: 17645) -/(.*/)?spopunder[^\w%.-] -# /showads/*$popup (easylistchina+easylist.txt: 17644) -/(.*/)?showads/.* -# /servlet/ajrotator/*$popup (easylistchina+easylist.txt: 17643) -/(.*/)?servlet/ajrotator/.* -# /rotator.php?$popup (easylistchina+easylist.txt: 17642) -/(.*/)?rotator\.php\? -# /Redirect.engine$popup (easylistchina+easylist.txt: 17640) -/(.*/)?Redirect\.engine -Redirect.engine*. -# /Redirect.eng?$popup (easylistchina+easylist.txt: 17639) -/(.*/)?Redirect\.eng\? -# /realmedia/ads/*$popup (easylistchina+easylist.txt: 17638) -/(.*/)?realmedia/ads/.* -# /punder.php$popup (easylistchina+easylist.txt: 17637) -/(.*/)?punder\.php -punder.php*. -# /promoredirect?*&campaign=*&zone=$popup (easylistchina+easylist.txt: 17636) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /popupads.$popup (easylistchina+easylist.txt: 17635) -/(.*/)?popupads\. -popupads.*. -# /popunder_$popup (easylistchina+easylist.txt: 17634) -/(.*/)?popunder_ -# /popunder.$popup (easylistchina+easylist.txt: 17633) -/(.*/)?popunder\. -popunder.*. -# /popout.$popup (easylistchina+easylist.txt: 17632) -/(.*/)?popout\. -popout.*. -# /lr.php?zoneid=$popup (easylistchina+easylist.txt: 17631) -/(.*/)?lr\.php\?zoneid= -# /bani/index.php?id=$popup (easylistchina+easylist.txt: 17629) -/(.*/)?bani/index\.php\?id= -# /afu.php?$popup (easylistchina+easylist.txt: 17628) -/(.*/)?afu\.php\? -# /advlink.$popup (easylistchina+easylist.txt: 17627) -/(.*/)?advlink\. -advlink.*. -# /adsynserveuserid=$popup (easylistchina+easylist.txt: 17626) -/(.*/)?adsynserveuserid= -# /adstream_sx.ads/*$popup (easylistchina+easylist.txt: 17625) -/(.*/)?adstream_sx\.ads/.* -# /adserver.$popup (easylistchina+easylist.txt: 17624) -/(.*/)?adserver\. -adserver.*. -# /adServe/sa?cid=$popup (easylistchina+easylist.txt: 17623) -/(.*/)?adServe/sa\?cid= -# /ads.htm$popup (easylistchina+easylist.txt: 17622) -/(.*/)?ads\.htm -ads.htm*. -# /AdHandler.aspx?$popup (easylistchina+easylist.txt: 17621) -/(.*/)?AdHandler\.aspx\? -# /adclick.$popup (easylistchina+easylist.txt: 17620) -/(.*/)?adclick\. -adclick.*. -# /ad_pop.php?$popup (easylistchina+easylist.txt: 17619) -/(.*/)?ad_pop\.php\? -# /ad132m/*$popup (easylistchina+easylist.txt: 17618) -/(.*/)?ad132m/.* -# /ad/window.php?$popup (easylistchina+easylist.txt: 17617) -/(.*/)?ad/window\.php\? -# /ad/display.php$popup (easylistchina+easylist.txt: 17616) -/(.*/)?ad/display\.php -# /ad.php|$popup (easylistchina+easylist.txt: 17615) -/(.*/)?ad\.php$ -ad.php -# /ad.php?zone$popup (easylistchina+easylist.txt: 17614) -/(.*/)?ad\.php\?zone -# /ad.php?tag=$popup (easylistchina+easylist.txt: 17613) -/(.*/)?ad\.php\?tag= -# /a/display.php?$popup (easylistchina+easylist.txt: 17612) -/(.*/)?a/display\.php\? -# /?reef=$popup (easylistchina+easylist.txt: 17611) -/(.*/)?\?reef= -# /?placement=*&redirect$popup (easylistchina+easylist.txt: 17610) -/(.*/)?\?placement=.*&redirect -# .engine?PlacementId=$popup (easylistchina+easylist.txt: 17609) -/.*\.engine\?PlacementId= -# .com/ads?$popup (easylistchina+easylist.txt: 17608) -/.*\.com/ads\? -.*.com/ads\? -# .com/?adv=$popup (easylistchina+easylist.txt: 17607) -/.*\.com/\?adv= -.*.com/\?adv= -# .co/ads/$popup (easylistchina+easylist.txt: 17606) -/.*\.co/ads/ -.*.co/ads/ -# -ads-campaign/$popup (easylistchina+easylist.txt: 17605) -/.*-ads-campaign/ -.*-ads-campaign -# &program=revshare&$popup (easylistchina+easylist.txt: 17604) -/.*&program=revshare& -# &popunder=$popup (easylistchina+easylist.txt: 17603) -/.*&popunder= -# _a468x60. (easylistchina+easylist.txt: 17600) -/.*_a468x60\. -# _980x100. (easylistchina+easylist.txt: 17599) -/.*_980x100\. -# _970x30_ (easylistchina+easylist.txt: 17598) -/.*_970x30_ -# _960_90. (easylistchina+easylist.txt: 17597) -/.*_960_90\. -# _936x60. (easylistchina+easylist.txt: 17596) -/.*_936x60\. -# _900x350. (easylistchina+easylist.txt: 17595) -/.*_900x350\. -# _80x468. (easylistchina+easylist.txt: 17594) -/.*_80x468\. -# _800x80_ (easylistchina+easylist.txt: 17593) -/.*_800x80_ -# _800x100. (easylistchina+easylist.txt: 17592) -/.*_800x100\. -# _798x99_ (easylistchina+easylist.txt: 17591) -/.*_798x99_ -# _796x110_ (easylistchina+easylist.txt: 17590) -/.*_796x110_ -# _768x90_ (easylistchina+easylist.txt: 17589) -/.*_768x90_ -# _764x70_ (easylistchina+easylist.txt: 17588) -/.*_764x70_ -# _764x70. (easylistchina+easylist.txt: 17587) -/.*_764x70\. -# _760x90_ (easylistchina+easylist.txt: 17586) -/.*_760x90_ -# _760x100. (easylistchina+easylist.txt: 17585) -/.*_760x100\. -# _750x100. (easylistchina+easylist.txt: 17584) -/.*_750x100\. -# _745_90. (easylistchina+easylist.txt: 17583) -/.*_745_90\. -# _745_60. (easylistchina+easylist.txt: 17582) -/.*_745_60\. -# _730x90_ (easylistchina+easylist.txt: 17581) -/.*_730x90_ -# _730x60_ (easylistchina+easylist.txt: 17580) -/.*_730x60_ -# _730_440. (easylistchina+easylist.txt: 17579) -/.*_730_440\. -# _728x90v1. (easylistchina+easylist.txt: 17578) -/.*_728x90v1\. -# _728x90px_ (easylistchina+easylist.txt: 17577) -/.*_728x90px_ -# _728x90px. (easylistchina+easylist.txt: 17576) -/.*_728x90px\. -# _728x90px- (easylistchina+easylist.txt: 17575) -/.*_728x90px- -# _728x90pg_ (easylistchina+easylist.txt: 17574) -/.*_728x90pg_ -# _728x90b_ (easylistchina+easylist.txt: 17573) -/.*_728x90b_ -# _728x90a_ (easylistchina+easylist.txt: 17572) -/.*_728x90a_ -# _728x90a. (easylistchina+easylist.txt: 17571) -/.*_728x90a\. -# _728x90_ (easylistchina+easylist.txt: 17570) -/.*_728x90_ -# _728x901. (easylistchina+easylist.txt: 17569) -/.*_728x901\. -# _728x90/ (easylistchina+easylist.txt: 17568) -/.*_728x90/ -# _728x90. (easylistchina+easylist.txt: 17567) -/.*_728x90\. -# _728x90- (easylistchina+easylist.txt: 17566) -/.*_728x90- -# _728x90& (easylistchina+easylist.txt: 17565) -/.*_728x90& -# _728x60. (easylistchina+easylist.txt: 17564) -/.*_728x60\. -# _728x150. (easylistchina+easylist.txt: 17563) -/.*_728x150\. -# _728x-90. (easylistchina+easylist.txt: 17562) -/.*_728x-90\. -# _728by90_ (easylistchina+easylist.txt: 17561) -/.*_728by90_ -# _728_x_90_ (easylistchina+easylist.txt: 17560) -/.*_728_x_90_ -# _728_90_ (easylistchina+easylist.txt: 17559) -/.*_728_90_ -# _728_90. (easylistchina+easylist.txt: 17558) -/.*_728_90\. -# _728.htm (easylistchina+easylist.txt: 17557) -/.*_728\.htm -# _728-90_ (easylistchina+easylist.txt: 17556) -/.*_728-90_ -# _728-90. (easylistchina+easylist.txt: 17555) -/.*_728-90\. -# _720x90_ (easylistchina+easylist.txt: 17554) -/.*_720x90_ -# _720x90. (easylistchina+easylist.txt: 17553) -/.*_720x90\. -# _720_90. (easylistchina+easylist.txt: 17552) -/.*_720_90\. -# _700x200. (easylistchina+easylist.txt: 17551) -/.*_700x200\. -# _700_200_ (easylistchina+easylist.txt: 17550) -/.*_700_200_ -# _700_150_ (easylistchina+easylist.txt: 17549) -/.*_700_150_ -# _700_100_ (easylistchina+easylist.txt: 17548) -/.*_700_100_ -# _682x90_ (easylistchina+easylist.txt: 17547) -/.*_682x90_ -# _680x93_ (easylistchina+easylist.txt: 17546) -/.*_680x93_ -# _672x120_ (easylistchina+easylist.txt: 17545) -/.*_672x120_ -# _650x80_ (easylistchina+easylist.txt: 17544) -/.*_650x80_ -# _650x350. (easylistchina+easylist.txt: 17543) -/.*_650x350\. -# _638x200_ (easylistchina+easylist.txt: 17542) -/.*_638x200_ -# _620x203_ (easylistchina+easylist.txt: 17541) -/.*_620x203_ -# _600x90. (easylistchina+easylist.txt: 17540) -/.*_600x90\. -# _600x80. (easylistchina+easylist.txt: 17539) -/.*_600x80\. -# _600x180. (easylistchina+easylist.txt: 17538) -/.*_600x180\. -# _600x160. (easylistchina+easylist.txt: 17537) -/.*_600x160\. -# _600x120_ (easylistchina+easylist.txt: 17536) -/.*_600x120_ -# _600-90. (easylistchina+easylist.txt: 17535) -/.*_600-90\. -# _590x105. (easylistchina+easylist.txt: 17534) -/.*_590x105\. -# _585x75_ (easylistchina+easylist.txt: 17533) -/.*_585x75_ -# _585x75- (easylistchina+easylist.txt: 17532) -/.*_585x75- -# _580x100. (easylistchina+easylist.txt: 17531) -/.*_580x100\. -# _555x70. (easylistchina+easylist.txt: 17530) -/.*_555x70\. -# _550x150. (easylistchina+easylist.txt: 17529) -/.*_550x150\. -# _540_70_ (easylistchina+easylist.txt: 17528) -/.*_540_70_ -# _540_70. (easylistchina+easylist.txt: 17527) -/.*_540_70\. -# _500x440. (easylistchina+easylist.txt: 17526) -/.*_500x440\. -# _490-90_ (easylistchina+easylist.txt: 17525) -/.*_490-90_ -# _486x60_ (easylistchina+easylist.txt: 17524) -/.*_486x60_ -# _486x60. (easylistchina+easylist.txt: 17523) -/.*_486x60\. -# _480x60_ (easylistchina+easylist.txt: 17522) -/.*_480x60_ -# _480x60/ (easylistchina+easylist.txt: 17521) -/.*_480x60/ -# _480x60. (easylistchina+easylist.txt: 17520) -/.*_480x60\. -# _480x60- (easylistchina+easylist.txt: 17519) -/.*_480x60- -# _480_80_ (easylistchina+easylist.txt: 17518) -/.*_480_80_ -# _480_60. (easylistchina+easylist.txt: 17517) -/.*_480_60\. -# _468x90_ (easylistchina+easylist.txt: 17516) -/.*_468x90_ -# _468x90. (easylistchina+easylist.txt: 17515) -/.*_468x90\. -# _468x80_ (easylistchina+easylist.txt: 17514) -/.*_468x80_ -# _468x80/ (easylistchina+easylist.txt: 17513) -/.*_468x80/ -# _468x80. (easylistchina+easylist.txt: 17512) -/.*_468x80\. -# _468x80- (easylistchina+easylist.txt: 17511) -/.*_468x80- -# _468x6o_ (easylistchina+easylist.txt: 17510) -/.*_468x6o_ -# _468x60px_ (easylistchina+easylist.txt: 17509) -/.*_468x60px_ -# _468x60b. (easylistchina+easylist.txt: 17508) -/.*_468x60b\. -# _468x60_ (easylistchina+easylist.txt: 17507) -/.*_468x60_ -# _468x60/ (easylistchina+easylist.txt: 17506) -/.*_468x60/ -# _468x60. (easylistchina+easylist.txt: 17505) -/.*_468x60\. -# _468x60- (easylistchina+easylist.txt: 17504) -/.*_468x60- -# _468x120. (easylistchina+easylist.txt: 17503) -/.*_468x120\. -# _468x100_ (easylistchina+easylist.txt: 17502) -/.*_468x100_ -# _468x100. (easylistchina+easylist.txt: 17501) -/.*_468x100\. -# _468x060_ (easylistchina+easylist.txt: 17500) -/.*_468x060_ -# _468x060. (easylistchina+easylist.txt: 17499) -/.*_468x060\. -# _468x060- (easylistchina+easylist.txt: 17498) -/.*_468x060- -# _468_80_ (easylistchina+easylist.txt: 17497) -/.*_468_80_ -# _468_80. (easylistchina+easylist.txt: 17496) -/.*_468_80\. -# _468_60_ (easylistchina+easylist.txt: 17495) -/.*_468_60_ -# _468_60. (easylistchina+easylist.txt: 17494) -/.*_468_60\. -# _468_60- (easylistchina+easylist.txt: 17493) -/.*_468_60- -# _468.htm (easylistchina+easylist.txt: 17492) -/.*_468\.htm -# _468.gif (easylistchina+easylist.txt: 17491) -/.*_468\.gif -# _468-60. (easylistchina+easylist.txt: 17490) -/.*_468-60\. -# _465x110_ (easylistchina+easylist.txt: 17489) -/.*_465x110_ -# _460x60. (easylistchina+easylist.txt: 17488) -/.*_460x60\. -# _460_60. (easylistchina+easylist.txt: 17487) -/.*_460_60\. -# _438x60_ (easylistchina+easylist.txt: 17486) -/.*_438x60_ -# _438x60. (easylistchina+easylist.txt: 17485) -/.*_438x60\. -# _438x50. (easylistchina+easylist.txt: 17484) -/.*_438x50\. -# _420x80_ (easylistchina+easylist.txt: 17483) -/.*_420x80_ -# _420x80. (easylistchina+easylist.txt: 17482) -/.*_420x80\. -# _400x68. (easylistchina+easylist.txt: 17481) -/.*_400x68\. -# _400x60. (easylistchina+easylist.txt: 17480) -/.*_400x60\. -# _400-80. (easylistchina+easylist.txt: 17479) -/.*_400-80\. -# _370x270. (easylistchina+easylist.txt: 17478) -/.*_370x270\. -# _350x100. (easylistchina+easylist.txt: 17477) -/.*_350x100\. -# _350_100_ (easylistchina+easylist.txt: 17476) -/.*_350_100_ -# _350_100. (easylistchina+easylist.txt: 17475) -/.*_350_100\. -# _336x850. (easylistchina+easylist.txt: 17474) -/.*_336x850\. -# _336x280s. (easylistchina+easylist.txt: 17473) -/.*_336x280s\. -# _336x280a. (easylistchina+easylist.txt: 17472) -/.*_336x280a\. -# _336x280_ (easylistchina+easylist.txt: 17471) -/.*_336x280_ -# _336x120. (easylistchina+easylist.txt: 17470) -/.*_336x120\. -# _323x120_ (easylistchina+easylist.txt: 17469) -/.*_323x120_ -# _320x250_ (easylistchina+easylist.txt: 17468) -/.*_320x250_ -# _300x600_ (easylistchina+easylist.txt: 17467) -/.*_300x600_ -# _300x600. (easylistchina+easylist.txt: 17466) -/.*_300x600\. -# _300x250v2. (easylistchina+easylist.txt: 17465) -/.*_300x250v2\. -# _300x250px. (easylistchina+easylist.txt: 17464) -/.*_300x250px\. -# _300x250b. (easylistchina+easylist.txt: 17463) -/.*_300x250b\. -# _300x250a_ (easylistchina+easylist.txt: 17462) -/.*_300x250a_ -# _300x250_ (easylistchina+easylist.txt: 17461) -/.*_300x250_ -# _300x250. (easylistchina+easylist.txt: 17460) -/.*_300x250\. -# _300x250- (easylistchina+easylist.txt: 17459) -/.*_300x250- -# _300x160_ (easylistchina+easylist.txt: 17458) -/.*_300x160_ -# _300_60_ (easylistchina+easylist.txt: 17457) -/.*_300_60_ -# _300_250_ (easylistchina+easylist.txt: 17456) -/.*_300_250_ -# _300_250. (easylistchina+easylist.txt: 17455) -/.*_300_250\. -# _300.htm (easylistchina+easylist.txt: 17454) -/.*_300\.htm -# _300-250- (easylistchina+easylist.txt: 17453) -/.*_300-250- -# _200x600_ (easylistchina+easylist.txt: 17452) -/.*_200x600_ -# _180x450_ (easylistchina+easylist.txt: 17451) -/.*_180x450_ -# _180x300_ (easylistchina+easylist.txt: 17450) -/.*_180x300_ -# _160x600b. (easylistchina+easylist.txt: 17449) -/.*_160x600b\. -# _160x600_ (easylistchina+easylist.txt: 17448) -/.*_160x600_ -# _160x600/ (easylistchina+easylist.txt: 17447) -/.*_160x600/ -# _160x600. (easylistchina+easylist.txt: 17446) -/.*_160x600\. -# _160x600- (easylistchina+easylist.txt: 17445) -/.*_160x600- -# _160x600& (easylistchina+easylist.txt: 17444) -/.*_160x600& -# _160x500. (easylistchina+easylist.txt: 17443) -/.*_160x500\. -# _160x400. (easylistchina+easylist.txt: 17442) -/.*_160x400\. -# _160x350. (easylistchina+easylist.txt: 17441) -/.*_160x350\. -# _160x300_ (easylistchina+easylist.txt: 17440) -/.*_160x300_ -# _160x300. (easylistchina+easylist.txt: 17439) -/.*_160x300\. -# _160x290. (easylistchina+easylist.txt: 17438) -/.*_160x290\. -# _160x1600. (easylistchina+easylist.txt: 17437) -/.*_160x1600\. -# _160by600_ (easylistchina+easylist.txt: 17436) -/.*_160by600_ -# _160_600_ (easylistchina+easylist.txt: 17435) -/.*_160_600_ -# _160_600. (easylistchina+easylist.txt: 17434) -/.*_160_600\. -# _160-600. (easylistchina+easylist.txt: 17433) -/.*_160-600\. -# _150x700_ (easylistchina+easylist.txt: 17432) -/.*_150x700_ -# _140x600_ (easylistchina+easylist.txt: 17431) -/.*_140x600_ -# _140x600. (easylistchina+easylist.txt: 17430) -/.*_140x600\. -# _125x600_ (easylistchina+easylist.txt: 17429) -/.*_125x600_ -# _120x800a. (easylistchina+easylist.txt: 17428) -/.*_120x800a\. -# _120x60_ (easylistchina+easylist.txt: 17427) -/.*_120x60_ -# _120x600px. (easylistchina+easylist.txt: 17426) -/.*_120x600px\. -# _120x600a. (easylistchina+easylist.txt: 17425) -/.*_120x600a\. -# _120x600_ (easylistchina+easylist.txt: 17424) -/.*_120x600_ -# _120x600. (easylistchina+easylist.txt: 17423) -/.*_120x600\. -# _120x600- (easylistchina+easylist.txt: 17422) -/.*_120x600- -# _120x60. (easylistchina+easylist.txt: 17421) -/.*_120x60\. -# _120x500. (easylistchina+easylist.txt: 17420) -/.*_120x500\. -# _120x240_ (easylistchina+easylist.txt: 17419) -/.*_120x240_ -# _120x240. (easylistchina+easylist.txt: 17418) -/.*_120x240\. -# _120h600. (easylistchina+easylist.txt: 17417) -/.*_120h600\. -# _120_x_600. (easylistchina+easylist.txt: 17416) -/.*_120_x_600\. -# _120_600_ (easylistchina+easylist.txt: 17415) -/.*_120_600_ -# _120_600. (easylistchina+easylist.txt: 17414) -/.*_120_600\. -# _120_60. (easylistchina+easylist.txt: 17413) -/.*_120_60\. -# _115x220. (easylistchina+easylist.txt: 17412) -/.*_115x220\. -# _100x480_ (easylistchina+easylist.txt: 17411) -/.*_100x480_ -# =900x60; (easylistchina+easylist.txt: 17410) -/.*=900x60; -# =888x10; (easylistchina+easylist.txt: 17409) -/.*=888x10; -# =760x120& (easylistchina+easylist.txt: 17408) -/.*=760x120& -# =728x90_ (easylistchina+easylist.txt: 17407) -/.*=728x90_ -# =728x90; (easylistchina+easylist.txt: 17406) -/.*=728x90; -# =728x90/ (easylistchina+easylist.txt: 17405) -/.*=728x90/ -# =728x90, (easylistchina+easylist.txt: 17404) -/.*=728x90, -# =728x90& (easylistchina+easylist.txt: 17403) -/.*=728x90& -# =480x60; (easylistchina+easylist.txt: 17402) -/.*=480x60; -# =468x80_ (easylistchina+easylist.txt: 17401) -/.*=468x80_ -# =468x60_ (easylistchina+easylist.txt: 17400) -/.*=468x60_ -# =468x60; (easylistchina+easylist.txt: 17399) -/.*=468x60; -# =468x60/ (easylistchina+easylist.txt: 17398) -/.*=468x60/ -# =468x60, (easylistchina+easylist.txt: 17397) -/.*=468x60, -# =468x60& (easylistchina+easylist.txt: 17396) -/.*=468x60& -# =440x410; (easylistchina+easylist.txt: 17395) -/.*=440x410; -# =336x280; (easylistchina+easylist.txt: 17394) -/.*=336x280; -# =336x280, (easylistchina+easylist.txt: 17393) -/.*=336x280, -# =300x300; (easylistchina+easylist.txt: 17392) -/.*=300x300; -# =300x250_ (easylistchina+easylist.txt: 17391) -/.*=300x250_ -# =300x250; (easylistchina+easylist.txt: 17390) -/.*=300x250; -# =300x250/ (easylistchina+easylist.txt: 17389) -/.*=300x250/ -# =300x250, (easylistchina+easylist.txt: 17388) -/.*=300x250, -# =300x250& (easylistchina+easylist.txt: 17387) -/.*=300x250& -# =234x60_ (easylistchina+easylist.txt: 17386) -/.*=234x60_ -# =234x60; (easylistchina+easylist.txt: 17385) -/.*=234x60; -# =160x600; (easylistchina+easylist.txt: 17384) -/.*=160x600; -# =160x600, (easylistchina+easylist.txt: 17383) -/.*=160x600, -# =160x600& (easylistchina+easylist.txt: 17382) -/.*=160x600& -# =160x160; (easylistchina+easylist.txt: 17381) -/.*=160x160; -# =120x600; (easylistchina+easylist.txt: 17380) -/.*=120x600; -# =120x600, (easylistchina+easylist.txt: 17379) -/.*=120x600, -# 760x90.jpg| (easylistchina+easylist.txt: 17378) -/.*760x90\.jpg$ -.*760x90.jpg -# 750x90.gif| (easylistchina+easylist.txt: 17377) -/.*750x90\.gif$ -.*750x90.gif -# 750x80.swf| (easylistchina+easylist.txt: 17376) -/.*750x80\.swf$ -.*750x80.swf -# 728x90_2.jpg| (easylistchina+easylist.txt: 17375) -/.*728x90_2\.jpg$ -# 728x90.swf| (easylistchina+easylist.txt: 17374) -/.*728x90\.swf$ -.*728x90.swf -# 728x90.swf? (easylistchina+easylist.txt: 17373) -/.*728x90\.swf\? -# 728x90.png| (easylistchina+easylist.txt: 17372) -/.*728x90\.png$ -.*728x90.png -# 728x90.php| (easylistchina+easylist.txt: 17371) -/.*728x90\.php$ -.*728x90.php -# 728x90.php? (easylistchina+easylist.txt: 17370) -/.*728x90\.php\? -# 728x90.jpg| (easylistchina+easylist.txt: 17369) -/.*728x90\.jpg$ -.*728x90.jpg -# 728x90.htm| (easylistchina+easylist.txt: 17368) -/.*728x90\.htm$ -.*728x90.htm -# 728x90.html| (easylistchina+easylist.txt: 17367) -/.*728x90\.html$ -.*728x90.html -# 728x90.gif| (easylistchina+easylist.txt: 17366) -/.*728x90\.gif$ -.*728x90.gif -# 728x290.gif| (easylistchina+easylist.txt: 17365) -/.*728x290\.gif$ -.*728x290.gif -# 700x200.gif| (easylistchina+easylist.txt: 17364) -/.*700x200\.gif$ -.*700x200.gif -# 700_200.jpg| (easylistchina+easylist.txt: 17363) -/.*700_200\.jpg$ -# 700_200.gif| (easylistchina+easylist.txt: 17362) -/.*700_200\.gif$ -# 480x80.jpg| (easylistchina+easylist.txt: 17361) -/.*480x80\.jpg$ -.*480x80.jpg -# 480x60.png| (easylistchina+easylist.txt: 17360) -/.*480x60\.png$ -.*480x60.png -# 470x60.swf| (easylistchina+easylist.txt: 17359) -/.*470x60\.swf$ -.*470x60.swf -# 470x60.swf? (easylistchina+easylist.txt: 17358) -/.*470x60\.swf\? -# 470x60.jpg| (easylistchina+easylist.txt: 17357) -/.*470x60\.jpg$ -.*470x60.jpg -# 470x60.gif| (easylistchina+easylist.txt: 17356) -/.*470x60\.gif$ -.*470x60.gif -# 468x80.gif| (easylistchina+easylist.txt: 17355) -/.*468x80\.gif$ -.*468x80.gif -# 468x60_2.jpg| (easylistchina+easylist.txt: 17354) -/.*468x60_2\.jpg$ -# 468x60_1.gif| (easylistchina+easylist.txt: 17353) -/.*468x60_1\.gif$ -# 468x60.swf| (easylistchina+easylist.txt: 17352) -/.*468x60\.swf$ -.*468x60.swf -# 468x60.swf? (easylistchina+easylist.txt: 17351) -/.*468x60\.swf\? -# 468x60.php| (easylistchina+easylist.txt: 17350) -/.*468x60\.php$ -.*468x60.php -# 468x60.php? (easylistchina+easylist.txt: 17349) -/.*468x60\.php\? -# 468x60.jpg| (easylistchina+easylist.txt: 17348) -/.*468x60\.jpg$ -.*468x60.jpg -# 468x60.htm| (easylistchina+easylist.txt: 17347) -/.*468x60\.htm$ -.*468x60.htm -# 468x60.html| (easylistchina+easylist.txt: 17346) -/.*468x60\.html$ -.*468x60.html -# 468x60.gif| (easylistchina+easylist.txt: 17345) -/.*468x60\.gif$ -.*468x60.gif -# 468_60.gif| (easylistchina+easylist.txt: 17344) -/.*468_60\.gif$ -# 468-60.swf| (easylistchina+easylist.txt: 17343) -/.*468-60\.swf$ -.*468-60.swf -# 468-60.swf? (easylistchina+easylist.txt: 17342) -/.*468-60\.swf\? -# 468-60.gif| (easylistchina+easylist.txt: 17341) -/.*468-60\.gif$ -.*468-60.gif -# 460x70.jpg| (easylistchina+easylist.txt: 17340) -/.*460x70\.jpg$ -.*460x70.jpg -# 450x55.jpg| (easylistchina+easylist.txt: 17339) -/.*450x55\.jpg$ -.*450x55.jpg -# 160x6001.jpg| (easylistchina+easylist.txt: 17338) -/.*160x6001\.jpg$ -.*160x6001.jpg -# 160x600.swf| (easylistchina+easylist.txt: 17337) -/.*160x600\.swf$ -.*160x600.swf -# 160x600.swf? (easylistchina+easylist.txt: 17336) -/.*160x600\.swf\? -# 160x600.png| (easylistchina+easylist.txt: 17335) -/.*160x600\.png$ -.*160x600.png -# 160x600.php| (easylistchina+easylist.txt: 17334) -/.*160x600\.php$ -.*160x600.php -# 160x600.php? (easylistchina+easylist.txt: 17333) -/.*160x600\.php\? -# 160x600.jpg| (easylistchina+easylist.txt: 17332) -/.*160x600\.jpg$ -.*160x600.jpg -# 160x600.htm| (easylistchina+easylist.txt: 17331) -/.*160x600\.htm$ -.*160x600.htm -# 160x600.html| (easylistchina+easylist.txt: 17330) -/.*160x600\.html$ -.*160x600.html -# 160x600.gif| (easylistchina+easylist.txt: 17329) -/.*160x600\.gif$ -.*160x600.gif -# 160x300.gif| (easylistchina+easylist.txt: 17328) -/.*160x300\.gif$ -.*160x300.gif -# 133x394.gif| (easylistchina+easylist.txt: 17327) -/.*133x394\.gif$ -.*133x394.gif -# 125x600.swf| (easylistchina+easylist.txt: 17326) -/.*125x600\.swf$ -.*125x600.swf -# 125x600.swf? (easylistchina+easylist.txt: 17325) -/.*125x600\.swf\? -# 125x600.gif| (easylistchina+easylist.txt: 17324) -/.*125x600\.gif$ -.*125x600.gif -# 120x600.swf| (easylistchina+easylist.txt: 17323) -/.*120x600\.swf$ -.*120x600.swf -# 120x600.swf? (easylistchina+easylist.txt: 17322) -/.*120x600\.swf\? -# 120x600.png| (easylistchina+easylist.txt: 17321) -/.*120x600\.png$ -.*120x600.png -# 120x600.htm| (easylistchina+easylist.txt: 17320) -/.*120x600\.htm$ -.*120x600.htm -# 120x600.html| (easylistchina+easylist.txt: 17319) -/.*120x600\.html$ -.*120x600.html -# 120x600.gif| (easylistchina+easylist.txt: 17318) -/.*120x600\.gif$ -.*120x600.gif -# 120x600.gif? (easylistchina+easylist.txt: 17317) -/.*120x600\.gif\? -# 120x500.gif| (easylistchina+easylist.txt: 17316) -/.*120x500\.gif$ -.*120x500.gif -# 120-600.gif| (easylistchina+easylist.txt: 17315) -/.*120-600\.gif$ -.*120-600.gif -# /top728x90. (easylistchina+easylist.txt: 17314) -/(.*/)?top728x90\. -top728x90.*. -# /top728.html (easylistchina+easylist.txt: 17313) -/(.*/)?top728\.html -top728.html*. -# /top468.html (easylistchina+easylist.txt: 17312) -/(.*/)?top468\.html -top468.html*. -# /new300x250/* (easylistchina+easylist.txt: 17311) -/(.*/)?new300x250/.* -# /new160x600/* (easylistchina+easylist.txt: 17310) -/(.*/)?new160x600/.* -# /lightake728x90. (easylistchina+easylist.txt: 17309) -/(.*/)?lightake728x90\. -lightake728x90.*. -# /L300xH250/* (easylistchina+easylist.txt: 17308) -/(.*/)?L300xH250/.* -# /img/728_90 (easylistchina+easylist.txt: 17307) -/(.*/)?img/728_90 -# /img/468_60 (easylistchina+easylist.txt: 17306) -/(.*/)?img/468_60 -# /head486x60. (easylistchina+easylist.txt: 17305) -/(.*/)?head486x60\. -head486x60.*. -# /bottom728x90. (easylistchina+easylist.txt: 17304) -/(.*/)?bottom728x90\. -bottom728x90.*. -# /bottom728.html (easylistchina+easylist.txt: 17303) -/(.*/)?bottom728\.html -bottom728.html*. -# /ban468. (easylistchina+easylist.txt: 17302) -/(.*/)?ban468\. -ban468.*. -# /_iframe728x90. (easylistchina+easylist.txt: 17301) -/(.*/)?_iframe728x90\. -# /980x90. (easylistchina+easylist.txt: 17300) -/(.*/)?980x90\. -980x90.*. -# /960_60_ (easylistchina+easylist.txt: 17299) -/(.*/)?960_60_ -# /950_250. (easylistchina+easylist.txt: 17298) -/(.*/)?950_250\. -# /900x350_ (easylistchina+easylist.txt: 17297) -/(.*/)?900x350_ -# /900x130_ (easylistchina+easylist.txt: 17296) -/(.*/)?900x130_ -# /80x468_ (easylistchina+easylist.txt: 17295) -/(.*/)?80x468_ -# /800x90. (easylistchina+easylist.txt: 17294) -/(.*/)?800x90\. -800x90.*. -# /780x90. (easylistchina+easylist.txt: 17293) -/(.*/)?780x90\. -780x90.*. -# /768x90. (easylistchina+easylist.txt: 17292) -/(.*/)?768x90\. -768x90.*. -# /768x90- (easylistchina+easylist.txt: 17291) -/(.*/)?768x90- -768x90-*. -# /760x90_ (easylistchina+easylist.txt: 17290) -/(.*/)?760x90_ -# /760x120_ (easylistchina+easylist.txt: 17289) -/(.*/)?760x120_ -# /760x120. (easylistchina+easylist.txt: 17288) -/(.*/)?760x120\. -760x120.*. -# /750x100. (easylistchina+easylist.txt: 17287) -/(.*/)?750x100\. -750x100.*. -# /750-100. (easylistchina+easylist.txt: 17286) -/(.*/)?750-100\. -750-100.*. -# /728x90top. (easylistchina+easylist.txt: 17285) -/(.*/)?728x90top\. -728x90top.*. -# /728x90l. (easylistchina+easylist.txt: 17284) -/(.*/)?728x90l\. -728x90l.*. -# /728x90h. (easylistchina+easylist.txt: 17283) -/(.*/)?728x90h\. -728x90h.*. -# /728x90g. (easylistchina+easylist.txt: 17282) -/(.*/)?728x90g\. -728x90g.*. -# /728x90d. (easylistchina+easylist.txt: 17281) -/(.*/)?728x90d\. -728x90d.*. -# /728x90b/* (easylistchina+easylist.txt: 17280) -/(.*/)?728x90b/.* -# /728x90b. (easylistchina+easylist.txt: 17279) -/(.*/)?728x90b\. -728x90b.*. -# /728x90_ (easylistchina+easylist.txt: 17278) -/(.*/)?728x90_ -# /728x90? (easylistchina+easylist.txt: 17277) -/(.*/)?728x90\? -# /728x901. (easylistchina+easylist.txt: 17276) -/(.*/)?728x901\. -728x901.*. -# /728x90/* (easylistchina+easylist.txt: 17275) -/(.*/)?728x90/.* -# /728x90. (easylistchina+easylist.txt: 17274) -/(.*/)?728x90\. -728x90.*. -# /728x90- (easylistchina+easylist.txt: 17273) -/(.*/)?728x90- -728x90-*. -# /728x79_ (easylistchina+easylist.txt: 17272) -/(.*/)?728x79_ -# /728x180- (easylistchina+easylist.txt: 17271) -/(.*/)?728x180- -728x180-*. -# /728x15. (easylistchina+easylist.txt: 17270) -/(.*/)?728x15\. -728x15.*. -# /728by90_ (easylistchina+easylist.txt: 17269) -/(.*/)?728by90_ -# /728_90n. (easylistchina+easylist.txt: 17268) -/(.*/)?728_90n\. -# /728_90_ (easylistchina+easylist.txt: 17267) -/(.*/)?728_90_ -# /728_90/* (easylistchina+easylist.txt: 17266) -/(.*/)?728_90/.* -# /728_90. (easylistchina+easylist.txt: 17265) -/(.*/)?728_90\. -# /728_200_ (easylistchina+easylist.txt: 17264) -/(.*/)?728_200_ -# /728_200. (easylistchina+easylist.txt: 17263) -/(.*/)?728_200\. -# /728-90_ (easylistchina+easylist.txt: 17261) -/(.*/)?728-90_ -# /728-90/* (easylistchina+easylist.txt: 17260) -/(.*/)?728-90/.* -# /728-90. (easylistchina+easylist.txt: 17259) -/(.*/)?728-90\. -728-90.*. -# /728-90- (easylistchina+easylist.txt: 17258) -/(.*/)?728-90- -728-90-*. -# /700x90. (easylistchina+easylist.txt: 17257) -/(.*/)?700x90\. -700x90.*. -# /700x250. (easylistchina+easylist.txt: 17256) -/(.*/)?700x250\. -700x250.*. -# /700x120. (easylistchina+easylist.txt: 17255) -/(.*/)?700x120\. -700x120.*. -# /700x100. (easylistchina+easylist.txt: 17254) -/(.*/)?700x100\. -700x100.*. -# /700_200. (easylistchina+easylist.txt: 17253) -/(.*/)?700_200\. -# /700_100_ (easylistchina+easylist.txt: 17252) -/(.*/)?700_100_ -# /660x60. (easylistchina+easylist.txt: 17251) -/(.*/)?660x60\. -660x60.*. -# /660x120_ (easylistchina+easylist.txt: 17250) -/(.*/)?660x120_ -# /640x80- (easylistchina+easylist.txt: 17249) -/(.*/)?640x80- -640x80-*. -# /640x100/* (easylistchina+easylist.txt: 17248) -/(.*/)?640x100/.* -# /60x468. (easylistchina+easylist.txt: 17247) -/(.*/)?60x468\. -60x468.*. -# /600x90. (easylistchina+easylist.txt: 17246) -/(.*/)?600x90\. -600x90.*. -# /600x75_ (easylistchina+easylist.txt: 17245) -/(.*/)?600x75_ -# /600x160_ (easylistchina+easylist.txt: 17244) -/(.*/)?600x160_ -# /600_90_ (easylistchina+easylist.txt: 17243) -/(.*/)?600_90_ -# /600_120_ (easylistchina+easylist.txt: 17242) -/(.*/)?600_120_ -# /600-90. (easylistchina+easylist.txt: 17241) -/(.*/)?600-90\. -600-90.*. -# /600-60. (easylistchina+easylist.txt: 17240) -/(.*/)?600-60\. -600-60.*. -# /540x80_ (easylistchina+easylist.txt: 17239) -/(.*/)?540x80_ -# /530x60_ (easylistchina+easylist.txt: 17238) -/(.*/)?530x60_ -# /500x90. (easylistchina+easylist.txt: 17237) -/(.*/)?500x90\. -500x90.*. -# /496_98_ (easylistchina+easylist.txt: 17236) -/(.*/)?496_98_ -# /486x60_ (easylistchina+easylist.txt: 17235) -/(.*/)?486x60_ -# /480x70_ (easylistchina+easylist.txt: 17234) -/(.*/)?480x70_ -# /480x60_ (easylistchina+easylist.txt: 17233) -/(.*/)?480x60_ -# /480x60/* (easylistchina+easylist.txt: 17232) -/(.*/)?480x60/.* -# /480x60. (easylistchina+easylist.txt: 17231) -/(.*/)?480x60\. -480x60.*. -# /480x60- (easylistchina+easylist.txt: 17230) -/(.*/)?480x60- -480x60-*. -# /480x030_ (easylistchina+easylist.txt: 17229) -/(.*/)?480x030_ -# /480x030. (easylistchina+easylist.txt: 17228) -/(.*/)?480x030\. -480x030.*. -# /475x150- (easylistchina+easylist.txt: 17227) -/(.*/)?475x150- -475x150-*. -# /470x030_ (easylistchina+easylist.txt: 17226) -/(.*/)?470x030_ -# /468x80g. (easylistchina+easylist.txt: 17225) -/(.*/)?468x80g\. -468x80g.*. -# /468x80b. (easylistchina+easylist.txt: 17224) -/(.*/)?468x80b\. -468x80b.*. -# /468x80_ (easylistchina+easylist.txt: 17223) -/(.*/)?468x80_ -# /468x80/* (easylistchina+easylist.txt: 17222) -/(.*/)?468x80/.* -# /468x80. (easylistchina+easylist.txt: 17221) -/(.*/)?468x80\. -468x80.*. -# /468x80- (easylistchina+easylist.txt: 17220) -/(.*/)?468x80- -468x80-*. -# /468x72_ (easylistchina+easylist.txt: 17219) -/(.*/)?468x72_ -# /468x72. (easylistchina+easylist.txt: 17218) -/(.*/)?468x72\. -468x72.*. -# /468x70- (easylistchina+easylist.txt: 17217) -/(.*/)?468x70- -468x70-*. -# /468x60v1_ (easylistchina+easylist.txt: 17216) -/(.*/)?468x60v1_ -# /468x60b. (easylistchina+easylist.txt: 17215) -/(.*/)?468x60b\. -468x60b.*. -# /468x60a_ (easylistchina+easylist.txt: 17214) -/(.*/)?468x60a_ -# /468x60a. (easylistchina+easylist.txt: 17213) -/(.*/)?468x60a\. -468x60a.*. -# /468x60_ (easylistchina+easylist.txt: 17212) -/(.*/)?468x60_ -# /468x60/* (easylistchina+easylist.txt: 17211) -/(.*/)?468x60/.* -# /468x60. (easylistchina+easylist.txt: 17210) -/(.*/)?468x60\. -468x60.*. -# /468x60- (easylistchina+easylist.txt: 17209) -/(.*/)?468x60- -468x60-*. -# /468x280_ (easylistchina+easylist.txt: 17208) -/(.*/)?468x280_ -# /468x280. (easylistchina+easylist.txt: 17207) -/(.*/)?468x280\. -468x280.*. -# /468x060_ (easylistchina+easylist.txt: 17206) -/(.*/)?468x060_ -# /468x060. (easylistchina+easylist.txt: 17205) -/(.*/)?468x060\. -468x060.*. -# /468_80/* (easylistchina+easylist.txt: 17204) -/(.*/)?468_80/.* -# /468_80. (easylistchina+easylist.txt: 17203) -/(.*/)?468_80\. -# /468_60_ (easylistchina+easylist.txt: 17202) -/(.*/)?468_60_ -# /468_60. (easylistchina+easylist.txt: 17201) -/(.*/)?468_60\. -# /468-60_ (easylistchina+easylist.txt: 17200) -/(.*/)?468-60_ -# /468-60. (easylistchina+easylist.txt: 17199) -/(.*/)?468-60\. -468-60.*. -# /468-60- (easylistchina+easylist.txt: 17198) -/(.*/)?468-60- -468-60-*. -# /468-20. (easylistchina+easylist.txt: 17197) -/(.*/)?468-20\. -468-20.*. -# /460x80_ (easylistchina+easylist.txt: 17196) -/(.*/)?460x80_ -# /460x60. (easylistchina+easylist.txt: 17195) -/(.*/)?460x60\. -460x60.*. -# /428x60. (easylistchina+easylist.txt: 17194) -/(.*/)?428x60\. -428x60.*. -# /400x297. (easylistchina+easylist.txt: 17193) -/(.*/)?400x297\. -400x297.*. -# /4-6-8x60. (easylistchina+easylist.txt: 17192) -/(.*/)?4-6-8x60\. -4-6-8x60.*. -# /340x85_ (easylistchina+easylist.txt: 17191) -/(.*/)?340x85_ -# /336x280_ (easylistchina+easylist.txt: 17190) -/(.*/)?336x280_ -# /336x280. (easylistchina+easylist.txt: 17189) -/(.*/)?336x280\. -336x280.*. -# /336x280- (easylistchina+easylist.txt: 17188) -/(.*/)?336x280- -336x280-*. -# /335x205_ (easylistchina+easylist.txt: 17187) -/(.*/)?335x205_ -# /320x250. (easylistchina+easylist.txt: 17186) -/(.*/)?320x250\. -320x250.*. -# /300x90_ (easylistchina+easylist.txt: 17185) -/(.*/)?300x90_ -# /300x350. (easylistchina+easylist.txt: 17184) -/(.*/)?300x350\. -300x350.*. -# /300x250px_ (easylistchina+easylist.txt: 17183) -/(.*/)?300x250px_ -# /300x250px- (easylistchina+easylist.txt: 17182) -/(.*/)?300x250px- -300x250px-*. -# /300x250b. (easylistchina+easylist.txt: 17181) -/(.*/)?300x250b\. -300x250b.*. -# /300x250_ (easylistchina+easylist.txt: 17180) -/(.*/)?300x250_ -# /300x250/* (easylistchina+easylist.txt: 17179) -/(.*/)?300x250/.* -# /300x250. (easylistchina+easylist.txt: 17178) -/(.*/)?300x250\. -300x250.*. -# /300x250- (easylistchina+easylist.txt: 17177) -/(.*/)?300x250- -300x250-*. -# /300x150_ (easylistchina+easylist.txt: 17176) -/(.*/)?300x150_ -# /300_250_ (easylistchina+easylist.txt: 17175) -/(.*/)?300_250_ -# /300-250. (easylistchina+easylist.txt: 17173) -/(.*/)?300-250\. -300-250.*. -# /300-250- (easylistchina+easylist.txt: 17172) -/(.*/)?300-250- -300-250-*. -# /270x90- (easylistchina+easylist.txt: 17171) -/(.*/)?270x90- -270x90-*. -# /234x60/* (easylistchina+easylist.txt: 17170) -/(.*/)?234x60/.* -# /230x90_ (easylistchina+easylist.txt: 17169) -/(.*/)?230x90_ -# /190x600. (easylistchina+easylist.txt: 17168) -/(.*/)?190x600\. -190x600.*. -# /190_900. (easylistchina+easylist.txt: 17167) -/(.*/)?190_900\. -# /180x150- (easylistchina+easylist.txt: 17166) -/(.*/)?180x150- -180x150-*. -# /170x700. (easylistchina+easylist.txt: 17165) -/(.*/)?170x700\. -170x700.*. -# /160x600partner. (easylistchina+easylist.txt: 17164) -/(.*/)?160x600partner\. -160x600partner.*. -# /160x600_ (easylistchina+easylist.txt: 17163) -/(.*/)?160x600_ -# /160x600/* (easylistchina+easylist.txt: 17162) -/(.*/)?160x600/.* -# /160x600. (easylistchina+easylist.txt: 17161) -/(.*/)?160x600\. -160x600.*. -# /160x600- (easylistchina+easylist.txt: 17160) -/(.*/)?160x600- -160x600-*. -# /160x400_ (easylistchina+easylist.txt: 17159) -/(.*/)?160x400_ -# /160x400- (easylistchina+easylist.txt: 17158) -/(.*/)?160x400- -160x400-*. -# /160_600_ (easylistchina+easylist.txt: 17157) -/(.*/)?160_600_ -# /160_600. (easylistchina+easylist.txt: 17156) -/(.*/)?160_600\. -# /160-600. (easylistchina+easylist.txt: 17154) -/(.*/)?160-600\. -160-600.*. -# /160-600- (easylistchina+easylist.txt: 17153) -/(.*/)?160-600- -160-600-*. -# /150x600_ (easylistchina+easylist.txt: 17152) -/(.*/)?150x600_ -# /150x300_ (easylistchina+easylist.txt: 17151) -/(.*/)?150x300_ -# /150x200- (easylistchina+easylist.txt: 17150) -/(.*/)?150x200- -150x200-*. -# /150_500. (easylistchina+easylist.txt: 17149) -/(.*/)?150_500\. -# /150-500. (easylistchina+easylist.txt: 17148) -/(.*/)?150-500\. -150-500.*. -# /130x600. (easylistchina+easylist.txt: 17147) -/(.*/)?130x600\. -130x600.*. -# /130x600- (easylistchina+easylist.txt: 17146) -/(.*/)?130x600- -130x600-*. -# /125x600_ (easylistchina+easylist.txt: 17145) -/(.*/)?125x600_ -# /125x600- (easylistchina+easylist.txt: 17144) -/(.*/)?125x600- -125x600-*. -# /125x400/* (easylistchina+easylist.txt: 17143) -/(.*/)?125x400/.* -# /125x300_ (easylistchina+easylist.txt: 17142) -/(.*/)?125x300_ -# /125x240/* (easylistchina+easylist.txt: 17141) -/(.*/)?125x240/.* -# /120x600_ (easylistchina+easylist.txt: 17140) -/(.*/)?120x600_ -# /120x600/* (easylistchina+easylist.txt: 17139) -/(.*/)?120x600/.* -# /120x600. (easylistchina+easylist.txt: 17138) -/(.*/)?120x600\. -120x600.*. -# /120x600- (easylistchina+easylist.txt: 17137) -/(.*/)?120x600- -120x600-*. -# /120x240_ (easylistchina+easylist.txt: 17136) -/(.*/)?120x240_ -# /120_600_ (easylistchina+easylist.txt: 17135) -/(.*/)?120_600_ -# /120_600/* (easylistchina+easylist.txt: 17134) -/(.*/)?120_600/.* -# /120_600. (easylistchina+easylist.txt: 17133) -/(.*/)?120_600\. -# /1200x70_ (easylistchina+easylist.txt: 17132) -/(.*/)?1200x70_ -# /120-600. (easylistchina+easylist.txt: 17131) -/(.*/)?120-600\. -120-600.*. -# /120-600- (easylistchina+easylist.txt: 17130) -/(.*/)?120-600- -120-600-*. -# .900x100. (easylistchina+easylist.txt: 17129) -/.*\.900x100\. -.*.900x100.*. -# .728x90_ (easylistchina+easylist.txt: 17128) -/.*\.728x90_ -# .728x90/ (easylistchina+easylist.txt: 17127) -/.*\.728x90/ -.*.728x90 -# .728x90. (easylistchina+easylist.txt: 17126) -/.*\.728x90\. -.*.728x90.*. -# .728x90- (easylistchina+easylist.txt: 17125) -/.*\.728x90- -.*.728x90-*. -# .650x100. (easylistchina+easylist.txt: 17124) -/.*\.650x100\. -.*.650x100.*. -# .480x60_ (easylistchina+easylist.txt: 17123) -/.*\.480x60_ -# .480x60/ (easylistchina+easylist.txt: 17122) -/.*\.480x60/ -.*.480x60 -# .480x60. (easylistchina+easylist.txt: 17121) -/.*\.480x60\. -.*.480x60.*. -# .480x60- (easylistchina+easylist.txt: 17120) -/.*\.480x60- -.*.480x60-*. -# .468x80_ (easylistchina+easylist.txt: 17119) -/.*\.468x80_ -# .468x80/ (easylistchina+easylist.txt: 17118) -/.*\.468x80/ -.*.468x80 -# .468x80. (easylistchina+easylist.txt: 17117) -/.*\.468x80\. -.*.468x80.*. -# .468x80- (easylistchina+easylist.txt: 17116) -/.*\.468x80- -.*.468x80-*. -# .468x60_ (easylistchina+easylist.txt: 17115) -/.*\.468x60_ -# .468x60/ (easylistchina+easylist.txt: 17114) -/.*\.468x60/ -.*.468x60 -# .468x60. (easylistchina+easylist.txt: 17113) -/.*\.468x60\. -.*.468x60.*. -# .468x60- (easylistchina+easylist.txt: 17112) -/.*\.468x60- -.*.468x60-*. -# .300x250_ (easylistchina+easylist.txt: 17111) -/.*\.300x250_ -# .300x250. (easylistchina+easylist.txt: 17110) -/.*\.300x250\. -.*.300x250.*. -# .160x600_ (easylistchina+easylist.txt: 17109) -/.*\.160x600_ -# .160x600. (easylistchina+easylist.txt: 17108) -/.*\.160x600\. -.*.160x600.*. -# .120x600. (easylistchina+easylist.txt: 17107) -/.*\.120x600\. -.*.120x600.*. -# -988x60. (easylistchina+easylist.txt: 17106) -/.*-988x60\. -.*-988x60.*. -# -980x60- (easylistchina+easylist.txt: 17105) -/.*-980x60- -.*-980x60-*. -# -800x150. (easylistchina+easylist.txt: 17104) -/.*-800x150\. -.*-800x150.*. -# -780x90- (easylistchina+easylist.txt: 17103) -/.*-780x90- -.*-780x90-*. -# -729x91- (easylistchina+easylist.txt: 17102) -/.*-729x91- -.*-729x91-*. -# -728x90px2. (easylistchina+easylist.txt: 17101) -/.*-728x90px2\. -.*-728x90px2.*. -# -728x90a_ (easylistchina+easylist.txt: 17100) -/.*-728x90a_ -# -728x90_ (easylistchina+easylist.txt: 17099) -/.*-728x90_ -# -728x90/ (easylistchina+easylist.txt: 17098) -/.*-728x90/ -.*-728x90 -# -728x90. (easylistchina+easylist.txt: 17097) -/.*-728x90\. -.*-728x90.*. -# -728x90- (easylistchina+easylist.txt: 17096) -/.*-728x90- -.*-728x90-*. -# -728x90& (easylistchina+easylist.txt: 17095) -/.*-728x90& -# -728.90. (easylistchina+easylist.txt: 17094) -/.*-728\.90\. -.*-728.90.*. -# -728-90. (easylistchina+easylist.txt: 17093) -/.*-728-90\. -.*-728-90.*. -# -720x90. (easylistchina+easylist.txt: 17092) -/.*-720x90\. -.*-720x90.*. -# -720x90- (easylistchina+easylist.txt: 17091) -/.*-720x90- -.*-720x90-*. -# -720x120- (easylistchina+easylist.txt: 17090) -/.*-720x120- -.*-720x120-*. -# -700-200. (easylistchina+easylist.txt: 17089) -/.*-700-200\. -.*-700-200.*. -# -600x90- (easylistchina+easylist.txt: 17088) -/.*-600x90- -.*-600x90-*. -# -600x70. (easylistchina+easylist.txt: 17087) -/.*-600x70\. -.*-600x70.*. -# -500x100. (easylistchina+easylist.txt: 17086) -/.*-500x100\. -.*-500x100.*. -# -486x60. (easylistchina+easylist.txt: 17085) -/.*-486x60\. -.*-486x60.*. -# -480x60_ (easylistchina+easylist.txt: 17084) -/.*-480x60_ -# -480x60/ (easylistchina+easylist.txt: 17083) -/.*-480x60/ -.*-480x60 -# -480x60. (easylistchina+easylist.txt: 17082) -/.*-480x60\. -.*-480x60.*. -# -480x60- (easylistchina+easylist.txt: 17081) -/.*-480x60- -.*-480x60-*. -# -480x120. (easylistchina+easylist.txt: 17080) -/.*-480x120\. -.*-480x120.*. -# -468x90. (easylistchina+easylist.txt: 17079) -/.*-468x90\. -.*-468x90.*. -# -468x80_ (easylistchina+easylist.txt: 17078) -/.*-468x80_ -# -468x80/ (easylistchina+easylist.txt: 17077) -/.*-468x80/ -.*-468x80 -# -468x80. (easylistchina+easylist.txt: 17076) -/.*-468x80\. -.*-468x80.*. -# -468x80- (easylistchina+easylist.txt: 17075) -/.*-468x80- -.*-468x80-*. -# -468x70. (easylistchina+easylist.txt: 17074) -/.*-468x70\. -.*-468x70.*. -# -468x60px- (easylistchina+easylist.txt: 17073) -/.*-468x60px- -.*-468x60px-*. -# -468x60_ (easylistchina+easylist.txt: 17072) -/.*-468x60_ -# -468x60/ (easylistchina+easylist.txt: 17071) -/.*-468x60/ -.*-468x60 -# -468x60. (easylistchina+easylist.txt: 17070) -/.*-468x60\. -.*-468x60.*. -# -468x60- (easylistchina+easylist.txt: 17069) -/.*-468x60- -.*-468x60-*. -# -468x060_ (easylistchina+easylist.txt: 17068) -/.*-468x060_ -# -468x060- (easylistchina+easylist.txt: 17067) -/.*-468x060- -.*-468x060-*. -# -468by60. (easylistchina+easylist.txt: 17066) -/.*-468by60\. -.*-468by60.*. -# -468_60. (easylistchina+easylist.txt: 17065) -/.*-468_60\. -# -468-60_ (easylistchina+easylist.txt: 17064) -/.*-468-60_ -# -468-60. (easylistchina+easylist.txt: 17063) -/.*-468-60\. -.*-468-60.*. -# -468-60- (easylistchina+easylist.txt: 17062) -/.*-468-60- -.*-468-60-*. -# -468-100. (easylistchina+easylist.txt: 17061) -/.*-468-100\. -.*-468-100.*. -# -460x68. (easylistchina+easylist.txt: 17060) -/.*-460x68\. -.*-460x68.*. -# -300x600. (easylistchina+easylist.txt: 17059) -/.*-300x600\. -.*-300x600.*. -# -300x250_ (easylistchina+easylist.txt: 17058) -/.*-300x250_ -# -300-250. (easylistchina+easylist.txt: 17056) -/.*-300-250\. -.*-300-250.*. -# -161x601- (easylistchina+easylist.txt: 17055) -/.*-161x601- -.*-161x601-*. -# -160x600b. (easylistchina+easylist.txt: 17054) -/.*-160x600b\. -.*-160x600b.*. -# -160x600_ (easylistchina+easylist.txt: 17053) -/.*-160x600_ -# -160x600. (easylistchina+easylist.txt: 17052) -/.*-160x600\. -.*-160x600.*. -# -160x600- (easylistchina+easylist.txt: 17051) -/.*-160x600- -.*-160x600-*. -# -160x400- (easylistchina+easylist.txt: 17050) -/.*-160x400- -.*-160x400-*. -# -160-600. (easylistchina+easylist.txt: 17049) -/.*-160-600\. -.*-160-600.*. -# -125x40- (easylistchina+easylist.txt: 17048) -/.*-125x40- -.*-125x40-*. -# -120x600c. (easylistchina+easylist.txt: 17047) -/.*-120x600c\. -.*-120x600c.*. -# -120x600_ (easylistchina+easylist.txt: 17046) -/.*-120x600_ -# -120x600. (easylistchina+easylist.txt: 17045) -/.*-120x600\. -.*-120x600.*. -# -120x600- (easylistchina+easylist.txt: 17044) -/.*-120x600- -.*-120x600-*. -# -120x60. (easylistchina+easylist.txt: 17043) -/.*-120x60\. -.*-120x60.*. -# -120x60- (easylistchina+easylist.txt: 17042) -/.*-120x60- -.*-120x60-*. -# -120x400. (easylistchina+easylist.txt: 17041) -/.*-120x400\. -.*-120x400.*. -# -120x300. (easylistchina+easylist.txt: 17040) -/.*-120x300\. -.*-120x300.*. -# -120x240. (easylistchina+easylist.txt: 17039) -/.*-120x240\. -.*-120x240.*. -# -120_600_ (easylistchina+easylist.txt: 17038) -/.*-120_600_ -# -120-600. (easylistchina+easylist.txt: 17037) -/.*-120-600\. -.*-120-600.*. -# ,970x90; (easylistchina+easylist.txt: 17036) -/.*,970x90; -# ,728x90, (easylistchina+easylist.txt: 17035) -/.*,728x90, -# ,468x60; (easylistchina+easylist.txt: 17034) -/.*,468x60; -# ,468x60- (easylistchina+easylist.txt: 17033) -/.*,468x60- -# ,160x600; (easylistchina+easylist.txt: 17032) -/.*,160x600; -# /wp-content/plugins/anti_ad_blocker/* (easylistchina+easylist.txt: 17030) -/(.*/)?wp-content/plugins/anti_ad_blocker/.* -# /wp-content/plugins/anti-block/* (easylistchina+easylist.txt: 17029) -/(.*/)?wp-content/plugins/anti-block/.* -# /no-adblock/* (easylistchina+easylist.txt: 17028) -/(.*/)?no-adblock/.* -# /fuckadblock. (easylistchina+easylist.txt: 17027) -/(.*/)?fuckadblock\. -fuckadblock.*. -# /fuckadb.js (easylistchina+easylist.txt: 17025) -/(.*/)?fuckadb\.js -fuckadb.js*. -# /Disable%2BAdblock. (easylistchina+easylist.txt: 17024) -/(.*/)?Disable%2BAdblock\. -# /blockblock/blockblock.jquery.js (easylistchina+easylist.txt: 17023) -/(.*/)?blockblock/blockblock\.jquery\.js -# /antiadblock. (easylistchina+easylist.txt: 17021) -/(.*/)?antiadblock\. -antiadblock.*. -# /anti_ab. (easylistchina+easylist.txt: 17020) -/(.*/)?anti_ab\. -# /adsblocker. (easylistchina+easylist.txt: 17018) -/(.*/)?adsblocker\. -adsblocker.*. -# /adbuddy. (easylistchina+easylist.txt: 17017) -/(.*/)?adbuddy\. -adbuddy.*. -# /adblockdetection. (easylistchina+easylist.txt: 17016) -/(.*/)?adblockdetection\. -adblockdetection.*. -# /adblockdetect. (easylistchina+easylist.txt: 17015) -/(.*/)?adblockdetect\. -adblockdetect.*. -# /adblock_logger. (easylistchina+easylist.txt: 17014) -/(.*/)?adblock_logger\. -# /adblock_detector2. (easylistchina+easylist.txt: 17013) -/(.*/)?adblock_detector2\. -# /adblock_detector. (easylistchina+easylist.txt: 17012) -/(.*/)?adblock_detector\. -# /adblock.gif? (easylistchina+easylist.txt: 17011) -/(.*/)?adblock\.gif\? -# /adblock-notify-by-bweb/* (easylistchina+easylist.txt: 17010) -/(.*/)?adblock-notify-by-bweb/.* -# /adblock-detect. (easylistchina+easylist.txt: 17009) -/(.*/)?adblock-detect\. -adblock-detect.*. -# /adblock-blocker/* (easylistchina+easylist.txt: 17008) -/(.*/)?adblock-blocker/.* -# /adblock-alerter/* (easylistchina+easylist.txt: 17007) -/(.*/)?adblock-alerter/.* -# /adb_detector. (easylistchina+easylist.txt: 17006) -/(.*/)?adb_detector\. -# /adb.min.js (easylistchina+easylist.txt: 17005) -/(.*/)?adb\.min\.js -adb.min.js*. -# /ad-blocker.js (easylistchina+easylist.txt: 17004) -/(.*/)?ad-blocker\.js -ad-blocker.js*. -# -adblocker-detection/ (easylistchina+easylist.txt: 17003) -/.*-adblocker-detection/ -.*-adblocker-detection -# /jquery.peelback.js (easylistchina+easylist.txt: 17001) -/(.*/)?jquery\.peelback\.js -jquery.peelback.js*. -# /sl/assetlisting/? (easylistchina+easylist.txt: 16999) -/(.*/)?sl/assetlisting/\? -# /cdn-cgi/pe/bag?r[]=*pubads.g.doubleclick.net (easylistchina+easylist.txt: 16993) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*pubads\.g\.doubleclick\.net -# /cdn-cgi/pe/bag?r[]=*cpalead.com (easylistchina+easylist.txt: 16992) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*cpalead\.com -# /cdn-cgi/pe/bag2?r[]=*srvpub.com (easylistchina+easylist.txt: 16991) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*srvpub\.com -# /cdn-cgi/pe/bag2?r[]=*revcontent.com (easylistchina+easylist.txt: 16990) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*revcontent\.com -# /cdn-cgi/pe/bag2?r[]=*popcash.net (easylistchina+easylist.txt: 16989) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popcash\.net -# /cdn-cgi/pe/bag2?r[]=*popads.net (easylistchina+easylist.txt: 16988) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# /cdn-cgi/pe/bag2?r[]=*linksmart.com (easylistchina+easylist.txt: 16987) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*linksmart\.com -# /cdn-cgi/pe/bag2?r[]=*juicyads.com (easylistchina+easylist.txt: 16986) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# /cdn-cgi/pe/bag2?r[]=*intellitxt.com (easylistchina+easylist.txt: 16985) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*intellitxt\.com -# /cdn-cgi/pe/bag2?r[]=*googleadservices.com (easylistchina+easylist.txt: 16984) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*googleadservices\.com -# /cdn-cgi/pe/bag2?r[]=*eclkspsa.com (easylistchina+easylist.txt: 16983) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkspsa\.com -# /cdn-cgi/pe/bag2?r[]=*eclkmpbn.com (easylistchina+easylist.txt: 16982) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkmpbn\.com -# /cdn-cgi/pe/bag2?r[]=*cpx.to (easylistchina+easylist.txt: 16981) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*cpx\.to -# /cdn-cgi/pe/bag2?r[]=*content.ad (easylistchina+easylist.txt: 16980) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*content\.ad -# /cdn-cgi/pe/bag2?r[]=*az708531.vo.msecnd.net (easylistchina+easylist.txt: 16979) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*az708531\.vo\.msecnd\.net -# /cdn-cgi/pe/bag2?r[]=*ads.exoclick.com (easylistchina+easylist.txt: 16978) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# /cdn-cgi/pe/bag2?r[]=*adk2.co (easylistchina+easylist.txt: 16977) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adk2\.co -# /cdn-cgi/pe/bag2?r[]=*adblade.com (easylistchina+easylist.txt: 16976) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adblade\.com -# ||serve.*/promoload? (easylistchina+easylist.txt: 16969) -.serve.*./(.*/)?promoload\? -# ||ox-d.*^auid= (easylistchina+easylist.txt: 16968) -.ox-d.*./(.*[^\w%.-])?auid= -# ||online.*/promoredirect?key= (easylistchina+easylist.txt: 16967) -.online.*./(.*/)?promoredirect\?key= -# ||cacheserve.*/promodisplay? (easylistchina+easylist.txt: 16965) -.cacheserve.*./(.*/)?promodisplay\? -# ||cacheserve.*/promodisplay/ (easylistchina+easylist.txt: 16964) -.cacheserve.*./(.*/)?promodisplay/ -# takeover_banner_ (easylistchina+easylist.txt: 16963) -/.*takeover_banner_ -# takeover_background. (easylistchina+easylist.txt: 16962) -/.*takeover_background\. -# _zedo. (easylistchina+easylist.txt: 16961) -/.*_zedo\. -# _your_ad. (easylistchina+easylist.txt: 16960) -/.*_your_ad\. -# _yahooads/ (easylistchina+easylist.txt: 16959) -/.*_yahooads/ -# _widget_ad. (easylistchina+easylist.txt: 16958) -/.*_widget_ad\. -# _WebBannerAd_ (easylistchina+easylist.txt: 16957) -/.*_WebBannerAd_ -# _webad_ (easylistchina+easylist.txt: 16956) -/.*_webad_ -# _webad. (easylistchina+easylist.txt: 16955) -/.*_webad\. -# _web_ad_ (easylistchina+easylist.txt: 16954) -/.*_web_ad_ -# _Web_ad. (easylistchina+easylist.txt: 16953) -/.*_Web_ad\. -# _web-advert. (easylistchina+easylist.txt: 16952) -/.*_web-advert\. -# _vodaaffi_ (easylistchina+easylist.txt: 16951) -/.*_vodaaffi_ -# _videoad. (easylistchina+easylist.txt: 16950) -/.*_videoad\. -# _video_ads_ (easylistchina+easylist.txt: 16949) -/.*_video_ads_ -# _video_ads/ (easylistchina+easylist.txt: 16948) -/.*_video_ads/ -# _vertical_ad. (easylistchina+easylist.txt: 16947) -/.*_vertical_ad\. -# _valueclick. (easylistchina+easylist.txt: 16946) -/.*_valueclick\. -# _UIM-Ads_ (easylistchina+easylist.txt: 16945) -/.*_UIM-Ads_ -# _tribalfusion. (easylistchina+easylist.txt: 16944) -/.*_tribalfusion\. -# _topad. (easylistchina+easylist.txt: 16943) -/.*_topad\. -# _top_ad_ (easylistchina+easylist.txt: 16942) -/.*_top_ad_ -# _top_ad. (easylistchina+easylist.txt: 16941) -/.*_top_ad\. -# _tile_ad_ (easylistchina+easylist.txt: 16940) -/.*_tile_ad_ -# _theme/ads/ (easylistchina+easylist.txt: 16939) -/.*_theme/ads/ -# _textads/ (easylistchina+easylist.txt: 16938) -/.*_textads/ -# _textads. (easylistchina+easylist.txt: 16937) -/.*_textads\. -# _textad_ (easylistchina+easylist.txt: 16936) -/.*_textad_ -# _text_ads. (easylistchina+easylist.txt: 16935) -/.*_text_ads\. -# _temp/ad_ (easylistchina+easylist.txt: 16934) -/.*_temp/ad_ -# _tagadvertising. (easylistchina+easylist.txt: 16933) -/.*_tagadvertising\. -# _survey_ad_ (easylistchina+easylist.txt: 16932) -/.*_survey_ad_ -# _StickyAdFunc. (easylistchina+easylist.txt: 16931) -/.*_StickyAdFunc\. -# _StickyAd. (easylistchina+easylist.txt: 16930) -/.*_StickyAd\. -# _sticky_ad. (easylistchina+easylist.txt: 16929) -/.*_sticky_ad\. -# _static_ads. (easylistchina+easylist.txt: 16928) -/.*_static_ads\. -# _static/ads/ (easylistchina+easylist.txt: 16927) -/.*_static/ads/ -# _square_ad. (easylistchina+easylist.txt: 16926) -/.*_square_ad\. -# _Spot-Ad_ (easylistchina+easylist.txt: 16925) -/.*_Spot-Ad_ -# _sponsoredlinks_ (easylistchina+easylist.txt: 16924) -/.*_sponsoredlinks_ -# _sponsor/css/ (easylistchina+easylist.txt: 16923) -/.*_sponsor/css/ -# _smartads_ (easylistchina+easylist.txt: 16922) -/.*_smartads_ -# _small_ad. (easylistchina+easylist.txt: 16921) -/.*_small_ad\. -# _Slot_Adv_ (easylistchina+easylist.txt: 16920) -/.*_Slot_Adv_ -# _skyscraper160x600. (easylistchina+easylist.txt: 16919) -/.*_skyscraper160x600\. -# _skybannerview. (easylistchina+easylist.txt: 16918) -/.*_skybannerview\. -# _skinad. (easylistchina+easylist.txt: 16917) -/.*_skinad\. -# _site_sponsor (easylistchina+easylist.txt: 16916) -/.*_site_sponsor -# _sidebarad_ (easylistchina+easylist.txt: 16915) -/.*_sidebarad_ -# _sidebar_ad_ (easylistchina+easylist.txt: 16914) -/.*_sidebar_ad_ -# _sidebar_ad. (easylistchina+easylist.txt: 16913) -/.*_sidebar_ad\. -# _sidead. (easylistchina+easylist.txt: 16912) -/.*_sidead\. -# _show_ads_ (easylistchina+easylist.txt: 16911) -/.*_show_ads_ -# _show_ads= (easylistchina+easylist.txt: 16910) -/.*_show_ads= -# _show_ads. (easylistchina+easylist.txt: 16909) -/.*_show_ads\. -# _sectionfront_ad. (easylistchina+easylist.txt: 16908) -/.*_sectionfront_ad\. -# _search/ads.js (easylistchina+easylist.txt: 16907) -/.*_search/ads\.js -# _rightmn_ads. (easylistchina+easylist.txt: 16906) -/.*_rightmn_ads\. -# _rightad_ (easylistchina+easylist.txt: 16905) -/.*_rightad_ -# _rightad1. (easylistchina+easylist.txt: 16904) -/.*_rightad1\. -# _rightad. (easylistchina+easylist.txt: 16903) -/.*_rightad\. -# _right_ads_ (easylistchina+easylist.txt: 16902) -/.*_right_ads_ -# _right_ads/ (easylistchina+easylist.txt: 16901) -/.*_right_ads/ -# _right_ads. (easylistchina+easylist.txt: 16900) -/.*_right_ads\. -# _right_ad. (easylistchina+easylist.txt: 16899) -/.*_right_ad\. -# _response_ad. (easylistchina+easylist.txt: 16898) -/.*_response_ad\. -# _request_ad. (easylistchina+easylist.txt: 16897) -/.*_request_ad\. -# _reporting_ads. (easylistchina+easylist.txt: 16896) -/.*_reporting_ads\. -# _rectangle_ads. (easylistchina+easylist.txt: 16894) -/.*_rectangle_ads\. -# _railads. (easylistchina+easylist.txt: 16893) -/.*_railads\. -# _radio_ad_ (easylistchina+easylist.txt: 16892) -/.*_radio_ad_ -# _pushads. (easylistchina+easylist.txt: 16891) -/.*_pushads\. -# _psu_ad. (easylistchina+easylist.txt: 16890) -/.*_psu_ad\. -# _promo_ad/ (easylistchina+easylist.txt: 16889) -/.*_promo_ad/ -# _prime_ad. (easylistchina+easylist.txt: 16888) -/.*_prime_ad\. -# _preorderad. (easylistchina+easylist.txt: 16887) -/.*_preorderad\. -# _post_ads. (easylistchina+easylist.txt: 16886) -/.*_post_ads\. -# _popupunder. (easylistchina+easylist.txt: 16885) -/.*_popupunder\. -# _popunder_ (easylistchina+easylist.txt: 16884) -/.*_popunder_ -# _popunder. (easylistchina+easylist.txt: 16883) -/.*_popunder\. -# _pop_under. (easylistchina+easylist.txt: 16882) -/.*_pop_under\. -# _pop_ad/ (easylistchina+easylist.txt: 16881) -/.*_pop_ad/ -# _pop_ad. (easylistchina+easylist.txt: 16880) -/.*_pop_ad\. -# _plus/ads/ (easylistchina+easylist.txt: 16879) -/.*_plus/ads/ -# _player_ads_ (easylistchina+easylist.txt: 16878) -/.*_player_ads_ -# _platform_ads_ (easylistchina+easylist.txt: 16877) -/.*_platform_ads_ -# _platform_ads. (easylistchina+easylist.txt: 16876) -/.*_platform_ads\. -# _partner_ad. (easylistchina+easylist.txt: 16875) -/.*_partner_ad\. -# _panel_ads. (easylistchina+easylist.txt: 16874) -/.*_panel_ads\. -# _paidadvert_ (easylistchina+easylist.txt: 16873) -/.*_paidadvert_ -# _paid_ads/ (easylistchina+easylist.txt: 16872) -/.*_paid_ads/ -# _overlay_ad. (easylistchina+easylist.txt: 16871) -/.*_overlay_ad\. -# _org_ad. (easylistchina+easylist.txt: 16870) -/.*_org_ad\. -# _openx/ (easylistchina+easylist.txt: 16869) -/.*_openx/ -# _openx. (easylistchina+easylist.txt: 16868) -/.*_openx\. -# _onlinead_ (easylistchina+easylist.txt: 16867) -/.*_onlinead_ -# _online_ad. (easylistchina+easylist.txt: 16866) -/.*_online_ad\. -# _mpu_widget? (easylistchina+easylist.txt: 16865) -/.*_mpu_widget\? -# _Mobile_Ad_ (easylistchina+easylist.txt: 16864) -/.*_Mobile_Ad_ -# _mmsadbanner/ (easylistchina+easylist.txt: 16863) -/.*_mmsadbanner/ -# _mid_ad. (easylistchina+easylist.txt: 16862) -/.*_mid_ad\. -# _media/ads/ (easylistchina+easylist.txt: 16861) -/.*_media/ads/ -# _maxi_ad/ (easylistchina+easylist.txt: 16860) -/.*_maxi_ad/ -# _mainad. (easylistchina+easylist.txt: 16859) -/.*_mainad\. -# _main_ad. (easylistchina+easylist.txt: 16858) -/.*_main_ad\. -# _mailLoginAd. (easylistchina+easylist.txt: 16857) -/.*_mailLoginAd\. -# _longad_ (easylistchina+easylist.txt: 16856) -/.*_longad_ -# _logadslot& (easylistchina+easylist.txt: 16855) -/.*_logadslot& -# _load_ad? (easylistchina+easylist.txt: 16854) -/.*_load_ad\? -# _live/ad/ (easylistchina+easylist.txt: 16853) -/.*_live/ad/ -# _link_ads- (easylistchina+easylist.txt: 16852) -/.*_link_ads- -# _left_ad. (easylistchina+easylist.txt: 16851) -/.*_left_ad\. -# _leaderboard_ad_ (easylistchina+easylist.txt: 16850) -/.*_leaderboard_ad_ -# _layerad. (easylistchina+easylist.txt: 16849) -/.*_layerad\. -# _juicyads. (easylistchina+easylist.txt: 16848) -/.*_juicyads\. -# _juiceadv. (easylistchina+easylist.txt: 16847) -/.*_juiceadv\. -# _jtads/ (easylistchina+easylist.txt: 16846) -/.*_jtads/ -# _js/ads.js (easylistchina+easylist.txt: 16845) -/.*_js/ads\.js -# _inlineads. (easylistchina+easylist.txt: 16844) -/.*_inlineads\. -# _inline_advert& (easylistchina+easylist.txt: 16843) -/.*_inline_advert& -# _index_ad. (easylistchina+easylist.txt: 16842) -/.*_index_ad\. -# _images/ads/ (easylistchina+easylist.txt: 16841) -/.*_images/ads/ -# _images/ad_ (easylistchina+easylist.txt: 16840) -/.*_images/ad_ -# _images/ad. (easylistchina+easylist.txt: 16839) -/.*_images/ad\. -# _iframe_ad_ (easylistchina+easylist.txt: 16838) -/.*_iframe_ad_ -# _iad.html? (easylistchina+easylist.txt: 16837) -/.*_iad\.html\? -# _hr_advt/ (easylistchina+easylist.txt: 16836) -/.*_hr_advt/ -# _house_ad_ (easylistchina+easylist.txt: 16835) -/.*_house_ad_ -# _hosting_ad. (easylistchina+easylist.txt: 16834) -/.*_hosting_ad\. -# _home_ad_ (easylistchina+easylist.txt: 16833) -/.*_home_ad_ -# _home_ad. (easylistchina+easylist.txt: 16832) -/.*_home_ad\. -# _homadconfig. (easylistchina+easylist.txt: 16831) -/.*_homadconfig\. -# _homad. (easylistchina+easylist.txt: 16830) -/.*_homad\. -# _headline_ad. (easylistchina+easylist.txt: 16829) -/.*_headline_ad\. -# _headerad. (easylistchina+easylist.txt: 16828) -/.*_headerad\. -# _header_ad_ (easylistchina+easylist.txt: 16827) -/.*_header_ad_ -# _header_ad. (easylistchina+easylist.txt: 16826) -/.*_header_ad\. -# _grid_ad? (easylistchina+easylist.txt: 16825) -/.*_grid_ad\? -# _googlead. (easylistchina+easylist.txt: 16824) -/.*_googlead\. -# _google_ads_ (easylistchina+easylist.txt: 16823) -/.*_google_ads_ -# _google_ads/ (easylistchina+easylist.txt: 16822) -/.*_google_ads/ -# _google_ads. (easylistchina+easylist.txt: 16821) -/.*_google_ads\. -# _google_ad. (easylistchina+easylist.txt: 16820) -/.*_google_ad\. -# _geobanner. (easylistchina+easylist.txt: 16819) -/.*_geobanner\. -# _generic_ad. (easylistchina+easylist.txt: 16818) -/.*_generic_ad\. -# _genads/ (easylistchina+easylist.txt: 16817) -/.*_genads/ -# _gallery_ads. (easylistchina+easylist.txt: 16815) -/.*_gallery_ads\. -# _gads_top. (easylistchina+easylist.txt: 16814) -/.*_gads_top\. -# _gads_footer. (easylistchina+easylist.txt: 16813) -/.*_gads_footer\. -# _gads_bottom. (easylistchina+easylist.txt: 16812) -/.*_gads_bottom\. -# _fullscreen_ad. (easylistchina+easylist.txt: 16811) -/.*_fullscreen_ad\. -# _friendlyduck. (easylistchina+easylist.txt: 16810) -/.*_friendlyduck\. -# _framed_ad/ (easylistchina+easylist.txt: 16809) -/.*_framed_ad/ -# _footer_ad_ (easylistchina+easylist.txt: 16808) -/.*_footer_ad_ -# _floatingad_ (easylistchina+easylist.txt: 16807) -/.*_floatingad_ -# _floating_ad_ (easylistchina+easylist.txt: 16806) -/.*_floating_ad_ -# _fixed_ad. (easylistchina+easylist.txt: 16805) -/.*_fixed_ad\. -# _files/ad. (easylistchina+easylist.txt: 16804) -/.*_files/ad\. -# _feast_ad. (easylistchina+easylist.txt: 16803) -/.*_feast_ad\. -# _fbadbookingsystem& (easylistchina+easylist.txt: 16802) -/.*_fbadbookingsystem& -# _fach_ad. (easylistchina+easylist.txt: 16801) -/.*_fach_ad\. -# _externalad. (easylistchina+easylist.txt: 16800) -/.*_externalad\. -# _english/adv/ (easylistchina+easylist.txt: 16799) -/.*_english/adv/ -# _engine_ads_ (easylistchina+easylist.txt: 16798) -/.*_engine_ads_ -# _elements/ads/ (easylistchina+easylist.txt: 16797) -/.*_elements/ads/ -# _dynamicads/ (easylistchina+easylist.txt: 16796) -/.*_dynamicads/ -# _dropdown_ad. (easylistchina+easylist.txt: 16795) -/.*_dropdown_ad\. -# _down_ad_ (easylistchina+easylist.txt: 16794) -/.*_down_ad_ -# _doubleclick_ad. (easylistchina+easylist.txt: 16793) -/.*_doubleclick_ad\. -# _doubleclick. (easylistchina+easylist.txt: 16792) -/.*_doubleclick\. -# _displaytopads. (easylistchina+easylist.txt: 16791) -/.*_displaytopads\. -# _displayad_ (easylistchina+easylist.txt: 16790) -/.*_displayad_ -# _dfp.php? (easylistchina+easylist.txt: 16789) -/.*_dfp\.php\? -# _dashad_ (easylistchina+easylist.txt: 16788) -/.*_dashad_ -# _dart_interstitial. (easylistchina+easylist.txt: 16787) -/.*_dart_interstitial\. -# _dart_ads. (easylistchina+easylist.txt: 16786) -/.*_dart_ads\. -# _custom_ad_ (easylistchina+easylist.txt: 16785) -/.*_custom_ad_ -# _custom_ad. (easylistchina+easylist.txt: 16784) -/.*_custom_ad\. -# _contest_ad_ (easylistchina+easylist.txt: 16783) -/.*_contest_ad_ -# _content_ad_ (easylistchina+easylist.txt: 16782) -/.*_content_ad_ -# _content_ad. (easylistchina+easylist.txt: 16781) -/.*_content_ad\. -# _companionad. (easylistchina+easylist.txt: 16780) -/.*_companionad\. -# _ChatAd_ (easylistchina+easylist.txt: 16779) -/.*_ChatAd_ -# _cgbanners.php? (easylistchina+easylist.txt: 16778) -/.*_cgbanners\.php\? -# _centre_ad. (easylistchina+easylist.txt: 16777) -/.*_centre_ad\. -# _buttonad. (easylistchina+easylist.txt: 16776) -/.*_buttonad\. -# _button_ad_ (easylistchina+easylist.txt: 16775) -/.*_button_ad_ -# _btnad_ (easylistchina+easylist.txt: 16774) -/.*_btnad_ -# _box_ad_ (easylistchina+easylist.txt: 16773) -/.*_box_ad_ -# _bottom_ads_ (easylistchina+easylist.txt: 16772) -/.*_bottom_ads_ -# _bottom_ads. (easylistchina+easylist.txt: 16771) -/.*_bottom_ads\. -# _blogads_ (easylistchina+easylist.txt: 16770) -/.*_blogads_ -# _blogads. (easylistchina+easylist.txt: 16769) -/.*_blogads\. -# _blank_ads. (easylistchina+easylist.txt: 16768) -/.*_blank_ads\. -# _bg_ad_left. (easylistchina+easylist.txt: 16767) -/.*_bg_ad_left\. -# _bannerview.php?*&aid= (easylistchina+easylist.txt: 16766) -/.*_bannerview\.php\?.*&aid= -# _bannerads_ (easylistchina+easylist.txt: 16765) -/.*_bannerads_ -# _BannerAd_ (easylistchina+easylist.txt: 16764) -/.*_BannerAd_ -# _bannerad. (easylistchina+easylist.txt: 16763) -/.*_bannerad\. -# _banner_adv_ (easylistchina+easylist.txt: 16762) -/.*_banner_adv_ -# _banner_adv300x250px. (easylistchina+easylist.txt: 16761) -/.*_banner_adv300x250px\. -# _Banner_Ads_ (easylistchina+easylist.txt: 16760) -/.*_Banner_Ads_ -# _banner_ads. (easylistchina+easylist.txt: 16759) -/.*_banner_ads\. -# _banner_ad_ (easylistchina+easylist.txt: 16758) -/.*_banner_ad_ -# _banner_ad. (easylistchina+easylist.txt: 16757) -/.*_banner_ad\. -# _background_ad/ (easylistchina+easylist.txt: 16756) -/.*_background_ad/ -# _background_ad. (easylistchina+easylist.txt: 16755) -/.*_background_ad\. -# _assets/ads/ (easylistchina+easylist.txt: 16754) -/.*_assets/ads/ -# _argus_ad_ (easylistchina+easylist.txt: 16753) -/.*_argus_ad_ -# _alt/ads/ (easylistchina+easylist.txt: 16752) -/.*_alt/ads/ -# _afs_ads. (easylistchina+easylist.txt: 16751) -/.*_afs_ads\. -# _affiliate_ad. (easylistchina+easylist.txt: 16750) -/.*_affiliate_ad\. -# _affiliate/banners/ (easylistchina+easylist.txt: 16749) -/.*_affiliate/banners/ -# _afd_ads. (easylistchina+easylist.txt: 16748) -/.*_afd_ads\. -# _adwriter. (easylistchina+easylist.txt: 16747) -/.*_adwriter\. -# _adwrap. (easylistchina+easylist.txt: 16746) -/.*_adwrap\. -# _advservices. (easylistchina+easylist.txt: 16745) -/.*_advservices\. -# _adview_ (easylistchina+easylist.txt: 16744) -/.*_adview_ -# _adview? (easylistchina+easylist.txt: 16743) -/.*_adview\? -# _AdvertsImgs/ (easylistchina+easylist.txt: 16742) -/.*_AdvertsImgs/ -# _advertsarea. (easylistchina+easylist.txt: 16741) -/.*_advertsarea\. -# _adverts3. (easylistchina+easylist.txt: 16740) -/.*_adverts3\. -# _adverts/ (easylistchina+easylist.txt: 16739) -/.*_adverts/ -# _adverts.js (easylistchina+easylist.txt: 16738) -/.*_adverts\.js -# _advertphoto. (easylistchina+easylist.txt: 16737) -/.*_advertphoto\. -# _advertorials/ (easylistchina+easylist.txt: 16736) -/.*_advertorials/ -# _advertorial_ (easylistchina+easylist.txt: 16735) -/.*_advertorial_ -# _advertorial3. (easylistchina+easylist.txt: 16734) -/.*_advertorial3\. -# _advertorial. (easylistchina+easylist.txt: 16733) -/.*_advertorial\. -# _advertisment. (easylistchina+easylist.txt: 16732) -/.*_advertisment\. -# _advertising_iframe. (easylistchina+easylist.txt: 16731) -/.*_advertising_iframe\. -# _advertising_header. (easylistchina+easylist.txt: 16730) -/.*_advertising_header\. -# _advertising/ (easylistchina+easylist.txt: 16729) -/.*_advertising/ -# _advertising. (easylistchina+easylist.txt: 16728) -/.*_advertising\. -# _advertisementtxt_ (easylistchina+easylist.txt: 16727) -/.*_advertisementtxt_ -# _advertisements/ (easylistchina+easylist.txt: 16726) -/.*_advertisements/ -# _advertisementbar. (easylistchina+easylist.txt: 16725) -/.*_advertisementbar\. -# _advertisement_ (easylistchina+easylist.txt: 16724) -/.*_advertisement_ -# _advertisement/ (easylistchina+easylist.txt: 16723) -/.*_advertisement/ -# _advertisement. (easylistchina+easylist.txt: 16722) -/.*_advertisement\. -# _advertisement- (easylistchina+easylist.txt: 16721) -/.*_advertisement- -# _advertisehere. (easylistchina+easylist.txt: 16720) -/.*_advertisehere\. -# _advertise180. (easylistchina+easylist.txt: 16719) -/.*_advertise180\. -# _advertise. (easylistchina+easylist.txt: 16718) -/.*_advertise\. -# _advertise- (easylistchina+easylist.txt: 16717) -/.*_advertise- -# _advert_vert (easylistchina+easylist.txt: 16716) -/.*_advert_vert -# _advert_overview. (easylistchina+easylist.txt: 16715) -/.*_advert_overview\. -# _advert_label. (easylistchina+easylist.txt: 16714) -/.*_advert_label\. -# _advert_2. (easylistchina+easylist.txt: 16713) -/.*_advert_2\. -# _advert_1. (easylistchina+easylist.txt: 16712) -/.*_advert_1\. -# _advert1. (easylistchina+easylist.txt: 16711) -/.*_advert1\. -# _advert/ (easylistchina+easylist.txt: 16710) -/.*_advert/ -# _advert. (easylistchina+easylist.txt: 16709) -/.*_advert\. -# _Adv_Banner_ (easylistchina+easylist.txt: 16708) -/.*_Adv_Banner_ -# _adv/overlay/ (easylistchina+easylist.txt: 16707) -/.*_adv/overlay/ -# _adv/leaderboard_ (easylistchina+easylist.txt: 16706) -/.*_adv/leaderboard_ -# _adv/300. (easylistchina+easylist.txt: 16705) -/.*_adv/300\. -# _adunit. (easylistchina+easylist.txt: 16704) -/.*_adunit\. -# _adtxt. (easylistchina+easylist.txt: 16703) -/.*_adtxt\. -# _adtop. (easylistchina+easylist.txt: 16702) -/.*_adtop\. -# _adtoma. (easylistchina+easylist.txt: 16701) -/.*_adtoma\. -# _adtitle. (easylistchina+easylist.txt: 16700) -/.*_adtitle\. -# _adtext_ (easylistchina+easylist.txt: 16699) -/.*_adtext_ -# _adtech_ (easylistchina+easylist.txt: 16698) -/.*_adtech_ -# _adtech. (easylistchina+easylist.txt: 16696) -/.*_adtech\. -# _adtech- (easylistchina+easylist.txt: 16695) -/.*_adtech- -# _adtech& (easylistchina+easylist.txt: 16694) -/.*_adtech& -# _adtags. (easylistchina+easylist.txt: 16693) -/.*_adtags\. -# _adsystem/ (easylistchina+easylist.txt: 16692) -/.*_adsystem/ -# _adsys_ (easylistchina+easylist.txt: 16691) -/.*_adsys_ -# _adsys. (easylistchina+easylist.txt: 16690) -/.*_adsys\. -# _adstat. (easylistchina+easylist.txt: 16689) -/.*_adstat\. -# _adssource. (easylistchina+easylist.txt: 16688) -/.*_adssource\. -# _adsrv? (easylistchina+easylist.txt: 16687) -/.*_adsrv\? -# _adsrv= (easylistchina+easylist.txt: 16686) -/.*_adsrv= -# _adsperfectmarket/ (easylistchina+easylist.txt: 16685) -/.*_adsperfectmarket/ -# _adspace_ (easylistchina+easylist.txt: 16684) -/.*_adspace_ -# _adspace- (easylistchina+easylist.txt: 16683) -/.*_adspace- -# _adsonar. (easylistchina+easylist.txt: 16682) -/.*_adsonar\. -# _adskin_ (easylistchina+easylist.txt: 16681) -/.*_adskin_ -# _adskin. (easylistchina+easylist.txt: 16680) -/.*_adskin\. -# _adsjs. (easylistchina+easylist.txt: 16679) -/.*_adsjs\. -# _adshow. (easylistchina+easylist.txt: 16678) -/.*_adshow\. -# _adshare. (easylistchina+easylist.txt: 16677) -/.*_adshare\. -# _adsframe. (easylistchina+easylist.txt: 16676) -/.*_adsframe\. -# _adsetup. (easylistchina+easylist.txt: 16675) -/.*_adsetup\. -# _adserver/ (easylistchina+easylist.txt: 16674) -/.*_adserver/ -# _adserver. (easylistchina+easylist.txt: 16673) -/.*_adserver\. -# _adserved. (easylistchina+easylist.txt: 16672) -/.*_adserved\. -# _adserve/ (easylistchina+easylist.txt: 16671) -/.*_adserve/ -# _adserve. (easylistchina+easylist.txt: 16670) -/.*_adserve\. -# _adsense_ (easylistchina+easylist.txt: 16669) -/.*_adsense_ -# _adsense. (easylistchina+easylist.txt: 16668) -/.*_adsense\. -# _adsdaq. (easylistchina+easylist.txt: 16667) -/.*_adsdaq\. -# _adscript. (easylistchina+easylist.txt: 16666) -/.*_adscript\. -# _adsbgd. (easylistchina+easylist.txt: 16665) -/.*_adsbgd\. -# _ads_top. (easylistchina+easylist.txt: 16664) -/.*_ads_top\. -# _ads_text. (easylistchina+easylist.txt: 16663) -/.*_ads_text\. -# _ads_targeting. (easylistchina+easylist.txt: 16662) -/.*_ads_targeting\. -# _ads_single_ (easylistchina+easylist.txt: 16661) -/.*_ads_single_ -# _ads_reporting. (easylistchina+easylist.txt: 16660) -/.*_ads_reporting\. -# _ads_only& (easylistchina+easylist.txt: 16659) -/.*_ads_only& -# _ads_new. (easylistchina+easylist.txt: 16658) -/.*_ads_new\. -# _ads_multi. (easylistchina+easylist.txt: 16657) -/.*_ads_multi\. -# _ads_index_ (easylistchina+easylist.txt: 16656) -/.*_ads_index_ -# _ads_iframe_ (easylistchina+easylist.txt: 16655) -/.*_ads_iframe_ -# _ads_iframe. (easylistchina+easylist.txt: 16654) -/.*_ads_iframe\. -# _ads_Home. (easylistchina+easylist.txt: 16653) -/.*_ads_Home\. -# _ads_contextualtargeting_ (easylistchina+easylist.txt: 16652) -/.*_ads_contextualtargeting_ -# _ads_cached. (easylistchina+easylist.txt: 16651) -/.*_ads_cached\. -# _ads_async. (easylistchina+easylist.txt: 16650) -/.*_ads_async\. -# _ads? (easylistchina+easylist.txt: 16649) -/.*_ads\? -# _ads9. (easylistchina+easylist.txt: 16648) -/.*_ads9\. -# _ads8. (easylistchina+easylist.txt: 16647) -/.*_ads8\. -# _ads3. (easylistchina+easylist.txt: 16646) -/.*_ads3\. -# _ads2. (easylistchina+easylist.txt: 16645) -/.*_ads2\. -# _ads12. (easylistchina+easylist.txt: 16644) -/.*_ads12\. -# _ads1. (easylistchina+easylist.txt: 16643) -/.*_ads1\. -# _ads/square/ (easylistchina+easylist.txt: 16642) -/.*_ads/square/ -# _ads/js/ (easylistchina+easylist.txt: 16641) -/.*_ads/js/ -# _ads/ip/ (easylistchina+easylist.txt: 16640) -/.*_ads/ip/ -# _ads/inhouse/ (easylistchina+easylist.txt: 16639) -/.*_ads/inhouse/ -# _ads/iframe. (easylistchina+easylist.txt: 16638) -/.*_ads/iframe\. -# _ads/horiz_ (easylistchina+easylist.txt: 16637) -/.*_ads/horiz_ -# _ads/horiz/ (easylistchina+easylist.txt: 16636) -/.*_ads/horiz/ -# _ads/css/ (easylistchina+easylist.txt: 16635) -/.*_ads/css/ -# _ads.php? (easylistchina+easylist.txt: 16634) -/.*_ads\.php\? -# _ads.js? (easylistchina+easylist.txt: 16633) -/.*_ads\.js\? -# _ads.html (easylistchina+easylist.txt: 16632) -/.*_ads\.html -# _ads.cgi (easylistchina+easylist.txt: 16631) -/.*_ads\.cgi -# _ads-affiliates_ (easylistchina+easylist.txt: 16630) -/.*_ads-affiliates_ -# _adrow- (easylistchina+easylist.txt: 16629) -/.*_adrow- -# _adrotator. (easylistchina+easylist.txt: 16628) -/.*_adrotator\. -# _adright2. (easylistchina+easylist.txt: 16627) -/.*_adright2\. -# _adright. (easylistchina+easylist.txt: 16626) -/.*_adright\. -# _adplugin. (easylistchina+easylist.txt: 16625) -/.*_adplugin\. -# _adpartner. (easylistchina+easylist.txt: 16624) -/.*_adpartner\. -# _adpage= (easylistchina+easylist.txt: 16623) -/.*_adpage= -# _adobjects. (easylistchina+easylist.txt: 16622) -/.*_adobjects\. -# _adnetwork. (easylistchina+easylist.txt: 16621) -/.*_adnetwork\. -# _adminka/ (easylistchina+easylist.txt: 16620) -/.*_adminka/ -# _admin/ads/ (easylistchina+easylist.txt: 16619) -/.*_admin/ads/ -# _admarking_ (easylistchina+easylist.txt: 16618) -/.*_admarking_ -# _admanager/ (easylistchina+easylist.txt: 16617) -/.*_admanager/ -# _adlog. (easylistchina+easylist.txt: 16616) -/.*_adlog\. -# _adlinkbar. (easylistchina+easylist.txt: 16615) -/.*_adlinkbar\. -# _adlib. (easylistchina+easylist.txt: 16614) -/.*_adlib\. -# _adlesse. (easylistchina+easylist.txt: 16613) -/.*_adlesse\. -# _adlabel_ (easylistchina+easylist.txt: 16612) -/.*_adlabel_ -# _adjug. (easylistchina+easylist.txt: 16611) -/.*_adjug\. -# _adify. (easylistchina+easylist.txt: 16610) -/.*_adify\. -# _adhub_ (easylistchina+easylist.txt: 16609) -/.*_adhub_ -# _adhoriz. (easylistchina+easylist.txt: 16608) -/.*_adhoriz\. -# _adhome_ (easylistchina+easylist.txt: 16607) -/.*_adhome_ -# _adhome. (easylistchina+easylist.txt: 16606) -/.*_adhome\. -# _adhoc? (easylistchina+easylist.txt: 16605) -/.*_adhoc\? -# _adfunction. (easylistchina+easylist.txt: 16604) -/.*_adfunction\. -# _adframe_ (easylistchina+easylist.txt: 16603) -/.*_adframe_ -# _adframe/ (easylistchina+easylist.txt: 16602) -/.*_adframe/ -# _adframe. (easylistchina+easylist.txt: 16601) -/.*_adframe\. -# _adengine_ (easylistchina+easylist.txt: 16600) -/.*_adengine_ -# _adengage_ (easylistchina+easylist.txt: 16599) -/.*_adengage_ -# _adengage. (easylistchina+easylist.txt: 16598) -/.*_adengage\. -# _adcount= (easylistchina+easylist.txt: 16597) -/.*_adcount= -# _adcontent/ (easylistchina+easylist.txt: 16596) -/.*_adcontent/ -# _adcom. (easylistchina+easylist.txt: 16595) -/.*_adcom\. -# _adchoices. (easylistchina+easylist.txt: 16594) -/.*_adchoices\. -# _adchoice. (easylistchina+easylist.txt: 16593) -/.*_adchoice\. -# _adcall_ (easylistchina+easylist.txt: 16592) -/.*_adcall_ -# _adcall. (easylistchina+easylist.txt: 16591) -/.*_adcall\. -# _adbreak. (easylistchina+easylist.txt: 16590) -/.*_adbreak\. -# _adbox_ (easylistchina+easylist.txt: 16589) -/.*_adbox_ -# _adbox. (easylistchina+easylist.txt: 16588) -/.*_adbox\. -# _adblue. (easylistchina+easylist.txt: 16587) -/.*_adblue\. -# _adbit. (easylistchina+easylist.txt: 16586) -/.*_adbit\. -# _adbg2a. (easylistchina+easylist.txt: 16585) -/.*_adbg2a\. -# _adbg2. (easylistchina+easylist.txt: 16584) -/.*_adbg2\. -# _adbg1a. (easylistchina+easylist.txt: 16583) -/.*_adbg1a\. -# _adbar. (easylistchina+easylist.txt: 16582) -/.*_adbar\. -# _adbanners. (easylistchina+easylist.txt: 16581) -/.*_adbanners\. -# _adbanner_ (easylistchina+easylist.txt: 16580) -/.*_adbanner_ -# _adbanner/ (easylistchina+easylist.txt: 16579) -/.*_adbanner/ -# _adbanner. (easylistchina+easylist.txt: 16578) -/.*_adbanner\. -# _adaptvad. (easylistchina+easylist.txt: 16577) -/.*_adaptvad\. -# _adagency/ (easylistchina+easylist.txt: 16576) -/.*_adagency/ -# _ad_zone_ (easylistchina+easylist.txt: 16575) -/.*_ad_zone_ -# _ad_yellow. (easylistchina+easylist.txt: 16574) -/.*_ad_yellow\. -# _ad_wrapper. (easylistchina+easylist.txt: 16573) -/.*_ad_wrapper\. -# _ad_widesky. (easylistchina+easylist.txt: 16572) -/.*_ad_widesky\. -# _ad_view= (easylistchina+easylist.txt: 16571) -/.*_ad_view= -# _ad_vertical. (easylistchina+easylist.txt: 16570) -/.*_ad_vertical\. -# _ad_url= (easylistchina+easylist.txt: 16569) -/.*_ad_url= -# _ad_template_ (easylistchina+easylist.txt: 16568) -/.*_ad_template_ -# _ad_tall. (easylistchina+easylist.txt: 16567) -/.*_ad_tall\. -# _ad_square. (easylistchina+easylist.txt: 16566) -/.*_ad_square\. -# _ad_sponsor/ (easylistchina+easylist.txt: 16565) -/.*_ad_sponsor/ -# _ad_small. (easylistchina+easylist.txt: 16564) -/.*_ad_small\. -# _ad_slot= (easylistchina+easylist.txt: 16563) -/.*_ad_slot= -# _ad_skyscraper. (easylistchina+easylist.txt: 16562) -/.*_ad_skyscraper\. -# _ad_sky. (easylistchina+easylist.txt: 16561) -/.*_ad_sky\. -# _ad_size. (easylistchina+easylist.txt: 16560) -/.*_ad_size\. -# _ad_side. (easylistchina+easylist.txt: 16559) -/.*_ad_side\. -# _ad_show& (easylistchina+easylist.txt: 16558) -/.*_ad_show& -# _ad_serving. (easylistchina+easylist.txt: 16557) -/.*_ad_serving\. -# _ad_service. (easylistchina+easylist.txt: 16556) -/.*_ad_service\. -# _ad_run. (easylistchina+easylist.txt: 16555) -/.*_ad_run\. -# _ad_right_ (easylistchina+easylist.txt: 16554) -/.*_ad_right_ -# _ad_right. (easylistchina+easylist.txt: 16553) -/.*_ad_right\. -# _ad_renderer_ (easylistchina+easylist.txt: 16552) -/.*_ad_renderer_ -# _ad_render_ (easylistchina+easylist.txt: 16551) -/.*_ad_render_ -# _ad_promo2. (easylistchina+easylist.txt: 16550) -/.*_ad_promo2\. -# _ad_position_ (easylistchina+easylist.txt: 16549) -/.*_ad_position_ -# _ad_placeholder- (easylistchina+easylist.txt: 16548) -/.*_ad_placeholder- -# _ad_page_ (easylistchina+easylist.txt: 16547) -/.*_ad_page_ -# _ad_over_ (easylistchina+easylist.txt: 16546) -/.*_ad_over_ -# _ad_one. (easylistchina+easylist.txt: 16545) -/.*_ad_one\. -# _ad_number= (easylistchina+easylist.txt: 16544) -/.*_ad_number= -# _ad_new_ (easylistchina+easylist.txt: 16543) -/.*_ad_new_ -# _ad_minileaderboard. (easylistchina+easylist.txt: 16542) -/.*_ad_minileaderboard\. -# _ad_middle_ (easylistchina+easylist.txt: 16541) -/.*_ad_middle_ -# _ad_logo. (easylistchina+easylist.txt: 16540) -/.*_ad_logo\. -# _ad_leaderboard. (easylistchina+easylist.txt: 16539) -/.*_ad_leaderboard\. -# _ad_layer_ (easylistchina+easylist.txt: 16538) -/.*_ad_layer_ -# _ad_label. (easylistchina+easylist.txt: 16537) -/.*_ad_label\. -# _ad_interactive. (easylistchina+easylist.txt: 16536) -/.*_ad_interactive\. -# _ad_integration. (easylistchina+easylist.txt: 16535) -/.*_ad_integration\. -# _ad_init/ (easylistchina+easylist.txt: 16534) -/.*_ad_init/ -# _ad_images/ (easylistchina+easylist.txt: 16533) -/.*_ad_images/ -# _ad_image_ (easylistchina+easylist.txt: 16532) -/.*_ad_image_ -# _ad_iframe. (easylistchina+easylist.txt: 16531) -/.*_ad_iframe\. -# _ad_ids= (easylistchina+easylist.txt: 16530) -/.*_ad_ids= -# _ad_homepage. (easylistchina+easylist.txt: 16529) -/.*_ad_homepage\. -# _ad_heading. (easylistchina+easylist.txt: 16528) -/.*_ad_heading\. -# _ad_header. (easylistchina+easylist.txt: 16527) -/.*_ad_header\. -# _ad_head. (easylistchina+easylist.txt: 16526) -/.*_ad_head\. -# _ad_handler. (easylistchina+easylist.txt: 16525) -/.*_ad_handler\. -# _ad_frame. (easylistchina+easylist.txt: 16524) -/.*_ad_frame\. -# _ad_footer_ (easylistchina+easylist.txt: 16523) -/.*_ad_footer_ -# _ad_footer. (easylistchina+easylist.txt: 16522) -/.*_ad_footer\. -# _ad_feed. (easylistchina+easylist.txt: 16521) -/.*_ad_feed\. -# _ad_expand_ (easylistchina+easylist.txt: 16520) -/.*_ad_expand_ -# _ad_engine/ (easylistchina+easylist.txt: 16519) -/.*_ad_engine/ -# _ad_end_ (easylistchina+easylist.txt: 16518) -/.*_ad_end_ -# _ad_domain_ (easylistchina+easylist.txt: 16517) -/.*_ad_domain_ -# _ad_div= (easylistchina+easylist.txt: 16516) -/.*_ad_div= -# _ad_desktop_ (easylistchina+easylist.txt: 16515) -/.*_ad_desktop_ -# _ad_courier. (easylistchina+easylist.txt: 16514) -/.*_ad_courier\. -# _ad_count= (easylistchina+easylist.txt: 16513) -/.*_ad_count= -# _ad_count. (easylistchina+easylist.txt: 16512) -/.*_ad_count\. -# _ad_controller. (easylistchina+easylist.txt: 16511) -/.*_ad_controller\. -# _ad_content. (easylistchina+easylist.txt: 16510) -/.*_ad_content\. -# _ad_code. (easylistchina+easylist.txt: 16509) -/.*_ad_code\. -# _ad_close. (easylistchina+easylist.txt: 16508) -/.*_ad_close\. -# _ad_choices_ (easylistchina+easylist.txt: 16507) -/.*_ad_choices_ -# _ad_choices. (easylistchina+easylist.txt: 16506) -/.*_ad_choices\. -# _ad_change. (easylistchina+easylist.txt: 16505) -/.*_ad_change\. -# _ad_center. (easylistchina+easylist.txt: 16504) -/.*_ad_center\. -# _ad_bsb. (easylistchina+easylist.txt: 16503) -/.*_ad_bsb\. -# _ad_box. (easylistchina+easylist.txt: 16502) -/.*_ad_box\. -# _ad_bottom. (easylistchina+easylist.txt: 16501) -/.*_ad_bottom\. -# _ad_block& (easylistchina+easylist.txt: 16500) -/.*_ad_block& -# _ad_big. (easylistchina+easylist.txt: 16499) -/.*_ad_big\. -# _ad_banner_ (easylistchina+easylist.txt: 16498) -/.*_ad_banner_ -# _ad_banner. (easylistchina+easylist.txt: 16497) -/.*_ad_banner\. -# _ad_background. (easylistchina+easylist.txt: 16496) -/.*_ad_background\. -# _ad_article_ (easylistchina+easylist.txt: 16495) -/.*_ad_article_ -# _ad_actron. (easylistchina+easylist.txt: 16494) -/.*_ad_actron\. -# _ad_350x250. (easylistchina+easylist.txt: 16493) -/.*_ad_350x250\. -# _ad_300. (easylistchina+easylist.txt: 16492) -/.*_ad_300\. -# _ad_2012. (easylistchina+easylist.txt: 16491) -/.*_ad_2012\. -# _ad_125x125. (easylistchina+easylist.txt: 16490) -/.*_ad_125x125\. -# _ad?size= (easylistchina+easylist.txt: 16489) -/.*_ad\?size= -# _ad?darttag= (easylistchina+easylist.txt: 16488) -/.*_ad\?darttag= -# _ad9. (easylistchina+easylist.txt: 16487) -/.*_ad9\. -# _ad728x90. (easylistchina+easylist.txt: 16486) -/.*_ad728x90\. -# _ad6. (easylistchina+easylist.txt: 16485) -/.*_ad6\. -# _ad300x250. (easylistchina+easylist.txt: 16484) -/.*_ad300x250\. -# _ad300. (easylistchina+easylist.txt: 16483) -/.*_ad300\. -# _ad3. (easylistchina+easylist.txt: 16482) -/.*_ad3\. -# _ad234x90- (easylistchina+easylist.txt: 16481) -/.*_ad234x90- -# _ad2. (easylistchina+easylist.txt: 16480) -/.*_ad2\. -# _ad1b. (easylistchina+easylist.txt: 16479) -/.*_ad1b\. -# _ad1a. (easylistchina+easylist.txt: 16478) -/.*_ad1a\. -# _Ad125. (easylistchina+easylist.txt: 16477) -/.*_Ad125\. -# _ad120x120_ (easylistchina+easylist.txt: 16476) -/.*_ad120x120_ -# _ad103. (easylistchina+easylist.txt: 16475) -/.*_ad103\. -# _ad01_ (easylistchina+easylist.txt: 16473) -/.*_ad01_ -# _ad01. (easylistchina+easylist.txt: 16472) -/.*_ad01\. -# _ad/section_ (easylistchina+easylist.txt: 16471) -/.*_ad/section_ -# _ad/public/ (easylistchina+easylist.txt: 16470) -/.*_ad/public/ -# _AD/jquery. (easylistchina+easylist.txt: 16469) -/.*_AD/jquery\. -# _ad/full_ (easylistchina+easylist.txt: 16468) -/.*_ad/full_ -# _ad/display? (easylistchina+easylist.txt: 16467) -/.*_ad/display\? -# _ad.png? (easylistchina+easylist.txt: 16466) -/.*_ad\.png\? -# _ad.php? (easylistchina+easylist.txt: 16465) -/.*_ad\.php\? -# _ad.jsp? (easylistchina+easylist.txt: 16464) -/.*_ad\.jsp\? -# _ad.gif| (easylistchina+easylist.txt: 16463) -/.*_ad\.gif$ -# _ad-125x125. (easylistchina+easylist.txt: 16462) -/.*_ad-125x125\. -# _ad&zone= (easylistchina+easylist.txt: 16461) -/.*_ad&zone= -# _acorn_ad_ (easylistchina+easylist.txt: 16460) -/.*_acorn_ad_ -# _728x90ad_ (easylistchina+easylist.txt: 16459) -/.*_728x90ad_ -# _468x60ad. (easylistchina+easylist.txt: 16458) -/.*_468x60ad\. -# _300x250Banner_ (easylistchina+easylist.txt: 16457) -/.*_300x250Banner_ -# _160x550. (easylistchina+easylist.txt: 16456) -/.*_160x550\. -# _160_ad_ (easylistchina+easylist.txt: 16455) -/.*_160_ad_ -# _125ad. (easylistchina+easylist.txt: 16454) -/.*_125ad\. -# ^pid=Ads^ (easylistchina+easylist.txt: 16453) -/(.*[^\w%.-])?pid=Ads[^\w%.-] -# ^mod=wms&do=view_*&zone= (easylistchina+easylist.txt: 16452) -/(.*[^\w%.-])?mod=wms&do=view_.*&zone= -# ^fp=*&prvtof= (easylistchina+easylist.txt: 16451) -/(.*[^\w%.-])?fp=.*&prvtof= -# ?ZoneID=*&SiteID=*&PageID= (easylistchina+easylist.txt: 16450) -/.*\?ZoneID=.*&SiteID=.*&PageID= -# ?ZoneID=*&PageID=*&SiteID= (easylistchina+easylist.txt: 16449) -/.*\?ZoneID=.*&PageID=.*&SiteID= -# ?wpproadszoneid= (easylistchina+easylist.txt: 16448) -/.*\?wpproadszoneid= -# ?wm=*&prm=rev& (easylistchina+easylist.txt: 16447) -/.*\?wm=.*&prm=rev& -# ?view=ad& (easylistchina+easylist.txt: 16446) -/.*\?view=ad& -# ?type=oas_pop& (easylistchina+easylist.txt: 16445) -/.*\?type=oas_pop& -# ?type=ad& (easylistchina+easylist.txt: 16444) -/.*\?type=ad& -# ?simple_ad_ (easylistchina+easylist.txt: 16443) -/.*\?simple_ad_ -# ?sid=ads (easylistchina+easylist.txt: 16442) -/.*\?sid=ads -# ?service=ad& (easylistchina+easylist.txt: 16441) -/.*\?service=ad& -# ?phpAds_ (easylistchina+easylist.txt: 16440) -/.*\?phpAds_ -# ?OASTagURL= (easylistchina+easylist.txt: 16439) -/.*\?OASTagURL= -# ?module=ads/ (easylistchina+easylist.txt: 16438) -/.*\?module=ads/ -# ?idaffiliation= (easylistchina+easylist.txt: 16437) -/.*\?idaffiliation= -# ?handler=ads& (easylistchina+easylist.txt: 16436) -/.*\?handler=ads& -# ?goto=ad| (easylistchina+easylist.txt: 16435) -/.*\?goto=ad$ -# ?g1t2h=*&t1m2k3= (easylistchina+easylist.txt: 16433) -/.*\?g1t2h=.*&t1m2k3= -# ?file=ads& (easylistchina+easylist.txt: 16432) -/.*\?file=ads& -# ?dfpadname= (easylistchina+easylist.txt: 16431) -/.*\?dfpadname= -# ?bannerXGroupId= (easylistchina+easylist.txt: 16430) -/.*\?bannerXGroupId= -# ?bannerid= (easylistchina+easylist.txt: 16429) -/.*\?bannerid= -# ?banner_id= (easylistchina+easylist.txt: 16428) -/.*\?banner_id= -# ?banner.id= (easylistchina+easylist.txt: 16427) -/.*\?banner\.id= -# ?adzone= (easylistchina+easylist.txt: 16426) -/.*\?adzone= -# ?adx= (easylistchina+easylist.txt: 16425) -/.*\?adx= -# ?advurl= (easylistchina+easylist.txt: 16424) -/.*\?advurl= -# ?advtile= (easylistchina+easylist.txt: 16423) -/.*\?advtile= -# ?advsystem= (easylistchina+easylist.txt: 16422) -/.*\?advsystem= -# ?advideo_ (easylistchina+easylist.txt: 16421) -/.*\?advideo_ -# ?advertising= (easylistchina+easylist.txt: 16420) -/.*\?advertising= -# ?advertiser= (easylistchina+easylist.txt: 16417) -/.*\?advertiser= -# ?advertisement= (easylistchina+easylist.txt: 16416) -/.*\?advertisement= -# ?advert_key= (easylistchina+easylist.txt: 16415) -/.*\?advert_key= -# ?adversion= (easylistchina+easylist.txt: 16414) -/.*\?adversion= -# ?adv_type= (easylistchina+easylist.txt: 16413) -/.*\?adv_type= -# ?adv/id= (easylistchina+easylist.txt: 16412) -/.*\?adv/id= -# ?adunitname= (easylistchina+easylist.txt: 16411) -/.*\?adunitname= -# ?adunitid= (easylistchina+easylist.txt: 16410) -/.*\?adunitid= -# ?adunit_id= (easylistchina+easylist.txt: 16409) -/.*\?adunit_id= -# ?adtype= (easylistchina+easylist.txt: 16408) -/.*\?adtype= -# ?adtechplacementid= (easylistchina+easylist.txt: 16407) -/.*\?adtechplacementid= -# ?adtarget= (easylistchina+easylist.txt: 16406) -/.*\?adtarget= -# ?adTagUrl= (easylistchina+easylist.txt: 16405) -/.*\?adTagUrl= -# ?adtag= (easylistchina+easylist.txt: 16404) -/.*\?adtag= -# ?adslot= (easylistchina+easylist.txt: 16403) -/.*\?adslot= -# ?adsize= (easylistchina+easylist.txt: 16402) -/.*\?adsize= -# ?adsite= (easylistchina+easylist.txt: 16401) -/.*\?adsite= -# ?adsdata= (easylistchina+easylist.txt: 16400) -/.*\?adsdata= -# ?ads= (easylistchina+easylist.txt: 16399) -/.*\?ads= -# ?adpartner= (easylistchina+easylist.txt: 16398) -/.*\?adpartner= -# ?adpage= (easylistchina+easylist.txt: 16397) -/.*\?adpage= -# ?adlocation= (easylistchina+easylist.txt: 16396) -/.*\?adlocation= -# ?adloc= (easylistchina+easylist.txt: 16395) -/.*\?adloc= -# ?adfox_ (easylistchina+easylist.txt: 16394) -/.*\?adfox_ -# ?adformat= (easylistchina+easylist.txt: 16393) -/.*\?adformat= -# ?adflashid= (easylistchina+easylist.txt: 16392) -/.*\?adflashid= -# ?adCount= (easylistchina+easylist.txt: 16391) -/.*\?adCount= -# ?adcontext= (easylistchina+easylist.txt: 16390) -/.*\?adcontext= -# ?adclass= (easylistchina+easylist.txt: 16389) -/.*\?adclass= -# ?adarea= (easylistchina+easylist.txt: 16388) -/.*\?adarea= -# ?ad_width= (easylistchina+easylist.txt: 16387) -/.*\?ad_width= -# ?ad_type= (easylistchina+easylist.txt: 16386) -/.*\?ad_type= -# ?ad_tag= (easylistchina+easylist.txt: 16385) -/.*\?ad_tag= -# ?ad_size= (easylistchina+easylist.txt: 16384) -/.*\?ad_size= -# ?ad_ids= (easylistchina+easylist.txt: 16383) -/.*\?ad_ids= -# ?action=ads& (easylistchina+easylist.txt: 16382) -/.*\?action=ads& -# ?*=x55g%3add4vv4fy. (easylistchina+easylist.txt: 16381) -/.*\?.*=x55g%3add4vv4fy\. -# =webad2& (easylistchina+easylist.txt: 16380) -/.*=webad2& -# =web&ads= (easylistchina+easylist.txt: 16379) -/.*=web&ads= -# =tickerReportAdCallback_ (easylistchina+easylist.txt: 16378) -/.*=tickerReportAdCallback_ -# =textads& (easylistchina+easylist.txt: 16377) -/.*=textads& -# =simpleads/ (easylistchina+easylist.txt: 16376) -/.*=simpleads/ -# =showsearchgoogleads& (easylistchina+easylist.txt: 16375) -/.*=showsearchgoogleads& -# =searchadslider| (easylistchina+easylist.txt: 16374) -/.*=searchadslider$ -# =rightAds_ (easylistchina+easylist.txt: 16373) -/.*=rightAds_ -# =oas_tag. (easylistchina+easylist.txt: 16372) -/.*=oas_tag\. -# =js_ads& (easylistchina+easylist.txt: 16371) -/.*=js_ads& -# =iframe_adv& (easylistchina+easylist.txt: 16370) -/.*=iframe_adv& -# =half-page-ad& (easylistchina+easylist.txt: 16369) -/.*=half-page-ad& -# =GetSponsorAds& (easylistchina+easylist.txt: 16368) -/.*=GetSponsorAds& -# =dynamicwebad& (easylistchina+easylist.txt: 16367) -/.*=dynamicwebad& -# =dynamicads& (easylistchina+easylist.txt: 16366) -/.*=dynamicads& -# =displayAds& (easylistchina+easylist.txt: 16365) -/.*=displayAds& -# =DisplayAd& (easylistchina+easylist.txt: 16364) -/.*=DisplayAd& -# =display_ad& (easylistchina+easylist.txt: 16363) -/.*=display_ad& -# =deliverAdFrame& (easylistchina+easylist.txt: 16362) -/.*=deliverAdFrame& -# =dartad_ (easylistchina+easylist.txt: 16361) -/.*=dartad_ -# =com_ads& (easylistchina+easylist.txt: 16360) -/.*=com_ads& -# =clkads/ (easylistchina+easylist.txt: 16359) -/.*=clkads/ -# =big-ad-switch_ (easylistchina+easylist.txt: 16358) -/.*=big-ad-switch_ -# =banners_ad& (easylistchina+easylist.txt: 16357) -/.*=banners_ad& -# =akiba_ads_ (easylistchina+easylist.txt: 16356) -/.*=akiba_ads_ -# =adView& (easylistchina+easylist.txt: 16355) -/.*=adView& -# =advertorial& (easylistchina+easylist.txt: 16354) -/.*=advertorial& -# =advertiser/ (easylistchina+easylist.txt: 16353) -/.*=advertiser/ -# =advertiser. (easylistchina+easylist.txt: 16352) -/.*=advertiser\. -# =advert/ (easylistchina+easylist.txt: 16351) -/.*=advert/ -# =adunit& (easylistchina+easylist.txt: 16350) -/.*=adunit& -# =adtech_ (easylistchina+easylist.txt: 16349) -/.*=adtech_ -# =adspremiumplacement& (easylistchina+easylist.txt: 16348) -/.*=adspremiumplacement& -# =adslot& (easylistchina+easylist.txt: 16347) -/.*=adslot& -# =adshow& (easylistchina+easylist.txt: 16346) -/.*=adshow& -# =adsfinal. (easylistchina+easylist.txt: 16345) -/.*=adsfinal\. -# =adscripts& (easylistchina+easylist.txt: 16344) -/.*=adscripts& -# =adsCallback& (easylistchina+easylist.txt: 16343) -/.*=adsCallback& -# =adreplacementWrapperReg. (easylistchina+easylist.txt: 16342) -/.*=adreplacementWrapperReg\. -# =admodeliframe& (easylistchina+easylist.txt: 16341) -/.*=admodeliframe& -# =adMenu& (easylistchina+easylist.txt: 16340) -/.*=adMenu& -# =admeld& (easylistchina+easylist.txt: 16339) -/.*=admeld& -# =adlabs& (easylistchina+easylist.txt: 16338) -/.*=adlabs& -# =adexpert& (easylistchina+easylist.txt: 16337) -/.*=adexpert& -# =adcode& (easylistchina+easylist.txt: 16336) -/.*=adcode& -# =adcenter& (easylistchina+easylist.txt: 16335) -/.*=adcenter& -# =adbanner_ (easylistchina+easylist.txt: 16334) -/.*=adbanner_ -# =ad_iframe_ (easylistchina+easylist.txt: 16333) -/.*=ad_iframe_ -# =ad_iframe& (easylistchina+easylist.txt: 16332) -/.*=ad_iframe& -# =ad320x50- (easylistchina+easylist.txt: 16331) -/.*=ad320x50- -# =ad-rectangle- (easylistchina+easylist.txt: 16330) -/.*=ad-rectangle- -# =ad-leaderboard- (easylistchina+easylist.txt: 16329) -/.*=ad-leaderboard- -# ;iframeid=ad_ (easylistchina+easylist.txt: 16328) -/.*;iframeid=ad_ -# ;adsense_ (easylistchina+easylist.txt: 16326) -/.*;adsense_ -# :8080/ads/ (easylistchina+easylist.txt: 16325) -/.*:8080/ads/ -# ://wrapper.*/a? (easylistchina+easylist.txt: 16324) -/.*://wrapper\..*/a\? -wrapper.*./(.*/)?a\? -# ://synad. (easylistchina+easylist.txt: 16323) -/.*://synad\. -synad.*. -# ://rss.*/~a/ (easylistchina+easylist.txt: 16322) -/.*://rss\..*/~a/ -rss.*./(.*/)?~a/ -# ://pop-over. (easylistchina+easylist.txt: 16320) -/.*://pop-over\. -pop-over.*. -# ://ox-*/jstag^ (easylistchina+easylist.txt: 16319) -/.*://ox-.*/jstag[^\w%.-] -ox-*./(.*/)?jstag[^\w%.-] -# ://oas.*@ (easylistchina+easylist.txt: 16318) -/.*://oas\..*@ -oas.*./.*@ -# ://findnsave.*.*/td/portablerop.aspx? (easylistchina+easylist.txt: 16317) -/.*://findnsave\..*\..*/td/portablerop\.aspx\? -findnsave.*./.*\..*/td/portablerop\.aspx\? -findnsave.*.*./(.*/)?td/portablerop\.aspx\? -# ://findnsave.*.*/api/groupon.json? (easylistchina+easylist.txt: 16316) -/.*://findnsave\..*\..*/api/groupon\.json\? -findnsave.*./.*\..*/api/groupon\.json\? -findnsave.*.*./(.*/)?api/groupon\.json\? -# ://feeds.*/~a/ (easylistchina+easylist.txt: 16315) -/.*://feeds\..*/~a/ -feeds.*./(.*/)?~a/ -# ://delivery.*/jstag^ (easylistchina+easylist.txt: 16314) -/.*://delivery\..*/jstag[^\w%.-] -delivery.*./(.*/)?jstag[^\w%.-] -# ://bwp.*/search (easylistchina+easylist.txt: 16313) -/.*://bwp\..*/search -bwp.*./(.*/)?search -# ://ax-d.*/jstag^ (easylistchina+easylist.txt: 16310) -/.*://ax-d\..*/jstag[^\w%.-] -ax-d.*./(.*/)?jstag[^\w%.-] -# ://ads. (easylistchina+easylist.txt: 16306) -/.*://ads\. -ads.*. -# ://adcl. (easylistchina+easylist.txt: 16305) -/.*://adcl\. -adcl.*. -# ://ad.*/jstag^ (easylistchina+easylist.txt: 16304) -/.*://ad\..*/jstag[^\w%.-] -ad.*./(.*/)?jstag[^\w%.-] -# ://a.ads. (easylistchina+easylist.txt: 16303) -/.*://a\.ads\. -a.ads.*. -# /~cdn/ads/* (easylistchina+easylist.txt: 16302) -/(.*/)?~cdn/ads/.* -# /zedo_ (easylistchina+easylist.txt: 16301) -/(.*/)?zedo_ -# /zanox_ad/* (easylistchina+easylist.txt: 16300) -/(.*/)?zanox_ad/.* -# /zanox/banner/* (easylistchina+easylist.txt: 16299) -/(.*/)?zanox/banner/.* -# /zalando-ad- (easylistchina+easylist.txt: 16298) -/(.*/)?zalando-ad- -zalando-ad-*. -# /zagcookie_ (easylistchina+easylist.txt: 16297) -/(.*/)?zagcookie_ -# /z/ads/* (easylistchina+easylist.txt: 16296) -/(.*/)?z/ads/.* -# /z-ads. (easylistchina+easylist.txt: 16295) -/(.*/)?z-ads\. -z-ads.*. -# /yume_ad_library_ (easylistchina+easylist.txt: 16294) -/(.*/)?yume_ad_library_ -# /ysmwrapper.js (easylistchina+easylist.txt: 16293) -/(.*/)?ysmwrapper\.js -ysmwrapper.js*. -# /ysmads. (easylistchina+easylist.txt: 16292) -/(.*/)?ysmads\. -ysmads.*. -# /ysc_csc_news (easylistchina+easylist.txt: 16291) -/(.*/)?ysc_csc_news -# /ypad/* (easylistchina+easylist.txt: 16290) -/(.*/)?ypad/.* -# /youradhere_ (easylistchina+easylist.txt: 16289) -/(.*/)?youradhere_ -# /youradhere468- (easylistchina+easylist.txt: 16288) -/(.*/)?youradhere468- -youradhere468-*. -# /youradhere. (easylistchina+easylist.txt: 16287) -/(.*/)?youradhere\. -youradhere.*. -# /yourad1. (easylistchina+easylist.txt: 16286) -/(.*/)?yourad1\. -yourad1.*. -# /your_ad. (easylistchina+easylist.txt: 16285) -/(.*/)?your_ad\. -# /your-ad. (easylistchina+easylist.txt: 16284) -/(.*/)?your-ad\. -your-ad.*. -# /your-ad- (easylistchina+easylist.txt: 16283) -/(.*/)?your-ad- -your-ad-*. -# /yld_mgr/* (easylistchina+easylist.txt: 16282) -/(.*/)?yld_mgr/.* -# /yld/js/* (easylistchina+easylist.txt: 16281) -/(.*/)?yld/js/.* -# /yin-ad/* (easylistchina+easylist.txt: 16280) -/(.*/)?yin-ad/.* -# /yieldmanager/* (easylistchina+easylist.txt: 16279) -/(.*/)?yieldmanager/.* -# /yieldlab. (easylistchina+easylist.txt: 16278) -/(.*/)?yieldlab\. -yieldlab.*. -# /yieldads. (easylistchina+easylist.txt: 16277) -/(.*/)?yieldads\. -yieldads.*. -# /yhs/ads? (easylistchina+easylist.txt: 16276) -/(.*/)?yhs/ads\? -# /yesbaby. (easylistchina+easylist.txt: 16275) -/(.*/)?yesbaby\. -yesbaby.*. -# /yellowpagesads/* (easylistchina+easylist.txt: 16274) -/(.*/)?yellowpagesads/.* -# /yahoofeedproxy. (easylistchina+easylist.txt: 16273) -/(.*/)?yahoofeedproxy\. -yahoofeedproxy.*. -# /yahooadsobject. (easylistchina+easylist.txt: 16272) -/(.*/)?yahooadsobject\. -yahooadsobject.*. -# /yahooadsapi. (easylistchina+easylist.txt: 16271) -/(.*/)?yahooadsapi\. -yahooadsapi.*. -# /yahooads/* (easylistchina+easylist.txt: 16270) -/(.*/)?yahooads/.* -# /yahooads. (easylistchina+easylist.txt: 16269) -/(.*/)?yahooads\. -yahooads.*. -# /YahooAd_ (easylistchina+easylist.txt: 16268) -/(.*/)?YahooAd_ -# /yahoo_overture. (easylistchina+easylist.txt: 16267) -/(.*/)?yahoo_overture\. -# /yahoo/ads. (easylistchina+easylist.txt: 16266) -/(.*/)?yahoo/ads\. -# /yahoo-ads/* (easylistchina+easylist.txt: 16265) -/(.*/)?yahoo-ads/.* -# /yahoo-ad- (easylistchina+easylist.txt: 16264) -/(.*/)?yahoo-ad- -yahoo-ad-*. -# /yads_ (easylistchina+easylist.txt: 16263) -/(.*/)?yads_ -# /yads/* (easylistchina+easylist.txt: 16262) -/(.*/)?yads/.* -# /yads. (easylistchina+easylist.txt: 16261) -/(.*/)?yads\. -yads.*. -# /yads- (easylistchina+easylist.txt: 16260) -/(.*/)?yads- -yads-*. -# /xxxmatch_ (easylistchina+easylist.txt: 16259) -/(.*/)?xxxmatch_ -# /xwords. (easylistchina+easylist.txt: 16258) -/(.*/)?xwords\. -xwords.*. -# /xpiads. (easylistchina+easylist.txt: 16256) -/(.*/)?xpiads\. -xpiads.*. -# /xnxx-ads. (easylistchina+easylist.txt: 16255) -/(.*/)?xnxx-ads\. -xnxx-ads.*. -# /xmladparser. (easylistchina+easylist.txt: 16254) -/(.*/)?xmladparser\. -xmladparser.*. -# /xml/ads_ (easylistchina+easylist.txt: 16253) -/(.*/)?xml/ads_ -# /xml/ad/* (easylistchina+easylist.txt: 16252) -/(.*/)?xml/ad/.* -# /xhr/ad/* (easylistchina+easylist.txt: 16250) -/(.*/)?xhr/ad/.* -# /xfiles/ads/* (easylistchina+easylist.txt: 16249) -/(.*/)?xfiles/ads/.* -# /xclicks. (easylistchina+easylist.txt: 16248) -/(.*/)?xclicks\. -xclicks.*. -# /xbanner.php? (easylistchina+easylist.txt: 16247) -/(.*/)?xbanner\.php\? -# /xadvertisement. (easylistchina+easylist.txt: 16246) -/(.*/)?xadvertisement\. -xadvertisement.*. -# /xads.php (easylistchina+easylist.txt: 16245) -/(.*/)?xads\.php -xads.php*. -# /x5advcorner. (easylistchina+easylist.txt: 16244) -/(.*/)?x5advcorner\. -x5advcorner.*. -# /www/js/ad/* (easylistchina+easylist.txt: 16243) -/(.*/)?www/js/ad/.* -# /www/delivery/* (easylistchina+easylist.txt: 16242) -/(.*/)?www/delivery/.* -# /www/deliverx/* (easylistchina+easylist.txt: 16241) -/(.*/)?www/deliverx/.* -# /www/ads/* (easylistchina+easylist.txt: 16240) -/(.*/)?www/ads/.* -# /www/ad/* (easylistchina+easylist.txt: 16239) -/(.*/)?www/ad/.* -# /wwe_ads/* (easylistchina+easylist.txt: 16238) -/(.*/)?wwe_ads/.* -# /wwe_ads. (easylistchina+easylist.txt: 16237) -/(.*/)?wwe_ads\. -# /writelayerad. (easylistchina+easylist.txt: 16236) -/(.*/)?writelayerad\. -writelayerad.*. -# /wrapper/ads/* (easylistchina+easylist.txt: 16235) -/(.*/)?wrapper/ads/.* -# /wpproads. (easylistchina+easylist.txt: 16234) -/(.*/)?wpproads\. -wpproads.*. -# /wpproadds. (easylistchina+easylist.txt: 16233) -/(.*/)?wpproadds\. -wpproadds.*. -# /wpbanners_show.php (easylistchina+easylist.txt: 16232) -/(.*/)?wpbanners_show\.php -# /wpads/iframe. (easylistchina+easylist.txt: 16231) -/(.*/)?wpads/iframe\. -# /wp_pro_ad_system/* (easylistchina+easylist.txt: 16230) -/(.*/)?wp_pro_ad_system/.* -# /wp_ad_250_ (easylistchina+easylist.txt: 16229) -/(.*/)?wp_ad_250_ -# /wp_ad_250. (easylistchina+easylist.txt: 16228) -/(.*/)?wp_ad_250\. -# /wp-srv/ad/* (easylistchina+easylist.txt: 16227) -/(.*/)?wp-srv/ad/.* -# /wp-popup-scheduler/* (easylistchina+easylist.txt: 16226) -/(.*/)?wp-popup-scheduler/.* -# /wp-content/uploads/useful_banner_manager_banners/* (easylistchina+easylist.txt: 16225) -/(.*/)?wp-content/uploads/useful_banner_manager_banners/.* -# /wp-content/plugins/wp-super-popup-pro/* (easylistchina+easylist.txt: 16223) -/(.*/)?wp-content/plugins/wp-super-popup-pro/.* -# /wp-content/plugins/wp-bannerize/* (easylistchina+easylist.txt: 16222) -/(.*/)?wp-content/plugins/wp-bannerize/.* -# /wp-content/plugins/useful-banner-manager/* (easylistchina+easylist.txt: 16221) -/(.*/)?wp-content/plugins/useful-banner-manager/.* -# /wp-content/plugins/platinumpopup/* (easylistchina+easylist.txt: 16220) -/(.*/)?wp-content/plugins/platinumpopup/.* -# /wp-content/plugins/fasterim-optin/* (easylistchina+easylist.txt: 16218) -/(.*/)?wp-content/plugins/fasterim-optin/.* -# /wp-content/plugins/bhcb/lock.js (easylistchina+easylist.txt: 16217) -/(.*/)?wp-content/plugins/bhcb/lock\.js -# /wp-content/plugins/banner-manager/* (easylistchina+easylist.txt: 16216) -/(.*/)?wp-content/plugins/banner-manager/.* -# /wp-content/plugins/automatic-social-locker/* (easylistchina+easylist.txt: 16215) -/(.*/)?wp-content/plugins/automatic-social-locker/.* -# /wp-content/plugins/amazon-product-in-a-post-plugin/* (easylistchina+easylist.txt: 16214) -/(.*/)?wp-content/plugins/amazon-product-in-a-post-plugin/.* -# /wp-content/mbp-banner/* (easylistchina+easylist.txt: 16213) -/(.*/)?wp-content/mbp-banner/.* -# /wp-content/ads/* (easylistchina+easylist.txt: 16212) -/(.*/)?wp-content/ads/.* -# /work.php?n=*&size=*&c= (easylistchina+easylist.txt: 16211) -/(.*/)?work\.php\?n=.*&size=.*&c= -# /wordpress-ads-plug-in/* (easylistchina+easylist.txt: 16210) -/(.*/)?wordpress-ads-plug-in/.* -# /wmads. (easylistchina+easylist.txt: 16209) -/(.*/)?wmads\. -wmads.*. -# /wlbetathome/bannerflow/* (easylistchina+easylist.txt: 16208) -/(.*/)?wlbetathome/bannerflow/.* -# /wix-ad. (easylistchina+easylist.txt: 16207) -/(.*/)?wix-ad\. -wix-ad.*. -# /wired/ads/* (easylistchina+easylist.txt: 16206) -/(.*/)?wired/ads/.* -# /wire/ads/* (easylistchina+easylist.txt: 16205) -/(.*/)?wire/ads/.* -# /wipeads/* (easylistchina+easylist.txt: 16204) -/(.*/)?wipeads/.* -# /widgets/sponsored/* (easylistchina+easylist.txt: 16203) -/(.*/)?widgets/sponsored/.* -# /widgets/ads. (easylistchina+easylist.txt: 16202) -/(.*/)?widgets/ads\. -# /widgetadsense. (easylistchina+easylist.txt: 16201) -/(.*/)?widgetadsense\. -widgetadsense.*. -# /widgetad. (easylistchina+easylist.txt: 16200) -/(.*/)?widgetad\. -widgetad.*. -# /widget/ads/* (easylistchina+easylist.txt: 16199) -/(.*/)?widget/ads/.* -# /widget/ads. (easylistchina+easylist.txt: 16198) -/(.*/)?widget/ads\. -# /widget/ad/* (easylistchina+easylist.txt: 16197) -/(.*/)?widget/ad/.* -# /werbebanner/* (easylistchina+easylist.txt: 16196) -/(.*/)?werbebanner/.* -# /welcomeadredirect. (easylistchina+easylist.txt: 16195) -/(.*/)?welcomeadredirect\. -welcomeadredirect.*. -# /welcomead. (easylistchina+easylist.txt: 16194) -/(.*/)?welcomead\. -welcomead.*. -# /welcome_ad. (easylistchina+easylist.txt: 16193) -/(.*/)?welcome_ad\. -# /weeklyAdsLabel. (easylistchina+easylist.txt: 16192) -/(.*/)?weeklyAdsLabel\. -weeklyAdsLabel.*. -# /weborama.js (easylistchina+easylist.txt: 16191) -/(.*/)?weborama\.js -weborama.js*. -# /webmaster_ads/* (easylistchina+easylist.txt: 16190) -/(.*/)?webmaster_ads/.* -# /webmailad. (easylistchina+easylist.txt: 16189) -/(.*/)?webmailad\. -webmailad.*. -# /webadverts/* (easylistchina+easylist.txt: 16188) -/(.*/)?webadverts/.* -# /webadvert3/* (easylistchina+easylist.txt: 16187) -/(.*/)?webadvert3/.* -# /webadvert/* (easylistchina+easylist.txt: 16186) -/(.*/)?webadvert/.* -# /webadvert. (easylistchina+easylist.txt: 16185) -/(.*/)?webadvert\. -webadvert.*. -# /webadserver. (easylistchina+easylist.txt: 16184) -/(.*/)?webadserver\. -webadserver.*. -# /webads_ (easylistchina+easylist.txt: 16183) -/(.*/)?webads_ -# /webads/* (easylistchina+easylist.txt: 16182) -/(.*/)?webads/.* -# /webads. (easylistchina+easylist.txt: 16181) -/(.*/)?webads\. -webads.*. -# /webadimg/* (easylistchina+easylist.txt: 16180) -/(.*/)?webadimg/.* -# /webad? (easylistchina+easylist.txt: 16179) -/(.*/)?webad\? -# /WebAd/* (easylistchina+easylist.txt: 16178) -/(.*/)?WebAd/.* -# /webad. (easylistchina+easylist.txt: 16177) -/(.*/)?webad\. -webad.*. -# /web_ads/* (easylistchina+easylist.txt: 16176) -/(.*/)?web_ads/.* -# /web/ads/* (easylistchina+easylist.txt: 16175) -/(.*/)?web/ads/.* -# /web-ads/* (easylistchina+easylist.txt: 16174) -/(.*/)?web-ads/.* -# /web-ads. (easylistchina+easylist.txt: 16173) -/(.*/)?web-ads\. -web-ads.*. -# /web-ad_ (easylistchina+easylist.txt: 16172) -/(.*/)?web-ad_ -# /weather/ads/* (easylistchina+easylist.txt: 16171) -/(.*/)?weather/ads/.* -# /weather-sponsor/* (easylistchina+easylist.txt: 16170) -/(.*/)?weather-sponsor/.* -# /wbadvert/* (easylistchina+easylist.txt: 16169) -/(.*/)?wbadvert/.* -# /wave-ad- (easylistchina+easylist.txt: 16168) -/(.*/)?wave-ad- -wave-ad-*. -# /watchit_ad. (easylistchina+easylist.txt: 16167) -/(.*/)?watchit_ad\. -# /wallpaperads/* (easylistchina+easylist.txt: 16166) -/(.*/)?wallpaperads/.* -# /wallpaper_ads/* (easylistchina+easylist.txt: 16165) -/(.*/)?wallpaper_ads/.* -# /wahoha. (easylistchina+easylist.txt: 16164) -/(.*/)?wahoha\. -wahoha.*. -# /w/ads/* (easylistchina+easylist.txt: 16162) -/(.*/)?w/ads/.* -# /VXLayerAd- (easylistchina+easylist.txt: 16161) -/(.*/)?VXLayerAd- -VXLayerAd-*. -# /vtextads. (easylistchina+easylist.txt: 16160) -/(.*/)?vtextads\. -vtextads.*. -# /vrdinterads- (easylistchina+easylist.txt: 16159) -/(.*/)?vrdinterads- -vrdinterads-*. -# /vplayerad. (easylistchina+easylist.txt: 16158) -/(.*/)?vplayerad\. -vplayerad.*. -# /vpaidadrenderer. (easylistchina+easylist.txt: 16157) -/(.*/)?vpaidadrenderer\. -vpaidadrenderer.*. -# /vpaidad3. (easylistchina+easylist.txt: 16156) -/(.*/)?vpaidad3\. -vpaidad3.*. -# /vogue_ads/* (easylistchina+easylist.txt: 16155) -/(.*/)?vogue_ads/.* -# /vnads/* (easylistchina+easylist.txt: 16154) -/(.*/)?vnads/.* -# /vnads. (easylistchina+easylist.txt: 16153) -/(.*/)?vnads\. -vnads.*. -# /visitoursponsors. (easylistchina+easylist.txt: 16152) -/(.*/)?visitoursponsors\. -visitoursponsors.*. -# /vision/ads/* (easylistchina+easylist.txt: 16151) -/(.*/)?vision/ads/.* -# /virtualgirlhd- (easylistchina+easylist.txt: 16150) -/(.*/)?virtualgirlhd- -virtualgirlhd-*. -# /virtualgirl/* (easylistchina+easylist.txt: 16149) -/(.*/)?virtualgirl/.* -# /virtual_girl_ (easylistchina+easylist.txt: 16148) -/(.*/)?virtual_girl_ -# /virtuagirlhd. (easylistchina+easylist.txt: 16147) -/(.*/)?virtuagirlhd\. -virtuagirlhd.*. -# /virtuagirl3. (easylistchina+easylist.txt: 16146) -/(.*/)?virtuagirl3\. -virtuagirl3.*. -# /virtuagirl/* (easylistchina+easylist.txt: 16145) -/(.*/)?virtuagirl/.* -# /virtuagirl. (easylistchina+easylist.txt: 16144) -/(.*/)?virtuagirl\. -virtuagirl.*. -# /views/ads/* (easylistchina+easylist.txt: 16143) -/(.*/)?views/ads/.* -# /viewid=*/site=*/size= (easylistchina+easylist.txt: 16142) -/(.*/)?viewid=.*/site=.*/size= -# /viewer/rad? (easylistchina+easylist.txt: 16141) -/(.*/)?viewer/rad\? -# /viewbannerad. (easylistchina+easylist.txt: 16140) -/(.*/)?viewbannerad\. -viewbannerad.*. -# /viewad? (easylistchina+easylist.txt: 16139) -/(.*/)?viewad\? -# /viewad/* (easylistchina+easylist.txt: 16138) -/(.*/)?viewad/.* -# /viewad. (easylistchina+easylist.txt: 16137) -/(.*/)?viewad\. -viewad.*. -# /view_banner. (easylistchina+easylist.txt: 16136) -/(.*/)?view_banner\. -# /view/banner/* (easylistchina+easylist.txt: 16135) -/(.*/)?view/banner/.* -# /view/ads/* (easylistchina+easylist.txt: 16134) -/(.*/)?view/ads/.* -# /videowall-ad. (easylistchina+easylist.txt: 16133) -/(.*/)?videowall-ad\. -videowall-ad.*. -# /videostreaming_ads. (easylistchina+easylist.txt: 16132) -/(.*/)?videostreaming_ads\. -# /videojs.ads. (easylistchina+easylist.txt: 16131) -/(.*/)?videojs\.ads\. -videojs.ads.*. -# /VideoAdsServingService/* (easylistchina+easylist.txt: 16130) -/(.*/)?VideoAdsServingService/.* -# /videoads/* (easylistchina+easylist.txt: 16129) -/(.*/)?videoads/.* -# /videoads. (easylistchina+easylist.txt: 16128) -/(.*/)?videoads\. -videoads.*. -# /videoadrenderer. (easylistchina+easylist.txt: 16127) -/(.*/)?videoadrenderer\. -videoadrenderer.*. -# /VideoAdContent? (easylistchina+easylist.txt: 16126) -/(.*/)?VideoAdContent\? -# /videoad_new. (easylistchina+easylist.txt: 16125) -/(.*/)?videoad_new\. -# /VideoAd/* (easylistchina+easylist.txt: 16124) -/(.*/)?VideoAd/.* -# /videoad. (easylistchina+easylist.txt: 16123) -/(.*/)?videoad\. -videoad.*. -# /video_ads/* (easylistchina+easylist.txt: 16122) -/(.*/)?video_ads/.* -# /video_ads. (easylistchina+easylist.txt: 16121) -/(.*/)?video_ads\. -# /video_ad_ (easylistchina+easylist.txt: 16120) -/(.*/)?video_ad_ -# /video_ad. (easylistchina+easylist.txt: 16119) -/(.*/)?video_ad\. -# /video2adrenderer. (easylistchina+easylist.txt: 16118) -/(.*/)?video2adrenderer\. -video2adrenderer.*. -# /video/ads/* (easylistchina+easylist.txt: 16117) -/(.*/)?video/ads/.* -# /video.ads.php? (easylistchina+easylist.txt: 16116) -/(.*/)?video\.ads\.php\? -# /video-ads-player. (easylistchina+easylist.txt: 16115) -/(.*/)?video-ads-player\. -video-ads-player.*. -# /video-ad-overlay. (easylistchina+easylist.txt: 16114) -/(.*/)?video-ad-overlay\. -video-ad-overlay.*. -# /vidadv. (easylistchina+easylist.txt: 16113) -/(.*/)?vidadv\. -vidadv.*. -# /viagogoads. (easylistchina+easylist.txt: 16112) -/(.*/)?viagogoads\. -viagogoads.*. -# /VHDpoppingModels/* (easylistchina+easylist.txt: 16111) -/(.*/)?VHDpoppingModels/.* -# /vghd2.gif (easylistchina+easylist.txt: 16110) -/(.*/)?vghd2\.gif -vghd2.gif*. -# /vghd.swf (easylistchina+easylist.txt: 16109) -/(.*/)?vghd\.swf -vghd.swf*. -# /vghd.gif (easylistchina+easylist.txt: 16108) -/(.*/)?vghd\.gif -vghd.gif*. -# /verticaladrotatorv2. (easylistchina+easylist.txt: 16107) -/(.*/)?verticaladrotatorv2\. -verticaladrotatorv2.*. -# /vert_ad. (easylistchina+easylist.txt: 16106) -/(.*/)?vert_ad\. -# /vert728ad. (easylistchina+easylist.txt: 16105) -/(.*/)?vert728ad\. -vert728ad.*. -# /vericaladtitle. (easylistchina+easylist.txt: 16104) -/(.*/)?vericaladtitle\. -vericaladtitle.*. -# /vendor-ads- (easylistchina+easylist.txt: 16103) -/(.*/)?vendor-ads- -vendor-ads-*. -# /vclkads. (easylistchina+easylist.txt: 16102) -/(.*/)?vclkads\. -vclkads.*. -# /vbvua.js (easylistchina+easylist.txt: 16101) -/(.*/)?vbvua\.js -vbvua.js*. -# /vboard/ads/* (easylistchina+easylist.txt: 16100) -/(.*/)?vboard/ads/.* -# /vb/ads/* (easylistchina+easylist.txt: 16099) -/(.*/)?vb/ads/.* -# /vastads. (easylistchina+easylist.txt: 16098) -/(.*/)?vastads\. -vastads.*. -# /VASTAdPlugin. (easylistchina+easylist.txt: 16097) -/(.*/)?VASTAdPlugin\. -VASTAdPlugin.*. -# /vast_ads_ (easylistchina+easylist.txt: 16096) -/(.*/)?vast_ads_ -# /valueclickvert. (easylistchina+easylist.txt: 16095) -/(.*/)?valueclickvert\. -valueclickvert.*. -# /valueclickbanner. (easylistchina+easylist.txt: 16094) -/(.*/)?valueclickbanner\. -valueclickbanner.*. -# /valueclick. (easylistchina+easylist.txt: 16093) -/(.*/)?valueclick\. -valueclick.*. -# /valueclick-ad. (easylistchina+easylist.txt: 16092) -/(.*/)?valueclick-ad\. -valueclick-ad.*. -# /vads/* (easylistchina+easylist.txt: 16091) -/(.*/)?vads/.* -# /v9/adv/* (easylistchina+easylist.txt: 16090) -/(.*/)?v9/adv/.* -# /v5/ads/* (easylistchina+easylist.txt: 16089) -/(.*/)?v5/ads/.* -# /utep_ad.js (easylistchina+easylist.txt: 16088) -/(.*/)?utep_ad\.js -# /utep/ad/* (easylistchina+easylist.txt: 16087) -/(.*/)?utep/ad/.* -# /usernext. (easylistchina+easylist.txt: 16086) -/(.*/)?usernext\. -usernext.*. -# /userimages/ads/* (easylistchina+easylist.txt: 16085) -/(.*/)?userimages/ads/.* -# /userad/* (easylistchina+easylist.txt: 16084) -/(.*/)?userad/.* -# /userad. (easylistchina+easylist.txt: 16083) -/(.*/)?userad\. -userad.*. -# /user_ads/* (easylistchina+easylist.txt: 16082) -/(.*/)?user_ads/.* -# /user/ads? (easylistchina+easylist.txt: 16081) -/(.*/)?user/ads\? -# /usenext16. (easylistchina+easylist.txt: 16080) -/(.*/)?usenext16\. -usenext16.*. -# /us-ads. (easylistchina+easylist.txt: 16079) -/(.*/)?us-ads\. -us-ads.*. -# /upsellingads/* (easylistchina+easylist.txt: 16078) -/(.*/)?upsellingads/.* -# /uploads/adv_ (easylistchina+easylist.txt: 16077) -/(.*/)?uploads/adv_ -# /uploads/adv/* (easylistchina+easylist.txt: 16076) -/(.*/)?uploads/adv/.* -# /uploads/ads/* (easylistchina+easylist.txt: 16075) -/(.*/)?uploads/ads/.* -# /UploadedAds/* (easylistchina+easylist.txt: 16074) -/(.*/)?UploadedAds/.* -# /uploaded/ads/* (easylistchina+easylist.txt: 16073) -/(.*/)?uploaded/ads/.* -# /upload/ads/* (easylistchina+easylist.txt: 16072) -/(.*/)?upload/ads/.* -# /uplimg/ads/* (easylistchina+easylist.txt: 16071) -/(.*/)?uplimg/ads/.* -# /update_layer/layer_os_new.php (easylistchina+easylist.txt: 16070) -/(.*/)?update_layer/layer_os_new\.php -# /update_ads/* (easylistchina+easylist.txt: 16069) -/(.*/)?update_ads/.* -# /up/ads/* (easylistchina+easylist.txt: 16068) -/(.*/)?up/ads/.* -# /unity/ad/* (easylistchina+easylist.txt: 16067) -/(.*/)?unity/ad/.* -# /unibluead. (easylistchina+easylist.txt: 16066) -/(.*/)?unibluead\. -unibluead.*. -# /ukc-ad. (easylistchina+easylist.txt: 16065) -/(.*/)?ukc-ad\. -ukc-ad.*. -# /uk/ads/* (easylistchina+easylist.txt: 16064) -/(.*/)?uk/ads/.* -# /uk.ads. (easylistchina+easylist.txt: 16063) -/(.*/)?uk\.ads\. -uk.ads.*. -# /ui/adv_ (easylistchina+easylist.txt: 16062) -/(.*/)?ui/adv_ -# /ui/adv. (easylistchina+easylist.txt: 16061) -/(.*/)?ui/adv\. -# /ui/ads/* (easylistchina+easylist.txt: 16060) -/(.*/)?ui/ads/.* -# /ugoads_inner. (easylistchina+easylist.txt: 16059) -/(.*/)?ugoads_inner\. -# /ugoads. (easylistchina+easylist.txt: 16058) -/(.*/)?ugoads\. -ugoads.*. -# /ucstat. (easylistchina+easylist.txt: 16057) -/(.*/)?ucstat\. -ucstat.*. -# /uberlayadrenderer. (easylistchina+easylist.txt: 16056) -/(.*/)?uberlayadrenderer\. -uberlayadrenderer.*. -# /u?pub= (easylistchina+easylist.txt: 16055) -/(.*/)?u\?pub= -# /u/ads/* (easylistchina+easylist.txt: 16054) -/(.*/)?u/ads/.* -# /u-ads. (easylistchina+easylist.txt: 16053) -/(.*/)?u-ads\. -u-ads.*. -# /txtads/* (easylistchina+easylist.txt: 16052) -/(.*/)?txtads/.* -# /txtad. (easylistchina+easylist.txt: 16051) -/(.*/)?txtad\. -txtad.*. -# /txt_adv. (easylistchina+easylist.txt: 16050) -/(.*/)?txt_adv\. -# /txt_ad_ (easylistchina+easylist.txt: 16049) -/(.*/)?txt_ad_ -# /txt_ad. (easylistchina+easylist.txt: 16048) -/(.*/)?txt_ad\. -# /TwtAd_ (easylistchina+easylist.txt: 16047) -/(.*/)?TwtAd_ -# /twgetad3. (easylistchina+easylist.txt: 16046) -/(.*/)?twgetad3\. -twgetad3.*. -# /TWBadbanner. (easylistchina+easylist.txt: 16045) -/(.*/)?TWBadbanner\. -TWBadbanner.*. -# /tvgdartads. (easylistchina+easylist.txt: 16044) -/(.*/)?tvgdartads\. -tvgdartads.*. -# /turbo_ad. (easylistchina+easylist.txt: 16043) -/(.*/)?turbo_ad\. -# /ttz_ad. (easylistchina+easylist.txt: 16042) -/(.*/)?ttz_ad\. -# /tsc.php?*&ses= (easylistchina+easylist.txt: 16041) -/(.*/)?tsc\.php\?.*&ses= -# /tripplead/* (easylistchina+easylist.txt: 16040) -/(.*/)?tripplead/.* -# /tribalad. (easylistchina+easylist.txt: 16039) -/(.*/)?tribalad\. -tribalad.*. -# /triadshow. (easylistchina+easylist.txt: 16038) -/(.*/)?triadshow\. -triadshow.*. -# /tremoradrenderer. (easylistchina+easylist.txt: 16037) -/(.*/)?tremoradrenderer\. -tremoradrenderer.*. -# /travidia/* (easylistchina+easylist.txt: 16036) -/(.*/)?travidia/.* -# /transad. (easylistchina+easylist.txt: 16035) -/(.*/)?transad\. -transad.*. -# /trafficsynergysupportresponse_ (easylistchina+easylist.txt: 16034) -/(.*/)?trafficsynergysupportresponse_ -# /trafficengineads. (easylistchina+easylist.txt: 16033) -/(.*/)?trafficengineads\. -trafficengineads.*. -# /trafficads. (easylistchina+easylist.txt: 16032) -/(.*/)?trafficads\. -trafficads.*. -# /trafficadpdf02. (easylistchina+easylist.txt: 16031) -/(.*/)?trafficadpdf02\. -trafficadpdf02.*. -# /tradedoubler. (easylistchina+easylist.txt: 16030) -/(.*/)?tradedoubler\. -tradedoubler.*. -# /TradeAds/* (easylistchina+easylist.txt: 16029) -/(.*/)?TradeAds/.* -# /tradead_ (easylistchina+easylist.txt: 16028) -/(.*/)?tradead_ -# /trade_punder. (easylistchina+easylist.txt: 16027) -/(.*/)?trade_punder\. -# /tracking/events/* (easylistchina+easylist.txt: 16026) -/(.*/)?tracking/events/.* -# /tracked_ad. (easylistchina+easylist.txt: 16025) -/(.*/)?tracked_ad\. -# /trackads/* (easylistchina+easylist.txt: 16024) -/(.*/)?trackads/.* -# /track_ad_ (easylistchina+easylist.txt: 16023) -/(.*/)?track_ad_ -# /track.php?uid=*.*&d= (easylistchina+easylist.txt: 16022) -/(.*/)?track\.php\?uid=.*\..*&d= -# /tr2/ads/* (easylistchina+easylist.txt: 16020) -/(.*/)?tr2/ads/.* -# /towerbannerad/* (easylistchina+easylist.txt: 16019) -/(.*/)?towerbannerad/.* -# /tower_ad_ (easylistchina+easylist.txt: 16018) -/(.*/)?tower_ad_ -# /totemcash1. (easylistchina+easylist.txt: 16017) -/(.*/)?totemcash1\. -totemcash1.*. -# /Totem-Cash/* (easylistchina+easylist.txt: 16015) -/(.*/)?Totem-Cash/.* -# /totalmedia/* (easylistchina+easylist.txt: 16014) -/(.*/)?totalmedia/.* -# /torget_ads. (easylistchina+easylist.txt: 16013) -/(.*/)?torget_ads\. -# /tops.ads. (easylistchina+easylist.txt: 16012) -/(.*/)?tops\.ads\. -tops.ads.*. -# /toprightads. (easylistchina+easylist.txt: 16011) -/(.*/)?toprightads\. -toprightads.*. -# /topperad. (easylistchina+easylist.txt: 16010) -/(.*/)?topperad\. -topperad.*. -# /topleftads. (easylistchina+easylist.txt: 16009) -/(.*/)?topleftads\. -topleftads.*. -# /topadvert. (easylistchina+easylist.txt: 16008) -/(.*/)?topadvert\. -topadvert.*. -# /topadv. (easylistchina+easylist.txt: 16007) -/(.*/)?topadv\. -topadv.*. -# /topads| (easylistchina+easylist.txt: 16006) -/(.*/)?topads$ -# /topads_ (easylistchina+easylist.txt: 16005) -/(.*/)?topads_ -# /topads3. (easylistchina+easylist.txt: 16004) -/(.*/)?topads3\. -topads3.*. -# /topads2. (easylistchina+easylist.txt: 16003) -/(.*/)?topads2\. -topads2.*. -# /topads1. (easylistchina+easylist.txt: 16002) -/(.*/)?topads1\. -topads1.*. -# /topads/* (easylistchina+easylist.txt: 16001) -/(.*/)?topads/.* -# /topads. (easylistchina+easylist.txt: 16000) -/(.*/)?topads\. -topads.*. -# /topadheader. (easylistchina+easylist.txt: 15999) -/(.*/)?topadheader\. -topadheader.*. -# /topadfooter. (easylistchina+easylist.txt: 15998) -/(.*/)?topadfooter\. -topadfooter.*. -# /topadbg. (easylistchina+easylist.txt: 15997) -/(.*/)?topadbg\. -topadbg.*. -# /topad_ (easylistchina+easylist.txt: 15996) -/(.*/)?topad_ -# /topad3. (easylistchina+easylist.txt: 15995) -/(.*/)?topad3\. -topad3.*. -# /topad/* (easylistchina+easylist.txt: 15994) -/(.*/)?topad/.* -# /topad. (easylistchina+easylist.txt: 15993) -/(.*/)?topad\. -topad.*. -# /top_adv_ (easylistchina+easylist.txt: 15992) -/(.*/)?top_adv_ -# /top_ads_ (easylistchina+easylist.txt: 15991) -/(.*/)?top_ads_ -# /top_ads/* (easylistchina+easylist.txt: 15990) -/(.*/)?top_ads/.* -# /top_ads. (easylistchina+easylist.txt: 15989) -/(.*/)?top_ads\. -# /top_ad_ (easylistchina+easylist.txt: 15988) -/(.*/)?top_ad_ -# /top_ad/* (easylistchina+easylist.txt: 15987) -/(.*/)?top_ad/.* -# /top_ad. (easylistchina+easylist.txt: 15986) -/(.*/)?top_ad\. -# /top-ads. (easylistchina+easylist.txt: 15985) -/(.*/)?top-ads\. -top-ads.*. -# /top-ad_ (easylistchina+easylist.txt: 15984) -/(.*/)?top-ad_ -# /top-ad. (easylistchina+easylist.txt: 15983) -/(.*/)?top-ad\. -top-ad.*. -# /top-ad- (easylistchina+easylist.txt: 15982) -/(.*/)?top-ad- -top-ad-*. -# /toonad. (easylistchina+easylist.txt: 15981) -/(.*/)?toonad\. -toonad.*. -# /tools/ad. (easylistchina+easylist.txt: 15980) -/(.*/)?tools/ad\. -# /toolkitads. (easylistchina+easylist.txt: 15979) -/(.*/)?toolkitads\. -toolkitads.*. -# /toigoogleads. (easylistchina+easylist.txt: 15978) -/(.*/)?toigoogleads\. -toigoogleads.*. -# /toggleAds. (easylistchina+easylist.txt: 15977) -/(.*/)?toggleAds\. -toggleAds.*. -# /tncms/ads/* (easylistchina+easylist.txt: 15976) -/(.*/)?tncms/ads/.* -# /tmobilead. (easylistchina+easylist.txt: 15975) -/(.*/)?tmobilead\. -tmobilead.*. -# /tmo/ads/* (easylistchina+easylist.txt: 15974) -/(.*/)?tmo/ads/.* -# /tmnadsense. (easylistchina+easylist.txt: 15973) -/(.*/)?tmnadsense\. -tmnadsense.*. -# /tmnadsense- (easylistchina+easylist.txt: 15972) -/(.*/)?tmnadsense- -tmnadsense-*. -# /tl.ads- (easylistchina+easylist.txt: 15971) -/(.*/)?tl\.ads- -tl.ads-*. -# /tizers.php? (easylistchina+easylist.txt: 15970) -/(.*/)?tizers\.php\? -# /title_ad. (easylistchina+easylist.txt: 15969) -/(.*/)?title_ad\. -# /title-ad/* (easylistchina+easylist.txt: 15968) -/(.*/)?title-ad/.* -# /tit-ads. (easylistchina+easylist.txt: 15967) -/(.*/)?tit-ads\. -tit-ads.*. -# /tinyad. (easylistchina+easylist.txt: 15966) -/(.*/)?tinyad\. -tinyad.*. -# /tinlads. (easylistchina+easylist.txt: 15965) -/(.*/)?tinlads\. -tinlads.*. -# /tileads/* (easylistchina+easylist.txt: 15964) -/(.*/)?tileads/.* -# /TILE_ADS/* (easylistchina+easylist.txt: 15963) -/(.*/)?TILE_ADS/.* -# /tikilink? (easylistchina+easylist.txt: 15962) -/(.*/)?tikilink\? -# /tii_ads. (easylistchina+easylist.txt: 15961) -/(.*/)?tii_ads\. -# /tidaladplugin. (easylistchina+easylist.txt: 15960) -/(.*/)?tidaladplugin\. -tidaladplugin.*. -# /tickeradsget. (easylistchina+easylist.txt: 15959) -/(.*/)?tickeradsget\. -tickeradsget.*. -# /thunder/ad. (easylistchina+easylist.txt: 15958) -/(.*/)?thunder/ad\. -# /thumbs/ads/* (easylistchina+easylist.txt: 15957) -/(.*/)?thumbs/ads/.* -# /thirdpartyframedad/* (easylistchina+easylist.txt: 15956) -/(.*/)?thirdpartyframedad/.* -# /thirdpartyads/* (easylistchina+easylist.txt: 15955) -/(.*/)?thirdpartyads/.* -# /thirdparty/ad/* (easylistchina+easylist.txt: 15954) -/(.*/)?thirdparty/ad/.* -# /thebannerserver.net/* (easylistchina+easylist.txt: 15953) -/(.*/)?thebannerserver\.net/.* -thebannerserver.net/.* -# /thdgoogleadsense. (easylistchina+easylist.txt: 15952) -/(.*/)?thdgoogleadsense\. -thdgoogleadsense.*. -# /tg.php?uid= (easylistchina+easylist.txt: 15951) -/(.*/)?tg\.php\?uid= -# /tfs-ad. (easylistchina+easylist.txt: 15950) -/(.*/)?tfs-ad\. -tfs-ad.*. -# /textadspromo_ (easylistchina+easylist.txt: 15949) -/(.*/)?textadspromo_ -# /textads_ (easylistchina+easylist.txt: 15948) -/(.*/)?textads_ -# /textads/* (easylistchina+easylist.txt: 15947) -/(.*/)?textads/.* -# /textads. (easylistchina+easylist.txt: 15946) -/(.*/)?textads\. -textads.*. -# /textads- (easylistchina+easylist.txt: 15945) -/(.*/)?textads- -textads-*. -# /textadrotate. (easylistchina+easylist.txt: 15944) -/(.*/)?textadrotate\. -textadrotate.*. -# /textad_ (easylistchina+easylist.txt: 15943) -/(.*/)?textad_ -# /textad? (easylistchina+easylist.txt: 15942) -/(.*/)?textad\? -# /textad1. (easylistchina+easylist.txt: 15941) -/(.*/)?textad1\. -textad1.*. -# /textad/* (easylistchina+easylist.txt: 15940) -/(.*/)?textad/.* -# /textad. (easylistchina+easylist.txt: 15939) -/(.*/)?textad\. -textad.*. -# /text_ads_ (easylistchina+easylist.txt: 15938) -/(.*/)?text_ads_ -# /text_ads. (easylistchina+easylist.txt: 15937) -/(.*/)?text_ads\. -# /text_ad_ (easylistchina+easylist.txt: 15936) -/(.*/)?text_ad_ -# /text_ad. (easylistchina+easylist.txt: 15935) -/(.*/)?text_ad\. -# /testingad. (easylistchina+easylist.txt: 15934) -/(.*/)?testingad\. -testingad.*. -# /testads/* (easylistchina+easylist.txt: 15933) -/(.*/)?testads/.* -# /templates/adv_ (easylistchina+easylist.txt: 15932) -/(.*/)?templates/adv_ -# /templates/ads/* (easylistchina+easylist.txt: 15931) -/(.*/)?templates/ads/.* -# /templates/ad/* (easylistchina+easylist.txt: 15930) -/(.*/)?templates/ad/.* -# /templates/ad. (easylistchina+easylist.txt: 15929) -/(.*/)?templates/ad\. -# /templateadvimages/* (easylistchina+easylist.txt: 15928) -/(.*/)?templateadvimages/.* -# /template/ad. (easylistchina+easylist.txt: 15927) -/(.*/)?template/ad\. -# /tempads/* (easylistchina+easylist.txt: 15926) -/(.*/)?tempads/.* -# /teletoon_ad. (easylistchina+easylist.txt: 15925) -/(.*/)?teletoon_ad\. -# /technomedia. (easylistchina+easylist.txt: 15924) -/(.*/)?technomedia\. -technomedia.*. -# /teaseimg/ads/* (easylistchina+easylist.txt: 15923) -/(.*/)?teaseimg/ads/.* -# /teamplayer-ads. (easylistchina+easylist.txt: 15922) -/(.*/)?teamplayer-ads\. -teamplayer-ads.*. -# /tdlads/* (easylistchina+easylist.txt: 15921) -/(.*/)?tdlads/.* -# /td_ads/* (easylistchina+easylist.txt: 15920) -/(.*/)?td_ads/.* -# /td-ads- (easylistchina+easylist.txt: 15919) -/(.*/)?td-ads- -td-ads-*. -# /taxonomy-ads. (easylistchina+easylist.txt: 15918) -/(.*/)?taxonomy-ads\. -taxonomy-ads.*. -# /talkads/* (easylistchina+easylist.txt: 15917) -/(.*/)?talkads/.* -# /tagadv_ (easylistchina+easylist.txt: 15916) -/(.*/)?tagadv_ -# /tag_sys. (easylistchina+easylist.txt: 15915) -/(.*/)?tag_sys\. -# /tag_oas. (easylistchina+easylist.txt: 15914) -/(.*/)?tag_oas\. -# /tag_adv/* (easylistchina+easylist.txt: 15913) -/(.*/)?tag_adv/.* -# /tag-adv. (easylistchina+easylist.txt: 15912) -/(.*/)?tag-adv\. -tag-adv.*. -# /tableadnorth. (easylistchina+easylist.txt: 15911) -/(.*/)?tableadnorth\. -tableadnorth.*. -# /tabads/* (easylistchina+easylist.txt: 15910) -/(.*/)?tabads/.* -# /t.php?uid=*.*&src= (easylistchina+easylist.txt: 15909) -/(.*/)?t\.php\?uid=.*\..*&src= -# /t-ads. (easylistchina+easylist.txt: 15908) -/(.*/)?t-ads\. -t-ads.*. -# /systemad_ (easylistchina+easylist.txt: 15907) -/(.*/)?systemad_ -# /systemad. (easylistchina+easylist.txt: 15906) -/(.*/)?systemad\. -systemad.*. -# /system_ad. (easylistchina+easylist.txt: 15905) -/(.*/)?system_ad\. -# /system/ads/* (easylistchina+easylist.txt: 15904) -/(.*/)?system/ads/.* -# /system/ad/* (easylistchina+easylist.txt: 15903) -/(.*/)?system/ad/.* -# /sys/ad/* (easylistchina+easylist.txt: 15902) -/(.*/)?sys/ad/.* -# /syndication/ad. (easylistchina+easylist.txt: 15901) -/(.*/)?syndication/ad\. -# /synad3. (easylistchina+easylist.txt: 15900) -/(.*/)?synad3\. -synad3.*. -# /synad2. (easylistchina+easylist.txt: 15899) -/(.*/)?synad2\. -synad2.*. -# /SWMAdPlayer. (easylistchina+easylist.txt: 15898) -/(.*/)?SWMAdPlayer\. -SWMAdPlayer.*. -# /switchadbanner. (easylistchina+easylist.txt: 15897) -/(.*/)?switchadbanner\. -switchadbanner.*. -# /swfbin/ad3_ (easylistchina+easylist.txt: 15896) -/(.*/)?swfbin/ad3_ -# /swfbin/ad3- (easylistchina+easylist.txt: 15895) -/(.*/)?swfbin/ad3- -# /swfbin/ad- (easylistchina+easylist.txt: 15894) -/(.*/)?swfbin/ad- -# /swf/ads/* (easylistchina+easylist.txt: 15893) -/(.*/)?swf/ads/.* -# /swf/ad- (easylistchina+easylist.txt: 15892) -/(.*/)?swf/ad- -# /svnad/* (easylistchina+easylist.txt: 15891) -/(.*/)?svnad/.* -# /supernorthroomad. (easylistchina+easylist.txt: 15890) -/(.*/)?supernorthroomad\. -supernorthroomad.*. -# /superads_ (easylistchina+easylist.txt: 15889) -/(.*/)?superads_ -# /sugarads- (easylistchina+easylist.txt: 15888) -/(.*/)?sugarads- -sugarads-*. -# /sugar-ads/* (easylistchina+easylist.txt: 15887) -/(.*/)?sugar-ads/.* -# /sugar-ads. (easylistchina+easylist.txt: 15886) -/(.*/)?sugar-ads\. -sugar-ads.*. -# /subs-ads/* (easylistchina+easylist.txt: 15885) -/(.*/)?subs-ads/.* -# /subnavads/* (easylistchina+easylist.txt: 15884) -/(.*/)?subnavads/.* -# /subadz. (easylistchina+easylist.txt: 15883) -/(.*/)?subadz\. -subadz.*. -# /subad2_ (easylistchina+easylist.txt: 15882) -/(.*/)?subad2_ -# /subAd. (easylistchina+easylist.txt: 15881) -/(.*/)?subAd\. -subAd.*. -# /styles/ads/* (easylistchina+easylist.txt: 15880) -/(.*/)?styles/ads/.* -# /styles/ads. (easylistchina+easylist.txt: 15879) -/(.*/)?styles/ads\. -# /style_ad. (easylistchina+easylist.txt: 15878) -/(.*/)?style_ad\. -# /stuff/ad- (easylistchina+easylist.txt: 15877) -/(.*/)?stuff/ad- -# /studioads/* (easylistchina+easylist.txt: 15876) -/(.*/)?studioads/.* -# /streamatepop. (easylistchina+easylist.txt: 15875) -/(.*/)?streamatepop\. -streamatepop.*. -# /streamads. (easylistchina+easylist.txt: 15874) -/(.*/)?streamads\. -streamads.*. -# /stream-ad. (easylistchina+easylist.txt: 15873) -/(.*/)?stream-ad\. -stream-ad.*. -# /storyads. (easylistchina+easylist.txt: 15872) -/(.*/)?storyads\. -storyads.*. -# /storyadcode. (easylistchina+easylist.txt: 15871) -/(.*/)?storyadcode\. -storyadcode.*. -# /story_ads_ (easylistchina+easylist.txt: 15870) -/(.*/)?story_ads_ -# /story_ad. (easylistchina+easylist.txt: 15869) -/(.*/)?story_ad\. -# /stories/ads/* (easylistchina+easylist.txt: 15868) -/(.*/)?stories/ads/.* -# /storage/adv/* (easylistchina+easylist.txt: 15867) -/(.*/)?storage/adv/.* -# /storage/ads/* (easylistchina+easylist.txt: 15866) -/(.*/)?storage/ads/.* -# /stickyad2. (easylistchina+easylist.txt: 15865) -/(.*/)?stickyad2\. -stickyad2.*. -# /stickyad. (easylistchina+easylist.txt: 15864) -/(.*/)?stickyad\. -stickyad.*. -# /sticky_ad. (easylistchina+easylist.txt: 15863) -/(.*/)?sticky_ad\. -# /sticker_ad. (easylistchina+easylist.txt: 15862) -/(.*/)?sticker_ad\. -# /stats/?t_sid= (easylistchina+easylist.txt: 15861) -/(.*/)?stats/\?t_sid= -# /staticadslot. (easylistchina+easylist.txt: 15860) -/(.*/)?staticadslot\. -staticadslot.*. -# /static_ads/* (easylistchina+easylist.txt: 15859) -/(.*/)?static_ads/.* -# /static/adv/* (easylistchina+easylist.txt: 15857) -/(.*/)?static/adv/.* -# /static/ads/* (easylistchina+easylist.txt: 15856) -/(.*/)?static/ads/.* -# /static/ad_ (easylistchina+easylist.txt: 15855) -/(.*/)?static/ad_ -# /static/ad/* (easylistchina+easylist.txt: 15854) -/(.*/)?static/ad/.* -# /static/ad- (easylistchina+easylist.txt: 15853) -/(.*/)?static/ad- -# /static.ad. (easylistchina+easylist.txt: 15852) -/(.*/)?static\.ad\. -static.ad.*. -# /standard_ads. (easylistchina+easylist.txt: 15851) -/(.*/)?standard_ads\. -# /ssc_ad. (easylistchina+easylist.txt: 15850) -/(.*/)?ssc_ad\. -# /ss3/ads/* (easylistchina+easylist.txt: 15849) -/(.*/)?ss3/ads/.* -# /srv/ad/* (easylistchina+easylist.txt: 15848) -/(.*/)?srv/ad/.* -# /srec_ad_ (easylistchina+easylist.txt: 15847) -/(.*/)?srec_ad_ -# /src/ads_ (easylistchina+easylist.txt: 15846) -/(.*/)?src/ads_ -# /squareads. (easylistchina+easylist.txt: 15845) -/(.*/)?squareads\. -squareads.*. -# /squaread. (easylistchina+easylist.txt: 15844) -/(.*/)?squaread\. -squaread.*. -# /square-ads/* (easylistchina+easylist.txt: 15843) -/(.*/)?square-ads/.* -# /square-ad. (easylistchina+easylist.txt: 15842) -/(.*/)?square-ad\. -square-ad.*. -# /spotxchangevpaid. (easylistchina+easylist.txt: 15841) -/(.*/)?spotxchangevpaid\. -spotxchangevpaid.*. -# /spotxchangeplugin. (easylistchina+easylist.txt: 15840) -/(.*/)?spotxchangeplugin\. -spotxchangeplugin.*. -# /spotx_adapter. (easylistchina+easylist.txt: 15839) -/(.*/)?spotx_adapter\. -# /spotlightads/* (easylistchina+easylist.txt: 15838) -/(.*/)?spotlightads/.* -# /sponsorstrips/* (easylistchina+easylist.txt: 15837) -/(.*/)?sponsorstrips/.* -# /sponsorshipimage- (easylistchina+easylist.txt: 15836) -/(.*/)?sponsorshipimage- -sponsorshipimage-*. -# /sponsorsgif. (easylistchina+easylist.txt: 15835) -/(.*/)?sponsorsgif\. -sponsorsgif.*. -# /sponsors_box. (easylistchina+easylist.txt: 15834) -/(.*/)?sponsors_box\. -# /sponsors/amg.php? (easylistchina+easylist.txt: 15833) -/(.*/)?sponsors/amg\.php\? -# /sponsors/ads/* (easylistchina+easylist.txt: 15832) -/(.*/)?sponsors/ads/.* -# /sponsors.js? (easylistchina+easylist.txt: 15831) -/(.*/)?sponsors\.js\? -# /sponsors-ads/* (easylistchina+easylist.txt: 15830) -/(.*/)?sponsors-ads/.* -# /sponsorpaynetwork. (easylistchina+easylist.txt: 15829) -/(.*/)?sponsorpaynetwork\. -sponsorpaynetwork.*. -# /sponsoringbanner/* (easylistchina+easylist.txt: 15828) -/(.*/)?sponsoringbanner/.* -# /sponsorHeaderDeriv_ (easylistchina+easylist.txt: 15827) -/(.*/)?sponsorHeaderDeriv_ -# /sponsoredlisting. (easylistchina+easylist.txt: 15826) -/(.*/)?sponsoredlisting\. -sponsoredlisting.*. -# /sponsoredlinksiframe. (easylistchina+easylist.txt: 15825) -/(.*/)?sponsoredlinksiframe\. -sponsoredlinksiframe.*. -# /sponsoredlinks? (easylistchina+easylist.txt: 15824) -/(.*/)?sponsoredlinks\? -# /sponsoredlinks/* (easylistchina+easylist.txt: 15823) -/(.*/)?sponsoredlinks/.* -# /sponsoredlinks. (easylistchina+easylist.txt: 15822) -/(.*/)?sponsoredlinks\. -sponsoredlinks.*. -# /sponsoredheadline. (easylistchina+easylist.txt: 15821) -/(.*/)?sponsoredheadline\. -sponsoredheadline.*. -# /sponsoredcontent. (easylistchina+easylist.txt: 15820) -/(.*/)?sponsoredcontent\. -sponsoredcontent.*. -# /sponsoredbanner/* (easylistchina+easylist.txt: 15819) -/(.*/)?sponsoredbanner/.* -# /sponsoredads/* (easylistchina+easylist.txt: 15818) -/(.*/)?sponsoredads/.* -# /sponsored_top. (easylistchina+easylist.txt: 15817) -/(.*/)?sponsored_top\. -# /sponsored_title. (easylistchina+easylist.txt: 15816) -/(.*/)?sponsored_title\. -# /sponsored_text. (easylistchina+easylist.txt: 15815) -/(.*/)?sponsored_text\. -# /sponsored_listings. (easylistchina+easylist.txt: 15814) -/(.*/)?sponsored_listings\. -# /sponsored_links_ (easylistchina+easylist.txt: 15813) -/(.*/)?sponsored_links_ -# /sponsored_links1. (easylistchina+easylist.txt: 15812) -/(.*/)?sponsored_links1\. -# /sponsored_links. (easylistchina+easylist.txt: 15811) -/(.*/)?sponsored_links\. -# /sponsored_link. (easylistchina+easylist.txt: 15810) -/(.*/)?sponsored_link\. -# /sponsored_by. (easylistchina+easylist.txt: 15809) -/(.*/)?sponsored_by\. -# /sponsored_ads/* (easylistchina+easylist.txt: 15808) -/(.*/)?sponsored_ads/.* -# /sponsored_ad_ (easylistchina+easylist.txt: 15807) -/(.*/)?sponsored_ad_ -# /sponsored_ad. (easylistchina+easylist.txt: 15806) -/(.*/)?sponsored_ad\. -# /sponsored-links/* (easylistchina+easylist.txt: 15805) -/(.*/)?sponsored-links/.* -# /sponsored-links- (easylistchina+easylist.txt: 15804) -/(.*/)?sponsored-links- -sponsored-links-*. -# /sponsored-banner- (easylistchina+easylist.txt: 15803) -/(.*/)?sponsored-banner- -sponsored-banner-*. -# /sponsored-backgrounds/* (easylistchina+easylist.txt: 15802) -/(.*/)?sponsored-backgrounds/.* -# /sponsorbg/* (easylistchina+easylist.txt: 15801) -/(.*/)?sponsorbg/.* -# /sponsorbanners/* (easylistchina+easylist.txt: 15800) -/(.*/)?sponsorbanners/.* -# /sponsorads/* (easylistchina+easylist.txt: 15799) -/(.*/)?sponsorads/.* -# /sponsorads. (easylistchina+easylist.txt: 15798) -/(.*/)?sponsorads\. -sponsorads.*. -# /sponsoradds/* (easylistchina+easylist.txt: 15797) -/(.*/)?sponsoradds/.* -# /sponsorad2. (easylistchina+easylist.txt: 15796) -/(.*/)?sponsorad2\. -sponsorad2.*. -# /sponsorad. (easylistchina+easylist.txt: 15795) -/(.*/)?sponsorad\. -sponsorad.*. -# /sponsor_select. (easylistchina+easylist.txt: 15794) -/(.*/)?sponsor_select\. -# /sponsor_ads. (easylistchina+easylist.txt: 15793) -/(.*/)?sponsor_ads\. -# /sponsor/click. (easylistchina+easylist.txt: 15792) -/(.*/)?sponsor/click\. -# /sponsor-links. (easylistchina+easylist.txt: 15791) -/(.*/)?sponsor-links\. -sponsor-links.*. -# /sponsor-box? (easylistchina+easylist.txt: 15790) -/(.*/)?sponsor-box\? -# /sponsor-banner. (easylistchina+easylist.txt: 15789) -/(.*/)?sponsor-banner\. -sponsor-banner.*. -# /sponsor-ad (easylistchina+easylist.txt: 15788) -/(.*/)?sponsor-ad -sponsor-ad*. -# /sponsor%20banners/* (easylistchina+easylist.txt: 15787) -/(.*/)?sponsor%20banners/.* -# /sponslink_ (easylistchina+easylist.txt: 15786) -/(.*/)?sponslink_ -# /sponsimages/* (easylistchina+easylist.txt: 15785) -/(.*/)?sponsimages/.* -# /sponsers.cgi (easylistchina+easylist.txt: 15784) -/(.*/)?sponsers\.cgi -sponsers.cgi*. -# /sponseredlinksros. (easylistchina+easylist.txt: 15783) -/(.*/)?sponseredlinksros\. -sponseredlinksros.*. -# /sponser. (easylistchina+easylist.txt: 15782) -/(.*/)?sponser\. -sponser.*. -# /spons_links_ (easylistchina+easylist.txt: 15781) -/(.*/)?spons_links_ -# /spons/banners/* (easylistchina+easylist.txt: 15780) -/(.*/)?spons/banners/.* -# /sponlink. (easylistchina+easylist.txt: 15779) -/(.*/)?sponlink\. -sponlink.*. -# /spo_show.asp? (easylistchina+easylist.txt: 15778) -/(.*/)?spo_show\.asp\? -# /SplashAd_ (easylistchina+easylist.txt: 15777) -/(.*/)?SplashAd_ -# /splash_ads_ (easylistchina+easylist.txt: 15776) -/(.*/)?splash_ads_ -# /spiderad/* (easylistchina+easylist.txt: 15775) -/(.*/)?spiderad/.* -# /specialfeatureads/* (easylistchina+easylist.txt: 15774) -/(.*/)?specialfeatureads/.* -# /specialads/* (easylistchina+easylist.txt: 15773) -/(.*/)?specialads/.* -# /special_ads/* (easylistchina+easylist.txt: 15772) -/(.*/)?special_ads/.* -# /special_ad. (easylistchina+easylist.txt: 15771) -/(.*/)?special_ad\. -# /special-ads/* (easylistchina+easylist.txt: 15770) -/(.*/)?special-ads/.* -# /spcjs_min. (easylistchina+easylist.txt: 15769) -/(.*/)?spcjs_min\. -# /spcjs.php (easylistchina+easylist.txt: 15768) -/(.*/)?spcjs\.php -spcjs.php*. -# /spc.php (easylistchina+easylist.txt: 15767) -/(.*/)?spc\.php -spc.php*. -# /spark_ad. (easylistchina+easylist.txt: 15766) -/(.*/)?spark_ad\. -# /spacedesc= (easylistchina+easylist.txt: 15765) -/(.*/)?spacedesc= -# /space_ad. (easylistchina+easylist.txt: 15764) -/(.*/)?space_ad\. -# /spac_adx. (easylistchina+easylist.txt: 15763) -/(.*/)?spac_adx\. -# /sp/delivery/* (easylistchina+easylist.txt: 15762) -/(.*/)?sp/delivery/.* -# /someads. (easylistchina+easylist.txt: 15761) -/(.*/)?someads\. -someads.*. -# /some-ad. (easylistchina+easylist.txt: 15760) -/(.*/)?some-ad\. -some-ad.*. -# /somaadscaleskyscraperscript. (easylistchina+easylist.txt: 15759) -/(.*/)?somaadscaleskyscraperscript\. -somaadscaleskyscraperscript.*. -# /socialads/* (easylistchina+easylist.txt: 15758) -/(.*/)?socialads/.* -# /socialads. (easylistchina+easylist.txt: 15757) -/(.*/)?socialads\. -socialads.*. -# /SmpAds. (easylistchina+easylist.txt: 15756) -/(.*/)?SmpAds\. -SmpAds.*. -# /smoozed-ad/* (easylistchina+easylist.txt: 15755) -/(.*/)?smoozed-ad/.* -# /smedia/ad/* (easylistchina+easylist.txt: 15754) -/(.*/)?smedia/ad/.* -# /smeadvertisement/* (easylistchina+easylist.txt: 15753) -/(.*/)?smeadvertisement/.* -# /smb/ads/* (easylistchina+easylist.txt: 15752) -/(.*/)?smb/ads/.* -# /smartlinks.epl? (easylistchina+easylist.txt: 15751) -/(.*/)?smartlinks\.epl\? -# /smartadserver. (easylistchina+easylist.txt: 15750) -/(.*/)?smartadserver\. -smartadserver.*. -# /smartads. (easylistchina+easylist.txt: 15749) -/(.*/)?smartads\. -smartads.*. -# /smartAd? (easylistchina+easylist.txt: 15748) -/(.*/)?smartAd\? -# /smartad. (easylistchina+easylist.txt: 15747) -/(.*/)?smartad\. -smartad.*. -# /smartad- (easylistchina+easylist.txt: 15746) -/(.*/)?smartad- -smartad-*. -# /smart_ad/* (easylistchina+easylist.txt: 15745) -/(.*/)?smart_ad/.* -# /smart-ad-server. (easylistchina+easylist.txt: 15744) -/(.*/)?smart-ad-server\. -smart-ad-server.*. -# /smalltopl. (easylistchina+easylist.txt: 15743) -/(.*/)?smalltopl\. -smalltopl.*. -# /smalladblockbg- (easylistchina+easylist.txt: 15742) -/(.*/)?smalladblockbg- -smalladblockbg-*. -# /smallad- (easylistchina+easylist.txt: 15741) -/(.*/)?smallad- -smallad-*. -# /small_ads/* (easylistchina+easylist.txt: 15740) -/(.*/)?small_ads/.* -# /small_ad_ (easylistchina+easylist.txt: 15739) -/(.*/)?small_ad_ -# /small_ad. (easylistchina+easylist.txt: 15738) -/(.*/)?small_ad\. -# /smalAds. (easylistchina+easylist.txt: 15737) -/(.*/)?smalAds\. -smalAds.*. -# /slidetopad. (easylistchina+easylist.txt: 15736) -/(.*/)?slidetopad\. -slidetopad.*. -# /slideshowintad? (easylistchina+easylist.txt: 15735) -/(.*/)?slideshowintad\? -# /slideshow/ads. (easylistchina+easylist.txt: 15734) -/(.*/)?slideshow/ads\. -# /SliderJobAdList. (easylistchina+easylist.txt: 15733) -/(.*/)?SliderJobAdList\. -SliderJobAdList.*. -# /sliderad3. (easylistchina+easylist.txt: 15732) -/(.*/)?sliderad3\. -sliderad3.*. -# /sliderAd/* (easylistchina+easylist.txt: 15731) -/(.*/)?sliderAd/.* -# /slider_ad. (easylistchina+easylist.txt: 15730) -/(.*/)?slider_ad\. -# /slider.ad. (easylistchina+easylist.txt: 15729) -/(.*/)?slider\.ad\. -slider.ad.*. -# /slider-ad- (easylistchina+easylist.txt: 15728) -/(.*/)?slider-ad- -slider-ad-*. -# /slideinad. (easylistchina+easylist.txt: 15727) -/(.*/)?slideinad\. -slideinad.*. -# /slideadverts/* (easylistchina+easylist.txt: 15726) -/(.*/)?slideadverts/.* -# /slafc.js (easylistchina+easylist.txt: 15725) -/(.*/)?slafc\.js -slafc.js*. -# /skyscraperad. (easylistchina+easylist.txt: 15724) -/(.*/)?skyscraperad\. -skyscraperad.*. -# /skyscraper_ad_ (easylistchina+easylist.txt: 15723) -/(.*/)?skyscraper_ad_ -# /skyscraper-ad. (easylistchina+easylist.txt: 15722) -/(.*/)?skyscraper-ad\. -skyscraper-ad.*. -# /skyframeopenads_ (easylistchina+easylist.txt: 15721) -/(.*/)?skyframeopenads_ -# /skyframeopenads. (easylistchina+easylist.txt: 15720) -/(.*/)?skyframeopenads\. -skyframeopenads.*. -# /skybar_ad. (easylistchina+easylist.txt: 15719) -/(.*/)?skybar_ad\. -# /skybannerview. (easylistchina+easylist.txt: 15718) -/(.*/)?skybannerview\. -skybannerview.*. -# /skyadright. (easylistchina+easylist.txt: 15717) -/(.*/)?skyadright\. -skyadright.*. -# /skyadjs/* (easylistchina+easylist.txt: 15716) -/(.*/)?skyadjs/.* -# /skyad_ (easylistchina+easylist.txt: 15715) -/(.*/)?skyad_ -# /skyad. (easylistchina+easylist.txt: 15714) -/(.*/)?skyad\. -skyad.*. -# /skins/ads/* (easylistchina+easylist.txt: 15713) -/(.*/)?skins/ads/.* -# /skins/ads- (easylistchina+easylist.txt: 15712) -/(.*/)?skins/ads- -# /skinads/* (easylistchina+easylist.txt: 15711) -/(.*/)?skinads/.* -# /skinad. (easylistchina+easylist.txt: 15710) -/(.*/)?skinad\. -skinad.*. -# /skin3/ads/* (easylistchina+easylist.txt: 15709) -/(.*/)?skin3/ads/.* -# /skin/adv/* (easylistchina+easylist.txt: 15708) -/(.*/)?skin/adv/.* -# /skin/ad3/* (easylistchina+easylist.txt: 15707) -/(.*/)?skin/ad3/.* -# /skin/ad/* (easylistchina+easylist.txt: 15706) -/(.*/)?skin/ad/.* -# /size=*/random=*/viewid= (easylistchina+easylist.txt: 15705) -/(.*/)?size=.*/random=.*/viewid= -# /sitewide/ads/* (easylistchina+easylist.txt: 15704) -/(.*/)?sitewide/ads/.* -# /sites/ad_ (easylistchina+easylist.txt: 15703) -/(.*/)?sites/ad_ -# /sitemanagement/ads/* (easylistchina+easylist.txt: 15702) -/(.*/)?sitemanagement/ads/.* -# /siteimages/ads- (easylistchina+easylist.txt: 15701) -/(.*/)?siteimages/ads- -# /siteafs.txt? (easylistchina+easylist.txt: 15700) -/(.*/)?siteafs\.txt\? -# /siteadvert. (easylistchina+easylist.txt: 15699) -/(.*/)?siteadvert\. -siteadvert.*. -# /siteads/* (easylistchina+easylist.txt: 15698) -/(.*/)?siteads/.* -# /siteads. (easylistchina+easylist.txt: 15697) -/(.*/)?siteads\. -siteads.*. -# /site_under. (easylistchina+easylist.txt: 15696) -/(.*/)?site_under\. -# /site_ads/* (easylistchina+easylist.txt: 15695) -/(.*/)?site_ads/.* -# /site_ads. (easylistchina+easylist.txt: 15694) -/(.*/)?site_ads\. -# /site=*/viewid=*/size= (easylistchina+easylist.txt: 15693) -/(.*/)?site=.*/viewid=.*/size= -# /site=*/size=*/viewid= (easylistchina+easylist.txt: 15692) -/(.*/)?site=.*/size=.*/viewid= -# /site/ads? (easylistchina+easylist.txt: 15691) -/(.*/)?site/ads\? -# /site/ads/* (easylistchina+easylist.txt: 15690) -/(.*/)?site/ads/.* -# /site/ad/* (easylistchina+easylist.txt: 15689) -/(.*/)?site/ad/.* -# /site-advert. (easylistchina+easylist.txt: 15688) -/(.*/)?site-advert\. -site-advert.*. -# /site-ads/* (easylistchina+easylist.txt: 15687) -/(.*/)?site-ads/.* -# /sisterads. (easylistchina+easylist.txt: 15686) -/(.*/)?sisterads\. -sisterads.*. -# /singleadextension. (easylistchina+easylist.txt: 15685) -/(.*/)?singleadextension\. -singleadextension.*. -# /simpleadvert/* (easylistchina+easylist.txt: 15684) -/(.*/)?simpleadvert/.* -# /simpleadvert. (easylistchina+easylist.txt: 15683) -/(.*/)?simpleadvert\. -simpleadvert.*. -# /simpleads/* (easylistchina+easylist.txt: 15682) -/(.*/)?simpleads/.* -# /silverads. (easylistchina+easylist.txt: 15681) -/(.*/)?silverads\. -silverads.*. -# /silver/ads/* (easylistchina+easylist.txt: 15680) -/(.*/)?silver/ads/.* -# /siframead. (easylistchina+easylist.txt: 15679) -/(.*/)?siframead\. -siframead.*. -# /sidelinead. (easylistchina+easylist.txt: 15678) -/(.*/)?sidelinead\. -sidelinead.*. -# /sidekickads. (easylistchina+easylist.txt: 15677) -/(.*/)?sidekickads\. -sidekickads.*. -# /sidecol_ad. (easylistchina+easylist.txt: 15676) -/(.*/)?sidecol_ad\. -# /sidebaradvertisement. (easylistchina+easylist.txt: 15675) -/(.*/)?sidebaradvertisement\. -sidebaradvertisement.*. -# /sidebarad/* (easylistchina+easylist.txt: 15674) -/(.*/)?sidebarad/.* -# /sidebar_ads/* (easylistchina+easylist.txt: 15673) -/(.*/)?sidebar_ads/.* -# /sidebar_ad_ (easylistchina+easylist.txt: 15672) -/(.*/)?sidebar_ad_ -# /sidebar_ad. (easylistchina+easylist.txt: 15671) -/(.*/)?sidebar_ad\. -# /sidebar-ads/* (easylistchina+easylist.txt: 15670) -/(.*/)?sidebar-ads/.* -# /sidebar-ad- (easylistchina+easylist.txt: 15669) -/(.*/)?sidebar-ad- -sidebar-ad-*. -# /sideadvtmp. (easylistchina+easylist.txt: 15668) -/(.*/)?sideadvtmp\. -sideadvtmp.*. -# /sideads| (easylistchina+easylist.txt: 15667) -/(.*/)?sideads$ -# /sideads/* (easylistchina+easylist.txt: 15666) -/(.*/)?sideads/.* -# /sideadiframe. (easylistchina+easylist.txt: 15665) -/(.*/)?sideadiframe\. -sideadiframe.*. -# /sidead3. (easylistchina+easylist.txt: 15664) -/(.*/)?sidead3\. -sidead3.*. -# /sidead2. (easylistchina+easylist.txt: 15663) -/(.*/)?sidead2\. -sidead2.*. -# /sidead1. (easylistchina+easylist.txt: 15662) -/(.*/)?sidead1\. -sidead1.*. -# /sidead/* (easylistchina+easylist.txt: 15661) -/(.*/)?sidead/.* -# /sidead. (easylistchina+easylist.txt: 15660) -/(.*/)?sidead\. -sidead.*. -# /side_adverts. (easylistchina+easylist.txt: 15659) -/(.*/)?side_adverts\. -# /side-ads- (easylistchina+easylist.txt: 15658) -/(.*/)?side-ads- -side-ads-*. -# /side-ad. (easylistchina+easylist.txt: 15657) -/(.*/)?side-ad\. -side-ad.*. -# /side-ad- (easylistchina+easylist.txt: 15656) -/(.*/)?side-ad- -side-ad-*. -# /showSp.php? (easylistchina+easylist.txt: 15655) -/(.*/)?showSp\.php\? -# /showsidebar-ad- (easylistchina+easylist.txt: 15654) -/(.*/)?showsidebar-ad- -showsidebar-ad-*. -# /showpost-ad- (easylistchina+easylist.txt: 15653) -/(.*/)?showpost-ad- -showpost-ad-*. -# /showmarketingmaterial. (easylistchina+easylist.txt: 15652) -/(.*/)?showmarketingmaterial\. -showmarketingmaterial.*. -# /showJsAd/* (easylistchina+easylist.txt: 15651) -/(.*/)?showJsAd/.* -# /showindex-ad- (easylistchina+easylist.txt: 15650) -/(.*/)?showindex-ad- -showindex-ad-*. -# /showflashad. (easylistchina+easylist.txt: 15649) -/(.*/)?showflashad\. -showflashad.*. -# /showcasead/* (easylistchina+easylist.txt: 15648) -/(.*/)?showcasead/.* -# /showbanner. (easylistchina+easylist.txt: 15647) -/(.*/)?showbanner\. -showbanner.*. -# /showban.asp? (easylistchina+easylist.txt: 15646) -/(.*/)?showban\.asp\? -# /showadvertising. (easylistchina+easylist.txt: 15645) -/(.*/)?showadvertising\. -showadvertising.*. -# /showadvert. (easylistchina+easylist.txt: 15644) -/(.*/)?showadvert\. -showadvert.*. -# /showads_ (easylistchina+easylist.txt: 15643) -/(.*/)?showads_ -# /showads/* (easylistchina+easylist.txt: 15642) -/(.*/)?showads/.* -# /showads. (easylistchina+easylist.txt: 15641) -/(.*/)?showads\. -showads.*. -# /showadjs. (easylistchina+easylist.txt: 15640) -/(.*/)?showadjs\. -showadjs.*. -# /showadcode. (easylistchina+easylist.txt: 15639) -/(.*/)?showadcode\. -showadcode.*. -# /showad_ (easylistchina+easylist.txt: 15638) -/(.*/)?showad_ -# /showAd300. (easylistchina+easylist.txt: 15637) -/(.*/)?showAd300\. -showAd300.*. -# /showAd300- (easylistchina+easylist.txt: 15636) -/(.*/)?showAd300- -showAd300-*. -# /showad/* (easylistchina+easylist.txt: 15635) -/(.*/)?showad/.* -# /showad. (easylistchina+easylist.txt: 15634) -/(.*/)?showad\. -showad.*. -# /show_ads_ (easylistchina+easylist.txt: 15633) -/(.*/)?show_ads_ -# /show_ads.js (easylistchina+easylist.txt: 15632) -/(.*/)?show_ads\.js -# /show_ad_ (easylistchina+easylist.txt: 15631) -/(.*/)?show_ad_ -# /show_ad. (easylistchina+easylist.txt: 15630) -/(.*/)?show_ad\. -# /show.cgi?adp (easylistchina+easylist.txt: 15629) -/(.*/)?show\.cgi\?adp -# /show.ad? (easylistchina+easylist.txt: 15628) -/(.*/)?show\.ad\? -# /show-ads. (easylistchina+easylist.txt: 15627) -/(.*/)?show-ads\. -show-ads.*. -# /show-ad. (easylistchina+easylist.txt: 15626) -/(.*/)?show-ad\. -show-ad.*. -# /shortmediads/* (easylistchina+easylist.txt: 15625) -/(.*/)?shortmediads/.* -# /shared/ads/* (easylistchina+easylist.txt: 15624) -/(.*/)?shared/ads/.* -# /shared/ads. (easylistchina+easylist.txt: 15623) -/(.*/)?shared/ads\. -# /shared/ad_ (easylistchina+easylist.txt: 15622) -/(.*/)?shared/ad_ -# /share/ads/* (easylistchina+easylist.txt: 15621) -/(.*/)?share/ads/.* -# /sevenl_ad. (easylistchina+easylist.txt: 15620) -/(.*/)?sevenl_ad\. -# /sevenads. (easylistchina+easylist.txt: 15619) -/(.*/)?sevenads\. -sevenads.*. -# /settings/ad. (easylistchina+easylist.txt: 15618) -/(.*/)?settings/ad\. -# /servlet/view/* (easylistchina+easylist.txt: 15617) -/(.*/)?servlet/view/.* -# /services/ads/* (easylistchina+easylist.txt: 15616) -/(.*/)?services/ads/.* -# /service/ads/* (easylistchina+easylist.txt: 15615) -/(.*/)?service/ads/.* -# /servewebads/* (easylistchina+easylist.txt: 15614) -/(.*/)?servewebads/.* -# /server/ads/* (easylistchina+easylist.txt: 15613) -/(.*/)?server/ads/.* -# /Server/AD/* (easylistchina+easylist.txt: 15612) -/(.*/)?Server/AD/.* -# /serveads. (easylistchina+easylist.txt: 15611) -/(.*/)?serveads\. -serveads.*. -# /ServeAd? (easylistchina+easylist.txt: 15610) -/(.*/)?ServeAd\? -# /servead/* (easylistchina+easylist.txt: 15609) -/(.*/)?servead/.* -# /servead. (easylistchina+easylist.txt: 15608) -/(.*/)?servead\. -servead.*. -# /serve.ads. (easylistchina+easylist.txt: 15607) -/(.*/)?serve\.ads\. -serve.ads.*. -# /serv.ads. (easylistchina+easylist.txt: 15606) -/(.*/)?serv\.ads\. -serv.ads.*. -# /seo-ads. (easylistchina+easylist.txt: 15605) -/(.*/)?seo-ads\. -seo-ads.*. -# /securepubads. (easylistchina+easylist.txt: 15604) -/(.*/)?securepubads\. -securepubads.*. -# /secondads_ (easylistchina+easylist.txt: 15603) -/(.*/)?secondads_ -# /secondads. (easylistchina+easylist.txt: 15602) -/(.*/)?secondads\. -secondads.*. -# /searchads/* (easylistchina+easylist.txt: 15601) -/(.*/)?searchads/.* -# /searchad_ (easylistchina+easylist.txt: 15600) -/(.*/)?searchad_ -# /searchad. (easylistchina+easylist.txt: 15599) -/(.*/)?searchad\. -searchad.*. -# /search_ads. (easylistchina+easylist.txt: 15598) -/(.*/)?search_ads\. -# /search/ads_ (easylistchina+easylist.txt: 15597) -/(.*/)?search/ads_ -# /search/ads? (easylistchina+easylist.txt: 15596) -/(.*/)?search/ads\? -# /search/ad/* (easylistchina+easylist.txt: 15595) -/(.*/)?search/ad/.* -# /search.php?uid=*.*&src= (easylistchina+easylist.txt: 15594) -/(.*/)?search\.php\?uid=.*\..*&src= -# /search-ads? (easylistchina+easylist.txt: 15593) -/(.*/)?search-ads\? -# /scrpads. (easylistchina+easylist.txt: 15592) -/(.*/)?scrpads\. -scrpads.*. -# /scrollads/* (easylistchina+easylist.txt: 15591) -/(.*/)?scrollads/.* -# /scripts/zanox- (easylistchina+easylist.txt: 15590) -/(.*/)?scripts/zanox- -# /scripts/afc/* (easylistchina+easylist.txt: 15588) -/(.*/)?scripts/afc/.* -# /scripts/adv. (easylistchina+easylist.txt: 15587) -/(.*/)?scripts/adv\. -# /scripts/AdService_ (easylistchina+easylist.txt: 15586) -/(.*/)?scripts/AdService_ -# /scripts/ads/* (easylistchina+easylist.txt: 15585) -/(.*/)?scripts/ads/.* -# /scripts/ads. (easylistchina+easylist.txt: 15584) -/(.*/)?scripts/ads\. -# /scripts/ad_ (easylistchina+easylist.txt: 15583) -/(.*/)?scripts/ad_ -# /scripts/ad/* (easylistchina+easylist.txt: 15582) -/(.*/)?scripts/ad/.* -# /scripts/ad. (easylistchina+easylist.txt: 15581) -/(.*/)?scripts/ad\. -# /scripts/ad- (easylistchina+easylist.txt: 15580) -/(.*/)?scripts/ad- -# /script/oas/* (easylistchina+easylist.txt: 15579) -/(.*/)?script/oas/.* -# /script/ads_ (easylistchina+easylist.txt: 15577) -/(.*/)?script/ads_ -# /script/ads. (easylistchina+easylist.txt: 15576) -/(.*/)?script/ads\. -# /script/ad. (easylistchina+easylist.txt: 15575) -/(.*/)?script/ad\. -# /scaradcontrol. (easylistchina+easylist.txt: 15574) -/(.*/)?scaradcontrol\. -scaradcontrol.*. -# /scanscoutplugin. (easylistchina+easylist.txt: 15573) -/(.*/)?scanscoutplugin\. -scanscoutplugin.*. -# /scanscoutoverlayadrenderer. (easylistchina+easylist.txt: 15572) -/(.*/)?scanscoutoverlayadrenderer\. -scanscoutoverlayadrenderer.*. -# /scanscout. (easylistchina+easylist.txt: 15571) -/(.*/)?scanscout\. -scanscout.*. -# /sb-relevance.js (easylistchina+easylist.txt: 15570) -/(.*/)?sb-relevance\.js -sb-relevance.js*. -# /savvyads. (easylistchina+easylist.txt: 15569) -/(.*/)?savvyads\. -savvyads.*. -# /satnetgoogleads. (easylistchina+easylist.txt: 15568) -/(.*/)?satnetgoogleads\. -satnetgoogleads.*. -# /satnetads. (easylistchina+easylist.txt: 15567) -/(.*/)?satnetads\. -satnetads.*. -# /samsung_ad. (easylistchina+easylist.txt: 15566) -/(.*/)?samsung_ad\. -# /samplead1. (easylistchina+easylist.txt: 15565) -/(.*/)?samplead1\. -samplead1.*. -# /salesad/* (easylistchina+easylist.txt: 15564) -/(.*/)?salesad/.* -# /sailthru.js (easylistchina+easylist.txt: 15563) -/(.*/)?sailthru\.js -sailthru.js*. -# /safead/* (easylistchina+easylist.txt: 15562) -/(.*/)?safead/.* -# /rule34v2/ads/* (easylistchina+easylist.txt: 15561) -/(.*/)?rule34v2/ads/.* -# /rule34/ads/* (easylistchina+easylist.txt: 15560) -/(.*/)?rule34/ads/.* -# /rswebsiteads/* (easylistchina+easylist.txt: 15559) -/(.*/)?rswebsiteads/.* -# /rss/ads/* (easylistchina+easylist.txt: 15554) -/(.*/)?rss/ads/.* -# /rsc_ad_ (easylistchina+easylist.txt: 15553) -/(.*/)?rsc_ad_ -# /rsads/* (easylistchina+easylist.txt: 15552) -/(.*/)?rsads/.* -# /rsads.js (easylistchina+easylist.txt: 15551) -/(.*/)?rsads\.js -rsads.js*. -# /rpgetad. (easylistchina+easylist.txt: 15550) -/(.*/)?rpgetad\. -rpgetad.*. -# /rpc/ad/* (easylistchina+easylist.txt: 15549) -/(.*/)?rpc/ad/.* -# /roturl.js (easylistchina+easylist.txt: 15548) -/(.*/)?roturl\.js -roturl.js*. -# /rotatoradbottom. (easylistchina+easylist.txt: 15547) -/(.*/)?rotatoradbottom\. -rotatoradbottom.*. -# /rotatorad300x250. (easylistchina+easylist.txt: 15546) -/(.*/)?rotatorad300x250\. -rotatorad300x250.*. -# /rotationad. (easylistchina+easylist.txt: 15545) -/(.*/)?rotationad\. -rotationad.*. -# /rotation/banner (easylistchina+easylist.txt: 15544) -/(.*/)?rotation/banner -# /rotatingtextad. (easylistchina+easylist.txt: 15543) -/(.*/)?rotatingtextad\. -rotatingtextad.*. -# /rotatingpeels. (easylistchina+easylist.txt: 15542) -/(.*/)?rotatingpeels\. -rotatingpeels.*. -# /rotatingad. (easylistchina+easylist.txt: 15541) -/(.*/)?rotatingad\. -rotatingad.*. -# /rotating_banner.php (easylistchina+easylist.txt: 15540) -/(.*/)?rotating_banner\.php -# /rotatedads2. (easylistchina+easylist.txt: 15539) -/(.*/)?rotatedads2\. -rotatedads2.*. -# /rotatedads13. (easylistchina+easylist.txt: 15538) -/(.*/)?rotatedads13\. -rotatedads13.*. -# /rotatedads1. (easylistchina+easylist.txt: 15537) -/(.*/)?rotatedads1\. -rotatedads1.*. -# /rotateads. (easylistchina+easylist.txt: 15536) -/(.*/)?rotateads\. -rotateads.*. -# /rotads/* (easylistchina+easylist.txt: 15535) -/(.*/)?rotads/.* -# /rotad/* (easylistchina+easylist.txt: 15534) -/(.*/)?rotad/.* -# /root_ad. (easylistchina+easylist.txt: 15533) -/(.*/)?root_ad\. -# /rolloverbannerad. (easylistchina+easylist.txt: 15532) -/(.*/)?rolloverbannerad\. -rolloverbannerad.*. -# /rolloverads/* (easylistchina+easylist.txt: 15531) -/(.*/)?rolloverads/.* -# /rollad. (easylistchina+easylist.txt: 15530) -/(.*/)?rollad\. -rollad.*. -# /righttopads. (easylistchina+easylist.txt: 15529) -/(.*/)?righttopads\. -righttopads.*. -# /rightsideaddisplay. (easylistchina+easylist.txt: 15528) -/(.*/)?rightsideaddisplay\. -rightsideaddisplay.*. -# /rightrailgoogleads. (easylistchina+easylist.txt: 15527) -/(.*/)?rightrailgoogleads\. -rightrailgoogleads.*. -# /rightnavadsanswer. (easylistchina+easylist.txt: 15526) -/(.*/)?rightnavadsanswer\. -rightnavadsanswer.*. -# /rightnavads. (easylistchina+easylist.txt: 15525) -/(.*/)?rightnavads\. -rightnavads.*. -# /rightbanner/* (easylistchina+easylist.txt: 15524) -/(.*/)?rightbanner/.* -# /rightads. (easylistchina+easylist.txt: 15523) -/(.*/)?rightads\. -rightads.*. -# /rightad/* (easylistchina+easylist.txt: 15522) -/(.*/)?rightad/.* -# /rightad. (easylistchina+easylist.txt: 15521) -/(.*/)?rightad\. -rightad.*. -# /right_ads. (easylistchina+easylist.txt: 15520) -/(.*/)?right_ads\. -# /right_ad_ (easylistchina+easylist.txt: 15519) -/(.*/)?right_ad_ -# /right_ad^ (easylistchina+easylist.txt: 15518) -/(.*/)?right_ad[^\w%.-] -# /right_ad. (easylistchina+easylist.txt: 15517) -/(.*/)?right_ad\. -# /right-ad- (easylistchina+easylist.txt: 15516) -/(.*/)?right-ad- -right-ad-*. -# /richoas. (easylistchina+easylist.txt: 15515) -/(.*/)?richoas\. -richoas.*. -# /rhspushads/* (easylistchina+easylist.txt: 15514) -/(.*/)?rhspushads/.* -# /rgads. (easylistchina+easylist.txt: 15513) -/(.*/)?rgads\. -rgads.*. -# /revealads2/* (easylistchina+easylist.txt: 15510) -/(.*/)?revealads2/.* -# /revealads/* (easylistchina+easylist.txt: 15509) -/(.*/)?revealads/.* -# /revealads. (easylistchina+easylist.txt: 15508) -/(.*/)?revealads\. -revealads.*. -# /revealaads/* (easylistchina+easylist.txt: 15507) -/(.*/)?revealaads/.* -# /revealaads. (easylistchina+easylist.txt: 15506) -/(.*/)?revealaads\. -revealaads.*. -# /retrieve-ad. (easylistchina+easylist.txt: 15505) -/(.*/)?retrieve-ad\. -retrieve-ad.*. -# /retrad. (easylistchina+easylist.txt: 15504) -/(.*/)?retrad\. -retrad.*. -# /restorationad- (easylistchina+easylist.txt: 15503) -/(.*/)?restorationad- -restorationad-*. -# /responsive_dfp_ (easylistchina+easylist.txt: 15502) -/(.*/)?responsive_dfp_ -# /responsive_dfp. (easylistchina+easylist.txt: 15501) -/(.*/)?responsive_dfp\. -# /responsive-ads. (easylistchina+easylist.txt: 15500) -/(.*/)?responsive-ads\. -responsive-ads.*. -# /resources/ads_ (easylistchina+easylist.txt: 15499) -/(.*/)?resources/ads_ -# /resources/ads/* (easylistchina+easylist.txt: 15498) -/(.*/)?resources/ads/.* -# /resources/ad. (easylistchina+easylist.txt: 15497) -/(.*/)?resources/ad\. -# /requestmyspacead. (easylistchina+easylist.txt: 15496) -/(.*/)?requestmyspacead\. -requestmyspacead.*. -# /requestadvertisement. (easylistchina+easylist.txt: 15495) -/(.*/)?requestadvertisement\. -requestadvertisement.*. -# /report_ad_ (easylistchina+easylist.txt: 15494) -/(.*/)?report_ad_ -# /report_ad. (easylistchina+easylist.txt: 15493) -/(.*/)?report_ad\. -# /repeat_adv. (easylistchina+easylist.txt: 15492) -/(.*/)?repeat_adv\. -# /renderBanner.do? (easylistchina+easylist.txt: 15491) -/(.*/)?renderBanner\.do\? -# /render-ad/* (easylistchina+easylist.txt: 15490) -/(.*/)?render-ad/.* -# /remove_ads. (easylistchina+easylist.txt: 15489) -/(.*/)?remove_ads\. -# /remove-ads. (easylistchina+easylist.txt: 15488) -/(.*/)?remove-ads\. -remove-ads.*. -# /relevance_ad. (easylistchina+easylist.txt: 15487) -/(.*/)?relevance_ad\. -# /relatedads. (easylistchina+easylist.txt: 15486) -/(.*/)?relatedads\. -relatedads.*. -# /related-ads. (easylistchina+easylist.txt: 15485) -/(.*/)?related-ads\. -related-ads.*. -# /reklame/* (easylistchina+easylist.txt: 15484) -/(.*/)?reklame/.* -# /reklama5. (easylistchina+easylist.txt: 15483) -/(.*/)?reklama5\. -reklama5.*. -# /reklama2. (easylistchina+easylist.txt: 15482) -/(.*/)?reklama2\. -reklama2.*. -# /reklama/* (easylistchina+easylist.txt: 15481) -/(.*/)?reklama/.* -# /reklam/* (easylistchina+easylist.txt: 15479) -/(.*/)?reklam/.* -# /reklam. (easylistchina+easylist.txt: 15478) -/(.*/)?reklam\. -reklam.*. -# /RefSplDicAdsTopL. (easylistchina+easylist.txt: 15477) -/(.*/)?RefSplDicAdsTopL\. -RefSplDicAdsTopL.*. -# /refreshsyncbannerad? (easylistchina+easylist.txt: 15476) -/(.*/)?refreshsyncbannerad\? -# /refreshads- (easylistchina+easylist.txt: 15475) -/(.*/)?refreshads- -refreshads-*. -# /refads/* (easylistchina+easylist.txt: 15474) -/(.*/)?refads/.* -# /redirect_awe. (easylistchina+easylist.txt: 15473) -/(.*/)?redirect_awe\. -# /rectangle_advertorials_ (easylistchina+easylist.txt: 15472) -/(.*/)?rectangle_advertorials_ -# /rectangle_ad. (easylistchina+easylist.txt: 15471) -/(.*/)?rectangle_ad\. -# /rect_ad. (easylistchina+easylist.txt: 15470) -/(.*/)?rect_ad\. -# /recordadsall. (easylistchina+easylist.txt: 15469) -/(.*/)?recordadsall\. -recordadsall.*. -# /recommendations/ad. (easylistchina+easylist.txt: 15468) -/(.*/)?recommendations/ad\. -# /reclame/* (easylistchina+easylist.txt: 15467) -/(.*/)?reclame/.* -# /reclama/* (easylistchina+easylist.txt: 15466) -/(.*/)?reclama/.* -# /realmedia_mjx_ (easylistchina+easylist.txt: 15465) -/(.*/)?realmedia_mjx_ -# /realmedia_mjx. (easylistchina+easylist.txt: 15464) -/(.*/)?realmedia_mjx\. -# /realmedia_banner_ (easylistchina+easylist.txt: 15463) -/(.*/)?realmedia_banner_ -# /realmedia_banner. (easylistchina+easylist.txt: 15462) -/(.*/)?realmedia_banner\. -# /realmedia/ads/* (easylistchina+easylist.txt: 15461) -/(.*/)?realmedia/ads/.* -# /rcom-video-ads. (easylistchina+easylist.txt: 15460) -/(.*/)?rcom-video-ads\. -rcom-video-ads.*. -# /rcom-ads. (easylistchina+easylist.txt: 15459) -/(.*/)?rcom-ads\. -rcom-ads.*. -# /rcom-ads- (easylistchina+easylist.txt: 15458) -/(.*/)?rcom-ads- -rcom-ads-*. -# /rcolads2. (easylistchina+easylist.txt: 15457) -/(.*/)?rcolads2\. -rcolads2.*. -# /rcolads1. (easylistchina+easylist.txt: 15456) -/(.*/)?rcolads1\. -rcolads1.*. -# /rawtubelivead. (easylistchina+easylist.txt: 15455) -/(.*/)?rawtubelivead\. -rawtubelivead.*. -# /randomads. (easylistchina+easylist.txt: 15454) -/(.*/)?randomads\. -randomads.*. -# /randomad_ (easylistchina+easylist.txt: 15453) -/(.*/)?randomad_ -# /randomad728x90nsfw. (easylistchina+easylist.txt: 15452) -/(.*/)?randomad728x90nsfw\. -randomad728x90nsfw.*. -# /randomad300x250nsfw. (easylistchina+easylist.txt: 15451) -/(.*/)?randomad300x250nsfw\. -randomad300x250nsfw.*. -# /randomad2. (easylistchina+easylist.txt: 15450) -/(.*/)?randomad2\. -randomad2.*. -# /randomad160x600nsfw. (easylistchina+easylist.txt: 15449) -/(.*/)?randomad160x600nsfw\. -randomad160x600nsfw.*. -# /randomad120x600nsfw. (easylistchina+easylist.txt: 15448) -/(.*/)?randomad120x600nsfw\. -randomad120x600nsfw.*. -# /randomad. (easylistchina+easylist.txt: 15447) -/(.*/)?randomad\. -randomad.*. -# /ram/ads/* (easylistchina+easylist.txt: 15446) -/(.*/)?ram/ads/.* -# /RainbowTGXServer/* (easylistchina+easylist.txt: 15445) -/(.*/)?RainbowTGXServer/.* -# /railsad_ (easylistchina+easylist.txt: 15444) -/(.*/)?railsad_ -# /railsad. (easylistchina+easylist.txt: 15443) -/(.*/)?railsad\. -railsad.*. -# /railads. (easylistchina+easylist.txt: 15442) -/(.*/)?railads\. -railads.*. -# /railad. (easylistchina+easylist.txt: 15441) -/(.*/)?railad\. -railad.*. -# /rail_ad_ (easylistchina+easylist.txt: 15440) -/(.*/)?rail_ad_ -# /radopenx? (easylistchina+easylist.txt: 15439) -/(.*/)?radopenx\? -# /radioAdEmbedGPT. (easylistchina+easylist.txt: 15438) -/(.*/)?radioAdEmbedGPT\. -radioAdEmbedGPT.*. -# /radioadembedgenre. (easylistchina+easylist.txt: 15437) -/(.*/)?radioadembedgenre\. -radioadembedgenre.*. -# /radioAdEmbed. (easylistchina+easylist.txt: 15436) -/(.*/)?radioAdEmbed\. -radioAdEmbed.*. -# /r_ads/* (easylistchina+easylist.txt: 15435) -/(.*/)?r_ads/.* -# /quigo_ad (easylistchina+easylist.txt: 15434) -/(.*/)?quigo_ad -# /quick_ads/* (easylistchina+easylist.txt: 15433) -/(.*/)?quick_ads/.* -# /questions/ads/* (easylistchina+easylist.txt: 15432) -/(.*/)?questions/ads/.* -# /quadadvert. (easylistchina+easylist.txt: 15431) -/(.*/)?quadadvert\. -quadadvert.*. -# /qpon_big_ad (easylistchina+easylist.txt: 15430) -/(.*/)?qpon_big_ad -# /qd_ads/* (easylistchina+easylist.txt: 15429) -/(.*/)?qd_ads/.* -# /qandaads/* (easylistchina+easylist.txt: 15428) -/(.*/)?qandaads/.* -# /pushdownAd. (easylistchina+easylist.txt: 15427) -/(.*/)?pushdownAd\. -pushdownAd.*. -# /punder.php (easylistchina+easylist.txt: 15426) -/(.*/)?punder\.php -punder.php*. -# /punder.js (easylistchina+easylist.txt: 15425) -/(.*/)?punder\.js -punder.js*. -# /pullads. (easylistchina+easylist.txt: 15424) -/(.*/)?pullads\. -pullads.*. -# /puff_ad? (easylistchina+easylist.txt: 15423) -/(.*/)?puff_ad\? -# /pubs_aff.asp? (easylistchina+easylist.txt: 15422) -/(.*/)?pubs_aff\.asp\? -# /pubmatic_ (easylistchina+easylist.txt: 15421) -/(.*/)?pubmatic_ -# /publicidade/* (easylistchina+easylist.txt: 15420) -/(.*/)?publicidade/.* -# /publicidade. (easylistchina+easylist.txt: 15419) -/(.*/)?publicidade\. -publicidade.*. -# /publicidad/* (easylistchina+easylist.txt: 15417) -/(.*/)?publicidad/.* -# /public/adv/* (easylistchina+easylist.txt: 15415) -/(.*/)?public/adv/.* -# /public/ads/* (easylistchina+easylist.txt: 15414) -/(.*/)?public/ads/.* -# /public/ad? (easylistchina+easylist.txt: 15413) -/(.*/)?public/ad\? -# /public/ad/* (easylistchina+easylist.txt: 15412) -/(.*/)?public/ad/.* -# /pubads_ (easylistchina+easylist.txt: 15411) -/(.*/)?pubads_ -# /pubads. (easylistchina+easylist.txt: 15410) -/(.*/)?pubads\. -pubads.*. -# /pubad. (easylistchina+easylist.txt: 15409) -/(.*/)?pubad\. -pubad.*. -# /pub/ads/* (easylistchina+easylist.txt: 15407) -/(.*/)?pub/ads/.* -# /pub/ad/* (easylistchina+easylist.txt: 15406) -/(.*/)?pub/ad/.* -# /proxyadcall? (easylistchina+easylist.txt: 15405) -/(.*/)?proxyadcall\? -# /proxxorad. (easylistchina+easylist.txt: 15404) -/(.*/)?proxxorad\. -proxxorad.*. -# /provider_ads/* (easylistchina+easylist.txt: 15403) -/(.*/)?provider_ads/.* -# /provideadcode. (easylistchina+easylist.txt: 15402) -/(.*/)?provideadcode\. -provideadcode.*. -# /protection/ad/* (easylistchina+easylist.txt: 15401) -/(.*/)?protection/ad/.* -# /promotools1. (easylistchina+easylist.txt: 15400) -/(.*/)?promotools1\. -promotools1.*. -# /promotools/* (easylistchina+easylist.txt: 15399) -/(.*/)?promotools/.* -# /promotools. (easylistchina+easylist.txt: 15398) -/(.*/)?promotools\. -promotools.*. -# /promotions/ads? (easylistchina+easylist.txt: 15397) -/(.*/)?promotions/ads\? -# /promotions/ads/* (easylistchina+easylist.txt: 15396) -/(.*/)?promotions/ads/.* -# /promotions/ads. (easylistchina+easylist.txt: 15395) -/(.*/)?promotions/ads\. -# /promotion/geoip/* (easylistchina+easylist.txt: 15394) -/(.*/)?promotion/geoip/.* -# /promoredirect?*&campaign=*&zone= (easylistchina+easylist.txt: 15393) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /promoloaddisplay? (easylistchina+easylist.txt: 15392) -/(.*/)?promoloaddisplay\? -# /promobuttonad. (easylistchina+easylist.txt: 15391) -/(.*/)?promobuttonad\. -promobuttonad.*. -# /promoads/* (easylistchina+easylist.txt: 15390) -/(.*/)?promoads/.* -# /promo300x250. (easylistchina+easylist.txt: 15389) -/(.*/)?promo300x250\. -promo300x250.*. -# /promo300by250. (easylistchina+easylist.txt: 15388) -/(.*/)?promo300by250\. -promo300by250.*. -# /promo/banners/* (easylistchina+easylist.txt: 15387) -/(.*/)?promo/banners/.* -# /promo/affiframe. (easylistchina+easylist.txt: 15386) -/(.*/)?promo/affiframe\. -# /promo/ads/* (easylistchina+easylist.txt: 15385) -/(.*/)?promo/ads/.* -# /promo/ad_ (easylistchina+easylist.txt: 15384) -/(.*/)?promo/ad_ -# /promo-ads/* (easylistchina+easylist.txt: 15383) -/(.*/)?promo-ads/.* -# /projectwonderful_ (easylistchina+easylist.txt: 15382) -/(.*/)?projectwonderful_ -# /prog-sponsor/* (easylistchina+easylist.txt: 15381) -/(.*/)?prog-sponsor/.* -# /production/ads/* (easylistchina+easylist.txt: 15380) -/(.*/)?production/ads/.* -# /product-ads/* (easylistchina+easylist.txt: 15379) -/(.*/)?product-ads/.* -# /product-ad/* (easylistchina+easylist.txt: 15378) -/(.*/)?product-ad/.* -# /processing/impressions.asp? (easylistchina+easylist.txt: 15377) -/(.*/)?processing/impressions\.asp\? -# /processads. (easylistchina+easylist.txt: 15376) -/(.*/)?processads\. -processads.*. -# /processad. (easylistchina+easylist.txt: 15375) -/(.*/)?processad\. -processad.*. -# /proadvertising_ (easylistchina+easylist.txt: 15374) -/(.*/)?proadvertising_ -# /proadvertising. (easylistchina+easylist.txt: 15373) -/(.*/)?proadvertising\. -proadvertising.*. -# /proads/* (easylistchina+easylist.txt: 15372) -/(.*/)?proads/.* -# /PRNAd300x150. (easylistchina+easylist.txt: 15371) -/(.*/)?PRNAd300x150\. -PRNAd300x150.*. -# /printads/* (easylistchina+easylist.txt: 15370) -/(.*/)?printads/.* -# /printad/* (easylistchina+easylist.txt: 15369) -/(.*/)?printad/.* -# /printad. (easylistchina+easylist.txt: 15368) -/(.*/)?printad\. -printad.*. -# /previews/ad/* (easylistchina+easylist.txt: 15367) -/(.*/)?previews/ad/.* -# /prerollads. (easylistchina+easylist.txt: 15366) -/(.*/)?prerollads\. -prerollads.*. -# /prerollad. (easylistchina+easylist.txt: 15365) -/(.*/)?prerollad\. -prerollad.*. -# /premiumadzone. (easylistchina+easylist.txt: 15364) -/(.*/)?premiumadzone\. -premiumadzone.*. -# /premiumads/* (easylistchina+easylist.txt: 15363) -/(.*/)?premiumads/.* -# /premium_ad. (easylistchina+easylist.txt: 15362) -/(.*/)?premium_ad\. -# /premierebtnad/* (easylistchina+easylist.txt: 15361) -/(.*/)?premierebtnad/.* -# /predictad. (easylistchina+easylist.txt: 15360) -/(.*/)?predictad\. -predictad.*. -# /ppd_ads_ (easylistchina+easylist.txt: 15359) -/(.*/)?ppd_ads_ -# /ppd_ads. (easylistchina+easylist.txt: 15358) -/(.*/)?ppd_ads\. -# /posts_ad. (easylistchina+easylist.txt: 15356) -/(.*/)?posts_ad\. -# /postprofileverticalad. (easylistchina+easylist.txt: 15355) -/(.*/)?postprofileverticalad\. -postprofileverticalad.*. -# /postprofilehorizontalad. (easylistchina+easylist.txt: 15354) -/(.*/)?postprofilehorizontalad\. -postprofilehorizontalad.*. -# /postprocad. (easylistchina+easylist.txt: 15353) -/(.*/)?postprocad\. -postprocad.*. -# /postad. (easylistchina+easylist.txt: 15352) -/(.*/)?postad\. -postad.*. -# /post_ads_ (easylistchina+easylist.txt: 15351) -/(.*/)?post_ads_ -# /post/ads/* (easylistchina+easylist.txt: 15350) -/(.*/)?post/ads/.* -# /post-ad- (easylistchina+easylist.txt: 15349) -/(.*/)?post-ad- -post-ad-*. -# /popupunder. (easylistchina+easylist.txt: 15348) -/(.*/)?popupunder\. -popupunder.*. -# /popupdfp. (easylistchina+easylist.txt: 15347) -/(.*/)?popupdfp\. -popupdfp.*. -# /popupads. (easylistchina+easylist.txt: 15346) -/(.*/)?popupads\. -popupads.*. -# /popup_code. (easylistchina+easylist.txt: 15345) -/(.*/)?popup_code\. -# /popup_ad. (easylistchina+easylist.txt: 15344) -/(.*/)?popup_ad\. -# /popup3.js (easylistchina+easylist.txt: 15343) -/(.*/)?popup3\.js -popup3.js*. -# /popup2.js (easylistchina+easylist.txt: 15342) -/(.*/)?popup2\.js -popup2.js*. -# /popundr_ (easylistchina+easylist.txt: 15340) -/(.*/)?popundr_ -# /popundr. (easylistchina+easylist.txt: 15339) -/(.*/)?popundr\. -popundr.*. -# /popunders/* (easylistchina+easylist.txt: 15338) -/(.*/)?popunders/.* -# /popunders. (easylistchina+easylist.txt: 15337) -/(.*/)?popunders\. -popunders.*. -# /popunderking. (easylistchina+easylist.txt: 15336) -/(.*/)?popunderking\. -popunderking.*. -# /popundercode. (easylistchina+easylist.txt: 15335) -/(.*/)?popundercode\. -popundercode.*. -# /popunderblogs. (easylistchina+easylist.txt: 15334) -/(.*/)?popunderblogs\. -popunderblogs.*. -# /popunder_ (easylistchina+easylist.txt: 15333) -/(.*/)?popunder_ -# /popunder? (easylistchina+easylist.txt: 15332) -/(.*/)?popunder\? -# /popunder7. (easylistchina+easylist.txt: 15331) -/(.*/)?popunder7\. -popunder7.*. -# /popunder5. (easylistchina+easylist.txt: 15330) -/(.*/)?popunder5\. -popunder5.*. -# /popunder4. (easylistchina+easylist.txt: 15329) -/(.*/)?popunder4\. -popunder4.*. -# /popunder2. (easylistchina+easylist.txt: 15328) -/(.*/)?popunder2\. -popunder2.*. -# /popunder1_ (easylistchina+easylist.txt: 15327) -/(.*/)?popunder1_ -# /popunder1. (easylistchina+easylist.txt: 15326) -/(.*/)?popunder1\. -popunder1.*. -# /popunder/* (easylistchina+easylist.txt: 15325) -/(.*/)?popunder/.* -# /popunder. (easylistchina+easylist.txt: 15324) -/(.*/)?popunder\. -popunder.*. -# /popunder- (easylistchina+easylist.txt: 15323) -/(.*/)?popunder- -popunder-*. -# /popu.js (easylistchina+easylist.txt: 15322) -/(.*/)?popu\.js -popu.js*. -# /poprotator. (easylistchina+easylist.txt: 15320) -/(.*/)?poprotator\. -poprotator.*. -# /popounder4. (easylistchina+easylist.txt: 15319) -/(.*/)?popounder4\. -popounder4.*. -# /poplivejasmine. (easylistchina+easylist.txt: 15318) -/(.*/)?poplivejasmine\. -poplivejasmine.*. -# /popads_ (easylistchina+easylist.txt: 15317) -/(.*/)?popads_ -# /popads/* (easylistchina+easylist.txt: 15316) -/(.*/)?popads/.* -# /popads. (easylistchina+easylist.txt: 15315) -/(.*/)?popads\. -popads.*. -# /popad. (easylistchina+easylist.txt: 15314) -/(.*/)?popad\. -popad.*. -# /popad- (easylistchina+easylist.txt: 15313) -/(.*/)?popad- -popad-*. -# /pop_under/* (easylistchina+easylist.txt: 15312) -/(.*/)?pop_under/.* -# /pop_under. (easylistchina+easylist.txt: 15311) -/(.*/)?pop_under\. -# /pop_camgirlcity. (easylistchina+easylist.txt: 15310) -/(.*/)?pop_camgirlcity\. -# /pop_adfy. (easylistchina+easylist.txt: 15309) -/(.*/)?pop_adfy\. -# /pop_ad. (easylistchina+easylist.txt: 15308) -/(.*/)?pop_ad\. -# /pop?tid= (easylistchina+easylist.txt: 15307) -/(.*/)?pop\?tid= -# /pop2.js| (easylistchina+easylist.txt: 15306) -/(.*/)?pop2\.js$ -pop2.js -# /pop.js| (easylistchina+easylist.txt: 15305) -/(.*/)?pop\.js$ -pop.js -# /pop-under. (easylistchina+easylist.txt: 15304) -/(.*/)?pop-under\. -pop-under.*. -# /pool/ad/* (easylistchina+easylist.txt: 15303) -/(.*/)?pool/ad/.* -# /pool.ads. (easylistchina+easylist.txt: 15302) -/(.*/)?pool\.ads\. -pool.ads.*. -# /polopoly_fs/ad- (easylistchina+easylist.txt: 15301) -/(.*/)?polopoly_fs/ad- -# /poll-ad- (easylistchina+easylist.txt: 15300) -/(.*/)?poll-ad- -poll-ad-*. -# /poker-ad. (easylistchina+easylist.txt: 15299) -/(.*/)?poker-ad\. -poker-ad.*. -# /plus/ad_ (easylistchina+easylist.txt: 15298) -/(.*/)?plus/ad_ -# /plugins_ads_ (easylistchina+easylist.txt: 15297) -/(.*/)?plugins_ads_ -# /plugins/wp_actionpop/* (easylistchina+easylist.txt: 15296) -/(.*/)?plugins/wp_actionpop/.* -# /plugins/page-cornr- (easylistchina+easylist.txt: 15293) -/(.*/)?plugins/page-cornr- -# /plugins/ads/* (easylistchina+easylist.txt: 15292) -/(.*/)?plugins/ads/.* -# /plugins/ad. (easylistchina+easylist.txt: 15291) -/(.*/)?plugins/ad\. -# /plugin/ad/* (easylistchina+easylist.txt: 15290) -/(.*/)?plugin/ad/.* -# /pledgead. (easylistchina+easylist.txt: 15289) -/(.*/)?pledgead\. -pledgead.*. -# /player_ads/* (easylistchina+easylist.txt: 15288) -/(.*/)?player_ads/.* -# /player/ads/* (easylistchina+easylist.txt: 15287) -/(.*/)?player/ads/.* -# /player/ads. (easylistchina+easylist.txt: 15286) -/(.*/)?player/ads\. -# /player/ad/* (easylistchina+easylist.txt: 15285) -/(.*/)?player/ad/.* -# /play/ad/* (easylistchina+easylist.txt: 15284) -/(.*/)?play/ad/.* -# /placements/ad_ (easylistchina+easylist.txt: 15283) -/(.*/)?placements/ad_ -# /placeholder-ad- (easylistchina+easylist.txt: 15282) -/(.*/)?placeholder-ad- -placeholder-ad-*. -# /placead_ (easylistchina+easylist.txt: 15281) -/(.*/)?placead_ -# /place-ads/* (easylistchina+easylist.txt: 15280) -/(.*/)?place-ads/.* -# /pixelads/* (easylistchina+easylist.txt: 15279) -/(.*/)?pixelads/.* -# /pix/ads/* (easylistchina+easylist.txt: 15278) -/(.*/)?pix/ads/.* -# /pitattoad. (easylistchina+easylist.txt: 15277) -/(.*/)?pitattoad\. -pitattoad.*. -# /pilot_ad. (easylistchina+easylist.txt: 15276) -/(.*/)?pilot_ad\. -# /pictures/ads/* (easylistchina+easylist.txt: 15275) -/(.*/)?pictures/ads/.* -# /pictureads/* (easylistchina+easylist.txt: 15274) -/(.*/)?pictureads/.* -# /picture/ad/* (easylistchina+easylist.txt: 15273) -/(.*/)?picture/ad/.* -# /pics/ads/* (easylistchina+easylist.txt: 15272) -/(.*/)?pics/ads/.* -# /pickle-adsystem/* (easylistchina+easylist.txt: 15271) -/(.*/)?pickle-adsystem/.* -# /pic_adv/* (easylistchina+easylist.txt: 15270) -/(.*/)?pic_adv/.* -# /pic/ads/* (easylistchina+easylist.txt: 15269) -/(.*/)?pic/ads/.* -# /phpbanner/banner_ (easylistchina+easylist.txt: 15268) -/(.*/)?phpbanner/banner_ -# /phpadsnew/* (easylistchina+easylist.txt: 15267) -/(.*/)?phpadsnew/.* -# /phpadserver/* (easylistchina+easylist.txt: 15266) -/(.*/)?phpadserver/.* -# /phpads2/* (easylistchina+easylist.txt: 15265) -/(.*/)?phpads2/.* -# /phpads/* (easylistchina+easylist.txt: 15264) -/(.*/)?phpads/.* -# /phpads. (easylistchina+easylist.txt: 15263) -/(.*/)?phpads\. -phpads.*. -# /php/ads/* (easylistchina+easylist.txt: 15262) -/(.*/)?php/ads/.* -# /php/ad/* (easylistchina+easylist.txt: 15261) -/(.*/)?php/ad/.* -# /photogallaryads. (easylistchina+easylist.txt: 15260) -/(.*/)?photogallaryads\. -photogallaryads.*. -# /photoflipper/ads/* (easylistchina+easylist.txt: 15259) -/(.*/)?photoflipper/ads/.* -# /photoads/* (easylistchina+easylist.txt: 15258) -/(.*/)?photoads/.* -# /photoad. (easylistchina+easylist.txt: 15257) -/(.*/)?photoad\. -photoad.*. -# /photo728ad. (easylistchina+easylist.txt: 15256) -/(.*/)?photo728ad\. -photo728ad.*. -# /pgrightsideads. (easylistchina+easylist.txt: 15255) -/(.*/)?pgrightsideads\. -pgrightsideads.*. -# /pgad. (easylistchina+easylist.txt: 15254) -/(.*/)?pgad\. -pgad.*. -# /pfpadv. (easylistchina+easylist.txt: 15253) -/(.*/)?pfpadv\. -pfpadv.*. -# /persadpub/* (easylistchina+easylist.txt: 15252) -/(.*/)?persadpub/.* -# /permanent/ads/* (easylistchina+easylist.txt: 15251) -/(.*/)?permanent/ads/.* -# /performancingads/* (easylistchina+easylist.txt: 15250) -/(.*/)?performancingads/.* -# /performance_ads/* (easylistchina+easylist.txt: 15249) -/(.*/)?performance_ads/.* -# /perfads. (easylistchina+easylist.txt: 15248) -/(.*/)?perfads\. -perfads.*. -# /pencilad. (easylistchina+easylist.txt: 15247) -/(.*/)?pencilad\. -pencilad.*. -# /peeltr. (easylistchina+easylist.txt: 15246) -/(.*/)?peeltr\. -peeltr.*. -# /peeltl. (easylistchina+easylist.txt: 15245) -/(.*/)?peeltl\. -peeltl.*. -# /peeljs.php (easylistchina+easylist.txt: 15244) -/(.*/)?peeljs\.php -peeljs.php*. -# /peelbackscript/ad_ (easylistchina+easylist.txt: 15243) -/(.*/)?peelbackscript/ad_ -# /peelaway_images/* (easylistchina+easylist.txt: 15242) -/(.*/)?peelaway_images/.* -# /peelads/* (easylistchina+easylist.txt: 15241) -/(.*/)?peelads/.* -# /peelad/* (easylistchina+easylist.txt: 15240) -/(.*/)?peelad/.* -# /peelad. (easylistchina+easylist.txt: 15239) -/(.*/)?peelad\. -peelad.*. -# /peel_ads/* (easylistchina+easylist.txt: 15238) -/(.*/)?peel_ads/.* -# /peel1.js (easylistchina+easylist.txt: 15237) -/(.*/)?peel1\.js -peel1.js*. -# /peel/?webscr= (easylistchina+easylist.txt: 15236) -/(.*/)?peel/\?webscr= -# /peel.php? (easylistchina+easylist.txt: 15235) -/(.*/)?peel\.php\? -# /peel.js (easylistchina+easylist.txt: 15234) -/(.*/)?peel\.js -peel.js*. -# /pcad.js? (easylistchina+easylist.txt: 15233) -/(.*/)?pcad\.js\? -# /pc/ads. (easylistchina+easylist.txt: 15232) -/(.*/)?pc/ads\. -# /pb-ads/* (easylistchina+easylist.txt: 15231) -/(.*/)?pb-ads/.* -# /payperpost. (easylistchina+easylist.txt: 15230) -/(.*/)?payperpost\. -payperpost.*. -# /pauseadextension. (easylistchina+easylist.txt: 15229) -/(.*/)?pauseadextension\. -pauseadextension.*. -# /parts/ad/* (easylistchina+easylist.txt: 15228) -/(.*/)?parts/ad/.* -# /partnersadbutler/* (easylistchina+easylist.txt: 15227) -/(.*/)?partnersadbutler/.* -# /partners/get-banner. (easylistchina+easylist.txt: 15226) -/(.*/)?partners/get-banner\. -# /partners/ads/* (easylistchina+easylist.txt: 15225) -/(.*/)?partners/ads/.* -# /partners/ad- (easylistchina+easylist.txt: 15224) -/(.*/)?partners/ad- -# /partnerbanner/* (easylistchina+easylist.txt: 15223) -/(.*/)?partnerbanner/.* -# /partnerbanner. (easylistchina+easylist.txt: 15222) -/(.*/)?partnerbanner\. -partnerbanner.*. -# /partneradwidget. (easylistchina+easylist.txt: 15221) -/(.*/)?partneradwidget\. -partneradwidget.*. -# /partnerads_ (easylistchina+easylist.txt: 15220) -/(.*/)?partnerads_ -# /partnerads/* (easylistchina+easylist.txt: 15219) -/(.*/)?partnerads/.* -# /partnerad. (easylistchina+easylist.txt: 15218) -/(.*/)?partnerad\. -partnerad.*. -# /partner_ads_ (easylistchina+easylist.txt: 15217) -/(.*/)?partner_ads_ -# /partner_ads/* (easylistchina+easylist.txt: 15216) -/(.*/)?partner_ads/.* -# /park_html_functions_general.js (easylistchina+easylist.txt: 15215) -/(.*/)?park_html_functions_general\.js -# /park_html_functions.js (easylistchina+easylist.txt: 15214) -/(.*/)?park_html_functions\.js -# /park_html_functions.*.js (easylistchina+easylist.txt: 15213) -/(.*/)?park_html_functions\..*\.js -# /panelad. (easylistchina+easylist.txt: 15212) -/(.*/)?panelad\. -panelad.*. -# /paidlisting/* (easylistchina+easylist.txt: 15211) -/(.*/)?paidlisting/.* -# /paidads/* (easylistchina+easylist.txt: 15210) -/(.*/)?paidads/.* -# /pages/ads (easylistchina+easylist.txt: 15209) -/(.*/)?pages/ads -# /pagepeelads. (easylistchina+easylist.txt: 15208) -/(.*/)?pagepeelads\. -pagepeelads.*. -# /pagepeel_ (easylistchina+easylist.txt: 15207) -/(.*/)?pagepeel_ -# /pagepeel/* (easylistchina+easylist.txt: 15206) -/(.*/)?pagepeel/.* -# /pagepeel. (easylistchina+easylist.txt: 15205) -/(.*/)?pagepeel\. -pagepeel.*. -# /pagepeel- (easylistchina+easylist.txt: 15204) -/(.*/)?pagepeel- -pagepeel-*. -# /pageear_ (easylistchina+easylist.txt: 15203) -/(.*/)?pageear_ -# /pageear/* (easylistchina+easylist.txt: 15202) -/(.*/)?pageear/.* -# /pageear. (easylistchina+easylist.txt: 15201) -/(.*/)?pageear\. -pageear.*. -# /pagecurl/* (easylistchina+easylist.txt: 15200) -/(.*/)?pagecurl/.* -# /pagecall_dfp_async. (easylistchina+easylist.txt: 15199) -/(.*/)?pagecall_dfp_async\. -# /pageads/* (easylistchina+easylist.txt: 15198) -/(.*/)?pageads/.* -# /pageadimg/* (easylistchina+easylist.txt: 15197) -/(.*/)?pageadimg/.* -# /pagead? (easylistchina+easylist.txt: 15196) -/(.*/)?pagead\? -# /pagead46. (easylistchina+easylist.txt: 15195) -/(.*/)?pagead46\. -pagead46.*. -# /pagead2. (easylistchina+easylist.txt: 15194) -/(.*/)?pagead2\. -pagead2.*. -# /pagead/gen_ (easylistchina+easylist.txt: 15193) -/(.*/)?pagead/gen_ -# /pagead/ads? (easylistchina+easylist.txt: 15192) -/(.*/)?pagead/ads\? -# /page/ad/* (easylistchina+easylist.txt: 15191) -/(.*/)?page/ad/.* -# /page-peel (easylistchina+easylist.txt: 15190) -/(.*/)?page-peel -page-peel*. -# /page-ads. (easylistchina+easylist.txt: 15189) -/(.*/)?page-ads\. -page-ads.*. -# /p8network.js (easylistchina+easylist.txt: 15188) -/(.*/)?p8network\.js -p8network.js*. -# /p2ads/* (easylistchina+easylist.txt: 15187) -/(.*/)?p2ads/.* -# /p2/ads/* (easylistchina+easylist.txt: 15186) -/(.*/)?p2/ads/.* -# /p2-header-ad/* (easylistchina+easylist.txt: 15185) -/(.*/)?p2-header-ad/.* -# /p2-header-ad- (easylistchina+easylist.txt: 15184) -/(.*/)?p2-header-ad- -p2-header-ad-*. -# /ox_ultimate/www/* (easylistchina+easylist.txt: 15183) -/(.*/)?ox_ultimate/www/.* -# /ox/www/* (easylistchina+easylist.txt: 15182) -/(.*/)?ox/www/.* -# /ovt_show.asp? (easylistchina+easylist.txt: 15181) -/(.*/)?ovt_show\.asp\? -# /overture_ (easylistchina+easylist.txt: 15180) -/(.*/)?overture_ -# /overlayads. (easylistchina+easylist.txt: 15177) -/(.*/)?overlayads\. -overlayads.*. -# /overlayad. (easylistchina+easylist.txt: 15176) -/(.*/)?overlayad\. -overlayad.*. -# /overlay_ad_ (easylistchina+easylist.txt: 15175) -/(.*/)?overlay_ad_ -# /overlay-ad. (easylistchina+easylist.txt: 15174) -/(.*/)?overlay-ad\. -overlay-ad.*. -# /outbrain-min. (easylistchina+easylist.txt: 15173) -/(.*/)?outbrain-min\. -outbrain-min.*. -# /other/ads/* (easylistchina+easylist.txt: 15172) -/(.*/)?other/ads/.* -# /origin-ad- (easylistchina+easylist.txt: 15171) -/(.*/)?origin-ad- -origin-ad-*. -# /orbitads. (easylistchina+easylist.txt: 15170) -/(.*/)?orbitads\. -orbitads.*. -# /opxads. (easylistchina+easylist.txt: 15169) -/(.*/)?opxads\. -opxads.*. -# /optonlineadcode. (easylistchina+easylist.txt: 15168) -/(.*/)?optonlineadcode\. -optonlineadcode.*. -# /openxtag. (easylistchina+easylist.txt: 15167) -/(.*/)?openxtag\. -openxtag.*. -# /openx_ (easylistchina+easylist.txt: 15166) -/(.*/)?openx_ -# /openx/* (easylistchina+easylist.txt: 15165) -/(.*/)?openx/.* -# /openx. (easylistchina+easylist.txt: 15164) -/(.*/)?openx\. -openx.*. -# /openx- (easylistchina+easylist.txt: 15163) -/(.*/)?openx- -openx-*. -# /openadserver/* (easylistchina+easylist.txt: 15162) -/(.*/)?openadserver/.* -# /openads_ (easylistchina+easylist.txt: 15161) -/(.*/)?openads_ -# /openads2/* (easylistchina+easylist.txt: 15160) -/(.*/)?openads2/.* -# /openads/* (easylistchina+easylist.txt: 15159) -/(.*/)?openads/.* -# /openads. (easylistchina+easylist.txt: 15158) -/(.*/)?openads\. -openads.*. -# /openads- (easylistchina+easylist.txt: 15157) -/(.*/)?openads- -openads-*. -# /openad. (easylistchina+easylist.txt: 15156) -/(.*/)?openad\. -openad.*. -# /ontopadvertising. (easylistchina+easylist.txt: 15155) -/(.*/)?ontopadvertising\. -ontopadvertising.*. -# /onplayerad. (easylistchina+easylist.txt: 15154) -/(.*/)?onplayerad\. -onplayerad.*. -# /onlineads/* (easylistchina+easylist.txt: 15153) -/(.*/)?onlineads/.* -# /online_ads/* (easylistchina+easylist.txt: 15152) -/(.*/)?online_ads/.* -# /online/ads/* (easylistchina+easylist.txt: 15151) -/(.*/)?online/ads/.* -# /onesheet-ad- (easylistchina+easylist.txt: 15150) -/(.*/)?onesheet-ad- -onesheet-ad-*. -# /onecam4ads. (easylistchina+easylist.txt: 15149) -/(.*/)?onecam4ads\. -onecam4ads.*. -# /onead. (easylistchina+easylist.txt: 15148) -/(.*/)?onead\. -onead.*. -# /ome.ads. (easylistchina+easylist.txt: 15147) -/(.*/)?ome\.ads\. -ome.ads.*. -# /omb-ad- (easylistchina+easylist.txt: 15146) -/(.*/)?omb-ad- -omb-ad-*. -# /old/ads- (easylistchina+easylist.txt: 15145) -/(.*/)?old/ads- -# /oiopub-ads/* (easylistchina+easylist.txt: 15143) -/(.*/)?oiopub-ads/.* -# /oasx/* (easylistchina+easylist.txt: 15142) -/(.*/)?oasx/.* -# /oasisi. (easylistchina+easylist.txt: 15141) -/(.*/)?oasisi\. -oasisi.*. -# /oasisi- (easylistchina+easylist.txt: 15140) -/(.*/)?oasisi- -oasisi-*. -# /oasdefault/* (easylistchina+easylist.txt: 15139) -/(.*/)?oasdefault/.* -# /oascontroller. (easylistchina+easylist.txt: 15138) -/(.*/)?oascontroller\. -oascontroller.*. -# /oasconfig/* (easylistchina+easylist.txt: 15137) -/(.*/)?oasconfig/.* -# /oascentral/* (easylistchina+easylist.txt: 15136) -/(.*/)?oascentral/.* -# /oascache/* (easylistchina+easylist.txt: 15134) -/(.*/)?oascache/.* -# /oasbanner_ (easylistchina+easylist.txt: 15133) -/(.*/)?oasbanner_ -# /oasadfunctionlive. (easylistchina+easylist.txt: 15132) -/(.*/)?oasadfunctionlive\. -oasadfunctionlive.*. -# /oasadfunction. (easylistchina+easylist.txt: 15131) -/(.*/)?oasadfunction\. -oasadfunction.*. -# /oasadframe. (easylistchina+easylist.txt: 15130) -/(.*/)?oasadframe\. -oasadframe.*. -# /oasadconnector. (easylistchina+easylist.txt: 15129) -/(.*/)?oasadconnector\. -oasadconnector.*. -# /oas_mjx3. (easylistchina+easylist.txt: 15128) -/(.*/)?oas_mjx3\. -# /oas_mjx2. (easylistchina+easylist.txt: 15127) -/(.*/)?oas_mjx2\. -# /oas_mjx1. (easylistchina+easylist.txt: 15126) -/(.*/)?oas_mjx1\. -# /oas_mjx. (easylistchina+easylist.txt: 15125) -/(.*/)?oas_mjx\. -# /oas_home_ (easylistchina+easylist.txt: 15124) -/(.*/)?oas_home_ -# /oas_handler. (easylistchina+easylist.txt: 15123) -/(.*/)?oas_handler\. -# /oas_ads. (easylistchina+easylist.txt: 15122) -/(.*/)?oas_ads\. -# /oas_ad_ (easylistchina+easylist.txt: 15121) -/(.*/)?oas_ad_ -# /oas_ad/* (easylistchina+easylist.txt: 15120) -/(.*/)?oas_ad/.* -# /oas_ad. (easylistchina+easylist.txt: 15119) -/(.*/)?oas_ad\. -# /OAS/show? (easylistchina+easylist.txt: 15118) -/(.*/)?OAS/show\? -# /oas/oas- (easylistchina+easylist.txt: 15117) -/(.*/)?oas/oas- -# /oas/iframe. (easylistchina+easylist.txt: 15116) -/(.*/)?oas/iframe\. -# /oas/banners/* (easylistchina+easylist.txt: 15115) -/(.*/)?oas/banners/.* -# /oas/ad/* (easylistchina+easylist.txt: 15114) -/(.*/)?oas/ad/.* -# /oas.js (easylistchina+easylist.txt: 15113) -/(.*/)?oas\.js -oas.js*. -# /oas.aspx (easylistchina+easylist.txt: 15112) -/(.*/)?oas\.aspx -oas.aspx*. -# /oas-config. (easylistchina+easylist.txt: 15111) -/(.*/)?oas-config\. -oas-config.*. -# /o2contentad. (easylistchina+easylist.txt: 15110) -/(.*/)?o2contentad\. -o2contentad.*. -# /o2ad. (easylistchina+easylist.txt: 15109) -/(.*/)?o2ad\. -o2ad.*. -# /nymag_ads_ (easylistchina+easylist.txt: 15108) -/(.*/)?nymag_ads_ -# /nymag_ads. (easylistchina+easylist.txt: 15107) -/(.*/)?nymag_ads\. -# /nsfw/sponsors/* (easylistchina+easylist.txt: 15106) -/(.*/)?nsfw/sponsors/.* -# /noticead. (easylistchina+easylist.txt: 15105) -/(.*/)?noticead\. -noticead.*. -# /noodleAdFramed. (easylistchina+easylist.txt: 15104) -/(.*/)?noodleAdFramed\. -noodleAdFramed.*. -# /nonrotatingads/* (easylistchina+easylist.txt: 15103) -/(.*/)?nonrotatingads/.* -# /no_ads. (easylistchina+easylist.txt: 15102) -/(.*/)?no_ads\. -# /nflads. (easylistchina+easylist.txt: 15101) -/(.*/)?nflads\. -nflads.*. -# /nextad/* (easylistchina+easylist.txt: 15100) -/(.*/)?nextad/.* -# /newtopmsgad. (easylistchina+easylist.txt: 15099) -/(.*/)?newtopmsgad\. -newtopmsgad.*. -# /newsmaxadcontrol. (easylistchina+easylist.txt: 15098) -/(.*/)?newsmaxadcontrol\. -newsmaxadcontrol.*. -# /newsletters/ads/* (easylistchina+easylist.txt: 15097) -/(.*/)?newsletters/ads/.* -# /newsletterads/* (easylistchina+easylist.txt: 15096) -/(.*/)?newsletterads/.* -# /newsite/ads/* (easylistchina+easylist.txt: 15095) -/(.*/)?newsite/ads/.* -# /news_ad. (easylistchina+easylist.txt: 15094) -/(.*/)?news_ad\. -# /news/ads/* (easylistchina+easylist.txt: 15093) -/(.*/)?news/ads/.* -# /newrightcolad. (easylistchina+easylist.txt: 15092) -/(.*/)?newrightcolad\. -newrightcolad.*. -# /newimplugs. (easylistchina+easylist.txt: 15091) -/(.*/)?newimplugs\. -newimplugs.*. -# /newimages/ads/* (easylistchina+easylist.txt: 15090) -/(.*/)?newimages/ads/.* -# /newdesign/ad/* (easylistchina+easylist.txt: 15089) -/(.*/)?newdesign/ad/.* -# /newaff/float (easylistchina+easylist.txt: 15088) -/(.*/)?newaff/float -# /newadvert/* (easylistchina+easylist.txt: 15087) -/(.*/)?newadvert/.* -# /newadv/* (easylistchina+easylist.txt: 15086) -/(.*/)?newadv/.* -# /newads/* (easylistchina+easylist.txt: 15085) -/(.*/)?newads/.* -# /newads. (easylistchina+easylist.txt: 15084) -/(.*/)?newads\. -newads.*. -# /newad? (easylistchina+easylist.txt: 15083) -/(.*/)?newad\? -# /newad2? (easylistchina+easylist.txt: 15082) -/(.*/)?newad2\? -# /newad. (easylistchina+easylist.txt: 15081) -/(.*/)?newad\. -newad.*. -# /new_oas. (easylistchina+easylist.txt: 15080) -/(.*/)?new_oas\. -# /new_ads/* (easylistchina+easylist.txt: 15079) -/(.*/)?new_ads/.* -# /new/ads/* (easylistchina+easylist.txt: 15078) -/(.*/)?new/ads/.* -# /new/ad/* (easylistchina+easylist.txt: 15077) -/(.*/)?new/ad/.* -# /new-ads/* (easylistchina+easylist.txt: 15076) -/(.*/)?new-ads/.* -# /neudesicad. (easylistchina+easylist.txt: 15075) -/(.*/)?neudesicad\. -neudesicad.*. -# /network_ad. (easylistchina+easylist.txt: 15074) -/(.*/)?network_ad\. -# /netspiderads3. (easylistchina+easylist.txt: 15073) -/(.*/)?netspiderads3\. -netspiderads3.*. -# /netspiderads2. (easylistchina+easylist.txt: 15072) -/(.*/)?netspiderads2\. -netspiderads2.*. -# /netshelter/* (easylistchina+easylist.txt: 15071) -/(.*/)?netshelter/.* -# /netseerads. (easylistchina+easylist.txt: 15070) -/(.*/)?netseerads\. -netseerads.*. -# /netreachtextads/* (easylistchina+easylist.txt: 15069) -/(.*/)?netreachtextads/.* -# /netads. (easylistchina+easylist.txt: 15068) -/(.*/)?netads\. -netads.*. -# /neoads. (easylistchina+easylist.txt: 15067) -/(.*/)?neoads\. -neoads.*. -# /neo/ads/* (easylistchina+easylist.txt: 15066) -/(.*/)?neo/ads/.* -# /nd_affiliate. (easylistchina+easylist.txt: 15065) -/(.*/)?nd_affiliate\. -# /nbcuadops- (easylistchina+easylist.txt: 15064) -/(.*/)?nbcuadops- -nbcuadops-*. -# /navads/* (easylistchina+easylist.txt: 15063) -/(.*/)?navads/.* -# /navad/* (easylistchina+easylist.txt: 15062) -/(.*/)?navad/.* -# /nativeads/* (easylistchina+easylist.txt: 15061) -/(.*/)?nativeads/.* -# /nativeads- (easylistchina+easylist.txt: 15060) -/(.*/)?nativeads- -nativeads-*. -# /namediaad. (easylistchina+easylist.txt: 15059) -/(.*/)?namediaad\. -namediaad.*. -# /n_ads/* (easylistchina+easylist.txt: 15058) -/(.*/)?n_ads/.* -# /n4403ad. (easylistchina+easylist.txt: 15057) -/(.*/)?n4403ad\. -n4403ad.*. -# /n/adv_ (easylistchina+easylist.txt: 15056) -/(.*/)?n/adv_ -# /mysimpleads/* (easylistchina+easylist.txt: 15055) -/(.*/)?mysimpleads/.* -# /mylayer-ad/* (easylistchina+easylist.txt: 15054) -/(.*/)?mylayer-ad/.* -# /myfreepaysitebanner. (easylistchina+easylist.txt: 15053) -/(.*/)?myfreepaysitebanner\. -myfreepaysitebanner.*. -# /myads/* (easylistchina+easylist.txt: 15051) -/(.*/)?myads/.* -# /my-ad-integration. (easylistchina+easylist.txt: 15050) -/(.*/)?my-ad-integration\. -my-ad-integration.*. -# /my-ad-injector/* (easylistchina+easylist.txt: 15049) -/(.*/)?my-ad-injector/.* -# /multiad/* (easylistchina+easylist.txt: 15048) -/(.*/)?multiad/.* -# /mtvi_ads_ (easylistchina+easylist.txt: 15047) -/(.*/)?mtvi_ads_ -# /MTA-Ad- (easylistchina+easylist.txt: 15046) -/(.*/)?MTA-Ad- -MTA-Ad-*. -# /mstextad? (easylistchina+easylist.txt: 15045) -/(.*/)?mstextad\? -# /msnpopup4. (easylistchina+easylist.txt: 15044) -/(.*/)?msnpopup4\. -msnpopup4.*. -# /msnpopup. (easylistchina+easylist.txt: 15043) -/(.*/)?msnpopup\. -msnpopup.*. -# /msnpopsingle2. (easylistchina+easylist.txt: 15042) -/(.*/)?msnpopsingle2\. -msnpopsingle2.*. -# /msnpop. (easylistchina+easylist.txt: 15041) -/(.*/)?msnpop\. -msnpop.*. -# /msnads1. (easylistchina+easylist.txt: 15040) -/(.*/)?msnads1\. -msnads1.*. -# /msnads/* (easylistchina+easylist.txt: 15039) -/(.*/)?msnads/.* -# /msnadimg. (easylistchina+easylist.txt: 15038) -/(.*/)?msnadimg\. -msnadimg.*. -# /msn-exo- (easylistchina+easylist.txt: 15037) -/(.*/)?msn-exo- -msn-exo-*. -# /msn-1.js (easylistchina+easylist.txt: 15036) -/(.*/)?msn-1\.js -msn-1.js*. -# /msgads. (easylistchina+easylist.txt: 15035) -/(.*/)?msgads\. -msgads.*. -# /mrskinleftside. (easylistchina+easylist.txt: 15034) -/(.*/)?mrskinleftside\. -mrskinleftside.*. -# /mpumessage. (easylistchina+easylist.txt: 15033) -/(.*/)?mpumessage\. -mpumessage.*. -# /mpuguardian. (easylistchina+easylist.txt: 15032) -/(.*/)?mpuguardian\. -mpuguardian.*. -# /mpuad. (easylistchina+easylist.txt: 15031) -/(.*/)?mpuad\. -mpuad.*. -# /mpu-dm.htm (easylistchina+easylist.txt: 15030) -/(.*/)?mpu-dm\.htm -mpu-dm.htm*. -# /mpads/* (easylistchina+easylist.txt: 15029) -/(.*/)?mpads/.* -# /moneyball/ads/* (easylistchina+easylist.txt: 15028) -/(.*/)?moneyball/ads/.* -# /momsads. (easylistchina+easylist.txt: 15027) -/(.*/)?momsads\. -momsads.*. -# /modules_ads. (easylistchina+easylist.txt: 15026) -/(.*/)?modules_ads\. -# /modules/doubleclick/* (easylistchina+easylist.txt: 15025) -/(.*/)?modules/doubleclick/.* -# /modules/adv/* (easylistchina+easylist.txt: 15024) -/(.*/)?modules/adv/.* -# /modules/ads/* (easylistchina+easylist.txt: 15023) -/(.*/)?modules/ads/.* -# /modules/ad_ (easylistchina+easylist.txt: 15022) -/(.*/)?modules/ad_ -# /modules/ad/* (easylistchina+easylist.txt: 15021) -/(.*/)?modules/ad/.* -# /module/ads/* (easylistchina+easylist.txt: 15020) -/(.*/)?module/ads/.* -# /module-ads/* (easylistchina+easylist.txt: 15019) -/(.*/)?module-ads/.* -# /modalad. (easylistchina+easylist.txt: 15018) -/(.*/)?modalad\. -modalad.*. -# /mod_pagepeel_banner/* (easylistchina+easylist.txt: 15017) -/(.*/)?mod_pagepeel_banner/.* -# /mod_ad/* (easylistchina+easylist.txt: 15016) -/(.*/)?mod_ad/.* -# /mobilephonesad/* (easylistchina+easylist.txt: 15015) -/(.*/)?mobilephonesad/.* -# /mobileads/* (easylistchina+easylist.txt: 15014) -/(.*/)?mobileads/.* -# /mobileads. (easylistchina+easylist.txt: 15013) -/(.*/)?mobileads\. -mobileads.*. -# /mobile_ad/* (easylistchina+easylist.txt: 15012) -/(.*/)?mobile_ad/.* -# /mobile_ad. (easylistchina+easylist.txt: 15011) -/(.*/)?mobile_ad\. -# /mobile-ad. (easylistchina+easylist.txt: 15010) -/(.*/)?mobile-ad\. -mobile-ad.*. -# /mnads1. (easylistchina+easylist.txt: 15009) -/(.*/)?mnads1\. -mnads1.*. -# /mmt_ad. (easylistchina+easylist.txt: 15008) -/(.*/)?mmt_ad\. -# /mmsAds. (easylistchina+easylist.txt: 15007) -/(.*/)?mmsAds\. -mmsAds.*. -# /ml9pagepeel. (easylistchina+easylist.txt: 15006) -/(.*/)?ml9pagepeel\. -ml9pagepeel.*. -# /mktad. (easylistchina+easylist.txt: 15005) -/(.*/)?mktad\. -mktad.*. -# /mkadsrv. (easylistchina+easylist.txt: 15004) -/(.*/)?mkadsrv\. -mkadsrv.*. -# /mjx-oas. (easylistchina+easylist.txt: 15003) -/(.*/)?mjx-oas\. -mjx-oas.*. -# /MixBerryAdsProduction/* (easylistchina+easylist.txt: 15002) -/(.*/)?MixBerryAdsProduction/.* -# /miva_ads. (easylistchina+easylist.txt: 15001) -/(.*/)?miva_ads\. -# /misc/ads/* (easylistchina+easylist.txt: 15000) -/(.*/)?misc/ads/.* -# /misc/ads. (easylistchina+easylist.txt: 14999) -/(.*/)?misc/ads\. -# /misc/ad- (easylistchina+easylist.txt: 14998) -/(.*/)?misc/ad- -# /mint/ads/* (easylistchina+easylist.txt: 14997) -/(.*/)?mint/ads/.* -# /minpagead/* (easylistchina+easylist.txt: 14996) -/(.*/)?minpagead/.* -# /minify/ads- (easylistchina+easylist.txt: 14995) -/(.*/)?minify/ads- -# /miniadvert. (easylistchina+easylist.txt: 14994) -/(.*/)?miniadvert\. -miniadvert.*. -# /miniads? (easylistchina+easylist.txt: 14993) -/(.*/)?miniads\? -# /miniadbar/* (easylistchina+easylist.txt: 14992) -/(.*/)?miniadbar/.* -# /mini_ads. (easylistchina+easylist.txt: 14991) -/(.*/)?mini_ads\. -# /mini-ads/* (easylistchina+easylist.txt: 14990) -/(.*/)?mini-ads/.* -# /min/ads/* (easylistchina+easylist.txt: 14989) -/(.*/)?min/ads/.* -# /middleads. (easylistchina+easylist.txt: 14988) -/(.*/)?middleads\. -middleads.*. -# /middle_adv_ (easylistchina+easylist.txt: 14987) -/(.*/)?middle_adv_ -# /microsofttag/* (easylistchina+easylist.txt: 14986) -/(.*/)?microsofttag/.* -# /microads/* (easylistchina+easylist.txt: 14985) -/(.*/)?microads/.* -# /microad. (easylistchina+easylist.txt: 14984) -/(.*/)?microad\. -microad.*. -# /mgid.html (easylistchina+easylist.txt: 14983) -/(.*/)?mgid\.html -mgid.html*. -# /mgid-header. (easylistchina+easylist.txt: 14982) -/(.*/)?mgid-header\. -mgid-header.*. -# /mgid-ad- (easylistchina+easylist.txt: 14981) -/(.*/)?mgid-ad- -mgid-ad-*. -# /metsbanner. (easylistchina+easylist.txt: 14980) -/(.*/)?metsbanner\. -metsbanner.*. -# /metaadserver/* (easylistchina+easylist.txt: 14979) -/(.*/)?metaadserver/.* -# /metaad. (easylistchina+easylist.txt: 14978) -/(.*/)?metaad\. -metaad.*. -# /meme_ad. (easylistchina+easylist.txt: 14977) -/(.*/)?meme_ad\. -# /megaad. (easylistchina+easylist.txt: 14976) -/(.*/)?megaad\. -megaad.*. -# /media_ads/* (easylistchina+easylist.txt: 14975) -/(.*/)?media_ads/.* -# /media/adv/* (easylistchina+easylist.txt: 14974) -/(.*/)?media/adv/.* -# /media/ads/* (easylistchina+easylist.txt: 14973) -/(.*/)?media/ads/.* -# /media/ad/* (easylistchina+easylist.txt: 14972) -/(.*/)?media/ad/.* -# /mDialogAdModule. (easylistchina+easylist.txt: 14971) -/(.*/)?mDialogAdModule\. -mDialogAdModule.*. -# /mda-ads/* (easylistchina+easylist.txt: 14970) -/(.*/)?mda-ads/.* -# /mcad.php (easylistchina+easylist.txt: 14969) -/(.*/)?mcad\.php -mcad.php*. -# /mbn_ad. (easylistchina+easylist.txt: 14968) -/(.*/)?mbn_ad\. -# /mbads? (easylistchina+easylist.txt: 14967) -/(.*/)?mbads\? -# /maxi_ad. (easylistchina+easylist.txt: 14966) -/(.*/)?maxi_ad\. -# /maxadselect. (easylistchina+easylist.txt: 14965) -/(.*/)?maxadselect\. -maxadselect.*. -# /match_ads. (easylistchina+easylist.txt: 14964) -/(.*/)?match_ads\. -# /masterad. (easylistchina+easylist.txt: 14963) -/(.*/)?masterad\. -masterad.*. -# /masonad.gif (easylistchina+easylist.txt: 14962) -/(.*/)?masonad\.gif -masonad.gif*. -# /markpop.js (easylistchina+easylist.txt: 14961) -/(.*/)?markpop\.js -markpop.js*. -# /marketing/banners_ (easylistchina+easylist.txt: 14960) -/(.*/)?marketing/banners_ -# /marketing/banners/* (easylistchina+easylist.txt: 14959) -/(.*/)?marketing/banners/.* -# /marketing-banners/* (easylistchina+easylist.txt: 14958) -/(.*/)?marketing-banners/.* -# /marginaleadservlet? (easylistchina+easylist.txt: 14957) -/(.*/)?marginaleadservlet\? -# /mapquest/Ads/* (easylistchina+easylist.txt: 14956) -/(.*/)?mapquest/Ads/.* -# /mainpagepopupadv1. (easylistchina+easylist.txt: 14955) -/(.*/)?mainpagepopupadv1\. -mainpagepopupadv1.*. -# /mainad. (easylistchina+easylist.txt: 14954) -/(.*/)?mainad\. -mainad.*. -# /main_ad_ (easylistchina+easylist.txt: 14953) -/(.*/)?main_ad_ -# /main_ad/* (easylistchina+easylist.txt: 14952) -/(.*/)?main_ad/.* -# /main_ad. (easylistchina+easylist.txt: 14951) -/(.*/)?main_ad\. -# /main/ads/* (easylistchina+easylist.txt: 14950) -/(.*/)?main/ads/.* -# /main/ad_ (easylistchina+easylist.txt: 14949) -/(.*/)?main/ad_ -# /main/ad/* (easylistchina+easylist.txt: 14948) -/(.*/)?main/ad/.* -# /magic-ads/* (easylistchina+easylist.txt: 14947) -/(.*/)?magic-ads/.* -# /magic-ad/* (easylistchina+easylist.txt: 14946) -/(.*/)?magic-ad/.* -# /magazine/ads. (easylistchina+easylist.txt: 14945) -/(.*/)?magazine/ads\. -# /mad_ad. (easylistchina+easylist.txt: 14944) -/(.*/)?mad_ad\. -# /mad.aspx? (easylistchina+easylist.txt: 14943) -/(.*/)?mad\.aspx\? -# /mac-ad? (easylistchina+easylist.txt: 14942) -/(.*/)?mac-ad\? -# /m0ar_ads. (easylistchina+easylist.txt: 14941) -/(.*/)?m0ar_ads\. -# /lrec_ad. (easylistchina+easylist.txt: 14940) -/(.*/)?lrec_ad\. -# /lotto_ad_ (easylistchina+easylist.txt: 14939) -/(.*/)?lotto_ad_ -# /logoutad. (easylistchina+easylist.txt: 14938) -/(.*/)?logoutad\. -logoutad.*. -# /logoads. (easylistchina+easylist.txt: 14937) -/(.*/)?logoads\. -logoads.*. -# /logo-ads. (easylistchina+easylist.txt: 14936) -/(.*/)?logo-ads\. -logo-ads.*. -# /logad? (easylistchina+easylist.txt: 14935) -/(.*/)?logad\? -# /log_ad_ (easylistchina+easylist.txt: 14934) -/(.*/)?log_ad_ -# /log_ad? (easylistchina+easylist.txt: 14933) -/(.*/)?log_ad\? -# /localcom-ad- (easylistchina+easylist.txt: 14931) -/(.*/)?localcom-ad- -localcom-ad-*. -# /localads. (easylistchina+easylist.txt: 14930) -/(.*/)?localads\. -localads.*. -# /LocalAdNet/* (easylistchina+easylist.txt: 14929) -/(.*/)?LocalAdNet/.* -# /localAdData/* (easylistchina+easylist.txt: 14928) -/(.*/)?localAdData/.* -# /LocalAd_ (easylistchina+easylist.txt: 14927) -/(.*/)?LocalAd_ -# /localAd/* (easylistchina+easylist.txt: 14926) -/(.*/)?localAd/.* -# /local_ads_ (easylistchina+easylist.txt: 14925) -/(.*/)?local_ads_ -# /loadTargetUrl? (easylistchina+easylist.txt: 14924) -/(.*/)?loadTargetUrl\? -# /loading_ads. (easylistchina+easylist.txt: 14923) -/(.*/)?loading_ads\. -# /loadadwiz. (easylistchina+easylist.txt: 14922) -/(.*/)?loadadwiz\. -loadadwiz.*. -# /loadadsparam. (easylistchina+easylist.txt: 14921) -/(.*/)?loadadsparam\. -loadadsparam.*. -# /loadadsmainparam. (easylistchina+easylist.txt: 14920) -/(.*/)?loadadsmainparam\. -loadadsmainparam.*. -# /loadadsmain. (easylistchina+easylist.txt: 14919) -/(.*/)?loadadsmain\. -loadadsmain.*. -# /loadads/* (easylistchina+easylist.txt: 14918) -/(.*/)?loadads/.* -# /loadads. (easylistchina+easylist.txt: 14917) -/(.*/)?loadads\. -loadads.*. -# /loadad.aspx? (easylistchina+easylist.txt: 14916) -/(.*/)?loadad\.aspx\? -# /load_ad? (easylistchina+easylist.txt: 14915) -/(.*/)?load_ad\? -# /load-ads| (easylistchina+easylist.txt: 14914) -/(.*/)?load-ads$ -# /livejasmine05. (easylistchina+easylist.txt: 14913) -/(.*/)?livejasmine05\. -livejasmine05.*. -# /livejasmine03. (easylistchina+easylist.txt: 14912) -/(.*/)?livejasmine03\. -livejasmine03.*. -# /livejasmin_ (easylistchina+easylist.txt: 14911) -/(.*/)?livejasmin_ -# /livejasmin2. (easylistchina+easylist.txt: 14910) -/(.*/)?livejasmin2\. -livejasmin2.*. -# /livejasmin/*&id= (easylistchina+easylist.txt: 14909) -/(.*/)?livejasmin/.*&id= -# /livejasmin. (easylistchina+easylist.txt: 14908) -/(.*/)?livejasmin\. -livejasmin.*. -# /liveads. (easylistchina+easylist.txt: 14907) -/(.*/)?liveads\. -liveads.*. -# /livead- (easylistchina+easylist.txt: 14906) -/(.*/)?livead- -livead-*. -# /live_ad. (easylistchina+easylist.txt: 14905) -/(.*/)?live_ad\. -# /links_sponsored_ (easylistchina+easylist.txt: 14904) -/(.*/)?links_sponsored_ -# /linkedads/* (easylistchina+easylist.txt: 14903) -/(.*/)?linkedads/.* -# /linkadv_ (easylistchina+easylist.txt: 14902) -/(.*/)?linkadv_ -# /linkadv. (easylistchina+easylist.txt: 14901) -/(.*/)?linkadv\. -linkadv.*. -# /linkads. (easylistchina+easylist.txt: 14900) -/(.*/)?linkads\. -linkads.*. -# /linkad2. (easylistchina+easylist.txt: 14899) -/(.*/)?linkad2\. -linkad2.*. -# /lijitads. (easylistchina+easylist.txt: 14898) -/(.*/)?lijitads\. -lijitads.*. -# /lijit-ad- (easylistchina+easylist.txt: 14897) -/(.*/)?lijit-ad- -lijit-ad-*. -# /lightboxbannerad^ (easylistchina+easylist.txt: 14896) -/(.*/)?lightboxbannerad[^\w%.-] -# /lightboxad^ (easylistchina+easylist.txt: 14895) -/(.*/)?lightboxad[^\w%.-] -# /lightad. (easylistchina+easylist.txt: 14894) -/(.*/)?lightad\. -lightad.*. -# /lifeshowad/* (easylistchina+easylist.txt: 14893) -/(.*/)?lifeshowad/.* -# /library/ads/* (easylistchina+easylist.txt: 14892) -/(.*/)?library/ads/.* -# /lib/ad.js (easylistchina+easylist.txt: 14891) -/(.*/)?lib/ad\.js -# /lg.php?adid= (easylistchina+easylist.txt: 14890) -/(.*/)?lg\.php\?adid= -# /leftsidebarads. (easylistchina+easylist.txt: 14889) -/(.*/)?leftsidebarads\. -leftsidebarads.*. -# /leftads. (easylistchina+easylist.txt: 14888) -/(.*/)?leftads\. -leftads.*. -# /leftad_ (easylistchina+easylist.txt: 14887) -/(.*/)?leftad_ -# /leftad. (easylistchina+easylist.txt: 14886) -/(.*/)?leftad\. -leftad.*. -# /left_ads. (easylistchina+easylist.txt: 14885) -/(.*/)?left_ads\. -# /left_ad_ (easylistchina+easylist.txt: 14884) -/(.*/)?left_ad_ -# /left-ads. (easylistchina+easylist.txt: 14883) -/(.*/)?left-ads\. -left-ads.*. -# /ledad. (easylistchina+easylist.txt: 14882) -/(.*/)?ledad\. -ledad.*. -# /leaderboardads. (easylistchina+easylist.txt: 14881) -/(.*/)?leaderboardads\. -leaderboardads.*. -# /leaderboardadblock. (easylistchina+easylist.txt: 14880) -/(.*/)?leaderboardadblock\. -leaderboardadblock.*. -# /leaderboardad. (easylistchina+easylist.txt: 14879) -/(.*/)?leaderboardad\. -leaderboardad.*. -# /leaderboard_adv/* (easylistchina+easylist.txt: 14878) -/(.*/)?leaderboard_adv/.* -# /leaderboard_ad/* (easylistchina+easylist.txt: 14877) -/(.*/)?leaderboard_ad/.* -# /leaderboard-advert. (easylistchina+easylist.txt: 14876) -/(.*/)?leaderboard-advert\. -leaderboard-advert.*. -# /leaderad. (easylistchina+easylist.txt: 14875) -/(.*/)?leaderad\. -leaderad.*. -# /leader_ad. (easylistchina+easylist.txt: 14874) -/(.*/)?leader_ad\. -# /leadads/* (easylistchina+easylist.txt: 14873) -/(.*/)?leadads/.* -# /lbl_ad. (easylistchina+easylist.txt: 14872) -/(.*/)?lbl_ad\. -# /lazyad. (easylistchina+easylist.txt: 14871) -/(.*/)?lazyad\. -lazyad.*. -# /layout/ads/* (easylistchina+easylist.txt: 14870) -/(.*/)?layout/ads/.* -# /layout/ad. (easylistchina+easylist.txt: 14869) -/(.*/)?layout/ad\. -# /layout.inc.php?img (easylistchina+easylist.txt: 14868) -/(.*/)?layout\.inc\.php\?img -# /layerads_ (easylistchina+easylist.txt: 14867) -/(.*/)?layerads_ -# /layerads. (easylistchina+easylist.txt: 14866) -/(.*/)?layerads\. -layerads.*. -# /layerads- (easylistchina+easylist.txt: 14865) -/(.*/)?layerads- -layerads-*. -# /LayerAd^ (easylistchina+easylist.txt: 14864) -/(.*/)?LayerAd[^\w%.-] -# /layerad. (easylistchina+easylist.txt: 14863) -/(.*/)?layerad\. -layerad.*. -# /layerad- (easylistchina+easylist.txt: 14862) -/(.*/)?layerad- -layerad-*. -# /layer_ad? (easylistchina+easylist.txt: 14861) -/(.*/)?layer_ad\? -# /layer160x600. (easylistchina+easylist.txt: 14860) -/(.*/)?layer160x600\. -layer160x600.*. -# /layer/ads. (easylistchina+easylist.txt: 14859) -/(.*/)?layer/ads\. -# /layer/ad. (easylistchina+easylist.txt: 14858) -/(.*/)?layer/ad\. -# /layer.php?bid= (easylistchina+easylist.txt: 14857) -/(.*/)?layer\.php\?bid= -# /layer-advert- (easylistchina+easylist.txt: 14856) -/(.*/)?layer-advert- -layer-advert-*. -# /layer-ads. (easylistchina+easylist.txt: 14855) -/(.*/)?layer-ads\. -layer-ads.*. -# /layer-ad. (easylistchina+easylist.txt: 14854) -/(.*/)?layer-ad\. -layer-ad.*. -# /layad. (easylistchina+easylist.txt: 14853) -/(.*/)?layad\. -layad.*. -# /large_ads/* (easylistchina+easylist.txt: 14852) -/(.*/)?large_ads/.* -# /landingadvertisements/* (easylistchina+easylist.txt: 14851) -/(.*/)?landingadvertisements/.* -# /landerbanners/* (easylistchina+easylist.txt: 14850) -/(.*/)?landerbanners/.* -# /kskads. (easylistchina+easylist.txt: 14849) -/(.*/)?kskads\. -kskads.*. -# /kredit-ad. (easylistchina+easylist.txt: 14848) -/(.*/)?kredit-ad\. -kredit-ad.*. -# /kogeePopupAd. (easylistchina+easylist.txt: 14847) -/(.*/)?kogeePopupAd\. -kogeePopupAd.*. -# /keyword_ad. (easylistchina+easylist.txt: 14846) -/(.*/)?keyword_ad\. -# /keyade.js (easylistchina+easylist.txt: 14845) -/(.*/)?keyade\.js -keyade.js*. -# /kantarmedia. (easylistchina+easylist.txt: 14844) -/(.*/)?kantarmedia\. -kantarmedia.*. -# /kampyle.js (easylistchina+easylist.txt: 14843) -/(.*/)?kampyle\.js -kampyle.js*. -# /KalahariAds. (easylistchina+easylist.txt: 14842) -/(.*/)?KalahariAds\. -KalahariAds.*. -# /kaksvpopup. (easylistchina+easylist.txt: 14841) -/(.*/)?kaksvpopup\. -kaksvpopup.*. -# /k_ads/* (easylistchina+easylist.txt: 14840) -/(.*/)?k_ads/.* -# /jumpstartunpaidad. (easylistchina+easylist.txt: 14839) -/(.*/)?jumpstartunpaidad\. -jumpstartunpaidad.*. -# /juicyads_ (easylistchina+easylist.txt: 14838) -/(.*/)?juicyads_ -# /jtcashbanners/* (easylistchina+easylist.txt: 14837) -/(.*/)?jtcashbanners/.* -# /jsVideoPopAd. (easylistchina+easylist.txt: 14836) -/(.*/)?jsVideoPopAd\. -jsVideoPopAd.*. -# /jstextad. (easylistchina+easylist.txt: 14835) -/(.*/)?jstextad\. -jstextad.*. -# /jspopunder. (easylistchina+easylist.txt: 14834) -/(.*/)?jspopunder\. -jspopunder.*. -# /jsplayerads- (easylistchina+easylist.txt: 14833) -/(.*/)?jsplayerads- -jsplayerads-*. -# /json/ad/* (easylistchina+easylist.txt: 14832) -/(.*/)?json/ad/.* -# /jsfiles/ads/* (easylistchina+easylist.txt: 14831) -/(.*/)?jsfiles/ads/.* -# /jsc/ads. (easylistchina+easylist.txt: 14830) -/(.*/)?jsc/ads\. -# /jsadscripts/* (easylistchina+easylist.txt: 14829) -/(.*/)?jsadscripts/.* -# /jsAds/* (easylistchina+easylist.txt: 14828) -/(.*/)?jsAds/.* -# /jsads- (easylistchina+easylist.txt: 14827) -/(.*/)?jsads- -jsads-*. -# /jsad/* (easylistchina+easylist.txt: 14826) -/(.*/)?jsad/.* -# /jsad.php (easylistchina+easylist.txt: 14825) -/(.*/)?jsad\.php -jsad.php*. -# /js_adv_ (easylistchina+easylist.txt: 14824) -/(.*/)?js_adv_ -# /js_ads_ (easylistchina+easylist.txt: 14823) -/(.*/)?js_ads_ -# /js_ads/* (easylistchina+easylist.txt: 14822) -/(.*/)?js_ads/.* -# /js_ad_utf8. (easylistchina+easylist.txt: 14821) -/(.*/)?js_ad_utf8\. -# /js2.ad/size= (easylistchina+easylist.txt: 14820) -/(.*/)?js2\.ad/size= -js2.ad/size= -# /js/youmuffpu.js (easylistchina+easylist.txt: 14819) -/(.*/)?js/youmuffpu\.js -# /js/oas. (easylistchina+easylist.txt: 14817) -/(.*/)?js/oas\. -# /js/oas- (easylistchina+easylist.txt: 14816) -/(.*/)?js/oas- -# /js/doubleclick/* (easylistchina+easylist.txt: 14815) -/(.*/)?js/doubleclick/.* -# /js/adv/* (easylistchina+easylist.txt: 14814) -/(.*/)?js/adv/.* -# /js/adv. (easylistchina+easylist.txt: 14813) -/(.*/)?js/adv\. -# /js/ads_ (easylistchina+easylist.txt: 14812) -/(.*/)?js/ads_ -# /js/ads. (easylistchina+easylist.txt: 14811) -/(.*/)?js/ads\. -# /js/ads- (easylistchina+easylist.txt: 14810) -/(.*/)?js/ads- -# /js.ng/size= (easylistchina+easylist.txt: 14809) -/(.*/)?js\.ng/size= -js.ng/size= -# /js.ng/site= (easylistchina+easylist.txt: 14808) -/(.*/)?js\.ng/site= -js.ng/site= -# /js.ng/pagepos= (easylistchina+easylist.txt: 14807) -/(.*/)?js\.ng/pagepos= -js.ng/pagepos= -# /js.ng/channel_ (easylistchina+easylist.txt: 14806) -/(.*/)?js\.ng/channel_ -js.ng/channel_ -# /js.ng/cat= (easylistchina+easylist.txt: 14805) -/(.*/)?js\.ng/cat= -js.ng/cat= -# /js.ad/size= (easylistchina+easylist.txt: 14804) -/(.*/)?js\.ad/size= -js.ad/size= -# /jqueryadvertising. (easylistchina+easylist.txt: 14803) -/(.*/)?jqueryadvertising\. -jqueryadvertising.*. -# /jquery_FOR_AD/* (easylistchina+easylist.txt: 14802) -/(.*/)?jquery_FOR_AD/.* -# /jquery/ad. (easylistchina+easylist.txt: 14801) -/(.*/)?jquery/ad\. -# /jquery.adx. (easylistchina+easylist.txt: 14800) -/(.*/)?jquery\.adx\. -jquery.adx.*. -# /jquery-ads. (easylistchina+easylist.txt: 14799) -/(.*/)?jquery-ads\. -jquery-ads.*. -# /jqads. (easylistchina+easylist.txt: 14798) -/(.*/)?jqads\. -jqads.*. -# /JPlayerAdFoxAdvertisementPlugin. (easylistchina+easylist.txt: 14797) -/(.*/)?JPlayerAdFoxAdvertisementPlugin\. -JPlayerAdFoxAdvertisementPlugin.*. -# /jlist-affiliates/* (easylistchina+easylist.txt: 14796) -/(.*/)?jlist-affiliates/.* -# /jivoxadplayer. (easylistchina+easylist.txt: 14795) -/(.*/)?jivoxadplayer\. -jivoxadplayer.*. -# /jitads. (easylistchina+easylist.txt: 14794) -/(.*/)?jitads\. -jitads.*. -# /jcorner.php?partner= (easylistchina+easylist.txt: 14793) -/(.*/)?jcorner\.php\?partner= -# /javascripts/ads/* (easylistchina+easylist.txt: 14792) -/(.*/)?javascripts/ads/.* -# /javascripts/ads. (easylistchina+easylist.txt: 14791) -/(.*/)?javascripts/ads\. -# /javascript/oas? (easylistchina+easylist.txt: 14790) -/(.*/)?javascript/oas\? -# /javascript/oas. (easylistchina+easylist.txt: 14789) -/(.*/)?javascript/oas\. -# /javascript/ads/* (easylistchina+easylist.txt: 14788) -/(.*/)?javascript/ads/.* -# /javascript/ads. (easylistchina+easylist.txt: 14787) -/(.*/)?javascript/ads\. -# /jamnboad. (easylistchina+easylist.txt: 14786) -/(.*/)?jamnboad\. -jamnboad.*. -# /j/ads.js (easylistchina+easylist.txt: 14785) -/(.*/)?j/ads\.js -# /iwadsense. (easylistchina+easylist.txt: 14784) -/(.*/)?iwadsense\. -iwadsense.*. -# /ispy/ads/* (easylistchina+easylist.txt: 14783) -/(.*/)?ispy/ads/.* -# /isgadvertisement/* (easylistchina+easylist.txt: 14782) -/(.*/)?isgadvertisement/.* -# /iserver/site= (easylistchina+easylist.txt: 14781) -/(.*/)?iserver/site= -# /iserver/ccid= (easylistchina+easylist.txt: 14780) -/(.*/)?iserver/ccid= -# /is.php?ipua_id=*&search_id= (easylistchina+easylist.txt: 14779) -/(.*/)?is\.php\?ipua_id=.*&search_id= -# /ireel/ad*.jpg (easylistchina+easylist.txt: 14778) -/(.*/)?ireel/ad.*\.jpg -# /irc_ad_ (easylistchina+easylist.txt: 14777) -/(.*/)?irc_ad_ -# /iqadcontroller. (easylistchina+easylist.txt: 14776) -/(.*/)?iqadcontroller\. -iqadcontroller.*. -# /iprom-ad/* (easylistchina+easylist.txt: 14775) -/(.*/)?iprom-ad/.* -# /ipadad. (easylistchina+easylist.txt: 14774) -/(.*/)?ipadad\. -ipadad.*. -# /ip-advertising/* (easylistchina+easylist.txt: 14773) -/(.*/)?ip-advertising/.* -# /inx-ad. (easylistchina+easylist.txt: 14772) -/(.*/)?inx-ad\. -inx-ad.*. -# /inviteads/* (easylistchina+easylist.txt: 14771) -/(.*/)?inviteads/.* -# /invideoad. (easylistchina+easylist.txt: 14770) -/(.*/)?invideoad\. -invideoad.*. -# /inventory/ad/* (easylistchina+easylist.txt: 14769) -/(.*/)?inventory/ad/.* -# /inv/ads/* (easylistchina+easylist.txt: 14768) -/(.*/)?inv/ads/.* -# /introduction_ad. (easylistchina+easylist.txt: 14767) -/(.*/)?introduction_ad\. -# /intextads. (easylistchina+easylist.txt: 14766) -/(.*/)?intextads\. -intextads.*. -# /intextadd/* (easylistchina+easylist.txt: 14765) -/(.*/)?intextadd/.* -# /interstitial_ad. (easylistchina+easylist.txt: 14764) -/(.*/)?interstitial_ad\. -# /interstitial-ad? (easylistchina+easylist.txt: 14763) -/(.*/)?interstitial-ad\? -# /interstitial-ad/* (easylistchina+easylist.txt: 14762) -/(.*/)?interstitial-ad/.* -# /interstitial-ad. (easylistchina+easylist.txt: 14761) -/(.*/)?interstitial-ad\. -interstitial-ad.*. -# /internetad/* (easylistchina+easylist.txt: 14760) -/(.*/)?internetad/.* -# /internet_ad_ (easylistchina+easylist.txt: 14759) -/(.*/)?internet_ad_ -# /internal-ad- (easylistchina+easylist.txt: 14758) -/(.*/)?internal-ad- -internal-ad-*. -# /internAds. (easylistchina+easylist.txt: 14757) -/(.*/)?internAds\. -internAds.*. -# /intermediate-ad- (easylistchina+easylist.txt: 14756) -/(.*/)?intermediate-ad- -intermediate-ad-*. -# /interface/ads/* (easylistchina+easylist.txt: 14755) -/(.*/)?interface/ads/.* -# /interad. (easylistchina+easylist.txt: 14754) -/(.*/)?interad\. -interad.*. -# /intellitext. (easylistchina+easylist.txt: 14753) -/(.*/)?intellitext\. -intellitext.*. -# /intelliad. (easylistchina+easylist.txt: 14752) -/(.*/)?intelliad\. -intelliad.*. -# /instreamad/* (easylistchina+easylist.txt: 14751) -/(.*/)?instreamad/.* -# /insertads. (easylistchina+easylist.txt: 14750) -/(.*/)?insertads\. -insertads.*. -# /insertAd. (easylistchina+easylist.txt: 14749) -/(.*/)?insertAd\. -insertAd.*. -# /inquirer/ads/* (easylistchina+easylist.txt: 14748) -/(.*/)?inquirer/ads/.* -# /innerads. (easylistchina+easylist.txt: 14747) -/(.*/)?innerads\. -innerads.*. -# /inner-ads/* (easylistchina+easylist.txt: 14746) -/(.*/)?inner-ads/.* -# /inner-ads- (easylistchina+easylist.txt: 14745) -/(.*/)?inner-ads- -inner-ads-*. -# /inlinetextads? (easylistchina+easylist.txt: 14744) -/(.*/)?inlinetextads\? -# /inlineads/* (easylistchina+easylist.txt: 14743) -/(.*/)?inlineads/.* -# /inline_ads. (easylistchina+easylist.txt: 14742) -/(.*/)?inline_ads\. -# /inline_ad_ (easylistchina+easylist.txt: 14741) -/(.*/)?inline_ad_ -# /inline_ad. (easylistchina+easylist.txt: 14740) -/(.*/)?inline_ad\. -# /INjspopunder. (easylistchina+easylist.txt: 14739) -/(.*/)?INjspopunder\. -INjspopunder.*. -# /injectad. (easylistchina+easylist.txt: 14738) -/(.*/)?injectad\. -injectad.*. -# /initlayeredwelcomead- (easylistchina+easylist.txt: 14737) -/(.*/)?initlayeredwelcomead- -initlayeredwelcomead-*. -# /initdefineads. (easylistchina+easylist.txt: 14736) -/(.*/)?initdefineads\. -initdefineads.*. -# /inhouse_ads/* (easylistchina+easylist.txt: 14735) -/(.*/)?inhouse_ads/.* -# /index_ads. (easylistchina+easylist.txt: 14734) -/(.*/)?index_ads\. -# /index_ad/* (easylistchina+easylist.txt: 14733) -/(.*/)?index_ad/.* -# /index-ad. (easylistchina+easylist.txt: 14732) -/(.*/)?index-ad\. -index-ad.*. -# /index-ad- (easylistchina+easylist.txt: 14731) -/(.*/)?index-ad- -index-ad-*. -# /incmpuad. (easylistchina+easylist.txt: 14730) -/(.*/)?incmpuad\. -incmpuad.*. -# /includes/ads_ (easylistchina+easylist.txt: 14729) -/(.*/)?includes/ads_ -# /includes/ads/* (easylistchina+easylist.txt: 14728) -/(.*/)?includes/ads/.* -# /includes/ad_ (easylistchina+easylist.txt: 14727) -/(.*/)?includes/ad_ -# /includes/ad. (easylistchina+easylist.txt: 14726) -/(.*/)?includes/ad\. -# /included_ads/* (easylistchina+easylist.txt: 14725) -/(.*/)?included_ads/.* -# /include/adsdaq (easylistchina+easylist.txt: 14724) -/(.*/)?include/adsdaq -# /include/ads/* (easylistchina+easylist.txt: 14723) -/(.*/)?include/ads/.* -# /include/ad_ (easylistchina+easylist.txt: 14722) -/(.*/)?include/ad_ -# /include/ad/* (easylistchina+easylist.txt: 14721) -/(.*/)?include/ad/.* -# /inc_v2/ad_ (easylistchina+easylist.txt: 14720) -/(.*/)?inc_v2/ad_ -# /inc_ads. (easylistchina+easylist.txt: 14719) -/(.*/)?inc_ads\. -# /inc_ad_ (easylistchina+easylist.txt: 14718) -/(.*/)?inc_ad_ -# /inc_ad. (easylistchina+easylist.txt: 14717) -/(.*/)?inc_ad\. -# /inc/ads/* (easylistchina+easylist.txt: 14716) -/(.*/)?inc/ads/.* -# /inc/ad. (easylistchina+easylist.txt: 14715) -/(.*/)?inc/ad\. -# /inc/ad- (easylistchina+easylist.txt: 14714) -/(.*/)?inc/ad- -# /inad. (easylistchina+easylist.txt: 14713) -/(.*/)?inad\. -inad.*. -# /impopup/* (easylistchina+easylist.txt: 14712) -/(.*/)?impopup/.* -# /impop. (easylistchina+easylist.txt: 14711) -/(.*/)?impop\. -impop.*. -# /imp.ads/* (easylistchina+easylist.txt: 14710) -/(.*/)?imp\.ads/.* -imp.ads/.* -# /imlive5. (easylistchina+easylist.txt: 14709) -/(.*/)?imlive5\. -imlive5.*. -# /imlive300_ (easylistchina+easylist.txt: 14708) -/(.*/)?imlive300_ -# /imlive.gif (easylistchina+easylist.txt: 14707) -/(.*/)?imlive\.gif -imlive.gif*. -# /imgs/ads/* (easylistchina+easylist.txt: 14706) -/(.*/)?imgs/ads/.* -# /imgs/ad/* (easylistchina+easylist.txt: 14705) -/(.*/)?imgs/ad/.* -# /imgaffl/* (easylistchina+easylist.txt: 14704) -/(.*/)?imgaffl/.* -# /imgads/* (easylistchina+easylist.txt: 14703) -/(.*/)?imgads/.* -# /imgAdITN. (easylistchina+easylist.txt: 14702) -/(.*/)?imgAdITN\. -imgAdITN.*. -# /imgad_ (easylistchina+easylist.txt: 14701) -/(.*/)?imgad_ -# /imgad? (easylistchina+easylist.txt: 14700) -/(.*/)?imgad\? -# /imgad. (easylistchina+easylist.txt: 14699) -/(.*/)?imgad\. -imgad.*. -# /img_adv/* (easylistchina+easylist.txt: 14698) -/(.*/)?img_adv/.* -# /img_ads/* (easylistchina+easylist.txt: 14697) -/(.*/)?img_ads/.* -# /img_ad_ (easylistchina+easylist.txt: 14696) -/(.*/)?img_ad_ -# /img_ad/* (easylistchina+easylist.txt: 14695) -/(.*/)?img_ad/.* -# /img3/ads/* (easylistchina+easylist.txt: 14694) -/(.*/)?img3/ads/.* -# /img2/ad/* (easylistchina+easylist.txt: 14693) -/(.*/)?img2/ad/.* -# /img/aff/* (easylistchina+easylist.txt: 14692) -/(.*/)?img/aff/.* -# /img/adv/* (easylistchina+easylist.txt: 14691) -/(.*/)?img/adv/.* -# /img/adv. (easylistchina+easylist.txt: 14690) -/(.*/)?img/adv\. -# /img/ads/* (easylistchina+easylist.txt: 14689) -/(.*/)?img/ads/.* -# /img/ad_ (easylistchina+easylist.txt: 14688) -/(.*/)?img/ad_ -# /img/ad/* (easylistchina+easylist.txt: 14687) -/(.*/)?img/ad/.* -# /img/ad. (easylistchina+easylist.txt: 14686) -/(.*/)?img/ad\. -# /img/ad- (easylistchina+easylist.txt: 14685) -/(.*/)?img/ad- -# /img/_ad. (easylistchina+easylist.txt: 14684) -/(.*/)?img/_ad\. -# /img.ads. (easylistchina+easylist.txt: 14683) -/(.*/)?img\.ads\. -img.ads.*. -# /img-ads/* (easylistchina+easylist.txt: 14682) -/(.*/)?img-ads/.* -# /imfloat. (easylistchina+easylist.txt: 14681) -/(.*/)?imfloat\. -imfloat.*. -# /imagesadspro/* (easylistchina+easylist.txt: 14680) -/(.*/)?imagesadspro/.* -# /images_ads/* (easylistchina+easylist.txt: 14679) -/(.*/)?images_ads/.* -# /images_ad/* (easylistchina+easylist.txt: 14678) -/(.*/)?images_ad/.* -# /images2/ads/* (easylistchina+easylist.txt: 14677) -/(.*/)?images2/ads/.* -# /images1/ad_ (easylistchina+easylist.txt: 14676) -/(.*/)?images1/ad_ -# /images/vghd (easylistchina+easylist.txt: 14675) -/(.*/)?images/vghd -# /images/sponsored/* (easylistchina+easylist.txt: 14674) -/(.*/)?images/sponsored/.* -# /images/sponsored. (easylistchina+easylist.txt: 14673) -/(.*/)?images/sponsored\. -# /images/livejasmin/* (easylistchina+easylist.txt: 14672) -/(.*/)?images/livejasmin/.* -# /images/gads_ (easylistchina+easylist.txt: 14671) -/(.*/)?images/gads_ -# /images/bg_ad/* (easylistchina+easylist.txt: 14670) -/(.*/)?images/bg_ad/.* -# /images/awebanner (easylistchina+easylist.txt: 14669) -/(.*/)?images/awebanner -# /images/affs/* (easylistchina+easylist.txt: 14668) -/(.*/)?images/affs/.* -# /images/aff- (easylistchina+easylist.txt: 14667) -/(.*/)?images/aff- -# /images/adver- (easylistchina+easylist.txt: 14666) -/(.*/)?images/adver- -# /images/adv_ (easylistchina+easylist.txt: 14665) -/(.*/)?images/adv_ -# /images/adv/* (easylistchina+easylist.txt: 14664) -/(.*/)?images/adv/.* -# /images/adv. (easylistchina+easylist.txt: 14663) -/(.*/)?images/adv\. -# /images/adv- (easylistchina+easylist.txt: 14662) -/(.*/)?images/adv- -# /images/ads_ (easylistchina+easylist.txt: 14661) -/(.*/)?images/ads_ -# /images/ads/* (easylistchina+easylist.txt: 14660) -/(.*/)?images/ads/.* -# /images/ads. (easylistchina+easylist.txt: 14659) -/(.*/)?images/ads\. -# /images/ads- (easylistchina+easylist.txt: 14658) -/(.*/)?images/ads- -# /images/adds/* (easylistchina+easylist.txt: 14657) -/(.*/)?images/adds/.* -# /images/ad2/* (easylistchina+easylist.txt: 14656) -/(.*/)?images/ad2/.* -# /images/ad/* (easylistchina+easylist.txt: 14655) -/(.*/)?images/ad/.* -# /images/ad- (easylistchina+easylist.txt: 14653) -/(.*/)?images/ad- -# /images.adv/* (easylistchina+easylist.txt: 14652) -/(.*/)?images\.adv/.* -images.adv/.* -# /images.ads. (easylistchina+easylist.txt: 14651) -/(.*/)?images\.ads\. -images.ads.*. -# /images-v2/ad_ (easylistchina+easylist.txt: 14650) -/(.*/)?images-v2/ad_ -# /images-ad/* (easylistchina+easylist.txt: 14649) -/(.*/)?images-ad/.* -# /imagecache_ads/* (easylistchina+easylist.txt: 14648) -/(.*/)?imagecache_ads/.* -# /imageads/* (easylistchina+easylist.txt: 14647) -/(.*/)?imageads/.* -# /image_ads/* (easylistchina+easylist.txt: 14646) -/(.*/)?image_ads/.* -# /image/affiliate/* (easylistchina+easylist.txt: 14645) -/(.*/)?image/affiliate/.* -# /image/adv/* (easylistchina+easylist.txt: 14644) -/(.*/)?image/adv/.* -# /image/ads_ (easylistchina+easylist.txt: 14643) -/(.*/)?image/ads_ -# /image/ads/* (easylistchina+easylist.txt: 14642) -/(.*/)?image/ads/.* -# /image/ad/* (easylistchina+easylist.txt: 14641) -/(.*/)?image/ad/.* -# /imads.js (easylistchina+easylist.txt: 14640) -/(.*/)?imads\.js -imads.js*. -# /imaads. (easylistchina+easylist.txt: 14639) -/(.*/)?imaads\. -imaads.*. -# /ima/ads_ (easylistchina+easylist.txt: 14638) -/(.*/)?ima/ads_ -# /im.cams. (easylistchina+easylist.txt: 14637) -/(.*/)?im\.cams\. -im.cams.*. -# /im-popup/* (easylistchina+easylist.txt: 14636) -/(.*/)?im-popup/.* -# /im-ad/im-rotator2. (easylistchina+easylist.txt: 14635) -/(.*/)?im-ad/im-rotator2\. -# /im-ad/im-rotator. (easylistchina+easylist.txt: 14634) -/(.*/)?im-ad/im-rotator\. -# /ilivid-ad- (easylistchina+easylist.txt: 14633) -/(.*/)?ilivid-ad- -ilivid-ad-*. -# /ignitecampaigns.com/* (easylistchina+easylist.txt: 14632) -/(.*/)?ignitecampaigns\.com/.* -ignitecampaigns.com/.* -# /ignite.partnerembed.js (easylistchina+easylist.txt: 14631) -/(.*/)?ignite\.partnerembed\.js -ignite.partnerembed.js*. -# /ifrm_ads/* (easylistchina+easylist.txt: 14630) -/(.*/)?ifrm_ads/.* -# /iframes/ad/* (easylistchina+easylist.txt: 14629) -/(.*/)?iframes/ad/.* -# /iframedartad. (easylistchina+easylist.txt: 14628) -/(.*/)?iframedartad\. -iframedartad.*. -# /iframeadsensewrapper. (easylistchina+easylist.txt: 14627) -/(.*/)?iframeadsensewrapper\. -iframeadsensewrapper.*. -# /iframeadsense. (easylistchina+easylist.txt: 14626) -/(.*/)?iframeadsense\. -iframeadsense.*. -# /iframeads/* (easylistchina+easylist.txt: 14625) -/(.*/)?iframeads/.* -# /iframeads. (easylistchina+easylist.txt: 14624) -/(.*/)?iframeads\. -iframeads.*. -# /iframeadcontent. (easylistchina+easylist.txt: 14623) -/(.*/)?iframeadcontent\. -iframeadcontent.*. -# /iframead_ (easylistchina+easylist.txt: 14622) -/(.*/)?iframead_ -# /iframead/* (easylistchina+easylist.txt: 14621) -/(.*/)?iframead/.* -# /iframead. (easylistchina+easylist.txt: 14620) -/(.*/)?iframead\. -iframead.*. -# /iframe_sponsor_ (easylistchina+easylist.txt: 14619) -/(.*/)?iframe_sponsor_ -# /iframe_chitika_ (easylistchina+easylist.txt: 14618) -/(.*/)?iframe_chitika_ -# /iframe_ads_ (easylistchina+easylist.txt: 14617) -/(.*/)?iframe_ads_ -# /iframe_ads/* (easylistchina+easylist.txt: 14616) -/(.*/)?iframe_ads/.* -# /iframe_ad_ (easylistchina+easylist.txt: 14615) -/(.*/)?iframe_ad_ -# /iframe_ad? (easylistchina+easylist.txt: 14614) -/(.*/)?iframe_ad\? -# /iframe_ad. (easylistchina+easylist.txt: 14613) -/(.*/)?iframe_ad\. -# /iframe/ads/* (easylistchina+easylist.txt: 14612) -/(.*/)?iframe/ads/.* -# /iframe/ad_ (easylistchina+easylist.txt: 14611) -/(.*/)?iframe/ad_ -# /iframe/ad/* (easylistchina+easylist.txt: 14610) -/(.*/)?iframe/ad/.* -# /iframe.ad/* (easylistchina+easylist.txt: 14609) -/(.*/)?iframe\.ad/.* -iframe.ad/.* -# /iframe-mgid- (easylistchina+easylist.txt: 14608) -/(.*/)?iframe-mgid- -iframe-mgid-*. -# /iframe-ads/* (easylistchina+easylist.txt: 14607) -/(.*/)?iframe-ads/.* -# /iframe-ad/* (easylistchina+easylist.txt: 14606) -/(.*/)?iframe-ad/.* -# /iframe-ad. (easylistchina+easylist.txt: 14605) -/(.*/)?iframe-ad\. -iframe-ad.*. -# /ifolder-ads. (easylistchina+easylist.txt: 14604) -/(.*/)?ifolder-ads\. -ifolder-ads.*. -# /idevaffiliate/banners/* (easylistchina+easylist.txt: 14603) -/(.*/)?idevaffiliate/banners/.* -# /icon_advertising_ (easylistchina+easylist.txt: 14602) -/(.*/)?icon_advertising_ -# /icon_ads_ (easylistchina+easylist.txt: 14601) -/(.*/)?icon_ads_ -# /icon_ad. (easylistchina+easylist.txt: 14600) -/(.*/)?icon_ad\. -# /IBNjspopunder. (easylistchina+easylist.txt: 14599) -/(.*/)?IBNjspopunder\. -IBNjspopunder.*. -# /iabadvertisingplugin.swf (easylistchina+easylist.txt: 14598) -/(.*/)?iabadvertisingplugin\.swf -iabadvertisingplugin.swf*. -# /ia/ads/* (easylistchina+easylist.txt: 14597) -/(.*/)?ia/ads/.* -# /i_ads. (easylistchina+easylist.txt: 14596) -/(.*/)?i_ads\. -# /i/adv/* (easylistchina+easylist.txt: 14595) -/(.*/)?i/adv/.* -# /i/ads/* (easylistchina+easylist.txt: 14594) -/(.*/)?i/ads/.* -# /hubxt.*/js/ht.js (easylistchina+easylist.txt: 14593) -/(.*/)?hubxt\..*/js/ht\.js -hubxt.*./(.*/)?js/ht\.js -# /hubxt.*/js/eht.js? (easylistchina+easylist.txt: 14592) -/(.*/)?hubxt\..*/js/eht\.js\? -hubxt.*./(.*/)?js/eht\.js\? -# /httpads/* (easylistchina+easylist.txt: 14591) -/(.*/)?httpads/.* -# /htmlads/* (easylistchina+easylist.txt: 14590) -/(.*/)?htmlads/.* -# /html/sponsors/* (easylistchina+easylist.txt: 14589) -/(.*/)?html/sponsors/.* -# /html/ads_ (easylistchina+easylist.txt: 14588) -/(.*/)?html/ads_ -# /html/ads/* (easylistchina+easylist.txt: 14587) -/(.*/)?html/ads/.* -# /html/ad/* (easylistchina+easylist.txt: 14586) -/(.*/)?html/ad/.* -# /html/ad. (easylistchina+easylist.txt: 14585) -/(.*/)?html/ad\. -# /html.ng/* (easylistchina+easylist.txt: 14584) -/(.*/)?html\.ng/.* -html.ng/.* -# /ht.js?site_ (easylistchina+easylist.txt: 14583) -/(.*/)?ht\.js\?site_ -# /hpcwire/ads/* (easylistchina+easylist.txt: 14582) -/(.*/)?hpcwire/ads/.* -# /hoverad. (easylistchina+easylist.txt: 14581) -/(.*/)?hoverad\. -hoverad.*. -# /houseads? (easylistchina+easylist.txt: 14580) -/(.*/)?houseads\? -# /houseads/* (easylistchina+easylist.txt: 14579) -/(.*/)?houseads/.* -# /houseads. (easylistchina+easylist.txt: 14578) -/(.*/)?houseads\. -houseads.*. -# /housead_ (easylistchina+easylist.txt: 14577) -/(.*/)?housead_ -# /housead/* (easylistchina+easylist.txt: 14576) -/(.*/)?housead/.* -# /housead. (easylistchina+easylist.txt: 14575) -/(.*/)?housead\. -housead.*. -# /house_ads/* (easylistchina+easylist.txt: 14574) -/(.*/)?house_ads/.* -# /house_ad_ (easylistchina+easylist.txt: 14573) -/(.*/)?house_ad_ -# /house_ad- (easylistchina+easylist.txt: 14572) -/(.*/)?house_ad- -# /house-ads/* (easylistchina+easylist.txt: 14571) -/(.*/)?house-ads/.* -# /house-ad/* (easylistchina+easylist.txt: 14570) -/(.*/)?house-ad/.* -# /house-ad. (easylistchina+easylist.txt: 14569) -/(.*/)?house-ad\. -house-ad.*. -# /hostkey-ad. (easylistchina+easylist.txt: 14568) -/(.*/)?hostkey-ad\. -hostkey-ad.*. -# /hosting/ads/* (easylistchina+easylist.txt: 14567) -/(.*/)?hosting/ads/.* -# /hostgator-ad. (easylistchina+easylist.txt: 14566) -/(.*/)?hostgator-ad\. -hostgator-ad.*. -# /hostedbannerads. (easylistchina+easylist.txt: 14565) -/(.*/)?hostedbannerads\. -hostedbannerads.*. -# /hostedads. (easylistchina+easylist.txt: 14564) -/(.*/)?hostedads\. -hostedads.*. -# /horizontalAd. (easylistchina+easylist.txt: 14563) -/(.*/)?horizontalAd\. -horizontalAd.*. -# /horizontal_advert_ (easylistchina+easylist.txt: 14562) -/(.*/)?horizontal_advert_ -# /HompageStickyAd. (easylistchina+easylist.txt: 14561) -/(.*/)?HompageStickyAd\. -HompageStickyAd.*. -# /HomeStaticAds/* (easylistchina+easylist.txt: 14560) -/(.*/)?HomeStaticAds/.* -# /homeslideadtop/* (easylistchina+easylist.txt: 14559) -/(.*/)?homeslideadtop/.* -# /homepageadvertright. (easylistchina+easylist.txt: 14558) -/(.*/)?homepageadvertright\. -homepageadvertright.*. -# /homepage_ad_ (easylistchina+easylist.txt: 14556) -/(.*/)?homepage_ad_ -# /homepage/ads/* (easylistchina+easylist.txt: 14555) -/(.*/)?homepage/ads/.* -# /homepage-ads/* (easylistchina+easylist.txt: 14554) -/(.*/)?homepage-ads/.* -# /homeoutside/ads/* (easylistchina+easylist.txt: 14553) -/(.*/)?homeoutside/ads/.* -# /home_adv. (easylistchina+easylist.txt: 14552) -/(.*/)?home_adv\. -# /home30/ad. (easylistchina+easylist.txt: 14551) -/(.*/)?home30/ad\. -# /home/sponsor_ (easylistchina+easylist.txt: 14550) -/(.*/)?home/sponsor_ -# /home/ads_ (easylistchina+easylist.txt: 14549) -/(.*/)?home/ads_ -# /home/ads/* (easylistchina+easylist.txt: 14548) -/(.*/)?home/ads/.* -# /home/ads- (easylistchina+easylist.txt: 14547) -/(.*/)?home/ads- -# /home/ad_ (easylistchina+easylist.txt: 14546) -/(.*/)?home/ad_ -# /home/_ads (easylistchina+easylist.txt: 14545) -/(.*/)?home/_ads -# /holl_ad. (easylistchina+easylist.txt: 14544) -/(.*/)?holl_ad\. -# /hitbar_ad_ (easylistchina+easylist.txt: 14543) -/(.*/)?hitbar_ad_ -# /hikaku/banner/* (easylistchina+easylist.txt: 14542) -/(.*/)?hikaku/banner/.* -# /hiadone_ (easylistchina+easylist.txt: 14541) -/(.*/)?hiadone_ -# /Heat_Ad. (easylistchina+easylist.txt: 14540) -/(.*/)?Heat_Ad\. -# /headvert. (easylistchina+easylist.txt: 14539) -/(.*/)?headvert\. -headvert.*. -# /headermktgpromoads. (easylistchina+easylist.txt: 14538) -/(.*/)?headermktgpromoads\. -headermktgpromoads.*. -# /headerAdvertismentTab. (easylistchina+easylist.txt: 14537) -/(.*/)?headerAdvertismentTab\. -headerAdvertismentTab.*. -# /headerads1. (easylistchina+easylist.txt: 14536) -/(.*/)?headerads1\. -headerads1.*. -# /headerads. (easylistchina+easylist.txt: 14535) -/(.*/)?headerads\. -headerads.*. -# /headeradd2. (easylistchina+easylist.txt: 14534) -/(.*/)?headeradd2\. -headeradd2.*. -# /headerad. (easylistchina+easylist.txt: 14533) -/(.*/)?headerad\. -headerad.*. -# /header_ads_ (easylistchina+easylist.txt: 14532) -/(.*/)?header_ads_ -# /header_ad_ (easylistchina+easylist.txt: 14531) -/(.*/)?header_ad_ -# /header-ad. (easylistchina+easylist.txt: 14530) -/(.*/)?header-ad\. -header-ad.*. -# /hdadvertisment- (easylistchina+easylist.txt: 14529) -/(.*/)?hdadvertisment- -hdadvertisment-*. -# /hcm_ads/* (easylistchina+easylist.txt: 14528) -/(.*/)?hcm_ads/.* -# /Handlers/Ads. (easylistchina+easylist.txt: 14527) -/(.*/)?Handlers/Ads\. -# /hads- (easylistchina+easylist.txt: 14526) -/(.*/)?hads- -hads-*. -# /gutterAd. (easylistchina+easylist.txt: 14525) -/(.*/)?gutterAd\. -gutterAd.*. -# /GujAd/* (easylistchina+easylist.txt: 14524) -/(.*/)?GujAd/.* -# /gujAd. (easylistchina+easylist.txt: 14523) -/(.*/)?gujAd\. -gujAd.*. -# /guardrailad_ (easylistchina+easylist.txt: 14522) -/(.*/)?guardrailad_ -# /guardianleader. (easylistchina+easylist.txt: 14521) -/(.*/)?guardianleader\. -guardianleader.*. -# /gtv_ads. (easylistchina+easylist.txt: 14520) -/(.*/)?gtv_ads\. -# /gtags/pin_tag. (easylistchina+easylist.txt: 14519) -/(.*/)?gtags/pin_tag\. -# /gt6skyadtop. (easylistchina+easylist.txt: 14518) -/(.*/)?gt6skyadtop\. -gt6skyadtop.*. -# /groupon/ads/* (easylistchina+easylist.txt: 14517) -/(.*/)?groupon/ads/.* -# /grid-ad. (easylistchina+easylist.txt: 14516) -/(.*/)?grid-ad\. -grid-ad.*. -# /graphics/ads/* (easylistchina+easylist.txt: 14515) -/(.*/)?graphics/ads/.* -# /graphics/ad_ (easylistchina+easylist.txt: 14514) -/(.*/)?graphics/ad_ -# /gpt_ads- (easylistchina+easylist.txt: 14513) -/(.*/)?gpt_ads- -# /googlempu. (easylistchina+easylist.txt: 14512) -/(.*/)?googlempu\. -googlempu.*. -# /googleleads. (easylistchina+easylist.txt: 14511) -/(.*/)?googleleads\. -googleleads.*. -# /googleleader. (easylistchina+easylist.txt: 14510) -/(.*/)?googleleader\. -googleleader.*. -# /googleheadad. (easylistchina+easylist.txt: 14509) -/(.*/)?googleheadad\. -googleheadad.*. -# /googlecontextualads. (easylistchina+easylist.txt: 14508) -/(.*/)?googlecontextualads\. -googlecontextualads.*. -# /googleafvadrenderer. (easylistchina+easylist.txt: 14507) -/(.*/)?googleafvadrenderer\. -googleafvadrenderer.*. -# /googleafs. (easylistchina+easylist.txt: 14506) -/(.*/)?googleafs\. -googleafs.*. -# /googleafc. (easylistchina+easylist.txt: 14505) -/(.*/)?googleafc\. -googleafc.*. -# /googleadunit? (easylistchina+easylist.txt: 14504) -/(.*/)?googleadunit\? -# /googleAdTaggingSubSec. (easylistchina+easylist.txt: 14503) -/(.*/)?googleAdTaggingSubSec\. -googleAdTaggingSubSec.*. -# /googleadsense. (easylistchina+easylist.txt: 14502) -/(.*/)?googleadsense\. -googleadsense.*. -# /googleAdScripts. (easylistchina+easylist.txt: 14501) -/(.*/)?googleAdScripts\. -googleAdScripts.*. -# /googleadsafs_ (easylistchina+easylist.txt: 14500) -/(.*/)?googleadsafs_ -# /googleadsafc_ (easylistchina+easylist.txt: 14499) -/(.*/)?googleadsafc_ -# /googleads_ (easylistchina+easylist.txt: 14498) -/(.*/)?googleads_ -# /googleads3widetext. (easylistchina+easylist.txt: 14497) -/(.*/)?googleads3widetext\. -googleads3widetext.*. -# /googleads2. (easylistchina+easylist.txt: 14496) -/(.*/)?googleads2\. -googleads2.*. -# /googleads1. (easylistchina+easylist.txt: 14495) -/(.*/)?googleads1\. -googleads1.*. -# /googleads/* (easylistchina+easylist.txt: 14494) -/(.*/)?googleads/.* -# /googleads. (easylistchina+easylist.txt: 14493) -/(.*/)?googleads\. -googleads.*. -# /googleads- (easylistchina+easylist.txt: 14492) -/(.*/)?googleads- -googleads-*. -# /googleadright. (easylistchina+easylist.txt: 14491) -/(.*/)?googleadright\. -googleadright.*. -# /googleadiframe_ (easylistchina+easylist.txt: 14490) -/(.*/)?googleadiframe_ -# /googleadhtml/* (easylistchina+easylist.txt: 14489) -/(.*/)?googleadhtml/.* -# /googleadhpbot. (easylistchina+easylist.txt: 14488) -/(.*/)?googleadhpbot\. -googleadhpbot.*. -# /googleadhp. (easylistchina+easylist.txt: 14487) -/(.*/)?googleadhp\. -googleadhp.*. -# /googleaddisplayframe. (easylistchina+easylist.txt: 14486) -/(.*/)?googleaddisplayframe\. -googleaddisplayframe.*. -# /googleaddfooter. (easylistchina+easylist.txt: 14485) -/(.*/)?googleaddfooter\. -googleaddfooter.*. -# /googleadcode. (easylistchina+easylist.txt: 14484) -/(.*/)?googleadcode\. -googleadcode.*. -# /GoogleAdBg. (easylistchina+easylist.txt: 14483) -/(.*/)?GoogleAdBg\. -GoogleAdBg.*. -# /googlead_ (easylistchina+easylist.txt: 14482) -/(.*/)?googlead_ -# /googlead336x280. (easylistchina+easylist.txt: 14481) -/(.*/)?googlead336x280\. -googlead336x280.*. -# /GoogleAd300. (easylistchina+easylist.txt: 14480) -/(.*/)?GoogleAd300\. -GoogleAd300.*. -# /googlead160. (easylistchina+easylist.txt: 14479) -/(.*/)?googlead160\. -googlead160.*. -# /googlead1. (easylistchina+easylist.txt: 14478) -/(.*/)?googlead1\. -googlead1.*. -# /googlead. (easylistchina+easylist.txt: 14477) -/(.*/)?googlead\. -googlead.*. -# /googlead- (easylistchina+easylist.txt: 14476) -/(.*/)?googlead- -googlead-*. -# /google_radlinks_ (easylistchina+easylist.txt: 14475) -/(.*/)?google_radlinks_ -# /google_lander2.js (easylistchina+easylist.txt: 14474) -/(.*/)?google_lander2\.js -# /google_caf.js? (easylistchina+easylist.txt: 14473) -/(.*/)?google_caf\.js\? -# /google_afs_widget/* (easylistchina+easylist.txt: 14472) -/(.*/)?google_afs_widget/.* -# /google_afs. (easylistchina+easylist.txt: 14471) -/(.*/)?google_afs\. -# /google_afc_ (easylistchina+easylist.txt: 14470) -/(.*/)?google_afc_ -# /google_afc. (easylistchina+easylist.txt: 14469) -/(.*/)?google_afc\. -# /google_adv/* (easylistchina+easylist.txt: 14468) -/(.*/)?google_adv/.* -# /google_ads_ (easylistchina+easylist.txt: 14467) -/(.*/)?google_ads_ -# /google_ads/* (easylistchina+easylist.txt: 14466) -/(.*/)?google_ads/.* -# /google_ads. (easylistchina+easylist.txt: 14465) -/(.*/)?google_ads\. -# /google_ad_ (easylistchina+easylist.txt: 14464) -/(.*/)?google_ad_ -# /google_ad. (easylistchina+easylist.txt: 14463) -/(.*/)?google_ad\. -# /google728. (easylistchina+easylist.txt: 14462) -/(.*/)?google728\. -google728.*. -# /google160. (easylistchina+easylist.txt: 14461) -/(.*/)?google160\. -google160.*. -# /google/adv. (easylistchina+easylist.txt: 14460) -/(.*/)?google/adv\. -# /google/ad? (easylistchina+easylist.txt: 14459) -/(.*/)?google/ad\? -# /google-afc. (easylistchina+easylist.txt: 14458) -/(.*/)?google-afc\. -google-afc.*. -# /google-afc- (easylistchina+easylist.txt: 14457) -/(.*/)?google-afc- -google-afc-*. -# /google-adwords (easylistchina+easylist.txt: 14456) -/(.*/)?google-adwords -google-adwords*. -# /google-adverts- (easylistchina+easylist.txt: 14455) -/(.*/)?google-adverts- -google-adverts-*. -# /google-adsense. (easylistchina+easylist.txt: 14454) -/(.*/)?google-adsense\. -google-adsense.*. -# /google-adsense- (easylistchina+easylist.txt: 14453) -/(.*/)?google-adsense- -google-adsense-*. -# /google-ads/* (easylistchina+easylist.txt: 14452) -/(.*/)?google-ads/.* -# /google-ads. (easylistchina+easylist.txt: 14451) -/(.*/)?google-ads\. -google-ads.*. -# /google-ad? (easylistchina+easylist.txt: 14450) -/(.*/)?google-ad\? -# /google-ad- (easylistchina+easylist.txt: 14449) -/(.*/)?google-ad- -google-ad-*. -# /googad300by600. (easylistchina+easylist.txt: 14448) -/(.*/)?googad300by600\. -googad300by600.*. -# /globalbannerad. (easylistchina+easylist.txt: 14447) -/(.*/)?globalbannerad\. -globalbannerad.*. -# /globaladprostyles. (easylistchina+easylist.txt: 14446) -/(.*/)?globaladprostyles\. -globaladprostyles.*. -# /globalad. (easylistchina+easylist.txt: 14445) -/(.*/)?globalad\. -globalad.*. -# /global/ads/* (easylistchina+easylist.txt: 14444) -/(.*/)?global/ads/.* -# /global/ads. (easylistchina+easylist.txt: 14443) -/(.*/)?global/ads\. -# /global/ad/* (easylistchina+easylist.txt: 14442) -/(.*/)?global/ad/.* -# /global-ads_ (easylistchina+easylist.txt: 14441) -/(.*/)?global-ads_ -# /glam_ads. (easylistchina+easylist.txt: 14440) -/(.*/)?glam_ads\. -# /glam728. (easylistchina+easylist.txt: 14439) -/(.*/)?glam728\. -glam728.*. -# /glam300. (easylistchina+easylist.txt: 14438) -/(.*/)?glam300\. -glam300.*. -# /glam160. (easylistchina+easylist.txt: 14437) -/(.*/)?glam160\. -glam160.*. -# /gifs/ads/* (easylistchina+easylist.txt: 14436) -/(.*/)?gifs/ads/.* -# /ggadsense. (easylistchina+easylist.txt: 14435) -/(.*/)?ggadsense\. -ggadsense.*. -# /gfx/ads/* (easylistchina+easylist.txt: 14434) -/(.*/)?gfx/ads/.* -# /gfx/ad/* (easylistchina+easylist.txt: 14433) -/(.*/)?gfx/ad/.* -# /gexternalad. (easylistchina+easylist.txt: 14432) -/(.*/)?gexternalad\. -gexternalad.*. -# /getwebsitead/* (easylistchina+easylist.txt: 14431) -/(.*/)?getwebsitead/.* -# /getvideoad. (easylistchina+easylist.txt: 14430) -/(.*/)?getvideoad\. -getvideoad.*. -# /getvdopiaads. (easylistchina+easylist.txt: 14429) -/(.*/)?getvdopiaads\. -getvdopiaads.*. -# /GetVASTAd? (easylistchina+easylist.txt: 14428) -/(.*/)?GetVASTAd\? -# /getTextAD. (easylistchina+easylist.txt: 14427) -/(.*/)?getTextAD\. -getTextAD.*. -# /getsponslinksauto. (easylistchina+easylist.txt: 14426) -/(.*/)?getsponslinksauto\. -getsponslinksauto.*. -# /getsponslinks. (easylistchina+easylist.txt: 14425) -/(.*/)?getsponslinks\. -getsponslinks.*. -# /getsad.php? (easylistchina+easylist.txt: 14424) -/(.*/)?getsad\.php\? -# /getrcmd.js? (easylistchina+easylist.txt: 14423) -/(.*/)?getrcmd\.js\? -# /getmyad/* (easylistchina+easylist.txt: 14422) -/(.*/)?getmyad/.* -# /getmdhlink. (easylistchina+easylist.txt: 14421) -/(.*/)?getmdhlink\. -getmdhlink.*. -# /getmdhlayer. (easylistchina+easylist.txt: 14420) -/(.*/)?getmdhlayer\. -getmdhlayer.*. -# /getmarketplaceads. (easylistchina+easylist.txt: 14419) -/(.*/)?getmarketplaceads\. -getmarketplaceads.*. -# /getJsonAds? (easylistchina+easylist.txt: 14418) -/(.*/)?getJsonAds\? -# /getinlineads/* (easylistchina+easylist.txt: 14417) -/(.*/)?getinlineads/.* -# /gethalfpagead. (easylistchina+easylist.txt: 14416) -/(.*/)?gethalfpagead\. -gethalfpagead.*. -# /getfeaturedadsforshow. (easylistchina+easylist.txt: 14415) -/(.*/)?getfeaturedadsforshow\. -getfeaturedadsforshow.*. -# /getdigitalad/* (easylistchina+easylist.txt: 14414) -/(.*/)?getdigitalad/.* -# /getbanner.php? (easylistchina+easylist.txt: 14413) -/(.*/)?getbanner\.php\? -# /getbanner.cfm? (easylistchina+easylist.txt: 14412) -/(.*/)?getbanner\.cfm\? -# /getban.php? (easylistchina+easylist.txt: 14411) -/(.*/)?getban\.php\? -# /getarticleadvertimageservlet? (easylistchina+easylist.txt: 14410) -/(.*/)?getarticleadvertimageservlet\? -# /GetADVOverlay. (easylistchina+easylist.txt: 14409) -/(.*/)?GetADVOverlay\. -GetADVOverlay.*. -# /getadverts? (easylistchina+easylist.txt: 14408) -/(.*/)?getadverts\? -# /getadvertiserimage. (easylistchina+easylist.txt: 14407) -/(.*/)?getadvertiserimage\. -getadvertiserimage.*. -# /getAdvertisement^ (easylistchina+easylist.txt: 14406) -/(.*/)?getAdvertisement[^\w%.-] -# /getadvertimageservlet? (easylistchina+easylist.txt: 14405) -/(.*/)?getadvertimageservlet\? -# /getads| (easylistchina+easylist.txt: 14404) -/(.*/)?getads$ -# /getAdsForClient? (easylistchina+easylist.txt: 14403) -/(.*/)?getAdsForClient\? -# /getadsettingsjs? (easylistchina+easylist.txt: 14402) -/(.*/)?getadsettingsjs\? -# /getadserver. (easylistchina+easylist.txt: 14401) -/(.*/)?getadserver\. -getadserver.*. -# /getads? (easylistchina+easylist.txt: 14400) -/(.*/)?getads\? -# /getads/* (easylistchina+easylist.txt: 14399) -/(.*/)?getads/.* -# /getads. (easylistchina+easylist.txt: 14398) -/(.*/)?getads\. -getads.*. -# /getads- (easylistchina+easylist.txt: 14397) -/(.*/)?getads- -getads-*. -# /getadframe. (easylistchina+easylist.txt: 14396) -/(.*/)?getadframe\. -getadframe.*. -# /GetAdForCallBack? (easylistchina+easylist.txt: 14395) -/(.*/)?GetAdForCallBack\? -# /getadds. (easylistchina+easylist.txt: 14394) -/(.*/)?getadds\. -getadds.*. -# /getadcontent. (easylistchina+easylist.txt: 14393) -/(.*/)?getadcontent\. -getadcontent.*. -# /getad? (easylistchina+easylist.txt: 14392) -/(.*/)?getad\? -# /getad/* (easylistchina+easylist.txt: 14391) -/(.*/)?getad/.* -# /getad. (easylistchina+easylist.txt: 14390) -/(.*/)?getad\. -getad.*. -# /get_banner.asp? (easylistchina+easylist.txt: 14389) -/(.*/)?get_banner\.asp\? -# /get_ads/* (easylistchina+easylist.txt: 14388) -/(.*/)?get_ads/.* -# /get_ads. (easylistchina+easylist.txt: 14387) -/(.*/)?get_ads\. -# /get_ad_ (easylistchina+easylist.txt: 14386) -/(.*/)?get_ad_ -# /get/ad? (easylistchina+easylist.txt: 14385) -/(.*/)?get/ad\? -# /get/ad/* (easylistchina+easylist.txt: 14384) -/(.*/)?get/ad/.* -# /get/ad. (easylistchina+easylist.txt: 14383) -/(.*/)?get/ad\. -# /get.ad? (easylistchina+easylist.txt: 14382) -/(.*/)?get\.ad\? -# /get-advert- (easylistchina+easylist.txt: 14380) -/(.*/)?get-advert- -get-advert-*. -# /get-ad. (easylistchina+easylist.txt: 14379) -/(.*/)?get-ad\. -get-ad.*. -# /ges_ads/* (easylistchina+easylist.txt: 14378) -/(.*/)?ges_ads/.* -# /GeoDynBanner.php?wmid= (easylistchina+easylist.txt: 14377) -/(.*/)?GeoDynBanner\.php\?wmid= -# /geobox.html (easylistchina+easylist.txt: 14376) -/(.*/)?geobox\.html -geobox.html*. -# /geoad/* (easylistchina+easylist.txt: 14375) -/(.*/)?geoad/.* -# /geo_banner.htm? (easylistchina+easylist.txt: 14374) -/(.*/)?geo_banner\.htm\? -# /geo/ads. (easylistchina+easylist.txt: 14373) -/(.*/)?geo/ads\. -# /geo-ads_ (easylistchina+easylist.txt: 14372) -/(.*/)?geo-ads_ -# /genericrichmediabannerad/* (easylistchina+easylist.txt: 14371) -/(.*/)?genericrichmediabannerad/.* -# /generic.ads. (easylistchina+easylist.txt: 14370) -/(.*/)?generic\.ads\. -generic.ads.*. -# /generateplayerads. (easylistchina+easylist.txt: 14369) -/(.*/)?generateplayerads\. -generateplayerads.*. -# /generated/key.js? (easylistchina+easylist.txt: 14368) -/(.*/)?generated/key\.js\? -# /generateadtag. (easylistchina+easylist.txt: 14367) -/(.*/)?generateadtag\. -generateadtag.*. -# /generate_ads. (easylistchina+easylist.txt: 14366) -/(.*/)?generate_ads\. -# /generate_ad. (easylistchina+easylist.txt: 14365) -/(.*/)?generate_ad\. -# /general/ads (easylistchina+easylist.txt: 14364) -/(.*/)?general/ads -# /general-ad- (easylistchina+easylist.txt: 14363) -/(.*/)?general-ad- -general-ad-*. -# /genads/* (easylistchina+easylist.txt: 14362) -/(.*/)?genads/.* -# /gen_ads_ (easylistchina+easylist.txt: 14361) -/(.*/)?gen_ads_ -# /geitonpop. (easylistchina+easylist.txt: 14360) -/(.*/)?geitonpop\. -geitonpop.*. -# /gazette/ads/* (easylistchina+easylist.txt: 14359) -/(.*/)?gazette/ads/.* -# /gatewayAds. (easylistchina+easylist.txt: 14358) -/(.*/)?gatewayAds\. -gatewayAds.*. -# /gate-ad- (easylistchina+easylist.txt: 14357) -/(.*/)?gate-ad- -gate-ad-*. -# /gannett/ads/* (easylistchina+easylist.txt: 14356) -/(.*/)?gannett/ads/.* -# /GAN_Ads/* (easylistchina+easylist.txt: 14355) -/(.*/)?GAN_Ads/.* -# /gamersad. (easylistchina+easylist.txt: 14354) -/(.*/)?gamersad\. -gamersad.*. -# /gameadsync. (easylistchina+easylist.txt: 14353) -/(.*/)?gameadsync\. -gameadsync.*. -# /gamead/* (easylistchina+easylist.txt: 14352) -/(.*/)?gamead/.* -# /game-ads. (easylistchina+easylist.txt: 14351) -/(.*/)?game-ads\. -game-ads.*. -# /gamads/* (easylistchina+easylist.txt: 14350) -/(.*/)?gamads/.* -# /gam_ads. (easylistchina+easylist.txt: 14349) -/(.*/)?gam_ads\. -# /gam_ad_ (easylistchina+easylist.txt: 14348) -/(.*/)?gam_ad_ -# /gam_ad. (easylistchina+easylist.txt: 14347) -/(.*/)?gam_ad\. -# /gam.html? (easylistchina+easylist.txt: 14346) -/(.*/)?gam\.html\? -# /galleryad. (easylistchina+easylist.txt: 14345) -/(.*/)?galleryad\. -galleryad.*. -# /gafv_adapter. (easylistchina+easylist.txt: 14344) -/(.*/)?gafv_adapter\. -# /gafsads? (easylistchina+easylist.txt: 14343) -/(.*/)?gafsads\? -# /gafc.js (easylistchina+easylist.txt: 14342) -/(.*/)?gafc\.js -gafc.js*. -# /gads.js (easylistchina+easylist.txt: 14341) -/(.*/)?gads\.js -gads.js*. -# /gads.html (easylistchina+easylist.txt: 14340) -/(.*/)?gads\.html -gads.html*. -# /gadgets/ad/* (easylistchina+easylist.txt: 14339) -/(.*/)?gadgets/ad/.* -# /fwadmanager. (easylistchina+easylist.txt: 14338) -/(.*/)?fwadmanager\. -fwadmanager.*. -# /fuseads/* (easylistchina+easylist.txt: 14337) -/(.*/)?fuseads/.* -# /fulladbazee. (easylistchina+easylist.txt: 14336) -/(.*/)?fulladbazee\. -fulladbazee.*. -# /fullad. (easylistchina+easylist.txt: 14335) -/(.*/)?fullad\. -fullad.*. -# /full/ads/* (easylistchina+easylist.txt: 14334) -/(.*/)?full/ads/.* -# /ftp/adv/* (easylistchina+easylist.txt: 14333) -/(.*/)?ftp/adv/.* -# /frontpagead/* (easylistchina+easylist.txt: 14332) -/(.*/)?frontpagead/.* -# /frontend/ads/* (easylistchina+easylist.txt: 14331) -/(.*/)?frontend/ads/.* -# /frnads. (easylistchina+easylist.txt: 14330) -/(.*/)?frnads\. -frnads.*. -# /friendfinder_ (easylistchina+easylist.txt: 14329) -/(.*/)?friendfinder_ -# /frequencyads. (easylistchina+easylist.txt: 14328) -/(.*/)?frequencyads\. -frequencyads.*. -# /freead2. (easylistchina+easylist.txt: 14327) -/(.*/)?freead2\. -freead2.*. -# /freead. (easylistchina+easylist.txt: 14326) -/(.*/)?freead\. -freead.*. -# /frameadsz. (easylistchina+easylist.txt: 14325) -/(.*/)?frameadsz\. -frameadsz.*. -# /frameads_ (easylistchina+easylist.txt: 14324) -/(.*/)?frameads_ -# /frameads1. (easylistchina+easylist.txt: 14323) -/(.*/)?frameads1\. -frameads1.*. -# /frameads. (easylistchina+easylist.txt: 14322) -/(.*/)?frameads\. -frameads.*. -# /framead_ (easylistchina+easylist.txt: 14321) -/(.*/)?framead_ -# /framead/* (easylistchina+easylist.txt: 14320) -/(.*/)?framead/.* -# /framead. (easylistchina+easylist.txt: 14319) -/(.*/)?framead\. -framead.*. -# /framead- (easylistchina+easylist.txt: 14318) -/(.*/)?framead- -framead-*. -# /frame_ads_ (easylistchina+easylist.txt: 14317) -/(.*/)?frame_ads_ -# /forums/ad/* (easylistchina+easylist.txt: 14316) -/(.*/)?forums/ad/.* -# /forum/ads/* (easylistchina+easylist.txt: 14315) -/(.*/)?forum/ads/.* -# /forads. (easylistchina+easylist.txt: 14314) -/(.*/)?forads\. -forads.*. -# /footertextads. (easylistchina+easylist.txt: 14313) -/(.*/)?footertextads\. -footertextads.*. -# /footerads/* (easylistchina+easylist.txt: 14312) -/(.*/)?footerads/.* -# /footerads. (easylistchina+easylist.txt: 14311) -/(.*/)?footerads\. -footerads.*. -# /footerad? (easylistchina+easylist.txt: 14310) -/(.*/)?footerad\? -# /footerad. (easylistchina+easylist.txt: 14309) -/(.*/)?footerad\. -footerad.*. -# /footer_ads. (easylistchina+easylist.txt: 14308) -/(.*/)?footer_ads\. -# /footer_ad_ (easylistchina+easylist.txt: 14307) -/(.*/)?footer_ad_ -# /footer_ad. (easylistchina+easylist.txt: 14306) -/(.*/)?footer_ad\. -# /footer-ads/* (easylistchina+easylist.txt: 14305) -/(.*/)?footer-ads/.* -# /footer-ad. (easylistchina+easylist.txt: 14304) -/(.*/)?footer-ad\. -footer-ad.*. -# /footer-ad- (easylistchina+easylist.txt: 14303) -/(.*/)?footer-ad- -footer-ad-*. -# /footad. (easylistchina+easylist.txt: 14302) -/(.*/)?footad\. -footad.*. -# /footad- (easylistchina+easylist.txt: 14301) -/(.*/)?footad- -footad-*. -# /fn_ads. (easylistchina+easylist.txt: 14300) -/(.*/)?fn_ads\. -# /flyers/ads/* (easylistchina+easylist.txt: 14299) -/(.*/)?flyers/ads/.* -# /flyads/* (easylistchina+easylist.txt: 14298) -/(.*/)?flyads/.* -# /flyad/* (easylistchina+easylist.txt: 14297) -/(.*/)?flyad/.* -# /flyad. (easylistchina+easylist.txt: 14296) -/(.*/)?flyad\. -flyad.*. -# /flvads/* (easylistchina+easylist.txt: 14295) -/(.*/)?flvads/.* -# /flvad_ (easylistchina+easylist.txt: 14294) -/(.*/)?flvad_ -# /flv-ad- (easylistchina+easylist.txt: 14293) -/(.*/)?flv-ad- -flv-ad-*. -# /floaty_rotator (easylistchina+easylist.txt: 14292) -/(.*/)?floaty_rotator -# /floatingads. (easylistchina+easylist.txt: 14291) -/(.*/)?floatingads\. -floatingads.*. -# /FloatingAd_ (easylistchina+easylist.txt: 14290) -/(.*/)?FloatingAd_ -# /floatingad. (easylistchina+easylist.txt: 14289) -/(.*/)?floatingad\. -floatingad.*. -# /floater_ad. (easylistchina+easylist.txt: 14288) -/(.*/)?floater_ad\. -# /floatadv. (easylistchina+easylist.txt: 14287) -/(.*/)?floatadv\. -floatadv.*. -# /floatads. (easylistchina+easylist.txt: 14286) -/(.*/)?floatads\. -floatads.*. -# /floatad_ (easylistchina+easylist.txt: 14285) -/(.*/)?floatad_ -# /float_ad. (easylistchina+easylist.txt: 14284) -/(.*/)?float_ad\. -# /float-ads/* (easylistchina+easylist.txt: 14283) -/(.*/)?float-ads/.* -# /flirt4free. (easylistchina+easylist.txt: 14282) -/(.*/)?flirt4free\. -flirt4free.*. -# /fliionosadcapture- (easylistchina+easylist.txt: 14281) -/(.*/)?fliionosadcapture- -fliionosadcapture-*. -# /flexads? (easylistchina+easylist.txt: 14280) -/(.*/)?flexads\? -# /fleshlightcash_ (easylistchina+easylist.txt: 14279) -/(.*/)?fleshlightcash_ -# /fleshlight. (easylistchina+easylist.txt: 14278) -/(.*/)?fleshlight\. -fleshlight.*. -# /flesh_banner (easylistchina+easylist.txt: 14277) -/(.*/)?flesh_banner -# /flatad. (easylistchina+easylist.txt: 14276) -/(.*/)?flatad\. -flatad.*. -# /flashpeelads/* (easylistchina+easylist.txt: 14275) -/(.*/)?flashpeelads/.* -# /flashads/* (easylistchina+easylist.txt: 14274) -/(.*/)?flashads/.* -# /flashads. (easylistchina+easylist.txt: 14273) -/(.*/)?flashads\. -flashads.*. -# /flashad3. (easylistchina+easylist.txt: 14272) -/(.*/)?flashad3\. -flashad3.*. -# /flashad. (easylistchina+easylist.txt: 14271) -/(.*/)?flashad\. -flashad.*. -# /flash_ads. (easylistchina+easylist.txt: 14270) -/(.*/)?flash_ads\. -# /flash/advertis (easylistchina+easylist.txt: 14269) -/(.*/)?flash/advertis -# /flash/ads/* (easylistchina+easylist.txt: 14268) -/(.*/)?flash/ads/.* -# /flash/ad_ (easylistchina+easylist.txt: 14267) -/(.*/)?flash/ad_ -# /flash/ad/* (easylistchina+easylist.txt: 14266) -/(.*/)?flash/ad/.* -# /flash-ads/* (easylistchina+easylist.txt: 14265) -/(.*/)?flash-ads/.* -# /flash-ads. (easylistchina+easylist.txt: 14264) -/(.*/)?flash-ads\. -flash-ads.*. -# /flag_ads. (easylistchina+easylist.txt: 14263) -/(.*/)?flag_ads\. -# /first-ad_ (easylistchina+easylist.txt: 14262) -/(.*/)?first-ad_ -# /finads. (easylistchina+easylist.txt: 14261) -/(.*/)?finads\. -finads.*. -# /fimserve. (easylistchina+easylist.txt: 14260) -/(.*/)?fimserve\. -fimserve.*. -# /files/ads/* (easylistchina+easylist.txt: 14258) -/(.*/)?files/ads/.* -# /files/ads- (easylistchina+easylist.txt: 14257) -/(.*/)?files/ads- -# /files/ad/* (easylistchina+easylist.txt: 14256) -/(.*/)?files/ad/.* -# /files/ad- (easylistchina+easylist.txt: 14255) -/(.*/)?files/ad- -# /file/ad. (easylistchina+easylist.txt: 14254) -/(.*/)?file/ad\. -# /feedads. (easylistchina+easylist.txt: 14253) -/(.*/)?feedads\. -feedads.*. -# /featuredadshome. (easylistchina+easylist.txt: 14252) -/(.*/)?featuredadshome\. -featuredadshome.*. -# /fea_ads. (easylistchina+easylist.txt: 14251) -/(.*/)?fea_ads\. -# /fc_ads. (easylistchina+easylist.txt: 14250) -/(.*/)?fc_ads\. -# /fbads/* (easylistchina+easylist.txt: 14249) -/(.*/)?fbads/.* -# /fatads. (easylistchina+easylist.txt: 14248) -/(.*/)?fatads\. -fatads.*. -# /fastclick728. (easylistchina+easylist.txt: 14247) -/(.*/)?fastclick728\. -fastclick728.*. -# /fastclick160. (easylistchina+easylist.txt: 14246) -/(.*/)?fastclick160\. -fastclick160.*. -# /facebooksex. (easylistchina+easylist.txt: 14244) -/(.*/)?facebooksex\. -facebooksex.*. -# /facebookaff2/* (easylistchina+easylist.txt: 14243) -/(.*/)?facebookaff2/.* -# /facebookaff/* (easylistchina+easylist.txt: 14242) -/(.*/)?facebookaff/.* -# /eyewondermanagement28. (easylistchina+easylist.txt: 14241) -/(.*/)?eyewondermanagement28\. -eyewondermanagement28.*. -# /eyewondermanagement. (easylistchina+easylist.txt: 14240) -/(.*/)?eyewondermanagement\. -eyewondermanagement.*. -# /externalhtmladrenderer. (easylistchina+easylist.txt: 14239) -/(.*/)?externalhtmladrenderer\. -externalhtmladrenderer.*. -# /externalads/* (easylistchina+easylist.txt: 14238) -/(.*/)?externalads/.* -# /ExternalAdNetworkViewlogLogServlet? (easylistchina+easylist.txt: 14237) -/(.*/)?ExternalAdNetworkViewlogLogServlet\? -# /externalad. (easylistchina+easylist.txt: 14236) -/(.*/)?externalad\. -externalad.*. -# /external_ads. (easylistchina+easylist.txt: 14235) -/(.*/)?external_ads\. -# /external/ads/* (easylistchina+easylist.txt: 14234) -/(.*/)?external/ads/.* -# /external/ad/* (easylistchina+easylist.txt: 14233) -/(.*/)?external/ad/.* -# /external/ad. (easylistchina+easylist.txt: 14232) -/(.*/)?external/ad\. -# /extendedadvert. (easylistchina+easylist.txt: 14231) -/(.*/)?extendedadvert\. -extendedadvert.*. -# /extadv/* (easylistchina+easylist.txt: 14230) -/(.*/)?extadv/.* -# /ext_ads. (easylistchina+easylist.txt: 14229) -/(.*/)?ext_ads\. -# /ext/ads/* (easylistchina+easylist.txt: 14228) -/(.*/)?ext/ads/.* -# /exports/tour_20/* (easylistchina+easylist.txt: 14227) -/(.*/)?exports/tour_20/.* -# /expop.js (easylistchina+easylist.txt: 14225) -/(.*/)?expop\.js -expop.js*. -# /expandy-ads. (easylistchina+easylist.txt: 14224) -/(.*/)?expandy-ads\. -expandy-ads.*. -# /expandingads. (easylistchina+easylist.txt: 14223) -/(.*/)?expandingads\. -expandingads.*. -# /expandable_ad? (easylistchina+easylist.txt: 14222) -/(.*/)?expandable_ad\? -# /expandable_ad.php (easylistchina+easylist.txt: 14221) -/(.*/)?expandable_ad\.php -# /exoclickright3. (easylistchina+easylist.txt: 14220) -/(.*/)?exoclickright3\. -exoclickright3.*. -# /exoclickright2. (easylistchina+easylist.txt: 14219) -/(.*/)?exoclickright2\. -exoclickright2.*. -# /exoclickright1. (easylistchina+easylist.txt: 14218) -/(.*/)?exoclickright1\. -exoclickright1.*. -# /exoclickright. (easylistchina+easylist.txt: 14217) -/(.*/)?exoclickright\. -exoclickright.*. -# /exoclick. (easylistchina+easylist.txt: 14216) -/(.*/)?exoclick\. -exoclick.*. -# /exobanner. (easylistchina+easylist.txt: 14215) -/(.*/)?exobanner\. -exobanner.*. -# /exo120x60. (easylistchina+easylist.txt: 14214) -/(.*/)?exo120x60\. -exo120x60.*. -# /exitsplash. (easylistchina+easylist.txt: 14213) -/(.*/)?exitsplash\. -exitsplash.*. -# /exitpopup. (easylistchina+easylist.txt: 14212) -/(.*/)?exitpopup\. -exitpopup.*. -# /exitpopunder_ (easylistchina+easylist.txt: 14211) -/(.*/)?exitpopunder_ -# /exitpopunder. (easylistchina+easylist.txt: 14210) -/(.*/)?exitpopunder\. -exitpopunder.*. -# /exitpop. (easylistchina+easylist.txt: 14209) -/(.*/)?exitpop\. -exitpop.*. -# /exit_popup (easylistchina+easylist.txt: 14208) -/(.*/)?exit_popup -# /exchange_banner_ (easylistchina+easylist.txt: 14207) -/(.*/)?exchange_banner_ -# /excellence/ads/* (easylistchina+easylist.txt: 14206) -/(.*/)?excellence/ads/.* -# /event.ng/* (easylistchina+easylist.txt: 14205) -/(.*/)?event\.ng/.* -event.ng/.* -# /euads/* (easylistchina+easylist.txt: 14204) -/(.*/)?euads/.* -# /esi/ads/* (easylistchina+easylist.txt: 14202) -/(.*/)?esi/ads/.* -# /eshopoffer. (easylistchina+easylist.txt: 14201) -/(.*/)?eshopoffer\. -eshopoffer.*. -# /eros.htm (easylistchina+easylist.txt: 14200) -/(.*/)?eros\.htm -eros.htm*. -# /erobanner. (easylistchina+easylist.txt: 14199) -/(.*/)?erobanner\. -erobanner.*. -# /eroadvertorial3. (easylistchina+easylist.txt: 14198) -/(.*/)?eroadvertorial3\. -eroadvertorial3.*. -# /eroadvertorial2. (easylistchina+easylist.txt: 14197) -/(.*/)?eroadvertorial2\. -eroadvertorial2.*. -# /eroadvertising. (easylistchina+easylist.txt: 14196) -/(.*/)?eroadvertising\. -eroadvertising.*. -# /eroads. (easylistchina+easylist.txt: 14195) -/(.*/)?eroads\. -eroads.*. -# /eroad2. (easylistchina+easylist.txt: 14194) -/(.*/)?eroad2\. -eroad2.*. -# /eroad.php (easylistchina+easylist.txt: 14193) -/(.*/)?eroad\.php -eroad.php*. -# /ero_line_ (easylistchina+easylist.txt: 14192) -/(.*/)?ero_line_ -# /ero_hosted_ (easylistchina+easylist.txt: 14191) -/(.*/)?ero_hosted_ -# /ero.htm (easylistchina+easylist.txt: 14190) -/(.*/)?ero\.htm -ero.htm*. -# /ero-advertising. (easylistchina+easylist.txt: 14189) -/(.*/)?ero-advertising\. -ero-advertising.*. -# /ero-ads_ (easylistchina+easylist.txt: 14188) -/(.*/)?ero-ads_ -# /ero-ads- (easylistchina+easylist.txt: 14187) -/(.*/)?ero-ads- -ero-ads-*. -# /ero-1. (easylistchina+easylist.txt: 14186) -/(.*/)?ero-1\. -ero-1.*. -# /ept_in.php? (easylistchina+easylist.txt: 14185) -/(.*/)?ept_in\.php\? -# /eporner-banner- (easylistchina+easylist.txt: 14184) -/(.*/)?eporner-banner- -eporner-banner-*. -# /eplanningv4. (easylistchina+easylist.txt: 14183) -/(.*/)?eplanningv4\. -eplanningv4.*. -# /eng/ads/* (easylistchina+easylist.txt: 14182) -/(.*/)?eng/ads/.* -# /en/ads/* (easylistchina+easylist.txt: 14181) -/(.*/)?en/ads/.* -# /ems/ads. (easylistchina+easylist.txt: 14180) -/(.*/)?ems/ads\. -# /EmreAds. (easylistchina+easylist.txt: 14179) -/(.*/)?EmreAds\. -EmreAds.*. -# /emediatead. (easylistchina+easylist.txt: 14178) -/(.*/)?emediatead\. -emediatead.*. -# /embed_ad. (easylistchina+easylist.txt: 14177) -/(.*/)?embed_ad\. -# /emailads/* (easylistchina+easylist.txt: 14176) -/(.*/)?emailads/.* -# /eht.js?site_ (easylistchina+easylist.txt: 14175) -/(.*/)?eht\.js\?site_ -# /editable/ads/* (easylistchina+easylist.txt: 14174) -/(.*/)?editable/ads/.* -# /ecom/magnet. (easylistchina+easylist.txt: 14173) -/(.*/)?ecom/magnet\. -# /eco_ads/* (easylistchina+easylist.txt: 14172) -/(.*/)?eco_ads/.* -# /ebayad. (easylistchina+easylist.txt: 14171) -/(.*/)?ebayad\. -ebayad.*. -# /ebay_ads/* (easylistchina+easylist.txt: 14170) -/(.*/)?ebay_ads/.* -# /easyazon- (easylistchina+easylist.txt: 14169) -/(.*/)?easyazon- -easyazon-*. -# /easyadstrack. (easylistchina+easylist.txt: 14168) -/(.*/)?easyadstrack\. -easyadstrack.*. -# /easyads/* (easylistchina+easylist.txt: 14167) -/(.*/)?easyads/.* -# /easyads. (easylistchina+easylist.txt: 14166) -/(.*/)?easyads\. -easyads.*. -# /eas_tag.1.0.js (easylistchina+easylist.txt: 14165) -/(.*/)?eas_tag\.1\.0\.js -# /eas_fif. (easylistchina+easylist.txt: 14164) -/(.*/)?eas_fif\. -# /eas?cu=*;ord= (easylistchina+easylist.txt: 14163) -/(.*/)?eas\?cu=.*;ord= -# /eas?cu=*;cre= (easylistchina+easylist.txt: 14162) -/(.*/)?eas\?cu=.*;cre= -# /eas?camp=*;cre= (easylistchina+easylist.txt: 14161) -/(.*/)?eas\?camp=.*;cre= -# /eas?*^easformat= (easylistchina+easylist.txt: 14160) -/(.*/)?eas\?.*[^\w%.-]easformat= -# /eas-fif.htm (easylistchina+easylist.txt: 14159) -/(.*/)?eas-fif\.htm -eas-fif.htm*. -# /e-vertising/* (easylistchina+easylist.txt: 14158) -/(.*/)?e-vertising/.* -# /e-advertising/* (easylistchina+easylist.txt: 14157) -/(.*/)?e-advertising/.* -# /dynbanner/flash/* (easylistchina+easylist.txt: 14156) -/(.*/)?dynbanner/flash/.* -# /dynanews/ad- (easylistchina+easylist.txt: 14155) -/(.*/)?dynanews/ad- -# /dynamicvideoad? (easylistchina+easylist.txt: 14154) -/(.*/)?dynamicvideoad\? -# /dynamiccsad? (easylistchina+easylist.txt: 14153) -/(.*/)?dynamiccsad\? -# /dynamicad? (easylistchina+easylist.txt: 14152) -/(.*/)?dynamicad\? -# /DynamicAd/* (easylistchina+easylist.txt: 14151) -/(.*/)?DynamicAd/.* -# /dynamic_ads/* (easylistchina+easylist.txt: 14150) -/(.*/)?dynamic_ads/.* -# /dynamic/ads/* (easylistchina+easylist.txt: 14149) -/(.*/)?dynamic/ads/.* -# /dynamic-ad- (easylistchina+easylist.txt: 14148) -/(.*/)?dynamic-ad- -dynamic-ad-*. -# /dyn_banners_ (easylistchina+easylist.txt: 14147) -/(.*/)?dyn_banners_ -# /dyn_banner. (easylistchina+easylist.txt: 14146) -/(.*/)?dyn_banner\. -# /dxd/ads/* (easylistchina+easylist.txt: 14145) -/(.*/)?dxd/ads/.* -# /dtmads/* (easylistchina+easylist.txt: 14144) -/(.*/)?dtmads/.* -# /dtiadvert125x125. (easylistchina+easylist.txt: 14142) -/(.*/)?dtiadvert125x125\. -dtiadvert125x125.*. -# /dspads. (easylistchina+easylist.txt: 14141) -/(.*/)?dspads\. -dspads.*. -# /dsg/bnn/* (easylistchina+easylist.txt: 14140) -/(.*/)?dsg/bnn/.* -# /dropdown_ad. (easylistchina+easylist.txt: 14139) -/(.*/)?dropdown_ad\. -# /droelf.kit/a/* (easylistchina+easylist.txt: 14138) -/(.*/)?droelf\.kit/a/.* -droelf.kit/a/.* -# /drivingrevenue/* (easylistchina+easylist.txt: 14137) -/(.*/)?drivingrevenue/.* -# /driveragentad2. (easylistchina+easylist.txt: 14136) -/(.*/)?driveragentad2\. -driveragentad2.*. -# /driveragentad1. (easylistchina+easylist.txt: 14135) -/(.*/)?driveragentad1\. -driveragentad1.*. -# /drawad. (easylistchina+easylist.txt: 14134) -/(.*/)?drawad\. -drawad.*. -# /download/ads (easylistchina+easylist.txt: 14133) -/(.*/)?download/ads -# /download/ad/* (easylistchina+easylist.txt: 14132) -/(.*/)?download/ad/.* -# /download/ad. (easylistchina+easylist.txt: 14131) -/(.*/)?download/ad\. -# /downads. (easylistchina+easylist.txt: 14130) -/(.*/)?downads\. -downads.*. -# /doublepimp2.js (easylistchina+easylist.txt: 14129) -/(.*/)?doublepimp2\.js -doublepimp2.js*. -# /doubleclicktag. (easylistchina+easylist.txt: 14128) -/(.*/)?doubleclicktag\. -doubleclicktag.*. -# /doubleclickplugin. (easylistchina+easylist.txt: 14127) -/(.*/)?doubleclickplugin\. -doubleclickplugin.*. -# /doubleclickloader. (easylistchina+easylist.txt: 14126) -/(.*/)?doubleclickloader\. -doubleclickloader.*. -# /doubleclickinstreamad. (easylistchina+easylist.txt: 14125) -/(.*/)?doubleclickinstreamad\. -doubleclickinstreamad.*. -# /doubleclickcontainer. (easylistchina+easylist.txt: 14124) -/(.*/)?doubleclickcontainer\. -doubleclickcontainer.*. -# /doubleclickbannerad? (easylistchina+easylist.txt: 14123) -/(.*/)?doubleclickbannerad\? -# /doubleclickads? (easylistchina+easylist.txt: 14122) -/(.*/)?doubleclickads\? -# /doubleclickads/* (easylistchina+easylist.txt: 14121) -/(.*/)?doubleclickads/.* -# /doubleclickad. (easylistchina+easylist.txt: 14120) -/(.*/)?doubleclickad\. -doubleclickad.*. -# /doubleclick_ads/* (easylistchina+easylist.txt: 14119) -/(.*/)?doubleclick_ads/.* -# /doubleclick_ads. (easylistchina+easylist.txt: 14118) -/(.*/)?doubleclick_ads\. -# /doubleclick/iframe. (easylistchina+easylist.txt: 14117) -/(.*/)?doubleclick/iframe\. -# /doubleclick.swf (easylistchina+easylist.txt: 14116) -/(.*/)?doubleclick\.swf -doubleclick.swf*. -# /doubleclick.php (easylistchina+easylist.txt: 14115) -/(.*/)?doubleclick\.php -doubleclick.php*. -# /doubleclick.js (easylistchina+easylist.txt: 14114) -/(.*/)?doubleclick\.js -doubleclick.js*. -# /doubleclick.aspx (easylistchina+easylist.txt: 14113) -/(.*/)?doubleclick\.aspx -doubleclick.aspx*. -# /doors/ads/* (easylistchina+easylist.txt: 14112) -/(.*/)?doors/ads/.* -# /door/ads/* (easylistchina+easylist.txt: 14111) -/(.*/)?door/ads/.* -# /domainads/* (easylistchina+easylist.txt: 14110) -/(.*/)?domainads/.* -# /dnsads. (easylistchina+easylist.txt: 14109) -/(.*/)?dnsads\. -dnsads.*. -# /dns_ad/* (easylistchina+easylist.txt: 14108) -/(.*/)?dns_ad/.* -# /dne_ad. (easylistchina+easylist.txt: 14107) -/(.*/)?dne_ad\. -# /dmn-advert. (easylistchina+easylist.txt: 14106) -/(.*/)?dmn-advert\. -dmn-advert.*. -# /dlfeatads. (easylistchina+easylist.txt: 14105) -/(.*/)?dlfeatads\. -dlfeatads.*. -# /divad/* (easylistchina+easylist.txt: 14104) -/(.*/)?divad/.* -# /div-ads. (easylistchina+easylist.txt: 14103) -/(.*/)?div-ads\. -div-ads.*. -# /displaybanner/* (easylistchina+easylist.txt: 14102) -/(.*/)?displaybanner/.* -# /displayadsiframe. (easylistchina+easylist.txt: 14101) -/(.*/)?displayadsiframe\. -displayadsiframe.*. -# /displayads3. (easylistchina+easylist.txt: 14100) -/(.*/)?displayads3\. -displayads3.*. -# /displayads2. (easylistchina+easylist.txt: 14099) -/(.*/)?displayads2\. -displayads2.*. -# /displayads1. (easylistchina+easylist.txt: 14098) -/(.*/)?displayads1\. -displayads1.*. -# /displayads/* (easylistchina+easylist.txt: 14097) -/(.*/)?displayads/.* -# /displayads. (easylistchina+easylist.txt: 14096) -/(.*/)?displayads\. -displayads.*. -# /displayadleader. (easylistchina+easylist.txt: 14095) -/(.*/)?displayadleader\. -displayadleader.*. -# /displayadiframe. (easylistchina+easylist.txt: 14094) -/(.*/)?displayadiframe\. -displayadiframe.*. -# /displayadbanner_ (easylistchina+easylist.txt: 14093) -/(.*/)?displayadbanner_ -# /displayad? (easylistchina+easylist.txt: 14092) -/(.*/)?displayad\? -# /displayad/* (easylistchina+easylist.txt: 14091) -/(.*/)?displayad/.* -# /displayad. (easylistchina+easylist.txt: 14090) -/(.*/)?displayad\. -displayad.*. -# /display_ad (easylistchina+easylist.txt: 14089) -/(.*/)?display_ad -# /display?ad_ (easylistchina+easylist.txt: 14088) -/(.*/)?display\?ad_ -# /display.ad. (easylistchina+easylist.txt: 14087) -/(.*/)?display\.ad\. -display.ad.*. -# /display-ads/* (easylistchina+easylist.txt: 14086) -/(.*/)?display-ads/.* -# /display-ads- (easylistchina+easylist.txt: 14085) -/(.*/)?display-ads- -display-ads-*. -# /display-ad/* (easylistchina+easylist.txt: 14084) -/(.*/)?display-ad/.* -# /DispAd_ (easylistchina+easylist.txt: 14083) -/(.*/)?DispAd_ -# /discuss_ad/* (easylistchina+easylist.txt: 14082) -/(.*/)?discuss_ad/.* -# /directrev. (easylistchina+easylist.txt: 14081) -/(.*/)?directrev\. -directrev.*. -# /directadvert. (easylistchina+easylist.txt: 14080) -/(.*/)?directadvert\. -directadvert.*. -# /directads. (easylistchina+easylist.txt: 14079) -/(.*/)?directads\. -directads.*. -# /direct_ads. (easylistchina+easylist.txt: 14078) -/(.*/)?direct_ads\. -# /dinclinx.com/* (easylistchina+easylist.txt: 14077) -/(.*/)?dinclinx\.com/.* -dinclinx.com/.* -# /digg_ads_ (easylistchina+easylist.txt: 14076) -/(.*/)?digg_ads_ -# /digg_ads. (easylistchina+easylist.txt: 14075) -/(.*/)?digg_ads\. -# /digest/ads. (easylistchina+easylist.txt: 14074) -/(.*/)?digest/ads\. -# /dig_ad. (easylistchina+easylist.txt: 14073) -/(.*/)?dig_ad\. -# /dif/?cid (easylistchina+easylist.txt: 14072) -/(.*/)?dif/\?cid -# /dictionary/ads/* (easylistchina+easylist.txt: 14071) -/(.*/)?dictionary/ads/.* -# /dfpsearchads. (easylistchina+easylist.txt: 14070) -/(.*/)?dfpsearchads\. -dfpsearchads.*. -# /dfpsds. (easylistchina+easylist.txt: 14069) -/(.*/)?dfpsds\. -dfpsds.*. -# /dfpads. (easylistchina+easylist.txt: 14068) -/(.*/)?dfpads\. -dfpads.*. -# /dfp_delivery.js (easylistchina+easylist.txt: 14067) -/(.*/)?dfp_delivery\.js -# /dfp_ads/* (easylistchina+easylist.txt: 14066) -/(.*/)?dfp_ads/.* -# /dfp/jquery. (easylistchina+easylist.txt: 14065) -/(.*/)?dfp/jquery\. -# /dfp/head/* (easylistchina+easylist.txt: 14064) -/(.*/)?dfp/head/.* -# /dfp/dc.js (easylistchina+easylist.txt: 14063) -/(.*/)?dfp/dc\.js -# /dfp/blocks/* (easylistchina+easylist.txt: 14062) -/(.*/)?dfp/blocks/.* -# /dfp/async. (easylistchina+easylist.txt: 14061) -/(.*/)?dfp/async\. -# /dfp.js (easylistchina+easylist.txt: 14060) -/(.*/)?dfp\.js -dfp.js*. -# /dfp-custom/* (easylistchina+easylist.txt: 14059) -/(.*/)?dfp-custom/.* -# /devicead/* (easylistchina+easylist.txt: 14058) -/(.*/)?devicead/.* -# /develop/ads_ (easylistchina+easylist.txt: 14057) -/(.*/)?develop/ads_ -# /design/ads/* (easylistchina+easylist.txt: 14056) -/(.*/)?design/ads/.* -# /descpopup.js (easylistchina+easylist.txt: 14055) -/(.*/)?descpopup\.js -descpopup.js*. -# /DemoAd. (easylistchina+easylist.txt: 14054) -/(.*/)?DemoAd\. -DemoAd.*. -# /demo/ads/* (easylistchina+easylist.txt: 14053) -/(.*/)?demo/ads/.* -# /delivery_ads/* (easylistchina+easylist.txt: 14052) -/(.*/)?delivery_ads/.* -# /delivery/vbafr.php (easylistchina+easylist.txt: 14051) -/(.*/)?delivery/vbafr\.php -# /delivery/spc. (easylistchina+easylist.txt: 14050) -/(.*/)?delivery/spc\. -# /delivery/lg. (easylistchina+easylist.txt: 14049) -/(.*/)?delivery/lg\. -# /delivery/fl. (easylistchina+easylist.txt: 14048) -/(.*/)?delivery/fl\. -# /delivery/fc. (easylistchina+easylist.txt: 14047) -/(.*/)?delivery/fc\. -# /delivery/avw. (easylistchina+easylist.txt: 14046) -/(.*/)?delivery/avw\. -# /delivery/apu.php (easylistchina+easylist.txt: 14045) -/(.*/)?delivery/apu\.php -# /delivery/al.php (easylistchina+easylist.txt: 14044) -/(.*/)?delivery/al\.php -# /delivery/ag. (easylistchina+easylist.txt: 14043) -/(.*/)?delivery/ag\. -# /delivery/afr. (easylistchina+easylist.txt: 14042) -/(.*/)?delivery/afr\. -# /delivery/*?advplaces= (easylistchina+easylist.txt: 14041) -/(.*/)?delivery/.*\?advplaces= -# /delivery.php?rnd= (easylistchina+easylist.txt: 14040) -/(.*/)?delivery\.php\?rnd= -# /delivery.php?pool_id= (easylistchina+easylist.txt: 14039) -/(.*/)?delivery\.php\?pool_id= -# /delivery.ads. (easylistchina+easylist.txt: 14038) -/(.*/)?delivery\.ads\. -delivery.ads.*. -# /deliversds. (easylistchina+easylist.txt: 14037) -/(.*/)?deliversds\. -deliversds.*. -# /deliversd/* (easylistchina+easylist.txt: 14036) -/(.*/)?deliversd/.* -# /deliverjs.nmi? (easylistchina+easylist.txt: 14035) -/(.*/)?deliverjs\.nmi\? -# /deliverads. (easylistchina+easylist.txt: 14034) -/(.*/)?deliverads\. -deliverads.*. -# /deliverad/* (easylistchina+easylist.txt: 14033) -/(.*/)?deliverad/.* -# /deliver.nmi? (easylistchina+easylist.txt: 14032) -/(.*/)?deliver\.nmi\? -# /deliver.jphp? (easylistchina+easylist.txt: 14031) -/(.*/)?deliver\.jphp\? -# /delayedad. (easylistchina+easylist.txt: 14030) -/(.*/)?delayedad\. -delayedad.*. -# /defersds. (easylistchina+easylist.txt: 14029) -/(.*/)?defersds\. -defersds.*. -# /deferads. (easylistchina+easylist.txt: 14028) -/(.*/)?deferads\. -deferads.*. -# /defer_ads. (easylistchina+easylist.txt: 14027) -/(.*/)?defer_ads\. -# /defaults_ads/* (easylistchina+easylist.txt: 14026) -/(.*/)?defaults_ads/.* -# /defaultad? (easylistchina+easylist.txt: 14025) -/(.*/)?defaultad\? -# /default_oas. (easylistchina+easylist.txt: 14024) -/(.*/)?default_oas\. -# /default_adv. (easylistchina+easylist.txt: 14023) -/(.*/)?default_adv\. -# /default_ads/* (easylistchina+easylist.txt: 14022) -/(.*/)?default_ads/.* -# /default/ads/* (easylistchina+easylist.txt: 14021) -/(.*/)?default/ads/.* -# /default-adv/* (easylistchina+easylist.txt: 14020) -/(.*/)?default-adv/.* -# /de/ads/* (easylistchina+easylist.txt: 14019) -/(.*/)?de/ads/.* -# /ddlads/* (easylistchina+easylist.txt: 14018) -/(.*/)?ddlads/.* -# /dcloadads/* (easylistchina+easylist.txt: 14017) -/(.*/)?dcloadads/.* -# /dclk_ads_ (easylistchina+easylist.txt: 14016) -/(.*/)?dclk_ads_ -# /dclk_ads. (easylistchina+easylist.txt: 14015) -/(.*/)?dclk_ads\. -# /dclk/dfp/* (easylistchina+easylist.txt: 14014) -/(.*/)?dclk/dfp/.* -# /dblclickad. (easylistchina+easylist.txt: 14013) -/(.*/)?dblclickad\. -dblclickad.*. -# /dblclick. (easylistchina+easylist.txt: 14012) -/(.*/)?dblclick\. -dblclick.*. -# /dateads. (easylistchina+easylist.txt: 14011) -/(.*/)?dateads\. -dateads.*. -# /data/init?site_id= (easylistchina+easylist.txt: 14010) -/(.*/)?data/init\?site_id= -# /data/init2?site_id= (easylistchina+easylist.txt: 14009) -/(.*/)?data/init2\?site_id= -# /data/ads/* (easylistchina+easylist.txt: 14008) -/(.*/)?data/ads/.* -# /dartfunctions. (easylistchina+easylist.txt: 14007) -/(.*/)?dartfunctions\. -dartfunctions.*. -# /dartcall. (easylistchina+easylist.txt: 14006) -/(.*/)?dartcall\. -dartcall.*. -# /dartads. (easylistchina+easylist.txt: 14005) -/(.*/)?dartads\. -dartads.*. -# /dartadengine2. (easylistchina+easylist.txt: 14004) -/(.*/)?dartadengine2\. -dartadengine2.*. -# /dartadengine. (easylistchina+easylist.txt: 14003) -/(.*/)?dartadengine\. -dartadengine.*. -# /dartad/* (easylistchina+easylist.txt: 14002) -/(.*/)?dartad/.* -# /dart_enhancements/* (easylistchina+easylist.txt: 14001) -/(.*/)?dart_enhancements/.* -# /dart_ads/* (easylistchina+easylist.txt: 14000) -/(.*/)?dart_ads/.* -# /dart_ads. (easylistchina+easylist.txt: 13999) -/(.*/)?dart_ads\. -# /daily/ads/* (easylistchina+easylist.txt: 13998) -/(.*/)?daily/ads/.* -# /d/ads/* (easylistchina+easylist.txt: 13997) -/(.*/)?d/ads/.* -# /cwggoogleadshow. (easylistchina+easylist.txt: 13996) -/(.*/)?cwggoogleadshow\. -cwggoogleadshow.*. -# /cvs/ads/* (easylistchina+easylist.txt: 13995) -/(.*/)?cvs/ads/.* -# /cutead. (easylistchina+easylist.txt: 13994) -/(.*/)?cutead\. -cutead.*. -# /customerad_ (easylistchina+easylist.txt: 13993) -/(.*/)?customerad_ -# /customcontrols/ads/* (easylistchina+easylist.txt: 13992) -/(.*/)?customcontrols/ads/.* -# /customadsense. (easylistchina+easylist.txt: 13991) -/(.*/)?customadsense\. -customadsense.*. -# /customads/* (easylistchina+easylist.txt: 13990) -/(.*/)?customads/.* -# /customadmode. (easylistchina+easylist.txt: 13989) -/(.*/)?customadmode\. -customadmode.*. -# /customad. (easylistchina+easylist.txt: 13988) -/(.*/)?customad\. -customad.*. -# /custom_ads/* (easylistchina+easylist.txt: 13987) -/(.*/)?custom_ads/.* -# /custom11x5ad. (easylistchina+easylist.txt: 13986) -/(.*/)?custom11x5ad\. -custom11x5ad.*. -# /custom/doubleclick/* (easylistchina+easylist.txt: 13985) -/(.*/)?custom/doubleclick/.* -# /custom/ads (easylistchina+easylist.txt: 13984) -/(.*/)?custom/ads -# /custads/* (easylistchina+easylist.txt: 13983) -/(.*/)?custads/.* -# /curveball/ads/* (easylistchina+easylist.txt: 13982) -/(.*/)?curveball/ads/.* -# /curlad. (easylistchina+easylist.txt: 13981) -/(.*/)?curlad\. -curlad.*. -# /cubeads_ (easylistchina+easylist.txt: 13980) -/(.*/)?cubeads_ -# /cubeads/* (easylistchina+easylist.txt: 13979) -/(.*/)?cubeads/.* -# /cubead. (easylistchina+easylist.txt: 13978) -/(.*/)?cubead\. -cubead.*. -# /cube_ads/* (easylistchina+easylist.txt: 13977) -/(.*/)?cube_ads/.* -# /ctamlive160x160. (easylistchina+easylist.txt: 13976) -/(.*/)?ctamlive160x160\. -ctamlive160x160.*. -# /cssjs/ads/* (easylistchina+easylist.txt: 13975) -/(.*/)?cssjs/ads/.* -# /css/adv. (easylistchina+easylist.txt: 13974) -/(.*/)?css/adv\. -# /css/adsense (easylistchina+easylist.txt: 13973) -/(.*/)?css/adsense -# /css/ads. (easylistchina+easylist.txt: 13972) -/(.*/)?css/ads\. -# /css/ads- (easylistchina+easylist.txt: 13971) -/(.*/)?css/ads- -# /css/ad. (easylistchina+easylist.txt: 13970) -/(.*/)?css/ad\. -# /csp/ads? (easylistchina+easylist.txt: 13969) -/(.*/)?csp/ads\? -# /crossoverad- (easylistchina+easylist.txt: 13968) -/(.*/)?crossoverad- -crossoverad-*. -# /cramitin/ads_ (easylistchina+easylist.txt: 13967) -/(.*/)?cramitin/ads_ -# /cpxads. (easylistchina+easylist.txt: 13966) -/(.*/)?cpxads\. -cpxads.*. -# /cpx_ads. (easylistchina+easylist.txt: 13965) -/(.*/)?cpx_ads\. -# /cpx-ad. (easylistchina+easylist.txt: 13964) -/(.*/)?cpx-ad\. -cpx-ad.*. -# /cpmrect. (easylistchina+easylist.txt: 13963) -/(.*/)?cpmrect\. -cpmrect.*. -# /cpmcampaigns/* (easylistchina+easylist.txt: 13962) -/(.*/)?cpmcampaigns/.* -# /cpmbanner. (easylistchina+easylist.txt: 13961) -/(.*/)?cpmbanner\. -cpmbanner.*. -# /cpm_ad. (easylistchina+easylist.txt: 13960) -/(.*/)?cpm_ad\. -# /cpm728. (easylistchina+easylist.txt: 13959) -/(.*/)?cpm728\. -cpm728.*. -# /cpm160. (easylistchina+easylist.txt: 13958) -/(.*/)?cpm160\. -cpm160.*. -# /coxads/* (easylistchina+easylist.txt: 13957) -/(.*/)?coxads/.* -# /country_ad. (easylistchina+easylist.txt: 13956) -/(.*/)?country_ad\. -# /cornersmall.swf (easylistchina+easylist.txt: 13955) -/(.*/)?cornersmall\.swf -cornersmall.swf*. -# /cornerbig.swf (easylistchina+easylist.txt: 13954) -/(.*/)?cornerbig\.swf -cornerbig.swf*. -# /corner_ads/* (easylistchina+easylist.txt: 13953) -/(.*/)?corner_ads/.* -# /corner-ad. (easylistchina+easylist.txt: 13952) -/(.*/)?corner-ad\. -corner-ad.*. -# /coread/* (easylistchina+easylist.txt: 13951) -/(.*/)?coread/.* -# /core/ads/* (easylistchina+easylist.txt: 13950) -/(.*/)?core/ads/.* -# /core/ad/* (easylistchina+easylist.txt: 13949) -/(.*/)?core/ad/.* -# /core-ads- (easylistchina+easylist.txt: 13948) -/(.*/)?core-ads- -core-ads-*. -# /convertjsontoad. (easylistchina+easylist.txt: 13947) -/(.*/)?convertjsontoad\. -convertjsontoad.*. -# /controllerimg/adv/* (easylistchina+easylist.txt: 13946) -/(.*/)?controllerimg/adv/.* -# /controller/ads/* (easylistchina+easylist.txt: 13945) -/(.*/)?controller/ads/.* -# /contribute_ad. (easylistchina+easylist.txt: 13944) -/(.*/)?contribute_ad\. -# /contpop.js| (easylistchina+easylist.txt: 13943) -/(.*/)?contpop\.js$ -contpop.js -# /contextualad. (easylistchina+easylist.txt: 13942) -/(.*/)?contextualad\. -contextualad.*. -# /contextads. (easylistchina+easylist.txt: 13941) -/(.*/)?contextads\. -contextads.*. -# /contextad. (easylistchina+easylist.txt: 13940) -/(.*/)?contextad\. -contextad.*. -# /context_ads. (easylistchina+easylist.txt: 13939) -/(.*/)?context_ads\. -# /context_ad/* (easylistchina+easylist.txt: 13938) -/(.*/)?context_ad/.* -# /contentad| (easylistchina+easylist.txt: 13937) -/(.*/)?contentad$ -# /contentadxxl. (easylistchina+easylist.txt: 13936) -/(.*/)?contentadxxl\. -contentadxxl.*. -# /contentadvert1. (easylistchina+easylist.txt: 13935) -/(.*/)?contentadvert1\. -contentadvert1.*. -# /contentAdServlet? (easylistchina+easylist.txt: 13934) -/(.*/)?contentAdServlet\? -# /contentad_ (easylistchina+easylist.txt: 13933) -/(.*/)?contentad_ -# /contentad/* (easylistchina+easylist.txt: 13932) -/(.*/)?contentad/.* -# /contentAd. (easylistchina+easylist.txt: 13931) -/(.*/)?contentAd\. -contentAd.*. -# /content_ad_ (easylistchina+easylist.txt: 13930) -/(.*/)?content_ad_ -# /content_ad. (easylistchina+easylist.txt: 13929) -/(.*/)?content_ad\. -# /content/adv/* (easylistchina+easylist.txt: 13928) -/(.*/)?content/adv/.* -# /content/ads/* (easylistchina+easylist.txt: 13927) -/(.*/)?content/ads/.* -# /content/ad_ (easylistchina+easylist.txt: 13926) -/(.*/)?content/ad_ -# /content/ad/* (easylistchina+easylist.txt: 13925) -/(.*/)?content/ad/.* -# /content-ads. (easylistchina+easylist.txt: 13924) -/(.*/)?content-ads\. -content-ads.*. -# /contaxe_ (easylistchina+easylist.txt: 13923) -/(.*/)?contaxe_ -# /contads. (easylistchina+easylist.txt: 13922) -/(.*/)?contads\. -contads.*. -# /cont-adv. (easylistchina+easylist.txt: 13921) -/(.*/)?cont-adv\. -cont-adv.*. -# /configspace/ads/* (easylistchina+easylist.txt: 13920) -/(.*/)?configspace/ads/.* -# /conad_ (easylistchina+easylist.txt: 13919) -/(.*/)?conad_ -# /conad. (easylistchina+easylist.txt: 13918) -/(.*/)?conad\. -conad.*. -# /components/ads_ (easylistchina+easylist.txt: 13917) -/(.*/)?components/ads_ -# /components/ads/* (easylistchina+easylist.txt: 13916) -/(.*/)?components/ads/.* -# /compban.html? (easylistchina+easylist.txt: 13915) -/(.*/)?compban\.html\? -# /companionAdFunc. (easylistchina+easylist.txt: 13914) -/(.*/)?companionAdFunc\. -companionAdFunc.*. -# /companion_ads. (easylistchina+easylist.txt: 13913) -/(.*/)?companion_ads\. -# /companion_ad. (easylistchina+easylist.txt: 13912) -/(.*/)?companion_ad\. -# /commspace_ad. (easylistchina+easylist.txt: 13911) -/(.*/)?commspace_ad\. -# /commons/ad/* (easylistchina+easylist.txt: 13910) -/(.*/)?commons/ad/.* -# /common_ad. (easylistchina+easylist.txt: 13909) -/(.*/)?common_ad\. -# /common/dart_wrapper_ (easylistchina+easylist.txt: 13907) -/(.*/)?common/dart_wrapper_ -# /common/adv_ (easylistchina+easylist.txt: 13906) -/(.*/)?common/adv_ -# /common/ads/* (easylistchina+easylist.txt: 13905) -/(.*/)?common/ads/.* -# /common/ad_ (easylistchina+easylist.txt: 13904) -/(.*/)?common/ad_ -# /common/ad/* (easylistchina+easylist.txt: 13903) -/(.*/)?common/ad/.* -# /common/ad. (easylistchina+easylist.txt: 13902) -/(.*/)?common/ad\. -# /common-ads/* (easylistchina+easylist.txt: 13901) -/(.*/)?common-ads/.* -# /commercial_top. (easylistchina+easylist.txt: 13900) -/(.*/)?commercial_top\. -# /commercial_horizontal. (easylistchina+easylist.txt: 13899) -/(.*/)?commercial_horizontal\. -# /comment-ad. (easylistchina+easylist.txt: 13898) -/(.*/)?comment-ad\. -comment-ad.*. -# /comment-ad- (easylistchina+easylist.txt: 13897) -/(.*/)?comment-ad- -comment-ad-*. -# /combo?darla/* (easylistchina+easylist.txt: 13896) -/(.*/)?combo\?darla/.* -# /com/ads/* (easylistchina+easylist.txt: 13895) -/(.*/)?com/ads/.* -# /columnads/* (easylistchina+easylist.txt: 13894) -/(.*/)?columnads/.* -# /columnadcounter. (easylistchina+easylist.txt: 13893) -/(.*/)?columnadcounter\. -columnadcounter.*. -# /colorscheme/ads/* (easylistchina+easylist.txt: 13892) -/(.*/)?colorscheme/ads/.* -# /collisionadmarker. (easylistchina+easylist.txt: 13891) -/(.*/)?collisionadmarker\. -collisionadmarker.*. -# /coldseal_ad. (easylistchina+easylist.txt: 13890) -/(.*/)?coldseal_ad\. -# /codaadconfig. (easylistchina+easylist.txt: 13889) -/(.*/)?codaadconfig\. -codaadconfig.*. -# /cnxad- (easylistchina+easylist.txt: 13888) -/(.*/)?cnxad- -cnxad-*. -# /cnnslads. (easylistchina+easylist.txt: 13887) -/(.*/)?cnnslads\. -cnnslads.*. -# /cnads.js (easylistchina+easylist.txt: 13886) -/(.*/)?cnads\.js -cnads.js*. -# /cn-advert. (easylistchina+easylist.txt: 13885) -/(.*/)?cn-advert\. -cn-advert.*. -# /cms/js/ad_ (easylistchina+easylist.txt: 13884) -/(.*/)?cms/js/ad_ -# /cms/ads/* (easylistchina+easylist.txt: 13883) -/(.*/)?cms/ads/.* -# /cm/ads/* (easylistchina+easylist.txt: 13882) -/(.*/)?cm/ads/.* -# /clkads. (easylistchina+easylist.txt: 13881) -/(.*/)?clkads\. -clkads.*. -# /clients/ads/* (easylistchina+easylist.txt: 13880) -/(.*/)?clients/ads/.* -# /clickunder. (easylistchina+easylist.txt: 13879) -/(.*/)?clickunder\. -clickunder.*. -# /clicksor. (easylistchina+easylist.txt: 13878) -/(.*/)?clicksor\. -clicksor.*. -# /clickboothad. (easylistchina+easylist.txt: 13877) -/(.*/)?clickboothad\. -clickboothad.*. -# /click/creative/* (easylistchina+easylist.txt: 13876) -/(.*/)?click/creative/.* -# /click/ads_ (easylistchina+easylist.txt: 13875) -/(.*/)?click/ads_ -# /classifieds/banners/* (easylistchina+easylist.txt: 13874) -/(.*/)?classifieds/banners/.* -# /ClassAds/* (easylistchina+easylist.txt: 13873) -/(.*/)?ClassAds/.* -# /clarityray.js (easylistchina+easylist.txt: 13872) -/(.*/)?clarityray\.js -clarityray.js*. -# /ck.php?nids (easylistchina+easylist.txt: 13871) -/(.*/)?ck\.php\?nids -# /cjadsprite. (easylistchina+easylist.txt: 13870) -/(.*/)?cjadsprite\. -cjadsprite.*. -# /circads. (easylistchina+easylist.txt: 13869) -/(.*/)?circads\. -circads.*. -# /ciaad. (easylistchina+easylist.txt: 13868) -/(.*/)?ciaad\. -ciaad.*. -# /chrome-ad. (easylistchina+easylist.txt: 13867) -/(.*/)?chrome-ad\. -chrome-ad.*. -# /chitika-ad? (easylistchina+easylist.txt: 13866) -/(.*/)?chitika-ad\? -# /chinaadclient. (easylistchina+easylist.txt: 13865) -/(.*/)?chinaadclient\. -chinaadclient.*. -# /checkm8header_ (easylistchina+easylist.txt: 13864) -/(.*/)?checkm8header_ -# /checkm8footer_ (easylistchina+easylist.txt: 13863) -/(.*/)?checkm8footer_ -# /channelblockads. (easylistchina+easylist.txt: 13862) -/(.*/)?channelblockads\. -channelblockads.*. -# /cgi/ad_ (easylistchina+easylist.txt: 13861) -/(.*/)?cgi/ad_ -# /cgi-exe/ad. (easylistchina+easylist.txt: 13860) -/(.*/)?cgi-exe/ad\. -# /cgi-bin/ads_ (easylistchina+easylist.txt: 13859) -/(.*/)?cgi-bin/ads_ -# /cgi-bin/ads/* (easylistchina+easylist.txt: 13858) -/(.*/)?cgi-bin/ads/.* -# /cgi-bin/ads. (easylistchina+easylist.txt: 13857) -/(.*/)?cgi-bin/ads\. -# /cgi-bin/ad/* (easylistchina+easylist.txt: 13856) -/(.*/)?cgi-bin/ad/.* -# /ceoads/* (easylistchina+easylist.txt: 13855) -/(.*/)?ceoads/.* -# /centralresource/ad_ (easylistchina+easylist.txt: 13854) -/(.*/)?centralresource/ad_ -# /central/ads/* (easylistchina+easylist.txt: 13853) -/(.*/)?central/ads/.* -# /centerads. (easylistchina+easylist.txt: 13852) -/(.*/)?centerads\. -centerads.*. -# /cdn.ads. (easylistchina+easylist.txt: 13851) -/(.*/)?cdn\.ads\. -cdn.ads.*. -# /cci-ads- (easylistchina+easylist.txt: 13850) -/(.*/)?cci-ads- -cci-ads-*. -# /catfishads/* (easylistchina+easylist.txt: 13848) -/(.*/)?catfishads/.* -# /category-sponsorship/* (easylistchina+easylist.txt: 13847) -/(.*/)?category-sponsorship/.* -# /cashad2. (easylistchina+easylist.txt: 13846) -/(.*/)?cashad2\. -cashad2.*. -# /cashad. (easylistchina+easylist.txt: 13845) -/(.*/)?cashad\. -cashad.*. -# /carsadtaggenerator.js (easylistchina+easylist.txt: 13844) -/(.*/)?carsadtaggenerator\.js -carsadtaggenerator.js*. -# /carbonads/* (easylistchina+easylist.txt: 13843) -/(.*/)?carbonads/.* -# /carbonads- (easylistchina+easylist.txt: 13842) -/(.*/)?carbonads- -carbonads-*. -# /campus/ads/* (easylistchina+easylist.txt: 13841) -/(.*/)?campus/ads/.* -# /campaign/advertiser_ (easylistchina+easylist.txt: 13840) -/(.*/)?campaign/advertiser_ -# /camfuzeads/* (easylistchina+easylist.txt: 13839) -/(.*/)?camfuzeads/.* -# /camaoAdsenseHomepage. (easylistchina+easylist.txt: 13838) -/(.*/)?camaoAdsenseHomepage\. -camaoAdsenseHomepage.*. -# /camaoadsense. (easylistchina+easylist.txt: 13837) -/(.*/)?camaoadsense\. -camaoadsense.*. -# /callAdserver? (easylistchina+easylist.txt: 13836) -/(.*/)?callAdserver\? -# /callads5. (easylistchina+easylist.txt: 13835) -/(.*/)?callads5\. -callads5.*. -# /call_ads/* (easylistchina+easylist.txt: 13834) -/(.*/)?call_ads/.* -# /call/pubj/* (easylistchina+easylist.txt: 13833) -/(.*/)?call/pubj/.* -# /call/pubif/* (easylistchina+easylist.txt: 13832) -/(.*/)?call/pubif/.* -# /calendar-ads/* (easylistchina+easylist.txt: 13831) -/(.*/)?calendar-ads/.* -# /cads-min.js (easylistchina+easylist.txt: 13830) -/(.*/)?cads-min\.js -cads-min.js*. -# /cache/ads_ (easylistchina+easylist.txt: 13829) -/(.*/)?cache/ads_ -# /bytemark_ad. (easylistchina+easylist.txt: 13828) -/(.*/)?bytemark_ad\. -# /buzz/ads/* (easylistchina+easylist.txt: 13827) -/(.*/)?buzz/ads/.* -# /buysellads. (easylistchina+easylist.txt: 13826) -/(.*/)?buysellads\. -buysellads.*. -# /buysellads- (easylistchina+easylist.txt: 13825) -/(.*/)?buysellads- -buysellads-*. -# /buyer/dyad/* (easylistchina+easylist.txt: 13824) -/(.*/)?buyer/dyad/.* -# /buyclicks/* (easylistchina+easylist.txt: 13823) -/(.*/)?buyclicks/.* -# /buyad. (easylistchina+easylist.txt: 13822) -/(.*/)?buyad\. -buyad.*. -# /buttonads/* (easylistchina+easylist.txt: 13821) -/(.*/)?buttonads/.* -# /buttonads. (easylistchina+easylist.txt: 13820) -/(.*/)?buttonads\. -buttonads.*. -# /buttonad/* (easylistchina+easylist.txt: 13819) -/(.*/)?buttonad/.* -# /button_ads/* (easylistchina+easylist.txt: 13818) -/(.*/)?button_ads/.* -# /butler.php?type= (easylistchina+easylist.txt: 13817) -/(.*/)?butler\.php\?type= -# /burt/adv_ (easylistchina+easylist.txt: 13816) -/(.*/)?burt/adv_ -# /buddyw_ad. (easylistchina+easylist.txt: 13815) -/(.*/)?buddyw_ad\. -# /bucketads. (easylistchina+easylist.txt: 13814) -/(.*/)?bucketads\. -bucketads.*. -# /btn_ad_ (easylistchina+easylist.txt: 13813) -/(.*/)?btn_ad_ -# /btmadsx. (easylistchina+easylist.txt: 13812) -/(.*/)?btmadsx\. -btmadsx.*. -# /btmads. (easylistchina+easylist.txt: 13811) -/(.*/)?btmads\. -btmads.*. -# /btbuckets/btb.js (easylistchina+easylist.txt: 13810) -/(.*/)?btbuckets/btb\.js -# /bserver/* (easylistchina+easylist.txt: 13809) -/(.*/)?bserver/.* -# /brightcovead. (easylistchina+easylist.txt: 13808) -/(.*/)?brightcovead\. -brightcovead.*. -# /breakad_ (easylistchina+easylist.txt: 13807) -/(.*/)?breakad_ -# /boxad_ (easylistchina+easylist.txt: 13806) -/(.*/)?boxad_ -# /boxad3. (easylistchina+easylist.txt: 13805) -/(.*/)?boxad3\. -boxad3.*. -# /boxad2. (easylistchina+easylist.txt: 13804) -/(.*/)?boxad2\. -boxad2.*. -# /boxad1. (easylistchina+easylist.txt: 13803) -/(.*/)?boxad1\. -boxad1.*. -# /boxad. (easylistchina+easylist.txt: 13802) -/(.*/)?boxad\. -boxad.*. -# /box_ads_ (easylistchina+easylist.txt: 13801) -/(.*/)?box_ads_ -# /box_ad_ (easylistchina+easylist.txt: 13800) -/(.*/)?box_ad_ -# /bottomsidead/* (easylistchina+easylist.txt: 13799) -/(.*/)?bottomsidead/.* -# /bottomads. (easylistchina+easylist.txt: 13798) -/(.*/)?bottomads\. -bottomads.*. -# /bottomad/* (easylistchina+easylist.txt: 13797) -/(.*/)?bottomad/.* -# /bottomad. (easylistchina+easylist.txt: 13796) -/(.*/)?bottomad\. -bottomad.*. -# /bottom_adv_ (easylistchina+easylist.txt: 13795) -/(.*/)?bottom_adv_ -# /bottom_adv. (easylistchina+easylist.txt: 13794) -/(.*/)?bottom_adv\. -# /bottom_ads. (easylistchina+easylist.txt: 13793) -/(.*/)?bottom_ads\. -# /bottom_ad. (easylistchina+easylist.txt: 13792) -/(.*/)?bottom_ad\. -# /bottom-advert- (easylistchina+easylist.txt: 13791) -/(.*/)?bottom-advert- -bottom-advert-*. -# /bottom-ads. (easylistchina+easylist.txt: 13790) -/(.*/)?bottom-ads\. -bottom-ads.*. -# /bottom-ad- (easylistchina+easylist.txt: 13789) -/(.*/)?bottom-ad- -bottom-ad-*. -# /boomad. (easylistchina+easylist.txt: 13788) -/(.*/)?boomad\. -boomad.*. -# /bookads2. (easylistchina+easylist.txt: 13787) -/(.*/)?bookads2\. -bookads2.*. -# /bookads. (easylistchina+easylist.txt: 13786) -/(.*/)?bookads\. -bookads.*. -# /bookad/* (easylistchina+easylist.txt: 13785) -/(.*/)?bookad/.* -# /BOM/Ads/* (easylistchina+easylist.txt: 13784) -/(.*/)?BOM/Ads/.* -# /bodyads/* (easylistchina+easylist.txt: 13783) -/(.*/)?bodyads/.* -# /bnrsrv. (easylistchina+easylist.txt: 13782) -/(.*/)?bnrsrv\. -bnrsrv.*. -# /bnrimg. (easylistchina+easylist.txt: 13781) -/(.*/)?bnrimg\. -bnrimg.*. -# /bnrad/* (easylistchina+easylist.txt: 13780) -/(.*/)?bnrad/.* -# /bnr.php? (easylistchina+easylist.txt: 13778) -/(.*/)?bnr\.php\? -# /bmndoubleclickad. (easylistchina+easylist.txt: 13777) -/(.*/)?bmndoubleclickad\. -bmndoubleclickad.*. -# /blogoas- (easylistchina+easylist.txt: 13776) -/(.*/)?blogoas- -blogoas-*. -# /bloggerex. (easylistchina+easylist.txt: 13775) -/(.*/)?bloggerex\. -bloggerex.*. -# /blogadsbg. (easylistchina+easylist.txt: 13774) -/(.*/)?blogadsbg\. -blogadsbg.*. -# /blogads_ (easylistchina+easylist.txt: 13773) -/(.*/)?blogads_ -# /blogads3/* (easylistchina+easylist.txt: 13772) -/(.*/)?blogads3/.* -# /blogads2_ (easylistchina+easylist.txt: 13771) -/(.*/)?blogads2_ -# /blogads/* (easylistchina+easylist.txt: 13770) -/(.*/)?blogads/.* -# /blogads. (easylistchina+easylist.txt: 13769) -/(.*/)?blogads\. -blogads.*. -# /blogads- (easylistchina+easylist.txt: 13768) -/(.*/)?blogads- -blogads-*. -# /blogad_ (easylistchina+easylist.txt: 13767) -/(.*/)?blogad_ -# /blogad02. (easylistchina+easylist.txt: 13766) -/(.*/)?blogad02\. -blogad02.*. -# /blogad. (easylistchina+easylist.txt: 13765) -/(.*/)?blogad\. -blogad.*. -# /blog_ads/* (easylistchina+easylist.txt: 13764) -/(.*/)?blog_ads/.* -# /blog_ad? (easylistchina+easylist.txt: 13763) -/(.*/)?blog_ad\? -# /blog/ads/* (easylistchina+easylist.txt: 13762) -/(.*/)?blog/ads/.* -# /blog-ad- (easylistchina+easylist.txt: 13761) -/(.*/)?blog-ad- -blog-ad-*. -# /blocks/ads/* (easylistchina+easylist.txt: 13760) -/(.*/)?blocks/ads/.* -# /blockad_ (easylistchina+easylist.txt: 13759) -/(.*/)?blockad_ -# /bkgrndads/* (easylistchina+easylist.txt: 13758) -/(.*/)?bkgrndads/.* -# /bizad. (easylistchina+easylist.txt: 13757) -/(.*/)?bizad\. -bizad.*. -# /binary/ad/* (easylistchina+easylist.txt: 13756) -/(.*/)?binary/ad/.* -# /bin/ads/* (easylistchina+easylist.txt: 13755) -/(.*/)?bin/ads/.* -# /bigtopl.swf (easylistchina+easylist.txt: 13754) -/(.*/)?bigtopl\.swf -bigtopl.swf*. -# /bigboxad. (easylistchina+easylist.txt: 13753) -/(.*/)?bigboxad\. -bigboxad.*. -# /bigads/* (easylistchina+easylist.txt: 13752) -/(.*/)?bigads/.* -# /bigad_ (easylistchina+easylist.txt: 13751) -/(.*/)?bigad_ -# /bigad. (easylistchina+easylist.txt: 13750) -/(.*/)?bigad\. -bigad.*. -# /bi_affiliate.js (easylistchina+easylist.txt: 13749) -/(.*/)?bi_affiliate\.js -# /bgads/* (easylistchina+easylist.txt: 13748) -/(.*/)?bgads/.* -# /bg_ads_ (easylistchina+easylist.txt: 13747) -/(.*/)?bg_ads_ -# /bg/ads/* (easylistchina+easylist.txt: 13746) -/(.*/)?bg/ads/.* -# /bg-advert- (easylistchina+easylist.txt: 13745) -/(.*/)?bg-advert- -bg-advert-*. -# /bftv/ads/* (easylistchina+easylist.txt: 13744) -/(.*/)?bftv/ads/.* -# /betrad.js (easylistchina+easylist.txt: 13743) -/(.*/)?betrad\.js -betrad.js*. -# /beta-ad. (easylistchina+easylist.txt: 13742) -/(.*/)?beta-ad\. -beta-ad.*. -# /behaviorads/* (easylistchina+easylist.txt: 13741) -/(.*/)?behaviorads/.* -# /beacon/ad/* (easylistchina+easylist.txt: 13740) -/(.*/)?beacon/ad/.* -# /bdcustomadsense- (easylistchina+easylist.txt: 13739) -/(.*/)?bdcustomadsense- -bdcustomadsense-*. -# /bckgrnd_ad. (easylistchina+easylist.txt: 13738) -/(.*/)?bckgrnd_ad\. -# /bbad9. (easylistchina+easylist.txt: 13737) -/(.*/)?bbad9\. -bbad9.*. -# /bbad8. (easylistchina+easylist.txt: 13736) -/(.*/)?bbad8\. -bbad8.*. -# /bbad7. (easylistchina+easylist.txt: 13735) -/(.*/)?bbad7\. -bbad7.*. -# /bbad6. (easylistchina+easylist.txt: 13734) -/(.*/)?bbad6\. -bbad6.*. -# /bbad5. (easylistchina+easylist.txt: 13733) -/(.*/)?bbad5\. -bbad5.*. -# /bbad4. (easylistchina+easylist.txt: 13732) -/(.*/)?bbad4\. -bbad4.*. -# /bbad3. (easylistchina+easylist.txt: 13731) -/(.*/)?bbad3\. -bbad3.*. -# /bbad2. (easylistchina+easylist.txt: 13730) -/(.*/)?bbad2\. -bbad2.*. -# /bbad10. (easylistchina+easylist.txt: 13729) -/(.*/)?bbad10\. -bbad10.*. -# /bbad1. (easylistchina+easylist.txt: 13728) -/(.*/)?bbad1\. -bbad1.*. -# /bbad. (easylistchina+easylist.txt: 13727) -/(.*/)?bbad\. -bbad.*. -# /basic/ad/* (easylistchina+easylist.txt: 13726) -/(.*/)?basic/ad/.* -# /baselinead. (easylistchina+easylist.txt: 13725) -/(.*/)?baselinead\. -baselinead.*. -# /baseAd. (easylistchina+easylist.txt: 13724) -/(.*/)?baseAd\. -baseAd.*. -# /bar-ad. (easylistchina+easylist.txt: 13723) -/(.*/)?bar-ad\. -bar-ad.*. -# /bansrc/* (easylistchina+easylist.txt: 13722) -/(.*/)?bansrc/.* -# /bannery/*?banner= (easylistchina+easylist.txt: 13721) -/(.*/)?bannery/.*\?banner= -# /bannerwerbung/* (easylistchina+easylist.txt: 13720) -/(.*/)?bannerwerbung/.* -# /bannerview.*? (easylistchina+easylist.txt: 13719) -/(.*/)?bannerview\..*\? -bannerview.*./.*\? -# /bannersyndication. (easylistchina+easylist.txt: 13718) -/(.*/)?bannersyndication\. -bannersyndication.*. -# /bannerserver? (easylistchina+easylist.txt: 13717) -/(.*/)?bannerserver\? -# /bannerserver3| (easylistchina+easylist.txt: 13716) -/(.*/)?bannerserver3$ -# /bannerserver3/* (easylistchina+easylist.txt: 13715) -/(.*/)?bannerserver3/.* -# /bannerserver/* (easylistchina+easylist.txt: 13714) -/(.*/)?bannerserver/.* -# /bannerserve/* (easylistchina+easylist.txt: 13713) -/(.*/)?bannerserve/.* -# /bannerscript/* (easylistchina+easylist.txt: 13712) -/(.*/)?bannerscript/.* -# /bannersAds_ (easylistchina+easylist.txt: 13711) -/(.*/)?bannersAds_ -# /banners_rotation. (easylistchina+easylist.txt: 13710) -/(.*/)?banners_rotation\. -# /banners/promo/* (easylistchina+easylist.txt: 13709) -/(.*/)?banners/promo/.* -# /banners/googlebanner (easylistchina+easylist.txt: 13708) -/(.*/)?banners/googlebanner -# /banners/ffadult/* (easylistchina+easylist.txt: 13707) -/(.*/)?banners/ffadult/.* -# /banners/affiliate/* (easylistchina+easylist.txt: 13706) -/(.*/)?banners/affiliate/.* -# /banners/affil/* (easylistchina+easylist.txt: 13705) -/(.*/)?banners/affil/.* -# /banners/aff. (easylistchina+easylist.txt: 13704) -/(.*/)?banners/aff\. -# /banners/adv_ (easylistchina+easylist.txt: 13703) -/(.*/)?banners/adv_ -# /banners/adv/* (easylistchina+easylist.txt: 13702) -/(.*/)?banners/adv/.* -# /banners/ads/* (easylistchina+easylist.txt: 13701) -/(.*/)?banners/ads/.* -# /banners/ads. (easylistchina+easylist.txt: 13700) -/(.*/)?banners/ads\. -# /banners/ads- (easylistchina+easylist.txt: 13699) -/(.*/)?banners/ads- -# /banners/ad_ (easylistchina+easylist.txt: 13698) -/(.*/)?banners/ad_ -# /banners/ad11. (easylistchina+easylist.txt: 13697) -/(.*/)?banners/ad11\. -# /banners/ad10. (easylistchina+easylist.txt: 13696) -/(.*/)?banners/ad10\. -# /banners/ad/* (easylistchina+easylist.txt: 13695) -/(.*/)?banners/ad/.* -# /banners/728 (easylistchina+easylist.txt: 13694) -/(.*/)?banners/728 -# /banners/468 (easylistchina+easylist.txt: 13693) -/(.*/)?banners/468 -# /banners/460 (easylistchina+easylist.txt: 13692) -/(.*/)?banners/460 -# /banners/300 (easylistchina+easylist.txt: 13691) -/(.*/)?banners/300 -# /banners/160 (easylistchina+easylist.txt: 13690) -/(.*/)?banners/160 -# /banners.php?id (easylistchina+easylist.txt: 13689) -/(.*/)?banners\.php\?id -# /banners.cgi? (easylistchina+easylist.txt: 13688) -/(.*/)?banners\.cgi\? -# /banners.*&iframe= (easylistchina+easylist.txt: 13687) -/(.*/)?banners\..*&iframe= -banners.*./.*&iframe= -# /bannerrotation/* (easylistchina+easylist.txt: 13686) -/(.*/)?bannerrotation/.* -# /bannerrotation. (easylistchina+easylist.txt: 13685) -/(.*/)?bannerrotation\. -bannerrotation.*. -# /bannerrotater/* (easylistchina+easylist.txt: 13684) -/(.*/)?bannerrotater/.* -# /bannerrotate. (easylistchina+easylist.txt: 13683) -/(.*/)?bannerrotate\. -bannerrotate.*. -# /bannerpump. (easylistchina+easylist.txt: 13682) -/(.*/)?bannerpump\. -bannerpump.*. -# /bannermvt. (easylistchina+easylist.txt: 13681) -/(.*/)?bannermvt\. -bannermvt.*. -# /bannermanager/* (easylistchina+easylist.txt: 13680) -/(.*/)?bannermanager/.* -# /bannermaker/* (easylistchina+easylist.txt: 13679) -/(.*/)?bannermaker/.* -# /bannerjs.php? (easylistchina+easylist.txt: 13678) -/(.*/)?bannerjs\.php\? -# /bannerinc. (easylistchina+easylist.txt: 13677) -/(.*/)?bannerinc\. -bannerinc.*. -# /bannerframeopenads_ (easylistchina+easylist.txt: 13676) -/(.*/)?bannerframeopenads_ -# /bannerframeopenads. (easylistchina+easylist.txt: 13675) -/(.*/)?bannerframeopenads\. -bannerframeopenads.*. -# /bannerframe.*? (easylistchina+easylist.txt: 13674) -/(.*/)?bannerframe\..*\? -bannerframe.*./.*\? -# /bannerfile/ad_ (easylistchina+easylist.txt: 13673) -/(.*/)?bannerfile/ad_ -# /bannerfarm/* (easylistchina+easylist.txt: 13672) -/(.*/)?bannerfarm/.* -# /bannerfarm. (easylistchina+easylist.txt: 13671) -/(.*/)?bannerfarm\. -bannerfarm.*. -# /bannerexchange/* (easylistchina+easylist.txt: 13670) -/(.*/)?bannerexchange/.* -# /bannerdeliver.php (easylistchina+easylist.txt: 13669) -/(.*/)?bannerdeliver\.php -bannerdeliver.php*. -# /bannerconduit. (easylistchina+easylist.txt: 13668) -/(.*/)?bannerconduit\. -bannerconduit.*. -# /bannercode.php (easylistchina+easylist.txt: 13667) -/(.*/)?bannercode\.php -bannercode.php*. -# /banneradviva. (easylistchina+easylist.txt: 13666) -/(.*/)?banneradviva\. -banneradviva.*. -# /banneradverts/* (easylistchina+easylist.txt: 13665) -/(.*/)?banneradverts/.* -# /banneradsgenerator. (easylistchina+easylist.txt: 13664) -/(.*/)?banneradsgenerator\. -banneradsgenerator.*. -# /banneradsajax. (easylistchina+easylist.txt: 13663) -/(.*/)?banneradsajax\. -banneradsajax.*. -# /bannerads/* (easylistchina+easylist.txt: 13662) -/(.*/)?bannerads/.* -# /bannerads. (easylistchina+easylist.txt: 13661) -/(.*/)?bannerads\. -bannerads.*. -# /bannerads- (easylistchina+easylist.txt: 13660) -/(.*/)?bannerads- -bannerads-*. -# /bannerad_ (easylistchina+easylist.txt: 13659) -/(.*/)?bannerad_ -# /bannerad6. (easylistchina+easylist.txt: 13658) -/(.*/)?bannerad6\. -bannerad6.*. -# /bannerad3. (easylistchina+easylist.txt: 13657) -/(.*/)?bannerad3\. -bannerad3.*. -# /bannerad2- (easylistchina+easylist.txt: 13656) -/(.*/)?bannerad2- -bannerad2-*. -# /bannerad1- (easylistchina+easylist.txt: 13655) -/(.*/)?bannerad1- -bannerad1-*. -# /bannerad/* (easylistchina+easylist.txt: 13654) -/(.*/)?bannerad/.* -# /bannerad. (easylistchina+easylist.txt: 13653) -/(.*/)?bannerad\. -bannerad.*. -# /banner_zedo/* (easylistchina+easylist.txt: 13652) -/(.*/)?banner_zedo/.* -# /banner_zanox/* (easylistchina+easylist.txt: 13651) -/(.*/)?banner_zanox/.* -# /banner_view. (easylistchina+easylist.txt: 13650) -/(.*/)?banner_view\. -# /banner_skyscraper. (easylistchina+easylist.txt: 13649) -/(.*/)?banner_skyscraper\. -# /banner_OAS.js (easylistchina+easylist.txt: 13648) -/(.*/)?banner_OAS\.js -# /banner_js.*? (easylistchina+easylist.txt: 13647) -/(.*/)?banner_js\..*\? -# /banner_image.php? (easylistchina+easylist.txt: 13646) -/(.*/)?banner_image\.php\? -# /banner_iframe_ (easylistchina+easylist.txt: 13645) -/(.*/)?banner_iframe_ -# /banner_file.php? (easylistchina+easylist.txt: 13644) -/(.*/)?banner_file\.php\? -# /banner_db.php? (easylistchina+easylist.txt: 13643) -/(.*/)?banner_db\.php\? -# /banner_control.php? (easylistchina+easylist.txt: 13642) -/(.*/)?banner_control\.php\? -# /banner_adv/* (easylistchina+easylist.txt: 13641) -/(.*/)?banner_adv/.* -# /banner_ads_ (easylistchina+easylist.txt: 13640) -/(.*/)?banner_ads_ -# /banner_ads/* (easylistchina+easylist.txt: 13639) -/(.*/)?banner_ads/.* -# /banner_ads. (easylistchina+easylist.txt: 13638) -/(.*/)?banner_ads\. -# /banner_ad_ (easylistchina+easylist.txt: 13637) -/(.*/)?banner_ad_ -# /banner_ad. (easylistchina+easylist.txt: 13636) -/(.*/)?banner_ad\. -# /banner_468x (easylistchina+easylist.txt: 13635) -/(.*/)?banner_468x -# /banner_468. (easylistchina+easylist.txt: 13634) -/(.*/)?banner_468\. -# /banner_125x (easylistchina+easylist.txt: 13633) -/(.*/)?banner_125x -# /banner728x90_ (easylistchina+easylist.txt: 13632) -/(.*/)?banner728x90_ -# /banner468x80. (easylistchina+easylist.txt: 13631) -/(.*/)?banner468x80\. -banner468x80.*. -# /banner468x60. (easylistchina+easylist.txt: 13630) -/(.*/)?banner468x60\. -banner468x60.*. -# /banner468a. (easylistchina+easylist.txt: 13629) -/(.*/)?banner468a\. -banner468a.*. -# /banner468_ (easylistchina+easylist.txt: 13628) -/(.*/)?banner468_ -# /banner468. (easylistchina+easylist.txt: 13627) -/(.*/)?banner468\. -banner468.*. -# /banner460x80. (easylistchina+easylist.txt: 13626) -/(.*/)?banner460x80\. -banner460x80.*. -# /banner20468x60. (easylistchina+easylist.txt: 13625) -/(.*/)?banner20468x60\. -banner20468x60.*. -# /banner160x600- (easylistchina+easylist.txt: 13624) -/(.*/)?banner160x600- -banner160x600-*. -# /banner/virtuagirl (easylistchina+easylist.txt: 13623) -/(.*/)?banner/virtuagirl -# /banner/sponsor_ (easylistchina+easylist.txt: 13622) -/(.*/)?banner/sponsor_ -# /banner/rtads/* (easylistchina+easylist.txt: 13621) -/(.*/)?banner/rtads/.* -# /banner/affiliate/* (easylistchina+easylist.txt: 13620) -/(.*/)?banner/affiliate/.* -# /banner/adv_ (easylistchina+easylist.txt: 13619) -/(.*/)?banner/adv_ -# /banner/adv/* (easylistchina+easylist.txt: 13618) -/(.*/)?banner/adv/.* -# /banner/ad_ (easylistchina+easylist.txt: 13617) -/(.*/)?banner/ad_ -# /banner/ad/* (easylistchina+easylist.txt: 13616) -/(.*/)?banner/ad/.* -# /banner/ad. (easylistchina+easylist.txt: 13615) -/(.*/)?banner/ad\. -# /banner/700 (easylistchina+easylist.txt: 13614) -/(.*/)?banner/700 -# /banner/468 (easylistchina+easylist.txt: 13613) -/(.*/)?banner/468 -# /banner.ws? (easylistchina+easylist.txt: 13612) -/(.*/)?banner\.ws\? -# /banner.php (easylistchina+easylist.txt: 13611) -/(.*/)?banner\.php -banner.php*. -# /banner.htm? (easylistchina+easylist.txt: 13610) -/(.*/)?banner\.htm\? -# /banner.gif? (easylistchina+easylist.txt: 13609) -/(.*/)?banner\.gif\? -# /banner.cgi? (easylistchina+easylist.txt: 13608) -/(.*/)?banner\.cgi\? -# /banner.ca? (easylistchina+easylist.txt: 13607) -/(.*/)?banner\.ca\? -# /banner-ads/* (easylistchina+easylist.txt: 13605) -/(.*/)?banner-ads/.* -# /banner-ad_ (easylistchina+easylist.txt: 13604) -/(.*/)?banner-ad_ -# /banner-ad/* (easylistchina+easylist.txt: 13603) -/(.*/)?banner-ad/.* -# /banner-ad. (easylistchina+easylist.txt: 13602) -/(.*/)?banner-ad\. -banner-ad.*. -# /banner-ad- (easylistchina+easylist.txt: 13601) -/(.*/)?banner-ad- -banner-ad-*. -# /Banner-300x250. (easylistchina+easylist.txt: 13600) -/(.*/)?Banner-300x250\. -Banner-300x250.*. -# /banmanpro/* (easylistchina+easylist.txt: 13599) -/(.*/)?banmanpro/.* -# /banman/* (easylistchina+easylist.txt: 13598) -/(.*/)?banman/.* -# /banman.asp? (easylistchina+easylist.txt: 13597) -/(.*/)?banman\.asp\? -# /banimpress. (easylistchina+easylist.txt: 13596) -/(.*/)?banimpress\. -banimpress.*. -# /ban_m.php? (easylistchina+easylist.txt: 13595) -/(.*/)?ban_m\.php\? -# /ban_ad. (easylistchina+easylist.txt: 13594) -/(.*/)?ban_ad\. -# /ban728x90. (easylistchina+easylist.txt: 13593) -/(.*/)?ban728x90\. -ban728x90.*. -# /ban728.php (easylistchina+easylist.txt: 13592) -/(.*/)?ban728\.php -ban728.php*. -# /ban728.html (easylistchina+easylist.txt: 13591) -/(.*/)?ban728\.html -ban728.html*. -# /ban300.php (easylistchina+easylist.txt: 13590) -/(.*/)?ban300\.php -ban300.php*. -# /ban300.html (easylistchina+easylist.txt: 13589) -/(.*/)?ban300\.html -ban300.html*. -# /ban160.php (easylistchina+easylist.txt: 13588) -/(.*/)?ban160\.php -ban160.php*. -# /ban.php? (easylistchina+easylist.txt: 13587) -/(.*/)?ban\.php\? -# /badge_ad_ (easylistchina+easylist.txt: 13586) -/(.*/)?badge_ad_ -# /backlinxxx/js/* (easylistchina+easylist.txt: 13585) -/(.*/)?backlinxxx/js/.* -# /backgroundAdvertising. (easylistchina+easylist.txt: 13584) -/(.*/)?backgroundAdvertising\. -backgroundAdvertising.*. -# /BackgroundAd40. (easylistchina+easylist.txt: 13583) -/(.*/)?BackgroundAd40\. -BackgroundAd40.*. -# /background_ad_ (easylistchina+easylist.txt: 13582) -/(.*/)?background_ad_ -# /back-ad. (easylistchina+easylist.txt: 13581) -/(.*/)?back-ad\. -back-ad.*. -# /b.ads. (easylistchina+easylist.txt: 13580) -/(.*/)?b\.ads\. -b.ads.*. -# /awepop. (easylistchina+easylist.txt: 13579) -/(.*/)?awepop\. -awepop.*. -# /awempire. (easylistchina+easylist.txt: 13578) -/(.*/)?awempire\. -awempire.*. -# /awe2.js (easylistchina+easylist.txt: 13577) -/(.*/)?awe2\.js -awe2.js*. -# /auto_ad_ (easylistchina+easylist.txt: 13576) -/(.*/)?auto_ad_ -# /austria_ad. (easylistchina+easylist.txt: 13575) -/(.*/)?austria_ad\. -# /auditudebanners. (easylistchina+easylist.txt: 13574) -/(.*/)?auditudebanners\. -auditudebanners.*. -# /auditudeadunit. (easylistchina+easylist.txt: 13573) -/(.*/)?auditudeadunit\. -auditudeadunit.*. -# /audioads/* (easylistchina+easylist.txt: 13572) -/(.*/)?audioads/.* -# /audio-ads/* (easylistchina+easylist.txt: 13571) -/(.*/)?audio-ads/.* -# /au2m8_preloader/* (easylistchina+easylist.txt: 13570) -/(.*/)?au2m8_preloader/.* -# /AttractiveAdsCube. (easylistchina+easylist.txt: 13569) -/(.*/)?AttractiveAdsCube\. -AttractiveAdsCube.*. -# /AttractiveAds_ (easylistchina+easylist.txt: 13568) -/(.*/)?AttractiveAds_ -# /AttractiveAds/* (easylistchina+easylist.txt: 13567) -/(.*/)?AttractiveAds/.* -# /atrads. (easylistchina+easylist.txt: 13566) -/(.*/)?atrads\. -atrads.*. -# /atnads/* (easylistchina+easylist.txt: 13565) -/(.*/)?atnads/.* -# /athena/tag/? (easylistchina+easylist.txt: 13564) -/(.*/)?athena/tag/\? -# /asyncspc. (easylistchina+easylist.txt: 13563) -/(.*/)?asyncspc\. -asyncspc.*. -# /asyncadload. (easylistchina+easylist.txt: 13561) -/(.*/)?asyncadload\. -asyncadload.*. -# /ast/ads/* (easylistchina+easylist.txt: 13560) -/(.*/)?ast/ads/.* -# /assets/sponsored/* (easylistchina+easylist.txt: 13559) -/(.*/)?assets/sponsored/.* -# /assets/doubleclick/* (easylistchina+easylist.txt: 13558) -/(.*/)?assets/doubleclick/.* -# /assets/adv/* (easylistchina+easylist.txt: 13557) -/(.*/)?assets/adv/.* -# /assets/ads_ (easylistchina+easylist.txt: 13556) -/(.*/)?assets/ads_ -# /assets/ads/* (easylistchina+easylist.txt: 13555) -/(.*/)?assets/ads/.* -# /assets/ads- (easylistchina+easylist.txt: 13554) -/(.*/)?assets/ads- -# /assets/ad/* (easylistchina+easylist.txt: 13553) -/(.*/)?assets/ad/.* -# /assets/ad- (easylistchina+easylist.txt: 13552) -/(.*/)?assets/ad- -# /asset/adv/* (easylistchina+easylist.txt: 13551) -/(.*/)?asset/adv/.* -# /asset/ad/* (easylistchina+easylist.txt: 13550) -/(.*/)?asset/ad/.* -# /aspbanner_inc.asp? (easylistchina+easylist.txt: 13549) -/(.*/)?aspbanner_inc\.asp\? -# /aseadnshow. (easylistchina+easylist.txt: 13548) -/(.*/)?aseadnshow\. -aseadnshow.*. -# /as_u/ads/* (easylistchina+easylist.txt: 13547) -/(.*/)?as_u/ads/.* -# /as3overstreamplatformadapter. (easylistchina+easylist.txt: 13546) -/(.*/)?as3overstreamplatformadapter\. -as3overstreamplatformadapter.*. -# /as/gb?stid= (easylistchina+easylist.txt: 13545) -/(.*/)?as/gb\?stid= -# /as/gb2?stid= (easylistchina+easylist.txt: 13544) -/(.*/)?as/gb2\?stid= -# /artimediatargetads. (easylistchina+easylist.txt: 13543) -/(.*/)?artimediatargetads\. -artimediatargetads.*. -# /articleSponsorDeriv_ (easylistchina+easylist.txt: 13542) -/(.*/)?articleSponsorDeriv_ -# /article_ad. (easylistchina+easylist.txt: 13541) -/(.*/)?article_ad\. -# /Article-Ad- (easylistchina+easylist.txt: 13540) -/(.*/)?Article-Ad- -Article-Ad-*. -# /aptads/* (easylistchina+easylist.txt: 13539) -/(.*/)?aptads/.* -# /app/ads/* (easylistchina+easylist.txt: 13538) -/(.*/)?app/ads/.* -# /app/ads. (easylistchina+easylist.txt: 13537) -/(.*/)?app/ads\. -# /app.ads. (easylistchina+easylist.txt: 13536) -/(.*/)?app\.ads\. -app.ads.*. -# /app.ads- (easylistchina+easylist.txt: 13535) -/(.*/)?app\.ads- -app.ads-*. -# /apopwin. (easylistchina+easylist.txt: 13534) -/(.*/)?apopwin\. -apopwin.*. -# /api/ads/* (easylistchina+easylist.txt: 13533) -/(.*/)?api/ads/.* -# /api/ad/* (easylistchina+easylist.txt: 13532) -/(.*/)?api/ad/.* -# /api.ad. (easylistchina+easylist.txt: 13531) -/(.*/)?api\.ad\. -api.ad.*. -# /anyad.js (easylistchina+easylist.txt: 13530) -/(.*/)?anyad\.js -anyad.js*. -# /announce/adv/* (easylistchina+easylist.txt: 13529) -/(.*/)?announce/adv/.* -# /annonser/* (easylistchina+easylist.txt: 13528) -/(.*/)?annonser/.* -# /annonser. (easylistchina+easylist.txt: 13527) -/(.*/)?annonser\. -annonser.*. -# /annonse/* (easylistchina+easylist.txt: 13526) -/(.*/)?annonse/.* -# /anchorad. (easylistchina+easylist.txt: 13524) -/(.*/)?anchorad\. -anchorad.*. -# /amzn_omakase. (easylistchina+easylist.txt: 13523) -/(.*/)?amzn_omakase\. -# /amzn_ads. (easylistchina+easylist.txt: 13522) -/(.*/)?amzn_ads\. -# /amazon/widget/* (easylistchina+easylist.txt: 13521) -/(.*/)?amazon/widget/.* -# /amazon/iframeproxy- (easylistchina+easylist.txt: 13520) -/(.*/)?amazon/iframeproxy- -# /am/ads. (easylistchina+easylist.txt: 13519) -/(.*/)?am/ads\. -# /alwebad_ (easylistchina+easylist.txt: 13518) -/(.*/)?alwebad_ -# /alternet.ad? (easylistchina+easylist.txt: 13517) -/(.*/)?alternet\.ad\? -# /all_ads/* (easylistchina+easylist.txt: 13516) -/(.*/)?all_ads/.* -# /all/ad/* (easylistchina+easylist.txt: 13515) -/(.*/)?all/ad/.* -# /ak/ads/* (easylistchina+easylist.txt: 13514) -/(.*/)?ak/ads/.* -# /ak-ads- (easylistchina+easylist.txt: 13513) -/(.*/)?ak-ads- -ak-ads-*. -# /ajs?auid= (easylistchina+easylist.txt: 13512) -/(.*/)?ajs\?auid= -# /ajs.php? (easylistchina+easylist.txt: 13511) -/(.*/)?ajs\.php\? -# /ajrotator/* (easylistchina+easylist.txt: 13510) -/(.*/)?ajrotator/.* -# /ajaxads. (easylistchina+easylist.txt: 13509) -/(.*/)?ajaxads\. -ajaxads.*. -# /ajaxAd? (easylistchina+easylist.txt: 13508) -/(.*/)?ajaxAd\? -# /ajax/ads/* (easylistchina+easylist.txt: 13507) -/(.*/)?ajax/ads/.* -# /ajax/ad/* (easylistchina+easylist.txt: 13506) -/(.*/)?ajax/ad/.* -# /ajax-advert. (easylistchina+easylist.txt: 13505) -/(.*/)?ajax-advert\. -ajax-advert.*. -# /ajax-advert- (easylistchina+easylist.txt: 13504) -/(.*/)?ajax-advert- -ajax-advert-*. -# /ajax-ad/* (easylistchina+easylist.txt: 13503) -/(.*/)?ajax-ad/.* -# /ahmestatic/ads/* (easylistchina+easylist.txt: 13502) -/(.*/)?ahmestatic/ads/.* -# /afr?auid= (easylistchina+easylist.txt: 13501) -/(.*/)?afr\?auid= -# /afr.php? (easylistchina+easylist.txt: 13500) -/(.*/)?afr\.php\? -# /affpic/* (easylistchina+easylist.txt: 13499) -/(.*/)?affpic/.* -# /affliate-banners/* (easylistchina+easylist.txt: 13498) -/(.*/)?affliate-banners/.* -# /affimg/* (easylistchina+easylist.txt: 13497) -/(.*/)?affimg/.* -# /affimages/* (easylistchina+easylist.txt: 13496) -/(.*/)?affimages/.* -# /affilitebanners/* (easylistchina+easylist.txt: 13495) -/(.*/)?affilitebanners/.* -# /affilinet/* (easylistchina+easylist.txt: 13494) -/(.*/)?affilinet/.* -# /affiliationcash. (easylistchina+easylist.txt: 13493) -/(.*/)?affiliationcash\. -affiliationcash.*. -# /affiliation/* (easylistchina+easylist.txt: 13492) -/(.*/)?affiliation/.* -# /affiliatewiz/* (easylistchina+easylist.txt: 13491) -/(.*/)?affiliatewiz/.* -# /affiliatetags/* (easylistchina+easylist.txt: 13490) -/(.*/)?affiliatetags/.* -# /affiliateserver. (easylistchina+easylist.txt: 13489) -/(.*/)?affiliateserver\. -affiliateserver.*. -# /affiliates/contextual. (easylistchina+easylist.txt: 13488) -/(.*/)?affiliates/contextual\. -# /affiliates/ban (easylistchina+easylist.txt: 13487) -/(.*/)?affiliates/ban -# /affiliates/*/show_banner. (easylistchina+easylist.txt: 13486) -/(.*/)?affiliates/.*/show_banner\. -# /affiliates.*.aspx? (easylistchina+easylist.txt: 13485) -/(.*/)?affiliates\..*\.aspx\? -affiliates.*./.*\.aspx\? -# /affiliateimages/* (easylistchina+easylist.txt: 13484) -/(.*/)?affiliateimages/.* -# /affiliatebanners/* (easylistchina+easylist.txt: 13483) -/(.*/)?affiliatebanners/.* -# /affiliatebanner/* (easylistchina+easylist.txt: 13482) -/(.*/)?affiliatebanner/.* -# /affiliateadvertisement. (easylistchina+easylist.txt: 13481) -/(.*/)?affiliateadvertisement\. -affiliateadvertisement.*. -# /affiliateads/* (easylistchina+easylist.txt: 13480) -/(.*/)?affiliateads/.* -# /affiliate_show_iframe. (easylistchina+easylist.txt: 13479) -/(.*/)?affiliate_show_iframe\. -# /affiliate_show_banner. (easylistchina+easylist.txt: 13478) -/(.*/)?affiliate_show_banner\. -# /affiliate_resources/* (easylistchina+easylist.txt: 13477) -/(.*/)?affiliate_resources/.* -# /affiliate_base/banners/* (easylistchina+easylist.txt: 13476) -/(.*/)?affiliate_base/banners/.* -# /affiliate_banners/* (easylistchina+easylist.txt: 13475) -/(.*/)?affiliate_banners/.* -# /affiliate_banner/* (easylistchina+easylist.txt: 13474) -/(.*/)?affiliate_banner/.* -# /affiliate/small_banner/* (easylistchina+easylist.txt: 13473) -/(.*/)?affiliate/small_banner/.* -# /affiliate/script.php? (easylistchina+easylist.txt: 13472) -/(.*/)?affiliate/script\.php\? -# /affiliate/promo/* (easylistchina+easylist.txt: 13471) -/(.*/)?affiliate/promo/.* -# /affiliate/promo- (easylistchina+easylist.txt: 13470) -/(.*/)?affiliate/promo- -# /affiliate/banners/* (easylistchina+easylist.txt: 13469) -/(.*/)?affiliate/banners/.* -# /affiliate/banner/* (easylistchina+easylist.txt: 13468) -/(.*/)?affiliate/banner/.* -# /affiliate/ads/* (easylistchina+easylist.txt: 13467) -/(.*/)?affiliate/ads/.* -# /affiliate/ad/* (easylistchina+easylist.txt: 13466) -/(.*/)?affiliate/ad/.* -# /affiliate-content/* (easylistchina+easylist.txt: 13465) -/(.*/)?affiliate-content/.* -# /Affiliate-Banner- (easylistchina+easylist.txt: 13464) -/(.*/)?Affiliate-Banner- -Affiliate-Banner-*. -# /affilatebanner. (easylistchina+easylist.txt: 13463) -/(.*/)?affilatebanner\. -affilatebanner.*. -# /affclick/* (easylistchina+easylist.txt: 13462) -/(.*/)?affclick/.* -# /affbeat/banners/* (easylistchina+easylist.txt: 13461) -/(.*/)?affbeat/banners/.* -# /affbanners/* (easylistchina+easylist.txt: 13460) -/(.*/)?affbanners/.* -# /affbanner/* (easylistchina+easylist.txt: 13459) -/(.*/)?affbanner/.* -# /affads/* (easylistchina+easylist.txt: 13458) -/(.*/)?affads/.* -# /affad? (easylistchina+easylist.txt: 13457) -/(.*/)?affad\? -# /aff_i?offer_id= (easylistchina+easylist.txt: 13456) -/(.*/)?aff_i\?offer_id= -# /aff_frame. (easylistchina+easylist.txt: 13455) -/(.*/)?aff_frame\. -# /aff_banners/* (easylistchina+easylist.txt: 13454) -/(.*/)?aff_banners/.* -# /aff_ad? (easylistchina+easylist.txt: 13453) -/(.*/)?aff_ad\? -# /aff/images/* (easylistchina+easylist.txt: 13452) -/(.*/)?aff/images/.* -# /aff/ads_ (easylistchina+easylist.txt: 13451) -/(.*/)?aff/ads_ -# /aff.htm (easylistchina+easylist.txt: 13450) -/(.*/)?aff\.htm -aff.htm*. -# /aff-exchange/* (easylistchina+easylist.txt: 13449) -/(.*/)?aff-exchange/.* -# /afdsafads/* (easylistchina+easylist.txt: 13448) -/(.*/)?afdsafads/.* -# /afcsearchads. (easylistchina+easylist.txt: 13447) -/(.*/)?afcsearchads\. -afcsearchads.*. -# /afcads. (easylistchina+easylist.txt: 13446) -/(.*/)?afcads\. -afcads.*. -# /afc-match?q= (easylistchina+easylist.txt: 13445) -/(.*/)?afc-match\?q= -# /adztop. (easylistchina+easylist.txt: 13444) -/(.*/)?adztop\. -adztop.*. -# /adzonetop. (easylistchina+easylist.txt: 13443) -/(.*/)?adzonetop\. -adzonetop.*. -# /adzonesidead. (easylistchina+easylist.txt: 13442) -/(.*/)?adzonesidead\. -adzonesidead.*. -# /adzones/* (easylistchina+easylist.txt: 13441) -/(.*/)?adzones/.* -# /adzoneright. (easylistchina+easylist.txt: 13440) -/(.*/)?adzoneright\. -adzoneright.*. -# /adzoneplayerright. (easylistchina+easylist.txt: 13439) -/(.*/)?adzoneplayerright\. -adzoneplayerright.*. -# /adzonelegend. (easylistchina+easylist.txt: 13438) -/(.*/)?adzonelegend\. -adzonelegend.*. -# /adzoneleft. (easylistchina+easylist.txt: 13437) -/(.*/)?adzoneleft\. -adzoneleft.*. -# /adzonecenteradhomepage. (easylistchina+easylist.txt: 13436) -/(.*/)?adzonecenteradhomepage\. -adzonecenteradhomepage.*. -# /adzonebottom. (easylistchina+easylist.txt: 13435) -/(.*/)?adzonebottom\. -adzonebottom.*. -# /adzonebelowplayer. (easylistchina+easylist.txt: 13434) -/(.*/)?adzonebelowplayer\. -adzonebelowplayer.*. -# /AdZoneAdXp. (easylistchina+easylist.txt: 13433) -/(.*/)?AdZoneAdXp\. -AdZoneAdXp.*. -# /adzone_ (easylistchina+easylist.txt: 13432) -/(.*/)?adzone_ -# /adzone4. (easylistchina+easylist.txt: 13431) -/(.*/)?adzone4\. -adzone4.*. -# /adzone/* (easylistchina+easylist.txt: 13430) -/(.*/)?adzone/.* -# /adzone. (easylistchina+easylist.txt: 13429) -/(.*/)?adzone\. -adzone.*. -# /adzilla/* (easylistchina+easylist.txt: 13428) -/(.*/)?adzilla/.* -# /adzerk2_ (easylistchina+easylist.txt: 13427) -/(.*/)?adzerk2_ -# /adzbotm. (easylistchina+easylist.txt: 13426) -/(.*/)?adzbotm\. -adzbotm.*. -# /adyea. (easylistchina+easylist.txt: 13425) -/(.*/)?adyea\. -adyea.*. -# /adyard300. (easylistchina+easylist.txt: 13424) -/(.*/)?adyard300\. -adyard300.*. -# /adyard. (easylistchina+easylist.txt: 13423) -/(.*/)?adyard\. -adyard.*. -# /adxx.php? (easylistchina+easylist.txt: 13422) -/(.*/)?adxx\.php\? -# /adxsite. (easylistchina+easylist.txt: 13421) -/(.*/)?adxsite\. -adxsite.*. -# /adx_iframe_ (easylistchina+easylist.txt: 13420) -/(.*/)?adx_iframe_ -# /adx_flash. (easylistchina+easylist.txt: 13419) -/(.*/)?adx_flash\. -# /adx_exo_ (easylistchina+easylist.txt: 13418) -/(.*/)?adx_exo_ -# /adx2. (easylistchina+easylist.txt: 13417) -/(.*/)?adx2\. -adx2.*. -# /adx160. (easylistchina+easylist.txt: 13416) -/(.*/)?adx160\. -adx160.*. -# /adx/ads? (easylistchina+easylist.txt: 13415) -/(.*/)?adx/ads\? -# /adwriter2. (easylistchina+easylist.txt: 13413) -/(.*/)?adwriter2\. -adwriter2.*. -# /adwrapperiframe. (easylistchina+easylist.txt: 13412) -/(.*/)?adwrapperiframe\. -adwrapperiframe.*. -# /adwrapper/* (easylistchina+easylist.txt: 13411) -/(.*/)?adwrapper/.* -# /adworx_ (easylistchina+easylist.txt: 13410) -/(.*/)?adworx_ -# /adworx. (easylistchina+easylist.txt: 13409) -/(.*/)?adworx\. -adworx.*. -# /adworldmedia/* (easylistchina+easylist.txt: 13408) -/(.*/)?adworldmedia/.* -# /adworks/* (easylistchina+easylist.txt: 13407) -/(.*/)?adworks/.* -# /adWorking/* (easylistchina+easylist.txt: 13405) -/(.*/)?adWorking/.* -# /adwordstracking.js (easylistchina+easylist.txt: 13404) -/(.*/)?adwordstracking\.js -adwordstracking.js*. -# /adwords/* (easylistchina+easylist.txt: 13403) -/(.*/)?adwords/.* -# /adwolf. (easylistchina+easylist.txt: 13401) -/(.*/)?adwolf\. -adwolf.*. -# /adwizard_ (easylistchina+easylist.txt: 13400) -/(.*/)?adwizard_ -# /adwizard. (easylistchina+easylist.txt: 13399) -/(.*/)?adwizard\. -adwizard.*. -# /adwiz/* (easylistchina+easylist.txt: 13398) -/(.*/)?adwiz/.* -# /adwiz. (easylistchina+easylist.txt: 13397) -/(.*/)?adwiz\. -adwiz.*. -# /adWiseShopPlus1. (easylistchina+easylist.txt: 13396) -/(.*/)?adWiseShopPlus1\. -adWiseShopPlus1.*. -# /adwise/* (easylistchina+easylist.txt: 13395) -/(.*/)?adwise/.* -# /adwidgets/* (easylistchina+easylist.txt: 13394) -/(.*/)?adwidgets/.* -# /adwidget/* (easylistchina+easylist.txt: 13393) -/(.*/)?adwidget/.* -# /adweb33. (easylistchina+easylist.txt: 13392) -/(.*/)?adweb33\. -adweb33.*. -# /adweb2. (easylistchina+easylist.txt: 13391) -/(.*/)?adweb2\. -adweb2.*. -# /adweb. (easylistchina+easylist.txt: 13390) -/(.*/)?adweb\. -adweb.*. -# /adw2.shtml (easylistchina+easylist.txt: 13389) -/(.*/)?adw2\.shtml -adw2.shtml*. -# /adw.shtml (easylistchina+easylist.txt: 13388) -/(.*/)?adw\.shtml -adw.shtml*. -# /advzones/* (easylistchina+easylist.txt: 13387) -/(.*/)?advzones/.* -# /AdvWindow/* (easylistchina+easylist.txt: 13386) -/(.*/)?AdvWindow/.* -# /advweb. (easylistchina+easylist.txt: 13385) -/(.*/)?advweb\. -advweb.*. -# /advtemplate_ (easylistchina+easylist.txt: 13384) -/(.*/)?advtemplate_ -# /advtemplate/* (easylistchina+easylist.txt: 13383) -/(.*/)?advtemplate/.* -# /advtarget/* (easylistchina+easylist.txt: 13382) -/(.*/)?advtarget/.* -# /advt2. (easylistchina+easylist.txt: 13381) -/(.*/)?advt2\. -advt2.*. -# /advt/* (easylistchina+easylist.txt: 13380) -/(.*/)?advt/.* -# /advt. (easylistchina+easylist.txt: 13379) -/(.*/)?advt\. -advt.*. -# /advshow. (easylistchina+easylist.txt: 13378) -/(.*/)?advshow\. -advshow.*. -# /advscripts/* (easylistchina+easylist.txt: 13377) -/(.*/)?advscripts/.* -# /advscript. (easylistchina+easylist.txt: 13376) -/(.*/)?advscript\. -advscript.*. -# /advs/* (easylistchina+easylist.txt: 13375) -/(.*/)?advs/.* -# /advs.ads. (easylistchina+easylist.txt: 13374) -/(.*/)?advs\.ads\. -advs.ads.*. -# /advrotator. (easylistchina+easylist.txt: 13373) -/(.*/)?advrotator\. -advrotator.*. -# /advris/* (easylistchina+easylist.txt: 13372) -/(.*/)?advris/.* -# /advpreload. (easylistchina+easylist.txt: 13371) -/(.*/)?advpreload\. -advpreload.*. -# /advPop. (easylistchina+easylist.txt: 13370) -/(.*/)?advPop\. -advPop.*. -# /advpartnerinit. (easylistchina+easylist.txt: 13369) -/(.*/)?advpartnerinit\. -advpartnerinit.*. -# /advolatility. (easylistchina+easylist.txt: 13368) -/(.*/)?advolatility\. -advolatility.*. -# /advloader. (easylistchina+easylist.txt: 13367) -/(.*/)?advloader\. -advloader.*. -# /advlink300. (easylistchina+easylist.txt: 13366) -/(.*/)?advlink300\. -advlink300.*. -# /adVisit. (easylistchina+easylist.txt: 13365) -/(.*/)?adVisit\. -adVisit.*. -# /advision. (easylistchina+easylist.txt: 13364) -/(.*/)?advision\. -advision.*. -# /advinfo. (easylistchina+easylist.txt: 13363) -/(.*/)?advinfo\. -advinfo.*. -# /adviframe/* (easylistchina+easylist.txt: 13362) -/(.*/)?adviframe/.* -# /adviewer. (easylistchina+easylist.txt: 13361) -/(.*/)?adviewer\. -adviewer.*. -# /adviewed. (easylistchina+easylist.txt: 13360) -/(.*/)?adviewed\. -adviewed.*. -# /adviewas3. (easylistchina+easylist.txt: 13359) -/(.*/)?adviewas3\. -adviewas3.*. -# /adview_ (easylistchina+easylist.txt: 13358) -/(.*/)?adview_ -# /adview? (easylistchina+easylist.txt: 13357) -/(.*/)?adview\? -# /adview/* (easylistchina+easylist.txt: 13356) -/(.*/)?adview/.* -# /adview. (easylistchina+easylist.txt: 13355) -/(.*/)?adview\. -adview.*. -# /advice-ads. (easylistchina+easylist.txt: 13354) -/(.*/)?advice-ads\. -advice-ads.*. -# /advhd. (easylistchina+easylist.txt: 13353) -/(.*/)?advhd\. -advhd.*. -# /advfiles/* (easylistchina+easylist.txt: 13352) -/(.*/)?advfiles/.* -# /advf1. (easylistchina+easylist.txt: 13351) -/(.*/)?advf1\. -advf1.*. -# /advertwebapp. (easylistchina+easylist.txt: 13350) -/(.*/)?advertwebapp\. -advertwebapp.*. -# /advertverticallong. (easylistchina+easylist.txt: 13349) -/(.*/)?advertverticallong\. -advertverticallong.*. -# /adverttop. (easylistchina+easylist.txt: 13348) -/(.*/)?adverttop\. -adverttop.*. -# /advertstub. (easylistchina+easylist.txt: 13347) -/(.*/)?advertstub\. -advertstub.*. -# /advertsquare. (easylistchina+easylist.txt: 13346) -/(.*/)?advertsquare\. -advertsquare.*. -# /advertsky. (easylistchina+easylist.txt: 13345) -/(.*/)?advertsky\. -advertsky.*. -# /advertserve. (easylistchina+easylist.txt: 13344) -/(.*/)?advertserve\. -advertserve.*. -# /adverts_ (easylistchina+easylist.txt: 13343) -/(.*/)?adverts_ -# /adverts/* (easylistchina+easylist.txt: 13342) -/(.*/)?adverts/.* -# /adverts. (easylistchina+easylist.txt: 13341) -/(.*/)?adverts\. -adverts.*. -# /advertright. (easylistchina+easylist.txt: 13340) -/(.*/)?advertright\. -advertright.*. -# /advertrail. (easylistchina+easylist.txt: 13339) -/(.*/)?advertrail\. -advertrail.*. -# /advertpro/* (easylistchina+easylist.txt: 13338) -/(.*/)?advertpro/.* -# /advertpixelmedia1. (easylistchina+easylist.txt: 13337) -/(.*/)?advertpixelmedia1\. -advertpixelmedia1.*. -# /advertphp/* (easylistchina+easylist.txt: 13336) -/(.*/)?advertphp/.* -# /advertorials/* (easylistchina+easylist.txt: 13335) -/(.*/)?advertorials/.* -# /advertorial_ (easylistchina+easylist.txt: 13334) -/(.*/)?advertorial_ -# /advertorial/* (easylistchina+easylist.txt: 13333) -/(.*/)?advertorial/.* -# /advertmsig. (easylistchina+easylist.txt: 13332) -/(.*/)?advertmsig\. -advertmsig.*. -# /advertmedia/* (easylistchina+easylist.txt: 13331) -/(.*/)?advertmedia/.* -# /advertlayer. (easylistchina+easylist.txt: 13330) -/(.*/)?advertlayer\. -advertlayer.*. -# /advertize_ (easylistchina+easylist.txt: 13329) -/(.*/)?advertize_ -# /advertisments/* (easylistchina+easylist.txt: 13328) -/(.*/)?advertisments/.* -# /advertisment_ (easylistchina+easylist.txt: 13327) -/(.*/)?advertisment_ -# /advertisment1- (easylistchina+easylist.txt: 13326) -/(.*/)?advertisment1- -advertisment1-*. -# /advertisment/* (easylistchina+easylist.txt: 13325) -/(.*/)?advertisment/.* -# /advertisment. (easylistchina+easylist.txt: 13324) -/(.*/)?advertisment\. -advertisment.*. -# /advertisment- (easylistchina+easylist.txt: 13323) -/(.*/)?advertisment- -advertisment-*. -# /advertisingwidgets/* (easylistchina+easylist.txt: 13322) -/(.*/)?advertisingwidgets/.* -# /advertisings. (easylistchina+easylist.txt: 13321) -/(.*/)?advertisings\. -advertisings.*. -# /advertisingmodule. (easylistchina+easylist.txt: 13320) -/(.*/)?advertisingmodule\. -advertisingmodule.*. -# /advertisingmanual. (easylistchina+easylist.txt: 13319) -/(.*/)?advertisingmanual\. -advertisingmanual.*. -# /advertisinglinks_ (easylistchina+easylist.txt: 13318) -/(.*/)?advertisinglinks_ -# /AdvertisingIsPresent6? (easylistchina+easylist.txt: 13317) -/(.*/)?AdvertisingIsPresent6\? -# /advertisingimageexte/* (easylistchina+easylist.txt: 13316) -/(.*/)?advertisingimageexte/.* -# /advertisingcontent/* (easylistchina+easylist.txt: 13315) -/(.*/)?advertisingcontent/.* -# /advertisingbutton. (easylistchina+easylist.txt: 13314) -/(.*/)?advertisingbutton\. -advertisingbutton.*. -# /advertisingbanner_ (easylistchina+easylist.txt: 13313) -/(.*/)?advertisingbanner_ -# /advertisingbanner1. (easylistchina+easylist.txt: 13312) -/(.*/)?advertisingbanner1\. -advertisingbanner1.*. -# /advertisingbanner/* (easylistchina+easylist.txt: 13311) -/(.*/)?advertisingbanner/.* -# /advertisingbanner. (easylistchina+easylist.txt: 13310) -/(.*/)?advertisingbanner\. -advertisingbanner.*. -# /advertising_ (easylistchina+easylist.txt: 13309) -/(.*/)?advertising_ -# /advertising? (easylistchina+easylist.txt: 13308) -/(.*/)?advertising\? -# /advertising300x250. (easylistchina+easylist.txt: 13307) -/(.*/)?advertising300x250\. -advertising300x250.*. -# /advertising2. (easylistchina+easylist.txt: 13306) -/(.*/)?advertising2\. -advertising2.*. -# /advertising02. (easylistchina+easylist.txt: 13305) -/(.*/)?advertising02\. -advertising02.*. -# /advertising. (easylistchina+easylist.txt: 13303) -/(.*/)?advertising\. -advertising.*. -# /advertisewithus_ (easylistchina+easylist.txt: 13301) -/(.*/)?advertisewithus_ -# /advertises/* (easylistchina+easylist.txt: 13300) -/(.*/)?advertises/.* -# /advertiserwidget. (easylistchina+easylist.txt: 13299) -/(.*/)?advertiserwidget\. -advertiserwidget.*. -# /advertisementview/* (easylistchina+easylist.txt: 13294) -/(.*/)?advertisementview/.* -# /AdvertisementShare. (easylistchina+easylist.txt: 13293) -/(.*/)?AdvertisementShare\. -AdvertisementShare.*. -# /advertisements_ (easylistchina+easylist.txt: 13292) -/(.*/)?advertisements_ -# /advertisements2. (easylistchina+easylist.txt: 13291) -/(.*/)?advertisements2\. -advertisements2.*. -# /advertisements/* (easylistchina+easylist.txt: 13290) -/(.*/)?advertisements/.* -# /advertisements. (easylistchina+easylist.txt: 13289) -/(.*/)?advertisements\. -advertisements.*. -# /advertisements- (easylistchina+easylist.txt: 13288) -/(.*/)?advertisements- -advertisements-*. -# /advertisementrotation. (easylistchina+easylist.txt: 13287) -/(.*/)?advertisementrotation\. -advertisementrotation.*. -# /advertisementmapping. (easylistchina+easylist.txt: 13286) -/(.*/)?advertisementmapping\. -advertisementmapping.*. -# /advertisementheader. (easylistchina+easylist.txt: 13285) -/(.*/)?advertisementheader\. -advertisementheader.*. -# /advertisementAPI/* (easylistchina+easylist.txt: 13284) -/(.*/)?advertisementAPI/.* -# /advertisement_ (easylistchina+easylist.txt: 13283) -/(.*/)?advertisement_ -# /advertisement3. (easylistchina+easylist.txt: 13282) -/(.*/)?advertisement3\. -advertisement3.*. -# /advertisement2. (easylistchina+easylist.txt: 13281) -/(.*/)?advertisement2\. -advertisement2.*. -# /advertisement160. (easylistchina+easylist.txt: 13280) -/(.*/)?advertisement160\. -advertisement160.*. -# /advertisement1. (easylistchina+easylist.txt: 13279) -/(.*/)?advertisement1\. -advertisement1.*. -# /advertisement/* (easylistchina+easylist.txt: 13278) -/(.*/)?advertisement/.* -# /advertisement. (easylistchina+easylist.txt: 13277) -/(.*/)?advertisement\. -advertisement.*. -# /advertisement- (easylistchina+easylist.txt: 13276) -/(.*/)?advertisement- -advertisement-*. -# /advertisehere. (easylistchina+easylist.txt: 13275) -/(.*/)?advertisehere\. -advertisehere.*. -# /advertise_ (easylistchina+easylist.txt: 13274) -/(.*/)?advertise_ -# /advertise125x125. (easylistchina+easylist.txt: 13273) -/(.*/)?advertise125x125\. -advertise125x125.*. -# /advertise/* (easylistchina+easylist.txt: 13272) -/(.*/)?advertise/.* -# /advertise- (easylistchina+easylist.txt: 13270) -/(.*/)?advertise- -advertise-*. -# /advertical. (easylistchina+easylist.txt: 13269) -/(.*/)?advertical\. -advertical.*. -# /adverthorisontalfullwidth. (easylistchina+easylist.txt: 13268) -/(.*/)?adverthorisontalfullwidth\. -adverthorisontalfullwidth.*. -# /adverth. (easylistchina+easylist.txt: 13267) -/(.*/)?adverth\. -adverth.*. -# /advertguruonline1. (easylistchina+easylist.txt: 13266) -/(.*/)?advertguruonline1\. -advertguruonline1.*. -# /advertbox. (easylistchina+easylist.txt: 13265) -/(.*/)?advertbox\. -advertbox.*. -# /advertbanner2. (easylistchina+easylist.txt: 13264) -/(.*/)?advertbanner2\. -advertbanner2.*. -# /advertbanner. (easylistchina+easylist.txt: 13263) -/(.*/)?advertbanner\. -advertbanner.*. -# /advert_ (easylistchina+easylist.txt: 13262) -/(.*/)?advert_ -# /advert? (easylistchina+easylist.txt: 13261) -/(.*/)?advert\? -# /advert6. (easylistchina+easylist.txt: 13260) -/(.*/)?advert6\. -advert6.*. -# /advert5. (easylistchina+easylist.txt: 13259) -/(.*/)?advert5\. -advert5.*. -# /advert4. (easylistchina+easylist.txt: 13258) -/(.*/)?advert4\. -advert4.*. -# /advert37. (easylistchina+easylist.txt: 13257) -/(.*/)?advert37\. -advert37.*. -# /advert36. (easylistchina+easylist.txt: 13256) -/(.*/)?advert36\. -advert36.*. -# /advert35. (easylistchina+easylist.txt: 13255) -/(.*/)?advert35\. -advert35.*. -# /advert34. (easylistchina+easylist.txt: 13254) -/(.*/)?advert34\. -advert34.*. -# /advert33. (easylistchina+easylist.txt: 13253) -/(.*/)?advert33\. -advert33.*. -# /advert32. (easylistchina+easylist.txt: 13252) -/(.*/)?advert32\. -advert32.*. -# /advert31. (easylistchina+easylist.txt: 13251) -/(.*/)?advert31\. -advert31.*. -# /advert3. (easylistchina+easylist.txt: 13250) -/(.*/)?advert3\. -advert3.*. -# /advert2. (easylistchina+easylist.txt: 13249) -/(.*/)?advert2\. -advert2.*. -# /advert1/* (easylistchina+easylist.txt: 13248) -/(.*/)?advert1/.* -# /advert1. (easylistchina+easylist.txt: 13247) -/(.*/)?advert1\. -advert1.*. -# /advert01. (easylistchina+easylist.txt: 13246) -/(.*/)?advert01\. -advert01.*. -# /advert/* (easylistchina+easylist.txt: 13245) -/(.*/)?advert/.* -# /advert. (easylistchina+easylist.txt: 13244) -/(.*/)?advert\. -advert.*. -# /advert- (easylistchina+easylist.txt: 13243) -/(.*/)?advert- -advert-*. -# /adversting? (easylistchina+easylist.txt: 13242) -/(.*/)?adversting\? -# /adversting/* (easylistchina+easylist.txt: 13241) -/(.*/)?adversting/.* -# /adverserve. (easylistchina+easylist.txt: 13240) -/(.*/)?adverserve\. -adverserve.*. -# /adverfisement2. (easylistchina+easylist.txt: 13239) -/(.*/)?adverfisement2\. -adverfisement2.*. -# /adverfisement. (easylistchina+easylist.txt: 13238) -/(.*/)?adverfisement\. -adverfisement.*. -# /adver_hor. (easylistchina+easylist.txt: 13237) -/(.*/)?adver_hor\. -# /adver. (easylistchina+easylist.txt: 13236) -/(.*/)?adver\. -adver.*. -# /adver-left. (easylistchina+easylist.txt: 13235) -/(.*/)?adver-left\. -adver-left.*. -# /advengine. (easylistchina+easylist.txt: 13234) -/(.*/)?advengine\. -advengine.*. -# /advdoc/* (easylistchina+easylist.txt: 13233) -/(.*/)?advdoc/.* -# /advdl. (easylistchina+easylist.txt: 13232) -/(.*/)?advdl\. -advdl.*. -# /advcounter. (easylistchina+easylist.txt: 13231) -/(.*/)?advcounter\. -advcounter.*. -# /advcontents. (easylistchina+easylist.txt: 13230) -/(.*/)?advcontents\. -advcontents.*. -# /advbanners/* (easylistchina+easylist.txt: 13229) -/(.*/)?advbanners/.* -# /advbanner/* (easylistchina+easylist.txt: 13228) -/(.*/)?advbanner/.* -# /advault. (easylistchina+easylist.txt: 13227) -/(.*/)?advault\. -advault.*. -# /advanced-ads- (easylistchina+easylist.txt: 13226) -/(.*/)?advanced-ads- -advanced-ads-*. -# /advaluewriter. (easylistchina+easylist.txt: 13225) -/(.*/)?advaluewriter\. -advaluewriter.*. -# /advalue_ (easylistchina+easylist.txt: 13224) -/(.*/)?advalue_ -# /advalue/* (easylistchina+easylist.txt: 13223) -/(.*/)?advalue/.* -# /adv_vertical. (easylistchina+easylist.txt: 13222) -/(.*/)?adv_vertical\. -# /adv_vert. (easylistchina+easylist.txt: 13221) -/(.*/)?adv_vert\. -# /adv_top. (easylistchina+easylist.txt: 13220) -/(.*/)?adv_top\. -# /adv_teasers. (easylistchina+easylist.txt: 13219) -/(.*/)?adv_teasers\. -# /adv_server. (easylistchina+easylist.txt: 13218) -/(.*/)?adv_server\. -# /adv_script_ (easylistchina+easylist.txt: 13217) -/(.*/)?adv_script_ -# /adv_player_ (easylistchina+easylist.txt: 13216) -/(.*/)?adv_player_ -# /adv_out. (easylistchina+easylist.txt: 13215) -/(.*/)?adv_out\. -# /adv_manager_ (easylistchina+easylist.txt: 13214) -/(.*/)?adv_manager_ -# /adv_link. (easylistchina+easylist.txt: 13213) -/(.*/)?adv_link\. -# /adv_library3. (easylistchina+easylist.txt: 13212) -/(.*/)?adv_library3\. -# /adv_left_ (easylistchina+easylist.txt: 13211) -/(.*/)?adv_left_ -# /adv_image/* (easylistchina+easylist.txt: 13210) -/(.*/)?adv_image/.* -# /adv_horiz. (easylistchina+easylist.txt: 13209) -/(.*/)?adv_horiz\. -# /adv_frame/* (easylistchina+easylist.txt: 13208) -/(.*/)?adv_frame/.* -# /adv_flash. (easylistchina+easylist.txt: 13207) -/(.*/)?adv_flash\. -# /adv_display. (easylistchina+easylist.txt: 13206) -/(.*/)?adv_display\. -# /adv_burt_ (easylistchina+easylist.txt: 13205) -/(.*/)?adv_burt_ -# /adv_box_ (easylistchina+easylist.txt: 13204) -/(.*/)?adv_box_ -# /adv_banner_ (easylistchina+easylist.txt: 13203) -/(.*/)?adv_banner_ -# /adv_background/* (easylistchina+easylist.txt: 13202) -/(.*/)?adv_background/.* -# /adv_468. (easylistchina+easylist.txt: 13201) -/(.*/)?adv_468\. -# /adv_2. (easylistchina+easylist.txt: 13200) -/(.*/)?adv_2\. -# /adv8. (easylistchina+easylist.txt: 13199) -/(.*/)?adv8\. -adv8.*. -# /adv6. (easylistchina+easylist.txt: 13198) -/(.*/)?adv6\. -adv6.*. -# /adv5. (easylistchina+easylist.txt: 13197) -/(.*/)?adv5\. -adv5.*. -# /Adv468. (easylistchina+easylist.txt: 13196) -/(.*/)?Adv468\. -Adv468.*. -# /adv4. (easylistchina+easylist.txt: 13195) -/(.*/)?adv4\. -adv4.*. -# /adv3. (easylistchina+easylist.txt: 13194) -/(.*/)?adv3\. -adv3.*. -# /adv2. (easylistchina+easylist.txt: 13193) -/(.*/)?adv2\. -adv2.*. -# /adv180x150. (easylistchina+easylist.txt: 13192) -/(.*/)?adv180x150\. -adv180x150.*. -# /Adv150. (easylistchina+easylist.txt: 13191) -/(.*/)?Adv150\. -Adv150.*. -# /adv1. (easylistchina+easylist.txt: 13190) -/(.*/)?adv1\. -adv1.*. -# /adv03. (easylistchina+easylist.txt: 13189) -/(.*/)?adv03\. -adv03.*. -# /adv02. (easylistchina+easylist.txt: 13188) -/(.*/)?adv02\. -adv02.*. -# /adv/topBanners. (easylistchina+easylist.txt: 13187) -/(.*/)?adv/topBanners\. -# /adv/sprintf- (easylistchina+easylist.txt: 13186) -/(.*/)?adv/sprintf- -# /adv/sponsor/* (easylistchina+easylist.txt: 13185) -/(.*/)?adv/sponsor/.* -# /adv/skin_ (easylistchina+easylist.txt: 13184) -/(.*/)?adv/skin_ -# /adv/skin. (easylistchina+easylist.txt: 13183) -/(.*/)?adv/skin\. -# /adv/search. (easylistchina+easylist.txt: 13182) -/(.*/)?adv/search\. -# /adv/script2. (easylistchina+easylist.txt: 13181) -/(.*/)?adv/script2\. -# /adv/script1. (easylistchina+easylist.txt: 13180) -/(.*/)?adv/script1\. -# /adv/rdb. (easylistchina+easylist.txt: 13179) -/(.*/)?adv/rdb\. -# /adv/preroll_ (easylistchina+easylist.txt: 13178) -/(.*/)?adv/preroll_ -# /adv/mobile/* (easylistchina+easylist.txt: 13177) -/(.*/)?adv/mobile/.* -# /adv/mjx. (easylistchina+easylist.txt: 13176) -/(.*/)?adv/mjx\. -# /adv/managers/* (easylistchina+easylist.txt: 13175) -/(.*/)?adv/managers/.* -# /adv/lrec_ (easylistchina+easylist.txt: 13174) -/(.*/)?adv/lrec_ -# /adv/kelkoo_ (easylistchina+easylist.txt: 13173) -/(.*/)?adv/kelkoo_ -# /adv/kelkoo/* (easylistchina+easylist.txt: 13172) -/(.*/)?adv/kelkoo/.* -# /adv/interstitial. (easylistchina+easylist.txt: 13171) -/(.*/)?adv/interstitial\. -# /adv/box- (easylistchina+easylist.txt: 13170) -/(.*/)?adv/box- -# /adv/bottomBanners. (easylistchina+easylist.txt: 13169) -/(.*/)?adv/bottomBanners\. -# /adv/banner1/* (easylistchina+easylist.txt: 13168) -/(.*/)?adv/banner1/.* -# /adv/banner/* (easylistchina+easylist.txt: 13167) -/(.*/)?adv/banner/.* -# /adv/background/* (easylistchina+easylist.txt: 13166) -/(.*/)?adv/background/.* -# /adv/adv_ (easylistchina+easylist.txt: 13165) -/(.*/)?adv/adv_ -# /adv/ads/* (easylistchina+easylist.txt: 13164) -/(.*/)?adv/ads/.* -# /adv/adriver (easylistchina+easylist.txt: 13163) -/(.*/)?adv/adriver -# /adv.png (easylistchina+easylist.txt: 13162) -/(.*/)?adv\.png -adv.png*. -# /adv.php (easylistchina+easylist.txt: 13161) -/(.*/)?adv\.php -adv.php*. -# /adv.jsp (easylistchina+easylist.txt: 13160) -/(.*/)?adv\.jsp -adv.jsp*. -# /adv.html (easylistchina+easylist.txt: 13159) -/(.*/)?adv\.html -adv.html*. -# /adv.css? (easylistchina+easylist.txt: 13158) -/(.*/)?adv\.css\? -# /adv.asp (easylistchina+easylist.txt: 13157) -/(.*/)?adv\.asp -adv.asp*. -# /adv-socialbar- (easylistchina+easylist.txt: 13156) -/(.*/)?adv-socialbar- -adv-socialbar-*. -# /adv-scroll. (easylistchina+easylist.txt: 13155) -/(.*/)?adv-scroll\. -adv-scroll.*. -# /adv-f. (easylistchina+easylist.txt: 13154) -/(.*/)?adv-f\. -adv-f.*. -# /adv-ext- (easylistchina+easylist.txt: 13153) -/(.*/)?adv-ext- -adv-ext-*. -# /adv-expand/* (easylistchina+easylist.txt: 13152) -/(.*/)?adv-expand/.* -# /adv-div- (easylistchina+easylist.txt: 13151) -/(.*/)?adv-div- -adv-div-*. -# /adv-banners/* (easylistchina+easylist.txt: 13150) -/(.*/)?adv-banners/.* -# /adv-bannerize- (easylistchina+easylist.txt: 13149) -/(.*/)?adv-bannerize- -adv-bannerize-*. -# /adv-banner. (easylistchina+easylist.txt: 13148) -/(.*/)?adv-banner\. -adv-banner.*. -# /adv-2. (easylistchina+easylist.txt: 13147) -/(.*/)?adv-2\. -adv-2.*. -# /adv-1. (easylistchina+easylist.txt: 13146) -/(.*/)?adv-1\. -adv-1.*. -# /aduxads/* (easylistchina+easylist.txt: 13145) -/(.*/)?aduxads/.* -# /aduxads. (easylistchina+easylist.txt: 13144) -/(.*/)?aduxads\. -aduxads.*. -# /adutils. (easylistchina+easylist.txt: 13143) -/(.*/)?adutils\. -adutils.*. -# /adutil. (easylistchina+easylist.txt: 13142) -/(.*/)?adutil\. -adutil.*. -# /adunix. (easylistchina+easylist.txt: 13141) -/(.*/)?adunix\. -adunix.*. -# /adunittop| (easylistchina+easylist.txt: 13140) -/(.*/)?adunittop$ -# /adunits? (easylistchina+easylist.txt: 13139) -/(.*/)?adunits\? -# /adunits/* (easylistchina+easylist.txt: 13138) -/(.*/)?adunits/.* -# /adunits. (easylistchina+easylist.txt: 13137) -/(.*/)?adunits\. -adunits.*. -# /adunit/* (easylistchina+easylist.txt: 13136) -/(.*/)?adunit/.* -# /adunit. (easylistchina+easylist.txt: 13135) -/(.*/)?adunit\. -adunit.*. -# /adultimate. (easylistchina+easylist.txt: 13134) -/(.*/)?adultimate\. -adultimate.*. -# /adultadworldpop_ (easylistchina+easylist.txt: 13133) -/(.*/)?adultadworldpop_ -# /adtype= (easylistchina+easylist.txt: 13132) -/(.*/)?adtype= -# /adtype. (easylistchina+easylist.txt: 13131) -/(.*/)?adtype\. -adtype.*. -# /adtxt. (easylistchina+easylist.txt: 13130) -/(.*/)?adtxt\. -adtxt.*. -# /adtvideo. (easylistchina+easylist.txt: 13129) -/(.*/)?adtvideo\. -adtvideo.*. -# /adttext. (easylistchina+easylist.txt: 13128) -/(.*/)?adttext\. -adttext.*. -# /adttext- (easylistchina+easylist.txt: 13127) -/(.*/)?adttext- -adttext-*. -# /adtraff. (easylistchina+easylist.txt: 13126) -/(.*/)?adtraff\. -adtraff.*. -# /adtracking/* (easylistchina+easylist.txt: 13125) -/(.*/)?adtracking/.* -# /adtracking. (easylistchina+easylist.txt: 13124) -/(.*/)?adtracking\. -adtracking.*. -# /adtracker? (easylistchina+easylist.txt: 13123) -/(.*/)?adtracker\? -# /adtracker/* (easylistchina+easylist.txt: 13122) -/(.*/)?adtracker/.* -# /adtracker. (easylistchina+easylist.txt: 13121) -/(.*/)?adtracker\. -adtracker.*. -# /adtrack/* (easylistchina+easylist.txt: 13120) -/(.*/)?adtrack/.* -# /adtrack. (easylistchina+easylist.txt: 13119) -/(.*/)?adtrack\. -adtrack.*. -# /adtopsky. (easylistchina+easylist.txt: 13118) -/(.*/)?adtopsky\. -adtopsky.*. -# /adtopright. (easylistchina+easylist.txt: 13117) -/(.*/)?adtopright\. -adtopright.*. -# /adtopmidsky. (easylistchina+easylist.txt: 13116) -/(.*/)?adtopmidsky\. -adtopmidsky.*. -# /adtopleft. (easylistchina+easylist.txt: 13115) -/(.*/)?adtopleft\. -adtopleft.*. -# /adtopcenter. (easylistchina+easylist.txt: 13114) -/(.*/)?adtopcenter\. -adtopcenter.*. -# /adtop728. (easylistchina+easylist.txt: 13113) -/(.*/)?adtop728\. -adtop728.*. -# /adtop300. (easylistchina+easylist.txt: 13112) -/(.*/)?adtop300\. -adtop300.*. -# /adtop160. (easylistchina+easylist.txt: 13111) -/(.*/)?adtop160\. -adtop160.*. -# /adtop. (easylistchina+easylist.txt: 13110) -/(.*/)?adtop\. -adtop.*. -# /adtooltip/* (easylistchina+easylist.txt: 13109) -/(.*/)?adtooltip/.* -# /adtools2. (easylistchina+easylist.txt: 13108) -/(.*/)?adtools2\. -adtools2.*. -# /adtools/* (easylistchina+easylist.txt: 13107) -/(.*/)?adtools/.* -# /adtool/* (easylistchina+easylist.txt: 13106) -/(.*/)?adtool/.* -# /adtonomy. (easylistchina+easylist.txt: 13105) -/(.*/)?adtonomy\. -adtonomy.*. -# /adtomo/* (easylistchina+easylist.txt: 13104) -/(.*/)?adtomo/.* -# /adtology. (easylistchina+easylist.txt: 13103) -/(.*/)?adtology\. -adtology.*. -# /adtitle. (easylistchina+easylist.txt: 13102) -/(.*/)?adtitle\. -adtitle.*. -# /adtimage. (easylistchina+easylist.txt: 13101) -/(.*/)?adtimage\. -adtimage.*. -# /adtextmpu2. (easylistchina+easylist.txt: 13100) -/(.*/)?adtextmpu2\. -adtextmpu2.*. -# /adtext_ (easylistchina+easylist.txt: 13099) -/(.*/)?adtext_ -# /adtext4. (easylistchina+easylist.txt: 13098) -/(.*/)?adtext4\. -adtext4.*. -# /adtext2. (easylistchina+easylist.txt: 13097) -/(.*/)?adtext2\. -adtext2.*. -# /adtext. (easylistchina+easylist.txt: 13096) -/(.*/)?adtext\. -adtext.*. -# /adtest/* (easylistchina+easylist.txt: 13095) -/(.*/)?adtest/.* -# /adtest. (easylistchina+easylist.txt: 13094) -/(.*/)?adtest\. -adtest.*. -# /adtechscript. (easylistchina+easylist.txt: 13093) -/(.*/)?adtechscript\. -adtechscript.*. -# /adtechHeader. (easylistchina+easylist.txt: 13092) -/(.*/)?adtechHeader\. -adtechHeader.*. -# /adtechglobalsettings.js (easylistchina+easylist.txt: 13091) -/(.*/)?adtechglobalsettings\.js -adtechglobalsettings.js*. -# /adtech_ (easylistchina+easylist.txt: 13090) -/(.*/)?adtech_ -# /adtech; (easylistchina+easylist.txt: 13089) -/(.*/)?adtech; -# /adtech/* (easylistchina+easylist.txt: 13088) -/(.*/)?adtech/.* -# /adtech. (easylistchina+easylist.txt: 13087) -/(.*/)?adtech\. -adtech.*. -# /adtech- (easylistchina+easylist.txt: 13086) -/(.*/)?adtech- -adtech-*. -# /adtaobao. (easylistchina+easylist.txt: 13085) -/(.*/)?adtaobao\. -adtaobao.*. -# /adtaily_ (easylistchina+easylist.txt: 13084) -/(.*/)?adtaily_ -# /adtagtranslator. (easylistchina+easylist.txt: 13083) -/(.*/)?adtagtranslator\. -adtagtranslator.*. -# /adtagtc. (easylistchina+easylist.txt: 13082) -/(.*/)?adtagtc\. -adtagtc.*. -# /adtags/* (easylistchina+easylist.txt: 13081) -/(.*/)?adtags/.* -# /adtags. (easylistchina+easylist.txt: 13080) -/(.*/)?adtags\. -adtags.*. -# /adTagRequest. (easylistchina+easylist.txt: 13079) -/(.*/)?adTagRequest\. -adTagRequest.*. -# /adtago. (easylistchina+easylist.txt: 13078) -/(.*/)?adtago\. -adtago.*. -# /adtaggingsubsec. (easylistchina+easylist.txt: 13077) -/(.*/)?adtaggingsubsec\. -adtaggingsubsec.*. -# /adtagcms. (easylistchina+easylist.txt: 13076) -/(.*/)?adtagcms\. -adtagcms.*. -# /adtag_ (easylistchina+easylist.txt: 13075) -/(.*/)?adtag_ -# /adtag? (easylistchina+easylist.txt: 13074) -/(.*/)?adtag\? -# /adtag/* (easylistchina+easylist.txt: 13073) -/(.*/)?adtag/.* -# /adtag. (easylistchina+easylist.txt: 13072) -/(.*/)?adtag\. -adtag.*. -# /adtadd1. (easylistchina+easylist.txt: 13071) -/(.*/)?adtadd1\. -adtadd1.*. -# /adtabs. (easylistchina+easylist.txt: 13070) -/(.*/)?adtabs\. -adtabs.*. -# /adtable_ (easylistchina+easylist.txt: 13069) -/(.*/)?adtable_ -# /ads~adsize~ (easylistchina+easylist.txt: 13068) -/(.*/)?ads~adsize~ -# /adsystem/* (easylistchina+easylist.txt: 13067) -/(.*/)?adsystem/.* -# /adsystem. (easylistchina+easylist.txt: 13066) -/(.*/)?adsystem\. -adsystem.*. -# /adsys/* (easylistchina+easylist.txt: 13065) -/(.*/)?adsys/.* -# /adsys. (easylistchina+easylist.txt: 13064) -/(.*/)?adsys\. -adsys.*. -# /adsyndication/* (easylistchina+easylist.txt: 13063) -/(.*/)?adsyndication/.* -# /adsyndication. (easylistchina+easylist.txt: 13062) -/(.*/)?adsyndication\. -adsyndication.*. -# /adsync/* (easylistchina+easylist.txt: 13061) -/(.*/)?adsync/.* -# /adsxml/* (easylistchina+easylist.txt: 13060) -/(.*/)?adsxml/.* -# /adsx_728. (easylistchina+easylist.txt: 13059) -/(.*/)?adsx_728\. -# /adsx728. (easylistchina+easylist.txt: 13058) -/(.*/)?adsx728\. -adsx728.*. -# /adsx/* (easylistchina+easylist.txt: 13057) -/(.*/)?adsx/.* -# /adswrapperintl. (easylistchina+easylist.txt: 13056) -/(.*/)?adswrapperintl\. -adswrapperintl.*. -# /adswrapper3. (easylistchina+easylist.txt: 13055) -/(.*/)?adswrapper3\. -adswrapper3.*. -# /adswrapper. (easylistchina+easylist.txt: 13054) -/(.*/)?adswrapper\. -adswrapper.*. -# /adsword. (easylistchina+easylist.txt: 13053) -/(.*/)?adsword\. -adsword.*. -# /adswidejs. (easylistchina+easylist.txt: 13052) -/(.*/)?adswidejs\. -adswidejs.*. -# /adswide. (easylistchina+easylist.txt: 13051) -/(.*/)?adswide\. -adswide.*. -# /adsweb. (easylistchina+easylist.txt: 13050) -/(.*/)?adsweb\. -adsweb.*. -# /adswap/* (easylistchina+easylist.txt: 13049) -/(.*/)?adswap/.* -# /adswap. (easylistchina+easylist.txt: 13048) -/(.*/)?adswap\. -adswap.*. -# /adswap- (easylistchina+easylist.txt: 13047) -/(.*/)?adswap- -adswap-*. -# /adsvr2. (easylistchina+easylist.txt: 13046) -/(.*/)?adsvr2\. -adsvr2.*. -# /adsvr. (easylistchina+easylist.txt: 13045) -/(.*/)?adsvr\. -adsvr.*. -# /adsvo. (easylistchina+easylist.txt: 13044) -/(.*/)?adsvo\. -adsvo.*. -# /adsvariables. (easylistchina+easylist.txt: 13043) -/(.*/)?adsvariables\. -adsvariables.*. -# /adsup. (easylistchina+easylist.txt: 13042) -/(.*/)?adsup\. -adsup.*. -# /adsummos2. (easylistchina+easylist.txt: 13041) -/(.*/)?adsummos2\. -adsummos2.*. -# /adsummos. (easylistchina+easylist.txt: 13040) -/(.*/)?adsummos\. -adsummos.*. -# /adstyle. (easylistchina+easylist.txt: 13039) -/(.*/)?adstyle\. -adstyle.*. -# /adstx. (easylistchina+easylist.txt: 13038) -/(.*/)?adstx\. -adstx.*. -# /adstubs/* (easylistchina+easylist.txt: 13037) -/(.*/)?adstubs/.* -# /adstube/* (easylistchina+easylist.txt: 13036) -/(.*/)?adstube/.* -# /adstub. (easylistchina+easylist.txt: 13035) -/(.*/)?adstub\. -adstub.*. -# /adstrm/* (easylistchina+easylist.txt: 13034) -/(.*/)?adstrm/.* -# /adstrk. (easylistchina+easylist.txt: 13033) -/(.*/)?adstrk\. -adstrk.*. -# /adStrip. (easylistchina+easylist.txt: 13032) -/(.*/)?adStrip\. -adStrip.*. -# /adstreamjscontroller. (easylistchina+easylist.txt: 13031) -/(.*/)?adstreamjscontroller\. -adstreamjscontroller.*. -# /adstream_ (easylistchina+easylist.txt: 13030) -/(.*/)?adstream_ -# /adstream. (easylistchina+easylist.txt: 13029) -/(.*/)?adstream\. -adstream.*. -# /adStrategies/* (easylistchina+easylist.txt: 13028) -/(.*/)?adStrategies/.* -# /adstract/* (easylistchina+easylist.txt: 13027) -/(.*/)?adstract/.* -# /adstracking. (easylistchina+easylist.txt: 13026) -/(.*/)?adstracking\. -adstracking.*. -# /adstorage. (easylistchina+easylist.txt: 13025) -/(.*/)?adstorage\. -adstorage.*. -# /adstop_ (easylistchina+easylist.txt: 13024) -/(.*/)?adstop_ -# /adstop728. (easylistchina+easylist.txt: 13023) -/(.*/)?adstop728\. -adstop728.*. -# /adstop. (easylistchina+easylist.txt: 13022) -/(.*/)?adstop\. -adstop.*. -# /adstitle. (easylistchina+easylist.txt: 13021) -/(.*/)?adstitle\. -adstitle.*. -# /adstemplate/* (easylistchina+easylist.txt: 13020) -/(.*/)?adstemplate/.* -# /adstatic/* (easylistchina+easylist.txt: 13019) -/(.*/)?adstatic/.* -# /adstatic. (easylistchina+easylist.txt: 13018) -/(.*/)?adstatic\. -adstatic.*. -# /adstakeover. (easylistchina+easylist.txt: 13017) -/(.*/)?adstakeover\. -adstakeover.*. -# /adstacodaeu. (easylistchina+easylist.txt: 13016) -/(.*/)?adstacodaeu\. -adstacodaeu.*. -# /adssrv. (easylistchina+easylist.txt: 13015) -/(.*/)?adssrv\. -adssrv.*. -# /adssp. (easylistchina+easylist.txt: 13014) -/(.*/)?adssp\. -adssp.*. -# /adsshow/* (easylistchina+easylist.txt: 13013) -/(.*/)?adsshow/.* -# /AdsShow. (easylistchina+easylist.txt: 13012) -/(.*/)?AdsShow\. -AdsShow.*. -# /adsserver. (easylistchina+easylist.txt: 13011) -/(.*/)?adsserver\. -adsserver.*. -# /adsserv. (easylistchina+easylist.txt: 13010) -/(.*/)?adsserv\. -adsserv.*. -# /adsscript. (easylistchina+easylist.txt: 13009) -/(.*/)?adsscript\. -adsscript.*. -# /adss.asp (easylistchina+easylist.txt: 13008) -/(.*/)?adss\.asp -adss.asp*. -# /adsrv2/* (easylistchina+easylist.txt: 13007) -/(.*/)?adsrv2/.* -# /adsrv/* (easylistchina+easylist.txt: 13006) -/(.*/)?adsrv/.* -# /adsrv. (easylistchina+easylist.txt: 13005) -/(.*/)?adsrv\. -adsrv.*. -# /adsrules/* (easylistchina+easylist.txt: 13004) -/(.*/)?adsrules/.* -# /adsrule. (easylistchina+easylist.txt: 13003) -/(.*/)?adsrule\. -adsrule.*. -# /adsrotator. (easylistchina+easylist.txt: 13002) -/(.*/)?adsrotator\. -adsrotator.*. -# /AdsRotateNEWHeader. (easylistchina+easylist.txt: 13001) -/(.*/)?AdsRotateNEWHeader\. -AdsRotateNEWHeader.*. -# /AdsRotateNEW2right. (easylistchina+easylist.txt: 13000) -/(.*/)?AdsRotateNEW2right\. -AdsRotateNEW2right.*. -# /AdsRotateNEW1right. (easylistchina+easylist.txt: 12999) -/(.*/)?AdsRotateNEW1right\. -AdsRotateNEW1right.*. -# /adsrotateheader. (easylistchina+easylist.txt: 12998) -/(.*/)?adsrotateheader\. -adsrotateheader.*. -# /adsrotate2left. (easylistchina+easylist.txt: 12997) -/(.*/)?adsrotate2left\. -adsrotate2left.*. -# /adsrotate1right. (easylistchina+easylist.txt: 12996) -/(.*/)?adsrotate1right\. -adsrotate1right.*. -# /adsrotate1left. (easylistchina+easylist.txt: 12995) -/(.*/)?adsrotate1left\. -adsrotate1left.*. -# /adsrotate. (easylistchina+easylist.txt: 12994) -/(.*/)?adsrotate\. -adsrotate.*. -# /adsrot2. (easylistchina+easylist.txt: 12993) -/(.*/)?adsrot2\. -adsrot2.*. -# /adsrot. (easylistchina+easylist.txt: 12992) -/(.*/)?adsrot\. -adsrot.*. -# /adsright. (easylistchina+easylist.txt: 12991) -/(.*/)?adsright\. -adsright.*. -# /adsrich. (easylistchina+easylist.txt: 12990) -/(.*/)?adsrich\. -adsrich.*. -# /adsresources/* (easylistchina+easylist.txt: 12989) -/(.*/)?adsresources/.* -# /adsreporting/* (easylistchina+easylist.txt: 12988) -/(.*/)?adsreporting/.* -# /adsremote. (easylistchina+easylist.txt: 12987) -/(.*/)?adsremote\. -adsremote.*. -# /adsrc300. (easylistchina+easylist.txt: 12986) -/(.*/)?adsrc300\. -adsrc300.*. -# /adsrc. (easylistchina+easylist.txt: 12985) -/(.*/)?adsrc\. -adsrc.*. -# /adsquareleft. (easylistchina+easylist.txt: 12984) -/(.*/)?adsquareleft\. -adsquareleft.*. -# /adsquare. (easylistchina+easylist.txt: 12983) -/(.*/)?adsquare\. -adsquare.*. -# /adsq/* (easylistchina+easylist.txt: 12982) -/(.*/)?adsq/.* -# /AdsPublisher. (easylistchina+easylist.txt: 12981) -/(.*/)?AdsPublisher\. -AdsPublisher.*. -# /adspro/* (easylistchina+easylist.txt: 12980) -/(.*/)?adspro/.* -# /adspots/* (easylistchina+easylist.txt: 12979) -/(.*/)?adspots/.* -# /adspot_ (easylistchina+easylist.txt: 12978) -/(.*/)?adspot_ -# /adspot/* (easylistchina+easylist.txt: 12977) -/(.*/)?adspot/.* -# /adspot. (easylistchina+easylist.txt: 12976) -/(.*/)?adspot\. -adspot.*. -# /adsponsor. (easylistchina+easylist.txt: 12975) -/(.*/)?adsponsor\. -adsponsor.*. -# /adsplupu. (easylistchina+easylist.txt: 12974) -/(.*/)?adsplupu\. -adsplupu.*. -# /adsPlugin/* (easylistchina+easylist.txt: 12973) -/(.*/)?adsPlugin/.* -# /AdsPlugin. (easylistchina+easylist.txt: 12972) -/(.*/)?AdsPlugin\. -AdsPlugin.*. -# /Adsplex- (easylistchina+easylist.txt: 12971) -/(.*/)?Adsplex- -Adsplex-*. -# /adsplay. (easylistchina+easylist.txt: 12970) -/(.*/)?adsplay\. -adsplay.*. -# /adspeeler/* (easylistchina+easylist.txt: 12969) -/(.*/)?adspeeler/.* -# /adspan. (easylistchina+easylist.txt: 12968) -/(.*/)?adspan\. -adspan.*. -# /adspacer. (easylistchina+easylist.txt: 12967) -/(.*/)?adspacer\. -adspacer.*. -# /adspace? (easylistchina+easylist.txt: 12966) -/(.*/)?adspace\? -# /adspace2. (easylistchina+easylist.txt: 12965) -/(.*/)?adspace2\. -adspace2.*. -# /AdSpace160x60. (easylistchina+easylist.txt: 12964) -/(.*/)?AdSpace160x60\. -AdSpace160x60.*. -# /adspace1. (easylistchina+easylist.txt: 12963) -/(.*/)?adspace1\. -adspace1.*. -# /adspace/* (easylistchina+easylist.txt: 12962) -/(.*/)?adspace/.* -# /adspace. (easylistchina+easylist.txt: 12961) -/(.*/)?adspace\. -adspace.*. -# /adsp/* (easylistchina+easylist.txt: 12960) -/(.*/)?adsp/.* -# /adsoverlay_ (easylistchina+easylist.txt: 12959) -/(.*/)?adsoverlay_ -# /adsource_ (easylistchina+easylist.txt: 12958) -/(.*/)?adsource_ -# /adsopenx/* (easylistchina+easylist.txt: 12957) -/(.*/)?adsopenx/.* -# /adsonar. (easylistchina+easylist.txt: 12956) -/(.*/)?adsonar\. -adsonar.*. -# /adsniptrack. (easylistchina+easylist.txt: 12955) -/(.*/)?adsniptrack\. -adsniptrack.*. -# /adsnippet. (easylistchina+easylist.txt: 12954) -/(.*/)?adsnippet\. -adsnippet.*. -# /adsnip. (easylistchina+easylist.txt: 12953) -/(.*/)?adsnip\. -adsnip.*. -# /adsnew/* (easylistchina+easylist.txt: 12952) -/(.*/)?adsnew/.* -# /adsnew. (easylistchina+easylist.txt: 12951) -/(.*/)?adsnew\. -adsnew.*. -# /adsmodules/* (easylistchina+easylist.txt: 12950) -/(.*/)?adsmodules/.* -# /adsmm.dll/* (easylistchina+easylist.txt: 12949) -/(.*/)?adsmm\.dll/.* -adsmm.dll/.* -# /adsmedia_ (easylistchina+easylist.txt: 12948) -/(.*/)?adsmedia_ -# /adsManagerV2. (easylistchina+easylist.txt: 12947) -/(.*/)?adsManagerV2\. -adsManagerV2.*. -# /adsmanager/* (easylistchina+easylist.txt: 12946) -/(.*/)?adsmanager/.* -# /adsmanagement/* (easylistchina+easylist.txt: 12945) -/(.*/)?adsmanagement/.* -# /adsm2. (easylistchina+easylist.txt: 12944) -/(.*/)?adsm2\. -adsm2.*. -# /adslugs/* (easylistchina+easylist.txt: 12943) -/(.*/)?adslugs/.* -# /adslug_ (easylistchina+easylist.txt: 12942) -/(.*/)?adslug_ -# /adslug- (easylistchina+easylist.txt: 12941) -/(.*/)?adslug- -adslug-*. -# /adslots. (easylistchina+easylist.txt: 12940) -/(.*/)?adslots\. -adslots.*. -# /adsline. (easylistchina+easylist.txt: 12939) -/(.*/)?adsline\. -adsline.*. -# /adslides. (easylistchina+easylist.txt: 12938) -/(.*/)?adslides\. -adslides.*. -# /adslide. (easylistchina+easylist.txt: 12937) -/(.*/)?adslide\. -adslide.*. -# /adskyscraper. (easylistchina+easylist.txt: 12936) -/(.*/)?adskyscraper\. -adskyscraper.*. -# /adskyright. (easylistchina+easylist.txt: 12935) -/(.*/)?adskyright\. -adskyright.*. -# /adsky. (easylistchina+easylist.txt: 12934) -/(.*/)?adsky\. -adsky.*. -# /adskin/* (easylistchina+easylist.txt: 12933) -/(.*/)?adskin/.* -# /adsjs. (easylistchina+easylist.txt: 12932) -/(.*/)?adsjs\. -adsjs.*. -# /adsites/* (easylistchina+easylist.txt: 12931) -/(.*/)?adsites/.* -# /adsite/* (easylistchina+easylist.txt: 12930) -/(.*/)?adsite/.* -# /adsinsert. (easylistchina+easylist.txt: 12929) -/(.*/)?adsinsert\. -adsinsert.*. -# /adsindie/* (easylistchina+easylist.txt: 12928) -/(.*/)?adsindie/.* -# /adsinclude. (easylistchina+easylist.txt: 12927) -/(.*/)?adsinclude\. -adsinclude.*. -# /adsImg/* (easylistchina+easylist.txt: 12926) -/(.*/)?adsImg/.* -# /adsimages/* (easylistchina+easylist.txt: 12925) -/(.*/)?adsimages/.* -# /adsimage/* (easylistchina+easylist.txt: 12924) -/(.*/)?adsimage/.* -# /adsign. (easylistchina+easylist.txt: 12923) -/(.*/)?adsign\. -adsign.*. -# /adsiframe/* (easylistchina+easylist.txt: 12922) -/(.*/)?adsiframe/.* -# /adsiframe. (easylistchina+easylist.txt: 12921) -/(.*/)?adsiframe\. -adsiframe.*. -# /adsidebarrect. (easylistchina+easylist.txt: 12920) -/(.*/)?adsidebarrect\. -adsidebarrect.*. -# /adsidebar. (easylistchina+easylist.txt: 12919) -/(.*/)?adsidebar\. -adsidebar.*. -# /adsicon/* (easylistchina+easylist.txt: 12918) -/(.*/)?adsicon/.* -# /adsico3. (easylistchina+easylist.txt: 12917) -/(.*/)?adsico3\. -adsico3.*. -# /adsico2. (easylistchina+easylist.txt: 12916) -/(.*/)?adsico2\. -adsico2.*. -# /adsico. (easylistchina+easylist.txt: 12915) -/(.*/)?adsico\. -adsico.*. -# /adsi-j. (easylistchina+easylist.txt: 12914) -/(.*/)?adsi-j\. -adsi-j.*. -# /adshtml2/* (easylistchina+easylist.txt: 12913) -/(.*/)?adshtml2/.* -# /adshow_ (easylistchina+easylist.txt: 12912) -/(.*/)?adshow_ -# /adshow? (easylistchina+easylist.txt: 12911) -/(.*/)?adshow\? -# /adshow/* (easylistchina+easylist.txt: 12910) -/(.*/)?adshow/.* -# /adshow. (easylistchina+easylist.txt: 12909) -/(.*/)?adshow\. -adshow.*. -# /adshow- (easylistchina+easylist.txt: 12908) -/(.*/)?adshow- -adshow-*. -# /adsheader. (easylistchina+easylist.txt: 12907) -/(.*/)?adsheader\. -adsheader.*. -# /adshare3. (easylistchina+easylist.txt: 12906) -/(.*/)?adshare3\. -adshare3.*. -# /adshare/* (easylistchina+easylist.txt: 12905) -/(.*/)?adshare/.* -# /adshare. (easylistchina+easylist.txt: 12904) -/(.*/)?adshare\. -adshare.*. -# /adshandler. (easylistchina+easylist.txt: 12903) -/(.*/)?adshandler\. -adshandler.*. -# /adsGooglePP3. (easylistchina+easylist.txt: 12902) -/(.*/)?adsGooglePP3\. -adsGooglePP3.*. -# /adsgame. (easylistchina+easylist.txt: 12901) -/(.*/)?adsgame\. -adsgame.*. -# /adsfuse- (easylistchina+easylist.txt: 12900) -/(.*/)?adsfuse- -adsfuse-*. -# /adsframe. (easylistchina+easylist.txt: 12899) -/(.*/)?adsframe\. -adsframe.*. -# /adsfolder/* (easylistchina+easylist.txt: 12898) -/(.*/)?adsfolder/.* -# /adsfloat. (easylistchina+easylist.txt: 12897) -/(.*/)?adsfloat\. -adsfloat.*. -# /adsfinal. (easylistchina+easylist.txt: 12896) -/(.*/)?adsfinal\. -adsfinal.*. -# /adsfiles. (easylistchina+easylist.txt: 12895) -/(.*/)?adsfiles\. -adsfiles.*. -# /adsfile. (easylistchina+easylist.txt: 12894) -/(.*/)?adsfile\. -adsfile.*. -# /adsfetch. (easylistchina+easylist.txt: 12893) -/(.*/)?adsfetch\. -adsfetch.*. -# /adsfac. (easylistchina+easylist.txt: 12892) -/(.*/)?adsfac\. -adsfac.*. -# /adsetup_ (easylistchina+easylist.txt: 12891) -/(.*/)?adsetup_ -# /adsetup. (easylistchina+easylist.txt: 12890) -/(.*/)?adsetup\. -adsetup.*. -# /adsession_ (easylistchina+easylist.txt: 12889) -/(.*/)?adsession_ -# /adsession. (easylistchina+easylist.txt: 12888) -/(.*/)?adsession\. -adsession.*. -# /adserv|*|adtech; (easylistchina+easylist.txt: 12887) -/(.*/)?adserv\|.*\|adtech; -# /AdServlet? (easylistchina+easylist.txt: 12886) -/(.*/)?AdServlet\? -# /adserving_ (easylistchina+easylist.txt: 12885) -/(.*/)?adserving_ -# /adserving/* (easylistchina+easylist.txt: 12884) -/(.*/)?adserving/.* -# /adserving. (easylistchina+easylist.txt: 12883) -/(.*/)?adserving\. -adserving.*. -# /adservice| (easylistchina+easylist.txt: 12882) -/(.*/)?adservice$ -# /adservices/* (easylistchina+easylist.txt: 12881) -/(.*/)?adservices/.* -# /adservice/* (easylistchina+easylist.txt: 12880) -/(.*/)?adservice/.* -# /adservice. (easylistchina+easylist.txt: 12879) -/(.*/)?adservice\. -adservice.*. -# /adservice- (easylistchina+easylist.txt: 12878) -/(.*/)?adservice- -adservice-*. -# /adservervastvideovizu. (easylistchina+easylist.txt: 12877) -/(.*/)?adservervastvideovizu\. -adservervastvideovizu.*. -# /adserverstore. (easylistchina+easylist.txt: 12876) -/(.*/)?adserverstore\. -adserverstore.*. -# /adserversolutions/* (easylistchina+easylist.txt: 12875) -/(.*/)?adserversolutions/.* -# /adservers- (easylistchina+easylist.txt: 12874) -/(.*/)?adservers- -adservers-*. -# /adserverpub? (easylistchina+easylist.txt: 12873) -/(.*/)?adserverpub\? -# /adserverdata. (easylistchina+easylist.txt: 12872) -/(.*/)?adserverdata\. -adserverdata.*. -# /adserver_ (easylistchina+easylist.txt: 12871) -/(.*/)?adserver_ -# /adserver? (easylistchina+easylist.txt: 12870) -/(.*/)?adserver\? -# /adserver8strip. (easylistchina+easylist.txt: 12869) -/(.*/)?adserver8strip\. -adserver8strip.*. -# /adserver7/* (easylistchina+easylist.txt: 12868) -/(.*/)?adserver7/.* -# /adserver3. (easylistchina+easylist.txt: 12867) -/(.*/)?adserver3\. -adserver3.*. -# /adserver2/* (easylistchina+easylist.txt: 12866) -/(.*/)?adserver2/.* -# /adserver2. (easylistchina+easylist.txt: 12865) -/(.*/)?adserver2\. -adserver2.*. -# /adserver1. (easylistchina+easylist.txt: 12864) -/(.*/)?adserver1\. -adserver1.*. -# /adserver1- (easylistchina+easylist.txt: 12863) -/(.*/)?adserver1- -adserver1-*. -# /adserver/* (easylistchina+easylist.txt: 12862) -/(.*/)?adserver/.* -# /adserver. (easylistchina+easylist.txt: 12861) -/(.*/)?adserver\. -adserver.*. -# /adserver- (easylistchina+easylist.txt: 12860) -/(.*/)?adserver- -adserver-*. -# /adserve_ (easylistchina+easylist.txt: 12859) -/(.*/)?adserve_ -# /adserve/* (easylistchina+easylist.txt: 12858) -/(.*/)?adserve/.* -# /adserve. (easylistchina+easylist.txt: 12857) -/(.*/)?adserve\. -adserve.*. -# /adserve- (easylistchina+easylist.txt: 12856) -/(.*/)?adserve- -adserve-*. -# /adserv_ (easylistchina+easylist.txt: 12855) -/(.*/)?adserv_ -# /adserv3. (easylistchina+easylist.txt: 12854) -/(.*/)?adserv3\. -adserv3.*. -# /adserv2. (easylistchina+easylist.txt: 12853) -/(.*/)?adserv2\. -adserv2.*. -# /adserv1. (easylistchina+easylist.txt: 12852) -/(.*/)?adserv1\. -adserv1.*. -# /adserv/* (easylistchina+easylist.txt: 12851) -/(.*/)?adserv/.* -# /adserv. (easylistchina+easylist.txt: 12850) -/(.*/)?adserv\. -adserv.*. -# /adser/* (easylistchina+easylist.txt: 12849) -/(.*/)?adser/.* -# /adseperator_ (easylistchina+easylist.txt: 12848) -/(.*/)?adseperator_ -# /adseo/* (easylistchina+easylist.txt: 12847) -/(.*/)?adseo/.* -# /adseo. (easylistchina+easylist.txt: 12846) -/(.*/)?adseo\. -adseo.*. -# /adsenze. (easylistchina+easylist.txt: 12845) -/(.*/)?adsenze\. -adsenze.*. -# /adsensev2. (easylistchina+easylist.txt: 12844) -/(.*/)?adsensev2\. -adsensev2.*. -# /adsensets. (easylistchina+easylist.txt: 12843) -/(.*/)?adsensets\. -adsensets.*. -# /adsensegoogle. (easylistchina+easylist.txt: 12842) -/(.*/)?adsensegoogle\. -adsensegoogle.*. -# /adsensegb. (easylistchina+easylist.txt: 12841) -/(.*/)?adsensegb\. -adsensegb.*. -# /AdsenseBlockView. (easylistchina+easylist.txt: 12840) -/(.*/)?AdsenseBlockView\. -AdsenseBlockView.*. -# /adsense_ (easylistchina+easylist.txt: 12839) -/(.*/)?adsense_ -# /adsense? (easylistchina+easylist.txt: 12838) -/(.*/)?adsense\? -# /adsense5. (easylistchina+easylist.txt: 12837) -/(.*/)?adsense5\. -adsense5.*. -# /adsense4. (easylistchina+easylist.txt: 12836) -/(.*/)?adsense4\. -adsense4.*. -# /adsense3. (easylistchina+easylist.txt: 12835) -/(.*/)?adsense3\. -adsense3.*. -# /adsense250. (easylistchina+easylist.txt: 12834) -/(.*/)?adsense250\. -adsense250.*. -# /adsense24. (easylistchina+easylist.txt: 12833) -/(.*/)?adsense24\. -adsense24.*. -# /adsense23. (easylistchina+easylist.txt: 12832) -/(.*/)?adsense23\. -adsense23.*. -# /adsense2. (easylistchina+easylist.txt: 12831) -/(.*/)?adsense2\. -adsense2.*. -# /adsense1. (easylistchina+easylist.txt: 12830) -/(.*/)?adsense1\. -adsense1.*. -# /adsense/* (easylistchina+easylist.txt: 12829) -/(.*/)?adsense/.* -# /adsense. (easylistchina+easylist.txt: 12828) -/(.*/)?adsense\. -adsense.*. -# /adsense- (easylistchina+easylist.txt: 12827) -/(.*/)?adsense- -adsense-*. -# /adsEnd. (easylistchina+easylist.txt: 12826) -/(.*/)?adsEnd\. -adsEnd.*. -# /adsenceSearchTop. (easylistchina+easylist.txt: 12825) -/(.*/)?adsenceSearchTop\. -adsenceSearchTop.*. -# /adsenceSearch. (easylistchina+easylist.txt: 12824) -/(.*/)?adsenceSearch\. -adsenceSearch.*. -# /adsence. (easylistchina+easylist.txt: 12823) -/(.*/)?adsence\. -adsence.*. -# /adseller/* (easylistchina+easylist.txt: 12822) -/(.*/)?adseller/.* -# /adsegmentation. (easylistchina+easylist.txt: 12821) -/(.*/)?adsegmentation\. -adsegmentation.*. -# /adsecondary. (easylistchina+easylist.txt: 12820) -/(.*/)?adsecondary\. -adsecondary.*. -# /adSearch? (easylistchina+easylist.txt: 12819) -/(.*/)?adSearch\? -# /adsearch. (easylistchina+easylist.txt: 12818) -/(.*/)?adsearch\. -adsearch.*. -# /adsDynLoad/* (easylistchina+easylist.txt: 12817) -/(.*/)?adsDynLoad/.* -# /adsdyn160x160. (easylistchina+easylist.txt: 12816) -/(.*/)?adsdyn160x160\. -adsdyn160x160.*. -# /adsdm. (easylistchina+easylist.txt: 12815) -/(.*/)?adsdm\. -adsdm.*. -# /adsdfp/* (easylistchina+easylist.txt: 12814) -/(.*/)?adsdfp/.* -# /adsdelivery. (easylistchina+easylist.txt: 12813) -/(.*/)?adsdelivery\. -adsdelivery.*. -# /adsDateValidation. (easylistchina+easylist.txt: 12812) -/(.*/)?adsDateValidation\. -adsDateValidation.*. -# /adsdaqsky_ (easylistchina+easylist.txt: 12811) -/(.*/)?adsdaqsky_ -# /adsdaqbox_ (easylistchina+easylist.txt: 12810) -/(.*/)?adsdaqbox_ -# /adsdaqbanner_ (easylistchina+easylist.txt: 12809) -/(.*/)?adsdaqbanner_ -# /adsdaq_ (easylistchina+easylist.txt: 12808) -/(.*/)?adsdaq_ -# /adscroll. (easylistchina+easylist.txt: 12807) -/(.*/)?adscroll\. -adscroll.*. -# /adscripts3. (easylistchina+easylist.txt: 12806) -/(.*/)?adscripts3\. -adscripts3.*. -# /adscripts2. (easylistchina+easylist.txt: 12805) -/(.*/)?adscripts2\. -adscripts2.*. -# /adscripts1. (easylistchina+easylist.txt: 12804) -/(.*/)?adscripts1\. -adscripts1.*. -# /adscripts/* (easylistchina+easylist.txt: 12803) -/(.*/)?adscripts/.* -# /adscript_ (easylistchina+easylist.txt: 12802) -/(.*/)?adscript_ -# /adscript1. (easylistchina+easylist.txt: 12801) -/(.*/)?adscript1\. -adscript1.*. -# /adscript. (easylistchina+easylist.txt: 12800) -/(.*/)?adscript\. -adscript.*. -# /adscpv/* (easylistchina+easylist.txt: 12799) -/(.*/)?adscpv/.* -# /adscontent2. (easylistchina+easylist.txt: 12798) -/(.*/)?adscontent2\. -adscontent2.*. -# /adscontent. (easylistchina+easylist.txt: 12797) -/(.*/)?adscontent\. -adscontent.*. -# /adscluster. (easylistchina+easylist.txt: 12796) -/(.*/)?adscluster\. -adscluster.*. -# /adscloud. (easylistchina+easylist.txt: 12795) -/(.*/)?adscloud\. -adscloud.*. -# /adscaleskyscraper. (easylistchina+easylist.txt: 12794) -/(.*/)?adscaleskyscraper\. -adscaleskyscraper.*. -# /adscalecontentad. (easylistchina+easylist.txt: 12793) -/(.*/)?adscalecontentad\. -adscalecontentad.*. -# /adscalebigsize. (easylistchina+easylist.txt: 12792) -/(.*/)?adscalebigsize\. -adscalebigsize.*. -# /adscale_ (easylistchina+easylist.txt: 12791) -/(.*/)?adscale_ -# /adscale1. (easylistchina+easylist.txt: 12790) -/(.*/)?adscale1\. -adscale1.*. -# /adscale. (easylistchina+easylist.txt: 12789) -/(.*/)?adscale\. -adscale.*. -# /adsbygoogle. (easylistchina+easylist.txt: 12788) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# /adsbycurse. (easylistchina+easylist.txt: 12787) -/(.*/)?adsbycurse\. -adsbycurse.*. -# /adsby. (easylistchina+easylist.txt: 12786) -/(.*/)?adsby\. -adsby.*. -# /adsbox. (easylistchina+easylist.txt: 12785) -/(.*/)?adsbox\. -adsbox.*. -# /adsbannerjs. (easylistchina+easylist.txt: 12784) -/(.*/)?adsbannerjs\. -adsbannerjs.*. -# /adsbanner/* (easylistchina+easylist.txt: 12783) -/(.*/)?adsbanner/.* -# /adsbanner. (easylistchina+easylist.txt: 12782) -/(.*/)?adsbanner\. -adsbanner.*. -# /adsbanner- (easylistchina+easylist.txt: 12781) -/(.*/)?adsbanner- -adsbanner-*. -# /adsatt. (easylistchina+easylist.txt: 12780) -/(.*/)?adsatt\. -adsatt.*. -# /adsAPI. (easylistchina+easylist.txt: 12779) -/(.*/)?adsAPI\. -adsAPI.*. -# /adsandtps/* (easylistchina+easylist.txt: 12778) -/(.*/)?adsandtps/.* -# /adsandbox. (easylistchina+easylist.txt: 12777) -/(.*/)?adsandbox\. -adsandbox.*. -# /adsample. (easylistchina+easylist.txt: 12776) -/(.*/)?adsample\. -adsample.*. -# /adsame. (easylistchina+easylist.txt: 12775) -/(.*/)?adsame\. -adsame.*. -# /adsales/* (easylistchina+easylist.txt: 12774) -/(.*/)?adsales/.* -# /AdsAjaxRefresh. (easylistchina+easylist.txt: 12773) -/(.*/)?AdsAjaxRefresh\. -AdsAjaxRefresh.*. -# /adsadview. (easylistchina+easylist.txt: 12772) -/(.*/)?adsadview\. -adsadview.*. -# /adsadclient31. (easylistchina+easylist.txt: 12771) -/(.*/)?adsadclient31\. -adsadclient31.*. -# /adsa728. (easylistchina+easylist.txt: 12770) -/(.*/)?adsa728\. -adsa728.*. -# /adsa468. (easylistchina+easylist.txt: 12769) -/(.*/)?adsa468\. -adsa468.*. -# /ads_yahoo. (easylistchina+easylist.txt: 12768) -/(.*/)?ads_yahoo\. -# /Ads_WFC. (easylistchina+easylist.txt: 12767) -/(.*/)?Ads_WFC\. -# /ads_view. (easylistchina+easylist.txt: 12766) -/(.*/)?ads_view\. -# /ads_ui. (easylistchina+easylist.txt: 12765) -/(.*/)?ads_ui\. -# /ads_topbar_ (easylistchina+easylist.txt: 12764) -/(.*/)?ads_topbar_ -# /ads_top_ (easylistchina+easylist.txt: 12763) -/(.*/)?ads_top_ -# /ads_text_ (easylistchina+easylist.txt: 12762) -/(.*/)?ads_text_ -# /ads_start. (easylistchina+easylist.txt: 12761) -/(.*/)?ads_start\. -# /ads_sidebar. (easylistchina+easylist.txt: 12760) -/(.*/)?ads_sidebar\. -# /ads_show_ (easylistchina+easylist.txt: 12759) -/(.*/)?ads_show_ -# /ads_server_ (easylistchina+easylist.txt: 12758) -/(.*/)?ads_server_ -# /ads_reporting/* (easylistchina+easylist.txt: 12757) -/(.*/)?ads_reporting/.* -# /ads_redirect. (easylistchina+easylist.txt: 12756) -/(.*/)?ads_redirect\. -# /ads_r. (easylistchina+easylist.txt: 12755) -/(.*/)?ads_r\. -# /ads_pro/* (easylistchina+easylist.txt: 12754) -/(.*/)?ads_pro/.* -# /ads_premium. (easylistchina+easylist.txt: 12753) -/(.*/)?ads_premium\. -# /ads_php/* (easylistchina+easylist.txt: 12752) -/(.*/)?ads_php/.* -# /ads_patron. (easylistchina+easylist.txt: 12751) -/(.*/)?ads_patron\. -# /ads_openx_ (easylistchina+easylist.txt: 12750) -/(.*/)?ads_openx_ -# /ads_new/* (easylistchina+easylist.txt: 12749) -/(.*/)?ads_new/.* -# /ads_new. (easylistchina+easylist.txt: 12748) -/(.*/)?ads_new\. -# /ads_min_ (easylistchina+easylist.txt: 12747) -/(.*/)?ads_min_ -# /ads_medrec_ (easylistchina+easylist.txt: 12746) -/(.*/)?ads_medrec_ -# /ads_manager. (easylistchina+easylist.txt: 12745) -/(.*/)?ads_manager\. -# /ads_loader. (easylistchina+easylist.txt: 12744) -/(.*/)?ads_loader\. -# /ads_load/* (easylistchina+easylist.txt: 12743) -/(.*/)?ads_load/.* -# /ads_left_ (easylistchina+easylist.txt: 12742) -/(.*/)?ads_left_ -# /ads_leaderboard_ (easylistchina+easylist.txt: 12741) -/(.*/)?ads_leaderboard_ -# /ads_images/* (easylistchina+easylist.txt: 12740) -/(.*/)?ads_images/.* -# /ads_image/* (easylistchina+easylist.txt: 12739) -/(.*/)?ads_image/.* -# /ads_iframe. (easylistchina+easylist.txt: 12738) -/(.*/)?ads_iframe\. -# /ads_ifr. (easylistchina+easylist.txt: 12737) -/(.*/)?ads_ifr\. -# /ads_home_ (easylistchina+easylist.txt: 12736) -/(.*/)?ads_home_ -# /ads_google. (easylistchina+easylist.txt: 12735) -/(.*/)?ads_google\. -# /ads_gnm/* (easylistchina+easylist.txt: 12734) -/(.*/)?ads_gnm/.* -# /ads_global. (easylistchina+easylist.txt: 12733) -/(.*/)?ads_global\. -# /ads_gallery/* (easylistchina+easylist.txt: 12732) -/(.*/)?ads_gallery/.* -# /ads_frame. (easylistchina+easylist.txt: 12731) -/(.*/)?ads_frame\. -# /ads_footer. (easylistchina+easylist.txt: 12730) -/(.*/)?ads_footer\. -# /Ads_Fix. (easylistchina+easylist.txt: 12729) -/(.*/)?Ads_Fix\. -# /ads_files/* (easylistchina+easylist.txt: 12728) -/(.*/)?ads_files/.* -# /ads_event. (easylistchina+easylist.txt: 12727) -/(.*/)?ads_event\. -# /ads_display. (easylistchina+easylist.txt: 12726) -/(.*/)?ads_display\. -# /ads_dfp/* (easylistchina+easylist.txt: 12725) -/(.*/)?ads_dfp/.* -# /ads_controller. (easylistchina+easylist.txt: 12724) -/(.*/)?ads_controller\. -# /ads_config. (easylistchina+easylist.txt: 12723) -/(.*/)?ads_config\. -# /ads_codes/* (easylistchina+easylist.txt: 12722) -/(.*/)?ads_codes/.* -# /ads_code_ (easylistchina+easylist.txt: 12721) -/(.*/)?ads_code_ -# /ads_code. (easylistchina+easylist.txt: 12720) -/(.*/)?ads_code\. -# /ads_box_ (easylistchina+easylist.txt: 12719) -/(.*/)?ads_box_ -# /ads_bottom_ (easylistchina+easylist.txt: 12718) -/(.*/)?ads_bottom_ -# /ads_bottom. (easylistchina+easylist.txt: 12717) -/(.*/)?ads_bottom\. -# /ads_bg. (easylistchina+easylist.txt: 12716) -/(.*/)?ads_bg\. -# /ads_banners/* (easylistchina+easylist.txt: 12715) -/(.*/)?ads_banners/.* -# /ads_banner_ (easylistchina+easylist.txt: 12714) -/(.*/)?ads_banner_ -# /ads_ad_ (easylistchina+easylist.txt: 12713) -/(.*/)?ads_ad_ -# /ads_728_ (easylistchina+easylist.txt: 12712) -/(.*/)?ads_728_ -# /ads_6. (easylistchina+easylist.txt: 12711) -/(.*/)?ads_6\. -# /ads_300_ (easylistchina+easylist.txt: 12710) -/(.*/)?ads_300_ -# /ads_300. (easylistchina+easylist.txt: 12709) -/(.*/)?ads_300\. -# /ads_3. (easylistchina+easylist.txt: 12708) -/(.*/)?ads_3\. -# /ads_160_ (easylistchina+easylist.txt: 12707) -/(.*/)?ads_160_ -# /ads_1. (easylistchina+easylist.txt: 12706) -/(.*/)?ads_1\. -# /ads?zone_id= (easylistchina+easylist.txt: 12705) -/(.*/)?ads\?zone_id= -# /ads?zone= (easylistchina+easylist.txt: 12704) -/(.*/)?ads\?zone= -# /ads?spaceid (easylistchina+easylist.txt: 12703) -/(.*/)?ads\?spaceid -# /ads?id= (easylistchina+easylist.txt: 12702) -/(.*/)?ads\?id= -# /ads?callback (easylistchina+easylist.txt: 12701) -/(.*/)?ads\?callback -# /ads?apid (easylistchina+easylist.txt: 12700) -/(.*/)?ads\?apid -# /ads9/* (easylistchina+easylist.txt: 12699) -/(.*/)?ads9/.* -# /ads9. (easylistchina+easylist.txt: 12698) -/(.*/)?ads9\. -ads9.*. -# /ads88. (easylistchina+easylist.txt: 12697) -/(.*/)?ads88\. -ads88.*. -# /ads8/* (easylistchina+easylist.txt: 12696) -/(.*/)?ads8/.* -# /ads8. (easylistchina+easylist.txt: 12695) -/(.*/)?ads8\. -ads8.*. -# /ads790. (easylistchina+easylist.txt: 12694) -/(.*/)?ads790\. -ads790.*. -# /ads728x90a. (easylistchina+easylist.txt: 12693) -/(.*/)?ads728x90a\. -ads728x90a.*. -# /ads728x90_ (easylistchina+easylist.txt: 12692) -/(.*/)?ads728x90_ -# /ads728adn2. (easylistchina+easylist.txt: 12691) -/(.*/)?ads728adn2\. -ads728adn2.*. -# /ads728. (easylistchina+easylist.txt: 12690) -/(.*/)?ads728\. -ads728.*. -# /ads7/* (easylistchina+easylist.txt: 12689) -/(.*/)?ads7/.* -# /ads7. (easylistchina+easylist.txt: 12688) -/(.*/)?ads7\. -ads7.*. -# /ads620x60/* (easylistchina+easylist.txt: 12687) -/(.*/)?ads620x60/.* -# /ads600- (easylistchina+easylist.txt: 12686) -/(.*/)?ads600- -ads600-*. -# /ads6/* (easylistchina+easylist.txt: 12685) -/(.*/)?ads6/.* -# /ads6. (easylistchina+easylist.txt: 12684) -/(.*/)?ads6\. -ads6.*. -# /ads5t. (easylistchina+easylist.txt: 12683) -/(.*/)?ads5t\. -ads5t.*. -# /ads5/* (easylistchina+easylist.txt: 12682) -/(.*/)?ads5/.* -# /ads5. (easylistchina+easylist.txt: 12681) -/(.*/)?ads5\. -ads5.*. -# /ads4n. (easylistchina+easylist.txt: 12680) -/(.*/)?ads4n\. -ads4n.*. -# /ads4j. (easylistchina+easylist.txt: 12679) -/(.*/)?ads4j\. -ads4j.*. -# /ads468x60_ (easylistchina+easylist.txt: 12678) -/(.*/)?ads468x60_ -# /ads468x60. (easylistchina+easylist.txt: 12677) -/(.*/)?ads468x60\. -ads468x60.*. -# /ads468. (easylistchina+easylist.txt: 12676) -/(.*/)?ads468\. -ads468.*. -# /ads4/* (easylistchina+easylist.txt: 12675) -/(.*/)?ads4/.* -# /ads300x250px. (easylistchina+easylist.txt: 12673) -/(.*/)?ads300x250px\. -ads300x250px.*. -# /ads300x250_ (easylistchina+easylist.txt: 12672) -/(.*/)?ads300x250_ -# /ads300X2502. (easylistchina+easylist.txt: 12671) -/(.*/)?ads300X2502\. -ads300X2502.*. -# /ads300x250. (easylistchina+easylist.txt: 12670) -/(.*/)?ads300x250\. -ads300x250.*. -# /ads300adn2. (easylistchina+easylist.txt: 12669) -/(.*/)?ads300adn2\. -ads300adn2.*. -# /ads300. (easylistchina+easylist.txt: 12668) -/(.*/)?ads300\. -ads300.*. -# /ads3/* (easylistchina+easylist.txt: 12667) -/(.*/)?ads3/.* -# /ads3. (easylistchina+easylist.txt: 12666) -/(.*/)?ads3\. -ads3.*. -# /ads2x300new. (easylistchina+easylist.txt: 12665) -/(.*/)?ads2x300new\. -ads2x300new.*. -# /ads2_ (easylistchina+easylist.txt: 12664) -/(.*/)?ads2_ -# /ads210. (easylistchina+easylist.txt: 12663) -/(.*/)?ads210\. -ads210.*. -# /ads2013/* (easylistchina+easylist.txt: 12662) -/(.*/)?ads2013/.* -# /ads2012/* (easylistchina+easylist.txt: 12661) -/(.*/)?ads2012/.* -# /ads2/* (easylistchina+easylist.txt: 12660) -/(.*/)?ads2/.* -# /ads2. (easylistchina+easylist.txt: 12659) -/(.*/)?ads2\. -ads2.*. -# /ads18. (easylistchina+easylist.txt: 12658) -/(.*/)?ads18\. -ads18.*. -# /ads160x600px. (easylistchina+easylist.txt: 12657) -/(.*/)?ads160x600px\. -ads160x600px.*. -# /ads160x600. (easylistchina+easylist.txt: 12656) -/(.*/)?ads160x600\. -ads160x600.*. -# /ads160x600- (easylistchina+easylist.txt: 12655) -/(.*/)?ads160x600- -ads160x600-*. -# /ads160. (easylistchina+easylist.txt: 12654) -/(.*/)?ads160\. -ads160.*. -# /ads125_ (easylistchina+easylist.txt: 12653) -/(.*/)?ads125_ -# /ads125. (easylistchina+easylist.txt: 12652) -/(.*/)?ads125\. -ads125.*. -# /ads12. (easylistchina+easylist.txt: 12651) -/(.*/)?ads12\. -ads12.*. -# /ads11/* (easylistchina+easylist.txt: 12650) -/(.*/)?ads11/.* -# /ads11. (easylistchina+easylist.txt: 12649) -/(.*/)?ads11\. -ads11.*. -# /ads100. (easylistchina+easylist.txt: 12648) -/(.*/)?ads100\. -ads100.*. -# /ads10/* (easylistchina+easylist.txt: 12647) -/(.*/)?ads10/.* -# /ads10. (easylistchina+easylist.txt: 12646) -/(.*/)?ads10\. -ads10.*. -# /ads1/* (easylistchina+easylist.txt: 12645) -/(.*/)?ads1/.* -# /ads1. (easylistchina+easylist.txt: 12644) -/(.*/)?ads1\. -ads1.*. -# /ads09a/* (easylistchina+easylist.txt: 12643) -/(.*/)?ads09a/.* -# /ads05. (easylistchina+easylist.txt: 12642) -/(.*/)?ads05\. -ads05.*. -# /ads01. (easylistchina+easylist.txt: 12641) -/(.*/)?ads01\. -ads01.*. -# /ads0. (easylistchina+easylist.txt: 12640) -/(.*/)?ads0\. -ads0.*. -# /ads/zone/* (easylistchina+easylist.txt: 12639) -/(.*/)?ads/zone/.* -# /ads/yahoo/* (easylistchina+easylist.txt: 12638) -/(.*/)?ads/yahoo/.* -# /ads/xtcore. (easylistchina+easylist.txt: 12637) -/(.*/)?ads/xtcore\. -# /ads/www/* (easylistchina+easylist.txt: 12636) -/(.*/)?ads/www/.* -# /ads/writecapture. (easylistchina+easylist.txt: 12635) -/(.*/)?ads/writecapture\. -# /ads/widget. (easylistchina+easylist.txt: 12634) -/(.*/)?ads/widget\. -# /ads/widebanner. (easylistchina+easylist.txt: 12633) -/(.*/)?ads/widebanner\. -# /ads/welcomescreen. (easylistchina+easylist.txt: 12632) -/(.*/)?ads/welcomescreen\. -# /ads/webplayer. (easylistchina+easylist.txt: 12631) -/(.*/)?ads/webplayer\. -# /ads/web/* (easylistchina+easylist.txt: 12630) -/(.*/)?ads/web/.* -# /ads/vip_ (easylistchina+easylist.txt: 12629) -/(.*/)?ads/vip_ -# /ads/views/* (easylistchina+easylist.txt: 12628) -/(.*/)?ads/views/.* -# /ads/view. (easylistchina+easylist.txt: 12627) -/(.*/)?ads/view\. -# /ads/video_ (easylistchina+easylist.txt: 12626) -/(.*/)?ads/video_ -# /ads/video/* (easylistchina+easylist.txt: 12625) -/(.*/)?ads/video/.* -# /ads/vg/* (easylistchina+easylist.txt: 12624) -/(.*/)?ads/vg/.* -# /ads/vertical/* (easylistchina+easylist.txt: 12623) -/(.*/)?ads/vertical/.* -# /ads/txt_ (easylistchina+easylist.txt: 12622) -/(.*/)?ads/txt_ -# /ads/triggers/* (easylistchina+easylist.txt: 12621) -/(.*/)?ads/triggers/.* -# /ads/tracker/* (easylistchina+easylist.txt: 12620) -/(.*/)?ads/tracker/.* -# /ads/tr_ (easylistchina+easylist.txt: 12619) -/(.*/)?ads/tr_ -# /ads/top. (easylistchina+easylist.txt: 12618) -/(.*/)?ads/top\. -# /ads/top- (easylistchina+easylist.txt: 12617) -/(.*/)?ads/top- -# /ads/tile- (easylistchina+easylist.txt: 12616) -/(.*/)?ads/tile- -# /ads/third- (easylistchina+easylist.txt: 12615) -/(.*/)?ads/third- -# /ads/text/* (easylistchina+easylist.txt: 12614) -/(.*/)?ads/text/.* -# /ads/targeting. (easylistchina+easylist.txt: 12613) -/(.*/)?ads/targeting\. -# /ads/takeovers/* (easylistchina+easylist.txt: 12612) -/(.*/)?ads/takeovers/.* -# /ads/syndicated/* (easylistchina+easylist.txt: 12611) -/(.*/)?ads/syndicated/.* -# /ads/swfobject. (easylistchina+easylist.txt: 12610) -/(.*/)?ads/swfobject\. -# /ads/sub/* (easylistchina+easylist.txt: 12609) -/(.*/)?ads/sub/.* -# /ads/storysponsors/* (easylistchina+easylist.txt: 12608) -/(.*/)?ads/storysponsors/.* -# /ads/square3. (easylistchina+easylist.txt: 12607) -/(.*/)?ads/square3\. -# /ads/square2. (easylistchina+easylist.txt: 12606) -/(.*/)?ads/square2\. -# /ads/square. (easylistchina+easylist.txt: 12605) -/(.*/)?ads/square\. -# /ads/square- (easylistchina+easylist.txt: 12604) -/(.*/)?ads/square- -# /ads/sponsor (easylistchina+easylist.txt: 12603) -/(.*/)?ads/sponsor -# /ads/spacer. (easylistchina+easylist.txt: 12602) -/(.*/)?ads/spacer\. -# /ads/sky_ (easylistchina+easylist.txt: 12601) -/(.*/)?ads/sky_ -# /ads/skins/* (easylistchina+easylist.txt: 12600) -/(.*/)?ads/skins/.* -# /ads/sitewide_ (easylistchina+easylist.txt: 12599) -/(.*/)?ads/sitewide_ -# /ads/sidedoor/* (easylistchina+easylist.txt: 12598) -/(.*/)?ads/sidedoor/.* -# /ads/sidebar- (easylistchina+easylist.txt: 12597) -/(.*/)?ads/sidebar- -# /ads/side- (easylistchina+easylist.txt: 12596) -/(.*/)?ads/side- -# /ads/show/* (easylistchina+easylist.txt: 12595) -/(.*/)?ads/show/.* -# /ads/show. (easylistchina+easylist.txt: 12594) -/(.*/)?ads/show\. -# /ads/serveIt/* (easylistchina+easylist.txt: 12593) -/(.*/)?ads/serveIt/.* -# /ads/select/* (easylistchina+easylist.txt: 12592) -/(.*/)?ads/select/.* -# /ads/scripts/* (easylistchina+easylist.txt: 12591) -/(.*/)?ads/scripts/.* -# /ads/scriptinject. (easylistchina+easylist.txt: 12590) -/(.*/)?ads/scriptinject\. -# /ads/rotate_ (easylistchina+easylist.txt: 12589) -/(.*/)?ads/rotate_ -# /ads/rotate/* (easylistchina+easylist.txt: 12588) -/(.*/)?ads/rotate/.* -# /ads/ringtone_ (easylistchina+easylist.txt: 12587) -/(.*/)?ads/ringtone_ -# /ads/right/* (easylistchina+easylist.txt: 12586) -/(.*/)?ads/right/.* -# /ads/right. (easylistchina+easylist.txt: 12585) -/(.*/)?ads/right\. -# /ads/reskins/* (easylistchina+easylist.txt: 12584) -/(.*/)?ads/reskins/.* -# /ads/request. (easylistchina+easylist.txt: 12583) -/(.*/)?ads/request\. -# /Ads/Refresher. (easylistchina+easylist.txt: 12582) -/(.*/)?Ads/Refresher\. -# /ads/rectangle_ (easylistchina+easylist.txt: 12581) -/(.*/)?ads/rectangle_ -# /ads/rect_ (easylistchina+easylist.txt: 12580) -/(.*/)?ads/rect_ -# /ads/real_ (easylistchina+easylist.txt: 12579) -/(.*/)?ads/real_ -# /ads/rawstory_ (easylistchina+easylist.txt: 12578) -/(.*/)?ads/rawstory_ -# /ads/rail- (easylistchina+easylist.txt: 12577) -/(.*/)?ads/rail- -# /AdS/RAD. (easylistchina+easylist.txt: 12576) -/(.*/)?AdS/RAD\. -# /ads/proxy- (easylistchina+easylist.txt: 12575) -/(.*/)?ads/proxy- -# /ads/proximic. (easylistchina+easylist.txt: 12574) -/(.*/)?ads/proximic\. -# /ads/promo_ (easylistchina+easylist.txt: 12573) -/(.*/)?ads/promo_ -# /ads/profile/* (easylistchina+easylist.txt: 12572) -/(.*/)?ads/profile/.* -# /ads/preroll_ (easylistchina+easylist.txt: 12571) -/(.*/)?ads/preroll_ -# /ads/preroll/* (easylistchina+easylist.txt: 12570) -/(.*/)?ads/preroll/.* -# /ads/preroll- (easylistchina+easylist.txt: 12569) -/(.*/)?ads/preroll- -# /ads/preloader/* (easylistchina+easylist.txt: 12568) -/(.*/)?ads/preloader/.* -# /ads/postscribe. (easylistchina+easylist.txt: 12567) -/(.*/)?ads/postscribe\. -# /ads/post- (easylistchina+easylist.txt: 12566) -/(.*/)?ads/post- -# /ads/popup_ (easylistchina+easylist.txt: 12565) -/(.*/)?ads/popup_ -# /ads/popup. (easylistchina+easylist.txt: 12564) -/(.*/)?ads/popup\. -# /ads/popshow. (easylistchina+easylist.txt: 12563) -/(.*/)?ads/popshow\. -# /ads/popout. (easylistchina+easylist.txt: 12562) -/(.*/)?ads/popout\. -# /ads/pop. (easylistchina+easylist.txt: 12561) -/(.*/)?ads/pop\. -# /ads/plugs/* (easylistchina+easylist.txt: 12560) -/(.*/)?ads/plugs/.* -# /ads/player- (easylistchina+easylist.txt: 12559) -/(.*/)?ads/player- -# /ads/pencil/* (easylistchina+easylist.txt: 12558) -/(.*/)?ads/pencil/.* -# /ads/payload/* (easylistchina+easylist.txt: 12557) -/(.*/)?ads/payload/.* -# /ads/panel. (easylistchina+easylist.txt: 12556) -/(.*/)?ads/panel\. -# /ads/page. (easylistchina+easylist.txt: 12555) -/(.*/)?ads/page\. -# /ads/p/* (easylistchina+easylist.txt: 12554) -/(.*/)?ads/p/.* -# /ads/overlay/* (easylistchina+easylist.txt: 12553) -/(.*/)?ads/overlay/.* -# /ads/overlay- (easylistchina+easylist.txt: 12552) -/(.*/)?ads/overlay- -# /ads/outbrain? (easylistchina+easylist.txt: 12551) -/(.*/)?ads/outbrain\? -# /ads/oscar/* (easylistchina+easylist.txt: 12550) -/(.*/)?ads/oscar/.* -# /ads/original/* (easylistchina+easylist.txt: 12549) -/(.*/)?ads/original/.* -# /ads/oas_ (easylistchina+easylist.txt: 12548) -/(.*/)?ads/oas_ -# /ads/oas/* (easylistchina+easylist.txt: 12547) -/(.*/)?ads/oas/.* -# /ads/oas- (easylistchina+easylist.txt: 12546) -/(.*/)?ads/oas- -# /ads/ninemsn. (easylistchina+easylist.txt: 12545) -/(.*/)?ads/ninemsn\. -# /ads/navbar/* (easylistchina+easylist.txt: 12544) -/(.*/)?ads/navbar/.* -# /ads/mt_ (easylistchina+easylist.txt: 12543) -/(.*/)?ads/mt_ -# /ads/msn/* (easylistchina+easylist.txt: 12542) -/(.*/)?ads/msn/.* -# /ads/mpu? (easylistchina+easylist.txt: 12541) -/(.*/)?ads/mpu\? -# /ads/mpu2? (easylistchina+easylist.txt: 12540) -/(.*/)?ads/mpu2\? -# /ads/mpu/* (easylistchina+easylist.txt: 12539) -/(.*/)?ads/mpu/.* -# /ads/motherless. (easylistchina+easylist.txt: 12538) -/(.*/)?ads/motherless\. -# /ads/middle/* (easylistchina+easylist.txt: 12537) -/(.*/)?ads/middle/.* -# /ads/menu_ (easylistchina+easylist.txt: 12536) -/(.*/)?ads/menu_ -# /ads/masthead_ (easylistchina+easylist.txt: 12535) -/(.*/)?ads/masthead_ -# /ads/marketing/* (easylistchina+easylist.txt: 12534) -/(.*/)?ads/marketing/.* -# /ads/main. (easylistchina+easylist.txt: 12533) -/(.*/)?ads/main\. -# /ads/load. (easylistchina+easylist.txt: 12532) -/(.*/)?ads/load\. -# /ads/leaderbox. (easylistchina+easylist.txt: 12531) -/(.*/)?ads/leaderbox\. -# /ads/leaderboard_ (easylistchina+easylist.txt: 12530) -/(.*/)?ads/leaderboard_ -# /ads/leaderboard? (easylistchina+easylist.txt: 12529) -/(.*/)?ads/leaderboard\? -# /ads/leaderboard/* (easylistchina+easylist.txt: 12528) -/(.*/)?ads/leaderboard/.* -# /ads/leaderboard. (easylistchina+easylist.txt: 12527) -/(.*/)?ads/leaderboard\. -# /ads/leaderboard- (easylistchina+easylist.txt: 12526) -/(.*/)?ads/leaderboard- -# /ads/layer. (easylistchina+easylist.txt: 12525) -/(.*/)?ads/layer\. -# /ads/labels/* (easylistchina+easylist.txt: 12524) -/(.*/)?ads/labels/.* -# /ads/jsbannertext. (easylistchina+easylist.txt: 12523) -/(.*/)?ads/jsbannertext\. -# /ads/js_ (easylistchina+easylist.txt: 12522) -/(.*/)?ads/js_ -# /ads/js/* (easylistchina+easylist.txt: 12521) -/(.*/)?ads/js/.* -# /ads/js. (easylistchina+easylist.txt: 12520) -/(.*/)?ads/js\. -# /ads/interstitial/* (easylistchina+easylist.txt: 12519) -/(.*/)?ads/interstitial/.* -# /ads/interstitial. (easylistchina+easylist.txt: 12518) -/(.*/)?ads/interstitial\. -# /ads/inner_ (easylistchina+easylist.txt: 12517) -/(.*/)?ads/inner_ -# /ads/inline. (easylistchina+easylist.txt: 12516) -/(.*/)?ads/inline\. -# /Ads/InFullScreen. (easylistchina+easylist.txt: 12515) -/(.*/)?Ads/InFullScreen\. -# /ads/indexsponsors/* (easylistchina+easylist.txt: 12514) -/(.*/)?ads/indexsponsors/.* -# /ads/index. (easylistchina+easylist.txt: 12513) -/(.*/)?ads/index\. -# /ads/index- (easylistchina+easylist.txt: 12512) -/(.*/)?ads/index- -# /ads/img/* (easylistchina+easylist.txt: 12511) -/(.*/)?ads/img/.* -# /ads/imbox- (easylistchina+easylist.txt: 12510) -/(.*/)?ads/imbox- -# /ads/images/* (easylistchina+easylist.txt: 12509) -/(.*/)?ads/images/.* -# /ads/image/* (easylistchina+easylist.txt: 12508) -/(.*/)?ads/image/.* -# /ads/im2. (easylistchina+easylist.txt: 12507) -/(.*/)?ads/im2\. -# /ads/iframe (easylistchina+easylist.txt: 12506) -/(.*/)?ads/iframe -# /ads/htmlparser. (easylistchina+easylist.txt: 12505) -/(.*/)?ads/htmlparser\. -# /ads/html/* (easylistchina+easylist.txt: 12504) -/(.*/)?ads/html/.* -# /ads/house_ (easylistchina+easylist.txt: 12503) -/(.*/)?ads/house_ -# /ads/house/* (easylistchina+easylist.txt: 12502) -/(.*/)?ads/house/.* -# /ads/horizontal/* (easylistchina+easylist.txt: 12501) -/(.*/)?ads/horizontal/.* -# /ads/homepage/* (easylistchina+easylist.txt: 12500) -/(.*/)?ads/homepage/.* -# /ads/home/* (easylistchina+easylist.txt: 12499) -/(.*/)?ads/home/.* -# /ads/header_ (easylistchina+easylist.txt: 12498) -/(.*/)?ads/header_ -# /ads/header/* (easylistchina+easylist.txt: 12497) -/(.*/)?ads/header/.* -# /ads/header- (easylistchina+easylist.txt: 12496) -/(.*/)?ads/header- -# /ads/head. (easylistchina+easylist.txt: 12495) -/(.*/)?ads/head\. -# /ads/gray/* (easylistchina+easylist.txt: 12494) -/(.*/)?ads/gray/.* -# /ads/gpt_ (easylistchina+easylist.txt: 12493) -/(.*/)?ads/gpt_ -# /ads/gpt/* (easylistchina+easylist.txt: 12492) -/(.*/)?ads/gpt/.* -# /ads/google_ (easylistchina+easylist.txt: 12491) -/(.*/)?ads/google_ -# /ads/google2. (easylistchina+easylist.txt: 12490) -/(.*/)?ads/google2\. -# /ads/google1. (easylistchina+easylist.txt: 12489) -/(.*/)?ads/google1\. -# /ads/generator/* (easylistchina+easylist.txt: 12488) -/(.*/)?ads/generator/.* -# /ads/generatedHTML/* (easylistchina+easylist.txt: 12487) -/(.*/)?ads/generatedHTML/.* -# /ads/g/* (easylistchina+easylist.txt: 12486) -/(.*/)?ads/g/.* -# /ads/freewheel/* (easylistchina+easylist.txt: 12485) -/(.*/)?ads/freewheel/.* -# /ads/footer_ (easylistchina+easylist.txt: 12484) -/(.*/)?ads/footer_ -# /ads/footer. (easylistchina+easylist.txt: 12483) -/(.*/)?ads/footer\. -# /ads/footer- (easylistchina+easylist.txt: 12482) -/(.*/)?ads/footer- -# /ads/flashbanners/* (easylistchina+easylist.txt: 12481) -/(.*/)?ads/flashbanners/.* -# /ads/flash_ (easylistchina+easylist.txt: 12480) -/(.*/)?ads/flash_ -# /ads/flash/* (easylistchina+easylist.txt: 12479) -/(.*/)?ads/flash/.* -# /ads/fb- (easylistchina+easylist.txt: 12478) -/(.*/)?ads/fb- -# /ads/exit. (easylistchina+easylist.txt: 12477) -/(.*/)?ads/exit\. -# /ads/empty. (easylistchina+easylist.txt: 12476) -/(.*/)?ads/empty\. -# /ads/elementViewability. (easylistchina+easylist.txt: 12475) -/(.*/)?ads/elementViewability\. -# /ads/displaytrust. (easylistchina+easylist.txt: 12474) -/(.*/)?ads/displaytrust\. -# /ads/display/* (easylistchina+easylist.txt: 12473) -/(.*/)?ads/display/.* -# /ads/directory/* (easylistchina+easylist.txt: 12472) -/(.*/)?ads/directory/.* -# /ads/dhtml/* (easylistchina+easylist.txt: 12471) -/(.*/)?ads/dhtml/.* -# /ads/dfp/* (easylistchina+easylist.txt: 12470) -/(.*/)?ads/dfp/.* -# /ads/dfp. (easylistchina+easylist.txt: 12469) -/(.*/)?ads/dfp\. -# /ads/design- (easylistchina+easylist.txt: 12468) -/(.*/)?ads/design- -# /ads/default_ (easylistchina+easylist.txt: 12467) -/(.*/)?ads/default_ -# /ads/dart. (easylistchina+easylist.txt: 12466) -/(.*/)?ads/dart\. -# /ads/daily_ (easylistchina+easylist.txt: 12465) -/(.*/)?ads/daily_ -# /ads/daily. (easylistchina+easylist.txt: 12464) -/(.*/)?ads/daily\. -# /ads/cube- (easylistchina+easylist.txt: 12463) -/(.*/)?ads/cube- -# /ads/creatives/* (easylistchina+easylist.txt: 12462) -/(.*/)?ads/creatives/.* -# /ads/create_ (easylistchina+easylist.txt: 12461) -/(.*/)?ads/create_ -# /ads/contextuallinks/* (easylistchina+easylist.txt: 12460) -/(.*/)?ads/contextuallinks/.* -# /ads/contextual_ (easylistchina+easylist.txt: 12459) -/(.*/)?ads/contextual_ -# /ads/contextual. (easylistchina+easylist.txt: 12458) -/(.*/)?ads/contextual\. -# /ads/configuration/* (easylistchina+easylist.txt: 12457) -/(.*/)?ads/configuration/.* -# /ads/config/* (easylistchina+easylist.txt: 12456) -/(.*/)?ads/config/.* -# /ads/common/* (easylistchina+easylist.txt: 12455) -/(.*/)?ads/common/.* -# /ads/cnvideo/* (easylistchina+easylist.txt: 12454) -/(.*/)?ads/cnvideo/.* -# /ads/click_ (easylistchina+easylist.txt: 12453) -/(.*/)?ads/click_ -# /ads/checkViewport. (easylistchina+easylist.txt: 12452) -/(.*/)?ads/checkViewport\. -# /ads/center. (easylistchina+easylist.txt: 12451) -/(.*/)?ads/center\. -# /ads/center- (easylistchina+easylist.txt: 12450) -/(.*/)?ads/center- -# /ads/cbr. (easylistchina+easylist.txt: 12449) -/(.*/)?ads/cbr\. -# /Ads/Builder. (easylistchina+easylist.txt: 12448) -/(.*/)?Ads/Builder\. -# /ads/btbuckets/* (easylistchina+easylist.txt: 12447) -/(.*/)?ads/btbuckets/.* -# /ads/bt/* (easylistchina+easylist.txt: 12446) -/(.*/)?ads/bt/.* -# /ads/branding/* (easylistchina+easylist.txt: 12445) -/(.*/)?ads/branding/.* -# /ads/box/* (easylistchina+easylist.txt: 12444) -/(.*/)?ads/box/.* -# /ads/bottom/* (easylistchina+easylist.txt: 12443) -/(.*/)?ads/bottom/.* -# /ads/bottom. (easylistchina+easylist.txt: 12442) -/(.*/)?ads/bottom\. -# /ads/blank. (easylistchina+easylist.txt: 12441) -/(.*/)?ads/blank\. -# /Ads/Biz_ (easylistchina+easylist.txt: 12440) -/(.*/)?Ads/Biz_ -# /ads/bilar/* (easylistchina+easylist.txt: 12439) -/(.*/)?ads/bilar/.* -# /ads/behicon. (easylistchina+easylist.txt: 12438) -/(.*/)?ads/behicon\. -# /ads/beacon. (easylistchina+easylist.txt: 12437) -/(.*/)?ads/beacon\. -# /ads/base. (easylistchina+easylist.txt: 12436) -/(.*/)?ads/base\. -# /ads/banners/* (easylistchina+easylist.txt: 12435) -/(.*/)?ads/banners/.* -# /ads/banner_ (easylistchina+easylist.txt: 12434) -/(.*/)?ads/banner_ -# /ads/banner01. (easylistchina+easylist.txt: 12433) -/(.*/)?ads/banner01\. -# /ads/banner/* (easylistchina+easylist.txt: 12432) -/(.*/)?ads/banner/.* -# /ads/banner. (easylistchina+easylist.txt: 12431) -/(.*/)?ads/banner\. -# /ads/banner- (easylistchina+easylist.txt: 12430) -/(.*/)?ads/banner- -# /ads/b/* (easylistchina+easylist.txt: 12429) -/(.*/)?ads/b/.* -# /ads/async/* (easylistchina+easylist.txt: 12428) -/(.*/)?ads/async/.* -# /ads/assets/* (easylistchina+easylist.txt: 12427) -/(.*/)?ads/assets/.* -# /ads/as_header. (easylistchina+easylist.txt: 12426) -/(.*/)?ads/as_header\. -# /ads/aff- (easylistchina+easylist.txt: 12425) -/(.*/)?ads/aff- -# /ads/afc/* (easylistchina+easylist.txt: 12424) -/(.*/)?ads/afc/.* -# /ads/adv/* (easylistchina+easylist.txt: 12423) -/(.*/)?ads/adv/.* -# /ads/ads_ (easylistchina+easylist.txt: 12422) -/(.*/)?ads/ads_ -# /ads/ads/* (easylistchina+easylist.txt: 12421) -/(.*/)?ads/ads/.* -# /ads/ads. (easylistchina+easylist.txt: 12420) -/(.*/)?ads/ads\. -# /Ads/adrp0. (easylistchina+easylist.txt: 12418) -/(.*/)?Ads/adrp0\. -# /ads/adrime/* (easylistchina+easylist.txt: 12417) -/(.*/)?ads/adrime/.* -# /ads/ad_ (easylistchina+easylist.txt: 12416) -/(.*/)?ads/ad_ -# /ads/ad. (easylistchina+easylist.txt: 12415) -/(.*/)?ads/ad\. -# /ads/ad- (easylistchina+easylist.txt: 12414) -/(.*/)?ads/ad- -# /ads/acctid= (easylistchina+easylist.txt: 12413) -/(.*/)?ads/acctid= -# /ads/a. (easylistchina+easylist.txt: 12412) -/(.*/)?ads/a\. -# /ads/?QAPS_ (easylistchina+easylist.txt: 12411) -/(.*/)?ads/\?QAPS_ -# /ads/728b. (easylistchina+easylist.txt: 12410) -/(.*/)?ads/728b\. -# /ads/728. (easylistchina+easylist.txt: 12409) -/(.*/)?ads/728\. -# /ads/468a. (easylistchina+easylist.txt: 12408) -/(.*/)?ads/468a\. -# /ads/468. (easylistchina+easylist.txt: 12407) -/(.*/)?ads/468\. -# /ads/300x120_ (easylistchina+easylist.txt: 12406) -/(.*/)?ads/300x120_ -# /ads/3002. (easylistchina+easylist.txt: 12405) -/(.*/)?ads/3002\. -# /ads/300. (easylistchina+easylist.txt: 12404) -/(.*/)?ads/300\. -# /ads/3.0/* (easylistchina+easylist.txt: 12403) -/(.*/)?ads/3\.0/.* -# /ads/250x120_ (easylistchina+easylist.txt: 12402) -/(.*/)?ads/250x120_ -# /ads/2010/* (easylistchina+easylist.txt: 12401) -/(.*/)?ads/2010/.* -# /ads/2.0/* (easylistchina+easylist.txt: 12400) -/(.*/)?ads/2\.0/.* -# /ads/160/* (easylistchina+easylist.txt: 12399) -/(.*/)?ads/160/.* -# /ads/160. (easylistchina+easylist.txt: 12398) -/(.*/)?ads/160\. -# /ads/125r. (easylistchina+easylist.txt: 12397) -/(.*/)?ads/125r\. -# /ads/125l. (easylistchina+easylist.txt: 12396) -/(.*/)?ads/125l\. -# /ads.w3c. (easylistchina+easylist.txt: 12395) -/(.*/)?ads\.w3c\. -ads.w3c.*. -# /ads.v5.js (easylistchina+easylist.txt: 12394) -/(.*/)?ads\.v5\.js -ads.v5.js*. -# /ads.swf (easylistchina+easylist.txt: 12393) -/(.*/)?ads\.swf -ads.swf*. -# /ads.png (easylistchina+easylist.txt: 12392) -/(.*/)?ads\.png -ads.png*. -# /ads.pl? (easylistchina+easylist.txt: 12391) -/(.*/)?ads\.pl\? -# /ads.php (easylistchina+easylist.txt: 12390) -/(.*/)?ads\.php -ads.php*. -# /ads.pbs (easylistchina+easylist.txt: 12389) -/(.*/)?ads\.pbs -ads.pbs*. -# /ads.jsp (easylistchina+easylist.txt: 12388) -/(.*/)?ads\.jsp -ads.jsp*. -# /ads.json? (easylistchina+easylist.txt: 12387) -/(.*/)?ads\.json\? -# /ads.js? (easylistchina+easylist.txt: 12386) -/(.*/)?ads\.js\? -# /ads.js/* (easylistchina+easylist.txt: 12385) -/(.*/)?ads\.js/.* -ads.js/.* -# /ads.js. (easylistchina+easylist.txt: 12384) -/(.*/)?ads\.js\. -ads.js.*. -# /ads.htm (easylistchina+easylist.txt: 12383) -/(.*/)?ads\.htm -ads.htm*. -# /ads.gif (easylistchina+easylist.txt: 12382) -/(.*/)?ads\.gif -ads.gif*. -# /ads.dll/* (easylistchina+easylist.txt: 12381) -/(.*/)?ads\.dll/.* -ads.dll/.* -# /ads.css (easylistchina+easylist.txt: 12380) -/(.*/)?ads\.css -ads.css*. -# /ads.cfm? (easylistchina+easylist.txt: 12379) -/(.*/)?ads\.cfm\? -# /ads.aspx (easylistchina+easylist.txt: 12378) -/(.*/)?ads\.aspx -ads.aspx*. -# /ads.asp? (easylistchina+easylist.txt: 12377) -/(.*/)?ads\.asp\? -# /Ads.ashx (easylistchina+easylist.txt: 12376) -/(.*/)?Ads\.ashx -Ads.ashx*. -# /ads-top. (easylistchina+easylist.txt: 12375) -/(.*/)?ads-top\. -ads-top.*. -# /ads-sky| (easylistchina+easylist.txt: 12374) -/(.*/)?ads-sky$ -# /ads-skyscraper. (easylistchina+easylist.txt: 12373) -/(.*/)?ads-skyscraper\. -ads-skyscraper.*. -# /ads-service. (easylistchina+easylist.txt: 12372) -/(.*/)?ads-service\. -ads-service.*. -# /ads-segmentjs. (easylistchina+easylist.txt: 12371) -/(.*/)?ads-segmentjs\. -ads-segmentjs.*. -# /ads-scroller- (easylistchina+easylist.txt: 12370) -/(.*/)?ads-scroller- -ads-scroller-*. -# /ads-screen. (easylistchina+easylist.txt: 12369) -/(.*/)?ads-screen\. -ads-screen.*. -# /ads-sa. (easylistchina+easylist.txt: 12368) -/(.*/)?ads-sa\. -ads-sa.*. -# /ads-right. (easylistchina+easylist.txt: 12367) -/(.*/)?ads-right\. -ads-right.*. -# /ads-reviews- (easylistchina+easylist.txt: 12366) -/(.*/)?ads-reviews- -ads-reviews-*. -# /ads-request. (easylistchina+easylist.txt: 12365) -/(.*/)?ads-request\. -ads-request.*. -# /ads-rec| (easylistchina+easylist.txt: 12364) -/(.*/)?ads-rec$ -# /ads-rectangle. (easylistchina+easylist.txt: 12363) -/(.*/)?ads-rectangle\. -ads-rectangle.*. -# /ads-pd. (easylistchina+easylist.txt: 12362) -/(.*/)?ads-pd\. -ads-pd.*. -# /ads-nodep. (easylistchina+easylist.txt: 12361) -/(.*/)?ads-nodep\. -ads-nodep.*. -# /ads-new. (easylistchina+easylist.txt: 12360) -/(.*/)?ads-new\. -ads-new.*. -# /ads-net. (easylistchina+easylist.txt: 12359) -/(.*/)?ads-net\. -ads-net.*. -# /ads-min. (easylistchina+easylist.txt: 12358) -/(.*/)?ads-min\. -ads-min.*. -# /ads-leader| (easylistchina+easylist.txt: 12357) -/(.*/)?ads-leader$ -# /ads-holder. (easylistchina+easylist.txt: 12356) -/(.*/)?ads-holder\. -ads-holder.*. -# /ads-header- (easylistchina+easylist.txt: 12355) -/(.*/)?ads-header- -ads-header-*. -# /ads-gpt. (easylistchina+easylist.txt: 12354) -/(.*/)?ads-gpt\. -ads-gpt.*. -# /ads-footer. (easylistchina+easylist.txt: 12353) -/(.*/)?ads-footer\. -ads-footer.*. -# /ads-foot. (easylistchina+easylist.txt: 12352) -/(.*/)?ads-foot\. -ads-foot.*. -# /ads-common. (easylistchina+easylist.txt: 12351) -/(.*/)?ads-common\. -ads-common.*. -# /ads-blogs- (easylistchina+easylist.txt: 12350) -/(.*/)?ads-blogs- -ads-blogs-*. -# /ads-banner (easylistchina+easylist.txt: 12349) -/(.*/)?ads-banner -ads-banner*. -# /ads-arc. (easylistchina+easylist.txt: 12348) -/(.*/)?ads-arc\. -ads-arc.*. -# /ads-admin. (easylistchina+easylist.txt: 12347) -/(.*/)?ads-admin\. -ads-admin.*. -# /ads-300. (easylistchina+easylist.txt: 12346) -/(.*/)?ads-300\. -ads-300.*. -# /ads-300- (easylistchina+easylist.txt: 12345) -/(.*/)?ads-300- -ads-300-*. -# /ads-250. (easylistchina+easylist.txt: 12344) -/(.*/)?ads-250\. -ads-250.*. -# /ads-2. (easylistchina+easylist.txt: 12343) -/(.*/)?ads-2\. -ads-2.*. -# /ads-1. (easylistchina+easylist.txt: 12342) -/(.*/)?ads-1\. -ads-1.*. -# /ads-07. (easylistchina+easylist.txt: 12341) -/(.*/)?ads-07\. -ads-07.*. -# /ads-06. (easylistchina+easylist.txt: 12340) -/(.*/)?ads-06\. -ads-06.*. -# /ads-05. (easylistchina+easylist.txt: 12339) -/(.*/)?ads-05\. -ads-05.*. -# /ads-04. (easylistchina+easylist.txt: 12338) -/(.*/)?ads-04\. -ads-04.*. -# /ads-03. (easylistchina+easylist.txt: 12337) -/(.*/)?ads-03\. -ads-03.*. -# /ads-02. (easylistchina+easylist.txt: 12336) -/(.*/)?ads-02\. -ads-02.*. -# /ads-01. (easylistchina+easylist.txt: 12335) -/(.*/)?ads-01\. -ads-01.*. -# /adruptive. (easylistchina+easylist.txt: 12334) -/(.*/)?adruptive\. -adruptive.*. -# /adrun. (easylistchina+easylist.txt: 12333) -/(.*/)?adrun\. -adrun.*. -# /adrotv2. (easylistchina+easylist.txt: 12332) -/(.*/)?adrotv2\. -adrotv2.*. -# /adrotator_ (easylistchina+easylist.txt: 12331) -/(.*/)?adrotator_ -# /adrotator2. (easylistchina+easylist.txt: 12330) -/(.*/)?adrotator2\. -adrotator2.*. -# /adrotator/* (easylistchina+easylist.txt: 12329) -/(.*/)?adrotator/.* -# /adrotator. (easylistchina+easylist.txt: 12328) -/(.*/)?adrotator\. -adrotator.*. -# /adrotation. (easylistchina+easylist.txt: 12327) -/(.*/)?adrotation\. -adrotation.*. -# /adrotate/* (easylistchina+easylist.txt: 12326) -/(.*/)?adrotate/.* -# /adrotate. (easylistchina+easylist.txt: 12325) -/(.*/)?adrotate\. -adrotate.*. -# /adrotate- (easylistchina+easylist.txt: 12324) -/(.*/)?adrotate- -adrotate-*. -# /adrotat. (easylistchina+easylist.txt: 12323) -/(.*/)?adrotat\. -adrotat.*. -# /adrot_ (easylistchina+easylist.txt: 12322) -/(.*/)?adrot_ -# /adrot. (easylistchina+easylist.txt: 12321) -/(.*/)?adrot\. -adrot.*. -# /adroot/* (easylistchina+easylist.txt: 12320) -/(.*/)?adroot/.* -# /adrollpixel. (easylistchina+easylist.txt: 12319) -/(.*/)?adrollpixel\. -adrollpixel.*. -# /adroller. (easylistchina+easylist.txt: 12318) -/(.*/)?adroller\. -adroller.*. -# /adRoll. (easylistchina+easylist.txt: 12317) -/(.*/)?adRoll\. -adRoll.*. -# /adrolays. (easylistchina+easylist.txt: 12316) -/(.*/)?adrolays\. -adrolays.*. -# /adrobot. (easylistchina+easylist.txt: 12315) -/(.*/)?adrobot\. -adrobot.*. -# /adriver/* (easylistchina+easylist.txt: 12313) -/(.*/)?adriver/.* -# /adrightcol. (easylistchina+easylist.txt: 12311) -/(.*/)?adrightcol\. -adrightcol.*. -# /adright/* (easylistchina+easylist.txt: 12310) -/(.*/)?adright/.* -# /adright. (easylistchina+easylist.txt: 12309) -/(.*/)?adright\. -adright.*. -# /adrevolver/* (easylistchina+easylist.txt: 12308) -/(.*/)?adrevolver/.* -# /adrevenue/* (easylistchina+easylist.txt: 12307) -/(.*/)?adrevenue/.* -# /adrequisitor- (easylistchina+easylist.txt: 12306) -/(.*/)?adrequisitor- -adrequisitor-*. -# /adrequestvo. (easylistchina+easylist.txt: 12305) -/(.*/)?adrequestvo\. -adrequestvo.*. -# /adrequests. (easylistchina+easylist.txt: 12304) -/(.*/)?adrequests\. -adrequests.*. -# /adrequest. (easylistchina+easylist.txt: 12303) -/(.*/)?adrequest\. -adrequest.*. -# /adreplace728x90. (easylistchina+easylist.txt: 12302) -/(.*/)?adreplace728x90\. -adreplace728x90.*. -# /adreplace160x600. (easylistchina+easylist.txt: 12301) -/(.*/)?adreplace160x600\. -adreplace160x600.*. -# /adreplace/* (easylistchina+easylist.txt: 12300) -/(.*/)?adreplace/.* -# /adrendererfactory. (easylistchina+easylist.txt: 12299) -/(.*/)?adrendererfactory\. -adrendererfactory.*. -# /adremote. (easylistchina+easylist.txt: 12298) -/(.*/)?adremote\. -adremote.*. -# /adreload? (easylistchina+easylist.txt: 12297) -/(.*/)?adreload\? -# /adreload. (easylistchina+easylist.txt: 12296) -/(.*/)?adreload\. -adreload.*. -# /adrelated. (easylistchina+easylist.txt: 12295) -/(.*/)?adrelated\. -adrelated.*. -# /adrefresh. (easylistchina+easylist.txt: 12294) -/(.*/)?adrefresh\. -adrefresh.*. -# /adrefresh- (easylistchina+easylist.txt: 12293) -/(.*/)?adrefresh- -adrefresh-*. -# /adrectanglebanner? (easylistchina+easylist.txt: 12292) -/(.*/)?adrectanglebanner\? -# /adrec. (easylistchina+easylist.txt: 12291) -/(.*/)?adrec\. -adrec.*. -# /adreadytractions. (easylistchina+easylist.txt: 12290) -/(.*/)?adreadytractions\. -adreadytractions.*. -# /adreactor/* (easylistchina+easylist.txt: 12289) -/(.*/)?adreactor/.* -# /adrawdata/* (easylistchina+easylist.txt: 12288) -/(.*/)?adrawdata/.* -# /adratio. (easylistchina+easylist.txt: 12287) -/(.*/)?adratio\. -adratio.*. -# /adquality/* (easylistchina+easylist.txt: 12286) -/(.*/)?adquality/.* -# /AdPub/* (easylistchina+easylist.txt: 12285) -/(.*/)?AdPub/.* -# /adproxy/* (easylistchina+easylist.txt: 12284) -/(.*/)?adproxy/.* -# /adproxy. (easylistchina+easylist.txt: 12283) -/(.*/)?adproxy\. -adproxy.*. -# /adprovider. (easylistchina+easylist.txt: 12282) -/(.*/)?adprovider\. -adprovider.*. -# /adprove_ (easylistchina+easylist.txt: 12281) -/(.*/)?adprove_ -# /adproducts/* (easylistchina+easylist.txt: 12280) -/(.*/)?adproducts/.* -# /adprime. (easylistchina+easylist.txt: 12279) -/(.*/)?adprime\. -adprime.*. -# /AdPreview/* (easylistchina+easylist.txt: 12278) -/(.*/)?AdPreview/.* -# /AdPostInjectAsync. (easylistchina+easylist.txt: 12277) -/(.*/)?AdPostInjectAsync\. -AdPostInjectAsync.*. -# /adpositionsizein- (easylistchina+easylist.txt: 12276) -/(.*/)?adpositionsizein- -adpositionsizein-*. -# /adPositions. (easylistchina+easylist.txt: 12275) -/(.*/)?adPositions\. -adPositions.*. -# /adpopup. (easylistchina+easylist.txt: 12274) -/(.*/)?adpopup\. -adpopup.*. -# /adpop32. (easylistchina+easylist.txt: 12273) -/(.*/)?adpop32\. -adpop32.*. -# /adpop. (easylistchina+easylist.txt: 12272) -/(.*/)?adpop\. -adpop.*. -# /adpool/* (easylistchina+easylist.txt: 12271) -/(.*/)?adpool/.* -# /adpolestar/* (easylistchina+easylist.txt: 12270) -/(.*/)?adpolestar/.* -# /adpoint. (easylistchina+easylist.txt: 12269) -/(.*/)?adpoint\. -adpoint.*. -# /adplugin_ (easylistchina+easylist.txt: 12268) -/(.*/)?adplugin_ -# /adplugin. (easylistchina+easylist.txt: 12267) -/(.*/)?adplugin\. -adplugin.*. -# /adplayer/* (easylistchina+easylist.txt: 12266) -/(.*/)?adplayer/.* -# /adplayer. (easylistchina+easylist.txt: 12265) -/(.*/)?adplayer\. -adplayer.*. -# /adplayer- (easylistchina+easylist.txt: 12264) -/(.*/)?adplayer- -adplayer-*. -# /adplay. (easylistchina+easylist.txt: 12263) -/(.*/)?adplay\. -adplay.*. -# /adplacement. (easylistchina+easylist.txt: 12262) -/(.*/)?adplacement\. -adplacement.*. -# /adplace5_ (easylistchina+easylist.txt: 12261) -/(.*/)?adplace5_ -# /adplace/* (easylistchina+easylist.txt: 12260) -/(.*/)?adplace/.* -# /adpix/* (easylistchina+easylist.txt: 12259) -/(.*/)?adpix/.* -# /adping. (easylistchina+easylist.txt: 12258) -/(.*/)?adping\. -adping.*. -# /adpictures/* (easylistchina+easylist.txt: 12257) -/(.*/)?adpictures/.* -# /adpicture2| (easylistchina+easylist.txt: 12256) -/(.*/)?adpicture2$ -# /adpicture2. (easylistchina+easylist.txt: 12255) -/(.*/)?adpicture2\. -adpicture2.*. -# /adpicture1| (easylistchina+easylist.txt: 12254) -/(.*/)?adpicture1$ -# /adpicture1. (easylistchina+easylist.txt: 12253) -/(.*/)?adpicture1\. -adpicture1.*. -# /adpicture. (easylistchina+easylist.txt: 12252) -/(.*/)?adpicture\. -adpicture.*. -# /adpic/* (easylistchina+easylist.txt: 12251) -/(.*/)?adpic/.* -# /adpic. (easylistchina+easylist.txt: 12250) -/(.*/)?adpic\. -adpic.*. -# /adperfdemo. (easylistchina+easylist.txt: 12248) -/(.*/)?adperfdemo\. -adperfdemo.*. -# /adperf_ (easylistchina+easylist.txt: 12247) -/(.*/)?adperf_ -# /adpeeps/* (easylistchina+easylist.txt: 12246) -/(.*/)?adpeeps/.* -# /adpeeps. (easylistchina+easylist.txt: 12245) -/(.*/)?adpeeps\. -adpeeps.*. -# /adpatch. (easylistchina+easylist.txt: 12244) -/(.*/)?adpatch\. -adpatch.*. -# /adparts/* (easylistchina+easylist.txt: 12243) -/(.*/)?adparts/.* -# /adpartner. (easylistchina+easylist.txt: 12242) -/(.*/)?adpartner\. -adpartner.*. -# /adpanelcontent. (easylistchina+easylist.txt: 12241) -/(.*/)?adpanelcontent\. -adpanelcontent.*. -# /adpanel/* (easylistchina+easylist.txt: 12240) -/(.*/)?adpanel/.* -# /adpan/* (easylistchina+easylist.txt: 12239) -/(.*/)?adpan/.* -# /adpages/* (easylistchina+easylist.txt: 12238) -/(.*/)?adpages/.* -# /adpagem. (easylistchina+easylist.txt: 12237) -/(.*/)?adpagem\. -adpagem.*. -# /adpage/* (easylistchina+easylist.txt: 12236) -/(.*/)?adpage/.* -# /adpage. (easylistchina+easylist.txt: 12235) -/(.*/)?adpage\. -adpage.*. -# /adpage- (easylistchina+easylist.txt: 12234) -/(.*/)?adpage- -adpage-*. -# /adp.htm (easylistchina+easylist.txt: 12233) -/(.*/)?adp\.htm -adp.htm*. -# /adp-pro/* (easylistchina+easylist.txt: 12232) -/(.*/)?adp-pro/.* -# /adoverride. (easylistchina+easylist.txt: 12231) -/(.*/)?adoverride\. -adoverride.*. -# /adoverlayplugin. (easylistchina+easylist.txt: 12230) -/(.*/)?adoverlayplugin\. -adoverlayplugin.*. -# /adoverlay/* (easylistchina+easylist.txt: 12229) -/(.*/)?adoverlay/.* -# /adoverlay. (easylistchina+easylist.txt: 12228) -/(.*/)?adoverlay\. -adoverlay.*. -# /adotubeplugin. (easylistchina+easylist.txt: 12227) -/(.*/)?adotubeplugin\. -adotubeplugin.*. -# /adotube_adapter. (easylistchina+easylist.txt: 12226) -/(.*/)?adotube_adapter\. -# /ados.js (easylistchina+easylist.txt: 12225) -/(.*/)?ados\.js -ados.js*. -# /adorika728. (easylistchina+easylist.txt: 12224) -/(.*/)?adorika728\. -adorika728.*. -# /adorika300. (easylistchina+easylist.txt: 12223) -/(.*/)?adorika300\. -adorika300.*. -# /adoptions. (easylistchina+easylist.txt: 12222) -/(.*/)?adoptions\. -adoptions.*. -# /adoptionicon. (easylistchina+easylist.txt: 12221) -/(.*/)?adoptionicon\. -adoptionicon.*. -# /AdOptimizer. (easylistchina+easylist.txt: 12220) -/(.*/)?AdOptimizer\. -AdOptimizer.*. -# /adops/* (easylistchina+easylist.txt: 12219) -/(.*/)?adops/.* -# /adops. (easylistchina+easylist.txt: 12218) -/(.*/)?adops\. -adops.*. -# /adonly468. (easylistchina+easylist.txt: 12217) -/(.*/)?adonly468\. -adonly468.*. -# /adonline. (easylistchina+easylist.txt: 12216) -/(.*/)?adonline\. -adonline.*. -# /adometry? (easylistchina+easylist.txt: 12215) -/(.*/)?adometry\? -# /adometry. (easylistchina+easylist.txt: 12214) -/(.*/)?adometry\. -adometry.*. -# /adometry- (easylistchina+easylist.txt: 12213) -/(.*/)?adometry- -adometry-*. -# /adocean. (easylistchina+easylist.txt: 12212) -/(.*/)?adocean\. -adocean.*. -# /adobject. (easylistchina+easylist.txt: 12211) -/(.*/)?adobject\. -adobject.*. -# /adnotice. (easylistchina+easylist.txt: 12210) -/(.*/)?adnotice\. -adnotice.*. -# /adnl. (easylistchina+easylist.txt: 12209) -/(.*/)?adnl\. -adnl.*. -# /adng.html (easylistchina+easylist.txt: 12208) -/(.*/)?adng\.html -adng.html*. -# /adnexus- (easylistchina+easylist.txt: 12207) -/(.*/)?adnexus- -adnexus-*. -# /AdNewsclip15. (easylistchina+easylist.txt: 12205) -/(.*/)?AdNewsclip15\. -AdNewsclip15.*. -# /AdNewsclip14. (easylistchina+easylist.txt: 12204) -/(.*/)?AdNewsclip14\. -AdNewsclip14.*. -# /adnews. (easylistchina+easylist.txt: 12203) -/(.*/)?adnews\. -adnews.*. -# /adnew2. (easylistchina+easylist.txt: 12202) -/(.*/)?adnew2\. -adnew2.*. -# /adnetwork_ (easylistchina+easylist.txt: 12201) -/(.*/)?adnetwork_ -# /adnetwork468. (easylistchina+easylist.txt: 12200) -/(.*/)?adnetwork468\. -adnetwork468.*. -# /adnetwork300. (easylistchina+easylist.txt: 12199) -/(.*/)?adnetwork300\. -adnetwork300.*. -# /adnetwork/* (easylistchina+easylist.txt: 12198) -/(.*/)?adnetwork/.* -# /adnetmedia. (easylistchina+easylist.txt: 12196) -/(.*/)?adnetmedia\. -adnetmedia.*. -# /adnet2. (easylistchina+easylist.txt: 12195) -/(.*/)?adnet2\. -adnet2.*. -# /ADNet/* (easylistchina+easylist.txt: 12194) -/(.*/)?ADNet/.* -# /adnet. (easylistchina+easylist.txt: 12193) -/(.*/)?adnet\. -adnet.*. -# /adNdsoft/* (easylistchina+easylist.txt: 12192) -/(.*/)?adNdsoft/.* -# /adnap/* (easylistchina+easylist.txt: 12191) -/(.*/)?adnap/.* -# /admonitor. (easylistchina+easylist.txt: 12190) -/(.*/)?admonitor\. -admonitor.*. -# /admonitor- (easylistchina+easylist.txt: 12189) -/(.*/)?admonitor- -admonitor-*. -# /admob. (easylistchina+easylist.txt: 12188) -/(.*/)?admob\. -admob.*. -# /admixer_ (easylistchina+easylist.txt: 12187) -/(.*/)?admixer_ -# /admixer- (easylistchina+easylist.txt: 12186) -/(.*/)?admixer- -admixer-*. -# /adminibanner2. (easylistchina+easylist.txt: 12185) -/(.*/)?adminibanner2\. -adminibanner2.*. -# /admin/sponsors/* (easylistchina+easylist.txt: 12184) -/(.*/)?admin/sponsors/.* -# /admin/banners/* (easylistchina+easylist.txt: 12183) -/(.*/)?admin/banners/.* -# /admin/ad_ (easylistchina+easylist.txt: 12182) -/(.*/)?admin/ad_ -# /admicro_ (easylistchina+easylist.txt: 12181) -/(.*/)?admicro_ -# /admicro2. (easylistchina+easylist.txt: 12180) -/(.*/)?admicro2\. -admicro2.*. -# /admgr. (easylistchina+easylist.txt: 12179) -/(.*/)?admgr\. -admgr.*. -# /admez/* (easylistchina+easylist.txt: 12178) -/(.*/)?admez/.* -# /admez. (easylistchina+easylist.txt: 12177) -/(.*/)?admez\. -admez.*. -# /admeta. (easylistchina+easylist.txt: 12176) -/(.*/)?admeta\. -admeta.*. -# /admentorserve. (easylistchina+easylist.txt: 12175) -/(.*/)?admentorserve\. -admentorserve.*. -# /admentorasp/* (easylistchina+easylist.txt: 12174) -/(.*/)?admentorasp/.* -# /admentor302/* (easylistchina+easylist.txt: 12173) -/(.*/)?admentor302/.* -# /admentor/* (easylistchina+easylist.txt: 12172) -/(.*/)?admentor/.* -# /admeldscript. (easylistchina+easylist.txt: 12171) -/(.*/)?admeldscript\. -admeldscript.*. -# /admeld_ (easylistchina+easylist.txt: 12170) -/(.*/)?admeld_ -# /admeld/* (easylistchina+easylist.txt: 12169) -/(.*/)?admeld/.* -# /admeld. (easylistchina+easylist.txt: 12168) -/(.*/)?admeld\. -admeld.*. -# /admega. (easylistchina+easylist.txt: 12167) -/(.*/)?admega\. -admega.*. -# /admedia/* (easylistchina+easylist.txt: 12166) -/(.*/)?admedia/.* -# /admedia. (easylistchina+easylist.txt: 12165) -/(.*/)?admedia\. -admedia.*. -# /admeasure. (easylistchina+easylist.txt: 12164) -/(.*/)?admeasure\. -admeasure.*. -# /admaxads. (easylistchina+easylist.txt: 12163) -/(.*/)?admaxads\. -admaxads.*. -# /admax/* (easylistchina+easylist.txt: 12162) -/(.*/)?admax/.* -# /admatik. (easylistchina+easylist.txt: 12160) -/(.*/)?admatik\. -admatik.*. -# /admatcherclient. (easylistchina+easylist.txt: 12159) -/(.*/)?admatcherclient\. -admatcherclient.*. -# /admatch- (easylistchina+easylist.txt: 12157) -/(.*/)?admatch- -admatch-*. -# /admaster? (easylistchina+easylist.txt: 12156) -/(.*/)?admaster\? -# /admaster. (easylistchina+easylist.txt: 12155) -/(.*/)?admaster\. -admaster.*. -# /admarvel. (easylistchina+easylist.txt: 12154) -/(.*/)?admarvel\. -admarvel.*. -# /adMarketplace. (easylistchina+easylist.txt: 12153) -/(.*/)?adMarketplace\. -adMarketplace.*. -# /admarket/* (easylistchina+easylist.txt: 12152) -/(.*/)?admarket/.* -# /admarker_ (easylistchina+easylist.txt: 12151) -/(.*/)?admarker_ -# /admarker. (easylistchina+easylist.txt: 12150) -/(.*/)?admarker\. -admarker.*. -# /admantx/* (easylistchina+easylist.txt: 12149) -/(.*/)?admantx/.* -# /admantx. (easylistchina+easylist.txt: 12148) -/(.*/)?admantx\. -admantx.*. -# /admantx- (easylistchina+easylist.txt: 12147) -/(.*/)?admantx- -admantx-*. -# /admanproxy. (easylistchina+easylist.txt: 12146) -/(.*/)?admanproxy\. -admanproxy.*. -# /admanagerstatus/* (easylistchina+easylist.txt: 12145) -/(.*/)?admanagerstatus/.* -# /admanagers/* (easylistchina+easylist.txt: 12144) -/(.*/)?admanagers/.* -# /admanager_ (easylistchina+easylist.txt: 12143) -/(.*/)?admanager_ -# /admanager3. (easylistchina+easylist.txt: 12142) -/(.*/)?admanager3\. -admanager3.*. -# /admanagementadvanced. (easylistchina+easylist.txt: 12139) -/(.*/)?admanagementadvanced\. -admanagementadvanced.*. -# /admanagement/* (easylistchina+easylist.txt: 12138) -/(.*/)?admanagement/.* -# /adman/* (easylistchina+easylist.txt: 12137) -/(.*/)?adman/.* -# /adman. (easylistchina+easylist.txt: 12136) -/(.*/)?adman\. -adman.*. -# /adman- (easylistchina+easylist.txt: 12135) -/(.*/)?adman- -adman-*. -# /admain| (easylistchina+easylist.txt: 12134) -/(.*/)?admain$ -# /admain. (easylistchina+easylist.txt: 12133) -/(.*/)?admain\. -admain.*. -# /adm/ad/* (easylistchina+easylist.txt: 12132) -/(.*/)?adm/ad/.* -# /adlog.php? (easylistchina+easylist.txt: 12131) -/(.*/)?adlog\.php\? -# /adlock300. (easylistchina+easylist.txt: 12130) -/(.*/)?adlock300\. -adlock300.*. -# /adloader. (easylistchina+easylist.txt: 12129) -/(.*/)?adloader\. -adloader.*. -# /adload. (easylistchina+easylist.txt: 12128) -/(.*/)?adload\. -adload.*. -# /adlist_ (easylistchina+easylist.txt: 12127) -/(.*/)?adlist_ -# /adlinks_ (easylistchina+easylist.txt: 12126) -/(.*/)?adlinks_ -# /adlinks2. (easylistchina+easylist.txt: 12125) -/(.*/)?adlinks2\. -adlinks2.*. -# /adlinks. (easylistchina+easylist.txt: 12124) -/(.*/)?adlinks\. -adlinks.*. -# /adlink_ (easylistchina+easylist.txt: 12123) -/(.*/)?adlink_ -# /adLink728. (easylistchina+easylist.txt: 12122) -/(.*/)?adLink728\. -adLink728.*. -# /adlink/* (easylistchina+easylist.txt: 12121) -/(.*/)?adlink/.* -# /adlink. (easylistchina+easylist.txt: 12120) -/(.*/)?adlink\. -adlink.*. -# /adlink- (easylistchina+easylist.txt: 12119) -/(.*/)?adlink- -adlink-*. -# /adlift4_ (easylistchina+easylist.txt: 12117) -/(.*/)?adlift4_ -# /adlift4. (easylistchina+easylist.txt: 12116) -/(.*/)?adlift4\. -adlift4.*. -# /adlib. (easylistchina+easylist.txt: 12115) -/(.*/)?adlib\. -adlib.*. -# /adlesse. (easylistchina+easylist.txt: 12114) -/(.*/)?adlesse\. -adlesse.*. -# /adlens- (easylistchina+easylist.txt: 12113) -/(.*/)?adlens- -adlens-*. -# /adleftsidebar. (easylistchina+easylist.txt: 12112) -/(.*/)?adleftsidebar\. -adleftsidebar.*. -# /adleft/* (easylistchina+easylist.txt: 12111) -/(.*/)?adleft/.* -# /adleft. (easylistchina+easylist.txt: 12110) -/(.*/)?adleft\. -adleft.*. -# /adleaderboardtop. (easylistchina+easylist.txt: 12109) -/(.*/)?adleaderboardtop\. -adleaderboardtop.*. -# /adleader. (easylistchina+easylist.txt: 12108) -/(.*/)?adleader\. -adleader.*. -# /adlead. (easylistchina+easylist.txt: 12107) -/(.*/)?adlead\. -adlead.*. -# /adlayer/* (easylistchina+easylist.txt: 12106) -/(.*/)?adlayer/.* -# /adlayer. (easylistchina+easylist.txt: 12105) -/(.*/)?adlayer\. -adlayer.*. -# /adlargefooter2. (easylistchina+easylist.txt: 12104) -/(.*/)?adlargefooter2\. -adlargefooter2.*. -# /adlargefooter. (easylistchina+easylist.txt: 12103) -/(.*/)?adlargefooter\. -adlargefooter.*. -# /adlantisloader. (easylistchina+easylist.txt: 12102) -/(.*/)?adlantisloader\. -adlantisloader.*. -# /adlantis. (easylistchina+easylist.txt: 12101) -/(.*/)?adlantis\. -adlantis.*. -# /adlandr. (easylistchina+easylist.txt: 12100) -/(.*/)?adlandr\. -adlandr.*. -# /AdLanding. (easylistchina+easylist.txt: 12099) -/(.*/)?AdLanding\. -AdLanding.*. -# /adlabs.js (easylistchina+easylist.txt: 12098) -/(.*/)?adlabs\.js -adlabs.js*. -# /adlabel_ (easylistchina+easylist.txt: 12097) -/(.*/)?adlabel_ -# /adlabel. (easylistchina+easylist.txt: 12096) -/(.*/)?adlabel\. -adlabel.*. -# /adl.php (easylistchina+easylist.txt: 12095) -/(.*/)?adl\.php -adl.php*. -# /adkeys. (easylistchina+easylist.txt: 12094) -/(.*/)?adkeys\. -adkeys.*. -# /adjuggler? (easylistchina+easylist.txt: 12093) -/(.*/)?adjuggler\? -# /adjug. (easylistchina+easylist.txt: 12092) -/(.*/)?adjug\. -adjug.*. -# /adjsmp. (easylistchina+easylist.txt: 12091) -/(.*/)?adjsmp\. -adjsmp.*. -# /adjs_ (easylistchina+easylist.txt: 12090) -/(.*/)?adjs_ -# /adjs? (easylistchina+easylist.txt: 12089) -/(.*/)?adjs\? -# /adjs/* (easylistchina+easylist.txt: 12088) -/(.*/)?adjs/.* -# /adjs. (easylistchina+easylist.txt: 12087) -/(.*/)?adjs\. -adjs.*. -# /adjk. (easylistchina+easylist.txt: 12086) -/(.*/)?adjk\. -adjk.*. -# /adj.php? (easylistchina+easylist.txt: 12085) -/(.*/)?adj\.php\? -# /adixs. (easylistchina+easylist.txt: 12084) -/(.*/)?adixs\. -adixs.*. -# /adition. (easylistchina+easylist.txt: 12083) -/(.*/)?adition\. -adition.*. -# /adiquity. (easylistchina+easylist.txt: 12081) -/(.*/)?adiquity\. -adiquity.*. -# /adinterax. (easylistchina+easylist.txt: 12080) -/(.*/)?adinterax\. -adinterax.*. -# /adinsertjuicy. (easylistchina+easylist.txt: 12079) -/(.*/)?adinsertjuicy\. -adinsertjuicy.*. -# /adinsertionplugin. (easylistchina+easylist.txt: 12078) -/(.*/)?adinsertionplugin\. -adinsertionplugin.*. -# /adinsert. (easylistchina+easylist.txt: 12077) -/(.*/)?adinsert\. -adinsert.*. -# /adinjector_ (easylistchina+easylist.txt: 12076) -/(.*/)?adinjector_ -# /adinjector. (easylistchina+easylist.txt: 12075) -/(.*/)?adinjector\. -adinjector.*. -# /adinject. (easylistchina+easylist.txt: 12074) -/(.*/)?adinject\. -adinject.*. -# /adinit. (easylistchina+easylist.txt: 12073) -/(.*/)?adinit\. -adinit.*. -# /adindicatortext. (easylistchina+easylist.txt: 12072) -/(.*/)?adindicatortext\. -adindicatortext.*. -# /adindex/* (easylistchina+easylist.txt: 12071) -/(.*/)?adindex/.* -# /adinclude/* (easylistchina+easylist.txt: 12070) -/(.*/)?adinclude/.* -# /adinclude. (easylistchina+easylist.txt: 12069) -/(.*/)?adinclude\. -adinclude.*. -# /adinator/* (easylistchina+easylist.txt: 12068) -/(.*/)?adinator/.* -# /adimg/* (easylistchina+easylist.txt: 12067) -/(.*/)?adimg/.* -# /adimg. (easylistchina+easylist.txt: 12066) -/(.*/)?adimg\. -adimg.*. -# /adimages. (easylistchina+easylist.txt: 12064) -/(.*/)?adimages\. -adimages.*. -# /adimage? (easylistchina+easylist.txt: 12063) -/(.*/)?adimage\? -# /adimage/* (easylistchina+easylist.txt: 12062) -/(.*/)?adimage/.* -# /adimage. (easylistchina+easylist.txt: 12061) -/(.*/)?adimage\. -adimage.*. -# /adim.html?ad (easylistchina+easylist.txt: 12060) -/(.*/)?adim\.html\?ad -# /adifyoverlay. (easylistchina+easylist.txt: 12059) -/(.*/)?adifyoverlay\. -adifyoverlay.*. -# /adifyids. (easylistchina+easylist.txt: 12058) -/(.*/)?adifyids\. -adifyids.*. -# /adifyad. (easylistchina+easylist.txt: 12057) -/(.*/)?adifyad\. -adifyad.*. -# /adify_ (easylistchina+easylist.txt: 12056) -/(.*/)?adify_ -# /adiframe|*|adtech; (easylistchina+easylist.txt: 12055) -/(.*/)?adiframe\|.*\|adtech; -# /adiframetop. (easylistchina+easylist.txt: 12054) -/(.*/)?adiframetop\. -adiframetop.*. -# /adiframem2. (easylistchina+easylist.txt: 12053) -/(.*/)?adiframem2\. -adiframem2.*. -# /adiframem1. (easylistchina+easylist.txt: 12052) -/(.*/)?adiframem1\. -adiframem1.*. -# /adiframeanchor. (easylistchina+easylist.txt: 12051) -/(.*/)?adiframeanchor\. -adiframeanchor.*. -# /adiframe_ (easylistchina+easylist.txt: 12050) -/(.*/)?adiframe_ -# /adiframe? (easylistchina+easylist.txt: 12049) -/(.*/)?adiframe\? -# /adiframe9. (easylistchina+easylist.txt: 12048) -/(.*/)?adiframe9\. -adiframe9.*. -# /adiframe7. (easylistchina+easylist.txt: 12047) -/(.*/)?adiframe7\. -adiframe7.*. -# /adiframe2. (easylistchina+easylist.txt: 12046) -/(.*/)?adiframe2\. -adiframe2.*. -# /adiframe18. (easylistchina+easylist.txt: 12045) -/(.*/)?adiframe18\. -adiframe18.*. -# /adiframe1. (easylistchina+easylist.txt: 12044) -/(.*/)?adiframe1\. -adiframe1.*. -# /adiframe/* (easylistchina+easylist.txt: 12043) -/(.*/)?adiframe/.* -# /adiframe. (easylistchina+easylist.txt: 12042) -/(.*/)?adiframe\. -adiframe.*. -# /adicon_ (easylistchina+easylist.txt: 12041) -/(.*/)?adicon_ -# /adhug_ (easylistchina+easylist.txt: 12040) -/(.*/)?adhug_ -# /adhub. (easylistchina+easylist.txt: 12039) -/(.*/)?adhub\. -adhub.*. -# /adhtml/* (easylistchina+easylist.txt: 12038) -/(.*/)?adhtml/.* -# /adhref. (easylistchina+easylist.txt: 12037) -/(.*/)?adhref\. -adhref.*. -# /adhood. (easylistchina+easylist.txt: 12035) -/(.*/)?adhood\. -adhood.*. -# /adhomepage2. (easylistchina+easylist.txt: 12034) -/(.*/)?adhomepage2\. -adhomepage2.*. -# /adhomepage. (easylistchina+easylist.txt: 12033) -/(.*/)?adhomepage\. -adhomepage.*. -# /adhints/* (easylistchina+easylist.txt: 12032) -/(.*/)?adhints/.* -# /adhese_ (easylistchina+easylist.txt: 12031) -/(.*/)?adhese_ -# /adhese. (easylistchina+easylist.txt: 12030) -/(.*/)?adhese\. -adhese.*. -# /adheading_ (easylistchina+easylist.txt: 12029) -/(.*/)?adheading_ -# /adheadertxt. (easylistchina+easylist.txt: 12028) -/(.*/)?adheadertxt\. -adheadertxt.*. -# /adheader. (easylistchina+easylist.txt: 12027) -/(.*/)?adheader\. -adheader.*. -# /adhandlers2. (easylistchina+easylist.txt: 12026) -/(.*/)?adhandlers2\. -adhandlers2.*. -# /adhandlers- (easylistchina+easylist.txt: 12025) -/(.*/)?adhandlers- -adhandlers-*. -# /adhandler. (easylistchina+easylist.txt: 12023) -/(.*/)?adhandler\. -adhandler.*. -# /adhalfbanner. (easylistchina+easylist.txt: 12022) -/(.*/)?adhalfbanner\. -adhalfbanner.*. -# /adhads. (easylistchina+easylist.txt: 12021) -/(.*/)?adhads\. -adhads.*. -# /adguru. (easylistchina+easylist.txt: 12020) -/(.*/)?adguru\. -adguru.*. -# /adguard. (easylistchina+easylist.txt: 12019) -/(.*/)?adguard\. -adguard.*. -# /adgraphics/* (easylistchina+easylist.txt: 12018) -/(.*/)?adgraphics/.* -# /adgooglefull2. (easylistchina+easylist.txt: 12017) -/(.*/)?adgooglefull2\. -adgooglefull2.*. -# /adgitize- (easylistchina+easylist.txt: 12016) -/(.*/)?adgitize- -adgitize-*. -# /adgetter. (easylistchina+easylist.txt: 12015) -/(.*/)?adgetter\. -adgetter.*. -# /adGet. (easylistchina+easylist.txt: 12014) -/(.*/)?adGet\. -adGet.*. -# /adgeo/* (easylistchina+easylist.txt: 12013) -/(.*/)?adgeo/.* -# /adgenerator. (easylistchina+easylist.txt: 12012) -/(.*/)?adgenerator\. -adgenerator.*. -# /adgearsegmentation. (easylistchina+easylist.txt: 12011) -/(.*/)?adgearsegmentation\. -adgearsegmentation.*. -# /adgear2- (easylistchina+easylist.txt: 12010) -/(.*/)?adgear2- -adgear2-*. -# /adgear1- (easylistchina+easylist.txt: 12009) -/(.*/)?adgear1- -adgear1-*. -# /adgear/* (easylistchina+easylist.txt: 12008) -/(.*/)?adgear/.* -# /adgear.js (easylistchina+easylist.txt: 12007) -/(.*/)?adgear\.js -adgear.js*. -# /adgalleryheader. (easylistchina+easylist.txt: 12006) -/(.*/)?adgalleryheader\. -adgalleryheader.*. -# /adgallery3| (easylistchina+easylist.txt: 12005) -/(.*/)?adgallery3$ -# /adgallery3. (easylistchina+easylist.txt: 12004) -/(.*/)?adgallery3\. -adgallery3.*. -# /adgallery2| (easylistchina+easylist.txt: 12003) -/(.*/)?adgallery2$ -# /adgallery2. (easylistchina+easylist.txt: 12002) -/(.*/)?adgallery2\. -adgallery2.*. -# /adgallery1| (easylistchina+easylist.txt: 12001) -/(.*/)?adgallery1$ -# /adgallery1. (easylistchina+easylist.txt: 12000) -/(.*/)?adgallery1\. -adgallery1.*. -# /adfunctions. (easylistchina+easylist.txt: 11999) -/(.*/)?adfunctions\. -adfunctions.*. -# /adfunction. (easylistchina+easylist.txt: 11998) -/(.*/)?adfunction\. -adfunction.*. -# /adfuncs. (easylistchina+easylist.txt: 11997) -/(.*/)?adfuncs\. -adfuncs.*. -# /adfshow? (easylistchina+easylist.txt: 11996) -/(.*/)?adfshow\? -# /adfrm. (easylistchina+easylist.txt: 11995) -/(.*/)?adfrm\. -adfrm.*. -# /adfrequencycapping. (easylistchina+easylist.txt: 11994) -/(.*/)?adfrequencycapping\. -adfrequencycapping.*. -# /adframewrapper. (easylistchina+easylist.txt: 11993) -/(.*/)?adframewrapper\. -adframewrapper.*. -# /adframetop. (easylistchina+easylist.txt: 11992) -/(.*/)?adframetop\. -adframetop.*. -# /adframemiddle. (easylistchina+easylist.txt: 11991) -/(.*/)?adframemiddle\. -adframemiddle.*. -# /adframecommon. (easylistchina+easylist.txt: 11990) -/(.*/)?adframecommon\. -adframecommon.*. -# /adframebottom. (easylistchina+easylist.txt: 11989) -/(.*/)?adframebottom\. -adframebottom.*. -# /adframe_ (easylistchina+easylist.txt: 11988) -/(.*/)?adframe_ -# /adframe? (easylistchina+easylist.txt: 11987) -/(.*/)?adframe\? -# /adframe728bot. (easylistchina+easylist.txt: 11986) -/(.*/)?adframe728bot\. -adframe728bot.*. -# /adframe728b2. (easylistchina+easylist.txt: 11985) -/(.*/)?adframe728b2\. -adframe728b2.*. -# /adframe728b. (easylistchina+easylist.txt: 11984) -/(.*/)?adframe728b\. -adframe728b.*. -# /adframe728a. (easylistchina+easylist.txt: 11983) -/(.*/)?adframe728a\. -adframe728a.*. -# /adframe468. (easylistchina+easylist.txt: 11982) -/(.*/)?adframe468\. -adframe468.*. -# /adframe2. (easylistchina+easylist.txt: 11981) -/(.*/)?adframe2\. -adframe2.*. -# /adframe120x240. (easylistchina+easylist.txt: 11980) -/(.*/)?adframe120x240\. -adframe120x240.*. -# /adframe120. (easylistchina+easylist.txt: 11979) -/(.*/)?adframe120\. -adframe120.*. -# /adframe/* (easylistchina+easylist.txt: 11978) -/(.*/)?adframe/.* -# /adframe. (easylistchina+easylist.txt: 11977) -/(.*/)?adframe\. -adframe.*. -# /adfr. (easylistchina+easylist.txt: 11976) -/(.*/)?adfr\. -adfr.*. -# /adfox. (easylistchina+easylist.txt: 11975) -/(.*/)?adfox\. -adfox.*. -# /adforums/* (easylistchina+easylist.txt: 11974) -/(.*/)?adforums/.* -# /adformats/* (easylistchina+easylist.txt: 11973) -/(.*/)?adformats/.* -# /adforge. (easylistchina+easylist.txt: 11972) -/(.*/)?adforge\. -adforge.*. -# /adforgame728x90_ (easylistchina+easylist.txt: 11971) -/(.*/)?adforgame728x90_ -# /adforgame728x90. (easylistchina+easylist.txt: 11970) -/(.*/)?adforgame728x90\. -adforgame728x90.*. -# /adforgame160x600. (easylistchina+easylist.txt: 11969) -/(.*/)?adforgame160x600\. -adforgame160x600.*. -# /adfootright. (easylistchina+easylist.txt: 11968) -/(.*/)?adfootright\. -adfootright.*. -# /adfootleft. (easylistchina+easylist.txt: 11967) -/(.*/)?adfootleft\. -adfootleft.*. -# /adFooterBG. (easylistchina+easylist.txt: 11966) -/(.*/)?adFooterBG\. -adFooterBG.*. -# /adfooter. (easylistchina+easylist.txt: 11965) -/(.*/)?adfooter\. -adfooter.*. -# /adfootcenter. (easylistchina+easylist.txt: 11964) -/(.*/)?adfootcenter\. -adfootcenter.*. -# /adfolder/* (easylistchina+easylist.txt: 11963) -/(.*/)?adfolder/.* -# /adfly/* (easylistchina+easylist.txt: 11962) -/(.*/)?adfly/.* -# /adflashes/* (easylistchina+easylist.txt: 11961) -/(.*/)?adflashes/.* -# /adflash. (easylistchina+easylist.txt: 11960) -/(.*/)?adflash\. -adflash.*. -# /adfillers/* (easylistchina+easylist.txt: 11959) -/(.*/)?adfillers/.* -# /adfiles/* (easylistchina+easylist.txt: 11958) -/(.*/)?adfiles/.* -# /adfiles. (easylistchina+easylist.txt: 11957) -/(.*/)?adfiles\. -adfiles.*. -# /adfile/* (easylistchina+easylist.txt: 11956) -/(.*/)?adfile/.* -# /adfile. (easylistchina+easylist.txt: 11955) -/(.*/)?adfile\. -adfile.*. -# /adfever_ (easylistchina+easylist.txt: 11954) -/(.*/)?adfever_ -# /adfetcher? (easylistchina+easylist.txt: 11953) -/(.*/)?adfetcher\? -# /adfetch? (easylistchina+easylist.txt: 11952) -/(.*/)?adfetch\? -# /adfetch. (easylistchina+easylist.txt: 11951) -/(.*/)?adfetch\. -adfetch.*. -# /adfeedtestview. (easylistchina+easylist.txt: 11950) -/(.*/)?adfeedtestview\. -adfeedtestview.*. -# /adfeedback/* (easylistchina+easylist.txt: 11949) -/(.*/)?adfeedback/.* -# /adfeed. (easylistchina+easylist.txt: 11948) -/(.*/)?adfeed\. -adfeed.*. -# /adfarm/* (easylistchina+easylist.txt: 11947) -/(.*/)?adfarm/.* -# /adfactory_ (easylistchina+easylist.txt: 11944) -/(.*/)?adfactory_ -# /adfactory- (easylistchina+easylist.txt: 11942) -/(.*/)?adfactory- -adfactory-*. -# /adfactor_ (easylistchina+easylist.txt: 11941) -/(.*/)?adfactor_ -# /adfactor/* (easylistchina+easylist.txt: 11940) -/(.*/)?adfactor/.* -# /adf.cgi? (easylistchina+easylist.txt: 11939) -/(.*/)?adf\.cgi\? -# /adexternal. (easylistchina+easylist.txt: 11938) -/(.*/)?adexternal\. -adexternal.*. -# /adexclude/* (easylistchina+easylist.txt: 11937) -/(.*/)?adexclude/.* -# /adexample? (easylistchina+easylist.txt: 11936) -/(.*/)?adexample\? -# /adevents. (easylistchina+easylist.txt: 11935) -/(.*/)?adevents\. -adevents.*. -# /adevent. (easylistchina+easylist.txt: 11934) -/(.*/)?adevent\. -adevent.*. -# /adError/* (easylistchina+easylist.txt: 11933) -/(.*/)?adError/.* -# /aderlee_ads. (easylistchina+easylist.txt: 11932) -/(.*/)?aderlee_ads\. -# /adentry. (easylistchina+easylist.txt: 11931) -/(.*/)?adentry\. -adentry.*. -# /adengine_ (easylistchina+easylist.txt: 11930) -/(.*/)?adengine_ -# /adengine/* (easylistchina+easylist.txt: 11929) -/(.*/)?adengine/.* -# /adengage_ (easylistchina+easylist.txt: 11928) -/(.*/)?adengage_ -# /adengage6. (easylistchina+easylist.txt: 11927) -/(.*/)?adengage6\. -adengage6.*. -# /adengage5. (easylistchina+easylist.txt: 11926) -/(.*/)?adengage5\. -adengage5.*. -# /adengage4. (easylistchina+easylist.txt: 11925) -/(.*/)?adengage4\. -adengage4.*. -# /adengage3. (easylistchina+easylist.txt: 11924) -/(.*/)?adengage3\. -adengage3.*. -# /adengage2. (easylistchina+easylist.txt: 11923) -/(.*/)?adengage2\. -adengage2.*. -# /adengage1. (easylistchina+easylist.txt: 11922) -/(.*/)?adengage1\. -adengage1.*. -# /adengage0. (easylistchina+easylist.txt: 11921) -/(.*/)?adengage0\. -adengage0.*. -# /adengage/* (easylistchina+easylist.txt: 11920) -/(.*/)?adengage/.* -# /adengage. (easylistchina+easylist.txt: 11919) -/(.*/)?adengage\. -adengage.*. -# /adengage- (easylistchina+easylist.txt: 11918) -/(.*/)?adengage- -adengage-*. -# /adedge/* (easylistchina+easylist.txt: 11917) -/(.*/)?adedge/.* -# /addyn|*|adtech; (easylistchina+easylist.txt: 11916) -/(.*/)?addyn\|.*\|adtech; -# /addyn|*;adtech; (easylistchina+easylist.txt: 11915) -/(.*/)?addyn\|.*;adtech; -# /addyn/3.0/* (easylistchina+easylist.txt: 11914) -/(.*/)?addyn/3\.0/.* -# /adds_banner/* (easylistchina+easylist.txt: 11913) -/(.*/)?adds_banner/.* -# /addon/ad/* (easylistchina+easylist.txt: 11912) -/(.*/)?addon/ad/.* -# /addisplay. (easylistchina+easylist.txt: 11911) -/(.*/)?addisplay\. -addisplay.*. -# /addeliverymodule/* (easylistchina+easylist.txt: 11910) -/(.*/)?addeliverymodule/.* -# /addelivery/* (easylistchina+easylist.txt: 11909) -/(.*/)?addelivery/.* -# /addefend/* (easylistchina+easylist.txt: 11908) -/(.*/)?addefend/.* -# /addefend. (easylistchina+easylist.txt: 11907) -/(.*/)?addefend\. -addefend.*. -# /addeals/* (easylistchina+easylist.txt: 11906) -/(.*/)?addeals/.* -# /addatasandbox? (easylistchina+easylist.txt: 11905) -/(.*/)?addatasandbox\? -# /addata. (easylistchina+easylist.txt: 11904) -/(.*/)?addata\. -addata.*. -# /add728. (easylistchina+easylist.txt: 11903) -/(.*/)?add728\. -add728.*. -# /adcycle/* (easylistchina+easylist.txt: 11902) -/(.*/)?adcycle/.* -# /adcycle. (easylistchina+easylist.txt: 11901) -/(.*/)?adcycle\. -adcycle.*. -# /adcss/* (easylistchina+easylist.txt: 11900) -/(.*/)?adcss/.* -# /adcreative/* (easylistchina+easylist.txt: 11899) -/(.*/)?adcreative/.* -# /adcreative. (easylistchina+easylist.txt: 11898) -/(.*/)?adcreative\. -adcreative.*. -# /adcounter. (easylistchina+easylist.txt: 11897) -/(.*/)?adcounter\. -adcounter.*. -# /adcount. (easylistchina+easylist.txt: 11896) -/(.*/)?adcount\. -adcount.*. -# /adcore_ (easylistchina+easylist.txt: 11895) -/(.*/)?adcore_ -# /adcore. (easylistchina+easylist.txt: 11894) -/(.*/)?adcore\. -adcore.*. -# /adcontroller. (easylistchina+easylist.txt: 11893) -/(.*/)?adcontroller\. -adcontroller.*. -# /adcontrol/* (easylistchina+easylist.txt: 11892) -/(.*/)?adcontrol/.* -# /adcontrol. (easylistchina+easylist.txt: 11891) -/(.*/)?adcontrol\. -adcontrol.*. -# /adcontents_ (easylistchina+easylist.txt: 11890) -/(.*/)?adcontents_ -# /adcontent/* (easylistchina+easylist.txt: 11889) -/(.*/)?adcontent/.* -# /adcontainer? (easylistchina+easylist.txt: 11887) -/(.*/)?adcontainer\? -# /adconfig/* (easylistchina+easylist.txt: 11886) -/(.*/)?adconfig/.* -# /adconfig.xml? (easylistchina+easylist.txt: 11885) -/(.*/)?adconfig\.xml\? -# /adconfig.js (easylistchina+easylist.txt: 11884) -/(.*/)?adconfig\.js -adconfig.js*. -# /adcomponent/* (easylistchina+easylist.txt: 11883) -/(.*/)?adcomponent/.* -# /adcomp. (easylistchina+easylist.txt: 11882) -/(.*/)?adcomp\. -adcomp.*. -# /adcommon? (easylistchina+easylist.txt: 11881) -/(.*/)?adcommon\? -# /adcollector. (easylistchina+easylist.txt: 11880) -/(.*/)?adcollector\. -adcollector.*. -# /adcodes/* (easylistchina+easylist.txt: 11879) -/(.*/)?adcodes/.* -# /adcode_ (easylistchina+easylist.txt: 11878) -/(.*/)?adcode_ -# /adcode/* (easylistchina+easylist.txt: 11877) -/(.*/)?adcode/.* -# /adcode. (easylistchina+easylist.txt: 11876) -/(.*/)?adcode\. -adcode.*. -# /adclutter. (easylistchina+easylist.txt: 11875) -/(.*/)?adclutter\. -adclutter.*. -# /adclixad. (easylistchina+easylist.txt: 11874) -/(.*/)?adclixad\. -adclixad.*. -# /adclix. (easylistchina+easylist.txt: 11873) -/(.*/)?adclix\. -adclix.*. -# /adclient/* (easylistchina+easylist.txt: 11872) -/(.*/)?adclient/.* -# /adclient. (easylistchina+easylist.txt: 11871) -/(.*/)?adclient\. -adclient.*. -# /adclient- (easylistchina+easylist.txt: 11870) -/(.*/)?adclient- -adclient-*. -# /adclick/* (easylistchina+easylist.txt: 11869) -/(.*/)?adclick/.* -# /adclick. (easylistchina+easylist.txt: 11868) -/(.*/)?adclick\. -adclick.*. -# /adcircle. (easylistchina+easylist.txt: 11867) -/(.*/)?adcircle\. -adcircle.*. -# /adchoicesv4. (easylistchina+easylist.txt: 11866) -/(.*/)?adchoicesv4\. -adchoicesv4.*. -# /adchoiceslogo. (easylistchina+easylist.txt: 11865) -/(.*/)?adchoiceslogo\. -adchoiceslogo.*. -# /adchoicesicon. (easylistchina+easylist.txt: 11864) -/(.*/)?adchoicesicon\. -adchoicesicon.*. -# /adchoicesfooter. (easylistchina+easylist.txt: 11863) -/(.*/)?adchoicesfooter\. -adchoicesfooter.*. -# /adchoices_ (easylistchina+easylist.txt: 11862) -/(.*/)?adchoices_ -# /adchoices2. (easylistchina+easylist.txt: 11861) -/(.*/)?adchoices2\. -adchoices2.*. -# /adchoices16. (easylistchina+easylist.txt: 11860) -/(.*/)?adchoices16\. -adchoices16.*. -# /adchoices/* (easylistchina+easylist.txt: 11859) -/(.*/)?adchoices/.* -# /adchoices. (easylistchina+easylist.txt: 11858) -/(.*/)?adchoices\. -adchoices.*. -# /adchoices- (easylistchina+easylist.txt: 11857) -/(.*/)?adchoices- -adchoices-*. -# /adchoice_ (easylistchina+easylist.txt: 11856) -/(.*/)?adchoice_ -# /adchoice/* (easylistchina+easylist.txt: 11855) -/(.*/)?adchoice/.* -# /adchoice. (easylistchina+easylist.txt: 11854) -/(.*/)?adchoice\. -adchoice.*. -# /adcheck? (easylistchina+easylist.txt: 11853) -/(.*/)?adcheck\? -# /adcheck. (easylistchina+easylist.txt: 11852) -/(.*/)?adcheck\. -adcheck.*. -# /adchannel_ (easylistchina+easylist.txt: 11851) -/(.*/)?adchannel_ -# /adchain. (easylistchina+easylist.txt: 11850) -/(.*/)?adchain\. -adchain.*. -# /adchain- (easylistchina+easylist.txt: 11849) -/(.*/)?adchain- -adchain-*. -# /adcgi? (easylistchina+easylist.txt: 11848) -/(.*/)?adcgi\? -# /adcframe. (easylistchina+easylist.txt: 11847) -/(.*/)?adcframe\. -adcframe.*. -# /adcentral. (easylistchina+easylist.txt: 11846) -/(.*/)?adcentral\. -adcentral.*. -# /adcell/* (easylistchina+easylist.txt: 11844) -/(.*/)?adcell/.* -# /adcdn. (easylistchina+easylist.txt: 11843) -/(.*/)?adcdn\. -adcdn.*. -# /adcde.js (easylistchina+easylist.txt: 11842) -/(.*/)?adcde\.js -adcde.js*. -# /adcast_ (easylistchina+easylist.txt: 11841) -/(.*/)?adcast_ -# /adcast01_ (easylistchina+easylist.txt: 11840) -/(.*/)?adcast01_ -# /adcash. (easylistchina+easylist.txt: 11839) -/(.*/)?adcash\. -adcash.*. -# /adcash- (easylistchina+easylist.txt: 11838) -/(.*/)?adcash- -adcash-*. -# /adcampaigns/* (easylistchina+easylist.txt: 11837) -/(.*/)?adcampaigns/.* -# /adcalloverride. (easylistchina+easylist.txt: 11836) -/(.*/)?adcalloverride\. -adcalloverride.*. -# /adcall. (easylistchina+easylist.txt: 11835) -/(.*/)?adcall\. -adcall.*. -# /adcache. (easylistchina+easylist.txt: 11834) -/(.*/)?adcache\. -adcache.*. -# /adbytes. (easylistchina+easylist.txt: 11833) -/(.*/)?adbytes\. -adbytes.*. -# /adbutler/* (easylistchina+easylist.txt: 11832) -/(.*/)?adbutler/.* -# /adbureau. (easylistchina+easylist.txt: 11831) -/(.*/)?adbureau\. -adbureau.*. -# /adbug_ (easylistchina+easylist.txt: 11830) -/(.*/)?adbug_ -# /adbucks/* (easylistchina+easylist.txt: 11829) -/(.*/)?adbucks/.* -# /adbriteincright. (easylistchina+easylist.txt: 11828) -/(.*/)?adbriteincright\. -adbriteincright.*. -# /adbriteincleft2. (easylistchina+easylist.txt: 11827) -/(.*/)?adbriteincleft2\. -adbriteincleft2.*. -# /adbriteinc. (easylistchina+easylist.txt: 11826) -/(.*/)?adbriteinc\. -adbriteinc.*. -# /adbrite_ (easylistchina+easylist.txt: 11825) -/(.*/)?adbrite_ -# /adbrite2. (easylistchina+easylist.txt: 11824) -/(.*/)?adbrite2\. -adbrite2.*. -# /adbrite/* (easylistchina+easylist.txt: 11823) -/(.*/)?adbrite/.* -# /adbrite. (easylistchina+easylist.txt: 11822) -/(.*/)?adbrite\. -adbrite.*. -# /adbrite- (easylistchina+easylist.txt: 11821) -/(.*/)?adbrite- -adbrite-*. -# /adboxtable- (easylistchina+easylist.txt: 11820) -/(.*/)?adboxtable- -adboxtable-*. -# /adboxes/* (easylistchina+easylist.txt: 11819) -/(.*/)?adboxes/.* -# /adboxbk. (easylistchina+easylist.txt: 11818) -/(.*/)?adboxbk\. -adboxbk.*. -# /adbox_ (easylistchina+easylist.txt: 11817) -/(.*/)?adbox_ -# /adbox2. (easylistchina+easylist.txt: 11816) -/(.*/)?adbox2\. -adbox2.*. -# /adbox1. (easylistchina+easylist.txt: 11815) -/(.*/)?adbox1\. -adbox1.*. -# /adbox/* (easylistchina+easylist.txt: 11814) -/(.*/)?adbox/.* -# /adbox. (easylistchina+easylist.txt: 11813) -/(.*/)?adbox\. -adbox.*. -# /adbottom. (easylistchina+easylist.txt: 11812) -/(.*/)?adbottom\. -adbottom.*. -# /adbotright. (easylistchina+easylist.txt: 11811) -/(.*/)?adbotright\. -adbotright.*. -# /adbotleft. (easylistchina+easylist.txt: 11810) -/(.*/)?adbotleft\. -adbotleft.*. -# /adbot_ (easylistchina+easylist.txt: 11809) -/(.*/)?adbot_ -# /adbot728. (easylistchina+easylist.txt: 11808) -/(.*/)?adbot728\. -adbot728.*. -# /adbot300. (easylistchina+easylist.txt: 11807) -/(.*/)?adbot300\. -adbot300.*. -# /adbot160. (easylistchina+easylist.txt: 11806) -/(.*/)?adbot160\. -adbot160.*. -# /adborder. (easylistchina+easylist.txt: 11805) -/(.*/)?adborder\. -adborder.*. -# /adboost. (easylistchina+easylist.txt: 11804) -/(.*/)?adboost\. -adboost.*. -# /adbn? (easylistchina+easylist.txt: 11803) -/(.*/)?adbn\? -# /adblockr. (easylistchina+easylist.txt: 11802) -/(.*/)?adblockr\. -adblockr.*. -# /adblockl. (easylistchina+easylist.txt: 11801) -/(.*/)?adblockl\. -adblockl.*. -# /adblock?id= (easylistchina+easylist.txt: 11800) -/(.*/)?adblock\?id= -# /adblock26. (easylistchina+easylist.txt: 11799) -/(.*/)?adblock26\. -adblock26.*. -# /adblock.js (easylistchina+easylist.txt: 11798) -/(.*/)?adblock\.js -adblock.js*. -# /adblock.ash (easylistchina+easylist.txt: 11797) -/(.*/)?adblock\.ash -adblock.ash*. -# /adblob. (easylistchina+easylist.txt: 11796) -/(.*/)?adblob\. -adblob.*. -# /adblade-publisher-tools/* (easylistchina+easylist.txt: 11795) -/(.*/)?adblade-publisher-tools/.* -# /adbg.jpg (easylistchina+easylist.txt: 11794) -/(.*/)?adbg\.jpg -adbg.jpg*. -# /adbetween/* (easylistchina+easylist.txt: 11793) -/(.*/)?adbetween/.* -# /adbebi_ (easylistchina+easylist.txt: 11792) -/(.*/)?adbebi_ -# /adbeacon. (easylistchina+easylist.txt: 11791) -/(.*/)?adbeacon\. -adbeacon.*. -# /adbase. (easylistchina+easylist.txt: 11790) -/(.*/)?adbase\. -adbase.*. -# /adbars. (easylistchina+easylist.txt: 11789) -/(.*/)?adbars\. -adbars.*. -# /adbar_ (easylistchina+easylist.txt: 11788) -/(.*/)?adbar_ -# /adbar2_ (easylistchina+easylist.txt: 11787) -/(.*/)?adbar2_ -# /adbar/* (easylistchina+easylist.txt: 11786) -/(.*/)?adbar/.* -# /adbar. (easylistchina+easylist.txt: 11785) -/(.*/)?adbar\. -adbar.*. -# /adbanners/* (easylistchina+easylist.txt: 11784) -/(.*/)?adbanners/.* -# /adbanner_ (easylistchina+easylist.txt: 11783) -/(.*/)?adbanner_ -# /adbanner2. (easylistchina+easylist.txt: 11782) -/(.*/)?adbanner2\. -adbanner2.*. -# /adbanner/* (easylistchina+easylist.txt: 11781) -/(.*/)?adbanner/.* -# /adbanner. (easylistchina+easylist.txt: 11780) -/(.*/)?adbanner\. -adbanner.*. -# /adban. (easylistchina+easylist.txt: 11779) -/(.*/)?adban\. -adban.*. -# /adback? (easylistchina+easylist.txt: 11778) -/(.*/)?adback\? -# /adback. (easylistchina+easylist.txt: 11777) -/(.*/)?adback\. -adback.*. -# /adb.js?tag= (easylistchina+easylist.txt: 11776) -/(.*/)?adb\.js\?tag= -# /adasset4/* (easylistchina+easylist.txt: 11775) -/(.*/)?adasset4/.* -# /adasset/* (easylistchina+easylist.txt: 11774) -/(.*/)?adasset/.* -# /adarena/* (easylistchina+easylist.txt: 11773) -/(.*/)?adarena/.* -# /adaptvexchangevastvideo. (easylistchina+easylist.txt: 11772) -/(.*/)?adaptvexchangevastvideo\. -adaptvexchangevastvideo.*. -# /adaptvadservervastvideo. (easylistchina+easylist.txt: 11771) -/(.*/)?adaptvadservervastvideo\. -adaptvadservervastvideo.*. -# /adaptvadplayer. (easylistchina+easylist.txt: 11770) -/(.*/)?adaptvadplayer\. -adaptvadplayer.*. -# /adanim/* (easylistchina+easylist.txt: 11769) -/(.*/)?adanim/.* -# /adanalytics. (easylistchina+easylist.txt: 11768) -/(.*/)?adanalytics\. -adanalytics.*. -# /adaffiliate_ (easylistchina+easylist.txt: 11767) -/(.*/)?adaffiliate_ -# /adactions. (easylistchina+easylist.txt: 11766) -/(.*/)?adactions\. -adactions.*. -# /ad_www_ (easylistchina+easylist.txt: 11765) -/(.*/)?ad_www_ -# /ad_wrapper. (easylistchina+easylist.txt: 11764) -/(.*/)?ad_wrapper\. -# /ad_width/* (easylistchina+easylist.txt: 11763) -/(.*/)?ad_width/.* -# /ad_wide_ (easylistchina+easylist.txt: 11762) -/(.*/)?ad_wide_ -# /ad_view_ (easylistchina+easylist.txt: 11761) -/(.*/)?ad_view_ -# /ad_video1. (easylistchina+easylist.txt: 11760) -/(.*/)?ad_video1\. -# /ad_video.htm (easylistchina+easylist.txt: 11759) -/(.*/)?ad_video\.htm -# /ad_vertical. (easylistchina+easylist.txt: 11758) -/(.*/)?ad_vertical\. -# /ad_vert. (easylistchina+easylist.txt: 11757) -/(.*/)?ad_vert\. -# /ad_ver/* (easylistchina+easylist.txt: 11756) -/(.*/)?ad_ver/.* -# /ad_utils/* (easylistchina+easylist.txt: 11755) -/(.*/)?ad_utils/.* -# /ad_utils. (easylistchina+easylist.txt: 11754) -/(.*/)?ad_utils\. -# /ad_util. (easylistchina+easylist.txt: 11753) -/(.*/)?ad_util\. -# /ad_upload/* (easylistchina+easylist.txt: 11752) -/(.*/)?ad_upload/.* -# /ad_units/* (easylistchina+easylist.txt: 11751) -/(.*/)?ad_units/.* -# /ad_units. (easylistchina+easylist.txt: 11750) -/(.*/)?ad_units\. -# /ad_txt. (easylistchina+easylist.txt: 11749) -/(.*/)?ad_txt\. -# /ad_tpl. (easylistchina+easylist.txt: 11748) -/(.*/)?ad_tpl\. -# /ad_tower_ (easylistchina+easylist.txt: 11747) -/(.*/)?ad_tower_ -# /ad_topgray2. (easylistchina+easylist.txt: 11746) -/(.*/)?ad_topgray2\. -# /ad_top_ (easylistchina+easylist.txt: 11745) -/(.*/)?ad_top_ -# /ad_top/* (easylistchina+easylist.txt: 11744) -/(.*/)?ad_top/.* -# /ad_top. (easylistchina+easylist.txt: 11743) -/(.*/)?ad_top\. -# /ad_title_ (easylistchina+easylist.txt: 11742) -/(.*/)?ad_title_ -# /ad_timer. (easylistchina+easylist.txt: 11741) -/(.*/)?ad_timer\. -# /ad_tile/* (easylistchina+easylist.txt: 11740) -/(.*/)?ad_tile/.* -# /ad_tickets. (easylistchina+easylist.txt: 11739) -/(.*/)?ad_tickets\. -# /ad_text_ (easylistchina+easylist.txt: 11738) -/(.*/)?ad_text_ -# /ad_text. (easylistchina+easylist.txt: 11737) -/(.*/)?ad_text\. -# /ad_tags_ (easylistchina+easylist.txt: 11736) -/(.*/)?ad_tags_ -# /ad_tag_ (easylistchina+easylist.txt: 11735) -/(.*/)?ad_tag_ -# /ad_tag. (easylistchina+easylist.txt: 11734) -/(.*/)?ad_tag\. -# /ad_tab. (easylistchina+easylist.txt: 11733) -/(.*/)?ad_tab\. -# /ad_system/* (easylistchina+easylist.txt: 11732) -/(.*/)?ad_system/.* -# /ad_syshome. (easylistchina+easylist.txt: 11731) -/(.*/)?ad_syshome\. -# /ad_sys/* (easylistchina+easylist.txt: 11730) -/(.*/)?ad_sys/.* -# /ad_supertile/* (easylistchina+easylist.txt: 11729) -/(.*/)?ad_supertile/.* -# /ad_styling_ (easylistchina+easylist.txt: 11728) -/(.*/)?ad_styling_ -# /ad_stem/* (easylistchina+easylist.txt: 11727) -/(.*/)?ad_stem/.* -# /ad_status. (easylistchina+easylist.txt: 11726) -/(.*/)?ad_status\. -# /ad_srv. (easylistchina+easylist.txt: 11725) -/(.*/)?ad_srv\. -# /ad_squares. (easylistchina+easylist.txt: 11724) -/(.*/)?ad_squares\. -# /ad_square_ (easylistchina+easylist.txt: 11723) -/(.*/)?ad_square_ -# /ad_square. (easylistchina+easylist.txt: 11722) -/(.*/)?ad_square\. -# /ad_spot. (easylistchina+easylist.txt: 11721) -/(.*/)?ad_spot\. -# /ad_space. (easylistchina+easylist.txt: 11720) -/(.*/)?ad_space\. -# /ad_slideout. (easylistchina+easylist.txt: 11719) -/(.*/)?ad_slideout\. -# /ad_skyscraper. (easylistchina+easylist.txt: 11718) -/(.*/)?ad_skyscraper\. -# /ad_sky. (easylistchina+easylist.txt: 11717) -/(.*/)?ad_sky\. -# /ad_skin_ (easylistchina+easylist.txt: 11716) -/(.*/)?ad_skin_ -# /ad_sizes= (easylistchina+easylist.txt: 11715) -/(.*/)?ad_sizes= -# /ad_sidebar/* (easylistchina+easylist.txt: 11714) -/(.*/)?ad_sidebar/.* -# /ad_side. (easylistchina+easylist.txt: 11713) -/(.*/)?ad_side\. -# /ad_show? (easylistchina+easylist.txt: 11712) -/(.*/)?ad_show\? -# /ad_show. (easylistchina+easylist.txt: 11711) -/(.*/)?ad_show\. -# /ad_shared/* (easylistchina+easylist.txt: 11710) -/(.*/)?ad_shared/.* -# /ad_servlet. (easylistchina+easylist.txt: 11709) -/(.*/)?ad_servlet\. -# /ad_server/* (easylistchina+easylist.txt: 11708) -/(.*/)?ad_server/.* -# /ad_server. (easylistchina+easylist.txt: 11707) -/(.*/)?ad_server\. -# /ad_serve_ (easylistchina+easylist.txt: 11706) -/(.*/)?ad_serve_ -# /ad_serve. (easylistchina+easylist.txt: 11705) -/(.*/)?ad_serve\. -# /ad_serv. (easylistchina+easylist.txt: 11704) -/(.*/)?ad_serv\. -# /ad_scroller. (easylistchina+easylist.txt: 11703) -/(.*/)?ad_scroller\. -# /ad_script_ (easylistchina+easylist.txt: 11702) -/(.*/)?ad_script_ -# /ad_script. (easylistchina+easylist.txt: 11701) -/(.*/)?ad_script\. -# /ad_rotator_ (easylistchina+easylist.txt: 11700) -/(.*/)?ad_rotator_ -# /ad_rotator/* (easylistchina+easylist.txt: 11699) -/(.*/)?ad_rotator/.* -# /ad_rotator. (easylistchina+easylist.txt: 11698) -/(.*/)?ad_rotator\. -# /ad_rotation. (easylistchina+easylist.txt: 11697) -/(.*/)?ad_rotation\. -# /ad_right_ (easylistchina+easylist.txt: 11696) -/(.*/)?ad_right_ -# /ad_right. (easylistchina+easylist.txt: 11695) -/(.*/)?ad_right\. -# /ad_resize. (easylistchina+easylist.txt: 11694) -/(.*/)?ad_resize\. -# /ad_request. (easylistchina+easylist.txt: 11693) -/(.*/)?ad_request\. -# /ad_req. (easylistchina+easylist.txt: 11692) -/(.*/)?ad_req\. -# /ad_rentangle. (easylistchina+easylist.txt: 11691) -/(.*/)?ad_rentangle\. -# /ad_renderv4_ (easylistchina+easylist.txt: 11690) -/(.*/)?ad_renderv4_ -# /ad_render_ (easylistchina+easylist.txt: 11689) -/(.*/)?ad_render_ -# /ad_reloader_ (easylistchina+easylist.txt: 11688) -/(.*/)?ad_reloader_ -# /ad_refresher. (easylistchina+easylist.txt: 11687) -/(.*/)?ad_refresher\. -# /ad_refresh. (easylistchina+easylist.txt: 11686) -/(.*/)?ad_refresh\. -# /ad_rectangle_ (easylistchina+easylist.txt: 11685) -/(.*/)?ad_rectangle_ -# /ad_print. (easylistchina+easylist.txt: 11684) -/(.*/)?ad_print\. -# /ad_preroll- (easylistchina+easylist.txt: 11683) -/(.*/)?ad_preroll- -# /ad_premium_ (easylistchina+easylist.txt: 11682) -/(.*/)?ad_premium_ -# /ad_premium. (easylistchina+easylist.txt: 11681) -/(.*/)?ad_premium\. -# /ad_position_ (easylistchina+easylist.txt: 11680) -/(.*/)?ad_position_ -# /ad_position= (easylistchina+easylist.txt: 11679) -/(.*/)?ad_position= -# /ad_pos= (easylistchina+easylist.txt: 11678) -/(.*/)?ad_pos= -# /ad_popup_ (easylistchina+easylist.txt: 11677) -/(.*/)?ad_popup_ -# /ad_pop1. (easylistchina+easylist.txt: 11676) -/(.*/)?ad_pop1\. -# /ad_pop. (easylistchina+easylist.txt: 11675) -/(.*/)?ad_pop\. -# /ad_pics/* (easylistchina+easylist.txt: 11674) -/(.*/)?ad_pics/.* -# /ad_peel/* (easylistchina+easylist.txt: 11673) -/(.*/)?ad_peel/.* -# /ad_parts. (easylistchina+easylist.txt: 11672) -/(.*/)?ad_parts\. -# /ad_paper_ (easylistchina+easylist.txt: 11671) -/(.*/)?ad_paper_ -# /ad_page_ (easylistchina+easylist.txt: 11670) -/(.*/)?ad_page_ -# /ad_overlay. (easylistchina+easylist.txt: 11669) -/(.*/)?ad_overlay\. -# /ad_option_ (easylistchina+easylist.txt: 11668) -/(.*/)?ad_option_ -# /ad_ops/* (easylistchina+easylist.txt: 11667) -/(.*/)?ad_ops/.* -# /ad_offersmail_ (easylistchina+easylist.txt: 11666) -/(.*/)?ad_offersmail_ -# /ad_oas/* (easylistchina+easylist.txt: 11665) -/(.*/)?ad_oas/.* -# /ad_notice. (easylistchina+easylist.txt: 11664) -/(.*/)?ad_notice\. -# /ad_note. (easylistchina+easylist.txt: 11663) -/(.*/)?ad_note\. -# /ad_news. (easylistchina+easylist.txt: 11662) -/(.*/)?ad_news\. -# /ad_navigbar_ (easylistchina+easylist.txt: 11661) -/(.*/)?ad_navigbar_ -# /ad_multi_ (easylistchina+easylist.txt: 11660) -/(.*/)?ad_multi_ -# /ad_mpu. (easylistchina+easylist.txt: 11659) -/(.*/)?ad_mpu\. -# /ad_mobile. (easylistchina+easylist.txt: 11658) -/(.*/)?ad_mobile\. -# /ad_mini_ (easylistchina+easylist.txt: 11657) -/(.*/)?ad_mini_ -# /ad_medium_ (easylistchina+easylist.txt: 11656) -/(.*/)?ad_medium_ -# /ad_media/* (easylistchina+easylist.txt: 11655) -/(.*/)?ad_media/.* -# /ad_mbox. (easylistchina+easylist.txt: 11654) -/(.*/)?ad_mbox\. -# /ad_master_ (easylistchina+easylist.txt: 11653) -/(.*/)?ad_master_ -# /ad_manager/* (easylistchina+easylist.txt: 11652) -/(.*/)?ad_manager/.* -# /ad_manager. (easylistchina+easylist.txt: 11651) -/(.*/)?ad_manager\. -# /ad_manage. (easylistchina+easylist.txt: 11650) -/(.*/)?ad_manage\. -# /ad_lomadee. (easylistchina+easylist.txt: 11649) -/(.*/)?ad_lomadee\. -# /ad_log_ (easylistchina+easylist.txt: 11648) -/(.*/)?ad_log_ -# /ad_locations/* (easylistchina+easylist.txt: 11647) -/(.*/)?ad_locations/.* -# /ad_loader2. (easylistchina+easylist.txt: 11646) -/(.*/)?ad_loader2\. -# /ad_loader. (easylistchina+easylist.txt: 11645) -/(.*/)?ad_loader\. -# /ad_load. (easylistchina+easylist.txt: 11644) -/(.*/)?ad_load\. -# /ad_listpage. (easylistchina+easylist.txt: 11643) -/(.*/)?ad_listpage\. -# /ad_links/* (easylistchina+easylist.txt: 11642) -/(.*/)?ad_links/.* -# /ad_link. (easylistchina+easylist.txt: 11641) -/(.*/)?ad_link\. -# /ad_legend_ (easylistchina+easylist.txt: 11640) -/(.*/)?ad_legend_ -# /ad_left_ (easylistchina+easylist.txt: 11639) -/(.*/)?ad_left_ -# /ad_left. (easylistchina+easylist.txt: 11638) -/(.*/)?ad_left\. -# /ad_leaderboard/* (easylistchina+easylist.txt: 11637) -/(.*/)?ad_leaderboard/.* -# /ad_leaderboard. (easylistchina+easylist.txt: 11636) -/(.*/)?ad_leaderboard\. -# /ad_leader_ (easylistchina+easylist.txt: 11635) -/(.*/)?ad_leader_ -# /ad_leader. (easylistchina+easylist.txt: 11634) -/(.*/)?ad_leader\. -# /ad_large. (easylistchina+easylist.txt: 11633) -/(.*/)?ad_large\. -# /ad_label_ (easylistchina+easylist.txt: 11632) -/(.*/)?ad_label_ -# /ad_label728. (easylistchina+easylist.txt: 11631) -/(.*/)?ad_label728\. -# /ad_label2_ (easylistchina+easylist.txt: 11630) -/(.*/)?ad_label2_ -# /ad_keywords. (easylistchina+easylist.txt: 11629) -/(.*/)?ad_keywords\. -# /ad_jnaught/* (easylistchina+easylist.txt: 11628) -/(.*/)?ad_jnaught/.* -# /ad_insert. (easylistchina+easylist.txt: 11627) -/(.*/)?ad_insert\. -# /ad_index_ (easylistchina+easylist.txt: 11626) -/(.*/)?ad_index_ -# /ad_include. (easylistchina+easylist.txt: 11625) -/(.*/)?ad_include\. -# /ad_img/* (easylistchina+easylist.txt: 11624) -/(.*/)?ad_img/.* -# /ad_img. (easylistchina+easylist.txt: 11623) -/(.*/)?ad_img\. -# /ad_images/* (easylistchina+easylist.txt: 11622) -/(.*/)?ad_images/.* -# /ad_image2. (easylistchina+easylist.txt: 11621) -/(.*/)?ad_image2\. -# /ad_image. (easylistchina+easylist.txt: 11620) -/(.*/)?ad_image\. -# /ad_iframe_ (easylistchina+easylist.txt: 11619) -/(.*/)?ad_iframe_ -# /ad_iframe. (easylistchina+easylist.txt: 11618) -/(.*/)?ad_iframe\. -# /ad_icons/* (easylistchina+easylist.txt: 11617) -/(.*/)?ad_icons/.* -# /ad_html/* (easylistchina+easylist.txt: 11616) -/(.*/)?ad_html/.* -# /ad_horizontal. (easylistchina+easylist.txt: 11615) -/(.*/)?ad_horizontal\. -# /ad_horiz. (easylistchina+easylist.txt: 11614) -/(.*/)?ad_horiz\. -# /ad_horisontal. (easylistchina+easylist.txt: 11613) -/(.*/)?ad_horisontal\. -# /ad_homepage_ (easylistchina+easylist.txt: 11612) -/(.*/)?ad_homepage_ -# /ad_home_ (easylistchina+easylist.txt: 11611) -/(.*/)?ad_home_ -# /ad_home2011_ (easylistchina+easylist.txt: 11610) -/(.*/)?ad_home2011_ -# /ad_holder/* (easylistchina+easylist.txt: 11609) -/(.*/)?ad_holder/.* -# /ad_height/* (easylistchina+easylist.txt: 11608) -/(.*/)?ad_height/.* -# /ad_header_ (easylistchina+easylist.txt: 11607) -/(.*/)?ad_header_ -# /ad_header. (easylistchina+easylist.txt: 11606) -/(.*/)?ad_header\. -# /ad_head_ (easylistchina+easylist.txt: 11605) -/(.*/)?ad_head_ -# /ad_hcr_ (easylistchina+easylist.txt: 11604) -/(.*/)?ad_hcr_ -# /ad_hcl_ (easylistchina+easylist.txt: 11603) -/(.*/)?ad_hcl_ -# /ad_h.css? (easylistchina+easylist.txt: 11602) -/(.*/)?ad_h\.css\? -# /ad_google. (easylistchina+easylist.txt: 11601) -/(.*/)?ad_google\. -# /ad_gif_ (easylistchina+easylist.txt: 11600) -/(.*/)?ad_gif_ -# /ad_gif/* (easylistchina+easylist.txt: 11599) -/(.*/)?ad_gif/.* -# /ad_generator? (easylistchina+easylist.txt: 11598) -/(.*/)?ad_generator\? -# /ad_generator. (easylistchina+easylist.txt: 11597) -/(.*/)?ad_generator\. -# /ad_function. (easylistchina+easylist.txt: 11596) -/(.*/)?ad_function\. -# /ad_frm. (easylistchina+easylist.txt: 11595) -/(.*/)?ad_frm\. -# /ad_frame? (easylistchina+easylist.txt: 11594) -/(.*/)?ad_frame\? -# /ad_frame. (easylistchina+easylist.txt: 11593) -/(.*/)?ad_frame\. -# /ad_forum_ (easylistchina+easylist.txt: 11592) -/(.*/)?ad_forum_ -# /ad_footer_ (easylistchina+easylist.txt: 11591) -/(.*/)?ad_footer_ -# /ad_footer. (easylistchina+easylist.txt: 11590) -/(.*/)?ad_footer\. -# /ad_folder/* (easylistchina+easylist.txt: 11589) -/(.*/)?ad_folder/.* -# /ad_floater. (easylistchina+easylist.txt: 11588) -/(.*/)?ad_floater\. -# /ad_flat_ (easylistchina+easylist.txt: 11587) -/(.*/)?ad_flat_ -# /ad_flash/* (easylistchina+easylist.txt: 11586) -/(.*/)?ad_flash/.* -# /ad_filmstrip/* (easylistchina+easylist.txt: 11585) -/(.*/)?ad_filmstrip/.* -# /ad_filler. (easylistchina+easylist.txt: 11584) -/(.*/)?ad_filler\. -# /ad_fill. (easylistchina+easylist.txt: 11583) -/(.*/)?ad_fill\. -# /ad_files/* (easylistchina+easylist.txt: 11582) -/(.*/)?ad_files/.* -# /ad_file/* (easylistchina+easylist.txt: 11581) -/(.*/)?ad_file/.* -# /ad_feed. (easylistchina+easylist.txt: 11580) -/(.*/)?ad_feed\. -# /ad_entry_ (easylistchina+easylist.txt: 11579) -/(.*/)?ad_entry_ -# /ad_engine? (easylistchina+easylist.txt: 11578) -/(.*/)?ad_engine\? -# /ad_editorials_ (easylistchina+easylist.txt: 11577) -/(.*/)?ad_editorials_ -# /ad_ebound. (easylistchina+easylist.txt: 11576) -/(.*/)?ad_ebound\. -# /ad_drivers/* (easylistchina+easylist.txt: 11575) -/(.*/)?ad_drivers/.* -# /ad_display_ (easylistchina+easylist.txt: 11574) -/(.*/)?ad_display_ -# /ad_display. (easylistchina+easylist.txt: 11573) -/(.*/)?ad_display\. -# /ad_dir/* (easylistchina+easylist.txt: 11572) -/(.*/)?ad_dir/.* -# /ad_digital. (easylistchina+easylist.txt: 11571) -/(.*/)?ad_digital\. -# /ad_detect. (easylistchina+easylist.txt: 11570) -/(.*/)?ad_detect\. -# /ad_data/* (easylistchina+easylist.txt: 11569) -/(.*/)?ad_data/.* -# /ad_creatives. (easylistchina+easylist.txt: 11568) -/(.*/)?ad_creatives\. -# /ad_counter_ (easylistchina+easylist.txt: 11567) -/(.*/)?ad_counter_ -# /ad_counter. (easylistchina+easylist.txt: 11566) -/(.*/)?ad_counter\. -# /ad_count. (easylistchina+easylist.txt: 11565) -/(.*/)?ad_count\. -# /ad_contents/* (easylistchina+easylist.txt: 11564) -/(.*/)?ad_contents/.* -# /ad_content. (easylistchina+easylist.txt: 11563) -/(.*/)?ad_content\. -# /ad_container_ (easylistchina+easylist.txt: 11562) -/(.*/)?ad_container_ -# /ad_configurations_ (easylistchina+easylist.txt: 11561) -/(.*/)?ad_configurations_ -# /ad_configuration. (easylistchina+easylist.txt: 11560) -/(.*/)?ad_configuration\. -# /ad_commonside_ (easylistchina+easylist.txt: 11559) -/(.*/)?ad_commonside_ -# /ad_commonside. (easylistchina+easylist.txt: 11558) -/(.*/)?ad_commonside\. -# /ad_code. (easylistchina+easylist.txt: 11557) -/(.*/)?ad_code\. -# /ad_choices_ (easylistchina+easylist.txt: 11556) -/(.*/)?ad_choices_ -# /ad_choices. (easylistchina+easylist.txt: 11555) -/(.*/)?ad_choices\. -# /ad_check. (easylistchina+easylist.txt: 11554) -/(.*/)?ad_check\. -# /ad_caption. (easylistchina+easylist.txt: 11553) -/(.*/)?ad_caption\. -# /ad_campaigns/* (easylistchina+easylist.txt: 11552) -/(.*/)?ad_campaigns/.* -# /ad_cache/* (easylistchina+easylist.txt: 11551) -/(.*/)?ad_cache/.* -# /ad_button. (easylistchina+easylist.txt: 11550) -/(.*/)?ad_button\. -# /ad_bsb. (easylistchina+easylist.txt: 11549) -/(.*/)?ad_bsb\. -# /ad_box_ (easylistchina+easylist.txt: 11548) -/(.*/)?ad_box_ -# /ad_box? (easylistchina+easylist.txt: 11547) -/(.*/)?ad_box\? -# /ad_box2. (easylistchina+easylist.txt: 11546) -/(.*/)?ad_box2\. -# /ad_box1. (easylistchina+easylist.txt: 11545) -/(.*/)?ad_box1\. -# /ad_box. (easylistchina+easylist.txt: 11544) -/(.*/)?ad_box\. -# /ad_bottom. (easylistchina+easylist.txt: 11543) -/(.*/)?ad_bottom\. -# /ad_bot. (easylistchina+easylist.txt: 11542) -/(.*/)?ad_bot\. -# /ad_bomb/* (easylistchina+easylist.txt: 11541) -/(.*/)?ad_bomb/.* -# /ad_blog. (easylistchina+easylist.txt: 11540) -/(.*/)?ad_blog\. -# /ad_big_ (easylistchina+easylist.txt: 11539) -/(.*/)?ad_big_ -# /ad_base. (easylistchina+easylist.txt: 11538) -/(.*/)?ad_base\. -# /ad_bar_ (easylistchina+easylist.txt: 11537) -/(.*/)?ad_bar_ -# /ad_banners/* (easylistchina+easylist.txt: 11536) -/(.*/)?ad_banners/.* -# /ad_bannerPool- (easylistchina+easylist.txt: 11535) -/(.*/)?ad_bannerPool- -# /ad_banner_ (easylistchina+easylist.txt: 11534) -/(.*/)?ad_banner_ -# /ad_banner2. (easylistchina+easylist.txt: 11533) -/(.*/)?ad_banner2\. -# /ad_banner1. (easylistchina+easylist.txt: 11532) -/(.*/)?ad_banner1\. -# /ad_banner/* (easylistchina+easylist.txt: 11531) -/(.*/)?ad_banner/.* -# /ad_banner. (easylistchina+easylist.txt: 11530) -/(.*/)?ad_banner\. -# /Ad_Arub_ (easylistchina+easylist.txt: 11529) -/(.*/)?Ad_Arub_ -# /ad_art/* (easylistchina+easylist.txt: 11528) -/(.*/)?ad_art/.* -# /ad_area. (easylistchina+easylist.txt: 11527) -/(.*/)?ad_area\. -# /ad_agency/* (easylistchina+easylist.txt: 11526) -/(.*/)?ad_agency/.* -# /ad_960x90_ (easylistchina+easylist.txt: 11525) -/(.*/)?ad_960x90_ -# /ad_728_ (easylistchina+easylist.txt: 11524) -/(.*/)?ad_728_ -# /ad_728. (easylistchina+easylist.txt: 11523) -/(.*/)?ad_728\. -# /ad_600x160_ (easylistchina+easylist.txt: 11522) -/(.*/)?ad_600x160_ -# /ad_600_ (easylistchina+easylist.txt: 11521) -/(.*/)?ad_600_ -# /ad_300_ (easylistchina+easylist.txt: 11520) -/(.*/)?ad_300_ -# /ad_300250. (easylistchina+easylist.txt: 11519) -/(.*/)?ad_300250\. -# /ad_300. (easylistchina+easylist.txt: 11518) -/(.*/)?ad_300\. -# /ad_250x250_ (easylistchina+easylist.txt: 11517) -/(.*/)?ad_250x250_ -# /ad_234x60_ (easylistchina+easylist.txt: 11516) -/(.*/)?ad_234x60_ -# /ad_200x90_ (easylistchina+easylist.txt: 11515) -/(.*/)?ad_200x90_ -# /ad_120_ (easylistchina+easylist.txt: 11514) -/(.*/)?ad_120_ -# /ad?type= (easylistchina+easylist.txt: 11513) -/(.*/)?ad\?type= -# /ad?sponsor= (easylistchina+easylist.txt: 11512) -/(.*/)?ad\?sponsor= -# /ad?pos_ (easylistchina+easylist.txt: 11511) -/(.*/)?ad\?pos_ -# /ad?iframe_ (easylistchina+easylist.txt: 11510) -/(.*/)?ad\?iframe_ -# /ad?currentview= (easylistchina+easylist.txt: 11509) -/(.*/)?ad\?currentview= -# /ad?count= (easylistchina+easylist.txt: 11508) -/(.*/)?ad\?count= -# /ad?cid= (easylistchina+easylist.txt: 11507) -/(.*/)?ad\?cid= -# /ad?channel= (easylistchina+easylist.txt: 11506) -/(.*/)?ad\?channel= -# /ad8. (easylistchina+easylist.txt: 11505) -/(.*/)?ad8\. -ad8.*. -# /ad728x90. (easylistchina+easylist.txt: 11504) -/(.*/)?ad728x90\. -ad728x90.*. -# /ad728x15_ (easylistchina+easylist.txt: 11503) -/(.*/)?ad728x15_ -# /ad728x15. (easylistchina+easylist.txt: 11502) -/(.*/)?ad728x15\. -ad728x15.*. -# /ad728x. (easylistchina+easylist.txt: 11501) -/(.*/)?ad728x\. -ad728x.*. -# /ad728ws. (easylistchina+easylist.txt: 11500) -/(.*/)?ad728ws\. -ad728ws.*. -# /ad728w. (easylistchina+easylist.txt: 11499) -/(.*/)?ad728w\. -ad728w.*. -# /ad728t. (easylistchina+easylist.txt: 11498) -/(.*/)?ad728t\. -ad728t.*. -# /ad728s. (easylistchina+easylist.txt: 11497) -/(.*/)?ad728s\. -ad728s.*. -# /ad728home. (easylistchina+easylist.txt: 11496) -/(.*/)?ad728home\. -ad728home.*. -# /ad728f2. (easylistchina+easylist.txt: 11495) -/(.*/)?ad728f2\. -ad728f2.*. -# /ad728f. (easylistchina+easylist.txt: 11494) -/(.*/)?ad728f\. -ad728f.*. -# /ad728. (easylistchina+easylist.txt: 11493) -/(.*/)?ad728\. -ad728.*. -# /ad728- (easylistchina+easylist.txt: 11492) -/(.*/)?ad728- -ad728-*. -# /ad7. (easylistchina+easylist.txt: 11491) -/(.*/)?ad7\. -ad7.*. -# /ad600x330. (easylistchina+easylist.txt: 11490) -/(.*/)?ad600x330\. -ad600x330.*. -# /ad600x250. (easylistchina+easylist.txt: 11489) -/(.*/)?ad600x250\. -ad600x250.*. -# /ad6. (easylistchina+easylist.txt: 11488) -/(.*/)?ad6\. -ad6.*. -# /ad5. (easylistchina+easylist.txt: 11487) -/(.*/)?ad5\. -ad5.*. -# /ad4i. (easylistchina+easylist.txt: 11486) -/(.*/)?ad4i\. -ad4i.*. -# /ad468x80. (easylistchina+easylist.txt: 11485) -/(.*/)?ad468x80\. -ad468x80.*. -# /ad468x60. (easylistchina+easylist.txt: 11484) -/(.*/)?ad468x60\. -ad468x60.*. -# /ad468. (easylistchina+easylist.txt: 11483) -/(.*/)?ad468\. -ad468.*. -# /ad41_ (easylistchina+easylist.txt: 11482) -/(.*/)?ad41_ -# /ad3i. (easylistchina+easylist.txt: 11480) -/(.*/)?ad3i\. -ad3i.*. -# /ad3_ima. (easylistchina+easylist.txt: 11479) -/(.*/)?ad3_ima\. -# /ad350. (easylistchina+easylist.txt: 11478) -/(.*/)?ad350\. -ad350.*. -# /ad300x250_ (easylistchina+easylist.txt: 11477) -/(.*/)?ad300x250_ -# /ad300x250. (easylistchina+easylist.txt: 11476) -/(.*/)?ad300x250\. -ad300x250.*. -# /ad300x250- (easylistchina+easylist.txt: 11475) -/(.*/)?ad300x250- -ad300x250-*. -# /ad300x145. (easylistchina+easylist.txt: 11474) -/(.*/)?ad300x145\. -ad300x145.*. -# /ad300x. (easylistchina+easylist.txt: 11473) -/(.*/)?ad300x\. -ad300x.*. -# /ad300ws. (easylistchina+easylist.txt: 11472) -/(.*/)?ad300ws\. -ad300ws.*. -# /ad300s. (easylistchina+easylist.txt: 11471) -/(.*/)?ad300s\. -ad300s.*. -# /ad300home. (easylistchina+easylist.txt: 11470) -/(.*/)?ad300home\. -ad300home.*. -# /ad300f2. (easylistchina+easylist.txt: 11469) -/(.*/)?ad300f2\. -ad300f2.*. -# /ad300f. (easylistchina+easylist.txt: 11468) -/(.*/)?ad300f\. -ad300f.*. -# /ad300. (easylistchina+easylist.txt: 11467) -/(.*/)?ad300\. -ad300.*. -# /ad2you/* (easylistchina+easylist.txt: 11465) -/(.*/)?ad2you/.* -# /ad2push. (easylistchina+easylist.txt: 11464) -/(.*/)?ad2push\. -ad2push.*. -# /ad2gather. (easylistchina+easylist.txt: 11463) -/(.*/)?ad2gather\. -ad2gather.*. -# /ad2gate. (easylistchina+easylist.txt: 11462) -/(.*/)?ad2gate\. -ad2gate.*. -# /ad2con. (easylistchina+easylist.txt: 11461) -/(.*/)?ad2con\. -ad2con.*. -# /ad2border. (easylistchina+easylist.txt: 11460) -/(.*/)?ad2border\. -ad2border.*. -# /ad2_ (easylistchina+easylist.txt: 11459) -/(.*/)?ad2_ -# /ad290x60_ (easylistchina+easylist.txt: 11458) -/(.*/)?ad290x60_ -# /ad247realmedia/* (easylistchina+easylist.txt: 11457) -/(.*/)?ad247realmedia/.* -# /ad24/* (easylistchina+easylist.txt: 11456) -/(.*/)?ad24/.* -# /ad234. (easylistchina+easylist.txt: 11455) -/(.*/)?ad234\. -ad234.*. -# /ad2010. (easylistchina+easylist.txt: 11454) -/(.*/)?ad2010\. -ad2010.*. -# /ad2/res/* (easylistchina+easylist.txt: 11453) -/(.*/)?ad2/res/.* -# /ad2/index. (easylistchina+easylist.txt: 11452) -/(.*/)?ad2/index\. -# /ad2-728- (easylistchina+easylist.txt: 11450) -/(.*/)?ad2-728- -ad2-728-*. -# /ad1x1home. (easylistchina+easylist.txt: 11449) -/(.*/)?ad1x1home\. -ad1x1home.*. -# /ad1r. (easylistchina+easylist.txt: 11448) -/(.*/)?ad1r\. -ad1r.*. -# /ad1place. (easylistchina+easylist.txt: 11447) -/(.*/)?ad1place\. -ad1place.*. -# /ad1_ (easylistchina+easylist.txt: 11446) -/(.*/)?ad1_ -# /ad160x600. (easylistchina+easylist.txt: 11445) -/(.*/)?ad160x600\. -ad160x600.*. -# /ad160k. (easylistchina+easylist.txt: 11444) -/(.*/)?ad160k\. -ad160k.*. -# /ad160. (easylistchina+easylist.txt: 11443) -/(.*/)?ad160\. -ad160.*. -# /ad16. (easylistchina+easylist.txt: 11442) -/(.*/)?ad16\. -ad16.*. -# /ad15. (easylistchina+easylist.txt: 11441) -/(.*/)?ad15\. -ad15.*. -# /ad136/* (easylistchina+easylist.txt: 11440) -/(.*/)?ad136/.* -# /ad134m/* (easylistchina+easylist.txt: 11439) -/(.*/)?ad134m/.* -# /ad132m/* (easylistchina+easylist.txt: 11438) -/(.*/)?ad132m/.* -# /ad132m. (easylistchina+easylist.txt: 11437) -/(.*/)?ad132m\. -ad132m.*. -# /ad125x125. (easylistchina+easylist.txt: 11436) -/(.*/)?ad125x125\. -ad125x125.*. -# /ad125b. (easylistchina+easylist.txt: 11435) -/(.*/)?ad125b\. -ad125b.*. -# /ad125. (easylistchina+easylist.txt: 11434) -/(.*/)?ad125\. -ad125.*. -# /ad120x60. (easylistchina+easylist.txt: 11433) -/(.*/)?ad120x60\. -ad120x60.*. -# /ad12. (easylistchina+easylist.txt: 11432) -/(.*/)?ad12\. -ad12.*. -# /ad1/index. (easylistchina+easylist.txt: 11431) -/(.*/)?ad1/index\. -# /ad1-728- (easylistchina+easylist.txt: 11429) -/(.*/)?ad1-728- -ad1-728-*. -# /ad02/background_ (easylistchina+easylist.txt: 11428) -/(.*/)?ad02/background_ -# /ad01. (easylistchina+easylist.txt: 11427) -/(.*/)?ad01\. -ad01.*. -# /ad000/* (easylistchina+easylist.txt: 11426) -/(.*/)?ad000/.* -# /ad/view/* (easylistchina+easylist.txt: 11424) -/(.*/)?ad/view/.* -# /ad/top_ (easylistchina+easylist.txt: 11423) -/(.*/)?ad/top_ -# /ad/top3. (easylistchina+easylist.txt: 11422) -/(.*/)?ad/top3\. -# /ad/top2. (easylistchina+easylist.txt: 11421) -/(.*/)?ad/top2\. -# /ad/top1. (easylistchina+easylist.txt: 11420) -/(.*/)?ad/top1\. -# /ad/top/* (easylistchina+easylist.txt: 11419) -/(.*/)?ad/top/.* -# /ad/top. (easylistchina+easylist.txt: 11418) -/(.*/)?ad/top\. -# /ad/timing. (easylistchina+easylist.txt: 11417) -/(.*/)?ad/timing\. -# /ad/textlinks/* (easylistchina+easylist.txt: 11416) -/(.*/)?ad/textlinks/.* -# /ad/takeover/* (easylistchina+easylist.txt: 11415) -/(.*/)?ad/takeover/.* -# /ad/swf/* (easylistchina+easylist.txt: 11414) -/(.*/)?ad/swf/.* -# /ad/superbanner. (easylistchina+easylist.txt: 11413) -/(.*/)?ad/superbanner\. -# /ad/status? (easylistchina+easylist.txt: 11412) -/(.*/)?ad/status\? -# /ad/sponsors/* (easylistchina+easylist.txt: 11411) -/(.*/)?ad/sponsors/.* -# /ad/sponsored- (easylistchina+easylist.txt: 11410) -/(.*/)?ad/sponsored- -# /ad/spacer. (easylistchina+easylist.txt: 11409) -/(.*/)?ad/spacer\. -# /ad/small- (easylistchina+easylist.txt: 11408) -/(.*/)?ad/small- -# /ad/skyscrapper. (easylistchina+easylist.txt: 11407) -/(.*/)?ad/skyscrapper\. -# /ad/skyscraper. (easylistchina+easylist.txt: 11406) -/(.*/)?ad/skyscraper\. -# /ad/skin_ (easylistchina+easylist.txt: 11405) -/(.*/)?ad/skin_ -# /ad/side_ (easylistchina+easylist.txt: 11404) -/(.*/)?ad/side_ -# /ad/show. (easylistchina+easylist.txt: 11403) -/(.*/)?ad/show\. -# /ad/serve. (easylistchina+easylist.txt: 11402) -/(.*/)?ad/serve\. -# /ad/select? (easylistchina+easylist.txt: 11401) -/(.*/)?ad/select\? -# /ad/script/* (easylistchina+easylist.txt: 11400) -/(.*/)?ad/script/.* -# /ad/rotate? (easylistchina+easylist.txt: 11399) -/(.*/)?ad/rotate\? -# /ad/right2. (easylistchina+easylist.txt: 11398) -/(.*/)?ad/right2\. -# /ad/request? (easylistchina+easylist.txt: 11397) -/(.*/)?ad/request\? -# /ad/reklamy. (easylistchina+easylist.txt: 11396) -/(.*/)?ad/reklamy\. -# /ad/rectangle. (easylistchina+easylist.txt: 11395) -/(.*/)?ad/rectangle\. -# /ad/realclick/* (easylistchina+easylist.txt: 11394) -/(.*/)?ad/realclick/.* -# /ad/realclick. (easylistchina+easylist.txt: 11393) -/(.*/)?ad/realclick\. -# /ad/random_ (easylistchina+easylist.txt: 11392) -/(.*/)?ad/random_ -# /ad/quigo/* (easylistchina+easylist.txt: 11391) -/(.*/)?ad/quigo/.* -# /ad/preview/* (easylistchina+easylist.txt: 11390) -/(.*/)?ad/preview/.* -# /ad/popup. (easylistchina+easylist.txt: 11389) -/(.*/)?ad/popup\. -# /ad/pong? (easylistchina+easylist.txt: 11388) -/(.*/)?ad/pong\? -# /ad/player| (easylistchina+easylist.txt: 11387) -/(.*/)?ad/player$ -# /ad/omakasa. (easylistchina+easylist.txt: 11386) -/(.*/)?ad/omakasa\. -# /ad/network/* (easylistchina+easylist.txt: 11385) -/(.*/)?ad/network/.* -# /ad/mpu/* (easylistchina+easylist.txt: 11384) -/(.*/)?ad/mpu/.* -# /ad/middle. (easylistchina+easylist.txt: 11383) -/(.*/)?ad/middle\. -# /ad/logo/* (easylistchina+easylist.txt: 11382) -/(.*/)?ad/logo/.* -# /ad/login- (easylistchina+easylist.txt: 11381) -/(.*/)?ad/login- -# /ad/log/* (easylistchina+easylist.txt: 11380) -/(.*/)?ad/log/.* -# /ad/loading. (easylistchina+easylist.txt: 11379) -/(.*/)?ad/loading\. -# /ad/load_ (easylistchina+easylist.txt: 11378) -/(.*/)?ad/load_ -# /ad/load. (easylistchina+easylist.txt: 11377) -/(.*/)?ad/load\. -# /ad/live- (easylistchina+easylist.txt: 11376) -/(.*/)?ad/live- -# /ad/listing- (easylistchina+easylist.txt: 11375) -/(.*/)?ad/listing- -# /ad/leaderboard. (easylistchina+easylist.txt: 11374) -/(.*/)?ad/leaderboard\. -# /ad/jsonp/* (easylistchina+easylist.txt: 11373) -/(.*/)?ad/jsonp/.* -# /ad/inventory/* (easylistchina+easylist.txt: 11372) -/(.*/)?ad/inventory/.* -# /ad/integral- (easylistchina+easylist.txt: 11371) -/(.*/)?ad/integral- -# /ad/inline? (easylistchina+easylist.txt: 11370) -/(.*/)?ad/inline\? -# /ad/index_ (easylistchina+easylist.txt: 11369) -/(.*/)?ad/index_ -# /ad/index/* (easylistchina+easylist.txt: 11368) -/(.*/)?ad/index/.* -# /ad/index. (easylistchina+easylist.txt: 11367) -/(.*/)?ad/index\. -# /ad/img/* (easylistchina+easylist.txt: 11366) -/(.*/)?ad/img/.* -# /ad/image/* (easylistchina+easylist.txt: 11365) -/(.*/)?ad/image/.* -# /ad/iframe/* (easylistchina+easylist.txt: 11364) -/(.*/)?ad/iframe/.* -# /ad/iframe. (easylistchina+easylist.txt: 11363) -/(.*/)?ad/iframe\. -# /ad/html/* (easylistchina+easylist.txt: 11362) -/(.*/)?ad/html/.* -# /ad/google_ (easylistchina+easylist.txt: 11361) -/(.*/)?ad/google_ -# /ad/google/* (easylistchina+easylist.txt: 11360) -/(.*/)?ad/google/.* -# /ad/getbanandfile? (easylistchina+easylist.txt: 11359) -/(.*/)?ad/getbanandfile\? -# /ad/getban? (easylistchina+easylist.txt: 11358) -/(.*/)?ad/getban\? -# /ad/generate? (easylistchina+easylist.txt: 11357) -/(.*/)?ad/generate\? -# /ad/framed? (easylistchina+easylist.txt: 11356) -/(.*/)?ad/framed\? -# /ad/frame1. (easylistchina+easylist.txt: 11355) -/(.*/)?ad/frame1\. -# /AD/Footer_ (easylistchina+easylist.txt: 11354) -/(.*/)?AD/Footer_ -# /ad/files/* (easylistchina+easylist.txt: 11353) -/(.*/)?ad/files/.* -# /ad/extra_ (easylistchina+easylist.txt: 11352) -/(.*/)?ad/extra_ -# /ad/extra/* (easylistchina+easylist.txt: 11351) -/(.*/)?ad/extra/.* -# /ad/empty. (easylistchina+easylist.txt: 11350) -/(.*/)?ad/empty\. -# /ad/directcall/* (easylistchina+easylist.txt: 11349) -/(.*/)?ad/directcall/.* -# /ad/css/* (easylistchina+easylist.txt: 11348) -/(.*/)?ad/css/.* -# /ad/cpmstar/* (easylistchina+easylist.txt: 11347) -/(.*/)?ad/cpmstar/.* -# /ad/content/* (easylistchina+easylist.txt: 11346) -/(.*/)?ad/content/.* -# /ad/commons/* (easylistchina+easylist.txt: 11345) -/(.*/)?ad/commons/.* -# /ad/common_ (easylistchina+easylist.txt: 11344) -/(.*/)?ad/common_ -# /ad/common/* (easylistchina+easylist.txt: 11343) -/(.*/)?ad/common/.* -# /ad/card- (easylistchina+easylist.txt: 11342) -/(.*/)?ad/card- -# /ad/bottom. (easylistchina+easylist.txt: 11341) -/(.*/)?ad/bottom\. -# /ad/blog_ (easylistchina+easylist.txt: 11340) -/(.*/)?ad/blog_ -# /ad/blank. (easylistchina+easylist.txt: 11339) -/(.*/)?ad/blank\. -# /ad/bin/* (easylistchina+easylist.txt: 11338) -/(.*/)?ad/bin/.* -# /ad/behavpixel. (easylistchina+easylist.txt: 11337) -/(.*/)?ad/behavpixel\. -# /ad/banners/* (easylistchina+easylist.txt: 11336) -/(.*/)?ad/banners/.* -# /ad/bannerimg/* (easylistchina+easylist.txt: 11335) -/(.*/)?ad/bannerimg/.* -# /ad/bannerdetails/* (easylistchina+easylist.txt: 11334) -/(.*/)?ad/bannerdetails/.* -# /ad/banner_ (easylistchina+easylist.txt: 11333) -/(.*/)?ad/banner_ -# /ad/banner? (easylistchina+easylist.txt: 11332) -/(.*/)?ad/banner\? -# /ad/banner/* (easylistchina+easylist.txt: 11331) -/(.*/)?ad/banner/.* -# /ad/banner. (easylistchina+easylist.txt: 11330) -/(.*/)?ad/banner\. -# /ad/audsci. (easylistchina+easylist.txt: 11329) -/(.*/)?ad/audsci\. -# /ad/article_ (easylistchina+easylist.txt: 11328) -/(.*/)?ad/article_ -# /ad/afc_ (easylistchina+easylist.txt: 11327) -/(.*/)?ad/afc_ -# /ad/a.aspx? (easylistchina+easylist.txt: 11326) -/(.*/)?ad/a\.aspx\? -# /ad/?site= (easylistchina+easylist.txt: 11325) -/(.*/)?ad/\?site= -# /ad/?section= (easylistchina+easylist.txt: 11324) -/(.*/)?ad/\?section= -# /ad/?host= (easylistchina+easylist.txt: 11323) -/(.*/)?ad/\?host= -# /ad/960x60. (easylistchina+easylist.txt: 11322) -/(.*/)?ad/960x60\. -# /ad/940- (easylistchina+easylist.txt: 11321) -/(.*/)?ad/940- -# /ad/938- (easylistchina+easylist.txt: 11320) -/(.*/)?ad/938- -# /ad/728- (easylistchina+easylist.txt: 11319) -/(.*/)?ad/728- -# /ad/600- (easylistchina+easylist.txt: 11318) -/(.*/)?ad/600- -# /ad/130- (easylistchina+easylist.txt: 11317) -/(.*/)?ad/130- -# /ad.ytn. (easylistchina+easylist.txt: 11316) -/(.*/)?ad\.ytn\. -ad.ytn.*. -# /ad.view? (easylistchina+easylist.txt: 11315) -/(.*/)?ad\.view\? -# /ad.valary? (easylistchina+easylist.txt: 11314) -/(.*/)?ad\.valary\? -# /ad.serve. (easylistchina+easylist.txt: 11313) -/(.*/)?ad\.serve\. -ad.serve.*. -# /ad.sense/* (easylistchina+easylist.txt: 11312) -/(.*/)?ad\.sense/.* -ad.sense/.* -# /ad.redirect. (easylistchina+easylist.txt: 11311) -/(.*/)?ad\.redirect\. -ad.redirect.*. -# /ad.popup? (easylistchina+easylist.txt: 11310) -/(.*/)?ad\.popup\? -# /ad.php| (easylistchina+easylist.txt: 11309) -/(.*/)?ad\.php$ -ad.php -# /ad.php? (easylistchina+easylist.txt: 11308) -/(.*/)?ad\.php\? -# /ad.php3? (easylistchina+easylist.txt: 11307) -/(.*/)?ad\.php3\? -# /ad.min. (easylistchina+easylist.txt: 11306) -/(.*/)?ad\.min\. -ad.min.*. -# /ad.mason? (easylistchina+easylist.txt: 11305) -/(.*/)?ad\.mason\? -# /ad.jsp? (easylistchina+easylist.txt: 11304) -/(.*/)?ad\.jsp\? -# /ad.info. (easylistchina+easylist.txt: 11303) -/(.*/)?ad\.info\. -ad.info.*. -# /ad.html? (easylistchina+easylist.txt: 11302) -/(.*/)?ad\.html\? -# /ad.gif| (easylistchina+easylist.txt: 11301) -/(.*/)?ad\.gif$ -ad.gif -# /ad.epl? (easylistchina+easylist.txt: 11300) -/(.*/)?ad\.epl\? -# /ad.css? (easylistchina+easylist.txt: 11299) -/(.*/)?ad\.css\? -# /ad.code? (easylistchina+easylist.txt: 11298) -/(.*/)?ad\.code\? -# /ad.cgi? (easylistchina+easylist.txt: 11297) -/(.*/)?ad\.cgi\? -# /ad.aspx? (easylistchina+easylist.txt: 11296) -/(.*/)?ad\.aspx\? -# /ad.asp? (easylistchina+easylist.txt: 11295) -/(.*/)?ad\.asp\? -# /ad.ashx? (easylistchina+easylist.txt: 11294) -/(.*/)?ad\.ashx\? -# /ad.ams. (easylistchina+easylist.txt: 11293) -/(.*/)?ad\.ams\. -ad.ams.*. -# /ad-view- (easylistchina+easylist.txt: 11292) -/(.*/)?ad-view- -ad-view-*. -# /ad-verticalbar. (easylistchina+easylist.txt: 11291) -/(.*/)?ad-verticalbar\. -ad-verticalbar.*. -# /ad-vertical- (easylistchina+easylist.txt: 11290) -/(.*/)?ad-vertical- -ad-vertical-*. -# /ad-vert. (easylistchina+easylist.txt: 11289) -/(.*/)?ad-vert\. -ad-vert.*. -# /ad-utilities. (easylistchina+easylist.txt: 11288) -/(.*/)?ad-utilities\. -ad-utilities.*. -# /ad-updated- (easylistchina+easylist.txt: 11287) -/(.*/)?ad-updated- -ad-updated-*. -# /ad-unit- (easylistchina+easylist.txt: 11286) -/(.*/)?ad-unit- -ad-unit-*. -# /ad-topbanner- (easylistchina+easylist.txt: 11285) -/(.*/)?ad-topbanner- -ad-topbanner-*. -# /ad-top/* (easylistchina+easylist.txt: 11284) -/(.*/)?ad-top/.* -# /ad-top. (easylistchina+easylist.txt: 11283) -/(.*/)?ad-top\. -ad-top.*. -# /ad-top- (easylistchina+easylist.txt: 11282) -/(.*/)?ad-top- -ad-top-*. -# /ad-title. (easylistchina+easylist.txt: 11281) -/(.*/)?ad-title\. -ad-title.*. -# /ad-text. (easylistchina+easylist.txt: 11280) -/(.*/)?ad-text\. -ad-text.*. -# /ad-template/* (easylistchina+easylist.txt: 11279) -/(.*/)?ad-template/.* -# /ad-template. (easylistchina+easylist.txt: 11278) -/(.*/)?ad-template\. -ad-template.*. -# /ad-tandem. (easylistchina+easylist.txt: 11277) -/(.*/)?ad-tandem\. -ad-tandem.*. -# /ad-tag2. (easylistchina+easylist.txt: 11276) -/(.*/)?ad-tag2\. -ad-tag2.*. -# /ad-styles. (easylistchina+easylist.txt: 11275) -/(.*/)?ad-styles\. -ad-styles.*. -# /ad-studio/* (easylistchina+easylist.txt: 11274) -/(.*/)?ad-studio/.* -# /ad-strip. (easylistchina+easylist.txt: 11273) -/(.*/)?ad-strip\. -ad-strip.*. -# /ad-sprite. (easylistchina+easylist.txt: 11272) -/(.*/)?ad-sprite\. -ad-sprite.*. -# /ad-specs. (easylistchina+easylist.txt: 11271) -/(.*/)?ad-specs\. -ad-specs.*. -# /ad-source/* (easylistchina+easylist.txt: 11270) -/(.*/)?ad-source/.* -# /ad-skyscraper. (easylistchina+easylist.txt: 11269) -/(.*/)?ad-skyscraper\. -ad-skyscraper.*. -# /ad-sidebar- (easylistchina+easylist.txt: 11268) -/(.*/)?ad-sidebar- -ad-sidebar-*. -# /ad-side/* (easylistchina+easylist.txt: 11267) -/(.*/)?ad-side/.* -# /ad-server/* (easylistchina+easylist.txt: 11266) -/(.*/)?ad-server/.* -# /ad-server. (easylistchina+easylist.txt: 11265) -/(.*/)?ad-server\. -ad-server.*. -# /ad-serve? (easylistchina+easylist.txt: 11264) -/(.*/)?ad-serve\? -# /ad-rotator- (easylistchina+easylist.txt: 11263) -/(.*/)?ad-rotator- -ad-rotator-*. -# /ad-ros- (easylistchina+easylist.txt: 11262) -/(.*/)?ad-ros- -ad-ros-*. -# /ad-right2. (easylistchina+easylist.txt: 11261) -/(.*/)?ad-right2\. -ad-right2.*. -# /ad-refresh. (easylistchina+easylist.txt: 11260) -/(.*/)?ad-refresh\. -ad-refresh.*. -# /ad-refresh- (easylistchina+easylist.txt: 11259) -/(.*/)?ad-refresh- -ad-refresh-*. -# /ad-record. (easylistchina+easylist.txt: 11258) -/(.*/)?ad-record\. -ad-record.*. -# /ad-pub. (easylistchina+easylist.txt: 11257) -/(.*/)?ad-pub\. -ad-pub.*. -# /ad-position- (easylistchina+easylist.txt: 11256) -/(.*/)?ad-position- -ad-position-*. -# /ad-point/* (easylistchina+easylist.txt: 11255) -/(.*/)?ad-point/.* -# /ad-plate/* (easylistchina+easylist.txt: 11254) -/(.*/)?ad-plate/.* -# /ad-page/* (easylistchina+easylist.txt: 11253) -/(.*/)?ad-page/.* -# /ad-openx. (easylistchina+easylist.txt: 11252) -/(.*/)?ad-openx\. -ad-openx.*. -# /ad-offer1. (easylistchina+easylist.txt: 11251) -/(.*/)?ad-offer1\. -ad-offer1.*. -# /ad-nytimes. (easylistchina+easylist.txt: 11250) -/(.*/)?ad-nytimes\. -ad-nytimes.*. -# /ad-modules/* (easylistchina+easylist.txt: 11249) -/(.*/)?ad-modules/.* -# /ad-minister/* (easylistchina+easylist.txt: 11248) -/(.*/)?ad-minister/.* -# /ad-minister. (easylistchina+easylist.txt: 11247) -/(.*/)?ad-minister\. -ad-minister.*. -# /ad-minister- (easylistchina+easylist.txt: 11246) -/(.*/)?ad-minister- -ad-minister-*. -# /ad-methods. (easylistchina+easylist.txt: 11245) -/(.*/)?ad-methods\. -ad-methods.*. -# /ad-maven- (easylistchina+easylist.txt: 11244) -/(.*/)?ad-maven- -ad-maven-*. -# /ad-managment/* (easylistchina+easylist.txt: 11243) -/(.*/)?ad-managment/.* -# /ad-manager/* (easylistchina+easylist.txt: 11242) -/(.*/)?ad-manager/.* -# /ad-logger/* (easylistchina+easylist.txt: 11241) -/(.*/)?ad-logger/.* -# /ad-loading. (easylistchina+easylist.txt: 11239) -/(.*/)?ad-loading\. -ad-loading.*. -# /ad-loader. (easylistchina+easylist.txt: 11238) -/(.*/)?ad-loader\. -ad-loader.*. -# /ad-loader- (easylistchina+easylist.txt: 11237) -/(.*/)?ad-loader- -ad-loader-*. -# /ad-link/* (easylistchina+easylist.txt: 11236) -/(.*/)?ad-link/.* -# /ad-lil. (easylistchina+easylist.txt: 11235) -/(.*/)?ad-lil\. -ad-lil.*. -# /ad-letter. (easylistchina+easylist.txt: 11234) -/(.*/)?ad-letter\. -ad-letter.*. -# /ad-left. (easylistchina+easylist.txt: 11233) -/(.*/)?ad-left\. -ad-left.*. -# /ad-leaderboard. (easylistchina+easylist.txt: 11232) -/(.*/)?ad-leaderboard\. -ad-leaderboard.*. -# /ad-layering- (easylistchina+easylist.txt: 11230) -/(.*/)?ad-layering- -ad-layering-*. -# /ad-label. (easylistchina+easylist.txt: 11229) -/(.*/)?ad-label\. -ad-label.*. -# /ad-label- (easylistchina+easylist.txt: 11228) -/(.*/)?ad-label- -ad-label-*. -# /ad-issue. (easylistchina+easylist.txt: 11227) -/(.*/)?ad-issue\. -ad-issue.*. -# /ad-int- (easylistchina+easylist.txt: 11226) -/(.*/)?ad-int- -ad-int-*. -# /ad-injection/* (easylistchina+easylist.txt: 11225) -/(.*/)?ad-injection/.* -# /ad-inject/* (easylistchina+easylist.txt: 11224) -/(.*/)?ad-inject/.* -# /ad-indicator- (easylistchina+easylist.txt: 11223) -/(.*/)?ad-indicator- -ad-indicator-*. -# /ad-ina. (easylistchina+easylist.txt: 11222) -/(.*/)?ad-ina\. -ad-ina.*. -# /ad-images/* (easylistchina+easylist.txt: 11221) -/(.*/)?ad-images/.* -# /ad-image. (easylistchina+easylist.txt: 11220) -/(.*/)?ad-image\. -ad-image.*. -# /ad-iframe? (easylistchina+easylist.txt: 11219) -/(.*/)?ad-iframe\? -# /ad-iframe. (easylistchina+easylist.txt: 11218) -/(.*/)?ad-iframe\. -ad-iframe.*. -# /ad-iframe- (easylistchina+easylist.txt: 11217) -/(.*/)?ad-iframe- -ad-iframe-*. -# /ad-ifr. (easylistchina+easylist.txt: 11216) -/(.*/)?ad-ifr\. -ad-ifr.*. -# /ad-identifier. (easylistchina+easylist.txt: 11215) -/(.*/)?ad-identifier\. -ad-identifier.*. -# /ad-hug. (easylistchina+easylist.txt: 11214) -/(.*/)?ad-hug\. -ad-hug.*. -# /ad-home- (easylistchina+easylist.txt: 11213) -/(.*/)?ad-home- -ad-home-*. -# /ad-header. (easylistchina+easylist.txt: 11212) -/(.*/)?ad-header\. -ad-header.*. -# /ad-hcm. (easylistchina+easylist.txt: 11211) -/(.*/)?ad-hcm\. -ad-hcm.*. -# /ad-half_ (easylistchina+easylist.txt: 11210) -/(.*/)?ad-half_ -# /ad-frame/* (easylistchina+easylist.txt: 11208) -/(.*/)?ad-frame/.* -# /ad-frame. (easylistchina+easylist.txt: 11207) -/(.*/)?ad-frame\. -ad-frame.*. -# /ad-format. (easylistchina+easylist.txt: 11206) -/(.*/)?ad-format\. -ad-format.*. -# /ad-flashgame. (easylistchina+easylist.txt: 11205) -/(.*/)?ad-flashgame\. -ad-flashgame.*. -# /ad-fix- (easylistchina+easylist.txt: 11204) -/(.*/)?ad-fix- -ad-fix-*. -# /ad-feedback. (easylistchina+easylist.txt: 11203) -/(.*/)?ad-feedback\. -ad-feedback.*. -# /ad-feature- (easylistchina+easylist.txt: 11202) -/(.*/)?ad-feature- -ad-feature-*. -# /ad-exchange. (easylistchina+easylist.txt: 11201) -/(.*/)?ad-exchange\. -ad-exchange.*. -# /ad-engine. (easylistchina+easylist.txt: 11200) -/(.*/)?ad-engine\. -ad-engine.*. -# /ad-emea. (easylistchina+easylist.txt: 11199) -/(.*/)?ad-emea\. -ad-emea.*. -# /ad-creatives/* (easylistchina+easylist.txt: 11198) -/(.*/)?ad-creatives/.* -# /ad-creatives- (easylistchina+easylist.txt: 11197) -/(.*/)?ad-creatives- -ad-creatives-*. -# /ad-choices. (easylistchina+easylist.txt: 11196) -/(.*/)?ad-choices\. -ad-choices.*. -# /ad-choices- (easylistchina+easylist.txt: 11195) -/(.*/)?ad-choices- -ad-choices-*. -# /ad-channel- (easylistchina+easylist.txt: 11194) -/(.*/)?ad-channel- -ad-channel-*. -# /ad-cdn. (easylistchina+easylist.txt: 11193) -/(.*/)?ad-cdn\. -ad-cdn.*. -# /ad-callback. (easylistchina+easylist.txt: 11192) -/(.*/)?ad-callback\. -ad-callback.*. -# /ad-button1. (easylistchina+easylist.txt: 11191) -/(.*/)?ad-button1\. -ad-button1.*. -# /ad-builder. (easylistchina+easylist.txt: 11190) -/(.*/)?ad-builder\. -ad-builder.*. -# /ad-boxes- (easylistchina+easylist.txt: 11189) -/(.*/)?ad-boxes- -ad-boxes-*. -# /ad-box- (easylistchina+easylist.txt: 11188) -/(.*/)?ad-box- -ad-box-*. -# /ad-bottom. (easylistchina+easylist.txt: 11187) -/(.*/)?ad-bottom\. -ad-bottom.*. -# /ad-bin/* (easylistchina+easylist.txt: 11186) -/(.*/)?ad-bin/.* -# /ad-bckg. (easylistchina+easylist.txt: 11185) -/(.*/)?ad-bckg\. -ad-bckg.*. -# /ad-banner. (easylistchina+easylist.txt: 11184) -/(.*/)?ad-banner\. -ad-banner.*. -# /ad-banner- (easylistchina+easylist.txt: 11183) -/(.*/)?ad-banner- -ad-banner-*. -# /ad-background. (easylistchina+easylist.txt: 11182) -/(.*/)?ad-background\. -ad-background.*. -# /ad-audit. (easylistchina+easylist.txt: 11181) -/(.*/)?ad-audit\. -ad-audit.*. -# /ad-amz. (easylistchina+easylist.txt: 11180) -/(.*/)?ad-amz\. -ad-amz.*. -# /ad-600- (easylistchina+easylist.txt: 11179) -/(.*/)?ad-600- -ad-600-*. -# /ad-468- (easylistchina+easylist.txt: 11178) -/(.*/)?ad-468- -ad-468-*. -# /ad-410x300. (easylistchina+easylist.txt: 11177) -/(.*/)?ad-410x300\. -ad-410x300.*. -# /ad-350x350- (easylistchina+easylist.txt: 11176) -/(.*/)?ad-350x350- -ad-350x350-*. -# /ad-300x254. (easylistchina+easylist.txt: 11175) -/(.*/)?ad-300x254\. -ad-300x254.*. -# /ad-300x250. (easylistchina+easylist.txt: 11174) -/(.*/)?ad-300x250\. -ad-300x250.*. -# /ad-300topleft. (easylistchina+easylist.txt: 11173) -/(.*/)?ad-300topleft\. -ad-300topleft.*. -# /ad-125. (easylistchina+easylist.txt: 11172) -/(.*/)?ad-125\. -ad-125.*. -# /ad%20images/* (easylistchina+easylist.txt: 11171) -/(.*/)?ad%20images/.* -# /ad%20banners/* (easylistchina+easylist.txt: 11170) -/(.*/)?ad%20banners/.* -# /active-ad- (easylistchina+easylist.txt: 11169) -/(.*/)?active-ad- -active-ad-*. -# /acc_random= (easylistchina+easylist.txt: 11168) -/(.*/)?acc_random= -# /AbvProductAds/* (easylistchina+easylist.txt: 11167) -/(.*/)?AbvProductAds/.* -# /abvAds_ (easylistchina+easylist.txt: 11166) -/(.*/)?abvAds_ -# /absolutebm.aspx? (easylistchina+easylist.txt: 11165) -/(.*/)?absolutebm\.aspx\? -# /about-these-ads. (easylistchina+easylist.txt: 11164) -/(.*/)?about-these-ads\. -about-these-ads.*. -# /abnl/?narodads^ (easylistchina+easylist.txt: 11163) -/(.*/)?abnl/\?narodads[^\w%.-] -# /abnl/?begun^ (easylistchina+easylist.txt: 11162) -/(.*/)?abnl/\?begun[^\w%.-] -# /abmw/* (easylistchina+easylist.txt: 11161) -/(.*/)?abmw/.* -# /abmw.asp (easylistchina+easylist.txt: 11160) -/(.*/)?abmw\.asp -abmw.asp*. -# /abm.aspx (easylistchina+easylist.txt: 11159) -/(.*/)?abm\.aspx -abm.aspx*. -# /abm.asp? (easylistchina+easylist.txt: 11158) -/(.*/)?abm\.asp\? -# /ABAdsv1. (easylistchina+easylist.txt: 11157) -/(.*/)?ABAdsv1\. -ABAdsv1.*. -# /aamsz= (easylistchina+easylist.txt: 11156) -/(.*/)?aamsz= -# /a2/ads/* (easylistchina+easylist.txt: 11154) -/(.*/)?a2/ads/.* -# /a/display.php? (easylistchina+easylist.txt: 11151) -/(.*/)?a/display\.php\? -# /a/ads/* (easylistchina+easylist.txt: 11150) -/(.*/)?a/ads/.* -# /_svc/ad/* (easylistchina+easylist.txt: 11149) -/(.*/)?_svc/ad/.* -# /_scripts/_oas/* (easylistchina+easylist.txt: 11148) -/(.*/)?_scripts/_oas/.* -# /_js2/oas. (easylistchina+easylist.txt: 11147) -/(.*/)?_js2/oas\. -# /_img/ad_ (easylistchina+easylist.txt: 11146) -/(.*/)?_img/ad_ -# /_global/ads/* (easylistchina+easylist.txt: 11145) -/(.*/)?_global/ads/.* -# /_affiliatebanners/* (easylistchina+easylist.txt: 11144) -/(.*/)?_affiliatebanners/.* -# /_ads/* (easylistchina+easylist.txt: 11143) -/(.*/)?_ads/.* -# /_30/ads/* (easylistchina+easylist.txt: 11142) -/(.*/)?_30/ads/.* -# /_/ads/* (easylistchina+easylist.txt: 11141) -/(.*/)?_/ads/.* -# /?view=ad (easylistchina+easylist.txt: 11140) -/(.*/)?\?view=ad -# /?advideo/* (easylistchina+easylist.txt: 11139) -/(.*/)?\?advideo/.* -# /?adv_partner (easylistchina+easylist.txt: 11138) -/(.*/)?\?adv_partner -# /?addyn|* (easylistchina+easylist.txt: 11137) -/(.*/)?\?addyn\|.* -# /728x90banner. (easylistchina+easylist.txt: 11136) -/(.*/)?728x90banner\. -728x90banner.*. -# /728x80topad. (easylistchina+easylist.txt: 11135) -/(.*/)?728x80topad\. -728x80topad.*. -# /728_ad_ (easylistchina+easylist.txt: 11134) -/(.*/)?728_ad_ -# /468xads. (easylistchina+easylist.txt: 11133) -/(.*/)?468xads\. -468xads.*. -# /468ad. (easylistchina+easylist.txt: 11132) -/(.*/)?468ad\. -468ad.*. -# /468-banner. (easylistchina+easylist.txt: 11131) -/(.*/)?468-banner\. -468-banner.*. -# /3pt_ads. (easylistchina+easylist.txt: 11130) -/(.*/)?3pt_ads\. -# /336x280ads. (easylistchina+easylist.txt: 11129) -/(.*/)?336x280ads\. -336x280ads.*. -# /300x500_ad (easylistchina+easylist.txt: 11128) -/(.*/)?300x500_ad -# /300x250advert. (easylistchina+easylist.txt: 11127) -/(.*/)?300x250advert\. -300x250advert.*. -# /300x250ads. (easylistchina+easylist.txt: 11126) -/(.*/)?300x250ads\. -300x250ads.*. -# /300x250adbg. (easylistchina+easylist.txt: 11125) -/(.*/)?300x250adbg\. -300x250adbg.*. -# /300x250ad. (easylistchina+easylist.txt: 11124) -/(.*/)?300x250ad\. -300x250ad.*. -# /300by250ad. (easylistchina+easylist.txt: 11123) -/(.*/)?300by250ad\. -300by250ad.*. -# /300ad. (easylistchina+easylist.txt: 11122) -/(.*/)?300ad\. -300ad.*. -# /300_ad_ (easylistchina+easylist.txt: 11121) -/(.*/)?300_ad_ -# /300250_ad- (easylistchina+easylist.txt: 11120) -/(.*/)?300250_ad- -# /300-ad- (easylistchina+easylist.txt: 11119) -/(.*/)?300-ad- -300-ad-*. -# /250x250_advert_ (easylistchina+easylist.txt: 11118) -/(.*/)?250x250_advert_ -# /24adscript. (easylistchina+easylist.txt: 11117) -/(.*/)?24adscript\. -24adscript.*. -# /24-7ads. (easylistchina+easylist.txt: 11116) -/(.*/)?24-7ads\. -24-7ads.*. -# /2015/ads/* (easylistchina+easylist.txt: 11115) -/(.*/)?2015/ads/.* -# /2014/ads/* (easylistchina+easylist.txt: 11114) -/(.*/)?2014/ads/.* -# /2013/ads/* (easylistchina+easylist.txt: 11113) -/(.*/)?2013/ads/.* -# /2011/ads/* (easylistchina+easylist.txt: 11112) -/(.*/)?2011/ads/.* -# /2010main/ad/* (easylistchina+easylist.txt: 11111) -/(.*/)?2010main/ad/.* -# /2010/ads/* (easylistchina+easylist.txt: 11110) -/(.*/)?2010/ads/.* -# /1afr.php? (easylistchina+easylist.txt: 11109) -/(.*/)?1afr\.php\? -# /1912/ads/* (easylistchina+easylist.txt: 11108) -/(.*/)?1912/ads/.* -# /17/ads/* (easylistchina+easylist.txt: 11107) -/(.*/)?17/ads/.* -# /160_ad_ (easylistchina+easylist.txt: 11106) -/(.*/)?160_ad_ -# /126_ad. (easylistchina+easylist.txt: 11105) -/(.*/)?126_ad\. -# /125x125ad. (easylistchina+easylist.txt: 11104) -/(.*/)?125x125ad\. -125x125ad.*. -# /125x125_banner. (easylistchina+easylist.txt: 11103) -/(.*/)?125x125_banner\. -# /125x125_ADS/* (easylistchina+easylist.txt: 11102) -/(.*/)?125x125_ADS/.* -# /120ads/* (easylistchina+easylist.txt: 11101) -/(.*/)?120ads/.* -# /120ad. (easylistchina+easylist.txt: 11100) -/(.*/)?120ad\. -120ad.*. -# /1/ads/* (easylistchina+easylist.txt: 11099) -/(.*/)?1/ads/.* -# /04/ads- (easylistchina+easylist.txt: 11098) -/(.*/)?04/ads- -# /0/ads/* (easylistchina+easylist.txt: 11097) -/(.*/)?0/ads/.* -# /!advert_ (easylistchina+easylist.txt: 11096) -/(.*/)?!advert_ -# .zw/ads/ (easylistchina+easylist.txt: 11095) -/.*\.zw/ads/ -.*.zw/ads/ -# .zm/ads/ (easylistchina+easylist.txt: 11094) -/.*\.zm/ads/ -.*.zm/ads/ -# .za/ads/ (easylistchina+easylist.txt: 11093) -/.*\.za/ads/ -.*.za/ads/ -# .za/ads. (easylistchina+easylist.txt: 11092) -/.*\.za/ads\. -.*.za/ads\. -# .xxx/ads/ (easylistchina+easylist.txt: 11091) -/.*\.xxx/ads/ -.*.xxx/ads/ -# .ws/ads/ (easylistchina+easylist.txt: 11090) -/.*\.ws/ads/ -.*.ws/ads/ -# .widgets.ad? (easylistchina+easylist.txt: 11089) -/.*\.widgets\.ad\? -# .vert.ad. (easylistchina+easylist.txt: 11088) -/.*\.vert\.ad\. -.*.vert.ad.*. -# .utils.ads. (easylistchina+easylist.txt: 11087) -/.*\.utils\.ads\. -.*.utils.ads.*. -# .us/ads/ (easylistchina+easylist.txt: 11086) -/.*\.us/ads/ -.*.us/ads/ -# .uk/adv/ (easylistchina+easylist.txt: 11085) -/.*\.uk/adv/ -.*.uk/adv/ -# .uk/ads/ (easylistchina+easylist.txt: 11084) -/.*\.uk/ads/ -.*.uk/ads/ -# .tz/ads/ (easylistchina+easylist.txt: 11083) -/.*\.tz/ads/ -.*.tz/ads/ -# .twoads. (easylistchina+easylist.txt: 11082) -/.*\.twoads\. -.*.twoads.*. -# .tv/ads/ (easylistchina+easylist.txt: 11081) -/.*\.tv/ads/ -.*.tv/ads/ -# .tv/ads. (easylistchina+easylist.txt: 11080) -/.*\.tv/ads\. -.*.tv/ads\. -# .tv/adl. (easylistchina+easylist.txt: 11079) -/.*\.tv/adl\. -.*.tv/adl\. -# .topad. (easylistchina+easylist.txt: 11078) -/.*\.topad\. -.*.topad.*. -# .to/ads/ (easylistchina+easylist.txt: 11077) -/.*\.to/ads/ -.*.to/ads/ -# .th/ads/ (easylistchina+easylist.txt: 11076) -/.*\.th/ads/ -.*.th/ads/ -# .textads. (easylistchina+easylist.txt: 11075) -/.*\.textads\. -.*.textads.*. -# .text-link-ads. (easylistchina+easylist.txt: 11074) -/.*\.text-link-ads\. -.*.text-link-ads.*. -# .swf?popupiniframe= (easylistchina+easylist.txt: 11073) -/.*\.swf\?popupiniframe= -# .swf?link=http (easylistchina+easylist.txt: 11072) -/.*\.swf\?link=http -# .swf?link1=http (easylistchina+easylist.txt: 11071) -/.*\.swf\?link1=http -# .swf?iurl=http (easylistchina+easylist.txt: 11070) -/.*\.swf\?iurl=http -# .swf?clickthru= (easylistchina+easylist.txt: 11069) -/.*\.swf\?clickthru= -# .swf?clicktag= (easylistchina+easylist.txt: 11068) -/.*\.swf\?clicktag= -# .swf?click= (easylistchina+easylist.txt: 11067) -/.*\.swf\?click= -# .swf?ad= (easylistchina+easylist.txt: 11066) -/.*\.swf\?ad= -# .swf?2&clicktag= (easylistchina+easylist.txt: 11065) -/.*\.swf\?2&clicktag= -# .swf?1&clicktag= (easylistchina+easylist.txt: 11064) -/.*\.swf\?1&clicktag= -# .streamads. (easylistchina+easylist.txt: 11063) -/.*\.streamads\. -.*.streamads.*. -# .sponsorads. (easylistchina+easylist.txt: 11062) -/.*\.sponsorads\. -.*.sponsorads.*. -# .spider.ad/ (easylistchina+easylist.txt: 11061) -/.*\.spider\.ad/ -.*.spider.ad -# .sk/ads/ (easylistchina+easylist.txt: 11060) -/.*\.sk/ads/ -.*.sk/ads/ -# .show_ad_ (easylistchina+easylist.txt: 11059) -/.*\.show_ad_ -# .shortcuts.search. (easylistchina+easylist.txt: 11058) -/.*\.shortcuts\.search\. -.*.shortcuts.search.*. -# .se/ads/ (easylistchina+easylist.txt: 11057) -/.*\.se/ads/ -.*.se/ads/ -# .rolloverad. (easylistchina+easylist.txt: 11055) -/.*\.rolloverad\. -.*.rolloverad.*. -# .refit.ads. (easylistchina+easylist.txt: 11054) -/.*\.refit\.ads\. -.*.refit.ads.*. -# .popupvideoad. (easylistchina+easylist.txt: 11053) -/.*\.popupvideoad\. -.*.popupvideoad.*. -# .popup_im. (easylistchina+easylist.txt: 11052) -/.*\.popup_im\. -# .popunder.js (easylistchina+easylist.txt: 11051) -/.*\.popunder\.js -.*.popunder.js*. -# .pl/ads/ (easylistchina+easylist.txt: 11050) -/.*\.pl/ads/ -.*.pl/ads/ -# .pk/ads/ (easylistchina+easylist.txt: 11049) -/.*\.pk/ads/ -.*.pk/ads/ -# .php?zoneid= (easylistchina+easylist.txt: 11048) -/.*\.php\?zoneid= -# .php?zone_id= (easylistchina+easylist.txt: 11047) -/.*\.php\?zone_id= -# .php?nats= (easylistchina+easylist.txt: 11046) -/.*\.php\?nats= -# .php?clicktag= (easylistchina+easylist.txt: 11045) -/.*\.php\?clicktag= -# .php?affid= (easylistchina+easylist.txt: 11044) -/.*\.php\?affid= -# .php?adv_ (easylistchina+easylist.txt: 11043) -/.*\.php\?adv_ -# .php?adv= (easylistchina+easylist.txt: 11042) -/.*\.php\?adv= -# .php?adsid= (easylistchina+easylist.txt: 11041) -/.*\.php\?adsid= -# .php?ad_ (easylistchina+easylist.txt: 11040) -/.*\.php\?ad_ -# .php?ad= (easylistchina+easylist.txt: 11039) -/.*\.php\?ad= -# .php/ads/ (easylistchina+easylist.txt: 11038) -/.*\.php/ads/ -.*.php/ads/ -# .php/ad/ (easylistchina+easylist.txt: 11037) -/.*\.php/ad/ -.*.php/ad/ -# .ph/ads/ (easylistchina+easylist.txt: 11036) -/.*\.ph/ads/ -.*.ph/ads/ -# .org/pops.js (easylistchina+easylist.txt: 11035) -/.*\.org/pops\.js -.*.org/pops\.js -# .org/gads/ (easylistchina+easylist.txt: 11034) -/.*\.org/gads/ -.*.org/gads/ -# .org/exit.js (easylistchina+easylist.txt: 11033) -/.*\.org/exit\.js -.*.org/exit\.js -# .org/adv/ (easylistchina+easylist.txt: 11032) -/.*\.org/adv/ -.*.org/adv/ -# .org/ads_ (easylistchina+easylist.txt: 11031) -/.*\.org/ads_ -.*.org/ads_ -# .org/ads/ (easylistchina+easylist.txt: 11030) -/.*\.org/ads/ -.*.org/ads/ -# .org/ads- (easylistchina+easylist.txt: 11029) -/.*\.org/ads- -.*.org/ads- -# .org/adgallery1 (easylistchina+easylist.txt: 11028) -/.*\.org/adgallery1 -.*.org/adgallery1 -# .org/ad_ (easylistchina+easylist.txt: 11027) -/.*\.org/ad_ -.*.org/ad_ -# .org/ad/ (easylistchina+easylist.txt: 11026) -/.*\.org/ad/ -.*.org/ad/ -# .org/ad. (easylistchina+easylist.txt: 11025) -/.*\.org/ad\. -.*.org/ad\. -# .org/ad- (easylistchina+easylist.txt: 11024) -/.*\.org/ad- -.*.org/ad- -# .openxtag.min.js (easylistchina+easylist.txt: 11023) -/.*\.openxtag\.min\.js -.*.openxtag.min.js*. -# .openxtag.js (easylistchina+easylist.txt: 11022) -/.*\.openxtag\.js -.*.openxtag.js*. -# .openx. (easylistchina+easylist.txt: 11021) -/.*\.openx\. -.*.openx.*. -# .openad. (easylistchina+easylist.txt: 11020) -/.*\.openad\. -.*.openad.*. -# .oasfile. (easylistchina+easylist.txt: 11019) -/.*\.oasfile\. -.*.oasfile.*. -# .nz/ads/ (easylistchina+easylist.txt: 11018) -/.*\.nz/ads/ -.*.nz/ads/ -# .nu/ads/ (easylistchina+easylist.txt: 11017) -/.*\.nu/ads/ -.*.nu/ads/ -# .no/ads/ (easylistchina+easylist.txt: 11016) -/.*\.no/ads/ -.*.no/ads/ -# .nl/ads/ (easylistchina+easylist.txt: 11015) -/.*\.nl/ads/ -.*.nl/ads/ -# .nl/ad2/ (easylistchina+easylist.txt: 11014) -/.*\.nl/ad2/ -.*.nl/ad2/ -# .net/vghd_ (easylistchina+easylist.txt: 11013) -/.*\.net/vghd_ -.*.net/vghd_ -# .net/pops.js (easylistchina+easylist.txt: 11012) -/.*\.net/pops\.js -.*.net/pops\.js -# .net/pfadj/ (easylistchina+easylist.txt: 11011) -/.*\.net/pfadj/ -.*.net/pfadj/ -# .net/noidadx/ (easylistchina+easylist.txt: 11010) -/.*\.net/noidadx/ -.*.net/noidadx/ -# .net/gads/ (easylistchina+easylist.txt: 11009) -/.*\.net/gads/ -.*.net/gads/ -# .net/flashads (easylistchina+easylist.txt: 11008) -/.*\.net/flashads -.*.net/flashads -# .net/bnr/ (easylistchina+easylist.txt: 11007) -/.*\.net/bnr/ -.*.net/bnr/ -# .net/affiliate/ (easylistchina+easylist.txt: 11006) -/.*\.net/affiliate/ -.*.net/affiliate/ -# .net/adv/ (easylistchina+easylist.txt: 11005) -/.*\.net/adv/ -.*.net/adv/ -# .net/adt? (easylistchina+easylist.txt: 11004) -/.*\.net/adt\? -.*.net/adt\? -# .net/ads_ (easylistchina+easylist.txt: 11003) -/.*\.net/ads_ -.*.net/ads_ -# .net/ads? (easylistchina+easylist.txt: 11002) -/.*\.net/ads\? -.*.net/ads\? -# .net/ads/ (easylistchina+easylist.txt: 11001) -/.*\.net/ads/ -.*.net/ads/ -# .net/ads. (easylistchina+easylist.txt: 11000) -/.*\.net/ads\. -.*.net/ads\. -# .net/ads- (easylistchina+easylist.txt: 10999) -/.*\.net/ads- -.*.net/ads- -# .net/adj; (easylistchina+easylist.txt: 10998) -/.*\.net/adj; -.*.net/adj; -# .net/adgallery (easylistchina+easylist.txt: 10997) -/.*\.net/adgallery -.*.net/adgallery -# .net/ad_ (easylistchina+easylist.txt: 10996) -/.*\.net/ad_ -.*.net/ad_ -# .net/ad2/ (easylistchina+easylist.txt: 10995) -/.*\.net/ad2/ -.*.net/ad2/ -# .net/ad- (easylistchina+easylist.txt: 10993) -/.*\.net/ad- -.*.net/ad- -# .net/_adv/ (easylistchina+easylist.txt: 10992) -/.*\.net/_adv/ -.*.net/_adv/ -# .name/ads/ (easylistchina+easylist.txt: 10991) -/.*\.name/ads/ -.*.name/ads/ -# .my/ads/ (easylistchina+easylist.txt: 10990) -/.*\.my/ads/ -.*.my/ads/ -# .mx/ads/ (easylistchina+easylist.txt: 10989) -/.*\.mx/ads/ -.*.mx/ads/ -# .mv/ads/ (easylistchina+easylist.txt: 10988) -/.*\.mv/ads/ -.*.mv/ads/ -# .mobileads. (easylistchina+easylist.txt: 10987) -/.*\.mobileads\. -.*.mobileads.*. -# .me/ads/ (easylistchina+easylist.txt: 10986) -/.*\.me/ads/ -.*.me/ads/ -# .me/ads- (easylistchina+easylist.txt: 10985) -/.*\.me/ads- -.*.me/ads- -# .lk/ads/ (easylistchina+easylist.txt: 10984) -/.*\.lk/ads/ -.*.lk/ads/ -# .link/ads/ (easylistchina+easylist.txt: 10983) -/.*\.link/ads/ -.*.link/ads/ -# .lazyload-ad. (easylistchina+easylist.txt: 10982) -/.*\.lazyload-ad\. -.*.lazyload-ad.*. -# .lazyload-ad- (easylistchina+easylist.txt: 10981) -/.*\.lazyload-ad- -.*.lazyload-ad-*. -# .ke/ads/ (easylistchina+easylist.txt: 10980) -/.*\.ke/ads/ -.*.ke/ads/ -# .jsp?adcode= (easylistchina+easylist.txt: 10979) -/.*\.jsp\?adcode= -# .jp/ads/ (easylistchina+easylist.txt: 10978) -/.*\.jp/ads/ -.*.jp/ads/ -# .is/ads/ (easylistchina+easylist.txt: 10977) -/.*\.is/ads/ -.*.is/ads/ -# .internads. (easylistchina+easylist.txt: 10976) -/.*\.internads\. -.*.internads.*. -# .intad/ (easylistchina+easylist.txt: 10975) -/.*\.intad/ -.*.intad -# .intad. (easylistchina+easylist.txt: 10974) -/.*\.intad\. -.*.intad.*. -# .initdoubleclickadselementcontent? (easylistchina+easylist.txt: 10973) -/.*\.initdoubleclickadselementcontent\? -# .info/ads/ (easylistchina+easylist.txt: 10972) -/.*\.info/ads/ -.*.info/ads/ -# .info/ads- (easylistchina+easylist.txt: 10971) -/.*\.info/ads- -.*.info/ads- -# .info/ad_ (easylistchina+easylist.txt: 10970) -/.*\.info/ad_ -.*.info/ad_ -# .in/ads/ (easylistchina+easylist.txt: 10969) -/.*\.in/ads/ -.*.in/ads/ -# .il/ads/ (easylistchina+easylist.txt: 10968) -/.*\.il/ads/ -.*.il/ads/ -# .ie/ads/ (easylistchina+easylist.txt: 10967) -/.*\.ie/ads/ -.*.ie/ads/ -# .iads.js (easylistchina+easylist.txt: 10966) -/.*\.iads\.js -.*.iads.js*. -# .html?clicktag= (easylistchina+easylist.txt: 10965) -/.*\.html\?clicktag= -# .html?ad_ (easylistchina+easylist.txt: 10964) -/.*\.html\?ad_ -# .html?ad= (easylistchina+easylist.txt: 10963) -/.*\.html\?ad= -# .HomepageAdvertismentBottom. (easylistchina+easylist.txt: 10962) -/.*\.HomepageAdvertismentBottom\. -.*.HomepageAdvertismentBottom.*. -# .homad. (easylistchina+easylist.txt: 10961) -/.*\.homad\. -.*.homad.*. -# .hk/ads/ (easylistchina+easylist.txt: 10960) -/.*\.hk/ads/ -.*.hk/ads/ -# .gr/ads/ (easylistchina+easylist.txt: 10959) -/.*\.gr/ads/ -.*.gr/ads/ -# .gif?ad= (easylistchina+easylist.txt: 10958) -/.*\.gif\?ad= -# .gg/ads/ (easylistchina+easylist.txt: 10957) -/.*\.gg/ads/ -.*.gg/ads/ -# .fm/ads/ (easylistchina+easylist.txt: 10956) -/.*\.fm/ads/ -.*.fm/ads/ -# .exp_ad- (easylistchina+easylist.txt: 10955) -/.*\.exp_ad- -# .eu/adv/ (easylistchina+easylist.txt: 10954) -/.*\.eu/adv/ -.*.eu/adv/ -# .eu/ads/ (easylistchina+easylist.txt: 10953) -/.*\.eu/ads/ -.*.eu/ads/ -# .eg/ads/ (easylistchina+easylist.txt: 10952) -/.*\.eg/ads/ -.*.eg/ads/ -# .displayAds& (easylistchina+easylist.txt: 10951) -/.*\.displayAds& -# .digital/ads/ (easylistchina+easylist.txt: 10950) -/.*\.digital/ads/ -.*.digital/ads/ -# .dartconfig.js (easylistchina+easylist.txt: 10949) -/.*\.dartconfig\.js -.*.dartconfig.js*. -# .cz/bannery/ (easylistchina+easylist.txt: 10948) -/.*\.cz/bannery/ -.*.cz/bannery/ -# .cz/affil/ (easylistchina+easylist.txt: 10947) -/.*\.cz/affil/ -.*.cz/affil/ -# .com/video-ad- (easylistchina+easylist.txt: 10946) -/.*\.com/video-ad- -.*.com/video-ad- -# .com/ss/ad/ (easylistchina+easylist.txt: 10945) -/.*\.com/ss/ad/ -.*.com/ss/ad/ -# .com/promodisplay? (easylistchina+easylist.txt: 10944) -/.*\.com/promodisplay\? -.*.com/promodisplay\? -# .com/pm/ad- (easylistchina+easylist.txt: 10943) -/.*\.com/pm/ad- -.*.com/pm/ad- -# .com/peels/ (easylistchina+easylist.txt: 10942) -/.*\.com/peels/ -.*.com/peels/ -# .com/miads/ (easylistchina+easylist.txt: 10941) -/.*\.com/miads/ -.*.com/miads/ -# .com/js/adsense (easylistchina+easylist.txt: 10940) -/.*\.com/js/adsense -.*.com/js/adsense -# .com/js/ads/ (easylistchina+easylist.txt: 10939) -/.*\.com/js/ads/ -.*.com/js/ads/ -# .com/js/ad. (easylistchina+easylist.txt: 10938) -/.*\.com/js/ad\. -.*.com/js/ad\. -# .com/js.ng/ (easylistchina+easylist.txt: 10937) -/.*\.com/js\.ng/ -.*.com/js\.ng/ -# .com/iplgadshow (easylistchina+easylist.txt: 10936) -/.*\.com/iplgadshow -.*.com/iplgadshow -# .com/im_ad/ (easylistchina+easylist.txt: 10935) -/.*\.com/im_ad/ -.*.com/im_ad/ -# .com/im-ad/ (easylistchina+easylist.txt: 10934) -/.*\.com/im-ad/ -.*.com/im-ad/ -# .com/gads/ (easylistchina+easylist.txt: 10933) -/.*\.com/gads/ -.*.com/gads/ -# .com/doubleclick/ (easylistchina+easylist.txt: 10932) -/.*\.com/doubleclick/ -.*.com/doubleclick/ -# .com/bads/ (easylistchina+easylist.txt: 10931) -/.*\.com/bads/ -.*.com/bads/ -# .com/adz/ (easylistchina+easylist.txt: 10930) -/.*\.com/adz/ -.*.com/adz/ -# .com/adx_ (easylistchina+easylist.txt: 10929) -/.*\.com/adx_ -.*.com/adx_ -# .com/adx/ (easylistchina+easylist.txt: 10928) -/.*\.com/adx/ -.*.com/adx/ -# .com/adv_ (easylistchina+easylist.txt: 10927) -/.*\.com/adv_ -.*.com/adv_ -# .com/adv? (easylistchina+easylist.txt: 10926) -/.*\.com/adv\? -.*.com/adv\? -# .com/adv3/ (easylistchina+easylist.txt: 10925) -/.*\.com/adv3/ -.*.com/adv3/ -# .com/adv/ (easylistchina+easylist.txt: 10924) -/.*\.com/adv/ -.*.com/adv/ -# .com/ads_ (easylistchina+easylist.txt: 10923) -/.*\.com/ads_ -.*.com/ads_ -# .com/ads? (easylistchina+easylist.txt: 10922) -/.*\.com/ads\? -.*.com/ads\? -# .com/ads. (easylistchina+easylist.txt: 10920) -/.*\.com/ads\. -.*.com/ads\. -# .com/ads- (easylistchina+easylist.txt: 10919) -/.*\.com/ads- -.*.com/ads- -# .com/adpicture (easylistchina+easylist.txt: 10918) -/.*\.com/adpicture -.*.com/adpicture -# .com/adlib_ (easylistchina+easylist.txt: 10917) -/.*\.com/adlib_ -.*.com/adlib_ -# .com/adlib/ (easylistchina+easylist.txt: 10916) -/.*\.com/adlib/ -.*.com/adlib/ -# .com/adinf/ (easylistchina+easylist.txt: 10915) -/.*\.com/adinf/ -.*.com/adinf/ -# .com/adgallery (easylistchina+easylist.txt: 10914) -/.*\.com/adgallery -.*.com/adgallery -# .com/adds/ (easylistchina+easylist.txt: 10913) -/.*\.com/adds/ -.*.com/adds/ -# .com/adclk? (easylistchina+easylist.txt: 10912) -/.*\.com/adclk\? -.*.com/adclk\? -# .com/ad? (easylistchina+easylist.txt: 10911) -/.*\.com/ad\? -.*.com/ad\? -# .com/ad6/ (easylistchina+easylist.txt: 10910) -/.*\.com/ad6/ -.*.com/ad6/ -# .com/ad2/ (easylistchina+easylist.txt: 10909) -/.*\.com/ad2/ -.*.com/ad2/ -# .com/a?size (easylistchina+easylist.txt: 10905) -/.*\.com/a\?size -.*.com/a\?size -# .com/a?pagetype (easylistchina+easylist.txt: 10904) -/.*\.com/a\?pagetype -.*.com/a\?pagetype -# .com/a?network (easylistchina+easylist.txt: 10903) -/.*\.com/a\?network -.*.com/a\?network -# .com/?wid= (easylistchina+easylist.txt: 10902) -/.*\.com/\?wid= -.*.com/\?wid= -# .com/?ad= (easylistchina+easylist.txt: 10901) -/.*\.com/\?ad= -.*.com/\?ad= -# .co/ads? (easylistchina+easylist.txt: 10900) -/.*\.co/ads\? -.*.co/ads\? -# .co/ads/ (easylistchina+easylist.txt: 10899) -/.*\.co/ads/ -.*.co/ads/ -# .clkads. (easylistchina+easylist.txt: 10898) -/.*\.clkads\. -.*.clkads.*. -# .ch/adv/ (easylistchina+easylist.txt: 10897) -/.*\.ch/adv/ -.*.ch/adv/ -# .ch/ads/ (easylistchina+easylist.txt: 10896) -/.*\.ch/ads/ -.*.ch/ads/ -# .cgi?ad= (easylistchina+easylist.txt: 10895) -/.*\.cgi\?ad= -# .cfm?advideo% (easylistchina+easylist.txt: 10894) -/.*\.cfm\?advideo% -# .cfm?ad= (easylistchina+easylist.txt: 10893) -/.*\.cfm\?ad= -# .cc/ads/ (easylistchina+easylist.txt: 10892) -/.*\.cc/ads/ -.*.cc/ads/ -# .ca/ads/ (easylistchina+easylist.txt: 10891) -/.*\.ca/ads/ -.*.ca/ads/ -# .bz/ads/ (easylistchina+easylist.txt: 10890) -/.*\.bz/ads/ -.*.bz/ads/ -# .br/ads/ (easylistchina+easylist.txt: 10889) -/.*\.br/ads/ -.*.br/ads/ -# .box.ad. (easylistchina+easylist.txt: 10888) -/.*\.box\.ad\. -.*.box.ad.*. -# .bns1.net/ (easylistchina+easylist.txt: 10887) -/.*\.bns1\.net/ -.*.bns1.net -# .biz/ads/ (easylistchina+easylist.txt: 10886) -/.*\.biz/ads/ -.*.biz/ads/ -# .biz/ad2/ (easylistchina+easylist.txt: 10885) -/.*\.biz/ad2/ -.*.biz/ad2/ -# .biz/ad/ (easylistchina+easylist.txt: 10884) -/.*\.biz/ad/ -.*.biz/ad/ -# .biz/ad. (easylistchina+easylist.txt: 10883) -/.*\.biz/ad\. -.*.biz/ad\. -# .be/ads/ (easylistchina+easylist.txt: 10882) -/.*\.be/ads/ -.*.be/ads/ -# .bbn.by/ (easylistchina+easylist.txt: 10881) -/.*\.bbn\.by/ -.*.bbn.by -# .banner%20ad. (easylistchina+easylist.txt: 10880) -/.*\.banner%20ad\. -# .az/adv/ (easylistchina+easylist.txt: 10879) -/.*\.az/adv/ -.*.az/adv/ -# .au/ads/ (easylistchina+easylist.txt: 10878) -/.*\.au/ads/ -.*.au/ads/ -# .at/ads/ (easylistchina+easylist.txt: 10877) -/.*\.at/ads/ -.*.at/ads/ -# .aspx?adid= (easylistchina+easylist.txt: 10876) -/.*\.aspx\?adid= -# .aspx?ad= (easylistchina+easylist.txt: 10875) -/.*\.aspx\?ad= -# .asp?coad (easylistchina+easylist.txt: 10874) -/.*\.asp\?coad -# .ashx?AdID= (easylistchina+easylist.txt: 10873) -/.*\.ashx\?AdID= -# .ashx?ad= (easylistchina+easylist.txt: 10872) -/.*\.ashx\?ad= -# .ar/ads/ (easylistchina+easylist.txt: 10871) -/.*\.ar/ads/ -.*.ar/ads/ -# .ae/ads/ (easylistchina+easylist.txt: 10870) -/.*\.ae/ads/ -.*.ae/ads/ -# .adwolf. (easylistchina+easylist.txt: 10869) -/.*\.adwolf\. -.*.adwolf.*. -# .advertmarket. (easylistchina+easylist.txt: 10868) -/.*\.advertmarket\. -.*.advertmarket.*. -# .AdvertismentBottom. (easylistchina+easylist.txt: 10867) -/.*\.AdvertismentBottom\. -.*.AdvertismentBottom.*. -# .adv.cdn. (easylistchina+easylist.txt: 10865) -/.*\.adv\.cdn\. -.*.adv.cdn.*. -# .adtooltip& (easylistchina+easylist.txt: 10864) -/.*\.adtooltip& -# .adtech_ (easylistchina+easylist.txt: 10863) -/.*\.adtech_ -# .adsremote. (easylistchina+easylist.txt: 10862) -/.*\.adsremote\. -.*.adsremote.*. -# .adspace. (easylistchina+easylist.txt: 10861) -/.*\.adspace\. -.*.adspace.*. -# .adserver1. (easylistchina+easylist.txt: 10859) -/.*\.adserver1\. -.*.adserver1.*. -# .adserver01. (easylistchina+easylist.txt: 10858) -/.*\.adserver01\. -.*.adserver01.*. -# .adserver. (easylistchina+easylist.txt: 10857) -/.*\.adserver\. -.*.adserver.*. -# .adserv/ (easylistchina+easylist.txt: 10856) -/.*\.adserv/ -.*.adserv -# .adsense. (easylistchina+easylist.txt: 10855) -/.*\.adsense\. -.*.adsense.*. -# .adsbox. (easylistchina+easylist.txt: 10854) -/.*\.adsbox\. -.*.adsbox.*. -# .ads_clickthru. (easylistchina+easylist.txt: 10853) -/.*\.ads_clickthru\. -# .ads3- (easylistchina+easylist.txt: 10852) -/.*\.ads3- -.*.ads3-*. -# .ads2- (easylistchina+easylist.txt: 10851) -/.*\.ads2- -.*.ads2-*. -# .ads1. (easylistchina+easylist.txt: 10850) -/.*\.ads1\. -.*.ads1.*. -# .ads1- (easylistchina+easylist.txt: 10849) -/.*\.ads1- -.*.ads1-*. -# .ads.zones. (easylistchina+easylist.txt: 10848) -/.*\.ads\.zones\. -.*.ads.zones.*. -# .ads.loader- (easylistchina+easylist.txt: 10847) -/.*\.ads\.loader- -.*.ads.loader-*. -# .ads.darla. (easylistchina+easylist.txt: 10846) -/.*\.ads\.darla\. -.*.ads.darla.*. -# .ads.css (easylistchina+easylist.txt: 10845) -/.*\.ads\.css -.*.ads.css*. -# .ads.core. (easylistchina+easylist.txt: 10844) -/.*\.ads\.core\. -.*.ads.core.*. -# .ads.controller. (easylistchina+easylist.txt: 10843) -/.*\.ads\.controller\. -.*.ads.controller.*. -# .ads-tool. (easylistchina+easylist.txt: 10842) -/.*\.ads-tool\. -.*.ads-tool.*. -# .ads-min. (easylistchina+easylist.txt: 10841) -/.*\.ads-min\. -.*.ads-min.*. -# .ads-lazy. (easylistchina+easylist.txt: 10840) -/.*\.ads-lazy\. -.*.ads-lazy.*. -# .ads-and-tracking. (easylistchina+easylist.txt: 10839) -/.*\.ads-and-tracking\. -.*.ads-and-tracking.*. -# .adru. (easylistchina+easylist.txt: 10838) -/.*\.adru\. -.*.adru.*. -# .adrotate. (easylistchina+easylist.txt: 10837) -/.*\.adrotate\. -.*.adrotate.*. -# .adplacement= (easylistchina+easylist.txt: 10834) -/.*\.adplacement= -# .adpartner. (easylistchina+easylist.txt: 10833) -/.*\.adpartner\. -.*.adpartner.*. -# .admarvel. (easylistchina+easylist.txt: 10831) -/.*\.admarvel\. -.*.admarvel.*. -# .adgearpubs. (easylistchina+easylist.txt: 10829) -/.*\.adgearpubs\. -.*.adgearpubs.*. -# .adframesrc. (easylistchina+easylist.txt: 10828) -/.*\.adframesrc\. -.*.adframesrc.*. -# .adforge. (easylistchina+easylist.txt: 10827) -/.*\.adforge\. -.*.adforge.*. -# .adcenter. (easylistchina+easylist.txt: 10826) -/.*\.adcenter\. -.*.adcenter.*. -# .adbutler- (easylistchina+easylist.txt: 10825) -/.*\.adbutler- -.*.adbutler-*. -# .adbanner. (easylistchina+easylist.txt: 10824) -/.*\.adbanner\. -.*.adbanner.*. -# .ad1.nspace (easylistchina+easylist.txt: 10823) -/.*\.ad1\.nspace -.*.ad1.nspace*. -# .ad/tag. (easylistchina+easylist.txt: 10822) -/.*\.ad/tag\. -.*.ad/tag\. -# .ad/scripts/ (easylistchina+easylist.txt: 10821) -/.*\.ad/scripts/ -.*.ad/scripts/ -# .ad/script/ (easylistchina+easylist.txt: 10820) -/.*\.ad/script/ -.*.ad/script/ -# .ad/positions/ (easylistchina+easylist.txt: 10819) -/.*\.ad/positions/ -.*.ad/positions/ -# .ad/content/ (easylistchina+easylist.txt: 10818) -/.*\.ad/content/ -.*.ad/content/ -# .ad.premiere. (easylistchina+easylist.txt: 10817) -/.*\.ad\.premiere\. -.*.ad.premiere.*. -# .ad.page. (easylistchina+easylist.txt: 10816) -/.*\.ad\.page\. -.*.ad.page.*. -# .ad.json? (easylistchina+easylist.txt: 10815) -/.*\.ad\.json\? -# .ad.footer. (easylistchina+easylist.txt: 10814) -/.*\.ad\.footer\. -.*.ad.footer.*. -# .ad.final. (easylistchina+easylist.txt: 10813) -/.*\.ad\.final\. -.*.ad.final.*. -# .ad-traffic. (easylistchina+easylist.txt: 10812) -/.*\.ad-traffic\. -.*.ad-traffic.*. -# .ad-sys. (easylistchina+easylist.txt: 10811) -/.*\.ad-sys\. -.*.ad-sys.*. -# .ad-cloud. (easylistchina+easylist.txt: 10810) -/.*\.ad-cloud\. -.*.ad-cloud.*. -# .ace.advertising. (easylistchina+easylist.txt: 10809) -/.*\.ace\.advertising\. -.*.ace.advertising.*. -# .a3s?n=*&zone_id= (easylistchina+easylist.txt: 10808) -/.*\.a3s\?n=.*&zone_id= -# .1d/ads/ (easylistchina+easylist.txt: 10807) -/.*\.1d/ads/ -.*.1d/ads/ -# -your-ads-here. (easylistchina+easylist.txt: 10806) -/.*-your-ads-here\. -.*-your-ads-here.*. -# -webad1. (easylistchina+easylist.txt: 10805) -/.*-webad1\. -.*-webad1.*. -# -Web-Advert. (easylistchina+easylist.txt: 10804) -/.*-Web-Advert\. -.*-Web-Advert.*. -# -web-advert- (easylistchina+easylist.txt: 10803) -/.*-web-advert- -.*-web-advert-*. -# -Web-Ads. (easylistchina+easylist.txt: 10802) -/.*-Web-Ads\. -.*-Web-Ads.*. -# -Web-Ad. (easylistchina+easylist.txt: 10801) -/.*-Web-Ad\. -.*-Web-Ad.*. -# -web-ad- (easylistchina+easylist.txt: 10800) -/.*-web-ad- -.*-web-ad-*. -# -video-ads/ (easylistchina+easylist.txt: 10799) -/.*-video-ads/ -.*-video-ads -# -us/ads/ (easylistchina+easylist.txt: 10798) -/.*-us/ads/ -.*-us/ads/ -# -top-ads. (easylistchina+easylist.txt: 10797) -/.*-top-ads\. -.*-top-ads.*. -# -top-ad. (easylistchina+easylist.txt: 10796) -/.*-top-ad\. -.*-top-ad.*. -# -third-ad. (easylistchina+easylist.txt: 10795) -/.*-third-ad\. -.*-third-ad.*. -# -theme/ads/ (easylistchina+easylist.txt: 10794) -/.*-theme/ads/ -.*-theme/ads/ -# -text-ads. (easylistchina+easylist.txt: 10793) -/.*-text-ads\. -.*-text-ads.*. -# -template-ads/ (easylistchina+easylist.txt: 10792) -/.*-template-ads/ -.*-template-ads -# -strip-ads- (easylistchina+easylist.txt: 10791) -/.*-strip-ads- -.*-strip-ads-*. -# -sponsored-links- (easylistchina+easylist.txt: 10790) -/.*-sponsored-links- -.*-sponsored-links-*. -# -sponsor-ad. (easylistchina+easylist.txt: 10789) -/.*-sponsor-ad\. -.*-sponsor-ad.*. -# -source/ads/ (easylistchina+easylist.txt: 10788) -/.*-source/ads/ -.*-source/ads/ -# -small-ad. (easylistchina+easylist.txt: 10787) -/.*-small-ad\. -.*-small-ad.*. -# -skyscrapper160x600. (easylistchina+easylist.txt: 10786) -/.*-skyscrapper160x600\. -.*-skyscrapper160x600.*. -# -Skyscraper-Ad. (easylistchina+easylist.txt: 10785) -/.*-Skyscraper-Ad\. -.*-Skyscraper-Ad.*. -# -side-ad- (easylistchina+easylist.txt: 10784) -/.*-side-ad- -.*-side-ad-*. -# -show-ads. (easylistchina+easylist.txt: 10783) -/.*-show-ads\. -.*-show-ads.*. -# -seasonal-ad. (easylistchina+easylist.txt: 10782) -/.*-seasonal-ad\. -.*-seasonal-ad.*. -# -scrollads. (easylistchina+easylist.txt: 10781) -/.*-scrollads\. -.*-scrollads.*. -# -rollout-ad- (easylistchina+easylist.txt: 10780) -/.*-rollout-ad- -.*-rollout-ad-*. -# -rightrailad- (easylistchina+easylist.txt: 10779) -/.*-rightrailad- -.*-rightrailad-*. -# -right-ad. (easylistchina+easylist.txt: 10778) -/.*-right-ad\. -.*-right-ad.*. -# -Results-Sponsored. (easylistchina+easylist.txt: 10777) -/.*-Results-Sponsored\. -.*-Results-Sponsored.*. -# -rectangle/ad- (easylistchina+easylist.txt: 10776) -/.*-rectangle/ad- -.*-rectangle/ad- -# -publicidad. (easylistchina+easylist.txt: 10775) -/.*-publicidad\. -.*-publicidad.*. -# -printhousead- (easylistchina+easylist.txt: 10774) -/.*-printhousead- -.*-printhousead-*. -# -pri/adv- (easylistchina+easylist.txt: 10773) -/.*-pri/adv- -.*-pri/adv- -# -popup-ads- (easylistchina+easylist.txt: 10772) -/.*-popup-ads- -.*-popup-ads-*. -# -popup-ad. (easylistchina+easylist.txt: 10771) -/.*-popup-ad\. -.*-popup-ad.*. -# -popunder. (easylistchina+easylist.txt: 10770) -/.*-popunder\. -.*-popunder.*. -# -popexit. (easylistchina+easylist.txt: 10769) -/.*-popexit\. -.*-popexit.*. -# -pop-under/ (easylistchina+easylist.txt: 10768) -/.*-pop-under/ -.*-pop-under -# -permads. (easylistchina+easylist.txt: 10767) -/.*-permads\. -.*-permads.*. -# -peel-ads- (easylistchina+easylist.txt: 10766) -/.*-peel-ads- -.*-peel-ads-*. -# -panel_ad_ (easylistchina+easylist.txt: 10765) -/.*-panel_ad_ -# -panel-ad. (easylistchina+easylist.txt: 10764) -/.*-panel-ad\. -.*-panel-ad.*. -# -page-peel/ (easylistchina+easylist.txt: 10763) -/.*-page-peel/ -.*-page-peel -# -page-ad? (easylistchina+easylist.txt: 10762) -/.*-page-ad\? -# -page-ad. (easylistchina+easylist.txt: 10761) -/.*-page-ad\. -.*-page-ad.*. -# -online-advert. (easylistchina+easylist.txt: 10760) -/.*-online-advert\. -.*-online-advert.*. -# -NewStockAd- (easylistchina+easylist.txt: 10759) -/.*-NewStockAd- -.*-NewStockAd-*. -# -newsletter-ad- (easylistchina+easylist.txt: 10758) -/.*-newsletter-ad- -.*-newsletter-ad-*. -# -news-ad- (easylistchina+easylist.txt: 10757) -/.*-news-ad- -.*-news-ad-*. -# -NewAd. (easylistchina+easylist.txt: 10756) -/.*-NewAd\. -.*-NewAd.*. -# -load-ads. (easylistchina+easylist.txt: 10755) -/.*-load-ads\. -.*-load-ads.*. -# -leaderboard-ad- (easylistchina+easylist.txt: 10754) -/.*-leaderboard-ad- -.*-leaderboard-ad-*. -# -layer-ads/ (easylistchina+easylist.txt: 10753) -/.*-layer-ads/ -.*-layer-ads -# -layer-ad. (easylistchina+easylist.txt: 10752) -/.*-layer-ad\. -.*-layer-ad.*. -# -intern-ads/ (easylistchina+easylist.txt: 10751) -/.*-intern-ads/ -.*-intern-ads -# -inspire-ad. (easylistchina+easylist.txt: 10750) -/.*-inspire-ad\. -.*-inspire-ad.*. -# -img/ads/ (easylistchina+easylist.txt: 10749) -/.*-img/ads/ -.*-img/ads/ -# -images/ad- (easylistchina+easylist.txt: 10748) -/.*-images/ad- -.*-images/ad- -# -image/Ads/ (easylistchina+easylist.txt: 10747) -/.*-image/Ads/ -.*-image/Ads/ -# -image-ad. (easylistchina+easylist.txt: 10746) -/.*-image-ad\. -.*-image-ad.*. -# -iframe-ads/ (easylistchina+easylist.txt: 10745) -/.*-iframe-ads/ -.*-iframe-ads -# -iframe-ad. (easylistchina+easylist.txt: 10744) -/.*-iframe-ad\. -.*-iframe-ad.*. -# -housead- (easylistchina+easylist.txt: 10743) -/.*-housead- -.*-housead-*. -# -gpt-ad- (easylistchina+easylist.txt: 10742) -/.*-gpt-ad- -.*-gpt-ad-*. -# -google2-ad- (easylistchina+easylist.txt: 10741) -/.*-google2-ad- -.*-google2-ad-*. -# -google-ads/ (easylistchina+easylist.txt: 10740) -/.*-google-ads/ -.*-google-ads -# -google-ads- (easylistchina+easylist.txt: 10739) -/.*-google-ads- -.*-google-ads-*. -# -games/ads/ (easylistchina+easylist.txt: 10738) -/.*-games/ads/ -.*-games/ads/ -# -gallery_ad/ (easylistchina+easylist.txt: 10737) -/.*-gallery_ad/ -# -footerads. (easylistchina+easylist.txt: 10736) -/.*-footerads\. -.*-footerads.*. -# -footerads- (easylistchina+easylist.txt: 10735) -/.*-footerads- -.*-footerads-*. -# -floorboard-ads/ (easylistchina+easylist.txt: 10734) -/.*-floorboard-ads/ -.*-floorboard-ads -# -floater_ads_ (easylistchina+easylist.txt: 10733) -/.*-floater_ads_ -# -fleshlight2. (easylistchina+easylist.txt: 10732) -/.*-fleshlight2\. -.*-fleshlight2.*. -# -feed-ads. (easylistchina+easylist.txt: 10731) -/.*-feed-ads\. -.*-feed-ads.*. -# -featured-ads/ (easylistchina+easylist.txt: 10730) -/.*-featured-ads/ -.*-featured-ads -# -featured-ads. (easylistchina+easylist.txt: 10729) -/.*-featured-ads\. -.*-featured-ads.*. -# -fe-ads/ (easylistchina+easylist.txt: 10728) -/.*-fe-ads/ -.*-fe-ads -# -euads. (easylistchina+easylist.txt: 10727) -/.*-euads\. -.*-euads.*. -# -dfp-ads/ (easylistchina+easylist.txt: 10726) -/.*-dfp-ads/ -.*-dfp-ads -# -cpm-ads. (easylistchina+easylist.txt: 10725) -/.*-cpm-ads\. -.*-cpm-ads.*. -# -cpm-ad. (easylistchina+easylist.txt: 10724) -/.*-cpm-ad\. -.*-cpm-ad.*. -# -contest-ad. (easylistchina+easylist.txt: 10723) -/.*-contest-ad\. -.*-contest-ad.*. -# -content-ad. (easylistchina+easylist.txt: 10722) -/.*-content-ad\. -.*-content-ad.*. -# -box2-ad? (easylistchina+easylist.txt: 10721) -/.*-box2-ad\? -# -Box-Ad. (easylistchina+easylist.txt: 10720) -/.*-Box-Ad\. -.*-Box-Ad.*. -# -book-ad- (easylistchina+easylist.txt: 10719) -/.*-book-ad- -.*-book-ad-*. -# -blog-ad- (easylistchina+easylist.txt: 10718) -/.*-blog-ad- -.*-blog-ad-*. -# -bin/ad_ (easylistchina+easylist.txt: 10717) -/.*-bin/ad_ -.*-bin/ad_ -# -billboard-ads/ (easylistchina+easylist.txt: 10716) -/.*-billboard-ads/ -.*-billboard-ads -# -bg_ads. (easylistchina+easylist.txt: 10715) -/.*-bg_ads\. -# -bannerads/ (easylistchina+easylist.txt: 10714) -/.*-bannerads/ -.*-bannerads -# -banner468x60. (easylistchina+easylist.txt: 10713) -/.*-banner468x60\. -.*-banner468x60.*. -# -banner300x250. (easylistchina+easylist.txt: 10712) -/.*-banner300x250\. -.*-banner300x250.*. -# -banner.swf? (easylistchina+easylist.txt: 10711) -/.*-banner\.swf\? -# -banner-ads/ (easylistchina+easylist.txt: 10710) -/.*-banner-ads/ -.*-banner-ads -# -banner-ads- (easylistchina+easylist.txt: 10709) -/.*-banner-ads- -.*-banner-ads-*. -# -banner-ad/ (easylistchina+easylist.txt: 10708) -/.*-banner-ad/ -.*-banner-ad -# -banner-ad. (easylistchina+easylist.txt: 10707) -/.*-banner-ad\. -.*-banner-ad.*. -# -banner-ad- (easylistchina+easylist.txt: 10706) -/.*-banner-ad- -.*-banner-ad-*. -# -banner-768. (easylistchina+easylist.txt: 10705) -/.*-banner-768\. -.*-banner-768.*. -# -article-advert- (easylistchina+easylist.txt: 10704) -/.*-article-advert- -.*-article-advert-*. -# -article-ads- (easylistchina+easylist.txt: 10703) -/.*-article-ads- -.*-article-ads-*. -# -affiliates/img_ (easylistchina+easylist.txt: 10702) -/.*-affiliates/img_ -.*-affiliates/img_ -# -affiliate-link. (easylistchina+easylist.txt: 10701) -/.*-affiliate-link\. -.*-affiliate-link.*. -# -adwords. (easylistchina+easylist.txt: 10700) -/.*-adwords\. -.*-adwords.*. -# -advertisment- (easylistchina+easylist.txt: 10699) -/.*-advertisment- -.*-advertisment-*. -# -advertising_ (easylistchina+easylist.txt: 10698) -/.*-advertising_ -# -advertisement_ (easylistchina+easylist.txt: 10697) -/.*-advertisement_ -# -advertisement. (easylistchina+easylist.txt: 10696) -/.*-advertisement\. -.*-advertisement.*. -# -advertisement-icon. (easylistchina+easylist.txt: 10695) -/.*-advertisement-icon\. -.*-advertisement-icon.*. -# -advertise01. (easylistchina+easylist.txt: 10694) -/.*-advertise01\. -.*-advertise01.*. -# -advertise/ (easylistchina+easylist.txt: 10693) -/.*-advertise/ -.*-advertise -# -advert_August. (easylistchina+easylist.txt: 10691) -/.*-advert_August\. -# -advert3. (easylistchina+easylist.txt: 10690) -/.*-advert3\. -.*-advert3.*. -# -advert2. (easylistchina+easylist.txt: 10689) -/.*-advert2\. -.*-advert2.*. -# -advert1. (easylistchina+easylist.txt: 10688) -/.*-advert1\. -.*-advert1.*. -# -advert.swf (easylistchina+easylist.txt: 10687) -/.*-advert\.swf -.*-advert.swf*. -# -advert.jpg? (easylistchina+easylist.txt: 10686) -/.*-advert\.jpg\? -# -advert-label- (easylistchina+easylist.txt: 10685) -/.*-advert-label- -.*-advert-label-*. -# -adv.js (easylistchina+easylist.txt: 10684) -/.*-adv\.js -.*-adv.js*. -# -adv.jpg (easylistchina+easylist.txt: 10683) -/.*-adv\.jpg -.*-adv.jpg*. -# -adv-v1/ (easylistchina+easylist.txt: 10682) -/.*-adv-v1/ -.*-adv-v1 -# -adtrack. (easylistchina+easylist.txt: 10681) -/.*-adtrack\. -.*-adtrack.*. -# -adtopbanner- (easylistchina+easylist.txt: 10680) -/.*-adtopbanner- -.*-adtopbanner-*. -# -adtechfront. (easylistchina+easylist.txt: 10679) -/.*-adtechfront\. -.*-adtechfront.*. -# -adsystem- (easylistchina+easylist.txt: 10678) -/.*-adsystem- -.*-adsystem-*. -# -adswizz- (easylistchina+easylist.txt: 10677) -/.*-adswizz- -.*-adswizz-*. -# -adspot- (easylistchina+easylist.txt: 10676) -/.*-adspot- -.*-adspot-*. -# -adspace_ (easylistchina+easylist.txt: 10675) -/.*-adspace_ -# -adspace. (easylistchina+easylist.txt: 10674) -/.*-adspace\. -.*-adspace.*. -# -adsonar. (easylistchina+easylist.txt: 10673) -/.*-adsonar\. -.*-adsonar.*. -# -adserver/ (easylistchina+easylist.txt: 10672) -/.*-adserver/ -.*-adserver -# -adserver- (easylistchina+easylist.txt: 10671) -/.*-adserver- -.*-adserver-*. -# -adsense2. (easylistchina+easylist.txt: 10670) -/.*-adsense2\. -.*-adsense2.*. -# -adscript. (easylistchina+easylist.txt: 10669) -/.*-adscript\. -.*-adscript.*. -# -Ads_Billboard_ (easylistchina+easylist.txt: 10668) -/.*-Ads_Billboard_ -# -ads_9_3. (easylistchina+easylist.txt: 10667) -/.*-ads_9_3\. -# -Ads_728x902. (easylistchina+easylist.txt: 10666) -/.*-Ads_728x902\. -# -ads/static- (easylistchina+easylist.txt: 10665) -/.*-ads/static- -.*-ads/static- -# -ads/oas/ (easylistchina+easylist.txt: 10664) -/.*-ads/oas/ -.*-ads/oas/ -# -ads/img/ (easylistchina+easylist.txt: 10663) -/.*-ads/img/ -.*-ads/img/ -# -ads/ad- (easylistchina+easylist.txt: 10662) -/.*-ads/ad- -.*-ads/ad- -# -ads/728x (easylistchina+easylist.txt: 10661) -/.*-ads/728x -.*-ads/728x -# -ads.swf (easylistchina+easylist.txt: 10660) -/.*-ads\.swf -.*-ads.swf*. -# -ads.php? (easylistchina+easylist.txt: 10659) -/.*-ads\.php\? -# -ads.js? (easylistchina+easylist.txt: 10658) -/.*-ads\.js\? -# -ads.gif (easylistchina+easylist.txt: 10657) -/.*-ads\.gif -.*-ads.gif*. -# -ads.generated. (easylistchina+easylist.txt: 10656) -/.*-ads\.generated\. -.*-ads.generated.*. -# -ads-widget? (easylistchina+easylist.txt: 10655) -/.*-ads-widget\? -# -ads-right. (easylistchina+easylist.txt: 10654) -/.*-ads-right\. -.*-ads-right.*. -# -ads-placement. (easylistchina+easylist.txt: 10653) -/.*-ads-placement\. -.*-ads-placement.*. -# -ads-ns. (easylistchina+easylist.txt: 10652) -/.*-ads-ns\. -.*-ads-ns.*. -# -ads-manager/ (easylistchina+easylist.txt: 10651) -/.*-ads-manager/ -.*-ads-manager -# -ads-management/ (easylistchina+easylist.txt: 10650) -/.*-ads-management/ -.*-ads-management -# -ads-init& (easylistchina+easylist.txt: 10649) -/.*-ads-init& -# -ads-iframe. (easylistchina+easylist.txt: 10648) -/.*-ads-iframe\. -.*-ads-iframe.*. -# -ads-bottom. (easylistchina+easylist.txt: 10647) -/.*-ads-bottom\. -.*-ads-bottom.*. -# -ads-banner. (easylistchina+easylist.txt: 10646) -/.*-ads-banner\. -.*-ads-banner.*. -# -ads-728x (easylistchina+easylist.txt: 10645) -/.*-ads-728x -.*-ads-728x*. -# -ads-180x (easylistchina+easylist.txt: 10644) -/.*-ads-180x -.*-ads-180x*. -# -adrotation. (easylistchina+easylist.txt: 10643) -/.*-adrotation\. -.*-adrotation.*. -# -adnow. (easylistchina+easylist.txt: 10642) -/.*-adnow\. -.*-adnow.*. -# -admarvel/ (easylistchina+easylist.txt: 10641) -/.*-admarvel/ -.*-admarvel -# -adimage- (easylistchina+easylist.txt: 10640) -/.*-adimage- -.*-adimage-*. -# -adhere2. (easylistchina+easylist.txt: 10639) -/.*-adhere2\. -.*-adhere2.*. -# -adhelper. (easylistchina+easylist.txt: 10638) -/.*-adhelper\. -.*-adhelper.*. -# -adchain. (easylistchina+easylist.txt: 10637) -/.*-adchain\. -.*-adchain.*. -# -adcentre. (easylistchina+easylist.txt: 10636) -/.*-adcentre\. -.*-adcentre.*. -# -adblack- (easylistchina+easylist.txt: 10635) -/.*-adblack- -.*-adblack-*. -# -adap. (easylistchina+easylist.txt: 10634) -/.*-adap\. -.*-adap.*. -# -ad_leaderboard/ (easylistchina+easylist.txt: 10633) -/.*-ad_leaderboard/ -# -ad_injector/ (easylistchina+easylist.txt: 10632) -/.*-ad_injector/ -# -ad_banner- (easylistchina+easylist.txt: 10631) -/.*-ad_banner- -# -ad_125x125. (easylistchina+easylist.txt: 10630) -/.*-ad_125x125\. -# -ad5. (easylistchina+easylist.txt: 10629) -/.*-ad5\. -.*-ad5.*. -# -ad4. (easylistchina+easylist.txt: 10628) -/.*-ad4\. -.*-ad4.*. -# -Ad300x90- (easylistchina+easylist.txt: 10627) -/.*-Ad300x90- -.*-Ad300x90-*. -# -Ad300x250. (easylistchina+easylist.txt: 10626) -/.*-Ad300x250\. -.*-Ad300x250.*. -# -ad3. (easylistchina+easylist.txt: 10625) -/.*-ad3\. -.*-ad3.*. -# -ad2_ (easylistchina+easylist.txt: 10624) -/.*-ad2_ -# -ad2. (easylistchina+easylist.txt: 10623) -/.*-ad2\. -.*-ad2.*. -# -ad1. (easylistchina+easylist.txt: 10622) -/.*-ad1\. -.*-ad1.*. -# -ad03. (easylistchina+easylist.txt: 10621) -/.*-ad03\. -.*-ad03.*. -# -ad/right_ (easylistchina+easylist.txt: 10620) -/.*-ad/right_ -.*-ad/right_ -# -ad/main. (easylistchina+easylist.txt: 10619) -/.*-ad/main\. -.*-ad/main\. -# -ad.php? (easylistchina+easylist.txt: 10618) -/.*-ad\.php\? -# -ad.jsp| (easylistchina+easylist.txt: 10617) -/.*-ad\.jsp$ -.*-ad.jsp -# -ad.jpg? (easylistchina+easylist.txt: 10616) -/.*-ad\.jpg\? -# -ad.jpg.pagespeed. (easylistchina+easylist.txt: 10615) -/.*-ad\.jpg\.pagespeed\. -.*-ad.jpg.pagespeed.*. -# -ad-zone. (easylistchina+easylist.txt: 10614) -/.*-ad-zone\. -.*-ad-zone.*. -# -ad-vertical- (easylistchina+easylist.txt: 10613) -/.*-ad-vertical- -.*-ad-vertical-*. -# -ad-util. (easylistchina+easylist.txt: 10612) -/.*-ad-util\. -.*-ad-util.*. -# -ad-util- (easylistchina+easylist.txt: 10611) -/.*-ad-util- -.*-ad-util-*. -# -ad-unit/ (easylistchina+easylist.txt: 10610) -/.*-ad-unit/ -.*-ad-unit -# -ad-unit. (easylistchina+easylist.txt: 10609) -/.*-ad-unit\. -.*-ad-unit.*. -# -ad-top. (easylistchina+easylist.txt: 10608) -/.*-ad-top\. -.*-ad-top.*. -# -ad-tile. (easylistchina+easylist.txt: 10607) -/.*-ad-tile\. -.*-ad-tile.*. -# -ad-switcher. (easylistchina+easylist.txt: 10606) -/.*-ad-switcher\. -.*-ad-switcher.*. -# -ad-sidebar- (easylistchina+easylist.txt: 10605) -/.*-ad-sidebar- -.*-ad-sidebar-*. -# -ad-server/ (easylistchina+easylist.txt: 10604) -/.*-ad-server/ -.*-ad-server -# -ad-rotators/ (easylistchina+easylist.txt: 10603) -/.*-ad-rotators/ -.*-ad-rotators -# -ad-right. (easylistchina+easylist.txt: 10602) -/.*-ad-right\. -.*-ad-right.*. -# -ad-new_ (easylistchina+easylist.txt: 10601) -/.*-ad-new_ -# -ad-mpu+ (easylistchina+easylist.txt: 10600) -/.*-ad-mpu\+ -# -ad-marker. (easylistchina+easylist.txt: 10599) -/.*-ad-marker\. -.*-ad-marker.*. -# -ad-loading. (easylistchina+easylist.txt: 10597) -/.*-ad-loading\. -.*-ad-loading.*. -# -ad-limits. (easylistchina+easylist.txt: 10596) -/.*-ad-limits\. -.*-ad-limits.*. -# -ad-left. (easylistchina+easylist.txt: 10595) -/.*-ad-left\. -.*-ad-left.*. -# -ad-large. (easylistchina+easylist.txt: 10594) -/.*-ad-large\. -.*-ad-large.*. -# -ad-iframe/ (easylistchina+easylist.txt: 10593) -/.*-ad-iframe/ -.*-ad-iframe -# -ad-hrule. (easylistchina+easylist.txt: 10592) -/.*-ad-hrule\. -.*-ad-hrule.*. -# -ad-hrule- (easylistchina+easylist.txt: 10591) -/.*-ad-hrule- -.*-ad-hrule-*. -# -ad-home. (easylistchina+easylist.txt: 10590) -/.*-ad-home\. -.*-ad-home.*. -# -ad-gif1- (easylistchina+easylist.txt: 10589) -/.*-ad-gif1- -.*-ad-gif1-*. -# -ad-gif- (easylistchina+easylist.txt: 10588) -/.*-ad-gif- -.*-ad-gif-*. -# -ad-exo- (easylistchina+easylist.txt: 10587) -/.*-ad-exo- -.*-ad-exo-*. -# -ad-ero- (easylistchina+easylist.txt: 10586) -/.*-ad-ero- -.*-ad-ero-*. -# -ad-data/ (easylistchina+easylist.txt: 10585) -/.*-ad-data/ -.*-ad-data -# -ad-cube. (easylistchina+easylist.txt: 10584) -/.*-ad-cube\. -.*-ad-cube.*. -# -ad-column- (easylistchina+easylist.txt: 10583) -/.*-ad-column- -.*-ad-column-*. -# -ad-choices. (easylistchina+easylist.txt: 10582) -/.*-ad-choices\. -.*-ad-choices.*. -# -ad-category- (easylistchina+easylist.txt: 10581) -/.*-ad-category- -.*-ad-category-*. -# -ad-button- (easylistchina+easylist.txt: 10580) -/.*-ad-button- -.*-ad-button-*. -# -ad-bottom- (easylistchina+easylist.txt: 10579) -/.*-ad-bottom- -.*-ad-bottom-*. -# -ad-big. (easylistchina+easylist.txt: 10578) -/.*-ad-big\. -.*-ad-big.*. -# -ad-banner. (easylistchina+easylist.txt: 10577) -/.*-ad-banner\. -.*-ad-banner.*. -# -ad-400. (easylistchina+easylist.txt: 10576) -/.*-ad-400\. -.*-ad-400.*. -# -ad-340x400- (easylistchina+easylist.txt: 10575) -/.*-ad-340x400- -.*-ad-340x400-*. -# -ad-336x280- (easylistchina+easylist.txt: 10574) -/.*-ad-336x280- -.*-ad-336x280-*. -# -ad-313x232. (easylistchina+easylist.txt: 10573) -/.*-ad-313x232\. -.*-ad-313x232.*. -# -ad-300x250. (easylistchina+easylist.txt: 10572) -/.*-ad-300x250\. -.*-ad-300x250.*. -# -ad-24x24. (easylistchina+easylist.txt: 10571) -/.*-ad-24x24\. -.*-ad-24x24.*. -# -ad-200x200- (easylistchina+easylist.txt: 10570) -/.*-ad-200x200- -.*-ad-200x200-*. -# -ad-180x150px. (easylistchina+easylist.txt: 10569) -/.*-ad-180x150px\. -.*-ad-180x150px.*. -# -ad-001- (easylistchina+easylist.txt: 10568) -/.*-ad-001- -.*-ad-001-*. -# -300x100ad2. (easylistchina+easylist.txt: 10567) -/.*-300x100ad2\. -.*-300x100ad2.*. -# -2011ad_ (easylistchina+easylist.txt: 10566) -/.*-2011ad_ -# -2/ads/ (easylistchina+easylist.txt: 10565) -/.*-2/ads/ -.*-2/ads/ -# +adverts/ (easylistchina+easylist.txt: 10564) -/.*\+adverts/ -# +advertorial. (easylistchina+easylist.txt: 10563) -/.*\+advertorial\. -# &view=ad& (easylistchina+easylist.txt: 10562) -/.*&view=ad& -# &videoadid= (easylistchina+easylist.txt: 10561) -/.*&videoadid= -# &video_ads_ (easylistchina+easylist.txt: 10560) -/.*&video_ads_ -# &UrlAdParam= (easylistchina+easylist.txt: 10559) -/.*&UrlAdParam= -# &type=ad& (easylistchina+easylist.txt: 10558) -/.*&type=ad& -# &strategy=adsense& (easylistchina+easylist.txt: 10557) -/.*&strategy=adsense& -# &smart_ad_ (easylistchina+easylist.txt: 10556) -/.*&smart_ad_ -# &smallad= (easylistchina+easylist.txt: 10555) -/.*&smallad= -# &simple_ad_ (easylistchina+easylist.txt: 10554) -/.*&simple_ad_ -# &showad= (easylistchina+easylist.txt: 10553) -/.*&showad= -# &show_ad_ (easylistchina+easylist.txt: 10552) -/.*&show_ad_ -# &prvtof=*&poru= (easylistchina+easylist.txt: 10551) -/.*&prvtof=.*&poru= -# &program=revshare& (easylistchina+easylist.txt: 10550) -/.*&program=revshare& -# &popunder= (easylistchina+easylist.txt: 10549) -/.*&popunder= -# &maxads= (easylistchina+easylist.txt: 10548) -/.*&maxads= -# &largead= (easylistchina+easylist.txt: 10547) -/.*&largead= -# &jumpstartadformat= (easylistchina+easylist.txt: 10546) -/.*&jumpstartadformat= -# &googleadword= (easylistchina+easylist.txt: 10545) -/.*&googleadword= -# &gIncludeExternalAds= (easylistchina+easylist.txt: 10544) -/.*&gIncludeExternalAds= -# &expandable_ad_ (easylistchina+easylist.txt: 10543) -/.*&expandable_ad_ -# &displayads= (easylistchina+easylist.txt: 10542) -/.*&displayads= -# &customSizeAd= (easylistchina+easylist.txt: 10541) -/.*&customSizeAd= -# &clicktag=http (easylistchina+easylist.txt: 10540) -/.*&clicktag=http -# &banner_id= (easylistchina+easylist.txt: 10539) -/.*&banner_id= -# &adzone= (easylistchina+easylist.txt: 10538) -/.*&adzone= -# &advtile= (easylistchina+easylist.txt: 10537) -/.*&advtile= -# &advid= (easylistchina+easylist.txt: 10536) -/.*&advid= -# &advertiserid= (easylistchina+easylist.txt: 10535) -/.*&advertiserid= -# &advert_ (easylistchina+easylist.txt: 10534) -/.*&advert_ -# &adv_keywords= (easylistchina+easylist.txt: 10533) -/.*&adv_keywords= -# &adurl= (easylistchina+easylist.txt: 10532) -/.*&adurl= -# &adunit= (easylistchina+easylist.txt: 10531) -/.*&adunit= -# &adType=PREROLL& (easylistchina+easylist.txt: 10530) -/.*&adType=PREROLL& -# &adstype= (easylistchina+easylist.txt: 10529) -/.*&adstype= -# &adspace= (easylistchina+easylist.txt: 10528) -/.*&adspace= -# &adsourceid= (easylistchina+easylist.txt: 10527) -/.*&adsourceid= -# &adslots= (easylistchina+easylist.txt: 10526) -/.*&adslots= -# &adslot= (easylistchina+easylist.txt: 10525) -/.*&adslot= -# &adsize= (easylistchina+easylist.txt: 10524) -/.*&adsize= -# &adserver= (easylistchina+easylist.txt: 10523) -/.*&adserver= -# &adsafe= (easylistchina+easylist.txt: 10522) -/.*&adsafe= -# &adpageurl= (easylistchina+easylist.txt: 10521) -/.*&adpageurl= -# &adnum= (easylistchina+easylist.txt: 10520) -/.*&adnum= -# &adnet= (easylistchina+easylist.txt: 10519) -/.*&adnet= -# &adname= (easylistchina+easylist.txt: 10518) -/.*&adname= -# &admid= (easylistchina+easylist.txt: 10517) -/.*&admid= -# &admeld_ (easylistchina+easylist.txt: 10516) -/.*&admeld_ -# &adgroupid= (easylistchina+easylist.txt: 10515) -/.*&adgroupid= -# &adcount= (easylistchina+easylist.txt: 10514) -/.*&adcount= -# &adclient= (easylistchina+easylist.txt: 10513) -/.*&adclient= -# &adbannerid= (easylistchina+easylist.txt: 10512) -/.*&adbannerid= -# &ad_zones= (easylistchina+easylist.txt: 10511) -/.*&ad_zones= -# &ad_url= (easylistchina+easylist.txt: 10510) -/.*&ad_url= -# &ad_type_ (easylistchina+easylist.txt: 10509) -/.*&ad_type_ -# &ad_type= (easylistchina+easylist.txt: 10508) -/.*&ad_type= -# &ad_number= (easylistchina+easylist.txt: 10507) -/.*&ad_number= -# &ad_network_ (easylistchina+easylist.txt: 10506) -/.*&ad_network_ -# &ad_keyword= (easylistchina+easylist.txt: 10505) -/.*&ad_keyword= -# &ad_height= (easylistchina+easylist.txt: 10504) -/.*&ad_height= -# &ad_classid= (easylistchina+easylist.txt: 10503) -/.*&ad_classid= -# &ad_channel= (easylistchina+easylist.txt: 10502) -/.*&ad_channel= -# &ad_box_ (easylistchina+easylist.txt: 10501) -/.*&ad_box_ -# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina+easylist.txt: 10490) +# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina.txt: 10478) .hjfile.cn/analytics/site/TrackEvent\.js -# ||hdsrc-a.akamaihd.net^ (easylistchina+easylist.txt: 10454) +# ||hdsrc-a.akamaihd.net^ (easylistchina.txt: 10441) .hdsrc-a.akamaihd.net -# ||hdapp1008-a.akamaihd.net^ (easylistchina+easylist.txt: 10453) +# ||hdapp1008-a.akamaihd.net^ (easylistchina.txt: 10440) .hdapp1008-a.akamaihd.net -# ||hdapp1003-a.akamaihd.net^ (easylistchina+easylist.txt: 10452) +# ||hdapp1003-a.akamaihd.net^ (easylistchina.txt: 10439) .hdapp1003-a.akamaihd.net -# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina+easylist.txt: 10451) +# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina.txt: 10438) .commondisplay-a.akamaihd.net/cri/.*\.htm\?cat= -# ||akamaihd.net^*/sid.html?p= (easylistchina+easylist.txt: 10450) +# ||akamaihd.net^*/sid.html?p= (easylistchina.txt: 10437) .akamaihd.net/.*/sid\.html\?p= -# ||akamaihd.net^*/gsd.html?d= (easylistchina+easylist.txt: 10449) +# ||akamaihd.net^*/gsd.html?d= (easylistchina.txt: 10436) .akamaihd.net/.*/gsd\.html\?d= -# ||146.148.85.61^ (easylistchina+easylist.txt: 10448) +# ||146.148.85.61^ (easylistchina.txt: 10435) .146.148.85.61 -# ||880fg.com/css/*.js (easylistchina+easylist.txt: 5453) -.880fg.com/css/.*\.js -# ||zzz4.com/JS_AD/ (easylistchina+easylist.txt: 5452) +# ||2chcn.com/img/japanese-a.png (easylistchina.txt: 5426) +.2chcn.com/img/japanese-a\.png +# ||zzz4.com/JS_AD/ (easylistchina.txt: 5425) .zzz4.com/JS_AD/ -# ||zzsky.cn/images/zzskycom_ (easylistchina+easylist.txt: 5451) +# ||zzsky.cn/images/zzskycom_ (easylistchina.txt: 5424) .zzsky.cn/images/zzskycom_ -# ||zznews.cn/home/js/duilian1.js (easylistchina+easylist.txt: 5450) +# ||zznews.cn/home/js/duilian1.js (easylistchina.txt: 5423) .zznews.cn/home/js/duilian1\.js -# ||zzidc.com^*0.gif (easylistchina+easylist.txt: 5449) +# ||zzidc.com^*0.gif (easylistchina.txt: 5422) .zzidc.com/.*0\.gif -# ||zzidc.com/img/ (easylistchina+easylist.txt: 5448) +# ||zzidc.com/img/ (easylistchina.txt: 5421) .zzidc.com/img/ -# ||zzc.cn/b/ (easylistchina+easylist.txt: 5447) +# ||zzc.cn/b/ (easylistchina.txt: 5420) .zzc.cn/b/ -# ||zyzczs.com/js/tj.txt (easylistchina+easylist.txt: 5446) -.zyzczs.com/js/tj\.txt -# ||zxip.com/2013_ad/ (easylistchina+easylist.txt: 5445) +# ||zxip.com/2013_ad/ (easylistchina.txt: 5419) .zxip.com/2013_ad/ -# ||zuoche.com/promo/*.jspx (easylistchina+easylist.txt: 5444) +# ||zuoche.com/promo/*.jspx (easylistchina.txt: 5418) .zuoche.com/promo/.*\.jspx -# ||zuiben.com/a/ (easylistchina+easylist.txt: 5443) +# ||zuiben.com/a/ (easylistchina.txt: 5417) .zuiben.com/a/ -# ||zt220.com/zzs/ (easylistchina+easylist.txt: 5442) +# ||zt220.com/zzs/ (easylistchina.txt: 5416) .zt220.com/zzs/ -# ||zt2088.com^ (easylistchina+easylist.txt: 5441) +# ||zt2088.com^ (easylistchina.txt: 5415) .zt2088.com -# ||zt.iciba.com/guess/images/900.jpg (easylistchina+easylist.txt: 5440) +# ||zt.iciba.com/guess/images/900.jpg (easylistchina.txt: 5414) .zt.iciba.com/guess/images/900\.jpg -# ||zt.chuanke.com/?mod= (easylistchina+easylist.txt: 5439) +# ||zt.chuanke.com/?mod= (easylistchina.txt: 5413) .zt.chuanke.com/\?mod= -# ||zsnews.cn/v.*=300&height=225& (easylistchina+easylist.txt: 5438) +# ||zsnews.cn/v.*=300&height=225& (easylistchina.txt: 5412) .zsnews.cn/v\..*=300&height=225& -# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina+easylist.txt: 5437) +# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina.txt: 5411) .zsnews.cn/JSFUN/AdvFun/ -# ||zsnews.cn/js/adControl- (easylistchina+easylist.txt: 5436) +# ||zsnews.cn/js/adControl- (easylistchina.txt: 5410) .zsnews.cn/js/adControl- -# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina+easylist.txt: 5435) +# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina.txt: 5409) .zsnews.cn/Components/2013ZSNEWS/ -# ||zsjjob.com/user/member/google.htm (easylistchina+easylist.txt: 5434) +# ||zsjjob.com/user/member/google.htm (easylistchina.txt: 5408) .zsjjob.com/user/member/google\.htm -# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina+easylist.txt: 5432) +# ||zp365.com/newImages/201*.swf (easylistchina.txt: 5406) +.zp365.com/newImages/201.*\.swf +# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina.txt: 5405) .zoopda.com/thumbs/.*_w_680_mh_120\. -# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina+easylist.txt: 5431) +# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina.txt: 5404) .zoopda.com/thumbs/.*_w_250_mh_250\. -# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina+easylist.txt: 5430) +# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina.txt: 5403) .zongheng.com/zhuanti/2014/active/js/active\.js -# ||zongheng.com/v2014/js/mod/bad.js (easylistchina+easylist.txt: 5429) +# ||zongheng.com/v2014/js/mod/bad.js (easylistchina.txt: 5402) .zongheng.com/v2014/js/mod/bad\.js -# ||zongheng.com/upload/recommend/game/ (easylistchina+easylist.txt: 5428) +# ||zongheng.com/upload/recommend/game/ (easylistchina.txt: 5401) .zongheng.com/upload/recommend/game/ -# ||zongheng.com/ajax/recommend.game. (easylistchina+easylist.txt: 5427) +# ||zongheng.com/ajax/recommend.game. (easylistchina.txt: 5400) .zongheng.com/ajax/recommend\.game\. -# ||zolsky.com^*ad/*.js (easylistchina+easylist.txt: 5426) +# ||zolsky.com^*ad/*.js (easylistchina.txt: 5399) .zolsky.com/.*ad/.*\.js -# ||zol.com.cn/intelcorp/ (easylistchina+easylist.txt: 5425) +# ||zol.com.cn/intelcorp/ (easylistchina.txt: 5398) .zol.com.cn/intelcorp/ -# ||zol.com.cn/adrs/ (easylistchina+easylist.txt: 5424) +# ||zol.com.cn/adrs/ (easylistchina.txt: 5397) .zol.com.cn/adrs/ -# ||zol-img.com.cn/soft/114ad_ (easylistchina+easylist.txt: 5423) +# ||zol-img.com.cn/soft/114ad_ (easylistchina.txt: 5396) .zol-img.com.cn/soft/114ad_ -# ||zol-img.com.cn/201*/gt (easylistchina+easylist.txt: 5422) +# ||zol-img.com.cn/201*/gt (easylistchina.txt: 5395) .zol-img.com.cn/201.*/gt -# ||zo66.com^ (easylistchina+easylist.txt: 5421) +# ||zo66.com^ (easylistchina.txt: 5394) .zo66.com -# ||znz888.cn/modblock/ (easylistchina+easylist.txt: 5420) +# ||znz888.cn/modblock/ (easylistchina.txt: 5393) .znz888.cn/modblock/ -# ||zk168.com.cn/js/sy (easylistchina+easylist.txt: 5419) +# ||zk168.com.cn/js/sy (easylistchina.txt: 5392) .zk168.com.cn/js/sy -# ||zk168.com.cn/js/s.js (easylistchina+easylist.txt: 5418) +# ||zk168.com.cn/js/s.js (easylistchina.txt: 5391) .zk168.com.cn/js/s\.js -# ||zk168.com.cn/js/fwpd.js (easylistchina+easylist.txt: 5417) +# ||zk168.com.cn/js/fwpd.js (easylistchina.txt: 5390) .zk168.com.cn/js/fwpd\.js -# ||zk168.com.cn/js/b.js (easylistchina+easylist.txt: 5416) +# ||zk168.com.cn/js/b.js (easylistchina.txt: 5389) .zk168.com.cn/js/b\.js -# ||zk168.com.cn/js/300gg.js (easylistchina+easylist.txt: 5415) +# ||zk168.com.cn/js/300gg.js (easylistchina.txt: 5388) .zk168.com.cn/js/300gg\.js -# ||zjphoto.yinsha.com/upload/swf/ (easylistchina+easylist.txt: 5414) +# ||zjphoto.yinsha.com/upload/swf/ (easylistchina.txt: 5387) .zjphoto.yinsha.com/upload/swf/ -# ||zjol.com.cn/js/duilian/ (easylistchina+easylist.txt: 5413) +# ||zjol.com.cn/js/duilian/ (easylistchina.txt: 5386) .zjol.com.cn/js/duilian/ -# ||zjjzx.cn/img/zt/yd/ (easylistchina+easylist.txt: 5412) +# ||zjjzx.cn/img/zt/yd/ (easylistchina.txt: 5385) .zjjzx.cn/img/zt/yd/ -# ||zjjzx.cn*/push/ (easylistchina+easylist.txt: 5411) +# ||zjjzx.cn*/push/ (easylistchina.txt: 5384) .zjjzx.cn*./(.*/)?push/ -# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina+easylist.txt: 5410) +# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina.txt: 5383) .zjg.js.cn/Template/Ant/Js/tonglang\.js -# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina+easylist.txt: 5409) +# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina.txt: 5382) .zjg.js.cn/Public/config/Couplet/Index4 -# ||zjbdt.com/onexgadimgs/ (easylistchina+easylist.txt: 5408) +# ||zjbdt.com/onexgadimgs/ (easylistchina.txt: 5381) .zjbdt.com/onexgadimgs/ -# ||zj.cn^*/AD?location= (easylistchina+easylist.txt: 5407) +# ||zj.cn^*/AD?location= (easylistchina.txt: 5380) .zj.cn/.*/AD\?location= -# ||ziti.jz123.cn/js/ (easylistchina+easylist.txt: 5406) +# ||ziti.jz123.cn/js/ (easylistchina.txt: 5379) .ziti.jz123.cn/js/ -# ||zisai.com/2014.ad/ (easylistchina+easylist.txt: 5405) +# ||zisai.com/2014.ad/ (easylistchina.txt: 5378) .zisai.com/2014\.ad/ -# ||zisai.com/2013.ad/ (easylistchina+easylist.txt: 5404) +# ||zisai.com/2013.ad/ (easylistchina.txt: 5377) .zisai.com/2013\.ad/ -# ||zimuzu.tv/rrlx (easylistchina+easylist.txt: 5403) +# ||zimuzu.tv/rrlx (easylistchina.txt: 5376) .zimuzu.tv/rrlx -# ||zimuzu.tv/public/rooms? (easylistchina+easylist.txt: 5402) +# ||zimuzu.tv/public/rooms? (easylistchina.txt: 5375) .zimuzu.tv/public/rooms\? -# ||zhzyw.org/js/InsertJS.js (easylistchina+easylist.txt: 5401) +# ||zhzyw.org/js/InsertJS.js (easylistchina.txt: 5374) .zhzyw.org/js/InsertJS\.js -# ||zhyjw.com/xiala/ (easylistchina+easylist.txt: 5400) +# ||zhyjw.com/xiala/ (easylistchina.txt: 5373) .zhyjw.com/xiala/ -# ||zhyjw.com/IAA/ (easylistchina+easylist.txt: 5399) +# ||zhyjw.com/IAA/ (easylistchina.txt: 5372) .zhyjw.com/IAA/ -# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina+easylist.txt: 5398) +# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina.txt: 5371) .zhulong.com/poster/get\?positions_name=ZY_SP_300 -# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina+easylist.txt: 5397) +# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina.txt: 5370) .zhulong.com/poster/get\?positions_name=ZY_JZ_300_02 -# ||zhulong.com/poster/get?*_960 (easylistchina+easylist.txt: 5396) +# ||zhulong.com/poster/get?*_960 (easylistchina.txt: 5369) .zhulong.com/poster/get\?.*_960 -# ||zhulang.com/ad_js/ (easylistchina+easylist.txt: 5395) +# ||zhulang.com/ad_js/ (easylistchina.txt: 5368) .zhulang.com/ad_js/ -# ||zhujiangroad.com/js/alltop.js (easylistchina+easylist.txt: 5394) +# ||zhujiangroad.com/js/alltop.js (easylistchina.txt: 5367) .zhujiangroad.com/js/alltop\.js -# ||zhuishu.com/js/fy (easylistchina+easylist.txt: 5393) +# ||zhuishu.com/js/fy (easylistchina.txt: 5366) .zhuishu.com/js/fy -# ||zhuishu.com/js/bd (easylistchina+easylist.txt: 5392) +# ||zhuishu.com/js/bd (easylistchina.txt: 5365) .zhuishu.com/js/bd -# ||zhuanyewanjia.com/upload/show/ (easylistchina+easylist.txt: 5391) +# ||zhuanyewanjia.com/upload/show/ (easylistchina.txt: 5364) .zhuanyewanjia.com/upload/show/ -# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina+easylist.txt: 5390) +# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina.txt: 5363) .zhuankeba.net/rw/tyrw/top\.jpg -# ||zhuangpin.com^*/ad/ (easylistchina+easylist.txt: 5389) -.zhuangpin.com/.*/ad/ -# ||zhoushan.cn/new.js (easylistchina+easylist.txt: 5388) +# ||zhoushan.cn/new.js (easylistchina.txt: 5362) .zhoushan.cn/new\.js -# ||zhongzi.in/static/ko/ (easylistchina+easylist.txt: 5387) +# ||zhongzi.in/static/ko/ (easylistchina.txt: 5361) .zhongzi.in/static/ko/ -# ||zhlzw.com/wlles/2015/995XX.js (easylistchina+easylist.txt: 5386) +# ||zhlzw.com/wlles/2015/995XX.js (easylistchina.txt: 5360) .zhlzw.com/wlles/2015/995XX\.js -# ||zhijia.com/hd/*.swf (easylistchina+easylist.txt: 5385) +# ||zhijia.com/hd/*.swf (easylistchina.txt: 5359) .zhijia.com/hd/.*\.swf -# ||zhihu.com/node/*UpShameimaruV2? (easylistchina+easylist.txt: 5384) -.zhihu.com/node/.*UpShameimaruV2\? -# ||zhihu.com/node/*DownShameimaruV2? (easylistchina+easylist.txt: 5383) -.zhihu.com/node/.*DownShameimaruV2\? -# ||zhibowu.com/js/ad (easylistchina+easylist.txt: 5382) +# ||zhihu.com/node/Banner? (easylistchina.txt: 5358) +.zhihu.com/node/Banner\? +# ||zhibowu.com/js/ad (easylistchina.txt: 5357) .zhibowu.com/js/ad -# ||zhibok8.com/js/scroll.js (easylistchina+easylist.txt: 5381) +# ||zhibok8.com/js/scroll.js (easylistchina.txt: 5356) .zhibok8.com/js/scroll\.js -# ||zhibok8.com/js/ding.js (easylistchina+easylist.txt: 5380) +# ||zhibok8.com/js/ding.js (easylistchina.txt: 5355) .zhibok8.com/js/ding\.js -# ||zhiboba.cc/js/pic.js (easylistchina+easylist.txt: 5379) +# ||zhiboba.cc/js/pic.js (easylistchina.txt: 5354) .zhiboba.cc/js/pic\.js -# ||zhibo8.cc/js/float.js (easylistchina+easylist.txt: 5378) +# ||zhibo8.cc/js/float.js (easylistchina.txt: 5353) .zhibo8.cc/js/float\.js -# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina+easylist.txt: 5377) +# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina.txt: 5352) .zhenjiang365.cn/bbsimg/lphyslideshower\.swf -# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina+easylist.txt: 5376) +# ||zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9.jpg (easylistchina.txt: 5351) +.zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9\.jpg +# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina.txt: 5350) .zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d\.gif -# ||zhenjiang365.cn/*/ad_ (easylistchina+easylist.txt: 5375) +# ||zhenjiang365.cn/*/ad_ (easylistchina.txt: 5349) .zhenjiang365.cn/.*/ad_ -# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina+easylist.txt: 5374) +# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina.txt: 5348) .zhaozi.cn/d/js/mini/extended87\.js -# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina+easylist.txt: 5373) +# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina.txt: 5347) .zhaojiao.net/templets/default/js/AD_flay\.js -# ||zhao.265g.com/cache/kfbftop.html (easylistchina+easylist.txt: 5372) +# ||zhao.265g.com/cache/kfbftop.html (easylistchina.txt: 5346) .zhao.265g.com/cache/kfbftop\.html -# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina+easylist.txt: 5371) +# ||zhanqi.tv/uploads/*/ads-*.swf (easylistchina.txt: 5345) +.zhanqi.tv/uploads/.*/ads-.*\.swf +# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina.txt: 5344) .zhangge.net/wp-content/uploads/files/esx\.jpg -# ||zhandi.cc/Runtime/js/index (easylistchina+easylist.txt: 5370) +# ||zhandi.cc/Runtime/js/index (easylistchina.txt: 5343) .zhandi.cc/Runtime/js/index -# ||zhandi.cc/Runtime/js/900 (easylistchina+easylist.txt: 5369) +# ||zhandi.cc/Runtime/js/900 (easylistchina.txt: 5342) .zhandi.cc/Runtime/js/900 -# ||zhandi.cc/Runtime/js/*vod (easylistchina+easylist.txt: 5368) +# ||zhandi.cc/Runtime/js/*vod (easylistchina.txt: 5341) .zhandi.cc/Runtime/js/.*vod -# ||zhainanba.org/ac/ (easylistchina+easylist.txt: 5367) +# ||zhainanba.org/ac/ (easylistchina.txt: 5340) .zhainanba.org/ac/ -# ||zgjm.org/data/cache/mytag-30.htm (easylistchina+easylist.txt: 5366) +# ||zgjm.org/data/cache/mytag-30.htm (easylistchina.txt: 5339) .zgjm.org/data/cache/mytag-30\.htm -# ||zgjm.org/data/cache/mytag-24.htm (easylistchina+easylist.txt: 5365) +# ||zgjm.org/data/cache/mytag-24.htm (easylistchina.txt: 5338) .zgjm.org/data/cache/mytag-24\.htm -# ||zfs.cn/data/attachment/portal/ (easylistchina+easylist.txt: 5364) +# ||zfs.cn/data/attachment/portal/ (easylistchina.txt: 5337) .zfs.cn/data/attachment/portal/ -# ||zfs.cn/8th/ (easylistchina+easylist.txt: 5363) +# ||zfs.cn/8th/ (easylistchina.txt: 5336) .zfs.cn/8th/ -# ||zeyi.cc/js/2412/ (easylistchina+easylist.txt: 5362) +# ||zeyi.cc/js/2412/ (easylistchina.txt: 5335) .zeyi.cc/js/2412/ -# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina+easylist.txt: 5361) +# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina.txt: 5334) .zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605\.gif -# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina+easylist.txt: 5360) +# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina.txt: 5333) .zdfans.com/wp-content/upgrade/doujind\.gif -# ||zdfans.com/Picture/2345 (easylistchina+easylist.txt: 5359) +# ||zdfans.com/Picture/2345 (easylistchina.txt: 5332) .zdfans.com/Picture/2345 -# ||zdfans.com/adsens/kiees.jpg (easylistchina+easylist.txt: 5358) +# ||zdfans.com/adsens/kiees.jpg (easylistchina.txt: 5331) .zdfans.com/adsens/kiees\.jpg -# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina+easylist.txt: 5357) +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina.txt: 5330) .zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317\.aspx -# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina+easylist.txt: 5356) +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina.txt: 5329) .zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0\.aspx -# ||zchot.com/images/jiaoyou (easylistchina+easylist.txt: 5355) +# ||zchot.com/images/jiaoyou (easylistchina.txt: 5328) .zchot.com/images/jiaoyou -# ||zc173.com/pp/ (easylistchina+easylist.txt: 5354) +# ||zc173.com/pp/ (easylistchina.txt: 5327) .zc173.com/pp/ -# ||zc173.com/173fee/ (easylistchina+easylist.txt: 5353) +# ||zc173.com/173fee/ (easylistchina.txt: 5326) .zc173.com/173fee/ -# ||zb7.com/static/archy/ad/ (easylistchina+easylist.txt: 5352) +# ||zb7.com/static/archy/ad/ (easylistchina.txt: 5325) .zb7.com/static/archy/ad/ -# ||zasv.com/baiya.jpg (easylistchina+easylist.txt: 5351) +# ||zasv.com/baiya.jpg (easylistchina.txt: 5324) .zasv.com/baiya\.jpg -# ||zaobao.com/ssi/bizp/ (easylistchina+easylist.txt: 5350) +# ||zaobao.com/ssi/bizp/ (easylistchina.txt: 5323) .zaobao.com/ssi/bizp/ -# ||zalra.qiniudn.com/zhou2.jpg (easylistchina+easylist.txt: 5349) +# ||zalra.qiniudn.com/zhou2.jpg (easylistchina.txt: 5322) .zalra.qiniudn.com/zhou2\.jpg -# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina+easylist.txt: 5348) +# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina.txt: 5321) .zalra.cn/wp-content/uploads/2014/05/xs009\.jpg -# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina+easylist.txt: 5347) +# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina.txt: 5320) .zalra.cn/wp-content/uploads/2014/05/adsj\.png -# ||z63.org/wp-content/themes/z63/img/s- (easylistchina+easylist.txt: 5346) +# ||z63.org/wp-content/themes/z63/img/s- (easylistchina.txt: 5319) .z63.org/wp-content/themes/z63/img/s- -# ||z4bbs.com/adst/ (easylistchina+easylist.txt: 5345) +# ||z4bbs.com/adst/ (easylistchina.txt: 5318) .z4bbs.com/adst/ -# ||yzz.cn/home/theme/popwin/ (easylistchina+easylist.txt: 5344) +# ||yzz.cn/home/theme/popwin/ (easylistchina.txt: 5317) .yzz.cn/home/theme/popwin/ -# ||yzz.cn/global_gg/ (easylistchina+easylist.txt: 5343) +# ||yzz.cn/global_gg/ (easylistchina.txt: 5316) .yzz.cn/global_gg/ -# ||yzwb.com/js/ppaa.js (easylistchina+easylist.txt: 5342) +# ||yzwb.com/js/ppaa.js (easylistchina.txt: 5315) .yzwb.com/js/ppaa\.js -# ||yzwb.com/js/AD (easylistchina+easylist.txt: 5341) +# ||yzwb.com/js/AD (easylistchina.txt: 5314) .yzwb.com/js/AD -# ||yzwb.com/images/ad_ (easylistchina+easylist.txt: 5340) +# ||yzwb.com/images/ad_ (easylistchina.txt: 5313) .yzwb.com/images/ad_ -# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina+easylist.txt: 5339) +# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina.txt: 5312) .yytcdn.com/user/bugles/.*_.*x.*\.jpg -# ||yytcdn.com/others/avt/*_1 (easylistchina+easylist.txt: 5337) +# ||yytcdn.com/others/avt/*_1 (easylistchina.txt: 5310) .yytcdn.com/others/avt/.*_1 -# ||yytcdn.com/others/*_175x660. (easylistchina+easylist.txt: 5336) +# ||yytcdn.com/others/*_175x660. (easylistchina.txt: 5309) .yytcdn.com/others/.*_175x660\. -# ||yytcdn.com/headfile/avt/ (easylistchina+easylist.txt: 5335) +# ||yytcdn.com/headfile/avt/ (easylistchina.txt: 5308) .yytcdn.com/headfile/avt/ -# ||yy521.com/qq/qq.js (easylistchina+easylist.txt: 5334) +# ||yy521.com/qq/qq.js (easylistchina.txt: 5307) .yy521.com/qq/qq\.js -# ||yy521.com/js/baidu (easylistchina+easylist.txt: 5333) +# ||yy521.com/js/baidu (easylistchina.txt: 5306) .yy521.com/js/baidu -# ||yy18.info/yyads/ (easylistchina+easylist.txt: 5332) +# ||yy18.info/yyads/ (easylistchina.txt: 5305) .yy18.info/yyads/ -# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina+easylist.txt: 5331) +# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina.txt: 5304) .yxlady.com/skin/yx2014/mm/inpage/ny/ -# ||yxlady.com/cdd/ (easylistchina+easylist.txt: 5330) +# ||yxlady.com/cdd/ (easylistchina.txt: 5303) .yxlady.com/cdd/ -# ||yxdown.com/ghtml/ (easylistchina+easylist.txt: 5329) +# ||yxdown.com/ghtml/ (easylistchina.txt: 5302) .yxdown.com/ghtml/ -# ||yxad.com/yxad/ (easylistchina+easylist.txt: 5327) +# ||yxad.com/yxad/ (easylistchina.txt: 5300) .yxad.com/yxad/ -# ||yxad.com/sg/ (easylistchina+easylist.txt: 5326) +# ||yxad.com/sg/ (easylistchina.txt: 5299) .yxad.com/sg/ -# ||yxad.com/js/lady.gif (easylistchina+easylist.txt: 5325) +# ||yxad.com/js/lady.gif (easylistchina.txt: 5298) .yxad.com/js/lady\.gif -# ||yxad.com/baidu/ (easylistchina+easylist.txt: 5324) +# ||yxad.com/baidu/ (easylistchina.txt: 5297) .yxad.com/baidu/ -# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina+easylist.txt: 5323) +# ||yupoo.com/ttmeiju/FgIoBTXx/4uIfH.jpg (easylistchina.txt: 5296) +.yupoo.com/ttmeiju/FgIoBTXx/4uIfH\.jpg +# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina.txt: 5295) .yupoo.com/ttmeiju/F5TrKJL8/medish\.jpg -# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina+easylist.txt: 5322) +# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina.txt: 5294) .yupoo.com/ttmeiju/F5aQAmuW/XKgx\.gif -# ||yunupload.net/jsa/ (easylistchina+easylist.txt: 5320) +# ||yunupload.net/jsa/ (easylistchina.txt: 5292) .yunupload.net/jsa/ -# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina+easylist.txt: 5319) +# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina.txt: 5291) .yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead\.jpg -# ||yunfile.com^*/offline_banner/ (easylistchina+easylist.txt: 5318) -.yunfile.com/.*/offline_banner/ -# ||yundianb.com/tu/jia.gif (easylistchina+easylist.txt: 5317) +# ||yundianb.com/tu/jia.gif (easylistchina.txt: 5290) .yundianb.com/tu/jia\.gif -# ||yundianb.com/hao/ (easylistchina+easylist.txt: 5316) +# ||yundianb.com/hao/ (easylistchina.txt: 5289) .yundianb.com/hao/ -# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina+easylist.txt: 5315) +# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina.txt: 5288) .yundasys.com:1602/wsd/ykjcx/ -# ||yunaw.qiniudn.com/tuixiao.png (easylistchina+easylist.txt: 5314) +# ||yunaw.qiniudn.com/tuixiao.png (easylistchina.txt: 5287) .yunaw.qiniudn.com/tuixiao\.png -# ||yubei8.com/img/ (easylistchina+easylist.txt: 5313) +# ||yubei8.com/img/ (easylistchina.txt: 5286) .yubei8.com/img/ -# ||yubei8.com/boximg/ (easylistchina+easylist.txt: 5312) +# ||yubei8.com/boximg/ (easylistchina.txt: 5285) .yubei8.com/boximg/ -# ||yu64.com/44jjss/ (easylistchina+easylist.txt: 5311) -.yu64.com/44jjss/ -# ||yto.net.cn/gw/chajian/ (easylistchina+easylist.txt: 5310) +# ||yto.net.cn/gw/chajian/ (easylistchina.txt: 5284) .yto.net.cn/gw/chajian/ -# ||ytbbs.com/images/index/ (easylistchina+easylist.txt: 5309) +# ||ytbbs.com/images/index/ (easylistchina.txt: 5283) .ytbbs.com/images/index/ -# ||ysxs8.com/ysgg/ (easylistchina+easylist.txt: 5308) +# ||ysxs8.com/ysgg/ (easylistchina.txt: 5282) .ysxs8.com/ysgg/ -# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina+easylist.txt: 5307) +# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina.txt: 5281) .youxituoluo.com/wp-content/uploads/2015/09/20150914175545748\.jpg -# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina+easylist.txt: 5306) +# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina.txt: 5280) .youxituoluo.com/wp-content/uploads/2015/07/20150724152002343\.jpg -# ||youxiaxiazai.com/dm/ (easylistchina+easylist.txt: 5305) +# ||youxiaxiazai.com/dm/ (easylistchina.txt: 5279) .youxiaxiazai.com/dm/ -# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina+easylist.txt: 5304) +# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina.txt: 5278) .youxiaxiazai.com/db_top/index_top\.htm -# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina+easylist.txt: 5303) +# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina.txt: 5277) .youxi.baidu.com/tips/bdtips_min\.js -# ||youthwant.com.tw/scripts/youthad.js (easylistchina+easylist.txt: 5301) +# ||youthwant.com.tw/scripts/youthad.js (easylistchina.txt: 5275) .youthwant.com.tw/scripts/youthad\.js -# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina+easylist.txt: 5300) +# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina.txt: 5274) .youthwant.com.tw/S_YahooContentMatch1\. -# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina+easylist.txt: 5299) +# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina.txt: 5273) .youthwant.com.tw/images/mot_ad\.jpg -# ||youthwant.com.tw/event/*/swf/970x (easylistchina+easylist.txt: 5298) +# ||youthwant.com.tw/event/*/swf/970x (easylistchina.txt: 5272) .youthwant.com.tw/event/.*/swf/970x -# ||youthwant.com.tw/dodo.php?adjs= (easylistchina+easylist.txt: 5297) +# ||youthwant.com.tw/dodo.php?adjs= (easylistchina.txt: 5271) .youthwant.com.tw/dodo\.php\?adjs= -# ||youth.cn/qwtf2015/ (easylistchina+easylist.txt: 5296) +# ||youth.cn/qwtf2015/ (easylistchina.txt: 5270) .youth.cn/qwtf2015/ -# ||youth.cn/images/public_ (easylistchina+easylist.txt: 5295) +# ||youth.cn/images/public_ (easylistchina.txt: 5269) .youth.cn/images/public_ -# ||youth.cn/images/m.js (easylistchina+easylist.txt: 5294) +# ||youth.cn/images/m.js (easylistchina.txt: 5268) .youth.cn/images/m\.js -# ||youth.cn/images/c.js (easylistchina+easylist.txt: 5293) +# ||youth.cn/images/c.js (easylistchina.txt: 5267) .youth.cn/images/c\.js -# ||youth.cn/hezuo/index.js (easylistchina+easylist.txt: 5292) +# ||youth.cn/hezuo/index.js (easylistchina.txt: 5266) .youth.cn/hezuo/index\.js -# ||youth.cn/ggw/dep_ggw/ (easylistchina+easylist.txt: 5291) +# ||youth.cn/ggw/dep_ggw/ (easylistchina.txt: 5265) .youth.cn/ggw/dep_ggw/ -# ||youqu.net/js/ (easylistchina+easylist.txt: 5290) +# ||youqu.net/js/ (easylistchina.txt: 5264) .youqu.net/js/ -# ||you85.cn^*/z*.js (easylistchina+easylist.txt: 5289) +# ||you85.cn^*/z*.js (easylistchina.txt: 5263) .you85.cn/.*/z.*\.js -# ||you85.cn^*/vip.js (easylistchina+easylist.txt: 5288) +# ||you85.cn^*/vip.js (easylistchina.txt: 5262) .you85.cn/.*/vip\.js -# ||you85.cn^*/dib.js (easylistchina+easylist.txt: 5287) +# ||you85.cn^*/dib.js (easylistchina.txt: 5261) .you85.cn/.*/dib\.js -# ||you85.cn/i360/ (easylistchina+easylist.txt: 5286) +# ||you85.cn/i360/ (easylistchina.txt: 5260) .you85.cn/i360/ -# ||you85.cn/cc/ (easylistchina+easylist.txt: 5285) +# ||you85.cn/cc/ (easylistchina.txt: 5259) .you85.cn/cc/ -# ||yooread.com/skin/js/common.js (easylistchina+easylist.txt: 5284) +# ||yooread.com/skin/js/common.js (easylistchina.txt: 5258) .yooread.com/skin/js/common\.js -# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina+easylist.txt: 5283) +# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina.txt: 5257) .ynzd.org/dict/uploads/20111007/ad_710\.jpg -# ||ylzx8.cn/style/js/sad.js (easylistchina+easylist.txt: 5282) +# ||ylzx8.cn/style/js/sad.js (easylistchina.txt: 5256) .ylzx8.cn/style/js/sad\.js -# ||ylnet.com.cn/gj.js (easylistchina+easylist.txt: 5280) +# ||ylnet.com.cn/gj.js (easylistchina.txt: 5254) .ylnet.com.cn/gj\.js -# ||ylnet.com.cn/dl*.js (easylistchina+easylist.txt: 5279) +# ||ylnet.com.cn/dl*.js (easylistchina.txt: 5253) .ylnet.com.cn/dl.*\.js -# ||ylnet.com.cn/201*/rh/ (easylistchina+easylist.txt: 5278) +# ||ylnet.com.cn/201*/rh/ (easylistchina.txt: 5252) .ylnet.com.cn/201.*/rh/ -# ||yktj.yzz.cn^ (easylistchina+easylist.txt: 5277) +# ||yktj.yzz.cn^ (easylistchina.txt: 5251) .yktj.yzz.cn -# ||yjhas.net/250x250- (easylistchina+easylist.txt: 5276) -.yjhas.net/250x250- -# ||yizhai.net/myjs/f*.js (easylistchina+easylist.txt: 5275) +# ||yizhai.net/myjs/f*.js (easylistchina.txt: 5249) .yizhai.net/myjs/f.*\.js -# ||yiyipan.com/images/12.gif (easylistchina+easylist.txt: 5274) +# ||yiyipan.com/images/12.gif (easylistchina.txt: 5248) .yiyipan.com/images/12\.gif -# ||yixiaoba.com/juxiao.html (easylistchina+easylist.txt: 5273) +# ||yixiaoba.com/juxiao.html (easylistchina.txt: 5247) .yixiaoba.com/juxiao\.html -# ||yixiaoba.com/js/yxb_normal.js (easylistchina+easylist.txt: 5272) +# ||yixiaoba.com/js/yxb_normal.js (easylistchina.txt: 5246) .yixiaoba.com/js/yxb_normal\.js -# ||yiweimei.net/css/logo.gif (easylistchina+easylist.txt: 5271) +# ||yiweimei.net/css/logo.gif (easylistchina.txt: 5245) .yiweimei.net/css/logo\.gif -# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina+easylist.txt: 5270) +# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina.txt: 5244) .yinyuetai.com/proment/get-play-medias\?json=true&position=preroll -# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina+easylist.txt: 5269) +# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina.txt: 5243) .yinyuetai.com/proment/get-play-medias\?.*&position=pauseroll -# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina+easylist.txt: 5268) +# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina.txt: 5242) .yinyuetai.com/proment/get-play-medias\?.*&position=overlay -# ||yinhangkahao.com/go/ (easylistchina+easylist.txt: 5266) +# ||yinhangkahao.com/go/ (easylistchina.txt: 5240) .yinhangkahao.com/go/ -# ||yinfu.cc/sid/*.js (easylistchina+easylist.txt: 5265) +# ||yinfu.cc/sid/*.js (easylistchina.txt: 5239) .yinfu.cc/sid/.*\.js -# ||yinduabc.com/res_base/*/makemoney/ (easylistchina+easylist.txt: 5264) +# ||yinduabc.com/res_base/*/makemoney/ (easylistchina.txt: 5238) .yinduabc.com/res_base/.*/makemoney/ -# ||yimuhe.com/n_ad/ (easylistchina+easylist.txt: 5263) +# ||yimuhe.com/n_ad/ (easylistchina.txt: 5237) .yimuhe.com/n_ad/ -# ||yimg.com/ja/ap/*_wallpaper (easylistchina+easylist.txt: 5261) +# ||yimg.com/ja/ap/*_wallpaper (easylistchina.txt: 5235) .yimg.com/ja/ap/.*_wallpaper -# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina+easylist.txt: 5260) +# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina.txt: 5234) .yimg.com/ja/ap/.*/hk_rm_umu_ -# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina+easylist.txt: 5259) +# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina.txt: 5233) .yimg.com/cv/ae/tw/bwchou/bubble_ -# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina+easylist.txt: 5258) +# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina.txt: 5232) .yimg.com/cv/ae/tw/bwchou/728x210\. -# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina+easylist.txt: 5257) +# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina.txt: 5231) .yimg.com/cv/ae/default/.*_STATIC-JPEG_ -# ||yimg.com/bf/homerun/ysm_ (easylistchina+easylist.txt: 5256) +# ||yimg.com/bf/homerun/ysm_ (easylistchina.txt: 5230) .yimg.com/bf/homerun/ysm_ -# ||yiku51.com/xinzeng/js/ (easylistchina+easylist.txt: 5255) +# ||yiku51.com/xinzeng/js/ (easylistchina.txt: 5229) .yiku51.com/xinzeng/js/ -# ||ygdy8.com/jsy/ (easylistchina+easylist.txt: 5254) +# ||ygdy8.com/jsy/ (easylistchina.txt: 5228) .ygdy8.com/jsy/ -# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina+easylist.txt: 5253) +# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina.txt: 5227) .yeyou.com/2013/new/yeyou-float-window\.js -# ||yesky.com/monitorjs/imp- (easylistchina+easylist.txt: 5252) +# ||yesky.com/monitorjs/imp- (easylistchina.txt: 5226) .yesky.com/monitorjs/imp- -# ||yehaolu.com/js/jjss (easylistchina+easylist.txt: 5251) -.yehaolu.com/js/jjss -# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina+easylist.txt: 5250) +# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina.txt: 5225) .yeeyi.com/bbs/api\.php\?mod=js&bid= -# ||ydstatic.com/images/hao163/600-45_2.jpg (easylistchina+easylist.txt: 5249) -.ydstatic.com/images/hao163/600-45_2\.jpg -# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina+easylist.txt: 5248) +# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina.txt: 5224) .ydstatic.com/fanxian/minisite/promotion/ -# ||yczbb.com/ggimg/ (easylistchina+easylist.txt: 5247) +# ||yczbb.com/ggimg/ (easylistchina.txt: 5223) .yczbb.com/ggimg/ -# ||ychr.com/dlad.js (easylistchina+easylist.txt: 5246) +# ||ychr.com/dlad.js (easylistchina.txt: 5222) .ychr.com/dlad\.js -# ||ybvv.com*/aimg/ (easylistchina+easylist.txt: 5245) +# ||ybvv.com*/aimg/ (easylistchina.txt: 5221) .ybvv.com*./(.*/)?aimg/ -# ||yb983.com/skin/yb983V2013/ad/ (easylistchina+easylist.txt: 5244) +# ||yb983.com/skin/yb983V2013/ad/ (easylistchina.txt: 5220) .yb983.com/skin/yb983V2013/ad/ -# ||yawin.cn/inc/indexad.js (easylistchina+easylist.txt: 5243) +# ||yawin.cn/inc/indexad.js (easylistchina.txt: 5219) .yawin.cn/inc/indexad\.js -# ||yaolanimage.cn/cms/image/960-90 (easylistchina+easylist.txt: 5242) +# ||yaolanimage.cn/cms/image/960-90 (easylistchina.txt: 5218) .yaolanimage.cn/cms/image/960-90 -# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina+easylist.txt: 5241) +# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina.txt: 5217) .yaolanimage.cn/assets/ask/js/ask_video_popup\.js -# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina+easylist.txt: 5240) +# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina.txt: 5216) .yaolan.com/wenku_debris/time_debris/images/mary -# ||yaojixiu.com/960x100.gif (easylistchina+easylist.txt: 5239) +# ||yaojixiu.com/960x100.gif (easylistchina.txt: 5215) .yaojixiu.com/960x100\.gif -# ||yanu.qiniudn.com/270300.jpg (easylistchina+easylist.txt: 5238) +# ||yanu.qiniudn.com/270300.jpg (easylistchina.txt: 5214) .yanu.qiniudn.com/270300\.jpg -# ||yanu.qiniudn.com/*x60. (easylistchina+easylist.txt: 5237) +# ||yanu.qiniudn.com/*x60. (easylistchina.txt: 5213) .yanu.qiniudn.com/.*x60\. -# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina+easylist.txt: 5236) +# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina.txt: 5212) .yanqing888.me/script/Read_Fee_Bottom\.js -# ||yanqing888.me/script/fanye (easylistchina+easylist.txt: 5235) +# ||yanqing888.me/script/fanye (easylistchina.txt: 5211) .yanqing888.me/script/fanye -# ||yanjiao.com/zt/indexad/ (easylistchina+easylist.txt: 5234) +# ||yanjiao.com/zt/indexad/ (easylistchina.txt: 5210) .yanjiao.com/zt/indexad/ -# ||yam.com/ad_yam/ (easylistchina+easylist.txt: 5233) +# ||yam.com/ad_yam/ (easylistchina.txt: 5209) .yam.com/ad_yam/ -# ||yaerwen.com/5200js/59.js (easylistchina+easylist.txt: 5232) +# ||yaerwen.com/5200js/59.js (easylistchina.txt: 5208) .yaerwen.com/5200js/59\.js -# ||y80s.org:85/upload/468-60 (easylistchina+easylist.txt: 5231) +# ||y80s.org:85/upload/468-60 (easylistchina.txt: 5207) .y80s.org:85/upload/468-60 -# ||y80s.org:85/img/960x90.gif (easylistchina+easylist.txt: 5230) +# ||y80s.org:85/img/960x90.gif (easylistchina.txt: 5206) .y80s.org:85/img/960x90\.gif -# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina+easylist.txt: 5229) +# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina.txt: 5205) .y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32\.jpg -# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina+easylist.txt: 5228) +# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina.txt: 5204) .xz7.com/up/UploadPic/2014-5/201452517141272046\.gif -# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina+easylist.txt: 5227) +# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina.txt: 5203) .xz7.com/up/UploadPic/2014-5/201452517124193056\.gif -# ||xz7.com/js/xia (easylistchina+easylist.txt: 5226) +# ||xz7.com/js/xia (easylistchina.txt: 5202) .xz7.com/js/xia -# ||xz7.com/js/top2.js (easylistchina+easylist.txt: 5225) +# ||xz7.com/js/top2.js (easylistchina.txt: 5201) .xz7.com/js/top2\.js -# ||xz7.com/js/jctj.js (easylistchina+easylist.txt: 5224) +# ||xz7.com/js/jctj.js (easylistchina.txt: 5200) .xz7.com/js/jctj\.js -# ||xz7.com/js/gg_ (easylistchina+easylist.txt: 5223) +# ||xz7.com/js/gg_ (easylistchina.txt: 5199) .xz7.com/js/gg_ -# ||xz7.com/js/bann (easylistchina+easylist.txt: 5222) +# ||xz7.com/js/bann (easylistchina.txt: 5198) .xz7.com/js/bann -# ||xz7.com/js/3000.js (easylistchina+easylist.txt: 5221) +# ||xz7.com/js/3000.js (easylistchina.txt: 5197) .xz7.com/js/3000\.js -# ||xyzc.cn/js/pfgg.js (easylistchina+easylist.txt: 5220) +# ||xyzc.cn/js/pfgg.js (easylistchina.txt: 5196) .xyzc.cn/js/pfgg\.js -# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 5219) +# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina.txt: 5195) .xyfdcw.com.cn/userfiles/flash/ -# ||xxsy.net/js/xxsypop (easylistchina+easylist.txt: 5217) +# ||xxsy.net/js/xxsypop (easylistchina.txt: 5193) .xxsy.net/js/xxsypop -# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina+easylist.txt: 5216) +# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina.txt: 5192) .xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71\.jpg -# ||xxrt.net/goto/ (easylistchina+easylist.txt: 5215) -.xxrt.net/goto/ -# ||xxhh.com/xh.js (easylistchina+easylist.txt: 5214) +# ||xxhh.com/xh.js (easylistchina.txt: 5191) .xxhh.com/xh\.js -# ||xxdm.org/js/union/ (easylistchina+easylist.txt: 5213) +# ||xxdm.org/js/union/ (easylistchina.txt: 5190) .xxdm.org/js/union/ -# ||xxdm.com/js/union/ (easylistchina+easylist.txt: 5212) +# ||xxdm.com/js/union/ (easylistchina.txt: 5189) .xxdm.com/js/union/ -# ||xx978.info/images/468-60OK.gif (easylistchina+easylist.txt: 5211) +# ||xx978.info/images/468-60OK.gif (easylistchina.txt: 5188) .xx978.info/images/468-60OK\.gif -# ||xunzai.com/www/all_common.js (easylistchina+easylist.txt: 5210) +# ||xv98.com/js/hengfu (easylistchina.txt: 5187) +.xv98.com/js/hengfu +# ||xv98.com/js/daohang (easylistchina.txt: 5186) +.xv98.com/js/daohang +# ||xunzai.com/www/all_common.js (easylistchina.txt: 5185) .xunzai.com/www/all_common\.js -# ||xunzai.com/static/wwwimg/ (easylistchina+easylist.txt: 5209) +# ||xunzai.com/static/wwwimg/ (easylistchina.txt: 5184) .xunzai.com/static/wwwimg/ -# ||xunzai.com/static/www/ku360300.jpg (easylistchina+easylist.txt: 5208) +# ||xunzai.com/static/www/ku360300.jpg (easylistchina.txt: 5183) .xunzai.com/static/www/ku360300\.jpg -# ||xunying.com^*/ww (easylistchina+easylist.txt: 5207) +# ||xunying.com^*/ww (easylistchina.txt: 5182) .xunying.com/.*/ww -# ||xunleisousuo.com/byou.php (easylistchina+easylist.txt: 5206) +# ||xunleisousuo.com/byou.php (easylistchina.txt: 5181) .xunleisousuo.com/byou\.php -# ||xunleipu.com/a-d-j-s/ (easylistchina+easylist.txt: 5205) +# ||xunleipu.com/a-d-j-s/ (easylistchina.txt: 5180) .xunleipu.com/a-d-j-s/ -# ||xunleihd.com/image/*maose (easylistchina+easylist.txt: 5204) +# ||xunleihd.com/image/*maose (easylistchina.txt: 5179) .xunleihd.com/image/.*maose -# ||xunleihao.com/a-d-j-s/ (easylistchina+easylist.txt: 5203) +# ||xunleihao.com/a-d-j-s/ (easylistchina.txt: 5178) .xunleihao.com/a-d-j-s/ -# ||xun9u.com/css/js/text_link.js (easylistchina+easylist.txt: 5202) +# ||xun9u.com/css/js/text_link.js (easylistchina.txt: 5177) .xun9u.com/css/js/text_link\.js -# ||xue163.com/ajs/end (easylistchina+easylist.txt: 5201) +# ||xue163.com/ajs/end (easylistchina.txt: 5176) .xue163.com/ajs/end -# ||xs8.cn/xs8_stat.js (easylistchina+easylist.txt: 5200) +# ||xs8.cn/xs8_stat.js (easylistchina.txt: 5175) .xs8.cn/xs8_stat\.js -# ||xs.houyi.baofeng.net^ (easylistchina+easylist.txt: 5199) +# ||xs.houyi.baofeng.net^ (easylistchina.txt: 5174) .xs.houyi.baofeng.net -# ||xr8.me/2s.js (easylistchina+easylist.txt: 5198) -.xr8.me/2s\.js -# ||xpgod.com/UploadPic/xpgod/ (easylistchina+easylist.txt: 5196) +# ||xpgod.com/UploadPic/xpgod/ (easylistchina.txt: 5173) .xpgod.com/UploadPic/xpgod/ -# ||xpgod.com/bui/ (easylistchina+easylist.txt: 5195) +# ||xpgod.com/bui/ (easylistchina.txt: 5172) .xpgod.com/bui/ -# ||xp85.com/statics/js/all.js (easylistchina+easylist.txt: 5194) +# ||xp85.com/statics/js/all.js (easylistchina.txt: 5171) .xp85.com/statics/js/all\.js -# ||xp811.com/img/xitong.gif (easylistchina+easylist.txt: 5193) +# ||xp811.com/img/xitong.gif (easylistchina.txt: 5170) .xp811.com/img/xitong\.gif -# ||xp510.com/skin/wdsj.gif (easylistchina+easylist.txt: 5192) +# ||xp510.com/skin/wdsj.gif (easylistchina.txt: 5169) .xp510.com/skin/wdsj\.gif -# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina+easylist.txt: 5190) +# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina.txt: 5167) .xnnews.com.cn/templets/js/wzydl\.js -# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina+easylist.txt: 5189) +# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina.txt: 5166) .xnnews.com.cn/templets/js/smsline_double\.js -# ||xnnews.com.cn/Templets/js/*link (easylistchina+easylist.txt: 5188) +# ||xnnews.com.cn/Templets/js/*link (easylistchina.txt: 5165) .xnnews.com.cn/Templets/js/.*link -# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina+easylist.txt: 5187) +# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina.txt: 5164) .xnnews.com.cn/Templets/image/zyyy\.swf -# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina+easylist.txt: 5186) +# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina.txt: 5163) .xnnews.com.cn/templets/image/mpljj\.jpg -# ||xnnews.com.cn/templets/image/*gg (easylistchina+easylist.txt: 5185) +# ||xnnews.com.cn/templets/image/*gg (easylistchina.txt: 5162) .xnnews.com.cn/templets/image/.*gg -# ||xnnews.com.cn/images/yr_wsm.js (easylistchina+easylist.txt: 5184) +# ||xnnews.com.cn/images/yr_wsm.js (easylistchina.txt: 5161) .xnnews.com.cn/images/yr_wsm\.js -# ||xmfish.com/chanel/www/cpm.html (easylistchina+easylist.txt: 5183) +# ||xmfish.com/chanel/www/cpm.html (easylistchina.txt: 5160) .xmfish.com/chanel/www/cpm\.html -# ||xlpu.cc/adv/ (easylistchina+easylist.txt: 5182) +# ||xlpu.cc/adv/ (easylistchina.txt: 5159) .xlpu.cc/adv/ -# ||xkxs.org/js/tongji.js (easylistchina+easylist.txt: 5181) +# ||xkxs.org/js/tongji.js (easylistchina.txt: 5158) .xkxs.org/js/tongji\.js -# ||xkxs.org/js/tl (easylistchina+easylist.txt: 5180) +# ||xkxs.org/js/tl (easylistchina.txt: 5157) .xkxs.org/js/tl -# ||xkxs.org/js/bd (easylistchina+easylist.txt: 5179) +# ||xkxs.org/js/bd (easylistchina.txt: 5156) .xkxs.org/js/bd -# ||xkhouse.com/xkhouse/ggvert/ (easylistchina+easylist.txt: 5178) +# ||xkhouse.com/xkhouse/ggvert/ (easylistchina.txt: 5155) .xkhouse.com/xkhouse/ggvert/ -# ||xkhouse.com/display/displaygg/ (easylistchina+easylist.txt: 5177) +# ||xkhouse.com/display/displaygg/ (easylistchina.txt: 5154) .xkhouse.com/display/displaygg/ -# ||xizi.com/js/rotator.js (easylistchina+easylist.txt: 5176) +# ||xizi.com/js/rotator.js (easylistchina.txt: 5153) .xizi.com/js/rotator\.js -# ||xizi.com/a/ (easylistchina+easylist.txt: 5175) +# ||xizi.com/a/ (easylistchina.txt: 5152) .xizi.com/a/ -# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina+easylist.txt: 5174) +# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina.txt: 5151) .xizhongzi.net/bootstrap/dist/img/ -# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina+easylist.txt: 5173) +# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina.txt: 5150) .xiu8.com/baidu-tieba/.*&forum_name= -# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina+easylist.txt: 5172) +# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina.txt: 5149) .xitong8.com/theme/default/images/index_13\.jpg -# ||xitong8.com/theme/default/images/725x90.gif (easylistchina+easylist.txt: 5171) +# ||xitong8.com/theme/default/images/725x90.gif (easylistchina.txt: 5148) .xitong8.com/theme/default/images/725x90\.gif -# ||xitek.com/idzone/ (easylistchina+easylist.txt: 5170) +# ||xitek.com/idzone/ (easylistchina.txt: 5147) .xitek.com/idzone/ -# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina+easylist.txt: 5169) +# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina.txt: 5146) .xinyi.com/Template/Ant/Js/tonglang\.js -# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina+easylist.txt: 5168) +# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina.txt: 5145) .xinyi.com/Public/config/Couplet/Index41\.js -# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina+easylist.txt: 5167) +# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina.txt: 5144) .xinyi.com/Public/config/Couplet/Index40\.js -# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina+easylist.txt: 5166) +# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina.txt: 5143) .xinyi.com/Public/config/Couplet/Index39\.js -# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina+easylist.txt: 5165) +# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina.txt: 5142) .xinyi.com/Public/config/Couplet/Index100\.js -# ||xinminweekly.com.cn/images/index-985x93- (easylistchina+easylist.txt: 5164) +# ||xinminweekly.com.cn/images/index-985x93- (easylistchina.txt: 5141) .xinminweekly.com.cn/images/index-985x93- -# ||xinminweekly.com.cn/images/*-banner (easylistchina+easylist.txt: 5163) +# ||xinminweekly.com.cn/images/*-banner (easylistchina.txt: 5140) .xinminweekly.com.cn/images/.*-banner -# ||xinmin.cn/framepage/yqLink1.htm (easylistchina+easylist.txt: 5162) +# ||xinmin.cn/framepage/yqLink1.htm (easylistchina.txt: 5139) .xinmin.cn/framepage/yqLink1\.htm -# ||xinmin.cn/framepage/top (easylistchina+easylist.txt: 5161) +# ||xinmin.cn/framepage/top (easylistchina.txt: 5138) .xinmin.cn/framepage/top -# ||xinmin.cn/framepage/left1.htm (easylistchina+easylist.txt: 5160) +# ||xinmin.cn/framepage/left1.htm (easylistchina.txt: 5137) .xinmin.cn/framepage/left1\.htm -# ||xinmin.cn/framepage/foot1.htm (easylistchina+easylist.txt: 5159) +# ||xinmin.cn/framepage/foot1.htm (easylistchina.txt: 5136) .xinmin.cn/framepage/foot1\.htm -# ||xinku.tv/asd/ (easylistchina+easylist.txt: 5158) +# ||xinku.tv/asd/ (easylistchina.txt: 5135) .xinku.tv/asd/ -# ||xinjs.cn/2010/yf (easylistchina+easylist.txt: 5157) +# ||xinjs.cn/2010/yf (easylistchina.txt: 5134) .xinjs.cn/2010/yf -# ||xinji.org/js/float.js (easylistchina+easylist.txt: 5156) +# ||xinji.org/js/float.js (easylistchina.txt: 5133) .xinji.org/js/float\.js -# ||xinhuanet.com^*/ad_ (easylistchina+easylist.txt: 5154) +# ||xinhuanet.com^*/ad_ (easylistchina.txt: 5131) .xinhuanet.com/.*/ad_ -# ||xinhuanet.com/v2/ads/ (easylistchina+easylist.txt: 5153) +# ||xinhuanet.com/v2/ads/ (easylistchina.txt: 5130) .xinhuanet.com/v2/ads/ -# ||xinhuanet.com/v/script/coupletAd.js (easylistchina+easylist.txt: 5152) +# ||xinhuanet.com/v/script/coupletAd.js (easylistchina.txt: 5129) .xinhuanet.com/v/script/coupletAd\.js -# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina+easylist.txt: 5151) +# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina.txt: 5128) .xinhuanet.com/titlepic/111243292_title1n\.jpg -# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina+easylist.txt: 5150) +# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina.txt: 5127) .xinhuanet.com/statics/imags/zgyd_ -# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina+easylist.txt: 5149) +# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina.txt: 5126) .xinhuanet.com/plugs/szzc630x80\.jpg -# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina+easylist.txt: 5148) +# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina.txt: 5125) .xinhuanet.com/jjimages/jc/js/fla\.js -# ||xinhuanet.com/images2015/index980 (easylistchina+easylist.txt: 5147) +# ||xinhuanet.com/images2015/index980 (easylistchina.txt: 5124) .xinhuanet.com/images2015/index980 -# ||xinhuanet.com/images/ggdl.jpg (easylistchina+easylist.txt: 5146) +# ||xinhuanet.com/images/ggdl.jpg (easylistchina.txt: 5123) .xinhuanet.com/images/ggdl\.jpg -# ||xinhuanet.com/classad/ (easylistchina+easylist.txt: 5145) +# ||xinhuanet.com/classad/ (easylistchina.txt: 5122) .xinhuanet.com/classad/ -# ||xinhuanet.com/adxl/ (easylistchina+easylist.txt: 5144) +# ||xinhuanet.com/adxl/ (easylistchina.txt: 5121) .xinhuanet.com/adxl/ -# ||xinhuanet.com/2015ad/ (easylistchina+easylist.txt: 5143) +# ||xinhuanet.com/2015ad/ (easylistchina.txt: 5120) .xinhuanet.com/2015ad/ -# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina+easylist.txt: 5142) +# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina.txt: 5119) .xinhuanet.com/2015/html2015/xhfloatAdv\.html -# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina+easylist.txt: 5141) +# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina.txt: 5118) .xinhuanet.com/2014xb/html/if_gg\.htm -# ||xinhuanet.com/2014/imgad/ (easylistchina+easylist.txt: 5140) +# ||xinhuanet.com/2014/imgad/ (easylistchina.txt: 5117) .xinhuanet.com/2014/imgad/ -# ||xinhuanet.com/2014/iframe/AD- (easylistchina+easylist.txt: 5139) +# ||xinhuanet.com/2014/iframe/AD- (easylistchina.txt: 5116) .xinhuanet.com/2014/iframe/AD- -# ||xinhuanet.com/2013images/ltxl.gif (easylistchina+easylist.txt: 5138) +# ||xinhuanet.com/2013images/ltxl.gif (easylistchina.txt: 5115) .xinhuanet.com/2013images/ltxl\.gif -# ||xinhuanet.com/2013images/jfzj.swf (easylistchina+easylist.txt: 5137) +# ||xinhuanet.com/2013images/jfzj.swf (easylistchina.txt: 5114) .xinhuanet.com/2013images/jfzj\.swf -# ||xinhuanet.com/*/ad20 (easylistchina+easylist.txt: 5136) +# ||xinhuanet.com/*/ad20 (easylistchina.txt: 5113) .xinhuanet.com/.*/ad20 -# ||xinbiqi.com/js/pc_ads.js (easylistchina+easylist.txt: 5135) +# ||xinbiqi.com/js/pc_ads.js (easylistchina.txt: 5112) .xinbiqi.com/js/pc_ads\.js -# ||xilu.com/js/bd.js (easylistchina+easylist.txt: 5134) +# ||xilu.com/js/bd.js (easylistchina.txt: 5111) .xilu.com/js/bd\.js -# ||xilu.com/iframe/pagepic/ (easylistchina+easylist.txt: 5133) +# ||xilu.com/iframe/pagepic/ (easylistchina.txt: 5110) .xilu.com/iframe/pagepic/ -# ||xilinjie.com/partner/ (easylistchina+easylist.txt: 5132) +# ||xilinjie.com/partner/ (easylistchina.txt: 5109) .xilinjie.com/partner/ -# ||xigua110.com/a/ (easylistchina+easylist.txt: 5131) +# ||xigua110.com/a/ (easylistchina.txt: 5108) .xigua110.com/a/ -# ||xiazaiba.com/uploadfiles/ads/ (easylistchina+easylist.txt: 5130) +# ||xiazaiba.com/uploadfiles/ads/ (easylistchina.txt: 5107) .xiazaiba.com/uploadfiles/ads/ -# ||xiaopi.com/500/ (easylistchina+easylist.txt: 5129) +# ||xiaopi.com/500/ (easylistchina.txt: 5106) .xiaopi.com/500/ -# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina+easylist.txt: 5128) +# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina.txt: 5105) .xiaomengku.com/static/template/cms/v3/js/activity\.js -# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina+easylist.txt: 5126) +# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina.txt: 5103) .xiaoliaolianmeng.com/pic/weipinhui/ -# ||xiangmucangku.com/uploads/allimg/ (easylistchina+easylist.txt: 5124) +# ||xiangmucangku.com/uploads/allimg/ (easylistchina.txt: 5102) .xiangmucangku.com/uploads/allimg/ -# ||xiangai365.com/ad_js/ (easylistchina+easylist.txt: 5123) +# ||xiangai365.com/ad_js/ (easylistchina.txt: 5101) .xiangai365.com/ad_js/ -# ||xiancn.com^*/adv_content/ (easylistchina+easylist.txt: 5122) +# ||xiancn.com^*/adv_content/ (easylistchina.txt: 5100) .xiancn.com/.*/adv_content/ -# ||xiami.com/player/iframe-adm? (easylistchina+easylist.txt: 5121) +# ||xiami.com/player/iframe-adm? (easylistchina.txt: 5099) .xiami.com/player/iframe-adm\? -# ||xiaav.me/twdsb/ (easylistchina+easylist.txt: 5120) -.xiaav.me/twdsb/ -# ||xhub.cn/tanchu.js (easylistchina+easylist.txt: 5119) +# ||xhub.cn/tanchu.js (easylistchina.txt: 5098) .xhub.cn/tanchu\.js -# ||xgrb.cn/newad/ (easylistchina+easylist.txt: 5118) +# ||xgrb.cn/newad/ (easylistchina.txt: 5097) .xgrb.cn/newad/ -# ||xghylt.com/newad/ (easylistchina+easylist.txt: 5117) +# ||xghylt.com/newad/ (easylistchina.txt: 5096) .xghylt.com/newad/ -# ||xghylt.com/api.php?mod=ad&adid= (easylistchina+easylist.txt: 5116) +# ||xghylt.com/api.php?mod=ad&adid= (easylistchina.txt: 5095) .xghylt.com/api\.php\?mod=ad&adid= -# ||xemh.com/other/*_ads (easylistchina+easylist.txt: 5115) +# ||xemh.com/other/*_ads (easylistchina.txt: 5094) .xemh.com/other/.*_ads -# ||xdowns.com/js/lefttuijian.js (easylistchina+easylist.txt: 5114) +# ||xdowns.com/js/lefttuijian.js (easylistchina.txt: 5093) .xdowns.com/js/lefttuijian\.js -# ||xdowns.com/info.js (easylistchina+easylist.txt: 5113) +# ||xdowns.com/info.js (easylistchina.txt: 5092) .xdowns.com/info\.js -# ||xdowns.com/ggco.js (easylistchina+easylist.txt: 5112) +# ||xdowns.com/ggco.js (easylistchina.txt: 5091) .xdowns.com/ggco\.js -# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina+easylist.txt: 5111) +# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina.txt: 5090) .xdkb.net/index/temp/3813\.files/banner\.jpg -# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina+easylist.txt: 5110) +# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina.txt: 5089) .xdjishu.com/_uploadfile/image/20150722/20150722164052_98036\.gif -# ||xdf.cn/v4/js/leyus/ (easylistchina+easylist.txt: 5109) +# ||xdf.cn/v4/js/leyus/ (easylistchina.txt: 5088) .xdf.cn/v4/js/leyus/ -# ||xdf.cn/v4/js/adm- (easylistchina+easylist.txt: 5108) +# ||xdf.cn/v4/js/adm- (easylistchina.txt: 5087) .xdf.cn/v4/js/adm- -# ||xdf.cn/v4/images/index/ads/ (easylistchina+easylist.txt: 5107) +# ||xdf.cn/v4/images/index/ads/ (easylistchina.txt: 5086) .xdf.cn/v4/images/index/ads/ -# ||xdcad.net/source/plugin/disad/disad.js (easylistchina+easylist.txt: 5106) +# ||xdcad.net/source/plugin/disad/disad.js (easylistchina.txt: 5085) .xdcad.net/source/plugin/disad/disad\.js -# ||xczhibo.com/xml/ (easylistchina+easylist.txt: 5105) +# ||xczhibo.com/xml/ (easylistchina.txt: 5084) .xczhibo.com/xml/ -# ||xc.macd.cn^ (easylistchina+easylist.txt: 5104) +# ||xc.macd.cn^ (easylistchina.txt: 5083) .xc.macd.cn -# ||xb2s.com:8080/mjq.js (easylistchina+easylist.txt: 5103) +# ||xb2s.com:8080/mjq.js (easylistchina.txt: 5082) .xb2s.com:8080/mjq\.js -# ||x.jd.com/static/js/cpc.js (easylistchina+easylist.txt: 5102) +# ||xav*.com/js/float.js (easylistchina.txt: 5081) +.xav*./.*\.com/js/float\.js +.xav*.com/js/float\.js +# ||xav*.com/attachment/Mon_ (easylistchina.txt: 5080) +.xav*./.*\.com/attachment/Mon_ +.xav*.com/attachment/Mon_ +# ||xav*.com/ad1/ (easylistchina.txt: 5079) +.xav*./.*\.com/ad1/ +.xav*.com/ad1/ +# ||x.jd.com/static/js/cpc.js (easylistchina.txt: 5078) .x.jd.com/static/js/cpc\.js -# ||x.jd.com/static/js/auto.js (easylistchina+easylist.txt: 5101) +# ||x.jd.com/static/js/auto.js (easylistchina.txt: 5077) .x.jd.com/static/js/auto\.js -# ||wzbh.org/imgad/ (easylistchina+easylist.txt: 5099) +# ||wzbh.org/imgad/ (easylistchina.txt: 5075) .wzbh.org/imgad/ -# ||wyzu.cn/js/3.js (easylistchina+easylist.txt: 5098) +# ||wyzu.cn/js/3.js (easylistchina.txt: 5074) .wyzu.cn/js/3\.js -# ||wyh.tv/image/upload/ad/ (easylistchina+easylist.txt: 5097) +# ||wyh.tv/image/upload/ad/ (easylistchina.txt: 5073) .wyh.tv/image/upload/ad/ -# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina+easylist.txt: 5096) +# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina.txt: 5072) .wxrb.com/g/js/baidu\.cbjs\.m\.js -# ||wxdown.net/images/*.gif (easylistchina+easylist.txt: 5095) +# ||wxdown.net/images/*.gif (easylistchina.txt: 5071) .wxdown.net/images/.*\.gif -# ||wx.sina.com.cn/iframe/pdps/ (easylistchina+easylist.txt: 5094) +# ||wx.sina.com.cn/iframe/pdps/ (easylistchina.txt: 5070) .wx.sina.com.cn/iframe/pdps/ -# ||wx.56.com/youxitg/ (easylistchina+easylist.txt: 5093) +# ||wx.56.com/youxitg/ (easylistchina.txt: 5069) .wx.56.com/youxitg/ -# ||wwwcdn.kimiss.net/btn/ (easylistchina+easylist.txt: 5092) +# ||wwwcdn.kimiss.net/btn/ (easylistchina.txt: 5068) .wwwcdn.kimiss.net/btn/ -# ||www.111cn.net/pic/ (easylistchina+easylist.txt: 5090) +# ||www.111cn.net/pic/ (easylistchina.txt: 5066) .www.111cn.net/pic/ -# ||www-dnwx-com.anquanbao.cn/pic (easylistchina+easylist.txt: 5089) +# ||www-dnwx-com.anquanbao.cn/pic (easylistchina.txt: 5065) .www-dnwx-com.anquanbao.cn/pic -# ||wuyou.*/0000/banner.gif (easylistchina+easylist.txt: 5088) +# ||wuyou.*/0000/banner.gif (easylistchina.txt: 5064) .wuyou.*./(.*/)?0000/banner\.gif -# ||wuxi.cn/index.php?m=poster& (easylistchina+easylist.txt: 5087) +# ||wuxi.cn/index.php?m=poster& (easylistchina.txt: 5063) .wuxi.cn/index\.php\?m=poster& -# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina+easylist.txt: 5086) +# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina.txt: 5062) .wuseng.com/templets/default/statics/js/mm\.js -# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina+easylist.txt: 5085) +# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina.txt: 5061) .wumii.com/ext/widget/hot\.htm\?prefix=http://blog\.const\.net\.cn& -# ||wumii.cn/site_images/c/ (easylistchina+easylist.txt: 5084) +# ||wumii.cn/site_images/c/ (easylistchina.txt: 5060) .wumii.cn/site_images/c/ -# ||wuhan.net.cn/show.html (easylistchina+easylist.txt: 5083) +# ||wuhan.net.cn/show.html (easylistchina.txt: 5059) .wuhan.net.cn/show\.html -# ||wuhan.net.cn/guanggaojs/ (easylistchina+easylist.txt: 5082) +# ||wuhan.net.cn/guanggaojs/ (easylistchina.txt: 5058) .wuhan.net.cn/guanggaojs/ -# ||wudilong.com/ssb/include/js/php.js (easylistchina+easylist.txt: 5081) +# ||wudilong.com/ssb/include/js/php.js (easylistchina.txt: 5057) .wudilong.com/ssb/include/js/php\.js -# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina+easylist.txt: 5080) +# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina.txt: 5056) .wszhibo.com/xml/tvAdtext\.ashx -# ||wszhibo.com/Uploadfiles/*.gif (easylistchina+easylist.txt: 5079) +# ||wszhibo.com/Uploadfiles/*.gif (easylistchina.txt: 5055) .wszhibo.com/Uploadfiles/.*\.gif -# ||wpkg.org/my.js (easylistchina+easylist.txt: 5078) -.wpkg.org/my\.js -# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina+easylist.txt: 5077) +# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina.txt: 5054) .wpjam.qiniudn.com/wpjam/banner/.*g$ -# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina+easylist.txt: 5076) +# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina.txt: 5053) .woxiu.com/xapi/offsite_swf_more\.php\? -# ||woxiu.com/xapi/get_pre_config.php (easylistchina+easylist.txt: 5075) +# ||woxiu.com/xapi/get_pre_config.php (easylistchina.txt: 5052) .woxiu.com/xapi/get_pre_config\.php -# ||wowody.net/public/wowo/2345.html (easylistchina+easylist.txt: 5074) +# ||wowody.net/public/wowo/2345.html (easylistchina.txt: 5051) .wowody.net/public/wowo/2345\.html -# ||wowody.net/public/wowo/*play_ (easylistchina+easylist.txt: 5073) +# ||wowody.net/public/wowo/*play_ (easylistchina.txt: 5050) .wowody.net/public/wowo/.*play_ -# ||woshipm.com/wp-files/*qidian (easylistchina+easylist.txt: 5072) +# ||woshipm.com/wp-files/*qidian (easylistchina.txt: 5049) .woshipm.com/wp-files/.*qidian -# ||wo318.com/template/ (easylistchina+easylist.txt: 5071) +# ||wo318.com/template/ (easylistchina.txt: 5048) .wo318.com/template/ -# ||wo318.com/sjs/km/xixitv.js (easylistchina+easylist.txt: 5070) +# ||wo318.com/sjs/km/xixitv.js (easylistchina.txt: 5047) .wo318.com/sjs/km/xixitv\.js -# ||wo318.com/good/ (easylistchina+easylist.txt: 5069) +# ||wo318.com/good/ (easylistchina.txt: 5046) .wo318.com/good/ -# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina+easylist.txt: 5068) +# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina.txt: 5045) .wlnews.zjol.com.cn/wlrb/bbs/ -# ||wlnews.zjol.com.cn/bbs/ (easylistchina+easylist.txt: 5067) +# ||wlnews.zjol.com.cn/bbs/ (easylistchina.txt: 5044) .wlnews.zjol.com.cn/bbs/ -# ||wishdown.com/images/*.gif (easylistchina+easylist.txt: 5066) +# ||wishdown.com/images/*.gif (easylistchina.txt: 5043) .wishdown.com/images/.*\.gif -# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina+easylist.txt: 5064) +# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina.txt: 5041) .winba.me/wp-content/uploads/2015/10/image\.jpg -# ||winba.me/wp-content/uploads/*/QQ% (easylistchina+easylist.txt: 5063) +# ||winba.me/wp-content/uploads/*/QQ% (easylistchina.txt: 5040) .winba.me/wp-content/uploads/.*/QQ% -# ||winba.me/wp-content/uploads/*/300x300. (easylistchina+easylist.txt: 5062) +# ||winba.me/wp-content/uploads/*/300x300. (easylistchina.txt: 5039) .winba.me/wp-content/uploads/.*/300x300\. -# ||whsfzx.com/jj/ (easylistchina+easylist.txt: 5061) +# ||whsfzx.com/jj/ (easylistchina.txt: 5038) .whsfzx.com/jj/ -# ||whsfzx.com/img/top.js (easylistchina+easylist.txt: 5060) +# ||whsfzx.com/img/top.js (easylistchina.txt: 5037) .whsfzx.com/img/top\.js -# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina+easylist.txt: 5059) +# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina.txt: 5036) .whqyw.com/file/upload/201408/01/09-41-45-92-1\.jpg -# ||whnews.cn/wh_public/dl/ (easylistchina+easylist.txt: 5057) +# ||whnews.cn/wh_public/dl/ (easylistchina.txt: 5034) .whnews.cn/wh_public/dl/ -# ||whnews.cn/news/data/*/pf.js (easylistchina+easylist.txt: 5056) +# ||whnews.cn/news/data/*/pf.js (easylistchina.txt: 5033) .whnews.cn/news/data/.*/pf\.js -# ||whinfo.net.cn/ad20 (easylistchina+easylist.txt: 5055) +# ||whinfo.net.cn/ad20 (easylistchina.txt: 5032) .whinfo.net.cn/ad20 -# ||wgun.net/data/yahoo_ad.html (easylistchina+easylist.txt: 5054) +# ||wgun.net/data/yahoo_ad.html (easylistchina.txt: 5031) .wgun.net/data/yahoo_ad\.html -# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina+easylist.txt: 5053) +# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina.txt: 5030) .wfcmw.cn/cmw_2015/ad/flash/ -# ||weste.net/js/showpagead.js (easylistchina+easylist.txt: 5052) +# ||weste.net/js/showpagead.js (easylistchina.txt: 5029) .weste.net/js/showpagead\.js -# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina+easylist.txt: 5051) +# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina.txt: 5028) .wenyoutai.com/template/comiis_xwyt/ads/ -# ||wenxuecity.com/service/ad/ (easylistchina+easylist.txt: 5050) +# ||wenxuecity.com/service/ad/ (easylistchina.txt: 5027) .wenxuecity.com/service/ad/ -# ||wenwo.com^*/js/common/adAudit. (easylistchina+easylist.txt: 5049) +# ||wenwo.com^*/js/common/adAudit. (easylistchina.txt: 5026) .wenwo.com/.*/js/common/adAudit\. -# ||wenku8.com/banner.jpg (easylistchina+easylist.txt: 5048) +# ||wenku8.com/banner.jpg (easylistchina.txt: 5025) .wenku8.com/banner\.jpg -# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina+easylist.txt: 5047) +# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina.txt: 5024) .wendu.cn/templates/wzdsb/js/yanue\.pop\.js -# ||wendellyu.com/banner/ (easylistchina+easylist.txt: 5046) +# ||wendellyu.com/banner/ (easylistchina.txt: 5023) .wendellyu.com/banner/ -# ||weixin.qqday.com/js/tj.js (easylistchina+easylist.txt: 5045) +# ||weixin.qqday.com/js/tj.js (easylistchina.txt: 5022) .weixin.qqday.com/js/tj\.js -# ||weixin.qqday.com/js/rb.js (easylistchina+easylist.txt: 5044) +# ||weixin.qqday.com/js/rb.js (easylistchina.txt: 5021) .weixin.qqday.com/js/rb\.js -# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina+easylist.txt: 5043) +# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina.txt: 5020) .weiqitv.com/Uploads/20140721/53cca3becc50b\.jpg -# ||weiqitv.com/Uploads/185_440_ (easylistchina+easylist.txt: 5042) +# ||weiqitv.com/Uploads/185_440_ (easylistchina.txt: 5019) .weiqitv.com/Uploads/185_440_ -# ||weiqitv.com/Public/img/kt.jpg (easylistchina+easylist.txt: 5041) +# ||weiqitv.com/Public/img/kt.jpg (easylistchina.txt: 5018) .weiqitv.com/Public/img/kt\.jpg -# ||weidea.net/wp-content/host_ads.png (easylistchina+easylist.txt: 5040) +# ||weidea.net/wp-content/host_ads.png (easylistchina.txt: 5017) .weidea.net/wp-content/host_ads\.png -# ||weidea.net/wp-content/ads_img/ (easylistchina+easylist.txt: 5039) +# ||weidea.net/wp-content/ads_img/ (easylistchina.txt: 5016) .weidea.net/wp-content/ads_img/ -# ||weibo.com/images/ad_ (easylistchina+easylist.txt: 5038) +# ||weibo.com/images/ad_ (easylistchina.txt: 5015) .weibo.com/images/ad_ -# ||wei2008.com/js/t_win (easylistchina+easylist.txt: 5037) +# ||wei2008.com/js/t_win (easylistchina.txt: 5014) .wei2008.com/js/t_win -# ||wei2008.com/js/list_gg.js (easylistchina+easylist.txt: 5036) +# ||wei2008.com/js/list_gg.js (easylistchina.txt: 5013) .wei2008.com/js/list_gg\.js -# ||wei2008.com/js/index_ (easylistchina+easylist.txt: 5035) +# ||wei2008.com/js/index_ (easylistchina.txt: 5012) .wei2008.com/js/index_ -# ||wei2008.com/js/img (easylistchina+easylist.txt: 5034) +# ||wei2008.com/js/img (easylistchina.txt: 5011) .wei2008.com/js/img -# ||wei2008.com/js/down (easylistchina+easylist.txt: 5033) +# ||wei2008.com/js/down (easylistchina.txt: 5010) .wei2008.com/js/down -# ||wei2008.com/js/copyright (easylistchina+easylist.txt: 5032) +# ||wei2008.com/js/copyright (easylistchina.txt: 5009) .wei2008.com/js/copyright -# ||wei2008.com/js/960X90 (easylistchina+easylist.txt: 5031) +# ||wei2008.com/js/960X90 (easylistchina.txt: 5008) .wei2008.com/js/960X90 -# ||wehefei.com/uploadfile/flashad/ (easylistchina+easylist.txt: 5030) +# ||wehefei.com/uploadfile/flashad/ (easylistchina.txt: 5007) .wehefei.com/uploadfile/flashad/ -# ||wehefei.com/htmlphp/tmall/ (easylistchina+easylist.txt: 5029) +# ||wehefei.com/htmlphp/tmall/ (easylistchina.txt: 5006) .wehefei.com/htmlphp/tmall/ -# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina+easylist.txt: 5028) +# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina.txt: 5005) .weeiy.com/wp-content/uploads/2013/12/2345ie\.jpg -# ||webkaka.com/script/duilian_ (easylistchina+easylist.txt: 5027) +# ||webkaka.com/script/duilian_ (easylistchina.txt: 5004) .webkaka.com/script/duilian_ -# ||webjx.com/zanzhushang/ (easylistchina+easylist.txt: 5025) +# ||webjx.com/zanzhushang/ (easylistchina.txt: 5002) .webjx.com/zanzhushang/ -# ||webacg.com/http/js/1.js (easylistchina+easylist.txt: 5024) +# ||webacg.com/http/js/1.js (easylistchina.txt: 5001) .webacg.com/http/js/1\.js -# ||webacg.com/data/js/ (easylistchina+easylist.txt: 5023) +# ||webacg.com/data/js/ (easylistchina.txt: 5000) .webacg.com/data/js/ -# ||web.900.la^ (easylistchina+easylist.txt: 5022) +# ||web.900.la^ (easylistchina.txt: 4999) .web.900.la -# ||weathercn.com/m_mobile/ad_image/ (easylistchina+easylist.txt: 5021) +# ||weathercn.com/m_mobile/ad_image/ (easylistchina.txt: 4998) .weathercn.com/m_mobile/ad_image/ -# ||we54.com/poster/ (easylistchina+easylist.txt: 5020) +# ||we54.com/poster/ (easylistchina.txt: 4997) .we54.com/poster/ -# ||we54.com/54index_ad/ (easylistchina+easylist.txt: 5019) +# ||we54.com/54index_ad/ (easylistchina.txt: 4996) .we54.com/54index_ad/ -# ||wdown.cn/falala/ (easylistchina+easylist.txt: 5018) +# ||wdown.cn/falala/ (easylistchina.txt: 4995) .wdown.cn/falala/ -# ||wdlm.cn/img/ad1/ (easylistchina+easylist.txt: 5017) +# ||wdlm.cn/img/ad1/ (easylistchina.txt: 4994) .wdlm.cn/img/ad1/ -# ||wd147.com/templets/mm/js/cs.js (easylistchina+easylist.txt: 5016) +# ||wd147.com/templets/mm/js/cs.js (easylistchina.txt: 4993) .wd147.com/templets/mm/js/cs\.js -# ||wbzol.com/show/images/show.htm (easylistchina+easylist.txt: 5015) +# ||wbzol.com/show/images/show.htm (easylistchina.txt: 4992) .wbzol.com/show/images/show\.htm -# ||wanwan.sina.com.cn/third_party/ (easylistchina+easylist.txt: 5014) +# ||wanwan.sina.com.cn/third_party/ (easylistchina.txt: 4991) .wanwan.sina.com.cn/third_party/ -# ||wannianli.com.cn/style/ad_ (easylistchina+easylist.txt: 5013) +# ||wannianli.com.cn/style/ad_ (easylistchina.txt: 4990) .wannianli.com.cn/style/ad_ -# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina+easylist.txt: 5011) +# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina.txt: 4988) .wangpanwu.com/images/zhuolaoshigg\.gif -# ||wangpanwu.com/images/*guanggao (easylistchina+easylist.txt: 5010) +# ||wangpanwu.com/images/*guanggao (easylistchina.txt: 4987) .wangpanwu.com/images/.*guanggao -# ||wangjing.cn/upload/ftp/ad/ (easylistchina+easylist.txt: 5009) +# ||wangjing.cn/upload/ftp/ad/ (easylistchina.txt: 4986) .wangjing.cn/upload/ftp/ad/ -# ||wangjing.cn/images/js/YlFloat.js (easylistchina+easylist.txt: 5008) +# ||wangjing.cn/images/js/YlFloat.js (easylistchina.txt: 4985) .wangjing.cn/images/js/YlFloat\.js -# ||wangjing.cn/iframe/zhounian.php? (easylistchina+easylist.txt: 5007) +# ||wangjing.cn/iframe/zhounian.php? (easylistchina.txt: 4984) .wangjing.cn/iframe/zhounian\.php\? -# ||wangjing.cn*/upload/com/ (easylistchina+easylist.txt: 5006) +# ||wangjing.cn*/upload/com/ (easylistchina.txt: 4983) .wangjing.cn*./(.*/)?upload/com/ -# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina+easylist.txt: 5005) +# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina.txt: 4982) .wanghualang.com/wp-content/gallery/thumbnail/.*-ad\. -# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina+easylist.txt: 5004) +# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina.txt: 4981) .wanghualang.com/wp-content/gallery/resource/wp\.png -# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina+easylist.txt: 5003) +# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina.txt: 4980) .wanghualang.com/wp-content/gallery/resource/Aliyun- -# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina+easylist.txt: 5002) +# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina.txt: 4979) .wangdaizhijia.com/data/attachment/portal/ -# ||wan.sogou.com/static/fragment/ (easylistchina+easylist.txt: 5000) +# ||wan.sogou.com/static/fragment/ (easylistchina.txt: 4977) .wan.sogou.com/static/fragment/ -# ||wan.sogou.com/pop/ (easylistchina+easylist.txt: 4999) +# ||wan.sogou.com/pop/ (easylistchina.txt: 4976) .wan.sogou.com/pop/ -# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina+easylist.txt: 4996) +# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina.txt: 4973) .wa.kuwo.cn/lyrics/img/kwgg/ -# ||vvvdj.com/sms/ (easylistchina+easylist.txt: 4994) +# ||vvvdj.com/sms/ (easylistchina.txt: 4971) .vvvdj.com/sms/ -# ||vvshu.com/images/cp_ (easylistchina+easylist.txt: 4993) +# ||vvshu.com/images/cp_ (easylistchina.txt: 4970) .vvshu.com/images/cp_ -# ||vvpan.com^*/zsz (easylistchina+easylist.txt: 4992) +# ||vvpan.com^*/zsz (easylistchina.txt: 4969) .vvpan.com/.*/zsz -# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina+easylist.txt: 4991) +# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina.txt: 4968) .vvpan.com/templates/32666/imgs/down001\.gif -# ||vupload.duowan.com^ (easylistchina+easylist.txt: 4990) +# ||vupload.duowan.com^ (easylistchina.txt: 4967) .vupload.duowan.com -# ||voc.com.cn/Frame/qqms_cs.html (easylistchina+easylist.txt: 4988) +# ||voc.com.cn/Frame/qqms_cs.html (easylistchina.txt: 4965) .voc.com.cn/Frame/qqms_cs\.html -# ||voc.com.cn/adsClick/ (easylistchina+easylist.txt: 4987) +# ||voc.com.cn/adsClick/ (easylistchina.txt: 4964) .voc.com.cn/adsClick/ -# ||vnet.cn^*.html (easylistchina+easylist.txt: 4986) +# ||vnet.cn^*.html (easylistchina.txt: 4963) .vnet.cn/.*\.html -# ||vkeke.net/public/agd (easylistchina+easylist.txt: 4985) +# ||vkeke.net/public/agd (easylistchina.txt: 4962) .vkeke.net/public/agd -# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina+easylist.txt: 4984) +# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina.txt: 4961) .vjie.com/templates/lieqi/js/_banner\.js -# ||vista.tuwan.com/s.js (easylistchina+easylist.txt: 4983) +# ||vista.tuwan.com/s.js (easylistchina.txt: 4960) .vista.tuwan.com/s\.js -# ||vista.tgbusdata.cn/s.js (easylistchina+easylist.txt: 4982) +# ||vista.tgbusdata.cn/s.js (easylistchina.txt: 4959) .vista.tgbusdata.cn/s\.js -# ||vista.tgbus.com/s.js (easylistchina+easylist.txt: 4981) +# ||vista.tgbus.com/s.js (easylistchina.txt: 4958) .vista.tgbus.com/s\.js -# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina+easylist.txt: 4980) +# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina.txt: 4957) .vista.tgbus.com/data\.ashx[^\w%.-].*_SINGLE_SETJSONADSLOT -# ||vipcn.com/images/jk500.gif (easylistchina+easylist.txt: 4979) +# ||visit-japan.jp/parts/visitjapan_f35_170_170.jpg (easylistchina.txt: 4956) +.visit-japan.jp/parts/visitjapan_f35_170_170\.jpg +# ||vipcn.com/images/jk500.gif (easylistchina.txt: 4955) .vipcn.com/images/jk500\.gif -# ||vipcn.com/images/cfdh*.gif (easylistchina+easylist.txt: 4978) +# ||vipcn.com/images/cfdh*.gif (easylistchina.txt: 4954) .vipcn.com/images/cfdh.*\.gif -# ||vipcn.com/hezuo/ (easylistchina+easylist.txt: 4977) +# ||vipcn.com/hezuo/ (easylistchina.txt: 4953) .vipcn.com/hezuo/ -# ||vip.luanren.com/data/*.swf (easylistchina+easylist.txt: 4976) +# ||vip.luanren.com/data/*.swf (easylistchina.txt: 4952) .vip.luanren.com/data/.*\.swf -# ||videowood.tv/popjavascript (easylistchina+easylist.txt: 4975) +# ||videowood.tv/popjavascript (easylistchina.txt: 4951) .videowood.tv/popjavascript -# ||videowood.me/assets/js/popup.js (easylistchina+easylist.txt: 4974) +# ||videowood.me/assets/js/popup.js (easylistchina.txt: 4950) .videowood.me/assets/js/popup\.js -# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina+easylist.txt: 4973) +# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina.txt: 4949) .videospeedy.com/Res/images/wuy0u\.jpg -# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina+easylist.txt: 4972) +# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4948) .video.sdo.com/index\.php\?m=poster&c=index&a=show_poster&id= -# ||vhiphop.qiniudn.com/cloth (easylistchina+easylist.txt: 4971) +# ||vhiphop.qiniudn.com/cloth (easylistchina.txt: 4947) .vhiphop.qiniudn.com/cloth -# ||vgugu.com/iframes/xp- (easylistchina+easylist.txt: 4970) +# ||vgugu.com/iframes/xp- (easylistchina.txt: 4946) .vgugu.com/iframes/xp- -# ||verypsp.com:8081/sy.jpg (easylistchina+easylist.txt: 4969) +# ||verypsp.com:8081/sy.jpg (easylistchina.txt: 4945) .verypsp.com:8081/sy\.jpg -# ||veryim.net^*/1111 (easylistchina+easylist.txt: 4968) +# ||veryim.net^*/1111 (easylistchina.txt: 4944) .veryim.net/.*/1111 -# ||veryhuo.com/plus/js/ (easylistchina+easylist.txt: 4967) +# ||veryhuo.com/plus/js/ (easylistchina.txt: 4943) .veryhuo.com/plus/js/ -# ||vdisk.cn/img/dcr2.gif (easylistchina+easylist.txt: 4966) +# ||vdisk.cn/img/dcr2.gif (easylistchina.txt: 4942) .vdisk.cn/img/dcr2\.gif -# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina+easylist.txt: 4965) +# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina.txt: 4941) .vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49\.gif -# ||vas.funshion.com^ (easylistchina+easylist.txt: 4964) +# ||vas.funshion.com^ (easylistchina.txt: 4940) .vas.funshion.com -# ||vansky.com/index_files/*.gif (easylistchina+easylist.txt: 4963) +# ||vansky.com/index_files/*.gif (easylistchina.txt: 4939) .vansky.com/index_files/.*\.gif -# ||vansky.com/images/goldenflat2.jpg (easylistchina+easylist.txt: 4962) +# ||vansky.com/images/goldenflat2.jpg (easylistchina.txt: 4938) .vansky.com/images/goldenflat2\.jpg -# ||vansky.com/images/banner.gif (easylistchina+easylist.txt: 4961) +# ||vansky.com/images/banner.gif (easylistchina.txt: 4937) .vansky.com/images/banner\.gif -# ||vanpeople.com/images_site/adb/ (easylistchina+easylist.txt: 4960) +# ||vanpeople.com/images_site/adb/ (easylistchina.txt: 4936) .vanpeople.com/images_site/adb/ -# ||van698.com/api.php?mod=js&bid=369 (easylistchina+easylist.txt: 4958) +# ||van698.com/api.php?mod=js&bid=369 (easylistchina.txt: 4934) .van698.com/api\.php\?mod=js&bid=369 -# ||v8gay.com/apps/misc.php?action=advert& (easylistchina+easylist.txt: 4957) +# ||v8gay.com/apps/misc.php?action=advert& (easylistchina.txt: 4933) .v8gay.com/apps/misc\.php\?action=advert& -# ||v1.cn/cms/*/js/ad_new.js (easylistchina+easylist.txt: 4956) +# ||v1.cn/cms/*/js/ad_new.js (easylistchina.txt: 4932) .v1.cn/cms/.*/js/ad_new\.js -# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina+easylist.txt: 4955) +# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina.txt: 4931) .v.huanqiu.com/tres/xml/vda\.xml -# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina+easylist.txt: 4954) +# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina.txt: 4930) .v.beta.yinyuetai.com/swf/plugins_new\.xml\? -# ||v-56.com^ (easylistchina+easylist.txt: 4953) +# ||v-56.com^ (easylistchina.txt: 4929) .v-56.com -# ||uzzf.com/js/top_970.js (easylistchina+easylist.txt: 4952) +# ||uzzf.com/js/top_970.js (easylistchina.txt: 4928) .uzzf.com/js/top_970\.js -# ||uzzf.com/js/down_ (easylistchina+easylist.txt: 4951) +# ||uzzf.com/js/down_ (easylistchina.txt: 4927) .uzzf.com/js/down_ -# ||uzzf.com/js/all.js (easylistchina+easylist.txt: 4950) +# ||uzzf.com/js/all.js (easylistchina.txt: 4926) .uzzf.com/js/all\.js -# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina+easylist.txt: 4949) +# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina.txt: 4925) .uwants.com/dfp_forum\.php\?au=Uwants_Web_ -# ||uuu9.com/yoyo_ (easylistchina+easylist.txt: 4947) +# ||uuu9.com/yoyo_ (easylistchina.txt: 4923) .uuu9.com/yoyo_ -# ||uuu9.com/stat/shouye/ (easylistchina+easylist.txt: 4946) +# ||uuu9.com/stat/shouye/ (easylistchina.txt: 4922) .uuu9.com/stat/shouye/ -# ||uuu9.com/news/css/news_content_in.js (easylistchina+easylist.txt: 4945) +# ||uuu9.com/news/css/news_content_in.js (easylistchina.txt: 4921) .uuu9.com/news/css/news_content_in\.js -# ||uuu9.com/360adtest/ (easylistchina+easylist.txt: 4943) +# ||uuu9.com/360adtest/ (easylistchina.txt: 4919) .uuu9.com/360adtest/ -# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina+easylist.txt: 4942) +# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina.txt: 4918) .uschinapress.com/2015/0115/1421375153170\.gif -# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina+easylist.txt: 4941) +# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina.txt: 4917) .uschinapress.com/2014/0922/1411428929105\.png -# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina+easylist.txt: 4940) +# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina.txt: 4916) .uschinapress.com/2014/0702/1404347291600\.gif -# ||upload.jjxw.cn^*.swf (easylistchina+easylist.txt: 4937) +# ||upload.jjxw.cn^*.swf (easylistchina.txt: 4913) .upload.jjxw.cn/.*\.swf -# ||upantool.com/playing/ (easylistchina+easylist.txt: 4935) +# ||upantool.com/playing/ (easylistchina.txt: 4911) .upantool.com/playing/ -# ||upan.so/templates/default/images/sir.gif (easylistchina+easylist.txt: 4934) +# ||upan.so/templates/default/images/sir.gif (easylistchina.txt: 4910) .upan.so/templates/default/images/sir\.gif -# ||upan.cc/images/pay/ (easylistchina+easylist.txt: 4933) +# ||upan.cc/images/pay/ (easylistchina.txt: 4909) .upan.cc/images/pay/ -# ||upaiyun.com/css88/*/728 (easylistchina+easylist.txt: 4932) +# ||upaiyun.com/css88/*/728 (easylistchina.txt: 4908) .upaiyun.com/css88/.*/728 -# ||upaiyun.com/css88/*/680 (easylistchina+easylist.txt: 4931) +# ||upaiyun.com/css88/*/680 (easylistchina.txt: 4907) .upaiyun.com/css88/.*/680 -# ||upaiyun.com/css88/*/250 (easylistchina+easylist.txt: 4930) +# ||upaiyun.com/css88/*/250 (easylistchina.txt: 4906) .upaiyun.com/css88/.*/250 -# ||upaiyun.com/css88/*/1008 (easylistchina+easylist.txt: 4929) +# ||upaiyun.com/css88/*/1008 (easylistchina.txt: 4905) .upaiyun.com/css88/.*/1008 -# ||up.hiao.com^ (easylistchina+easylist.txt: 4927) +# ||up.hiao.com^ (easylistchina.txt: 4903) .up.hiao.com -# ||untitled.dwstatic.com^ (easylistchina+easylist.txt: 4926) +# ||untitled.dwstatic.com^ (easylistchina.txt: 4902) .untitled.dwstatic.com -# ||union.china.com.cn^ (easylistchina+easylist.txt: 4925) +# ||union.china.com.cn^ (easylistchina.txt: 4901) .union.china.com.cn -# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina+easylist.txt: 4924) +# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina.txt: 4900) .uisdc.com/wp-content/uploads/2013/08/sitestar -# ||uho.com.tw/kid-ad/ (easylistchina+easylist.txt: 4922) +# ||uho.com.tw/kid-ad/ (easylistchina.txt: 4898) .uho.com.tw/kid-ad/ -# ||uho.com.tw/images/rosewater.jpg (easylistchina+easylist.txt: 4921) +# ||uho.com.tw/images/rosewater.jpg (easylistchina.txt: 4897) .uho.com.tw/images/rosewater\.jpg -# ||uedfa.net/Static/imgs/affiliate/ (easylistchina+easylist.txt: 4920) +# ||uedfa.net/Static/imgs/affiliate/ (easylistchina.txt: 4896) .uedfa.net/Static/imgs/affiliate/ -# ||udn.com^*/ad/ (easylistchina+easylist.txt: 4919) +# ||udn.com^*/ad/ (easylistchina.txt: 4895) .udn.com/.*/ad/ -# ||udn.com/SSI/neckFrame (easylistchina+easylist.txt: 4918) +# ||udn.com/SSI/neckFrame (easylistchina.txt: 4894) .udn.com/SSI/neckFrame -# ||udn.com/common/iframe/ (easylistchina+easylist.txt: 4917) +# ||udn.com/common/iframe/ (easylistchina.txt: 4893) .udn.com/common/iframe/ -# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina+easylist.txt: 4916) +# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina.txt: 4892) .udn.com/2010MAIN/inc/t03-CMS\.html -# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina+easylist.txt: 4915) +# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina.txt: 4891) .udn.com.tw/upf/2014_sales/travel/cheesead\.html -# ||ucbug.com/templets/default/js/sharp.js (easylistchina+easylist.txt: 4914) +# ||ucbug.com/templets/default/js/sharp.js (easylistchina.txt: 4890) .ucbug.com/templets/default/js/sharp\.js -# ||ucbug.com/js/tongl.js (easylistchina+easylist.txt: 4913) +# ||ucbug.com/js/tongl.js (easylistchina.txt: 4889) .ucbug.com/js/tongl\.js -# ||ucbug.com/js/tlys.js (easylistchina+easylist.txt: 4912) +# ||ucbug.com/js/tlys.js (easylistchina.txt: 4888) .ucbug.com/js/tlys\.js -# ||ucbug.com/js/left.js (easylistchina+easylist.txt: 4911) +# ||ucbug.com/js/left.js (easylistchina.txt: 4887) .ucbug.com/js/left\.js -# ||uc8.cc/_style/2013/js/all.js (easylistchina+easylist.txt: 4910) +# ||uc8.cc/_style/2013/js/all.js (easylistchina.txt: 4886) .uc8.cc/_style/2013/js/all\.js -# ||u8xs.com/js/yuedu_ (easylistchina+easylist.txt: 4909) +# ||u8xs.com/js/yuedu_ (easylistchina.txt: 4885) .u8xs.com/js/yuedu_ -# ||u8xs.com/js/box_ (easylistchina+easylist.txt: 4908) +# ||u8xs.com/js/box_ (easylistchina.txt: 4884) .u8xs.com/js/box_ -# ||u148.net/images/sponsor- (easylistchina+easylist.txt: 4907) +# ||u148.net/images/sponsor- (easylistchina.txt: 4883) .u148.net/images/sponsor- -# ||u.riju.com/click.php (easylistchina+easylist.txt: 4906) +# ||u.riju.com/click.php (easylistchina.txt: 4882) .u.riju.com/click\.php -# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina+easylist.txt: 4905) +# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina.txt: 4881) .u.ctrip.com/showcaseadvertisementsit/ -# ||u.cnzol.com^ (easylistchina+easylist.txt: 4904) +# ||u.cnzol.com^ (easylistchina.txt: 4880) .u.cnzol.com -# ||u.63kc.com^ (easylistchina+easylist.txt: 4903) +# ||u.63kc.com^ (easylistchina.txt: 4879) .u.63kc.com -# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina+easylist.txt: 4902) +# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina.txt: 4878) .tzfdc.com/Images/09/flv/flv_index\.js -# ||tzfdc.com/fdcSell/ (easylistchina+easylist.txt: 4901) +# ||tzfdc.com/fdcSell/ (easylistchina.txt: 4877) .tzfdc.com/fdcSell/ -# ||tzfdc.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 4900) +# ||tzfdc.com.cn/userfiles/flash/ (easylistchina.txt: 4876) .tzfdc.com.cn/userfiles/flash/ -# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina+easylist.txt: 4899) +# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina.txt: 4875) .tyyhhdf.com/upload/1/148781/images/2015.*\.gif -# ||ty121.cn/IAA/ (easylistchina+easylist.txt: 4898) +# ||ty121.cn/IAA/ (easylistchina.txt: 4874) .ty121.cn/IAA/ -# ||txzqw.com/js/float.js (easylistchina+easylist.txt: 4897) +# ||txzqw.com/js/float.js (easylistchina.txt: 4873) .txzqw.com/js/float\.js -# ||txtyd.com/js/*box.js (easylistchina+easylist.txt: 4896) +# ||txtyd.com/js/*box.js (easylistchina.txt: 4872) .txtyd.com/js/.*box\.js -# ||txtbbs.com/data/txtbbs/ (easylistchina+easylist.txt: 4895) +# ||txtbbs.com/data/txtbbs/ (easylistchina.txt: 4871) .txtbbs.com/data/txtbbs/ -# ||txooo.com^*/zdl.jpg (easylistchina+easylist.txt: 4894) +# ||txooo.com^*/zdl.jpg (easylistchina.txt: 4870) .txooo.com/.*/zdl\.jpg -# ||txooo.com^*/ydl.jpg (easylistchina+easylist.txt: 4893) +# ||txooo.com^*/ydl.jpg (easylistchina.txt: 4869) .txooo.com/.*/ydl\.jpg -# ||txahz.com/static/image/tp/ (easylistchina+easylist.txt: 4892) +# ||txahz.com/static/image/tp/ (easylistchina.txt: 4868) .txahz.com/static/image/tp/ -# ||twunbbs.com/images/ (easylistchina+easylist.txt: 4891) +# ||twunbbs.com/images/ (easylistchina.txt: 4867) .twunbbs.com/images/ -# ||twfuwu.info^*.gif (easylistchina+easylist.txt: 4890) +# ||twfuwu.info^*.gif (easylistchina.txt: 4866) .twfuwu.info/.*\.gif -# ||twavtv.com/js/jquery.colorbox (easylistchina+easylist.txt: 4889) +# ||twavtv.com/js/jquery.colorbox (easylistchina.txt: 4865) .twavtv.com/js/jquery\.colorbox -# ||tw.buy.yahoo.com/?z= (easylistchina+easylist.txt: 4887) +# ||tw.buy.yahoo.com/?z= (easylistchina.txt: 4863) .tw.buy.yahoo.com/\?z= -# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina+easylist.txt: 4886) +# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina.txt: 4862) .tw.beanfun.com/bfweb/NEW/commonlogin -# ||tvnmg.com/banner/ (easylistchina+easylist.txt: 4885) +# ||tvnmg.com/banner/ (easylistchina.txt: 4861) .tvnmg.com/banner/ -# ||tvf4.com/1/mugua.js (easylistchina+easylist.txt: 4883) +# ||tvf4.com/1/mugua.js (easylistchina.txt: 4859) .tvf4.com/1/mugua\.js -# ||tv6080.com/qqt/ (easylistchina+easylist.txt: 4882) +# ||tv6080.com/qqt/ (easylistchina.txt: 4858) .tv6080.com/qqt/ -# ||tv6080.com/520/index.htm (easylistchina+easylist.txt: 4881) +# ||tv6080.com/520/index.htm (easylistchina.txt: 4857) .tv6080.com/520/index\.htm -# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina+easylist.txt: 4880) +# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina.txt: 4856) .tv380.com/ovp/ovp_home/.*/adi/ -# ||tuwan.com/templet/lol/temp/ (easylistchina+easylist.txt: 4879) +# ||tuwan.com/templet/lol/temp/ (easylistchina.txt: 4855) .tuwan.com/templet/lol/temp/ -# ||tui22.com/images/g.js (easylistchina+easylist.txt: 4877) +# ||tui22.com/images/g.js (easylistchina.txt: 4854) .tui22.com/images/g\.js -# ||tui22.com/images/dibu.js (easylistchina+easylist.txt: 4876) +# ||tui22.com/images/dibu.js (easylistchina.txt: 4853) .tui22.com/images/dibu\.js -# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina+easylist.txt: 4875) +# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina.txt: 4852) .tui18.com/source/plugin/yl_curtain/template/yl_curtain\. -# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina+easylist.txt: 4874) +# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina.txt: 4851) .tuhaoylw.com/upload/1/18591636/images/.*\.gif -# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina+easylist.txt: 4873) +# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina.txt: 4850) .tudouui.com/tspecial/assets/PauseContainer\.swf -# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina+easylist.txt: 4872) +# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4849) .tucao.tv/index\.php\?m=poster&c=index&a=show_poster&id= -# ||tucao.cc/index.php?m=poster& (easylistchina+easylist.txt: 4871) +# ||tucao.cc/index.php?m=poster& (easylistchina.txt: 4848) .tucao.cc/index\.php\?m=poster& -# ||tuan.cs090.com/gettuan.php? (easylistchina+easylist.txt: 4870) +# ||tuan.cs090.com/gettuan.php? (easylistchina.txt: 4847) .tuan.cs090.com/gettuan\.php\? -# ||ttxcpa.com/ttxcpa.gif (easylistchina+easylist.txt: 4869) -.ttxcpa.com/ttxcpa\.gif -# ||ttrar.com/js/ (easylistchina+easylist.txt: 4868) +# ||ttrar.com/js/ (easylistchina.txt: 4846) .ttrar.com/js/ -# ||ttkdex.com/ttkdweb/page/image/query (easylistchina+easylist.txt: 4867) +# ||ttkdex.com/ttkdweb/page/image/query (easylistchina.txt: 4845) .ttkdex.com/ttkdweb/page/image/query -# ||ttcy.com/style/image/gg_ (easylistchina+easylist.txt: 4866) +# ||ttcy.com/style/image/gg_ (easylistchina.txt: 4844) .ttcy.com/style/image/gg_ -# ||tt7z.com/js/ (easylistchina+easylist.txt: 4865) +# ||tt7z.com/js/ (easylistchina.txt: 4843) .tt7z.com/js/ -# ||tt1069.com/bbs/zgg_ (easylistchina+easylist.txt: 4864) +# ||tt1069.com/bbs/zgg_ (easylistchina.txt: 4842) .tt1069.com/bbs/zgg_ -# ||tp.sgcn.com^ (easylistchina+easylist.txt: 4861) +# ||tp.sgcn.com^ (easylistchina.txt: 4840) .tp.sgcn.com -# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina+easylist.txt: 4860) +# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina.txt: 4839) .totuwo.com/wp-content/uploads/20.*\.gif -# ||totheglory.im/pic/ttg_ (easylistchina+easylist.txt: 4859) +# ||totheglory.im/pic/ttg_ (easylistchina.txt: 4838) .totheglory.im/pic/ttg_ -# ||totheglory.im/pic/ttg- (easylistchina+easylist.txt: 4858) +# ||totheglory.im/pic/ttg- (easylistchina.txt: 4837) .totheglory.im/pic/ttg- -# ||totheglory.im/pic/fangtuo.jpg (easylistchina+easylist.txt: 4857) +# ||totheglory.im/pic/fangtuo.jpg (easylistchina.txt: 4836) .totheglory.im/pic/fangtuo\.jpg -# ||tonnn.com/promotion2/*.js (easylistchina+easylist.txt: 4855) +# ||tonnn.com/promotion2/*.js (easylistchina.txt: 4834) .tonnn.com/promotion2/.*\.js -# ||tongzhuo100.com/img/jianzhi.gif (easylistchina+easylist.txt: 4854) +# ||tongzhuo100.com/img/jianzhi.gif (easylistchina.txt: 4833) .tongzhuo100.com/img/jianzhi\.gif -# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina+easylist.txt: 4852) +# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina.txt: 4831) .tompda.com/tupian/2013-03-15/300\.jpg -# ||tompda.com/images/2014/800*.gif (easylistchina+easylist.txt: 4851) +# ||tompda.com/images/2014/800*.gif (easylistchina.txt: 4830) .tompda.com/images/2014/800.*\.gif -# ||tompda.com/dev/bbsadv/ (easylistchina+easylist.txt: 4850) +# ||tompda.com/dev/bbsadv/ (easylistchina.txt: 4829) .tompda.com/dev/bbsadv/ -# ||tom.com/templets/tomwq/ad/ (easylistchina+easylist.txt: 4849) +# ||tom.com/templets/tomwq/ad/ (easylistchina.txt: 4828) .tom.com/templets/tomwq/ad/ -# ||tntdown.com/News/js/C_ (easylistchina+easylist.txt: 4848) +# ||toastoven.net/cdn/adx/ (easylistchina.txt: 4827) +.toastoven.net/cdn/adx/ +# ||tntdown.com/News/js/C_ (easylistchina.txt: 4826) .tntdown.com/News/js/C_ -# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina+easylist.txt: 4847) +# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina.txt: 4825) .tmbbs.com/data/attachment/portal/.*\.swf -# ||tk.504pk.com^ (easylistchina+easylist.txt: 4846) +# ||tk.504pk.com^ (easylistchina.txt: 4824) .tk.504pk.com -# ||tjzan.com/wxpic/asianyi.gif (easylistchina+easylist.txt: 4845) +# ||tjzan.com/wxpic/asianyi.gif (easylistchina.txt: 4823) .tjzan.com/wxpic/asianyi\.gif -# ||tingvoa.com/images/top_600_80.js (easylistchina+easylist.txt: 4843) +# ||tingvoa.com/images/top_600_80.js (easylistchina.txt: 4821) .tingvoa.com/images/top_600_80\.js -# ||tingvoa.com/images/*img.js (easylistchina+easylist.txt: 4842) +# ||tingvoa.com/images/*img.js (easylistchina.txt: 4820) .tingvoa.com/images/.*img\.js -# ||tingroom.com/tingroom/ad/ (easylistchina+easylist.txt: 4841) +# ||tingroom.com/tingroom/ad/ (easylistchina.txt: 4819) .tingroom.com/tingroom/ad/ -# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina+easylist.txt: 4840) +# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina.txt: 4818) .tingroom.com/skin/pt/images/tingroombanner\.gif -# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina+easylist.txt: 4839) +# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina.txt: 4817) .tingroom.com/skin/dy/images/enread\.jpg -# ||tingroom.com/skin/dy/images/2400200 (easylistchina+easylist.txt: 4838) +# ||tingroom.com/skin/dy/images/2400200 (easylistchina.txt: 4816) .tingroom.com/skin/dy/images/2400200 -# ||tingroom.com/skin/*/js/ad_ (easylistchina+easylist.txt: 4837) +# ||tingroom.com/skin/*/js/ad_ (easylistchina.txt: 4815) .tingroom.com/skin/.*/js/ad_ -# ||tingroom.com/images/z923.js (easylistchina+easylist.txt: 4836) +# ||tingroom.com/images/z923.js (easylistchina.txt: 4814) .tingroom.com/images/z923\.js -# ||tingroom.com/images/qsbdc.gif (easylistchina+easylist.txt: 4835) +# ||tingroom.com/images/qsbdc.gif (easylistchina.txt: 4813) .tingroom.com/images/qsbdc\.gif -# ||tingroom.com/images/hy*.js (easylistchina+easylist.txt: 4834) +# ||tingroom.com/images/hy*.js (easylistchina.txt: 4812) .tingroom.com/images/hy.*\.js -# ||tingroom.com/file/A*.js (easylistchina+easylist.txt: 4833) +# ||tingroom.com/file/A*.js (easylistchina.txt: 4811) .tingroom.com/file/A.*\.js -# ||tingchina.com/js/dp468 (easylistchina+easylist.txt: 4832) +# ||tingchina.com/js/dp468 (easylistchina.txt: 4810) .tingchina.com/js/dp468 -# ||tingchina.com/js/allad.js (easylistchina+easylist.txt: 4831) +# ||tingchina.com/js/allad.js (easylistchina.txt: 4809) .tingchina.com/js/allad\.js -# ||tingchina.com/js/990 (easylistchina+easylist.txt: 4830) +# ||tingchina.com/js/990 (easylistchina.txt: 4808) .tingchina.com/js/990 -# ||tingchina.com/js/760 (easylistchina+easylist.txt: 4829) +# ||tingchina.com/js/760 (easylistchina.txt: 4807) .tingchina.com/js/760 -# ||tingchina.com/js/*220- (easylistchina+easylist.txt: 4828) +# ||tingchina.com/js/*220- (easylistchina.txt: 4806) .tingchina.com/js/.*220- -# ||timedg.com/hfhtml/baiduad.html? (easylistchina+easylist.txt: 4827) +# ||timedg.com/hfhtml/baiduad.html? (easylistchina.txt: 4805) .timedg.com/hfhtml/baiduad\.html\? -# ||tigtag.com/ttad/ (easylistchina+easylist.txt: 4826) +# ||tigtag.com/ttad/ (easylistchina.txt: 4804) .tigtag.com/ttad/ -# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina+easylist.txt: 4825) +# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina.txt: 4803) .tigtag.com/styles/phpcms/js/tigtag/ads\.js -# ||tigtag.com/r/Adv/ (easylistchina+easylist.txt: 4824) +# ||tigtag.com/r/Adv/ (easylistchina.txt: 4802) .tigtag.com/r/Adv/ -# ||tigtag.com/images/pic1/ (easylistchina+easylist.txt: 4823) +# ||tigtag.com/images/pic1/ (easylistchina.txt: 4801) .tigtag.com/images/pic1/ -# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina+easylist.txt: 4822) +# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina.txt: 4800) .tigerbrokers.com/activity/quotation/cnbeta/ -# ||tiexue.net/tsetforiph/ (easylistchina+easylist.txt: 4821) +# ||tiexue.net/tsetforiph/ (easylistchina.txt: 4799) .tiexue.net/tsetforiph/ -# ||tiexue.net/test*.aspx (easylistchina+easylist.txt: 4820) +# ||tiexue.net/test*.aspx (easylistchina.txt: 4798) .tiexue.net/test.*\.aspx -# ||tiexue.net/domain-policy/ (easylistchina+easylist.txt: 4819) +# ||tiexue.net/post2gg/ (easylistchina.txt: 4797) +.tiexue.net/post2gg/ +# ||tiexue.net/domain-policy/ (easylistchina.txt: 4796) .tiexue.net/domain-policy/ -# ||tietuku.com/bd75a2d8aa0d4c86.jpg (easylistchina+easylist.txt: 4815) -.tietuku.com/bd75a2d8aa0d4c86\.jpg -# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina+easylist.txt: 4814) +# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina.txt: 4792) .tietuku.com/0bb9bfe57636dc55\.jpg -# ||tieba.baidu.com/f/urlcheck? (easylistchina+easylist.txt: 4813) +# ||tieba.baidu.com/f/urlcheck? (easylistchina.txt: 4791) .tieba.baidu.com/f/urlcheck\? -# ||tibet.news.cn/zhuye/images/wangqun (easylistchina+easylist.txt: 4812) +# ||tibet.news.cn/zhuye/images/wangqun (easylistchina.txt: 4790) .tibet.news.cn/zhuye/images/wangqun -# ||tianyaui.com/qy/adsame/ads.js (easylistchina+easylist.txt: 4811) +# ||tianyaui.com/qy/adsame/ads.js (easylistchina.txt: 4789) .tianyaui.com/qy/adsame/ads\.js -# ||tianyaui.com/gamify/broadcast/js/ (easylistchina+easylist.txt: 4810) +# ||tianyaui.com/gamify/broadcast/js/ (easylistchina.txt: 4788) .tianyaui.com/gamify/broadcast/js/ -# ||tianya.cn/images/ad950x90.jpg (easylistchina+easylist.txt: 4809) +# ||tianya.cn/images/ad950x90.jpg (easylistchina.txt: 4787) .tianya.cn/images/ad950x90\.jpg -# ||tiantiandy.com/ad-js/ (easylistchina+easylist.txt: 4808) +# ||tiantiandy.com/ad-js/ (easylistchina.txt: 4786) .tiantiandy.com/ad-js/ -# ||tiantian.tv/js/banner.js (easylistchina+easylist.txt: 4806) +# ||tiantian.tv/js/banner.js (easylistchina.txt: 4784) .tiantian.tv/js/banner\.js -# ||tiantian.tv/api/autosda.php (easylistchina+easylist.txt: 4805) +# ||tiantian.tv/api/autosda.php (easylistchina.txt: 4783) .tiantian.tv/api/autosda\.php -# ||tiansin.com/wp-adsense/ (easylistchina+easylist.txt: 4804) +# ||tiansin.com/wp-adsense/ (easylistchina.txt: 4782) .tiansin.com/wp-adsense/ -# ||tianshui.com.cn/yb.html (easylistchina+easylist.txt: 4803) +# ||tianshui.com.cn/yb.html (easylistchina.txt: 4781) .tianshui.com.cn/yb\.html -# ||tianshui.com.cn/sd.swf (easylistchina+easylist.txt: 4802) +# ||tianshui.com.cn/sd.swf (easylistchina.txt: 4780) .tianshui.com.cn/sd\.swf -# ||tianshui.com.cn/Scripts/AC_ (easylistchina+easylist.txt: 4801) +# ||tianshui.com.cn/Scripts/AC_ (easylistchina.txt: 4779) .tianshui.com.cn/Scripts/AC_ -# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina+easylist.txt: 4800) +# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina.txt: 4778) .tianshui.com.cn/newimages/xhglj\.swf -# ||tianshui.com.cn/newbg.jpg (easylistchina+easylist.txt: 4799) +# ||tianshui.com.cn/newbg.jpg (easylistchina.txt: 4777) .tianshui.com.cn/newbg\.jpg -# ||tianshi2.com/images/ (easylistchina+easylist.txt: 4798) +# ||tianshi2.com/images/ (easylistchina.txt: 4776) .tianshi2.com/images/ -# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina+easylist.txt: 4797) +# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina.txt: 4775) .tianqi.com/templates/huoche/js/hcgg\.js -# ||tianqi.com/static/js/gg (easylistchina+easylist.txt: 4796) +# ||tianqi.com/static/js/gg (easylistchina.txt: 4774) .tianqi.com/static/js/gg -# ||tianqi.com/js/gg.js (easylistchina+easylist.txt: 4795) +# ||tianqi.com/js/gg.js (easylistchina.txt: 4773) .tianqi.com/js/gg\.js -# ||tianmu.com/js/qq.js (easylistchina+easylist.txt: 4794) +# ||tianmu.com/js/qq.js (easylistchina.txt: 4772) .tianmu.com/js/qq\.js -# ||tianmu.com/abbsd/ (easylistchina+easylist.txt: 4793) +# ||tianmu.com/abbsd/ (easylistchina.txt: 4771) .tianmu.com/abbsd/ -# ||tianjinwe.com/together/szbz/ (easylistchina+easylist.txt: 4792) +# ||tianjinwe.com/together/szbz/ (easylistchina.txt: 4770) .tianjinwe.com/together/szbz/ -# ||tianjinwe.com/images/qssx/ (easylistchina+easylist.txt: 4791) +# ||tianjinwe.com/images/qssx/ (easylistchina.txt: 4769) .tianjinwe.com/images/qssx/ -# ||tianjimedia.com/s?z= (easylistchina+easylist.txt: 4790) +# ||tianjimedia.com/s?z= (easylistchina.txt: 4768) .tianjimedia.com/s\?z= -# ||thisav.com/windowfiles/dhtmlwindow (easylistchina+easylist.txt: 4789) +# ||thisav.com/windowfiles/dhtmlwindow (easylistchina.txt: 4767) .thisav.com/windowfiles/dhtmlwindow -# ||thisav.com/js/popup.js (easylistchina+easylist.txt: 4788) -.thisav.com/js/popup\.js -# ||thisav.com/js/*float (easylistchina+easylist.txt: 4787) +# ||thisav.com/js/*float (easylistchina.txt: 4766) .thisav.com/js/.*float -# ||thethirdmedia.com/a1/*960x (easylistchina+easylist.txt: 4786) +# ||thethirdmedia.com/a1/*960x (easylistchina.txt: 4765) .thethirdmedia.com/a1/.*960x -# ||tgbus.com/sf/taobao/ (easylistchina+easylist.txt: 4785) +# ||tgbus.com/sf/taobao/ (easylistchina.txt: 4764) .tgbus.com/sf/taobao/ -# ||tgbus.com/search/article_endcontent_google.htm (easylistchina+easylist.txt: 4784) +# ||tgbus.com/search/article_endcontent_google.htm (easylistchina.txt: 4763) .tgbus.com/search/article_endcontent_google\.htm -# ||tg.delnapb.com^ (easylistchina+easylist.txt: 4783) +# ||tg.delnapb.com^ (easylistchina.txt: 4762) .tg.delnapb.com -# ||tfg2.com/images/upfile/AD/ (easylistchina+easylist.txt: 4782) +# ||tfg2.com/images/upfile/AD/ (easylistchina.txt: 4761) .tfg2.com/images/upfile/AD/ -# ||tf.360.cn^ (easylistchina+easylist.txt: 4781) +# ||tf.360.cn^ (easylistchina.txt: 4760) .tf.360.cn -# ||techweb.com.cn^*aliyun (easylistchina+easylist.txt: 4780) +# ||techweb.com.cn^*aliyun (easylistchina.txt: 4759) .techweb.com.cn/.*aliyun -# ||tcmap.com.cn/js/b_ (easylistchina+easylist.txt: 4779) +# ||tcmap.com.cn/js/b_ (easylistchina.txt: 4758) .tcmap.com.cn/js/b_ -# ||tc.cn/news/images/right.jpg (easylistchina+easylist.txt: 4778) +# ||tc.cn/news/images/right.jpg (easylistchina.txt: 4757) .tc.cn/news/images/right\.jpg -# ||tc.cn/news/images/h.jpg (easylistchina+easylist.txt: 4777) +# ||tc.cn/news/images/h.jpg (easylistchina.txt: 4756) .tc.cn/news/images/h\.jpg -# ||tc.cn/g/upload/ (easylistchina+easylist.txt: 4776) +# ||tc.cn/g/upload/ (easylistchina.txt: 4755) .tc.cn/g/upload/ -# ||tc.cn/g/dl.ashx? (easylistchina+easylist.txt: 4775) +# ||tc.cn/g/dl.ashx? (easylistchina.txt: 4754) .tc.cn/g/dl\.ashx\? -# ||tc.cn/ad123/ (easylistchina+easylist.txt: 4774) +# ||tc.cn/ad123/ (easylistchina.txt: 4753) .tc.cn/ad123/ -# ||tbib.org/kona/ (easylistchina+easylist.txt: 4773) -.tbib.org/kona/ -# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina+easylist.txt: 4772) +# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina.txt: 4752) .tbcdn.cn/mm/tanxssp-custom/sina_ -# ||taoyoudu.com/img/top.jpg (easylistchina+easylist.txt: 4770) +# ||taoyoudu.com/img/top.jpg (easylistchina.txt: 4750) .taoyoudu.com/img/top\.jpg -# ||taohuazu.tw/tool/ (easylistchina+easylist.txt: 4769) +# ||taohuazu.tw/tool/ (easylistchina.txt: 4749) .taohuazu.tw/tool/ -# ||taohuazu.net/6/*.gif (easylistchina+easylist.txt: 4768) -.taohuazu.net/6/.*\.gif -# ||taohua.me/tool/taohuazu.js (easylistchina+easylist.txt: 4767) +# ||taohua.me/tool/taohuazu.js (easylistchina.txt: 4748) .taohua.me/tool/taohuazu\.js -# ||taoguba.com.cn/js/tgbduilian (easylistchina+easylist.txt: 4766) +# ||taoguba.com.cn/js/tgbduilian (easylistchina.txt: 4747) .taoguba.com.cn/js/tgbduilian -# ||taoguba.com.cn/js/hezuo/ (easylistchina+easylist.txt: 4765) +# ||taoguba.com.cn/js/hezuo/ (easylistchina.txt: 4746) .taoguba.com.cn/js/hezuo/ -# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina+easylist.txt: 4764) +# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina.txt: 4745) .taoguba.com.cn/img/2015/08/26/oh5555jfx48p\.jpg -# ||taodake.com/taodake_img/Images/union/ (easylistchina+easylist.txt: 4763) +# ||taodake.com/taodake_img/Images/union/ (easylistchina.txt: 4744) .taodake.com/taodake_img/Images/union/ -# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina+easylist.txt: 4760) +# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina.txt: 4741) .taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450\.jpg_670x670\.jpg -# ||talkforex.com/data/attachment/portal/ (easylistchina+easylist.txt: 4758) +# ||talkforex.com/data/attachment/portal/ (easylistchina.txt: 4739) .talkforex.com/data/attachment/portal/ -# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina+easylist.txt: 4757) +# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina.txt: 4738) .taizhou.com.cn/.*/3890\.files/xchad\.jpg -# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina+easylist.txt: 4756) +# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina.txt: 4737) .taizhou.com.cn/52\.files/c1_20150423\.swf -# ||taizhou.com.cn/52.files/a*20 (easylistchina+easylist.txt: 4755) +# ||taizhou.com.cn/52.files/a*20 (easylistchina.txt: 4736) .taizhou.com.cn/52\.files/a.*20 -# ||taiwandaily.net/uploadimages% (easylistchina+easylist.txt: 4754) +# ||taiwandaily.net/uploadimages% (easylistchina.txt: 4735) .taiwandaily.net/uploadimages% -# ||taiwan.cn/images/tw_ad_ (easylistchina+easylist.txt: 4753) +# ||taiwan.cn/images/tw_ad_ (easylistchina.txt: 4734) .taiwan.cn/images/tw_ad_ -# ||taihe.net/js/ad (easylistchina+easylist.txt: 4752) +# ||taihe.net/js/ad (easylistchina.txt: 4733) .taihe.net/js/ad -# ||taihainet.com/biz/ (easylistchina+easylist.txt: 4751) +# ||taihainet.com/biz/ (easylistchina.txt: 4732) .taihainet.com/biz/ -# ||t259.net/js/click_showclose.js (easylistchina+easylist.txt: 4750) +# ||t259.net/js/click_showclose.js (easylistchina.txt: 4731) .t259.net/js/click_showclose\.js -# ||t259.net/images/*.gif (easylistchina+easylist.txt: 4749) +# ||t259.net/images/*.gif (easylistchina.txt: 4730) .t259.net/images/.*\.gif -# ||t.58xs.com/hot/ (easylistchina+easylist.txt: 4748) +# ||t.58xs.com/hot/ (easylistchina.txt: 4729) .t.58xs.com/hot/ -# ||sztaofang.com/out/Out_BBs.asp (easylistchina+easylist.txt: 4747) +# ||sztaofang.com/out/Out_BBs.asp (easylistchina.txt: 4728) .sztaofang.com/out/Out_BBs\.asp -# ||szhk.com/include/taobao (easylistchina+easylist.txt: 4744) +# ||szhk.com/include/taobao (easylistchina.txt: 4725) .szhk.com/include/taobao -# ||szhk.com/iframe/ (easylistchina+easylist.txt: 4743) +# ||szhk.com/iframe/ (easylistchina.txt: 4724) .szhk.com/iframe/ -# ||szhk.com/ads/ (easylistchina+easylist.txt: 4742) +# ||szhk.com/ads/ (easylistchina.txt: 4723) .szhk.com/ads/ -# ||szhk.com/565.jpg (easylistchina+easylist.txt: 4741) +# ||szhk.com/565.jpg (easylistchina.txt: 4722) .szhk.com/565\.jpg -# ||sz1001.net^*/soft_*.js (easylistchina+easylist.txt: 4740) +# ||sz1001.net^*/soft_*.js (easylistchina.txt: 4721) .sz1001.net/.*/soft_.*\.js -# ||sz1001.net/ab1/index*.js (easylistchina+easylist.txt: 4739) +# ||sz1001.net/ab1/index*.js (easylistchina.txt: 4720) .sz1001.net/ab1/index.*\.js -# ||sz.zj.cn/2013-dh.asp (easylistchina+easylist.txt: 4737) +# ||sz.zj.cn/2013-dh.asp (easylistchina.txt: 4718) .sz.zj.cn/2013-dh\.asp -# ||synacast.com^ (easylistchina+easylist.txt: 4736) +# ||synacast.com^ (easylistchina.txt: 4717) .synacast.com -# ||sydneytoday.com/sponsor/ (easylistchina+easylist.txt: 4735) +# ||sydneytoday.com/sponsor/ (easylistchina.txt: 4716) .sydneytoday.com/sponsor/ -# ||syd.com.cn/pic_index/lalian (easylistchina+easylist.txt: 4734) +# ||syd.com.cn/pic_index/lalian (easylistchina.txt: 4715) .syd.com.cn/pic_index/lalian -# ||syd.com.cn/pic_index/duilian (easylistchina+easylist.txt: 4733) +# ||syd.com.cn/pic_index/duilian (easylistchina.txt: 4714) .syd.com.cn/pic_index/duilian -# ||sy.ln.cn/08gg/ (easylistchina+easylist.txt: 4732) +# ||sy.ln.cn/08gg/ (easylistchina.txt: 4713) .sy.ln.cn/08gg/ -# ||sxrom.com/images/zz.jpg (easylistchina+easylist.txt: 4731) +# ||sxrom.com/images/zz.jpg (easylistchina.txt: 4712) .sxrom.com/images/zz\.jpg -# ||sxrom.com/images/download/top (easylistchina+easylist.txt: 4730) +# ||sxrom.com/images/download/top (easylistchina.txt: 4711) .sxrom.com/images/download/top -# ||sxrom.com/images/9.js (easylistchina+easylist.txt: 4729) +# ||sxrom.com/images/9.js (easylistchina.txt: 4710) .sxrom.com/images/9\.js -# ||sxrom.com/images/79.gif (easylistchina+easylist.txt: 4728) +# ||sxrom.com/images/79.gif (easylistchina.txt: 4709) .sxrom.com/images/79\.gif -# ||sxrb.com/upload/js/xww_ (easylistchina+easylist.txt: 4727) +# ||sxrb.com/upload/js/xww_ (easylistchina.txt: 4708) .sxrb.com/upload/js/xww_ -# ||sx566.com^*/zsz (easylistchina+easylist.txt: 4726) +# ||sx566.com^*/zsz (easylistchina.txt: 4707) .sx566.com/.*/zsz -# ||sx566.com/ads/ (easylistchina+easylist.txt: 4725) +# ||sx566.com/ads/ (easylistchina.txt: 4706) .sx566.com/ads/ -# ||supfree.net/images/otop.js (easylistchina+easylist.txt: 4724) +# ||supfree.net/images/otop.js (easylistchina.txt: 4705) .supfree.net/images/otop\.js -# ||super.kdnet.net^ (easylistchina+easylist.txt: 4723) +# ||super.kdnet.net^ (easylistchina.txt: 4704) .super.kdnet.net -# ||super.cat898.com^ (easylistchina+easylist.txt: 4722) +# ||super.cat898.com^ (easylistchina.txt: 4703) .super.cat898.com -# ||suimeng.com/js/html/yuedu (easylistchina+easylist.txt: 4721) +# ||suimeng.com/js/html/yuedu (easylistchina.txt: 4702) .suimeng.com/js/html/yuedu -# ||sufile.com/jsa/ (easylistchina+easylist.txt: 4720) +# ||sufile.com/jsa/ (easylistchina.txt: 4701) .sufile.com/jsa/ -# ||sudupan.com^*.gif (easylistchina+easylist.txt: 4719) +# ||sudupan.com^*.gif (easylistchina.txt: 4700) .sudupan.com/.*\.gif -# ||sudupan.com/380.jpg (easylistchina+easylist.txt: 4718) +# ||sudupan.com/380.jpg (easylistchina.txt: 4699) .sudupan.com/380\.jpg -# ||sucaijiayuan.com/uploads/ad/ (easylistchina+easylist.txt: 4717) +# ||sucaijiayuan.com/uploads/ad/ (easylistchina.txt: 4698) .sucaijiayuan.com/uploads/ad/ -# ||sub.powerapple.com^ (easylistchina+easylist.txt: 4716) +# ||sub.powerapple.com^ (easylistchina.txt: 4697) .sub.powerapple.com -# ||su.bdimg.com/static/dspui/js/ (easylistchina+easylist.txt: 4715) +# ||su.bdimg.com/static/dspui/js/ (easylistchina.txt: 4696) .su.bdimg.com/static/dspui/js/ -# ||strtv.cn/publicimg/sitelink/ (easylistchina+easylist.txt: 4714) +# ||strtv.cn/publicimg/sitelink/ (easylistchina.txt: 4695) .strtv.cn/publicimg/sitelink/ -# ||storm.mg/ad? (easylistchina+easylist.txt: 4712) +# ||storm.mg/ad? (easylistchina.txt: 4693) .storm.mg/ad\? -# ||storetorrent.org/static/js/best (easylistchina+easylist.txt: 4711) +# ||storetorrent.org/static/js/best (easylistchina.txt: 4692) .storetorrent.org/static/js/best -# ||storetorrent.org/static/best/795X60.gif (easylistchina+easylist.txt: 4710) +# ||storetorrent.org/static/best/795X60.gif (easylistchina.txt: 4691) .storetorrent.org/static/best/795X60\.gif -# ||stockstar.com/*DUILIAN&t= (easylistchina+easylist.txt: 4709) +# ||stockstar.com/*DUILIAN&t= (easylistchina.txt: 4690) .stockstar.com/.*DUILIAN&t= -# ||sto.cn*/temp/adv.jpg (easylistchina+easylist.txt: 4708) +# ||sto.cn*/temp/adv.jpg (easylistchina.txt: 4689) .sto.cn*./(.*/)?temp/adv\.jpg -# ||stnn.cc/images/xy/yy.swf (easylistchina+easylist.txt: 4707) +# ||stnn.cc/images/xy/yy.swf (easylistchina.txt: 4688) .stnn.cc/images/xy/yy\.swf -# ||stnn.cc/images/xy/y0*.jpg (easylistchina+easylist.txt: 4706) +# ||stnn.cc/images/xy/y0*.jpg (easylistchina.txt: 4687) .stnn.cc/images/xy/y0.*\.jpg -# ||stnn.cc/images/xy/640_100/ (easylistchina+easylist.txt: 4705) +# ||stnn.cc/images/xy/640_100/ (easylistchina.txt: 4686) .stnn.cc/images/xy/640_100/ -# ||stnn.cc/images/xy/*80px (easylistchina+easylist.txt: 4702) +# ||stnn.cc/images/xy/*80px (easylistchina.txt: 4683) .stnn.cc/images/xy/.*80px -# ||stheadline.com^*/right_promo.js (easylistchina+easylist.txt: 4701) +# ||stheadline.com^*/right_promo.js (easylistchina.txt: 4682) .stheadline.com/.*/right_promo\.js -# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina+easylist.txt: 4699) +# ||steamcn.com/img/lancai_ (easylistchina.txt: 4680) +.steamcn.com/img/lancai_ +# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina.txt: 4679) .steachs.com/wp-content/uploads/2015/12/nippon\.gif -# ||stcn.com/common/flash/aigu.swf (easylistchina+easylist.txt: 4698) +# ||stcn.com/common/flash/aigu.swf (easylistchina.txt: 4678) .stcn.com/common/flash/aigu\.swf -# ||stats.chinaz.com/tool_img/ (easylistchina+easylist.txt: 4697) +# ||stats.chinaz.com/tool_img/ (easylistchina.txt: 4677) .stats.chinaz.com/tool_img/ -# ||stats.chinaz.com/tool/ (easylistchina+easylist.txt: 4696) +# ||stats.chinaz.com/tool/ (easylistchina.txt: 4676) .stats.chinaz.com/tool/ -# ||static.zongheng.com^*/index_r_b.js (easylistchina+easylist.txt: 4695) +# ||static.zongheng.com^*/index_r_b.js (easylistchina.txt: 4675) .static.zongheng.com/.*/index_r_b\.js -# ||static.zongheng.com/upload/zhds/ (easylistchina+easylist.txt: 4694) +# ||static.zongheng.com/upload/zhds/ (easylistchina.txt: 4674) .static.zongheng.com/upload/zhds/ -# ||static.zongheng.com/upload/hzds/ (easylistchina+easylist.txt: 4693) +# ||static.zongheng.com/upload/hzds/ (easylistchina.txt: 4673) .static.zongheng.com/upload/hzds/ -# ||static.zongheng.com/upload/ad/ (easylistchina+easylist.txt: 4692) +# ||static.zongheng.com/upload/ad/ (easylistchina.txt: 4672) .static.zongheng.com/upload/ad/ -# ||static.yujiehenaishang.com^ (easylistchina+easylist.txt: 4691) -.static.yujiehenaishang.com -# ||static.wenxiu.com/js/top.js (easylistchina+easylist.txt: 4690) +# ||static.wenxiu.com/js/top.js (easylistchina.txt: 4671) .static.wenxiu.com/js/top\.js -# ||static.tianyaui.com^*/stat_20080313.js (easylistchina+easylist.txt: 4689) +# ||static.tianyaui.com^*/stat_20080313.js (easylistchina.txt: 4670) .static.tianyaui.com/.*/stat_20080313\.js -# ||static.imanke.com/imanke/pigbbs.js (easylistchina+easylist.txt: 4688) +# ||static.imanke.com/imanke/pigbbs.js (easylistchina.txt: 4669) .static.imanke.com/imanke/pigbbs\.js -# ||static.imanke.com/imanke/m/ (easylistchina+easylist.txt: 4687) +# ||static.imanke.com/imanke/m/ (easylistchina.txt: 4668) .static.imanke.com/imanke/m/ -# ||static.fzdm.com/top (easylistchina+easylist.txt: 4686) +# ||static.fzdm.com/top (easylistchina.txt: 4667) .static.fzdm.com/top -# ||static.fzdm.com/ispop.js (easylistchina+easylist.txt: 4685) +# ||static.fzdm.com/ispop.js (easylistchina.txt: 4666) .static.fzdm.com/ispop\.js -# ||static.fzdm.com/foot (easylistchina+easylist.txt: 4684) +# ||static.fzdm.com/foot (easylistchina.txt: 4665) .static.fzdm.com/foot -# ||static.doyouhike.net/partner/ (easylistchina+easylist.txt: 4683) +# ||static.doyouhike.net/partner/ (easylistchina.txt: 4664) .static.doyouhike.net/partner/ -# ||static.d.lecai.com/js/*m.js (easylistchina+easylist.txt: 4682) +# ||static.d.lecai.com/js/*m.js (easylistchina.txt: 4663) .static.d.lecai.com/js/.*m\.js -# ||static.colayun.com/images/vip.png (easylistchina+easylist.txt: 4681) +# ||static.colayun.com/images/vip.png (easylistchina.txt: 4662) .static.colayun.com/images/vip\.png -# ||static.coladrive.com/images/vip.png (easylistchina+easylist.txt: 4680) +# ||static.coladrive.com/images/vip.png (easylistchina.txt: 4661) .static.coladrive.com/images/vip\.png -# ||static.cnbetacdn.com/320-50.jpg (easylistchina+easylist.txt: 4679) -.static.cnbetacdn.com/320-50\.jpg -# ||static.aizhan.com/jsa/ (easylistchina+easylist.txt: 4678) +# ||static.aizhan.com/jsa/ (easylistchina.txt: 4660) .static.aizhan.com/jsa/ -# ||starnnews.com/banner/ (easylistchina+easylist.txt: 4677) +# ||starnnews.com/banner/ (easylistchina.txt: 4659) .starnnews.com/banner/ -# ||starbaby.cn/bookconnector/ (easylistchina+easylist.txt: 4676) +# ||starbaby.cn/bookconnector/ (easylistchina.txt: 4658) .starbaby.cn/bookconnector/ -# ||starbaby.cn/adconnector/ (easylistchina+easylist.txt: 4675) +# ||starbaby.cn/adconnector/ (easylistchina.txt: 4657) .starbaby.cn/adconnector/ -# ||ssnn.net^*-200-250.jpg (easylistchina+easylist.txt: 4674) +# ||ssnn.net^*-200-250.jpg (easylistchina.txt: 4656) .ssnn.net/.*-200-250\.jpg -# ||srzc.com^*/zwfjs/ (easylistchina+easylist.txt: 4673) +# ||srzc.com^*/zwfjs/ (easylistchina.txt: 4655) .srzc.com/.*/zwfjs/ -# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina+easylist.txt: 4672) +# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina.txt: 4654) .srzc.com/templets/srxw/img/000ad\.jpg -# ||srzc.com/js/gelao/ (easylistchina+easylist.txt: 4671) +# ||srzc.com/js/gelao/ (easylistchina.txt: 4653) .srzc.com/js/gelao/ -# ||srzc.com/js/Adsjs/ (easylistchina+easylist.txt: 4670) +# ||srzc.com/js/Adsjs/ (easylistchina.txt: 4652) .srzc.com/js/Adsjs/ -# ||srzc.com/images/*.swf (easylistchina+easylist.txt: 4669) +# ||srzc.com/images/*.swf (easylistchina.txt: 4651) .srzc.com/images/.*\.swf -# ||sportsv.net/dist/ads/ (easylistchina+easylist.txt: 4667) +# ||sportsv.net/dist/ads/ (easylistchina.txt: 4649) .sportsv.net/dist/ads/ -# ||spn.com.cn/media/jackmm.js (easylistchina+easylist.txt: 4666) +# ||spn.com.cn/media/jackmm.js (easylistchina.txt: 4648) .spn.com.cn/media/jackmm\.js -# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina+easylist.txt: 4665) +# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina.txt: 4647) .spn.com.cn/admin_new/imgs/b2\.jpg -# ||spbonow.com/js/float.js (easylistchina+easylist.txt: 4663) +# ||spbonow.com/js/float.js (easylistchina.txt: 4645) .spbonow.com/js/float\.js -# ||spbonow.com/images/fyt.gif (easylistchina+easylist.txt: 4662) +# ||spbonow.com/images/fyt.gif (easylistchina.txt: 4644) .spbonow.com/images/fyt\.gif -# ||sozi.cn/templets/sozi/js/js.js (easylistchina+easylist.txt: 4661) +# ||sozi.cn/templets/sozi/js/js.js (easylistchina.txt: 4643) .sozi.cn/templets/sozi/js/js\.js -# ||soxia.cc/img/baoyue*.gif (easylistchina+easylist.txt: 4660) +# ||soxia.cc/img/baoyue*.gif (easylistchina.txt: 4642) .soxia.cc/img/baoyue.*\.gif -# ||southmoney.com/page/top (easylistchina+easylist.txt: 4659) +# ||southmoney.com/page/top (easylistchina.txt: 4641) .southmoney.com/page/top -# ||southmoney.com/page/inc/ (easylistchina+easylist.txt: 4658) +# ||southmoney.com/page/inc/ (easylistchina.txt: 4640) .southmoney.com/page/inc/ -# ||source.qunar.com/site/images/wns/ (easylistchina+easylist.txt: 4657) +# ||source.qunar.com/site/images/wns/ (easylistchina.txt: 4639) .source.qunar.com/site/images/wns/ -# ||soso.com/baike/js/ad_ (easylistchina+easylist.txt: 4656) +# ||soso.com/baike/js/ad_ (easylistchina.txt: 4638) .soso.com/baike/js/ad_ -# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina+easylist.txt: 4655) +# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina.txt: 4637) .sootoo.com/son_media/msg/2010/11/16/30324\.jpg -# ||sooopu.com/js/contentad330.js (easylistchina+easylist.txt: 4654) +# ||sooopu.com/js/contentad330.js (easylistchina.txt: 4636) .sooopu.com/js/contentad330\.js -# ||sooopu.com/js/*950.js (easylistchina+easylist.txt: 4653) +# ||sooopu.com/js/*950.js (easylistchina.txt: 4635) .sooopu.com/js/.*950\.js -# ||sooopu.com/images/web/cg328/cg.js (easylistchina+easylist.txt: 4652) +# ||sooopu.com/images/web/cg328/cg.js (easylistchina.txt: 4634) .sooopu.com/images/web/cg328/cg\.js -# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina+easylist.txt: 4651) +# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina.txt: 4632) .sohu.com/interaction/get/getListByVidForVrs\.do\? -# ||sohu.com/adgtr/ (easylistchina+easylist.txt: 4650) +# ||sohu.com/adgtr/ (easylistchina.txt: 4631) .sohu.com/adgtr/ -# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina+easylist.txt: 4649) +# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina.txt: 4630) .sohu.com.cn/ppp/bms/bms\.popup\. -# ||sogou.com/skins/images/skinlist_ad. (easylistchina+easylist.txt: 4648) +# ||sogou.com/skins/images/skinlist_ad. (easylistchina.txt: 4629) .sogou.com/skins/images/skinlist_ad\. -# ||sogou.com/images/galaxy.jpg (easylistchina+easylist.txt: 4647) +# ||sogou.com/images/galaxy.jpg (easylistchina.txt: 4628) .sogou.com/images/galaxy\.jpg -# ||softhy.net/hp/ (easylistchina+easylist.txt: 4646) +# ||softhy.net/hp/ (easylistchina.txt: 4627) .softhy.net/hp/ -# ||soft711.com/2013/ (easylistchina+easylist.txt: 4645) +# ||soft711.com/2013/ (easylistchina.txt: 4626) .soft711.com/2013/ -# ||soft.mumayi.net/js/ (easylistchina+easylist.txt: 4644) +# ||soft.mumayi.net/js/ (easylistchina.txt: 4625) .soft.mumayi.net/js/ -# ||soft.mumayi.net/images/download.gif (easylistchina+easylist.txt: 4643) +# ||soft.mumayi.net/images/download.gif (easylistchina.txt: 4624) .soft.mumayi.net/images/download\.gif -# ||soaspx.com/images/iiszj.gif (easylistchina+easylist.txt: 4642) +# ||soaspx.com/images/iiszj.gif (easylistchina.txt: 4623) .soaspx.com/images/iiszj\.gif -# ||soaspx.com/images/hws.gif (easylistchina+easylist.txt: 4641) +# ||soaspx.com/images/hws.gif (easylistchina.txt: 4622) .soaspx.com/images/hws\.gif -# ||so100.cn/images/newshead.htm (easylistchina+easylist.txt: 4640) +# ||so100.cn/images/newshead.htm (easylistchina.txt: 4621) .so100.cn/images/newshead\.htm -# ||so100.cn/images/a*.js (easylistchina+easylist.txt: 4639) +# ||so100.cn/images/a*.js (easylistchina.txt: 4620) .so100.cn/images/a.*\.js -# ||so.open.163.com/v/list.htm?pid= (easylistchina+easylist.txt: 4638) +# ||so.open.163.com/v/list.htm?pid= (easylistchina.txt: 4619) .so.open.163.com/v/list\.htm\?pid= -# ||so.6949.com^ (easylistchina+easylist.txt: 4637) +# ||so.6949.com^ (easylistchina.txt: 4618) .so.6949.com -# ||snybw.com/images/*-banner. (easylistchina+easylist.txt: 4636) +# ||snybw.com/images/*-banner. (easylistchina.txt: 4617) .snybw.com/images/.*-banner\. -# ||smzy.com^*970.js (easylistchina+easylist.txt: 4635) +# ||smzy.com^*970.js (easylistchina.txt: 4616) .smzy.com/.*970\.js -# ||smzy.com^*/webtg (easylistchina+easylist.txt: 4634) +# ||smzy.com^*/webtg (easylistchina.txt: 4615) .smzy.com/.*/webtg -# ||slit.cn/slgg/ (easylistchina+easylist.txt: 4633) +# ||slooti.com/upload/30/38/1446711674.gif (easylistchina.txt: 4614) +.slooti.com/upload/30/38/1446711674\.gif +# ||slit.cn/slgg/ (easylistchina.txt: 4613) .slit.cn/slgg/ -# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina+easylist.txt: 4632) +# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina.txt: 4612) .slit.cn/skin/slitsk/js/dlad\.js -# ||slit.cn/d/js/images/thea (easylistchina+easylist.txt: 4631) +# ||slit.cn/d/js/images/thea (easylistchina.txt: 4611) .slit.cn/d/js/images/thea -# ||skinme.cc/assets/images/banner_ (easylistchina+easylist.txt: 4630) +# ||skinme.cc/assets/images/banner_ (easylistchina.txt: 4610) .skinme.cc/assets/images/banner_ -# ||skinme.cc*/assets/images/*0.swf (easylistchina+easylist.txt: 4629) +# ||skinme.cc*/assets/images/*0.swf (easylistchina.txt: 4609) .skinme.cc*./(.*/)?assets/images/.*0\.swf -# ||skdh2.com/tp/ (easylistchina+easylist.txt: 4628) +# ||skdh2.com/tp/ (easylistchina.txt: 4608) .skdh2.com/tp/ -# ||skdh1.com/tp/ (easylistchina+easylist.txt: 4627) +# ||skdh1.com/tp/ (easylistchina.txt: 4607) .skdh1.com/tp/ -# ||sjzdaily.com.cn/sjznewsad/ (easylistchina+easylist.txt: 4625) +# ||skdh.net^*980 (easylistchina.txt: 4606) +.skdh.net/.*980 +# ||skdh.net/zuo.js (easylistchina.txt: 4605) +.skdh.net/zuo\.js +# ||sjzdaily.com.cn/sjznewsad/ (easylistchina.txt: 4603) .sjzdaily.com.cn/sjznewsad/ -# ||sjzbus.com.cn/advimg/ (easylistchina+easylist.txt: 4624) +# ||sjzbus.com.cn/advimg/ (easylistchina.txt: 4602) .sjzbus.com.cn/advimg/ -# ||sjyws.sjyws.com^*.gif (easylistchina+easylist.txt: 4623) +# ||sjyws.sjyws.com^*.gif (easylistchina.txt: 4601) .sjyws.sjyws.com/.*\.gif -# ||siyu88.cn/xl/ (easylistchina+easylist.txt: 4621) +# ||siyu88.cn/xl/ (easylistchina.txt: 4599) .siyu88.cn/xl/ -# ||sisiww.com/yezicheng_ad/ (easylistchina+easylist.txt: 4620) +# ||sisiww.com/yezicheng_ad/ (easylistchina.txt: 4598) .sisiww.com/yezicheng_ad/ -# ||sisiww.com/6786526.gif (easylistchina+easylist.txt: 4619) +# ||sisiww.com/6786526.gif (easylistchina.txt: 4597) .sisiww.com/6786526\.gif -# ||sinolub.com/data/js/*.js (easylistchina+easylist.txt: 4618) +# ||sinolub.com/data/js/*.js (easylistchina.txt: 4596) .sinolub.com/data/js/.*\.js -# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina+easylist.txt: 4617) +# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina.txt: 4595) .sinajs.cn/t6/home/js/pl/guide/bigday/ -# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina+easylist.txt: 4616) +# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina.txt: 4594) .sinajs.cn/t6/home/js/pl/guide/adforfqy/ -# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina+easylist.txt: 4615) +# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina.txt: 4593) .sinajs.cn/t4/apps/publicity/static/wbad\.js -# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina+easylist.txt: 4614) +# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina.txt: 4592) .sinajs.cn/blog7style/images/activity/app_tuiguang/ -# ||sinaimg.cn/unipro/ (easylistchina+easylist.txt: 4610) +# ||sinaimg.cn/unipro/ (easylistchina.txt: 4588) .sinaimg.cn/unipro/ -# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina+easylist.txt: 4609) +# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina.txt: 4587) .sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82\.gif -# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina+easylist.txt: 4608) +# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina.txt: 4586) .sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj\.jpg -# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina+easylist.txt: 4607) +# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina.txt: 4585) .sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn\.jpg -# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina+easylist.txt: 4606) +# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina.txt: 4584) .sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh\.jpg -# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina+easylist.txt: 4605) +# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina.txt: 4583) .sinaimg.cn/mw690/a6a976a2.*j207e02a -# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina+easylist.txt: 4604) +# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina.txt: 4582) .sinaimg.cn/mw690/a1916e89gw1dye4d74zmij\.jpg -# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina+easylist.txt: 4603) +# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina.txt: 4581) .sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj\.jpg -# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina+easylist.txt: 4602) +# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina.txt: 4580) .sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi\.jpg -# ||sinaimg.cn/mw690/60006c33jw9eir85o4mbsj206y05sgm4.jpg (easylistchina+easylist.txt: 4601) -.sinaimg.cn/mw690/60006c33jw9eir85o4mbsj206y05sgm4\.jpg -# ||sinaimg.cn/mw690/005GRsDJjw1eo1jledg4cj30b40b4go4.jpg (easylistchina+easylist.txt: 4600) -.sinaimg.cn/mw690/005GRsDJjw1eo1jledg4cj30b40b4go4\.jpg -# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina+easylist.txt: 4599) +# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina.txt: 4579) .sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu\.jpg -# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina+easylist.txt: 4598) +# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina.txt: 4578) .sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina+easylist.txt: 4596) +# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina.txt: 4576) .sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81\.gif -# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina+easylist.txt: 4595) +# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina.txt: 4575) .sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina+easylist.txt: 4594) +# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina.txt: 4574) .sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze\.jpg -# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina+easylist.txt: 4593) +# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina.txt: 4573) .sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf\.jpg -# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina+easylist.txt: 4591) +# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina.txt: 4571) .sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt\.gif -# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina+easylist.txt: 4590) +# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina.txt: 4570) .sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y\.jpg -# ||sinaimg.cn/large/b8c4115djw1els3p1luszg208c06ymzb.jpg (easylistchina+easylist.txt: 4589) -.sinaimg.cn/large/b8c4115djw1els3p1luszg208c06ymzb\.jpg -# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina+easylist.txt: 4588) +# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina.txt: 4569) .sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r\.gif -# ||sinaimg.cn/large/0064LzSDgw1eqft*.gif (easylistchina+easylist.txt: 4587) -.sinaimg.cn/large/0064LzSDgw1eqft.*\.gif -# ||sinaimg.cn/large/005yyi5Jjw1eoinnnh4caj308c06yt9k.jpg (easylistchina+easylist.txt: 4586) -.sinaimg.cn/large/005yyi5Jjw1eoinnnh4caj308c06yt9k\.jpg -# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina+easylist.txt: 4585) +# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina.txt: 4568) .sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5\.jpg -# ||sinaimg.cn/large/005YVJvVgw1eqeoa1vo9og30rn01ytgn.gif (easylistchina+easylist.txt: 4584) -.sinaimg.cn/large/005YVJvVgw1eqeoa1vo9og30rn01ytgn\.gif -# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina+easylist.txt: 4583) +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina.txt: 4567) .sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts\.jpg -# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina+easylist.txt: 4582) +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina.txt: 4566) .sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta\.jpg -# ||sinaimg.cn/large/005S1G8Qjw1eqb4y4ifo0g30qj01ydic.gif (easylistchina+easylist.txt: 4581) -.sinaimg.cn/large/005S1G8Qjw1eqb4y4ifo0g30qj01ydic\.gif -# ||sinaimg.cn/large/005S1G8Qjw1eqb4xx9e1qg308c06yaca.gif (easylistchina+easylist.txt: 4580) -.sinaimg.cn/large/005S1G8Qjw1eqb4xx9e1qg308c06yaca\.gif -# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina+easylist.txt: 4579) +# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina.txt: 4565) .sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy\.gif -# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina+easylist.txt: 4575) +# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina.txt: 4563) .sinaimg.cn/jslib/kuozhanad\.js -# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina+easylist.txt: 4574) +# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina.txt: 4562) .sinaimg.cn/finance/zwy/sidead_ -# ||sinaimg.cn/cj/dfz_ad/ (easylistchina+easylist.txt: 4573) +# ||sinaimg.cn/cj/dfz_ad/ (easylistchina.txt: 4561) .sinaimg.cn/cj/dfz_ad/ -# ||sinaimg.cn/bmiddle/48dc6199jw1eyk360j058g209c07stdl.gif (easylistchina+easylist.txt: 4572) -.sinaimg.cn/bmiddle/48dc6199jw1eyk360j058g209c07stdl\.gif -# ||sina.com/rm/ (easylistchina+easylist.txt: 4571) +# ||sina.com/rm/ (easylistchina.txt: 4560) .sina.com/rm/ -# ||sina.com/assets/js/dart/ (easylistchina+easylist.txt: 4570) +# ||sina.com/assets/js/dart/ (easylistchina.txt: 4559) .sina.com/assets/js/dart/ -# ||sina.com/ads/ (easylistchina+easylist.txt: 4569) +# ||sina.com/ads/ (easylistchina.txt: 4558) .sina.com/ads/ -# ||sina.com.tw/game_data/adsbro_ (easylistchina+easylist.txt: 4567) +# ||sina.com.tw/game_data/adsbro_ (easylistchina.txt: 4556) .sina.com.tw/game_data/adsbro_ -# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina+easylist.txt: 4566) +# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina.txt: 4555) .sina.com.cn/tgy/pop_js/ad\.js -# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina+easylist.txt: 4565) +# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina.txt: 4554) .sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90\.gif -# ||sina.com.cn/NewIndexAdStart.js (easylistchina+easylist.txt: 4564) +# ||sina.com.cn/NewIndexAdStart.js (easylistchina.txt: 4553) .sina.com.cn/NewIndexAdStart\.js -# ||sina.com.cn/litong/ (easylistchina+easylist.txt: 4563) +# ||sina.com.cn/litong/ (easylistchina.txt: 4552) .sina.com.cn/litong/ -# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina+easylist.txt: 4562) +# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina.txt: 4551) .sina.com.cn/js/87/20140101/hongbao/ -# ||sina.com.cn/js/*/bgads.js (easylistchina+easylist.txt: 4561) +# ||sina.com.cn/js/*/bgads.js (easylistchina.txt: 4550) .sina.com.cn/js/.*/bgads\.js -# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina+easylist.txt: 4560) +# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina.txt: 4549) .sina.com.cn/js/.*/AdvertisingByNewIndex_ -# ||sina.cn/adfront/deliver.php? (easylistchina+easylist.txt: 4559) +# ||sina.com.cn/131/20150515/266.js (easylistchina.txt: 4548) +.sina.com.cn/131/20150515/266\.js +# ||sina.cn/adfront/deliver.php? (easylistchina.txt: 4547) .sina.cn/adfront/deliver\.php\? -# ||simplecd.me/static/js/adcpm.js (easylistchina+easylist.txt: 4558) +# ||simplecd.me/static/js/adcpm.js (easylistchina.txt: 4546) .simplecd.me/static/js/adcpm\.js -# ||shxd.net/img/myad.gif (easylistchina+easylist.txt: 4557) +# ||shxd.net/img/myad.gif (easylistchina.txt: 4545) .shxd.net/img/myad\.gif -# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina+easylist.txt: 4556) +# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina.txt: 4544) .shuyeer.com/views/default/mnstyle/hot/gg\.js -# ||shuyeer.com/views/default/images/close.gif (easylistchina+easylist.txt: 4555) +# ||shuyeer.com/views/default/images/close.gif (easylistchina.txt: 4543) .shuyeer.com/views/default/images/close\.gif -# ||shuyeer.com/dlr.html (easylistchina+easylist.txt: 4554) +# ||shuyeer.com/dlr.html (easylistchina.txt: 4542) .shuyeer.com/dlr\.html -# ||shuqi6.com/static/jquery/gg.js (easylistchina+easylist.txt: 4553) +# ||shuqi6.com/static/jquery/gg.js (easylistchina.txt: 4541) .shuqi6.com/static/jquery/gg\.js -# ||shumimi.com/js/a3.js (easylistchina+easylist.txt: 4552) +# ||shumimi.com/js/a3.js (easylistchina.txt: 4540) .shumimi.com/js/a3\.js -# ||shumimi.com/js/a2.js (easylistchina+easylist.txt: 4551) +# ||shumimi.com/js/a2.js (easylistchina.txt: 4539) .shumimi.com/js/a2\.js -# ||shumimi.com/js/a1.js (easylistchina+easylist.txt: 4550) +# ||shumimi.com/js/a1.js (easylistchina.txt: 4538) .shumimi.com/js/a1\.js -# ||shumimi.com/js/a0 (easylistchina+easylist.txt: 4549) +# ||shumimi.com/js/a0 (easylistchina.txt: 4537) .shumimi.com/js/a0 -# ||shulink.com/js/pagetop5.js (easylistchina+easylist.txt: 4548) +# ||shulink.com/js/pagetop5.js (easylistchina.txt: 4536) .shulink.com/js/pagetop5\.js -# ||shulihua.net/js/yegonggao.js (easylistchina+easylist.txt: 4547) +# ||shulihua.net/js/yegonggao.js (easylistchina.txt: 4535) .shulihua.net/js/yegonggao\.js -# ||shulihua.net/js/topcen.js (easylistchina+easylist.txt: 4546) +# ||shulihua.net/js/topcen.js (easylistchina.txt: 4534) .shulihua.net/js/topcen\.js -# ||shulihua.net/js/gzlishigoogle.js (easylistchina+easylist.txt: 4545) +# ||shulihua.net/js/gzlishigoogle.js (easylistchina.txt: 4533) .shulihua.net/js/gzlishigoogle\.js -# ||shulihua.net/js/gzlishi468google.js (easylistchina+easylist.txt: 4544) +# ||shulihua.net/js/gzlishi468google.js (easylistchina.txt: 4532) .shulihua.net/js/gzlishi468google\.js -# ||shuhe.cc/ssi/ (easylistchina+easylist.txt: 4543) +# ||shuhe.cc/ssi/ (easylistchina.txt: 4531) .shuhe.cc/ssi/ -# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina+easylist.txt: 4542) +# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina.txt: 4530) .shuajizhijia.com/uploads/allimg/141121/1_1702554911\.jpg -# ||shuajizhijia.com/static/js/rightdown.js (easylistchina+easylist.txt: 4541) +# ||shuajizhijia.com/static/js/rightdown.js (easylistchina.txt: 4529) .shuajizhijia.com/static/js/rightdown\.js -# ||shuaijiao.com/statics/js/adv0.js (easylistchina+easylist.txt: 4540) +# ||shuaijiao.com/statics/js/adv0.js (easylistchina.txt: 4528) .shuaijiao.com/statics/js/adv0\.js -# ||shows.21cn.com^ (easylistchina+easylist.txt: 4539) +# ||shows.21cn.com^ (easylistchina.txt: 4527) .shows.21cn.com -# ||showbean.net:8081/cpma.js (easylistchina+easylist.txt: 4538) +# ||showbean.net:8081/cpma.js (easylistchina.txt: 4526) .showbean.net:8081/cpma\.js -# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina+easylist.txt: 4537) +# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina.txt: 4525) .shouyoutv.com/assets/api/web/v4/js/global_head\.js -# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina+easylist.txt: 4536) +# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina.txt: 4524) .shouyou.com/2013/new/shouyou-duilian\.js -# ||shoudian.org/diantong/sunwayman*.gif (easylistchina+easylist.txt: 4535) +# ||shoudian.org/diantong/sunwayman*.gif (easylistchina.txt: 4523) .shoudian.org/diantong/sunwayman.*\.gif -# ||shmet.com/js/shmetAd.js (easylistchina+easylist.txt: 4534) +# ||shmet.com/js/shmetAd.js (easylistchina.txt: 4522) .shmet.com/js/shmetAd\.js -# ||shmet.com/images/zz250x80.jpg (easylistchina+easylist.txt: 4533) +# ||shmet.com/images/zz250x80.jpg (easylistchina.txt: 4521) .shmet.com/images/zz250x80\.jpg -# ||shmet.com/images/20120213ad/ (easylistchina+easylist.txt: 4532) +# ||shmet.com/images/20120213ad/ (easylistchina.txt: 4520) .shmet.com/images/20120213ad/ -# ||shmet.com/images/150x150newsshmet.jpg (easylistchina+easylist.txt: 4531) +# ||shmet.com/images/150x150newsshmet.jpg (easylistchina.txt: 4519) .shmet.com/images/150x150newsshmet\.jpg -# ||shmet.com/images/1000x90newshmet.swf (easylistchina+easylist.txt: 4530) +# ||shmet.com/images/1000x90newshmet.swf (easylistchina.txt: 4518) .shmet.com/images/1000x90newshmet\.swf -# ||shm.com.cn/js/load.swf (easylistchina+easylist.txt: 4529) +# ||shm.com.cn/js/load.swf (easylistchina.txt: 4517) .shm.com.cn/js/load\.swf -# ||shm.com.cn/css/m.js (easylistchina+easylist.txt: 4528) +# ||shm.com.cn/css/m.js (easylistchina.txt: 4516) .shm.com.cn/css/m\.js -# ||shm.com.cn/content/con*.js (easylistchina+easylist.txt: 4527) +# ||shm.com.cn/content/con*.js (easylistchina.txt: 4515) .shm.com.cn/content/con.*\.js -# ||shfq.com/data/attachment/portal/ (easylistchina+easylist.txt: 4526) +# ||shfq.com/data/attachment/portal/ (easylistchina.txt: 4514) .shfq.com/data/attachment/portal/ -# ||shenmeshi.com/googlejs/ziding1.js (easylistchina+easylist.txt: 4525) +# ||shenmeshi.com/googlejs/ziding1.js (easylistchina.txt: 4513) .shenmeshi.com/googlejs/ziding1\.js -# ||shenmaxiaoshuo.com/js/mu.js (easylistchina+easylist.txt: 4524) +# ||shenmaxiaoshuo.com/js/mu.js (easylistchina.txt: 4512) .shenmaxiaoshuo.com/js/mu\.js -# ||shenmaxiaoshuo.com/js/lu.js (easylistchina+easylist.txt: 4523) +# ||shenmaxiaoshuo.com/js/lu.js (easylistchina.txt: 4511) .shenmaxiaoshuo.com/js/lu\.js -# ||shenmaxiaoshuo.com/js/hf (easylistchina+easylist.txt: 4522) +# ||shenmaxiaoshuo.com/js/hf (easylistchina.txt: 4510) .shenmaxiaoshuo.com/js/hf -# ||shenleyuni.com^ (easylistchina+easylist.txt: 4521) +# ||shenleyuni.com^ (easylistchina.txt: 4509) .shenleyuni.com -# ||shejizhan.org/images/myssh (easylistchina+easylist.txt: 4520) +# ||shejizhan.org/images/myssh (easylistchina.txt: 4508) .shejizhan.org/images/myssh -# ||shehuitu.com/jsjs/ (easylistchina+easylist.txt: 4519) +# ||shehuitu.com/jsjs/ (easylistchina.txt: 4507) .shehuitu.com/jsjs/ -# ||shbear.com^*/ad/ (easylistchina+easylist.txt: 4518) +# ||shbear.com^*/ad/ (easylistchina.txt: 4506) .shbear.com/.*/ad/ -# ||share666.com/adad2014/ (easylistchina+easylist.txt: 4517) -.share666.com/adad2014/ -# ||share666.com/30033.gif (easylistchina+easylist.txt: 4516) -.share666.com/30033\.gif -# ||share.gzdsw.com^ (easylistchina+easylist.txt: 4515) +# ||share.gzdsw.com^ (easylistchina.txt: 4505) .share.gzdsw.com -# ||shaoxing.com.cn^*gg. (easylistchina+easylist.txt: 4513) +# ||shaoxing.com.cn^*gg. (easylistchina.txt: 4503) .shaoxing.com.cn/.*gg\. -# ||shaoxing.com.cn/6201.files/*.swf (easylistchina+easylist.txt: 4512) +# ||shaoxing.com.cn/6201.files/*.swf (easylistchina.txt: 4502) .shaoxing.com.cn/6201\.files/.*\.swf -# ||shanhe.cc/Scripts/main-pf.js (easylistchina+easylist.txt: 4511) +# ||shanhe.cc/Scripts/main-pf.js (easylistchina.txt: 4501) .shanhe.cc/Scripts/main-pf\.js -# ||shanhe.cc/Scripts/ads_dl.js (easylistchina+easylist.txt: 4510) +# ||shanhe.cc/Scripts/ads_dl.js (easylistchina.txt: 4500) .shanhe.cc/Scripts/ads_dl\.js -# ||shanhe.cc/index.php?m=poster& (easylistchina+easylist.txt: 4509) +# ||shanhe.cc/index.php?m=poster& (easylistchina.txt: 4499) .shanhe.cc/index\.php\?m=poster& -# ||shangdu.com/tpnews/dazhe.gif (easylistchina+easylist.txt: 4508) +# ||shangdu.com/tpnews/dazhe.gif (easylistchina.txt: 4498) .shangdu.com/tpnews/dazhe\.gif -# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina+easylist.txt: 4507) +# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina.txt: 4497) .shangdu.com/newfile2007/ad/tu/flash/3dboard\.swf -# ||shangdu.com/lyinfo/ad/ (easylistchina+easylist.txt: 4506) +# ||shangdu.com/lyinfo/ad/ (easylistchina.txt: 4496) .shangdu.com/lyinfo/ad/ -# ||shangdu.com/comiis_ad/ (easylistchina+easylist.txt: 4505) +# ||shangdu.com/comiis_ad/ (easylistchina.txt: 4495) .shangdu.com/comiis_ad/ -# ||shangdu.com/bbs/1005010601.js (easylistchina+easylist.txt: 4504) +# ||shangdu.com/bbs/1005010601.js (easylistchina.txt: 4494) .shangdu.com/bbs/1005010601\.js -# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina+easylist.txt: 4503) +# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina.txt: 4493) .shangdu.com/2013pic/kuahailong\.jpg -# ||shangdu.com/2013pic/09cn.jpg (easylistchina+easylist.txt: 4502) +# ||shangdu.com/2013pic/09cn.jpg (easylistchina.txt: 4492) .shangdu.com/2013pic/09cn\.jpg -# ||shangdu.com/1002/1002031301.js (easylistchina+easylist.txt: 4501) +# ||shangdu.com/1002/1002031301.js (easylistchina.txt: 4491) .shangdu.com/1002/1002031301\.js -# ||shangdu.com/1002/1002030901.js (easylistchina+easylist.txt: 4500) +# ||shangdu.com/1002/1002030901.js (easylistchina.txt: 4490) .shangdu.com/1002/1002030901\.js -# ||shangdu.com/1002/1002030801.js (easylistchina+easylist.txt: 4499) +# ||shangdu.com/1002/1002030801.js (easylistchina.txt: 4489) .shangdu.com/1002/1002030801\.js -# ||shangdu.com/1002/1002030101.js (easylistchina+easylist.txt: 4498) +# ||shangdu.com/1002/1002030101.js (easylistchina.txt: 4488) .shangdu.com/1002/1002030101\.js -# ||shang.hlgnet.net/code/ (easylistchina+easylist.txt: 4497) +# ||shang.hlgnet.net/code/ (easylistchina.txt: 4487) .shang.hlgnet.net/code/ -# ||shang.hlgnet.com/code/ (easylistchina+easylist.txt: 4496) +# ||shang.hlgnet.com/code/ (easylistchina.txt: 4486) .shang.hlgnet.com/code/ -# ||shabc.net/shyk/swt/swt_yh.js (easylistchina+easylist.txt: 4495) +# ||shabc.net/shyk/swt/swt_yh.js (easylistchina.txt: 4485) .shabc.net/shyk/swt/swt_yh\.js -# ||sh114so.com/js/nm*.js (easylistchina+easylist.txt: 4493) +# ||sh114so.com/js/nm*.js (easylistchina.txt: 4483) .sh114so.com/js/nm.*\.js -# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina+easylist.txt: 4492) +# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina.txt: 4482) .sh.sina.com.cn/js/441/ZwyArticle_commo_23\.js -# ||sh.sina.com.cn/iframe/522/ (easylistchina+easylist.txt: 4491) +# ||sh.sina.com.cn/iframe/522/ (easylistchina.txt: 4481) .sh.sina.com.cn/iframe/522/ -# ||sgg.southcn.com^ (easylistchina+easylist.txt: 4490) +# ||sgg.southcn.com^ (easylistchina.txt: 4480) .sgg.southcn.com -# ||sg169.com/uploadfile/*.swf (easylistchina+easylist.txt: 4489) +# ||sg169.com/uploadfile/*.swf (easylistchina.txt: 4479) .sg169.com/uploadfile/.*\.swf -# ||sg169.com/uploadfile/*.gif (easylistchina+easylist.txt: 4488) +# ||sg169.com/uploadfile/*.gif (easylistchina.txt: 4478) .sg169.com/uploadfile/.*\.gif -# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina+easylist.txt: 4487) +# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina.txt: 4477) .sf-express.com/cn/sc/\.galleries/sfbest/.*_right_sc\. -# ||sexbarss.net/wap/ (easylistchina+easylist.txt: 4486) +# ||sexbarss.net/wap/ (easylistchina.txt: 4476) .sexbarss.net/wap/ -# ||sentsin.qiniudn.com/ad_ (easylistchina+easylist.txt: 4485) +# ||sentsin.qiniudn.com/ad_ (easylistchina.txt: 4475) .sentsin.qiniudn.com/ad_ -# ||sejie2.us/images/*.gif (easylistchina+easylist.txt: 4484) +# ||sejie2.us/images/*.gif (easylistchina.txt: 4474) .sejie2.us/images/.*\.gif -# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina+easylist.txt: 4483) +# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina.txt: 4473) .secretmine.net/wp-content/uploads/2015/07/youdaoxiazai\.jpg -# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina+easylist.txt: 4482) +# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina.txt: 4472) .secretmine.net/wp-content/uploads/2015/07/A- -# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina+easylist.txt: 4481) +# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina.txt: 4471) .secretmine.net/wp-content/uploads/.*/610x80 -# ||secretmine.net/wp-content/uploads/*-960 (easylistchina+easylist.txt: 4480) +# ||secretmine.net/wp-content/uploads/*-960 (easylistchina.txt: 4470) .secretmine.net/wp-content/uploads/.*-960 -# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina+easylist.txt: 4479) +# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina.txt: 4469) .secretmine.net/wp-content/uploads/.*-300-25\. -# ||sdzbcg.com/images/sdfhyl (easylistchina+easylist.txt: 4478) +# ||sdzbcg.com/images/sdfhyl (easylistchina.txt: 4468) .sdzbcg.com/images/sdfhyl -# ||sdzbcg.com/images/jnmy (easylistchina+easylist.txt: 4477) +# ||sdzbcg.com/images/jnmy (easylistchina.txt: 4467) .sdzbcg.com/images/jnmy -# ||sdzbcg.com/images/ggwzz.jpg (easylistchina+easylist.txt: 4476) +# ||sdzbcg.com/images/ggwzz.jpg (easylistchina.txt: 4466) .sdzbcg.com/images/ggwzz\.jpg -# ||sdo.com/static/image/mkads/ (easylistchina+easylist.txt: 4474) +# ||sdo.com/static/image/mkads/ (easylistchina.txt: 4464) .sdo.com/static/image/mkads/ -# ||sdktu.com/js/alpha.js (easylistchina+easylist.txt: 4473) +# ||sdktu.com/js/alpha.js (easylistchina.txt: 4463) .sdktu.com/js/alpha\.js -# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina+easylist.txt: 4472) +# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina.txt: 4462) .sdgundam.cn/upload/2015-07/dcfea62708a21351\.jpg -# ||sdgundam.cn/js/duilian3.js (easylistchina+easylist.txt: 4471) +# ||sdgundam.cn/js/duilian3.js (easylistchina.txt: 4461) .sdgundam.cn/js/duilian3\.js -# ||sd888.org/house/flash/ (easylistchina+easylist.txt: 4470) +# ||sd888.org/house/flash/ (easylistchina.txt: 4460) .sd888.org/house/flash/ -# ||sd888.org/flash/ (easylistchina+easylist.txt: 4469) +# ||sd888.org/flash/ (easylistchina.txt: 4459) .sd888.org/flash/ -# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina+easylist.txt: 4468) +# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina.txt: 4458) .sd.xinhuanet.com/2014xb/images/shanhang\.gif -# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina+easylist.txt: 4467) +# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina.txt: 4457) .sd.xinhuanet.com/2014xb/html/albbg\.htm -# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina+easylist.txt: 4466) +# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina.txt: 4456) .sd.xinhuanet.com/2014xb/flash/ -# ||scsn.cn/Public/config/Couplet/Index (easylistchina+easylist.txt: 4465) +# ||scsn.cn/Public/config/Couplet/Index (easylistchina.txt: 4455) .scsn.cn/Public/config/Couplet/Index -# ||scsn.cn/Public/config/Couplet/16.js (easylistchina+easylist.txt: 4464) +# ||scsn.cn/Public/config/Couplet/16.js (easylistchina.txt: 4454) .scsn.cn/Public/config/Couplet/16\.js -# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina+easylist.txt: 4463) +# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina.txt: 4453) .script.cmfu.com/Script/GameAdAptationInfo\.js -# ||script.cmfu.com/ADScript/ (easylistchina+easylist.txt: 4462) +# ||script.cmfu.com/ADScript/ (easylistchina.txt: 4452) .script.cmfu.com/ADScript/ -# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina+easylist.txt: 4461) +# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina.txt: 4451) .scol.com.cn/scol-3/js/08scol_text_ -# ||scol.com.cn/js/def_ (easylistchina+easylist.txt: 4460) +# ||scol.com.cn/js/def_ (easylistchina.txt: 4450) .scol.com.cn/js/def_ -# ||sc.tom.com^ (easylistchina+easylist.txt: 4459) +# ||sc.tom.com^ (easylistchina.txt: 4449) .sc.tom.com -# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina+easylist.txt: 4458) +# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina.txt: 4448) .sc.chinaiiss.com/do\.php\?do=ad& -# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina+easylist.txt: 4457) +# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina.txt: 4447) .saydigi.com/wp-content/uploads/2015/01/gogo\.png -# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina+easylist.txt: 4456) +# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina.txt: 4446) .saydigi.com/wp-content/uploads/2014/01/mii2\.gif -# ||saydigi.com/wp-content/uploads/*-banner (easylistchina+easylist.txt: 4455) +# ||saydigi.com/wp-content/uploads/*-banner (easylistchina.txt: 4445) .saydigi.com/wp-content/uploads/.*-banner -# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina+easylist.txt: 4454) +# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina.txt: 4444) .saydigi.com/wp-content/uploads/.*-240x250\. -# ||sax.sina.com.cn/crossdomain.xml (easylistchina+easylist.txt: 4453) +# ||sax.sina.com.cn/crossdomain.xml (easylistchina.txt: 4443) .sax.sina.com.cn/crossdomain\.xml -# ||same.stockstar.com^ (easylistchina+easylist.txt: 4452) +# ||same.stockstar.com^ (easylistchina.txt: 4442) .same.stockstar.com -# ||same.eastmoney.com^ (easylistchina+easylist.txt: 4451) +# ||same.eastmoney.com^ (easylistchina.txt: 4441) .same.eastmoney.com -# ||same.chinadaily.com.cn^ (easylistchina+easylist.txt: 4450) +# ||same.chinadaily.com.cn^ (easylistchina.txt: 4440) .same.chinadaily.com.cn -# ||sam*.baby-kingdom.com^ (easylistchina+easylist.txt: 4448) +# ||sam*.baby-kingdom.com^ (easylistchina.txt: 4438) .sam*./.*\.baby-kingdom\.com[^\w%.-] .sam*.baby-kingdom.com -# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina+easylist.txt: 4447) +# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina.txt: 4437) .saibeinews.com/index\.php\?m=poster&c=index&a=show_poster& -# ||safedom.net/edm/ad/ (easylistchina+easylist.txt: 4446) +# ||safedom.net/edm/ad/ (easylistchina.txt: 4436) .safedom.net/edm/ad/ -# ||s8bbs.com/g.php? (easylistchina+easylist.txt: 4445) +# ||s8bbs.com/g.php? (easylistchina.txt: 4435) .s8bbs.com/g\.php\? -# ||s1979.com/html/ad_js/ (easylistchina+easylist.txt: 4444) +# ||s1979.com/html/ad_js/ (easylistchina.txt: 4434) .s1979.com/html/ad_js/ -# ||s1.pplive.cn/sta.js (easylistchina+easylist.txt: 4443) +# ||s1.pplive.cn/sta.js (easylistchina.txt: 4433) .s1.pplive.cn/sta\.js -# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina+easylist.txt: 4442) +# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina.txt: 4432) .s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226\.js -# ||s.yimg.com/gs/apex/ (easylistchina+easylist.txt: 4440) +# ||s.yimg.com/gs/apex/ (easylistchina.txt: 4430) .s.yimg.com/gs/apex/ -# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina+easylist.txt: 4439) +# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina.txt: 4429) .s.video.sina.com.cn/video/play\?video_id=249750205& -# ||s.u17t.com/leaflet/upload/ (easylistchina+easylist.txt: 4438) +# ||s.u17t.com/leaflet/upload/ (easylistchina.txt: 4428) .s.u17t.com/leaflet/upload/ -# ||s.tankr.net/n/ (easylistchina+easylist.txt: 4436) +# ||s.tankr.net/n/ (easylistchina.txt: 4426) .s.tankr.net/n/ -# ||s-msn.com/portal/xiatui.js (easylistchina+easylist.txt: 4435) +# ||s-msn.com/portal/xiatui.js (easylistchina.txt: 4425) .s-msn.com/portal/xiatui\.js -# ||s-msn.com/portal/hp/2015/807.html (easylistchina+easylist.txt: 4434) +# ||s-msn.com/portal/hp/2015/807.html (easylistchina.txt: 4424) .s-msn.com/portal/hp/2015/807\.html -# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina+easylist.txt: 4433) +# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina.txt: 4423) .s-msn.com/msnportal/hp/luckyday/ -# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina+easylist.txt: 4432) +# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina.txt: 4422) .rznews.cn/viscms/r/cms/rzw/rzxw/images/.*\.swf -# ||ruten.com.tw/js/gads_ (easylistchina+easylist.txt: 4431) +# ||ruten.com.tw/js/gads_ (easylistchina.txt: 4421) .ruten.com.tw/js/gads_ -# ||ruten.com.tw/js/ahd_ (easylistchina+easylist.txt: 4430) +# ||ruten.com.tw/js/ahd_ (easylistchina.txt: 4420) .ruten.com.tw/js/ahd_ -# ||runsky.com/html/*_index_ (easylistchina+easylist.txt: 4429) +# ||runsky.com/html/*_index_ (easylistchina.txt: 4419) .runsky.com/html/.*_index_ -# ||runsky.com/bbsadv- (easylistchina+easylist.txt: 4428) +# ||runsky.com/bbsadv- (easylistchina.txt: 4418) .runsky.com/bbsadv- -# ||runmang.com/img/ (easylistchina+easylist.txt: 4427) +# ||runmang.com/img/ (easylistchina.txt: 4417) .runmang.com/img/ -# ||runbt.com/js/ad (easylistchina+easylist.txt: 4426) +# ||runbt.com/js/ad (easylistchina.txt: 4416) .runbt.com/js/ad -# ||runbt.com/image/ad_ (easylistchina+easylist.txt: 4425) +# ||runbt.com/image/ad_ (easylistchina.txt: 4415) .runbt.com/image/ad_ -# ||ruian86.com/img/y13/ (easylistchina+easylist.txt: 4424) +# ||ruian86.com/img/y13/ (easylistchina.txt: 4414) .ruian86.com/img/y13/ -# ||ruian.com/img/y13/ (easylistchina+easylist.txt: 4423) +# ||ruian.com/img/y13/ (easylistchina.txt: 4413) .ruian.com/img/y13/ -# ||rugao35.com/Public/config/Couplet/Index (easylistchina+easylist.txt: 4422) +# ||rugao35.com/Public/config/Couplet/Index (easylistchina.txt: 4412) .rugao35.com/Public/config/Couplet/Index -# ||ruanyifeng.com/blog/images/sup_ (easylistchina+easylist.txt: 4421) +# ||ruanyifeng.com/blog/images/sup_ (easylistchina.txt: 4411) .ruanyifeng.com/blog/images/sup_ -# ||ruanyifeng.com/blog/images/ad_ (easylistchina+easylist.txt: 4420) +# ||ruanyifeng.com/blog/images/ad_ (easylistchina.txt: 4410) .ruanyifeng.com/blog/images/ad_ -# ||ruan8.com/img/head.js (easylistchina+easylist.txt: 4418) +# ||ruan8.com/img/head.js (easylistchina.txt: 4408) .ruan8.com/img/head\.js -# ||ruan8.com/img/foot.js (easylistchina+easylist.txt: 4417) +# ||ruan8.com/img/foot.js (easylistchina.txt: 4407) .ruan8.com/img/foot\.js -# ||rtbs.cn/bi.js (easylistchina+easylist.txt: 4416) +# ||rtbs.cn/bi.js (easylistchina.txt: 4406) .rtbs.cn/bi\.js -# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina+easylist.txt: 4415) +# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina.txt: 4405) .rshhy.com/uploads/allimg/130517/1_1834445801\.jpg -# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina+easylist.txt: 4414) +# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina.txt: 4404) .rshhy.com/templets/default/images/zhixiao01\.jpg -# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina+easylist.txt: 4413) +# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina.txt: 4403) .rshhy.com/templets/default/images/paimai01\.jpg -# ||rsdown.cn/static/t/ (easylistchina+easylist.txt: 4412) +# ||rsdown.cn/static/t/ (easylistchina.txt: 4402) .rsdown.cn/static/t/ -# ||rsccs.com/code/ (easylistchina+easylist.txt: 4411) +# ||rsccs.com/code/ (easylistchina.txt: 4401) .rsccs.com/code/ -# ||rosmm.com/ad_js/ (easylistchina+easylist.txt: 4410) +# ||rosmm.com/ad_js/ (easylistchina.txt: 4400) .rosmm.com/ad_js/ -# ||rkanr.com/data/cpcache/cp*.js (easylistchina+easylist.txt: 4408) +# ||rkanr.com/data/cpcache/cp*.js (easylistchina.txt: 4398) .rkanr.com/data/cpcache/cp.*\.js -# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina+easylist.txt: 4407) +# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina.txt: 4397) .rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6\.jpg -# ||rizhao.net/html/js/main.js (easylistchina+easylist.txt: 4406) +# ||rizhao.net/html/js/main.js (easylistchina.txt: 4396) .rizhao.net/html/js/main\.js -# ||rising.com.cn/weblog/ (easylistchina+easylist.txt: 4405) +# ||rising.com.cn/weblog/ (easylistchina.txt: 4395) .rising.com.cn/weblog/ -# ||rising.cn^*/pic-ad/ (easylistchina+easylist.txt: 4404) +# ||rising.cn^*/pic-ad/ (easylistchina.txt: 4394) .rising.cn/.*/pic-ad/ -# ||ringhk.com/adves/ (easylistchina+easylist.txt: 4403) +# ||ringhk.com/adves/ (easylistchina.txt: 4393) .ringhk.com/adves/ -# ||right.com.cn/logo/*.gif (easylistchina+easylist.txt: 4401) +# ||right.com.cn/logo/*.gif (easylistchina.txt: 4391) .right.com.cn/logo/.*\.gif -# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina+easylist.txt: 4400) +# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina.txt: 4390) .right.com.cn/forum/static/image/common/logo\.gif -# ||rh.qq.com^ (easylistchina+easylist.txt: 4399) +# ||rh.qq.com^ (easylistchina.txt: 4389) .rh.qq.com -# ||rfidworld.com.cn/js/c.html (easylistchina+easylist.txt: 4398) +# ||rfidworld.com.cn/js/c.html (easylistchina.txt: 4388) .rfidworld.com.cn/js/c\.html -# ||rfidworld.com.cn/js/b.js (easylistchina+easylist.txt: 4397) +# ||rfidworld.com.cn/js/b.js (easylistchina.txt: 4387) .rfidworld.com.cn/js/b\.js -# ||rfidworld.com.cn/js/a.js (easylistchina+easylist.txt: 4396) +# ||rfidworld.com.cn/js/a.js (easylistchina.txt: 4386) .rfidworld.com.cn/js/a\.js -# ||res.ythouse.com/image/index/2012/ (easylistchina+easylist.txt: 4395) +# ||res.ythouse.com/image/index/2012/ (easylistchina.txt: 4385) .res.ythouse.com/image/index/2012/ -# ||res.hunantv.com^ (easylistchina+easylist.txt: 4394) +# ||res.hunantv.com^ (easylistchina.txt: 4384) .res.hunantv.com -# ||res.cngoldres.com/web/js/*_advs.js (easylistchina+easylist.txt: 4393) +# ||res.cngoldres.com/web/js/*_advs.js (easylistchina.txt: 4383) .res.cngoldres.com/web/js/.*_advs\.js -# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina+easylist.txt: 4392) +# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina.txt: 4382) .res.cngoldres.com/web/index/img/.*_ad_ -# ||repian.com/a/ (easylistchina+easylist.txt: 4391) +# ||repian.com/a/ (easylistchina.txt: 4381) .repian.com/a/ -# ||rentiyishu99.net/f.js (easylistchina+easylist.txt: 4390) +# ||rentiyishu99.net/f.js (easylistchina.txt: 4380) .rentiyishu99.net/f\.js -# ||rentiyishu99.net/e.js (easylistchina+easylist.txt: 4389) +# ||rentiyishu99.net/e.js (easylistchina.txt: 4379) .rentiyishu99.net/e\.js -# ||rentiyishu99.net/d.js (easylistchina+easylist.txt: 4388) +# ||rentiyishu99.net/d.js (easylistchina.txt: 4378) .rentiyishu99.net/d\.js -# ||rentiyishu99.net/b.js (easylistchina+easylist.txt: 4387) +# ||rentiyishu99.net/b.js (easylistchina.txt: 4377) .rentiyishu99.net/b\.js -# ||rentiyishu99.net/a.js (easylistchina+easylist.txt: 4386) +# ||rentiyishu99.net/a.js (easylistchina.txt: 4376) .rentiyishu99.net/a\.js -# ||rentiyishu.org/*.js (easylistchina+easylist.txt: 4385) +# ||rentiyishu.org/*.js (easylistchina.txt: 4375) .rentiyishu.org/.*\.js -# ||renrencd.com/static/images/*_adv. (easylistchina+easylist.txt: 4384) +# ||renrencd.com/static/images/*_adv. (easylistchina.txt: 4374) .renrencd.com/static/images/.*_adv\. -# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina+easylist.txt: 4383) +# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina.txt: 4373) .renren.com/pages/seo/reg_seo_pop\.js -# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina+easylist.txt: 4382) +# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina.txt: 4372) .ref.so/templates/ref/images/client/tg.*\.jpg -# ||read.2200book.com/images/bloading.gif (easylistchina+easylist.txt: 4380) +# ||read.2200book.com/images/bloading.gif (easylistchina.txt: 4370) .read.2200book.com/images/bloading\.gif -# ||rar8.net/htmljs/ (easylistchina+easylist.txt: 4379) +# ||rar8.net/htmljs/ (easylistchina.txt: 4369) .rar8.net/htmljs/ -# ||ranwen.org/ssi/ (easylistchina+easylist.txt: 4378) +# ||ranwen.org/ssi/ (easylistchina.txt: 4368) .ranwen.org/ssi/ -# ||ranwen.net/ssi/ (easylistchina+easylist.txt: 4377) +# ||ranwen.net/ssi/ (easylistchina.txt: 4367) .ranwen.net/ssi/ -# ||rainmall.com/tv/js/bofang (easylistchina+easylist.txt: 4375) +# ||rainmall.com/tv/js/bofang (easylistchina.txt: 4365) .rainmall.com/tv/js/bofang -# ||rainmall.com/tv/js/ad (easylistchina+easylist.txt: 4374) +# ||rainmall.com/tv/js/ad (easylistchina.txt: 4364) .rainmall.com/tv/js/ad -# ||r3.ykimg.com/crossdomain.xml (easylistchina+easylist.txt: 4373) +# ||r3.ykimg.com/crossdomain.xml (easylistchina.txt: 4363) .r3.ykimg.com/crossdomain\.xml -# ||qzzn.com/statics/ (easylistchina+easylist.txt: 4372) +# ||qzzn.com/statics/ (easylistchina.txt: 4362) .qzzn.com/statics/ -# ||qzwb.com^*.swf| (easylistchina+easylist.txt: 4371) +# ||qzwb.com^*.swf| (easylistchina.txt: 4361) .qzwb.com/.*\.swf$ -# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina+easylist.txt: 4370) +# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina.txt: 4360) .qzwb.com/gb/img/9465\.files/1G3G\.gif -# ||qzss.cn/ssad (easylistchina+easylist.txt: 4369) +# ||qzss.cn/ssad (easylistchina.txt: 4359) .qzss.cn/ssad -# ||qzntv.com^*.swf| (easylistchina+easylist.txt: 4367) +# ||qzntv.com^*.swf| (easylistchina.txt: 4357) .qzntv.com/.*\.swf$ -# ||qz828.com/css/2010/script/*ad (easylistchina+easylist.txt: 4366) +# ||qz828.com/css/2010/script/*ad (easylistchina.txt: 4356) .qz828.com/css/2010/script/.*ad -# ||qutuku.com/qutu/good.js (easylistchina+easylist.txt: 4365) +# ||qutuku.com/qutu/good.js (easylistchina.txt: 4355) .qutuku.com/qutu/good\.js -# ||qunaso.cn/Data/upload/ad/ (easylistchina+easylist.txt: 4364) +# ||qunaso.cn/Data/upload/ad/ (easylistchina.txt: 4354) .qunaso.cn/Data/upload/ad/ -# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina+easylist.txt: 4363) +# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina.txt: 4353) .qunar.com/vataplan\?framId=ifrNTOPAD& -# ||qunar.com/vataframe/b.html? (easylistchina+easylist.txt: 4362) +# ||qunar.com/vataframe/b.html? (easylistchina.txt: 4352) .qunar.com/vataframe/b\.html\? -# ||qunar.com/vata?chan= (easylistchina+easylist.txt: 4361) +# ||qunar.com/vata?chan= (easylistchina.txt: 4351) .qunar.com/vata\?chan= -# ||qunar.com/render/*Advertisement.jsp? (easylistchina+easylist.txt: 4360) +# ||qunar.com/render/*Advertisement.jsp? (easylistchina.txt: 4350) .qunar.com/render/.*Advertisement\.jsp\? -# ||quledu.com/js/nrh.js (easylistchina+easylist.txt: 4359) +# ||quledu.com/js/nrh.js (easylistchina.txt: 4349) .quledu.com/js/nrh\.js -# ||qtfy30.cn/980-90.gif (easylistchina+easylist.txt: 4358) +# ||qtfy30.cn/980-90.gif (easylistchina.txt: 4348) .qtfy30.cn/980-90\.gif -# ||qtfy30.cn/680_*.gif (easylistchina+easylist.txt: 4357) +# ||qtfy30.cn/680_*.gif (easylistchina.txt: 4347) .qtfy30.cn/680_.*\.gif -# ||qstatic.com/baike/js/ad_ (easylistchina+easylist.txt: 4356) +# ||qstatic.com/baike/js/ad_ (easylistchina.txt: 4346) .qstatic.com/baike/js/ad_ -# ||qscjw.com/uploads/590.gif (easylistchina+easylist.txt: 4355) +# ||qscjw.com/uploads/590.gif (easylistchina.txt: 4345) .qscjw.com/uploads/590\.gif -# ||qqzuqiu.com/?a=check& (easylistchina+easylist.txt: 4354) +# ||qqzuqiu.com/?a=check& (easylistchina.txt: 4344) .qqzuqiu.com/\?a=check& -# ||qqyy.com/js/public_end_add.js (easylistchina+easylist.txt: 4353) +# ||qqyy.com/js/public_end_add.js (easylistchina.txt: 4343) .qqyy.com/js/public_end_add\.js -# ||qqyy.com/js/commAdv (easylistchina+easylist.txt: 4352) +# ||qqyy.com/js/commAdv (easylistchina.txt: 4342) .qqyy.com/js/commAdv -# ||qqread.com/swf/ (easylistchina+easylist.txt: 4350) +# ||qqread.com/swf/ (easylistchina.txt: 4340) .qqread.com/swf/ -# ||qqmcc.org/biz/home_top_960x90.html (easylistchina+easylist.txt: 4348) +# ||qqmcc.org/biz/home_top_960x90.html (easylistchina.txt: 4338) .qqmcc.org/biz/home_top_960x90\.html -# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina+easylist.txt: 4347) +# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina.txt: 4337) .qqkj.cn/js/qqkjnew/lanmuzhuantitongji\.js -# ||qqjia.com/images/ad (easylistchina+easylist.txt: 4346) +# ||qqjia.com/images/ad (easylistchina.txt: 4336) .qqjia.com/images/ad -# ||qqjia.com/dan.js (easylistchina+easylist.txt: 4345) +# ||qqjia.com/dan.js (easylistchina.txt: 4335) .qqjia.com/dan\.js -# ||qqhjy.com/soft/Upload*.gif (easylistchina+easylist.txt: 4344) +# ||qqhjy.com/soft/Upload*.gif (easylistchina.txt: 4334) .qqhjy.com/soft/Upload.*\.gif -# ||qqcyl.net/js/*.html (easylistchina+easylist.txt: 4343) +# ||qqcyl.net/js/*.html (easylistchina.txt: 4333) .qqcyl.net/js/.*\.html -# ||qqcyl.com/js/*.html (easylistchina+easylist.txt: 4342) +# ||qqcyl.com/js/*.html (easylistchina.txt: 4332) .qqcyl.com/js/.*\.html -# ||qqcf.com/js/Content_Get.js (easylistchina+easylist.txt: 4341) +# ||qqcf.com/js/Content_Get.js (easylistchina.txt: 4331) .qqcf.com/js/Content_Get\.js -# ||qq260.com/shout.js (easylistchina+easylist.txt: 4340) +# ||qq260.com/shout.js (easylistchina.txt: 4330) .qq260.com/shout\.js -# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina+easylist.txt: 4339) +# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina.txt: 4329) .qq.com/qzone/biz/gdt/display/positions/waicai/ -# ||qq.com/playgame/videoweb/ (easylistchina+easylist.txt: 4338) +# ||qq.com/playgame/videoweb/ (easylistchina.txt: 4328) .qq.com/playgame/videoweb/ -# ||qq.com/PL_adT.htm (easylistchina+easylist.txt: 4337) +# ||qq.com/PL_adT.htm (easylistchina.txt: 4327) .qq.com/PL_adT\.htm -# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina+easylist.txt: 4336) +# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina.txt: 4326) .qq.com/minivideo_v1/vd/res/enttencentvideo\.xml -# ||qq.com/livemsg? (easylistchina+easylist.txt: 4335) +# ||qq.com/livemsg? (easylistchina.txt: 4325) .qq.com/livemsg\? -# ||qq.com/Index/getAdsAndHotspot (easylistchina+easylist.txt: 4334) +# ||qq.com/Index/getAdsAndHotspot (easylistchina.txt: 4324) .qq.com/Index/getAdsAndHotspot -# ||qq.com/coral/ADS (easylistchina+easylist.txt: 4332) +# ||qq.com/coral/ADS (easylistchina.txt: 4322) .qq.com/coral/ADS -# ||qq.com/bbs/bbs_topgg.htm (easylistchina+easylist.txt: 4330) +# ||qq.com/bbs/bbs_topgg.htm (easylistchina.txt: 4320) .qq.com/bbs/bbs_topgg\.htm -# ||qq.com/article_qq/ad_article_qq/ (easylistchina+easylist.txt: 4329) +# ||qq.com/article_qq/ad_article_qq/ (easylistchina.txt: 4319) .qq.com/article_qq/ad_article_qq/ -# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina+easylist.txt: 4327) +# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina.txt: 4317) .qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 -# ||qmi.cc/tester/tester.js (easylistchina+easylist.txt: 4325) +# ||qmi.cc/tester/tester.js (easylistchina.txt: 4316) .qmi.cc/tester/tester\.js -# ||qk101.com/life/ (easylistchina+easylist.txt: 4324) +# ||qk101.com/life/ (easylistchina.txt: 4315) .qk101.com/life/ -# ||qjis.com/js/qjis_nr.js (easylistchina+easylist.txt: 4323) +# ||qjis.com/js/qjis_nr.js (easylistchina.txt: 4314) .qjis.com/js/qjis_nr\.js -# ||qiyun.org/images/js/tpl/ (easylistchina+easylist.txt: 4322) +# ||qiyun.org/images/js/tpl/ (easylistchina.txt: 4313) .qiyun.org/images/js/tpl/ -# ||qiyun.org/images/js/*.htm (easylistchina+easylist.txt: 4321) +# ||qiyun.org/images/js/*.htm (easylistchina.txt: 4312) .qiyun.org/images/js/.*\.htm -# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina+easylist.txt: 4320) +# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina.txt: 4311) .qiyipic.com/zongyi/fix/runningman20141008_bg03\.jpg -# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina+easylist.txt: 4319) +# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina.txt: 4310) .qiyipic.com/zongyi/fix/runningman20141008_bg02\.jpg -# ||qiyipic.com/zongyi/fix/mxdj (easylistchina+easylist.txt: 4318) +# ||qiyipic.com/zongyi/fix/mxdj (easylistchina.txt: 4309) .qiyipic.com/zongyi/fix/mxdj -# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina+easylist.txt: 4317) +# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina.txt: 4308) .qiyipic.com/zongyi/.*Banner01\.jpg -# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina+easylist.txt: 4316) +# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina.txt: 4307) .qiyipic.com/common/fix/wh-leftbanner\.jpg -# ||qiyipic.com/common/fix/rebull_ (easylistchina+easylist.txt: 4315) +# ||qiyipic.com/common/fix/rebull_ (easylistchina.txt: 4306) .qiyipic.com/common/fix/rebull_ -# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina+easylist.txt: 4314) +# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina.txt: 4305) .qiyipic.com/common/fix/dasdasdasdk\.jpg -# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina+easylist.txt: 4313) +# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina.txt: 4304) .qiyipic.com/common/20150528/diyizhuanqu\.jpg -# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina+easylist.txt: 4312) +# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina.txt: 4303) .qiyipic.com/common/20141021/sanjiukehuzhuanqu\.jpg -# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina+easylist.txt: 4311) +# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina.txt: 4302) .qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79\.png -# ||qiyipic.com/common/*tonglan (easylistchina+easylist.txt: 4310) +# ||qiyipic.com/common/*tonglan (easylistchina.txt: 4301) .qiyipic.com/common/.*tonglan -# ||qiyipic.com/common/*_aLink (easylistchina+easylist.txt: 4309) +# ||qiyipic.com/common/*_aLink (easylistchina.txt: 4300) .qiyipic.com/common/.*_aLink -# ||qiyipic.com/common/*980x (easylistchina+easylist.txt: 4308) +# ||qiyipic.com/common/*980x (easylistchina.txt: 4299) .qiyipic.com/common/.*980x -# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina+easylist.txt: 4307) +# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina.txt: 4298) .qiyipic.com/common/.*/kehuzhuanqu -# ||qiyipic.com/common/*/banner.jpg (easylistchina+easylist.txt: 4306) +# ||qiyipic.com/common/*/banner.jpg (easylistchina.txt: 4297) .qiyipic.com/common/.*/banner\.jpg -# ||qiyipic.com/common/*/baiyao. (easylistchina+easylist.txt: 4305) +# ||qiyipic.com/common/*/baiyao. (easylistchina.txt: 4296) .qiyipic.com/common/.*/baiyao\. -# ||qiyipic.com/common/*/980 (easylistchina+easylist.txt: 4304) +# ||qiyipic.com/common/*/980 (easylistchina.txt: 4295) .qiyipic.com/common/.*/980 -# ||qiyipic.com/common/*/255x205 (easylistchina+easylist.txt: 4303) +# ||qiyipic.com/common/*/255x205 (easylistchina.txt: 4294) .qiyipic.com/common/.*/255x205 -# ||qiyipic.com/common/*/250230. (easylistchina+easylist.txt: 4302) +# ||qiyipic.com/common/*/250230. (easylistchina.txt: 4293) .qiyipic.com/common/.*/250230\. -# ||qiyipic.com/common/*/250-230. (easylistchina+easylist.txt: 4301) +# ||qiyipic.com/common/*/250-230. (easylistchina.txt: 4292) .qiyipic.com/common/.*/250-230\. -# ||qiyipic.com/common/*/225x230.jpg (easylistchina+easylist.txt: 4300) +# ||qiyipic.com/common/*/225x230.jpg (easylistchina.txt: 4291) .qiyipic.com/common/.*/225x230\.jpg -# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina+easylist.txt: 4299) +# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina.txt: 4290) .qiyipic.com/common/.*%E9%80%9A%E6%A0%8F -# ||qiuziti.com/meitu/ddd.gif (easylistchina+easylist.txt: 4297) +# ||qiuziti.com/meitu/ddd.gif (easylistchina.txt: 4288) .qiuziti.com/meitu/ddd\.gif -# ||qiuziti.com/img/rightp20.gif (easylistchina+easylist.txt: 4296) +# ||qiuziti.com/img/rightp20.gif (easylistchina.txt: 4287) .qiuziti.com/img/rightp20\.gif -# ||qiuyi.cn/qiuyi/cooper/ (easylistchina+easylist.txt: 4295) +# ||qiuyi.cn/qiuyi/cooper/ (easylistchina.txt: 4286) .qiuyi.cn/qiuyi/cooper/ -# ||qitete.com/sp/ (easylistchina+easylist.txt: 4294) +# ||qitete.com/sp/ (easylistchina.txt: 4285) .qitete.com/sp/ -# ||qiqibu.com/js/*.gif (easylistchina+easylist.txt: 4293) +# ||qiqibu.com/js/*.gif (easylistchina.txt: 4284) .qiqibu.com/js/.*\.gif -# ||qiporn.com/media/banners/ (easylistchina+easylist.txt: 4292) -.qiporn.com/media/banners/ -# ||qingkong.net/a/980x90_1.jpg (easylistchina+easylist.txt: 4290) +# ||qingkong.net/a/980x90_1.jpg (easylistchina.txt: 4282) .qingkong.net/a/980x90_1\.jpg -# ||qingkai.com/gg_img/ (easylistchina+easylist.txt: 4289) +# ||qingkai.com/gg_img/ (easylistchina.txt: 4281) .qingkai.com/gg_img/ -# ||qingkai.com/2009/html/top.htm (easylistchina+easylist.txt: 4288) +# ||qingkai.com/2009/html/top.htm (easylistchina.txt: 4280) .qingkai.com/2009/html/top\.htm -# ||qimm.org/Uploads/ad/ (easylistchina+easylist.txt: 4287) +# ||qimm.org/Uploads/ad/ (easylistchina.txt: 4279) .qimm.org/Uploads/ad/ -# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina+easylist.txt: 4286) +# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina.txt: 4278) .qilanxiaozhu.*./(.*/)?data/attachment/portal/ -# ||qikuyou.com/images/images/250.png (easylistchina+easylist.txt: 4285) +# ||qikuyou.com/images/images/250.png (easylistchina.txt: 4277) .qikuyou.com/images/images/250\.png -# ||qihoo.com/hot/text.html?site= (easylistchina+easylist.txt: 4284) +# ||qihoo.com/hot/text.html?site= (easylistchina.txt: 4276) .qihoo.com/hot/text\.html\?site= -# ||qihaa.cn/js/ (easylistchina+easylist.txt: 4283) +# ||qihaa.cn/js/ (easylistchina.txt: 4275) .qihaa.cn/js/ -# ||qidian.com/ploy/cloudary08/ (easylistchina+easylist.txt: 4282) +# ||qidian.com/ploy/cloudary08/ (easylistchina.txt: 4274) .qidian.com/ploy/cloudary08/ -# ||qidian.com/ploy/*swf (easylistchina+easylist.txt: 4281) +# ||qidian.com/ploy/*swf (easylistchina.txt: 4273) .qidian.com/ploy/.*swf -# ||qidian.com/Javascript/usia (easylistchina+easylist.txt: 4280) +# ||qidian.com/Javascript/usia (easylistchina.txt: 4272) .qidian.com/Javascript/usia -# ||qidian.com/javascript/SNDAADAltern.js (easylistchina+easylist.txt: 4279) +# ||qidian.com/javascript/SNDAADAltern.js (easylistchina.txt: 4271) .qidian.com/javascript/SNDAADAltern\.js -# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina+easylist.txt: 4278) +# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina.txt: 4270) .qidian.com/Javascript/NewSNDAPop\.js -# ||qidian.com/Javascript/ksjlajUysi (easylistchina+easylist.txt: 4277) +# ||qidian.com/Javascript/ksjlajUysi (easylistchina.txt: 4269) .qidian.com/Javascript/ksjlajUysi -# ||qidian.com/Javascript/kiywyq_ (easylistchina+easylist.txt: 4276) +# ||qidian.com/Javascript/kiywyq_ (easylistchina.txt: 4268) .qidian.com/Javascript/kiywyq_ -# ||qidian.com/Javascript/DoublePop.js (easylistchina+easylist.txt: 4275) +# ||qidian.com/Javascript/DoublePop.js (easylistchina.txt: 4267) .qidian.com/Javascript/DoublePop\.js -# ||qidian.com/Images/book_*_other (easylistchina+easylist.txt: 4274) +# ||qidian.com/Images/book_*_other (easylistchina.txt: 4266) .qidian.com/Images/book_.*_other -# ||qianzhan.com/html/*_txtlinks.html (easylistchina+easylist.txt: 4273) +# ||qianzhan.com/html/*_txtlinks.html (easylistchina.txt: 4265) .qianzhan.com/html/.*_txtlinks\.html -# ||qianmu.org/resource/js/jquery.ads.js (easylistchina+easylist.txt: 4272) +# ||qianmu.org/resource/js/jquery.ads.js (easylistchina.txt: 4264) .qianmu.org/resource/js/jquery\.ads\.js -# ||qiangdiao.com/pr.png (easylistchina+easylist.txt: 4270) +# ||qiangdiao.com/pr.png (easylistchina.txt: 4262) .qiangdiao.com/pr\.png -# ||qhnews.com/tupian/ (easylistchina+easylist.txt: 4269) +# ||qhnews.com/tupian/ (easylistchina.txt: 4261) .qhnews.com/tupian/ -# ||qfans.net/js/open (easylistchina+easylist.txt: 4268) +# ||qhimg.com/t01752fdc322b424d08.jpg (easylistchina.txt: 4260) +.qhimg.com/t01752fdc322b424d08\.jpg +# ||qhimg.com/t01119598c484b6ca8e.jpg (easylistchina.txt: 4259) +.qhimg.com/t01119598c484b6ca8e\.jpg +# ||qhimg.com/t0107605853c9b6d004.jpg (easylistchina.txt: 4258) +.qhimg.com/t0107605853c9b6d004\.jpg +# ||qfans.net/js/open (easylistchina.txt: 4257) .qfans.net/js/open -# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina+easylist.txt: 4267) +# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina.txt: 4256) .qdmm.com/javascript/SNDAADAltern\.js -# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina+easylist.txt: 4266) +# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina.txt: 4255) .qdmm.com/javascript/NewSNDAPop\.js -# ||qdjimo.com/html/js/ (easylistchina+easylist.txt: 4265) +# ||qdjimo.com/html/js/ (easylistchina.txt: 4254) .qdjimo.com/html/js/ -# ||qbox.me/ftq_ (easylistchina+easylist.txt: 4264) +# ||qbox.me/ftq_ (easylistchina.txt: 4253) .qbox.me/ftq_ -# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina+easylist.txt: 4263) +# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina.txt: 4252) .qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo\.jpg -# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina+easylist.txt: 4262) +# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina.txt: 4251) .qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6\.gif -# ||q.cn/images/notepad.gif (easylistchina+easylist.txt: 4261) +# ||q.cn/images/notepad.gif (easylistchina.txt: 4250) .q.cn/images/notepad\.gif -# ||q.cn/images/floater_ (easylistchina+easylist.txt: 4260) +# ||q.cn/images/floater_ (easylistchina.txt: 4249) .q.cn/images/floater_ -# ||pzzc.net/data/attachment/ad2/ (easylistchina+easylist.txt: 4258) +# ||pzzc.net/data/attachment/ad2/ (easylistchina.txt: 4247) .pzzc.net/data/attachment/ad2/ -# ||pzxw.cn/1212banner (easylistchina+easylist.txt: 4257) +# ||pzxw.cn/1212banner (easylistchina.txt: 4246) .pzxw.cn/1212banner -# ||putonghua520.com/skins/10ym/tj (easylistchina+easylist.txt: 4256) +# ||putonghua520.com/skins/10ym/tj (easylistchina.txt: 4245) .putonghua520.com/skins/10ym/tj -# ||putonghua520.com/skins/10ym/123.jpg (easylistchina+easylist.txt: 4255) +# ||putonghua520.com/skins/10ym/123.jpg (easylistchina.txt: 4244) .putonghua520.com/skins/10ym/123\.jpg -# ||publish.ad.youth.cn^ (easylistchina+easylist.txt: 4254) +# ||publish.ad.youth.cn^ (easylistchina.txt: 4243) .publish.ad.youth.cn -# ||publicize.liao1.com^ (easylistchina+easylist.txt: 4253) +# ||publicize.liao1.com^ (easylistchina.txt: 4242) .publicize.liao1.com -# ||pub.sxrtv.com/crossdomain.xml (easylistchina+easylist.txt: 4252) +# ||pub.sxrtv.com/crossdomain.xml (easylistchina.txt: 4241) .pub.sxrtv.com/crossdomain\.xml -# ||pub.stockstar.com/feedback/ (easylistchina+easylist.txt: 4251) +# ||pub.stockstar.com/feedback/ (easylistchina.txt: 4240) .pub.stockstar.com/feedback/ -# ||pub.mop.com^ (easylistchina+easylist.txt: 4250) +# ||pub.mop.com^ (easylistchina.txt: 4239) .pub.mop.com -# ||pub.funshion.com^ (easylistchina+easylist.txt: 4249) +# ||pub.funshion.com^ (easylistchina.txt: 4238) .pub.funshion.com -# ||ptraveler.com/pt.js (easylistchina+easylist.txt: 4248) -.ptraveler.com/pt\.js -# ||ptfish.com/08html/ (easylistchina+easylist.txt: 4247) +# ||ptfish.com/08html/ (easylistchina.txt: 4237) .ptfish.com/08html/ -# ||ptbus.com/s.js (easylistchina+easylist.txt: 4245) +# ||ptbus.com/s.js (easylistchina.txt: 4235) .ptbus.com/s\.js -# ||ptbs.sme.gov.cn/images/231.gif (easylistchina+easylist.txt: 4244) +# ||ptbs.sme.gov.cn/images/231.gif (easylistchina.txt: 4234) .ptbs.sme.gov.cn/images/231\.gif -# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina+easylist.txt: 4243) +# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina.txt: 4233) .pstatp.com/resource/toutiao_wap/static/js/lib/ads_ -# ||ps123.net/MyFile/ (easylistchina+easylist.txt: 4242) +# ||ps123.net/MyFile/ (easylistchina.txt: 4232) .ps123.net/MyFile/ -# ||pro.iweihai.cn^ (easylistchina+easylist.txt: 4240) +# ||pro.iweihai.cn^ (easylistchina.txt: 4230) .pro.iweihai.cn -# ||price.com.hk/scripts/ysm.js (easylistchina+easylist.txt: 4239) +# ||price.com.hk/scripts/ysm.js (easylistchina.txt: 4229) .price.com.hk/scripts/ysm\.js -# ||price.com.hk/dfp_price.php? (easylistchina+easylist.txt: 4238) +# ||price.com.hk/dfp_price.php? (easylistchina.txt: 4228) .price.com.hk/dfp_price\.php\? -# ||prettyvirgin.com/js/show.html (easylistchina+easylist.txt: 4237) +# ||prettyvirgin.com/js/show.html (easylistchina.txt: 4227) .prettyvirgin.com/js/show\.html -# ||prettyvirgin.com/images/banners/ (easylistchina+easylist.txt: 4236) +# ||prettyvirgin.com/images/banners/ (easylistchina.txt: 4226) .prettyvirgin.com/images/banners/ -# ||pptiyu.com/index/js/float.js (easylistchina+easylist.txt: 4235) +# ||pptiyu.com/index/js/float.js (easylistchina.txt: 4225) .pptiyu.com/index/js/float\.js -# ||ppsj.com.cn/ppsj728.gif (easylistchina+easylist.txt: 4234) +# ||ppsj.com.cn/ppsj728.gif (easylistchina.txt: 4224) .ppsj.com.cn/ppsj728\.gif -# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina+easylist.txt: 4233) +# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina.txt: 4223) .ppsj.com.cn/images/usa_250_120\.gif -# ||ppsj.com.cn/images/ppsj300.gif (easylistchina+easylist.txt: 4232) +# ||ppsj.com.cn/images/ppsj300.gif (easylistchina.txt: 4222) .ppsj.com.cn/images/ppsj300\.gif -# ||pp.7060.la^ (easylistchina+easylist.txt: 4231) +# ||pp.7060.la^ (easylistchina.txt: 4221) .pp.7060.la -# ||poxiao.com/template/default/images/12345.js (easylistchina+easylist.txt: 4230) +# ||poxiao.com/template/default/images/12345.js (easylistchina.txt: 4220) .poxiao.com/template/default/images/12345\.js -# ||poster.weather.com.cn^ (easylistchina+easylist.txt: 4229) +# ||poster.weather.com.cn^ (easylistchina.txt: 4219) .poster.weather.com.cn -# ||poppur.com/banner/962x100.gif (easylistchina+easylist.txt: 4228) +# ||poppur.com/banner/962x100.gif (easylistchina.txt: 4218) .poppur.com/banner/962x100\.gif -# ||popme.163.com/js/vedioad_ (easylistchina+easylist.txt: 4227) +# ||popme.163.com/js/vedioad_ (easylistchina.txt: 4217) .popme.163.com/js/vedioad_ -# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina+easylist.txt: 4226) +# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina.txt: 4216) .poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408\.jpg -# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina+easylist.txt: 4225) +# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina.txt: 4215) .poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067\.gif -# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina+easylist.txt: 4224) +# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina.txt: 4214) .poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072\.gif -# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina+easylist.txt: 4223) +# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina.txt: 4213) .poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064\.jpg -# ||plurk.com/Ads/ (easylistchina+easylist.txt: 4222) +# ||plurk.com/Ads/ (easylistchina.txt: 4212) .plurk.com/Ads/ -# ||playgm.cn/data/attachment/portal/ (easylistchina+easylist.txt: 4221) +# ||playgm.cn/data/attachment/portal/ (easylistchina.txt: 4211) .playgm.cn/data/attachment/portal/ -# ||playad.xjmg.com^ (easylistchina+easylist.txt: 4220) +# ||playad.xjmg.com^ (easylistchina.txt: 4210) .playad.xjmg.com -# ||pjtime.com/js/show_ad (easylistchina+easylist.txt: 4219) +# ||pjtime.com/js/show_ad (easylistchina.txt: 4209) .pjtime.com/js/show_ad -# ||pixfs.net/js/mib_falcon. (easylistchina+easylist.txt: 4218) +# ||pixfs.net/js/mib_falcon. (easylistchina.txt: 4208) .pixfs.net/js/mib_falcon\. -# ||pixfs.net/js/mib.min.js (easylistchina+easylist.txt: 4217) +# ||pixfs.net/js/mib.min.js (easylistchina.txt: 4207) .pixfs.net/js/mib\.min\.js -# ||pipi.cn/player/ (easylistchina+easylist.txt: 4216) +# ||pipi.cn/player/ (easylistchina.txt: 4206) .pipi.cn/player/ -# ||pingpang.info/uploadfile/tsp.gif (easylistchina+easylist.txt: 4215) +# ||pingpang.info/uploadfile/tsp.gif (easylistchina.txt: 4205) .pingpang.info/uploadfile/tsp\.gif -# ||pingpang.info/uploadfile/butterfly.gif (easylistchina+easylist.txt: 4214) +# ||pingpang.info/uploadfile/butterfly.gif (easylistchina.txt: 4204) .pingpang.info/uploadfile/butterfly\.gif -# ||pingpang.info/uploadfile/950X90B.gif (easylistchina+easylist.txt: 4213) +# ||pingpang.info/uploadfile/950X90B.gif (easylistchina.txt: 4203) .pingpang.info/uploadfile/950X90B\.gif -# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina+easylist.txt: 4212) +# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina.txt: 4202) .pingpang.info/themes/v1\.0/images/yasaka\. -# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina+easylist.txt: 4211) +# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina.txt: 4201) .pingpang.info/bbs/UploadFile/2014-5/201455214543955851\.gif -# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina+easylist.txt: 4210) +# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina.txt: 4200) .pingpang.info/bbs/UploadFile/2014-11/20141113852238131\.jpg -# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina+easylist.txt: 4209) +# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina.txt: 4199) .pingpang.info/bbs/UploadFile/2013-11/xiom\.gif -# ||pingpang.info/banner/ (easylistchina+easylist.txt: 4208) +# ||pingpang.info/banner/ (easylistchina.txt: 4198) .pingpang.info/banner/ -# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina+easylist.txt: 4207) +# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina.txt: 4197) .pimg.tw/ifans/1399368662-4247048381\.png -# ||pifa.fobshanghai.com/link/ (easylistchina+easylist.txt: 4206) +# ||pifa.fobshanghai.com/link/ (easylistchina.txt: 4196) .pifa.fobshanghai.com/link/ -# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina+easylist.txt: 4204) +# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina.txt: 4194) .pics.wanlibo.com/js/pagemodulestat\.js -# ||pic.zol-img.com.cn^*/box (easylistchina+easylist.txt: 4203) +# ||pic.zol-img.com.cn^*/box (easylistchina.txt: 4193) .pic.zol-img.com.cn/.*/box -# ||pic.zol-img.com.cn/20*backgrou (easylistchina+easylist.txt: 4201) +# ||pic.zol-img.com.cn/20*backgrou (easylistchina.txt: 4191) .pic.zol-img.com.cn/20.*backgrou -# ||pic.yupoo.com/showflash/ (easylistchina+easylist.txt: 4200) +# ||pic.yupoo.com/showflash/ (easylistchina.txt: 4190) .pic.yupoo.com/showflash/ -# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina+easylist.txt: 4199) +# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina.txt: 4189) .pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3\.gif -# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina+easylist.txt: 4198) +# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina.txt: 4188) .pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR\.png -# ||pic.xgo-img.com.cn^ (easylistchina+easylist.txt: 4197) +# ||pic.xgo-img.com.cn^ (easylistchina.txt: 4187) .pic.xgo-img.com.cn -# ||pic.wpdaxue.com^*.js (easylistchina+easylist.txt: 4196) +# ||pic.wpdaxue.com^*.js (easylistchina.txt: 4186) .pic.wpdaxue.com/.*\.js -# ||pic.taian.com^ (easylistchina+easylist.txt: 4195) +# ||pic.taian.com^ (easylistchina.txt: 4185) .pic.taian.com -# ||pic.jd-bbs.com^*.swf (easylistchina+easylist.txt: 4193) +# ||pic.jd-bbs.com^*.swf (easylistchina.txt: 4183) .pic.jd-bbs.com/.*\.swf -# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina+easylist.txt: 4192) +# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina.txt: 4182) .pic.gongkong.com/UploadPic/gongkong/ -# ||pic.fengniao.com^ (easylistchina+easylist.txt: 4191) +# ||pic.fengniao.com^ (easylistchina.txt: 4181) .pic.fengniao.com -# ||pic.ea3w.com^ (easylistchina+easylist.txt: 4190) +# ||pic.ea3w.com^ (easylistchina.txt: 4180) .pic.ea3w.com -# ||pic.959.cn/media/js/ (easylistchina+easylist.txt: 4189) +# ||pic.959.cn/media/js/ (easylistchina.txt: 4179) .pic.959.cn/media/js/ -# ||pic.2u.com.cn^ (easylistchina+easylist.txt: 4188) +# ||pic.2u.com.cn^ (easylistchina.txt: 4178) .pic.2u.com.cn -# ||pic.111cn.net^ (easylistchina+easylist.txt: 4187) +# ||pic.111cn.net^ (easylistchina.txt: 4177) .pic.111cn.net -# ||pic.0597kk.com^ (easylistchina+easylist.txt: 4186) +# ||pic.0597kk.com^ (easylistchina.txt: 4176) .pic.0597kk.com -# ||piaoliang.com/js/gg.js (easylistchina+easylist.txt: 4185) +# ||piaoliang.com/js/gg.js (easylistchina.txt: 4175) .piaoliang.com/js/gg\.js -# ||piaohua.com/js/wlfloat.js (easylistchina+easylist.txt: 4183) +# ||piaohua.com/js/wlfloat.js (easylistchina.txt: 4173) .piaohua.com/js/wlfloat\.js -# ||piaodown.com/other/*.js (easylistchina+easylist.txt: 4182) +# ||piaodown.com/other/*.js (easylistchina.txt: 4172) .piaodown.com/other/.*\.js -# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina+easylist.txt: 4181) +# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina.txt: 4171) .piao.com.cn/Flash/Scripts/FloatLeftRight_ -# ||phpfans.net/image/sponsors/ (easylistchina+easylist.txt: 4180) +# ||phpfans.net/image/sponsors/ (easylistchina.txt: 4170) .phpfans.net/image/sponsors/ -# ||phpcms.cn/statics/images/video/ad (easylistchina+easylist.txt: 4179) +# ||phpcms.cn/statics/images/video/ad (easylistchina.txt: 4169) .phpcms.cn/statics/images/video/ad -# ||phpad.cqnews.net^ (easylistchina+easylist.txt: 4178) +# ||phpad.cqnews.net^ (easylistchina.txt: 4168) .phpad.cqnews.net -# ||photofans.cn/cooperator/banner/ (easylistchina+easylist.txt: 4177) +# ||photofans.cn/cooperator/banner/ (easylistchina.txt: 4167) .photofans.cn/cooperator/banner/ -# ||photo.erji.com^*.swf (easylistchina+easylist.txt: 4176) +# ||photo.erji.com^*.swf (easylistchina.txt: 4166) .photo.erji.com/.*\.swf -# ||photo.erji.com^*.gif (easylistchina+easylist.txt: 4175) +# ||photo.erji.com^*.gif (easylistchina.txt: 4165) .photo.erji.com/.*\.gif -# ||photo.erji.com/saha.jpg (easylistchina+easylist.txt: 4174) +# ||photo.erji.com/saha.jpg (easylistchina.txt: 4164) .photo.erji.com/saha\.jpg -# ||pharmnet.com.cn/js/float_div.js (easylistchina+easylist.txt: 4173) +# ||pharmnet.com.cn/js/float_div.js (easylistchina.txt: 4163) .pharmnet.com.cn/js/float_div\.js -# ||pharmnet.com.cn/cnbanner/ (easylistchina+easylist.txt: 4172) +# ||pharmnet.com.cn/cnbanner/ (easylistchina.txt: 4162) .pharmnet.com.cn/cnbanner/ -# ||ph66.com/js/float.js (easylistchina+easylist.txt: 4171) +# ||ph66.com/js/float.js (easylistchina.txt: 4161) .ph66.com/js/float\.js -# ||ph66.com/bbsgg/ (easylistchina+easylist.txt: 4170) +# ||ph66.com/bbsgg/ (easylistchina.txt: 4160) .ph66.com/bbsgg/ -# ||ph66.com/attachment/*.swf (easylistchina+easylist.txt: 4169) +# ||ph66.com/attachment/*.swf (easylistchina.txt: 4159) .ph66.com/attachment/.*\.swf -# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina+easylist.txt: 4168) +# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina.txt: 4158) .pgzhibo.com/uploads/image/20150902/1441126837\.jpg -# ||pgzhibo.com/uploads/image/20*.gif (easylistchina+easylist.txt: 4167) +# ||pgzhibo.com/uploads/image/20*.gif (easylistchina.txt: 4157) .pgzhibo.com/uploads/image/20.*\.gif -# ||pg.udn.com/BT/*.swf (easylistchina+easylist.txt: 4166) +# ||pg.udn.com/BT/*.swf (easylistchina.txt: 4156) .pg.udn.com/BT/.*\.swf -# ||people.com.cn/img/gjt/ (easylistchina+easylist.txt: 4163) +# ||people.com.cn/img/gjt/ (easylistchina.txt: 4153) .people.com.cn/img/gjt/ -# ||people.com.cn/img/2013people/wza/domready (easylistchina+easylist.txt: 4162) +# ||people.com.cn/img/2013people/wza/domready (easylistchina.txt: 4152) .people.com.cn/img/2013people/wza/domready -# ||people.com.cn/adv/ (easylistchina+easylist.txt: 4161) +# ||people.com.cn/adv/ (easylistchina.txt: 4151) .people.com.cn/adv/ -# ||people.cn^*/js/m.js (easylistchina+easylist.txt: 4160) +# ||people.cn^*/js/m.js (easylistchina.txt: 4150) .people.cn/.*/js/m\.js -# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina+easylist.txt: 4159) +# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina.txt: 4149) .penglai.com.cn/UploadFile/image/.*\.gif -# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina+easylist.txt: 4158) +# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina.txt: 4148) .peasyun.com/Uploads/Thumbs/advs_ -# ||pd.xxhh.com/list.js (easylistchina+easylist.txt: 4157) +# ||pd.xxhh.com/list.js (easylistchina.txt: 4147) .pd.xxhh.com/list\.js -# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina+easylist.txt: 4156) +# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina.txt: 4146) .pcworld.com.cn/Article/UploadFiles/201403/2014031016150885\.jpg -# ||pcstore.com.tw/css/myacc_init.js (easylistchina+easylist.txt: 4155) +# ||pcstore.com.tw/css/myacc_init.js (easylistchina.txt: 4145) .pcstore.com.tw/css/myacc_init\.js -# ||pcs1.app.joy.cn^ (easylistchina+easylist.txt: 4154) +# ||pcs1.app.joy.cn^ (easylistchina.txt: 4144) .pcs1.app.joy.cn -# ||pcpp.com.cn/news/ad/ (easylistchina+easylist.txt: 4153) +# ||pcpp.com.cn/news/ad/ (easylistchina.txt: 4143) .pcpp.com.cn/news/ad/ -# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina+easylist.txt: 4152) +# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina.txt: 4142) .pcpp.com.cn/news/a/.*_article_right\.html -# ||pcpp.com.cn*/pcpp.jpg (easylistchina+easylist.txt: 4151) +# ||pcpp.com.cn*/pcpp.jpg (easylistchina.txt: 4141) .pcpp.com.cn*./(.*/)?pcpp\.jpg -# ||pconline.com.cn/zt/*/double11/ (easylistchina+easylist.txt: 4150) -.pconline.com.cn/zt/.*/double11/ -# ||pconline.com.cn/test/*.html? (easylistchina+easylist.txt: 4149) +# ||pconline.com.cn/test/*.html? (easylistchina.txt: 4140) .pconline.com.cn/test/.*\.html\? -# ||pconline.com.cn/pconline/download/fz/ (easylistchina+easylist.txt: 4148) +# ||pconline.com.cn/pconline/download/fz/ (easylistchina.txt: 4139) .pconline.com.cn/pconline/download/fz/ -# ||pconline.com.cn/js/ivy.js (easylistchina+easylist.txt: 4147) +# ||pconline.com.cn/js/ivy.js (easylistchina.txt: 4138) .pconline.com.cn/js/ivy\.js -# ||pconline.com.cn/js/ad_ (easylistchina+easylist.txt: 4146) +# ||pconline.com.cn/js/ad_ (easylistchina.txt: 4137) .pconline.com.cn/js/ad_ -# ||pconline.com.cn/intelcorefamily/ (easylistchina+easylist.txt: 4145) +# ||pconline.com.cn/intelcorefamily/ (easylistchina.txt: 4136) .pconline.com.cn/intelcorefamily/ -# ||pconline.com.cn/download/*/intf*.js (easylistchina+easylist.txt: 4144) +# ||pconline.com.cn/download/*/intf*.js (easylistchina.txt: 4135) .pconline.com.cn/download/.*/intf.*\.js -# ||pconline.com.cn/_hux_/ (easylistchina+easylist.txt: 4143) +# ||pconline.com.cn/_hux_/ (easylistchina.txt: 4134) .pconline.com.cn/_hux_/ -# ||pcjishu.com/other/yj300x3006.jpg (easylistchina+easylist.txt: 4142) +# ||pcjishu.com/other/yj300x3006.jpg (easylistchina.txt: 4133) .pcjishu.com/other/yj300x3006\.jpg -# ||pchome.com.tw/js/idlead.js (easylistchina+easylist.txt: 4141) +# ||pchome.com.tw/js/idlead.js (easylistchina.txt: 4132) .pchome.com.tw/js/idlead\.js -# ||pcgames.com.cn/jctj/ (easylistchina+easylist.txt: 4139) +# ||pcgames.com.cn/jctj/ (easylistchina.txt: 4130) .pcgames.com.cn/jctj/ -# ||pcgames.com.cn/g/ (easylistchina+easylist.txt: 4138) +# ||pcgames.com.cn/g/ (easylistchina.txt: 4129) .pcgames.com.cn/g/ -# ||pcgames.com.cn/download/newnq/ (easylistchina+easylist.txt: 4137) +# ||pcgames.com.cn/download/newnq/ (easylistchina.txt: 4128) .pcgames.com.cn/download/newnq/ -# ||pccoo.cn/js/dlv1.0.js (easylistchina+easylist.txt: 4136) +# ||pccoo.cn/js/dlv1.0.js (easylistchina.txt: 4127) .pccoo.cn/js/dlv1\.0\.js -# ||pcbeta.com/static/image/microsoftstore/ (easylistchina+easylist.txt: 4135) +# ||pcbeta.com/static/image/microsoftstore/ (easylistchina.txt: 4126) .pcbeta.com/static/image/microsoftstore/ -# ||pc3w.com/js/ (easylistchina+easylist.txt: 4134) +# ||pc3w.com/js/ (easylistchina.txt: 4125) .pc3w.com/js/ -# ||pc141.com/statics/new_img/info_left.png (easylistchina+easylist.txt: 4133) +# ||pc141.com/statics/new_img/info_left.png (easylistchina.txt: 4124) .pc141.com/statics/new_img/info_left\.png -# ||pc0359.cn/js/un.js (easylistchina+easylist.txt: 4132) +# ||pc0359.cn/js/un.js (easylistchina.txt: 4123) .pc0359.cn/js/un\.js -# ||pc0359.cn/data/xzb_haha.js (easylistchina+easylist.txt: 4131) +# ||pc0359.cn/data/xzb_haha.js (easylistchina.txt: 4122) .pc0359.cn/data/xzb_haha\.js -# ||panpan.org/templets/ad/ (easylistchina+easylist.txt: 4130) +# ||panzz.com/file/ads/ (easylistchina.txt: 4121) +.panzz.com/file/ads/ +# ||panpan.org/templets/ad/ (easylistchina.txt: 4120) .panpan.org/templets/ad/ -# ||panpan.org/plus/img/ (easylistchina+easylist.txt: 4129) +# ||panpan.org/plus/img/ (easylistchina.txt: 4119) .panpan.org/plus/img/ -# ||panpan.org/other/ (easylistchina+easylist.txt: 4128) +# ||panpan.org/other/ (easylistchina.txt: 4118) .panpan.org/other/ -# ||panpan.org/js/google (easylistchina+easylist.txt: 4127) +# ||panpan.org/js/google (easylistchina.txt: 4117) .panpan.org/js/google -# ||panda.kdnet.net^ (easylistchina+easylist.txt: 4126) +# ||panda.kdnet.net^ (easylistchina.txt: 4116) .panda.kdnet.net -# ||p8u.hinet.net^ (easylistchina+easylist.txt: 4125) +# ||p8u.hinet.net^ (easylistchina.txt: 4115) .p8u.hinet.net -# ||p4p.sina.com.cn^ (easylistchina+easylist.txt: 4124) +# ||p4p.sina.com.cn^ (easylistchina.txt: 4114) .p4p.sina.com.cn -# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina+easylist.txt: 4123) +# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina.txt: 4113) .p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124\.jpg -# ||p.zol.com.cn/download/detail.js (easylistchina+easylist.txt: 4122) +# ||p.zol.com.cn/download/detail.js (easylistchina.txt: 4112) .p.zol.com.cn/download/detail\.js -# ||p.zol-img.com.cn^ (easylistchina+easylist.txt: 4121) +# ||p.zol-img.com.cn^ (easylistchina.txt: 4111) .p.zol-img.com.cn -# ||p.szonline.net^ (easylistchina+easylist.txt: 4120) +# ||p.szonline.net^ (easylistchina.txt: 4110) .p.szonline.net -# ||p.kugou.com/?id= (easylistchina+easylist.txt: 4119) +# ||p.kugou.com/?id= (easylistchina.txt: 4109) .p.kugou.com/\?id= -# ||p.aty.sohu.com/p?cat= (easylistchina+easylist.txt: 4118) +# ||p.aty.sohu.com/p?cat= (easylistchina.txt: 4108) .p.aty.sohu.com/p\?cat= -# ||p.37youyou.com/*.jpg (easylistchina+easylist.txt: 4117) +# ||p.37youyou.com/*.jpg (easylistchina.txt: 4107) .p.37youyou.com/.*\.jpg -# ||oyksoft.com/show/s.php/ (easylistchina+easylist.txt: 4116) +# ||oyksoft.com/show/s.php/ (easylistchina.txt: 4106) .oyksoft.com/show/s\.php/ -# ||overseaschinesemedia.com/img/*.gif (easylistchina+easylist.txt: 4115) +# ||overseaschinesemedia.com/img/*.gif (easylistchina.txt: 4105) .overseaschinesemedia.com/img/.*\.gif -# ||outofmemory.cn/static/tgs/ (easylistchina+easylist.txt: 4113) +# ||outofmemory.cn/static/tgs/ (easylistchina.txt: 4103) .outofmemory.cn/static/tgs/ -# ||ousns.net/daohang/ (easylistchina+easylist.txt: 4112) +# ||ousns.net/daohang/ (easylistchina.txt: 4102) .ousns.net/daohang/ -# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina+easylist.txt: 4111) +# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina.txt: 4101) .oschina.net/uploads/cooperation/.*_banner_ -# ||oschina.net/uploads/ad/ (easylistchina+easylist.txt: 4110) +# ||oschina.net/uploads/ad/ (easylistchina.txt: 4100) .oschina.net/uploads/ad/ -# ||orzx.im/js/*pop (easylistchina+easylist.txt: 4109) +# ||orzx.im/js/*pop (easylistchina.txt: 4099) .orzx.im/js/.*pop -# ||orzx.im/Document/union/ (easylistchina+easylist.txt: 4108) +# ||orzx.im/Document/union/ (easylistchina.txt: 4098) .orzx.im/Document/union/ -# ||orzx.im/Document/recommend/flashpoint.html (easylistchina+easylist.txt: 4107) +# ||orzx.im/Document/recommend/flashpoint.html (easylistchina.txt: 4097) .orzx.im/Document/recommend/flashpoint\.html -# ||orsoon.com//images/ku86.jpg (easylistchina+easylist.txt: 4106) -# ||orsoon.com*/zhuanti/ (easylistchina+easylist.txt: 4105) +# ||orsoon.com//images/ku86.jpg (easylistchina.txt: 4096) +# ||orsoon.com*/zhuanti/ (easylistchina.txt: 4095) .orsoon.com*./(.*/)?zhuanti/ -# ||open-open.com^*_banner. (easylistchina+easylist.txt: 4104) +# ||open-open.com^*_banner. (easylistchina.txt: 4094) .open-open.com/.*_banner\. -# ||open-open.com/lag336x280.png (easylistchina+easylist.txt: 4103) +# ||open-open.com/lag336x280.png (easylistchina.txt: 4093) .open-open.com/lag336x280\.png -# ||open-open.com/jp72890.jpg (easylistchina+easylist.txt: 4102) +# ||open-open.com/jp72890.jpg (easylistchina.txt: 4092) .open-open.com/jp72890\.jpg -# ||open-open.com/jp240200.jpg (easylistchina+easylist.txt: 4101) +# ||open-open.com/jp240200.jpg (easylistchina.txt: 4091) .open-open.com/jp240200\.jpg -# ||open-open.com/j300250n.jpg (easylistchina+easylist.txt: 4100) +# ||open-open.com/j300250n.jpg (easylistchina.txt: 4090) .open-open.com/j300250n\.jpg -# ||ooxxbbs.com/data/attachment/forum/*.gif (easylistchina+easylist.txt: 4099) -.ooxxbbs.com/data/attachment/forum/.*\.gif -# ||onlinedown.net/zhuangjiad/ (easylistchina+easylist.txt: 4098) +# ||onlinedown.net/zhuangjiad/ (easylistchina.txt: 4089) .onlinedown.net/zhuangjiad/ -# ||online.cq.cn/huodong/css/ (easylistchina+easylist.txt: 4096) +# ||online.cq.cn/huodong/css/ (easylistchina.txt: 4087) .online.cq.cn/huodong/css/ -# ||online.cq.cn/commonweb/commonright/right_side (easylistchina+easylist.txt: 4095) +# ||online.cq.cn/commonweb/commonright/right_side (easylistchina.txt: 4086) .online.cq.cn/commonweb/commonright/right_side -# ||onegreen.net/MyFile/ (easylistchina+easylist.txt: 4094) +# ||onegreen.net/MyFile/ (easylistchina.txt: 4085) .onegreen.net/MyFile/ -# ||onedala.tv/uploads/banner/ (easylistchina+easylist.txt: 4093) +# ||onedala.tv/uploads/banner/ (easylistchina.txt: 4084) .onedala.tv/uploads/banner/ -# ||on.cc/js/v2/iframe_ysm_ (easylistchina+easylist.txt: 4092) +# ||on.cc/js/v2/iframe_ysm_ (easylistchina.txt: 4083) .on.cc/js/v2/iframe_ysm_ -# ||okbmf.com^*950_120 (easylistchina+easylist.txt: 4091) +# ||okbmf.com^*950_120 (easylistchina.txt: 4082) .okbmf.com/.*950_120 -# ||ok.432kkk.com^ (easylistchina+easylist.txt: 4090) +# ||ok.432kkk.com^ (easylistchina.txt: 4081) .ok.432kkk.com -# ||oiihk.com/anime/cm.js (easylistchina+easylist.txt: 4089) +# ||oiihk.com/anime/cm.js (easylistchina.txt: 4080) .oiihk.com/anime/cm\.js -# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina+easylist.txt: 4088) +# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina.txt: 4079) .ofweek.com/StaticPage/gongkong/ad_ -# ||ofweek.com/pop/ad/ (easylistchina+easylist.txt: 4087) +# ||ofweek.com/pop/ad/ (easylistchina.txt: 4078) .ofweek.com/pop/ad/ -# ||oa.hinews.cn/work/img/ (easylistchina+easylist.txt: 4086) +# ||oa.hinews.cn/work/img/ (easylistchina.txt: 4077) .oa.hinews.cn/work/img/ -# ||nvsheng.com/js/gg.js (easylistchina+easylist.txt: 4085) +# ||nvsheng.com/js/gg.js (easylistchina.txt: 4076) .nvsheng.com/js/gg\.js -# ||nttpcs.cn/ax/incoto.gif (easylistchina+easylist.txt: 4083) +# ||nttpcs.cn/ax/incoto.gif (easylistchina.txt: 4074) .nttpcs.cn/ax/incoto\.gif -# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina+easylist.txt: 4082) +# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina.txt: 4073) .ntpcb.com/html/channel/citypark/images/p83_temp_ -# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina+easylist.txt: 4081) +# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina.txt: 4072) .ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168\.png -# ||nownews.com/include_house/product.html (easylistchina+easylist.txt: 4080) +# ||nownews.com/include_house/product.html (easylistchina.txt: 4071) .nownews.com/include_house/product\.html -# ||nownews.com/events/ (easylistchina+easylist.txt: 4079) +# ||nownews.com/events/ (easylistchina.txt: 4070) .nownews.com/events/ -# ||nokiacn.net/gg*.htm (easylistchina+easylist.txt: 4078) +# ||nokiacn.net/gg*.htm (easylistchina.txt: 4069) .nokiacn.net/gg.*\.htm -# ||nokiacn.net/baidu.htm (easylistchina+easylist.txt: 4077) +# ||nokiacn.net/baidu.htm (easylistchina.txt: 4068) .nokiacn.net/baidu\.htm -# ||no1.168abc.net/upload/ (easylistchina+easylist.txt: 4076) +# ||no1.168abc.net/upload/ (easylistchina.txt: 4067) .no1.168abc.net/upload/ -# ||nnnews.net/public/xqymgg/ (easylistchina+easylist.txt: 4075) +# ||nnnews.net/public/xqymgg/ (easylistchina.txt: 4066) .nnnews.net/public/xqymgg/ -# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina+easylist.txt: 4073) +# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina.txt: 4064) .njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds -# ||niwozhi.net/960x90.gif (easylistchina+easylist.txt: 4072) +# ||niwozhi.net/960x90.gif (easylistchina.txt: 4063) .niwozhi.net/960x90\.gif -# ||niutuku.com/skin/style2013/ad/ (easylistchina+easylist.txt: 4071) +# ||niutuku.com/skin/style2013/ad/ (easylistchina.txt: 4062) .niutuku.com/skin/style2013/ad/ -# ||niu20.com/g/ (easylistchina+easylist.txt: 4070) +# ||niu20.com/g/ (easylistchina.txt: 4061) .niu20.com/g/ -# ||ngacn.cc/common_res/js_adscommon.js (easylistchina+easylist.txt: 4069) +# ||ngacn.cc/common_res/js_adscommon.js (easylistchina.txt: 4060) .ngacn.cc/common_res/js_adscommon\.js -# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina+easylist.txt: 4068) +# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina.txt: 4059) .nextmedia.com/web_images/recruit_banner\.jpg -# ||nexoncn.com/img/pic/rili.gif (easylistchina+easylist.txt: 4067) +# ||nexoncn.com/img/pic/rili.gif (easylistchina.txt: 4058) .nexoncn.com/img/pic/rili\.gif -# ||newssc.org/2014images/cd*yy (easylistchina+easylist.txt: 4066) +# ||newssc.org/2014images/cd*yy (easylistchina.txt: 4057) .newssc.org/2014images/cd.*yy -# ||newssc.org/2014images/1378110741538.jpg (easylistchina+easylist.txt: 4065) +# ||newssc.org/2014images/1378110741538.jpg (easylistchina.txt: 4056) .newssc.org/2014images/1378110741538\.jpg -# ||newsmth.net/nForum/files/adv/ (easylistchina+easylist.txt: 4064) +# ||newsmth.net/nForum/files/adv/ (easylistchina.txt: 4055) .newsmth.net/nForum/files/adv/ -# ||newsmth.net/nForum/baiduunion/ (easylistchina+easylist.txt: 4063) +# ||newsmth.net/nForum/baiduunion/ (easylistchina.txt: 4054) .newsmth.net/nForum/baiduunion/ -# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina+easylist.txt: 4062) +# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina.txt: 4053) .newsgroup.la/search/ysm/pam430x80\.swf -# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina+easylist.txt: 4061) +# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina.txt: 4052) .newsgroup.la/ad/yahoo/fad\.gif -# ||news18a.com/image/ad_ina/ (easylistchina+easylist.txt: 4060) +# ||news18a.com/image/ad_ina/ (easylistchina.txt: 4051) .news18a.com/image/ad_ina/ -# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina+easylist.txt: 4059) +# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina.txt: 4050) .news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c\.png -# ||news.tom.com/v2008.js (easylistchina+easylist.txt: 4058) +# ||news.tom.com/v2008.js (easylistchina.txt: 4049) .news.tom.com/v2008\.js -# ||news.sina.com.tw/js/ti.js (easylistchina+easylist.txt: 4057) +# ||news.sina.com.tw/js/ti.js (easylistchina.txt: 4048) .news.sina.com.tw/js/ti\.js -# ||news.sina.com.cn/js/792/*head*.js (easylistchina+easylist.txt: 4055) +# ||news.sina.com.cn/js/792/*head*.js (easylistchina.txt: 4046) .news.sina.com.cn/js/792/.*head.*\.js -# ||news.hz66.com/IAA/201111/ (easylistchina+easylist.txt: 4054) +# ||news.hz66.com/IAA/201111/ (easylistchina.txt: 4045) .news.hz66.com/IAA/201111/ -# ||news.cn/news/ad/ (easylistchina+easylist.txt: 4053) +# ||news.cn/news/ad/ (easylistchina.txt: 4044) .news.cn/news/ad/ -# ||news.cn/forum/script/float2.js (easylistchina+easylist.txt: 4052) +# ||news.cn/forum/script/float2.js (easylistchina.txt: 4043) .news.cn/forum/script/float2\.js -# ||news.0898.net/NMediaFile/*.swf (easylistchina+easylist.txt: 4051) +# ||news.0898.net/NMediaFile/*.swf (easylistchina.txt: 4042) .news.0898.net/NMediaFile/.*\.swf -# ||news.0898.net/NMediaFile/*.gif (easylistchina+easylist.txt: 4050) +# ||news.0898.net/NMediaFile/*.gif (easylistchina.txt: 4041) .news.0898.net/NMediaFile/.*\.gif -# ||newhua.com/newhuagg/gg_search_ (easylistchina+easylist.txt: 4049) +# ||newhua.com/newhuagg/gg_search_ (easylistchina.txt: 4040) .newhua.com/newhuagg/gg_search_ -# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina+easylist.txt: 4048) +# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina.txt: 4039) .new-icon.ol-img.com/jslib/ad_new\.js -# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina+easylist.txt: 4047) +# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina.txt: 4038) .new-icon.ol-img.com/jslib/ad\.down\.js -# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina+easylist.txt: 4046) +# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina.txt: 4037) .new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao\.jpg -# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina+easylist.txt: 4045) +# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina.txt: 4036) .netdna-cdn.com/wp-content/plugins/popover/ -# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina+easylist.txt: 4044) +# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina.txt: 4035) .neotv.com.cn/images/avs/tc/tc\.js -# ||nen.com.cn/service/js/beitou (easylistchina+easylist.txt: 4043) +# ||nen.com.cn/service/js/beitou (easylistchina.txt: 4034) .nen.com.cn/service/js/beitou -# ||nen.com.cn/eap/ (easylistchina+easylist.txt: 4042) +# ||nen.com.cn/eap/ (easylistchina.txt: 4033) .nen.com.cn/eap/ -# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina+easylist.txt: 4041) +# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina.txt: 4032) .neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b\.jpg -# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina+easylist.txt: 4040) +# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina.txt: 4031) .ncnews.com.cn/statics/js/ban/ix/ban -# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina+easylist.txt: 4039) +# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina.txt: 4030) .ncnews.com.cn/statics/images/2015/ban/dh\.swf -# ||ncdiy.com/webindex/300-250AD.swf (easylistchina+easylist.txt: 4038) +# ||ncdiy.com/webindex/300-250AD.swf (easylistchina.txt: 4029) .ncdiy.com/webindex/300-250AD\.swf -# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina+easylist.txt: 4037) +# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina.txt: 4028) .nba.weibo.com/images/bg/bg_heat\.jpg -# ||nb155.com/images/mysshok.png (easylistchina+easylist.txt: 4036) +# ||nb155.com/images/mysshok.png (easylistchina.txt: 4027) .nb155.com/images/mysshok\.png -# ||narutom.com/v2/js/ca.js (easylistchina+easylist.txt: 4034) +# ||narutom.com/v2/js/ca.js (easylistchina.txt: 4025) .narutom.com/v2/js/ca\.js -# ||narutom.com/js/jsg2.js (easylistchina+easylist.txt: 4033) +# ||narutom.com/js/jsg2.js (easylistchina.txt: 4024) .narutom.com/js/jsg2\.js -# ||nanrenwo.net/theme/2013/js/top.js (easylistchina+easylist.txt: 4032) +# ||nanrenwo.net/theme/2013/js/top.js (easylistchina.txt: 4023) .nanrenwo.net/theme/2013/js/top\.js -# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina+easylist.txt: 4031) +# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina.txt: 4022) .nanrenwo.net/theme/2013/js/popup.*\.js -# ||nanrenshu.com/rmb/st_dh.js (easylistchina+easylist.txt: 4030) +# ||nanrenshu.com/rmb/st_dh.js (easylistchina.txt: 4021) .nanrenshu.com/rmb/st_dh\.js -# ||nanhai.hinews.cn/zt/img/ (easylistchina+easylist.txt: 4029) +# ||nanren400.com/goto/ (easylistchina.txt: 4020) +.nanren400.com/goto/ +# ||nanhai.hinews.cn/zt/img/ (easylistchina.txt: 4019) .nanhai.hinews.cn/zt/img/ -# ||namipan.cc/includes/js/digg.js (easylistchina+easylist.txt: 4028) +# ||namipan.cc/includes/js/digg.js (easylistchina.txt: 4018) .namipan.cc/includes/js/digg\.js -# ||namipan.cc/baidu/ (easylistchina+easylist.txt: 4027) +# ||namipan.cc/baidu/ (easylistchina.txt: 4017) .namipan.cc/baidu/ -# ||najiadian.cn/shuang11.js (easylistchina+easylist.txt: 4026) +# ||najiadian.cn/shuang11.js (easylistchina.txt: 4016) .najiadian.cn/shuang11\.js -# ||n2.hk/promo/ (easylistchina+easylist.txt: 4025) +# ||n2.hk/promo/ (easylistchina.txt: 4015) .n2.hk/promo/ -# ||mzyz.com/image*/tj/ (easylistchina+easylist.txt: 4024) +# ||mzyz.com/image*/tj/ (easylistchina.txt: 4014) .mzyz.com/image.*/tj/ -# ||mzyfz.*/modules/46/ (easylistchina+easylist.txt: 4023) +# ||mzyfz.*/modules/46/ (easylistchina.txt: 4013) .mzyfz.*./(.*/)?modules/46/ -# ||mywpku.com/adminvm.jpg (easylistchina+easylist.txt: 4022) +# ||mywpku.com/adminvm.jpg (easylistchina.txt: 4012) .mywpku.com/adminvm\.jpg -# ||mywpku.com/*-banner. (easylistchina+easylist.txt: 4021) +# ||mywpku.com/*-banner. (easylistchina.txt: 4011) .mywpku.com/.*-banner\. -# ||myqcloud.com/js/easou.js (easylistchina+easylist.txt: 4020) +# ||myt520.com/images/jiaoyou (easylistchina.txt: 4010) +.myt520.com/images/jiaoyou +# ||myt520.com/images/4493.jpg (easylistchina.txt: 4009) +.myt520.com/images/4493\.jpg +# ||myqcloud.com/js/easou.js (easylistchina.txt: 4008) .myqcloud.com/js/easou\.js -# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina+easylist.txt: 4019) +# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina.txt: 4007) .mymusic.net.tw/upload/mobile_web_tmp/indexad01\. -# ||myhard.com/s?z= (easylistchina+easylist.txt: 4018) +# ||myhard.com/s?z= (easylistchina.txt: 4006) .myhard.com/s\?z= -# ||myhack58.com/js/top (easylistchina+easylist.txt: 4017) +# ||myhack58.com/js/top (easylistchina.txt: 4005) .myhack58.com/js/top -# ||myhack58.com/js/banner.js (easylistchina+easylist.txt: 4016) +# ||myhack58.com/js/banner.js (easylistchina.txt: 4004) .myhack58.com/js/banner\.js -# ||myhack58.com/acdb02/ (easylistchina+easylist.txt: 4015) +# ||myhack58.com/acdb02/ (easylistchina.txt: 4003) .myhack58.com/acdb02/ -# ||myhack58.com/abcd01/ (easylistchina+easylist.txt: 4014) +# ||myhack58.com/abcd01/ (easylistchina.txt: 4002) .myhack58.com/abcd01/ -# ||mydrivers.com/www/2015/s1120151105.png (easylistchina+easylist.txt: 4012) +# ||mydrivers.com/www/2015/s1120151105.png (easylistchina.txt: 4000) .mydrivers.com/www/2015/s1120151105\.png -# ||mydrivers.com/www/*-1000x90. (easylistchina+easylist.txt: 4011) +# ||mydrivers.com/www/*-1000x90. (easylistchina.txt: 3999) .mydrivers.com/www/.*-1000x90\. -# ||mycodes.net/js/hf_txt.js (easylistchina+easylist.txt: 4010) +# ||mycodes.net/js/hf_txt.js (easylistchina.txt: 3998) .mycodes.net/js/hf_txt\.js -# ||mycodes.net/js/down_txt.js (easylistchina+easylist.txt: 4009) +# ||mycodes.net/js/down_txt.js (easylistchina.txt: 3997) .mycodes.net/js/down_txt\.js -# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina+easylist.txt: 4007) +# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina.txt: 3995) .mybjx.net/theme/default/js/common/mtibjx\.js -# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina+easylist.txt: 4006) +# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina.txt: 3994) .mybjx.net/theme/default/js/common/duilianchn\.js -# ||myad.toocle.com^ (easylistchina+easylist.txt: 4005) +# ||myad.toocle.com^ (easylistchina.txt: 3993) .myad.toocle.com -# ||my0832.com/xyz/upload/ (easylistchina+easylist.txt: 4004) +# ||my0832.com/xyz/upload/ (easylistchina.txt: 3992) .my0832.com/xyz/upload/ -# ||my0511.com/aadd/ (easylistchina+easylist.txt: 4003) +# ||my0511.com/aadd/ (easylistchina.txt: 3991) .my0511.com/aadd/ -# ||my0511.com/*/ad_ (easylistchina+easylist.txt: 4002) +# ||my0511.com/*/ad_ (easylistchina.txt: 3990) .my0511.com/.*/ad_ -# ||mxwz.com/swf/yidong2015.swf (easylistchina+easylist.txt: 4001) +# ||mxwz.com/swf/yidong2015.swf (easylistchina.txt: 3989) .mxwz.com/swf/yidong2015\.swf -# ||mwsl.qiniudn.com/250x250- (easylistchina+easylist.txt: 4000) +# ||mwsl.qiniudn.com/250x250- (easylistchina.txt: 3988) .mwsl.qiniudn.com/250x250- -# ||mw6.me/images/*.gif (easylistchina+easylist.txt: 3999) +# ||mw6.me/images/*.gif (easylistchina.txt: 3987) .mw6.me/images/.*\.gif -# ||muyuge.net/js/bb/ (easylistchina+easylist.txt: 3998) +# ||muyuge.net/js/bb/ (easylistchina.txt: 3986) .muyuge.net/js/bb/ -# ||muyuge.com/js/KillABP.js (easylistchina+easylist.txt: 3997) +# ||muyuge.com/js/KillABP.js (easylistchina.txt: 3985) .muyuge.com/js/KillABP\.js -# ||muyuge.com/js/bb/ (easylistchina+easylist.txt: 3996) +# ||muyuge.com/js/bb/ (easylistchina.txt: 3984) .muyuge.com/js/bb/ -# ||mtrend.cn/images/prome/ (easylistchina+easylist.txt: 3995) +# ||mtrend.cn/images/prome/ (easylistchina.txt: 3983) .mtrend.cn/images/prome/ -# ||mtksj.com/images/ad1225.jpg (easylistchina+easylist.txt: 3994) +# ||mtksj.com/images/ad1225.jpg (easylistchina.txt: 3982) .mtksj.com/images/ad1225\.jpg -# ||mtime.cn/tg/ (easylistchina+easylist.txt: 3993) +# ||mtime.cn/tg/ (easylistchina.txt: 3981) .mtime.cn/tg/ -# ||mt30.com/ok/ (easylistchina+easylist.txt: 3992) +# ||mt30.com/ok/ (easylistchina.txt: 3980) .mt30.com/ok/ -# ||msn.ynet.com/vtui_js01.js (easylistchina+easylist.txt: 3991) +# ||msn.ynet.com/vtui_js01.js (easylistchina.txt: 3979) .msn.ynet.com/vtui_js01\.js -# ||msn.people.com.cn/css/2010tianrun/ (easylistchina+easylist.txt: 3990) +# ||msn.people.com.cn/css/2010tianrun/ (easylistchina.txt: 3978) .msn.people.com.cn/css/2010tianrun/ -# ||msn.com/homep_ad (easylistchina+easylist.txt: 3989) +# ||msn.com/homep_ad (easylistchina.txt: 3977) .msn.com/homep_ad -# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina+easylist.txt: 3988) +# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina.txt: 3976) .mscbsc.com/gbook/telecomhr292x90\.gif -# ||ms211.com/js/tf.js (easylistchina+easylist.txt: 3987) +# ||ms211.com/js/tf.js (easylistchina.txt: 3975) .ms211.com/js/tf\.js -# ||ms211.com/211tf/ (easylistchina+easylist.txt: 3985) +# ||ms211.com/211tf/ (easylistchina.txt: 3973) .ms211.com/211tf/ -# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina+easylist.txt: 3984) +# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina.txt: 3972) .mracg.com/data/attachment/portal/201412/17/ -# ||mql5.com/10/0/*.gif (easylistchina+easylist.txt: 3983) +# ||mql5.com/10/0/*.gif (easylistchina.txt: 3971) .mql5.com/10/0/.*\.gif -# ||motorfans.com.cn/iggs_system/ (easylistchina+easylist.txt: 3981) +# ||motorfans.com.cn/iggs_system/ (easylistchina.txt: 3969) .motorfans.com.cn/iggs_system/ -# ||motorfans.com.cn/igg/ (easylistchina+easylist.txt: 3980) +# ||motorfans.com.cn/igg/ (easylistchina.txt: 3968) .motorfans.com.cn/igg/ -# ||moratame.tw/img/contents/banner (easylistchina+easylist.txt: 3979) +# ||moratame.tw/img/contents/banner (easylistchina.txt: 3967) .moratame.tw/img/contents/banner -# ||mopxing.com/skin/sex/js/*content (easylistchina+easylist.txt: 3978) +# ||mopxing.com/skin/sex/js/*content (easylistchina.txt: 3966) .mopxing.com/skin/sex/js/.*content -# ||mopxing.com/skin/sex/js/*banner (easylistchina+easylist.txt: 3977) +# ||mopxing.com/skin/sex/js/*banner (easylistchina.txt: 3965) .mopxing.com/skin/sex/js/.*banner -# ||mopxing.com/skin/sex/js/*ad (easylistchina+easylist.txt: 3976) +# ||mopxing.com/skin/sex/js/*ad (easylistchina.txt: 3964) .mopxing.com/skin/sex/js/.*ad -# ||mopimg.cn/dc/ (easylistchina+easylist.txt: 3975) +# ||mopimg.cn/dc/ (easylistchina.txt: 3963) .mopimg.cn/dc/ -# ||moonbt.com/template/skin1/images/g_js/ (easylistchina+easylist.txt: 3974) +# ||moonbt.com/template/skin1/images/g_js/ (easylistchina.txt: 3962) .moonbt.com/template/skin1/images/g_js/ -# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina+easylist.txt: 3973) +# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina.txt: 3961) .moonbbs.com/static/image/banner/fashionmoon\.png -# ||moonbbs.com/data/attachment/portal/ (easylistchina+easylist.txt: 3972) +# ||moonbbs.com/data/attachment/portal/ (easylistchina.txt: 3960) .moonbbs.com/data/attachment/portal/ -# ||monnsutogatya.com/himg/monst/ (easylistchina+easylist.txt: 3971) +# ||monnsutogatya.com/himg/monst/ (easylistchina.txt: 3959) .monnsutogatya.com/himg/monst/ -# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina+easylist.txt: 3970) +# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina.txt: 3958) .moneyweekly.com.tw/Uploads/AD/.*970x -# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina+easylist.txt: 3969) +# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina.txt: 3957) .moneyweekly.com.tw/UC/JQueryJson\.aspx/MwAD -# ||money.qz828.com^ (easylistchina+easylist.txt: 3968) +# ||money.qz828.com^ (easylistchina.txt: 3956) .money.qz828.com -# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina+easylist.txt: 3965) +# ||money.bumimi.com^ (easylistchina.txt: 3955) +.money.bumimi.com +# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina.txt: 3952) .moe123.com/static/img/2014_fattycat\.jpg -# ||moe.la/images/banner/ (easylistchina+easylist.txt: 3964) +# ||moe.la/images/banner/ (easylistchina.txt: 3951) .moe.la/images/banner/ -# ||moe.fm/public/images/fm/promotion_ (easylistchina+easylist.txt: 3963) +# ||moe.fm/public/images/fm/promotion_ (easylistchina.txt: 3950) .moe.fm/public/images/fm/promotion_ -# ||mobile01.com/300x100.swf (easylistchina+easylist.txt: 3962) +# ||mobile01.com/300x100.swf (easylistchina.txt: 3949) .mobile01.com/300x100\.swf -# ||mnw.cn/script/info/baiduadm.html? (easylistchina+easylist.txt: 3961) +# ||mnw.cn/script/info/baiduadm.html? (easylistchina.txt: 3948) .mnw.cn/script/info/baiduadm\.html\? -# ||mnspx.com/js/bdbd/ (easylistchina+easylist.txt: 3960) -.mnspx.com/js/bdbd/ -# ||mmtalk.net/images/banner (easylistchina+easylist.txt: 3959) +# ||mmtalk.net/images/banner (easylistchina.txt: 3947) .mmtalk.net/images/banner -# ||mm387.com/images/*.gif (easylistchina+easylist.txt: 3958) +# ||mm387.com/images/*.gif (easylistchina.txt: 3946) .mm387.com/images/.*\.gif -# ||mm111.net/dotnet/artemis/u/cms/www/201504/1009585448o5.jpg (easylistchina+easylist.txt: 3957) -.mm111.net/dotnet/artemis/u/cms/www/201504/1009585448o5\.jpg -# ||mm111.net/dotnet/artemis/u/cms/www/201504/10095643port.jpg (easylistchina+easylist.txt: 3956) -.mm111.net/dotnet/artemis/u/cms/www/201504/10095643port\.jpg -# ||mlbuy.com/gg.js (easylistchina+easylist.txt: 3955) +# ||mlbuy.com/gg.js (easylistchina.txt: 3945) .mlbuy.com/gg\.js -# ||miyun360.com/data/attachment/portal/ (easylistchina+easylist.txt: 3954) +# ||miyun360.com/data/attachment/portal/ (easylistchina.txt: 3944) .miyun360.com/data/attachment/portal/ -# ||mitbbs.com/ad_ (easylistchina+easylist.txt: 3953) +# ||mitbbs.com/ad_ (easylistchina.txt: 3943) .mitbbs.com/ad_ -# ||mitbbs.ca/ad_ (easylistchina+easylist.txt: 3952) +# ||mitbbs.ca/ad_ (easylistchina.txt: 3942) .mitbbs.ca/ad_ -# ||mitbbs.*/servicedata/static_ad.php (easylistchina+easylist.txt: 3951) +# ||mitbbs.*/servicedata/static_ad.php (easylistchina.txt: 3941) .mitbbs.*./(.*/)?servicedata/static_ad\.php -# ||missyuan.com/sy/ (easylistchina+easylist.txt: 3950) +# ||missyuan.com/sy/ (easylistchina.txt: 3940) .missyuan.com/sy/ -# ||misaka.cn^*/600px- (easylistchina+easylist.txt: 3949) +# ||misaka.cn^*/600px- (easylistchina.txt: 3939) .misaka.cn/.*/600px- -# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina+easylist.txt: 3948) +# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina.txt: 3938) .mimg.127.net/ggimg/all/img18/140218_yixin_780x96\.jpg -# ||miljinhua.com/GD/ (easylistchina+easylist.txt: 3947) +# ||miljinhua.com/GD/ (easylistchina.txt: 3937) .miljinhua.com/GD/ -# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina+easylist.txt: 3946) +# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina.txt: 3936) .mil.news.sina.com.cn/iframe/109/2013/1015/hotpic\.html -# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina+easylist.txt: 3945) +# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina.txt: 3935) .mil.news.sina.com.cn/iframe/109/2012/1024/photo\.html -# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina+easylist.txt: 3944) +# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina.txt: 3934) .mil.news.sina.com.cn/iframe/.*/slideiframe\.html -# ||mifengtd.cn/ad- (easylistchina+easylist.txt: 3943) +# ||mifengtd.cn/ad- (easylistchina.txt: 3933) .mifengtd.cn/ad- -# ||midifan.com/aaa/ (easylistchina+easylist.txt: 3942) +# ||midifan.com/aaa/ (easylistchina.txt: 3932) .midifan.com/aaa/ -# ||microcontrol.cn/HomeImages/AD/ (easylistchina+easylist.txt: 3941) +# ||microcontrol.cn/HomeImages/AD/ (easylistchina.txt: 3931) .microcontrol.cn/HomeImages/AD/ -# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina+easylist.txt: 3940) +# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina.txt: 3930) .microcontrol.cn/bbs/images/AD755_150\.swf -# ||mianbao99.com/bd/ (easylistchina+easylist.txt: 3939) +# ||mianbao99.com/bd/ (easylistchina.txt: 3929) .mianbao99.com/bd/ -# ||mianbao99.com/a/mianbao/indextan.js (easylistchina+easylist.txt: 3938) +# ||mianbao99.com/a/mianbao/indextan.js (easylistchina.txt: 3928) .mianbao99.com/a/mianbao/indextan\.js -# ||mhhf.net/fserFiles/711x90.jpg (easylistchina+easylist.txt: 3937) +# ||mhhf.net/fserFiles/711x90.jpg (easylistchina.txt: 3927) .mhhf.net/fserFiles/711x90\.jpg -# ||mgbbs.cn/js/float.js (easylistchina+easylist.txt: 3936) +# ||mgbbs.cn/js/float.js (easylistchina.txt: 3926) .mgbbs.cn/js/float\.js -# ||mfxp.com/images/ (easylistchina+easylist.txt: 3935) +# ||mfxp.com/images/ (easylistchina.txt: 3925) .mfxp.com/images/ -# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina+easylist.txt: 3934) +# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina.txt: 3924) .mfacelive.com/Scripts/social/openchannel_min\.js -# ||meizhou.com/images/topbanner (easylistchina+easylist.txt: 3933) +# ||meizhou.com/images/topbanner (easylistchina.txt: 3923) .meizhou.com/images/topbanner -# ||meitu.com/js/floatxiuxiu.js (easylistchina+easylist.txt: 3932) +# ||meitu.com/js/floatxiuxiu.js (easylistchina.txt: 3922) .meitu.com/js/floatxiuxiu\.js -# ||meishichina.com/v3/ (easylistchina+easylist.txt: 3931) +# ||meishichina.com/v3/ (easylistchina.txt: 3921) .meishichina.com/v3/ -# ||meinv24.com/js/960- (easylistchina+easylist.txt: 3930) -.meinv24.com/js/960- -# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina+easylist.txt: 3929) +# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina.txt: 3920) .meinv.com/templates/meinv/js/.*_banner\.js -# ||meiliren.net/tuijs/ (easylistchina+easylist.txt: 3927) +# ||meiliren.net/tuijs/ (easylistchina.txt: 3918) .meiliren.net/tuijs/ -# ||meilele.com/js/recad. (easylistchina+easylist.txt: 3926) +# ||meilele.com/js/recad. (easylistchina.txt: 3917) .meilele.com/js/recad\. -# ||media.cheshi-img.com^ (easylistchina+easylist.txt: 3923) +# ||media.cheshi-img.com^ (easylistchina.txt: 3914) .media.cheshi-img.com -# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina+easylist.txt: 3922) +# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina.txt: 3912) .mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ -# ||mcncc.com/yeyou/gg.js (easylistchina+easylist.txt: 3921) +# ||mcncc.com/yeyou/gg.js (easylistchina.txt: 3911) .mcncc.com/yeyou/gg\.js -# ||mcncc.com/yeyou/*.htm (easylistchina+easylist.txt: 3920) +# ||mcncc.com/yeyou/*.htm (easylistchina.txt: 3910) .mcncc.com/yeyou/.*\.htm -# ||mbalib.com/wiki/common/wikibits.js (easylistchina+easylist.txt: 3919) +# ||mbalib.com/wiki/common/wikibits.js (easylistchina.txt: 3909) .mbalib.com/wiki/common/wikibits\.js -# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina+easylist.txt: 3918) +# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina.txt: 3908) .maxthonimg.com/cp/ad/1420792739\.jpg -# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina+easylist.txt: 3917) +# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina.txt: 3907) .maxthonimg.com/cp/ad/1420765807\.jpg -# ||mat1.gtimg.com/ent/flash/*300 (easylistchina+easylist.txt: 3916) +# ||mat1.gtimg.com/ent/flash/*300 (easylistchina.txt: 3906) .mat1.gtimg.com/ent/flash/.*300 -# ||mat1.gtimg.com/cq/flash/ (easylistchina+easylist.txt: 3915) +# ||mat1.gtimg.com/cq/flash/ (easylistchina.txt: 3905) .mat1.gtimg.com/cq/flash/ -# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina+easylist.txt: 3914) +# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina.txt: 3904) .mat1.gtimg.com/2014/webtips/ola2014tips -# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina+easylist.txt: 3913) +# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina.txt: 3903) .mat1.gtimg.com/2014/vikkydu/GA/haier -# ||masok.cn/red/ (easylistchina+easylist.txt: 3912) +# ||masok.cn/red/ (easylistchina.txt: 3902) .masok.cn/red/ -# ||masadora.net/kakusan- (easylistchina+easylist.txt: 3911) +# ||masadora.net/kakusan- (easylistchina.txt: 3901) .masadora.net/kakusan- -# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina+easylist.txt: 3910) +# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina.txt: 3900) .marstv.com/uploadfile/game/20150728/1438055654\.png -# ||market.duowan.com^ (easylistchina+easylist.txt: 3909) +# ||market.duowan.com^ (easylistchina.txt: 3899) .market.duowan.com -# ||market.21cn.com^ (easylistchina+easylist.txt: 3908) +# ||market.21cn.com^ (easylistchina.txt: 3898) .market.21cn.com -# ||market.178.com^ (easylistchina+easylist.txt: 3907) +# ||market.178.com^ (easylistchina.txt: 3897) .market.178.com -# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina+easylist.txt: 3906) +# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina.txt: 3896) .maolihui.com/wp-content/themes/miaonew/images/adb -# ||manage.wdfans.cn^ (easylistchina+easylist.txt: 3905) +# ||manage.wdfans.cn^ (easylistchina.txt: 3895) .manage.wdfans.cn -# ||manads.static.olcdn.com^ (easylistchina+easylist.txt: 3904) +# ||manads.static.olcdn.com^ (easylistchina.txt: 3894) .manads.static.olcdn.com -# ||mall.xinkuaituan.com/zhuanti/ (easylistchina+easylist.txt: 3903) +# ||mall.xinkuaituan.com/zhuanti/ (easylistchina.txt: 3893) .mall.xinkuaituan.com/zhuanti/ -# ||maituan.com/admin/indexflash/pic/gg (easylistchina+easylist.txt: 3902) +# ||maituan.com/admin/indexflash/pic/gg (easylistchina.txt: 3892) .maituan.com/admin/indexflash/pic/gg -# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina+easylist.txt: 3901) +# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina.txt: 3891) .maipiao.96900.com.cn/jtjt/js/jtjtgg\.js -# ||maipiao.96900.com.cn/js/indexgg (easylistchina+easylist.txt: 3900) +# ||maipiao.96900.com.cn/js/indexgg (easylistchina.txt: 3890) .maipiao.96900.com.cn/js/indexgg -# ||mail.qq.com/lview? (easylistchina+easylist.txt: 3899) +# ||mail.qq.com/lview? (easylistchina.txt: 3889) .mail.qq.com/lview\? -# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina+easylist.txt: 3898) +# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina.txt: 3888) .mail.pchome.com.tw/img/classifieds/300120\.gif -# ||mahua.com/www/default/js/replace_ab.js (easylistchina+easylist.txt: 3897) +# ||mahua.com/www/default/js/replace_ab.js (easylistchina.txt: 3887) .mahua.com/www/default/js/replace_ab\.js -# ||mahua.com/www/default/js/mahua_show.js (easylistchina+easylist.txt: 3896) +# ||mahua.com/www/default/js/mahua_show.js (easylistchina.txt: 3886) .mahua.com/www/default/js/mahua_show\.js -# ||macx.cn/js/f.txt.js (easylistchina+easylist.txt: 3894) +# ||macx.cn/js/f.txt.js (easylistchina.txt: 3884) .macx.cn/js/f\.txt\.js -# ||macd.cn/macd-topads.html (easylistchina+easylist.txt: 3893) +# ||macd.cn/macd-topads.html (easylistchina.txt: 3883) .macd.cn/macd-topads\.html -# ||macappbox.com/d/file/p/*.gif (easylistchina+easylist.txt: 3892) +# ||macappbox.com/d/file/p/*.gif (easylistchina.txt: 3882) .macappbox.com/d/file/p/.*\.gif -# ||ma.baiducdn2.com^*/main.js?t= (easylistchina+easylist.txt: 3891) +# ||ma.baiducdn2.com^*/main.js?t= (easylistchina.txt: 3881) .ma.baiducdn2.com/.*/main\.js\?t= -# ||m1905.com/asp_js/k.js (easylistchina+easylist.txt: 3890) +# ||m1905.com/asp_js/k.js (easylistchina.txt: 3880) .m1905.com/asp_js/k\.js -# ||m1905.cn/images/video/BannerImg (easylistchina+easylist.txt: 3889) +# ||m1905.cn/images/video/BannerImg (easylistchina.txt: 3879) .m1905.cn/images/video/BannerImg -# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina+easylist.txt: 3888) +# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina.txt: 3878) .m1905.cn/images/bg_index_hgn\.jpg -# ||m1905.cn/afp/mdsfw.js (easylistchina+easylist.txt: 3887) +# ||m1905.cn/afp/mdsfw.js (easylistchina.txt: 3877) .m1905.cn/afp/mdsfw\.js -# ||m.aty.sohu.com^ (easylistchina+easylist.txt: 3885) +# ||m.aty.sohu.com^ (easylistchina.txt: 3875) .m.aty.sohu.com -# ||lzqss.net/data/attachment/portal/ (easylistchina+easylist.txt: 3884) +# ||lzqss.net/data/attachment/portal/ (easylistchina.txt: 3874) .lzqss.net/data/attachment/portal/ -# ||lzep.cn^*/2014ad/ (easylistchina+easylist.txt: 3883) +# ||lzep.cn^*/2014ad/ (easylistchina.txt: 3873) .lzep.cn/.*/2014ad/ -# ||lzep.cn^*/2013ad/ (easylistchina+easylist.txt: 3882) +# ||lzep.cn^*/2013ad/ (easylistchina.txt: 3872) .lzep.cn/.*/2013ad/ -# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina+easylist.txt: 3881) +# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina.txt: 3871) .lzep.cn/uploadfile/hftv/2014/0901/20140901044836216\.jpg -# ||lzep.cn/images/*/ad (easylistchina+easylist.txt: 3880) +# ||lzep.cn/images/*/ad (easylistchina.txt: 3870) .lzep.cn/images/.*/ad -# ||lzep.cn/ep/sda/*_300X (easylistchina+easylist.txt: 3879) +# ||lzep.cn/ep/sda/*_300X (easylistchina.txt: 3869) .lzep.cn/ep/sda/.*_300X -# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina+easylist.txt: 3878) +# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina.txt: 3868) .lzep.cn/ep/sda/.*_1000x60_ -# ||lzep.cn/ep/old/finance/ad (easylistchina+easylist.txt: 3877) +# ||lzep.cn/ep/old/finance/ad (easylistchina.txt: 3867) .lzep.cn/ep/old/finance/ad -# ||lzep.cn/ep/js/index_window.js (easylistchina+easylist.txt: 3876) +# ||lzep.cn/ep/js/index_window.js (easylistchina.txt: 3866) .lzep.cn/ep/js/index_window\.js -# ||lzep.cn/ep/ads/ (easylistchina+easylist.txt: 3875) +# ||lzep.cn/ep/ads/ (easylistchina.txt: 3865) .lzep.cn/ep/ads/ -# ||lzep.cn/data/js/1*.js (easylistchina+easylist.txt: 3874) +# ||lzep.cn/data/js/1*.js (easylistchina.txt: 3864) .lzep.cn/data/js/1.*\.js -# ||lz.chinanews.com/images/flash/00.swf (easylistchina+easylist.txt: 3873) +# ||lz.chinanews.com/images/flash/00.swf (easylistchina.txt: 3863) .lz.chinanews.com/images/flash/00\.swf -# ||lywww.com/index_topa.php (easylistchina+easylist.txt: 3872) +# ||lywww.com/index_topa.php (easylistchina.txt: 3862) .lywww.com/index_topa\.php -# ||lywww.com/header_pic.php (easylistchina+easylist.txt: 3871) +# ||lywww.com/header_pic.php (easylistchina.txt: 3861) .lywww.com/header_pic\.php -# ||lywww.com/data/js/3 (easylistchina+easylist.txt: 3870) +# ||lywww.com/data/js/3 (easylistchina.txt: 3860) .lywww.com/data/js/3 -# ||lywww.com/data/js/2 (easylistchina+easylist.txt: 3869) +# ||lywww.com/data/js/2 (easylistchina.txt: 3859) .lywww.com/data/js/2 -# ||lywww.com/data/js/1 (easylistchina+easylist.txt: 3868) +# ||lywww.com/data/js/1 (easylistchina.txt: 3858) .lywww.com/data/js/1 -# ||lywww.com/data/js.php?id= (easylistchina+easylist.txt: 3867) +# ||lywww.com/data/js.php?id= (easylistchina.txt: 3857) .lywww.com/data/js\.php\?id= -# ||lyd.com.cn^*950-90. (easylistchina+easylist.txt: 3866) +# ||lyd.com.cn^*950-90. (easylistchina.txt: 3856) .lyd.com.cn/.*950-90\. -# ||ly.js.cn/adv/ (easylistchina+easylist.txt: 3864) +# ||ly.js.cn/adv/ (easylistchina.txt: 3854) .ly.js.cn/adv/ -# ||lxty66.com/js/float.js (easylistchina+easylist.txt: 3863) +# ||lxty66.com/js/float.js (easylistchina.txt: 3853) .lxty66.com/js/float\.js -# ||lxting.com^ (easylistchina+easylist.txt: 3862) +# ||lxting.com^ (easylistchina.txt: 3852) .lxting.com -# ||luuu1.com/g/ (easylistchina+easylist.txt: 3861) +# ||luuu1.com/g/ (easylistchina.txt: 3851) .luuu1.com/g/ -# ||luckstatic.v1.cn/st/10000/ (easylistchina+easylist.txt: 3860) +# ||luckstatic.v1.cn/st/10000/ (easylistchina.txt: 3850) .luckstatic.v1.cn/st/10000/ -# ||ltwbook.com/js/l_ (easylistchina+easylist.txt: 3859) +# ||ltxszw.com/js/350.png (easylistchina.txt: 3849) +.ltxszw.com/js/350\.png +# ||ltwbook.com/js/l_ (easylistchina.txt: 3848) .ltwbook.com/js/l_ -# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina+easylist.txt: 3858) +# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina.txt: 3847) .lrjz100.u.qiniudn.com/rmb/bxd\.jpg -# ||loveshang.com/pic/*.swf (easylistchina+easylist.txt: 3857) +# ||loveshang.com/pic/*.swf (easylistchina.txt: 3846) .loveshang.com/pic/.*\.swf -# ||lotour.com/Honda/ad/ (easylistchina+easylist.txt: 3856) +# ||lotour.com/Honda/ad/ (easylistchina.txt: 3845) .lotour.com/Honda/ad/ -# ||look4lib.com/js/bnr_ (easylistchina+easylist.txt: 3855) +# ||look4lib.com/js/bnr_ (easylistchina.txt: 3844) .look4lib.com/js/bnr_ -# ||longyu.cc/bucket/flash/ (easylistchina+easylist.txt: 3854) +# ||longyu.cc/bucket/flash/ (easylistchina.txt: 3843) .longyu.cc/bucket/flash/ -# ||longyu.cc/adg/ (easylistchina+easylist.txt: 3853) +# ||longyu.cc/adg/ (easylistchina.txt: 3842) .longyu.cc/adg/ -# ||longbahao.com/js/ad- (easylistchina+easylist.txt: 3852) +# ||longbahao.com/js/ad- (easylistchina.txt: 3841) .longbahao.com/js/ad- -# ||longbahao.com/asd.js (easylistchina+easylist.txt: 3851) +# ||longbahao.com/asd.js (easylistchina.txt: 3840) .longbahao.com/asd\.js -# ||loldk.com/res/media/fanxing_ (easylistchina+easylist.txt: 3850) +# ||loldk.com/res/media/fanxing_ (easylistchina.txt: 3839) .loldk.com/res/media/fanxing_ -# ||lofter.com/mailEntryMobile.do (easylistchina+easylist.txt: 3849) +# ||lofter.com/mailEntryMobile.do (easylistchina.txt: 3838) .lofter.com/mailEntryMobile\.do -# ||lofter.com/mailEntry.do?*ad= (easylistchina+easylist.txt: 3848) +# ||lofter.com/mailEntry.do?*ad= (easylistchina.txt: 3837) .lofter.com/mailEntry\.do\?.*ad= -# ||lnzq5.com/js/shuanglian.js (easylistchina+easylist.txt: 3847) +# ||lnzq5.com/js/shuanglian.js (easylistchina.txt: 3836) .lnzq5.com/js/shuanglian\.js -# ||lnd.com.cn/site1/*.swf (easylistchina+easylist.txt: 3846) +# ||lnd.com.cn/site1/*.swf (easylistchina.txt: 3835) .lnd.com.cn/site1/.*\.swf -# ||ln.xinhuanet.com/inc/ (easylistchina+easylist.txt: 3845) +# ||ln.xinhuanet.com/inc/ (easylistchina.txt: 3834) .ln.xinhuanet.com/inc/ -# ||ljia.net/vipflash/pop_footer.js (easylistchina+easylist.txt: 3844) +# ||ljia.net/vipflash/pop_footer.js (easylistchina.txt: 3833) .ljia.net/vipflash/pop_footer\.js -# ||liyuanwang.com/nongli.gif (easylistchina+easylist.txt: 3843) +# ||liyuanwang.com/nongli.gif (easylistchina.txt: 3832) .liyuanwang.com/nongli\.gif -# ||livemp4.com/js/ (easylistchina+easylist.txt: 3842) -.livemp4.com/js/ -# ||livefilestore.com^*/imj160x200.gif (easylistchina+easylist.txt: 3841) +# ||livefilestore.com^*/imj160x200.gif (easylistchina.txt: 3831) .livefilestore.com/.*/imj160x200\.gif -# ||liveany.com/images/8d8d.gif (easylistchina+easylist.txt: 3840) +# ||liveany.com/images/8d8d.gif (easylistchina.txt: 3830) .liveany.com/images/8d8d\.gif -# ||live8bo.com/j/Lad6.js (easylistchina+easylist.txt: 3839) -.live8bo.com/j/Lad6\.js -# ||linuxidc.com/linuxfile/y9.js (easylistchina+easylist.txt: 3838) +# ||linuxidc.com/linuxfile/y9.js (easylistchina.txt: 3829) .linuxidc.com/linuxfile/y9\.js -# ||linuxidc.com/linuxfile/list (easylistchina+easylist.txt: 3837) +# ||linuxidc.com/linuxfile/list (easylistchina.txt: 3828) .linuxidc.com/linuxfile/list -# ||linuxeden.com/plus/web_js.php (easylistchina+easylist.txt: 3835) +# ||linuxeden.com/plus/web_js.php (easylistchina.txt: 3826) .linuxeden.com/plus/web_js\.php -# ||linkwan.com/gb/javascript/c5- (easylistchina+easylist.txt: 3834) +# ||linkwan.com/gb/javascript/c5- (easylistchina.txt: 3825) .linkwan.com/gb/javascript/c5- -# ||linkwan.com/gb/javascript/b4.js (easylistchina+easylist.txt: 3833) +# ||linkwan.com/gb/javascript/b4.js (easylistchina.txt: 3824) .linkwan.com/gb/javascript/b4\.js -# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina+easylist.txt: 3832) +# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina.txt: 3823) .linkwan.com/gb/broadmeter/speed/cp\.js -# ||links.cn/mmshow (easylistchina+easylist.txt: 3831) +# ||links.cn/mmshow (easylistchina.txt: 3822) .links.cn/mmshow -# ||linkhelper.cn/mmshow (easylistchina+easylist.txt: 3830) +# ||linkhelper.cn/mmshow (easylistchina.txt: 3821) .linkhelper.cn/mmshow -# ||link.fobshanghai.com^ (easylistchina+easylist.txt: 3829) +# ||link.fobshanghai.com^ (easylistchina.txt: 3820) .link.fobshanghai.com -# ||lingdian98.com^ (easylistchina+easylist.txt: 3828) +# ||lingdian98.com^ (easylistchina.txt: 3819) .lingdian98.com -# ||life.e0575.com^ (easylistchina+easylist.txt: 3827) +# ||life.e0575.com^ (easylistchina.txt: 3818) .life.e0575.com -# ||liepin.com/event/jobadver/ (easylistchina+easylist.txt: 3826) +# ||liepin.com/event/jobadver/ (easylistchina.txt: 3817) .liepin.com/event/jobadver/ -# ||licai18.com/pic/*.swf (easylistchina+easylist.txt: 3825) +# ||licai18.com/pic/*.swf (easylistchina.txt: 3816) .licai18.com/pic/.*\.swf -# ||liba.com/ads/ (easylistchina+easylist.txt: 3823) +# ||liba.com/ads/ (easylistchina.txt: 3814) .liba.com/ads/ -# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina+easylist.txt: 3822) +# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina.txt: 3813) .liaoxuefeng.com/files/attachments/00144.*/0 -# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina+easylist.txt: 3821) +# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina.txt: 3812) .liaoing.com/image/picture_g/zhengzhou/index/.*\.swf -# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina+easylist.txt: 3820) +# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina.txt: 3811) .liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng\.swf -# ||liaoing.com/egou/ (easylistchina+easylist.txt: 3819) +# ||liaoing.com/egou/ (easylistchina.txt: 3810) .liaoing.com/egou/ -# ||liao1.com/publicize/file/news_detail_ (easylistchina+easylist.txt: 3818) +# ||liao1.com/publicize/file/news_detail_ (easylistchina.txt: 3809) .liao1.com/publicize/file/news_detail_ -# ||liao1.com/js/floatVideoAd.js (easylistchina+easylist.txt: 3817) +# ||liao1.com/js/floatVideoAd.js (easylistchina.txt: 3808) .liao1.com/js/floatVideoAd\.js -# ||liangzijie.com/Runtime/ (easylistchina+easylist.txt: 3816) +# ||liangzijie.com/Runtime/ (easylistchina.txt: 3807) .liangzijie.com/Runtime/ -# ||liangjan.com/style/img/banner (easylistchina+easylist.txt: 3815) +# ||liangjan.com/style/img/banner (easylistchina.txt: 3806) .liangjan.com/style/img/banner -# ||liangjan.com/js/show_ (easylistchina+easylist.txt: 3814) +# ||liangjan.com/js/show_ (easylistchina.txt: 3805) .liangjan.com/js/show_ -# ||liangchan.net/adf/ (easylistchina+easylist.txt: 3813) +# ||liangchan.net/adf/ (easylistchina.txt: 3804) .liangchan.net/adf/ -# ||liangchan.net/aaddaadd/ (easylistchina+easylist.txt: 3812) +# ||liangchan.net/aaddaadd/ (easylistchina.txt: 3803) .liangchan.net/aaddaadd/ -# ||lh168.net^*/attachment/portal/ (easylistchina+easylist.txt: 3811) +# ||lh168.net^*/attachment/portal/ (easylistchina.txt: 3802) .lh168.net/.*/attachment/portal/ -# ||lh168.net/extra/ads/ (easylistchina+easylist.txt: 3810) +# ||lh168.net/extra/ads/ (easylistchina.txt: 3801) .lh168.net/extra/ads/ -# ||lezhuan.com/js/spread.js (easylistchina+easylist.txt: 3809) +# ||lezhuan.com/js/spread.js (easylistchina.txt: 3800) .lezhuan.com/js/spread\.js -# ||letvimg.com^*_phone/ (easylistchina+easylist.txt: 3808) +# ||letvimg.com^*_phone/ (easylistchina.txt: 3799) .letvimg.com/.*_phone/ -# ||letvimg.com/img/201503/19/uc1/ (easylistchina+easylist.txt: 3806) +# ||letvimg.com/img/201503/19/uc1/ (easylistchina.txt: 3797) .letvimg.com/img/201503/19/uc1/ -# ||letvimg.com/gugwl/*.swf (easylistchina+easylist.txt: 3805) +# ||letvimg.com/gugwl/*.swf (easylistchina.txt: 3796) .letvimg.com/gugwl/.*\.swf -# ||letvcdn.com/js/*_focus_flash.js (easylistchina+easylist.txt: 3803) +# ||letvcdn.com/js/*_focus_flash.js (easylistchina.txt: 3794) .letvcdn.com/js/.*_focus_flash\.js -# ||letv.com/s?ark=*&cis= (easylistchina+easylist.txt: 3802) +# ||letv.com/s?ark=*&cis= (easylistchina.txt: 3793) .letv.com/s\?ark=.*&cis= -# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina+easylist.txt: 3801) +# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina.txt: 3792) .letv.com/pzt/hyhmzq/index\.shtml -# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina+easylist.txt: 3800) +# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina.txt: 3791) .letsebuy.com/static/image/common/dm_cn_130\.jpg -# ||leshen.com/skin/m/action/ad. (easylistchina+easylist.txt: 3799) +# ||leshen.com/skin/m/action/ad. (easylistchina.txt: 3790) .leshen.com/skin/m/action/ad\. -# ||lepan.cc/images/yd/ (easylistchina+easylist.txt: 3798) +# ||lepan.cc/images/yd/ (easylistchina.txt: 3789) .lepan.cc/images/yd/ -# ||lelevod.com/js/abc/t (easylistchina+easylist.txt: 3797) +# ||lelevod.com/js/abc/t (easylistchina.txt: 3788) .lelevod.com/js/abc/t -# ||lelevod.com/js/abc/p (easylistchina+easylist.txt: 3796) +# ||lelevod.com/js/abc/p (easylistchina.txt: 3787) .lelevod.com/js/abc/p -# ||lekan.com^*&stopTime= (easylistchina+easylist.txt: 3795) +# ||lekan.com^*&stopTime= (easylistchina.txt: 3786) .lekan.com/.*&stopTime= -# ||leiting001.com/bg/ltgg/ (easylistchina+easylist.txt: 3794) +# ||leiting001.com/bg/ltgg/ (easylistchina.txt: 3785) .leiting001.com/bg/ltgg/ -# ||leiqun.snxyf.com^ (easylistchina+easylist.txt: 3793) +# ||leiqun.snxyf.com^ (easylistchina.txt: 3784) .leiqun.snxyf.com -# ||lecai.com/page/zhuanti/baidu/ (easylistchina+easylist.txt: 3792) +# ||lecai.com/page/zhuanti/baidu/ (easylistchina.txt: 3783) .lecai.com/page/zhuanti/baidu/ -# ||ld0766.com/*20*a/ (easylistchina+easylist.txt: 3791) +# ||ld0766.com/*20*a/ (easylistchina.txt: 3782) .ld0766.com/.*20.*a/ -# ||lbx777.com/z_gegz/pic/ (easylistchina+easylist.txt: 3790) +# ||lbx777.com/z_gegz/pic/ (easylistchina.txt: 3781) .lbx777.com/z_gegz/pic/ -# ||lbx777.*/css/lbxgg02 (easylistchina+easylist.txt: 3789) +# ||lbx777.*/css/lbxgg02 (easylistchina.txt: 3780) .lbx777.*./(.*/)?css/lbxgg02 -# ||lbx777.*/css/300.js (easylistchina+easylist.txt: 3788) +# ||lbx777.*/css/300.js (easylistchina.txt: 3779) .lbx777.*./(.*/)?css/300\.js -# ||lawtv.com.cn/skin/stop.swf (easylistchina+easylist.txt: 3787) +# ||lawtv.com.cn/skin/stop.swf (easylistchina.txt: 3778) .lawtv.com.cn/skin/stop\.swf -# ||law-lib.com/2009_ad/ (easylistchina+easylist.txt: 3786) +# ||law-lib.com/2009_ad/ (easylistchina.txt: 3777) .law-lib.com/2009_ad/ -# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina+easylist.txt: 3785) +# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina.txt: 3776) .laozuo.org/wp-content/themes/weisaysimple/js/single-bottom\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina+easylist.txt: 3784) +# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina.txt: 3775) .laozuo.org/wp-content/themes/weisaysimple/js/sidebar -# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina+easylist.txt: 3783) +# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina.txt: 3774) .laozuo.org/wp-content/themes/weisaysimple/js/index-top\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina+easylist.txt: 3782) +# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina.txt: 3773) .laozuo.org/wp-content/themes/weisaysimple/js/content40width\.js -# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina+easylist.txt: 3781) +# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina.txt: 3772) .laozuo.org/wp-content/themes/weisaysimple/js/banner\.js -# ||laoyuegou.com/js/*_couplet_ (easylistchina+easylist.txt: 3780) +# ||laoyuegou.com/js/*_couplet_ (easylistchina.txt: 3771) .laoyuegou.com/js/.*_couplet_ -# ||laoyuegou.com/img/*/banner/ (easylistchina+easylist.txt: 3779) +# ||laoyuegou.com/img/*/banner/ (easylistchina.txt: 3770) .laoyuegou.com/img/.*/banner/ -# ||laonanren.com/oldman/ (easylistchina+easylist.txt: 3778) +# ||laonanren.com/oldman/ (easylistchina.txt: 3769) .laonanren.com/oldman/ -# ||laogu.com/my/ad (easylistchina+easylist.txt: 3777) +# ||laogu.com/my/ad (easylistchina.txt: 3768) .laogu.com/my/ad -# ||laogu.com/laogubbs/my/ (easylistchina+easylist.txt: 3776) +# ||laogu.com/laogubbs/my/ (easylistchina.txt: 3767) .laogu.com/laogubbs/my/ -# ||laod.cn/wp-content/uploads/*/AD (easylistchina+easylist.txt: 3775) +# ||laod.cn/wp-content/uploads/*/AD (easylistchina.txt: 3766) .laod.cn/wp-content/uploads/.*/AD -# ||lanxicy.com/images/rili.gif (easylistchina+easylist.txt: 3774) +# ||lanxicy.com/images/rili.gif (easylistchina.txt: 3765) .lanxicy.com/images/rili\.gif -# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina+easylist.txt: 3773) +# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina.txt: 3764) .lanrenzhijia.com/uploads/ibeifeng -# ||langya.cn/images/ad_down.js (easylistchina+easylist.txt: 3772) +# ||langya.cn/images/ad_down.js (easylistchina.txt: 3763) .langya.cn/images/ad_down\.js -# ||langya.cn/2014html/ad/ (easylistchina+easylist.txt: 3771) +# ||langya.cn/2014html/ad/ (easylistchina.txt: 3762) .langya.cn/2014html/ad/ -# ||langya.cn/2014html/2014ad_ (easylistchina+easylist.txt: 3770) +# ||langya.cn/2014html/2014ad_ (easylistchina.txt: 3761) .langya.cn/2014html/2014ad_ -# ||language-center.com.tw/udn/ (easylistchina+easylist.txt: 3768) +# ||language-center.com.tw/udn/ (easylistchina.txt: 3759) .language-center.com.tw/udn/ -# ||landiannews.com/tui/ (easylistchina+easylist.txt: 3767) +# ||landiannews.com/tui/ (easylistchina.txt: 3758) .landiannews.com/tui/ -# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina+easylist.txt: 3766) +# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina.txt: 3757) .lancdn.com/diannet/media1/diannet_tool_336_280_ -# ||laixi.com/tp/20 (easylistchina+easylist.txt: 3765) +# ||laixi.com/tp/20 (easylistchina.txt: 3756) .laixi.com/tp/20 -# ||lagou.com/js/cooperation/ (easylistchina+easylist.txt: 3764) +# ||lagou.com/js/cooperation/ (easylistchina.txt: 3755) .lagou.com/js/cooperation/ -# ||lady1314.com.cn/addata/ (easylistchina+easylist.txt: 3762) +# ||lady1314.com.cn/addata/ (easylistchina.txt: 3753) .lady1314.com.cn/addata/ -# ||lady100.net/top.js (easylistchina+easylist.txt: 3761) +# ||lady100.net/top.js (easylistchina.txt: 3752) .lady100.net/top\.js -# ||lady100.net/760-90.js (easylistchina+easylist.txt: 3760) +# ||lady100.net/760-90.js (easylistchina.txt: 3751) .lady100.net/760-90\.js -# ||l7po.com/templates/ff_style/led/ (easylistchina+easylist.txt: 3759) +# ||l7po.com/templates/ff_style/led/ (easylistchina.txt: 3750) .l7po.com/templates/ff_style/led/ -# ||l7po.com/images/tree/ (easylistchina+easylist.txt: 3758) +# ||l7po.com/images/tree/ (easylistchina.txt: 3749) .l7po.com/images/tree/ -# ||l.qq.com/lview? (easylistchina+easylist.txt: 3757) +# ||l.qq.com/lview? (easylistchina.txt: 3748) .l.qq.com/lview\? -# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina+easylist.txt: 3755) +# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina.txt: 3747) .kyocdn.com/upload/1316059709x983128031\.gif -# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina+easylist.txt: 3754) +# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina.txt: 3746) .kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv\.jpg -# ||kviso.com/ddnew/kviso (easylistchina+easylist.txt: 3753) +# ||kviso.com/ddnew/kviso (easylistchina.txt: 3745) .kviso.com/ddnew/kviso -# ||kutj.com/*/*x80.jpg (easylistchina+easylist.txt: 3752) +# ||kutj.com/*/*x80.jpg (easylistchina.txt: 3744) .kutj.com/.*/.*x80\.jpg -# ||kukudm.com/js/play- (easylistchina+easylist.txt: 3751) +# ||kukudm.com/js/play- (easylistchina.txt: 3743) .kukudm.com/js/play- -# ||kukudm.com/js/comic- (easylistchina+easylist.txt: 3750) +# ||kukudm.com/js/comic- (easylistchina.txt: 3742) .kukudm.com/js/comic- -# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina+easylist.txt: 3749) -# ||kuaihou.com/c/you1.js (easylistchina+easylist.txt: 3748) +# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina.txt: 3741) +# ||kuaihou.com/c/you1.js (easylistchina.txt: 3740) .kuaihou.com/c/you1\.js -# ||kuaihou.com/c/shuoming.js (easylistchina+easylist.txt: 3747) +# ||kuaihou.com/c/shuoming.js (easylistchina.txt: 3739) .kuaihou.com/c/shuoming\.js -# ||kuaihei.com/js/xiazaishang.js (easylistchina+easylist.txt: 3746) +# ||kuaihei.com/js/xiazaishang.js (easylistchina.txt: 3738) .kuaihei.com/js/xiazaishang\.js -# ||kuaihei.com/js/view.js (easylistchina+easylist.txt: 3745) +# ||kuaihei.com/js/view.js (easylistchina.txt: 3737) .kuaihei.com/js/view\.js -# ||kuaihei.com/js/980 (easylistchina+easylist.txt: 3744) +# ||kuaihei.com/js/980 (easylistchina.txt: 3736) .kuaihei.com/js/980 -# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina+easylist.txt: 3743) +# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina.txt: 3735) .ku6cdn.com/comm/v/0\.1\.0/mm\.png -# ||ku6.com^*/index.shtml (easylistchina+easylist.txt: 3742) +# ||ku6.com^*/index.shtml (easylistchina.txt: 3734) .ku6.com/.*/index\.shtml -# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina+easylist.txt: 3741) +# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina.txt: 3733) .ktzhk.com/plugins/cache_template/adv_3b2g\.js -# ||ktzhk.com/file/adv/ (easylistchina+easylist.txt: 3740) +# ||ktzhk.com/file/adv/ (easylistchina.txt: 3732) .ktzhk.com/file/adv/ -# ||ktkkt.com/js/cnbeta/ (easylistchina+easylist.txt: 3739) +# ||ktkkt.com/js/cnbeta/ (easylistchina.txt: 3731) .ktkkt.com/js/cnbeta/ -# ||kt51.com/app.js (easylistchina+easylist.txt: 3738) +# ||kt51.com/app.js (easylistchina.txt: 3730) .kt51.com/app\.js -# ||ksvcd.com/images/ (easylistchina+easylist.txt: 3737) +# ||ksvcd.com/images/ (easylistchina.txt: 3729) .ksvcd.com/images/ -# ||kp52.cc/data/attachment/portal/ (easylistchina+easylist.txt: 3735) +# ||kp52.cc/data/attachment/portal/ (easylistchina.txt: 3727) .kp52.cc/data/attachment/portal/ -# ||koopan.com/%5Cad/ (easylistchina+easylist.txt: 3734) +# ||koopan.com/%5Cad/ (easylistchina.txt: 3726) .koopan.com/%5Cad/ -# ||knnwdyou.com^ (easylistchina+easylist.txt: 3733) +# ||knnwdyou.com^ (easylistchina.txt: 3725) .knnwdyou.com -# ||kmplayer.cn/include/jscript/*-b.js (easylistchina+easylist.txt: 3732) +# ||kmplayer.cn/include/jscript/*-b.js (easylistchina.txt: 3724) .kmplayer.cn/include/jscript/.*-b\.js -# ||kmplayer.cn/include/jscript/*-a.js (easylistchina+easylist.txt: 3731) +# ||kmplayer.cn/include/jscript/*-a.js (easylistchina.txt: 3723) .kmplayer.cn/include/jscript/.*-a\.js -# ||klss.cn/jc/ (easylistchina+easylist.txt: 3730) +# ||klss.cn/jc/ (easylistchina.txt: 3722) .klss.cn/jc/ -# ||klgwdh.com/pp.php (easylistchina+easylist.txt: 3729) +# ||klgwdh.com/pp.php (easylistchina.txt: 3721) .klgwdh.com/pp\.php -# ||kkkmh.com/javascripts/abcde/ (easylistchina+easylist.txt: 3728) +# ||kkkmh.com/javascripts/abcde/ (easylistchina.txt: 3720) .kkkmh.com/javascripts/abcde/ -# ||kkkmh.com/iframe/ (easylistchina+easylist.txt: 3727) +# ||kkkmh.com/iframe/ (easylistchina.txt: 3719) .kkkmh.com/iframe/ -# ||kk55.net/beitou.js (easylistchina+easylist.txt: 3726) +# ||kk55.net/beitou.js (easylistchina.txt: 3718) .kk55.net/beitou\.js -# ||kikicici.com/up_files/2013-11-25/ (easylistchina+easylist.txt: 3725) +# ||kikicici.com/up_files/2013-11-25/ (easylistchina.txt: 3717) .kikicici.com/up_files/2013-11-25/ -# ||kiees.cn/img/nz.png (easylistchina+easylist.txt: 3724) +# ||kiees.cn/img/nz.png (easylistchina.txt: 3716) .kiees.cn/img/nz\.png -# ||kiees.cn/img/jm.png (easylistchina+easylist.txt: 3723) +# ||kiees.cn/img/jm.png (easylistchina.txt: 3715) .kiees.cn/img/jm\.png -# ||kfs.io/article5/global/*/original.gif (easylistchina+easylist.txt: 3722) +# ||kfs.io/article5/global/*/original.gif (easylistchina.txt: 3714) .kfs.io/article5/global/.*/original\.gif -# ||kf.abab.com/index.php? (easylistchina+easylist.txt: 3721) +# ||kf.abab.com/index.php? (easylistchina.txt: 3713) .kf.abab.com/index\.php\? -# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina+easylist.txt: 3720) +# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina.txt: 3712) .keywin.org/templates/kw_v2/images/youbianad\.png -# ||key8.com/cache/www/banner_ (easylistchina+easylist.txt: 3719) +# ||key8.com/cache/www/banner_ (easylistchina.txt: 3711) .key8.com/cache/www/banner_ -# ||kelepan.com/yunfaka.gif (easylistchina+easylist.txt: 3718) +# ||kelepan.com/yunfaka.gif (easylistchina.txt: 3710) .kelepan.com/yunfaka\.gif -# ||kelepan.com/cp (easylistchina+easylist.txt: 3717) +# ||kelepan.com/cp (easylistchina.txt: 3709) .kelepan.com/cp -# ||kekenet.com/images/*990 (easylistchina+easylist.txt: 3716) +# ||kekenet.com/images/*990 (easylistchina.txt: 3708) .kekenet.com/images/.*990 -# ||kekenet.com/images/*980 (easylistchina+easylist.txt: 3715) +# ||kekenet.com/images/*980 (easylistchina.txt: 3707) .kekenet.com/images/.*980 -# ||kekenet.com/Images/*/tom640X40.gif (easylistchina+easylist.txt: 3714) +# ||kekenet.com/Images/*/tom640X40.gif (easylistchina.txt: 3706) .kekenet.com/Images/.*/tom640X40\.gif -# ||kekenet.com/images/*/tom468X60.gif (easylistchina+easylist.txt: 3713) +# ||kekenet.com/images/*/tom468X60.gif (easylistchina.txt: 3705) .kekenet.com/images/.*/tom468X60\.gif -# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina+easylist.txt: 3712) +# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina.txt: 3704) .kdhome.net/templets/default/img/bottomadv\.jpg -# ||kcjc.net/data/attachment/portal/ (easylistchina+easylist.txt: 3711) +# ||kcjc.net/data/attachment/portal/ (easylistchina.txt: 3703) .kcjc.net/data/attachment/portal/ -# ||kanpp.net/Uploads/ad/ (easylistchina+easylist.txt: 3709) +# ||kanpp.net/Uploads/ad/ (easylistchina.txt: 3701) .kanpp.net/Uploads/ad/ -# ||kankanmi.com/js/zjgg (easylistchina+easylist.txt: 3708) +# ||kankanmi.com/js/zjgg (easylistchina.txt: 3700) .kankanmi.com/js/zjgg -# ||kan84.net/js/bdgg/ (easylistchina+easylist.txt: 3707) +# ||kan84.net/js/bdgg/ (easylistchina.txt: 3699) .kan84.net/js/bdgg/ -# ||kan300.com/js/union/ (easylistchina+easylist.txt: 3706) +# ||kan300.com/js/union/ (easylistchina.txt: 3698) .kan300.com/js/union/ -# ||kamlm.com/kmgg (easylistchina+easylist.txt: 3705) +# ||kamlm.com/kmgg (easylistchina.txt: 3697) .kamlm.com/kmgg -# ||kaixin001.com.cn/js/cpm- (easylistchina+easylist.txt: 3704) +# ||kaixin001.com.cn/js/cpm- (easylistchina.txt: 3696) .kaixin001.com.cn/js/cpm- -# ||kaikaimao.net/static/zx.jpg (easylistchina+easylist.txt: 3703) +# ||kaikaimao.net/static/zx.jpg (easylistchina.txt: 3695) .kaikaimao.net/static/zx\.jpg -# ||k886.net/comic-toplist (easylistchina+easylist.txt: 3702) +# ||k886.net/comic-toplist (easylistchina.txt: 3694) .k886.net/comic-toplist -# ||k7mm.com/js/t*.js (easylistchina+easylist.txt: 3701) +# ||k7mm.com/js/t*.js (easylistchina.txt: 3693) .k7mm.com/js/t.*\.js -# ||k618.cn/tlgg/ (easylistchina+easylist.txt: 3700) +# ||k618.cn/tlgg/ (easylistchina.txt: 3692) .k618.cn/tlgg/ -# ||jznews.com.cn/js/topad (easylistchina+easylist.txt: 3697) +# ||jznews.com.cn/js/topad (easylistchina.txt: 3689) .jznews.com.cn/js/topad -# ||jznews.com.cn/js/n_two.js (easylistchina+easylist.txt: 3696) +# ||jznews.com.cn/js/n_two.js (easylistchina.txt: 3688) .jznews.com.cn/js/n_two\.js -# ||jznews.com.cn/js/adtwo.js (easylistchina+easylist.txt: 3695) +# ||jznews.com.cn/js/adtwo.js (easylistchina.txt: 3687) .jznews.com.cn/js/adtwo\.js -# ||jznews.com.cn/js/*_tc.js (easylistchina+easylist.txt: 3694) +# ||jznews.com.cn/js/*_tc.js (easylistchina.txt: 3686) .jznews.com.cn/js/.*_tc\.js -# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina+easylist.txt: 3693) +# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina.txt: 3685) .jznews.com.cn/comnews/js/ad_tanchuang\.js -# ||jzhome.cn/Public/Js/top.js (easylistchina+easylist.txt: 3692) +# ||jzhome.cn/Public/Js/top.js (easylistchina.txt: 3684) .jzhome.cn/Public/Js/top\.js -# ||jzhome.cn/Public/images/jyt.gif (easylistchina+easylist.txt: 3691) +# ||jzhome.cn/Public/images/jyt.gif (easylistchina.txt: 3683) .jzhome.cn/Public/images/jyt\.gif -# ||jz5u.com/new/ (easylistchina+easylist.txt: 3690) +# ||jz5u.com/new/ (easylistchina.txt: 3682) .jz5u.com/new/ -# ||jz123.cn/kanli/ (easylistchina+easylist.txt: 3688) +# ||jz123.cn/kanli/ (easylistchina.txt: 3680) .jz123.cn/kanli/ -# ||jxold.com/index.php?m=poster& (easylistchina+easylist.txt: 3687) +# ||jxold.com/index.php?m=poster& (easylistchina.txt: 3679) .jxold.com/index\.php\?m=poster& -# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina+easylist.txt: 3686) +# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina.txt: 3678) .jxnews.com.cn/jxcn/con_ad_title\.js -# ||jxgdw.com/images/jdgg.jpg (easylistchina+easylist.txt: 3685) +# ||jxgdw.com/images/jdgg.jpg (easylistchina.txt: 3677) .jxgdw.com/images/jdgg\.jpg -# ||jxgdw.com/2013images/ad/ (easylistchina+easylist.txt: 3684) +# ||jxgdw.com/2013images/ad/ (easylistchina.txt: 3676) .jxgdw.com/2013images/ad/ -# ||jxdown.com/statics/js/all.js (easylistchina+easylist.txt: 3683) +# ||jxdown.com/statics/js/all.js (easylistchina.txt: 3675) .jxdown.com/statics/js/all\.js -# ||jxcn.cn/js/hotpic_ (easylistchina+easylist.txt: 3682) +# ||jxcn.cn/js/hotpic_ (easylistchina.txt: 3674) .jxcn.cn/js/hotpic_ -# ||jxcn.cn/images/banner/ (easylistchina+easylist.txt: 3681) +# ||jxcn.cn/images/banner/ (easylistchina.txt: 3673) .jxcn.cn/images/banner/ -# ||jxad.jx163.com^ (easylistchina+easylist.txt: 3680) +# ||jxad.jx163.com^ (easylistchina.txt: 3672) .jxad.jx163.com -# ||jx.xinhuanet.com/*banner/ (easylistchina+easylist.txt: 3679) +# ||jx.xinhuanet.com/*banner/ (easylistchina.txt: 3671) .jx.xinhuanet.com/.*banner/ -# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina+easylist.txt: 3678) +# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina.txt: 3670) .juxiangyou.com/images/tgsc/960x80\.gif -# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina+easylist.txt: 3677) +# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina.txt: 3669) .juxiangyou.com/images/tgsc/250x250\.gif -# ||juxia.com/public/js/juxia.js (easylistchina+easylist.txt: 3676) +# ||juxia.com/public/js/juxia.js (easylistchina.txt: 3668) .juxia.com/public/js/juxia\.js -# ||juxia.com/public/js/foot.js (easylistchina+easylist.txt: 3675) +# ||juxia.com/public/js/foot.js (easylistchina.txt: 3667) .juxia.com/public/js/foot\.js -# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina+easylist.txt: 3674) +# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina.txt: 3666) .junpinzhi.cn/qixing365/attachment/portal/ -# ||juksy.com/scripts/jquery.blockUI.js (easylistchina+easylist.txt: 3672) +# ||juksy.com/scripts/jquery.blockUI.js (easylistchina.txt: 3664) .juksy.com/scripts/jquery\.blockUI\.js -# ||jtyskq.com^*/js/_a.js (easylistchina+easylist.txt: 3671) +# ||jtyskq.com^*/js/_a.js (easylistchina.txt: 3663) .jtyskq.com/.*/js/_a\.js -# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina+easylist.txt: 3670) +# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina.txt: 3662) .jthysh.com/uploadfile/poster/trt\.swf -# ||jswangpan.com/haha728.gif (easylistchina+easylist.txt: 3669) +# ||jswangpan.com/haha728.gif (easylistchina.txt: 3661) .jswangpan.com/haha728\.gif -# ||jswangpan.com/3*.gif (easylistchina+easylist.txt: 3668) +# ||jswangpan.com/3*.gif (easylistchina.txt: 3660) .jswangpan.com/3.*\.gif -# ||jsw.com.cn^*/index.htm (easylistchina+easylist.txt: 3667) +# ||jsw.com.cn^*/index.htm (easylistchina.txt: 3659) .jsw.com.cn/.*/index\.htm -# ||jstv.com/static_files/zones/87/ (easylistchina+easylist.txt: 3666) +# ||jstv.com/static_files/zones/87/ (easylistchina.txt: 3658) .jstv.com/static_files/zones/87/ -# ||jstv.com/static_files/zones/165/165.js (easylistchina+easylist.txt: 3665) +# ||jstv.com/static_files/zones/165/165.js (easylistchina.txt: 3657) .jstv.com/static_files/zones/165/165\.js -# ||jstv.com//static_files/zones/132/132.js (easylistchina+easylist.txt: 3664) -# ||jsshuba.com/js/tongji.js (easylistchina+easylist.txt: 3663) +# ||jstv.com//static_files/zones/132/132.js (easylistchina.txt: 3656) +# ||jsshuba.com/js/tongji.js (easylistchina.txt: 3655) .jsshuba.com/js/tongji\.js -# ||jsshuba.com/js/gg.js (easylistchina+easylist.txt: 3662) +# ||jsshuba.com/js/gg.js (easylistchina.txt: 3654) .jsshuba.com/js/gg\.js -# ||jsshuba.com/js/bdhengfu.js (easylistchina+easylist.txt: 3661) +# ||jsshuba.com/js/bdhengfu.js (easylistchina.txt: 3653) .jsshuba.com/js/bdhengfu\.js -# ||js0573.com/images/cus/ (easylistchina+easylist.txt: 3660) +# ||js0573.com/images/cus/ (easylistchina.txt: 3652) .js0573.com/images/cus/ -# ||js.youxi369.com^ (easylistchina+easylist.txt: 3659) +# ||js.youxi369.com^ (easylistchina.txt: 3651) .js.youxi369.com -# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina+easylist.txt: 3658) +# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina.txt: 3650) .js.tv.itc.cn/site/play/v.*/vip_discount_ -# ||js.tlt.cn/js/ (easylistchina+easylist.txt: 3656) +# ||js.tlt.cn/js/ (easylistchina.txt: 3648) .js.tlt.cn/js/ -# ||js.shiwt.com/110.js (easylistchina+easylist.txt: 3655) +# ||js.shiwt.com/110.js (easylistchina.txt: 3647) .js.shiwt.com/110\.js -# ||js.pub.tom.com^ (easylistchina+easylist.txt: 3654) +# ||js.pub.tom.com^ (easylistchina.txt: 3646) .js.pub.tom.com -# ||js.mumayi.net/jiujiang (easylistchina+easylist.txt: 3653) +# ||js.mumayi.net/jiujiang (easylistchina.txt: 3645) .js.mumayi.net/jiujiang -# ||js.mumayi.net/9495.gif (easylistchina+easylist.txt: 3652) +# ||js.mumayi.net/9495.gif (easylistchina.txt: 3644) .js.mumayi.net/9495\.gif -# ||js.mumayi.net/76090.gif (easylistchina+easylist.txt: 3651) +# ||js.mumayi.net/76090.gif (easylistchina.txt: 3643) .js.mumayi.net/76090\.gif -# ||js.leshen.com^ (easylistchina+easylist.txt: 3650) +# ||js.leshen.com^ (easylistchina.txt: 3642) .js.leshen.com -# ||js.duotegame.com^ (easylistchina+easylist.txt: 3649) +# ||js.duotegame.com^ (easylistchina.txt: 3641) .js.duotegame.com -# ||js.4738.com/newda/img/994_90_ (easylistchina+easylist.txt: 3648) +# ||js.bxwns.com^ (easylistchina.txt: 3640) +.js.bxwns.com +# ||js.bju888.com^ (easylistchina.txt: 3639) +.js.bju888.com +# ||js.4738.com/newda/img/994_90_ (easylistchina.txt: 3638) .js.4738.com/newda/img/994_90_ -# ||js-1.pchome.net^ (easylistchina+easylist.txt: 3647) +# ||js-1.pchome.net^ (easylistchina.txt: 3637) .js-1.pchome.net -# ||jrjimg.cn/homev2/ad/ (easylistchina+easylist.txt: 3646) +# ||jrjimg.cn/homev2/ad/ (easylistchina.txt: 3636) .jrjimg.cn/homev2/ad/ -# ||jrjimg.cn/aigu/adcj.jpg (easylistchina+easylist.txt: 3645) +# ||jrjimg.cn/aigu/adcj.jpg (easylistchina.txt: 3635) .jrjimg.cn/aigu/adcj\.jpg -# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina+easylist.txt: 3644) +# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina.txt: 3634) .jrj.com.cn/iframe/zjgjs\.html\? -# ||jq22.com/assets/ad.png (easylistchina+easylist.txt: 3643) +# ||jq22.com/assets/ad.png (easylistchina.txt: 3633) .jq22.com/assets/ad\.png -# ||jpwind.com^*/scroll.js (easylistchina+easylist.txt: 3642) +# ||jpwind.com^*/scroll.js (easylistchina.txt: 3632) .jpwind.com/.*/scroll\.js -# ||jpwind.com/images/partner/ (easylistchina+easylist.txt: 3641) +# ||jpwind.com/images/partner/ (easylistchina.txt: 3631) .jpwind.com/images/partner/ -# ||jpseek.com/pr/click2.jpg (easylistchina+easylist.txt: 3639) +# ||jpskb.com/Img/dianyuan.gif (easylistchina.txt: 3629) +.jpskb.com/Img/dianyuan\.gif +# ||jpskb.com/Img/7day_ (easylistchina.txt: 3628) +.jpskb.com/Img/7day_ +# ||jpskb.com/Img/439911.jpg (easylistchina.txt: 3627) +.jpskb.com/Img/439911\.jpg +# ||jpskb.com/Img/*_ad_ (easylistchina.txt: 3626) +.jpskb.com/Img/.*_ad_ +# ||jpseek.com/pr/click2.jpg (easylistchina.txt: 3625) .jpseek.com/pr/click2\.jpg -# ||joyes.com/image/06.jpg (easylistchina+easylist.txt: 3638) +# ||joyes.com/image/06.jpg (easylistchina.txt: 3624) .joyes.com/image/06\.jpg -# ||jobtong.com/openSiteAd? (easylistchina+easylist.txt: 3637) +# ||jobtong.com/openSiteAd? (easylistchina.txt: 3623) .jobtong.com/openSiteAd\? -# ||jnnews.tv/indexad/ (easylistchina+easylist.txt: 3636) +# ||jnnews.tv/indexad/ (easylistchina.txt: 3622) .jnnews.tv/indexad/ -# ||jn256.com^*_gg (easylistchina+easylist.txt: 3635) +# ||jn256.com^*_gg (easylistchina.txt: 3621) .jn256.com/.*_gg -# ||jn256.com^*/index_fu (easylistchina+easylist.txt: 3634) +# ||jn256.com^*/index_fu (easylistchina.txt: 3620) .jn256.com/.*/index_fu -# ||jn256.com/gg_index/ (easylistchina+easylist.txt: 3633) +# ||jn256.com/gg_index/ (easylistchina.txt: 3619) .jn256.com/gg_index/ -# ||jmsyzj.com^ (easylistchina+easylist.txt: 3632) +# ||jmsyzj.com^ (easylistchina.txt: 3618) .jmsyzj.com -# ||jmhfw.com/zt/*.swf (easylistchina+easylist.txt: 3631) +# ||jmhfw.com/zt/*.swf (easylistchina.txt: 3617) .jmhfw.com/zt/.*\.swf -# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina+easylist.txt: 3630) +# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina.txt: 3616) .jmhfw.com/index\.php\?/ajax/get_adv/ -# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina+easylist.txt: 3629) +# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina.txt: 3615) .jlpcn.net/template/paody/aaaa/all-top\.js -# ||jkforum.net/template/default/common/attachAD (easylistchina+easylist.txt: 3628) +# ||jkforum.net/template/default/common/attachAD (easylistchina.txt: 3614) .jkforum.net/template/default/common/attachAD -# ||jjwxc.net/images/wap/wap.gif (easylistchina+easylist.txt: 3627) +# ||jjwxc.net/images/wap/wap.gif (easylistchina.txt: 3613) .jjwxc.net/images/wap/wap\.gif -# ||jjjgame.com/images/ad11.jpg (easylistchina+easylist.txt: 3626) +# ||jjjgame.com/images/ad11.jpg (easylistchina.txt: 3612) .jjjgame.com/images/ad11\.jpg -# ||jjjaaa.com/aaa/ (easylistchina+easylist.txt: 3625) +# ||jjjaaa.com/aaa/ (easylistchina.txt: 3611) .jjjaaa.com/aaa/ -# ||jjbt4.com/600x60.gif (easylistchina+easylist.txt: 3624) +# ||jjbt4.com/600x60.gif (easylistchina.txt: 3610) .jjbt4.com/600x60\.gif -# ||jj59.com/sy/ibanner.js (easylistchina+easylist.txt: 3623) +# ||jj59.com/sy/ibanner.js (easylistchina.txt: 3609) .jj59.com/sy/ibanner\.js -# ||jj59.com/sy/banner.js (easylistchina+easylist.txt: 3622) +# ||jj59.com/sy/banner.js (easylistchina.txt: 3608) .jj59.com/sy/banner\.js -# ||jj20.com/js/yx (easylistchina+easylist.txt: 3621) +# ||jj20.com/js/yx (easylistchina.txt: 3607) .jj20.com/js/yx -# ||jj20.com/js/x (easylistchina+easylist.txt: 3620) +# ||jj20.com/js/x (easylistchina.txt: 3606) .jj20.com/js/x -# ||jj20.com/images/960-60.gif (easylistchina+easylist.txt: 3619) +# ||jj20.com/images/960-60.gif (easylistchina.txt: 3605) .jj20.com/images/960-60\.gif -# ||jj.5ccc.net/scripts/new/ (easylistchina+easylist.txt: 3618) +# ||jj.5ccc.net/scripts/new/ (easylistchina.txt: 3604) .jj.5ccc.net/scripts/new/ -# ||jiyingdm.com/js/loadingshow.html (easylistchina+easylist.txt: 3617) +# ||jiyingdm.com/js/loadingshow.html (easylistchina.txt: 3603) .jiyingdm.com/js/loadingshow\.html -# ||jiujiure.com/media/banners/ (easylistchina+easylist.txt: 3616) -.jiujiure.com/media/banners/ -# ||jitapu.com/inc/adv (easylistchina+easylist.txt: 3615) +# ||jitapu.com/inc/adv (easylistchina.txt: 3602) .jitapu.com/inc/adv -# ||jisuxz.com/2747/ (easylistchina+easylist.txt: 3614) +# ||jisuxz.com/2747/ (easylistchina.txt: 3601) .jisuxz.com/2747/ -# ||jirou.com/plus/mytag_js.php (easylistchina+easylist.txt: 3613) +# ||jirou.com/plus/mytag_js.php (easylistchina.txt: 3600) .jirou.com/plus/mytag_js\.php -# ||jinzhuedu.com/k/img/swt.png (easylistchina+easylist.txt: 3612) +# ||jinzhuedu.com/k/img/swt.png (easylistchina.txt: 3599) .jinzhuedu.com/k/img/swt\.png -# ||jinyici.com/qq.js (easylistchina+easylist.txt: 3611) +# ||jinyici.com/qq.js (easylistchina.txt: 3598) .jinyici.com/qq\.js -# ||jinhongweiqi.com/cache/ads.js (easylistchina+easylist.txt: 3610) +# ||jinhongweiqi.com/cache/ads.js (easylistchina.txt: 3597) .jinhongweiqi.com/cache/ads\.js -# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina+easylist.txt: 3609) +# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina.txt: 3596) .jinghua.cn/lib/js/news/ad_jh\.html -# ||jinbw.com.cn/img/ (easylistchina+easylist.txt: 3608) +# ||jinbw.com.cn/img/ (easylistchina.txt: 3595) .jinbw.com.cn/img/ -# ||jiasule.com/static/js/http_error.js (easylistchina+easylist.txt: 3607) +# ||jiasule.com/static/js/http_error.js (easylistchina.txt: 3594) .jiasule.com/static/js/http_error\.js -# ||jiasuba.com/js/jjrjtg.js (easylistchina+easylist.txt: 3606) +# ||jiasuba.com/js/jjrjtg.js (easylistchina.txt: 3593) .jiasuba.com/js/jjrjtg\.js -# ||jiaoyu.baidu.com/tieba/ (easylistchina+easylist.txt: 3605) +# ||jiaoyu.baidu.com/tieba/ (easylistchina.txt: 3592) .jiaoyu.baidu.com/tieba/ -# ||jiaonan.net/index.php?m=poster& (easylistchina+easylist.txt: 3603) +# ||jiaonan.net/index.php?m=poster& (easylistchina.txt: 3590) .jiaonan.net/index\.php\?m=poster& -# ||jiaodong.net/a/js/ (easylistchina+easylist.txt: 3602) +# ||jiaodong.net/a/js/ (easylistchina.txt: 3589) .jiaodong.net/a/js/ -# ||jianshen114.com/images/Advistings/ (easylistchina+easylist.txt: 3601) +# ||jianshen114.com/images/Advistings/ (easylistchina.txt: 3588) .jianshen114.com/images/Advistings/ -# ||jianhucheng.com/data/attachment/portal/ (easylistchina+easylist.txt: 3600) +# ||jianhucheng.com/data/attachment/portal/ (easylistchina.txt: 3587) .jianhucheng.com/data/attachment/portal/ -# ||jiangcao.com/pic/ (easylistchina+easylist.txt: 3599) +# ||jianglishi.cn/app/static/images/ad_ (easylistchina.txt: 3586) +.jianglishi.cn/app/static/images/ad_ +# ||jiangcao.com/pic/ (easylistchina.txt: 3585) .jiangcao.com/pic/ -# ||jiancai365.cn/lbad.gif (easylistchina+easylist.txt: 3598) +# ||jiancai365.cn/lbad.gif (easylistchina.txt: 3584) .jiancai365.cn/lbad\.gif -# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina+easylist.txt: 3597) +# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina.txt: 3583) .jgzj.net/bbs/attachments/month_1111/ -# ||jdxsw.net/js/insidebox.js (easylistchina+easylist.txt: 3596) +# ||jdxsw.net/js/insidebox.js (easylistchina.txt: 3582) .jdxsw.net/js/insidebox\.js -# ||jdxsw.net/201400/ (easylistchina+easylist.txt: 3595) +# ||jdxsw.net/201400/ (easylistchina.txt: 3581) .jdxsw.net/201400/ -# ||jdcjsr.com^*/jdcgg/ (easylistchina+easylist.txt: 3594) +# ||jdcjsr.com^*/jdcgg/ (easylistchina.txt: 3580) .jdcjsr.com/.*/jdcgg/ -# ||jdcjsr.com/images/zzgg/ (easylistchina+easylist.txt: 3593) +# ||jdcjsr.com/images/zzgg/ (easylistchina.txt: 3579) .jdcjsr.com/images/zzgg/ -# ||jd.com/exsites?spread_type= (easylistchina+easylist.txt: 3592) +# ||jd.com/exsites?spread_type= (easylistchina.txt: 3578) .jd.com/exsites\?spread_type= -# ||jbyf.net^*_Ad/ (easylistchina+easylist.txt: 3591) +# ||jbyf.net^*_Ad/ (easylistchina.txt: 3577) .jbyf.net/.*_Ad/ -# ||jbyf.net/JS/9 (easylistchina+easylist.txt: 3590) +# ||jbyf.net/JS/9 (easylistchina.txt: 3576) .jbyf.net/JS/9 -# ||jbyf.net/JS/6 (easylistchina+easylist.txt: 3589) +# ||jbyf.net/JS/6 (easylistchina.txt: 3575) .jbyf.net/JS/6 -# ||jbyf.net/JS/1 (easylistchina+easylist.txt: 3588) +# ||jbyf.net/JS/1 (easylistchina.txt: 3574) .jbyf.net/JS/1 -# ||jb51.net/js/Dowplayjb51 (easylistchina+easylist.txt: 3587) +# ||jb51.net/js/Dowplayjb51 (easylistchina.txt: 3573) .jb51.net/js/Dowplayjb51 -# ||jb51.net/2012js/ (easylistchina+easylist.txt: 3586) +# ||jb51.net/2012js/ (easylistchina.txt: 3572) .jb51.net/2012js/ -# ||javlibrary.com/js/bnr_ (easylistchina+easylist.txt: 3585) +# ||javlibrary.com/js/bnr_ (easylistchina.txt: 3571) .javlibrary.com/js/bnr_ -# ||javlib3.com/js/bnr_ (easylistchina+easylist.txt: 3584) +# ||javlib3.com/js/bnr_ (easylistchina.txt: 3570) .javlib3.com/js/bnr_ -# ||jav2lib.com/js/bnr_ (easylistchina+easylist.txt: 3582) +# ||jav2lib.com/js/bnr_ (easylistchina.txt: 3568) .jav2lib.com/js/bnr_ -# ||jandan.com/static/gggg/ (easylistchina+easylist.txt: 3581) +# ||jandan.com/static/gggg/ (easylistchina.txt: 3567) .jandan.com/static/gggg/ -# ||ja.gamersky.com^ (easylistchina+easylist.txt: 3580) +# ||ja.gamersky.com^ (easylistchina.txt: 3566) .ja.gamersky.com -# ||j.6avz.com^ (easylistchina+easylist.txt: 3579) +# ||j.6avz.com^ (easylistchina.txt: 3565) .j.6avz.com -# ||izzs.cc/wp-content/mm/ (easylistchina+easylist.txt: 3578) +# ||izzs.cc/wp-content/mm/ (easylistchina.txt: 3564) .izzs.cc/wp-content/mm/ -# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina+easylist.txt: 3577) +# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina.txt: 3563) .izt8.com/iztwp/images/hk-250\.jpg -# ||iyejie.com/xydlad.js (easylistchina+easylist.txt: 3576) +# ||iyejie.com/xydlad.js (easylistchina.txt: 3562) .iyejie.com/xydlad\.js -# ||iyejie.com/1024code.gif (easylistchina+easylist.txt: 3575) +# ||iyejie.com/1024code.gif (easylistchina.txt: 3561) .iyejie.com/1024code\.gif -# ||iyaya.info/newmshow.php (easylistchina+easylist.txt: 3574) +# ||iyaya.info/newmshow.php (easylistchina.txt: 3560) .iyaya.info/newmshow\.php -# ||iyaxin.com/assert/js/m.js (easylistchina+easylist.txt: 3573) +# ||iyaxin.com/assert/js/m.js (easylistchina.txt: 3559) .iyaxin.com/assert/js/m\.js -# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina+easylist.txt: 3572) +# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina.txt: 3558) .ixiumei.com/otherhtml/zd800-100\.jpg -# ||iweihai.cn/js/float.js (easylistchina+easylist.txt: 3571) +# ||iweihai.cn/js/float.js (easylistchina.txt: 3557) .iweihai.cn/js/float\.js -# ||iwanad.baidu.com^ (easylistchina+easylist.txt: 3569) +# ||iwanad.baidu.com^ (easylistchina.txt: 3555) .iwanad.baidu.com -# ||ivsoo.com/template/ivsoos.jpg (easylistchina+easylist.txt: 3568) +# ||ivsoo.com/template/ivsoos.jpg (easylistchina.txt: 3554) .ivsoo.com/template/ivsoos\.jpg -# ||itxtbook.com/game/images/kuping (easylistchina+easylist.txt: 3567) +# ||itxtbook.com/game/images/kuping (easylistchina.txt: 3553) .itxtbook.com/game/images/kuping -# ||itv.hexun.com (easylistchina+easylist.txt: 3566) +# ||itv.hexun.com (easylistchina.txt: 3552) .itv.hexun.com*. -# ||itpub.net/popwin_js.php? (easylistchina+easylist.txt: 3565) +# ||itpub.net/popwin_js.php? (easylistchina.txt: 3551) .itpub.net/popwin_js\.php\? -# ||itopdog.cn/js/you.js (easylistchina+easylist.txt: 3564) +# ||itopdog.cn/js/you.js (easylistchina.txt: 3550) .itopdog.cn/js/you\.js -# ||itopdog.cn/itopdog/d*.js (easylistchina+easylist.txt: 3563) +# ||itopdog.cn/itopdog/d*.js (easylistchina.txt: 3549) .itopdog.cn/itopdog/d.*\.js -# ||itongcheng.cc/amm/ (easylistchina+easylist.txt: 3562) +# ||itongcheng.cc/amm/ (easylistchina.txt: 3548) .itongcheng.cc/amm/ -# ||itocp.com/html/gk/topic/topicmain.html (easylistchina+easylist.txt: 3561) +# ||itocp.com/html/gk/topic/topicmain.html (easylistchina.txt: 3547) .itocp.com/html/gk/topic/topicmain\.html -# ||itocp.com/html/gk/*/204x (easylistchina+easylist.txt: 3560) +# ||itocp.com/html/gk/*/204x (easylistchina.txt: 3546) .itocp.com/html/gk/.*/204x -# ||itocp.com/html/gk/*/*x50. (easylistchina+easylist.txt: 3559) +# ||itocp.com/html/gk/*/*x50. (easylistchina.txt: 3545) .itocp.com/html/gk/.*/.*x50\. -# ||itmxc.com/mxckb.gif (easylistchina+easylist.txt: 3558) +# ||itmxc.com/mxckb.gif (easylistchina.txt: 3544) .itmxc.com/mxckb\.gif -# ||itmxc.com/mxc-news/960x (easylistchina+easylist.txt: 3557) +# ||itmxc.com/mxc-news/960x (easylistchina.txt: 3543) .itmxc.com/mxc-news/960x -# ||itmsc.cn/files/*/ad0 (easylistchina+easylist.txt: 3556) +# ||itmsc.cn/files/*/ad0 (easylistchina.txt: 3542) .itmsc.cn/files/.*/ad0 -# ||itjsb.com/file/script/qipai.js (easylistchina+easylist.txt: 3555) +# ||itjsb.com/file/script/qipai.js (easylistchina.txt: 3541) .itjsb.com/file/script/qipai\.js -# ||itjsb.com/file/script/A27.js (easylistchina+easylist.txt: 3554) +# ||itjsb.com/file/script/A27.js (easylistchina.txt: 3540) .itjsb.com/file/script/A27\.js -# ||itjkr.com/upload/ad/ (easylistchina+easylist.txt: 3553) +# ||itjkr.com/upload/ad/ (easylistchina.txt: 3539) .itjkr.com/upload/ad/ -# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina+easylist.txt: 3552) +# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina.txt: 3538) .itiexue.net/.*\.gif\?w=1500&h=1500 -# ||ithome.com/js/win8china.js (easylistchina+easylist.txt: 3551) +# ||itiexue.net/domain-policy/ (easylistchina.txt: 3537) +.itiexue.net/domain-policy/ +# ||ithome.com/js/win8china.js (easylistchina.txt: 3536) .ithome.com/js/win8china\.js -# ||ithome.com/js/win7china.js (easylistchina+easylist.txt: 3550) +# ||ithome.com/js/win7china.js (easylistchina.txt: 3535) .ithome.com/js/win7china\.js -# ||ithome.com/js/recommend.js (easylistchina+easylist.txt: 3549) +# ||ithome.com/js/recommend.js (easylistchina.txt: 3534) .ithome.com/js/recommend\.js -# ||ithome.com/js/money/ (easylistchina+easylist.txt: 3548) +# ||ithome.com/js/money/ (easylistchina.txt: 3533) .ithome.com/js/money/ -# ||ithome.com/js/*/toutiao.js (easylistchina+easylist.txt: 3547) +# ||ithome.com/js/*/toutiao.js (easylistchina.txt: 3532) .ithome.com/js/.*/toutiao\.js -# ||ithome.com/images/v2.3/11index.png (easylistchina+easylist.txt: 3546) +# ||ithome.com/images/v2.3/11index.png (easylistchina.txt: 3531) .ithome.com/images/v2\.3/11index\.png -# ||ithome.com/images/partner/ (easylistchina+easylist.txt: 3545) +# ||ithome.com/images/partner/ (easylistchina.txt: 3530) .ithome.com/images/partner/ -# ||iteye.com/iframe_ggbd/ (easylistchina+easylist.txt: 3543) +# ||iteye.com/iframe_ggbd/ (easylistchina.txt: 3528) .iteye.com/iframe_ggbd/ -# ||itc.cn^*_ad/src/*.swf (easylistchina+easylist.txt: 3541) +# ||itc.cn^*_ad/src/*.swf (easylistchina.txt: 3526) .itc.cn/.*_ad/src/.*\.swf -# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina+easylist.txt: 3540) +# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina.txt: 3525) .itc.cn/activity/activity_js/changyan_config_ -# ||itc.cn/?prod=rtb& (easylistchina+easylist.txt: 3539) +# ||itc.cn/?prod=rtb& (easylistchina.txt: 3524) .itc.cn/\?prod=rtb& -# ||itc.*^prod=ad& (easylistchina+easylist.txt: 3538) +# ||itc.*^prod=ad& (easylistchina.txt: 3523) .itc.*./(.*[^\w%.-])?prod=ad& -# ||itavcn.com/pic/news/*305X80.swf (easylistchina+easylist.txt: 3537) +# ||itavcn.com/pic/news/*305X80.swf (easylistchina.txt: 3522) .itavcn.com/pic/news/.*305X80\.swf -# ||itavcn.com/images/2014/ad_ (easylistchina+easylist.txt: 3536) +# ||itavcn.com/images/2014/ad_ (easylistchina.txt: 3521) .itavcn.com/images/2014/ad_ -# ||itavcn.com/images/2013/ad_ (easylistchina+easylist.txt: 3535) +# ||itavcn.com/images/2013/ad_ (easylistchina.txt: 3520) .itavcn.com/images/2013/ad_ -# ||itavcn.com/images/2012/ad_ (easylistchina+easylist.txt: 3534) +# ||itavcn.com/images/2012/ad_ (easylistchina.txt: 3519) .itavcn.com/images/2012/ad_ -# ||itavcn.com/images/2011/101902.swf (easylistchina+easylist.txt: 3533) +# ||itavcn.com/images/2011/101902.swf (easylistchina.txt: 3518) .itavcn.com/images/2011/101902\.swf -# ||itavcn.com/images/*300300.swf (easylistchina+easylist.txt: 3532) +# ||itavcn.com/images/*300300.swf (easylistchina.txt: 3517) .itavcn.com/images/.*300300\.swf -# ||itavcn.com/images/*-banners722-90. (easylistchina+easylist.txt: 3531) +# ||itavcn.com/images/*-banners722-90. (easylistchina.txt: 3516) .itavcn.com/images/.*-banners722-90\. -# ||italk.yinsha.com/god/ (easylistchina+easylist.txt: 3530) +# ||italk.yinsha.com/god/ (easylistchina.txt: 3515) .italk.yinsha.com/god/ -# ||it168.com/factory/ad/ (easylistchina+easylist.txt: 3529) +# ||it168.com/factory/ad/ (easylistchina.txt: 3514) .it168.com/factory/ad/ -# ||it165.net/index.php?m=poster& (easylistchina+easylist.txt: 3528) +# ||it165.net/index.php?m=poster& (easylistchina.txt: 3513) .it165.net/index\.php\?m=poster& -# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina+easylist.txt: 3527) +# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina.txt: 3512) .it.com.cn/test/cj/2015/03/06/10/1424032881\.jpg -# ||it.com.cn/js/*art (easylistchina+easylist.txt: 3526) +# ||it.com.cn/js/*art (easylistchina.txt: 3511) .it.com.cn/js/.*art -# ||it.com.cn/dy4*/js/youx.js (easylistchina+easylist.txt: 3525) +# ||it.com.cn/dy4*/js/youx.js (easylistchina.txt: 3510) .it.com.cn/dy4.*/js/youx\.js -# ||it.com.cn/dy4*/js/*0 (easylistchina+easylist.txt: 3524) +# ||it.com.cn/dy4*/js/*0 (easylistchina.txt: 3509) .it.com.cn/dy4.*/js/.*0 -# ||isso.com.cn/upload_image/A-D/ (easylistchina+easylist.txt: 3523) +# ||isso.com.cn/upload_image/A-D/ (easylistchina.txt: 3508) .isso.com.cn/upload_image/A-D/ -# ||isso.com.cn/ggimage/*.swf (easylistchina+easylist.txt: 3522) +# ||isso.com.cn/ggimage/*.swf (easylistchina.txt: 3507) .isso.com.cn/ggimage/.*\.swf -# ||isso.com.cn/club/adv2Tools.js (easylistchina+easylist.txt: 3521) +# ||isso.com.cn/club/adv2Tools.js (easylistchina.txt: 3506) .isso.com.cn/club/adv2Tools\.js -# ||ishangman.com/images/aismd/ (easylistchina+easylist.txt: 3520) +# ||ishangman.com/images/aismd/ (easylistchina.txt: 3505) .ishangman.com/images/aismd/ -# ||iqshw.com/d/js/m/thea (easylistchina+easylist.txt: 3519) +# ||iqshw.com/d/js/m/thea (easylistchina.txt: 3504) .iqshw.com/d/js/m/thea -# ||iqiyi.com/show2?a=qc_ (easylistchina+easylist.txt: 3518) +# ||iqiyi.com/show2?a=qc_ (easylistchina.txt: 3503) .iqiyi.com/show2\?a=qc_ -# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina+easylist.txt: 3517) +# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina.txt: 3502) .iqiyi.com/player/cupid/common/flash980100\.swf -# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina+easylist.txt: 3516) +# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina.txt: 3501) .iqiyi.com/player/cupid/.*/pageer\.swf -# ||iqiyi.com/player/common/rebull (easylistchina+easylist.txt: 3515) +# ||iqiyi.com/player/common/rebull (easylistchina.txt: 3500) .iqiyi.com/player/common/rebull -# ||iqiyi.com/player/common/adflash (easylistchina+easylist.txt: 3514) +# ||iqiyi.com/player/common/adflash (easylistchina.txt: 3499) .iqiyi.com/player/common/adflash -# ||iqiyi.com/player/*/bannery.swf (easylistchina+easylist.txt: 3513) +# ||iqiyi.com/player/*/bannery.swf (easylistchina.txt: 3498) .iqiyi.com/player/.*/bannery\.swf -# ||iqiyi.com/player/*/a.swf (easylistchina+easylist.txt: 3512) +# ||iqiyi.com/player/*/a.swf (easylistchina.txt: 3497) .iqiyi.com/player/.*/a\.swf -# ||iqiyi.com/marketing/*/oppo. (easylistchina+easylist.txt: 3511) +# ||iqiyi.com/marketing/*/oppo. (easylistchina.txt: 3496) .iqiyi.com/marketing/.*/oppo\. -# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina+easylist.txt: 3510) +# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina.txt: 3495) .iqiyi.com/common/flashplayer/.*980-100 -# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina+easylist.txt: 3509) +# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina.txt: 3494) .iqiyi.com/common/flashplayer/.*250%C3%97230\.swf -# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina+easylist.txt: 3508) +# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina.txt: 3493) .iqiyi.com/common/flashplayer/.*/pause\.swf -# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina+easylist.txt: 3507) +# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina.txt: 3492) .iqiyi.com/common/flashplayer/.*/pageer\.swf -# ||iqiyi.com/common/flashplayer/*/980 (easylistchina+easylist.txt: 3506) +# ||iqiyi.com/common/flashplayer/*/980 (easylistchina.txt: 3491) .iqiyi.com/common/flashplayer/.*/980 -# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina+easylist.txt: 3505) +# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina.txt: 3490) .iqiyi.com/common/flashplayer/.*-banner- -# ||iqiyi.com/common/flashplayer*_1380x (easylistchina+easylist.txt: 3504) +# ||iqiyi.com/common/flashplayer*_1380x (easylistchina.txt: 3489) .iqiyi.com/common/flashplayer.*_1380x -# ||iq33.com/skin/logo2015/ (easylistchina+easylist.txt: 3503) +# ||iq33.com/skin/logo2015/ (easylistchina.txt: 3488) .iq33.com/skin/logo2015/ -# ||ipeen.com.tw/photo/ad/ (easylistchina+easylist.txt: 3502) +# ||ipeen.com.tw/photo/ad/ (easylistchina.txt: 3487) .ipeen.com.tw/photo/ad/ -# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina+easylist.txt: 3501) +# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina.txt: 3486) .ipeen.com.tw/js/frame/ad-actions\.js -# ||iour.co/wp-content/uploads/ (easylistchina+easylist.txt: 3500) +# ||iour.co/wp-content/uploads/ (easylistchina.txt: 3485) .iour.co/wp-content/uploads/ -# ||iour.co/ads.js (easylistchina+easylist.txt: 3499) +# ||iour.co/ads.js (easylistchina.txt: 3484) .iour.co/ads\.js -# ||iour.co/ad_dl.js (easylistchina+easylist.txt: 3498) +# ||iour.co/ad_dl.js (easylistchina.txt: 3483) .iour.co/ad_dl\.js -# ||inte.sogou.com^ (easylistchina+easylist.txt: 3497) +# ||inte.sogou.com^ (easylistchina.txt: 3482) .inte.sogou.com -# ||inlishui.com/index.php?m=poster& (easylistchina+easylist.txt: 3496) +# ||inlishui.com/index.php?m=poster& (easylistchina.txt: 3481) .inlishui.com/index\.php\?m=poster& -# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina+easylist.txt: 3495) +# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina.txt: 3480) .inhe.net/Uploadfiles/ad_2014/ -# ||inhe.net/javascript/Jsduilian (easylistchina+easylist.txt: 3494) +# ||inhe.net/javascript/Jsduilian (easylistchina.txt: 3479) .inhe.net/javascript/Jsduilian -# ||inhe.net/javascript/ad_js/ (easylistchina+easylist.txt: 3493) +# ||inhe.net/javascript/ad_js/ (easylistchina.txt: 3478) .inhe.net/javascript/ad_js/ -# ||inhe.*/Uploadfiles/adpublish (easylistchina+easylist.txt: 3492) +# ||inhe.*/Uploadfiles/adpublish (easylistchina.txt: 3477) .inhe.*./(.*/)?Uploadfiles/adpublish -# ||info.vip.iqiyi.com/promotion/ (easylistchina+easylist.txt: 3491) +# ||info.vip.iqiyi.com/promotion/ (easylistchina.txt: 3476) .info.vip.iqiyi.com/promotion/ -# ||inc.tgbus.com/frame/youxi.html (easylistchina+easylist.txt: 3487) +# ||inc.tgbus.com/frame/youxi.html (easylistchina.txt: 3472) .inc.tgbus.com/frame/youxi\.html -# ||impservice*.youdao.com^ (easylistchina+easylist.txt: 3486) +# ||impservice*.youdao.com^ (easylistchina.txt: 3471) .impservice*./.*\.youdao\.com[^\w%.-] .impservice*.youdao.com -# ||impservice*.yodao.com^ (easylistchina+easylist.txt: 3485) +# ||impservice*.yodao.com^ (easylistchina.txt: 3470) .impservice*./.*\.yodao\.com[^\w%.-] .impservice*.yodao.com -# ||imgur.com/Za3ll.gif (easylistchina+easylist.txt: 3481) +# ||imgur.com/Za3ll.gif (easylistchina.txt: 3466) .imgur.com/Za3ll\.gif -# ||imgur.com/rTqveeX.jpg (easylistchina+easylist.txt: 3480) +# ||imgur.com/rTqveeX.jpg (easylistchina.txt: 3465) .imgur.com/rTqveeX\.jpg -# ||imgur.com/pBL7joM.gif (easylistchina+easylist.txt: 3479) +# ||imgur.com/pBL7joM.gif (easylistchina.txt: 3464) .imgur.com/pBL7joM\.gif -# ||imgur.com/iKkoHkn.jpg (easylistchina+easylist.txt: 3478) +# ||imgur.com/iKkoHkn.jpg (easylistchina.txt: 3463) .imgur.com/iKkoHkn\.jpg -# ||imgs.cc/images/ad_ (easylistchina+easylist.txt: 3476) +# ||imgs.cc/images/ad_ (easylistchina.txt: 3461) .imgs.cc/images/ad_ -# ||imgout.ph.126.net^*/950-90.jpg (easylistchina+easylist.txt: 3475) +# ||imgout.ph.126.net^*/950-90.jpg (easylistchina.txt: 3460) .imgout.ph.126.net/.*/950-90\.jpg -# ||imgout.ph.126.net^*/700x80.jpg (easylistchina+easylist.txt: 3474) +# ||imgout.ph.126.net^*/700x80.jpg (easylistchina.txt: 3459) .imgout.ph.126.net/.*/700x80\.jpg -# ||imgout.ph.126.net^*/355-310.jpg (easylistchina+easylist.txt: 3473) +# ||imgout.ph.126.net^*/355-310.jpg (easylistchina.txt: 3458) .imgout.ph.126.net/.*/355-310\.jpg -# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina+easylist.txt: 3472) +# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina.txt: 3457) .imgn.jiatx.com/jiatx/mall/outer/ -# ||imgkdiyoub999.com/ok/ (easylistchina+easylist.txt: 3470) +# ||imgkdiyoub999.com/ok/ (easylistchina.txt: 3455) .imgkdiyoub999.com/ok/ -# ||imgchili.net/media/top.gif (easylistchina+easylist.txt: 3467) +# ||imgchili.net/media/top.gif (easylistchina.txt: 3452) .imgchili.net/media/top\.gif -# ||imgchili.net/media/image*.gif (easylistchina+easylist.txt: 3466) +# ||imgchili.net/media/image*.gif (easylistchina.txt: 3451) .imgchili.net/media/image.*\.gif -# ||img2.www.fmdisk.com^ (easylistchina+easylist.txt: 3464) +# ||img2.www.fmdisk.com^ (easylistchina.txt: 3449) .img2.www.fmdisk.com -# ||img2.win007.com/image/*.jpg (easylistchina+easylist.txt: 3463) +# ||img2.win007.com/image/*.jpg (easylistchina.txt: 3448) .img2.win007.com/image/.*\.jpg -# ||img2.e0575.com//upload/adv/ (easylistchina+easylist.txt: 3462) -# ||img2.e0575.com*/upload/image/ (easylistchina+easylist.txt: 3461) +# ||img2.e0575.com//upload/adv/ (easylistchina.txt: 3447) +# ||img2.e0575.com*/upload/image/ (easylistchina.txt: 3446) .img2.e0575.com*./(.*/)?upload/image/ -# ||img2.126.net^ (easylistchina+easylist.txt: 3460) +# ||img2.126.net^ (easylistchina.txt: 3445) .img2.126.net -# ||img1.jczqw.com/img/ (easylistchina+easylist.txt: 3459) +# ||img1.jczqw.com/img/ (easylistchina.txt: 3444) .img1.jczqw.com/img/ -# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina+easylist.txt: 3458) +# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina.txt: 3443) .img1.efu.com.cn/upfile/bew/.*\.swf -# ||img1.autofan.com.cn/swf/ (easylistchina+easylist.txt: 3457) +# ||img1.autofan.com.cn/swf/ (easylistchina.txt: 3442) .img1.autofan.com.cn/swf/ -# ||img1.126.net^ (easylistchina+easylist.txt: 3456) +# ||img1.126.net^ (easylistchina.txt: 3441) .img1.126.net -# ||img.ybbbs.com/2015/ (easylistchina+easylist.txt: 3455) +# ||img.ybbbs.com/2015/ (easylistchina.txt: 3440) .img.ybbbs.com/2015/ -# ||img.ybbbs.com/2014/ (easylistchina+easylist.txt: 3454) +# ||img.ybbbs.com/2014/ (easylistchina.txt: 3439) .img.ybbbs.com/2014/ -# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina+easylist.txt: 3453) +# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina.txt: 3438) .img.wangxiao.cn/images/big_ad\.jpg -# ||img.sz.js.cn/wj/ (easylistchina+easylist.txt: 3451) +# ||img.sz.js.cn/wj/ (easylistchina.txt: 3436) .img.sz.js.cn/wj/ -# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina+easylist.txt: 3450) +# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina.txt: 3435) .img.kuai.xunlei.com/img/v2/fen/ -# ||img.ifeng.com/tres/html/ (easylistchina+easylist.txt: 3448) +# ||img.ifeng.com/tres/html/ (easylistchina.txt: 3433) .img.ifeng.com/tres/html/ -# ||img.hexun.com*/wszj/js.js (easylistchina+easylist.txt: 3447) +# ||img.hexun.com*/wszj/js.js (easylistchina.txt: 3432) .img.hexun.com*./(.*/)?wszj/js\.js -# ||img.cqsq.com/s/temp/ (easylistchina+easylist.txt: 3445) +# ||img.cqsq.com/s/temp/ (easylistchina.txt: 3430) .img.cqsq.com/s/temp/ -# ||img.cngba.com/da/ (easylistchina+easylist.txt: 3444) +# ||img.cngba.com/da/ (easylistchina.txt: 3429) .img.cngba.com/da/ -# ||img.9duw.com^ (easylistchina+easylist.txt: 3442) +# ||img.9duw.com^ (easylistchina.txt: 3427) .img.9duw.com -# ||img.90bfw.com^*.gif (easylistchina+easylist.txt: 3441) +# ||img.90bfw.com^*.gif (easylistchina.txt: 3426) .img.90bfw.com/.*\.gif -# ||img.86wan.com/img2/top.jpg (easylistchina+easylist.txt: 3440) +# ||img.86wan.com/img2/top.jpg (easylistchina.txt: 3425) .img.86wan.com/img2/top\.jpg -# ||img.3sjt.com^ (easylistchina+easylist.txt: 3438) +# ||img.3sjt.com^ (easylistchina.txt: 3423) .img.3sjt.com -# ||img*.win007.com/image/*.gif (easylistchina+easylist.txt: 3437) +# ||img*.win007.com/image/*.gif (easylistchina.txt: 3422) .img*./.*\.win007\.com/image/.*\.gif .img*.win007.com/image/.*\.gif -# ||img*.titan007.com/image/*.gif (easylistchina+easylist.txt: 3436) +# ||img*.titan007.com/image/*.gif (easylistchina.txt: 3421) .img*./.*\.titan007\.com/image/.*\.gif .img*.titan007.com/image/.*\.gif -# ||img*.bet007.com/image/*.gif (easylistchina+easylist.txt: 3434) +# ||img*.bet007.com/image/*.gif (easylistchina.txt: 3419) .img*./.*\.bet007\.com/image/.*\.gif .img*.bet007.com/image/.*\.gif -# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina+easylist.txt: 3433) +# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina.txt: 3418) .imeee.cn/DA_HTML/bottom_960x90\.html -# ||imeee.cn/DA_HTML/*.js (easylistchina+easylist.txt: 3432) +# ||imeee.cn/DA_HTML/*.js (easylistchina.txt: 3417) .imeee.cn/DA_HTML/.*\.js -# ||imanke.com/static/player/loading/imanke.html (easylistchina+easylist.txt: 3431) +# ||imanke.com/static/player/loading/imanke.html (easylistchina.txt: 3416) .imanke.com/static/player/loading/imanke\.html -# ||imanhua.com^*/nmoneys/ (easylistchina+easylist.txt: 3430) +# ||imanhua.com^*/nmoneys/ (easylistchina.txt: 3415) .imanhua.com/.*/nmoneys/ -# ||imanhua.com^*/money/ (easylistchina+easylist.txt: 3429) +# ||imanhua.com^*/money/ (easylistchina.txt: 3414) .imanhua.com/.*/money/ -# ||images.sohu.com/ytv/*.swf (easylistchina+easylist.txt: 3428) +# ||images.sohu.com/ytv/*.swf (easylistchina.txt: 3413) .images.sohu.com/ytv/.*\.swf -# ||images.sohu.com/ytv/*.jpg (easylistchina+easylist.txt: 3427) +# ||images.sohu.com/ytv/*.jpg (easylistchina.txt: 3412) .images.sohu.com/ytv/.*\.jpg -# ||images.sohu.com/cs/ (easylistchina+easylist.txt: 3426) +# ||images.sohu.com/cs/ (easylistchina.txt: 3411) .images.sohu.com/cs/ -# ||images.sohu.com/bill/ (easylistchina+easylist.txt: 3425) +# ||images.sohu.com/bill/ (easylistchina.txt: 3410) .images.sohu.com/bill/ -# ||images.mydrivers.com/2009 (easylistchina+easylist.txt: 3424) +# ||images.mydrivers.com/2009 (easylistchina.txt: 3409) .images.mydrivers.com/2009 -# ||images.jurong.cn/bbs/ (easylistchina+easylist.txt: 3423) +# ||images.jurong.cn/bbs/ (easylistchina.txt: 3408) .images.jurong.cn/bbs/ -# ||images.gxsky.com^ (easylistchina+easylist.txt: 3422) +# ||images.gxsky.com^ (easylistchina.txt: 3407) .images.gxsky.com -# ||images.dayoo.com/dywimg/ (easylistchina+easylist.txt: 3421) +# ||images.dayoo.com/dywimg/ (easylistchina.txt: 3406) .images.dayoo.com/dywimg/ -# ||images.chinaz.com^ (easylistchina+easylist.txt: 3420) +# ||images.chinaz.com^ (easylistchina.txt: 3405) .images.chinaz.com -# ||image.wenweipo.com/*/ad_ (easylistchina+easylist.txt: 3418) +# ||image.wenweipo.com/*/ad_ (easylistchina.txt: 3403) .image.wenweipo.com/.*/ad_ -# ||image.sportscn.com/other/live/ (easylistchina+easylist.txt: 3417) +# ||image.sportscn.com/other/live/ (easylistchina.txt: 3402) .image.sportscn.com/other/live/ -# ||image.seowhy.com/bbs/20 (easylistchina+easylist.txt: 3416) +# ||image.seowhy.com/bbs/20 (easylistchina.txt: 3401) .image.seowhy.com/bbs/20 -# ||image.lepan.cc^ (easylistchina+easylist.txt: 3415) +# ||image.lepan.cc^ (easylistchina.txt: 3400) .image.lepan.cc -# ||image.hh010.com^ (easylistchina+easylist.txt: 3414) +# ||image.hh010.com^ (easylistchina.txt: 3399) .image.hh010.com -# ||image.9duw.com^ (easylistchina+easylist.txt: 3413) +# ||image.9duw.com^ (easylistchina.txt: 3398) .image.9duw.com -# ||image.6park.com^ (easylistchina+easylist.txt: 3412) +# ||image.6park.com^ (easylistchina.txt: 3397) .image.6park.com -# ||im286.com/images/37cs.gif (easylistchina+easylist.txt: 3411) +# ||im286.com/images/37cs.gif (easylistchina.txt: 3396) .im286.com/images/37cs\.gif -# ||im286.com/286/ (easylistchina+easylist.txt: 3410) +# ||im286.com/286/ (easylistchina.txt: 3395) .im286.com/286/ -# ||im.zww.im/images/ (easylistchina+easylist.txt: 3409) +# ||im.zww.im/images/ (easylistchina.txt: 3394) .im.zww.im/images/ -# ||ilovecao.com^*.gif (easylistchina+easylist.txt: 3408) +# ||ilovecao.com^*.gif (easylistchina.txt: 3393) .ilovecao.com/.*\.gif -# ||ilikecao.com^*.gif (easylistchina+easylist.txt: 3407) +# ||ilikecao.com^*.gif (easylistchina.txt: 3392) .ilikecao.com/.*\.gif -# ||ikaka.com/globalad/ (easylistchina+easylist.txt: 3406) +# ||ikaka.com/globalad/ (easylistchina.txt: 3391) .ikaka.com/globalad/ -# ||ijia360.com/data/poster/ (easylistchina+easylist.txt: 3405) +# ||ijia360.com/data/poster/ (easylistchina.txt: 3390) .ijia360.com/data/poster/ -# ||ihref.com/ihref_gg/ (easylistchina+easylist.txt: 3404) +# ||ihref.com/ihref_gg/ (easylistchina.txt: 3389) .ihref.com/ihref_gg/ -# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina+easylist.txt: 3403) +# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina.txt: 3388) .iguang.tw/bm/seo_rotation/html/js/ -# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina+easylist.txt: 3402) +# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina.txt: 3387) .iguaji.com/wp-content/uploads/.*/ttzad -# ||iggyy8.com/js/v/ (easylistchina+easylist.txt: 3401) +# ||iggyy8.com/js/v/ (easylistchina.txt: 3386) .iggyy8.com/js/v/ -# ||ifxtx.com^*589x60. (easylistchina+easylist.txt: 3400) +# ||ifxtx.com^*589x60. (easylistchina.txt: 3385) .ifxtx.com/.*589x60\. -# ||ifxtx.com/tp/ (easylistchina+easylist.txt: 3399) +# ||ifxtx.com/tp/ (easylistchina.txt: 3384) .ifxtx.com/tp/ -# ||ifxtx.com/js/ad-02.js (easylistchina+easylist.txt: 3398) +# ||ifxtx.com/js/ad-02.js (easylistchina.txt: 3383) .ifxtx.com/js/ad-02\.js -# ||ifx.aifang.com^ (easylistchina+easylist.txt: 3397) +# ||ifx.aifang.com^ (easylistchina.txt: 3382) .ifx.aifang.com -# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina+easylist.txt: 3396) +# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina.txt: 3381) .ifood1.com/aobntech/pic/9300\.jpg -# ||ifonce.com/813.gif (easylistchina+easylist.txt: 3395) +# ||ifonce.com/813.gif (easylistchina.txt: 3380) .ifonce.com/813\.gif -# ||ifengimg.com^*/yingguang- (easylistchina+easylist.txt: 3392) +# ||ifengimg.com^*/yingguang- (easylistchina.txt: 3377) .ifengimg.com/.*/yingguang- -# ||ifengimg.com^*/sparta.js (easylistchina+easylist.txt: 3391) +# ||ifengimg.com^*/sparta.js (easylistchina.txt: 3376) .ifengimg.com/.*/sparta\.js -# ||ifengimg.com^*/shfwq (easylistchina+easylist.txt: 3390) +# ||ifengimg.com^*/shfwq (easylistchina.txt: 3375) .ifengimg.com/.*/shfwq -# ||ifengimg.com^*/rdn_*.js? (easylistchina+easylist.txt: 3389) +# ||ifengimg.com^*/rdn_*.js? (easylistchina.txt: 3374) .ifengimg.com/.*/rdn_.*\.js\? -# ||ifengimg.com^*/pan.js (easylistchina+easylist.txt: 3388) +# ||ifengimg.com^*/pan.js (easylistchina.txt: 3373) .ifengimg.com/.*/pan\.js -# ||ifengimg.com^*/iframe_load_ (easylistchina+easylist.txt: 3387) +# ||ifengimg.com^*/iframe_load_ (easylistchina.txt: 3372) .ifengimg.com/.*/iframe_load_ -# ||ifengimg.com^*/hover.js (easylistchina+easylist.txt: 3386) +# ||ifengimg.com^*/hover.js (easylistchina.txt: 3371) .ifengimg.com/.*/hover\.js -# ||ifengimg.com^*/hddw- (easylistchina+easylist.txt: 3385) +# ||ifengimg.com^*/hddw- (easylistchina.txt: 3370) .ifengimg.com/.*/hddw- -# ||ifengimg.com^*/fullscreen (easylistchina+easylist.txt: 3384) +# ||ifengimg.com^*/fullscreen (easylistchina.txt: 3369) .ifengimg.com/.*/fullscreen -# ||ifengimg.com^*/backwindow.js (easylistchina+easylist.txt: 3383) +# ||ifengimg.com^*/backwindow.js (easylistchina.txt: 3368) .ifengimg.com/.*/backwindow\.js -# ||ifengimg.com^*/aplayer.xml (easylistchina+easylist.txt: 3382) +# ||ifengimg.com^*/aplayer.xml (easylistchina.txt: 3367) .ifengimg.com/.*/aplayer\.xml -# ||ifengimg.com^*/300-300. (easylistchina+easylist.txt: 3381) +# ||ifengimg.com^*/300-300. (easylistchina.txt: 3366) .ifengimg.com/.*/300-300\. -# ||ifengimg.com^*/300-300- (easylistchina+easylist.txt: 3380) +# ||ifengimg.com^*/300-300- (easylistchina.txt: 3365) .ifengimg.com/.*/300-300- -# ||ifengimg.com^*/1000X90- (easylistchina+easylist.txt: 3379) +# ||ifengimg.com^*/1000X90- (easylistchina.txt: 3364) .ifengimg.com/.*/1000X90- -# ||ifengimg.com^*/1000-90- (easylistchina+easylist.txt: 3378) +# ||ifengimg.com^*/1000-90- (easylistchina.txt: 3363) .ifengimg.com/.*/1000-90- -# ||ifengimg.com^*/100-100- (easylistchina+easylist.txt: 3377) +# ||ifengimg.com^*/100-100- (easylistchina.txt: 3362) .ifengimg.com/.*/100-100- -# ||ifengimg.com^*-gewindow- (easylistchina+easylist.txt: 3376) +# ||ifengimg.com^*-gewindow- (easylistchina.txt: 3361) .ifengimg.com/.*-gewindow- -# ||ifengimg.com/zhishaofei/js/ (easylistchina+easylist.txt: 3375) +# ||ifengimg.com/zhishaofei/js/ (easylistchina.txt: 3360) .ifengimg.com/zhishaofei/js/ -# ||ifengimg.com/xingzhao/JS/ (easylistchina+easylist.txt: 3374) +# ||ifengimg.com/xingzhao/JS/ (easylistchina.txt: 3359) .ifengimg.com/xingzhao/JS/ -# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina+easylist.txt: 3373) +# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina.txt: 3358) .ifengimg.com/tres/js/.*/idemin_noif\.js -# ||ifengimg.com/static/news/js/advtrack_ (easylistchina+easylist.txt: 3372) -.ifengimg.com/static/news/js/advtrack_ -# ||ifengimg.com/neiqian/*/embed.js (easylistchina+easylist.txt: 3371) +# ||ifengimg.com/static/news/js/advtrack (easylistchina.txt: 3357) +.ifengimg.com/static/news/js/advtrack +# ||ifengimg.com/neiqian/*/embed.js (easylistchina.txt: 3356) .ifengimg.com/neiqian/.*/embed\.js -# ||ifengimg.com/iis/iis_ (easylistchina+easylist.txt: 3369) +# ||ifengimg.com/iis/iis_ (easylistchina.txt: 3354) .ifengimg.com/iis/iis_ -# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina+easylist.txt: 3368) +# ||ifengimg.com/ifengimcp/pic/*_w750_h112. (easylistchina.txt: 3353) +.ifengimg.com/ifengimcp/pic/.*_w750_h112\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina.txt: 3352) .ifengimg.com/ifengimcp/pic/.*_w640_h130\. -# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina+easylist.txt: 3367) +# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina.txt: 3351) .ifengimg.com/ifengimcp/pic/.*_w640_h120\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina+easylist.txt: 3366) +# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina.txt: 3350) .ifengimg.com/ifengimcp/pic/.*_w320_h48\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina+easylist.txt: 3365) +# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina.txt: 3349) .ifengimg.com/ifengimcp/pic/.*_w320_h330\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina+easylist.txt: 3364) +# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina.txt: 3348) .ifengimg.com/ifengimcp/pic/.*_w320_h210\. -# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina+easylist.txt: 3363) +# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina.txt: 3347) .ifengimg.com/ifengimcp/pic/.*_w320_h120\. -# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina+easylist.txt: 3362) +# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina.txt: 3346) .ifengimg.com/ifengimcp/pic/.*_w300_h65\. -# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina+easylist.txt: 3361) +# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina.txt: 3345) .ifengimg.com/ifengimcp/pic/.*_w24_h100\. -# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina+easylist.txt: 3360) +# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina.txt: 3344) .ifengimg.com/ifengimcp/pic/.*_w130_h100\. -# ||ifengimg.com/ifeng/sources/ (easylistchina+easylist.txt: 3359) +# ||ifengimg.com/ifeng/sources/ (easylistchina.txt: 3343) .ifengimg.com/ifeng/sources/ -# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina+easylist.txt: 3358) +# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina.txt: 3342) .ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1\.jpg -# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina+easylist.txt: 3357) +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina.txt: 3341) .ifengimg.com/29daa33abbbc4bbc/2015/7/titad\.gif -# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina+easylist.txt: 3356) +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina.txt: 3340) .ifengimg.com/29daa33abbbc4bbc/2015/7/aogute\.gif -# ||ifengimg.com/*/taobaopudi/ (easylistchina+easylist.txt: 3355) +# ||ifengimg.com/*/taobaopudi/ (easylistchina.txt: 3339) .ifengimg.com/.*/taobaopudi/ -# ||ifeng.com^*&ADUNITID= (easylistchina+easylist.txt: 3354) +# ||ifeng.com^*&ADUNITID= (easylistchina.txt: 3338) .ifeng.com/.*&ADUNITID= -# ||ifeng.com/wapAdversApi? (easylistchina+easylist.txt: 3353) +# ||ifeng.com/wapAdversApi? (easylistchina.txt: 3337) .ifeng.com/wapAdversApi\? -# ||ifeng.com/statics/comment_baidu.html (easylistchina+easylist.txt: 3352) +# ||ifeng.com/statics/comment_baidu.html (easylistchina.txt: 3336) .ifeng.com/statics/comment_baidu\.html -# ||ifeng.com/ssi-incs/ (easylistchina+easylist.txt: 3351) +# ||ifeng.com/ssi-incs/ (easylistchina.txt: 3335) .ifeng.com/ssi-incs/ -# ||ifeng.com/showjs?*apids= (easylistchina+easylist.txt: 3350) +# ||ifeng.com/showjs?*apids= (easylistchina.txt: 3334) .ifeng.com/showjs\?.*apids= -# ||ifeng.com/iframe/toquickbet (easylistchina+easylist.txt: 3349) +# ||ifeng.com/iframe/toquickbet (easylistchina.txt: 3333) .ifeng.com/iframe/toquickbet -# ||ifeng.com/iframe/quickbet (easylistchina+easylist.txt: 3348) +# ||ifeng.com/iframe/quickbet (easylistchina.txt: 3332) .ifeng.com/iframe/quickbet -# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina+easylist.txt: 3347) +# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina.txt: 3331) .ifeng.com/bbsfile/js/ifeng_tip\.js -# ||ifeng.com/a_if/taobao- (easylistchina+easylist.txt: 3346) +# ||ifeng.com/a_if/taobao- (easylistchina.txt: 3330) .ifeng.com/a_if/taobao- -# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina+easylist.txt: 3345) +# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina.txt: 3329) .ifanr.cn/wp-content/uploads/2015/12/xc90\.jpg -# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina+easylist.txt: 3344) +# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina.txt: 3328) .ietv.cc/Runtime/Js/web_bug\.js -# ||ietv.cc/Runtime/Js/vod (easylistchina+easylist.txt: 3343) +# ||ietv.cc/Runtime/Js/vod (easylistchina.txt: 3327) .ietv.cc/Runtime/Js/vod -# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina+easylist.txt: 3342) +# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina.txt: 3326) .ietv.cc/min/b=Runtime/Js&f= -# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina+easylist.txt: 3341) +# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina.txt: 3325) .iefans.net/wp-content/uploads/2009/js/llq/2345llq\.gif -# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina+easylist.txt: 3340) +# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina.txt: 3324) .iefans.net/wp-content/uploads/2009/03/UCbanner\.gif -# ||ieche.com/InAds/ (easylistchina+easylist.txt: 3339) +# ||ieche.com/InAds/ (easylistchina.txt: 3323) .ieche.com/InAds/ -# ||ieche.com/global/*/ad/ (easylistchina+easylist.txt: 3338) +# ||ieche.com/global/*/ad/ (easylistchina.txt: 3322) .ieche.com/global/.*/ad/ -# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina+easylist.txt: 3337) +# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina.txt: 3321) .ie.5500w.com/market/404230/pop_browser\.js -# ||idcxr.com/images/ad (easylistchina+easylist.txt: 3336) +# ||idcxr.com/images/ad (easylistchina.txt: 3320) .idcxr.com/images/ad -# ||idcquan.com/linux/cio_new.html (easylistchina+easylist.txt: 3335) +# ||idcquan.com/linux/cio_new.html (easylistchina.txt: 3319) .idcquan.com/linux/cio_new\.html -# ||idcot.com^ (easylistchina+easylist.txt: 3334) +# ||idcot.com^ (easylistchina.txt: 3318) .idcot.com -# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina+easylist.txt: 3333) +# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina.txt: 3317) .idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff\.png -# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina+easylist.txt: 3332) +# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina.txt: 3316) .idanmu.com/wp-content/themes/wpbangumi/images/assets/ -# ||icnkr.com/data/attachment/portal/ (easylistchina+easylist.txt: 3331) +# ||icnkr.com/data/attachment/portal/ (easylistchina.txt: 3315) .icnkr.com/data/attachment/portal/ -# ||icnkr.com/cnkradv/ (easylistchina+easylist.txt: 3330) +# ||icnkr.com/cnkradv/ (easylistchina.txt: 3314) .icnkr.com/cnkradv/ -# ||icili.com/cpma.js (easylistchina+easylist.txt: 3329) +# ||icili.com/cpma.js (easylistchina.txt: 3313) .icili.com/cpma\.js -# ||iciba.com/web/co/ci/ (easylistchina+easylist.txt: 3328) +# ||iciba.com/web/co/ci/ (easylistchina.txt: 3312) .iciba.com/web/co/ci/ -# ||iciba.com/static/images/double11_ (easylistchina+easylist.txt: 3327) +# ||iciba.com/static/images/double11_ (easylistchina.txt: 3311) .iciba.com/static/images/double11_ -# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina+easylist.txt: 3326) +# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina.txt: 3310) .ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi\.jpg -# ||ibook8.com/xia*.js (easylistchina+easylist.txt: 3325) +# ||ibook8.com/xia*.js (easylistchina.txt: 3309) .ibook8.com/xia.*\.js -# ||ibook8.com/js/b*.js (easylistchina+easylist.txt: 3324) +# ||ibook8.com/js/b*.js (easylistchina.txt: 3308) .ibook8.com/js/b.*\.js -# ||ibook8.com*/piao*.js (easylistchina+easylist.txt: 3323) +# ||ibook8.com*/piao*.js (easylistchina.txt: 3307) .ibook8.com*./(.*/)?piao.*\.js -# ||iapp.com.tw/iapp_ad.php (easylistchina+easylist.txt: 3322) +# ||iapp.com.tw/iapp_ad.php (easylistchina.txt: 3306) .iapp.com.tw/iapp_ad\.php -# ||iapolo.com/myjs/ (easylistchina+easylist.txt: 3321) +# ||iapolo.com/myjs/ (easylistchina.txt: 3305) .iapolo.com/myjs/ -# ||iads.xinmin.cn^ (easylistchina+easylist.txt: 3320) +# ||iads.xinmin.cn^ (easylistchina.txt: 3304) .iads.xinmin.cn -# ||i322.com/ad_avshow/ (easylistchina+easylist.txt: 3319) +# ||i322.com/ad_avshow/ (easylistchina.txt: 3303) .i322.com/ad_avshow/ -# ||i.syasn.com^ (easylistchina+easylist.txt: 3318) +# ||i.syasn.com^ (easylistchina.txt: 3302) .i.syasn.com -# ||i.fgi.tw/images/survey_of_woman (easylistchina+easylist.txt: 3317) +# ||i.fgi.tw/images/survey_of_woman (easylistchina.txt: 3301) .i.fgi.tw/images/survey_of_woman -# ||i-part.com.tw/js2/newShineStar (easylistchina+easylist.txt: 3313) +# ||i-part.com.tw/js2/newShineStar (easylistchina.txt: 3297) .i-part.com.tw/js2/newShineStar -# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina+easylist.txt: 3312) +# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina.txt: 3296) .i-part.com.tw/images2/index/HouseStar/ -# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina+easylist.txt: 3311) +# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina.txt: 3295) .i-part.com.tw/hookimg/23892_14367801811\.jpg -# ||i-gamer.net/promo_ (easylistchina+easylist.txt: 3310) +# ||i-gamer.net/promo_ (easylistchina.txt: 3294) .i-gamer.net/promo_ -# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina+easylist.txt: 3309) +# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina.txt: 3293) .i-gamer.net/image/banner_tag_726x100\.jpg -# ||hzhyhm.com^ (easylistchina+easylist.txt: 3308) +# ||hzhyhm.com^ (easylistchina.txt: 3292) .hzhyhm.com -# ||hz.shouyoutv.com^ (easylistchina+easylist.txt: 3307) +# ||hz.shouyoutv.com^ (easylistchina.txt: 3291) .hz.shouyoutv.com -# ||hxyl.net/hydzsw.jpg (easylistchina+easylist.txt: 3305) +# ||hxyl.net/hydzsw.jpg (easylistchina.txt: 3289) .hxyl.net/hydzsw\.jpg -# ||hxsxw.com/js/float.js (easylistchina+easylist.txt: 3304) +# ||hxsxw.com/js/float.js (easylistchina.txt: 3288) .hxsxw.com/js/float\.js -# ||hxsxw.com/gg*.gif (easylistchina+easylist.txt: 3303) +# ||hxsxw.com/gg*.gif (easylistchina.txt: 3287) .hxsxw.com/gg.*\.gif -# ||hxsd.com/templets/js/looyu_pop.js (easylistchina+easylist.txt: 3302) +# ||hxsd.com/templets/js/looyu_pop.js (easylistchina.txt: 3286) .hxsd.com/templets/js/looyu_pop\.js -# ||hxsame.hexun.com (easylistchina+easylist.txt: 3301) +# ||hxsame.hexun.com (easylistchina.txt: 3285) .hxsame.hexun.com*. -# ||hxjs.tool.hexun.com (easylistchina+easylist.txt: 3300) +# ||hxjs.tool.hexun.com (easylistchina.txt: 3284) .hxjs.tool.hexun.com*. -# ||hx95.com/images/vip.gif (easylistchina+easylist.txt: 3299) +# ||hx95.com/images/vip.gif (easylistchina.txt: 3283) .hx95.com/images/vip\.gif -# ||hx95.com/images/sn88.gif (easylistchina+easylist.txt: 3298) +# ||hx95.com/images/sn88.gif (easylistchina.txt: 3282) .hx95.com/images/sn88\.gif -# ||huxiu.com/static/js/jobAds/ (easylistchina+easylist.txt: 3297) +# ||huxiu.com/static/js/jobAds/ (easylistchina.txt: 3281) .huxiu.com/static/js/jobAds/ -# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina+easylist.txt: 3296) +# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina.txt: 3280) .hutc.zj.cn/skins/hutc2012/js/fp\.js -# ||hur.cn/AhurD/*.gif (easylistchina+easylist.txt: 3295) +# ||hur.cn/AhurD/*.gif (easylistchina.txt: 3279) .hur.cn/AhurD/.*\.gif -# ||huoyan.tv/yb/img/*.gif (easylistchina+easylist.txt: 3294) +# ||huoyan.tv/yb/img/*.gif (easylistchina.txt: 3278) .huoyan.tv/yb/img/.*\.gif -# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina+easylist.txt: 3293) +# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina.txt: 3277) .huoxingyu.com/images/hxy_350_330\.gif -# ||huoone.com/templets/hanfeng/js/qdtwo.js (easylistchina+easylist.txt: 3292) -.huoone.com/templets/hanfeng/js/qdtwo\.js -# ||huoche.net/Images/pc/ad_ (easylistchina+easylist.txt: 3291) +# ||huoche.net/Images/pc/ad_ (easylistchina.txt: 3276) .huoche.net/Images/pc/ad_ -# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina+easylist.txt: 3290) +# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina.txt: 3275) .hunantv.com/ui/2014/images/hao123\.jpg -# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina+easylist.txt: 3289) +# ||huizu100.com/data/attachment/portal/ (easylistchina.txt: 3274) +.huizu100.com/data/attachment/portal/ +# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina.txt: 3273) .huizhou.cn/webfile/.*/images/scroll\.js -# ||huihuige.com/images/affiliates/*_250_250 (easylistchina+easylist.txt: 3288) +# ||huihuige.com/images/affiliates/*_250_250 (easylistchina.txt: 3272) .huihuige.com/images/affiliates/.*_250_250 -# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina+easylist.txt: 3287) +# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina.txt: 3271) .hudong.pl.youku.com/interact/web/get/timeLinePlugin\? -# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina+easylist.txt: 3286) +# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina.txt: 3270) .hudong.pl.youku.com/interact/player/get/plugins\? -# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina+easylist.txt: 3285) +# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina.txt: 3269) .huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default\.jpg -# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina+easylist.txt: 3284) +# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina.txt: 3268) .huanqiukexue.com/uploads/images/hqkx_11\.jpg -# ||huanqiu.com^*/js/swt.js (easylistchina+easylist.txt: 3283) +# ||huanqiu.com^*/js/swt.js (easylistchina.txt: 3267) .huanqiu.com/.*/js/swt\.js -# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina+easylist.txt: 3282) +# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina.txt: 3266) .huanqiu.com/script/HuanQiuAllBottom\.Js -# ||hualongxiang.com/lib/clientShow.js (easylistchina+easylist.txt: 3281) +# ||huanqiu.com/resource/js/base.js (easylistchina.txt: 3265) +.huanqiu.com/resource/js/base\.js +# ||hualongxiang.com/lib/clientShow.js (easylistchina.txt: 3264) .hualongxiang.com/lib/clientShow\.js -# ||hualady.com/static/ (easylistchina+easylist.txt: 3280) +# ||hualady.com/static/ (easylistchina.txt: 3263) .hualady.com/static/ -# ||huainet.com/index_tg/js/txg.js (easylistchina+easylist.txt: 3279) +# ||huainet.com/index_tg/js/txg.js (easylistchina.txt: 3262) .huainet.com/index_tg/js/txg\.js -# ||huacolor.com/nei/ (easylistchina+easylist.txt: 3278) +# ||huaiduoduo.info/Runtime/js/ (easylistchina.txt: 3261) +.huaiduoduo.info/Runtime/js/ +# ||huacolor.com/nei/ (easylistchina.txt: 3260) .huacolor.com/nei/ -# ||huacolor.com/daocaoren/ (easylistchina+easylist.txt: 3277) +# ||huacolor.com/daocaoren/ (easylistchina.txt: 3259) .huacolor.com/daocaoren/ -# ||huacolor.com/all/ (easylistchina+easylist.txt: 3276) +# ||huacolor.com/all/ (easylistchina.txt: 3258) .huacolor.com/all/ -# ||huabian.com/hb/ad/ (easylistchina+easylist.txt: 3275) +# ||huabian.com/hb/ad/ (easylistchina.txt: 3257) .huabian.com/hb/ad/ -# ||httpcn.com^*950_120 (easylistchina+easylist.txt: 3274) +# ||httpcn.com^*950_120 (easylistchina.txt: 3256) .httpcn.com/.*950_120 -# ||httpcn.com/tg/ (easylistchina+easylist.txt: 3273) +# ||httpcn.com/tg/ (easylistchina.txt: 3255) .httpcn.com/tg/ -# ||httpcn.com/include/ad1/ (easylistchina+easylist.txt: 3272) +# ||httpcn.com/include/ad1/ (easylistchina.txt: 3254) .httpcn.com/include/ad1/ -# ||httpcn.com/Images/banner (easylistchina+easylist.txt: 3271) +# ||httpcn.com/Images/banner (easylistchina.txt: 3253) .httpcn.com/Images/banner -# ||httpcn.com/images/adpic2014/ad (easylistchina+easylist.txt: 3270) +# ||httpcn.com/images/adpic2014/ad (easylistchina.txt: 3252) .httpcn.com/images/adpic2014/ad -# ||httpcn.com/images/ad_ (easylistchina+easylist.txt: 3269) +# ||httpcn.com/images/ad_ (easylistchina.txt: 3251) .httpcn.com/images/ad_ -# ||htpc1.com/iBT/tools/ (easylistchina+easylist.txt: 3268) +# ||htpc1.com/iBT/tools/ (easylistchina.txt: 3250) .htpc1.com/iBT/tools/ -# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina+easylist.txt: 3267) +# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina.txt: 3249) .hs.cnfol.com/Cm/Imgs/Load\.gif -# ||hrtsea.com/936x90.gif (easylistchina+easylist.txt: 3266) +# ||hrtsea.com/936x90.gif (easylistchina.txt: 3248) .hrtsea.com/936x90\.gif -# ||hqdoor.com/Web/ (easylistchina+easylist.txt: 3265) +# ||hqdoor.com/Web/ (easylistchina.txt: 3247) .hqdoor.com/Web/ -# ||hqcx.net/index.php?m=poster& (easylistchina+easylist.txt: 3264) +# ||hqcx.net/index.php?m=poster& (easylistchina.txt: 3246) .hqcx.net/index\.php\?m=poster& -# ||how361.com/images/letou/xsbanner.gif (easylistchina+easylist.txt: 3262) +# ||how361.com/images/letou/xsbanner.gif (easylistchina.txt: 3244) .how361.com/images/letou/xsbanner\.gif -# ||how361.com/images/letou/20130111.gif (easylistchina+easylist.txt: 3261) +# ||how361.com/images/letou/20130111.gif (easylistchina.txt: 3243) .how361.com/images/letou/20130111\.gif -# ||how361.com/data/js.php?id= (easylistchina+easylist.txt: 3260) +# ||how361.com/data/js.php?id= (easylistchina.txt: 3242) .how361.com/data/js\.php\?id= -# ||houyi.baofeng.net^*.html (easylistchina+easylist.txt: 3259) +# ||houyi.baofeng.net^*.html (easylistchina.txt: 3241) .houyi.baofeng.net/.*\.html -# ||house365.com/js/lbpopup.js (easylistchina+easylist.txt: 3258) +# ||house365.com/js/lbpopup.js (easylistchina.txt: 3240) .house365.com/js/lbpopup\.js -# ||house365.com/*ads/201 (easylistchina+easylist.txt: 3257) +# ||house365.com/*ads/201 (easylistchina.txt: 3239) .house365.com/.*ads/201 -# ||house.sina.com.cn/2.0/ads/ (easylistchina+easylist.txt: 3256) +# ||house.sina.com.cn/2.0/ads/ (easylistchina.txt: 3238) .house.sina.com.cn/2\.0/ads/ -# ||house.sina.com.cn/2.0/abp/ (easylistchina+easylist.txt: 3255) +# ||house.sina.com.cn/2.0/abp/ (easylistchina.txt: 3237) .house.sina.com.cn/2\.0/abp/ -# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina+easylist.txt: 3254) +# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina.txt: 3236) .house.shangdu.com/house/js/fmt_swf/ -# ||house.shangdu.com/d/file/p/*.swf (easylistchina+easylist.txt: 3253) +# ||house.shangdu.com/d/file/p/*.swf (easylistchina.txt: 3235) .house.shangdu.com/d/file/p/.*\.swf -# ||house.jschina.com.cn/userfiles/flash/ (easylistchina+easylist.txt: 3252) +# ||house.jschina.com.cn/userfiles/flash/ (easylistchina.txt: 3234) .house.jschina.com.cn/userfiles/flash/ -# ||house.inhe.net/javascript/flashdiv.js (easylistchina+easylist.txt: 3251) +# ||house.inhe.net/javascript/flashdiv.js (easylistchina.txt: 3233) .house.inhe.net/javascript/flashdiv\.js -# ||houdao.com/images/xxd.jpg (easylistchina+easylist.txt: 3250) +# ||house.163.com/special/*/dbhg.js (easylistchina.txt: 3232) +.house.163.com/special/.*/dbhg\.js +# ||houdao.com/images/xxd.jpg (easylistchina.txt: 3231) .houdao.com/images/xxd\.jpg -# ||houdao.com/images/tophd.jpg (easylistchina+easylist.txt: 3249) +# ||houdao.com/images/tophd.jpg (easylistchina.txt: 3230) .houdao.com/images/tophd\.jpg -# ||houdao.com/images/ktpd.jpg (easylistchina+easylist.txt: 3248) +# ||houdao.com/images/ktpd.jpg (easylistchina.txt: 3229) .houdao.com/images/ktpd\.jpg -# ||houdao.com/images/houdaov3/ban.png (easylistchina+easylist.txt: 3247) +# ||houdao.com/images/houdaov3/ban.png (easylistchina.txt: 3228) .houdao.com/images/houdaov3/ban\.png -# ||houdao.com/bans/ (easylistchina+easylist.txt: 3246) +# ||houdao.com/bans/ (easylistchina.txt: 3227) .houdao.com/bans/ -# ||hoto.cn/source/img/index_ (easylistchina+easylist.txt: 3245) +# ||hoto.cn/source/img/index_ (easylistchina.txt: 3226) .hoto.cn/source/img/index_ -# ||hotavxxx.com/images/111111111.jpg (easylistchina+easylist.txt: 3244) -.hotavxxx.com/images/111111111\.jpg -# ||hotavxxx.com/images/*96 (easylistchina+easylist.txt: 3243) +# ||hotavxxx.com/images/*96 (easylistchina.txt: 3225) .hotavxxx.com/images/.*96 -# ||hot.580k.com/share/Ad_ (easylistchina+easylist.txt: 3242) +# ||hot.580k.com/share/Ad_ (easylistchina.txt: 3224) .hot.580k.com/share/Ad_ -# ||hoopchina.com.cn/web/ad/ (easylistchina+easylist.txt: 3241) +# ||hoopchina.com.cn/web/ad/ (easylistchina.txt: 3223) .hoopchina.com.cn/web/ad/ -# ||hongxiu.com/images/home20140530.gif (easylistchina+easylist.txt: 3239) +# ||hongxiu.com/images/home20140530.gif (easylistchina.txt: 3221) .hongxiu.com/images/home20140530\.gif -# ||hongshu.com/hs/ (easylistchina+easylist.txt: 3238) +# ||hongshu.com/hs/ (easylistchina.txt: 3220) .hongshu.com/hs/ -# ||hn-pc.com/css/Fun_Div.js (easylistchina+easylist.txt: 3236) +# ||hn-pc.com/css/Fun_Div.js (easylistchina.txt: 3218) .hn-pc.com/css/Fun_Div\.js -# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina+easylist.txt: 3235) +# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina.txt: 3217) .hkwb.net/extra/1992\.files/hengda\.gif -# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina+easylist.txt: 3234) +# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina.txt: 3216) .hkwb.net/extra/1992\.files/2015yeshu\.swf -# ||hktvmall.com/api/preroll/getList? (easylistchina+easylist.txt: 3233) +# ||hktvmall.com/api/preroll/getList? (easylistchina.txt: 3215) .hktvmall.com/api/preroll/getList\? -# ||hkslg.com/gaogao/ (easylistchina+easylist.txt: 3232) +# ||hkslg.com/gaogao/ (easylistchina.txt: 3214) .hkslg.com/gaogao/ -# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina+easylist.txt: 3231) +# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina.txt: 3213) .hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner\.jpg -# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina+easylist.txt: 3230) +# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina.txt: 3212) .hkitblog.com/logo/hkitblog_zh\.jpg -# ||hkheadline.com^*/right_promo.js (easylistchina+easylist.txt: 3229) +# ||hkheadline.com^*/right_promo.js (easylistchina.txt: 3211) .hkheadline.com/.*/right_promo\.js -# ||hkheadline.com/*promo/ (easylistchina+easylist.txt: 3228) +# ||hkheadline.com/*promo/ (easylistchina.txt: 3210) .hkheadline.com/.*promo/ -# ||hkgolden.com/yahoo_ad (easylistchina+easylist.txt: 3226) +# ||hkgolden.com/yahoo_ad (easylistchina.txt: 3208) .hkgolden.com/yahoo_ad -# ||hkgolden.com/mtg/ (easylistchina+easylist.txt: 3225) +# ||hkgolden.com/mtg/ (easylistchina.txt: 3207) .hkgolden.com/mtg/ -# ||hkgolden.com/hkg.js (easylistchina+easylist.txt: 3224) +# ||hkgolden.com/hkg.js (easylistchina.txt: 3206) .hkgolden.com/hkg\.js -# ||hkgolden.com/google_ad (easylistchina+easylist.txt: 3223) +# ||hkgolden.com/google_ad (easylistchina.txt: 3205) .hkgolden.com/google_ad -# ||hkepc.com/prepared/images/b608.png (easylistchina+easylist.txt: 3222) +# ||hkepc.com/prepared/images/b608.png (easylistchina.txt: 3204) .hkepc.com/prepared/images/b608\.png -# ||hkepc.com/forum/api/unimhk_ (easylistchina+easylist.txt: 3221) +# ||hkepc.com/forum/api/unimhk_ (easylistchina.txt: 3203) .hkepc.com/forum/api/unimhk_ -# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina+easylist.txt: 3220) +# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina.txt: 3202) .hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852\.swf -# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina+easylist.txt: 3219) +# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina.txt: 3201) .hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515\.jpg -# ||hk-pub.com/forum/images/banner/ (easylistchina+easylist.txt: 3218) +# ||hk-pub.com/forum/images/banner/ (easylistchina.txt: 3200) .hk-pub.com/forum/images/banner/ -# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina+easylist.txt: 3217) +# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina.txt: 3199) .hk-pub.com/forum/images/2009/home_advc\.jpg -# ||hk-bici.com/data/attachment/ad/ (easylistchina+easylist.txt: 3216) +# ||hk-bici.com/data/attachment/ad/ (easylistchina.txt: 3198) .hk-bici.com/data/attachment/ad/ -# ||hjdn.cn/img/hjgq.gif (easylistchina+easylist.txt: 3215) +# ||hjdn.cn/img/hjgq.gif (easylistchina.txt: 3197) .hjdn.cn/img/hjgq\.gif -# ||hjav.org/wp-content/uploads/ (easylistchina+easylist.txt: 3214) +# ||hjav.org/wp-content/uploads/ (easylistchina.txt: 3196) .hjav.org/wp-content/uploads/ -# ||hjav.org/ads.js (easylistchina+easylist.txt: 3213) +# ||hjav.org/ads.js (easylistchina.txt: 3195) .hjav.org/ads\.js -# ||hjav.in/wp-content/uploads/ (easylistchina+easylist.txt: 3212) +# ||hjav.in/wp-content/uploads/ (easylistchina.txt: 3194) .hjav.in/wp-content/uploads/ -# ||hjav.in/ads.js (easylistchina+easylist.txt: 3211) +# ||hjav.in/ads.js (easylistchina.txt: 3193) .hjav.in/ads\.js -# ||hjav.in/ad_dl.js (easylistchina+easylist.txt: 3210) +# ||hjav.in/ad_dl.js (easylistchina.txt: 3192) .hjav.in/ad_dl\.js -# ||hipowerd.com/outbound/images/*_banner. (easylistchina+easylist.txt: 3209) +# ||hipowerd.com/outbound/images/*_banner. (easylistchina.txt: 3191) .hipowerd.com/outbound/images/.*_banner\. -# ||hinews.cn/swf/0/*.swf (easylistchina+easylist.txt: 3208) +# ||hinews.cn/swf/0/*.swf (easylistchina.txt: 3190) .hinews.cn/swf/0/.*\.swf -# ||hinews.cn/js/09page/10pagesjbtj (easylistchina+easylist.txt: 3206) +# ||hinews.cn/js/09page/10pagesjbtj (easylistchina.txt: 3188) .hinews.cn/js/09page/10pagesjbtj -# ||hinews.cn/eweb/img/*/1000x (easylistchina+easylist.txt: 3205) +# ||hinews.cn/eweb/img/*/1000x (easylistchina.txt: 3187) .hinews.cn/eweb/img/.*/1000x -# ||hinet.net/radio/getAdcode.do (easylistchina+easylist.txt: 3204) +# ||hinet.net/radio/getAdcode.do (easylistchina.txt: 3186) .hinet.net/radio/getAdcode\.do -# ||hifidiy.net/www/*/hivi_ (easylistchina+easylist.txt: 3203) +# ||hifidiy.net/www/*/hivi_ (easylistchina.txt: 3185) .hifidiy.net/www/.*/hivi_ -# ||hiao.com/node/node_27508.htm (easylistchina+easylist.txt: 3202) +# ||hiao.com/node/node_27508.htm (easylistchina.txt: 3184) .hiao.com/node/node_27508\.htm -# ||hiad.vmall.com^ (easylistchina+easylist.txt: 3201) +# ||hiad.vmall.com^ (easylistchina.txt: 3183) .hiad.vmall.com -# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina+easylist.txt: 3200) +# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina.txt: 3182) .hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942\.jpg -# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina+easylist.txt: 3199) +# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina.txt: 3181) .hi.people.com.cn/NMediaFile/.*\.gif -# ||hhmanhua.net/jsc/stat.js (easylistchina+easylist.txt: 3197) +# ||hhmanhua.net/jsc/stat.js (easylistchina.txt: 3179) .hhmanhua.net/jsc/stat\.js -# ||hhmanhua.net/jsc/book_ (easylistchina+easylist.txt: 3196) +# ||hhmanhua.net/jsc/book_ (easylistchina.txt: 3178) .hhmanhua.net/jsc/book_ -# ||hhmanhua.net/hh/h*.js (easylistchina+easylist.txt: 3195) +# ||hhmanhua.net/hh/h*.js (easylistchina.txt: 3177) .hhmanhua.net/hh/h.*\.js -# ||hhcomic.com/hh/h*.js (easylistchina+easylist.txt: 3194) +# ||hhcomic.com/hh/h*.js (easylistchina.txt: 3176) .hhcomic.com/hh/h.*\.js -# ||hfchenming.com.cn/ad.html (easylistchina+easylist.txt: 3193) +# ||hfchenming.com.cn/ad.html (easylistchina.txt: 3175) .hfchenming.com.cn/ad\.html -# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina+easylist.txt: 3192) +# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina.txt: 3174) .hf365.com/0/14/60/93/14609355_921128\.jpg -# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina+easylist.txt: 3191) +# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina.txt: 3173) .hf365.com/0/14/31/00/14310068_933922\.png -# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina+easylist.txt: 3190) +# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina.txt: 3172) .hf365.com/0/13/79/87/13798795_912593\.jpg -# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina+easylist.txt: 3189) -# ||hexunimg.cn/m/images/ad_ (easylistchina+easylist.txt: 3188) +# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina.txt: 3171) +# ||hexunimg.cn/m/images/ad_ (easylistchina.txt: 3170) .hexunimg.cn/m/images/ad_ -# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina+easylist.txt: 3187) +# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina.txt: 3169) .hexun.com*./(.*/)?hx_news/hx_news_finalpage\.js -# ||heshan.gov.cn/JS/ddgg.js (easylistchina+easylist.txt: 3186) +# ||heshan.gov.cn/JS/ddgg.js (easylistchina.txt: 3168) .heshan.gov.cn/JS/ddgg\.js -# ||henan100.com^*/ad_article/ (easylistchina+easylist.txt: 3184) +# ||henan100.com^*/ad_article/ (easylistchina.txt: 3166) .henan100.com/.*/ad_article/ -# ||henan.sina.com.cn/iframe/7/ (easylistchina+easylist.txt: 3183) +# ||henan.sina.com.cn/iframe/7/ (easylistchina.txt: 3165) .henan.sina.com.cn/iframe/7/ -# ||heitu5.com/js/heituad/ (easylistchina+easylist.txt: 3182) +# ||heitu5.com/js/heituad/ (easylistchina.txt: 3164) .heitu5.com/js/heituad/ -# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina+easylist.txt: 3181) +# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina.txt: 3163) .heikexs.com/wp-content/themes/Duoxs.*/js/ -# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina+easylist.txt: 3180) +# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina.txt: 3162) .heiguang.com/statics/201404/img/tiop-1\.jpg -# ||heiguang.com/f/uad/ (easylistchina+easylist.txt: 3179) +# ||heiguang.com/f/uad/ (easylistchina.txt: 3161) .heiguang.com/f/uad/ -# ||hego123.net/top.js (easylistchina+easylist.txt: 3178) +# ||hego123.net/top.js (easylistchina.txt: 3160) .hego123.net/top\.js -# ||hego123.net/760-90.js (easylistchina+easylist.txt: 3177) +# ||hego123.net/760-90.js (easylistchina.txt: 3159) .hego123.net/760-90\.js -# ||hefei.cc/templates/default/index_ad (easylistchina+easylist.txt: 3176) +# ||hefei.cc/templates/default/index_ad (easylistchina.txt: 3158) .hefei.cc/templates/default/index_ad -# ||hebnews.cn/27510.files/baidu.js (easylistchina+easylist.txt: 3175) +# ||hebnews.cn/27510.files/baidu.js (easylistchina.txt: 3157) .hebnews.cn/27510\.files/baidu\.js -# ||hebei.com.cn/sys/online_calc.js (easylistchina+easylist.txt: 3174) +# ||hebei.com.cn/sys/online_calc.js (easylistchina.txt: 3156) .hebei.com.cn/sys/online_calc\.js -# ||hebei.com.cn/swf/ (easylistchina+easylist.txt: 3173) +# ||hebei.com.cn/swf/ (easylistchina.txt: 3155) .hebei.com.cn/swf/ -# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina+easylist.txt: 3172) +# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina.txt: 3154) .hebei.com.cn/js/leftrightdown_piaofu_ad_js\.js -# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina+easylist.txt: 3171) +# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina.txt: 3153) .hebei.com.cn/js/duilian_four_ad_js\.js -# ||hebei.com.cn/eap/ (easylistchina+easylist.txt: 3170) +# ||hebei.com.cn/eap/ (easylistchina.txt: 3152) .hebei.com.cn/eap/ -# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina+easylist.txt: 3169) +# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina.txt: 3151) .hdzc.net/statics/images/lamu/mhs\.swf -# ||hdsq.cc/data/attachment/portal/ (easylistchina+easylist.txt: 3168) +# ||hdsq.cc/data/attachment/portal/ (easylistchina.txt: 3150) .hdsq.cc/data/attachment/portal/ -# ||hdsky.me/adv/ (easylistchina+easylist.txt: 3166) +# ||hdsky.me/adv/ (easylistchina.txt: 3148) .hdsky.me/adv/ -# ||hdpfans.com/images/icons/*x75. (easylistchina+easylist.txt: 3165) +# ||hdpfans.com/images/icons/*x75. (easylistchina.txt: 3147) .hdpfans.com/images/icons/.*x75\. -# ||hdpfans.com/images/icons/*x70. (easylistchina+easylist.txt: 3164) +# ||hdpfans.com/images/icons/*x70. (easylistchina.txt: 3146) .hdpfans.com/images/icons/.*x70\. -# ||hdpfans.com/images/icons/*x60. (easylistchina+easylist.txt: 3163) +# ||hdpfans.com/images/icons/*x60. (easylistchina.txt: 3145) .hdpfans.com/images/icons/.*x60\. -# ||hdpfans.com/images/hotapp/ (easylistchina+easylist.txt: 3162) +# ||hdpfans.com/images/hotapp/ (easylistchina.txt: 3144) .hdpfans.com/images/hotapp/ -# ||hdarea.co/pic/2222.gif (easylistchina+easylist.txt: 3161) +# ||hdarea.co/pic/2222.gif (easylistchina.txt: 3143) .hdarea.co/pic/2222\.gif -# ||hdad.baike.com^ (easylistchina+easylist.txt: 3160) +# ||hdad.baike.com^ (easylistchina.txt: 3142) .hdad.baike.com -# ||hd62.com/img/ (easylistchina+easylist.txt: 3159) +# ||hd62.com/img/ (easylistchina.txt: 3141) .hd62.com/img/ -# ||hd180.com/js/ (easylistchina+easylist.txt: 3158) +# ||hd180.com/js/ (easylistchina.txt: 3140) .hd180.com/js/ -# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina+easylist.txt: 3157) +# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina.txt: 3139) .hc360.com/security/201409/201409021830024990\.jpg -# ||hc360.com/security/201311/201311151050289368.swf (easylistchina+easylist.txt: 3156) +# ||hc360.com/security/201311/201311151050289368.swf (easylistchina.txt: 3138) .hc360.com/security/201311/201311151050289368\.swf -# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina+easylist.txt: 3155) +# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina.txt: 3137) .hc360.com/news/201207/201207241712413488\.jpg -# ||hc360.com/list/iframe_right_ad_ (easylistchina+easylist.txt: 3154) +# ||hc360.com/list/iframe_right_ad_ (easylistchina.txt: 3136) .hc360.com/list/iframe_right_ad_ -# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina+easylist.txt: 3153) +# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina.txt: 3135) .hc360.com/list/iframe_end_textadv\.shtml -# ||hc360.com/list/iframe_2012ad_ (easylistchina+easylist.txt: 3152) +# ||hc360.com/list/iframe_2012ad_ (easylistchina.txt: 3134) .hc360.com/list/iframe_2012ad_ -# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina+easylist.txt: 3151) +# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina.txt: 3133) .hc360.com/list/iframe_2011hezuo\.shtml -# ||hc360.com/js/hcpop_ (easylistchina+easylist.txt: 3150) +# ||hc360.com/js/hcpop_ (easylistchina.txt: 3132) .hc360.com/js/hcpop_ -# ||hc360.com/js/*hezuo.js (easylistchina+easylist.txt: 3149) +# ||hc360.com/js/*hezuo.js (easylistchina.txt: 3131) .hc360.com/js/.*hezuo\.js -# ||hc360.com/images/14826/289x90.jpg (easylistchina+easylist.txt: 3148) +# ||hc360.com/images/14826/289x90.jpg (easylistchina.txt: 3130) .hc360.com/images/14826/289x90\.jpg -# ||hbrc.com/bd1.html (easylistchina+easylist.txt: 3147) +# ||hbrc.com/bd1.html (easylistchina.txt: 3129) .hbrc.com/bd1\.html -# ||haxiu.miaotiao.com^ (easylistchina+easylist.txt: 3146) -.haxiu.miaotiao.com -# ||haxiu.com/data/cache/myadn- (easylistchina+easylist.txt: 3145) +# ||haxiu.com/data/cache/myadn- (easylistchina.txt: 3128) .haxiu.com/data/cache/myadn- -# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina+easylist.txt: 3143) +# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina.txt: 3126) .haoyu.me/wp-content/uploads/2013/12/aliyun\.jpg -# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina+easylist.txt: 3142) +# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina.txt: 3125) .haoyu.me/wp-content/uploads/2013/08/interserver-vps1\.gif -# ||haowj.com.cn/d/js/outsidead/ (easylistchina+easylist.txt: 3141) +# ||haoxxoo.com/player/ad.html (easylistchina.txt: 3124) +.haoxxoo.com/player/ad\.html +# ||haowj.com.cn/d/js/outsidead/ (easylistchina.txt: 3123) .haowj.com.cn/d/js/outsidead/ -# ||haoring03.com/ads/ (easylistchina+easylist.txt: 3140) +# ||haoring03.com/ads/ (easylistchina.txt: 3122) .haoring03.com/ads/ -# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina+easylist.txt: 3139) +# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina.txt: 3121) .haokan5.com/js/haokanjs/youxiajiao\.js -# ||haokan5.com/js/haokanjs/tj.js (easylistchina+easylist.txt: 3138) +# ||haokan5.com/js/haokanjs/tj.js (easylistchina.txt: 3120) .haokan5.com/js/haokanjs/tj\.js -# ||haokan5.com/js/haokanjs/playa (easylistchina+easylist.txt: 3137) +# ||haokan5.com/js/haokanjs/playa (easylistchina.txt: 3119) .haokan5.com/js/haokanjs/playa -# ||haokan5.com/js/haokanjs/2014_ (easylistchina+easylist.txt: 3136) +# ||haokan5.com/js/haokanjs/2014_ (easylistchina.txt: 3118) .haokan5.com/js/haokanjs/2014_ -# ||haoghost.com/js/hy_cpc_print.js (easylistchina+easylist.txt: 3135) +# ||haoghost.com/js/hy_cpc_print.js (easylistchina.txt: 3117) .haoghost.com/js/hy_cpc_print\.js -# ||haofu1.com/images/*.gif (easylistchina+easylist.txt: 3134) +# ||haofu1.com/images/*.gif (easylistchina.txt: 3116) .haofu1.com/images/.*\.gif -# ||haofs.com/haofs/ggapi.asp (easylistchina+easylist.txt: 3133) +# ||haofs.com/haofs/ggapi.asp (easylistchina.txt: 3115) .haofs.com/haofs/ggapi\.asp -# ||haodai.com/src/i/lianmeng/ad/ (easylistchina+easylist.txt: 3132) +# ||haodai.com/src/i/lianmeng/ad/ (easylistchina.txt: 3114) .haodai.com/src/i/lianmeng/ad/ -# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina+easylist.txt: 3131) +# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina.txt: 3113) .haochi123.com/Js/Fun_Effects_HT9\.js -# ||haochi123.com/J_Box/Inc_ (easylistchina+easylist.txt: 3130) +# ||haochi123.com/J_Box/Inc_ (easylistchina.txt: 3112) .haochi123.com/J_Box/Inc_ -# ||hao6666.info^*.js (easylistchina+easylist.txt: 3129) +# ||hao6666.info^*.js (easylistchina.txt: 3111) .hao6666.info/.*\.js -# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina+easylist.txt: 3128) +# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina.txt: 3110) .hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT\.js -# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina+easylist.txt: 3127) +# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina.txt: 3109) .hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43\.png -# ||hao123img.com/res/ecom/ (easylistchina+easylist.txt: 3126) +# ||hao123img.com/res/ecom/ (easylistchina.txt: 3108) .hao123img.com/res/ecom/ -# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina+easylist.txt: 3125) +# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina.txt: 3107) .hao123.com/data/v/stuff\.php\?.*_forhao123Adv -# ||hao123.cn/images/vip.png (easylistchina+easylist.txt: 3124) +# ||hao123.cn/images/vip.png (easylistchina.txt: 3106) .hao123.cn/images/vip\.png -# ||hao.rising.cn/images/nsdgg.jpg (easylistchina+easylist.txt: 3123) +# ||hao.rising.cn/images/nsdgg.jpg (easylistchina.txt: 3105) .hao.rising.cn/images/nsdgg\.jpg -# ||hao.rising.cn/catalog/bottom.html (easylistchina+easylist.txt: 3122) +# ||hao.rising.cn/catalog/bottom.html (easylistchina.txt: 3104) .hao.rising.cn/catalog/bottom\.html -# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina+easylist.txt: 3121) +# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina.txt: 3103) .hanzify.*./(.*/)?Main/Template/Images/chinabank\.gif -# ||hangzhou.com.cn/inc_hzw/ (easylistchina+easylist.txt: 3120) +# ||hangzhou.com.cn/inc_hzw/ (easylistchina.txt: 3102) .hangzhou.com.cn/inc_hzw/ -# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina+easylist.txt: 3119) +# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina.txt: 3101) .hangzhou.com.cn/images/flashyingpian\.swf -# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina+easylist.txt: 3118) +# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina.txt: 3100) .hangzhou.com.cn/extra/flash/hzwarticle300\.swf -# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina+easylist.txt: 3117) +# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina.txt: 3099) .hanfanba.com/template/hanfanba/img/tb- -# ||haiwainet.cn/json/news (easylistchina+easylist.txt: 3116) +# ||haiwainet.cn/json/news (easylistchina.txt: 3098) .haiwainet.cn/json/news -# ||haiwainet.cn*/k.js (easylistchina+easylist.txt: 3115) +# ||haiwainet.cn*/k.js (easylistchina.txt: 3097) .haiwainet.cn*./(.*/)?k\.js -# ||hahade.com/tpl/*.html (easylistchina+easylist.txt: 3114) +# ||hahade.com/tpl/*.html (easylistchina.txt: 3096) .hahade.com/tpl/.*\.html -# ||haha.mx/upload/data/list_sidebar_ (easylistchina+easylist.txt: 3113) +# ||haha.mx/upload/data/list_sidebar_ (easylistchina.txt: 3095) .haha.mx/upload/data/list_sidebar_ -# ||haha.mx/upload/data/detail_ (easylistchina+easylist.txt: 3112) +# ||haha.mx/upload/data/detail_ (easylistchina.txt: 3094) .haha.mx/upload/data/detail_ -# ||haha.mx/images/market/ (easylistchina+easylist.txt: 3111) +# ||haha.mx/images/market/ (easylistchina.txt: 3093) .haha.mx/images/market/ -# ||haha.mx/images/banner/vipp.jpg (easylistchina+easylist.txt: 3110) +# ||haha.mx/images/banner/vipp.jpg (easylistchina.txt: 3092) .haha.mx/images/banner/vipp\.jpg -# ||haha.mx/images/banner/tmall11.png (easylistchina+easylist.txt: 3109) +# ||haha.mx/images/banner/tmall11.png (easylistchina.txt: 3091) .haha.mx/images/banner/tmall11\.png -# ||haha.mx/images/banner/jd.jpg (easylistchina+easylist.txt: 3108) +# ||haha.mx/images/banner/jd.jpg (easylistchina.txt: 3090) .haha.mx/images/banner/jd\.jpg -# ||hackp.com/xiaojiu/ (easylistchina+easylist.txt: 3107) +# ||hackp.com/xiaojiu/ (easylistchina.txt: 3089) .hackp.com/xiaojiu/ -# ||hackp.com/wz/ (easylistchina+easylist.txt: 3106) +# ||hackp.com/wz/ (easylistchina.txt: 3088) .hackp.com/wz/ -# ||hacken.cc/file/ads/ (easylistchina+easylist.txt: 3105) +# ||hacken.cc/file/ads/ (easylistchina.txt: 3087) .hacken.cc/file/ads/ -# ||hackbase.com/vip/topbanner.html (easylistchina+easylist.txt: 3104) +# ||hackbase.com/vip/topbanner.html (easylistchina.txt: 3086) .hackbase.com/vip/topbanner\.html -# ||hackbase.com/2009/bingdun2009.jpg (easylistchina+easylist.txt: 3103) +# ||hackbase.com/2009/bingdun2009.jpg (easylistchina.txt: 3085) .hackbase.com/2009/bingdun2009\.jpg -# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina+easylist.txt: 3102) +# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina.txt: 3084) .gzdaily.dayoo.com/tpl/banner.*\.swf -# ||gzcol.com/uploads/ad/ (easylistchina+easylist.txt: 3101) +# ||gzcol.com/uploads/ad/ (easylistchina.txt: 3083) .gzcol.com/uploads/ad/ -# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina+easylist.txt: 3100) +# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina.txt: 3082) .gz.xinhuanet.com/2012image/mt\.swf -# ||gywb.cn/gggl/ (easylistchina+easylist.txt: 3099) +# ||gywb.cn/gggl/ (easylistchina.txt: 3081) .gywb.cn/gggl/ -# ||gywb.cn/cs_mulu/ (easylistchina+easylist.txt: 3098) +# ||gywb.cn/cs_mulu/ (easylistchina.txt: 3080) .gywb.cn/cs_mulu/ -# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina+easylist.txt: 3097) +# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina.txt: 3079) .gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09\.jpg -# ||gxorg.com/index.php?m=poster& (easylistchina+easylist.txt: 3096) +# ||gxorg.com/index.php?m=poster& (easylistchina.txt: 3078) .gxorg.com/index\.php\?m=poster& -# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina+easylist.txt: 3095) +# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina.txt: 3077) .gxnews.com.cn/clientscript/index_duilian_ -# ||gxnews.com.cn/cache/wwwads.js (easylistchina+easylist.txt: 3094) +# ||gxnews.com.cn/cache/wwwads.js (easylistchina.txt: 3076) .gxnews.com.cn/cache/wwwads\.js -# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina+easylist.txt: 3093) +# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina.txt: 3075) .gx.xinhuanet.com/images2007/banner\.htm -# ||guyizhou.cn/temp/top_banner_ (easylistchina+easylist.txt: 3092) +# ||guyizhou.cn/temp/top_banner_ (easylistchina.txt: 3074) .guyizhou.cn/temp/top_banner_ -# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina+easylist.txt: 3091) +# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina.txt: 3073) .gusuwang.com/ymsextweb/javascript/gs -# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina+easylist.txt: 3090) +# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina.txt: 3072) .gusuwang.com/ymsextweb/images/index/ist_t\.jpg -# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina+easylist.txt: 3089) +# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina.txt: 3071) .gusuwang.com/ymsextweb/fullggw/ -# ||gusuwang.com/api/gsw_ (easylistchina+easylist.txt: 3088) +# ||gusuwang.com/api/gsw_ (easylistchina.txt: 3070) .gusuwang.com/api/gsw_ -# ||guqu.net/Cooperate/ (easylistchina+easylist.txt: 3087) +# ||guqu.net/Cooperate/ (easylistchina.txt: 3069) .guqu.net/Cooperate/ -# ||guokr.com/baidu-cbjs/ (easylistchina+easylist.txt: 3086) +# ||guokr.com/baidu-cbjs/ (easylistchina.txt: 3068) .guokr.com/baidu-cbjs/ -# ||guofs.com/images/you.js (easylistchina+easylist.txt: 3085) +# ||guofs.com/images/you.js (easylistchina.txt: 3067) .guofs.com/images/you\.js -# ||guofs.com/images/578-60.gif (easylistchina+easylist.txt: 3084) +# ||guofs.com/images/578-60.gif (easylistchina.txt: 3066) .guofs.com/images/578-60\.gif -# ||guitarchina.com/1/ww2014 (easylistchina+easylist.txt: 3083) +# ||guitarchina.com/1/ww2014 (easylistchina.txt: 3065) .guitarchina.com/1/ww2014 -# ||guess.h.qhimg.com^ (easylistchina+easylist.txt: 3082) +# ||guess.h.qhimg.com^ (easylistchina.txt: 3064) .guess.h.qhimg.com -# ||gucheng.com/2015/z4/ (easylistchina+easylist.txt: 3081) +# ||gucheng.com/2015/z4/ (easylistchina.txt: 3063) .gucheng.com/2015/z4/ -# ||gucheng.com/2015/mst/ (easylistchina+easylist.txt: 3080) +# ||gucheng.com/2015/mst/ (easylistchina.txt: 3062) .gucheng.com/2015/mst/ -# ||guahao.com/iwant/ads? (easylistchina+easylist.txt: 3079) +# ||guahao.com/iwant/ads? (easylistchina.txt: 3061) .guahao.com/iwant/ads\? -# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina+easylist.txt: 3078) +# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina.txt: 3060) .gtv.com.cn/public/images/2014-06/15/110_89471402801935\.jpg -# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina+easylist.txt: 3077) +# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina.txt: 3059) .gtv.com.cn/public/images/2014-03/20/71_12931395286234\.jpg -# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina+easylist.txt: 3076) +# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina.txt: 3058) .gtv.com.cn/public/images/2014-01/26/97_76841390730340\.jpg -# ||gtimg.com^*/adv/ (easylistchina+easylist.txt: 3075) +# ||gtimg.com^*/adv/ (easylistchina.txt: 3057) .gtimg.com/.*/adv/ -# ||gtimg.com^*/ad/ (easylistchina+easylist.txt: 3074) +# ||gtimg.com^*/ad/ (easylistchina.txt: 3056) .gtimg.com/.*/ad/ -# ||gtimg.com/www/test/300_250.swf (easylistchina+easylist.txt: 3073) +# ||gtimg.com/www/test/300_250.swf (easylistchina.txt: 3055) .gtimg.com/www/test/300_250\.swf -# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina+easylist.txt: 3072) +# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina.txt: 3054) .gtimg.com/web/default_fodders/300x600_ -# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina+easylist.txt: 3071) +# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina.txt: 3053) .gtimg.com/v/pics/hv1/88/83/1734/112774603\.jpg -# ||gtimg.com/qqlive/ (easylistchina+easylist.txt: 3070) +# ||gtimg.com/qqlive/ (easylistchina.txt: 3052) .gtimg.com/qqlive/ -# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina+easylist.txt: 3069) +# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina.txt: 3051) .gtimg.com/newsapp_ls/0/27161189/0 -# ||gtimg.com/news/news/2014ad/ (easylistchina+easylist.txt: 3068) +# ||gtimg.com/news/news/2014ad/ (easylistchina.txt: 3050) .gtimg.com/news/news/2014ad/ -# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina+easylist.txt: 3067) +# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina.txt: 3049) .gtimg.com/ent/final2009/dp_tebu_logo\.png -# ||gtimg.com/comic/richmedia/ (easylistchina+easylist.txt: 3066) +# ||gtimg.com/comic/richmedia/ (easylistchina.txt: 3048) .gtimg.com/comic/richmedia/ -# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina+easylist.txt: 3065) +# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina.txt: 3047) .gtimg.com/comic/pics/hv1/29/74/1631/106074674\.jpg -# ||gter.net^*adv (easylistchina+easylist.txt: 3064) +# ||gter.net^*adv (easylistchina.txt: 3046) .gter.net/.*adv -# ||gt.yy.com^ (easylistchina+easylist.txt: 3063) +# ||gt.yy.com^ (easylistchina.txt: 3045) .gt.yy.com -# ||gsspcln.jp^ (easylistchina+easylist.txt: 3062) +# ||gsspcln.jp^ (easylistchina.txt: 3044) .gsspcln.jp -# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina+easylist.txt: 3061) +# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina.txt: 3043) .gscn.com.cn/pic/0/10/34/27/10342786_994137\.gif -# ||gscn.com.cn/home/images/advscroll.js (easylistchina+easylist.txt: 3060) +# ||gscn.com.cn/home/images/advscroll.js (easylistchina.txt: 3042) .gscn.com.cn/home/images/advscroll\.js -# ||groupa.onlylady.com^ (easylistchina+easylist.txt: 3059) +# ||groupa.onlylady.com^ (easylistchina.txt: 3041) .groupa.onlylady.com -# ||greenxiazai.com/jsgreen/ (easylistchina+easylist.txt: 3058) +# ||greenxiazai.com/jsgreen/ (easylistchina.txt: 3040) .greenxiazai.com/jsgreen/ -# ||greenxiazai.com/greenjs/ (easylistchina+easylist.txt: 3057) +# ||greenxiazai.com/greenjs/ (easylistchina.txt: 3039) .greenxiazai.com/greenjs/ -# ||greenxf.com/js/main.js (easylistchina+easylist.txt: 3056) +# ||greenxf.com/js/main.js (easylistchina.txt: 3038) .greenxf.com/js/main\.js -# ||greenxf.com/img/46860.gif (easylistchina+easylist.txt: 3055) +# ||greenxf.com/img/46860.gif (easylistchina.txt: 3037) .greenxf.com/img/46860\.gif -# ||greenxf.com/asp/ (easylistchina+easylist.txt: 3054) +# ||greenxf.com/asp/ (easylistchina.txt: 3036) .greenxf.com/asp/ -# ||greatwuyi.com/tplimg/1.files/ad (easylistchina+easylist.txt: 3053) +# ||greatwuyi.com/tplimg/1.files/ad (easylistchina.txt: 3035) .greatwuyi.com/tplimg/1\.files/ad -# ||gqgc.sz.zj.cn^ (easylistchina+easylist.txt: 3052) +# ||gqgc.sz.zj.cn^ (easylistchina.txt: 3034) .gqgc.sz.zj.cn -# ||gpxz.com/skins/gupuxiazai/soft (easylistchina+easylist.txt: 3051) +# ||gpxz.com/skins/gupuxiazai/soft (easylistchina.txt: 3033) .gpxz.com/skins/gupuxiazai/soft -# ||gpxz.com/js2/ (easylistchina+easylist.txt: 3050) +# ||gpxz.com/js2/ (easylistchina.txt: 3032) .gpxz.com/js2/ -# ||gpsdlm.com/images/lm2.jpg (easylistchina+easylist.txt: 3049) +# ||gpsdlm.com/images/lm2.jpg (easylistchina.txt: 3031) .gpsdlm.com/images/lm2\.jpg -# ||gpsdlm.com/images/jdyigou.jpg (easylistchina+easylist.txt: 3048) +# ||gpsdlm.com/images/jdyigou.jpg (easylistchina.txt: 3030) .gpsdlm.com/images/jdyigou\.jpg -# ||gpcxw.com/file/js/img/*.gif (easylistchina+easylist.txt: 3047) +# ||gpcxw.com/file/js/img/*.gif (easylistchina.txt: 3029) .gpcxw.com/file/js/img/.*\.gif -# ||goyeah.com/homepage.html (easylistchina+easylist.txt: 3045) +# ||goyeah.com/homepage.html (easylistchina.txt: 3027) .goyeah.com/homepage\.html -# ||goto.www.iciba.com^ (easylistchina+easylist.txt: 3044) +# ||goto.www.iciba.com^ (easylistchina.txt: 3026) .goto.www.iciba.com -# ||gope.cn/1commonfile/guidebar/ (easylistchina+easylist.txt: 3043) +# ||gope.cn/1commonfile/guidebar/ (easylistchina.txt: 3025) .gope.cn/1commonfile/guidebar/ -# ||gope.cn/1commonfile/*.swf (easylistchina+easylist.txt: 3042) +# ||gope.cn/1commonfile/*.swf (easylistchina.txt: 3024) .gope.cn/1commonfile/.*\.swf -# ||gope.cn/1commonfile/*.htm (easylistchina+easylist.txt: 3041) +# ||gope.cn/1commonfile/*.htm (easylistchina.txt: 3023) .gope.cn/1commonfile/.*\.htm -# ||gope.cn/1commonfile/*.gif (easylistchina+easylist.txt: 3040) +# ||gope.cn/1commonfile/*.gif (easylistchina.txt: 3022) .gope.cn/1commonfile/.*\.gif -# ||goods.tudou.com/api? (easylistchina+easylist.txt: 3038) +# ||goods.tudou.com/api? (easylistchina.txt: 3020) .goods.tudou.com/api\? -# ||good.gd/js/loadpopads.aspx (easylistchina+easylist.txt: 3037) +# ||good.gd/js/loadpopads.aspx (easylistchina.txt: 3019) .good.gd/js/loadpopads\.aspx -# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina+easylist.txt: 3036) +# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina.txt: 3018) .good.gd/good\.gd/js/downloadPrograss\.js -# ||gohubei.com/img/zhuna.gif (easylistchina+easylist.txt: 3035) +# ||gohubei.com/img/zhuna.gif (easylistchina.txt: 3017) .gohubei.com/img/zhuna\.gif -# ||gohubei.com/img/tuniu.jpg (easylistchina+easylist.txt: 3034) +# ||gohubei.com/img/tuniu.jpg (easylistchina.txt: 3016) .gohubei.com/img/tuniu\.jpg -# ||go2tutor.com/lifebox.asp (easylistchina+easylist.txt: 3033) +# ||go2tutor.com/lifebox.asp (easylistchina.txt: 3015) .go2tutor.com/lifebox\.asp -# ||go.hangzhou.com.cn^ (easylistchina+easylist.txt: 3032) +# ||go.hangzhou.com.cn^ (easylistchina.txt: 3014) .go.hangzhou.com.cn -# ||gmw.cn/banner/ (easylistchina+easylist.txt: 3031) +# ||gmw.cn/banner/ (easylistchina.txt: 3013) .gmw.cn/banner/ -# ||gminfo.cn/qds/gmszyy.swf (easylistchina+easylist.txt: 3030) +# ||gminfo.cn/qds/gmszyy.swf (easylistchina.txt: 3012) .gminfo.cn/qds/gmszyy\.swf -# ||gminfo.cn/js/ad- (easylistchina+easylist.txt: 3029) +# ||gminfo.cn/js/ad- (easylistchina.txt: 3011) .gminfo.cn/js/ad- -# ||gminfo.cn/flash/ (easylistchina+easylist.txt: 3028) +# ||gminfo.cn/flash/ (easylistchina.txt: 3010) .gminfo.cn/flash/ -# ||gmbuluo.com/js/yxj (easylistchina+easylist.txt: 3027) +# ||gmbuluo.com/js/yxj (easylistchina.txt: 3009) .gmbuluo.com/js/yxj -# ||gmbuluo.com/js/shouye (easylistchina+easylist.txt: 3026) +# ||gmbuluo.com/js/shouye (easylistchina.txt: 3008) .gmbuluo.com/js/shouye -# ||gmbuluo.com/js/liebiao (easylistchina+easylist.txt: 3025) +# ||gmbuluo.com/js/liebiao (easylistchina.txt: 3007) .gmbuluo.com/js/liebiao -# ||gmbbk.cn/jj/ (easylistchina+easylist.txt: 3024) +# ||gmbbk.cn/jj/ (easylistchina.txt: 3006) .gmbbk.cn/jj/ -# ||gmbbk.cn/img/top.js (easylistchina+easylist.txt: 3023) +# ||gmbbk.cn/img/top.js (easylistchina.txt: 3005) .gmbbk.cn/img/top\.js -# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina+easylist.txt: 3022) +# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina.txt: 3004) .global.tianyaui.com/global/wizard/js/wizard\.js -# ||github.io/2048/full/meta/cmpay.gif (easylistchina+easylist.txt: 3021) +# ||github.io/2048/full/meta/cmpay.gif (easylistchina.txt: 3003) .github.io/2048/full/meta/cmpay\.gif -# ||gimhoy.com/201404/cute.jpg (easylistchina+easylist.txt: 3020) +# ||gimhoy.com/201404/cute.jpg (easylistchina.txt: 3002) .gimhoy.com/201404/cute\.jpg -# ||gigacircle.com/images/*720X85. (easylistchina+easylist.txt: 3019) +# ||gigacircle.com/images/*720X85. (easylistchina.txt: 3001) .gigacircle.com/images/.*720X85\. -# ||gigacircle.com/images/*250X250. (easylistchina+easylist.txt: 3018) +# ||gigacircle.com/images/*250X250. (easylistchina.txt: 3000) .gigacircle.com/images/.*250X250\. -# ||ghostxp3.com/xf.js (easylistchina+easylist.txt: 3017) +# ||ghostxp3.com/xf.js (easylistchina.txt: 2999) .ghostxp3.com/xf\.js -# ||ghoffice.com/bbs/js/float.js (easylistchina+easylist.txt: 3016) +# ||ghoffice.com/bbs/js/float.js (easylistchina.txt: 2998) .ghoffice.com/bbs/js/float\.js -# ||ghjie.com/JS/youcegg.js (easylistchina+easylist.txt: 3015) +# ||ghjie.com/JS/youcegg.js (easylistchina.txt: 2997) .ghjie.com/JS/youcegg\.js -# ||ghjie.com/images/2012/images/bg (easylistchina+easylist.txt: 3014) +# ||ghjie.com/images/2012/images/bg (easylistchina.txt: 2996) .ghjie.com/images/2012/images/bg -# ||ggyq.xdkb.net^ (easylistchina+easylist.txt: 3013) +# ||ggyq.xdkb.net^ (easylistchina.txt: 2995) .ggyq.xdkb.net -# ||ggw.watertu.com^ (easylistchina+easylist.txt: 3012) +# ||ggw.watertu.com^ (easylistchina.txt: 2994) .ggw.watertu.com -# ||ggw.gusuwang.com^ (easylistchina+easylist.txt: 3011) +# ||ggw.gusuwang.com^ (easylistchina.txt: 2993) .ggw.gusuwang.com -# ||gggbbb00.com/template/dream1/ads/ (easylistchina+easylist.txt: 3010) -.gggbbb00.com/template/dream1/ads/ -# ||ggg.zj.com^ (easylistchina+easylist.txt: 3009) +# ||ggg.zj.com^ (easylistchina.txt: 2992) .ggg.zj.com -# ||gg163.net/js/gg163ad.js (easylistchina+easylist.txt: 3008) +# ||gg163.net/js/gg163ad.js (easylistchina.txt: 2991) .gg163.net/js/gg163ad\.js -# ||gg163.net/js/163bbsad.js (easylistchina+easylist.txt: 3007) +# ||gg163.net/js/163bbsad.js (easylistchina.txt: 2990) .gg163.net/js/163bbsad\.js -# ||gg163.net/gpimages/ad33.gif (easylistchina+easylist.txt: 3006) +# ||gg163.net/gpimages/ad33.gif (easylistchina.txt: 2989) .gg163.net/gpimages/ad33\.gif -# ||gg163.net/gpimages/22.gif (easylistchina+easylist.txt: 3005) +# ||gg163.net/gpimages/22.gif (easylistchina.txt: 2988) .gg163.net/gpimages/22\.gif -# ||gg163.net/2015ad/ (easylistchina+easylist.txt: 3004) +# ||gg163.net/2015ad/ (easylistchina.txt: 2987) .gg163.net/2015ad/ -# ||gg163.net/2014ad/ (easylistchina+easylist.txt: 3003) +# ||gg163.net/2014ad/ (easylistchina.txt: 2986) .gg163.net/2014ad/ -# ||gg163.net/2013ad/ (easylistchina+easylist.txt: 3002) +# ||gg163.net/2013ad/ (easylistchina.txt: 2985) .gg163.net/2013ad/ -# ||gg163.net/2012ad/ (easylistchina+easylist.txt: 3001) +# ||gg163.net/2012ad/ (easylistchina.txt: 2984) .gg163.net/2012ad/ -# ||gg.yxdown.com^ (easylistchina+easylist.txt: 3000) +# ||gg.yxdown.com^ (easylistchina.txt: 2983) .gg.yxdown.com -# ||gg.sonhoo.com^ (easylistchina+easylist.txt: 2999) +# ||gg.sonhoo.com^ (easylistchina.txt: 2982) .gg.sonhoo.com -# ||gg.kugou.com^ (easylistchina+easylist.txt: 2998) +# ||gg.kugou.com^ (easylistchina.txt: 2981) .gg.kugou.com -# ||gg.gao7.com^ (easylistchina+easylist.txt: 2997) +# ||gg.gao7.com^ (easylistchina.txt: 2980) .gg.gao7.com -# ||gg.cs090.com^ (easylistchina+easylist.txt: 2996) +# ||gg.cs090.com^ (easylistchina.txt: 2979) .gg.cs090.com -# ||gg.18183.com^ (easylistchina+easylist.txt: 2995) +# ||gg.bxwx5.com^ (easylistchina.txt: 2978) +.gg.bxwx5.com +# ||gg.18183.com^ (easylistchina.txt: 2977) .gg.18183.com -# ||gg.0598yu.com^ (easylistchina+easylist.txt: 2994) +# ||gg.0598yu.com^ (easylistchina.txt: 2976) .gg.0598yu.com -# ||gg-art.com/anod/ (easylistchina+easylist.txt: 2993) +# ||gg-art.com/anod/ (easylistchina.txt: 2975) .gg-art.com/anod/ -# ||gfan.com/press/ (easylistchina+easylist.txt: 2992) +# ||gfan.com/press/ (easylistchina.txt: 2974) .gfan.com/press/ -# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina+easylist.txt: 2991) +# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina.txt: 2973) .gfan.com/plugin\.php\?id=gfan_viewpic:gfan_adView -# ||gezila.com/gimg/yinsu (easylistchina+easylist.txt: 2990) +# ||gezila.com/gimg/yinsu (easylistchina.txt: 2972) .gezila.com/gimg/yinsu -# ||gexing.com/j/??zmask.js,easing.js? (easylistchina+easylist.txt: 2989) +# ||gexing.com/j/??zmask.js,easing.js? (easylistchina.txt: 2971) .gexing.com/j/\?\?zmask\.js,easing\.js\? -# ||gexing.com/api/api_get_tankuang.php? (easylistchina+easylist.txt: 2988) +# ||gexing.com/api/api_get_tankuang.php? (easylistchina.txt: 2970) .gexing.com/api/api_get_tankuang\.php\? -# ||gexing.com.cn^*/images/jr.jpg (easylistchina+easylist.txt: 2987) +# ||gexing.com.cn^*/images/jr.jpg (easylistchina.txt: 2969) .gexing.com.cn/.*/images/jr\.jpg -# ||gexing.com.cn^*/images/1a.jpg (easylistchina+easylist.txt: 2986) +# ||gexing.com.cn^*/images/1a.jpg (easylistchina.txt: 2968) .gexing.com.cn/.*/images/1a\.jpg -# ||get.766.com^ (easylistchina+easylist.txt: 2985) +# ||get.766.com^ (easylistchina.txt: 2967) .get.766.com -# ||gdt.qq.com^ (easylistchina+easylist.txt: 2983) +# ||gdt.qq.com^ (easylistchina.txt: 2965) .gdt.qq.com -# ||gdmm.com/Public/config/Couplet/Index (easylistchina+easylist.txt: 2982) +# ||gdmm.com/Public/config/Couplet/Index (easylistchina.txt: 2964) .gdmm.com/Public/config/Couplet/Index -# ||gdmm.com/mybt/ (easylistchina+easylist.txt: 2981) +# ||gdmm.com/mybt/ (easylistchina.txt: 2963) .gdmm.com/mybt/ -# ||gdmm.com/js/images/z.swf (easylistchina+easylist.txt: 2980) +# ||gdmm.com/js/images/z.swf (easylistchina.txt: 2962) .gdmm.com/js/images/z\.swf -# ||gdmm.com/js/images/y.swf (easylistchina+easylist.txt: 2979) +# ||gdmm.com/js/images/y.swf (easylistchina.txt: 2961) .gdmm.com/js/images/y\.swf -# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina+easylist.txt: 2978) +# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina.txt: 2960) .gdaily.org/wp-content/uploads/an-temp/ -# ||gd.sina.com.cn/iframe/22/ (easylistchina+easylist.txt: 2977) +# ||gd.sina.com.cn/iframe/22/ (easylistchina.txt: 2959) .gd.sina.com.cn/iframe/22/ -# ||gd.ct10000.com/js/ecssstat.js (easylistchina+easylist.txt: 2976) +# ||gd.ct10000.com/js/ecssstat.js (easylistchina.txt: 2958) .gd.ct10000.com/js/ecssstat\.js -# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina+easylist.txt: 2975) +# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina.txt: 2957) .gaofen.com/source/plugin/gaofen_ad/ -# ||ganjituiguang.ganji.com^ (easylistchina+easylist.txt: 2974) +# ||ganjituiguang.ganji.com^ (easylistchina.txt: 2956) .ganjituiguang.ganji.com -# ||ganjistatic1.com^*/adm/ (easylistchina+easylist.txt: 2973) +# ||ganjistatic1.com^*/adm/ (easylistchina.txt: 2955) .ganjistatic1.com/.*/adm/ -# ||ganjistatic1.com^*-banner- (easylistchina+easylist.txt: 2972) +# ||ganjistatic1.com^*-banner- (easylistchina.txt: 2954) .ganjistatic1.com/.*-banner- -# ||ganji.com/content.php (easylistchina+easylist.txt: 2971) +# ||ganji.com/content.php (easylistchina.txt: 2953) .ganji.com/content\.php -# ||ganbingw.com/images/top960.jpg (easylistchina+easylist.txt: 2970) +# ||ganbingw.com/images/top960.jpg (easylistchina.txt: 2952) .ganbingw.com/images/top960\.jpg -# ||gamme.com.tw/ga/ (easylistchina+easylist.txt: 2969) +# ||gamme.com.tw/ga/ (easylistchina.txt: 2951) .gamme.com.tw/ga/ -# ||gamersky.com/piaofu*/ (easylistchina+easylist.txt: 2966) +# ||gamersky.com/piaofu*/ (easylistchina.txt: 2948) .gamersky.com/piaofu.*/ -# ||gamersky.com/img/ (easylistchina+easylist.txt: 2965) +# ||gamersky.com/img/ (easylistchina.txt: 2947) .gamersky.com/img/ -# ||gamersky.com/gsinc/content_bg.js (easylistchina+easylist.txt: 2964) +# ||gamersky.com/gsinc/content_bg.js (easylistchina.txt: 2946) .gamersky.com/gsinc/content_bg\.js -# ||gamersky.com/g/gamerskyflash.js (easylistchina+easylist.txt: 2963) +# ||gamersky.com/g/gamerskyflash.js (easylistchina.txt: 2945) .gamersky.com/g/gamerskyflash\.js -# ||gamersky.com/bgpic/ (easylistchina+easylist.txt: 2962) +# ||gamersky.com/bgpic/ (easylistchina.txt: 2944) .gamersky.com/bgpic/ -# ||gamefy.cn/cookiead.php (easylistchina+easylist.txt: 2961) +# ||gamefy.cn/cookiead.php (easylistchina.txt: 2943) .gamefy.cn/cookiead\.php -# ||gameapps.hk/js/determine_page_ (easylistchina+easylist.txt: 2960) +# ||gameapps.hk/js/determine_page_ (easylistchina.txt: 2942) .gameapps.hk/js/determine_page_ -# ||gameapps.hk/js/content_ (easylistchina+easylist.txt: 2959) +# ||gameapps.hk/js/content_ (easylistchina.txt: 2941) .gameapps.hk/js/content_ -# ||gameapps.hk/images/apps/ad/ (easylistchina+easylist.txt: 2958) +# ||gameapps.hk/images/apps/ad/ (easylistchina.txt: 2940) .gameapps.hk/images/apps/ad/ -# ||gagays.com/site/ad300x300 (easylistchina+easylist.txt: 2956) +# ||gagays.com/site/ad300x300 (easylistchina.txt: 2938) .gagays.com/site/ad300x300 -# ||g4.beva.com/data-js- (easylistchina+easylist.txt: 2955) +# ||g4.beva.com/data-js- (easylistchina.txt: 2937) .g4.beva.com/data-js- -# ||g2.ousns.net^ (easylistchina+easylist.txt: 2954) +# ||g2.ousns.net^ (easylistchina.txt: 2936) .g2.ousns.net -# ||g1080.com/js/cache_bg.js (easylistchina+easylist.txt: 2953) +# ||g1080.com/js/cache_bg.js (easylistchina.txt: 2935) .g1080.com/js/cache_bg\.js -# ||g1.0573ren.com^ (easylistchina+easylist.txt: 2952) +# ||g1.0573ren.com^ (easylistchina.txt: 2934) .g1.0573ren.com -# ||g.rexian.net.cn/js/ (easylistchina+easylist.txt: 2951) +# ||g.rexian.net.cn/js/ (easylistchina.txt: 2933) .g.rexian.net.cn/js/ -# ||g.ousns.net^ (easylistchina+easylist.txt: 2950) +# ||g.ousns.net^ (easylistchina.txt: 2932) .g.ousns.net -# ||g.jinti.com/f/a/a (easylistchina+easylist.txt: 2949) +# ||g.jinti.com/f/a/a (easylistchina.txt: 2931) .g.jinti.com/f/a/a -# ||g.hsw.cn^ (easylistchina+easylist.txt: 2948) +# ||g.hsw.cn^ (easylistchina.txt: 2930) .g.hsw.cn -# ||g.gxorg.com^ (easylistchina+easylist.txt: 2947) +# ||g.gxorg.com^ (easylistchina.txt: 2929) .g.gxorg.com -# ||g.cnzz.cn/Static/js/*- (easylistchina+easylist.txt: 2946) +# ||g.cnzz.cn/Static/js/*- (easylistchina.txt: 2928) .g.cnzz.cn/Static/js/.*- -# ||g.163.com/*&affiliate= (easylistchina+easylist.txt: 2945) +# ||g.163.com/*&affiliate= (easylistchina.txt: 2927) .g.163.com/.*&affiliate= -# ||fzbm.com/bbs/static/js/bma.js (easylistchina+easylist.txt: 2942) +# ||fzbm.com/bbs/static/js/bma.js (easylistchina.txt: 2924) .fzbm.com/bbs/static/js/bma\.js -# ||fxxz.com/show/ (easylistchina+easylist.txt: 2941) +# ||fxxz.com/show/ (easylistchina.txt: 2923) .fxxz.com/show/ -# ||fxpan.com/sina.jpg (easylistchina+easylist.txt: 2940) +# ||fxpan.com/sina.jpg (easylistchina.txt: 2922) .fxpan.com/sina\.jpg -# ||fx678.com/proxy (easylistchina+easylist.txt: 2939) +# ||fx678.com/proxy (easylistchina.txt: 2921) .fx678.com/proxy -# ||fx678.com/js/baidu_ (easylistchina+easylist.txt: 2938) +# ||fx678.com/js/baidu_ (easylistchina.txt: 2920) .fx678.com/js/baidu_ -# ||fx114.net/images/bangbaotao.jpg (easylistchina+easylist.txt: 2937) +# ||fx114.net/images/bangbaotao.jpg (easylistchina.txt: 2919) .fx114.net/images/bangbaotao\.jpg -# ||fwxgx.com/u/ad/show_type/ (easylistchina+easylist.txt: 2936) +# ||fwxgx.com/u/ad/show_type/ (easylistchina.txt: 2918) .fwxgx.com/u/ad/show_type/ -# ||funtude.com/include/inc/ad_data. (easylistchina+easylist.txt: 2935) +# ||funtude.com/include/inc/ad_data. (easylistchina.txt: 2917) .funtude.com/include/inc/ad_data\. -# ||func.tw/image/func2.png (easylistchina+easylist.txt: 2934) +# ||func.tw/image/func2.png (easylistchina.txt: 2916) .func.tw/image/func2\.png -# ||fun.ynet.com^ (easylistchina+easylist.txt: 2933) +# ||fun.ynet.com^ (easylistchina.txt: 2915) .fun.ynet.com -# ||fullyu.com/js-lib/jquery.modal. (easylistchina+easylist.txt: 2931) +# ||fullyu.com/js-lib/jquery.modal. (easylistchina.txt: 2913) .fullyu.com/js-lib/jquery\.modal\. -# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina+easylist.txt: 2930) +# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina.txt: 2912) .fulitie.org/wp-content/themes/D8_4\.0/js/guanbi-no\.js -# ||fulidang.com/ads/ (easylistchina+easylist.txt: 2929) +# ||fulidang.com/ads/ (easylistchina.txt: 2911) .fulidang.com/ads/ -# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina+easylist.txt: 2928) +# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina.txt: 2910) .fububu.com/zb_users/THEME/LuSongSong/style/ads/ -# ||ftchinese.com/m/marketing/ad.html (easylistchina+easylist.txt: 2927) +# ||ftchinese.com/m/marketing/ad.html (easylistchina.txt: 2909) .ftchinese.com/m/marketing/ad\.html -# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina+easylist.txt: 2926) +# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina.txt: 2908) .fspcdn.com/main/fis/js/v11/play/pop-ad_ -# ||fsehome.com/images/ad_tan.js (easylistchina+easylist.txt: 2925) +# ||fsehome.com/images/ad_tan.js (easylistchina.txt: 2907) .fsehome.com/images/ad_tan\.js -# ||freep.cn/lianjie/qqtongji.js (easylistchina+easylist.txt: 2924) +# ||freep.cn/lianjie/qqtongji.js (easylistchina.txt: 2906) .freep.cn/lianjie/qqtongji\.js -# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina+easylist.txt: 2923) +# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina.txt: 2905) .freep.cn/3tb_1408171239008bu7512293\.jpg -# ||free9.net/myc/myc.js (easylistchina+easylist.txt: 2922) +# ||free9.net/myc/myc.js (easylistchina.txt: 2904) .free9.net/myc/myc\.js -# ||free9.net/images/pic/dhc2013.gif (easylistchina+easylist.txt: 2921) +# ||free9.net/images/pic/dhc2013.gif (easylistchina.txt: 2903) .free9.net/images/pic/dhc2013\.gif -# ||fragment.firefoxchina.cn/html/ (easylistchina+easylist.txt: 2920) +# ||fragment.firefoxchina.cn/html/ (easylistchina.txt: 2902) .fragment.firefoxchina.cn/html/ -# ||fpdisplay.com/upload/n_ad/ (easylistchina+easylist.txt: 2919) +# ||fpdisplay.com/upload/n_ad/ (easylistchina.txt: 2901) .fpdisplay.com/upload/n_ad/ -# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina+easylist.txt: 2918) +# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina.txt: 2900) .fpdisplay.com/templates/default/js/palyflash_ -# ||fpdisplay.com/images/*960X30. (easylistchina+easylist.txt: 2917) +# ||fpdisplay.com/images/*960X30. (easylistchina.txt: 2899) .fpdisplay.com/images/.*960X30\. -# ||fpdisplay.com/images/*960X230. (easylistchina+easylist.txt: 2916) +# ||fpdisplay.com/images/*960X230. (easylistchina.txt: 2898) .fpdisplay.com/images/.*960X230\. -# ||forum.techweb.com.cn/advtcnt.php (easylistchina+easylist.txt: 2915) +# ||forum.techweb.com.cn/advtcnt.php (easylistchina.txt: 2897) .forum.techweb.com.cn/advtcnt\.php -# ||forum.51nb.com/images/ (easylistchina+easylist.txt: 2914) +# ||forum.51nb.com/images/ (easylistchina.txt: 2896) .forum.51nb.com/images/ -# ||focus.cn/common/js/adm (easylistchina+easylist.txt: 2913) +# ||focus.cn/common/js/adm (easylistchina.txt: 2895) .focus.cn/common/js/adm -# ||fmdisk.com/templates/yythems/images/qq (easylistchina+easylist.txt: 2912) +# ||fmdisk.com/templates/yythems/images/qq (easylistchina.txt: 2894) .fmdisk.com/templates/yythems/images/qq -# ||fmdisk.com/ima/ (easylistchina+easylist.txt: 2911) +# ||fmdisk.com/ima/ (easylistchina.txt: 2893) .fmdisk.com/ima/ -# ||flighty.cn/templets/images/2345- (easylistchina+easylist.txt: 2909) +# ||flighty.cn/templets/images/2345- (easylistchina.txt: 2891) .flighty.cn/templets/images/2345- -# ||flighty.cn/images/kiees.jpg (easylistchina+easylist.txt: 2908) +# ||flighty.cn/images/kiees.jpg (easylistchina.txt: 2890) .flighty.cn/images/kiees\.jpg -# ||flash8.net/flash8_a_d_s/ (easylistchina+easylist.txt: 2907) +# ||flash8.net/flash8_a_d_s/ (easylistchina.txt: 2889) .flash8.net/flash8_a_d_s/ -# ||flash.mycar168.com/data/js/ (easylistchina+easylist.txt: 2906) +# ||flash.mycar168.com/data/js/ (easylistchina.txt: 2888) .flash.mycar168.com/data/js/ -# ||fjlyfdc.com.cn/hxhad/ (easylistchina+easylist.txt: 2905) +# ||fjlyfdc.com.cn/hxhad/ (easylistchina.txt: 2887) .fjlyfdc.com.cn/hxhad/ -# ||fj007.com/money/ (easylistchina+easylist.txt: 2904) +# ||fj007.com/money/ (easylistchina.txt: 2886) .fj007.com/money/ -# ||fj.sina.com.cn/iframe/63/ (easylistchina+easylist.txt: 2903) +# ||fj.sina.com.cn/iframe/63/ (easylistchina.txt: 2885) .fj.sina.com.cn/iframe/63/ -# ||firefoxchina.cn^*_topbanner (easylistchina+easylist.txt: 2902) +# ||firefoxchina.cn^*_topbanner (easylistchina.txt: 2884) .firefoxchina.cn/.*_topbanner -# ||firefoxchina.cn^*_couplet (easylistchina+easylist.txt: 2901) +# ||firefoxchina.cn^*_couplet (easylistchina.txt: 2883) .firefoxchina.cn/.*_couplet -# ||firefoxchina.cn^*49560. (easylistchina+easylist.txt: 2900) +# ||firefoxchina.cn^*49560. (easylistchina.txt: 2882) .firefoxchina.cn/.*49560\. -# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina+easylist.txt: 2899) +# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina.txt: 2881) .firefoxchina.cn/res/js/fchina_video-min\.js -# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina+easylist.txt: 2898) +# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina.txt: 2880) .firefoxchina.cn/2014/.*_foxphone\.png -# ||files.webcars.com.cn^*.swf?link= (easylistchina+easylist.txt: 2897) +# ||files.webcars.com.cn^*.swf?link= (easylistchina.txt: 2879) .files.webcars.com.cn/.*\.swf\?link= -# ||file.ws.126.net/house/nj/*.swf (easylistchina+easylist.txt: 2894) +# ||file.ws.126.net/house/nj/*.swf (easylistchina.txt: 2876) .file.ws.126.net/house/nj/.*\.swf -# ||file.ws.126.net/house/jn/*.swf (easylistchina+easylist.txt: 2893) +# ||file.ws.126.net/house/jn/*.swf (easylistchina.txt: 2875) .file.ws.126.net/house/jn/.*\.swf -# ||file.ws.126.net/house/*/js/tc_ (easylistchina+easylist.txt: 2892) +# ||file.ws.126.net/house/*/js/tc_ (easylistchina.txt: 2874) .file.ws.126.net/house/.*/js/tc_ -# ||file.shmet.com/images/ (easylistchina+easylist.txt: 2891) +# ||file.shmet.com/images/ (easylistchina.txt: 2873) .file.shmet.com/images/ -# ||file.cloud.sogou.com/*/superzone/ (easylistchina+easylist.txt: 2890) +# ||file.cloud.sogou.com/*/superzone/ (easylistchina.txt: 2872) .file.cloud.sogou.com/.*/superzone/ -# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina+easylist.txt: 2889) +# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina.txt: 2871) .fhm.com.tw/js/colorbox/jquery\.colorbox\.js -# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina+easylist.txt: 2888) +# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina.txt: 2870) .fhm.com.tw/fhm_upload/full_ad_ -# ||fg.cc/logo/xierguanggao. (easylistchina+easylist.txt: 2887) +# ||fg.cc/logo/xierguanggao. (easylistchina.txt: 2869) .fg.cc/logo/xierguanggao\. -# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina+easylist.txt: 2886) +# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina.txt: 2868) .feng.com/aodoo3/view\.php\?what=zone:16& -# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina+easylist.txt: 2885) +# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina.txt: 2867) .feng.com/aodoo3/view\.php\?what=zone:13& -# ||feihu.la/Runtime/js/vod (easylistchina+easylist.txt: 2884) +# ||feihu.la/Runtime/js/vod (easylistchina.txt: 2866) .feihu.la/Runtime/js/vod -# ||feedss.com/uploadfile/ad/ (easylistchina+easylist.txt: 2883) +# ||feedss.com/uploadfile/ad/ (easylistchina.txt: 2865) .feedss.com/uploadfile/ad/ -# ||fdc.com.cn^*adv (easylistchina+easylist.txt: 2881) +# ||fdc.com.cn^*adv (easylistchina.txt: 2863) .fdc.com.cn/.*adv -# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina+easylist.txt: 2880) +# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina.txt: 2862) .fdc.com.cn/cms/js/home_js/.*_move_ -# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina+easylist.txt: 2879) +# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina.txt: 2861) .fdc.com.cn/cms/js/bbs/dl\.js -# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina+easylist.txt: 2878) +# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina.txt: 2860) .fdc.com.cn/cms/js/bbs/bbstonglan\.js -# ||faxingw.cn/js/wenba.js (easylistchina+easylist.txt: 2877) +# ||faxingw.cn/js/wenba.js (easylistchina.txt: 2859) .faxingw.cn/js/wenba\.js -# ||faxingw.cn/js/jiafa (easylistchina+easylist.txt: 2876) +# ||faxingw.cn/js/jiafa (easylistchina.txt: 2858) .faxingw.cn/js/jiafa -# ||faxingw.cn/js/detailgcbox.js (easylistchina+easylist.txt: 2875) +# ||faxingw.cn/js/detailgcbox.js (easylistchina.txt: 2857) .faxingw.cn/js/detailgcbox\.js -# ||faxingw.cn/js/*gg (easylistchina+easylist.txt: 2874) +# ||faxingw.cn/js/*gg (easylistchina.txt: 2856) .faxingw.cn/js/.*gg -# ||faxingw.cn/js/*ad (easylistchina+easylist.txt: 2873) +# ||faxingw.cn/js/*ad (easylistchina.txt: 2855) .faxingw.cn/js/.*ad -# ||faxingw.cn/js/*0 (easylistchina+easylist.txt: 2872) +# ||faxingw.cn/js/*0 (easylistchina.txt: 2854) .faxingw.cn/js/.*0 -# ||fantizi5.com/js/baiduad (easylistchina+easylist.txt: 2871) +# ||fantizi5.com/js/baiduad (easylistchina.txt: 2853) .fantizi5.com/js/baiduad -# ||fantizi5.com/js/ad*.js (easylistchina+easylist.txt: 2870) +# ||fantizi5.com/js/ad*.js (easylistchina.txt: 2852) .fantizi5.com/js/ad.*\.js -# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina+easylist.txt: 2869) +# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina.txt: 2851) .fanhaobao.net/wp-content/themes/xiu/js/single\.js -# ||fang99.com/JavaScript/advjs/ (easylistchina+easylist.txt: 2868) +# ||fang99.com/JavaScript/advjs/ (easylistchina.txt: 2850) .fang99.com/JavaScript/advjs/ -# ||fang.com/afp/door/ (easylistchina+easylist.txt: 2867) +# ||fang.com/afp/door/ (easylistchina.txt: 2849) .fang.com/afp/door/ -# ||fancai.com/Images/2014*.gif (easylistchina+easylist.txt: 2866) +# ||fancai.com/Images/2014*.gif (easylistchina.txt: 2848) .fancai.com/Images/2014.*\.gif -# ||familydoctor.com.cn/aiframe/ (easylistchina+easylist.txt: 2865) +# ||familydoctor.com.cn/aiframe/ (easylistchina.txt: 2847) .familydoctor.com.cn/aiframe/ -# ||faidns.com/image/site/faiscoAd/ (easylistchina+easylist.txt: 2864) +# ||faidns.com/image/site/faiscoAd/ (easylistchina.txt: 2846) .faidns.com/image/site/faiscoAd/ -# ||ezprice.com.tw/js/*_ysm_ (easylistchina+easylist.txt: 2863) +# ||ezprice.com.tw/js/*_ysm_ (easylistchina.txt: 2845) .ezprice.com.tw/js/.*_ysm_ -# ||ezprice.com.tw/ezysm/ (easylistchina+easylist.txt: 2862) +# ||ezprice.com.tw/ezysm/ (easylistchina.txt: 2844) .ezprice.com.tw/ezysm/ -# ||ezaozi.com/detail/*.js (easylistchina+easylist.txt: 2861) +# ||ezaozi.com/detail/*.js (easylistchina.txt: 2843) .ezaozi.com/detail/.*\.js -# ||eyuyao.com/yyad/ (easylistchina+easylist.txt: 2860) +# ||eyuyao.com/yyad/ (easylistchina.txt: 2842) .eyuyao.com/yyad/ -# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina+easylist.txt: 2859) +# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina.txt: 2841) .eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash\.jpg -# ||ettoday.net^*/ad/ (easylistchina+easylist.txt: 2858) +# ||ettoday.net^*/ad/ (easylistchina.txt: 2840) .ettoday.net/.*/ad/ -# ||ettoday.net/events/ad-tab/ (easylistchina+easylist.txt: 2857) +# ||ettoday.net/events/ad-tab/ (easylistchina.txt: 2839) .ettoday.net/events/ad-tab/ -# ||ettoday.net/banners/ (easylistchina+easylist.txt: 2856) +# ||ettoday.net/banners/ (easylistchina.txt: 2838) .ettoday.net/banners/ -# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina+easylist.txt: 2855) +# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina.txt: 2837) .etnet.com.hk/www/tc/stocks/ads/ -# ||etnet.com.hk/ad2014/ (easylistchina+easylist.txt: 2854) +# ||etnet.com.hk/ad2014/ (easylistchina.txt: 2836) .etnet.com.hk/ad2014/ -# ||etf88.com/swf/ (easylistchina+easylist.txt: 2853) +# ||etf88.com/swf/ (easylistchina.txt: 2835) .etf88.com/swf/ -# ||etest8.com/subcatejs/158/utitle158.js (easylistchina+easylist.txt: 2851) +# ||etest8.com/subcatejs/158/utitle158.js (easylistchina.txt: 2833) .etest8.com/subcatejs/158/utitle158\.js -# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina+easylist.txt: 2850) +# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina.txt: 2832) .etest8.com/subcatejs/158/tg158_330x190\.js -# ||etest8.com/style/full_floating.js (easylistchina+easylist.txt: 2849) +# ||etest8.com/style/full_floating.js (easylistchina.txt: 2831) .etest8.com/style/full_floating\.js -# ||etest8.com/style/950x90_2.js (easylistchina+easylist.txt: 2848) +# ||etest8.com/style/950x90_2.js (easylistchina.txt: 2830) .etest8.com/style/950x90_2\.js -# ||etdown.net/images/ad1 (easylistchina+easylist.txt: 2847) +# ||etdown.net/images/ad1 (easylistchina.txt: 2829) .etdown.net/images/ad1 -# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina+easylist.txt: 2846) +# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina.txt: 2828) .eprice.com.tw/js/swfobject-2\.3\.js -# ||eprice.com.tw/img/tw_m/ad/ (easylistchina+easylist.txt: 2845) +# ||eprice.com.tw/img/tw_m/ad/ (easylistchina.txt: 2827) .eprice.com.tw/img/tw_m/ad/ -# ||eprice.com.tw/img/dis/file/*.html (easylistchina+easylist.txt: 2844) -.eprice.com.tw/img/dis/file/.*\.html -# ||eprice.cn/image/upload/ad/ (easylistchina+easylist.txt: 2843) +# ||eprice.com.tw/img/dis/file/ (easylistchina.txt: 2826) +.eprice.com.tw/img/dis/file/ +# ||eprice.cn/image/upload/ad/ (easylistchina.txt: 2825) .eprice.cn/image/upload/ad/ -# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina+easylist.txt: 2842) +# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina.txt: 2824) .epinv.com/wp-content/themes/ep/tu/yinshu\.gif -# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina+easylist.txt: 2841) +# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina.txt: 2823) .epinv.com/wp-content/themes/ep/tu/.*250\.js -# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina+easylist.txt: 2840) +# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina.txt: 2822) .epinv.com/wp-content/themes/ep/js/single\.js -# ||eol.cn/js/global/jQuery_ads.js (easylistchina+easylist.txt: 2839) +# ||eol.cn/js/global/jQuery_ads.js (easylistchina.txt: 2821) .eol.cn/js/global/jQuery_ads\.js -# ||eol.cn/js/eol/ (easylistchina+easylist.txt: 2838) +# ||eol.cn/js/eol/ (easylistchina.txt: 2820) .eol.cn/js/eol/ -# ||entry.baidu.com/rp/home? (easylistchina+easylist.txt: 2837) +# ||entry.baidu.com/rp/home? (easylistchina.txt: 2819) .entry.baidu.com/rp/home\? -# ||enread.com/img/185-50.gif (easylistchina+easylist.txt: 2835) +# ||enread.com/img/185-50.gif (easylistchina.txt: 2817) .enread.com/img/185-50\.gif -# ||enjoy101.org/hk_rm_tab_ (easylistchina+easylist.txt: 2834) +# ||enjoy101.org/hk_rm_tab_ (easylistchina.txt: 2816) .enjoy101.org/hk_rm_tab_ -# ||enet.com.cn/mem_str_zoneid= (easylistchina+easylist.txt: 2833) +# ||enet.com.cn/mem_str_zoneid= (easylistchina.txt: 2815) .enet.com.cn/mem_str_zoneid= -# ||enet.com.cn/home/v6/includes/adv/ (easylistchina+easylist.txt: 2832) +# ||enet.com.cn/home/v6/includes/adv/ (easylistchina.txt: 2814) .enet.com.cn/home/v6/includes/adv/ -# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina+easylist.txt: 2831) +# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina.txt: 2813) .enet.com.cn/eschool/includes/gdtup/tu6/slide\.js -# ||ems183.cn/images/kiees (easylistchina+easylist.txt: 2830) +# ||ems183.cn/images/kiees (easylistchina.txt: 2812) .ems183.cn/images/kiees -# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina+easylist.txt: 2829) +# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina.txt: 2811) .embest-tech.cn/js/jquery\.blockUI\.js -# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina+easylist.txt: 2828) +# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina.txt: 2810) .emarketing.bot.com.tw/output/vi\.aspx\? -# ||elecfans.com/images2012/pcb.gif (easylistchina+easylist.txt: 2827) +# ||elecfans.com/images2012/pcb.gif (easylistchina.txt: 2809) .elecfans.com/images2012/pcb\.gif -# ||elecfans.com/baidu_m.html (easylistchina+easylist.txt: 2826) +# ||elecfans.com/baidu_m.html (easylistchina.txt: 2808) .elecfans.com/baidu_m\.html -# ||eeyy.com/uploadfile/img/beitou (easylistchina+easylist.txt: 2825) +# ||eeyy.com/uploadfile/img/beitou (easylistchina.txt: 2807) .eeyy.com/uploadfile/img/beitou -# ||eeyy.com/templates/js/other/yxj.js (easylistchina+easylist.txt: 2824) +# ||eeyy.com/templates/js/other/yxj.js (easylistchina.txt: 2806) .eeyy.com/templates/js/other/yxj\.js -# ||eeyy.com/otherhtml/js/ad650.js (easylistchina+easylist.txt: 2823) +# ||eeyy.com/otherhtml/js/ad650.js (easylistchina.txt: 2805) .eeyy.com/otherhtml/js/ad650\.js -# ||eeee42.com/Ads/ (easylistchina+easylist.txt: 2822) +# ||eeee42.com/Ads/ (easylistchina.txt: 2804) .eeee42.com/Ads/ -# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina+easylist.txt: 2821) +# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina.txt: 2803) .eduuu.com/gaokao/2015/bannerDaili\.js -# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina+easylist.txt: 2820) +# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina.txt: 2802) .educity.cn/self_text/text_disp\.aspx\?id= -# ||edu24ol.com/web_news/js/1100.jpg (easylistchina+easylist.txt: 2819) +# ||edu24ol.com/web_news/js/1100.jpg (easylistchina.txt: 2801) .edu24ol.com/web_news/js/1100\.jpg -# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina+easylist.txt: 2818) +# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina.txt: 2800) .edu24ol.com/web_news/images/cj_news\.jpg -# ||edu03.com/data/js.php?id= (easylistchina+easylist.txt: 2817) +# ||edu03.com/data/js.php?id= (easylistchina.txt: 2799) .edu03.com/data/js\.php\?id= -# ||ecmb.bdimg.com^ (easylistchina+easylist.txt: 2816) +# ||ecmb.bdimg.com^ (easylistchina.txt: 2798) .ecmb.bdimg.com -# ||ecma.bdimg.com^ (easylistchina+easylist.txt: 2815) +# ||ecma.bdimg.com^ (easylistchina.txt: 2797) .ecma.bdimg.com -# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina+easylist.txt: 2814) +# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina.txt: 2796) .ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb\.jpg -# ||ebrun.com/jfile/position/js/*.js (easylistchina+easylist.txt: 2813) +# ||ebrun.com/jfile/position/js/*.js (easylistchina.txt: 2795) .ebrun.com/jfile/position/js/.*\.js -# ||ebrun.com/jfile/lagou.js (easylistchina+easylist.txt: 2812) +# ||ebrun.com/jfile/lagou.js (easylistchina.txt: 2794) .ebrun.com/jfile/lagou\.js -# ||ebp.renren.com^ (easylistchina+easylist.txt: 2811) +# ||ebp.renren.com^ (easylistchina.txt: 2793) .ebp.renren.com -# ||ebiotrade.com/web_images/*.swf (easylistchina+easylist.txt: 2810) +# ||ebiotrade.com/web_images/*.swf (easylistchina.txt: 2792) .ebiotrade.com/web_images/.*\.swf -# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina+easylist.txt: 2809) +# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina.txt: 2791) .ebiotrade.com/newsf/js/news_top_banner\.js -# ||ebiotrade.com/newsf/js/inpic.js (easylistchina+easylist.txt: 2808) +# ||ebiotrade.com/newsf/js/inpic.js (easylistchina.txt: 2790) .ebiotrade.com/newsf/js/inpic\.js -# ||ebiotrade.com/jslibrary/js (easylistchina+easylist.txt: 2807) +# ||ebiotrade.com/jslibrary/js (easylistchina.txt: 2789) .ebiotrade.com/jslibrary/js -# ||eastmoney.com/js/headbiggg_ (easylistchina+easylist.txt: 2805) +# ||eastmoney.com/js/headbiggg_ (easylistchina.txt: 2787) .eastmoney.com/js/headbiggg_ -# ||eastlady.cn/cssjs/indextopad.js (easylistchina+easylist.txt: 2804) +# ||eastlady.cn/cssjs/indextopad.js (easylistchina.txt: 2786) .eastlady.cn/cssjs/indextopad\.js -# ||eastlady.cn/cssjs/indexgg.js (easylistchina+easylist.txt: 2803) +# ||eastlady.cn/cssjs/indexgg.js (easylistchina.txt: 2785) .eastlady.cn/cssjs/indexgg\.js -# ||eastlady.cn/cssjs/indexbaner (easylistchina+easylist.txt: 2802) +# ||eastlady.cn/cssjs/indexbaner (easylistchina.txt: 2784) .eastlady.cn/cssjs/indexbaner -# ||eastday.com/k.js (easylistchina+easylist.txt: 2801) +# ||eastday.com/k.js (easylistchina.txt: 2783) .eastday.com/k\.js -# ||easou.com/online/banner/ (easylistchina+easylist.txt: 2800) +# ||easou.com/online/banner/ (easylistchina.txt: 2782) .easou.com/online/banner/ -# ||easou.com/brandImage/ad/ (easylistchina+easylist.txt: 2799) +# ||easou.com/brandImage/ad/ (easylistchina.txt: 2781) .easou.com/brandImage/ad/ -# ||eap.enorth.com.cn^ (easylistchina+easylist.txt: 2798) +# ||eap.enorth.com.cn^ (easylistchina.txt: 2780) .eap.enorth.com.cn -# ||eap.big5.enorth.com.cn^ (easylistchina+easylist.txt: 2797) +# ||eap.big5.enorth.com.cn^ (easylistchina.txt: 2779) .eap.big5.enorth.com.cn -# ||e399.com/html/ (easylistchina+easylist.txt: 2796) +# ||e399.com/html/ (easylistchina.txt: 2778) .e399.com/html/ -# ||e23.cn/js/aaa.js (easylistchina+easylist.txt: 2795) +# ||e23.cn/js/aaa.js (easylistchina.txt: 2777) .e23.cn/js/aaa\.js -# ||e0575.com/pic/AD_ (easylistchina+easylist.txt: 2794) +# ||e0575.com/pic/AD_ (easylistchina.txt: 2776) .e0575.com/pic/AD_ -# ||e0575.com/attachment/image/*_flash.swf (easylistchina+easylist.txt: 2793) +# ||e0575.com/attachment/image/20160106024028_1.jpg (easylistchina.txt: 2775) +.e0575.com/attachment/image/20160106024028_1\.jpg +# ||e0575.com/attachment/image/*_flash.swf (easylistchina.txt: 2774) .e0575.com/attachment/image/.*_flash\.swf -# ||e0575.cn/js/float.js (easylistchina+easylist.txt: 2792) +# ||e0575.cn/js/float.js (easylistchina.txt: 2773) .e0575.cn/js/float\.js -# ||e0575.cn/js/advBigPopup/ (easylistchina+easylist.txt: 2791) +# ||e0575.cn/js/advBigPopup/ (easylistchina.txt: 2772) .e0575.cn/js/advBigPopup/ -# ||e0575.cn/images/v1/dl/ (easylistchina+easylist.txt: 2790) +# ||e0575.cn/images/v1/dl/ (easylistchina.txt: 2771) .e0575.cn/images/v1/dl/ -# ||e0421.com/css/js/tl (easylistchina+easylist.txt: 2789) +# ||e0421.com/css/js/tl (easylistchina.txt: 2770) .e0421.com/css/js/tl -# ||e0421.com/css/js/bd (easylistchina+easylist.txt: 2788) +# ||e0421.com/css/js/bd (easylistchina.txt: 2769) .e0421.com/css/js/bd -# ||e0421.com/*tj.js (easylistchina+easylist.txt: 2787) +# ||e0421.com/*tj.js (easylistchina.txt: 2768) .e0421.com/.*tj\.js -# ||e.yycqc.com^ (easylistchina+easylist.txt: 2786) +# ||e.yycqc.com^ (easylistchina.txt: 2767) .e.yycqc.com -# ||e.hnr.cn/choose/view/ (easylistchina+easylist.txt: 2785) +# ||e.hnr.cn/choose/view/ (easylistchina.txt: 2766) .e.hnr.cn/choose/view/ -# ||e.changyan.sohu.com/dataService/getData? (easylistchina+easylist.txt: 2784) +# ||e.changyan.sohu.com/dataService/getData? (easylistchina.txt: 2765) .e.changyan.sohu.com/dataService/getData\? -# ||dzwww.com/k.js (easylistchina+easylist.txt: 2783) +# ||dzwww.com/k.js (easylistchina.txt: 2764) .dzwww.com/k\.js -# ||dzwww.com/images/W020140912508314044024.gif (easylistchina+easylist.txt: 2782) +# ||dzwww.com/images/W020140912508314044024.gif (easylistchina.txt: 2763) .dzwww.com/images/W020140912508314044024\.gif -# ||dz320.com/desktop (easylistchina+easylist.txt: 2780) +# ||dz320.com/desktop (easylistchina.txt: 2761) .dz320.com/desktop -# ||dytt8.net/js2/ (easylistchina+easylist.txt: 2779) +# ||dytt8.net/js2/ (easylistchina.txt: 2760) .dytt8.net/js2/ -# ||dyhjw.com/dyhjw/left/new.js (easylistchina+easylist.txt: 2778) +# ||dyhjw.com/dyhjw/left/new.js (easylistchina.txt: 2759) .dyhjw.com/dyhjw/left/new\.js -# ||dyhjw.com/dyhjw/4.htm (easylistchina+easylist.txt: 2777) +# ||dyhjw.com/dyhjw/4.htm (easylistchina.txt: 2758) .dyhjw.com/dyhjw/4\.htm -# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina+easylist.txt: 2776) +# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina.txt: 2757) .dyhjw.com/dyhjw/1/3/471\.gif -# ||dyhjw.com/dyhjw/1.htm (easylistchina+easylist.txt: 2775) +# ||dyhjw.com/dyhjw/1.htm (easylistchina.txt: 2756) .dyhjw.com/dyhjw/1\.htm -# ||dydh.tv/statics/js/tuku (easylistchina+easylist.txt: 2774) +# ||dydh.tv/statics/js/tuku (easylistchina.txt: 2755) .dydh.tv/statics/js/tuku -# ||dydh.tv/img/960.gif (easylistchina+easylist.txt: 2773) +# ||dydh.tv/img/960.gif (easylistchina.txt: 2754) .dydh.tv/img/960\.gif -# ||dydh.tv/img/384.gif (easylistchina+easylist.txt: 2772) +# ||dydh.tv/img/384.gif (easylistchina.txt: 2753) .dydh.tv/img/384\.gif -# ||dydh.tv/img/2345.gif (easylistchina+easylist.txt: 2771) +# ||dydh.tv/img/2345.gif (easylistchina.txt: 2752) .dydh.tv/img/2345\.gif -# ||dy2018.com/dianyq/ (easylistchina+easylist.txt: 2770) +# ||dy2018.com/dianyq/ (easylistchina.txt: 2751) .dy2018.com/dianyq/ -# ||dxrc.cn/images/sy.gif (easylistchina+easylist.txt: 2769) +# ||dxrc.cn/images/sy.gif (easylistchina.txt: 2750) .dxrc.cn/images/sy\.gif -# ||dxrc.cn/ad1/ (easylistchina+easylist.txt: 2768) +# ||dxrc.cn/ad1/ (easylistchina.txt: 2749) .dxrc.cn/ad1/ -# ||dxlwwang.com/style/js/jeminMain. (easylistchina+easylist.txt: 2767) +# ||dxlwwang.com/style/js/jeminMain. (easylistchina.txt: 2748) .dxlwwang.com/style/js/jeminMain\. -# ||dxlwwang.com/style/images/bar (easylistchina+easylist.txt: 2766) +# ||dxlwwang.com/style/images/bar (easylistchina.txt: 2747) .dxlwwang.com/style/images/bar -# ||dxlwwang.com/contact_js/contact.js (easylistchina+easylist.txt: 2765) +# ||dxlwwang.com/contact_js/contact.js (easylistchina.txt: 2746) .dxlwwang.com/contact_js/contact\.js -# ||dwstatic.com^*/p/livetip/ (easylistchina+easylist.txt: 2764) +# ||dwstatic.com^*/p/livetip/ (easylistchina.txt: 2745) .dwstatic.com/.*/p/livetip/ -# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina+easylist.txt: 2763) +# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina.txt: 2744) .dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1\.js -# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina+easylist.txt: 2762) +# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina.txt: 2743) .dwstatic.com/amkit/p/duya/special/list-notice/banner-app\.jpg -# ||dw138.com/a12345/ (easylistchina+easylist.txt: 2761) +# ||dw138.com/a12345/ (easylistchina.txt: 2742) .dw138.com/a12345/ -# ||dvser.china.com^ (easylistchina+easylist.txt: 2760) +# ||dvser.china.com^ (easylistchina.txt: 2741) .dvser.china.com -# ||dvs.china.com^ (easylistchina+easylist.txt: 2759) +# ||dvs.china.com^ (easylistchina.txt: 2740) .dvs.china.com -# ||dvbcn.com/yinyong/show/news_right_ (easylistchina+easylist.txt: 2758) +# ||dvbcn.com/yinyong/show/news_right_ (easylistchina.txt: 2739) .dvbcn.com/yinyong/show/news_right_ -# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina+easylist.txt: 2757) +# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina.txt: 2738) .dvbcn.com/uploadfile/2015/0202/20150202050700880\.png -# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina+easylist.txt: 2756) +# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina.txt: 2737) .dvbcn.com/phpcms/templates/2012/news\.html -# ||dvbcn.com/index.php?m=poster& (easylistchina+easylist.txt: 2755) +# ||dvbcn.com/index.php?m=poster& (easylistchina.txt: 2736) .dvbcn.com/index\.php\?m=poster& -# ||dushiwenxue.com/add/ (easylistchina+easylist.txt: 2754) +# ||dushiwenxue.com/add/ (easylistchina.txt: 2735) .dushiwenxue.com/add/ -# ||dup.baidustatic.com/js/ (easylistchina+easylist.txt: 2753) +# ||dup.baidustatic.com/js/ (easylistchina.txt: 2734) .dup.baidustatic.com/js/ -# ||duoxiai.com.cn/imgad/ (easylistchina+easylist.txt: 2752) +# ||duoxiai.com.cn/imgad/ (easylistchina.txt: 2733) .duoxiai.com.cn/imgad/ -# ||duowan.com/s/yuanbao-entrance.js (easylistchina+easylist.txt: 2751) +# ||duowan.com/s/yuanbao-entrance.js (easylistchina.txt: 2732) .duowan.com/s/yuanbao-entrance\.js -# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina+easylist.txt: 2750) +# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina.txt: 2731) .duowan.com/lgn/x/images/lgnadv/ -# ||duonao.tv/upload/image/*.swf (easylistchina+easylist.txt: 2749) +# ||duonao.tv/upload/image/*.swf (easylistchina.txt: 2730) .duonao.tv/upload/image/.*\.swf -# ||duonao.tv/upload/image/*.gif (easylistchina+easylist.txt: 2748) +# ||duonao.tv/upload/image/*.gif (easylistchina.txt: 2729) .duonao.tv/upload/image/.*\.gif -# ||duba.com/static/v3/images/*.swf (easylistchina+easylist.txt: 2746) +# ||duba.com/static/v3/images/*.swf (easylistchina.txt: 2727) .duba.com/static/v3/images/.*\.swf -# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina+easylist.txt: 2744) +# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina.txt: 2725) .dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q\.jpg -# ||drupalchina.cn/sites/default/files/osforce- (easylistchina+easylist.txt: 2743) +# ||drupalchina.cn/sites/default/files/osforce- (easylistchina.txt: 2724) .drupalchina.cn/sites/default/files/osforce- -# ||drupalchina.cn/sites/default/files/lagou- (easylistchina+easylist.txt: 2742) +# ||drupalchina.cn/sites/default/files/lagou- (easylistchina.txt: 2723) .drupalchina.cn/sites/default/files/lagou- -# ||drupalchina.cn/sites/default/files/banner/ (easylistchina+easylist.txt: 2741) +# ||drupalchina.cn/sites/default/files/banner/ (easylistchina.txt: 2722) .drupalchina.cn/sites/default/files/banner/ -# ||drivergenius.com/inc/driverwwwad.js (easylistchina+easylist.txt: 2740) +# ||drivergenius.com/inc/driverwwwad.js (easylistchina.txt: 2721) .drivergenius.com/inc/driverwwwad\.js -# ||dre8.com/tieba/zh-tb/so.html (easylistchina+easylist.txt: 2739) +# ||dre8.com/tieba/zh-tb/so.html (easylistchina.txt: 2720) .dre8.com/tieba/zh-tb/so\.html -# ||dqdm.com/js/dqdm/nei960 (easylistchina+easylist.txt: 2738) +# ||dqdm.com/js/dqdm/nei960 (easylistchina.txt: 2719) .dqdm.com/js/dqdm/nei960 -# ||dpfile.com/pc/trip/*(600x400) (easylistchina+easylist.txt: 2737) +# ||dpfile.com/pc/trip/*(600x400) (easylistchina.txt: 2718) .dpfile.com/pc/trip/.*\(600x400\) -# ||dpfile.com/pc/ad/ (easylistchina+easylist.txt: 2736) -.dpfile.com/pc/ad/ -# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina+easylist.txt: 2735) +# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina.txt: 2717) .doyo.cn/Tpl/web/Public/images/material/www_couplets/ -# ||downza.cn/html/skin/default/ad/ (easylistchina+easylist.txt: 2734) +# ||downza.cn/html/skin/default/ad/ (easylistchina.txt: 2716) .downza.cn/html/skin/default/ad/ -# ||downyi.com/tg/ (easylistchina+easylist.txt: 2733) +# ||downyi.com/tg/ (easylistchina.txt: 2715) .downyi.com/tg/ -# ||downxia.com/zejs/soft (easylistchina+easylist.txt: 2732) +# ||downxia.com/zejs/soft (easylistchina.txt: 2714) .downxia.com/zejs/soft -# ||downxia.com/zejs/ad (easylistchina+easylist.txt: 2731) +# ||downxia.com/zejs/ad (easylistchina.txt: 2713) .downxia.com/zejs/ad -# ||downxia.com/haojs/ (easylistchina+easylist.txt: 2730) +# ||downxia.com/haojs/ (easylistchina.txt: 2712) .downxia.com/haojs/ -# ||downxia.com/dgjs/download.js (easylistchina+easylist.txt: 2729) +# ||downxia.com/dgjs/download.js (easylistchina.txt: 2711) .downxia.com/dgjs/download\.js -# ||download.game.yy.com/resource/fodder/*.flv (easylistchina+easylist.txt: 2728) +# ||download.game.yy.com/resource/fodder/*.flv (easylistchina.txt: 2710) .download.game.yy.com/resource/fodder/.*\.flv -# ||download.game.yy.com/crossdomain.xml (easylistchina+easylist.txt: 2727) +# ||download.game.yy.com/crossdomain.xml (easylistchina.txt: 2709) .download.game.yy.com/crossdomain\.xml -# ||downkr.com/statics/js/all.js (easylistchina+easylist.txt: 2726) +# ||downkr.com/statics/js/all.js (easylistchina.txt: 2708) .downkr.com/statics/js/all\.js -# ||downcc.com/js/66060.gif (easylistchina+easylist.txt: 2725) +# ||downcc.com/js/66060.gif (easylistchina.txt: 2707) .downcc.com/js/66060\.gif -# ||downbank.cn/soft6/ (easylistchina+easylist.txt: 2724) +# ||downbank.cn/soft6/ (easylistchina.txt: 2706) .downbank.cn/soft6/ -# ||downbank.cn/s1/ (easylistchina+easylist.txt: 2723) +# ||downbank.cn/s1/ (easylistchina.txt: 2705) .downbank.cn/s1/ -# ||downbank.cn/jkzm/ (easylistchina+easylist.txt: 2722) +# ||downbank.cn/jkzm/ (easylistchina.txt: 2704) .downbank.cn/jkzm/ -# ||down12.com/htmlg/D*.js (easylistchina+easylist.txt: 2721) +# ||down12.com/htmlg/D*.js (easylistchina.txt: 2703) .down12.com/htmlg/D.*\.js -# ||down.it168.com/ggimg/ (easylistchina+easylist.txt: 2720) +# ||down.it168.com/ggimg/ (easylistchina.txt: 2702) .down.it168.com/ggimg/ -# ||down.admin5.com/z/ (easylistchina+easylist.txt: 2719) +# ||down.admin5.com/z/ (easylistchina.txt: 2701) .down.admin5.com/z/ -# ||douyutv.com/upload/signs/*.swf (easylistchina+easylist.txt: 2718) +# ||douyutv.com/upload/signs/*.swf (easylistchina.txt: 2700) .douyutv.com/upload/signs/.*\.swf -# ||douguo.net/upload/post/d/ (easylistchina+easylist.txt: 2717) +# ||douguo.net/upload/post/d/ (easylistchina.txt: 2699) .douguo.net/upload/post/d/ -# ||doubleclick.tv002.com^ (easylistchina+easylist.txt: 2716) +# ||doubleclick.tv002.com^ (easylistchina.txt: 2698) .doubleclick.tv002.com -# ||doubanio.com^*/js/ad. (easylistchina+easylist.txt: 2715) +# ||doubanio.com^*/js/ad. (easylistchina.txt: 2697) .doubanio.com/.*/js/ad\. -# ||douban.com^*/fm_bgad.js (easylistchina+easylist.txt: 2713) +# ||douban.com^*/fm_bgad.js (easylistchina.txt: 2695) .douban.com/.*/fm_bgad\.js -# ||douban.com/view/dale-online/dale_ad (easylistchina+easylist.txt: 2712) +# ||douban.com/view/dale-online/dale_ad (easylistchina.txt: 2694) .douban.com/view/dale-online/dale_ad -# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina+easylist.txt: 2711) +# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina.txt: 2693) .douban.com/\?unit=dale_movie_trailer_after_play& -# ||dospy.com/hezuo/ (easylistchina+easylist.txt: 2709) +# ||dospy.com/hezuo/ (easylistchina.txt: 2691) .dospy.com/hezuo/ -# ||dongfangtai.com/js/duil.js (easylistchina+easylist.txt: 2708) +# ||dongfangtai.com/js/duil.js (easylistchina.txt: 2690) .dongfangtai.com/js/duil\.js -# ||domeng.cn/js/index_ (easylistchina+easylist.txt: 2707) +# ||domeng.cn/js/index_ (easylistchina.txt: 2689) .domeng.cn/js/index_ -# ||dolphin.ftimg.net/s? (easylistchina+easylist.txt: 2706) +# ||dolphin.ftimg.net/s? (easylistchina.txt: 2688) .dolphin.ftimg.net/s\? -# ||dol.tianya.cn/s?z=tianya&c= (easylistchina+easylist.txt: 2705) +# ||dol.tianya.cn/s?z=tianya&c= (easylistchina.txt: 2687) .dol.tianya.cn/s\?z=tianya&c= -# ||doguo.com/api/vip_discount.js (easylistchina+easylist.txt: 2704) +# ||doguo.com/api/vip_discount.js (easylistchina.txt: 2686) .doguo.com/api/vip_discount\.js -# ||docin.com/jsp_cn/ad/ (easylistchina+easylist.txt: 2702) +# ||docin.com/jsp_cn/ad/ (easylistchina.txt: 2684) .docin.com/jsp_cn/ad/ -# ||docin.com/docin_adv/ (easylistchina+easylist.txt: 2701) +# ||docin.com/docin_adv/ (easylistchina.txt: 2683) .docin.com/docin_adv/ -# ||docin.com/app/a_d/ (easylistchina+easylist.txt: 2700) +# ||docin.com/app/a_d/ (easylistchina.txt: 2682) .docin.com/app/a_d/ -# ||doc88.com/assets/js/myad.js (easylistchina+easylist.txt: 2699) +# ||doc88.com/assets/js/myad.js (easylistchina.txt: 2681) .doc88.com/assets/js/myad\.js -# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina+easylist.txt: 2698) +# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina.txt: 2680) .do189.com/zb_users/theme/duoyi/style/images/.*\.gif -# ||dnwx.com/pic_ad/ (easylistchina+easylist.txt: 2697) +# ||dnwx.com/pic_ad/ (easylistchina.txt: 2679) .dnwx.com/pic_ad/ -# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina+easylist.txt: 2696) +# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina.txt: 2678) .dnwx.com/pic/xitongba-468-2\.gif -# ||dnwx.com/pic/lg.gif (easylistchina+easylist.txt: 2695) +# ||dnwx.com/pic/lg.gif (easylistchina.txt: 2677) .dnwx.com/pic/lg\.gif -# ||dnwx.com/pic/*_978x (easylistchina+easylist.txt: 2694) +# ||dnwx.com/pic/*_978x (easylistchina.txt: 2676) .dnwx.com/pic/.*_978x -# ||dnwx.com/pic/*-960x60. (easylistchina+easylist.txt: 2693) +# ||dnwx.com/pic/*-960x60. (easylistchina.txt: 2675) .dnwx.com/pic/.*-960x60\. -# ||dnvod.eu/upload/image/*.swf (easylistchina+easylist.txt: 2691) +# ||dnvod.eu/upload/image/*.swf (easylistchina.txt: 2673) .dnvod.eu/upload/image/.*\.swf -# ||dnvod.eu/upload/image/*.gif (easylistchina+easylist.txt: 2690) +# ||dnvod.eu/upload/image/*.gif (easylistchina.txt: 2672) .dnvod.eu/upload/image/.*\.gif -# ||dnpz.net/templets/images/lunbo/ (easylistchina+easylist.txt: 2688) +# ||dnpz.net/templets/images/lunbo/ (easylistchina.txt: 2670) .dnpz.net/templets/images/lunbo/ -# ||dngame.eu/dngcenter/default.aspx (easylistchina+easylist.txt: 2687) +# ||dngame.eu/dngcenter/default.aspx (easylistchina.txt: 2669) .dngame.eu/dngcenter/default\.aspx -# ||dn-yahoo.qbox.me/be (easylistchina+easylist.txt: 2686) -.dn-yahoo.qbox.me/be -# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina+easylist.txt: 2685) +# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina.txt: 2668) .dn-ttdaili.qbox.me/bdqb/ -# ||dn-okey.qbox.me/v*.js (easylistchina+easylist.txt: 2684) -.dn-okey.qbox.me/v.*\.js -# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina+easylist.txt: 2683) +# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina.txt: 2667) .dn-cnodestatic.qbox.me/public/images/.*-banner- -# ||dmmfx.com.au/dmm-tag/ (easylistchina+easylist.txt: 2682) +# ||dmmfx.com.au/dmm-tag/ (easylistchina.txt: 2666) .dmmfx.com.au/dmm-tag/ -# ||dmhua.net/js/bd_ (easylistchina+easylist.txt: 2681) +# ||dmhua.net/js/bd_ (easylistchina.txt: 2665) .dmhua.net/js/bd_ -# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina+easylist.txt: 2680) +# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina.txt: 2664) .dmfans.net/template/haokandemanhhua/images/g_js/ -# ||dm530.com/pic/fgr/*.js (easylistchina+easylist.txt: 2679) +# ||dm530.com/pic/fgr/*.js (easylistchina.txt: 2663) .dm530.com/pic/fgr/.*\.js -# ||dm456.com/m/ (easylistchina+easylist.txt: 2678) +# ||dm456.com/m/ (easylistchina.txt: 2662) .dm456.com/m/ -# ||dm456.com/install/loading.html (easylistchina+easylist.txt: 2677) +# ||dm456.com/install/loading.html (easylistchina.txt: 2661) .dm456.com/install/loading\.html -# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina+easylist.txt: 2676) +# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina.txt: 2660) .dl-l-tax.gov.cn/js/2floating\.js -# ||djwma.com/tc.js (easylistchina+easylist.txt: 2675) +# ||djwma.com/tc.js (easylistchina.txt: 2659) .djwma.com/tc\.js -# ||djwma.com/qq.jpg (easylistchina+easylist.txt: 2674) +# ||djwma.com/qq.jpg (easylistchina.txt: 2658) .djwma.com/qq\.jpg -# ||djwma.com/960*.gif (easylistchina+easylist.txt: 2673) +# ||djwma.com/960*.gif (easylistchina.txt: 2657) .djwma.com/960.*\.gif -# ||djwma.com/760*.gif (easylistchina+easylist.txt: 2672) +# ||djwma.com/760*.gif (easylistchina.txt: 2656) .djwma.com/760.*\.gif -# ||djkk.com/ak/ (easylistchina+easylist.txt: 2671) +# ||djkk.com/ak/ (easylistchina.txt: 2655) .djkk.com/ak/ -# ||djccc.com/js/c*.js (easylistchina+easylist.txt: 2670) +# ||djccc.com/js/c*.js (easylistchina.txt: 2654) .djccc.com/js/c.*\.js -# ||djccc.com/js/b*.js (easylistchina+easylist.txt: 2669) +# ||djccc.com/js/b*.js (easylistchina.txt: 2653) .djccc.com/js/b.*\.js -# ||djccc.com/js/a*.js (easylistchina+easylist.txt: 2668) +# ||djccc.com/js/a*.js (easylistchina.txt: 2652) .djccc.com/js/a.*\.js -# ||dj97.com/js/list_right_ (easylistchina+easylist.txt: 2667) +# ||dj97.com/js/list_right_ (easylistchina.txt: 2651) .dj97.com/js/list_right_ -# ||dj520.com/js/stj.js (easylistchina+easylist.txt: 2666) +# ||dj520.com/js/stj.js (easylistchina.txt: 2650) .dj520.com/js/stj\.js -# ||divcss5.com/wy/top465.js (easylistchina+easylist.txt: 2665) +# ||divcss5.com/wy/top465.js (easylistchina.txt: 2649) .divcss5.com/wy/top465\.js -# ||divcss5.com*/liping/ (easylistchina+easylist.txt: 2664) +# ||divcss5.com*/liping/ (easylistchina.txt: 2648) .divcss5.com*./(.*/)?liping/ -# ||divcss5.com*/ibeifeng/ (easylistchina+easylist.txt: 2663) +# ||divcss5.com*/ibeifeng/ (easylistchina.txt: 2647) .divcss5.com*./(.*/)?ibeifeng/ -# ||divcss5.com*/enkj/ (easylistchina+easylist.txt: 2662) +# ||divcss5.com*/enkj/ (easylistchina.txt: 2646) .divcss5.com*./(.*/)?enkj/ -# ||disk1.net/i/2/900%C3%9740.gif (easylistchina+easylist.txt: 2661) +# ||disk1.net/i/2/900%C3%9740.gif (easylistchina.txt: 2645) .disk1.net/i/2/900%C3%9740\.gif -# ||discuzlab.com/data/attachment/portal/ (easylistchina+easylist.txt: 2660) +# ||discuzlab.com/data/attachment/portal/ (easylistchina.txt: 2644) .discuzlab.com/data/attachment/portal/ -# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina+easylist.txt: 2659) +# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina.txt: 2643) .discuz.gtimg.cn/cloud/scripts/discuz_tips\.js -# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina+easylist.txt: 2658) +# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina.txt: 2642) .discuss.com.hk/dfp_forum\.php\?au=Discuss_Web_ -# ||dioguitar23.*/images/*.gif (easylistchina+easylist.txt: 2657) +# ||dioguitar23.*/images/*.gif (easylistchina.txt: 2641) .dioguitar23.*./(.*/)?images/.*\.gif -# ||dilidili.com/js/w*.js (easylistchina+easylist.txt: 2656) +# ||dilidili.com/js/w*.js (easylistchina.txt: 2640) .dilidili.com/js/w.*\.js -# ||dilidili.com/js/right (easylistchina+easylist.txt: 2655) +# ||dilidili.com/js/right (easylistchina.txt: 2639) .dilidili.com/js/right -# ||dilidili.com/js/index.js (easylistchina+easylist.txt: 2654) +# ||dilidili.com/js/index.js (easylistchina.txt: 2638) .dilidili.com/js/index\.js -# ||dig.chouti.com/advert (easylistchina+easylist.txt: 2653) +# ||dig.chouti.com/advert (easylistchina.txt: 2637) .dig.chouti.com/advert -# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina+easylist.txt: 2652) +# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina.txt: 2636) .didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D\.png -# ||didamoe.com/js/xuanfu.js (easylistchina+easylist.txt: 2651) +# ||didamoe.com/js/xuanfu.js (easylistchina.txt: 2635) .didamoe.com/js/xuanfu\.js -# ||didamoe.com/js/play_ (easylistchina+easylist.txt: 2650) +# ||didamoe.com/js/play_ (easylistchina.txt: 2634) .didamoe.com/js/play_ -# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina+easylist.txt: 2649) +# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina.txt: 2633) .dichan.com.au/newhouse/pinnacle/images/bcastr3\.swf -# ||diannaoxitong.com/js/*.gif (easylistchina+easylist.txt: 2648) +# ||diannaoxitong.com/js/*.gif (easylistchina.txt: 2632) .diannaoxitong.com/js/.*\.gif -# ||diancloud.com/ghost/banner/ (easylistchina+easylist.txt: 2647) -.diancloud.com/ghost/banner/ -# ||dg.073img.com^ (easylistchina+easylist.txt: 2646) +# ||dg.073img.com^ (easylistchina.txt: 2631) .dg.073img.com -# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina+easylist.txt: 2645) +# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina.txt: 2630) .dfcfw.com/js/tg/rightAd_v2\.js -# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina+easylist.txt: 2644) +# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina.txt: 2629) .dfcfw.com/js/pinzhong/bdbottom_ -# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina+easylist.txt: 2643) +# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina.txt: 2628) .dfcfw.com/js/pinzhong/bd_pz_side_ -# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina+easylist.txt: 2642) +# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina.txt: 2627) .dfcfw.com/js/.*/emfloatmedia_ -# ||dfad.dfdaily.com^ (easylistchina+easylist.txt: 2641) +# ||dfad.dfdaily.com^ (easylistchina.txt: 2626) .dfad.dfdaily.com -# ||deyangs.com/img/ (easylistchina+easylist.txt: 2640) +# ||deyangs.com/img/ (easylistchina.txt: 2625) .deyangs.com/img/ -# ||dexiazai.com/333.jpg (easylistchina+easylist.txt: 2639) +# ||dexiazai.com/333.jpg (easylistchina.txt: 2624) .dexiazai.com/333\.jpg -# ||dexiazai.com/222.jpg (easylistchina+easylist.txt: 2638) +# ||dexiazai.com/222.jpg (easylistchina.txt: 2623) .dexiazai.com/222\.jpg -# ||dexiazai.com/111.jpg (easylistchina+easylist.txt: 2637) +# ||dexiazai.com/111.jpg (easylistchina.txt: 2622) .dexiazai.com/111\.jpg -# ||der4545.com/ok/ (easylistchina+easylist.txt: 2636) +# ||der4545.com/ok/ (easylistchina.txt: 2621) .der4545.com/ok/ -# ||demo.528500.com^*.swf (easylistchina+easylist.txt: 2635) +# ||demo.528500.com^*.swf (easylistchina.txt: 2620) .demo.528500.com/.*\.swf -# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina+easylist.txt: 2634) +# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina.txt: 2619) .dealmoon.com/upload/dealmoon_app\.jpg -# ||dealmoon.com/images/n/creditcard-160.png (easylistchina+easylist.txt: 2633) +# ||dealmoon.com/images/n/creditcard-160.png (easylistchina.txt: 2618) .dealmoon.com/images/n/creditcard-160\.png -# ||dealmoon.com/hotdeals/ (easylistchina+easylist.txt: 2632) +# ||dealmoon.com/hotdeals/ (easylistchina.txt: 2617) .dealmoon.com/hotdeals/ -# ||dealmoon.com/data/app/banners/ (easylistchina+easylist.txt: 2631) +# ||dealmoon.com/data/app/banners/ (easylistchina.txt: 2616) .dealmoon.com/data/app/banners/ -# ||de.as.pptv.com^ (easylistchina+easylist.txt: 2630) +# ||de.as.pptv.com^ (easylistchina.txt: 2615) .de.as.pptv.com -# ||ddooo.com/viewimg.asp?img= (easylistchina+easylist.txt: 2629) +# ||ddooo.com/viewimg.asp?img= (easylistchina.txt: 2614) .ddooo.com/viewimg\.asp\?img= -# ||ddooo.com/js/ (easylistchina+easylist.txt: 2628) +# ||ddooo.com/js/ (easylistchina.txt: 2613) .ddooo.com/js/ -# ||ddooo.com/duoduo/ (easylistchina+easylist.txt: 2627) +# ||ddooo.com/duoduo/ (easylistchina.txt: 2612) .ddooo.com/duoduo/ -# ||ddooo.com/ddjs/ (easylistchina+easylist.txt: 2626) +# ||ddooo.com/ddjs/ (easylistchina.txt: 2611) .ddooo.com/ddjs/ -# ||ddheli.com/k.js (easylistchina+easylist.txt: 2625) +# ||ddheli.com/k.js (easylistchina.txt: 2610) .ddheli.com/k\.js -# ||ddata.over-blog.com^*.gif (easylistchina+easylist.txt: 2623) -.ddata.over-blog.com/.*\.gif -# ||dd.xdnice.com^ (easylistchina+easylist.txt: 2622) +# ||dd.xdnice.com^ (easylistchina.txt: 2608) .dd.xdnice.com -# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina+easylist.txt: 2621) +# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina.txt: 2607) .dclick.autonet.com.tw/90/AC_RunActiveContent\.js -# ||dcfever.com/campaigns/ (easylistchina+easylist.txt: 2620) +# ||dcfever.com/campaigns/ (easylistchina.txt: 2606) .dcfever.com/campaigns/ -# ||dbw.cn/js/cp.js (easylistchina+easylist.txt: 2619) +# ||dbw.cn/js/cp.js (easylistchina.txt: 2605) .dbw.cn/js/cp\.js -# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina+easylist.txt: 2618) +# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina.txt: 2604) .dbw.cn/eap/js/hl/hlj_ad -# ||dbw.cn/eap/js/db/dbwad_ (easylistchina+easylist.txt: 2617) +# ||dbw.cn/eap/js/db/dbwad_ (easylistchina.txt: 2603) .dbw.cn/eap/js/db/dbwad_ -# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina+easylist.txt: 2616) +# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina.txt: 2602) .dbw.cn/0/07/18/40/7184029_146090\.jpg -# ||db28.cn/cache/ads.js (easylistchina+easylist.txt: 2615) +# ||db28.cn/cache/ads.js (easylistchina.txt: 2601) .db28.cn/cache/ads\.js -# ||dashuye.com/data/cache/myad*.htm (easylistchina+easylist.txt: 2614) +# ||dashuye.com/data/cache/myad*.htm (easylistchina.txt: 2600) .dashuye.com/data/cache/myad.*\.htm -# ||dashi.com/static/images/root_banner.jpg (easylistchina+easylist.txt: 2613) +# ||dashi.com/static/images/root_banner.jpg (easylistchina.txt: 2599) .dashi.com/static/images/root_banner\.jpg -# ||dashi.com/static/images/old_phone.jpg (easylistchina+easylist.txt: 2612) +# ||dashi.com/static/images/old_phone.jpg (easylistchina.txt: 2598) .dashi.com/static/images/old_phone\.jpg -# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina+easylist.txt: 2611) +# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina.txt: 2597) .dashi.com/static/images/jiaocheng_ad\.jpg -# ||dasai8.com/js/duilianjs.js (easylistchina+easylist.txt: 2610) +# ||dasai8.com/js/duilianjs.js (easylistchina.txt: 2596) .dasai8.com/js/duilianjs\.js -# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina+easylist.txt: 2609) +# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina.txt: 2595) .daqianduan.com/wp-content/uploads/.*lagou -# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina+easylist.txt: 2608) +# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina.txt: 2594) .daqianduan.com/wp-content/uploads/.*/ads.*\.jpg -# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina+easylist.txt: 2607) +# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina.txt: 2593) .daqianduan.com/wp-content/uploads/.*/ad- -# ||daohangtx.com/jishudaohang/indextop.js (easylistchina+easylist.txt: 2606) +# ||daohangtx.com/jishudaohang/indextop.js (easylistchina.txt: 2592) .daohangtx.com/jishudaohang/indextop\.js -# ||danyang.com/statics/banner.swf (easylistchina+easylist.txt: 2605) +# ||danyang.com/statics/banner.swf (easylistchina.txt: 2591) .danyang.com/statics/banner\.swf -# ||danlan.org/KFC/ (easylistchina+easylist.txt: 2604) +# ||danlan.org/KFC/ (easylistchina.txt: 2590) .danlan.org/KFC/ -# ||daimabiji.com/images/17558/198zone.gif (easylistchina+easylist.txt: 2603) +# ||daimabiji.com/images/17558/198zone.gif (easylistchina.txt: 2589) .daimabiji.com/images/17558/198zone\.gif -# ||dailynews.sina.com/gb/ads/ (easylistchina+easylist.txt: 2602) +# ||dailynews.sina.com/gb/ads/ (easylistchina.txt: 2588) .dailynews.sina.com/gb/ads/ -# ||dailyfx.com.hk/ext/lang-ad (easylistchina+easylist.txt: 2601) +# ||dailyfx.com.hk/ext/lang-ad (easylistchina.txt: 2587) .dailyfx.com.hk/ext/lang-ad -# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina+easylist.txt: 2600) +# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina.txt: 2586) .dabin69.com/template/comiis_ydzx/ads/topad01\.jpg -# ||dabin69.com/data/attachment/portal/ (easylistchina+easylist.txt: 2599) +# ||dabin69.com/data/attachment/portal/ (easylistchina.txt: 2585) .dabin69.com/data/attachment/portal/ -# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina+easylist.txt: 2597) +# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina.txt: 2583) .da-fan-shu.cn/images/kuaijie\.jpg -# ||d7w.net/static/d7wad/ (easylistchina+easylist.txt: 2596) +# ||d7w.net/static/d7wad/ (easylistchina.txt: 2582) .d7w.net/static/d7wad/ -# ||d7ol.com/pics/ad/ (easylistchina+easylist.txt: 2595) +# ||d7ol.com/pics/ad/ (easylistchina.txt: 2581) .d7ol.com/pics/ad/ -# ||d1.shenchuang.com/a.htm (easylistchina+easylist.txt: 2588) +# ||d1.shenchuang.com/a.htm (easylistchina.txt: 2574) .d1.shenchuang.com/a\.htm -# ||d0.xcar.com.cn^ (easylistchina+easylist.txt: 2587) +# ||d0.xcar.com.cn^ (easylistchina.txt: 2573) .d0.xcar.com.cn -# ||d.taomato.com^ (easylistchina+easylist.txt: 2586) +# ||d.taomato.com^ (easylistchina.txt: 2572) .d.taomato.com -# ||d.pixiv.org/show?zone_id= (easylistchina+easylist.txt: 2585) +# ||d.pixiv.org/show?zone_id= (easylistchina.txt: 2571) .d.pixiv.org/show\?zone_id= -# ||d.39.net/a.htm? (easylistchina+easylist.txt: 2583) +# ||d.39.net/a.htm? (easylistchina.txt: 2569) .d.39.net/a\.htm\? -# ||d.107788.com^ (easylistchina+easylist.txt: 2582) +# ||d.107788.com^ (easylistchina.txt: 2568) .d.107788.com -# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina+easylist.txt: 2581) +# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina.txt: 2567) .cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6\.jpg -# ||cyzone.cn^*/js/m.js (easylistchina+easylist.txt: 2580) +# ||cyzone.cn^*/js/m.js (easylistchina.txt: 2566) .cyzone.cn/.*/js/m\.js -# ||cye.com.cn/JS/AdsJS/ (easylistchina+easylist.txt: 2579) +# ||cye.com.cn/JS/AdsJS/ (easylistchina.txt: 2565) .cye.com.cn/JS/AdsJS/ -# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina+easylist.txt: 2578) +# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina.txt: 2564) .cxzyw.com/upload/1/148966/images/.*\.gif -# ||cww.net.cn/UpLoadFile/*.swf (easylistchina+easylist.txt: 2577) +# ||cww.net.cn/UpLoadFile/*.swf (easylistchina.txt: 2563) .cww.net.cn/UpLoadFile/.*\.swf -# ||cww.net.cn/include/show.asp?boardID= (easylistchina+easylist.txt: 2576) +# ||cww.net.cn/include/show.asp?boardID= (easylistchina.txt: 2562) .cww.net.cn/include/show\.asp\?boardID= -# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina+easylist.txt: 2575) +# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina.txt: 2561) .cwan.com/templets/webgame/misc/js/indextip\.js -# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina+easylist.txt: 2574) +# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina.txt: 2560) .cwan.com/templets/shouye/misc/js/suspend\.js -# ||cunbt.com/images/*.gif (easylistchina+easylist.txt: 2573) -.cunbt.com/images/.*\.gif -# ||ctrip.com/amd/*960x90. (easylistchina+easylist.txt: 2572) +# ||ctrip.com/amd/*960x90. (easylistchina.txt: 2559) .ctrip.com/amd/.*960x90\. -# ||ctpan.com/vip.js (easylistchina+easylist.txt: 2571) +# ||ctpan.com/vip.js (easylistchina.txt: 2558) .ctpan.com/vip\.js -# ||ctpan.com/statics/js/adt (easylistchina+easylist.txt: 2570) +# ||ctpan.com/statics/js/adt (easylistchina.txt: 2557) .ctpan.com/statics/js/adt -# ||ctpan.com/cp (easylistchina+easylist.txt: 2569) +# ||ctpan.com/cp (easylistchina.txt: 2556) .ctpan.com/cp -# ||csdn.net/sda/Topic (easylistchina+easylist.txt: 2568) +# ||csdn.net/sda/Topic (easylistchina.txt: 2555) .csdn.net/sda/Topic -# ||csdn.net/msg.popup.js (easylistchina+easylist.txt: 2567) +# ||csdn.net/msg.popup.js (easylistchina.txt: 2554) .csdn.net/msg\.popup\.js -# ||csdn.net/ggmm/ (easylistchina+easylist.txt: 2566) +# ||csdn.net/ggmm/ (easylistchina.txt: 2553) .csdn.net/ggmm/ -# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina+easylist.txt: 2565) +# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina.txt: 2552) .csai.cn/xiaohua/js/xiaohua\.js -# ||cs360.cn/js/search_zcw.js (easylistchina+easylist.txt: 2564) +# ||cs360.cn/js/search_zcw.js (easylistchina.txt: 2551) .cs360.cn/js/search_zcw\.js -# ||cs.com.cn/csad/ (easylistchina+easylist.txt: 2563) +# ||cs.com.cn/csad/ (easylistchina.txt: 2550) .cs.com.cn/csad/ -# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina+easylist.txt: 2562) +# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina.txt: 2549) .creativetop.com/cn/pic/laogu_adv\.gif -# ||creaders.net*/ad_func.js (easylistchina+easylist.txt: 2561) +# ||creaders.net*/ad_func.js (easylistchina.txt: 2548) .creaders.net*./(.*/)?ad_func\.js -# ||cr173.com/show/ (easylistchina+easylist.txt: 2560) +# ||cr173.com/show/ (easylistchina.txt: 2547) .cr173.com/show/ -# ||cr173.com/js/ (easylistchina+easylist.txt: 2559) +# ||cr173.com/js/ (easylistchina.txt: 2546) .cr173.com/js/ -# ||cqwb.com.cn/skin/ggimages/ (easylistchina+easylist.txt: 2558) +# ||cqwb.com.cn/skin/ggimages/ (easylistchina.txt: 2545) .cqwb.com.cn/skin/ggimages/ -# ||cqvip.com/viewserver/ViewAD (easylistchina+easylist.txt: 2557) +# ||cqvip.com/viewserver/ViewAD (easylistchina.txt: 2544) .cqvip.com/viewserver/ViewAD -# ||cqnews.net:8080/vplayerAdv/ (easylistchina+easylist.txt: 2556) +# ||cqnews.net:8080/vplayerAdv/ (easylistchina.txt: 2543) .cqnews.net:8080/vplayerAdv/ -# ||cqfishing.net/data/attachment/portal/ (easylistchina+easylist.txt: 2555) +# ||cqfishing.net/data/attachment/portal/ (easylistchina.txt: 2542) .cqfishing.net/data/attachment/portal/ -# ||cps.okbuy.com^ (easylistchina+easylist.txt: 2554) +# ||cps.okbuy.com^ (easylistchina.txt: 2541) .cps.okbuy.com -# ||cpplay.com/inc/ (easylistchina+easylist.txt: 2553) +# ||cpplay.com/inc/ (easylistchina.txt: 2540) .cpplay.com/inc/ -# ||cp126.com/img/ad0 (easylistchina+easylist.txt: 2552) +# ||cpbl-elta.cdn.hinet.net/web/images/beer.jpg (easylistchina.txt: 2539) +.cpbl-elta.cdn.hinet.net/web/images/beer\.jpg +# ||cpbl-elta.cdn.hinet.net/web/images/ad_ (easylistchina.txt: 2538) +.cpbl-elta.cdn.hinet.net/web/images/ad_ +# ||cp126.com/img/ad0 (easylistchina.txt: 2537) .cp126.com/img/ad0 -# ||cp126.com/888zr11.gif (easylistchina+easylist.txt: 2551) +# ||cp126.com/888zr11.gif (easylistchina.txt: 2536) .cp126.com/888zr11\.gif -# ||cp.ifeng.com/iframe/getiframe (easylistchina+easylist.txt: 2550) +# ||cp.ifeng.com/iframe/getiframe (easylistchina.txt: 2535) .cp.ifeng.com/iframe/getiframe -# ||cosersuki.org^*/AD (easylistchina+easylist.txt: 2549) -.cosersuki.org/.*/AD -# ||cosersuki.org^*/150x600 (easylistchina+easylist.txt: 2548) -.cosersuki.org/.*/150x600 -# ||cosersuki.org/2013/03/20140515091120.jpg (easylistchina+easylist.txt: 2547) -.cosersuki.org/2013/03/20140515091120\.jpg -# ||cooltu.com/mp/ (easylistchina+easylist.txt: 2546) +# ||cooltu.com/mp/ (easylistchina.txt: 2534) .cooltu.com/mp/ -# ||coolaler.com.tw^*_340x80. (easylistchina+easylist.txt: 2545) +# ||coolaler.com.tw^*_340x80. (easylistchina.txt: 2533) .coolaler.com.tw/.*_340x80\. -# ||coolaler.com.tw^*_300x100. (easylistchina+easylist.txt: 2544) +# ||coolaler.com.tw^*_300x100. (easylistchina.txt: 2532) .coolaler.com.tw/.*_300x100\. -# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina+easylist.txt: 2543) +# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina.txt: 2531) .cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ -# ||comment.bjcnc.img.sohucs.com/*_gif (easylistchina+easylist.txt: 2541) -.comment.bjcnc.img.sohucs.com/.*_gif -# ||com.webmasterhome.cn/a1- (easylistchina+easylist.txt: 2540) +# ||com.webmasterhome.cn/a1- (easylistchina.txt: 2529) .com.webmasterhome.cn/a1- -# ||colayun.com/cola3/newdown/join.png (easylistchina+easylist.txt: 2539) +# ||colayun.com/cola3/newdown/join.png (easylistchina.txt: 2528) .colayun.com/cola3/newdown/join\.png -# ||coladrive.com/cola3/newdown/join.png (easylistchina+easylist.txt: 2538) +# ||coladrive.com/cola3/newdown/join.png (easylistchina.txt: 2527) .coladrive.com/cola3/newdown/join\.png -# ||codepub.com/wuse/pic/ (easylistchina+easylist.txt: 2537) +# ||codepub.com/wuse/pic/ (easylistchina.txt: 2526) .codepub.com/wuse/pic/ -# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina+easylist.txt: 2536) +# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina.txt: 2525) .codepub.com/file/code/20141225/142856140\.jpg -# ||codeforge.cn/images/banner.gif (easylistchina+easylist.txt: 2535) +# ||codeforge.cn/images/banner.gif (easylistchina.txt: 2524) .codeforge.cn/images/banner\.gif -# ||cococomic.com/g/ (easylistchina+easylist.txt: 2534) +# ||cococomic.com/g/ (easylistchina.txt: 2523) .cococomic.com/g/ -# ||cnzzla.com/public/scripts/money.js (easylistchina+easylist.txt: 2533) +# ||cnzzla.com/public/scripts/money.js (easylistchina.txt: 2522) .cnzzla.com/public/scripts/money\.js -# ||cnzol.com/template/style/images/wlfloat.js (easylistchina+easylist.txt: 2531) +# ||cnzol.com/template/style/images/wlfloat.js (easylistchina.txt: 2520) .cnzol.com/template/style/images/wlfloat\.js -# ||cnzol.com/template/style/images/lcdl.js (easylistchina+easylist.txt: 2530) +# ||cnzol.com/template/style/images/lcdl.js (easylistchina.txt: 2519) .cnzol.com/template/style/images/lcdl\.js -# ||cnzol.com/page/ (easylistchina+easylist.txt: 2529) +# ||cnzol.com/page/ (easylistchina.txt: 2518) .cnzol.com/page/ -# ||cnwnews.com/gg200903/nrzs.js (easylistchina+easylist.txt: 2528) +# ||cnwnews.com/gg200903/nrzs.js (easylistchina.txt: 2517) .cnwnews.com/gg200903/nrzs\.js -# ||cnwnews.com/gg200903/nry02.js (easylistchina+easylist.txt: 2527) +# ||cnwnews.com/gg200903/nry02.js (easylistchina.txt: 2516) .cnwnews.com/gg200903/nry02\.js -# ||cntvboxnow.com//ads_ (easylistchina+easylist.txt: 2526) -# ||cntv.cn/hezuo/ (easylistchina+easylist.txt: 2525) +# ||cntvboxnow.com//ads_ (easylistchina.txt: 2515) +# ||cntv.cn/hezuo/ (easylistchina.txt: 2514) .cntv.cn/hezuo/ -# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina+easylist.txt: 2524) +# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina.txt: 2513) .cnstock.com/image/201511/26/20151126105158298\.jpg -# ||cnsofas.com/loldytt/js/ (easylistchina+easylist.txt: 2523) +# ||cnsofas.com/loldytt/js/ (easylistchina.txt: 2512) .cnsofas.com/loldytt/js/ -# ||cnsat.net/Pictuer/ (easylistchina+easylist.txt: 2522) +# ||cnsat.net/Pictuer/ (easylistchina.txt: 2511) .cnsat.net/Pictuer/ -# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina+easylist.txt: 2521) +# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina.txt: 2510) .cnr.cn/cnrxwph/iframe/tpdy/ -# ||cnnb.com.cn/images/14ny_1.gif (easylistchina+easylist.txt: 2520) +# ||cnnb.com.cn/images/14ny_1.gif (easylistchina.txt: 2509) .cnnb.com.cn/images/14ny_1\.gif -# ||cnnb.com.cn/image/xhhc71.gif (easylistchina+easylist.txt: 2519) +# ||cnnb.com.cn/image/xhhc71.gif (easylistchina.txt: 2508) .cnnb.com.cn/image/xhhc71\.gif -# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina+easylist.txt: 2518) +# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina.txt: 2507) .cnmoad.com/wp-content/uploads/2015/02/lomark_banner\.png -# ||cnmo-img.com.cn/oddjs/ (easylistchina+easylist.txt: 2517) +# ||cnmo-img.com.cn/oddjs/ (easylistchina.txt: 2506) .cnmo-img.com.cn/oddjs/ -# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina+easylist.txt: 2516) -# ||cnkang.com/zixun/nanke/ (easylistchina+easylist.txt: 2515) +# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina.txt: 2505) +# ||cnkang.com/zixun/nanke/ (easylistchina.txt: 2504) .cnkang.com/zixun/nanke/ -# ||cnkang.com/images/sy (easylistchina+easylist.txt: 2514) +# ||cnkang.com/images/sy (easylistchina.txt: 2503) .cnkang.com/images/sy -# ||cnkang.com/images/*756.jpg (easylistchina+easylist.txt: 2513) +# ||cnkang.com/images/*756.jpg (easylistchina.txt: 2502) .cnkang.com/images/.*756\.jpg -# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina+easylist.txt: 2512) +# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina.txt: 2501) .cnkang.com/cs/images0410/fengxiong\.jpg -# ||cnjxol.com/include/2011/index/js/index.js (easylistchina+easylist.txt: 2511) +# ||cnjxol.com/include/2011/index/js/index.js (easylistchina.txt: 2500) .cnjxol.com/include/2011/index/js/index\.js -# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina+easylist.txt: 2510) +# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina.txt: 2499) .cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414\.swf -# ||cnjxol.com/*.files/sian.gif (easylistchina+easylist.txt: 2509) +# ||cnjxol.com/*.files/sian.gif (easylistchina.txt: 2498) .cnjxol.com/.*\.files/sian\.gif -# ||cnhubei.com*/g2 (easylistchina+easylist.txt: 2508) +# ||cnhubei.com*/g2 (easylistchina.txt: 2497) .cnhubei.com*./(.*/)?g2 -# ||cngsf.com/images/336_280.gif (easylistchina+easylist.txt: 2507) +# ||cngsf.com/images/336_280.gif (easylistchina.txt: 2496) .cngsf.com/images/336_280\.gif -# ||cngsf.com/baidu.htm (easylistchina+easylist.txt: 2506) +# ||cngsf.com/baidu.htm (easylistchina.txt: 2495) .cngsf.com/baidu\.htm -# ||cngoldres.com/advservice/ (easylistchina+easylist.txt: 2505) +# ||cngoldres.com/advservice/ (easylistchina.txt: 2494) .cngoldres.com/advservice/ -# ||cndesign.com/img/1200x100.jpg (easylistchina+easylist.txt: 2504) +# ||cndesign.com/img/1200x100.jpg (easylistchina.txt: 2493) .cndesign.com/img/1200x100\.jpg -# ||cndesign.com/Content/img/356x80_ (easylistchina+easylist.txt: 2503) +# ||cndesign.com/Content/img/356x80_ (easylistchina.txt: 2492) .cndesign.com/Content/img/356x80_ -# ||cndesign.com/Content/img/175x60_ (easylistchina+easylist.txt: 2502) +# ||cndesign.com/Content/img/175x60_ (easylistchina.txt: 2491) .cndesign.com/Content/img/175x60_ -# ||cndesign.com/Content/img/*x90_ (easylistchina+easylist.txt: 2501) +# ||cndesign.com/Content/img/*x90_ (easylistchina.txt: 2490) .cndesign.com/Content/img/.*x90_ -# ||cncrk.com/505/ (easylistchina+easylist.txt: 2500) +# ||cncrk.com/505/ (easylistchina.txt: 2489) .cncrk.com/505/ -# ||cnchu.com/aps/ (easylistchina+easylist.txt: 2499) +# ||cnchu.com/aps/ (easylistchina.txt: 2488) .cnchu.com/aps/ -# ||cnbetacdn.com/banner (easylistchina+easylist.txt: 2498) +# ||cnbetacdn.com/banner (easylistchina.txt: 2487) .cnbetacdn.com/banner -# ||cnbeta.com/jobs/list_? (easylistchina+easylist.txt: 2497) +# ||cnbetacdn.com/320-50. (easylistchina.txt: 2486) +.cnbetacdn.com/320-50\. +# ||cnbeta.com/jobs/list_? (easylistchina.txt: 2485) .cnbeta.com/jobs/list_\? -# ||cnbeta.com/assets/js/pages/google.js (easylistchina+easylist.txt: 2496) +# ||cnbeta.com/assets/js/pages/google.js (easylistchina.txt: 2484) .cnbeta.com/assets/js/pages/google\.js -# ||cnbeta.com/assets/images/*_670_90. (easylistchina+easylist.txt: 2495) +# ||cnbeta.com/assets/images/*_670_90. (easylistchina.txt: 2483) .cnbeta.com/assets/images/.*_670_90\. -# ||cna5.net/skins/js/ (easylistchina+easylist.txt: 2494) +# ||cna5.net/skins/js/ (easylistchina.txt: 2482) .cna5.net/skins/js/ -# ||cmhello.com/2015/10/hc.jpg (easylistchina+easylist.txt: 2492) +# ||cmhello.com/2015/10/hc.jpg (easylistchina.txt: 2480) .cmhello.com/2015/10/hc\.jpg -# ||clouddn.com/960x60.gif (easylistchina+easylist.txt: 2490) +# ||clouddn.com/960x60.gif (easylistchina.txt: 2478) .clouddn.com/960x60\.gif -# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina+easylist.txt: 2489) +# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina.txt: 2477) .clm02.com/2014-A/FB-6-14-AA1\.jpg -# ||cjn.cn^*/ad/ (easylistchina+easylist.txt: 2488) +# ||cjn.cn^*/ad/ (easylistchina.txt: 2476) .cjn.cn/.*/ad/ -# ||citysbs.com^*swf (easylistchina+easylist.txt: 2485) +# ||citysbs.com^*swf (easylistchina.txt: 2473) .citysbs.com/.*swf -# ||citysbs.com/no/*/980x (easylistchina+easylist.txt: 2484) +# ||citysbs.com/no/*/980x (easylistchina.txt: 2472) .citysbs.com/no/.*/980x -# ||citysbs.com/no/*/800x90- (easylistchina+easylist.txt: 2483) +# ||citysbs.com/no/*/800x90- (easylistchina.txt: 2471) .citysbs.com/no/.*/800x90- -# ||citysbs.com/no/*/650x50- (easylistchina+easylist.txt: 2482) +# ||citysbs.com/no/*/650x50- (easylistchina.txt: 2470) .citysbs.com/no/.*/650x50- -# ||citysbs.com/no/*/1190x60- (easylistchina+easylist.txt: 2481) +# ||citysbs.com/no/*/1190x60- (easylistchina.txt: 2469) .citysbs.com/no/.*/1190x60- -# ||citysbs.com/chongqing/*/1920x179- (easylistchina+easylist.txt: 2480) +# ||citysbs.com/chongqing/*/1920x179- (easylistchina.txt: 2468) .citysbs.com/chongqing/.*/1920x179- -# ||cishuge.com/static/js/xiaoshuo.js (easylistchina+easylist.txt: 2479) +# ||cishuge.com/static/js/xiaoshuo.js (easylistchina.txt: 2467) .cishuge.com/static/js/xiaoshuo\.js -# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina+easylist.txt: 2478) +# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina.txt: 2466) .cilook.net/cilookinc/isee5_950x60\.gif -# ||chunxiao.tv/1.aspx (easylistchina+easylist.txt: 2477) +# ||chunxiao.tv/1.aspx (easylistchina.txt: 2465) .chunxiao.tv/1\.aspx -# ||chuixue.com/template/*/images/g_js/show_ (easylistchina+easylist.txt: 2476) +# ||chuixue.com/template/*/images/g_js/show_ (easylistchina.txt: 2464) .chuixue.com/template/.*/images/g_js/show_ -# ||chuixue.com/jsa/ (easylistchina+easylist.txt: 2475) +# ||chuixue.com/jsa/ (easylistchina.txt: 2463) .chuixue.com/jsa/ -# ||chubun.com/images/banners/ (easylistchina+easylist.txt: 2474) +# ||chubun.com/images/banners/ (easylistchina.txt: 2462) .chubun.com/images/banners/ -# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina+easylist.txt: 2473) +# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina.txt: 2460) .chuangshi.qq.com/upload/cmsv2/Banner/ -# ||chrome007.com/images/goodxxxx.jpg (easylistchina+easylist.txt: 2472) +# ||chrome007.com/images/goodxxxx.jpg (easylistchina.txt: 2459) .chrome007.com/images/goodxxxx\.jpg -# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina+easylist.txt: 2471) +# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina.txt: 2458) .chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ -# ||chiphell.com/activity/ (easylistchina+easylist.txt: 2470) +# ||chosun.com/images/banner/ (easylistchina.txt: 2457) +.chosun.com/images/banner/ +# ||chiphell.com/activity/ (easylistchina.txt: 2456) .chiphell.com/activity/ -# ||chinaz.com/temp_upfile/ads/ (easylistchina+easylist.txt: 2469) +# ||chinaz.com/temp_upfile/ads/ (easylistchina.txt: 2455) .chinaz.com/temp_upfile/ads/ -# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina+easylist.txt: 2468) +# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina.txt: 2454) .chinaz.com/site_view/alexa_ad\.jpg -# ||chinaz.com/site_view/2z.cn.gif (easylistchina+easylist.txt: 2467) +# ||chinaz.com/site_view/2z.cn.gif (easylistchina.txt: 2453) .chinaz.com/site_view/2z\.cn\.gif -# ||chinaz.com/newshome/ (easylistchina+easylist.txt: 2466) +# ||chinaz.com/newshome/ (easylistchina.txt: 2452) .chinaz.com/newshome/ -# ||chinaz.com/ip_gadsense.js (easylistchina+easylist.txt: 2465) +# ||chinaz.com/ip_gadsense.js (easylistchina.txt: 2451) .chinaz.com/ip_gadsense\.js -# ||chinaz.com/imagead/ (easylistchina+easylist.txt: 2464) +# ||chinaz.com/imagead/ (easylistchina.txt: 2450) .chinaz.com/imagead/ -# ||chinaz.com/alexa/wz.js (easylistchina+easylist.txt: 2463) +# ||chinaz.com/alexa/wz.js (easylistchina.txt: 2449) .chinaz.com/alexa/wz\.js -# ||chinaz.com/alexa/word3.htm (easylistchina+easylist.txt: 2462) +# ||chinaz.com/alexa/word3.htm (easylistchina.txt: 2448) .chinaz.com/alexa/word3\.htm -# ||chinaz.com/alexa/pic.js (easylistchina+easylist.txt: 2461) +# ||chinaz.com/alexa/pic.js (easylistchina.txt: 2447) .chinaz.com/alexa/pic\.js -# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina+easylist.txt: 2460) +# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina.txt: 2446) .chinaz.com/2015/0113/1421112175579\.jpg -# ||chinaz.com/2011code_images/topright.js (easylistchina+easylist.txt: 2459) +# ||chinaz.com/2011code_images/topright.js (easylistchina.txt: 2445) .chinaz.com/2011code_images/topright\.js -# ||chinaz.com/2011code_images/soft (easylistchina+easylist.txt: 2458) +# ||chinaz.com/2011code_images/soft (easylistchina.txt: 2444) .chinaz.com/2011code_images/soft -# ||chinaz.com/2011code_images/A_ (easylistchina+easylist.txt: 2457) +# ||chinaz.com/2011code_images/A_ (easylistchina.txt: 2443) .chinaz.com/2011code_images/A_ -# ||chinayes.com/Include%5Cad%5C (easylistchina+easylist.txt: 2456) +# ||chinayes.com/Include%5Cad%5C (easylistchina.txt: 2442) .chinayes.com/Include%5Cad%5C -# ||chinawmrc.com/images/end.js (easylistchina+easylist.txt: 2455) +# ||chinawmrc.com/images/end.js (easylistchina.txt: 2441) .chinawmrc.com/images/end\.js -# ||chinatimes.com/Scripts/onead_ (easylistchina+easylist.txt: 2454) +# ||chinatimes.com/Scripts/onead_ (easylistchina.txt: 2440) .chinatimes.com/Scripts/onead_ -# ||chinatimes.com/Scripts/bennerad. (easylistchina+easylist.txt: 2453) +# ||chinatimes.com/Scripts/bennerad. (easylistchina.txt: 2439) .chinatimes.com/Scripts/bennerad\. -# ||chinatimes.com/ads/forums/carouselad.js (easylistchina+easylist.txt: 2452) +# ||chinatimes.com/ads/forums/carouselad.js (easylistchina.txt: 2438) .chinatimes.com/ads/forums/carouselad\.js -# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina+easylist.txt: 2451) +# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina.txt: 2437) .chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo\.js -# ||chinatimes.com/2007Cti/ (easylistchina+easylist.txt: 2450) +# ||chinatimes.com/2007Cti/ (easylistchina.txt: 2436) .chinatimes.com/2007Cti/ -# ||chinaso.com/iframe336/ (easylistchina+easylist.txt: 2449) +# ||chinaso.com/iframe336/ (easylistchina.txt: 2435) .chinaso.com/iframe336/ -# ||chinasexq.com/js/ad (easylistchina+easylist.txt: 2448) +# ||chinasexq.com/js/ad (easylistchina.txt: 2434) .chinasexq.com/js/ad -# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina+easylist.txt: 2447) +# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina.txt: 2433) .chinaqking.com/userUpload/jobApply2\.jpg -# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina+easylist.txt: 2446) +# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina.txt: 2432) .chinaqking.com/images/qkw/jobApply1\.jpg -# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina+easylist.txt: 2445) +# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina.txt: 2431) .chinaqking.com/images/newPage/zhaopin\.jpg -# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina+easylist.txt: 2444) +# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina.txt: 2430) .chinaqking.com/images/newPage/JLW\.jpg -# ||chinanews.com/shipin/sptp.xml (easylistchina+easylist.txt: 2443) +# ||chinanews.com/shipin/sptp.xml (easylistchina.txt: 2429) .chinanews.com/shipin/sptp\.xml -# ||chinanews.com/images/images/Sadv (easylistchina+easylist.txt: 2442) +# ||chinanews.com/images/images/Sadv (easylistchina.txt: 2428) .chinanews.com/images/images/Sadv -# ||chinanews.com/images/*/gaobang. (easylistchina+easylist.txt: 2441) +# ||chinanews.com/images/*/gaobang. (easylistchina.txt: 2427) .chinanews.com/images/.*/gaobang\. -# ||chinanews.com.cn/ad2015/ (easylistchina+easylist.txt: 2440) +# ||chinanews.com.cn/ad2015/ (easylistchina.txt: 2426) .chinanews.com.cn/ad2015/ -# ||chinairn.com/images3/*ads (easylistchina+easylist.txt: 2439) +# ||chinairn.com/images3/*ads (easylistchina.txt: 2425) .chinairn.com/images3/.*ads -# ||chinaiiss.com/js/function.ad.js (easylistchina+easylist.txt: 2438) +# ||chinaiiss.com/js/function.ad.js (easylistchina.txt: 2424) .chinaiiss.com/js/function\.ad\.js -# ||chinaiiss.com/js/float.js (easylistchina+easylist.txt: 2437) +# ||chinaiiss.com/js/float.js (easylistchina.txt: 2423) .chinaiiss.com/js/float\.js -# ||chinaiiss.com/images/jianyu_erweima (easylistchina+easylist.txt: 2436) +# ||chinaiiss.com/images/jianyu_erweima (easylistchina.txt: 2422) .chinaiiss.com/images/jianyu_erweima -# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina+easylist.txt: 2435) +# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina.txt: 2421) .chinaiiss.com/attachment/linkimg/201306/19/142826_845\.jpg -# ||chinafpd.net/js/2012-10/ (easylistchina+easylist.txt: 2434) +# ||chinafpd.net/js/2012-10/ (easylistchina.txt: 2420) .chinafpd.net/js/2012-10/ -# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina+easylist.txt: 2433) +# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina.txt: 2419) .chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13\.jpg -# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina+easylist.txt: 2432) +# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina.txt: 2418) .chinadaily.com.cn/micro-reading/dzh/bd-taofang\.gif -# ||chinachugui.com/jsfiles/aods/ (easylistchina+easylist.txt: 2431) +# ||chinachugui.com/jsfiles/aods/ (easylistchina.txt: 2417) .chinachugui.com/jsfiles/aods/ -# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina+easylist.txt: 2430) +# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina.txt: 2416) .chinacar.com.cn/zhuanyongche/images/wintip_ -# ||chinaacc.com/lamu/dl- (easylistchina+easylist.txt: 2427) +# ||chinaacc.com/lamu/dl- (easylistchina.txt: 2413) .chinaacc.com/lamu/dl- -# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina+easylist.txt: 2426) +# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina.txt: 2412) .china.com/zh_cn/plugin/all/hezuo360/ -# ||china.com/zh_cn/etc/gghead (easylistchina+easylist.txt: 2425) +# ||china.com/zh_cn/etc/gghead (easylistchina.txt: 2411) .china.com/zh_cn/etc/gghead -# ||china.com/zh_cn/ads/ (easylistchina+easylist.txt: 2424) +# ||china.com/zh_cn/ads/ (easylistchina.txt: 2410) .china.com/zh_cn/ads/ -# ||china.com/jsfiles/gotopgg/ (easylistchina+easylist.txt: 2423) +# ||china.com/jsfiles/gotopgg/ (easylistchina.txt: 2409) .china.com/jsfiles/gotopgg/ -# ||china.com.cn/youxi.swf (easylistchina+easylist.txt: 2422) +# ||china.com.cn/youxi.swf (easylistchina.txt: 2408) .china.com.cn/youxi\.swf -# ||china.com.cn/statics/js/js_vag/ (easylistchina+easylist.txt: 2421) +# ||china.com.cn/statics/js/js_vag/ (easylistchina.txt: 2407) .china.com.cn/statics/js/js_vag/ -# ||china.com.cn/food/node_7094923.htm (easylistchina+easylist.txt: 2420) +# ||china.com.cn/food/node_7094923.htm (easylistchina.txt: 2406) .china.com.cn/food/node_7094923\.htm -# ||china.com.cn/2015ads/ (easylistchina+easylist.txt: 2419) +# ||china.com.cn/2015ads/ (easylistchina.txt: 2405) .china.com.cn/2015ads/ -# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina+easylist.txt: 2418) +# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina.txt: 2404) .china.cn/images1/ch/2014first/20140422gq\.js -# ||china.chemnet.com/cnbanner/ (easylistchina+easylist.txt: 2417) +# ||china.chemnet.com/cnbanner/ (easylistchina.txt: 2403) .china.chemnet.com/cnbanner/ -# ||chidir.com^ (easylistchina+easylist.txt: 2416) +# ||chidir.com^ (easylistchina.txt: 2402) .chidir.com -# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina+easylist.txt: 2415) +# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina.txt: 2401) .chewen.com/pics/2013/09/13/02013091317191365\.jpg -# ||chengruide.com/js/union_junshiqu.js (easylistchina+easylist.txt: 2414) +# ||chengruide.com/js/union_junshiqu.js (easylistchina.txt: 2400) .chengruide.com/js/union_junshiqu\.js -# ||chemnet.com/js/float_div.js (easylistchina+easylist.txt: 2413) +# ||chemnet.com/js/float_div.js (easylistchina.txt: 2399) .chemnet.com/js/float_div\.js -# ||cheers.com.tw/js-lib/fancybox/ (easylistchina+easylist.txt: 2412) +# ||cheers.com.tw/js-lib/fancybox/ (easylistchina.txt: 2398) .cheers.com.tw/js-lib/fancybox/ -# ||chddh.com*/A*D/ (easylistchina+easylist.txt: 2411) +# ||chddh.com*/A*D/ (easylistchina.txt: 2397) .chddh.com*./(.*/)?A.*D/ -# ||chcj.net/comiis_ad/ (easylistchina+easylist.txt: 2410) +# ||chcj.net/comiis_ad/ (easylistchina.txt: 2396) .chcj.net/comiis_ad/ -# ||chaling.cn/images/*.gif (easylistchina+easylist.txt: 2409) +# ||chaling.cn/images/*.gif (easylistchina.txt: 2395) .chaling.cn/images/.*\.gif -# ||chaling.cn/data/attachment/portal/ (easylistchina+easylist.txt: 2408) +# ||chaling.cn/data/attachment/portal/ (easylistchina.txt: 2394) .chaling.cn/data/attachment/portal/ -# ||chakd.com/images/xitie160x60.gif (easylistchina+easylist.txt: 2407) +# ||chakd.com/images/xitie160x60.gif (easylistchina.txt: 2393) .chakd.com/images/xitie160x60\.gif -# ||cfanclub.net/lmimages/yinsub.gif (easylistchina+easylist.txt: 2406) +# ||cfanclub.net/lmimages/yinsub.gif (easylistchina.txt: 2392) .cfanclub.net/lmimages/yinsub\.gif -# ||centoscn.com/money/ (easylistchina+easylist.txt: 2405) +# ||centoscn.com/money/ (easylistchina.txt: 2391) .centoscn.com/money/ -# ||cdyee.com/external/5070.files/ad/ (easylistchina+easylist.txt: 2404) +# ||cdyee.com/external/5070.files/ad/ (easylistchina.txt: 2390) .cdyee.com/external/5070\.files/ad/ -# ||cdndm.com^*/js/newtc.js (easylistchina+easylist.txt: 2403) +# ||cdndm.com^*/js/newtc.js (easylistchina.txt: 2389) .cdndm.com/.*/js/newtc\.js -# ||cdn.wdlm.cn^ (easylistchina+easylist.txt: 2401) +# ||cdn.wdlm.cn^ (easylistchina.txt: 2387) .cdn.wdlm.cn -# ||cdn.shdsp.net/ad (easylistchina+easylist.txt: 2400) +# ||cdn.shdsp.net/ad (easylistchina.txt: 2386) .cdn.shdsp.net/ad -# ||cdn.galacg.me/img/*.jpg (easylistchina+easylist.txt: 2399) +# ||cdn.galacg.me/img/*.jpg (easylistchina.txt: 2385) .cdn.galacg.me/img/.*\.jpg -# ||cdn.galacg.me/img/*.gif (easylistchina+easylist.txt: 2398) +# ||cdn.galacg.me/img/*.gif (easylistchina.txt: 2384) .cdn.galacg.me/img/.*\.gif -# ||cdn.dfile.cn/slot/ (easylistchina+easylist.txt: 2397) +# ||cdn.dfile.cn/slot/ (easylistchina.txt: 2383) .cdn.dfile.cn/slot/ -# ||ccwzz.cc/dmf.js (easylistchina+easylist.txt: 2396) +# ||ccwzz.cc/dmf.js (easylistchina.txt: 2382) .ccwzz.cc/dmf\.js -# ||ccvcd.com/images/ (easylistchina+easylist.txt: 2395) +# ||ccvcd.com/images/ (easylistchina.txt: 2381) .ccvcd.com/images/ -# ||cctv5.name/js/*foot.js (easylistchina+easylist.txt: 2394) +# ||cctv5.name/js/*foot.js (easylistchina.txt: 2380) .cctv5.name/js/.*foot\.js -# ||cctv5.name/data/js/ (easylistchina+easylist.txt: 2393) +# ||cctv5.name/data/js/ (easylistchina.txt: 2379) .cctv5.name/data/js/ -# ||cctv.com/Library/a2.js (easylistchina+easylist.txt: 2392) +# ||cctv.com/Library/a2.js (easylistchina.txt: 2378) .cctv.com/Library/a2\.js -# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina+easylist.txt: 2391) +# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina.txt: 2377) .cctime.com/UpLoadFile/2012/11/7/201211733483705\.gif -# ||ccoo.cn/js/dlv*.js (easylistchina+easylist.txt: 2388) +# ||ccoo.cn/js/dlv*.js (easylistchina.txt: 2374) .ccoo.cn/js/dlv.*\.js -# ||ccidnet.com/nav/dia_ (easylistchina+easylist.txt: 2387) +# ||ccidnet.com/nav/dia_ (easylistchina.txt: 2373) .ccidnet.com/nav/dia_ -# ||cccdv.com/js/*0- (easylistchina+easylist.txt: 2386) +# ||cccdv.com/js/*0- (easylistchina.txt: 2372) .cccdv.com/js/.*0- -# ||ccb.com.cn/V5/images5/right0.gif (easylistchina+easylist.txt: 2385) +# ||ccb.com.cn/V5/images5/right0.gif (easylistchina.txt: 2371) .ccb.com.cn/V5/images5/right0\.gif -# ||ccb.com.cn/V5/images5/left0.gif (easylistchina+easylist.txt: 2384) +# ||ccb.com.cn/V5/images5/left0.gif (easylistchina.txt: 2370) .ccb.com.cn/V5/images5/left0\.gif -# ||ccav1.me/block.js (easylistchina+easylist.txt: 2383) +# ||ccav1.me/block.js (easylistchina.txt: 2369) .ccav1.me/block\.js -# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina+easylist.txt: 2382) +# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina.txt: 2368) .ccav1.com/wp-content/uploads/an-temp/ -# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina+easylist.txt: 2381) +# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina.txt: 2367) .ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao\.jpg -# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina+easylist.txt: 2380) +# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina.txt: 2366) .cbfw.cn/gonggong/js/cf_flash\.js -# ||cari.com.my/static/appbanner (easylistchina+easylist.txt: 2379) +# ||cari.com.my/static/appbanner (easylistchina.txt: 2365) .cari.com.my/static/appbanner -# ||caomeinv.info/images/*.gif (easylistchina+easylist.txt: 2378) -.caomeinv.info/images/.*\.gif -# ||caoimg.com/images/ (easylistchina+easylist.txt: 2377) +# ||caoimg.com/images/ (easylistchina.txt: 2364) .caoimg.com/images/ -# ||camster.com/promos/ (easylistchina+easylist.txt: 2376) +# ||camster.com/promos/ (easylistchina.txt: 2363) .camster.com/promos/ -# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina+easylist.txt: 2375) +# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina.txt: 2362) .caipiao.cntv.cn/website/cntv/box_news\.shtml -# ||caikuu.com/ckimages/*_zg (easylistchina+easylist.txt: 2374) +# ||caikuu.com/ckimages/*_zg (easylistchina.txt: 2361) .caikuu.com/ckimages/.*_zg -# ||caikuu.com/ckimages/*_gg (easylistchina+easylist.txt: 2373) +# ||caikuu.com/ckimages/*_gg (easylistchina.txt: 2360) .caikuu.com/ckimages/.*_gg -# ||cachead.com^ (easylistchina+easylist.txt: 2372) +# ||cachead.com^ (easylistchina.txt: 2359) .cachead.com -# ||cacafly.net^ (easylistchina+easylist.txt: 2371) +# ||cacafly.net^ (easylistchina.txt: 2358) .cacafly.net -# ||caamei.com/k.js (easylistchina+easylist.txt: 2370) +# ||caamei.com/k.js (easylistchina.txt: 2357) .caamei.com/k\.js -# ||c4d.cn/api.php?mod=ad&adid= (easylistchina+easylist.txt: 2369) +# ||c4d.cn/api.php?mod=ad&adid= (easylistchina.txt: 2356) .c4d.cn/api\.php\?mod=ad&adid= -# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina+easylist.txt: 2368) +# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina.txt: 2355) .c2cc.cn/images/images2011/ads_bigbg\.jpg -# ||c2cc.cn/c2ccgg/ (easylistchina+easylist.txt: 2367) +# ||c2cc.cn/c2ccgg/ (easylistchina.txt: 2354) .c2cc.cn/c2ccgg/ -# ||c2000.cn/c2000/ (easylistchina+easylist.txt: 2366) +# ||c2000.cn/c2000/ (easylistchina.txt: 2353) .c2000.cn/c2000/ -# ||c168c.com/*adv/ (easylistchina+easylist.txt: 2365) +# ||c168c.com/*adv/ (easylistchina.txt: 2352) .c168c.com/.*adv/ -# ||c114.net/js/channel.js (easylistchina+easylist.txt: 2364) +# ||c114.net/js/channel.js (easylistchina.txt: 2351) .c114.net/js/channel\.js -# ||c114.net/images/c114/ad_ (easylistchina+easylist.txt: 2363) +# ||c114.net/images/c114/ad_ (easylistchina.txt: 2350) .c114.net/images/c114/ad_ -# ||c114.net/default_inc/a/images/ (easylistchina+easylist.txt: 2362) +# ||c114.net/default_inc/a/images/ (easylistchina.txt: 2349) .c114.net/default_inc/a/images/ -# ||c114.net*/images_a/*.swf (easylistchina+easylist.txt: 2361) +# ||c114.net*/images_a/*.swf (easylistchina.txt: 2348) .c114.net*./(.*/)?images_a/.*\.swf -# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina+easylist.txt: 2360) +# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina.txt: 2347) .c1.74ch.com/u/mpf/xyz/fi/ZpE3T72\.gif -# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina+easylist.txt: 2359) +# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina.txt: 2346) .c1.74ch.com/u/mpf/xyz/fi/bVE3T72\.gif -# ||c.quwenjiemi.com^*.js?version= (easylistchina+easylist.txt: 2358) +# ||c.quwenjiemi.com^*.js?version= (easylistchina.txt: 2345) .c.quwenjiemi.com/.*\.js\?version= -# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina+easylist.txt: 2357) +# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina.txt: 2344) .c-ctrip.com/rk/201411/c580x145\.jpg -# ||bytravel.cn/js/s_ (easylistchina+easylist.txt: 2356) +# ||bzfl1.cc/da*.gif (easylistchina.txt: 2343) +.bzfl1.cc/da.*\.gif +# ||bzfl.cc/da*.gif (easylistchina.txt: 2342) +.bzfl.cc/da.*\.gif +# ||bytravel.cn/js/s_ (easylistchina.txt: 2341) .bytravel.cn/js/s_ -# ||bytravel.cn/js/b_ (easylistchina+easylist.txt: 2355) +# ||bytravel.cn/js/b_ (easylistchina.txt: 2340) .bytravel.cn/js/b_ -# ||bytravel.cn/js/ad_ (easylistchina+easylist.txt: 2354) +# ||bytravel.cn/js/ad_ (easylistchina.txt: 2339) .bytravel.cn/js/ad_ -# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina+easylist.txt: 2353) +# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina.txt: 2338) .bytravel.cn/images/t/usa_250_120\.gif -# ||bytravel.cn/images/cus/ (easylistchina+easylist.txt: 2352) +# ||bytravel.cn/images/cus/ (easylistchina.txt: 2337) .bytravel.cn/images/cus/ -# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina+easylist.txt: 2351) +# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina.txt: 2336) .bxwxtxt.com/a/bxwx/indextan\.js -# ||bxwx.org/myabc/ (easylistchina+easylist.txt: 2350) +# ||bxwx.org/myabc/ (easylistchina.txt: 2335) .bxwx.org/myabc/ -# ||bxwx.org/js/box_ (easylistchina+easylist.txt: 2349) +# ||bxwx.org/js/box_ (easylistchina.txt: 2334) .bxwx.org/js/box_ -# ||bxwx.org/caipiao.js (easylistchina+easylist.txt: 2347) +# ||bxwx.org/caipiao.js (easylistchina.txt: 2332) .bxwx.org/caipiao\.js -# ||bxwx.org/1.js (easylistchina+easylist.txt: 2346) +# ||bxwx.org/1.js (easylistchina.txt: 2331) .bxwx.org/1\.js -# ||bx0635.com/tx/vip.gif (easylistchina+easylist.txt: 2345) +# ||bx0635.com/tx/vip.gif (easylistchina.txt: 2330) .bx0635.com/tx/vip\.gif -# ||bx0635.com/downimg/ban.gif (easylistchina+easylist.txt: 2344) +# ||bx0635.com/downimg/ban.gif (easylistchina.txt: 2329) .bx0635.com/downimg/ban\.gif -# ||bx0635.com/downimg/2000.gif (easylistchina+easylist.txt: 2343) +# ||bx0635.com/downimg/2000.gif (easylistchina.txt: 2328) .bx0635.com/downimg/2000\.gif -# ||buytong.cn/images/*%*.swf (easylistchina+easylist.txt: 2341) +# ||buytong.cn/images/*%*.swf (easylistchina.txt: 2326) .buytong.cn/images/.*%.*\.swf -# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina+easylist.txt: 2340) +# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina.txt: 2325) .buyhouse.yam.com/plugin/newsplugin\.php -# ||buy.sina.com.tw/js/sina_popup.php (easylistchina+easylist.txt: 2339) +# ||buy.sina.com.tw/js/sina_popup.php (easylistchina.txt: 2324) .buy.sina.com.tw/js/sina_popup\.php -# ||business.92wy.com^ (easylistchina+easylist.txt: 2338) +# ||business.92wy.com^ (easylistchina.txt: 2323) .business.92wy.com -# ||bukade.com/tpl/2/loading.html (easylistchina+easylist.txt: 2336) +# ||bukade.com/tpl/2/loading.html (easylistchina.txt: 2321) .bukade.com/tpl/2/loading\.html -# ||bukade.com/js/tj2.js (easylistchina+easylist.txt: 2335) +# ||bukade.com/js/tj2.js (easylistchina.txt: 2320) .bukade.com/js/tj2\.js -# ||bukade.com/js/b_ (easylistchina+easylist.txt: 2334) +# ||bukade.com/js/b_ (easylistchina.txt: 2319) .bukade.com/js/b_ -# ||bukade.com/js/*_p_ (easylistchina+easylist.txt: 2333) +# ||bukade.com/js/*_p_ (easylistchina.txt: 2318) .bukade.com/js/.*_p_ -# ||bttiantang.cc/static/wen (easylistchina+easylist.txt: 2332) +# ||bttiantang.cc/static/wen (easylistchina.txt: 2317) .bttiantang.cc/static/wen -# ||bttiantang.cc/static/*quan.js (easylistchina+easylist.txt: 2331) +# ||bttiantang.cc/static/*quan.js (easylistchina.txt: 2316) .bttiantang.cc/static/.*quan\.js -# ||btshark.com/static/img/*300x250. (easylistchina+easylist.txt: 2330) +# ||btshark.com/static/img/*300x250. (easylistchina.txt: 2315) .btshark.com/static/img/.*300x250\. -# ||btn.pchome.net^ (easylistchina+easylist.txt: 2329) +# ||btn.pchome.net^ (easylistchina.txt: 2314) .btn.pchome.net -# ||btn.onlylady.com^ (easylistchina+easylist.txt: 2328) +# ||btn.onlylady.com^ (easylistchina.txt: 2313) .btn.onlylady.com -# ||btkuaisou.com/ac/ (easylistchina+easylist.txt: 2327) +# ||btkuaisou.com/ac/ (easylistchina.txt: 2312) .btkuaisou.com/ac/ -# ||btks.me/pingbi (easylistchina+easylist.txt: 2326) +# ||btks.me/pingbi (easylistchina.txt: 2311) .btks.me/pingbi -# ||btks.me/js/ac (easylistchina+easylist.txt: 2325) +# ||btks.me/js/ac (easylistchina.txt: 2310) .btks.me/js/ac -# ||btks.me/ac/ (easylistchina+easylist.txt: 2324) +# ||btks.me/ac/ (easylistchina.txt: 2309) .btks.me/ac/ -# ||bthand.com/static/650-80.swf (easylistchina+easylist.txt: 2323) +# ||bthand.com/static/650-80.swf (easylistchina.txt: 2308) .bthand.com/static/650-80\.swf -# ||btcherry.com/images/gaoqing.png (easylistchina+easylist.txt: 2322) +# ||btcherry.com/images/gaoqing.png (easylistchina.txt: 2307) .btcherry.com/images/gaoqing\.png -# ||btcherry.com/images/ad_ (easylistchina+easylist.txt: 2321) +# ||btcherry.com/images/ad_ (easylistchina.txt: 2306) .btcherry.com/images/ad_ -# ||btbook.net/static/img/880X60.gif (easylistchina+easylist.txt: 2320) +# ||btbook.net/static/img/880X60.gif (easylistchina.txt: 2305) .btbook.net/static/img/880X60\.gif -# ||btbbt.cc/jslb.js (easylistchina+easylist.txt: 2319) +# ||btbbt.cc/jslb.js (easylistchina.txt: 2304) .btbbt.cc/jslb\.js -# ||btago.com/static/banner/ (easylistchina+easylist.txt: 2318) +# ||btago.com/static/banner/ (easylistchina.txt: 2303) .btago.com/static/banner/ -# ||bt977.com/Public/images/ad (easylistchina+easylist.txt: 2317) +# ||bt977.com/Public/images/ad (easylistchina.txt: 2302) .bt977.com/Public/images/ad -# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina+easylist.txt: 2316) +# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina.txt: 2301) .bt1023.com/tpl/template/image/guanggao1\.gif -# ||bs028.com/js/inc/ (easylistchina+easylist.txt: 2315) +# ||bs028.com/js/inc/ (easylistchina.txt: 2300) .bs028.com/js/inc/ -# ||bs.baidu.com/app-ads% (easylistchina+easylist.txt: 2314) +# ||bs.baidu.com/app-ads% (easylistchina.txt: 2299) .bs.baidu.com/app-ads% -# ||brand.sogou.com/micro?yyid= (easylistchina+easylist.txt: 2313) +# ||brand.sogou.com/micro?yyid= (easylistchina.txt: 2298) .brand.sogou.com/micro\?yyid= -# ||br42.com/ads/ (easylistchina+easylist.txt: 2312) -.br42.com/ads/ -# ||books.com.tw/web/apActivityStick? (easylistchina+easylist.txt: 2310) +# ||books.com.tw/web/apActivityStick? (easylistchina.txt: 2296) .books.com.tw/web/apActivityStick\? -# ||bookgew.com/zj85/ (easylistchina+easylist.txt: 2309) +# ||bookgew.com/zj85/ (easylistchina.txt: 2295) .bookgew.com/zj85/ -# ||bookgew.com/ml85/ (easylistchina+easylist.txt: 2308) +# ||bookgew.com/ml85/ (easylistchina.txt: 2294) .bookgew.com/ml85/ -# ||bookgew.com/hz1/tcby.js (easylistchina+easylist.txt: 2307) +# ||bookgew.com/hz1/tcby.js (easylistchina.txt: 2293) .bookgew.com/hz1/tcby\.js -# ||bookabc.net/js/xian (easylistchina+easylist.txt: 2306) +# ||bookbao.cc/js/ (easylistchina.txt: 2292) +.bookbao.cc/js/ +# ||bookabc.net/js/xian (easylistchina.txt: 2291) .bookabc.net/js/xian -# ||bookabc.net/js/tt.js (easylistchina+easylist.txt: 2305) +# ||bookabc.net/js/tt.js (easylistchina.txt: 2290) .bookabc.net/js/tt\.js -# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina+easylist.txt: 2304) +# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina.txt: 2289) .bomb01.com/fancybox/jquery\.fancybox\. -# ||bo816.com/img/luyilu.gif (easylistchina+easylist.txt: 2303) -.bo816.com/img/luyilu\.gif -# ||bnext.com.tw/static/web/all.js (easylistchina+easylist.txt: 2302) +# ||bnext.com.tw/static/web/all.js (easylistchina.txt: 2288) .bnext.com.tw/static/web/all\.js -# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina+easylist.txt: 2301) +# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina.txt: 2287) .bmp1.ali213.net/pubjs/index_sc_utf8\.js -# ||bmp1.ali213.net/js/ (easylistchina+easylist.txt: 2300) +# ||bmp1.ali213.net/js/ (easylistchina.txt: 2286) .bmp1.ali213.net/js/ -# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina+easylist.txt: 2299) +# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina.txt: 2285) .bmp.ali213.net/pubjs/SetScreen\.js -# ||bmp.ali213.net/js/ (easylistchina+easylist.txt: 2298) +# ||bmp.ali213.net/js/ (easylistchina.txt: 2284) .bmp.ali213.net/js/ -# ||blueidea.com/js/ajs.js (easylistchina+easylist.txt: 2297) +# ||blueidea.com/js/ajs.js (easylistchina.txt: 2283) .blueidea.com/js/ajs\.js -# ||blueidea.com/2012/sdong/sdo.gif (easylistchina+easylist.txt: 2296) +# ||blueidea.com/2012/sdong/sdo.gif (easylistchina.txt: 2282) .blueidea.com/2012/sdong/sdo\.gif -# ||blogspot.com^*/s1600/orig.gif (easylistchina+easylist.txt: 2295) +# ||blogspot.com^*/s1600/orig.gif (easylistchina.txt: 2281) .blogspot.com/.*/s1600/orig\.gif -# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina+easylist.txt: 2294) +# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina.txt: 2280) .blog.tianya.cn/tuijian/tanchu\.js -# ||blog.51cto.com/js/poptop.js (easylistchina+easylist.txt: 2292) +# ||blog.51cto.com/js/poptop.js (easylistchina.txt: 2278) .blog.51cto.com/js/poptop\.js -# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina+easylist.txt: 2291) +# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina.txt: 2277) .bkjia.com/bkjia/js/subnavtop\.js -# ||bkjia.com/bkjia/js/banner (easylistchina+easylist.txt: 2290) +# ||bkjia.com/bkjia/js/banner (easylistchina.txt: 2276) .bkjia.com/bkjia/js/banner -# ||bkjia.com/bkjia/js/art_rightad (easylistchina+easylist.txt: 2289) +# ||bkjia.com/bkjia/js/art_rightad (easylistchina.txt: 2275) .bkjia.com/bkjia/js/art_rightad -# ||bkill.com/images/di.js (easylistchina+easylist.txt: 2288) +# ||bkill.com/images/di.js (easylistchina.txt: 2274) .bkill.com/images/di\.js -# ||bkill.com/css/abc/ (easylistchina+easylist.txt: 2287) +# ||bkill.com/css/abc/ (easylistchina.txt: 2273) .bkill.com/css/abc/ -# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina+easylist.txt: 2286) +# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina.txt: 2272) .bjxxw.com/themes/portal/local/special_.*\.swf -# ||bjmxw.net/bd/ (easylistchina+easylist.txt: 2285) +# ||bjmxw.net/bd/ (easylistchina.txt: 2271) .bjmxw.net/bd/ -# ||bjmama.net/a/spc_ (easylistchina+easylist.txt: 2284) +# ||bjmama.net/a/spc_ (easylistchina.txt: 2270) .bjmama.net/a/spc_ -# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina+easylist.txt: 2283) +# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina.txt: 2269) .bjhjyd.gov.cn/templates/default/www/js/float\.js -# ||biz37.net^*.swf?uid= (easylistchina+easylist.txt: 2282) +# ||biz37.net^*.swf?uid= (easylistchina.txt: 2268) .biz37.net/.*\.swf\?uid= -# ||biz.weibo.com^ (easylistchina+easylist.txt: 2281) +# ||biz.weibo.com^ (easylistchina.txt: 2267) .biz.weibo.com -# ||biz.lyd.com.cn/20 (easylistchina+easylist.txt: 2280) +# ||biz.lyd.com.cn/20 (easylistchina.txt: 2266) .biz.lyd.com.cn/20 -# ||biz.gexing.com^ (easylistchina+easylist.txt: 2279) +# ||biz.gexing.com^ (easylistchina.txt: 2265) .biz.gexing.com -# ||biz*.sandai.net^ (easylistchina+easylist.txt: 2278) +# ||biz*.sandai.net^ (easylistchina.txt: 2264) .biz*./.*\.sandai\.net[^\w%.-] .biz*.sandai.net -# ||bitscn.com/js/a2 (easylistchina+easylist.txt: 2277) +# ||bitscn.com/js/a2 (easylistchina.txt: 2263) .bitscn.com/js/a2 -# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina+easylist.txt: 2276) +# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina.txt: 2262) .bitautoimg.com/ResourceFiles/0/3/167/20151207103257620\.jpg -# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina+easylist.txt: 2275) +# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina.txt: 2261) .bitautoimg.com/ResourceFiles/0/.*\.swf -# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina+easylist.txt: 2274) +# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina.txt: 2260) .bitautoimg.com/ResourceFiles/0/.*\.gif -# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina+easylist.txt: 2273) +# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina.txt: 2259) .bitauto.com/ResourceFiles/play/play\.swf -# ||bitauto.com/js/sense*.js (easylistchina+easylist.txt: 2272) +# ||bitauto.com/js/sense*.js (easylistchina.txt: 2258) .bitauto.com/js/sense.*\.js -# ||biquge5.com/jquery/ (easylistchina+easylist.txt: 2271) +# ||biquge5.com/jquery/ (easylistchina.txt: 2257) .biquge5.com/jquery/ -# ||biquge.so/kinpo/% (easylistchina+easylist.txt: 2270) +# ||biquge.so/kinpo/% (easylistchina.txt: 2256) .biquge.so/kinpo/% -# ||biqi.me/Public/js/page_gg_ (easylistchina+easylist.txt: 2269) +# ||biqi.me/Public/js/page_gg_ (easylistchina.txt: 2255) .biqi.me/Public/js/page_gg_ -# ||biqi.me/Public/js/page_ad_ (easylistchina+easylist.txt: 2268) +# ||biqi.me/Public/js/page_ad_ (easylistchina.txt: 2254) .biqi.me/Public/js/page_ad_ -# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina+easylist.txt: 2267) +# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina.txt: 2253) .bio-equip.com/uploadimages/peiqing\.gif -# ||bio-equip.com/images/esco06.swf (easylistchina+easylist.txt: 2266) +# ||bio-equip.com/images/esco06.swf (easylistchina.txt: 2252) .bio-equip.com/images/esco06\.swf -# ||bio-equip.com/dimgs/ (easylistchina+easylist.txt: 2265) +# ||bio-equip.com/dimgs/ (easylistchina.txt: 2251) .bio-equip.com/dimgs/ -# ||bio-equip.com/dimg/ (easylistchina+easylist.txt: 2264) +# ||bio-equip.com/dimg/ (easylistchina.txt: 2250) .bio-equip.com/dimg/ -# ||binhuo.com/bhjs/ (easylistchina+easylist.txt: 2263) +# ||binhuo.com/bhjs/ (easylistchina.txt: 2249) .binhuo.com/bhjs/ -# ||bh111.com/js/tan_ (easylistchina+easylist.txt: 2262) +# ||bh111.com/js/tan_ (easylistchina.txt: 2248) .bh111.com/js/tan_ -# ||bh111.com/flash/*+ (easylistchina+easylist.txt: 2261) +# ||bh111.com/flash/*+ (easylistchina.txt: 2247) .bh111.com/flash/.*\+ -# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina+easylist.txt: 2260) +# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina.txt: 2246) .bfpgf.com/wp-content/uploads/2015/08/360dxs\.jpg -# ||bforu.info/images/ali.gif (easylistchina+easylist.txt: 2259) +# ||bforu.info/images/ali.gif (easylistchina.txt: 2245) .bforu.info/images/ali\.gif -# ||bforu.info/03.jpg (easylistchina+easylist.txt: 2258) +# ||bforu.info/03.jpg (easylistchina.txt: 2244) .bforu.info/03\.jpg -# ||bfooru.info/images/*.gif (easylistchina+easylist.txt: 2257) +# ||bfooru.info/images/*.gif (easylistchina.txt: 2243) .bfooru.info/images/.*\.gif -# ||bfooru.info/03.jpg (easylistchina+easylist.txt: 2256) +# ||bfooru.info/03.jpg (easylistchina.txt: 2242) .bfooru.info/03\.jpg -# ||bestxl.com/langzi/0403/ld.jpg (easylistchina+easylist.txt: 2255) -.bestxl.com/langzi/0403/ld\.jpg -# ||bestvogue.com/fans/ (easylistchina+easylist.txt: 2254) +# ||bestvogue.com/fans/ (easylistchina.txt: 2241) .bestvogue.com/fans/ -# ||besc.baidustatic.com^ (easylistchina+easylist.txt: 2253) +# ||besc.baidustatic.com^ (easylistchina.txt: 2240) .besc.baidustatic.com -# ||bendibao.com/mo/adm_iframe.htm? (easylistchina+easylist.txt: 2252) +# ||bendibao.com/mo/adm_iframe.htm? (easylistchina.txt: 2239) .bendibao.com/mo/adm_iframe\.htm\? -# ||bendibao.com*/tuangou.gif (easylistchina+easylist.txt: 2251) +# ||bendibao.com*/tuangou.gif (easylistchina.txt: 2238) .bendibao.com*./(.*/)?tuangou\.gif -# ||bejson.com/imgs/tuo.png (easylistchina+easylist.txt: 2250) +# ||bejson.com/imgs/tuo.png (easylistchina.txt: 2237) .bejson.com/imgs/tuo\.png -# ||bejson.com/imgs/qiniu (easylistchina+easylist.txt: 2249) +# ||bejson.com/imgs/qiniu (easylistchina.txt: 2236) .bejson.com/imgs/qiniu -# ||bejson.com/imgs/j950-90.jpg (easylistchina+easylist.txt: 2248) +# ||bejson.com/imgs/j950-90.jpg (easylistchina.txt: 2235) .bejson.com/imgs/j950-90\.jpg -# ||bejson.com/imgs/beifen (easylistchina+easylist.txt: 2247) +# ||bejson.com/imgs/beifen (easylistchina.txt: 2234) .bejson.com/imgs/beifen -# ||beiwo.tv/Runtime/js/list01.js (easylistchina+easylist.txt: 2246) +# ||beiwo.tv/Runtime/js/list01.js (easylistchina.txt: 2233) .beiwo.tv/Runtime/js/list01\.js -# ||beijing-air.com/images/a/j (easylistchina+easylist.txt: 2245) +# ||beijing-air.com/images/a/j (easylistchina.txt: 2232) .beijing-air.com/images/a/j -# ||bego.cc/img/ (easylistchina+easylist.txt: 2244) +# ||bego.cc/img/ (easylistchina.txt: 2231) .bego.cc/img/ -# ||beephone.com.tw/ad-yahoo.php (easylistchina+easylist.txt: 2243) +# ||beephone.com.tw/ad-yahoo.php (easylistchina.txt: 2230) .beephone.com.tw/ad-yahoo\.php -# ||beephone.com.tw/ad-middle.php (easylistchina+easylist.txt: 2242) +# ||beephone.com.tw/ad-middle.php (easylistchina.txt: 2229) .beephone.com.tw/ad-middle\.php -# ||beareyes.com.cn^*/ad/ (easylistchina+easylist.txt: 2241) +# ||beareyes.com.cn^*/ad/ (easylistchina.txt: 2228) .beareyes.com.cn/.*/ad/ -# ||beanfun.com/playweb/adpicpage.htm (easylistchina+easylist.txt: 2240) +# ||beanfun.com/playweb/adpicpage.htm (easylistchina.txt: 2227) .beanfun.com/playweb/adpicpage\.htm -# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina+easylist.txt: 2239) +# ||bdstatic.com^*/tam-ogel/ (easylistchina.txt: 2226) +.bdstatic.com/.*/tam-ogel/ +# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina.txt: 2225) .bdstatic.com/tb/zt/tengfei/gzdialog\.jpg -# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina+easylist.txt: 2238) +# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina.txt: 2224) .bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f\.jpg -# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina+easylist.txt: 2237) +# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina.txt: 2223) .bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac\.jpg -# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina+easylist.txt: 2236) +# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina.txt: 2222) .bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ -# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina+easylist.txt: 2235) +# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina.txt: 2221) .bdstatic.com/tb/cms/ngmis/file_1417585299140\.jpg -# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina+easylist.txt: 2234) +# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina.txt: 2220) .bdstatic.com/tb/cms/ngmis/file_1417585294569\.jpg -# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina+easylist.txt: 2233) +# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina.txt: 2219) .bdstatic.com/tb/cms/img/tieba_index_banner960x90\.png -# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina+easylist.txt: 2232) +# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina.txt: 2218) .bdstatic.com/tb/cms/forum_skin/file_1442399443261\.jpg -# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina+easylist.txt: 2231) +# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina.txt: 2217) .bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api\.js -# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina+easylist.txt: 2230) +# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina.txt: 2216) .bdstatic.com/tb/cms/com/game/couplet_ -# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina+easylist.txt: 2229) +# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina.txt: 2215) .bdstatic.com/tb/cms/activity_head/file_ -# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina+easylist.txt: 2228) +# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina.txt: 2214) .bdstatic.com/tb/%E8%B4%B4%E5%90%A7- -# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina+easylist.txt: 2227) +# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina.txt: 2213) .bdstatic.com/static/article/widget/left-promo/ -# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina+easylist.txt: 2226) +# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina.txt: 2212) .bdstatic.com/player/t/j/TvKa94eY\.js -# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina+easylist.txt: 2225) +# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina.txt: 2211) .bdstatic.com/player/t/j/Cj2XuDf6\.js -# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina+easylist.txt: 2224) +# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina.txt: 2210) .bdstatic.com/player/t/j/AEoIJIPB\.js -# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina+easylist.txt: 2223) +# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina.txt: 2209) .bdstatic.com/pc_static/detail/game_promotion/ -# ||bdstatic.com/img/image/su/ (easylistchina+easylist.txt: 2222) +# ||bdstatic.com/img/image/su/ (easylistchina.txt: 2208) .bdstatic.com/img/image/su/ -# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina+easylist.txt: 2221) +# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina.txt: 2207) .bdstatic.com/api_hao123AdvHeader\.js -# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina+easylist.txt: 2220) +# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina.txt: 2206) .bdinfo.net/bdinfo_skin/xlsgg\.js -# ||bdimg.com/site/games/yxtg/*.js (easylistchina+easylist.txt: 2219) +# ||bdimg.com/site/games/yxtg/*.js (easylistchina.txt: 2205) .bdimg.com/site/games/yxtg/.*\.js -# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina+easylist.txt: 2218) +# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina.txt: 2204) .bdimg.com/newmap/static/common/images/nav-ad_ -# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina+easylist.txt: 2217) +# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina.txt: 2203) .bdimg.com/brands/yxtg/source/juhe-v2\.js -# ||bccn.net/aaa/ (easylistchina+easylist.txt: 2215) +# ||bccn.net/aaa/ (easylistchina.txt: 2201) .bccn.net/aaa/ -# ||bcc.com.tw/imgs/adv/ (easylistchina+easylist.txt: 2214) +# ||bcc.com.tw/imgs/adv/ (easylistchina.txt: 2200) .bcc.com.tw/imgs/adv/ -# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina+easylist.txt: 2213) +# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina.txt: 2199) .bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c\.jpg -# ||bbs.xiashanet.com/js/adsview.js (easylistchina+easylist.txt: 2212) +# ||bbs.xiashanet.com/js/adsview.js (easylistchina.txt: 2198) .bbs.xiashanet.com/js/adsview\.js -# ||bbs.xbaodi.com/plugin.php (easylistchina+easylist.txt: 2211) +# ||bbs.xbaodi.com/plugin.php (easylistchina.txt: 2197) .bbs.xbaodi.com/plugin\.php -# ||bbs.winning11cn.com/temp/*.gif (easylistchina+easylist.txt: 2210) +# ||bbs.winning11cn.com/temp/*.gif (easylistchina.txt: 2196) .bbs.winning11cn.com/temp/.*\.gif -# ||bbs.voc.com.cn/s.js (easylistchina+easylist.txt: 2209) +# ||bbs.voc.com.cn/s.js (easylistchina.txt: 2195) .bbs.voc.com.cn/s\.js -# ||bbs.hotavxxx.com/images/201*.gif (easylistchina+easylist.txt: 2208) +# ||bbs.hotavxxx.com/images/201*.gif (easylistchina.txt: 2194) .bbs.hotavxxx.com/images/201.*\.gif -# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina+easylist.txt: 2207) +# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina.txt: 2193) .bbs.fengbao.com/image/bingzuan925X80\.jpg -# ||bbs.a9vg.com/showit/img_show.php (easylistchina+easylist.txt: 2206) +# ||bbs.a9vg.com/showit/img_show.php (easylistchina.txt: 2192) .bbs.a9vg.com/showit/img_show\.php -# ||bb345.com^ (easylistchina+easylist.txt: 2205) -.bb345.com -# ||baoshewang.com/img/head.js (easylistchina+easylist.txt: 2204) -.baoshewang.com/img/head\.js -# ||baoshewang.com/img/gg.js (easylistchina+easylist.txt: 2203) -.baoshewang.com/img/gg\.js -# ||baoshewang.com/img/bottom.js (easylistchina+easylist.txt: 2202) -.baoshewang.com/img/bottom\.js -# ||baoliny.com/js/jing.js (easylistchina+easylist.txt: 2201) +# ||baoliny.com/js/jing.js (easylistchina.txt: 2191) .baoliny.com/js/jing\.js -# ||baofeng.com/src/ad.js (easylistchina+easylist.txt: 2200) +# ||baofeng.com/src/ad.js (easylistchina.txt: 2190) .baofeng.com/src/ad\.js -# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina+easylist.txt: 2199) +# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina.txt: 2189) .bang5mai.com/upload/plugin/assets/main/js/b5m\.adv\.js -# ||bamuyu.com/skin/js/bgad.js (easylistchina+easylist.txt: 2198) +# ||bamuyu.com/skin/js/bgad.js (easylistchina.txt: 2188) .bamuyu.com/skin/js/bgad\.js -# ||ballive.com/addm/ (easylistchina+easylist.txt: 2197) +# ||ballive.com/addm/ (easylistchina.txt: 2187) .ballive.com/addm/ -# ||baiy.net:88/a/ (easylistchina+easylist.txt: 2196) +# ||baiy.net:88/a/ (easylistchina.txt: 2186) .baiy.net:88/a/ -# ||baixing.com/bb/*/?category= (easylistchina+easylist.txt: 2195) +# ||baixing.com/bb/*/?category= (easylistchina.txt: 2185) .baixing.com/bb/.*/\?category= -# ||baishulou.net/html/ (easylistchina+easylist.txt: 2194) +# ||baishulou.net/html/ (easylistchina.txt: 2184) .baishulou.net/html/ -# ||baike.com/iframeheightforad. (easylistchina+easylist.txt: 2192) +# ||baike.com/iframeheightforad. (easylistchina.txt: 2182) .baike.com/iframeheightforad\. -# ||baike.com/3g/ads/ (easylistchina+easylist.txt: 2191) +# ||baike.com/3g/ads/ (easylistchina.txt: 2181) .baike.com/3g/ads/ -# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina+easylist.txt: 2190) +# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina.txt: 2180) .baifen.music.baidu.com/api/v1/.*\?format=jsonp& -# ||baidud.cn/aoao/down_ (easylistchina+easylist.txt: 2189) +# ||baidud.cn/aoao/down_ (easylistchina.txt: 2179) .baidud.cn/aoao/down_ -# ||baidu.com^*/interface/ad? (easylistchina+easylist.txt: 2188) +# ||baidu.com^*/interface/ad? (easylistchina.txt: 2178) .baidu.com/.*/interface/ad\? -# ||baidu.com/WerbungAjax/getTonglan? (easylistchina+easylist.txt: 2186) +# ||baidu.com/WerbungAjax/getTonglan? (easylistchina.txt: 2176) .baidu.com/WerbungAjax/getTonglan\? -# ||baidu.com/WerbungAjax/getBeitou? (easylistchina+easylist.txt: 2185) +# ||baidu.com/WerbungAjax/getBeitou? (easylistchina.txt: 2175) .baidu.com/WerbungAjax/getBeitou\? -# ||baidu.com/videoapi/?*_ad_promote& (easylistchina+easylist.txt: 2184) +# ||baidu.com/videoapi/?*_ad_promote& (easylistchina.txt: 2174) .baidu.com/videoapi/\?.*_ad_promote& -# ||baidu.com/videoadv.js (easylistchina+easylist.txt: 2183) +# ||baidu.com/videoadv.js (easylistchina.txt: 2173) .baidu.com/videoadv\.js -# ||baidu.com/ur/scun?di=contentunion (easylistchina+easylist.txt: 2182) +# ||baidu.com/ur/scun?di=contentunion (easylistchina.txt: 2172) .baidu.com/ur/scun\?di=contentunion -# ||baidu.com/tbliveact/data/xiu8/ (easylistchina+easylist.txt: 2181) +# ||baidu.com/tequan/adpadmin_feed/ (easylistchina.txt: 2171) +.baidu.com/tequan/adpadmin_feed/ +# ||baidu.com/tbliveact/data/xiu8/ (easylistchina.txt: 2170) .baidu.com/tbliveact/data/xiu8/ -# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina+easylist.txt: 2180) +# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina.txt: 2169) .baidu.com/tb/zt/wen_da_pc\.html -# ||baidu.com/tb/zt/spread/ (easylistchina+easylist.txt: 2179) +# ||baidu.com/tb/zt/spread/ (easylistchina.txt: 2168) .baidu.com/tb/zt/spread/ -# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina+easylist.txt: 2178) +# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina.txt: 2167) .baidu.com/tb/static-common/swf/worldcup_main\.swf -# ||baidu.com/tb/cms/game/*_banner_ (easylistchina+easylist.txt: 2177) +# ||baidu.com/tb/cms/game/*_banner_ (easylistchina.txt: 2166) .baidu.com/tb/cms/game/.*_banner_ -# ||baidu.com/tb/cms/game/*_banner. (easylistchina+easylist.txt: 2176) +# ||baidu.com/tb/cms/game/*_banner. (easylistchina.txt: 2165) .baidu.com/tb/cms/game/.*_banner\. -# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina+easylist.txt: 2175) +# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina.txt: 2164) .baidu.com/tb/cms/forum_skin/file_ -# ||baidu.com/staticapi/misadlist. (easylistchina+easylist.txt: 2174) +# ||baidu.com/staticapi/misadlist. (easylistchina.txt: 2163) .baidu.com/staticapi/misadlist\. -# ||baidu.com/staticapi/hotnews_new. (easylistchina+easylist.txt: 2173) +# ||baidu.com/staticapi/hotnews_new. (easylistchina.txt: 2162) .baidu.com/staticapi/hotnews_new\. -# ||baidu.com/static/yuntu-ad/ (easylistchina+easylist.txt: 2172) +# ||baidu.com/static/yuntu-ad/ (easylistchina.txt: 2161) .baidu.com/static/yuntu-ad/ -# ||baidu.com/static/html/cbjs.html (easylistchina+easylist.txt: 2171) +# ||baidu.com/static/html/cbjs.html (easylistchina.txt: 2160) .baidu.com/static/html/cbjs\.html -# ||baidu.com/showbrand/sponsor_ (easylistchina+easylist.txt: 2170) +# ||baidu.com/showbrand/sponsor_ (easylistchina.txt: 2159) .baidu.com/showbrand/sponsor_ -# ||baidu.com/showbrand/banner_ (easylistchina+easylist.txt: 2169) +# ||baidu.com/showbrand/banner_ (easylistchina.txt: 2158) .baidu.com/showbrand/banner_ -# ||baidu.com/show/livevideo/getStreamConf? (easylistchina+easylist.txt: 2168) +# ||baidu.com/show/livevideo/getStreamConf? (easylistchina.txt: 2157) .baidu.com/show/livevideo/getStreamConf\? -# ||baidu.com/rmaAjax/getGame? (easylistchina+easylist.txt: 2167) +# ||baidu.com/rmaAjax/getGame? (easylistchina.txt: 2156) .baidu.com/rmaAjax/getGame\? -# ||baidu.com/resource/tuisong/ (easylistchina+easylist.txt: 2166) +# ||baidu.com/resource/tuisong/ (easylistchina.txt: 2155) .baidu.com/resource/tuisong/ -# ||baidu.com/resource/baichuan/ (easylistchina+easylist.txt: 2165) +# ||baidu.com/resource/baichuan/ (easylistchina.txt: 2154) .baidu.com/resource/baichuan/ -# ||baidu.com/resource/ads/ (easylistchina+easylist.txt: 2164) +# ||baidu.com/resource/ads/ (easylistchina.txt: 2153) .baidu.com/resource/ads/ -# ||baidu.com/img/iknow/wenku*85. (easylistchina+easylist.txt: 2163) +# ||baidu.com/img/iknow/wenku*85. (easylistchina.txt: 2152) .baidu.com/img/iknow/wenku.*85\. -# ||baidu.com/game/asset/common/performance. (easylistchina+easylist.txt: 2162) +# ||baidu.com/game/asset/common/performance. (easylistchina.txt: 2151) .baidu.com/game/asset/common/performance\. -# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina+easylist.txt: 2161) +# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina.txt: 2150) .baidu.com/fanyiapp/image/wise_banner_ -# ||baidu.com/event/img/zwdzjs.jpg (easylistchina+easylist.txt: 2160) +# ||baidu.com/event/img/zwdzjs.jpg (easylistchina.txt: 2149) .baidu.com/event/img/zwdzjs\.jpg -# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina+easylist.txt: 2158) +# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina.txt: 2147) .baidu.com/cms/rc/adSideConfig\.json\? -# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina+easylist.txt: 2157) +# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina.txt: 2146) .baidu.com/brands/yxtg/source/yxCoupletsAd\.js -# ||baidu.com/api/proxyapi?tag=adv& (easylistchina+easylist.txt: 2156) +# ||baidu.com/api/proxyapi?tag=adv& (easylistchina.txt: 2145) .baidu.com/api/proxyapi\?tag=adv& -# ||badmintoncn.com/cbo_gg/ (easylistchina+easylist.txt: 2155) +# ||badmintoncn.com/cbo_gg/ (easylistchina.txt: 2143) .badmintoncn.com/cbo_gg/ -# ||backchina.com/banners/ (easylistchina+easylist.txt: 2154) +# ||backchina.com/banners/ (easylistchina.txt: 2142) .backchina.com/banners/ -# ||babytreeimg.com/img/promo/ (easylistchina+easylist.txt: 2153) +# ||babytreeimg.com/img/promo/ (easylistchina.txt: 2141) .babytreeimg.com/img/promo/ -# ||babyhome.com.tw/slot_gateway.php? (easylistchina+easylist.txt: 2152) +# ||babyhome.com.tw/slot_gateway.php? (easylistchina.txt: 2140) .babyhome.com.tw/slot_gateway\.php\? -# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina+easylist.txt: 2151) +# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina.txt: 2139) .babyhome.com.tw/lib/iframe\.php\?u= -# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina+easylist.txt: 2150) +# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina.txt: 2138) .babyhome.com.tw/2015/mid_autumn/ -# ||baby-kingdom.com/reqwads? (easylistchina+easylist.txt: 2149) +# ||baby-kingdom.com/reqwads? (easylistchina.txt: 2137) .baby-kingdom.com/reqwads\? -# ||baby-kingdom.com/reqsads? (easylistchina+easylist.txt: 2148) +# ||baby-kingdom.com/reqsads? (easylistchina.txt: 2136) .baby-kingdom.com/reqsads\? -# ||b5m.com/static/html/*/popup.html? (easylistchina+easylist.txt: 2147) +# ||b5m.com/static/html/*/popup.html? (easylistchina.txt: 2135) .b5m.com/static/html/.*/popup\.html\? -# ||b5m.com/images/banner.jpg (easylistchina+easylist.txt: 2146) +# ||b5m.com/images/banner.jpg (easylistchina.txt: 2134) .b5m.com/images/banner\.jpg -# ||azhibo.com/images/2015/edge-bg.png (easylistchina+easylist.txt: 2145) +# ||azhibo.com/images/2015/edge-bg.png (easylistchina.txt: 2133) .azhibo.com/images/2015/edge-bg\.png -# ||ayxz.com/images/VStart.gif (easylistchina+easylist.txt: 2144) +# ||ayxz.com/images/VStart.gif (easylistchina.txt: 2132) .ayxz.com/images/VStart\.gif -# ||ayxz.com/images/enkj_small.gif (easylistchina+easylist.txt: 2143) +# ||ayxz.com/images/enkj_small.gif (easylistchina.txt: 2131) .ayxz.com/images/enkj_small\.gif -# ||awaker.hk/wp-content/uploads/ok/ (easylistchina+easylist.txt: 2141) +# ||awaker.hk/wp-content/uploads/ok/ (easylistchina.txt: 2129) .awaker.hk/wp-content/uploads/ok/ -# ||avseesee.com/twad (easylistchina+easylist.txt: 2140) +# ||avseesee.com/twad (easylistchina.txt: 2128) .avseesee.com/twad -# ||avseesee.com/htmls/vlinks.html (easylistchina+easylist.txt: 2139) +# ||avseesee.com/htmls/vlinks.html (easylistchina.txt: 2127) .avseesee.com/htmls/vlinks\.html -# ||avseesee.com/amandison.php (easylistchina+easylist.txt: 2138) +# ||avseesee.com/amandison.php (easylistchina.txt: 2126) .avseesee.com/amandison\.php -# ||avonline.org/js/jquery.colorbox- (easylistchina+easylist.txt: 2137) +# ||avonline.org/js/jquery.colorbox- (easylistchina.txt: 2125) .avonline.org/js/jquery\.colorbox- -# ||avlang33.com/js/float.js (easylistchina+easylist.txt: 2136) +# ||avlang33.com/js/float.js (easylistchina.txt: 2124) .avlang33.com/js/float\.js -# ||avcity.twavtv.com/js/twavt.js (easylistchina+easylist.txt: 2135) +# ||avcity.twavtv.com/js/twavt.js (easylistchina.txt: 2123) .avcity.twavtv.com/js/twavt\.js -# ||av44.net/data/attachment/forum/*.gif (easylistchina+easylist.txt: 2134) -.av44.net/data/attachment/forum/.*\.gif -# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina+easylist.txt: 2132) +# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina.txt: 2122) .autos.udn.com/topic/car/include/ad\.jsp -# ||autoimg.cn/engine/root/fggxl.js (easylistchina+easylist.txt: 2131) +# ||autoimg.cn/engine/root/fggxl.js (easylistchina.txt: 2121) .autoimg.cn/engine/root/fggxl\.js -# ||autoimg.cn/ad.js (easylistchina+easylist.txt: 2130) +# ||autoimg.cn/ad.js (easylistchina.txt: 2120) .autoimg.cn/ad\.js -# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina+easylist.txt: 2129) +# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina.txt: 2119) .autohome.com.cn/Ashx/public/HeaderLayerRecApp\.ashx\? -# ||autofan.com.cn/zhaoning/GG- (easylistchina+easylist.txt: 2128) +# ||autofan.com.cn/zhaoning/GG- (easylistchina.txt: 2118) .autofan.com.cn/zhaoning/GG- -# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina+easylist.txt: 2127) +# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina.txt: 2117) .autofan.com.cn/zhaoning/20.*\.jpg -# ||autofan.com.cn/zhaoning/*.gif (easylistchina+easylist.txt: 2126) +# ||autofan.com.cn/zhaoning/*.gif (easylistchina.txt: 2116) .autofan.com.cn/zhaoning/.*\.gif -# ||auto-online.com.tw/vendor_data/ (easylistchina+easylist.txt: 2125) +# ||auto-online.com.tw/vendor_data/ (easylistchina.txt: 2115) .auto-online.com.tw/vendor_data/ -# ||att.ydss.cn/attachments/portal/ (easylistchina+easylist.txt: 2124) +# ||att.ydss.cn/attachments/portal/ (easylistchina.txt: 2114) .att.ydss.cn/attachments/portal/ -# ||atm.youku.com^ (easylistchina+easylist.txt: 2123) +# ||atm.youku.com^ (easylistchina.txt: 2113) .atm.youku.com -# ||asxxg.cn/Public/config/Couplet/ (easylistchina+easylist.txt: 2122) +# ||asxxg.cn/Public/config/Couplet/ (easylistchina.txt: 2112) .asxxg.cn/Public/config/Couplet/ -# ||aspjzy.com/jsweb/js/ (easylistchina+easylist.txt: 2121) +# ||aspjzy.com/jsweb/js/ (easylistchina.txt: 2111) .aspjzy.com/jsweb/js/ -# ||asp300.com/2012js/ (easylistchina+easylist.txt: 2120) +# ||asp300.com/2012js/ (easylistchina.txt: 2110) .asp300.com/2012js/ -# ||asp300.com/2012adjs/ (easylistchina+easylist.txt: 2119) +# ||asp300.com/2012adjs/ (easylistchina.txt: 2109) .asp300.com/2012adjs/ -# ||asia-home.com.cn/js/yt/ytadshow (easylistchina+easylist.txt: 2117) +# ||asia-home.com.cn/js/yt/ytadshow (easylistchina.txt: 2107) .asia-home.com.cn/js/yt/ytadshow -# ||ashow.pcpop.com^ (easylistchina+easylist.txt: 2116) +# ||ashow.pcpop.com^ (easylistchina.txt: 2106) .ashow.pcpop.com -# ||as.sinahk.net^ (easylistchina+easylist.txt: 2115) +# ||as.sinahk.net^ (easylistchina.txt: 2105) .as.sinahk.net -# ||article.pchome.net/Index.php?c=Intel& (easylistchina+easylist.txt: 2114) +# ||article.pchome.net/Index.php?c=Intel& (easylistchina.txt: 2104) .article.pchome.net/Index\.php\?c=Intel& -# ||arpun.com/arpun/softinfo (easylistchina+easylist.txt: 2113) +# ||arpun.com/arpun/softinfo (easylistchina.txt: 2103) .arpun.com/arpun/softinfo -# ||ark.letv.com/s?vid= (easylistchina+easylist.txt: 2112) +# ||ark.letv.com/s?vid= (easylistchina.txt: 2102) .ark.letv.com/s\?vid= -# ||ark.letv.com/s?res= (easylistchina+easylist.txt: 2111) +# ||ark.letv.com/s?res= (easylistchina.txt: 2101) .ark.letv.com/s\?res= -# ||aqy103.com/js/aqy/ (easylistchina+easylist.txt: 2110) +# ||aqy103.com/js/aqy/ (easylistchina.txt: 2100) .aqy103.com/js/aqy/ -# ||aqy102.com/js/aqy/ (easylistchina+easylist.txt: 2109) +# ||aqy102.com/js/aqy/ (easylistchina.txt: 2099) .aqy102.com/js/aqy/ -# ||aqlife.com/data/attachment/portal/ (easylistchina+easylist.txt: 2108) +# ||aqlife.com/data/attachment/portal/ (easylistchina.txt: 2098) .aqlife.com/data/attachment/portal/ -# ||appinn.com^*/licaifan. (easylistchina+easylist.txt: 2107) +# ||appinn.com^*/licaifan. (easylistchina.txt: 2097) .appinn.com/.*/licaifan\. -# ||appinn.com/images/201509/wd.png (easylistchina+easylist.txt: 2106) +# ||appinn.com/images/201509/wd.png (easylistchina.txt: 2096) .appinn.com/images/201509/wd\.png -# ||app.acm.dzwww.com^ (easylistchina+easylist.txt: 2105) +# ||app.acm.dzwww.com^ (easylistchina.txt: 2095) .app.acm.dzwww.com -# ||app-g.39.net/NNN/ (easylistchina+easylist.txt: 2104) +# ||app-g.39.net/NNN/ (easylistchina.txt: 2094) .app-g.39.net/NNN/ -# ||apihousefun.yam.com/news.php (easylistchina+easylist.txt: 2103) +# ||apihousefun.yam.com/news.php (easylistchina.txt: 2093) .apihousefun.yam.com/news\.php -# ||aoye.cc/js/footer.js (easylistchina+easylist.txt: 2102) +# ||aoye.cc/js/footer.js (easylistchina.txt: 2092) .aoye.cc/js/footer\.js -# ||anywlan.com/link/xcloud.jpg (easylistchina+easylist.txt: 2101) +# ||anywlan.com/link/xcloud.jpg (easylistchina.txt: 2091) .anywlan.com/link/xcloud\.jpg -# ||anywlan.com/link/*.gif (easylistchina+easylist.txt: 2100) +# ||anywlan.com/link/*.gif (easylistchina.txt: 2090) .anywlan.com/link/.*\.gif -# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina+easylist.txt: 2099) +# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina.txt: 2089) .anquan.org/static/user_upload/zorro/.*/%E5%93% -# ||anquan.org/static/user_upload/*/cloud (easylistchina+easylist.txt: 2098) +# ||anquan.org/static/user_upload/*/cloud (easylistchina.txt: 2088) .anquan.org/static/user_upload/.*/cloud -# ||anquan.org/static/profile/images/qq-banner.png (easylistchina+easylist.txt: 2097) +# ||anquan.org/static/profile/images/qq-banner.png (easylistchina.txt: 2087) .anquan.org/static/profile/images/qq-banner\.png -# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina+easylist.txt: 2096) +# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina.txt: 2086) .anquan.org/static/auth/images/ppb_cert/qq-browser\.jpg -# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina+easylist.txt: 2095) +# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina.txt: 2085) .anhuinews.com/zhuyeguanli/.*ad/ -# ||anhuinews.com/include/ (easylistchina+easylist.txt: 2094) +# ||anhuinews.com/include/ (easylistchina.txt: 2084) .anhuinews.com/include/ -# ||angpic.3g.net.cn/ai/ (easylistchina+easylist.txt: 2093) +# ||angpic.3g.net.cn/ai/ (easylistchina.txt: 2083) .angpic.3g.net.cn/ai/ -# ||an7.tv/Runtime/js/ (easylistchina+easylist.txt: 2092) +# ||an7.tv/Runtime/js/ (easylistchina.txt: 2082) .an7.tv/Runtime/js/ -# ||amd.cn/yyets.js (easylistchina+easylist.txt: 2091) +# ||amd.cn/yyets.js (easylistchina.txt: 2081) .amd.cn/yyets\.js -# ||am.szhome.com^ (easylistchina+easylist.txt: 2089) +# ||am.szhome.com^ (easylistchina.txt: 2079) .am.szhome.com -# ||am.6park.com^ (easylistchina+easylist.txt: 2088) +# ||am.6park.com^ (easylistchina.txt: 2078) .am.6park.com -# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina+easylist.txt: 2087) +# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina.txt: 2077) .alu.cn/aluTrade/Fragments/ListAdvertisementProducts\. -# ||alu.cn/2011/images/conglin.gif (easylistchina+easylist.txt: 2086) +# ||alu.cn/2011/images/conglin.gif (easylistchina.txt: 2076) .alu.cn/2011/images/conglin\.gif -# ||alu.cn*/aluad/ (easylistchina+easylist.txt: 2085) +# ||alu.cn*/aluad/ (easylistchina.txt: 2075) .alu.cn*./(.*/)?aluad/ -# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina+easylist.txt: 2084) +# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina.txt: 2074) .allbeauty.com.tw/GoldPrice/.*_CF\.php -# ||alixixi.com/adsview/ (easylistchina+easylist.txt: 2083) +# ||alixixi.com/adsview/ (easylistchina.txt: 2073) .alixixi.com/adsview/ -# ||alifeifei.net/s/*.js (easylistchina+easylist.txt: 2082) +# ||alifeifei.net/s/*.js (easylistchina.txt: 2072) .alifeifei.net/s/.*\.js -# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina+easylist.txt: 2078) +# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina.txt: 2068) .alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100\.jpg -# ||alicdn.com/tps/*-950-90. (easylistchina+easylist.txt: 2077) +# ||alicdn.com/tps/*-950-90. (easylistchina.txt: 2067) .alicdn.com/tps/.*-950-90\. -# ||ali213.net/static/js/kv (easylistchina+easylist.txt: 2076) +# ||ali213.net/static/js/kv (easylistchina.txt: 2066) .ali213.net/static/js/kv -# ||ali213.net/static/js/kktv (easylistchina+easylist.txt: 2075) +# ||ali213.net/static/js/kktv (easylistchina.txt: 2065) .ali213.net/static/js/kktv -# ||ali213.net/static/js/*_ali213tv.js (easylistchina+easylist.txt: 2074) +# ||ali213.net/static/js/*_ali213tv.js (easylistchina.txt: 2064) .ali213.net/static/js/.*_ali213tv\.js -# ||ali213.net/images/promotion/ (easylistchina+easylist.txt: 2073) +# ||ali213.net/images/promotion/ (easylistchina.txt: 2063) .ali213.net/images/promotion/ -# ||ali213.net/css/data/promotion.css (easylistchina+easylist.txt: 2072) +# ||ali213.net/css/data/promotion.css (easylistchina.txt: 2062) .ali213.net/css/data/promotion\.css -# ||alabout.com/images/*.gif (easylistchina+easylist.txt: 2070) +# ||alabout.com/images/*.gif (easylistchina.txt: 2060) .alabout.com/images/.*\.gif -# ||aknba.com/cache/ads.js (easylistchina+easylist.txt: 2069) +# ||aknba.com/cache/ads.js (easylistchina.txt: 2059) .aknba.com/cache/ads\.js -# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina+easylist.txt: 2068) +# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina.txt: 2058) .akjunshi.com/resource/s/data_js_mil/right_twtj\.js -# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina+easylist.txt: 2067) +# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina.txt: 2057) .akjunshi.com/resource/s/data_js_mil/aksqgg\.js -# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina+easylist.txt: 2066) +# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina.txt: 2056) .ak47fuli.net/wp-content/uploads/20.*\.gif -# ||ak47fuli.net/fd.js (easylistchina+easylist.txt: 2065) +# ||ak47fuli.net/fd.js (easylistchina.txt: 2055) .ak47fuli.net/fd\.js -# ||ajiang.net/b4_dnslak.png (easylistchina+easylist.txt: 2064) +# ||ajiang.net/b4_dnslak.png (easylistchina.txt: 2054) .ajiang.net/b4_dnslak\.png -# ||aiyuke.com/index.php?c=position& (easylistchina+easylist.txt: 2063) +# ||aiyuke.com/index.php?c=position& (easylistchina.txt: 2053) .aiyuke.com/index\.php\?c=position& -# ||aiyidu.com/aiyidu/adver/ (easylistchina+easylist.txt: 2062) +# ||aiyidu.com/aiyidu/adver/ (easylistchina.txt: 2052) .aiyidu.com/aiyidu/adver/ -# ||aituan.com/at/bbs_gg/ (easylistchina+easylist.txt: 2061) +# ||aituan.com/at/bbs_gg/ (easylistchina.txt: 2051) .aituan.com/at/bbs_gg/ -# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina+easylist.txt: 2058) +# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina.txt: 2049) .aipai.com/common/i0uat4jq/play/item\.html -# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina+easylist.txt: 2057) +# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina.txt: 2048) .aipai.com/common/html/commonAdForTfansTo\.html -# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina+easylist.txt: 2056) +# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina.txt: 2047) .aipai.com/app/www/templates/common/ifr/fans_640_40\.html -# ||ainunu.com/vad.js (easylistchina+easylist.txt: 2055) +# ||aipai.com/app/www/templates/common/*_videos_ (easylistchina.txt: 2046) +.aipai.com/app/www/templates/common/.*_videos_ +# ||ainunu.com/vad.js (easylistchina.txt: 2045) .ainunu.com/vad\.js -# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina+easylist.txt: 2054) +# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina.txt: 2044) .aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76\.gif -# ||aijiatxt.com/js/gg.js (easylistchina+easylist.txt: 2053) +# ||aijiatxt.com/js/gg.js (easylistchina.txt: 2043) .aijiatxt.com/js/gg\.js -# ||aijiatxt.com/images/dudu.gif (easylistchina+easylist.txt: 2052) +# ||aijiatxt.com/js/float.js (easylistchina.txt: 2042) +.aijiatxt.com/js/float\.js +# ||aijiatxt.com/images/dudu.gif (easylistchina.txt: 2041) .aijiatxt.com/images/dudu\.gif -# ||aijiatxt.com/images/90.jpg (easylistchina+easylist.txt: 2051) +# ||aijiatxt.com/images/90.jpg (easylistchina.txt: 2040) .aijiatxt.com/images/90\.jpg -# ||aijiatxt.com/images/300.jpg (easylistchina+easylist.txt: 2050) +# ||aijiatxt.com/images/300.jpg (easylistchina.txt: 2039) .aijiatxt.com/images/300\.jpg -# ||aid.chinayk.com^ (easylistchina+easylist.txt: 2049) +# ||aid.chinayk.com^ (easylistchina.txt: 2038) .aid.chinayk.com -# ||aibang.com/?area=ajax&cmd=adv& (easylistchina+easylist.txt: 2048) +# ||aibang.com/?area=ajax&cmd=adv& (easylistchina.txt: 2037) .aibang.com/\?area=ajax&cmd=adv& -# ||ai.bioon.com^ (easylistchina+easylist.txt: 2047) +# ||ai.bioon.com^ (easylistchina.txt: 2036) .ai.bioon.com -# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina+easylist.txt: 2046) +# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina.txt: 2035) .ahtv.cn/publishsys/data/template/1/3/images/zgyd_ -# ||ahlife.com/skin/hftogo/js/ (easylistchina+easylist.txt: 2045) +# ||ahlife.com/skin/hftogo/js/ (easylistchina.txt: 2034) .ahlife.com/skin/hftogo/js/ -# ||ahlife.com/api.php?mod=adv& (easylistchina+easylist.txt: 2044) +# ||ahlife.com/api.php?mod=adv& (easylistchina.txt: 2033) .ahlife.com/api\.php\?mod=adv& -# ||ah.sina.com.cn/iframe/ (easylistchina+easylist.txt: 2043) +# ||ah.sina.com.cn/iframe/ (easylistchina.txt: 2032) .ah.sina.com.cn/iframe/ -# ||afpcreative.wasu.cn^ (easylistchina+easylist.txt: 2042) +# ||afpcreative.wasu.cn^ (easylistchina.txt: 2031) .afpcreative.wasu.cn -# ||afp.wasu.cn^ (easylistchina+easylist.txt: 2041) +# ||afp.wasu.cn^ (easylistchina.txt: 2030) .afp.wasu.cn -# ||afp.chinanews.com^ (easylistchina+easylist.txt: 2040) +# ||afp.chinanews.com^ (easylistchina.txt: 2029) .afp.chinanews.com -# ||afocus.com.cn/s? (easylistchina+easylist.txt: 2039) +# ||afocus.com.cn/s? (easylistchina.txt: 2028) .afocus.com.cn/s\? -# ||adwordsing.com/img/2.jpg (easylistchina+easylist.txt: 2038) +# ||adwordsing.com/img/2.jpg (easylistchina.txt: 2027) .adwordsing.com/img/2\.jpg -# ||adwordsing.com/img/1.jpg (easylistchina+easylist.txt: 2037) +# ||adwordsing.com/img/1.jpg (easylistchina.txt: 2026) .adwordsing.com/img/1\.jpg -# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina+easylist.txt: 2036) +# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina.txt: 2025) .advideoadmin.appledaily.com.tw/ov_player/ -# ||adspending01.bwnet.com.tw^ (easylistchina+easylist.txt: 2034) +# ||adspending01.bwnet.com.tw^ (easylistchina.txt: 2023) .adspending01.bwnet.com.tw -# ||adsclick.yx.js.cn^ (easylistchina+easylist.txt: 2033) +# ||adsclick.yx.js.cn^ (easylistchina.txt: 2022) .adsclick.yx.js.cn -# ||adpubs.yaolan.com^ (easylistchina+easylist.txt: 2032) +# ||adpubs.yaolan.com^ (easylistchina.txt: 2021) .adpubs.yaolan.com -# ||adpub.yaolan.com^ (easylistchina+easylist.txt: 2031) +# ||adpub.yaolan.com^ (easylistchina.txt: 2020) .adpub.yaolan.com -# ||adp.cnool.net^ (easylistchina+easylist.txt: 2030) +# ||adp.cnool.net^ (easylistchina.txt: 2019) .adp.cnool.net -# ||adnetpub.yaolan.com^ (easylistchina+easylist.txt: 2029) +# ||adnetpub.yaolan.com^ (easylistchina.txt: 2018) .adnetpub.yaolan.com -# ||admin6.com/templates/index/default/images/100060.gif (easylistchina+easylist.txt: 2028) +# ||admin6.com/templates/index/default/images/100060.gif (easylistchina.txt: 2017) .admin6.com/templates/index/default/images/100060\.gif -# ||admin5.com/lib/js/*_article (easylistchina+easylist.txt: 2027) +# ||admin5.com/lib/js/*_article (easylistchina.txt: 2016) .admin5.com/lib/js/.*_article -# ||admin5.com/hezuo/action/ (easylistchina+easylist.txt: 2026) +# ||admin5.com/hezuo/action/ (easylistchina.txt: 2015) .admin5.com/hezuo/action/ -# ||admin5.com/extras/ (easylistchina+easylist.txt: 2025) +# ||admin5.com/extras/ (easylistchina.txt: 2014) .admin5.com/extras/ -# ||admin5.com/daohang/ (easylistchina+easylist.txt: 2024) +# ||admin5.com/daohang/ (easylistchina.txt: 2013) .admin5.com/daohang/ -# ||admin5.com/bd360qq/action/ (easylistchina+easylist.txt: 2023) +# ||admin5.com/bd360qq/action/ (easylistchina.txt: 2012) .admin5.com/bd360qq/action/ -# ||admin5.com/a5dao/ (easylistchina+easylist.txt: 2022) +# ||admin5.com/a5dao/ (easylistchina.txt: 2011) .admin5.com/a5dao/ -# ||admin10000.com/skin/lagou_ (easylistchina+easylist.txt: 2021) +# ||admin10000.com/skin/lagou_ (easylistchina.txt: 2010) .admin10000.com/skin/lagou_ -# ||admd.yam.com^ (easylistchina+easylist.txt: 2020) +# ||admd.yam.com^ (easylistchina.txt: 2009) .admd.yam.com -# ||admaimai.com/inc/adv (easylistchina+easylist.txt: 2019) +# ||admaimai.com/inc/adv (easylistchina.txt: 2008) .admaimai.com/inc/adv -# ||adm.zzfish.cn^ (easylistchina+easylist.txt: 2018) +# ||adm.zzfish.cn^ (easylistchina.txt: 2007) .adm.zzfish.cn -# ||adm.zbinfo.net^ (easylistchina+easylist.txt: 2017) +# ||adm.zbinfo.net^ (easylistchina.txt: 2006) .adm.zbinfo.net -# ||adm.xmfish.com^ (easylistchina+easylist.txt: 2016) +# ||adm.xmfish.com^ (easylistchina.txt: 2005) .adm.xmfish.com -# ||adm.qzbbs.com^ (easylistchina+easylist.txt: 2015) +# ||adm.qzbbs.com^ (easylistchina.txt: 2004) .adm.qzbbs.com -# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina+easylist.txt: 2014) +# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina.txt: 2003) .adm.leju.sina.com.cn/get_abp_list/ -# ||adm.jjj8.cn^ (easylistchina+easylist.txt: 2013) +# ||adm.jjj8.cn^ (easylistchina.txt: 2002) .adm.jjj8.cn -# ||adm.funshion.com^ (easylistchina+easylist.txt: 2012) +# ||adm.funshion.com^ (easylistchina.txt: 2001) .adm.funshion.com -# ||adm.bbcss.com^ (easylistchina+easylist.txt: 2011) +# ||adm.bbcss.com^ (easylistchina.txt: 2000) .adm.bbcss.com -# ||adm.86wan.com^ (easylistchina+easylist.txt: 2010) +# ||adm.86wan.com^ (easylistchina.txt: 1999) .adm.86wan.com -# ||adm.72zx.com^ (easylistchina+easylist.txt: 2009) +# ||adm.72zx.com^ (easylistchina.txt: 1998) .adm.72zx.com -# ||adm.265g.com^ (easylistchina+easylist.txt: 2008) +# ||adm.265g.com^ (easylistchina.txt: 1997) .adm.265g.com -# ||adk.funshion.com^ (easylistchina+easylist.txt: 2006) +# ||adk.funshion.com^ (easylistchina.txt: 1995) .adk.funshion.com -# ||adi*.cnool.net^ (easylistchina+easylist.txt: 2005) +# ||adi*.cnool.net^ (easylistchina.txt: 1994) .adi*./.*\.cnool\.net[^\w%.-] .adi*.cnool.net -# ||adhome.1fangchan.com^ (easylistchina+easylist.txt: 2004) +# ||adhome.1fangchan.com^ (easylistchina.txt: 1993) .adhome.1fangchan.com -# ||adf.dahe.cn^ (easylistchina+easylist.txt: 2003) +# ||adf.dahe.cn^ (easylistchina.txt: 1992) .adf.dahe.cn -# ||add.freeimg8.com^ (easylistchina+easylist.txt: 2002) +# ||add.freeimg8.com^ (easylistchina.txt: 1991) .add.freeimg8.com -# ||add.dz19.net^ (easylistchina+easylist.txt: 2001) +# ||add.dz19.net^ (easylistchina.txt: 1990) .add.dz19.net -# ||adadmin.house365.com^ (easylistchina+easylist.txt: 2000) +# ||adadmin.house365.com^ (easylistchina.txt: 1989) .adadmin.house365.com -# ||ad.bjmama.net^ (easylistchina+easylist.txt: 1999) +# ||ad.bjmama.net^ (easylistchina.txt: 1988) .ad.bjmama.net -# ||ad.17173.com^ (easylistchina+easylist.txt: 1998) +# ||ad.17173.com^ (easylistchina.txt: 1987) .ad.17173.com -# ||actoys.net/statics/js/index/ad.js (easylistchina+easylist.txt: 1997) +# ||ad.12306.cn/res/*.html (easylistchina.txt: 1986) +.ad.12306.cn/res/.*\.html +# ||actoys.net/statics/js/index/ad.js (easylistchina.txt: 1985) .actoys.net/statics/js/index/ad\.js -# ||actoys.net/js/beitou.js (easylistchina+easylist.txt: 1996) +# ||actoys.net/js/beitou.js (easylistchina.txt: 1984) .actoys.net/js/beitou\.js -# ||actoys.net/index.php?m=poster& (easylistchina+easylist.txt: 1995) +# ||actoys.net/index.php?m=poster& (easylistchina.txt: 1983) .actoys.net/index\.php\?m=poster& -# ||act.chinatimes.com/aimg/ (easylistchina+easylist.txt: 1994) +# ||act.chinatimes.com/aimg/ (easylistchina.txt: 1982) .act.chinatimes.com/aimg/ -# ||acsystem.wasu.cn^ (easylistchina+easylist.txt: 1993) +# ||acsystem.wasu.cn^ (easylistchina.txt: 1981) .acsystem.wasu.cn -# ||acode.b2b.cn/JS/ (easylistchina+easylist.txt: 1992) +# ||acode.b2b.cn/JS/ (easylistchina.txt: 1980) .acode.b2b.cn/JS/ -# ||acg.bz/2.gif (easylistchina+easylist.txt: 1990) +# ||acg.bz/2.gif (easylistchina.txt: 1978) .acg.bz/2\.gif -# ||acg.bz/1.jpg (easylistchina+easylist.txt: 1989) +# ||acg.bz/1.jpg (easylistchina.txt: 1977) .acg.bz/1\.jpg -# ||acg.178.com/s/manhua218_140.html (easylistchina+easylist.txt: 1987) +# ||acg.178.com/s/manhua218_140.html (easylistchina.txt: 1975) .acg.178.com/s/manhua218_140\.html -# ||acg.178.com/201302/t_ (easylistchina+easylist.txt: 1986) +# ||acg.178.com/201302/t_ (easylistchina.txt: 1974) .acg.178.com/201302/t_ -# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina+easylist.txt: 1985) +# ||acfun.tv/adnew.aspx?id= (easylistchina.txt: 1973) +.acfun.tv/adnew\.aspx\?id= +# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina.txt: 1972) .ac.tc.qq.com/store_file_download\?.*&dir_path=/admin/swf/ -# ||abcde.cn/2014images/*96060.jpg (easylistchina+easylist.txt: 1984) +# ||abcde.cn/2014images/*96060.jpg (easylistchina.txt: 1971) .abcde.cn/2014images/.*96060\.jpg -# ||abc.hkepc.com^ (easylistchina+easylist.txt: 1983) +# ||abc.hkepc.com^ (easylistchina.txt: 1970) .abc.hkepc.com -# ||ab.ahlife.com^*.swf (easylistchina+easylist.txt: 1982) +# ||ab.ahlife.com^*.swf (easylistchina.txt: 1969) .ab.ahlife.com/.*\.swf -# ||a67.com/a/*.js (easylistchina+easylist.txt: 1981) +# ||a67.com/a/*.js (easylistchina.txt: 1968) .a67.com/a/.*\.js -# ||a6.hujiang.com^ (easylistchina+easylist.txt: 1980) +# ||a6.hujiang.com^ (easylistchina.txt: 1967) .a6.hujiang.com -# ||a5.yeshj.com^ (easylistchina+easylist.txt: 1979) +# ||a5.yeshj.com^ (easylistchina.txt: 1966) .a5.yeshj.com -# ||a4.yeshj.com^ (easylistchina+easylist.txt: 1978) +# ||a4.yeshj.com^ (easylistchina.txt: 1965) .a4.yeshj.com -# ||a2.b310.com^ (easylistchina+easylist.txt: 1977) +# ||a2.b310.com^ (easylistchina.txt: 1964) .a2.b310.com -# ||a.xizi.com^ (easylistchina+easylist.txt: 1976) +# ||a.xizi.com^ (easylistchina.txt: 1963) .a.xizi.com -# ||a.kbcool.com/Mon_*.swf (easylistchina+easylist.txt: 1975) +# ||a.kbcool.com/Mon_*.swf (easylistchina.txt: 1962) .a.kbcool.com/Mon_.*\.swf -# ||a.jiaodong.net/a/2013/ (easylistchina+easylist.txt: 1974) +# ||a.jiaodong.net/a/2013/ (easylistchina.txt: 1961) .a.jiaodong.net/a/2013/ -# ||a.game.qidian.com/Show.aspx? (easylistchina+easylist.txt: 1973) +# ||a.game.qidian.com/Show.aspx? (easylistchina.txt: 1960) .a.game.qidian.com/Show\.aspx\? -# ||a.game.qidian.com/material/xs.js (easylistchina+easylist.txt: 1972) +# ||a.game.qidian.com/material/xs.js (easylistchina.txt: 1959) .a.game.qidian.com/material/xs\.js -# ||a.game.qidian.com/Layout.aspx? (easylistchina+easylist.txt: 1971) +# ||a.game.qidian.com/Layout.aspx? (easylistchina.txt: 1958) .a.game.qidian.com/Layout\.aspx\? -# ||a.baomihua.com^ (easylistchina+easylist.txt: 1970) +# ||a.baomihua.com^ (easylistchina.txt: 1957) .a.baomihua.com -# ||a-m-s.poco.cn^ (easylistchina+easylist.txt: 1969) +# ||a-m-s.poco.cn^ (easylistchina.txt: 1956) .a-m-s.poco.cn -# ||9ye.com/Files/Editor/ad/ (easylistchina+easylist.txt: 1968) +# ||9ye.com/Files/Editor/ad/ (easylistchina.txt: 1955) .9ye.com/Files/Editor/ad/ -# ||9w1an.com/special/ (easylistchina+easylist.txt: 1967) +# ||9w1an.com/special/ (easylistchina.txt: 1954) .9w1an.com/special/ -# ||9upk.com/images/95050.gif (easylistchina+easylist.txt: 1965) +# ||9upk.com/images/95050.gif (easylistchina.txt: 1952) .9upk.com/images/95050\.gif -# ||9sky.com/_gg/ (easylistchina+easylist.txt: 1964) +# ||9sky.com/_gg/ (easylistchina.txt: 1951) .9sky.com/_gg/ -# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina+easylist.txt: 1963) +# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina.txt: 1950) .9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00\.jpg -# ||9lala.com/js/ (easylistchina+easylist.txt: 1962) +# ||9lala.com/js/ (easylistchina.txt: 1949) .9lala.com/js/ -# ||9kjj.com/images/*.gif (easylistchina+easylist.txt: 1961) +# ||9kjj.com/images/*.gif (easylistchina.txt: 1948) .9kjj.com/images/.*\.gif -# ||9ist.com/others/ad/ (easylistchina+easylist.txt: 1960) +# ||9ist.com/others/ad/ (easylistchina.txt: 1947) .9ist.com/others/ad/ -# ||9ihome.com/info/ADTopvnet/ (easylistchina+easylist.txt: 1959) +# ||9ihome.com/info/ADTopvnet/ (easylistchina.txt: 1946) .9ihome.com/info/ADTopvnet/ -# ||9ihome.com/adimgs/ (easylistchina+easylist.txt: 1958) +# ||9ihome.com/adimgs/ (easylistchina.txt: 1945) .9ihome.com/adimgs/ -# ||9ht.com/skin2012/js/tlAd.js (easylistchina+easylist.txt: 1957) +# ||9ht.com/skin2012/js/tlAd.js (easylistchina.txt: 1944) .9ht.com/skin2012/js/tlAd\.js -# ||9ez.me/embd.php?type= (easylistchina+easylist.txt: 1956) +# ||9ez.me/embd.php?type= (easylistchina.txt: 1943) .9ez.me/embd\.php\?type= -# ||9duw.com/pic/ (easylistchina+easylist.txt: 1955) +# ||9duw.com/pic/ (easylistchina.txt: 1942) .9duw.com/pic/ -# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina+easylist.txt: 1954) +# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina.txt: 1941) .9db.cc/wp-content/themes/xiucaozuo/js/ifphone\.js -# ||99tianji.com/hack/kaifubiao.js (easylistchina+easylist.txt: 1953) +# ||99ting.cn/image/*.gif (easylistchina.txt: 1940) +.99ting.cn/image/.*\.gif +# ||99ting.cn/789uc/gg.js (easylistchina.txt: 1939) +.99ting.cn/789uc/gg\.js +# ||99tianji.com/hack/kaifubiao.js (easylistchina.txt: 1938) .99tianji.com/hack/kaifubiao\.js -# ||99re2.com/images/*.gif (easylistchina+easylist.txt: 1952) -.99re2.com/images/.*\.gif -# ||99re1.com/images/*.gif (easylistchina+easylist.txt: 1951) -.99re1.com/images/.*\.gif -# ||99re.com/images/close.gif (easylistchina+easylist.txt: 1950) -.99re.com/images/close\.gif -# ||99re.city/ads/ (easylistchina+easylist.txt: 1949) -.99re.city/ads/ -# ||99re.*/media/banners/ (easylistchina+easylist.txt: 1948) -.99re.*./(.*/)?media/banners/ -# ||99mst.com/upfiles/adv/main02.jpg (easylistchina+easylist.txt: 1947) +# ||99mst.com/upfiles/adv/main02.jpg (easylistchina.txt: 1937) .99mst.com/upfiles/adv/main02\.jpg -# ||99danji.com/otherhtml/ (easylistchina+easylist.txt: 1946) +# ||99danji.com/otherhtml/ (easylistchina.txt: 1936) .99danji.com/otherhtml/ -# ||99btgc01.info/uploads/2015/03/11111.jpg (easylistchina+easylist.txt: 1945) -.99btgc01.info/uploads/2015/03/11111\.jpg -# ||99btgc01.info/uploads/*.gif (easylistchina+easylist.txt: 1944) +# ||99btgc01.info/uploads/*.gif (easylistchina.txt: 1935) .99btgc01.info/uploads/.*\.gif -# ||9938.net/video/tvg/hot.js (easylistchina+easylist.txt: 1942) +# ||999sdh.com/tu/*.js (easylistchina.txt: 1934) +.999sdh.com/tu/.*\.js +# ||9938.net/video/tvg/hot.js (easylistchina.txt: 1932) .9938.net/video/tvg/hot\.js -# ||9938.net/video/tvg/footer.js (easylistchina+easylist.txt: 1941) +# ||9938.net/video/tvg/footer.js (easylistchina.txt: 1931) .9938.net/video/tvg/footer\.js -# ||97aa1.com/g/ (easylistchina+easylist.txt: 1940) +# ||97aa1.com/g/ (easylistchina.txt: 1930) .97aa1.com/g/ -# ||973.com/xyx/p.js (easylistchina+easylist.txt: 1939) +# ||973.com/xyx/p.js (easylistchina.txt: 1929) .973.com/xyx/p\.js -# ||969g.com/common/iframe/ (easylistchina+easylist.txt: 1938) +# ||969g.com/common/iframe/ (easylistchina.txt: 1928) .969g.com/common/iframe/ -# ||966266.com/a-d/ (easylistchina+easylist.txt: 1937) +# ||966266.com/a-d/ (easylistchina.txt: 1927) .966266.com/a-d/ -# ||962.net/skin/library/js/bt-index.js (easylistchina+easylist.txt: 1936) +# ||962.net/skin/library/js/bt-index.js (easylistchina.txt: 1926) .962.net/skin/library/js/bt-index\.js -# ||962.net/show/index_ (easylistchina+easylist.txt: 1935) +# ||962.net/show/index_ (easylistchina.txt: 1925) .962.net/show/index_ -# ||962.net/show/bt.js (easylistchina+easylist.txt: 1933) +# ||962.net/show/bt.js (easylistchina.txt: 1923) .962.net/show/bt\.js -# ||962.net/show/all.js (easylistchina+easylist.txt: 1931) +# ||962.net/show/all.js (easylistchina.txt: 1921) .962.net/show/all\.js -# ||96.43.97.243^ (easylistchina+easylist.txt: 1930) +# ||96.43.97.243^ (easylistchina.txt: 1920) .96.43.97.243 -# ||9553.com/otherhtml/ (easylistchina+easylist.txt: 1929) +# ||9553.com/otherhtml/ (easylistchina.txt: 1919) .9553.com/otherhtml/ -# ||94994.com*/js/plugin/shoppingMall/ (easylistchina+easylist.txt: 1928) +# ||94994.com*/js/plugin/shoppingMall/ (easylistchina.txt: 1918) .94994.com*./(.*/)?js/plugin/shoppingMall/ -# ||93t.cc/template/93t/images/41550.gif (easylistchina+easylist.txt: 1927) +# ||93t.cc/template/93t/images/41550.gif (easylistchina.txt: 1917) .93t.cc/template/93t/images/41550\.gif -# ||93994.com/templets/images/dashan.jpg (easylistchina+easylist.txt: 1926) +# ||93994.com/templets/images/dashan.jpg (easylistchina.txt: 1916) .93994.com/templets/images/dashan\.jpg -# ||92wav.com/rj/*.gif (easylistchina+easylist.txt: 1925) +# ||92wav.com/rj/*.gif (easylistchina.txt: 1915) .92wav.com/rj/.*\.gif -# ||92dp.com/home/showg?id= (easylistchina+easylist.txt: 1924) +# ||92dp.com/home/showg?id= (easylistchina.txt: 1914) .92dp.com/home/showg\?id= -# ||92dp.com/dianping/videoad (easylistchina+easylist.txt: 1923) +# ||92dp.com/dianping/videoad (easylistchina.txt: 1913) .92dp.com/dianping/videoad -# ||91danji.com/js/lmt.js (easylistchina+easylist.txt: 1922) +# ||91danji.com/js/lmt.js (easylistchina.txt: 1912) .91danji.com/js/lmt\.js -# ||91danji.com/images/*.jpg (easylistchina+easylist.txt: 1921) +# ||91danji.com/images/*.jpg (easylistchina.txt: 1911) .91danji.com/images/.*\.jpg -# ||91danji.com/asset/temp/91danji- (easylistchina+easylist.txt: 1920) +# ||91danji.com/asset/temp/91danji- (easylistchina.txt: 1910) .91danji.com/asset/temp/91danji- -# ||918999.com/xjgg/ (easylistchina+easylist.txt: 1919) +# ||918999.com/xjgg/ (easylistchina.txt: 1909) .918999.com/xjgg/ -# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina+easylist.txt: 1918) +# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina.txt: 1908) .91.com/uploads/game/.*-%E5%B9%BF%E5%91%8A\. -# ||91.com/hezuo/ (easylistchina+easylist.txt: 1917) +# ||91.com/hezuo/ (easylistchina.txt: 1907) .91.com/hezuo/ -# ||91.com/*/hezuo/ (easylistchina+easylist.txt: 1916) +# ||91.com/*/hezuo/ (easylistchina.txt: 1906) .91.com/.*/hezuo/ -# ||90zy.cn/data/attachment/portal/ (easylistchina+easylist.txt: 1915) +# ||90zy.cn/data/attachment/portal/ (easylistchina.txt: 1905) .90zy.cn/data/attachment/portal/ -# ||90vs.com/img/cs/ (easylistchina+easylist.txt: 1914) -.90vs.com/img/cs/ -# ||90oo.com/tp/w981.gif (easylistchina+easylist.txt: 1913) +# ||90oo.com/tp/w981.gif (easylistchina.txt: 1904) .90oo.com/tp/w981\.gif -# ||90oo.com/tp/msn.jpg (easylistchina+easylist.txt: 1912) +# ||90oo.com/tp/msn.jpg (easylistchina.txt: 1903) .90oo.com/tp/msn\.jpg -# ||90oo.com/tp/js (easylistchina+easylist.txt: 1911) +# ||90oo.com/tp/js (easylistchina.txt: 1902) .90oo.com/tp/js -# ||90oo.com/tp/hg (easylistchina+easylist.txt: 1910) +# ||90oo.com/tp/hg (easylistchina.txt: 1901) .90oo.com/tp/hg -# ||90oo.com/tp/down.gif (easylistchina+easylist.txt: 1909) +# ||90oo.com/tp/down.gif (easylistchina.txt: 1900) .90oo.com/tp/down\.gif -# ||90oo.com/tp/90232.jpg (easylistchina+easylist.txt: 1908) +# ||90oo.com/tp/90232.jpg (easylistchina.txt: 1899) .90oo.com/tp/90232\.jpg -# ||90oo.com/tp/40 (easylistchina+easylist.txt: 1907) +# ||90oo.com/tp/40 (easylistchina.txt: 1898) .90oo.com/tp/40 -# ||90oo.com/tp/*980.gif (easylistchina+easylist.txt: 1906) +# ||90oo.com/tp/*980.gif (easylistchina.txt: 1897) .90oo.com/tp/.*980\.gif -# ||90bifen.net/images/c_ad_ (easylistchina+easylist.txt: 1905) +# ||90bifen.net/images/c_ad_ (easylistchina.txt: 1896) .90bifen.net/images/c_ad_ -# ||9091tv.com/Runtime/js/vod (easylistchina+easylist.txt: 1904) +# ||9091tv.com/Runtime/js/vod (easylistchina.txt: 1895) .9091tv.com/Runtime/js/vod -# ||9091tv.com/Runtime/js/topguanggao (easylistchina+easylist.txt: 1903) +# ||9091tv.com/Runtime/js/topguanggao (easylistchina.txt: 1894) .9091tv.com/Runtime/js/topguanggao -# ||9091tv.com/hhhh.htm (easylistchina+easylist.txt: 1902) +# ||9091tv.com/hhhh.htm (easylistchina.txt: 1893) .9091tv.com/hhhh\.htm -# ||9091tv.com/dy/mtu.swf (easylistchina+easylist.txt: 1901) +# ||9091tv.com/dy/mtu.swf (easylistchina.txt: 1892) .9091tv.com/dy/mtu\.swf -# ||9000wy.com/style/js/2015content.js (easylistchina+easylist.txt: 1900) +# ||9000wy.com/style/js/2015content.js (easylistchina.txt: 1891) .9000wy.com/style/js/2015content\.js -# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina+easylist.txt: 1899) +# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina.txt: 1890) .900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi\.gif -# ||8vod.net/detail/vod_*.js (easylistchina+easylist.txt: 1898) +# ||8vod.net/detail/vod_*.js (easylistchina.txt: 1889) .8vod.net/detail/vod_.*\.js -# ||8vod.net/detail/play_*.js (easylistchina+easylist.txt: 1897) +# ||8vod.net/detail/play_*.js (easylistchina.txt: 1888) .8vod.net/detail/play_.*\.js -# ||8jkx.com^ (easylistchina+easylist.txt: 1896) +# ||8jkx.com^ (easylistchina.txt: 1886) .8jkx.com -# ||8d8d.me/images/dealer.gif (easylistchina+easylist.txt: 1894) +# ||8d8d.me/images/dealer.gif (easylistchina.txt: 1884) .8d8d.me/images/dealer\.gif -# ||88liu.com/data/attachment/portal/ (easylistchina+easylist.txt: 1893) +# ||88liu.com/data/attachment/portal/ (easylistchina.txt: 1883) .88liu.com/data/attachment/portal/ -# ||88gs.com/agfile/ (easylistchina+easylist.txt: 1892) +# ||88gs.com/agfile/ (easylistchina.txt: 1882) .88gs.com/agfile/ -# ||8888nn.com/sxgg/13.js (easylistchina+easylist.txt: 1891) -.8888nn.com/sxgg/13\.js -# ||8888nn.com/sxgg/12.js (easylistchina+easylist.txt: 1890) -.8888nn.com/sxgg/12\.js -# ||88448.com/images/gj/ (easylistchina+easylist.txt: 1889) +# ||88448.com/images/gj/ (easylistchina.txt: 1881) .88448.com/images/gj/ -# ||87994.com/images/rili.gif (easylistchina+easylist.txt: 1888) +# ||880fg.com/css/*.js (easylistchina.txt: 1880) +.880fg.com/css/.*\.js +# ||87994.com/images/rili.gif (easylistchina.txt: 1879) .87994.com/images/rili\.gif -# ||86file.megajoy.com^ (easylistchina+easylist.txt: 1887) +# ||86file.megajoy.com^ (easylistchina.txt: 1878) .86file.megajoy.com -# ||8684.com/com/sys_ad_ (easylistchina+easylist.txt: 1886) +# ||8684.com/com/sys_ad_ (easylistchina.txt: 1877) .8684.com/com/sys_ad_ -# ||8684.com/baidu/c.js (easylistchina+easylist.txt: 1885) +# ||8684.com/baidu/c.js (easylistchina.txt: 1876) .8684.com/baidu/c\.js -# ||8684.com/20150123/f3d37541.jpg (easylistchina+easylist.txt: 1884) +# ||8684.com/20150123/f3d37541.jpg (easylistchina.txt: 1875) .8684.com/20150123/f3d37541\.jpg -# ||8684.cn/id/ad_ (easylistchina+easylist.txt: 1883) +# ||8684.cn/id/ad_ (easylistchina.txt: 1874) .8684.cn/id/ad_ -# ||86696.com/images/indexad.jpg (easylistchina+easylist.txt: 1882) +# ||8683ys.com/template/380x60.gif (easylistchina.txt: 1873) +.8683ys.com/template/380x60\.gif +# ||86696.com/images/indexad.jpg (easylistchina.txt: 1872) .86696.com/images/indexad\.jpg -# ||855699.com^*qq.js (easylistchina+easylist.txt: 1881) +# ||855699.com^*qq.js (easylistchina.txt: 1871) .855699.com/.*qq\.js -# ||855699.com/piao.js (easylistchina+easylist.txt: 1880) +# ||855699.com/piao.js (easylistchina.txt: 1870) .855699.com/piao\.js -# ||83133.com/api/ (easylistchina+easylist.txt: 1879) +# ||83133.com/api/ (easylistchina.txt: 1869) .83133.com/api/ -# ||81qi.com/d/js/ (easylistchina+easylist.txt: 1878) +# ||81qi.com/d/js/ (easylistchina.txt: 1868) .81qi.com/d/js/ -# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina+easylist.txt: 1877) +# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina.txt: 1867) .81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02\.jpg -# ||80txt.com/js3*.gif (easylistchina+easylist.txt: 1876) +# ||80txt.com/js3*.gif (easylistchina.txt: 1866) .80txt.com/js3.*\.gif -# ||801.tianyaui.com^ (easylistchina+easylist.txt: 1875) +# ||801.tianyaui.com^ (easylistchina.txt: 1865) .801.tianyaui.com -# ||800j.com.cn/index.php?m=poster& (easylistchina+easylist.txt: 1874) +# ||800j.com.cn/index.php?m=poster& (easylistchina.txt: 1864) .800j.com.cn/index\.php\?m=poster& -# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina+easylist.txt: 1873) +# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina.txt: 1863) .800j.com.cn/api\.php\?op=itemtopbanner& -# ||800j.com.cn/2014ad/ (easylistchina+easylist.txt: 1872) +# ||800j.com.cn/2014ad/ (easylistchina.txt: 1862) .800j.com.cn/2014ad/ -# ||800j.com.cn/2013ad/ (easylistchina+easylist.txt: 1871) +# ||800j.com.cn/2013ad/ (easylistchina.txt: 1861) .800j.com.cn/2013ad/ -# ||8*.tianya.cn^ (easylistchina+easylist.txt: 1870) +# ||8*.tianya.cn^ (easylistchina.txt: 1860) .8*./.*\.tianya\.cn[^\w%.-] .8*.tianya.cn -# ||7y7.com/js/7y7.ad. (easylistchina+easylist.txt: 1869) +# ||7y7.com/js/7y7.ad. (easylistchina.txt: 1859) .7y7.com/js/7y7\.ad\. -# ||7xdown.com/youid/ (easylistchina+easylist.txt: 1868) +# ||7xdown.com/youid/ (easylistchina.txt: 1858) .7xdown.com/youid/ -# ||7xdown.com/idcgg/ (easylistchina+easylist.txt: 1867) +# ||7xdown.com/idcgg/ (easylistchina.txt: 1857) .7xdown.com/idcgg/ -# ||7vk.com/detail/ (easylistchina+easylist.txt: 1866) +# ||7vk.com/detail/ (easylistchina.txt: 1856) .7vk.com/detail/ -# ||7scs.com/js/TOP.js (easylistchina+easylist.txt: 1865) +# ||7scs.com/js/TOP.js (easylistchina.txt: 1855) .7scs.com/js/TOP\.js -# ||7mad.7m.cn^ (easylistchina+easylist.txt: 1864) +# ||7mad.7m.cn^ (easylistchina.txt: 1854) .7mad.7m.cn -# ||7m.cn/v2/js/analysebanner.js (easylistchina+easylist.txt: 1863) +# ||7m.cn/v2/js/analysebanner.js (easylistchina.txt: 1853) .7m.cn/v2/js/analysebanner\.js -# ||7m.cn/analyse/include/*_ (easylistchina+easylist.txt: 1862) +# ||7m.cn/analyse/include/*_ (easylistchina.txt: 1852) .7m.cn/analyse/include/.*_ -# ||7kankan.com/scripts/new/indext (easylistchina+easylist.txt: 1861) +# ||7kankan.com/scripts/new/indext (easylistchina.txt: 1851) .7kankan.com/scripts/new/indext -# ||7kankan.com/c/123.gif (easylistchina+easylist.txt: 1860) +# ||7kankan.com/c/123.gif (easylistchina.txt: 1850) .7kankan.com/c/123\.gif -# ||7k7k.com/loading/loading.htm (easylistchina+easylist.txt: 1859) +# ||7k7k.com/loading/loading.htm (easylistchina.txt: 1849) .7k7k.com/loading/loading\.htm -# ||7k7k.com/ad-*.htm (easylistchina+easylist.txt: 1858) +# ||7k7k.com/ad-*.htm (easylistchina.txt: 1848) .7k7k.com/ad-.*\.htm -# ||7edown.com/greensoft/js/ (easylistchina+easylist.txt: 1857) +# ||7edown.com/greensoft/js/ (easylistchina.txt: 1847) .7edown.com/greensoft/js/ -# ||7dsw.com/web8/js/ (easylistchina+easylist.txt: 1856) +# ||7dsw.com/web8/js/ (easylistchina.txt: 1846) .7dsw.com/web8/js/ -# ||7c.com/7c_*.html? (easylistchina+easylist.txt: 1855) +# ||7c.com/7c_*.html? (easylistchina.txt: 1845) .7c.com/7c_.*\.html\? -# ||79pan.com/gao.gif (easylistchina+easylist.txt: 1854) +# ||79pan.com/gao.gif (easylistchina.txt: 1844) .79pan.com/gao\.gif -# ||78land.com/js/fumeiti.js (easylistchina+easylist.txt: 1853) +# ||78land.com/js/fumeiti.js (easylistchina.txt: 1843) .78land.com/js/fumeiti\.js -# ||78dm.net/images/mingren250.jpg (easylistchina+easylist.txt: 1852) +# ||78dm.net/images/mingren250.jpg (easylistchina.txt: 1842) .78dm.net/images/mingren250\.jpg -# ||789pan.com/templates/default/images/kuping.gif (easylistchina+easylist.txt: 1851) +# ||789pan.com/templates/default/images/kuping.gif (easylistchina.txt: 1841) .789pan.com/templates/default/images/kuping\.gif -# ||77kp.com/bd/ (easylistchina+easylist.txt: 1850) +# ||77kp.com/bd/ (easylistchina.txt: 1840) .77kp.com/bd/ -# ||77bike.com/img/tern.swf (easylistchina+easylist.txt: 1849) +# ||77bike.com/img/tern.swf (easylistchina.txt: 1839) .77bike.com/img/tern\.swf -# ||77bike.com/img/sticker.gif (easylistchina+easylist.txt: 1848) +# ||77bike.com/img/sticker.gif (easylistchina.txt: 1838) .77bike.com/img/sticker\.gif -# ||77bike.com/img/fsir.gif (easylistchina+easylist.txt: 1847) +# ||77bike.com/img/fsir.gif (easylistchina.txt: 1837) .77bike.com/img/fsir\.gif -# ||777g.me/cs/ (easylistchina+easylist.txt: 1846) +# ||777g.me/cs/ (easylistchina.txt: 1836) .777g.me/cs/ -# ||77119.com/js/ (easylistchina+easylist.txt: 1845) +# ||77119.com/js/ (easylistchina.txt: 1835) .77119.com/js/ -# ||76xh.com/skin/zxf/js/ad (easylistchina+easylist.txt: 1844) +# ||76xh.com/skin/zxf/js/ad (easylistchina.txt: 1834) .76xh.com/skin/zxf/js/ad -# ||766.com/upbox2/js/*.js (easylistchina+easylist.txt: 1843) +# ||766.com/upbox2/js/*.js (easylistchina.txt: 1833) .766.com/upbox2/js/.*\.js -# ||76.73.85.179/js/v1.js (easylistchina+easylist.txt: 1842) +# ||76.73.85.179/js/v1.js (easylistchina.txt: 1832) .76.73.85.179/js/v1\.js -# ||75.125.41.29:8080/ (easylistchina+easylist.txt: 1841) +# ||75.125.41.29:8080/ (easylistchina.txt: 1831) .75.125.41.29:8080 -# ||73ts.com/data/0000/08/14164486880364.gif (easylistchina+easylist.txt: 1840) -.73ts.com/data/0000/08/14164486880364\.gif -# ||73p37.com/js/top (easylistchina+easylist.txt: 1839) +# ||73p37.com/js/top (easylistchina.txt: 1830) .73p37.com/js/top -# ||73p37.com/js/playad.html (easylistchina+easylist.txt: 1838) +# ||73p37.com/js/playad.html (easylistchina.txt: 1829) .73p37.com/js/playad\.html -# ||73p37.com/js/bottomall.js (easylistchina+easylist.txt: 1837) +# ||73p37.com/js/bottomall.js (easylistchina.txt: 1828) .73p37.com/js/bottomall\.js -# ||72bbb.com/images/12.gif (easylistchina+easylist.txt: 1836) +# ||72bbb.com/images/12.gif (easylistchina.txt: 1827) .72bbb.com/images/12\.gif -# ||726w.com/sohu.html (easylistchina+easylist.txt: 1835) +# ||726w.com/sohu.html (easylistchina.txt: 1826) .726w.com/sohu\.html -# ||70.86.24.120:8060/ (easylistchina+easylist.txt: 1834) +# ||70.86.24.120:8060/ (easylistchina.txt: 1825) .70.86.24.120:8060 -# ||6vhao.com/d/f*.js (easylistchina+easylist.txt: 1833) +# ||6vhao.com/d/f*.js (easylistchina.txt: 1824) .6vhao.com/d/f.*\.js -# ||6vhao.com/d/960.js (easylistchina+easylist.txt: 1832) +# ||6vhao.com/d/960.js (easylistchina.txt: 1823) .6vhao.com/d/960\.js -# ||6vdy.com/d/f*.js (easylistchina+easylist.txt: 1831) +# ||6vdy.com/d/f*.js (easylistchina.txt: 1822) .6vdy.com/d/f.*\.js -# ||6vdy.com/d/960.js (easylistchina+easylist.txt: 1830) +# ||6vdy.com/d/960.js (easylistchina.txt: 1821) .6vdy.com/d/960\.js -# ||6park.com/wap/ (easylistchina+easylist.txt: 1828) +# ||6park.com/wap/ (easylistchina.txt: 1819) .6park.com/wap/ -# ||6park.com/img/15.png (easylistchina+easylist.txt: 1825) +# ||6park.com/img/15.png (easylistchina.txt: 1816) .6park.com/img/15\.png -# ||6ddd.com/js/myfiles/down_ (easylistchina+easylist.txt: 1824) +# ||6ddd.com/js/myfiles/down_ (easylistchina.txt: 1815) .6ddd.com/js/myfiles/down_ -# ||6ddd.com/js/myfiles/banner.js (easylistchina+easylist.txt: 1823) +# ||6ddd.com/js/myfiles/banner.js (easylistchina.txt: 1814) .6ddd.com/js/myfiles/banner\.js -# ||6d245gxt.52pk.com^ (easylistchina+easylist.txt: 1822) +# ||6d245gxt.52pk.com^ (easylistchina.txt: 1813) .6d245gxt.52pk.com -# ||69nh.com/detail/player_ (easylistchina+easylist.txt: 1821) +# ||69nh.com/detail/player_ (easylistchina.txt: 1812) .69nh.com/detail/player_ -# ||6949.com/ggs_ (easylistchina+easylist.txt: 1820) +# ||6949.com/ggs_ (easylistchina.txt: 1811) .6949.com/ggs_ -# ||6949.com/640x44.htm (easylistchina+easylist.txt: 1819) +# ||6949.com/640x44.htm (easylistchina.txt: 1810) .6949.com/640x44\.htm -# ||69.30.217.155^*.png (easylistchina+easylist.txt: 1818) +# ||69.30.217.155^*.png (easylistchina.txt: 1809) .69.30.217.155/.*\.png -# ||68design.net/inc/news. (easylistchina+easylist.txt: 1817) +# ||68design.net/inc/news. (easylistchina.txt: 1808) .68design.net/inc/news\. -# ||676000.com/001.htm (easylistchina+easylist.txt: 1816) +# ||676000.com/001.htm (easylistchina.txt: 1807) .676000.com/001\.htm -# ||67.159.44.187/js/v1.js (easylistchina+easylist.txt: 1815) +# ||67.159.44.187/js/v1.js (easylistchina.txt: 1806) .67.159.44.187/js/v1\.js -# ||66xinxin.com/js/ads888/ (easylistchina+easylist.txt: 1813) +# ||66xinxin.com/js/ads888/ (easylistchina.txt: 1804) .66xinxin.com/js/ads888/ -# ||66wz.com/data/attachment/portal/ (easylistchina+easylist.txt: 1812) +# ||66wz.com/data/attachment/portal/ (easylistchina.txt: 1803) .66wz.com/data/attachment/portal/ -# ||66wz.com/adv2/ (easylistchina+easylist.txt: 1811) +# ||66wz.com/adv2/ (easylistchina.txt: 1802) .66wz.com/adv2/ -# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina+easylist.txt: 1810) +# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina.txt: 1801) .66wz.com/48aa9454edd446fbef0df9e9aa5997f4\.gif -# ||66rd.cn^*96060 (easylistchina+easylist.txt: 1809) +# ||66rd.cn^*96060 (easylistchina.txt: 1800) .66rd.cn/.*96060 -# ||66rd.cn^*120250. (easylistchina+easylist.txt: 1808) +# ||66rd.cn^*120250. (easylistchina.txt: 1799) .66rd.cn/.*120250\. -# ||66rd.cn^*100060. (easylistchina+easylist.txt: 1807) +# ||66rd.cn^*100060. (easylistchina.txt: 1798) .66rd.cn/.*100060\. -# ||66rd.cn^*1000300. (easylistchina+easylist.txt: 1806) +# ||66rd.cn^*1000300. (easylistchina.txt: 1797) .66rd.cn/.*1000300\. -# ||66rd.cn/pic/rdwmh800.gif (easylistchina+easylist.txt: 1805) +# ||66rd.cn/pic/rdwmh800.gif (easylistchina.txt: 1796) .66rd.cn/pic/rdwmh800\.gif -# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina+easylist.txt: 1804) +# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina.txt: 1795) .66rd.cn/pic/rdrccs2014\.jpg -# ||66rd.cn/pic/itv130.jpg (easylistchina+easylist.txt: 1803) +# ||66rd.cn/pic/itv130.jpg (easylistchina.txt: 1794) .66rd.cn/pic/itv130\.jpg -# ||66rd.cn/pic/*1000. (easylistchina+easylist.txt: 1802) +# ||66rd.cn/pic/*1000. (easylistchina.txt: 1793) .66rd.cn/pic/.*1000\. -# ||66rd.cn/js/foot.js (easylistchina+easylist.txt: 1801) +# ||66rd.cn/js/foot.js (easylistchina.txt: 1792) .66rd.cn/js/foot\.js -# ||66ip.cn/klz/953X164.gif (easylistchina+easylist.txt: 1800) +# ||66ip.cn/klz/953X164.gif (easylistchina.txt: 1791) .66ip.cn/klz/953X164\.gif -# ||66ip.cn/common/img/yaoyao.jpg (easylistchina+easylist.txt: 1799) +# ||66ip.cn/common/img/yaoyao.jpg (easylistchina.txt: 1790) .66ip.cn/common/img/yaoyao\.jpg -# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina+easylist.txt: 1798) +# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina.txt: 1789) .66hbo.com/images/new1/uploads/index_banner/.*\.jpg -# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina+easylist.txt: 1797) +# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina.txt: 1788) .66hbo.com/images/new1/uploads/index_banner/.*\.gif -# ||666pan.com/666a/ (easylistchina+easylist.txt: 1795) +# ||666pan.com/666a/ (easylistchina.txt: 1786) .666pan.com/666a/ -# ||666kv.com/adstaic/ (easylistchina+easylist.txt: 1794) -.666kv.com/adstaic/ -# ||6665432.com^*.gif (easylistchina+easylist.txt: 1793) +# ||6665432.com^*.gif (easylistchina.txt: 1785) .6665432.com/.*\.gif -# ||66384.com/templets/SWFad (easylistchina+easylist.txt: 1792) +# ||66384.com/templets/SWFad (easylistchina.txt: 1784) .66384.com/templets/SWFad -# ||66384.com/templets/js/stats.js (easylistchina+easylist.txt: 1791) +# ||66384.com/templets/js/stats.js (easylistchina.txt: 1783) .66384.com/templets/js/stats\.js -# ||66.fmx.cn/js/ (easylistchina+easylist.txt: 1790) +# ||6620070.com/js/ (easylistchina.txt: 1782) +.6620070.com/js/ +# ||66.fmx.cn/js/ (easylistchina.txt: 1781) .66.fmx.cn/js/ -# ||654mmm.com^ (easylistchina+easylist.txt: 1789) +# ||654mmm.com^ (easylistchina.txt: 1780) .654mmm.com -# ||62422.cn/js/inc/13.swf (easylistchina+easylist.txt: 1788) +# ||62422.cn/js/inc/13.swf (easylistchina.txt: 1779) .62422.cn/js/inc/13\.swf -# ||62422.cn/ggimg/ (easylistchina+easylist.txt: 1787) +# ||62422.cn/ggimg/ (easylistchina.txt: 1778) .62422.cn/ggimg/ -# ||61.235.249.195^*/Default.aspx?id= (easylistchina+easylist.txt: 1786) +# ||61.235.249.195^*/Default.aspx?id= (easylistchina.txt: 1777) .61.235.249.195/.*/Default\.aspx\?id= -# ||61.164.108.184^*.swf (easylistchina+easylist.txt: 1785) +# ||61.164.108.184^*.swf (easylistchina.txt: 1776) .61.164.108.184/.*\.swf -# ||61.164.108.184^*.gif (easylistchina+easylist.txt: 1784) +# ||61.164.108.184^*.gif (easylistchina.txt: 1775) .61.164.108.184/.*\.gif -# ||61.164.108.104:4275/*.gif (easylistchina+easylist.txt: 1783) +# ||61.164.108.104:4275/*.gif (easylistchina.txt: 1774) .61.164.108.104:4275/.*\.gif -# ||61.147.92.251:81/120x160.asp (easylistchina+easylist.txt: 1782) +# ||61.147.92.251:81/120x160.asp (easylistchina.txt: 1773) .61.147.92.251:81/120x160\.asp -# ||61.143.225.176:818/nowscore/ (easylistchina+easylist.txt: 1781) +# ||61.143.225.176:818/nowscore/ (easylistchina.txt: 1772) .61.143.225.176:818/nowscore/ -# ||60808.org/a/*.jpg (easylistchina+easylist.txt: 1780) +# ||60808.org/a/*.jpg (easylistchina.txt: 1771) .60808.org/a/.*\.jpg -# ||600km.com/template/*/ad/ (easylistchina+easylist.txt: 1779) +# ||600km.com/template/*/ad/ (easylistchina.txt: 1770) .600km.com/template/.*/ad/ -# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina+easylist.txt: 1778) +# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina.txt: 1769) .600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ -# ||6.gy/wp-content/uploads/*/ad (easylistchina+easylist.txt: 1777) +# ||6.gy/wp-content/uploads/*/ad (easylistchina.txt: 1768) .6.gy/wp-content/uploads/.*/ad -# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina+easylist.txt: 1776) +# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina.txt: 1767) .6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40\.jpg -# ||6.cn/coop/pub/getRand.php? (easylistchina+easylist.txt: 1775) +# ||6.cn/coop/pub/getRand.php? (easylistchina.txt: 1766) .6.cn/coop/pub/getRand\.php\? -# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina+easylist.txt: 1774) +# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina.txt: 1765) .6.cn/coop/pub/getMiniPage\.php\?src= -# ||5ydj.com/js/shop.js (easylistchina+easylist.txt: 1773) +# ||5ydj.com/js/shop.js (easylistchina.txt: 1764) .5ydj.com/js/shop\.js -# ||5ydj.com/js/hometj.js (easylistchina+easylist.txt: 1772) +# ||5ydj.com/js/hometj.js (easylistchina.txt: 1763) .5ydj.com/js/hometj\.js -# ||5ydj.com/images/banner/ (easylistchina+easylist.txt: 1771) +# ||5ydj.com/images/banner/ (easylistchina.txt: 1762) .5ydj.com/images/banner/ -# ||5y9nfpes.52pk.com^ (easylistchina+easylist.txt: 1770) +# ||5y9nfpes.52pk.com^ (easylistchina.txt: 1761) .5y9nfpes.52pk.com -# ||5vdd.com/opear.jpg (easylistchina+easylist.txt: 1769) +# ||5vdd.com/opear.jpg (easylistchina.txt: 1760) .5vdd.com/opear\.jpg -# ||5vdd.com/iqiyi.jpg (easylistchina+easylist.txt: 1768) +# ||5vdd.com/iqiyi.jpg (easylistchina.txt: 1759) .5vdd.com/iqiyi\.jpg -# ||5vdd.com/ie.gif (easylistchina+easylist.txt: 1767) +# ||5vdd.com/ie.gif (easylistchina.txt: 1758) .5vdd.com/ie\.gif -# ||5vdd.com/2345ws.jpg (easylistchina+easylist.txt: 1766) +# ||5vdd.com/2345ws.jpg (easylistchina.txt: 1757) .5vdd.com/2345ws\.jpg -# ||5tps.com/js/bo_al.js (easylistchina+easylist.txt: 1765) +# ||5tps.com/js/bo_al.js (easylistchina.txt: 1756) .5tps.com/js/bo_al\.js -# ||5tps.com/js/al_ (easylistchina+easylist.txt: 1764) +# ||5tps.com/js/al_ (easylistchina.txt: 1755) .5tps.com/js/al_ -# ||5moe.com/player/ad.xml (easylistchina+easylist.txt: 1763) +# ||5moe.com/player/ad.xml (easylistchina.txt: 1754) .5moe.com/player/ad\.xml -# ||5iyq.com/skin/default/js/topad (easylistchina+easylist.txt: 1762) +# ||5iyq.com/skin/default/js/topad (easylistchina.txt: 1753) .5iyq.com/skin/default/js/topad -# ||5ips.net/love/ (easylistchina+easylist.txt: 1761) +# ||5ips.net/love/ (easylistchina.txt: 1752) .5ips.net/love/ -# ||5imx.com/BBS/image/img/ (easylistchina+easylist.txt: 1760) +# ||5imx.com/BBS/image/img/ (easylistchina.txt: 1751) .5imx.com/BBS/image/img/ -# ||5imx.com/BBS/image/image/ (easylistchina+easylist.txt: 1759) +# ||5imx.com/BBS/image/image/ (easylistchina.txt: 1750) .5imx.com/BBS/image/image/ -# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina+easylist.txt: 1758) +# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina.txt: 1749) .5imx.com/BBS/data/attachment/common/news/ -# ||5ilog.com/qq/js/jsgg.js (easylistchina+easylist.txt: 1757) +# ||5ilog.com/qq/js/jsgg.js (easylistchina.txt: 1748) .5ilog.com/qq/js/jsgg\.js -# ||5icool.org/uploadfile/poster/1080x60. (easylistchina+easylist.txt: 1756) +# ||5icool.org/uploadfile/poster/1080x60. (easylistchina.txt: 1747) .5icool.org/uploadfile/poster/1080x60\. -# ||5i.com/include/js/ad_ (easylistchina+easylist.txt: 1755) +# ||5i.com/include/js/ad_ (easylistchina.txt: 1746) .5i.com/include/js/ad_ -# ||5i.com/images/5ibbtangct.js (easylistchina+easylist.txt: 1754) +# ||5i.com/images/5ibbtangct.js (easylistchina.txt: 1745) .5i.com/images/5ibbtangct\.js -# ||5dmail.net/js/ (easylistchina+easylist.txt: 1753) +# ||5dmail.net/js/ (easylistchina.txt: 1744) .5dmail.net/js/ -# ||5dmail.net/image/ORF_1000.gif (easylistchina+easylist.txt: 1752) +# ||5dmail.net/image/ORF_1000.gif (easylistchina.txt: 1743) .5dmail.net/image/ORF_1000\.gif -# ||5dmail.net/image/ad_ (easylistchina+easylist.txt: 1751) +# ||5dmail.net/image/ad_ (easylistchina.txt: 1742) .5dmail.net/image/ad_ -# ||5adm.net/79070.gif (easylistchina+easylist.txt: 1749) +# ||5adm.net/79070.gif (easylistchina.txt: 1740) .5adm.net/79070\.gif -# ||5944.net/source/css/images/ad_ (easylistchina+easylist.txt: 1748) +# ||5944.net/source/css/images/ad_ (easylistchina.txt: 1739) .5944.net/source/css/images/ad_ -# ||591hx.com/zyrk_dy/gwjl.html (easylistchina+easylist.txt: 1747) +# ||592siwa.com/tools/ (easylistchina.txt: 1738) +.592siwa.com/tools/ +# ||591hx.com/zyrk_dy/gwjl.html (easylistchina.txt: 1737) .591hx.com/zyrk_dy/gwjl\.html -# ||591hx.com/lunbo/ (easylistchina+easylist.txt: 1746) +# ||591hx.com/lunbo/ (easylistchina.txt: 1736) .591hx.com/lunbo/ -# ||591hx.com/js/floatbox.js (easylistchina+easylist.txt: 1745) +# ||591hx.com/js/floatbox.js (easylistchina.txt: 1735) .591hx.com/js/floatbox\.js -# ||591hx.com/js/dll.js (easylistchina+easylist.txt: 1744) +# ||591hx.com/js/dll.js (easylistchina.txt: 1734) .591hx.com/js/dll\.js -# ||591hx.com/images/0000.jpg (easylistchina+easylist.txt: 1743) +# ||591hx.com/images/0000.jpg (easylistchina.txt: 1733) .591hx.com/images/0000\.jpg -# ||591.xxx/media/banners/ (easylistchina+easylist.txt: 1742) -.591.xxx/media/banners/ -# ||591.xxx/images/*.gif (easylistchina+easylist.txt: 1741) -.591.xxx/images/.*\.gif -# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina+easylist.txt: 1740) +# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina.txt: 1732) .59.36.101.209:888/link/vc_280x192\.gif -# ||58cdn.com.cn/ds/tgbrand/ (easylistchina+easylist.txt: 1739) +# ||58cdn.com.cn/ds/tgbrand/ (easylistchina.txt: 1731) .58cdn.com.cn/ds/tgbrand/ -# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina+easylist.txt: 1738) -# ||58.com/ui7/*banner_ (easylistchina+easylist.txt: 1737) +# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina.txt: 1730) +# ||58.com/ui7/*banner_ (easylistchina.txt: 1729) .58.com/ui7/.*banner_ -# ||58.com/show/ads? (easylistchina+easylist.txt: 1736) +# ||58.com/show/ads? (easylistchina.txt: 1728) .58.com/show/ads\? -# ||58.com/ds/tgbrand/ (easylistchina+easylist.txt: 1735) +# ||58.com/ds/tgbrand/ (easylistchina.txt: 1727) .58.com/ds/tgbrand/ -# ||58.com/ds/jinrong/ban/ (easylistchina+easylist.txt: 1734) +# ||58.com/ds/jinrong/ban/ (easylistchina.txt: 1726) .58.com/ds/jinrong/ban/ -# ||576tv.com/Scripts/home.js (easylistchina+easylist.txt: 1733) +# ||576tv.com/Scripts/home.js (easylistchina.txt: 1725) .576tv.com/Scripts/home\.js -# ||56img.com^*/search-engine-promotion.js (easylistchina+easylist.txt: 1732) +# ||56img.com^*/search-engine-promotion.js (easylistchina.txt: 1724) .56img.com/.*/search-engine-promotion\.js -# ||56img.com^*/baidu-promotion.js (easylistchina+easylist.txt: 1731) +# ||56img.com^*/baidu-promotion.js (easylistchina.txt: 1723) .56img.com/.*/baidu-promotion\.js -# ||56ads.com/js/main.js (easylistchina+easylist.txt: 1730) +# ||56ads.com/js/main.js (easylistchina.txt: 1722) .56ads.com/js/main\.js -# ||56.com/js/promo/ (easylistchina+easylist.txt: 1729) +# ||56.com/js/promo/ (easylistchina.txt: 1721) .56.com/js/promo/ -# ||55music.net/dazhe.jpg (easylistchina+easylist.txt: 1728) +# ||55music.net/dazhe.jpg (easylistchina.txt: 1720) .55music.net/dazhe\.jpg -# ||55aaee.com/detail/ (easylistchina+easylist.txt: 1727) +# ||55aaee.com/detail/ (easylistchina.txt: 1719) .55aaee.com/detail/ -# ||557xx.com/images/ (easylistchina+easylist.txt: 1726) -.557xx.com/images/ -# ||55125.cn/ggclass/ (easylistchina+easylist.txt: 1725) +# ||55125.cn/ggclass/ (easylistchina.txt: 1718) .55125.cn/ggclass/ -# ||54new.com/da/ (easylistchina+easylist.txt: 1723) +# ||54new.com/da/ (easylistchina.txt: 1716) .54new.com/da/ -# ||543et.com/detail/ (easylistchina+easylist.txt: 1722) +# ||543et.com/detail/ (easylistchina.txt: 1715) .543et.com/detail/ -# ||5399.com/poster_js/ (easylistchina+easylist.txt: 1721) +# ||5399.com/poster_js/ (easylistchina.txt: 1714) .5399.com/poster_js/ -# ||52zy.com/other/js/ (easylistchina+easylist.txt: 1720) +# ||52zy.com/other/js/ (easylistchina.txt: 1713) .52zy.com/other/js/ -# ||52wmb.com/2014js/GG_ (easylistchina+easylist.txt: 1719) +# ||52wmb.com/2014js/GG_ (easylistchina.txt: 1712) .52wmb.com/2014js/GG_ -# ||52waha.com/static/js/function_bbs.js (easylistchina+easylist.txt: 1718) +# ||52waha.com/static/js/function_bbs.js (easylistchina.txt: 1711) .52waha.com/static/js/function_bbs\.js -# ||52verycd.com/9241505.gif (easylistchina+easylist.txt: 1717) +# ||52verycd.com/9241505.gif (easylistchina.txt: 1710) .52verycd.com/9241505\.gif -# ||52tian.net/qq/ (easylistchina+easylist.txt: 1716) +# ||52tian.net/qq/ (easylistchina.txt: 1709) .52tian.net/qq/ -# ||52solution.com/js/duilian-bbs.js (easylistchina+easylist.txt: 1715) +# ||52solution.com/js/duilian-bbs.js (easylistchina.txt: 1708) .52solution.com/js/duilian-bbs\.js -# ||52rd.com/Pic2/*_600_60. (easylistchina+easylist.txt: 1714) +# ||52rd.com/Pic2/*_600_60. (easylistchina.txt: 1707) .52rd.com/Pic2/.*_600_60\. -# ||52rd.com/Pic/Click/ (easylistchina+easylist.txt: 1713) +# ||52rd.com/Pic/Click/ (easylistchina.txt: 1706) .52rd.com/Pic/Click/ -# ||52pk.com/jkjs/imp- (easylistchina+easylist.txt: 1712) +# ||52pk.com/jkjs/imp- (easylistchina.txt: 1705) .52pk.com/jkjs/imp- -# ||52pk.com/files/150120/1289038_105950_1.gif (easylistchina+easylist.txt: 1711) -.52pk.com/files/150120/1289038_105950_1\.gif -# ||52kdm.com/static/52kdm/m/ (easylistchina+easylist.txt: 1710) +# ||52kdm.com/static/52kdm/m/ (easylistchina.txt: 1704) .52kdm.com/static/52kdm/m/ -# ||52jt.net/images/banner_taozhuang.jpg (easylistchina+easylist.txt: 1709) +# ||52jt.net/images/banner_taozhuang.jpg (easylistchina.txt: 1703) .52jt.net/images/banner_taozhuang\.jpg -# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina+easylist.txt: 1708) +# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina.txt: 1702) .52jifenbao.net/wp-content/uploads/2014/04/xinren\.jpg -# ||52hardware.com/topic/a2 (easylistchina+easylist.txt: 1707) +# ||52hardware.com/topic/a2 (easylistchina.txt: 1701) .52hardware.com/topic/a2 -# ||52hardware.com/images/baimg/ (easylistchina+easylist.txt: 1706) +# ||52hardware.com/images/baimg/ (easylistchina.txt: 1700) .52hardware.com/images/baimg/ -# ||52fanquan.com/index.php?i= (easylistchina+easylist.txt: 1705) +# ||52fanquan.com/index.php?i= (easylistchina.txt: 1699) .52fanquan.com/index\.php\?i= -# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina+easylist.txt: 1704) +# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina.txt: 1698) .52che.com/NewLocal/TemplateHtml/headflash1_ -# ||52che.com/Inc/FooterComm_ (easylistchina+easylist.txt: 1703) +# ||52che.com/Inc/FooterComm_ (easylistchina.txt: 1697) .52che.com/Inc/FooterComm_ -# ||52ch.net/data/attachment/portal/ (easylistchina+easylist.txt: 1702) +# ||52ch.net/data/attachment/portal/ (easylistchina.txt: 1696) .52ch.net/data/attachment/portal/ -# ||52ch.net/data/advimg/ (easylistchina+easylist.txt: 1701) +# ||52ch.net/data/advimg/ (easylistchina.txt: 1695) .52ch.net/data/advimg/ -# ||521000.com/com/BBS_AD. (easylistchina+easylist.txt: 1700) +# ||521000.com/com/BBS_AD. (easylistchina.txt: 1694) .521000.com/com/BBS_AD\. -# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina+easylist.txt: 1699) +# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina.txt: 1693) .521000.com/bbs/inc/Dv_Adv\.js -# ||520rr.com*/baidu/ (easylistchina+easylist.txt: 1698) +# ||520rr.com*/baidu/ (easylistchina.txt: 1692) .520rr.com*./(.*/)?baidu/ -# ||520kankan.com/960x80.gif (easylistchina+easylist.txt: 1697) +# ||520kankan.com/960x80.gif (easylistchina.txt: 1691) .520kankan.com/960x80\.gif -# ||520bdy.com/images/888.jpg (easylistchina+easylist.txt: 1696) +# ||520bdy.com/images/888.jpg (easylistchina.txt: 1690) .520bdy.com/images/888\.jpg -# ||51zxw.net/images/zhaopin.jpg (easylistchina+easylist.txt: 1695) +# ||51zxw.net/images/zhaopin.jpg (easylistchina.txt: 1689) .51zxw.net/images/zhaopin\.jpg -# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina+easylist.txt: 1694) +# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina.txt: 1688) .51zxw.net/fzsplayer/adtextzxw\.asp\? -# ||51zxw.net/adad/ (easylistchina+easylist.txt: 1693) +# ||51zxw.net/adad/ (easylistchina.txt: 1687) .51zxw.net/adad/ -# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina+easylist.txt: 1691) +# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina.txt: 1686) .51ztzj.com/res/web/img/pic/inshow\.jpg -# ||51ztzj.com/res/web/img/download_sign (easylistchina+easylist.txt: 1690) +# ||51ztzj.com/res/web/img/download_sign (easylistchina.txt: 1685) .51ztzj.com/res/web/img/download_sign -# ||51ztzj.com/js/you.js (easylistchina+easylist.txt: 1689) +# ||51ztzj.com/js/you.js (easylistchina.txt: 1684) .51ztzj.com/js/you\.js -# ||51xxs.com/users/public/*.swf (easylistchina+easylist.txt: 1688) +# ||51xxs.com/users/public/*.swf (easylistchina.txt: 1683) .51xxs.com/users/public/.*\.swf -# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina+easylist.txt: 1687) +# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina.txt: 1682) .51xuediannao.com/plus/mytag_js\.php\?aid= -# ||51wan.com/web/v1/index/images/spec/ (easylistchina+easylist.txt: 1686) +# ||51wan.com/web/v1/index/images/spec/ (easylistchina.txt: 1681) .51wan.com/web/v1/index/images/spec/ -# ||51wan.com/img/js/xyadjs_ (easylistchina+easylist.txt: 1685) +# ||51wan.com/img/js/xyadjs_ (easylistchina.txt: 1680) .51wan.com/img/js/xyadjs_ -# ||51testing.com/imagesnew/indextop.jpg (easylistchina+easylist.txt: 1684) +# ||51testing.com/imagesnew/indextop.jpg (easylistchina.txt: 1679) .51testing.com/imagesnew/indextop\.jpg -# ||51testing.com/imagesnew/960x101.jpg (easylistchina+easylist.txt: 1683) +# ||51testing.com/imagesnew/960x101.jpg (easylistchina.txt: 1678) .51testing.com/imagesnew/960x101\.jpg -# ||51testing.com/imagesnew/642x53.gif (easylistchina+easylist.txt: 1682) +# ||51testing.com/imagesnew/642x53.gif (easylistchina.txt: 1677) .51testing.com/imagesnew/642x53\.gif -# ||51testing.com/imagesnew/307x90.gif (easylistchina+easylist.txt: 1681) +# ||51testing.com/imagesnew/307x90.gif (easylistchina.txt: 1676) .51testing.com/imagesnew/307x90\.gif -# ||51testing.com/imagesnew/*.swf (easylistchina+easylist.txt: 1680) +# ||51testing.com/imagesnew/*.swf (easylistchina.txt: 1675) .51testing.com/imagesnew/.*\.swf -# ||51testing.com/images/sz51com.swf (easylistchina+easylist.txt: 1679) +# ||51testing.com/images/sz51com.swf (easylistchina.txt: 1674) .51testing.com/images/sz51com\.swf -# ||51test.net/js_new/baidu/ (easylistchina+easylist.txt: 1678) +# ||51test.net/js_new/baidu/ (easylistchina.txt: 1673) .51test.net/js_new/baidu/ -# ||51test.net/js_new/*_right_middle.js (easylistchina+easylist.txt: 1677) +# ||51test.net/js_new/*_right_middle.js (easylistchina.txt: 1672) .51test.net/js_new/.*_right_middle\.js -# ||51test.net/js_new/*_content_up.js (easylistchina+easylist.txt: 1676) +# ||51test.net/js_new/*_content_up.js (easylistchina.txt: 1671) .51test.net/js_new/.*_content_up\.js -# ||51test.net/js_new/*_content_down.js (easylistchina+easylist.txt: 1675) +# ||51test.net/js_new/*_content_down.js (easylistchina.txt: 1670) .51test.net/js_new/.*_content_down\.js -# ||51test.net/js_new/*_banner.js (easylistchina+easylist.txt: 1674) +# ||51test.net/js_new/*_banner.js (easylistchina.txt: 1669) .51test.net/js_new/.*_banner\.js -# ||51test.net/baiduunion/ (easylistchina+easylist.txt: 1673) +# ||51test.net/baiduunion/ (easylistchina.txt: 1668) .51test.net/baiduunion/ -# ||51ou.com/images/taoping (easylistchina+easylist.txt: 1671) +# ||51ou.com/images/taoping (easylistchina.txt: 1666) .51ou.com/images/taoping -# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina+easylist.txt: 1670) +# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina.txt: 1665) .51netu.com.cn/index\.php/index/advShow\?adpid= -# ||51img.ajiang.net^*.gif (easylistchina+easylist.txt: 1668) +# ||51img.ajiang.net^*.gif (easylistchina.txt: 1663) .51img.ajiang.net/.*\.gif -# ||51hanhua.com/2013/ (easylistchina+easylist.txt: 1667) +# ||51hanhua.com/2013/ (easylistchina.txt: 1662) .51hanhua.com/2013/ -# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina+easylist.txt: 1666) +# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina.txt: 1661) .51gugu.com/popwin/AutoHAdShow\.aspx -# ||51gaojian.com/js/tj.js (easylistchina+easylist.txt: 1665) +# ||51gaojian.com/js/tj.js (easylistchina.txt: 1660) .51gaojian.com/js/tj\.js -# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina+easylist.txt: 1664) +# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina.txt: 1659) .51fanli.net/misc/images/invite-v4/banner\.gif -# ||51cto.com/js/blog_top_list.php (easylistchina+easylist.txt: 1663) +# ||51cto.com/js/blog_top_list.php (easylistchina.txt: 1658) .51cto.com/js/blog_top_list\.php -# ||51credit.com/credit/images/*/xyb (easylistchina+easylist.txt: 1662) +# ||51credit.com/credit/images/*/xyb (easylistchina.txt: 1657) .51credit.com/credit/images/.*/xyb -# ||51bczx.com/js/float.js (easylistchina+easylist.txt: 1661) +# ||51bczx.com/js/float.js (easylistchina.txt: 1656) .51bczx.com/js/float\.js -# ||51bczx.com/img/51bczx/ (easylistchina+easylist.txt: 1660) +# ||51bczx.com/img/51bczx/ (easylistchina.txt: 1655) .51bczx.com/img/51bczx/ -# ||51bczx.com/attachment/Mon_ (easylistchina+easylist.txt: 1659) +# ||51bczx.com/attachment/Mon_ (easylistchina.txt: 1654) .51bczx.com/attachment/Mon_ -# ||51ape.com/d/js/ (easylistchina+easylist.txt: 1658) +# ||51ape.com/d/js/ (easylistchina.txt: 1653) .51ape.com/d/js/ -# ||5185.cc/forum/*.gif (easylistchina+easylist.txt: 1657) +# ||5185.cc/forum/*.gif (easylistchina.txt: 1652) .5185.cc/forum/.*\.gif -# ||5184.com/gk2014/ebuy (easylistchina+easylist.txt: 1656) +# ||5184.com/gk2014/ebuy (easylistchina.txt: 1651) .5184.com/gk2014/ebuy -# ||5184.com/gk2014/*_315. (easylistchina+easylist.txt: 1655) +# ||5184.com/gk2014/*_315. (easylistchina.txt: 1650) .5184.com/gk2014/.*_315\. -# ||5184.com/gk20*_240. (easylistchina+easylist.txt: 1654) +# ||5184.com/gk20*_240. (easylistchina.txt: 1649) .5184.com/gk20.*_240\. -# ||5184.com/container/html/news_view_gg (easylistchina+easylist.txt: 1653) +# ||5184.com/container/html/news_view_gg (easylistchina.txt: 1648) .5184.com/container/html/news_view_gg -# ||51688.cc/ya/ (easylistchina+easylist.txt: 1652) +# ||51688.cc/ya/ (easylistchina.txt: 1647) .51688.cc/ya/ -# ||512ms.com/js/index_ggw_show.js (easylistchina+easylist.txt: 1651) +# ||512ms.com/js/index_ggw_show.js (easylistchina.txt: 1646) .512ms.com/js/index_ggw_show\.js -# ||51.com/up/bdfmt/ (easylistchina+easylist.txt: 1650) +# ||51.com/up/bdfmt/ (easylistchina.txt: 1645) .51.com/up/bdfmt/ -# ||506ys.com/js/200.js (easylistchina+easylist.txt: 1649) +# ||506ys.com/js/200.js (easylistchina.txt: 1644) .506ys.com/js/200\.js -# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina+easylist.txt: 1648) +# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina.txt: 1643) .5068.com/uploads/allimg/150116/71_150116175734_1\.jpg -# ||5011.net/template/images/*0.gif (easylistchina+easylist.txt: 1647) +# ||5011.net/template/images/*0.gif (easylistchina.txt: 1642) .5011.net/template/images/.*0\.gif -# ||500xxxx.com/go.js (easylistchina+easylist.txt: 1646) +# ||500xxxx.com/go.js (easylistchina.txt: 1641) .500xxxx.com/go\.js -# ||50.7.31.230/ads_ (easylistchina+easylist.txt: 1645) +# ||50.7.31.230/ads_ (easylistchina.txt: 1640) .50.7.31.230/ads_ -# ||50.115.123.38/ad/ (easylistchina+easylist.txt: 1644) -.50.115.123.38/ad/ -# ||46g.cn/images/top.gif (easylistchina+easylist.txt: 1643) +# ||4kong.com/xk.jpg (easylistchina.txt: 1639) +.4kong.com/xk\.jpg +# ||46g.cn/images/top.gif (easylistchina.txt: 1638) .46g.cn/images/top\.gif -# ||464mnk.com/templets/new/static/js/common.js (easylistchina+easylist.txt: 1642) +# ||464mnk.com/templets/new/static/js/common.js (easylistchina.txt: 1637) .464mnk.com/templets/new/static/js/common\.js -# ||44921.cn/ajsv1/flashad_ (easylistchina+easylist.txt: 1641) +# ||44921.cn/ajsv1/flashad_ (easylistchina.txt: 1636) .44921.cn/ajsv1/flashad_ -# ||43aiai.com/js/zhengzhangtonglang.js (easylistchina+easylist.txt: 1640) -.43aiai.com/js/zhengzhangtonglang\.js -# ||43aiai.com/js/dibu.js (easylistchina+easylist.txt: 1639) -.43aiai.com/js/dibu\.js -# ||43aiai.com/js/cps.js (easylistchina+easylist.txt: 1638) -.43aiai.com/js/cps\.js -# ||4399.com/loadimg/loading.htm (easylistchina+easylist.txt: 1637) +# ||4399.com/loadimg/loading.htm (easylistchina.txt: 1635) .4399.com/loadimg/loading\.htm -# ||4399.com/loadimg/iframe_ (easylistchina+easylist.txt: 1636) +# ||4399.com/loadimg/iframe_ (easylistchina.txt: 1634) .4399.com/loadimg/iframe_ -# ||4399.com/expire1day/ (easylistchina+easylist.txt: 1635) +# ||4399.com/expire1day/ (easylistchina.txt: 1633) .4399.com/expire1day/ -# ||4399.com/baiduad/ (easylistchina+easylist.txt: 1634) +# ||4399.com/baiduad/ (easylistchina.txt: 1632) .4399.com/baiduad/ -# ||40wan.com/js/www2/ (easylistchina+easylist.txt: 1633) +# ||40wan.com/js/www2/ (easylistchina.txt: 1631) .40wan.com/js/www2/ -# ||40407.com/templets/default/images/index.js (easylistchina+easylist.txt: 1632) +# ||40407.com/templets/default/images/index.js (easylistchina.txt: 1630) .40407.com/templets/default/images/index\.js -# ||40407.com/plus_rpad_ (easylistchina+easylist.txt: 1631) +# ||40407.com/plus_rpad_ (easylistchina.txt: 1629) .40407.com/plus_rpad_ -# ||40407.com/plus/rpad/ (easylistchina+easylist.txt: 1630) +# ||40407.com/plus/rpad/ (easylistchina.txt: 1628) .40407.com/plus/rpad/ -# ||40407.com/plus/pthc/zqdl.php? (easylistchina+easylist.txt: 1629) +# ||40407.com/plus/pthc/zqdl.php? (easylistchina.txt: 1627) .40407.com/plus/pthc/zqdl\.php\? -# ||4020.la/hi/ (easylistchina+easylist.txt: 1628) +# ||4020.la/hi/ (easylistchina.txt: 1626) .4020.la/hi/ -# ||400516.com/data/attachment/album/ (easylistchina+easylist.txt: 1627) +# ||400516.com/data/attachment/album/ (easylistchina.txt: 1625) .400516.com/data/attachment/album/ -# ||3sjt.com/3sjtimg/ (easylistchina+easylist.txt: 1626) +# ||3sjt.com/3sjtimg/ (easylistchina.txt: 1624) .3sjt.com/3sjtimg/ -# ||3qdati.com/gg.gif (easylistchina+easylist.txt: 1625) +# ||3qdati.com/gg.gif (easylistchina.txt: 1623) .3qdati.com/gg\.gif -# ||3qcc.com/js/bb.js (easylistchina+easylist.txt: 1624) +# ||3qcc.com/js/bb.js (easylistchina.txt: 1622) .3qcc.com/js/bb\.js -# ||3h3.com/js/show/ (easylistchina+easylist.txt: 1623) +# ||3h3.com/js/show/ (easylistchina.txt: 1621) .3h3.com/js/show/ -# ||3h3.com/js/listad.js (easylistchina+easylist.txt: 1622) +# ||3h3.com/js/listad.js (easylistchina.txt: 1620) .3h3.com/js/listad\.js -# ||3h3.com/js/homepage.js (easylistchina+easylist.txt: 1621) +# ||3h3.com/js/homepage.js (easylistchina.txt: 1619) .3h3.com/js/homepage\.js -# ||3g518.com/piaofujs/ (easylistchina+easylist.txt: 1620) -.3g518.com/piaofujs/ -# ||3g518.com/mb/000000/moban21/js/tcad.js (easylistchina+easylist.txt: 1619) -.3g518.com/mb/000000/moban21/js/tcad\.js -# ||3g.cn/js/noblockme/ (easylistchina+easylist.txt: 1618) +# ||3g.cn/js/noblockme/ (easylistchina.txt: 1618) .3g.cn/js/noblockme/ -# ||3dm.huya.com^ (easylistchina+easylist.txt: 1617) +# ||3dm.huya.com^ (easylistchina.txt: 1617) .3dm.huya.com -# ||3d66.com/gx2013g/ (easylistchina+easylist.txt: 1616) +# ||3dezu.cn/zt/8866.gif (easylistchina.txt: 1616) +.3dezu.cn/zt/8866\.gif +# ||3d66.com/gx2013g/ (easylistchina.txt: 1615) .3d66.com/gx2013g/ -# ||3d66.com/gg-swf/ (easylistchina+easylist.txt: 1615) +# ||3d66.com/gg-swf/ (easylistchina.txt: 1614) .3d66.com/gg-swf/ -# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina+easylist.txt: 1613) +# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina.txt: 1612) .3boys2girls.com/templates/default/2013/life/160b5\.js -# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina+easylist.txt: 1612) +# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina.txt: 1611) .3boys2girls.com/newfile/image2010/banner_housead_ -# ||3987.com/images/*.gif (easylistchina+easylist.txt: 1611) -.3987.com/images/.*\.gif -# ||39.net/rel/k13.php?adid= (easylistchina+easylist.txt: 1610) +# ||3987.com/images/ (easylistchina.txt: 1610) +.3987.com/images/ +# ||39.net/rel/k13.php?adid= (easylistchina.txt: 1609) .39.net/rel/k13\.php\?adid= -# ||39.net/js/google/ (easylistchina+easylist.txt: 1609) +# ||39.net/js/google/ (easylistchina.txt: 1608) .39.net/js/google/ -# ||39.net/js/baidu/ (easylistchina+easylist.txt: 1608) +# ||39.net/js/baidu/ (easylistchina.txt: 1607) .39.net/js/baidu/ -# ||39.net/creative/ (easylistchina+easylist.txt: 1607) +# ||39.net/creative/ (easylistchina.txt: 1606) .39.net/creative/ -# ||39.net/client/39/c.js (easylistchina+easylist.txt: 1606) +# ||39.net/client/39/c.js (easylistchina.txt: 1605) .39.net/client/39/c\.js -# ||38v.com/38v-b.gif (easylistchina+easylist.txt: 1605) +# ||38v.com/38v-b.gif (easylistchina.txt: 1604) .38v.com/38v-b\.gif -# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina+easylist.txt: 1604) +# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina.txt: 1603) .36tv.cn/statics/images/jinhuatv/ad -# ||36tv.cn/ad_pic/ (easylistchina+easylist.txt: 1603) +# ||36tv.cn/ad_pic/ (easylistchina.txt: 1602) .36tv.cn/ad_pic/ -# ||36dm.com/images/950_90.jpg (easylistchina+easylist.txt: 1602) -.36dm.com/images/950_90\.jpg -# ||36dm.com/images/250_250.jpg (easylistchina+easylist.txt: 1601) -.36dm.com/images/250_250\.jpg -# ||36dm.com/images/*acgsou.gif (easylistchina+easylist.txt: 1600) +# ||36dm.com/js/nu (easylistchina.txt: 1601) +.36dm.com/js/nu +# ||36dm.com/images/*acgsou.gif (easylistchina.txt: 1600) .36dm.com/images/.*acgsou\.gif -# ||365xs.org/js/xiayizhang.js (easylistchina+easylist.txt: 1599) +# ||365xs.org/js/xiayizhang.js (easylistchina.txt: 1599) .365xs.org/js/xiayizhang\.js -# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina+easylist.txt: 1598) +# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina.txt: 1598) .365kl.net/template/eis_x3_city_a_1/eis/baobao\.gif -# ||3634.com/qq/ (easylistchina+easylist.txt: 1597) +# ||3634.com/qq/ (easylistchina.txt: 1597) .3634.com/qq/ -# ||360safego.com^ (easylistchina+easylist.txt: 1596) +# ||360safego.com^ (easylistchina.txt: 1596) .360safego.com -# ||360kan.com/special/iframe/ (easylistchina+easylist.txt: 1595) +# ||360kan.com/special/iframe/ (easylistchina.txt: 1595) .360kan.com/special/iframe/ -# ||360bo.cc/js/float.js (easylistchina+easylist.txt: 1594) +# ||360bo.cc/js/float.js (easylistchina.txt: 1594) .360bo.cc/js/float\.js -# ||360.cn/index/showjokes?callback= (easylistchina+easylist.txt: 1593) +# ||360.cn/index/showjokes?callback= (easylistchina.txt: 1593) .360.cn/index/showjokes\?callback= -# ||360.cn/festival_zone.html (easylistchina+easylist.txt: 1592) +# ||360.cn/festival_zone.html (easylistchina.txt: 1592) .360.cn/festival_zone\.html -# ||360-bo.com/js/float2.js (easylistchina+easylist.txt: 1591) +# ||360-bo.com/js/float2.js (easylistchina.txt: 1591) .360-bo.com/js/float2\.js -# ||360-bo.com/js/float.js (easylistchina+easylist.txt: 1590) +# ||360-bo.com/js/float.js (easylistchina.txt: 1590) .360-bo.com/js/float\.js -# ||35zww.com/zzzjs/ (easylistchina+easylist.txt: 1589) -.35zww.com/zzzjs/ -# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina+easylist.txt: 1588) +# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina.txt: 1589) .356ys.com/template/tieniudy/images/g_js/ -# ||3520.cc/js/3520/ (easylistchina+easylist.txt: 1587) +# ||3520.cc/js/3520/ (easylistchina.txt: 1588) .3520.cc/js/3520/ -# ||3464.com/w/950x90.js (easylistchina+easylist.txt: 1586) -.3464.com/w/950x90\.js -# ||3464.com/Script/RightWindows.js (easylistchina+easylist.txt: 1585) +# ||3464.com/Script/RightWindows.js (easylistchina.txt: 1587) .3464.com/Script/RightWindows\.js -# ||33zxzx.com/go.js (easylistchina+easylist.txt: 1584) -.33zxzx.com/go\.js -# ||33xs.com/js/mg (easylistchina+easylist.txt: 1583) +# ||33xs.com/js/mg (easylistchina.txt: 1586) .33xs.com/js/mg -# ||33xs.com/js/g (easylistchina+easylist.txt: 1582) +# ||33xs.com/js/g (easylistchina.txt: 1585) .33xs.com/js/g -# ||33xs.com/js/d.js (easylistchina+easylist.txt: 1581) +# ||33xs.com/js/d.js (easylistchina.txt: 1584) .33xs.com/js/d\.js -# ||33xs.com/hot/ (easylistchina+easylist.txt: 1580) +# ||33xs.com/hot/ (easylistchina.txt: 1583) .33xs.com/hot/ -# ||33lc.com/lvcha/jquery.gotop.js (easylistchina+easylist.txt: 1579) +# ||33lc.com/lvcha/jquery.gotop.js (easylistchina.txt: 1582) .33lc.com/lvcha/jquery\.gotop\.js -# ||33av.net/Uploads/ad/ (easylistchina+easylist.txt: 1578) +# ||33av.net/Uploads/ad/ (easylistchina.txt: 1581) .33av.net/Uploads/ad/ -# ||3399.com/Common/OnlineServer.html (easylistchina+easylist.txt: 1577) +# ||3399.com/Common/OnlineServer.html (easylistchina.txt: 1580) .3399.com/Common/OnlineServer\.html -# ||3399.com/act/fk/ (easylistchina+easylist.txt: 1576) +# ||3399.com/act/fk/ (easylistchina.txt: 1579) .3399.com/act/fk/ -# ||3399.com/act/5599/js/kuang (easylistchina+easylist.txt: 1575) +# ||3399.com/act/5599/js/kuang (easylistchina.txt: 1578) .3399.com/act/5599/js/kuang -# ||3344bt.com^*.js (easylistchina+easylist.txt: 1574) -.3344bt.com/.*\.js -# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina+easylist.txt: 1573) +# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina.txt: 1577) .33.autoimg.cn/t/Adhtmlnet/.*\.swf -# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina+easylist.txt: 1572) +# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina.txt: 1576) .33.autoimg.cn/t/Adhtmlnet/.*\.jpg -# ||33.autoimg.cn/homeurl/*.js (easylistchina+easylist.txt: 1571) +# ||33.autoimg.cn/homeurl/*.js (easylistchina.txt: 1575) .33.autoimg.cn/homeurl/.*\.js -# ||327qq.com/images/ (easylistchina+easylist.txt: 1569) -.327qq.com/images/ -# ||32666.com/img/ (easylistchina+easylist.txt: 1568) +# ||32666.com/img/ (easylistchina.txt: 1573) .32666.com/img/ -# ||32666.com/ads/ (easylistchina+easylist.txt: 1567) +# ||32666.com/ads/ (easylistchina.txt: 1572) .32666.com/ads/ -# ||324324.cn/zz/ (easylistchina+easylist.txt: 1566) +# ||324324.cn/zz/ (easylistchina.txt: 1571) .324324.cn/zz/ -# ||32345sf.com^ (easylistchina+easylist.txt: 1565) -.32345sf.com -# ||3199.cn/ggs_ (easylistchina+easylist.txt: 1564) +# ||3199.cn/ggs_ (easylistchina.txt: 1570) .3199.cn/ggs_ -# ||315che.com/upload_img/aimg/ (easylistchina+easylist.txt: 1563) +# ||315che.com/upload_img/aimg/ (easylistchina.txt: 1569) .315che.com/upload_img/aimg/ -# ||315che.com/addata/ (easylistchina+easylist.txt: 1562) +# ||315che.com/addata/ (easylistchina.txt: 1568) .315che.com/addata/ -# ||3155.com/js/ifile (easylistchina+easylist.txt: 1561) +# ||3155.com/js/ifile (easylistchina.txt: 1567) .3155.com/js/ifile -# ||310v.com/js/f2.js.js (easylistchina+easylist.txt: 1560) +# ||310v.com/js/f2.js.js (easylistchina.txt: 1566) .310v.com/js/f2\.js\.js -# ||310v.com/images/wap_520x60.gif (easylistchina+easylist.txt: 1559) +# ||310v.com/images/wap_520x60.gif (easylistchina.txt: 1565) .310v.com/images/wap_520x60\.gif -# ||310v.com/images/tmp_adpic (easylistchina+easylist.txt: 1558) +# ||310v.com/images/tmp_adpic (easylistchina.txt: 1564) .310v.com/images/tmp_adpic -# ||310v.com/images/lingdai.gif (easylistchina+easylist.txt: 1557) +# ||310v.com/images/lingdai.gif (easylistchina.txt: 1563) .310v.com/images/lingdai\.gif -# ||310v.com/adh.js (easylistchina+easylist.txt: 1556) +# ||310v.com/adh.js (easylistchina.txt: 1562) .310v.com/adh\.js -# ||2zzt.com/images/ (easylistchina+easylist.txt: 1555) +# ||2zzt.com/images/ (easylistchina.txt: 1561) .2zzt.com/images/ -# ||2ujj.com/js/bo.js (easylistchina+easylist.txt: 1554) +# ||2ujj.com/js/bo.js (easylistchina.txt: 1560) .2ujj.com/js/bo\.js -# ||2u.com.cn/js/2012_movie.js (easylistchina+easylist.txt: 1553) +# ||2u.com.cn/js/2012_movie.js (easylistchina.txt: 1559) .2u.com.cn/js/2012_movie\.js -# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina+easylist.txt: 1552) +# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina.txt: 1558) .2u-img.com.cn/modules/38_module_images/4747\.jpg -# ||2muslim.com/data/attachment/portal/ (easylistchina+easylist.txt: 1551) +# ||2muslim.com/data/attachment/portal/ (easylistchina.txt: 1557) .2muslim.com/data/attachment/portal/ -# ||2kk.cc/Tpl/black/images/2k-*.gif (easylistchina+easylist.txt: 1550) -.2kk.cc/Tpl/black/images/2k-.*\.gif -# ||2chcn.com/img/*336x280 (easylistchina+easylist.txt: 1549) +# ||2chcn.com/img/3171150.jpg (easylistchina.txt: 1556) +.2chcn.com/img/3171150\.jpg +# ||2chcn.com/img/*336x280 (easylistchina.txt: 1555) .2chcn.com/img/.*336x280 -# ||2ccc.com/images/WebXone.gif (easylistchina+easylist.txt: 1548) +# ||2ccc.com/images/WebXone.gif (easylistchina.txt: 1554) .2ccc.com/images/WebXone\.gif -# ||2ccc.com/images/sino.gif (easylistchina+easylist.txt: 1547) +# ||2ccc.com/images/sino.gif (easylistchina.txt: 1553) .2ccc.com/images/sino\.gif -# ||2ccc.com/images/show/ (easylistchina+easylist.txt: 1546) +# ||2ccc.com/images/show/ (easylistchina.txt: 1552) .2ccc.com/images/show/ -# ||2btu.com/gg.jpg (easylistchina+easylist.txt: 1545) +# ||2btu.com/gg.jpg (easylistchina.txt: 1551) .2btu.com/gg\.jpg -# ||28hse.com/adsman/www/images/ (easylistchina+easylist.txt: 1544) +# ||28hse.com/adsman/www/images/ (easylistchina.txt: 1550) .28hse.com/adsman/www/images/ -# ||27.cn/iframe/r-con1. (easylistchina+easylist.txt: 1543) -.27.cn/iframe/r-con1\. -# ||27.255.67.120^ (easylistchina+easylist.txt: 1542) +# ||27.255.67.120^ (easylistchina.txt: 1549) .27.255.67.120 -# ||265.com/static/pages/img/*_ads. (easylistchina+easylist.txt: 1541) +# ||268de.com/js/ (easylistchina.txt: 1548) +.268de.com/js/ +# ||265.com/static/pages/img/*_ads. (easylistchina.txt: 1547) .265.com/static/pages/img/.*_ads\. -# ||25xz.com/degeye.gif (easylistchina+easylist.txt: 1540) +# ||25xz.com/degeye.gif (easylistchina.txt: 1546) .25xz.com/degeye\.gif -# ||25xz.com/ads/ (easylistchina+easylist.txt: 1539) +# ||25xz.com/ads/ (easylistchina.txt: 1545) .25xz.com/ads/ -# ||258zb.com/jsData/users.aspx (easylistchina+easylist.txt: 1538) +# ||258zb.com/jsData/users.aspx (easylistchina.txt: 1544) .258zb.com/jsData/users\.aspx -# ||2500sz.com/site/ (easylistchina+easylist.txt: 1537) +# ||2500sz.com^*/655x60. (easylistchina.txt: 1543) +.2500sz.com/.*/655x60\. +# ||2500sz.com/site/ (easylistchina.txt: 1542) .2500sz.com/site/ -# ||2500sz.com/ad20 (easylistchina+easylist.txt: 1536) +# ||2500sz.com/ad20 (easylistchina.txt: 1541) .2500sz.com/ad20 -# ||23youku.com/Runtime/js/ (easylistchina+easylist.txt: 1535) +# ||23zw.com/sda/mediav.html (easylistchina.txt: 1540) +.23zw.com/sda/mediav\.html +# ||23youku.com/Runtime/js/ (easylistchina.txt: 1539) .23youku.com/Runtime/js/ -# ||23wx.com/scripts/style_tan.js (easylistchina+easylist.txt: 1534) +# ||23wx.com/scripts/style_tan.js (easylistchina.txt: 1538) .23wx.com/scripts/style_tan\.js -# ||23wx.com/scripts/right.html (easylistchina+easylist.txt: 1533) -.23wx.com/scripts/right\.html -# ||2345.com/xiaoimg/swf/flash/ (easylistchina+easylist.txt: 1531) +# ||2345.com/xiaoimg/swf/flash/ (easylistchina.txt: 1536) .2345.com/xiaoimg/swf/flash/ -# ||2345.com/right/site/like/gul_default.js (easylistchina+easylist.txt: 1530) +# ||2345.com/right/site/like/gul_default.js (easylistchina.txt: 1535) .2345.com/right/site/like/gul_default\.js -# ||2345.com/images/tgPic/gameTmp- (easylistchina+easylist.txt: 1528) +# ||2345.com/images/tgPic/gameTmp- (easylistchina.txt: 1533) .2345.com/images/tgPic/gameTmp- -# ||2345.com/duoteimg/duotehtml/ (easylistchina+easylist.txt: 1527) +# ||2345.com/duoteimg/duotehtml/ (easylistchina.txt: 1532) .2345.com/duoteimg/duotehtml/ -# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina+easylist.txt: 1526) +# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina.txt: 1531) .2345.com/dianyingimg/tv/ivy/taobao/ -# ||2345.com/dianyingimg/ads/ (easylistchina+easylist.txt: 1525) +# ||2345.com/dianyingimg/ads/ (easylistchina.txt: 1530) .2345.com/dianyingimg/ads/ -# ||2345.com/data/part/part_*_bottom (easylistchina+easylist.txt: 1524) +# ||2345.com/data/part/part_*_bottom (easylistchina.txt: 1529) .2345.com/data/part/part_.*_bottom -# ||2345.com/data/part/part_*_bann (easylistchina+easylist.txt: 1523) +# ||2345.com/data/part/part_*_bann (easylistchina.txt: 1528) .2345.com/data/part/part_.*_bann -# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina+easylist.txt: 1522) +# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina.txt: 1527) .2300sjz.com/liv_loadfile/folder81/fold -# ||23.252.162.52/z.jpg (easylistchina+easylist.txt: 1521) -.23.252.162.52/z\.jpg -# ||22mt.la/bookpic/00*.jpg (easylistchina+easylist.txt: 1520) +# ||22mt.la/bookpic/00*.jpg (easylistchina.txt: 1526) .22mt.la/bookpic/00.*\.jpg -# ||2258.com/new_static/*/ad/ (easylistchina+easylist.txt: 1519) +# ||2258.com/new_static/*/ad/ (easylistchina.txt: 1525) .2258.com/new_static/.*/ad/ -# ||2233777.com/bak/ad/ (easylistchina+easylist.txt: 1518) +# ||2233777.com/bak/ad/ (easylistchina.txt: 1524) .2233777.com/bak/ad/ -# ||222dz.com/js/ (easylistchina+easylist.txt: 1517) -.222dz.com/js/ -# ||222.47.26.21/m.js (easylistchina+easylist.txt: 1516) +# ||222.47.26.21/m.js (easylistchina.txt: 1523) .222.47.26.21/m\.js -# ||222.45.224.77^*.js (easylistchina+easylist.txt: 1515) +# ||222.45.224.77^*.js (easylistchina.txt: 1522) .222.45.224.77/.*\.js -# ||222.33.59.55/show.js (easylistchina+easylist.txt: 1514) +# ||222.33.59.55/show.js (easylistchina.txt: 1521) .222.33.59.55/show\.js -# ||221.5.69.52^*.js (easylistchina+easylist.txt: 1513) +# ||221.5.69.52^*.js (easylistchina.txt: 1520) .221.5.69.52/.*\.js -# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina+easylist.txt: 1512) +# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina.txt: 1519) .2200book.com/themes/v2/images/frxz_tonglan\.gif -# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina+easylist.txt: 1511) +# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina.txt: 1518) .2200book.com/configs/article/pagebottom1yc\.js -# ||21yq.com/mg/21yq/ (easylistchina+easylist.txt: 1510) +# ||21yq.com/mg/21yq/ (easylistchina.txt: 1517) .21yq.com/mg/21yq/ -# ||21uscity.com/zonelist.php (easylistchina+easylist.txt: 1509) +# ||21uscity.com/zonelist.php (easylistchina.txt: 1516) .21uscity.com/zonelist\.php -# ||21edu8.com/js/mymoney/ (easylistchina+easylist.txt: 1508) +# ||21edu8.com/js/mymoney/ (easylistchina.txt: 1515) .21edu8.com/js/mymoney/ -# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina+easylist.txt: 1507) +# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina.txt: 1514) .21cnimg.com/zt/she/2015/shetext/she\.jpg -# ||21cnimg.com/zt/she/2015/shetext/300X201.jpg (easylistchina+easylist.txt: 1506) -.21cnimg.com/zt/she/2015/shetext/300X201\.jpg -# ||219.238.159.182^*.html (easylistchina+easylist.txt: 1505) +# ||219.238.159.182^*.html (easylistchina.txt: 1513) .219.238.159.182/.*\.html -# ||219.238.159.181^*.html (easylistchina+easylist.txt: 1504) +# ||219.238.159.181^*.html (easylistchina.txt: 1512) .219.238.159.181/.*\.html -# ||219.153.41.175/*.js (easylistchina+easylist.txt: 1503) +# ||219.153.41.175/*.js (easylistchina.txt: 1511) .219.153.41.175/.*\.js -# ||219.153.41.154/v1/ (easylistchina+easylist.txt: 1502) +# ||219.153.41.154/v1/ (easylistchina.txt: 1510) .219.153.41.154/v1/ -# ||218.65.30.50:96/images/xuanchuan.gif (easylistchina+easylist.txt: 1501) -.218.65.30.50:96/images/xuanchuan\.gif -# ||218.65.30.232^ (easylistchina+easylist.txt: 1500) -.218.65.30.232 -# ||21394.com/weizi.js (easylistchina+easylist.txt: 1499) +# ||21394.com/weizi.js (easylistchina.txt: 1509) .21394.com/weizi\.js -# ||211600.com/images/portal/ (easylistchina+easylist.txt: 1498) +# ||211600.com/images/portal/ (easylistchina.txt: 1508) .211600.com/images/portal/ -# ||211600.com/data/attachment/portal/ (easylistchina+easylist.txt: 1497) +# ||211600.com/data/attachment/portal/ (easylistchina.txt: 1507) .211600.com/data/attachment/portal/ -# ||204.12.228.236^*.png (easylistchina+easylist.txt: 1496) +# ||204.12.228.236^*.png (easylistchina.txt: 1506) .204.12.228.236/.*\.png -# ||204.12.228.235^*.png (easylistchina+easylist.txt: 1495) +# ||204.12.228.235^*.png (easylistchina.txt: 1505) .204.12.228.235/.*\.png -# ||201*.myhard.com^ (easylistchina+easylist.txt: 1494) +# ||201*.myhard.com^ (easylistchina.txt: 1504) .201*./.*\.myhard\.com[^\w%.-] .201*.myhard.com -# ||201*.073img.com^ (easylistchina+easylist.txt: 1493) +# ||201*.073img.com^ (easylistchina.txt: 1503) .201*./.*\.073img\.com[^\w%.-] .201*.073img.com -# ||2008xxx.com:888 (easylistchina+easylist.txt: 1492) +# ||2008xxx.com:888 (easylistchina.txt: 1502) .2008xxx.com:888*. -# ||1pad.cn/ahead/01.gif (easylistchina+easylist.txt: 1491) +# ||1pad.cn/ahead/01.gif (easylistchina.txt: 1501) .1pad.cn/ahead/01\.gif -# ||1m1m.cn/bar/ (easylistchina+easylist.txt: 1490) +# ||1m1m.cn/bar/ (easylistchina.txt: 1500) .1m1m.cn/bar/ -# ||1kejian.com/js/topA.js (easylistchina+easylist.txt: 1489) +# ||1kejian.com/js/topA.js (easylistchina.txt: 1499) .1kejian.com/js/topA\.js -# ||1fun.com.hk/bb/189X180B.swf (easylistchina+easylist.txt: 1488) +# ||1fun.com.hk/bb/189X180B.swf (easylistchina.txt: 1498) .1fun.com.hk/bb/189X180B\.swf -# ||1dot.cn/spider/1dotAd.php (easylistchina+easylist.txt: 1487) +# ||1dot.cn/spider/1dotAd.php (easylistchina.txt: 1497) .1dot.cn/spider/1dotAd\.php -# ||19iiii.info/js/tonglan.js (easylistchina+easylist.txt: 1486) +# ||19iiii.info/js/tonglan.js (easylistchina.txt: 1496) .19iiii.info/js/tonglan\.js -# ||19iiii.info/js/foot.js (easylistchina+easylist.txt: 1485) +# ||19iiii.info/js/foot.js (easylistchina.txt: 1495) .19iiii.info/js/foot\.js -# ||19iiii.info/js/dl.js (easylistchina+easylist.txt: 1484) +# ||19iiii.info/js/dl.js (easylistchina.txt: 1494) .19iiii.info/js/dl\.js -# ||19iiii.info/js/dingbu.js (easylistchina+easylist.txt: 1483) +# ||19iiii.info/js/dingbu.js (easylistchina.txt: 1493) .19iiii.info/js/dingbu\.js -# ||198zone.com/images/*noad.jpg (easylistchina+easylist.txt: 1482) +# ||198zone.com/images/*noad.jpg (easylistchina.txt: 1492) .198zone.com/images/.*noad\.jpg -# ||198.40.56.242/ad/ (easylistchina+easylist.txt: 1481) +# ||198.40.56.242/ad/ (easylistchina.txt: 1491) .198.40.56.242/ad/ -# ||198.40.52.11/ad/ (easylistchina+easylist.txt: 1480) -.198.40.52.11/ad/ -# ||192.74.239.161/ad960.js (easylistchina+easylist.txt: 1479) +# ||198.40.52.11^ (easylistchina.txt: 1490) +.198.40.52.11 +# ||192.74.239.161/ad960.js (easylistchina.txt: 1489) .192.74.239.161/ad960\.js -# ||192.184.10.171^ (easylistchina+easylist.txt: 1478) -.192.184.10.171 -# ||18avday.*/images/ts918com (easylistchina+easylist.txt: 1477) -.18avday.*./(.*/)?images/ts918com -# ||189so.cn/pop.html (easylistchina+easylist.txt: 1475) +# ||18avday.*/aa/ (easylistchina.txt: 1488) +.18avday.*./(.*/)?aa/ +# ||189so.cn/pop.html (easylistchina.txt: 1486) .189so.cn/pop\.html -# ||189so.cn/images/qz270x280.jpg (easylistchina+easylist.txt: 1474) +# ||189so.cn/images/qz270x280.jpg (easylistchina.txt: 1485) .189so.cn/images/qz270x280\.jpg -# ||189so.cn/images/960x60 (easylistchina+easylist.txt: 1473) +# ||189so.cn/images/960x60 (easylistchina.txt: 1484) .189so.cn/images/960x60 -# ||189.cn/dns/ (easylistchina+easylist.txt: 1472) +# ||189.cn/dns/ (easylistchina.txt: 1483) .189.cn/dns/ -# ||18888.com^*/Mon_*.gif (easylistchina+easylist.txt: 1471) +# ||18888.com^*/Mon_*.gif (easylistchina.txt: 1482) .18888.com/.*/Mon_.*\.gif -# ||183yf.cn/img/nz.png (easylistchina+easylist.txt: 1470) +# ||183yf.cn/img/nz.png (easylistchina.txt: 1481) .183yf.cn/img/nz\.png -# ||183.136.168.78:8082/ad/ (easylistchina+easylist.txt: 1469) +# ||183.136.168.78:8082/ad/ (easylistchina.txt: 1480) .183.136.168.78:8082/ad/ -# ||182.92.234.239^*.html (easylistchina+easylist.txt: 1468) +# ||182.92.234.239^*.html (easylistchina.txt: 1479) .182.92.234.239/.*\.html -# ||180.96.27.85^*.htm (easylistchina+easylist.txt: 1467) +# ||180.96.27.85^*.htm (easylistchina.txt: 1478) .180.96.27.85/.*\.htm -# ||17yy.com/style/ifra_ad/ (easylistchina+easylist.txt: 1466) +# ||17yy.com/style/ifra_ad/ (easylistchina.txt: 1477) .17yy.com/style/ifra_ad/ -# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina+easylist.txt: 1465) +# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina.txt: 1476) .17ok.com/focus/images/wenchouxiangmu\.gif -# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina+easylist.txt: 1464) +# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina.txt: 1475) .17ok.com/focus/3j_right_jdt\.shtml -# ||17kqw.com/*.gif (easylistchina+easylist.txt: 1463) +# ||17kqw.com/*.gif (easylistchina.txt: 1474) .17kqw.com/.*\.gif -# ||17kk.cc/scriptAD/ (easylistchina+easylist.txt: 1462) +# ||17kk.cc/scriptAD/ (easylistchina.txt: 1473) .17kk.cc/scriptAD/ -# ||17huohu.com/img/skin/qnh/ (easylistchina+easylist.txt: 1461) +# ||17huohu.com/img/skin/qnh/ (easylistchina.txt: 1472) .17huohu.com/img/skin/qnh/ -# ||17dm.com/s/common/js/*AD.js (easylistchina+easylist.txt: 1460) +# ||17dm.com/s/common/js/*AD.js (easylistchina.txt: 1471) .17dm.com/s/common/js/.*AD\.js -# ||17ce.com/118/t_banner.html (easylistchina+easylist.txt: 1459) +# ||17ce.com/118/t_banner.html (easylistchina.txt: 1470) .17ce.com/118/t_banner\.html -# ||178.com/lol/201410/206406421945/206406428217.jpg (easylistchina+easylist.txt: 1458) -.178.com/lol/201410/206406421945/206406428217\.jpg -# ||178.com/glr.js (easylistchina+easylist.txt: 1457) +# ||178.com/glr.js (easylistchina.txt: 1469) .178.com/glr\.js -# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina+easylist.txt: 1456) +# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina.txt: 1468) .178.com/dota/201409/205976017190/205976025825\.jpg -# ||17558.net/youdiancms.gif (easylistchina+easylist.txt: 1455) +# ||17558.net/youdiancms.gif (easylistchina.txt: 1467) .17558.net/youdiancms\.gif -# ||17558.net/daozeiyuanma1.gif (easylistchina+easylist.txt: 1454) +# ||17558.net/daozeiyuanma1.gif (easylistchina.txt: 1466) .17558.net/daozeiyuanma1\.gif -# ||174.123.15.43:8080 (easylistchina+easylist.txt: 1453) +# ||174.123.15.43:8080 (easylistchina.txt: 1465) .174.123.15.43:8080*. -# ||173kt.com/images/ad (easylistchina+easylist.txt: 1452) +# ||173kt.com/images/ad (easylistchina.txt: 1464) .173kt.com/images/ad -# ||173kt.com/ads/ (easylistchina+easylist.txt: 1451) +# ||173kt.com/ads/ (easylistchina.txt: 1463) .173kt.com/ads/ -# ||173.255.143.197^*.png (easylistchina+easylist.txt: 1450) +# ||173.255.143.197^*.png (easylistchina.txt: 1462) .173.255.143.197/.*\.png -# ||173.208.177.227^*.gif (easylistchina+easylist.txt: 1448) +# ||173.208.177.227^*.gif (easylistchina.txt: 1460) .173.208.177.227/.*\.gif -# ||173.208.177.227/tool/xuanfusige.js (easylistchina+easylist.txt: 1447) +# ||173.208.177.227/tool/xuanfusige.js (easylistchina.txt: 1459) .173.208.177.227/tool/xuanfusige\.js -# ||172.15.2.28:3438/*.js (easylistchina+easylist.txt: 1446) +# ||172.15.2.28:3438/*.js (easylistchina.txt: 1458) .172.15.2.28:3438/.*\.js -# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina+easylist.txt: 1445) +# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina.txt: 1457) .17173cdn.com/.*/flash/OnLineTime\.swf -# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina+easylist.txt: 1444) +# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina.txt: 1456) .17173cdn.com/js/play/page/pThridPlayerAd\.js -# ||17173cdn.com/css/live/business (easylistchina+easylist.txt: 1443) +# ||17173cdn.com/css/live/business (easylistchina.txt: 1455) .17173cdn.com/css/live/business -# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina+easylist.txt: 1442) +# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina.txt: 1454) .17173cdn.com/a/www/index/.*/js/ggcommon -# ||17173cdn.com/a/lib/vda/seed.js (easylistchina+easylist.txt: 1441) +# ||17173cdn.com/a/lib/vda/seed.js (easylistchina.txt: 1453) .17173cdn.com/a/lib/vda/seed\.js -# ||17173.com/new/ (easylistchina+easylist.txt: 1440) +# ||17173.com/new/ (easylistchina.txt: 1452) .17173.com/new/ -# ||17173.com/if/ (easylistchina+easylist.txt: 1439) +# ||17173.com/if/ (easylistchina.txt: 1451) .17173.com/if/ -# ||17173.com/bd/ifm/allyes/ (easylistchina+easylist.txt: 1438) +# ||17173.com/bd/ifm/allyes/ (easylistchina.txt: 1450) .17173.com/bd/ifm/allyes/ -# ||17173.com/advideo/ (easylistchina+easylist.txt: 1437) +# ||17173.com/advideo/ (easylistchina.txt: 1449) .17173.com/advideo/ -# ||17173.com/2013/new/channel-float.js (easylistchina+easylist.txt: 1436) +# ||17173.com/2013/new/channel-float.js (easylistchina.txt: 1448) .17173.com/2013/new/channel-float\.js -# ||16sucai.com/images/46060_ (easylistchina+easylist.txt: 1435) +# ||16sucai.com/images/46060_ (easylistchina.txt: 1447) .16sucai.com/images/46060_ -# ||16sucai.com/ads/ (easylistchina+easylist.txt: 1434) +# ||16sucai.com/ads/ (easylistchina.txt: 1446) .16sucai.com/ads/ -# ||168gamer.com/static/js/cpa.js (easylistchina+easylist.txt: 1433) +# ||168gamer.com/static/js/cpa.js (easylistchina.txt: 1445) .168gamer.com/static/js/cpa\.js -# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina+easylist.txt: 1432) +# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina.txt: 1444) .168gamer.com/plugin\.php\?id=cstdio_ads: -# ||168gamer.com/apii.php?mod=js&bid= (easylistchina+easylist.txt: 1431) +# ||168gamer.com/apii.php?mod=js&bid= (easylistchina.txt: 1443) .168gamer.com/apii\.php\?mod=js&bid= -# ||16888.com/ajax/loadcardata.php (easylistchina+easylist.txt: 1430) +# ||16888.com/ajax/loadcardata.php (easylistchina.txt: 1442) .16888.com/ajax/loadcardata\.php -# ||1688.com.au/site1/1688ad/ (easylistchina+easylist.txt: 1429) +# ||1688.com.au/site1/1688ad/ (easylistchina.txt: 1441) .1688.com.au/site1/1688ad/ -# ||1684.cc/js/1684/ (easylistchina+easylist.txt: 1428) +# ||1684.cc/js/1684/ (easylistchina.txt: 1440) .1684.cc/js/1684/ -# ||1677.net/js/gb*.js (easylistchina+easylist.txt: 1426) +# ||1677.net/js/gb*.js (easylistchina.txt: 1438) .1677.net/js/gb.*\.js -# ||1677.net/js/cad*.js (easylistchina+easylist.txt: 1425) +# ||1677.net/js/cad*.js (easylistchina.txt: 1437) .1677.net/js/cad.*\.js -# ||1677.net/js/ad*.js (easylistchina+easylist.txt: 1424) +# ||1677.net/js/ad*.js (easylistchina.txt: 1436) .1677.net/js/ad.*\.js -# ||163disk.com/static/www/ (easylistchina+easylist.txt: 1423) +# ||163disk.com/static/www/ (easylistchina.txt: 1435) .163disk.com/static/www/ -# ||163disk.com/static/images/tu.gif (easylistchina+easylist.txt: 1422) +# ||163disk.com/static/images/tu.gif (easylistchina.txt: 1434) .163disk.com/static/images/tu\.gif -# ||163disk.com/static/images/DING.gif (easylistchina+easylist.txt: 1421) +# ||163disk.com/static/images/DING.gif (easylistchina.txt: 1433) .163disk.com/static/images/DING\.gif -# ||163disk.com/pic/960x90- (easylistchina+easylist.txt: 1420) +# ||163disk.com/pic/960x90- (easylistchina.txt: 1432) .163disk.com/pic/960x90- -# ||163.com/special/*/topbg.js (easylistchina+easylist.txt: 1419) +# ||163.com/special/*_taobao. (easylistchina.txt: 1431) +.163.com/special/.*_taobao\. +# ||163.com/special/*_ad_ (easylistchina.txt: 1430) +.163.com/special/.*_ad_ +# ||163.com/special/*/topbg.js (easylistchina.txt: 1429) .163.com/special/.*/topbg\.js -# ||163.com/special/*/tonglan1.js (easylistchina+easylist.txt: 1418) +# ||163.com/special/*/tonglan1.js (easylistchina.txt: 1428) .163.com/special/.*/tonglan1\.js -# ||163.com/special/*/ted_vad. (easylistchina+easylist.txt: 1417) +# ||163.com/special/*/ted_vad. (easylistchina.txt: 1427) .163.com/special/.*/ted_vad\. -# ||163.com/special/*/scroolAd (easylistchina+easylist.txt: 1416) +# ||163.com/special/*/scroolAd (easylistchina.txt: 1426) .163.com/special/.*/scroolAd -# ||163.com/special/*/beitou.js (easylistchina+easylist.txt: 1415) +# ||163.com/special/*/beitou.js (easylistchina.txt: 1425) .163.com/special/.*/beitou\.js -# ||163.com/special/*/ace_downbig.js (easylistchina+easylist.txt: 1414) +# ||163.com/special/*/ace_downbig.js (easylistchina.txt: 1424) .163.com/special/.*/ace_downbig\.js -# ||163.com/get.do?*=themeHandler. (easylistchina+easylist.txt: 1412) +# ||163.com/get.do?*=themeHandler. (easylistchina.txt: 1422) .163.com/get\.do\?.*=themeHandler\. -# ||162wp.com/ipc/11.gif (easylistchina+easylist.txt: 1411) +# ||162wp.com/ipc/11.gif (easylistchina.txt: 1421) .162wp.com/ipc/11\.gif -# ||162wp.com/e/data/images/pixviewer.swf (easylistchina+easylist.txt: 1410) +# ||162wp.com/e/data/images/pixviewer.swf (easylistchina.txt: 1420) .162wp.com/e/data/images/pixviewer\.swf -# ||162.212.252.35/ads/ (easylistchina+easylist.txt: 1409) -.162.212.252.35/ads/ -# ||1616.net/jd/i_ (easylistchina+easylist.txt: 1408) +# ||1616.net/jd/i_ (easylistchina.txt: 1419) .1616.net/jd/i_ -# ||1616.net/jd/data/index/indexad.json (easylistchina+easylist.txt: 1407) +# ||1616.net/jd/data/index/indexad.json (easylistchina.txt: 1418) .1616.net/jd/data/index/indexad\.json -# ||15w.com/pages/adlive. (easylistchina+easylist.txt: 1406) +# ||15w.com/pages/adlive. (easylistchina.txt: 1417) .15w.com/pages/adlive\. -# ||15w.com/flash/ (easylistchina+easylist.txt: 1405) +# ||15w.com/flash/ (easylistchina.txt: 1416) .15w.com/flash/ -# ||15w.com/call/webjs/60.js (easylistchina+easylist.txt: 1404) +# ||15w.com/call/webjs/60.js (easylistchina.txt: 1415) .15w.com/call/webjs/60\.js -# ||1518.com/ss/ (easylistchina+easylist.txt: 1403) +# ||1518.com/ss/ (easylistchina.txt: 1414) .1518.com/ss/ -# ||142.0.133.129/twdsb/ (easylistchina+easylist.txt: 1402) -.142.0.133.129/twdsb/ -# ||142.0.133.129/attachment/Mon_ (easylistchina+easylist.txt: 1401) -.142.0.133.129/attachment/Mon_ -# ||141h.com/data/attachment/noblock/cf/ (easylistchina+easylist.txt: 1400) +# ||141h.com/data/attachment/noblock/cf/ (easylistchina.txt: 1413) .141h.com/data/attachment/noblock/cf/ -# ||1382014.co/980X45.gif (easylistchina+easylist.txt: 1399) +# ||1382014.co/980X45.gif (easylistchina.txt: 1412) .1382014.co/980X45\.gif -# ||135qp.com/sjzswf/banner.swf (easylistchina+easylist.txt: 1398) +# ||135qp.com/sjzswf/banner.swf (easylistchina.txt: 1411) .135qp.com/sjzswf/banner\.swf -# ||133uu.com/html/ (easylistchina+easylist.txt: 1397) +# ||133uu.com/html/ (easylistchina.txt: 1410) .133uu.com/html/ -# ||131458.com/union/ (easylistchina+easylist.txt: 1396) +# ||131458.com/union/ (easylistchina.txt: 1409) .131458.com/union/ -# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina+easylist.txt: 1395) +# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina.txt: 1408) .131.com/test2/2014/09/04/201409041715356f5\.jpg -# ||131.com/home/resouces/js/ (easylistchina+easylist.txt: 1393) +# ||131.com/home/resouces/js/ (easylistchina.txt: 1406) .131.com/home/resouces/js/ -# ||131.com/common/alertwindow.html (easylistchina+easylist.txt: 1392) +# ||131.com/common/alertwindow.html (easylistchina.txt: 1405) .131.com/common/alertwindow\.html -# ||127.net/m/*/promPic.jpg (easylistchina+easylist.txt: 1391) +# ||127.net/m/*/promPic.jpg (easylistchina.txt: 1404) .127.net/m/.*/promPic\.jpg -# ||127.net/external/js6promote (easylistchina+easylist.txt: 1390) +# ||127.net/external/js6promote (easylistchina.txt: 1403) .127.net/external/js6promote -# ||126xz.com/www/all_guanggao.js (easylistchina+easylist.txt: 1389) +# ||126xz.com/www/all_guanggao.js (easylistchina.txt: 1402) .126xz.com/www/all_guanggao\.js -# ||126disk.com/templates/mobile/2345t.png (easylistchina+easylist.txt: 1388) +# ||126disk.com/templates/mobile/2345t.png (easylistchina.txt: 1401) .126disk.com/templates/mobile/2345t\.png -# ||126.net/house/sjz/xt/ (easylistchina+easylist.txt: 1387) +# ||126.net/house/sjz/xt/ (easylistchina.txt: 1400) .126.net/house/sjz/xt/ -# ||126.net/house/sjz/flash/ (easylistchina+easylist.txt: 1386) +# ||126.net/house/sjz/flash/ (easylistchina.txt: 1399) .126.net/house/sjz/flash/ -# ||126.net/house/hrb/js/ (easylistchina+easylist.txt: 1385) +# ||126.net/house/sjz/*96070 (easylistchina.txt: 1398) +.126.net/house/sjz/.*96070 +# ||126.net/house/hrb/js/ (easylistchina.txt: 1397) .126.net/house/hrb/js/ -# ||126.net/house/hrb/flash/*X (easylistchina+easylist.txt: 1384) +# ||126.net/house/hrb/flash/*X (easylistchina.txt: 1396) .126.net/house/hrb/flash/.*X -# ||126.net/house/hebei/index/20150618.swf (easylistchina+easylist.txt: 1383) -.126.net/house/hebei/index/20150618\.swf -# ||126.net/house/hangzhou/ad/ (easylistchina+easylist.txt: 1382) +# ||126.net/house/hangzhou/ad/ (easylistchina.txt: 1395) .126.net/house/hangzhou/ad/ -# ||126.net/house/chengdu/flash/*+ (easylistchina+easylist.txt: 1381) +# ||126.net/house/chengdu/flash/*+ (easylistchina.txt: 1394) .126.net/house/chengdu/flash/.*\+ -# ||126.com/get.do?*=themeHandler. (easylistchina+easylist.txt: 1380) +# ||126.com/get.do?*=themeHandler. (easylistchina.txt: 1393) .126.com/get\.do\?.*=themeHandler\. -# ||125.46.61.28^ (easylistchina+easylist.txt: 1379) +# ||125.46.61.28^ (easylistchina.txt: 1392) .125.46.61.28 -# ||123cha.com/2568 (easylistchina+easylist.txt: 1378) +# ||123cha.com/2568 (easylistchina.txt: 1391) .123cha.com/2568 -# ||123564.com/js/plaza.js (easylistchina+easylist.txt: 1377) +# ||123564.com/js/plaza.js (easylistchina.txt: 1390) .123564.com/js/plaza\.js -# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina+easylist.txt: 1376) +# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina.txt: 1389) .123.sogou.com/nstatic/img/jiao\.swf -# ||122.228.236.165^ (easylistchina+easylist.txt: 1375) +# ||122.228.236.165^ (easylistchina.txt: 1388) .122.228.236.165 -# ||122.225.103.*.htm (easylistchina+easylist.txt: 1374) +# ||122.225.103.*.htm (easylistchina.txt: 1387) .122.225.103.*./.*\.htm .122.225.103.*.htm*. -# ||121down.com/img/*.js (easylistchina+easylist.txt: 1372) +# ||121down.com/img/*.js (easylistchina.txt: 1385) .121down.com/img/.*\.js -# ||121.41.60.207/m?t= (easylistchina+easylist.txt: 1371) +# ||121.41.60.207/m?t= (easylistchina.txt: 1384) .121.41.60.207/m\?t= -# ||121.40.136.114^*.htm (easylistchina+easylist.txt: 1370) +# ||121.40.136.114^*.htm (easylistchina.txt: 1383) .121.40.136.114/.*\.htm -# ||120bo.com/ggimg/ (easylistchina+easylist.txt: 1369) +# ||120bo.com/ggimg/ (easylistchina.txt: 1382) .120bo.com/ggimg/ -# ||120askimages.com/ask/js/x.js (easylistchina+easylist.txt: 1368) -.120askimages.com/ask/js/x\.js -# ||120.27.34.156^ (easylistchina+easylist.txt: 1367) +# ||120askimages.com/ask/js/*x.js (easylistchina.txt: 1381) +.120askimages.com/ask/js/.*x\.js +# ||120.27.34.156^ (easylistchina.txt: 1380) .120.27.34.156 -# ||11mzmz.com/java/ (easylistchina+easylist.txt: 1366) -.11mzmz.com/java/ -# ||11hhww.com/java/xia1.js (easylistchina+easylist.txt: 1365) +# ||11hhww.com/java/xia1.js (easylistchina.txt: 1379) .11hhww.com/java/xia1\.js -# ||11hhww.com/java/shang1.js (easylistchina+easylist.txt: 1364) +# ||11hhww.com/java/shang1.js (easylistchina.txt: 1378) .11hhww.com/java/shang1\.js -# ||11hhww.com/java/cpm (easylistchina+easylist.txt: 1363) +# ||11hhww.com/java/cpm (easylistchina.txt: 1377) .11hhww.com/java/cpm -# ||11dzdz.com/java/ (easylistchina+easylist.txt: 1362) -.11dzdz.com/java/ -# ||11dmdm.com/java/ (easylistchina+easylist.txt: 1361) -.11dmdm.com/java/ -# ||119g.com/fanwan1/dibubanner.js (easylistchina+easylist.txt: 1359) +# ||119g.com/fanwan1/dibubanner.js (easylistchina.txt: 1375) .119g.com/fanwan1/dibubanner\.js -# ||119g.com/fanwan/ (easylistchina+easylist.txt: 1358) +# ||119g.com/fanwan/ (easylistchina.txt: 1374) .119g.com/fanwan/ -# ||119.167.73.60/m_code/ (easylistchina+easylist.txt: 1357) +# ||119.167.73.60/m_code/ (easylistchina.txt: 1373) .119.167.73.60/m_code/ -# ||115mm.com/js/ (easylistchina+easylist.txt: 1356) +# ||115mm.com/js/ (easylistchina.txt: 1372) .115mm.com/js/ -# ||115img.com/static/pc/d_127.html (easylistchina+easylist.txt: 1355) +# ||115img.com/static/pc/d_127.html (easylistchina.txt: 1371) .115img.com/static/pc/d_127\.html -# ||115.29.141.121:8086/js/wp.js (easylistchina+easylist.txt: 1353) +# ||115.29.141.121:8086/js/wp.js (easylistchina.txt: 1369) .115.29.141.121:8086/js/wp\.js -# ||115.28.6.94:8090/js/s (easylistchina+easylist.txt: 1352) +# ||115.28.6.94:8090/js/s (easylistchina.txt: 1368) .115.28.6.94:8090/js/s -# ||115.28.114.149^*_proxy. (easylistchina+easylist.txt: 1351) +# ||115.28.114.149^*_proxy. (easylistchina.txt: 1367) .115.28.114.149/.*_proxy\. -# ||114so.cn/js/nm*.js (easylistchina+easylist.txt: 1349) +# ||114so.cn/js/nm*.js (easylistchina.txt: 1365) .114so.cn/js/nm.*\.js -# ||114fw.com/dagg/ (easylistchina+easylist.txt: 1348) +# ||114fw.com/dagg/ (easylistchina.txt: 1364) .114fw.com/dagg/ -# ||113.17.188.44/*.js (easylistchina+easylist.txt: 1347) +# ||113.17.188.44/*.js (easylistchina.txt: 1363) .113.17.188.44/.*\.js -# ||112.126.66.58^*?mid= (easylistchina+easylist.txt: 1346) +# ||112.126.66.58^*?mid= (easylistchina.txt: 1362) .112.126.66.58/.*\?mid= -# ||111cn.net/v8/fun.js (easylistchina+easylist.txt: 1345) +# ||111cn.net/v8/fun.js (easylistchina.txt: 1361) .111cn.net/v8/fun\.js -# ||111cn.net/js/v8/page_ (easylistchina+easylist.txt: 1344) +# ||111cn.net/js/v8/page_ (easylistchina.txt: 1360) .111cn.net/js/v8/page_ -# ||111cn.net/js/v8/body (easylistchina+easylist.txt: 1343) +# ||111cn.net/js/v8/body (easylistchina.txt: 1359) .111cn.net/js/v8/body -# ||111cn.net/js/v8/art_ (easylistchina+easylist.txt: 1342) +# ||111cn.net/js/v8/art_ (easylistchina.txt: 1358) .111cn.net/js/v8/art_ -# ||111cn.net/js/downc*.js (easylistchina+easylist.txt: 1341) +# ||111cn.net/js/downc*.js (easylistchina.txt: 1357) .111cn.net/js/downc.*\.js -# ||111cn.net/images/v8/vip.jpg (easylistchina+easylist.txt: 1340) +# ||111cn.net/images/v8/vip.jpg (easylistchina.txt: 1356) .111cn.net/images/v8/vip\.jpg -# ||111cn.net/gg_ad/ (easylistchina+easylist.txt: 1339) +# ||111cn.net/gg_ad/ (easylistchina.txt: 1355) .111cn.net/gg_ad/ -# ||11.mydrivers.com/news/google468x60.js (easylistchina+easylist.txt: 1338) +# ||11.mydrivers.com/news/google468x60.js (easylistchina.txt: 1354) .11.mydrivers.com/news/google468x60\.js -# ||11.mydrivers.com/news/03.js (easylistchina+easylist.txt: 1337) +# ||11.mydrivers.com/news/03.js (easylistchina.txt: 1353) .11.mydrivers.com/news/03\.js -# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina+easylist.txt: 1336) +# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina.txt: 1352) .11.mydrivers.com/myfiles/myfiles100.*\.js -# ||11.mydrivers.com/myfiles/0*.js (easylistchina+easylist.txt: 1335) +# ||11.mydrivers.com/myfiles/0*.js (easylistchina.txt: 1351) .11.mydrivers.com/myfiles/0.*\.js -# ||11.mydrivers.com/drivers/ (easylistchina+easylist.txt: 1334) +# ||11.mydrivers.com/drivers/ (easylistchina.txt: 1350) .11.mydrivers.com/drivers/ -# ||10yan.com/mmm/ (easylistchina+easylist.txt: 1333) +# ||10yan.com/mmm/ (easylistchina.txt: 1349) .10yan.com/mmm/ -# ||10pan.cc/rili.gif (easylistchina+easylist.txt: 1332) +# ||10pan.cc/rili.gif (easylistchina.txt: 1348) .10pan.cc/rili\.gif -# ||10pan.*/adblockTester/ (easylistchina+easylist.txt: 1331) +# ||10pan.*/adblockTester/ (easylistchina.txt: 1347) .10pan.*./(.*/)?adblockTester/ -# ||10jqka.com.cn/public/stock/red.html? (easylistchina+easylist.txt: 1330) +# ||10jqka.com.cn/public/stock/red.html? (easylistchina.txt: 1346) .10jqka.com.cn/public/stock/red\.html\? -# ||1080pba.com/templets/default/images/8.gif (easylistchina+easylist.txt: 1329) +# ||1080pba.com/templets/default/images/8.gif (easylistchina.txt: 1345) .1080pba.com/templets/default/images/8\.gif -# ||1080pba.com/templets/default/images/4.gif (easylistchina+easylist.txt: 1328) +# ||1080pba.com/templets/default/images/4.gif (easylistchina.txt: 1344) .1080pba.com/templets/default/images/4\.gif -# ||1080pba.com/templets/default/images/3.gif (easylistchina+easylist.txt: 1327) +# ||1080pba.com/templets/default/images/3.gif (easylistchina.txt: 1343) .1080pba.com/templets/default/images/3\.gif -# ||1080pba.com/templets/default/images/2.gif (easylistchina+easylist.txt: 1326) +# ||1080pba.com/templets/default/images/2.gif (easylistchina.txt: 1342) .1080pba.com/templets/default/images/2\.gif -# ||1080pba.com/templets/default/images/1.gif (easylistchina+easylist.txt: 1325) +# ||1080pba.com/templets/default/images/1.gif (easylistchina.txt: 1341) .1080pba.com/templets/default/images/1\.gif -# ||1080pba.com/templets/default/images/02.gif (easylistchina+easylist.txt: 1324) +# ||1080pba.com/templets/default/images/02.gif (easylistchina.txt: 1340) .1080pba.com/templets/default/images/02\.gif -# ||107.182.131.103/cache/?q=/images/ (easylistchina+easylist.txt: 1323) +# ||108.171.248.234^ (easylistchina.txt: 1339) +.108.171.248.234 +# ||107.182.131.103/cache/?q=/images/ (easylistchina.txt: 1338) .107.182.131.103/cache/\?q=/images/ -# ||106.184.7.176/shuang11/ (easylistchina+easylist.txt: 1322) +# ||106.184.7.176/shuang11/ (easylistchina.txt: 1337) .106.184.7.176/shuang11/ -# ||103.225.198.230:8080/index.html (easylistchina+easylist.txt: 1321) +# ||103.225.198.230:8080/index.html (easylistchina.txt: 1336) .103.225.198.230:8080/index\.html -# ||102tv.cn/js/index_*.js (easylistchina+easylist.txt: 1320) +# ||102tv.cn/js/index_*.js (easylistchina.txt: 1335) .102tv.cn/js/index_.*\.js -# ||102tv.cn/js/desktop.js (easylistchina+easylist.txt: 1319) +# ||102tv.cn/js/desktop.js (easylistchina.txt: 1334) .102tv.cn/js/desktop\.js -# ||102tv.cn/js/ad*.js (easylistchina+easylist.txt: 1318) +# ||102tv.cn/js/ad*.js (easylistchina.txt: 1333) .102tv.cn/js/ad.*\.js -# ||101.78.195.135/js/ (easylistchina+easylist.txt: 1317) +# ||101.78.195.135/js/ (easylistchina.txt: 1332) .101.78.195.135/js/ -# ||100ksw.com/ksbd/ksbdparad.js (easylistchina+easylist.txt: 1316) +# ||100ksw.com/ksbd/ksbdparad.js (easylistchina.txt: 1331) .100ksw.com/ksbd/ksbdparad\.js -# ||100ksw.com/include/ksbdfd.js (easylistchina+easylist.txt: 1315) +# ||100ksw.com/include/ksbdfd.js (easylistchina.txt: 1330) .100ksw.com/include/ksbdfd\.js -# ||10000sb.com/4gbct.js (easylistchina+easylist.txt: 1314) +# ||10000sb.com/4gbct.js (easylistchina.txt: 1329) .10000sb.com/4gbct\.js -# ||0dian8.org/data/js/ (easylistchina+easylist.txt: 1313) +# ||0dian8.org/data/js/ (easylistchina.txt: 1328) .0dian8.org/data/js/ -# ||07908.com/images/ (easylistchina+easylist.txt: 1312) +# ||07908.com/images/ (easylistchina.txt: 1327) .07908.com/images/ -# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina+easylist.txt: 1311) +# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina.txt: 1326) .0772fang.com/assets/js/Newhouse/inserAds\.js -# ||0772fang.com/assets/js/imgorflash.js (easylistchina+easylist.txt: 1310) +# ||0772fang.com/assets/js/imgorflash.js (easylistchina.txt: 1325) .0772fang.com/assets/js/imgorflash\.js -# ||076299.cn/images/flash/20 (easylistchina+easylist.txt: 1309) +# ||076299.cn/images/flash/20 (easylistchina.txt: 1324) .076299.cn/images/flash/20 -# ||0758net.com/data/attachment/portal/ (easylistchina+easylist.txt: 1308) +# ||0758net.com/data/attachment/portal/ (easylistchina.txt: 1323) .0758net.com/data/attachment/portal/ -# ||0756.la/ad-htm/ (easylistchina+easylist.txt: 1307) +# ||0756.la/ad-htm/ (easylistchina.txt: 1322) .0756.la/ad-htm/ -# ||073img.com^*/rich.js (easylistchina+easylist.txt: 1306) +# ||073img.com^*/rich.js (easylistchina.txt: 1321) .073img.com/.*/rich\.js -# ||0668gz.com/data/attachment/portal/ (easylistchina+easylist.txt: 1305) +# ||0668gz.com/data/attachment/portal/ (easylistchina.txt: 1320) .0668gz.com/data/attachment/portal/ -# ||060s.com/my_ad/ (easylistchina+easylist.txt: 1304) +# ||060s.com/my_ad/ (easylistchina.txt: 1319) .060s.com/my_ad/ -# ||05sun.com/js/downinfo.js (easylistchina+easylist.txt: 1303) +# ||05sun.com/js/downinfo.js (easylistchina.txt: 1318) .05sun.com/js/downinfo\.js -# ||05sun.com/js/comm.js (easylistchina+easylist.txt: 1302) +# ||05sun.com/js/comm.js (easylistchina.txt: 1317) .05sun.com/js/comm\.js -# ||0597ok.com/ilike/597/ (easylistchina+easylist.txt: 1301) +# ||0597ok.com/ilike/597/ (easylistchina.txt: 1316) .0597ok.com/ilike/597/ -# ||0597kk.com/js/float.js (easylistchina+easylist.txt: 1300) +# ||0597kk.com/js/float.js (easylistchina.txt: 1315) .0597kk.com/js/float\.js -# ||0579.cn/SHow/Showplacenew.aspx (easylistchina+easylist.txt: 1299) +# ||0579.cn/SHow/Showplacenew.aspx (easylistchina.txt: 1314) .0579.cn/SHow/Showplacenew\.aspx -# ||0579.cn/images/bg.gif (easylistchina+easylist.txt: 1298) +# ||0579.cn/images/bg.gif (easylistchina.txt: 1313) .0579.cn/images/bg\.gif -# ||0575bbs.com/updateimeags/ (easylistchina+easylist.txt: 1297) +# ||0575bbs.com/updateimeags/ (easylistchina.txt: 1312) .0575bbs.com/updateimeags/ -# ||0575bbs.com/js/float.js (easylistchina+easylist.txt: 1296) +# ||0575bbs.com/js/float.js (easylistchina.txt: 1311) .0575bbs.com/js/float\.js -# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina+easylist.txt: 1295) +# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina.txt: 1310) .0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph\.gif -# ||05096.com/jsdoc/ad.html (easylistchina+easylist.txt: 1294) +# ||05096.com/jsdoc/ad.html (easylistchina.txt: 1309) .05096.com/jsdoc/ad\.html -# ||0471.so/Public/config/Couplet/Index (easylistchina+easylist.txt: 1293) +# ||0471.so/Public/config/Couplet/Index (easylistchina.txt: 1308) .0471.so/Public/config/Couplet/Index -# ||0460.com/js/txtrec.js (easylistchina+easylist.txt: 1292) +# ||0460.com/js/txtrec.js (easylistchina.txt: 1307) .0460.com/js/txtrec\.js -# ||0460.com/images/banner/ (easylistchina+easylist.txt: 1291) +# ||0460.com/images/banner/ (easylistchina.txt: 1306) .0460.com/images/banner/ -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina+easylist.txt: 1290) +# ||0452e.com/js/float.js (easylistchina.txt: 1305) +.0452e.com/js/float\.js +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina.txt: 1304) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=zhuangx -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina+easylist.txt: 1289) +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina.txt: 1303) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=topslide -# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina+easylist.txt: 1288) +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina.txt: 1302) .0439.com/wtj/homepage/handler/guangg\.ashx\?ut=classify -# ||0439.com/html/js/tuiguang.js (easylistchina+easylist.txt: 1287) +# ||0439.com/html/js/tuiguang.js (easylistchina.txt: 1301) .0439.com/html/js/tuiguang\.js -# ||0439.com/html/js/ad_r_300x220.js (easylistchina+easylist.txt: 1286) +# ||0439.com/html/js/ad_r_300x220.js (easylistchina.txt: 1300) .0439.com/html/js/ad_r_300x220\.js -# ||03jd.cn/data/attachment/portal/ (easylistchina+easylist.txt: 1285) +# ||03jd.cn/data/attachment/portal/ (easylistchina.txt: 1299) .03jd.cn/data/attachment/portal/ -# ||0379home.com/images/fullscreen_ (easylistchina+easylist.txt: 1284) +# ||0379home.com/images/fullscreen_ (easylistchina.txt: 1298) .0379home.com/images/fullscreen_ -# ||0379home.com/2014/js/beside.js (easylistchina+easylist.txt: 1283) +# ||0379home.com/2014/js/beside.js (easylistchina.txt: 1297) .0379home.com/2014/js/beside\.js -# ||0379home.com/2014/js/ad_pic.js (easylistchina+easylist.txt: 1282) +# ||0379home.com/2014/js/ad_pic.js (easylistchina.txt: 1296) .0379home.com/2014/js/ad_pic\.js -# ||027down.com/images/banner760-60.gif (easylistchina+easylist.txt: 1281) +# ||027down.com/images/banner760-60.gif (easylistchina.txt: 1295) .027down.com/images/banner760-60\.gif -# ||022net.com/main/browse_yme.js (easylistchina+easylist.txt: 1280) +# ||022net.com/main/browse_yme.js (easylistchina.txt: 1294) .022net.com/main/browse_yme\.js -# ||022net.com/js/mhtml/phtml07.html (easylistchina+easylist.txt: 1279) +# ||022net.com/js/mhtml/phtml07.html (easylistchina.txt: 1293) .022net.com/js/mhtml/phtml07\.html -# ||022net.com/js/mhtml/phtml04.html (easylistchina+easylist.txt: 1278) +# ||022net.com/js/mhtml/phtml04.html (easylistchina.txt: 1292) .022net.com/js/mhtml/phtml04\.html -# ||022net.com/js/mhtml/phtml03.html (easylistchina+easylist.txt: 1277) +# ||022net.com/js/mhtml/phtml03.html (easylistchina.txt: 1291) .022net.com/js/mhtml/phtml03\.html -# ||021wudi.com/admguan- (easylistchina+easylist.txt: 1276) +# ||021wudi.com/admguan- (easylistchina.txt: 1290) .021wudi.com/admguan- -# ||020.com/960_70 (easylistchina+easylist.txt: 1275) +# ||020.com/960_70 (easylistchina.txt: 1289) .020.com/960_70 -# ||007.mx/flv/ (easylistchina+easylist.txt: 1274) +# ||007.mx/flv/ (easylistchina.txt: 1288) .007.mx/flv/ -# ||005.tv:60000/ad.js (easylistchina+easylist.txt: 1273) +# ||005.tv:60000/ad.js (easylistchina.txt: 1287) .005.tv:60000/ad\.js -# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina+easylist.txt: 1272) +# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina.txt: 1286) .005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm\.jpg -# ||00170017.net/Public/images/ (easylistchina+easylist.txt: 1270) +# ||00170017.net/Public/images/ (easylistchina.txt: 1284) .00170017.net/Public/images/ -# ||00170017.net/Public/dzb_gg.js (easylistchina+easylist.txt: 1269) +# ||00170017.net/Public/dzb_gg.js (easylistchina.txt: 1283) .00170017.net/Public/dzb_gg\.js -# |http://www.i-ab.co/zz/ (easylistchina+easylist.txt: 1268) +# |http://www.i-ab.co/zz/ (easylistchina.txt: 1282) www.i-ab.co/zz/ -# |http://*/ad_bj.js? (easylistchina+easylist.txt: 1260) +# |http://*/ad_bj.js? (easylistchina.txt: 1274) /(.*/)?ad_bj\.js\? -# |http://*.7m.cn/b/ (easylistchina+easylist.txt: 1258) +# |http://*.7m.cn/b/ (easylistchina.txt: 1272) /.*\.7m\.cn/b/ .*.7m.cn/b/ -# _yad_jsonp_ (easylistchina+easylist.txt: 1252) +# _yad_jsonp_ (easylistchina.txt: 1266) /.*_yad_jsonp_ -# _vmind.qqvideo.tc.qq.com^ (easylistchina+easylist.txt: 1251) +# _vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1265) /.*_vmind\.qqvideo\.tc\.qq\.com[^\w%.-] -# _!!1731999033. (easylistchina+easylist.txt: 1249) +# _!!1731999033. (easylistchina.txt: 1263) /.*_!!1731999033\. -# ^zhuanqian/adall.js (easylistchina+easylist.txt: 1248) +# ^zhuanqian/adall.js (easylistchina.txt: 1262) /(.*[^\w%.-])?zhuanqian/adall\.js -# ?method=baidu.ting.commercial.tactics& (easylistchina+easylist.txt: 1247) +# ?method=baidu.ting.commercial.tactics& (easylistchina.txt: 1261) /.*\?method=baidu\.ting\.commercial\.tactics& -# :88/lighttpd/default/ (easylistchina+easylist.txt: 1246) +# :88/lighttpd/default/ (easylistchina.txt: 1260) /.*:88/lighttpd/default/ -# /yythems/images/tuiguang.png (easylistchina+easylist.txt: 1245) +# /yythems/images/tuiguang.png (easylistchina.txt: 1259) /(.*/)?yythems/images/tuiguang\.png -# /yythems/images/1213.gif (easylistchina+easylist.txt: 1244) +# /yythems/images/1213.gif (easylistchina.txt: 1258) /(.*/)?yythems/images/1213\.gif -# /ysm/ewdna/* (easylistchina+easylist.txt: 1243) +# /ysm/ewdna/* (easylistchina.txt: 1257) /(.*/)?ysm/ewdna/.* -# /ysm.ezprice.net/* (easylistchina+easylist.txt: 1242) +# /ysm.ezprice.net/* (easylistchina.txt: 1256) /(.*/)?ysm\.ezprice\.net/.* ysm.ezprice.net/.* -# /youxituoluo/images/text_top_ (easylistchina+easylist.txt: 1241) +# /youxituoluo/images/text_top_ (easylistchina.txt: 1255) /(.*/)?youxituoluo/images/text_top_ -# /xiao1234.com/ads/* (easylistchina+easylist.txt: 1237) +# /xiao1234.com/ads/* (easylistchina.txt: 1251) /(.*/)?xiao1234\.com/ads/.* xiao1234.com/ads/.* -# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina+easylist.txt: 1234) +# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina.txt: 1248) /(.*/)?www\.soft4fun\.net/wp-content/uploads/.*_banner www.soft4fun.net/wp-content/uploads/.*_banner -# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina+easylist.txt: 1233) +# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina.txt: 1247) /(.*/)?www\.kocpc\.com\.tw/wp-content/uploads/.*\.gif www.kocpc.com.tw/wp-content/uploads/.*\.gif -# /wangyuedeux/imgs/youlian.png (easylistchina+easylist.txt: 1228) +# /wangyuedeux/imgs/youlian.png (easylistchina.txt: 1242) /(.*/)?wangyuedeux/imgs/youlian\.png -# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina+easylist.txt: 1227) +# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina.txt: 1241) /(.*/)?wangyuedeux/imgs/wangzhuano\.jpg -# /vmind.qqvideo.tc.qq.com^ (easylistchina+easylist.txt: 1226) +# /vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1240) /(.*/)?vmind\.qqvideo\.tc\.qq\.com[^\w%.-] vmind.qqvideo.tc.qq.com -# /uniontgm.cmb. (easylistchina+easylist.txt: 1224) +# /uniontgm.cmb. (easylistchina.txt: 1238) /(.*/)?uniontgm\.cmb\. uniontgm.cmb.*. -# /tonghuacun/skin/zxf/kan_hree.js (easylistchina+easylist.txt: 1222) +# /tonghuacun/skin/zxf/kan_hree.js (easylistchina.txt: 1236) /(.*/)?tonghuacun/skin/zxf/kan_hree\.js -# /sznews/images/bbsgg (easylistchina+easylist.txt: 1219) +# /sznews/images/bbsgg (easylistchina.txt: 1233) /(.*/)?sznews/images/bbsgg -# /static/btmeegg/* (easylistchina+easylist.txt: 1216) +# /static/btmeegg/* (easylistchina.txt: 1230) /(.*/)?static/btmeegg/.* -# /sinaLoginReward2014_comment. (easylistchina+easylist.txt: 1212) +# /sinaLoginReward2014_comment. (easylistchina.txt: 1227) /(.*/)?sinaLoginReward2014_comment\. -# /sinaLoginReward2014. (easylistchina+easylist.txt: 1211) +# /sinaLoginReward2014. (easylistchina.txt: 1226) /(.*/)?sinaLoginReward2014\. sinaLoginReward2014.*. -# /sc_ifeng/* (easylistchina+easylist.txt: 1209) +# /sc_ifeng/* (easylistchina.txt: 1224) /(.*/)?sc_ifeng/.* -# /opbb/obpp.tpl (easylistchina+easylist.txt: 1205) +# /opbb/obpp.tpl (easylistchina.txt: 1220) /(.*/)?opbb/obpp\.tpl -# /opbb/float.js (easylistchina+easylist.txt: 1204) +# /opbb/float.js (easylistchina.txt: 1219) /(.*/)?opbb/float\.js -# /nowscore/ad/* (easylistchina+easylist.txt: 1203) +# /nowscore/ad/* (easylistchina.txt: 1218) /(.*/)?nowscore/ad/.* -# /nimabdd_1010/*baidu (easylistchina+easylist.txt: 1202) +# /nimabdd_1010/*baidu (easylistchina.txt: 1217) /(.*/)?nimabdd_1010/.*baidu -# /newhuagg/index_ (easylistchina+easylist.txt: 1200) +# /newhuagg/index_ (easylistchina.txt: 1215) /(.*/)?newhuagg/index_ -# /newhuagg/*_right (easylistchina+easylist.txt: 1199) +# /newhuagg/*_right (easylistchina.txt: 1214) /(.*/)?newhuagg/.*_right -# /nddailyfile/webadv/* (easylistchina+easylist.txt: 1198) +# /nddailyfile/webadv/* (easylistchina.txt: 1213) /(.*/)?nddailyfile/webadv/.* -# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina+easylist.txt: 1196) +# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina.txt: 1211) /(.*/)?msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d\.jpg -# /moneymaker/js/videoplayer.js (easylistchina+easylist.txt: 1195) +# /moneymaker/js/videoplayer.js (easylistchina.txt: 1210) /(.*/)?moneymaker/js/videoplayer\.js -# /moneymaker/js/tmpp.js (easylistchina+easylist.txt: 1194) +# /moneymaker/js/tmpp.js (easylistchina.txt: 1209) /(.*/)?moneymaker/js/tmpp\.js -# /moneymaker/js/kppp.js (easylistchina+easylist.txt: 1193) +# /moneymaker/js/kppp.js (easylistchina.txt: 1208) /(.*/)?moneymaker/js/kppp\.js -# /moneymaker/js/fkpp.js (easylistchina+easylist.txt: 1192) +# /moneymaker/js/fkpp.js (easylistchina.txt: 1207) /(.*/)?moneymaker/js/fkpp\.js -# /moneymaker/images/*.gif (easylistchina+easylist.txt: 1191) +# /moneymaker/images/*.gif (easylistchina.txt: 1206) /(.*/)?moneymaker/images/.*\.gif -# /modules/video/player/nuevo/midroll.php? (easylistchina+easylist.txt: 1190) +# /modules/video/player/nuevo/midroll.php? (easylistchina.txt: 1205) /(.*/)?modules/video/player/nuevo/midroll\.php\? -# /kocpc.myweb.hinet.net^ (easylistchina+easylist.txt: 1186) +# /kocpc.myweb.hinet.net^ (easylistchina.txt: 1202) /(.*/)?kocpc\.myweb\.hinet\.net[^\w%.-] kocpc.myweb.hinet.net -# /images/amsun100.png (easylistchina+easylist.txt: 1164) +# /images/amsun100.png (easylistchina.txt: 1182) /(.*/)?images/amsun100\.png -# /ifengRotatorAd.js (easylistchina+easylist.txt: 1158) +# /ifengRotatorAd.js (easylistchina.txt: 1176) /(.*/)?ifengRotatorAd\.js ifengRotatorAd.js*. -# /html/taobao_focus_ (easylistchina+easylist.txt: 1157) +# /html/taobao_focus_ (easylistchina.txt: 1175) /(.*/)?html/taobao_focus_ -# /homead/*_appledaily_bg. (easylistchina+easylist.txt: 1155) +# /homead/*_appledaily_bg. (easylistchina.txt: 1173) /(.*/)?homead/.*_appledaily_bg\. -# /gyw_index/*/images/ad_ (easylistchina+easylist.txt: 1154) +# /gyw_index/*/images/ad_ (easylistchina.txt: 1172) /(.*/)?gyw_index/.*/images/ad_ -# /game/aplus/pptv/* (easylistchina+easylist.txt: 1149) +# /game/aplus/pptv/* (easylistchina.txt: 1167) /(.*/)?game/aplus/pptv/.* -# /front/adv/getpmadvlist (easylistchina+easylist.txt: 1148) +# /front/adv/getpmadvlist (easylistchina.txt: 1166) /(.*/)?front/adv/getpmadvlist -# /dy_44jjss/* (easylistchina+easylist.txt: 1144) -/(.*/)?dy_44jjss/.* -# /dhfun_ad/* (easylistchina+easylist.txt: 1143) +# /dhfun_ad/* (easylistchina.txt: 1163) /(.*/)?dhfun_ad/.* -# /comiis_yccs/ads/* (easylistchina+easylist.txt: 1138) +# /comiis_yccs/ads/* (easylistchina.txt: 1158) /(.*/)?comiis_yccs/ads/.* -# /cari/daybanner/* (easylistchina+easylist.txt: 1137) +# /cari/daybanner/* (easylistchina.txt: 1157) /(.*/)?cari/daybanner/.* -# /cari/banner/* (easylistchina+easylist.txt: 1136) +# /cari/banner/* (easylistchina.txt: 1156) /(.*/)?cari/banner/.* -# /avshow_cn1.gif (easylistchina+easylist.txt: 1129) +# /avshow_cn1.gif (easylistchina.txt: 1149) /(.*/)?avshow_cn1\.gif -# /Atemplate/dd_1010/baidu (easylistchina+easylist.txt: 1125) +# /Atemplate/dd_1010/baidu (easylistchina.txt: 1146) /(.*/)?Atemplate/dd_1010/baidu -# /Aemplate/dd_1010/baidu (easylistchina+easylist.txt: 1121) +# /Aemplate/dd_1010/baidu (easylistchina.txt: 1142) /(.*/)?Aemplate/dd_1010/baidu -# /adscript/crazyad.js (easylistchina+easylist.txt: 1119) +# /adscript/crazyad.js (easylistchina.txt: 1140) /(.*/)?adscript/crazyad\.js -# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina+easylist.txt: 1115) +# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina.txt: 1139) /(.*/)?Addsa\.dsj/Bsdd_1010/.*Baidu Addsa.dsj/Bsdd_1010/.*Baidu -# /adcg/* (easylistchina+easylist.txt: 1114) +# /adcg/* (easylistchina.txt: 1138) /(.*/)?adcg/.* -# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina+easylist.txt: 1111) +# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina.txt: 1135) /(.*/)?a83b3cdeacac5a503717469ca5084ebc\. a83b3cdeacac5a503717469ca5084ebc.*. -# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina+easylist.txt: 1106) +# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina.txt: 1130) /(.*/)?934b2bc8de85e32ae7588f2eb955ee36\. 934b2bc8de85e32ae7588f2eb955ee36.*. -# /52meiju_7 (easylistchina+easylist.txt: 1105) +# /52meiju_7 (easylistchina.txt: 1129) /(.*/)?52meiju_7 -# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina+easylist.txt: 1104) +# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina.txt: 1128) /(.*/)?435f1c6f9f6b545254a00e426b9aeae1\. 435f1c6f9f6b545254a00e426b9aeae1.*. -# /404.safedog.cn/sitedog_stat_new.html (easylistchina+easylist.txt: 1103) +# /404.safedog.cn/sitedog_stat_new.html (easylistchina.txt: 1127) /(.*/)?404\.safedog\.cn/sitedog_stat_new\.html 404.safedog.cn/sitedog_stat_new\.html -# /2tu/heisiwang.js (easylistchina+easylist.txt: 1102) +# /2tu/heisiwang.js (easylistchina.txt: 1126) /(.*/)?2tu/heisiwang\.js -# /2tu/ads/* (easylistchina+easylist.txt: 1101) +# /2tu/ads/* (easylistchina.txt: 1125) /(.*/)?2tu/ads/.* -# /200804ad/* (easylistchina+easylist.txt: 1099) +# /200804ad/* (easylistchina.txt: 1123) /(.*/)?200804ad/.* -# /18touch-guanggao. (easylistchina+easylist.txt: 1098) +# /18touch-guanggao. (easylistchina.txt: 1122) /(.*/)?18touch-guanggao\. 18touch-guanggao.*. -# /10jqka_info/html/ad_ (easylistchina+easylist.txt: 1097) +# /10jqka_info/html/ad_ (easylistchina.txt: 1121) /(.*/)?10jqka_info/html/ad_ -# .niusnews.com/upload/banners/ (easylistchina+easylist.txt: 1096) +# .niusnews.com/upload/banners/ (easylistchina.txt: 1120) /.*\.niusnews\.com/upload/banners/ .*.niusnews.com/upload/banners/ -# ||pacd.3conline.com^ (easylistchina+easylist.txt: 1090) -.pacd.3conline.com -# .adsame.libaclub.com^ (easylistchina+easylist.txt: 1089) +# .adsame.libaclub.com^ (easylistchina.txt: 1113) /.*\.adsame\.libaclub\.com[^\w%.-] .*.adsame.libaclub.com -# .543evv.com/js/config.js (easylistchina+easylist.txt: 1088) +# .543evv.com/js/config.js (easylistchina.txt: 1112) /.*\.543evv\.com/js/config\.js .*.543evv.com/js/config\.js -# ||zhubajie.com/?fromcode=$popup (easylistchina+easylist.txt: 1086) +# ||zhubajie.com/?fromcode=$popup (easylistchina.txt: 1110) .zhubajie.com/\?fromcode= -# ||yy18.info/yyrethanks18.$popup (easylistchina+easylist.txt: 1085) +# ||yy18.info/yyrethanks18.$popup (easylistchina.txt: 1109) .yy18.info/yyrethanks18\. -# ||uc8.cc/award/$popup (easylistchina+easylist.txt: 1081) -.uc8.cc/award/ -# ||t-movies.com.tw/pop.asp$popup (easylistchina+easylist.txt: 1078) +# ||t-movies.com.tw/pop.asp$popup (easylistchina.txt: 1102) .t-movies.com.tw/pop\.asp -# ||sohu.com/i/?pvid=$popup (easylistchina+easylist.txt: 1076) +# ||sohu.com/i/?pvid=$popup (easylistchina.txt: 1100) .sohu.com/i/\?pvid= -# ||smartor.org/iclk/?zoneid=$popup (easylistchina+easylist.txt: 1075) +# ||smartor.org/iclk/?zoneid=$popup (easylistchina.txt: 1099) .smartor.org/iclk/\?zoneid= -# ||qidian.com/showavd.$popup (easylistchina+easylist.txt: 1074) +# ||qidian.com/showavd.$popup (easylistchina.txt: 1098) .qidian.com/showavd\. -# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina+easylist.txt: 1070) +# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina.txt: 1094) .kuai.xunlei.com/do_e_mu\?data= -# ||jjwxc.net/jjad*.html$popup (easylistchina+easylist.txt: 1068) +# ||jjwxc.net/jjad*.html$popup (easylistchina.txt: 1092) .jjwxc.net/jjad.*\.html -# ||iqiyi.com/track$popup (easylistchina+easylist.txt: 1066) +# ||iqiyi.com/track$popup (easylistchina.txt: 1090) .iqiyi.com/track -# ||ihualun.com^$popup (easylistchina+easylist.txt: 1065) +# ||ihualun.com^$popup (easylistchina.txt: 1089) .ihualun.com -# ||hinet.net/product/promotion/$popup (easylistchina+easylist.txt: 1064) +# ||hinet.net/product/promotion/$popup (easylistchina.txt: 1088) .hinet.net/product/promotion/ -# ||greenet.cn^*_popu_$popup (easylistchina+easylist.txt: 1062) +# ||greenet.cn^*_popu_$popup (easylistchina.txt: 1087) .greenet.cn/.*_popu_ -# ||c.admaster.com.cn^$popup (easylistchina+easylist.txt: 1054) +# ||gamer.com.tw/adcounter.$popup (easylistchina.txt: 1081) +.gamer.com.tw/adcounter\. +# ||c.admaster.com.cn^$popup (easylistchina.txt: 1079) .c.admaster.com.cn -# ||ark.letv.com/t?$popup (easylistchina+easylist.txt: 1053) +# ||baidu.com/baidu.php?url=$popup (easylistchina.txt: 1078) +.baidu.com/baidu\.php\?url= +# ||baidu.com/adrc.$popup (easylistchina.txt: 1077) +.baidu.com/adrc\. +# ||ark.letv.com/t?$popup (easylistchina.txt: 1076) .ark.letv.com/t\? -# ||aiwanma99.com^$popup (easylistchina+easylist.txt: 1052) +# ||aiwanma99.com^$popup (easylistchina.txt: 1075) .aiwanma99.com -# ||ad.189so.cn^$popup (easylistchina+easylist.txt: 1051) +# ||ad.189so.cn^$popup (easylistchina.txt: 1074) .ad.189so.cn -# ||9100300.com^$popup (easylistchina+easylist.txt: 1049) +# ||9100300.com^$popup (easylistchina.txt: 1072) .9100300.com -# ||133gp.com^$popup (easylistchina+easylist.txt: 1047) +# ||133gp.com^$popup (easylistchina.txt: 1070) .133gp.com -# /portalwlanad/pages/*$popup (easylistchina+easylist.txt: 1041) +# /portalwlanad/pages/*$popup (easylistchina.txt: 1064) /(.*/)?portalwlanad/pages/.* -# ||zp22938576.com^ (easylistchina+easylist.txt: 1030) +# ||zp22938576.com^ (easylistchina.txt: 1053) .zp22938576.com -# ||zgunion.cn^ (easylistchina+easylist.txt: 1027) +# ||zgunion.cn^ (easylistchina.txt: 1050) .zgunion.cn -# ||zgksb.com^ (easylistchina+easylist.txt: 1026) +# ||zgksb.com^ (easylistchina.txt: 1049) .zgksb.com -# ||yyp17.com^ (easylistchina+easylist.txt: 1020) +# ||yyp17.com^ (easylistchina.txt: 1043) .yyp17.com -# ||yule8.net^ (easylistchina+easylist.txt: 1017) +# ||yule8.net^ (easylistchina.txt: 1040) .yule8.net -# ||yqw88.com^ (easylistchina+easylist.txt: 1015) +# ||yqw88.com^ (easylistchina.txt: 1037) .yqw88.com -# ||ymcqb.com^ (easylistchina+easylist.txt: 1008) +# ||ymcqb.com^ (easylistchina.txt: 1030) .ymcqb.com -# ||yk0712.com^ (easylistchina+easylist.txt: 1007) +# ||yk0712.com^ (easylistchina.txt: 1029) .yk0712.com -# ||xzyituo.com^ (easylistchina+easylist.txt: 999) +# ||xzyituo.com^ (easylistchina.txt: 1021) .xzyituo.com -# ||xxad.cc^ (easylistchina+easylist.txt: 997) +# ||xxad.cc^ (easylistchina.txt: 1019) .xxad.cc -# ||xtxa.net^ (easylistchina+easylist.txt: 996) +# ||xtxa.net^ (easylistchina.txt: 1018) .xtxa.net -# ||xhmrv.com^ (easylistchina+easylist.txt: 993) +# ||xhmrv.com^ (easylistchina.txt: 1015) .xhmrv.com -# ||xcy8.com^ (easylistchina+easylist.txt: 990) +# ||xcy8.com^ (easylistchina.txt: 1012) .xcy8.com -# ||xchgx.com^ (easylistchina+easylist.txt: 989) +# ||xchgx.com^ (easylistchina.txt: 1011) .xchgx.com -# ||xabaitai.com^ (easylistchina+easylist.txt: 987) +# ||xabaitai.com^ (easylistchina.txt: 1009) .xabaitai.com -# ||xa9t.com^ (easylistchina+easylist.txt: 986) +# ||xa9t.com^ (easylistchina.txt: 1008) .xa9t.com -# ||ws341.com^ (easylistchina+easylist.txt: 984) +# ||x9377a.com^ (easylistchina.txt: 1007) +.x9377a.com +# ||ws341.com^ (easylistchina.txt: 1005) .ws341.com -# ||wqsph.net^ (easylistchina+easylist.txt: 982) +# ||wqsph.net^ (easylistchina.txt: 1003) .wqsph.net -# ||winvestern.com.cn^ (easylistchina+easylist.txt: 979) +# ||winvestern.com.cn^ (easylistchina.txt: 1000) .winvestern.com.cn -# ||wdzsb.com.cn^ (easylistchina+easylist.txt: 974) +# ||wdzsb.com.cn^ (easylistchina.txt: 995) .wdzsb.com.cn -# ||w65p.com^ (easylistchina+easylist.txt: 973) +# ||w65p.com^ (easylistchina.txt: 994) .w65p.com -# ||victorjx.com^ (easylistchina+easylist.txt: 969) +# ||victorjx.com^ (easylistchina.txt: 990) .victorjx.com -# ||v707070.com^ (easylistchina+easylist.txt: 966) +# ||v707070.com^ (easylistchina.txt: 987) .v707070.com -# ||uoyrsd.com^ (easylistchina+easylist.txt: 963) +# ||uoyrsd.com^ (easylistchina.txt: 984) .uoyrsd.com -# ||ubmcmm.baidustatic.com^ (easylistchina+easylist.txt: 951) +# ||ubmcmm.baidustatic.com^ (easylistchina.txt: 972) .ubmcmm.baidustatic.com -# ||toourbb.com^ (easylistchina+easylist.txt: 937) +# ||toourbb.com^ (easylistchina.txt: 958) .toourbb.com -# ||tg.1155t.cn^ (easylistchina+easylist.txt: 935) +# ||tg.1155t.cn^ (easylistchina.txt: 956) .tg.1155t.cn -# ||tdayi.com^ (easylistchina+easylist.txt: 933) +# ||tdayi.com^ (easylistchina.txt: 954) .tdayi.com -# ||tc600.com^ (easylistchina+easylist.txt: 932) +# ||tc600.com^ (easylistchina.txt: 953) .tc600.com -# ||taobaoij.com: (easylistchina+easylist.txt: 929) -# ||tad.suning.com^ (easylistchina+easylist.txt: 925) +# ||taobaoij.com: (easylistchina.txt: 950) +# ||tad.suning.com^ (easylistchina.txt: 946) .tad.suning.com -# ||taat00889.com^ (easylistchina+easylist.txt: 924) +# ||taat00889.com^ (easylistchina.txt: 945) .taat00889.com -# ||t70123.com^ (easylistchina+easylist.txt: 922) +# ||t70123.com^ (easylistchina.txt: 943) .t70123.com -# ||sstc360.com^ (easylistchina+easylist.txt: 917) +# ||sunjianhao.com^ (easylistchina.txt: 940) +.sunjianhao.com +# ||sstc360.com^ (easylistchina.txt: 937) .sstc360.com -# ||spcode.baidu.com^ (easylistchina+easylist.txt: 915) +# ||spcode.baidu.com^ (easylistchina.txt: 935) .spcode.baidu.com -# ||socdm.com^ (easylistchina+easylist.txt: 912) +# ||socdm.com^ (easylistchina.txt: 932) .socdm.com -# ||si9377.com^ (easylistchina+easylist.txt: 908) +# ||si9377.com^ (easylistchina.txt: 928) .si9377.com -# ||show.kc.taotaosou.com^ (easylistchina+easylist.txt: 907) +# ||show.kc.taotaosou.com^ (easylistchina.txt: 927) .show.kc.taotaosou.com -# ||sharedaddomain.com^ (easylistchina+easylist.txt: 905) +# ||sharedaddomain.com^ (easylistchina.txt: 925) .sharedaddomain.com -# ||sgbfjs.info^ (easylistchina+easylist.txt: 904) +# ||sgbfjs.info^ (easylistchina.txt: 924) .sgbfjs.info -# ||rwjfs.com^ (easylistchina+easylist.txt: 900) +# ||rwjfs.com^ (easylistchina.txt: 920) .rwjfs.com -# ||ruxianke.com^ (easylistchina+easylist.txt: 899) +# ||ruxianke.com^ (easylistchina.txt: 919) .ruxianke.com -# ||re.taotaosou.com^ (easylistchina+easylist.txt: 896) +# ||re.taotaosou.com^ (easylistchina.txt: 916) .re.taotaosou.com -# ||qucaigg.com^ (easylistchina+easylist.txt: 894) +# ||qucaigg.com^ (easylistchina.txt: 914) .qucaigg.com -# ||qiqiww.com^ (easylistchina+easylist.txt: 890) +# ||qiqiww.com^ (easylistchina.txt: 909) .qiqiww.com -# ||pos.baidu.com^ (easylistchina+easylist.txt: 885) +# ||pos.baidu.com^ (easylistchina.txt: 904) .pos.baidu.com -# ||pdsjycm.com^ (easylistchina+easylist.txt: 884) +# ||pdsjycm.com^ (easylistchina.txt: 903) .pdsjycm.com -# ||p3tt.com^ (easylistchina+easylist.txt: 882) +# ||p3tt.com^ (easylistchina.txt: 901) .p3tt.com -# ||p0y.cn^*.swf (easylistchina+easylist.txt: 881) +# ||p0y.cn^*.swf (easylistchina.txt: 900) .p0y.cn/.*\.swf -# ||okm918.com^ (easylistchina+easylist.txt: 877) +# ||okm918.com^ (easylistchina.txt: 896) .okm918.com -# ||oikxlcv.wang^ (easylistchina+easylist.txt: 876) +# ||oikxlcv.wang^ (easylistchina.txt: 895) .oikxlcv.wang -# ||notice.uchome.manyou.com^ (easylistchina+easylist.txt: 872) +# ||notice.uchome.manyou.com^ (easylistchina.txt: 891) .notice.uchome.manyou.com -# ||niuxgame77.com^ (easylistchina+easylist.txt: 870) +# ||niuxgame77.com^ (easylistchina.txt: 889) .niuxgame77.com -# ||nextcps.com^ (easylistchina+easylist.txt: 867) +# ||nextcps.com^ (easylistchina.txt: 886) .nextcps.com -# ||mscimg.com^ (easylistchina+easylist.txt: 861) +# ||mscimg.com^ (easylistchina.txt: 880) .mscimg.com -# ||moodoocrv.com.cn^ (easylistchina+easylist.txt: 859) +# ||moodoocrv.com.cn^ (easylistchina.txt: 878) .moodoocrv.com.cn -# ||mlt01.com^ (easylistchina+easylist.txt: 857) +# ||mlt01.com^ (easylistchina.txt: 876) .mlt01.com -# ||mathads.com^ (easylistchina+easylist.txt: 851) +# ||mathads.com^ (easylistchina.txt: 870) .mathads.com -# ||mainbx.com^ (easylistchina+easylist.txt: 849) +# ||mainbx.com^ (easylistchina.txt: 868) .mainbx.com -# ||lzmm8.com^ (easylistchina+easylist.txt: 848) +# ||lzmm8.com^ (easylistchina.txt: 867) .lzmm8.com -# ||lishuanghao.com^ (easylistchina+easylist.txt: 844) +# ||lishuanghao.com^ (easylistchina.txt: 863) .lishuanghao.com -# ||le4le.com^ (easylistchina+easylist.txt: 840) +# ||le4le.com^ (easylistchina.txt: 859) .le4le.com -# ||lajizhan.org^ (easylistchina+easylist.txt: 838) +# ||lajizhan.org^ (easylistchina.txt: 857) .lajizhan.org -# ||ku9377.com^ (easylistchina+easylist.txt: 836) +# ||ku9377.com^ (easylistchina.txt: 855) .ku9377.com -# ||kmadou.com^ (easylistchina+easylist.txt: 834) +# ||kmadou.com^ (easylistchina.txt: 853) .kmadou.com -# ||kingwam.com^ (easylistchina+easylist.txt: 833) +# ||kingwam.com^ (easylistchina.txt: 852) .kingwam.com -# ||keyyou.net^ (easylistchina+easylist.txt: 831) +# ||keyyou.net^ (easylistchina.txt: 850) .keyyou.net -# ||jxjzny.com^ (easylistchina+easylist.txt: 825) +# ||jxjzny.com^ (easylistchina.txt: 843) .jxjzny.com -# ||jwqj.net^ (easylistchina+easylist.txt: 824) +# ||jwqj.net^ (easylistchina.txt: 842) .jwqj.net -# ||johtzj.com^ (easylistchina+easylist.txt: 813) +# ||johtzj.com^ (easylistchina.txt: 831) .johtzj.com -# ||jnrsjm.com^ (easylistchina+easylist.txt: 811) +# ||jnrsjm.com^ (easylistchina.txt: 829) .jnrsjm.com -# ||jlssbz.com^ (easylistchina+easylist.txt: 810) +# ||jlssbz.com^ (easylistchina.txt: 828) .jlssbz.com -# ||jk939.com^ (easylistchina+easylist.txt: 809) +# ||jk939.com^ (easylistchina.txt: 827) .jk939.com -# ||jiyou2014.com^ (easylistchina+easylist.txt: 808) +# ||jiyou2014.com^ (easylistchina.txt: 826) .jiyou2014.com -# ||jhzl001.com^ (easylistchina+easylist.txt: 802) +# ||jhzl001.com^ (easylistchina.txt: 819) .jhzl001.com -# ||jdlhg.com^ (easylistchina+easylist.txt: 801) +# ||jdlhg.com^ (easylistchina.txt: 818) .jdlhg.com -# ||jczzjx.com^ (easylistchina+easylist.txt: 800) +# ||jczzjx.com^ (easylistchina.txt: 817) .jczzjx.com -# ||img80.net^ (easylistchina+easylist.txt: 792) +# ||img80.net^ (easylistchina.txt: 809) .img80.net -# ||ihualun.com^ (easylistchina+easylist.txt: 790) +# ||ihualun.com^ (easylistchina.txt: 807) .ihualun.com -# ||i3818.com^ (easylistchina+easylist.txt: 785) +# ||i3818.com^ (easylistchina.txt: 802) .i3818.com -# ||humanding.com^ (easylistchina+easylist.txt: 782) +# ||humanding.com^ (easylistchina.txt: 799) .humanding.com -# ||hr44.com^ (easylistchina+easylist.txt: 780) +# ||hr44.com^ (easylistchina.txt: 797) .hr44.com -# ||hmp33.com^ (easylistchina+easylist.txt: 778) +# ||hmp33.com^ (easylistchina.txt: 795) .hmp33.com -# ||hfjuki.com^ (easylistchina+easylist.txt: 776) +# ||hfjuki.com^ (easylistchina.txt: 793) .hfjuki.com -# ||haolew.com^ (easylistchina+easylist.txt: 771) +# ||haolew.com^ (easylistchina.txt: 788) .haolew.com -# ||haohaowan8.com^ (easylistchina+easylist.txt: 770) +# ||haohaowan8.com^ (easylistchina.txt: 787) .haohaowan8.com -# ||hao123rt.com^ (easylistchina+easylist.txt: 767) +# ||hao123rt.com^ (easylistchina.txt: 784) .hao123rt.com -# ||gzqudou.com^ (easylistchina+easylist.txt: 765) +# ||gzqudou.com^ (easylistchina.txt: 782) .gzqudou.com -# ||gzmjnx.cn^ (easylistchina+easylist.txt: 764) +# ||gzmjnx.cn^ (easylistchina.txt: 781) .gzmjnx.cn -# ||guduopu.com^ (easylistchina+easylist.txt: 762) +# ||guduopu.com^ (easylistchina.txt: 779) .guduopu.com -# ||gm682.com^ (easylistchina+easylist.txt: 759) +# ||gm682.com^ (easylistchina.txt: 775) .gm682.com -# ||gf1352.com^ (easylistchina+easylist.txt: 756) +# ||gf1352.com^ (easylistchina.txt: 772) .gf1352.com -# ||gf108.com^ (easylistchina+easylist.txt: 755) +# ||gf108.com^ (easylistchina.txt: 771) .gf108.com -# ||fv99.com^ (easylistchina+easylist.txt: 746) +# ||fv99.com^ (easylistchina.txt: 762) .fv99.com -# ||fu68.com^ (easylistchina+easylist.txt: 745) +# ||fu68.com^ (easylistchina.txt: 761) .fu68.com -# ||fjmeyer.com^ (easylistchina+easylist.txt: 743) +# ||fjmeyer.com^ (easylistchina.txt: 759) .fjmeyer.com -# ||fd7c.com^ (easylistchina+easylist.txt: 741) +# ||fd7c.com^ (easylistchina.txt: 757) .fd7c.com -# ||f70123.com^ (easylistchina+easylist.txt: 738) +# ||f70123.com^ (easylistchina.txt: 754) .f70123.com -# ||f6ce.com^ (easylistchina+easylist.txt: 737) +# ||f6ce.com^ (easylistchina.txt: 753) .f6ce.com -# ||f1190.com^ (easylistchina+easylist.txt: 736) +# ||f1190.com^ (easylistchina.txt: 752) .f1190.com -# ||eiv.baidu.com^ (easylistchina+easylist.txt: 730) +# ||eiv.baidu.com^ (easylistchina.txt: 747) .eiv.baidu.com -# ||ecuc123.net^ (easylistchina+easylist.txt: 727) +# ||ecuc123.net^ (easylistchina.txt: 744) .ecuc123.net -# ||e719.net^ (easylistchina+easylist.txt: 724) +# ||e719.net^ (easylistchina.txt: 741) .e719.net -# ||e708.net^ (easylistchina+easylist.txt: 723) +# ||e708.net^ (easylistchina.txt: 740) .e708.net -# ||e70123.com^ (easylistchina+easylist.txt: 722) +# ||e70123.com^ (easylistchina.txt: 739) .e70123.com -# ||e701.net^ (easylistchina+easylist.txt: 721) +# ||e701.net^ (easylistchina.txt: 738) .e701.net -# ||dxssiyi.com^ (easylistchina+easylist.txt: 720) +# ||dxssiyi.com^ (easylistchina.txt: 737) .dxssiyi.com -# ||dw998.com^ (easylistchina+easylist.txt: 718) +# ||dw998.com^ (easylistchina.txt: 735) .dw998.com -# ||dvr8.com^ (easylistchina+easylist.txt: 717) +# ||dvr8.com^ (easylistchina.txt: 734) .dvr8.com -# ||duiwai.baidu.com^ (easylistchina+easylist.txt: 715) +# ||duiwai.baidu.com^ (easylistchina.txt: 732) .duiwai.baidu.com -# ||drmcmm.baidu.com^ (easylistchina+easylist.txt: 713) +# ||drmcmm.baidu.com^ (easylistchina.txt: 730) .drmcmm.baidu.com -# ||dou777.com^ (easylistchina+easylist.txt: 711) +# ||dreamfull.cn^ (easylistchina.txt: 729) +.dreamfull.cn +# ||dou777.com^ (easylistchina.txt: 727) .dou777.com -# ||datafastguru.info^ (easylistchina+easylist.txt: 703) +# ||datafastguru.info^ (easylistchina.txt: 719) .datafastguru.info -# ||dashet.com^ (easylistchina+easylist.txt: 702) +# ||dashet.com^ (easylistchina.txt: 718) .dashet.com -# ||czpwm.com^ (easylistchina+easylist.txt: 699) +# ||czpwm.com^ (easylistchina.txt: 715) .czpwm.com -# ||czpush.com^ (easylistchina+easylist.txt: 698) +# ||czpush.com^ (easylistchina.txt: 714) .czpush.com -# ||cyacc.com^ (easylistchina+easylist.txt: 697) +# ||cyacc.com^ (easylistchina.txt: 713) .cyacc.com -# ||ctsywy.com^ (easylistchina+easylist.txt: 696) +# ||ctsywy.com^ (easylistchina.txt: 712) .ctsywy.com -# ||csqiulong.com^ (easylistchina+easylist.txt: 695) +# ||csqiulong.com^ (easylistchina.txt: 711) .csqiulong.com -# ||crdrjs.info^ (easylistchina+easylist.txt: 691) +# ||crdrjs.info^ (easylistchina.txt: 707) .crdrjs.info -# ||cpva.cc^ (easylistchina+easylist.txt: 689) +# ||cpva.cc^ (easylistchina.txt: 705) .cpva.cc -# ||cpv6.com^ (easylistchina+easylist.txt: 688) +# ||cpv6.com^ (easylistchina.txt: 704) .cpv6.com -# ||cpro.baidustatic.com^ (easylistchina+easylist.txt: 687) +# ||cpro.baidustatic.com^ (easylistchina.txt: 703) .cpro.baidustatic.com -# ||cpro.baidu.com^ (easylistchina+easylist.txt: 686) +# ||cpro.baidu.com^ (easylistchina.txt: 702) .cpro.baidu.com -# ||cpms.cc^ (easylistchina+easylist.txt: 685) +# ||cpms.cc^ (easylistchina.txt: 701) .cpms.cc -# ||cpcv.cc^ (easylistchina+easylist.txt: 684) +# ||cpcv.cc^ (easylistchina.txt: 700) .cpcv.cc -# ||code668.com^ (easylistchina+easylist.txt: 682) +# ||code668.com^ (easylistchina.txt: 698) .code668.com -# ||cnzz.com.so^ (easylistchina+easylist.txt: 681) +# ||cnzz.com.so^ (easylistchina.txt: 697) .cnzz.com.so -# ||cnxad.net^ (easylistchina+easylist.txt: 680) +# ||cnxad.net^ (easylistchina.txt: 696) .cnxad.net -# ||cbjs.baidu.com^ (easylistchina+easylist.txt: 673) +# ||cbjs.baidu.com^ (easylistchina.txt: 688) .cbjs.baidu.com -# ||cb.baidu.com^ (easylistchina+easylist.txt: 672) +# ||cb.baidu.com^ (easylistchina.txt: 687) .cb.baidu.com -# ||caob5.info^ (easylistchina+easylist.txt: 671) +# ||caob5.info^ (easylistchina.txt: 686) .caob5.info -# ||cangnews.com^ (easylistchina+easylist.txt: 670) +# ||cangnews.com^ (easylistchina.txt: 685) .cangnews.com -# ||at98.com^ (easylistchina+easylist.txt: 657) +# ||at98.com^ (easylistchina.txt: 672) .at98.com -# ||aralego.com^ (easylistchina+easylist.txt: 655) +# ||aralego.com^ (easylistchina.txt: 670) .aralego.com -# ||amazingmagics.com^ (easylistchina+easylist.txt: 652) +# ||amazingmagics.com^ (easylistchina.txt: 667) .amazingmagics.com -# ||aliyunxin.com^ (easylistchina+easylist.txt: 650) +# ||aliyunxin.com^ (easylistchina.txt: 665) .aliyunxin.com -# ||aliyuncss.com^ (easylistchina+easylist.txt: 649) +# ||aliyuncss.com^ (easylistchina.txt: 664) .aliyuncss.com -# ||ajaxcdn.org^ (easylistchina+easylist.txt: 646) +# ||ajaxcdn.org^ (easylistchina.txt: 661) .ajaxcdn.org -# ||ads.uc.cn^ (easylistchina+easylist.txt: 634) +# ||ads.uc.cn^ (easylistchina.txt: 649) .ads.uc.cn -# ||adm-cnzz.net^ (easylistchina+easylist.txt: 629) +# ||adm-cnzz.net^ (easylistchina.txt: 644) .adm-cnzz.net -# ||ad000000.com^ (easylistchina+easylist.txt: 620) +# ||ad000000.com^ (easylistchina.txt: 635) .ad000000.com -# ||a907907.com^ (easylistchina+easylist.txt: 616) +# ||a907907.com^ (easylistchina.txt: 631) .a907907.com -# ||9377os.com^ (easylistchina+easylist.txt: 608) +# ||9377os.com^ (easylistchina.txt: 623) .9377os.com -# ||9377co.com^ (easylistchina+easylist.txt: 607) +# ||9377ku.com^ (easylistchina.txt: 622) +.9377ku.com +# ||9377co.com^ (easylistchina.txt: 621) .9377co.com -# ||91zgm.com^ (easylistchina+easylist.txt: 606) +# ||91zgm.com^ (easylistchina.txt: 620) .91zgm.com -# ||91ysa.com^ (easylistchina+easylist.txt: 605) +# ||91ysa.com^ (easylistchina.txt: 619) .91ysa.com -# ||892155.com^ (easylistchina+easylist.txt: 599) +# ||892155.com^ (easylistchina.txt: 613) .892155.com -# ||88rpg.net^ (easylistchina+easylist.txt: 597) +# ||88rpg.net^ (easylistchina.txt: 611) .88rpg.net -# ||85tgw.com^ (easylistchina+easylist.txt: 595) +# ||85tgw.com^ (easylistchina.txt: 609) .85tgw.com -# ||81c.cn^ (easylistchina+easylist.txt: 594) +# ||81c.cn^ (easylistchina.txt: 608) .81c.cn -# ||7xz3.com^ (easylistchina+easylist.txt: 593) +# ||7xz3.com^ (easylistchina.txt: 607) .7xz3.com -# ||7wen.cn^ (easylistchina+easylist.txt: 592) +# ||7wen.cn^ (easylistchina.txt: 606) .7wen.cn -# ||77power.com^ (easylistchina+easylist.txt: 587) +# ||77power.com^ (easylistchina.txt: 601) .77power.com -# ||71sem.com^ (easylistchina+easylist.txt: 586) +# ||71sem.com^ (easylistchina.txt: 600) .71sem.com -# ||6dvip.com^ (easylistchina+easylist.txt: 583) +# ||6dvip.com^ (easylistchina.txt: 597) .6dvip.com -# ||68665565.com^ (easylistchina+easylist.txt: 581) +# ||68665565.com^ (easylistchina.txt: 595) .68665565.com -# ||61.152.223.15^ (easylistchina+easylist.txt: 576) +# ||66san.com^ (easylistchina.txt: 592) +.66san.com +# ||61.152.223.15^ (easylistchina.txt: 589) .61.152.223.15 -# ||58.215.179.159^ (easylistchina+easylist.txt: 574) +# ||58.215.179.159^ (easylistchina.txt: 587) .58.215.179.159 -# ||52kmk.com^ (easylistchina+easylist.txt: 571) +# ||52kmk.com^ (easylistchina.txt: 584) .52kmk.com -# ||3g.990.net^ (easylistchina+easylist.txt: 563) +# ||3g.990.net^ (easylistchina.txt: 576) .3g.990.net -# ||36pn.com^ (easylistchina+easylist.txt: 555) +# ||36pn.com^ (easylistchina.txt: 568) .36pn.com -# ||366safego.com^ (easylistchina+easylist.txt: 554) +# ||366safego.com^ (easylistchina.txt: 567) .366safego.com -# ||365safego.com^ (easylistchina+easylist.txt: 553) +# ||365safego.com^ (easylistchina.txt: 566) .365safego.com -# ||365bibi.com^ (easylistchina+easylist.txt: 552) +# ||365bibi.com^ (easylistchina.txt: 565) .365bibi.com -# ||360baidus.com^ (easylistchina+easylist.txt: 548) +# ||360baidus.com^ (easylistchina.txt: 561) .360baidus.com -# ||2m2n.com^ (easylistchina+easylist.txt: 542) +# ||2m2n.com^ (easylistchina.txt: 555) .2m2n.com -# ||221.204.213.222^ (easylistchina+easylist.txt: 538) +# ||221.204.213.222^ (easylistchina.txt: 551) .221.204.213.222 -# ||220.115.251.25^ (easylistchina+easylist.txt: 537) +# ||220.115.251.25^ (easylistchina.txt: 550) .220.115.251.25 -# ||219.234.83.60^ (easylistchina+easylist.txt: 536) +# ||219.234.83.60^ (easylistchina.txt: 549) .219.234.83.60 -# ||218.26.217.*.html (easylistchina+easylist.txt: 535) +# ||218.26.217.*.html (easylistchina.txt: 548) .218.26.217.*./.*\.html .218.26.217.*.html*. -# ||211.167.105.131^ (easylistchina+easylist.txt: 532) +# ||211.167.105.131^ (easylistchina.txt: 545) .211.167.105.131 -# ||2012ui.com^ (easylistchina+easylist.txt: 530) +# ||2012ui.com^ (easylistchina.txt: 543) .2012ui.com -# ||201071.com^ (easylistchina+easylist.txt: 529) +# ||201071.com^ (easylistchina.txt: 542) .201071.com -# ||1l1.cc^ (easylistchina+easylist.txt: 525) +# ||1l1.cc^ (easylistchina.txt: 538) .1l1.cc -# ||182.92.81.104^ (easylistchina+easylist.txt: 524) +# ||182.92.81.104^ (easylistchina.txt: 537) .182.92.81.104 -# ||1503.net/code/ (easylistchina+easylist.txt: 523) +# ||1503.net/code/ (easylistchina.txt: 536) .1503.net/code/ -# ||139.159.32.82^ (easylistchina+easylist.txt: 521) +# ||139.159.32.82^ (easylistchina.txt: 534) .139.159.32.82 -# ||123hala.com^ (easylistchina+easylist.txt: 519) +# ||123hala.com^ (easylistchina.txt: 532) .123hala.com -# ||122.227.254.195^ (easylistchina+easylist.txt: 518) +# ||122.227.254.195^ (easylistchina.txt: 531) .122.227.254.195 -# ||116.55.227.242^ (easylistchina+easylist.txt: 515) +# ||116.55.227.242^ (easylistchina.txt: 528) .116.55.227.242 -# ||112.124.98.75^ (easylistchina+easylist.txt: 512) +# ||112.124.98.75^ (easylistchina.txt: 525) .112.124.98.75 -# ||111111qb.com^ (easylistchina+easylist.txt: 511) +# ||111111qb.com^ (easylistchina.txt: 524) .111111qb.com -# ||111.175.219.7^ (easylistchina+easylist.txt: 510) +# ||111.175.219.7^ (easylistchina.txt: 523) .111.175.219.7 -# ||104.195.62.12^ (easylistchina+easylist.txt: 508) +# ||106.187.95.251^ (easylistchina.txt: 521) +.106.187.95.251 +# ||104.195.62.12^ (easylistchina.txt: 520) .104.195.62.12 -# ||0xxd.com^ (easylistchina+easylist.txt: 505) +# ||0xxd.com^ (easylistchina.txt: 517) .0xxd.com -# |http://tk.*.php?id=*&step= (easylistchina+easylist.txt: 501) +# |http://tk.*.php?id=*&step= (easylistchina.txt: 513) tk.*./.*\.php\?id=.*&step= -# |http://1.3.0.10^ (easylistchina+easylist.txt: 497) +# |http://1.3.0.10^ (easylistchina.txt: 510) 1.3.0.10 -# :9001/code/ (easylistchina+easylist.txt: 489) +# :9001/code/ (easylistchina.txt: 502) /.*:9001/code/ -# /tourl.html?url= (easylistchina+easylist.txt: 486) +# /tourl.html?url= (easylistchina.txt: 498) /(.*/)?tourl\.html\?url= -# /pagecpv/* (easylistchina+easylist.txt: 482) +# /pagecpv/* (easylistchina.txt: 494) /(.*/)?pagecpv/.* -# /mshow.aspx?AID= (easylistchina+easylist.txt: 478) +# /mshow.aspx?AID= (easylistchina.txt: 490) /(.*/)?mshow\.aspx\?AID= -# /mobile/mads.js (easylistchina+easylist.txt: 477) +# /mobile/mads.js (easylistchina.txt: 489) /(.*/)?mobile/mads\.js -# /js/cpv_dl.js (easylistchina+easylist.txt: 476) +# /js/cpv_dl.js (easylistchina.txt: 488) /(.*/)?js/cpv_dl\.js -# /cpm/i.ashx? (easylistchina+easylist.txt: 473) +# /cpm/i.ashx? (easylistchina.txt: 485) /(.*/)?cpm/i\.ashx\? -# /code/popjs. (easylistchina+easylist.txt: 472) +# /code/popjs. (easylistchina.txt: 484) /(.*/)?code/popjs\. -# /code/pop_cpf. (easylistchina+easylist.txt: 471) +# /code/pop_cpf. (easylistchina.txt: 483) /(.*/)?code/pop_cpf\. -# /code/mypop.asp? (easylistchina+easylist.txt: 470) +# /code/mypop.asp? (easylistchina.txt: 482) /(.*/)?code/mypop\.asp\? -# /code/cpv.asp? (easylistchina+easylist.txt: 469) +# /code/cpv.asp? (easylistchina.txt: 481) /(.*/)?code/cpv\.asp\? -# /code/cpm.asp? (easylistchina+easylist.txt: 468) +# /code/cpm.asp? (easylistchina.txt: 480) /(.*/)?code/cpm\.asp\? -# /code/cpc.asp? (easylistchina+easylist.txt: 467) +# /code/cpc.asp? (easylistchina.txt: 479) /(.*/)?code/cpc\.asp\? -# /center?advId= (easylistchina+easylist.txt: 466) +# /center?advId= (easylistchina.txt: 478) /(.*/)?center\?advId= -# /AShow.aspx?AID= (easylistchina+easylist.txt: 465) +# /AShow.aspx?AID= (easylistchina.txt: 477) /(.*/)?AShow\.aspx\?AID= -# /adscpc/* (easylistchina+easylist.txt: 464) +# /adscpc/* (easylistchina.txt: 476) /(.*/)?adscpc/.* -# |http://ad. (easylistchina+easylist.txt: 260) +# |http://ad. (easylistchina.txt: 269) ad.*. -# |http://acs. (easylistchina+easylist.txt: 259) +# |http://acs. (easylistchina.txt: 268) acs.*. -# |http://*/js/tc.js (easylistchina+easylist.txt: 257) +# |http://*/js/tc.js (easylistchina.txt: 266) /(.*/)?js/tc\.js -# |http://*/js/ad/ (easylistchina+easylist.txt: 256) +# |http://*/js/ad/ (easylistchina.txt: 265) /(.*/)?js/ad/ -# |http://*/gg3. (easylistchina+easylist.txt: 254) +# |http://*/gg3. (easylistchina.txt: 263) /(.*/)?gg3\. -# |http://*/gg2. (easylistchina+easylist.txt: 253) +# |http://*/gg2. (easylistchina.txt: 262) /(.*/)?gg2\. -# |http://*/gg1. (easylistchina+easylist.txt: 252) +# |http://*/gg1. (easylistchina.txt: 261) /(.*/)?gg1\. -# |http://*/ad.js?v= (easylistchina+easylist.txt: 250) +# |http://*/ad.js?v= (easylistchina.txt: 259) /(.*/)?ad\.js\?v= -# |http://*/ad.js?sn= (easylistchina+easylist.txt: 249) +# |http://*/ad.js?sn= (easylistchina.txt: 258) /(.*/)?ad\.js\?sn= -# |http://*/ad.*.js?v=*&sp= (easylistchina+easylist.txt: 248) +# |http://*/ad.*.js?v=*&sp= (easylistchina.txt: 257) /(.*/)?ad\..*\.js\?v=.*&sp= -# |http://*/*_ad.js (easylistchina+easylist.txt: 247) +# |http://*/*_ad.js (easylistchina.txt: 256) /(.*/)?.*_ad\.js -# |http://*.us/ad/ (easylistchina+easylist.txt: 246) +# |http://*.us/ad/ (easylistchina.txt: 255) /.*\.us/ad/ .*.us/ad/ -# |http://*.tv/ad/ (easylistchina+easylist.txt: 244) +# |http://*.tv/ad/ (easylistchina.txt: 253) /.*\.tv/ad/ .*.tv/ad/ -# |http://*.in/ad/ (easylistchina+easylist.txt: 243) +# |http://*.in/ad/ (easylistchina.txt: 252) /.*\.in/ad/ .*.in/ad/ -# |http://*.hk/ad/ (easylistchina+easylist.txt: 242) +# |http://*.hk/ad/ (easylistchina.txt: 251) /.*\.hk/ad/ .*.hk/ad/ -# |http://*.cn/ad/ (easylistchina+easylist.txt: 241) +# |http://*.cn/ad/ (easylistchina.txt: 250) /.*\.cn/ad/ .*.cn/ad/ -# |http://*.cc/ad/ (easylistchina+easylist.txt: 240) +# |http://*.cc/ad/ (easylistchina.txt: 249) /.*\.cc/ad/ .*.cc/ad/ -# _mobilebanner_v1_550x60.jpg (easylistchina+easylist.txt: 239) +# _mobilebanner_v1_550x60.jpg (easylistchina.txt: 248) /.*_mobilebanner_v1_550x60\.jpg -# _billboard_320x100.iframe. (easylistchina+easylist.txt: 238) +# _billboard_320x100.iframe. (easylistchina.txt: 247) /.*_billboard_320x100\.iframe\. -# =loginExtAD. (easylistchina+easylist.txt: 237) +# =loginExtAD. (easylistchina.txt: 246) /.*=loginExtAD\. -# :8898/ads_ (easylistchina+easylist.txt: 236) +# :8898/ads_ (easylistchina.txt: 245) /.*:8898/ads_ -# :8080/ad/ (easylistchina+easylist.txt: 235) +# :8080/ad/ (easylistchina.txt: 244) /.*:8080/ad/ -# :7011/ads/ (easylistchina+easylist.txt: 234) -/.*:7011/ads/ -# :1010/openV5.js (easylistchina+easylist.txt: 233) +# :1010/openV5.js (easylistchina.txt: 243) /.*:1010/openV5\.js -# /zzhzad/* (easylistchina+easylist.txt: 232) +# /zzhzad/* (easylistchina.txt: 242) /(.*/)?zzhzad/.* -# /znds/images/dangbeigif.gif (easylistchina+easylist.txt: 231) +# /znds/images/dangbeigif.gif (easylistchina.txt: 241) /(.*/)?znds/images/dangbeigif\.gif -# /xianxiashijie_ad.png (easylistchina+easylist.txt: 230) +# /xianxiashijie_ad.png (easylistchina.txt: 240) /(.*/)?xianxiashijie_ad\.png -# /wy96ad/* (easylistchina+easylist.txt: 229) +# /wy96ad/* (easylistchina.txt: 239) /(.*/)?wy96ad/.* -# /wp-content/themes/iMovies/js/tc_ (easylistchina+easylist.txt: 228) +# /wp-content/themes/iMovies/js/tc_ (easylistchina.txt: 238) /(.*/)?wp-content/themes/iMovies/js/tc_ -# /W3Cfuns_Adv/* (easylistchina+easylist.txt: 227) +# /W3Cfuns_Adv/* (easylistchina.txt: 237) /(.*/)?W3Cfuns_Adv/.* -# /uedbet/pause. (easylistchina+easylist.txt: 226) +# /uedbet/pause. (easylistchina.txt: 236) /(.*/)?uedbet/pause\. -# /u/_sponsor/* (easylistchina+easylist.txt: 225) +# /u/_sponsor/* (easylistchina.txt: 235) /(.*/)?u/_sponsor/.* -# /tuiguang/* (easylistchina+easylist.txt: 224) +# /tuiguang/* (easylistchina.txt: 234) /(.*/)?tuiguang/.* -# /ttmeiju/images/ts.gif (easylistchina+easylist.txt: 223) +# /ttmeiju/images/ts.gif (easylistchina.txt: 233) /(.*/)?ttmeiju/images/ts\.gif -# /tmall11nov2015-2.jpg (easylistchina+easylist.txt: 222) +# /tmall11nov2015-2.jpg (easylistchina.txt: 232) /(.*/)?tmall11nov2015-2\.jpg tmall11nov2015-2.jpg*. -# /tigtag_custom/include/popup. (easylistchina+easylist.txt: 221) +# /tigtag_custom/include/popup. (easylistchina.txt: 231) /(.*/)?tigtag_custom/include/popup\. -# /tigtag_custom/include/couplet. (easylistchina+easylist.txt: 220) +# /tigtag_custom/include/couplet. (easylistchina.txt: 230) /(.*/)?tigtag_custom/include/couplet\. -# /tigtag_custom/*_banner (easylistchina+easylist.txt: 219) +# /tigtag_custom/*_banner (easylistchina.txt: 229) /(.*/)?tigtag_custom/.*_banner -# /template/gg.js (easylistchina+easylist.txt: 218) +# /template/gg.js (easylistchina.txt: 228) /(.*/)?template/gg\.js -# /taobaoad.html (easylistchina+easylist.txt: 217) +# /taobaoad.html (easylistchina.txt: 227) /(.*/)?taobaoad\.html taobaoad.html*. -# /tanchuang. (easylistchina+easylist.txt: 216) +# /tanchuang. (easylistchina.txt: 226) /(.*/)?tanchuang\. tanchuang.*. -# /tanad.js (easylistchina+easylist.txt: 215) +# /tanad.js (easylistchina.txt: 225) /(.*/)?tanad\.js tanad.js*. -# /tan.js (easylistchina+easylist.txt: 214) +# /tan.js (easylistchina.txt: 224) /(.*/)?tan\.js tan.js*. -# /taihai/v2014/images/index/aa_10. (easylistchina+easylist.txt: 213) +# /taihai/v2014/images/index/aa_10. (easylistchina.txt: 223) /(.*/)?taihai/v2014/images/index/aa_10\. -# /sygg/* (easylistchina+easylist.txt: 212) +# /sygg/* (easylistchina.txt: 222) /(.*/)?sygg/.* -# /static/adsview/* (easylistchina+easylist.txt: 211) +# /sxgg/13 (easylistchina.txt: 221) +/(.*/)?sxgg/13 +# /sxgg/12.js (easylistchina.txt: 220) +/(.*/)?sxgg/12\.js +# /static/adsview/* (easylistchina.txt: 219) /(.*/)?static/adsview/.* -# /ssdxad.swf (easylistchina+easylist.txt: 210) +# /ssdxad.swf (easylistchina.txt: 218) /(.*/)?ssdxad\.swf ssdxad.swf*. -# /source/plugin/mama_tips/* (easylistchina+easylist.txt: 209) +# /source/plugin/mama_tips/* (easylistchina.txt: 217) /(.*/)?source/plugin/mama_tips/.* -# /sogouAD. (easylistchina+easylist.txt: 208) +# /sogouAD. (easylistchina.txt: 216) /(.*/)?sogouAD\. sogouAD.*. -# /show.js?sp=*&oid= (easylistchina+easylist.txt: 207) +# /show.js?sp=*&oid= (easylistchina.txt: 215) /(.*/)?show\.js\?sp=.*&oid= -# /Runtime/js/top960.js (easylistchina+easylist.txt: 206) +# /Runtime/js/top960.js (easylistchina.txt: 214) /(.*/)?Runtime/js/top960\.js -# /runtime/js/index960.js (easylistchina+easylist.txt: 205) +# /runtime/js/index960.js (easylistchina.txt: 213) /(.*/)?runtime/js/index960\.js -# /qqyouyuead/* (easylistchina+easylist.txt: 204) +# /qqyouyuead/* (easylistchina.txt: 212) /(.*/)?qqyouyuead/.* -# /qqlive/conf/playerlottery/* (easylistchina+easylist.txt: 203) +# /qqlive/conf/playerlottery/* (easylistchina.txt: 211) /(.*/)?qqlive/conf/playerlottery/.* -# /qqguojiad/* (easylistchina+easylist.txt: 202) +# /qqguojiad/* (easylistchina.txt: 210) /(.*/)?qqguojiad/.* -# /qpxl.js (easylistchina+easylist.txt: 201) +# /qpxl.js (easylistchina.txt: 209) /(.*/)?qpxl\.js qpxl.js*. -# /QianFanAdPalyer. (easylistchina+easylist.txt: 200) +# /QianFanAdPalyer. (easylistchina.txt: 208) /(.*/)?QianFanAdPalyer\. QianFanAdPalyer.*. -# /proxy.html?id= (easylistchina+easylist.txt: 199) +# /proxy.html?id= (easylistchina.txt: 207) /(.*/)?proxy\.html\?id= -# /proxy.htm?id= (easylistchina+easylist.txt: 198) +# /proxy.htm?id= (easylistchina.txt: 206) /(.*/)?proxy\.htm\?id= -# /pop_DJ2010.swf (easylistchina+easylist.txt: 197) +# /pop_DJ2010.swf (easylistchina.txt: 205) /(.*/)?pop_DJ2010\.swf -# /plugin.php?id=popad_7ree& (easylistchina+easylist.txt: 196) +# /plugin.php?id=popad_7ree& (easylistchina.txt: 204) /(.*/)?plugin\.php\?id=popad_7ree& -# /pic/ad/* (easylistchina+easylist.txt: 194) +# /pic/ad/* (easylistchina.txt: 202) /(.*/)?pic/ad/.* -# /piaofu.js (easylistchina+easylist.txt: 193) +# /piaofu.js (easylistchina.txt: 201) /(.*/)?piaofu\.js piaofu.js*. -# /pc/Tpl/baibaipc/js/* (easylistchina+easylist.txt: 192) +# /pc/Tpl/baibaipc/js/* (easylistchina.txt: 200) /(.*/)?pc/Tpl/baibaipc/js/.* -# /pc/Tpl/baibaipc//js/* (easylistchina+easylist.txt: 191) +# /pc/Tpl/baibaipc//js/* (easylistchina.txt: 199) /(.*/)?pc/Tpl/baibaipc//js/.* -# /paypic/* (easylistchina+easylist.txt: 190) +# /paypic/* (easylistchina.txt: 198) /(.*/)?paypic/.* -# /newsyd/templates/sponsor/* (easylistchina+easylist.txt: 189) +# /newsyd/templates/sponsor/* (easylistchina.txt: 197) /(.*/)?newsyd/templates/sponsor/.* -# /new_site_topad^ (easylistchina+easylist.txt: 188) +# /new_site_topad^ (easylistchina.txt: 196) /(.*/)?new_site_topad[^\w%.-] -# /nanrenpeng/ads/* (easylistchina+easylist.txt: 187) +# /nanrenpeng/ads/* (easylistchina.txt: 195) /(.*/)?nanrenpeng/ads/.* -# /myimg/alimama2014.html (easylistchina+easylist.txt: 186) +# /myimg/alimama2014.html (easylistchina.txt: 194) /(.*/)?myimg/alimama2014\.html -# /module/adsview/* (easylistchina+easylist.txt: 185) +# /moneymaker-banners/ads_ (easylistchina.txt: 193) +/(.*/)?moneymaker-banners/ads_ +# /module/adsview/* (easylistchina.txt: 192) /(.*/)?module/adsview/.* -# /main/s? (easylistchina+easylist.txt: 184) +# /main/s? (easylistchina.txt: 191) /(.*/)?main/s\? -# /main.js?v=*&sp=*&ty= (easylistchina+easylist.txt: 183) +# /main.js?v=*&sp=*&ty= (easylistchina.txt: 190) /(.*/)?main\.js\?v=.*&sp=.*&ty= -# /lfadvertise.js (easylistchina+easylist.txt: 182) +# /lfadvertise.js (easylistchina.txt: 189) /(.*/)?lfadvertise\.js lfadvertise.js*. -# /lfAD2v1.1.js (easylistchina+easylist.txt: 181) +# /lfAD2v1.1.js (easylistchina.txt: 188) /(.*/)?lfAD2v1\.1\.js lfAD2v1.1.js*. -# /lenovo/pc/all.js (easylistchina+easylist.txt: 180) +# /lenovo/pc/all.js (easylistchina.txt: 187) /(.*/)?lenovo/pc/all\.js -# /kuaiyun-728-91. (easylistchina+easylist.txt: 179) +# /kuaiyun-728-91. (easylistchina.txt: 186) /(.*/)?kuaiyun-728-91\. kuaiyun-728-91.*. -# /k960g90. (easylistchina+easylist.txt: 178) +# /k960g90. (easylistchina.txt: 185) /(.*/)?k960g90\. k960g90.*. -# /k300g250. (easylistchina+easylist.txt: 177) +# /k300g250. (easylistchina.txt: 184) /(.*/)?k300g250\. k300g250.*. -# /k120g270. (easylistchina+easylist.txt: 176) +# /k120g270. (easylistchina.txt: 183) /(.*/)?k120g270\. k120g270.*. -# /jumbo_banner_Gif_ (easylistchina+easylist.txt: 175) +# /jumbo_banner_Gif_ (easylistchina.txt: 182) /(.*/)?jumbo_banner_Gif_ -# /jsadv/* (easylistchina+easylist.txt: 174) +# /jsadv/* (easylistchina.txt: 181) /(.*/)?jsadv/.* -# /js/utils78.js (easylistchina+easylist.txt: 173) +# /js/utils78.js (easylistchina.txt: 180) /(.*/)?js/utils78\.js -# /js/utils51.js (easylistchina+easylist.txt: 172) +# /js/utils51.js (easylistchina.txt: 179) /(.*/)?js/utils51\.js -# /js/bocaiadv. (easylistchina+easylist.txt: 171) +# /js/guanggao_gg.js (easylistchina.txt: 178) +/(.*/)?js/guanggao_gg\.js +# /js/bocaiadv. (easylistchina.txt: 177) /(.*/)?js/bocaiadv\. -# /js/ads/zuoxiajiao.js (easylistchina+easylist.txt: 170) +# /js/ads/zuoxiajiao.js (easylistchina.txt: 176) /(.*/)?js/ads/zuoxiajiao\.js -# /js/ads/youxiajiao.js (easylistchina+easylist.txt: 169) +# /js/ads/youxiajiao.js (easylistchina.txt: 175) /(.*/)?js/ads/youxiajiao\.js -# /js/ads/top (easylistchina+easylist.txt: 168) -/(.*/)?js/ads/top -# /js/ads/piao.js (easylistchina+easylist.txt: 167) +# /js/ads/yezi (easylistchina.txt: 174) +/(.*/)?js/ads/yezi +# /js/ads/to (easylistchina.txt: 173) +/(.*/)?js/ads/to +# /js/ads/piao.js (easylistchina.txt: 172) /(.*/)?js/ads/piao\.js -# /js/ads/dui.js (easylistchina+easylist.txt: 166) +# /js/ads/neiye (easylistchina.txt: 171) +/(.*/)?js/ads/neiye +# /js/ads/dui.js (easylistchina.txt: 170) /(.*/)?js/ads/dui\.js -# /j/Lad6_2.js (easylistchina+easylist.txt: 165) -/(.*/)?j/Lad6_2\.js -# /ina_ad_ (easylistchina+easylist.txt: 164) +# /ina_ad_ (easylistchina.txt: 169) /(.*/)?ina_ad_ -# /guanggao/* (easylistchina+easylist.txt: 162) +# /guanggao2. (easylistchina.txt: 167) +/(.*/)?guanggao2\. +guanggao2.*. +# /guanggao/* (easylistchina.txt: 166) /(.*/)?guanggao/.* -# /guanggao. (easylistchina+easylist.txt: 161) +# /guanggao. (easylistchina.txt: 165) /(.*/)?guanggao\. guanggao.*. -# /guangg/* (easylistchina+easylist.txt: 160) +# /guangg/* (easylistchina.txt: 164) /(.*/)?guangg/.* -# /guangao/* (easylistchina+easylist.txt: 159) +# /guangao/* (easylistchina.txt: 163) /(.*/)?guangao/.* -# /guang/930x90. (easylistchina+easylist.txt: 158) +# /guang/930x90. (easylistchina.txt: 162) /(.*/)?guang/930x90\. -# /ggtp/* (easylistchina+easylist.txt: 157) +# /ggtp/* (easylistchina.txt: 161) /(.*/)?ggtp/.* -# /ggpic/* (easylistchina+easylist.txt: 156) +# /ggpic/* (easylistchina.txt: 160) /(.*/)?ggpic/.* -# /ggjs/* (easylistchina+easylist.txt: 155) +# /ggjs/* (easylistchina.txt: 159) /(.*/)?ggjs/.* -# /ggao/* (easylistchina+easylist.txt: 154) +# /ggao/* (easylistchina.txt: 158) /(.*/)?ggao/.* -# /ggao. (easylistchina+easylist.txt: 153) +# /ggao. (easylistchina.txt: 157) /(.*/)?ggao\. ggao.*. -# /ggad/* (easylistchina+easylist.txt: 152) +# /ggad/* (easylistchina.txt: 156) /(.*/)?ggad/.* -# /gg5. (easylistchina+easylist.txt: 151) +# /gg5. (easylistchina.txt: 155) /(.*/)?gg5\. gg5.*. -# /gg4. (easylistchina+easylist.txt: 150) +# /gg4. (easylistchina.txt: 154) /(.*/)?gg4\. gg4.*. -# /gaog/* (easylistchina+easylist.txt: 149) +# /gaog/* (easylistchina.txt: 153) /(.*/)?gaog/.* -# /floatad2. (easylistchina+easylist.txt: 148) +# /floatad2. (easylistchina.txt: 152) /(.*/)?floatad2\. floatad2.*. -# /float_r.js (easylistchina+easylist.txt: 146) +# /float_r.js (easylistchina.txt: 150) /(.*/)?float_r\.js -# /ettoday/gemini/* (easylistchina+easylist.txt: 145) +# /ettoday/gemini/* (easylistchina.txt: 149) /(.*/)?ettoday/gemini/.* -# /duilian_gg. (easylistchina+easylist.txt: 144) +# /dy_66jjss/* (easylistchina.txt: 148) +/(.*/)?dy_66jjss/.* +# /duilian_gg. (easylistchina.txt: 147) /(.*/)?duilian_gg\. -# /duilian2. (easylistchina+easylist.txt: 143) +# /duilian2. (easylistchina.txt: 146) /(.*/)?duilian2\. duilian2.*. -# /diantan.js (easylistchina+easylist.txt: 141) +# /diantan.js (easylistchina.txt: 144) /(.*/)?diantan\.js diantan.js*. -# /data/cache/myad- (easylistchina+easylist.txt: 140) +# /data/cache/myad- (easylistchina.txt: 143) /(.*/)?data/cache/myad- -# /data/ad/* (easylistchina+easylist.txt: 139) +# /data/ad/* (easylistchina.txt: 142) /(.*/)?data/ad/.* -# /cpro/ui/dm.js (easylistchina+easylist.txt: 138) -/(.*/)?cpro/ui/dm\.js -# /content/plugins/em_ad/* (easylistchina+easylist.txt: 137) +# /cpro/ui/* (easylistchina.txt: 141) +/(.*/)?cpro/ui/.* +# /content/plugins/em_ad/* (easylistchina.txt: 140) /(.*/)?content/plugins/em_ad/.* -# /comiis_kmsjx3hlx/ads/* (easylistchina+easylist.txt: 135) +# /comiis_kmsjx3hlx/ads/* (easylistchina.txt: 138) /(.*/)?comiis_kmsjx3hlx/ads/.* -# /comiis_19lou/ads/* (easylistchina+easylist.txt: 134) +# /comiis_19lou/ads/* (easylistchina.txt: 137) /(.*/)?comiis_19lou/ads/.* -# /clicktotal/ClickTotal.js (easylistchina+easylist.txt: 133) +# /clicktotal/ClickTotal.js (easylistchina.txt: 136) /(.*/)?clicktotal/ClickTotal\.js -# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina+easylist.txt: 132) +# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina.txt: 135) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*pagead2\. -# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina+easylist.txt: 131) +# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina.txt: 134) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*p\.tanx\.com -# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina+easylist.txt: 130) +# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina.txt: 133) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.overture\.com -# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina+easylist.txt: 129) +# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina.txt: 132) /(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.humanding\.com -# /caiguu_gg_ (easylistchina+easylist.txt: 128) +# /caiguu_gg_ (easylistchina.txt: 131) /(.*/)?caiguu_gg_ -# /caches/poster_js/* (easylistchina+easylist.txt: 127) +# /caches/poster_js/* (easylistchina.txt: 130) /(.*/)?caches/poster_js/.* -# /cache/ad_js/* (easylistchina+easylist.txt: 126) +# /cache/ad_js/* (easylistchina.txt: 129) /(.*/)?cache/ad_js/.* -# /btba/ad/* (easylistchina+easylist.txt: 125) +# /btba/ad/* (easylistchina.txt: 128) /(.*/)?btba/ad/.* -# /botad.html (easylistchina+easylist.txt: 124) +# /botad.html (easylistchina.txt: 127) /(.*/)?botad\.html botad.html*. -# /bbh_ad_ (easylistchina+easylist.txt: 123) +# /bbh_ad_ (easylistchina.txt: 126) /(.*/)?bbh_ad_ -# /bbh_ad. (easylistchina+easylist.txt: 122) +# /bbh_ad. (easylistchina.txt: 125) /(.*/)?bbh_ad\. -# /Banner-pcbeta- (easylistchina+easylist.txt: 121) +# /Banner-pcbeta- (easylistchina.txt: 124) /(.*/)?Banner-pcbeta- Banner-pcbeta-*. -# /aoyou372down300_ (easylistchina+easylist.txt: 120) +# /aoyou372down300_ (easylistchina.txt: 123) /(.*/)?aoyou372down300_ -# /ajds/* (easylistchina+easylist.txt: 119) +# /ajds/* (easylistchina.txt: 122) /(.*/)?ajds/.* -# /aipaiPlayFull2. (easylistchina+easylist.txt: 118) -/(.*/)?aipaiPlayFull2\. -aipaiPlayFull2.*. -# /advpic/* (easylistchina+easylist.txt: 117) +# /aipaiPlayFull2.js?0. (easylistchina.txt: 121) +/(.*/)?aipaiPlayFull2\.js\?0\. +# /adx-exchange. (easylistchina.txt: 120) +/(.*/)?adx-exchange\. +adx-exchange.*. +# /advpic/* (easylistchina.txt: 119) /(.*/)?advpic/.* -# /AdverJS/* (easylistchina+easylist.txt: 116) +# /AdverJS/* (easylistchina.txt: 118) /(.*/)?AdverJS/.* -# /adpv?cn= (easylistchina+easylist.txt: 115) +# /adpv?cn= (easylistchina.txt: 117) /(.*/)?adpv\?cn= -# /adpuba/* (easylistchina+easylist.txt: 114) +# /adpuba/* (easylistchina.txt: 116) /(.*/)?adpuba/.* -# /adpro.js (easylistchina+easylist.txt: 113) +# /adpro.js (easylistchina.txt: 115) /(.*/)?adpro\.js adpro.js*. -# /AdPreview/* (easylistchina+easylist.txt: 112) -/(.*/)?AdPreview/.* -# /adpfile/* (easylistchina+easylist.txt: 111) +# /adpfile/* (easylistchina.txt: 114) /(.*/)?adpfile/.* -# /adintrs/* (easylistchina+easylist.txt: 110) +# /adintrs/* (easylistchina.txt: 113) /(.*/)?adintrs/.* -# /adblockTester2.js (easylistchina+easylist.txt: 109) +# /adblockTester2.js (easylistchina.txt: 112) /(.*/)?adblockTester2\.js adblockTester2.js*. -# /adblockTester1.js (easylistchina+easylist.txt: 108) +# /adblockTester1.js (easylistchina.txt: 111) /(.*/)?adblockTester1\.js adblockTester1.js*. -# /adblockTester.js (easylistchina+easylist.txt: 107) +# /adblockTester.js (easylistchina.txt: 110) /(.*/)?adblockTester\.js adblockTester.js*. -# /AD2v1.1.js (easylistchina+easylist.txt: 106) +# /AD2v1.1.js (easylistchina.txt: 109) /(.*/)?AD2v1\.1\.js AD2v1.1.js*. -# /acmsd/* (easylistchina+easylist.txt: 105) +# /acmsd/* (easylistchina.txt: 108) /(.*/)?acmsd/.* -# /a/p?adid= (easylistchina+easylist.txt: 104) +# /a/p?adid= (easylistchina.txt: 107) /(.*/)?a/p\?adid= -# /9115gg/* (easylistchina+easylist.txt: 103) +# /9115gg/* (easylistchina.txt: 106) /(.*/)?9115gg/.* -# /119g/640x60_ (easylistchina+easylist.txt: 102) +# /119g/640x60_ (easylistchina.txt: 105) /(.*/)?119g/640x60_ -# .us/js/ads/ (easylistchina+easylist.txt: 101) +# .us/js/ads/ (easylistchina.txt: 104) /.*\.us/js/ads/ .*.us/js/ads/ -# .net/js/ads/ (easylistchina+easylist.txt: 100) +# .net/js/ads/ (easylistchina.txt: 103) /.*\.net/js/ads/ .*.net/js/ads/ -# .js?advertID= (easylistchina+easylist.txt: 99) +# .js?advertID= (easylistchina.txt: 102) /.*\.js\?advertID= -# .info/js/ads/ (easylistchina+easylist.txt: 98) +# .info/js/alls_top.js (easylistchina.txt: 101) +/.*\.info/js/alls_top\.js +.*.info/js/alls_top\.js +# .info/js/alls_foot.js (easylistchina.txt: 100) +/.*\.info/js/alls_foot\.js +.*.info/js/alls_foot\.js +# .info/js/ads/ (easylistchina.txt: 99) /.*\.info/js/ads/ .*.info/js/ads/ -# .info/ad/ (easylistchina+easylist.txt: 97) +# .info/ad/ (easylistchina.txt: 98) /.*\.info/ad/ .*.info/ad/ -# .info/ad.js (easylistchina+easylist.txt: 96) +# .info/ad.js (easylistchina.txt: 97) /.*\.info/ad\.js .*.info/ad\.js -# .in/js/ads/ (easylistchina+easylist.txt: 95) +# .in/js/ads/ (easylistchina.txt: 96) /.*\.in/js/ads/ .*.in/js/ads/ -# .com/vodad.js (easylistchina+easylist.txt: 94) +# .com/vodad.js (easylistchina.txt: 95) /.*\.com/vodad\.js .*.com/vodad\.js -# .com/js/ad_ (easylistchina+easylist.txt: 93) +# .com/pc/ad/ (easylistchina.txt: 94) +/.*\.com/pc/ad/ +.*.com/pc/ad/ +# .com/js/alls_top.js (easylistchina.txt: 93) +/.*\.com/js/alls_top\.js +.*.com/js/alls_top\.js +# .com/js/alls_foot.js (easylistchina.txt: 92) +/.*\.com/js/alls_foot\.js +.*.com/js/alls_foot\.js +# .com/js/ad_ (easylistchina.txt: 91) /.*\.com/js/ad_ .*.com/js/ad_ -# .com/a_d/ (easylistchina+easylist.txt: 92) +# .com/a_d/ (easylistchina.txt: 90) /.*\.com/a_d/ .*.com/a_d/ -# .co/js/ads/ (easylistchina+easylist.txt: 91) +# .co/js/ads/ (easylistchina.txt: 89) /.*\.co/js/ads/ .*.co/js/ads/ -# .cn/js/ads/ (easylistchina+easylist.txt: 90) +# .cn/js/ads/ (easylistchina.txt: 88) /.*\.cn/js/ads/ .*.cn/js/ads/ -# .cn/ads/ (easylistchina+easylist.txt: 89) +# .cn/ads/ (easylistchina.txt: 87) /.*\.cn/ads/ .*.cn/ads/ -# .cc/js/ads/ (easylistchina+easylist.txt: 88) +# .cc/js/ads/ (easylistchina.txt: 86) /.*\.cc/js/ads/ .*.cc/js/ads/ -# ||tuiguang.178.com^ (easylistchina+easylist.txt: 77) +# .bl.test15. (easylistchina.txt: 85) +/.*\.bl\.test15\. +.*.bl.test15.*. +# ||tuiguang.178.com^ (easylistchina.txt: 74) .tuiguang.178.com -# ||s.yimg.com/ja/ap/tw/js/ (easylistchina+easylist.txt: 72) +# ||s.yimg.com/ja/ap/tw/js/ (easylistchina.txt: 69) .s.yimg.com/ja/ap/tw/js/ -# ||log.interest.mix.sina.com.cn^ (easylistchina+easylist.txt: 64) +# ||log.interest.mix.sina.com.cn^ (easylistchina.txt: 61) .log.interest.mix.sina.com.cn -# ||hiad.myweb.hinet.net^ (easylistchina+easylist.txt: 54) +# ||hiad.myweb.hinet.net^ (easylistchina.txt: 51) .hiad.myweb.hinet.net -# ||blog.xuite.net/_public/js/ysmad.js (easylistchina+easylist.txt: 43) +# ||blog.xuite.net/_public/js/ysmad.js (easylistchina.txt: 40) .blog.xuite.net/_public/js/ysmad\.js -# ||adrs.sdo.com^ (easylistchina+easylist.txt: 38) +# ||adrs.sdo.com^ (easylistchina.txt: 35) .adrs.sdo.com -# ||a.youdao.com^ (easylistchina+easylist.txt: 36) +# ||a.youdao.com^ (easylistchina.txt: 33) .a.youdao.com -# /tan1.js (easylistchina+easylist.txt: 21) +# /tan1.js (easylistchina.txt: 18) /(.*/)?tan1\.js tan1.js*. -# /attachments/ad/* (easylistchina+easylist.txt: 20) +# /attachments/ad/* (easylistchina.txt: 17) /(.*/)?attachments/ad/.* -# /adflash/* (easylistchina+easylist.txt: 19) +# /adflash/* (easylistchina.txt: 16) /(.*/)?adflash/.* -# ||yablyk.com/wp-content/plugins/popups/ (advblock.txt: 7169) -.yablyk.com/wp-content/plugins/popups/ -# ||podrobnosti.ua/js/jqModal.js (advblock.txt: 7168) -.podrobnosti.ua/js/jqModal\.js -# ||metylancreativ.com/js/socialPopup.js (advblock.txt: 7167) -.metylancreativ.com/js/socialPopup\.js -# ||comprofit.ru/popup/ (advblock.txt: 7166) -.comprofit.ru/popup/ -# ||zlograd.ru^ (advblock.txt: 7122) -.zlograd.ru -# ||zavod.chuvaz.ru^ (advblock.txt: 7121) -.zavod.chuvaz.ru -# ||zaovrazhnoe.ru^ (advblock.txt: 7120) -.zaovrazhnoe.ru -# ||uroki21.ru^ (advblock.txt: 7119) -.uroki21.ru -# ||tatar.4kazan.ru^ (advblock.txt: 7118) -.tatar.4kazan.ru -# ||sukterka.ru^ (advblock.txt: 7117) -.sukterka.ru -# ||sovch.ru^ (advblock.txt: 7116) -.sovch.ru -# ||serdce-volgi.ru^ (advblock.txt: 7115) -.serdce-volgi.ru -# ||randoom.ru^ (advblock.txt: 7114) -.randoom.ru -# ||procheb.ru^ (advblock.txt: 7113) -.procheb.ru -# ||nedv21.ru^ (advblock.txt: 7112) -.nedv21.ru -# ||my.megavstrecha.ru^ (advblock.txt: 7111) -.my.megavstrecha.ru -# ||lubov21.ru^ (advblock.txt: 7110) -.lubov21.ru -# ||kino.afisha21.ru^ (advblock.txt: 7109) -.kino.afisha21.ru -# ||it-cheb.ru^ (advblock.txt: 7108) -.it-cheb.ru -# ||icheb.ru^ (advblock.txt: 7107) -.icheb.ru -# ||host.torrent21.ru^ (advblock.txt: 7106) -.host.torrent21.ru -# ||gorod.shumerlya.ru^ (advblock.txt: 7105) -.gorod.shumerlya.ru -# ||echeb.ru^ (advblock.txt: 7104) -.echeb.ru -# ||doroga.kugesi.ru^ (advblock.txt: 7103) -.doroga.kugesi.ru -# ||doloj.ru^ (advblock.txt: 7102) -.doloj.ru -# ||dns21.ru^ (advblock.txt: 7101) -.dns21.ru -# ||devki21.ru^ (advblock.txt: 7100) -.devki21.ru -# ||chuvashskoe.ru^ (advblock.txt: 7099) -.chuvashskoe.ru -# ||chepaev.ru^ (advblock.txt: 7098) -.chepaev.ru -# ||chebtv.ru^ (advblock.txt: 7097) -.chebtv.ru -# ||chebtube.ru^ (advblock.txt: 7096) -.chebtube.ru -# ||chebru.ru^ (advblock.txt: 7095) -.chebru.ru -# ||chebradio.ru^ (advblock.txt: 7094) -.chebradio.ru -# ||cheboksar.ru^ (advblock.txt: 7093) -.cheboksar.ru -# ||chebogsary.ru^ (advblock.txt: 7092) -.chebogsary.ru -# ||chebfm.ru^ (advblock.txt: 7091) -.chebfm.ru -# ||cheb-rielt.ru^ (advblock.txt: 7090) -.cheb-rielt.ru -# ||alexey.blog21.ru^ (advblock.txt: 7089) -.alexey.blog21.ru -# ||adres21.ru^ (advblock.txt: 7088) -.adres21.ru -# ||441555.ru^ (advblock.txt: 7087) -.441555.ru -# ||21sale.ru^ (advblock.txt: 7086) -.21sale.ru -# ||21pokupki.ru^ (advblock.txt: 7085) -.21pokupki.ru -# ||21doctor.ru^ (advblock.txt: 7084) -.21doctor.ru -# ||21dengi.ru^ (advblock.txt: 7083) -.21dengi.ru -# ||212121.ru^ (advblock.txt: 7082) -.212121.ru -# ||kugesi.ru/fl3s/ (advblock.txt: 7071) -.kugesi.ru/fl3s/ -# ||kugesi.ru/fl2s/ (advblock.txt: 7070) -.kugesi.ru/fl2s/ -# ||x-soft.tomsk.ru/dsa/ (advblock.txt: 7064) -.x-soft.tomsk.ru/dsa/ -# ||torrents.tomsk.ru/b/ (advblock.txt: 7062) -.torrents.tomsk.ru/b/ -# ||tomsktracker.org/b/ (advblock.txt: 7061) -.tomsktracker.org/b/ -# ||tomsk.ru09.ru/img/tomsk/ad/ (advblock.txt: 7060) -.tomsk.ru09.ru/img/tomsk/ad/ -# ||tomsk.ru/tvb/ (advblock.txt: 7059) -.tomsk.ru/tvb/ -# ||tomsk.ru/tva/ (advblock.txt: 7058) -.tomsk.ru/tva/ -# ||tomsk.ru/tub/ (advblock.txt: 7057) -.tomsk.ru/tub/ -# ||tomsk.ru/tua/ (advblock.txt: 7056) -.tomsk.ru/tua/ -# ||tomsk.ru/ttt/ (advblock.txt: 7055) -.tomsk.ru/ttt/ -# ||tomsk.ru/resources/content/ (advblock.txt: 7054) -.tomsk.ru/resources/content/ -# ||novo.tomsk.ru/uploads/up3/rkl/ (advblock.txt: 7050) -.novo.tomsk.ru/uploads/up3/rkl/ -# ||mp1.tomsk.ru/h/ (advblock.txt: 7049) -.mp1.tomsk.ru/h/ -# ||gorod.tomsk.ru/i/b/ (advblock.txt: 7047) -.gorod.tomsk.ru/i/b/ -# ||dn.vtomske.ru/neopodarok/ (advblock.txt: 7045) -.dn.vtomske.ru/neopodarok/ -# ||dn.vtomske.ru/bi/ (advblock.txt: 7044) -.dn.vtomske.ru/bi/ -# ||dn.vtomske.ru/be/materials/ (advblock.txt: 7043) -.dn.vtomske.ru/be/materials/ -# ||catalog.tomsk.ru/ubb/ (advblock.txt: 7042) -.catalog.tomsk.ru/ubb/ -# ||catalog.tomsk.ru/uay/ (advblock.txt: 7041) -.catalog.tomsk.ru/uay/ -# ||be.vtomske.ru^ (advblock.txt: 7040) -.be.vtomske.ru -# ||b.vtomske.ru^ (advblock.txt: 7039) -.b.vtomske.ru -# ||b.autotom.ru/img/ (advblock.txt: 7038) -.b.autotom.ru/img/ -# ||autotom.ru/kompstar/ (advblock.txt: 7037) -.autotom.ru/kompstar/ -# ||kiks.yandex. (advblock.txt: 6995) -.kiks.yandex.*. -# ||awaps.yandex. (advblock.txt: 6992) -.awaps.yandex.*. -# ||vkbot.ru/trash/ (advblock.txt: 6964) -.vkbot.ru/trash/ -# ||everall.ru/static/img/banners/ (advblock.txt: 6962) -.everall.ru/static/img/banners/ -# ||vladbazar.com/bbb/ (advblock.txt: 6960) -.vladbazar.com/bbb/ -# ||portal.un.net.ua/temp/blocks/ (advblock.txt: 6954) -.portal.un.net.ua/temp/blocks/ -# ||vizortv.com/swf/ (advblock.txt: 6947) -.vizortv.com/swf/ -# ||lifetorrents.com^*_life/img/banner (advblock.txt: 6940) -.lifetorrents.com/.*_life/img/banner -# ||zoom.cnews.ru/inc/bpic/ (advblock.txt: 6926) -.zoom.cnews.ru/inc/bpic/ -# ||utro.ru/*/banners/ (advblock.txt: 6925) -.utro.ru/.*/banners/ -# ||rbc.ru/img/banners/ (advblock.txt: 6924) -.rbc.ru/img/banners/ -# ||cnews.ru/inc/banners/ (advblock.txt: 6923) -.cnews.ru/inc/banners/ -# ||rambler.ru^*.ban? (advblock.txt: 6907) -.rambler.ru/.*\.ban\? -# ||rambler.ru/upl/partners/ (advblock.txt: 6906) -.rambler.ru/upl/partners/ -# ||rambler.ru/upl/clients/ (advblock.txt: 6905) -.rambler.ru/upl/clients/ -# ||rambler.ru/upl/ad/ (advblock.txt: 6904) -.rambler.ru/upl/ad/ -# ||rambler.ru/export/banners. (advblock.txt: 6903) -.rambler.ru/export/banners\. -# ||rambler.ru/*/js/direct. (advblock.txt: 6902) -.rambler.ru/.*/js/direct\. -# ||kanobu.ru/brand/ (advblock.txt: 6900) -.kanobu.ru/brand/ -# ||ag.ru/*/top_bg.jpg (advblock.txt: 6899) -.ag.ru/.*/top_bg\.jpg -# ||ag.ru/*/flash.swf (advblock.txt: 6898) -.ag.ru/.*/flash\.swf -# ||ag.ru/*/bottom_bg.jpg (advblock.txt: 6897) -.ag.ru/.*/bottom_bg\.jpg -# ||tv.mail.ru/popup_banner/ (advblock.txt: 6821) -.tv.mail.ru/popup_banner/ -# ||news.mail.ru^*.parallaxSlot. (advblock.txt: 6820) -.news.mail.ru/.*\.parallaxSlot\. -# ||minigames.imgsmail.ru/swf/stock/ (advblock.txt: 6817) -.minigames.imgsmail.ru/swf/stock/ -# ||mamba.ru/images/*/promo/ (advblock.txt: 6816) -.mamba.ru/images/.*/promo/ -# ||mail.ru/img/promo/ (advblock.txt: 6815) -.mail.ru/img/promo/ -# ||imgsmail.ru/r/my/brands/ (advblock.txt: 6814) -.imgsmail.ru/r/my/brands/ -# ||e.mail.ru/api-proxy/mimic (advblock.txt: 6812) -.e.mail.ru/api-proxy/mimic -# //rs.mail.ru/b*.flv (advblock.txt: 6808) -rs.mail.ru/b.*\.flv -# ||letitbit.net^*/bg_downloader_screen_ (advblock.txt: 6682) -.letitbit.net/.*/bg_downloader_screen_ -# ||letitbit.net/images/rebrandings/ (advblock.txt: 6681) -.letitbit.net/images/rebrandings/ -# ||gismeteo.*/rian.html| (advblock.txt: 6674) -.gismeteo.*./(.*/)?rian\.html$ -# ||褉械褎械褉邪褌褘-懈-褋芯褔懈薪械薪懈褟.褉褎/images/hosting.gif (advblock.txt: 6640) -.褉械褎械褉邪褌褘-懈-褋芯褔懈薪械薪懈褟.褉褎/images/hosting\.gif -# ||斜械谢褉褍.褉褎/img/banners/ (advblock.txt: 6637) -.斜械谢褉褍.褉褎/img/banners/ -# ||zvezdakaraoke.com/*.php?id= (advblock.txt: 6636) -.zvezdakaraoke.com/.*\.php\?id= -# ||zoomby.ru/s/*/promo/*.jpg| (advblock.txt: 6635) -.zoomby.ru/s/.*/promo/.*\.jpg$ -# ||zol.ru/noteb/ (advblock.txt: 6633) -.zol.ru/noteb/ -# ||znak.com/images/up/ (advblock.txt: 6632) -.znak.com/images/up/ -# ||zik.ua/var/things/ (advblock.txt: 6630) -.zik.ua/var/things/ -# ||zh24.com/molodejj/ (advblock.txt: 6629) -.zh24.com/molodejj/ -# ||zh24.com/go/go/ (advblock.txt: 6628) -.zh24.com/go/go/ -# ||zerx.ru/templates/zerxnew/images/zerx_bg. (advblock.txt: 6627) -.zerx.ru/templates/zerxnew/images/zerx_bg\. -# ||zelenograd.ru/b/ (advblock.txt: 6626) -.zelenograd.ru/b/ -# ||zegame.net/files/ (advblock.txt: 6625) -.zegame.net/files/ -# ||zaycev.net/single?t= (advblock.txt: 6624) -.zaycev.net/single\?t= -# ||zakonia.ru/imgs/adshtml/ (advblock.txt: 6623) -.zakonia.ru/imgs/adshtml/ -# ||zadolba.li/img/ur.jpg (advblock.txt: 6622) -.zadolba.li/img/ur\.jpg -# ||ykt2.ru/inform/ (advblock.txt: 6618) -.ykt2.ru/inform/ -# ||ykt.ru/yaknet/image.asp?id= (advblock.txt: 6617) -.ykt.ru/yaknet/image\.asp\?id= -# ||ykt.ru/session? (advblock.txt: 6616) -.ykt.ru/session\? -# ||yaplakal.com/html/static/brand- (advblock.txt: 6614) -.yaplakal.com/html/static/brand- -# ||yapfiles.ru/uploads/branddata/ (advblock.txt: 6612) -.yapfiles.ru/uploads/branddata/ -# ||xxxmir.info/play.js (advblock.txt: 6609) -.xxxmir.info/play\.js -# ||xxx-tracker.com/pics/ (advblock.txt: 6608) -.xxx-tracker.com/pics/ -# ||xxx-russian.ru/js/38fbf0.js (advblock.txt: 6607) -.xxx-russian.ru/js/38fbf0\.js -# ||xtreme.ws/xad/ (advblock.txt: 6606) -.xtreme.ws/xad/ -# ||xmages.net/*/banner/ (advblock.txt: 6605) -.xmages.net/.*/banner/ -# ||xfont.ru^*/add_ref/ (advblock.txt: 6603) -.xfont.ru/.*/add_ref/ -# ||xf.xyu.tv^ (advblock.txt: 6602) -.xf.xyu.tv -# ||xenforo.info/728.swf (advblock.txt: 6601) -.xenforo.info/728\.swf -# ||xakep.ru/post/*_final.jpg (advblock.txt: 6600) -.xakep.ru/post/.*_final\.jpg -# ||www.4ernigiv.info^*/1ua/images/ (advblock.txt: 6599) -.www.4ernigiv.info/.*/1ua/images/ -# ||wowlol.ru/left/ (advblock.txt: 6597) -.wowlol.ru/left/ -# ||worldxfree.info/windowfiles/ (advblock.txt: 6593) -.worldxfree.info/windowfiles/ -# ||world-art.ru/bipack/ (advblock.txt: 6592) -.world-art.ru/bipack/ -# ||wmmail.ru/bn/ (advblock.txt: 6591) -.wmmail.ru/bn/ -# ||wmasteru.org/b/ (advblock.txt: 6590) -.wmasteru.org/b/ -# ||winzoro.com/data/ba_ne_r/ (advblock.txt: 6589) -.winzoro.com/data/ba_ne_r/ -# ||wild-mistress.ru/wmbanner/ (advblock.txt: 6588) -.wild-mistress.ru/wmbanner/ -# ||wedlife.ru/b/ (advblock.txt: 6587) -.wedlife.ru/b/ -# ||webtun.com/uploads/files/ (advblock.txt: 6586) -.webtun.com/uploads/files/ -# ||webplus.info/getres.php?getadv= (advblock.txt: 6585) -.webplus.info/getres\.php\?getadv= -# ||webpark.ru/*/mhealth (advblock.txt: 6584) -.webpark.ru/.*/mhealth -# ||webmasters.ru/forum/ltbanners/ (advblock.txt: 6583) -.webmasters.ru/forum/ltbanners/ -# ||weblancer.net/adver/ (advblock.txt: 6582) -.weblancer.net/adver/ -# ||webkrug.ru/images/bann (advblock.txt: 6581) -.webkrug.ru/images/bann -# ||webfile.ru/media/img/branding. (advblock.txt: 6580) -.webfile.ru/media/img/branding\. -# ||webavangard.com.ua/torg/ (advblock.txt: 6579) -.webavangard.com.ua/torg/ -# ||webapteka.ru/image/ (advblock.txt: 6578) -.webapteka.ru/image/ -# ||weacom.ru/uploads/commercial/ (advblock.txt: 6577) -.weacom.ru/uploads/commercial/ -# ||warfiles.ru/bg/ (advblock.txt: 6576) -.warfiles.ru/bg/ -# ||warezlab.ru^*rotator (advblock.txt: 6575) -.warezlab.ru/.*rotator -# ||waralbum.ru/br/ (advblock.txt: 6574) -.waralbum.ru/br/ -# ||vz.ru/import/ (advblock.txt: 6573) -.vz.ru/import/ -# ||vz.ru/images/*_banner. (advblock.txt: 6572) -.vz.ru/images/.*_banner\. -# ||vsluh.ru/system/*banners/ (advblock.txt: 6571) -.vsluh.ru/system/.*banners/ -# ||vsetyt.us/uploads/ruscams. (advblock.txt: 6570) -.vsetyt.us/uploads/ruscams\. -# ||vseplatezhi.ru^*/banners/ (advblock.txt: 6568) -.vseplatezhi.ru/.*/banners/ -# ||vse42.ru/files/ui-*.swf (advblock.txt: 6566) -.vse42.ru/files/ui-.*\.swf -# ||vse42.ru/files/ui-*.gif (advblock.txt: 6565) -.vse42.ru/files/ui-.*\.gif -# ||vp-news.ru/images/swr/ (advblock.txt: 6563) -.vp-news.ru/images/swr/ -# ||vozmi.net/img/*150x250 (advblock.txt: 6562) -.vozmi.net/img/.*150x250 -# ||voxpopuli.kz/userfiles/branding/ (advblock.txt: 6561) -.voxpopuli.kz/userfiles/branding/ -# ||voxpopuli.kz/css/site/images/*/background_ (advblock.txt: 6560) -.voxpopuli.kz/css/site/images/.*/background_ -# ||vorum.ru/files/mpix/ (advblock.txt: 6559) -.vorum.ru/files/mpix/ -# ||volzsky.ru/upload/flash/ (advblock.txt: 6558) -.volzsky.ru/upload/flash/ -# ||volgowarez.ru/engine/classes/js/init.js| (advblock.txt: 6557) -.volgowarez.ru/engine/classes/js/init\.js$ -# ||volgo-mame.ru/partner/ (advblock.txt: 6556) -.volgo-mame.ru/partner/ -# ||vokrugsveta.ru/img/bx/rk/ (advblock.txt: 6555) -.vokrugsveta.ru/img/bx/rk/ -# ||vokrugsveta.ru/ad/ (advblock.txt: 6554) -.vokrugsveta.ru/ad/ -# ||voffka.com/img/banners/ (advblock.txt: 6553) -.voffka.com/img/banners/ -# ||vlasti.net/ext/uploads/ (advblock.txt: 6552) -.vlasti.net/ext/uploads/ -# ||virusinfo.info^*/brand/ (advblock.txt: 6551) -.virusinfo.info/.*/brand/ -# ||viknaodessa.od.ua/baner468 (advblock.txt: 6550) -.viknaodessa.od.ua/baner468 -# ||videoprobki.*/ext_baners/ (advblock.txt: 6549) -.videoprobki.*./(.*/)?ext_baners/ -# ||videoprobki.*/brand/ (advblock.txt: 6548) -.videoprobki.*./(.*/)?brand/ -# ||videochart.net/vedro/ (advblock.txt: 6546) -.videochart.net/vedro/ -# ||vgtimes.ru/podl/ (advblock.txt: 6545) -.vgtimes.ru/podl/ -# ||vfl.ru/bs/ (advblock.txt: 6544) -.vfl.ru/bs/ -# ||vestifinance.ru/img/banners/ (advblock.txt: 6543) -.vestifinance.ru/img/banners/ -# ||vesti.ru/banners_ (advblock.txt: 6542) -.vesti.ru/banners_ -# ||verstov.info/files/ (advblock.txt: 6540) -.verstov.info/files/ -# ||verstov.info/cviews.php?id= (advblock.txt: 6539) -.verstov.info/cviews\.php\?id= -# ||vdmsti.ru/img/advblock/ (advblock.txt: 6538) -.vdmsti.ru/img/advblock/ -# ||vashgorod.ru/key/get?partner_id= (advblock.txt: 6535) -.vashgorod.ru/key/get\?partner_id= -# ||vashgorod.ru/images/banner/ (advblock.txt: 6534) -.vashgorod.ru/images/banner/ -# ||vashdom.ru/image/rk/ (advblock.txt: 6533) -.vashdom.ru/image/rk/ -# ||vashdom.ru/image/gagban/ (advblock.txt: 6532) -.vashdom.ru/image/gagban/ -# ||v-info.ru^*.swf?data= (advblock.txt: 6530) -.v-info.ru/.*\.swf\?data= -# ||v-info.ru/i_bann/ (advblock.txt: 6529) -.v-info.ru/i_bann/ -# ||v-chulkahh.ru/js/06ea7c.js (advblock.txt: 6528) -.v-chulkahh.ru/js/06ea7c\.js -# ||uzum.tv/120/ (advblock.txt: 6525) -.uzum.tv/120/ -# ||upweek.ru/wp-content/banners/ (advblock.txt: 6524) -.upweek.ru/wp-content/banners/ -# ||uptracker.ru/images/casino/ (advblock.txt: 6523) -.uptracker.ru/images/casino/ -# ||unn.com.ua/images/branding/ (advblock.txt: 6522) -.unn.com.ua/images/branding/ -# ||unionpeer.org/branding_ (advblock.txt: 6521) -.unionpeer.org/branding_ -# ||underverse.su/misc/ (advblock.txt: 6519) -.underverse.su/misc/ -# ||uinsell.net/b/ (advblock.txt: 6517) -.uinsell.net/b/ -# ||uc-portaller.ru/uc-img/banner/ (advblock.txt: 6514) -.uc-portaller.ru/uc-img/banner/ -# ||uaplayer.com/get? (advblock.txt: 6513) -.uaplayer.com/get\? -# ||ua-football.com/interface/ads/ (advblock.txt: 6512) -.ua-football.com/interface/ads/ -# ||u-tv.ru/pic/promo/ (advblock.txt: 6511) -.u-tv.ru/pic/promo/ -# ||u-tv.ru/images/overlay/ (advblock.txt: 6510) -.u-tv.ru/images/overlay/ -# ||u-tv.ru/ajax?f=bigbaner_ (advblock.txt: 6509) -.u-tv.ru/ajax\?f=bigbaner_ -# ||tyt.by^*/banner/ (advblock.txt: 6508) -.tyt.by/.*/banner/ -# ||twirpx.com/resources/html/ (advblock.txt: 6507) -.twirpx.com/resources/html/ -# ||tvigle.ru/resource/rf/rkm_disign/ (advblock.txt: 6505) -.tvigle.ru/resource/rf/rkm_disign/ -# ||tvi.ua/other/branding/ (advblock.txt: 6504) -.tvi.ua/other/branding/ -# ||tvi.ua/image/data/banners/ (advblock.txt: 6503) -.tvi.ua/image/data/banners/ -# ||tvgid.ua/visit/ (advblock.txt: 6502) -.tvgid.ua/visit/ -# ||tushkan.net/vkm/ (advblock.txt: 6499) -.tushkan.net/vkm/ -# ||turizm.ru/banners2/200 (advblock.txt: 6498) -.turizm.ru/banners2/200 -# ||turbobit.ru/pics/ (advblock.txt: 6497) -.turbobit.ru/pics/ -# ||turbobit.net/pics/ (advblock.txt: 6496) -.turbobit.net/pics/ -# ||turbo.az/banners/ (advblock.txt: 6495) -.turbo.az/banners/ -# ||tumix.ru/*/banners/ (advblock.txt: 6494) -.tumix.ru/.*/banners/ -# ||tsn.ua^*/branding/ (advblock.txt: 6493) -.tsn.ua/.*/branding/ -# ||trud.ru/saved/ (advblock.txt: 6492) -.trud.ru/saved/ -# ||trud.ru/ad/ (advblock.txt: 6491) -.trud.ru/ad/ -# ||tropica.ru/img/b/ (advblock.txt: 6490) -.tropica.ru/img/b/ -# ||trinixy.ru/r/ (advblock.txt: 6489) -.trinixy.ru/r/ -# ||travelgps.com.ua/js/relink2. (advblock.txt: 6487) -.travelgps.com.ua/js/relink2\. -# ||tort.fm/banners/ (advblock.txt: 6483) -.tort.fm/banners/ -# ||torrentszona.com/pic/branding- (advblock.txt: 6482) -.torrentszona.com/pic/branding- -# ||torrentszona.com/fakereklam/ (advblock.txt: 6481) -.torrentszona.com/fakereklam/ -# ||torrentszona.com/afisha/banner_ (advblock.txt: 6480) -.torrentszona.com/afisha/banner_ -# ||torrent.rus.ec/a-detector/ (advblock.txt: 6478) -.torrent.rus.ec/a-detector/ -# ||torrent-telik.com/cdn-cgi/*.torrent-telik.com (advblock.txt: 6477) -.torrent-telik.com/cdn-cgi/.*\.torrent-telik\.com -# ||torrent-games.net/flash/flashgames/ (advblock.txt: 6476) -.torrent-games.net/flash/flashgames/ -# ||topwar.ru/bg/ (advblock.txt: 6475) -.topwar.ru/bg/ -# ||topse.ru/sotmarket (advblock.txt: 6474) -.topse.ru/sotmarket -# ||topnews.ru/bframe.php?z= (advblock.txt: 6473) -.topnews.ru/bframe\.php\?z= -# ||tod-news.com^*-ads- (advblock.txt: 6470) -.tod-news.com/.*-ads- -# ||tnua.info/banner/ (advblock.txt: 6469) -.tnua.info/banner/ -# ||timeout.ru^*&adv= (advblock.txt: 6467) -.timeout.ru/.*&adv= -# ||timeout.ru/adriver-reload.js (advblock.txt: 6466) -.timeout.ru/adriver-reload\.js -# ||thumbs.ivi.ru^*.swf^ (advblock.txt: 6465) -.thumbs.ivi.ru/.*\.swf[^\w%.-] -# ||thr.ru/public/promo-branding/ (advblock.txt: 6464) -.thr.ru/public/promo-branding/ -# ||thg.ru^*_TOMS_HARDWARE_ (advblock.txt: 6463) -.thg.ru/.*_TOMS_HARDWARE_ -# ||thg.ru/images/spons/ (advblock.txt: 6462) -.thg.ru/images/spons/ -# ||thg.ru/adv_img/ (advblock.txt: 6461) -.thg.ru/adv_img/ -# ||thailandproperty.tv/images/*_banner_ (advblock.txt: 6460) -.thailandproperty.tv/images/.*_banner_ -# ||tfilm.tv/js/clck.js (advblock.txt: 6459) -.tfilm.tv/js/clck\.js -# ||teksta.org/images/adv (advblock.txt: 6456) -.teksta.org/images/adv -# ||teksta.org/*.php| (advblock.txt: 6455) -.teksta.org/.*\.php$ -# ||tapochek.net/rek.gif (advblock.txt: 6452) -.tapochek.net/rek\.gif -# ||tapochek.net/myc/code.js (advblock.txt: 6451) -.tapochek.net/myc/code\.js -# ||talos.dota2.ru^ (advblock.txt: 6450) -.talos.dota2.ru -# ||takelink.org/engine/ajax/check.js (advblock.txt: 6449) -.takelink.org/engine/ajax/check\.js -# ||tainoe.o-nas.info/banner/ (advblock.txt: 6448) -.tainoe.o-nas.info/banner/ -# ||syzran-small.net/images/info/ (advblock.txt: 6447) -.syzran-small.net/images/info/ -# ||synoptyc.com.ua/_uploaded_files/ads/ (advblock.txt: 6445) -.synoptyc.com.ua/_uploaded_files/ads/ -# ||sxnarod.com/img/ (advblock.txt: 6443) -.sxnarod.com/img/ -# ||svadba-kursk.ru/forum/banner/ (advblock.txt: 6442) -.svadba-kursk.ru/forum/banner/ -# ||sur.gorodkirov.ru^ (advblock.txt: 6441) -.sur.gorodkirov.ru -# ||superomsk.ru/images/public/banners/ (advblock.txt: 6440) -.superomsk.ru/images/public/banners/ -# ||sun.all-episodes.com^ (advblock.txt: 6438) -.sun.all-episodes.com -# ||suero.tv/exclusive/ (advblock.txt: 6437) -.suero.tv/exclusive/ -# ||submitred.freezpic.ru^ (advblock.txt: 6436) -.submitred.freezpic.ru -# ||stroyvitrina.ru/_a_images/ (advblock.txt: 6435) -.stroyvitrina.ru/_a_images/ -# ||storyroom.ru/bbb/ (advblock.txt: 6434) -.storyroom.ru/bbb/ -# ||stopgame.ru/preroll/*.mp4 (advblock.txt: 6433) -.stopgame.ru/preroll/.*\.mp4 -# ||stereohead.ru/_main_page/images/ (advblock.txt: 6432) -.stereohead.ru/_main_page/images/ -# ||station.ru/upload/contents/*240x250 (advblock.txt: 6431) -.station.ru/upload/contents/.*240x250 -# ||station.ru/upload/contents/*210x260 (advblock.txt: 6430) -.station.ru/upload/contents/.*210x260 -# ||static2.rutracker.org^ (advblock.txt: 6429) -.static2.rutracker.org -# ||stars.manystars.ru^ (advblock.txt: 6427) -.stars.manystars.ru -# ||starkosino.ru/images/banner_ (advblock.txt: 6425) -.starkosino.ru/images/banner_ -# ||spotters.net.ua/swf/ (advblock.txt: 6424) -.spotters.net.ua/swf/ -# ||sports.ru^*/banners/ (advblock.txt: 6423) -.sports.ru/.*/banners/ -# ||sports.ru/desktop/special/*-slider/ (advblock.txt: 6422) -.sports.ru/desktop/special/.*-slider/ -# ||sports.ru/css/promo. (advblock.txt: 6421) -.sports.ru/css/promo\. -# ||splkirov.ru/assets/flash/ (advblock.txt: 6420) -.splkirov.ru/assets/flash/ -# ||spbit.ru/b_images/ (advblock.txt: 6419) -.spbit.ru/b_images/ -# ||space.com.ua/ban_ (advblock.txt: 6418) -.space.com.ua/ban_ -# ||sovsport.ru/ib/ (advblock.txt: 6416) -.sovsport.ru/ib/ -# ||soptv.ru/scode.php?site= (advblock.txt: 6415) -.soptv.ru/scode\.php\?site= -# ||softoroom.net/2pclick/ (advblock.txt: 6413) -.softoroom.net/2pclick/ -# ||soft4xp.ru/rss_news.php (advblock.txt: 6412) -.soft4xp.ru/rss_news\.php -# ||soft-i-kino.ru/tiz. (advblock.txt: 6411) -.soft-i-kino.ru/tiz\. -# ||soccer.ru/swf/*.swf?nocache= (advblock.txt: 6410) -.soccer.ru/swf/.*\.swf\?nocache= -# ||smusics.net^*/js/motiongallery. (advblock.txt: 6409) -.smusics.net/.*/js/motiongallery\. -# ||smotrisport.tv/banner/ (advblock.txt: 6408) -.smotrisport.tv/banner/ -# ||smotri.com/rb/ (advblock.txt: 6407) -.smotri.com/rb/ -# ||slivki.by/banner/ (advblock.txt: 6405) -.slivki.by/banner/ -# ||slavgorod.com.ua/AdTemp/ (advblock.txt: 6404) -.slavgorod.com.ua/AdTemp/ -# ||siliconrus.com^*/losssy.jquery.js (advblock.txt: 6402) -.siliconrus.com/.*/losssy\.jquery\.js -# ||sibmama.ru/d/ (advblock.txt: 6401) -.sibmama.ru/d/ -# ||shownewstv.ru/files/all/ (advblock.txt: 6399) -.shownewstv.ru/files/all/ -# ||shopping-spb.su/images/*/bg_top. (advblock.txt: 6397) -.shopping-spb.su/images/.*/bg_top\. -# ||shophelp.ru/dv/ (advblock.txt: 6396) -.shophelp.ru/dv/ -# ||sexnarod.ru/img/ (advblock.txt: 6395) -.sexnarod.ru/img/ -# ||sexgamesbox.com/images/ (advblock.txt: 6394) -.sexgamesbox.com/images/ -# ||sevnews.info^*/flash/ (advblock.txt: 6393) -.sevnews.info/.*/flash/ -# ||sevnews.info^*/adv_banners/ (advblock.txt: 6392) -.sevnews.info/.*/adv_banners/ -# ||severstalclub.ru/pic/bimages/ (advblock.txt: 6391) -.severstalclub.ru/pic/bimages/ -# ||seti.ee*/reklaam/ (advblock.txt: 6390) -.seti.ee*./(.*/)?reklaam/ -# ||seti-ceti.ru/assets/images/vsiaki/ (advblock.txt: 6389) -.seti-ceti.ru/assets/images/vsiaki/ -# ||sergeistrelec.ru/templates/sstr/js^ (advblock.txt: 6388) -.sergeistrelec.ru/templates/sstr/js[^\w%.-] -# ||seocafe.info/MEDimg/ (advblock.txt: 6387) -.seocafe.info/MEDimg/ -# ||semestr.ru/images/banner (advblock.txt: 6386) -.semestr.ru/images/banner -# ||seedoff.net/partners/ (advblock.txt: 6385) -.seedoff.net/partners/ -# ||seedoff.net/jscript/xbtit.js (advblock.txt: 6384) -.seedoff.net/jscript/xbtit\.js -# ||seedoff.net/images/banners^ (advblock.txt: 6383) -.seedoff.net/images/banners[^\w%.-] -# ||seedoff.net/br/ (advblock.txt: 6382) -.seedoff.net/br/ -# ||seasonvar.ru/images/brand/ (advblock.txt: 6381) -.seasonvar.ru/images/brand/ -# ||sdelanounas.ru/b/ (advblock.txt: 6380) -.sdelanounas.ru/b/ -# ||scrin.org/viewt.js (advblock.txt: 6379) -.scrin.org/viewt\.js -# ||screenlist.ru/ads.js (advblock.txt: 6377) -.screenlist.ru/ads\.js -# ||sc2tv.ru^*/images/*/bg- (advblock.txt: 6376) -.sc2tv.ru/.*/images/.*/bg- -# ||sc2tv.ru^*/images/*-bg- (advblock.txt: 6375) -.sc2tv.ru/.*/images/.*-bg- -# ||sat-expert.com/forum/banners/ (advblock.txt: 6374) -.sat-expert.com/forum/banners/ -# ||sat-digest.com/bac/ (advblock.txt: 6373) -.sat-digest.com/bac/ -# ||sandero.ru/flash/ (advblock.txt: 6372) -.sandero.ru/flash/ -# ||samru.ru/images/pic/gifs/ (advblock.txt: 6371) -.samru.ru/images/pic/gifs/ -# ||s5o.ru^*/promo/ (advblock.txt: 6368) -.s5o.ru/.*/promo/ -# ||s5o.ru^*/brandings/ (advblock.txt: 6367) -.s5o.ru/.*/brandings/ -# ||s.serialu.net^ (advblock.txt: 6364) -.s.serialu.net -# ||s-info.ru/img/recl/ (advblock.txt: 6363) -.s-info.ru/img/recl/ -# ||rybalka.com/images/forum_buttons/ (advblock.txt: 6362) -.rybalka.com/images/forum_buttons/ -# ||rutube.ru/grobot/ (advblock.txt: 6361) -.rutube.ru/grobot/ -# ||rutracker21.org/partners/ (advblock.txt: 6359) -.rutracker21.org/partners/ -# ||rutracker.ru/images/banner/ (advblock.txt: 6358) -.rutracker.ru/images/banner/ -# ||rutracker.org/iframe/ (advblock.txt: 6357) -.rutracker.org/iframe/ -# ||rutracker.org/004/ (advblock.txt: 6356) -.rutracker.org/004/ -# ||rutor.org/counter.js (advblock.txt: 6355) -.rutor.org/counter\.js -# ||rustrackers.ru/banner_ (advblock.txt: 6354) -.rustrackers.ru/banner_ -# ||rustorrents.rustorrents.net^ (advblock.txt: 6353) -.rustorrents.rustorrents.net -# ||rustorka.com^*/bubbles.js (advblock.txt: 6352) -.rustorka.com/.*/bubbles\.js -# ||rustorka.com/forum/misc/js/tqiqgy.js (advblock.txt: 6350) -.rustorka.com/forum/misc/js/tqiqgy\.js -# ||rustorka.com/forum/misc/js/mtomfh.js (advblock.txt: 6349) -.rustorka.com/forum/misc/js/mtomfh\.js -# ||rustorka.com/branding/ (advblock.txt: 6348) -.rustorka.com/branding/ -# ||russianfood.com/js/informb_ (advblock.txt: 6347) -.russianfood.com/js/informb_ -# ||russiandc.com/ebs_show.php? (advblock.txt: 6346) -.russiandc.com/ebs_show\.php\? -# ||ruspicbox.ru^*/clicunder.js (advblock.txt: 6345) -.ruspicbox.ru/.*/clicunder\.js -# ||ruspicbox.ru/tpl/ (advblock.txt: 6344) -.ruspicbox.ru/tpl/ -# ||ruskweb.ru/bannerbro/ (advblock.txt: 6342) -.ruskweb.ru/bannerbro/ -# ||ruskino.ru/part3/ (advblock.txt: 6341) -.ruskino.ru/part3/ -# ||ruskino.ru/brand/*/top. (advblock.txt: 6340) -.ruskino.ru/brand/.*/top\. -# ||rusdemotivator.ru/uploads/*_*_vb.gif (advblock.txt: 6339) -.rusdemotivator.ru/uploads/.*_.*_vb\.gif -# ||rusbody.com/aim/ (advblock.txt: 6338) -.rusbody.com/aim/ -# ||rusavtobus.ru^*/images/*-banner/ (advblock.txt: 6337) -.rusavtobus.ru/.*/images/.*-banner/ -# ||rulinux.net.ru^*/banner. (advblock.txt: 6336) -.rulinux.net.ru/.*/banner\. -# ||rugrad.eu/bx/ (advblock.txt: 6335) -.rugrad.eu/bx/ -# ||rublacklist.net/media/banner_ (advblock.txt: 6334) -.rublacklist.net/media/banner_ -# ||rublacklist.net/media/*vpn. (advblock.txt: 6333) -.rublacklist.net/media/.*vpn\. -# ||ru-board.com/kupitraff. (advblock.txt: 6332) -.ru-board.com/kupitraff\. -# ||ru-board.com/bnrs/ (advblock.txt: 6331) -.ru-board.com/bnrs/ -# ||ru-board.com*/xmtmp/ (advblock.txt: 6330) -.ru-board.com*./(.*/)?xmtmp/ -# ||ru-board.com*/temp/ (advblock.txt: 6329) -.ru-board.com*./(.*/)?temp/ -# ||ru-admin.net/clk123.js (advblock.txt: 6328) -.ru-admin.net/clk123\.js -# ||rtkorr.com/js/popup.js (advblock.txt: 6327) -.rtkorr.com/js/popup\.js -# ||rsload.net/*/dl.js (advblock.txt: 6326) -.rsload.net/.*/dl\.js -# ||rpod.ru/i/b/ (advblock.txt: 6324) -.rpod.ru/i/b/ -# ||rotabanner.kulichki.com^ (advblock.txt: 6323) -.rotabanner.kulichki.com -# ||rosrealt.ru/pics/design2/ (advblock.txt: 6322) -.rosrealt.ru/pics/design2/ -# ||rosbalt.ru/ad/ (advblock.txt: 6320) -.rosbalt.ru/ad/ -# ||rlsnet.ru/images/3dbanner (advblock.txt: 6317) -.rlsnet.ru/images/3dbanner -# ||rlsnet.ru/image_banner_id_ (advblock.txt: 6316) -.rlsnet.ru/image_banner_id_ -# ||riper.am/rekoin.js (advblock.txt: 6315) -.riper.am/rekoin\.js -# ||riper.am/branding/ (advblock.txt: 6314) -.riper.am/branding/ -# ||riotpixels.com/plg/ (advblock.txt: 6313) -.riotpixels.com/plg/ -# ||riotpixels.com/playo (advblock.txt: 6312) -.riotpixels.com/playo -# ||riotpixels.com/i/brand (advblock.txt: 6311) -.riotpixels.com/i/brand -# ||riotpixels.com/i/bg- (advblock.txt: 6310) -.riotpixels.com/i/bg- -# ||rin.ru/images/bannerpic/ (advblock.txt: 6308) -.rin.ru/images/bannerpic/ -# ||rin.ru/bodyadv. (advblock.txt: 6307) -.rin.ru/bodyadv\. -# ||rg.ru/i/bnr/ (advblock.txt: 6305) -.rg.ru/i/bnr/ -# ||restoclub.ru/pic/iblocks/ (advblock.txt: 6302) -.restoclub.ru/pic/iblocks/ -# ||ren.tv/sites/default/files/*_banner_ (advblock.txt: 6301) -.ren.tv/sites/default/files/.*_banner_ -# ||remoteshaman.com^*/gcheck.js (advblock.txt: 6300) -.remoteshaman.com/.*/gcheck\.js -# ||relinka.net/banner (advblock.txt: 6299) -.relinka.net/banner -# ||reibert.info/images/ (advblock.txt: 6296) -.reibert.info/images/ -# ||regnum.ru^*/bn/ (advblock.txt: 6295) -.regnum.ru/.*/bn/ -# ||recetascomidas.com/base/banner_ (advblock.txt: 6294) -.recetascomidas.com/base/banner_ -# ||realcoding.net/foto/*.gif (advblock.txt: 6293) -.realcoding.net/foto/.*\.gif -# ||readovka.ru/images/ (advblock.txt: 6292) -.readovka.ru/images/ -# ||rapidzona.tv^*.php| (advblock.txt: 6290) -.rapidzona.tv/.*\.php$ -# ||rapidzona.com/*_200x400_ (advblock.txt: 6289) -.rapidzona.com/.*_200x400_ -# ||rap-text.ru/templates/raptext/images/banner (advblock.txt: 6288) -.rap-text.ru/templates/raptext/images/banner -# ||raketa-tv.com/banner_ (advblock.txt: 6287) -.raketa-tv.com/banner_ -# ||radiorecord.ru/baners_ (advblock.txt: 6286) -.radiorecord.ru/baners_ -# ||rada.com.ua/images/bs/ (advblock.txt: 6285) -.rada.com.ua/images/bs/ -# ||r.e1.ru/images/ (advblock.txt: 6283) -.r.e1.ru/images/ -# ||qvaga.pronpic.org^ (advblock.txt: 6282) -.qvaga.pronpic.org -# ||puma.planeta51.com^ (advblock.txt: 6280) -.puma.planeta51.com -# ||psywarez.com/banner/ (advblock.txt: 6279) -.psywarez.com/banner/ -# ||pslan.*/banera/ (advblock.txt: 6278) -.pslan.*./(.*/)?banera/ -# ||pskovlive.ru/b/ (advblock.txt: 6277) -.pskovlive.ru/b/ -# ||ps3hits.ru/wp-content/themes/custom-community/images/ (advblock.txt: 6276) -.ps3hits.ru/wp-content/themes/custom-community/images/ -# ||ps3club.ru/bans/ (advblock.txt: 6275) -.ps3club.ru/bans/ -# ||proxyweb.net/js/dhtmlwindow.js (advblock.txt: 6274) -.proxyweb.net/js/dhtmlwindow\.js -# ||proufu.ru/upload/rk/ (advblock.txt: 6273) -.proufu.ru/upload/rk/ -# ||prostoporno.net/br_ (advblock.txt: 6272) -.prostoporno.net/br_ -# ||prostopleer.com/t.php? (advblock.txt: 6271) -.prostopleer.com/t\.php\? -# ||prophotos.ru/data/brandings/ (advblock.txt: 6270) -.prophotos.ru/data/brandings/ -# ||pronpix.ru/*under.js (advblock.txt: 6269) -.pronpix.ru/.*under\.js -# ||promodj.com/legacy/i/branding/ (advblock.txt: 6268) -.promodj.com/legacy/i/branding/ -# ||promodj.com/brandings/ (advblock.txt: 6267) -.promodj.com/brandings/ -# ||promodeejay.net/branding/ (advblock.txt: 6266) -.promodeejay.net/branding/ -# ||prom.x-lime.net^ (advblock.txt: 6265) -.prom.x-lime.net -# ||prologic.su/b/ (advblock.txt: 6264) -.prologic.su/b/ -# ||prokazan.ru/manager/BannerSystem.php? (advblock.txt: 6263) -.prokazan.ru/manager/BannerSystem\.php\? -# ||prodota.ru/uploads/flags/Ads/ (advblock.txt: 6260) -.prodota.ru/uploads/flags/Ads/ -# ||prodota.ru/templates/vulkan/ (advblock.txt: 6259) -.prodota.ru/templates/vulkan/ -# ||prodota.ru/templates/images/brending (advblock.txt: 6258) -.prodota.ru/templates/images/brending -# ||prisnilos.su/static/underbanner/ (advblock.txt: 6256) -.prisnilos.su/static/underbanner/ -# ||prikols.com.ru/eroru/ (advblock.txt: 6254) -.prikols.com.ru/eroru/ -# ||pravdapskov.ru/upload/b/ (advblock.txt: 6252) -.pravdapskov.ru/upload/b/ -# ||pozdrav.ru/url/*.vfl.ru (advblock.txt: 6250) -.pozdrav.ru/url/.*\.vfl\.ru -# ||pozdrav.ru/img/banners/ (advblock.txt: 6249) -.pozdrav.ru/img/banners/ -# ||povarenok.ru/bn/ (advblock.txt: 6248) -.povarenok.ru/bn/ -# ||povarenok.ru/banners_new/ (advblock.txt: 6247) -.povarenok.ru/banners_new/ -# ||poufe.ru/promo/ (advblock.txt: 6246) -.poufe.ru/promo/ -# ||post-tracker.ru/aimages/ (advblock.txt: 6245) -.post-tracker.ru/aimages/ -# ||pornolab.net/004/ (advblock.txt: 6244) -.pornolab.net/004/ -# ||porno-monster.ru/images/sex-shop/ (advblock.txt: 6243) -.porno-monster.ru/images/sex-shop/ -# ||pornk.org/js/a/ (advblock.txt: 6242) -.pornk.org/js/a/ -# ||popup.relinka.net^ (advblock.txt: 6241) -.popup.relinka.net -# ||poltavaforum.com/banner/ (advblock.txt: 6240) -.poltavaforum.com/banner/ -# ||poltavaforum.com/01/ (advblock.txt: 6239) -.poltavaforum.com/01/ -# ||politobzor.net/bg/ (advblock.txt: 6238) -.politobzor.net/bg/ -# ||politland.ru/jss/12fef6.js (advblock.txt: 6237) -.politland.ru/jss/12fef6\.js -# ||pogoda.by/promo (advblock.txt: 6236) -.pogoda.by/promo -# ||pn.com.ua^*/pnimages/banners/ (advblock.txt: 6235) -.pn.com.ua/.*/pnimages/banners/ -# ||platimzafoto.ru/file.js (advblock.txt: 6231) -.platimzafoto.ru/file\.js -# ||planetaua.net/uploads/clck.js (advblock.txt: 6230) -.planetaua.net/uploads/clck\.js -# ||pix-x.net/ban (advblock.txt: 6224) -.pix-x.net/ban -# ||piterhunt.ru/sponsor/banner/ (advblock.txt: 6223) -.piterhunt.ru/sponsor/banner/ -# ||pise4ka.com/js/*.js| (advblock.txt: 6222) -.pise4ka.com/js/.*\.js$ -# ||piratski.ru/*_banner. (advblock.txt: 6221) -.piratski.ru/.*_banner\. -# ||pirat.ca/images/posters/ (advblock.txt: 6220) -.pirat.ca/images/posters/ -# ||pipec.ru/js/ (advblock.txt: 6219) -.pipec.ru/js/ -# ||ping-admin.ru/i/b/ (advblock.txt: 6218) -.ping-admin.ru/i/b/ -# ||pikabu.ru/images/test/ (advblock.txt: 6217) -.pikabu.ru/images/test/ -# ||pikabu.ru/4test/ad/ (advblock.txt: 6216) -.pikabu.ru/4test/ad/ -# ||pics-money.ru/picsmoneyclick.js (advblock.txt: 6214) -.pics-money.ru/picsmoneyclick\.js -# ||piccash.net/tpl/images/ (advblock.txt: 6212) -.piccash.net/tpl/images/ -# ||pic4pay.com/rt/ (advblock.txt: 6211) -.pic4pay.com/rt/ -# ||pic2profit.com/ppb.php?id= (advblock.txt: 6210) -.pic2profit.com/ppb\.php\?id= -# ||pic2profit.com/img/putanap/ (advblock.txt: 6209) -.pic2profit.com/img/putanap/ -# ||pi-c.ru^*/code.js| (advblock.txt: 6208) -.pi-c.ru/.*/code\.js$ -# ||photodoska.ru/content/banners/ (advblock.txt: 6206) -.photodoska.ru/content/banners/ -# ||petrogazeta.ru/media//set/ (advblock.txt: 6205) -.petrogazeta.ru/media//set/ -# ||pctuner.ru/plugins/bworks/files/ (advblock.txt: 6204) -.pctuner.ru/plugins/bworks/files/ -# ||patria.md/i/partners/ (advblock.txt: 6203) -.patria.md/i/partners/ -# ||para.by/banners/ (advblock.txt: 6202) -.para.by/banners/ -# ||paparazzi.ru/i/personas.css? (advblock.txt: 6201) -.paparazzi.ru/i/personas\.css\? -# ||panicnews.ru/r.php?l= (advblock.txt: 6199) -.panicnews.ru/r\.php\?l= -# ||panicnews.ru/js/popup.js (advblock.txt: 6198) -.panicnews.ru/js/popup\.js -# ||p-p.com.ua/-/uploads/media/000/ (advblock.txt: 6197) -.p-p.com.ua/-/uploads/media/000/ -# ||ozon.ru/graphics/img_ban/ (advblock.txt: 6196) -.ozon.ru/graphics/img_ban/ -# ||ozon.ru/graphics/img/ (advblock.txt: 6195) -.ozon.ru/graphics/img/ -# ||oyye.bhf.su (advblock.txt: 6194) -.oyye.bhf.su*. -# ||oyy.l2anons.ws^ (advblock.txt: 6193) -.oyy.l2anons.ws -# ||overclockers.ru/images/*_brand. (advblock.txt: 6192) -.overclockers.ru/images/.*_brand\. -# ||otido.com.ua/banner_/ (advblock.txt: 6190) -.otido.com.ua/banner_/ -# ||oszone.net/ibm.html (advblock.txt: 6189) -.oszone.net/ibm\.html -# ||osadovod.ru^*/banners/ (advblock.txt: 6187) -.osadovod.ru/.*/banners/ -# ||orsk.ru/images/bnz/ (advblock.txt: 6186) -.orsk.ru/images/bnz/ -# ||oper.ru/data/images/ (advblock.txt: 6184) -.oper.ru/data/images/ -# ||opentorrent.ru/images/banner/ (advblock.txt: 6183) -.opentorrent.ru/images/banner/ -# ||opennet.ru^*/hints.cgi? (advblock.txt: 6181) -.opennet.ru/.*/hints\.cgi\? -# ||opennet.ru/adv_ (advblock.txt: 6180) -.opennet.ru/adv_ -# ||onlinefilmx.org/br_mc/ (advblock.txt: 6178) -.onlinefilmx.org/br_mc/ -# ||onlinedisk.ru/bban/banner/ (advblock.txt: 6177) -.onlinedisk.ru/bban/banner/ -# ||online.ua/teletrade (advblock.txt: 6176) -.online.ua/teletrade -# ||online.ua/onlineua%20240_30.gif (advblock.txt: 6175) -.online.ua/onlineua%20240_30\.gif -# ||online.multilex.ru^*banner (advblock.txt: 6173) -.online.multilex.ru/.*banner -# ||onlainfilm.ucoz.ua/swf/ (advblock.txt: 6172) -.onlainfilm.ucoz.ua/swf/ -# ||ongab.ru^*/img/ban/ (advblock.txt: 6171) -.ongab.ru/.*/img/ban/ -# ||onedivision.ru/images/branding. (advblock.txt: 6170) -.onedivision.ru/images/branding\. -# ||onboardvideo.com.ua/images/adban/ (advblock.txt: 6169) -.onboardvideo.com.ua/images/adban/ -# ||omskinform.ru/keys/ (advblock.txt: 6167) -.omskinform.ru/keys/ -# ||ololo.fm/banners/ (advblock.txt: 6166) -.ololo.fm/banners/ -# ||olegon.ru/r/ (advblock.txt: 6165) -.olegon.ru/r/ -# ||old-games.ru/img/b/ (advblock.txt: 6163) -.old-games.ru/img/b/ -# ||odessa-daily.com.ua/images/stories/banners/ (advblock.txt: 6162) -.odessa-daily.com.ua/images/stories/banners/ -# ||oclab.ru/flash/ (advblock.txt: 6161) -.oclab.ru/flash/ -# ||obnimau.ru/img-ba/ (advblock.txt: 6160) -.obnimau.ru/img-ba/ -# ||nya.sh/imgs/a/ (advblock.txt: 6158) -.nya.sh/imgs/a/ -# ||nv.ua/pub/banners/ (advblock.txt: 6157) -.nv.ua/pub/banners/ -# ||nude-moon.com/includes/2un.js (advblock.txt: 6156) -.nude-moon.com/includes/2un\.js -# ||nude-moon.com/cdn-cgi/pe/bag2?r[]=http (advblock.txt: 6155) -.nude-moon.com/cdn-cgi/pe/bag2\?r\[\]=http -# ||nr2.ru/pict/banners/ (advblock.txt: 6154) -.nr2.ru/pict/banners/ -# ||nowfilms.ru^*/kazino/ (advblock.txt: 6153) -.nowfilms.ru/.*/kazino/ -# ||nowa.cc/download/ (advblock.txt: 6152) -.nowa.cc/download/ -# ||now.ru^*/promo/ (advblock.txt: 6151) -.now.ru/.*/promo/ -# ||now.ru/branding/ (advblock.txt: 6150) -.now.ru/branding/ -# ||novostiua.net/mang*.swf (advblock.txt: 6149) -.novostiua.net/mang.*\.swf -# ||novosti.dn.ua/ad/ (advblock.txt: 6147) -.novosti.dn.ua/ad/ -# ||novorus.info/banner/ (advblock.txt: 6146) -.novorus.info/banner/ -# ||novayagazeta.ru/storage/banner (advblock.txt: 6145) -.novayagazeta.ru/storage/banner -# ||notebook-center.ru/market/ (advblock.txt: 6143) -.notebook-center.ru/market/ -# ||nord-news.ru/img/all/ (advblock.txt: 6142) -.nord-news.ru/img/all/ -# ||noob-club.ru/js/ (advblock.txt: 6140) -.noob-club.ru/js/ -# ||nntt.org/a/files/ (advblock.txt: 6138) -.nntt.org/a/files/ -# ||nnportal.org/portal/core/i/ (advblock.txt: 6137) -.nnportal.org/portal/core/i/ -# ||nnover.ru/hints/show/ (advblock.txt: 6135) -.nnover.ru/hints/show/ -# ||nnm.me/i/a/ (advblock.txt: 6134) -.nnm.me/i/a/ -# ||nn.by/photos/banners/ (advblock.txt: 6133) -.nn.by/photos/banners/ -# ||nirvana.fm/pic/kartinki/ (advblock.txt: 6130) -.nirvana.fm/pic/kartinki/ -# ||nirvana.fm/banners/ (advblock.txt: 6129) -.nirvana.fm/banners/ -# ||newsland.com/public/img/branding/ (advblock.txt: 6127) -.newsland.com/public/img/branding/ -# ||newsland.*/public/img/viardo. (advblock.txt: 6126) -.newsland.*./(.*/)?public/img/viardo\. -# ||newslab.ru/b/ (advblock.txt: 6125) -.newslab.ru/b/ -# ||newserials.net/ranetka.js (advblock.txt: 6124) -.newserials.net/ranetka\.js -# ||new-kino.net/ReklDC/ (advblock.txt: 6122) -.new-kino.net/ReklDC/ -# ||nesekretno.ru/images/uploaded/banner/ (advblock.txt: 6121) -.nesekretno.ru/images/uploaded/banner/ -# ||neosmi.ru/js/*_klik. (advblock.txt: 6120) -.neosmi.ru/js/.*_klik\. -# ||nemezisworld.com^*.php| (advblock.txt: 6119) -.nemezisworld.com/.*\.php$ -# ||nashgorod.ru/b/ (advblock.txt: 6117) -.nashgorod.ru/b/ -# ||narutoplanet.ru/swf/ (advblock.txt: 6116) -.narutoplanet.ru/swf/ -# ||narutoplanet.ru/slider/ (advblock.txt: 6115) -.narutoplanet.ru/slider/ -# ||narodclub.net/clk111.js (advblock.txt: 6114) -.narodclub.net/clk111\.js -# ||nadavi.*/gb.php?idb_= (advblock.txt: 6113) -.nadavi.*./(.*/)?gb\.php\?idb_= -# ||mywed.ru/bnr/ (advblock.txt: 6112) -.mywed.ru/bnr/ -# ||myvi.ru/content/images/background/ (advblock.txt: 6111) -.myvi.ru/content/images/background/ -# ||mysw.info/ext/ (advblock.txt: 6110) -.mysw.info/ext/ -# ||myshared.ru/advaction/ (advblock.txt: 6109) -.myshared.ru/advaction/ -# ||myserial.org/a-detector/ (advblock.txt: 6108) -.myserial.org/a-detector/ -# ||my-hit.org/background/ (advblock.txt: 6107) -.my-hit.org/background/ -# ||my-cinema.net/branding/ (advblock.txt: 6106) -.my-cinema.net/branding/ -# ||muzofon.com/bg/ (advblock.txt: 6105) -.muzofon.com/bg/ -# ||muzofon.com/banner/ (advblock.txt: 6104) -.muzofon.com/banner/ -# ||muzoff.ru/rek/ (advblock.txt: 6103) -.muzoff.ru/rek/ -# ||muzoff.ru/html/ (advblock.txt: 6102) -.muzoff.ru/html/ -# ||muzico.ru//banners/ (advblock.txt: 6101) -# ||muzebra.com^*-240x400. (advblock.txt: 6100) -.muzebra.com/.*-240x400\. -# ||musictube.ru/flash/ (advblock.txt: 6099) -.musictube.ru/flash/ -# ||musicforums.ru/pictures/casio_ (advblock.txt: 6098) -.musicforums.ru/pictures/casio_ -# ||musicforums.ru/*/knopki/ (advblock.txt: 6097) -.musicforums.ru/.*/knopki/ -# ||multikonline.ru/rekl.js (advblock.txt: 6095) -.multikonline.ru/rekl\.js -# ||multik-online.net/trotator/ (advblock.txt: 6094) -.multik-online.net/trotator/ -# ||mskd.ru/img/*x*_ (advblock.txt: 6093) -.mskd.ru/img/.*x.*_ -# ||mptron.com/img/ (advblock.txt: 6092) -.mptron.com/img/ -# ||mp3rington.ru/adv_ (advblock.txt: 6091) -.mp3rington.ru/adv_ -# ||motonews.ru/ad/ (advblock.txt: 6087) -.motonews.ru/ad/ -# ||moto.kiev.ua/forum/banners/ (advblock.txt: 6086) -.moto.kiev.ua/forum/banners/ -# ||moskva.fm^*/promo/ (advblock.txt: 6084) -.moskva.fm/.*/promo/ -# ||moresofta.com/js/0dd270.js (advblock.txt: 6083) -.moresofta.com/js/0dd270\.js -# ||mondeoeffect.rambler.ru^ (advblock.txt: 6081) -.mondeoeffect.rambler.ru -# ||molodejj.tv/other/ (advblock.txt: 6079) -.molodejj.tv/other/ -# ||moevideo.net/img/promo/ (advblock.txt: 6078) -.moevideo.net/img/promo/ -# ||moevideo.net/getit/ (advblock.txt: 6077) -.moevideo.net/getit/ -# ||moevideo.net/branding/ (advblock.txt: 6075) -.moevideo.net/branding/ -# ||moevideo.net/apv/ (advblock.txt: 6074) -.moevideo.net/apv/ -# ||mobiledevice.ru/banner_ (advblock.txt: 6073) -.mobiledevice.ru/banner_ -# ||mobile-review.com/events/*/ad/ (advblock.txt: 6072) -.mobile-review.com/events/.*/ad/ -# ||mobile-files.ru/r/ (advblock.txt: 6070) -.mobile-files.ru/r/ -# ||mobbit.info/r/ (advblock.txt: 6069) -.mobbit.info/r/ -# ||mob39.ru/jabox_img/banner/ (advblock.txt: 6068) -.mob39.ru/jabox_img/banner/ -# ||mmotop.ru^*.js?rnd= (advblock.txt: 6067) -.mmotop.ru/.*\.js\?rnd= -# ||mmoru.com/board/clientscript/css1.js (advblock.txt: 6066) -.mmoru.com/board/clientscript/css1\.js -# ||mmoru.com/ads/ (advblock.txt: 6065) -.mmoru.com/ads/ -# ||mmorpg.ua/images/banners/ (advblock.txt: 6064) -.mmorpg.ua/images/banners/ -# ||mmorpg.ua/images/background. (advblock.txt: 6063) -.mmorpg.ua/images/background\. -# ||mmorpg.su/userdata/background/ (advblock.txt: 6062) -.mmorpg.su/userdata/background/ -# ||mmohelper.ru/wp-content/uploads/adv- (advblock.txt: 6060) -.mmohelper.ru/wp-content/uploads/adv- -# ||mmogamez.ru/safa/ (advblock.txt: 6059) -.mmogamez.ru/safa/ -# ||mmogamez.ru/assets/templates/Standart/images/mmogamez. (advblock.txt: 6058) -.mmogamez.ru/assets/templates/Standart/images/mmogamez\. -# ||mmogamez.ru/asda/ (advblock.txt: 6057) -.mmogamez.ru/asda/ -# ||mmogamez.info^*/pagebgtop. (advblock.txt: 6056) -.mmogamez.info/.*/pagebgtop\. -# ||mlfun.org.ua/mlbanners/ (advblock.txt: 6055) -.mlfun.org.ua/mlbanners/ -# ||mk.ru/i/brand/ (advblock.txt: 6054) -.mk.ru/i/brand/ -# ||minizal.net/js/brandminizal.js (advblock.txt: 6053) -.minizal.net/js/brandminizal\.js -# ||mibius.com.ua/banner (advblock.txt: 6052) -.mibius.com.ua/banner -# ||meteoprog.ua/pictures/banners/ (advblock.txt: 6051) -.meteoprog.ua/pictures/banners/ -# ||meteo.ua/var/slando/ (advblock.txt: 6050) -.meteo.ua/var/slando/ -# ||meteo.ua/var/aukro/ (advblock.txt: 6049) -.meteo.ua/var/aukro/ -# ||metallurg-nk.ru/img/banners/ (advblock.txt: 6047) -.metallurg-nk.ru/img/banners/ -# ||meta.ua/img/banners/ (advblock.txt: 6046) -.meta.ua/img/banners/ -# ||meta.ua/img/b/ (advblock.txt: 6045) -.meta.ua/img/b/ -# ||meta.ua/f_new.asp? (advblock.txt: 6044) -.meta.ua/f_new\.asp\? -# ||meta.ua/f_new.*_teaser& (advblock.txt: 6043) -.meta.ua/f_new\..*_teaser& -# ||mercatos.net/banner/ (advblock.txt: 6042) -.mercatos.net/banner/ -# ||melt.ru/images/cms/_*0*_/ (advblock.txt: 6041) -.melt.ru/images/cms/_.*0.*_/ -# ||megashara.com^*_branding/ (advblock.txt: 6038) -.megashara.com/.*_branding/ -# ||megashara.com^*/branding/ (advblock.txt: 6037) -.megashara.com/.*/branding/ -# ||megashara.com^*/br_mc/ (advblock.txt: 6036) -.megashara.com/.*/br_mc/ -# ||megaimg.ru/clixundex.js (advblock.txt: 6035) -.megaimg.ru/clixundex\.js -# ||megafon.ru/f/banner/ (advblock.txt: 6034) -.megafon.ru/f/banner/ -# ||mega-tracker.net/templates/megatracker/bg/ (advblock.txt: 6033) -.mega-tracker.net/templates/megatracker/bg/ -# ||mega-porno.ru/images/promo/ (advblock.txt: 6032) -.mega-porno.ru/images/promo/ -# ||mega-pics-money.ru/Megapicsmoneyclick.js (advblock.txt: 6031) -.mega-pics-money.ru/Megapicsmoneyclick\.js -# ||medvestnik.by/bimages/ (advblock.txt: 6030) -.medvestnik.by/bimages/ -# ||medprom.ru/pictures/*/bpic. (advblock.txt: 6029) -.medprom.ru/pictures/.*/bpic\. -# ||medkrug.ru/web/flash/reg. (advblock.txt: 6027) -.medkrug.ru/web/flash/reg\. -# ||medikforum.ru/news/banners/ (advblock.txt: 6026) -.medikforum.ru/news/banners/ -# ||mediaua.com.ua/bnr/ (advblock.txt: 6025) -.mediaua.com.ua/bnr/ -# ||mebelminsk.by/assets/images/swf/ (advblock.txt: 6024) -.mebelminsk.by/assets/images/swf/ -# ||mebelminsk.by/assets/images/adw/ (advblock.txt: 6023) -.mebelminsk.by/assets/images/adw/ -# ||maxpark.com/static/img/branding/ (advblock.txt: 6022) -.maxpark.com/static/img/branding/ -# ||maxk2.ru/lady (advblock.txt: 6021) -.maxk2.ru/lady -# ||maultalk.com/images/mon/ (advblock.txt: 6020) -.maultalk.com/images/mon/ -# ||master.cn.ua/_images/banners/ (advblock.txt: 6019) -.master.cn.ua/_images/banners/ -# ||map.cn.ua/media/promo/ (advblock.txt: 6018) -.map.cn.ua/media/promo/ -# ||map.cn.ua/media/other/ (advblock.txt: 6017) -.map.cn.ua/media/other/ -# ||manyclips.net^*.php?id= (advblock.txt: 6016) -.manyclips.net/.*\.php\?id= -# ||mama.kharkov.ua/uploads/*banner (advblock.txt: 6015) -.mama.kharkov.ua/uploads/.*banner -# ||magcity74.ru/uploads/banner/ (advblock.txt: 6014) -.magcity74.ru/uploads/banner/ -# ||mac-torrent-download.net/adc- (advblock.txt: 6013) -.mac-torrent-download.net/adc- -# ||luxtorrents.com/pic/branding- (advblock.txt: 6012) -.luxtorrents.com/pic/branding- -# ||lovekinozal.ru/brand/ (advblock.txt: 6007) -.lovekinozal.ru/brand/ -# ||lokomotiv.info/img/rotator/ (advblock.txt: 6006) -.lokomotiv.info/img/rotator/ -# ||logger.ivi.ru^ (advblock.txt: 6005) -.logger.ivi.ru -# ||logan.ru/images/banner/ (advblock.txt: 6004) -.logan.ru/images/banner/ -# ||lkforum.ru/button/ (advblock.txt: 6003) -.lkforum.ru/button/ -# ||livesport.ws/templates/livesport/*livesport (advblock.txt: 6002) -.livesport.ws/templates/livesport/.*livesport -# ||livelib.ru/side| (advblock.txt: 6001) -.livelib.ru/side$ -# ||livelib.ru/img/skins/ozon/ (advblock.txt: 6000) -.livelib.ru/img/skins/ozon/ -# ||livelib.ru/240x400. (advblock.txt: 5999) -.livelib.ru/240x400\. -# ||livejournal.ru/i/reskining/ (advblock.txt: 5997) -.livejournal.ru/i/reskining/ -# ||livejournal.com/services/scrollbanner.bml? (advblock.txt: 5996) -.livejournal.com/services/scrollbanner\.bml\? -# ||livejournal.com/img/reskining/ (advblock.txt: 5995) -.livejournal.com/img/reskining/ -# ||liveinternet.ru/ad/ (advblock.txt: 5994) -.liveinternet.ru/ad/ -# ||liveangarsk.ru/files/k (advblock.txt: 5992) -.liveangarsk.ru/files/k -# ||live4.ru/banner_images/ (advblock.txt: 5990) -.live4.ru/banner_images/ -# ||link.ac/images/banner_ (advblock.txt: 5989) -.link.ac/images/banner_ -# ||lifehacker.ru/promo/ (advblock.txt: 5988) -.lifehacker.ru/promo/ -# ||lib.rus.ec/ads/ (advblock.txt: 5986) -.lib.rus.ec/ads/ -# ||leporno.org/ttnet/ (advblock.txt: 5985) -.leporno.org/ttnet/ -# ||leporno.org/rt (advblock.txt: 5984) -.leporno.org/rt -# ||leporno.org/js/ (advblock.txt: 5983) -.leporno.org/js/ -# ||lectro.ru^*-pop-under- (advblock.txt: 5982) -.lectro.ru/.*-pop-under- -# ||lastusja.ru/friends/ (advblock.txt: 5981) -.lastusja.ru/friends/ -# ||lanzone.info/rek/ (advblock.txt: 5980) -.lanzone.info/rek/ -# ||ladyline.com.ua/images/banner (advblock.txt: 5979) -.ladyline.com.ua/images/banner -# ||lada-granta.net/button/ (advblock.txt: 5978) -.lada-granta.net/button/ -# ||lacucinaitaliana.ru/images/ (advblock.txt: 5977) -.lacucinaitaliana.ru/images/ -# ||l2on.net/img/friends/ (advblock.txt: 5976) -.l2on.net/img/friends/ -# ||kurufin.ru/mayk_ (advblock.txt: 5975) -.kurufin.ru/mayk_ -# ||kurs.com.ua/static/banner/ (advblock.txt: 5974) -.kurs.com.ua/static/banner/ -# ||kulina.ru/swf/ (advblock.txt: 5973) -.kulina.ru/swf/ -# ||kulina.ru/bn/ (advblock.txt: 5972) -.kulina.ru/bn/ -# ||kulichki.net/buttons/ (advblock.txt: 5971) -.kulichki.net/buttons/ -# ||kukuzya.ru/bnrs/ (advblock.txt: 5970) -.kukuzya.ru/bnrs/ -# ||kubez.biz/banners/ (advblock.txt: 5969) -.kubez.biz/banners/ -# ||kset.kz/vda (advblock.txt: 5968) -.kset.kz/vda -# ||kronverkcinema.ru/sadm_files/banners/ (advblock.txt: 5967) -.kronverkcinema.ru/sadm_files/banners/ -# ||krisha.kz^*/br/ (advblock.txt: 5966) -.krisha.kz/.*/br/ -# ||krasview.ru/content/stargate/ (advblock.txt: 5965) -.krasview.ru/content/stargate/ -# ||kpcdn.net^*/banner_img/ (advblock.txt: 5964) -.kpcdn.net/.*/banner_img/ -# ||kozhuhovo.com/!images/banners/ (advblock.txt: 5963) -.kozhuhovo.com/!images/banners/ -# ||koob.ru/cache/ (advblock.txt: 5962) -.koob.ru/cache/ -# ||koob.ru/*_reklama. (advblock.txt: 5961) -.koob.ru/.*_reklama\. -# ||komcity.ru^*.swf (advblock.txt: 5959) -.komcity.ru/.*\.swf -# ||komcity.ru/adver/ (advblock.txt: 5958) -.komcity.ru/adver/ -# ||kolyan.net/*_brand (advblock.txt: 5957) -.kolyan.net/.*_brand -# ||klukva.org/bann/ (advblock.txt: 5956) -.klukva.org/bann/ -# ||klops.ru/assets/sales_widget- (advblock.txt: 5955) -.klops.ru/assets/sales_widget- -# ||klerk.ru^*/banners/ (advblock.txt: 5954) -.klerk.ru/.*/banners/ -# ||kiwi.kz/bimbo/? (advblock.txt: 5953) -.kiwi.kz/bimbo/\? -# ||kiwi.kz/base/a.js? (advblock.txt: 5952) -.kiwi.kz/base/a\.js\? -# ||kipfilms.ru/blocks/ (advblock.txt: 5951) -.kipfilms.ru/blocks/ -# ||kinoylei.ru/br/ (advblock.txt: 5950) -.kinoylei.ru/br/ -# ||kinotochka.net^*/images/fon.jpg (advblock.txt: 5949) -.kinotochka.net/.*/images/fon\.jpg -# ||kinotochka.net/CM (advblock.txt: 5948) -.kinotochka.net/CM -# ||kinopod.ru/show/ (advblock.txt: 5947) -.kinopod.ru/show/ -# ||kinopod.ru/branding/ (advblock.txt: 5946) -.kinopod.ru/branding/ -# ||kinonews.ru/stuff/ (advblock.txt: 5945) -.kinonews.ru/stuff/ -# ||kinomir.net/file.js (advblock.txt: 5943) -.kinomir.net/file\.js -# ||kinomir.net/counter3.js (advblock.txt: 5942) -.kinomir.net/counter3\.js -# ||kinomania.kz/images/bg1.jpg (advblock.txt: 5940) -.kinomania.kz/images/bg1\.jpg -# ||kinogo.net^*/ram/ (advblock.txt: 5939) -.kinogo.net/.*/ram/ -# ||kinogo.net/playlists/ (advblock.txt: 5938) -.kinogo.net/playlists/ -# ||kinogo.net/br/ (advblock.txt: 5937) -.kinogo.net/br/ -# ||kinogo.net/bn.php? (advblock.txt: 5936) -.kinogo.net/bn\.php\? -# ||kinobaza.net/babes/ (advblock.txt: 5935) -.kinobaza.net/babes/ -# ||kinoafisha.ua/upload/*/bgadvs/ (advblock.txt: 5934) -.kinoafisha.ua/upload/.*/bgadvs/ -# ||kinoafisha.info/branding/ (advblock.txt: 5933) -.kinoafisha.info/branding/ -# ||kino-teatr.ru/media/ (advblock.txt: 5932) -.kino-teatr.ru/media/ -# ||kino-teatr.ru/img/*_bkg_ (advblock.txt: 5931) -.kino-teatr.ru/img/.*_bkg_ -# ||kino-portal.net/go/ (advblock.txt: 5930) -.kino-portal.net/go/ -# ||kino-live.org^*/images/1920x (advblock.txt: 5929) -.kino-live.org/.*/images/1920x -# ||kino-govno.com^*/bg.jpg| (advblock.txt: 5928) -.kino-govno.com/.*/bg\.jpg$ -# ||kino-govno.com/sides/ (advblock.txt: 5927) -.kino-govno.com/sides/ -# ||kino-cccp.net/images/banner/ (advblock.txt: 5925) -.kino-cccp.net/images/banner/ -# ||kinatvideo.ru^*/default_images/ (advblock.txt: 5924) -.kinatvideo.ru/.*/default_images/ -# ||kinatvideo.ru^*/cityads/ (advblock.txt: 5923) -.kinatvideo.ru/.*/cityads/ -# ||kinatgames.ru/templates/*/cod.jpg (advblock.txt: 5922) -.kinatgames.ru/templates/.*/cod\.jpg -# ||kinatgames.ru/images/flash/ (advblock.txt: 5921) -.kinatgames.ru/images/flash/ -# ||killfilms.ru^*/girls/ (advblock.txt: 5920) -.killfilms.ru/.*/girls/ -# ||kiev-mama.com.ua/assets/banners/ (advblock.txt: 5919) -.kiev-mama.com.ua/assets/banners/ -# ||kg-portal.ru/sides/ (advblock.txt: 5918) -.kg-portal.ru/sides/ -# ||keep4u.ru/r.php? (advblock.txt: 5917) -.keep4u.ru/r\.php\? -# ||keep4u.ru/partners/ (advblock.txt: 5916) -.keep4u.ru/partners/ -# ||kazanfirst.ru/storage/banners/ (advblock.txt: 5915) -.kazanfirst.ru/storage/banners/ -# ||katushka.net/img/banners/ (advblock.txt: 5914) -.katushka.net/img/banners/ -# ||kartinka.in/img/handler.js (advblock.txt: 5913) -.kartinka.in/img/handler\.js -# ||kapriz.info/tiz/ (advblock.txt: 5912) -.kapriz.info/tiz/ -# ||kapriz.info/img/ (advblock.txt: 5911) -.kapriz.info/img/ -# ||kapital-rus.ru/img/*/banners/ (advblock.txt: 5910) -.kapital-rus.ru/img/.*/banners/ -# ||kanobu.ru/advideos/ (advblock.txt: 5909) -.kanobu.ru/advideos/ -# ||kaddr.com^*/Stylus.png (advblock.txt: 5908) -.kaddr.com/.*/Stylus\.png -# ||kaban.tv/kabantv.js (advblock.txt: 5907) -.kaban.tv/kabantv\.js -# ||k.img.com.ua/static/js/fotos_banner.js (advblock.txt: 5906) -.k.img.com.ua/static/js/fotos_banner\.js -# ||k.img.com.ua/static/img/banners/ (advblock.txt: 5905) -.k.img.com.ua/static/img/banners/ -# ||jurnalik.ru/slider.php (advblock.txt: 5904) -.jurnalik.ru/slider\.php -# ||jaymedianetwork.com/get.php?id= (advblock.txt: 5903) -.jaymedianetwork.com/get\.php\?id= -# ||ixbt.com/include/ctx2.js (advblock.txt: 5902) -.ixbt.com/include/ctx2\.js -# ||ixbt.com/img/branding/ (advblock.txt: 5901) -.ixbt.com/img/branding/ -# ||ixbt.com/cgi-bin/r. (advblock.txt: 5900) -.ixbt.com/cgi-bin/r\. -# ||ixbt.com/branding/ (advblock.txt: 5899) -.ixbt.com/branding/ -# ||ixbt.com/banner/ (advblock.txt: 5898) -.ixbt.com/banner/ -# ||ivi.ru/branding/ (advblock.txt: 5897) -.ivi.ru/branding/ -# ||itvcom.ru/images/*sape (advblock.txt: 5896) -.itvcom.ru/images/.*sape -# ||irr.by^*/showcase. (advblock.txt: 5895) -.irr.by/.*/showcase\. -# ||irk.ru/img/*/ibr/ (advblock.txt: 5894) -.irk.ru/img/.*/ibr/ -# ||ipm.ua/bn/g/? (advblock.txt: 5893) -.ipm.ua/bn/g/\? -# ||ipicture.ru/public/images/temp/ (advblock.txt: 5892) -.ipicture.ru/public/images/temp/ -# ||invictory.org/public/banners/ (advblock.txt: 5891) -.invictory.org/public/banners/ -# ||internetsms.org/bundles/ismsfront/img/tks/ (advblock.txt: 5890) -.internetsms.org/bundles/ismsfront/img/tks/ -# ||internethalyava.ru^*/area_banners/ (advblock.txt: 5889) -.internethalyava.ru/.*/area_banners/ -# ||interfax.ru/rcl/ (advblock.txt: 5888) -.interfax.ru/rcl/ -# ||insite.su/engine/classes/masha/ (advblock.txt: 5885) -.insite.su/engine/classes/masha/ -# ||insite.su/engine/classes/js/nxtdqdgn.js (advblock.txt: 5884) -.insite.su/engine/classes/js/nxtdqdgn\.js -# ||ingos.ru/common/img_ru/banners/ (advblock.txt: 5882) -.ingos.ru/common/img_ru/banners/ -# ||inform.kz/download/ (advblock.txt: 5881) -.inform.kz/download/ -# ||infocar.ua/icstat/branding/ (advblock.txt: 5880) -.infocar.ua/icstat/branding/ -# ||inflora.ru/*banner (advblock.txt: 5878) -.inflora.ru/.*banner -# ||imoneyforum.ru/files/00 (advblock.txt: 5877) -.imoneyforum.ru/files/00 -# ||imhonet.ru/img/dumm/*-promo. (advblock.txt: 5876) -.imhonet.ru/img/dumm/.*-promo\. -# ||imgv.net^*.php?s= (advblock.txt: 5875) -.imgv.net/.*\.php\?s= -# ||imgix.ru/*.js| (advblock.txt: 5874) -.imgix.ru/.*\.js$ -# ||img.bankoboev.ru^ (advblock.txt: 5873) -.img.bankoboev.ru -# ||imageban.ru/cas.js (advblock.txt: 5872) -.imageban.ru/cas\.js -# ||imageban.ru/box/ (advblock.txt: 5871) -.imageban.ru/box/ -# ||im.tagilcity.ru^*?mt= (advblock.txt: 5870) -.im.tagilcity.ru/.*\?mt= -# ||ikinokz.net/ikino.js (advblock.txt: 5869) -.ikinokz.net/ikino\.js -# ||ikinokz.net/bannr.js (advblock.txt: 5868) -.ikinokz.net/bannr\.js -# ||ihead.ru/offers/ (advblock.txt: 5867) -.ihead.ru/offers/ -# ||igry.ru/media/tiz/ (advblock.txt: 5866) -.igry.ru/media/tiz/ -# ||igromania.ru^*_branding_ (advblock.txt: 5865) -.igromania.ru/.*_branding_ -# ||igromania.ru/bitrix/templates/igromania/brands.php (advblock.txt: 5863) -.igromania.ru/bitrix/templates/igromania/brands\.php -# ||igromania.ru/*/banners/ (advblock.txt: 5862) -.igromania.ru/.*/banners/ -# ||idownloads.ru^*/banners/ (advblock.txt: 5861) -.idownloads.ru/.*/banners/ -# ||iccup.com/templates/images/*-iccup.jpg (advblock.txt: 5860) -.iccup.com/templates/images/.*-iccup\.jpg -# ||iccup.com/a/b/ (advblock.txt: 5859) -.iccup.com/a/b/ -# ||ibusiness.ru^*/netlab/style.css? (advblock.txt: 5858) -.ibusiness.ru/.*/netlab/style\.css\? -# ||i.ua^*_brandpage_ (advblock.txt: 5856) -.i.ua/.*_brandpage_ -# ||i-pic.ru/clx_ (advblock.txt: 5855) -.i-pic.ru/clx_ -# ||hyundai-club.com.ua/banner_ (advblock.txt: 5854) -.hyundai-club.com.ua/banner_ -# ||hwp.ru/images/mid/h-anons. (advblock.txt: 5853) -.hwp.ru/images/mid/h-anons\. -# ||hw-lab.com/uploads/adds/ (advblock.txt: 5852) -.hw-lab.com/uploads/adds/ -# ||hqroom.ru/images/ (advblock.txt: 5849) -.hqroom.ru/images/ -# ||hpc.name/images/banner/ (advblock.txt: 5848) -.hpc.name/images/banner/ -# ||how-tos.ru/images/banner (advblock.txt: 5847) -.how-tos.ru/images/banner -# ||hotcharts.ru/img/*_700x150 (advblock.txt: 5845) -.hotcharts.ru/img/.*_700x150 -# ||hostingkartinok.com/images/*_960x100.gif (advblock.txt: 5843) -.hostingkartinok.com/images/.*_960x100\.gif -# ||host.fm/images/pr/ (advblock.txt: 5842) -.host.fm/images/pr/ -# ||horadric.ru^*/images/bg_ (advblock.txt: 5841) -.horadric.ru/.*/images/bg_ -# ||horadric.ru^*-adv-bg- (advblock.txt: 5840) -.horadric.ru/.*-adv-bg- -# ||horadric.ru/styles/*/brand_ (advblock.txt: 5839) -.horadric.ru/styles/.*/brand_ -# ||hm6.ru/banner (advblock.txt: 5838) -.hm6.ru/banner -# ||hideme.ru/images/prx/prx_bnr_ (advblock.txt: 5837) -.hideme.ru/images/prx/prx_bnr_ -# ||hi-fidelity-forum.com/_partners/ (advblock.txt: 5836) -.hi-fidelity-forum.com/_partners/ -# ||hi-fi.ru/bitrix/images/ (advblock.txt: 5835) -.hi-fi.ru/bitrix/images/ -# ||hhcdn.ru^*.banners. (advblock.txt: 5834) -.hhcdn.ru/.*\.banners\. -# ||hhcdn.ru/nposter/ (advblock.txt: 5833) -.hhcdn.ru/nposter/ -# ||hentaichan.ru/r/ (advblock.txt: 5832) -.hentaichan.ru/r/ -# ||hentaichan.ru/async.html?sid= (advblock.txt: 5831) -.hentaichan.ru/async\.html\?sid= -# ||hdtrailer.ru/images/bg/ (advblock.txt: 5829) -.hdtrailer.ru/images/bg/ -# ||hdkinomax.com/reklama-offf.jpg (advblock.txt: 5827) -.hdkinomax.com/reklama-offf\.jpg -# ||hdgo.cc/player/adforce. (advblock.txt: 5826) -.hdgo.cc/player/adforce\. -# ||hdfilms.tv/images/bg/ (advblock.txt: 5825) -.hdfilms.tv/images/bg/ -# ||hdclub.org/mg/ (advblock.txt: 5824) -.hdclub.org/mg/ -# ||hctraktor.org/bi.php?url= (advblock.txt: 5823) -.hctraktor.org/bi\.php\?url= -# ||hacker-pro.net/banner/ (advblock.txt: 5821) -.hacker-pro.net/banner/ -# ||habrahabr.ru^*/htmlblock300/ (advblock.txt: 5820) -.habrahabr.ru/.*/htmlblock300/ -# ||habrahabr.ru/hauusbx/al/habrahabr/ (advblock.txt: 5819) -.habrahabr.ru/hauusbx/al/habrahabr/ -# ||gzt.ru/upload/*.rklite/ (advblock.txt: 5818) -.gzt.ru/upload/.*\.rklite/ -# ||guns.ru/i/ (advblock.txt: 5816) -.guns.ru/i/ -# ||guitarplayer.ru/b/ (advblock.txt: 5815) -.guitarplayer.ru/b/ -# ||gubkinskiy.com/images/5 (advblock.txt: 5814) -.gubkinskiy.com/images/5 -# ||gubkinskiy.com/images/1 (advblock.txt: 5813) -.gubkinskiy.com/images/1 -# ||gsmforum.ru/images/ownpictures/ (advblock.txt: 5811) -.gsmforum.ru/images/ownpictures/ -# ||gsmbaza.ru/images/ownpictures/ (advblock.txt: 5810) -.gsmbaza.ru/images/ownpictures/ -# ||gramota.ru/files/ie/ (advblock.txt: 5808) -.gramota.ru/files/ie/ -# ||gotps3.ru/images/a/*.jpg| (advblock.txt: 5806) -.gotps3.ru/images/a/.*\.jpg$ -# ||gotps3.ru/images/a/*.gif| (advblock.txt: 5805) -.gotps3.ru/images/a/.*\.gif$ -# ||gotovim.ru/pics/1/ (advblock.txt: 5804) -.gotovim.ru/pics/1/ -# ||gotovim.ru/incs/ (advblock.txt: 5803) -.gotovim.ru/incs/ -# ||gorodkirov.ru/kaFile?b_id= (advblock.txt: 5802) -.gorodkirov.ru/kaFile\?b_id= -# ||gorod.dp.ua/pic/richban/ (advblock.txt: 5800) -.gorod.dp.ua/pic/richban/ -# ||gorod.dp.ua/pic/bm2/ (advblock.txt: 5799) -.gorod.dp.ua/pic/bm2/ -# ||gorod.cn.ua/*/brending/ (advblock.txt: 5798) -.gorod.cn.ua/.*/brending/ -# ||gorod.cn.ua/*/banners/ (advblock.txt: 5797) -.gorod.cn.ua/.*/banners/ -# ||googleusercontent.com/hk/oobRfTyrFtxXAuFWNle3KfDteO/www.5.ua/files/img/bg/*.jpg. (advblock.txt: 5796) -.googleusercontent.com/hk/oobRfTyrFtxXAuFWNle3KfDteO/www\.5\.ua/files/img/bg/.*\.jpg\. -# ||goodgame.ru^*/www/ (advblock.txt: 5795) -.goodgame.ru/.*/www/ -# ||golosua.com/img/banners/ (advblock.txt: 5792) -.golosua.com/img/banners/ -# ||goldenshara.com/misc/js/golde_link.js (advblock.txt: 5791) -.goldenshara.com/misc/js/golde_link\.js -# ||goldenfront.ru/static/banners/ (advblock.txt: 5790) -.goldenfront.ru/static/banners/ -# ||gofuckbiz.com/superheader (advblock.txt: 5789) -.gofuckbiz.com/superheader -# ||glstar.ru/swf/ (advblock.txt: 5788) -.glstar.ru/swf/ -# ||glavport.net/files/swfs/ (advblock.txt: 5787) -.glavport.net/files/swfs/ -# ||glasscannon.ru/wp-content/*/pic/back_rek_ (advblock.txt: 5786) -.glasscannon.ru/wp-content/.*/pic/back_rek_ -# ||gimp.nas2.net/img/rek/ (advblock.txt: 5785) -.gimp.nas2.net/img/rek/ -# ||gidonlinekino.com/im/branding/ (advblock.txt: 5784) -.gidonlinekino.com/im/branding/ -# ||gidonline.ru/im/branding (advblock.txt: 5783) -.gidonline.ru/im/branding -# ||gidonline.club/im/branding/ (advblock.txt: 5782) -.gidonline.club/im/branding/ -# ||giclub.tv/index.php?action=downloads;sa=downfile&id= (advblock.txt: 5781) -.giclub.tv/index\.php\?action=downloads;sa=downfile&id= -# ||get-tune.net/i/banners/ (advblock.txt: 5779) -.get-tune.net/i/banners/ -# ||germany.ru/discount/pictures/extra (advblock.txt: 5778) -.germany.ru/discount/pictures/extra -# ||germany.ru/albums/*/Banner_ (advblock.txt: 5777) -.germany.ru/albums/.*/Banner_ -# ||gde.ru/img/*320x1 (advblock.txt: 5776) -.gde.ru/img/.*320x1 -# ||gcmsite.ru/img/nostromo-x.jpg (advblock.txt: 5775) -.gcmsite.ru/img/nostromo-x\.jpg -# ||gazeta.ua/css/branding. (advblock.txt: 5774) -.gazeta.ua/css/branding\. -# ||gay.ru/a2/ (advblock.txt: 5773) -.gay.ru/a2/ -# ||garant.ru/images/*/goldfish/ (advblock.txt: 5772) -.garant.ru/images/.*/goldfish/ -# ||gametech.ru/brand/ (advblock.txt: 5771) -.gametech.ru/brand/ -# ||gamestar.ru^*picture/banners/ (advblock.txt: 5770) -.gamestar.ru/.*picture/banners/ -# ||gamestar.ru/p/picture/s.gif (advblock.txt: 5769) -.gamestar.ru/p/picture/s\.gif -# ||games-tv.ru/img/oimgs/ (advblock.txt: 5768) -.games-tv.ru/img/oimgs/ -# ||gamer.ru^*/branding- (advblock.txt: 5765) -.gamer.ru/.*/branding- -# ||gamer.ru/oracle/ (advblock.txt: 5764) -.gamer.ru/oracle/ -# ||gamer.ru/alarmalarm/ (advblock.txt: 5763) -.gamer.ru/alarmalarm/ -# ||gamemag.ru/img/videoigr/ (advblock.txt: 5762) -.gamemag.ru/img/videoigr/ -# ||gamemag.ru/admin/spaweditor/uploads/images/ (advblock.txt: 5760) -.gamemag.ru/admin/spaweditor/uploads/images/ -# ||futurevideo.su/images/brand_ (advblock.txt: 5757) -.futurevideo.su/images/brand_ -# ||fu.gk43.ru/media/ (advblock.txt: 5755) -.fu.gk43.ru/media/ -# ||frostbone.playground.ru^ (advblock.txt: 5753) -.frostbone.playground.ru -# ||freezpic.ru^*/code.js (advblock.txt: 5752) -.freezpic.ru/.*/code\.js -# ||freezpic.ru/tpl/ (advblock.txt: 5751) -.freezpic.ru/tpl/ -# ||freealt.net/daos/ (advblock.txt: 5750) -.freealt.net/daos/ -# ||freakenergy.ru/imgpls/ (advblock.txt: 5749) -.freakenergy.ru/imgpls/ -# ||fotooplata.ru/torrnada. (advblock.txt: 5747) -.fotooplata.ru/torrnada\. -# ||foto-save.ru/file.js (advblock.txt: 5746) -.foto-save.ru/file\.js -# ||forzajuve.ru/978x90. (advblock.txt: 5745) -.forzajuve.ru/978x90\. -# ||forums.warforge.ru/style_images/ad/ (advblock.txt: 5744) -.forums.warforge.ru/style_images/ad/ -# ||forumkiev.com/MEDimg/ (advblock.txt: 5742) -.forumkiev.com/MEDimg/ -# ||forum.watch.ru/af/ (advblock.txt: 5741) -.forum.watch.ru/af/ -# ||forum.sources.ru/asdf/ (advblock.txt: 5740) -.forum.sources.ru/asdf/ -# ||forum.od.ua/forumpic/ (advblock.txt: 5739) -.forum.od.ua/forumpic/ -# ||forum.ixbt.com/js/fotkidepo (advblock.txt: 5737) -.forum.ixbt.com/js/fotkidepo -# ||forum.adult-torrent.com^ (advblock.txt: 5736) -.forum.adult-torrent.com -# ||forum-profit.ru/images/nordfx/ (advblock.txt: 5735) -.forum-profit.ru/images/nordfx/ -# ||forscreen.com/*.php| (advblock.txt: 5733) -.forscreen.com/.*\.php$ -# ||foreign.marketgid.com^ (advblock.txt: 5732) -.foreign.marketgid.com -# ||foreign.dt00.net^ (advblock.txt: 5731) -.foreign.dt00.net -# ||for-foto.ru/*/adv.js| (advblock.txt: 5730) -.for-foto.ru/.*/adv\.js$ -# ||football.ua/i/hihi/ (advblock.txt: 5728) -.football.ua/i/hihi/ -# ||focus.ua/files/branding/ (advblock.txt: 5727) -.focus.ua/files/branding/ -# ||floomby.ru/files/flash/ (advblock.txt: 5726) -.floomby.ru/files/flash/ -# ||flasher.ru/data/images/swf/ (advblock.txt: 5725) -.flasher.ru/data/images/swf/ -# ||flashboot.ru/uploads/bnr/ (advblock.txt: 5724) -.flashboot.ru/uploads/bnr/ -# ||flashboot.ru/plugins/banneroid/ (advblock.txt: 5723) -.flashboot.ru/plugins/banneroid/ -# ||fix-pix.ru/rotator.php (advblock.txt: 5722) -.fix-pix.ru/rotator\.php -# ||fishki.net/maining/ (advblock.txt: 5721) -.fishki.net/maining/ -# ||fishki.net/branding/ (advblock.txt: 5720) -.fishki.net/branding/ -# ||firebit.org/clc.js (advblock.txt: 5718) -.firebit.org/clc\.js -# ||finnews.ru^*&img=banners/ (advblock.txt: 5717) -.finnews.ru/.*&img=banners/ -# ||filmix.net/branding (advblock.txt: 5716) -.filmix.net/branding -# ||filmitorrent.org/brand (advblock.txt: 5715) -.filmitorrent.org/brand -# ||film.ru/i/branding/ (advblock.txt: 5714) -.film.ru/i/branding/ -# ||fileplaneta.com/PlayerAdv/ (advblock.txt: 5713) -.fileplaneta.com/PlayerAdv/ -# ||file-tracker.net/images/banner/ (advblock.txt: 5712) -.file-tracker.net/images/banner/ -# ||file-tracker.net/images/ad1/ (advblock.txt: 5711) -.file-tracker.net/images/ad1/ -# ||fiat-avtocity.ru/swf/ (advblock.txt: 5709) -.fiat-avtocity.ru/swf/ -# ||fenzin.org/images/litres_ (advblock.txt: 5707) -.fenzin.org/images/litres_ -# ||fcpug.ru/upload/medialibrary/ (advblock.txt: 5706) -.fcpug.ru/upload/medialibrary/ -# ||fcenter.ru/images/b1/ (advblock.txt: 5705) -.fcenter.ru/images/b1/ -# ||fc-amkar.org/images/b/ (advblock.txt: 5703) -.fc-amkar.org/images/b/ -# ||fbr.info/fbimage.php? (advblock.txt: 5702) -.fbr.info/fbimage\.php\? -# ||fast-torrent.ru^*branding (advblock.txt: 5700) -.fast-torrent.ru/.*branding -# ||fast-torrent.ru/media/*banner (advblock.txt: 5699) -.fast-torrent.ru/media/.*banner -# ||fans-fcsm.ru/block.js (advblock.txt: 5697) -.fans-fcsm.ru/block\.js -# ||fakir.noob-club.ru^ (advblock.txt: 5696) -.fakir.noob-club.ru -# ||factroom.ru/brands/ (advblock.txt: 5695) -.factroom.ru/brands/ -# ||f.mega-porno.tv^ (advblock.txt: 5694) -.f.mega-porno.tv -# ||exploit.in/materials_/ (advblock.txt: 5693) -.exploit.in/materials_/ -# ||exoticvideo.net^*/promo. (advblock.txt: 5692) -.exoticvideo.net/.*/promo\. -# ||exoticvideo.net/js/8e254b.js (advblock.txt: 5691) -.exoticvideo.net/js/8e254b\.js -# ||ex.ua/ad_*.html^ (advblock.txt: 5690) -.ex.ua/ad_.*\.html[^\w%.-] -# ||ex.ua/*/index.css (advblock.txt: 5689) -.ex.ua/.*/index\.css -# ||etc-com.ru/bitrix/*/includes/ (advblock.txt: 5688) -.etc-com.ru/bitrix/.*/includes/ -# ||eroox.ru/blocks/ (advblock.txt: 5687) -.eroox.ru/blocks/ -# ||epidemz.net/bank/ (advblock.txt: 5686) -.epidemz.net/bank/ -# ||emuplanet.ru/images/bb/ (advblock.txt: 5685) -.emuplanet.ru/images/bb/ -# ||electrodance.org/slider/ (advblock.txt: 5684) -.electrodance.org/slider/ -# ||elec.ru/clients/ (advblock.txt: 5683) -.elec.ru/clients/ -# ||elec.ru/bs/ (advblock.txt: 5682) -.elec.ru/bs/ -# ||ekamedicina.ru/files/ (advblock.txt: 5681) -.ekamedicina.ru/files/ -# ||egida.by/js/site_news_target.js (advblock.txt: 5679) -.egida.by/js/site_news_target\.js -# ||edinstvennaya.ua/pictures/brandings/ (advblock.txt: 5677) -.edinstvennaya.ua/pictures/brandings/ -# ||echo.msk.ru/att/element-*-misc-*.gif (advblock.txt: 5676) -.echo.msk.ru/att/element-.*-misc-.*\.gif -# ||easycom.com.ua/adbn/ (advblock.txt: 5675) -.easycom.com.ua/adbn/ -# ||e-flash.com.ua/templates/historylost/images/demo/ (advblock.txt: 5674) -.e-flash.com.ua/templates/historylost/images/demo/ -# ||dverizamki.org/pictures/ (advblock.txt: 5672) -.dverizamki.org/pictures/ -# ||dverizamki.org/bs/ (advblock.txt: 5671) -.dverizamki.org/bs/ -# ||dumskaya.net/banner/ (advblock.txt: 5670) -.dumskaya.net/banner/ -# ||dump.ru/player_vip_closeAdvert (advblock.txt: 5669) -.dump.ru/player_vip_closeAdvert -# ||dumkare.ru/bnr18/ (advblock.txt: 5667) -.dumkare.ru/bnr18/ -# ||dublikat.net/banner/ (advblock.txt: 5666) -.dublikat.net/banner/ -# ||dt00.net/gjs/ (advblock.txt: 5665) -.dt00.net/gjs/ -# ||drumandbass.ru/img*banner (advblock.txt: 5664) -.drumandbass.ru/img.*banner -# ||drochunov.net/pic/flash/ (advblock.txt: 5663) -.drochunov.net/pic/flash/ -# ||drochunov.net/pic/bd/ (advblock.txt: 5662) -.drochunov.net/pic/bd/ -# ||drive.ru/images/promo/ (advblock.txt: 5661) -.drive.ru/images/promo/ -# ||dprealty.ru/iframe/property4scroll/ (advblock.txt: 5660) -.dprealty.ru/iframe/property4scroll/ -# ||dota2.ru/img/brand- (advblock.txt: 5657) -.dota2.ru/img/brand- -# ||dontr.ru/upload/Banner/ (advblock.txt: 5656) -.dontr.ru/upload/Banner/ -# ||dofiga.net^*/trade (advblock.txt: 5655) -.dofiga.net/.*/trade -# ||dleshka.org/go/ (advblock.txt: 5654) -.dleshka.org/go/ -# ||djrogoff.ru/img/r_ (advblock.txt: 5653) -.djrogoff.ru/img/r_ -# ||dixinews.ru/up/banner/ (advblock.txt: 5652) -.dixinews.ru/up/banner/ -# ||divan-tut.ru/promo (advblock.txt: 5651) -.divan-tut.ru/promo -# ||dirty.ru/i/nevoobrazimo/banner_ (advblock.txt: 5650) -.dirty.ru/i/nevoobrazimo/banner_ -# ||did5.ru/images/banner (advblock.txt: 5649) -.did5.ru/images/banner -# ||diary.ru^*/diaryDefault728x90. (advblock.txt: 5648) -.diary.ru/.*/diaryDefault728x90\. -# ||depositfiles.com/images/zillya/ (advblock.txt: 5645) -.depositfiles.com/images/zillya/ -# ||demotivation.me/banners/ (advblock.txt: 5643) -.demotivation.me/banners/ -# ||delphisources.ru/pages/scripts/recl_ (advblock.txt: 5641) -.delphisources.ru/pages/scripts/recl_ -# ||delphi.lv/wd/*.180x400. (advblock.txt: 5640) -.delphi.lv/wd/.*\.180x400\. -# ||delphi.lv/t/t.js (advblock.txt: 5639) -.delphi.lv/t/t\.js -# ||delo.ua^*/branding/ (advblock.txt: 5637) -.delo.ua/.*/branding/ -# ||delivery.bannerd.ru^ (advblock.txt: 5636) -.delivery.bannerd.ru -# ||delfi.lv/misc/xml_infoblocks/ (advblock.txt: 5635) -.delfi.lv/misc/xml_infoblocks/ -# ||debilizator.tv/static/ab.min.js (advblock.txt: 5633) -.debilizator.tv/static/ab\.min\.js -# ||dating.trans-admirer.com/promo/ (advblock.txt: 5632) -.dating.trans-admirer.com/promo/ -# ||cybergame.tv/images/*_984x90. (advblock.txt: 5629) -.cybergame.tv/images/.*_984x90\. -# ||copyright.ru*/?file= (advblock.txt: 5627) -.copyright.ru*./(.*/)?\?file= -# ||coop-land.ru/uploads/pictures/*_branding_ (advblock.txt: 5625) -.coop-land.ru/uploads/pictures/.*_branding_ -# ||coop-land.ru/uploads/*_coop-land_ (advblock.txt: 5624) -.coop-land.ru/uploads/.*_coop-land_ -# ||coolinbox.ru/suprenta/ (advblock.txt: 5623) -.coolinbox.ru/suprenta/ -# ||cool-archive.ru/*_adv. (advblock.txt: 5622) -.cool-archive.ru/.*_adv\. -# ||consmed.ru/tizergen/ (advblock.txt: 5621) -.consmed.ru/tizergen/ -# ||consmed.ru/branding/ (advblock.txt: 5620) -.consmed.ru/branding/ -# ||companion.ua/www/images/ (advblock.txt: 5619) -.companion.ua/www/images/ -# ||comnews.ru/ds_comnews/img_pictures/*.gif (advblock.txt: 5618) -.comnews.ru/ds_comnews/img_pictures/.*\.gif -# ||comnews.ru/ds_comnews/img_object/ (advblock.txt: 5617) -.comnews.ru/ds_comnews/img_object/ -# ||comicsbook.ru/promo/ (advblock.txt: 5615) -.comicsbook.ru/promo/ -# ||comfysoft.ru/images/programmes/ (advblock.txt: 5614) -.comfysoft.ru/images/programmes/ -# ||cobra.com.ua/_banners/ (advblock.txt: 5613) -.cobra.com.ua/_banners/ -# ||coads.akipress.org^ (advblock.txt: 5612) -.coads.akipress.org -# ||cnews.ru/rotator.php?zone= (advblock.txt: 5611) -.cnews.ru/rotator\.php\?zone= -# ||cnb.cnews.ru^ (advblock.txt: 5610) -.cnb.cnews.ru -# ||cmexota.ru/uploads/mini/nu_ (advblock.txt: 5609) -.cmexota.ru/uploads/mini/nu_ -# ||clubvolvo.ru/crash/ban (advblock.txt: 5607) -.clubvolvo.ru/crash/ban -# ||clubsexa.com/sopero.js (advblock.txt: 5605) -.clubsexa.com/sopero\.js -# ||clubfile.net/themes/jobs/i/*_*.jpg| (advblock.txt: 5604) -.clubfile.net/themes/jobs/i/.*_.*\.jpg$ -# ||clubfile.net/files/*_banner_ (advblock.txt: 5603) -.clubfile.net/files/.*_banner_ -# ||clk.kaztorka.org^ (advblock.txt: 5602) -.clk.kaztorka.org -# ||clicks.demotivators.to^ (advblock.txt: 5601) -.clicks.demotivators.to -# ||ckyka.ru/obzor/ (advblock.txt: 5600) -.ckyka.ru/obzor/ -# ||citysites.ua^*/jackets/ (advblock.txt: 5599) -.citysites.ua/.*/jackets/ -# ||citydog.by/banners/ (advblock.txt: 5598) -.citydog.by/banners/ -# ||citforum.ru/a/ (advblock.txt: 5597) -.citforum.ru/a/ -# ||chuvashia.com/partners/ (advblock.txt: 5596) -.chuvashia.com/partners/ -# ||chipfind.ru/b/ (advblock.txt: 5593) -.chipfind.ru/b/ -# ||chinphone.info/go? (advblock.txt: 5592) -.chinphone.info/go\? -# ||chesspro.ru/_banners/ (advblock.txt: 5590) -.chesspro.ru/_banners/ -# ||chesalka.com/jquery.simplemodal.js (advblock.txt: 5589) -.chesalka.com/jquery\.simplemodal\.js -# ||chemport.ru^*_994x90. (advblock.txt: 5588) -.chemport.ru/.*_994x90\. -# ||championat.com/static/banner/ (advblock.txt: 5586) -.championat.com/static/banner/ -# ||championat.com/branding.css (advblock.txt: 5585) -.championat.com/branding\.css -# ||center-dm.ru/img/js/adb.js (advblock.txt: 5583) -.center-dm.ru/img/js/adb\.js -# ||censor.net.ua/images/br4nd1ng/ (advblock.txt: 5581) -.censor.net.ua/images/br4nd1ng/ -# ||cassad.net/tv/bnr/ (advblock.txt: 5578) -.cassad.net/tv/bnr/ -# ||c-s.net.ua/forum/banners/ (advblock.txt: 5577) -.c-s.net.ua/forum/banners/ -# ||buzines.net/banner/ (advblock.txt: 5575) -.buzines.net/banner/ -# ||business-gazeta.ru/partners/ (advblock.txt: 5574) -.business-gazeta.ru/partners/ -# ||buhonline.ru^*/ProductAdvertisement/ (advblock.txt: 5573) -.buhonline.ru/.*/ProductAdvertisement/ -# ||bugaga.tut.by^ (advblock.txt: 5572) -.bugaga.tut.by -# ||brd24.com/up/banner/ (advblock.txt: 5571) -.brd24.com/up/banner/ -# ||bratsk.org/files/b_right/ (advblock.txt: 5570) -.bratsk.org/files/b_right/ -# ||boxnews.com.ua/inc/js/under.js (advblock.txt: 5569) -.boxnews.com.ua/inc/js/under\.js -# ||boxnews.com.ua/inc/js/bn.js (advblock.txt: 5568) -.boxnews.com.ua/inc/js/bn\.js -# ||bountyporn.com/7c24c1.js (advblock.txt: 5567) -.bountyporn.com/7c24c1\.js -# ||boo.samara24.ru^ (advblock.txt: 5564) -.boo.samara24.ru -# ||bnkomi.ru/rklm-sh/ (advblock.txt: 5563) -.bnkomi.ru/rklm-sh/ -# ||bnkomi.ru/content/bnimg/ (advblock.txt: 5562) -.bnkomi.ru/content/bnimg/ -# ||bn.sarov.info^ (advblock.txt: 5561) -.bn.sarov.info -# ||bm.img.com.ua/widget/ (advblock.txt: 5559) -.bm.img.com.ua/widget/ -# ||bm.img.com.ua/a/video/img/br (advblock.txt: 5558) -.bm.img.com.ua/a/video/img/br -# ||bloknot-rostov.ru/upload/bloknotadv/ (advblock.txt: 5557) -.bloknot-rostov.ru/upload/bloknotadv/ -# ||blogoreader.org.ua/b/ (advblock.txt: 5556) -.blogoreader.org.ua/b/ -# ||blablacar.d3.ru^ (advblock.txt: 5555) -.blablacar.d3.ru -# ||bkn.ru/content/banners/ (advblock.txt: 5554) -.bkn.ru/content/banners/ -# ||bizarre.kiev.ua*/ban/ (advblock.txt: 5553) -.bizarre.kiev.ua*./(.*/)?ban/ -# ||biweed.com^*/yutex240_ (advblock.txt: 5552) -.biweed.com/.*/yutex240_ -# ||bit-torrent.kiev.ua/rekl.php (advblock.txt: 5551) -.bit-torrent.kiev.ua/rekl\.php -# ||binmovie.org/banners/ (advblock.txt: 5550) -.binmovie.org/banners/ -# ||bikepost.ru/ttll/ (advblock.txt: 5548) -.bikepost.ru/ttll/ -# ||bikepost.ru/ttl/ (advblock.txt: 5547) -.bikepost.ru/ttl/ -# ||bigtorrent.org/IpGeo1/ (advblock.txt: 5546) -.bigtorrent.org/IpGeo1/ -# ||bigpicture.ru/img/*/ (advblock.txt: 5545) -.bigpicture.ru/img/.*/ -# ||bigcinema.tv/vast_overlay_tizernet. (advblock.txt: 5544) -.bigcinema.tv/vast_overlay_tizernet\. -# ||bigbangtv.ru/bbt.js (advblock.txt: 5543) -.bigbangtv.ru/bbt\.js -# ||biathlon.ru/images/sp*/*.jpg (advblock.txt: 5542) -.biathlon.ru/images/sp.*/.*\.jpg -# ||beznal.cc/banners/ (advblock.txt: 5541) -.beznal.cc/banners/ -# ||besttorrents.org/cdn-cgi/pe/bag2? (advblock.txt: 5540) -.besttorrents.org/cdn-cgi/pe/bag2\? -# ||bestreferat.ru/images/a/ (advblock.txt: 5539) -.bestreferat.ru/images/a/ -# ||bestgamer.ru/partners/ (advblock.txt: 5538) -.bestgamer.ru/partners/ -# ||belobmen.ru/go? (advblock.txt: 5535) -.belobmen.ru/go\? -# ||bddo.ru/uploads/*_ban_ (advblock.txt: 5534) -.bddo.ru/uploads/.*_ban_ -# ||baumanki.net/templates/open-slaed/img/ban (advblock.txt: 5532) -.baumanki.net/templates/open-slaed/img/ban -# ||batpic.com/p/ (advblock.txt: 5531) -.batpic.com/p/ -# ||bash.im/_sq.php (advblock.txt: 5530) -.bash.im/_sq\.php -# ||banners.kinoafisha.info^ (advblock.txt: 5529) -.banners.kinoafisha.info -# ||banner.osp-ua.info^ (advblock.txt: 5528) -.banner.osp-ua.info -# ||banner.lbs.km.ru^ (advblock.txt: 5527) -.banner.lbs.km.ru -# ||b.nude-moon.com^ (advblock.txt: 5524) -.b.nude-moon.com -# ||b.netall.ru^ (advblock.txt: 5523) -.b.netall.ru -# ||b.inbox.lv^ (advblock.txt: 5522) -.b.inbox.lv -# ||avianews.ru/c/? (advblock.txt: 5520) -.avianews.ru/c/\? -# ||aviafly.ru/js| (advblock.txt: 5519) -.aviafly.ru/js$ -# ||avata.ru/windows.gif (advblock.txt: 5517) -.avata.ru/windows\.gif -# ||avata.ru/images/240x400.png (advblock.txt: 5516) -.avata.ru/images/240x400\.png -# ||auto.ru/get.php?args= (advblock.txt: 5515) -.auto.ru/get\.php\?args= -# ||artofcare.ru/files/images/club/ (advblock.txt: 5511) -.artofcare.ru/files/images/club/ -# ||artofcare.ru/files/images/bs/ (advblock.txt: 5510) -.artofcare.ru/files/images/bs/ -# ||artero.ru/js/ (advblock.txt: 5508) -.artero.ru/js/ -# ||army.lv/banners/ (advblock.txt: 5507) -.army.lv/banners/ -# ||aquafanat.com.ua/forum/iUshki/ (advblock.txt: 5506) -.aquafanat.com.ua/forum/iUshki/ -# ||aq.censor.net.ua^ (advblock.txt: 5505) -.aq.censor.net.ua -# ||appstudio.org/banners/ (advblock.txt: 5503) -.appstudio.org/banners/ -# ||api.digitalaccess.ru/logger^ (advblock.txt: 5502) -.api.digitalaccess.ru/logger[^\w%.-] -# ||ap.delfi.ee^ (advblock.txt: 5501) -.ap.delfi.ee -# ||ap.by/up/banner/ (advblock.txt: 5500) -.ap.by/up/banner/ -# ||antimaydan.info/js/rot (advblock.txt: 5498) -.antimaydan.info/js/rot -# ||antimaydan.info/js/bn (advblock.txt: 5497) -.antimaydan.info/js/bn -# ||antichat.ru/bn/ (advblock.txt: 5496) -.antichat.ru/bn/ -# ||ankontr.if.ua/swf/ (advblock.txt: 5494) -.ankontr.if.ua/swf/ -# ||ankontr.if.ua/images/mod_banners/ (advblock.txt: 5493) -.ankontr.if.ua/images/mod_banners/ -# ||anistar.ru^*/images/brend_ (advblock.txt: 5492) -.anistar.ru/.*/images/brend_ -# ||anistar.ru^*/baner- (advblock.txt: 5491) -.anistar.ru/.*/baner- -# ||anistar.ru/adblock/ (advblock.txt: 5490) -.anistar.ru/adblock/ -# ||animevost.org^*/headBG (advblock.txt: 5489) -.animevost.org/.*/headBG -# ||animevost.org^*.swf^ (advblock.txt: 5488) -.animevost.org/.*\.swf[^\w%.-] -# ||animeonline.su^*/images/da/ (advblock.txt: 5487) -.animeonline.su/.*/images/da/ -# ||animenfo.com/*/ads/ (advblock.txt: 5486) -.animenfo.com/.*/ads/ -# ||animemaga.ru^*/blog/layers/ (advblock.txt: 5485) -.animemaga.ru/.*/blog/layers/ -# ||animemaga.ru/img/*_1000_120_ (advblock.txt: 5484) -.animemaga.ru/img/.*_1000_120_ -# ||animedia.tv^*/bnr/ (advblock.txt: 5483) -.animedia.tv/.*/bnr/ -# ||animechan.ru/fun/ (advblock.txt: 5482) -.animechan.ru/fun/ -# ||anidub.com/uploads/*brend (advblock.txt: 5481) -.anidub.com/uploads/.*brend -# ||anidub.com/*.php?link= (advblock.txt: 5479) -.anidub.com/.*\.php\?link= -# ||anekdot.ru/i/gallery/ (advblock.txt: 5478) -.anekdot.ru/i/gallery/ -# ||andama.ru/bablo. (advblock.txt: 5477) -.andama.ru/bablo\. -# ||amovies.tv^*/js/init.js (advblock.txt: 5476) -.amovies.tv/.*/js/init\.js -# ||alogvinov.com^*_top.jpg| (advblock.txt: 5474) -.alogvinov.com/.*_top\.jpg$ -# ||alogvinov.com/skinning_ (advblock.txt: 5473) -.alogvinov.com/skinning_ -# ||allsat.biz/ban_ (advblock.txt: 5472) -.allsat.biz/ban_ -# ||allinfo.kz/pic/media/ (advblock.txt: 5470) -.allinfo.kz/pic/media/ -# ||allhockey.ru/static/img/brand/ (advblock.txt: 5469) -.allhockey.ru/static/img/brand/ -# ||allforpeople.net/banner. (advblock.txt: 5468) -.allforpeople.net/banner\. -# ||allday2.com/a/ (advblock.txt: 5467) -.allday2.com/a/ -# ||allboxing.ru/files/*.*.*/ (advblock.txt: 5466) -.allboxing.ru/files/.*\..*\..*/ -# ||all-episodes.com/autoplay.htm (advblock.txt: 5463) -.all-episodes.com/autoplay\.htm -# ||aktobeinfo.kz/sites/default/files/swf/ (advblock.txt: 5461) -.aktobeinfo.kz/sites/default/files/swf/ -# ||ais.com.ua/usersimage/banners/ (advblock.txt: 5460) -.ais.com.ua/usersimage/banners/ -# ||aii.su/banners/ (advblock.txt: 5459) -.aii.su/banners/ -# ||agsat.com.ua/beuty/ (advblock.txt: 5458) -.agsat.com.ua/beuty/ -# ||afisha.ru/dsn/google- (advblock.txt: 5456) -.afisha.ru/dsn/google- -# ||adverman.*/banners/ (advblock.txt: 5455) -.adverman.*./(.*/)?banners/ -# ||ad.nakanune.ru^ (advblock.txt: 5450) -.ad.nakanune.ru -# ||ad.f1cd.ru^ (advblock.txt: 5449) -.ad.f1cd.ru -# ||actualcomment.ru^*/banner/ (advblock.txt: 5448) -.actualcomment.ru/.*/banner/ -# ||aaa.piccash.net^ (advblock.txt: 5447) -.aaa.piccash.net -# ||a.zoomby.ru^ (advblock.txt: 5446) -.a.zoomby.ru -# ||a.velvet.by^ (advblock.txt: 5445) -.a.velvet.by -# ||a.sakh.com/a/ (advblock.txt: 5444) -.a.sakh.com/a/ -# ||a.multik-online.net^ (advblock.txt: 5443) -.a.multik-online.net -# ||a.meteonova.ru^ (advblock.txt: 5442) -.a.meteonova.ru -# ||7ja.ru/imgb/ (advblock.txt: 5440) -.7ja.ru/imgb/ -# ||6barrel.com/img/bg- (advblock.txt: 5439) -.6barrel.com/img/bg- -# ||5terka.com^*/img/bg (advblock.txt: 5438) -.5terka.com/.*/img/bg -# ||5ka.ru/jscr/ (advblock.txt: 5437) -.5ka.ru/jscr/ -# ||5ka.ru/js/banners. (advblock.txt: 5436) -.5ka.ru/js/banners\. -# ||4allforum.com/banner/ (advblock.txt: 5435) -.4allforum.com/banner/ -# ||3mv.ru/oboi (advblock.txt: 5433) -.3mv.ru/oboi -# ||3mp3.ru/dhtml/adv. (advblock.txt: 5432) -.3mp3.ru/dhtml/adv\. -# ||3mp3.ru/banner (advblock.txt: 5431) -.3mp3.ru/banner -# ||3dnews.ru/www/images/ (advblock.txt: 5430) -.3dnews.ru/www/images/ -# ||3dnews.ru/*/ad/branding/ (advblock.txt: 5429) -.3dnews.ru/.*/ad/branding/ -# ||3ddd.ru/other/banners/ (advblock.txt: 5428) -.3ddd.ru/other/banners/ -# ||38mama.ru/forum/images/*/ (advblock.txt: 5427) -.38mama.ru/forum/images/.*/ -# ||2krota.ru/rekla/ (advblock.txt: 5426) -.2krota.ru/rekla/ -# ||2baksa.net/newclk. (advblock.txt: 5425) -.2baksa.net/newclk\. -# ||2baksa.net/msg. (advblock.txt: 5424) -.2baksa.net/msg\. -# ||2baksa.net/js/vivo. (advblock.txt: 5423) -.2baksa.net/js/vivo\. -# ||24video.*/css/banner (advblock.txt: 5422) -.24video.*./(.*/)?css/banner -# ||24stoma.ru/rkm/ (advblock.txt: 5421) -.24stoma.ru/rkm/ -# ||21region.org/uploads/main/re/ (advblock.txt: 5420) -.21region.org/uploads/main/re/ -# ||21region.org/uploads/main/rb/ (advblock.txt: 5419) -.21region.org/uploads/main/rb/ -# ||1kinobig.ru/reklamka. (advblock.txt: 5418) -.1kinobig.ru/reklamka\. -# ||1istochnik.ru/js/fon.js (advblock.txt: 5417) -.1istochnik.ru/js/fon\.js -# ||195.82.146.52/brand/ (advblock.txt: 5416) -.195.82.146.52/brand/ -# ||13rus.ru/img/luhban.jpg (advblock.txt: 5415) -.13rus.ru/img/luhban\.jpg -# ||13rus.ru/img/*/ (advblock.txt: 5414) -.13rus.ru/img/.*/ -# ||13rus.ru/bnr/ (advblock.txt: 5413) -.13rus.ru/bnr/ -# ||13rus.ru/b/ (advblock.txt: 5412) -.13rus.ru/b/ -# ||101.ru^*/banners/ (advblock.txt: 5410) -.101.ru/.*/banners/ -# ||101.ru/dbclick/ (advblock.txt: 5409) -.101.ru/dbclick/ -# ||1000ukg.kz/uploads/banner/ (advblock.txt: 5408) -.1000ukg.kz/uploads/banner/ -# ||1000dosok.ru/banz/ (advblock.txt: 5407) -.1000dosok.ru/banz/ -# =http%3A%2F%2Fazaza.torent-telik. (advblock.txt: 5404) -/.*=http%3A%2F%2Fazaza\.torent-telik\. -# /galya.ru/clients/places/* (advblock.txt: 5384) -/(.*/)?galya\.ru/clients/places/.* -galya.ru/clients/places/.* -# /ad*.tutu.ru^*_*.php| (advblock.txt: 5379) -/(.*/)?ad.*\.tutu\.ru[^\w%.-].*_.*\.php$ -ad*./.*\.tutu\.ru[^\w%.-].*_.*\.php$ -ad*.tutu.ru/.*_.*\.php$ -# .lostfilm.tv^*^yash= (advblock.txt: 5371) -/.*\.lostfilm\.tv[^\w%.-].*[^\w%.-]yash= -.*.lostfilm.tv/.*[^\w%.-]yash= -# .autorambler.ru/*/promo/ (advblock.txt: 5369) -/.*\.autorambler\.ru/.*/promo/ -.*.autorambler.ru/.*/promo/ -# =x-uboino.net (advblock.txt: 3385) -/.*=x-uboino\.net -# =videotuts.ru (advblock.txt: 3384) -/.*=videotuts\.ru -# =torrent-telik. (advblock.txt: 3383) -/.*=torrent-telik\. -# =santikov.net (advblock.txt: 3382) -/.*=santikov\.net -# =rutracker.org.ua (advblock.txt: 3381) -/.*=rutracker\.org\.ua -# =ruspicbox.ru (advblock.txt: 3380) -/.*=ruspicbox\.ru -# =prons.org (advblock.txt: 3379) -/.*=prons\.org -# =ppronpic.org (advblock.txt: 3378) -/.*=ppronpic\.org -# =porno4you.org (advblock.txt: 3377) -/.*=porno4you\.org -# =pix-x.net (advblock.txt: 3376) -/.*=pix-x\.net -# =pics-money.ru (advblock.txt: 3375) -/.*=pics-money\.ru -# =picmani.ru (advblock.txt: 3374) -/.*=picmani\.ru -# =pick.megatrack.org (advblock.txt: 3373) -/.*=pick\.megatrack\.org -# =picforall.ru (advblock.txt: 3372) -/.*=picforall\.ru -# =pic5you.ru (advblock.txt: 3371) -/.*=pic5you\.ru -# =pic4you.ru (advblock.txt: 3370) -/.*=pic4you\.ru -# =pic-money.ru (advblock.txt: 3369) -/.*=pic-money\.ru -# =payforpic.ru (advblock.txt: 3368) -/.*=payforpic\.ru -# =http%3A//rustorka.com (advblock.txt: 3367) -/.*=http%3A//rustorka\.com -# =http%3A//picforall.ru (advblock.txt: 3366) -/.*=http%3A//picforall\.ru -# =http%3A//pic-money.ru (advblock.txt: 3365) -/.*=http%3A//pic-money\.ru -# =http%3A//payforpic.ru (advblock.txt: 3364) -/.*=http%3A//payforpic\.ru -# =http%3A%2F%2Fpicforall.ru (advblock.txt: 3363) -/.*=http%3A%2F%2Fpicforall\.ru -# =hottrash.ru (advblock.txt: 3362) -/.*=hottrash\.ru -# =hentaiz.org (advblock.txt: 3361) -/.*=hentaiz\.org -# =hentaichan.ru (advblock.txt: 3360) -/.*=hentaichan\.ru -# =gold-liter.org.ua (advblock.txt: 3359) -/.*=gold-liter\.org\.ua -# =fotooplata.ru (advblock.txt: 3358) -/.*=fotooplata\.ru -# =erevan-online.ru (advblock.txt: 3357) -/.*=erevan-online\.ru -# =beetor.org (advblock.txt: 3356) -/.*=beetor\.org -# =anime-box.ws (advblock.txt: 3355) -/.*=anime-box\.ws -# /design-warez.ru.js (advblock.txt: 3354) -/(.*/)?design-warez\.ru\.js -design-warez.ru.js*. -# -pic-money.ru (advblock.txt: 3353) -/.*-pic-money\.ru -.*-pic-money.ru*. -# -image2you.ru (advblock.txt: 3352) -/.*-image2you\.ru -.*-image2you.ru*. -# ||wt.lovfot.ru^ (advblock.txt: 3346) -.wt.lovfot.ru -# ||webweb.picforall.ru^ (advblock.txt: 3340) -.webweb.picforall.ru -# ||nord.murmann.ru^ (advblock.txt: 3339) -.nord.murmann.ru -# ||zork.jerkngo.com^ (advblock.txt: 3336) -.zork.jerkngo.com -# ||top.softweb.ru^ (advblock.txt: 3335) -.top.softweb.ru -# ||sport.hudaem.ru^ (advblock.txt: 3334) -.sport.hudaem.ru -# ||search.a-vega.ru^ (advblock.txt: 3333) -.search.a-vega.ru -# ||samsung.yaload.ru^ (advblock.txt: 3332) -.samsung.yaload.ru -# ||root.qw.su^ (advblock.txt: 3331) -.root.qw.su -# ||real.attico-mos.ru^ (advblock.txt: 3330) -.real.attico-mos.ru -# ||qwerty.arenda263.ru^ (advblock.txt: 3329) -.qwerty.arenda263.ru -# ||pop.turnik.su^ (advblock.txt: 3328) -.pop.turnik.su -# ||pop.spy4.in^ (advblock.txt: 3327) -.pop.spy4.in -# ||po.spynets.ru^ (advblock.txt: 3326) -.po.spynets.ru -# ||lg.yaload.ru^ (advblock.txt: 3325) -.lg.yaload.ru -# ||kuhni.goodtrend2.ru^ (advblock.txt: 3324) -.kuhni.goodtrend2.ru -# ||fair.jones.se^ (advblock.txt: 3323) -.fair.jones.se -# ||fair.huz84.com^ (advblock.txt: 3322) -.fair.huz84.com -# ||1.miniporn.ru^ (advblock.txt: 3321) -.1.miniporn.ru -# ||yaload.yaload.ru^ (advblock.txt: 3318) -.yaload.yaload.ru -# ||www.online.anime-box.ws^ (advblock.txt: 3317) -.www.online.anime-box.ws -# ||wolf.fan-guf.ru^ (advblock.txt: 3316) -.wolf.fan-guf.ru -# ||wells.murmann.ru^ (advblock.txt: 3315) -.wells.murmann.ru -# ||static2.ero2you.com^ (advblock.txt: 3314) -.static2.ero2you.com -# ||skeet.advetime.ru^ (advblock.txt: 3313) -.skeet.advetime.ru -# ||sctipt.prons.org^ (advblock.txt: 3312) -.sctipt.prons.org -# ||sailor.rutracker21.org^ (advblock.txt: 3311) -.sailor.rutracker21.org -# ||rx9aef.driver-id.ru^ (advblock.txt: 3310) -.rx9aef.driver-id.ru -# ||rikki.bukvaved.net^ (advblock.txt: 3309) -.rikki.bukvaved.net -# ||recloma.cssmod.ru^ (advblock.txt: 3308) -.recloma.cssmod.ru -# ||public.screenhost.ru^ (advblock.txt: 3307) -.public.screenhost.ru -# ||pu.zipsites.ru^ (advblock.txt: 3306) -.pu.zipsites.ru -# ||plus.pornoshara.tv^ (advblock.txt: 3305) -.plus.pornoshara.tv -# ||news.soptv.ws^ (advblock.txt: 3304) -.news.soptv.ws -# ||news.movieworld.kz^ (advblock.txt: 3303) -.news.movieworld.kz -# ||n.gold-liter.org.ua^ (advblock.txt: 3302) -.n.gold-liter.org.ua -# ||gov.hentaipix.ru^ (advblock.txt: 3301) -.gov.hentaipix.ru -# ||go.mega-games.org^ (advblock.txt: 3300) -.go.mega-games.org -# ||forum.dwnld.net.ua^ (advblock.txt: 3299) -.forum.dwnld.net.ua -# ||dvasub.kipfilms.ru^ (advblock.txt: 3298) -.dvasub.kipfilms.ru -# ||crashes.autodanger.ru^ (advblock.txt: 3297) -.crashes.autodanger.ru -# ||bt1.gutgirl.ru^ (advblock.txt: 3296) -.bt1.gutgirl.ru -# ||bookforall1.bookforall.ru^ (advblock.txt: 3295) -.bookforall1.bookforall.ru -# ||bn1.homefot.ru^ (advblock.txt: 3294) -.bn1.homefot.ru -# ||adr.alltorrents.net^ (advblock.txt: 3293) -.adr.alltorrents.net -# ||ad.minecraft-mods.ru^ (advblock.txt: 3292) -.ad.minecraft-mods.ru -# ||getout.besaba.com^ (advblock.txt: 3281) -.getout.besaba.com -# _vodkov.net (advblock.txt: 3277) -/.*_vodkov\.net -# _torrentszona.com (advblock.txt: 3276) -/.*_torrentszona\.com -# _stock-exchange.ucoz.com (advblock.txt: 3275) -/.*_stock-exchange\.ucoz\.com -# _softbaron.ru (advblock.txt: 3274) -/.*_softbaron\.ru -# _saytturtsii.ru (advblock.txt: 3273) -/.*_saytturtsii\.ru -# _narodclub.net (advblock.txt: 3272) -/.*_narodclub\.net -# _multiky.ru (advblock.txt: 3271) -/.*_multiky\.ru -# _kipfilms.ru (advblock.txt: 3270) -/.*_kipfilms\.ru -# _haxa.ru (advblock.txt: 3269) -/.*_haxa\.ru -# _gold-torrent.org (advblock.txt: 3268) -/.*_gold-torrent\.org -# _eroox.ru (advblock.txt: 3267) -/.*_eroox\.ru -# _doublepunch.ru (advblock.txt: 3266) -/.*_doublepunch\.ru -# _camelot.userlan.ru (advblock.txt: 3265) -/.*_camelot\.userlan\.ru -# _camelot.multilocal.ru (advblock.txt: 3264) -/.*_camelot\.multilocal\.ru -# _2krota.ru (advblock.txt: 3263) -/.*_2krota\.ru -# -todayanekdot.ru (advblock.txt: 3262) -/.*-todayanekdot\.ru -.*-todayanekdot.ru*. -# -softin.ca (advblock.txt: 3261) -/.*-softin\.ca -.*-softin.ca*. -# -ru-admin.net (advblock.txt: 3260) -/.*-ru-admin\.net -.*-ru-admin.net*. -# -murmann.ru (advblock.txt: 3259) -/.*-murmann\.ru -.*-murmann.ru*. -# -dom-2-onlain.ru (advblock.txt: 3258) -/.*-dom-2-onlain\.ru -.*-dom-2-onlain.ru*. -# ||zqclick.net^ (advblock.txt: 3251) -.zqclick.net -# ||zontrans.com^ (advblock.txt: 3250) -.zontrans.com -# ||zirikoni.com^ (advblock.txt: 3248) -.zirikoni.com -# ||zdenochary.com^ (advblock.txt: 3246) -.zdenochary.com -# ||zarabotki.ru^ (advblock.txt: 3244) -.zarabotki.ru -# ||yyredir.com^ (advblock.txt: 3243) -.yyredir.com -# ||yulinata.ru^ (advblock.txt: 3242) -.yulinata.ru -# ||youhave.mobi^ (advblock.txt: 3240) -.youhave.mobi -# ||youformobile.ru^ (advblock.txt: 3239) -.youformobile.ru -# ||yohioo.com^ (advblock.txt: 3238) -.yohioo.com -# ||yidop.com^ (advblock.txt: 3235) -.yidop.com -# ||yangot.com^ (advblock.txt: 3234) -.yangot.com -# ||yandepit.com^ (advblock.txt: 3233) -.yandepit.com -# ||yalyagich.ru^ (advblock.txt: 3232) -.yalyagich.ru -# ||xytur.ru^ (advblock.txt: 3231) -.xytur.ru -# ||xuuclck.com^ (advblock.txt: 3228) -.xuuclck.com -# ||xooplo.com^ (advblock.txt: 3227) -.xooplo.com -# ||xltraff.net^$~popup,popup (advblock.txt: 3225) -.xltraff.net -# ||xiuuh.com^ (advblock.txt: 3224) -.xiuuh.com -# ||xiss.ru^ (advblock.txt: 3223) -.xiss.ru -# ||xiepl.com^ (advblock.txt: 3222) -.xiepl.com -# ||xfnvb.biz^ (advblock.txt: 3221) -.xfnvb.biz -# ||xewoza.com^ (advblock.txt: 3220) -.xewoza.com -# ||xeclick.com^ (advblock.txt: 3219) -.xeclick.com -# ||xaogi.com^ (advblock.txt: 3218) -.xaogi.com -# ||x-ip-adwpc.com^ (advblock.txt: 3217) -.x-ip-adwpc.com -# ||x-ip-adv.com^ (advblock.txt: 3216) -.x-ip-adv.com -# ||www.rt-ns.ru^ (advblock.txt: 3214) -.www.rt-ns.ru -# ||wts-rotator.com^$~popup,popup (advblock.txt: 3212) -.wts-rotator.com -# ||wtoredir.com^ (advblock.txt: 3211) -.wtoredir.com -# ||wssdoo.com^ (advblock.txt: 3210) -.wssdoo.com -# ||wregf.biz^ (advblock.txt: 3209) -.wregf.biz -# ||wqs7j.ru^ (advblock.txt: 3208) -.wqs7j.ru -# ||worldoffer.ru^ (advblock.txt: 3207) -.worldoffer.ru -# ||womenset.ru^ (advblock.txt: 3206) -.womenset.ru -# ||wmrak.com^ (advblock.txt: 3205) -.wmrak.com -# ||wmip.ru^ (advblock.txt: 3204) -.wmip.ru -# ||wmbankir.ru^ (advblock.txt: 3203) -.wmbankir.ru -# ||wlboon.com^ (advblock.txt: 3201) -.wlboon.com -# ||wisertb.com^ (advblock.txt: 3199) -.wisertb.com -# ||whisla.com^ (advblock.txt: 3195) -.whisla.com -# ||wetpussyhd.com^ (advblock.txt: 3194) -.wetpussyhd.com -# ||weropiy.com^ (advblock.txt: 3193) -.weropiy.com -# ||weebvivian72.uk.to^ (advblock.txt: 3192) -.weebvivian72.uk.to -# ||wedgeac.com^ (advblock.txt: 3190) -.wedgeac.com -# ||webrotator.org^ (advblock.txt: 3189) -.webrotator.org -# ||webrotator.net^ (advblock.txt: 3188) -.webrotator.net -# ||webmastak.net^ (advblock.txt: 3187) -.webmastak.net -# ||web-rotator.net^ (advblock.txt: 3186) -.web-rotator.net -# ||web-rotation.net^ (advblock.txt: 3185) -.web-rotation.net -# ||wbid.ru^ (advblock.txt: 3183) -.wbid.ru -# ||watrz.com^ (advblock.txt: 3181) -.watrz.com -# ||wapstaterpart.ru^ (advblock.txt: 3180) -.wapstaterpart.ru -# ||wapratios.ru^ (advblock.txt: 3179) -.wapratios.ru -# ||waogi.com^ (advblock.txt: 3178) -.waogi.com -# ||waladon.com^ (advblock.txt: 3177) -.waladon.com -# ||w717.com^ (advblock.txt: 3175) -.w717.com -# ||w-rada.com^ (advblock.txt: 3174) -.w-rada.com -# ||w-lozo.com^ (advblock.txt: 3173) -.w-lozo.com -# ||w-lovo.com^ (advblock.txt: 3172) -.w-lovo.com -# ||w-loto.com^ (advblock.txt: 3171) -.w-loto.com -# ||w-loro.com^ (advblock.txt: 3170) -.w-loro.com -# ||w-lomo.com^ (advblock.txt: 3169) -.w-lomo.com -# ||w-lolo.com^ (advblock.txt: 3168) -.w-lolo.com -# ||w-loko.com^ (advblock.txt: 3167) -.w-loko.com -# ||w-lofo.com^ (advblock.txt: 3166) -.w-lofo.com -# ||w-lobo.com^ (advblock.txt: 3165) -.w-lobo.com -# ||w-llke.ru^ (advblock.txt: 3164) -.w-llke.ru -# ||vvmblock.ru^ (advblock.txt: 3163) -.vvmblock.ru -# ||vutatik.ru^ (advblock.txt: 3161) -.vutatik.ru -# ||vtomate.biz^ (advblock.txt: 3160) -.vtomate.biz -# ||vpbyl.com^ (advblock.txt: 3158) -.vpbyl.com -# ||voono.ru^ (advblock.txt: 3157) -.voono.ru -# ||vogozita.com^ (advblock.txt: 3155) -.vogozita.com -# ||vogozaw.ru^ (advblock.txt: 3154) -.vogozaw.ru -# ||vogozae.ru^ (advblock.txt: 3153) -.vogozae.ru -# ||vogotita.com^ (advblock.txt: 3152) -.vogotita.com -# ||vogorita.com^ (advblock.txt: 3151) -.vogorita.com -# ||vogodita.com^ (advblock.txt: 3150) -.vogodita.com -# ||vogo-vogo.ru^ (advblock.txt: 3149) -.vogo-vogo.ru -# ||vmblock.net^ (advblock.txt: 3147) -.vmblock.net -# ||vkmonster.com^ (advblock.txt: 3145) -.vkmonster.com -# ||vkmoll.ru^ (advblock.txt: 3144) -.vkmoll.ru -# ||viva-vanna.ru^ (advblock.txt: 3142) -.viva-vanna.ru -# ||vitos.freezfiles.ru^ (advblock.txt: 3141) -.vitos.freezfiles.ru -# ||visitscounter.ru^ (advblock.txt: 3140) -.visitscounter.ru -# ||vinregle.com^ (advblock.txt: 3139) -.vinregle.com -# ||vinov24.com^ (advblock.txt: 3138) -.vinov24.com -# ||vimart16.com^ (advblock.txt: 3137) -.vimart16.com -# ||vim100.ru^ (advblock.txt: 3136) -.vim100.ru -# ||vilumirian.biz^ (advblock.txt: 3135) -.vilumirian.biz -# ||viglir.ru^ (advblock.txt: 3134) -.viglir.ru -# ||viewrtb.com^ (advblock.txt: 3133) -.viewrtb.com -# ||vietalle.com^ (advblock.txt: 3132) -.vietalle.com -# ||vidustal.com^ (advblock.txt: 3131) -.vidustal.com -# ||videoplayer.ru^*/banners/ (advblock.txt: 3127) -.videoplayer.ru/.*/banners/ -# ||videojune.ru^ (advblock.txt: 3126) -.videojune.ru -# ||videojuly.ru^ (advblock.txt: 3125) -.videojuly.ru -# ||videoaugust.ru^ (advblock.txt: 3123) -.videoaugust.ru -# ||video103.ru^ (advblock.txt: 3122) -.video103.ru -# ||video003.com^ (advblock.txt: 3121) -.video003.com -# ||video002.com^ (advblock.txt: 3120) -.video002.com -# ||video001.com^ (advblock.txt: 3119) -.video001.com -# ||video.videonow.ru^ (advblock.txt: 3118) -.video.videonow.ru -# ||videc10.com^ (advblock.txt: 3117) -.videc10.com -# ||vidaugust.ru^ (advblock.txt: 3116) -.vidaugust.ru -# ||veroui.com^ (advblock.txt: 3114) -.veroui.com -# ||ventite.com^ (advblock.txt: 3113) -.ventite.com -# ||vbmjune25.com^ (advblock.txt: 3110) -.vbmjune25.com -# ||vbmay16.com^ (advblock.txt: 3109) -.vbmay16.com -# ||vatizon.com^ (advblock.txt: 3108) -.vatizon.com -# ||various1down.biz^ (advblock.txt: 3107) -.various1down.biz -# ||vakataro.com^ (advblock.txt: 3106) -.vakataro.com -# ||vakafaro.com^ (advblock.txt: 3105) -.vakafaro.com -# ||v2mlyellow.com^ (advblock.txt: 3104) -.v2mlyellow.com -# ||v2mljs.org^ (advblock.txt: 3103) -.v2mljs.org -# ||utrehter.com^ (advblock.txt: 3101) -.utrehter.com -# ||utilieur.com^ (advblock.txt: 3100) -.utilieur.com -# ||utilient.com^ (advblock.txt: 3099) -.utilient.com -# ||usimonat.com^ (advblock.txt: 3098) -.usimonat.com -# ||usermediaclick.ru^ (advblock.txt: 3097) -.usermediaclick.ru -# ||uself.in^ (advblock.txt: 3096) -.uself.in -# ||us97udx.com^ (advblock.txt: 3095) -.us97udx.com -# ||urlrtb.com^ (advblock.txt: 3094) -.urlrtb.com -# ||untily.com^ (advblock.txt: 3093) -.untily.com -# ||unikuni.com^ (advblock.txt: 3092) -.unikuni.com -# ||unholyrsounds.in^ (advblock.txt: 3091) -.unholyrsounds.in -# ||undere.com^ (advblock.txt: 3090) -.undere.com -# ||under-click.ru^ (advblock.txt: 3089) -.under-click.ru -# ||ultrapay.net^ (advblock.txt: 3088) -.ultrapay.net -# ||ukrotsel.ru^ (advblock.txt: 3087) -.ukrotsel.ru -# ||uclead.com^ (advblock.txt: 3086) -.uclead.com -# ||uchmuk.com^ (advblock.txt: 3085) -.uchmuk.com -# ||typiol.com^ (advblock.txt: 3084) -.typiol.com -# ||twitep.com^ (advblock.txt: 3082) -.twitep.com -# ||tvoy-start.com/partnerka/ (advblock.txt: 3081) -.tvoy-start.com/partnerka/ -# ||tvoigost.ru^ (advblock.txt: 3080) -.tvoigost.ru -# ||ttfean.com^ (advblock.txt: 3079) -.ttfean.com -# ||tteasr.com^ (advblock.txt: 3078) -.tteasr.com -# ||tsunam.ru^ (advblock.txt: 3076) -.tsunam.ru -# ||tsnsniper.com^ (advblock.txt: 3075) -.tsnsniper.com -# ||truenty.com^ (advblock.txt: 3073) -.truenty.com -# ||tropicalos.com^ (advblock.txt: 3072) -.tropicalos.com -# ||trmedie.ru^ (advblock.txt: 3071) -.trmedie.ru -# ||trisol.ru^ (advblock.txt: 3070) -.trisol.ru -# ||treprime.com^ (advblock.txt: 3069) -.treprime.com -# ||tratataololol.ru^ (advblock.txt: 3067) -.tratataololol.ru -# ||tranzits.com^ (advblock.txt: 3066) -.tranzits.com -# ||transfto.com^ (advblock.txt: 3065) -.transfto.com -# ||traient.com^ (advblock.txt: 3064) -.traient.com -# ||trahik.ru^ (advblock.txt: 3063) -.trahik.ru -# ||traftiz.com^ (advblock.txt: 3062) -.traftiz.com -# ||trafsiz.com^ (advblock.txt: 3061) -.trafsiz.com -# ||trafmake.ru^ (advblock.txt: 3060) -.trafmake.ru -# ||trafidet.ru^$~popup,popup (advblock.txt: 3058) -.trafidet.ru -# ||traffru.ru^ (advblock.txt: 3057) -.traffru.ru -# ||traffpay.ru^ (advblock.txt: 3056) -.traffpay.ru -# ||traffictoadv.com^ (advblock.txt: 3054) -.traffictoadv.com -# ||traffic-king.ru^ (advblock.txt: 3053) -.traffic-king.ru -# ||trafers.ru^ (advblock.txt: 3051) -.trafers.ru -# ||trafalz.com^ (advblock.txt: 3050) -.trafalz.com -# ||trafall.com^ (advblock.txt: 3049) -.trafall.com -# ||tozitoto.com^ (advblock.txt: 3048) -.tozitoto.com -# ||tozipoto.com^ (advblock.txt: 3047) -.tozipoto.com -# ||tozimoto.com^ (advblock.txt: 3046) -.tozimoto.com -# ||toutiles.com^ (advblock.txt: 3045) -.toutiles.com -# ||tourteaser.ru^ (advblock.txt: 3044) -.tourteaser.ru -# ||toujoute.com^ (advblock.txt: 3043) -.toujoute.com -# ||totrena.ru^ (advblock.txt: 3042) -.totrena.ru -# ||tonopole.com^ (advblock.txt: 3038) -.tonopole.com -# ||tomobol.com^ (advblock.txt: 3037) -.tomobol.com -# ||tomiti.ru^ (advblock.txt: 3036) -.tomiti.ru -# ||tolicando.com^ (advblock.txt: 3035) -.tolicando.com -# ||tojinr.com^ (advblock.txt: 3034) -.tojinr.com -# ||toftori.ru^ (advblock.txt: 3033) -.toftori.ru -# ||todayad.ru^ (advblock.txt: 3032) -.todayad.ru -# ||tmska.com^ (advblock.txt: 3029) -.tmska.com -# ||tm-79.com^ (advblock.txt: 3028) -.tm-79.com -# ||tizru.com^ (advblock.txt: 3027) -.tizru.com -# ||tizerstock.com^ (advblock.txt: 3026) -.tizerstock.com -# ||tizerset.net^ (advblock.txt: 3025) -.tizerset.net -# ||tizernaya-reklama.ru^ (advblock.txt: 3024) -.tizernaya-reklama.ru -# ||tizermy.net^ (advblock.txt: 3023) -.tizermy.net -# ||tizermine.net^ (advblock.txt: 3022) -.tizermine.net -# ||tizergun.net^ (advblock.txt: 3016) -.tizergun.net -# ||tizergo.net^ (advblock.txt: 3015) -.tizergo.net -# ||tizerfly.net^ (advblock.txt: 3014) -.tizerfly.net -# ||tizerelite.net^ (advblock.txt: 3013) -.tizerelite.net -# ||tizerda.net^ (advblock.txt: 3012) -.tizerda.net -# ||tizerbest.net^ (advblock.txt: 3010) -.tizerbest.net -# ||tizer8.net^ (advblock.txt: 3008) -.tizer8.net -# ||tizer7.net^ (advblock.txt: 3007) -.tizer7.net -# ||tizer6.net^ (advblock.txt: 3006) -.tizer6.net -# ||tizer13.net^ (advblock.txt: 3005) -.tizer13.net -# ||tizer12.net^ (advblock.txt: 3004) -.tizer12.net -# ||tisarama.com^ (advblock.txt: 3002) -.tisarama.com -# ||tisapama.com^ (advblock.txt: 3001) -.tisapama.com -# ||tinsvt.ru^ (advblock.txt: 3000) -.tinsvt.ru -# ||timonom.com^ (advblock.txt: 2999) -.timonom.com -# ||tilili007.ru^ (advblock.txt: 2998) -.tilili007.ru -# ||tierest.com^ (advblock.txt: 2997) -.tierest.com -# ||tidentes.com^ (advblock.txt: 2996) -.tidentes.com -# ||ticlon.ru^ (advblock.txt: 2995) -.ticlon.ru -# ||thumpac.com^ (advblock.txt: 2994) -.thumpac.com -# ||thegrap.ru^ (advblock.txt: 2993) -.thegrap.ru -# ||tgearheads.com^ (advblock.txt: 2992) -.tgearheads.com -# ||teromil.com^ (advblock.txt: 2990) -.teromil.com -# ||terapou.com^ (advblock.txt: 2989) -.terapou.com -# ||televisionbomb.com^ (advblock.txt: 2988) -.televisionbomb.com -# ||tecontx.com^ (advblock.txt: 2987) -.tecontx.com -# ||tech9638514.ru^ (advblock.txt: 2985) -.tech9638514.ru -# ||tech5877413.ru^ (advblock.txt: 2984) -.tech5877413.ru -# ||tech4215978.ru^ (advblock.txt: 2983) -.tech4215978.ru -# ||teasertraffic.com^ (advblock.txt: 2982) -.teasertraffic.com -# ||teasernet.com.ua^ (advblock.txt: 2981) -.teasernet.com.ua -# ||teasercpm.ru^ (advblock.txt: 2979) -.teasercpm.ru -# ||teaserbar.com^ (advblock.txt: 2978) -.teaserbar.com -# ||teaser1m.com^ (advblock.txt: 2977) -.teaser1m.com -# ||teachac.com^ (advblock.txt: 2976) -.teachac.com -# ||td-everest.biz^ (advblock.txt: 2975) -.td-everest.biz -# ||tc.fileplaneta.com^ (advblock.txt: 2974) -.tc.fileplaneta.com -# ||tbn.ru/bb.cgi? (advblock.txt: 2973) -.tbn.ru/bb\.cgi\? -# ||taril3.ru^ (advblock.txt: 2972) -.taril3.ru -# ||taril2.ru^ (advblock.txt: 2971) -.taril2.ru -# ||taril1.ru^ (advblock.txt: 2970) -.taril1.ru -# ||takealldir.ru^ (advblock.txt: 2969) -.takealldir.ru -# ||tagol2.ru^ (advblock.txt: 2968) -.tagol2.ru -# ||tadic.tk^ (advblock.txt: 2967) -.tadic.tk -# ||t800.org^ (advblock.txt: 2966) -.t800.org -# ||t.thor-media.ru^ (advblock.txt: 2965) -.t.thor-media.ru -# ||t.fileplaneta.com^ (advblock.txt: 2963) -.t.fileplaneta.com -# ||t-kibo.com^ (advblock.txt: 2962) -.t-kibo.com -# ||sypleni.ru^ (advblock.txt: 2961) -.sypleni.ru -# ||supertura.com^ (advblock.txt: 2959) -.supertura.com -# ||superpromokody.com^ (advblock.txt: 2958) -.superpromokody.com -# ||superfastcomputer.ru^ (advblock.txt: 2957) -.superfastcomputer.ru -# ||super12.eu^ (advblock.txt: 2956) -.super12.eu -# ||sunrima.ru^ (advblock.txt: 2954) -.sunrima.ru -# ||striete.com^ (advblock.txt: 2952) -.striete.com -# ||striere.com^ (advblock.txt: 2951) -.striere.com -# ||steamac.com^ (advblock.txt: 2950) -.steamac.com -# ||stb.eat.int.ru^ (advblock.txt: 2949) -.stb.eat.int.ru -# ||stayeda.com^ (advblock.txt: 2948) -.stayeda.com -# ||startscript.ru^ (advblock.txt: 2946) -.startscript.ru -# ||standadv.com^ (advblock.txt: 2945) -.standadv.com -# ||stableprofit4you.com^ (advblock.txt: 2944) -.stableprofit4you.com -# ||specisez.com^ (advblock.txt: 2942) -.specisez.com -# ||spechete.com^ (advblock.txt: 2941) -.spechete.com -# ||spechee.com^ (advblock.txt: 2940) -.spechee.com -# ||sparical.com^ (advblock.txt: 2939) -.sparical.com -# ||sparelli.com^ (advblock.txt: 2938) -.sparelli.com -# ||sovietit.com^ (advblock.txt: 2937) -.sovietit.com -# ||sourdi.com^ (advblock.txt: 2935) -.sourdi.com -# ||sopital.com^ (advblock.txt: 2934) -.sopital.com -# ||sontere.com^ (advblock.txt: 2933) -.sontere.com -# ||sonnents.com^ (advblock.txt: 2932) -.sonnents.com -# ||some.demuz.ru^ (advblock.txt: 2931) -.some.demuz.ru -# ||soloway.su/rotator/ (advblock.txt: 2930) -.soloway.su/rotator/ -# ||sololslol.ru^ (advblock.txt: 2929) -.sololslol.ru -# ||solanog.com^ (advblock.txt: 2928) -.solanog.com -# ||soft-pays.ru^ (advblock.txt: 2927) -.soft-pays.ru -# ||sof32dsso.ru^ (advblock.txt: 2926) -.sof32dsso.ru -# ||sochetat.net^ (advblock.txt: 2925) -.sochetat.net -# ||snakeac.com^ (advblock.txt: 2924) -.snakeac.com -# ||smimarket.com^ (advblock.txt: 2923) -.smimarket.com -# ||slopeac.com^ (advblock.txt: 2920) -.slopeac.com -# ||slivz.com^ (advblock.txt: 2919) -.slivz.com -# ||sleepac.com^ (advblock.txt: 2917) -.sleepac.com -# ||slartibartfast.ru^ (advblock.txt: 2915) -.slartibartfast.ru -# ||sider.org.ru^ (advblock.txt: 2914) -.sider.org.ru -# ||sibiryak-soft.net^ (advblock.txt: 2913) -.sibiryak-soft.net -# ||shuffele.com^ (advblock.txt: 2912) -.shuffele.com -# ||showede.com^ (advblock.txt: 2911) -.showede.com -# ||showdysl.com^ (advblock.txt: 2910) -.showdysl.com -# ||shoveac.com^ (advblock.txt: 2909) -.shoveac.com -# ||shotyfy.com^ (advblock.txt: 2908) -.shotyfy.com -# ||shotad.com^ (advblock.txt: 2907) -.shotad.com -# ||shigopo.ru^ (advblock.txt: 2906) -.shigopo.ru -# ||sheat.ru^ (advblock.txt: 2905) -.sheat.ru -# ||sexvrusko.org^ (advblock.txt: 2904) -.sexvrusko.org -# ||sexshop4ik.ru^ (advblock.txt: 2903) -.sexshop4ik.ru -# ||sexshop4ik.ru.swtest.ru^ (advblock.txt: 2902) -.sexshop4ik.ru.swtest.ru -# ||servized.com^ (advblock.txt: 2901) -.servized.com -# ||serving.plexop.net^ (advblock.txt: 2900) -.serving.plexop.net -# ||server2034.ru^ (advblock.txt: 2899) -.server2034.ru -# ||serveac.com^ (advblock.txt: 2897) -.serveac.com -# ||sergh34ds.com^ (advblock.txt: 2894) -.sergh34ds.com -# ||serg.pics-money.ru^ (advblock.txt: 2893) -.serg.pics-money.ru -# ||senkevich-vk.net^ (advblock.txt: 2892) -.senkevich-vk.net -# ||seligers.ru^ (advblock.txt: 2891) -.seligers.ru -# ||seed.by^ (advblock.txt: 2888) -.seed.by -# ||searchfun.in^ (advblock.txt: 2887) -.searchfun.in -# ||samiana.com^ (advblock.txt: 2885) -.samiana.com -# ||saferedirrect.com^ (advblock.txt: 2882) -.saferedirrect.com -# ||saferedd.com^ (advblock.txt: 2881) -.saferedd.com -# ||ryehetywyt4.com^ (advblock.txt: 2877) -.ryehetywyt4.com -# ||rybkono.ru^ (advblock.txt: 2876) -.rybkono.ru -# ||rvzr-a.akamaihd.net^ (advblock.txt: 2875) -.rvzr-a.akamaihd.net -# ||rustiz.ru^ (advblock.txt: 2872) -.rustiz.ru -# ||ruigra.com^ (advblock.txt: 2869) -.ruigra.com -# ||ruad.net^ (advblock.txt: 2868) -.ruad.net -# ||rtmain.com^ (advblock.txt: 2867) -.rtmain.com -# ||rtdns.ru^ (advblock.txt: 2866) -.rtdns.ru -# ||rtbweb.com^ (advblock.txt: 2865) -.rtbweb.com -# ||rtbtraf.com^ (advblock.txt: 2864) -.rtbtraf.com -# ||rtbinternet.com^ (advblock.txt: 2863) -.rtbinternet.com -# ||rouhb.com^ (advblock.txt: 2860) -.rouhb.com -# ||rotationmessage.net^ (advblock.txt: 2859) -.rotationmessage.net -# ||rotation-web.net^ (advblock.txt: 2858) -.rotation-web.net -# ||rotation-message.net^ (advblock.txt: 2857) -.rotation-message.net -# ||rotation-media.net^ (advblock.txt: 2856) -.rotation-media.net -# ||rostok-de.com^ (advblock.txt: 2855) -.rostok-de.com -# ||roseemariepatterson.uk.to^ (advblock.txt: 2854) -.roseemariepatterson.uk.to -# ||rootinmyhead.ru^ (advblock.txt: 2853) -.rootinmyhead.ru -# ||romilit.com^ (advblock.txt: 2852) -.romilit.com -# ||rollovervk.net^ (advblock.txt: 2851) -.rollovervk.net -# ||rolloversl.net^ (advblock.txt: 2850) -.rolloversl.net -# ||rokno.com^ (advblock.txt: 2849) -.rokno.com -# ||robimobi.com^ (advblock.txt: 2848) -.robimobi.com -# ||rle.ru^ (advblock.txt: 2847) -.rle.ru -# ||richthof.com^ (advblock.txt: 2846) -.richthof.com -# ||rich-adv-code.net^ (advblock.txt: 2845) -.rich-adv-code.net -# ||reunice.com^ (advblock.txt: 2844) -.reunice.com -# ||returso.com^ (advblock.txt: 2843) -.returso.com -# ||reklamadarom.com^ (advblock.txt: 2841) -.reklamadarom.com -# ||regisg.com^ (advblock.txt: 2839) -.regisg.com -# ||redirrtosite.com^ (advblock.txt: 2838) -.redirrtosite.com -# ||redavu.ru^ (advblock.txt: 2836) -.redavu.ru -# ||realtraf9.ru^ (advblock.txt: 2834) -.realtraf9.ru -# ||realtraf3.ru^ (advblock.txt: 2833) -.realtraf3.ru -# ||realdomenclear.ru^ (advblock.txt: 2831) -.realdomenclear.ru -# ||ready4win.com^ (advblock.txt: 2830) -.ready4win.com -# ||reacten.com^ (advblock.txt: 2829) -.reacten.com -# ||rb-net.com^ (advblock.txt: 2827) -.rb-net.com -# ||ravishstroke.in^ (advblock.txt: 2825) -.ravishstroke.in -# ||qrstes.com^ (advblock.txt: 2821) -.qrstes.com -# ||qrdeom.com^ (advblock.txt: 2820) -.qrdeom.com -# ||qractv.com^ (advblock.txt: 2819) -.qractv.com -# ||qmebelist.ru^ (advblock.txt: 2818) -.qmebelist.ru -# ||qcvdwtpnit.ru^ (advblock.txt: 2816) -.qcvdwtpnit.ru -# ||qaadv.com^ (advblock.txt: 2814) -.qaadv.com -# ||puttyac.com^ (advblock.txt: 2813) -.puttyac.com -# ||publicitysmart.com^ (advblock.txt: 2811) -.publicitysmart.com -# ||ptredir.com^ (advblock.txt: 2810) -.ptredir.com -# ||psnets.com^ (advblock.txt: 2809) -.psnets.com -# ||prozapas.dn.ua^ (advblock.txt: 2804) -.prozapas.dn.ua -# ||protrafv2.com^ (advblock.txt: 2803) -.protrafv2.com -# ||proteaser.com^ (advblock.txt: 2802) -.proteaser.com -# ||proravnovesie.ru^ (advblock.txt: 2801) -.proravnovesie.ru -# ||proravenstvo.ru^ (advblock.txt: 2800) -.proravenstvo.ru -# ||promobuster.org^ (advblock.txt: 2796) -.promobuster.org -# ||promoboom.org^ (advblock.txt: 2795) -.promoboom.org -# ||promoblocks.ru^ (advblock.txt: 2794) -.promoblocks.ru -# ||promobit.pw^ (advblock.txt: 2793) -.promobit.pw -# ||promedia-click.ru^ (advblock.txt: 2792) -.promedia-click.ru -# ||proligtb.com^ (advblock.txt: 2791) -.proligtb.com -# ||priesty.com^ (advblock.txt: 2790) -.priesty.com -# ||precision-machining-tw.com^ (advblock.txt: 2789) -.precision-machining-tw.com -# ||prbn.ru^ (advblock.txt: 2788) -.prbn.ru -# ||pr28.com^ (advblock.txt: 2787) -.pr28.com -# ||povtotse.ru^ (advblock.txt: 2784) -.povtotse.ru -# ||poulop.com^ (advblock.txt: 2783) -.poulop.com -# ||popunder-mladnet.medialand.ru (advblock.txt: 2781) -.popunder-mladnet.medialand.ru*. -# ||pop-under.ru^ (advblock.txt: 2780) -.pop-under.ru -# ||poollast.com^ (advblock.txt: 2779) -.poollast.com -# ||pomtiy.com^ (advblock.txt: 2778) -.pomtiy.com -# ||polisrtb.com^ (advblock.txt: 2777) -.polisrtb.com -# ||polimadv.com^ (advblock.txt: 2776) -.polimadv.com -# ||pokitom.com^ (advblock.txt: 2774) -.pokitom.com -# ||poketall.ru^ (advblock.txt: 2773) -.poketall.ru -# ||pointrtb.com^ (advblock.txt: 2772) -.pointrtb.com -# ||pointclc.com^ (advblock.txt: 2771) -.pointclc.com -# ||plus-2launch.biz^ (advblock.txt: 2770) -.plus-2launch.biz -# ||plomihy.com^ (advblock.txt: 2768) -.plomihy.com -# ||pketred.com^ (advblock.txt: 2765) -.pketred.com -# ||piroji.com^ (advblock.txt: 2764) -.piroji.com -# ||pidarunki.ru^ (advblock.txt: 2763) -.pidarunki.ru -# ||pichyefu.ru^ (advblock.txt: 2762) -.pichyefu.ru -# ||peoplemobile.ru^ (advblock.txt: 2761) -.peoplemobile.ru -# ||pdmayt.com^ (advblock.txt: 2759) -.pdmayt.com -# ||pcads.ru^ (advblock.txt: 2758) -.pcads.ru -# ||pcable.ru^ (advblock.txt: 2757) -.pcable.ru -# ||pazt.in^ (advblock.txt: 2756) -.pazt.in -# ||paymonsters.biz^ (advblock.txt: 2755) -.paymonsters.biz -# ||paybrides.org^ (advblock.txt: 2754) -.paybrides.org -# ||payandpray.ru^ (advblock.txt: 2753) -.payandpray.ru -# ||pautina.mobi^ (advblock.txt: 2752) -.pautina.mobi -# ||pastilon.com^ (advblock.txt: 2751) -.pastilon.com -# ||paramedjo.com^ (advblock.txt: 2750) -.paramedjo.com -# ||palandan.com^ (advblock.txt: 2749) -.palandan.com -# ||p2m0001.com^ (advblock.txt: 2748) -.p2m0001.com -# ||oxn.gerkon.eu^ (advblock.txt: 2746) -.oxn.gerkon.eu -# ||overridingnichts.in^ (advblock.txt: 2745) -.overridingnichts.in -# ||ovap.in^ (advblock.txt: 2744) -.ovap.in -# ||outwitch.com^ (advblock.txt: 2743) -.outwitch.com -# ||ou2ie.ru^ (advblock.txt: 2742) -.ou2ie.ru -# ||orbit.lun.ua^ (advblock.txt: 2740) -.orbit.lun.ua -# ||opyavar.ru^ (advblock.txt: 2738) -.opyavar.ru -# ||opresat.ru^ (advblock.txt: 2737) -.opresat.ru -# ||openmace.net^ (advblock.txt: 2736) -.openmace.net -# ||opendone.net^ (advblock.txt: 2735) -.opendone.net -# ||ooredrr.com^ (advblock.txt: 2734) -.ooredrr.com -# ||onlinerotator.net^ (advblock.txt: 2732) -.onlinerotator.net -# ||onlineredirr.com^ (advblock.txt: 2731) -.onlineredirr.com -# ||online-path.com^ (advblock.txt: 2730) -.online-path.com -# ||oneund.ru^ (advblock.txt: 2729) -.oneund.ru -# ||oneund.com^ (advblock.txt: 2728) -.oneund.com -# ||one-bmedia.ru^ (advblock.txt: 2727) -.one-bmedia.ru -# ||omoby.net^ (advblock.txt: 2725) -.omoby.net -# ||olizyr.com^ (advblock.txt: 2724) -.olizyr.com -# ||oirplane.com^ (advblock.txt: 2723) -.oirplane.com -# ||odinkod.ru^ (advblock.txt: 2722) -.odinkod.ru -# ||od3ai.ru^ (advblock.txt: 2721) -.od3ai.ru -# ||obnale.ru^ (advblock.txt: 2719) -.obnale.ru -# ||nyyed.com^ (advblock.txt: 2717) -.nyyed.com -# ||nwmum.com^ (advblock.txt: 2716) -.nwmum.com -# ||nvjqm.com^ (advblock.txt: 2715) -.nvjqm.com -# ||numking.com^ (advblock.txt: 2714) -.numking.com -# ||numberia.com^ (advblock.txt: 2713) -.numberia.com -# ||nuigyin.net^ (advblock.txt: 2712) -.nuigyin.net -# ||nrged.com^ (advblock.txt: 2710) -.nrged.com -# ||nostushi.ru^ (advblock.txt: 2709) -.nostushi.ru -# ||noptes.ru^ (advblock.txt: 2708) -.noptes.ru -# ||nonoqcm.net^ (advblock.txt: 2707) -.nonoqcm.net -# ||nolix.ru^ (advblock.txt: 2706) -.nolix.ru -# ||noblok.com^ (advblock.txt: 2705) -.noblok.com -# ||nihewfi.net^ (advblock.txt: 2704) -.nihewfi.net -# ||nigvbyd.net^ (advblock.txt: 2703) -.nigvbyd.net -# ||newsteaser.ru^ (advblock.txt: 2700) -.newsteaser.ru -# ||newsmarket.pixarea.ru^ (advblock.txt: 2699) -.newsmarket.pixarea.ru -# ||news-announce.org^ (advblock.txt: 2697) -.news-announce.org -# ||newlixica.com^ (advblock.txt: 2696) -.newlixica.com -# ||netrotator.net^ (advblock.txt: 2694) -.netrotator.net -# ||nepalon.com^ (advblock.txt: 2693) -.nepalon.com -# ||neotizer.com^ (advblock.txt: 2692) -.neotizer.com -# ||neomion.com^ (advblock.txt: 2691) -.neomion.com -# ||naxerposlan.com^ (advblock.txt: 2690) -.naxerposlan.com -# ||nav-links.com^ (advblock.txt: 2689) -.nav-links.com -# ||nasledstvo.int.ru^ (advblock.txt: 2688) -.nasledstvo.int.ru -# ||naiton.ru^*/lookbanner/ (advblock.txt: 2687) -.naiton.ru/.*/lookbanner/ -# ||mytraff.net^$~popup,popup (advblock.txt: 2684) -.mytraff.net -# ||mytizer.com^ (advblock.txt: 2683) -.mytizer.com -# ||mynagor.com^ (advblock.txt: 2682) -.mynagor.com -# ||myads.ru^ (advblock.txt: 2679) -.myads.ru -# ||mxpopad.com^ (advblock.txt: 2677) -.mxpopad.com -# ||muzomuz.ru^ (advblock.txt: 2675) -.muzomuz.ru -# ||muzokit.ru^ (advblock.txt: 2674) -.muzokit.ru -# ||musicmaargarit63.uk.to^ (advblock.txt: 2672) -.musicmaargarit63.uk.to -# ||mukipol.com^ (advblock.txt: 2671) -.mukipol.com -# ||mubra.ru^ (advblock.txt: 2670) -.mubra.ru -# ||mscimg.com^ (advblock.txt: 2668) -.mscimg.com -# ||morenews4.net^ (advblock.txt: 2666) -.morenews4.net -# ||morenews3.net^ (advblock.txt: 2665) -.morenews3.net -# ||morenews2.net^ (advblock.txt: 2664) -.morenews2.net -# ||morenews1.net^ (advblock.txt: 2663) -.morenews1.net -# ||moreget.net^ (advblock.txt: 2662) -.moreget.net -# ||more427.net^ (advblock.txt: 2661) -.more427.net -# ||more152.net^ (advblock.txt: 2660) -.more152.net -# ||moonhappy.ru^ (advblock.txt: 2659) -.moonhappy.ru -# ||monox.org/getcode. (advblock.txt: 2658) -.monox.org/getcode\. -# ||modverka.ru^ (advblock.txt: 2656) -.modverka.ru -# ||modelatos.com^ (advblock.txt: 2655) -.modelatos.com -# ||mobyrol.com^ (advblock.txt: 2654) -.mobyrol.com -# ||mobred.net^ (advblock.txt: 2653) -.mobred.net -# ||mobraner.com^ (advblock.txt: 2652) -.mobraner.com -# ||mobnumbers.com^ (advblock.txt: 2651) -.mobnumbers.com -# ||mobirollru.com^ (advblock.txt: 2649) -.mobirollru.com -# ||mobirollcom.ru^ (advblock.txt: 2648) -.mobirollcom.ru -# ||mobiloba.com^ (advblock.txt: 2646) -.mobiloba.com -# ||mobiledirectors.com^ (advblock.txt: 2645) -.mobiledirectors.com -# ||mobikont.com^ (advblock.txt: 2644) -.mobikont.com -# ||mobidump.com^ (advblock.txt: 2643) -.mobidump.com -# ||mobbober.com^ (advblock.txt: 2642) -.mobbober.com -# ||mobapeople.com^ (advblock.txt: 2641) -.mobapeople.com -# ||mobalert.net^ (advblock.txt: 2640) -.mobalert.net -# ||mob2web.com^ (advblock.txt: 2639) -.mob2web.com -# ||mirskidok.net^ (advblock.txt: 2637) -.mirskidok.net -# ||miokoo.com^ (advblock.txt: 2636) -.miokoo.com -# ||midlemee.ru^ (advblock.txt: 2635) -.midlemee.ru -# ||microads.ru^ (advblock.txt: 2634) -.microads.ru -# ||mhkx4.ru^ (advblock.txt: 2633) -.mhkx4.ru -# ||mgogo.ru^ (advblock.txt: 2632) -.mgogo.ru -# ||mezima.com^ (advblock.txt: 2631) -.mezima.com -# ||mestmaster.ru^ (advblock.txt: 2630) -.mestmaster.ru -# ||message-site.net^ (advblock.txt: 2629) -.message-site.net -# ||mesopo.ru^ (advblock.txt: 2628) -.mesopo.ru -# ||meow-x.com^ (advblock.txt: 2627) -.meow-x.com -# ||menuse.ru^ (advblock.txt: 2626) -.menuse.ru -# ||mendir.ru^ (advblock.txt: 2625) -.mendir.ru -# ||menato.ru^ (advblock.txt: 2624) -.menato.ru -# ||mementes.com^ (advblock.txt: 2623) -.mementes.com -# ||mekadr.com^ (advblock.txt: 2622) -.mekadr.com -# ||megasliv.com^ (advblock.txt: 2621) -.megasliv.com -# ||megartb.com^ (advblock.txt: 2620) -.megartb.com -# ||megaindex.ru*/banner/ (advblock.txt: 2619) -.megaindex.ru*./(.*/)?banner/ -# ||megactds6.net^ (advblock.txt: 2618) -.megactds6.net -# ||medpiar.ru^ (advblock.txt: 2617) -.medpiar.ru -# ||medigaly.com^ (advblock.txt: 2616) -.medigaly.com -# ||mediaunder.us^$~popup,popup (advblock.txt: 2615) -.mediaunder.us -# ||mediaunder.org^ (advblock.txt: 2614) -.mediaunder.org -# ||mediateas.com^ (advblock.txt: 2612) -.mediateas.com -# ||mediarotator.ru^ (advblock.txt: 2610) -.mediarotator.ru -# ||mediarotator.net^ (advblock.txt: 2609) -.mediarotator.net -# ||mediarichcode.ru^ (advblock.txt: 2608) -.mediarichcode.ru -# ||mediarich.ws^ (advblock.txt: 2607) -.mediarich.ws -# ||mediarich.us^ (advblock.txt: 2606) -.mediarich.us -# ||mediarich.ru^ (advblock.txt: 2605) -.mediarich.ru -# ||mediarich.cc^ (advblock.txt: 2604) -.mediarich.cc -# ||mediarich-code.ru^ (advblock.txt: 2603) -.mediarich-code.ru -# ||medialand.ru/code? (advblock.txt: 2600) -.medialand.ru/code\? -# ||mediaip.ru^ (advblock.txt: 2598) -.mediaip.ru -# ||mediadar.ru^ (advblock.txt: 2597) -.mediadar.ru -# ||mediacot.com^ (advblock.txt: 2596) -.mediacot.com -# ||media.adrcdn.com^ (advblock.txt: 2595) -.media.adrcdn.com -# ||media-rotator.net^ (advblock.txt: 2593) -.media-rotator.net -# ||media-rotation.net^ (advblock.txt: 2592) -.media-rotation.net -# ||media-rich.ru^ (advblock.txt: 2591) -.media-rich.ru -# ||media-kod.net^ (advblock.txt: 2590) -.media-kod.net -# ||med22iwqeq.ru^ (advblock.txt: 2588) -.med22iwqeq.ru -# ||mdlo324fsd.ru^ (advblock.txt: 2587) -.mdlo324fsd.ru -# ||mb.vesti.ru^ (advblock.txt: 2585) -.mb.vesti.ru -# ||mb.rian.ru^ (advblock.txt: 2584) -.mb.rian.ru -# ||mb.interfax.ru^ (advblock.txt: 2583) -.mb.interfax.ru -# ||mb.akado.ru^ (advblock.txt: 2582) -.mb.akado.ru -# ||maxtraff.com^$~popup,popup (advblock.txt: 2580) -.maxtraff.com -# ||maxforta.com^ (advblock.txt: 2579) -.maxforta.com -# ||mateast.com^ (advblock.txt: 2578) -.mateast.com -# ||masudel.com^ (advblock.txt: 2577) -.masudel.com -# ||masterconvert.ru^ (advblock.txt: 2575) -.masterconvert.ru -# ||martakava.ru^ (advblock.txt: 2574) -.martakava.ru -# ||markhab.ru^ (advblock.txt: 2573) -.markhab.ru -# ||manuelu.com^ (advblock.txt: 2572) -.manuelu.com -# ||managedcollapsed.in^ (advblock.txt: 2571) -.managedcollapsed.in -# ||mamypos.com^ (advblock.txt: 2570) -.mamypos.com -# ||mainclc.com^ (advblock.txt: 2569) -.mainclc.com -# ||magicanfy.com^ (advblock.txt: 2568) -.magicanfy.com -# ||mabirol.com^ (advblock.txt: 2566) -.mabirol.com -# ||lydiz.com^ (advblock.txt: 2564) -.lydiz.com -# ||lycosy.com^ (advblock.txt: 2563) -.lycosy.com -# ||lycosu.com^ (advblock.txt: 2562) -.lycosu.com -# ||lycodz.com^ (advblock.txt: 2561) -.lycodz.com -# ||lvkwz.com^ (advblock.txt: 2559) -.lvkwz.com -# ||luxtraffic.ru^ (advblock.txt: 2558) -.luxtraffic.ru -# ||luredac.com^ (advblock.txt: 2556) -.luredac.com -# ||luisardo.com^ (advblock.txt: 2555) -.luisardo.com -# ||lugiy.ru^ (advblock.txt: 2554) -.lugiy.ru -# ||luckysearcher.ru^ (advblock.txt: 2553) -.luckysearcher.ru -# ||luckyade.ru^ (advblock.txt: 2552) -.luckyade.ru -# ||lstay.com^ (advblock.txt: 2551) -.lstay.com -# ||lotomoney.biz^ (advblock.txt: 2549) -.lotomoney.biz -# ||lopytol.com^ (advblock.txt: 2548) -.lopytol.com -# ||loponop.com^ (advblock.txt: 2547) -.loponop.com -# ||lopitus.com^ (advblock.txt: 2546) -.lopitus.com -# ||lookrtb.com^ (advblock.txt: 2545) -.lookrtb.com -# ||looker9.ru^ (advblock.txt: 2544) -.looker9.ru -# ||look4file.ru^ (advblock.txt: 2543) -.look4file.ru -# ||loneday.com^ (advblock.txt: 2542) -.loneday.com -# ||locoday.com^ (advblock.txt: 2540) -.locoday.com -# ||locandito.com^ (advblock.txt: 2539) -.locandito.com -# ||lmcuba.us^ (advblock.txt: 2538) -.lmcuba.us -# ||ljteas.com^ (advblock.txt: 2537) -.ljteas.com -# ||livingy.com^ (advblock.txt: 2536) -.livingy.com -# ||livea.ru^ (advblock.txt: 2534) -.livea.ru -# ||live-advert.net^ (advblock.txt: 2533) -.live-advert.net -# ||litiumo.com^ (advblock.txt: 2532) -.litiumo.com -# ||listof.mobi^ (advblock.txt: 2531) -.listof.mobi -# ||lisamobile.ru^ (advblock.txt: 2530) -.lisamobile.ru -# ||liolexina.com^ (advblock.txt: 2529) -.liolexina.com -# ||linkupper.ru^ (advblock.txt: 2527) -.linkupper.ru -# ||linksviewer2013.com^ (advblock.txt: 2525) -.linksviewer2013.com -# ||linkpeoples.com^ (advblock.txt: 2522) -.linkpeoples.com -# ||linkodir.ru^ (advblock.txt: 2521) -.linkodir.ru -# ||linkerlink.ru^ (advblock.txt: 2520) -.linkerlink.ru -# ||linkerfast.ru^ (advblock.txt: 2519) -.linkerfast.ru -# ||limonadsources.ru^ (advblock.txt: 2517) -.limonadsources.ru -# ||likondok.com^ (advblock.txt: 2515) -.likondok.com -# ||liendans.com^ (advblock.txt: 2514) -.liendans.com -# ||lidicando.com^ (advblock.txt: 2513) -.lidicando.com -# ||lidetds.net^ (advblock.txt: 2512) -.lidetds.net -# ||lexament.com^ (advblock.txt: 2511) -.lexament.com -# ||levrico.com^ (advblock.txt: 2510) -.levrico.com -# ||leruanmarket.ru^ (advblock.txt: 2508) -.leruanmarket.ru -# ||lequ6.ru^ (advblock.txt: 2507) -.lequ6.ru -# ||leforma.com^ (advblock.txt: 2505) -.leforma.com -# ||leashac.com^ (advblock.txt: 2504) -.leashac.com -# ||lcads.ru^ (advblock.txt: 2502) -.lcads.ru -# ||laughtill.net^ (advblock.txt: 2501) -.laughtill.net -# ||largelydi.com^ (advblock.txt: 2500) -.largelydi.com -# ||lareson.com^ (advblock.txt: 2499) -.lareson.com -# ||lapeduzis.org^ (advblock.txt: 2497) -.lapeduzis.org -# ||langueur.com^ (advblock.txt: 2496) -.langueur.com -# ||ladytizer.com^ (advblock.txt: 2495) -.ladytizer.com -# ||ladycoin.ru^ (advblock.txt: 2494) -.ladycoin.ru -# ||ladyclicks8.ru^ (advblock.txt: 2493) -.ladyclicks8.ru -# ||ladyclicks2.ru^ (advblock.txt: 2492) -.ladyclicks2.ru -# ||ladyclicks.ru^ (advblock.txt: 2491) -.ladyclicks.ru -# ||ladycash.ru^ (advblock.txt: 2490) -.ladycash.ru -# ||lady-clicks.ru^ (advblock.txt: 2488) -.lady-clicks.ru -# ||lachest.com^ (advblock.txt: 2486) -.lachest.com -# ||lachee.com^ (advblock.txt: 2485) -.lachee.com -# ||lacest.com^ (advblock.txt: 2484) -.lacest.com -# ||lacemme.com^ (advblock.txt: 2483) -.lacemme.com -# ||lacembre.com^ (advblock.txt: 2482) -.lacembre.com -# ||labadon.com^ (advblock.txt: 2481) -.labadon.com -# ||kvvadrat.net^ (advblock.txt: 2480) -.kvvadrat.net -# ||kvihit.com^ (advblock.txt: 2479) -.kvihit.com -# ||krab-studio.ru^ (advblock.txt: 2476) -.krab-studio.ru -# ||koviovius.com^ (advblock.txt: 2475) -.koviovius.com -# ||korenizsemi.net^ (advblock.txt: 2474) -.korenizsemi.net -# ||koluty.com^ (advblock.txt: 2473) -.koluty.com -# ||kolitter.com^ (advblock.txt: 2472) -.kolitter.com -# ||kolites.com^ (advblock.txt: 2471) -.kolites.com -# ||koliser.com^ (advblock.txt: 2470) -.koliser.com -# ||kohx3.ru^ (advblock.txt: 2469) -.kohx3.ru -# ||koe-dv.net^ (advblock.txt: 2468) -.koe-dv.net -# ||knewy.com^ (advblock.txt: 2467) -.knewy.com -# ||kma1.biz^ (advblock.txt: 2465) -.kma1.biz -# ||klyuchev.in.ua^ (advblock.txt: 2464) -.klyuchev.in.ua -# ||kjgh5o.com^ (advblock.txt: 2463) -.kjgh5o.com -# ||kiworeequnasaw.info^ (advblock.txt: 2462) -.kiworeequnasaw.info -# ||kitopr.com^ (advblock.txt: 2461) -.kitopr.com -# ||kistured.com^ (advblock.txt: 2460) -.kistured.com -# ||kisakuku.org^ (advblock.txt: 2459) -.kisakuku.org -# ||kinopromobase2.ru^ (advblock.txt: 2458) -.kinopromobase2.ru -# ||kinopromobase.ru^ (advblock.txt: 2457) -.kinopromobase.ru -# ||kinokayf.com^ (advblock.txt: 2456) -.kinokayf.com -# ||kinoget.tv^ (advblock.txt: 2455) -.kinoget.tv -# ||kimus.ru^ (advblock.txt: 2453) -.kimus.ru -# ||kadavara.com^ (advblock.txt: 2452) -.kadavara.com -# ||kadanoda.ru^ (advblock.txt: 2451) -.kadanoda.ru -# ||jxrhjcb.biz^ (advblock.txt: 2449) -.jxrhjcb.biz -# ||jutulep.com^ (advblock.txt: 2448) -.jutulep.com -# ||jump-wap.com^ (advblock.txt: 2447) -.jump-wap.com -# ||jsutils.net^ (advblock.txt: 2446) -.jsutils.net -# ||jsc.tovarro.com^ (advblock.txt: 2445) -.jsc.tovarro.com -# ||jrfced.com^ (advblock.txt: 2444) -.jrfced.com -# ||jorjfix.ru^ (advblock.txt: 2442) -.jorjfix.ru -# ||jkolp.com^ (advblock.txt: 2441) -.jkolp.com -# ||jjabr.com^ (advblock.txt: 2440) -.jjabr.com -# ||jfveak.com^ (advblock.txt: 2439) -.jfveak.com -# ||jfduv7.com^ (advblock.txt: 2438) -.jfduv7.com -# ||jbugk.com^ (advblock.txt: 2437) -.jbugk.com -# ||jadedi.com^ (advblock.txt: 2436) -.jadedi.com -# ||ixtyted.ru^ (advblock.txt: 2435) -.ixtyted.ru -# ||ivantat.com^ (advblock.txt: 2433) -.ivantat.com -# ||ivanie.com^ (advblock.txt: 2432) -.ivanie.com -# ||ivances.com^ (advblock.txt: 2431) -.ivances.com -# ||ivancept.com^ (advblock.txt: 2430) -.ivancept.com -# ||istokiku.ru^ (advblock.txt: 2428) -.istokiku.ru -# ||islamclick.ru^ (advblock.txt: 2427) -.islamclick.ru -# ||iredirr.com^ (advblock.txt: 2426) -.iredirr.com -# ||ipmarte.ru^ (advblock.txt: 2425) -.ipmarte.ru -# ||intimcity.net^ (advblock.txt: 2424) -.intimcity.net -# ||intim40.com^ (advblock.txt: 2422) -.intim40.com -# ||interieu.com^ (advblock.txt: 2421) -.interieu.com -# ||inferalton.com^ (advblock.txt: 2419) -.inferalton.com -# ||inctivee.com^ (advblock.txt: 2416) -.inctivee.com -# ||incielle.com^ (advblock.txt: 2415) -.incielle.com -# ||impromot.com^ (advblock.txt: 2414) -.impromot.com -# ||imparfum.com^ (advblock.txt: 2413) -.imparfum.com -# ||impannon.com^ (advblock.txt: 2412) -.impannon.com -# ||imamby.ru^ (advblock.txt: 2411) -.imamby.ru -# ||imagans.com^ (advblock.txt: 2409) -.imagans.com -# ||im9-tub.com^ (advblock.txt: 2408) -.im9-tub.com -# ||im8-tub.com^ (advblock.txt: 2407) -.im8-tub.com -# ||im7-tub.com^ (advblock.txt: 2406) -.im7-tub.com -# ||im6-tub.com^ (advblock.txt: 2405) -.im6-tub.com -# ||im5-tub.com^ (advblock.txt: 2404) -.im5-tub.com -# ||im4-tub.com^ (advblock.txt: 2403) -.im4-tub.com -# ||im3-tub.com^ (advblock.txt: 2402) -.im3-tub.com -# ||im2-tub.com^ (advblock.txt: 2401) -.im2-tub.com -# ||im1-tub.com^ (advblock.txt: 2400) -.im1-tub.com -# ||iluzur.com^ (advblock.txt: 2399) -.iluzur.com -# ||ilopotun.com^ (advblock.txt: 2398) -.ilopotun.com -# ||illiap.com^ (advblock.txt: 2397) -.illiap.com -# ||illiages.com^ (advblock.txt: 2396) -.illiages.com -# ||illiage.com^ (advblock.txt: 2395) -.illiage.com -# ||ikolop.com^ (advblock.txt: 2393) -.ikolop.com -# ||ikk2gh.eu^ (advblock.txt: 2392) -.ikk2gh.eu -# ||ikersont.com^ (advblock.txt: 2391) -.ikersont.com -# ||ihlasbe.ru^ (advblock.txt: 2390) -.ihlasbe.ru -# ||icqadvert.net^ (advblock.txt: 2389) -.icqadvert.net -# ||icqadve.net^ (advblock.txt: 2388) -.icqadve.net -# ||icqadv.net^ (advblock.txt: 2387) -.icqadv.net -# ||icqad018.net^ (advblock.txt: 2386) -.icqad018.net -# ||icqad017.net^ (advblock.txt: 2385) -.icqad017.net -# ||icqad016.net^ (advblock.txt: 2384) -.icqad016.net -# ||icqad015.net^ (advblock.txt: 2383) -.icqad015.net -# ||icqad014.net^ (advblock.txt: 2382) -.icqad014.net -# ||icqad013.net^ (advblock.txt: 2381) -.icqad013.net -# ||icqad012.net^ (advblock.txt: 2380) -.icqad012.net -# ||icqad011.net^ (advblock.txt: 2379) -.icqad011.net -# ||icqad010.net^ (advblock.txt: 2378) -.icqad010.net -# ||icqad009.net^ (advblock.txt: 2377) -.icqad009.net -# ||icqad008.net^ (advblock.txt: 2376) -.icqad008.net -# ||icqad007.net^ (advblock.txt: 2375) -.icqad007.net -# ||icqad006.net^ (advblock.txt: 2374) -.icqad006.net -# ||icqad005.net^ (advblock.txt: 2373) -.icqad005.net -# ||icqad004.net^ (advblock.txt: 2372) -.icqad004.net -# ||icqad003.net^ (advblock.txt: 2371) -.icqad003.net -# ||icqad002.net^ (advblock.txt: 2370) -.icqad002.net -# ||icqad001.net^ (advblock.txt: 2369) -.icqad001.net -# ||iclckk.com^ (advblock.txt: 2368) -.iclckk.com -# ||iberacon.com^ (advblock.txt: 2367) -.iberacon.com -# ||iadv.biz^ (advblock.txt: 2366) -.iadv.biz -# ||i-adv.biz^ (advblock.txt: 2364) -.i-adv.biz -# ||humanredirect.ru^ (advblock.txt: 2362) -.humanredirect.ru -# ||hugedi.com^ (advblock.txt: 2361) -.hugedi.com -# ||houmekredit.ru^ (advblock.txt: 2360) -.houmekredit.ru -# ||hopedac.com^ (advblock.txt: 2359) -.hopedac.com -# ||hommunit.com^ (advblock.txt: 2358) -.hommunit.com -# ||hommisse.com^ (advblock.txt: 2357) -.hommisse.com -# ||holysts.com^ (advblock.txt: 2356) -.holysts.com -# ||hoilop.com^ (advblock.txt: 2355) -.hoilop.com -# ||hnixr.com^ (advblock.txt: 2354) -.hnixr.com -# ||hkik.ru^ (advblock.txt: 2353) -.hkik.ru -# ||hjiss.com^ (advblock.txt: 2352) -.hjiss.com -# ||hittoadv.com^ (advblock.txt: 2351) -.hittoadv.com -# ||hit-star.ru^ (advblock.txt: 2350) -.hit-star.ru -# ||highlightingalive.in^ (advblock.txt: 2349) -.highlightingalive.in -# ||heelwork.com^ (advblock.txt: 2346) -.heelwork.com -# ||head-gshame.in^ (advblock.txt: 2345) -.head-gshame.in -# ||hay-borsa.ru^ (advblock.txt: 2344) -.hay-borsa.ru -# ||hannist.com^ (advblock.txt: 2343) -.hannist.com -# ||hamphlete.com^ (advblock.txt: 2342) -.hamphlete.com -# ||hadoman.net^ (advblock.txt: 2341) -.hadoman.net -# ||h3a.t.r.vpath.net^ (advblock.txt: 2340) -.h3a.t.r.vpath.net -# ||gueurs.com^ (advblock.txt: 2338) -.gueurs.com -# ||gueur.com^ (advblock.txt: 2337) -.gueur.com -# ||grteab.com^ (advblock.txt: 2336) -.grteab.com -# ||grt02.org^ (advblock.txt: 2335) -.grt02.org -# ||gredinatib.org^ (advblock.txt: 2333) -.gredinatib.org -# ||gredinatib.biz^ (advblock.txt: 2332) -.gredinatib.biz -# ||grandmediatizer.com^ (advblock.txt: 2331) -.grandmediatizer.com -# ||grainac.com^ (advblock.txt: 2330) -.grainac.com -# ||gotoredr.com^ (advblock.txt: 2328) -.gotoredr.com -# ||goossb.com^ (advblock.txt: 2327) -.goossb.com -# ||googlsyndication.com^ (advblock.txt: 2326) -.googlsyndication.com -# ||good.win-yagd.ru^ (advblock.txt: 2324) -.good.win-yagd.ru -# ||good-traf.ru^ (advblock.txt: 2323) -.good-traf.ru -# ||gonews1.net^ (advblock.txt: 2322) -.gonews1.net -# ||gokliks.ru^$~popup,popup (advblock.txt: 2321) -.gokliks.ru -# ||go7media.ru^ (advblock.txt: 2320) -.go7media.ru -# ||go.unas.ru^ (advblock.txt: 2319) -.go.unas.ru -# ||go.adjika.net^ (advblock.txt: 2317) -.go.adjika.net -# ||gmelvi.ru^ (advblock.txt: 2316) -.gmelvi.ru -# ||glue-length.biz^ (advblock.txt: 2315) -.glue-length.biz -# ||glordd.com^ (advblock.txt: 2314) -.glordd.com -# ||globeac.com^ (advblock.txt: 2313) -.globeac.com -# ||globalteaser.ru^ (advblock.txt: 2312) -.globalteaser.ru -# ||glavrich.com^ (advblock.txt: 2311) -.glavrich.com -# ||gjslm.com^ (advblock.txt: 2309) -.gjslm.com -# ||girlz42night.biz^ (advblock.txt: 2307) -.girlz42night.biz -# ||giotyo.com^ (advblock.txt: 2306) -.giotyo.com -# ||giosany.com^ (advblock.txt: 2305) -.giosany.com -# ||giokole.com^ (advblock.txt: 2304) -.giokole.com -# ||gingardo.com^ (advblock.txt: 2303) -.gingardo.com -# ||ghaires.com^ (advblock.txt: 2302) -.ghaires.com -# ||gddrio.com^ (advblock.txt: 2298) -.gddrio.com -# ||gatgirl.com^ (advblock.txt: 2296) -.gatgirl.com -# ||gateway-04.com^ (advblock.txt: 2295) -.gateway-04.com -# ||gateway-03.com^ (advblock.txt: 2294) -.gateway-03.com -# ||gateway-02.com^ (advblock.txt: 2293) -.gateway-02.com -# ||gameadnet.ru^ (advblock.txt: 2291) -.gameadnet.ru -# ||game-tester.ru^ (advblock.txt: 2290) -.game-tester.ru -# ||gainclick.co^ (advblock.txt: 2289) -.gainclick.co -# ||gainclick.biz^ (advblock.txt: 2288) -.gainclick.biz -# ||gagnifie.com^ (advblock.txt: 2287) -.gagnifie.com -# ||fyrafi.ru^ (advblock.txt: 2286) -.fyrafi.ru -# ||fxhoog.com^ (advblock.txt: 2285) -.fxhoog.com -# ||fulldl.net^ (advblock.txt: 2284) -.fulldl.net -# ||fstredirr.com^ (advblock.txt: 2282) -.fstredirr.com -# ||frmsafe.com^ (advblock.txt: 2281) -.frmsafe.com -# ||freddyman.com^ (advblock.txt: 2280) -.freddyman.com -# ||fpmef.com^ (advblock.txt: 2279) -.fpmef.com -# ||four8city.in^ (advblock.txt: 2278) -.four8city.in -# ||foundtr.com^ (advblock.txt: 2277) -.foundtr.com -# ||fmusive.ru^ (advblock.txt: 2272) -.fmusive.ru -# ||flushmviolent.org^ (advblock.txt: 2271) -.flushmviolent.org -# ||flashteaser.com^ (advblock.txt: 2270) -.flashteaser.com -# ||flascom.com^ (advblock.txt: 2269) -.flascom.com -# ||fkhkjhj.biz^ (advblock.txt: 2268) -.fkhkjhj.biz -# ||fixzila.com^ (advblock.txt: 2267) -.fixzila.com -# ||fityjhnl.biz^ (advblock.txt: 2266) -.fityjhnl.biz -# ||fitbut.ru^ (advblock.txt: 2265) -.fitbut.ru -# ||fireb2.com^ (advblock.txt: 2264) -.fireb2.com -# ||fireb1.com^ (advblock.txt: 2263) -.fireb1.com -# ||findpre.net^ (advblock.txt: 2261) -.findpre.net -# ||findfor.net^ (advblock.txt: 2260) -.findfor.net -# ||fetalli.com^ (advblock.txt: 2259) -.fetalli.com -# ||fdrschv.ru^ (advblock.txt: 2258) -.fdrschv.ru -# ||fdgeen.com^ (advblock.txt: 2257) -.fdgeen.com -# ||faxso.ru^ (advblock.txt: 2256) -.faxso.ru -# ||fastsearcher.ru^ (advblock.txt: 2255) -.fastsearcher.ru -# ||farecnop.loftlm.ru^ (advblock.txt: 2254) -.farecnop.loftlm.ru -# ||faggrim.com^ (advblock.txt: 2253) -.faggrim.com -# ||fafggde.net^ (advblock.txt: 2252) -.fafggde.net -# ||eznagi.ru^ (advblock.txt: 2250) -.eznagi.ru -# ||extronext.ru^ (advblock.txt: 2248) -.extronext.ru -# ||excalatom.com^ (advblock.txt: 2246) -.excalatom.com -# ||evsembu.com^ (advblock.txt: 2245) -.evsembu.com -# ||evendividualita.com^ (advblock.txt: 2244) -.evendividualita.com -# ||etranslater1.com^ (advblock.txt: 2243) -.etranslater1.com -# ||estiques.com^ (advblock.txt: 2241) -.estiques.com -# ||ervtm9lrdj.com^ (advblock.txt: 2240) -.ervtm9lrdj.com -# ||erpito.ru^ (advblock.txt: 2239) -.erpito.ru -# ||epsexda.ru^ (advblock.txt: 2236) -.epsexda.ru -# ||epoquels.com^ (advblock.txt: 2235) -.epoquels.com -# ||entimee.com^ (advblock.txt: 2234) -.entimee.com -# ||ensepare.com^ (advblock.txt: 2233) -.ensepare.com -# ||enkonyus.ru^ (advblock.txt: 2232) -.enkonyus.ru -# ||enfreine.com^ (advblock.txt: 2230) -.enfreine.com -# ||emisses.com^ (advblock.txt: 2229) -.emisses.com -# ||emierete.com^ (advblock.txt: 2228) -.emierete.com -# ||elnpe.com^ (advblock.txt: 2227) -.elnpe.com -# ||eijwpxc.net^ (advblock.txt: 2225) -.eijwpxc.net -# ||ei0mwcgu.com^ (advblock.txt: 2224) -.ei0mwcgu.com -# ||econdus.com^ (advblock.txt: 2221) -.econdus.com -# ||echobanners.net^ (advblock.txt: 2220) -.echobanners.net -# ||dz01rk.com^ (advblock.txt: 2218) -.dz01rk.com -# ||dyrevnya.ru^ (advblock.txt: 2216) -.dyrevnya.ru -# ||dverser.ru^ (advblock.txt: 2215) -.dverser.ru -# ||dutrmedi.ru^ (advblock.txt: 2214) -.dutrmedi.ru -# ||dunta.ru^ (advblock.txt: 2213) -.dunta.ru -# ||drontres.com^ (advblock.txt: 2210) -.drontres.com -# ||drlyy.com^ (advblock.txt: 2209) -.drlyy.com -# ||dreampartners.ru^ (advblock.txt: 2208) -.dreampartners.ru -# ||douteure.com^ (advblock.txt: 2207) -.douteure.com -# ||dosugcz.net^ (advblock.txt: 2206) -.dosugcz.net -# ||dosugcz.in^ (advblock.txt: 2205) -.dosugcz.in -# ||dopikas.com^ (advblock.txt: 2202) -.dopikas.com -# ||donalise.com^ (advblock.txt: 2201) -.donalise.com -# ||dominasy.com^ (advblock.txt: 2200) -.dominasy.com -# ||dominas.femdomina.ru^ (advblock.txt: 2199) -.dominas.femdomina.ru -# ||domertb.com^ (advblock.txt: 2198) -.domertb.com -# ||domah.ru^ (advblock.txt: 2197) -.domah.ru -# ||dlyatizera.ru^ (advblock.txt: 2195) -.dlyatizera.ru -# ||dkemeli.ru^ (advblock.txt: 2194) -.dkemeli.ru -# ||dizzyac.com^ (advblock.txt: 2193) -.dizzyac.com -# ||disterme.com^ (advblock.txt: 2192) -.disterme.com -# ||directprofit.ru^ (advblock.txt: 2190) -.directprofit.ru -# ||directerp.ru^ (advblock.txt: 2189) -.directerp.ru -# ||dimprive.com^ (advblock.txt: 2188) -.dimprive.com -# ||digitalaccess.ru^*&rnd=*. (advblock.txt: 2187) -.digitalaccess.ru/.*&rnd=.*\. -# ||dificaux.com^ (advblock.txt: 2186) -.dificaux.com -# ||dfthplx.net^ (advblock.txt: 2184) -.dfthplx.net -# ||df09rp0cm6rp6.cloudfront.net^ (advblock.txt: 2183) -.df09rp0cm6rp6.cloudfront.net -# ||devilclicks.com^ (advblock.txt: 2182) -.devilclicks.com -# ||devaxi.org^ (advblock.txt: 2181) -.devaxi.org -# ||dev4enki.com^ (advblock.txt: 2180) -.dev4enki.com -# ||detdove.ru^ (advblock.txt: 2179) -.detdove.ru -# ||detaires.com^ (advblock.txt: 2178) -.detaires.com -# ||designedy.com^ (advblock.txt: 2177) -.designedy.com -# ||derploime.com^ (advblock.txt: 2176) -.derploime.com -# ||demilith.com^ (advblock.txt: 2175) -.demilith.com -# ||defiques.com^ (advblock.txt: 2174) -.defiques.com -# ||ddomb.com^ (advblock.txt: 2173) -.ddomb.com -# ||davarello.com^ (advblock.txt: 2172) -.davarello.com -# ||datropy.com^ (advblock.txt: 2171) -.datropy.com -# ||datelycu.com^ (advblock.txt: 2170) -.datelycu.com -# ||dartimyl.com^ (advblock.txt: 2168) -.dartimyl.com -# ||daredac.com^ (advblock.txt: 2167) -.daredac.com -# ||dafficha.com^ (advblock.txt: 2166) -.dafficha.com -# ||daffices.com^ (advblock.txt: 2165) -.daffices.com -# ||dafferes.com^ (advblock.txt: 2164) -.dafferes.com -# ||daffecte.com^ (advblock.txt: 2163) -.daffecte.com -# ||daccroit.com^ (advblock.txt: 2162) -.daccroit.com -# ||daccrois.com^ (advblock.txt: 2161) -.daccrois.com -# ||daccroi.com^ (advblock.txt: 2160) -.daccroi.com -# ||d3pb9zw46rm6zr.cloudfront.net^ (advblock.txt: 2159) -.d3pb9zw46rm6zr.cloudfront.net -# ||d27jk9dqha8met.cloudfront.net^ (advblock.txt: 2157) -.d27jk9dqha8met.cloudfront.net -# ||cyhtr.com^ (advblock.txt: 2155) -.cyhtr.com -# ||cxmolk.com^ (advblock.txt: 2154) -.cxmolk.com -# ||cwh7tdf.com^ (advblock.txt: 2153) -.cwh7tdf.com -# ||crpoy.com^ (advblock.txt: 2147) -.crpoy.com -# ||crateac.com^ (advblock.txt: 2144) -.crateac.com -# ||crackac.com^ (advblock.txt: 2143) -.crackac.com -# ||cppgf.com^ (advblock.txt: 2142) -.cppgf.com -# ||cpa600.ru^ (advblock.txt: 2141) -.cpa600.ru -# ||cpa6.ru^ (advblock.txt: 2140) -.cpa6.ru -# ||cpa-system.ru^ (advblock.txt: 2139) -.cpa-system.ru -# ||copercato.com^ (advblock.txt: 2138) -.copercato.com -# ||cooleightds.eu^ (advblock.txt: 2137) -.cooleightds.eu -# ||cooleefbaldw.uk.to^ (advblock.txt: 2136) -.cooleefbaldw.uk.to -# ||convertds.com^ (advblock.txt: 2135) -.convertds.com -# ||contlist.com^ (advblock.txt: 2134) -.contlist.com -# ||contextrtb.com^ (advblock.txt: 2133) -.contextrtb.com -# ||contextbar.ru^ (advblock.txt: 2132) -.contextbar.ru -# ||conternet.com^ (advblock.txt: 2131) -.conternet.com -# ||conteresso.com^ (advblock.txt: 2130) -.conteresso.com -# ||conteresse.com^ (advblock.txt: 2129) -.conteresse.com -# ||contactsin.ru^ (advblock.txt: 2127) -.contactsin.ru -# ||contactsin.com^ (advblock.txt: 2126) -.contactsin.com -# ||connees.com^ (advblock.txt: 2125) -.connees.com -# ||commontools.net^ (advblock.txt: 2124) -.commontools.net -# ||collanetti.com^ (advblock.txt: 2123) -.collanetti.com -# ||coe5n.ru^ (advblock.txt: 2122) -.coe5n.ru -# ||codexq.net^ (advblock.txt: 2121) -.codexq.net -# ||codes-media.ru^ (advblock.txt: 2120) -.codes-media.ru -# ||codemediarich.ru^ (advblock.txt: 2119) -.codemediarich.ru -# ||codeextrarich.net^ (advblock.txt: 2118) -.codeextrarich.net -# ||code.d-agency.net^ (advblock.txt: 2116) -.code.d-agency.net -# ||codata.ru^ (advblock.txt: 2115) -.codata.ru -# ||clunder.net^ (advblock.txt: 2112) -.clunder.net -# ||cloakac.com^ (advblock.txt: 2111) -.cloakac.com -# ||clo.lv^ (advblock.txt: 2110) -.clo.lv -# ||clme.net^ (advblock.txt: 2109) -.clme.net -# ||clme.biz^ (advblock.txt: 2108) -.clme.biz -# ||cllckdomain.com^ (advblock.txt: 2107) -.cllckdomain.com -# ||clievise.com^ (advblock.txt: 2105) -.clievise.com -# ||clierets.com^ (advblock.txt: 2104) -.clierets.com -# ||cliennes.com^ (advblock.txt: 2103) -.cliennes.com -# ||clickunderad.com^ (advblock.txt: 2102) -.clickunderad.com -# ||clickspay.ru^ (advblock.txt: 2101) -.clickspay.ru -# ||clickcashmoney.com^ (advblock.txt: 2100) -.clickcashmoney.com -# ||clctraffic.com^ (advblock.txt: 2099) -.clctraffic.com -# ||clangere.com^ (advblock.txt: 2098) -.clangere.com -# ||cl.ekzo.org^ (advblock.txt: 2097) -.cl.ekzo.org -# ||citaire.com^ (advblock.txt: 2092) -.citaire.com -# ||cientrer.com^ (advblock.txt: 2091) -.cientrer.com -# ||ciement.com^ (advblock.txt: 2090) -.ciement.com -# ||chinagrad.ru^ (advblock.txt: 2089) -.chinagrad.ru -# ||china-air.ru^ (advblock.txt: 2088) -.china-air.ru -# ||cettenus.com^ (advblock.txt: 2087) -.cettenus.com -# ||cettenu.com^ (advblock.txt: 2086) -.cettenu.com -# ||cettente.com^ (advblock.txt: 2085) -.cettente.com -# ||cdnport.ru^ (advblock.txt: 2084) -.cdnport.ru -# ||cdneurope.com^ (advblock.txt: 2082) -.cdneurope.com -# ||cdn-rtb.sape.ru^ (advblock.txt: 2081) -.cdn-rtb.sape.ru -# ||cashtube.ru^ (advblock.txt: 2080) -.cashtube.ru -# ||carveac.com^ (advblock.txt: 2078) -.carveac.com -# ||caragots.com^ (advblock.txt: 2077) -.caragots.com -# ||canalds.com^ (advblock.txt: 2076) -.canalds.com -# ||campeut.com^ (advblock.txt: 2075) -.campeut.com -# ||cache.betweendigital.com^ (advblock.txt: 2074) -.cache.betweendigital.com -# ||cachand.com^ (advblock.txt: 2073) -.cachand.com -# ||byuop.com^ (advblock.txt: 2070) -.byuop.com -# ||bymotofyd.ru^ (advblock.txt: 2069) -.bymotofyd.ru -# ||buytraf.ru^ (advblock.txt: 2065) -.buytraf.ru -# ||buy-traffic.org^ (advblock.txt: 2064) -.buy-traffic.org -# ||buildbull.ru^ (advblock.txt: 2062) -.buildbull.ru -# ||bs.quadrosystems.ru^ (advblock.txt: 2061) -.bs.quadrosystems.ru -# ||breeffnet.com^ (advblock.txt: 2058) -.breeffnet.com -# ||breedac.com^ (advblock.txt: 2057) -.breedac.com -# ||brandarium.ru^ (advblock.txt: 2056) -.brandarium.ru -# ||boolff.com^ (advblock.txt: 2054) -.boolff.com -# ||bobrilla.com^ (advblock.txt: 2051) -.bobrilla.com -# ||bobik.playflock.com^ (advblock.txt: 2050) -.bobik.playflock.com -# ||blessdi.com^ (advblock.txt: 2049) -.blessdi.com -# ||blendac.com^ (advblock.txt: 2048) -.blendac.com -# ||blackads.ru^ (advblock.txt: 2047) -.blackads.ru -# ||bixmarketing.ru^ (advblock.txt: 2045) -.bixmarketing.ru -# ||bistr3.ru^ (advblock.txt: 2044) -.bistr3.ru -# ||binmedia.ru^ (advblock.txt: 2043) -.binmedia.ru -# ||bilation.com^ (advblock.txt: 2042) -.bilation.com -# ||bidtraffic.ru^ (advblock.txt: 2041) -.bidtraffic.ru -# ||berryfico.com^ (advblock.txt: 2039) -.berryfico.com -# ||beriche.ru^ (advblock.txt: 2038) -.beriche.ru -# ||belole.ru^ (advblock.txt: 2035) -.belole.ru -# ||beligana.ru^ (advblock.txt: 2034) -.beligana.ru -# ||beeblebroks.ru^ (advblock.txt: 2033) -.beeblebroks.ru -# ||bbtyup.com^ (advblock.txt: 2032) -.bbtyup.com -# ||basetts.com^ (advblock.txt: 2030) -.basetts.com -# ||barraien.com^ (advblock.txt: 2029) -.barraien.com -# ||barpe.ru^ (advblock.txt: 2028) -.barpe.ru -# ||banquant.com^ (advblock.txt: 2026) -.banquant.com -# ||bannuncio.com^ (advblock.txt: 2025) -.bannuncio.com -# ||bannerms54489.com^ (advblock.txt: 2023) -.bannerms54489.com -# ||backromy.com^ (advblock.txt: 2020) -.backromy.com -# ||bachmedia.ru^ (advblock.txt: 2018) -.bachmedia.ru -# ||b.digital-tv.com.ua^ (advblock.txt: 2016) -.b.digital-tv.com.ua -# ||az708531.vo.msecnd.net^ (advblock.txt: 2015) -.az708531.vo.msecnd.net -# ||attiveri.com^ (advblock.txt: 2011) -.attiveri.com -# ||associeta.com^ (advblock.txt: 2009) -.associeta.com -# ||associazio.com^ (advblock.txt: 2008) -.associazio.com -# ||assantie.com^ (advblock.txt: 2007) -.assantie.com -# ||asdhit.com^ (advblock.txt: 2006) -.asdhit.com -# ||arigami.ru^ (advblock.txt: 2005) -.arigami.ru -# ||arded.com^ (advblock.txt: 2003) -.arded.com -# ||archeurs.com^ (advblock.txt: 2002) -.archeurs.com -# ||aprement.com^ (advblock.txt: 1999) -.aprement.com -# ||aprelite.com^ (advblock.txt: 1998) -.aprelite.com -# ||apreces.com^ (advblock.txt: 1997) -.apreces.com -# ||applieda.com^ (advblock.txt: 1996) -.applieda.com -# ||appintop.com/widget/ (advblock.txt: 1995) -.appintop.com/widget/ -# ||appaugust.ru^ (advblock.txt: 1993) -.appaugust.ru -# ||apocence.com^ (advblock.txt: 1992) -.apocence.com -# ||api.smartadv.ru^ (advblock.txt: 1991) -.api.smartadv.ru -# ||api-keks.com^ (advblock.txt: 1989) -.api-keks.com -# ||anniers.com^ (advblock.txt: 1988) -.anniers.com -# ||anniere.com^ (advblock.txt: 1987) -.anniere.com -# ||annienne.com^ (advblock.txt: 1986) -.annienne.com -# ||andrak.ru^ (advblock.txt: 1985) -.andrak.ru -# ||an.media-active.ru^ (advblock.txt: 1983) -.an.media-active.ru -# ||amuseer.com^ (advblock.txt: 1982) -.amuseer.com -# ||amenop.com^ (advblock.txt: 1981) -.amenop.com -# ||am17.ru^ (advblock.txt: 1980) -.am17.ru -# ||altraf.com^ (advblock.txt: 1979) -.altraf.com -# ||almosto.com^ (advblock.txt: 1978) -.almosto.com -# ||alltizer.ru^ (advblock.txt: 1977) -.alltizer.ru -# ||allowac.com^ (advblock.txt: 1975) -.allowac.com -# ||algenib.ru^ (advblock.txt: 1971) -.algenib.ru -# ||alemobile.ru^ (advblock.txt: 1970) -.alemobile.ru -# ||akashy.com^ (advblock.txt: 1969) -.akashy.com -# ||aintes.com^ (advblock.txt: 1968) -.aintes.com -# ||ainterme.com^ (advblock.txt: 1967) -.ainterme.com -# ||aintere.com^ (advblock.txt: 1966) -.aintere.com -# ||aintegie.com^ (advblock.txt: 1965) -.aintegie.com -# ||ainstite.com^ (advblock.txt: 1964) -.ainstite.com -# ||aif.yadro.ru^ (advblock.txt: 1963) -.aif.yadro.ru -# ||aiadvi.com^ (advblock.txt: 1962) -.aiadvi.com -# ||agitazio.com^ (advblock.txt: 1961) -.agitazio.com -# ||afterview.ru^ (advblock.txt: 1960) -.afterview.ru -# ||afficent.com^ (advblock.txt: 1959) -.afficent.com -# ||affcash.net^ (advblock.txt: 1958) -.affcash.net -# ||aff.mediarotate.com^ (advblock.txt: 1957) -.aff.mediarotate.com -# ||aerontre.com^ (advblock.txt: 1956) -.aerontre.com -# ||advweb.ru^ (advblock.txt: 1955) -.advweb.ru -# ||advrush.com^ (advblock.txt: 1954) -.advrush.com -# ||advredirr.com^ (advblock.txt: 1953) -.advredirr.com -# ||advertte.com^ (advblock.txt: 1947) -.advertte.com -# ||advertlink.ru^ (advblock.txt: 1942) -.advertlink.ru -# ||adversni.com^ (advblock.txt: 1941) -.adversni.com -# ||adv.vz.ru^ (advblock.txt: 1936) -.adv.vz.ru -# ||adv-first.ru^ (advblock.txt: 1934) -.adv-first.ru -# ||adtraff.ru^ (advblock.txt: 1932) -.adtraff.ru -# ||adsyst.ru^ (advblock.txt: 1931) -.adsyst.ru -# ||adsyst.com^ (advblock.txt: 1930) -.adsyst.com -# ||adstock.ru^ (advblock.txt: 1929) -.adstock.ru -# ||adst.biz^ (advblock.txt: 1927) -.adst.biz -# ||adsorg.com^ (advblock.txt: 1926) -.adsorg.com -# ||adsmeda.com^ (advblock.txt: 1925) -.adsmeda.com -# ||adshostnet.com^ (advblock.txt: 1924) -.adshostnet.com -# ||adpod.in^ (advblock.txt: 1921) -.adpod.in -# ||adgamble.net^ (advblock.txt: 1913) -.adgamble.net -# ||adfun.ru^ (advblock.txt: 1912) -.adfun.ru -# ||adforce.ru^ (advblock.txt: 1911) -.adforce.ru -# ||adeclc.com^ (advblock.txt: 1910) -.adeclc.com -# ||ad1.ru^ (advblock.txt: 1905) -.ad1.ru -# ||ad05f.ru^ (advblock.txt: 1904) -.ad05f.ru -# ||ad004.ru^ (advblock.txt: 1903) -.ad004.ru -# ||ad.starlightmedia.ua^ (advblock.txt: 1902) -.ad.starlightmedia.ua -# ||ad.or.ru/inner?block= (advblock.txt: 1901) -.ad.or.ru/inner\?block= -# ||ad.namba.net^ (advblock.txt: 1900) -.ad.namba.net -# ||ad.hutor.ru^ (advblock.txt: 1899) -.ad.hutor.ru -# ||ad.h-vip.ru^ (advblock.txt: 1898) -.ad.h-vip.ru -# ||ad.gameagregator.com^ (advblock.txt: 1897) -.ad.gameagregator.com -# ||ad.ddestiny.ru^ (advblock.txt: 1896) -.ad.ddestiny.ru -# ||activepr.ru^$~popup,popup (advblock.txt: 1895) -.activepr.ru -# ||actionrtb.com^ (advblock.txt: 1893) -.actionrtb.com -# ||acronixshop.ru^ (advblock.txt: 1891) -.acronixshop.ru -# ||academand.com^ (advblock.txt: 1890) -.academand.com -# ||abusieux.com^ (advblock.txt: 1889) -.abusieux.com -# ||abteaser.com^ (advblock.txt: 1888) -.abteaser.com -# ||ableday.com^ (advblock.txt: 1887) -.ableday.com -# ||56zzz.net^ (advblock.txt: 1885) -.56zzz.net -# ||56rrr.net^ (advblock.txt: 1884) -.56rrr.net -# ||56nnn.net^ (advblock.txt: 1883) -.56nnn.net -# ||56fff.net^ (advblock.txt: 1882) -.56fff.net -# ||56eee.net^ (advblock.txt: 1881) -.56eee.net -# ||56ccc.net^ (advblock.txt: 1880) -.56ccc.net -# ||4smi.ru^ (advblock.txt: 1879) -.4smi.ru -# ||4lucysu.com^ (advblock.txt: 1878) -.4lucysu.com -# ||4allclick.ru^$~popup,popup (advblock.txt: 1877) -.4allclick.ru -# ||3under.ru^ (advblock.txt: 1876) -.3under.ru -# ||3lucosy.com^ (advblock.txt: 1875) -.3lucosy.com -# ||2under.ru^ (advblock.txt: 1874) -.2under.ru -# ||2lycosy.com^ (advblock.txt: 1873) -.2lycosy.com -# ||2lycosu.com^ (advblock.txt: 1872) -.2lycosu.com -# ||1under.ru^ (advblock.txt: 1871) -.1under.ru -# ||123retr312.ru^ (advblock.txt: 1869) -.123retr312.ru -# ||0ux.ru^ (advblock.txt: 1868) -.0ux.ru -# //cds.*.hwcdn.net/s/*-*-*-*-*.js| (advblock.txt: 1867) -cds.*./.*\.hwcdn\.net/s/.*-.*-.*-.*-.*\.js$ -cds.*.hwcdn.net/s/.*-.*-.*-.*-.*\.js$ -# //95.211.125.226^ (advblock.txt: 1866) -95.211.125.226 -# //95.169.186.139^ (advblock.txt: 1865) -95.169.186.139 -# //91.197.128.34/key= (advblock.txt: 1864) -91.197.128.34/key= -# //5.149.255.132^ (advblock.txt: 1861) -5.149.255.132 -# //46.165.197.87^ (advblock.txt: 1860) -46.165.197.87 -# //46.165.197.231^ (advblock.txt: 1859) -46.165.197.231 -# //46.165.197.153^ (advblock.txt: 1858) -46.165.197.153 -# //212.150.34.116^ (advblock.txt: 1857) -212.150.34.116 -# //212.150.34.115^ (advblock.txt: 1856) -212.150.34.115 -# //178.162.137.217^ (advblock.txt: 1855) -178.162.137.217 -# //176.9.245.25/* (advblock.txt: 1854) -176.9.245.25/.* -# //95.211.26.129/banners/* (advblock.txt: 1849) -95.211.26.129/banners/.* -# //95.168.161.173/www/* (advblock.txt: 1848) -95.168.161.173/www/.* -# //91.194.251.66^ (advblock.txt: 1847) -91.194.251.66 -# //90.156.144.98^ (advblock.txt: 1846) -90.156.144.98 -# //83.218.204.107/numbers.md/banners/* (advblock.txt: 1844) -83.218.204.107/numbers\.md/banners/.* -# //80.93.56.187^ (advblock.txt: 1843) -80.93.56.187 -# //80.93.49.192^ (advblock.txt: 1842) -80.93.49.192 -# //80.91.178.234^ (advblock.txt: 1841) -80.91.178.234 -# //78.140.145.178^ (advblock.txt: 1840) -78.140.145.178 -# //217.170.78.*/banners/* (advblock.txt: 1839) -217.170.78.*./(.*/)?banners/.* -# //213.186.217.210/banners/* (advblock.txt: 1838) -213.186.217.210/banners/.* -# //213.163.70.183^ (advblock.txt: 1837) -213.163.70.183 -# //195.161.119.239^ (advblock.txt: 1835) -195.161.119.239 -# //194.135.105.*/js/* (advblock.txt: 1834) -194.135.105.*./(.*/)?js/.* -# //188.72.225.106^ (advblock.txt: 1833) -188.72.225.106 -# //188.40.18.172^ (advblock.txt: 1832) -188.40.18.172 -# //188.120.246.210/ad/* (advblock.txt: 1831) -188.120.246.210/ad/.* -# //176.58.105.153^ (advblock.txt: 1830) -176.58.105.153 -# ||wqa.ru/show/?inf= (advblock.txt: 1827) -.wqa.ru/show/\?inf= -# ||vtomske.ru/informer/ (advblock.txt: 1826) -.vtomske.ru/informer/ -# ||video.909.su/feeds/feed.php? (advblock.txt: 1825) -.video.909.su/feeds/feed\.php\? -# ||traffim.com/informer/ (advblock.txt: 1824) -.traffim.com/informer/ -# ||smigid.ru/informer/ (advblock.txt: 1822) -.smigid.ru/informer/ -# ||sibhealth.by/informer/ (advblock.txt: 1821) -.sibhealth.by/informer/ -# ||shopnow.com.ua/media/openmedia_informer/ (advblock.txt: 1820) -.shopnow.com.ua/media/openmedia_informer/ -# ||shkolazhizni.ru/img/export/ (advblock.txt: 1819) -.shkolazhizni.ru/img/export/ -# ||seowebtools.ru/inform/infb.php? (advblock.txt: 1818) -.seowebtools.ru/inform/infb\.php\? -# ||rssportal.ru/getinformer.php? (advblock.txt: 1816) -.rssportal.ru/getinformer\.php\? -# ||rosinvest.com/informs/ (advblock.txt: 1815) -.rosinvest.com/informs/ -# ||protoplex.ru/images/rating/ (advblock.txt: 1814) -.protoplex.ru/images/rating/ -# ||protoplex.ru/cgi-bin/informer.pl? (advblock.txt: 1813) -.protoplex.ru/cgi-bin/informer\.pl\? -# ||portak.net/informer/ (advblock.txt: 1811) -.portak.net/informer/ -# ||podfm.ru/informer/ (advblock.txt: 1810) -.podfm.ru/informer/ -# ||piter.tv/widget_news/ (advblock.txt: 1809) -.piter.tv/widget_news/ -# ||otvali.ru/informer/ (advblock.txt: 1808) -.otvali.ru/informer/ -# ||nyx.su/informers/ (advblock.txt: 1807) -.nyx.su/informers/ -# ||meta.ua/informers/? (advblock.txt: 1802) -.meta.ua/informers/\? -# ||makeup.com.ua/informer/ (advblock.txt: 1800) -.makeup.com.ua/informer/ -# ||kp.ru/_ajax/informer_ (advblock.txt: 1798) -.kp.ru/_ajax/informer_ -# ||kinobzor.tv/_cron/js/informer (advblock.txt: 1797) -.kinobzor.tv/_cron/js/informer -# ||jhf.ru/informer/ (advblock.txt: 1796) -.jhf.ru/informer/ -# ||info-dvd.ru/bbm/informer/ (advblock.txt: 1795) -.info-dvd.ru/bbm/informer/ -# ||gazetavv.com/informer- (advblock.txt: 1794) -.gazetavv.com/informer- -# ||forbes.kz/informer/ (advblock.txt: 1792) -.forbes.kz/informer/ -# ||finam.ru/data/js/ (advblock.txt: 1791) -.finam.ru/data/js/ -# ||fark.ru/js/bannerLink. (advblock.txt: 1790) -.fark.ru/js/bannerLink\. -# ||fair.ru/*/i.php? (advblock.txt: 1789) -.fair.ru/.*/i\.php\? -# ||exchange.meta.ua^ (advblock.txt: 1788) -.exchange.meta.ua -# ||duty.webbia.ru/change/ (advblock.txt: 1787) -.duty.webbia.ru/change/ -# ||doramy.net/informer/ (advblock.txt: 1786) -.doramy.net/informer/ -# ||cosmo.ru/cosmo_informers/ (advblock.txt: 1784) -.cosmo.ru/cosmo_informers/ -# ||comon.ru/data/js/ (advblock.txt: 1783) -.comon.ru/data/js/ -# ||cnews.ru/inc/partners/rotator.php? (advblock.txt: 1782) -.cnews.ru/inc/partners/rotator\.php\? -# ||bigmir.net/informers/ (advblock.txt: 1780) -.bigmir.net/informers/ -# ||bestnews.biz/js/out/ (advblock.txt: 1779) -.bestnews.biz/js/out/ -# ||bash.*/forweb/ (advblock.txt: 1778) -.bash.*./(.*/)?forweb/ -# ||banki.ru/_export/informers/ (advblock.txt: 1777) -.banki.ru/_export/informers/ -# ||autonet.ru/extra/autoclub_informer.aspx (advblock.txt: 1776) -.autonet.ru/extra/autoclub_informer\.aspx -# ||analyzethis.ru/informer.cgi? (advblock.txt: 1775) -.analyzethis.ru/informer\.cgi\? -# ||aif.ru/iframes/ (advblock.txt: 1774) -.aif.ru/iframes/ -# ||66.ru/mod/news2/ (advblock.txt: 1773) -.66.ru/mod/news2/ -# ||24au.ru/*/24au_informer.js (advblock.txt: 1771) -.24au.ru/.*/24au_informer\.js -# ||1k.by/informers/ (advblock.txt: 1770) -.1k.by/informers/ -# ||泻芯屑锌卸懈胁.褉褎/images/banners/ (advblock.txt: 1766) -.泻芯屑锌卸懈胁.褉褎/images/banners/ -# ||zremcom.ru/anim (advblock.txt: 1764) -.zremcom.ru/anim -# ||zez.su/ban/ (advblock.txt: 1757) -.zez.su/ban/ -# ||zapato.ru/upload/affiliate_pics/ (advblock.txt: 1756) -.zapato.ru/upload/affiliate_pics/ -# ||yandexo.ru/rek/ (advblock.txt: 1749) -.yandexo.ru/rek/ -# ||yandex.net/banner/ (advblock.txt: 1748) -.yandex.net/banner/ -# ||yandex-games.ru/ok/banners/ (advblock.txt: 1747) -.yandex-games.ru/ok/banners/ -# ||xstats.in^ (advblock.txt: 1745) -.xstats.in -# ||xchange.cc/banner/ (advblock.txt: 1744) -.xchange.cc/banner/ -# ||x-traf.ru^ (advblock.txt: 1741) -.x-traf.ru -# ||wq3.ru^ (advblock.txt: 1738) -.wq3.ru -# ||wpclktls.com^ (advblock.txt: 1737) -.wpclktls.com -# ||womenclick.ru^ (advblock.txt: 1735) -.womenclick.ru -# ||wmplace.ru^ (advblock.txt: 1732) -.wmplace.ru -# ||wm-help.net/b.php? (advblock.txt: 1728) -.wm-help.net/b\.php\? -# ||wm-goldenclick.ru^ (advblock.txt: 1727) -.wm-goldenclick.ru -# ||wizzzards.com^ (advblock.txt: 1726) -.wizzzards.com -# ||win2profit1.com/upload_dynamics/ (advblock.txt: 1724) -.win2profit1.com/upload_dynamics/ -# ||westbyte.com/scripts/bs/bc.php?bi= (advblock.txt: 1722) -.westbyte.com/scripts/bs/bc\.php\?bi= -# ||weclever.ru/block.php? (advblock.txt: 1721) -.weclever.ru/block\.php\? -# ||websurf.ru/? (advblock.txt: 1720) -.websurf.ru/\? -# ||webproficlub.ru^ (advblock.txt: 1719) -.webproficlub.ru -# ||webocat.ru^ (advblock.txt: 1718) -.webocat.ru -# ||weboborona.ru/pic/wban (advblock.txt: 1717) -.weboborona.ru/pic/wban -# ||webme.com/selfpromotion. (advblock.txt: 1716) -.webme.com/selfpromotion\. -# ||webmax.su/banner/ (advblock.txt: 1715) -.webmax.su/banner/ -# ||weblist.ru/images/weblist (advblock.txt: 1714) -.weblist.ru/images/weblist -# ||webasm.com^ (advblock.txt: 1711) -.webasm.com -# ||web-rom.ru^ (advblock.txt: 1710) -.web-rom.ru -# ||wbn.su^ (advblock.txt: 1709) -.wbn.su -# ||warnet.ws/banners/ (advblock.txt: 1706) -.warnet.ws/banners/ -# ||wapstart.ru^ (advblock.txt: 1704) -.wapstart.ru -# ||wap-click.net^ (advblock.txt: 1703) -.wap-click.net -# ||wambacdn.net/images/*/promo_search_form/ (advblock.txt: 1702) -.wambacdn.net/images/.*/promo_search_form/ -# ||vz.ru/inc/b/ (advblock.txt: 1701) -.vz.ru/inc/b/ -# ||vtochku.net^ (advblock.txt: 1699) -.vtochku.net -# ||vtizr.com^ (advblock.txt: 1698) -.vtizr.com -# ||vsetv.com/pic/paid/ (advblock.txt: 1696) -.vsetv.com/pic/paid/ -# ||vredno.com.ua/img/ (advblock.txt: 1691) -.vredno.com.ua/img/ -# ||votetraffic.ru^ (advblock.txt: 1687) -.votetraffic.ru -# ||vk-traf.ru^ (advblock.txt: 1682) -.vk-traf.ru -# ||vipsex.su^*/images/banners/ (advblock.txt: 1680) -.vipsex.su/.*/images/banners/ -# ||vipaccess.su^ (advblock.txt: 1678) -.vipaccess.su -# ||videotraff.ru^ (advblock.txt: 1677) -.videotraff.ru -# ||videoplaza.tv/creatives/assets/ (advblock.txt: 1675) -.videoplaza.tv/creatives/assets/ -# ||videomay.ru^ (advblock.txt: 1674) -.videomay.ru -# ||videocore.tv^*/pladform_ (advblock.txt: 1669) -.videocore.tv/.*/pladform_ -# ||video-tutorial.ucoz.ru/Foto/ (advblock.txt: 1667) -.video-tutorial.ucoz.ru/Foto/ -# ||video-link.ru^ (advblock.txt: 1666) -.video-link.ru -# ||video-invest.net^ (advblock.txt: 1665) -.video-invest.net -# ||vezetmne.ru^ (advblock.txt: 1662) -.vezetmne.ru -# ||vertucash.com^ (advblock.txt: 1661) -.vertucash.com -# ||ventivmedia.com^ (advblock.txt: 1660) -.ventivmedia.com -# ||vclicks.net^ (advblock.txt: 1659) -.vclicks.net -# ||vbm1.ru^ (advblock.txt: 1658) -.vbm1.ru -# ||vba.ru^ (advblock.txt: 1657) -.vba.ru -# ||vareza.net^ (advblock.txt: 1656) -.vareza.net -# ||v-kino.net/pay_click_ (advblock.txt: 1655) -.v-kino.net/pay_click_ -# ||userator.ru/img/ban/ (advblock.txt: 1654) -.userator.ru/img/ban/ -# ||uniq-ip.com/via/np? (advblock.txt: 1650) -.uniq-ip.com/via/np\? -# ||umatno.ru/mm/ (advblock.txt: 1649) -.umatno.ru/mm/ -# ||ukrbuy.com/partner/ (advblock.txt: 1647) -.ukrbuy.com/partner/ -# ||ujav.net^ (advblock.txt: 1645) -.ujav.net -# ||uicp.ru/?bn= (advblock.txt: 1644) -.uicp.ru/\?bn= -# ||ugly.ru/adv_frame. (advblock.txt: 1643) -.ugly.ru/adv_frame\. -# ||uaportal.com/bannes/ (advblock.txt: 1642) -.uaportal.com/bannes/ -# ||txtrk.com^ (advblock.txt: 1639) -.txtrk.com -# ||tx2.ru^ (advblock.txt: 1638) -.tx2.ru -# ||twistcasino.net^ (advblock.txt: 1637) -.twistcasino.net -# ||twevent.org.ua/bn/ (advblock.txt: 1636) -.twevent.org.ua/bn/ -# ||tvmir.ru/tracks/ (advblock.txt: 1634) -.tvmir.ru/tracks/ -# ||turboroller.ru^ (advblock.txt: 1633) -.turboroller.ru -# ||tubecontext.com^ (advblock.txt: 1632) -.tubecontext.com -# ||ttcl.ru^ (advblock.txt: 1631) -.ttcl.ru -# ||tsr.cdns.com.ua^ (advblock.txt: 1630) -.tsr.cdns.com.ua -# ||tryanka.ru^ (advblock.txt: 1629) -.tryanka.ru -# ||trusearch.net/affblock/ (advblock.txt: 1627) -.trusearch.net/affblock/ -# ||trafogon.ru^ (advblock.txt: 1625) -.trafogon.ru -# ||trafmag.com^ (advblock.txt: 1624) -.trafmag.com -# ||traffworld.ru^ (advblock.txt: 1623) -.traffworld.ru -# ||traffstock.ru^ (advblock.txt: 1622) -.traffstock.ru -# ||traffmaster.ru^ (advblock.txt: 1621) -.traffmaster.ru -# ||traffikk.biz^ (advblock.txt: 1620) -.traffikk.biz -# ||traf.biz^ (advblock.txt: 1618) -.traf.biz -# ||traf-birga.net^ (advblock.txt: 1617) -.traf-birga.net -# ||traf-3rs.com^ (advblock.txt: 1616) -.traf-3rs.com -# ||trading-sys.com/affil/banner/ (advblock.txt: 1615) -.trading-sys.com/affil/banner/ -# ||tradeone.ru^ (advblock.txt: 1614) -.tradeone.ru -# ||tradeone.com^ (advblock.txt: 1613) -.tradeone.com -# ||tradeone.com.ua^ (advblock.txt: 1612) -.tradeone.com.ua -# ||topdownloads.ru/charts/ (advblock.txt: 1608) -.topdownloads.ru/charts/ -# ||tofun.ru/traff/ (advblock.txt: 1603) -.tofun.ru/traff/ -# ||tobe.tv/sda/ (advblock.txt: 1601) -.tobe.tv/sda/ -# ||tnx.net^ (advblock.txt: 1600) -.tnx.net -# ||tle.ru^ (advblock.txt: 1599) -.tle.ru -# ||tizzer.ru^ (advblock.txt: 1598) -.tizzer.ru -# ||tizrotba.ru^ (advblock.txt: 1597) -.tizrotba.ru -# ||tizertraf.ru (advblock.txt: 1596) -.tizertraf.ru*. -# ||tizero.ru^ (advblock.txt: 1595) -.tizero.ru -# ||tizerget.net^ (advblock.txt: 1594) -.tizerget.net -# ||timeweb.ru/img/b/ (advblock.txt: 1593) -.timeweb.ru/img/b/ -# ||timedirect.ru^ (advblock.txt: 1592) -.timedirect.ru -# ||tigame.ru/div/? (advblock.txt: 1591) -.tigame.ru/div/\? -# ||ticount.ru^ (advblock.txt: 1590) -.ticount.ru -# ||thebestphotos.ru/wp-content/uploads/banners/ (advblock.txt: 1589) -.thebestphotos.ru/wp-content/uploads/banners/ -# ||thebestphotos.ru/exper.jpg (advblock.txt: 1588) -.thebestphotos.ru/exper\.jpg -# ||telepark.ua/tpb.php?code= (advblock.txt: 1586) -.telepark.ua/tpb\.php\?code= -# ||telderi.ru/uploads/promote/ (advblock.txt: 1585) -.telderi.ru/uploads/promote/ -# ||telderi.ru/img/banners/ (advblock.txt: 1584) -.telderi.ru/img/banners/ -# ||teeser.ru^ (advblock.txt: 1582) -.teeser.ru -# ||teasergate.com^ (advblock.txt: 1581) -.teasergate.com -# ||teasercode.net^ (advblock.txt: 1580) -.teasercode.net -# ||teaser2go.com^ (advblock.txt: 1579) -.teaser2go.com -# ||teaser-goods.ru^ (advblock.txt: 1578) -.teaser-goods.ru -# ||tds-banner.do.am^ (advblock.txt: 1577) -.tds-banner.do.am -# ||tanygin.me/tmp/ (advblock.txt: 1575) -.tanygin.me/tmp/ -# ||takru.com^ (advblock.txt: 1574) -.takru.com -# ||tak.ru^ (advblock.txt: 1573) -.tak.ru -# ||t.pusk.ru^ (advblock.txt: 1572) -.t.pusk.ru -# ||t.mediacartel.ru^ (advblock.txt: 1571) -.t.mediacartel.ru -# ||svpressa.ru/tmp/ (advblock.txt: 1569) -.svpressa.ru/tmp/ -# ||svpressa.ru/ad/ (advblock.txt: 1568) -.svpressa.ru/ad/ -# ||super.md/?col= (advblock.txt: 1561) -.super.md/\?col= -# ||sugar-traff2.com^ (advblock.txt: 1560) -.sugar-traff2.com -# ||submitter.ru*/i.php (advblock.txt: 1559) -.submitter.ru*./(.*/)?i\.php -# ||studio-moderna.com/upload/uploadTopshop (advblock.txt: 1558) -.studio-moderna.com/upload/uploadTopshop -# ||stroyka-direct.ru^ (advblock.txt: 1557) -.stroyka-direct.ru -# ||strobist.ua/strobist_ (advblock.txt: 1555) -.strobist.ua/strobist_ -# ||strana.az/banners/ (advblock.txt: 1553) -.strana.az/banners/ -# ||sterno.ru/widget/ (advblock.txt: 1552) -.sterno.ru/widget/ -# ||steambuy.com^*.gif| (advblock.txt: 1550) -.steambuy.com/.*\.gif$ -# ||steambuy.com/banner/ (advblock.txt: 1549) -.steambuy.com/banner/ -# ||stdate.ru^ (advblock.txt: 1546) -.stdate.ru -# ||static.terrhq.ru^ (advblock.txt: 1545) -.static.terrhq.ru -# ||stat.webtrack.biz/api/impression/ (advblock.txt: 1543) -.stat.webtrack.biz/api/impression/ -# ||staffcop.ru/rekl/ (advblock.txt: 1541) -.staffcop.ru/rekl/ -# ||stableprofit.ru^ (advblock.txt: 1540) -.stableprofit.ru -# ||srv.mzcdn.com^ (advblock.txt: 1539) -.srv.mzcdn.com -# ||spytrack.tic.ru^ (advblock.txt: 1538) -.spytrack.tic.ru -# ||sprotiv.com/bnr/ (advblock.txt: 1536) -.sprotiv.com/bnr/ -# ||spitter.pauk.ru^ (advblock.txt: 1532) -.spitter.pauk.ru -# ||spbland.ru/bban/ (advblock.txt: 1531) -.spbland.ru/bban/ -# ||sorcerers.net/includes/butler/butler.php? (advblock.txt: 1530) -.sorcerers.net/includes/butler/butler\.php\? -# ||soft-teleport.ru/uploads/ad/ (advblock.txt: 1528) -.soft-teleport.ru/uploads/ad/ -# ||socialmart.ru/widget/ (advblock.txt: 1527) -.socialmart.ru/widget/ -# ||smsvcash.ru^ (advblock.txt: 1526) -.smsvcash.ru -# ||smsfiles.ru/ban*.gif (advblock.txt: 1525) -.smsfiles.ru/ban.*\.gif -# ||smiar.ru^ (advblock.txt: 1521) -.smiar.ru -# ||smartbucks.ru^ (advblock.txt: 1519) -.smartbucks.ru -# ||slavabogam.ru/catalog/partner/ (advblock.txt: 1516) -.slavabogam.ru/catalog/partner/ -# ||skymec.ru/image/banners/ (advblock.txt: 1515) -.skymec.ru/image/banners/ -# ||skylog.kz/img.php? (advblock.txt: 1514) -.skylog.kz/img\.php\? -# ||skinon.ru/uploads/media/bnr_ (advblock.txt: 1513) -.skinon.ru/uploads/media/bnr_ -# ||sir.uz^ (advblock.txt: 1511) -.sir.uz -# ||simplechange.ru/promo/ (advblock.txt: 1509) -.simplechange.ru/promo/ -# ||sexfabrika.ru/*.gif (advblock.txt: 1503) -.sexfabrika.ru/.*\.gif -# ||servidormensseger.hotbox.ru^ (advblock.txt: 1499) -.servidormensseger.hotbox.ru -# ||server.adeasy.ru^ (advblock.txt: 1498) -.server.adeasy.ru -# ||seotechnology.ru/imgygpag.php? (advblock.txt: 1495) -.seotechnology.ru/imgygpag\.php\? -# ||seotechnology.ru/imgseo.php? (advblock.txt: 1494) -.seotechnology.ru/imgseo\.php\? -# ||seoheep.com/affiliate/ (advblock.txt: 1490) -.seoheep.com/affiliate/ -# ||seo-monster.ru/img_ (advblock.txt: 1487) -.seo-monster.ru/img_ -# ||secure-it.imrworldwide.com/cgi-bin/m? (advblock.txt: 1484) -.secure-it.imrworldwide.com/cgi-bin/m\? -# ||searchmeta.webhost.ru^ (advblock.txt: 1483) -.searchmeta.webhost.ru -# ||sb.google.com/safebrowsing/update (advblock.txt: 1481) -.sb.google.com/safebrowsing/update -# ||sape.ru/images/banners/ (advblock.txt: 1478) -.sape.ru/images/banners/ -# ||sape.ru/bn/ (advblock.txt: 1477) -.sape.ru/bn/ -# ||sabrinavi.ru/external_list.js? (advblock.txt: 1475) -.sabrinavi.ru/external_list\.js\? -# ||s.s-ports.ru/sites/default/files/i/brandings/ (advblock.txt: 1474) -.s.s-ports.ru/sites/default/files/i/brandings/ -# ||s.ladoshki.com/pics/shirts/ (advblock.txt: 1472) -.s.ladoshki.com/pics/shirts/ -# ||s.ladoshki.com/p/a/ (advblock.txt: 1471) -.s.ladoshki.com/p/a/ -# ||ruwm.ru/links.php? (advblock.txt: 1468) -.ruwm.ru/links\.php\? -# ||ruvideo.net/obzor/ (advblock.txt: 1467) -.ruvideo.net/obzor/ -# ||rustizer.com^ (advblock.txt: 1465) -.rustizer.com -# ||ruskompas.ru/incs/ (advblock.txt: 1461) -.ruskompas.ru/incs/ -# ||ruinfosale.com/banner/ (advblock.txt: 1457) -.ruinfosale.com/banner/ -# ||ru.gg/werbemittel/ (advblock.txt: 1456) -.ru.gg/werbemittel/ -# ||ru-top.net/img/ (advblock.txt: 1455) -.ru-top.net/img/ -# ||rssnewser.ru/add (advblock.txt: 1454) -.rssnewser.ru/add -# ||rrru.ru/img.php? (advblock.txt: 1452) -.rrru.ru/img\.php\? -# ||rot.rusoul.ru/rotator/ (advblock.txt: 1448) -.rot.rusoul.ru/rotator/ -# ||rosphoto.com/img/ (advblock.txt: 1447) -.rosphoto.com/img/ -# ||rosban.su^ (advblock.txt: 1446) -.rosban.su -# ||rollad.ru^ (advblock.txt: 1443) -.rollad.ru -# ||robottext.ru^ (advblock.txt: 1442) -.robottext.ru -# ||rivalo.com^*/affiliate/ (advblock.txt: 1440) -.rivalo.com/.*/affiliate/ -# ||rich-banner.ru^ (advblock.txt: 1435) -.rich-banner.ru -# ||reklamist.ru^ (advblock.txt: 1433) -.reklamist.ru -# ||reklama.lv/promotion/ (advblock.txt: 1431) -.reklama.lv/promotion/ -# ||reggun.ru/images/b*_ (advblock.txt: 1430) -.reggun.ru/images/b.*_ -# ||reg.ru^*_widget. (advblock.txt: 1428) -.reg.ru/.*_widget\. -# ||reforum.ru/j/partner/ (advblock.txt: 1427) -.reforum.ru/j/partner/ -# ||redsurf.ru/bn/ (advblock.txt: 1423) -.redsurf.ru/bn/ -# ||red.by/redban (advblock.txt: 1422) -.red.by/redban -# ||recreativ.ru^ (advblock.txt: 1421) -.recreativ.ru -# ||recreativ.com^ (advblock.txt: 1420) -.recreativ.com -# ||recreativ.com.ua^ (advblock.txt: 1419) -.recreativ.com.ua -# ||rb.sport-express.ru^ (advblock.txt: 1416) -.rb.sport-express.ru -# ||rb.rfn.ru^ (advblock.txt: 1415) -.rb.rfn.ru -# ||rating.km.ua/*? (advblock.txt: 1413) -.rating.km.ua/.*\? -# ||rate.ee/pics/banners/ (advblock.txt: 1412) -.rate.ee/pics/banners/ -# ||rate.7surf.ru/img.php? (advblock.txt: 1411) -.rate.7surf.ru/img\.php\? -# ||rarenok.biz^ (advblock.txt: 1410) -.rarenok.biz -# ||raptop.ru/images/img*.gif (advblock.txt: 1409) -.raptop.ru/images/img.*\.gif -# ||rambler.ru/xpromo_ (advblock.txt: 1408) -.rambler.ru/xpromo_ -# ||radio-tech.ru/pic/pages/ (advblock.txt: 1407) -.radio-tech.ru/pic/pages/ -# ||radikal.ru/bh.ashx? (advblock.txt: 1406) -.radikal.ru/bh\.ashx\? -# ||r.qip.ru^ (advblock.txt: 1404) -.r.qip.ru -# ||qzx.ru/gf/ (advblock.txt: 1402) -.qzx.ru/gf/ -# ||qle.ru/cgi-bin/ (advblock.txt: 1399) -.qle.ru/cgi-bin/ -# ||pult.ru/pictures/p_banner/ (advblock.txt: 1396) -.pult.ru/pictures/p_banner/ -# ||protect-lab.com/promo/ (advblock.txt: 1394) -.protect-lab.com/promo/ -# ||prostootdam.ru/modules/about/ (advblock.txt: 1393) -.prostootdam.ru/modules/about/ -# ||promoloader.com^ (advblock.txt: 1389) -.promoloader.com -# ||promofor.me^ (advblock.txt: 1388) -.promofor.me -# ||promobuster.net^ (advblock.txt: 1387) -.promobuster.net -# ||promag.com.ua/images/banner/ (advblock.txt: 1384) -.promag.com.ua/images/banner/ -# ||profitwizard.ru^ (advblock.txt: 1383) -.profitwizard.ru -# ||profitwizard.net^ (advblock.txt: 1382) -.profitwizard.net -# ||prodnepr.dp.ua/informermp.php (advblock.txt: 1380) -.prodnepr.dp.ua/informermp\.php -# ||prizma.kz^ (advblock.txt: 1379) -.prizma.kz -# ||privatzone.biz^ (advblock.txt: 1378) -.privatzone.biz -# ||privatteaser.ru (advblock.txt: 1377) -.privatteaser.ru*. -# ||pr-inc.biz^ (advblock.txt: 1374) -.pr-inc.biz -# ||post.rmbn.net^ (advblock.txt: 1372) -.post.rmbn.net -# ||porno4you.org/uploads/ (advblock.txt: 1370) -.porno4you.org/uploads/ -# ||popularsite.ru/*.php? (advblock.txt: 1368) -.popularsite.ru/.*\.php\? -# ||pomogi.org/urgent/1/ (advblock.txt: 1363) -.pomogi.org/urgent/1/ -# ||pokrutim.ru^ (advblock.txt: 1362) -.pokrutim.ru -# ||poisk.su/top.php? (advblock.txt: 1361) -.poisk.su/top\.php\? -# ||poisk.su/img.php? (advblock.txt: 1360) -.poisk.su/img\.php\? -# ||plesen.net/kp*. (advblock.txt: 1358) -.plesen.net/kp.*\. -# ||placeoff.ru^ (advblock.txt: 1353) -.placeoff.ru -# ||pix-cdn.org/image/vk/ (advblock.txt: 1352) -.pix-cdn.org/image/vk/ -# ||pix-cdn.org/image/ts/ (advblock.txt: 1351) -.pix-cdn.org/image/ts/ -# ||pix-cdn.org/image/banner/ (advblock.txt: 1350) -.pix-cdn.org/image/banner/ -# ||pickegg.com^ (advblock.txt: 1346) -.pickegg.com -# ||penza-online.ru/cgi-bin/userstats.pl? (advblock.txt: 1342) -.penza-online.ru/cgi-bin/userstats\.pl\? -# ||pcweek.ru/upload/*/160x100 (advblock.txt: 1340) -.pcweek.ru/upload/.*/160x100 -# ||pc-user-shop.com/aff/ (advblock.txt: 1338) -.pc-user-shop.com/aff/ -# ||pc-newcomer.ru/partner/ (advblock.txt: 1337) -.pc-newcomer.ru/partner/ -# ||paytraf.ru^ (advblock.txt: 1334) -.paytraf.ru -# ||payban.su^ (advblock.txt: 1333) -.payban.su -# ||pay-hit.com^ (advblock.txt: 1331) -.pay-hit.com -# ||passport-rk.ru/widgets/partner/ (advblock.txt: 1330) -.passport-rk.ru/widgets/partner/ -# ||partners.mobiguru.ru^ (advblock.txt: 1327) -.partners.mobiguru.ru -# ||partner.pladform.ru^ (advblock.txt: 1325) -.partner.pladform.ru -# ||partner.ixi.ua^ (advblock.txt: 1323) -.partner.ixi.ua -# ||partner.allsoft.ru^ (advblock.txt: 1320) -.partner.allsoft.ru -# ||partner.alfa.kz^ (advblock.txt: 1319) -.partner.alfa.kz -# ||palantir.in/showban*.php? (advblock.txt: 1316) -.palantir.in/showban.*\.php\? -# ||owap.su^ (advblock.txt: 1313) -.owap.su -# ||or.ru/inner| (advblock.txt: 1311) -.or.ru/inner$ -# ||open.by/bnrs/ (advblock.txt: 1309) -.open.by/bnrs/ -# ||oowl.ru/ab/ (advblock.txt: 1308) -.oowl.ru/ab/ -# ||onlineresume.ru/banner*? (advblock.txt: 1306) -.onlineresume.ru/banner.*\? -# ||ongm.net^*/images/banner.png (advblock.txt: 1305) -.ongm.net/.*/images/banner\.png -# ||onban.ru^ (advblock.txt: 1304) -.onban.ru -# ||oiya.ru^ (advblock.txt: 1303) -.oiya.ru -# ||oberegi-runi.ru^*partnership/ (advblock.txt: 1301) -.oberegi-runi.ru/.*partnership/ -# ||oberegi-runi.ru/assets/ (advblock.txt: 1300) -.oberegi-runi.ru/assets/ -# ||nostalgia.onego.ru^ (advblock.txt: 1292) -.nostalgia.onego.ru -# ||nomer1.ru.ru^ (advblock.txt: 1291) -.nomer1.ru.ru -# ||nline.net.ua/nl_banner/ (advblock.txt: 1288) -.nline.net.ua/nl_banner/ -# ||ningres.ru^ (advblock.txt: 1287) -.ningres.ru -# ||nic.ua/i/b/ (advblock.txt: 1285) -.nic.ua/i/b/ -# ||nextonmarket.com/i/banners/ (advblock.txt: 1283) -.nextonmarket.com/i/banners/ -# ||newsprom.ru/img/ (advblock.txt: 1282) -.newsprom.ru/img/ -# ||neoban.su^ (advblock.txt: 1276) -.neoban.su -# ||need2buy.1gb.ru^ (advblock.txt: 1274) -.need2buy.1gb.ru -# ||nclick.ru^ (advblock.txt: 1273) -.nclick.ru -# ||nasf.ru/ad/ (advblock.txt: 1272) -.nasf.ru/ad/ -# ||n.vipadvert.net^ (advblock.txt: 1269) -.n.vipadvert.net -# ||mytraf.ru^ (advblock.txt: 1268) -.mytraf.ru -# ||myshopthings.com/partner-rtb.js? (advblock.txt: 1267) -.myshopthings.com/partner-rtb\.js\? -# ||myhosti.ru/manimg/userdata/ (advblock.txt: 1261) -.myhosti.ru/manimg/userdata/ -# ||mydatingcash.com^ (advblock.txt: 1260) -.mydatingcash.com -# ||musicrank.ru/js.php? (advblock.txt: 1258) -.musicrank.ru/js\.php\? -# ||multiclick.ru^ (advblock.txt: 1256) -.multiclick.ru -# ||mostinfo.net/img/top/ (advblock.txt: 1254) -.mostinfo.net/img/top/ -# ||moovy.ru/b*.php? (advblock.txt: 1252) -.moovy.ru/b.*\.php\? -# ||moonbit.co.in/img/ (advblock.txt: 1251) -.moonbit.co.in/img/ -# ||moneysyst.biz^ (advblock.txt: 1248) -.moneysyst.biz -# ||money.loveplanet.ru/nb/ (advblock.txt: 1247) -.money.loveplanet.ru/nb/ -# ||monetti.ru/images/banners/ (advblock.txt: 1245) -.monetti.ru/images/banners/ -# ||moijs.com^ (advblock.txt: 1244) -.moijs.com -# ||moifoto.ru/rek_ (advblock.txt: 1243) -.moifoto.ru/rek_ -# ||mobiads.ru^ (advblock.txt: 1240) -.mobiads.ru -# ||mlsn.ru/specials/ (advblock.txt: 1236) -.mlsn.ru/specials/ -# ||mlgame.ru/wiki/attach/Referal/ (advblock.txt: 1235) -.mlgame.ru/wiki/attach/Referal/ -# ||miniban.ru^ (advblock.txt: 1230) -.miniban.ru -# ||mgnc.org/external-banners/ (advblock.txt: 1228) -.mgnc.org/external-banners/ -# ||metod-online.com^*/promo/ (advblock.txt: 1227) -.metod-online.com/.*/promo/ -# ||megaban.com.ua^ (advblock.txt: 1219) -.megaban.com.ua -# ||mediatraffic.com.ua^ (advblock.txt: 1217) -.mediatraffic.com.ua -# ||mediarealtor.ru^ (advblock.txt: 1216) -.mediarealtor.ru -# ||media.online.ua/all/gft/ (advblock.txt: 1213) -.media.online.ua/all/gft/ -# ||mbn.su^ (advblock.txt: 1210) -.mbn.su -# ||mbn.kr.ua^ (advblock.txt: 1209) -.mbn.kr.ua -# ||market.autoua.net/partnership/uxi/?ref= (advblock.txt: 1201) -.market.autoua.net/partnership/uxi/\?ref= -# ||marathonbet.com/view.php? (advblock.txt: 1200) -.marathonbet.com/view\.php\? -# ||managermest.ru^ (advblock.txt: 1198) -.managermest.ru -# ||mamyshev.ru/bn/ (advblock.txt: 1197) -.mamyshev.ru/bn/ -# ||m2k.ru/cgi-bin/ (advblock.txt: 1190) -.m2k.ru/cgi-bin/ -# ||luxurycash.net^ (advblock.txt: 1189) -.luxurycash.net -# ||luxcdn.com^ (advblock.txt: 1188) -.luxcdn.com -# ||luxcash.ru^ (advblock.txt: 1187) -.luxcash.ru -# ||lux-bn.com.ua^ (advblock.txt: 1186) -.lux-bn.com.ua -# ||loveadvert.ru^ (advblock.txt: 1184) -.loveadvert.ru -# ||lopuer.biz^ (advblock.txt: 1183) -.lopuer.biz -# ||loadserial.ru^ (advblock.txt: 1181) -.loadserial.ru -# ||loadpays.com^*/images/banners/ (advblock.txt: 1180) -.loadpays.com/.*/images/banners/ -# ||loadpartners.com^ (advblock.txt: 1179) -.loadpartners.com -# ||loadmult.ru^ (advblock.txt: 1178) -.loadmult.ru -# ||loadmovie.ru^ (advblock.txt: 1177) -.loadmovie.ru -# ||liveclix.net^ (advblock.txt: 1176) -.liveclix.net -# ||litres.ru/pages/get_vidget/? (advblock.txt: 1175) -.litres.ru/pages/get_vidget/\? -# ||liny-ads.net^ (advblock.txt: 1173) -.liny-ads.net -# ||linkzilla.ru/seo/ (advblock.txt: 1172) -.linkzilla.ru/seo/ -# ||linkme.org.ua^ (advblock.txt: 1170) -.linkme.org.ua -# ||linkexchange.ru^ (advblock.txt: 1169) -.linkexchange.ru -# ||linkcase.ru^ (advblock.txt: 1168) -.linkcase.ru -# ||lif.yaicom.ru^ (advblock.txt: 1167) -.lif.yaicom.ru -# ||liderus.ru^ (advblock.txt: 1165) -.liderus.ru -# ||libertytraffic.ru^ (advblock.txt: 1164) -.libertytraffic.ru -# ||letitsoft.com^ (advblock.txt: 1161) -.letitsoft.com -# ||leporno.org/img/ (advblock.txt: 1158) -.leporno.org/img/ -# ||leadiacloud.com/widget.js? (advblock.txt: 1156) -.leadiacloud.com/widget\.js\? -# ||ladytrack.net^ (advblock.txt: 1153) -.ladytrack.net -# ||labirint.ru/design/partner/ (advblock.txt: 1151) -.labirint.ru/design/partner/ -# ||kset.kz/imgb/ (advblock.txt: 1147) -.kset.kz/imgb/ -# ||krutilki.ru^ (advblock.txt: 1146) -.krutilki.ru -# ||krutilka.net^ (advblock.txt: 1145) -.krutilka.net -# ||komisite.ru/images/ban*.gif (advblock.txt: 1139) -.komisite.ru/images/ban.*\.gif -# ||kolobok.us/button/ (advblock.txt: 1138) -.kolobok.us/button/ -# ||kleo.ru/cgi-bin/ (advblock.txt: 1136) -.kleo.ru/cgi-bin/ -# ||kioskas.lt^*/pop.php? (advblock.txt: 1135) -.kioskas.lt/.*/pop\.php\? -# ||kazban.su^ (advblock.txt: 1127) -.kazban.su -# ||kavkazweb.net/tc.cgi? (advblock.txt: 1126) -.kavkazweb.net/tc\.cgi\? -# ||kaspersky.ru/images/miscellaneouses/468- (advblock.txt: 1125) -.kaspersky.ru/images/miscellaneouses/468- -# ||kartinka.com.ua/partner/load? (advblock.txt: 1124) -.kartinka.com.ua/partner/load\? -# ||karambas.ru/flash (advblock.txt: 1123) -.karambas.ru/flash -# ||karabalikelektronik.com/images/reklam (advblock.txt: 1122) -.karabalikelektronik.com/images/reklam -# ||kadamata.com^ (advblock.txt: 1120) -.kadamata.com -# ||kadabada.com^ (advblock.txt: 1119) -.kadabada.com -# ||ka7co.com^ (advblock.txt: 1117) -.ka7co.com -# ||jsn.st02.net^ (advblock.txt: 1116) -.jsn.st02.net -# ||js.einfo.by/? (advblock.txt: 1115) -.js.einfo.by/\? -# ||job.ws/_bann/ (advblock.txt: 1113) -.job.ws/_bann/ -# ||jet3.ayola.net/cn.php? (advblock.txt: 1112) -.jet3.ayola.net/cn\.php\? -# ||ispmega.ru/billing/_rootimages/banners/ (advblock.txt: 1106) -.ispmega.ru/billing/_rootimages/banners/ -# ||ipz.ru/cgi-bin/ (advblock.txt: 1104) -.ipz.ru/cgi-bin/ -# ||invitemaster.ru/widget.js (advblock.txt: 1099) -.invitemaster.ru/widget\.js -# ||invictory.org/banners/ (advblock.txt: 1098) -.invictory.org/banners/ -# ||intim-magazin.com.ua/bn/ (advblock.txt: 1095) -.intim-magazin.com.ua/bn/ -# ||internetportal.ru/*.gif (advblock.txt: 1094) -.internetportal.ru/.*\.gif -# ||internalinspector.com^ (advblock.txt: 1092) -.internalinspector.com -# ||inst.letitbit.net^ (advblock.txt: 1090) -.inst.letitbit.net -# ||insalea.ru/bannerfans_ (advblock.txt: 1089) -.insalea.ru/bannerfans_ -# ||infosec.ru/common/data/pub/images/articles/ (advblock.txt: 1086) -.infosec.ru/common/data/pub/images/articles/ -# ||info-dvd.ru/*/rotator/ (advblock.txt: 1083) -.info-dvd.ru/.*/rotator/ -# ||inferno.name/banner. (advblock.txt: 1082) -.inferno.name/banner\. -# ||img.ruclicks.com/ruclicks (advblock.txt: 1079) -.img.ruclicks.com/ruclicks -# ||igrushek.net/ad/ (advblock.txt: 1075) -.igrushek.net/ad/ -# ||igromagaz.ru/partner/ (advblock.txt: 1074) -.igromagaz.ru/partner/ -# ||ice-media.ru^ (advblock.txt: 1072) -.ice-media.ru -# ||i.sdska.ru^*/sdb.js? (advblock.txt: 1071) -.i.sdska.ru/.*/sdb\.js\? -# ||i.j2j.ru^ (advblock.txt: 1070) -.i.j2j.ru -# ||hypernews.ru^ (advblock.txt: 1068) -.hypernews.ru -# ||hotinga.ru^ (advblock.txt: 1067) -.hotinga.ru -# ||hotels.ru/content/images/poster/ (advblock.txt: 1065) -.hotels.ru/content/images/poster/ -# ||hostweek.net/manimg/userdata/ (advblock.txt: 1064) -.hostweek.net/manimg/userdata/ -# ||host.ru/images/txt_iframe.php (advblock.txt: 1062) -.host.ru/images/txt_iframe\.php -# ||homrus.net^ (advblock.txt: 1061) -.homrus.net -# ||holder.com.ua^ (advblock.txt: 1060) -.holder.com.ua -# ||hmn.ru/mhmb_bs/viewb.js? (advblock.txt: 1059) -.hmn.ru/mhmb_bs/viewb\.js\? -# ||hit-sales.ru^ (advblock.txt: 1056) -.hit-sales.ru -# ||heroeswm.ru/some_junk/ (advblock.txt: 1054) -.heroeswm.ru/some_junk/ -# ||gzonline.ru//upload/iblock/ (advblock.txt: 1051) -# ||grt02.com^ (advblock.txt: 1050) -.grt02.com -# ||grt01.com^ (advblock.txt: 1049) -.grt01.com -# ||grifiins.ru^ (advblock.txt: 1048) -.grifiins.ru -# ||gravdee.com^ (advblock.txt: 1047) -.gravdee.com -# ||grattis.ru/promo/ (advblock.txt: 1046) -.grattis.ru/promo/ -# ||govazd.am^ (advblock.txt: 1045) -.govazd.am -# ||gorodnews.ru/bb/ (advblock.txt: 1044) -.gorodnews.ru/bb/ -# ||goodadvert.com.ua^ (advblock.txt: 1041) -.goodadvert.com.ua -# ||good-teasers.ru^ (advblock.txt: 1040) -.good-teasers.ru -# ||goldfishkapartners.com^ (advblock.txt: 1038) -.goldfishkapartners.com -# ||go.bb.ru/images/ (advblock.txt: 1036) -.go.bb.ru/images/ -# ||gnezdo.ru^ (advblock.txt: 1035) -.gnezdo.ru -# ||glows.ru^ (advblock.txt: 1034) -.glows.ru -# ||globus-inter.com/images/banners/ (advblock.txt: 1032) -.globus-inter.com/images/banners/ -# ||giveawayoftheday.com/ticker/ (advblock.txt: 1030) -.giveawayoftheday.com/ticker/ -# ||gigamega.ru^ (advblock.txt: 1027) -.gigamega.ru -# ||ggsaffiliates.com^ (advblock.txt: 1026) -.ggsaffiliates.com -# ||gettraf.org^ (advblock.txt: 1025) -.gettraf.org -# ||getb.7ya.ru^ (advblock.txt: 1024) -.getb.7ya.ru -# ||get-click.net^ (advblock.txt: 1023) -.get-click.net -# ||gde-luchshe.ru/widget/ (advblock.txt: 1022) -.gde-luchshe.ru/widget/ -# ||gbs.gamingmedia.ru^ (advblock.txt: 1021) -.gbs.gamingmedia.ru -# ||gamingpartners.org^ (advblock.txt: 1020) -.gamingpartners.org -# ||gamenet.ru^*/?rnd= (advblock.txt: 1019) -.gamenet.ru/.*/\?rnd= -# ||gamedl.ru^ (advblock.txt: 1018) -.gamedl.ru -# ||g2a.com/widget_ (advblock.txt: 1014) -.g2a.com/widget_ -# ||fxbn.fxcd.ru^ (advblock.txt: 1012) -.fxbn.fxcd.ru -# ||funkit.ru/i/partner_banners/ (advblock.txt: 1010) -.funkit.ru/i/partner_banners/ -# ||fsimg.ru/elephant/ (advblock.txt: 1009) -.fsimg.ru/elephant/ -# ||frogadvert.ru^ (advblock.txt: 1008) -.frogadvert.ru -# ||freewm.ru^ (advblock.txt: 1006) -.freewm.ru -# ||freeavalanche.ru^ (advblock.txt: 1004) -.freeavalanche.ru -# ||fotostrana.ru/promo/ (advblock.txt: 1003) -.fotostrana.ru/promo/ -# ||forex4you.org/flash/partners/ (advblock.txt: 1000) -.forex4you.org/flash/partners/ -# ||forex-i-love-you.ru/files/ (advblock.txt: 999) -.forex-i-love-you.ru/files/ -# ||fo.ru^*/affilate/ (advblock.txt: 997) -.fo.ru/.*/affilate/ -# ||fluence-club.ru/forum/images/banners/ (advblock.txt: 996) -.fluence-club.ru/forum/images/banners/ -# ||fleshlight-russia.com/fbn/ (advblock.txt: 994) -.fleshlight-russia.com/fbn/ -# ||flapoint.ru^ (advblock.txt: 993) -.flapoint.ru -# ||finmonitor.com.ua/freenet/go.php?sid= (advblock.txt: 991) -.finmonitor.com.ua/freenet/go\.php\?sid= -# ||finbs.ru^ (advblock.txt: 990) -.finbs.ru -# ||fictionbook.ru/static/imgb/ (advblock.txt: 986) -.fictionbook.ru/static/imgb/ -# ||fialet.com^ (advblock.txt: 985) -.fialet.com -# ||festival-leonardo.ru/images/banners/ (advblock.txt: 984) -.festival-leonardo.ru/images/banners/ -# ||fermasosedi.biz/reflink/ (advblock.txt: 983) -.fermasosedi.biz/reflink/ -# ||feed.teasermaster.ru^ (advblock.txt: 982) -.feed.teasermaster.ru -# ||fbs.for-ua.org.ua^ (advblock.txt: 981) -.fbs.for-ua.org.ua -# ||fatal.ru/adfatal.js (advblock.txt: 980) -.fatal.ru/adfatal\.js -# ||farle.ru/?bn= (advblock.txt: 978) -.farle.ru/\?bn= -# ||fantasy.d2.ru/showban (advblock.txt: 977) -.fantasy.d2.ru/showban -# ||fanshop.ru/images/__nners/ (advblock.txt: 976) -.fanshop.ru/images/__nners/ -# ||fanat.ru/versus/ (advblock.txt: 975) -.fanat.ru/versus/ -# ||fairlink.ru^ (advblock.txt: 973) -.fairlink.ru -# ||factor-vesa.net/enter/?url=dont_go_away/ (advblock.txt: 972) -.factor-vesa.net/enter/\?url=dont_go_away/ -# ||extool.biz/banners/ (advblock.txt: 971) -.extool.biz/banners/ -# ||exo.kiev.ua/?zone= (advblock.txt: 970) -.exo.kiev.ua/\?zone= -# ||ex-load.com/promo/ (advblock.txt: 968) -.ex-load.com/promo/ -# ||evviva.com.ua/images/b/ (advblock.txt: 967) -.evviva.com.ua/images/b/ -# ||eurosmi.ru/ad/ (advblock.txt: 965) -.eurosmi.ru/ad/ -# ||eskhosting.ru/img/b/ (advblock.txt: 964) -.eskhosting.ru/img/b/ -# ||eserver.ru/img/b/ (advblock.txt: 963) -.eserver.ru/img/b/ -# ||erotraf.com^ (advblock.txt: 961) -.erotraf.com -# ||eradio.net.ua/ban/ (advblock.txt: 960) -.eradio.net.ua/ban/ -# ||epartner.ru^ (advblock.txt: 959) -.epartner.ru -# ||entercash.ru^ (advblock.txt: 955) -.entercash.ru -# ||emnodar.ru^ (advblock.txt: 954) -.emnodar.ru -# ||elephant.fotostrana.ru^ (advblock.txt: 952) -.elephant.fotostrana.ru -# ||effad.ru^ (advblock.txt: 951) -.effad.ru -# ||ecosigara.com.ua/partners/ (advblock.txt: 950) -.ecosigara.com.ua/partners/ -# ||e-place.ru^ (advblock.txt: 949) -.e-place.ru -# ||e-links.ru^ (advblock.txt: 947) -.e-links.ru -# ||dverizamki.org/bshow/ (advblock.txt: 946) -.dverizamki.org/bshow/ -# ||duuw.nm.ru^ (advblock.txt: 945) -.duuw.nm.ru -# ||dragon.lt/baneris (advblock.txt: 942) -.dragon.lt/baneris -# ||dozory.goodoo.ru^ (advblock.txt: 941) -.dozory.goodoo.ru -# ||dozatv.net/foto/ (advblock.txt: 940) -.dozatv.net/foto/ -# ||doublecapital.org/object/ (advblock.txt: 939) -.doublecapital.org/object/ -# ||dotua.org^*/branding/ (advblock.txt: 938) -.dotua.org/.*/branding/ -# ||dns-shop.ru/export/ (advblock.txt: 936) -.dns-shop.ru/export/ -# ||dimpy.narod.ru^ (advblock.txt: 934) -.dimpy.narod.ru -# ||diamondelectric.ru/partner_block.php? (advblock.txt: 933) -.diamondelectric.ru/partner_block\.php\? -# ||dewis.h1.ru^ (advblock.txt: 931) -.dewis.h1.ru -# ||depositfiles.com/img/banners/ (advblock.txt: 930) -.depositfiles.com/img/banners/ -# ||denezhnyie-rucheyki.ru/partner_programs/banners/ (advblock.txt: 929) -.denezhnyie-rucheyki.ru/partner_programs/banners/ -# ||dating-exchange.com^ (advblock.txt: 925) -.dating-exchange.com -# ||cykahax.net^ (advblock.txt: 924) -.cykahax.net -# ||culpainnata.ru^ (advblock.txt: 922) -.culpainnata.ru -# ||cszz.ru^ (advblock.txt: 921) -.cszz.ru -# ||csht.ru^ (advblock.txt: 920) -.csht.ru -# ||cshi.ru^ (advblock.txt: 919) -.cshi.ru -# ||cry.ru/sexclub/ (advblock.txt: 918) -.cry.ru/sexclub/ -# ||cqc.ru^ (advblock.txt: 915) -.cqc.ru -# ||cpmsolution.ru^ (advblock.txt: 914) -.cpmsolution.ru -# ||costaction.com/refers/ (advblock.txt: 913) -.costaction.com/refers/ -# ||cosmorelax.ru/tmp/ (advblock.txt: 912) -.cosmorelax.ru/tmp/ -# ||context.hotline.ua^ (advblock.txt: 910) -.context.hotline.ua -# ||context-platform.com^ (advblock.txt: 909) -.context-platform.com -# ||content.relax.ru^ (advblock.txt: 908) -.content.relax.ru -# ||company.1ps.ru^ (advblock.txt: 907) -.company.1ps.ru -# ||comp-ex.ru^ (advblock.txt: 906) -.comp-ex.ru -# ||code.barrior.ru^ (advblock.txt: 905) -.code.barrior.ru -# ||co.cc/img/affiliates/ (advblock.txt: 904) -.co.cc/img/affiliates/ -# ||clickvip.ru^ (advblock.txt: 902) -.clickvip.ru -# ||clickozavr.com^ (advblock.txt: 901) -.clickozavr.com -# ||clickhere.ru^ (advblock.txt: 900) -.clickhere.ru -# ||clickcoin.com^ (advblock.txt: 898) -.clickcoin.com -# ||clickburner.com^ (advblock.txt: 896) -.clickburner.com -# ||click4wm.ru^ (advblock.txt: 894) -.click4wm.ru -# ||click.readme.ru^ (advblock.txt: 893) -.click.readme.ru -# ||chitika.org^ (advblock.txt: 889) -.chitika.org -# ||cherrystatic.net^*/banners/ (advblock.txt: 888) -.cherrystatic.net/.*/banners/ -# ||chbn.ru^ (advblock.txt: 887) -.chbn.ru -# ||cenovik.net^ (advblock.txt: 886) -.cenovik.net -# ||cbn.ru^ (advblock.txt: 885) -.cbn.ru -# ||casino-piramida.com/partner/banners/ (advblock.txt: 884) -.casino-piramida.com/partner/banners/ -# ||cashimtrap.com^ (advblock.txt: 882) -.cashimtrap.com -# ||carambis.ru/images/promo_b/ (advblock.txt: 880) -.carambis.ru/images/promo_b/ -# ||bx.metka.ru^ (advblock.txt: 877) -.bx.metka.ru -# ||bvf.ru/upchk/ (advblock.txt: 876) -.bvf.ru/upchk/ -# ||buy-link.ru^ (advblock.txt: 875) -.buy-link.ru -# ||bs.orsk.ru^ (advblock.txt: 872) -.bs.orsk.ru -# ||bs.mybb.ru^ (advblock.txt: 871) -.bs.mybb.ru -# ||bravohost.ru/volgaban. (advblock.txt: 869) -.bravohost.ru/volgaban\. -# ||bqhost.net/_rootimages/banners/ (advblock.txt: 868) -.bqhost.net/_rootimages/banners/ -# ||bongacams.com/promo. (advblock.txt: 865) -.bongacams.com/promo\. -# ||bomb-club.com/aff/ (advblock.txt: 864) -.bomb-club.com/aff/ -# ||bn.orthodoxy.ru^ (advblock.txt: 862) -.bn.orthodoxy.ru -# ||bn.ohah.ru^ (advblock.txt: 861) -.bn.ohah.ru -# ||blowclick.ru^ (advblock.txt: 860) -.blowclick.ru -# ||bloha.net^ (advblock.txt: 859) -.bloha.net -# ||bistr4.ru^ (advblock.txt: 855) -.bistr4.ru -# ||bigbuzzy.ru/m/proposal/banner/ (advblock.txt: 854) -.bigbuzzy.ru/m/proposal/banner/ -# ||bezlimitvideo.com^ (advblock.txt: 852) -.bezlimitvideo.com -# ||bestexotic.com^ (advblock.txt: 851) -.bestexotic.com -# ||bestclick.ru^ (advblock.txt: 850) -.bestclick.ru -# ||bepartner.ru^ (advblock.txt: 849) -.bepartner.ru -# ||bcontent.life.ru^ (advblock.txt: 847) -.bcontent.life.ru -# ||bcggo.ru^ (advblock.txt: 846) -.bcggo.ru -# ||bbn.img.com.ua^ (advblock.txt: 845) -.bbn.img.com.ua -# ||bbn.by^ (advblock.txt: 844) -.bbn.by -# ||bb.stream24.ru^ (advblock.txt: 843) -.bb.stream24.ru -# ||battlespace.ru/ad/ (advblock.txt: 842) -.battlespace.ru/ad/ -# ||bashnya.ru^ (advblock.txt: 840) -.bashnya.ru -# ||base.kiwi.kz^ (advblock.txt: 839) -.base.kiwi.kz -# ||bantex.ru^ (advblock.txt: 838) -.bantex.ru -# ||bans.name^ (advblock.txt: 837) -.bans.name -# ||bannerhost.ru^ (advblock.txt: 836) -.bannerhost.ru -# ||banner.ua^ (advblock.txt: 835) -.banner.ua -# ||banner-viewers.com^ (advblock.txt: 834) -.banner-viewers.com -# ||banner-storage.fo.ru^ (advblock.txt: 833) -.banner-storage.fo.ru -# ||babyzone.ua^*/bmn/ (advblock.txt: 829) -.babyzone.ua/.*/bmn/ -# ||b81x63nc.ws.md^ (advblock.txt: 827) -.b81x63nc.ws.md -# ||b2bvideo.ru^ (advblock.txt: 826) -.b2bvideo.ru -# ||b2bcontext.ru^ (advblock.txt: 825) -.b2bcontext.ru -# ||b.nwave.de^ (advblock.txt: 824) -.b.nwave.de -# ||b.madplace99.com^ (advblock.txt: 823) -.b.madplace99.com -# ||b.itvnet.lv^ (advblock.txt: 822) -.b.itvnet.lv -# ||b.candy.vl.ru^ (advblock.txt: 821) -.b.candy.vl.ru -# ||b.adbox.lv^ (advblock.txt: 820) -.b.adbox.lv -# ||b.acpr.su^ (advblock.txt: 819) -.b.acpr.su -# ||b-one.com.ua^ (advblock.txt: 818) -.b-one.com.ua -# ||azartaffiliates.com^ (advblock.txt: 815) -.azartaffiliates.com -# ||avifilm.ru^ (advblock.txt: 814) -.avifilm.ru -# ||aviasales.ru/promo/ (advblock.txt: 813) -.aviasales.ru/promo/ -# ||autotizer.ru^ (advblock.txt: 809) -.autotizer.ru -# ||atlassolutions.com^ (advblock.txt: 806) -.atlassolutions.com -# ||assessoria.hotbox.ru^ (advblock.txt: 804) -.assessoria.hotbox.ru -# ||asg.vidigital.ru^ (advblock.txt: 802) -.asg.vidigital.ru -# ||artbanner.com.ua^ (advblock.txt: 801) -.artbanner.com.ua -# ||apress-barmen.ru/banner_shape_images/ (advblock.txt: 799) -.apress-barmen.ru/banner_shape_images/ -# ||anvaga.ru/partners_block/ (advblock.txt: 795) -.anvaga.ru/partners_block/ -# ||antihacker.info^*/partner/ (advblock.txt: 793) -.antihacker.info/.*/partner/ -# ||amh.ru^ (advblock.txt: 790) -.amh.ru -# ||alphacash.biz^ (advblock.txt: 788) -.alphacash.biz -# ||allsportstat.ru/1xbet/ (advblock.txt: 785) -.allsportstat.ru/1xbet/ -# ||alfainternet.su^ (advblock.txt: 781) -.alfainternet.su -# ||alawar.ru/onlinegames/*&link= (advblock.txt: 780) -.alawar.ru/onlinegames/.*&link= -# ||akabo.ru^ (advblock.txt: 778) -.akabo.ru -# ||agitmedia.com^ (advblock.txt: 776) -.agitmedia.com -# ||agava.ru/b/ (advblock.txt: 774) -.agava.ru/b/ -# ||affilates.doktordick.com^ (advblock.txt: 772) -.affilates.doktordick.com -# ||aff.sportsevents365.com^*/banners/ (advblock.txt: 771) -.aff.sportsevents365.com/.*/banners/ -# ||aedrvt.majordomo.ru^ (advblock.txt: 770) -.aedrvt.majordomo.ru -# ||adward.ru^ (advblock.txt: 769) -.adward.ru -# ||advvideo.com^ (advblock.txt: 768) -.advvideo.com -# ||advertpay.ru^ (advblock.txt: 765) -.advertpay.ru -# ||advertbox.ru^ (advblock.txt: 764) -.advertbox.ru -# ||advaction.ru^ (advblock.txt: 763) -.advaction.ru -# ||adunit.chango.ca^ (advblock.txt: 762) -.adunit.chango.ca -# ||adtime.ru^ (advblock.txt: 761) -.adtime.ru -# ||adtidy.net^ (advblock.txt: 760) -.adtidy.net -# ||adsplius.lt^ (advblock.txt: 759) -.adsplius.lt -# ||adsellers.net^ (advblock.txt: 758) -.adsellers.net -# ||adsclick.ru^ (advblock.txt: 757) -.adsclick.ru -# ||adru.net^ (advblock.txt: 756) -.adru.net -# ||adpro.com.ua^ (advblock.txt: 755) -.adpro.com.ua -# ||adpix.ru^ (advblock.txt: 754) -.adpix.ru -# ||admulti.ru^ (advblock.txt: 753) -.admulti.ru -# ||admaster.net^ (advblock.txt: 751) -.admaster.net -# ||adland.ru^ (advblock.txt: 750) -.adland.ru -# ||adizer.ru^ (advblock.txt: 749) -.adizer.ru -# ||adhub.ru^ (advblock.txt: 748) -.adhub.ru -# ||adhands.ru^ (advblock.txt: 747) -.adhands.ru -# ||adgo-online.de^ (advblock.txt: 746) -.adgo-online.de -# ||addweb.ru^ (advblock.txt: 745) -.addweb.ru -# ||addmefast.com/images/banners/ (advblock.txt: 743) -.addmefast.com/images/banners/ -# ||addisp.com^ (advblock.txt: 742) -.addisp.com -# ||addflow.ru^ (advblock.txt: 741) -.addflow.ru -# ||adcomplete.ru^ (advblock.txt: 740) -.adcomplete.ru -# ||adcast.ru^ (advblock.txt: 739) -.adcast.ru -# ||adbomb.ru^ (advblock.txt: 738) -.adbomb.ru -# ||adbn.ru^ (advblock.txt: 737) -.adbn.ru -# ||adbee.com.ua^ (advblock.txt: 736) -.adbee.com.ua -# ||ad1.sibnet.ru^ (advblock.txt: 735) -.ad1.sibnet.ru -# ||ad.sweb.ru^ (advblock.txt: 734) -.ad.sweb.ru -# ||ad.leongaming.com^ (advblock.txt: 733) -.ad.leongaming.com -# ||ad.ir.ru/bb.cgi? (advblock.txt: 732) -.ad.ir.ru/bb\.cgi\? -# ||ad.iplayer.org^ (advblock.txt: 731) -.ad.iplayer.org -# ||ad.fantiki.net^ (advblock.txt: 730) -.ad.fantiki.net -# ||ad.aorta-net.com^ (advblock.txt: 729) -.ad.aorta-net.com -# ||action.raadword.com^ (advblock.txt: 727) -.action.raadword.com -# ||abs.ispsystem.com^ (advblock.txt: 726) -.abs.ispsystem.com -# ||abelus.ru/index/ms_reklam_ (advblock.txt: 725) -.abelus.ru/index/ms_reklam_ -# ||a.fobos.tv^ (advblock.txt: 721) -.a.fobos.tv -# ||a-love.nninfo.ru^ (advblock.txt: 720) -.a-love.nninfo.ru -# ||8coins.ru^ (advblock.txt: 718) -.8coins.ru -# ||7rtv.com^ (advblock.txt: 717) -.7rtv.com -# ||7gomedia.ru^ (advblock.txt: 716) -.7gomedia.ru -# ||468.vologdainfo.ru^ (advblock.txt: 715) -.468.vologdainfo.ru -# ||4-moto.ru/ad/ (advblock.txt: 714) -.4-moto.ru/ad/ -# ||2x2.kz^ (advblock.txt: 711) -.2x2.kz -# ||24s.ru^ (advblock.txt: 708) -.24s.ru -# ||24au.ru/auctioninformer/ (advblock.txt: 706) -.24au.ru/auctioninformer/ -# ||2000zakazov.ru^ (advblock.txt: 705) -.2000zakazov.ru -# ||1000zakazov.ru^ (advblock.txt: 702) -.1000zakazov.ru -# ||褉褎/banner/ (advblock.txt: 643) -# ||ucoz.*/img/ma/cv.gif (advblock.txt: 642) -.ucoz.*./(.*/)?img/ma/cv\.gif -# ||ua/uploads/banners/ (advblock.txt: 641) -# ||ua/upload/jackets/ (advblock.txt: 640) -# ||ua/i/banners/ (advblock.txt: 639) -# ||ua/i/banner/ (advblock.txt: 638) -# ||ua/banners/ (advblock.txt: 637) -# ||ua/banner/ (advblock.txt: 636) -# ||ru/uploads/banners/ (advblock.txt: 635) -# ||ru/i/banners/ (advblock.txt: 631) -# ||ru/i/banner/ (advblock.txt: 630) -# ||ru/banners/ (advblock.txt: 629) -# ||ru/banner/ (advblock.txt: 628) -# ||ru/banner. (advblock.txt: 627) -# ||ru/ban/ (advblock.txt: 626) -# ||ru/ads/ (advblock.txt: 625) -# ||net/banners/ (advblock.txt: 624) -# ||info/vk2/ (advblock.txt: 622) -# ||info/alert/ (advblock.txt: 621) -# _tizers. (advblock.txt: 613) -/.*_tizers\. -# _tizer2. (advblock.txt: 612) -/.*_tizer2\. -# _tizer. (advblock.txt: 611) -/.*_tizer\. -# _spy2wc.org (advblock.txt: 610) -/.*_spy2wc\.org -# _banner.gif (advblock.txt: 609) -/.*_banner\.gif -# _baner_ (advblock.txt: 608) -/.*_baner_ -# _baner. (advblock.txt: 607) -/.*_baner\. -# ^clickunder- (advblock.txt: 606) -/(.*[^\w%.-])?clickunder- -clickunder-*. -# ?teaser_ (advblock.txt: 605) -/.*\?teaser_ -# ?begun=*&begun_referrer=*&begun_location= (advblock.txt: 604) -/.*\?begun=.*&begun_referrer=.*&begun_location= -# ?a_aid=testaff& (advblock.txt: 603) -/.*\?a_aid=testaff& -# /ya-awaps2/* (advblock.txt: 601) -/(.*/)?ya-awaps2/.* -# /wp-content/imgrekl/* (advblock.txt: 599) -/(.*/)?wp-content/imgrekl/.* -# /webunder_ (advblock.txt: 598) -/(.*/)?webunder_ -# /warlog. (advblock.txt: 597) -/(.*/)?warlog\. -warlog.*. -# /vsemayki_ (advblock.txt: 596) -/(.*/)?vsemayki_ -# /volcano_banner (advblock.txt: 594) -/(.*/)?volcano_banner -# /viptizer. (advblock.txt: 589) -/(.*/)?viptizer\. -viptizer.*. -# /videoadcode/* (advblock.txt: 587) -/(.*/)?videoadcode/.* -# /video/?format=overroll& (advblock.txt: 586) -/(.*/)?video/\?format=overroll& -# /vendshow/* (advblock.txt: 585) -/(.*/)?vendshow/.* -# /vast.xml?key= (advblock.txt: 584) -/(.*/)?vast\.xml\?key= -# /utftizer. (advblock.txt: 583) -/(.*/)?utftizer\. -utftizer.*. -# /userfiles/banners/* (advblock.txt: 582) -/(.*/)?userfiles/banners/.* -# /upload_photo/banners/* (advblock.txt: 580) -/(.*/)?upload_photo/banners/.* -# /upload/bx/* (advblock.txt: 579) -/(.*/)?upload/bx/.* -# /upload/banners/* (advblock.txt: 578) -/(.*/)?upload/banners/.* -# /ucoz/img/uads/* (advblock.txt: 577) -/(.*/)?ucoz/img/uads/.* -# /ucodes.ru.banners.js (advblock.txt: 576) -/(.*/)?ucodes\.ru\.banners\.js -ucodes.ru.banners.js*. -# /traff.js (advblock.txt: 575) -/(.*/)?traff\.js -traff.js*. -# /topminigames.jpg| (advblock.txt: 574) -/(.*/)?topminigames\.jpg$ -topminigames.jpg -# /tizshow. (advblock.txt: 573) -/(.*/)?tizshow\. -tizshow.*. -# /tizers_ (advblock.txt: 572) -/(.*/)?tizers_ -# /tizers3. (advblock.txt: 571) -/(.*/)?tizers3\. -tizers3.*. -# /tizers2. (advblock.txt: 570) -/(.*/)?tizers2\. -tizers2.*. -# /tizers/* (advblock.txt: 569) -/(.*/)?tizers/.* -# /tizerotator/* (advblock.txt: 568) -/(.*/)?tizerotator/.* -# /tizermedia. (advblock.txt: 567) -/(.*/)?tizermedia\. -tizermedia.*. -# /tizer_ (advblock.txt: 566) -/(.*/)?tizer_ -# /tizer2/* (advblock.txt: 565) -/(.*/)?tizer2/.* -# /tizer2. (advblock.txt: 564) -/(.*/)?tizer2\. -tizer2.*. -# /tizer/* (advblock.txt: 563) -/(.*/)?tizer/.* -# /tizer. (advblock.txt: 562) -/(.*/)?tizer\. -tizer.*. -# /tizer- (advblock.txt: 561) -/(.*/)?tizer- -tizer-*. -# /tionline240x400. (advblock.txt: 560) -/(.*/)?tionline240x400\. -tionline240x400.*. -# /tionline240x100. (advblock.txt: 559) -/(.*/)?tionline240x100\. -tionline240x100.*. -# /tionline150x60. (advblock.txt: 558) -/(.*/)?tionline150x60\. -tionline150x60.*. -# /tionline120x60. (advblock.txt: 557) -/(.*/)?tionline120x60\. -tionline120x60.*. -# /teasers/* (advblock.txt: 556) -/(.*/)?teasers/.* -# /teasers. (advblock.txt: 555) -/(.*/)?teasers\. -teasers.*. -# /teaser_klubnika/* (advblock.txt: 554) -/(.*/)?teaser_klubnika/.* -# /teaser2. (advblock.txt: 553) -/(.*/)?teaser2\. -teaser2.*. -# /talky3d.gif (advblock.txt: 551) -/(.*/)?talky3d\.gif -talky3d.gif*. -# /swf/tionline/* (advblock.txt: 549) -/(.*/)?swf/tionline/.* -# /sun_*_ajax.js| (advblock.txt: 548) -/(.*/)?sun_.*_ajax\.js$ -# /static/tds.js| (advblock.txt: 546) -/(.*/)?static/tds\.js$ -# /start_tr.js? (advblock.txt: 545) -/(.*/)?start_tr\.js\? -# /start_ad.js? (advblock.txt: 544) -/(.*/)?start_ad\.js\? -# /sprava_baner/* (advblock.txt: 543) -/(.*/)?sprava_baner/.* -# /splash/page_header/* (advblock.txt: 542) -/(.*/)?splash/page_header/.* -# /sphinx_*.gif| (advblock.txt: 541) -/(.*/)?sphinx_.*\.gif$ -# /slatefp.asp (advblock.txt: 540) -/(.*/)?slatefp\.asp -slatefp.asp*. -# /show_adv.php?page_id= (advblock.txt: 538) -/(.*/)?show_adv\.php\?page_id= -# /shop-banner.ashx? (advblock.txt: 534) -/(.*/)?shop-banner\.ashx\? -# /shared/promos/* (advblock.txt: 533) -/(.*/)?shared/promos/.* -# /sexvodnokalssnikah/* (advblock.txt: 532) -/(.*/)?sexvodnokalssnikah/.* -# /sextizer. (advblock.txt: 531) -/(.*/)?sextizer\. -sextizer.*. -# /sbn2.js (advblock.txt: 530) -/(.*/)?sbn2\.js -sbn2.js*. -# /sblocks_informer. (advblock.txt: 529) -/(.*/)?sblocks_informer\. -# /rotation/r.php?format= (advblock.txt: 527) -/(.*/)?rotation/r\.php\?format= -# /rnb.php?id= (advblock.txt: 526) -/(.*/)?rnb\.php\?id= -# /richbanner. (advblock.txt: 525) -/(.*/)?richbanner\. -richbanner.*. -# /richarbuz. (advblock.txt: 524) -/(.*/)?richarbuz\. -richarbuz.*. -# /reklama_ (advblock.txt: 523) -/(.*/)?reklama_ -# /rcl/ban/* (advblock.txt: 521) -/(.*/)?rcl/ban/.* -# /rcl/all/* (advblock.txt: 520) -/(.*/)?rcl/all/.* -# /rbknews/* (advblock.txt: 519) -/(.*/)?rbknews/.* -# /r_show.php?b= (advblock.txt: 518) -/(.*/)?r_show\.php\?b= -# /pseudocounter.js (advblock.txt: 517) -/(.*/)?pseudocounter\.js -pseudocounter.js*. -# /priceru_advert_ (advblock.txt: 516) -/(.*/)?priceru_advert_ -# /prepareCode? (advblock.txt: 515) -/(.*/)?prepareCode\? -# /ppndr/* (advblock.txt: 514) -/(.*/)?ppndr/.* -# /popin4.js (advblock.txt: 512) -/(.*/)?popin4\.js -popin4.js*. -# /popin.js (advblock.txt: 511) -/(.*/)?popin\.js -popin.js*. -# /plz.somechange.js? (advblock.txt: 510) -/(.*/)?plz\.somechange\.js\? -# /partner/images/banners/* (advblock.txt: 507) -/(.*/)?partner/images/banners/.* -# /partner/banner/* (advblock.txt: 506) -/(.*/)?partner/banner/.* -# /oyy.js (advblock.txt: 505) -/(.*/)?oyy\.js -oyy.js*. -# /newsanons/*?advert[]= (advblock.txt: 503) -/(.*/)?newsanons/.*\?advert\[\]= -# /networks//banners/* (advblock.txt: 501) -/(.*/)?networks//banners/.* -# /mybaner/* (advblock.txt: 500) -/(.*/)?mybaner/.* -# /mp3player.swf?file=*/vk.mp3 (advblock.txt: 499) -/(.*/)?mp3player\.swf\?file=.*/vk\.mp3 -# /mp3player.swf?file=*/bb2.mp3 (advblock.txt: 498) -/(.*/)?mp3player\.swf\?file=.*/bb2\.mp3 -# /mp3player.swf?file=*/bb1.mp3 (advblock.txt: 497) -/(.*/)?mp3player\.swf\?file=.*/bb1\.mp3 -# /mediaget- (advblock.txt: 495) -/(.*/)?mediaget- -mediaget-*. -# /media/banners/* (advblock.txt: 494) -/(.*/)?media/banners/.* -# /marketplace.asp? (advblock.txt: 493) -/(.*/)?marketplace\.asp\? -# /load-promo/* (advblock.txt: 492) -/(.*/)?load-promo/.* -# /linkexchange/* (advblock.txt: 491) -/(.*/)?linkexchange/.* -# /kmabiz/* (advblock.txt: 490) -/(.*/)?kmabiz/.* -# /js/rot.php?id= (advblock.txt: 486) -/(.*/)?js/rot\.php\?id= -# /js/girls.php| (advblock.txt: 482) -/(.*/)?js/girls\.php$ -# /js/code.php?id= (advblock.txt: 481) -/(.*/)?js/code\.php\?id= -# /jollywallet/* (advblock.txt: 480) -/(.*/)?jollywallet/.* -# /jban.js?idd= (advblock.txt: 479) -/(.*/)?jban\.js\?idd= -# /jads.php? (advblock.txt: 478) -/(.*/)?jads\.php\? -# /j65.php| (advblock.txt: 477) -/(.*/)?j65\.php$ -j65.php -# /informer/script.php?id= (advblock.txt: 475) -/(.*/)?informer/script\.php\?id= -# /informer.php? (advblock.txt: 474) -/(.*/)?informer\.php\? -# /informer.js (advblock.txt: 473) -/(.*/)?informer\.js -informer.js*. -# /inc/brand.css? (advblock.txt: 472) -/(.*/)?inc/brand\.css\? -# /inc/banner_zone/* (advblock.txt: 471) -/(.*/)?inc/banner_zone/.* -# /in.htm?wm=$popup (advblock.txt: 470) -/(.*/)?in\.htm\?wm= -# /imp.php?a_aid= (advblock.txt: 468) -/(.*/)?imp\.php\?a_aid= -# /img/rekl/* (advblock.txt: 467) -/(.*/)?img/rekl/.* -# /img/bnr/* (advblock.txt: 466) -/(.*/)?img/bnr/.* -# /img/bnr- (advblock.txt: 465) -/(.*/)?img/bnr- -# /img/bn/* (advblock.txt: 464) -/(.*/)?img/bn/.* -# /img/banner/* (advblock.txt: 463) -/(.*/)?img/banner/.* -# /images/rekl/* (advblock.txt: 462) -/(.*/)?images/rekl/.* -# /images/rek/* (advblock.txt: 461) -/(.*/)?images/rek/.* -# /images/bn/* (advblock.txt: 460) -/(.*/)?images/bn/.* -# /images/ban/* (advblock.txt: 459) -/(.*/)?images/ban/.* -# /hotfilebanner. (advblock.txt: 456) -/(.*/)?hotfilebanner\. -hotfilebanner.*. -# /hh/BannerHandler.js? (advblock.txt: 455) -/(.*/)?hh/BannerHandler\.js\? -# /get_tiz. (advblock.txt: 453) -/(.*/)?get_tiz\. -# /get_banner_flash.*&shop= (advblock.txt: 452) -/(.*/)?get_banner_flash\..*&shop= -# /gaminator/* (advblock.txt: 449) -/(.*/)?gaminator/.* -# /gaminator. (advblock.txt: 448) -/(.*/)?gaminator\. -gaminator.*. -# /gaminator- (advblock.txt: 447) -/(.*/)?gaminator- -gaminator-*. -# /free/banners/* (advblock.txt: 446) -/(.*/)?free/banners/.* -# /fotocash.js (advblock.txt: 445) -/(.*/)?fotocash\.js -fotocash.js*. -# /files/banners/* (advblock.txt: 443) -/(.*/)?files/banners/.* -# /files/banner/* (advblock.txt: 442) -/(.*/)?files/banner/.* -# /ekbn/src/* (advblock.txt: 441) -/(.*/)?ekbn/src/.* -# /datagroup.gif (advblock.txt: 440) -/(.*/)?datagroup\.gif -datagroup.gif*. -# /ctxtlink/* (advblock.txt: 433) -/(.*/)?ctxtlink/.* -# /content/get?*&previous_ad_id= (advblock.txt: 428) -/(.*/)?content/get\?.*&previous_ad_id= -# /code/click.php?id=$popup (advblock.txt: 427) -/(.*/)?code/click\.php\?id= -# /clk.js| (advblock.txt: 426) -/(.*/)?clk\.js$ -clk.js -# /clickheat. (advblock.txt: 425) -/(.*/)?clickheat\. -clickheat.*. -# /check.php?user_id=*&mode= (advblock.txt: 424) -/(.*/)?check\.php\?user_id=.*&mode= -# /cgi-bin/banners/* (advblock.txt: 423) -/(.*/)?cgi-bin/banners/.* -# /cgi-bin/banner/* (advblock.txt: 422) -/(.*/)?cgi-bin/banner/.* -# /cgi-bin/adv.fcgi? (advblock.txt: 421) -/(.*/)?cgi-bin/adv\.fcgi\? -# /cgi-bin/adt.fcgi? (advblock.txt: 420) -/(.*/)?cgi-bin/adt\.fcgi\? -# /cdn-cgi/pe/bag2?r[]=*an.yandex.ru (advblock.txt: 419) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*an\.yandex\.ru -# /by.banclk? (advblock.txt: 418) -/(.*/)?by\.banclk\? -# /bstats.ashx?ck=*&rnd= (advblock.txt: 417) -/(.*/)?bstats\.ashx\?ck=.*&rnd= -# /branding/js/* (advblock.txt: 415) -/(.*/)?branding/js/.* -# /branding/images/*-banners. (advblock.txt: 414) -/(.*/)?branding/images/.*-banners\. -# /branding/casino/* (advblock.txt: 412) -/(.*/)?branding/casino/.* -# /branding.js (advblock.txt: 411) -/(.*/)?branding\.js -branding.js*. -# /branding-rotator.js (advblock.txt: 410) -/(.*/)?branding-rotator\.js -branding-rotator.js*. -# /bodyclick.php (advblock.txt: 409) -/(.*/)?bodyclick\.php -bodyclick.php*. -# /bn.php?s= (advblock.txt: 408) -/(.*/)?bn\.php\?s= -# /bframe.ashx?place=*&ids= (advblock.txt: 406) -/(.*/)?bframe\.ashx\?place=.*&ids= -# /bfile.ashx?placeid=*&fileid= (advblock.txt: 405) -/(.*/)?bfile\.ashx\?placeid=.*&fileid= -# /begun.js (advblock.txt: 404) -/(.*/)?begun\.js -begun.js*. -# /bazar_fast/* (advblock.txt: 403) -/(.*/)?bazar_fast/.* -# /banners/*_*x*? (advblock.txt: 401) -/(.*/)?banners/.*_.*x.*\? -# /banners.mvc? (advblock.txt: 399) -/(.*/)?banners\.mvc\? -# /bannergzo/* (advblock.txt: 398) -/(.*/)?bannergzo/.* -# /bannerex.cgi/getbanner.js?id= (advblock.txt: 397) -/(.*/)?bannerex\.cgi/getbanner\.js\?id= -bannerex.cgi/getbanner\.js\?id= -# /banner2.gif (advblock.txt: 395) -/(.*/)?banner2\.gif -banner2.gif*. -# /banner.gif (advblock.txt: 394) -/(.*/)?banner\.gif -banner.gif*. -# /baners/* (advblock.txt: 393) -/(.*/)?baners/.* -# /baner_ (advblock.txt: 392) -/(.*/)?baner_ -# /baner/* (advblock.txt: 391) -/(.*/)?baner/.* -# /baner. (advblock.txt: 390) -/(.*/)?baner\. -baner.*. -# /backlinks. (advblock.txt: 389) -/(.*/)?backlinks\. -backlinks.*. -# /b_bs_killdog_ (advblock.txt: 388) -/(.*/)?b_bs_killdog_ -# /aika.swf (advblock.txt: 384) -/(.*/)?aika\.swf -aika.swf*. -# /afisha_banner/* (advblock.txt: 383) -/(.*/)?afisha_banner/.* -# /adwolfScriptScroll.js (advblock.txt: 382) -/(.*/)?adwolfScriptScroll\.js -adwolfScriptScroll.js*. -# /adv_teasers. (advblock.txt: 381) -/(.*/)?adv_teasers\. -# /adv?banners= (advblock.txt: 379) -/(.*/)?adv\?banners= -# /adv/* (advblock.txt: 378) -/(.*/)?adv/.* -# /adstil. (advblock.txt: 376) -/(.*/)?adstil\. -adstil.*. -# /adsnews. (advblock.txt: 375) -/(.*/)?adsnews\. -adsnews.*. -# /Ads.asmx/GetInfo? (advblock.txt: 374) -/(.*/)?Ads\.asmx/GetInfo\? -Ads.asmx/GetInfo\? -# /AdotubeYouTubePlayer. (advblock.txt: 373) -/(.*/)?AdotubeYouTubePlayer\. -AdotubeYouTubePlayer.*. -# /admixermonitorstorage. (advblock.txt: 372) -/(.*/)?admixermonitorstorage\. -admixermonitorstorage.*. -# /admixercloudcreatives. (advblock.txt: 371) -/(.*/)?admixercloudcreatives\. -admixercloudcreatives.*. -# /admixer/* (advblock.txt: 370) -/(.*/)?admixer/.* -# /adliftQueue.js (advblock.txt: 369) -/(.*/)?adliftQueue\.js -adliftQueue.js*. -# /adlift.js (advblock.txt: 368) -/(.*/)?adlift\.js -adlift.js*. -# /adland.php (advblock.txt: 367) -/(.*/)?adland\.php -adland.php*. -# /abnl/?ucozads^ (advblock.txt: 364) -/(.*/)?abnl/\?ucozads[^\w%.-] -# /8831_1.gif (advblock.txt: 357) -/(.*/)?8831_1\.gif -# /700x70_ (advblock.txt: 356) -/(.*/)?700x70_ -# /468-80- (advblock.txt: 355) -/(.*/)?468-80- -468-80-*. -# /240x400_ (advblock.txt: 354) -/(.*/)?240x400_ -# //mads. (advblock.txt: 353) -mads.*. -# //b.*/iframe/* (advblock.txt: 351) -b.*./(.*/)?iframe/.* -# .viptizer. (advblock.txt: 350) -/.*\.viptizer\. -.*.viptizer.*. -# .tizers. (advblock.txt: 349) -/.*\.tizers\. -.*.tizers.*. -# .tizermedia. (advblock.txt: 348) -/.*\.tizermedia\. -.*.tizermedia.*. -# .tizer- (advblock.txt: 347) -/.*\.tizer- -.*.tizer-*. -# .teaser. (advblock.txt: 346) -/.*\.teaser\. -.*.teaser.*. -# .swf?url=http (advblock.txt: 345) -/.*\.swf\?url=http -# .swf?targetURL= (advblock.txt: 344) -/.*\.swf\?targetURL= -# .swf?target=_self&link (advblock.txt: 343) -/.*\.swf\?target=_self&link -# .swf?target=_blank& (advblock.txt: 342) -/.*\.swf\?target=_blank& -# .swf?superpreroll_url= (advblock.txt: 341) -/.*\.swf\?superpreroll_url= -# .swf?pURL= (advblock.txt: 340) -/.*\.swf\?pURL= -# .swf?path=http (advblock.txt: 339) -/.*\.swf\?path=http -# .swf?lnk= (advblock.txt: 338) -/.*\.swf\?lnk= -# .swf?href= (advblock.txt: 337) -/.*\.swf\?href= -# .swf?flash_url= (advblock.txt: 336) -/.*\.swf\?flash_url= -# .swf?flash_link= (advblock.txt: 335) -/.*\.swf\?flash_link= -# .swf?click_url= (advblock.txt: 334) -/.*\.swf\?click_url= -# .swf?banner_href= (advblock.txt: 333) -/.*\.swf\?banner_href= -# .swf?alink= (advblock.txt: 332) -/.*\.swf\?alink= -# .swf?*&link1= (advblock.txt: 331) -/.*\.swf\?.*&link1= -# .sextizer. (advblock.txt: 330) -/.*\.sextizer\. -.*.sextizer.*. -# .richbanner. (advblock.txt: 329) -/.*\.richbanner\. -.*.richbanner.*. -# .php?idadv= (advblock.txt: 327) -/.*\.php\?idadv= -# .htm?href=*&tm_mode= (advblock.txt: 326) -/.*\.htm\?href=.*&tm_mode= -# .bannerbank_ (advblock.txt: 325) -/.*\.bannerbank_ -# .bannerbank. (advblock.txt: 324) -/.*\.bannerbank\. -.*.bannerbank.*. -# -teasers- (advblock.txt: 323) -/.*-teasers- -.*-teasers-*. -# -240x400_ (advblock.txt: 322) -/.*-240x400_ -# &vk_t=*&adv_ids= (advblock.txt: 321) -/.*&vk_t=.*&adv_ids= -# &teasersTtl= (advblock.txt: 320) -/.*&teasersTtl= -# &divid=prre_ (advblock.txt: 319) -/.*&divid=prre_ -# ||zarabotat-v-inete.com^$~popup,popup (advblock.txt: 206) -.zarabotat-v-inete.com -# ||vkonagt.com^$~popup,popup (advblock.txt: 205) -.vkonagt.com -# ||otvetes.com^$~popup,popup (advblock.txt: 204) -.otvetes.com -# ||help2play.com^$~popup,popup (advblock.txt: 203) -.help2play.com -# ||add5.ru^$~popup,popup (advblock.txt: 202) -.add5.ru -# ||yapfiles.ru^*/rating_by_pop/$popup (advblock.txt: 198) -.yapfiles.ru/.*/rating_by_pop/ -# ||x-uboino.ru^$popup (advblock.txt: 197) -.x-uboino.ru -# ||x-uboino.net^$popup (advblock.txt: 196) -.x-uboino.net -# ||worldoftanks.eu/play/$popup (advblock.txt: 195) -.worldoftanks.eu/play/ -# ||winafterwin.com^$popup (advblock.txt: 194) -.winafterwin.com -# ||webarbitrage.ru/?$popup (advblock.txt: 193) -.webarbitrage.ru/\? -# ||warthunder.ru^*/register-for-free?r=$popup (advblock.txt: 192) -.warthunder.ru/.*/register-for-free\?r= -# ||wardogs.ru/lp?ref=$popup (advblock.txt: 191) -.wardogs.ru/lp\?ref= -# ||w-raza.com^$popup (advblock.txt: 190) -.w-raza.com -# ||vulkan.site^*^goto=$popup (advblock.txt: 189) -.vulkan.site/.*[^\w%.-]goto= -# ||velcome-club.com^$popup (advblock.txt: 187) -.velcome-club.com -# ||vashi-dohody.com^$~popup,popup (advblock.txt: 186) -.vashi-dohody.com -# ||travian.com.ua/landingpage/$popup (advblock.txt: 185) -.travian.com.ua/landingpage/ -# ||tankionline.com/ru/play$popup (advblock.txt: 183) -.tankionline.com/ru/play -# ||survey.gemius.com.ua^$popup (advblock.txt: 182) -.survey.gemius.com.ua -# ||snailz.ru/promo/?$popup (advblock.txt: 181) -.snailz.ru/promo/\? -# ||slivz.com^$popup (advblock.txt: 180) -.slivz.com -# ||skidka50.com.ua^$popup (advblock.txt: 179) -.skidka50.com.ua -# ||sex-mambo.net^$popup (advblock.txt: 178) -.sex-mambo.net -# ||sergey-mavrodi.com^$popup (advblock.txt: 177) -.sergey-mavrodi.com -# ||sbornix.ru^$popup (advblock.txt: 176) -.sbornix.ru -# ||say.tv/?actionpay=$popup (advblock.txt: 175) -.say.tv/\?actionpay= -# ||runetki.com/random/$popup (advblock.txt: 172) -.runetki.com/random/ -# ||relaxmybody.ru^$popup (advblock.txt: 171) -.relaxmybody.ru -# ||promo.advertlock.ru^$popup (advblock.txt: 170) -.promo.advertlock.ru -# ||power-braselet.ru^$popup (advblock.txt: 169) -.power-braselet.ru -# ||pop.sn00.net^$popup (advblock.txt: 168) -.pop.sn00.net -# ||pointblank.ru/?pid=$popup (advblock.txt: 167) -.pointblank.ru/\?pid= -# ||pin2me.com^$popup (advblock.txt: 166) -.pin2me.com -# ||pi-c.ru/go.php?id=*&rref=$popup (advblock.txt: 165) -.pi-c.ru/go\.php\?id=.*&rref= -# ||partypoker.com^*/videopop/$popup (advblock.txt: 164) -.partypoker.com/.*/videopop/ -# ||panel.gemius.com.ua^$popup (advblock.txt: 163) -.panel.gemius.com.ua -# ||mycultures.ru^$popup (advblock.txt: 162) -.mycultures.ru -# ||my-eromir.net^$popup (advblock.txt: 161) -.my-eromir.net -# ||moi-goroskop.com^$popup (advblock.txt: 160) -.moi-goroskop.com -# ||modnakasta.ua^$popup (advblock.txt: 159) -.modnakasta.ua -# ||mobruner.com^$~popup,popup (advblock.txt: 158) -.mobruner.com -# ||megogo.net^*&utm_$popup (advblock.txt: 157) -.megogo.net/.*&utm_ -# ||luckiestclick.com^$popup (advblock.txt: 156) -.luckiestclick.com -# ||lovecity3d.com/img/promo.$popup (advblock.txt: 155) -.lovecity3d.com/img/promo\. -# ||loadru.ru/18/$popup (advblock.txt: 154) -.loadru.ru/18/ -# ||link2you.ru^$popup (advblock.txt: 153) -.link2you.ru -# ||legendworld.ru/ref/$popup (advblock.txt: 152) -.legendworld.ru/ref/ -# ||kupitraf.com^$popup (advblock.txt: 151) -.kupitraf.com -# ||inet-dengi.net/?$popup (advblock.txt: 150) -.inet-dengi.net/\? -# ||goodsbrowser.com^$popup (advblock.txt: 149) -.goodsbrowser.com -# ||gamebomb.ru/gaming.$popup (advblock.txt: 147) -.gamebomb.ru/gaming\. -# ||funtest-ru.com^$popup (advblock.txt: 146) -.funtest-ru.com -# ||fotostrana.ru/start/*/?$popup (advblock.txt: 145) -.fotostrana.ru/start/.*/\? -# ||fileplaneta.com/?op=redirect_to&url=$popup (advblock.txt: 144) -.fileplaneta.com/\?op=redirect_to&url= -# ||fastpic.ru/?$popup (advblock.txt: 143) -.fastpic.ru/\? -# ||etonovosti.net^$popup (advblock.txt: 142) -.etonovosti.net -# ||ero-spinula.ru^$popup (advblock.txt: 141) -.ero-spinula.ru -# ||electbloger.com^$popup (advblock.txt: 139) -.electbloger.com -# ||drtuber.com/embed/redirect?$popup (advblock.txt: 138) -.drtuber.com/embed/redirect\? -# ||discovermore.ru/restorepassword$~popup,popup (advblock.txt: 137) -.discovermore.ru/restorepassword -# ||devochki.cz^$popup (advblock.txt: 136) -.devochki.cz -# ||darkorbit.bigpoint.com/?aid=$popup (advblock.txt: 135) -.darkorbit.bigpoint.com/\?aid= -# ||clubrelaxxxx.com^$popup (advblock.txt: 132) -.clubrelaxxxx.com -# ||club-sale.ru^$popup (advblock.txt: 131) -.club-sale.ru -# ||chaplingames.ru^$popup (advblock.txt: 129) -.chaplingames.ru -# ||cdnet.tv/lockadb.$popup (advblock.txt: 128) -.cdnet.tv/lockadb\. -# ||casino-x.com/?partner=$popup (advblock.txt: 127) -.casino-x.com/\?partner= -# ||bonsport.ru^$popup (advblock.txt: 125) -.bonsport.ru -# ||blinkogold.ru^$popup (advblock.txt: 124) -.blinkogold.ru -# ||audance.ru*/promo/$popup (advblock.txt: 123) -.audance.ru*./(.*/)?promo/ -# ||astaninki2.com^$popup (advblock.txt: 122) -.astaninki2.com -# ||alvegia.ru/register_$popup (advblock.txt: 121) -.alvegia.ru/register_ -# ||9donline.ru/welcome/?mita=$popup (advblock.txt: 112) -.9donline.ru/welcome/\?mita= -# /blog_strijenko/*$popup (advblock.txt: 110) -/(.*/)?blog_strijenko/.* -# ||yandes.biz/in.cgi?$popup (advblock.txt: 108) -.yandes.biz/in\.cgi\? -# ||war.noc.su/?$popup (advblock.txt: 107) -.war.noc.su/\? -# ||wap-jump.com/jump_redirect?id=$popup (advblock.txt: 106) -.wap-jump.com/jump_redirect\?id= -# ||track.adwad.ru^$popup (advblock.txt: 105) -.track.adwad.ru -# ||terraclicks.com^$popup (advblock.txt: 104) -.terraclicks.com -# ||teamearn.ru/open/$popup (advblock.txt: 103) -.teamearn.ru/open/ -# ||ruclicks.com/in/$popup (advblock.txt: 101) -.ruclicks.com/in/ -# ||redirecturl.ru^$popup (advblock.txt: 100) -.redirecturl.ru -# ||re-directme.com^$popup (advblock.txt: 99) -.re-directme.com -# ||rambler.pw^$popup (advblock.txt: 98) -.rambler.pw -# ||playermailer.net^$popup (advblock.txt: 97) -.playermailer.net -# ||peel-down.net/search.php?$popup (advblock.txt: 96) -.peel-down.net/search\.php\? -# ||napravil.ru^$popup (advblock.txt: 95) -.napravil.ru -# ||mxttrf.com/ads?$popup (advblock.txt: 94) -.mxttrf.com/ads\? -# ||mi3u.info^$~popup,popup (advblock.txt: 93) -.mi3u.info -# ||mesvip.com^$popup (advblock.txt: 92) -.mesvip.com -# ||luxup.ru^$popup (advblock.txt: 91) -.luxup.ru -# ||luckydir.ru^$~popup,popup (advblock.txt: 90) -.luckydir.ru -# ||lightcoffee.ru^$popup (advblock.txt: 89) -.lightcoffee.ru -# ||kan3.info^$~popup,popup (advblock.txt: 88) -.kan3.info -# ||ipchecker.ru/?id=$popup (advblock.txt: 87) -.ipchecker.ru/\?id= -# ||igrohit.net/goto.$popup (advblock.txt: 86) -.igrohit.net/goto\. -# ||hghit.com/direct?$popup (advblock.txt: 85) -.hghit.com/direct\? -# ||hapend.biz/thread$popup (advblock.txt: 84) -.hapend.biz/thread -# ||gotostat.ru^$popup (advblock.txt: 83) -.gotostat.ru -# ||gobylink.info^$popup (advblock.txt: 82) -.gobylink.info -# ||go.trafking.ru^$popup (advblock.txt: 81) -.go.trafking.ru -# ||ertovy.ru^$popup (advblock.txt: 80) -.ertovy.ru -# ||eknq.ru^$popup (advblock.txt: 79) -.eknq.ru -# ||earnshill.com/images/sp/$popup (advblock.txt: 78) -.earnshill.com/images/sp/ -# ||crusewind.net/click/direct.php?$popup (advblock.txt: 77) -.crusewind.net/click/direct\.php\? -# ||clickson.net^*/pp/$popup (advblock.txt: 75) -.clickson.net/.*/pp/ -# ||clickov.com^$popup (advblock.txt: 74) -.clickov.com -# ||clickganic.com^$popup (advblock.txt: 73) -.clickganic.com -# ||bubblesmedia.ru/gocu/$popup (advblock.txt: 71) -.bubblesmedia.ru/gocu/ -# ||apb-re.ru/?pid=$popup (advblock.txt: 70) -.apb-re.ru/\?pid= -# ||am15.net^$popup (advblock.txt: 69) -.am15.net -# ||aftevap.ru^$popup (advblock.txt: 68) -.aftevap.ru -# ||adspynet.com/reference?pid=$popup (advblock.txt: 67) -.adspynet.com/reference\?pid= -# ||adservone.com^$popup (advblock.txt: 66) -.adservone.com -# .tnt-online.ru/?utm_$popup (advblock.txt: 63) -/.*\.tnt-online\.ru/\?utm_ -.*.tnt-online.ru/\?utm_ -# ||com/on.php?id=$popup (advblock.txt: 61) -# ||com/go.php?tid=*&hid=$popup (advblock.txt: 60) -# ^clickunder^$~popup,popup (advblock.txt: 59) -/(.*[^\w%.-])?clickunder[^\w%.-] -# /wtsin.cgi?id=$~popup,popup (advblock.txt: 58) -/(.*/)?wtsin\.cgi\?id= -# /webunder.$~popup,popup (advblock.txt: 57) -/(.*/)?webunder\. -webunder.*. -# /vkshpion/?page=$popup (advblock.txt: 56) -/(.*/)?vkshpion/\?page= -# /utarget.$~popup,popup (advblock.txt: 55) -/(.*/)?utarget\. -utarget.*. -# /popua/*$popup (advblock.txt: 54) -/(.*/)?popua/.* -# /popads/*$popup (advblock.txt: 53) -/(.*/)?popads/.* -# /popads.$popup (advblock.txt: 52) -/(.*/)?popads\. -popads.*. -# /JumpClick?i=BannerKey_$popup (advblock.txt: 51) -/(.*/)?JumpClick\?i=BannerKey_ -# /click/body.php?id=*&hash=$~popup,popup (advblock.txt: 50) -/(.*/)?click/body\.php\?id=.*&hash= -# /adv_clk_redirect.php?$popup (advblock.txt: 49) -/(.*/)?adv_clk_redirect\.php\? -# /ad/popup/*$popup (advblock.txt: 48) -/(.*/)?ad/popup/.* -# //kpup.*/?sid=$popup (advblock.txt: 46) -kpup.*./(.*/)?\?sid= -# .webunder.$~popup,popup (advblock.txt: 45) -/.*\.webunder\. -.*.webunder.*. -# .clickunder.$~popup,popup (advblock.txt: 44) -/.*\.clickunder\. -.*.clickunder.*. -# &utm_campaign=CU_ru$popup (advblock.txt: 43) -/.*&utm_campaign=CU_ru -# &temz=clikundr&$~popup,popup (advblock.txt: 42) -/.*&temz=clikundr& -# ||getitbit.net/ads/$popup (advblock.txt: 34) -.getitbit.net/ads/ -# ||com/?id=*&t=direct^$popup (advblock.txt: 31) -# .lostfilm.tv^*^bid=$popup (advblock.txt: 28) -/.*\.lostfilm\.tv[^\w%.-].*[^\w%.-]bid= -.*.lostfilm.tv/.*[^\w%.-]bid= -# ||ymages.org/prepop.php$popup (easylist.txt: 36609) -.ymages.org/prepop\.php -# ||r18.com/*utm_source$popup (easylist.txt: 36606) -.r18.com/.*utm_source -# ||publicagent.com/bigzpup.php$popup (easylist.txt: 36605) -.publicagent.com/bigzpup\.php -# ||pornuppz.info/out.php$popup (easylist.txt: 36604) -.pornuppz.info/out\.php -# ||pop.mrstiff.com^$popup (easylist.txt: 36601) -.pop.mrstiff.com -# ||pop.fapxl.com^$popup (easylist.txt: 36600) -.pop.fapxl.com -# ||pinporn.com/popunder/$popup (easylist.txt: 36599) -.pinporn.com/popunder/ -# ||namethatporn.com/ntpoo$popup (easylist.txt: 36598) -.namethatporn.com/ntpoo -# ||movies.askjolene.com/c64?clickid=$popup (easylist.txt: 36597) -.movies.askjolene.com/c64\?clickid= -# ||imagebam.com/redirect_awe.php$popup (easylist.txt: 36596) -.imagebam.com/redirect_awe\.php -# ||heganteens.com/exo.php$popup (easylist.txt: 36595) -.heganteens.com/exo\.php -# ||hegansex.com/exo.php$popup (easylist.txt: 36594) -.hegansex.com/exo\.php -# ||h2porn.com/pu.php$popup (easylist.txt: 36593) -.h2porn.com/pu\.php -# ||fantastube.com/track.php$popup (easylist.txt: 36589) -.fantastube.com/track\.php -# ||fantasti.cc^*?ad=$popup (easylist.txt: 36588) -.fantasti.cc/.*\?ad= -# ||eporner.com/pop.php$popup (easylist.txt: 36587) -.eporner.com/pop\.php -# ||ad.userporn.com^$popup (easylist.txt: 36586) -.ad.userporn.com -# ||zazzybabes.com/misc/virtuagirl-skin.js (easylist.txt: 36581) -.zazzybabes.com/misc/virtuagirl-skin\.js -# ||yuvutu.com^*/banners/ (easylist.txt: 36580) -.yuvutu.com/.*/banners/ -# ||yumymilf.com^*/banners/ (easylist.txt: 36579) -.yumymilf.com/.*/banners/ -# ||yporn.tv/uploads/flv_player/midroll_images/ (easylist.txt: 36578) -.yporn.tv/uploads/flv_player/midroll_images/ -# ||yporn.tv/uploads/flv_player/commercials/ (easylist.txt: 36577) -.yporn.tv/uploads/flv_player/commercials/ -# ||youx.xxx/thumb_top/ (easylist.txt: 36576) -.youx.xxx/thumb_top/ -# ||youtubelike.com/ftt2/toplists/ (easylist.txt: 36575) -.youtubelike.com/ftt2/toplists/ -# ||yourlust.com/im/postroll.html (easylist.txt: 36574) -.yourlust.com/im/postroll\.html -# ||yourlust.com/im/onpause.html (easylist.txt: 36573) -.yourlust.com/im/onpause\.html -# ||yourdarkdesires.com/3.html (easylist.txt: 36572) -.yourdarkdesires.com/3\.html -# ||yourdarkdesires.com/2.html (easylist.txt: 36571) -.yourdarkdesires.com/2\.html -# ||yourdarkdesires.com/1.html (easylist.txt: 36570) -.yourdarkdesires.com/1\.html -# ||yourdailygirls.com/vanilla/process.php (easylist.txt: 36569) -.yourdailygirls.com/vanilla/process\.php -# ||youporn.com/watch_postroll/ (easylist.txt: 36565) -.youporn.com/watch_postroll/ -# ||youporn.com/capedorset/ (easylist.txt: 36564) -.youporn.com/capedorset/ -# ||youporn-hub.com/newlcd.js (easylist.txt: 36563) -.youporn-hub.com/newlcd\.js -# ||youporn-hub.com/lcdscript.js (easylist.txt: 36562) -.youporn-hub.com/lcdscript\.js -# ||youngpornvideos.com/images/wmasterthecoolporn/ (easylist.txt: 36561) -.youngpornvideos.com/images/wmasterthecoolporn/ -# ||youngpornvideos.com/images/webmasterdelightlinks/ (easylist.txt: 36560) -.youngpornvideos.com/images/webmasterdelightlinks/ -# ||youngpornvideos.com/images/teencash/ (easylist.txt: 36559) -.youngpornvideos.com/images/teencash/ -# ||youngpornvideos.com/images/mofoscash/ (easylist.txt: 36558) -.youngpornvideos.com/images/mofoscash/ -# ||youngpornvideos.com/images/glamglam/ (easylist.txt: 36557) -.youngpornvideos.com/images/glamglam/ -# ||youngpornvideos.com/images/bangbros/ (easylist.txt: 36556) -.youngpornvideos.com/images/bangbros/ -# ||youjizz.com/vivid/ (easylist.txt: 36553) -.youjizz.com/vivid/ -# ||youaresogay.com/*.html (easylist.txt: 36552) -.youaresogay.com/.*\.html -# ||yobt.tv/rec/ (easylist.txt: 36551) -.yobt.tv/rec/ -# ||yobt.tv/js/ttu.js (easylist.txt: 36550) -.yobt.tv/js/ttu\.js -# ||yobt.com/rec/ (easylist.txt: 36549) -.yobt.com/rec/ -# ||yea.xxx/img/creatives/ (easylist.txt: 36548) -.yea.xxx/img/creatives/ -# ||xxxymovies.com/js/win.js (easylist.txt: 36547) -.xxxymovies.com/js/win\.js -# ||xxxporntalk.com/images/ (easylist.txt: 36545) -.xxxporntalk.com/images/ -# ||xxxlinks.es/xvideos.js (easylist.txt: 36544) -.xxxlinks.es/xvideos\.js -# ||xxxkinky.com/pap.js (easylist.txt: 36543) -.xxxkinky.com/pap\.js -# ||xxxhost.me/xpw.gif (easylist.txt: 36542) -.xxxhost.me/xpw\.gif -# ||xxxgames.biz^*/sponsors/ (easylist.txt: 36541) -.xxxgames.biz/.*/sponsors/ -# ||xxxfile.net^*/netload_premium.gif (easylist.txt: 36540) -.xxxfile.net/.*/netload_premium\.gif -# ||xxxblink.com/rec/ (easylist.txt: 36539) -.xxxblink.com/rec/ -# ||xxxblink.com/js/pops. (easylist.txt: 36538) -.xxxblink.com/js/pops\. -# ||xxvideo.us/playertext.html (easylist.txt: 36537) -.xxvideo.us/playertext\.html -# ||xxvideo.us/bnr.js (easylist.txt: 36536) -.xxvideo.us/bnr\.js -# ||xxvideo.us/ad728x15 (easylist.txt: 36535) -.xxvideo.us/ad728x15 -# ||xxnxx.eu/index.php?xyz_lbx= (easylist.txt: 36534) -.xxnxx.eu/index\.php\?xyz_lbx= -# ||xvideohost.com/hor_banner.php (easylist.txt: 36533) -.xvideohost.com/hor_banner\.php -# ||xtravids.com/pop.php (easylist.txt: 36532) -.xtravids.com/pop\.php -# ||xogogo.com/images/latestpt.gif (easylist.txt: 36531) -.xogogo.com/images/latestpt\.gif -# ||xhcdn.com^*/ads_ (easylist.txt: 36530) -.xhcdn.com/.*/ads_ -# ||xhamsterpremiumpass.com/premium_scenes.html (easylist.txt: 36529) -.xhamsterpremiumpass.com/premium_scenes\.html -# ||xhamster.com/js/xpu.js (easylist.txt: 36528) -.xhamster.com/js/xpu\.js -# ||xhamster.com/ads/ (easylist.txt: 36527) -.xhamster.com/ads/ -# ||xfanz.com^*_banner_ (easylist.txt: 36526) -.xfanz.com/.*_banner_ -# ||xcritic.com/img/200x150_ (easylist.txt: 36525) -.xcritic.com/img/200x150_ -# ||xcritic.com/images/watch- (easylist.txt: 36524) -.xcritic.com/images/watch- -# ||xcritic.com/images/rent- (easylist.txt: 36523) -.xcritic.com/images/rent- -# ||xcritic.com/images/buy- (easylist.txt: 36522) -.xcritic.com/images/buy- -# ||xbutter.com/js/pop-er.js (easylist.txt: 36521) -.xbutter.com/js/pop-er\.js -# ||xbutter.com/geturl.php/ (easylist.txt: 36520) -.xbutter.com/geturl\.php/ -# ||xbutter.com/adz.html (easylist.txt: 36519) -.xbutter.com/adz\.html -# ||xbooru.com/block/adblocks.js (easylist.txt: 36518) -.xbooru.com/block/adblocks\.js -# ||xbabe.com/iframes/ (easylist.txt: 36517) -.xbabe.com/iframes/ -# ||x3xtube.com/banner_rotating_ (easylist.txt: 36516) -.x3xtube.com/banner_rotating_ -# ||x.vipergirls.to^ (easylist.txt: 36515) -.x.vipergirls.to -# ||x.eroticity.net^ (easylist.txt: 36514) -.x.eroticity.net -# ||wunbuck.com/iframes/aaw_leaderboard.html (easylist.txt: 36513) -.wunbuck.com/iframes/aaw_leaderboard\.html -# ||wunbuck.com/_odd_images/banners/ (easylist.txt: 36512) -.wunbuck.com/_odd_images/banners/ -# ||wrenchtube.com/poppt.js (easylist.txt: 36511) -.wrenchtube.com/poppt\.js -# ||wowomg.com/*.html (easylist.txt: 36510) -.wowomg.com/.*\.html -# ||worldsex.com/c/ (easylist.txt: 36509) -.worldsex.com/c/ -# ||wikiporno.org/header21.html (easylist.txt: 36508) -.wikiporno.org/header21\.html -# ||wikiporno.org/header2.html (easylist.txt: 36507) -.wikiporno.org/header2\.html -# ||wiki-stars.com/trade/ (easylist.txt: 36506) -.wiki-stars.com/trade/ -# ||wiki-stars.com/thumb_if.php? (easylist.txt: 36505) -.wiki-stars.com/thumb_if\.php\? -# ||whozacunt.com/images/banner_ (easylist.txt: 36504) -.whozacunt.com/images/banner_ -# ||whozacunt.com/images/*_300x200_ (easylist.txt: 36503) -.whozacunt.com/images/.*_300x200_ -# ||whozacunt.com/images/*-300x250. (easylist.txt: 36502) -.whozacunt.com/images/.*-300x250\. -# ||whitedolly.com/wcf/images/redbar/logo_neu.gif (easylist.txt: 36501) -.whitedolly.com/wcf/images/redbar/logo_neu\.gif -# ||wetpussygames.com/images/promo/ (easylist.txt: 36500) -.wetpussygames.com/images/promo/ -# ||wetplace.com/wetplace_html/ (easylist.txt: 36499) -.wetplace.com/wetplace_html/ -# ||wetplace.com/js/adpwetplace (easylist.txt: 36498) -.wetplace.com/js/adpwetplace -# ||wegcash.com/click/ (easylist.txt: 36496) -.wegcash.com/click/ -# ||weberotic.net/banners/ (easylist.txt: 36495) -.weberotic.net/banners/ -# ||watchindianporn.net/js/pu.js (easylist.txt: 36494) -.watchindianporn.net/js/pu\.js -# ||watch2porn.net/pads2.js (easylist.txt: 36493) -.watch2porn.net/pads2\.js -# ||wankspider.com/js/wankspider.js (easylist.txt: 36492) -.wankspider.com/js/wankspider\.js -# ||wank.to/partner/ (easylist.txt: 36491) -.wank.to/partner/ -# ||vstreamcdn.com^*/ads/ (easylist.txt: 36490) -.vstreamcdn.com/.*/ads/ -# ||voyeurhit.com/related/voyeurhit.php?t_sid= (easylist.txt: 36489) -.voyeurhit.com/related/voyeurhit\.php\?t_sid= -# ||voyeurhit.com/contents/content_sources/ (easylist.txt: 36488) -.voyeurhit.com/contents/content_sources/ -# ||vivatube.com/upload/banners/ (easylist.txt: 36487) -.vivatube.com/upload/banners/ -# ||viralporn.com^*/popnew.js (easylist.txt: 36486) -.viralporn.com/.*/popnew\.js -# ||vidgrab.net/pads2.js (easylist.txt: 36485) -.vidgrab.net/pads2\.js -# ||vidgrab.net/images/adsbar (easylist.txt: 36484) -.vidgrab.net/images/adsbar -# ||vidgrab.net/bnr.js (easylist.txt: 36483) -.vidgrab.net/bnr\.js -# ||vidgrab.net/adsbar.png (easylist.txt: 36482) -.vidgrab.net/adsbar\.png -# ||videos.com^*/jsp.js (easylist.txt: 36481) -.videos.com/.*/jsp\.js -# ||videarn.com/vibrate.js (easylist.txt: 36480) -.videarn.com/vibrate\.js -# ||vid2c.com/pp.js (easylist.txt: 36479) -.vid2c.com/pp\.js -# ||vid2c.com/pap.js (easylist.txt: 36478) -.vid2c.com/pap\.js -# ||vid2c.com/js/pp.js (easylist.txt: 36477) -.vid2c.com/js/pp\.js -# ||vid2c.com/js/atxpp.js? (easylist.txt: 36476) -.vid2c.com/js/atxpp\.js\? -# ||vibraporn.com/vg/ (easylist.txt: 36475) -.vibraporn.com/vg/ -# ||upornia.com/contents/content_sources/ (easylist.txt: 36474) -.upornia.com/contents/content_sources/ -# ||updatetube.com/js/adpupdatetube (easylist.txt: 36473) -.updatetube.com/js/adpupdatetube -# ||unoxxx.com/pages/en_player_video_right.html (easylist.txt: 36472) -.unoxxx.com/pages/en_player_video_right\.html -# ||unblockedpiratebay.com/static/img/bar.gif (easylist.txt: 36471) -.unblockedpiratebay.com/static/img/bar\.gif -# ||ukrainamateurs.com/images/banners/ (easylist.txt: 36470) -.ukrainamateurs.com/images/banners/ -# ||uflash.tv^*/affiliates/ (easylist.txt: 36469) -.uflash.tv/.*/affiliates/ -# ||twofuckers.com/brazzers (easylist.txt: 36468) -.twofuckers.com/brazzers -# ||twinsporn.net/images/free-penis-pills.png (easylist.txt: 36467) -.twinsporn.net/images/free-penis-pills\.png -# ||twinsporn.net/images/delay.gif (easylist.txt: 36466) -.twinsporn.net/images/delay\.gif -# ||turboimagehost.com/p1.js (easylist.txt: 36465) -.turboimagehost.com/p1\.js -# ||tubedupe.com/side_two.html (easylist.txt: 36464) -.tubedupe.com/side_two\.html -# ||tubedupe.com/footer_four.html (easylist.txt: 36463) -.tubedupe.com/footer_four\.html -# ||tubecup.org/?t_sid= (easylist.txt: 36462) -.tubecup.org/\?t_sid= -# ||tubecup.com/js/1.js (easylist.txt: 36461) -.tubecup.com/js/1\.js -# ||tubecup.com/contents/content_sources/ (easylist.txt: 36460) -.tubecup.com/contents/content_sources/ -# ||tube8.com/sugarcrush/ (easylist.txt: 36458) -.tube8.com/sugarcrush/ -# ||tube8.com/penthouse/ (easylist.txt: 36457) -.tube8.com/penthouse/ -# ||tnaflix.com^*_promo.jpg (easylist.txt: 36455) -.tnaflix.com/.*_promo\.jpg -# ||tnaflix.com/flixPlayerImages/ (easylist.txt: 36454) -.tnaflix.com/flixPlayerImages/ -# ||tnaflix.com/banner/ (easylist.txt: 36453) -.tnaflix.com/banner/ -# ||tjoob.com/kellyban.gif (easylist.txt: 36452) -.tjoob.com/kellyban\.gif -# ||tjoob.com/bgbb.jpg (easylist.txt: 36451) -.tjoob.com/bgbb\.jpg -# ||titsintops.com/rotate/ (easylist.txt: 36450) -.titsintops.com/rotate/ -# ||titsintops.com/intersitial/ (easylist.txt: 36449) -.titsintops.com/intersitial/ -# ||timtube.com/traffic.js (easylist.txt: 36448) -.timtube.com/traffic\.js -# ||thumblogger.com/thumblog/top_banner_silver.js (easylist.txt: 36447) -.thumblogger.com/thumblog/top_banner_silver\.js -# ||thisav.com/js/thisav_pop.js (easylist.txt: 36446) -.thisav.com/js/thisav_pop\.js -# ||thisav.com/js/pu.js (easylist.txt: 36445) -.thisav.com/js/pu\.js -# ||thinkexist.com/images/afm.js (easylist.txt: 36444) -.thinkexist.com/images/afm\.js -# ||thepornomatrix.com/images/1- (easylist.txt: 36443) -.thepornomatrix.com/images/1- -# ||theporncore.com/contents/content_sources/ (easylist.txt: 36442) -.theporncore.com/contents/content_sources/ -# ||thenipslip.com/mfcbanner.gif (easylist.txt: 36441) -.thenipslip.com/mfcbanner\.gif -# ||thenipslip.com/GGWDrunkenAd.jpg (easylist.txt: 36440) -.thenipslip.com/GGWDrunkenAd\.jpg -# ||thenewporn.com/js/adpthenewporn (easylist.txt: 36439) -.thenewporn.com/js/adpthenewporn -# ||thehun.net^*/banners/ (easylist.txt: 36438) -.thehun.net/.*/banners/ -# ||the-feeding-tube.com^*/Topbanner.php (easylist.txt: 36436) -.the-feeding-tube.com/.*/Topbanner\.php -# ||the-analist.info^*150x150 (easylist.txt: 36435) -.the-analist.info/.*150x150 -# ||the-analist.info^*150sq (easylist.txt: 36434) -.the-analist.info/.*150sq -# ||the-analist.info^*150-150 (easylist.txt: 36433) -.the-analist.info/.*150-150 -# ||temptingangels.org/media/banners/ (easylist.txt: 36432) -.temptingangels.org/media/banners/ -# ||temptingangels.org/banner/ (easylist.txt: 36431) -.temptingangels.org/banner/ -# ||teentube18.com/js/realamateurtube.js (easylist.txt: 36430) -.teentube18.com/js/realamateurtube\.js -# ||teensexcraze.com/awesome/leader.html (easylist.txt: 36429) -.teensexcraze.com/awesome/leader\.html -# ||teensanalfactor.com/best/ (easylist.txt: 36428) -.teensanalfactor.com/best/ -# ||taxidrivermovie.com/mrskin_runner/ (easylist.txt: 36427) -.taxidrivermovie.com/mrskin_runner/ -# ||tabletporn.com/images/pinkvisualpad- (easylist.txt: 36426) -.tabletporn.com/images/pinkvisualpad- -# ||sxx.com/js/lj.js (easylist.txt: 36424) -.sxx.com/js/lj\.js -# ||svscomics.com^*/dtrotator.js (easylist.txt: 36423) -.svscomics.com/.*/dtrotator\.js -# ||sunporno.com/js/flirt/serve.js (easylist.txt: 36422) -.sunporno.com/js/flirt/serve\.js -# ||submityourflicks.com/banner/ (easylist.txt: 36421) -.submityourflicks.com/banner/ -# ||stolenvideos.net/stolen.js (easylist.txt: 36420) -.stolenvideos.net/stolen\.js -# ||stockingstv.com/partners/ (easylist.txt: 36419) -.stockingstv.com/partners/ -# ||static.kinghost.com^ (easylist.txt: 36418) -.static.kinghost.com -# ||static.flabber.net^*background (easylist.txt: 36417) -.static.flabber.net/.*background -# ||springbreaktubegirls.com/js/springpop.js (easylist.txt: 36415) -.springbreaktubegirls.com/js/springpop\.js -# ||spankbang.com/gateway/ (easylist.txt: 36414) -.spankbang.com/gateway/ -# ||songs.pk/ie/ietext.html (easylist.txt: 36413) -.songs.pk/ie/ietext\.html -# ||socaseiras.com.br/banners.php? (easylist.txt: 36412) -.socaseiras.com.br/banners\.php\? -# ||socaseiras.com.br/banner_ (easylist.txt: 36411) -.socaseiras.com.br/banner_ -# ||socaseiras.com.br/arquivos/banners/ (easylist.txt: 36410) -.socaseiras.com.br/arquivos/banners/ -# ||smutmodels.com/sponsors/ (easylist.txt: 36409) -.smutmodels.com/sponsors/ -# ||slinky.com.au/banners/ (easylist.txt: 36408) -.slinky.com.au/banners/ -# ||skimtube.com/kellyban.gif (easylist.txt: 36407) -.skimtube.com/kellyban\.gif -# ||site.img.4tube.com^ (easylist.txt: 36406) -.site.img.4tube.com -# ||sillusions.ws^*/vpn-banner.gif (easylist.txt: 36405) -.sillusions.ws/.*/vpn-banner\.gif -# ||sillusions.ws^*/pr0pop.js (easylist.txt: 36404) -.sillusions.ws/.*/pr0pop\.js -# ||signbucksdaily.com/data/promo/ (easylist.txt: 36403) -.signbucksdaily.com/data/promo/ -# ||signbucks.com/s/bns/ (easylist.txt: 36402) -.signbucks.com/s/bns/ -# ||shy-cams.com/tube.js (easylist.txt: 36401) -.shy-cams.com/tube\.js -# ||shooshtimeinc.com/under.php (easylist.txt: 36400) -.shooshtimeinc.com/under\.php -# ||shooshtime.com/images/chosenplugs/ (easylist.txt: 36399) -.shooshtime.com/images/chosenplugs/ -# ||shooshtime.com/ads/ (easylist.txt: 36398) -.shooshtime.com/ads/ -# ||sharew.org/modalfiles/ (easylist.txt: 36397) -.sharew.org/modalfiles/ -# ||shanbara.jp/okusamadx.gif (easylist.txt: 36396) -.shanbara.jp/okusamadx\.gif -# ||shanbara.jp/300_200plus.jpg (easylist.txt: 36395) -.shanbara.jp/300_200plus\.jpg -# ||sexytime.com/img/sexytime_anima.gif (easylist.txt: 36394) -.sexytime.com/img/sexytime_anima\.gif -# ||sexyshare.net//banners/ (easylist.txt: 36393) -# ||sexyfuckgames.com/images/promo/ (easylist.txt: 36392) -.sexyfuckgames.com/images/promo/ -# ||sexyclips.org/i/130x500.gif (easylist.txt: 36391) -.sexyclips.org/i/130x500\.gif -# ||sexyclips.org/banners/ (easylist.txt: 36390) -.sexyclips.org/banners/ -# ||sexyandshocking.com/mzpop.js (easylist.txt: 36389) -.sexyandshocking.com/mzpop\.js -# ||sexyandfunny.com/images/totem (easylist.txt: 36388) -.sexyandfunny.com/images/totem -# ||sexy-toons.org/interface/pub/ (easylist.txt: 36387) -.sexy-toons.org/interface/pub/ -# ||sexy-toons.org/interface/partenariat/ (easylist.txt: 36386) -.sexy-toons.org/interface/partenariat/ -# ||sexvines.co/images/cp (easylist.txt: 36385) -.sexvines.co/images/cp -# ||sexuhot.com/splayer.js (easylist.txt: 36384) -.sexuhot.com/splayer\.js -# ||sexuhot.com/images/xbanner (easylist.txt: 36383) -.sexuhot.com/images/xbanner -# ||sextubebox.com/ab2.shtml (easylist.txt: 36382) -.sextubebox.com/ab2\.shtml -# ||sextubebox.com/ab1.shtml (easylist.txt: 36381) -.sextubebox.com/ab1\.shtml -# ||sextube.com/lj.js (easylist.txt: 36380) -.sextube.com/lj\.js -# ||sexseeimage.com^*/banner.gif (easylist.txt: 36379) -.sexseeimage.com/.*/banner\.gif -# ||sexmummy.com/footer.htm (easylist.txt: 36378) -.sexmummy.com/footer\.htm -# ||sexmummy.com/float.htm (easylist.txt: 36377) -.sexmummy.com/float\.htm -# ||sexilation.com/wp-content/uploads/2013/01/Untitled-1.jpg (easylist.txt: 36376) -.sexilation.com/wp-content/uploads/2013/01/Untitled-1\.jpg -# ||sex3dtoons.com/im/ (easylist.txt: 36375) -.sex3dtoons.com/im/ -# ||sex3.com/if/ (easylist.txt: 36374) -.sex3.com/if/ -# ||sex.com/images/*/banner_ (easylist.txt: 36373) -.sex.com/images/.*/banner_ -# ||sex-techniques-and-positions.com/banners (easylist.txt: 36372) -.sex-techniques-and-positions.com/banners -# ||sex-techniques-and-positions.com/123ima/ (easylist.txt: 36371) -.sex-techniques-and-positions.com/123ima/ -# ||serveporn.com/images/plug-in.jpg (easylist.txt: 36370) -.serveporn.com/images/plug-in\.jpg -# ||serveporn.com/images/a-en.jpg (easylist.txt: 36369) -.serveporn.com/images/a-en\.jpg -# ||sensualgirls.org/media/banners/ (easylist.txt: 36368) -.sensualgirls.org/media/banners/ -# ||sensualgirls.org/banner/ (easylist.txt: 36367) -.sensualgirls.org/banner/ -# ||seemygf.com/webmasters/ (easylist.txt: 36366) -.seemygf.com/webmasters/ -# ||seaporn.org/scripts/life.js (easylist.txt: 36365) -.seaporn.org/scripts/life\.js -# ||scorevideos.com/banner/ (easylist.txt: 36364) -.scorevideos.com/banner/ -# ||scorehd.com/banner/ (easylist.txt: 36363) -.scorehd.com/banner/ -# ||rusdosug.com/Fotos/Banners/ (easylist.txt: 36361) -.rusdosug.com/Fotos/Banners/ -# ||rude.com/js/PopupWindow.js (easylist.txt: 36360) -.rude.com/js/PopupWindow\.js -# ||rikotachibana.org/wp-content/banner/ (easylist.txt: 36359) -.rikotachibana.org/wp-content/banner/ -# ||rextube.com/plug/iframe.asp? (easylist.txt: 36358) -.rextube.com/plug/iframe\.asp\? -# ||rev.fapdu.com^ (easylist.txt: 36357) -.rev.fapdu.com -# ||redtubefiles.com^*/skins/ (easylist.txt: 36356) -.redtubefiles.com/.*/skins/ -# ||redtubefiles.com^*/banner/ (easylist.txt: 36355) -.redtubefiles.com/.*/banner/ -# ||redtube.com^*/banner/ (easylist.txt: 36354) -.redtube.com/.*/banner/ -# ||redtube.com/wierd/ (easylist.txt: 36352) -.redtube.com/wierd/ -# ||redtube.com/sexychicks/ (easylist.txt: 36351) -.redtube.com/sexychicks/ -# ||redtube.com/nymphos/ (easylist.txt: 36350) -.redtube.com/nymphos/ -# ||redtube.com/bestporn/ (easylist.txt: 36349) -.redtube.com/bestporn/ -# ||redtube.com/barelylegal/ (easylist.txt: 36348) -.redtube.com/barelylegal/ -# ||redtube.cc/images/bongacams.png (easylist.txt: 36347) -.redtube.cc/images/bongacams\.png -# ||realhomesex.net/pop/ (easylist.txt: 36346) -.realhomesex.net/pop/ -# ||realhomesex.net/floater.js (easylist.txt: 36345) -.realhomesex.net/floater\.js -# ||realgfporn.com/js/realgfporn.js (easylist.txt: 36342) -.realgfporn.com/js/realgfporn\.js -# ||realgfporn.com/js/popall.js (easylist.txt: 36341) -.realgfporn.com/js/popall\.js -# ||rampant.tv/images/sexypics/ (easylist.txt: 36340) -.rampant.tv/images/sexypics/ -# ||raincoatreviews.com/images/banners/ (easylist.txt: 36339) -.raincoatreviews.com/images/banners/ -# ||r.radikal.ru^ (easylist.txt: 36337) -.r.radikal.ru -# ||pwpwpoker.com/images/banners/ (easylist.txt: 36336) -.pwpwpoker.com/images/banners/ -# ||pwpwpoker.com/images/*/strip_poker_ (easylist.txt: 36335) -.pwpwpoker.com/images/.*/strip_poker_ -# ||puteros.com/publisecciones/ (easylist.txt: 36334) -.puteros.com/publisecciones/ -# ||putascaseiras.com/botao/ (easylist.txt: 36333) -.putascaseiras.com/botao/ -# ||purpleporno.com/pop*.js (easylist.txt: 36332) -.purpleporno.com/pop.*\.js -# ||purepornvids.com/randomadseb. (easylist.txt: 36331) -.purepornvids.com/randomadseb\. -# ||purelynsfw.com^*/banners/ (easylist.txt: 36330) -.purelynsfw.com/.*/banners/ -# ||pureandsexy.org/banner/ (easylist.txt: 36329) -.pureandsexy.org/banner/ -# ||pr-static.tnaflix.com^ (easylist.txt: 36328) -.pr-static.tnaflix.com -# ||pr-static.empflix.com^ (easylist.txt: 36327) -.pr-static.empflix.com -# ||pornxs.com/js/files/jasminNew (easylist.txt: 36326) -.pornxs.com/js/files/jasminNew -# ||pornwikileaks.com/adultdvd.com.jpg (easylist.txt: 36325) -.pornwikileaks.com/adultdvd\.com\.jpg -# ||pornup.me/js/pp.js (easylist.txt: 36323) -.pornup.me/js/pp\.js -# ||porntube.com/ads| (easylist.txt: 36322) -.porntube.com/ads$ -# ||porntalk.com/rec/ (easylist.txt: 36321) -.porntalk.com/rec/ -# ||porntalk.com/img/banners/ (easylist.txt: 36320) -.porntalk.com/img/banners/ -# ||pornstreet.com/siteunder.js (easylist.txt: 36319) -.pornstreet.com/siteunder\.js -# ||pornstarterritory.com^*/alsbanner (easylist.txt: 36318) -.pornstarterritory.com/.*/alsbanner -# ||pornstarterritory.com//images/bannernew.jpg (easylist.txt: 36317) -# ||pornstarlabs.com/spons/ (easylist.txt: 36316) -.pornstarlabs.com/spons/ -# ||pornslash.com/images/pr.jpg (easylist.txt: 36315) -.pornslash.com/images/pr\.jpg -# ||pornslash.com/images/downicon.png (easylist.txt: 36314) -.pornslash.com/images/downicon\.png -# ||pornslash.com/images/cbt.gif (easylist.txt: 36313) -.pornslash.com/images/cbt\.gif -# ||pornslash.com/images/cbside.gif (easylist.txt: 36312) -.pornslash.com/images/cbside\.gif -# ||pornslash.com/images/a.gif (easylist.txt: 36311) -.pornslash.com/images/a\.gif -# ||pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia*.js (easylist.txt: 36310) -.pornsharing.com/App_Themes/pornsharingnew/js/adppornsharia.*\.js -# ||pornsharing.com/App_Themes/pornsharianew/js/adppornsharia*.js (easylist.txt: 36308) -.pornsharing.com/App_Themes/pornsharianew/js/adppornsharia.*\.js -# ||pornsharia.com^*/js/pcin.js (easylist.txt: 36306) -.pornsharia.com/.*/js/pcin\.js -# ||pornsharia.com^*/exo- (easylist.txt: 36305) -.pornsharia.com/.*/exo- -# ||pornsharia.com^*/adppornsharia.js (easylist.txt: 36304) -.pornsharia.com/.*/adppornsharia\.js -# ||pornsharia.com/Images/Sponsors/ (easylist.txt: 36303) -.pornsharia.com/Images/Sponsors/ -# ||pornshare.biz/2.js (easylist.txt: 36302) -.pornshare.biz/2\.js -# ||pornshare.biz/1.js (easylist.txt: 36301) -.pornshare.biz/1\.js -# ||pornreleasez.com/prpop.js (easylist.txt: 36300) -.pornreleasez.com/prpop\.js -# ||pornper.com^*/pp.js (easylist.txt: 36299) -.pornper.com/.*/pp\.js -# ||pornper.com/mlr/ (easylist.txt: 36298) -.pornper.com/mlr/ -# ||pornoxo.com/tradethumbs/ (easylist.txt: 36297) -.pornoxo.com/tradethumbs/ -# ||pornosexxxtits.com/rec/ (easylist.txt: 36295) -.pornosexxxtits.com/rec/ -# ||pornorips.com^*/rotate*.php (easylist.txt: 36294) -.pornorips.com/.*/rotate.*\.php -# ||pornorips.com^*/rda.js (easylist.txt: 36293) -.pornorips.com/.*/rda\.js -# ||pornorips.com/hwpop.js (easylist.txt: 36292) -.pornorips.com/hwpop\.js -# ||pornomovies.com/pop/ (easylist.txt: 36291) -.pornomovies.com/pop/ -# ||pornomovies.com/js/1/login_bonus (easylist.txt: 36290) -.pornomovies.com/js/1/login_bonus -# ||pornoinside.com/efpop.js (easylist.txt: 36289) -.pornoinside.com/efpop\.js -# ||pornoid.com/pornoid_html/ (easylist.txt: 36288) -.pornoid.com/pornoid_html/ -# ||pornoid.com/js/adppornoid (easylist.txt: 36287) -.pornoid.com/js/adppornoid -# ||pornoid.com/iframes/bottom (easylist.txt: 36286) -.pornoid.com/iframes/bottom -# ||pornoid.com/contents/content_sources/ (easylist.txt: 36285) -.pornoid.com/contents/content_sources/ -# ||pornnavigate.com/feeds/delivery.php? (easylist.txt: 36284) -.pornnavigate.com/feeds/delivery\.php\? -# ||pornmade.com/images/cb (easylist.txt: 36283) -.pornmade.com/images/cb -# ||pornmade.com/images/az.gif (easylist.txt: 36282) -.pornmade.com/images/az\.gif -# ||pornmade.com/images/404vz.gif (easylist.txt: 36281) -.pornmade.com/images/404vz\.gif -# ||pornizer.com/_Themes/javascript/cts.js? (easylist.txt: 36280) -.pornizer.com/_Themes/javascript/cts\.js\? -# ||pornhub.phncdn.com/misc/xml/preroll.xml (easylist.txt: 36279) -.pornhub.phncdn.com/misc/xml/preroll\.xml -# ||pornhub.phncdn.com/images/campaign-backgrounds/ (easylist.txt: 36278) -.pornhub.phncdn.com/images/campaign-backgrounds/ -# ||pornhub.com/jpg/ (easylist.txt: 36276) -.pornhub.com/jpg/ -# ||pornhub.com/front/alternative/ (easylist.txt: 36275) -.pornhub.com/front/alternative/ -# ||pornhub.com/channels/pay/ (easylist.txt: 36274) -.pornhub.com/channels/pay/ -# ||pornhub.com/catagories/costume/ (easylist.txt: 36273) -.pornhub.com/catagories/costume/ -# ||pornfanplace.com/rec/ (easylist.txt: 36272) -.pornfanplace.com/rec/ -# ||pornfanplace.com/js/pops. (easylist.txt: 36271) -.pornfanplace.com/js/pops\. -# ||pornerbros.com/p_bnrs/ (easylist.txt: 36269) -.pornerbros.com/p_bnrs/ -# ||porncor.com/sitelist.php (easylist.txt: 36268) -.porncor.com/sitelist\.php -# ||pornbus.org/includes/js/layer.js (easylist.txt: 36267) -.pornbus.org/includes/js/layer\.js -# ||pornbus.org/includes/js/exa.js (easylist.txt: 36266) -.pornbus.org/includes/js/exa\.js -# ||pornbus.org/includes/js/ex.js (easylist.txt: 36265) -.pornbus.org/includes/js/ex\.js -# ||pornbus.org/includes/js/cat.js (easylist.txt: 36264) -.pornbus.org/includes/js/cat\.js -# ||pornbus.org/includes/js/bgcont.js (easylist.txt: 36263) -.pornbus.org/includes/js/bgcont\.js -# ||pornbb.org/adsnov. (easylist.txt: 36261) -.pornbb.org/adsnov\. -# ||pornbay.org/popup.js (easylist.txt: 36260) -.pornbay.org/popup\.js -# ||pornbanana.com/pornbanana/deals/ (easylist.txt: 36259) -.pornbanana.com/pornbanana/deals/ -# ||pornarchive.net/images/cb (easylist.txt: 36258) -.pornarchive.net/images/cb -# ||pornalized.com/pornalized_html/closetoplay_ (easylist.txt: 36257) -.pornalized.com/pornalized_html/closetoplay_ -# ||pornalized.com/js/adppornalized5.js (easylist.txt: 36256) -.pornalized.com/js/adppornalized5\.js -# ||pornalized.com/contents/content_sources/ (easylist.txt: 36255) -.pornalized.com/contents/content_sources/ -# ||porn8x.net/js/popup.js (easylist.txt: 36254) -.porn8x.net/js/popup\.js -# ||porn8x.net/js/outtrade.js (easylist.txt: 36253) -.porn8x.net/js/outtrade\.js -# ||porn4down.com^*/ryuvuong.gif (easylist.txt: 36252) -.porn4down.com/.*/ryuvuong\.gif -# ||porn.com/js/pu.js (easylist.txt: 36251) -.porn.com/js/pu\.js -# ||porn.com/assets/partner_ (easylist.txt: 36250) -.porn.com/assets/partner_ -# ||porn-w.org/images/zevera.png (easylist.txt: 36249) -.porn-w.org/images/zevera\.png -# ||porn-w.org/images/cosy/ (easylist.txt: 36248) -.porn-w.org/images/cosy/ -# ||porn-w.org/images/chs.gif (easylist.txt: 36247) -.porn-w.org/images/chs\.gif -# ||pontoperdido.com/js/webmessenger.js (easylist.txt: 36246) -.pontoperdido.com/js/webmessenger\.js -# ||poguide.com/cdn/images/ad*.gif (easylist.txt: 36245) -.poguide.com/cdn/images/ad.*\.gif -# ||pnet.co.za/jobsearch_iframe_ (easylist.txt: 36244) -.pnet.co.za/jobsearch_iframe_ -# ||plumper6.com/images/ban_pp.jpg (easylist.txt: 36243) -.plumper6.com/images/ban_pp\.jpg -# ||playgirl.com/pg/media/prolong_ad.png (easylist.txt: 36242) -.playgirl.com/pg/media/prolong_ad\.png -# ||planetsuzy.org/kakiframe/ (easylist.txt: 36241) -.planetsuzy.org/kakiframe/ -# ||placepictures.com/Frame.aspx? (easylist.txt: 36240) -.placepictures.com/Frame\.aspx\? -# ||pixroute.com/spl.js (easylist.txt: 36239) -.pixroute.com/spl\.js -# ||pixhost.org/js/jquery_show2.js (easylist.txt: 36238) -.pixhost.org/js/jquery_show2\.js -# ||pixhost.org/image/rotate/ (easylist.txt: 36237) -.pixhost.org/image/rotate/ -# ||pixhost.org/image/cu/ (easylist.txt: 36236) -.pixhost.org/image/cu/ -# ||pinkrod.com/pinkrod_html/ (easylist.txt: 36235) -.pinkrod.com/pinkrod_html/ -# ||pinkrod.com/js/adppinkrod (easylist.txt: 36234) -.pinkrod.com/js/adppinkrod -# ||pinkrod.com/iframes/ (easylist.txt: 36233) -.pinkrod.com/iframes/ -# ||pinkems.com/images/buttons/ (easylist.txt: 36232) -.pinkems.com/images/buttons/ -# ||pink-o-rama.com/Teendreams (easylist.txt: 36231) -.pink-o-rama.com/Teendreams -# ||pink-o-rama.com/Royalcash/ (easylist.txt: 36230) -.pink-o-rama.com/Royalcash/ -# ||pink-o-rama.com/Privatecash (easylist.txt: 36229) -.pink-o-rama.com/Privatecash -# ||pink-o-rama.com/Pimproll/ (easylist.txt: 36228) -.pink-o-rama.com/Pimproll/ -# ||pink-o-rama.com/Nscash (easylist.txt: 36227) -.pink-o-rama.com/Nscash -# ||pink-o-rama.com/Longbucks/ (easylist.txt: 36226) -.pink-o-rama.com/Longbucks/ -# ||pink-o-rama.com/Karups (easylist.txt: 36225) -.pink-o-rama.com/Karups -# ||pink-o-rama.com/Gammae (easylist.txt: 36224) -.pink-o-rama.com/Gammae -# ||pink-o-rama.com/Fuckyou (easylist.txt: 36223) -.pink-o-rama.com/Fuckyou -# ||pink-o-rama.com/Fetishhits (easylist.txt: 36222) -.pink-o-rama.com/Fetishhits -# ||pink-o-rama.com/Brothersincash (easylist.txt: 36221) -.pink-o-rama.com/Brothersincash -# ||pink-o-rama.com/Blazingbucks (easylist.txt: 36220) -.pink-o-rama.com/Blazingbucks -# ||pimpandhost.com/static/i/*-pah.jpg (easylist.txt: 36219) -.pimpandhost.com/static/i/.*-pah\.jpg -# ||pimpandhost.com/static/html/iframe.html (easylist.txt: 36218) -.pimpandhost.com/static/html/iframe\.html -# ||pimpandhost.com/images/pah-download.gif (easylist.txt: 36217) -.pimpandhost.com/images/pah-download\.gif -# ||picxme.com/rec/ (easylist.txt: 36216) -.picxme.com/rec/ -# ||picxme.com/js/pops. (easylist.txt: 36215) -.picxme.com/js/pops\. -# ||picturevip.com/imagehost/top_banners.html (easylist.txt: 36214) -.picturevip.com/imagehost/top_banners\.html -# ||picturescream.com/top_banners.html (easylist.txt: 36213) -.picturescream.com/top_banners\.html -# ||picturescream.com/porn_movies.gif (easylist.txt: 36212) -.picturescream.com/porn_movies\.gif -# ||picturedip.com/windowfiles/dhtmlwindow.css (easylist.txt: 36211) -.picturedip.com/windowfiles/dhtmlwindow\.css -# ||picturedip.com/modalfiles/modal.js (easylist.txt: 36210) -.picturedip.com/modalfiles/modal\.js -# ||picsexhub.com/rec/ (easylist.txt: 36209) -.picsexhub.com/rec/ -# ||picsexhub.com/js/pops2. (easylist.txt: 36208) -.picsexhub.com/js/pops2\. -# ||picsexhub.com/js/pops. (easylist.txt: 36207) -.picsexhub.com/js/pops\. -# ||picp2.com/img/putv (easylist.txt: 36206) -.picp2.com/img/putv -# ||picleet.com/inter_picleet.js (easylist.txt: 36205) -.picleet.com/inter_picleet\.js -# ||pichunter.com/deals/ (easylist.txt: 36204) -.pichunter.com/deals/ -# ||pichunter.com/creatives/ (easylist.txt: 36203) -.pichunter.com/creatives/ -# ||phun.org/phun/gfx/banner/ (easylist.txt: 36202) -.phun.org/phun/gfx/banner/ -# ||phncdn.com/mobile/js/interstitial-min.js? (easylist.txt: 36201) -.phncdn.com/mobile/js/interstitial-min\.js\? -# ||phncdn.com/images/skin/ (easylist.txt: 36200) -.phncdn.com/images/skin/ -# ||phncdn.com/images/premium_ (easylist.txt: 36199) -.phncdn.com/images/premium_ -# ||phncdn.com/images/premium/ (easylist.txt: 36198) -.phncdn.com/images/premium/ -# ||phncdn.com/images/banners/ (easylist.txt: 36197) -.phncdn.com/images/banners/ -# ||phncdn.com/images/*_skin_ (easylist.txt: 36196) -.phncdn.com/images/.*_skin_ -# ||phncdn.com/images/*_skin. (easylist.txt: 36195) -.phncdn.com/images/.*_skin\. -# ||phncdn.com/iframe (easylist.txt: 36194) -.phncdn.com/iframe -# ||perfectgirls.net/b/ (easylist.txt: 36190) -.perfectgirls.net/b/ -# ||pastime.biz^*/personalad*.jpg (easylist.txt: 36189) -.pastime.biz/.*/personalad.*\.jpg -# ||pastime.biz/images/interracial-porn.gif (easylist.txt: 36188) -.pastime.biz/images/interracial-porn\.gif -# ||pastime.biz/images/iloveint.gif (easylist.txt: 36187) -.pastime.biz/images/iloveint\.gif -# ||partners.xhamster.com^ (easylist.txt: 36186) -.partners.xhamster.com -# ||oporn.com/js/wspop.js (easylist.txt: 36185) -.oporn.com/js/wspop\.js -# ||openjavascript.com/jtools/jads. (easylist.txt: 36184) -.openjavascript.com/jtools/jads\. -# ||onlinestars.net/br/ (easylist.txt: 36183) -.onlinestars.net/br/ -# ||onlinestars.net/ban/ (easylist.txt: 36182) -.onlinestars.net/ban/ -# ||onhercam.tv^*/banners/ (easylist.txt: 36181) -.onhercam.tv/.*/banners/ -# ||olderhill.com^*.html| (easylist.txt: 36180) -.olderhill.com/.*\.html$ -# ||olderhill.com/ubr.js (easylist.txt: 36179) -.olderhill.com/ubr\.js -# ||oasisactive.com^*/oasis-widget.html (easylist.txt: 36178) -.oasisactive.com/.*/oasis-widget\.html -# ||nuvid.com/videos_banner.html (easylist.txt: 36177) -.nuvid.com/videos_banner\.html -# ||nudography.com/photos/banners/ (easylist.txt: 36176) -.nudography.com/photos/banners/ -# ||nudevista.com^*/nv-com.min.js (easylist.txt: 36175) -.nudevista.com/.*/nv-com\.min\.js -# ||nudevista.com/_/teasernet (easylist.txt: 36174) -.nudevista.com/_/teasernet -# ||nudevista.com/_/pp. (easylist.txt: 36173) -.nudevista.com/_/pp\. -# ||nudevista.com/_/exo_ (easylist.txt: 36172) -.nudevista.com/_/exo_ -# ||nudebabes.ws/galleries/banners/ (easylist.txt: 36171) -.nudebabes.ws/galleries/banners/ -# ||nude.hu/banners/ (easylist.txt: 36170) -.nude.hu/banners/ -# ||ns4w.org/images/vod_ (easylist.txt: 36169) -.ns4w.org/images/vod_ -# ||ns4w.org/images/promo/ (easylist.txt: 36168) -.ns4w.org/images/promo/ -# ||ns4w.org/gsm.js (easylist.txt: 36167) -.ns4w.org/gsm\.js -# ||novoporn.com/imagelinks/ (easylist.txt: 36166) -.novoporn.com/imagelinks/ -# ||nonktube.com/popembed.js (easylist.txt: 36165) -.nonktube.com/popembed\.js -# ||nonktube.com/nuevox/midroll.php? (easylist.txt: 36164) -.nonktube.com/nuevox/midroll\.php\? -# ||nonktube.com/brazzers/ (easylist.txt: 36163) -.nonktube.com/brazzers/ -# ||niceyoungteens.com/mct.js (easylist.txt: 36162) -.niceyoungteens.com/mct\.js -# ||niceyoungteens.com/ero-advertising (easylist.txt: 36161) -.niceyoungteens.com/ero-advertising -# ||newcelebnipslips.com/nipslipop.js (easylist.txt: 36160) -.newcelebnipslips.com/nipslipop\.js -# ||netronline.com/Include/burst.js (easylist.txt: 36159) -.netronline.com/Include/burst\.js -# ||netasdesalim.com/js/netas (easylist.txt: 36158) -.netasdesalim.com/js/netas -# ||naughtyblog.org/pr1pop.js (easylist.txt: 36157) -.naughtyblog.org/pr1pop\.js -# ||naughty.com/js/popJava.js (easylist.txt: 36156) -.naughty.com/js/popJava\.js -# ||namethatpornstar.com/topphotos/ (easylist.txt: 36155) -.namethatpornstar.com/topphotos/ -# ||naked-sluts.us/prpop.js (easylist.txt: 36154) -.naked-sluts.us/prpop\.js -# ||myslavegirl.org/follow/go.js (easylist.txt: 36153) -.myslavegirl.org/follow/go\.js -# ||myhentai.tv/popsstuff. (easylist.txt: 36152) -.myhentai.tv/popsstuff\. -# ||mygirlfriendvids.net/js/popall1.js (easylist.txt: 36151) -.mygirlfriendvids.net/js/popall1\.js -# ||mydailytube.com/nothing/ (easylist.txt: 36150) -.mydailytube.com/nothing/ -# ||my-pornbase.com/banner/ (easylist.txt: 36149) -.my-pornbase.com/banner/ -# ||mrstiff.com/view/movie/finished/ (easylist.txt: 36148) -.mrstiff.com/view/movie/finished/ -# ||mrstiff.com/view/movie/bar/ (easylist.txt: 36147) -.mrstiff.com/view/movie/bar/ -# ||mrstiff.com/view/context/ (easylist.txt: 36146) -.mrstiff.com/view/context/ -# ||mrstiff.com/uploads/paysite/ (easylist.txt: 36145) -.mrstiff.com/uploads/paysite/ -# ||mp3musicengine.com/images/freewatchtv1. (easylist.txt: 36143) -.mp3musicengine.com/images/freewatchtv1\. -# ||mp3musicengine.com/bearshare_logo. (easylist.txt: 36142) -.mp3musicengine.com/bearshare_logo\. -# ||motherman.com/*.html (easylist.txt: 36141) -.motherman.com/.*\.html -# ||motherless.com/images/banners/ (easylist.txt: 36140) -.motherless.com/images/banners/ -# ||morebabes.to/morebabes.js (easylist.txt: 36139) -.morebabes.to/morebabes\.js -# ||morazzia.com^*/banners/ (easylist.txt: 36138) -.morazzia.com/.*/banners/ -# ||monstertube.com/images/vjoin_ (easylist.txt: 36137) -.monstertube.com/images/vjoin_ -# ||monstertube.com/images/vjoin. (easylist.txt: 36136) -.monstertube.com/images/vjoin\. -# ||monstertube.com/images/bottom-features.jpg (easylist.txt: 36135) -.monstertube.com/images/bottom-features\.jpg -# ||monstertube.com/images/access_ (easylist.txt: 36134) -.monstertube.com/images/access_ -# ||monstercockz.com/eds/ (easylist.txt: 36133) -.monstercockz.com/eds/ -# ||monstercockz.com/cont/ (easylist.txt: 36132) -.monstercockz.com/cont/ -# ||mobilepornmovies.com/images/banners/ (easylist.txt: 36131) -.mobilepornmovies.com/images/banners/ -# ||miragepics.com/images/11361497289209202613.jpg (easylist.txt: 36130) -.miragepics.com/images/11361497289209202613\.jpg -# ||milkmanbook.com/dat/promo/ (easylist.txt: 36129) -.milkmanbook.com/dat/promo/ -# ||merb.ca/banner/ (easylist.txt: 36128) -.merb.ca/banner/ -# ||meendo.com/promos/ (easylist.txt: 36127) -.meendo.com/promos/ -# ||meatspin.com/images/fl.gif (easylist.txt: 36125) -.meatspin.com/images/fl\.gif -# ||meatspin.com/facebookchatlist.php (easylist.txt: 36124) -.meatspin.com/facebookchatlist\.php -# ||maxjizztube.com/downloadfreemovies.php (easylist.txt: 36123) -.maxjizztube.com/downloadfreemovies\.php -# ||matureworld.ws/images/banners/ (easylist.txt: 36122) -.matureworld.ws/images/banners/ -# ||mallandrinhas.net/flutuante (easylist.txt: 36121) -.mallandrinhas.net/flutuante -# ||madthumbs.com/madthumbs/sponsor/ (easylist.txt: 36120) -.madthumbs.com/madthumbs/sponsor/ -# ||madmovs.com/rec/ (easylist.txt: 36119) -.madmovs.com/rec/ -# ||m2.xhamster.com^ (easylist.txt: 36118) -.m2.xhamster.com -# ||lw1.cdmediaworld.com^ (easylist.txt: 36117) -.lw1.cdmediaworld.com -# ||lukeisback.com^*/250.gif (easylist.txt: 36116) -.lukeisback.com/.*/250\.gif -# ||lukeisback.com/images/boxes/ (easylist.txt: 36115) -.lukeisback.com/images/boxes/ -# ||lucidsponge.pl/pop_ (easylist.txt: 36114) -.lucidsponge.pl/pop_ -# ||lubetube.com/js/cspop.js (easylist.txt: 36113) -.lubetube.com/js/cspop\.js -# ||livedoor.jp^*/bnr/bnr- (easylist.txt: 36112) -.livedoor.jp/.*/bnr/bnr- -# ||liveandchat.tv/bana-/ (easylist.txt: 36111) -.liveandchat.tv/bana-/ -# ||live-porn.tv/adds/ (easylist.txt: 36110) -.live-porn.tv/adds/ -# ||literotica.com/images/lit_banners/ (easylist.txt: 36109) -.literotica.com/images/lit_banners/ -# ||literotica.com/images/banners/ (easylist.txt: 36108) -.literotica.com/images/banners/ -# ||linksave.in/fopen.html (easylist.txt: 36107) -.linksave.in/fopen\.html -# ||lesbian.hu/banners/ (easylist.txt: 36106) -.lesbian.hu/banners/ -# ||laxtime.com/rotation/ (easylist.txt: 36105) -.laxtime.com/rotation/ -# ||kyte.tv/flash/MarbachAdvertsDartInstream. (easylist.txt: 36104) -.kyte.tv/flash/MarbachAdvertsDartInstream\. -# ||kuntfutube.com/kellyban.gif (easylist.txt: 36103) -.kuntfutube.com/kellyban\.gif -# ||kuiken.co/inc/ex.js (easylist.txt: 36102) -.kuiken.co/inc/ex\.js -# ||krasview.ru/resource/a.php (easylist.txt: 36101) -.krasview.ru/resource/a\.php -# ||konachan.com/images/bam/ (easylist.txt: 36099) -.konachan.com/images/bam/ -# ||kindgirls.com/banners2/ (easylist.txt: 36098) -.kindgirls.com/banners2/ -# ||keezmovies.com/iframe.html? (easylist.txt: 36097) -.keezmovies.com/iframe\.html\? -# ||kaotic.com^*/popnew.js (easylist.txt: 36096) -.kaotic.com/.*/popnew\.js -# ||justporno.tv/ad/ (easylist.txt: 36095) -.justporno.tv/ad/ -# ||javsin.com/vip.html (easylist.txt: 36093) -.javsin.com/vip\.html -# ||javporn.in/clicunder.js (easylist.txt: 36092) -.javporn.in/clicunder\.js -# ||jav-porn.net/js/popup.js (easylist.txt: 36091) -.jav-porn.net/js/popup\.js -# ||jav-porn.net/js/popout.js (easylist.txt: 36090) -.jav-porn.net/js/popout\.js -# ||jailbaitgallery.com/banners300/ (easylist.txt: 36089) -.jailbaitgallery.com/banners300/ -# ||iseekgirls.com^*/banners/ (easylist.txt: 36088) -.iseekgirls.com/.*/banners/ -# ||iseekgirls.com/rotating_ (easylist.txt: 36087) -.iseekgirls.com/rotating_ -# ||iseekgirls.com/js/fabulous.js (easylist.txt: 36086) -.iseekgirls.com/js/fabulous\.js -# ||iseekgirls.com/g/pandoracash/ (easylist.txt: 36085) -.iseekgirls.com/g/pandoracash/ -# ||intporn.org/scripts/asma.js (easylist.txt: 36084) -.intporn.org/scripts/asma\.js -# ||intporn.com^*/asma.js (easylist.txt: 36083) -.intporn.com/.*/asma\.js -# ||intporn.com^*/21s.js (easylist.txt: 36082) -.intporn.com/.*/21s\.js -# ||indexxx.com^*/banners/ (easylist.txt: 36081) -.indexxx.com/.*/banners/ -# ||imperia-of-hentai.net/banner/ (easylist.txt: 36080) -.imperia-of-hentai.net/banner/ -# ||imgwet.com/aa/ (easylist.txt: 36079) -.imgwet.com/aa/ -# ||imghost.us.to/xxx/content/system/js/iframe.html (easylist.txt: 36078) -.imghost.us.to/xxx/content/system/js/iframe\.html -# ||imgflare.com^*/splash.php (easylist.txt: 36077) -.imgflare.com/.*/splash\.php -# ||imgflare.com/exo.html (easylist.txt: 36076) -.imgflare.com/exo\.html -# ||imgbabes.com^*/splash.php (easylist.txt: 36075) -.imgbabes.com/.*/splash\.php -# ||imgbabes.com/ja.html (easylist.txt: 36074) -.imgbabes.com/ja\.html -# ||imgbabes.com/ero-foo.html (easylist.txt: 36073) -.imgbabes.com/ero-foo\.html -# ||imgbabes.com/element.js (easylist.txt: 36072) -.imgbabes.com/element\.js -# ||imagetwist.com/lj.js (easylist.txt: 36071) -.imagetwist.com/lj\.js -# ||imagetwist.com/imagetwist*.js (easylist.txt: 36070) -.imagetwist.com/imagetwist.*\.js -# ||imagesnake.com/includes/js/pops.js (easylist.txt: 36069) -.imagesnake.com/includes/js/pops\.js -# ||imagesnake.com/includes/js/layer.js (easylist.txt: 36068) -.imagesnake.com/includes/js/layer\.js -# ||imagesnake.com/includes/js/cat.js (easylist.txt: 36067) -.imagesnake.com/includes/js/cat\.js -# ||imageshack.us^*/bannng.jpg (easylist.txt: 36066) -.imageshack.us/.*/bannng\.jpg -# ||imagepost.com/stuff/ (easylist.txt: 36065) -.imagepost.com/stuff/ -# ||imagepost.com/includes/dating/ (easylist.txt: 36064) -.imagepost.com/includes/dating/ -# ||imageporter.com/smate.html (easylist.txt: 36063) -.imageporter.com/smate\.html -# ||imageporter.com/ro-7bgsd.html (easylist.txt: 36062) -.imageporter.com/ro-7bgsd\.html -# ||imagehyper.com/prom/ (easylist.txt: 36061) -.imagehyper.com/prom/ -# ||imagefruit.com^*/pops.js (easylist.txt: 36060) -.imagefruit.com/.*/pops\.js -# ||imagedunk.com^*_imagedunk.js (easylist.txt: 36059) -.imagedunk.com/.*_imagedunk\.js -# ||imagecarry.com/top (easylist.txt: 36058) -.imagecarry.com/top -# ||imagecarry.com/down (easylist.txt: 36057) -.imagecarry.com/down -# ||imagearn.com/img/picBanner.swf (easylist.txt: 36056) -.imagearn.com/img/picBanner\.swf -# ||hustler.com/backout-script/ (easylist.txt: 36055) -.hustler.com/backout-script/ -# ||hungangels.com/vboard/friends/ (easylist.txt: 36054) -.hungangels.com/vboard/friends/ -# ||hottubeclips.com/stxt/banners/ (easylist.txt: 36053) -.hottubeclips.com/stxt/banners/ -# ||hottestgirlsofmyspace.net/smallpics/fb-150x150.gif (easylist.txt: 36052) -.hottestgirlsofmyspace.net/smallpics/fb-150x150\.gif -# ||hottestgirlsofmyspace.net/smallpics/300x200b.gif (easylist.txt: 36051) -.hottestgirlsofmyspace.net/smallpics/300x200b\.gif -# ||hotshame.com/js/adphotshame (easylist.txt: 36050) -.hotshame.com/js/adphotshame -# ||hotshame.com/iframes/ (easylist.txt: 36049) -.hotshame.com/iframes/ -# ||hotshame.com/hotshame_html/ (easylist.txt: 36048) -.hotshame.com/hotshame_html/ -# ||hotsashagrey.com^*/throated.jpg (easylist.txt: 36047) -.hotsashagrey.com/.*/throated\.jpg -# ||hotsashagrey.com^*/squ-fantasygirlsasha-001.gif (easylist.txt: 36046) -.hotsashagrey.com/.*/squ-fantasygirlsasha-001\.gif -# ||hotsashagrey.com^*/PeterNorth-800x350.jpg (easylist.txt: 36045) -.hotsashagrey.com/.*/PeterNorth-800x350\.jpg -# ||hotsashagrey.com^*/New_Sensations-1091.gif (easylist.txt: 36044) -.hotsashagrey.com/.*/New_Sensations-1091\.gif -# ||hotsashagrey.com^*/Anabolic.jpg (easylist.txt: 36043) -.hotsashagrey.com/.*/Anabolic\.jpg -# ||hotkellymadison.com^*/pf_640x100.jpg (easylist.txt: 36042) -.hotkellymadison.com/.*/pf_640x100\.jpg -# ||hotkellymadison.com^*/km_300x300.gif (easylist.txt: 36041) -.hotkellymadison.com/.*/km_300x300\.gif -# ||hotkellymadison.com^*/kelly4.jpg (easylist.txt: 36040) -.hotkellymadison.com/.*/kelly4\.jpg -# ||hotkellymadison.com^*/kelly1.jpg (easylist.txt: 36039) -.hotkellymadison.com/.*/kelly1\.jpg -# ||hotdylanryder.com^*/wicked.gif (easylist.txt: 36038) -.hotdylanryder.com/.*/wicked\.gif -# ||hotdylanryder.com^*/pf_640x100.jpg (easylist.txt: 36037) -.hotdylanryder.com/.*/pf_640x100\.jpg -# ||hotdylanryder.com^*/iframes_174.jpg (easylist.txt: 36036) -.hotdylanryder.com/.*/iframes_174\.jpg -# ||hotdylanryder.com^*/dylan_350x250_01.jpg (easylist.txt: 36035) -.hotdylanryder.com/.*/dylan_350x250_01\.jpg -# ||hotdylanryder.com^*/Big-Tits-Like-Big-Dicks.jpg (easylist.txt: 36034) -.hotdylanryder.com/.*/Big-Tits-Like-Big-Dicks\.jpg -# ||hotdevonmichaels.com^*/wicked.gif (easylist.txt: 36033) -.hotdevonmichaels.com/.*/wicked\.gif -# ||hotdevonmichaels.com^*/streamate2.jpg (easylist.txt: 36032) -.hotdevonmichaels.com/.*/streamate2\.jpg -# ||hotdevonmichaels.com^*/pf_640x1001.jpg (easylist.txt: 36031) -.hotdevonmichaels.com/.*/pf_640x1001\.jpg -# ||hornywhores.net/img/zevera_rec.jpg (easylist.txt: 36030) -.hornywhores.net/img/zevera_rec\.jpg -# ||hornywhores.net/img/double.jpg (easylist.txt: 36029) -.hornywhores.net/img/double\.jpg -# ||hornygamer.com/images/promo/ (easylist.txt: 36027) -.hornygamer.com/images/promo/ -# ||homeprivatevids.com/banners.shtml (easylist.txt: 36026) -.homeprivatevids.com/banners\.shtml -# ||homeprivatevids.com/banner2.shtml (easylist.txt: 36025) -.homeprivatevids.com/banner2\.shtml -# ||homegrownfreaks.net/homegfreaks.js (easylist.txt: 36023) -.homegrownfreaks.net/homegfreaks\.js -# ||hollywoodoops.com/img/*banner (easylist.txt: 36022) -.hollywoodoops.com/img/.*banner -# ||hollyscoop.com/sites/*/skins/ (easylist.txt: 36021) -.hollyscoop.com/sites/.*/skins/ -# ||hidefporn.ws/nitro.png (easylist.txt: 36020) -.hidefporn.ws/nitro\.png -# ||hidefporn.ws/img.png (easylist.txt: 36019) -.hidefporn.ws/img\.png -# ||hidefporn.ws/client (easylist.txt: 36018) -.hidefporn.ws/client -# ||hidefporn.ws/055.jpg (easylist.txt: 36017) -.hidefporn.ws/055\.jpg -# ||hidefporn.ws/05.jpg (easylist.txt: 36016) -.hidefporn.ws/05\.jpg -# ||hidefporn.ws/04.jpg (easylist.txt: 36015) -.hidefporn.ws/04\.jpg -# ||hgimg.com/js/beacon. (easylist.txt: 36014) -.hgimg.com/js/beacon\. -# ||heraldnetdailydeal.com/widgets/DailyDealWidget300x250 (easylist.txt: 36013) -.heraldnetdailydeal.com/widgets/DailyDealWidget300x250 -# ||heraldnet.com/section/iFrame_AutosInternetSpecials? (easylist.txt: 36012) -.heraldnet.com/section/iFrame_AutosInternetSpecials\? -# ||hentaistream.com/wp-includes/images/mofos/webcams_ (easylist.txt: 36011) -.hentaistream.com/wp-includes/images/mofos/webcams_ -# ||hentaistream.com/wp-includes/images/bg- (easylist.txt: 36010) -.hentaistream.com/wp-includes/images/bg- -# ||hentaistream.com/out/ (easylist.txt: 36009) -.hentaistream.com/out/ -# ||hentai-foundry.com/themes/Hentai/images/hu/hu.jpg (easylist.txt: 36007) -.hentai-foundry.com/themes/Hentai/images/hu/hu\.jpg -# ||hentai-foundry.com/themes/*Banner (easylist.txt: 36006) -.hentai-foundry.com/themes/.*Banner -# ||hellporno.com/iframes/ (easylist.txt: 36004) -.hellporno.com/iframes/ -# ||hebus.com/p/hebusx/ (easylist.txt: 36003) -.hebus.com/p/hebusx/ -# ||heavy-r.com/js/imbox.js (easylist.txt: 36002) -.heavy-r.com/js/imbox\.js -# ||heavy-r.com/a/ (easylist.txt: 36001) -.heavy-r.com/a/ -# ||hdzog.com/hdzog.php?t_sid= (easylist.txt: 36000) -.hdzog.com/hdzog\.php\?t_sid= -# ||hdzog.com/contents/cst/ (easylist.txt: 35999) -.hdzog.com/contents/cst/ -# ||hdzog.com/contents/content_sources/ (easylist.txt: 35998) -.hdzog.com/contents/content_sources/ -# ||hdporn.net/images/hd-porn-banner.gif (easylist.txt: 35997) -.hdporn.net/images/hd-porn-banner\.gif -# ||hdporn.in/js/pops2. (easylist.txt: 35995) -.hdporn.in/js/pops2\. -# ||hdporn.in/js/focus.*.js (easylist.txt: 35994) -.hdporn.in/js/focus\..*\.js -# ||hdporn.in/images/rec/ (easylist.txt: 35993) -.hdporn.in/images/rec/ -# ||hcomicbook.com^*_banner1.gif (easylist.txt: 35992) -.hcomicbook.com/.*_banner1\.gif -# ||hcomicbook.com/banner/ (easylist.txt: 35990) -.hcomicbook.com/banner/ -# ||hclips.com/js/m.js (easylist.txt: 35989) -.hclips.com/js/m\.js -# ||hawaiipornblog.com/post_images/ (easylist.txt: 35988) -.hawaiipornblog.com/post_images/ -# ||hardsextube.com/zone.php (easylist.txt: 35987) -.hardsextube.com/zone\.php -# ||hardsextube.com/testxml.php (easylist.txt: 35986) -.hardsextube.com/testxml\.php -# ||hardsextube.com/preroll/getiton/ (easylist.txt: 35985) -.hardsextube.com/preroll/getiton/ -# ||hardcoresexgif.com/wp-content/msn.js (easylist.txt: 35983) -.hardcoresexgif.com/wp-content/msn\.js -# ||hanksgalleries.com/vg_ad_ (easylist.txt: 35982) -.hanksgalleries.com/vg_ad_ -# ||hanksgalleries.com/stxt_ (easylist.txt: 35981) -.hanksgalleries.com/stxt_ -# ||hanksgalleries.com/galleryimgs/ (easylist.txt: 35980) -.hanksgalleries.com/galleryimgs/ -# ||hanksgalleries.com/gallery- (easylist.txt: 35979) -.hanksgalleries.com/gallery- -# ||hanksgalleries.com/aff- (easylist.txt: 35978) -.hanksgalleries.com/aff- -# ||h2porn.com/contents/content_sources/ (easylist.txt: 35977) -.h2porn.com/contents/content_sources/ -# ||gspcdn.com^*/banners/ (easylist.txt: 35976) -.gspcdn.com/.*/banners/ -# ||grannysexforum.com/filter.php (easylist.txt: 35975) -.grannysexforum.com/filter\.php -# ||gotgayporn.com/Watermarks/ (easylist.txt: 35974) -.gotgayporn.com/Watermarks/ -# ||goldporntube.com/iframes/ (easylist.txt: 35973) -.goldporntube.com/iframes/ -# ||gloryholegirlz.com/images/banners/ (easylist.txt: 35972) -.gloryholegirlz.com/images/banners/ -# ||glamour.cz/banners/ (easylist.txt: 35971) -.glamour.cz/banners/ -# ||girlsofdesire.org/media/banners/ (easylist.txt: 35970) -.girlsofdesire.org/media/banners/ -# ||girlsofdesire.org/banner/ (easylist.txt: 35969) -.girlsofdesire.org/banner/ -# ||girlsnaked.net/gallery/banners/ (easylist.txt: 35968) -.girlsnaked.net/gallery/banners/ -# ||girlsintube.com/images/get-free-server.jpg (easylist.txt: 35967) -.girlsintube.com/images/get-free-server\.jpg -# ||girlsfromprague.eu^*468x (easylist.txt: 35966) -.girlsfromprague.eu/.*468x -# ||girlsfromprague.eu/banners/ (easylist.txt: 35965) -.girlsfromprague.eu/banners/ -# ||girlsfrombudapest.eu/banners/ (easylist.txt: 35964) -.girlsfrombudapest.eu/banners/ -# ||girlfriendvideos.com/pcode.js (easylist.txt: 35963) -.girlfriendvideos.com/pcode\.js -# ||gina-lynn.net/pr4.html (easylist.txt: 35962) -.gina-lynn.net/pr4\.html -# ||ghettotube.com/images/banners/ (easylist.txt: 35961) -.ghettotube.com/images/banners/ -# ||gggtube.com/images/banners/ (easylist.txt: 35960) -.gggtube.com/images/banners/ -# ||gaytube.com/chacha/ (easylist.txt: 35959) -.gaytube.com/chacha/ -# ||gayporntimes.com^*/CockyBoys-July-2012.jpg (easylist.txt: 35958) -.gayporntimes.com/.*/CockyBoys-July-2012\.jpg -# ||gayporntimes.com^*/Bel-Ami-Mick-Lovell-July-2012.jpeg (easylist.txt: 35957) -.gayporntimes.com/.*/Bel-Ami-Mick-Lovell-July-2012\.jpeg -# ||gayporntimes.com/img/GP_Heroes.jpg (easylist.txt: 35956) -.gayporntimes.com/img/GP_Heroes\.jpg -# ||gapeandfist.com/uploads/thumbs/ (easylist.txt: 35955) -.gapeandfist.com/uploads/thumbs/ -# ||gamesofdesire.com/images/banners/ (easylist.txt: 35954) -.gamesofdesire.com/images/banners/ -# ||gals4free.net/images/banners/ (easylist.txt: 35953) -.gals4free.net/images/banners/ -# ||galleries-pornstar.com/thumb_top/ (easylist.txt: 35952) -.galleries-pornstar.com/thumb_top/ -# ||funny-games.biz/banners/ (easylist.txt: 35951) -.funny-games.biz/banners/ -# ||fuckuh.com/pr_ad.swf (easylist.txt: 35950) -.fuckuh.com/pr_ad\.swf -# ||freepornvs.com/im.js (easylist.txt: 35948) -.freepornvs.com/im\.js -# ||freeporninhd.com/images/cbzide. (easylist.txt: 35947) -.freeporninhd.com/images/cbzide\. -# ||freeporninhd.com/images/cbside. (easylist.txt: 35946) -.freeporninhd.com/images/cbside\. -# ||freeporn.to/wpbanner/ (easylist.txt: 35945) -.freeporn.to/wpbanner/ -# ||freeimgup.com/xxx/content/system/js/iframe.html (easylist.txt: 35943) -.freeimgup.com/xxx/content/system/js/iframe\.html -# ||freebunker.com^*/raw.js (easylist.txt: 35942) -.freebunker.com/.*/raw\.js -# ||freebunker.com^*/pops.js (easylist.txt: 35941) -.freebunker.com/.*/pops\.js -# ||freebunker.com^*/oc.js (easylist.txt: 35940) -.freebunker.com/.*/oc\.js -# ||freebunker.com^*/layer.js (easylist.txt: 35939) -.freebunker.com/.*/layer\.js -# ||freebunker.com^*/exa.js (easylist.txt: 35938) -.freebunker.com/.*/exa\.js -# ||freebunker.com^*/ex.js (easylist.txt: 35937) -.freebunker.com/.*/ex\.js -# ||freebunker.com/includes/js/cat.js (easylist.txt: 35936) -.freebunker.com/includes/js/cat\.js -# ||free-celebrity-tube.com/js/freeceleb.js (easylist.txt: 35935) -.free-celebrity-tube.com/js/freeceleb\.js -# ||floppy-tits.com/iframes/ (easylist.txt: 35934) -.floppy-tits.com/iframes/ -# ||fleshbot.com/wp-content/themes/fbdesktop_aff/images/af (easylist.txt: 35933) -.fleshbot.com/wp-content/themes/fbdesktop_aff/images/af -# ||fingerslam.com/*.html (easylist.txt: 35932) -.fingerslam.com/.*\.html -# ||finehub.com/p3.js (easylist.txt: 35931) -.finehub.com/p3\.js -# ||filthyrx.com/rx.js (easylist.txt: 35930) -.filthyrx.com/rx\.js -# ||filthyrx.com/inline.php? (easylist.txt: 35929) -.filthyrx.com/inline\.php\? -# ||filthyrx.com/images/porno/ (easylist.txt: 35928) -.filthyrx.com/images/porno/ -# ||fileshare.ro^*/dhtmlwindow.js (easylist.txt: 35927) -.fileshare.ro/.*/dhtmlwindow\.js -# ||femdom-fetish-tube.com/popfemdom.js (easylist.txt: 35924) -.femdom-fetish-tube.com/popfemdom\.js -# ||fastpic.ru/js_h2.jpg (easylist.txt: 35923) -.fastpic.ru/js_h2\.jpg -# ||fastpic.ru/js_f2.jpg (easylist.txt: 35922) -.fastpic.ru/js_f2\.jpg -# ||fapdick.com/uploads/fap_ (easylist.txt: 35921) -.fapdick.com/uploads/fap_ -# ||fapdick.com/uploads/1fap_ (easylist.txt: 35920) -.fapdick.com/uploads/1fap_ -# ||fantasti.cc/_special/ (easylist.txt: 35919) -.fantasti.cc/_special/ -# ||extremetube.com/player_related? (easylist.txt: 35918) -.extremetube.com/player_related\? -# ||extreme-board.com/bannrs/ (easylist.txt: 35917) -.extreme-board.com/bannrs/ -# ||exit.macandbumble.com^ (easylist.txt: 35916) -.exit.macandbumble.com -# ||exhentai.net/img/aaf1.gif (easylist.txt: 35915) -.exhentai.net/img/aaf1\.gif -# ||eskimotube.com/kellyban.gif (easylist.txt: 35914) -.eskimotube.com/kellyban\.gif -# ||eroprofile.com/js/pu*.js (easylist.txt: 35913) -.eroprofile.com/js/pu.*\.js -# ||eporner.com/pjsall-*.js (easylist.txt: 35911) -.eporner.com/pjsall-.*\.js -# ||eporner.com/cppb/ (easylist.txt: 35909) -.eporner.com/cppb/ -# ||epicwank.com/social/jquery.stp.min.js (easylist.txt: 35908) -.epicwank.com/social/jquery\.stp\.min\.js -# ||entensity.net/crap/ (easylist.txt: 35907) -.entensity.net/crap/ -# ||empireamateurs.com/images/*banner (easylist.txt: 35906) -.empireamateurs.com/images/.*banner -# ||empflix.com/embedding_player/600x474_ (easylist.txt: 35905) -.empflix.com/embedding_player/600x474_ -# ||egoporn.com/videotop.gif (easylist.txt: 35904) -.egoporn.com/videotop\.gif -# ||egoporn.com/themagic.js (easylist.txt: 35903) -.egoporn.com/themagic\.js -# ||eccie.net/eros/ (easylist.txt: 35901) -.eccie.net/eros/ -# ||eccie.net/buploads/ (easylist.txt: 35900) -.eccie.net/buploads/ -# ||easypic.com/js/easypicads.js (easylist.txt: 35899) -.easypic.com/js/easypicads\.js -# ||dusttube.com/pop*.js (easylist.txt: 35898) -.dusttube.com/pop.*\.js -# ||drtuber.com^*/aff_banner.swf (easylist.txt: 35897) -.drtuber.com/.*/aff_banner\.swf -# ||drtuber.com/templates/frontend/white/js/embed.js? (easylist.txt: 35896) -.drtuber.com/templates/frontend/white/js/embed\.js\? -# ||drtuber.com/promo/banners/ (easylist.txt: 35895) -.drtuber.com/promo/banners/ -# ||dronporn.com/tizer.html (easylist.txt: 35894) -.dronporn.com/tizer\.html -# ||dronporn.com/main-video-place.html (easylist.txt: 35893) -.dronporn.com/main-video-place\.html -# ||dot2.eporner.com^ (easylist.txt: 35892) -.dot2.eporner.com -# ||dot.eporner.com^ (easylist.txt: 35891) -.dot.eporner.com -# ||dominationtube.com/exit.js (easylist.txt: 35890) -.dominationtube.com/exit\.js -# ||dixyporn.com/include/ (easylist.txt: 35889) -.dixyporn.com/include/ -# ||dirtypriest.com/sexpics/ (easylist.txt: 35888) -.dirtypriest.com/sexpics/ -# ||dickbig.net/scr/ (easylist.txt: 35887) -.dickbig.net/scr/ -# ||diamond-tgp.com/fp.js (easylist.txt: 35886) -.diamond-tgp.com/fp\.js -# ||devatube.com/img/partners/ (easylist.txt: 35885) -.devatube.com/img/partners/ -# ||destroymilf.com/popup%20floater.js (easylist.txt: 35884) -.destroymilf.com/popup%20floater\.js -# ||depic.me/banners/ (easylist.txt: 35883) -.depic.me/banners/ -# ||deliciousbabes.org/media/banners/ (easylist.txt: 35882) -.deliciousbabes.org/media/banners/ -# ||deliciousbabes.org/banner/ (easylist.txt: 35881) -.deliciousbabes.org/banner/ -# ||definefetish.com/df/js/dpcm.js (easylist.txt: 35880) -.definefetish.com/df/js/dpcm\.js -# ||definebabe.com/sponsor/ (easylist.txt: 35879) -.definebabe.com/sponsor/ -# ||definebabe.com/db/js/pcme.js (easylist.txt: 35878) -.definebabe.com/db/js/pcme\.js -# ||definebabe.com/db/images/leftnav/webcams2.png (easylist.txt: 35877) -.definebabe.com/db/images/leftnav/webcams2\.png -# ||data18.com^*/banners/ (easylist.txt: 35876) -.data18.com/.*/banners/ -# ||damimage.com^*/DocaWedrOJPPx.png (easylist.txt: 35875) -.damimage.com/.*/DocaWedrOJPPx\.png -# ||creepshots.com^*/250x250_ (easylist.txt: 35874) -.creepshots.com/.*/250x250_ -# ||creatives.pichunter.com^ (easylist.txt: 35873) -.creatives.pichunter.com -# ||creatives.cliphunter.com^ (easylist.txt: 35872) -.creatives.cliphunter.com -# ||creampietubeporn.com/porn.html (easylist.txt: 35871) -.creampietubeporn.com/porn\.html -# ||creampietubeporn.com/ctp.html (easylist.txt: 35870) -.creampietubeporn.com/ctp\.html -# ||crazyshit.com/p0pzIn.js (easylist.txt: 35869) -.crazyshit.com/p0pzIn\.js -# ||crackwhoreconfessions.com/images/banners/ (easylist.txt: 35868) -.crackwhoreconfessions.com/images/banners/ -# ||coolmovs.com/js/focus.*.js (easylist.txt: 35866) -.coolmovs.com/js/focus\..*\.js -# ||comdotgame.com/vgirl/ (easylist.txt: 35865) -.comdotgame.com/vgirl/ -# ||clips-and-pics.org/clipsandpics.js (easylist.txt: 35864) -.clips-and-pics.org/clipsandpics\.js -# ||chubby-ocean.com/banner/ (easylist.txt: 35863) -.chubby-ocean.com/banner/ -# ||chanweb.info/en/adult/hc/local_include/ (easylist.txt: 35862) -.chanweb.info/en/adult/hc/local_include/ -# ||cfake.com/images/a/ (easylist.txt: 35861) -.cfake.com/images/a/ -# ||celebritypink.com/bannedcelebs- (easylist.txt: 35860) -.celebritypink.com/bannedcelebs- -# ||celeb.gate.cc/misc/event_*.js (easylist.txt: 35859) -.celeb.gate.cc/misc/event_.*\.js -# ||celeb.gate.cc/banner/ (easylist.txt: 35858) -.celeb.gate.cc/banner/ -# ||canadianhottie.ca/images/banners/ (easylist.txt: 35857) -.canadianhottie.ca/images/banners/ -# ||cameltoe.com^*/banners/ (easylist.txt: 35856) -.cameltoe.com/.*/banners/ -# ||bustnow.com^*/sponsors/ (easylist.txt: 35855) -.bustnow.com/.*/sponsors/ -# ||bustnow.com^*/999.js.php (easylist.txt: 35854) -.bustnow.com/.*/999\.js\.php -# ||bustnow.com/xv/x/002.php (easylist.txt: 35853) -.bustnow.com/xv/x/002\.php -# ||bustnow.com/xv/ad/ (easylist.txt: 35852) -.bustnow.com/xv/ad/ -# ||bunnylust.com/sponsors/ (easylist.txt: 35851) -.bunnylust.com/sponsors/ -# ||brcache.madthumbs.com^ (easylist.txt: 35850) -.brcache.madthumbs.com -# ||bravotube.net/dp.html (easylist.txt: 35848) -.bravotube.net/dp\.html -# ||bralesscelebs.com/320x240ps.gif (easylist.txt: 35846) -.bralesscelebs.com/320x240ps\.gif -# ||bralesscelebs.com/160x600ps.gif (easylist.txt: 35845) -.bralesscelebs.com/160x600ps\.gif -# ||bralesscelebs.com/160x600hcp.gif (easylist.txt: 35844) -.bralesscelebs.com/160x600hcp\.gif -# ||bralesscelebs.com/*banner (easylist.txt: 35843) -.bralesscelebs.com/.*banner -# ||boobieblog.com/TilaTequilaBackdoorBanner2.jpg (easylist.txt: 35842) -.boobieblog.com/TilaTequilaBackdoorBanner2\.jpg -# ||boobieblog.com/submityourbitchbanner3.jpg (easylist.txt: 35841) -.boobieblog.com/submityourbitchbanner3\.jpg -# ||boneprone.com/premium.html (easylist.txt: 35840) -.boneprone.com/premium\.html -# ||bonbonsex.com/js/workhome.js (easylist.txt: 35839) -.bonbonsex.com/js/workhome\.js -# ||bonbonsex.com/js/dl/bottom.js (easylist.txt: 35838) -.bonbonsex.com/js/dl/bottom\.js -# ||bonbonme.com/js/rightbanner.js (easylist.txt: 35837) -.bonbonme.com/js/rightbanner\.js -# ||bonbonme.com/js/dticash/ (easylist.txt: 35836) -.bonbonme.com/js/dticash/ -# ||bonbonme.com/js/cams.js (easylist.txt: 35835) -.bonbonme.com/js/cams\.js -# ||bob.crazyshit.com^ (easylist.txt: 35834) -.bob.crazyshit.com -# ||blackredtube.com/fadebox2.js (easylist.txt: 35833) -.blackredtube.com/fadebox2\.js -# ||blackonasianblog.com/uploads/banners/ (easylist.txt: 35832) -.blackonasianblog.com/uploads/banners/ -# ||bigxvideos.com/rec/ (easylist.txt: 35831) -.bigxvideos.com/rec/ -# ||bigxvideos.com/js/popu. (easylist.txt: 35830) -.bigxvideos.com/js/popu\. -# ||bigxvideos.com/js/pops2. (easylist.txt: 35829) -.bigxvideos.com/js/pops2\. -# ||bigxvideos.com/js/focus.*.js (easylist.txt: 35828) -.bigxvideos.com/js/focus\..*\.js -# ||bigboobs.hu/banners/ (easylist.txt: 35827) -.bigboobs.hu/banners/ -# ||bellyboner.com/facebookchatlist.php (easylist.txt: 35826) -.bellyboner.com/facebookchatlist\.php -# ||befuck.com/js/adpbefuck (easylist.txt: 35825) -.befuck.com/js/adpbefuck -# ||befuck.com/befuck_html/ (easylist.txt: 35824) -.befuck.com/befuck_html/ -# ||banners.cams.com^ (easylist.txt: 35823) -.banners.cams.com -# ||banner1.pornhost.com^ (easylist.txt: 35822) -.banner1.pornhost.com -# ||bangyoulater.com/pages/aff.php (easylist.txt: 35821) -.bangyoulater.com/pages/aff\.php -# ||bangyoulater.com/images/banners_ (easylist.txt: 35820) -.bangyoulater.com/images/banners_ -# ||bagslap.com/*.html (easylist.txt: 35819) -.bagslap.com/.*\.html -# ||badjojo.com/js/scripts- (easylist.txt: 35818) -.badjojo.com/js/scripts- -# ||badjojo.com/b2s.php (easylist.txt: 35817) -.badjojo.com/b2s\.php -# ||babesmachine.com/html/ (easylist.txt: 35816) -.babesmachine.com/html/ -# ||babeshows.co.uk^*banner (easylist.txt: 35815) -.babeshows.co.uk/.*banner -# ||babeshows.co.uk/fvn53.jpg (easylist.txt: 35814) -.babeshows.co.uk/fvn53\.jpg -# ||babesandstars.com/thumbs/paysites/ (easylist.txt: 35813) -.babesandstars.com/thumbs/paysites/ -# ||babesandstars.com/images/a/ (easylist.txt: 35812) -.babesandstars.com/images/a/ -# ||babepicture.co.uk^*banner (easylist.txt: 35811) -.babepicture.co.uk/.*banner -# ||babedrop.com/babelogger_images/ (easylist.txt: 35810) -.babedrop.com/babelogger_images/ -# ||babblesex.com/js/misc.js (easylist.txt: 35809) -.babblesex.com/js/misc\.js -# ||axatube.com/dos.html (easylist.txt: 35808) -.axatube.com/dos\.html -# ||avn.com/templates/avnav/skins/ (easylist.txt: 35807) -.avn.com/templates/avnav/skins/ -# ||asspoint.com/images/banners/ (easylist.txt: 35806) -.asspoint.com/images/banners/ -# ||asianpornmovies.com/images/banners/ (easylist.txt: 35805) -.asianpornmovies.com/images/banners/ -# ||asgayas.com/popin.js (easylist.txt: 35804) -.asgayas.com/popin\.js -# ||asgayas.com/floater/ (easylist.txt: 35803) -.asgayas.com/floater/ -# ||asexstories.com/010ads/ (easylist.txt: 35802) -.asexstories.com/010ads/ -# ||arionmovies.com/*/popup.php (easylist.txt: 35801) -.arionmovies.com/.*/popup\.php -# ||anysex.com/content_sources/ (easylist.txt: 35800) -.anysex.com/content_sources/ -# ||anysex.com/b/ (easylist.txt: 35799) -.anysex.com/b/ -# ||angelshack.com/images/under-video.png (easylist.txt: 35798) -.angelshack.com/images/under-video\.png -# ||andtube.com/ban_ (easylist.txt: 35797) -.andtube.com/ban_ -# ||analtubegirls.com/js/realamateurtube.js (easylist.txt: 35796) -.analtubegirls.com/js/realamateurtube\.js -# ||analpornpix.com/agent.php? (easylist.txt: 35795) -.analpornpix.com/agent\.php\? -# ||amateurfarm.net/layer.js (easylist.txt: 35794) -.amateurfarm.net/layer\.js -# ||amateuralbum.net/affb.html (easylist.txt: 35793) -.amateuralbum.net/affb\.html -# ||amateur-streams.com^*/popup.js (easylist.txt: 35792) -.amateur-streams.com/.*/popup\.js -# ||amateur-desire.com/pics/sm_ (easylist.txt: 35791) -.amateur-desire.com/pics/sm_ -# ||amateur-desire.com/pics/724x90d.jpg (easylist.txt: 35790) -.amateur-desire.com/pics/724x90d\.jpg -# ||amadorastube.com^*/banner_ (easylist.txt: 35789) -.amadorastube.com/.*/banner_ -# ||alotporn.com^*/js/oopopw.js (easylist.txt: 35788) -.alotporn.com/.*/js/oopopw\.js -# ||alotporn.com/media/banners/ (easylist.txt: 35787) -.alotporn.com/media/banners/ -# ||alladultnetwork.tv/main/videoadroll.xml (easylist.txt: 35786) -.alladultnetwork.tv/main/videoadroll\.xml -# ||affiliates.goodvibes.com^ (easylist.txt: 35785) -.affiliates.goodvibes.com -# ||adultwork.com/images/AWBanners/ (easylist.txt: 35784) -.adultwork.com/images/AWBanners/ -# ||adultfyi.com/images/banners/ (easylist.txt: 35783) -.adultfyi.com/images/banners/ -# ||adultfilmdatabase.com/graphics/banners/ (easylist.txt: 35782) -.adultfilmdatabase.com/graphics/banners/ -# ||adultdvdtalk.com/studios/ (easylist.txt: 35781) -.adultdvdtalk.com/studios/ -# ||adult-sex-games.com/images/promo/ (easylist.txt: 35780) -.adult-sex-games.com/images/promo/ -# ||adult-profit-files.com/banner (easylist.txt: 35779) -.adult-profit-files.com/banner -# ||ads.xxxbunker.com^ (easylist.txt: 35778) -.ads.xxxbunker.com -# ||adrive.com/images/fc_banner.jpg (easylist.txt: 35777) -.adrive.com/images/fc_banner\.jpg -# ||ad.userporn.com^ (easylist.txt: 35776) -.ad.userporn.com -# ||ad.thisav.com^ (easylist.txt: 35775) -.ad.thisav.com -# ||ad.slutload.com^ (easylist.txt: 35774) -.ad.slutload.com -# ||ad.eporner.com^ (easylist.txt: 35773) -.ad.eporner.com -# ||absoluporn.com/code/pub/ (easylist.txt: 35772) -.absoluporn.com/code/pub/ -# ||abc-celebs.com/spons/ (easylist.txt: 35771) -.abc-celebs.com/spons/ -# ||a.killergram-girls.com^ (easylist.txt: 35770) -.a.killergram-girls.com -# ||a.heavy-r.com^ (easylist.txt: 35769) -.a.heavy-r.com -# ||a.eporner.com^ (easylist.txt: 35768) -.a.eporner.com -# ||64.62.202.124^*/cumlouder.jpg (easylist.txt: 35767) -.64.62.202.124/.*/cumlouder\.jpg -# ||5ilthy.com/porn.php (easylist.txt: 35766) -.5ilthy.com/porn\.php -# ||4ufrom.me/xpw.gif (easylist.txt: 35765) -.4ufrom.me/xpw\.gif -# ||3yen.com/wfn_ (easylist.txt: 35764) -.3yen.com/wfn_ -# ||3xupdate.com^*/ryusharepremium.gif (easylist.txt: 35763) -.3xupdate.com/.*/ryusharepremium\.gif -# ||3xupdate.com^*/ryushare2.gif (easylist.txt: 35762) -.3xupdate.com/.*/ryushare2\.gif -# ||3xupdate.com^*/ryushare.gif (easylist.txt: 35761) -.3xupdate.com/.*/ryushare\.gif -# ||3movs.com/contents/content_sources/ (easylist.txt: 35760) -.3movs.com/contents/content_sources/ -# ||2adultflashgames.com/teaser/teaser.swf (easylist.txt: 35759) -.2adultflashgames.com/teaser/teaser\.swf -# ||2adultflashgames.com/img/ (easylist.txt: 35758) -.2adultflashgames.com/img/ -# ||2adultflashgames.com/images/v12.gif (easylist.txt: 35757) -.2adultflashgames.com/images/v12\.gif -# ||24porn7.com/toonad/ (easylist.txt: 35756) -.24porn7.com/toonad/ -# ||24porn7.com/right3.php (easylist.txt: 35755) -.24porn7.com/right3\.php -# ||24porn7.com/odd.php (easylist.txt: 35754) -.24porn7.com/odd\.php -# ||24porn7.com/imads/ (easylist.txt: 35753) -.24porn7.com/imads/ -# ||24porn7.com/float/float_adplib.js (easylist.txt: 35752) -.24porn7.com/float/float_adplib\.js -# ||24porn7.com/ebanners/ (easylist.txt: 35751) -.24porn7.com/ebanners/ -# ||24porn7.com/banned/ (easylist.txt: 35750) -.24porn7.com/banned/ -# ||24porn7.com/300.php (easylist.txt: 35749) -.24porn7.com/300\.php -# ||24porn7.com/24roll.html (easylist.txt: 35748) -.24porn7.com/24roll\.html -# ||244pix.com/webop.jpg (easylist.txt: 35747) -.244pix.com/webop\.jpg -# ||213.174.140.38/bftv/js/msn- (easylist.txt: 35745) -.213.174.140.38/bftv/js/msn- -# ||ziddu.com/onclickpop.php$popup (easylist.txt: 35733) -.ziddu.com/onclickpop\.php -# ||youwatch.org^*^crr^$popup (easylist.txt: 35731) -.youwatch.org/.*[^\w%.-]crr[^\w%.-] -# ||youwatch.org^*^ban^$popup (easylist.txt: 35730) -.youwatch.org/.*[^\w%.-]ban[^\w%.-] -# ||youwatch.org/vids*.html$popup (easylist.txt: 35729) -.youwatch.org/vids.*\.html -# ||yasni.ca/ad_pop.php$popup (easylist.txt: 35728) -.yasni.ca/ad_pop\.php -# ||whies.info^$popup (easylist.txt: 35727) -.whies.info -# ||watch-movies.net.in/popup.php$popup (easylist.txt: 35724) -.watch-movies.net.in/popup\.php -# ||vodu.ch/play_video.php$popup (easylist.txt: 35723) -.vodu.ch/play_video\.php -# ||virtualtourist.com/commerce/popunder/$popup (easylist.txt: 35722) -.virtualtourist.com/commerce/popunder/ -# ||vidspot.net^*http$popup (easylist.txt: 35721) -.vidspot.net/.*http -# ||vidhog.com/ilivid-redirect.php$popup (easylist.txt: 35720) -.vidhog.com/ilivid-redirect\.php -# ||tripadvisor.*/SimilarHotelsPopunder?$popup (easylist.txt: 35718) -.tripadvisor.*./(.*/)?SimilarHotelsPopunder\? -# ||tripadvisor.*/rulebasedpopunder?$popup (easylist.txt: 35717) -.tripadvisor.*./(.*/)?rulebasedpopunder\? -# ||trans.youwatch.org^$popup (easylist.txt: 35716) -.trans.youwatch.org -# ||tozer.youwatch.org^$popup (easylist.txt: 35715) -.tozer.youwatch.org -# ||torrentz.eu/p/$popup (easylist.txt: 35714) -.torrentz.eu/p/ -# ||torrentz.*/wgmpop/$popup (easylist.txt: 35713) -.torrentz.*./(.*/)?wgmpop/ -# ||torrentz.*/mgidpop/$popup (easylist.txt: 35712) -.torrentz.*./(.*/)?mgidpop/ -# ||tny.cz/red/first.php$popup (easylist.txt: 35710) -.tny.cz/red/first\.php -# ||titanshare.to/download-extern.php?type=*&n=$popup (easylist.txt: 35709) -.titanshare.to/download-extern\.php\?type=.*&n= -# ||thevideo.me/script/$popup (easylist.txt: 35707) -.thevideo.me/script/ -# ||thesource.com/magicshave/$popup (easylist.txt: 35706) -.thesource.com/magicshave/ -# ||subs4free.com/_pop_link.php$popup (easylist.txt: 35704) -.subs4free.com/_pop_link\.php -# ||streamcloud.eu/deliver.php$popup (easylist.txt: 35702) -.streamcloud.eu/deliver\.php -# ||sponsorselect.com/Common/LandingPage.aspx?eu=$popup (easylist.txt: 35701) -.sponsorselect.com/Common/LandingPage\.aspx\?eu= -# ||songspk.cc/pop*.html$popup (easylist.txt: 35699) -.songspk.cc/pop.*\.html -# ||rediff.com/uim/ads/$popup (easylist.txt: 35694) -.rediff.com/uim/ads/ -# ||pop.billionuploads.com^$popup (easylist.txt: 35692) -.pop.billionuploads.com -# ||playhd.eu/test$popup (easylist.txt: 35691) -.playhd.eu/test -# ||plarium.com/play/*adCampaign=$popup (easylist.txt: 35690) -.plarium.com/play/.*adCampaign= -# ||park.above.com^$popup (easylist.txt: 35688) -.park.above.com -# ||oddschecker.com/clickout.htm?type=takeover-$popup (easylist.txt: 35686) -.oddschecker.com/clickout\.htm\?type=takeover- -# ||nosteam.ro/pma/$popup (easylist.txt: 35685) -.nosteam.ro/pma/ -# ||multiupload.nl/popunder/$popup (easylist.txt: 35682) -.multiupload.nl/popunder/ -# ||miniurls.co^*?ref=$popup (easylist.txt: 35681) -.miniurls.co/.*\?ref= -# ||military.com/data/popup/new_education_popunder.htm$popup (easylist.txt: 35680) -.military.com/data/popup/new_education_popunder\.htm -# ||linkbucks.com^*/?*=$popup (easylist.txt: 35679) -.linkbucks.com/.*/\?.*= -# ||itv.com/itv/adclick/$popup (easylist.txt: 35673) -.itv.com/itv/adclick/ -# ||intradayfun.com/news_intradayfun.com.html$popup (easylist.txt: 35672) -.intradayfun.com/news_intradayfun\.com\.html -# ||imageshack.us/newuploader_ad.php$popup (easylist.txt: 35671) -.imageshack.us/newuploader_ad\.php -# ||imageshack.us/ads/$popup (easylist.txt: 35670) -.imageshack.us/ads/ -# ||ifly.com/trip-plan/ifly-trip?*&ad=$popup (easylist.txt: 35669) -.ifly.com/trip-plan/ifly-trip\?.*&ad= -# ||houndmirror.com/out.php$popup (easylist.txt: 35667) -.houndmirror.com/out\.php -# ||homets.info/queen_file?$popup (easylist.txt: 35666) -.homets.info/queen_file\? -# ||homerun.re/adServe/$popup (easylist.txt: 35665) -.homerun.re/adServe/ -# ||gamezadvisor.com/popup.php$popup (easylist.txt: 35660) -.gamezadvisor.com/popup\.php -# ||fullonsms.com/sid.html$popup (easylist.txt: 35659) -.fullonsms.com/sid\.html -# ||fullonsms.com/quikrad.html$popup (easylist.txt: 35658) -.fullonsms.com/quikrad\.html -# ||fullonsms.com/quikr.html$popup (easylist.txt: 35657) -.fullonsms.com/quikr\.html -# ||fullonsms.com/mixpop.html$popup (easylist.txt: 35656) -.fullonsms.com/mixpop\.html -# ||fullonsms.com/blank.php$popup (easylist.txt: 35655) -.fullonsms.com/blank\.php -# ||freean.us^*?ref=$popup (easylist.txt: 35654) -.freean.us/.*\?ref= -# ||free-filehost.net/pop/$popup (easylist.txt: 35652) -.free-filehost.net/pop/ -# ||flashx.tv/frame/$popup (easylist.txt: 35651) -.flashx.tv/frame/ -# ||flashx.tv/ads/$popup (easylist.txt: 35650) -.flashx.tv/ads/ -# ||firedrive.com/tools/$popup (easylist.txt: 35649) -.firedrive.com/tools/ -# ||firedrive.com/appresources/$popup (easylist.txt: 35648) -.firedrive.com/appresources/ -# ||filmon.com^*&adn=$popup (easylist.txt: 35645) -.filmon.com/.*&adn= -# ||filepost.com/default_popup.html$popup (easylist.txt: 35644) -.filepost.com/default_popup\.html -# ||f-picture.net/Misc/JumpClick?$popup (easylist.txt: 35642) -.f-picture.net/Misc/JumpClick\? -# ||edomz.com/re.php?mid=$popup (easylist.txt: 35640) -.edomz.com/re\.php\?mid= -# ||eafyfsuh.net^*/?name=$popup (easylist.txt: 35639) -.eafyfsuh.net/.*/\?name= -# ||deb.gs^*?ref=$popup (easylist.txt: 35638) -.deb.gs/.*\?ref= -# ||damoh.muzu.tv^$popup (easylist.txt: 35637) -.damoh.muzu.tv -# ||conservativepost.com/pu/$popup (easylist.txt: 35636) -.conservativepost.com/pu/ -# ||comicbookmovie.com/plugins/ads/$popup (easylist.txt: 35635) -.comicbookmovie.com/plugins/ads/ -# ||cloudzilla.to/cam/wpop.php$popup (easylist.txt: 35634) -.cloudzilla.to/cam/wpop\.php -# ||channel4.com/ad/$popup (easylist.txt: 35632) -.channel4.com/ad/ -# ||casino-x.com^*&promo$popup (easylist.txt: 35631) -.casino-x.com/.*&promo -# ||avalanchers.com/out/$popup (easylist.txt: 35627) -.avalanchers.com/out/ -# ||allmyvideos.net^*?p=$popup (easylist.txt: 35626) -.allmyvideos.net/.*\?p= -# ||adyou.me/bug/adcash$popup (easylist.txt: 35624) -.adyou.me/bug/adcash -# ||adx.kat.ph^$popup (easylist.txt: 35623) -.adx.kat.ph -# ||4fuckr.com/api.php$popup (easylist.txt: 35621) -.4fuckr.com/api\.php -# ||104.239.139.5/display/$popup (easylist.txt: 35620) -.104.239.139.5/display/ -# ||ytconv.net/site/adblock_detect (easylist.txt: 35611) -.ytconv.net/site/adblock_detect -# ||watchfreeinhd.com/js/adblocker.js (easylist.txt: 35610) -.watchfreeinhd.com/js/adblocker\.js -# ||vapingunderground.com/js/vapingunderground/fucking_adblock.js (easylist.txt: 35609) -.vapingunderground.com/js/vapingunderground/fucking_adblock\.js -# ||nintendolife.com^*/adblock.jpg (easylist.txt: 35600) -.nintendolife.com/.*/adblock\.jpg -# ||http.anno.channel4.com*_*_*_ (easylist.txt: 35597) -.http.anno.channel4.com*./.*_.*_.*_ -# ||http.anno.channel4.com*- (easylist.txt: 35596) -.http.anno.channel4.com*./.*- -.http.anno.channel4.com*-*. -# ||getdebrid.com/blocker.js (easylist.txt: 35594) -.getdebrid.com/blocker\.js -# ||supercheats.com/js/yavli.js (easylist.txt: 35580) -.supercheats.com/js/yavli\.js -# ||zurrieqfc.com/images/banners/ (easylist.txt: 35348) -.zurrieqfc.com/images/banners/ -# ||zshares.net/fm.html (easylist.txt: 35347) -.zshares.net/fm\.html -# ||zpag.es/b/ (easylist.txt: 35346) -.zpag.es/b/ -# ||zorrovpn.com/static/img/promo/ (easylist.txt: 35345) -.zorrovpn.com/static/img/promo/ -# ||zophar.net/files/tf_ (easylist.txt: 35344) -.zophar.net/files/tf_ -# ||zoozle.org/if.php?q= (easylist.txt: 35343) -.zoozle.org/if\.php\?q= -# ||zoover.*/shared/bannerpages/darttagsbanner.aspx? (easylist.txt: 35342) -.zoover.*./(.*/)?shared/bannerpages/darttagsbanner\.aspx\? -# ||zootoday.com/pub/21publish/Zoo-navtop-poker.gif (easylist.txt: 35341) -.zootoday.com/pub/21publish/Zoo-navtop-poker\.gif -# ||zootoday.com/pub/21publish/Zoo-navtop-casino_ (easylist.txt: 35340) -.zootoday.com/pub/21publish/Zoo-navtop-casino_ -# ||zoomin.tv/decagonhandler/ (easylist.txt: 35339) -.zoomin.tv/decagonhandler/ -# ||zoneradio.co.za/img/banners/ (easylist.txt: 35338) -.zoneradio.co.za/img/banners/ -# ||zomobo.net/images/removeads.png (easylist.txt: 35336) -.zomobo.net/images/removeads\.png -# ||zombiegamer.co.za/wp-content/uploads/*-skin- (easylist.txt: 35335) -.zombiegamer.co.za/wp-content/uploads/.*-skin- -# ||zipcode.org/site_images/flash/zip_v.swf (easylist.txt: 35334) -.zipcode.org/site_images/flash/zip_v\.swf -# ||zigzag.co.za/images/oww- (easylist.txt: 35333) -.zigzag.co.za/images/oww- -# ||ziddu.com/images/wxdfast/ (easylist.txt: 35332) -.ziddu.com/images/wxdfast/ -# ||ziddu.com/images/globe7.gif (easylist.txt: 35331) -.ziddu.com/images/globe7\.gif -# ||ziddu.com/images/140x150_egglad.gif (easylist.txt: 35330) -.ziddu.com/images/140x150_egglad\.gif -# ||zeropaid.com^*/94.jpg (easylist.txt: 35329) -.zeropaid.com/.*/94\.jpg -# ||zeropaid.com/images/ (easylist.txt: 35328) -.zeropaid.com/images/ -# ||zerochan.net/skyscraper.html (easylist.txt: 35327) -.zerochan.net/skyscraper\.html -# ||zeetvusa.com/images/SevaWeb.gif (easylist.txt: 35326) -.zeetvusa.com/images/SevaWeb\.gif -# ||zeetvusa.com/images/hightlow.jpg (easylist.txt: 35325) -.zeetvusa.com/images/hightlow\.jpg -# ||zeetvusa.com/images/CARIBBEN.jpg (easylist.txt: 35324) -.zeetvusa.com/images/CARIBBEN\.jpg -# ||zbc.co.zw^*/banners/ (easylist.txt: 35323) -.zbc.co.zw/.*/banners/ -# ||zawya.com/brands/ (easylist.txt: 35322) -.zawya.com/brands/ -# ||zawya.com/ads/ (easylist.txt: 35321) -.zawya.com/ads/ -# ||zattoo.com/ads/ (easylist.txt: 35320) -.zattoo.com/ads/ -# ||zap2it.com/wp-content/themes/overmind/js/zcode- (easylist.txt: 35319) -.zap2it.com/wp-content/themes/overmind/js/zcode- -# ||zanews.co.za^*/banners/ (easylist.txt: 35318) -.zanews.co.za/.*/banners/ -# ||zamimg.com/shared/minifeatures/ (easylist.txt: 35317) -.zamimg.com/shared/minifeatures/ -# ||zamimg.com/images/skins/ (easylist.txt: 35316) -.zamimg.com/images/skins/ -# ||zambiz.co.zm/banners/ (easylist.txt: 35315) -.zambiz.co.zm/banners/ -# ||zam.com/i/promos/*-skin. (easylist.txt: 35314) -.zam.com/i/promos/.*-skin\. -# ||zads.care2.com^ (easylist.txt: 35313) -.zads.care2.com -# ||zabasearch.com/search_box.php?*&adword= (easylist.txt: 35312) -.zabasearch.com/search_box\.php\?.*&adword= -# ||yudu.com^*_intro_ads (easylist.txt: 35311) -.yudu.com/.*_intro_ads -# ||ytmnd.com/ugh (easylist.txt: 35310) -.ytmnd.com/ugh -# ||ysm.yahoo.com^ (easylist.txt: 35306) -.ysm.yahoo.com -# ||yrt7dgkf.exashare.com^ (easylist.txt: 35305) -.yrt7dgkf.exashare.com -# ||yp.mo^*/ads/ (easylist.txt: 35304) -.yp.mo/.*/ads/ -# ||youwatch.org/vod-str.html (easylist.txt: 35303) -.youwatch.org/vod-str\.html -# ||youwatch.org/iframe1.html (easylist.txt: 35302) -.youwatch.org/iframe1\.html -# ||youwatch.org/driba.html (easylist.txt: 35301) -.youwatch.org/driba\.html -# ||youwatch.org/9elawi.html (easylist.txt: 35300) -.youwatch.org/9elawi\.html -# ||youtubeproxy.pk/images/lahore.jpg (easylist.txt: 35299) -.youtubeproxy.pk/images/lahore\.jpg -# ||youtubeproxy.pk/images/Lahore.fm.jpg (easylist.txt: 35298) -.youtubeproxy.pk/images/Lahore\.fm\.jpg -# ||youtubeproxy.pk/images/Indiansongs.pk.jpg (easylist.txt: 35297) -.youtubeproxy.pk/images/Indiansongs\.pk\.jpg -# ||youtube-mp3.org/acode/ (easylist.txt: 35295) -.youtube-mp3.org/acode/ -# ||youserials.com/i/banner_pos.jpg (easylist.txt: 35294) -.youserials.com/i/banner_pos\.jpg -# ||yourwire.net/images/refssder.gif (easylist.txt: 35293) -.yourwire.net/images/refssder\.gif -# ||yourradioplace.com/images/banners/ (easylist.txt: 35292) -.yourradioplace.com/images/banners/ -# ||yourradioplace.com//images/banners/ (easylist.txt: 35291) -# ||yourmuze.fm/images/banner_ym.png (easylist.txt: 35290) -.yourmuze.fm/images/banner_ym\.png -# ||yourmuze.fm/images/audionow.png (easylist.txt: 35289) -.yourmuze.fm/images/audionow\.png -# ||yourmovies.com.au^*/side_panels_ (easylist.txt: 35288) -.yourmovies.com.au/.*/side_panels_ -# ||yourindustrynews.com/ads/ (easylist.txt: 35287) -.yourindustrynews.com/ads/ -# ||yourfilehost.com/ads/ (easylist.txt: 35286) -.yourfilehost.com/ads/ -# ||yourepeat.com^*/skins/ (easylist.txt: 35285) -.yourepeat.com/.*/skins/ -# ||yourepeat.com/revive_wrapper? (easylist.txt: 35284) -.yourepeat.com/revive_wrapper\? -# ||yourbittorrent.com/images/lumovies.js (easylist.txt: 35283) -.yourbittorrent.com/images/lumovies\.js -# ||yourbittorrent.com/downloadnow.png (easylist.txt: 35282) -.yourbittorrent.com/downloadnow\.png -# ||youngrider.com/images/sponsorships/ (easylist.txt: 35281) -.youngrider.com/images/sponsorships/ -# ||youconvertit.com/_images/*ad.png (easylist.txt: 35280) -.youconvertit.com/_images/.*ad\.png -# ||yorkshirecoastradio.com/resources/creative/ (easylist.txt: 35279) -.yorkshirecoastradio.com/resources/creative/ -# ||yopmail.com/fbd.js (easylist.txt: 35278) -.yopmail.com/fbd\.js -# ||yomzansi.com^*-300x250. (easylist.txt: 35277) -.yomzansi.com/.*-300x250\. -# ||ynaija.com^*300X300 (easylist.txt: 35275) -.ynaija.com/.*300X300 -# ||ynaija.com^*300x250 (easylist.txt: 35274) -.ynaija.com/.*300x250 -# ||ynaija.com^*/ad. (easylist.txt: 35273) -.ynaija.com/.*/ad\. -# ||yimg.com^*/yad.html (easylist.txt: 35268) -.yimg.com/.*/yad\.html -# ||yimg.com^*/flash/promotions/ (easylist.txt: 35265) -.yimg.com/.*/flash/promotions/ -# ||yfrog.com/ym.php? (easylist.txt: 35247) -.yfrog.com/ym\.php\? -# ||yfrog.com/images/weezer-bloggie-bg.png (easylist.txt: 35246) -.yfrog.com/images/weezer-bloggie-bg\.png -# ||yfrog.com/images/contests/ (easylist.txt: 35245) -.yfrog.com/images/contests/ -# ||yfmghana.com/images/banners/ (easylist.txt: 35244) -.yfmghana.com/images/banners/ -# ||yesbeby.whies.info^ (easylist.txt: 35243) -.yesbeby.whies.info -# ||yellowpageskenya.com/sponsored/ (easylist.txt: 35242) -.yellowpageskenya.com/sponsored/ -# ||yellowpages.ly^*/sponsors/ (easylist.txt: 35241) -.yellowpages.ly/.*/sponsors/ -# ||yellowpages.ly/user_media/banner/ (easylist.txt: 35240) -.yellowpages.ly/user_media/banner/ -# ||yellowpages.com.lb/uploaded/banners/ (easylist.txt: 35239) -.yellowpages.com.lb/uploaded/banners/ -# ||yellowpages.com.jo/banners/ (easylist.txt: 35238) -.yellowpages.com.jo/banners/ -# ||yellowpages.ae/UI/WM/ (easylist.txt: 35237) -.yellowpages.ae/UI/WM/ -# ||yellowpages.ae/UI/WA/ (easylist.txt: 35236) -.yellowpages.ae/UI/WA/ -# ||yellowpages.ae/UI/ST/ (easylist.txt: 35235) -.yellowpages.ae/UI/ST/ -# ||yellowpages.ae/UI/SR/ (easylist.txt: 35234) -.yellowpages.ae/UI/SR/ -# ||yellowpages.ae/UI/MR/ (easylist.txt: 35233) -.yellowpages.ae/UI/MR/ -# ||yellowpages.ae/UI/LB/ (easylist.txt: 35232) -.yellowpages.ae/UI/LB/ -# ||yellowpages.ae/UI/FC/ (easylist.txt: 35231) -.yellowpages.ae/UI/FC/ -# ||yellowpage-jp.com/images/banners/ (easylist.txt: 35230) -.yellowpage-jp.com/images/banners/ -# ||yellow.co.ke/img/top_banner/ (easylist.txt: 35229) -.yellow.co.ke/img/top_banner/ -# ||yellow.co.ke/img/right_side/ (easylist.txt: 35228) -.yellow.co.ke/img/right_side/ -# ||yellow.co.ke/img/left_side/ (easylist.txt: 35227) -.yellow.co.ke/img/left_side/ -# ||yea.uploadimagex.com^ (easylist.txt: 35226) -.yea.uploadimagex.com -# ||yavideo.tv/ajaxlog.txt? (easylist.txt: 35225) -.yavideo.tv/ajaxlog\.txt\? -# ||yasni.*/design/relaunch/gfx/elitepartner_ (easylist.txt: 35224) -.yasni.*./(.*/)?design/relaunch/gfx/elitepartner_ -# ||yarisworld.com^*/banners/ (easylist.txt: 35223) -.yarisworld.com/.*/banners/ -# ||yamivideo.com^*/download_video.jpg (easylist.txt: 35221) -.yamivideo.com/.*/download_video\.jpg -# ||yamgo.mobi/images/banner/ (easylist.txt: 35220) -.yamgo.mobi/images/banner/ -# ||yahoo.com^*/eyc-themis? (easylist.txt: 35219) -.yahoo.com/.*/eyc-themis\? -# ||yahoo.com/ysmload.html? (easylist.txt: 35218) -.yahoo.com/ysmload\.html\? -# ||yahoo.com/sdarla/ (easylist.txt: 35217) -.yahoo.com/sdarla/ -# ||yahoo.com/neo/darla/ (easylist.txt: 35216) -.yahoo.com/neo/darla/ -# ||yahoo.com/livewords/ (easylist.txt: 35215) -.yahoo.com/livewords/ -# ||yahoo.com/darla/ (easylist.txt: 35214) -.yahoo.com/darla/ -# ||yahoo.com/contextual-shortcuts (easylist.txt: 35213) -.yahoo.com/contextual-shortcuts -# ||yahoo.com/__darla/ (easylist.txt: 35212) -.yahoo.com/__darla/ -# ||yahoo.*/serv?s= (easylist.txt: 35211) -.yahoo.*./(.*/)?serv\?s= -# ||xup.in/layer.php (easylist.txt: 35210) -.xup.in/layer\.php -# ||xtremesystems.org/forums/brotator/ (easylist.txt: 35209) -.xtremesystems.org/forums/brotator/ -# ||xsreviews.co.uk/style/bgg2.jpg (easylist.txt: 35208) -.xsreviews.co.uk/style/bgg2\.jpg -# ||xscores.com/livescore/banners/ (easylist.txt: 35207) -.xscores.com/livescore/banners/ -# ||xoops-theme.com/images/banners/ (easylist.txt: 35206) -.xoops-theme.com/images/banners/ -# ||xomreviews.com/sponsors/ (easylist.txt: 35205) -.xomreviews.com/sponsors/ -# ||xiaopan.co/Reaver.png (easylist.txt: 35204) -.xiaopan.co/Reaver\.png -# ||xboxgaming.co.za^*/images/background/ (easylist.txt: 35203) -.xboxgaming.co.za/.*/images/background/ -# ||xbox-scene.com/crave/logo_on_white_s160.jpg (easylist.txt: 35202) -.xbox-scene.com/crave/logo_on_white_s160\.jpg -# ||xbox-hq.com/html/images/banners/ (easylist.txt: 35201) -.xbox-hq.com/html/images/banners/ -# ||xbitlabs.com/images/banners/ (easylist.txt: 35200) -.xbitlabs.com/images/banners/ -# ||xbitlabs.com/cms/module_banners/ (easylist.txt: 35199) -.xbitlabs.com/cms/module_banners/ -# ||x.castanet.net^ (easylist.txt: 35198) -.x.castanet.net -# ||www2.sys-con.com^*.cfm (easylist.txt: 35197) -.www2.sys-con.com/.*\.cfm -# ||wwbf.com/b/topbanner.htm (easylist.txt: 35196) -.wwbf.com/b/topbanner\.htm -# ||wwaytv3.com^*/curlypage.js (easylist.txt: 35195) -.wwaytv3.com/.*/curlypage\.js -# ||wvbr.com/images/banner/ (easylist.txt: 35194) -.wvbr.com/images/banner/ -# ||wunderground.com^*/wuss_300ad2.php? (easylist.txt: 35193) -.wunderground.com/.*/wuss_300ad2\.php\? -# ||wunderground.com/geo/swfad/ (easylist.txt: 35192) -.wunderground.com/geo/swfad/ -# ||wttrend.com/images/hs.jpg (easylist.txt: 35191) -.wttrend.com/images/hs\.jpg -# ||wsj.net/internal/krux.js (easylist.txt: 35190) -.wsj.net/internal/krux\.js -# ||wshh.me/vast/ (easylist.txt: 35189) -.wshh.me/vast/ -# ||wrmf.com/upload/*_Webskin_ (easylist.txt: 35188) -.wrmf.com/upload/.*_Webskin_ -# ||wrlr.fm/images/banners/ (easylist.txt: 35187) -.wrlr.fm/images/banners/ -# ||wrko.com^*/sponsors/ (easylist.txt: 35186) -.wrko.com/.*/sponsors/ -# ||wrko.com/sites/wrko.com/files/poll/*_285x95.jpg (easylist.txt: 35185) -.wrko.com/sites/wrko\.com/files/poll/.*_285x95\.jpg -# ||wrcjfm.org/images/banners/ (easylist.txt: 35184) -.wrcjfm.org/images/banners/ -# ||wrc.com/swf/homeclock_edox_hori.swf (easylist.txt: 35183) -.wrc.com/swf/homeclock_edox_hori\.swf -# ||wrc.com/img/sponsors- (easylist.txt: 35182) -.wrc.com/img/sponsors- -# ||wranglerforum.com/images/sponsor/ (easylist.txt: 35181) -.wranglerforum.com/images/sponsor/ -# ||wqxe.com/images/sponsors/ (easylist.txt: 35180) -.wqxe.com/images/sponsors/ -# ||wqam.com/partners/ (easylist.txt: 35179) -.wqam.com/partners/ -# ||wqah.com/images/banners/ (easylist.txt: 35178) -.wqah.com/images/banners/ -# ||wptmag.com/promo/ (easylist.txt: 35177) -.wptmag.com/promo/ -# ||wpdaddy.com^*/banners/ (easylist.txt: 35176) -.wpdaddy.com/.*/banners/ -# ||wpcv.com/includes/header_banner.htm (easylist.txt: 35175) -.wpcv.com/includes/header_banner\.htm -# ||wp.com/wp-content/themes/vip/tctechcrunch/images/tc_*_skin.jpg (easylist.txt: 35169) -.wp.com/wp-content/themes/vip/tctechcrunch/images/tc_.*_skin\.jpg -# ||wowwiki.com/__varnish_ (easylist.txt: 35168) -.wowwiki.com/__varnish_ -# ||worthofweb.com/images/wow-ad- (easylist.txt: 35166) -.worthofweb.com/images/wow-ad- -# ||worldstagegroup.com/worldstagenew/banner/ (easylist.txt: 35165) -.worldstagegroup.com/worldstagenew/banner/ -# ||worldstagegroup.com/banner/ (easylist.txt: 35164) -.worldstagegroup.com/banner/ -# ||worldstadiums.com/world_stadiums/bugarrishoes/ (easylist.txt: 35163) -.worldstadiums.com/world_stadiums/bugarrishoes/ -# ||worldometers.info/L728.html (easylist.txt: 35162) -.worldometers.info/L728\.html -# ||worldometers.info/L300R.html (easylist.txt: 35161) -.worldometers.info/L300R\.html -# ||worldometers.info/L300L.html (easylist.txt: 35160) -.worldometers.info/L300L\.html -# ||worldarchitecturenews.com/flash_banners/ (easylist.txt: 35159) -.worldarchitecturenews.com/flash_banners/ -# ||worldarchitecturenews.com/banner/ (easylist.txt: 35158) -.worldarchitecturenews.com/banner/ -# ||workingdays.us/pub_ (easylist.txt: 35157) -.workingdays.us/pub_ -# ||workingdays.org/pub_ (easylist.txt: 35156) -.workingdays.org/pub_ -# ||workingdays.ca/pub_ (easylist.txt: 35155) -.workingdays.ca/pub_ -# ||work-day.co.uk/pub_ (easylist.txt: 35154) -.work-day.co.uk/pub_ -# ||wordwebonline.com/img/122x36ccbanner.png (easylist.txt: 35153) -.wordwebonline.com/img/122x36ccbanner\.png -# ||wordreference.com/*/publ/ (easylist.txt: 35152) -.wordreference.com/.*/publ/ -# ||worddictionary.co.uk/static//inpage-affinity/ (easylist.txt: 35145) -.worddictionary.co.uk/static//inpage-affinity/ -# ||wolf-howl.com/wp-content/banners/ (easylist.txt: 35144) -.wolf-howl.com/wp-content/banners/ -# ||wnst.net/img/coupon/ (easylist.txt: 35143) -.wnst.net/img/coupon/ -# ||wnpv1440.com/images/banners/ (easylist.txt: 35142) -.wnpv1440.com/images/banners/ -# ||wned.org/underwriting/sponsors/ (easylist.txt: 35141) -.wned.org/underwriting/sponsors/ -# ||wlrfm.com/images/banners/ (easylist.txt: 35140) -.wlrfm.com/images/banners/ -# ||wlcr.org/banners/ (easylist.txt: 35139) -.wlcr.org/banners/ -# ||wksu.org/graphics/banners/ (easylist.txt: 35138) -.wksu.org/graphics/banners/ -# ||wjunction.com/images/rectangle (easylist.txt: 35137) -.wjunction.com/images/rectangle -# ||wjunction.com/images/constant/ (easylist.txt: 35136) -.wjunction.com/images/constant/ -# ||wjunction.com/images/468x60 (easylist.txt: 35135) -.wjunction.com/images/468x60 -# ||wjie.org/media/img/sponsers/ (easylist.txt: 35134) -.wjie.org/media/img/sponsers/ -# ||witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ (easylist.txt: 35133) -.witteringsfromwitney.com/wp-content/plugins/popup-with-fancybox/ -# ||witbankspurs.co.za/layout_images/sponsor.jpg (easylist.txt: 35132) -.witbankspurs.co.za/layout_images/sponsor\.jpg -# ||wirenh.com/images/banners/ (easylist.txt: 35129) -.wirenh.com/images/banners/ -# ||wired.com/images/xrail/*/samsung_layar_ (easylist.txt: 35128) -.wired.com/images/xrail/.*/samsung_layar_ -# ||wipfilms.net^*/instant-video.png (easylist.txt: 35127) -.wipfilms.net/.*/instant-video\.png -# ||wipfilms.net^*/amazon.png (easylist.txt: 35126) -.wipfilms.net/.*/amazon\.png -# ||winsupersite.com^*/roadblock. (easylist.txt: 35125) -.winsupersite.com/.*/roadblock\. -# ||winpcap.org/assets/image/banner_ (easylist.txt: 35124) -.winpcap.org/assets/image/banner_ -# ||winnfm.com/grfx/banners/ (easylist.txt: 35123) -.winnfm.com/grfx/banners/ -# ||windowsitpro.com^*/roadblock. (easylist.txt: 35122) -.windowsitpro.com/.*/roadblock\. -# ||wildtangent.com/leaderboard? (easylist.txt: 35120) -.wildtangent.com/leaderboard\? -# ||wikinvest.com/wikinvest/images/zap_trade_ (easylist.txt: 35119) -.wikinvest.com/wikinvest/images/zap_trade_ -# ||wikinvest.com/wikinvest/ads/ (easylist.txt: 35118) -.wikinvest.com/wikinvest/ads/ -# ||wikia.com/__varnish_ (easylist.txt: 35117) -.wikia.com/__varnish_ -# ||wiilovemario.com/images/fc-twin-play-nes-snes-cartridges.png (easylist.txt: 35116) -.wiilovemario.com/images/fc-twin-play-nes-snes-cartridges\.png -# ||widih.org/banners/ (easylist.txt: 35115) -.widih.org/banners/ -# ||widget.directory.dailycommercial.com^ (easylist.txt: 35114) -.widget.directory.dailycommercial.com -# ||whoownsfacebook.com/images/topbanner.gif (easylist.txt: 35112) -.whoownsfacebook.com/images/topbanner\.gif -# ||whois.net/images/banners/ (easylist.txt: 35111) -.whois.net/images/banners/ -# ||whois.net/dombot.php? (easylist.txt: 35110) -.whois.net/dombot\.php\? -# ||whoer.net/images/vpnlab20_ (easylist.txt: 35109) -.whoer.net/images/vpnlab20_ -# ||whoer.net/images/vlab50_ (easylist.txt: 35108) -.whoer.net/images/vlab50_ -# ||whoer.net/images/pb/ (easylist.txt: 35107) -.whoer.net/images/pb/ -# ||who.is/images/domain-transfer2.jpg (easylist.txt: 35106) -.who.is/images/domain-transfer2\.jpg -# ||whitepages.ae/images/UI/WS/ (easylist.txt: 35105) -.whitepages.ae/images/UI/WS/ -# ||whitepages.ae/images/UI/SRB/ (easylist.txt: 35104) -.whitepages.ae/images/UI/SRB/ -# ||whitepages.ae/images/UI/SRA/ (easylist.txt: 35103) -.whitepages.ae/images/UI/SRA/ -# ||whitepages.ae/images/UI/SR/ (easylist.txt: 35102) -.whitepages.ae/images/UI/SR/ -# ||whitepages.ae/images/UI/MR/ (easylist.txt: 35101) -.whitepages.ae/images/UI/MR/ -# ||whitepages.ae/images/UI/LB/ (easylist.txt: 35100) -.whitepages.ae/images/UI/LB/ -# ||whitepages.ae/images/UI/FC/ (easylist.txt: 35099) -.whitepages.ae/images/UI/FC/ -# ||whistleout.com.au/imagelibrary/ads/wo_skin_ (easylist.txt: 35098) -.whistleout.com.au/imagelibrary/ads/wo_skin_ -# ||whispersinthecorridors.com/banner (easylist.txt: 35097) -.whispersinthecorridors.com/banner -# ||wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system.png (easylist.txt: 35096) -.wheninmanila.com/wp-content/uploads/2014/04/zion-wifi-social-hotspot-system\.png -# ||wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100.gif (easylist.txt: 35095) -.wheninmanila.com/wp-content/uploads/2014/02/DTC-Hardcore-Quadcore-300x100\.gif -# ||wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila.jpg (easylist.txt: 35094) -.wheninmanila.com/wp-content/uploads/2012/12/Marie-France-Buy-1-Take-1-Deal-Discount-WhenInManila\.jpg -# ||wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup.gif (easylist.txt: 35093) -.wheninmanila.com/wp-content/uploads/2011/05/Benchmark-Email-Free-Signup\.gif -# ||whdh.com/images/promotions/ (easylist.txt: 35092) -.whdh.com/images/promotions/ -# ||whatsthescore.com/logos/icons/bookmakers/ (easylist.txt: 35091) -.whatsthescore.com/logos/icons/bookmakers/ -# ||whatsontv.co.uk^*/promo/ (easylist.txt: 35090) -.whatsontv.co.uk/.*/promo/ -# ||whatsonstage.com/images/sitetakeover/ (easylist.txt: 35089) -.whatsonstage.com/images/sitetakeover/ -# ||whatsonnamibia.com/images/banners/ (easylist.txt: 35088) -.whatsonnamibia.com/images/banners/ -# ||whatson.co.za/img/hp.png (easylist.txt: 35087) -.whatson.co.za/img/hp\.png -# ||whatsnewonnetflix.com/assets/blockless-ad- (easylist.txt: 35086) -.whatsnewonnetflix.com/assets/blockless-ad- -# ||whatsabyte.com/images/Acronis_Banners/ (easylist.txt: 35085) -.whatsabyte.com/images/Acronis_Banners/ -# ||whatreallyhappened.com/webpageimages/banners/uwslogosm.jpg (easylist.txt: 35084) -.whatreallyhappened.com/webpageimages/banners/uwslogosm\.jpg -# ||whatmyip.co/images/speedcoin_ (easylist.txt: 35083) -.whatmyip.co/images/speedcoin_ -# ||whatmobile.com.pk/banners/ (easylist.txt: 35082) -.whatmobile.com.pk/banners/ -# ||whatismyip.org/ez_display_au_fillslot.js (easylist.txt: 35081) -.whatismyip.org/ez_display_au_fillslot\.js -# ||whatismyip.com/images/vyprvpn_ (easylist.txt: 35080) -.whatismyip.com/images/vyprvpn_ -# ||whatismyip.com/images/VYPR__125x125.png (easylist.txt: 35079) -.whatismyip.com/images/VYPR__125x125\.png -# ||wgfaradio.com/images/banners/ (easylist.txt: 35078) -.wgfaradio.com/images/banners/ -# ||werlv.com^*banner (easylist.txt: 35077) -.werlv.com/.*banner -# ||weknowmemes.com/sidesky. (easylist.txt: 35076) -.weknowmemes.com/sidesky\. -# ||wegoted.com/uploads/sponsors/ (easylist.txt: 35075) -.wegoted.com/uploads/sponsors/ -# ||wegoted.com/uploads/memsponsor/ (easylist.txt: 35074) -.wegoted.com/uploads/memsponsor/ -# ||wegoted.com/includes/biogreen.swf (easylist.txt: 35073) -.wegoted.com/includes/biogreen\.swf -# ||weei.com^*_banner.jpg (easylist.txt: 35072) -.weei.com/.*_banner\.jpg -# ||weei.com^*/sponsors/ (easylist.txt: 35071) -.weei.com/.*/sponsors/ -# ||weddingtv.com/src/baners/ (easylist.txt: 35070) -.weddingtv.com/src/baners/ -# ||webstatschecker.com/links/ (easylist.txt: 35069) -.webstatschecker.com/links/ -# ||websitehome.co.uk/seoheap/cheap-web-hosting.gif (easylist.txt: 35068) -.websitehome.co.uk/seoheap/cheap-web-hosting\.gif -# ||webnewswire.com/images/banner (easylist.txt: 35067) -.webnewswire.com/images/banner -# ||webmastercrunch.com^*/hostgator300x30.gif (easylist.txt: 35066) -.webmastercrunch.com/.*/hostgator300x30\.gif -# ||webmaster.extabit.com^ (easylist.txt: 35065) -.webmaster.extabit.com -# ||webmailnotifier.mozdev.org/etc/af/ (easylist.txt: 35064) -.webmailnotifier.mozdev.org/etc/af/ -# ||webhostranking.com/images/bluehost-coupon-banner-1.gif (easylist.txt: 35063) -.webhostranking.com/images/bluehost-coupon-banner-1\.gif -# ||webhostingtalk.com/images/style/lw-header.png (easylist.txt: 35062) -.webhostingtalk.com/images/style/lw-header\.png -# ||webhostingtalk.com/images/style/lw-160x400.jpg (easylist.txt: 35061) -.webhostingtalk.com/images/style/lw-160x400\.jpg -# ||webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ (easylist.txt: 35060) -.webdesignerdepot.com/wp-content/themes/wdd2/fancybox/ -# ||webdesignerdepot.com/wp-content/plugins/md-popup/ (easylist.txt: 35059) -.webdesignerdepot.com/wp-content/plugins/md-popup/ -# ||weatheroffice.gc.ca/banner/ (easylist.txt: 35058) -.weatheroffice.gc.ca/banner/ -# ||weather365.net/images/banners/ (easylist.txt: 35056) -.weather365.net/images/banners/ -# ||wearetennis.com/img/common/logo_bnp_ (easylist.txt: 35055) -.wearetennis.com/img/common/logo_bnp_ -# ||wearetennis.com/img/common/bnp-logo.png (easylist.txt: 35054) -.wearetennis.com/img/common/bnp-logo\.png -# ||wearetennis.com/img/common/bnp-logo- (easylist.txt: 35053) -.wearetennis.com/img/common/bnp-logo- -# ||wealthycashmagnet.com/upload/banners/ (easylist.txt: 35052) -.wealthycashmagnet.com/upload/banners/ -# ||wdwinfo.com/js/swap.js (easylist.txt: 35051) -.wdwinfo.com/js/swap\.js -# ||wctk.com/banner_rotator.php (easylist.txt: 35050) -.wctk.com/banner_rotator\.php -# ||wcbm.com/includes/clientgraphics/ (easylist.txt: 35049) -.wcbm.com/includes/clientgraphics/ -# ||wbj.pl/im/partners.gif (easylist.txt: 35048) -.wbj.pl/im/partners\.gif -# ||wbgo.org^*/banners/ (easylist.txt: 35047) -.wbgo.org/.*/banners/ -# ||wbal.com/absolutebm/banners/ (easylist.txt: 35046) -.wbal.com/absolutebm/banners/ -# ||way2sms.com/w2sv5/js/fo_ (easylist.txt: 35045) -.way2sms.com/w2sv5/js/fo_ -# ||wavelengthcalculator.com/banner (easylist.txt: 35044) -.wavelengthcalculator.com/banner -# ||waterford-today.ie^*/banners/ (easylist.txt: 35043) -.waterford-today.ie/.*/banners/ -# ||watchwwelive.net^*/long_ban2.jpg (easylist.txt: 35042) -.watchwwelive.net/.*/long_ban2\.jpg -# ||watchwwelive.net^*/big_ban.gif (easylist.txt: 35041) -.watchwwelive.net/.*/big_ban\.gif -# ||watchuseek.com/site/forabar/zixenflashwatch.swf (easylist.txt: 35040) -.watchuseek.com/site/forabar/zixenflashwatch\.swf -# ||watchuseek.com/media/wus-image.jpg (easylist.txt: 35039) -.watchuseek.com/media/wus-image\.jpg -# ||watchuseek.com/media/longines_legenddiver.gif (easylist.txt: 35038) -.watchuseek.com/media/longines_legenddiver\.gif -# ||watchuseek.com/media/clerc-final.jpg (easylist.txt: 35037) -.watchuseek.com/media/clerc-final\.jpg -# ||watchuseek.com/media/banner_ (easylist.txt: 35036) -.watchuseek.com/media/banner_ -# ||watchuseek.com/media/1900x220_ (easylist.txt: 35035) -.watchuseek.com/media/1900x220_ -# ||watchuseek.com/media/*_250x250 (easylist.txt: 35034) -.watchuseek.com/media/.*_250x250 -# ||watchuseek.com/media/*-banner- (easylist.txt: 35033) -.watchuseek.com/media/.*-banner- -# ||watchuseek.com/flashwatchwus.swf (easylist.txt: 35032) -.watchuseek.com/flashwatchwus\.swf -# ||watchseries.eu/js/csspopup.js (easylist.txt: 35031) -.watchseries.eu/js/csspopup\.js -# ||watchseries.eu/images/download.png (easylist.txt: 35030) -.watchseries.eu/images/download\.png -# ||watchseries.eu/images/affiliate_buzz.gif (easylist.txt: 35029) -.watchseries.eu/images/affiliate_buzz\.gif -# ||watchop.com/player/watchonepiece-gao-gamebox.swf (easylist.txt: 35028) -.watchop.com/player/watchonepiece-gao-gamebox\.swf -# ||watchfreemovies.ch/js/lmst.js (easylist.txt: 35027) -.watchfreemovies.ch/js/lmst\.js -# ||watchcartoononline.com^*/530x90. (easylist.txt: 35026) -.watchcartoononline.com/.*/530x90\. -# ||watchcartoononline.com/inc/siteskin. (easylist.txt: 35025) -.watchcartoononline.com/inc/siteskin\. -# ||washtimes.net/banners/ (easylist.txt: 35024) -.washtimes.net/banners/ -# ||washtimes.com/static/images/SelectAutoWeather_v2.gif (easylist.txt: 35023) -.washtimes.com/static/images/SelectAutoWeather_v2\.gif -# ||washtimes.com/js/dart. (easylist.txt: 35022) -.washtimes.com/js/dart\. -# ||washpost.com^*/cmag_sponsor3.php? (easylist.txt: 35021) -.washpost.com/.*/cmag_sponsor3\.php\? -# ||washingtonpost.com/wp-srv/javascript/piggy-back-on-ads.js (easylist.txt: 35020) -.washingtonpost.com/wp-srv/javascript/piggy-back-on-ads\.js -# ||warriorforum.com/vbppb/ (easylist.txt: 35019) -.warriorforum.com/vbppb/ -# ||wardsauto.com^*/pm_doubleclick/ (easylist.txt: 35018) -.wardsauto.com/.*/pm_doubleclick/ -# ||waoanime.tv/playerimg.jpg (easylist.txt: 35017) -.waoanime.tv/playerimg\.jpg -# ||wantitall.co.za/images/banners/ (easylist.txt: 35016) -.wantitall.co.za/images/banners/ -# ||wantedinmilan.com/images/banner/ (easylist.txt: 35015) -.wantedinmilan.com/images/banner/ -# ||walshfreedom.com^*/liberty-luxury.png (easylist.txt: 35013) -.walshfreedom.com/.*/liberty-luxury\.png -# ||walshfreedom.com^*-300x250. (easylist.txt: 35012) -.walshfreedom.com/.*-300x250\. -# ||wadldetroit.com/images/banners/ (easylist.txt: 35010) -.wadldetroit.com/images/banners/ -# ||waamradio.com/images/sponsors/ (easylist.txt: 35009) -.waamradio.com/images/sponsors/ -# ||w.homes.yahoo.net^ (easylist.txt: 35008) -.w.homes.yahoo.net -# ||vpsboard.com/display/ (easylist.txt: 35007) -.vpsboard.com/display/ -# ||vox-cdn.com/campaigns_images/ (easylist.txt: 35006) -.vox-cdn.com/campaigns_images/ -# ||vosizneias.com/perms/ (easylist.txt: 35005) -.vosizneias.com/perms/ -# ||vortez.co.uk^*skyscraper.jpg (easylist.txt: 35004) -.vortez.co.uk/.*skyscraper\.jpg -# ||vortez.co.uk^*120x600.swf (easylist.txt: 35003) -.vortez.co.uk/.*120x600\.swf -# ||vonradio.com/grfx/banners/ (easylist.txt: 35002) -.vonradio.com/grfx/banners/ -# ||vondroid.com/site-img/*-adv-ex- (easylist.txt: 35001) -.vondroid.com/site-img/.*-adv-ex- -# ||voicesvancouver.com/images/stories/banners/ (easylist.txt: 35000) -.voicesvancouver.com/images/stories/banners/ -# ||voicesvancouver.com/images/leaderBoards/ (easylist.txt: 34999) -.voicesvancouver.com/images/leaderBoards/ -# ||voicestoronto.com/images/stories/banners/ (easylist.txt: 34998) -.voicestoronto.com/images/stories/banners/ -# ||voicestoronto.com/images/leaderBoards/ (easylist.txt: 34997) -.voicestoronto.com/images/leaderBoards/ -# ||voicesottawa.com/images/stories/banners/ (easylist.txt: 34996) -.voicesottawa.com/images/stories/banners/ -# ||voicesottawa.com/images/leaderBoards/ (easylist.txt: 34995) -.voicesottawa.com/images/leaderBoards/ -# ||voicesedmonton.com/images/stories/banners/ (easylist.txt: 34994) -.voicesedmonton.com/images/stories/banners/ -# ||voicesedmonton.com/images/leaderBoards/ (easylist.txt: 34993) -.voicesedmonton.com/images/leaderBoards/ -# ||voicescalgary.com/images/stories/banners/ (easylist.txt: 34992) -.voicescalgary.com/images/stories/banners/ -# ||voicescalgary.com/images/leaderBoards/ (easylist.txt: 34991) -.voicescalgary.com/images/leaderBoards/ -# ||vogue.in/node/*?section= (easylist.txt: 34990) -.vogue.in/node/.*\?section= -# ||vodo.net/static/images/promotion/utorrent_plus_buy.png (easylist.txt: 34989) -.vodo.net/static/images/promotion/utorrent_plus_buy\.png -# ||vodlocker.com/images/acenter.png (easylist.txt: 34988) -.vodlocker.com/images/acenter\.png -# ||vnbitcoin.org/gawminers.png (easylist.txt: 34987) -.vnbitcoin.org/gawminers\.png -# ||vnbitcoin.org/140_350.jpg (easylist.txt: 34986) -.vnbitcoin.org/140_350\.jpg -# ||vitalmtb.com/assets/vital.aba- (easylist.txt: 34985) -.vitalmtb.com/assets/vital\.aba- -# ||vitalmtb.com/assets/ablock- (easylist.txt: 34984) -.vitalmtb.com/assets/ablock- -# ||vitalmtb.com/api/ (easylist.txt: 34983) -.vitalmtb.com/api/ -# ||vitalfootball.co.uk^*/partners/ (easylist.txt: 34982) -.vitalfootball.co.uk/.*/partners/ -# ||vitalfootball.co.uk/app-interstitial/ (easylist.txt: 34981) -.vitalfootball.co.uk/app-interstitial/ -# ||vistandpoint.com/images/banners/ (easylist.txt: 34980) -.vistandpoint.com/images/banners/ -# ||virtualtourist.com/adp/ (easylist.txt: 34979) -.virtualtourist.com/adp/ -# ||virtual-hideout.net/banner (easylist.txt: 34978) -.virtual-hideout.net/banner -# ||virginislandsthisweek.com/images/728- (easylist.txt: 34977) -.virginislandsthisweek.com/images/728- -# ||virginislandsthisweek.com/images/336- (easylist.txt: 34976) -.virginislandsthisweek.com/images/336- -# ||vipleague.se/js/vip.js (easylist.txt: 34975) -.vipleague.se/js/vip\.js -# ||vipleague.me/blackwhite/ (easylist.txt: 34974) -.vipleague.me/blackwhite/ -# ||vipi.tv/ad.php (easylist.txt: 34973) -.vipi.tv/ad\.php -# ||vipbox.tv/js/layer.js (easylist.txt: 34972) -.vipbox.tv/js/layer\.js -# ||vipbox.tv/js/layer- (easylist.txt: 34971) -.vipbox.tv/js/layer- -# ||vipbox.tv/blackwhite/ (easylist.txt: 34970) -.vipbox.tv/blackwhite/ -# ||vipbox.sx/blackwhite/ (easylist.txt: 34969) -.vipbox.sx/blackwhite/ -# ||vipbox.eu/pu/ (easylist.txt: 34968) -.vipbox.eu/pu/ -# ||vipbox.co^*/pu.js (easylist.txt: 34967) -.vipbox.co/.*/pu\.js -# ||vipbox.co/js/bn.js (easylist.txt: 34966) -.vipbox.co/js/bn\.js -# ||vinaora.com/xmedia/hosting/ (easylist.txt: 34965) -.vinaora.com/xmedia/hosting/ -# ||villagevoice.com/img/VDotDFallback-large.gif (easylist.txt: 34964) -.villagevoice.com/img/VDotDFallback-large\.gif -# ||viewdocsonline.com/images/banners/ (easylist.txt: 34963) -.viewdocsonline.com/images/banners/ -# ||vidvib.com/vidvibpopb. (easylist.txt: 34962) -.vidvib.com/vidvibpopb\. -# ||vidvib.com/vidvibpopa. (easylist.txt: 34961) -.vidvib.com/vidvibpopa\. -# ||vidspot.net^*/pu.js (easylist.txt: 34960) -.vidspot.net/.*/pu\.js -# ||vidspot.net/s/xfs.min.js? (easylist.txt: 34958) -.vidspot.net/s/xfs\.min\.js\? -# ||vidhog.com/images/download_banner_ (easylist.txt: 34955) -.vidhog.com/images/download_banner_ -# ||videowood.tv/pop2 (easylist.txt: 34954) -.videowood.tv/pop2 -# ||videowood.tv/assets/js/popup.js (easylist.txt: 34953) -.videowood.tv/assets/js/popup\.js -# ||videowood.tv/ads (easylist.txt: 34952) -.videowood.tv/ads -# ||videositeprofits.com^*/banner.jpg (easylist.txt: 34951) -.videositeprofits.com/.*/banner\.jpg -# ||videos.mediaite.com/decor/live/white_alpha_60. (easylist.txt: 34950) -.videos.mediaite.com/decor/live/white_alpha_60\. -# ||videos.com/click? (easylist.txt: 34949) -.videos.com/click\? -# ||videopediaworld.com/nuevo/plugins/midroll. (easylist.txt: 34948) -.videopediaworld.com/nuevo/plugins/midroll\. -# ||videolan.org/images/events/animated_packliberte.gif (easylist.txt: 34947) -.videolan.org/images/events/animated_packliberte\.gif -# ||videogamesblogger.com^*/scripts/takeover.js (easylist.txt: 34946) -.videogamesblogger.com/.*/scripts/takeover\.js -# ||videogamesblogger.com/takeover.html (easylist.txt: 34945) -.videogamesblogger.com/takeover\.html -# ||videogamer.com/videogamer*/skins/ (easylist.txt: 34943) -.videogamer.com/videogamer.*/skins/ -# ||videodownloadtoolbar.com/fancybox/ (easylist.txt: 34942) -.videodownloadtoolbar.com/fancybox/ -# ||videobull.to/wp-content/themes/videozoom/images/stream-hd-button.gif (easylist.txt: 34940) -.videobull.to/wp-content/themes/videozoom/images/stream-hd-button\.gif -# ||videobull.to/wp-content/themes/videozoom/images/gotowatchnow.png (easylist.txt: 34939) -.videobull.to/wp-content/themes/videozoom/images/gotowatchnow\.png -# ||videobull.com^*/amazon_ico.png (easylist.txt: 34938) -.videobull.com/.*/amazon_ico\.png -# ||videobull.com/wp-content/themes/*/watch-now.jpg (easylist.txt: 34937) -.videobull.com/wp-content/themes/.*/watch-now\.jpg -# ||videobash.com/images/playboy/ (easylist.txt: 34936) -.videobash.com/images/playboy/ -# ||videobam.com/this-pays-for-bandwidth/ (easylist.txt: 34935) -.videobam.com/this-pays-for-bandwidth/ -# ||videobam.com/images/banners/ (easylist.txt: 34934) -.videobam.com/images/banners/ -# ||video44.net/gogo/qc.js (easylist.txt: 34932) -.video44.net/gogo/qc\.js -# ||video44.net/gogo/a_d_s. (easylist.txt: 34931) -.video44.net/gogo/a_d_s\. -# ||video2mp3.net/images/download_button.png (easylist.txt: 34930) -.video2mp3.net/images/download_button\.png -# ||video.abc.com^*/ads/ (easylist.txt: 34927) -.video.abc.com/.*/ads/ -# ||vidds.net/pads*.js (easylist.txt: 34924) -.vidds.net/pads.*\.js -# ||vidbull.com/tags/vidbull_bnr.png (easylist.txt: 34923) -.vidbull.com/tags/vidbull_bnr\.png -# ||vice-ads-cdn.vice.com^ (easylist.txt: 34922) -.vice-ads-cdn.vice.com -# ||viator.com/analytics/percent_mobile_hash.js (easylist.txt: 34921) -.viator.com/analytics/percent_mobile_hash\.js -# ||viamichelin.co.uk/htm/cmn/afs*.htm? (easylist.txt: 34920) -.viamichelin.co.uk/htm/cmn/afs.*\.htm\? -# ||viadeo.com/pub/ (easylist.txt: 34919) -.viadeo.com/pub/ -# ||vhd.me/custom/interstitial (easylist.txt: 34918) -.vhd.me/custom/interstitial -# ||vfs-uk-in.com/images/webbanner- (easylist.txt: 34917) -.vfs-uk-in.com/images/webbanner- -# ||verzing.com/popup (easylist.txt: 34916) -.verzing.com/popup -# ||verzend.be/images/download.png (easylist.txt: 34915) -.verzend.be/images/download\.png -# ||verizon.com/ads/ (easylist.txt: 34914) -.verizon.com/ads/ -# ||verdict.abc.go.com^ (easylist.txt: 34913) -.verdict.abc.go.com -# ||vcdq.com^*/ad.html (easylist.txt: 34911) -.vcdq.com/.*/ad\.html -# ||vcdq.com/tag.html (easylist.txt: 34910) -.vcdq.com/tag\.html -# ||vault.starproperty.my/widget/ (easylist.txt: 34909) -.vault.starproperty.my/widget/ -# ||vasco.co.za/images/banners/ (easylist.txt: 34908) -.vasco.co.za/images/banners/ -# ||vanityfair.com/custom/ebook-ad-bookbiz (easylist.txt: 34907) -.vanityfair.com/custom/ebook-ad-bookbiz -# ||valleyplanet.com/images/banners/ (easylist.txt: 34905) -.valleyplanet.com/images/banners/ -# ||val.fm/images/banners/ (easylist.txt: 34904) -.val.fm/images/banners/ -# ||uvnc.com/img/housecall. (easylist.txt: 34903) -.uvnc.com/img/housecall\. -# ||ustream.tv/takeover/ (easylist.txt: 34902) -.ustream.tv/takeover/ -# ||usforacle.com^*-300x250.gif (easylist.txt: 34899) -.usforacle.com/.*-300x250\.gif -# ||usenet-crawler.com/purevpn.png (easylist.txt: 34898) -.usenet-crawler.com/purevpn\.png -# ||usenet-crawler.com/astraweb.png (easylist.txt: 34897) -.usenet-crawler.com/astraweb\.png -# ||uschess.org/images/banners/ (easylist.txt: 34896) -.uschess.org/images/banners/ -# ||usatodayhss.com/images/*skin (easylist.txt: 34895) -.usatodayhss.com/images/.*skin -# ||usatoday.net^*/lb-agate.png (easylist.txt: 34894) -.usatoday.net/.*/lb-agate\.png -# ||usanetwork.com/_js/ad.js (easylist.txt: 34893) -.usanetwork.com/_js/ad\.js -# ||urlgone.com^*/banners/ (easylist.txt: 34892) -.urlgone.com/.*/banners/ -# ||urlcash.org/newpop.js (easylist.txt: 34891) -.urlcash.org/newpop\.js -# ||urlcash.org/banners/ (easylist.txt: 34890) -.urlcash.org/banners/ -# ||urlcash.org/abp/ (easylist.txt: 34889) -.urlcash.org/abp/ -# ||urlcash.net/random*.php (easylist.txt: 34888) -.urlcash.net/random.*\.php -# ||urlcash.net/newpop.js (easylist.txt: 34887) -.urlcash.net/newpop\.js -# ||urethanes-technology-international.com^*/banners/ (easylist.txt: 34886) -.urethanes-technology-international.com/.*/banners/ -# ||urbanvelo.org/sidebarbanner/ (easylist.txt: 34885) -.urbanvelo.org/sidebarbanner/ -# ||urbanfonts.com/images/fonts_com/ (easylist.txt: 34884) -.urbanfonts.com/images/fonts_com/ -# ||urbanchristiannews.com/ucn/sidebar- (easylist.txt: 34883) -.urbanchristiannews.com/ucn/sidebar- -# ||uptobox.com/images/downloaden.gif (easylist.txt: 34882) -.uptobox.com/images/downloaden\.gif -# ||uptobox.com/images/download.png (easylist.txt: 34881) -.uptobox.com/images/download\.png -# ||uptobox.com/ayl.js (easylist.txt: 34880) -.uptobox.com/ayl\.js -# ||uploadlw.com^*/download_button.gif (easylist.txt: 34879) -.uploadlw.com/.*/download_button\.gif -# ||uploadlw.com^*/download-now (easylist.txt: 34878) -.uploadlw.com/.*/download-now -# ||uploadlw.com/js/cash.js (easylist.txt: 34877) -.uploadlw.com/js/cash\.js -# ||uploading.com/static/banners/ (easylist.txt: 34876) -.uploading.com/static/banners/ -# ||uploadedtrend.com/turboflirt.gif (easylist.txt: 34875) -.uploadedtrend.com/turboflirt\.gif -# ||uploaded.to/img/e/ad/ (easylist.txt: 34874) -.uploaded.to/img/e/ad/ -# ||uploaded.net/js2/downloadam.js (easylist.txt: 34873) -.uploaded.net/js2/downloadam\.js -# ||uploadcore.com/images/*-Rad.png (easylist.txt: 34872) -.uploadcore.com/images/.*-Rad\.png -# ||uploadcore.com/images/*-mad.jpg (easylist.txt: 34871) -.uploadcore.com/images/.*-mad\.jpg -# ||uploadcore.com/images/*-Lad.jpg (easylist.txt: 34870) -.uploadcore.com/images/.*-Lad\.jpg -# ||upload.ee/image/*/B_descarga_tipo12.gif (easylist.txt: 34868) -.upload.ee/image/.*/B_descarga_tipo12\.gif -# ||universalhub.com/bban/ (easylist.txt: 34867) -.universalhub.com/bban/ -# ||uniquefm.gm/images/banners/ (easylist.txt: 34866) -.uniquefm.gm/images/banners/ -# ||uniindia.net/eng/banners/ (easylist.txt: 34865) -.uniindia.net/eng/banners/ -# ||uniindia.com/eng/bannertopright.php (easylist.txt: 34864) -.uniindia.com/eng/bannertopright\.php -# ||uniindia.com/eng/banners/ (easylist.txt: 34863) -.uniindia.com/eng/banners/ -# ||uniindia.com/eng/bannerrightside.php (easylist.txt: 34862) -.uniindia.com/eng/bannerrightside\.php -# ||uniindia.com/eng/bannerheader.php (easylist.txt: 34861) -.uniindia.com/eng/bannerheader\.php -# ||uniindia.com/eng/bannerbottom.php (easylist.txt: 34860) -.uniindia.com/eng/bannerbottom\.php -# ||unicast.msn.com^ (easylist.txt: 34859) -.unicast.msn.com -# ||unicast.ign.com^ (easylist.txt: 34858) -.unicast.ign.com -# ||uncoached.com/smallpics/ashley (easylist.txt: 34857) -.uncoached.com/smallpics/ashley -# ||unblockt.com/scrape_if.php (easylist.txt: 34856) -.unblockt.com/scrape_if\.php -# ||umbrelladetective.com/uploaded_files/banners/ (easylist.txt: 34850) -.umbrelladetective.com/uploaded_files/banners/ -# ||ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners.swf (easylist.txt: 34849) -.ultimatewindowssecurity.com/securitylog/encyclopedia/images/allpartners\.swf -# ||ultimatewindowssecurity.com/images/spale.swf (easylist.txt: 34848) -.ultimatewindowssecurity.com/images/spale\.swf -# ||ultimatewindowssecurity.com/images/patchzone-resource-80x490.jpg (easylist.txt: 34847) -.ultimatewindowssecurity.com/images/patchzone-resource-80x490\.jpg -# ||ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool.jpg (easylist.txt: 34846) -.ultimatewindowssecurity.com/images/banner80x490_WSUS_FreeTool\.jpg -# ||ultimatehandyman.org/bh1.gif (easylist.txt: 34845) -.ultimatehandyman.org/bh1\.gif -# ||ultimatehandyman.co.uk/ban.txt (easylist.txt: 34844) -.ultimatehandyman.co.uk/ban\.txt -# ||ultimate-guitar.com^*/takeover/ (easylist.txt: 34843) -.ultimate-guitar.com/.*/takeover/ -# ||ultimate-guitar.com/_img/promo/takeovers/ (easylist.txt: 34841) -.ultimate-guitar.com/_img/promo/takeovers/ -# ||ultimate-guitar.com/_img/bgd/bgd_main_ (easylist.txt: 34840) -.ultimate-guitar.com/_img/bgd/bgd_main_ -# ||ukradioplayer.kerrangradio.co.uk^*/icon_apple.png (easylist.txt: 34839) -.ukradioplayer.kerrangradio.co.uk/.*/icon_apple\.png -# ||ukradioplayer.kerrangradio.co.uk^*/icon_amazon.png (easylist.txt: 34838) -.ukradioplayer.kerrangradio.co.uk/.*/icon_amazon\.png -# ||ukfindit.com/wipedebtclean.png (easylist.txt: 34837) -.ukfindit.com/wipedebtclean\.png -# ||ukfindit.com/images/*_125x125.gif (easylist.txt: 34836) -.ukfindit.com/images/.*_125x125\.gif -# ||ukcast.co/rbt728.php (easylist.txt: 34835) -.ukcast.co/rbt728\.php -# ||ukcast.co/pubfit.php (easylist.txt: 34834) -.ukcast.co/pubfit\.php -# ||ukcampsite.co.uk/banners/ (easylist.txt: 34833) -.ukcampsite.co.uk/banners/ -# ||ukbusinessforums.co.uk/adblock/ (easylist.txt: 34832) -.ukbusinessforums.co.uk/adblock/ -# ||uk-mkivs.net/uploads/banners/ (easylist.txt: 34831) -.uk-mkivs.net/uploads/banners/ -# ||ujfm.co.za/images/banners/ (easylist.txt: 34830) -.ujfm.co.za/images/banners/ -# ||uimserv.net^ (easylist.txt: 34829) -.uimserv.net -# ||ugo.com/takeover/ (easylist.txt: 34828) -.ugo.com/takeover/ -# ||ufonts.com/gfx/uFonts_Banner5.png (easylist.txt: 34827) -.ufonts.com/gfx/uFonts_Banner5\.png -# ||ubuntugeek.com^*/rocket.js (easylist.txt: 34826) -.ubuntugeek.com/.*/rocket\.js -# ||ubuntugeek.com/images/ubuntu1.png (easylist.txt: 34825) -.ubuntugeek.com/images/ubuntu1\.png -# ||ubuntugeek.com/images/od.jpg (easylist.txt: 34824) -.ubuntugeek.com/images/od\.jpg -# ||ubuntugeek.com/images/dnsstock.png (easylist.txt: 34823) -.ubuntugeek.com/images/dnsstock\.png -# ||ua.badongo.com^ (easylist.txt: 34820) -.ua.badongo.com -# ||u.tv/utvplayer/jwplayer/ova.swf (easylist.txt: 34819) -.u.tv/utvplayer/jwplayer/ova\.swf -# ||u.tv/images/sponsors/ (easylist.txt: 34818) -.u.tv/images/sponsors/ -# ||u.tv/images/misc/progressive.png (easylist.txt: 34817) -.u.tv/images/misc/progressive\.png -# ||txfm.ie^*/itunes-16x16.png (easylist.txt: 34816) -.txfm.ie/.*/itunes-16x16\.png -# ||txfm.ie^*/amazon-16x16.png (easylist.txt: 34815) -.txfm.ie/.*/amazon-16x16\.png -# ||twnmm.com^*/sponsored_logo. (easylist.txt: 34814) -.twnmm.com/.*/sponsored_logo\. -# ||twitch.tv/ad/*=preroll (easylist.txt: 34812) -.twitch.tv/ad/.*=preroll -# ||twentyfour7football.com^*/gpprint.jpg (easylist.txt: 34811) -.twentyfour7football.com/.*/gpprint\.jpg -# ||tweaktown.com/cms/includes/i*.php (easylist.txt: 34810) -.tweaktown.com/cms/includes/i.*\.php -# ||tvsubtitles.net/banners/ (easylist.txt: 34809) -.tvsubtitles.net/banners/ -# ||tvguide.com^*/ecommerce/ (easylist.txt: 34808) -.tvguide.com/.*/ecommerce/ -# ||tvducky.com/imgs/graboid. (easylist.txt: 34807) -.tvducky.com/imgs/graboid\. -# ||tvcatchup.com/wowee/ (easylist.txt: 34806) -.tvcatchup.com/wowee/ -# ||tvbrowser.org/logo_df_tvsponsor_ (easylist.txt: 34805) -.tvbrowser.org/logo_df_tvsponsor_ -# ||tv4chan.com/iframes/ (easylist.txt: 34804) -.tv4chan.com/iframes/ -# ||tv3.ie^*/sponsor. (easylist.txt: 34803) -.tv3.ie/.*/sponsor\. -# ||tuspics.net/onlyPopupOnce.js (easylist.txt: 34802) -.tuspics.net/onlyPopupOnce\.js -# ||tusfiles.net/images/tusfilesb.gif (easylist.txt: 34801) -.tusfiles.net/images/tusfilesb\.gif -# ||tusfiles.net/i/dll.png (easylist.txt: 34800) -.tusfiles.net/i/dll\.png -# ||turnstylenews.com^*/sponsors.png (easylist.txt: 34799) -.turnstylenews.com/.*/sponsors\.png -# ||turboyourpc.com/images/affiliates/ (easylist.txt: 34798) -.turboyourpc.com/images/affiliates/ -# ||turboimagehost.com/p.js (easylist.txt: 34797) -.turboimagehost.com/p\.js -# ||turboimagehost.com/b728_ (easylist.txt: 34796) -.turboimagehost.com/b728_ -# ||turboimagehost.com/b728. (easylist.txt: 34795) -.turboimagehost.com/b728\. -# ||turboimagehost.com/b300_ (easylist.txt: 34794) -.turboimagehost.com/b300_ -# ||turboimagehost.com/b300. (easylist.txt: 34793) -.turboimagehost.com/b300\. -# ||turboimagehost.com/728*.html^ (easylist.txt: 34792) -.turboimagehost.com/728.*\.html[^\w%.-] -# ||turboimagehost.com/300*.html^ (easylist.txt: 34791) -.turboimagehost.com/300.*\.html[^\w%.-] -# ||turbobit.net/pics/7z1xla23ay_ (easylist.txt: 34790) -.turbobit.net/pics/7z1xla23ay_ -# ||turbobit.net/oexktl/muzebra_ (easylist.txt: 34789) -.turbobit.net/oexktl/muzebra_ -# ||turbobit.net/js/acontrol.js? (easylist.txt: 34788) -.turbobit.net/js/acontrol\.js\? -# ||tune.pk/plugins/cb_tunepk/ads/ (easylist.txt: 34787) -.tune.pk/plugins/cb_tunepk/ads/ -# ||tullahomanews.com/news/tn-popup.js (easylist.txt: 34786) -.tullahomanews.com/news/tn-popup\.js -# ||tullahomanews.com/news/banners/ (easylist.txt: 34785) -.tullahomanews.com/news/banners/ -# ||tubeplus.me/resources/js/codec.js (easylist.txt: 34784) -.tubeplus.me/resources/js/codec\.js -# ||tubehome.com/imgs/undressme (easylist.txt: 34783) -.tubehome.com/imgs/undressme -# ||tsn.ca^*_sponsor. (easylist.txt: 34782) -.tsn.ca/.*_sponsor\. -# ||tsdmemphis.com/images/banners/ (easylist.txt: 34781) -.tsdmemphis.com/images/banners/ -# ||trutv.com/includes/mods/iframes/mgid-blog.php (easylist.txt: 34779) -.trutv.com/includes/mods/iframes/mgid-blog\.php -# ||trustedreviews.com/mobile/widgets/html/promoted-phones? (easylist.txt: 34778) -.trustedreviews.com/mobile/widgets/html/promoted-phones\? -# ||trunews.com^*/Webbanner.jpg (easylist.txt: 34777) -.trunews.com/.*/Webbanner\.jpg -# ||trucktrend.com^*_160x200_ (easylist.txt: 34776) -.trucktrend.com/.*_160x200_ -# ||trucknetuk.com^*/sponsors/ (easylist.txt: 34775) -.trucknetuk.com/.*/sponsors/ -# ||truck1.eu/_BANNERS_/ (easylist.txt: 34774) -.truck1.eu/_BANNERS_/ -# ||triplehfm.com.au/images/banners/ (easylist.txt: 34773) -.triplehfm.com.au/images/banners/ -# ||tripadvisor.com^*/skyscraper.jpg (easylist.txt: 34772) -.tripadvisor.com/.*/skyscraper\.jpg -# ||tripadvisor.com/adp/ (easylist.txt: 34771) -.tripadvisor.com/adp/ -# ||tribune242.com/pubfiles/ (easylist.txt: 34769) -.tribune242.com/pubfiles/ -# ||tribune.com.ng/images/banners/ (easylist.txt: 34768) -.tribune.com.ng/images/banners/ -# ||trgoals.es/adk.html (easylist.txt: 34767) -.trgoals.es/adk\.html -# ||trailrunnermag.com/images/takeovers/ (easylist.txt: 34766) -.trailrunnermag.com/images/takeovers/ -# ||traduguide.com/banner/ (easylist.txt: 34765) -.traduguide.com/banner/ -# ||tradewinds.vi/images/banners/ (easylist.txt: 34764) -.tradewinds.vi/images/banners/ -# ||tracksat.com^*/banners/ (easylist.txt: 34763) -.tracksat.com/.*/banners/ -# ||trackitdown.net/skins/*_campaign/ (easylist.txt: 34762) -.trackitdown.net/skins/.*_campaign/ -# ||tracking.hostgator.com^ (easylist.txt: 34761) -.tracking.hostgator.com -# ||tpb.piraten.lu/static/img/bar.gif (easylist.txt: 34758) -.tpb.piraten.lu/static/img/bar\.gif -# ||toywiz.com/lower-caption-global.html (easylist.txt: 34757) -.toywiz.com/lower-caption-global\.html -# ||toynewsi.com/a/ (easylist.txt: 34756) -.toynewsi.com/a/ -# ||toynews-online.biz/media/banners/ (easylist.txt: 34755) -.toynews-online.biz/media/banners/ -# ||townhall.com^*/ads/ (easylist.txt: 34754) -.townhall.com/.*/ads/ -# ||toucharcade.com/wp-content/uploads/skins/ (easylist.txt: 34753) -.toucharcade.com/wp-content/uploads/skins/ -# ||toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin.jpg (easylist.txt: 34752) -.toucharcade.com/wp-content/themes/skin_zero/images/skin_assets/main_skin\.jpg -# ||toucharcade.com/wp-content/themes/*_background_*.jpg (easylist.txt: 34751) -.toucharcade.com/wp-content/themes/.*_background_.*\.jpg -# ||totalguitar.net/images/tgMagazineBanner.gif (easylist.txt: 34750) -.totalguitar.net/images/tgMagazineBanner\.gif -# ||totalguitar.net/images/*_125X125.jpg (easylist.txt: 34749) -.totalguitar.net/images/.*_125X125\.jpg -# ||totalcmd.pl/img/olszak. (easylist.txt: 34748) -.totalcmd.pl/img/olszak\. -# ||totalcmd.pl/img/nucom. (easylist.txt: 34747) -.totalcmd.pl/img/nucom\. -# ||totalcmd.pl/img/billboard_ (easylist.txt: 34746) -.totalcmd.pl/img/billboard_ -# ||total-croatia-news.com/images/banners/ (easylist.txt: 34745) -.total-croatia-news.com/images/banners/ -# ||toshiba.com^*/toshibapromowidget/ (easylist.txt: 34744) -.toshiba.com/.*/toshibapromowidget/ -# ||toshiba.com^*/bookingpromowidget/ (easylist.txt: 34743) -.toshiba.com/.*/bookingpromowidget/ -# ||torrentz.*/mgid/ (easylist.txt: 34742) -.torrentz.*./(.*/)?mgid/ -# ||torrentv.org/images/tsdls.jpg (easylist.txt: 34741) -.torrentv.org/images/tsdls\.jpg -# ||torrentv.org/images/tsdd.jpg (easylist.txt: 34740) -.torrentv.org/images/tsdd\.jpg -# ||torrents.net/wiget.js (easylist.txt: 34739) -.torrents.net/wiget\.js -# ||torrents.net/btguard.gif (easylist.txt: 34738) -.torrents.net/btguard\.gif -# ||torrentroom.com/js/torrents.js (easylist.txt: 34737) -.torrentroom.com/js/torrents\.js -# ||torrentproject.org/out/ (easylist.txt: 34736) -.torrentproject.org/out/ -# ||torrentfusion.com/FastDownload.html (easylist.txt: 34735) -.torrentfusion.com/FastDownload\.html -# ||torrentfunk.com/affprofslider.js (easylist.txt: 34734) -.torrentfunk.com/affprofslider\.js -# ||torrentfreak.com/images/vuze.png (easylist.txt: 34733) -.torrentfreak.com/images/vuze\.png -# ||torrentfreak.com/images/torguard.gif (easylist.txt: 34732) -.torrentfreak.com/images/torguard\.gif -# ||torrenteditor.com/img/graphical-network-monitor.gif (easylist.txt: 34731) -.torrenteditor.com/img/graphical-network-monitor\.gif -# ||torrentcrazy.com/pnd.js (easylist.txt: 34730) -.torrentcrazy.com/pnd\.js -# ||torrentcrazy.com/img/wx.png (easylist.txt: 34729) -.torrentcrazy.com/img/wx\.png -# ||torrentbox.sx/img/download_direct.png (easylist.txt: 34728) -.torrentbox.sx/img/download_direct\.png -# ||torrentbit.net/images/1click/button-long.png (easylist.txt: 34727) -.torrentbit.net/images/1click/button-long\.png -# ||torrent.cd/images/sp/ (easylist.txt: 34726) -.torrent.cd/images/sp/ -# ||torrent.cd/images/main_big_msoft.jpg (easylist.txt: 34725) -.torrent.cd/images/main_big_msoft\.jpg -# ||torrent.cd/images/big_use.gif (easylist.txt: 34724) -.torrent.cd/images/big_use\.gif -# ||torrent.cd/images/banner- (easylist.txt: 34723) -.torrent.cd/images/banner- -# ||torrent-finder.info/cont.php (easylist.txt: 34722) -.torrent-finder.info/cont\.php -# ||torrent-finder.info/cont.html (easylist.txt: 34721) -.torrent-finder.info/cont\.html -# ||toptenreviews.com/flash/ (easylist.txt: 34720) -.toptenreviews.com/flash/ -# ||topix.com/ajax/krillion/ (easylist.txt: 34719) -.topix.com/ajax/krillion/ -# ||topfriv.com/popup.js (easylist.txt: 34718) -.topfriv.com/popup\.js -# ||topalternate.com/assets/sponsored_links- (easylist.txt: 34717) -.topalternate.com/assets/sponsored_links- -# ||toonzone.net^*/placements.php? (easylist.txt: 34716) -.toonzone.net/.*/placements\.php\? -# ||toonova.com/images/site/front/xgift- (easylist.txt: 34715) -.toonova.com/images/site/front/xgift- -# ||toomuchnews.com/dropin/ (easylist.txt: 34714) -.toomuchnews.com/dropin/ -# ||toolslib.net/assets/img/a_dvt/ (easylist.txt: 34713) -.toolslib.net/assets/img/a_dvt/ -# ||tom.itv.com^ (easylist.txt: 34710) -.tom.itv.com -# ||tny.cz/oo/ (easylist.txt: 34709) -.tny.cz/oo/ -# ||tnij.org/rotator (easylist.txt: 34708) -.tnij.org/rotator -# ||tmz.vo.llnwd.net^*/images/*skin (easylist.txt: 34706) -.tmz.vo.llnwd.net/.*/images/.*skin -# ||tmcs.net^ (easylist.txt: 34705) -.tmcs.net -# ||titantv.com/gravity.ashx (easylist.txt: 34704) -.titantv.com/gravity\.ashx -# ||titantorrent.to^*/buttons/download.gif (easylist.txt: 34703) -.titantorrent.to/.*/buttons/download\.gif -# ||titanshare.to/images/buttons/download.gif (easylist.txt: 34702) -.titanshare.to/images/buttons/download\.gif -# ||tinyurl.com/firefox_banner_ (easylist.txt: 34701) -.tinyurl.com/firefox_banner_ -# ||tinypaste.com/public/images/480.png (easylist.txt: 34700) -.tinypaste.com/public/images/480\.png -# ||tindleradio.net/banners/ (easylist.txt: 34698) -.tindleradio.net/banners/ -# ||timestalks.com/images/sponsor- (easylist.txt: 34697) -.timestalks.com/images/sponsor- -# ||timesofoman.com^*/banner/ (easylist.txt: 34696) -.timesofoman.com/.*/banner/ -# ||timesofoman.com/siteImages/MyBannerImages/ (easylist.txt: 34695) -.timesofoman.com/siteImages/MyBannerImages/ -# ||timesofoman.com/FrontInc/top.aspx (easylist.txt: 34694) -.timesofoman.com/FrontInc/top\.aspx -# ||timesnow.tv/googlehome.cms (easylist.txt: 34693) -.timesnow.tv/googlehome\.cms -# ||times.co.sz/files/banners/ (easylist.txt: 34692) -.times.co.sz/files/banners/ -# ||times-herald.com/pubfiles/ (easylist.txt: 34691) -.times-herald.com/pubfiles/ -# ||timeinc.net^*/recirc.js (easylist.txt: 34690) -.timeinc.net/.*/recirc\.js -# ||timeinc.net/*/i/oba-compliance.png (easylist.txt: 34689) -.timeinc.net/.*/i/oba-compliance\.png -# ||time4tv.com/tlv. (easylist.txt: 34688) -.time4tv.com/tlv\. -# ||tigerdroppings.com^*&adcode= (easylist.txt: 34687) -.tigerdroppings.com/.*&adcode= -# ||ticketnetwork.com/images/affiliates/ (easylist.txt: 34686) -.ticketnetwork.com/images/affiliates/ -# ||thunder106.com//wp-content/banners/ (easylist.txt: 34685) -# ||thisisanfield.com^*takeover (easylist.txt: 34684) -.thisisanfield.com/.*takeover -# ||thirdage.com^*_banner.php (easylist.txt: 34683) -.thirdage.com/.*_banner\.php -# ||thinkingwithportals.com^*-skyscraper.swf (easylist.txt: 34682) -.thinkingwithportals.com/.*-skyscraper\.swf -# ||thinkingwithportals.com/images/*-skyscraper. (easylist.txt: 34681) -.thinkingwithportals.com/images/.*-skyscraper\. -# ||thinkbroadband.com/uploads/banners/ (easylist.txt: 34680) -.thinkbroadband.com/uploads/banners/ -# ||theyeshivaworld.com/yw/ (easylist.txt: 34679) -.theyeshivaworld.com/yw/ -# ||thewindowsclub.com^*/banner_ (easylist.txt: 34678) -.thewindowsclub.com/.*/banner_ -# ||thewb.com/thewb/swf/tmz-adblock/ (easylist.txt: 34677) -.thewb.com/thewb/swf/tmz-adblock/ -# ||thevoicebw.com^*325x290.jpg (easylist.txt: 34676) -.thevoicebw.com/.*325x290\.jpg -# ||thevideo.me/js/popup.min.js (easylist.txt: 34675) -.thevideo.me/js/popup\.min\.js -# ||thevideo.me/js/jspc.js (easylist.txt: 34674) -.thevideo.me/js/jspc\.js -# ||thevideo.me/js/jsmpc.js (easylist.txt: 34673) -.thevideo.me/js/jsmpc\.js -# ||thevideo.me/creatives/ (easylist.txt: 34672) -.thevideo.me/creatives/ -# ||thevideo.me/cgi-bin/get_creatives.cgi? (easylist.txt: 34671) -.thevideo.me/cgi-bin/get_creatives\.cgi\? -# ||thetvdb.com/images/jriver_banner.png (easylist.txt: 34670) -.thetvdb.com/images/jriver_banner\.png -# ||thetvdb.com/images/frugal.gif (easylist.txt: 34669) -.thetvdb.com/images/frugal\.gif -# ||thetimes.co.uk/public/encounters/ (easylist.txt: 34668) -.thetimes.co.uk/public/encounters/ -# ||theticketmiami.com/Pics/listenlive/*-Right.jpg (easylist.txt: 34667) -.theticketmiami.com/Pics/listenlive/.*-Right\.jpg -# ||theticketmiami.com/Pics/listenlive/*-Left.jpg (easylist.txt: 34666) -.theticketmiami.com/Pics/listenlive/.*-Left\.jpg -# ||thesweetscience.com/images/banners/ (easylist.txt: 34665) -.thesweetscience.com/images/banners/ -# ||thesurvivalistblog.net^*-banner- (easylist.txt: 34664) -.thesurvivalistblog.net/.*-banner- -# ||thesundaily.my/sites/default/files/twinskyscrapers (easylist.txt: 34663) -.thesundaily.my/sites/default/files/twinskyscrapers -# ||thesuburban.com/universe/addsspace/ (easylist.txt: 34662) -.thesuburban.com/universe/addsspace/ -# ||thesuburban.com/universe/adds/ (easylist.txt: 34661) -.thesuburban.com/universe/adds/ -# ||thestkittsnevisobserver.com/images/banners/ (easylist.txt: 34660) -.thestkittsnevisobserver.com/images/banners/ -# ||thestandard.com.ph^*/banner/ (easylist.txt: 34659) -.thestandard.com.ph/.*/banner/ -# ||thestandard.com.hk/rotate_ (easylist.txt: 34658) -.thestandard.com.hk/rotate_ -# ||thestandard.com.hk/banners/ (easylist.txt: 34657) -.thestandard.com.hk/banners/ -# ||thessdreview.com^*/owc-new-gif1.gif (easylist.txt: 34656) -.thessdreview.com/.*/owc-new-gif1\.gif -# ||thessdreview.com^*/owc-full-banner.jpg (easylist.txt: 34655) -.thessdreview.com/.*/owc-full-banner\.jpg -# ||thessdreview.com^*/amazon-buy (easylist.txt: 34654) -.thessdreview.com/.*/amazon-buy -# ||thessdreview.com^*-bg.jpg (easylist.txt: 34653) -.thessdreview.com/.*-bg\.jpg -# ||thessdreview.com^*-bg-banner- (easylist.txt: 34652) -.thessdreview.com/.*-bg-banner- -# ||thessdreview.com/wp-content/uploads/*/930x64_ (easylist.txt: 34651) -.thessdreview.com/wp-content/uploads/.*/930x64_ -# ||thespiritsbusiness.com^*/Banner150 (easylist.txt: 34650) -.thespiritsbusiness.com/.*/Banner150 -# ||thesource.com/magicshave/ (easylist.txt: 34649) -.thesource.com/magicshave/ -# ||thesentinel.com^*/banners/ (easylist.txt: 34648) -.thesentinel.com/.*/banners/ -# ||therugbyforum.com/trf-images/sponsors/ (easylist.txt: 34647) -.therugbyforum.com/trf-images/sponsors/ -# ||theradiomagazine.co.uk/images/bionics.jpg (easylist.txt: 34646) -.theradiomagazine.co.uk/images/bionics\.jpg -# ||theradiomagazine.co.uk/banners/ (easylist.txt: 34645) -.theradiomagazine.co.uk/banners/ -# ||thepreparednessreview.com/wp-content/uploads/*_185x185.jpg (easylist.txt: 34644) -.thepreparednessreview.com/wp-content/uploads/.*_185x185\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*_175x175.jpg (easylist.txt: 34643) -.thepreparednessreview.com/wp-content/uploads/.*_175x175\.jpg -# ||thepreparednessreview.com/wp-content/uploads/*/250x125- (easylist.txt: 34642) -.thepreparednessreview.com/wp-content/uploads/.*/250x125- -# ||theportugalnews.com/uploads/banner/ (easylist.txt: 34641) -.theportugalnews.com/uploads/banner/ -# ||theplanetweekly.com/images/banners/ (easylist.txt: 34640) -.theplanetweekly.com/images/banners/ -# ||thephuketnews.com/photo/banner/ (easylist.txt: 34639) -.thephuketnews.com/photo/banner/ -# ||thepeninsulaqatar.com^*/banners/ (easylist.txt: 34638) -.thepeninsulaqatar.com/.*/banners/ -# ||thepeak.fm/images/banners/ (easylist.txt: 34637) -.thepeak.fm/images/banners/ -# ||thepaper24-7.com/SiteImages/Tile/ (easylist.txt: 34636) -.thepaper24-7.com/SiteImages/Tile/ -# ||thepaper24-7.com/SiteImages/Banner/ (easylist.txt: 34635) -.thepaper24-7.com/SiteImages/Banner/ -# ||theorganicprepper.ca/images/banners/ (easylist.txt: 34634) -.theorganicprepper.ca/images/banners/ -# ||theonion.com/ads/ (easylist.txt: 34633) -.theonion.com/ads/ -# ||theolympian.com/static/images/weathersponsor/ (easylist.txt: 34632) -.theolympian.com/static/images/weathersponsor/ -# ||theoldie.co.uk/Banners/ (easylist.txt: 34631) -.theoldie.co.uk/Banners/ -# ||thenonleaguefootballpaper.com^*/Lovell-Soccer.jpg (easylist.txt: 34630) -.thenonleaguefootballpaper.com/.*/Lovell-Soccer\.jpg -# ||thenonleaguefootballpaper.com^*/J4K-new-range-pictures.jpg (easylist.txt: 34629) -.thenonleaguefootballpaper.com/.*/J4K-new-range-pictures\.jpg -# ||thenonleaguefootballpaper.com^*/image-non-league.jpeg (easylist.txt: 34628) -.thenonleaguefootballpaper.com/.*/image-non-league\.jpeg -# ||thenonleaguefootballpaper.com^*/Budweiser.jpg (easylist.txt: 34627) -.thenonleaguefootballpaper.com/.*/Budweiser\.jpg -# ||thenonleaguefootballpaper.com^*/ADIDAS_11PRO_WHITEOUT.jpg (easylist.txt: 34626) -.thenonleaguefootballpaper.com/.*/ADIDAS_11PRO_WHITEOUT\.jpg -# ||thenonleaguefootballpaper.com^*/140x140_ (easylist.txt: 34625) -.thenonleaguefootballpaper.com/.*/140x140_ -# ||thenonleaguefootballpaper.com^*-140x300- (easylist.txt: 34624) -.thenonleaguefootballpaper.com/.*-140x300- -# ||thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ (easylist.txt: 34622) -.thenextweb.com/wp-content/plugins/tnw-siteskin/mobileys/ -# ||thenewjournalandguide.com/images/banners/ (easylist.txt: 34621) -.thenewjournalandguide.com/images/banners/ -# ||thenewage.co.za/Image/kingprice.gif (easylist.txt: 34620) -.thenewage.co.za/Image/kingprice\.gif -# ||thenationonlineng.net^*/banners/ (easylist.txt: 34619) -.thenationonlineng.net/.*/banners/ -# ||thenassauguardian.com/images/banners/ (easylist.txt: 34618) -.thenassauguardian.com/images/banners/ -# ||themittani.com/sites/*-skin (easylist.txt: 34617) -.themittani.com/sites/.*-skin -# ||themiscellany.org/images/banners/ (easylist.txt: 34616) -.themiscellany.org/images/banners/ -# ||themis.yahoo.com^ (easylist.txt: 34615) -.themis.yahoo.com -# ||themis-media.com/media/global/images/cskins/ (easylist.txt: 34614) -.themis-media.com/media/global/images/cskins/ -# ||theminiforum.co.uk/images/banners/ (easylist.txt: 34613) -.theminiforum.co.uk/images/banners/ -# ||themidweeksun.co.bw/images/banners/ (easylist.txt: 34612) -.themidweeksun.co.bw/images/banners/ -# ||themag.co.uk/assets/BV200x90TOPBANNER.png (easylist.txt: 34611) -.themag.co.uk/assets/BV200x90TOPBANNER\.png -# ||thelyricarchive.com/new/view/ (easylist.txt: 34610) -.thelyricarchive.com/new/view/ -# ||thelodownny.com/leslog/ads/ (easylist.txt: 34609) -.thelodownny.com/leslog/ads/ -# ||thelocal.com/scripts/fancybox/ (easylist.txt: 34608) -.thelocal.com/scripts/fancybox/ -# ||theliberianjournal.com/flash/banner (easylist.txt: 34607) -.theliberianjournal.com/flash/banner -# ||theleader.info/banner (easylist.txt: 34606) -.theleader.info/banner -# ||thelakewoodscoop.com^*banner (easylist.txt: 34605) -.thelakewoodscoop.com/.*banner -# ||thejournal.ie/media/hpto/ (easylist.txt: 34604) -.thejournal.ie/media/hpto/ -# ||thejointblog.com^*/dablab.gif (easylist.txt: 34603) -.thejointblog.com/.*/dablab\.gif -# ||thejointblog.com/wp-content/uploads/*-235x (easylist.txt: 34602) -.thejointblog.com/wp-content/uploads/.*-235x -# ||thejesperbay.com^ (easylist.txt: 34601) -.thejesperbay.com -# ||theispguide.com/topbanner.asp? (easylist.txt: 34600) -.theispguide.com/topbanner\.asp\? -# ||theispguide.com/premiumisp.html (easylist.txt: 34599) -.theispguide.com/premiumisp\.html -# ||theindependentbd.com^*/banner/ (easylist.txt: 34598) -.theindependentbd.com/.*/banner/ -# ||thehubsa.co.za^*/sponsor_ (easylist.txt: 34597) -.thehubsa.co.za/.*/sponsor_ -# ||thehindu.com/multimedia/*/sivananda_sponsorch_ (easylist.txt: 34596) -.thehindu.com/multimedia/.*/sivananda_sponsorch_ -# ||thehighstreetweb.com^*/banners/ (easylist.txt: 34595) -.thehighstreetweb.com/.*/banners/ -# ||thehealthcareblog.com/files/*/THCB-Validic-jpg-opt.jpg (easylist.txt: 34594) -.thehealthcareblog.com/files/.*/THCB-Validic-jpg-opt\.jpg -# ||thehealthcareblog.com/files/*/athena-300.jpg (easylist.txt: 34593) -.thehealthcareblog.com/files/.*/athena-300\.jpg -# ||thehealthcareblog.com/files/*/American-Resident-Project-Logo- (easylist.txt: 34592) -.thehealthcareblog.com/files/.*/American-Resident-Project-Logo- -# ||thefrontierpost.com/media/banner/ (easylist.txt: 34591) -.thefrontierpost.com/media/banner/ -# ||thefile.me^*.php?*zoneid (easylist.txt: 34590) -.thefile.me/.*\.php\?.*zoneid -# ||theenglishgarden.co.uk^*/bannerImage. (easylist.txt: 34589) -.theenglishgarden.co.uk/.*/bannerImage\. -# ||theedinburghreporter.co.uk/hmbanner/ (easylist.txt: 34588) -.theedinburghreporter.co.uk/hmbanner/ -# ||thedomainstat.com/filemanager/userfiles/banners/ (easylist.txt: 34587) -.thedomainstat.com/filemanager/userfiles/banners/ -# ||thedirectory.co.zw/banners/ (easylist.txt: 34586) -.thedirectory.co.zw/banners/ -# ||theday.com/assets/images/sponsorlogos/ (easylist.txt: 34585) -.theday.com/assets/images/sponsorlogos/ -# ||thedailystar.net^*/scbbd.gif (easylist.txt: 34584) -.thedailystar.net/.*/scbbd\.gif -# ||thedailystar.net^*/footer-sticky-add/ (easylist.txt: 34583) -.thedailystar.net/.*/footer-sticky-add/ -# ||thedailystar.net^*/aritel-logo.jpg (easylist.txt: 34582) -.thedailystar.net/.*/aritel-logo\.jpg -# ||thedailystar.net^*/Animation-200-X-30.gif (easylist.txt: 34581) -.thedailystar.net/.*/Animation-200-X-30\.gif -# ||thedailystar.net^*/400-x-120-pixel.jpg (easylist.txt: 34580) -.thedailystar.net/.*/400-x-120-pixel\.jpg -# ||thedailysheeple.com/images/banners/ (easylist.txt: 34579) -.thedailysheeple.com/images/banners/ -# ||thedailypaul.com/images/amzn- (easylist.txt: 34578) -.thedailypaul.com/images/amzn- -# ||thedailymeal.net^*/featured_partners/ (easylist.txt: 34577) -.thedailymeal.net/.*/featured_partners/ -# ||thedailymeal.com^*_sponsoredby.png (easylist.txt: 34576) -.thedailymeal.com/.*_sponsoredby\.png -# ||thedailymash.co.uk/templates/mashtastic/gutters/ (easylist.txt: 34575) -.thedailymash.co.uk/templates/mashtastic/gutters/ -# ||thedailyherald.com/images/banners/ (easylist.txt: 34574) -.thedailyherald.com/images/banners/ -# ||thecsuite.co.uk^*/banners/ (easylist.txt: 34573) -.thecsuite.co.uk/.*/banners/ -# ||thecorrsmisc.com/msb_banner.jpg (easylist.txt: 34572) -.thecorrsmisc.com/msb_banner\.jpg -# ||thecorrsmisc.com/brokenthread.jpg (easylist.txt: 34571) -.thecorrsmisc.com/brokenthread\.jpg -# ||thecorrsmisc.com/10feet_banner.gif (easylist.txt: 34570) -.thecorrsmisc.com/10feet_banner\.gif -# ||thecnj.com/images/hotel-banner.jpg (easylist.txt: 34569) -.thecnj.com/images/hotel-banner\.jpg -# ||thecitizen.co.tz^*/banners/ (easylist.txt: 34568) -.thecitizen.co.tz/.*/banners/ -# ||thechive.files.wordpress.com^*-wallpaper- (easylist.txt: 34567) -.thechive.files.wordpress.com/.*-wallpaper- -# ||thecharlottepost.com/cache/sql/fba/ (easylist.txt: 34566) -.thecharlottepost.com/cache/sql/fba/ -# ||thecenturion.co.za^*/banners/ (easylist.txt: 34565) -.thecenturion.co.za/.*/banners/ -# ||thecatholicuniverse.com^*-banner- (easylist.txt: 34564) -.thecatholicuniverse.com/.*-banner- -# ||thecatholicuniverse.com^*-advert- (easylist.txt: 34563) -.thecatholicuniverse.com/.*-advert- -# ||thecatholicuniverse.com^*-ad. (easylist.txt: 34562) -.thecatholicuniverse.com/.*-ad\. -# ||thebusinessdesk.com/assets/_files/banners/ (easylist.txt: 34561) -.thebusinessdesk.com/assets/_files/banners/ -# ||theburningplatform.com/wp-content/uploads/*_180x150.gif (easylist.txt: 34560) -.theburningplatform.com/wp-content/uploads/.*_180x150\.gif -# ||thebulls.co.za^*/sponsors/ (easylist.txt: 34559) -.thebulls.co.za/.*/sponsors/ -# ||thebull.com.au/admin/uploads/banners/ (easylist.txt: 34558) -.thebull.com.au/admin/uploads/banners/ -# ||theblaze.com^*_background_ (easylist.txt: 34557) -.theblaze.com/.*_background_ -# ||theblaze.com^*-interstitial- (easylist.txt: 34556) -.theblaze.com/.*-interstitial- -# ||theblaze.com^*-backgroundwide- (easylist.txt: 34555) -.theblaze.com/.*-backgroundwide- -# ||theblaze.com^*-background2- (easylist.txt: 34554) -.theblaze.com/.*-background2- -# ||theblaze.com^*-background- (easylist.txt: 34553) -.theblaze.com/.*-background- -# ||thebeat99.com/cmsadmin/banner/ (easylist.txt: 34552) -.thebeat99.com/cmsadmin/banner/ -# ||thebay.co.uk/banners/ (easylist.txt: 34551) -.thebay.co.uk/banners/ -# ||theattractionforums.com/images/rbsbanners/ (easylist.txt: 34550) -.theattractionforums.com/images/rbsbanners/ -# ||theasiantoday.com/image/banners/ (easylist.txt: 34549) -.theasiantoday.com/image/banners/ -# ||theartnewspaper.com/aads/ (easylist.txt: 34548) -.theartnewspaper.com/aads/ -# ||theaquarian.com^*/banners/ (easylist.txt: 34547) -.theaquarian.com/.*/banners/ -# ||theafricachannel.com^*/promos/ (easylist.txt: 34546) -.theafricachannel.com/.*/promos/ -# ||theactivetimes.net^*/featured_partners/ (easylist.txt: 34545) -.theactivetimes.net/.*/featured_partners/ -# ||the-numbers.com^*/allposters/ (easylist.txt: 34544) -.the-numbers.com/.*/allposters/ -# ||thaivisa.com/promotions/banners/ (easylist.txt: 34543) -.thaivisa.com/promotions/banners/ -# ||tfd.com^*/grammarly/ (easylist.txt: 34542) -.tfd.com/.*/grammarly/ -# ||textpattern.com/images/117.gif (easylist.txt: 34541) -.textpattern.com/images/117\.gif -# ||testseek.com/price_pricegrabber_ (easylist.txt: 34540) -.testseek.com/price_pricegrabber_ -# ||terafile.co/i/banners/ (easylist.txt: 34539) -.terafile.co/i/banners/ -# ||tentonhammer.com^*/takeovers/ (easylist.txt: 34538) -.tentonhammer.com/.*/takeovers/ -# ||tennisworldusa.org/banners/ (easylist.txt: 34537) -.tennisworldusa.org/banners/ -# ||tennischannel.com/tc-button-gif.gif (easylist.txt: 34536) -.tennischannel.com/tc-button-gif\.gif -# ||tennischannel.com/prud.jpg (easylist.txt: 34535) -.tennischannel.com/prud\.jpg -# ||tenmanga.com/files/js/site_skin.js (easylist.txt: 34534) -.tenmanga.com/files/js/site_skin\.js -# ||ten-tenths.com/sidebar.html (easylist.txt: 34532) -.ten-tenths.com/sidebar\.html -# ||templatesbox.com^*/banners/ (easylist.txt: 34531) -.templatesbox.com/.*/banners/ -# ||telegraphindia.com^*/hoabanner. (easylist.txt: 34530) -.telegraphindia.com/.*/hoabanner\. -# ||telegraphindia.com^*/banners/ (easylist.txt: 34529) -.telegraphindia.com/.*/banners/ -# ||telegraph.co.uk/sponsored/ (easylist.txt: 34528) -.telegraph.co.uk/sponsored/ -# ||telecomtiger.com^*_640x480_ (easylist.txt: 34526) -.telecomtiger.com/.*_640x480_ -# ||telecomtiger.com^*_250x250_ (easylist.txt: 34525) -.telecomtiger.com/.*_250x250_ -# ||tehrantimes.com/images/banners/ (easylist.txt: 34524) -.tehrantimes.com/images/banners/ -# ||teesupport.com/wp-content/themes/ts-blog/images/cp- (easylist.txt: 34523) -.teesupport.com/wp-content/themes/ts-blog/images/cp- -# ||teesoft.info/images/uniblue.png (easylist.txt: 34522) -.teesoft.info/images/uniblue\.png -# ||techtree.com^*/jquery.catfish.js (easylist.txt: 34521) -.techtree.com/.*/jquery\.catfish\.js -# ||techtarget.com^*/leaderboard.html (easylist.txt: 34520) -.techtarget.com/.*/leaderboard\.html -# ||techsupportforum.com^*/banners/ (easylist.txt: 34519) -.techsupportforum.com/.*/banners/ -# ||techradar.com^*/img/*_takeover_ (easylist.txt: 34518) -.techradar.com/.*/img/.*_takeover_ -# ||techpowerup.com/images/bnnrs/ (easylist.txt: 34517) -.techpowerup.com/images/bnnrs/ -# ||technomag.co.zw^*/TakeOverCampaign. (easylist.txt: 34516) -.technomag.co.zw/.*/TakeOverCampaign\. -# ||technewsworld.com/images/sda/ (easylist.txt: 34515) -.technewsworld.com/images/sda/ -# ||technewsdaily.com/crime-stats/local_crime_stats.php (easylist.txt: 34514) -.technewsdaily.com/crime-stats/local_crime_stats\.php -# ||techhive.com/ads/ (easylist.txt: 34513) -.techhive.com/ads/ -# ||techexams.net/banners/ (easylist.txt: 34512) -.techexams.net/banners/ -# ||techcentral.co.za^*/wallpaper- (easylist.txt: 34511) -.techcentral.co.za/.*/wallpaper- -# ||techcentral.co.za^*/background-manager/ (easylist.txt: 34510) -.techcentral.co.za/.*/background-manager/ -# ||techcentral.co.za^*-wallpaper- (easylist.txt: 34509) -.techcentral.co.za/.*-wallpaper- -# ||teamfourstar.com/img/918thefan.jpg (easylist.txt: 34508) -.teamfourstar.com/img/918thefan\.jpg -# ||tdfimg.com/go/*.html (easylist.txt: 34507) -.tdfimg.com/go/.*\.html -# ||tbib.org/kona/ (easylist.txt: 34505) -.tbib.org/kona/ -# ||taxsutra.com^*/banner/ (easylist.txt: 34504) -.taxsutra.com/.*/banner/ -# ||taxidrivermovie.com/style/sk-p.js (easylist.txt: 34503) -.taxidrivermovie.com/style/sk-p\.js -# ||tastro.org/x/ads*.php (easylist.txt: 34502) -.tastro.org/x/ads.*\.php -# ||targetedtopic.com^ (easylist.txt: 34501) -.targetedtopic.com -# ||targetedinfo.com^ (easylist.txt: 34500) -.targetedinfo.com -# ||tanzanite.infomine.com^ (easylist.txt: 34499) -.tanzanite.infomine.com -# ||tampermonkey.net/bner/ (easylist.txt: 34497) -.tampermonkey.net/bner/ -# ||talksport.co.uk^*/ts_takeover/ (easylist.txt: 34496) -.talksport.co.uk/.*/ts_takeover/ -# ||talkradioeurope.net/images/banners/ (easylist.txt: 34495) -.talkradioeurope.net/images/banners/ -# ||talkradioeurope.com/images/banners/ (easylist.txt: 34494) -.talkradioeurope.com/images/banners/ -# ||talkphotography.co.uk/images/externallogos/banners/ (easylist.txt: 34493) -.talkphotography.co.uk/images/externallogos/banners/ -# ||talkgold.com/bans/ (easylist.txt: 34492) -.talkgold.com/bans/ -# ||talkers.com/images/banners/ (easylist.txt: 34491) -.talkers.com/images/banners/ -# ||talkers.com/imagebase/ (easylist.txt: 34490) -.talkers.com/imagebase/ -# ||take40.com/images/takeover/ (easylist.txt: 34489) -.take40.com/images/takeover/ -# ||take40.com/css/takeover.css (easylist.txt: 34488) -.take40.com/css/takeover\.css -# ||taiwannews.com.tw/etn/images/banner_ (easylist.txt: 34487) -.taiwannews.com.tw/etn/images/banner_ -# ||taipeitimes.com/js/gad.js? (easylist.txt: 34486) -.taipeitimes.com/js/gad\.js\? -# ||tabloidmedia.co.za/images/signs2.swf (easylist.txt: 34485) -.tabloidmedia.co.za/images/signs2\.swf -# ||tabla.com.sg/SIA.jpg (easylist.txt: 34484) -.tabla.com.sg/SIA\.jpg -# ||sythe.org/clientscript/agold.png (easylist.txt: 34483) -.sythe.org/clientscript/agold\.png -# ||sythe.org/bnrs/ (easylist.txt: 34482) -.sythe.org/bnrs/ -# ||systemexplorer.net/sessg.php (easylist.txt: 34481) -.systemexplorer.net/sessg\.php -# ||sxc.hu/img/banner (easylist.txt: 34479) -.sxc.hu/img/banner -# ||swoknews.com/images/banners/ (easylist.txt: 34478) -.swoknews.com/images/banners/ -# ||swimnewslibrary.com^*_960x120.jpg (easylist.txt: 34477) -.swimnewslibrary.com/.*_960x120\.jpg -# ||swimnews.com^*/banner_ (easylist.txt: 34476) -.swimnews.com/.*/banner_ -# ||swiftco.net/banner/ (easylist.txt: 34475) -.swiftco.net/banner/ -# ||sweepsadvantage.com/336x230-2.php (easylist.txt: 34474) -.sweepsadvantage.com/336x230-2\.php -# ||swedishwire.com/images/banners/ (easylist.txt: 34473) -.swedishwire.com/images/banners/ -# ||swampbuggy.com/media/images/banners/ (easylist.txt: 34472) -.swampbuggy.com/media/images/banners/ -# ||swagmp3.com/cdn-cgi/pe/ (easylist.txt: 34471) -.swagmp3.com/cdn-cgi/pe/ -# ||surfthechannel.com/promo/ (easylist.txt: 34470) -.surfthechannel.com/promo/ -# ||superplatyna.com/automater.swf (easylist.txt: 34469) -.superplatyna.com/automater\.swf -# ||supermonitoring.com/images/banners/ (easylist.txt: 34468) -.supermonitoring.com/images/banners/ -# ||supermarket.co.za/images/advetising/ (easylist.txt: 34467) -.supermarket.co.za/images/advetising/ -# ||superbike-news.co.uk/absolutebm/banners/ (easylist.txt: 34466) -.superbike-news.co.uk/absolutebm/banners/ -# ||suntimes.com^*/banners/ (easylist.txt: 34465) -.suntimes.com/.*/banners/ -# ||sunshineradio.ie/images/banners/ (easylist.txt: 34464) -.sunshineradio.ie/images/banners/ -# ||sunriseradio.com/js/rbanners.js (easylist.txt: 34463) -.sunriseradio.com/js/rbanners\.js -# ||sun-fm.com/resources/creative/ (easylist.txt: 34462) -.sun-fm.com/resources/creative/ -# ||sulekha.com^*/sulekhabanner.aspx (easylist.txt: 34461) -.sulekha.com/.*/sulekhabanner\.aspx -# ||sulekha.com^*/bannerhelper.html (easylist.txt: 34460) -.sulekha.com/.*/bannerhelper\.html -# ||succeed.co.za^*/banner_ (easylist.txt: 34459) -.succeed.co.za/.*/banner_ -# ||submarinecablemap.com^*-sponsored.png (easylist.txt: 34457) -.submarinecablemap.com/.*-sponsored\.png -# ||stv.tv/img/player/stvplayer-sponsorstrip- (easylist.txt: 34456) -.stv.tv/img/player/stvplayer-sponsorstrip- -# ||stuff.tv/client/skinning/ (easylist.txt: 34455) -.stuff.tv/client/skinning/ -# ||stuff.co.nz/stuff/widgets/lifedirect/ (easylist.txt: 34453) -.stuff.co.nz/stuff/widgets/lifedirect/ -# ||stuff.co.nz/stuff/tom/mags-widget/ (easylist.txt: 34452) -.stuff.co.nz/stuff/tom/mags-widget/ -# ||stuff.co.nz/stuff/misc/flying-flowers/ (easylist.txt: 34451) -.stuff.co.nz/stuff/misc/flying-flowers/ -# ||stuff.co.nz/stuff/*banner (easylist.txt: 34450) -.stuff.co.nz/stuff/.*banner -# ||stuff.co.nz/interactives/stuff-bayleys/ (easylist.txt: 34449) -.stuff.co.nz/interactives/stuff-bayleys/ -# ||stuff.co.nz/files/NZBoatM4Gwidget.html (easylist.txt: 34448) -.stuff.co.nz/files/NZBoatM4Gwidget\.html -# ||stuff.co.nz/clientdev/production/iframes/ (easylist.txt: 34447) -.stuff.co.nz/clientdev/production/iframes/ -# ||stuff.co.nz/1361239022/107/8323107.jpg (easylist.txt: 34446) -.stuff.co.nz/1361239022/107/8323107\.jpg -# ||stuff.co.nz/1319769787/395/5871395.jpg (easylist.txt: 34445) -.stuff.co.nz/1319769787/395/5871395\.jpg -# ||student-jobs.co.uk/banner. (easylist.txt: 34444) -.student-jobs.co.uk/banner\. -# ||streams.tv/js/slidingbanner.js (easylist.txt: 34443) -.streams.tv/js/slidingbanner\.js -# ||streams.tv/js/pu.js (easylist.txt: 34442) -.streams.tv/js/pu\.js -# ||streams.tv/js/bn5.js (easylist.txt: 34441) -.streams.tv/js/bn5\.js -# ||streamguys.com^*/amazon.png (easylist.txt: 34440) -.streamguys.com/.*/amazon\.png -# ||streamcloud.eu/deliver.php (easylist.txt: 34439) -.streamcloud.eu/deliver\.php -# ||stream2watch.me/yield.html (easylist.txt: 34438) -.stream2watch.me/yield\.html -# ||stream2watch.me/Los_Br.png (easylist.txt: 34437) -.stream2watch.me/Los_Br\.png -# ||stream2watch.me/images/hd1.png (easylist.txt: 34436) -.stream2watch.me/images/hd1\.png -# ||stream2watch.me/ed (easylist.txt: 34435) -.stream2watch.me/ed -# ||stream2watch.me/eadt.php (easylist.txt: 34434) -.stream2watch.me/eadt\.php -# ||stream2watch.me/eadb.php (easylist.txt: 34433) -.stream2watch.me/eadb\.php -# ||stream2watch.me/chat1.html (easylist.txt: 34432) -.stream2watch.me/chat1\.html -# ||stream2watch.me/ad10.html (easylist.txt: 34431) -.stream2watch.me/ad10\.html -# ||stream2watch.me/ad.html (easylist.txt: 34430) -.stream2watch.me/ad\.html -# ||stream2watch.me/900yahoo.html (easylist.txt: 34428) -.stream2watch.me/900yahoo\.html -# ||stream2watch.me/900rev.html (easylist.txt: 34427) -.stream2watch.me/900rev\.html -# ||stream2watch.me/600pick.png (easylist.txt: 34426) -.stream2watch.me/600pick\.png -# ||stream2watch.co/images/hd1.png (easylist.txt: 34425) -.stream2watch.co/images/hd1\.png -# ||stream2watch.co/frames/ (easylist.txt: 34424) -.stream2watch.co/frames/ -# ||stream.heavenmedia.net^ (easylist.txt: 34423) -.stream.heavenmedia.net -# ||strategypage.com^*_banner (easylist.txt: 34422) -.strategypage.com/.*_banner -# ||storewidget.pcauthority.com.au^ (easylist.txt: 34421) -.storewidget.pcauthority.com.au -# ||stopstream.com/ads/ (easylist.txt: 34420) -.stopstream.com/ads/ -# ||stopforumspam.com/img/snelserver.swf (easylist.txt: 34419) -.stopforumspam.com/img/snelserver\.swf -# ||stockhouse.com^*-300x75.gif (easylist.txt: 34418) -.stockhouse.com/.*-300x75\.gif -# ||stlyrics.com^*_st.js (easylist.txt: 34417) -.stlyrics.com/.*_st\.js -# ||stlyrics.com^*_az.js (easylist.txt: 34416) -.stlyrics.com/.*_az\.js -# ||stltoday.com^*_sponsor.gif (easylist.txt: 34415) -.stltoday.com/.*_sponsor\.gif -# ||stjohntradewindsnews.com/images/banners/ (easylist.txt: 34414) -.stjohntradewindsnews.com/images/banners/ -# ||sticker.yadro.ru/ad/ (easylist.txt: 34413) -.sticker.yadro.ru/ad/ -# ||steroid.com/dsoct09.swf (easylist.txt: 34412) -.steroid.com/dsoct09\.swf -# ||steroid.com/banner/ (easylist.txt: 34411) -.steroid.com/banner/ -# ||sternfannetwork.com/forum/images/banners/ (easylist.txt: 34410) -.sternfannetwork.com/forum/images/banners/ -# ||steambuy.com/steambuy.gif (easylist.txt: 34409) -.steambuy.com/steambuy\.gif -# ||steamanalyst.com/a/www/ (easylist.txt: 34408) -.steamanalyst.com/a/www/ -# ||staticworld.net/images/*_pcwskin_ (easylist.txt: 34407) -.staticworld.net/images/.*_pcwskin_ -# ||staticneo.com/neoassets/iframes/leaderboard_bottom. (easylist.txt: 34406) -.staticneo.com/neoassets/iframes/leaderboard_bottom\. -# ||static.nfl.com^*-background- (easylist.txt: 34404) -.static.nfl.com/.*-background- -# ||static.hltv.org//images/gofastbg.png (easylist.txt: 34403) -# ||static.hd-trailers.net/js/javascript_*.js| (easylist.txt: 34402) -.static.hd-trailers.net/js/javascript_.*\.js$ -# ||static-economist.com^*/timekeeper-by-rolex-medium.png (easylist.txt: 34401) -.static-economist.com/.*/timekeeper-by-rolex-medium\.png -# ||startxchange.com/bnr.php (easylist.txt: 34400) -.startxchange.com/bnr\.php -# ||star883.org^*/sponsors. (easylist.txt: 34399) -.star883.org/.*/sponsors\. -# ||standardmedia.co.ke/flash/ (easylist.txt: 34398) -.standardmedia.co.ke/flash/ -# ||standard.net/sites/default/files/images/wallpapers/ (easylist.txt: 34397) -.standard.net/sites/default/files/images/wallpapers/ -# ||stagnitomedia.com/view-banner- (easylist.txt: 34396) -.stagnitomedia.com/view-banner- -# ||stad.com/googlefoot2.php? (easylist.txt: 34395) -.stad.com/googlefoot2\.php\? -# ||st701.com/stomp/banners/ (easylist.txt: 34394) -.st701.com/stomp/banners/ -# ||ssl-images-amazon.com/images/*/browser-scripts/da- (easylist.txt: 34393) -.ssl-images-amazon.com/images/.*/browser-scripts/da- -# ||srv.thespacereporter.com^ (easylist.txt: 34392) -.srv.thespacereporter.com -# ||squadedit.com/img/peanuts/ (easylist.txt: 34391) -.squadedit.com/img/peanuts/ -# ||spycss.com/images/hostgator.gif (easylist.txt: 34389) -.spycss.com/images/hostgator\.gif -# ||spreaker.net/spots/ (easylist.txt: 34388) -.spreaker.net/spots/ -# ||spotflux.com/service/partner.php (easylist.txt: 34387) -.spotflux.com/service/partner\.php -# ||sportcategory.org/pu/ (easylist.txt: 34386) -.sportcategory.org/pu/ -# ||sportcategory.com/ads/ (easylist.txt: 34385) -.sportcategory.com/ads/ -# ||sporcle.com/adn/yak.php? (easylist.txt: 34384) -.sporcle.com/adn/yak\.php\? -# ||sponsors.webosroundup.com^ (easylist.txt: 34383) -.sponsors.webosroundup.com -# ||sponsors.s2ki.com^ (easylist.txt: 34382) -.sponsors.s2ki.com -# ||spicegrenada.com/images/banners/ (easylist.txt: 34381) -.spicegrenada.com/images/banners/ -# ||speroforum.com/images/sponsor_ (easylist.txt: 34380) -.speroforum.com/images/sponsor_ -# ||speedvideo.net/img/playerFk.gif (easylist.txt: 34379) -.speedvideo.net/img/playerFk\.gif -# ||speedvid.net/ad.htm (easylist.txt: 34378) -.speedvid.net/ad\.htm -# ||speedtv.com^*/tissot-logo.png (easylist.txt: 34377) -.speedtv.com/.*/tissot-logo\.png -# ||speedtv.com/js/interstitial.js (easylist.txt: 34376) -.speedtv.com/js/interstitial\.js -# ||speedtv.com.edgesuite.net/img/monthly/takeovers/ (easylist.txt: 34375) -.speedtv.com.edgesuite.net/img/monthly/takeovers/ -# ||spartoo.eu/footer_tag_iframe_ (easylist.txt: 34371) -.spartoo.eu/footer_tag_iframe_ -# ||space.com/promo/ (easylist.txt: 34369) -.space.com/promo/ -# ||sowetanlive.co.za/banners/ (easylist.txt: 34368) -.sowetanlive.co.za/banners/ -# ||southafricab2b.co.za/banners/ (easylist.txt: 34367) -.southafricab2b.co.za/banners/ -# ||sourceforge.net/images/ban/ (easylist.txt: 34366) -.sourceforge.net/images/ban/ -# ||sourcefed.com/wp-content/uploads/*/netflix4.jpg (easylist.txt: 34365) -.sourcefed.com/wp-content/uploads/.*/netflix4\.jpg -# ||soundtracklyrics.net^*_az.js (easylist.txt: 34364) -.soundtracklyrics.net/.*_az\.js -# ||soundspheremag.com/images/banners/ (easylist.txt: 34363) -.soundspheremag.com/images/banners/ -# ||soundcloud.com/promoted/ (easylist.txt: 34362) -.soundcloud.com/promoted/ -# ||soundcloud.com/audio-ad? (easylist.txt: 34361) -.soundcloud.com/audio-ad\? -# ||sorcerers.net/images/aff/ (easylist.txt: 34360) -.sorcerers.net/images/aff/ -# ||sootoday.com/uploads/banners/ (easylist.txt: 34359) -.sootoday.com/uploads/banners/ -# ||songspk.name/textlinks/ (easylist.txt: 34358) -.songspk.name/textlinks/ -# ||songspk.name/imagepk.gif (easylist.txt: 34357) -.songspk.name/imagepk\.gif -# ||songspk.link/textlinks/ (easylist.txt: 34355) -.songspk.link/textlinks/ -# ||songs.pk/textlinks/ (easylist.txt: 34354) -.songs.pk/textlinks/ -# ||someecards.com^*/images/skin/ (easylist.txt: 34353) -.someecards.com/.*/images/skin/ -# ||solvater.com/images/hd.jpg (easylist.txt: 34352) -.solvater.com/images/hd\.jpg -# ||solomonstarnews.com/images/banners/ (easylist.txt: 34351) -.solomonstarnews.com/images/banners/ -# ||soldierx.com/system/files/images/sx-mini-1.jpg (easylist.txt: 34350) -.soldierx.com/system/files/images/sx-mini-1\.jpg -# ||softpedia.com/*_square. (easylist.txt: 34349) -.softpedia.com/.*_square\. -# ||softpedia.com/*_rect. (easylist.txt: 34348) -.softpedia.com/.*_rect\. -# ||softpedia.com/*_longrect. (easylist.txt: 34347) -.softpedia.com/.*_longrect\. -# ||softpedia-static.com/images/afg/ (easylist.txt: 34345) -.softpedia-static.com/images/afg/ -# ||softpedia-static.com/images/aff/ (easylist.txt: 34344) -.softpedia-static.com/images/aff/ -# ||softpedia-static.com/images/*.png?v (easylist.txt: 34343) -.softpedia-static.com/images/.*\.png\?v -# ||softpedia-static.com/images/*.jpg?v (easylist.txt: 34342) -.softpedia-static.com/images/.*\.jpg\?v -# ||softonic.com/specials_leaderboard/ (easylist.txt: 34341) -.softonic.com/specials_leaderboard/ -# ||softcab.com/google.php? (easylist.txt: 34340) -.softcab.com/google\.php\? -# ||socsa.org.za/images/banners/ (easylist.txt: 34339) -.socsa.org.za/images/banners/ -# ||sockshare.com^*_728.php (easylist.txt: 34338) -.sockshare.com/.*_728\.php -# ||sockshare.com/rev/ (easylist.txt: 34336) -.sockshare.com/rev/ -# ||sockshare.com/moo.php (easylist.txt: 34335) -.sockshare.com/moo\.php -# ||socialstreamingplayer.crystalmedianetworks.com//async/banner/ (easylist.txt: 34333) -# ||soccerway.com/img/betting/ (easylist.txt: 34332) -.soccerway.com/img/betting/ -# ||soccerway.com/buttons/120x90_ (easylist.txt: 34331) -.soccerway.com/buttons/120x90_ -# ||soccervista.com/sporting.gif (easylist.txt: 34330) -.soccervista.com/sporting\.gif -# ||soccervista.com/bonus.html (easylist.txt: 34329) -.soccervista.com/bonus\.html -# ||soccervista.com/bahforgif.gif (easylist.txt: 34328) -.soccervista.com/bahforgif\.gif -# ||soccerlens.com/files1/ (easylist.txt: 34327) -.soccerlens.com/files1/ -# ||snopes.com^*/tribalbox.asp (easylist.txt: 34326) -.snopes.com/.*/tribalbox\.asp -# ||snopes.com^*/casalesky.asp (easylist.txt: 34325) -.snopes.com/.*/casalesky\.asp -# ||snopes.com^*/casalebox.asp (easylist.txt: 34324) -.snopes.com/.*/casalebox\.asp -# ||snopes.com^*/casalebanner.asp (easylist.txt: 34323) -.snopes.com/.*/casalebanner\.asp -# ||snimg.com/image/sponsors/ (easylist.txt: 34321) -.snimg.com/image/sponsors/ -# ||smotrisport.com/ads/ (easylist.txt: 34319) -.smotrisport.com/ads/ -# ||smoothjazznetwork.com/images/buyicon.jpg (easylist.txt: 34318) -.smoothjazznetwork.com/images/buyicon\.jpg -# ||smn-news.com/images/flash/ (easylist.txt: 34317) -.smn-news.com/images/flash/ -# ||smn-news.com/images/banners/ (easylist.txt: 34316) -.smn-news.com/images/banners/ -# ||smile904.fm/images/banners/ (easylist.txt: 34315) -.smile904.fm/images/banners/ -# ||smh.com.au/images/promo/ (easylist.txt: 34314) -.smh.com.au/images/promo/ -# ||smh.com.au/compareandsave/ (easylist.txt: 34313) -.smh.com.au/compareandsave/ -# ||smashingapps.com/banner/ (easylist.txt: 34312) -.smashingapps.com/banner/ -# ||smartname.com/scripts/google_afd_v2.js (easylist.txt: 34311) -.smartname.com/scripts/google_afd_v2\.js -# ||smartmoney.net^*-sponsor- (easylist.txt: 34310) -.smartmoney.net/.*-sponsor- -# ||smartearningsecrets.com^*/FameThemes.png (easylist.txt: 34309) -.smartearningsecrets.com/.*/FameThemes\.png -# ||smartcompany.com.au/images/stories/sponsored-posts/ (easylist.txt: 34308) -.smartcompany.com.au/images/stories/sponsored-posts/ -# ||slyck.com/pics/*304x83_ (easylist.txt: 34307) -.slyck.com/pics/.*304x83_ -# ||slickvid.com/js/fun2.js (easylist.txt: 34306) -.slickvid.com/js/fun2\.js -# ||slickvid.com/js/fun.js (easylist.txt: 34305) -.slickvid.com/js/fun\.js -# ||slayradio.org/images/c64audio.com.gif (easylist.txt: 34304) -.slayradio.org/images/c64audio\.com\.gif -# ||slashgear.com/static/banners/ (easylist.txt: 34303) -.slashgear.com/static/banners/ -# ||slader.com/amazon-modal/ (easylist.txt: 34302) -.slader.com/amazon-modal/ -# ||slacker.com^*/getspot/?spotid= (easylist.txt: 34301) -.slacker.com/.*/getspot/\?spotid= -# ||slacker.com^*/ads.js (easylist.txt: 34300) -.slacker.com/.*/ads\.js -# ||slacker.com^*/adnetworks.swf (easylist.txt: 34299) -.slacker.com/.*/adnetworks\.swf -# ||skyvalleychronicle.com/999/images/ban (easylist.txt: 34297) -.skyvalleychronicle.com/999/images/ban -# ||skysports.com/images/skybet.png (easylist.txt: 34296) -.skysports.com/images/skybet\.png -# ||skynews.com.au/elements/img/sponsor/ (easylist.txt: 34295) -.skynews.com.au/elements/img/sponsor/ -# ||skilouise.com/images/sponsors/ (easylist.txt: 34294) -.skilouise.com/images/sponsors/ -# ||sk-gaming.com/www/skdelivery/ (easylist.txt: 34293) -.sk-gaming.com/www/skdelivery/ -# ||sk-gaming.com/image/takeover_ (easylist.txt: 34292) -.sk-gaming.com/image/takeover_ -# ||sk-gaming.com/image/pts/ (easylist.txt: 34291) -.sk-gaming.com/image/pts/ -# ||sk-gaming.com/image/acersocialw.gif (easylist.txt: 34290) -.sk-gaming.com/image/acersocialw\.gif -# ||siteslike.com/js/fpa.js (easylist.txt: 34289) -.siteslike.com/js/fpa\.js -# ||siteslike.com/images/celeb (easylist.txt: 34288) -.siteslike.com/images/celeb -# ||sitesfrog.com/images/banner/ (easylist.txt: 34287) -.sitesfrog.com/images/banner/ -# ||sitedata.info/doctor/ (easylist.txt: 34286) -.sitedata.info/doctor/ -# ||sisters-magazine.com^*/Banners/ (easylist.txt: 34285) -.sisters-magazine.com/.*/Banners/ -# ||silverdoctors.com^*/Silver-Shield-2015.jpg (easylist.txt: 34284) -.silverdoctors.com/.*/Silver-Shield-2015\.jpg -# ||siliconrepublic.com/fs/img/partners/ (easylist.txt: 34283) -.siliconrepublic.com/fs/img/partners/ -# ||sify.com^*/gads_ (easylist.txt: 34281) -.sify.com/.*/gads_ -# ||sify.com/images/games/gadvt/ (easylist.txt: 34280) -.sify.com/images/games/gadvt/ -# ||sickipedia.org/static/images/banners/ (easylist.txt: 34279) -.sickipedia.org/static/images/banners/ -# ||sicilianelmondo.com/banner/ (easylist.txt: 34278) -.sicilianelmondo.com/banner/ -# ||siberiantimes.com/upload/banners/ (easylist.txt: 34277) -.siberiantimes.com/upload/banners/ -# ||shtfplan.com/images/banners/ (easylist.txt: 34276) -.shtfplan.com/images/banners/ -# ||shroomery.org/images/www.shroomery.org.please.png (easylist.txt: 34275) -.shroomery.org/images/www\.shroomery\.org\.please\.png -# ||shroomery.org/images/shroomery.please.png (easylist.txt: 34274) -.shroomery.org/images/shroomery\.please\.png -# ||shroomery.org/bnr/ (easylist.txt: 34273) -.shroomery.org/bnr/ -# ||shroomery.org/bimg/ (easylist.txt: 34272) -.shroomery.org/bimg/ -# ||showstreet.com/banner. (easylist.txt: 34271) -.showstreet.com/banner\. -# ||showsport-tv.com/images/xtreamfile.jpg (easylist.txt: 34270) -.showsport-tv.com/images/xtreamfile\.jpg -# ||showbusinessweekly.com/imgs/hed/ (easylist.txt: 34269) -.showbusinessweekly.com/imgs/hed/ -# ||show-links.tv/layer.php (easylist.txt: 34268) -.show-links.tv/layer\.php -# ||shoutmeloud.com^*/hostgator- (easylist.txt: 34267) -.shoutmeloud.com/.*/hostgator- -# ||shortlist.com^*-takeover. (easylist.txt: 34266) -.shortlist.com/.*-takeover\. -# ||shortlist.com/resource/cache/*skin (easylist.txt: 34265) -.shortlist.com/resource/cache/.*skin -# ||shortcuts.search.yahoo.com^*&callback=yahoo.shortcuts.utils.setdittoadcontents& (easylist.txt: 34264) -.shortcuts.search.yahoo.com/.*&callback=yahoo\.shortcuts\.utils\.setdittoadcontents& -# ||shopwiki.com/banner_iframe/ (easylist.txt: 34263) -.shopwiki.com/banner_iframe/ -# ||shops.tgdaily.com^*&widget= (easylist.txt: 34262) -.shops.tgdaily.com/.*&widget= -# ||shoppingpartners2.futurenet.com^ (easylist.txt: 34261) -.shoppingpartners2.futurenet.com -# ||shopping.stylelist.com/widget? (easylist.txt: 34260) -.shopping.stylelist.com/widget\? -# ||shop.sportsmole.co.uk/pages/deeplink/ (easylist.txt: 34259) -.shop.sportsmole.co.uk/pages/deeplink/ -# ||shop.com/cc.class/dfp? (easylist.txt: 34258) -.shop.com/cc\.class/dfp\? -# ||shodanhq.com/images/s/acehackware-obscured.jpg (easylist.txt: 34257) -.shodanhq.com/images/s/acehackware-obscured\.jpg -# ||sherdog.com/index/load-banner? (easylist.txt: 34256) -.sherdog.com/index/load-banner\? -# ||shazam.com^*/stores/ (easylist.txt: 34255) -.shazam.com/.*/stores/ -# ||sharetera.com/promo.php? (easylist.txt: 34253) -.sharetera.com/promo\.php\? -# ||sharetera.com/images/icon_download.png (easylist.txt: 34252) -.sharetera.com/images/icon_download\.png -# ||sharesix.com/a/images/watch-bnr.gif (easylist.txt: 34251) -.sharesix.com/a/images/watch-bnr\.gif -# ||sharephile.com/js/pw.js (easylist.txt: 34250) -.sharephile.com/js/pw\.js -# ||sharebeast.com/topbar.js (easylist.txt: 34249) -.sharebeast.com/topbar\.js -# ||share-links.biz^*/hs.gif (easylist.txt: 34248) -.share-links.biz/.*/hs\.gif -# ||share-links.biz^*/hisp.gif (easylist.txt: 34247) -.share-links.biz/.*/hisp\.gif -# ||share-links.biz/get/cmm/ (easylist.txt: 34246) -.share-links.biz/get/cmm/ -# ||shanghaiexpat.com^*/wallpaper_ (easylist.txt: 34245) -.shanghaiexpat.com/.*/wallpaper_ -# ||shanghaidaily.com/include/bettertraffic.asp (easylist.txt: 34244) -.shanghaidaily.com/include/bettertraffic\.asp -# ||shadowpool.info/images/banner- (easylist.txt: 34243) -.shadowpool.info/images/banner- -# ||sfltimes.com/images/banners/ (easylist.txt: 34241) -.sfltimes.com/images/banners/ -# ||sfbaytimes.com/img-cont/banners (easylist.txt: 34240) -.sfbaytimes.com/img-cont/banners -# ||sexmummy.com/avnadsbanner. (easylist.txt: 34239) -.sexmummy.com/avnadsbanner\. -# ||sermonaudio.com/images/sponsors/ (easylist.txt: 34238) -.sermonaudio.com/images/sponsors/ -# ||serialzz.us/ad.js (easylist.txt: 34237) -.serialzz.us/ad\.js -# ||serials.ws^*/logo.gif (easylist.txt: 34236) -.serials.ws/.*/logo\.gif -# ||serial.sw.cracks.me.uk/img/logo.gif (easylist.txt: 34235) -.serial.sw.cracks.me.uk/img/logo\.gif -# ||sensongs.com/nfls/ (easylist.txt: 34234) -.sensongs.com/nfls/ -# ||sendspace.com^*?zone= (easylist.txt: 34233) -.sendspace.com/.*\?zone= -# ||sendspace.com/images/shutter.png (easylist.txt: 34232) -.sendspace.com/images/shutter\.png -# ||sendspace.com/defaults/framer.html?z= (easylist.txt: 34231) -.sendspace.com/defaults/framer\.html\?z= -# ||segmentnext.com/javascripts/interstitial.client.js (easylist.txt: 34230) -.segmentnext.com/javascripts/interstitial\.client\.js -# ||seeingwithsound.com/noad.gif (easylist.txt: 34229) -.seeingwithsound.com/noad\.gif -# ||seedboxes.cc/images/seedad.jpg (easylist.txt: 34228) -.seedboxes.cc/images/seedad\.jpg -# ||sedoparking.com/registrar/dopark.js (easylist.txt: 34227) -.sedoparking.com/registrar/dopark\.js -# ||sedoparking.com/jspartner/ (easylist.txt: 34226) -.sedoparking.com/jspartner/ -# ||sedoparking.com/images/js_preloader.gif (easylist.txt: 34225) -.sedoparking.com/images/js_preloader\.gif -# ||securitywonks.net/promotions/ (easylist.txt: 34223) -.securitywonks.net/promotions/ -# ||securitymattersmag.com/scripts/popup.js (easylist.txt: 34222) -.securitymattersmag.com/scripts/popup\.js -# ||secureupload.eu/js/poad.js (easylist.txt: 34221) -.secureupload.eu/js/poad\.js -# ||secureupload.eu/gfx/freedl.png (easylist.txt: 34220) -.secureupload.eu/gfx/freedl\.png -# ||secureupload.eu/gfx/dlbtn.png (easylist.txt: 34219) -.secureupload.eu/gfx/dlbtn\.png -# ||sebar.thand.info^ (easylist.txt: 34216) -.sebar.thand.info -# ||seatguru.com/deals? (easylist.txt: 34215) -.seatguru.com/deals\? -# ||searchtempest.com/clhimages/aocbanner.jpg (easylist.txt: 34214) -.searchtempest.com/clhimages/aocbanner\.jpg -# ||searchignited.com^ (easylist.txt: 34213) -.searchignited.com -# ||searchenginejournal.com^*/sponsored- (easylist.txt: 34212) -.searchenginejournal.com/.*/sponsored- -# ||searchenginejournal.com^*/sej-bg-takeover/ (easylist.txt: 34211) -.searchenginejournal.com/.*/sej-bg-takeover/ -# ||searchenginejournal.com^*-takeover- (easylist.txt: 34210) -.searchenginejournal.com/.*-takeover- -# ||search.triadcars.news-record.com/autos/widgets/featuredautos.php (easylist.txt: 34209) -.search.triadcars.news-record.com/autos/widgets/featuredautos\.php -# ||search.triadcareers.news-record.com/jobs/search/results?*&isfeatured=y& (easylist.txt: 34208) -.search.triadcareers.news-record.com/jobs/search/results\?.*&isfeatured=y& -# ||search.ch/htmlbanner.html (easylist.txt: 34207) -.search.ch/htmlbanner\.html -# ||search.ch/acs/ (easylist.txt: 34206) -.search.ch/acs/ -# ||search-torrent.com/images/videox/ (easylist.txt: 34205) -.search-torrent.com/images/videox/ -# ||sdancelive.com/images/banners/ (easylist.txt: 34204) -.sdancelive.com/images/banners/ -# ||scriptmafia.org/banner.gif (easylist.txt: 34203) -.scriptmafia.org/banner\.gif -# ||scriptcopy.com/tpl/phplb/search.jpg (easylist.txt: 34202) -.scriptcopy.com/tpl/phplb/search\.jpg -# ||scribol.com/broadspring.js (easylist.txt: 34201) -.scribol.com/broadspring\.js -# ||screenlist.ru/porevo.js (easylist.txt: 34200) -.screenlist.ru/porevo\.js -# ||screenlist.ru/dodopo.js (easylist.txt: 34199) -.screenlist.ru/dodopo\.js -# ||screencrave.com/show/ (easylist.txt: 34198) -.screencrave.com/show/ -# ||screenafrica.com/jquery.jcarousel.min.js (easylist.txt: 34197) -.screenafrica.com/jquery\.jcarousel\.min\.js -# ||screen4u.net/templates/banner.html (easylist.txt: 34196) -.screen4u.net/templates/banner\.html -# ||scoot.co.uk/delivery.php (easylist.txt: 34195) -.scoot.co.uk/delivery\.php -# ||scmagazine.com.au/Utils/SkinCSS.ashx?skinID= (easylist.txt: 34193) -.scmagazine.com.au/Utils/SkinCSS\.ashx\?skinID= -# ||scientopia.org/public_html/clr_lympholyte_banner.gif (easylist.txt: 34192) -.scientopia.org/public_html/clr_lympholyte_banner\.gif -# ||sceper.eu/wp-content/banners.min.js (easylist.txt: 34190) -.sceper.eu/wp-content/banners\.min\.js -# ||scenicreflections.com/dhtmlpopup/ (easylist.txt: 34189) -.scenicreflections.com/dhtmlpopup/ -# ||sbnation.com/campaigns_images/ (easylist.txt: 34188) -.sbnation.com/campaigns_images/ -# ||saysuncle.com^*ad.jpg (easylist.txt: 34187) -.saysuncle.com/.*ad\.jpg -# ||sayellow.com/Clients/Banners/ (easylist.txt: 34186) -.sayellow.com/Clients/Banners/ -# ||sawlive.tv/ad (easylist.txt: 34185) -.sawlive.tv/ad -# ||saveondish.com/banner3.jpg (easylist.txt: 34184) -.saveondish.com/banner3\.jpg -# ||saveondish.com/banner2.jpg (easylist.txt: 34183) -.saveondish.com/banner2\.jpg -# ||savefrom.net/img/a1d/ (easylist.txt: 34182) -.savefrom.net/img/a1d/ -# ||satopsites.com^*/banners/ (easylist.txt: 34181) -.satopsites.com/.*/banners/ -# ||satnews.com/images/MSMPromoSubSky.jpg (easylist.txt: 34180) -.satnews.com/images/MSMPromoSubSky\.jpg -# ||satnews.com/images/MITEQ_sky.jpg (easylist.txt: 34179) -.satnews.com/images/MITEQ_sky\.jpg -# ||satellites.co.uk/images/sponsors/ (easylist.txt: 34178) -.satellites.co.uk/images/sponsors/ -# ||satelliteguys.us/pulsepoint_ (easylist.txt: 34177) -.satelliteguys.us/pulsepoint_ -# ||satelliteguys.us/burst_ (easylist.txt: 34176) -.satelliteguys.us/burst_ -# ||sat24.com/bannerdetails.aspx? (easylist.txt: 34175) -.sat24.com/bannerdetails\.aspx\? -# ||sarugbymag.co.za^*-wallpaper2. (easylist.txt: 34174) -.sarugbymag.co.za/.*-wallpaper2\. -# ||sarasotatalkradio.com^*-200x200.jpg (easylist.txt: 34173) -.sarasotatalkradio.com/.*-200x200\.jpg -# ||sapeople.com/wp-content/uploads/wp-banners/ (easylist.txt: 34172) -.sapeople.com/wp-content/uploads/wp-banners/ -# ||samsung.com/ph/nextisnow/files/javascript.js (easylist.txt: 34171) -.samsung.com/ph/nextisnow/files/javascript\.js -# ||samoatimes.co.nz^*/banner468x60/ (easylist.txt: 34170) -.samoatimes.co.nz/.*/banner468x60/ -# ||samoaobserver.ws^*/banner/ (easylist.txt: 34169) -.samoaobserver.ws/.*/banner/ -# ||sameip.org/images/froghost.gif (easylist.txt: 34168) -.sameip.org/images/froghost\.gif -# ||salfordonline.com/sponsors2/ (easylist.txt: 34167) -.salfordonline.com/sponsors2/ -# ||salfordonline.com/sponsors/ (easylist.txt: 34166) -.salfordonline.com/sponsors/ -# ||sail-world.com/rotate/ (easylist.txt: 34165) -.sail-world.com/rotate/ -# ||sagoodnews.co.za/templates/ubuntu-deals/ (easylist.txt: 34164) -.sagoodnews.co.za/templates/ubuntu-deals/ -# ||safelinks.eu/open.js (easylist.txt: 34163) -.safelinks.eu/open\.js -# ||saf.org/wp-content/uploads/*/women_guns192x50.png (easylist.txt: 34162) -.saf.org/wp-content/uploads/.*/women_guns192x50\.png -# ||saf.org/wp-content/uploads/*/theGunMagbanner.png (easylist.txt: 34161) -.saf.org/wp-content/uploads/.*/theGunMagbanner\.png -# ||sacommercialpropnews.co.za/files/banners/ (easylist.txt: 34160) -.sacommercialpropnews.co.za/files/banners/ -# ||sacbee.com/static/dealsaver/ (easylist.txt: 34159) -.sacbee.com/static/dealsaver/ -# ||saabsunited.com/wp-content/uploads/werbung- (easylist.txt: 34158) -.saabsunited.com/wp-content/uploads/werbung- -# ||saabsunited.com/wp-content/uploads/USACANADA.jpg (easylist.txt: 34157) -.saabsunited.com/wp-content/uploads/USACANADA\.jpg -# ||saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC.gif (easylist.txt: 34156) -.saabsunited.com/wp-content/uploads/REALCAR-SAABSUNITED-5SEC\.gif -# ||saabsunited.com/wp-content/uploads/rbm21.jpg (easylist.txt: 34155) -.saabsunited.com/wp-content/uploads/rbm21\.jpg -# ||saabsunited.com/wp-content/uploads/ban- (easylist.txt: 34154) -.saabsunited.com/wp-content/uploads/ban- -# ||saabsunited.com/wp-content/uploads/180x460_ (easylist.txt: 34153) -.saabsunited.com/wp-content/uploads/180x460_ -# ||saabsunited.com/wp-content/uploads/*_banner_ (easylist.txt: 34152) -.saabsunited.com/wp-content/uploads/.*_banner_ -# ||saabsunited.com/wp-content/uploads/*-banner. (easylist.txt: 34151) -.saabsunited.com/wp-content/uploads/.*-banner\. -# ||saabsunited.com/wp-content/uploads/*-banner- (easylist.txt: 34150) -.saabsunited.com/wp-content/uploads/.*-banner- -# ||s.yimg.com^*/audience/ (easylist.txt: 34149) -.s.yimg.com/.*/audience/ -# ||s.imwx.com^*/wx-a21-plugthis.js (easylist.txt: 34148) -.s.imwx.com/.*/wx-a21-plugthis\.js -# ||rustourismnews.com/images/banners/ (easylist.txt: 34147) -.rustourismnews.com/images/banners/ -# ||russianireland.com/images/banners/ (easylist.txt: 34146) -.russianireland.com/images/banners/ -# ||runt-of-the-web.com/wrap1.jpg (easylist.txt: 34145) -.runt-of-the-web.com/wrap1\.jpg -# ||rugbyweek.com^*/sponsors/ (easylist.txt: 34144) -.rugbyweek.com/.*/sponsors/ -# ||rtcc.org/systems/sponsors/ (easylist.txt: 34142) -.rtcc.org/systems/sponsors/ -# ||rt.com/static/img/banners/ (easylist.txt: 34141) -.rt.com/static/img/banners/ -# ||rt.com/banner/ (easylist.txt: 34140) -.rt.com/banner/ -# ||rss2search.com/delivery/ (easylist.txt: 34139) -.rss2search.com/delivery/ -# ||rsbuddy.com/campaign/ (easylist.txt: 34138) -.rsbuddy.com/campaign/ -# ||rpt.anchorfree.net^ (easylist.txt: 34137) -.rpt.anchorfree.net -# ||rpgwatch.com^*/banner/ (easylist.txt: 34136) -.rpgwatch.com/.*/banner/ -# ||routesonline.com/banner/ (easylist.txt: 34135) -.routesonline.com/banner/ -# ||routes-news.com/images/banners/ (easylist.txt: 34134) -.routes-news.com/images/banners/ -# ||routerpasswords.com/routers.jpg (easylist.txt: 34133) -.routerpasswords.com/routers\.jpg -# ||rough-polished.com/upload/bx/ (easylist.txt: 34132) -.rough-polished.com/upload/bx/ -# ||roseindia.net^*/banners/ (easylist.txt: 34130) -.roseindia.net/.*/banners/ -# ||rootsweb.com/js/o*.js (easylist.txt: 34129) -.rootsweb.com/js/o.*\.js -# ||romhustler.net/square.js (easylist.txt: 34128) -.romhustler.net/square\.js -# ||rom-freaks.net/popup.php (easylist.txt: 34127) -.rom-freaks.net/popup\.php -# ||rollingstone.co.za/images/banners/ (easylist.txt: 34126) -.rollingstone.co.za/images/banners/ -# ||rok.com.com/rok-get? (easylist.txt: 34125) -.rok.com.com/rok-get\? -# ||rojadirecta.ge^*/pu.js (easylist.txt: 34124) -.rojadirecta.ge/.*/pu\.js -# ||roia.com^ (easylist.txt: 34123) -.roia.com -# ||rodfile.com/images/esr.gif (easylist.txt: 34122) -.rodfile.com/images/esr\.gif -# ||rockthebells.net/images/bot_banner_ (easylist.txt: 34120) -.rockthebells.net/images/bot_banner_ -# ||rockthebells.net/images/banners/ (easylist.txt: 34119) -.rockthebells.net/images/banners/ -# ||rocktelevision.com^*_banner_ (easylist.txt: 34118) -.rocktelevision.com/.*_banner_ -# ||rocksound.tv/images/uploads/*-rocksound-1920x1000_ (easylist.txt: 34117) -.rocksound.tv/images/uploads/.*-rocksound-1920x1000_ -# ||rockettheme.com/aff/ (easylist.txt: 34116) -.rockettheme.com/aff/ -# ||robhasawebsite.com^*/shop-amazon. (easylist.txt: 34115) -.robhasawebsite.com/.*/shop-amazon\. -# ||robhasawebsite.com^*/amazon- (easylist.txt: 34114) -.robhasawebsite.com/.*/amazon- -# ||rlsbb.com/wp-content/uploads/smoke.jpg (easylist.txt: 34113) -.rlsbb.com/wp-content/uploads/smoke\.jpg -# ||rlsbb.com/wp-content/uploads/izilol.gif (easylist.txt: 34112) -.rlsbb.com/wp-content/uploads/izilol\.gif -# ||rislivetv.com/ad*.php (easylist.txt: 34111) -.rislivetv.com/ad.*\.php -# ||ringostrack.com^*/amazon-buy.gif (easylist.txt: 34110) -.ringostrack.com/.*/amazon-buy\.gif -# ||rightsidenews.com/images/banners/ (easylist.txt: 34109) -.rightsidenews.com/images/banners/ -# ||riderfans.com/other/ (easylist.txt: 34108) -.riderfans.com/other/ -# ||richmedia.yimg.com^ (easylist.txt: 34107) -.richmedia.yimg.com -# ||richardroeper.com/assets/banner/ (easylist.txt: 34106) -.richardroeper.com/assets/banner/ -# ||rghost.ru/download/a/*/banner_download_ (easylist.txt: 34105) -.rghost.ru/download/a/.*/banner_download_ -# ||rfu.com/js/jquery.jcarousel.js (easylist.txt: 34104) -.rfu.com/js/jquery\.jcarousel\.js -# ||revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2.gif (easylist.txt: 34103) -.revisionworld.co.uk/sites/default/files/imce/Double-MPU2-v2\.gif -# ||reviewcentre.com/cinergy-adv.php (easylist.txt: 34102) -.reviewcentre.com/cinergy-adv\.php -# ||reuters.com/reuters_gpt_bootstrap*.js (easylist.txt: 34101) -.reuters.com/reuters_gpt_bootstrap.*\.js -# ||reuters.com/reuters_bootstrap.js (easylist.txt: 34100) -.reuters.com/reuters_bootstrap\.js -# ||retrevo.com^*/pcwframe.jsp? (easylist.txt: 34099) -.retrevo.com/.*/pcwframe\.jsp\? -# ||retrevo.com/m/google?q= (easylist.txt: 34098) -.retrevo.com/m/google\?q= -# ||replacementdocs.com^*/popup.js (easylist.txt: 34097) -.replacementdocs.com/.*/popup\.js -# ||relink.us/js/ibunkerslide.js (easylist.txt: 34096) -.relink.us/js/ibunkerslide\.js -# ||releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40.jpg (easylist.txt: 34095) -.releaselog.net/uploads2/656d7eca2b5dd8f0fbd4196e4d0a2b40\.jpg -# ||releaselog.net/468.htm (easylist.txt: 34094) -.releaselog.net/468\.htm -# ||rejournal.com^*/images/homepage/ (easylist.txt: 34093) -.rejournal.com/.*/images/homepage/ -# ||rejournal.com/users/blinks/ (easylist.txt: 34092) -.rejournal.com/users/blinks/ -# ||rejournal.com/images/banners/ (easylist.txt: 34091) -.rejournal.com/images/banners/ -# ||regmender.com^*/banner336x280. (easylist.txt: 34089) -.regmender.com/.*/banner336x280\. -# ||reelzchannel.com^*-skin- (easylist.txt: 34088) -.reelzchannel.com/.*-skin- -# ||redvase.bravenet.com^ (easylist.txt: 34087) -.redvase.bravenet.com -# ||redpepper.org.uk/ad- (easylist.txt: 34086) -.redpepper.org.uk/ad- -# ||rednationonline.ca/Portals/0/derbystar_leaderboard.jpg (easylist.txt: 34085) -.rednationonline.ca/Portals/0/derbystar_leaderboard\.jpg -# ||reddit.com^*_sponsor.png? (easylist.txt: 34083) -.reddit.com/.*_sponsor\.png\? -# ||red.bayimg.net^ (easylist.txt: 34082) -.red.bayimg.net -# ||reason.org/UserFiles/web-fin1.gif (easylist.txt: 34081) -.reason.org/UserFiles/web-fin1\.gif -# ||realitytvworld.com/includes/rtvw-jscript.js (easylist.txt: 34080) -.realitytvworld.com/includes/rtvw-jscript\.js -# ||realitytvworld.com/burst.js (easylist.txt: 34079) -.realitytvworld.com/burst\.js -# ||readingeagle.com/lib/dailysponser.js (easylist.txt: 34078) -.readingeagle.com/lib/dailysponser\.js -# ||rc.feedsportal.com/r/*/rc.img (easylist.txt: 34077) -.rc.feedsportal.com/r/.*/rc\.img -# ||raysindex.com/wp-content/uploads/*/dolmansept2012flash.swf (easylist.txt: 34076) -.raysindex.com/wp-content/uploads/.*/dolmansept2012flash\.swf -# ||rawstory.com^*/ads/ (easylist.txt: 34075) -.rawstory.com/.*/ads/ -# ||rawstory.com^*.php?code=bottom (easylist.txt: 34074) -.rawstory.com/.*\.php\?code=bottom -# ||rawstory.com/givememyrawjuggler.php (easylist.txt: 34073) -.rawstory.com/givememyrawjuggler\.php -# ||rawstory.com/givememyrawgfpdirect.php? (easylist.txt: 34072) -.rawstory.com/givememyrawgfpdirect\.php\? -# ||rawstory.com/givememyrawgfp.php? (easylist.txt: 34071) -.rawstory.com/givememyrawgfp\.php\? -# ||ravchat.com/img/reversephone.gif (easylist.txt: 34070) -.ravchat.com/img/reversephone\.gif -# ||ratio-magazine.com/images/banners/ (easylist.txt: 34069) -.ratio-magazine.com/images/banners/ -# ||rapidvideo.tv/images/pl.jpg (easylist.txt: 34068) -.rapidvideo.tv/images/pl\.jpg -# ||rapidvideo.org/images/pl_box_rapid.jpg (easylist.txt: 34067) -.rapidvideo.org/images/pl_box_rapid\.jpg -# ||rapidtvnews.com^*BannerAd. (easylist.txt: 34066) -.rapidtvnews.com/.*BannerAd\. -# ||rapidsafe.de/eislogo.gif (easylist.txt: 34064) -.rapidsafe.de/eislogo\.gif -# ||rapidlibrary.com/banner_*.png (easylist.txt: 34063) -.rapidlibrary.com/banner_.*\.png -# ||rapidlibrary.com/baner*.png (easylist.txt: 34062) -.rapidlibrary.com/baner.*\.png -# ||rapidgator.net/images/pics/button.png (easylist.txt: 34061) -.rapidgator.net/images/pics/button\.png -# ||rapidgator.net/images/banners/ (easylist.txt: 34060) -.rapidgator.net/images/banners/ -# ||rapidgamez.com/images/ (easylist.txt: 34059) -.rapidgamez.com/images/ -# ||rapidfiledownload.com^*/btn-input-download.png (easylist.txt: 34058) -.rapidfiledownload.com/.*/btn-input-download\.png -# ||rainbowpages.lk/images/banners/ (easylist.txt: 34057) -.rainbowpages.lk/images/banners/ -# ||ragezone.com/output.php/ (easylist.txt: 34056) -.ragezone.com/output\.php/ -# ||radiozindagi.com/sponsors/ (easylist.txt: 34054) -.radiozindagi.com/sponsors/ -# ||radiowavesforum.com/rw/radioapp.gif (easylist.txt: 34053) -.radiowavesforum.com/rw/radioapp\.gif -# ||radiowave.com.na/images/banners/ (easylist.txt: 34052) -.radiowave.com.na/images/banners/ -# ||radiotoday.co.uk/a/ (easylist.txt: 34051) -.radiotoday.co.uk/a/ -# ||radioreference.com^*_banner_ (easylist.txt: 34050) -.radioreference.com/.*_banner_ -# ||radioreference.com/i/p4/tp/smPortalBanner.gif (easylist.txt: 34049) -.radioreference.com/i/p4/tp/smPortalBanner\.gif -# ||radioloyalty.com/newPlayer/loadbanner.html? (easylist.txt: 34048) -.radioloyalty.com/newPlayer/loadbanner\.html\? -# ||radioinfo.com^*/575x112- (easylist.txt: 34047) -.radioinfo.com/.*/575x112- -# ||radioinfo.com/270x270/ (easylist.txt: 34046) -.radioinfo.com/270x270/ -# ||radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg.swf (easylist.txt: 34045) -.radiocaroline.co.uk/swf/ACET&ACSP_RadioCaroline_teg\.swf -# ||radioasiafm.com^*-300x250. (easylist.txt: 34044) -.radioasiafm.com/.*-300x250\. -# ||radio786.co.za/images/banners/ (easylist.txt: 34043) -.radio786.co.za/images/banners/ -# ||radio4fm.com/promotion/ (easylist.txt: 34042) -.radio4fm.com/promotion/ -# ||radio4fm.com/images/background/ (easylist.txt: 34041) -.radio4fm.com/images/background/ -# ||radio.com/rotatable? (easylist.txt: 34040) -.radio.com/rotatable\? -# ||radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr.swf? (easylist.txt: 34039) -.radio-riverside.co.za/modules/mod_novarp/tmpl/pjmr\.swf\? -# ||rad.msn.com^ (easylist.txt: 34038) -.rad.msn.com -# ||rad.microsoft.com^ (easylist.txt: 34037) -.rad.microsoft.com -# ||racinguk.com/images/site/foot_ (easylist.txt: 34034) -.racinguk.com/images/site/foot_ -# ||racingpost.com^*_607x30.2.0.gif (easylist.txt: 34033) -.racingpost.com/.*_607x30\.2\.0\.gif -# ||racingpost.com/ads/ (easylist.txt: 34032) -.racingpost.com/ads/ -# ||race-dezert.com^*/sponsor- (easylist.txt: 34031) -.race-dezert.com/.*/sponsor- -# ||race-dezert.com/images/wrap- (easylist.txt: 34030) -.race-dezert.com/images/wrap- -# ||quoteland.com/images/banner2.swf (easylist.txt: 34029) -.quoteland.com/images/banner2\.swf -# ||quicksilverscreen.com/img/moviesforfree.jpg (easylist.txt: 34028) -.quicksilverscreen.com/img/moviesforfree\.jpg -# ||quickmeme.com/media/rostile (easylist.txt: 34026) -.quickmeme.com/media/rostile -# ||queenshare.com/popx.js (easylist.txt: 34025) -.queenshare.com/popx\.js -# ||qualityhealth.com^*/banner.jsp? (easylist.txt: 34024) -.qualityhealth.com/.*/banner\.jsp\? -# ||qrz.com/pix/*.gif (easylist.txt: 34023) -.qrz.com/pix/.*\.gif -# ||qiksilver.net^*/banners/ (easylist.txt: 34022) -.qiksilver.net/.*/banners/ -# ||qatar-tribune.com/images/banners/ (easylist.txt: 34021) -.qatar-tribune.com/images/banners/ -# ||q1075.com/images/banners/ (easylist.txt: 34020) -.q1075.com/images/banners/ -# ||pv-tech.org/images/suntech_m2fbblew.png (easylist.txt: 34019) -.pv-tech.org/images/suntech_m2fbblew\.png -# ||pv-tech.org/images/footer_logos/ (easylist.txt: 34018) -.pv-tech.org/images/footer_logos/ -# ||putlocker.mn^*/stream-hd.gif (easylist.txt: 34017) -.putlocker.mn/.*/stream-hd\.gif -# ||putlocker.mn^*/download.gif (easylist.txt: 34016) -.putlocker.mn/.*/download\.gif -# ||putlocker.is/images/banner (easylist.txt: 34015) -.putlocker.is/images/banner -# ||pushsquare.com/wp-content/themes/pushsquare/skins/ (easylist.txt: 34014) -.pushsquare.com/wp-content/themes/pushsquare/skins/ -# ||punksbusted.com^*/clanwarz-portal.jpg (easylist.txt: 34013) -.punksbusted.com/.*/clanwarz-portal\.jpg -# ||punksbusted.com/images/ventrilo/ (easylist.txt: 34012) -.punksbusted.com/images/ventrilo/ -# ||punchng.com^*/wp-banners/ (easylist.txt: 34011) -.punchng.com/.*/wp-banners/ -# ||punch.cdn.ng^*/wp-banners/ (easylist.txt: 34010) -.punch.cdn.ng/.*/wp-banners/ -# ||pumasrugbyunion.com/images/sponsors/ (easylist.txt: 34009) -.pumasrugbyunion.com/images/sponsors/ -# ||pulsetv.com/banner/ (easylist.txt: 34008) -.pulsetv.com/banner/ -# ||publicservice.co.uk^*/spons_ (easylist.txt: 34007) -.publicservice.co.uk/.*/spons_ -# ||publicradio.org^*/banners/ (easylist.txt: 34006) -.publicradio.org/.*/banners/ -# ||publicityupdate.co.za/temp/banner_ (easylist.txt: 34005) -.publicityupdate.co.za/temp/banner_ -# ||publichd.eu/images/directdownload.png (easylist.txt: 34004) -.publichd.eu/images/directdownload\.png -# ||publichd.eu/images/direct.download.ico (easylist.txt: 34003) -.publichd.eu/images/direct\.download\.ico -# ||ptf.com/js/rc_banner.js (easylist.txt: 34002) -.ptf.com/js/rc_banner\.js -# ||ptf.com/js/ptf_rc_*.js (easylist.txt: 34001) -.ptf.com/js/ptf_rc_.*\.js -# ||ptf.com/js/fdm_banner.js (easylist.txt: 34000) -.ptf.com/js/fdm_banner\.js -# ||ptf.com/fdm_frame_ (easylist.txt: 33999) -.ptf.com/fdm_frame_ -# ||psgroove.com/images/*.jpg| (easylist.txt: 33998) -.psgroove.com/images/.*\.jpg$ -# ||ps3crunch.net/forum/images/gamers/ (easylist.txt: 33997) -.ps3crunch.net/forum/images/gamers/ -# ||proxycape.com/blah.js (easylist.txt: 33996) -.proxycape.com/blah\.js -# ||proxy.org/ah.html (easylist.txt: 33995) -.proxy.org/ah\.html -# ||proxy.org/af.html (easylist.txt: 33994) -.proxy.org/af\.html -# ||proxy-list.org/img/isellsite.gif (easylist.txt: 33993) -.proxy-list.org/img/isellsite\.gif -# ||propertyeu.info/peu_storage_banners/ (easylist.txt: 33992) -.propertyeu.info/peu_storage_banners/ -# ||propakistani.pk/wp-content/themes/propakistani/images/776.jpg (easylist.txt: 33991) -.propakistani.pk/wp-content/themes/propakistani/images/776\.jpg -# ||propakistani.pk/wp-content/*/warid.jpg (easylist.txt: 33990) -.propakistani.pk/wp-content/.*/warid\.jpg -# ||propakistani.pk/data/zong.html (easylist.txt: 33989) -.propakistani.pk/data/zong\.html -# ||propakistani.pk/data/warid_top1.html (easylist.txt: 33988) -.propakistani.pk/data/warid_top1\.html -# ||promo.fileforum.com^ (easylist.txt: 33987) -.promo.fileforum.com -# ||projectfreetv.ch/adblock/ (easylist.txt: 33985) -.projectfreetv.ch/adblock/ -# ||project-for-sell.com/_google.php (easylist.txt: 33984) -.project-for-sell.com/_google\.php -# ||professionalmuscle.com/PL2.gif (easylist.txt: 33983) -.professionalmuscle.com/PL2\.gif -# ||professionalmuscle.com/phil1.jpg (easylist.txt: 33982) -.professionalmuscle.com/phil1\.jpg -# ||professionalmuscle.com/featured-concreter.jpg (easylist.txt: 33981) -.professionalmuscle.com/featured-concreter\.jpg -# ||professionalmuscle.com/220x105%20ver2.gif (easylist.txt: 33980) -.professionalmuscle.com/220x105%20ver2\.gif -# ||professionalmuscle.com/*banner (easylist.txt: 33979) -.professionalmuscle.com/.*banner -# ||pro-clockers.com/images/banners/ (easylist.txt: 33978) -.pro-clockers.com/images/banners/ -# ||privateproperty.co.za^*/siteTakeover/ (easylist.txt: 33977) -.privateproperty.co.za/.*/siteTakeover/ -# ||prisonplanet.com^*banner (easylist.txt: 33976) -.prisonplanet.com/.*banner -# ||printfriendly.com/a/lijit/ (easylist.txt: 33975) -.printfriendly.com/a/lijit/ -# ||primewire.in/load_link.php? (easylist.txt: 33974) -.primewire.in/load_link\.php\? -# ||primewire.guru/pagetop.php (easylist.txt: 33973) -.primewire.guru/pagetop\.php -# ||primewire.guru/load_link.php? (easylist.txt: 33972) -.primewire.guru/load_link\.php\? -# ||primewire.ag/load_link.php? (easylist.txt: 33971) -.primewire.ag/load_link\.php\? -# ||primewire.ag/js/jquery*.js (easylist.txt: 33970) -.primewire.ag/js/jquery.*\.js -# ||primenews.com.bd/add/ (easylist.txt: 33968) -.primenews.com.bd/add/ -# ||pressrepublican.com/wallpaper/ (easylist.txt: 33967) -.pressrepublican.com/wallpaper/ -# ||prerollads.ign.com^ (easylist.txt: 33966) -.prerollads.ign.com -# ||prepperwebsite.com/wp-content/uploads/*_250x250.jpg (easylist.txt: 33965) -.prepperwebsite.com/wp-content/uploads/.*_250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*_250x150.png (easylist.txt: 33964) -.prepperwebsite.com/wp-content/uploads/.*_250x150\.png -# ||prepperwebsite.com/wp-content/uploads/*/tsepulveda-1.jpg (easylist.txt: 33963) -.prepperwebsite.com/wp-content/uploads/.*/tsepulveda-1\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/PW-Ad.jpg (easylist.txt: 33962) -.prepperwebsite.com/wp-content/uploads/.*/PW-Ad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/jihad.jpg (easylist.txt: 33961) -.prepperwebsite.com/wp-content/uploads/.*/jihad\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/FME-Red-CAP.jpg (easylist.txt: 33960) -.prepperwebsite.com/wp-content/uploads/.*/FME-Red-CAP\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/DeadwoodStove-PW.gif (easylist.txt: 33959) -.prepperwebsite.com/wp-content/uploads/.*/DeadwoodStove-PW\.gif -# ||prepperwebsite.com/wp-content/uploads/*/apmgoldmembership250x250.jpg (easylist.txt: 33958) -.prepperwebsite.com/wp-content/uploads/.*/apmgoldmembership250x250\.jpg -# ||prepperwebsite.com/wp-content/uploads/*/250x250- (easylist.txt: 33957) -.prepperwebsite.com/wp-content/uploads/.*/250x250- -# ||prepperwebsite.com/wp-content/uploads/*-250x250.jpg (easylist.txt: 33956) -.prepperwebsite.com/wp-content/uploads/.*-250x250\.jpg -# ||preppersmallbiz.com/wp-content/uploads/*/PSB-Support.jpg (easylist.txt: 33955) -.preppersmallbiz.com/wp-content/uploads/.*/PSB-Support\.jpg -# ||premierleague.com^*/sponsor_ (easylist.txt: 33954) -.premierleague.com/.*/sponsor_ -# ||prehackshub.com/js/popup-wide.js (easylist.txt: 33953) -.prehackshub.com/js/popup-wide\.js -# ||preev.com/ad| (easylist.txt: 33952) -.preev.com/ad$ -# ||preev.com/ads| (easylist.txt: 33951) -.preev.com/ads$ -# ||praguepost.com/images/banners/ (easylist.txt: 33950) -.praguepost.com/images/banners/ -# ||pr0gramm.com/wm/ (easylist.txt: 33949) -.pr0gramm.com/wm/ -# ||pqarchiver.com^*/utilstextlinksxml.js (easylist.txt: 33948) -.pqarchiver.com/.*/utilstextlinksxml\.js -# ||powvideo.net/ban/ (easylist.txt: 33947) -.powvideo.net/ban/ -# ||powerbot.org^*/ads/ (easylist.txt: 33946) -.powerbot.org/.*/ads/ -# ||power977.com/images/banners/ (easylist.txt: 33945) -.power977.com/images/banners/ -# ||power1035fm.com^*/banners/ (easylist.txt: 33944) -.power1035fm.com/.*/banners/ -# ||poststar.com^*/promos/ (easylist.txt: 33943) -.poststar.com/.*/promos/ -# ||poststar.com^*/dealwidget.php? (easylist.txt: 33942) -.poststar.com/.*/dealwidget\.php\? -# ||poststar.com^*/ad_ (easylist.txt: 33941) -.poststar.com/.*/ad_ -# ||postcrescent.com^*/promos/ (easylist.txt: 33939) -.postcrescent.com/.*/promos/ -# ||postadsnow.com/panbanners/ (easylist.txt: 33938) -.postadsnow.com/panbanners/ -# ||positivehealth.com^*/TopicbannerAvatar/ (easylist.txt: 33937) -.positivehealth.com/.*/TopicbannerAvatar/ -# ||positivehealth.com^*/BannerAvatar/ (easylist.txt: 33936) -.positivehealth.com/.*/BannerAvatar/ -# ||porttechnology.org/images/partners/ (easylist.txt: 33935) -.porttechnology.org/images/partners/ -# ||portmiamiwebcam.com/images/sling_ (easylist.txt: 33934) -.portmiamiwebcam.com/images/sling_ -# ||portlanddailysun.me/images/banners/ (easylist.txt: 33933) -.portlanddailysun.me/images/banners/ -# ||portevergladeswebcam.com^*-WebCamBannerFall_ (easylist.txt: 33932) -.portevergladeswebcam.com/.*-WebCamBannerFall_ -# ||portevergladeswebcam.com^*-Ad.jpg (easylist.txt: 33931) -.portevergladeswebcam.com/.*-Ad\.jpg -# ||portcanaveralwebcam.com/images/ad_ (easylist.txt: 33930) -.portcanaveralwebcam.com/images/ad_ -# ||pornevo.com/events_ (easylist.txt: 33929) -.pornevo.com/events_ -# ||pop-over.powered-by.justplayzone.com^ (easylist.txt: 33928) -.pop-over.powered-by.justplayzone.com -# ||pons.eu^*/lingeniobanner.swf (easylist.txt: 33927) -.pons.eu/.*/lingeniobanner\.swf -# ||politicususa.com/psa/ (easylist.txt: 33925) -.politicususa.com/psa/ -# ||politico.com^*_skin_ (easylist.txt: 33924) -.politico.com/.*_skin_ -# ||politicalwire.com/images/*-sponsor.jpg (easylist.txt: 33923) -.politicalwire.com/images/.*-sponsor\.jpg -# ||policeprofessional.com/files/pictures- (easylist.txt: 33922) -.policeprofessional.com/files/pictures- -# ||policeprofessional.com/files/banners- (easylist.txt: 33921) -.policeprofessional.com/files/banners- -# ||police-car-photos.com/pictures/sponsors/ (easylist.txt: 33920) -.police-car-photos.com/pictures/sponsors/ -# ||pokernews.com/preroll.php? (easylist.txt: 33919) -.pokernews.com/preroll\.php\? -# ||pokernews.com/b/ (easylist.txt: 33918) -.pokernews.com/b/ -# ||pogo.com/v/*/js/ad.js (easylist.txt: 33917) -.pogo.com/v/.*/js/ad\.js -# ||pocketpcaddict.com/forums/images/banners/ (easylist.txt: 33916) -.pocketpcaddict.com/forums/images/banners/ -# ||pocket-lint.com/images/bytemarkad. (easylist.txt: 33915) -.pocket-lint.com/images/bytemarkad\. -# ||pmm.people.com.cn^ (easylist.txt: 33914) -.pmm.people.com.cn -# ||plundermedia.com*rectangle- (easylist.txt: 33913) -.plundermedia.com*./.*rectangle- -.plundermedia.com*rectangle-*. -# ||plunderguide.com/rectangle2.html (easylist.txt: 33912) -.plunderguide.com/rectangle2\.html -# ||plunderguide.com/leaderboard-gor.html (easylist.txt: 33911) -.plunderguide.com/leaderboard-gor\.html -# ||plsn.com/images/PLSN-Bg1.jpg (easylist.txt: 33910) -.plsn.com/images/PLSN-Bg1\.jpg -# ||playtowerdefensegames.com/ptdg-gao-gamebox-homepage.swf (easylist.txt: 33909) -.playtowerdefensegames.com/ptdg-gao-gamebox-homepage\.swf -# ||playhub.com/js/popup-wide.js (easylist.txt: 33907) -.playhub.com/js/popup-wide\.js -# ||playgames2.com/rand100x100.php (easylist.txt: 33904) -.playgames2.com/rand100x100\.php -# ||playgames2.com/mmoout.php (easylist.txt: 33903) -.playgames2.com/mmoout\.php -# ||playgames2.com/default160x160.php (easylist.txt: 33902) -.playgames2.com/default160x160\.php -# ||playgames2.com/ban300- (easylist.txt: 33901) -.playgames2.com/ban300- -# ||player.insuranceandhealth.com^ (easylist.txt: 33900) -.player.insuranceandhealth.com -# ||player.alloutwedding.com^ (easylist.txt: 33899) -.player.alloutwedding.com -# ||player.accoona.com^ (easylist.txt: 33898) -.player.accoona.com -# ||player.800directories.com^ (easylist.txt: 33897) -.player.800directories.com -# ||player.1stcreditrepairs.com^ (easylist.txt: 33896) -.player.1stcreditrepairs.com -# ||player.1800coupon.com^ (easylist.txt: 33895) -.player.1800coupon.com -# ||play4movie.com/banner/ (easylist.txt: 33894) -.play4movie.com/banner/ -# ||planetlotus.org/images/partners/ (easylist.txt: 33893) -.planetlotus.org/images/partners/ -# ||planecrashinfo.com/images/advertize1.gif (easylist.txt: 33892) -.planecrashinfo.com/images/advertize1\.gif -# ||pixhost.org/image/fik1.jpg (easylist.txt: 33891) -.pixhost.org/image/fik1\.jpg -# ||pittnews.com/modules/mod_novarp/ (easylist.txt: 33890) -.pittnews.com/modules/mod_novarp/ -# ||pitchero.com^*/toolstation.gif (easylist.txt: 33889) -.pitchero.com/.*/toolstation\.gif -# ||pirateproxy.nl/inc/ex.js (easylist.txt: 33888) -.pirateproxy.nl/inc/ex\.js -# ||piratefm.co.uk/resources/creative/ (easylist.txt: 33887) -.piratefm.co.uk/resources/creative/ -# ||pinknews.co.uk/newweb/ (easylist.txt: 33886) -.pinknews.co.uk/newweb/ -# ||pinknews.co.uk/gsky. (easylist.txt: 33885) -.pinknews.co.uk/gsky\. -# ||pinkbike.org^*/skins/ (easylist.txt: 33884) -.pinkbike.org/.*/skins/ -# ||picsee.net/clk.js (easylist.txt: 33883) -.picsee.net/clk\.js -# ||pickmeupnews.com/cfopop.js (easylist.txt: 33882) -.pickmeupnews.com/cfopop\.js -# ||physorg.com^*/addetect.js (easylist.txt: 33881) -.physorg.com/.*/addetect\.js -# ||phuketwan.com/img/b/ (easylist.txt: 33880) -.phuketwan.com/img/b/ -# ||phuketgazette.net^*/banners/ (easylist.txt: 33879) -.phuketgazette.net/.*/banners/ -# ||phuketgazette.net/banners/ (easylist.txt: 33878) -.phuketgazette.net/banners/ -# ||phuket-post.com/img/a/ (easylist.txt: 33877) -.phuket-post.com/img/a/ -# ||phpmotion.com/images/banners-webhosts/ (easylist.txt: 33876) -.phpmotion.com/images/banners-webhosts/ -# ||phpbb.com/theme/images/hosting/hostmonster-downloads.gif (easylist.txt: 33875) -.phpbb.com/theme/images/hosting/hostmonster-downloads\.gif -# ||phpbb.com/theme/images/bg_forumatic_front_page.png (easylist.txt: 33874) -.phpbb.com/theme/images/bg_forumatic_front_page\.png -# ||photosupload.net/photosupload.js (easylist.txt: 33873) -.photosupload.net/photosupload\.js -# ||photo.net/equipment/pg-160^ (easylist.txt: 33871) -.photo.net/equipment/pg-160[^\w%.-] -# ||phoronix.com/phxforums-thread-show.php (easylist.txt: 33870) -.phoronix.com/phxforums-thread-show\.php -# ||phonescoop.com^*/a_tab.gif (easylist.txt: 33869) -.phonescoop.com/.*/a_tab\.gif -# ||phonebunch.com/images/flipkart_offers_alt.jpg (easylist.txt: 33868) -.phonebunch.com/images/flipkart_offers_alt\.jpg -# ||phonearena.com/images/banners/ (easylist.txt: 33867) -.phonearena.com/images/banners/ -# ||phnompenhpost.com^*/banner_ (easylist.txt: 33866) -.phnompenhpost.com/.*/banner_ -# ||phnompenhpost.com/images/stories/banner/ (easylist.txt: 33865) -.phnompenhpost.com/images/stories/banner/ -# ||phillytrib.com/images/banners/ (easylist.txt: 33864) -.phillytrib.com/images/banners/ -# ||phantom.ie^*/banners/ (easylist.txt: 33863) -.phantom.ie/.*/banners/ -# ||pghcitypaper.com/general/modalbox/modalbox.js (easylist.txt: 33862) -.pghcitypaper.com/general/modalbox/modalbox\.js -# ||pgatour.com^*/featurebillboard_ (easylist.txt: 33861) -.pgatour.com/.*/featurebillboard_ -# ||pettube.com/images/*-partner. (easylist.txt: 33860) -.pettube.com/images/.*-partner\. -# ||petri.co.il/wp-content/uploads/banner700x475_ (easylist.txt: 33859) -.petri.co.il/wp-content/uploads/banner700x475_ -# ||petri.co.il/wp-content/uploads/banner1000x75_ (easylist.txt: 33858) -.petri.co.il/wp-content/uploads/banner1000x75_ -# ||peruthisweek.com/uploads/sponsor_image/ (easylist.txt: 33856) -.peruthisweek.com/uploads/sponsor_image/ -# ||perezhilton.com/images/ask/ (easylist.txt: 33855) -.perezhilton.com/images/ask/ -# ||penguin-news.com/images/banners/ (easylist.txt: 33854) -.penguin-news.com/images/banners/ -# ||pedestrian.tv/_crunk/wp-content/files_flutter/ (easylist.txt: 33853) -.pedestrian.tv/_crunk/wp-content/files_flutter/ -# ||pechextreme.com^*/banners/ (easylist.txt: 33852) -.pechextreme.com/.*/banners/ -# ||pechextreme.com^*/banner. (easylist.txt: 33851) -.pechextreme.com/.*/banner\. -# ||pe.com^*/biice2scripts.js (easylist.txt: 33850) -.pe.com/.*/biice2scripts\.js -# ||pcworld.com/templates/video/popup.jsp?*&flv=/pcw/ads/ (easylist.txt: 33849) -.pcworld.com/templates/video/popup\.jsp\?.*&flv=/pcw/ads/ -# ||pcworld.com/images/*_vidmod_316x202_ (easylist.txt: 33848) -.pcworld.com/images/.*_vidmod_316x202_ -# ||pcworld.com/ads/ (easylist.txt: 33847) -.pcworld.com/ads/ -# ||pcworld.co.nz^*_siteskin_ (easylist.txt: 33846) -.pcworld.co.nz/.*_siteskin_ -# ||pcr-online.biz/static/banners/ (easylist.txt: 33845) -.pcr-online.biz/static/banners/ -# ||pcpro.co.uk^*skin_wide. (easylist.txt: 33844) -.pcpro.co.uk/.*skin_wide\. -# ||pcpro.co.uk^*/pcprositeskin (easylist.txt: 33843) -.pcpro.co.uk/.*/pcprositeskin -# ||pcpro.co.uk/images/skins/ (easylist.txt: 33842) -.pcpro.co.uk/images/skins/ -# ||pcpro.co.uk/images/*_siteskin (easylist.txt: 33841) -.pcpro.co.uk/images/.*_siteskin -# ||pcmag.com/blogshome/logicbuy.js (easylist.txt: 33840) -.pcmag.com/blogshome/logicbuy\.js -# ||pcauthority.com.au^*/skins/ (easylist.txt: 33839) -.pcauthority.com.au/.*/skins/ -# ||pcadvisor.co.uk/graphics/sponsored/ (easylist.txt: 33838) -.pcadvisor.co.uk/graphics/sponsored/ -# ||pbsrc.com^*/sponsor/ (easylist.txt: 33837) -.pbsrc.com/.*/sponsor/ -# ||pbsrc.com/sponsor/ (easylist.txt: 33836) -.pbsrc.com/sponsor/ -# ||pbs.org^*/sponsors/ (easylist.txt: 33835) -.pbs.org/.*/sponsors/ -# ||payplay.fm^*/mastercs.js (easylist.txt: 33834) -.payplay.fm/.*/mastercs\.js -# ||pasadenajournal.com/images/banners/ (easylist.txt: 33832) -.pasadenajournal.com/images/banners/ -# ||partners-z.com^ (easylist.txt: 33831) -.partners-z.com -# ||parlemagazine.com/images/banners/ (easylist.txt: 33830) -.parlemagazine.com/images/banners/ -# ||pardaphash.com/direct/tracker/add/ (easylist.txt: 33829) -.pardaphash.com/direct/tracker/add/ -# ||paradoxwikis.com/Sidebar.jpg (easylist.txt: 33828) -.paradoxwikis.com/Sidebar\.jpg -# ||parade.com/images/skins/ (easylist.txt: 33827) -.parade.com/images/skins/ -# ||pandora.com^*/mediaserverPublicRedirect.jsp (easylist.txt: 33826) -.pandora.com/.*/mediaserverPublicRedirect\.jsp -# ||paktribune.com^*/banner (easylist.txt: 33824) -.paktribune.com/.*/banner -# ||pakistantoday.com.pk^*/karachi_houston_PakistanToday.jpg (easylist.txt: 33823) -.pakistantoday.com.pk/.*/karachi_houston_PakistanToday\.jpg -# ||paisalive.com/include/popup.js (easylist.txt: 33822) -.paisalive.com/include/popup\.js -# ||pagesinventory.com/_data/img/*_125x400_ (easylist.txt: 33821) -.pagesinventory.com/_data/img/.*_125x400_ -# ||pacificnewscenter.com/images/banners/ (easylist.txt: 33820) -.pacificnewscenter.com/images/banners/ -# ||ozy.com^*/interstitial/ (easylist.txt: 33818) -.ozy.com/.*/interstitial/ -# ||ozy.com/modules/_common/ozy/pushdown/ (easylist.txt: 33817) -.ozy.com/modules/_common/ozy/pushdown/ -# ||ozy.com/modules/_common/ozy/full_width/ (easylist.txt: 33816) -.ozy.com/modules/_common/ozy/full_width/ -# ||ozy.com/modules/_common/ozy/blade/ (easylist.txt: 33815) -.ozy.com/modules/_common/ozy/blade/ -# ||ozqul.com^*/webbanners.png (easylist.txt: 33814) -.ozqul.com/.*/webbanners\.png -# ||oyetimes.com/join/advertisers.html (easylist.txt: 33813) -.oyetimes.com/join/advertisers\.html -# ||ox.furaffinity.net^ (easylist.txt: 33812) -.ox.furaffinity.net -# ||ox-d.wetransfer.com^ (easylist.txt: 33811) -.ox-d.wetransfer.com -# ||ox-d.sbnation.com^ (easylist.txt: 33810) -.ox-d.sbnation.com -# ||ox-d.rantsports.com^ (easylist.txt: 33809) -.ox-d.rantsports.com -# ||ow.ly^*/hootsuite_promo.jpg (easylist.txt: 33808) -.ow.ly/.*/hootsuite_promo\.jpg -# ||overclockers.co.uk^*/background/ (easylist.txt: 33806) -.overclockers.co.uk/.*/background/ -# ||overclock3d.net/img/pcp.jpg (easylist.txt: 33805) -.overclock3d.net/img/pcp\.jpg -# ||outlookmoney.com/sharekhan_ad.jpg (easylist.txt: 33803) -.outlookmoney.com/sharekhan_ad\.jpg -# ||outlookindia.com/image/banner_ (easylist.txt: 33802) -.outlookindia.com/image/banner_ -# ||ourmanga.com/funklicks (easylist.txt: 33801) -.ourmanga.com/funklicks -# ||oteupload.com/images/iLivid-download- (easylist.txt: 33800) -.oteupload.com/images/iLivid-download- -# ||orlandosentinel2.com^*-sponsorship- (easylist.txt: 33798) -.orlandosentinel2.com/.*-sponsorship- -# ||orkut.gmodules.com^/promote.xml (easylist.txt: 33797) -.orkut.gmodules.com//promote\.xml -# ||orissadiary.com/img/*-banner.gif (easylist.txt: 33796) -.orissadiary.com/img/.*-banner\.gif -# ||originalfm.com/images/hotspots/ (easylist.txt: 33795) -.originalfm.com/images/hotspots/ -# ||oraclebroadcasting.com/images/hempusa_330.gif (easylist.txt: 33794) -.oraclebroadcasting.com/images/hempusa_330\.gif -# ||oraclebroadcasting.com/images/extendovite300.gif (easylist.txt: 33793) -.oraclebroadcasting.com/images/extendovite300\.gif -# ||oraclebroadcasting.com/images/enerfood-300x90.gif (easylist.txt: 33792) -.oraclebroadcasting.com/images/enerfood-300x90\.gif -# ||optimum.net/utilities/doubleclicktargeting (easylist.txt: 33791) -.optimum.net/utilities/doubleclicktargeting -# ||optics.org/banners/ (easylist.txt: 33790) -.optics.org/banners/ -# ||oprah.com^*-300x335.jpg (easylist.txt: 33789) -.oprah.com/.*-300x335\.jpg -# ||opensubtitles.org/gfx/banners_campaigns/ (easylist.txt: 33788) -.opensubtitles.org/gfx/banners_campaigns/ -# ||opencurrency.com/wp-content/uploads/*-aocs-sidebar-commodity-bank.png (easylist.txt: 33787) -.opencurrency.com/wp-content/uploads/.*-aocs-sidebar-commodity-bank\.png -# ||opednews.com^*/iframe.php? (easylist.txt: 33786) -.opednews.com/.*/iframe\.php\? -# ||onvasortir.com/maximemo-pense-bete-ovs.png (easylist.txt: 33785) -.onvasortir.com/maximemo-pense-bete-ovs\.png -# ||onlygoodmovies.com/netflix.gif (easylist.txt: 33783) -.onlygoodmovies.com/netflix\.gif -# ||onlineshopping.co.za/expop/ (easylist.txt: 33782) -.onlineshopping.co.za/expop/ -# ||onlinenews.com.pk/onlinenews-admin/banners/ (easylist.txt: 33780) -.onlinenews.com.pk/onlinenews-admin/banners/ -# ||onlinemarketnews.org^*/silver72890.gif (easylist.txt: 33779) -.onlinemarketnews.org/.*/silver72890\.gif -# ||onlinemarketnews.org^*/silver300600.gif (easylist.txt: 33778) -.onlinemarketnews.org/.*/silver300600\.gif -# ||onlinekeystore.com/skin1/images/side- (easylist.txt: 33777) -.onlinekeystore.com/skin1/images/side- -# ||onionstatic.com/sponsored/ (easylist.txt: 33776) -.onionstatic.com/sponsored/ -# ||onepieceofbleach.com/onepieceofbleach-gao- (easylist.txt: 33775) -.onepieceofbleach.com/onepieceofbleach-gao- -# ||one-delivery.co.uk^*/sensitivedating.png (easylist.txt: 33774) -.one-delivery.co.uk/.*/sensitivedating\.png -# ||oncyprus.com^*/banners/ (easylist.txt: 33773) -.oncyprus.com/.*/banners/ -# ||on.net/images/gon_nodestore.jpg (easylist.txt: 33772) -.on.net/images/gon_nodestore\.jpg -# ||omgpop.com/dc? (easylist.txt: 33771) -.omgpop.com/dc\? -# ||oldgames.sk/images/topbar/ (easylist.txt: 33770) -.oldgames.sk/images/topbar/ -# ||okccdn.com/media/img/takeovers/ (easylist.txt: 33768) -.okccdn.com/media/img/takeovers/ -# ||oilprice.com/oiopub/ (easylist.txt: 33767) -.oilprice.com/oiopub/ -# ||oilprice.com/images/sponsors/ (easylist.txt: 33766) -.oilprice.com/images/sponsors/ -# ||oilprice.com/images/banners/ (easylist.txt: 33765) -.oilprice.com/images/banners/ -# ||ohmygore.com/ef_pub*.php (easylist.txt: 33764) -.ohmygore.com/ef_pub.*\.php -# ||oddschecker.com^*/takeover/ (easylist.txt: 33763) -.oddschecker.com/.*/takeover/ -# ||ocp.cbssports.com/pacific/request.jsp? (easylist.txt: 33762) -.ocp.cbssports.com/pacific/request\.jsp\? -# ||ocforums.com/adj/ (easylist.txt: 33761) -.ocforums.com/adj/ -# ||observer.ug/images/banners/ (easylist.txt: 33760) -.observer.ug/images/banners/ -# ||observer.org.sz/files/banners/ (easylist.txt: 33759) -.observer.org.sz/files/banners/ -# ||observer.com.na/images/banners/ (easylist.txt: 33758) -.observer.com.na/images/banners/ -# ||oascentral.newsmax.com^ (easylist.txt: 33755) -.oascentral.newsmax.com -# ||oascentral.hosted.ap.org^ (easylist.txt: 33754) -.oascentral.hosted.ap.org -# ||oascentral.chron.com^ (easylist.txt: 33753) -.oascentral.chron.com -# ||oasc07.citywire.co.uk^ (easylist.txt: 33752) -.oasc07.citywire.co.uk -# ||oas.skyscanner.net^ (easylist.txt: 33751) -.oas.skyscanner.net -# ||oas.autotrader.co.uk^ (easylist.txt: 33750) -.oas.autotrader.co.uk -# ||oanda.com/wandacache/wf-banner- (easylist.txt: 33749) -.oanda.com/wandacache/wf-banner- -# ||nznewsuk.co.uk/banners/ (easylist.txt: 33748) -.nznewsuk.co.uk/banners/ -# ||nzbking.com/static/nzbdrive_banner.swf (easylist.txt: 33747) -.nzbking.com/static/nzbdrive_banner\.swf -# ||nzbindex.nl/images/banners/ (easylist.txt: 33746) -.nzbindex.nl/images/banners/ -# ||nytimes.com^*-sponsor- (easylist.txt: 33745) -.nytimes.com/.*-sponsor- -# ||nytimes.com/ads/ (easylist.txt: 33744) -.nytimes.com/ads/ -# ||nyt.com^*-sponsor- (easylist.txt: 33743) -.nyt.com/.*-sponsor- -# ||nyrej.com/c/ (easylist.txt: 33742) -.nyrej.com/c/ -# ||nypost.com^*/takeovers/ (easylist.txt: 33741) -.nypost.com/.*/takeovers/ -# ||nymag.com^*/metrony_ (easylist.txt: 33740) -.nymag.com/.*/metrony_ -# ||nymag.com/scripts/skintakeover.js (easylist.txt: 33739) -.nymag.com/scripts/skintakeover\.js -# ||nymag.com/partners/ (easylist.txt: 33738) -.nymag.com/partners/ -# ||nydailynews.com^*-reskin- (easylist.txt: 33737) -.nydailynews.com/.*-reskin- -# ||nydailynews.com/PCRichards/ (easylist.txt: 33736) -.nydailynews.com/PCRichards/ -# ||nydailynews.com/img/sponsor/ (easylist.txt: 33735) -.nydailynews.com/img/sponsor/ -# ||nyaa.se/al (easylist.txt: 33734) -.nyaa.se/al -# ||nyaa.se/aj (easylist.txt: 33733) -.nyaa.se/aj -# ||nyaa.se/ai (easylist.txt: 33732) -.nyaa.se/ai -# ||nyaa.se/ah (easylist.txt: 33731) -.nyaa.se/ah -# ||nyaa.se/ag (easylist.txt: 33730) -.nyaa.se/ag -# ||nuvo.net^*/FooterPromoButtons.html (easylist.txt: 33729) -.nuvo.net/.*/FooterPromoButtons\.html -# ||nuttynewstoday.com/images/percento-banner.jpg (easylist.txt: 33728) -.nuttynewstoday.com/images/percento-banner\.jpg -# ||nuttynewstoday.com/images/hostwink.jpg (easylist.txt: 33727) -.nuttynewstoday.com/images/hostwink\.jpg -# ||nutritionhorizon.com/content/banners/ (easylist.txt: 33725) -.nutritionhorizon.com/content/banners/ -# ||numberempire.com/images/b/ (easylist.txt: 33724) -.numberempire.com/images/b/ -# ||nufc.com^*_360x120.gif (easylist.txt: 33723) -.nufc.com/.*_360x120\.gif -# ||nufc.com^*/The%20Gate_NUFC.com%20banner_%2016.8.13.gif (easylist.txt: 33722) -.nufc.com/.*/The%20Gate_NUFC\.com%20banner_%2016\.8\.13\.gif -# ||nufc.com^*/skyscraper.gif (easylist.txt: 33721) -.nufc.com/.*/skyscraper\.gif -# ||nufc.com^*/mjs-2013-11.png (easylist.txt: 33720) -.nufc.com/.*/mjs-2013-11\.png -# ||nufc.com^*/altoonative_Cardiff.gif (easylist.txt: 33719) -.nufc.com/.*/altoonative_Cardiff\.gif -# ||nufc.com/forddirectbanner.js (easylist.txt: 33718) -.nufc.com/forddirectbanner\.js -# ||nu2.nu^*_banner. (easylist.txt: 33717) -.nu2.nu/.*_banner\. -# ||nu2.nu^*/sponsor/ (easylist.txt: 33716) -.nu2.nu/.*/sponsor/ -# ||ntdtv.com^*/adv/ (easylist.txt: 33715) -.ntdtv.com/.*/adv/ -# ||nowwatchtvlive.com/revenuehits.html (easylist.txt: 33714) -.nowwatchtvlive.com/revenuehits\.html -# ||nowwatchtvlive.com/matomyads.php (easylist.txt: 33713) -.nowwatchtvlive.com/matomyads\.php -# ||nowgoal.com/images/foreign/ (easylist.txt: 33712) -.nowgoal.com/images/foreign/ -# ||novamov.com/images/download_video.jpg (easylist.txt: 33711) -.novamov.com/images/download_video\.jpg -# ||notebook-driver.com/wp-content/images/banner_ (easylist.txt: 33710) -.notebook-driver.com/wp-content/images/banner_ -# ||notdoppler.com^*-promo-siteskin. (easylist.txt: 33709) -.notdoppler.com/.*-promo-siteskin\. -# ||notdoppler.com^*-promo-homepageskin.png (easylist.txt: 33708) -.notdoppler.com/.*-promo-homepageskin\.png -# ||notalwaysromantic.com/images/banner- (easylist.txt: 33707) -.notalwaysromantic.com/images/banner- -# ||nosteam.ro^*/messagesprop.js (easylist.txt: 33706) -.nosteam.ro/.*/messagesprop\.js -# ||nosteam.ro^*/messages.js (easylist.txt: 33705) -.nosteam.ro/.*/messages\.js -# ||nosteam.ro^*/gamedvprop.js (easylist.txt: 33704) -.nosteam.ro/.*/gamedvprop\.js -# ||nosteam.ro^*/compressed.ggotab36.js (easylist.txt: 33703) -.nosteam.ro/.*/compressed\.ggotab36\.js -# ||norwaypost.no/images/banners/ (easylist.txt: 33702) -.norwaypost.no/images/banners/ -# ||northjersey.com^*_Sponsor. (easylist.txt: 33701) -.northjersey.com/.*_Sponsor\. -# ||noram.srv.ysm.yahoo.com^ (easylist.txt: 33700) -.noram.srv.ysm.yahoo.com -# ||nodevice.com/images/banners/ (easylist.txt: 33699) -.nodevice.com/images/banners/ -# ||nmimg.net/css/takeover_ (easylist.txt: 33698) -.nmimg.net/css/takeover_ -# ||nme.com/themes/takeovers/ (easylist.txt: 33697) -.nme.com/themes/takeovers/ -# ||nme.com/js/takeoverlay.js (easylist.txt: 33696) -.nme.com/js/takeoverlay\.js -# ||nitrobahn.com.s3.amazonaws.com/theme/getclickybadge.gif (easylist.txt: 33694) -.nitrobahn.com.s3.amazonaws.com/theme/getclickybadge\.gif -# ||nirsoft.net/banners/ (easylist.txt: 33693) -.nirsoft.net/banners/ -# ||nijobfinder.co.uk/affiliates/ (easylist.txt: 33691) -.nijobfinder.co.uk/affiliates/ -# ||niggasbelike.com/wp-content/themes/zeecorporate/images/b.jpg (easylist.txt: 33690) -.niggasbelike.com/wp-content/themes/zeecorporate/images/b\.jpg -# ||nigerianyellowpages.com/images/banners/ (easylist.txt: 33689) -.nigerianyellowpages.com/images/banners/ -# ||nigerianbulletin.com^*/Siropu/ (easylist.txt: 33688) -.nigerianbulletin.com/.*/Siropu/ -# ||nigeriamasterweb.com/Masterweb/banners_pic/ (easylist.txt: 33687) -.nigeriamasterweb.com/Masterweb/banners_pic/ -# ||nigeriafootball.com/img/affiliate_ (easylist.txt: 33686) -.nigeriafootball.com/img/affiliate_ -# ||nichepursuits.com/wp-content/uploads/*/long-tail-pro-banner.gif (easylist.txt: 33685) -.nichepursuits.com/wp-content/uploads/.*/long-tail-pro-banner\.gif -# ||ngrguardiannews.com/images/banners/ (easylist.txt: 33684) -.ngrguardiannews.com/images/banners/ -# ||ngohq.com/images/ad.jpg$~collapse (easylist.txt: 33683) -.ngohq.com/images/ad\.jpg -# ||nfl.com^*/page-background-image.jpg (easylist.txt: 33680) -.nfl.com/.*/page-background-image\.jpg -# ||nfl.com/assets/images/hp-poweredby- (easylist.txt: 33679) -.nfl.com/assets/images/hp-poweredby- -# ||nextstl.com/images/banners/ (easylist.txt: 33678) -.nextstl.com/images/banners/ -# ||nextbigwhat.com/wp-content/uploads/*ccavenue (easylist.txt: 33677) -.nextbigwhat.com/wp-content/uploads/.*ccavenue -# ||nextag.com^*/NextagSponsoredProducts.jsp? (easylist.txt: 33676) -.nextag.com/.*/NextagSponsoredProducts\.jsp\? -# ||newvision.co.ug/rightsidepopup/ (easylist.txt: 33675) -.newvision.co.ug/rightsidepopup/ -# ||newvision.co.ug/banners/ (easylist.txt: 33674) -.newvision.co.ug/banners/ -# ||newverhost.com/css/pp.js (easylist.txt: 33673) -.newverhost.com/css/pp\.js -# ||newverhost.com/css/onload.js (easylist.txt: 33672) -.newverhost.com/css/onload\.js -# ||newsweek.com^*interstitial.js (easylist.txt: 33671) -.newsweek.com/.*interstitial\.js -# ||newsvine.com/jenga/widget/ (easylist.txt: 33670) -.newsvine.com/jenga/widget/ -# ||newsvine.com//jenga/widget/ (easylist.txt: 33669) -# ||newsudanvision.com/images/Carjunctionadvert.gif (easylist.txt: 33668) -.newsudanvision.com/images/Carjunctionadvert\.gif -# ||newsudanvision.com/images/banners/ (easylist.txt: 33667) -.newsudanvision.com/images/banners/ -# ||newstrackindia.com/images/hairfallguru728x90.jpg (easylist.txt: 33666) -.newstrackindia.com/images/hairfallguru728x90\.jpg -# ||newsreview.com/images/promo.gif (easylist.txt: 33664) -.newsreview.com/images/promo\.gif -# ||newsonjapan.com^*/banner/ (easylist.txt: 33663) -.newsonjapan.com/.*/banner/ -# ||newsday.co.tt/banner/ (easylist.txt: 33662) -.newsday.co.tt/banner/ -# ||newscdn.com.au^*/aldi/ (easylist.txt: 33660) -.newscdn.com.au/.*/aldi/ -# ||newsbusters.org^*/banners/ (easylist.txt: 33659) -.newsbusters.org/.*/banners/ -# ||news.com.au^*/promotions/ (easylist.txt: 33657) -.news.com.au/.*/promotions/ -# ||news.com.au^*/promos/ (easylist.txt: 33656) -.news.com.au/.*/promos/ -# ||news.com.au^*/images/*-bg.jpg (easylist.txt: 33655) -.news.com.au/.*/images/.*-bg\.jpg -# ||news.com.au/cs/*/bg-body.jpg (easylist.txt: 33652) -.news.com.au/cs/.*/bg-body\.jpg -# ||news.am/pic/bnr/ (easylist.txt: 33651) -.news.am/pic/bnr/ -# ||news-record.com/app/deal/ (easylist.txt: 33650) -.news-record.com/app/deal/ -# ||news-leader.com^*/banner.js (easylist.txt: 33649) -.news-leader.com/.*/banner\.js -# ||newpct.com/soporte/ (easylist.txt: 33648) -.newpct.com/soporte/ -# ||newoxfordreview.org/banners/ad- (easylist.txt: 33647) -.newoxfordreview.org/banners/ad- -# ||newipnow.com/ad-js.php (easylist.txt: 33646) -.newipnow.com/ad-js\.php -# ||newburytoday.co.uk^*-WillisAinsworth1.gif (easylist.txt: 33645) -.newburytoday.co.uk/.*-WillisAinsworth1\.gif -# ||newalbumreleases.net/banners/ (easylist.txt: 33644) -.newalbumreleases.net/banners/ -# ||newafricanmagazine.com/images/banners/ (easylist.txt: 33643) -.newafricanmagazine.com/images/banners/ -# ||networkwestvirginia.com/uploads/user_banners/ (easylist.txt: 33641) -.networkwestvirginia.com/uploads/user_banners/ -# ||network.sofeminine.co.uk^ (easylist.txt: 33640) -.network.sofeminine.co.uk -# ||netupd8.com^*/ads/ (easylist.txt: 33639) -.netupd8.com/.*/ads/ -# ||netsplit.de/links/rootado.gif (easylist.txt: 33638) -.netsplit.de/links/rootado\.gif -# ||netspidermm.indiatimes.com^ (easylist.txt: 33637) -.netspidermm.indiatimes.com -# ||netindian.in/frontsquare*.php (easylist.txt: 33636) -.netindian.in/frontsquare.*\.php -# ||nest.youwatch.org^ (easylist.txt: 33633) -.nest.youwatch.org -# ||nesn.com/img/sponsors/ (easylist.txt: 33632) -.nesn.com/img/sponsors/ -# ||nesn.com/img/nesn-nation/header-dunkin.jpg (easylist.txt: 33631) -.nesn.com/img/nesn-nation/header-dunkin\.jpg -# ||nesn.com/img/nesn-nation/bg- (easylist.txt: 33630) -.nesn.com/img/nesn-nation/bg- -# ||nerej.com/c/ (easylist.txt: 33629) -.nerej.com/c/ -# ||neowin.net/images/atlas/aww (easylist.txt: 33628) -.neowin.net/images/atlas/aww -# ||neoseeker.com/a_pane.php (easylist.txt: 33627) -.neoseeker.com/a_pane\.php -# ||nemesistv.info/jQuery.NagAds1.min.js (easylist.txt: 33626) -.nemesistv.info/jQuery\.NagAds1\.min\.js -# ||nearlygood.com^*/_aff.php? (easylist.txt: 33625) -.nearlygood.com/.*/_aff\.php\? -# ||ndtv.com^*/sponsors/ (easylist.txt: 33624) -.ndtv.com/.*/sponsors/ -# ||ndtv.com^*/banner/ (easylist.txt: 33623) -.ndtv.com/.*/banner/ -# ||ncrypt.in/javascript/jquery.msgbox.min.js (easylist.txt: 33621) -.ncrypt.in/javascript/jquery\.msgbox\.min\.js -# ||ncrypt.in/images/useful/ (easylist.txt: 33620) -.ncrypt.in/images/useful/ -# ||ncrypt.in/images/banner (easylist.txt: 33619) -.ncrypt.in/images/banner -# ||ncrypt.in/images/a/ (easylist.txt: 33618) -.ncrypt.in/images/a/ -# ||ncrypt.in/images/1.gif (easylist.txt: 33617) -.ncrypt.in/images/1\.gif -# ||nciku.com^*banner (easylist.txt: 33616) -.nciku.com/.*banner -# ||nbr.co.nz^*-WingBanner_ (easylist.txt: 33615) -.nbr.co.nz/.*-WingBanner_ -# ||naukimg.com/banner/ (easylist.txt: 33614) -.naukimg.com/banner/ -# ||naturalnews.com/sba/ (easylist.txt: 33613) -.naturalnews.com/sba/ -# ||nativetimes.com/images/banners/ (easylist.txt: 33612) -.nativetimes.com/images/banners/ -# ||nationmultimedia.com/new/js/nation_popup.js (easylist.txt: 33611) -.nationmultimedia.com/new/js/nation_popup\.js -# ||nationmultimedia.com/home/banner/ (easylist.txt: 33610) -.nationmultimedia.com/home/banner/ -# ||nationalturk.com^*/banner (easylist.txt: 33609) -.nationalturk.com/.*/banner -# ||nationalreview.com/images/display_300x600- (easylist.txt: 33608) -.nationalreview.com/images/display_300x600- -# ||nationaljournal.com/js/njg.js (easylist.txt: 33607) -.nationaljournal.com/js/njg\.js -# ||nation.sc/images/pub (easylist.txt: 33606) -.nation.sc/images/pub -# ||nation.sc/images/banners/ (easylist.txt: 33605) -.nation.sc/images/banners/ -# ||nation.lk^*/banners/ (easylist.txt: 33604) -.nation.lk/.*/banners/ -# ||nation.co.ke^*_bg.png (easylist.txt: 33603) -.nation.co.ke/.*_bg\.png -# ||naij.com^*/branding/ (easylist.txt: 33600) -.naij.com/.*/branding/ -# ||mywot.net/files/wotcert/vipre.png (easylist.txt: 33599) -.mywot.net/files/wotcert/vipre\.png -# ||myway.com/gca_iframe.html (easylist.txt: 33598) -.myway.com/gca_iframe\.html -# ||mysuncoast.com^*/sponsors/ (easylist.txt: 33597) -.mysuncoast.com/.*/sponsors/ -# ||mysuncoast.com/app/wallpaper/ (easylist.txt: 33596) -.mysuncoast.com/app/wallpaper/ -# ||mysubtitles.com^*_banner.jpg (easylist.txt: 33595) -.mysubtitles.com/.*_banner\.jpg -# ||myspacecdn.com/cms/*_skin_ (easylist.txt: 33594) -.myspacecdn.com/cms/.*_skin_ -# ||myshadibridalexpo.com/banner/ (easylist.txt: 33593) -.myshadibridalexpo.com/banner/ -# ||mysafesearch.co.uk/adds/ (easylist.txt: 33592) -.mysafesearch.co.uk/adds/ -# ||myrls.me/open.js (easylist.txt: 33591) -.myrls.me/open\.js -# ||myretrotv.com^*_vertbnr.jpg (easylist.txt: 33590) -.myretrotv.com/.*_vertbnr\.jpg -# ||myretrotv.com^*_horbnr.jpg (easylist.txt: 33589) -.myretrotv.com/.*_horbnr\.jpg -# ||myproperty.co.za/banners/ (easylist.txt: 33588) -.myproperty.co.za/banners/ -# ||mypremium.tv^*/bpad.htm (easylist.txt: 33587) -.mypremium.tv/.*/bpad\.htm -# ||mypbrand.com/wp-content/uploads/*banner (easylist.txt: 33585) -.mypbrand.com/wp-content/uploads/.*banner -# ||myiplayer.eu/ad (easylist.txt: 33584) -.myiplayer.eu/ad -# ||mygaming.co.za/news/wp-content/wallpapers/ (easylist.txt: 33583) -.mygaming.co.za/news/wp-content/wallpapers/ -# ||myfpscheats.com/bannerimg.jpg (easylist.txt: 33582) -.myfpscheats.com/bannerimg\.jpg -# ||myfax.com/free/images/sendfax/cp_coffee_660x80.swf (easylist.txt: 33581) -.myfax.com/free/images/sendfax/cp_coffee_660x80\.swf -# ||mycentraljersey.com^*/sponsor_ (easylist.txt: 33580) -.mycentraljersey.com/.*/sponsor_ -# ||mybroadband.co.za/news/wp-content/wallpapers/ (easylist.txt: 33579) -.mybroadband.co.za/news/wp-content/wallpapers/ -# ||myam1230.com/images/banners/ (easylist.txt: 33578) -.myam1230.com/images/banners/ -# ||my-link.pro/rotatingBanner.js (easylist.txt: 33577) -.my-link.pro/rotatingBanner\.js -# ||muthafm.com^*/partners.png (easylist.txt: 33576) -.muthafm.com/.*/partners\.png -# ||mustangevolution.com^*/banners/ (easylist.txt: 33575) -.mustangevolution.com/.*/banners/ -# ||mustangevolution.com^*/banner/ (easylist.txt: 33574) -.mustangevolution.com/.*/banner/ -# ||mustangevolution.com/images/300x100_ (easylist.txt: 33573) -.mustangevolution.com/images/300x100_ -# ||musictarget.com*/! (easylist.txt: 33572) -.musictarget.com*./(.*/)?! -# ||musicremedy.com/banner/ (easylist.txt: 33571) -.musicremedy.com/banner/ -# ||musicplayon.com/banner? (easylist.txt: 33570) -.musicplayon.com/banner\? -# ||musicmaza.com/bannerdyn (easylist.txt: 33569) -.musicmaza.com/bannerdyn -# ||music.yahoo.com/get-free-html (easylist.txt: 33568) -.music.yahoo.com/get-free-html -# ||murdermysteries.com/banners-murder/ (easylist.txt: 33567) -.murdermysteries.com/banners-murder/ -# ||multiupload.biz/r_ads2 (easylist.txt: 33566) -.multiupload.biz/r_ads2 -# ||multiup.org/img/sonyoutube_long.gif (easylist.txt: 33565) -.multiup.org/img/sonyoutube_long\.gif -# ||muchmusic.com^*/leaderboard_frame_obiwan.html (easylist.txt: 33564) -.muchmusic.com/.*/leaderboard_frame_obiwan\.html -# ||muchmusic.com^*/bigbox_frame_resizer.html (easylist.txt: 33563) -.muchmusic.com/.*/bigbox_frame_resizer\.html -# ||muchmusic.com/images/*-skin.png (easylist.txt: 33562) -.muchmusic.com/images/.*-skin\.png -# ||mtv.co.uk^*/btn_itunes.png (easylist.txt: 33560) -.mtv.co.uk/.*/btn_itunes\.png -# ||mtbr.com/ajax/hotdeals/ (easylist.txt: 33559) -.mtbr.com/ajax/hotdeals/ -# ||msw.ms^*/jquery.MSWPagePeel- (easylist.txt: 33558) -.msw.ms/.*/jquery\.MSWPagePeel- -# ||msn.com/?adunitid (easylist.txt: 33557) -.msn.com/\?adunitid -# ||mp3skull.com/call_banner_exec_new. (easylist.txt: 33555) -.mp3skull.com/call_banner_exec_new\. -# ||mp3s.su/uploads/___/djz_to.png (easylist.txt: 33554) -.mp3s.su/uploads/___/djz_to\.png -# ||mp3mediaworld.com*/! (easylist.txt: 33553) -.mp3mediaworld.com*./(.*/)?! -# ||mp3li.net^*banner (easylist.txt: 33552) -.mp3li.net/.*banner -# ||mp3.li/images/md_banner_ (easylist.txt: 33551) -.mp3.li/images/md_banner_ -# ||movzap.com/zad.html (easylist.txt: 33549) -.movzap.com/zad\.html -# ||movzap.com/aad.html (easylist.txt: 33548) -.movzap.com/aad\.html -# ||movstreaming.com/images/edhim.jpg (easylist.txt: 33547) -.movstreaming.com/images/edhim\.jpg -# ||movizland.com/images/banners/ (easylist.txt: 33546) -.movizland.com/images/banners/ -# ||moviewallpaper.net/js/mwpopunder.js (easylist.txt: 33545) -.moviewallpaper.net/js/mwpopunder\.js -# ||movie4k.tv/e.js (easylist.txt: 33544) -.movie4k.tv/e\.js -# ||movie4k.to/*.js (easylist.txt: 33543) -.movie4k.to/.*\.js -# ||movie2kto.ws/popup (easylist.txt: 33542) -.movie2kto.ws/popup -# ||movie2k.tl/serve.php (easylist.txt: 33541) -.movie2k.tl/serve\.php -# ||movie2k.tl/layers/ (easylist.txt: 33540) -.movie2k.tl/layers/ -# ||mouthshut.com^*/zedo.aspx (easylist.txt: 33539) -.mouthshut.com/.*/zedo\.aspx -# ||mousesteps.com/images/banners/ (easylist.txt: 33538) -.mousesteps.com/images/banners/ -# ||mountainbuzz.com/attachments/banners/ (easylist.txt: 33537) -.mountainbuzz.com/attachments/banners/ -# ||motorweek.org^*/sponsor_logos/ (easylist.txt: 33536) -.motorweek.org/.*/sponsor_logos/ -# ||motortrader.com.my/skinner/ (easylist.txt: 33535) -.motortrader.com.my/skinner/ -# ||motorhomefacts.com/images/banners/ (easylist.txt: 33534) -.motorhomefacts.com/images/banners/ -# ||motorcycles-motorbikes.com/pictures/sponsors/ (easylist.txt: 33533) -.motorcycles-motorbikes.com/pictures/sponsors/ -# ||morningstaronline.co.uk/offsite/progressive-listings/ (easylist.txt: 33532) -.morningstaronline.co.uk/offsite/progressive-listings/ -# ||morefree.net/wp-content/uploads/*/mauritanie.gif (easylist.txt: 33531) -.morefree.net/wp-content/uploads/.*/mauritanie\.gif -# ||morefmphilly.com^*/sponsors/ (easylist.txt: 33530) -.morefmphilly.com/.*/sponsors/ -# ||monster.com/null&pp (easylist.txt: 33529) -.monster.com/null&pp -# ||monkeygamesworld.com/images/banners/ (easylist.txt: 33528) -.monkeygamesworld.com/images/banners/ -# ||monitor.co.ug/image/view/*/468/ (easylist.txt: 33527) -.monitor.co.ug/image/view/.*/468/ -# ||monitor.co.ug/image/view/*/120/ (easylist.txt: 33526) -.monitor.co.ug/image/view/.*/120/ -# ||moneymedics.biz/upload/banners/ (easylist.txt: 33525) -.moneymedics.biz/upload/banners/ -# ||moneymakerdiscussion.com/mmd-banners/ (easylist.txt: 33524) -.moneymakerdiscussion.com/mmd-banners/ -# ||mochiads.com/srv/ (easylist.txt: 33522) -.mochiads.com/srv/ -# ||mobilephonetalk.com/eurovps.swf (easylist.txt: 33521) -.mobilephonetalk.com/eurovps\.swf -# ||mob.org/banner/ (easylist.txt: 33520) -.mob.org/banner/ -# ||mnn.com^*/120x60/ (easylist.txt: 33519) -.mnn.com/.*/120x60/ -# ||mmosite.com/sponsor/ (easylist.txt: 33517) -.mmosite.com/sponsor/ -# ||mmorpg.com/images/skins/ (easylist.txt: 33516) -.mmorpg.com/images/skins/ -# ||mmorpg.com/images/mr_ss_ (easylist.txt: 33515) -.mmorpg.com/images/mr_ss_ -# ||mmorpg.com/images/*_hots_r0.jpg (easylist.txt: 33514) -.mmorpg.com/images/.*_hots_r0\.jpg -# ||mmoculture.com/wp-content/uploads/*-background- (easylist.txt: 33513) -.mmoculture.com/wp-content/uploads/.*-background- -# ||mlb.com^*/sponsorship/ (easylist.txt: 33511) -.mlb.com/.*/sponsorship/ -# ||mlb.com/images/*_videoskin_*.jpg (easylist.txt: 33510) -.mlb.com/images/.*_videoskin_.*\.jpg -# ||mizzima.com/images/banners/ (easylist.txt: 33509) -.mizzima.com/images/banners/ -# ||mixx96.com/images/banners/ (easylist.txt: 33508) -.mixx96.com/images/banners/ -# ||mixfm.co.za^*/tallspon (easylist.txt: 33507) -.mixfm.co.za/.*/tallspon -# ||mixfm.co.za/images/banner (easylist.txt: 33506) -.mixfm.co.za/images/banner -# ||misterwhat.co.uk/business-company-300/ (easylist.txt: 33505) -.misterwhat.co.uk/business-company-300/ -# ||mirrorstack.com/?q=r_ads (easylist.txt: 33504) -.mirrorstack.com/\?q=r_ads -# ||mirrorcreator.com/js/pu_ad.js (easylist.txt: 33503) -.mirrorcreator.com/js/pu_ad\.js -# ||mirrorcreator.com/js/mpop.js (easylist.txt: 33502) -.mirrorcreator.com/js/mpop\.js -# ||mirror.co.uk^*_promos_ (easylist.txt: 33501) -.mirror.co.uk/.*_promos_ -# ||mirror.co.uk^*/sponsors/ (easylist.txt: 33500) -.mirror.co.uk/.*/sponsors/ -# ||mirror.co.uk^*/gutters/ (easylist.txt: 33499) -.mirror.co.uk/.*/gutters/ -# ||minnpost.com^*/sponsor/ (easylist.txt: 33498) -.minnpost.com/.*/sponsor/ -# ||mininova.org/js/vidukilayer.js (easylist.txt: 33497) -.mininova.org/js/vidukilayer\.js -# ||miniclipcdn.com/images/takeovers/ (easylist.txt: 33496) -.miniclipcdn.com/images/takeovers/ -# ||mindfood.com/upload/images/wallpaper_images/ (easylist.txt: 33495) -.mindfood.com/upload/images/wallpaper_images/ -# ||milanounited.co.za/images/sponsor_ (easylist.txt: 33494) -.milanounited.co.za/images/sponsor_ -# ||mikejung.biz/images/*/728x90xLiquidWeb_ (easylist.txt: 33493) -.mikejung.biz/images/.*/728x90xLiquidWeb_ -# ||mightyupload.com/popuu.js (easylist.txt: 33492) -.mightyupload.com/popuu\.js -# ||midlandsradio.fm/bms/ (easylist.txt: 33491) -.midlandsradio.fm/bms/ -# ||middle-east-online.com^*/meoadv/ (easylist.txt: 33490) -.middle-east-online.com/.*/meoadv/ -# ||michronicleonline.com/images/banners/ (easylist.txt: 33489) -.michronicleonline.com/images/banners/ -# ||micast.tv/clean.php (easylist.txt: 33488) -.micast.tv/clean\.php -# ||miamiherald.com^*/teamfanshop/ (easylist.txt: 33487) -.miamiherald.com/.*/teamfanshop/ -# ||miamiherald.com^*/dealsaver/ (easylist.txt: 33486) -.miamiherald.com/.*/dealsaver/ -# ||mi-pro.co.uk/banners/ (easylist.txt: 33485) -.mi-pro.co.uk/banners/ -# ||mhvillage.com/ppc.php? (easylist.txt: 33484) -.mhvillage.com/ppc\.php\? -# ||mgnetwork.com/dealtaker/ (easylist.txt: 33483) -.mgnetwork.com/dealtaker/ -# ||mgid.com/ban/ (easylist.txt: 33482) -.mgid.com/ban/ -# ||mg.co.za^*/wallpaper (easylist.txt: 33481) -.mg.co.za/.*/wallpaper -# ||mfcdn.net/media/*right (easylist.txt: 33478) -.mfcdn.net/media/.*right -# ||mfcdn.net/media/*left (easylist.txt: 33477) -.mfcdn.net/media/.*left -# ||metromedia.co.za/bannersys/banners/ (easylist.txt: 33476) -.metromedia.co.za/bannersys/banners/ -# ||metrolyrics.com/js/min/tonefuse.js (easylist.txt: 33475) -.metrolyrics.com/js/min/tonefuse\.js -# ||metradar.ch^*/banner_ (easylist.txt: 33474) -.metradar.ch/.*/banner_ -# ||meteox.com/bannerdetails.aspx? (easylist.txt: 33473) -.meteox.com/bannerdetails\.aspx\? -# ||meteox.co.uk/bannerdetails.aspx? (easylist.txt: 33472) -.meteox.co.uk/bannerdetails\.aspx\? -# ||meteovista.co.uk/go/banner/ (easylist.txt: 33471) -.meteovista.co.uk/go/banner/ -# ||meteomedia.com^*&placement (easylist.txt: 33470) -.meteomedia.com/.*&placement -# ||messianictimes.com/images/Word%20of%20Messiah%20Ministries1.png (easylist.txt: 33469) -.messianictimes.com/images/Word%20of%20Messiah%20Ministries1\.png -# ||messianictimes.com/images/MJBI.org.gif (easylist.txt: 33468) -.messianictimes.com/images/MJBI\.org\.gif -# ||messianictimes.com/images/Jews%20for%20Jesus%20Banner.png (easylist.txt: 33467) -.messianictimes.com/images/Jews%20for%20Jesus%20Banner\.png -# ||messianictimes.com/images/Israel%20Today%20Logo.png (easylist.txt: 33466) -.messianictimes.com/images/Israel%20Today%20Logo\.png -# ||messianictimes.com/images/banners/ (easylist.txt: 33465) -.messianictimes.com/images/banners/ -# ||messianictimes.com/images/4-13/reach.jpg (easylist.txt: 33464) -.messianictimes.com/images/4-13/reach\.jpg -# ||messianictimes.com/images/1-13/ba_mhfinal_ (easylist.txt: 33463) -.messianictimes.com/images/1-13/ba_mhfinal_ -# ||merriam-webster.com^*/accipiter.js (easylist.txt: 33462) -.merriam-webster.com/.*/accipiter\.js -# ||merriam-webster.com/creative.php? (easylist.txt: 33461) -.merriam-webster.com/creative\.php\? -# ||mentalfloss.com^*-skin- (easylist.txt: 33460) -.mentalfloss.com/.*-skin- -# ||menafn.com^*/banner_ (easylist.txt: 33459) -.menafn.com/.*/banner_ -# ||memory-alpha.org/__varnish_liftium/ (easylist.txt: 33457) -.memory-alpha.org/__varnish_liftium/ -# ||meizufans.eu/vifocal.gif (easylist.txt: 33456) -.meizufans.eu/vifocal\.gif -# ||meizufans.eu/merimobiles.gif (easylist.txt: 33455) -.meizufans.eu/merimobiles\.gif -# ||meizufans.eu/efox.gif (easylist.txt: 33454) -.meizufans.eu/efox\.gif -# ||megauploadtrend.com/iframe/if.php? (easylist.txt: 33452) -.megauploadtrend.com/iframe/if\.php\? -# ||megashares.com/cache_program_banner.html (easylist.txt: 33450) -.megashares.com/cache_program_banner\.html -# ||megasearch.us/turboflirt.gif (easylist.txt: 33449) -.megasearch.us/turboflirt\.gif -# ||megasearch.us/ifx/ifx.php? (easylist.txt: 33448) -.megasearch.us/ifx/ifx\.php\? -# ||meetic.com/js/*/site_under_ (easylist.txt: 33447) -.meetic.com/js/.*/site_under_ -# ||medicaldaily.com/views/images/banners/ (easylist.txt: 33446) -.medicaldaily.com/views/images/banners/ -# ||mediaweek.com.au/storage/*_234x234.jpg? (easylist.txt: 33445) -.mediaweek.com.au/storage/.*_234x234\.jpg\? -# ||mediaupdate.co.za/temp/banner_ (easylist.txt: 33444) -.mediaupdate.co.za/temp/banner_ -# ||mediaticks.com/images/genx.jpg (easylist.txt: 33443) -.mediaticks.com/images/genx\.jpg -# ||mediaticks.com/images/genx-infotech.jpg (easylist.txt: 33442) -.mediaticks.com/images/genx-infotech\.jpg -# ||mediaticks.com/bollywood.jpg (easylist.txt: 33441) -.mediaticks.com/bollywood\.jpg -# ||mediaspanonline.com/inc.php?uri=/&bannerPositions= (easylist.txt: 33438) -.mediaspanonline.com/inc\.php\?uri=/&bannerPositions= -# ||mediaspanonline.com/images/buy-itunes.png (easylist.txt: 33437) -.mediaspanonline.com/images/buy-itunes\.png -# ||mediamgr.ugo.com^ (easylist.txt: 33436) -.mediamgr.ugo.com -# ||mediafiretrend.com/turboflirt.gif (easylist.txt: 33435) -.mediafiretrend.com/turboflirt\.gif -# ||mediafiretrend.com/ifx/ifx.php? (easylist.txt: 33434) -.mediafiretrend.com/ifx/ifx\.php\? -# ||mediafire.re/popup.js (easylist.txt: 33433) -.mediafire.re/popup\.js -# ||mediafire.com^*/rockmelt_tabcontent.jpg (easylist.txt: 33432) -.mediafire.com/.*/rockmelt_tabcontent\.jpg -# ||mediafire.com/templates/linkto/ (easylist.txt: 33430) -.mediafire.com/templates/linkto/ -# ||mediafire.com/images/rockmelt/ (easylist.txt: 33429) -.mediafire.com/images/rockmelt/ -# ||media.abc.go.com^*/callouts/ (easylist.txt: 33427) -.media.abc.go.com/.*/callouts/ -# ||media-mgmt.armorgames.com^ (easylist.txt: 33426) -.media-mgmt.armorgames.com -# ||media-imdb.com^*/affiliates/ (easylist.txt: 33424) -.media-imdb.com/.*/affiliates/ -# ||media-imdb.com/images/*/mptv_banner_ (easylist.txt: 33423) -.media-imdb.com/images/.*/mptv_banner_ -# ||media-delivery.armorgames.com^ (easylist.txt: 33422) -.media-delivery.armorgames.com -# ||medhelp.org/hserver/ (easylist.txt: 33421) -.medhelp.org/hserver/ -# ||mechodownload.com/forum/images/affiliates/ (easylist.txt: 33420) -.mechodownload.com/forum/images/affiliates/ -# ||meanjin.com.au/static/images/sponsors.jpg (easylist.txt: 33419) -.meanjin.com.au/static/images/sponsors\.jpg -# ||mealsandsteals.sandiego6.com^ (easylist.txt: 33418) -.mealsandsteals.sandiego6.com -# ||mcvuk.com/static/banners/ (easylist.txt: 33417) -.mcvuk.com/static/banners/ -# ||mcstatic.com^*/billboard_ (easylist.txt: 33416) -.mcstatic.com/.*/billboard_ -# ||mcsesports.com/images/sponsors/ (easylist.txt: 33415) -.mcsesports.com/images/sponsors/ -# ||mcnews.com.au/banners/ (easylist.txt: 33414) -.mcnews.com.au/banners/ -# ||mcjonline.com/filemanager/userfiles/banners/ (easylist.txt: 33413) -.mcjonline.com/filemanager/userfiles/banners/ -# ||mccont.com/takeover/ (easylist.txt: 33412) -.mccont.com/takeover/ -# ||mccont.com/sda/ (easylist.txt: 33411) -.mccont.com/sda/ -# ||mccont.com/campaign%20management/ (easylist.txt: 33410) -.mccont.com/campaign%20management/ -# ||mbl.is/mm/augl/ (easylist.txt: 33409) -.mbl.is/mm/augl/ -# ||mbl.is/augl/ (easylist.txt: 33408) -.mbl.is/augl/ -# ||mb.hockeybuzz.com^ (easylist.txt: 33407) -.mb.hockeybuzz.com -# ||mb.com.ph^*/skyscraper- (easylist.txt: 33406) -.mb.com.ph/.*/skyscraper- -# ||maxgames.com^*/sponsor_ (easylist.txt: 33405) -.maxgames.com/.*/sponsor_ -# ||maxconsole.com/maxconsole/banners/ (easylist.txt: 33404) -.maxconsole.com/maxconsole/banners/ -# ||mauritiusnews.co.uk/images/banners/ (easylist.txt: 33403) -.mauritiusnews.co.uk/images/banners/ -# ||mathforum.org/images/tutor.gif (easylist.txt: 33402) -.mathforum.org/images/tutor\.gif -# ||mashable.com/tripleclick.html (easylist.txt: 33401) -.mashable.com/tripleclick\.html -# ||mary.com/728_header.php (easylist.txt: 33400) -.mary.com/728_header\.php -# ||marketplace.org^*/support_block/ (easylist.txt: 33399) -.marketplace.org/.*/support_block/ -# ||marketnewsvideo.com/mnvport160.gif (easylist.txt: 33398) -.marketnewsvideo.com/mnvport160\.gif -# ||marketnewsvideo.com/etfchannel/evfad1.gif (easylist.txt: 33397) -.marketnewsvideo.com/etfchannel/evfad1\.gif -# ||marketintelligencecenter.com/images/brokers/ (easylist.txt: 33396) -.marketintelligencecenter.com/images/brokers/ -# ||marketingupdate.co.za/temp/banner_ (easylist.txt: 33395) -.marketingupdate.co.za/temp/banner_ -# ||marketingsolutions.yahoo.com^ (easylist.txt: 33394) -.marketingsolutions.yahoo.com -# ||marketingpilgrim.com/wp-content/uploads/*/trackur.com- (easylist.txt: 33393) -.marketingpilgrim.com/wp-content/uploads/.*/trackur\.com- -# ||marineterms.com/images/banners/ (easylist.txt: 33392) -.marineterms.com/images/banners/ -# ||marengo-uniontimes.com/images/banners/ (easylist.txt: 33391) -.marengo-uniontimes.com/images/banners/ -# ||maravipost.com/images/banners/ (easylist.txt: 33390) -.maravipost.com/images/banners/ -# ||mapsofindia.com/widgets/tribalfusionboxadd.html (easylist.txt: 33389) -.mapsofindia.com/widgets/tribalfusionboxadd\.html -# ||manxradio.com^*/banners_ (easylist.txt: 33388) -.manxradio.com/.*/banners_ -# ||manutd.com^*/Sponsors/ (easylist.txt: 33387) -.manutd.com/.*/Sponsors/ -# ||manilatimes.net/images/banners/ (easylist.txt: 33386) -.manilatimes.net/images/banners/ -# ||manicapost.com^*/banners/ (easylist.txt: 33385) -.manicapost.com/.*/banners/ -# ||maniastreaming.com/pp2/ (easylist.txt: 33384) -.maniastreaming.com/pp2/ -# ||mani-admin-plugin.com^*/banners/ (easylist.txt: 33383) -.mani-admin-plugin.com/.*/banners/ -# ||manhattantimesnews.com/images/banners/ (easylist.txt: 33382) -.manhattantimesnews.com/images/banners/ -# ||mangaupdates.com/affiliates/ (easylist.txt: 33381) -.mangaupdates.com/affiliates/ -# ||mangarush.com/xtend.php (easylist.txt: 33380) -.mangarush.com/xtend\.php -# ||mangareader.net/images/800-x-100 (easylist.txt: 33379) -.mangareader.net/images/800-x-100 -# ||mangafox.com/media/game321/ (easylist.txt: 33378) -.mangafox.com/media/game321/ -# ||malwaredomains.com/ra.jpg (easylist.txt: 33377) -.malwaredomains.com/ra\.jpg -# ||maltatoday.com.mt/ui_frontend/display_external_module/ (easylist.txt: 33376) -.maltatoday.com.mt/ui_frontend/display_external_module/ -# ||malaysiakini.com/misc/banners/ (easylist.txt: 33375) -.malaysiakini.com/misc/banners/ -# ||malaysiabay.org^*creatives.php? (easylist.txt: 33374) -.malaysiabay.org/.*creatives\.php\? -# ||malaysiabay.org^*/creative.js (easylist.txt: 33373) -.malaysiabay.org/.*/creative\.js -# ||makeagif.com/parts/fiframe.php (easylist.txt: 33372) -.makeagif.com/parts/fiframe\.php -# ||majorgeeks.com^*/banners/ (easylist.txt: 33371) -.majorgeeks.com/.*/banners/ -# ||majorgeeks.com/images/mg120.jpg (easylist.txt: 33370) -.majorgeeks.com/images/mg120\.jpg -# ||majorgeeks.com/images/mb-hb-2.jpg (easylist.txt: 33369) -.majorgeeks.com/images/mb-hb-2\.jpg -# ||majorgeeks.com/images/download_sd_ (easylist.txt: 33368) -.majorgeeks.com/images/download_sd_ -# ||majorgeeks.com/images/*_336x280.jpg (easylist.txt: 33367) -.majorgeeks.com/images/.*_336x280\.jpg -# ||majorgeeks.com/aff/ (easylist.txt: 33366) -.majorgeeks.com/aff/ -# ||mailinator.com^*/clickbanner.jpg (easylist.txt: 33365) -.mailinator.com/.*/clickbanner\.jpg -# ||mailinator.com/images/abine/leaderboard- (easylist.txt: 33364) -.mailinator.com/images/abine/leaderboard- -# ||mail.yahoo.com/neo/mbimg?av/curveball/ds/ (easylist.txt: 33363) -.mail.yahoo.com/neo/mbimg\?av/curveball/ds/ -# ||mail.yahoo.com/mc/md.php? (easylist.txt: 33362) -.mail.yahoo.com/mc/md\.php\? -# ||madville.com/afs.php (easylist.txt: 33361) -.madville.com/afs\.php -# ||madskristensen.net/discount2.js (easylist.txt: 33360) -.madskristensen.net/discount2\.js -# ||mads.dailymail.co.uk^ (easylist.txt: 33359) -.mads.dailymail.co.uk -# ||macworld.com/ads/ (easylist.txt: 33357) -.macworld.com/ads/ -# ||macworld.co.uk^*/textdeals/ (easylist.txt: 33356) -.macworld.co.uk/.*/textdeals/ -# ||macworld.co.uk/promo/ (easylist.txt: 33355) -.macworld.co.uk/promo/ -# ||macupdate.com/js/google_service.js (easylist.txt: 33354) -.macupdate.com/js/google_service\.js -# ||macobserver.com^*/deal_brothers/ (easylist.txt: 33353) -.macobserver.com/.*/deal_brothers/ -# ||macobserver.com/js/givetotmo.js (easylist.txt: 33352) -.macobserver.com/js/givetotmo\.js -# ||macmillandictionary.com/info/frame.html?zone= (easylist.txt: 33351) -.macmillandictionary.com/info/frame\.html\?zone= -# ||maciverse.mangoco.netdna-cdn.com^*banner (easylist.txt: 33350) -.maciverse.mangoco.netdna-cdn.com/.*banner -# ||macintouch.com/images/owc_ (easylist.txt: 33349) -.macintouch.com/images/owc_ -# ||macintouch.com/images/amaz_ (easylist.txt: 33348) -.macintouch.com/images/amaz_ -# ||machovideo.com/img/site/postimg2/rotate.php (easylist.txt: 33347) -.machovideo.com/img/site/postimg2/rotate\.php -# ||macblurayplayer.com/image/amazon- (easylist.txt: 33346) -.macblurayplayer.com/image/amazon- -# ||macaunews.com.mo/images/stories/banners/ (easylist.txt: 33345) -.macaunews.com.mo/images/stories/banners/ -# ||macaudailytimes.com.mo/files/banners/ (easylist.txt: 33344) -.macaudailytimes.com.mo/files/banners/ -# ||m4carbine.net/tabs/ (easylist.txt: 33343) -.m4carbine.net/tabs/ -# ||m-w.com/creative.php (easylist.txt: 33342) -.m-w.com/creative\.php -# ||lyricsfreak.com^*/overlay.js (easylist.txt: 33341) -.lyricsfreak.com/.*/overlay\.js -# ||lygo.com/scripts/catman/ (easylist.txt: 33339) -.lygo.com/scripts/catman/ -# ||lycos.com/catman/ (easylist.txt: 33338) -.lycos.com/catman/ -# ||lw2.gamecopyworld.com^ (easylist.txt: 33337) -.lw2.gamecopyworld.com -# ||luxury4play.com^*/ads/ (easylist.txt: 33334) -.luxury4play.com/.*/ads/ -# ||luckyshare.net/images/sda/ (easylist.txt: 33333) -.luckyshare.net/images/sda/ -# ||luckyshare.net/images/2top.png (easylist.txt: 33332) -.luckyshare.net/images/2top\.png -# ||luckyshare.net/images/1gotlucky.png (easylist.txt: 33331) -.luckyshare.net/images/1gotlucky\.png -# ||lucianne.com^*_*.html (easylist.txt: 33330) -.lucianne.com/.*_.*\.html -# ||lshunter.tv/images/bets/ (easylist.txt: 33328) -.lshunter.tv/images/bets/ -# ||lowyat.net/mainpage/background.jpg (easylist.txt: 33327) -.lowyat.net/mainpage/background\.jpg -# ||lowyat.net/lowyat/lowyat-bg.jpg (easylist.txt: 33326) -.lowyat.net/lowyat/lowyat-bg\.jpg -# ||lowendbox.com/wp-content/themes/leb/banners/ (easylist.txt: 33325) -.lowendbox.com/wp-content/themes/leb/banners/ -# ||lowellsun.com/litebanner/ (easylist.txt: 33324) -.lowellsun.com/litebanner/ -# ||lowbird.com/lbpun.php (easylist.txt: 33323) -.lowbird.com/lbpun\.php -# ||lowbird.com/lbpu.php (easylist.txt: 33322) -.lowbird.com/lbpu\.php -# ||lostrabbitmedia.com/images/banners/ (easylist.txt: 33321) -.lostrabbitmedia.com/images/banners/ -# ||looky.hyves.org^ (easylist.txt: 33320) -.looky.hyves.org -# ||lookbook.nu/show_skyscraper.html (easylist.txt: 33318) -.lookbook.nu/show_skyscraper\.html -# ||lookbook.nu/show_leaderboard.html (easylist.txt: 33317) -.lookbook.nu/show_leaderboard\.html -# ||londonstockexchange.com^*/fx.gif (easylist.txt: 33316) -.londonstockexchange.com/.*/fx\.gif -# ||londonprivaterentals.standard.co.uk^ (easylist.txt: 33315) -.londonprivaterentals.standard.co.uk -# ||london2012.com/imgml/partners/footer/ (easylist.txt: 33314) -.london2012.com/imgml/partners/footer/ -# ||london2012.com/img/sponsors/ (easylist.txt: 33313) -.london2012.com/img/sponsors/ -# ||lolzbook.com/test/ (easylist.txt: 33312) -.lolzbook.com/test/ -# ||loleasy.com^*/adsmanager.js (easylist.txt: 33311) -.loleasy.com/.*/adsmanager\.js -# ||loleasy.com/promo/ (easylist.txt: 33310) -.loleasy.com/promo/ -# ||logotv.com/content/skins/ (easylist.txt: 33309) -.logotv.com/content/skins/ -# ||logoopenstock.com/img/banners/ (easylist.txt: 33308) -.logoopenstock.com/img/banners/ -# ||locanto.co.za/run/afcbackfill/ (easylist.txt: 33307) -.locanto.co.za/run/afcbackfill/ -# ||localvictory.com^*/Trailblazer-Ad.png (easylist.txt: 33306) -.localvictory.com/.*/Trailblazer-Ad\.png -# ||localdirectories.com.au^*/bannerimages/ (easylist.txt: 33305) -.localdirectories.com.au/.*/bannerimages/ -# ||lmgtfy.com/s/images/ls_ (easylist.txt: 33304) -.lmgtfy.com/s/images/ls_ -# ||ll.a.hulu.com^ (easylist.txt: 33303) -.ll.a.hulu.com -# ||livingscoop.com/vastload.php (easylist.txt: 33302) -.livingscoop.com/vastload\.php -# ||livetvcenter.com/satellitedirect_ (easylist.txt: 33301) -.livetvcenter.com/satellitedirect_ -# ||livetv.ru/mb/ (easylist.txt: 33300) -.livetv.ru/mb/ -# ||livetradingnews.com/wp-content/uploads/vamp_cigarettes.png (easylist.txt: 33299) -.livetradingnews.com/wp-content/uploads/vamp_cigarettes\.png -# ||livestream.com^*/overlay/ (easylist.txt: 33298) -.livestream.com/.*/overlay/ -# ||livescore.in/res/image/bookmaker-list.png (easylist.txt: 33296) -.livescore.in/res/image/bookmaker-list\.png -# ||liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn.gif (easylist.txt: 33295) -.liveonlinetv247.com/images/muvixx-150x50-watch-now-in-hd-play-btn\.gif -# ||livejasmin.com/freechat.php (easylist.txt: 33294) -.livejasmin.com/freechat\.php -# ||live-proxy.com/vectrotunnel-logo.jpg (easylist.txt: 33293) -.live-proxy.com/vectrotunnel-logo\.jpg -# ||live-proxy.com/hide-my-ass.gif (easylist.txt: 33292) -.live-proxy.com/hide-my-ass\.gif -# ||littleindia.com/files/banners/ (easylist.txt: 33291) -.littleindia.com/files/banners/ -# ||liquidcompass.net^*/purchase_ (easylist.txt: 33290) -.liquidcompass.net/.*/purchase_ -# ||liquidcompass.net/playerapi/redirect/ (easylist.txt: 33289) -.liquidcompass.net/playerapi/redirect/ -# ||lionsrugby.co.za^*/sponsors. (easylist.txt: 33288) -.lionsrugby.co.za/.*/sponsors\. -# ||linuxsat-support.com/vsa_banners/ (easylist.txt: 33286) -.linuxsat-support.com/vsa_banners/ -# ||linuxmint.com/pictures/sponsors/ (easylist.txt: 33285) -.linuxmint.com/pictures/sponsors/ -# ||linuxmint.com/img/sponsor/ (easylist.txt: 33284) -.linuxmint.com/img/sponsor/ -# ||linuxinsider.com/images/sda/ (easylist.txt: 33283) -.linuxinsider.com/images/sda/ -# ||linksrank.com/links/ (easylist.txt: 33282) -.linksrank.com/links/ -# ||linksave.in^*/downloadbutton_highspeed.png (easylist.txt: 33281) -.linksave.in/.*/downloadbutton_highspeed\.png -# ||linksave.in/img/downloadbutton_sh.png (easylist.txt: 33280) -.linksave.in/img/downloadbutton_sh\.png -# ||linksave.in/img/downloadbutton_hs.png (easylist.txt: 33279) -.linksave.in/img/downloadbutton_hs\.png -# ||linksave.in/img/downloadbutton_alt.png (easylist.txt: 33278) -.linksave.in/img/downloadbutton_alt\.png -# ||linksafe.info^*/mirror.png (easylist.txt: 33277) -.linksafe.info/.*/mirror\.png -# ||linkmoon.net/banners/ (easylist.txt: 33276) -.linkmoon.net/banners/ -# ||linkfm.co.za/images/banners/ (easylist.txt: 33275) -.linkfm.co.za/images/banners/ -# ||linkcentre.com/top_fp.php (easylist.txt: 33274) -.linkcentre.com/top_fp\.php -# ||linguee.com/banner/ (easylist.txt: 33273) -.linguee.com/banner/ -# ||limetorrentlinkmix.com/rd18/dop.js (easylist.txt: 33272) -.limetorrentlinkmix.com/rd18/dop\.js -# ||limesurvey.org/images/banners/ (easylist.txt: 33271) -.limesurvey.org/images/banners/ -# ||lifetips.com/sponsors/ (easylist.txt: 33270) -.lifetips.com/sponsors/ -# ||lifeinqueensland.com/images/156x183a_ (easylist.txt: 33269) -.lifeinqueensland.com/images/156x183a_ -# ||life.imagepix.org^ (easylist.txt: 33268) -.life.imagepix.org -# ||licensing.biz/media/banners/ (easylist.txt: 33267) -.licensing.biz/media/banners/ -# ||libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300.gif? (easylist.txt: 33266) -.libertyblitzkrieg.com/wp-content/uploads/2012/09/cc200x300\.gif\? -# ||lfgcomic.com/wp-content/uploads/*/PageSkin_ (easylist.txt: 33265) -.lfgcomic.com/wp-content/uploads/.*/PageSkin_ -# ||lfcimages.com^*/sponsor- (easylist.txt: 33264) -.lfcimages.com/.*/sponsor- -# ||lfcimages.com^*/partner- (easylist.txt: 33263) -.lfcimages.com/.*/partner- -# ||letswatchsomething.com/images/filestreet_banner.jpg (easylist.txt: 33262) -.letswatchsomething.com/images/filestreet_banner\.jpg -# ||letour.fr/img/v6/sprite_partners_2x.png (easylist.txt: 33261) -.letour.fr/img/v6/sprite_partners_2x\.png -# ||letitbit.net/images/other/inst_forex_ (easylist.txt: 33260) -.letitbit.net/images/other/inst_forex_ -# ||lespagesjaunesafrique.com/bandeaux/ (easylist.txt: 33259) -.lespagesjaunesafrique.com/bandeaux/ -# ||lens101.com/images/banner.jpg (easylist.txt: 33258) -.lens101.com/images/banner\.jpg -# ||legalbusinessonline.com/popup/albpartners.aspx (easylist.txt: 33257) -.legalbusinessonline.com/popup/albpartners\.aspx -# ||lecydre.com/proxy.png (easylist.txt: 33256) -.lecydre.com/proxy\.png -# ||learnspanishtoday.com/aff/img/banners/ (easylist.txt: 33255) -.learnspanishtoday.com/aff/img/banners/ -# ||learnphotoediting.net/banners/ (easylist.txt: 33254) -.learnphotoediting.net/banners/ -# ||leagueunlimited.com/images/rooty/ (easylist.txt: 33253) -.leagueunlimited.com/images/rooty/ -# ||leadership.ng/cheki- (easylist.txt: 33252) -.leadership.ng/cheki- -# ||leader.co.za/leadership/banners/ (easylist.txt: 33251) -.leader.co.za/leadership/banners/ -# ||lazygirls.info/click.php (easylist.txt: 33250) -.lazygirls.info/click\.php -# ||lazygamer.net/kalahari.gif (easylist.txt: 33249) -.lazygamer.net/kalahari\.gif -# ||latex-community.org/images/banners/ (easylist.txt: 33248) -.latex-community.org/images/banners/ -# ||lasttorrents.org/pcmadd.swf (easylist.txt: 33247) -.lasttorrents.org/pcmadd\.swf -# ||lastminute.com^*/universal.html? (easylist.txt: 33246) -.lastminute.com/.*/universal\.html\? -# ||laredodaily.com/images/banners/ (easylist.txt: 33245) -.laredodaily.com/images/banners/ -# ||laptopmag.com/images/sponsorships/ (easylist.txt: 33244) -.laptopmag.com/images/sponsorships/ -# ||laobserved.com/tch-ad.jpg (easylist.txt: 33243) -.laobserved.com/tch-ad\.jpg -# ||lankabusinessonline.com/images/banners/ (easylist.txt: 33242) -.lankabusinessonline.com/images/banners/ -# ||lancasteronline.com^*/weather_sponsor.gif (easylist.txt: 33241) -.lancasteronline.com/.*/weather_sponsor\.gif -# ||lancasteronline.com^*/done_deal/ (easylist.txt: 33240) -.lancasteronline.com/.*/done_deal/ -# ||laliga.es/img/patrocinadores- (easylist.txt: 33239) -.laliga.es/img/patrocinadores- -# ||lake-link.com/images/sponsorLogos/ (easylist.txt: 33238) -.lake-link.com/images/sponsorLogos/ -# ||lagacetanewspaper.com^*/banners/ (easylist.txt: 33237) -.lagacetanewspaper.com/.*/banners/ -# ||labx.com/web/banners/ (easylist.txt: 33236) -.labx.com/web/banners/ -# ||labtimes.org/banner/ (easylist.txt: 33235) -.labtimes.org/banner/ -# ||l4dmaps.com/img/right_gameservers.gif (easylist.txt: 33234) -.l4dmaps.com/img/right_gameservers\.gif -# ||l4dmaps.com/i/right_dllme.gif (easylist.txt: 33233) -.l4dmaps.com/i/right_dllme\.gif -# ||l.yimg.com/mq/a/ (easylist.txt: 33232) -.l.yimg.com/mq/a/ -# ||l.yimg.com/ao/i/ad/ (easylist.txt: 33231) -.l.yimg.com/ao/i/ad/ -# ||kyivpost.com/media/banners/ (easylist.txt: 33229) -.kyivpost.com/media/banners/ -# ||kxlh.com/images/banner/ (easylist.txt: 33228) -.kxlh.com/images/banner/ -# ||kwikupload.com/images/dlbtn.png (easylist.txt: 33225) -.kwikupload.com/images/dlbtn\.png -# ||kwanalu.co.za/upload/ad/ (easylist.txt: 33224) -.kwanalu.co.za/upload/ad/ -# ||kvcr.org^*/sponsors/ (easylist.txt: 33223) -.kvcr.org/.*/sponsors/ -# ||kuwaittimes.net/banners/ (easylist.txt: 33222) -.kuwaittimes.net/banners/ -# ||kukuplay.com/upload/*.swf (easylist.txt: 33221) -.kukuplay.com/upload/.*\.swf -# ||kuiken.co/static/w.js (easylist.txt: 33220) -.kuiken.co/static/w\.js -# ||ktradionetwork.com^*/banners/ (easylist.txt: 33219) -.ktradionetwork.com/.*/banners/ -# ||kstp.com^*/flexhousepromotions/ (easylist.txt: 33218) -.kstp.com/.*/flexhousepromotions/ -# ||ksstradio.com/wp-content/banners/ (easylist.txt: 33217) -.ksstradio.com/wp-content/banners/ -# ||krzk.com/uploads/banners/ (easylist.txt: 33216) -.krzk.com/uploads/banners/ -# ||krebsonsecurity.com/b-kb/ (easylist.txt: 33214) -.krebsonsecurity.com/b-kb/ -# ||krebsonsecurity.com/b-ga/ (easylist.txt: 33213) -.krebsonsecurity.com/b-ga/ -# ||krapps.com^*-banner- (easylist.txt: 33212) -.krapps.com/.*-banner- -# ||kovideo.net^*.php?user_ (easylist.txt: 33211) -.kovideo.net/.*\.php\?user_ -# ||koreatimes.co.kr/www/images/bn/ (easylist.txt: 33210) -.koreatimes.co.kr/www/images/bn/ -# ||koreatimes.co.kr/upload/ad/ (easylist.txt: 33209) -.koreatimes.co.kr/upload/ad/ -# ||koreatimes.co.kr/images/bn/ (easylist.txt: 33208) -.koreatimes.co.kr/images/bn/ -# ||koreatimes.co.kr/ad/ (easylist.txt: 33207) -.koreatimes.co.kr/ad/ -# ||koreanmovie.com/img/banner/banner.jpg (easylist.txt: 33206) -.koreanmovie.com/img/banner/banner\.jpg -# ||koraliga.com/open.js (easylist.txt: 33205) -.koraliga.com/open\.js -# ||kontraband.com/media/takeovers/ (easylist.txt: 33204) -.kontraband.com/media/takeovers/ -# ||kongregate.com/images/help_devs_*.png (easylist.txt: 33203) -.kongregate.com/images/help_devs_.*\.png -# ||kompas.com/js_kompasads.php (easylist.txt: 33202) -.kompas.com/js_kompasads\.php -# ||komando.com^*/k2-interstitial.min.js? (easylist.txt: 33201) -.komando.com/.*/k2-interstitial\.min\.js\? -# ||kob.com/kobtvimages/flexhousepromotions/ (easylist.txt: 33200) -.kob.com/kobtvimages/flexhousepromotions/ -# ||knpr.org/common/sponsors/ (easylist.txt: 33199) -.knpr.org/common/sponsors/ -# ||knowthecause.com/images/banners/ (easylist.txt: 33198) -.knowthecause.com/images/banners/ -# ||knowledgespeak.com/images/banner/ (easylist.txt: 33197) -.knowledgespeak.com/images/banner/ -# ||knowfree.net^*/ezm125x125.gif (easylist.txt: 33196) -.knowfree.net/.*/ezm125x125\.gif -# ||knco.com/wp-content/uploads/wpt/ (easylist.txt: 33195) -.knco.com/wp-content/uploads/wpt/ -# ||kncminer.com/userfiles/image/250_240.jpg (easylist.txt: 33194) -.kncminer.com/userfiles/image/250_240\.jpg -# ||knbr.com^*/banners/ (easylist.txt: 33193) -.knbr.com/.*/banners/ -# ||klm.com^*/fls_redirect.html (easylist.txt: 33192) -.klm.com/.*/fls_redirect\.html -# ||klkdccs.net/pjs/yavli-tools.js (easylist.txt: 33191) -.klkdccs.net/pjs/yavli-tools\.js -# ||klfm967.co.uk/resources/creative/ (easylist.txt: 33190) -.klfm967.co.uk/resources/creative/ -# ||kleisauke.nl/static/img/bar.gif (easylist.txt: 33189) -.kleisauke.nl/static/img/bar\.gif -# ||klav1230am.com^*/banners/ (easylist.txt: 33188) -.klav1230am.com/.*/banners/ -# ||kjul1047.com^*/clientgraphics/ (easylist.txt: 33187) -.kjul1047.com/.*/clientgraphics/ -# ||kjlhradio.com^*/banners/ (easylist.txt: 33186) -.kjlhradio.com/.*/banners/ -# ||kjlhradio.com^*-300x250. (easylist.txt: 33185) -.kjlhradio.com/.*-300x250\. -# ||kitz.co.uk/files/jump2/ (easylist.txt: 33184) -.kitz.co.uk/files/jump2/ -# ||kitguru.net/wp-content/wrap.jpg (easylist.txt: 33183) -.kitguru.net/wp-content/wrap\.jpg -# ||kitguru.net/wp-content/banners/ (easylist.txt: 33182) -.kitguru.net/wp-content/banners/ -# ||kitguru.net/?kitguru_wrapjs=1&ver= (easylist.txt: 33181) -.kitguru.net/\?kitguru_wrapjs=1&ver= -# ||kitco.com^*/banners/ (easylist.txt: 33180) -.kitco.com/.*/banners/ -# ||kitco.com/ssi/market_ox_deanmg.stm (easylist.txt: 33179) -.kitco.com/ssi/market_ox_deanmg\.stm -# ||kitco.com/ssi/home_ox_deanmg.stm (easylist.txt: 33178) -.kitco.com/ssi/home_ox_deanmg\.stm -# ||kitco.com/ssi/dmg_banner_001.stm (easylist.txt: 33177) -.kitco.com/ssi/dmg_banner_001\.stm -# ||kirupa.com/supporter/ (easylist.txt: 33176) -.kirupa.com/supporter/ -# ||kinox.tv/g.js (easylist.txt: 33175) -.kinox.tv/g\.js -# ||kinox.to/com/ (easylist.txt: 33174) -.kinox.to/com/ -# ||kinox.to/392i921321.js (easylist.txt: 33173) -.kinox.to/392i921321\.js -# ||kingofsat.net/pub/ (easylist.txt: 33172) -.kingofsat.net/pub/ -# ||kingfiles.net/images/bt.png (easylist.txt: 33171) -.kingfiles.net/images/bt\.png -# ||kickoff.com/images/sleeves/ (easylist.txt: 33170) -.kickoff.com/images/sleeves/ -# ||kickasstorrent.ph/kat_adplib.js (easylist.txt: 33169) -.kickasstorrent.ph/kat_adplib\.js -# ||khon2.com^*/sponsors/ (easylist.txt: 33168) -.khon2.com/.*/sponsors/ -# ||khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N.jpg (easylist.txt: 33167) -.khaleejtimes.com/imgactv/Umrah-Static-Background-Gutters-N\.jpg -# ||khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN.jpg (easylist.txt: 33166) -.khaleejtimes.com/imgactv/Umrah%20-%20290x60%20-%20EN\.jpg -# ||kfog.com^*/banners/ (easylist.txt: 33165) -.kfog.com/.*/banners/ -# ||keygen-fm.ru/images/*.swf (easylist.txt: 33164) -.keygen-fm.ru/images/.*\.swf -# ||kexp.org^*/sponsoredby. (easylist.txt: 33163) -.kexp.org/.*/sponsoredby\. -# ||kexp.org^*/sponsor- (easylist.txt: 33162) -.kexp.org/.*/sponsor- -# ||kewlshare.com/reward.html (easylist.txt: 33161) -.kewlshare.com/reward\.html -# ||kermit.macnn.com^ (easylist.txt: 33160) -.kermit.macnn.com -# ||kephyr.com/spywarescanner/banner1.gif (easylist.txt: 33159) -.kephyr.com/spywarescanner/banner1\.gif -# ||kentonline.co.uk/weatherimages/sponsor_ (easylist.txt: 33158) -.kentonline.co.uk/weatherimages/sponsor_ -# ||kentonline.co.uk/weatherimages/SEW.jpg (easylist.txt: 33157) -.kentonline.co.uk/weatherimages/SEW\.jpg -# ||kentonline.co.uk/weatherimages/Britelite.gif (easylist.txt: 33156) -.kentonline.co.uk/weatherimages/Britelite\.gif -# ||kendrickcoleman.com/images/banners/ (easylist.txt: 33155) -.kendrickcoleman.com/images/banners/ -# ||keepvid.com/images/winxdvd- (easylist.txt: 33154) -.keepvid.com/images/winxdvd- -# ||keepvid.com/images/ilivid- (easylist.txt: 33153) -.keepvid.com/images/ilivid- -# ||keepthelighton.vpsboard.com^ (easylist.txt: 33152) -.keepthelighton.vpsboard.com -# ||keenspot.com/images/headerbar- (easylist.txt: 33151) -.keenspot.com/images/headerbar- -# ||kdoctv.net/images/banners/ (easylist.txt: 33150) -.kdoctv.net/images/banners/ -# ||kdnuggets.com/aps/ (easylist.txt: 33149) -.kdnuggets.com/aps/ -# ||kcrw.com/collage-images/itunes.gif (easylist.txt: 33148) -.kcrw.com/collage-images/itunes\.gif -# ||kcrw.com/collage-images/amazon.gif (easylist.txt: 33147) -.kcrw.com/collage-images/amazon\.gif -# ||kblx.com/upload/takeover_ (easylist.txt: 33146) -.kblx.com/upload/takeover_ -# ||kbcradio.eu/img/banner/ (easylist.txt: 33145) -.kbcradio.eu/img/banner/ -# ||kavkisfile.com/images/ly.gif (easylist.txt: 33144) -.kavkisfile.com/images/ly\.gif -# ||kavkisfile.com/images/ly-mini.gif (easylist.txt: 33143) -.kavkisfile.com/images/ly-mini\.gif -# ||kat-ads.torrenticity.com^ (easylist.txt: 33142) -.kat-ads.torrenticity.com -# ||kassfm.co.ke/images/moneygram.gif (easylist.txt: 33141) -.kassfm.co.ke/images/moneygram\.gif -# ||kansascity.com/images/touts/ds_ (easylist.txt: 33140) -.kansascity.com/images/touts/ds_ -# ||kamcity.com/menu/banners/ (easylist.txt: 33139) -.kamcity.com/menu/banners/ -# ||kamcity.com/banager/banners/ (easylist.txt: 33138) -.kamcity.com/banager/banners/ -# ||kaieteurnewsonline.com/revenue/ (easylist.txt: 33137) -.kaieteurnewsonline.com/revenue/ -# ||juventus.com/pics/sponsors/ (easylist.txt: 33136) -.juventus.com/pics/sponsors/ -# ||justsomething.co/wp-content/uploads/*-250x250. (easylist.txt: 33135) -.justsomething.co/wp-content/uploads/.*-250x250\. -# ||just-download.com/banner/ (easylist.txt: 33134) -.just-download.com/banner/ -# ||junocloud.me/promos/ (easylist.txt: 33133) -.junocloud.me/promos/ -# ||jumptags.com/joozit/presentation/images/banners/ (easylist.txt: 33132) -.jumptags.com/joozit/presentation/images/banners/ -# ||jozikids.co.za/uploadimages/140x140_ (easylist.txt: 33131) -.jozikids.co.za/uploadimages/140x140_ -# ||jozikids.co.za/uploadimages/*_140x140_ (easylist.txt: 33130) -.jozikids.co.za/uploadimages/.*_140x140_ -# ||joursouvres.fr^*/pub_ (easylist.txt: 33129) -.joursouvres.fr/.*/pub_ -# ||journeychristiannews.com/images/banners/ (easylist.txt: 33128) -.journeychristiannews.com/images/banners/ -# ||journal-news.net/annoyingpopup/ (easylist.txt: 33127) -.journal-news.net/annoyingpopup/ -# ||joomladigger.com/images/banners/ (easylist.txt: 33126) -.joomladigger.com/images/banners/ -# ||johngaltfla.com/wordpress/wp-content/uploads/*/TB2K_LOGO.jpg (easylist.txt: 33123) -.johngaltfla.com/wordpress/wp-content/uploads/.*/TB2K_LOGO\.jpg -# ||johngaltfla.com/wordpress/wp-content/uploads/*/jmcs_specaialbanner.jpg (easylist.txt: 33122) -.johngaltfla.com/wordpress/wp-content/uploads/.*/jmcs_specaialbanner\.jpg -# ||johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions.png (easylist.txt: 33121) -.johnbridge.com/vbulletin/images/tyw/wedi-shower-systems-solutions\.png -# ||johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge.jpg (easylist.txt: 33120) -.johnbridge.com/vbulletin/images/tyw/cdlogo-john-bridge\.jpg -# ||johnbridge.com/vbulletin/banner_rotate.js (easylist.txt: 33119) -.johnbridge.com/vbulletin/banner_rotate\.js -# ||jillianmichaels.com/images/publicsite/advertisingslug.gif (easylist.txt: 33118) -.jillianmichaels.com/images/publicsite/advertisingslug\.gif -# ||jheberg.net/img/mp.png (easylist.txt: 33117) -.jheberg.net/img/mp\.png -# ||jewishyellow.com/pics/banners/ (easylist.txt: 33116) -.jewishyellow.com/pics/banners/ -# ||jewishvoiceny.com/ban2/ (easylist.txt: 33115) -.jewishvoiceny.com/ban2/ -# ||jewishtribune.ca^*/banners/ (easylist.txt: 33114) -.jewishtribune.ca/.*/banners/ -# ||jewishtimes-sj.com/rop/ (easylist.txt: 33113) -.jewishtimes-sj.com/rop/ -# ||jewishnews.co.uk^*banner (easylist.txt: 33112) -.jewishnews.co.uk/.*banner -# ||jewishexponent.com^*/banners/ (easylist.txt: 33111) -.jewishexponent.com/.*/banners/ -# ||jebril.com/sites/default/files/images/top-banners/ (easylist.txt: 33110) -.jebril.com/sites/default/files/images/top-banners/ -# ||jdownloader.org^*/smbanner.png (easylist.txt: 33109) -.jdownloader.org/.*/smbanner\.png -# ||jdownloader.org/_media/screenshots/banner.png (easylist.txt: 33108) -.jdownloader.org/_media/screenshots/banner\.png -# ||jazzandblues.org^*/iTunes_ (easylist.txt: 33107) -.jazzandblues.org/.*/iTunes_ -# ||jayisgames.com/maxcdn_160x250.png (easylist.txt: 33106) -.jayisgames.com/maxcdn_160x250\.png -# ||javascript-coder.com^*/make-form-without-coding.png (easylist.txt: 33105) -.javascript-coder.com/.*/make-form-without-coding\.png -# ||javascript-coder.com^*/form-submit-larger.jpg (easylist.txt: 33104) -.javascript-coder.com/.*/form-submit-larger\.jpg -# ||javamex.com/images/AdFrenchVocabGamesAnim.gif (easylist.txt: 33103) -.javamex.com/images/AdFrenchVocabGamesAnim\.gif -# ||jango.com/assets/promo/1600x1000- (easylist.txt: 33102) -.jango.com/assets/promo/1600x1000- -# ||jame-world.com^*/adv/ (easylist.txt: 33101) -.jame-world.com/.*/adv/ -# ||jamaica-gleaner.com/images/promo/ (easylist.txt: 33100) -.jamaica-gleaner.com/images/promo/ -# ||ixquick.nl/graphics/banner_ (easylist.txt: 33099) -.ixquick.nl/graphics/banner_ -# ||iwebtool.com^*/bannerview.php (easylist.txt: 33098) -.iwebtool.com/.*/bannerview\.php -# ||iurfm.com/images/sponsors/ (easylist.txt: 33097) -.iurfm.com/images/sponsors/ -# ||itworld.com/slideshow/iframe/topimu/ (easylist.txt: 33096) -.itworld.com/slideshow/iframe/topimu/ -# ||itwebafrica.com/images/logos/ (easylist.txt: 33095) -.itwebafrica.com/images/logos/ -# ||itweb.co.za^*sponsoredby (easylist.txt: 33094) -.itweb.co.za/.*sponsoredby -# ||itweb.co.za/sidelogos/ (easylist.txt: 33093) -.itweb.co.za/sidelogos/ -# ||itweb.co.za/logos/ (easylist.txt: 33092) -.itweb.co.za/logos/ -# ||itweb.co.za/banners/ (easylist.txt: 33091) -.itweb.co.za/banners/ -# ||itv.com/adexplore/*/config.xml (easylist.txt: 33089) -.itv.com/adexplore/.*/config\.xml -# ||itpro.co.uk/images/skins/ (easylist.txt: 33088) -.itpro.co.uk/images/skins/ -# ||italiangenealogy.com/images/banners/ (easylist.txt: 33087) -.italiangenealogy.com/images/banners/ -# ||isxdead.com/images/showbox.png (easylist.txt: 33086) -.isxdead.com/images/showbox\.png -# ||isup.me/images/dotbiz_banner.jpg (easylist.txt: 33085) -.isup.me/images/dotbiz_banner\.jpg -# ||israeltoday.co.il^*/promo/ (easylist.txt: 33084) -.israeltoday.co.il/.*/promo/ -# ||israelidiamond.co.il^*/bannerdisplay.aspx? (easylist.txt: 33083) -.israelidiamond.co.il/.*/bannerdisplay\.aspx\? -# ||israeldefense.com/_Uploads/dbsBanners/ (easylist.txt: 33082) -.israeldefense.com/_Uploads/dbsBanners/ -# ||isportconnect.com//images/banners/ (easylist.txt: 33081) -# ||island.lk/userfiles/image/danweem/ (easylist.txt: 33080) -.island.lk/userfiles/image/danweem/ -# ||islamicfocus.co.za/images/banners/ (easylist.txt: 33079) -.islamicfocus.co.za/images/banners/ -# ||islamicfinder.org/cimage/ (easylist.txt: 33078) -.islamicfinder.org/cimage/ -# ||isitnormal.com/img/iphone_hp_promo_wide.png (easylist.txt: 33077) -.isitnormal.com/img/iphone_hp_promo_wide\.png -# ||isitdownrightnow.com/graphics/speedupmypc*.png (easylist.txt: 33076) -.isitdownrightnow.com/graphics/speedupmypc.*\.png -# ||irv2.com/images/sponsors/ (easylist.txt: 33075) -.irv2.com/images/sponsors/ -# ||irv2.com/forums/*show_banner (easylist.txt: 33074) -.irv2.com/forums/.*show_banner -# ||irv2.com/attachments/banners/ (easylist.txt: 33073) -.irv2.com/attachments/banners/ -# ||ironsquid.tv/data/uploads/sponsors/ (easylist.txt: 33072) -.ironsquid.tv/data/uploads/sponsors/ -# ||ironspider.ca/pics/hostgator_green120x600.gif (easylist.txt: 33071) -.ironspider.ca/pics/hostgator_green120x600\.gif -# ||ironmagazine.com^*/banners.php (easylist.txt: 33070) -.ironmagazine.com/.*/banners\.php -# ||irishracing.com/graphics/books (easylist.txt: 33069) -.irishracing.com/graphics/books -# ||irishdictionary.ie/view/images/ispaces-makes-any-computer.jpg (easylist.txt: 33068) -.irishdictionary.ie/view/images/ispaces-makes-any-computer\.jpg -# ||irishdev.com/files/banners/ (easylist.txt: 33067) -.irishdev.com/files/banners/ -# ||irishamericannews.com/images/banners/ (easylist.txt: 33066) -.irishamericannews.com/images/banners/ -# ||irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/*DealsBanner_ (easylist.txt: 33065) -.irctctourism.com/ttrs/railtourism/Designs/html/images/tourism_right_banners/.*DealsBanner_ -# ||iptools.com/sky.php (easylist.txt: 33064) -.iptools.com/sky\.php -# ||ipinfodb.com/img/adds/ (easylist.txt: 33063) -.ipinfodb.com/img/adds/ -# ||ipaddress.com/banner/ (easylist.txt: 33062) -.ipaddress.com/banner/ -# ||ip-adress.com/superb/ (easylist.txt: 33060) -.ip-adress.com/superb/ -# ||ip-adress.com/i/ewa/ (easylist.txt: 33059) -.ip-adress.com/i/ewa/ -# ||intoday.in/btstryad.html (easylist.txt: 33058) -.intoday.in/btstryad\.html -# ||internationalmeetingsreview.com//uploads/banner/ (easylist.txt: 33057) -# ||international.to/link_unit.html (easylist.txt: 33056) -.international.to/link_unit\.html -# ||international.to/large.html (easylist.txt: 33055) -.international.to/large\.html -# ||international.to/600.html (easylist.txt: 33054) -.international.to/600\.html -# ||interfacelift.com^*/artistsvalley_160x90_ (easylist.txt: 33053) -.interfacelift.com/.*/artistsvalley_160x90_ -# ||interest.co.nz^*_skin_ (easylist.txt: 33051) -.interest.co.nz/.*_skin_ -# ||interest.co.nz^*_skin. (easylist.txt: 33050) -.interest.co.nz/.*_skin\. -# ||interest.co.nz/banners/ (easylist.txt: 33049) -.interest.co.nz/banners/ -# ||intelseek.com/intelseekads/ (easylist.txt: 33048) -.intelseek.com/intelseekads/ -# ||intellicast.com/travel/cheapflightswidget.htm (easylist.txt: 33047) -.intellicast.com/travel/cheapflightswidget\.htm -# ||intellicast.com/outsidein.js (easylist.txt: 33046) -.intellicast.com/outsidein\.js -# ||intel.com/sites/wap/global/wap.js (easylist.txt: 33045) -.intel.com/sites/wap/global/wap\.js -# ||inspirefirst.com^*/banners/ (easylist.txt: 33044) -.inspirefirst.com/.*/banners/ -# ||insideyork.co.uk/assets/images/sponsors/ (easylist.txt: 33043) -.insideyork.co.uk/assets/images/sponsors/ -# ||insidethe.agency^*-300x250. (easylist.txt: 33042) -.insidethe.agency/.*-300x250\. -# ||insidehw.com/images/banners/ (easylist.txt: 33041) -.insidehw.com/images/banners/ -# ||insidedp.com/images/banners/ (easylist.txt: 33040) -.insidedp.com/images/banners/ -# ||insidebutlercounty.com/images/468- (easylist.txt: 33039) -.insidebutlercounty.com/images/468- -# ||insidebutlercounty.com/images/300- (easylist.txt: 33038) -.insidebutlercounty.com/images/300- -# ||insidebutlercounty.com/images/200- (easylist.txt: 33037) -.insidebutlercounty.com/images/200- -# ||insidebutlercounty.com/images/180- (easylist.txt: 33036) -.insidebutlercounty.com/images/180- -# ||insidebutlercounty.com/images/160- (easylist.txt: 33035) -.insidebutlercounty.com/images/160- -# ||insidebutlercounty.com/images/100- (easylist.txt: 33034) -.insidebutlercounty.com/images/100- -# ||inquirer.net/wp-content/themes/news/images/wallpaper_ (easylist.txt: 33033) -.inquirer.net/wp-content/themes/news/images/wallpaper_ -# ||inkscapeforum.com/images/banners/ (easylist.txt: 33032) -.inkscapeforum.com/images/banners/ -# ||injpn.net/images/banners/ (easylist.txt: 33031) -.injpn.net/images/banners/ -# ||ingdirect.com^*/adwizard/ (easylist.txt: 33030) -.ingdirect.com/.*/adwizard/ -# ||infoseek.co.jp/isweb/clip.html (easylist.txt: 33029) -.infoseek.co.jp/isweb/clip\.html -# ||infosecisland.com/ajax/viewbanner/ (easylist.txt: 33028) -.infosecisland.com/ajax/viewbanner/ -# ||informer.com/js/onexit*.js (easylist.txt: 33027) -.informer.com/js/onexit.*\.js -# ||informe.com/img/banner_ (easylist.txt: 33026) -.informe.com/img/banner_ -# ||infoq.com^*/banners/ (easylist.txt: 33025) -.infoq.com/.*/banners/ -# ||infobetting.com/bookmaker/ (easylist.txt: 33024) -.infobetting.com/bookmaker/ -# ||infobetting.com/b/ (easylist.txt: 33023) -.infobetting.com/b/ -# ||info.sciencedaily.com/api/ (easylist.txt: 33022) -.info.sciencedaily.com/api/ -# ||info.break.com^*/sponsors/ (easylist.txt: 33021) -.info.break.com/.*/sponsors/ -# ||industryabout.com/images/banners/ (easylist.txt: 33020) -.industryabout.com/images/banners/ -# ||indiantelevision.com/banner/ (easylist.txt: 33017) -.indiantelevision.com/banner/ -# ||indianexpress.com^*/banner/ (easylist.txt: 33016) -.indianexpress.com/.*/banner/ -# ||indiainfoline.com/wc/ads/ (easylist.txt: 33015) -.indiainfoline.com/wc/ads/ -# ||india.com^*-sponsor. (easylist.txt: 33014) -.india.com/.*-sponsor\. -# ||india.com/zeenews_head2n.jpg (easylist.txt: 33013) -.india.com/zeenews_head2n\.jpg -# ||indepthafrica.com^*/Banner-canreach.gif (easylist.txt: 33011) -.indepthafrica.com/.*/Banner-canreach\.gif -# ||independent.co.uk^*/partners/ (easylist.txt: 33010) -.independent.co.uk/.*/partners/ -# ||independent.co.uk^*/300unit/ (easylist.txt: 33009) -.independent.co.uk/.*/300unit/ -# ||independent.co.uk/kelkoo/ (easylist.txt: 33007) -.independent.co.uk/kelkoo/ -# ||independent.co.ug/images/banners/ (easylist.txt: 33006) -.independent.co.ug/images/banners/ -# ||indeed.com/ads/ (easylist.txt: 33005) -.indeed.com/ads/ -# ||incentivetravel.co.uk/images/banners/ (easylist.txt: 33004) -.incentivetravel.co.uk/images/banners/ -# ||inanyevent.ch/images/banners/ (easylist.txt: 33003) -.inanyevent.ch/images/banners/ -# ||in.com^*/170x50_ (easylist.txt: 33002) -.in.com/.*/170x50_ -# ||in.com/addIframe/ (easylist.txt: 33001) -.in.com/addIframe/ -# ||impulsedriven.com/app_images/wallpaper/ (easylist.txt: 33000) -.impulsedriven.com/app_images/wallpaper/ -# ||impactradio.co.za^*/banners/ (easylist.txt: 32999) -.impactradio.co.za/.*/banners/ -# ||imouto.org/images/mangagamer/ (easylist.txt: 32998) -.imouto.org/images/mangagamer/ -# ||imouto.org/images/jlist/ (easylist.txt: 32997) -.imouto.org/images/jlist/ -# ||imgur.com/include/zedoinviewstub1621.html (easylist.txt: 32996) -.imgur.com/include/zedoinviewstub1621\.html -# ||imgshots.com/includes/js/layer.js (easylist.txt: 32994) -.imgshots.com/includes/js/layer\.js -# ||imgchili.net/lj.js (easylist.txt: 32993) -.imgchili.net/lj\.js -# ||imgchili.net/js/showa.js (easylist.txt: 32992) -.imgchili.net/js/showa\.js -# ||imgcarry.com^*/oc.js (easylist.txt: 32991) -.imgcarry.com/.*/oc\.js -# ||imgburn.com/images/your3gift.gif (easylist.txt: 32990) -.imgburn.com/images/your3gift\.gif -# ||imgburn.com/images/ddigest_ (easylist.txt: 32989) -.imgburn.com/images/ddigest_ -# ||img*.i-comers.com^ (easylist.txt: 32987) -.img*./.*\.i-comers\.com[^\w%.-] -.img*.i-comers.com -# ||imfdb.org^*/FoG-300x250.jpg (easylist.txt: 32986) -.imfdb.org/.*/FoG-300x250\.jpg -# ||imcdb.org/res/cth_ (easylist.txt: 32984) -.imcdb.org/res/cth_ -# ||imagevenue.com/interstitial. (easylist.txt: 32983) -.imagevenue.com/interstitial\. -# ||imagetoupload.com/images/87633952425570896161.jpg (easylist.txt: 32982) -.imagetoupload.com/images/87633952425570896161\.jpg -# ||imagesnake.com^*/oc.js (easylist.txt: 32981) -.imagesnake.com/.*/oc\.js -# ||imageshack.us/ym.php? (easylist.txt: 32980) -.imageshack.us/ym\.php\? -# ||imageshack.us/images/contests/*/lp-bg.jpg (easylist.txt: 32979) -.imageshack.us/images/contests/.*/lp-bg\.jpg -# ||images.sharkscope.com/everest/twister.jpg (easylist.txt: 32978) -.images.sharkscope.com/everest/twister\.jpg -# ||images.sharkscope.com/acr/*_Ad- (easylist.txt: 32977) -.images.sharkscope.com/acr/.*_Ad- -# ||images.mmorpg.com/images/*skin (easylist.txt: 32976) -.images.mmorpg.com/images/.*skin -# ||images.globes.co.il^*/fixedpromoright. (easylist.txt: 32975) -.images.globes.co.il/.*/fixedpromoright\. -# ||images.bitreactor.to/designs/ (easylist.txt: 32974) -.images.bitreactor.to/designs/ -# ||images-amazon.com^*/marqueepushdown/ (easylist.txt: 32973) -.images-amazon.com/.*/marqueepushdown/ -# ||images-amazon.com/images/*/browser-scripts/dae- (easylist.txt: 32971) -.images-amazon.com/images/.*/browser-scripts/dae- -# ||images-amazon.com/images/*/browser-scripts/da- (easylist.txt: 32970) -.images-amazon.com/images/.*/browser-scripts/da- -# ||imagerise.com/ir2.js (easylist.txt: 32969) -.imagerise.com/ir2\.js -# ||imagerise.com/ir.js (easylist.txt: 32968) -.imagerise.com/ir\.js -# ||imageporter.com/someo.html (easylist.txt: 32967) -.imageporter.com/someo\.html -# ||imageporter.com/micromoo.html (easylist.txt: 32966) -.imageporter.com/micromoo\.html -# ||imageporter.com/hiokax.js (easylist.txt: 32965) -.imageporter.com/hiokax\.js -# ||imagepix.org/Images/imageput.jpg (easylist.txt: 32964) -.imagepix.org/Images/imageput\.jpg -# ||imagefruit.com/includes/js/layer.js (easylist.txt: 32963) -.imagefruit.com/includes/js/layer\.js -# ||imagefruit.com/includes/js/ex.js (easylist.txt: 32962) -.imagefruit.com/includes/js/ex\.js -# ||imagefruit.com/includes/js/bgcont.js (easylist.txt: 32961) -.imagefruit.com/includes/js/bgcont\.js -# ||imagebam.com/img/coolstuffbro.jpg (easylist.txt: 32960) -.imagebam.com/img/coolstuffbro\.jpg -# ||imagebam.com/download_button.png (easylist.txt: 32959) -.imagebam.com/download_button\.png -# ||imads.rediff.com^ (easylist.txt: 32957) -.imads.rediff.com -# ||iloveim.com/cadv (easylist.txt: 32956) -.iloveim.com/cadv -# ||iload.to/img/ul/impopi.js (easylist.txt: 32955) -.iload.to/img/ul/impopi\.js -# ||ilcorsaronero.info/home.gif (easylist.txt: 32953) -.ilcorsaronero.info/home\.gif -# ||ijoomla.com/aff/banners/ (easylist.txt: 32952) -.ijoomla.com/aff/banners/ -# ||ijn.com/images/banners/ (easylist.txt: 32951) -.ijn.com/images/banners/ -# ||iftn.ie/images/data/banners/ (easylist.txt: 32950) -.iftn.ie/images/data/banners/ -# ||iframe.travel.yahoo.com^ (easylist.txt: 32949) -.iframe.travel.yahoo.com -# ||ifilm.com/website/*-skin- (easylist.txt: 32948) -.ifilm.com/website/.*-skin- -# ||idg.com.au^*_skin.jpg (easylist.txt: 32946) -.idg.com.au/.*_skin\.jpg -# ||idg.com.au/files/skins/ (easylist.txt: 32944) -.idg.com.au/files/skins/ -# ||idesitv.com^*/loadbanners. (easylist.txt: 32943) -.idesitv.com/.*/loadbanners\. -# ||iddin.com/img/chatwing_banner_ (easylist.txt: 32942) -.iddin.com/img/chatwing_banner_ -# ||iddin.com/img/chatwing_banner. (easylist.txt: 32941) -.iddin.com/img/chatwing_banner\. -# ||icydk.com^*/title_visit_sponsors. (easylist.txt: 32940) -.icydk.com/.*/title_visit_sponsors\. -# ||icrt.com.tw/downloads/banner/ (easylist.txt: 32938) -.icrt.com.tw/downloads/banner/ -# ||iconeye.com/images/banners/ (easylist.txt: 32937) -.iconeye.com/images/banners/ -# ||icelandreview.com^*/auglysingar/ (easylist.txt: 32936) -.icelandreview.com/.*/auglysingar/ -# ||iceinspace.com.au/iisads/ (easylist.txt: 32935) -.iceinspace.com.au/iisads/ -# ||ibtimes.com^*/sponsor_ (easylist.txt: 32934) -.ibtimes.com/.*/sponsor_ -# ||ibtimes.com^*&popunder (easylist.txt: 32933) -.ibtimes.com/.*&popunder -# ||ibtimes.com/banner/ (easylist.txt: 32932) -.ibtimes.com/banner/ -# ||ibsrv.net/sponsors/ (easylist.txt: 32931) -.ibsrv.net/sponsors/ -# ||ibsrv.net/*_215x30_ (easylist.txt: 32928) -.ibsrv.net/.*_215x30_ -# ||ibsrv.net/*_215x30. (easylist.txt: 32927) -.ibsrv.net/.*_215x30\. -# ||ibsrv.net/*214x30. (easylist.txt: 32926) -.ibsrv.net/.*214x30\. -# ||ibrod.tv/ib.php (easylist.txt: 32925) -.ibrod.tv/ib\.php -# ||ibnlive.in.com^*/ibn_*_banner_ (easylist.txt: 32924) -.ibnlive.in.com/.*/ibn_.*_banner_ -# ||ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ (easylist.txt: 32923) -.ibizaworldclubtour.net/wp-content/themes/ex-studios/banner/ -# ||ibanners.empoweredcomms.com.au^ (easylist.txt: 32922) -.ibanners.empoweredcomms.com.au -# ||ians.in/iansad/ (easylist.txt: 32921) -.ians.in/iansad/ -# ||i3investor.com^*/partner/ (easylist.txt: 32920) -.i3investor.com/.*/partner/ -# ||i3investor.com^*/offer_ (easylist.txt: 32919) -.i3investor.com/.*/offer_ -# ||i.i.com.com/cnwk.1d/*/tt_post_dl.jpg (easylist.txt: 32917) -.i.i.com.com/cnwk\.1d/.*/tt_post_dl\.jpg -# ||i.com.com^*/vendor_bg_ (easylist.txt: 32916) -.i.com.com/.*/vendor_bg_ -# ||i-tech.com.au^*/banner/ (easylist.txt: 32915) -.i-tech.com.au/.*/banner/ -# ||i-sgcm.com/pagetakeover/ (easylist.txt: 32914) -.i-sgcm.com/pagetakeover/ -# ||hypemagazine.co.za/assets/bg/ (easylist.txt: 32913) -.hypemagazine.co.za/assets/bg/ -# ||hwinfo.com/images/se2banner.png (easylist.txt: 32912) -.hwinfo.com/images/se2banner\.png -# ||hwinfo.com/images/lansweeper.jpg (easylist.txt: 32911) -.hwinfo.com/images/lansweeper\.jpg -# ||hwbot.org/banner.img (easylist.txt: 32910) -.hwbot.org/banner\.img -# ||hurriyetdailynews.com/images/*_100x250_ (easylist.txt: 32909) -.hurriyetdailynews.com/images/.*_100x250_ -# ||hummy.org.uk^*/brotator/ (easylist.txt: 32908) -.hummy.org.uk/.*/brotator/ -# ||hulu.com/v3/revenue/ (easylist.txt: 32907) -.hulu.com/v3/revenue/ -# ||hulu.com/beacon/*=adauditerror (easylist.txt: 32906) -.hulu.com/beacon/.*=adauditerror -# ||hulkshare.oncdn.com^*/removeads. (easylist.txt: 32905) -.hulkshare.oncdn.com/.*/removeads\. -# ||hulkshare.com^*/adsmanager.js (easylist.txt: 32904) -.hulkshare.com/.*/adsmanager\.js -# ||hulkshare.com/promo/ (easylist.txt: 32903) -.hulkshare.com/promo/ -# ||hulkload.com/recommended/ (easylist.txt: 32902) -.hulkload.com/recommended/ -# ||hulkload.com/b/ (easylist.txt: 32901) -.hulkload.com/b/ -# ||hulkfile.eu/images/africa.gif (easylist.txt: 32900) -.hulkfile.eu/images/africa\.gif -# ||htmldog.com/r10/flowers/ (easylist.txt: 32898) -.htmldog.com/r10/flowers/ -# ||hqfooty.tv/ad (easylist.txt: 32897) -.hqfooty.tv/ad -# ||hpfanficarchive.com/freecoins2.jpg (easylist.txt: 32896) -.hpfanficarchive.com/freecoins2\.jpg -# ||howwemadeitinafrica.com^*/dhl-hdr.gif (easylist.txt: 32895) -.howwemadeitinafrica.com/.*/dhl-hdr\.gif -# ||howtogermany.com/banner/ (easylist.txt: 32894) -.howtogermany.com/banner/ -# ||howtogeek.com/go/ (easylist.txt: 32893) -.howtogeek.com/go/ -# ||houseoftravel.co.nz/flash/banner/ (easylist.txt: 32892) -.houseoftravel.co.nz/flash/banner/ -# ||houndmirror.com/images/XmkuP.gif (easylist.txt: 32891) -.houndmirror.com/images/XmkuP\.gif -# ||hothardware.com^*_staticbanner_*.jpg (easylist.txt: 32890) -.hothardware.com/.*_staticbanner_.*\.jpg -# ||hothardware.com/pgmerchanttable.aspx? (easylist.txt: 32889) -.hothardware.com/pgmerchanttable\.aspx\? -# ||hotfiletrend.com/dlp.gif (easylist.txt: 32887) -.hotfiletrend.com/dlp\.gif -# ||hotfilesearch.com/includes/images/mov_ (easylist.txt: 32886) -.hotfilesearch.com/includes/images/mov_ -# ||hotfile.com^*/banners/ (easylist.txt: 32885) -.hotfile.com/.*/banners/ -# ||hotbollywoodactress.net/freedatingindia.gif (easylist.txt: 32884) -.hotbollywoodactress.net/freedatingindia\.gif -# ||hotbollywoodactress.net/ff2.gif (easylist.txt: 32883) -.hotbollywoodactress.net/ff2\.gif -# ||hot-scene.com/cpop.js (easylist.txt: 32882) -.hot-scene.com/cpop\.js -# ||hostsearch.com/creative/ (easylist.txt: 32881) -.hostsearch.com/creative/ -# ||hostratings.co.uk/zeepeel. (easylist.txt: 32880) -.hostratings.co.uk/zeepeel\. -# ||hostingbulk.com/zad.html (easylist.txt: 32878) -.hostingbulk.com/zad\.html -# ||hostingbulk.com/aad.html (easylist.txt: 32877) -.hostingbulk.com/aad\.html -# ||horriblesubs.info/playasia (easylist.txt: 32876) -.horriblesubs.info/playasia -# ||horizonsunlimited.com/alogos/ (easylist.txt: 32875) -.horizonsunlimited.com/alogos/ -# ||hongkongindians.com/advimages/ (easylist.txt: 32874) -.hongkongindians.com/advimages/ -# ||hongfire.com/banner/ (easylist.txt: 32873) -.hongfire.com/banner/ -# ||honda-tech.com/*-140x90.gif (easylist.txt: 32872) -.honda-tech.com/.*-140x90\.gif -# ||homeschoolmath.net/a/ (easylist.txt: 32871) -.homeschoolmath.net/a/ -# ||holyfragger.com/images/skins/ (easylist.txt: 32870) -.holyfragger.com/images/skins/ -# ||holyfamilyradio.org/banners/ (easylist.txt: 32869) -.holyfamilyradio.org/banners/ -# ||hollywoodbackwash.com/glam/ (easylist.txt: 32868) -.hollywoodbackwash.com/glam/ -# ||hockeybuzz.com/mb/b? (easylist.txt: 32867) -.hockeybuzz.com/mb/b\? -# ||hltv.org/images/csLucky.swf (easylist.txt: 32866) -.hltv.org/images/csLucky\.swf -# ||hltv.org//images/csgofastsky.png (easylist.txt: 32865) -# ||hkclubbing.com/images/banners/ (easylist.txt: 32864) -.hkclubbing.com/images/banners/ -# ||hitechlegion.com/images/banners/ (easylist.txt: 32863) -.hitechlegion.com/images/banners/ -# ||hipforums.com/newforums/calendarcolumn.php?cquery=bush (easylist.txt: 32862) -.hipforums.com/newforums/calendarcolumn\.php\?cquery=bush -# ||hipforums.com/images/banners/ (easylist.txt: 32861) -.hipforums.com/images/banners/ -# ||highdefjunkies.com^*/sponsor.jpg (easylist.txt: 32860) -.highdefjunkies.com/.*/sponsor\.jpg -# ||highdefjunkies.com^*/monoprice.jpg (easylist.txt: 32859) -.highdefjunkies.com/.*/monoprice\.jpg -# ||highdefjunkies.com^*/cp.gif (easylist.txt: 32858) -.highdefjunkies.com/.*/cp\.gif -# ||highdefjunkies.com/images/misc/kindlejoin.jpg (easylist.txt: 32857) -.highdefjunkies.com/images/misc/kindlejoin\.jpg -# ||hickoryrecord.com/app/deal/ (easylist.txt: 32856) -.hickoryrecord.com/app/deal/ -# ||herzeleid.com/files/images/banners/ (easylist.txt: 32854) -.herzeleid.com/files/images/banners/ -# ||herold.at^*.swf?*&linktarget=_blank (easylist.txt: 32853) -.herold.at/.*\.swf\?.*&linktarget=_blank -# ||herold.at/images/dealofday.swf (easylist.txt: 32852) -.herold.at/images/dealofday\.swf -# ||heraldsun.com.au^*/images/sideskins- (easylist.txt: 32850) -.heraldsun.com.au/.*/images/sideskins- -# ||heraldm.com^*/banner/ (easylist.txt: 32849) -.heraldm.com/.*/banner/ -# ||heraldm.com/iframe/ (easylist.txt: 32848) -.heraldm.com/iframe/ -# ||heraldm.com/hb/imad/ (easylist.txt: 32847) -.heraldm.com/hb/imad/ -# ||hentaihaven.org/wp-content/banners/ (easylist.txt: 32845) -.hentaihaven.org/wp-content/banners/ -# ||hentai2read.com/ios/swf/ (easylist.txt: 32844) -.hentai2read.com/ios/swf/ -# ||helsinkitimes.fi^*/banners/ (easylist.txt: 32843) -.helsinkitimes.fi/.*/banners/ -# ||hejban.youwatch.org^ (easylist.txt: 32842) -.hejban.youwatch.org -# ||heatworld.com^*_300x160.jpg (easylist.txt: 32841) -.heatworld.com/.*_300x160\.jpg -# ||heatworld.com/upload/takeovers/ (easylist.txt: 32840) -.heatworld.com/upload/takeovers/ -# ||heatworld.com/images/*_83x76_ (easylist.txt: 32839) -.heatworld.com/images/.*_83x76_ -# ||hearse.com^*/billboards/ (easylist.txt: 32838) -.hearse.com/.*/billboards/ -# ||healthfreedoms.org/assets/swf/320x320_ (easylist.txt: 32837) -.healthfreedoms.org/assets/swf/320x320_ -# ||headlineplanet.com/home/burstbox.html (easylist.txt: 32836) -.headlineplanet.com/home/burstbox\.html -# ||headlineplanet.com/home/box.html (easylist.txt: 32835) -.headlineplanet.com/home/box\.html -# ||hdtvtest.co.uk^*/pricerunner.php (easylist.txt: 32834) -.hdtvtest.co.uk/.*/pricerunner\.php -# ||hd-bb.org^*/dl4fbanner.gif (easylist.txt: 32832) -.hd-bb.org/.*/dl4fbanner\.gif -# ||hawkesbaytoday.co.nz/nz_regionals/marketplace/ (easylist.txt: 32830) -.hawkesbaytoday.co.nz/nz_regionals/marketplace/ -# ||hawkesbay.co.nz/images/banners/ (easylist.txt: 32829) -.hawkesbay.co.nz/images/banners/ -# ||hawaiireporter.com^*_300x400.jpg (easylist.txt: 32828) -.hawaiireporter.com/.*_300x400\.jpg -# ||hawaiireporter.com^*/winnerscampad.jpg (easylist.txt: 32827) -.hawaiireporter.com/.*/winnerscampad\.jpg -# ||hawaiireporter.com^*/upandruningy.jpg (easylist.txt: 32826) -.hawaiireporter.com/.*/upandruningy\.jpg -# ||hawaiireporter.com^*/js.jpg (easylist.txt: 32825) -.hawaiireporter.com/.*/js\.jpg -# ||hawaiireporter.com^*/463%C3%9757-Kamaaina.jpg (easylist.txt: 32824) -.hawaiireporter.com/.*/463%C3%9757-Kamaaina\.jpg -# ||hawaiireporter.com^*-300x250.jpg (easylist.txt: 32823) -.hawaiireporter.com/.*-300x250\.jpg -# ||hardwareheaven.com/wp-content/*_skin_ (easylist.txt: 32822) -.hardwareheaven.com/wp-content/.*_skin_ -# ||hardwareheaven.com/styles/*/frontpage/backdrop.jpg (easylist.txt: 32821) -.hardwareheaven.com/styles/.*/frontpage/backdrop\.jpg -# ||happierabroad.com/Images/banner (easylist.txt: 32820) -.happierabroad.com/Images/banner -# ||hancinema.net/images/watch-now (easylist.txt: 32819) -.hancinema.net/images/watch-now -# ||hancinema.net/images/banner_ (easylist.txt: 32818) -.hancinema.net/images/banner_ -# ||hahasport.com/ads/ (easylist.txt: 32817) -.hahasport.com/ads/ -# ||hackingchinese.com/media/skritter5.jpg (easylist.txt: 32816) -.hackingchinese.com/media/skritter5\.jpg -# ||hackingchinese.com/media/pleco.png (easylist.txt: 32815) -.hackingchinese.com/media/pleco\.png -# ||hackingchinese.com/media/hellochinese.jpg (easylist.txt: 32814) -.hackingchinese.com/media/hellochinese\.jpg -# ||hackingchinese.com/media/hcw4.png (easylist.txt: 32813) -.hackingchinese.com/media/hcw4\.png -# ||ha.ckers.org/images/sectheory-bot.png (easylist.txt: 32812) -.ha.ckers.org/images/sectheory-bot\.png -# ||ha.ckers.org/images/nto_top.png (easylist.txt: 32811) -.ha.ckers.org/images/nto_top\.png -# ||ha.ckers.org/images/fallingrock-bot.png (easylist.txt: 32810) -.ha.ckers.org/images/fallingrock-bot\.png -# ||h33t.to/images/button_direct.png (easylist.txt: 32809) -.h33t.to/images/button_direct\.png -# ||gwinnettdailypost.com/1.iframe.asp? (easylist.txt: 32808) -.gwinnettdailypost.com/1\.iframe\.asp\? -# ||guru99.com/images/adblocker/ (easylist.txt: 32807) -.guru99.com/images/adblocker/ -# ||gurgle.com/modules/mod_m10banners/ (easylist.txt: 32806) -.gurgle.com/modules/mod_m10banners/ -# ||guns.ru^*/banners/ (easylist.txt: 32805) -.guns.ru/.*/banners/ -# ||guns.ru^*/banner/ (easylist.txt: 32804) -.guns.ru/.*/banner/ -# ||gunfreezone.net^*_ad.jpg (easylist.txt: 32803) -.gunfreezone.net/.*_ad\.jpg -# ||gumtree.com^*/dart_wrapper_ (easylist.txt: 32802) -.gumtree.com/.*/dart_wrapper_ -# ||gulfnews.com^*/channelSponsorImage/ (easylist.txt: 32801) -.gulfnews.com/.*/channelSponsorImage/ -# ||gulf-daily-news.com/180x150.htm (easylist.txt: 32800) -.gulf-daily-news.com/180x150\.htm -# ||guardian.bz/images/banners/ (easylist.txt: 32799) -.guardian.bz/images/banners/ -# ||gtweekly.com/images/banners/ (easylist.txt: 32798) -.gtweekly.com/images/banners/ -# ||gtsplus.net*/pantop.html (easylist.txt: 32797) -.gtsplus.net*./(.*/)?pantop\.html -# ||gtsplus.net*/panbottom.html (easylist.txt: 32796) -.gtsplus.net*./(.*/)?panbottom\.html -# ||gtop100.com/a_images/show-a.php? (easylist.txt: 32795) -.gtop100.com/a_images/show-a\.php\? -# ||gsprating.com/gap/image.php? (easylist.txt: 32794) -.gsprating.com/gap/image\.php\? -# ||greyorgray.com/images/hdtv-genie-gog.jpg (easylist.txt: 32792) -.greyorgray.com/images/hdtv-genie-gog\.jpg -# ||greyorgray.com/images/Fast%20Business%20Loans%20Ad.jpg (easylist.txt: 32791) -.greyorgray.com/images/Fast%20Business%20Loans%20Ad\.jpg -# ||greenoptimistic.com/images/electrician2.png (easylist.txt: 32790) -.greenoptimistic.com/images/electrician2\.png -# ||green.virtual-nights.com^ (easylist.txt: 32789) -.green.virtual-nights.com -# ||greatgirlsgames.com/a/skyscraper.php (easylist.txt: 32788) -.greatgirlsgames.com/a/skyscraper\.php -# ||greatgirlsgames.com/100x100.php (easylist.txt: 32787) -.greatgirlsgames.com/100x100\.php -# ||greaterkashmir.com/adds_ (easylist.txt: 32786) -.greaterkashmir.com/adds_ -# ||greatdeals.co.ke/images/banners/ (easylist.txt: 32785) -.greatdeals.co.ke/images/banners/ -# ||greatandhra.com/images/*_ga_ (easylist.txt: 32784) -.greatandhra.com/images/.*_ga_ -# ||graphic.com.gh/images/banners/ (easylist.txt: 32783) -.graphic.com.gh/images/banners/ -# ||grapevine.is/media/flash/*.swf (easylist.txt: 32782) -.grapevine.is/media/flash/.*\.swf -# ||gq.co.za^*/sitetakeover/ (easylist.txt: 32780) -.gq.co.za/.*/sitetakeover/ -# ||gp3series.com^*/Partners/ (easylist.txt: 32779) -.gp3series.com/.*/Partners/ -# ||gowilkes.com/other/ (easylist.txt: 32778) -.gowilkes.com/other/ -# ||gowilkes.com/cj/ (easylist.txt: 32777) -.gowilkes.com/cj/ -# ||gov-auctions.org^*/banner/ (easylist.txt: 32776) -.gov-auctions.org/.*/banner/ -# ||gospel1190.net/rotatorimages/ (easylist.txt: 32774) -.gospel1190.net/rotatorimages/ -# ||gopride.com^*/banners/ (easylist.txt: 32773) -.gopride.com/.*/banners/ -# ||gooster.co.uk/js/ov.js.php (easylist.txt: 32772) -.gooster.co.uk/js/ov\.js\.php -# ||goodgearguide.com.au/files/skins/ (easylist.txt: 32767) -.goodgearguide.com.au/files/skins/ -# ||goodanime.net/images/crazy*.jpg (easylist.txt: 32766) -.goodanime.net/images/crazy.*\.jpg -# ||gonzagamer.com/uci/popover.js (easylist.txt: 32765) -.gonzagamer.com/uci/popover\.js -# ||gomlab.com/img/banner/ (easylist.txt: 32764) -.gomlab.com/img/banner/ -# ||golf365.com^*/site-bg- (easylist.txt: 32763) -.golf365.com/.*/site-bg- -# ||golf365.co.za^*/site-bg- (easylist.txt: 32762) -.golf365.co.za/.*/site-bg- -# ||goldenskate.com/sponsors/ (easylist.txt: 32761) -.goldenskate.com/sponsors/ -# ||gold1013fm.com/promotion/ (easylist.txt: 32760) -.gold1013fm.com/promotion/ -# ||gold1013fm.com/images/background/ (easylist.txt: 32759) -.gold1013fm.com/images/background/ -# ||gold-prices.biz^*_400x300.gif (easylist.txt: 32758) -.gold-prices.biz/.*_400x300\.gif -# ||gold-prices.biz/gold_trading_leader.gif (easylist.txt: 32757) -.gold-prices.biz/gold_trading_leader\.gif -# ||gokunming.com/images/prom/ (easylist.txt: 32756) -.gokunming.com/images/prom/ -# ||godisageek.com/amazon.png (easylist.txt: 32755) -.godisageek.com/amazon\.png -# ||goal.com^*/branding/ (easylist.txt: 32753) -.goal.com/.*/branding/ -# ||go4up.com/assets/img/download-button.png (easylist.txt: 32751) -.go4up.com/assets/img/download-button\.png -# ||go4up.com/assets/img/d0.png (easylist.txt: 32750) -.go4up.com/assets/img/d0\.png -# ||glocktalk.com/forums/images/banners/ (easylist.txt: 32749) -.glocktalk.com/forums/images/banners/ -# ||globaltimes.cn/desktopmodules/bannerdisplay/ (easylist.txt: 32748) -.globaltimes.cn/desktopmodules/bannerdisplay/ -# ||globalsecurity.org/_inc/frames/ (easylist.txt: 32747) -.globalsecurity.org/_inc/frames/ -# ||gledaisport.com/ads/ (easylist.txt: 32746) -.gledaisport.com/ads/ -# ||glassdoor.com/getAdSlotContentsAjax.htm? (easylist.txt: 32745) -.glassdoor.com/getAdSlotContentsAjax\.htm\? -# ||glamourviews.com/home/zones? (easylist.txt: 32744) -.glamourviews.com/home/zones\? -# ||glam.com^*/affiliate/ (easylist.txt: 32743) -.glam.com/.*/affiliate/ -# ||gizmochina.com^*/landvo-l600-pro-feature.jpg (easylist.txt: 32742) -.gizmochina.com/.*/landvo-l600-pro-feature\.jpg -# ||gizmochina.com^*/kingsing-t8-advert.jpg (easylist.txt: 32741) -.gizmochina.com/.*/kingsing-t8-advert\.jpg -# ||gizmochina.com^*/100002648432985.gif (easylist.txt: 32740) -.gizmochina.com/.*/100002648432985\.gif -# ||gizmochina.com/images/blackview.jpg (easylist.txt: 32739) -.gizmochina.com/images/blackview\.jpg -# ||girlsgames.biz/games/partner*.php (easylist.txt: 32738) -.girlsgames.biz/games/partner.*\.php -# ||girlguides.co.za/images/banners/ (easylist.txt: 32737) -.girlguides.co.za/images/banners/ -# ||giftguide.savannahnow.com/giftguide/widgets/ (easylist.txt: 32735) -.giftguide.savannahnow.com/giftguide/widgets/ -# ||ghananewsagency.org/assets/banners/ (easylist.txt: 32734) -.ghananewsagency.org/assets/banners/ -# ||ghafla.co.ke/images/bgmax/ (easylist.txt: 32733) -.ghafla.co.ke/images/bgmax/ -# ||ghafla.co.ke/images/banners/ (easylist.txt: 32732) -.ghafla.co.ke/images/banners/ -# ||ghacks.net/skin- (easylist.txt: 32731) -.ghacks.net/skin- -# ||gfx.infomine.com^ (easylist.txt: 32730) -.gfx.infomine.com -# ||gfi.com/blog/wp-content/uploads/*-BlogBanner (easylist.txt: 32729) -.gfi.com/blog/wp-content/uploads/.*-BlogBanner -# ||getthekick.eu^*/banners/ (easylist.txt: 32728) -.getthekick.eu/.*/banners/ -# ||getsurrey.co.uk^*/bg_takeover_ (easylist.txt: 32727) -.getsurrey.co.uk/.*/bg_takeover_ -# ||getrichslowly.org/blog/img/banner/ (easylist.txt: 32726) -.getrichslowly.org/blog/img/banner/ -# ||getreading.co.uk/static/img/bg_takeover_ (easylist.txt: 32724) -.getreading.co.uk/static/img/bg_takeover_ -# ||getfoxyproxy.org/images/abine/ (easylist.txt: 32722) -.getfoxyproxy.org/images/abine/ -# ||get.thefile.me^ (easylist.txt: 32721) -.get.thefile.me -# ||get-bitcoins-free.eu/img/blackred728smallsize.gif (easylist.txt: 32720) -.get-bitcoins-free.eu/img/blackred728smallsize\.gif -# ||gestetnerupdates.com^*/perfect-auto-collision_banner.gif (easylist.txt: 32719) -.gestetnerupdates.com/.*/perfect-auto-collision_banner\.gif -# ||gestetnerupdates.com^*/Gestetner-Miles.gif (easylist.txt: 32718) -.gestetnerupdates.com/.*/Gestetner-Miles\.gif -# ||gestetnerupdates.com^*/eagle-sewer.gif (easylist.txt: 32717) -.gestetnerupdates.com/.*/eagle-sewer\.gif -# ||gestetnerupdates.com^*/chesed-shel-emes-600x75.gif (easylist.txt: 32716) -.gestetnerupdates.com/.*/chesed-shel-emes-600x75\.gif -# ||geoshopping.nzherald.co.nz^ (easylist.txt: 32715) -.geoshopping.nzherald.co.nz -# ||geometria.tv/banners/ (easylist.txt: 32714) -.geometria.tv/banners/ -# ||geocities.yahoo.*/js/sq. (easylist.txt: 32713) -.geocities.yahoo.*./(.*/)?js/sq\. -# ||geocities.com/js_source/ (easylist.txt: 32712) -.geocities.com/js_source/ -# ||gentoo.org/images/sponsors/ (easylist.txt: 32711) -.gentoo.org/images/sponsors/ -# ||generalfiles.me^*/download_sponsored. (easylist.txt: 32710) -.generalfiles.me/.*/download_sponsored\. -# ||geeklab.info^*/billy.png (easylist.txt: 32706) -.geeklab.info/.*/billy\.png -# ||geckoforums.net/banners/ (easylist.txt: 32705) -.geckoforums.net/banners/ -# ||gcnlive.com/assets/sponsorsPlayer/ (easylist.txt: 32704) -.gcnlive.com/assets/sponsorsPlayer/ -# ||gcnlive.com/assets/sponsors/ (easylist.txt: 32703) -.gcnlive.com/assets/sponsors/ -# ||gbrej.com/c/ (easylist.txt: 32702) -.gbrej.com/c/ -# ||gbatemp.net/images/ab/ (easylist.txt: 32701) -.gbatemp.net/images/ab/ -# ||gaynz.gen.nz/mysa/banners/ (easylist.txt: 32700) -.gaynz.gen.nz/mysa/banners/ -# ||gaynz.com/mysa/banners/ (easylist.txt: 32699) -.gaynz.com/mysa/banners/ -# ||gaydarradio.com/userportal/miva/ (easylist.txt: 32698) -.gaydarradio.com/userportal/miva/ -# ||gawkerassets.com^*/background.jpg (easylist.txt: 32697) -.gawkerassets.com/.*/background\.jpg -# ||gateprep.com/templates/default/images/promo/ (easylist.txt: 32696) -.gateprep.com/templates/default/images/promo/ -# ||gasgoo.com/promo/ (easylist.txt: 32695) -.gasgoo.com/promo/ -# ||garrysmod.org/img/sad/ (easylist.txt: 32694) -.garrysmod.org/img/sad/ -# ||gappon.com/images/hot2.gif (easylist.txt: 32693) -.gappon.com/images/hot2\.gif -# ||ganool.com/wp-content/uploads/*/matrix303.gif (easylist.txt: 32692) -.ganool.com/wp-content/uploads/.*/matrix303\.gif -# ||ganool.com/wp-content/uploads/*/Javtoys300250..gif (easylist.txt: 32691) -.ganool.com/wp-content/uploads/.*/Javtoys300250\.\.gif -# ||ganool.com/pup.js (easylist.txt: 32690) -.ganool.com/pup\.js -# ||gamingsquid.com/wp-content/banners/ (easylist.txt: 32689) -.gamingsquid.com/wp-content/banners/ -# ||gamevid.com/13/ads/ (easylist.txt: 32688) -.gamevid.com/13/ads/ -# ||gametrailers.com^*/webskin_ (easylist.txt: 32687) -.gametrailers.com/.*/webskin_ -# ||gameshark.com^*/pageskin- (easylist.txt: 32686) -.gameshark.com/.*/pageskin- -# ||gamesgames.com/vda/ (easylist.txt: 32685) -.gamesgames.com/vda/ -# ||gamesfreez.com/banner/ (easylist.txt: 32684) -.gamesfreez.com/banner/ -# ||gamesforwork.com^*/dropalink_small.gif (easylist.txt: 32683) -.gamesforwork.com/.*/dropalink_small\.gif -# ||gameserpent.com/vc*.php (easylist.txt: 32682) -.gameserpent.com/vc.*\.php -# ||gameserpent.com/kit*.php (easylist.txt: 32681) -.gameserpent.com/kit.*\.php -# ||gamersbook.com^*/banners/ (easylist.txt: 32680) -.gamersbook.com/.*/banners/ -# ||gamerant.com/ads/ (easylist.txt: 32679) -.gamerant.com/ads/ -# ||gamepressure.com/ajax/f2p.asp (easylist.txt: 32678) -.gamepressure.com/ajax/f2p\.asp -# ||gameplanet.co.nz^*-takeover.jpg (easylist.txt: 32677) -.gameplanet.co.nz/.*-takeover\.jpg -# ||gamemakerblog.com/gma/gatob.php (easylist.txt: 32676) -.gamemakerblog.com/gma/gatob\.php -# ||gameknot.com/amaster.pl?j= (easylist.txt: 32675) -.gameknot.com/amaster\.pl\?j= -# ||gamecopyworld.eu*/! (easylist.txt: 32674) -.gamecopyworld.eu*./(.*/)?! -# ||gamecopyworld.com^*/vg_160x120_ (easylist.txt: 32673) -.gamecopyworld.com/.*/vg_160x120_ -# ||gamecopyworld.com/games/js/abd.js (easylist.txt: 32672) -.gamecopyworld.com/games/js/abd\.js -# ||gamecopyworld.com/games/i/if6.gif (easylist.txt: 32671) -.gamecopyworld.com/games/i/if6\.gif -# ||gamecopyworld.com*/! (easylist.txt: 32670) -.gamecopyworld.com*./(.*/)?! -# ||gameads.digyourowngrave.com^ (easylist.txt: 32669) -.gameads.digyourowngrave.com -# ||game1games.com/exchange/ (easylist.txt: 32668) -.game1games.com/exchange/ -# ||gamblinginsider.com^*/partner_events.php (easylist.txt: 32667) -.gamblinginsider.com/.*/partner_events\.php -# ||gallerysense.se/site/getBannerCode (easylist.txt: 32666) -.gallerysense.se/site/getBannerCode -# ||gallerynova.se^*/jquery.bpopup.min.js (easylist.txt: 32665) -.gallerynova.se/.*/jquery\.bpopup\.min\.js -# ||galatta.com^*/banners/ (easylist.txt: 32664) -.galatta.com/.*/banners/ -# ||galatta.com^*/bannerimages/ (easylist.txt: 32663) -.galatta.com/.*/bannerimages/ -# ||gaeatimes.com/ctad/ (easylist.txt: 32662) -.gaeatimes.com/ctad/ -# ||gadgetshowlive.net^*/banners/ (easylist.txt: 32661) -.gadgetshowlive.net/.*/banners/ -# ||gadgetmac.com^*/sponsors/ (easylist.txt: 32660) -.gadgetmac.com/.*/sponsors/ -# ||gadget.co.za/siteimages/banners/ (easylist.txt: 32659) -.gadget.co.za/siteimages/banners/ -# ||gaccwest.com/uploads/tx_bannermanagement/ (easylist.txt: 32658) -.gaccwest.com/uploads/tx_bannermanagement/ -# ||gaccsouth.com/uploads/tx_bannermanagement/ (easylist.txt: 32657) -.gaccsouth.com/uploads/tx_bannermanagement/ -# ||gaccny.com/uploads/tx_bannermanagement/ (easylist.txt: 32656) -.gaccny.com/uploads/tx_bannermanagement/ -# ||gaccmidwest.org/uploads/tx_bannermanagement/ (easylist.txt: 32655) -.gaccmidwest.org/uploads/tx_bannermanagement/ -# ||gabzfm.com/images/banners/ (easylist.txt: 32654) -.gabzfm.com/images/banners/ -# ||g.brothersoft.com^ (easylist.txt: 32653) -.g.brothersoft.com -# ||f谋rstrowsports.eu/pu/ (easylist.txt: 32652) -.f谋rstrowsports.eu/pu/ -# ||fuse.tv/images/sponsor/ (easylist.txt: 32649) -.fuse.tv/images/sponsor/ -# ||funpic.org/layer.php? (easylist.txt: 32648) -.funpic.org/layer\.php\? -# ||funpic.de/layer.php? (easylist.txt: 32647) -.funpic.de/layer\.php\? -# ||fulltv.tv/pub_ (easylist.txt: 32646) -.fulltv.tv/pub_ -# ||fullrip.net/images/download- (easylist.txt: 32645) -.fullrip.net/images/download- -# ||fulhamfc.com/i/partner/ (easylist.txt: 32644) -.fulhamfc.com/i/partner/ -# ||fugitive.com^*-468x60web. (easylist.txt: 32643) -.fugitive.com/.*-468x60web\. -# ||fudzilla.com^*/banners/ (easylist.txt: 32642) -.fudzilla.com/.*/banners/ -# ||ftlauderdalewebcam.com^*-WebCamBannerFall_ (easylist.txt: 32641) -.ftlauderdalewebcam.com/.*-WebCamBannerFall_ -# ||ftlauderdalewebcam.com/images/*webcambanner (easylist.txt: 32640) -.ftlauderdalewebcam.com/images/.*webcambanner -# ||ftdworld.net/images/banners/ (easylist.txt: 32639) -.ftdworld.net/images/banners/ -# ||fscheetahs.co.za/images/Sponsers/ (easylist.txt: 32638) -.fscheetahs.co.za/images/Sponsers/ -# ||frozen-roms.me/popup.php (easylist.txt: 32637) -.frozen-roms.me/popup\.php -# ||frozen-roms.in/popup.php (easylist.txt: 32636) -.frozen-roms.in/popup\.php -# ||frombar.com/ads/ (easylist.txt: 32635) -.frombar.com/ads/ -# ||friday-ad.co.uk/endeca/afccontainer.aspx (easylist.txt: 32634) -.friday-ad.co.uk/endeca/afccontainer\.aspx -# ||friday-ad.co.uk/banner.js? (easylist.txt: 32633) -.friday-ad.co.uk/banner\.js\? -# ||freshremix.ru/images/ffdownloader1.jpg (easylist.txt: 32632) -.freshremix.ru/images/ffdownloader1\.jpg -# ||freshremix.org/templates/freshremix_eng/images/300.gif (easylist.txt: 32631) -.freshremix.org/templates/freshremix_eng/images/300\.gif -# ||freshplaza.com/b/ (easylist.txt: 32630) -.freshplaza.com/b/ -# ||fresh-weather.com/popup1.gif (easylist.txt: 32629) -.fresh-weather.com/popup1\.gif -# ||frenchradiolondon.com/data/carousel/ (easylist.txt: 32628) -.frenchradiolondon.com/data/carousel/ -# ||freeworldgroup.com/banner (easylist.txt: 32627) -.freeworldgroup.com/banner -# ||freevermontradio.org/pictures/lauren_Stagnitti.jpg (easylist.txt: 32626) -.freevermontradio.org/pictures/lauren_Stagnitti\.jpg -# ||freetypinggame.net/burst720.asp (easylist.txt: 32625) -.freetypinggame.net/burst720\.asp -# ||freetv-video.ca^*/popover-load-js.php? (easylist.txt: 32624) -.freetv-video.ca/.*/popover-load-js\.php\? -# ||freesoftwaremagazine.com/extras/ (easylist.txt: 32622) -.freesoftwaremagazine.com/extras/ -# ||freeroms.com/skyscraper_ (easylist.txt: 32621) -.freeroms.com/skyscraper_ -# ||freeroms.com/bigbox_ (easylist.txt: 32620) -.freeroms.com/bigbox_ -# ||freeroms.com/bigbox.html (easylist.txt: 32619) -.freeroms.com/bigbox\.html -# ||freepornsubmits.com/ads/ (easylist.txt: 32618) -.freepornsubmits.com/ads/ -# ||freenode.net/images/freenode_osuosl.png (easylist.txt: 32617) -.freenode.net/images/freenode_osuosl\.png -# ||freenode.net/images/ack_privateinternetaccess-freenode.png (easylist.txt: 32616) -.freenode.net/images/ack_privateinternetaccess-freenode\.png -# ||freeminecraft.me/mw3.png (easylist.txt: 32615) -.freeminecraft.me/mw3\.png -# ||freemediatv.com/images/inmemoryofmichael.jpg (easylist.txt: 32614) -.freemediatv.com/images/inmemoryofmichael\.jpg -# ||freeappaday.com/nimgs/bb/ (easylist.txt: 32613) -.freeappaday.com/nimgs/bb/ -# ||freeads.co.uk/ctx.php? (easylist.txt: 32612) -.freeads.co.uk/ctx\.php\? -# ||free-webhosts.com/images/a/ (easylist.txt: 32611) -.free-webhosts.com/images/a/ -# ||free-tv-video-online.me/season-side- (easylist.txt: 32610) -.free-tv-video-online.me/season-side- -# ||free-tv-video-online.me/episode-buttom- (easylist.txt: 32609) -.free-tv-video-online.me/episode-buttom- -# ||free-tv-video-online.me/300s.html (easylist.txt: 32608) -.free-tv-video-online.me/300s\.html -# ||free-torrents.org^*/banners/ (easylist.txt: 32607) -.free-torrents.org/.*/banners/ -# ||free-times.com/image/pool/ (easylist.txt: 32606) -.free-times.com/image/pool/ -# ||fredmiranda.com/buzz/canondble-600x90.jpg (easylist.txt: 32605) -.fredmiranda.com/buzz/canondble-600x90\.jpg -# ||freakshare.com/yild.js (easylist.txt: 32604) -.freakshare.com/yild\.js -# ||fpscheats.com/fpsbanner.jpg (easylist.txt: 32603) -.fpscheats.com/fpsbanner\.jpg -# ||fpscheats.com/banner-img.jpg (easylist.txt: 32602) -.fpscheats.com/banner-img\.jpg -# ||foxsportsradio.com/pages/second300x250iframe.html (easylist.txt: 32601) -.foxsportsradio.com/pages/second300x250iframe\.html -# ||foxsports540.com/images/banner2.png (easylist.txt: 32600) -.foxsports540.com/images/banner2\.png -# ||foxsports540.com/images/banner1.png (easylist.txt: 32599) -.foxsports540.com/images/banner1\.png -# ||foxsports.com^*_skin_ (easylist.txt: 32598) -.foxsports.com/.*_skin_ -# ||foxsports.com^*/Sponsors/ (easylist.txt: 32597) -.foxsports.com/.*/Sponsors/ -# ||foxsports.com^*-skin_ (easylist.txt: 32596) -.foxsports.com/.*-skin_ -# ||foxsports.com^*-Skin- (easylist.txt: 32595) -.foxsports.com/.*-Skin- -# ||foxsports.com/component/xml/SBMarketingTakeOverPromos (easylist.txt: 32594) -.foxsports.com/component/xml/SBMarketingTakeOverPromos -# ||foxsports.com.au^*/sponsor/ (easylist.txt: 32592) -.foxsports.com.au/.*/sponsor/ -# ||foxsoccer2go.com/namedImage/*/backgroundSkin.jpg (easylist.txt: 32591) -.foxsoccer2go.com/namedImage/.*/backgroundSkin\.jpg -# ||foxbusiness.com/html/google_homepage_promo (easylist.txt: 32590) -.foxbusiness.com/html/google_homepage_promo -# ||forward.com/workspace/assets/newimages/amazon.png (easylist.txt: 32589) -.forward.com/workspace/assets/newimages/amazon\.png -# ||forumw.org/images/uploading.gif (easylist.txt: 32588) -.forumw.org/images/uploading\.gif -# ||forumimg.ipmart.com/swf/ipmart_forum/banner (easylist.txt: 32587) -.forumimg.ipmart.com/swf/ipmart_forum/banner -# ||forexpeacearmy.com/images/banners/ (easylist.txt: 32586) -.forexpeacearmy.com/images/banners/ -# ||foreignersinuk.co.uk^*/banner/ (easylist.txt: 32585) -.foreignersinuk.co.uk/.*/banner/ -# ||fordforums.com.au/logos/ (easylist.txt: 32584) -.fordforums.com.au/logos/ -# ||footballtradedirectory.com^*banner (easylist.txt: 32583) -.footballtradedirectory.com/.*banner -# ||footballshirtculture.com/images/e12b.jpg (easylist.txt: 32582) -.footballshirtculture.com/images/e12b\.jpg -# ||football-italia.net/imgs/moveyourmouse.gif (easylist.txt: 32581) -.football-italia.net/imgs/moveyourmouse\.gif -# ||foodingredientsfirst.com/content/flash_loaders/loadskyscraper.swf (easylist.txt: 32580) -.foodingredientsfirst.com/content/flash_loaders/loadskyscraper\.swf -# ||foodingredientsfirst.com/content/flash_loaders/loadlargetile.swf (easylist.txt: 32579) -.foodingredientsfirst.com/content/flash_loaders/loadlargetile\.swf -# ||foodingredientsfirst.com/content/banners/ (easylist.txt: 32578) -.foodingredientsfirst.com/content/banners/ -# ||fncstatic.com^*/sponsored-by.gif (easylist.txt: 32577) -.fncstatic.com/.*/sponsored-by\.gif -# ||fmr.co.za^*/banners/ (easylist.txt: 32576) -.fmr.co.za/.*/banners/ -# ||flyordie.com/games/online/ca.html (easylist.txt: 32575) -.flyordie.com/games/online/ca\.html -# ||flyordie.com/games/free/b/ (easylist.txt: 32574) -.flyordie.com/games/free/b/ -# ||flvto.biz/scripts/banners.php? (easylist.txt: 32573) -.flvto.biz/scripts/banners\.php\? -# ||flopturnriver.com*/banners/ (easylist.txt: 32571) -.flopturnriver.com*./(.*/)?banners/ -# ||flightradar24.com/_includes/sections/airportAd.php (easylist.txt: 32570) -.flightradar24.com/_includes/sections/airportAd\.php -# ||flicks.co.nz/takeovercss/ (easylist.txt: 32569) -.flicks.co.nz/takeovercss/ -# ||flicks.co.nz/images/takeovers/ (easylist.txt: 32568) -.flicks.co.nz/images/takeovers/ -# ||fleetwatch.co.za/images/banners/ (easylist.txt: 32567) -.fleetwatch.co.za/images/banners/ -# ||flatpanelshd.com/pictures/*banner (easylist.txt: 32566) -.flatpanelshd.com/pictures/.*banner -# ||flashy8.com/banner/ (easylist.txt: 32565) -.flashy8.com/banner/ -# ||flashx.tv^*/counterck.html (easylist.txt: 32564) -.flashx.tv/.*/counterck\.html -# ||flashx.tv/nuevo/player/js/anya.js (easylist.txt: 32563) -.flashx.tv/nuevo/player/js/anya\.js -# ||flashx.tv/img/download_ (easylist.txt: 32562) -.flashx.tv/img/download_ -# ||flashtv.co/class/adjsxxs.js (easylist.txt: 32561) -.flashtv.co/class/adjsxxs\.js -# ||flashtv.co/adds/ (easylist.txt: 32560) -.flashtv.co/adds/ -# ||flashscore.com/res/image/bookmaker-list.png (easylist.txt: 32559) -.flashscore.com/res/image/bookmaker-list\.png -# ||flameload.com/onvertise. (easylist.txt: 32558) -.flameload.com/onvertise\. -# ||fiverr.com/javascripts/conversion.js (easylist.txt: 32557) -.fiverr.com/javascripts/conversion\.js -# ||fishchannel.com/images/sponsors/ (easylist.txt: 32556) -.fishchannel.com/images/sponsors/ -# ||firsttoknow.com^*/page-criteo- (easylist.txt: 32555) -.firsttoknow.com/.*/page-criteo- -# ||firstrowusa.eu/js/pu.js (easylist.txt: 32554) -.firstrowusa.eu/js/pu\.js -# ||firstrowusa.eu/js/bn.js (easylist.txt: 32553) -.firstrowusa.eu/js/bn\.js -# ||firstrowsports.li/frame/ (easylist.txt: 32552) -.firstrowsports.li/frame/ -# ||firstrows.biz/js/pu.js (easylist.txt: 32551) -.firstrows.biz/js/pu\.js -# ||firstrows.biz/js/bn.js (easylist.txt: 32550) -.firstrows.biz/js/bn\.js -# ||firstpost.in^*/promo/ (easylist.txt: 32549) -.firstpost.in/.*/promo/ -# ||firstpost.com^*_sponsored. (easylist.txt: 32548) -.firstpost.com/.*_sponsored\. -# ||firstpost.com^*_skin_ (easylist.txt: 32547) -.firstpost.com/.*_skin_ -# ||firstpost.com^*/sponsered- (easylist.txt: 32546) -.firstpost.com/.*/sponsered- -# ||firstpost.com/promo/ (easylist.txt: 32545) -.firstpost.com/promo/ -# ||firstnationsvoice.com/images/weblinks.swf (easylist.txt: 32544) -.firstnationsvoice.com/images/weblinks\.swf -# ||firingsquad.com^*/sponsor_row.gif (easylist.txt: 32543) -.firingsquad.com/.*/sponsor_row\.gif -# ||firedrive.com/appresources/ (easylist.txt: 32542) -.firedrive.com/appresources/ -# ||firedrive.com/appdata/ (easylist.txt: 32541) -.firedrive.com/appdata/ -# ||finextra.com^*/pantiles/ (easylist.txt: 32540) -.finextra.com/.*/pantiles/ -# ||finextra.com^*/leaderboards/ (easylist.txt: 32539) -.finextra.com/.*/leaderboards/ -# ||findthebest-sw.com/sponsor_event? (easylist.txt: 32538) -.findthebest-sw.com/sponsor_event\? -# ||findnsave.idahostatesman.com^ (easylist.txt: 32537) -.findnsave.idahostatesman.com -# ||findit.com.mt/viewer/ (easylist.txt: 32536) -.findit.com.mt/viewer/ -# ||findit.com.mt/dynimage/boxbanner/ (easylist.txt: 32535) -.findit.com.mt/dynimage/boxbanner/ -# ||findicons.com^*/125x125/ (easylist.txt: 32534) -.findicons.com/.*/125x125/ -# ||findfreegraphics.com/underp.js (easylist.txt: 32533) -.findfreegraphics.com/underp\.js -# ||findfiles.com/images/knife-dancing-1.gif (easylist.txt: 32532) -.findfiles.com/images/knife-dancing-1\.gif -# ||findfiles.com/images/icatchallfree.png (easylist.txt: 32531) -.findfiles.com/images/icatchallfree\.png -# ||financialsamurai.com/wp-content/uploads/*/sliced-alternative-10000.jpg (easylist.txt: 32530) -.financialsamurai.com/wp-content/uploads/.*/sliced-alternative-10000\.jpg -# ||financialnewsandtalk.com/scripts/slideshow-sponsors.js (easylist.txt: 32529) -.financialnewsandtalk.com/scripts/slideshow-sponsors\.js -# ||fimserve.ign.com^ (easylist.txt: 32528) -.fimserve.ign.com -# ||filmsite.org/dart-zones.js (easylist.txt: 32527) -.filmsite.org/dart-zones\.js -# ||filmovizija.com/Images/photo4sell.jpg (easylist.txt: 32526) -.filmovizija.com/Images/photo4sell\.jpg -# ||filmovizija.com/Images/ludovanjeaffilate.jpg (easylist.txt: 32525) -.filmovizija.com/Images/ludovanjeaffilate\.jpg -# ||filmey.com/Filmey.Ad.js (easylist.txt: 32524) -.filmey.com/Filmey\.Ad\.js -# ||filipinojournal.com/images/banners/ (easylist.txt: 32523) -.filipinojournal.com/images/banners/ -# ||filestream.me/requirements/images/ed.gif (easylist.txt: 32522) -.filestream.me/requirements/images/ed\.gif -# ||filestream.me/requirements/images/cialis_generic.gif (easylist.txt: 32521) -.filestream.me/requirements/images/cialis_generic\.gif -# ||filespazz.com^*/copyartwork_side_banner.gif (easylist.txt: 32520) -.filespazz.com/.*/copyartwork_side_banner\.gif -# ||filespazz.com/imx/template_r2_c3.jpg (easylist.txt: 32519) -.filespazz.com/imx/template_r2_c3\.jpg -# ||filespart.com/ot/fast.aspx? (easylist.txt: 32518) -.filespart.com/ot/fast\.aspx\? -# ||fileshut.com/etc/links.php?q= (easylist.txt: 32517) -.fileshut.com/etc/links\.php\?q= -# ||filesharingtalk.com/fst/8242/ (easylist.txt: 32516) -.filesharingtalk.com/fst/8242/ -# ||files.wordpress.com/*-reskin. (easylist.txt: 32515) -.files.wordpress.com/.*-reskin\. -# ||filerio.in^*/jquery.interstitial. (easylist.txt: 32514) -.filerio.in/.*/jquery\.interstitial\. -# ||fileplanet.com/fileblog/sub-no-ad.shtml (easylist.txt: 32513) -.fileplanet.com/fileblog/sub-no-ad\.shtml -# ||fileom.com/img/instadownload2.png (easylist.txt: 32512) -.fileom.com/img/instadownload2\.png -# ||fileom.com/img/downloadnow.png (easylist.txt: 32511) -.fileom.com/img/downloadnow\.png -# ||filegaga.com/ot/fast.php? (easylist.txt: 32510) -.filegaga.com/ot/fast\.php\? -# ||fileflyer.com/img/dap_banner_ (easylist.txt: 32509) -.fileflyer.com/img/dap_banner_ -# ||filedino.com/imagesn/downloadgif.gif (easylist.txt: 32508) -.filedino.com/imagesn/downloadgif\.gif -# ||file2hd.com/sweet.jpg (easylist.txt: 32507) -.file2hd.com/sweet\.jpg -# ||file.org^*/images/promo/ (easylist.txt: 32506) -.file.org/.*/images/promo/ -# ||file.org/fo/scripts/download_helpopt.js (easylist.txt: 32505) -.file.org/fo/scripts/download_helpopt\.js -# ||fijitimes.com/images/bspxchange.gif (easylist.txt: 32504) -.fijitimes.com/images/bspxchange\.gif -# ||fightersonlymag.com/images/banners/ (easylist.txt: 32503) -.fightersonlymag.com/images/banners/ -# ||fiberupload.org/300en.png (easylist.txt: 32502) -.fiberupload.org/300en\.png -# ||fiba.com/Content/Sponsors/ (easylist.txt: 32501) -.fiba.com/Content/Sponsors/ -# ||fhm.com^*_banner.png (easylist.txt: 32500) -.fhm.com/.*_banner\.png -# ||fhm.com^*_background.jpg (easylist.txt: 32499) -.fhm.com/.*_background\.jpg -# ||fhm.com/images/sportsbutton.gif (easylist.txt: 32498) -.fhm.com/images/sportsbutton\.gif -# ||fhm.com/images/casinobutton.gif (easylist.txt: 32497) -.fhm.com/images/casinobutton\.gif -# ||fgfx.co.uk/banner.js? (easylist.txt: 32496) -.fgfx.co.uk/banner\.js\? -# ||ffiles.com/counters.js (easylist.txt: 32495) -.ffiles.com/counters\.js -# ||fever.fm^*/sposor- (easylist.txt: 32494) -.fever.fm/.*/sposor- -# ||fever.fm^*/campaigns/ (easylist.txt: 32493) -.fever.fm/.*/campaigns/ -# ||feiwei.tv^*/sandbox.html (easylist.txt: 32492) -.feiwei.tv/.*/sandbox\.html -# ||feedsportal.com/videoserve/ (easylist.txt: 32491) -.feedsportal.com/videoserve/ -# ||feedsportal.com/creative/ (easylist.txt: 32490) -.feedsportal.com/creative/ -# ||feeds.feedburner.com/*.gif (easylist.txt: 32489) -.feeds.feedburner.com/.*\.gif -# ||feed-the-beast.com^*/gamevox.png (easylist.txt: 32487) -.feed-the-beast.com/.*/gamevox\.png -# ||fastvideo.eu/images/pl_box_rapid.jpg (easylist.txt: 32485) -.fastvideo.eu/images/pl_box_rapid\.jpg -# ||fastvideo.eu/images/down.png (easylist.txt: 32484) -.fastvideo.eu/images/down\.png -# ||fastpic.ru/dox (easylist.txt: 32483) -.fastpic.ru/dox -# ||fastcompany.com/sites/*/interstitial.js (easylist.txt: 32482) -.fastcompany.com/sites/.*/interstitial\.js -# ||farmville.com/promo_bar.php (easylist.txt: 32481) -.farmville.com/promo_bar\.php -# ||fark.com/cgi/buzzfeed_link.pl (easylist.txt: 32480) -.fark.com/cgi/buzzfeed_link\.pl -# ||fanfusion.org/as.js (easylist.txt: 32478) -.fanfusion.org/as\.js -# ||fancystreems.com/300x2503.php (easylist.txt: 32477) -.fancystreems.com/300x2503\.php -# ||fan.twitch.tv^ (easylist.txt: 32476) -.fan.twitch.tv -# ||famouspornstarstube.com/images/sponsors/ (easylist.txt: 32475) -.famouspornstarstube.com/images/sponsors/ -# ||familylawweek.co.uk/bin_1/ (easylist.txt: 32474) -.familylawweek.co.uk/bin_1/ -# ||fallout3nexus.com^*/300x600.php (easylist.txt: 32473) -.fallout3nexus.com/.*/300x600\.php -# ||facenfacts.com^*/ads/ (easylist.txt: 32471) -.facenfacts.com/.*/ads/ -# ||faadooengineers.com/ads/ (easylist.txt: 32470) -.faadooengineers.com/ads/ -# ||f1today.net^*/sponsors/ (easylist.txt: 32469) -.f1today.net/.*/sponsors/ -# ||eztv.ag/js/openback*.js (easylist.txt: 32468) -.eztv.ag/js/openback.*\.js -# ||ezmoviestv.com^*/ad-for-ezmovies.png (easylist.txt: 32467) -.ezmoviestv.com/.*/ad-for-ezmovies\.png -# ||extremeoverclocking.com/template_images/it120x240.gif (easylist.txt: 32466) -.extremeoverclocking.com/template_images/it120x240\.gif -# ||extratorrent.cc/tz (easylist.txt: 32465) -.extratorrent.cc/tz -# ||extratorrent.cc/scripts/pp_ (easylist.txt: 32464) -.extratorrent.cc/scripts/pp_ -# ||extratorrent.cc/scripts/bo1o.js (easylist.txt: 32463) -.extratorrent.cc/scripts/bo1o\.js -# ||extratorrent.cc/images/wintoolspro.gif (easylist.txt: 32462) -.extratorrent.cc/images/wintoolspro\.gif -# ||expreview.com/exp2/ (easylist.txt: 32461) -.expreview.com/exp2/ -# ||expressmilwaukee.com/engines/backgrounds/js/backgrounds.js (easylist.txt: 32460) -.expressmilwaukee.com/engines/backgrounds/js/backgrounds\.js -# ||express.co.uk^*/sponsored/ (easylist.txt: 32459) -.express.co.uk/.*/sponsored/ -# ||expertreviews.co.uk^*/skins/ (easylist.txt: 32458) -.expertreviews.co.uk/.*/skins/ -# ||expertreviews.co.uk/?act=widgets. (easylist.txt: 32457) -.expertreviews.co.uk/\?act=widgets\. -# ||expatwomen.com/expat-women-sponsors/ (easylist.txt: 32456) -.expatwomen.com/expat-women-sponsors/ -# ||expatexchange.com/banner/ (easylist.txt: 32455) -.expatexchange.com/banner/ -# ||excite.com/gca_iframe.html (easylist.txt: 32454) -.excite.com/gca_iframe\.html -# ||exchangerates.org.uk/images/200x200_ (easylist.txt: 32453) -.exchangerates.org.uk/images/200x200_ -# ||exchangerates.org.uk/images/150_60_ (easylist.txt: 32452) -.exchangerates.org.uk/images/150_60_ -# ||exchangerates.org.uk/images-NEW/tor.gif (easylist.txt: 32451) -.exchangerates.org.uk/images-NEW/tor\.gif -# ||exceluser.com^*/pub/rotate_ (easylist.txt: 32450) -.exceluser.com/.*/pub/rotate_ -# ||exashare.com/vod_stream.html (easylist.txt: 32448) -.exashare.com/vod_stream\.html -# ||exashare.com/playerexa.jpg (easylist.txt: 32447) -.exashare.com/playerexa\.jpg -# ||exashare.com/player_file.jpg (easylist.txt: 32446) -.exashare.com/player_file\.jpg -# ||exashare.com/player_begin.jpg (easylist.txt: 32445) -.exashare.com/player_begin\.jpg -# ||exashare.com/hq_stream.html (easylist.txt: 32444) -.exashare.com/hq_stream\.html -# ||ewrc-results.com/images/horni_ewrc_result_banner3.jpg (easylist.txt: 32442) -.ewrc-results.com/images/horni_ewrc_result_banner3\.jpg -# ||eweek.com^*/sponsored- (easylist.txt: 32441) -.eweek.com/.*/sponsored- -# ||eweek.com/widgets/ibmtco/ (easylist.txt: 32440) -.eweek.com/widgets/ibmtco/ -# ||eweek.com/images/stories/marketing/ (easylist.txt: 32439) -.eweek.com/images/stories/marketing/ -# ||evony.com/sevonyadvs2. (easylist.txt: 32438) -.evony.com/sevonyadvs2\. -# ||evolutionm.net/SponsorLogos/ (easylist.txt: 32437) -.evolutionm.net/SponsorLogos/ -# ||everythingsysadmin.com^*_sw_banner120x600_ (easylist.txt: 32436) -.everythingsysadmin.com/.*_sw_banner120x600_ -# ||evernote.com/prom/img/ (easylist.txt: 32435) -.evernote.com/prom/img/ -# ||eventful.com/tools/click/url? (easylist.txt: 32434) -.eventful.com/tools/click/url\? -# ||eve-search.com/gge.gif (easylist.txt: 32433) -.eve-search.com/gge\.gif -# ||eva.ucas.com^ (easylist.txt: 32432) -.eva.ucas.com -# ||euroweb.com^*/banner/ (easylist.txt: 32431) -.euroweb.com/.*/banner/ -# ||europeonline-magazine.eu/nuroa/ (easylist.txt: 32430) -.europeonline-magazine.eu/nuroa/ -# ||europeonline-magazine.eu/banner/ (easylist.txt: 32429) -.europeonline-magazine.eu/banner/ -# ||european-rubber-journal.com/160x600px_ (easylist.txt: 32428) -.european-rubber-journal.com/160x600px_ -# ||euronews.com/media/farnborough/farnborough_wp.jpg (easylist.txt: 32427) -.euronews.com/media/farnborough/farnborough_wp\.jpg -# ||euroleague.net^*/sponsors- (easylist.txt: 32426) -.euroleague.net/.*/sponsors- -# ||eurogamer.net^*/takeovers/ (easylist.txt: 32425) -.eurogamer.net/.*/takeovers/ -# ||eurogamer.net/quad.php (easylist.txt: 32424) -.eurogamer.net/quad\.php -# ||eurodict.com/images/banner_ (easylist.txt: 32423) -.eurodict.com/images/banner_ -# ||eurocupbasketball.com^*/sponsors- (easylist.txt: 32422) -.eurocupbasketball.com/.*/sponsors- -# ||eurochannel.com/images/banners/ (easylist.txt: 32421) -.eurochannel.com/images/banners/ -# ||euphonik.dj/img/sponsors- (easylist.txt: 32420) -.euphonik.dj/img/sponsors- -# ||etidbits.com/300x250news.php (easylist.txt: 32419) -.etidbits.com/300x250news\.php -# ||eteknix.com/wp-content/uploads/*Takeover (easylist.txt: 32418) -.eteknix.com/wp-content/uploads/.*Takeover -# ||eteknix.com/wp-content/uploads/*skin (easylist.txt: 32417) -.eteknix.com/wp-content/uploads/.*skin -# ||esus.com/images/regiochat_logo.png (easylist.txt: 32416) -.esus.com/images/regiochat_logo\.png -# ||essayscam.org^*/ads.js (easylist.txt: 32415) -.essayscam.org/.*/ads\.js -# ||essayinfo.com/img/125x125_ (easylist.txt: 32414) -.essayinfo.com/img/125x125_ -# ||espn1320.net/get_preroll.php? (easylist.txt: 32413) -.espn1320.net/get_preroll\.php\? -# ||espn.go.com/ads/ (easylist.txt: 32411) -.espn.go.com/ads/ -# ||espn.co.uk^*/viagogo_sports.html (easylist.txt: 32410) -.espn.co.uk/.*/viagogo_sports\.html -# ||espn.co.uk/espnuk/williamhill_ (easylist.txt: 32409) -.espn.co.uk/espnuk/williamhill_ -# ||espn.co.uk/espnuk/williamhill/ (easylist.txt: 32408) -.espn.co.uk/espnuk/williamhill/ -# ||escapementmagazine.com/wp-content/banners/ (easylist.txt: 32407) -.escapementmagazine.com/wp-content/banners/ -# ||eq2flames.com/images/styles/eq2/images/banner (easylist.txt: 32406) -.eq2flames.com/images/styles/eq2/images/banner -# ||eprop.co.za/images/banners/ (easylist.txt: 32405) -.eprop.co.za/images/banners/ -# ||episodic.com^*/logos/player- (easylist.txt: 32404) -.episodic.com/.*/logos/player- -# ||epictv.com/sites/default/files/290x400_ (easylist.txt: 32403) -.epictv.com/sites/default/files/290x400_ -# ||epicshare.net/p1.js (easylist.txt: 32402) -.epicshare.net/p1\.js -# ||environmental-finance.com^*rotate.gif (easylist.txt: 32401) -.environmental-finance.com/.*rotate\.gif -# ||environmental-finance.com^*banner (easylist.txt: 32400) -.environmental-finance.com/.*banner -# ||enigmagroup.org/clients/privatetunnels.swf (easylist.txt: 32399) -.enigmagroup.org/clients/privatetunnels\.swf -# ||englishtips.org/b/ (easylist.txt: 32398) -.englishtips.org/b/ -# ||england.fm/i/ducksunited120x60english.gif (easylist.txt: 32397) -.england.fm/i/ducksunited120x60english\.gif -# ||energytribune.com/res/banner/ (easylist.txt: 32396) -.energytribune.com/res/banner/ -# ||encyclopediadramatica.es/spon/ (easylist.txt: 32394) -.encyclopediadramatica.es/spon/ -# ||encyclopediadramatica.es/lanhell.js (easylist.txt: 32393) -.encyclopediadramatica.es/lanhell\.js -# ||empirestatenews.net/Banners/ (easylist.txt: 32387) -.empirestatenews.net/Banners/ -# ||emoneyspace.com/b.php (easylist.txt: 32386) -.emoneyspace.com/b\.php -# ||emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy.gif (easylist.txt: 32385) -.emergencymedicalparamedic.com/wp-content/uploads/2011/12/anatomy\.gif -# ||elocallink.tv^*/showgif.php? (easylist.txt: 32384) -.elocallink.tv/.*/showgif\.php\? -# ||elivetv.in/pop/ (easylist.txt: 32383) -.elivetv.in/pop/ -# ||elgg.org/images/hostupon_banner.gif (easylist.txt: 32382) -.elgg.org/images/hostupon_banner\.gif -# ||elevenmyanmar.com/images/banners/ (easylist.txt: 32381) -.elevenmyanmar.com/images/banners/ -# ||electronicsfeed.com/bximg/ (easylist.txt: 32380) -.electronicsfeed.com/bximg/ -# ||electricenergyonline.com^*/bannieres/ (easylist.txt: 32379) -.electricenergyonline.com/.*/bannieres/ -# ||ekantipur.com/uploads/banner/ (easylist.txt: 32378) -.ekantipur.com/uploads/banner/ -# ||ejpress.org/img/banners/ (easylist.txt: 32377) -.ejpress.org/img/banners/ -# ||ejpress.org/images/banners/ (easylist.txt: 32376) -.ejpress.org/images/banners/ -# ||ejb.com/300_250 (easylist.txt: 32375) -.ejb.com/300_250 -# ||ehow.com/media/ad.html^ (easylist.txt: 32374) -.ehow.com/media/ad\.html[^\w%.-] -# ||ehow.com/marketing/ (easylist.txt: 32373) -.ehow.com/marketing/ -# ||ehow.com/images/brands/ (easylist.txt: 32372) -.ehow.com/images/brands/ -# ||ehow.co.uk/frames/directas_ (easylist.txt: 32371) -.ehow.co.uk/frames/directas_ -# ||egamer.co.za^*-background- (easylist.txt: 32370) -.egamer.co.za/.*-background- -# ||educationbusinessuk.net/images/stage.gif (easylist.txt: 32369) -.educationbusinessuk.net/images/stage\.gif -# ||edmunds.com/api/savesegment? (easylist.txt: 32368) -.edmunds.com/api/savesegment\? -# ||ed2k.2x4u.de/mfc/ (easylist.txt: 32366) -.ed2k.2x4u.de/mfc/ -# ||ecostream.tv/js/pu.js (easylist.txt: 32365) -.ecostream.tv/js/pu\.js -# ||ecostream.tv/assets/js/pu.min.js (easylist.txt: 32364) -.ecostream.tv/assets/js/pu\.min\.js -# ||economist.com^*/timekeeper-by-rolex-medium.png (easylist.txt: 32363) -.economist.com/.*/timekeeper-by-rolex-medium\.png -# ||economist.com.na^*/banners/ (easylist.txt: 32362) -.economist.com.na/.*/banners/ -# ||ecommerce-journal.com/specdata.php? (easylist.txt: 32361) -.ecommerce-journal.com/specdata\.php\? -# ||eclipse.org/membership/promo/images/ (easylist.txt: 32360) -.eclipse.org/membership/promo/images/ -# ||ebuddy.com/web_banners_ (easylist.txt: 32359) -.ebuddy.com/web_banners_ -# ||ebuddy.com/web_banners/ (easylist.txt: 32358) -.ebuddy.com/web_banners/ -# ||ebuddy.com/textlink.php? (easylist.txt: 32357) -.ebuddy.com/textlink\.php\? -# ||ebookshare.net^*/streamdirect160x600_ (easylist.txt: 32356) -.ebookshare.net/.*/streamdirect160x600_ -# ||ebookshare.net/pages/lt.html (easylist.txt: 32355) -.ebookshare.net/pages/lt\.html -# ||ebizmbainc.netdna-cdn.com/images/tab_sponsors.gif (easylist.txt: 32354) -.ebizmbainc.netdna-cdn.com/images/tab_sponsors\.gif -# ||ebizblitz.co.za/upload/ad/ (easylist.txt: 32353) -.ebizblitz.co.za/upload/ad/ -# ||ebaystatic.com/aw/pics/signin/*_signInSkin_ (easylist.txt: 32351) -.ebaystatic.com/aw/pics/signin/.*_signInSkin_ -# ||ebayrtm.com/rtm?RtmIt (easylist.txt: 32350) -.ebayrtm.com/rtm\?RtmIt -# ||ebayrtm.com/rtm?RtmCmd*&enc= (easylist.txt: 32349) -.ebayrtm.com/rtm\?RtmCmd.*&enc= -# ||eatsleepsport.com/images/manorgaming1.jpg (easylist.txt: 32348) -.eatsleepsport.com/images/manorgaming1\.jpg -# ||easybytez.com/pop3.js (easylist.txt: 32347) -.easybytez.com/pop3\.js -# ||eastonline.eu/images/eng_banner_ (easylist.txt: 32346) -.eastonline.eu/images/eng_banner_ -# ||eastonline.eu/images/banners/ (easylist.txt: 32345) -.eastonline.eu/images/banners/ -# ||earthmoversmagazine.co.uk/nimg/ (easylist.txt: 32344) -.earthmoversmagazine.co.uk/nimg/ -# ||earthlink.net^*/promos/ (easylist.txt: 32343) -.earthlink.net/.*/promos/ -# ||e90post.com/forums/images/banners/ (easylist.txt: 32342) -.e90post.com/forums/images/banners/ -# ||dyncdn.celebuzz.com/assets/ (easylist.txt: 32340) -.dyncdn.celebuzz.com/assets/ -# ||dwarfgames.com/pub/728_top. (easylist.txt: 32339) -.dwarfgames.com/pub/728_top\. -# ||dvdvideosoft.com^*/banners/ (easylist.txt: 32338) -.dvdvideosoft.com/.*/banners/ -# ||dustcoin.com^*/image/ad- (easylist.txt: 32337) -.dustcoin.com/.*/image/ad- -# ||durbannews.co.za^*_new728x60.gif (easylist.txt: 32336) -.durbannews.co.za/.*_new728x60\.gif -# ||dump8.com/wget_2leep_bottom.php (easylist.txt: 32335) -.dump8.com/wget_2leep_bottom\.php -# ||dump8.com/wget.php (easylist.txt: 32334) -.dump8.com/wget\.php -# ||dump8.com/tiz/ (easylist.txt: 32333) -.dump8.com/tiz/ -# ||duckload.com/js/abp.php? (easylist.txt: 32332) -.duckload.com/js/abp\.php\? -# ||duckduckgo.com/y.js (easylist.txt: 32331) -.duckduckgo.com/y\.js -# ||duckduckgo.com/m.js?*&o=a (easylist.txt: 32330) -.duckduckgo.com/m\.js\?.*&o=a -# ||duckduckgo.com/i.js?o=a& (easylist.txt: 32329) -.duckduckgo.com/i\.js\?o=a& -# ||dubcnm.com/Adon/ (easylist.txt: 32328) -.dubcnm.com/Adon/ -# ||dsogaming.com/interstitial/ (easylist.txt: 32327) -.dsogaming.com/interstitial/ -# ||droidgamers.com/images/banners/ (easylist.txt: 32326) -.droidgamers.com/images/banners/ -# ||driverdb.com^*/banners/ (easylist.txt: 32325) -.driverdb.com/.*/banners/ -# ||drivearchive.co.uk/images/amazon. (easylist.txt: 32324) -.drivearchive.co.uk/images/amazon\. -# ||drivearchive.co.uk/amazon/ (easylist.txt: 32323) -.drivearchive.co.uk/amazon/ -# ||drhinternet.net/mwimgsent/ (easylist.txt: 32322) -.drhinternet.net/mwimgsent/ -# ||dreamscene.org^*_Banner. (easylist.txt: 32321) -.dreamscene.org/.*_Banner\. -# ||dpstatic.com/s/ad.js (easylist.txt: 32319) -.dpstatic.com/s/ad\.js -# ||dpstatic.com/banner.png? (easylist.txt: 32318) -.dpstatic.com/banner\.png\? -# ||dprogram.net^*/rightsprites.png (easylist.txt: 32317) -.dprogram.net/.*/rightsprites\.png -# ||downloadian.com/assets/banner.jpg (easylist.txt: 32316) -.downloadian.com/assets/banner\.jpg -# ||downloadbox.to/Leadertop.html (easylist.txt: 32315) -.downloadbox.to/Leadertop\.html -# ||downforeveryoneorjustme.com/images/dotbiz_banner.jpg (easylist.txt: 32314) -.downforeveryoneorjustme.com/images/dotbiz_banner\.jpg -# ||doubleviking.com/ss.html (easylist.txt: 32313) -.doubleviking.com/ss\.html -# ||dota-trade.com/img/branding_ (easylist.txt: 32311) -.dota-trade.com/img/branding_ -# ||dontblockme.modaco.com^ (easylist.txt: 32310) -.dontblockme.modaco.com -# ||dominicantoday.com/stor/banners/ (easylist.txt: 32309) -.dominicantoday.com/stor/banners/ -# ||domaintools.com/partners/ (easylist.txt: 32308) -.domaintools.com/partners/ -# ||domaintools.com/marketing/ (easylist.txt: 32307) -.domaintools.com/marketing/ -# ||domaintools.com/eurodns_ (easylist.txt: 32306) -.domaintools.com/eurodns_ -# ||domainmarket.com/mm/ (easylist.txt: 32305) -.domainmarket.com/mm/ -# ||dogechain.info/content/img/a (easylist.txt: 32304) -.dogechain.info/content/img/a -# ||doge-dice.com/images/outpost.png (easylist.txt: 32303) -.doge-dice.com/images/outpost\.png -# ||doge-dice.com/images/faucet.jpg (easylist.txt: 32302) -.doge-dice.com/images/faucet\.jpg -# ||dnsstuff.com/dnsmedia/images/ft.banner. (easylist.txt: 32301) -.dnsstuff.com/dnsmedia/images/ft\.banner\. -# ||dnsstuff.com/dnsmedia/images/*_banner.jpg (easylist.txt: 32300) -.dnsstuff.com/dnsmedia/images/.*_banner\.jpg -# ||dl4all.com^*/hotfile.gif (easylist.txt: 32299) -.dl4all.com/.*/hotfile\.gif -# ||dl4all.com/img/download.jpg (easylist.txt: 32298) -.dl4all.com/img/download\.jpg -# ||dl4all.com/data4.files/dpopupwindow.js (easylist.txt: 32297) -.dl4all.com/data4\.files/dpopupwindow\.js -# ||dl-protect.com/pop.js (easylist.txt: 32296) -.dl-protect.com/pop\.js -# ||djtunes.com^*/adbg/ (easylist.txt: 32295) -.djtunes.com/.*/adbg/ -# ||djmag.com/sites/default/files/takeover/ (easylist.txt: 32294) -.djmag.com/sites/default/files/takeover/ -# ||djmag.co.uk/sites/default/files/takeover/ (easylist.txt: 32293) -.djmag.co.uk/sites/default/files/takeover/ -# ||djluv.in/android.gif (easylist.txt: 32292) -.djluv.in/android\.gif -# ||diytrade.com/diyep/dir?page=common/ppadv& (easylist.txt: 32291) -.diytrade.com/diyep/dir\?page=common/ppadv& -# ||divxstage.eu/images/download.png (easylist.txt: 32290) -.divxstage.eu/images/download\.png -# ||divxme.com/images/play.png (easylist.txt: 32289) -.divxme.com/images/play\.png -# ||dividendchannel.com/toprankedsm.gif (easylist.txt: 32288) -.dividendchannel.com/toprankedsm\.gif -# ||distrowatch.com^*/advanced-admin. (easylist.txt: 32287) -.distrowatch.com/.*/advanced-admin\. -# ||distrowatch.com^*/3cx.png (easylist.txt: 32286) -.distrowatch.com/.*/3cx\.png -# ||distrowatch.com^*-*.gif (easylist.txt: 32285) -.distrowatch.com/.*-.*\.gif -# ||distrowatch.com/images/kokoku/ (easylist.txt: 32284) -.distrowatch.com/images/kokoku/ -# ||distrogeeks.com/images/sponsors/ (easylist.txt: 32283) -.distrogeeks.com/images/sponsors/ -# ||display.superbay.net^ (easylist.txt: 32282) -.display.superbay.net -# ||dispatch.com^*/dpcpopunder.js (easylist.txt: 32281) -.dispatch.com/.*/dpcpopunder\.js -# ||dishusa.net/templates/flero/images/book_sprava.gif (easylist.txt: 32280) -.dishusa.net/templates/flero/images/book_sprava\.gif -# ||dippic.com/images/banner (easylist.txt: 32279) -.dippic.com/images/banner -# ||diplodocs.com/shopping/sol.js (easylist.txt: 32278) -.diplodocs.com/shopping/sol\.js -# ||digzip.com^*baner.swf (easylist.txt: 32277) -.digzip.com/.*baner\.swf -# ||digitizor.com/wp-content/digimages/xsoftspyse.png (easylist.txt: 32276) -.digitizor.com/wp-content/digimages/xsoftspyse\.png -# ||digitalreality.co.nz^*/360_hacks_banner.gif (easylist.txt: 32275) -.digitalreality.co.nz/.*/360_hacks_banner\.gif -# ||digitaljournal.com/promo/ (easylist.txt: 32274) -.digitaljournal.com/promo/ -# ||digdug.divxnetworks.com^ (easylist.txt: 32273) -.digdug.divxnetworks.com -# ||dictionary.com^*/serp_to/ (easylist.txt: 32272) -.dictionary.com/.*/serp_to/ -# ||dictionary.cambridge.org/info/frame.html?zone= (easylist.txt: 32271) -.dictionary.cambridge.org/info/frame\.html\?zone= -# ||diamondworld.net/admin/getresource.aspx? (easylist.txt: 32270) -.diamondworld.net/admin/getresource\.aspx\? -# ||di.fm^*/ads/webplayer (easylist.txt: 32269) -.di.fm/.*/ads/webplayer -# ||dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ (easylist.txt: 32268) -.dezeen.com/wp-content/themes/dezeen-aa-hpto-mini-sept-2014/ -# ||devx.com/devx/3174.gif (easylist.txt: 32267) -.devx.com/devx/3174\.gif -# ||devour.com/*skin (easylist.txt: 32264) -.devour.com/.*skin -# ||develop-online.net/static/banners/ (easylist.txt: 32262) -.develop-online.net/static/banners/ -# ||detroitindependent.net/images/ad_ (easylist.txt: 32261) -.detroitindependent.net/images/ad_ -# ||detnews.com^*/sponsor/ (easylist.txt: 32260) -.detnews.com/.*/sponsor/ -# ||desixpress.co.uk/image/banners/ (easylist.txt: 32259) -.desixpress.co.uk/image/banners/ -# ||desiretoinspire.net^*125x125 (easylist.txt: 32258) -.desiretoinspire.net/.*125x125 -# ||desiretoinspire.net^*/mgbanner.gif (easylist.txt: 32257) -.desiretoinspire.net/.*/mgbanner\.gif -# ||desiretoinspire.net/storage/layout/royalcountessad.gif (easylist.txt: 32256) -.desiretoinspire.net/storage/layout/royalcountessad\.gif -# ||desiretoinspire.net/storage/layout/modmaxbanner.gif (easylist.txt: 32255) -.desiretoinspire.net/storage/layout/modmaxbanner\.gif -# ||deshvidesh.com/banner/ (easylist.txt: 32254) -.deshvidesh.com/banner/ -# ||deseretnews.com/img/sponsors/ (easylist.txt: 32253) -.deseretnews.com/img/sponsors/ -# ||depic.me/bann/ (easylist.txt: 32251) -.depic.me/bann/ -# ||demerarawaves.com/images/banners/ (easylist.txt: 32249) -.demerarawaves.com/images/banners/ -# ||defensereview.com^*_banner_ (easylist.txt: 32247) -.defensereview.com/.*_banner_ -# ||defenceweb.co.za/logos/ (easylist.txt: 32246) -.defenceweb.co.za/logos/ -# ||defenceweb.co.za/images/sponsorlogos/ (easylist.txt: 32245) -.defenceweb.co.za/images/sponsorlogos/ -# ||decryptedtech.com/images/banners/ (easylist.txt: 32244) -.decryptedtech.com/images/banners/ -# ||deccanchronicle.com^*/shaadi.com/ (easylist.txt: 32243) -.deccanchronicle.com/.*/shaadi\.com/ -# ||deccanchronicle.com^*-searchquad-300100.swf (easylist.txt: 32242) -.deccanchronicle.com/.*-searchquad-300100\.swf -# ||deccanchronicle.com^*-banner- (easylist.txt: 32241) -.deccanchronicle.com/.*-banner- -# ||decadeforum.com/images/misc/download2.png (easylist.txt: 32240) -.decadeforum.com/images/misc/download2\.png -# ||deborah-bickel.de/banners/ (easylist.txt: 32239) -.deborah-bickel.de/banners/ -# ||deals.ledgertranscript.com^ (easylist.txt: 32238) -.deals.ledgertranscript.com -# ||ddl2.com/header.php? (easylist.txt: 32235) -.ddl2.com/header\.php\? -# ||ddccdn.com/js/google_ (easylist.txt: 32234) -.ddccdn.com/js/google_ -# ||dcourier.com/SiteImages/Banner/ (easylist.txt: 32233) -.dcourier.com/SiteImages/Banner/ -# ||dcad.watersoul.com^ (easylist.txt: 32232) -.dcad.watersoul.com -# ||dbstalk.com/sponsors/ (easylist.txt: 32231) -.dbstalk.com/sponsors/ -# ||dayport.com/ads/ (easylist.txt: 32230) -.dayport.com/ads/ -# ||davesite.com^*/aff/ (easylist.txt: 32229) -.davesite.com/.*/aff/ -# ||datpiff.com/skins/misc/ (easylist.txt: 32228) -.datpiff.com/skins/misc/ -# ||darknet.org.uk^*/do468. (easylist.txt: 32227) -.darknet.org.uk/.*/do468\. -# ||darknet.org.uk^*-250x250. (easylist.txt: 32226) -.darknet.org.uk/.*-250x250\. -# ||darknet.org.uk/images/acunetix_ (easylist.txt: 32225) -.darknet.org.uk/images/acunetix_ -# ||damnlol.com/damnlol.com.*.js (easylist.txt: 32224) -.damnlol.com/damnlol\.com\..*\.js -# ||damnlol.com/a/leaderboard.php (easylist.txt: 32223) -.damnlol.com/a/leaderboard\.php -# ||dailywritingtips.com^*/publisher2.gif (easylist.txt: 32222) -.dailywritingtips.com/.*/publisher2\.gif -# ||dailytrust.info/images/dangote.swf (easylist.txt: 32221) -.dailytrust.info/images/dangote\.swf -# ||dailytrust.info/images/banners/ (easylist.txt: 32220) -.dailytrust.info/images/banners/ -# ||dailytimes.com.pk/banners/ (easylist.txt: 32219) -.dailytimes.com.pk/banners/ -# ||dailysabah.com/banner/ (easylist.txt: 32218) -.dailysabah.com/banner/ -# ||dailypuppy.com/images/livestrong/ls_diet_120x90_1.gif (easylist.txt: 32217) -.dailypuppy.com/images/livestrong/ls_diet_120x90_1\.gif -# ||dailypioneer.com/images/banners/ (easylist.txt: 32216) -.dailypioneer.com/images/banners/ -# ||dailynews.lk^*/webadz/ (easylist.txt: 32215) -.dailynews.lk/.*/webadz/ -# ||dailynews.gov.bw^*/banner_ (easylist.txt: 32214) -.dailynews.gov.bw/.*/banner_ -# ||dailynews.co.zw^*-takeover. (easylist.txt: 32213) -.dailynews.co.zw/.*-takeover\. -# ||dailynews.co.tz/images/banners/ (easylist.txt: 32212) -.dailynews.co.tz/images/banners/ -# ||dailymotion.com/images/ie.png (easylist.txt: 32210) -.dailymotion.com/images/ie\.png -# ||dailymirror.lk/media/images/Nawaloka- (easylist.txt: 32209) -.dailymirror.lk/media/images/Nawaloka- -# ||dailymail.co.uk^*/promoboxes/ (easylist.txt: 32208) -.dailymail.co.uk/.*/promoboxes/ -# ||dailymail.co.uk/modules/commercial/ (easylist.txt: 32207) -.dailymail.co.uk/modules/commercial/ -# ||dailymail.co.uk/i/pix/ebay/ (easylist.txt: 32206) -.dailymail.co.uk/i/pix/ebay/ -# ||dailyhome.com/leaderboard_banner (easylist.txt: 32205) -.dailyhome.com/leaderboard_banner -# ||dailyherald.com^*/contextual.js (easylist.txt: 32204) -.dailyherald.com/.*/contextual\.js -# ||dailyfreegames.com/js/partners.html (easylist.txt: 32203) -.dailyfreegames.com/js/partners\.html -# ||dailyexpress.com.my/image/banner/ (easylist.txt: 32202) -.dailyexpress.com.my/image/banner/ -# ||dailyexpress.com.my/banners/ (easylist.txt: 32201) -.dailyexpress.com.my/banners/ -# ||dailydeals.sfgate.com/widget/ (easylist.txt: 32200) -.dailydeals.sfgate.com/widget/ -# ||dailydeals.savannahnow.com^ (easylist.txt: 32199) -.dailydeals.savannahnow.com -# ||dailydeals.onlineathens.com^ (easylist.txt: 32198) -.dailydeals.onlineathens.com -# ||dailydeals.lubbockonline.com^ (easylist.txt: 32197) -.dailydeals.lubbockonline.com -# ||dailydeals.brainerddispatch.com^ (easylist.txt: 32196) -.dailydeals.brainerddispatch.com -# ||dailydeals.augustachronicle.com^ (easylist.txt: 32195) -.dailydeals.augustachronicle.com -# ||dailydeals.amarillo.com^ (easylist.txt: 32194) -.dailydeals.amarillo.com -# ||dailydeal.news-record.com/widgets/ (easylist.txt: 32193) -.dailydeal.news-record.com/widgets/ -# ||dailycommercial.com/inc.php? (easylist.txt: 32192) -.dailycommercial.com/inc\.php\? -# ||dailyblogtips.com/wp-content/uploads/*.gif (easylist.txt: 32191) -.dailyblogtips.com/wp-content/uploads/.*\.gif -# ||dailybitcoins.org/banners/ (easylist.txt: 32190) -.dailybitcoins.org/banners/ -# ||daily-sun.com^*/banner/ (easylist.txt: 32189) -.daily-sun.com/.*/banner/ -# ||daily-mail.co.zm^*_banner. (easylist.txt: 32188) -.daily-mail.co.zm/.*_banner\. -# ||daily-mail.co.zm^*_270x312. (easylist.txt: 32187) -.daily-mail.co.zm/.*_270x312\. -# ||daily-mail.co.zm^*_1170x120. (easylist.txt: 32186) -.daily-mail.co.zm/.*_1170x120\. -# ||daily-mail.co.zm^*/singapore_auto. (easylist.txt: 32185) -.daily-mail.co.zm/.*/singapore_auto\. -# ||daily-mail.co.zm^*/side_strip. (easylist.txt: 32184) -.daily-mail.co.zm/.*/side_strip\. -# ||daily-mail.co.zm^*/sbt.gif (easylist.txt: 32183) -.daily-mail.co.zm/.*/sbt\.gif -# ||daily-mail.co.zm/images/banners/ (easylist.txt: 32182) -.daily-mail.co.zm/images/banners/ -# ||dads.new.digg.com^ (easylist.txt: 32181) -.dads.new.digg.com -# ||dabs.com/images/page-backgrounds/ (easylist.txt: 32180) -.dabs.com/images/page-backgrounds/ -# ||d5e.info/2.png (easylist.txt: 32177) -.d5e.info/2\.png -# ||d5e.info/1.gif (easylist.txt: 32176) -.d5e.info/1\.gif -# ||d.thelocal.com^ (easylist.txt: 32175) -.d.thelocal.com -# ||d.imwx.com/js/wx-a21-plugthis- (easylist.txt: 32174) -.d.imwx.com/js/wx-a21-plugthis- -# ||d.gossipcenter.com^ (easylist.txt: 32173) -.d.gossipcenter.com -# ||d.businessinsider.com^ (easylist.txt: 32172) -.d.businessinsider.com -# ||d.annarbor.com^ (easylist.txt: 32171) -.d.annarbor.com -# ||d-h.st/assets/img/download1.png (easylist.txt: 32170) -.d-h.st/assets/img/download1\.png -# ||d-addicts.com^*/banner/ (easylist.txt: 32169) -.d-addicts.com/.*/banner/ -# ||cybergamer.com/skins/ (easylist.txt: 32168) -.cybergamer.com/skins/ -# ||cyanogenmod.com/static/tdr_skyscraper.png (easylist.txt: 32167) -.cyanogenmod.com/static/tdr_skyscraper\.png -# ||cur.lv/nbottom.php? (easylist.txt: 32166) -.cur.lv/nbottom\.php\? -# ||cur.lv/bootstrap/js/bootstrapx-clickover.js (easylist.txt: 32165) -.cur.lv/bootstrap/js/bootstrapx-clickover\.js -# ||ctv.ca/Sites/Ctv/assets/js/ctvDfpAd.js (easylist.txt: 32164) -.ctv.ca/Sites/Ctv/assets/js/ctvDfpAd\.js -# ||ctv.ca/ctvresources/js/ctvad.js (easylist.txt: 32163) -.ctv.ca/ctvresources/js/ctvad\.js -# ||ctmirror.org/randomsupporter/ (easylist.txt: 32162) -.ctmirror.org/randomsupporter/ -# ||cship.org/w/skins/monobook/uns.gif (easylist.txt: 32161) -.cship.org/w/skins/monobook/uns\.gif -# ||csgobackpack.net/653x50. (easylist.txt: 32160) -.csgobackpack.net/653x50\. -# ||crystalmedianetworks.com^*-180x150.jpg (easylist.txt: 32159) -.crystalmedianetworks.com/.*-180x150\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt.jpg (easylist.txt: 32158) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt\.jpg -# ||cryptocoinsnews.com/wp-content/uploads/*/xbt-social.png (easylist.txt: 32157) -.cryptocoinsnews.com/wp-content/uploads/.*/xbt-social\.png -# ||cryptocoinsnews.com/wp-content/uploads/*/cloudbet_ (easylist.txt: 32156) -.cryptocoinsnews.com/wp-content/uploads/.*/cloudbet_ -# ||cryptocoinsnews.com/wp-content/uploads/*/ccn.png (easylist.txt: 32155) -.cryptocoinsnews.com/wp-content/uploads/.*/ccn\.png -# ||cruzine.com^*/banners/ (easylist.txt: 32154) -.cruzine.com/.*/banners/ -# ||crushorflush.com/html/promoframe.html (easylist.txt: 32153) -.crushorflush.com/html/promoframe\.html -# ||crunchyroll.*/vast? (easylist.txt: 32152) -.crunchyroll.*./(.*/)?vast\? -# ||crimeaware.co.za/files-upload/banner/ (easylist.txt: 32151) -.crimeaware.co.za/files-upload/banner/ -# ||cricruns.com/images/hioxindia- (easylist.txt: 32150) -.cricruns.com/images/hioxindia- -# ||cricbuzz.com/js/banners/ (easylist.txt: 32149) -.cricbuzz.com/js/banners/ -# ||creattor.net/flashxmlbanners/ (easylist.txt: 32148) -.creattor.net/flashxmlbanners/ -# ||creatives.livejasmin.com^ (easylist.txt: 32147) -.creatives.livejasmin.com -# ||createtv.com/CreateProgram.nsf/vShowcaseFeaturedSideContentByLinkTitle/ (easylist.txt: 32146) -.createtv.com/CreateProgram\.nsf/vShowcaseFeaturedSideContentByLinkTitle/ -# ||crazymotion.net/video_*.php?key= (easylist.txt: 32145) -.crazymotion.net/video_.*\.php\?key= -# ||crazy-torrent.com/web/banner/online.jpg (easylist.txt: 32144) -.crazy-torrent.com/web/banner/online\.jpg -# ||crazy-torrent.com/web/banner/0xxx0.net.jpg (easylist.txt: 32143) -.crazy-torrent.com/web/banner/0xxx0\.net\.jpg -# ||craveonline.com/gnads/ (easylist.txt: 32142) -.craveonline.com/gnads/ -# ||cramdodge.com/mg- (easylist.txt: 32141) -.cramdodge.com/mg- -# ||crackdb.com/img/vpn.png (easylist.txt: 32140) -.crackdb.com/img/vpn\.png -# ||crackdb.cd/cd.swf (easylist.txt: 32139) -.crackdb.cd/cd\.swf -# ||cpub.co.uk/a? (easylist.txt: 32138) -.cpub.co.uk/a\? -# ||cphpost.dk^*/banners/ (easylist.txt: 32137) -.cphpost.dk/.*/banners/ -# ||countrychannel.tv/telvos_banners/ (easylist.txt: 32136) -.countrychannel.tv/telvos_banners/ -# ||cosplay.com/1lensvillage.gif (easylist.txt: 32135) -.cosplay.com/1lensvillage\.gif -# ||coryarcangel.com/images/banners/ (easylist.txt: 32134) -.coryarcangel.com/images/banners/ -# ||cops.com^*/copbanner_ (easylist.txt: 32133) -.cops.com/.*/copbanner_ -# ||copblock.org/wp-content/uploads/*/covert-handcuff-key-AD- (easylist.txt: 32132) -.copblock.org/wp-content/uploads/.*/covert-handcuff-key-AD- -# ||coolsport.tv/lshadd. (easylist.txt: 32131) -.coolsport.tv/lshadd\. -# ||coolsport.tv/adtadd. (easylist.txt: 32130) -.coolsport.tv/adtadd\. -# ||coolmath.net/*-medrect.html (easylist.txt: 32129) -.coolmath.net/.*-medrect\.html -# ||coolmath-games.com/images/160-notice.gif (easylist.txt: 32128) -.coolmath-games.com/images/160-notice\.gif -# ||coolfm.us/lagos969/images/banners/ (easylist.txt: 32127) -.coolfm.us/lagos969/images/banners/ -# ||conwaydailysun.com/images/Tiles_Skyscrapers/ (easylist.txt: 32126) -.conwaydailysun.com/images/Tiles_Skyscrapers/ -# ||conwaydailysun.com/images/banners/ (easylist.txt: 32125) -.conwaydailysun.com/images/banners/ -# ||convertmyimage.com/images/banner-square.png (easylist.txt: 32124) -.convertmyimage.com/images/banner-square\.png -# ||consumerreports.org^*/sx.js (easylist.txt: 32123) -.consumerreports.org/.*/sx\.js -# ||constructionreviewonline.com^*banner (easylist.txt: 32122) -.constructionreviewonline.com/.*banner -# ||constructionreviewonline.com^*730x90 (easylist.txt: 32121) -.constructionreviewonline.com/.*730x90 -# ||console-spot.com^*.swf (easylist.txt: 32120) -.console-spot.com/.*\.swf -# ||conscioustalk.net/images/sponsors/ (easylist.txt: 32119) -.conscioustalk.net/images/sponsors/ -# ||connectionstrings.com/csas/public/a.ashx? (easylist.txt: 32118) -.connectionstrings.com/csas/public/a\.ashx\? -# ||concrete.tv/images/banners/ (easylist.txt: 32117) -.concrete.tv/images/banners/ -# ||con-telegraph.ie/images/banners/ (easylist.txt: 32116) -.con-telegraph.ie/images/banners/ -# ||computerworld.com^*/jobroll/ (easylist.txt: 32115) -.computerworld.com/.*/jobroll/ -# ||computerhelp.com/temp/banners/ (easylist.txt: 32114) -.computerhelp.com/temp/banners/ -# ||computerandvideogames.com^*/promos/ (easylist.txt: 32113) -.computerandvideogames.com/.*/promos/ -# ||complexmedianetwork.com^*/toolbarlogo.png (easylist.txt: 32112) -.complexmedianetwork.com/.*/toolbarlogo\.png -# ||complexmedianetwork.com^*/takeovers/ (easylist.txt: 32111) -.complexmedianetwork.com/.*/takeovers/ -# ||complaintsboard.com/img/banner- (easylist.txt: 32110) -.complaintsboard.com/img/banner- -# ||complaintsboard.com/img/202x202.gif (easylist.txt: 32109) -.complaintsboard.com/img/202x202\.gif -# ||compassnewspaper.com/images/banners/ (easylist.txt: 32108) -.compassnewspaper.com/images/banners/ -# ||comparestoreprices.co.uk/images/promotions/ (easylist.txt: 32107) -.comparestoreprices.co.uk/images/promotions/ -# ||comicgenesis.com/tcontent.php?out= (easylist.txt: 32106) -.comicgenesis.com/tcontent\.php\?out= -# ||comicbookresources.com/assets/images/skins/ (easylist.txt: 32105) -.comicbookresources.com/assets/images/skins/ -# ||com.com/cnwk.1d/aud/ (easylist.txt: 32104) -.com.com/cnwk\.1d/aud/ -# ||com-a.in/images/banners/ (easylist.txt: 32103) -.com-a.in/images/banners/ -# ||collector.viki.io^ (easylist.txt: 32102) -.collector.viki.io -# ||collarme.com/zone_alt.asp (easylist.txt: 32101) -.collarme.com/zone_alt\.asp -# ||collarme.com/anv/ (easylist.txt: 32100) -.collarme.com/anv/ -# ||coinurl.com/nbottom.php? (easylist.txt: 32099) -.coinurl.com/nbottom\.php\? -# ||coinurl.com/get.php? (easylist.txt: 32098) -.coinurl.com/get\.php\? -# ||coinurl.com/bottom.php (easylist.txt: 32097) -.coinurl.com/bottom\.php -# ||coinurl.com/bootstrap/js/bootstrapx-clickover.js (easylist.txt: 32096) -.coinurl.com/bootstrap/js/bootstrapx-clickover\.js -# ||coinad.com/op.php? (easylist.txt: 32095) -.coinad.com/op\.php\? -# ||coderanch.com/shingles/ (easylist.txt: 32094) -.coderanch.com/shingles/ -# ||codecguide.com/driverscantop1.gif (easylist.txt: 32093) -.codecguide.com/driverscantop1\.gif -# ||codecguide.com/driverscan2.gif (easylist.txt: 32092) -.codecguide.com/driverscan2\.gif -# ||codecguide.com/beforedl2.gif (easylist.txt: 32091) -.codecguide.com/beforedl2\.gif -# ||codeasily.com^*/codeasily.js (easylist.txt: 32090) -.codeasily.com/.*/codeasily\.js -# ||cocomment.com/banner? (easylist.txt: 32089) -.cocomment.com/banner\? -# ||coastweek.com/graffix/ (easylist.txt: 32088) -.coastweek.com/graffix/ -# ||coastweek.com/banner_ (easylist.txt: 32087) -.coastweek.com/banner_ -# ||coastfm.ae/promotion/ (easylist.txt: 32086) -.coastfm.ae/promotion/ -# ||coastfm.ae/images/background/ (easylist.txt: 32085) -.coastfm.ae/images/background/ -# ||cnx-software.com/pic/technexion/ (easylist.txt: 32084) -.cnx-software.com/pic/technexion/ -# ||cnx-software.com/pic/gateworks/ (easylist.txt: 32083) -.cnx-software.com/pic/gateworks/ -# ||cntv.cn/Library/js/js_ad_gb.js (easylist.txt: 32082) -.cntv.cn/Library/js/js_ad_gb\.js -# ||cnn.net^*/lawyers.com/ (easylist.txt: 32081) -.cnn.net/.*/lawyers\.com/ -# ||cnn.com^*/banner.html?&csiid= (easylist.txt: 32080) -.cnn.com/.*/banner\.html\?&csiid= -# ||cnn.com/cnn_adspaces/ (easylist.txt: 32078) -.cnn.com/cnn_adspaces/ -# ||cnn.com/ad- (easylist.txt: 32077) -.cnn.com/ad- -# ||cnetwidget.creativemark.co.uk^ (easylist.txt: 32076) -.cnetwidget.creativemark.co.uk -# ||cnettv.com.edgesuite.net^*/ads/ (easylist.txt: 32075) -.cnettv.com.edgesuite.net/.*/ads/ -# ||cnet.com/imp? (easylist.txt: 32074) -.cnet.com/imp\? -# ||cms.myspacecdn.com^*/splash_assets/ (easylist.txt: 32073) -.cms.myspacecdn.com/.*/splash_assets/ -# ||cmpnet.com/ads/ (easylist.txt: 32072) -.cmpnet.com/ads/ -# ||clubplanet.com^*/wallpaper/ (easylist.txt: 32070) -.clubplanet.com/.*/wallpaper/ -# ||clubhyper.com/images/hannantsbanner_ (easylist.txt: 32069) -.clubhyper.com/images/hannantsbanner_ -# ||cloudyvideos.com/banner/ (easylist.txt: 32068) -.cloudyvideos.com/banner/ -# ||clicks.superpages.com^ (easylist.txt: 32062) -.clicks.superpages.com -# ||click.livedoor.com^ (easylist.txt: 32061) -.click.livedoor.com -# ||clgaming.net/interface/img/sponsor/ (easylist.txt: 32060) -.clgaming.net/interface/img/sponsor/ -# ||classicsdujour.com/artistbanners/ (easylist.txt: 32059) -.classicsdujour.com/artistbanners/ -# ||classicfeel.co.za^*/banners/ (easylist.txt: 32058) -.classicfeel.co.za/.*/banners/ -# ||classical897.org/common/sponsors/ (easylist.txt: 32057) -.classical897.org/common/sponsors/ -# ||classic97.net^*/banner/ (easylist.txt: 32056) -.classic97.net/.*/banner/ -# ||classic-tv.com/pubaccess.html (easylist.txt: 32055) -.classic-tv.com/pubaccess\.html -# ||clarksvilleonline.com/cols/ (easylist.txt: 32053) -.clarksvilleonline.com/cols/ -# ||cjr.org/interstitial_ (easylist.txt: 32052) -.cjr.org/interstitial_ -# ||citywirecontent.co.uk^*/cw.oas.dx.js (easylist.txt: 32051) -.citywirecontent.co.uk/.*/cw\.oas\.dx\.js -# ||citywire.co.uk/wealth-manager/marketingcampaign? (easylist.txt: 32050) -.citywire.co.uk/wealth-manager/marketingcampaign\? -# ||citybeat.co.uk^*/ads/ (easylist.txt: 32049) -.citybeat.co.uk/.*/ads/ -# ||cityam.com^*/pageskin/ (easylist.txt: 32048) -.cityam.com/.*/pageskin/ -# ||citizen-usa.com/images/banners/ (easylist.txt: 32047) -.citizen-usa.com/images/banners/ -# ||citeulike.org/static/campaigns/ (easylist.txt: 32046) -.citeulike.org/static/campaigns/ -# ||citationmachine.net/images/grammarly/ (easylist.txt: 32045) -.citationmachine.net/images/grammarly/ -# ||ciol.com/zedotags/ (easylist.txt: 32044) -.ciol.com/zedotags/ -# ||cineplex.com/skins/ (easylist.txt: 32043) -.cineplex.com/skins/ -# ||ciao.com^*/price_link/ (easylist.txt: 32041) -.ciao.com/.*/price_link/ -# ||ciao.co.uk/load_file.php? (easylist.txt: 32040) -.ciao.co.uk/load_file\.php\? -# ||churchnewssite.com^*/bannercard- (easylist.txt: 32039) -.churchnewssite.com/.*/bannercard- -# ||churchnewssite.com^*/banner- (easylist.txt: 32038) -.churchnewssite.com/.*/banner- -# ||churchnewssite.com^*-banner1. (easylist.txt: 32037) -.churchnewssite.com/.*-banner1\. -# ||chronicle.lu/images/Sponsor_ (easylist.txt: 32036) -.chronicle.lu/images/Sponsor_ -# ||chronicle.lu/images/banners/ (easylist.txt: 32035) -.chronicle.lu/images/banners/ -# ||chinanews.com/gg/ (easylist.txt: 32034) -.chinanews.com/gg/ -# ||chicagodefender.com/images/banners/ (easylist.txt: 32033) -.chicagodefender.com/images/banners/ -# ||chelsey.co.nz/uploads/Takeovers/ (easylist.txt: 32032) -.chelsey.co.nz/uploads/Takeovers/ -# ||checkwebsiteprice.com/images/bitcoin.jpg (easylist.txt: 32031) -.checkwebsiteprice.com/images/bitcoin\.jpg -# ||checkpagerank.net/banners/ (easylist.txt: 32030) -.checkpagerank.net/banners/ -# ||chapala.com/wwwboard/webboardtop.htm (easylist.txt: 32029) -.chapala.com/wwwboard/webboardtop\.htm -# ||channelonline.tv/channelonline_advantage/ (easylist.txt: 32028) -.channelonline.tv/channelonline_advantage/ -# ||channel5.com/assets/takeovers/ (easylist.txt: 32027) -.channel5.com/assets/takeovers/ -# ||channel4fm.com/promotion/ (easylist.txt: 32026) -.channel4fm.com/promotion/ -# ||channel4fm.com/images/background/ (easylist.txt: 32025) -.channel4fm.com/images/background/ -# ||ch131.so/images/2etio.gif (easylist.txt: 32021) -.ch131.so/images/2etio\.gif -# ||cghub.com/files/CampaignCode/ (easylist.txt: 32020) -.cghub.com/files/CampaignCode/ -# ||ceylontoday.lk^*/banner/ (easylist.txt: 32019) -.ceylontoday.lk/.*/banner/ -# ||ceoexpress.com/inc/ads (easylist.txt: 32018) -.ceoexpress.com/inc/ads -# ||centralfm.co.uk/images/banners/ (easylist.txt: 32017) -.centralfm.co.uk/images/banners/ -# ||centos.org/donors/ (easylist.txt: 32016) -.centos.org/donors/ -# ||ceforum.co.uk/images/misc/PartnerLinks (easylist.txt: 32014) -.ceforum.co.uk/images/misc/PartnerLinks -# ||cdn.turner.com^*/groupon/ (easylist.txt: 32012) -.cdn.turner.com/.*/groupon/ -# ||cdn-surfline.com/home/billabong-xxl.png (easylist.txt: 32011) -.cdn-surfline.com/home/billabong-xxl\.png -# ||cdmediaworld.com*/! (easylist.txt: 32010) -.cdmediaworld.com*./(.*/)?! -# ||cdmagurus.com/img/kcpf2.swf (easylist.txt: 32009) -.cdmagurus.com/img/kcpf2\.swf -# ||cdmagurus.com/img/*.gif (easylist.txt: 32008) -.cdmagurus.com/img/.*\.gif -# ||cdmagurus.com/forum/cyberflashing.swf (easylist.txt: 32007) -.cdmagurus.com/forum/cyberflashing\.swf -# ||cdcovers.cc/images/external/toolbar (easylist.txt: 32006) -.cdcovers.cc/images/external/toolbar -# ||cd1025.com/www/img/btn- (easylist.txt: 32005) -.cd1025.com/www/img/btn- -# ||cd1025.com/www/assets/a/ (easylist.txt: 32004) -.cd1025.com/www/assets/a/ -# ||ccfm.org.za^*/sads/ (easylist.txt: 32003) -.ccfm.org.za/.*/sads/ -# ||cbslocal.com/rotatable? (easylist.txt: 32002) -.cbslocal.com/rotatable\? -# ||cbslocal.com/deals/widget/ (easylist.txt: 32001) -.cbslocal.com/deals/widget/ -# ||cbsinteractive.co.uk/cbsi/ads/ (easylist.txt: 32000) -.cbsinteractive.co.uk/cbsi/ads/ -# ||cbn.co.za/images/banners/ (easylist.txt: 31999) -.cbn.co.za/images/banners/ -# ||cbfsms.com^*-banner.gif (easylist.txt: 31998) -.cbfsms.com/.*-banner\.gif -# ||cbc.ca/video/bigbox.html (easylist.txt: 31997) -.cbc.ca/video/bigbox\.html -# ||cbc.ca/deals/ (easylist.txt: 31996) -.cbc.ca/deals/ -# ||catholicculture.org/images/banners/ (easylist.txt: 31995) -.catholicculture.org/images/banners/ -# ||catalystmagazine.net/images/banners/ (easylist.txt: 31994) -.catalystmagazine.net/images/banners/ -# ||casualgaming.biz/banners/ (easylist.txt: 31993) -.casualgaming.biz/banners/ -# ||castanet.net/clients/ (easylist.txt: 31992) -.castanet.net/clients/ -# ||cash9.org/assets/img/banner2.gif (easylist.txt: 31991) -.cash9.org/assets/img/banner2\.gif -# ||carsuk.net/directory/panel-promo- (easylist.txt: 31990) -.carsuk.net/directory/panel-promo- -# ||carsguide.com.au^*/marketing/ (easylist.txt: 31989) -.carsguide.com.au/.*/marketing/ -# ||carsguide.com.au/images/uploads/*_bg. (easylist.txt: 31988) -.carsguide.com.au/images/uploads/.*_bg\. -# ||carsales.com.au^*/backgrounds/ (easylist.txt: 31987) -.carsales.com.au/.*/backgrounds/ -# ||cars.com/js/cars/catretargeting.js (easylist.txt: 31986) -.cars.com/js/cars/catretargeting\.js -# ||cars.com/go/includes/targeting/ (easylist.txt: 31985) -.cars.com/go/includes/targeting/ -# ||cargonewsasia.com/promotion/ (easylist.txt: 31984) -.cargonewsasia.com/promotion/ -# ||cardsharing.info/wp-content/uploads/*/ALLS.jpg (easylist.txt: 31983) -.cardsharing.info/wp-content/uploads/.*/ALLS\.jpg -# ||cardschat.com/pkimg/banners/ (easylist.txt: 31982) -.cardschat.com/pkimg/banners/ -# ||cardomain.com/empty_pg.htm (easylist.txt: 31981) -.cardomain.com/empty_pg\.htm -# ||card-sharing.net/umbrella.png (easylist.txt: 31980) -.card-sharing.net/umbrella\.png -# ||card-sharing.net/topsharingserver.jpg (easylist.txt: 31979) -.card-sharing.net/topsharingserver\.jpg -# ||card-sharing.net/cccamcorner.gif (easylist.txt: 31978) -.card-sharing.net/cccamcorner\.gif -# ||capitolfax.com/wp-content/*Ad_ (easylist.txt: 31976) -.capitolfax.com/wp-content/.*Ad_ -# ||capitolfax.com/wp-content/*ad. (easylist.txt: 31975) -.capitolfax.com/wp-content/.*ad\. -# ||capitalfm.co.ke^*/830x460-iv.jpg (easylist.txt: 31974) -.capitalfm.co.ke/.*/830x460-iv\.jpg -# ||capitalethiopia.com/images/banners/ (easylist.txt: 31973) -.capitalethiopia.com/images/banners/ -# ||capetownetc.com^*/wallpapers/ (easylist.txt: 31971) -.capetownetc.com/.*/wallpapers/ -# ||canvas.thenextweb.com^ (easylist.txt: 31970) -.canvas.thenextweb.com -# ||canindia.com^*_banner.png (easylist.txt: 31969) -.canindia.com/.*_banner\.png -# ||candystand.com/game-track.do? (easylist.txt: 31968) -.candystand.com/game-track\.do\? -# ||cancomuk.com/campaigns/ (easylist.txt: 31967) -.cancomuk.com/campaigns/ -# ||cananewsonline.com/files/banners/ (easylist.txt: 31966) -.cananewsonline.com/files/banners/ -# ||canalboat.co.uk^*/Banners/ (easylist.txt: 31965) -.canalboat.co.uk/.*/Banners/ -# ||canalboat.co.uk^*/bannerImage. (easylist.txt: 31964) -.canalboat.co.uk/.*/bannerImage\. -# ||cameroon-concord.com/images/banners/ (easylist.txt: 31963) -.cameroon-concord.com/images/banners/ -# ||calguns.net/images/ads (easylist.txt: 31962) -.calguns.net/images/ads -# ||calgaryherald.com/images/storysponsor/ (easylist.txt: 31961) -.calgaryherald.com/images/storysponsor/ -# ||calgaryherald.com/images/sponsor/ (easylist.txt: 31960) -.calgaryherald.com/images/sponsor/ -# ||caledonianrecord.com/SiteImages/Tile/ (easylist.txt: 31959) -.caledonianrecord.com/SiteImages/Tile/ -# ||caledonianrecord.com/SiteImages/HomePageTiles/ (easylist.txt: 31958) -.caledonianrecord.com/SiteImages/HomePageTiles/ -# ||caledonianrecord.com/iFrame_ (easylist.txt: 31957) -.caledonianrecord.com/iFrame_ -# ||caladvocate.com/images/banner- (easylist.txt: 31956) -.caladvocate.com/images/banner- -# ||cafonline.com^*/sponsors/ (easylist.txt: 31955) -.cafonline.com/.*/sponsors/ -# ||cafimg.com/images/other/ (easylist.txt: 31954) -.cafimg.com/images/other/ -# ||cadvv.koreaherald.com^ (easylist.txt: 31952) -.cadvv.koreaherald.com -# ||cadvv.heraldm.com^ (easylist.txt: 31951) -.cadvv.heraldm.com -# ||cadplace.co.uk/banner/ (easylist.txt: 31950) -.cadplace.co.uk/banner/ -# ||caclubindia.com/campaign/ (easylist.txt: 31949) -.caclubindia.com/campaign/ -# ||c9tk.com/images/banner/ (easylist.txt: 31948) -.c9tk.com/images/banner/ -# ||c21media.net/wp-content/plugins/sam-images/ (easylist.txt: 31947) -.c21media.net/wp-content/plugins/sam-images/ -# ||c-ville.com/image/pool/ (easylist.txt: 31946) -.c-ville.com/image/pool/ -# ||c-sharpcorner.com^*/banners/ (easylist.txt: 31945) -.c-sharpcorner.com/.*/banners/ -# ||bypassoxy.com/vectrotunnel-banner.gif (easylist.txt: 31944) -.bypassoxy.com/vectrotunnel-banner\.gif -# ||bwp.theinsider.com.com^ (easylist.txt: 31943) -.bwp.theinsider.com.com -# ||bvibeacon.com^*/banners/ (easylist.txt: 31942) -.bvibeacon.com/.*/banners/ -# ||buzznet.com/topscript.js.php? (easylist.txt: 31941) -.buzznet.com/topscript\.js\.php\? -# ||buzzintown.com/show_bnr.php? (easylist.txt: 31940) -.buzzintown.com/show_bnr\.php\? -# ||buyselltrade.ca/banners/ (easylist.txt: 31939) -.buyselltrade.ca/banners/ -# ||buy.com/*/textlinks.aspx (easylist.txt: 31938) -.buy.com/.*/textlinks\.aspx -# ||buy-n-shoot.com/images/banners/banner- (easylist.txt: 31937) -.buy-n-shoot.com/images/banners/banner- -# ||busiweek.com^*/banners/ (easylist.txt: 31936) -.busiweek.com/.*/banners/ -# ||bundesliga.com^*/_partner/ (easylist.txt: 31935) -.bundesliga.com/.*/_partner/ -# ||btkitty.org/static/images/880X60.gif (easylist.txt: 31933) -.btkitty.org/static/images/880X60\.gif -# ||btkitty.com/static/images/880X60.gif (easylist.txt: 31932) -.btkitty.com/static/images/880X60\.gif -# ||btdigg.org/images/btguard (easylist.txt: 31931) -.btdigg.org/images/btguard -# ||bt.am/banners/ (easylist.txt: 31930) -.bt.am/banners/ -# ||bt-chat.com/images/affiliates/ (easylist.txt: 31929) -.bt-chat.com/images/affiliates/ -# ||bsvc.ebuddy.com/bannerservice/tabsaww (easylist.txt: 31928) -.bsvc.ebuddy.com/bannerservice/tabsaww -# ||bsmphilly.com/files/banners/ (easylist.txt: 31927) -.bsmphilly.com/files/banners/ -# ||brudirect.com/images/banners/ (easylist.txt: 31926) -.brudirect.com/images/banners/ -# ||browsershots.org/static/images/creative/ (easylist.txt: 31925) -.browsershots.org/static/images/creative/ -# ||brownfieldonline.com^*/banners/ (easylist.txt: 31924) -.brownfieldonline.com/.*/banners/ -# ||brothersoft.com^*/softsale/ (easylist.txt: 31923) -.brothersoft.com/.*/softsale/ -# ||brothersoft.com^*/homepage_ppd.html (easylist.txt: 31922) -.brothersoft.com/.*/homepage_ppd\.html -# ||brothersoft.com^*/float.js (easylist.txt: 31921) -.brothersoft.com/.*/float\.js -# ||brothersoft.com/softsale/ (easylist.txt: 31920) -.brothersoft.com/softsale/ -# ||brothersoft.com/gg/top.js (easylist.txt: 31919) -.brothersoft.com/gg/top\.js -# ||brothersoft.com/gg/soft_down.js (easylist.txt: 31918) -.brothersoft.com/gg/soft_down\.js -# ||brothersoft.com/gg/kontera_com.js (easylist.txt: 31917) -.brothersoft.com/gg/kontera_com\.js -# ||brothersoft.com/gg/g.js (easylist.txt: 31916) -.brothersoft.com/gg/g\.js -# ||brothersoft.com/gg/center_gg.js (easylist.txt: 31915) -.brothersoft.com/gg/center_gg\.js -# ||brobible.com/files/uploads/images/takeovers/ (easylist.txt: 31914) -.brobible.com/files/uploads/images/takeovers/ -# ||broadcastingworld.net/marquee- (easylist.txt: 31913) -.broadcastingworld.net/marquee- -# ||broadcastingworld.net/*-promo.jpg (easylist.txt: 31912) -.broadcastingworld.net/.*-promo\.jpg -# ||broadcastify.com/sm/ (easylist.txt: 31911) -.broadcastify.com/sm/ -# ||broadbandgenie.co.uk/images/takeover/ (easylist.txt: 31909) -.broadbandgenie.co.uk/images/takeover/ -# ||broadbandforum.co/stock/ (easylist.txt: 31908) -.broadbandforum.co/stock/ -# ||broadbandchoices.co.uk/aff.js (easylist.txt: 31907) -.broadbandchoices.co.uk/aff\.js -# ||britishcolumbia.com/sys/ban.asp (easylist.txt: 31906) -.britishcolumbia.com/sys/ban\.asp -# ||brenz.net/img/bannerrss.gif (easylist.txt: 31904) -.brenz.net/img/bannerrss\.gif -# ||breitlingsource.com/images/pflogo.jpg (easylist.txt: 31903) -.breitlingsource.com/images/pflogo\.jpg -# ||breitlingsource.com/images/govberg*.jpg (easylist.txt: 31902) -.breitlingsource.com/images/govberg.*\.jpg -# ||brecorder.com^*/banners/ (easylist.txt: 31901) -.brecorder.com/.*/banners/ -# ||break.com^*/marketguide- (easylist.txt: 31900) -.break.com/.*/marketguide- -# ||brandchannel.com/images/educationconference/ (easylist.txt: 31899) -.brandchannel.com/images/educationconference/ -# ||boxlotto.com/banrotate. (easylist.txt: 31895) -.boxlotto.com/banrotate\. -# ||boulderjewishnews.org^*/JFSatHome-3.gif (easylist.txt: 31894) -.boulderjewishnews.org/.*/JFSatHome-3\.gif -# ||botswanaguardian.co.bw/images/banners/ (easylist.txt: 31893) -.botswanaguardian.co.bw/images/banners/ -# ||bom.gov.au/includes/marketing2.php? (easylist.txt: 31891) -.bom.gov.au/includes/marketing2\.php\? -# ||bolandrugby.com/images/sponsors. (easylist.txt: 31890) -.bolandrugby.com/images/sponsors\. -# ||bnrs.ilm.ee^ (easylist.txt: 31889) -.bnrs.ilm.ee -# ||bn0.com/4v4.js (easylist.txt: 31888) -.bn0.com/4v4\.js -# ||bloomberg.com^*/banner.js (easylist.txt: 31887) -.bloomberg.com/.*/banner\.js -# ||blogspider.net/images/promo/ (easylist.txt: 31886) -.blogspider.net/images/promo/ -# ||blogsmithmedia.com^*_skin_ (easylist.txt: 31884) -.blogsmithmedia.com/.*_skin_ -# ||blogsmithmedia.com^*_skin. (easylist.txt: 31883) -.blogsmithmedia.com/.*_skin\. -# ||blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments.png (easylist.txt: 31882) -.blogsdna.com/wp-content/themes/blogsdna2011/images/advertisments\.png -# ||blogorama.com/images/banners/ (easylist.txt: 31881) -.blogorama.com/images/banners/ -# ||blogevaluation.com/templates/userfiles/banners/ (easylist.txt: 31880) -.blogevaluation.com/templates/userfiles/banners/ -# ||blog.co.uk/script/blogs/afc.js (easylist.txt: 31879) -.blog.co.uk/script/blogs/afc\.js -# ||blitzdownloads.com/promo/ (easylist.txt: 31878) -.blitzdownloads.com/promo/ -# ||blip.fm/ad/ (easylist.txt: 31877) -.blip.fm/ad/ -# ||blinkx.com/adhocnetwork/ (easylist.txt: 31876) -.blinkx.com/adhocnetwork/ -# ||bleacherreport.net^*_redesign_skin_ (easylist.txt: 31875) -.bleacherreport.net/.*_redesign_skin_ -# ||bleacherreport.net/images/skins/ (easylist.txt: 31874) -.bleacherreport.net/images/skins/ -# ||blbclassic.org/assets/images/*banners/ (easylist.txt: 31873) -.blbclassic.org/assets/images/.*banners/ -# ||blasternation.com/images/hearthstone.jpg (easylist.txt: 31872) -.blasternation.com/images/hearthstone\.jpg -# ||blackpressusa.com^*300x250. (easylist.txt: 31871) -.blackpressusa.com/.*300x250\. -# ||blackpressusa.com^*300by250. (easylist.txt: 31870) -.blackpressusa.com/.*300by250\. -# ||blackpressusa.com^*250by300. (easylist.txt: 31869) -.blackpressusa.com/.*250by300\. -# ||blackpressusa.com^*/Ford.jpg (easylist.txt: 31868) -.blackpressusa.com/.*/Ford\.jpg -# ||blacklistednews.com/images/*banner (easylist.txt: 31867) -.blacklistednews.com/images/.*banner -# ||blackhatlibrary.net/hacktalk.png (easylist.txt: 31866) -.blackhatlibrary.net/hacktalk\.png -# ||blackchronicle.com/images/Banners- (easylist.txt: 31865) -.blackchronicle.com/images/Banners- -# ||blackberryforums.net/banners/ (easylist.txt: 31864) -.blackberryforums.net/banners/ -# ||bkmag.com/binary/*/1380x800_ (easylist.txt: 31863) -.bkmag.com/binary/.*/1380x800_ -# ||bizhub.vn^*/agoda-for-bizhub.jpg (easylist.txt: 31862) -.bizhub.vn/.*/agoda-for-bizhub\.jpg -# ||bizarremag.com/images/skin_ (easylist.txt: 31861) -.bizarremag.com/images/skin_ -# ||bizanti.youwatch.org^ (easylist.txt: 31860) -.bizanti.youwatch.org -# ||bittorrent.am/banners/ (easylist.txt: 31859) -.bittorrent.am/banners/ -# ||bitreactor.to/sponsor/ (easylist.txt: 31857) -.bitreactor.to/sponsor/ -# ||bitminter.com/images/info/spondoolies (easylist.txt: 31856) -.bitminter.com/images/info/spondoolies -# ||bitcoinreviewer.com/wp-content/uploads/*/banner-luckybit.jpg (easylist.txt: 31855) -.bitcoinreviewer.com/wp-content/uploads/.*/banner-luckybit\.jpg -# ||bitcoinist.net/wp-content/uploads/*_250x250_ (easylist.txt: 31854) -.bitcoinist.net/wp-content/uploads/.*_250x250_ -# ||bitcoinist.net/wp-content/*/630x80-bitcoinist.gif (easylist.txt: 31853) -.bitcoinist.net/wp-content/.*/630x80-bitcoinist\.gif -# ||bit-tech.net/images/backgrounds/skin/ (easylist.txt: 31852) -.bit-tech.net/images/backgrounds/skin/ -# ||binsearch.info/iframe.php (easylist.txt: 31850) -.binsearch.info/iframe\.php -# ||bikeradar.com/media/img/commercial/ (easylist.txt: 31848) -.bikeradar.com/media/img/commercial/ -# ||bikeforums.net/images/sponsors/ (easylist.txt: 31847) -.bikeforums.net/images/sponsors/ -# ||bigsports.tv/live/ado.php (easylist.txt: 31846) -.bigsports.tv/live/ado\.php -# ||bigpoint.com/xml/recommender.swf? (easylist.txt: 31845) -.bigpoint.com/xml/recommender\.swf\? -# ||bigeddieradio.com/uploads/sponsors/ (easylist.txt: 31844) -.bigeddieradio.com/uploads/sponsors/ -# ||bibme.org/images/grammarly/ (easylist.txt: 31843) -.bibme.org/images/grammarly/ -# ||bettyconfidential.com/media/fmads/ (easylist.txt: 31841) -.bettyconfidential.com/media/fmads/ -# ||bettingsports.com/where_to_bet (easylist.txt: 31840) -.bettingsports.com/where_to_bet -# ||bettingsports.com/top_bonuses (easylist.txt: 31839) -.bettingsports.com/top_bonuses -# ||better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend.png (easylist.txt: 31838) -.better-explorer.com/wp-content/uploads/2013/10/PoweredByNDepend\.png -# ||better-explorer.com/wp-content/uploads/2013/07/hf.5.png (easylist.txt: 31837) -.better-explorer.com/wp-content/uploads/2013/07/hf\.5\.png -# ||better-explorer.com/wp-content/uploads/2012/09/credits.png (easylist.txt: 31836) -.better-explorer.com/wp-content/uploads/2012/09/credits\.png -# ||bets4free.co.uk/content/5481b452d9ce40.09507031.jpg (easylist.txt: 31835) -.bets4free.co.uk/content/5481b452d9ce40\.09507031\.jpg -# ||bestvpn.com/wp-content/uploads/*/mosttrustedname_260x300_ (easylist.txt: 31834) -.bestvpn.com/wp-content/uploads/.*/mosttrustedname_260x300_ -# ||bestlistonline.info/link/ad.js (easylist.txt: 31833) -.bestlistonline.info/link/ad\.js -# ||bestblackhatforum.com/images/my_compas/ (easylist.txt: 31832) -.bestblackhatforum.com/images/my_compas/ -# ||bernama.com/banner/ (easylist.txt: 31831) -.bernama.com/banner/ -# ||benchmarkreviews.com^*/banners/ (easylist.txt: 31830) -.benchmarkreviews.com/.*/banners/ -# ||bellevision.com/belle/adds/ (easylist.txt: 31829) -.bellevision.com/belle/adds/ -# ||bellanaija.com^*/wp-banners/ (easylist.txt: 31828) -.bellanaija.com/.*/wp-banners/ -# ||belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img.js (easylist.txt: 31827) -.belfasttelegraph.co.uk/editorial/web/survey/recruit-div-img\.js -# ||beingpc.com^*/banners/ (easylist.txt: 31826) -.beingpc.com/.*/banners/ -# ||beforeitsnews.com/static/iframe/ (easylist.txt: 31825) -.beforeitsnews.com/static/iframe/ -# ||beforeitsnews.com/static/data/story-stripmall-new.html (easylist.txt: 31824) -.beforeitsnews.com/static/data/story-stripmall-new\.html -# ||beap.gemini.yahoo.com^ (easylist.txt: 31823) -.beap.gemini.yahoo.com -# ||bdnews24.com^*/Ads/ (easylist.txt: 31822) -.bdnews24.com/.*/Ads/ -# ||bcdb.com^*/banners.pl? (easylist.txt: 31821) -.bcdb.com/.*/banners\.pl\? -# ||bbc.com^*/logoDupontSmall.png (easylist.txt: 31820) -.bbc.com/.*/logoDupontSmall\.png -# ||bbc.co.uk^*/bbccom.js? (easylist.txt: 31819) -.bbc.co.uk/.*/bbccom\.js\? -# ||bazaraki.com/bannerImage.php? (easylist.txt: 31818) -.bazaraki.com/bannerImage\.php\? -# ||baymirror.com/static/js/4728ba74bc.js (easylist.txt: 31817) -.baymirror.com/static/js/4728ba74bc\.js -# ||baymirror.com/static/img/bar.gif (easylist.txt: 31816) -.baymirror.com/static/img/bar\.gif -# ||bayfiles.net/img/download-button-orange.png (easylist.txt: 31815) -.bayfiles.net/img/download-button-orange\.png -# ||bay.com.mt/modules/mod_novarp/ (easylist.txt: 31814) -.bay.com.mt/modules/mod_novarp/ -# ||bay.com.mt/images/banners/ (easylist.txt: 31813) -.bay.com.mt/images/banners/ -# ||bassmaster.com^*/premier_sponsor_logo/ (easylist.txt: 31812) -.bassmaster.com/.*/premier_sponsor_logo/ -# ||basinsradio.com/images/banners/ (easylist.txt: 31811) -.basinsradio.com/images/banners/ -# ||bashandslash.com/images/banners/ (easylist.txt: 31810) -.bashandslash.com/images/banners/ -# ||baseballamerica.com/plugs/ (easylist.txt: 31809) -.baseballamerica.com/plugs/ -# ||barnesandnoble.com/promo/ (easylist.txt: 31808) -.barnesandnoble.com/promo/ -# ||banners.playocio.com^ (easylist.txt: 31807) -.banners.playocio.com -# ||banners.itweb.co.za^ (easylist.txt: 31806) -.banners.itweb.co.za -# ||banners.i-comers.com^ (easylist.txt: 31805) -.banners.i-comers.com -# ||banners.expressindia.com^ (easylist.txt: 31803) -.banners.expressindia.com -# ||banners.clubworldgroup.com^ (easylist.txt: 31802) -.banners.clubworldgroup.com -# ||banners.beted.com^ (easylist.txt: 31801) -.banners.beted.com -# ||banners.beevpn.com^ (easylist.txt: 31800) -.banners.beevpn.com -# ||banner.itweb.co.za^ (easylist.txt: 31799) -.banner.itweb.co.za -# ||banner.automotiveworld.com^ (easylist.txt: 31798) -.banner.automotiveworld.com -# ||ballz.co.za^*/CLIENTS/ (easylist.txt: 31797) -.ballz.co.za/.*/CLIENTS/ -# ||ballz.co.za/system-files/banners/ (easylist.txt: 31796) -.ballz.co.za/system-files/banners/ -# ||ballerarcade.com/ispark/ (easylist.txt: 31794) -.ballerarcade.com/ispark/ -# ||baku2015.com/imgml/sponsor/ (easylist.txt: 31793) -.baku2015.com/imgml/sponsor/ -# ||bakercountypress.com/images/banners/ (easylist.txt: 31792) -.bakercountypress.com/images/banners/ -# ||baixartv.com/img/bonsdescontos. (easylist.txt: 31791) -.baixartv.com/img/bonsdescontos\. -# ||bahamaslocal.com/img/banners/ (easylist.txt: 31790) -.bahamaslocal.com/img/banners/ -# ||badongo.com^*_banner_ (easylist.txt: 31789) -.badongo.com/.*_banner_ -# ||backpagelead.com.au/images/banners/ (easylist.txt: 31788) -.backpagelead.com.au/images/banners/ -# ||backin.net/s/promo/ (easylist.txt: 31787) -.backin.net/s/promo/ -# ||babycenter.com/viewadvertorialpoll.htm (easylist.txt: 31786) -.babycenter.com/viewadvertorialpoll\.htm -# ||babelzilla.org/images/banners/babelzilla-powerfox.png (easylist.txt: 31785) -.babelzilla.org/images/banners/babelzilla-powerfox\.png -# ||babelzilla.org/forum/images/powerfox-top.png (easylist.txt: 31784) -.babelzilla.org/forum/images/powerfox-top\.png -# ||ba.kioskea.net^ (easylist.txt: 31783) -.ba.kioskea.net -# ||ba.ccm2.net^ (easylist.txt: 31782) -.ba.ccm2.net -# ||b92.net/images/banners/ (easylist.txt: 31781) -.b92.net/images/banners/ -# ||b.thefile.me^ (easylist.txt: 31780) -.b.thefile.me -# ||b.localpages.com^ (easylist.txt: 31779) -.b.localpages.com -# ||azlyrics.com^*_az.js (easylist.txt: 31778) -.azlyrics.com/.*_az\.js -# ||azcs.co.uk^*/backgrounds/rotate.php (easylist.txt: 31777) -.azcs.co.uk/.*/backgrounds/rotate\.php -# ||azcentral.com/incs/dfp-refresh.php.inc? (easylist.txt: 31776) -.azcentral.com/incs/dfp-refresh\.php\.inc\? -# ||awkwardfamilyphotos.com*/?ad= (easylist.txt: 31775) -.awkwardfamilyphotos.com*./(.*/)?\?ad= -# ||avstop.com/avbanner/ (easylist.txt: 31774) -.avstop.com/avbanner/ -# ||avsforum.com/alliance/ (easylist.txt: 31773) -.avsforum.com/alliance/ -# ||avpa.dzone.com^ (easylist.txt: 31772) -.avpa.dzone.com -# ||avn.com/delivery/ (easylist.txt: 31771) -.avn.com/delivery/ -# ||avitop.com/image/mig.gif (easylist.txt: 31770) -.avitop.com/image/mig\.gif -# ||avitop.com/image/mig-anim.gif (easylist.txt: 31769) -.avitop.com/image/mig-anim\.gif -# ||avitop.com/image/amazon/ (easylist.txt: 31768) -.avitop.com/image/amazon/ -# ||aviationweek.com^*/leader_board.htm (easylist.txt: 31767) -.aviationweek.com/.*/leader_board\.htm -# ||avforums.com/images/skins/ (easylist.txt: 31766) -.avforums.com/images/skins/ -# ||aveherald.com/images/banners/ (easylist.txt: 31765) -.aveherald.com/images/banners/ -# ||autoworld.co.za^*/ads/ (easylist.txt: 31763) -.autoworld.co.za/.*/ads/ -# ||autosport.com/skinning/ (easylist.txt: 31762) -.autosport.com/skinning/ -# ||autoline.info/atlads/ (easylist.txt: 31761) -.autoline.info/atlads/ -# ||autoline-eu.ie/atlads/ (easylist.txt: 31760) -.autoline-eu.ie/atlads/ -# ||autoline-eu.co.za/atlads/ (easylist.txt: 31759) -.autoline-eu.co.za/atlads/ -# ||autoline-eu.co.uk/atlads/ (easylist.txt: 31758) -.autoline-eu.co.uk/atlads/ -# ||auto123.com/sasserve.spy (easylist.txt: 31757) -.auto123.com/sasserve\.spy -# ||at膽he.net/pu/ (easylist.txt: 31755) -.at膽he.net/pu/ -# ||attitude.co.uk/images/Music_Ticket_Button_ (easylist.txt: 31754) -.attitude.co.uk/images/Music_Ticket_Button_ -# ||atimes.com^*/ahm728x90.swf (easylist.txt: 31753) -.atimes.com/.*/ahm728x90\.swf -# ||atimes.com/banner/ (easylist.txt: 31752) -.atimes.com/banner/ -# ||atdhe.ws/pp.js (easylist.txt: 31751) -.atdhe.ws/pp\.js -# ||astronomynow.com/wp-content/promos/ (easylist.txt: 31750) -.astronomynow.com/wp-content/promos/ -# ||astronomy.com/sitefiles/overlays/overlaygenerator.aspx? (easylist.txt: 31749) -.astronomy.com/sitefiles/overlays/overlaygenerator\.aspx\? -# ||astalavista.com^*/sponsor- (easylist.txt: 31748) -.astalavista.com/.*/sponsor- -# ||astalavista.com/avtng/ (easylist.txt: 31747) -.astalavista.com/avtng/ -# ||askbobrankin.com/awpopup*.js (easylist.txt: 31746) -.askbobrankin.com/awpopup.*\.js -# ||ask.com/fifdart? (easylist.txt: 31744) -.ask.com/fifdart\? -# ||ask.com/display.html? (easylist.txt: 31743) -.ask.com/display\.html\? -# ||asianewsnet.net/banner/ (easylist.txt: 31742) -.asianewsnet.net/banner/ -# ||asd.projectfreetv.so^ (easylist.txt: 31741) -.asd.projectfreetv.so -# ||as.inbox.com^ (easylist.txt: 31740) -.as.inbox.com -# ||artima.com/zcr/ (easylist.txt: 31739) -.artima.com/zcr/ -# ||arstechnica.net^*/sponsor- (easylist.txt: 31738) -.arstechnica.net/.*/sponsor- -# ||arstechnica.net/public/shared/scripts/da- (easylist.txt: 31737) -.arstechnica.net/public/shared/scripts/da- -# ||arsenal-mania.com/images/backsplash_ (easylist.txt: 31736) -.arsenal-mania.com/images/backsplash_ -# ||aroundosceola.com/banner- (easylist.txt: 31735) -.aroundosceola.com/banner- -# ||arnnet.com.au/files/skins/ (easylist.txt: 31734) -.arnnet.com.au/files/skins/ -# ||armyrecognition.com^*/customer/ (easylist.txt: 31733) -.armyrecognition.com/.*/customer/ -# ||armslist.com/images/sponsors/ (easylist.txt: 31732) -.armslist.com/images/sponsors/ -# ||armorgames.com^*/siteskin.css (easylist.txt: 31731) -.armorgames.com/.*/siteskin\.css -# ||armorgames.com^*/site-skins/ (easylist.txt: 31730) -.armorgames.com/.*/site-skins/ -# ||armorgames.com^*/banners/ (easylist.txt: 31729) -.armorgames.com/.*/banners/ -# ||armorgames.com/backup_ (easylist.txt: 31728) -.armorgames.com/backup_ -# ||armorgames.com/assets/*_skin_ (easylist.txt: 31727) -.armorgames.com/assets/.*_skin_ -# ||arenadb.net^*/banners/ (easylist.txt: 31726) -.arenadb.net/.*/banners/ -# ||arenabg.com^*/banners/ (easylist.txt: 31725) -.arenabg.com/.*/banners/ -# ||archeagedatabase.net/images/okaygoods.gif (easylist.txt: 31724) -.archeagedatabase.net/images/okaygoods\.gif -# ||aravot.am/banner/ (easylist.txt: 31723) -.aravot.am/banner/ -# ||ar15.com^*_60x180.jpg (easylist.txt: 31722) -.ar15.com/.*_60x180\.jpg -# ||ar15.com/images/highlight/ (easylist.txt: 31721) -.ar15.com/images/highlight/ -# ||ar15.com/biz/ (easylist.txt: 31720) -.ar15.com/biz/ -# ||aps.dz^*/banners/ (easylist.txt: 31719) -.aps.dz/.*/banners/ -# ||appwork.org/a_d_s/ (easylist.txt: 31718) -.appwork.org/a_d_s/ -# ||appspot.com/adop/ (easylist.txt: 31717) -.appspot.com/adop/ -# ||applifier.com/bar.htm? (easylist.txt: 31716) -.applifier.com/bar\.htm\? -# ||appleinsider.com^*/ai_front_page_google_premium.js (easylist.txt: 31714) -.appleinsider.com/.*/ai_front_page_google_premium\.js -# ||appleinsider.com/macmall (easylist.txt: 31713) -.appleinsider.com/macmall -# ||api.toptenreviews.com^*/request.php (easylist.txt: 31712) -.api.toptenreviews.com/.*/request\.php -# ||apcointl.org/images/corporate_partners/ (easylist.txt: 31711) -.apcointl.org/images/corporate_partners/ -# ||apanews.net/pub/ (easylist.txt: 31710) -.apanews.net/pub/ -# ||apa.az^*/rebans/ (easylist.txt: 31709) -.apa.az/.*/rebans/ -# ||aol.co.uk/images/skybet-logo.gif (easylist.txt: 31706) -.aol.co.uk/images/skybet-logo\.gif -# ||anvisoft.com^*/anviad.jpg (easylist.txt: 31705) -.anvisoft.com/.*/anviad\.jpg -# ||anti-scam.org/abanners/ (easylist.txt: 31704) -.anti-scam.org/abanners/ -# ||anti-leech.com/al.php? (easylist.txt: 31703) -.anti-leech.com/al\.php\? -# ||antag.co.uk/js/ov.js.php? (easylist.txt: 31702) -.antag.co.uk/js/ov\.js\.php\? -# ||answerology.com/index.aspx?*=ads.ascx (easylist.txt: 31701) -.answerology.com/index\.aspx\?.*=ads\.ascx -# ||anonytext.tk/re.php (easylist.txt: 31700) -.anonytext.tk/re\.php -# ||anonytext.tk/img/paste-sponsor.png (easylist.txt: 31699) -.anonytext.tk/img/paste-sponsor\.png -# ||anonytext.tk/img/paste-eb.png (easylist.txt: 31698) -.anonytext.tk/img/paste-eb\.png -# ||anonib.com/zimages/ (easylist.txt: 31697) -.anonib.com/zimages/ -# ||annistonstar.com/leaderboard_banner (easylist.txt: 31696) -.annistonstar.com/leaderboard_banner -# ||aniscartujo.com^*/layer.js (easylist.txt: 31695) -.aniscartujo.com/.*/layer\.js -# ||animeshippuuden.com/square.php (easylist.txt: 31694) -.animeshippuuden.com/square\.php -# ||animeshippuuden.com/adcpm.js (easylist.txt: 31693) -.animeshippuuden.com/adcpm\.js -# ||animenewsnetwork.com^*.aframe? (easylist.txt: 31692) -.animenewsnetwork.com/.*\.aframe\? -# ||animehaven.org/wp-content/banners/ (easylist.txt: 31690) -.animehaven.org/wp-content/banners/ -# ||animefushigi.com/boxes/ (easylist.txt: 31689) -.animefushigi.com/boxes/ -# ||animeflv.net/cpm.html (easylist.txt: 31688) -.animeflv.net/cpm\.html -# ||animeflavor.com/animeflavor-gao-gamebox.swf (easylist.txt: 31687) -.animeflavor.com/animeflavor-gao-gamebox\.swf -# ||animea.net/do/ (easylist.txt: 31686) -.animea.net/do/ -# ||anime44.com/images/videobb2.png (easylist.txt: 31685) -.anime44.com/images/videobb2\.png -# ||anime44.com/anime44box.jpg (easylist.txt: 31684) -.anime44.com/anime44box\.jpg -# ||anime1.com/service/joyfun/ (easylist.txt: 31683) -.anime1.com/service/joyfun/ -# ||animationxpress.com/anex/solutions/ (easylist.txt: 31681) -.animationxpress.com/anex/solutions/ -# ||animationxpress.com/anex/crosspromotions/ (easylist.txt: 31680) -.animationxpress.com/anex/crosspromotions/ -# ||anilinkz.tv/kwarta- (easylist.txt: 31679) -.anilinkz.tv/kwarta- -# ||anilinkz.com/img/rightsponsors (easylist.txt: 31678) -.anilinkz.com/img/rightsponsors -# ||anilinkz.com/img/leftsponsors. (easylist.txt: 31677) -.anilinkz.com/img/leftsponsors\. -# ||anhits.com/files/banners/ (easylist.txt: 31676) -.anhits.com/files/banners/ -# ||androidpolice.com/wp-content/*/images/das/ (easylist.txt: 31675) -.androidpolice.com/wp-content/.*/images/das/ -# ||andr.net/banners/ (easylist.txt: 31673) -.andr.net/banners/ -# ||anchorfree.com/delivery/ (easylist.txt: 31670) -.anchorfree.com/delivery/ -# ||anamera.com/DesktopModules/BannerDisplay/ (easylist.txt: 31669) -.anamera.com/DesktopModules/BannerDisplay/ -# ||analytics.mmosite.com^ (easylist.txt: 31668) -.analytics.mmosite.com -# ||amz.steamprices.com^ (easylist.txt: 31667) -.amz.steamprices.com -# ||amnesty.ca/images/banners/ (easylist.txt: 31666) -.amnesty.ca/images/banners/ -# ||americanfreepress.net/assets/images/Banner_ (easylist.txt: 31665) -.americanfreepress.net/assets/images/Banner_ -# ||americanangler.com/images/banners/ (easylist.txt: 31664) -.americanangler.com/images/banners/ -# ||amd.com/publishingimages/*/master_ (easylist.txt: 31663) -.amd.com/publishingimages/.*/master_ -# ||ambriefonline.com^*/banners/ (easylist.txt: 31662) -.ambriefonline.com/.*/banners/ -# ||amazonaws.com/files.bannersnack.com/ (easylist.txt: 31655) -.amazonaws.com/files\.bannersnack\.com/ -# ||amazonaws.com/cdn.megacpm.com/ (easylist.txt: 31652) -.amazonaws.com/cdn\.megacpm\.com/ -# ||amazingmoneymagnet.com//upload/banners/ (easylist.txt: 31650) -# ||alternet.org/givememygfp. (easylist.txt: 31649) -.alternet.org/givememygfp\. -# ||altdaily.com/images/banners/ (easylist.txt: 31648) -.altdaily.com/images/banners/ -# ||allthelyrics.com^*/popup.js (easylist.txt: 31647) -.allthelyrics.com/.*/popup\.js -# ||allsp.ch/feeder.php (easylist.txt: 31646) -.allsp.ch/feeder\.php -# ||allmyvideos.net^*/pu.js (easylist.txt: 31645) -.allmyvideos.net/.*/pu\.js -# ||allmyvideos.net/player/ova-jw.swf (easylist.txt: 31644) -.allmyvideos.net/player/ova-jw\.swf -# ||allmyvideos.net/js/ad_ (easylist.txt: 31643) -.allmyvideos.net/js/ad_ -# ||allmusic.com^*_affiliate_ (easylist.txt: 31642) -.allmusic.com/.*_affiliate_ -# ||allmovieportal.com/dynbanner. (easylist.txt: 31641) -.allmovieportal.com/dynbanner\. -# ||allmovie.com^*/affiliate_ (easylist.txt: 31640) -.allmovie.com/.*/affiliate_ -# ||allkpop.com^*/takeover/ (easylist.txt: 31639) -.allkpop.com/.*/takeover/ -# ||allhiphop.com/site_resources/ui-images/*-conduit-banner.gif (easylist.txt: 31638) -.allhiphop.com/site_resources/ui-images/.*-conduit-banner\.gif -# ||allghananews.com/images/banners/ (easylist.txt: 31637) -.allghananews.com/images/banners/ -# ||all4divx.com/js/jscode2.js (easylist.txt: 31636) -.all4divx.com/js/jscode2\.js -# ||alatest.com/banner/ (easylist.txt: 31635) -.alatest.com/banner/ -# ||alatest.co.uk/banner/ (easylist.txt: 31634) -.alatest.co.uk/banner/ -# ||alaska-native-news.com/files/banners/ (easylist.txt: 31633) -.alaska-native-news.com/files/banners/ -# ||alarabiya.net/dms/takeover/ (easylist.txt: 31632) -.alarabiya.net/dms/takeover/ -# ||alachuacountytoday.com/images/banners/ (easylist.txt: 31631) -.alachuacountytoday.com/images/banners/ -# ||akipress.org/bimages/ (easylist.txt: 31630) -.akipress.org/bimages/ -# ||akipress.org/ban/ (easylist.txt: 31629) -.akipress.org/ban/ -# ||akipress.com/_ban/ (easylist.txt: 31628) -.akipress.com/_ban/ -# ||akinator.com/publicite_ (easylist.txt: 31627) -.akinator.com/publicite_ -# ||akiba-online.com/forum/images/bs.gif (easylist.txt: 31625) -.akiba-online.com/forum/images/bs\.gif -# ||akamaihd.net/zbar/takeovers/ (easylist.txt: 31623) -.akamaihd.net/zbar/takeovers/ -# ||akamai.net/*/Prerolls/Campaigns/ (easylist.txt: 31622) -.akamai.net/.*/Prerolls/Campaigns/ -# ||ajnad.aljazeera.net^ (easylist.txt: 31621) -.ajnad.aljazeera.net -# ||ahk-usa.com/uploads/tx_bannermanagement/ (easylist.txt: 31620) -.ahk-usa.com/uploads/tx_bannermanagement/ -# ||ahashare.com/cpxt_ (easylist.txt: 31619) -.ahashare.com/cpxt_ -# ||agriculturalreviewonline.com/images/banners/ (easylist.txt: 31618) -.agriculturalreviewonline.com/images/banners/ -# ||afternoondc.in/banners/ (easylist.txt: 31617) -.afternoondc.in/banners/ -# ||africaonline.com.na^*/banners/ (easylist.txt: 31616) -.africaonline.com.na/.*/banners/ -# ||africanbusinessmagazine.com/images/banners/ (easylist.txt: 31615) -.africanbusinessmagazine.com/images/banners/ -# ||afmradio.co.za/images/slider/ (easylist.txt: 31614) -.afmradio.co.za/images/slider/ -# ||afloat.ie^*/banners/ (easylist.txt: 31613) -.afloat.ie/.*/banners/ -# ||affiliatesynergy.com^*/banner_ (easylist.txt: 31612) -.affiliatesynergy.com/.*/banner_ -# ||aff.lmgtfy.com^ (easylist.txt: 31611) -.aff.lmgtfy.com -# ||aetv.com/includes/dart/ (easylist.txt: 31610) -.aetv.com/includes/dart/ -# ||adz.lk^*_ad. (easylist.txt: 31609) -.adz.lk/.*_ad\. -# ||adx.kat.ph^ (easylist.txt: 31608) -.adx.kat.ph -# ||advpc.net/site_img/banner/ (easylist.txt: 31607) -.advpc.net/site_img/banner/ -# ||advice-ads-cdn.vice.com^ (easylist.txt: 31606) -.advice-ads-cdn.vice.com -# ||advfn.com/tf_ (easylist.txt: 31605) -.advfn.com/tf_ -# ||advertise.twitpic.com^ (easylist.txt: 31603) -.advertise.twitpic.com -# ||advanced-television.com^*/banners/ (easylist.txt: 31602) -.advanced-television.com/.*/banners/ -# ||adv.li/ads/ (easylist.txt: 31601) -.adv.li/ads/ -# ||adtest.theonion.com^ (easylist.txt: 31600) -.adtest.theonion.com -# ||adswikia.com^*display300x250 (easylist.txt: 31599) -.adswikia.com/.*display300x250 -# ||adswikia.com^*banner (easylist.txt: 31598) -.adswikia.com/.*banner -# ||adstil.indiatimes.com^ (easylist.txt: 31597) -.adstil.indiatimes.com -# ||adss.yahoo.com^ (easylist.txt: 31596) -.adss.yahoo.com -# ||adsor.openrunner.com^ (easylist.txt: 31595) -.adsor.openrunner.com -# ||adsl2exchanges.com.au/images/spintel (easylist.txt: 31594) -.adsl2exchanges.com.au/images/spintel -# ||adshare.freedocast.com^ (easylist.txt: 31593) -.adshare.freedocast.com -# ||adsatt.espn.starwave.com^ (easylist.txt: 31592) -.adsatt.espn.starwave.com -# ||adsatt.abcnews.starwave.com^ (easylist.txt: 31591) -.adsatt.abcnews.starwave.com -# ||ads.zynga.com^ (easylist.txt: 31590) -.ads.zynga.com -# ||ads.yahoo.com^ (easylist.txt: 31589) -.ads.yahoo.com -# ||ads.pof.com^ (easylist.txt: 31588) -.ads.pof.com -# ||ads-rolandgarros.com^ (easylist.txt: 31587) -.ads-rolandgarros.com -# ||ads-*.hulu.com^ (easylist.txt: 31586) -.ads-*./.*\.hulu\.com[^\w%.-] -.ads-*.hulu.com -# ||adpost.com^*.g.html (easylist.txt: 31585) -.adpost.com/.*\.g\.html -# ||adpost.com/skyserver.g. (easylist.txt: 31584) -.adpost.com/skyserver\.g\. -# ||adpost.com/rectserver.g. (easylist.txt: 31583) -.adpost.com/rectserver\.g\. -# ||adpost.com/bannerserver.g. (easylist.txt: 31582) -.adpost.com/bannerserver\.g\. -# ||adpaths.com/_aspx/cpcinclude.aspx? (easylist.txt: 31581) -.adpaths.com/_aspx/cpcinclude\.aspx\? -# ||admeta.vo.llnwd.net^ (easylist.txt: 31580) -.admeta.vo.llnwd.net -# ||adlink.shopsafe.co.nz^ (easylist.txt: 31579) -.adlink.shopsafe.co.nz -# ||adirondackmtnclub.com/images/banner/ (easylist.txt: 31578) -.adirondackmtnclub.com/images/banner/ -# ||adifferentleague.co.uk^*/mcad.png (easylist.txt: 31577) -.adifferentleague.co.uk/.*/mcad\.png -# ||adf.ly/networks/ (easylist.txt: 31576) -.adf.ly/networks/ -# ||adf.ly/external/*/int.php (easylist.txt: 31575) -.adf.ly/external/.*/int\.php -# ||adelaidecityfc.com.au/oak.swf (easylist.txt: 31574) -.adelaidecityfc.com.au/oak\.swf -# ||adds.weatherology.com^ (easylist.txt: 31573) -.adds.weatherology.com -# ||addirector.vindicosuite.com^ (easylist.txt: 31572) -.addirector.vindicosuite.com -# ||adcitrus.com^ (easylist.txt: 31571) -.adcitrus.com -# ||adamvstheman.com/wp-content/uploads/*/AVTM_banner.jpg (easylist.txt: 31570) -.adamvstheman.com/wp-content/uploads/.*/AVTM_banner\.jpg -# ||ad.services.distractify.com^ (easylist.txt: 31569) -.ad.services.distractify.com -# ||ad.search.ch^ (easylist.txt: 31568) -.ad.search.ch -# ||ad.reachlocal.com^ (easylist.txt: 31567) -.ad.reachlocal.com -# ||ad.pandora.tv^ (easylist.txt: 31566) -.ad.pandora.tv -# ||ad.newegg.com^ (easylist.txt: 31565) -.ad.newegg.com -# ||ad.mangareader.net^ (easylist.txt: 31564) -.ad.mangareader.net -# ||ad.lyricswire.com^ (easylist.txt: 31563) -.ad.lyricswire.com -# ||ad.jamster.com^ (easylist.txt: 31562) -.ad.jamster.com -# ||ad.fnnews.com^ (easylist.txt: 31561) -.ad.fnnews.com -# ||ad.evozi.com^ (easylist.txt: 31560) -.ad.evozi.com -# ||ad.download.cnet.com^ (easylist.txt: 31559) -.ad.download.cnet.com -# ||ad.directmirror.com^ (easylist.txt: 31558) -.ad.directmirror.com -# ||ad.digitimes.com.tw^ (easylist.txt: 31557) -.ad.digitimes.com.tw -# ||ad.cooks.com^ (easylist.txt: 31556) -.ad.cooks.com -# ||actressarchives.com/takeover/ (easylist.txt: 31555) -.actressarchives.com/takeover/ -# ||activewin.com^*/blaze_static2.gif (easylist.txt: 31554) -.activewin.com/.*/blaze_static2\.gif -# ||activewin.com/images/*_ad.gif (easylist.txt: 31553) -.activewin.com/images/.*_ad\.gif -# ||acs86.com/a.htm? (easylist.txt: 31552) -.acs86.com/a\.htm\? -# ||acidcow.com/banners.php? (easylist.txt: 31551) -.acidcow.com/banners\.php\? -# ||access.njherald.com^ (easylist.txt: 31549) -.access.njherald.com -# ||ac2.msn.com^ (easylist.txt: 31548) -.ac2.msn.com -# ||absolutewrite.com^*_ad.jpg (easylist.txt: 31547) -.absolutewrite.com/.*_ad\.jpg -# ||absolutewrite.com^*_468x60banner. (easylist.txt: 31546) -.absolutewrite.com/.*_468x60banner\. -# ||absolutewrite.com^*/Scrivener-11-thumbnail-cover_160x136.gif (easylist.txt: 31545) -.absolutewrite.com/.*/Scrivener-11-thumbnail-cover_160x136\.gif -# ||absolutewrite.com^*/doyle_editorial.jpg (easylist.txt: 31544) -.absolutewrite.com/.*/doyle_editorial\.jpg -# ||absolutewrite.com^*/48HrBooks4.jpg (easylist.txt: 31543) -.absolutewrite.com/.*/48HrBooks4\.jpg -# ||absolutcheats.com/images/changemy*.gif (easylist.txt: 31542) -.absolutcheats.com/images/changemy.*\.gif -# ||abovetopsecret.com/images/plexidigest-300x300.jpg (easylist.txt: 31541) -.abovetopsecret.com/images/plexidigest-300x300\.jpg -# ||abovetopsecret.com/728_ (easylist.txt: 31540) -.abovetopsecret.com/728_ -# ||abovetopsecret.com/300_ (easylist.txt: 31539) -.abovetopsecret.com/300_ -# ||abovetopsecret.com/160_ (easylist.txt: 31538) -.abovetopsecret.com/160_ -# ||aboutmyip.com/images/SynaManBanner.gif (easylist.txt: 31537) -.aboutmyip.com/images/SynaManBanner\.gif -# ||aboutmyip.com/images/Ad0 (easylist.txt: 31536) -.aboutmyip.com/images/Ad0 -# ||aboutmyarea.co.uk/images/imgstore/ (easylist.txt: 31535) -.aboutmyarea.co.uk/images/imgstore/ -# ||abook.ws/th_mydl.gif (easylist.txt: 31533) -.abook.ws/th_mydl\.gif -# ||abook.ws/pyload.png (easylist.txt: 31532) -.abook.ws/pyload\.png -# ||abook.ws/banner6.png (easylist.txt: 31531) -.abook.ws/banner6\.png -# ||abduzeedo.com^*/mt-banner.jpg (easylist.txt: 31530) -.abduzeedo.com/.*/mt-banner\.jpg -# ||aaugh.com/images/dreamhostad.gif (easylist.txt: 31528) -.aaugh.com/images/dreamhostad\.gif -# ||a7.org/info/ (easylist.txt: 31527) -.a7.org/info/ -# ||a.lolwot.com^ (easylist.txt: 31526) -.a.lolwot.com -# ||a.kickass.to^ (easylist.txt: 31525) -.a.kickass.to -# ||a.kat.cr^ (easylist.txt: 31524) -.a.kat.cr -# ||a.i-sgcm.com^ (easylist.txt: 31523) -.a.i-sgcm.com -# ||a.giantrealm.com^ (easylist.txt: 31522) -.a.giantrealm.com -# ||a.clipconverter.cc^ (easylist.txt: 31521) -.a.clipconverter.cc -# ||a.cdngeek.net^ (easylist.txt: 31520) -.a.cdngeek.net -# ||9news.com/promo/ (easylist.txt: 31519) -.9news.com/promo/ -# ||980wcap.com/sponsorlogos/ (easylist.txt: 31518) -.980wcap.com/sponsorlogos/ -# ||977rocks.com/images/300- (easylist.txt: 31517) -.977rocks.com/images/300- -# ||977music.com/index.php?p=get_loading_banner (easylist.txt: 31516) -.977music.com/index\.php\?p=get_loading_banner -# ||947fm.bb/images/banners/ (easylist.txt: 31515) -.947fm.bb/images/banners/ -# ||947.co.za^*-branding. (easylist.txt: 31514) -.947.co.za/.*-branding\. -# ||911tabs.com^*/ringtones_overlay.js (easylist.txt: 31513) -.911tabs.com/.*/ringtones_overlay\.js -# ||911tabs.com/img/takeover_app_ (easylist.txt: 31512) -.911tabs.com/img/takeover_app_ -# ||911tabs.com/img/bgd_911tabs_ (easylist.txt: 31511) -.911tabs.com/img/bgd_911tabs_ -# ||8ch.net/proxy.php? (easylist.txt: 31510) -.8ch.net/proxy\.php\? -# ||8a.nu/sponsors/ (easylist.txt: 31509) -.8a.nu/sponsors/ -# ||8a.nu/site2/sponsors/ (easylist.txt: 31508) -.8a.nu/site2/sponsors/ -# ||88.80.16.183/streams/counters/ (easylist.txt: 31507) -.88.80.16.183/streams/counters/ -# ||810varsity.com^*/background- (easylist.txt: 31504) -.810varsity.com/.*/background- -# ||6waves.com/aff.php? (easylist.txt: 31502) -.6waves.com/aff\.php\? -# ||64.245.1.134/search/v2/jsp/pcwframe.jsp?provider= (easylist.txt: 31501) -.64.245.1.134/search/v2/jsp/pcwframe\.jsp\?provider= -# ||610kvnu.com*^/sponsors/ (easylist.txt: 31500) -.610kvnu.com*./(.*[^\w%.-])?/sponsors/ -# ||5star-shareware.com/scripts/5starads.js (easylist.txt: 31499) -.5star-shareware.com/scripts/5starads\.js -# ||5min.com^*/banners/ (easylist.txt: 31498) -.5min.com/.*/banners/ -# ||560theanswer.com/upload/sponsor- (easylist.txt: 31497) -.560theanswer.com/upload/sponsor- -# ||4sharedtrend.com/ifx/ifx.php? (easylist.txt: 31493) -.4sharedtrend.com/ifx/ifx\.php\? -# ||4shared.com/images/label1.gif (easylist.txt: 31492) -.4shared.com/images/label1\.gif -# ||4fuckr.com/static/*-banner. (easylist.txt: 31491) -.4fuckr.com/static/.*-banner\. -# ||4fastfile.com/afiliat.png (easylist.txt: 31489) -.4fastfile.com/afiliat\.png -# ||4downfiles.com/open1.js (easylist.txt: 31488) -.4downfiles.com/open1\.js -# ||4chan.org/support/ (easylist.txt: 31487) -.4chan.org/support/ -# ||3pmpickup.com.au/images/kmart_v2.jpg (easylist.txt: 31486) -.3pmpickup.com.au/images/kmart_v2\.jpg -# ||3g.co.uk/fad/ (easylist.txt: 31485) -.3g.co.uk/fad/ -# ||3dwallpaperstudio.com/hd_wallpapers.png (easylist.txt: 31484) -.3dwallpaperstudio.com/hd_wallpapers\.png -# ||3dsemulator.org/img/download.png (easylist.txt: 31483) -.3dsemulator.org/img/download\.png -# ||360haven.com/forums/*.advertising.com/ (easylist.txt: 31482) -.360haven.com/forums/.*\.advertising\.com/ -# ||2pass.co.uk/img/avanquest2013.gif (easylist.txt: 31481) -.2pass.co.uk/img/avanquest2013\.gif -# ||2oceansvibe.com/?custom=takeover (easylist.txt: 31480) -.2oceansvibe.com/\?custom=takeover -# ||2mfm.org/images/banners/ (easylist.txt: 31479) -.2mfm.org/images/banners/ -# ||2merkato.com/images/banners/ (easylist.txt: 31478) -.2merkato.com/images/banners/ -# ||2gb.com^*/backgrounds/ (easylist.txt: 31477) -.2gb.com/.*/backgrounds/ -# ||2flashgames.com/img/nfs.gif (easylist.txt: 31476) -.2flashgames.com/img/nfs\.gif -# ||24hourwristbands.com/*.googleadservices.com/ (easylist.txt: 31475) -.24hourwristbands.com/.*\.googleadservices\.com/ -# ||22lottery.com/images/lm468 (easylist.txt: 31474) -.22lottery.com/images/lm468 -# ||1up.com^*/promos/ (easylist.txt: 31469) -.1up.com/.*/promos/ -# ||1up.com/vip/vip_games.html (easylist.txt: 31468) -.1up.com/vip/vip_games\.html -# ||1up.com/scripts/takeover.js (easylist.txt: 31467) -.1up.com/scripts/takeover\.js -# ||180upload.com/pir/729.js (easylist.txt: 31464) -.180upload.com/pir/729\.js -# ||180upload.com/p1.js (easylist.txt: 31463) -.180upload.com/p1\.js -# ||1776coalition.com/wp-content/plugins/sam-images/ (easylist.txt: 31461) -.1776coalition.com/wp-content/plugins/sam-images/ -# ||1590wcgo.com/images/banners/ (easylist.txt: 31459) -.1590wcgo.com/images/banners/ -# ||1430wnav.com/images/468- (easylist.txt: 31458) -.1430wnav.com/images/468- -# ||1430wnav.com/images/300- (easylist.txt: 31457) -.1430wnav.com/images/300- -# ||1340wcmi.com/images/banners/ (easylist.txt: 31456) -.1340wcmi.com/images/banners/ -# ||1320wils.com/assets/images/promo%20banner/ (easylist.txt: 31455) -.1320wils.com/assets/images/promo%20banner/ -# ||11points.com/images/slack100.jpg (easylist.txt: 31454) -.11points.com/images/slack100\.jpg -# ||1077thebone.com^*/banners/ (easylist.txt: 31452) -.1077thebone.com/.*/banners/ -# ||1071thepeak.com/right/ (easylist.txt: 31451) -.1071thepeak.com/right/ -# ||1071radio.com//wp-content/banners/ (easylist.txt: 31450) -# ||1043thefan.com^*_Sponsors/ (easylist.txt: 31449) -.1043thefan.com/.*_Sponsors/ -# ||104.239.139.5/display/ (easylist.txt: 31448) -.104.239.139.5/display/ -# ||1023xlc.com/upload/*_background_ (easylist.txt: 31447) -.1023xlc.com/upload/.*_background_ -# ||100jamz.com^*/insurance-management (easylist.txt: 31446) -.100jamz.com/.*/insurance-management -# ||100jamz.com^*-wallpaper-ad- (easylist.txt: 31445) -.100jamz.com/.*-wallpaper-ad- -# ||100best-free-web-space.com/images/ipage.gif (easylist.txt: 31444) -.100best-free-web-space.com/images/ipage\.gif -# ||10-fast-fingers.com/quotebattle-ad.png (easylist.txt: 31443) -.10-fast-fingers.com/quotebattle-ad\.png -# ||04stream.com/podddpo.js (easylist.txt: 31442) -.04stream.com/podddpo\.js -# ||04stream.com/NEWAD11.php? (easylist.txt: 31441) -.04stream.com/NEWAD11\.php\? -# ||0-60mag.com/js/takeover-2.0/ (easylist.txt: 31440) -.0-60mag.com/js/takeover-2\.0/ -# |http://j.gs/omnigy*.swf (easylist.txt: 31437) -j.gs/omnigy.*\.swf -# ||wantlive.com/landing/$popup (easylist.txt: 31402) -.wantlive.com/landing/ -# ||videobox.com/tour/$popup (easylist.txt: 31397) -.videobox.com/tour/ -# ||videobox.com/?tid=$popup (easylist.txt: 31396) -.videobox.com/\?tid= -# ||upforit.com/ext.php$popup (easylist.txt: 31395) -.upforit.com/ext\.php -# ||topbucks.com/popunder/$popup (easylist.txt: 31391) -.topbucks.com/popunder/ -# ||textad.sexsearch.com^$popup (easylist.txt: 31390) -.textad.sexsearch.com -# ||streamate.com/landing/$popup (easylist.txt: 31388) -.streamate.com/landing/ -# ||sexier.com^*_popunder&$popup (easylist.txt: 31385) -.sexier.com/.*_popunder& -# ||sex.com/popunder/$popup (easylist.txt: 31383) -.sex.com/popunder/ -# ||seeme.com^*?aid=*&art=$popup (easylist.txt: 31382) -.seeme.com/.*\?aid=.*&art= -# ||seekbang.com/cs/rotator/$popup (easylist.txt: 31381) -.seekbang.com/cs/rotator/ -# ||redtube.com/bid/$popup (easylist.txt: 31379) -.redtube.com/bid/ -# ||pornslash.com/cbp.php$popup (easylist.txt: 31376) -.pornslash.com/cbp\.php -# ||pornoh.info^$popup (easylist.txt: 31375) -.pornoh.info -# ||porno-onlain.info/top.php$popup (easylist.txt: 31374) -.porno-onlain.info/top\.php -# ||pornhub.com^*&utm_campaign=*-pop|$popup (easylist.txt: 31372) -.pornhub.com/.*&utm_campaign=.*-pop$ -# ||pomnach.ru^$popup (easylist.txt: 31371) -.pomnach.ru -# ||myfreecams.com/?co_id=$popup (easylist.txt: 31369) -.myfreecams.com/\?co_id= -# ||meetlocals.com^*popunder$popup (easylist.txt: 31366) -.meetlocals.com/.*popunder -# ||livecams.com^$popup (easylist.txt: 31362) -.livecams.com -# ||judgeporn.com/video_pop.php?$popup (easylist.txt: 31359) -.judgeporn.com/video_pop\.php\? -# ||join.whitegfs.com^$popup (easylist.txt: 31358) -.join.whitegfs.com -# ||icgirls.com^$popup (easylist.txt: 31352) -.icgirls.com -# ||hazeher.com/t1/pps$popup (easylist.txt: 31350) -.hazeher.com/t1/pps -# ||get-a-fuck-tonight.com^$popup (easylist.txt: 31349) -.get-a-fuck-tonight.com -# ||fucktapes.org/fucktube.htm$popup (easylist.txt: 31348) -.fucktapes.org/fucktube\.htm -# ||fuckshow.org^*&adr=$popup (easylist.txt: 31347) -.fuckshow.org/.*&adr= -# ||fuckbookhookups.com/go/$popup (easylist.txt: 31345) -.fuckbookhookups.com/go/ -# ||fling.com/enter.php?$popup (easylist.txt: 31343) -.fling.com/enter\.php\? -# ||fantasti.cc/ajax/gw.php?$popup (easylist.txt: 31341) -.fantasti.cc/ajax/gw\.php\? -# ||extremefuse.com/out.php?$popup (easylist.txt: 31340) -.extremefuse.com/out\.php\? -# ||ext.affaire.com^$popup (easylist.txt: 31339) -.ext.affaire.com -# ||epornerlive.com/index.php?*=punder$popup (easylist.txt: 31337) -.epornerlive.com/index\.php\?.*=punder -# ||chaturbate.com/sitestats/openwindow/$popup (easylist.txt: 31334) -.chaturbate.com/sitestats/openwindow/ -# ||chaturbate.com/*/?join_overlay=$popup (easylist.txt: 31333) -.chaturbate.com/.*/\?join_overlay= -# ||candidvoyeurism.com/ads/$popup (easylist.txt: 31332) -.candidvoyeurism.com/ads/ -# ||camcity.com/rtr.php?aid=$popup (easylist.txt: 31331) -.camcity.com/rtr\.php\?aid= -# ||cam4.com/?$popup (easylist.txt: 31330) -.cam4.com/\? -# ||21sextury.com^$popup (easylist.txt: 31321) -.21sextury.com -# ||zubehost.com/*?zoneid= (easylist.txt: 31318) -.zubehost.com/.*\?zoneid= -# ||ztod.com/flash/wall*.swf (easylist.txt: 31316) -.ztod.com/flash/wall.*\.swf -# ||yplf.com/ram/files/sponsors/ (easylist.txt: 31315) -.yplf.com/ram/files/sponsors/ -# ||youfck.com^*/adawe.swf (easylist.txt: 31314) -.youfck.com/.*/adawe\.swf -# ||xtrasize.pl/banner/ (easylist.txt: 31311) -.xtrasize.pl/banner/ -# ||winkit.info/wink2.js (easylist.txt: 31307) -.winkit.info/wink2\.js -# ||widgetssec.cam-content.com^ (easylist.txt: 31306) -.widgetssec.cam-content.com -# ||widgets.comcontent.net^ (easylist.txt: 31305) -.widgets.comcontent.net -# ||wetandpuffy.com/galleries/banners/ (easylist.txt: 31304) -.wetandpuffy.com/galleries/banners/ -# ||webcams.com/misc/iframes_new/ (easylist.txt: 31301) -.webcams.com/misc/iframes_new/ -# ||webcams.com/js/im_popup.php? (easylist.txt: 31300) -.webcams.com/js/im_popup\.php\? -# ||wafflegirl.com/galleries/banner/ (easylist.txt: 31298) -.wafflegirl.com/galleries/banner/ -# ||vs3.com/_special/banners/ (easylist.txt: 31295) -.vs3.com/_special/banners/ -# ||vodconcepts.com^*/banners/ (easylist.txt: 31294) -.vodconcepts.com/.*/banners/ -# ||virtualhottie2.com/cash/tools/banners/ (easylist.txt: 31292) -.virtualhottie2.com/cash/tools/banners/ -# ||viorotica.com^*/banners/ (easylist.txt: 31291) -.viorotica.com/.*/banners/ -# ||vigrax.pl/banner/ (easylist.txt: 31290) -.vigrax.pl/banner/ -# ||uramov.info/wav/wavideo.html (easylist.txt: 31286) -.uramov.info/wav/wavideo\.html -# ||updatetube.com/updatetube_html/ (easylist.txt: 31284) -.updatetube.com/updatetube_html/ -# ||updatetube.com/iframes/ (easylist.txt: 31283) -.updatetube.com/iframes/ -# ||twiant.com/img/banners/ (easylist.txt: 31281) -.twiant.com/img/banners/ -# ||turbolovervidz.com/fling/ (easylist.txt: 31280) -.turbolovervidz.com/fling/ -# ||tubefck.com^*/adawe.swf (easylist.txt: 31278) -.tubefck.com/.*/adawe\.swf -# ||ts.videosz.com/iframes/ (easylist.txt: 31277) -.ts.videosz.com/iframes/ -# ||thumbs.vstreamcdn.com^*/slider.html (easylist.txt: 31269) -.thumbs.vstreamcdn.com/.*/slider\.html -# ||thrixxx.com/scripts/show_banner.php? (easylist.txt: 31267) -.thrixxx.com/scripts/show_banner\.php\? -# ||teendaporn.com/rk.js (easylist.txt: 31265) -.teendaporn.com/rk\.js -# ||swurve.com/affiliates/ (easylist.txt: 31263) -.swurve.com/affiliates/ -# ||sweet.game-rust.ru^ (easylist.txt: 31262) -.sweet.game-rust.ru -# ||surv.xbizmedia.com^ (easylist.txt: 31261) -.surv.xbizmedia.com -# ||streamray.com/images/cams/flash/cams_live.swf (easylist.txt: 31260) -.streamray.com/images/cams/flash/cams_live\.swf -# ||steadybucks.com^*/banners/ (easylist.txt: 31258) -.steadybucks.com/.*/banners/ -# ||sponsor4cash.de/script/ (easylist.txt: 31257) -.sponsor4cash.de/script/ -# ||spacash.com/tools/peel/ (easylist.txt: 31256) -.spacash.com/tools/peel/ -# ||spacash.com//v2bannerview.php? (easylist.txt: 31254) -# ||smyw.org/smyw_anima_1.gif (easylist.txt: 31252) -.smyw.org/smyw_anima_1\.gif -# ||simonscans.com/banner/ (easylist.txt: 31248) -.simonscans.com/banner/ -# ||shemalenova.com/smn/banners/ (easylist.txt: 31246) -.shemalenova.com/smn/banners/ -# ||shemale.asia/sma/banners/ (easylist.txt: 31245) -.shemale.asia/sma/banners/ -# ||share-image.com/borky/ (easylist.txt: 31243) -.share-image.com/borky/ -# ||sextubepromo.com/ubr/ (easylist.txt: 31240) -.sextubepromo.com/ubr/ -# ||sextronix.*.cdnaccess.com^ (easylist.txt: 31237) -.sextronix.*./.*\.cdnaccess\.com[^\w%.-] -.sextronix.*.cdnaccess.com -# ||sexgangsters.com/sg-banners/ (easylist.txt: 31236) -.sexgangsters.com/sg-banners/ -# ||scoreland.com/banner/ (easylist.txt: 31233) -.scoreland.com/banner/ -# ||sakuralive.com/dynamicbanner/ (easylist.txt: 31232) -.sakuralive.com/dynamicbanner/ -# ||saboom.com.pccdn.com^*/banner/ (easylist.txt: 31230) -.saboom.com.pccdn.com/.*/banner/ -# ||s1magnettvcom.maynemyltf.netdna-cdn.com^ (easylist.txt: 31228) -.s1magnettvcom.maynemyltf.netdna-cdn.com -# ||ruscams.com/promo/ (easylist.txt: 31226) -.ruscams.com/promo/ -# ||rotci.com/images/rotcibanner.png (easylist.txt: 31222) -.rotci.com/images/rotcibanner\.png -# ||rexcams.com/misc/iframes_new/ (easylist.txt: 31221) -.rexcams.com/misc/iframes_new/ -# ||red-tube.com/dynbanner.php? (easylist.txt: 31219) -.red-tube.com/dynbanner\.php\? -# ||realitykings.com/vbanners/ (easylist.txt: 31218) -.realitykings.com/vbanners/ -# ||rabbitporno.com/friends/ (easylist.txt: 31215) -.rabbitporno.com/friends/ -# ||putana.cz/banners/ (easylist.txt: 31214) -.putana.cz/banners/ -# ||propbn.com/bonga/ (easylist.txt: 31210) -.propbn.com/bonga/ -# ||privatehomeclips.com/privatehomeclips.php?t_sid= (easylist.txt: 31201) -.privatehomeclips.com/privatehomeclips\.php\?t_sid= -# ||private.com/banner/ (easylist.txt: 31200) -.private.com/banner/ -# ||privatamateure.com/promotion/ (easylist.txt: 31198) -.privatamateure.com/promotion/ -# ||pornstarnetwork.com^*_660x70.jpg (easylist.txt: 31192) -.pornstarnetwork.com/.*_660x70\.jpg -# ||porn2blog.com/wp-content/banners/ (easylist.txt: 31187) -.porn2blog.com/wp-content/banners/ -# ||pop6.com/javascript/im_box-*.js (easylist.txt: 31186) -.pop6.com/javascript/im_box-.*\.js -# ||plugin-x.com/rotaban/ (easylist.txt: 31181) -.plugin-x.com/rotaban/ -# ||paydir.com/images/bnr (easylist.txt: 31178) -.paydir.com/images/bnr -# ||partners.pornerbros.com^ (easylist.txt: 31175) -.partners.pornerbros.com -# ||orgasmtube.com/js/superP/ (easylist.txt: 31170) -.orgasmtube.com/js/superP/ -# ||nudemix.com/widget/ (easylist.txt: 31166) -.nudemix.com/widget/ -# ||netvideogirls.com/adultfyi.jpg (easylist.txt: 31163) -.netvideogirls.com/adultfyi\.jpg -# ||nakedshygirls.com/bannerimg/ (easylist.txt: 31160) -.nakedshygirls.com/bannerimg/ -# ||myexposedgirlfriendz.com/pop/popuprk.js (easylist.txt: 31155) -.myexposedgirlfriendz.com/pop/popuprk\.js -# ||myexposedgirlfriendz.com/pop/popuppp.js (easylist.txt: 31154) -.myexposedgirlfriendz.com/pop/popuppp\.js -# ||mrskin.com/affiliateframe/ (easylist.txt: 31148) -.mrskin.com/affiliateframe/ -# ||mofomedia.nl/pop-*.js (easylist.txt: 31146) -.mofomedia.nl/pop-.*\.js -# ||magazine-empire.com/images/pornstarad.jpg (easylist.txt: 31133) -.magazine-empire.com/images/pornstarad\.jpg -# ||longmint.com/lm/banners/ (easylist.txt: 31131) -.longmint.com/lm/banners/ -# ||llnwd.net^*/takeover_ (easylist.txt: 31130) -.llnwd.net/.*/takeover_ -# ||lb-69.com/pics/ (easylist.txt: 31126) -.lb-69.com/pics/ -# ||ladyboygoo.com/lbg/banners/ (easylist.txt: 31123) -.ladyboygoo.com/lbg/banners/ -# ||lacyx.com/images/banners/ (easylist.txt: 31122) -.lacyx.com/images/banners/ -# ||kuntfutube.com/bgbb.gif (easylist.txt: 31121) -.kuntfutube.com/bgbb\.gif -# ||kau.li/yad.js (easylist.txt: 31119) -.kau.li/yad\.js -# ||interracialbangblog.info^*-ban.png (easylist.txt: 31114) -.interracialbangblog.info/.*-ban\.png -# ||interracialbangblog.info/banner.jpg (easylist.txt: 31113) -.interracialbangblog.info/banner\.jpg -# ||imageteam.org/upload/big/2014/06/22/53a7181b378cb.png (easylist.txt: 31112) -.imageteam.org/upload/big/2014/06/22/53a7181b378cb\.png -# ||ihookup.com/configcreatives/ (easylist.txt: 31108) -.ihookup.com/configcreatives/ -# ||hotmovies.com/custom_videos.php? (easylist.txt: 31103) -.hotmovies.com/custom_videos\.php\? -# ||hotkinkyjo.xxx/resseler/banners/ (easylist.txt: 31102) -.hotkinkyjo.xxx/resseler/banners/ -# ||hotcaracum.com/banner/ (easylist.txt: 31101) -.hotcaracum.com/banner/ -# ||hostave3.net/hvw/banners/ (easylist.txt: 31098) -.hostave3.net/hvw/banners/ -# ||homoactive.tv/banner/ (easylist.txt: 31095) -.homoactive.tv/banner/ -# ||hodun.ru/files/promo/ (easylist.txt: 31094) -.hodun.ru/files/promo/ -# ||hentaikey.com/images/banners/ (easylist.txt: 31092) -.hentaikey.com/images/banners/ -# ||hentaijunkie.com^*/banners/ (easylist.txt: 31091) -.hentaijunkie.com/.*/banners/ -# ||hdpornphotos.com/images/banner_ (easylist.txt: 31090) -.hdpornphotos.com/images/banner_ -# ||hdpornphotos.com/images/728x180_ (easylist.txt: 31089) -.hdpornphotos.com/images/728x180_ -# ||hardbritlads.com/banner/ (easylist.txt: 31087) -.hardbritlads.com/banner/ -# ||girls-home-alone.com/dating/ (easylist.txt: 31083) -.girls-home-alone.com/dating/ -# ||gfrevenge.com/vbanners/ (easylist.txt: 31082) -.gfrevenge.com/vbanners/ -# ||geobanner.socialflirt.com^ (easylist.txt: 31081) -.geobanner.socialflirt.com -# ||geobanner.alt.com^ (easylist.txt: 31077) -.geobanner.alt.com -# ||geobanner.adultfriendfinder.com^ (easylist.txt: 31076) -.geobanner.adultfriendfinder.com -# ||geo.frtya.com^ (easylist.txt: 31075) -.geo.frtya.com -# ||geo.cliphunter.com^ (easylist.txt: 31074) -.geo.cliphunter.com -# ||gammasites.com/pornication/pc_browsable.php? (easylist.txt: 31071) -.gammasites.com/pornication/pc_browsable\.php\? -# ||freshnews.su/get_tizers.php? (easylist.txt: 31065) -.freshnews.su/get_tizers\.php\? -# ||freexxxvideoclip.aebn.net^ (easylist.txt: 31064) -.freexxxvideoclip.aebn.net -# ||freeporn.hu/banners/ (easylist.txt: 31063) -.freeporn.hu/banners/ -# ||fleshlight.com/images/peel/ (easylist.txt: 31060) -.fleshlight.com/images/peel/ -# ||fleshlight.com/images/banners/ (easylist.txt: 31059) -.fleshlight.com/images/banners/ -# ||firestormmedia.tv^*?affid= (easylist.txt: 31058) -.firestormmedia.tv/.*\?affid= -# ||fgn.me^*/skins/ (easylist.txt: 31057) -.fgn.me/.*/skins/ -# ||ff.nsg.org.ua^ (easylist.txt: 31056) -.ff.nsg.org.ua -# ||feeds.videosz.com^ (easylist.txt: 31054) -.feeds.videosz.com -# ||fckya.com/lj.js (easylist.txt: 31053) -.fckya.com/lj\.js -# ||fastcdn.me/mlr/ (easylist.txt: 31051) -.fastcdn.me/mlr/ -# ||fastcdn.me/js/snpp/ (easylist.txt: 31050) -.fastcdn.me/js/snpp/ -# ||f5porn.com/porn.gif (easylist.txt: 31048) -.f5porn.com/porn\.gif -# ||extremeladyboys.com/elb/banners/ (easylist.txt: 31047) -.extremeladyboys.com/elb/banners/ -# ||eurolive.com/index.php?module=public_eurolive_onlinetool& (easylist.txt: 31043) -.eurolive.com/index\.php\?module=public_eurolive_onlinetool& -# ||eurolive.com/?module=public_eurolive_onlinehostess& (easylist.txt: 31042) -.eurolive.com/\?module=public_eurolive_onlinehostess& -# ||escortbook.com/banner_ (easylist.txt: 31040) -.escortbook.com/banner_ -# ||eliterotica.com/images/banners/ (easylist.txt: 31038) -.eliterotica.com/images/banners/ -# ||downloadsmais.com/imagens/download-direto.gif (easylist.txt: 31035) -.downloadsmais.com/imagens/download-direto\.gif -# ||devilgirls.co/pop.js (easylist.txt: 31033) -.devilgirls.co/pop\.js -# ||devilgirls.co/images/devil.gif (easylist.txt: 31032) -.devilgirls.co/images/devil\.gif -# ||desk.cmix.org^ (easylist.txt: 31031) -.desk.cmix.org -# ||ddstatic.com^*/banners/ (easylist.txt: 31030) -.ddstatic.com/.*/banners/ -# ||ddfcash.com/promo/banners/ (easylist.txt: 31029) -.ddfcash.com/promo/banners/ -# ||dailyvideo.securejoin.com^ (easylist.txt: 31025) -.dailyvideo.securejoin.com -# ||crocogirls.com/croco-new.js (easylist.txt: 31022) -.crocogirls.com/croco-new\.js -# ||creamgoodies.com/potd/ (easylist.txt: 31021) -.creamgoodies.com/potd/ -# ||cpm.amateurcommunity.com^ (easylist.txt: 31020) -.cpm.amateurcommunity.com -# ||cmix.org/teasers/? (easylist.txt: 31014) -.cmix.org/teasers/\? -# ||closepics.com/media/banners/ (easylist.txt: 31013) -.closepics.com/media/banners/ -# ||chaturbate.com/creative/ (easylist.txt: 31008) -.chaturbate.com/creative/ -# ||chaturbate.com/affiliates/ (easylist.txt: 31007) -.chaturbate.com/affiliates/ -# ||cdn.epom.com^*/940_250.gif (easylist.txt: 31004) -.cdn.epom.com/.*/940_250\.gif -# ||brazzers.com/ads/ (easylist.txt: 30993) -.brazzers.com/ads/ -# ||brasileirinhas.com.br/banners/ (easylist.txt: 30992) -.brasileirinhas.com.br/banners/ -# ||br.realitykings.com^ (easylist.txt: 30991) -.br.realitykings.com -# ||br.fling.com^ (easylist.txt: 30990) -.br.fling.com -# ||br.blackfling.com^ (easylist.txt: 30989) -.br.blackfling.com -# ||bongacash.com/promo.php (easylist.txt: 30987) -.bongacash.com/promo\.php -# ||bongacash.com/dynamic_banner/ (easylist.txt: 30986) -.bongacash.com/dynamic_banner/ -# ||blogspot.com^*/ad.jpg (easylist.txt: 30985) -.blogspot.com/.*/ad\.jpg -# ||blackbrazilianshemales.com/bbs/banners/ (easylist.txt: 30984) -.blackbrazilianshemales.com/bbs/banners/ -# ||blaaaa12.googlecode.com^ (easylist.txt: 30983) -.blaaaa12.googlecode.com -# ||bigmovies.com/images/banners/ (easylist.txt: 30982) -.bigmovies.com/images/banners/ -# ||bannershotlink.perfectgonzo.com^ (easylist.txt: 30979) -.bannershotlink.perfectgonzo.com -# ||avatraffic.com/b/ (easylist.txt: 30955) -.avatraffic.com/b/ -# ||assinclusive.com/linkstxt2.html (easylist.txt: 30953) -.assinclusive.com/linkstxt2\.html -# ||assinclusive.com/cyonix.html (easylist.txt: 30952) -.assinclusive.com/cyonix\.html -# ||asktiava.com/promotion/ (easylist.txt: 30951) -.asktiava.com/promotion/ -# ||asianbutterflies.com/potd/ (easylist.txt: 30950) -.asianbutterflies.com/potd/ -# ||ard.sweetdiscreet.com^ (easylist.txt: 30949) -.ard.sweetdiscreet.com -# ||animalsexfun.com/baner/ (easylist.txt: 30948) -.animalsexfun.com/baner/ -# ||ambya.com/potdc/ (easylist.txt: 30947) -.ambya.com/potdc/ -# ||allanalpass.com/visitScript/ (easylist.txt: 30940) -.allanalpass.com/visitScript/ -# ||affiliates.thrixxx.com^ (easylist.txt: 30939) -.affiliates.thrixxx.com -# ||aebn.net/banners/ (easylist.txt: 30929) -.aebn.net/banners/ -# ||adultporntubemovies.com/images/banners/ (easylist.txt: 30928) -.adultporntubemovies.com/images/banners/ -# ||adultfax.com/service/vsab.php? (easylist.txt: 30923) -.adultfax.com/service/vsab\.php\? -# ||ads.videosz.com^ (easylist.txt: 30918) -.ads.videosz.com -# ||ad.iloveinterracial.com^ (easylist.txt: 30914) -.ad.iloveinterracial.com -# ||ad.duga.jp^ (easylist.txt: 30912) -.ad.duga.jp -# ||91.83.237.41^*/banners/ (easylist.txt: 30910) -.91.83.237.41/.*/banners/ -# ||79.120.183.166^*/banners/ (easylist.txt: 30907) -.79.120.183.166/.*/banners/ -# ||213.174.140.76^*/js/msn.js (easylist.txt: 30905) -.213.174.140.76/.*/js/msn\.js -# ||213.174.140.76^*/ads/ (easylist.txt: 30903) -.213.174.140.76/.*/ads/ -# ||213.174.140.76/js/showbanner4.js (easylist.txt: 30902) -.213.174.140.76/js/showbanner4\.js -# ||213.174.130.9/banners/ (easylist.txt: 30901) -.213.174.130.9/banners/ -# ||213.174.130.8/banners/ (easylist.txt: 30900) -.213.174.130.8/banners/ -# ||213.174.130.10/banners/ (easylist.txt: 30899) -.213.174.130.10/banners/ -# ||204.140.25.247/ads/ (easylist.txt: 30898) -.204.140.25.247/ads/ -# ||193.34.134.74^*/banners/ (easylist.txt: 30897) -.193.34.134.74/.*/banners/ -# ||193.34.134.18^*/banners/ (easylist.txt: 30896) -.193.34.134.18/.*/banners/ -# ||wptpoker.com^$popup (easylist.txt: 30892) -.wptpoker.com -# ||weeklyprizewinner.com-net.info^$popup (easylist.txt: 30888) -.weeklyprizewinner.com-net.info -# ||usenet.nl^$popup (easylist.txt: 30884) -.usenet.nl -# ||urlcash.net/random*.php$popup (easylist.txt: 30882) -.urlcash.net/random.*\.php -# ||uploaded.net/ref/$popup (easylist.txt: 30881) -.uploaded.net/ref/ -# ||upbcd.info/vuze/$popup (easylist.txt: 30880) -.upbcd.info/vuze/ -# ||ul.to/ref/$popup (easylist.txt: 30879) -.ul.to/ref/ -# ||theseforums.com^*/?ref=$popup (easylist.txt: 30871) -.theseforums.com/.*/\?ref= -# ||stargames.com/bridge.asp?idr=$popup (easylist.txt: 30867) -.stargames.com/bridge\.asp\?idr= -# ||softingo.com/clp/$popup (easylist.txt: 30865) -.softingo.com/clp/ -# ||settlecruise.org^$popup (easylist.txt: 30863) -.settlecruise.org -# ||red-tube.com/popunder/$popup (easylist.txt: 30857) -.red-tube.com/popunder/ -# ||rackcorp.com^$popup (easylist.txt: 30855) -.rackcorp.com -# ||pub.ezanga.com/rv2.php?$popup (easylist.txt: 30854) -.pub.ezanga.com/rv2\.php\? -# ||priceinfo.comuv.com^$popup (easylist.txt: 30851) -.priceinfo.comuv.com -# ||platinumdown.com^$popup (easylist.txt: 30849) -.platinumdown.com -# ||planet49.com/cgi-bin/wingame.pl?$popup (easylist.txt: 30848) -.planet49.com/cgi-bin/wingame\.pl\? -# ||noowmedia.com^$popup (easylist.txt: 30843) -.noowmedia.com -# ||mypromocenter.com^$popup (easylist.txt: 30842) -.mypromocenter.com -# ||makemoneyonline.2yu.in^$popup (easylist.txt: 30834) -.makemoneyonline.2yu.in -# ||lumosity.com/landing_pages/$popup (easylist.txt: 30832) -.lumosity.com/landing_pages/ -# ||lovepoker.de^*/?pid=$popup (easylist.txt: 30826) -.lovepoker.de/.*/\?pid= -# ||liutilities.com^*/affiliate/$popup (easylist.txt: 30824) -.liutilities.com/.*/affiliate/ -# ||hyperlinksecure.com/go/$popup (easylist.txt: 30821) -.hyperlinksecure.com/go/ -# ||hyperlinksecure.com/back?token=$popup (easylist.txt: 30820) -.hyperlinksecure.com/back\?token= -# ||hdvidcodecs.com^$popup (easylist.txt: 30815) -.hdvidcodecs.com -# ||hdvid-codec.com^$popup (easylist.txt: 30814) -.hdvid-codec.com -# ||fwmrm.net/ad/$popup (easylist.txt: 30811) -.fwmrm.net/ad/ -# ||fsoft4down.com^$popup (easylist.txt: 30808) -.fsoft4down.com -# ||free-rewards.com-s.tv^$popup (easylist.txt: 30807) -.free-rewards.com-s.tv -# ||flashplayer-updates.com^$popup (easylist.txt: 30805) -.flashplayer-updates.com -# ||firstload.de^$popup (easylist.txt: 30804) -.firstload.de -# ||firstload.com^$popup (easylist.txt: 30803) -.firstload.com -# ||fastclick.net^$popup (easylist.txt: 30802) -.fastclick.net -# ||evanetwork.com^$popup (easylist.txt: 30800) -.evanetwork.com -# ||eurogrand.com^$popup (easylist.txt: 30798) -.eurogrand.com -# ||eroticmix.blogspot.$popup (easylist.txt: 30795) -.eroticmix.blogspot.*. -# ||d1110e4.se^$popup (easylist.txt: 30793) -.d1110e4.se -# ||coolguruji.com/l.php?$popup (easylist.txt: 30791) -.coolguruji.com/l\.php\? -# ||chatulfetelor.net/$popup (easylist.txt: 30787) -.chatulfetelor.net -# ||chatlivejasmin.net^$popup (easylist.txt: 30786) -.chatlivejasmin.net -# ||casinoadviser.net^$popup (easylist.txt: 30783) -.casinoadviser.net -# ||bet365.com^*affiliate=$popup (easylist.txt: 30778) -.bet365.com/.*affiliate= -# ||adrotator.se^$popup (easylist.txt: 30769) -.adrotator.se -# ||5.39.67.191/promo.php?$popup (easylist.txt: 30765) -.5.39.67.191/promo\.php\? -# ||4utro.ru^$popup (easylist.txt: 30764) -.4utro.ru -# ||d1nmk7iw7hajjn.cloudfront.net^ (easylist.txt: 30762) -.d1nmk7iw7hajjn.cloudfront.net -# ||iadc.qwapi.com^ (easylist.txt: 30759) -.iadc.qwapi.com -# ||zip2save.com/widget.php? (easylist.txt: 30755) -.zip2save.com/widget\.php\? -# ||ziffstatic.com/jst/zdvtools. (easylist.txt: 30754) -.ziffstatic.com/jst/zdvtools\. -# ||ziffstatic.com/jst/zdsticky. (easylist.txt: 30753) -.ziffstatic.com/jst/zdsticky\. -# ||ziffprod.com/CSE/BestPrice? (easylist.txt: 30752) -.ziffprod.com/CSE/BestPrice\? -# ||ziffdavisenterprise.com/contextclicks/ (easylist.txt: 30751) -.ziffdavisenterprise.com/contextclicks/ -# ||zeusfiles.com/promo/ (easylist.txt: 30750) -.zeusfiles.com/promo/ -# ||zeus.qj.net^ (easylist.txt: 30749) -.zeus.qj.net -# ||zapads.zapak.com^ (easylist.txt: 30745) -.zapads.zapak.com -# ||you-cubez.com/images/banners/ (easylist.txt: 30743) -.you-cubez.com/images/banners/ -# ||ynet.co.il^*/ynetbanneradmin/ (easylist.txt: 30740) -.ynet.co.il/.*/ynetbanneradmin/ -# ||yimg.com^*/sponsored.js (easylist.txt: 30738) -.yimg.com/.*/sponsored\.js -# ||yimg.com^*/quickplay_maxwellhouse.png (easylist.txt: 30737) -.yimg.com/.*/quickplay_maxwellhouse\.png -# ||yimg.com/gs/apex/mediastore/ (easylist.txt: 30735) -.yimg.com/gs/apex/mediastore/ -# ||yeas.yahoo.co.jp^ (easylist.txt: 30733) -.yeas.yahoo.co.jp -# ||yb.torchbrowser.com^ (easylist.txt: 30732) -.yb.torchbrowser.com -# ||yahoo.net^*/ads/ (easylist.txt: 30731) -.yahoo.net/.*/ads/ -# ||yachting.org^*/banner/ (easylist.txt: 30730) -.yachting.org/.*/banner/ -# ||xproxyhost.com/images/banners/ (easylist.txt: 30729) -.xproxyhost.com/images/banners/ -# ||xingcloud.com^*/uid_ (easylist.txt: 30727) -.xingcloud.com/.*/uid_ -# ||xigen.co.uk^*/Affiliate/ (easylist.txt: 30726) -.xigen.co.uk/.*/Affiliate/ -# ||x3cms.com/ads/ (easylist.txt: 30723) -.x3cms.com/ads/ -# ||wupload.com/images/banners/ (easylist.txt: 30721) -.wupload.com/images/banners/ -# ||wtprn.com/sponsors/ (easylist.txt: 30720) -.wtprn.com/sponsors/ -# ||wtpn.twenga.de^ (easylist.txt: 30718) -.wtpn.twenga.de -# ||wtpn.twenga.co.uk^ (easylist.txt: 30717) -.wtpn.twenga.co.uk -# ||worldofjudaica.com/static/show/external/ (easylist.txt: 30712) -.worldofjudaica.com/static/show/external/ -# ||worldofjudaica.com/products/dynamic_banner/ (easylist.txt: 30711) -.worldofjudaica.com/products/dynamic_banner/ -# ||worldnow.com/images/incoming/RTJ/rtj201303fall.jpg (easylist.txt: 30710) -.worldnow.com/images/incoming/RTJ/rtj201303fall\.jpg -# ||worldcdn.net^*/banners/ (easylist.txt: 30709) -.worldcdn.net/.*/banners/ -# ||wonderlabs.com/affiliate_pro/banners/ (easylist.txt: 30708) -.wonderlabs.com/affiliate_pro/banners/ -# ||wm.co.za/wmjs.php? (easylist.txt: 30707) -.wm.co.za/wmjs\.php\? -# ||wm.co.za/24com.php? (easylist.txt: 30706) -.wm.co.za/24com\.php\? -# ||winsms.co.za/banner/ (easylist.txt: 30704) -.winsms.co.za/banner/ -# ||winpalace.com/?affid= (easylist.txt: 30703) -.winpalace.com/\?affid= -# ||wildamaginations.com/mdm/banner/ (easylist.txt: 30702) -.wildamaginations.com/mdm/banner/ -# ||widgets.realestate.com.au^ (easylist.txt: 30700) -.widgets.realestate.com.au -# ||widget.solarquotes.com.au^ (easylist.txt: 30691) -.widget.solarquotes.com.au -# ||widget.shopstyle.com.au^ (easylist.txt: 30689) -.widget.shopstyle.com.au -# ||widget.searchschoolsnetwork.com^ (easylist.txt: 30688) -.widget.searchschoolsnetwork.com -# ||widget.raaze.com^ (easylist.txt: 30686) -.widget.raaze.com -# ||widget.kelkoo.com^ (easylist.txt: 30685) -.widget.kelkoo.com -# ||widget.crowdignite.com^ (easylist.txt: 30682) -.widget.crowdignite.com -# ||widgeo.net/popup.js (easylist.txt: 30680) -.widgeo.net/popup\.js -# ||whistleout.s3.amazonaws.com^ (easylist.txt: 30679) -.whistleout.s3.amazonaws.com -# ||website.ws^*/banners/ (easylist.txt: 30678) -.website.ws/.*/banners/ -# ||webmasterrock.com/cpxt_pab (easylist.txt: 30677) -.webmasterrock.com/cpxt_pab -# ||web-jp.ad-v.jp^ (easylist.txt: 30674) -.web-jp.ad-v.jp -# ||weatherthreat.com^*/app_add.png (easylist.txt: 30673) -.weatherthreat.com/.*/app_add\.png -# ||watch-free-movie-online.net/adds- (easylist.txt: 30668) -.watch-free-movie-online.net/adds- -# ||washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie.html (easylist.txt: 30667) -.washingtonpost.com/wp-srv/wapolabs/dw/readomniturecookie\.html -# ||warrantydirect.co.uk/widgets/ (easylist.txt: 30666) -.warrantydirect.co.uk/widgets/ -# ||warezhaven.org/warezhavenbann.jpg (easylist.txt: 30665) -.warezhaven.org/warezhavenbann\.jpg -# ||walmartimages.com^*/HealthPartner_ (easylist.txt: 30664) -.walmartimages.com/.*/HealthPartner_ -# ||wagital.com/Wagital-Ads.html (easylist.txt: 30663) -.wagital.com/Wagital-Ads\.html -# ||vxite.com/banner/ (easylist.txt: 30661) -.vxite.com/banner/ -# ||vrvm.com/t? (easylist.txt: 30659) -.vrvm.com/t\? -# ||vpnxs.nl/images/vpnxs_banner (easylist.txt: 30658) -.vpnxs.nl/images/vpnxs_banner -# ||vpn4all.com^*/banner/ (easylist.txt: 30656) -.vpn4all.com/.*/banner/ -# ||vittgam.net/images/b/ (easylist.txt: 30654) -.vittgam.net/images/b/ -# ||virtuaguyhd.com/ref.php? (easylist.txt: 30650) -.virtuaguyhd.com/ref\.php\? -# ||virtuagirl.com/ref.php? (easylist.txt: 30649) -.virtuagirl.com/ref\.php\? -# ||vidyoda.com/fambaa/chnls/ADSgmts.ashx? (easylist.txt: 30643) -.vidyoda.com/fambaa/chnls/ADSgmts\.ashx\? -# ||vidible.tv/prod/tags/ (easylist.txt: 30642) -.vidible.tv/prod/tags/ -# ||vidible.tv/placement/vast/ (easylist.txt: 30641) -.vidible.tv/placement/vast/ -# ||videoweed.es/js/aff.js (easylist.txt: 30639) -.videoweed.es/js/aff\.js -# ||viagogo.co.uk/feeds/widget.ashx? (easylist.txt: 30638) -.viagogo.co.uk/feeds/widget\.ashx\? -# ||veospot.com^*.html (easylist.txt: 30637) -.veospot.com/.*\.html -# ||vendor1.fitschigogerl.com^ (easylist.txt: 30636) -.vendor1.fitschigogerl.com -# ||vcnewsdaily.com/images/vcnews_right_banner.gif (easylist.txt: 30634) -.vcnewsdaily.com/images/vcnews_right_banner\.gif -# ||vast.videe.tv/vast-proxy/ (easylist.txt: 30633) -.vast.videe.tv/vast-proxy/ -# ||ussearch.com/preview/banner/ (easylist.txt: 30631) -.ussearch.com/preview/banner/ -# ||usfine.com/images/sty_img/usfine.gif (easylist.txt: 30630) -.usfine.com/images/sty_img/usfine\.gif -# ||usersfiles.com/images/72890UF.png (easylist.txt: 30629) -.usersfiles.com/images/72890UF\.png -# ||usenetbucket.com^*-banner/ (easylist.txt: 30628) -.usenetbucket.com/.*-banner/ -# ||urtig.net/scripts/js3caf.js (easylist.txt: 30626) -.urtig.net/scripts/js3caf\.js -# ||uploadstation.com/images/banners/ (easylist.txt: 30625) -.uploadstation.com/images/banners/ -# ||uploaded.to/js/layer.js (easylist.txt: 30624) -.uploaded.to/js/layer\.js -# ||upload2.com/upload2.html (easylist.txt: 30621) -.upload2.com/upload2\.html -# ||united-domains.de^*/parking/ (easylist.txt: 30618) -.united-domains.de/.*/parking/ -# ||united-domains.de/parking/ (easylist.txt: 30617) -.united-domains.de/parking/ -# ||uniblue.com^*/affiliates/ (easylist.txt: 30616) -.uniblue.com/.*/affiliates/ -# ||ultimatewebtraffic.info/images/fbautocash (easylist.txt: 30615) -.ultimatewebtraffic.info/images/fbautocash -# ||ukrd.com/images/icons/itunes.png (easylist.txt: 30614) -.ukrd.com/images/icons/itunes\.png -# ||ukrd.com/images/icons/amazon.png (easylist.txt: 30613) -.ukrd.com/images/icons/amazon\.png -# ||ukrd.com/image/*-160x160.png (easylist.txt: 30612) -.ukrd.com/image/.*-160x160\.png -# ||ukrd.com/image/*-160x133.jpg (easylist.txt: 30611) -.ukrd.com/image/.*-160x133\.jpg -# ||ukcast.tv/adds/ (easylist.txt: 30610) -.ukcast.tv/adds/ -# ||u-loader.com/image/hotspot_ (easylist.txt: 30608) -.u-loader.com/image/hotspot_ -# ||twivert.com/external/banner234x60. (easylist.txt: 30607) -.twivert.com/external/banner234x60\. -# ||twinplan.com^ (easylist.txt: 30606) -.twinplan.com -# ||turner.com^*/promos/ (easylist.txt: 30605) -.turner.com/.*/promos/ -# ||turbotrafficsystem.com^*/banners/ (easylist.txt: 30604) -.turbotrafficsystem.com/.*/banners/ -# ||tritondigital.com/ltflash.php? (easylist.txt: 30598) -.tritondigital.com/ltflash\.php\? -# ||tritondigital.com/lt?sid*&hasads= (easylist.txt: 30597) -.tritondigital.com/lt\?sid.*&hasads= -# ||tribwgnam.files.wordpress.com^*reskin2. (easylist.txt: 30595) -.tribwgnam.files.wordpress.com/.*reskin2\. -# ||tribktla.files.wordpress.com/*-639x125-sponsorship.jpg? (easylist.txt: 30594) -.tribktla.files.wordpress.com/.*-639x125-sponsorship\.jpg\? -# ||trialfunder.com/banner/ (easylist.txt: 30592) -.trialfunder.com/banner/ -# ||trhnt.com/sx.tr.js (easylist.txt: 30591) -.trhnt.com/sx\.tr\.js -# ||tremormedia.com^*_preroll_ (easylist.txt: 30590) -.tremormedia.com/.*_preroll_ -# ||tremormedia.com^*/tpacudeoplugin46.swf (easylist.txt: 30589) -.tremormedia.com/.*/tpacudeoplugin46\.swf -# ||tremormedia.com/embed/js/*_ads.js (easylist.txt: 30588) -.tremormedia.com/embed/js/.*_ads\.js -# ||treatme.co.nz/Affiliates/ (easylist.txt: 30587) -.treatme.co.nz/Affiliates/ -# ||tradeboss.com/1/banners/ (easylist.txt: 30584) -.tradeboss.com/1/banners/ -# ||track.bcvcmedia.com^ (easylist.txt: 30583) -.track.bcvcmedia.com -# ||toysrus.com/graphics/promo/ (easylist.txt: 30581) -.toysrus.com/graphics/promo/ -# ||townsquareblogs.com^*=sponsor& (easylist.txt: 30580) -.townsquareblogs.com/.*=sponsor& -# ||townnews.com^*/upickem-deals.js? (easylist.txt: 30579) -.townnews.com/.*/upickem-deals\.js\? -# ||townnews.com^*/dealwidget.css? (easylist.txt: 30578) -.townnews.com/.*/dealwidget\.css\? -# ||torguard.net/images/aff/ (easylist.txt: 30576) -.torguard.net/images/aff/ -# ||toptenreviews.com/r/c/ (easylist.txt: 30574) -.toptenreviews.com/r/c/ -# ||topmedia.com/external/ (easylist.txt: 30572) -.topmedia.com/external/ -# ||top5result.com/promo/ (easylist.txt: 30570) -.top5result.com/promo/ -# ||tonefuse.s3.amazonaws.com/clientjs/ (easylist.txt: 30569) -.tonefuse.s3.amazonaws.com/clientjs/ -# ||tmz.vo.llnwd.net^*_rightrail_200x987.swf (easylist.txt: 30567) -.tmz.vo.llnwd.net/.*_rightrail_200x987\.swf -# ||tmbattle.com/images/promo_ (easylist.txt: 30566) -.tmbattle.com/images/promo_ -# ||timesinternet.in/ad/ (easylist.txt: 30561) -.timesinternet.in/ad/ -# ||tigerdirect.com^*/affiliate_ (easylist.txt: 30560) -.tigerdirect.com/.*/affiliate_ -# ||ticketmaster.com/promotionalcontent/ (easylist.txt: 30557) -.ticketmaster.com/promotionalcontent/ -# ||ticketkai.com/banner/ (easylist.txt: 30556) -.ticketkai.com/banner/ -# ||ti.tradetracker.net^ (easylist.txt: 30555) -.ti.tradetracker.net -# ||thetechnologyblog.net^*/bp_internet/ (easylist.txt: 30553) -.thetechnologyblog.net/.*/bp_internet/ -# ||theseforums.com/visitScript/ (easylist.txt: 30551) -.theseforums.com/visitScript/ -# ||theseblogs.com/visitScript/ (easylist.txt: 30550) -.theseblogs.com/visitScript/ -# ||thereadystore.com/affiliate/ (easylist.txt: 30549) -.thereadystore.com/affiliate/ -# ||themis-media.com^*/sponsorships/ (easylist.txt: 30548) -.themis-media.com/.*/sponsorships/ -# ||themes420.com/bnrsbtns/ (easylist.txt: 30546) -.themes420.com/bnrsbtns/ -# ||thatfreething.com/images/banners/ (easylist.txt: 30543) -.thatfreething.com/images/banners/ -# ||thaiforlove.com/userfiles/affb- (easylist.txt: 30542) -.thaiforlove.com/userfiles/affb- -# ||textlinks.com/images/banners/ (easylist.txt: 30541) -.textlinks.com/images/banners/ -# ||tedswoodworking.com/images/banners/ (easylist.txt: 30540) -.tedswoodworking.com/images/banners/ -# ||tcmwebcorp.com/dtm/tc_global_dtm_delivery.js (easylist.txt: 30537) -.tcmwebcorp.com/dtm/tc_global_dtm_delivery\.js -# ||tap.more-results.net^ (easylist.txt: 30536) -.tap.more-results.net -# ||tankionline.com/tankiref.swf (easylist.txt: 30535) -.tankionline.com/tankiref\.swf -# ||talkfusion.com^*/banners/ (easylist.txt: 30534) -.talkfusion.com/.*/banners/ -# ||take2.co.za/misc/bannerscript.php? (easylist.txt: 30532) -.take2.co.za/misc/bannerscript\.php\? -# ||syndication1.viraladnetwork.net^ (easylist.txt: 30530) -.syndication1.viraladnetwork.net -# ||syndication.visualthesaurus.com/std/vtad.js (easylist.txt: 30529) -.syndication.visualthesaurus.com/std/vtad\.js -# ||syndication.jsadapi.com^ (easylist.txt: 30528) -.syndication.jsadapi.com -# ||swimg.net^*/banners/ (easylist.txt: 30526) -.swimg.net/.*/banners/ -# ||sweed.to/affiliates/ (easylist.txt: 30523) -.sweed.to/affiliates/ -# ||survivaltop50.com/wp-content/uploads/*/Survival215x150Link.png (easylist.txt: 30519) -.survivaltop50.com/wp-content/uploads/.*/Survival215x150Link\.png -# ||survey.g.doubleclick.net^ (easylist.txt: 30516) -.survey.g.doubleclick.net -# ||surf100sites.com/images/banner_ (easylist.txt: 30515) -.surf100sites.com/images/banner_ -# ||supersport.com/content/Sponsors (easylist.txt: 30513) -.supersport.com/content/Sponsors -# ||supersport.com/content/2014_Sponsor (easylist.txt: 30512) -.supersport.com/content/2014_Sponsor -# ||supersport.co.za^*180x254 (easylist.txt: 30511) -.supersport.co.za/.*180x254 -# ||subliminalmp3s.com^*/banners/ (easylist.txt: 30509) -.subliminalmp3s.com/.*/banners/ -# ||stuff-nzwhistleout.s3.amazonaws.com^ (easylist.txt: 30507) -.stuff-nzwhistleout.s3.amazonaws.com -# ||structuredchannel.com/sw/swchannel/images/MarketingAssets/*/BannerAd (easylist.txt: 30506) -.structuredchannel.com/sw/swchannel/images/MarketingAssets/.*/BannerAd -# ||streamtheworld.com/ondemand/creative? (easylist.txt: 30504) -.streamtheworld.com/ondemand/creative\? -# ||storage.to/affiliate/ (easylist.txt: 30502) -.storage.to/affiliate/ -# ||stats.sitesuite.org^ (easylist.txt: 30501) -.stats.sitesuite.org -# ||stats.hosting24.com^ (easylist.txt: 30500) -.stats.hosting24.com -# ||staticworld.net/images/*_skin_ (easylist.txt: 30499) -.staticworld.net/images/.*_skin_ -# ||static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2.jpg (easylist.txt: 30498) -.static.tumblr.com/dhqhfum/WgAn39721/cfh_header_banner_v2\.jpg -# ||static.multiplayuk.com/images/w/w- (easylist.txt: 30496) -.static.multiplayuk.com/images/w/w- -# ||ssshoesss.ro/banners/ (easylist.txt: 30479) -.ssshoesss.ro/banners/ -# ||srwww1.com^*/affiliate/ (easylist.txt: 30477) -.srwww1.com/.*/affiliate/ -# ||squarespace.evyy.net^ (easylist.txt: 30474) -.squarespace.evyy.net -# ||sportsdigitalcontent.com/betting/ (easylist.txt: 30472) -.sportsdigitalcontent.com/betting/ -# ||sportingbet.com.au/sbacontent/puntersparadise.html (easylist.txt: 30470) -.sportingbet.com.au/sbacontent/puntersparadise\.html -# ||sponsorandwin.com/images/banner- (easylist.txt: 30469) -.sponsorandwin.com/images/banner- -# ||spilcdn.com/vda/vendor/flowplayer/ova.swf (easylist.txt: 30467) -.spilcdn.com/vda/vendor/flowplayer/ova\.swf -# ||spilcdn.com/vda/css/sgadfamily2.css (easylist.txt: 30466) -.spilcdn.com/vda/css/sgadfamily2\.css -# ||spilcdn.com/vda/css/sgadfamily.css (easylist.txt: 30465) -.spilcdn.com/vda/css/sgadfamily\.css -# ||speedtv.com.edgesuite.net/img/static/takeovers/ (easylist.txt: 30464) -.speedtv.com.edgesuite.net/img/static/takeovers/ -# ||speedppc.com^*/banners/ (easylist.txt: 30463) -.speedppc.com/.*/banners/ -# ||speedbit.com^*-banner1- (easylist.txt: 30462) -.speedbit.com/.*-banner1- -# ||softneo.com/popup.js (easylist.txt: 30461) -.softneo.com/popup\.js -# ||socialorganicleads.com/interstitial/ (easylist.txt: 30460) -.socialorganicleads.com/interstitial/ -# ||snacktools.net/bannersnack/ (easylist.txt: 30455) -.snacktools.net/bannersnack/ -# ||smilepk.com/bnrsbtns/ (easylist.txt: 30454) -.smilepk.com/bnrsbtns/ -# ||smart.styria-digital.com^ (easylist.txt: 30451) -.smart.styria-digital.com -# ||slot.union.ucweb.com^ (easylist.txt: 30449) -.slot.union.ucweb.com -# ||sitescout-video-cdn.edgesuite.net^ (easylist.txt: 30446) -.sitescout-video-cdn.edgesuite.net -# ||sitegrip.com^*/swagbucks- (easylist.txt: 30445) -.sitegrip.com/.*/swagbucks- -# ||site5.com/creative/*/234x60.gif (easylist.txt: 30443) -.site5.com/creative/.*/234x60\.gif -# ||singlemuslim.com/affiliates/ (easylist.txt: 30439) -.singlemuslim.com/affiliates/ -# ||simplifydigital.co.uk^*/widget_premium_bb.htm (easylist.txt: 30436) -.simplifydigital.co.uk/.*/widget_premium_bb\.htm -# ||sidekickunlock.net/banner/ (easylist.txt: 30435) -.sidekickunlock.net/banner/ -# ||shragle.com^*?ref= (easylist.txt: 30434) -.shragle.com/.*\?ref= -# ||shows-tv.net/codepopup.js (easylist.txt: 30433) -.shows-tv.net/codepopup\.js -# ||shorte.st^*/referral_banners/ (easylist.txt: 30432) -.shorte.st/.*/referral_banners/ -# ||shorte.st/link-converter.min.js (easylist.txt: 30431) -.shorte.st/link-converter\.min\.js -# ||shopbrazos.com/widgets/ (easylist.txt: 30428) -.shopbrazos.com/widgets/ -# ||shop4tech.com^*/banner/ (easylist.txt: 30427) -.shop4tech.com/.*/banner/ -# ||shop-top1000.com/images/ (easylist.txt: 30426) -.shop-top1000.com/images/ -# ||shariahprogram.ca/banners/ (easylist.txt: 30424) -.shariahprogram.ca/banners/ -# ||shaadi.com^*/get-html-banner.php? (easylist.txt: 30422) -.shaadi.com/.*/get-html-banner\.php\? -# ||shaadi.com^*/get-banner.php? (easylist.txt: 30421) -.shaadi.com/.*/get-banner\.php\? -# ||sfm-offshore.com/images/banners/ (easylist.txt: 30419) -.sfm-offshore.com/images/banners/ -# ||sfimg.com/SFIBanners/ (easylist.txt: 30418) -.sfimg.com/SFIBanners/ -# ||sfimg.com/images/banners/ (easylist.txt: 30417) -.sfimg.com/images/banners/ -# ||service.smscoin.com/js/sendpic.js (easylist.txt: 30413) -.service.smscoin.com/js/sendpic\.js -# ||server4.pro/images/banner.jpg (easylist.txt: 30412) -.server4.pro/images/banner\.jpg -# ||servedby.keygamesnetwork.com^ (easylist.txt: 30409) -.servedby.keygamesnetwork.com -# ||selectperformers.com/images/elements/bannercolours/ (easylist.txt: 30408) -.selectperformers.com/images/elements/bannercolours/ -# ||selectperformers.com/images/a/ (easylist.txt: 30407) -.selectperformers.com/images/a/ -# ||secureupload.eu/banners/ (easylist.txt: 30404) -.secureupload.eu/banners/ -# ||secureserver.net^*/event? (easylist.txt: 30403) -.secureserver.net/.*/event\? -# ||secretmedia.s3.amazonaws.com^ (easylist.txt: 30401) -.secretmedia.s3.amazonaws.com -# ||secondspin.com/twcontent/ (easylist.txt: 30400) -.secondspin.com/twcontent/ -# ||scoopdragon.com/images/Goodgame-Empire-MPU.jpg (easylist.txt: 30396) -.scoopdragon.com/images/Goodgame-Empire-MPU\.jpg -# ||sciremedia.tv/images/banners/ (easylist.txt: 30395) -.sciremedia.tv/images/banners/ -# ||schurzdigital.com/deals/widget/ (easylist.txt: 30393) -.schurzdigital.com/deals/widget/ -# ||schenkelklopfer.org^*pop.js (easylist.txt: 30392) -.schenkelklopfer.org/.*pop\.js -# ||salemwebnetwork.com/Stations/images/SiteWrapper/ (easylist.txt: 30389) -.salemwebnetwork.com/Stations/images/SiteWrapper/ -# ||sailthru.com^*/horizon.js (easylist.txt: 30387) -.sailthru.com/.*/horizon\.js -# ||safarinow.com/affiliate-zone/ (easylist.txt: 30386) -.safarinow.com/affiliate-zone/ -# ||s3.amazonaws.com/draftset/banners/ (easylist.txt: 30385) -.s3.amazonaws.com/draftset/banners/ -# ||s1now.com^*/takeovers/ (easylist.txt: 30384) -.s1now.com/.*/takeovers/ -# ||s-yoolk-billboard-assets.yoolk.com^ (easylist.txt: 30380) -.s-yoolk-billboard-assets.yoolk.com -# ||s-yoolk-banner-assets.yoolk.com^ (easylist.txt: 30379) -.s-yoolk-banner-assets.yoolk.com -# ||s-assets.tp-cdn.com/widgets/*/vwid/*.html? (easylist.txt: 30378) -.s-assets.tp-cdn.com/widgets/.*/vwid/.*\.html\? -# ||runerich.com/images/sty_img/runerich.gif (easylist.txt: 30374) -.runerich.com/images/sty_img/runerich\.gif -# ||rotator.tradetracker.net^ (easylist.txt: 30372) -.rotator.tradetracker.net -# ||rotabanner.kulichki.net^ (easylist.txt: 30371) -.rotabanner.kulichki.net -# ||roshantv.com/adad. (easylist.txt: 30370) -.roshantv.com/adad\. -# ||roshansports.com/iframe.php (easylist.txt: 30369) -.roshansports.com/iframe\.php -# ||roadrecord.co.uk/widget.js? (easylist.txt: 30367) -.roadrecord.co.uk/widget\.js\? -# ||revealads.appspot.com^ (easylist.txt: 30362) -.revealads.appspot.com -# ||resources.heavenmedia.net/selection.php? (easylist.txt: 30361) -.resources.heavenmedia.net/selection\.php\? -# ||res3.feedsportal.com^ (easylist.txt: 30360) -.res3.feedsportal.com -# ||rehost.to/?ref= (easylist.txt: 30357) -.rehost.to/\?ref= -# ||regnow.com/vendor/ (easylist.txt: 30356) -.regnow.com/vendor/ -# ||realwritingjobs.com^*/banners/ (easylist.txt: 30350) -.realwritingjobs.com/.*/banners/ -# ||ratesupermarket.ca/widgets/ (easylist.txt: 30345) -.ratesupermarket.ca/widgets/ -# ||rapidjazz.com/banner_rotation/ (easylist.txt: 30344) -.rapidjazz.com/banner_rotation/ -# ||rapidgator.net/images/pics/*_300%D1%85250_ (easylist.txt: 30343) -.rapidgator.net/images/pics/.*_300%D1%85250_ -# ||radley.co.uk^*/Affiliate/ (easylist.txt: 30342) -.radley.co.uk/.*/Affiliate/ -# ||radiotown.com/splash/images/*_960x600_ (easylist.txt: 30341) -.radiotown.com/splash/images/.*_960x600_ -# ||radioshack.com^*/promo/ (easylist.txt: 30340) -.radioshack.com/.*/promo/ -# ||radioreference.com/sm/300x75_v3.jpg (easylist.txt: 30339) -.radioreference.com/sm/300x75_v3\.jpg -# ||rack.bauermedia.co.uk^ (easylist.txt: 30333) -.rack.bauermedia.co.uk -# ||racebets.com/media.php? (easylist.txt: 30332) -.racebets.com/media\.php\? -# ||quirk.biz/webtracking/ (easylist.txt: 30331) -.quirk.biz/webtracking/ -# ||qualoo.net/now/interstitial/ (easylist.txt: 30329) -.qualoo.net/now/interstitial/ -# ||purevpn.com/affiliates/ (easylist.txt: 30327) -.purevpn.com/affiliates/ -# ||puntersparadise.com.au/banners/ (easylist.txt: 30326) -.puntersparadise.com.au/banners/ -# ||pubs.hiddennetwork.com^ (easylist.txt: 30325) -.pubs.hiddennetwork.com -# ||pub.betclick.com^ (easylist.txt: 30321) -.pub.betclick.com -# ||proxysolutions.net/affiliates/ (easylist.txt: 30319) -.proxysolutions.net/affiliates/ -# ||proxyroll.com/proxybanner.php (easylist.txt: 30318) -.proxyroll.com/proxybanner\.php -# ||proxynoid.com/images/referrals/ (easylist.txt: 30317) -.proxynoid.com/images/referrals/ -# ||proxy.org/blasts.gif (easylist.txt: 30316) -.proxy.org/blasts\.gif -# ||promotions.iasbet.com^ (easylist.txt: 30313) -.promotions.iasbet.com -# ||promote.pair.com^ (easylist.txt: 30312) -.promote.pair.com -# ||promos.fling.com^ (easylist.txt: 30311) -.promos.fling.com -# ||promo.musicradio.com^ (easylist.txt: 30310) -.promo.musicradio.com -# ||pro-gmedia.com^*/skins/ (easylist.txt: 30308) -.pro-gmedia.com/.*/skins/ -# ||privatewifi.com/swf/banners/ (easylist.txt: 30306) -.privatewifi.com/swf/banners/ -# ||print2webcorp.com/widgetcontent/ (easylist.txt: 30305) -.print2webcorp.com/widgetcontent/ -# ||primeloopstracking.com/affil/ (easylist.txt: 30304) -.primeloopstracking.com/affil/ -# ||priceinfo.comuv.com^ (easylist.txt: 30303) -.priceinfo.comuv.com -# ||ppc-coach.com/jamaffiliates/ (easylist.txt: 30295) -.ppc-coach.com/jamaffiliates/ -# ||pornturbo.com/tmarket.php (easylist.txt: 30292) -.pornturbo.com/tmarket\.php -# ||popeoftheplayers.eu/ad (easylist.txt: 30289) -.popeoftheplayers.eu/ad -# ||pokerstars.com/euro_bnrs/ (easylist.txt: 30288) -.pokerstars.com/euro_bnrs/ -# ||pokersavvy.com^*/banners/ (easylist.txt: 30286) -.pokersavvy.com/.*/banners/ -# ||pokerjunkie.com/rss/ (easylist.txt: 30284) -.pokerjunkie.com/rss/ -# ||plexidigest.com/plexidigest-300x300.jpg (easylist.txt: 30280) -.plexidigest.com/plexidigest-300x300\.jpg -# ||playfooty.tv/jojo.html (easylist.txt: 30279) -.playfooty.tv/jojo\.html -# ||picoasis.net/3xlayer.htm (easylist.txt: 30274) -.picoasis.net/3xlayer\.htm -# ||pic.pbsrc.com/hpto/ (easylist.txt: 30273) -.pic.pbsrc.com/hpto/ -# ||pianoteq.com/images/banners/ (easylist.txt: 30272) -.pianoteq.com/images/banners/ -# ||pianobuyer.com/pianoworld/ (easylist.txt: 30271) -.pianobuyer.com/pianoworld/ -# ||phonephotographytricks.com/images/banners/ (easylist.txt: 30270) -.phonephotographytricks.com/images/banners/ -# ||pearlriverusa.com/images/banner/ (easylist.txt: 30265) -.pearlriverusa.com/images/banner/ -# ||pcmall.co.za/affiliates/ (easylist.txt: 30263) -.pcmall.co.za/affiliates/ -# ||payza.com/images/banners/ (easylist.txt: 30261) -.payza.com/images/banners/ -# ||paytel.co.za/code/ref (easylist.txt: 30260) -.paytel.co.za/code/ref -# ||partners.xpertmarket.com^ (easylist.txt: 30259) -.partners.xpertmarket.com -# ||partners.vouchedfor.co.uk^ (easylist.txt: 30258) -.partners.vouchedfor.co.uk -# ||partners.sportingbet.com.au^ (easylist.txt: 30257) -.partners.sportingbet.com.au -# ||partners.rochen.com^ (easylist.txt: 30256) -.partners.rochen.com -# ||partners.optiontide.com^ (easylist.txt: 30255) -.partners.optiontide.com -# ||partners.fshealth.com^ (easylist.txt: 30254) -.partners.fshealth.com -# ||partners.dogtime.com/network/ (easylist.txt: 30253) -.partners.dogtime.com/network/ -# ||partnerads1.ysm.yahoo.com^ (easylist.txt: 30251) -.partnerads1.ysm.yahoo.com -# ||partnerads.ysm.yahoo.com^ (easylist.txt: 30250) -.partnerads.ysm.yahoo.com -# ||partner.premiumdomains.com^ (easylist.txt: 30249) -.partner.premiumdomains.com -# ||partner.catchy.com^ (easylist.txt: 30247) -.partner.catchy.com -# ||partner.bargaindomains.com^ (easylist.txt: 30246) -.partner.bargaindomains.com -# ||paidinvite.com/promo/ (easylist.txt: 30243) -.paidinvite.com/promo/ -# ||oxygenboutique.com/Linkshare/ (easylist.txt: 30238) -.oxygenboutique.com/Linkshare/ -# ||ox-i.cordillera.tv^ (easylist.txt: 30237) -.ox-i.cordillera.tv -# ||ovpn.to/ovpn.to/banner/ (easylist.txt: 30236) -.ovpn.to/ovpn\.to/banner/ -# ||overseasradio.com/affbanner.php? (easylist.txt: 30235) -.overseasradio.com/affbanner\.php\? -# ||outdoorhub.com/js/_bookends.min.js (easylist.txt: 30234) -.outdoorhub.com/js/_bookends\.min\.js -# ||osobnosti.cz/images/casharena_ (easylist.txt: 30233) -.osobnosti.cz/images/casharena_ -# ||oriongadgets.com^*/banners/ (easylist.txt: 30232) -.oriongadgets.com/.*/banners/ -# ||origin.getprice.com.au/widgetnewssmall.aspx (easylist.txt: 30231) -.origin.getprice.com.au/widgetnewssmall\.aspx -# ||origin.getprice.com.au/WidgetNews.aspx (easylist.txt: 30230) -.origin.getprice.com.au/WidgetNews\.aspx -# ||organicprospects.com^*/banners/ (easylist.txt: 30229) -.organicprospects.com/.*/banners/ -# ||optimus-pm.com^*_300-250.jpg (easylist.txt: 30228) -.optimus-pm.com/.*_300-250\.jpg -# ||oovoo.com^*/banners/ (easylist.txt: 30227) -.oovoo.com/.*/banners/ -# ||onecache.com/banner_ (easylist.txt: 30225) -.onecache.com/banner_ -# ||on.maxspeedcdn.com^ (easylist.txt: 30224) -.on.maxspeedcdn.com -# ||oilofasia.com/images/banners/ (easylist.txt: 30221) -.oilofasia.com/images/banners/ -# ||odin.goo.mx^ (easylist.txt: 30217) -.odin.goo.mx -# ||ocp.cbs.com/pacific/request.jsp? (easylist.txt: 30216) -.ocp.cbs.com/pacific/request\.jsp\? -# ||oclasrv.comindex-2.htmlapu.php^ (easylist.txt: 30215) -.oclasrv.comindex-2.htmlapu.php -# ||obox-design.com/affiliate-banners/ (easylist.txt: 30214) -.obox-design.com/affiliate-banners/ -# ||oasap.com/images/affiliate/ (easylist.txt: 30213) -.oasap.com/images/affiliate/ -# ||nzpages.co.nz^*/banners/ (easylist.txt: 30211) -.nzpages.co.nz/.*/banners/ -# ||nwadealpiggy.com/widgets/ (easylist.txt: 30210) -.nwadealpiggy.com/widgets/ -# ||ntnd.net^*/store-buttons/ (easylist.txt: 30207) -.ntnd.net/.*/store-buttons/ -# ||nster.com/tpl/this/js/popnster.js (easylist.txt: 30206) -.nster.com/tpl/this/js/popnster\.js -# ||nocookie.net^*/wikiasearchads.js (easylist.txt: 30204) -.nocookie.net/.*/wikiasearchads\.js -# ||nimblecommerce.com/widget.action? (easylist.txt: 30201) -.nimblecommerce.com/widget\.action\? -# ||network.business.com^ (easylist.txt: 30196) -.network.business.com -# ||network.aufeminin.com^ (easylist.txt: 30195) -.network.aufeminin.com -# ||nettvplus.com/images/banner_ (easylist.txt: 30194) -.nettvplus.com/images/banner_ -# ||netdigix.com/google_banners/ (easylist.txt: 30190) -.netdigix.com/google_banners/ -# ||nesgamezone.com/syndicate? (easylist.txt: 30189) -.nesgamezone.com/syndicate\? -# ||neogames-tech.com/resources/genericbanners/ (easylist.txt: 30188) -.neogames-tech.com/resources/genericbanners/ -# ||nanoinvestgroup.com/images/banner*.gif (easylist.txt: 30186) -.nanoinvestgroup.com/images/banner.*\.gif -# ||nanobrokers.com/img/banner_ (easylist.txt: 30185) -.nanobrokers.com/img/banner_ -# ||n.nu/banner.js (easylist.txt: 30182) -.n.nu/banner\.js -# ||myusenet.net/promo.cgi? (easylist.txt: 30179) -.myusenet.net/promo\.cgi\? -# ||myhpf.co.uk/banners/ (easylist.txt: 30175) -.myhpf.co.uk/banners/ -# ||myfreeshares.com/120x60b.gif (easylist.txt: 30174) -.myfreeshares.com/120x60b\.gif -# ||multivizyon.tv^*/flysatbanner.swf (easylist.txt: 30162) -.multivizyon.tv/.*/flysatbanner\.swf -# ||multisitelive.com^*/banner_ (easylist.txt: 30161) -.multisitelive.com/.*/banner_ -# ||msnbcmedia.msn.com^*/sponsors/ (easylist.txt: 30158) -.msnbcmedia.msn.com/.*/sponsors/ -# ||mrc.org^*/take-over-charlotte300x250.gif (easylist.txt: 30154) -.mrc.org/.*/take-over-charlotte300x250\.gif -# ||mrc.org^*/Collusion_Banner300x250.jpg (easylist.txt: 30153) -.mrc.org/.*/Collusion_Banner300x250\.jpg -# ||mrc.org/sites/default/files/uploads/images/Collusion_Banner (easylist.txt: 30152) -.mrc.org/sites/default/files/uploads/images/Collusion_Banner -# ||mozo-widgets.f2.com.au^ (easylist.txt: 30150) -.mozo-widgets.f2.com.au -# ||mosso.com^*/banners/ (easylist.txt: 30149) -.mosso.com/.*/banners/ -# ||moosify.com/widgets/explorer/?partner= (easylist.txt: 30148) -.moosify.com/widgets/explorer/\?partner= -# ||moneywise.co.uk/affiliate/ (easylist.txt: 30147) -.moneywise.co.uk/affiliate/ -# ||moneycontrol.co.in^*PopUnder.js (easylist.txt: 30145) -.moneycontrol.co.in/.*PopUnder\.js -# ||mol.im/i/pix/ebay/ (easylist.txt: 30144) -.mol.im/i/pix/ebay/ -# ||mobyler.com/img/banner/ (easylist.txt: 30143) -.mobyler.com/img/banner/ -# ||mnginteractive.com^*/dartinclude.js (easylist.txt: 30141) -.mnginteractive.com/.*/dartinclude\.js -# ||mmdcash.com/mmdcash01.gif (easylist.txt: 30137) -.mmdcash.com/mmdcash01\.gif -# ||mlive.com/js/oas/ (easylist.txt: 30136) -.mlive.com/js/oas/ -# ||mkini.net/banners/ (easylist.txt: 30135) -.mkini.net/banners/ -# ||missnowmrs.com/images/banners/ (easylist.txt: 30134) -.missnowmrs.com/images/banners/ -# ||millionaires-club-international.com/banner/ (easylist.txt: 30133) -.millionaires-club-international.com/banner/ -# ||mightydeals.s3.amazonaws.com/md_adv/ (easylist.txt: 30131) -.mightydeals.s3.amazonaws.com/md_adv/ -# ||mfcdn.net/store/spotlight/ (easylist.txt: 30122) -.mfcdn.net/store/spotlight/ -# ||metroland.com/wagjag/ (easylist.txt: 30121) -.metroland.com/wagjag/ -# ||memepix.com/spark.php? (easylist.txt: 30117) -.memepix.com/spark\.php\? -# ||megalivestream.net/pub.js (easylist.txt: 30116) -.megalivestream.net/pub\.js -# ||mediaspanonline.com^*-Takeover_ (easylist.txt: 30115) -.mediaspanonline.com/.*-Takeover_ -# ||mediaspanonline.com^*-Takeover- (easylist.txt: 30114) -.mediaspanonline.com/.*-Takeover- -# ||mediaon.com/moneymoney/ (easylist.txt: 30109) -.mediaon.com/moneymoney/ -# ||media.enimgs.net/brand/files/escalatenetwork/ (easylist.txt: 30105) -.media.enimgs.net/brand/files/escalatenetwork/ -# ||media.complex.com/videos/prerolls/ (easylist.txt: 30103) -.media.complex.com/videos/prerolls/ -# ||mdpcdn.com^*/gpt/ (easylist.txt: 30101) -.mdpcdn.com/.*/gpt/ -# ||mcclatchyinteractive.com/creative/ (easylist.txt: 30100) -.mcclatchyinteractive.com/creative/ -# ||mb.zam.com^ (easylist.txt: 30098) -.mb.zam.com -# ||mb-hostservice.de/banner_ (easylist.txt: 30096) -.mb-hostservice.de/banner_ -# ||mazda.com.au/banners/ (easylist.txt: 30095) -.mazda.com.au/banners/ -# ||matchbin.com/javascripts/remote_widget.js (easylist.txt: 30092) -.matchbin.com/javascripts/remote_widget\.js -# ||marketing.888.com^ (easylist.txt: 30088) -.marketing.888.com -# ||marinejobs.gr/images/marine_adv.gif (easylist.txt: 30087) -.marinejobs.gr/images/marine_adv\.gif -# ||mahndi.com/images/banner/ (easylist.txt: 30085) -.mahndi.com/images/banner/ -# ||magniwork.com/banner/ (easylist.txt: 30084) -.magniwork.com/banner/ -# ||magicmembers.com/img/mgm-125x125 (easylist.txt: 30083) -.magicmembers.com/img/mgm-125x125 -# ||magicaffiliateplugin.com/img/mga-125x125.gif (easylist.txt: 30082) -.magicaffiliateplugin.com/img/mga-125x125\.gif -# ||mads.aol.com^ (easylist.txt: 30081) -.mads.aol.com -# ||lygo.com/d/toolbar/sponsors/ (easylist.txt: 30075) -.lygo.com/d/toolbar/sponsors/ -# ||luckyshare.net/images/banners/ (easylist.txt: 30073) -.luckyshare.net/images/banners/ -# ||luckygunner.com^*/banners/ (easylist.txt: 30072) -.luckygunner.com/.*/banners/ -# ||lucky-dating.net/banners/ (easylist.txt: 30071) -.lucky-dating.net/banners/ -# ||lucky-ace-casino.net/banners/ (easylist.txt: 30070) -.lucky-ace-casino.net/banners/ -# ||ltfm.ca/stats.php? (easylist.txt: 30069) -.ltfm.ca/stats\.php\? -# ||lp.longtailvideo.com^*/adaptv*.swf (easylist.txt: 30067) -.lp.longtailvideo.com/.*/adaptv.*\.swf -# ||longtailvideo.com^*/yume.swf (easylist.txt: 30060) -.longtailvideo.com/.*/yume\.swf -# ||longtailvideo.com^*/yume-h.swf (easylist.txt: 30059) -.longtailvideo.com/.*/yume-h\.swf -# ||longtailvideo.com*/ltas.swf (easylist.txt: 30051) -.longtailvideo.com*./(.*/)?ltas\.swf -# ||london24.com^*/mpu/ (easylist.txt: 30050) -.london24.com/.*/mpu/ -# ||localdata.eu/images/banners/ (easylist.txt: 30049) -.localdata.eu/images/banners/ -# ||llnwd.net/o28/assets/*-sponsored- (easylist.txt: 30048) -.llnwd.net/o28/assets/.*-sponsored- -# ||liveperson.com/affiliates/ (easylist.txt: 30046) -.liveperson.com/affiliates/ -# ||liutilities.com^*/affiliate/ (easylist.txt: 30044) -.liutilities.com/.*/affiliate/ -# ||literatureandlatte.com/gfx/buynowaffiliate.jpg (easylist.txt: 30042) -.literatureandlatte.com/gfx/buynowaffiliate\.jpg -# ||lionheartdms.com^*/walmart_300.jpg (easylist.txt: 30040) -.lionheartdms.com/.*/walmart_300\.jpg -# ||lijit.com/delivery/ (easylist.txt: 30036) -.lijit.com/delivery/ -# ||lijit.com/adif_px.php (easylist.txt: 30035) -.lijit.com/adif_px\.php -# ||letmewatchthis.ru/movies/linkbottom (easylist.txt: 30031) -.letmewatchthis.ru/movies/linkbottom -# ||lego.com^*/affiliate/ (easylist.txt: 30028) -.lego.com/.*/affiliate/ -# ||legaljobscentre.com/feed/jobad.aspx (easylist.txt: 30026) -.legaljobscentre.com/feed/jobad\.aspx -# ||leadsleap.com/widget/ (easylist.txt: 30025) -.leadsleap.com/widget/ -# ||leadsleap.com/images/banner_ (easylist.txt: 30024) -.leadsleap.com/images/banner_ -# ||lastlocation.com/images/banner (easylist.txt: 30021) -.lastlocation.com/images/banner -# ||ladbrokes.com^*&aff_id= (easylist.txt: 30019) -.ladbrokes.com/.*&aff_id= -# ||l.yimg.com^*&partner=*&url= (easylist.txt: 30018) -.l.yimg.com/.*&partner=.*&url= -# ||kurtgeiger.com^*/linkshare/ (easylist.txt: 30017) -.kurtgeiger.com/.*/linkshare/ -# ||krillion.com^*/productoffers.js (easylist.txt: 30016) -.krillion.com/.*/productoffers\.js -# ||kozmetikcerrahi.com/banner/ (easylist.txt: 30014) -.kozmetikcerrahi.com/banner/ -# ||knorex.asia/static-firefly/ (easylist.txt: 30012) -.knorex.asia/static-firefly/ -# ||king.com^*/banners/ (easylist.txt: 30011) -.king.com/.*/banners/ -# ||keyword-winner.com/demo/images/ (easylist.txt: 30010) -.keyword-winner.com/demo/images/ -# ||keep2share.cc/images/i/00468x0060- (easylist.txt: 30009) -.keep2share.cc/images/i/00468x0060- -# ||kallout.com^*.php?id= (easylist.txt: 30007) -.kallout.com/.*\.php\?id= -# ||kaango.com/fecustomwidgetdisplay? (easylist.txt: 30006) -.kaango.com/fecustomwidgetdisplay\? -# ||k2team.kyiv.ua^ (easylist.txt: 30005) -.k2team.kyiv.ua -# ||k.co.il/iefilter.html (easylist.txt: 30004) -.k.co.il/iefilter\.html -# ||justclicktowatch.to/jstp.js (easylist.txt: 30001) -.justclicktowatch.to/jstp\.js -# ||jubimax.com/banner_images/ (easylist.txt: 29998) -.jubimax.com/banner_images/ -# ||jsrdn.com/s/1.js (easylist.txt: 29997) -.jsrdn.com/s/1\.js -# ||jrcdev.net/promos/ (easylist.txt: 29995) -.jrcdev.net/promos/ -# ||jalbum.net/widgetapi/js/dlbutton.js? (easylist.txt: 29987) -.jalbum.net/widgetapi/js/dlbutton\.js\? -# ||iypcdn.com^*/ypbanners/ (easylist.txt: 29986) -.iypcdn.com/.*/ypbanners/ -# ||iypcdn.com^*/otherbanners/ (easylist.txt: 29985) -.iypcdn.com/.*/otherbanners/ -# ||iypcdn.com^*/bgbanners/ (easylist.txt: 29984) -.iypcdn.com/.*/bgbanners/ -# ||iwebzoo.com/banner/ (easylist.txt: 29983) -.iwebzoo.com/banner/ -# ||iselectmedia.com^*/banners/ (easylist.txt: 29982) -.iselectmedia.com/.*/banners/ -# ||intexchange.ru/Content/banners/ (easylist.txt: 29978) -.intexchange.ru/Content/banners/ -# ||integrityvpn.com/img/integrityvpn.jpg (easylist.txt: 29973) -.integrityvpn.com/img/integrityvpn\.jpg -# ||instaprofitgram.com/images/banners/ (easylist.txt: 29972) -.instaprofitgram.com/images/banners/ -# ||instantpaysites.com/banner/ (easylist.txt: 29971) -.instantpaysites.com/banner/ -# ||inskin.vo.llnwd.net^ (easylist.txt: 29970) -.inskin.vo.llnwd.net -# ||inisrael-travel.com/jpost/ (easylist.txt: 29967) -.inisrael-travel.com/jpost/ -# ||infomarine.gr^*/images/banners/ (easylist.txt: 29966) -.infomarine.gr/.*/images/banners/ -# ||infomarine.gr/images/banerr.gif (easylist.txt: 29965) -.infomarine.gr/images/banerr\.gif -# ||infochoice.com.au/Handler/WidgetV2Handler.ashx? (easylist.txt: 29964) -.infochoice.com.au/Handler/WidgetV2Handler\.ashx\? -# ||indieclick.3janecdn.com^ (easylist.txt: 29962) -.indieclick.3janecdn.com -# ||indeed.fr/ads/ (easylist.txt: 29960) -.indeed.fr/ads/ -# ||imptestrm.com/rg-main.php? (easylist.txt: 29959) -.imptestrm.com/rg-main\.php\? -# ||imgdino.com/gsmpop.js (easylist.txt: 29955) -.imgdino.com/gsmpop\.js -# ||imagetwist.com/banner/ (easylist.txt: 29949) -.imagetwist.com/banner/ -# ||images-pw.secureserver.net/images/100yearsofchevy.gif (easylist.txt: 29942) -.images-pw.secureserver.net/images/100yearsofchevy\.gif -# ||images-amazon.com/images/*/associates/widgets/ (easylist.txt: 29939) -.images-amazon.com/images/.*/associates/widgets/ -# ||ima3vpaid.appspot.com^ (easylist.txt: 29936) -.ima3vpaid.appspot.com -# ||im.ov.yahoo.co.jp^ (easylist.txt: 29935) -.im.ov.yahoo.co.jp -# ||icastcenter.com^*/itunes.jpg (easylist.txt: 29929) -.icastcenter.com/.*/itunes\.jpg -# ||icastcenter.com^*/amazon-buyfrom.gif (easylist.txt: 29928) -.icastcenter.com/.*/amazon-buyfrom\.gif -# ||ibvpn.com/img/banners/ (easylist.txt: 29927) -.ibvpn.com/img/banners/ -# ||ibsys.com/sh/sponsors/ (easylist.txt: 29926) -.ibsys.com/sh/sponsors/ -# ||ibsrv.net/sponsor_images/ (easylist.txt: 29925) -.ibsrv.net/sponsor_images/ -# ||ibsrv.net/sidetiles/125x125/ (easylist.txt: 29924) -.ibsrv.net/sidetiles/125x125/ -# ||i.lsimg.net^*/takeover/ (easylist.txt: 29923) -.i.lsimg.net/.*/takeover/ -# ||i.lsimg.net^*/sides_clickable. (easylist.txt: 29922) -.i.lsimg.net/.*/sides_clickable\. -# ||hyperscale.com/images/adh_button.jpg (easylist.txt: 29920) -.hyperscale.com/images/adh_button\.jpg -# ||hyperfbtraffic.com/images/graphicsbanners/ (easylist.txt: 29919) -.hyperfbtraffic.com/images/graphicsbanners/ -# ||hyipregulate.com/images/hyipregulatebanner.gif (easylist.txt: 29918) -.hyipregulate.com/images/hyipregulatebanner\.gif -# ||hubbardradio.com^*/my_deals.php (easylist.txt: 29916) -.hubbardradio.com/.*/my_deals\.php -# ||hubbarddeals.com^*/promo/ (easylist.txt: 29915) -.hubbarddeals.com/.*/promo/ -# ||hstpnetwork.com/zeus.php (easylist.txt: 29914) -.hstpnetwork.com/zeus\.php -# ||hstpnetwork.com/ads/ (easylist.txt: 29913) -.hstpnetwork.com/ads/ -# ||hostinger.nl/banners/ (easylist.txt: 29907) -.hostinger.nl/banners/ -# ||homad-global-configs.schneevonmorgen.com^ (easylist.txt: 29903) -.homad-global-configs.schneevonmorgen.com -# ||hm-sat.de/b.php (easylist.txt: 29902) -.hm-sat.de/b\.php -# ||hitleap.com/assets/banner.png (easylist.txt: 29901) -.hitleap.com/assets/banner\.png -# ||hitleap.com/assets/banner- (easylist.txt: 29900) -.hitleap.com/assets/banner- -# ||highepcoffer.com/images/banners/ (easylist.txt: 29899) -.highepcoffer.com/images/banners/ -# ||hide-my-ip.com/promo/ (easylist.txt: 29898) -.hide-my-ip.com/promo/ -# ||hexero.com/images/banner.gif (easylist.txt: 29897) -.hexero.com/images/banner\.gif -# ||heidiklein.com/media/banners/ (easylist.txt: 29896) -.heidiklein.com/media/banners/ -# ||haymarket.net.au/Skins/ (easylist.txt: 29893) -.haymarket.net.au/Skins/ -# ||haymarket-whistleout.s3.amazonaws.com/*_ad.html (easylist.txt: 29892) -.haymarket-whistleout.s3.amazonaws.com/.*_ad\.html -# ||handango.com/marketing/affiliate/ (easylist.txt: 29891) -.handango.com/marketing/affiliate/ -# ||halllakeland.com/banner/ (easylist.txt: 29890) -.halllakeland.com/banner/ -# ||guzzle.co.za/media/banners/ (easylist.txt: 29889) -.guzzle.co.za/media/banners/ -# ||guim.co.uk/guardian/thirdparty/tv-site/side.html (easylist.txt: 29888) -.guim.co.uk/guardian/thirdparty/tv-site/side\.html -# ||grindabuck.com/img/skyscraper.jpg (easylist.txt: 29884) -.grindabuck.com/img/skyscraper\.jpg -# ||graduateinjapan.com/affiliates/ (easylist.txt: 29882) -.graduateinjapan.com/affiliates/ -# ||graboid.com/affiliates/ (easylist.txt: 29881) -.graboid.com/affiliates/ -# ||govids.net/adss/ (easylist.txt: 29879) -.govids.net/adss/ -# ||gotraffic.net^*/sponsors/ (easylist.txt: 29878) -.gotraffic.net/.*/sponsors/ -# ||gorgonprojectinvest.com/images/banners/ (easylist.txt: 29877) -.gorgonprojectinvest.com/images/banners/ -# ||googlesyndication.com^*/domainpark.cgi? (easylist.txt: 29874) -.googlesyndication.com/.*/domainpark\.cgi\? -# ||google.com/pagead/ (easylist.txt: 29868) -.google.com/pagead/ -# ||gogousenet.com^*/promo2.cgi (easylist.txt: 29863) -.gogousenet.com/.*/promo2\.cgi -# ||gogousenet.com^*/promo.cgi (easylist.txt: 29862) -.gogousenet.com/.*/promo\.cgi -# ||goadv.com^*/ads.js (easylist.txt: 29861) -.goadv.com/.*/ads\.js -# ||gmstatic.net^*/itunesbadge.png (easylist.txt: 29860) -.gmstatic.net/.*/itunesbadge\.png -# ||gmstatic.net^*/amazonbadge.png (easylist.txt: 29859) -.gmstatic.net/.*/amazonbadge\.png -# ||globalprocash.com/banner125.gif (easylist.txt: 29858) -.globalprocash.com/banner125\.gif -# ||glam.com^*?affiliateid= (easylist.txt: 29857) -.glam.com/.*\?affiliateid= -# ||glam.com/gad/ (easylist.txt: 29856) -.glam.com/gad/ -# ||giffgaff.com/banner/ (easylist.txt: 29855) -.giffgaff.com/banner/ -# ||giantrealm.com/saj/ (easylist.txt: 29853) -.giantrealm.com/saj/ -# ||gfaf-banners.s3.amazonaws.com^ (easylist.txt: 29850) -.gfaf-banners.s3.amazonaws.com -# ||getpaidforyourtime.org/basic-rotating-banner/ (easylist.txt: 29849) -.getpaidforyourtime.org/basic-rotating-banner/ -# ||geobanner.passion.com^ (easylist.txt: 29837) -.geobanner.passion.com -# ||geobanner.friendfinder.com^ (easylist.txt: 29836) -.geobanner.friendfinder.com -# ||geo.connexionsecure.com^ (easylist.txt: 29835) -.geo.connexionsecure.com -# ||gemini.yahoo.com^*^syndication^ (easylist.txt: 29833) -.gemini.yahoo.com/.*[^\w%.-]syndication[^\w%.-] -# ||gateways.s3.amazonaws.com^ (easylist.txt: 29830) -.gateways.s3.amazonaws.com -# ||gateway.fortunelounge.com^ (easylist.txt: 29829) -.gateway.fortunelounge.com -# ||gamingjobsonline.com/images/banner/ (easylist.txt: 29828) -.gamingjobsonline.com/images/banner/ -# ||gamestop.com^*/aflbanners/ (easylist.txt: 29827) -.gamestop.com/.*/aflbanners/ -# ||gamesports.net/img/betting_campaigns/ (easylist.txt: 29826) -.gamesports.net/img/betting_campaigns/ -# ||gamersaloon.com/images/banners/ (easylist.txt: 29825) -.gamersaloon.com/images/banners/ -# ||gamer-network.net/plugins/dfp/ (easylist.txt: 29824) -.gamer-network.net/plugins/dfp/ -# ||gameorc.net/a.html (easylist.txt: 29823) -.gameorc.net/a\.html -# ||gameduell.com/res/affiliate/ (easylist.txt: 29822) -.gameduell.com/res/affiliate/ -# ||fyiwashtenaw.com/remote_widget? (easylist.txt: 29818) -.fyiwashtenaw.com/remote_widget\? -# ||fxultima.com/banner/ (easylist.txt: 29816) -.fxultima.com/banner/ -# ||fxcc.com/promo/ (easylist.txt: 29815) -.fxcc.com/promo/ -# ||futuboxhd.com/js/bc.js (easylist.txt: 29813) -.futuboxhd.com/js/bc\.js -# ||furiousteam.com^*/external_banner/ (easylist.txt: 29812) -.furiousteam.com/.*/external_banner/ -# ||funtonia.com/promo/ (easylist.txt: 29810) -.funtonia.com/promo/ -# ||ft.pnop.com^ (easylist.txt: 29807) -.ft.pnop.com -# ||frontsight.com^*/banners/ (easylist.txt: 29806) -.frontsight.com/.*/banners/ -# ||freetrafficsystem.com/fts/ban/ (easylist.txt: 29800) -.freetrafficsystem.com/fts/ban/ -# ||freecycle.org^*/sponsors/ (easylist.txt: 29799) -.freecycle.org/.*/sponsors/ -# ||free-football.tv/images/usd/ (easylist.txt: 29798) -.free-football.tv/images/usd/ -# ||freakshare.net/banner/ (easylist.txt: 29797) -.freakshare.net/banner/ -# ||freakshare.com/?ref= (easylist.txt: 29795) -.freakshare.com/\?ref= -# ||fragfestservers.com/bannerb.gif (easylist.txt: 29794) -.fragfestservers.com/bannerb\.gif -# ||forumimg.ipmart.com/swf/img.php (easylist.txt: 29793) -.forumimg.ipmart.com/swf/img\.php -# ||fortune5minutes.com^*/banner_ (easylist.txt: 29792) -.fortune5minutes.com/.*/banner_ -# ||footymad.net/partners/ (easylist.txt: 29790) -.footymad.net/partners/ -# ||followfairy.com/followfairy300x250.jpg (easylist.txt: 29789) -.followfairy.com/followfairy300x250\.jpg -# ||fncstatic.com^*/business-exchange.html (easylist.txt: 29788) -.fncstatic.com/.*/business-exchange\.html -# ||flower.com/img/lsh/ (easylist.txt: 29787) -.flower.com/img/lsh/ -# ||firecenter.pl/banners/ (easylist.txt: 29781) -.firecenter.pl/banners/ -# ||filterforge.com/images/banners/ (easylist.txt: 29779) -.filterforge.com/images/banners/ -# ||fileserver1.net/download (easylist.txt: 29776) -.fileserver1.net/download -# ||filepost.com/static/images/bn/ (easylist.txt: 29774) -.filepost.com/static/images/bn/ -# ||fileparadox.com/images/banner/ (easylist.txt: 29773) -.fileparadox.com/images/banner/ -# ||filejungle.com/images/banner/ (easylist.txt: 29771) -.filejungle.com/images/banner/ -# ||filefactory.com^*/refer.php?hash= (easylist.txt: 29770) -.filefactory.com/.*/refer\.php\?hash= -# ||feeds.logicbuy.com^ (easylist.txt: 29766) -.feeds.logicbuy.com -# ||feedburner.com/~a/ (easylist.txt: 29765) -.feedburner.com/~a/ -# ||fatburningfurnace.com^*/fbf-banner- (easylist.txt: 29763) -.fatburningfurnace.com/.*/fbf-banner- -# ||fastcccam.com/images/fcbanner2.gif (easylist.txt: 29761) -.fastcccam.com/images/fcbanner2\.gif -# ||fapturbo.com/testoid/ (easylist.txt: 29759) -.fapturbo.com/testoid/ -# ||fantasyplayers.com/templates/banner_code. (easylist.txt: 29757) -.fantasyplayers.com/templates/banner_code\. -# ||familytreedna.com/img/affiliates/ (easylist.txt: 29755) -.familytreedna.com/img/affiliates/ -# ||fairfaxregional.com.au/proxy/commercial-partner-solar/ (easylist.txt: 29754) -.fairfaxregional.com.au/proxy/commercial-partner-solar/ -# ||exwp.org/partners/ (easylist.txt: 29752) -.exwp.org/partners/ -# ||extras.mnginteractive.com^*/todaysdeals.gif (easylist.txt: 29751) -.extras.mnginteractive.com/.*/todaysdeals\.gif -# ||extras.mercurynews.com/tapin_directory/ (easylist.txt: 29750) -.extras.mercurynews.com/tapin_directory/ -# ||extensoft.com/artisteer/banners/ (easylist.txt: 29749) -.extensoft.com/artisteer/banners/ -# ||ext.theglobalweb.com^ (easylist.txt: 29747) -.ext.theglobalweb.com -# ||expekt.com/affiliates/ (easylist.txt: 29745) -.expekt.com/affiliates/ -# ||exoplanetwar.com/l/landing.php? (easylist.txt: 29744) -.exoplanetwar.com/l/landing\.php\? -# ||everestpoker.com^*/?adv= (easylist.txt: 29743) -.everestpoker.com/.*/\?adv= -# ||events.kalooga.com^ (easylist.txt: 29742) -.events.kalooga.com -# ||euwidget.imshopping.com^ (easylist.txt: 29741) -.euwidget.imshopping.com -# ||europolitique.info^*/pub/ (easylist.txt: 29740) -.europolitique.info/.*/pub/ -# ||esport-betting.com^*/betbanner/ (easylist.txt: 29735) -.esport-betting.com/.*/betbanner/ -# ||epowernetworktrackerimages.s3.amazonaws.com^ (easylist.txt: 29733) -.epowernetworktrackerimages.s3.amazonaws.com -# ||eplreplays.com/wl/ (easylist.txt: 29732) -.eplreplays.com/wl/ -# ||epimg.net/js/pbs/ (easylist.txt: 29731) -.epimg.net/js/pbs/ -# ||enticelabs.com/el/ (easylist.txt: 29730) -.enticelabs.com/el/ -# ||emsisoft.com/bnr/ (easylist.txt: 29728) -.emsisoft.com/bnr/ -# ||elliottwave.com/fw/regular_leaderboard.js (easylist.txt: 29725) -.elliottwave.com/fw/regular_leaderboard\.js -# ||edgecastcdn.net^*.barstoolsports.com/wp-content/banners/ (easylist.txt: 29721) -.edgecastcdn.net/.*\.barstoolsports\.com/wp-content/banners/ -# ||ectaco-store.com^*/promo.jsp? (easylist.txt: 29719) -.ectaco-store.com/.*/promo\.jsp\? -# ||echineselearning.com^*/banner.jpg (easylist.txt: 29718) -.echineselearning.com/.*/banner\.jpg -# ||ebladestore.com^*/banners/ (easylist.txt: 29716) -.ebladestore.com/.*/banners/ -# ||ebaystatic.com/aw/signin/ebay-signin-toyota- (easylist.txt: 29715) -.ebaystatic.com/aw/signin/ebay-signin-toyota- -# ||easyretiredmillionaire.com/img/aff-img/ (easylist.txt: 29712) -.easyretiredmillionaire.com/img/aff-img/ -# ||easy-share.com/images/es20/ (easylist.txt: 29711) -.easy-share.com/images/es20/ -# ||e-tailwebstores.com/accounts/default1/banners/ (easylist.txt: 29709) -.e-tailwebstores.com/accounts/default1/banners/ -# ||dynw.com/banner (easylist.txt: 29708) -.dynw.com/banner -# ||dyl3p6so5yozo.cloudfront.net^ (easylist.txt: 29706) -.dyl3p6so5yozo.cloudfront.net -# ||dycpc40hvg4ki.cloudfront.net^ (easylist.txt: 29705) -.dycpc40hvg4ki.cloudfront.net -# ||dy48bnzanqw0v.cloudfront.net^ (easylist.txt: 29704) -.dy48bnzanqw0v.cloudfront.net -# ||dxqd86uz345mg.cloudfront.net^ (easylist.txt: 29703) -.dxqd86uz345mg.cloudfront.net -# ||dxq6c0tx3v6mm.cloudfront.net^ (easylist.txt: 29702) -.dxq6c0tx3v6mm.cloudfront.net -# ||dx5qvhwg92mjd.cloudfront.net^ (easylist.txt: 29701) -.dx5qvhwg92mjd.cloudfront.net -# ||dvt4pepo9om3r.cloudfront.net^ (easylist.txt: 29699) -.dvt4pepo9om3r.cloudfront.net -# ||dvf2u7vwmkr5w.cloudfront.net^ (easylist.txt: 29698) -.dvf2u7vwmkr5w.cloudfront.net -# ||duct5ntjian71.cloudfront.net^ (easylist.txt: 29696) -.duct5ntjian71.cloudfront.net -# ||dttek.com/sponsors/ (easylist.txt: 29695) -.dttek.com/sponsors/ -# ||droidnetwork.net/img/vendors/ (easylist.txt: 29693) -.droidnetwork.net/img/vendors/ -# ||droidnetwork.net/img/dt-atv160.jpg (easylist.txt: 29692) -.droidnetwork.net/img/dt-atv160\.jpg -# ||dreamstime.com/refbanner- (easylist.txt: 29691) -.dreamstime.com/refbanner- -# ||dreamstime.com/banner/ (easylist.txt: 29689) -.dreamstime.com/banner/ -# ||dr8pk6ovub897.cloudfront.net^ (easylist.txt: 29684) -.dr8pk6ovub897.cloudfront.net -# ||dqhi3ea93ztgv.cloudfront.net^ (easylist.txt: 29683) -.dqhi3ea93ztgv.cloudfront.net -# ||dq2tgxnc2knif.cloudfront.net^ (easylist.txt: 29682) -.dq2tgxnc2knif.cloudfront.net -# ||dpsq2uzakdgqz.cloudfront.net^ (easylist.txt: 29681) -.dpsq2uzakdgqz.cloudfront.net -# ||dp51h10v6ggpa.cloudfront.net^ (easylist.txt: 29680) -.dp51h10v6ggpa.cloudfront.net -# ||dotz123.com/run.php? (easylist.txt: 29675) -.dotz123.com/run\.php\? -# ||dot.tk/urlfwd/searchbar/bar.html (easylist.txt: 29674) -.dot.tk/urlfwd/searchbar/bar\.html -# ||dorabet.com/banner/ (easylist.txt: 29673) -.dorabet.com/banner/ -# ||domainnamesales.com/return_js.php? (easylist.txt: 29672) -.domainnamesales.com/return_js\.php\? -# ||domaingateway.com/js/redirect-min.js (easylist.txt: 29671) -.domaingateway.com/js/redirect-min\.js -# ||dntrck.com/trax? (easylist.txt: 29669) -.dntrck.com/trax\? -# ||dm8srf206hien.cloudfront.net^ (easylist.txt: 29668) -.dm8srf206hien.cloudfront.net -# ||dm0acvguygm9h.cloudfront.net^ (easylist.txt: 29667) -.dm0acvguygm9h.cloudfront.net -# ||dlupv9uqtjlie.cloudfront.net^ (easylist.txt: 29666) -.dlupv9uqtjlie.cloudfront.net -# ||dl5v5atodo7gn.cloudfront.net^ (easylist.txt: 29665) -.dl5v5atodo7gn.cloudfront.net -# ||dl392qndlveq0.cloudfront.net^ (easylist.txt: 29664) -.dl392qndlveq0.cloudfront.net -# ||dkdwv3lcby5zi.cloudfront.net^ (easylist.txt: 29663) -.dkdwv3lcby5zi.cloudfront.net -# ||dkd69bwkvrht1.cloudfront.net^ (easylist.txt: 29662) -.dkd69bwkvrht1.cloudfront.net -# ||djlf5xdlz7m8m.cloudfront.net^ (easylist.txt: 29661) -.djlf5xdlz7m8m.cloudfront.net -# ||dizixdllzznrf.cloudfront.net^ (easylist.txt: 29660) -.dizixdllzznrf.cloudfront.net -# ||disy2s34euyqm.cloudfront.net^ (easylist.txt: 29659) -.disy2s34euyqm.cloudfront.net -# ||disqus.com/listPromoted? (easylist.txt: 29658) -.disqus.com/listPromoted\? -# ||display.digitalriver.com^ (easylist.txt: 29657) -.display.digitalriver.com -# ||digitalsatellite.tv/banners/ (easylist.txt: 29654) -.digitalsatellite.tv/banners/ -# ||digitalmediacommunications.com/belleville/employment/ (easylist.txt: 29653) -.digitalmediacommunications.com/belleville/employment/ -# ||dff7tx5c2qbxc.cloudfront.net^ (easylist.txt: 29651) -.dff7tx5c2qbxc.cloudfront.net -# ||dew9ckzjyt2gn.cloudfront.net^ (easylist.txt: 29650) -.dew9ckzjyt2gn.cloudfront.net -# ||devil-bet.com/banner/ (easylist.txt: 29649) -.devil-bet.com/banner/ -# ||developermedia.com/a.min.js (easylist.txt: 29648) -.developermedia.com/a\.min\.js -# ||dev-cms.com^*/promobanners/ (easylist.txt: 29647) -.dev-cms.com/.*/promobanners/ -# ||detroitmedia.com/jfry/ (easylist.txt: 29646) -.detroitmedia.com/jfry/ -# ||desperateseller.co.uk/affiliates/ (easylist.txt: 29645) -.desperateseller.co.uk/affiliates/ -# ||deskbabes.com/ref.php? (easylist.txt: 29644) -.deskbabes.com/ref\.php\? -# ||depositfiles.com^*.php?ref= (easylist.txt: 29642) -.depositfiles.com/.*\.php\?ref= -# ||dennis.co.uk^*/siteskins/ (easylist.txt: 29641) -.dennis.co.uk/.*/siteskins/ -# ||dealtoday.com.mt/banners/ (easylist.txt: 29638) -.dealtoday.com.mt/banners/ -# ||deals4thecure.com/widgets/*?affiliateurl= (easylist.txt: 29636) -.deals4thecure.com/widgets/.*\?affiliateurl= -# ||ddwht76d9jvfl.cloudfront.net^ (easylist.txt: 29631) -.ddwht76d9jvfl.cloudfront.net -# ||dbam.dashbida.com^ (easylist.txt: 29630) -.dbam.dashbida.com -# ||datakl.com/banner/ (easylist.txt: 29627) -.datakl.com/banner/ -# ||datafeedfile.com/widget/readywidget/ (easylist.txt: 29626) -.datafeedfile.com/widget/readywidget/ -# ||data.neuroxmedia.com^ (easylist.txt: 29625) -.data.neuroxmedia.com -# ||dasfdasfasdf.no-ip.info^ (easylist.txt: 29624) -.dasfdasfasdf.no-ip.info -# ||dart.clearchannel.com^ (easylist.txt: 29623) -.dart.clearchannel.com -# ||dapatwang.com/images/banner/ (easylist.txt: 29622) -.dapatwang.com/images/banner/ -# ||dal9hkyfi0m0n.cloudfront.net^ (easylist.txt: 29621) -.dal9hkyfi0m0n.cloudfront.net -# ||d8qy7md4cj3gz.cloudfront.net^ (easylist.txt: 29619) -.d8qy7md4cj3gz.cloudfront.net -# ||d6bdy3eto8fyu.cloudfront.net^ (easylist.txt: 29618) -.d6bdy3eto8fyu.cloudfront.net -# ||d5pvnbpawsaav.cloudfront.net^ (easylist.txt: 29617) -.d5pvnbpawsaav.cloudfront.net -# ||d3vc1nm9xbncz5.cloudfront.net^ (easylist.txt: 29616) -.d3vc1nm9xbncz5.cloudfront.net -# ||d3tdefw8pwfkbk.cloudfront.net^ (easylist.txt: 29615) -.d3tdefw8pwfkbk.cloudfront.net -# ||d3t9ip55bsuxrf.cloudfront.net^ (easylist.txt: 29614) -.d3t9ip55bsuxrf.cloudfront.net -# ||d3t2wca0ou3lqz.cloudfront.net^ (easylist.txt: 29613) -.d3t2wca0ou3lqz.cloudfront.net -# ||d3qszud4qdthr8.cloudfront.net^ (easylist.txt: 29612) -.d3qszud4qdthr8.cloudfront.net -# ||d3q2dpprdsteo.cloudfront.net^ (easylist.txt: 29611) -.d3q2dpprdsteo.cloudfront.net -# ||d3pkae9owd2lcf.cloudfront.net^ (easylist.txt: 29610) -.d3pkae9owd2lcf.cloudfront.net -# ||d3p9ql8flgemg7.cloudfront.net^ (easylist.txt: 29609) -.d3p9ql8flgemg7.cloudfront.net -# ||d3nvrqlo8rj1kw.cloudfront.net^ (easylist.txt: 29608) -.d3nvrqlo8rj1kw.cloudfront.net -# ||d3m41swuqq4sv5.cloudfront.net^ (easylist.txt: 29607) -.d3m41swuqq4sv5.cloudfront.net -# ||d3lzezfa753mqu.cloudfront.net^ (easylist.txt: 29606) -.d3lzezfa753mqu.cloudfront.net -# ||d3lvr7yuk4uaui.cloudfront.net^ (easylist.txt: 29605) -.d3lvr7yuk4uaui.cloudfront.net -# ||d3iwjrnl4m67rd.cloudfront.net^ (easylist.txt: 29604) -.d3iwjrnl4m67rd.cloudfront.net -# ||d3irruagotonpp.cloudfront.net^ (easylist.txt: 29603) -.d3irruagotonpp.cloudfront.net -# ||d3fzrm6pcer44x.cloudfront.net^ (easylist.txt: 29602) -.d3fzrm6pcer44x.cloudfront.net -# ||d3f9mcik999dte.cloudfront.net^ (easylist.txt: 29601) -.d3f9mcik999dte.cloudfront.net -# ||d3dphmosjk9rot.cloudfront.net^ (easylist.txt: 29600) -.d3dphmosjk9rot.cloudfront.net -# ||d3bvcf24wln03d.cloudfront.net^ (easylist.txt: 29599) -.d3bvcf24wln03d.cloudfront.net -# ||d39xqloz8t5a6x.cloudfront.net^ (easylist.txt: 29598) -.d39xqloz8t5a6x.cloudfront.net -# ||d38r21vtgndgb1.cloudfront.net^ (easylist.txt: 29597) -.d38r21vtgndgb1.cloudfront.net -# ||d38pxm3dmrdu6d.cloudfront.net^ (easylist.txt: 29596) -.d38pxm3dmrdu6d.cloudfront.net -# ||d37kzqe5knnh6t.cloudfront.net^ (easylist.txt: 29595) -.d37kzqe5knnh6t.cloudfront.net -# ||d34rdvn2ky3gnm.cloudfront.net^ (easylist.txt: 29594) -.d34rdvn2ky3gnm.cloudfront.net -# ||d34obr29voew8l.cloudfront.net^ (easylist.txt: 29593) -.d34obr29voew8l.cloudfront.net -# ||d33otidwg56k90.cloudfront.net^ (easylist.txt: 29592) -.d33otidwg56k90.cloudfront.net -# ||d33f10u0pfpplc.cloudfront.net^ (easylist.txt: 29591) -.d33f10u0pfpplc.cloudfront.net -# ||d32pxqbknuxsuy.cloudfront.net^ (easylist.txt: 29590) -.d32pxqbknuxsuy.cloudfront.net -# ||d31807xkria1x4.cloudfront.net^ (easylist.txt: 29589) -.d31807xkria1x4.cloudfront.net -# ||d2z1smm3i01tnr.cloudfront.net^ (easylist.txt: 29588) -.d2z1smm3i01tnr.cloudfront.net -# ||d2yhukq7vldf1u.cloudfront.net^ (easylist.txt: 29587) -.d2yhukq7vldf1u.cloudfront.net -# ||d2vt6q0n0iy66w.cloudfront.net^ (easylist.txt: 29586) -.d2vt6q0n0iy66w.cloudfront.net -# ||d2v9ajh2eysdau.cloudfront.net^ (easylist.txt: 29585) -.d2v9ajh2eysdau.cloudfront.net -# ||d2v4glj2m8yzg5.cloudfront.net^ (easylist.txt: 29584) -.d2v4glj2m8yzg5.cloudfront.net -# ||d2ue9k1rhsumed.cloudfront.net^ (easylist.txt: 29583) -.d2ue9k1rhsumed.cloudfront.net -# ||d2ubicnllnnszy.cloudfront.net^ (easylist.txt: 29582) -.d2ubicnllnnszy.cloudfront.net -# ||d2tnimpzlb191i.cloudfront.net^ (easylist.txt: 29581) -.d2tnimpzlb191i.cloudfront.net -# ||d2tgev5wuprbqq.cloudfront.net^ (easylist.txt: 29580) -.d2tgev5wuprbqq.cloudfront.net -# ||d2s64zaa9ua7uv.cloudfront.net^ (easylist.txt: 29579) -.d2s64zaa9ua7uv.cloudfront.net -# ||d2r359adnh3sfn.cloudfront.net^ (easylist.txt: 29578) -.d2r359adnh3sfn.cloudfront.net -# ||d2plxos94peuwp.cloudfront.net^ (easylist.txt: 29577) -.d2plxos94peuwp.cloudfront.net -# ||d2pgy8h4i30on1.cloudfront.net^ (easylist.txt: 29576) -.d2pgy8h4i30on1.cloudfront.net -# ||d2omcicc3a4zlg.cloudfront.net^ (easylist.txt: 29575) -.d2omcicc3a4zlg.cloudfront.net -# ||d2oallm7wrqvmi.cloudfront.net^ (easylist.txt: 29574) -.d2oallm7wrqvmi.cloudfront.net -# ||d2o307dm5mqftz.cloudfront.net^ (easylist.txt: 29573) -.d2o307dm5mqftz.cloudfront.net -# ||d2nlytvx51ywh9.cloudfront.net^ (easylist.txt: 29572) -.d2nlytvx51ywh9.cloudfront.net -# ||d2mq0uzafv8ytp.cloudfront.net^ (easylist.txt: 29571) -.d2mq0uzafv8ytp.cloudfront.net -# ||d2mic0r0bo3i6z.cloudfront.net^ (easylist.txt: 29570) -.d2mic0r0bo3i6z.cloudfront.net -# ||d2ipklohrie3lo.cloudfront.net^ (easylist.txt: 29569) -.d2ipklohrie3lo.cloudfront.net -# ||d2hap2bsh1k9lw.cloudfront.net^ (easylist.txt: 29568) -.d2hap2bsh1k9lw.cloudfront.net -# ||d2gz6iop9uxobu.cloudfront.net^ (easylist.txt: 29567) -.d2gz6iop9uxobu.cloudfront.net -# ||d2gtlljtkeiyzd.cloudfront.net^ (easylist.txt: 29566) -.d2gtlljtkeiyzd.cloudfront.net -# ||d2gpgaupalra1d.cloudfront.net^ (easylist.txt: 29565) -.d2gpgaupalra1d.cloudfront.net -# ||d2dxgm96wvaa5j.cloudfront.net^ (easylist.txt: 29564) -.d2dxgm96wvaa5j.cloudfront.net -# ||d2d2lbvq8xirbs.cloudfront.net^ (easylist.txt: 29563) -.d2d2lbvq8xirbs.cloudfront.net -# ||d2cxkkxhecdzsq.cloudfront.net^ (easylist.txt: 29562) -.d2cxkkxhecdzsq.cloudfront.net -# ||d2bgg7rjywcwsy.cloudfront.net^ (easylist.txt: 29561) -.d2bgg7rjywcwsy.cloudfront.net -# ||d2b65ihpmocv7w.cloudfront.net^ (easylist.txt: 29560) -.d2b65ihpmocv7w.cloudfront.net -# ||d2b2x1ywompm1b.cloudfront.net^ (easylist.txt: 29559) -.d2b2x1ywompm1b.cloudfront.net -# ||d2anfhdgjxf8s1.cloudfront.net^ (easylist.txt: 29558) -.d2anfhdgjxf8s1.cloudfront.net -# ||d29r6igjpnoykg.cloudfront.net^ (easylist.txt: 29556) -.d29r6igjpnoykg.cloudfront.net -# ||d287x05ve9a63s.cloudfront.net^ (easylist.txt: 29555) -.d287x05ve9a63s.cloudfront.net -# ||d27jt7xr4fq3e8.cloudfront.net^ (easylist.txt: 29554) -.d27jt7xr4fq3e8.cloudfront.net -# ||d26wy0pxd3qqpv.cloudfront.net^ (easylist.txt: 29553) -.d26wy0pxd3qqpv.cloudfront.net -# ||d26j9bp9bq4uhd.cloudfront.net^ (easylist.txt: 29552) -.d26j9bp9bq4uhd.cloudfront.net -# ||d26dzd2k67we08.cloudfront.net^ (easylist.txt: 29551) -.d26dzd2k67we08.cloudfront.net -# ||d25xkbr68qqtcn.cloudfront.net^ (easylist.txt: 29550) -.d25xkbr68qqtcn.cloudfront.net -# ||d25ruj6ht8bs1.cloudfront.net^ (easylist.txt: 29549) -.d25ruj6ht8bs1.cloudfront.net -# ||d23nyyb6dc29z6.cloudfront.net^ (easylist.txt: 29548) -.d23nyyb6dc29z6.cloudfront.net -# ||d23guct4biwna6.cloudfront.net^ (easylist.txt: 29547) -.d23guct4biwna6.cloudfront.net -# ||d1zgderxoe1a.cloudfront.net^ (easylist.txt: 29546) -.d1zgderxoe1a.cloudfront.net -# ||d1wa9546y9kg0n.cloudfront.net/index.js (easylist.txt: 29545) -.d1wa9546y9kg0n.cloudfront.net/index\.js -# ||d1vbm0eveofcle.cloudfront.net^ (easylist.txt: 29544) -.d1vbm0eveofcle.cloudfront.net -# ||d1spb7fplenrp4.cloudfront.net^ (easylist.txt: 29543) -.d1spb7fplenrp4.cloudfront.net -# ||d1pdpbxj733bb1.cloudfront.net^ (easylist.txt: 29542) -.d1pdpbxj733bb1.cloudfront.net -# ||d1pcttwib15k25.cloudfront.net^ (easylist.txt: 29541) -.d1pcttwib15k25.cloudfront.net -# ||d1noellhv8fksc.cloudfront.net^ (easylist.txt: 29540) -.d1noellhv8fksc.cloudfront.net -# ||d1k74lgicilrr3.cloudfront.net^ (easylist.txt: 29539) -.d1k74lgicilrr3.cloudfront.net -# ||d1gojtoka5qi10.cloudfront.net^ (easylist.txt: 29538) -.d1gojtoka5qi10.cloudfront.net -# ||d1fo96xm8fci0r.cloudfront.net^ (easylist.txt: 29537) -.d1fo96xm8fci0r.cloudfront.net -# ||d1ey3fksimezm4.cloudfront.net^ (easylist.txt: 29536) -.d1ey3fksimezm4.cloudfront.net -# ||d1ep3cn6qx0l3z.cloudfront.net^ (easylist.txt: 29535) -.d1ep3cn6qx0l3z.cloudfront.net -# ||d1d95giojjkirt.cloudfront.net^ (easylist.txt: 29534) -.d1d95giojjkirt.cloudfront.net -# ||d1cl1sqtf3o420.cloudfront.net^ (easylist.txt: 29533) -.d1cl1sqtf3o420.cloudfront.net -# ||d1ade4ciw4bqyc.cloudfront.net^ (easylist.txt: 29532) -.d1ade4ciw4bqyc.cloudfront.net -# ||d19972r8wdpby8.cloudfront.net^ (easylist.txt: 29531) -.d19972r8wdpby8.cloudfront.net -# ||d17f2fxw547952.cloudfront.net^ (easylist.txt: 29530) -.d17f2fxw547952.cloudfront.net -# ||d15gt9gwxw5wu0.cloudfront.net^ (easylist.txt: 29529) -.d15gt9gwxw5wu0.cloudfront.net -# ||d15565yqt7pv7r.cloudfront.net^ (easylist.txt: 29528) -.d15565yqt7pv7r.cloudfront.net -# ||d140sbu1b1m3h0.cloudfront.net^ (easylist.txt: 29527) -.d140sbu1b1m3h0.cloudfront.net -# ||d13czkep7ax7nj.cloudfront.net^ (easylist.txt: 29526) -.d13czkep7ax7nj.cloudfront.net -# ||customcodebydan.com/images/banner.gif (easylist.txt: 29522) -.customcodebydan.com/images/banner\.gif -# ||cursecdn.com/banner/ (easylist.txt: 29520) -.cursecdn.com/banner/ -# ||cstv.com^*/sponsors/ (easylist.txt: 29518) -.cstv.com/.*/sponsors/ -# ||crowdsavings.com/r/banner/ (easylist.txt: 29515) -.crowdsavings.com/r/banner/ -# ||creatives.summitconnect.co.uk^ (easylist.txt: 29514) -.creatives.summitconnect.co.uk -# ||creatives.inmotionhosting.com^ (easylist.txt: 29513) -.creatives.inmotionhosting.com -# ||cpm.amateurcommunity.de^ (easylist.txt: 29512) -.cpm.amateurcommunity.de -# ||coxnewsweb.com^*/ads/ (easylist.txt: 29510) -.coxnewsweb.com/.*/ads/ -# ||continent8.com^*/bannerflow/ (easylist.txt: 29506) -.continent8.com/.*/bannerflow/ -# ||contentcastsyndication.com^*&banner (easylist.txt: 29505) -.contentcastsyndication.com/.*&banner -# ||content.livesportmedia.eu^ (easylist.txt: 29503) -.content.livesportmedia.eu -# ||consolpub.com/weatherwindow/ (easylist.txt: 29502) -.consolpub.com/weatherwindow/ -# ||connect.summit.co.uk^ (easylist.txt: 29500) -.connect.summit.co.uk -# ||complexmedianetwork.com/js/cmnUNT.js (easylist.txt: 29497) -.complexmedianetwork.com/js/cmnUNT\.js -# ||colorlabsproject.com^*/banner_ (easylist.txt: 29495) -.colorlabsproject.com/.*/banner_ -# ||cnnewmedia.co.uk/locker/ (easylist.txt: 29492) -.cnnewmedia.co.uk/locker/ -# ||cnhionline.com^*/rtj_ad.jpg (easylist.txt: 29491) -.cnhionline.com/.*/rtj_ad\.jpg -# ||cngroup.co.uk/service/creative/ (easylist.txt: 29490) -.cngroup.co.uk/service/creative/ -# ||cloudzer.net/ref/ (easylist.txt: 29488) -.cloudzer.net/ref/ -# ||cloudfront.net/tie.js (easylist.txt: 29484) -.cloudfront.net/tie\.js -# ||cloudfront.net/st.js (easylist.txt: 29483) -.cloudfront.net/st\.js -# ||cloudfront.net/scripts/js3caf.js (easylist.txt: 29482) -.cloudfront.net/scripts/js3caf\.js -# ||cloudfront.net/nimblebuy/ (easylist.txt: 29481) -.cloudfront.net/nimblebuy/ -# ||cloudfront.net/dfpd.js (easylist.txt: 29479) -.cloudfront.net/dfpd\.js -# ||clipdealer.com/?action=widget&*&partner= (easylist.txt: 29478) -.clipdealer.com/\?action=widget&.*&partner= -# ||clicktripz.com/scripts/js/ct.js (easylist.txt: 29477) -.clicktripz.com/scripts/js/ct\.js -# ||clicksure.com/img/resources/banner_ (easylist.txt: 29476) -.clicksure.com/img/resources/banner_ -# ||clickstrip.6wav.es^ (easylist.txt: 29475) -.clickstrip.6wav.es -# ||click.eyk.net^ (easylist.txt: 29474) -.click.eyk.net -# ||clarity.abacast.com^ (easylist.txt: 29473) -.clarity.abacast.com -# ||cjmooter.xcache.kinxcdn.com^ (easylist.txt: 29472) -.cjmooter.xcache.kinxcdn.com -# ||citygridmedia.com/ads/ (easylist.txt: 29471) -.citygridmedia.com/ads/ -# ||cimg.in/images/banners/ (easylist.txt: 29469) -.cimg.in/images/banners/ -# ||chriscasconi.com/nostalgia_ad. (easylist.txt: 29468) -.chriscasconi.com/nostalgia_ad\. -# ||cgmlab.com/tools/geotarget/custombanner.js (easylist.txt: 29463) -.cgmlab.com/tools/geotarget/custombanner\.js -# ||cfcdn.com/showcase_sample/search_widget/ (easylist.txt: 29462) -.cfcdn.com/showcase_sample/search_widget/ -# ||cex.io/img/b/ (easylist.txt: 29460) -.cex.io/img/b/ -# ||cerebral.typn.com^ (easylist.txt: 29459) -.cerebral.typn.com -# ||centralmediaserver.com^*_side_bars.jpg (easylist.txt: 29457) -.centralmediaserver.com/.*_side_bars\.jpg -# ||cdnprk.com/scripts/js3caf.js (easylist.txt: 29456) -.cdnprk.com/scripts/js3caf\.js -# ||cdnprk.com/scripts/js3.js (easylist.txt: 29455) -.cdnprk.com/scripts/js3\.js -# ||cdnpark.com/scripts/js3.js (easylist.txt: 29454) -.cdnpark.com/scripts/js3\.js -# ||cdn.ndparking.com/js/init.min.js (easylist.txt: 29449) -.cdn.ndparking.com/js/init\.min\.js -# ||cdn.cdncomputer.com/js/main.js (easylist.txt: 29448) -.cdn.cdncomputer.com/js/main\.js -# ||cccam.co/banner_big.gif (easylist.txt: 29446) -.cccam.co/banner_big\.gif -# ||cbpirate.com/getimg.php? (easylist.txt: 29445) -.cbpirate.com/getimg\.php\? -# ||catholicweb.com^*/banners/ (easylist.txt: 29442) -.catholicweb.com/.*/banners/ -# ||casti.tv/adds/ (easylist.txt: 29441) -.casti.tv/adds/ -# ||castasap.com/publi2.html (easylist.txt: 29440) -.castasap.com/publi2\.html -# ||cashmyvideo.com/images/cashmyvideo_banner.gif (easylist.txt: 29438) -.cashmyvideo.com/images/cashmyvideo_banner\.gif -# ||cashmakingpowersites.com^*/banners/ (easylist.txt: 29437) -.cashmakingpowersites.com/.*/banners/ -# ||cash.neweramediaworks.com^ (easylist.txt: 29436) -.cash.neweramediaworks.com -# ||cas.clickability.com^ (easylist.txt: 29434) -.cas.clickability.com -# ||carbiz.in/affiliates-and-partners/ (easylist.txt: 29428) -.carbiz.in/affiliates-and-partners/ -# ||camelmedia.net^*/banners/ (easylist.txt: 29425) -.camelmedia.net/.*/banners/ -# ||cal-one.net/ellington/search_form.php? (easylist.txt: 29424) -.cal-one.net/ellington/search_form\.php\? -# ||cal-one.net/ellington/deals_widget.php? (easylist.txt: 29423) -.cal-one.net/ellington/deals_widget\.php\? -# ||cactusvpn.com/images/affiliates/ (easylist.txt: 29422) -.cactusvpn.com/images/affiliates/ -# ||cachefly.net/cricad.html (easylist.txt: 29421) -.cachefly.net/cricad\.html -# ||c.netu.tv^ (easylist.txt: 29420) -.c.netu.tv -# ||byzoo.org/script/tu*.js (easylist.txt: 29419) -.byzoo.org/script/tu.*\.js -# ||buyhatke.com/widgetBack/ (easylist.txt: 29415) -.buyhatke.com/widgetBack/ -# ||buy.com^*/affiliate/ (easylist.txt: 29414) -.buy.com/.*/affiliate/ -# ||businessnewswatch.ca/images/nnwbanner/ (easylist.txt: 29413) -.businessnewswatch.ca/images/nnwbanner/ -# ||burst.net/aff/ (easylist.txt: 29411) -.burst.net/aff/ -# ||bullguard.com^*/banners/ (easylist.txt: 29410) -.bullguard.com/.*/banners/ -# ||btr.domywife.com^ (easylist.txt: 29407) -.btr.domywife.com -# ||bruteforcesocialmedia.com/affiliates/ (easylist.txt: 29405) -.bruteforcesocialmedia.com/affiliates/ -# ||bruteforceseo.com/affiliates/ (easylist.txt: 29404) -.bruteforceseo.com/affiliates/ -# ||break.com^*/partnerpublish/ (easylist.txt: 29401) -.break.com/.*/partnerpublish/ -# ||bravenet.com/cserv.php (easylist.txt: 29399) -.bravenet.com/cserv\.php -# ||bplaced.net/pub/ (easylist.txt: 29398) -.bplaced.net/pub/ -# ||bpath.com/affiliates/ (easylist.txt: 29397) -.bpath.com/affiliates/ -# ||box.anchorfree.net^ (easylist.txt: 29396) -.box.anchorfree.net -# ||bosh.tv/hdplugin. (easylist.txt: 29395) -.bosh.tv/hdplugin\. -# ||borrowlenses.com/affiliate/ (easylist.txt: 29394) -.borrowlenses.com/affiliate/ -# ||booking.com^*;tmpl=banner_ (easylist.txt: 29391) -.booking.com/.*;tmpl=banner_ -# ||bollyrulez.net/media/adz/ (easylist.txt: 29389) -.bollyrulez.net/media/adz/ -# ||boago.com^*_Takeover_ (easylist.txt: 29388) -.boago.com/.*_Takeover_ -# ||bluhostedbanners.blucigs.com^ (easylist.txt: 29386) -.bluhostedbanners.blucigs.com -# ||bluesattv.net/bluesattvnet.gif (easylist.txt: 29385) -.bluesattv.net/bluesattvnet\.gif -# ||bluesattv.net/bluesat.swf (easylist.txt: 29384) -.bluesattv.net/bluesat\.swf -# ||bloodstock.uk.com/affiliates/ (easylist.txt: 29382) -.bloodstock.uk.com/affiliates/ -# ||blissful-sin.com/affiliates/ (easylist.txt: 29380) -.blissful-sin.com/affiliates/ -# ||blinkx.com/f2/overlays/ (easylist.txt: 29378) -.blinkx.com/f2/overlays/ -# ||blindferret.com/images/*_skin_ (easylist.txt: 29376) -.blindferret.com/images/.*_skin_ -# ||blamads-assets.s3.amazonaws.com^ (easylist.txt: 29375) -.blamads-assets.s3.amazonaws.com -# ||bl.wavecdn.de^ (easylist.txt: 29374) -.bl.wavecdn.de -# ||bitshare.com^*/banner/ (easylist.txt: 29372) -.bitshare.com/.*/banner/ -# ||binopt.net/banners/ (easylist.txt: 29368) -.binopt.net/banners/ -# ||bijk.com^*/banners/ (easylist.txt: 29366) -.bijk.com/.*/banners/ -# ||bigrock.in/affiliate/ (easylist.txt: 29365) -.bigrock.in/affiliate/ -# ||bidorbuy.co.za/jsp/system/referral.jsp? (easylist.txt: 29361) -.bidorbuy.co.za/jsp/system/referral\.jsp\? -# ||betterbills.com.au/widgets/ (easylist.txt: 29356) -.betterbills.com.au/widgets/ -# ||bet-at-home.com/oddbanner.aspx? (easylist.txt: 29354) -.bet-at-home.com/oddbanner\.aspx\? -# ||bestofmedia.com/ws/communicationSpot.php? (easylist.txt: 29353) -.bestofmedia.com/ws/communicationSpot\.php\? -# ||besthosting.ua/banner/ (easylist.txt: 29352) -.besthosting.ua/banner/ -# ||berush.com/images/whorush_120x120_ (easylist.txt: 29351) -.berush.com/images/whorush_120x120_ -# ||berush.com/images/semrush_banner_ (easylist.txt: 29350) -.berush.com/images/semrush_banner_ -# ||bergen.com^*/sponsoredby- (easylist.txt: 29348) -.bergen.com/.*/sponsoredby- -# ||bee4.biz/banners/ (easylist.txt: 29346) -.bee4.biz/banners/ -# ||beachcamera.com/assets/banners/ (easylist.txt: 29345) -.beachcamera.com/assets/banners/ -# ||bbcchannels.com/workspace/uploads/ (easylist.txt: 29342) -.bbcchannels.com/workspace/uploads/ -# ||banner.titancasino.com^ (easylist.txt: 29332) -.banner.titancasino.com -# ||banner.telefragged.com^ (easylist.txt: 29331) -.banner.telefragged.com -# ||banner.europacasino.com^ (easylist.txt: 29330) -.banner.europacasino.com -# ||banner.3ddownloads.com^ (easylist.txt: 29329) -.banner.3ddownloads.com -# ||banner.101xp.com^ (easylist.txt: 29328) -.banner.101xp.com -# ||bamstudent.com/files/banners/ (easylist.txt: 29324) -.bamstudent.com/files/banners/ -# ||ball2win.com/Affiliate/ (easylist.txt: 29323) -.ball2win.com/Affiliate/ -# ||babylon.com^*?affid= (easylist.txt: 29321) -.babylon.com/.*\?affid= -# ||babylon.com/trans_box/*&affiliate= (easylist.txt: 29320) -.babylon.com/trans_box/.*&affiliate= -# ||b92s.net/images/banners/ (easylist.txt: 29317) -.b92s.net/images/banners/ -# ||b92.putniktravel.com^ (easylist.txt: 29316) -.b92.putniktravel.com -# ||b.livesport.eu^ (easylist.txt: 29313) -.b.livesport.eu -# ||b.babylon.com^ (easylist.txt: 29312) -.b.babylon.com -# ||axandra.com/affiliates/ (easylist.txt: 29310) -.axandra.com/affiliates/ -# ||award.sitekeuring.net^ (easylist.txt: 29309) -.award.sitekeuring.net -# ||autoprivileges.net/news/ (easylist.txt: 29307) -.autoprivileges.net/news/ -# ||atomicpopularity.com/dfpd.js (easylist.txt: 29305) -.atomicpopularity.com/dfpd\.js -# ||astrology.com/partnerpages/ (easylist.txt: 29303) -.astrology.com/partnerpages/ -# ||astalavista.box.sk/c-astalink2a.jpg (easylist.txt: 29302) -.astalavista.box.sk/c-astalink2a\.jpg -# ||associmg.com^*.gif?tag- (easylist.txt: 29301) -.associmg.com/.*\.gif\?tag- -# ||assets.betterbills.com/widgets/ (easylist.txt: 29300) -.assets.betterbills.com/widgets/ -# ||artistdirect.com/partner/ (easylist.txt: 29297) -.artistdirect.com/partner/ -# ||arntrnassets.mediaspanonline.com^*_HP_wings_ (easylist.txt: 29296) -.arntrnassets.mediaspanonline.com/.*_HP_wings_ -# ||ard.ihookup.com^ (easylist.txt: 29295) -.ard.ihookup.com -# ||arcadetown.com/as/show.asp (easylist.txt: 29294) -.arcadetown.com/as/show\.asp -# ||apple.com/itunesaffiliates/ (easylist.txt: 29291) -.apple.com/itunesaffiliates/ -# ||appdevsecrets.com/images/nuts/ (easylist.txt: 29290) -.appdevsecrets.com/images/nuts/ -# ||apnonline.com.au/img/marketplace/*_ct50x50.gif (easylist.txt: 29289) -.apnonline.com.au/img/marketplace/.*_ct50x50\.gif -# ||api.ticketnetwork.com/Events/TopSelling/domain=nytimes.com (easylist.txt: 29288) -.api.ticketnetwork.com/Events/TopSelling/domain=nytimes\.com -# ||aolcdn.com/os/music/img/*-skin.jpg (easylist.txt: 29284) -.aolcdn.com/os/music/img/.*-skin\.jpg -# ||aolcdn.com/os/mapquest/promo-images/ (easylist.txt: 29283) -.aolcdn.com/os/mapquest/promo-images/ -# ||aolcdn.com/os/mapquest/marketing/promos/ (easylist.txt: 29282) -.aolcdn.com/os/mapquest/marketing/promos/ -# ||aol.co.uk^*/cobrand.js (easylist.txt: 29281) -.aol.co.uk/.*/cobrand\.js -# ||anonym.to/*findandtry.com (easylist.txt: 29279) -.anonym.to/.*findandtry\.com -# ||analytics.disneyinternational.com^ (easylist.txt: 29275) -.analytics.disneyinternational.com -# ||amazonaws.com/youpop/ (easylist.txt: 29272) -.amazonaws.com/youpop/ -# ||amazonaws.com/widgets.youcompare.com.au/ (easylist.txt: 29271) -.amazonaws.com/widgets\.youcompare\.com\.au/ -# ||amazonaws.com/streetpulse/ads/ (easylist.txt: 29270) -.amazonaws.com/streetpulse/ads/ -# ||amazonaws.com/skyscrpr.js (easylist.txt: 29269) -.amazonaws.com/skyscrpr\.js -# ||amazonaws.com/publishflow/ (easylist.txt: 29268) -.amazonaws.com/publishflow/ -# ||amazonaws.com/pmb-musics/download_itunes.png (easylist.txt: 29267) -.amazonaws.com/pmb-musics/download_itunes\.png -# ||amazonaws.com/photos.offers.analoganalytics.com/ (easylist.txt: 29265) -.amazonaws.com/photos\.offers\.analoganalytics\.com/ -# ||amazonaws.com/lms/sponsors/ (easylist.txt: 29263) -.amazonaws.com/lms/sponsors/ -# ||amazonaws.com/fvefwdds/ (easylist.txt: 29261) -.amazonaws.com/fvefwdds/ -# ||amazonaws.com/btrb-prd-banners/ (easylist.txt: 29258) -.amazonaws.com/btrb-prd-banners/ -# ||amazonaws.com/bo-assets/production/banner_attachments/ (easylist.txt: 29257) -.amazonaws.com/bo-assets/production/banner_attachments/ -# ||amazonaws.com/ad_w_intersitial.html (easylist.txt: 29254) -.amazonaws.com/ad_w_intersitial\.html -# ||alpsat.com/banner/ (easylist.txt: 29249) -.alpsat.com/banner/ -# ||alluremedia.com.au^*/campaigns/ (easylist.txt: 29248) -.alluremedia.com.au/.*/campaigns/ -# ||allsend.com/public/assets/images/ (easylist.txt: 29247) -.allsend.com/public/assets/images/ -# ||allposters.com^*/banners/ (easylist.txt: 29246) -.allposters.com/.*/banners/ -# ||algovid.com/player/get_player_vasts? (easylist.txt: 29245) -.algovid.com/player/get_player_vasts\? -# ||alexa.com^*/promotebuttons/ (easylist.txt: 29243) -.alexa.com/.*/promotebuttons/ -# ||akamaihd.net/lmedianet.js (easylist.txt: 29239) -.akamaihd.net/lmedianet\.js -# ||akamai.net^*/pics.drugstore.com/prodimg/promo/ (easylist.txt: 29238) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# ||ais.abacast.com^ (easylist.txt: 29233) -.ais.abacast.com -# ||airvpn.org/images/promotional/ (easylist.txt: 29232) -.airvpn.org/images/promotional/ -# ||airpushmarketing.s3.amazonaws.com^ (easylist.txt: 29231) -.airpushmarketing.s3.amazonaws.com -# ||agoda.net/banners/ (easylist.txt: 29229) -.agoda.net/banners/ -# ||agenda.complex.com^ (easylist.txt: 29228) -.agenda.complex.com -# ||affiliation.fotovista.com^ (easylist.txt: 29225) -.affiliation.fotovista.com -# ||affiliatesmedia.sbobet.com^ (easylist.txt: 29223) -.affiliatesmedia.sbobet.com -# ||affiliates.allposters.com^ (easylist.txt: 29217) -.affiliates.allposters.com -# ||affiliateprogram.keywordspy.com^ (easylist.txt: 29215) -.affiliateprogram.keywordspy.com -# ||affil.mupromo.com^ (easylist.txt: 29211) -.affil.mupromo.com -# ||aff.svjump.com^ (easylist.txt: 29210) -.aff.svjump.com -# ||aff.marathonbet.com^ (easylist.txt: 29209) -.aff.marathonbet.com -# ||aff.eteachergroup.com^ (easylist.txt: 29208) -.aff.eteachergroup.com -# ||adziff.com^*/zdcse.min.js (easylist.txt: 29205) -.adziff.com/.*/zdcse\.min\.js -# ||adz.zwee.ly^ (easylist.txt: 29204) -.adz.zwee.ly -# ||advanced-intelligence.com/banner (easylist.txt: 29203) -.advanced-intelligence.com/banner -# ||adss.dotdo.net^ (easylist.txt: 29201) -.adss.dotdo.net -# ||adscaspion.appspot.com^ (easylist.txt: 29198) -.adscaspion.appspot.com -# ||ads.tremorhub.com^ (easylist.txt: 29197) -.ads.tremorhub.com -# ||ads.mp.mydas.mobi^ (easylist.txt: 29196) -.ads.mp.mydas.mobi -# ||adr-*.vindicosuite.com^ (easylist.txt: 29194) -.adr-*./.*\.vindicosuite\.com[^\w%.-] -.adr-*.vindicosuite.com -# ||adplus.goo.mx^ (easylist.txt: 29193) -.adplus.goo.mx -# ||adn.ebay.com^ (easylist.txt: 29192) -.adn.ebay.com -# ||adingo.jp.eimg.jp^ (easylist.txt: 29189) -.adingo.jp.eimg.jp -# ||adf.ly/images/banners/ (easylist.txt: 29185) -.adf.ly/images/banners/ -# ||add.bugun.com.tr^ (easylist.txt: 29182) -.add.bugun.com.tr -# ||adap.tv/redir/client/static/as3adplayer.swf (easylist.txt: 29179) -.adap.tv/redir/client/static/as3adplayer\.swf -# ||ad.winningpartner.com^ (easylist.txt: 29175) -.ad.winningpartner.com -# ||ad.vidaroo.com^ (easylist.txt: 29174) -.ad.vidaroo.com -# ||ad.spielothek.so^ (easylist.txt: 29171) -.ad.spielothek.so -# ||ad.smartclip.net^ (easylist.txt: 29170) -.ad.smartclip.net -# ||ad.sensismediasmart.com.au^ (easylist.txt: 29168) -.ad.sensismediasmart.com.au -# ||ad.reklamport.com^ (easylist.txt: 29167) -.ad.reklamport.com -# ||ad.rambler.ru^ (easylist.txt: 29165) -.ad.rambler.ru -# ||ad.r.worldssl.net^ (easylist.txt: 29164) -.ad.r.worldssl.net -# ||ad.proxy.sh^ (easylist.txt: 29163) -.ad.proxy.sh -# ||ad.pickple.net^ (easylist.txt: 29161) -.ad.pickple.net -# ||ad.outsidehub.com^ (easylist.txt: 29160) -.ad.outsidehub.com -# ||ad.openmultimedia.biz^ (easylist.txt: 29159) -.ad.openmultimedia.biz -# ||ad.mesomorphosis.com^ (easylist.txt: 29156) -.ad.mesomorphosis.com -# ||ad.mail.ru^ (easylist.txt: 29155) -.ad.mail.ru -# ||ad.livere.co.kr^ (easylist.txt: 29154) -.ad.livere.co.kr -# ||ad.jamba.net^ (easylist.txt: 29150) -.ad.jamba.net -# ||ad.idgtn.net^ (easylist.txt: 29147) -.ad.idgtn.net -# ||ad.icasthq.com^ (easylist.txt: 29146) -.ad.icasthq.com -# ||ad.foxnetworks.com^ (easylist.txt: 29144) -.ad.foxnetworks.com -# ||ad.flux.com^ (easylist.txt: 29143) -.ad.flux.com -# ||ad.bitmedia.io^ (easylist.txt: 29141) -.ad.bitmedia.io -# ||ad.accessmediaproductions.com^ (easylist.txt: 29138) -.ad.accessmediaproductions.com -# ||ad.about.co.kr^ (easylist.txt: 29137) -.ad.about.co.kr -# ||abacast.com/banner/ (easylist.txt: 29134) -.abacast.com/banner/ -# ||a1channel.net/img/watch_now.gif (easylist.txt: 29132) -.a1channel.net/img/watch_now\.gif -# ||a1channel.net/img/downloadbtn2.png (easylist.txt: 29131) -.a1channel.net/img/downloadbtn2\.png -# ||a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com^ (easylist.txt: 29130) -.a04296f070c0146f314d-0dcad72565cb350972beb3666a86f246.r50.cf5.rackcdn.com -# ||a.watershed-publishing.com^ (easylist.txt: 29129) -.a.watershed-publishing.com -# ||a.ucoz.net^ (easylist.txt: 29128) -.a.ucoz.net -# ||a.livesportmedia.eu^ (easylist.txt: 29127) -.a.livesportmedia.eu -# ||80.94.76.4/abd.php? (easylist.txt: 29124) -.80.94.76.4/abd\.php\? -# ||770.com/banniere.php? (easylist.txt: 29123) -.770.com/banniere\.php\? -# ||6theory.com/pub/ (easylist.txt: 29122) -.6theory.com/pub/ -# ||4getlikes.com/promo/ (easylist.txt: 29119) -.4getlikes.com/promo/ -# ||3dots.co.il/pop/ (easylist.txt: 29118) -.3dots.co.il/pop/ -# ||247hd.net/ad| (easylist.txt: 29111) -.247hd.net/ad$ -# ||1whois.org/static/popup.js (easylist.txt: 29105) -.1whois.org/static/popup\.js -# ||1stag.com/main/img/banners/ (easylist.txt: 29104) -.1stag.com/main/img/banners/ -# ||1page.co.za/affiliate/ (easylist.txt: 29103) -.1page.co.za/affiliate/ -# ||178.238.233.242/open.js (easylist.txt: 29102) -.178.238.233.242/open\.js -# ||12dayswidget.com/widgets/ (easylist.txt: 29098) -.12dayswidget.com/widgets/ -# ||110mb.com/images/banners/ (easylist.txt: 29097) -.110mb.com/images/banners/ -# ||1-million-usd.com/images/banners/ (easylist.txt: 29093) -.1-million-usd.com/images/banners/ -# ||04stream.com/pop*.js (easylist.txt: 29092) -.04stream.com/pop.*\.js -# ||000webhost.com/images/banners/ (easylist.txt: 29091) -.000webhost.com/images/banners/ -# -api.adyoulike.com (easylist.txt: 29090) -/.*-api\.adyoulike\.com -.*-api.adyoulike.com*. -# ||xxxmatch.com^$popup (easylist.txt: 29086) -.xxxmatch.com -# ||xmatch.com^$popup (easylist.txt: 29081) -.xmatch.com -# ||watchmygf.com^$popup (easylist.txt: 29078) -.watchmygf.com -# ||vlexokrako.com^$popup (easylist.txt: 29076) -.vlexokrako.com -# ||turnefo.ru^$popup (easylist.txt: 29075) -.turnefo.ru -# ||trafficstars.com^$popup (easylist.txt: 29074) -.trafficstars.com -# ||trafficbroker.com^$popup (easylist.txt: 29072) -.trafficbroker.com -# ||trackvoluum.com^$popup (easylist.txt: 29071) -.trackvoluum.com -# ||pornbus.org^$popup (easylist.txt: 29055) -.pornbus.org -# ||playgirl.com^$popup (easylist.txt: 29051) -.playgirl.com -# ||pinkberrytube.com^$popup (easylist.txt: 29050) -.pinkberrytube.com -# ||needlive.com^$popup (easylist.txt: 29048) -.needlive.com -# ||ipvertising.com^$popup (easylist.txt: 29042) -.ipvertising.com -# ||herezera.com^$popup (easylist.txt: 29036) -.herezera.com -# ||freecamsexposed.com^$popup (easylist.txt: 29031) -.freecamsexposed.com -# ||flagads.net^$popup (easylist.txt: 29027) -.flagads.net -# ||fbay.tv^$popup (easylist.txt: 29025) -.fbay.tv -# ||exogripper.com^$popup (easylist.txt: 29024) -.exogripper.com -# ||ertya.com^$popup (easylist.txt: 29021) -.ertya.com -# ||easysexdate.com^$popup (easylist.txt: 29017) -.easysexdate.com -# ||connexionsafe.com^$popup (easylist.txt: 29014) -.connexionsafe.com -# ||buy404s.com^$popup (easylist.txt: 29010) -.buy404s.com -# ||bitterstrawberry.com^$popup (easylist.txt: 29009) -.bitterstrawberry.com -# ||adtgs.com^$popup (easylist.txt: 29001) -.adtgs.com -# ||3questionsgetthegirl.com^$popup (easylist.txt: 28998) -.3questionsgetthegirl.com -# ||33traffic.com^$popup (easylist.txt: 28996) -.33traffic.com -# ||careerjournalonline.com^$popup (easylist.txt: 27956) -.careerjournalonline.com -# ||metaffiliation.com^*^taff= (easylist.txt: 26381) -.metaffiliation.com/.*[^\w%.-]taff= -# ||metaffiliation.com^*^maff= (easylist.txt: 26380) -.metaffiliation.com/.*[^\w%.-]maff= -# ||ltassrv.com/serve/ (easylist.txt: 26272) -.ltassrv.com/serve/ -# ||ltassrv.com/goads.swf (easylist.txt: 26271) -.ltassrv.com/goads\.swf -# ||doubleclick.net/xbbe/creative/vast? (easylist.txt: 25582) -.doubleclick.net/xbbe/creative/vast\? -# ||doubleclick.net/N2/pfadx/video.marketwatch.com/ (easylist.txt: 25517) -.doubleclick.net/N2/pfadx/video\.marketwatch\.com/ -# ||covertarget.com^*_*.php (easylist.txt: 25362) -.covertarget.com/.*_.*\.php -# ||clkrev.com^ (easylist.txt: 25301) -.clkrev.com -# ||78.140.131.214^ (easylist.txt: 24340) -.78.140.131.214 -# ||74.117.182.77^ (easylist.txt: 24336) -.74.117.182.77 -# ||46.165.197.231^ (easylist.txt: 24320) -.46.165.197.231 -# ||46.165.197.153^ (easylist.txt: 24319) -.46.165.197.153 -# _popunder+$popup (easylist.txt: 7171) -/.*_popunder\+ -# ?zoneid=*_bannerid=$popup (easylist.txt: 7170) -/.*\?zoneid=.*_bannerid= -# ?iiadext=$popup (easylist.txt: 7169) -/.*\?iiadext= -# ?bannerid=*&punder=$popup (easylist.txt: 7168) -/.*\?bannerid=.*&punder= -# ?AdUrl=$popup (easylist.txt: 7167) -/.*\?AdUrl= -# =popunders&$popup (easylist.txt: 7166) -/.*=popunders& -# =popunder&$popup (easylist.txt: 7165) -/.*=popunder& -# ://adv.$popup (easylist.txt: 7164) -/.*://adv\. -adv.*. -# ://ads.$popup (easylist.txt: 7163) -/.*://ads\. -ads.*. -# /yesbaby.$popup (easylist.txt: 7162) -/(.*/)?yesbaby\. -yesbaby.*. -# /srvclk.php?$popup (easylist.txt: 7161) -/(.*/)?srvclk\.php\? -# /spopunder^$popup (easylist.txt: 7160) -/(.*/)?spopunder[^\w%.-] -# /showads/*$popup (easylist.txt: 7159) -/(.*/)?showads/.* -# /servlet/ajrotator/*$popup (easylist.txt: 7158) -/(.*/)?servlet/ajrotator/.* -# /rotator.php?$popup (easylist.txt: 7157) -/(.*/)?rotator\.php\? -# /Redirect.engine$popup (easylist.txt: 7155) -/(.*/)?Redirect\.engine -Redirect.engine*. -# /Redirect.eng?$popup (easylist.txt: 7154) -/(.*/)?Redirect\.eng\? -# /realmedia/ads/*$popup (easylist.txt: 7153) -/(.*/)?realmedia/ads/.* -# /punder.php$popup (easylist.txt: 7152) -/(.*/)?punder\.php -punder.php*. -# /promoredirect?*&campaign=*&zone=$popup (easylist.txt: 7151) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /popupads.$popup (easylist.txt: 7150) -/(.*/)?popupads\. -popupads.*. -# /popunder_$popup (easylist.txt: 7149) -/(.*/)?popunder_ -# /popunder.$popup (easylist.txt: 7148) -/(.*/)?popunder\. -popunder.*. -# /popout.$popup (easylist.txt: 7147) -/(.*/)?popout\. -popout.*. -# /lr.php?zoneid=$popup (easylist.txt: 7146) -/(.*/)?lr\.php\?zoneid= -# /bani/index.php?id=$popup (easylist.txt: 7144) -/(.*/)?bani/index\.php\?id= -# /afu.php?$popup (easylist.txt: 7143) -/(.*/)?afu\.php\? -# /advlink.$popup (easylist.txt: 7142) -/(.*/)?advlink\. -advlink.*. -# /adsynserveuserid=$popup (easylist.txt: 7141) -/(.*/)?adsynserveuserid= -# /adstream_sx.ads/*$popup (easylist.txt: 7140) -/(.*/)?adstream_sx\.ads/.* -# /adserver.$popup (easylist.txt: 7139) -/(.*/)?adserver\. -adserver.*. -# /adServe/sa?cid=$popup (easylist.txt: 7138) -/(.*/)?adServe/sa\?cid= -# /ads.htm$popup (easylist.txt: 7137) -/(.*/)?ads\.htm -ads.htm*. -# /AdHandler.aspx?$popup (easylist.txt: 7136) -/(.*/)?AdHandler\.aspx\? -# /adclick.$popup (easylist.txt: 7135) -/(.*/)?adclick\. -adclick.*. -# /ad_pop.php?$popup (easylist.txt: 7134) -/(.*/)?ad_pop\.php\? -# /ad132m/*$popup (easylist.txt: 7133) -/(.*/)?ad132m/.* -# /ad/window.php?$popup (easylist.txt: 7132) -/(.*/)?ad/window\.php\? -# /ad/display.php$popup (easylist.txt: 7131) -/(.*/)?ad/display\.php -# /ad.php|$popup (easylist.txt: 7130) -/(.*/)?ad\.php$ -ad.php -# /ad.php?zone$popup (easylist.txt: 7129) -/(.*/)?ad\.php\?zone -# /ad.php?tag=$popup (easylist.txt: 7128) -/(.*/)?ad\.php\?tag= -# /a/display.php?$popup (easylist.txt: 7127) -/(.*/)?a/display\.php\? -# /?reef=$popup (easylist.txt: 7126) -/(.*/)?\?reef= -# /?placement=*&redirect$popup (easylist.txt: 7125) -/(.*/)?\?placement=.*&redirect -# .engine?PlacementId=$popup (easylist.txt: 7124) -/.*\.engine\?PlacementId= -# .com/ads?$popup (easylist.txt: 7123) -/.*\.com/ads\? -.*.com/ads\? -# .com/?adv=$popup (easylist.txt: 7122) -/.*\.com/\?adv= -.*.com/\?adv= -# .co/ads/$popup (easylist.txt: 7121) -/.*\.co/ads/ -.*.co/ads/ -# -ads-campaign/$popup (easylist.txt: 7120) -/.*-ads-campaign/ -.*-ads-campaign -# &program=revshare&$popup (easylist.txt: 7119) -/.*&program=revshare& -# &popunder=$popup (easylist.txt: 7118) -/.*&popunder= -# _a468x60. (easylist.txt: 7115) -/.*_a468x60\. -# _980x100. (easylist.txt: 7114) -/.*_980x100\. -# _970x30_ (easylist.txt: 7113) -/.*_970x30_ -# _960_90. (easylist.txt: 7112) -/.*_960_90\. -# _936x60. (easylist.txt: 7111) -/.*_936x60\. -# _900x350. (easylist.txt: 7110) -/.*_900x350\. -# _80x468. (easylist.txt: 7109) -/.*_80x468\. -# _800x80_ (easylist.txt: 7108) -/.*_800x80_ -# _800x100. (easylist.txt: 7107) -/.*_800x100\. -# _798x99_ (easylist.txt: 7106) -/.*_798x99_ -# _796x110_ (easylist.txt: 7105) -/.*_796x110_ -# _768x90_ (easylist.txt: 7104) -/.*_768x90_ -# _764x70_ (easylist.txt: 7103) -/.*_764x70_ -# _764x70. (easylist.txt: 7102) -/.*_764x70\. -# _760x90_ (easylist.txt: 7101) -/.*_760x90_ -# _760x100. (easylist.txt: 7100) -/.*_760x100\. -# _750x100. (easylist.txt: 7099) -/.*_750x100\. -# _745_90. (easylist.txt: 7098) -/.*_745_90\. -# _745_60. (easylist.txt: 7097) -/.*_745_60\. -# _730x90_ (easylist.txt: 7096) -/.*_730x90_ -# _730x60_ (easylist.txt: 7095) -/.*_730x60_ -# _730_440. (easylist.txt: 7094) -/.*_730_440\. -# _728x90v1. (easylist.txt: 7093) -/.*_728x90v1\. -# _728x90px_ (easylist.txt: 7092) -/.*_728x90px_ -# _728x90px. (easylist.txt: 7091) -/.*_728x90px\. -# _728x90px- (easylist.txt: 7090) -/.*_728x90px- -# _728x90pg_ (easylist.txt: 7089) -/.*_728x90pg_ -# _728x90b_ (easylist.txt: 7088) -/.*_728x90b_ -# _728x90a_ (easylist.txt: 7087) -/.*_728x90a_ -# _728x90a. (easylist.txt: 7086) -/.*_728x90a\. -# _728x90_ (easylist.txt: 7085) -/.*_728x90_ -# _728x901. (easylist.txt: 7084) -/.*_728x901\. -# _728x90/ (easylist.txt: 7083) -/.*_728x90/ -# _728x90. (easylist.txt: 7082) -/.*_728x90\. -# _728x90- (easylist.txt: 7081) -/.*_728x90- -# _728x90& (easylist.txt: 7080) -/.*_728x90& -# _728x60. (easylist.txt: 7079) -/.*_728x60\. -# _728x150. (easylist.txt: 7078) -/.*_728x150\. -# _728x-90. (easylist.txt: 7077) -/.*_728x-90\. -# _728by90_ (easylist.txt: 7076) -/.*_728by90_ -# _728_x_90_ (easylist.txt: 7075) -/.*_728_x_90_ -# _728_90_ (easylist.txt: 7074) -/.*_728_90_ -# _728_90. (easylist.txt: 7073) -/.*_728_90\. -# _728.htm (easylist.txt: 7072) -/.*_728\.htm -# _728-90_ (easylist.txt: 7071) -/.*_728-90_ -# _728-90. (easylist.txt: 7070) -/.*_728-90\. -# _720x90_ (easylist.txt: 7069) -/.*_720x90_ -# _720x90. (easylist.txt: 7068) -/.*_720x90\. -# _720_90. (easylist.txt: 7067) -/.*_720_90\. -# _700x200. (easylist.txt: 7066) -/.*_700x200\. -# _700_200_ (easylist.txt: 7065) -/.*_700_200_ -# _700_150_ (easylist.txt: 7064) -/.*_700_150_ -# _700_100_ (easylist.txt: 7063) -/.*_700_100_ -# _682x90_ (easylist.txt: 7062) -/.*_682x90_ -# _680x93_ (easylist.txt: 7061) -/.*_680x93_ -# _672x120_ (easylist.txt: 7060) -/.*_672x120_ -# _650x80_ (easylist.txt: 7059) -/.*_650x80_ -# _650x350. (easylist.txt: 7058) -/.*_650x350\. -# _638x200_ (easylist.txt: 7057) -/.*_638x200_ -# _620x203_ (easylist.txt: 7056) -/.*_620x203_ -# _600x90. (easylist.txt: 7055) -/.*_600x90\. -# _600x80. (easylist.txt: 7054) -/.*_600x80\. -# _600x180. (easylist.txt: 7053) -/.*_600x180\. -# _600x160. (easylist.txt: 7052) -/.*_600x160\. -# _600x120_ (easylist.txt: 7051) -/.*_600x120_ -# _600-90. (easylist.txt: 7050) -/.*_600-90\. -# _590x105. (easylist.txt: 7049) -/.*_590x105\. -# _585x75_ (easylist.txt: 7048) -/.*_585x75_ -# _585x75- (easylist.txt: 7047) -/.*_585x75- -# _580x100. (easylist.txt: 7046) -/.*_580x100\. -# _555x70. (easylist.txt: 7045) -/.*_555x70\. -# _550x150. (easylist.txt: 7044) -/.*_550x150\. -# _540_70_ (easylist.txt: 7043) -/.*_540_70_ -# _540_70. (easylist.txt: 7042) -/.*_540_70\. -# _500x440. (easylist.txt: 7041) -/.*_500x440\. -# _490-90_ (easylist.txt: 7040) -/.*_490-90_ -# _486x60_ (easylist.txt: 7039) -/.*_486x60_ -# _486x60. (easylist.txt: 7038) -/.*_486x60\. -# _480x60_ (easylist.txt: 7037) -/.*_480x60_ -# _480x60/ (easylist.txt: 7036) -/.*_480x60/ -# _480x60. (easylist.txt: 7035) -/.*_480x60\. -# _480x60- (easylist.txt: 7034) -/.*_480x60- -# _480_80_ (easylist.txt: 7033) -/.*_480_80_ -# _480_60. (easylist.txt: 7032) -/.*_480_60\. -# _468x90_ (easylist.txt: 7031) -/.*_468x90_ -# _468x90. (easylist.txt: 7030) -/.*_468x90\. -# _468x80_ (easylist.txt: 7029) -/.*_468x80_ -# _468x80/ (easylist.txt: 7028) -/.*_468x80/ -# _468x80. (easylist.txt: 7027) -/.*_468x80\. -# _468x80- (easylist.txt: 7026) -/.*_468x80- -# _468x6o_ (easylist.txt: 7025) -/.*_468x6o_ -# _468x60px_ (easylist.txt: 7024) -/.*_468x60px_ -# _468x60b. (easylist.txt: 7023) -/.*_468x60b\. -# _468x60_ (easylist.txt: 7022) -/.*_468x60_ -# _468x60/ (easylist.txt: 7021) -/.*_468x60/ -# _468x60. (easylist.txt: 7020) -/.*_468x60\. -# _468x60- (easylist.txt: 7019) -/.*_468x60- -# _468x120. (easylist.txt: 7018) -/.*_468x120\. -# _468x100_ (easylist.txt: 7017) -/.*_468x100_ -# _468x100. (easylist.txt: 7016) -/.*_468x100\. -# _468x060_ (easylist.txt: 7015) -/.*_468x060_ -# _468x060. (easylist.txt: 7014) -/.*_468x060\. -# _468x060- (easylist.txt: 7013) -/.*_468x060- -# _468_80_ (easylist.txt: 7012) -/.*_468_80_ -# _468_80. (easylist.txt: 7011) -/.*_468_80\. -# _468_60_ (easylist.txt: 7010) -/.*_468_60_ -# _468_60. (easylist.txt: 7009) -/.*_468_60\. -# _468_60- (easylist.txt: 7008) -/.*_468_60- -# _468.htm (easylist.txt: 7007) -/.*_468\.htm -# _468.gif (easylist.txt: 7006) -/.*_468\.gif -# _468-60. (easylist.txt: 7005) -/.*_468-60\. -# _465x110_ (easylist.txt: 7004) -/.*_465x110_ -# _460x60. (easylist.txt: 7003) -/.*_460x60\. -# _460_60. (easylist.txt: 7002) -/.*_460_60\. -# _438x60_ (easylist.txt: 7001) -/.*_438x60_ -# _438x60. (easylist.txt: 7000) -/.*_438x60\. -# _438x50. (easylist.txt: 6999) -/.*_438x50\. -# _420x80_ (easylist.txt: 6998) -/.*_420x80_ -# _420x80. (easylist.txt: 6997) -/.*_420x80\. -# _400x68. (easylist.txt: 6996) -/.*_400x68\. -# _400x60. (easylist.txt: 6995) -/.*_400x60\. -# _400-80. (easylist.txt: 6994) -/.*_400-80\. -# _370x270. (easylist.txt: 6993) -/.*_370x270\. -# _350x100. (easylist.txt: 6992) -/.*_350x100\. -# _350_100_ (easylist.txt: 6991) -/.*_350_100_ -# _350_100. (easylist.txt: 6990) -/.*_350_100\. -# _336x850. (easylist.txt: 6989) -/.*_336x850\. -# _336x280s. (easylist.txt: 6988) -/.*_336x280s\. -# _336x280a. (easylist.txt: 6987) -/.*_336x280a\. -# _336x280_ (easylist.txt: 6986) -/.*_336x280_ -# _336x120. (easylist.txt: 6985) -/.*_336x120\. -# _323x120_ (easylist.txt: 6984) -/.*_323x120_ -# _320x250_ (easylist.txt: 6983) -/.*_320x250_ -# _300x600_ (easylist.txt: 6982) -/.*_300x600_ -# _300x600. (easylist.txt: 6981) -/.*_300x600\. -# _300x250v2. (easylist.txt: 6980) -/.*_300x250v2\. -# _300x250px. (easylist.txt: 6979) -/.*_300x250px\. -# _300x250b. (easylist.txt: 6978) -/.*_300x250b\. -# _300x250a_ (easylist.txt: 6977) -/.*_300x250a_ -# _300x250_ (easylist.txt: 6976) -/.*_300x250_ -# _300x250. (easylist.txt: 6975) -/.*_300x250\. -# _300x250- (easylist.txt: 6974) -/.*_300x250- -# _300x160_ (easylist.txt: 6973) -/.*_300x160_ -# _300_60_ (easylist.txt: 6972) -/.*_300_60_ -# _300_250_ (easylist.txt: 6971) -/.*_300_250_ -# _300_250. (easylist.txt: 6970) -/.*_300_250\. -# _300.htm (easylist.txt: 6969) -/.*_300\.htm -# _300-250- (easylist.txt: 6968) -/.*_300-250- -# _200x600_ (easylist.txt: 6967) -/.*_200x600_ -# _180x450_ (easylist.txt: 6966) -/.*_180x450_ -# _180x300_ (easylist.txt: 6965) -/.*_180x300_ -# _160x600b. (easylist.txt: 6964) -/.*_160x600b\. -# _160x600_ (easylist.txt: 6963) -/.*_160x600_ -# _160x600/ (easylist.txt: 6962) -/.*_160x600/ -# _160x600. (easylist.txt: 6961) -/.*_160x600\. -# _160x600- (easylist.txt: 6960) -/.*_160x600- -# _160x600& (easylist.txt: 6959) -/.*_160x600& -# _160x500. (easylist.txt: 6958) -/.*_160x500\. -# _160x400. (easylist.txt: 6957) -/.*_160x400\. -# _160x350. (easylist.txt: 6956) -/.*_160x350\. -# _160x300_ (easylist.txt: 6955) -/.*_160x300_ -# _160x300. (easylist.txt: 6954) -/.*_160x300\. -# _160x290. (easylist.txt: 6953) -/.*_160x290\. -# _160x1600. (easylist.txt: 6952) -/.*_160x1600\. -# _160by600_ (easylist.txt: 6951) -/.*_160by600_ -# _160_600_ (easylist.txt: 6950) -/.*_160_600_ -# _160_600. (easylist.txt: 6949) -/.*_160_600\. -# _160-600. (easylist.txt: 6948) -/.*_160-600\. -# _150x700_ (easylist.txt: 6947) -/.*_150x700_ -# _140x600_ (easylist.txt: 6946) -/.*_140x600_ -# _140x600. (easylist.txt: 6945) -/.*_140x600\. -# _125x600_ (easylist.txt: 6944) -/.*_125x600_ -# _120x800a. (easylist.txt: 6943) -/.*_120x800a\. -# _120x60_ (easylist.txt: 6942) -/.*_120x60_ -# _120x600px. (easylist.txt: 6941) -/.*_120x600px\. -# _120x600a. (easylist.txt: 6940) -/.*_120x600a\. -# _120x600_ (easylist.txt: 6939) -/.*_120x600_ -# _120x600. (easylist.txt: 6938) -/.*_120x600\. -# _120x600- (easylist.txt: 6937) -/.*_120x600- -# _120x60. (easylist.txt: 6936) -/.*_120x60\. -# _120x500. (easylist.txt: 6935) -/.*_120x500\. -# _120x240_ (easylist.txt: 6934) -/.*_120x240_ -# _120x240. (easylist.txt: 6933) -/.*_120x240\. -# _120h600. (easylist.txt: 6932) -/.*_120h600\. -# _120_x_600. (easylist.txt: 6931) -/.*_120_x_600\. -# _120_600_ (easylist.txt: 6930) -/.*_120_600_ -# _120_600. (easylist.txt: 6929) -/.*_120_600\. -# _120_60. (easylist.txt: 6928) -/.*_120_60\. -# _115x220. (easylist.txt: 6927) -/.*_115x220\. -# _100x480_ (easylist.txt: 6926) -/.*_100x480_ -# =900x60; (easylist.txt: 6925) -/.*=900x60; -# =888x10; (easylist.txt: 6924) -/.*=888x10; -# =760x120& (easylist.txt: 6923) -/.*=760x120& -# =728x90_ (easylist.txt: 6922) -/.*=728x90_ -# =728x90; (easylist.txt: 6921) -/.*=728x90; -# =728x90/ (easylist.txt: 6920) -/.*=728x90/ -# =728x90, (easylist.txt: 6919) -/.*=728x90, -# =728x90& (easylist.txt: 6918) -/.*=728x90& -# =480x60; (easylist.txt: 6917) -/.*=480x60; -# =468x80_ (easylist.txt: 6916) -/.*=468x80_ -# =468x60_ (easylist.txt: 6915) -/.*=468x60_ -# =468x60; (easylist.txt: 6914) -/.*=468x60; -# =468x60/ (easylist.txt: 6913) -/.*=468x60/ -# =468x60, (easylist.txt: 6912) -/.*=468x60, -# =468x60& (easylist.txt: 6911) -/.*=468x60& -# =440x410; (easylist.txt: 6910) -/.*=440x410; -# =336x280; (easylist.txt: 6909) -/.*=336x280; -# =336x280, (easylist.txt: 6908) -/.*=336x280, -# =300x300; (easylist.txt: 6907) -/.*=300x300; -# =300x250_ (easylist.txt: 6906) -/.*=300x250_ -# =300x250; (easylist.txt: 6905) -/.*=300x250; -# =300x250/ (easylist.txt: 6904) -/.*=300x250/ -# =300x250, (easylist.txt: 6903) -/.*=300x250, -# =300x250& (easylist.txt: 6902) -/.*=300x250& -# =234x60_ (easylist.txt: 6901) -/.*=234x60_ -# =234x60; (easylist.txt: 6900) -/.*=234x60; -# =160x600; (easylist.txt: 6899) -/.*=160x600; -# =160x600, (easylist.txt: 6898) -/.*=160x600, -# =160x600& (easylist.txt: 6897) -/.*=160x600& -# =160x160; (easylist.txt: 6896) -/.*=160x160; -# =120x600; (easylist.txt: 6895) -/.*=120x600; -# =120x600, (easylist.txt: 6894) -/.*=120x600, -# 760x90.jpg| (easylist.txt: 6893) -/.*760x90\.jpg$ -.*760x90.jpg -# 750x90.gif| (easylist.txt: 6892) -/.*750x90\.gif$ -.*750x90.gif -# 750x80.swf| (easylist.txt: 6891) -/.*750x80\.swf$ -.*750x80.swf -# 728x90_2.jpg| (easylist.txt: 6890) -/.*728x90_2\.jpg$ -# 728x90.swf| (easylist.txt: 6889) -/.*728x90\.swf$ -.*728x90.swf -# 728x90.swf? (easylist.txt: 6888) -/.*728x90\.swf\? -# 728x90.png| (easylist.txt: 6887) -/.*728x90\.png$ -.*728x90.png -# 728x90.php| (easylist.txt: 6886) -/.*728x90\.php$ -.*728x90.php -# 728x90.php? (easylist.txt: 6885) -/.*728x90\.php\? -# 728x90.jpg| (easylist.txt: 6884) -/.*728x90\.jpg$ -.*728x90.jpg -# 728x90.htm| (easylist.txt: 6883) -/.*728x90\.htm$ -.*728x90.htm -# 728x90.html| (easylist.txt: 6882) -/.*728x90\.html$ -.*728x90.html -# 728x90.gif| (easylist.txt: 6881) -/.*728x90\.gif$ -.*728x90.gif -# 728x290.gif| (easylist.txt: 6880) -/.*728x290\.gif$ -.*728x290.gif -# 700x200.gif| (easylist.txt: 6879) -/.*700x200\.gif$ -.*700x200.gif -# 700_200.jpg| (easylist.txt: 6878) -/.*700_200\.jpg$ -# 700_200.gif| (easylist.txt: 6877) -/.*700_200\.gif$ -# 480x80.jpg| (easylist.txt: 6876) -/.*480x80\.jpg$ -.*480x80.jpg -# 480x60.png| (easylist.txt: 6875) -/.*480x60\.png$ -.*480x60.png -# 470x60.swf| (easylist.txt: 6874) -/.*470x60\.swf$ -.*470x60.swf -# 470x60.swf? (easylist.txt: 6873) -/.*470x60\.swf\? -# 470x60.jpg| (easylist.txt: 6872) -/.*470x60\.jpg$ -.*470x60.jpg -# 470x60.gif| (easylist.txt: 6871) -/.*470x60\.gif$ -.*470x60.gif -# 468x80.gif| (easylist.txt: 6870) -/.*468x80\.gif$ -.*468x80.gif -# 468x60_2.jpg| (easylist.txt: 6869) -/.*468x60_2\.jpg$ -# 468x60_1.gif| (easylist.txt: 6868) -/.*468x60_1\.gif$ -# 468x60.swf| (easylist.txt: 6867) -/.*468x60\.swf$ -.*468x60.swf -# 468x60.swf? (easylist.txt: 6866) -/.*468x60\.swf\? -# 468x60.php| (easylist.txt: 6865) -/.*468x60\.php$ -.*468x60.php -# 468x60.php? (easylist.txt: 6864) -/.*468x60\.php\? -# 468x60.jpg| (easylist.txt: 6863) -/.*468x60\.jpg$ -.*468x60.jpg -# 468x60.htm| (easylist.txt: 6862) -/.*468x60\.htm$ -.*468x60.htm -# 468x60.html| (easylist.txt: 6861) -/.*468x60\.html$ -.*468x60.html -# 468x60.gif| (easylist.txt: 6860) -/.*468x60\.gif$ -.*468x60.gif -# 468_60.gif| (easylist.txt: 6859) -/.*468_60\.gif$ -# 468-60.swf| (easylist.txt: 6858) -/.*468-60\.swf$ -.*468-60.swf -# 468-60.swf? (easylist.txt: 6857) -/.*468-60\.swf\? -# 468-60.gif| (easylist.txt: 6856) -/.*468-60\.gif$ -.*468-60.gif -# 460x70.jpg| (easylist.txt: 6855) -/.*460x70\.jpg$ -.*460x70.jpg -# 450x55.jpg| (easylist.txt: 6854) -/.*450x55\.jpg$ -.*450x55.jpg -# 160x6001.jpg| (easylist.txt: 6853) -/.*160x6001\.jpg$ -.*160x6001.jpg -# 160x600.swf| (easylist.txt: 6852) -/.*160x600\.swf$ -.*160x600.swf -# 160x600.swf? (easylist.txt: 6851) -/.*160x600\.swf\? -# 160x600.png| (easylist.txt: 6850) -/.*160x600\.png$ -.*160x600.png -# 160x600.php| (easylist.txt: 6849) -/.*160x600\.php$ -.*160x600.php -# 160x600.php? (easylist.txt: 6848) -/.*160x600\.php\? -# 160x600.jpg| (easylist.txt: 6847) -/.*160x600\.jpg$ -.*160x600.jpg -# 160x600.htm| (easylist.txt: 6846) -/.*160x600\.htm$ -.*160x600.htm -# 160x600.html| (easylist.txt: 6845) -/.*160x600\.html$ -.*160x600.html -# 160x600.gif| (easylist.txt: 6844) -/.*160x600\.gif$ -.*160x600.gif -# 160x300.gif| (easylist.txt: 6843) -/.*160x300\.gif$ -.*160x300.gif -# 133x394.gif| (easylist.txt: 6842) -/.*133x394\.gif$ -.*133x394.gif -# 125x600.swf| (easylist.txt: 6841) -/.*125x600\.swf$ -.*125x600.swf -# 125x600.swf? (easylist.txt: 6840) -/.*125x600\.swf\? -# 125x600.gif| (easylist.txt: 6839) -/.*125x600\.gif$ -.*125x600.gif -# 120x600.swf| (easylist.txt: 6838) -/.*120x600\.swf$ -.*120x600.swf -# 120x600.swf? (easylist.txt: 6837) -/.*120x600\.swf\? -# 120x600.png| (easylist.txt: 6836) -/.*120x600\.png$ -.*120x600.png -# 120x600.htm| (easylist.txt: 6835) -/.*120x600\.htm$ -.*120x600.htm -# 120x600.html| (easylist.txt: 6834) -/.*120x600\.html$ -.*120x600.html -# 120x600.gif| (easylist.txt: 6833) -/.*120x600\.gif$ -.*120x600.gif -# 120x600.gif? (easylist.txt: 6832) -/.*120x600\.gif\? -# 120x500.gif| (easylist.txt: 6831) -/.*120x500\.gif$ -.*120x500.gif -# 120-600.gif| (easylist.txt: 6830) -/.*120-600\.gif$ -.*120-600.gif -# /top728x90. (easylist.txt: 6829) -/(.*/)?top728x90\. -top728x90.*. -# /top728.html (easylist.txt: 6828) -/(.*/)?top728\.html -top728.html*. -# /top468.html (easylist.txt: 6827) -/(.*/)?top468\.html -top468.html*. -# /new300x250/* (easylist.txt: 6826) -/(.*/)?new300x250/.* -# /new160x600/* (easylist.txt: 6825) -/(.*/)?new160x600/.* -# /lightake728x90. (easylist.txt: 6824) -/(.*/)?lightake728x90\. -lightake728x90.*. -# /L300xH250/* (easylist.txt: 6823) -/(.*/)?L300xH250/.* -# /img/728_90 (easylist.txt: 6822) -/(.*/)?img/728_90 -# /img/468_60 (easylist.txt: 6821) -/(.*/)?img/468_60 -# /head486x60. (easylist.txt: 6820) -/(.*/)?head486x60\. -head486x60.*. -# /bottom728x90. (easylist.txt: 6819) -/(.*/)?bottom728x90\. -bottom728x90.*. -# /bottom728.html (easylist.txt: 6818) -/(.*/)?bottom728\.html -bottom728.html*. -# /ban468. (easylist.txt: 6817) -/(.*/)?ban468\. -ban468.*. -# /_iframe728x90. (easylist.txt: 6816) -/(.*/)?_iframe728x90\. -# /980x90. (easylist.txt: 6815) -/(.*/)?980x90\. -980x90.*. -# /960_60_ (easylist.txt: 6814) -/(.*/)?960_60_ -# /950_250. (easylist.txt: 6813) -/(.*/)?950_250\. -# /900x350_ (easylist.txt: 6812) -/(.*/)?900x350_ -# /900x130_ (easylist.txt: 6811) -/(.*/)?900x130_ -# /80x468_ (easylist.txt: 6810) -/(.*/)?80x468_ -# /800x90. (easylist.txt: 6809) -/(.*/)?800x90\. -800x90.*. -# /780x90. (easylist.txt: 6808) -/(.*/)?780x90\. -780x90.*. -# /768x90. (easylist.txt: 6807) -/(.*/)?768x90\. -768x90.*. -# /768x90- (easylist.txt: 6806) -/(.*/)?768x90- -768x90-*. -# /760x90_ (easylist.txt: 6805) -/(.*/)?760x90_ -# /760x120_ (easylist.txt: 6804) -/(.*/)?760x120_ -# /760x120. (easylist.txt: 6803) -/(.*/)?760x120\. -760x120.*. -# /750x100. (easylist.txt: 6802) -/(.*/)?750x100\. -750x100.*. -# /750-100. (easylist.txt: 6801) -/(.*/)?750-100\. -750-100.*. -# /728x90top. (easylist.txt: 6800) -/(.*/)?728x90top\. -728x90top.*. -# /728x90l. (easylist.txt: 6799) -/(.*/)?728x90l\. -728x90l.*. -# /728x90h. (easylist.txt: 6798) -/(.*/)?728x90h\. -728x90h.*. -# /728x90g. (easylist.txt: 6797) -/(.*/)?728x90g\. -728x90g.*. -# /728x90d. (easylist.txt: 6796) -/(.*/)?728x90d\. -728x90d.*. -# /728x90b/* (easylist.txt: 6795) -/(.*/)?728x90b/.* -# /728x90b. (easylist.txt: 6794) -/(.*/)?728x90b\. -728x90b.*. -# /728x90_ (easylist.txt: 6793) -/(.*/)?728x90_ -# /728x90? (easylist.txt: 6792) -/(.*/)?728x90\? -# /728x901. (easylist.txt: 6791) -/(.*/)?728x901\. -728x901.*. -# /728x90/* (easylist.txt: 6790) -/(.*/)?728x90/.* -# /728x90. (easylist.txt: 6789) -/(.*/)?728x90\. -728x90.*. -# /728x90- (easylist.txt: 6788) -/(.*/)?728x90- -728x90-*. -# /728x79_ (easylist.txt: 6787) -/(.*/)?728x79_ -# /728x180- (easylist.txt: 6786) -/(.*/)?728x180- -728x180-*. -# /728x15. (easylist.txt: 6785) -/(.*/)?728x15\. -728x15.*. -# /728by90_ (easylist.txt: 6784) -/(.*/)?728by90_ -# /728_90n. (easylist.txt: 6783) -/(.*/)?728_90n\. -# /728_90_ (easylist.txt: 6782) -/(.*/)?728_90_ -# /728_90/* (easylist.txt: 6781) -/(.*/)?728_90/.* -# /728_90. (easylist.txt: 6780) -/(.*/)?728_90\. -# /728_200_ (easylist.txt: 6779) -/(.*/)?728_200_ -# /728_200. (easylist.txt: 6778) -/(.*/)?728_200\. -# /728-90_ (easylist.txt: 6776) -/(.*/)?728-90_ -# /728-90/* (easylist.txt: 6775) -/(.*/)?728-90/.* -# /728-90. (easylist.txt: 6774) -/(.*/)?728-90\. -728-90.*. -# /728-90- (easylist.txt: 6773) -/(.*/)?728-90- -728-90-*. -# /700x90. (easylist.txt: 6772) -/(.*/)?700x90\. -700x90.*. -# /700x250. (easylist.txt: 6771) -/(.*/)?700x250\. -700x250.*. -# /700x120. (easylist.txt: 6770) -/(.*/)?700x120\. -700x120.*. -# /700x100. (easylist.txt: 6769) -/(.*/)?700x100\. -700x100.*. -# /700_200. (easylist.txt: 6768) -/(.*/)?700_200\. -# /700_100_ (easylist.txt: 6767) -/(.*/)?700_100_ -# /660x60. (easylist.txt: 6766) -/(.*/)?660x60\. -660x60.*. -# /660x120_ (easylist.txt: 6765) -/(.*/)?660x120_ -# /640x80- (easylist.txt: 6764) -/(.*/)?640x80- -640x80-*. -# /640x100/* (easylist.txt: 6763) -/(.*/)?640x100/.* -# /60x468. (easylist.txt: 6762) -/(.*/)?60x468\. -60x468.*. -# /600x90. (easylist.txt: 6761) -/(.*/)?600x90\. -600x90.*. -# /600x75_ (easylist.txt: 6760) -/(.*/)?600x75_ -# /600x160_ (easylist.txt: 6759) -/(.*/)?600x160_ -# /600_90_ (easylist.txt: 6758) -/(.*/)?600_90_ -# /600_120_ (easylist.txt: 6757) -/(.*/)?600_120_ -# /600-90. (easylist.txt: 6756) -/(.*/)?600-90\. -600-90.*. -# /600-60. (easylist.txt: 6755) -/(.*/)?600-60\. -600-60.*. -# /540x80_ (easylist.txt: 6754) -/(.*/)?540x80_ -# /530x60_ (easylist.txt: 6753) -/(.*/)?530x60_ -# /500x90. (easylist.txt: 6752) -/(.*/)?500x90\. -500x90.*. -# /496_98_ (easylist.txt: 6751) -/(.*/)?496_98_ -# /486x60_ (easylist.txt: 6750) -/(.*/)?486x60_ -# /480x70_ (easylist.txt: 6749) -/(.*/)?480x70_ -# /480x60_ (easylist.txt: 6748) -/(.*/)?480x60_ -# /480x60/* (easylist.txt: 6747) -/(.*/)?480x60/.* -# /480x60. (easylist.txt: 6746) -/(.*/)?480x60\. -480x60.*. -# /480x60- (easylist.txt: 6745) -/(.*/)?480x60- -480x60-*. -# /480x030_ (easylist.txt: 6744) -/(.*/)?480x030_ -# /480x030. (easylist.txt: 6743) -/(.*/)?480x030\. -480x030.*. -# /475x150- (easylist.txt: 6742) -/(.*/)?475x150- -475x150-*. -# /470x030_ (easylist.txt: 6741) -/(.*/)?470x030_ -# /468x80g. (easylist.txt: 6740) -/(.*/)?468x80g\. -468x80g.*. -# /468x80b. (easylist.txt: 6739) -/(.*/)?468x80b\. -468x80b.*. -# /468x80_ (easylist.txt: 6738) -/(.*/)?468x80_ -# /468x80/* (easylist.txt: 6737) -/(.*/)?468x80/.* -# /468x80. (easylist.txt: 6736) -/(.*/)?468x80\. -468x80.*. -# /468x80- (easylist.txt: 6735) -/(.*/)?468x80- -468x80-*. -# /468x72_ (easylist.txt: 6734) -/(.*/)?468x72_ -# /468x72. (easylist.txt: 6733) -/(.*/)?468x72\. -468x72.*. -# /468x70- (easylist.txt: 6732) -/(.*/)?468x70- -468x70-*. -# /468x60v1_ (easylist.txt: 6731) -/(.*/)?468x60v1_ -# /468x60b. (easylist.txt: 6730) -/(.*/)?468x60b\. -468x60b.*. -# /468x60a_ (easylist.txt: 6729) -/(.*/)?468x60a_ -# /468x60a. (easylist.txt: 6728) -/(.*/)?468x60a\. -468x60a.*. -# /468x60_ (easylist.txt: 6727) -/(.*/)?468x60_ -# /468x60/* (easylist.txt: 6726) -/(.*/)?468x60/.* -# /468x60. (easylist.txt: 6725) -/(.*/)?468x60\. -468x60.*. -# /468x60- (easylist.txt: 6724) -/(.*/)?468x60- -468x60-*. -# /468x280_ (easylist.txt: 6723) -/(.*/)?468x280_ -# /468x280. (easylist.txt: 6722) -/(.*/)?468x280\. -468x280.*. -# /468x060_ (easylist.txt: 6721) -/(.*/)?468x060_ -# /468x060. (easylist.txt: 6720) -/(.*/)?468x060\. -468x060.*. -# /468_80/* (easylist.txt: 6719) -/(.*/)?468_80/.* -# /468_80. (easylist.txt: 6718) -/(.*/)?468_80\. -# /468_60_ (easylist.txt: 6717) -/(.*/)?468_60_ -# /468_60. (easylist.txt: 6716) -/(.*/)?468_60\. -# /468-60_ (easylist.txt: 6715) -/(.*/)?468-60_ -# /468-60. (easylist.txt: 6714) -/(.*/)?468-60\. -468-60.*. -# /468-60- (easylist.txt: 6713) -/(.*/)?468-60- -468-60-*. -# /468-20. (easylist.txt: 6712) -/(.*/)?468-20\. -468-20.*. -# /460x80_ (easylist.txt: 6711) -/(.*/)?460x80_ -# /460x60. (easylist.txt: 6710) -/(.*/)?460x60\. -460x60.*. -# /428x60. (easylist.txt: 6709) -/(.*/)?428x60\. -428x60.*. -# /400x297. (easylist.txt: 6708) -/(.*/)?400x297\. -400x297.*. -# /4-6-8x60. (easylist.txt: 6707) -/(.*/)?4-6-8x60\. -4-6-8x60.*. -# /340x85_ (easylist.txt: 6706) -/(.*/)?340x85_ -# /336x280_ (easylist.txt: 6705) -/(.*/)?336x280_ -# /336x280. (easylist.txt: 6704) -/(.*/)?336x280\. -336x280.*. -# /336x280- (easylist.txt: 6703) -/(.*/)?336x280- -336x280-*. -# /335x205_ (easylist.txt: 6702) -/(.*/)?335x205_ -# /320x250. (easylist.txt: 6701) -/(.*/)?320x250\. -320x250.*. -# /300x90_ (easylist.txt: 6700) -/(.*/)?300x90_ -# /300x350. (easylist.txt: 6699) -/(.*/)?300x350\. -300x350.*. -# /300x250px_ (easylist.txt: 6698) -/(.*/)?300x250px_ -# /300x250px- (easylist.txt: 6697) -/(.*/)?300x250px- -300x250px-*. -# /300x250b. (easylist.txt: 6696) -/(.*/)?300x250b\. -300x250b.*. -# /300x250_ (easylist.txt: 6695) -/(.*/)?300x250_ -# /300x250/* (easylist.txt: 6694) -/(.*/)?300x250/.* -# /300x250. (easylist.txt: 6693) -/(.*/)?300x250\. -300x250.*. -# /300x250- (easylist.txt: 6692) -/(.*/)?300x250- -300x250-*. -# /300x150_ (easylist.txt: 6691) -/(.*/)?300x150_ -# /300_250_ (easylist.txt: 6690) -/(.*/)?300_250_ -# /300-250. (easylist.txt: 6688) -/(.*/)?300-250\. -300-250.*. -# /300-250- (easylist.txt: 6687) -/(.*/)?300-250- -300-250-*. -# /270x90- (easylist.txt: 6686) -/(.*/)?270x90- -270x90-*. -# /234x60/* (easylist.txt: 6685) -/(.*/)?234x60/.* -# /230x90_ (easylist.txt: 6684) -/(.*/)?230x90_ -# /190x600. (easylist.txt: 6683) -/(.*/)?190x600\. -190x600.*. -# /190_900. (easylist.txt: 6682) -/(.*/)?190_900\. -# /180x150- (easylist.txt: 6681) -/(.*/)?180x150- -180x150-*. -# /170x700. (easylist.txt: 6680) -/(.*/)?170x700\. -170x700.*. -# /160x600partner. (easylist.txt: 6679) -/(.*/)?160x600partner\. -160x600partner.*. -# /160x600_ (easylist.txt: 6678) -/(.*/)?160x600_ -# /160x600/* (easylist.txt: 6677) -/(.*/)?160x600/.* -# /160x600. (easylist.txt: 6676) -/(.*/)?160x600\. -160x600.*. -# /160x600- (easylist.txt: 6675) -/(.*/)?160x600- -160x600-*. -# /160x400_ (easylist.txt: 6674) -/(.*/)?160x400_ -# /160x400- (easylist.txt: 6673) -/(.*/)?160x400- -160x400-*. -# /160_600_ (easylist.txt: 6672) -/(.*/)?160_600_ -# /160_600. (easylist.txt: 6671) -/(.*/)?160_600\. -# /160-600. (easylist.txt: 6669) -/(.*/)?160-600\. -160-600.*. -# /160-600- (easylist.txt: 6668) -/(.*/)?160-600- -160-600-*. -# /150x600_ (easylist.txt: 6667) -/(.*/)?150x600_ -# /150x300_ (easylist.txt: 6666) -/(.*/)?150x300_ -# /150x200- (easylist.txt: 6665) -/(.*/)?150x200- -150x200-*. -# /150_500. (easylist.txt: 6664) -/(.*/)?150_500\. -# /150-500. (easylist.txt: 6663) -/(.*/)?150-500\. -150-500.*. -# /130x600. (easylist.txt: 6662) -/(.*/)?130x600\. -130x600.*. -# /130x600- (easylist.txt: 6661) -/(.*/)?130x600- -130x600-*. -# /125x600_ (easylist.txt: 6660) -/(.*/)?125x600_ -# /125x600- (easylist.txt: 6659) -/(.*/)?125x600- -125x600-*. -# /125x400/* (easylist.txt: 6658) -/(.*/)?125x400/.* -# /125x300_ (easylist.txt: 6657) -/(.*/)?125x300_ -# /125x240/* (easylist.txt: 6656) -/(.*/)?125x240/.* -# /120x600_ (easylist.txt: 6655) -/(.*/)?120x600_ -# /120x600/* (easylist.txt: 6654) -/(.*/)?120x600/.* -# /120x600. (easylist.txt: 6653) -/(.*/)?120x600\. -120x600.*. -# /120x600- (easylist.txt: 6652) -/(.*/)?120x600- -120x600-*. -# /120x240_ (easylist.txt: 6651) -/(.*/)?120x240_ -# /120_600_ (easylist.txt: 6650) -/(.*/)?120_600_ -# /120_600/* (easylist.txt: 6649) -/(.*/)?120_600/.* -# /120_600. (easylist.txt: 6648) -/(.*/)?120_600\. -# /1200x70_ (easylist.txt: 6647) -/(.*/)?1200x70_ -# /120-600. (easylist.txt: 6646) -/(.*/)?120-600\. -120-600.*. -# /120-600- (easylist.txt: 6645) -/(.*/)?120-600- -120-600-*. -# .900x100. (easylist.txt: 6644) -/.*\.900x100\. -.*.900x100.*. -# .728x90_ (easylist.txt: 6643) -/.*\.728x90_ -# .728x90/ (easylist.txt: 6642) -/.*\.728x90/ -.*.728x90 -# .728x90. (easylist.txt: 6641) -/.*\.728x90\. -.*.728x90.*. -# .728x90- (easylist.txt: 6640) -/.*\.728x90- -.*.728x90-*. -# .650x100. (easylist.txt: 6639) -/.*\.650x100\. -.*.650x100.*. -# .480x60_ (easylist.txt: 6638) -/.*\.480x60_ -# .480x60/ (easylist.txt: 6637) -/.*\.480x60/ -.*.480x60 -# .480x60. (easylist.txt: 6636) -/.*\.480x60\. -.*.480x60.*. -# .480x60- (easylist.txt: 6635) -/.*\.480x60- -.*.480x60-*. -# .468x80_ (easylist.txt: 6634) -/.*\.468x80_ -# .468x80/ (easylist.txt: 6633) -/.*\.468x80/ -.*.468x80 -# .468x80. (easylist.txt: 6632) -/.*\.468x80\. -.*.468x80.*. -# .468x80- (easylist.txt: 6631) -/.*\.468x80- -.*.468x80-*. -# .468x60_ (easylist.txt: 6630) -/.*\.468x60_ -# .468x60/ (easylist.txt: 6629) -/.*\.468x60/ -.*.468x60 -# .468x60. (easylist.txt: 6628) -/.*\.468x60\. -.*.468x60.*. -# .468x60- (easylist.txt: 6627) -/.*\.468x60- -.*.468x60-*. -# .300x250_ (easylist.txt: 6626) -/.*\.300x250_ -# .300x250. (easylist.txt: 6625) -/.*\.300x250\. -.*.300x250.*. -# .160x600_ (easylist.txt: 6624) -/.*\.160x600_ -# .160x600. (easylist.txt: 6623) -/.*\.160x600\. -.*.160x600.*. -# .120x600. (easylist.txt: 6622) -/.*\.120x600\. -.*.120x600.*. -# -988x60. (easylist.txt: 6621) -/.*-988x60\. -.*-988x60.*. -# -980x60- (easylist.txt: 6620) -/.*-980x60- -.*-980x60-*. -# -800x150. (easylist.txt: 6619) -/.*-800x150\. -.*-800x150.*. -# -780x90- (easylist.txt: 6618) -/.*-780x90- -.*-780x90-*. -# -729x91- (easylist.txt: 6617) -/.*-729x91- -.*-729x91-*. -# -728x90px2. (easylist.txt: 6616) -/.*-728x90px2\. -.*-728x90px2.*. -# -728x90a_ (easylist.txt: 6615) -/.*-728x90a_ -# -728x90_ (easylist.txt: 6614) -/.*-728x90_ -# -728x90/ (easylist.txt: 6613) -/.*-728x90/ -.*-728x90 -# -728x90. (easylist.txt: 6612) -/.*-728x90\. -.*-728x90.*. -# -728x90- (easylist.txt: 6611) -/.*-728x90- -.*-728x90-*. -# -728x90& (easylist.txt: 6610) -/.*-728x90& -# -728.90. (easylist.txt: 6609) -/.*-728\.90\. -.*-728.90.*. -# -728-90. (easylist.txt: 6608) -/.*-728-90\. -.*-728-90.*. -# -720x90. (easylist.txt: 6607) -/.*-720x90\. -.*-720x90.*. -# -720x90- (easylist.txt: 6606) -/.*-720x90- -.*-720x90-*. -# -720x120- (easylist.txt: 6605) -/.*-720x120- -.*-720x120-*. -# -700-200. (easylist.txt: 6604) -/.*-700-200\. -.*-700-200.*. -# -600x90- (easylist.txt: 6603) -/.*-600x90- -.*-600x90-*. -# -600x70. (easylist.txt: 6602) -/.*-600x70\. -.*-600x70.*. -# -500x100. (easylist.txt: 6601) -/.*-500x100\. -.*-500x100.*. -# -486x60. (easylist.txt: 6600) -/.*-486x60\. -.*-486x60.*. -# -480x60_ (easylist.txt: 6599) -/.*-480x60_ -# -480x60/ (easylist.txt: 6598) -/.*-480x60/ -.*-480x60 -# -480x60. (easylist.txt: 6597) -/.*-480x60\. -.*-480x60.*. -# -480x60- (easylist.txt: 6596) -/.*-480x60- -.*-480x60-*. -# -480x120. (easylist.txt: 6595) -/.*-480x120\. -.*-480x120.*. -# -468x90. (easylist.txt: 6594) -/.*-468x90\. -.*-468x90.*. -# -468x80_ (easylist.txt: 6593) -/.*-468x80_ -# -468x80/ (easylist.txt: 6592) -/.*-468x80/ -.*-468x80 -# -468x80. (easylist.txt: 6591) -/.*-468x80\. -.*-468x80.*. -# -468x80- (easylist.txt: 6590) -/.*-468x80- -.*-468x80-*. -# -468x70. (easylist.txt: 6589) -/.*-468x70\. -.*-468x70.*. -# -468x60px- (easylist.txt: 6588) -/.*-468x60px- -.*-468x60px-*. -# -468x60_ (easylist.txt: 6587) -/.*-468x60_ -# -468x60/ (easylist.txt: 6586) -/.*-468x60/ -.*-468x60 -# -468x60. (easylist.txt: 6585) -/.*-468x60\. -.*-468x60.*. -# -468x60- (easylist.txt: 6584) -/.*-468x60- -.*-468x60-*. -# -468x060_ (easylist.txt: 6583) -/.*-468x060_ -# -468x060- (easylist.txt: 6582) -/.*-468x060- -.*-468x060-*. -# -468by60. (easylist.txt: 6581) -/.*-468by60\. -.*-468by60.*. -# -468_60. (easylist.txt: 6580) -/.*-468_60\. -# -468-60_ (easylist.txt: 6579) -/.*-468-60_ -# -468-60. (easylist.txt: 6578) -/.*-468-60\. -.*-468-60.*. -# -468-60- (easylist.txt: 6577) -/.*-468-60- -.*-468-60-*. -# -468-100. (easylist.txt: 6576) -/.*-468-100\. -.*-468-100.*. -# -460x68. (easylist.txt: 6575) -/.*-460x68\. -.*-460x68.*. -# -300x600. (easylist.txt: 6574) -/.*-300x600\. -.*-300x600.*. -# -300x250_ (easylist.txt: 6573) -/.*-300x250_ -# -300-250. (easylist.txt: 6571) -/.*-300-250\. -.*-300-250.*. -# -161x601- (easylist.txt: 6570) -/.*-161x601- -.*-161x601-*. -# -160x600b. (easylist.txt: 6569) -/.*-160x600b\. -.*-160x600b.*. -# -160x600_ (easylist.txt: 6568) -/.*-160x600_ -# -160x600. (easylist.txt: 6567) -/.*-160x600\. -.*-160x600.*. -# -160x600- (easylist.txt: 6566) -/.*-160x600- -.*-160x600-*. -# -160x400- (easylist.txt: 6565) -/.*-160x400- -.*-160x400-*. -# -160-600. (easylist.txt: 6564) -/.*-160-600\. -.*-160-600.*. -# -125x40- (easylist.txt: 6563) -/.*-125x40- -.*-125x40-*. -# -120x600c. (easylist.txt: 6562) -/.*-120x600c\. -.*-120x600c.*. -# -120x600_ (easylist.txt: 6561) -/.*-120x600_ -# -120x600. (easylist.txt: 6560) -/.*-120x600\. -.*-120x600.*. -# -120x600- (easylist.txt: 6559) -/.*-120x600- -.*-120x600-*. -# -120x60. (easylist.txt: 6558) -/.*-120x60\. -.*-120x60.*. -# -120x60- (easylist.txt: 6557) -/.*-120x60- -.*-120x60-*. -# -120x400. (easylist.txt: 6556) -/.*-120x400\. -.*-120x400.*. -# -120x300. (easylist.txt: 6555) -/.*-120x300\. -.*-120x300.*. -# -120x240. (easylist.txt: 6554) -/.*-120x240\. -.*-120x240.*. -# -120_600_ (easylist.txt: 6553) -/.*-120_600_ -# -120-600. (easylist.txt: 6552) -/.*-120-600\. -.*-120-600.*. -# ,970x90; (easylist.txt: 6551) -/.*,970x90; -# ,728x90, (easylist.txt: 6550) -/.*,728x90, -# ,468x60; (easylist.txt: 6549) -/.*,468x60; -# ,468x60- (easylist.txt: 6548) -/.*,468x60- -# ,160x600; (easylist.txt: 6547) -/.*,160x600; -# /wp-content/plugins/anti_ad_blocker/* (easylist.txt: 6545) -/(.*/)?wp-content/plugins/anti_ad_blocker/.* -# /wp-content/plugins/anti-block/* (easylist.txt: 6544) -/(.*/)?wp-content/plugins/anti-block/.* -# /no-adblock/* (easylist.txt: 6543) -/(.*/)?no-adblock/.* -# /fuckadblock. (easylist.txt: 6542) -/(.*/)?fuckadblock\. -fuckadblock.*. -# /fuckadb.js (easylist.txt: 6540) -/(.*/)?fuckadb\.js -fuckadb.js*. -# /Disable%2BAdblock. (easylist.txt: 6539) -/(.*/)?Disable%2BAdblock\. -# /blockblock/blockblock.jquery.js (easylist.txt: 6538) -/(.*/)?blockblock/blockblock\.jquery\.js -# /antiadblock. (easylist.txt: 6536) -/(.*/)?antiadblock\. -antiadblock.*. -# /anti_ab. (easylist.txt: 6535) -/(.*/)?anti_ab\. -# /adsblocker. (easylist.txt: 6533) -/(.*/)?adsblocker\. -adsblocker.*. -# /adbuddy. (easylist.txt: 6532) -/(.*/)?adbuddy\. -adbuddy.*. -# /adblockdetection. (easylist.txt: 6531) -/(.*/)?adblockdetection\. -adblockdetection.*. -# /adblockdetect. (easylist.txt: 6530) -/(.*/)?adblockdetect\. -adblockdetect.*. -# /adblock_logger. (easylist.txt: 6529) -/(.*/)?adblock_logger\. -# /adblock_detector2. (easylist.txt: 6528) -/(.*/)?adblock_detector2\. -# /adblock_detector. (easylist.txt: 6527) -/(.*/)?adblock_detector\. -# /adblock.gif? (easylist.txt: 6526) -/(.*/)?adblock\.gif\? -# /adblock-notify-by-bweb/* (easylist.txt: 6525) -/(.*/)?adblock-notify-by-bweb/.* -# /adblock-detect. (easylist.txt: 6524) -/(.*/)?adblock-detect\. -adblock-detect.*. -# /adblock-blocker/* (easylist.txt: 6523) -/(.*/)?adblock-blocker/.* -# /adblock-alerter/* (easylist.txt: 6522) -/(.*/)?adblock-alerter/.* -# /adb_detector. (easylist.txt: 6521) -/(.*/)?adb_detector\. -# /adb.min.js (easylist.txt: 6520) -/(.*/)?adb\.min\.js -adb.min.js*. -# /ad-blocker.js (easylist.txt: 6519) -/(.*/)?ad-blocker\.js -ad-blocker.js*. -# -adblocker-detection/ (easylist.txt: 6518) -/.*-adblocker-detection/ -.*-adblocker-detection -# /jquery.peelback.js (easylist.txt: 6516) -/(.*/)?jquery\.peelback\.js -jquery.peelback.js*. -# /sl/assetlisting/? (easylist.txt: 6514) -/(.*/)?sl/assetlisting/\? -# /cdn-cgi/pe/bag?r[]=*pubads.g.doubleclick.net (easylist.txt: 6508) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*pubads\.g\.doubleclick\.net -# /cdn-cgi/pe/bag?r[]=*cpalead.com (easylist.txt: 6507) -/(.*/)?cdn-cgi/pe/bag\?r\[\]=.*cpalead\.com -# /cdn-cgi/pe/bag2?r[]=*srvpub.com (easylist.txt: 6506) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*srvpub\.com -# /cdn-cgi/pe/bag2?r[]=*revcontent.com (easylist.txt: 6505) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*revcontent\.com -# /cdn-cgi/pe/bag2?r[]=*popcash.net (easylist.txt: 6504) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popcash\.net -# /cdn-cgi/pe/bag2?r[]=*popads.net (easylist.txt: 6503) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# /cdn-cgi/pe/bag2?r[]=*linksmart.com (easylist.txt: 6502) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*linksmart\.com -# /cdn-cgi/pe/bag2?r[]=*juicyads.com (easylist.txt: 6501) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# /cdn-cgi/pe/bag2?r[]=*intellitxt.com (easylist.txt: 6500) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*intellitxt\.com -# /cdn-cgi/pe/bag2?r[]=*googleadservices.com (easylist.txt: 6499) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*googleadservices\.com -# /cdn-cgi/pe/bag2?r[]=*eclkspsa.com (easylist.txt: 6498) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkspsa\.com -# /cdn-cgi/pe/bag2?r[]=*eclkmpbn.com (easylist.txt: 6497) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*eclkmpbn\.com -# /cdn-cgi/pe/bag2?r[]=*cpx.to (easylist.txt: 6496) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*cpx\.to -# /cdn-cgi/pe/bag2?r[]=*content.ad (easylist.txt: 6495) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*content\.ad -# /cdn-cgi/pe/bag2?r[]=*az708531.vo.msecnd.net (easylist.txt: 6494) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*az708531\.vo\.msecnd\.net -# /cdn-cgi/pe/bag2?r[]=*ads.exoclick.com (easylist.txt: 6493) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# /cdn-cgi/pe/bag2?r[]=*adk2.co (easylist.txt: 6492) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adk2\.co -# /cdn-cgi/pe/bag2?r[]=*adblade.com (easylist.txt: 6491) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*adblade\.com -# ||serve.*/promoload? (easylist.txt: 6484) -.serve.*./(.*/)?promoload\? -# ||ox-d.*^auid= (easylist.txt: 6483) -.ox-d.*./(.*[^\w%.-])?auid= -# ||online.*/promoredirect?key= (easylist.txt: 6482) -.online.*./(.*/)?promoredirect\?key= -# ||cacheserve.*/promodisplay? (easylist.txt: 6480) -.cacheserve.*./(.*/)?promodisplay\? -# ||cacheserve.*/promodisplay/ (easylist.txt: 6479) -.cacheserve.*./(.*/)?promodisplay/ -# takeover_banner_ (easylist.txt: 6478) -/.*takeover_banner_ -# takeover_background. (easylist.txt: 6477) -/.*takeover_background\. -# _zedo. (easylist.txt: 6476) -/.*_zedo\. -# _your_ad. (easylist.txt: 6475) -/.*_your_ad\. -# _yahooads/ (easylist.txt: 6474) -/.*_yahooads/ -# _widget_ad. (easylist.txt: 6473) -/.*_widget_ad\. -# _WebBannerAd_ (easylist.txt: 6472) -/.*_WebBannerAd_ -# _webad_ (easylist.txt: 6471) -/.*_webad_ -# _webad. (easylist.txt: 6470) -/.*_webad\. -# _web_ad_ (easylist.txt: 6469) -/.*_web_ad_ -# _Web_ad. (easylist.txt: 6468) -/.*_Web_ad\. -# _web-advert. (easylist.txt: 6467) -/.*_web-advert\. -# _vodaaffi_ (easylist.txt: 6466) -/.*_vodaaffi_ -# _videoad. (easylist.txt: 6465) -/.*_videoad\. -# _video_ads_ (easylist.txt: 6464) -/.*_video_ads_ -# _video_ads/ (easylist.txt: 6463) -/.*_video_ads/ -# _vertical_ad. (easylist.txt: 6462) -/.*_vertical_ad\. -# _valueclick. (easylist.txt: 6461) -/.*_valueclick\. -# _UIM-Ads_ (easylist.txt: 6460) -/.*_UIM-Ads_ -# _tribalfusion. (easylist.txt: 6459) -/.*_tribalfusion\. -# _topad. (easylist.txt: 6458) -/.*_topad\. -# _top_ad_ (easylist.txt: 6457) -/.*_top_ad_ -# _top_ad. (easylist.txt: 6456) -/.*_top_ad\. -# _tile_ad_ (easylist.txt: 6455) -/.*_tile_ad_ -# _theme/ads/ (easylist.txt: 6454) -/.*_theme/ads/ -# _textads/ (easylist.txt: 6453) -/.*_textads/ -# _textads. (easylist.txt: 6452) -/.*_textads\. -# _textad_ (easylist.txt: 6451) -/.*_textad_ -# _text_ads. (easylist.txt: 6450) -/.*_text_ads\. -# _temp/ad_ (easylist.txt: 6449) -/.*_temp/ad_ -# _tagadvertising. (easylist.txt: 6448) -/.*_tagadvertising\. -# _survey_ad_ (easylist.txt: 6447) -/.*_survey_ad_ -# _StickyAdFunc. (easylist.txt: 6446) -/.*_StickyAdFunc\. -# _StickyAd. (easylist.txt: 6445) -/.*_StickyAd\. -# _sticky_ad. (easylist.txt: 6444) -/.*_sticky_ad\. -# _static_ads. (easylist.txt: 6443) -/.*_static_ads\. -# _static/ads/ (easylist.txt: 6442) -/.*_static/ads/ -# _square_ad. (easylist.txt: 6441) -/.*_square_ad\. -# _Spot-Ad_ (easylist.txt: 6440) -/.*_Spot-Ad_ -# _sponsoredlinks_ (easylist.txt: 6439) -/.*_sponsoredlinks_ -# _sponsor/css/ (easylist.txt: 6438) -/.*_sponsor/css/ -# _smartads_ (easylist.txt: 6437) -/.*_smartads_ -# _small_ad. (easylist.txt: 6436) -/.*_small_ad\. -# _Slot_Adv_ (easylist.txt: 6435) -/.*_Slot_Adv_ -# _skyscraper160x600. (easylist.txt: 6434) -/.*_skyscraper160x600\. -# _skybannerview. (easylist.txt: 6433) -/.*_skybannerview\. -# _skinad. (easylist.txt: 6432) -/.*_skinad\. -# _site_sponsor (easylist.txt: 6431) -/.*_site_sponsor -# _sidebarad_ (easylist.txt: 6430) -/.*_sidebarad_ -# _sidebar_ad_ (easylist.txt: 6429) -/.*_sidebar_ad_ -# _sidebar_ad. (easylist.txt: 6428) -/.*_sidebar_ad\. -# _sidead. (easylist.txt: 6427) -/.*_sidead\. -# _show_ads_ (easylist.txt: 6426) -/.*_show_ads_ -# _show_ads= (easylist.txt: 6425) -/.*_show_ads= -# _show_ads. (easylist.txt: 6424) -/.*_show_ads\. -# _sectionfront_ad. (easylist.txt: 6423) -/.*_sectionfront_ad\. -# _search/ads.js (easylist.txt: 6422) -/.*_search/ads\.js -# _rightmn_ads. (easylist.txt: 6421) -/.*_rightmn_ads\. -# _rightad_ (easylist.txt: 6420) -/.*_rightad_ -# _rightad1. (easylist.txt: 6419) -/.*_rightad1\. -# _rightad. (easylist.txt: 6418) -/.*_rightad\. -# _right_ads_ (easylist.txt: 6417) -/.*_right_ads_ -# _right_ads/ (easylist.txt: 6416) -/.*_right_ads/ -# _right_ads. (easylist.txt: 6415) -/.*_right_ads\. -# _right_ad. (easylist.txt: 6414) -/.*_right_ad\. -# _response_ad. (easylist.txt: 6413) -/.*_response_ad\. -# _request_ad. (easylist.txt: 6412) -/.*_request_ad\. -# _reporting_ads. (easylist.txt: 6411) -/.*_reporting_ads\. -# _rectangle_ads. (easylist.txt: 6409) -/.*_rectangle_ads\. -# _railads. (easylist.txt: 6408) -/.*_railads\. -# _radio_ad_ (easylist.txt: 6407) -/.*_radio_ad_ -# _pushads. (easylist.txt: 6406) -/.*_pushads\. -# _psu_ad. (easylist.txt: 6405) -/.*_psu_ad\. -# _promo_ad/ (easylist.txt: 6404) -/.*_promo_ad/ -# _prime_ad. (easylist.txt: 6403) -/.*_prime_ad\. -# _preorderad. (easylist.txt: 6402) -/.*_preorderad\. -# _post_ads. (easylist.txt: 6401) -/.*_post_ads\. -# _popupunder. (easylist.txt: 6400) -/.*_popupunder\. -# _popunder_ (easylist.txt: 6399) -/.*_popunder_ -# _popunder. (easylist.txt: 6398) -/.*_popunder\. -# _pop_under. (easylist.txt: 6397) -/.*_pop_under\. -# _pop_ad/ (easylist.txt: 6396) -/.*_pop_ad/ -# _pop_ad. (easylist.txt: 6395) -/.*_pop_ad\. -# _plus/ads/ (easylist.txt: 6394) -/.*_plus/ads/ -# _player_ads_ (easylist.txt: 6393) -/.*_player_ads_ -# _platform_ads_ (easylist.txt: 6392) -/.*_platform_ads_ -# _platform_ads. (easylist.txt: 6391) -/.*_platform_ads\. -# _partner_ad. (easylist.txt: 6390) -/.*_partner_ad\. -# _panel_ads. (easylist.txt: 6389) -/.*_panel_ads\. -# _paidadvert_ (easylist.txt: 6388) -/.*_paidadvert_ -# _paid_ads/ (easylist.txt: 6387) -/.*_paid_ads/ -# _overlay_ad. (easylist.txt: 6386) -/.*_overlay_ad\. -# _org_ad. (easylist.txt: 6385) -/.*_org_ad\. -# _openx/ (easylist.txt: 6384) -/.*_openx/ -# _openx. (easylist.txt: 6383) -/.*_openx\. -# _onlinead_ (easylist.txt: 6382) -/.*_onlinead_ -# _online_ad. (easylist.txt: 6381) -/.*_online_ad\. -# _mpu_widget? (easylist.txt: 6380) -/.*_mpu_widget\? -# _Mobile_Ad_ (easylist.txt: 6379) -/.*_Mobile_Ad_ -# _mmsadbanner/ (easylist.txt: 6378) -/.*_mmsadbanner/ -# _mid_ad. (easylist.txt: 6377) -/.*_mid_ad\. -# _media/ads/ (easylist.txt: 6376) -/.*_media/ads/ -# _maxi_ad/ (easylist.txt: 6375) -/.*_maxi_ad/ -# _mainad. (easylist.txt: 6374) -/.*_mainad\. -# _main_ad. (easylist.txt: 6373) -/.*_main_ad\. -# _mailLoginAd. (easylist.txt: 6372) -/.*_mailLoginAd\. -# _longad_ (easylist.txt: 6371) -/.*_longad_ -# _logadslot& (easylist.txt: 6370) -/.*_logadslot& -# _load_ad? (easylist.txt: 6369) -/.*_load_ad\? -# _live/ad/ (easylist.txt: 6368) -/.*_live/ad/ -# _link_ads- (easylist.txt: 6367) -/.*_link_ads- -# _left_ad. (easylist.txt: 6366) -/.*_left_ad\. -# _leaderboard_ad_ (easylist.txt: 6365) -/.*_leaderboard_ad_ -# _layerad. (easylist.txt: 6364) -/.*_layerad\. -# _juicyads. (easylist.txt: 6363) -/.*_juicyads\. -# _juiceadv. (easylist.txt: 6362) -/.*_juiceadv\. -# _jtads/ (easylist.txt: 6361) -/.*_jtads/ -# _js/ads.js (easylist.txt: 6360) -/.*_js/ads\.js -# _inlineads. (easylist.txt: 6359) -/.*_inlineads\. -# _inline_advert& (easylist.txt: 6358) -/.*_inline_advert& -# _index_ad. (easylist.txt: 6357) -/.*_index_ad\. -# _images/ads/ (easylist.txt: 6356) -/.*_images/ads/ -# _images/ad_ (easylist.txt: 6355) -/.*_images/ad_ -# _images/ad. (easylist.txt: 6354) -/.*_images/ad\. -# _iframe_ad_ (easylist.txt: 6353) -/.*_iframe_ad_ -# _iad.html? (easylist.txt: 6352) -/.*_iad\.html\? -# _hr_advt/ (easylist.txt: 6351) -/.*_hr_advt/ -# _house_ad_ (easylist.txt: 6350) -/.*_house_ad_ -# _hosting_ad. (easylist.txt: 6349) -/.*_hosting_ad\. -# _home_ad_ (easylist.txt: 6348) -/.*_home_ad_ -# _home_ad. (easylist.txt: 6347) -/.*_home_ad\. -# _homadconfig. (easylist.txt: 6346) -/.*_homadconfig\. -# _homad. (easylist.txt: 6345) -/.*_homad\. -# _headline_ad. (easylist.txt: 6344) -/.*_headline_ad\. -# _headerad. (easylist.txt: 6343) -/.*_headerad\. -# _header_ad_ (easylist.txt: 6342) -/.*_header_ad_ -# _header_ad. (easylist.txt: 6341) -/.*_header_ad\. -# _grid_ad? (easylist.txt: 6340) -/.*_grid_ad\? -# _googlead. (easylist.txt: 6339) -/.*_googlead\. -# _google_ads_ (easylist.txt: 6338) -/.*_google_ads_ -# _google_ads/ (easylist.txt: 6337) -/.*_google_ads/ -# _google_ads. (easylist.txt: 6336) -/.*_google_ads\. -# _google_ad. (easylist.txt: 6335) -/.*_google_ad\. -# _geobanner. (easylist.txt: 6334) -/.*_geobanner\. -# _generic_ad. (easylist.txt: 6333) -/.*_generic_ad\. -# _genads/ (easylist.txt: 6332) -/.*_genads/ -# _gallery_ads. (easylist.txt: 6330) -/.*_gallery_ads\. -# _gads_top. (easylist.txt: 6329) -/.*_gads_top\. -# _gads_footer. (easylist.txt: 6328) -/.*_gads_footer\. -# _gads_bottom. (easylist.txt: 6327) -/.*_gads_bottom\. -# _fullscreen_ad. (easylist.txt: 6326) -/.*_fullscreen_ad\. -# _friendlyduck. (easylist.txt: 6325) -/.*_friendlyduck\. -# _framed_ad/ (easylist.txt: 6324) -/.*_framed_ad/ -# _footer_ad_ (easylist.txt: 6323) -/.*_footer_ad_ -# _floatingad_ (easylist.txt: 6322) -/.*_floatingad_ -# _floating_ad_ (easylist.txt: 6321) -/.*_floating_ad_ -# _fixed_ad. (easylist.txt: 6320) -/.*_fixed_ad\. -# _files/ad. (easylist.txt: 6319) -/.*_files/ad\. -# _feast_ad. (easylist.txt: 6318) -/.*_feast_ad\. -# _fbadbookingsystem& (easylist.txt: 6317) -/.*_fbadbookingsystem& -# _fach_ad. (easylist.txt: 6316) -/.*_fach_ad\. -# _externalad. (easylist.txt: 6315) -/.*_externalad\. -# _english/adv/ (easylist.txt: 6314) -/.*_english/adv/ -# _engine_ads_ (easylist.txt: 6313) -/.*_engine_ads_ -# _elements/ads/ (easylist.txt: 6312) -/.*_elements/ads/ -# _dynamicads/ (easylist.txt: 6311) -/.*_dynamicads/ -# _dropdown_ad. (easylist.txt: 6310) -/.*_dropdown_ad\. -# _down_ad_ (easylist.txt: 6309) -/.*_down_ad_ -# _doubleclick_ad. (easylist.txt: 6308) -/.*_doubleclick_ad\. -# _doubleclick. (easylist.txt: 6307) -/.*_doubleclick\. -# _displaytopads. (easylist.txt: 6306) -/.*_displaytopads\. -# _displayad_ (easylist.txt: 6305) -/.*_displayad_ -# _dfp.php? (easylist.txt: 6304) -/.*_dfp\.php\? -# _dashad_ (easylist.txt: 6303) -/.*_dashad_ -# _dart_interstitial. (easylist.txt: 6302) -/.*_dart_interstitial\. -# _dart_ads. (easylist.txt: 6301) -/.*_dart_ads\. -# _custom_ad_ (easylist.txt: 6300) -/.*_custom_ad_ -# _custom_ad. (easylist.txt: 6299) -/.*_custom_ad\. -# _contest_ad_ (easylist.txt: 6298) -/.*_contest_ad_ -# _content_ad_ (easylist.txt: 6297) -/.*_content_ad_ -# _content_ad. (easylist.txt: 6296) -/.*_content_ad\. -# _companionad. (easylist.txt: 6295) -/.*_companionad\. -# _ChatAd_ (easylist.txt: 6294) -/.*_ChatAd_ -# _cgbanners.php? (easylist.txt: 6293) -/.*_cgbanners\.php\? -# _centre_ad. (easylist.txt: 6292) -/.*_centre_ad\. -# _buttonad. (easylist.txt: 6291) -/.*_buttonad\. -# _button_ad_ (easylist.txt: 6290) -/.*_button_ad_ -# _btnad_ (easylist.txt: 6289) -/.*_btnad_ -# _box_ad_ (easylist.txt: 6288) -/.*_box_ad_ -# _bottom_ads_ (easylist.txt: 6287) -/.*_bottom_ads_ -# _bottom_ads. (easylist.txt: 6286) -/.*_bottom_ads\. -# _blogads_ (easylist.txt: 6285) -/.*_blogads_ -# _blogads. (easylist.txt: 6284) -/.*_blogads\. -# _blank_ads. (easylist.txt: 6283) -/.*_blank_ads\. -# _bg_ad_left. (easylist.txt: 6282) -/.*_bg_ad_left\. -# _bannerview.php?*&aid= (easylist.txt: 6281) -/.*_bannerview\.php\?.*&aid= -# _bannerads_ (easylist.txt: 6280) -/.*_bannerads_ -# _BannerAd_ (easylist.txt: 6279) -/.*_BannerAd_ -# _bannerad. (easylist.txt: 6278) -/.*_bannerad\. -# _banner_adv_ (easylist.txt: 6277) -/.*_banner_adv_ -# _banner_adv300x250px. (easylist.txt: 6276) -/.*_banner_adv300x250px\. -# _Banner_Ads_ (easylist.txt: 6275) -/.*_Banner_Ads_ -# _banner_ads. (easylist.txt: 6274) -/.*_banner_ads\. -# _banner_ad_ (easylist.txt: 6273) -/.*_banner_ad_ -# _banner_ad. (easylist.txt: 6272) -/.*_banner_ad\. -# _background_ad/ (easylist.txt: 6271) -/.*_background_ad/ -# _background_ad. (easylist.txt: 6270) -/.*_background_ad\. -# _assets/ads/ (easylist.txt: 6269) -/.*_assets/ads/ -# _argus_ad_ (easylist.txt: 6268) -/.*_argus_ad_ -# _alt/ads/ (easylist.txt: 6267) -/.*_alt/ads/ -# _afs_ads. (easylist.txt: 6266) -/.*_afs_ads\. -# _affiliate_ad. (easylist.txt: 6265) -/.*_affiliate_ad\. -# _affiliate/banners/ (easylist.txt: 6264) -/.*_affiliate/banners/ -# _afd_ads. (easylist.txt: 6263) -/.*_afd_ads\. -# _adwriter. (easylist.txt: 6262) -/.*_adwriter\. -# _adwrap. (easylist.txt: 6261) -/.*_adwrap\. -# _advservices. (easylist.txt: 6260) -/.*_advservices\. -# _adview_ (easylist.txt: 6259) -/.*_adview_ -# _adview? (easylist.txt: 6258) -/.*_adview\? -# _AdvertsImgs/ (easylist.txt: 6257) -/.*_AdvertsImgs/ -# _advertsarea. (easylist.txt: 6256) -/.*_advertsarea\. -# _adverts3. (easylist.txt: 6255) -/.*_adverts3\. -# _adverts/ (easylist.txt: 6254) -/.*_adverts/ -# _adverts.js (easylist.txt: 6253) -/.*_adverts\.js -# _advertphoto. (easylist.txt: 6252) -/.*_advertphoto\. -# _advertorials/ (easylist.txt: 6251) -/.*_advertorials/ -# _advertorial_ (easylist.txt: 6250) -/.*_advertorial_ -# _advertorial3. (easylist.txt: 6249) -/.*_advertorial3\. -# _advertorial. (easylist.txt: 6248) -/.*_advertorial\. -# _advertisment. (easylist.txt: 6247) -/.*_advertisment\. -# _advertising_iframe. (easylist.txt: 6246) -/.*_advertising_iframe\. -# _advertising_header. (easylist.txt: 6245) -/.*_advertising_header\. -# _advertising/ (easylist.txt: 6244) -/.*_advertising/ -# _advertising. (easylist.txt: 6243) -/.*_advertising\. -# _advertisementtxt_ (easylist.txt: 6242) -/.*_advertisementtxt_ -# _advertisements/ (easylist.txt: 6241) -/.*_advertisements/ -# _advertisementbar. (easylist.txt: 6240) -/.*_advertisementbar\. -# _advertisement_ (easylist.txt: 6239) -/.*_advertisement_ -# _advertisement/ (easylist.txt: 6238) -/.*_advertisement/ -# _advertisement. (easylist.txt: 6237) -/.*_advertisement\. -# _advertisement- (easylist.txt: 6236) -/.*_advertisement- -# _advertisehere. (easylist.txt: 6235) -/.*_advertisehere\. -# _advertise180. (easylist.txt: 6234) -/.*_advertise180\. -# _advertise. (easylist.txt: 6233) -/.*_advertise\. -# _advertise- (easylist.txt: 6232) -/.*_advertise- -# _advert_vert (easylist.txt: 6231) -/.*_advert_vert -# _advert_overview. (easylist.txt: 6230) -/.*_advert_overview\. -# _advert_label. (easylist.txt: 6229) -/.*_advert_label\. -# _advert_2. (easylist.txt: 6228) -/.*_advert_2\. -# _advert_1. (easylist.txt: 6227) -/.*_advert_1\. -# _advert1. (easylist.txt: 6226) -/.*_advert1\. -# _advert/ (easylist.txt: 6225) -/.*_advert/ -# _advert. (easylist.txt: 6224) -/.*_advert\. -# _Adv_Banner_ (easylist.txt: 6223) -/.*_Adv_Banner_ -# _adv/overlay/ (easylist.txt: 6222) -/.*_adv/overlay/ -# _adv/leaderboard_ (easylist.txt: 6221) -/.*_adv/leaderboard_ -# _adv/300. (easylist.txt: 6220) -/.*_adv/300\. -# _adunit. (easylist.txt: 6219) -/.*_adunit\. -# _adtxt. (easylist.txt: 6218) -/.*_adtxt\. -# _adtop. (easylist.txt: 6217) -/.*_adtop\. -# _adtoma. (easylist.txt: 6216) -/.*_adtoma\. -# _adtitle. (easylist.txt: 6215) -/.*_adtitle\. -# _adtext_ (easylist.txt: 6214) -/.*_adtext_ -# _adtech_ (easylist.txt: 6213) -/.*_adtech_ -# _adtech. (easylist.txt: 6211) -/.*_adtech\. -# _adtech- (easylist.txt: 6210) -/.*_adtech- -# _adtech& (easylist.txt: 6209) -/.*_adtech& -# _adtags. (easylist.txt: 6208) -/.*_adtags\. -# _adsystem/ (easylist.txt: 6207) -/.*_adsystem/ -# _adsys_ (easylist.txt: 6206) -/.*_adsys_ -# _adsys. (easylist.txt: 6205) -/.*_adsys\. -# _adstat. (easylist.txt: 6204) -/.*_adstat\. -# _adssource. (easylist.txt: 6203) -/.*_adssource\. -# _adsrv? (easylist.txt: 6202) -/.*_adsrv\? -# _adsrv= (easylist.txt: 6201) -/.*_adsrv= -# _adsperfectmarket/ (easylist.txt: 6200) -/.*_adsperfectmarket/ -# _adspace_ (easylist.txt: 6199) -/.*_adspace_ -# _adspace- (easylist.txt: 6198) -/.*_adspace- -# _adsonar. (easylist.txt: 6197) -/.*_adsonar\. -# _adskin_ (easylist.txt: 6196) -/.*_adskin_ -# _adskin. (easylist.txt: 6195) -/.*_adskin\. -# _adsjs. (easylist.txt: 6194) -/.*_adsjs\. -# _adshow. (easylist.txt: 6193) -/.*_adshow\. -# _adshare. (easylist.txt: 6192) -/.*_adshare\. -# _adsframe. (easylist.txt: 6191) -/.*_adsframe\. -# _adsetup. (easylist.txt: 6190) -/.*_adsetup\. -# _adserver/ (easylist.txt: 6189) -/.*_adserver/ -# _adserver. (easylist.txt: 6188) -/.*_adserver\. -# _adserved. (easylist.txt: 6187) -/.*_adserved\. -# _adserve/ (easylist.txt: 6186) -/.*_adserve/ -# _adserve. (easylist.txt: 6185) -/.*_adserve\. -# _adsense_ (easylist.txt: 6184) -/.*_adsense_ -# _adsense. (easylist.txt: 6183) -/.*_adsense\. -# _adsdaq. (easylist.txt: 6182) -/.*_adsdaq\. -# _adscript. (easylist.txt: 6181) -/.*_adscript\. -# _adsbgd. (easylist.txt: 6180) -/.*_adsbgd\. -# _ads_top. (easylist.txt: 6179) -/.*_ads_top\. -# _ads_text. (easylist.txt: 6178) -/.*_ads_text\. -# _ads_targeting. (easylist.txt: 6177) -/.*_ads_targeting\. -# _ads_single_ (easylist.txt: 6176) -/.*_ads_single_ -# _ads_reporting. (easylist.txt: 6175) -/.*_ads_reporting\. -# _ads_only& (easylist.txt: 6174) -/.*_ads_only& -# _ads_new. (easylist.txt: 6173) -/.*_ads_new\. -# _ads_multi. (easylist.txt: 6172) -/.*_ads_multi\. -# _ads_index_ (easylist.txt: 6171) -/.*_ads_index_ -# _ads_iframe_ (easylist.txt: 6170) -/.*_ads_iframe_ -# _ads_iframe. (easylist.txt: 6169) -/.*_ads_iframe\. -# _ads_Home. (easylist.txt: 6168) -/.*_ads_Home\. -# _ads_contextualtargeting_ (easylist.txt: 6167) -/.*_ads_contextualtargeting_ -# _ads_cached. (easylist.txt: 6166) -/.*_ads_cached\. -# _ads_async. (easylist.txt: 6165) -/.*_ads_async\. -# _ads? (easylist.txt: 6164) -/.*_ads\? -# _ads9. (easylist.txt: 6163) -/.*_ads9\. -# _ads8. (easylist.txt: 6162) -/.*_ads8\. -# _ads3. (easylist.txt: 6161) -/.*_ads3\. -# _ads2. (easylist.txt: 6160) -/.*_ads2\. -# _ads12. (easylist.txt: 6159) -/.*_ads12\. -# _ads1. (easylist.txt: 6158) -/.*_ads1\. -# _ads/square/ (easylist.txt: 6157) -/.*_ads/square/ -# _ads/js/ (easylist.txt: 6156) -/.*_ads/js/ -# _ads/ip/ (easylist.txt: 6155) -/.*_ads/ip/ -# _ads/inhouse/ (easylist.txt: 6154) -/.*_ads/inhouse/ -# _ads/iframe. (easylist.txt: 6153) -/.*_ads/iframe\. -# _ads/horiz_ (easylist.txt: 6152) -/.*_ads/horiz_ -# _ads/horiz/ (easylist.txt: 6151) -/.*_ads/horiz/ -# _ads/css/ (easylist.txt: 6150) -/.*_ads/css/ -# _ads.php? (easylist.txt: 6149) -/.*_ads\.php\? -# _ads.js? (easylist.txt: 6148) -/.*_ads\.js\? -# _ads.html (easylist.txt: 6147) -/.*_ads\.html -# _ads.cgi (easylist.txt: 6146) -/.*_ads\.cgi -# _ads-affiliates_ (easylist.txt: 6145) -/.*_ads-affiliates_ -# _adrow- (easylist.txt: 6144) -/.*_adrow- -# _adrotator. (easylist.txt: 6143) -/.*_adrotator\. -# _adright2. (easylist.txt: 6142) -/.*_adright2\. -# _adright. (easylist.txt: 6141) -/.*_adright\. -# _adplugin. (easylist.txt: 6140) -/.*_adplugin\. -# _adpartner. (easylist.txt: 6139) -/.*_adpartner\. -# _adpage= (easylist.txt: 6138) -/.*_adpage= -# _adobjects. (easylist.txt: 6137) -/.*_adobjects\. -# _adnetwork. (easylist.txt: 6136) -/.*_adnetwork\. -# _adminka/ (easylist.txt: 6135) -/.*_adminka/ -# _admin/ads/ (easylist.txt: 6134) -/.*_admin/ads/ -# _admarking_ (easylist.txt: 6133) -/.*_admarking_ -# _admanager/ (easylist.txt: 6132) -/.*_admanager/ -# _adlog. (easylist.txt: 6131) -/.*_adlog\. -# _adlinkbar. (easylist.txt: 6130) -/.*_adlinkbar\. -# _adlib. (easylist.txt: 6129) -/.*_adlib\. -# _adlesse. (easylist.txt: 6128) -/.*_adlesse\. -# _adlabel_ (easylist.txt: 6127) -/.*_adlabel_ -# _adjug. (easylist.txt: 6126) -/.*_adjug\. -# _adify. (easylist.txt: 6125) -/.*_adify\. -# _adhub_ (easylist.txt: 6124) -/.*_adhub_ -# _adhoriz. (easylist.txt: 6123) -/.*_adhoriz\. -# _adhome_ (easylist.txt: 6122) -/.*_adhome_ -# _adhome. (easylist.txt: 6121) -/.*_adhome\. -# _adhoc? (easylist.txt: 6120) -/.*_adhoc\? -# _adfunction. (easylist.txt: 6119) -/.*_adfunction\. -# _adframe_ (easylist.txt: 6118) -/.*_adframe_ -# _adframe/ (easylist.txt: 6117) -/.*_adframe/ -# _adframe. (easylist.txt: 6116) -/.*_adframe\. -# _adengine_ (easylist.txt: 6115) -/.*_adengine_ -# _adengage_ (easylist.txt: 6114) -/.*_adengage_ -# _adengage. (easylist.txt: 6113) -/.*_adengage\. -# _adcount= (easylist.txt: 6112) -/.*_adcount= -# _adcontent/ (easylist.txt: 6111) -/.*_adcontent/ -# _adcom. (easylist.txt: 6110) -/.*_adcom\. -# _adchoices. (easylist.txt: 6109) -/.*_adchoices\. -# _adchoice. (easylist.txt: 6108) -/.*_adchoice\. -# _adcall_ (easylist.txt: 6107) -/.*_adcall_ -# _adcall. (easylist.txt: 6106) -/.*_adcall\. -# _adbreak. (easylist.txt: 6105) -/.*_adbreak\. -# _adbox_ (easylist.txt: 6104) -/.*_adbox_ -# _adbox. (easylist.txt: 6103) -/.*_adbox\. -# _adblue. (easylist.txt: 6102) -/.*_adblue\. -# _adbit. (easylist.txt: 6101) -/.*_adbit\. -# _adbg2a. (easylist.txt: 6100) -/.*_adbg2a\. -# _adbg2. (easylist.txt: 6099) -/.*_adbg2\. -# _adbg1a. (easylist.txt: 6098) -/.*_adbg1a\. -# _adbar. (easylist.txt: 6097) -/.*_adbar\. -# _adbanners. (easylist.txt: 6096) -/.*_adbanners\. -# _adbanner_ (easylist.txt: 6095) -/.*_adbanner_ -# _adbanner/ (easylist.txt: 6094) -/.*_adbanner/ -# _adbanner. (easylist.txt: 6093) -/.*_adbanner\. -# _adaptvad. (easylist.txt: 6092) -/.*_adaptvad\. -# _adagency/ (easylist.txt: 6091) -/.*_adagency/ -# _ad_zone_ (easylist.txt: 6090) -/.*_ad_zone_ -# _ad_yellow. (easylist.txt: 6089) -/.*_ad_yellow\. -# _ad_wrapper. (easylist.txt: 6088) -/.*_ad_wrapper\. -# _ad_widesky. (easylist.txt: 6087) -/.*_ad_widesky\. -# _ad_view= (easylist.txt: 6086) -/.*_ad_view= -# _ad_vertical. (easylist.txt: 6085) -/.*_ad_vertical\. -# _ad_url= (easylist.txt: 6084) -/.*_ad_url= -# _ad_template_ (easylist.txt: 6083) -/.*_ad_template_ -# _ad_tall. (easylist.txt: 6082) -/.*_ad_tall\. -# _ad_square. (easylist.txt: 6081) -/.*_ad_square\. -# _ad_sponsor/ (easylist.txt: 6080) -/.*_ad_sponsor/ -# _ad_small. (easylist.txt: 6079) -/.*_ad_small\. -# _ad_slot= (easylist.txt: 6078) -/.*_ad_slot= -# _ad_skyscraper. (easylist.txt: 6077) -/.*_ad_skyscraper\. -# _ad_sky. (easylist.txt: 6076) -/.*_ad_sky\. -# _ad_size. (easylist.txt: 6075) -/.*_ad_size\. -# _ad_side. (easylist.txt: 6074) -/.*_ad_side\. -# _ad_show& (easylist.txt: 6073) -/.*_ad_show& -# _ad_serving. (easylist.txt: 6072) -/.*_ad_serving\. -# _ad_service. (easylist.txt: 6071) -/.*_ad_service\. -# _ad_run. (easylist.txt: 6070) -/.*_ad_run\. -# _ad_right_ (easylist.txt: 6069) -/.*_ad_right_ -# _ad_right. (easylist.txt: 6068) -/.*_ad_right\. -# _ad_renderer_ (easylist.txt: 6067) -/.*_ad_renderer_ -# _ad_render_ (easylist.txt: 6066) -/.*_ad_render_ -# _ad_promo2. (easylist.txt: 6065) -/.*_ad_promo2\. -# _ad_position_ (easylist.txt: 6064) -/.*_ad_position_ -# _ad_placeholder- (easylist.txt: 6063) -/.*_ad_placeholder- -# _ad_page_ (easylist.txt: 6062) -/.*_ad_page_ -# _ad_over_ (easylist.txt: 6061) -/.*_ad_over_ -# _ad_one. (easylist.txt: 6060) -/.*_ad_one\. -# _ad_number= (easylist.txt: 6059) -/.*_ad_number= -# _ad_new_ (easylist.txt: 6058) -/.*_ad_new_ -# _ad_minileaderboard. (easylist.txt: 6057) -/.*_ad_minileaderboard\. -# _ad_middle_ (easylist.txt: 6056) -/.*_ad_middle_ -# _ad_logo. (easylist.txt: 6055) -/.*_ad_logo\. -# _ad_leaderboard. (easylist.txt: 6054) -/.*_ad_leaderboard\. -# _ad_layer_ (easylist.txt: 6053) -/.*_ad_layer_ -# _ad_label. (easylist.txt: 6052) -/.*_ad_label\. -# _ad_interactive. (easylist.txt: 6051) -/.*_ad_interactive\. -# _ad_integration. (easylist.txt: 6050) -/.*_ad_integration\. -# _ad_init/ (easylist.txt: 6049) -/.*_ad_init/ -# _ad_images/ (easylist.txt: 6048) -/.*_ad_images/ -# _ad_image_ (easylist.txt: 6047) -/.*_ad_image_ -# _ad_iframe. (easylist.txt: 6046) -/.*_ad_iframe\. -# _ad_ids= (easylist.txt: 6045) -/.*_ad_ids= -# _ad_homepage. (easylist.txt: 6044) -/.*_ad_homepage\. -# _ad_heading. (easylist.txt: 6043) -/.*_ad_heading\. -# _ad_header. (easylist.txt: 6042) -/.*_ad_header\. -# _ad_head. (easylist.txt: 6041) -/.*_ad_head\. -# _ad_handler. (easylist.txt: 6040) -/.*_ad_handler\. -# _ad_frame. (easylist.txt: 6039) -/.*_ad_frame\. -# _ad_footer_ (easylist.txt: 6038) -/.*_ad_footer_ -# _ad_footer. (easylist.txt: 6037) -/.*_ad_footer\. -# _ad_feed. (easylist.txt: 6036) -/.*_ad_feed\. -# _ad_expand_ (easylist.txt: 6035) -/.*_ad_expand_ -# _ad_engine/ (easylist.txt: 6034) -/.*_ad_engine/ -# _ad_end_ (easylist.txt: 6033) -/.*_ad_end_ -# _ad_domain_ (easylist.txt: 6032) -/.*_ad_domain_ -# _ad_div= (easylist.txt: 6031) -/.*_ad_div= -# _ad_desktop_ (easylist.txt: 6030) -/.*_ad_desktop_ -# _ad_courier. (easylist.txt: 6029) -/.*_ad_courier\. -# _ad_count= (easylist.txt: 6028) -/.*_ad_count= -# _ad_count. (easylist.txt: 6027) -/.*_ad_count\. -# _ad_controller. (easylist.txt: 6026) -/.*_ad_controller\. -# _ad_content. (easylist.txt: 6025) -/.*_ad_content\. -# _ad_code. (easylist.txt: 6024) -/.*_ad_code\. -# _ad_close. (easylist.txt: 6023) -/.*_ad_close\. -# _ad_choices_ (easylist.txt: 6022) -/.*_ad_choices_ -# _ad_choices. (easylist.txt: 6021) -/.*_ad_choices\. -# _ad_change. (easylist.txt: 6020) -/.*_ad_change\. -# _ad_center. (easylist.txt: 6019) -/.*_ad_center\. -# _ad_bsb. (easylist.txt: 6018) -/.*_ad_bsb\. -# _ad_box. (easylist.txt: 6017) -/.*_ad_box\. -# _ad_bottom. (easylist.txt: 6016) -/.*_ad_bottom\. -# _ad_block& (easylist.txt: 6015) -/.*_ad_block& -# _ad_big. (easylist.txt: 6014) -/.*_ad_big\. -# _ad_banner_ (easylist.txt: 6013) -/.*_ad_banner_ -# _ad_banner. (easylist.txt: 6012) -/.*_ad_banner\. -# _ad_background. (easylist.txt: 6011) -/.*_ad_background\. -# _ad_article_ (easylist.txt: 6010) -/.*_ad_article_ -# _ad_actron. (easylist.txt: 6009) -/.*_ad_actron\. -# _ad_350x250. (easylist.txt: 6008) -/.*_ad_350x250\. -# _ad_300. (easylist.txt: 6007) -/.*_ad_300\. -# _ad_2012. (easylist.txt: 6006) -/.*_ad_2012\. -# _ad_125x125. (easylist.txt: 6005) -/.*_ad_125x125\. -# _ad?size= (easylist.txt: 6004) -/.*_ad\?size= -# _ad?darttag= (easylist.txt: 6003) -/.*_ad\?darttag= -# _ad9. (easylist.txt: 6002) -/.*_ad9\. -# _ad728x90. (easylist.txt: 6001) -/.*_ad728x90\. -# _ad6. (easylist.txt: 6000) -/.*_ad6\. -# _ad300x250. (easylist.txt: 5999) -/.*_ad300x250\. -# _ad300. (easylist.txt: 5998) -/.*_ad300\. -# _ad3. (easylist.txt: 5997) -/.*_ad3\. -# _ad234x90- (easylist.txt: 5996) -/.*_ad234x90- -# _ad2. (easylist.txt: 5995) -/.*_ad2\. -# _ad1b. (easylist.txt: 5994) -/.*_ad1b\. -# _ad1a. (easylist.txt: 5993) -/.*_ad1a\. -# _Ad125. (easylist.txt: 5992) -/.*_Ad125\. -# _ad120x120_ (easylist.txt: 5991) -/.*_ad120x120_ -# _ad103. (easylist.txt: 5990) -/.*_ad103\. -# _ad01_ (easylist.txt: 5988) -/.*_ad01_ -# _ad01. (easylist.txt: 5987) -/.*_ad01\. -# _ad/section_ (easylist.txt: 5986) -/.*_ad/section_ -# _ad/public/ (easylist.txt: 5985) -/.*_ad/public/ -# _AD/jquery. (easylist.txt: 5984) -/.*_AD/jquery\. -# _ad/full_ (easylist.txt: 5983) -/.*_ad/full_ -# _ad/display? (easylist.txt: 5982) -/.*_ad/display\? -# _ad.png? (easylist.txt: 5981) -/.*_ad\.png\? -# _ad.php? (easylist.txt: 5980) -/.*_ad\.php\? -# _ad.jsp? (easylist.txt: 5979) -/.*_ad\.jsp\? -# _ad.gif| (easylist.txt: 5978) -/.*_ad\.gif$ -# _ad-125x125. (easylist.txt: 5977) -/.*_ad-125x125\. -# _ad&zone= (easylist.txt: 5976) -/.*_ad&zone= -# _acorn_ad_ (easylist.txt: 5975) -/.*_acorn_ad_ -# _728x90ad_ (easylist.txt: 5974) -/.*_728x90ad_ -# _468x60ad. (easylist.txt: 5973) -/.*_468x60ad\. -# _300x250Banner_ (easylist.txt: 5972) -/.*_300x250Banner_ -# _160x550. (easylist.txt: 5971) -/.*_160x550\. -# _160_ad_ (easylist.txt: 5970) -/.*_160_ad_ -# _125ad. (easylist.txt: 5969) -/.*_125ad\. -# ^pid=Ads^ (easylist.txt: 5968) -/(.*[^\w%.-])?pid=Ads[^\w%.-] -# ^mod=wms&do=view_*&zone= (easylist.txt: 5967) -/(.*[^\w%.-])?mod=wms&do=view_.*&zone= -# ^fp=*&prvtof= (easylist.txt: 5966) -/(.*[^\w%.-])?fp=.*&prvtof= -# ?ZoneID=*&SiteID=*&PageID= (easylist.txt: 5965) -/.*\?ZoneID=.*&SiteID=.*&PageID= -# ?ZoneID=*&PageID=*&SiteID= (easylist.txt: 5964) -/.*\?ZoneID=.*&PageID=.*&SiteID= -# ?wpproadszoneid= (easylist.txt: 5963) -/.*\?wpproadszoneid= -# ?wm=*&prm=rev& (easylist.txt: 5962) -/.*\?wm=.*&prm=rev& -# ?view=ad& (easylist.txt: 5961) -/.*\?view=ad& -# ?type=oas_pop& (easylist.txt: 5960) -/.*\?type=oas_pop& -# ?type=ad& (easylist.txt: 5959) -/.*\?type=ad& -# ?simple_ad_ (easylist.txt: 5958) -/.*\?simple_ad_ -# ?sid=ads (easylist.txt: 5957) -/.*\?sid=ads -# ?service=ad& (easylist.txt: 5956) -/.*\?service=ad& -# ?phpAds_ (easylist.txt: 5955) -/.*\?phpAds_ -# ?OASTagURL= (easylist.txt: 5954) -/.*\?OASTagURL= -# ?module=ads/ (easylist.txt: 5953) -/.*\?module=ads/ -# ?idaffiliation= (easylist.txt: 5952) -/.*\?idaffiliation= -# ?handler=ads& (easylist.txt: 5951) -/.*\?handler=ads& -# ?goto=ad| (easylist.txt: 5950) -/.*\?goto=ad$ -# ?g1t2h=*&t1m2k3= (easylist.txt: 5948) -/.*\?g1t2h=.*&t1m2k3= -# ?file=ads& (easylist.txt: 5947) -/.*\?file=ads& -# ?dfpadname= (easylist.txt: 5946) -/.*\?dfpadname= -# ?bannerXGroupId= (easylist.txt: 5945) -/.*\?bannerXGroupId= -# ?bannerid= (easylist.txt: 5944) -/.*\?bannerid= -# ?banner_id= (easylist.txt: 5943) -/.*\?banner_id= -# ?banner.id= (easylist.txt: 5942) -/.*\?banner\.id= -# ?adzone= (easylist.txt: 5941) -/.*\?adzone= -# ?adx= (easylist.txt: 5940) -/.*\?adx= -# ?advurl= (easylist.txt: 5939) -/.*\?advurl= -# ?advtile= (easylist.txt: 5938) -/.*\?advtile= -# ?advsystem= (easylist.txt: 5937) -/.*\?advsystem= -# ?advideo_ (easylist.txt: 5936) -/.*\?advideo_ -# ?advertising= (easylist.txt: 5935) -/.*\?advertising= -# ?advertiser= (easylist.txt: 5932) -/.*\?advertiser= -# ?advertisement= (easylist.txt: 5931) -/.*\?advertisement= -# ?advert_key= (easylist.txt: 5930) -/.*\?advert_key= -# ?adversion= (easylist.txt: 5929) -/.*\?adversion= -# ?adv_type= (easylist.txt: 5928) -/.*\?adv_type= -# ?adv/id= (easylist.txt: 5927) -/.*\?adv/id= -# ?adunitname= (easylist.txt: 5926) -/.*\?adunitname= -# ?adunitid= (easylist.txt: 5925) -/.*\?adunitid= -# ?adunit_id= (easylist.txt: 5924) -/.*\?adunit_id= -# ?adtype= (easylist.txt: 5923) -/.*\?adtype= -# ?adtechplacementid= (easylist.txt: 5922) -/.*\?adtechplacementid= -# ?adtarget= (easylist.txt: 5921) -/.*\?adtarget= -# ?adTagUrl= (easylist.txt: 5920) -/.*\?adTagUrl= -# ?adtag= (easylist.txt: 5919) -/.*\?adtag= -# ?adslot= (easylist.txt: 5918) -/.*\?adslot= -# ?adsize= (easylist.txt: 5917) -/.*\?adsize= -# ?adsite= (easylist.txt: 5916) -/.*\?adsite= -# ?adsdata= (easylist.txt: 5915) -/.*\?adsdata= -# ?ads= (easylist.txt: 5914) -/.*\?ads= -# ?adpartner= (easylist.txt: 5913) -/.*\?adpartner= -# ?adpage= (easylist.txt: 5912) -/.*\?adpage= -# ?adlocation= (easylist.txt: 5911) -/.*\?adlocation= -# ?adloc= (easylist.txt: 5910) -/.*\?adloc= -# ?adfox_ (easylist.txt: 5909) -/.*\?adfox_ -# ?adformat= (easylist.txt: 5908) -/.*\?adformat= -# ?adflashid= (easylist.txt: 5907) -/.*\?adflashid= -# ?adCount= (easylist.txt: 5906) -/.*\?adCount= -# ?adcontext= (easylist.txt: 5905) -/.*\?adcontext= -# ?adclass= (easylist.txt: 5904) -/.*\?adclass= -# ?adarea= (easylist.txt: 5903) -/.*\?adarea= -# ?ad_width= (easylist.txt: 5902) -/.*\?ad_width= -# ?ad_type= (easylist.txt: 5901) -/.*\?ad_type= -# ?ad_tag= (easylist.txt: 5900) -/.*\?ad_tag= -# ?ad_size= (easylist.txt: 5899) -/.*\?ad_size= -# ?ad_ids= (easylist.txt: 5898) -/.*\?ad_ids= -# ?action=ads& (easylist.txt: 5897) -/.*\?action=ads& -# ?*=x55g%3add4vv4fy. (easylist.txt: 5896) -/.*\?.*=x55g%3add4vv4fy\. -# =webad2& (easylist.txt: 5895) -/.*=webad2& -# =web&ads= (easylist.txt: 5894) -/.*=web&ads= -# =tickerReportAdCallback_ (easylist.txt: 5893) -/.*=tickerReportAdCallback_ -# =textads& (easylist.txt: 5892) -/.*=textads& -# =simpleads/ (easylist.txt: 5891) -/.*=simpleads/ -# =showsearchgoogleads& (easylist.txt: 5890) -/.*=showsearchgoogleads& -# =searchadslider| (easylist.txt: 5889) -/.*=searchadslider$ -# =rightAds_ (easylist.txt: 5888) -/.*=rightAds_ -# =oas_tag. (easylist.txt: 5887) -/.*=oas_tag\. -# =js_ads& (easylist.txt: 5886) -/.*=js_ads& -# =iframe_adv& (easylist.txt: 5885) -/.*=iframe_adv& -# =half-page-ad& (easylist.txt: 5884) -/.*=half-page-ad& -# =GetSponsorAds& (easylist.txt: 5883) -/.*=GetSponsorAds& -# =dynamicwebad& (easylist.txt: 5882) -/.*=dynamicwebad& -# =dynamicads& (easylist.txt: 5881) -/.*=dynamicads& -# =displayAds& (easylist.txt: 5880) -/.*=displayAds& -# =DisplayAd& (easylist.txt: 5879) -/.*=DisplayAd& -# =display_ad& (easylist.txt: 5878) -/.*=display_ad& -# =deliverAdFrame& (easylist.txt: 5877) -/.*=deliverAdFrame& -# =dartad_ (easylist.txt: 5876) -/.*=dartad_ -# =com_ads& (easylist.txt: 5875) -/.*=com_ads& -# =clkads/ (easylist.txt: 5874) -/.*=clkads/ -# =big-ad-switch_ (easylist.txt: 5873) -/.*=big-ad-switch_ -# =banners_ad& (easylist.txt: 5872) -/.*=banners_ad& -# =akiba_ads_ (easylist.txt: 5871) -/.*=akiba_ads_ -# =adView& (easylist.txt: 5870) -/.*=adView& -# =advertorial& (easylist.txt: 5869) -/.*=advertorial& -# =advertiser/ (easylist.txt: 5868) -/.*=advertiser/ -# =advertiser. (easylist.txt: 5867) -/.*=advertiser\. -# =advert/ (easylist.txt: 5866) -/.*=advert/ -# =adunit& (easylist.txt: 5865) -/.*=adunit& -# =adtech_ (easylist.txt: 5864) -/.*=adtech_ -# =adspremiumplacement& (easylist.txt: 5863) -/.*=adspremiumplacement& -# =adslot& (easylist.txt: 5862) -/.*=adslot& -# =adshow& (easylist.txt: 5861) -/.*=adshow& -# =adsfinal. (easylist.txt: 5860) -/.*=adsfinal\. -# =adscripts& (easylist.txt: 5859) -/.*=adscripts& -# =adsCallback& (easylist.txt: 5858) -/.*=adsCallback& -# =adreplacementWrapperReg. (easylist.txt: 5857) -/.*=adreplacementWrapperReg\. -# =admodeliframe& (easylist.txt: 5856) -/.*=admodeliframe& -# =adMenu& (easylist.txt: 5855) -/.*=adMenu& -# =admeld& (easylist.txt: 5854) -/.*=admeld& -# =adlabs& (easylist.txt: 5853) -/.*=adlabs& -# =adexpert& (easylist.txt: 5852) -/.*=adexpert& -# =adcode& (easylist.txt: 5851) -/.*=adcode& -# =adcenter& (easylist.txt: 5850) -/.*=adcenter& -# =adbanner_ (easylist.txt: 5849) -/.*=adbanner_ -# =ad_iframe_ (easylist.txt: 5848) -/.*=ad_iframe_ -# =ad_iframe& (easylist.txt: 5847) -/.*=ad_iframe& -# =ad320x50- (easylist.txt: 5846) -/.*=ad320x50- -# =ad-rectangle- (easylist.txt: 5845) -/.*=ad-rectangle- -# =ad-leaderboard- (easylist.txt: 5844) -/.*=ad-leaderboard- -# ;iframeid=ad_ (easylist.txt: 5843) -/.*;iframeid=ad_ -# ;adsense_ (easylist.txt: 5841) -/.*;adsense_ -# :8080/ads/ (easylist.txt: 5840) -/.*:8080/ads/ -# ://wrapper.*/a? (easylist.txt: 5839) -/.*://wrapper\..*/a\? -wrapper.*./(.*/)?a\? -# ://synad. (easylist.txt: 5838) -/.*://synad\. -synad.*. -# ://rss.*/~a/ (easylist.txt: 5837) -/.*://rss\..*/~a/ -rss.*./(.*/)?~a/ -# ://pop-over. (easylist.txt: 5835) -/.*://pop-over\. -pop-over.*. -# ://ox-*/jstag^ (easylist.txt: 5834) -/.*://ox-.*/jstag[^\w%.-] -ox-*./(.*/)?jstag[^\w%.-] -# ://oas.*@ (easylist.txt: 5833) -/.*://oas\..*@ -oas.*./.*@ -# ://findnsave.*.*/td/portablerop.aspx? (easylist.txt: 5832) -/.*://findnsave\..*\..*/td/portablerop\.aspx\? -findnsave.*./.*\..*/td/portablerop\.aspx\? -findnsave.*.*./(.*/)?td/portablerop\.aspx\? -# ://findnsave.*.*/api/groupon.json? (easylist.txt: 5831) -/.*://findnsave\..*\..*/api/groupon\.json\? -findnsave.*./.*\..*/api/groupon\.json\? -findnsave.*.*./(.*/)?api/groupon\.json\? -# ://feeds.*/~a/ (easylist.txt: 5830) -/.*://feeds\..*/~a/ -feeds.*./(.*/)?~a/ -# ://delivery.*/jstag^ (easylist.txt: 5829) -/.*://delivery\..*/jstag[^\w%.-] -delivery.*./(.*/)?jstag[^\w%.-] -# ://bwp.*/search (easylist.txt: 5828) -/.*://bwp\..*/search -bwp.*./(.*/)?search -# ://ax-d.*/jstag^ (easylist.txt: 5825) -/.*://ax-d\..*/jstag[^\w%.-] -ax-d.*./(.*/)?jstag[^\w%.-] -# ://ads. (easylist.txt: 5821) -/.*://ads\. -ads.*. -# ://adcl. (easylist.txt: 5820) -/.*://adcl\. -adcl.*. -# ://ad.*/jstag^ (easylist.txt: 5819) -/.*://ad\..*/jstag[^\w%.-] -ad.*./(.*/)?jstag[^\w%.-] -# ://a.ads. (easylist.txt: 5818) -/.*://a\.ads\. -a.ads.*. -# /~cdn/ads/* (easylist.txt: 5817) -/(.*/)?~cdn/ads/.* -# /zedo_ (easylist.txt: 5816) -/(.*/)?zedo_ -# /zanox_ad/* (easylist.txt: 5815) -/(.*/)?zanox_ad/.* -# /zanox/banner/* (easylist.txt: 5814) -/(.*/)?zanox/banner/.* -# /zalando-ad- (easylist.txt: 5813) -/(.*/)?zalando-ad- -zalando-ad-*. -# /zagcookie_ (easylist.txt: 5812) -/(.*/)?zagcookie_ -# /z/ads/* (easylist.txt: 5811) -/(.*/)?z/ads/.* -# /z-ads. (easylist.txt: 5810) -/(.*/)?z-ads\. -z-ads.*. -# /yume_ad_library_ (easylist.txt: 5809) -/(.*/)?yume_ad_library_ -# /ysmwrapper.js (easylist.txt: 5808) -/(.*/)?ysmwrapper\.js -ysmwrapper.js*. -# /ysmads. (easylist.txt: 5807) -/(.*/)?ysmads\. -ysmads.*. -# /ysc_csc_news (easylist.txt: 5806) -/(.*/)?ysc_csc_news -# /ypad/* (easylist.txt: 5805) -/(.*/)?ypad/.* -# /youradhere_ (easylist.txt: 5804) -/(.*/)?youradhere_ -# /youradhere468- (easylist.txt: 5803) -/(.*/)?youradhere468- -youradhere468-*. -# /youradhere. (easylist.txt: 5802) -/(.*/)?youradhere\. -youradhere.*. -# /yourad1. (easylist.txt: 5801) -/(.*/)?yourad1\. -yourad1.*. -# /your_ad. (easylist.txt: 5800) -/(.*/)?your_ad\. -# /your-ad. (easylist.txt: 5799) -/(.*/)?your-ad\. -your-ad.*. -# /your-ad- (easylist.txt: 5798) -/(.*/)?your-ad- -your-ad-*. -# /yld_mgr/* (easylist.txt: 5797) -/(.*/)?yld_mgr/.* -# /yld/js/* (easylist.txt: 5796) -/(.*/)?yld/js/.* -# /yin-ad/* (easylist.txt: 5795) -/(.*/)?yin-ad/.* -# /yieldmanager/* (easylist.txt: 5794) -/(.*/)?yieldmanager/.* -# /yieldlab. (easylist.txt: 5793) -/(.*/)?yieldlab\. -yieldlab.*. -# /yieldads. (easylist.txt: 5792) -/(.*/)?yieldads\. -yieldads.*. -# /yhs/ads? (easylist.txt: 5791) -/(.*/)?yhs/ads\? -# /yesbaby. (easylist.txt: 5790) -/(.*/)?yesbaby\. -yesbaby.*. -# /yellowpagesads/* (easylist.txt: 5789) -/(.*/)?yellowpagesads/.* -# /yahoofeedproxy. (easylist.txt: 5788) -/(.*/)?yahoofeedproxy\. -yahoofeedproxy.*. -# /yahooadsobject. (easylist.txt: 5787) -/(.*/)?yahooadsobject\. -yahooadsobject.*. -# /yahooadsapi. (easylist.txt: 5786) -/(.*/)?yahooadsapi\. -yahooadsapi.*. -# /yahooads/* (easylist.txt: 5785) -/(.*/)?yahooads/.* -# /yahooads. (easylist.txt: 5784) -/(.*/)?yahooads\. -yahooads.*. -# /YahooAd_ (easylist.txt: 5783) -/(.*/)?YahooAd_ -# /yahoo_overture. (easylist.txt: 5782) -/(.*/)?yahoo_overture\. -# /yahoo/ads. (easylist.txt: 5781) -/(.*/)?yahoo/ads\. -# /yahoo-ads/* (easylist.txt: 5780) -/(.*/)?yahoo-ads/.* -# /yahoo-ad- (easylist.txt: 5779) -/(.*/)?yahoo-ad- -yahoo-ad-*. -# /yads_ (easylist.txt: 5778) -/(.*/)?yads_ -# /yads/* (easylist.txt: 5777) -/(.*/)?yads/.* -# /yads. (easylist.txt: 5776) -/(.*/)?yads\. -yads.*. -# /yads- (easylist.txt: 5775) -/(.*/)?yads- -yads-*. -# /xxxmatch_ (easylist.txt: 5774) -/(.*/)?xxxmatch_ -# /xwords. (easylist.txt: 5773) -/(.*/)?xwords\. -xwords.*. -# /xpiads. (easylist.txt: 5771) -/(.*/)?xpiads\. -xpiads.*. -# /xnxx-ads. (easylist.txt: 5770) -/(.*/)?xnxx-ads\. -xnxx-ads.*. -# /xmladparser. (easylist.txt: 5769) -/(.*/)?xmladparser\. -xmladparser.*. -# /xml/ads_ (easylist.txt: 5768) -/(.*/)?xml/ads_ -# /xml/ad/* (easylist.txt: 5767) -/(.*/)?xml/ad/.* -# /xhr/ad/* (easylist.txt: 5765) -/(.*/)?xhr/ad/.* -# /xfiles/ads/* (easylist.txt: 5764) -/(.*/)?xfiles/ads/.* -# /xclicks. (easylist.txt: 5763) -/(.*/)?xclicks\. -xclicks.*. -# /xbanner.php? (easylist.txt: 5762) -/(.*/)?xbanner\.php\? -# /xadvertisement. (easylist.txt: 5761) -/(.*/)?xadvertisement\. -xadvertisement.*. -# /xads.php (easylist.txt: 5760) -/(.*/)?xads\.php -xads.php*. -# /x5advcorner. (easylist.txt: 5759) -/(.*/)?x5advcorner\. -x5advcorner.*. -# /www/js/ad/* (easylist.txt: 5758) -/(.*/)?www/js/ad/.* -# /www/delivery/* (easylist.txt: 5757) -/(.*/)?www/delivery/.* -# /www/deliverx/* (easylist.txt: 5756) -/(.*/)?www/deliverx/.* -# /www/ads/* (easylist.txt: 5755) -/(.*/)?www/ads/.* -# /www/ad/* (easylist.txt: 5754) -/(.*/)?www/ad/.* -# /wwe_ads/* (easylist.txt: 5753) -/(.*/)?wwe_ads/.* -# /wwe_ads. (easylist.txt: 5752) -/(.*/)?wwe_ads\. -# /writelayerad. (easylist.txt: 5751) -/(.*/)?writelayerad\. -writelayerad.*. -# /wrapper/ads/* (easylist.txt: 5750) -/(.*/)?wrapper/ads/.* -# /wpproads. (easylist.txt: 5749) -/(.*/)?wpproads\. -wpproads.*. -# /wpproadds. (easylist.txt: 5748) -/(.*/)?wpproadds\. -wpproadds.*. -# /wpbanners_show.php (easylist.txt: 5747) -/(.*/)?wpbanners_show\.php -# /wpads/iframe. (easylist.txt: 5746) -/(.*/)?wpads/iframe\. -# /wp_pro_ad_system/* (easylist.txt: 5745) -/(.*/)?wp_pro_ad_system/.* -# /wp_ad_250_ (easylist.txt: 5744) -/(.*/)?wp_ad_250_ -# /wp_ad_250. (easylist.txt: 5743) -/(.*/)?wp_ad_250\. -# /wp-srv/ad/* (easylist.txt: 5742) -/(.*/)?wp-srv/ad/.* -# /wp-popup-scheduler/* (easylist.txt: 5741) -/(.*/)?wp-popup-scheduler/.* -# /wp-content/uploads/useful_banner_manager_banners/* (easylist.txt: 5740) -/(.*/)?wp-content/uploads/useful_banner_manager_banners/.* -# /wp-content/plugins/wp-super-popup-pro/* (easylist.txt: 5738) -/(.*/)?wp-content/plugins/wp-super-popup-pro/.* -# /wp-content/plugins/wp-bannerize/* (easylist.txt: 5737) -/(.*/)?wp-content/plugins/wp-bannerize/.* -# /wp-content/plugins/useful-banner-manager/* (easylist.txt: 5736) -/(.*/)?wp-content/plugins/useful-banner-manager/.* -# /wp-content/plugins/platinumpopup/* (easylist.txt: 5735) -/(.*/)?wp-content/plugins/platinumpopup/.* -# /wp-content/plugins/fasterim-optin/* (easylist.txt: 5733) -/(.*/)?wp-content/plugins/fasterim-optin/.* -# /wp-content/plugins/bhcb/lock.js (easylist.txt: 5732) -/(.*/)?wp-content/plugins/bhcb/lock\.js -# /wp-content/plugins/banner-manager/* (easylist.txt: 5731) -/(.*/)?wp-content/plugins/banner-manager/.* -# /wp-content/plugins/automatic-social-locker/* (easylist.txt: 5730) -/(.*/)?wp-content/plugins/automatic-social-locker/.* -# /wp-content/plugins/amazon-product-in-a-post-plugin/* (easylist.txt: 5729) -/(.*/)?wp-content/plugins/amazon-product-in-a-post-plugin/.* -# /wp-content/mbp-banner/* (easylist.txt: 5728) -/(.*/)?wp-content/mbp-banner/.* -# /wp-content/ads/* (easylist.txt: 5727) -/(.*/)?wp-content/ads/.* -# /work.php?n=*&size=*&c= (easylist.txt: 5726) -/(.*/)?work\.php\?n=.*&size=.*&c= -# /wordpress-ads-plug-in/* (easylist.txt: 5725) -/(.*/)?wordpress-ads-plug-in/.* -# /wmads. (easylist.txt: 5724) -/(.*/)?wmads\. -wmads.*. -# /wlbetathome/bannerflow/* (easylist.txt: 5723) -/(.*/)?wlbetathome/bannerflow/.* -# /wix-ad. (easylist.txt: 5722) -/(.*/)?wix-ad\. -wix-ad.*. -# /wired/ads/* (easylist.txt: 5721) -/(.*/)?wired/ads/.* -# /wire/ads/* (easylist.txt: 5720) -/(.*/)?wire/ads/.* -# /wipeads/* (easylist.txt: 5719) -/(.*/)?wipeads/.* -# /widgets/sponsored/* (easylist.txt: 5718) -/(.*/)?widgets/sponsored/.* -# /widgets/ads. (easylist.txt: 5717) -/(.*/)?widgets/ads\. -# /widgetadsense. (easylist.txt: 5716) -/(.*/)?widgetadsense\. -widgetadsense.*. -# /widgetad. (easylist.txt: 5715) -/(.*/)?widgetad\. -widgetad.*. -# /widget/ads/* (easylist.txt: 5714) -/(.*/)?widget/ads/.* -# /widget/ads. (easylist.txt: 5713) -/(.*/)?widget/ads\. -# /widget/ad/* (easylist.txt: 5712) -/(.*/)?widget/ad/.* -# /werbebanner/* (easylist.txt: 5711) -/(.*/)?werbebanner/.* -# /welcomeadredirect. (easylist.txt: 5710) -/(.*/)?welcomeadredirect\. -welcomeadredirect.*. -# /welcomead. (easylist.txt: 5709) -/(.*/)?welcomead\. -welcomead.*. -# /welcome_ad. (easylist.txt: 5708) -/(.*/)?welcome_ad\. -# /weeklyAdsLabel. (easylist.txt: 5707) -/(.*/)?weeklyAdsLabel\. -weeklyAdsLabel.*. -# /weborama.js (easylist.txt: 5706) -/(.*/)?weborama\.js -weborama.js*. -# /webmaster_ads/* (easylist.txt: 5705) -/(.*/)?webmaster_ads/.* -# /webmailad. (easylist.txt: 5704) -/(.*/)?webmailad\. -webmailad.*. -# /webadverts/* (easylist.txt: 5703) -/(.*/)?webadverts/.* -# /webadvert3/* (easylist.txt: 5702) -/(.*/)?webadvert3/.* -# /webadvert/* (easylist.txt: 5701) -/(.*/)?webadvert/.* -# /webadvert. (easylist.txt: 5700) -/(.*/)?webadvert\. -webadvert.*. -# /webadserver. (easylist.txt: 5699) -/(.*/)?webadserver\. -webadserver.*. -# /webads_ (easylist.txt: 5698) -/(.*/)?webads_ -# /webads/* (easylist.txt: 5697) -/(.*/)?webads/.* -# /webads. (easylist.txt: 5696) -/(.*/)?webads\. -webads.*. -# /webadimg/* (easylist.txt: 5695) -/(.*/)?webadimg/.* -# /webad? (easylist.txt: 5694) -/(.*/)?webad\? -# /WebAd/* (easylist.txt: 5693) -/(.*/)?WebAd/.* -# /webad. (easylist.txt: 5692) -/(.*/)?webad\. -webad.*. -# /web_ads/* (easylist.txt: 5691) -/(.*/)?web_ads/.* -# /web/ads/* (easylist.txt: 5690) -/(.*/)?web/ads/.* -# /web-ads/* (easylist.txt: 5689) -/(.*/)?web-ads/.* -# /web-ads. (easylist.txt: 5688) -/(.*/)?web-ads\. -web-ads.*. -# /web-ad_ (easylist.txt: 5687) -/(.*/)?web-ad_ -# /weather/ads/* (easylist.txt: 5686) -/(.*/)?weather/ads/.* -# /weather-sponsor/* (easylist.txt: 5685) -/(.*/)?weather-sponsor/.* -# /wbadvert/* (easylist.txt: 5684) -/(.*/)?wbadvert/.* -# /wave-ad- (easylist.txt: 5683) -/(.*/)?wave-ad- -wave-ad-*. -# /watchit_ad. (easylist.txt: 5682) -/(.*/)?watchit_ad\. -# /wallpaperads/* (easylist.txt: 5681) -/(.*/)?wallpaperads/.* -# /wallpaper_ads/* (easylist.txt: 5680) -/(.*/)?wallpaper_ads/.* -# /wahoha. (easylist.txt: 5679) -/(.*/)?wahoha\. -wahoha.*. -# /w/ads/* (easylist.txt: 5677) -/(.*/)?w/ads/.* -# /VXLayerAd- (easylist.txt: 5676) -/(.*/)?VXLayerAd- -VXLayerAd-*. -# /vtextads. (easylist.txt: 5675) -/(.*/)?vtextads\. -vtextads.*. -# /vrdinterads- (easylist.txt: 5674) -/(.*/)?vrdinterads- -vrdinterads-*. -# /vplayerad. (easylist.txt: 5673) -/(.*/)?vplayerad\. -vplayerad.*. -# /vpaidadrenderer. (easylist.txt: 5672) -/(.*/)?vpaidadrenderer\. -vpaidadrenderer.*. -# /vpaidad3. (easylist.txt: 5671) -/(.*/)?vpaidad3\. -vpaidad3.*. -# /vogue_ads/* (easylist.txt: 5670) -/(.*/)?vogue_ads/.* -# /vnads/* (easylist.txt: 5669) -/(.*/)?vnads/.* -# /vnads. (easylist.txt: 5668) -/(.*/)?vnads\. -vnads.*. -# /visitoursponsors. (easylist.txt: 5667) -/(.*/)?visitoursponsors\. -visitoursponsors.*. -# /vision/ads/* (easylist.txt: 5666) -/(.*/)?vision/ads/.* -# /virtualgirlhd- (easylist.txt: 5665) -/(.*/)?virtualgirlhd- -virtualgirlhd-*. -# /virtualgirl/* (easylist.txt: 5664) -/(.*/)?virtualgirl/.* -# /virtual_girl_ (easylist.txt: 5663) -/(.*/)?virtual_girl_ -# /virtuagirlhd. (easylist.txt: 5662) -/(.*/)?virtuagirlhd\. -virtuagirlhd.*. -# /virtuagirl3. (easylist.txt: 5661) -/(.*/)?virtuagirl3\. -virtuagirl3.*. -# /virtuagirl/* (easylist.txt: 5660) -/(.*/)?virtuagirl/.* -# /virtuagirl. (easylist.txt: 5659) -/(.*/)?virtuagirl\. -virtuagirl.*. -# /views/ads/* (easylist.txt: 5658) -/(.*/)?views/ads/.* -# /viewid=*/site=*/size= (easylist.txt: 5657) -/(.*/)?viewid=.*/site=.*/size= -# /viewer/rad? (easylist.txt: 5656) -/(.*/)?viewer/rad\? -# /viewbannerad. (easylist.txt: 5655) -/(.*/)?viewbannerad\. -viewbannerad.*. -# /viewad? (easylist.txt: 5654) -/(.*/)?viewad\? -# /viewad/* (easylist.txt: 5653) -/(.*/)?viewad/.* -# /viewad. (easylist.txt: 5652) -/(.*/)?viewad\. -viewad.*. -# /view_banner. (easylist.txt: 5651) -/(.*/)?view_banner\. -# /view/banner/* (easylist.txt: 5650) -/(.*/)?view/banner/.* -# /view/ads/* (easylist.txt: 5649) -/(.*/)?view/ads/.* -# /videowall-ad. (easylist.txt: 5648) -/(.*/)?videowall-ad\. -videowall-ad.*. -# /videostreaming_ads. (easylist.txt: 5647) -/(.*/)?videostreaming_ads\. -# /videojs.ads. (easylist.txt: 5646) -/(.*/)?videojs\.ads\. -videojs.ads.*. -# /VideoAdsServingService/* (easylist.txt: 5645) -/(.*/)?VideoAdsServingService/.* -# /videoads/* (easylist.txt: 5644) -/(.*/)?videoads/.* -# /videoads. (easylist.txt: 5643) -/(.*/)?videoads\. -videoads.*. -# /videoadrenderer. (easylist.txt: 5642) -/(.*/)?videoadrenderer\. -videoadrenderer.*. -# /VideoAdContent? (easylist.txt: 5641) -/(.*/)?VideoAdContent\? -# /videoad_new. (easylist.txt: 5640) -/(.*/)?videoad_new\. -# /VideoAd/* (easylist.txt: 5639) -/(.*/)?VideoAd/.* -# /videoad. (easylist.txt: 5638) -/(.*/)?videoad\. -videoad.*. -# /video_ads/* (easylist.txt: 5637) -/(.*/)?video_ads/.* -# /video_ads. (easylist.txt: 5636) -/(.*/)?video_ads\. -# /video_ad_ (easylist.txt: 5635) -/(.*/)?video_ad_ -# /video_ad. (easylist.txt: 5634) -/(.*/)?video_ad\. -# /video2adrenderer. (easylist.txt: 5633) -/(.*/)?video2adrenderer\. -video2adrenderer.*. -# /video/ads/* (easylist.txt: 5632) -/(.*/)?video/ads/.* -# /video.ads.php? (easylist.txt: 5631) -/(.*/)?video\.ads\.php\? -# /video-ads-player. (easylist.txt: 5630) -/(.*/)?video-ads-player\. -video-ads-player.*. -# /video-ad-overlay. (easylist.txt: 5629) -/(.*/)?video-ad-overlay\. -video-ad-overlay.*. -# /vidadv. (easylist.txt: 5628) -/(.*/)?vidadv\. -vidadv.*. -# /viagogoads. (easylist.txt: 5627) -/(.*/)?viagogoads\. -viagogoads.*. -# /VHDpoppingModels/* (easylist.txt: 5626) -/(.*/)?VHDpoppingModels/.* -# /vghd2.gif (easylist.txt: 5625) -/(.*/)?vghd2\.gif -vghd2.gif*. -# /vghd.swf (easylist.txt: 5624) -/(.*/)?vghd\.swf -vghd.swf*. -# /vghd.gif (easylist.txt: 5623) -/(.*/)?vghd\.gif -vghd.gif*. -# /verticaladrotatorv2. (easylist.txt: 5622) -/(.*/)?verticaladrotatorv2\. -verticaladrotatorv2.*. -# /vert_ad. (easylist.txt: 5621) -/(.*/)?vert_ad\. -# /vert728ad. (easylist.txt: 5620) -/(.*/)?vert728ad\. -vert728ad.*. -# /vericaladtitle. (easylist.txt: 5619) -/(.*/)?vericaladtitle\. -vericaladtitle.*. -# /vendor-ads- (easylist.txt: 5618) -/(.*/)?vendor-ads- -vendor-ads-*. -# /vclkads. (easylist.txt: 5617) -/(.*/)?vclkads\. -vclkads.*. -# /vbvua.js (easylist.txt: 5616) -/(.*/)?vbvua\.js -vbvua.js*. -# /vboard/ads/* (easylist.txt: 5615) -/(.*/)?vboard/ads/.* -# /vb/ads/* (easylist.txt: 5614) -/(.*/)?vb/ads/.* -# /vastads. (easylist.txt: 5613) -/(.*/)?vastads\. -vastads.*. -# /VASTAdPlugin. (easylist.txt: 5612) -/(.*/)?VASTAdPlugin\. -VASTAdPlugin.*. -# /vast_ads_ (easylist.txt: 5611) -/(.*/)?vast_ads_ -# /valueclickvert. (easylist.txt: 5610) -/(.*/)?valueclickvert\. -valueclickvert.*. -# /valueclickbanner. (easylist.txt: 5609) -/(.*/)?valueclickbanner\. -valueclickbanner.*. -# /valueclick. (easylist.txt: 5608) -/(.*/)?valueclick\. -valueclick.*. -# /valueclick-ad. (easylist.txt: 5607) -/(.*/)?valueclick-ad\. -valueclick-ad.*. -# /vads/* (easylist.txt: 5606) -/(.*/)?vads/.* -# /v9/adv/* (easylist.txt: 5605) -/(.*/)?v9/adv/.* -# /v5/ads/* (easylist.txt: 5604) -/(.*/)?v5/ads/.* -# /utep_ad.js (easylist.txt: 5603) -/(.*/)?utep_ad\.js -# /utep/ad/* (easylist.txt: 5602) -/(.*/)?utep/ad/.* -# /usernext. (easylist.txt: 5601) -/(.*/)?usernext\. -usernext.*. -# /userimages/ads/* (easylist.txt: 5600) -/(.*/)?userimages/ads/.* -# /userad/* (easylist.txt: 5599) -/(.*/)?userad/.* -# /userad. (easylist.txt: 5598) -/(.*/)?userad\. -userad.*. -# /user_ads/* (easylist.txt: 5597) -/(.*/)?user_ads/.* -# /user/ads? (easylist.txt: 5596) -/(.*/)?user/ads\? -# /usenext16. (easylist.txt: 5595) -/(.*/)?usenext16\. -usenext16.*. -# /us-ads. (easylist.txt: 5594) -/(.*/)?us-ads\. -us-ads.*. -# /upsellingads/* (easylist.txt: 5593) -/(.*/)?upsellingads/.* -# /uploads/adv_ (easylist.txt: 5592) -/(.*/)?uploads/adv_ -# /uploads/adv/* (easylist.txt: 5591) -/(.*/)?uploads/adv/.* -# /uploads/ads/* (easylist.txt: 5590) -/(.*/)?uploads/ads/.* -# /UploadedAds/* (easylist.txt: 5589) -/(.*/)?UploadedAds/.* -# /uploaded/ads/* (easylist.txt: 5588) -/(.*/)?uploaded/ads/.* -# /upload/ads/* (easylist.txt: 5587) -/(.*/)?upload/ads/.* -# /uplimg/ads/* (easylist.txt: 5586) -/(.*/)?uplimg/ads/.* -# /update_layer/layer_os_new.php (easylist.txt: 5585) -/(.*/)?update_layer/layer_os_new\.php -# /update_ads/* (easylist.txt: 5584) -/(.*/)?update_ads/.* -# /up/ads/* (easylist.txt: 5583) -/(.*/)?up/ads/.* -# /unity/ad/* (easylist.txt: 5582) -/(.*/)?unity/ad/.* -# /unibluead. (easylist.txt: 5581) -/(.*/)?unibluead\. -unibluead.*. -# /ukc-ad. (easylist.txt: 5580) -/(.*/)?ukc-ad\. -ukc-ad.*. -# /uk/ads/* (easylist.txt: 5579) -/(.*/)?uk/ads/.* -# /uk.ads. (easylist.txt: 5578) -/(.*/)?uk\.ads\. -uk.ads.*. -# /ui/adv_ (easylist.txt: 5577) -/(.*/)?ui/adv_ -# /ui/adv. (easylist.txt: 5576) -/(.*/)?ui/adv\. -# /ui/ads/* (easylist.txt: 5575) -/(.*/)?ui/ads/.* -# /ugoads_inner. (easylist.txt: 5574) -/(.*/)?ugoads_inner\. -# /ugoads. (easylist.txt: 5573) -/(.*/)?ugoads\. -ugoads.*. -# /ucstat. (easylist.txt: 5572) -/(.*/)?ucstat\. -ucstat.*. -# /uberlayadrenderer. (easylist.txt: 5571) -/(.*/)?uberlayadrenderer\. -uberlayadrenderer.*. -# /u?pub= (easylist.txt: 5570) -/(.*/)?u\?pub= -# /u/ads/* (easylist.txt: 5569) -/(.*/)?u/ads/.* -# /u-ads. (easylist.txt: 5568) -/(.*/)?u-ads\. -u-ads.*. -# /txtads/* (easylist.txt: 5567) -/(.*/)?txtads/.* -# /txtad. (easylist.txt: 5566) -/(.*/)?txtad\. -txtad.*. -# /txt_adv. (easylist.txt: 5565) -/(.*/)?txt_adv\. -# /txt_ad_ (easylist.txt: 5564) -/(.*/)?txt_ad_ -# /txt_ad. (easylist.txt: 5563) -/(.*/)?txt_ad\. -# /TwtAd_ (easylist.txt: 5562) -/(.*/)?TwtAd_ -# /twgetad3. (easylist.txt: 5561) -/(.*/)?twgetad3\. -twgetad3.*. -# /TWBadbanner. (easylist.txt: 5560) -/(.*/)?TWBadbanner\. -TWBadbanner.*. -# /tvgdartads. (easylist.txt: 5559) -/(.*/)?tvgdartads\. -tvgdartads.*. -# /turbo_ad. (easylist.txt: 5558) -/(.*/)?turbo_ad\. -# /ttz_ad. (easylist.txt: 5557) -/(.*/)?ttz_ad\. -# /tsc.php?*&ses= (easylist.txt: 5556) -/(.*/)?tsc\.php\?.*&ses= -# /tripplead/* (easylist.txt: 5555) -/(.*/)?tripplead/.* -# /tribalad. (easylist.txt: 5554) -/(.*/)?tribalad\. -tribalad.*. -# /triadshow. (easylist.txt: 5553) -/(.*/)?triadshow\. -triadshow.*. -# /tremoradrenderer. (easylist.txt: 5552) -/(.*/)?tremoradrenderer\. -tremoradrenderer.*. -# /travidia/* (easylist.txt: 5551) -/(.*/)?travidia/.* -# /transad. (easylist.txt: 5550) -/(.*/)?transad\. -transad.*. -# /trafficsynergysupportresponse_ (easylist.txt: 5549) -/(.*/)?trafficsynergysupportresponse_ -# /trafficengineads. (easylist.txt: 5548) -/(.*/)?trafficengineads\. -trafficengineads.*. -# /trafficads. (easylist.txt: 5547) -/(.*/)?trafficads\. -trafficads.*. -# /trafficadpdf02. (easylist.txt: 5546) -/(.*/)?trafficadpdf02\. -trafficadpdf02.*. -# /tradedoubler. (easylist.txt: 5545) -/(.*/)?tradedoubler\. -tradedoubler.*. -# /TradeAds/* (easylist.txt: 5544) -/(.*/)?TradeAds/.* -# /tradead_ (easylist.txt: 5543) -/(.*/)?tradead_ -# /trade_punder. (easylist.txt: 5542) -/(.*/)?trade_punder\. -# /tracking/events/* (easylist.txt: 5541) -/(.*/)?tracking/events/.* -# /tracked_ad. (easylist.txt: 5540) -/(.*/)?tracked_ad\. -# /trackads/* (easylist.txt: 5539) -/(.*/)?trackads/.* -# /track_ad_ (easylist.txt: 5538) -/(.*/)?track_ad_ -# /track.php?uid=*.*&d= (easylist.txt: 5537) -/(.*/)?track\.php\?uid=.*\..*&d= -# /tr2/ads/* (easylist.txt: 5535) -/(.*/)?tr2/ads/.* -# /towerbannerad/* (easylist.txt: 5534) -/(.*/)?towerbannerad/.* -# /tower_ad_ (easylist.txt: 5533) -/(.*/)?tower_ad_ -# /totemcash1. (easylist.txt: 5532) -/(.*/)?totemcash1\. -totemcash1.*. -# /Totem-Cash/* (easylist.txt: 5530) -/(.*/)?Totem-Cash/.* -# /totalmedia/* (easylist.txt: 5529) -/(.*/)?totalmedia/.* -# /torget_ads. (easylist.txt: 5528) -/(.*/)?torget_ads\. -# /tops.ads. (easylist.txt: 5527) -/(.*/)?tops\.ads\. -tops.ads.*. -# /toprightads. (easylist.txt: 5526) -/(.*/)?toprightads\. -toprightads.*. -# /topperad. (easylist.txt: 5525) -/(.*/)?topperad\. -topperad.*. -# /topleftads. (easylist.txt: 5524) -/(.*/)?topleftads\. -topleftads.*. -# /topadvert. (easylist.txt: 5523) -/(.*/)?topadvert\. -topadvert.*. -# /topadv. (easylist.txt: 5522) -/(.*/)?topadv\. -topadv.*. -# /topads| (easylist.txt: 5521) -/(.*/)?topads$ -# /topads_ (easylist.txt: 5520) -/(.*/)?topads_ -# /topads3. (easylist.txt: 5519) -/(.*/)?topads3\. -topads3.*. -# /topads2. (easylist.txt: 5518) -/(.*/)?topads2\. -topads2.*. -# /topads1. (easylist.txt: 5517) -/(.*/)?topads1\. -topads1.*. -# /topads/* (easylist.txt: 5516) -/(.*/)?topads/.* -# /topads. (easylist.txt: 5515) -/(.*/)?topads\. -topads.*. -# /topadheader. (easylist.txt: 5514) -/(.*/)?topadheader\. -topadheader.*. -# /topadfooter. (easylist.txt: 5513) -/(.*/)?topadfooter\. -topadfooter.*. -# /topadbg. (easylist.txt: 5512) -/(.*/)?topadbg\. -topadbg.*. -# /topad_ (easylist.txt: 5511) -/(.*/)?topad_ -# /topad3. (easylist.txt: 5510) -/(.*/)?topad3\. -topad3.*. -# /topad/* (easylist.txt: 5509) -/(.*/)?topad/.* -# /topad. (easylist.txt: 5508) -/(.*/)?topad\. -topad.*. -# /top_adv_ (easylist.txt: 5507) -/(.*/)?top_adv_ -# /top_ads_ (easylist.txt: 5506) -/(.*/)?top_ads_ -# /top_ads/* (easylist.txt: 5505) -/(.*/)?top_ads/.* -# /top_ads. (easylist.txt: 5504) -/(.*/)?top_ads\. -# /top_ad_ (easylist.txt: 5503) -/(.*/)?top_ad_ -# /top_ad/* (easylist.txt: 5502) -/(.*/)?top_ad/.* -# /top_ad. (easylist.txt: 5501) -/(.*/)?top_ad\. -# /top-ads. (easylist.txt: 5500) -/(.*/)?top-ads\. -top-ads.*. -# /top-ad_ (easylist.txt: 5499) -/(.*/)?top-ad_ -# /top-ad. (easylist.txt: 5498) -/(.*/)?top-ad\. -top-ad.*. -# /top-ad- (easylist.txt: 5497) -/(.*/)?top-ad- -top-ad-*. -# /toonad. (easylist.txt: 5496) -/(.*/)?toonad\. -toonad.*. -# /tools/ad. (easylist.txt: 5495) -/(.*/)?tools/ad\. -# /toolkitads. (easylist.txt: 5494) -/(.*/)?toolkitads\. -toolkitads.*. -# /toigoogleads. (easylist.txt: 5493) -/(.*/)?toigoogleads\. -toigoogleads.*. -# /toggleAds. (easylist.txt: 5492) -/(.*/)?toggleAds\. -toggleAds.*. -# /tncms/ads/* (easylist.txt: 5491) -/(.*/)?tncms/ads/.* -# /tmobilead. (easylist.txt: 5490) -/(.*/)?tmobilead\. -tmobilead.*. -# /tmo/ads/* (easylist.txt: 5489) -/(.*/)?tmo/ads/.* -# /tmnadsense. (easylist.txt: 5488) -/(.*/)?tmnadsense\. -tmnadsense.*. -# /tmnadsense- (easylist.txt: 5487) -/(.*/)?tmnadsense- -tmnadsense-*. -# /tl.ads- (easylist.txt: 5486) -/(.*/)?tl\.ads- -tl.ads-*. -# /tizers.php? (easylist.txt: 5485) -/(.*/)?tizers\.php\? -# /title_ad. (easylist.txt: 5484) -/(.*/)?title_ad\. -# /title-ad/* (easylist.txt: 5483) -/(.*/)?title-ad/.* -# /tit-ads. (easylist.txt: 5482) -/(.*/)?tit-ads\. -tit-ads.*. -# /tinyad. (easylist.txt: 5481) -/(.*/)?tinyad\. -tinyad.*. -# /tinlads. (easylist.txt: 5480) -/(.*/)?tinlads\. -tinlads.*. -# /tileads/* (easylist.txt: 5479) -/(.*/)?tileads/.* -# /TILE_ADS/* (easylist.txt: 5478) -/(.*/)?TILE_ADS/.* -# /tikilink? (easylist.txt: 5477) -/(.*/)?tikilink\? -# /tii_ads. (easylist.txt: 5476) -/(.*/)?tii_ads\. -# /tidaladplugin. (easylist.txt: 5475) -/(.*/)?tidaladplugin\. -tidaladplugin.*. -# /tickeradsget. (easylist.txt: 5474) -/(.*/)?tickeradsget\. -tickeradsget.*. -# /thunder/ad. (easylist.txt: 5473) -/(.*/)?thunder/ad\. -# /thumbs/ads/* (easylist.txt: 5472) -/(.*/)?thumbs/ads/.* -# /thirdpartyframedad/* (easylist.txt: 5471) -/(.*/)?thirdpartyframedad/.* -# /thirdpartyads/* (easylist.txt: 5470) -/(.*/)?thirdpartyads/.* -# /thirdparty/ad/* (easylist.txt: 5469) -/(.*/)?thirdparty/ad/.* -# /thebannerserver.net/* (easylist.txt: 5468) -/(.*/)?thebannerserver\.net/.* -thebannerserver.net/.* -# /thdgoogleadsense. (easylist.txt: 5467) -/(.*/)?thdgoogleadsense\. -thdgoogleadsense.*. -# /tg.php?uid= (easylist.txt: 5466) -/(.*/)?tg\.php\?uid= -# /tfs-ad. (easylist.txt: 5465) -/(.*/)?tfs-ad\. -tfs-ad.*. -# /textadspromo_ (easylist.txt: 5464) -/(.*/)?textadspromo_ -# /textads_ (easylist.txt: 5463) -/(.*/)?textads_ -# /textads/* (easylist.txt: 5462) -/(.*/)?textads/.* -# /textads. (easylist.txt: 5461) -/(.*/)?textads\. -textads.*. -# /textads- (easylist.txt: 5460) -/(.*/)?textads- -textads-*. -# /textadrotate. (easylist.txt: 5459) -/(.*/)?textadrotate\. -textadrotate.*. -# /textad_ (easylist.txt: 5458) -/(.*/)?textad_ -# /textad? (easylist.txt: 5457) -/(.*/)?textad\? -# /textad1. (easylist.txt: 5456) -/(.*/)?textad1\. -textad1.*. -# /textad/* (easylist.txt: 5455) -/(.*/)?textad/.* -# /textad. (easylist.txt: 5454) -/(.*/)?textad\. -textad.*. -# /text_ads_ (easylist.txt: 5453) -/(.*/)?text_ads_ -# /text_ads. (easylist.txt: 5452) -/(.*/)?text_ads\. -# /text_ad_ (easylist.txt: 5451) -/(.*/)?text_ad_ -# /text_ad. (easylist.txt: 5450) -/(.*/)?text_ad\. -# /testingad. (easylist.txt: 5449) -/(.*/)?testingad\. -testingad.*. -# /testads/* (easylist.txt: 5448) -/(.*/)?testads/.* -# /templates/adv_ (easylist.txt: 5447) -/(.*/)?templates/adv_ -# /templates/ads/* (easylist.txt: 5446) -/(.*/)?templates/ads/.* -# /templates/ad/* (easylist.txt: 5445) -/(.*/)?templates/ad/.* -# /templates/ad. (easylist.txt: 5444) -/(.*/)?templates/ad\. -# /templateadvimages/* (easylist.txt: 5443) -/(.*/)?templateadvimages/.* -# /template/ad. (easylist.txt: 5442) -/(.*/)?template/ad\. -# /tempads/* (easylist.txt: 5441) -/(.*/)?tempads/.* -# /teletoon_ad. (easylist.txt: 5440) -/(.*/)?teletoon_ad\. -# /technomedia. (easylist.txt: 5439) -/(.*/)?technomedia\. -technomedia.*. -# /teaseimg/ads/* (easylist.txt: 5438) -/(.*/)?teaseimg/ads/.* -# /teamplayer-ads. (easylist.txt: 5437) -/(.*/)?teamplayer-ads\. -teamplayer-ads.*. -# /tdlads/* (easylist.txt: 5436) -/(.*/)?tdlads/.* -# /td_ads/* (easylist.txt: 5435) -/(.*/)?td_ads/.* -# /td-ads- (easylist.txt: 5434) -/(.*/)?td-ads- -td-ads-*. -# /taxonomy-ads. (easylist.txt: 5433) -/(.*/)?taxonomy-ads\. -taxonomy-ads.*. -# /talkads/* (easylist.txt: 5432) -/(.*/)?talkads/.* -# /tagadv_ (easylist.txt: 5431) -/(.*/)?tagadv_ -# /tag_sys. (easylist.txt: 5430) -/(.*/)?tag_sys\. -# /tag_oas. (easylist.txt: 5429) -/(.*/)?tag_oas\. -# /tag_adv/* (easylist.txt: 5428) -/(.*/)?tag_adv/.* -# /tag-adv. (easylist.txt: 5427) -/(.*/)?tag-adv\. -tag-adv.*. -# /tableadnorth. (easylist.txt: 5426) -/(.*/)?tableadnorth\. -tableadnorth.*. -# /tabads/* (easylist.txt: 5425) -/(.*/)?tabads/.* -# /t.php?uid=*.*&src= (easylist.txt: 5424) -/(.*/)?t\.php\?uid=.*\..*&src= -# /t-ads. (easylist.txt: 5423) -/(.*/)?t-ads\. -t-ads.*. -# /systemad_ (easylist.txt: 5422) -/(.*/)?systemad_ -# /systemad. (easylist.txt: 5421) -/(.*/)?systemad\. -systemad.*. -# /system_ad. (easylist.txt: 5420) -/(.*/)?system_ad\. -# /system/ads/* (easylist.txt: 5419) -/(.*/)?system/ads/.* -# /system/ad/* (easylist.txt: 5418) -/(.*/)?system/ad/.* -# /sys/ad/* (easylist.txt: 5417) -/(.*/)?sys/ad/.* -# /syndication/ad. (easylist.txt: 5416) -/(.*/)?syndication/ad\. -# /synad3. (easylist.txt: 5415) -/(.*/)?synad3\. -synad3.*. -# /synad2. (easylist.txt: 5414) -/(.*/)?synad2\. -synad2.*. -# /SWMAdPlayer. (easylist.txt: 5413) -/(.*/)?SWMAdPlayer\. -SWMAdPlayer.*. -# /switchadbanner. (easylist.txt: 5412) -/(.*/)?switchadbanner\. -switchadbanner.*. -# /swfbin/ad3_ (easylist.txt: 5411) -/(.*/)?swfbin/ad3_ -# /swfbin/ad3- (easylist.txt: 5410) -/(.*/)?swfbin/ad3- -# /swfbin/ad- (easylist.txt: 5409) -/(.*/)?swfbin/ad- -# /swf/ads/* (easylist.txt: 5408) -/(.*/)?swf/ads/.* -# /swf/ad- (easylist.txt: 5407) -/(.*/)?swf/ad- -# /svnad/* (easylist.txt: 5406) -/(.*/)?svnad/.* -# /supernorthroomad. (easylist.txt: 5405) -/(.*/)?supernorthroomad\. -supernorthroomad.*. -# /superads_ (easylist.txt: 5404) -/(.*/)?superads_ -# /sugarads- (easylist.txt: 5403) -/(.*/)?sugarads- -sugarads-*. -# /sugar-ads/* (easylist.txt: 5402) -/(.*/)?sugar-ads/.* -# /sugar-ads. (easylist.txt: 5401) -/(.*/)?sugar-ads\. -sugar-ads.*. -# /subs-ads/* (easylist.txt: 5400) -/(.*/)?subs-ads/.* -# /subnavads/* (easylist.txt: 5399) -/(.*/)?subnavads/.* -# /subadz. (easylist.txt: 5398) -/(.*/)?subadz\. -subadz.*. -# /subad2_ (easylist.txt: 5397) -/(.*/)?subad2_ -# /subAd. (easylist.txt: 5396) -/(.*/)?subAd\. -subAd.*. -# /styles/ads/* (easylist.txt: 5395) -/(.*/)?styles/ads/.* -# /styles/ads. (easylist.txt: 5394) -/(.*/)?styles/ads\. -# /style_ad. (easylist.txt: 5393) -/(.*/)?style_ad\. -# /stuff/ad- (easylist.txt: 5392) -/(.*/)?stuff/ad- -# /studioads/* (easylist.txt: 5391) -/(.*/)?studioads/.* -# /streamatepop. (easylist.txt: 5390) -/(.*/)?streamatepop\. -streamatepop.*. -# /streamads. (easylist.txt: 5389) -/(.*/)?streamads\. -streamads.*. -# /stream-ad. (easylist.txt: 5388) -/(.*/)?stream-ad\. -stream-ad.*. -# /storyads. (easylist.txt: 5387) -/(.*/)?storyads\. -storyads.*. -# /storyadcode. (easylist.txt: 5386) -/(.*/)?storyadcode\. -storyadcode.*. -# /story_ads_ (easylist.txt: 5385) -/(.*/)?story_ads_ -# /story_ad. (easylist.txt: 5384) -/(.*/)?story_ad\. -# /stories/ads/* (easylist.txt: 5383) -/(.*/)?stories/ads/.* -# /storage/adv/* (easylist.txt: 5382) -/(.*/)?storage/adv/.* -# /storage/ads/* (easylist.txt: 5381) -/(.*/)?storage/ads/.* -# /stickyad2. (easylist.txt: 5380) -/(.*/)?stickyad2\. -stickyad2.*. -# /stickyad. (easylist.txt: 5379) -/(.*/)?stickyad\. -stickyad.*. -# /sticky_ad. (easylist.txt: 5378) -/(.*/)?sticky_ad\. -# /sticker_ad. (easylist.txt: 5377) -/(.*/)?sticker_ad\. -# /stats/?t_sid= (easylist.txt: 5376) -/(.*/)?stats/\?t_sid= -# /staticadslot. (easylist.txt: 5375) -/(.*/)?staticadslot\. -staticadslot.*. -# /static_ads/* (easylist.txt: 5374) -/(.*/)?static_ads/.* -# /static/adv/* (easylist.txt: 5372) -/(.*/)?static/adv/.* -# /static/ads/* (easylist.txt: 5371) -/(.*/)?static/ads/.* -# /static/ad_ (easylist.txt: 5370) -/(.*/)?static/ad_ -# /static/ad/* (easylist.txt: 5369) -/(.*/)?static/ad/.* -# /static/ad- (easylist.txt: 5368) -/(.*/)?static/ad- -# /static.ad. (easylist.txt: 5367) -/(.*/)?static\.ad\. -static.ad.*. -# /standard_ads. (easylist.txt: 5366) -/(.*/)?standard_ads\. -# /ssc_ad. (easylist.txt: 5365) -/(.*/)?ssc_ad\. -# /ss3/ads/* (easylist.txt: 5364) -/(.*/)?ss3/ads/.* -# /srv/ad/* (easylist.txt: 5363) -/(.*/)?srv/ad/.* -# /srec_ad_ (easylist.txt: 5362) -/(.*/)?srec_ad_ -# /src/ads_ (easylist.txt: 5361) -/(.*/)?src/ads_ -# /squareads. (easylist.txt: 5360) -/(.*/)?squareads\. -squareads.*. -# /squaread. (easylist.txt: 5359) -/(.*/)?squaread\. -squaread.*. -# /square-ads/* (easylist.txt: 5358) -/(.*/)?square-ads/.* -# /square-ad. (easylist.txt: 5357) -/(.*/)?square-ad\. -square-ad.*. -# /spotxchangevpaid. (easylist.txt: 5356) -/(.*/)?spotxchangevpaid\. -spotxchangevpaid.*. -# /spotxchangeplugin. (easylist.txt: 5355) -/(.*/)?spotxchangeplugin\. -spotxchangeplugin.*. -# /spotx_adapter. (easylist.txt: 5354) -/(.*/)?spotx_adapter\. -# /spotlightads/* (easylist.txt: 5353) -/(.*/)?spotlightads/.* -# /sponsorstrips/* (easylist.txt: 5352) -/(.*/)?sponsorstrips/.* -# /sponsorshipimage- (easylist.txt: 5351) -/(.*/)?sponsorshipimage- -sponsorshipimage-*. -# /sponsorsgif. (easylist.txt: 5350) -/(.*/)?sponsorsgif\. -sponsorsgif.*. -# /sponsors_box. (easylist.txt: 5349) -/(.*/)?sponsors_box\. -# /sponsors/amg.php? (easylist.txt: 5348) -/(.*/)?sponsors/amg\.php\? -# /sponsors/ads/* (easylist.txt: 5347) -/(.*/)?sponsors/ads/.* -# /sponsors.js? (easylist.txt: 5346) -/(.*/)?sponsors\.js\? -# /sponsors-ads/* (easylist.txt: 5345) -/(.*/)?sponsors-ads/.* -# /sponsorpaynetwork. (easylist.txt: 5344) -/(.*/)?sponsorpaynetwork\. -sponsorpaynetwork.*. -# /sponsoringbanner/* (easylist.txt: 5343) -/(.*/)?sponsoringbanner/.* -# /sponsorHeaderDeriv_ (easylist.txt: 5342) -/(.*/)?sponsorHeaderDeriv_ -# /sponsoredlisting. (easylist.txt: 5341) -/(.*/)?sponsoredlisting\. -sponsoredlisting.*. -# /sponsoredlinksiframe. (easylist.txt: 5340) -/(.*/)?sponsoredlinksiframe\. -sponsoredlinksiframe.*. -# /sponsoredlinks? (easylist.txt: 5339) -/(.*/)?sponsoredlinks\? -# /sponsoredlinks/* (easylist.txt: 5338) -/(.*/)?sponsoredlinks/.* -# /sponsoredlinks. (easylist.txt: 5337) -/(.*/)?sponsoredlinks\. -sponsoredlinks.*. -# /sponsoredheadline. (easylist.txt: 5336) -/(.*/)?sponsoredheadline\. -sponsoredheadline.*. -# /sponsoredcontent. (easylist.txt: 5335) -/(.*/)?sponsoredcontent\. -sponsoredcontent.*. -# /sponsoredbanner/* (easylist.txt: 5334) -/(.*/)?sponsoredbanner/.* -# /sponsoredads/* (easylist.txt: 5333) -/(.*/)?sponsoredads/.* -# /sponsored_top. (easylist.txt: 5332) -/(.*/)?sponsored_top\. -# /sponsored_title. (easylist.txt: 5331) -/(.*/)?sponsored_title\. -# /sponsored_text. (easylist.txt: 5330) -/(.*/)?sponsored_text\. -# /sponsored_listings. (easylist.txt: 5329) -/(.*/)?sponsored_listings\. -# /sponsored_links_ (easylist.txt: 5328) -/(.*/)?sponsored_links_ -# /sponsored_links1. (easylist.txt: 5327) -/(.*/)?sponsored_links1\. -# /sponsored_links. (easylist.txt: 5326) -/(.*/)?sponsored_links\. -# /sponsored_link. (easylist.txt: 5325) -/(.*/)?sponsored_link\. -# /sponsored_by. (easylist.txt: 5324) -/(.*/)?sponsored_by\. -# /sponsored_ads/* (easylist.txt: 5323) -/(.*/)?sponsored_ads/.* -# /sponsored_ad_ (easylist.txt: 5322) -/(.*/)?sponsored_ad_ -# /sponsored_ad. (easylist.txt: 5321) -/(.*/)?sponsored_ad\. -# /sponsored-links/* (easylist.txt: 5320) -/(.*/)?sponsored-links/.* -# /sponsored-links- (easylist.txt: 5319) -/(.*/)?sponsored-links- -sponsored-links-*. -# /sponsored-banner- (easylist.txt: 5318) -/(.*/)?sponsored-banner- -sponsored-banner-*. -# /sponsored-backgrounds/* (easylist.txt: 5317) -/(.*/)?sponsored-backgrounds/.* -# /sponsorbg/* (easylist.txt: 5316) -/(.*/)?sponsorbg/.* -# /sponsorbanners/* (easylist.txt: 5315) -/(.*/)?sponsorbanners/.* -# /sponsorads/* (easylist.txt: 5314) -/(.*/)?sponsorads/.* -# /sponsorads. (easylist.txt: 5313) -/(.*/)?sponsorads\. -sponsorads.*. -# /sponsoradds/* (easylist.txt: 5312) -/(.*/)?sponsoradds/.* -# /sponsorad2. (easylist.txt: 5311) -/(.*/)?sponsorad2\. -sponsorad2.*. -# /sponsorad. (easylist.txt: 5310) -/(.*/)?sponsorad\. -sponsorad.*. -# /sponsor_select. (easylist.txt: 5309) -/(.*/)?sponsor_select\. -# /sponsor_ads. (easylist.txt: 5308) -/(.*/)?sponsor_ads\. -# /sponsor/click. (easylist.txt: 5307) -/(.*/)?sponsor/click\. -# /sponsor-links. (easylist.txt: 5306) -/(.*/)?sponsor-links\. -sponsor-links.*. -# /sponsor-box? (easylist.txt: 5305) -/(.*/)?sponsor-box\? -# /sponsor-banner. (easylist.txt: 5304) -/(.*/)?sponsor-banner\. -sponsor-banner.*. -# /sponsor-ad (easylist.txt: 5303) -/(.*/)?sponsor-ad -sponsor-ad*. -# /sponsor%20banners/* (easylist.txt: 5302) -/(.*/)?sponsor%20banners/.* -# /sponslink_ (easylist.txt: 5301) -/(.*/)?sponslink_ -# /sponsimages/* (easylist.txt: 5300) -/(.*/)?sponsimages/.* -# /sponsers.cgi (easylist.txt: 5299) -/(.*/)?sponsers\.cgi -sponsers.cgi*. -# /sponseredlinksros. (easylist.txt: 5298) -/(.*/)?sponseredlinksros\. -sponseredlinksros.*. -# /sponser. (easylist.txt: 5297) -/(.*/)?sponser\. -sponser.*. -# /spons_links_ (easylist.txt: 5296) -/(.*/)?spons_links_ -# /spons/banners/* (easylist.txt: 5295) -/(.*/)?spons/banners/.* -# /sponlink. (easylist.txt: 5294) -/(.*/)?sponlink\. -sponlink.*. -# /spo_show.asp? (easylist.txt: 5293) -/(.*/)?spo_show\.asp\? -# /SplashAd_ (easylist.txt: 5292) -/(.*/)?SplashAd_ -# /splash_ads_ (easylist.txt: 5291) -/(.*/)?splash_ads_ -# /spiderad/* (easylist.txt: 5290) -/(.*/)?spiderad/.* -# /specialfeatureads/* (easylist.txt: 5289) -/(.*/)?specialfeatureads/.* -# /specialads/* (easylist.txt: 5288) -/(.*/)?specialads/.* -# /special_ads/* (easylist.txt: 5287) -/(.*/)?special_ads/.* -# /special_ad. (easylist.txt: 5286) -/(.*/)?special_ad\. -# /special-ads/* (easylist.txt: 5285) -/(.*/)?special-ads/.* -# /spcjs_min. (easylist.txt: 5284) -/(.*/)?spcjs_min\. -# /spcjs.php (easylist.txt: 5283) -/(.*/)?spcjs\.php -spcjs.php*. -# /spc.php (easylist.txt: 5282) -/(.*/)?spc\.php -spc.php*. -# /spark_ad. (easylist.txt: 5281) -/(.*/)?spark_ad\. -# /spacedesc= (easylist.txt: 5280) -/(.*/)?spacedesc= -# /space_ad. (easylist.txt: 5279) -/(.*/)?space_ad\. -# /spac_adx. (easylist.txt: 5278) -/(.*/)?spac_adx\. -# /sp/delivery/* (easylist.txt: 5277) -/(.*/)?sp/delivery/.* -# /someads. (easylist.txt: 5276) -/(.*/)?someads\. -someads.*. -# /some-ad. (easylist.txt: 5275) -/(.*/)?some-ad\. -some-ad.*. -# /somaadscaleskyscraperscript. (easylist.txt: 5274) -/(.*/)?somaadscaleskyscraperscript\. -somaadscaleskyscraperscript.*. -# /socialads/* (easylist.txt: 5273) -/(.*/)?socialads/.* -# /socialads. (easylist.txt: 5272) -/(.*/)?socialads\. -socialads.*. -# /SmpAds. (easylist.txt: 5271) -/(.*/)?SmpAds\. -SmpAds.*. -# /smoozed-ad/* (easylist.txt: 5270) -/(.*/)?smoozed-ad/.* -# /smedia/ad/* (easylist.txt: 5269) -/(.*/)?smedia/ad/.* -# /smeadvertisement/* (easylist.txt: 5268) -/(.*/)?smeadvertisement/.* -# /smb/ads/* (easylist.txt: 5267) -/(.*/)?smb/ads/.* -# /smartlinks.epl? (easylist.txt: 5266) -/(.*/)?smartlinks\.epl\? -# /smartadserver. (easylist.txt: 5265) -/(.*/)?smartadserver\. -smartadserver.*. -# /smartads. (easylist.txt: 5264) -/(.*/)?smartads\. -smartads.*. -# /smartAd? (easylist.txt: 5263) -/(.*/)?smartAd\? -# /smartad. (easylist.txt: 5262) -/(.*/)?smartad\. -smartad.*. -# /smartad- (easylist.txt: 5261) -/(.*/)?smartad- -smartad-*. -# /smart_ad/* (easylist.txt: 5260) -/(.*/)?smart_ad/.* -# /smart-ad-server. (easylist.txt: 5259) -/(.*/)?smart-ad-server\. -smart-ad-server.*. -# /smalltopl. (easylist.txt: 5258) -/(.*/)?smalltopl\. -smalltopl.*. -# /smalladblockbg- (easylist.txt: 5257) -/(.*/)?smalladblockbg- -smalladblockbg-*. -# /smallad- (easylist.txt: 5256) -/(.*/)?smallad- -smallad-*. -# /small_ads/* (easylist.txt: 5255) -/(.*/)?small_ads/.* -# /small_ad_ (easylist.txt: 5254) -/(.*/)?small_ad_ -# /small_ad. (easylist.txt: 5253) -/(.*/)?small_ad\. -# /smalAds. (easylist.txt: 5252) -/(.*/)?smalAds\. -smalAds.*. -# /slidetopad. (easylist.txt: 5251) -/(.*/)?slidetopad\. -slidetopad.*. -# /slideshowintad? (easylist.txt: 5250) -/(.*/)?slideshowintad\? -# /slideshow/ads. (easylist.txt: 5249) -/(.*/)?slideshow/ads\. -# /SliderJobAdList. (easylist.txt: 5248) -/(.*/)?SliderJobAdList\. -SliderJobAdList.*. -# /sliderad3. (easylist.txt: 5247) -/(.*/)?sliderad3\. -sliderad3.*. -# /sliderAd/* (easylist.txt: 5246) -/(.*/)?sliderAd/.* -# /slider_ad. (easylist.txt: 5245) -/(.*/)?slider_ad\. -# /slider.ad. (easylist.txt: 5244) -/(.*/)?slider\.ad\. -slider.ad.*. -# /slider-ad- (easylist.txt: 5243) -/(.*/)?slider-ad- -slider-ad-*. -# /slideinad. (easylist.txt: 5242) -/(.*/)?slideinad\. -slideinad.*. -# /slideadverts/* (easylist.txt: 5241) -/(.*/)?slideadverts/.* -# /slafc.js (easylist.txt: 5240) -/(.*/)?slafc\.js -slafc.js*. -# /skyscraperad. (easylist.txt: 5239) -/(.*/)?skyscraperad\. -skyscraperad.*. -# /skyscraper_ad_ (easylist.txt: 5238) -/(.*/)?skyscraper_ad_ -# /skyscraper-ad. (easylist.txt: 5237) -/(.*/)?skyscraper-ad\. -skyscraper-ad.*. -# /skyframeopenads_ (easylist.txt: 5236) -/(.*/)?skyframeopenads_ -# /skyframeopenads. (easylist.txt: 5235) -/(.*/)?skyframeopenads\. -skyframeopenads.*. -# /skybar_ad. (easylist.txt: 5234) -/(.*/)?skybar_ad\. -# /skybannerview. (easylist.txt: 5233) -/(.*/)?skybannerview\. -skybannerview.*. -# /skyadright. (easylist.txt: 5232) -/(.*/)?skyadright\. -skyadright.*. -# /skyadjs/* (easylist.txt: 5231) -/(.*/)?skyadjs/.* -# /skyad_ (easylist.txt: 5230) -/(.*/)?skyad_ -# /skyad. (easylist.txt: 5229) -/(.*/)?skyad\. -skyad.*. -# /skins/ads/* (easylist.txt: 5228) -/(.*/)?skins/ads/.* -# /skins/ads- (easylist.txt: 5227) -/(.*/)?skins/ads- -# /skinads/* (easylist.txt: 5226) -/(.*/)?skinads/.* -# /skinad. (easylist.txt: 5225) -/(.*/)?skinad\. -skinad.*. -# /skin3/ads/* (easylist.txt: 5224) -/(.*/)?skin3/ads/.* -# /skin/adv/* (easylist.txt: 5223) -/(.*/)?skin/adv/.* -# /skin/ad3/* (easylist.txt: 5222) -/(.*/)?skin/ad3/.* -# /skin/ad/* (easylist.txt: 5221) -/(.*/)?skin/ad/.* -# /size=*/random=*/viewid= (easylist.txt: 5220) -/(.*/)?size=.*/random=.*/viewid= -# /sitewide/ads/* (easylist.txt: 5219) -/(.*/)?sitewide/ads/.* -# /sites/ad_ (easylist.txt: 5218) -/(.*/)?sites/ad_ -# /sitemanagement/ads/* (easylist.txt: 5217) -/(.*/)?sitemanagement/ads/.* -# /siteimages/ads- (easylist.txt: 5216) -/(.*/)?siteimages/ads- -# /siteafs.txt? (easylist.txt: 5215) -/(.*/)?siteafs\.txt\? -# /siteadvert. (easylist.txt: 5214) -/(.*/)?siteadvert\. -siteadvert.*. -# /siteads/* (easylist.txt: 5213) -/(.*/)?siteads/.* -# /siteads. (easylist.txt: 5212) -/(.*/)?siteads\. -siteads.*. -# /site_under. (easylist.txt: 5211) -/(.*/)?site_under\. -# /site_ads/* (easylist.txt: 5210) -/(.*/)?site_ads/.* -# /site_ads. (easylist.txt: 5209) -/(.*/)?site_ads\. -# /site=*/viewid=*/size= (easylist.txt: 5208) -/(.*/)?site=.*/viewid=.*/size= -# /site=*/size=*/viewid= (easylist.txt: 5207) -/(.*/)?site=.*/size=.*/viewid= -# /site/ads? (easylist.txt: 5206) -/(.*/)?site/ads\? -# /site/ads/* (easylist.txt: 5205) -/(.*/)?site/ads/.* -# /site/ad/* (easylist.txt: 5204) -/(.*/)?site/ad/.* -# /site-advert. (easylist.txt: 5203) -/(.*/)?site-advert\. -site-advert.*. -# /site-ads/* (easylist.txt: 5202) -/(.*/)?site-ads/.* -# /sisterads. (easylist.txt: 5201) -/(.*/)?sisterads\. -sisterads.*. -# /singleadextension. (easylist.txt: 5200) -/(.*/)?singleadextension\. -singleadextension.*. -# /simpleadvert/* (easylist.txt: 5199) -/(.*/)?simpleadvert/.* -# /simpleadvert. (easylist.txt: 5198) -/(.*/)?simpleadvert\. -simpleadvert.*. -# /simpleads/* (easylist.txt: 5197) -/(.*/)?simpleads/.* -# /silverads. (easylist.txt: 5196) -/(.*/)?silverads\. -silverads.*. -# /silver/ads/* (easylist.txt: 5195) -/(.*/)?silver/ads/.* -# /siframead. (easylist.txt: 5194) -/(.*/)?siframead\. -siframead.*. -# /sidelinead. (easylist.txt: 5193) -/(.*/)?sidelinead\. -sidelinead.*. -# /sidekickads. (easylist.txt: 5192) -/(.*/)?sidekickads\. -sidekickads.*. -# /sidecol_ad. (easylist.txt: 5191) -/(.*/)?sidecol_ad\. -# /sidebaradvertisement. (easylist.txt: 5190) -/(.*/)?sidebaradvertisement\. -sidebaradvertisement.*. -# /sidebarad/* (easylist.txt: 5189) -/(.*/)?sidebarad/.* -# /sidebar_ads/* (easylist.txt: 5188) -/(.*/)?sidebar_ads/.* -# /sidebar_ad_ (easylist.txt: 5187) -/(.*/)?sidebar_ad_ -# /sidebar_ad. (easylist.txt: 5186) -/(.*/)?sidebar_ad\. -# /sidebar-ads/* (easylist.txt: 5185) -/(.*/)?sidebar-ads/.* -# /sidebar-ad- (easylist.txt: 5184) -/(.*/)?sidebar-ad- -sidebar-ad-*. -# /sideadvtmp. (easylist.txt: 5183) -/(.*/)?sideadvtmp\. -sideadvtmp.*. -# /sideads| (easylist.txt: 5182) -/(.*/)?sideads$ -# /sideads/* (easylist.txt: 5181) -/(.*/)?sideads/.* -# /sideadiframe. (easylist.txt: 5180) -/(.*/)?sideadiframe\. -sideadiframe.*. -# /sidead3. (easylist.txt: 5179) -/(.*/)?sidead3\. -sidead3.*. -# /sidead2. (easylist.txt: 5178) -/(.*/)?sidead2\. -sidead2.*. -# /sidead1. (easylist.txt: 5177) -/(.*/)?sidead1\. -sidead1.*. -# /sidead/* (easylist.txt: 5176) -/(.*/)?sidead/.* -# /sidead. (easylist.txt: 5175) -/(.*/)?sidead\. -sidead.*. -# /side_adverts. (easylist.txt: 5174) -/(.*/)?side_adverts\. -# /side-ads- (easylist.txt: 5173) -/(.*/)?side-ads- -side-ads-*. -# /side-ad. (easylist.txt: 5172) -/(.*/)?side-ad\. -side-ad.*. -# /side-ad- (easylist.txt: 5171) -/(.*/)?side-ad- -side-ad-*. -# /showSp.php? (easylist.txt: 5170) -/(.*/)?showSp\.php\? -# /showsidebar-ad- (easylist.txt: 5169) -/(.*/)?showsidebar-ad- -showsidebar-ad-*. -# /showpost-ad- (easylist.txt: 5168) -/(.*/)?showpost-ad- -showpost-ad-*. -# /showmarketingmaterial. (easylist.txt: 5167) -/(.*/)?showmarketingmaterial\. -showmarketingmaterial.*. -# /showJsAd/* (easylist.txt: 5166) -/(.*/)?showJsAd/.* -# /showindex-ad- (easylist.txt: 5165) -/(.*/)?showindex-ad- -showindex-ad-*. -# /showflashad. (easylist.txt: 5164) -/(.*/)?showflashad\. -showflashad.*. -# /showcasead/* (easylist.txt: 5163) -/(.*/)?showcasead/.* -# /showbanner. (easylist.txt: 5162) -/(.*/)?showbanner\. -showbanner.*. -# /showban.asp? (easylist.txt: 5161) -/(.*/)?showban\.asp\? -# /showadvertising. (easylist.txt: 5160) -/(.*/)?showadvertising\. -showadvertising.*. -# /showadvert. (easylist.txt: 5159) -/(.*/)?showadvert\. -showadvert.*. -# /showads_ (easylist.txt: 5158) -/(.*/)?showads_ -# /showads/* (easylist.txt: 5157) -/(.*/)?showads/.* -# /showads. (easylist.txt: 5156) -/(.*/)?showads\. -showads.*. -# /showadjs. (easylist.txt: 5155) -/(.*/)?showadjs\. -showadjs.*. -# /showadcode. (easylist.txt: 5154) -/(.*/)?showadcode\. -showadcode.*. -# /showad_ (easylist.txt: 5153) -/(.*/)?showad_ -# /showAd300. (easylist.txt: 5152) -/(.*/)?showAd300\. -showAd300.*. -# /showAd300- (easylist.txt: 5151) -/(.*/)?showAd300- -showAd300-*. -# /showad/* (easylist.txt: 5150) -/(.*/)?showad/.* -# /showad. (easylist.txt: 5149) -/(.*/)?showad\. -showad.*. -# /show_ads_ (easylist.txt: 5148) -/(.*/)?show_ads_ -# /show_ads.js (easylist.txt: 5147) -/(.*/)?show_ads\.js -# /show_ad_ (easylist.txt: 5146) -/(.*/)?show_ad_ -# /show_ad. (easylist.txt: 5145) -/(.*/)?show_ad\. -# /show.cgi?adp (easylist.txt: 5144) -/(.*/)?show\.cgi\?adp -# /show.ad? (easylist.txt: 5143) -/(.*/)?show\.ad\? -# /show-ads. (easylist.txt: 5142) -/(.*/)?show-ads\. -show-ads.*. -# /show-ad. (easylist.txt: 5141) -/(.*/)?show-ad\. -show-ad.*. -# /shortmediads/* (easylist.txt: 5140) -/(.*/)?shortmediads/.* -# /shared/ads/* (easylist.txt: 5139) -/(.*/)?shared/ads/.* -# /shared/ads. (easylist.txt: 5138) -/(.*/)?shared/ads\. -# /shared/ad_ (easylist.txt: 5137) -/(.*/)?shared/ad_ -# /share/ads/* (easylist.txt: 5136) -/(.*/)?share/ads/.* -# /sevenl_ad. (easylist.txt: 5135) -/(.*/)?sevenl_ad\. -# /sevenads. (easylist.txt: 5134) -/(.*/)?sevenads\. -sevenads.*. -# /settings/ad. (easylist.txt: 5133) -/(.*/)?settings/ad\. -# /servlet/view/* (easylist.txt: 5132) -/(.*/)?servlet/view/.* -# /services/ads/* (easylist.txt: 5131) -/(.*/)?services/ads/.* -# /service/ads/* (easylist.txt: 5130) -/(.*/)?service/ads/.* -# /servewebads/* (easylist.txt: 5129) -/(.*/)?servewebads/.* -# /server/ads/* (easylist.txt: 5128) -/(.*/)?server/ads/.* -# /Server/AD/* (easylist.txt: 5127) -/(.*/)?Server/AD/.* -# /serveads. (easylist.txt: 5126) -/(.*/)?serveads\. -serveads.*. -# /ServeAd? (easylist.txt: 5125) -/(.*/)?ServeAd\? -# /servead/* (easylist.txt: 5124) -/(.*/)?servead/.* -# /servead. (easylist.txt: 5123) -/(.*/)?servead\. -servead.*. -# /serve.ads. (easylist.txt: 5122) -/(.*/)?serve\.ads\. -serve.ads.*. -# /serv.ads. (easylist.txt: 5121) -/(.*/)?serv\.ads\. -serv.ads.*. -# /seo-ads. (easylist.txt: 5120) -/(.*/)?seo-ads\. -seo-ads.*. -# /securepubads. (easylist.txt: 5119) -/(.*/)?securepubads\. -securepubads.*. -# /secondads_ (easylist.txt: 5118) -/(.*/)?secondads_ -# /secondads. (easylist.txt: 5117) -/(.*/)?secondads\. -secondads.*. -# /searchads/* (easylist.txt: 5116) -/(.*/)?searchads/.* -# /searchad_ (easylist.txt: 5115) -/(.*/)?searchad_ -# /searchad. (easylist.txt: 5114) -/(.*/)?searchad\. -searchad.*. -# /search_ads. (easylist.txt: 5113) -/(.*/)?search_ads\. -# /search/ads_ (easylist.txt: 5112) -/(.*/)?search/ads_ -# /search/ads? (easylist.txt: 5111) -/(.*/)?search/ads\? -# /search/ad/* (easylist.txt: 5110) -/(.*/)?search/ad/.* -# /search.php?uid=*.*&src= (easylist.txt: 5109) -/(.*/)?search\.php\?uid=.*\..*&src= -# /search-ads? (easylist.txt: 5108) -/(.*/)?search-ads\? -# /scrpads. (easylist.txt: 5107) -/(.*/)?scrpads\. -scrpads.*. -# /scrollads/* (easylist.txt: 5106) -/(.*/)?scrollads/.* -# /scripts/zanox- (easylist.txt: 5105) -/(.*/)?scripts/zanox- -# /scripts/afc/* (easylist.txt: 5103) -/(.*/)?scripts/afc/.* -# /scripts/adv. (easylist.txt: 5102) -/(.*/)?scripts/adv\. -# /scripts/AdService_ (easylist.txt: 5101) -/(.*/)?scripts/AdService_ -# /scripts/ads/* (easylist.txt: 5100) -/(.*/)?scripts/ads/.* -# /scripts/ads. (easylist.txt: 5099) -/(.*/)?scripts/ads\. -# /scripts/ad_ (easylist.txt: 5098) -/(.*/)?scripts/ad_ -# /scripts/ad/* (easylist.txt: 5097) -/(.*/)?scripts/ad/.* -# /scripts/ad. (easylist.txt: 5096) -/(.*/)?scripts/ad\. -# /scripts/ad- (easylist.txt: 5095) -/(.*/)?scripts/ad- -# /script/oas/* (easylist.txt: 5094) -/(.*/)?script/oas/.* -# /script/ads_ (easylist.txt: 5092) -/(.*/)?script/ads_ -# /script/ads. (easylist.txt: 5091) -/(.*/)?script/ads\. -# /script/ad. (easylist.txt: 5090) -/(.*/)?script/ad\. -# /scaradcontrol. (easylist.txt: 5089) -/(.*/)?scaradcontrol\. -scaradcontrol.*. -# /scanscoutplugin. (easylist.txt: 5088) -/(.*/)?scanscoutplugin\. -scanscoutplugin.*. -# /scanscoutoverlayadrenderer. (easylist.txt: 5087) -/(.*/)?scanscoutoverlayadrenderer\. -scanscoutoverlayadrenderer.*. -# /scanscout. (easylist.txt: 5086) -/(.*/)?scanscout\. -scanscout.*. -# /sb-relevance.js (easylist.txt: 5085) -/(.*/)?sb-relevance\.js -sb-relevance.js*. -# /savvyads. (easylist.txt: 5084) -/(.*/)?savvyads\. -savvyads.*. -# /satnetgoogleads. (easylist.txt: 5083) -/(.*/)?satnetgoogleads\. -satnetgoogleads.*. -# /satnetads. (easylist.txt: 5082) -/(.*/)?satnetads\. -satnetads.*. -# /samsung_ad. (easylist.txt: 5081) -/(.*/)?samsung_ad\. -# /samplead1. (easylist.txt: 5080) -/(.*/)?samplead1\. -samplead1.*. -# /salesad/* (easylist.txt: 5079) -/(.*/)?salesad/.* -# /sailthru.js (easylist.txt: 5078) -/(.*/)?sailthru\.js -sailthru.js*. -# /safead/* (easylist.txt: 5077) -/(.*/)?safead/.* -# /rule34v2/ads/* (easylist.txt: 5076) -/(.*/)?rule34v2/ads/.* -# /rule34/ads/* (easylist.txt: 5075) -/(.*/)?rule34/ads/.* -# /rswebsiteads/* (easylist.txt: 5074) -/(.*/)?rswebsiteads/.* -# /rss/ads/* (easylist.txt: 5069) -/(.*/)?rss/ads/.* -# /rsc_ad_ (easylist.txt: 5068) -/(.*/)?rsc_ad_ -# /rsads/* (easylist.txt: 5067) -/(.*/)?rsads/.* -# /rsads.js (easylist.txt: 5066) -/(.*/)?rsads\.js -rsads.js*. -# /rpgetad. (easylist.txt: 5065) -/(.*/)?rpgetad\. -rpgetad.*. -# /rpc/ad/* (easylist.txt: 5064) -/(.*/)?rpc/ad/.* -# /roturl.js (easylist.txt: 5063) -/(.*/)?roturl\.js -roturl.js*. -# /rotatoradbottom. (easylist.txt: 5062) -/(.*/)?rotatoradbottom\. -rotatoradbottom.*. -# /rotatorad300x250. (easylist.txt: 5061) -/(.*/)?rotatorad300x250\. -rotatorad300x250.*. -# /rotationad. (easylist.txt: 5060) -/(.*/)?rotationad\. -rotationad.*. -# /rotation/banner (easylist.txt: 5059) -/(.*/)?rotation/banner -# /rotatingtextad. (easylist.txt: 5058) -/(.*/)?rotatingtextad\. -rotatingtextad.*. -# /rotatingpeels. (easylist.txt: 5057) -/(.*/)?rotatingpeels\. -rotatingpeels.*. -# /rotatingad. (easylist.txt: 5056) -/(.*/)?rotatingad\. -rotatingad.*. -# /rotating_banner.php (easylist.txt: 5055) -/(.*/)?rotating_banner\.php -# /rotatedads2. (easylist.txt: 5054) -/(.*/)?rotatedads2\. -rotatedads2.*. -# /rotatedads13. (easylist.txt: 5053) -/(.*/)?rotatedads13\. -rotatedads13.*. -# /rotatedads1. (easylist.txt: 5052) -/(.*/)?rotatedads1\. -rotatedads1.*. -# /rotateads. (easylist.txt: 5051) -/(.*/)?rotateads\. -rotateads.*. -# /rotads/* (easylist.txt: 5050) -/(.*/)?rotads/.* -# /rotad/* (easylist.txt: 5049) -/(.*/)?rotad/.* -# /root_ad. (easylist.txt: 5048) -/(.*/)?root_ad\. -# /rolloverbannerad. (easylist.txt: 5047) -/(.*/)?rolloverbannerad\. -rolloverbannerad.*. -# /rolloverads/* (easylist.txt: 5046) -/(.*/)?rolloverads/.* -# /rollad. (easylist.txt: 5045) -/(.*/)?rollad\. -rollad.*. -# /righttopads. (easylist.txt: 5044) -/(.*/)?righttopads\. -righttopads.*. -# /rightsideaddisplay. (easylist.txt: 5043) -/(.*/)?rightsideaddisplay\. -rightsideaddisplay.*. -# /rightrailgoogleads. (easylist.txt: 5042) -/(.*/)?rightrailgoogleads\. -rightrailgoogleads.*. -# /rightnavadsanswer. (easylist.txt: 5041) -/(.*/)?rightnavadsanswer\. -rightnavadsanswer.*. -# /rightnavads. (easylist.txt: 5040) -/(.*/)?rightnavads\. -rightnavads.*. -# /rightbanner/* (easylist.txt: 5039) -/(.*/)?rightbanner/.* -# /rightads. (easylist.txt: 5038) -/(.*/)?rightads\. -rightads.*. -# /rightad/* (easylist.txt: 5037) -/(.*/)?rightad/.* -# /rightad. (easylist.txt: 5036) -/(.*/)?rightad\. -rightad.*. -# /right_ads. (easylist.txt: 5035) -/(.*/)?right_ads\. -# /right_ad_ (easylist.txt: 5034) -/(.*/)?right_ad_ -# /right_ad^ (easylist.txt: 5033) -/(.*/)?right_ad[^\w%.-] -# /right_ad. (easylist.txt: 5032) -/(.*/)?right_ad\. -# /right-ad- (easylist.txt: 5031) -/(.*/)?right-ad- -right-ad-*. -# /richoas. (easylist.txt: 5030) -/(.*/)?richoas\. -richoas.*. -# /rhspushads/* (easylist.txt: 5029) -/(.*/)?rhspushads/.* -# /rgads. (easylist.txt: 5028) -/(.*/)?rgads\. -rgads.*. -# /revealads2/* (easylist.txt: 5025) -/(.*/)?revealads2/.* -# /revealads/* (easylist.txt: 5024) -/(.*/)?revealads/.* -# /revealads. (easylist.txt: 5023) -/(.*/)?revealads\. -revealads.*. -# /revealaads/* (easylist.txt: 5022) -/(.*/)?revealaads/.* -# /revealaads. (easylist.txt: 5021) -/(.*/)?revealaads\. -revealaads.*. -# /retrieve-ad. (easylist.txt: 5020) -/(.*/)?retrieve-ad\. -retrieve-ad.*. -# /retrad. (easylist.txt: 5019) -/(.*/)?retrad\. -retrad.*. -# /restorationad- (easylist.txt: 5018) -/(.*/)?restorationad- -restorationad-*. -# /responsive_dfp_ (easylist.txt: 5017) -/(.*/)?responsive_dfp_ -# /responsive_dfp. (easylist.txt: 5016) -/(.*/)?responsive_dfp\. -# /responsive-ads. (easylist.txt: 5015) -/(.*/)?responsive-ads\. -responsive-ads.*. -# /resources/ads_ (easylist.txt: 5014) -/(.*/)?resources/ads_ -# /resources/ads/* (easylist.txt: 5013) -/(.*/)?resources/ads/.* -# /resources/ad. (easylist.txt: 5012) -/(.*/)?resources/ad\. -# /requestmyspacead. (easylist.txt: 5011) -/(.*/)?requestmyspacead\. -requestmyspacead.*. -# /requestadvertisement. (easylist.txt: 5010) -/(.*/)?requestadvertisement\. -requestadvertisement.*. -# /report_ad_ (easylist.txt: 5009) -/(.*/)?report_ad_ -# /report_ad. (easylist.txt: 5008) -/(.*/)?report_ad\. -# /repeat_adv. (easylist.txt: 5007) -/(.*/)?repeat_adv\. -# /renderBanner.do? (easylist.txt: 5006) -/(.*/)?renderBanner\.do\? -# /render-ad/* (easylist.txt: 5005) -/(.*/)?render-ad/.* -# /remove_ads. (easylist.txt: 5004) -/(.*/)?remove_ads\. -# /remove-ads. (easylist.txt: 5003) -/(.*/)?remove-ads\. -remove-ads.*. -# /relevance_ad. (easylist.txt: 5002) -/(.*/)?relevance_ad\. -# /relatedads. (easylist.txt: 5001) -/(.*/)?relatedads\. -relatedads.*. -# /related-ads. (easylist.txt: 5000) -/(.*/)?related-ads\. -related-ads.*. -# /reklame/* (easylist.txt: 4999) -/(.*/)?reklame/.* -# /reklama5. (easylist.txt: 4998) -/(.*/)?reklama5\. -reklama5.*. -# /reklama2. (easylist.txt: 4997) -/(.*/)?reklama2\. -reklama2.*. -# /reklama/* (easylist.txt: 4996) -/(.*/)?reklama/.* -# /reklam/* (easylist.txt: 4994) -/(.*/)?reklam/.* -# /reklam. (easylist.txt: 4993) -/(.*/)?reklam\. -reklam.*. -# /RefSplDicAdsTopL. (easylist.txt: 4992) -/(.*/)?RefSplDicAdsTopL\. -RefSplDicAdsTopL.*. -# /refreshsyncbannerad? (easylist.txt: 4991) -/(.*/)?refreshsyncbannerad\? -# /refreshads- (easylist.txt: 4990) -/(.*/)?refreshads- -refreshads-*. -# /refads/* (easylist.txt: 4989) -/(.*/)?refads/.* -# /redirect_awe. (easylist.txt: 4988) -/(.*/)?redirect_awe\. -# /rectangle_advertorials_ (easylist.txt: 4987) -/(.*/)?rectangle_advertorials_ -# /rectangle_ad. (easylist.txt: 4986) -/(.*/)?rectangle_ad\. -# /rect_ad. (easylist.txt: 4985) -/(.*/)?rect_ad\. -# /recordadsall. (easylist.txt: 4984) -/(.*/)?recordadsall\. -recordadsall.*. -# /recommendations/ad. (easylist.txt: 4983) -/(.*/)?recommendations/ad\. -# /reclame/* (easylist.txt: 4982) -/(.*/)?reclame/.* -# /reclama/* (easylist.txt: 4981) -/(.*/)?reclama/.* -# /realmedia_mjx_ (easylist.txt: 4980) -/(.*/)?realmedia_mjx_ -# /realmedia_mjx. (easylist.txt: 4979) -/(.*/)?realmedia_mjx\. -# /realmedia_banner_ (easylist.txt: 4978) -/(.*/)?realmedia_banner_ -# /realmedia_banner. (easylist.txt: 4977) -/(.*/)?realmedia_banner\. -# /realmedia/ads/* (easylist.txt: 4976) -/(.*/)?realmedia/ads/.* -# /rcom-video-ads. (easylist.txt: 4975) -/(.*/)?rcom-video-ads\. -rcom-video-ads.*. -# /rcom-ads. (easylist.txt: 4974) -/(.*/)?rcom-ads\. -rcom-ads.*. -# /rcom-ads- (easylist.txt: 4973) -/(.*/)?rcom-ads- -rcom-ads-*. -# /rcolads2. (easylist.txt: 4972) -/(.*/)?rcolads2\. -rcolads2.*. -# /rcolads1. (easylist.txt: 4971) -/(.*/)?rcolads1\. -rcolads1.*. -# /rawtubelivead. (easylist.txt: 4970) -/(.*/)?rawtubelivead\. -rawtubelivead.*. -# /randomads. (easylist.txt: 4969) -/(.*/)?randomads\. -randomads.*. -# /randomad_ (easylist.txt: 4968) -/(.*/)?randomad_ -# /randomad728x90nsfw. (easylist.txt: 4967) -/(.*/)?randomad728x90nsfw\. -randomad728x90nsfw.*. -# /randomad300x250nsfw. (easylist.txt: 4966) -/(.*/)?randomad300x250nsfw\. -randomad300x250nsfw.*. -# /randomad2. (easylist.txt: 4965) -/(.*/)?randomad2\. -randomad2.*. -# /randomad160x600nsfw. (easylist.txt: 4964) -/(.*/)?randomad160x600nsfw\. -randomad160x600nsfw.*. -# /randomad120x600nsfw. (easylist.txt: 4963) -/(.*/)?randomad120x600nsfw\. -randomad120x600nsfw.*. -# /randomad. (easylist.txt: 4962) -/(.*/)?randomad\. -randomad.*. -# /ram/ads/* (easylist.txt: 4961) -/(.*/)?ram/ads/.* -# /RainbowTGXServer/* (easylist.txt: 4960) -/(.*/)?RainbowTGXServer/.* -# /railsad_ (easylist.txt: 4959) -/(.*/)?railsad_ -# /railsad. (easylist.txt: 4958) -/(.*/)?railsad\. -railsad.*. -# /railads. (easylist.txt: 4957) -/(.*/)?railads\. -railads.*. -# /railad. (easylist.txt: 4956) -/(.*/)?railad\. -railad.*. -# /rail_ad_ (easylist.txt: 4955) -/(.*/)?rail_ad_ -# /radopenx? (easylist.txt: 4954) -/(.*/)?radopenx\? -# /radioAdEmbedGPT. (easylist.txt: 4953) -/(.*/)?radioAdEmbedGPT\. -radioAdEmbedGPT.*. -# /radioadembedgenre. (easylist.txt: 4952) -/(.*/)?radioadembedgenre\. -radioadembedgenre.*. -# /radioAdEmbed. (easylist.txt: 4951) -/(.*/)?radioAdEmbed\. -radioAdEmbed.*. -# /r_ads/* (easylist.txt: 4950) -/(.*/)?r_ads/.* -# /quigo_ad (easylist.txt: 4949) -/(.*/)?quigo_ad -# /quick_ads/* (easylist.txt: 4948) -/(.*/)?quick_ads/.* -# /questions/ads/* (easylist.txt: 4947) -/(.*/)?questions/ads/.* -# /quadadvert. (easylist.txt: 4946) -/(.*/)?quadadvert\. -quadadvert.*. -# /qpon_big_ad (easylist.txt: 4945) -/(.*/)?qpon_big_ad -# /qd_ads/* (easylist.txt: 4944) -/(.*/)?qd_ads/.* -# /qandaads/* (easylist.txt: 4943) -/(.*/)?qandaads/.* -# /pushdownAd. (easylist.txt: 4942) -/(.*/)?pushdownAd\. -pushdownAd.*. -# /punder.php (easylist.txt: 4941) -/(.*/)?punder\.php -punder.php*. -# /punder.js (easylist.txt: 4940) -/(.*/)?punder\.js -punder.js*. -# /pullads. (easylist.txt: 4939) -/(.*/)?pullads\. -pullads.*. -# /puff_ad? (easylist.txt: 4938) -/(.*/)?puff_ad\? -# /pubs_aff.asp? (easylist.txt: 4937) -/(.*/)?pubs_aff\.asp\? -# /pubmatic_ (easylist.txt: 4936) -/(.*/)?pubmatic_ -# /publicidade/* (easylist.txt: 4935) -/(.*/)?publicidade/.* -# /publicidade. (easylist.txt: 4934) -/(.*/)?publicidade\. -publicidade.*. -# /publicidad/* (easylist.txt: 4932) -/(.*/)?publicidad/.* -# /public/adv/* (easylist.txt: 4930) -/(.*/)?public/adv/.* -# /public/ads/* (easylist.txt: 4929) -/(.*/)?public/ads/.* -# /public/ad? (easylist.txt: 4928) -/(.*/)?public/ad\? -# /public/ad/* (easylist.txt: 4927) -/(.*/)?public/ad/.* -# /pubads_ (easylist.txt: 4926) -/(.*/)?pubads_ -# /pubads. (easylist.txt: 4925) -/(.*/)?pubads\. -pubads.*. -# /pubad. (easylist.txt: 4924) -/(.*/)?pubad\. -pubad.*. -# /pub/ads/* (easylist.txt: 4922) -/(.*/)?pub/ads/.* -# /pub/ad/* (easylist.txt: 4921) -/(.*/)?pub/ad/.* -# /proxyadcall? (easylist.txt: 4920) -/(.*/)?proxyadcall\? -# /proxxorad. (easylist.txt: 4919) -/(.*/)?proxxorad\. -proxxorad.*. -# /provider_ads/* (easylist.txt: 4918) -/(.*/)?provider_ads/.* -# /provideadcode. (easylist.txt: 4917) -/(.*/)?provideadcode\. -provideadcode.*. -# /protection/ad/* (easylist.txt: 4916) -/(.*/)?protection/ad/.* -# /promotools1. (easylist.txt: 4915) -/(.*/)?promotools1\. -promotools1.*. -# /promotools/* (easylist.txt: 4914) -/(.*/)?promotools/.* -# /promotools. (easylist.txt: 4913) -/(.*/)?promotools\. -promotools.*. -# /promotions/ads? (easylist.txt: 4912) -/(.*/)?promotions/ads\? -# /promotions/ads/* (easylist.txt: 4911) -/(.*/)?promotions/ads/.* -# /promotions/ads. (easylist.txt: 4910) -/(.*/)?promotions/ads\. -# /promotion/geoip/* (easylist.txt: 4909) -/(.*/)?promotion/geoip/.* -# /promoredirect?*&campaign=*&zone= (easylist.txt: 4908) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /promoloaddisplay? (easylist.txt: 4907) -/(.*/)?promoloaddisplay\? -# /promobuttonad. (easylist.txt: 4906) -/(.*/)?promobuttonad\. -promobuttonad.*. -# /promoads/* (easylist.txt: 4905) -/(.*/)?promoads/.* -# /promo300x250. (easylist.txt: 4904) -/(.*/)?promo300x250\. -promo300x250.*. -# /promo300by250. (easylist.txt: 4903) -/(.*/)?promo300by250\. -promo300by250.*. -# /promo/banners/* (easylist.txt: 4902) -/(.*/)?promo/banners/.* -# /promo/affiframe. (easylist.txt: 4901) -/(.*/)?promo/affiframe\. -# /promo/ads/* (easylist.txt: 4900) -/(.*/)?promo/ads/.* -# /promo/ad_ (easylist.txt: 4899) -/(.*/)?promo/ad_ -# /promo-ads/* (easylist.txt: 4898) -/(.*/)?promo-ads/.* -# /projectwonderful_ (easylist.txt: 4897) -/(.*/)?projectwonderful_ -# /prog-sponsor/* (easylist.txt: 4896) -/(.*/)?prog-sponsor/.* -# /production/ads/* (easylist.txt: 4895) -/(.*/)?production/ads/.* -# /product-ads/* (easylist.txt: 4894) -/(.*/)?product-ads/.* -# /product-ad/* (easylist.txt: 4893) -/(.*/)?product-ad/.* -# /processing/impressions.asp? (easylist.txt: 4892) -/(.*/)?processing/impressions\.asp\? -# /processads. (easylist.txt: 4891) -/(.*/)?processads\. -processads.*. -# /processad. (easylist.txt: 4890) -/(.*/)?processad\. -processad.*. -# /proadvertising_ (easylist.txt: 4889) -/(.*/)?proadvertising_ -# /proadvertising. (easylist.txt: 4888) -/(.*/)?proadvertising\. -proadvertising.*. -# /proads/* (easylist.txt: 4887) -/(.*/)?proads/.* -# /PRNAd300x150. (easylist.txt: 4886) -/(.*/)?PRNAd300x150\. -PRNAd300x150.*. -# /printads/* (easylist.txt: 4885) -/(.*/)?printads/.* -# /printad/* (easylist.txt: 4884) -/(.*/)?printad/.* -# /printad. (easylist.txt: 4883) -/(.*/)?printad\. -printad.*. -# /previews/ad/* (easylist.txt: 4882) -/(.*/)?previews/ad/.* -# /prerollads. (easylist.txt: 4881) -/(.*/)?prerollads\. -prerollads.*. -# /prerollad. (easylist.txt: 4880) -/(.*/)?prerollad\. -prerollad.*. -# /premiumadzone. (easylist.txt: 4879) -/(.*/)?premiumadzone\. -premiumadzone.*. -# /premiumads/* (easylist.txt: 4878) -/(.*/)?premiumads/.* -# /premium_ad. (easylist.txt: 4877) -/(.*/)?premium_ad\. -# /premierebtnad/* (easylist.txt: 4876) -/(.*/)?premierebtnad/.* -# /predictad. (easylist.txt: 4875) -/(.*/)?predictad\. -predictad.*. -# /ppd_ads_ (easylist.txt: 4874) -/(.*/)?ppd_ads_ -# /ppd_ads. (easylist.txt: 4873) -/(.*/)?ppd_ads\. -# /posts_ad. (easylist.txt: 4871) -/(.*/)?posts_ad\. -# /postprofileverticalad. (easylist.txt: 4870) -/(.*/)?postprofileverticalad\. -postprofileverticalad.*. -# /postprofilehorizontalad. (easylist.txt: 4869) -/(.*/)?postprofilehorizontalad\. -postprofilehorizontalad.*. -# /postprocad. (easylist.txt: 4868) -/(.*/)?postprocad\. -postprocad.*. -# /postad. (easylist.txt: 4867) -/(.*/)?postad\. -postad.*. -# /post_ads_ (easylist.txt: 4866) -/(.*/)?post_ads_ -# /post/ads/* (easylist.txt: 4865) -/(.*/)?post/ads/.* -# /post-ad- (easylist.txt: 4864) -/(.*/)?post-ad- -post-ad-*. -# /popupunder. (easylist.txt: 4863) -/(.*/)?popupunder\. -popupunder.*. -# /popupdfp. (easylist.txt: 4862) -/(.*/)?popupdfp\. -popupdfp.*. -# /popupads. (easylist.txt: 4861) -/(.*/)?popupads\. -popupads.*. -# /popup_code. (easylist.txt: 4860) -/(.*/)?popup_code\. -# /popup_ad. (easylist.txt: 4859) -/(.*/)?popup_ad\. -# /popup3.js (easylist.txt: 4858) -/(.*/)?popup3\.js -popup3.js*. -# /popup2.js (easylist.txt: 4857) -/(.*/)?popup2\.js -popup2.js*. -# /popundr_ (easylist.txt: 4855) -/(.*/)?popundr_ -# /popundr. (easylist.txt: 4854) -/(.*/)?popundr\. -popundr.*. -# /popunders/* (easylist.txt: 4853) -/(.*/)?popunders/.* -# /popunders. (easylist.txt: 4852) -/(.*/)?popunders\. -popunders.*. -# /popunderking. (easylist.txt: 4851) -/(.*/)?popunderking\. -popunderking.*. -# /popundercode. (easylist.txt: 4850) -/(.*/)?popundercode\. -popundercode.*. -# /popunderblogs. (easylist.txt: 4849) -/(.*/)?popunderblogs\. -popunderblogs.*. -# /popunder_ (easylist.txt: 4848) -/(.*/)?popunder_ -# /popunder? (easylist.txt: 4847) -/(.*/)?popunder\? -# /popunder7. (easylist.txt: 4846) -/(.*/)?popunder7\. -popunder7.*. -# /popunder5. (easylist.txt: 4845) -/(.*/)?popunder5\. -popunder5.*. -# /popunder4. (easylist.txt: 4844) -/(.*/)?popunder4\. -popunder4.*. -# /popunder2. (easylist.txt: 4843) -/(.*/)?popunder2\. -popunder2.*. -# /popunder1_ (easylist.txt: 4842) -/(.*/)?popunder1_ -# /popunder1. (easylist.txt: 4841) -/(.*/)?popunder1\. -popunder1.*. -# /popunder/* (easylist.txt: 4840) -/(.*/)?popunder/.* -# /popunder. (easylist.txt: 4839) -/(.*/)?popunder\. -popunder.*. -# /popunder- (easylist.txt: 4838) -/(.*/)?popunder- -popunder-*. -# /popu.js (easylist.txt: 4837) -/(.*/)?popu\.js -popu.js*. -# /poprotator. (easylist.txt: 4835) -/(.*/)?poprotator\. -poprotator.*. -# /popounder4. (easylist.txt: 4834) -/(.*/)?popounder4\. -popounder4.*. -# /poplivejasmine. (easylist.txt: 4833) -/(.*/)?poplivejasmine\. -poplivejasmine.*. -# /popads_ (easylist.txt: 4832) -/(.*/)?popads_ -# /popads/* (easylist.txt: 4831) -/(.*/)?popads/.* -# /popads. (easylist.txt: 4830) -/(.*/)?popads\. -popads.*. -# /popad. (easylist.txt: 4829) -/(.*/)?popad\. -popad.*. -# /popad- (easylist.txt: 4828) -/(.*/)?popad- -popad-*. -# /pop_under/* (easylist.txt: 4827) -/(.*/)?pop_under/.* -# /pop_under. (easylist.txt: 4826) -/(.*/)?pop_under\. -# /pop_camgirlcity. (easylist.txt: 4825) -/(.*/)?pop_camgirlcity\. -# /pop_adfy. (easylist.txt: 4824) -/(.*/)?pop_adfy\. -# /pop_ad. (easylist.txt: 4823) -/(.*/)?pop_ad\. -# /pop?tid= (easylist.txt: 4822) -/(.*/)?pop\?tid= -# /pop2.js| (easylist.txt: 4821) -/(.*/)?pop2\.js$ -pop2.js -# /pop.js| (easylist.txt: 4820) -/(.*/)?pop\.js$ -pop.js -# /pop-under. (easylist.txt: 4819) -/(.*/)?pop-under\. -pop-under.*. -# /pool/ad/* (easylist.txt: 4818) -/(.*/)?pool/ad/.* -# /pool.ads. (easylist.txt: 4817) -/(.*/)?pool\.ads\. -pool.ads.*. -# /polopoly_fs/ad- (easylist.txt: 4816) -/(.*/)?polopoly_fs/ad- -# /poll-ad- (easylist.txt: 4815) -/(.*/)?poll-ad- -poll-ad-*. -# /poker-ad. (easylist.txt: 4814) -/(.*/)?poker-ad\. -poker-ad.*. -# /plus/ad_ (easylist.txt: 4813) -/(.*/)?plus/ad_ -# /plugins_ads_ (easylist.txt: 4812) -/(.*/)?plugins_ads_ -# /plugins/wp_actionpop/* (easylist.txt: 4811) -/(.*/)?plugins/wp_actionpop/.* -# /plugins/page-cornr- (easylist.txt: 4808) -/(.*/)?plugins/page-cornr- -# /plugins/ads/* (easylist.txt: 4807) -/(.*/)?plugins/ads/.* -# /plugins/ad. (easylist.txt: 4806) -/(.*/)?plugins/ad\. -# /plugin/ad/* (easylist.txt: 4805) -/(.*/)?plugin/ad/.* -# /pledgead. (easylist.txt: 4804) -/(.*/)?pledgead\. -pledgead.*. -# /player_ads/* (easylist.txt: 4803) -/(.*/)?player_ads/.* -# /player/ads/* (easylist.txt: 4802) -/(.*/)?player/ads/.* -# /player/ads. (easylist.txt: 4801) -/(.*/)?player/ads\. -# /player/ad/* (easylist.txt: 4800) -/(.*/)?player/ad/.* -# /play/ad/* (easylist.txt: 4799) -/(.*/)?play/ad/.* -# /placements/ad_ (easylist.txt: 4798) -/(.*/)?placements/ad_ -# /placeholder-ad- (easylist.txt: 4797) -/(.*/)?placeholder-ad- -placeholder-ad-*. -# /placead_ (easylist.txt: 4796) -/(.*/)?placead_ -# /place-ads/* (easylist.txt: 4795) -/(.*/)?place-ads/.* -# /pixelads/* (easylist.txt: 4794) -/(.*/)?pixelads/.* -# /pix/ads/* (easylist.txt: 4793) -/(.*/)?pix/ads/.* -# /pitattoad. (easylist.txt: 4792) -/(.*/)?pitattoad\. -pitattoad.*. -# /pilot_ad. (easylist.txt: 4791) -/(.*/)?pilot_ad\. -# /pictures/ads/* (easylist.txt: 4790) -/(.*/)?pictures/ads/.* -# /pictureads/* (easylist.txt: 4789) -/(.*/)?pictureads/.* -# /picture/ad/* (easylist.txt: 4788) -/(.*/)?picture/ad/.* -# /pics/ads/* (easylist.txt: 4787) -/(.*/)?pics/ads/.* -# /pickle-adsystem/* (easylist.txt: 4786) -/(.*/)?pickle-adsystem/.* -# /pic_adv/* (easylist.txt: 4785) -/(.*/)?pic_adv/.* -# /pic/ads/* (easylist.txt: 4784) -/(.*/)?pic/ads/.* -# /phpbanner/banner_ (easylist.txt: 4783) -/(.*/)?phpbanner/banner_ -# /phpadsnew/* (easylist.txt: 4782) -/(.*/)?phpadsnew/.* -# /phpadserver/* (easylist.txt: 4781) -/(.*/)?phpadserver/.* -# /phpads2/* (easylist.txt: 4780) -/(.*/)?phpads2/.* -# /phpads/* (easylist.txt: 4779) -/(.*/)?phpads/.* -# /phpads. (easylist.txt: 4778) -/(.*/)?phpads\. -phpads.*. -# /php/ads/* (easylist.txt: 4777) -/(.*/)?php/ads/.* -# /php/ad/* (easylist.txt: 4776) -/(.*/)?php/ad/.* -# /photogallaryads. (easylist.txt: 4775) -/(.*/)?photogallaryads\. -photogallaryads.*. -# /photoflipper/ads/* (easylist.txt: 4774) -/(.*/)?photoflipper/ads/.* -# /photoads/* (easylist.txt: 4773) -/(.*/)?photoads/.* -# /photoad. (easylist.txt: 4772) -/(.*/)?photoad\. -photoad.*. -# /photo728ad. (easylist.txt: 4771) -/(.*/)?photo728ad\. -photo728ad.*. -# /pgrightsideads. (easylist.txt: 4770) -/(.*/)?pgrightsideads\. -pgrightsideads.*. -# /pgad. (easylist.txt: 4769) -/(.*/)?pgad\. -pgad.*. -# /pfpadv. (easylist.txt: 4768) -/(.*/)?pfpadv\. -pfpadv.*. -# /persadpub/* (easylist.txt: 4767) -/(.*/)?persadpub/.* -# /permanent/ads/* (easylist.txt: 4766) -/(.*/)?permanent/ads/.* -# /performancingads/* (easylist.txt: 4765) -/(.*/)?performancingads/.* -# /performance_ads/* (easylist.txt: 4764) -/(.*/)?performance_ads/.* -# /perfads. (easylist.txt: 4763) -/(.*/)?perfads\. -perfads.*. -# /pencilad. (easylist.txt: 4762) -/(.*/)?pencilad\. -pencilad.*. -# /peeltr. (easylist.txt: 4761) -/(.*/)?peeltr\. -peeltr.*. -# /peeltl. (easylist.txt: 4760) -/(.*/)?peeltl\. -peeltl.*. -# /peeljs.php (easylist.txt: 4759) -/(.*/)?peeljs\.php -peeljs.php*. -# /peelbackscript/ad_ (easylist.txt: 4758) -/(.*/)?peelbackscript/ad_ -# /peelaway_images/* (easylist.txt: 4757) -/(.*/)?peelaway_images/.* -# /peelads/* (easylist.txt: 4756) -/(.*/)?peelads/.* -# /peelad/* (easylist.txt: 4755) -/(.*/)?peelad/.* -# /peelad. (easylist.txt: 4754) -/(.*/)?peelad\. -peelad.*. -# /peel_ads/* (easylist.txt: 4753) -/(.*/)?peel_ads/.* -# /peel1.js (easylist.txt: 4752) -/(.*/)?peel1\.js -peel1.js*. -# /peel/?webscr= (easylist.txt: 4751) -/(.*/)?peel/\?webscr= -# /peel.php? (easylist.txt: 4750) -/(.*/)?peel\.php\? -# /peel.js (easylist.txt: 4749) -/(.*/)?peel\.js -peel.js*. -# /pcad.js? (easylist.txt: 4748) -/(.*/)?pcad\.js\? -# /pc/ads. (easylist.txt: 4747) -/(.*/)?pc/ads\. -# /pb-ads/* (easylist.txt: 4746) -/(.*/)?pb-ads/.* -# /payperpost. (easylist.txt: 4745) -/(.*/)?payperpost\. -payperpost.*. -# /pauseadextension. (easylist.txt: 4744) -/(.*/)?pauseadextension\. -pauseadextension.*. -# /parts/ad/* (easylist.txt: 4743) -/(.*/)?parts/ad/.* -# /partnersadbutler/* (easylist.txt: 4742) -/(.*/)?partnersadbutler/.* -# /partners/get-banner. (easylist.txt: 4741) -/(.*/)?partners/get-banner\. -# /partners/ads/* (easylist.txt: 4740) -/(.*/)?partners/ads/.* -# /partners/ad- (easylist.txt: 4739) -/(.*/)?partners/ad- -# /partnerbanner/* (easylist.txt: 4738) -/(.*/)?partnerbanner/.* -# /partnerbanner. (easylist.txt: 4737) -/(.*/)?partnerbanner\. -partnerbanner.*. -# /partneradwidget. (easylist.txt: 4736) -/(.*/)?partneradwidget\. -partneradwidget.*. -# /partnerads_ (easylist.txt: 4735) -/(.*/)?partnerads_ -# /partnerads/* (easylist.txt: 4734) -/(.*/)?partnerads/.* -# /partnerad. (easylist.txt: 4733) -/(.*/)?partnerad\. -partnerad.*. -# /partner_ads_ (easylist.txt: 4732) -/(.*/)?partner_ads_ -# /partner_ads/* (easylist.txt: 4731) -/(.*/)?partner_ads/.* -# /park_html_functions_general.js (easylist.txt: 4730) -/(.*/)?park_html_functions_general\.js -# /park_html_functions.js (easylist.txt: 4729) -/(.*/)?park_html_functions\.js -# /park_html_functions.*.js (easylist.txt: 4728) -/(.*/)?park_html_functions\..*\.js -# /panelad. (easylist.txt: 4727) -/(.*/)?panelad\. -panelad.*. -# /paidlisting/* (easylist.txt: 4726) -/(.*/)?paidlisting/.* -# /paidads/* (easylist.txt: 4725) -/(.*/)?paidads/.* -# /pages/ads (easylist.txt: 4724) -/(.*/)?pages/ads -# /pagepeelads. (easylist.txt: 4723) -/(.*/)?pagepeelads\. -pagepeelads.*. -# /pagepeel_ (easylist.txt: 4722) -/(.*/)?pagepeel_ -# /pagepeel/* (easylist.txt: 4721) -/(.*/)?pagepeel/.* -# /pagepeel. (easylist.txt: 4720) -/(.*/)?pagepeel\. -pagepeel.*. -# /pagepeel- (easylist.txt: 4719) -/(.*/)?pagepeel- -pagepeel-*. -# /pageear_ (easylist.txt: 4718) -/(.*/)?pageear_ -# /pageear/* (easylist.txt: 4717) -/(.*/)?pageear/.* -# /pageear. (easylist.txt: 4716) -/(.*/)?pageear\. -pageear.*. -# /pagecurl/* (easylist.txt: 4715) -/(.*/)?pagecurl/.* -# /pagecall_dfp_async. (easylist.txt: 4714) -/(.*/)?pagecall_dfp_async\. -# /pageads/* (easylist.txt: 4713) -/(.*/)?pageads/.* -# /pageadimg/* (easylist.txt: 4712) -/(.*/)?pageadimg/.* -# /pagead? (easylist.txt: 4711) -/(.*/)?pagead\? -# /pagead46. (easylist.txt: 4710) -/(.*/)?pagead46\. -pagead46.*. -# /pagead2. (easylist.txt: 4709) -/(.*/)?pagead2\. -pagead2.*. -# /pagead/gen_ (easylist.txt: 4708) -/(.*/)?pagead/gen_ -# /pagead/ads? (easylist.txt: 4707) -/(.*/)?pagead/ads\? -# /page/ad/* (easylist.txt: 4706) -/(.*/)?page/ad/.* -# /page-peel (easylist.txt: 4705) -/(.*/)?page-peel -page-peel*. -# /page-ads. (easylist.txt: 4704) -/(.*/)?page-ads\. -page-ads.*. -# /p8network.js (easylist.txt: 4703) -/(.*/)?p8network\.js -p8network.js*. -# /p2ads/* (easylist.txt: 4702) -/(.*/)?p2ads/.* -# /p2/ads/* (easylist.txt: 4701) -/(.*/)?p2/ads/.* -# /p2-header-ad/* (easylist.txt: 4700) -/(.*/)?p2-header-ad/.* -# /p2-header-ad- (easylist.txt: 4699) -/(.*/)?p2-header-ad- -p2-header-ad-*. -# /ox_ultimate/www/* (easylist.txt: 4698) -/(.*/)?ox_ultimate/www/.* -# /ox/www/* (easylist.txt: 4697) -/(.*/)?ox/www/.* -# /ovt_show.asp? (easylist.txt: 4696) -/(.*/)?ovt_show\.asp\? -# /overture_ (easylist.txt: 4695) -/(.*/)?overture_ -# /overlayads. (easylist.txt: 4692) -/(.*/)?overlayads\. -overlayads.*. -# /overlayad. (easylist.txt: 4691) -/(.*/)?overlayad\. -overlayad.*. -# /overlay_ad_ (easylist.txt: 4690) -/(.*/)?overlay_ad_ -# /overlay-ad. (easylist.txt: 4689) -/(.*/)?overlay-ad\. -overlay-ad.*. -# /outbrain-min. (easylist.txt: 4688) -/(.*/)?outbrain-min\. -outbrain-min.*. -# /other/ads/* (easylist.txt: 4687) -/(.*/)?other/ads/.* -# /origin-ad- (easylist.txt: 4686) -/(.*/)?origin-ad- -origin-ad-*. -# /orbitads. (easylist.txt: 4685) -/(.*/)?orbitads\. -orbitads.*. -# /opxads. (easylist.txt: 4684) -/(.*/)?opxads\. -opxads.*. -# /optonlineadcode. (easylist.txt: 4683) -/(.*/)?optonlineadcode\. -optonlineadcode.*. -# /openxtag. (easylist.txt: 4682) -/(.*/)?openxtag\. -openxtag.*. -# /openx_ (easylist.txt: 4681) -/(.*/)?openx_ -# /openx/* (easylist.txt: 4680) -/(.*/)?openx/.* -# /openx. (easylist.txt: 4679) -/(.*/)?openx\. -openx.*. -# /openx- (easylist.txt: 4678) -/(.*/)?openx- -openx-*. -# /openadserver/* (easylist.txt: 4677) -/(.*/)?openadserver/.* -# /openads_ (easylist.txt: 4676) -/(.*/)?openads_ -# /openads2/* (easylist.txt: 4675) -/(.*/)?openads2/.* -# /openads/* (easylist.txt: 4674) -/(.*/)?openads/.* -# /openads. (easylist.txt: 4673) -/(.*/)?openads\. -openads.*. -# /openads- (easylist.txt: 4672) -/(.*/)?openads- -openads-*. -# /openad. (easylist.txt: 4671) -/(.*/)?openad\. -openad.*. -# /ontopadvertising. (easylist.txt: 4670) -/(.*/)?ontopadvertising\. -ontopadvertising.*. -# /onplayerad. (easylist.txt: 4669) -/(.*/)?onplayerad\. -onplayerad.*. -# /onlineads/* (easylist.txt: 4668) -/(.*/)?onlineads/.* -# /online_ads/* (easylist.txt: 4667) -/(.*/)?online_ads/.* -# /online/ads/* (easylist.txt: 4666) -/(.*/)?online/ads/.* -# /onesheet-ad- (easylist.txt: 4665) -/(.*/)?onesheet-ad- -onesheet-ad-*. -# /onecam4ads. (easylist.txt: 4664) -/(.*/)?onecam4ads\. -onecam4ads.*. -# /onead. (easylist.txt: 4663) -/(.*/)?onead\. -onead.*. -# /ome.ads. (easylist.txt: 4662) -/(.*/)?ome\.ads\. -ome.ads.*. -# /omb-ad- (easylist.txt: 4661) -/(.*/)?omb-ad- -omb-ad-*. -# /old/ads- (easylist.txt: 4660) -/(.*/)?old/ads- -# /oiopub-ads/* (easylist.txt: 4658) -/(.*/)?oiopub-ads/.* -# /oasx/* (easylist.txt: 4657) -/(.*/)?oasx/.* -# /oasisi. (easylist.txt: 4656) -/(.*/)?oasisi\. -oasisi.*. -# /oasisi- (easylist.txt: 4655) -/(.*/)?oasisi- -oasisi-*. -# /oasdefault/* (easylist.txt: 4654) -/(.*/)?oasdefault/.* -# /oascontroller. (easylist.txt: 4653) -/(.*/)?oascontroller\. -oascontroller.*. -# /oasconfig/* (easylist.txt: 4652) -/(.*/)?oasconfig/.* -# /oascentral/* (easylist.txt: 4651) -/(.*/)?oascentral/.* -# /oascache/* (easylist.txt: 4649) -/(.*/)?oascache/.* -# /oasbanner_ (easylist.txt: 4648) -/(.*/)?oasbanner_ -# /oasadfunctionlive. (easylist.txt: 4647) -/(.*/)?oasadfunctionlive\. -oasadfunctionlive.*. -# /oasadfunction. (easylist.txt: 4646) -/(.*/)?oasadfunction\. -oasadfunction.*. -# /oasadframe. (easylist.txt: 4645) -/(.*/)?oasadframe\. -oasadframe.*. -# /oasadconnector. (easylist.txt: 4644) -/(.*/)?oasadconnector\. -oasadconnector.*. -# /oas_mjx3. (easylist.txt: 4643) -/(.*/)?oas_mjx3\. -# /oas_mjx2. (easylist.txt: 4642) -/(.*/)?oas_mjx2\. -# /oas_mjx1. (easylist.txt: 4641) -/(.*/)?oas_mjx1\. -# /oas_mjx. (easylist.txt: 4640) -/(.*/)?oas_mjx\. -# /oas_home_ (easylist.txt: 4639) -/(.*/)?oas_home_ -# /oas_handler. (easylist.txt: 4638) -/(.*/)?oas_handler\. -# /oas_ads. (easylist.txt: 4637) -/(.*/)?oas_ads\. -# /oas_ad_ (easylist.txt: 4636) -/(.*/)?oas_ad_ -# /oas_ad/* (easylist.txt: 4635) -/(.*/)?oas_ad/.* -# /oas_ad. (easylist.txt: 4634) -/(.*/)?oas_ad\. -# /OAS/show? (easylist.txt: 4633) -/(.*/)?OAS/show\? -# /oas/oas- (easylist.txt: 4632) -/(.*/)?oas/oas- -# /oas/iframe. (easylist.txt: 4631) -/(.*/)?oas/iframe\. -# /oas/banners/* (easylist.txt: 4630) -/(.*/)?oas/banners/.* -# /oas/ad/* (easylist.txt: 4629) -/(.*/)?oas/ad/.* -# /oas.js (easylist.txt: 4628) -/(.*/)?oas\.js -oas.js*. -# /oas.aspx (easylist.txt: 4627) -/(.*/)?oas\.aspx -oas.aspx*. -# /oas-config. (easylist.txt: 4626) -/(.*/)?oas-config\. -oas-config.*. -# /o2contentad. (easylist.txt: 4625) -/(.*/)?o2contentad\. -o2contentad.*. -# /o2ad. (easylist.txt: 4624) -/(.*/)?o2ad\. -o2ad.*. -# /nymag_ads_ (easylist.txt: 4623) -/(.*/)?nymag_ads_ -# /nymag_ads. (easylist.txt: 4622) -/(.*/)?nymag_ads\. -# /nsfw/sponsors/* (easylist.txt: 4621) -/(.*/)?nsfw/sponsors/.* -# /noticead. (easylist.txt: 4620) -/(.*/)?noticead\. -noticead.*. -# /noodleAdFramed. (easylist.txt: 4619) -/(.*/)?noodleAdFramed\. -noodleAdFramed.*. -# /nonrotatingads/* (easylist.txt: 4618) -/(.*/)?nonrotatingads/.* -# /no_ads. (easylist.txt: 4617) -/(.*/)?no_ads\. -# /nflads. (easylist.txt: 4616) -/(.*/)?nflads\. -nflads.*. -# /nextad/* (easylist.txt: 4615) -/(.*/)?nextad/.* -# /newtopmsgad. (easylist.txt: 4614) -/(.*/)?newtopmsgad\. -newtopmsgad.*. -# /newsmaxadcontrol. (easylist.txt: 4613) -/(.*/)?newsmaxadcontrol\. -newsmaxadcontrol.*. -# /newsletters/ads/* (easylist.txt: 4612) -/(.*/)?newsletters/ads/.* -# /newsletterads/* (easylist.txt: 4611) -/(.*/)?newsletterads/.* -# /newsite/ads/* (easylist.txt: 4610) -/(.*/)?newsite/ads/.* -# /news_ad. (easylist.txt: 4609) -/(.*/)?news_ad\. -# /news/ads/* (easylist.txt: 4608) -/(.*/)?news/ads/.* -# /newrightcolad. (easylist.txt: 4607) -/(.*/)?newrightcolad\. -newrightcolad.*. -# /newimplugs. (easylist.txt: 4606) -/(.*/)?newimplugs\. -newimplugs.*. -# /newimages/ads/* (easylist.txt: 4605) -/(.*/)?newimages/ads/.* -# /newdesign/ad/* (easylist.txt: 4604) -/(.*/)?newdesign/ad/.* -# /newaff/float (easylist.txt: 4603) -/(.*/)?newaff/float -# /newadvert/* (easylist.txt: 4602) -/(.*/)?newadvert/.* -# /newadv/* (easylist.txt: 4601) -/(.*/)?newadv/.* -# /newads/* (easylist.txt: 4600) -/(.*/)?newads/.* -# /newads. (easylist.txt: 4599) -/(.*/)?newads\. -newads.*. -# /newad? (easylist.txt: 4598) -/(.*/)?newad\? -# /newad2? (easylist.txt: 4597) -/(.*/)?newad2\? -# /newad. (easylist.txt: 4596) -/(.*/)?newad\. -newad.*. -# /new_oas. (easylist.txt: 4595) -/(.*/)?new_oas\. -# /new_ads/* (easylist.txt: 4594) -/(.*/)?new_ads/.* -# /new/ads/* (easylist.txt: 4593) -/(.*/)?new/ads/.* -# /new/ad/* (easylist.txt: 4592) -/(.*/)?new/ad/.* -# /new-ads/* (easylist.txt: 4591) -/(.*/)?new-ads/.* -# /neudesicad. (easylist.txt: 4590) -/(.*/)?neudesicad\. -neudesicad.*. -# /network_ad. (easylist.txt: 4589) -/(.*/)?network_ad\. -# /netspiderads3. (easylist.txt: 4588) -/(.*/)?netspiderads3\. -netspiderads3.*. -# /netspiderads2. (easylist.txt: 4587) -/(.*/)?netspiderads2\. -netspiderads2.*. -# /netshelter/* (easylist.txt: 4586) -/(.*/)?netshelter/.* -# /netseerads. (easylist.txt: 4585) -/(.*/)?netseerads\. -netseerads.*. -# /netreachtextads/* (easylist.txt: 4584) -/(.*/)?netreachtextads/.* -# /netads. (easylist.txt: 4583) -/(.*/)?netads\. -netads.*. -# /neoads. (easylist.txt: 4582) -/(.*/)?neoads\. -neoads.*. -# /neo/ads/* (easylist.txt: 4581) -/(.*/)?neo/ads/.* -# /nd_affiliate. (easylist.txt: 4580) -/(.*/)?nd_affiliate\. -# /nbcuadops- (easylist.txt: 4579) -/(.*/)?nbcuadops- -nbcuadops-*. -# /navads/* (easylist.txt: 4578) -/(.*/)?navads/.* -# /navad/* (easylist.txt: 4577) -/(.*/)?navad/.* -# /nativeads/* (easylist.txt: 4576) -/(.*/)?nativeads/.* -# /nativeads- (easylist.txt: 4575) -/(.*/)?nativeads- -nativeads-*. -# /namediaad. (easylist.txt: 4574) -/(.*/)?namediaad\. -namediaad.*. -# /n_ads/* (easylist.txt: 4573) -/(.*/)?n_ads/.* -# /n4403ad. (easylist.txt: 4572) -/(.*/)?n4403ad\. -n4403ad.*. -# /n/adv_ (easylist.txt: 4571) -/(.*/)?n/adv_ -# /mysimpleads/* (easylist.txt: 4570) -/(.*/)?mysimpleads/.* -# /mylayer-ad/* (easylist.txt: 4569) -/(.*/)?mylayer-ad/.* -# /myfreepaysitebanner. (easylist.txt: 4568) -/(.*/)?myfreepaysitebanner\. -myfreepaysitebanner.*. -# /myads/* (easylist.txt: 4566) -/(.*/)?myads/.* -# /my-ad-integration. (easylist.txt: 4565) -/(.*/)?my-ad-integration\. -my-ad-integration.*. -# /my-ad-injector/* (easylist.txt: 4564) -/(.*/)?my-ad-injector/.* -# /multiad/* (easylist.txt: 4563) -/(.*/)?multiad/.* -# /mtvi_ads_ (easylist.txt: 4562) -/(.*/)?mtvi_ads_ -# /MTA-Ad- (easylist.txt: 4561) -/(.*/)?MTA-Ad- -MTA-Ad-*. -# /mstextad? (easylist.txt: 4560) -/(.*/)?mstextad\? -# /msnpopup4. (easylist.txt: 4559) -/(.*/)?msnpopup4\. -msnpopup4.*. -# /msnpopup. (easylist.txt: 4558) -/(.*/)?msnpopup\. -msnpopup.*. -# /msnpopsingle2. (easylist.txt: 4557) -/(.*/)?msnpopsingle2\. -msnpopsingle2.*. -# /msnpop. (easylist.txt: 4556) -/(.*/)?msnpop\. -msnpop.*. -# /msnads1. (easylist.txt: 4555) -/(.*/)?msnads1\. -msnads1.*. -# /msnads/* (easylist.txt: 4554) -/(.*/)?msnads/.* -# /msnadimg. (easylist.txt: 4553) -/(.*/)?msnadimg\. -msnadimg.*. -# /msn-exo- (easylist.txt: 4552) -/(.*/)?msn-exo- -msn-exo-*. -# /msn-1.js (easylist.txt: 4551) -/(.*/)?msn-1\.js -msn-1.js*. -# /msgads. (easylist.txt: 4550) -/(.*/)?msgads\. -msgads.*. -# /mrskinleftside. (easylist.txt: 4549) -/(.*/)?mrskinleftside\. -mrskinleftside.*. -# /mpumessage. (easylist.txt: 4548) -/(.*/)?mpumessage\. -mpumessage.*. -# /mpuguardian. (easylist.txt: 4547) -/(.*/)?mpuguardian\. -mpuguardian.*. -# /mpuad. (easylist.txt: 4546) -/(.*/)?mpuad\. -mpuad.*. -# /mpu-dm.htm (easylist.txt: 4545) -/(.*/)?mpu-dm\.htm -mpu-dm.htm*. -# /mpads/* (easylist.txt: 4544) -/(.*/)?mpads/.* -# /moneyball/ads/* (easylist.txt: 4543) -/(.*/)?moneyball/ads/.* -# /momsads. (easylist.txt: 4542) -/(.*/)?momsads\. -momsads.*. -# /modules_ads. (easylist.txt: 4541) -/(.*/)?modules_ads\. -# /modules/doubleclick/* (easylist.txt: 4540) -/(.*/)?modules/doubleclick/.* -# /modules/adv/* (easylist.txt: 4539) -/(.*/)?modules/adv/.* -# /modules/ads/* (easylist.txt: 4538) -/(.*/)?modules/ads/.* -# /modules/ad_ (easylist.txt: 4537) -/(.*/)?modules/ad_ -# /modules/ad/* (easylist.txt: 4536) -/(.*/)?modules/ad/.* -# /module/ads/* (easylist.txt: 4535) -/(.*/)?module/ads/.* -# /module-ads/* (easylist.txt: 4534) -/(.*/)?module-ads/.* -# /modalad. (easylist.txt: 4533) -/(.*/)?modalad\. -modalad.*. -# /mod_pagepeel_banner/* (easylist.txt: 4532) -/(.*/)?mod_pagepeel_banner/.* -# /mod_ad/* (easylist.txt: 4531) -/(.*/)?mod_ad/.* -# /mobilephonesad/* (easylist.txt: 4530) -/(.*/)?mobilephonesad/.* -# /mobileads/* (easylist.txt: 4529) -/(.*/)?mobileads/.* -# /mobileads. (easylist.txt: 4528) -/(.*/)?mobileads\. -mobileads.*. -# /mobile_ad/* (easylist.txt: 4527) -/(.*/)?mobile_ad/.* -# /mobile_ad. (easylist.txt: 4526) -/(.*/)?mobile_ad\. -# /mobile-ad. (easylist.txt: 4525) -/(.*/)?mobile-ad\. -mobile-ad.*. -# /mnads1. (easylist.txt: 4524) -/(.*/)?mnads1\. -mnads1.*. -# /mmt_ad. (easylist.txt: 4523) -/(.*/)?mmt_ad\. -# /mmsAds. (easylist.txt: 4522) -/(.*/)?mmsAds\. -mmsAds.*. -# /ml9pagepeel. (easylist.txt: 4521) -/(.*/)?ml9pagepeel\. -ml9pagepeel.*. -# /mktad. (easylist.txt: 4520) -/(.*/)?mktad\. -mktad.*. -# /mkadsrv. (easylist.txt: 4519) -/(.*/)?mkadsrv\. -mkadsrv.*. -# /mjx-oas. (easylist.txt: 4518) -/(.*/)?mjx-oas\. -mjx-oas.*. -# /MixBerryAdsProduction/* (easylist.txt: 4517) -/(.*/)?MixBerryAdsProduction/.* -# /miva_ads. (easylist.txt: 4516) -/(.*/)?miva_ads\. -# /misc/ads/* (easylist.txt: 4515) -/(.*/)?misc/ads/.* -# /misc/ads. (easylist.txt: 4514) -/(.*/)?misc/ads\. -# /misc/ad- (easylist.txt: 4513) -/(.*/)?misc/ad- -# /mint/ads/* (easylist.txt: 4512) -/(.*/)?mint/ads/.* -# /minpagead/* (easylist.txt: 4511) -/(.*/)?minpagead/.* -# /minify/ads- (easylist.txt: 4510) -/(.*/)?minify/ads- -# /miniadvert. (easylist.txt: 4509) -/(.*/)?miniadvert\. -miniadvert.*. -# /miniads? (easylist.txt: 4508) -/(.*/)?miniads\? -# /miniadbar/* (easylist.txt: 4507) -/(.*/)?miniadbar/.* -# /mini_ads. (easylist.txt: 4506) -/(.*/)?mini_ads\. -# /mini-ads/* (easylist.txt: 4505) -/(.*/)?mini-ads/.* -# /min/ads/* (easylist.txt: 4504) -/(.*/)?min/ads/.* -# /middleads. (easylist.txt: 4503) -/(.*/)?middleads\. -middleads.*. -# /middle_adv_ (easylist.txt: 4502) -/(.*/)?middle_adv_ -# /microsofttag/* (easylist.txt: 4501) -/(.*/)?microsofttag/.* -# /microads/* (easylist.txt: 4500) -/(.*/)?microads/.* -# /microad. (easylist.txt: 4499) -/(.*/)?microad\. -microad.*. -# /mgid.html (easylist.txt: 4498) -/(.*/)?mgid\.html -mgid.html*. -# /mgid-header. (easylist.txt: 4497) -/(.*/)?mgid-header\. -mgid-header.*. -# /mgid-ad- (easylist.txt: 4496) -/(.*/)?mgid-ad- -mgid-ad-*. -# /metsbanner. (easylist.txt: 4495) -/(.*/)?metsbanner\. -metsbanner.*. -# /metaadserver/* (easylist.txt: 4494) -/(.*/)?metaadserver/.* -# /metaad. (easylist.txt: 4493) -/(.*/)?metaad\. -metaad.*. -# /meme_ad. (easylist.txt: 4492) -/(.*/)?meme_ad\. -# /megaad. (easylist.txt: 4491) -/(.*/)?megaad\. -megaad.*. -# /media_ads/* (easylist.txt: 4490) -/(.*/)?media_ads/.* -# /media/adv/* (easylist.txt: 4489) -/(.*/)?media/adv/.* -# /media/ads/* (easylist.txt: 4488) -/(.*/)?media/ads/.* -# /media/ad/* (easylist.txt: 4487) -/(.*/)?media/ad/.* -# /mDialogAdModule. (easylist.txt: 4486) -/(.*/)?mDialogAdModule\. -mDialogAdModule.*. -# /mda-ads/* (easylist.txt: 4485) -/(.*/)?mda-ads/.* -# /mcad.php (easylist.txt: 4484) -/(.*/)?mcad\.php -mcad.php*. -# /mbn_ad. (easylist.txt: 4483) -/(.*/)?mbn_ad\. -# /mbads? (easylist.txt: 4482) -/(.*/)?mbads\? -# /maxi_ad. (easylist.txt: 4481) -/(.*/)?maxi_ad\. -# /maxadselect. (easylist.txt: 4480) -/(.*/)?maxadselect\. -maxadselect.*. -# /match_ads. (easylist.txt: 4479) -/(.*/)?match_ads\. -# /masterad. (easylist.txt: 4478) -/(.*/)?masterad\. -masterad.*. -# /masonad.gif (easylist.txt: 4477) -/(.*/)?masonad\.gif -masonad.gif*. -# /markpop.js (easylist.txt: 4476) -/(.*/)?markpop\.js -markpop.js*. -# /marketing/banners_ (easylist.txt: 4475) -/(.*/)?marketing/banners_ -# /marketing/banners/* (easylist.txt: 4474) -/(.*/)?marketing/banners/.* -# /marketing-banners/* (easylist.txt: 4473) -/(.*/)?marketing-banners/.* -# /marginaleadservlet? (easylist.txt: 4472) -/(.*/)?marginaleadservlet\? -# /mapquest/Ads/* (easylist.txt: 4471) -/(.*/)?mapquest/Ads/.* -# /mainpagepopupadv1. (easylist.txt: 4470) -/(.*/)?mainpagepopupadv1\. -mainpagepopupadv1.*. -# /mainad. (easylist.txt: 4469) -/(.*/)?mainad\. -mainad.*. -# /main_ad_ (easylist.txt: 4468) -/(.*/)?main_ad_ -# /main_ad/* (easylist.txt: 4467) -/(.*/)?main_ad/.* -# /main_ad. (easylist.txt: 4466) -/(.*/)?main_ad\. -# /main/ads/* (easylist.txt: 4465) -/(.*/)?main/ads/.* -# /main/ad_ (easylist.txt: 4464) -/(.*/)?main/ad_ -# /main/ad/* (easylist.txt: 4463) -/(.*/)?main/ad/.* -# /magic-ads/* (easylist.txt: 4462) -/(.*/)?magic-ads/.* -# /magic-ad/* (easylist.txt: 4461) -/(.*/)?magic-ad/.* -# /magazine/ads. (easylist.txt: 4460) -/(.*/)?magazine/ads\. -# /mad_ad. (easylist.txt: 4459) -/(.*/)?mad_ad\. -# /mad.aspx? (easylist.txt: 4458) -/(.*/)?mad\.aspx\? -# /mac-ad? (easylist.txt: 4457) -/(.*/)?mac-ad\? -# /m0ar_ads. (easylist.txt: 4456) -/(.*/)?m0ar_ads\. -# /lrec_ad. (easylist.txt: 4455) -/(.*/)?lrec_ad\. -# /lotto_ad_ (easylist.txt: 4454) -/(.*/)?lotto_ad_ -# /logoutad. (easylist.txt: 4453) -/(.*/)?logoutad\. -logoutad.*. -# /logoads. (easylist.txt: 4452) -/(.*/)?logoads\. -logoads.*. -# /logo-ads. (easylist.txt: 4451) -/(.*/)?logo-ads\. -logo-ads.*. -# /logad? (easylist.txt: 4450) -/(.*/)?logad\? -# /log_ad_ (easylist.txt: 4449) -/(.*/)?log_ad_ -# /log_ad? (easylist.txt: 4448) -/(.*/)?log_ad\? -# /localcom-ad- (easylist.txt: 4446) -/(.*/)?localcom-ad- -localcom-ad-*. -# /localads. (easylist.txt: 4445) -/(.*/)?localads\. -localads.*. -# /LocalAdNet/* (easylist.txt: 4444) -/(.*/)?LocalAdNet/.* -# /localAdData/* (easylist.txt: 4443) -/(.*/)?localAdData/.* -# /LocalAd_ (easylist.txt: 4442) -/(.*/)?LocalAd_ -# /localAd/* (easylist.txt: 4441) -/(.*/)?localAd/.* -# /local_ads_ (easylist.txt: 4440) -/(.*/)?local_ads_ -# /loadTargetUrl? (easylist.txt: 4439) -/(.*/)?loadTargetUrl\? -# /loading_ads. (easylist.txt: 4438) -/(.*/)?loading_ads\. -# /loadadwiz. (easylist.txt: 4437) -/(.*/)?loadadwiz\. -loadadwiz.*. -# /loadadsparam. (easylist.txt: 4436) -/(.*/)?loadadsparam\. -loadadsparam.*. -# /loadadsmainparam. (easylist.txt: 4435) -/(.*/)?loadadsmainparam\. -loadadsmainparam.*. -# /loadadsmain. (easylist.txt: 4434) -/(.*/)?loadadsmain\. -loadadsmain.*. -# /loadads/* (easylist.txt: 4433) -/(.*/)?loadads/.* -# /loadads. (easylist.txt: 4432) -/(.*/)?loadads\. -loadads.*. -# /loadad.aspx? (easylist.txt: 4431) -/(.*/)?loadad\.aspx\? -# /load_ad? (easylist.txt: 4430) -/(.*/)?load_ad\? -# /load-ads| (easylist.txt: 4429) -/(.*/)?load-ads$ -# /livejasmine05. (easylist.txt: 4428) -/(.*/)?livejasmine05\. -livejasmine05.*. -# /livejasmine03. (easylist.txt: 4427) -/(.*/)?livejasmine03\. -livejasmine03.*. -# /livejasmin_ (easylist.txt: 4426) -/(.*/)?livejasmin_ -# /livejasmin2. (easylist.txt: 4425) -/(.*/)?livejasmin2\. -livejasmin2.*. -# /livejasmin/*&id= (easylist.txt: 4424) -/(.*/)?livejasmin/.*&id= -# /livejasmin. (easylist.txt: 4423) -/(.*/)?livejasmin\. -livejasmin.*. -# /liveads. (easylist.txt: 4422) -/(.*/)?liveads\. -liveads.*. -# /livead- (easylist.txt: 4421) -/(.*/)?livead- -livead-*. -# /live_ad. (easylist.txt: 4420) -/(.*/)?live_ad\. -# /links_sponsored_ (easylist.txt: 4419) -/(.*/)?links_sponsored_ -# /linkedads/* (easylist.txt: 4418) -/(.*/)?linkedads/.* -# /linkadv_ (easylist.txt: 4417) -/(.*/)?linkadv_ -# /linkadv. (easylist.txt: 4416) -/(.*/)?linkadv\. -linkadv.*. -# /linkads. (easylist.txt: 4415) -/(.*/)?linkads\. -linkads.*. -# /linkad2. (easylist.txt: 4414) -/(.*/)?linkad2\. -linkad2.*. -# /lijitads. (easylist.txt: 4413) -/(.*/)?lijitads\. -lijitads.*. -# /lijit-ad- (easylist.txt: 4412) -/(.*/)?lijit-ad- -lijit-ad-*. -# /lightboxbannerad^ (easylist.txt: 4411) -/(.*/)?lightboxbannerad[^\w%.-] -# /lightboxad^ (easylist.txt: 4410) -/(.*/)?lightboxad[^\w%.-] -# /lightad. (easylist.txt: 4409) -/(.*/)?lightad\. -lightad.*. -# /lifeshowad/* (easylist.txt: 4408) -/(.*/)?lifeshowad/.* -# /library/ads/* (easylist.txt: 4407) -/(.*/)?library/ads/.* -# /lib/ad.js (easylist.txt: 4406) -/(.*/)?lib/ad\.js -# /lg.php?adid= (easylist.txt: 4405) -/(.*/)?lg\.php\?adid= -# /leftsidebarads. (easylist.txt: 4404) -/(.*/)?leftsidebarads\. -leftsidebarads.*. -# /leftads. (easylist.txt: 4403) -/(.*/)?leftads\. -leftads.*. -# /leftad_ (easylist.txt: 4402) -/(.*/)?leftad_ -# /leftad. (easylist.txt: 4401) -/(.*/)?leftad\. -leftad.*. -# /left_ads. (easylist.txt: 4400) -/(.*/)?left_ads\. -# /left_ad_ (easylist.txt: 4399) -/(.*/)?left_ad_ -# /left-ads. (easylist.txt: 4398) -/(.*/)?left-ads\. -left-ads.*. -# /ledad. (easylist.txt: 4397) -/(.*/)?ledad\. -ledad.*. -# /leaderboardads. (easylist.txt: 4396) -/(.*/)?leaderboardads\. -leaderboardads.*. -# /leaderboardadblock. (easylist.txt: 4395) -/(.*/)?leaderboardadblock\. -leaderboardadblock.*. -# /leaderboardad. (easylist.txt: 4394) -/(.*/)?leaderboardad\. -leaderboardad.*. -# /leaderboard_adv/* (easylist.txt: 4393) -/(.*/)?leaderboard_adv/.* -# /leaderboard_ad/* (easylist.txt: 4392) -/(.*/)?leaderboard_ad/.* -# /leaderboard-advert. (easylist.txt: 4391) -/(.*/)?leaderboard-advert\. -leaderboard-advert.*. -# /leaderad. (easylist.txt: 4390) -/(.*/)?leaderad\. -leaderad.*. -# /leader_ad. (easylist.txt: 4389) -/(.*/)?leader_ad\. -# /leadads/* (easylist.txt: 4388) -/(.*/)?leadads/.* -# /lbl_ad. (easylist.txt: 4387) -/(.*/)?lbl_ad\. -# /lazyad. (easylist.txt: 4386) -/(.*/)?lazyad\. -lazyad.*. -# /layout/ads/* (easylist.txt: 4385) -/(.*/)?layout/ads/.* -# /layout/ad. (easylist.txt: 4384) -/(.*/)?layout/ad\. -# /layout.inc.php?img (easylist.txt: 4383) -/(.*/)?layout\.inc\.php\?img -# /layerads_ (easylist.txt: 4382) -/(.*/)?layerads_ -# /layerads. (easylist.txt: 4381) -/(.*/)?layerads\. -layerads.*. -# /layerads- (easylist.txt: 4380) -/(.*/)?layerads- -layerads-*. -# /LayerAd^ (easylist.txt: 4379) -/(.*/)?LayerAd[^\w%.-] -# /layerad. (easylist.txt: 4378) -/(.*/)?layerad\. -layerad.*. -# /layerad- (easylist.txt: 4377) -/(.*/)?layerad- -layerad-*. -# /layer_ad? (easylist.txt: 4376) -/(.*/)?layer_ad\? -# /layer160x600. (easylist.txt: 4375) -/(.*/)?layer160x600\. -layer160x600.*. -# /layer/ads. (easylist.txt: 4374) -/(.*/)?layer/ads\. -# /layer/ad. (easylist.txt: 4373) -/(.*/)?layer/ad\. -# /layer.php?bid= (easylist.txt: 4372) -/(.*/)?layer\.php\?bid= -# /layer-advert- (easylist.txt: 4371) -/(.*/)?layer-advert- -layer-advert-*. -# /layer-ads. (easylist.txt: 4370) -/(.*/)?layer-ads\. -layer-ads.*. -# /layer-ad. (easylist.txt: 4369) -/(.*/)?layer-ad\. -layer-ad.*. -# /layad. (easylist.txt: 4368) -/(.*/)?layad\. -layad.*. -# /large_ads/* (easylist.txt: 4367) -/(.*/)?large_ads/.* -# /landingadvertisements/* (easylist.txt: 4366) -/(.*/)?landingadvertisements/.* -# /landerbanners/* (easylist.txt: 4365) -/(.*/)?landerbanners/.* -# /kskads. (easylist.txt: 4364) -/(.*/)?kskads\. -kskads.*. -# /kredit-ad. (easylist.txt: 4363) -/(.*/)?kredit-ad\. -kredit-ad.*. -# /kogeePopupAd. (easylist.txt: 4362) -/(.*/)?kogeePopupAd\. -kogeePopupAd.*. -# /keyword_ad. (easylist.txt: 4361) -/(.*/)?keyword_ad\. -# /keyade.js (easylist.txt: 4360) -/(.*/)?keyade\.js -keyade.js*. -# /kantarmedia. (easylist.txt: 4359) -/(.*/)?kantarmedia\. -kantarmedia.*. -# /kampyle.js (easylist.txt: 4358) -/(.*/)?kampyle\.js -kampyle.js*. -# /KalahariAds. (easylist.txt: 4357) -/(.*/)?KalahariAds\. -KalahariAds.*. -# /kaksvpopup. (easylist.txt: 4356) -/(.*/)?kaksvpopup\. -kaksvpopup.*. -# /k_ads/* (easylist.txt: 4355) -/(.*/)?k_ads/.* -# /jumpstartunpaidad. (easylist.txt: 4354) -/(.*/)?jumpstartunpaidad\. -jumpstartunpaidad.*. -# /juicyads_ (easylist.txt: 4353) -/(.*/)?juicyads_ -# /jtcashbanners/* (easylist.txt: 4352) -/(.*/)?jtcashbanners/.* -# /jsVideoPopAd. (easylist.txt: 4351) -/(.*/)?jsVideoPopAd\. -jsVideoPopAd.*. -# /jstextad. (easylist.txt: 4350) -/(.*/)?jstextad\. -jstextad.*. -# /jspopunder. (easylist.txt: 4349) -/(.*/)?jspopunder\. -jspopunder.*. -# /jsplayerads- (easylist.txt: 4348) -/(.*/)?jsplayerads- -jsplayerads-*. -# /json/ad/* (easylist.txt: 4347) -/(.*/)?json/ad/.* -# /jsfiles/ads/* (easylist.txt: 4346) -/(.*/)?jsfiles/ads/.* -# /jsc/ads. (easylist.txt: 4345) -/(.*/)?jsc/ads\. -# /jsadscripts/* (easylist.txt: 4344) -/(.*/)?jsadscripts/.* -# /jsAds/* (easylist.txt: 4343) -/(.*/)?jsAds/.* -# /jsads- (easylist.txt: 4342) -/(.*/)?jsads- -jsads-*. -# /jsad/* (easylist.txt: 4341) -/(.*/)?jsad/.* -# /jsad.php (easylist.txt: 4340) -/(.*/)?jsad\.php -jsad.php*. -# /js_adv_ (easylist.txt: 4339) -/(.*/)?js_adv_ -# /js_ads_ (easylist.txt: 4338) -/(.*/)?js_ads_ -# /js_ads/* (easylist.txt: 4337) -/(.*/)?js_ads/.* -# /js_ad_utf8. (easylist.txt: 4336) -/(.*/)?js_ad_utf8\. -# /js2.ad/size= (easylist.txt: 4335) -/(.*/)?js2\.ad/size= -js2.ad/size= -# /js/youmuffpu.js (easylist.txt: 4334) -/(.*/)?js/youmuffpu\.js -# /js/oas. (easylist.txt: 4332) -/(.*/)?js/oas\. -# /js/oas- (easylist.txt: 4331) -/(.*/)?js/oas- -# /js/doubleclick/* (easylist.txt: 4330) -/(.*/)?js/doubleclick/.* -# /js/adv/* (easylist.txt: 4329) -/(.*/)?js/adv/.* -# /js/adv. (easylist.txt: 4328) -/(.*/)?js/adv\. -# /js/ads_ (easylist.txt: 4327) -/(.*/)?js/ads_ -# /js/ads. (easylist.txt: 4326) -/(.*/)?js/ads\. -# /js/ads- (easylist.txt: 4325) -/(.*/)?js/ads- -# /js.ng/size= (easylist.txt: 4324) -/(.*/)?js\.ng/size= -js.ng/size= -# /js.ng/site= (easylist.txt: 4323) -/(.*/)?js\.ng/site= -js.ng/site= -# /js.ng/pagepos= (easylist.txt: 4322) -/(.*/)?js\.ng/pagepos= -js.ng/pagepos= -# /js.ng/channel_ (easylist.txt: 4321) -/(.*/)?js\.ng/channel_ -js.ng/channel_ -# /js.ng/cat= (easylist.txt: 4320) -/(.*/)?js\.ng/cat= -js.ng/cat= -# /js.ad/size= (easylist.txt: 4319) -/(.*/)?js\.ad/size= -js.ad/size= -# /jqueryadvertising. (easylist.txt: 4318) -/(.*/)?jqueryadvertising\. -jqueryadvertising.*. -# /jquery_FOR_AD/* (easylist.txt: 4317) -/(.*/)?jquery_FOR_AD/.* -# /jquery/ad. (easylist.txt: 4316) -/(.*/)?jquery/ad\. -# /jquery.adx. (easylist.txt: 4315) -/(.*/)?jquery\.adx\. -jquery.adx.*. -# /jquery-ads. (easylist.txt: 4314) -/(.*/)?jquery-ads\. -jquery-ads.*. -# /jqads. (easylist.txt: 4313) -/(.*/)?jqads\. -jqads.*. -# /JPlayerAdFoxAdvertisementPlugin. (easylist.txt: 4312) -/(.*/)?JPlayerAdFoxAdvertisementPlugin\. -JPlayerAdFoxAdvertisementPlugin.*. -# /jlist-affiliates/* (easylist.txt: 4311) -/(.*/)?jlist-affiliates/.* -# /jivoxadplayer. (easylist.txt: 4310) -/(.*/)?jivoxadplayer\. -jivoxadplayer.*. -# /jitads. (easylist.txt: 4309) -/(.*/)?jitads\. -jitads.*. -# /jcorner.php?partner= (easylist.txt: 4308) -/(.*/)?jcorner\.php\?partner= -# /javascripts/ads/* (easylist.txt: 4307) -/(.*/)?javascripts/ads/.* -# /javascripts/ads. (easylist.txt: 4306) -/(.*/)?javascripts/ads\. -# /javascript/oas? (easylist.txt: 4305) -/(.*/)?javascript/oas\? -# /javascript/oas. (easylist.txt: 4304) -/(.*/)?javascript/oas\. -# /javascript/ads/* (easylist.txt: 4303) -/(.*/)?javascript/ads/.* -# /javascript/ads. (easylist.txt: 4302) -/(.*/)?javascript/ads\. -# /jamnboad. (easylist.txt: 4301) -/(.*/)?jamnboad\. -jamnboad.*. -# /j/ads.js (easylist.txt: 4300) -/(.*/)?j/ads\.js -# /iwadsense. (easylist.txt: 4299) -/(.*/)?iwadsense\. -iwadsense.*. -# /ispy/ads/* (easylist.txt: 4298) -/(.*/)?ispy/ads/.* -# /isgadvertisement/* (easylist.txt: 4297) -/(.*/)?isgadvertisement/.* -# /iserver/site= (easylist.txt: 4296) -/(.*/)?iserver/site= -# /iserver/ccid= (easylist.txt: 4295) -/(.*/)?iserver/ccid= -# /is.php?ipua_id=*&search_id= (easylist.txt: 4294) -/(.*/)?is\.php\?ipua_id=.*&search_id= -# /ireel/ad*.jpg (easylist.txt: 4293) -/(.*/)?ireel/ad.*\.jpg -# /irc_ad_ (easylist.txt: 4292) -/(.*/)?irc_ad_ -# /iqadcontroller. (easylist.txt: 4291) -/(.*/)?iqadcontroller\. -iqadcontroller.*. -# /iprom-ad/* (easylist.txt: 4290) -/(.*/)?iprom-ad/.* -# /ipadad. (easylist.txt: 4289) -/(.*/)?ipadad\. -ipadad.*. -# /ip-advertising/* (easylist.txt: 4288) -/(.*/)?ip-advertising/.* -# /inx-ad. (easylist.txt: 4287) -/(.*/)?inx-ad\. -inx-ad.*. -# /inviteads/* (easylist.txt: 4286) -/(.*/)?inviteads/.* -# /invideoad. (easylist.txt: 4285) -/(.*/)?invideoad\. -invideoad.*. -# /inventory/ad/* (easylist.txt: 4284) -/(.*/)?inventory/ad/.* -# /inv/ads/* (easylist.txt: 4283) -/(.*/)?inv/ads/.* -# /introduction_ad. (easylist.txt: 4282) -/(.*/)?introduction_ad\. -# /intextads. (easylist.txt: 4281) -/(.*/)?intextads\. -intextads.*. -# /intextadd/* (easylist.txt: 4280) -/(.*/)?intextadd/.* -# /interstitial_ad. (easylist.txt: 4279) -/(.*/)?interstitial_ad\. -# /interstitial-ad? (easylist.txt: 4278) -/(.*/)?interstitial-ad\? -# /interstitial-ad/* (easylist.txt: 4277) -/(.*/)?interstitial-ad/.* -# /interstitial-ad. (easylist.txt: 4276) -/(.*/)?interstitial-ad\. -interstitial-ad.*. -# /internetad/* (easylist.txt: 4275) -/(.*/)?internetad/.* -# /internet_ad_ (easylist.txt: 4274) -/(.*/)?internet_ad_ -# /internal-ad- (easylist.txt: 4273) -/(.*/)?internal-ad- -internal-ad-*. -# /internAds. (easylist.txt: 4272) -/(.*/)?internAds\. -internAds.*. -# /intermediate-ad- (easylist.txt: 4271) -/(.*/)?intermediate-ad- -intermediate-ad-*. -# /interface/ads/* (easylist.txt: 4270) -/(.*/)?interface/ads/.* -# /interad. (easylist.txt: 4269) -/(.*/)?interad\. -interad.*. -# /intellitext. (easylist.txt: 4268) -/(.*/)?intellitext\. -intellitext.*. -# /intelliad. (easylist.txt: 4267) -/(.*/)?intelliad\. -intelliad.*. -# /instreamad/* (easylist.txt: 4266) -/(.*/)?instreamad/.* -# /insertads. (easylist.txt: 4265) -/(.*/)?insertads\. -insertads.*. -# /insertAd. (easylist.txt: 4264) -/(.*/)?insertAd\. -insertAd.*. -# /inquirer/ads/* (easylist.txt: 4263) -/(.*/)?inquirer/ads/.* -# /innerads. (easylist.txt: 4262) -/(.*/)?innerads\. -innerads.*. -# /inner-ads/* (easylist.txt: 4261) -/(.*/)?inner-ads/.* -# /inner-ads- (easylist.txt: 4260) -/(.*/)?inner-ads- -inner-ads-*. -# /inlinetextads? (easylist.txt: 4259) -/(.*/)?inlinetextads\? -# /inlineads/* (easylist.txt: 4258) -/(.*/)?inlineads/.* -# /inline_ads. (easylist.txt: 4257) -/(.*/)?inline_ads\. -# /inline_ad_ (easylist.txt: 4256) -/(.*/)?inline_ad_ -# /inline_ad. (easylist.txt: 4255) -/(.*/)?inline_ad\. -# /INjspopunder. (easylist.txt: 4254) -/(.*/)?INjspopunder\. -INjspopunder.*. -# /injectad. (easylist.txt: 4253) -/(.*/)?injectad\. -injectad.*. -# /initlayeredwelcomead- (easylist.txt: 4252) -/(.*/)?initlayeredwelcomead- -initlayeredwelcomead-*. -# /initdefineads. (easylist.txt: 4251) -/(.*/)?initdefineads\. -initdefineads.*. -# /inhouse_ads/* (easylist.txt: 4250) -/(.*/)?inhouse_ads/.* -# /index_ads. (easylist.txt: 4249) -/(.*/)?index_ads\. -# /index_ad/* (easylist.txt: 4248) -/(.*/)?index_ad/.* -# /index-ad. (easylist.txt: 4247) -/(.*/)?index-ad\. -index-ad.*. -# /index-ad- (easylist.txt: 4246) -/(.*/)?index-ad- -index-ad-*. -# /incmpuad. (easylist.txt: 4245) -/(.*/)?incmpuad\. -incmpuad.*. -# /includes/ads_ (easylist.txt: 4244) -/(.*/)?includes/ads_ -# /includes/ads/* (easylist.txt: 4243) -/(.*/)?includes/ads/.* -# /includes/ad_ (easylist.txt: 4242) -/(.*/)?includes/ad_ -# /includes/ad. (easylist.txt: 4241) -/(.*/)?includes/ad\. -# /included_ads/* (easylist.txt: 4240) -/(.*/)?included_ads/.* -# /include/adsdaq (easylist.txt: 4239) -/(.*/)?include/adsdaq -# /include/ads/* (easylist.txt: 4238) -/(.*/)?include/ads/.* -# /include/ad_ (easylist.txt: 4237) -/(.*/)?include/ad_ -# /include/ad/* (easylist.txt: 4236) -/(.*/)?include/ad/.* -# /inc_v2/ad_ (easylist.txt: 4235) -/(.*/)?inc_v2/ad_ -# /inc_ads. (easylist.txt: 4234) -/(.*/)?inc_ads\. -# /inc_ad_ (easylist.txt: 4233) -/(.*/)?inc_ad_ -# /inc_ad. (easylist.txt: 4232) -/(.*/)?inc_ad\. -# /inc/ads/* (easylist.txt: 4231) -/(.*/)?inc/ads/.* -# /inc/ad. (easylist.txt: 4230) -/(.*/)?inc/ad\. -# /inc/ad- (easylist.txt: 4229) -/(.*/)?inc/ad- -# /inad. (easylist.txt: 4228) -/(.*/)?inad\. -inad.*. -# /impopup/* (easylist.txt: 4227) -/(.*/)?impopup/.* -# /impop. (easylist.txt: 4226) -/(.*/)?impop\. -impop.*. -# /imp.ads/* (easylist.txt: 4225) -/(.*/)?imp\.ads/.* -imp.ads/.* -# /imlive5. (easylist.txt: 4224) -/(.*/)?imlive5\. -imlive5.*. -# /imlive300_ (easylist.txt: 4223) -/(.*/)?imlive300_ -# /imlive.gif (easylist.txt: 4222) -/(.*/)?imlive\.gif -imlive.gif*. -# /imgs/ads/* (easylist.txt: 4221) -/(.*/)?imgs/ads/.* -# /imgs/ad/* (easylist.txt: 4220) -/(.*/)?imgs/ad/.* -# /imgaffl/* (easylist.txt: 4219) -/(.*/)?imgaffl/.* -# /imgads/* (easylist.txt: 4218) -/(.*/)?imgads/.* -# /imgAdITN. (easylist.txt: 4217) -/(.*/)?imgAdITN\. -imgAdITN.*. -# /imgad_ (easylist.txt: 4216) -/(.*/)?imgad_ -# /imgad? (easylist.txt: 4215) -/(.*/)?imgad\? -# /imgad. (easylist.txt: 4214) -/(.*/)?imgad\. -imgad.*. -# /img_adv/* (easylist.txt: 4213) -/(.*/)?img_adv/.* -# /img_ads/* (easylist.txt: 4212) -/(.*/)?img_ads/.* -# /img_ad_ (easylist.txt: 4211) -/(.*/)?img_ad_ -# /img_ad/* (easylist.txt: 4210) -/(.*/)?img_ad/.* -# /img3/ads/* (easylist.txt: 4209) -/(.*/)?img3/ads/.* -# /img2/ad/* (easylist.txt: 4208) -/(.*/)?img2/ad/.* -# /img/aff/* (easylist.txt: 4207) -/(.*/)?img/aff/.* -# /img/adv/* (easylist.txt: 4206) -/(.*/)?img/adv/.* -# /img/adv. (easylist.txt: 4205) -/(.*/)?img/adv\. -# /img/ads/* (easylist.txt: 4204) -/(.*/)?img/ads/.* -# /img/ad_ (easylist.txt: 4203) -/(.*/)?img/ad_ -# /img/ad/* (easylist.txt: 4202) -/(.*/)?img/ad/.* -# /img/ad. (easylist.txt: 4201) -/(.*/)?img/ad\. -# /img/ad- (easylist.txt: 4200) -/(.*/)?img/ad- -# /img/_ad. (easylist.txt: 4199) -/(.*/)?img/_ad\. -# /img.ads. (easylist.txt: 4198) -/(.*/)?img\.ads\. -img.ads.*. -# /img-ads/* (easylist.txt: 4197) -/(.*/)?img-ads/.* -# /imfloat. (easylist.txt: 4196) -/(.*/)?imfloat\. -imfloat.*. -# /imagesadspro/* (easylist.txt: 4195) -/(.*/)?imagesadspro/.* -# /images_ads/* (easylist.txt: 4194) -/(.*/)?images_ads/.* -# /images_ad/* (easylist.txt: 4193) -/(.*/)?images_ad/.* -# /images2/ads/* (easylist.txt: 4192) -/(.*/)?images2/ads/.* -# /images1/ad_ (easylist.txt: 4191) -/(.*/)?images1/ad_ -# /images/vghd (easylist.txt: 4190) -/(.*/)?images/vghd -# /images/sponsored/* (easylist.txt: 4189) -/(.*/)?images/sponsored/.* -# /images/sponsored. (easylist.txt: 4188) -/(.*/)?images/sponsored\. -# /images/livejasmin/* (easylist.txt: 4187) -/(.*/)?images/livejasmin/.* -# /images/gads_ (easylist.txt: 4186) -/(.*/)?images/gads_ -# /images/bg_ad/* (easylist.txt: 4185) -/(.*/)?images/bg_ad/.* -# /images/awebanner (easylist.txt: 4184) -/(.*/)?images/awebanner -# /images/affs/* (easylist.txt: 4183) -/(.*/)?images/affs/.* -# /images/aff- (easylist.txt: 4182) -/(.*/)?images/aff- -# /images/adver- (easylist.txt: 4181) -/(.*/)?images/adver- -# /images/adv_ (easylist.txt: 4180) -/(.*/)?images/adv_ -# /images/adv/* (easylist.txt: 4179) -/(.*/)?images/adv/.* -# /images/adv. (easylist.txt: 4178) -/(.*/)?images/adv\. -# /images/adv- (easylist.txt: 4177) -/(.*/)?images/adv- -# /images/ads_ (easylist.txt: 4176) -/(.*/)?images/ads_ -# /images/ads/* (easylist.txt: 4175) -/(.*/)?images/ads/.* -# /images/ads. (easylist.txt: 4174) -/(.*/)?images/ads\. -# /images/ads- (easylist.txt: 4173) -/(.*/)?images/ads- -# /images/adds/* (easylist.txt: 4172) -/(.*/)?images/adds/.* -# /images/ad2/* (easylist.txt: 4171) -/(.*/)?images/ad2/.* -# /images/ad/* (easylist.txt: 4170) -/(.*/)?images/ad/.* -# /images/ad- (easylist.txt: 4168) -/(.*/)?images/ad- -# /images.adv/* (easylist.txt: 4167) -/(.*/)?images\.adv/.* -images.adv/.* -# /images.ads. (easylist.txt: 4166) -/(.*/)?images\.ads\. -images.ads.*. -# /images-v2/ad_ (easylist.txt: 4165) -/(.*/)?images-v2/ad_ -# /images-ad/* (easylist.txt: 4164) -/(.*/)?images-ad/.* -# /imagecache_ads/* (easylist.txt: 4163) -/(.*/)?imagecache_ads/.* -# /imageads/* (easylist.txt: 4162) -/(.*/)?imageads/.* -# /image_ads/* (easylist.txt: 4161) -/(.*/)?image_ads/.* -# /image/affiliate/* (easylist.txt: 4160) -/(.*/)?image/affiliate/.* -# /image/adv/* (easylist.txt: 4159) -/(.*/)?image/adv/.* -# /image/ads_ (easylist.txt: 4158) -/(.*/)?image/ads_ -# /image/ads/* (easylist.txt: 4157) -/(.*/)?image/ads/.* -# /image/ad/* (easylist.txt: 4156) -/(.*/)?image/ad/.* -# /imads.js (easylist.txt: 4155) -/(.*/)?imads\.js -imads.js*. -# /imaads. (easylist.txt: 4154) -/(.*/)?imaads\. -imaads.*. -# /ima/ads_ (easylist.txt: 4153) -/(.*/)?ima/ads_ -# /im.cams. (easylist.txt: 4152) -/(.*/)?im\.cams\. -im.cams.*. -# /im-popup/* (easylist.txt: 4151) -/(.*/)?im-popup/.* -# /im-ad/im-rotator2. (easylist.txt: 4150) -/(.*/)?im-ad/im-rotator2\. -# /im-ad/im-rotator. (easylist.txt: 4149) -/(.*/)?im-ad/im-rotator\. -# /ilivid-ad- (easylist.txt: 4148) -/(.*/)?ilivid-ad- -ilivid-ad-*. -# /ignitecampaigns.com/* (easylist.txt: 4147) -/(.*/)?ignitecampaigns\.com/.* -ignitecampaigns.com/.* -# /ignite.partnerembed.js (easylist.txt: 4146) -/(.*/)?ignite\.partnerembed\.js -ignite.partnerembed.js*. -# /ifrm_ads/* (easylist.txt: 4145) -/(.*/)?ifrm_ads/.* -# /iframes/ad/* (easylist.txt: 4144) -/(.*/)?iframes/ad/.* -# /iframedartad. (easylist.txt: 4143) -/(.*/)?iframedartad\. -iframedartad.*. -# /iframeadsensewrapper. (easylist.txt: 4142) -/(.*/)?iframeadsensewrapper\. -iframeadsensewrapper.*. -# /iframeadsense. (easylist.txt: 4141) -/(.*/)?iframeadsense\. -iframeadsense.*. -# /iframeads/* (easylist.txt: 4140) -/(.*/)?iframeads/.* -# /iframeads. (easylist.txt: 4139) -/(.*/)?iframeads\. -iframeads.*. -# /iframeadcontent. (easylist.txt: 4138) -/(.*/)?iframeadcontent\. -iframeadcontent.*. -# /iframead_ (easylist.txt: 4137) -/(.*/)?iframead_ -# /iframead/* (easylist.txt: 4136) -/(.*/)?iframead/.* -# /iframead. (easylist.txt: 4135) -/(.*/)?iframead\. -iframead.*. -# /iframe_sponsor_ (easylist.txt: 4134) -/(.*/)?iframe_sponsor_ -# /iframe_chitika_ (easylist.txt: 4133) -/(.*/)?iframe_chitika_ -# /iframe_ads_ (easylist.txt: 4132) -/(.*/)?iframe_ads_ -# /iframe_ads/* (easylist.txt: 4131) -/(.*/)?iframe_ads/.* -# /iframe_ad_ (easylist.txt: 4130) -/(.*/)?iframe_ad_ -# /iframe_ad? (easylist.txt: 4129) -/(.*/)?iframe_ad\? -# /iframe_ad. (easylist.txt: 4128) -/(.*/)?iframe_ad\. -# /iframe/ads/* (easylist.txt: 4127) -/(.*/)?iframe/ads/.* -# /iframe/ad_ (easylist.txt: 4126) -/(.*/)?iframe/ad_ -# /iframe/ad/* (easylist.txt: 4125) -/(.*/)?iframe/ad/.* -# /iframe.ad/* (easylist.txt: 4124) -/(.*/)?iframe\.ad/.* -iframe.ad/.* -# /iframe-mgid- (easylist.txt: 4123) -/(.*/)?iframe-mgid- -iframe-mgid-*. -# /iframe-ads/* (easylist.txt: 4122) -/(.*/)?iframe-ads/.* -# /iframe-ad/* (easylist.txt: 4121) -/(.*/)?iframe-ad/.* -# /iframe-ad. (easylist.txt: 4120) -/(.*/)?iframe-ad\. -iframe-ad.*. -# /ifolder-ads. (easylist.txt: 4119) -/(.*/)?ifolder-ads\. -ifolder-ads.*. -# /idevaffiliate/banners/* (easylist.txt: 4118) -/(.*/)?idevaffiliate/banners/.* -# /icon_advertising_ (easylist.txt: 4117) -/(.*/)?icon_advertising_ -# /icon_ads_ (easylist.txt: 4116) -/(.*/)?icon_ads_ -# /icon_ad. (easylist.txt: 4115) -/(.*/)?icon_ad\. -# /IBNjspopunder. (easylist.txt: 4114) -/(.*/)?IBNjspopunder\. -IBNjspopunder.*. -# /iabadvertisingplugin.swf (easylist.txt: 4113) -/(.*/)?iabadvertisingplugin\.swf -iabadvertisingplugin.swf*. -# /ia/ads/* (easylist.txt: 4112) -/(.*/)?ia/ads/.* -# /i_ads. (easylist.txt: 4111) -/(.*/)?i_ads\. -# /i/adv/* (easylist.txt: 4110) -/(.*/)?i/adv/.* -# /i/ads/* (easylist.txt: 4109) -/(.*/)?i/ads/.* -# /hubxt.*/js/ht.js (easylist.txt: 4108) -/(.*/)?hubxt\..*/js/ht\.js -hubxt.*./(.*/)?js/ht\.js -# /hubxt.*/js/eht.js? (easylist.txt: 4107) -/(.*/)?hubxt\..*/js/eht\.js\? -hubxt.*./(.*/)?js/eht\.js\? -# /httpads/* (easylist.txt: 4106) -/(.*/)?httpads/.* -# /htmlads/* (easylist.txt: 4105) -/(.*/)?htmlads/.* -# /html/sponsors/* (easylist.txt: 4104) -/(.*/)?html/sponsors/.* -# /html/ads_ (easylist.txt: 4103) -/(.*/)?html/ads_ -# /html/ads/* (easylist.txt: 4102) -/(.*/)?html/ads/.* -# /html/ad/* (easylist.txt: 4101) -/(.*/)?html/ad/.* -# /html/ad. (easylist.txt: 4100) -/(.*/)?html/ad\. -# /html.ng/* (easylist.txt: 4099) -/(.*/)?html\.ng/.* -html.ng/.* -# /ht.js?site_ (easylist.txt: 4098) -/(.*/)?ht\.js\?site_ -# /hpcwire/ads/* (easylist.txt: 4097) -/(.*/)?hpcwire/ads/.* -# /hoverad. (easylist.txt: 4096) -/(.*/)?hoverad\. -hoverad.*. -# /houseads? (easylist.txt: 4095) -/(.*/)?houseads\? -# /houseads/* (easylist.txt: 4094) -/(.*/)?houseads/.* -# /houseads. (easylist.txt: 4093) -/(.*/)?houseads\. -houseads.*. -# /housead_ (easylist.txt: 4092) -/(.*/)?housead_ -# /housead/* (easylist.txt: 4091) -/(.*/)?housead/.* -# /housead. (easylist.txt: 4090) -/(.*/)?housead\. -housead.*. -# /house_ads/* (easylist.txt: 4089) -/(.*/)?house_ads/.* -# /house_ad_ (easylist.txt: 4088) -/(.*/)?house_ad_ -# /house_ad- (easylist.txt: 4087) -/(.*/)?house_ad- -# /house-ads/* (easylist.txt: 4086) -/(.*/)?house-ads/.* -# /house-ad/* (easylist.txt: 4085) -/(.*/)?house-ad/.* -# /house-ad. (easylist.txt: 4084) -/(.*/)?house-ad\. -house-ad.*. -# /hostkey-ad. (easylist.txt: 4083) -/(.*/)?hostkey-ad\. -hostkey-ad.*. -# /hosting/ads/* (easylist.txt: 4082) -/(.*/)?hosting/ads/.* -# /hostgator-ad. (easylist.txt: 4081) -/(.*/)?hostgator-ad\. -hostgator-ad.*. -# /hostedbannerads. (easylist.txt: 4080) -/(.*/)?hostedbannerads\. -hostedbannerads.*. -# /hostedads. (easylist.txt: 4079) -/(.*/)?hostedads\. -hostedads.*. -# /horizontalAd. (easylist.txt: 4078) -/(.*/)?horizontalAd\. -horizontalAd.*. -# /horizontal_advert_ (easylist.txt: 4077) -/(.*/)?horizontal_advert_ -# /HompageStickyAd. (easylist.txt: 4076) -/(.*/)?HompageStickyAd\. -HompageStickyAd.*. -# /HomeStaticAds/* (easylist.txt: 4075) -/(.*/)?HomeStaticAds/.* -# /homeslideadtop/* (easylist.txt: 4074) -/(.*/)?homeslideadtop/.* -# /homepageadvertright. (easylist.txt: 4073) -/(.*/)?homepageadvertright\. -homepageadvertright.*. -# /homepage_ad_ (easylist.txt: 4071) -/(.*/)?homepage_ad_ -# /homepage/ads/* (easylist.txt: 4070) -/(.*/)?homepage/ads/.* -# /homepage-ads/* (easylist.txt: 4069) -/(.*/)?homepage-ads/.* -# /homeoutside/ads/* (easylist.txt: 4068) -/(.*/)?homeoutside/ads/.* -# /home_adv. (easylist.txt: 4067) -/(.*/)?home_adv\. -# /home30/ad. (easylist.txt: 4066) -/(.*/)?home30/ad\. -# /home/sponsor_ (easylist.txt: 4065) -/(.*/)?home/sponsor_ -# /home/ads_ (easylist.txt: 4064) -/(.*/)?home/ads_ -# /home/ads/* (easylist.txt: 4063) -/(.*/)?home/ads/.* -# /home/ads- (easylist.txt: 4062) -/(.*/)?home/ads- -# /home/ad_ (easylist.txt: 4061) -/(.*/)?home/ad_ -# /home/_ads (easylist.txt: 4060) -/(.*/)?home/_ads -# /holl_ad. (easylist.txt: 4059) -/(.*/)?holl_ad\. -# /hitbar_ad_ (easylist.txt: 4058) -/(.*/)?hitbar_ad_ -# /hikaku/banner/* (easylist.txt: 4057) -/(.*/)?hikaku/banner/.* -# /hiadone_ (easylist.txt: 4056) -/(.*/)?hiadone_ -# /Heat_Ad. (easylist.txt: 4055) -/(.*/)?Heat_Ad\. -# /headvert. (easylist.txt: 4054) -/(.*/)?headvert\. -headvert.*. -# /headermktgpromoads. (easylist.txt: 4053) -/(.*/)?headermktgpromoads\. -headermktgpromoads.*. -# /headerAdvertismentTab. (easylist.txt: 4052) -/(.*/)?headerAdvertismentTab\. -headerAdvertismentTab.*. -# /headerads1. (easylist.txt: 4051) -/(.*/)?headerads1\. -headerads1.*. -# /headerads. (easylist.txt: 4050) -/(.*/)?headerads\. -headerads.*. -# /headeradd2. (easylist.txt: 4049) -/(.*/)?headeradd2\. -headeradd2.*. -# /headerad. (easylist.txt: 4048) -/(.*/)?headerad\. -headerad.*. -# /header_ads_ (easylist.txt: 4047) -/(.*/)?header_ads_ -# /header_ad_ (easylist.txt: 4046) -/(.*/)?header_ad_ -# /header-ad. (easylist.txt: 4045) -/(.*/)?header-ad\. -header-ad.*. -# /hdadvertisment- (easylist.txt: 4044) -/(.*/)?hdadvertisment- -hdadvertisment-*. -# /hcm_ads/* (easylist.txt: 4043) -/(.*/)?hcm_ads/.* -# /Handlers/Ads. (easylist.txt: 4042) -/(.*/)?Handlers/Ads\. -# /hads- (easylist.txt: 4041) -/(.*/)?hads- -hads-*. -# /gutterAd. (easylist.txt: 4040) -/(.*/)?gutterAd\. -gutterAd.*. -# /GujAd/* (easylist.txt: 4039) -/(.*/)?GujAd/.* -# /gujAd. (easylist.txt: 4038) -/(.*/)?gujAd\. -gujAd.*. -# /guardrailad_ (easylist.txt: 4037) -/(.*/)?guardrailad_ -# /guardianleader. (easylist.txt: 4036) -/(.*/)?guardianleader\. -guardianleader.*. -# /gtv_ads. (easylist.txt: 4035) -/(.*/)?gtv_ads\. -# /gtags/pin_tag. (easylist.txt: 4034) -/(.*/)?gtags/pin_tag\. -# /gt6skyadtop. (easylist.txt: 4033) -/(.*/)?gt6skyadtop\. -gt6skyadtop.*. -# /groupon/ads/* (easylist.txt: 4032) -/(.*/)?groupon/ads/.* -# /grid-ad. (easylist.txt: 4031) -/(.*/)?grid-ad\. -grid-ad.*. -# /graphics/ads/* (easylist.txt: 4030) -/(.*/)?graphics/ads/.* -# /graphics/ad_ (easylist.txt: 4029) -/(.*/)?graphics/ad_ -# /gpt_ads- (easylist.txt: 4028) -/(.*/)?gpt_ads- -# /googlempu. (easylist.txt: 4027) -/(.*/)?googlempu\. -googlempu.*. -# /googleleads. (easylist.txt: 4026) -/(.*/)?googleleads\. -googleleads.*. -# /googleleader. (easylist.txt: 4025) -/(.*/)?googleleader\. -googleleader.*. -# /googleheadad. (easylist.txt: 4024) -/(.*/)?googleheadad\. -googleheadad.*. -# /googlecontextualads. (easylist.txt: 4023) -/(.*/)?googlecontextualads\. -googlecontextualads.*. -# /googleafvadrenderer. (easylist.txt: 4022) -/(.*/)?googleafvadrenderer\. -googleafvadrenderer.*. -# /googleafs. (easylist.txt: 4021) -/(.*/)?googleafs\. -googleafs.*. -# /googleafc. (easylist.txt: 4020) -/(.*/)?googleafc\. -googleafc.*. -# /googleadunit? (easylist.txt: 4019) -/(.*/)?googleadunit\? -# /googleAdTaggingSubSec. (easylist.txt: 4018) -/(.*/)?googleAdTaggingSubSec\. -googleAdTaggingSubSec.*. -# /googleadsense. (easylist.txt: 4017) -/(.*/)?googleadsense\. -googleadsense.*. -# /googleAdScripts. (easylist.txt: 4016) -/(.*/)?googleAdScripts\. -googleAdScripts.*. -# /googleadsafs_ (easylist.txt: 4015) -/(.*/)?googleadsafs_ -# /googleadsafc_ (easylist.txt: 4014) -/(.*/)?googleadsafc_ -# /googleads_ (easylist.txt: 4013) -/(.*/)?googleads_ -# /googleads3widetext. (easylist.txt: 4012) -/(.*/)?googleads3widetext\. -googleads3widetext.*. -# /googleads2. (easylist.txt: 4011) -/(.*/)?googleads2\. -googleads2.*. -# /googleads1. (easylist.txt: 4010) -/(.*/)?googleads1\. -googleads1.*. -# /googleads/* (easylist.txt: 4009) -/(.*/)?googleads/.* -# /googleads. (easylist.txt: 4008) -/(.*/)?googleads\. -googleads.*. -# /googleads- (easylist.txt: 4007) -/(.*/)?googleads- -googleads-*. -# /googleadright. (easylist.txt: 4006) -/(.*/)?googleadright\. -googleadright.*. -# /googleadiframe_ (easylist.txt: 4005) -/(.*/)?googleadiframe_ -# /googleadhtml/* (easylist.txt: 4004) -/(.*/)?googleadhtml/.* -# /googleadhpbot. (easylist.txt: 4003) -/(.*/)?googleadhpbot\. -googleadhpbot.*. -# /googleadhp. (easylist.txt: 4002) -/(.*/)?googleadhp\. -googleadhp.*. -# /googleaddisplayframe. (easylist.txt: 4001) -/(.*/)?googleaddisplayframe\. -googleaddisplayframe.*. -# /googleaddfooter. (easylist.txt: 4000) -/(.*/)?googleaddfooter\. -googleaddfooter.*. -# /googleadcode. (easylist.txt: 3999) -/(.*/)?googleadcode\. -googleadcode.*. -# /GoogleAdBg. (easylist.txt: 3998) -/(.*/)?GoogleAdBg\. -GoogleAdBg.*. -# /googlead_ (easylist.txt: 3997) -/(.*/)?googlead_ -# /googlead336x280. (easylist.txt: 3996) -/(.*/)?googlead336x280\. -googlead336x280.*. -# /GoogleAd300. (easylist.txt: 3995) -/(.*/)?GoogleAd300\. -GoogleAd300.*. -# /googlead160. (easylist.txt: 3994) -/(.*/)?googlead160\. -googlead160.*. -# /googlead1. (easylist.txt: 3993) -/(.*/)?googlead1\. -googlead1.*. -# /googlead. (easylist.txt: 3992) -/(.*/)?googlead\. -googlead.*. -# /googlead- (easylist.txt: 3991) -/(.*/)?googlead- -googlead-*. -# /google_radlinks_ (easylist.txt: 3990) -/(.*/)?google_radlinks_ -# /google_lander2.js (easylist.txt: 3989) -/(.*/)?google_lander2\.js -# /google_caf.js? (easylist.txt: 3988) -/(.*/)?google_caf\.js\? -# /google_afs_widget/* (easylist.txt: 3987) -/(.*/)?google_afs_widget/.* -# /google_afs. (easylist.txt: 3986) -/(.*/)?google_afs\. -# /google_afc_ (easylist.txt: 3985) -/(.*/)?google_afc_ -# /google_afc. (easylist.txt: 3984) -/(.*/)?google_afc\. -# /google_adv/* (easylist.txt: 3983) -/(.*/)?google_adv/.* -# /google_ads_ (easylist.txt: 3982) -/(.*/)?google_ads_ -# /google_ads/* (easylist.txt: 3981) -/(.*/)?google_ads/.* -# /google_ads. (easylist.txt: 3980) -/(.*/)?google_ads\. -# /google_ad_ (easylist.txt: 3979) -/(.*/)?google_ad_ -# /google_ad. (easylist.txt: 3978) -/(.*/)?google_ad\. -# /google728. (easylist.txt: 3977) -/(.*/)?google728\. -google728.*. -# /google160. (easylist.txt: 3976) -/(.*/)?google160\. -google160.*. -# /google/adv. (easylist.txt: 3975) -/(.*/)?google/adv\. -# /google/ad? (easylist.txt: 3974) -/(.*/)?google/ad\? -# /google-afc. (easylist.txt: 3973) -/(.*/)?google-afc\. -google-afc.*. -# /google-afc- (easylist.txt: 3972) -/(.*/)?google-afc- -google-afc-*. -# /google-adwords (easylist.txt: 3971) -/(.*/)?google-adwords -google-adwords*. -# /google-adverts- (easylist.txt: 3970) -/(.*/)?google-adverts- -google-adverts-*. -# /google-adsense. (easylist.txt: 3969) -/(.*/)?google-adsense\. -google-adsense.*. -# /google-adsense- (easylist.txt: 3968) -/(.*/)?google-adsense- -google-adsense-*. -# /google-ads/* (easylist.txt: 3967) -/(.*/)?google-ads/.* -# /google-ads. (easylist.txt: 3966) -/(.*/)?google-ads\. -google-ads.*. -# /google-ad? (easylist.txt: 3965) -/(.*/)?google-ad\? -# /google-ad- (easylist.txt: 3964) -/(.*/)?google-ad- -google-ad-*. -# /googad300by600. (easylist.txt: 3963) -/(.*/)?googad300by600\. -googad300by600.*. -# /globalbannerad. (easylist.txt: 3962) -/(.*/)?globalbannerad\. -globalbannerad.*. -# /globaladprostyles. (easylist.txt: 3961) -/(.*/)?globaladprostyles\. -globaladprostyles.*. -# /globalad. (easylist.txt: 3960) -/(.*/)?globalad\. -globalad.*. -# /global/ads/* (easylist.txt: 3959) -/(.*/)?global/ads/.* -# /global/ads. (easylist.txt: 3958) -/(.*/)?global/ads\. -# /global/ad/* (easylist.txt: 3957) -/(.*/)?global/ad/.* -# /global-ads_ (easylist.txt: 3956) -/(.*/)?global-ads_ -# /glam_ads. (easylist.txt: 3955) -/(.*/)?glam_ads\. -# /glam728. (easylist.txt: 3954) -/(.*/)?glam728\. -glam728.*. -# /glam300. (easylist.txt: 3953) -/(.*/)?glam300\. -glam300.*. -# /glam160. (easylist.txt: 3952) -/(.*/)?glam160\. -glam160.*. -# /gifs/ads/* (easylist.txt: 3951) -/(.*/)?gifs/ads/.* -# /ggadsense. (easylist.txt: 3950) -/(.*/)?ggadsense\. -ggadsense.*. -# /gfx/ads/* (easylist.txt: 3949) -/(.*/)?gfx/ads/.* -# /gfx/ad/* (easylist.txt: 3948) -/(.*/)?gfx/ad/.* -# /gexternalad. (easylist.txt: 3947) -/(.*/)?gexternalad\. -gexternalad.*. -# /getwebsitead/* (easylist.txt: 3946) -/(.*/)?getwebsitead/.* -# /getvideoad. (easylist.txt: 3945) -/(.*/)?getvideoad\. -getvideoad.*. -# /getvdopiaads. (easylist.txt: 3944) -/(.*/)?getvdopiaads\. -getvdopiaads.*. -# /GetVASTAd? (easylist.txt: 3943) -/(.*/)?GetVASTAd\? -# /getTextAD. (easylist.txt: 3942) -/(.*/)?getTextAD\. -getTextAD.*. -# /getsponslinksauto. (easylist.txt: 3941) -/(.*/)?getsponslinksauto\. -getsponslinksauto.*. -# /getsponslinks. (easylist.txt: 3940) -/(.*/)?getsponslinks\. -getsponslinks.*. -# /getsad.php? (easylist.txt: 3939) -/(.*/)?getsad\.php\? -# /getrcmd.js? (easylist.txt: 3938) -/(.*/)?getrcmd\.js\? -# /getmyad/* (easylist.txt: 3937) -/(.*/)?getmyad/.* -# /getmdhlink. (easylist.txt: 3936) -/(.*/)?getmdhlink\. -getmdhlink.*. -# /getmdhlayer. (easylist.txt: 3935) -/(.*/)?getmdhlayer\. -getmdhlayer.*. -# /getmarketplaceads. (easylist.txt: 3934) -/(.*/)?getmarketplaceads\. -getmarketplaceads.*. -# /getJsonAds? (easylist.txt: 3933) -/(.*/)?getJsonAds\? -# /getinlineads/* (easylist.txt: 3932) -/(.*/)?getinlineads/.* -# /gethalfpagead. (easylist.txt: 3931) -/(.*/)?gethalfpagead\. -gethalfpagead.*. -# /getfeaturedadsforshow. (easylist.txt: 3930) -/(.*/)?getfeaturedadsforshow\. -getfeaturedadsforshow.*. -# /getdigitalad/* (easylist.txt: 3929) -/(.*/)?getdigitalad/.* -# /getbanner.php? (easylist.txt: 3928) -/(.*/)?getbanner\.php\? -# /getbanner.cfm? (easylist.txt: 3927) -/(.*/)?getbanner\.cfm\? -# /getban.php? (easylist.txt: 3926) -/(.*/)?getban\.php\? -# /getarticleadvertimageservlet? (easylist.txt: 3925) -/(.*/)?getarticleadvertimageservlet\? -# /GetADVOverlay. (easylist.txt: 3924) -/(.*/)?GetADVOverlay\. -GetADVOverlay.*. -# /getadverts? (easylist.txt: 3923) -/(.*/)?getadverts\? -# /getadvertiserimage. (easylist.txt: 3922) -/(.*/)?getadvertiserimage\. -getadvertiserimage.*. -# /getAdvertisement^ (easylist.txt: 3921) -/(.*/)?getAdvertisement[^\w%.-] -# /getadvertimageservlet? (easylist.txt: 3920) -/(.*/)?getadvertimageservlet\? -# /getads| (easylist.txt: 3919) -/(.*/)?getads$ -# /getAdsForClient? (easylist.txt: 3918) -/(.*/)?getAdsForClient\? -# /getadsettingsjs? (easylist.txt: 3917) -/(.*/)?getadsettingsjs\? -# /getadserver. (easylist.txt: 3916) -/(.*/)?getadserver\. -getadserver.*. -# /getads? (easylist.txt: 3915) -/(.*/)?getads\? -# /getads/* (easylist.txt: 3914) -/(.*/)?getads/.* -# /getads. (easylist.txt: 3913) -/(.*/)?getads\. -getads.*. -# /getads- (easylist.txt: 3912) -/(.*/)?getads- -getads-*. -# /getadframe. (easylist.txt: 3911) -/(.*/)?getadframe\. -getadframe.*. -# /GetAdForCallBack? (easylist.txt: 3910) -/(.*/)?GetAdForCallBack\? -# /getadds. (easylist.txt: 3909) -/(.*/)?getadds\. -getadds.*. -# /getadcontent. (easylist.txt: 3908) -/(.*/)?getadcontent\. -getadcontent.*. -# /getad? (easylist.txt: 3907) -/(.*/)?getad\? -# /getad/* (easylist.txt: 3906) -/(.*/)?getad/.* -# /getad. (easylist.txt: 3905) -/(.*/)?getad\. -getad.*. -# /get_banner.asp? (easylist.txt: 3904) -/(.*/)?get_banner\.asp\? -# /get_ads/* (easylist.txt: 3903) -/(.*/)?get_ads/.* -# /get_ads. (easylist.txt: 3902) -/(.*/)?get_ads\. -# /get_ad_ (easylist.txt: 3901) -/(.*/)?get_ad_ -# /get/ad? (easylist.txt: 3900) -/(.*/)?get/ad\? -# /get/ad/* (easylist.txt: 3899) -/(.*/)?get/ad/.* -# /get/ad. (easylist.txt: 3898) -/(.*/)?get/ad\. -# /get.ad? (easylist.txt: 3897) -/(.*/)?get\.ad\? -# /get-advert- (easylist.txt: 3895) -/(.*/)?get-advert- -get-advert-*. -# /get-ad. (easylist.txt: 3894) -/(.*/)?get-ad\. -get-ad.*. -# /ges_ads/* (easylist.txt: 3893) -/(.*/)?ges_ads/.* -# /GeoDynBanner.php?wmid= (easylist.txt: 3892) -/(.*/)?GeoDynBanner\.php\?wmid= -# /geobox.html (easylist.txt: 3891) -/(.*/)?geobox\.html -geobox.html*. -# /geoad/* (easylist.txt: 3890) -/(.*/)?geoad/.* -# /geo_banner.htm? (easylist.txt: 3889) -/(.*/)?geo_banner\.htm\? -# /geo/ads. (easylist.txt: 3888) -/(.*/)?geo/ads\. -# /geo-ads_ (easylist.txt: 3887) -/(.*/)?geo-ads_ -# /genericrichmediabannerad/* (easylist.txt: 3886) -/(.*/)?genericrichmediabannerad/.* -# /generic.ads. (easylist.txt: 3885) -/(.*/)?generic\.ads\. -generic.ads.*. -# /generateplayerads. (easylist.txt: 3884) -/(.*/)?generateplayerads\. -generateplayerads.*. -# /generated/key.js? (easylist.txt: 3883) -/(.*/)?generated/key\.js\? -# /generateadtag. (easylist.txt: 3882) -/(.*/)?generateadtag\. -generateadtag.*. -# /generate_ads. (easylist.txt: 3881) -/(.*/)?generate_ads\. -# /generate_ad. (easylist.txt: 3880) -/(.*/)?generate_ad\. -# /general/ads (easylist.txt: 3879) -/(.*/)?general/ads -# /general-ad- (easylist.txt: 3878) -/(.*/)?general-ad- -general-ad-*. -# /genads/* (easylist.txt: 3877) -/(.*/)?genads/.* -# /gen_ads_ (easylist.txt: 3876) -/(.*/)?gen_ads_ -# /geitonpop. (easylist.txt: 3875) -/(.*/)?geitonpop\. -geitonpop.*. -# /gazette/ads/* (easylist.txt: 3874) -/(.*/)?gazette/ads/.* -# /gatewayAds. (easylist.txt: 3873) -/(.*/)?gatewayAds\. -gatewayAds.*. -# /gate-ad- (easylist.txt: 3872) -/(.*/)?gate-ad- -gate-ad-*. -# /gannett/ads/* (easylist.txt: 3871) -/(.*/)?gannett/ads/.* -# /GAN_Ads/* (easylist.txt: 3870) -/(.*/)?GAN_Ads/.* -# /gamersad. (easylist.txt: 3869) -/(.*/)?gamersad\. -gamersad.*. -# /gameadsync. (easylist.txt: 3868) -/(.*/)?gameadsync\. -gameadsync.*. -# /gamead/* (easylist.txt: 3867) -/(.*/)?gamead/.* -# /game-ads. (easylist.txt: 3866) -/(.*/)?game-ads\. -game-ads.*. -# /gamads/* (easylist.txt: 3865) -/(.*/)?gamads/.* -# /gam_ads. (easylist.txt: 3864) -/(.*/)?gam_ads\. -# /gam_ad_ (easylist.txt: 3863) -/(.*/)?gam_ad_ -# /gam_ad. (easylist.txt: 3862) -/(.*/)?gam_ad\. -# /gam.html? (easylist.txt: 3861) -/(.*/)?gam\.html\? -# /galleryad. (easylist.txt: 3860) -/(.*/)?galleryad\. -galleryad.*. -# /gafv_adapter. (easylist.txt: 3859) -/(.*/)?gafv_adapter\. -# /gafsads? (easylist.txt: 3858) -/(.*/)?gafsads\? -# /gafc.js (easylist.txt: 3857) -/(.*/)?gafc\.js -gafc.js*. -# /gads.js (easylist.txt: 3856) -/(.*/)?gads\.js -gads.js*. -# /gads.html (easylist.txt: 3855) -/(.*/)?gads\.html -gads.html*. -# /gadgets/ad/* (easylist.txt: 3854) -/(.*/)?gadgets/ad/.* -# /fwadmanager. (easylist.txt: 3853) -/(.*/)?fwadmanager\. -fwadmanager.*. -# /fuseads/* (easylist.txt: 3852) -/(.*/)?fuseads/.* -# /fulladbazee. (easylist.txt: 3851) -/(.*/)?fulladbazee\. -fulladbazee.*. -# /fullad. (easylist.txt: 3850) -/(.*/)?fullad\. -fullad.*. -# /full/ads/* (easylist.txt: 3849) -/(.*/)?full/ads/.* -# /ftp/adv/* (easylist.txt: 3848) -/(.*/)?ftp/adv/.* -# /frontpagead/* (easylist.txt: 3847) -/(.*/)?frontpagead/.* -# /frontend/ads/* (easylist.txt: 3846) -/(.*/)?frontend/ads/.* -# /frnads. (easylist.txt: 3845) -/(.*/)?frnads\. -frnads.*. -# /friendfinder_ (easylist.txt: 3844) -/(.*/)?friendfinder_ -# /frequencyads. (easylist.txt: 3843) -/(.*/)?frequencyads\. -frequencyads.*. -# /freead2. (easylist.txt: 3842) -/(.*/)?freead2\. -freead2.*. -# /freead. (easylist.txt: 3841) -/(.*/)?freead\. -freead.*. -# /frameadsz. (easylist.txt: 3840) -/(.*/)?frameadsz\. -frameadsz.*. -# /frameads_ (easylist.txt: 3839) -/(.*/)?frameads_ -# /frameads1. (easylist.txt: 3838) -/(.*/)?frameads1\. -frameads1.*. -# /frameads. (easylist.txt: 3837) -/(.*/)?frameads\. -frameads.*. -# /framead_ (easylist.txt: 3836) -/(.*/)?framead_ -# /framead/* (easylist.txt: 3835) -/(.*/)?framead/.* -# /framead. (easylist.txt: 3834) -/(.*/)?framead\. -framead.*. -# /framead- (easylist.txt: 3833) -/(.*/)?framead- -framead-*. -# /frame_ads_ (easylist.txt: 3832) -/(.*/)?frame_ads_ -# /forums/ad/* (easylist.txt: 3831) -/(.*/)?forums/ad/.* -# /forum/ads/* (easylist.txt: 3830) -/(.*/)?forum/ads/.* -# /forads. (easylist.txt: 3829) -/(.*/)?forads\. -forads.*. -# /footertextads. (easylist.txt: 3828) -/(.*/)?footertextads\. -footertextads.*. -# /footerads/* (easylist.txt: 3827) -/(.*/)?footerads/.* -# /footerads. (easylist.txt: 3826) -/(.*/)?footerads\. -footerads.*. -# /footerad? (easylist.txt: 3825) -/(.*/)?footerad\? -# /footerad. (easylist.txt: 3824) -/(.*/)?footerad\. -footerad.*. -# /footer_ads. (easylist.txt: 3823) -/(.*/)?footer_ads\. -# /footer_ad_ (easylist.txt: 3822) -/(.*/)?footer_ad_ -# /footer_ad. (easylist.txt: 3821) -/(.*/)?footer_ad\. -# /footer-ads/* (easylist.txt: 3820) -/(.*/)?footer-ads/.* -# /footer-ad. (easylist.txt: 3819) -/(.*/)?footer-ad\. -footer-ad.*. -# /footer-ad- (easylist.txt: 3818) -/(.*/)?footer-ad- -footer-ad-*. -# /footad. (easylist.txt: 3817) -/(.*/)?footad\. -footad.*. -# /footad- (easylist.txt: 3816) -/(.*/)?footad- -footad-*. -# /fn_ads. (easylist.txt: 3815) -/(.*/)?fn_ads\. -# /flyers/ads/* (easylist.txt: 3814) -/(.*/)?flyers/ads/.* -# /flyads/* (easylist.txt: 3813) -/(.*/)?flyads/.* -# /flyad/* (easylist.txt: 3812) -/(.*/)?flyad/.* -# /flyad. (easylist.txt: 3811) -/(.*/)?flyad\. -flyad.*. -# /flvads/* (easylist.txt: 3810) -/(.*/)?flvads/.* -# /flvad_ (easylist.txt: 3809) -/(.*/)?flvad_ -# /flv-ad- (easylist.txt: 3808) -/(.*/)?flv-ad- -flv-ad-*. -# /floaty_rotator (easylist.txt: 3807) -/(.*/)?floaty_rotator -# /floatingads. (easylist.txt: 3806) -/(.*/)?floatingads\. -floatingads.*. -# /FloatingAd_ (easylist.txt: 3805) -/(.*/)?FloatingAd_ -# /floatingad. (easylist.txt: 3804) -/(.*/)?floatingad\. -floatingad.*. -# /floater_ad. (easylist.txt: 3803) -/(.*/)?floater_ad\. -# /floatadv. (easylist.txt: 3802) -/(.*/)?floatadv\. -floatadv.*. -# /floatads. (easylist.txt: 3801) -/(.*/)?floatads\. -floatads.*. -# /floatad_ (easylist.txt: 3800) -/(.*/)?floatad_ -# /float_ad. (easylist.txt: 3799) -/(.*/)?float_ad\. -# /float-ads/* (easylist.txt: 3798) -/(.*/)?float-ads/.* -# /flirt4free. (easylist.txt: 3797) -/(.*/)?flirt4free\. -flirt4free.*. -# /fliionosadcapture- (easylist.txt: 3796) -/(.*/)?fliionosadcapture- -fliionosadcapture-*. -# /flexads? (easylist.txt: 3795) -/(.*/)?flexads\? -# /fleshlightcash_ (easylist.txt: 3794) -/(.*/)?fleshlightcash_ -# /fleshlight. (easylist.txt: 3793) -/(.*/)?fleshlight\. -fleshlight.*. -# /flesh_banner (easylist.txt: 3792) -/(.*/)?flesh_banner -# /flatad. (easylist.txt: 3791) -/(.*/)?flatad\. -flatad.*. -# /flashpeelads/* (easylist.txt: 3790) -/(.*/)?flashpeelads/.* -# /flashads/* (easylist.txt: 3789) -/(.*/)?flashads/.* -# /flashads. (easylist.txt: 3788) -/(.*/)?flashads\. -flashads.*. -# /flashad3. (easylist.txt: 3787) -/(.*/)?flashad3\. -flashad3.*. -# /flashad. (easylist.txt: 3786) -/(.*/)?flashad\. -flashad.*. -# /flash_ads. (easylist.txt: 3785) -/(.*/)?flash_ads\. -# /flash/advertis (easylist.txt: 3784) -/(.*/)?flash/advertis -# /flash/ads/* (easylist.txt: 3783) -/(.*/)?flash/ads/.* -# /flash/ad_ (easylist.txt: 3782) -/(.*/)?flash/ad_ -# /flash/ad/* (easylist.txt: 3781) -/(.*/)?flash/ad/.* -# /flash-ads/* (easylist.txt: 3780) -/(.*/)?flash-ads/.* -# /flash-ads. (easylist.txt: 3779) -/(.*/)?flash-ads\. -flash-ads.*. -# /flag_ads. (easylist.txt: 3778) -/(.*/)?flag_ads\. -# /first-ad_ (easylist.txt: 3777) -/(.*/)?first-ad_ -# /finads. (easylist.txt: 3776) -/(.*/)?finads\. -finads.*. -# /fimserve. (easylist.txt: 3775) -/(.*/)?fimserve\. -fimserve.*. -# /files/ads/* (easylist.txt: 3773) -/(.*/)?files/ads/.* -# /files/ads- (easylist.txt: 3772) -/(.*/)?files/ads- -# /files/ad/* (easylist.txt: 3771) -/(.*/)?files/ad/.* -# /files/ad- (easylist.txt: 3770) -/(.*/)?files/ad- -# /file/ad. (easylist.txt: 3769) -/(.*/)?file/ad\. -# /feedads. (easylist.txt: 3768) -/(.*/)?feedads\. -feedads.*. -# /featuredadshome. (easylist.txt: 3767) -/(.*/)?featuredadshome\. -featuredadshome.*. -# /fea_ads. (easylist.txt: 3766) -/(.*/)?fea_ads\. -# /fc_ads. (easylist.txt: 3765) -/(.*/)?fc_ads\. -# /fbads/* (easylist.txt: 3764) -/(.*/)?fbads/.* -# /fatads. (easylist.txt: 3763) -/(.*/)?fatads\. -fatads.*. -# /fastclick728. (easylist.txt: 3762) -/(.*/)?fastclick728\. -fastclick728.*. -# /fastclick160. (easylist.txt: 3761) -/(.*/)?fastclick160\. -fastclick160.*. -# /facebooksex. (easylist.txt: 3759) -/(.*/)?facebooksex\. -facebooksex.*. -# /facebookaff2/* (easylist.txt: 3758) -/(.*/)?facebookaff2/.* -# /facebookaff/* (easylist.txt: 3757) -/(.*/)?facebookaff/.* -# /eyewondermanagement28. (easylist.txt: 3756) -/(.*/)?eyewondermanagement28\. -eyewondermanagement28.*. -# /eyewondermanagement. (easylist.txt: 3755) -/(.*/)?eyewondermanagement\. -eyewondermanagement.*. -# /externalhtmladrenderer. (easylist.txt: 3754) -/(.*/)?externalhtmladrenderer\. -externalhtmladrenderer.*. -# /externalads/* (easylist.txt: 3753) -/(.*/)?externalads/.* -# /ExternalAdNetworkViewlogLogServlet? (easylist.txt: 3752) -/(.*/)?ExternalAdNetworkViewlogLogServlet\? -# /externalad. (easylist.txt: 3751) -/(.*/)?externalad\. -externalad.*. -# /external_ads. (easylist.txt: 3750) -/(.*/)?external_ads\. -# /external/ads/* (easylist.txt: 3749) -/(.*/)?external/ads/.* -# /external/ad/* (easylist.txt: 3748) -/(.*/)?external/ad/.* -# /external/ad. (easylist.txt: 3747) -/(.*/)?external/ad\. -# /extendedadvert. (easylist.txt: 3746) -/(.*/)?extendedadvert\. -extendedadvert.*. -# /extadv/* (easylist.txt: 3745) -/(.*/)?extadv/.* -# /ext_ads. (easylist.txt: 3744) -/(.*/)?ext_ads\. -# /ext/ads/* (easylist.txt: 3743) -/(.*/)?ext/ads/.* -# /exports/tour_20/* (easylist.txt: 3742) -/(.*/)?exports/tour_20/.* -# /expop.js (easylist.txt: 3740) -/(.*/)?expop\.js -expop.js*. -# /expandy-ads. (easylist.txt: 3739) -/(.*/)?expandy-ads\. -expandy-ads.*. -# /expandingads. (easylist.txt: 3738) -/(.*/)?expandingads\. -expandingads.*. -# /expandable_ad? (easylist.txt: 3737) -/(.*/)?expandable_ad\? -# /expandable_ad.php (easylist.txt: 3736) -/(.*/)?expandable_ad\.php -# /exoclickright3. (easylist.txt: 3735) -/(.*/)?exoclickright3\. -exoclickright3.*. -# /exoclickright2. (easylist.txt: 3734) -/(.*/)?exoclickright2\. -exoclickright2.*. -# /exoclickright1. (easylist.txt: 3733) -/(.*/)?exoclickright1\. -exoclickright1.*. -# /exoclickright. (easylist.txt: 3732) -/(.*/)?exoclickright\. -exoclickright.*. -# /exoclick. (easylist.txt: 3731) -/(.*/)?exoclick\. -exoclick.*. -# /exobanner. (easylist.txt: 3730) -/(.*/)?exobanner\. -exobanner.*. -# /exo120x60. (easylist.txt: 3729) -/(.*/)?exo120x60\. -exo120x60.*. -# /exitsplash. (easylist.txt: 3728) -/(.*/)?exitsplash\. -exitsplash.*. -# /exitpopup. (easylist.txt: 3727) -/(.*/)?exitpopup\. -exitpopup.*. -# /exitpopunder_ (easylist.txt: 3726) -/(.*/)?exitpopunder_ -# /exitpopunder. (easylist.txt: 3725) -/(.*/)?exitpopunder\. -exitpopunder.*. -# /exitpop. (easylist.txt: 3724) -/(.*/)?exitpop\. -exitpop.*. -# /exit_popup (easylist.txt: 3723) -/(.*/)?exit_popup -# /exchange_banner_ (easylist.txt: 3722) -/(.*/)?exchange_banner_ -# /excellence/ads/* (easylist.txt: 3721) -/(.*/)?excellence/ads/.* -# /event.ng/* (easylist.txt: 3720) -/(.*/)?event\.ng/.* -event.ng/.* -# /euads/* (easylist.txt: 3719) -/(.*/)?euads/.* -# /esi/ads/* (easylist.txt: 3717) -/(.*/)?esi/ads/.* -# /eshopoffer. (easylist.txt: 3716) -/(.*/)?eshopoffer\. -eshopoffer.*. -# /eros.htm (easylist.txt: 3715) -/(.*/)?eros\.htm -eros.htm*. -# /erobanner. (easylist.txt: 3714) -/(.*/)?erobanner\. -erobanner.*. -# /eroadvertorial3. (easylist.txt: 3713) -/(.*/)?eroadvertorial3\. -eroadvertorial3.*. -# /eroadvertorial2. (easylist.txt: 3712) -/(.*/)?eroadvertorial2\. -eroadvertorial2.*. -# /eroadvertising. (easylist.txt: 3711) -/(.*/)?eroadvertising\. -eroadvertising.*. -# /eroads. (easylist.txt: 3710) -/(.*/)?eroads\. -eroads.*. -# /eroad2. (easylist.txt: 3709) -/(.*/)?eroad2\. -eroad2.*. -# /eroad.php (easylist.txt: 3708) -/(.*/)?eroad\.php -eroad.php*. -# /ero_line_ (easylist.txt: 3707) -/(.*/)?ero_line_ -# /ero_hosted_ (easylist.txt: 3706) -/(.*/)?ero_hosted_ -# /ero.htm (easylist.txt: 3705) -/(.*/)?ero\.htm -ero.htm*. -# /ero-advertising. (easylist.txt: 3704) -/(.*/)?ero-advertising\. -ero-advertising.*. -# /ero-ads_ (easylist.txt: 3703) -/(.*/)?ero-ads_ -# /ero-ads- (easylist.txt: 3702) -/(.*/)?ero-ads- -ero-ads-*. -# /ero-1. (easylist.txt: 3701) -/(.*/)?ero-1\. -ero-1.*. -# /ept_in.php? (easylist.txt: 3700) -/(.*/)?ept_in\.php\? -# /eporner-banner- (easylist.txt: 3699) -/(.*/)?eporner-banner- -eporner-banner-*. -# /eplanningv4. (easylist.txt: 3698) -/(.*/)?eplanningv4\. -eplanningv4.*. -# /eng/ads/* (easylist.txt: 3697) -/(.*/)?eng/ads/.* -# /en/ads/* (easylist.txt: 3696) -/(.*/)?en/ads/.* -# /ems/ads. (easylist.txt: 3695) -/(.*/)?ems/ads\. -# /EmreAds. (easylist.txt: 3694) -/(.*/)?EmreAds\. -EmreAds.*. -# /emediatead. (easylist.txt: 3693) -/(.*/)?emediatead\. -emediatead.*. -# /embed_ad. (easylist.txt: 3692) -/(.*/)?embed_ad\. -# /emailads/* (easylist.txt: 3691) -/(.*/)?emailads/.* -# /eht.js?site_ (easylist.txt: 3690) -/(.*/)?eht\.js\?site_ -# /editable/ads/* (easylist.txt: 3689) -/(.*/)?editable/ads/.* -# /ecom/magnet. (easylist.txt: 3688) -/(.*/)?ecom/magnet\. -# /eco_ads/* (easylist.txt: 3687) -/(.*/)?eco_ads/.* -# /ebayad. (easylist.txt: 3686) -/(.*/)?ebayad\. -ebayad.*. -# /ebay_ads/* (easylist.txt: 3685) -/(.*/)?ebay_ads/.* -# /easyazon- (easylist.txt: 3684) -/(.*/)?easyazon- -easyazon-*. -# /easyadstrack. (easylist.txt: 3683) -/(.*/)?easyadstrack\. -easyadstrack.*. -# /easyads/* (easylist.txt: 3682) -/(.*/)?easyads/.* -# /easyads. (easylist.txt: 3681) -/(.*/)?easyads\. -easyads.*. -# /eas_tag.1.0.js (easylist.txt: 3680) -/(.*/)?eas_tag\.1\.0\.js -# /eas_fif. (easylist.txt: 3679) -/(.*/)?eas_fif\. -# /eas?cu=*;ord= (easylist.txt: 3678) -/(.*/)?eas\?cu=.*;ord= -# /eas?cu=*;cre= (easylist.txt: 3677) -/(.*/)?eas\?cu=.*;cre= -# /eas?camp=*;cre= (easylist.txt: 3676) -/(.*/)?eas\?camp=.*;cre= -# /eas?*^easformat= (easylist.txt: 3675) -/(.*/)?eas\?.*[^\w%.-]easformat= -# /eas-fif.htm (easylist.txt: 3674) -/(.*/)?eas-fif\.htm -eas-fif.htm*. -# /e-vertising/* (easylist.txt: 3673) -/(.*/)?e-vertising/.* -# /e-advertising/* (easylist.txt: 3672) -/(.*/)?e-advertising/.* -# /dynbanner/flash/* (easylist.txt: 3671) -/(.*/)?dynbanner/flash/.* -# /dynanews/ad- (easylist.txt: 3670) -/(.*/)?dynanews/ad- -# /dynamicvideoad? (easylist.txt: 3669) -/(.*/)?dynamicvideoad\? -# /dynamiccsad? (easylist.txt: 3668) -/(.*/)?dynamiccsad\? -# /dynamicad? (easylist.txt: 3667) -/(.*/)?dynamicad\? -# /DynamicAd/* (easylist.txt: 3666) -/(.*/)?DynamicAd/.* -# /dynamic_ads/* (easylist.txt: 3665) -/(.*/)?dynamic_ads/.* -# /dynamic/ads/* (easylist.txt: 3664) -/(.*/)?dynamic/ads/.* -# /dynamic-ad- (easylist.txt: 3663) -/(.*/)?dynamic-ad- -dynamic-ad-*. -# /dyn_banners_ (easylist.txt: 3662) -/(.*/)?dyn_banners_ -# /dyn_banner. (easylist.txt: 3661) -/(.*/)?dyn_banner\. -# /dxd/ads/* (easylist.txt: 3660) -/(.*/)?dxd/ads/.* -# /dtmads/* (easylist.txt: 3659) -/(.*/)?dtmads/.* -# /dtiadvert125x125. (easylist.txt: 3657) -/(.*/)?dtiadvert125x125\. -dtiadvert125x125.*. -# /dspads. (easylist.txt: 3656) -/(.*/)?dspads\. -dspads.*. -# /dsg/bnn/* (easylist.txt: 3655) -/(.*/)?dsg/bnn/.* -# /dropdown_ad. (easylist.txt: 3654) -/(.*/)?dropdown_ad\. -# /droelf.kit/a/* (easylist.txt: 3653) -/(.*/)?droelf\.kit/a/.* -droelf.kit/a/.* -# /drivingrevenue/* (easylist.txt: 3652) -/(.*/)?drivingrevenue/.* -# /driveragentad2. (easylist.txt: 3651) -/(.*/)?driveragentad2\. -driveragentad2.*. -# /driveragentad1. (easylist.txt: 3650) -/(.*/)?driveragentad1\. -driveragentad1.*. -# /drawad. (easylist.txt: 3649) -/(.*/)?drawad\. -drawad.*. -# /download/ads (easylist.txt: 3648) -/(.*/)?download/ads -# /download/ad/* (easylist.txt: 3647) -/(.*/)?download/ad/.* -# /download/ad. (easylist.txt: 3646) -/(.*/)?download/ad\. -# /downads. (easylist.txt: 3645) -/(.*/)?downads\. -downads.*. -# /doublepimp2.js (easylist.txt: 3644) -/(.*/)?doublepimp2\.js -doublepimp2.js*. -# /doubleclicktag. (easylist.txt: 3643) -/(.*/)?doubleclicktag\. -doubleclicktag.*. -# /doubleclickplugin. (easylist.txt: 3642) -/(.*/)?doubleclickplugin\. -doubleclickplugin.*. -# /doubleclickloader. (easylist.txt: 3641) -/(.*/)?doubleclickloader\. -doubleclickloader.*. -# /doubleclickinstreamad. (easylist.txt: 3640) -/(.*/)?doubleclickinstreamad\. -doubleclickinstreamad.*. -# /doubleclickcontainer. (easylist.txt: 3639) -/(.*/)?doubleclickcontainer\. -doubleclickcontainer.*. -# /doubleclickbannerad? (easylist.txt: 3638) -/(.*/)?doubleclickbannerad\? -# /doubleclickads? (easylist.txt: 3637) -/(.*/)?doubleclickads\? -# /doubleclickads/* (easylist.txt: 3636) -/(.*/)?doubleclickads/.* -# /doubleclickad. (easylist.txt: 3635) -/(.*/)?doubleclickad\. -doubleclickad.*. -# /doubleclick_ads/* (easylist.txt: 3634) -/(.*/)?doubleclick_ads/.* -# /doubleclick_ads. (easylist.txt: 3633) -/(.*/)?doubleclick_ads\. -# /doubleclick/iframe. (easylist.txt: 3632) -/(.*/)?doubleclick/iframe\. -# /doubleclick.swf (easylist.txt: 3631) -/(.*/)?doubleclick\.swf -doubleclick.swf*. -# /doubleclick.php (easylist.txt: 3630) -/(.*/)?doubleclick\.php -doubleclick.php*. -# /doubleclick.js (easylist.txt: 3629) -/(.*/)?doubleclick\.js -doubleclick.js*. -# /doubleclick.aspx (easylist.txt: 3628) -/(.*/)?doubleclick\.aspx -doubleclick.aspx*. -# /doors/ads/* (easylist.txt: 3627) -/(.*/)?doors/ads/.* -# /door/ads/* (easylist.txt: 3626) -/(.*/)?door/ads/.* -# /domainads/* (easylist.txt: 3625) -/(.*/)?domainads/.* -# /dnsads. (easylist.txt: 3624) -/(.*/)?dnsads\. -dnsads.*. -# /dns_ad/* (easylist.txt: 3623) -/(.*/)?dns_ad/.* -# /dne_ad. (easylist.txt: 3622) -/(.*/)?dne_ad\. -# /dmn-advert. (easylist.txt: 3621) -/(.*/)?dmn-advert\. -dmn-advert.*. -# /dlfeatads. (easylist.txt: 3620) -/(.*/)?dlfeatads\. -dlfeatads.*. -# /divad/* (easylist.txt: 3619) -/(.*/)?divad/.* -# /div-ads. (easylist.txt: 3618) -/(.*/)?div-ads\. -div-ads.*. -# /displaybanner/* (easylist.txt: 3617) -/(.*/)?displaybanner/.* -# /displayadsiframe. (easylist.txt: 3616) -/(.*/)?displayadsiframe\. -displayadsiframe.*. -# /displayads3. (easylist.txt: 3615) -/(.*/)?displayads3\. -displayads3.*. -# /displayads2. (easylist.txt: 3614) -/(.*/)?displayads2\. -displayads2.*. -# /displayads1. (easylist.txt: 3613) -/(.*/)?displayads1\. -displayads1.*. -# /displayads/* (easylist.txt: 3612) -/(.*/)?displayads/.* -# /displayads. (easylist.txt: 3611) -/(.*/)?displayads\. -displayads.*. -# /displayadleader. (easylist.txt: 3610) -/(.*/)?displayadleader\. -displayadleader.*. -# /displayadiframe. (easylist.txt: 3609) -/(.*/)?displayadiframe\. -displayadiframe.*. -# /displayadbanner_ (easylist.txt: 3608) -/(.*/)?displayadbanner_ -# /displayad? (easylist.txt: 3607) -/(.*/)?displayad\? -# /displayad/* (easylist.txt: 3606) -/(.*/)?displayad/.* -# /displayad. (easylist.txt: 3605) -/(.*/)?displayad\. -displayad.*. -# /display_ad (easylist.txt: 3604) -/(.*/)?display_ad -# /display?ad_ (easylist.txt: 3603) -/(.*/)?display\?ad_ -# /display.ad. (easylist.txt: 3602) -/(.*/)?display\.ad\. -display.ad.*. -# /display-ads/* (easylist.txt: 3601) -/(.*/)?display-ads/.* -# /display-ads- (easylist.txt: 3600) -/(.*/)?display-ads- -display-ads-*. -# /display-ad/* (easylist.txt: 3599) -/(.*/)?display-ad/.* -# /DispAd_ (easylist.txt: 3598) -/(.*/)?DispAd_ -# /discuss_ad/* (easylist.txt: 3597) -/(.*/)?discuss_ad/.* -# /directrev. (easylist.txt: 3596) -/(.*/)?directrev\. -directrev.*. -# /directadvert. (easylist.txt: 3595) -/(.*/)?directadvert\. -directadvert.*. -# /directads. (easylist.txt: 3594) -/(.*/)?directads\. -directads.*. -# /direct_ads. (easylist.txt: 3593) -/(.*/)?direct_ads\. -# /dinclinx.com/* (easylist.txt: 3592) -/(.*/)?dinclinx\.com/.* -dinclinx.com/.* -# /digg_ads_ (easylist.txt: 3591) -/(.*/)?digg_ads_ -# /digg_ads. (easylist.txt: 3590) -/(.*/)?digg_ads\. -# /digest/ads. (easylist.txt: 3589) -/(.*/)?digest/ads\. -# /dig_ad. (easylist.txt: 3588) -/(.*/)?dig_ad\. -# /dif/?cid (easylist.txt: 3587) -/(.*/)?dif/\?cid -# /dictionary/ads/* (easylist.txt: 3586) -/(.*/)?dictionary/ads/.* -# /dfpsearchads. (easylist.txt: 3585) -/(.*/)?dfpsearchads\. -dfpsearchads.*. -# /dfpsds. (easylist.txt: 3584) -/(.*/)?dfpsds\. -dfpsds.*. -# /dfpads. (easylist.txt: 3583) -/(.*/)?dfpads\. -dfpads.*. -# /dfp_delivery.js (easylist.txt: 3582) -/(.*/)?dfp_delivery\.js -# /dfp_ads/* (easylist.txt: 3581) -/(.*/)?dfp_ads/.* -# /dfp/jquery. (easylist.txt: 3580) -/(.*/)?dfp/jquery\. -# /dfp/head/* (easylist.txt: 3579) -/(.*/)?dfp/head/.* -# /dfp/dc.js (easylist.txt: 3578) -/(.*/)?dfp/dc\.js -# /dfp/blocks/* (easylist.txt: 3577) -/(.*/)?dfp/blocks/.* -# /dfp/async. (easylist.txt: 3576) -/(.*/)?dfp/async\. -# /dfp.js (easylist.txt: 3575) -/(.*/)?dfp\.js -dfp.js*. -# /dfp-custom/* (easylist.txt: 3574) -/(.*/)?dfp-custom/.* -# /devicead/* (easylist.txt: 3573) -/(.*/)?devicead/.* -# /develop/ads_ (easylist.txt: 3572) -/(.*/)?develop/ads_ -# /design/ads/* (easylist.txt: 3571) -/(.*/)?design/ads/.* -# /descpopup.js (easylist.txt: 3570) -/(.*/)?descpopup\.js -descpopup.js*. -# /DemoAd. (easylist.txt: 3569) -/(.*/)?DemoAd\. -DemoAd.*. -# /demo/ads/* (easylist.txt: 3568) -/(.*/)?demo/ads/.* -# /delivery_ads/* (easylist.txt: 3567) -/(.*/)?delivery_ads/.* -# /delivery/vbafr.php (easylist.txt: 3566) -/(.*/)?delivery/vbafr\.php -# /delivery/spc. (easylist.txt: 3565) -/(.*/)?delivery/spc\. -# /delivery/lg. (easylist.txt: 3564) -/(.*/)?delivery/lg\. -# /delivery/fl. (easylist.txt: 3563) -/(.*/)?delivery/fl\. -# /delivery/fc. (easylist.txt: 3562) -/(.*/)?delivery/fc\. -# /delivery/avw. (easylist.txt: 3561) -/(.*/)?delivery/avw\. -# /delivery/apu.php (easylist.txt: 3560) -/(.*/)?delivery/apu\.php -# /delivery/al.php (easylist.txt: 3559) -/(.*/)?delivery/al\.php -# /delivery/ag. (easylist.txt: 3558) -/(.*/)?delivery/ag\. -# /delivery/afr. (easylist.txt: 3557) -/(.*/)?delivery/afr\. -# /delivery/*?advplaces= (easylist.txt: 3556) -/(.*/)?delivery/.*\?advplaces= -# /delivery.php?rnd= (easylist.txt: 3555) -/(.*/)?delivery\.php\?rnd= -# /delivery.php?pool_id= (easylist.txt: 3554) -/(.*/)?delivery\.php\?pool_id= -# /delivery.ads. (easylist.txt: 3553) -/(.*/)?delivery\.ads\. -delivery.ads.*. -# /deliversds. (easylist.txt: 3552) -/(.*/)?deliversds\. -deliversds.*. -# /deliversd/* (easylist.txt: 3551) -/(.*/)?deliversd/.* -# /deliverjs.nmi? (easylist.txt: 3550) -/(.*/)?deliverjs\.nmi\? -# /deliverads. (easylist.txt: 3549) -/(.*/)?deliverads\. -deliverads.*. -# /deliverad/* (easylist.txt: 3548) -/(.*/)?deliverad/.* -# /deliver.nmi? (easylist.txt: 3547) -/(.*/)?deliver\.nmi\? -# /deliver.jphp? (easylist.txt: 3546) -/(.*/)?deliver\.jphp\? -# /delayedad. (easylist.txt: 3545) -/(.*/)?delayedad\. -delayedad.*. -# /defersds. (easylist.txt: 3544) -/(.*/)?defersds\. -defersds.*. -# /deferads. (easylist.txt: 3543) -/(.*/)?deferads\. -deferads.*. -# /defer_ads. (easylist.txt: 3542) -/(.*/)?defer_ads\. -# /defaults_ads/* (easylist.txt: 3541) -/(.*/)?defaults_ads/.* -# /defaultad? (easylist.txt: 3540) -/(.*/)?defaultad\? -# /default_oas. (easylist.txt: 3539) -/(.*/)?default_oas\. -# /default_adv. (easylist.txt: 3538) -/(.*/)?default_adv\. -# /default_ads/* (easylist.txt: 3537) -/(.*/)?default_ads/.* -# /default/ads/* (easylist.txt: 3536) -/(.*/)?default/ads/.* -# /default-adv/* (easylist.txt: 3535) -/(.*/)?default-adv/.* -# /de/ads/* (easylist.txt: 3534) -/(.*/)?de/ads/.* -# /ddlads/* (easylist.txt: 3533) -/(.*/)?ddlads/.* -# /dcloadads/* (easylist.txt: 3532) -/(.*/)?dcloadads/.* -# /dclk_ads_ (easylist.txt: 3531) -/(.*/)?dclk_ads_ -# /dclk_ads. (easylist.txt: 3530) -/(.*/)?dclk_ads\. -# /dclk/dfp/* (easylist.txt: 3529) -/(.*/)?dclk/dfp/.* -# /dblclickad. (easylist.txt: 3528) -/(.*/)?dblclickad\. -dblclickad.*. -# /dblclick. (easylist.txt: 3527) -/(.*/)?dblclick\. -dblclick.*. -# /dateads. (easylist.txt: 3526) -/(.*/)?dateads\. -dateads.*. -# /data/init?site_id= (easylist.txt: 3525) -/(.*/)?data/init\?site_id= -# /data/init2?site_id= (easylist.txt: 3524) -/(.*/)?data/init2\?site_id= -# /data/ads/* (easylist.txt: 3523) -/(.*/)?data/ads/.* -# /dartfunctions. (easylist.txt: 3522) -/(.*/)?dartfunctions\. -dartfunctions.*. -# /dartcall. (easylist.txt: 3521) -/(.*/)?dartcall\. -dartcall.*. -# /dartads. (easylist.txt: 3520) -/(.*/)?dartads\. -dartads.*. -# /dartadengine2. (easylist.txt: 3519) -/(.*/)?dartadengine2\. -dartadengine2.*. -# /dartadengine. (easylist.txt: 3518) -/(.*/)?dartadengine\. -dartadengine.*. -# /dartad/* (easylist.txt: 3517) -/(.*/)?dartad/.* -# /dart_enhancements/* (easylist.txt: 3516) -/(.*/)?dart_enhancements/.* -# /dart_ads/* (easylist.txt: 3515) -/(.*/)?dart_ads/.* -# /dart_ads. (easylist.txt: 3514) -/(.*/)?dart_ads\. -# /daily/ads/* (easylist.txt: 3513) -/(.*/)?daily/ads/.* -# /d/ads/* (easylist.txt: 3512) -/(.*/)?d/ads/.* -# /cwggoogleadshow. (easylist.txt: 3511) -/(.*/)?cwggoogleadshow\. -cwggoogleadshow.*. -# /cvs/ads/* (easylist.txt: 3510) -/(.*/)?cvs/ads/.* -# /cutead. (easylist.txt: 3509) -/(.*/)?cutead\. -cutead.*. -# /customerad_ (easylist.txt: 3508) -/(.*/)?customerad_ -# /customcontrols/ads/* (easylist.txt: 3507) -/(.*/)?customcontrols/ads/.* -# /customadsense. (easylist.txt: 3506) -/(.*/)?customadsense\. -customadsense.*. -# /customads/* (easylist.txt: 3505) -/(.*/)?customads/.* -# /customadmode. (easylist.txt: 3504) -/(.*/)?customadmode\. -customadmode.*. -# /customad. (easylist.txt: 3503) -/(.*/)?customad\. -customad.*. -# /custom_ads/* (easylist.txt: 3502) -/(.*/)?custom_ads/.* -# /custom11x5ad. (easylist.txt: 3501) -/(.*/)?custom11x5ad\. -custom11x5ad.*. -# /custom/doubleclick/* (easylist.txt: 3500) -/(.*/)?custom/doubleclick/.* -# /custom/ads (easylist.txt: 3499) -/(.*/)?custom/ads -# /custads/* (easylist.txt: 3498) -/(.*/)?custads/.* -# /curveball/ads/* (easylist.txt: 3497) -/(.*/)?curveball/ads/.* -# /curlad. (easylist.txt: 3496) -/(.*/)?curlad\. -curlad.*. -# /cubeads_ (easylist.txt: 3495) -/(.*/)?cubeads_ -# /cubeads/* (easylist.txt: 3494) -/(.*/)?cubeads/.* -# /cubead. (easylist.txt: 3493) -/(.*/)?cubead\. -cubead.*. -# /cube_ads/* (easylist.txt: 3492) -/(.*/)?cube_ads/.* -# /ctamlive160x160. (easylist.txt: 3491) -/(.*/)?ctamlive160x160\. -ctamlive160x160.*. -# /cssjs/ads/* (easylist.txt: 3490) -/(.*/)?cssjs/ads/.* -# /css/adv. (easylist.txt: 3489) -/(.*/)?css/adv\. -# /css/adsense (easylist.txt: 3488) -/(.*/)?css/adsense -# /css/ads. (easylist.txt: 3487) -/(.*/)?css/ads\. -# /css/ads- (easylist.txt: 3486) -/(.*/)?css/ads- -# /css/ad. (easylist.txt: 3485) -/(.*/)?css/ad\. -# /csp/ads? (easylist.txt: 3484) -/(.*/)?csp/ads\? -# /crossoverad- (easylist.txt: 3483) -/(.*/)?crossoverad- -crossoverad-*. -# /cramitin/ads_ (easylist.txt: 3482) -/(.*/)?cramitin/ads_ -# /cpxads. (easylist.txt: 3481) -/(.*/)?cpxads\. -cpxads.*. -# /cpx_ads. (easylist.txt: 3480) -/(.*/)?cpx_ads\. -# /cpx-ad. (easylist.txt: 3479) -/(.*/)?cpx-ad\. -cpx-ad.*. -# /cpmrect. (easylist.txt: 3478) -/(.*/)?cpmrect\. -cpmrect.*. -# /cpmcampaigns/* (easylist.txt: 3477) -/(.*/)?cpmcampaigns/.* -# /cpmbanner. (easylist.txt: 3476) -/(.*/)?cpmbanner\. -cpmbanner.*. -# /cpm_ad. (easylist.txt: 3475) -/(.*/)?cpm_ad\. -# /cpm728. (easylist.txt: 3474) -/(.*/)?cpm728\. -cpm728.*. -# /cpm160. (easylist.txt: 3473) -/(.*/)?cpm160\. -cpm160.*. -# /coxads/* (easylist.txt: 3472) -/(.*/)?coxads/.* -# /country_ad. (easylist.txt: 3471) -/(.*/)?country_ad\. -# /cornersmall.swf (easylist.txt: 3470) -/(.*/)?cornersmall\.swf -cornersmall.swf*. -# /cornerbig.swf (easylist.txt: 3469) -/(.*/)?cornerbig\.swf -cornerbig.swf*. -# /corner_ads/* (easylist.txt: 3468) -/(.*/)?corner_ads/.* -# /corner-ad. (easylist.txt: 3467) -/(.*/)?corner-ad\. -corner-ad.*. -# /coread/* (easylist.txt: 3466) -/(.*/)?coread/.* -# /core/ads/* (easylist.txt: 3465) -/(.*/)?core/ads/.* -# /core/ad/* (easylist.txt: 3464) -/(.*/)?core/ad/.* -# /core-ads- (easylist.txt: 3463) -/(.*/)?core-ads- -core-ads-*. -# /convertjsontoad. (easylist.txt: 3462) -/(.*/)?convertjsontoad\. -convertjsontoad.*. -# /controllerimg/adv/* (easylist.txt: 3461) -/(.*/)?controllerimg/adv/.* -# /controller/ads/* (easylist.txt: 3460) -/(.*/)?controller/ads/.* -# /contribute_ad. (easylist.txt: 3459) -/(.*/)?contribute_ad\. -# /contpop.js| (easylist.txt: 3458) -/(.*/)?contpop\.js$ -contpop.js -# /contextualad. (easylist.txt: 3457) -/(.*/)?contextualad\. -contextualad.*. -# /contextads. (easylist.txt: 3456) -/(.*/)?contextads\. -contextads.*. -# /contextad. (easylist.txt: 3455) -/(.*/)?contextad\. -contextad.*. -# /context_ads. (easylist.txt: 3454) -/(.*/)?context_ads\. -# /context_ad/* (easylist.txt: 3453) -/(.*/)?context_ad/.* -# /contentad| (easylist.txt: 3452) -/(.*/)?contentad$ -# /contentadxxl. (easylist.txt: 3451) -/(.*/)?contentadxxl\. -contentadxxl.*. -# /contentadvert1. (easylist.txt: 3450) -/(.*/)?contentadvert1\. -contentadvert1.*. -# /contentAdServlet? (easylist.txt: 3449) -/(.*/)?contentAdServlet\? -# /contentad_ (easylist.txt: 3448) -/(.*/)?contentad_ -# /contentad/* (easylist.txt: 3447) -/(.*/)?contentad/.* -# /contentAd. (easylist.txt: 3446) -/(.*/)?contentAd\. -contentAd.*. -# /content_ad_ (easylist.txt: 3445) -/(.*/)?content_ad_ -# /content_ad. (easylist.txt: 3444) -/(.*/)?content_ad\. -# /content/adv/* (easylist.txt: 3443) -/(.*/)?content/adv/.* -# /content/ads/* (easylist.txt: 3442) -/(.*/)?content/ads/.* -# /content/ad_ (easylist.txt: 3441) -/(.*/)?content/ad_ -# /content/ad/* (easylist.txt: 3440) -/(.*/)?content/ad/.* -# /content-ads. (easylist.txt: 3439) -/(.*/)?content-ads\. -content-ads.*. -# /contaxe_ (easylist.txt: 3438) -/(.*/)?contaxe_ -# /contads. (easylist.txt: 3437) -/(.*/)?contads\. -contads.*. -# /cont-adv. (easylist.txt: 3436) -/(.*/)?cont-adv\. -cont-adv.*. -# /configspace/ads/* (easylist.txt: 3435) -/(.*/)?configspace/ads/.* -# /conad_ (easylist.txt: 3434) -/(.*/)?conad_ -# /conad. (easylist.txt: 3433) -/(.*/)?conad\. -conad.*. -# /components/ads_ (easylist.txt: 3432) -/(.*/)?components/ads_ -# /components/ads/* (easylist.txt: 3431) -/(.*/)?components/ads/.* -# /compban.html? (easylist.txt: 3430) -/(.*/)?compban\.html\? -# /companionAdFunc. (easylist.txt: 3429) -/(.*/)?companionAdFunc\. -companionAdFunc.*. -# /companion_ads. (easylist.txt: 3428) -/(.*/)?companion_ads\. -# /companion_ad. (easylist.txt: 3427) -/(.*/)?companion_ad\. -# /commspace_ad. (easylist.txt: 3426) -/(.*/)?commspace_ad\. -# /commons/ad/* (easylist.txt: 3425) -/(.*/)?commons/ad/.* -# /common_ad. (easylist.txt: 3424) -/(.*/)?common_ad\. -# /common/dart_wrapper_ (easylist.txt: 3422) -/(.*/)?common/dart_wrapper_ -# /common/adv_ (easylist.txt: 3421) -/(.*/)?common/adv_ -# /common/ads/* (easylist.txt: 3420) -/(.*/)?common/ads/.* -# /common/ad_ (easylist.txt: 3419) -/(.*/)?common/ad_ -# /common/ad/* (easylist.txt: 3418) -/(.*/)?common/ad/.* -# /common/ad. (easylist.txt: 3417) -/(.*/)?common/ad\. -# /common-ads/* (easylist.txt: 3416) -/(.*/)?common-ads/.* -# /commercial_top. (easylist.txt: 3415) -/(.*/)?commercial_top\. -# /commercial_horizontal. (easylist.txt: 3414) -/(.*/)?commercial_horizontal\. -# /comment-ad. (easylist.txt: 3413) -/(.*/)?comment-ad\. -comment-ad.*. -# /comment-ad- (easylist.txt: 3412) -/(.*/)?comment-ad- -comment-ad-*. -# /combo?darla/* (easylist.txt: 3411) -/(.*/)?combo\?darla/.* -# /com/ads/* (easylist.txt: 3410) -/(.*/)?com/ads/.* -# /columnads/* (easylist.txt: 3409) -/(.*/)?columnads/.* -# /columnadcounter. (easylist.txt: 3408) -/(.*/)?columnadcounter\. -columnadcounter.*. -# /colorscheme/ads/* (easylist.txt: 3407) -/(.*/)?colorscheme/ads/.* -# /collisionadmarker. (easylist.txt: 3406) -/(.*/)?collisionadmarker\. -collisionadmarker.*. -# /coldseal_ad. (easylist.txt: 3405) -/(.*/)?coldseal_ad\. -# /codaadconfig. (easylist.txt: 3404) -/(.*/)?codaadconfig\. -codaadconfig.*. -# /cnxad- (easylist.txt: 3403) -/(.*/)?cnxad- -cnxad-*. -# /cnnslads. (easylist.txt: 3402) -/(.*/)?cnnslads\. -cnnslads.*. -# /cnads.js (easylist.txt: 3401) -/(.*/)?cnads\.js -cnads.js*. -# /cn-advert. (easylist.txt: 3400) -/(.*/)?cn-advert\. -cn-advert.*. -# /cms/js/ad_ (easylist.txt: 3399) -/(.*/)?cms/js/ad_ -# /cms/ads/* (easylist.txt: 3398) -/(.*/)?cms/ads/.* -# /cm/ads/* (easylist.txt: 3397) -/(.*/)?cm/ads/.* -# /clkads. (easylist.txt: 3396) -/(.*/)?clkads\. -clkads.*. -# /clients/ads/* (easylist.txt: 3395) -/(.*/)?clients/ads/.* -# /clickunder. (easylist.txt: 3394) -/(.*/)?clickunder\. -clickunder.*. -# /clicksor. (easylist.txt: 3393) -/(.*/)?clicksor\. -clicksor.*. -# /clickboothad. (easylist.txt: 3392) -/(.*/)?clickboothad\. -clickboothad.*. -# /click/creative/* (easylist.txt: 3391) -/(.*/)?click/creative/.* -# /click/ads_ (easylist.txt: 3390) -/(.*/)?click/ads_ -# /classifieds/banners/* (easylist.txt: 3389) -/(.*/)?classifieds/banners/.* -# /ClassAds/* (easylist.txt: 3388) -/(.*/)?ClassAds/.* -# /clarityray.js (easylist.txt: 3387) -/(.*/)?clarityray\.js -clarityray.js*. -# /ck.php?nids (easylist.txt: 3386) -/(.*/)?ck\.php\?nids -# /cjadsprite. (easylist.txt: 3385) -/(.*/)?cjadsprite\. -cjadsprite.*. -# /circads. (easylist.txt: 3384) -/(.*/)?circads\. -circads.*. -# /ciaad. (easylist.txt: 3383) -/(.*/)?ciaad\. -ciaad.*. -# /chrome-ad. (easylist.txt: 3382) -/(.*/)?chrome-ad\. -chrome-ad.*. -# /chitika-ad? (easylist.txt: 3381) -/(.*/)?chitika-ad\? -# /chinaadclient. (easylist.txt: 3380) -/(.*/)?chinaadclient\. -chinaadclient.*. -# /checkm8header_ (easylist.txt: 3379) -/(.*/)?checkm8header_ -# /checkm8footer_ (easylist.txt: 3378) -/(.*/)?checkm8footer_ -# /channelblockads. (easylist.txt: 3377) -/(.*/)?channelblockads\. -channelblockads.*. -# /cgi/ad_ (easylist.txt: 3376) -/(.*/)?cgi/ad_ -# /cgi-exe/ad. (easylist.txt: 3375) -/(.*/)?cgi-exe/ad\. -# /cgi-bin/ads_ (easylist.txt: 3374) -/(.*/)?cgi-bin/ads_ -# /cgi-bin/ads/* (easylist.txt: 3373) -/(.*/)?cgi-bin/ads/.* -# /cgi-bin/ads. (easylist.txt: 3372) -/(.*/)?cgi-bin/ads\. -# /cgi-bin/ad/* (easylist.txt: 3371) -/(.*/)?cgi-bin/ad/.* -# /ceoads/* (easylist.txt: 3370) -/(.*/)?ceoads/.* -# /centralresource/ad_ (easylist.txt: 3369) -/(.*/)?centralresource/ad_ -# /central/ads/* (easylist.txt: 3368) -/(.*/)?central/ads/.* -# /centerads. (easylist.txt: 3367) -/(.*/)?centerads\. -centerads.*. -# /cdn.ads. (easylist.txt: 3366) -/(.*/)?cdn\.ads\. -cdn.ads.*. -# /cci-ads- (easylist.txt: 3365) -/(.*/)?cci-ads- -cci-ads-*. -# /catfishads/* (easylist.txt: 3363) -/(.*/)?catfishads/.* -# /category-sponsorship/* (easylist.txt: 3362) -/(.*/)?category-sponsorship/.* -# /cashad2. (easylist.txt: 3361) -/(.*/)?cashad2\. -cashad2.*. -# /cashad. (easylist.txt: 3360) -/(.*/)?cashad\. -cashad.*. -# /carsadtaggenerator.js (easylist.txt: 3359) -/(.*/)?carsadtaggenerator\.js -carsadtaggenerator.js*. -# /carbonads/* (easylist.txt: 3358) -/(.*/)?carbonads/.* -# /carbonads- (easylist.txt: 3357) -/(.*/)?carbonads- -carbonads-*. -# /campus/ads/* (easylist.txt: 3356) -/(.*/)?campus/ads/.* -# /campaign/advertiser_ (easylist.txt: 3355) -/(.*/)?campaign/advertiser_ -# /camfuzeads/* (easylist.txt: 3354) -/(.*/)?camfuzeads/.* -# /camaoAdsenseHomepage. (easylist.txt: 3353) -/(.*/)?camaoAdsenseHomepage\. -camaoAdsenseHomepage.*. -# /camaoadsense. (easylist.txt: 3352) -/(.*/)?camaoadsense\. -camaoadsense.*. -# /callAdserver? (easylist.txt: 3351) -/(.*/)?callAdserver\? -# /callads5. (easylist.txt: 3350) -/(.*/)?callads5\. -callads5.*. -# /call_ads/* (easylist.txt: 3349) -/(.*/)?call_ads/.* -# /call/pubj/* (easylist.txt: 3348) -/(.*/)?call/pubj/.* -# /call/pubif/* (easylist.txt: 3347) -/(.*/)?call/pubif/.* -# /calendar-ads/* (easylist.txt: 3346) -/(.*/)?calendar-ads/.* -# /cads-min.js (easylist.txt: 3345) -/(.*/)?cads-min\.js -cads-min.js*. -# /cache/ads_ (easylist.txt: 3344) -/(.*/)?cache/ads_ -# /bytemark_ad. (easylist.txt: 3343) -/(.*/)?bytemark_ad\. -# /buzz/ads/* (easylist.txt: 3342) -/(.*/)?buzz/ads/.* -# /buysellads. (easylist.txt: 3341) -/(.*/)?buysellads\. -buysellads.*. -# /buysellads- (easylist.txt: 3340) -/(.*/)?buysellads- -buysellads-*. -# /buyer/dyad/* (easylist.txt: 3339) -/(.*/)?buyer/dyad/.* -# /buyclicks/* (easylist.txt: 3338) -/(.*/)?buyclicks/.* -# /buyad. (easylist.txt: 3337) -/(.*/)?buyad\. -buyad.*. -# /buttonads/* (easylist.txt: 3336) -/(.*/)?buttonads/.* -# /buttonads. (easylist.txt: 3335) -/(.*/)?buttonads\. -buttonads.*. -# /buttonad/* (easylist.txt: 3334) -/(.*/)?buttonad/.* -# /button_ads/* (easylist.txt: 3333) -/(.*/)?button_ads/.* -# /butler.php?type= (easylist.txt: 3332) -/(.*/)?butler\.php\?type= -# /burt/adv_ (easylist.txt: 3331) -/(.*/)?burt/adv_ -# /buddyw_ad. (easylist.txt: 3330) -/(.*/)?buddyw_ad\. -# /bucketads. (easylist.txt: 3329) -/(.*/)?bucketads\. -bucketads.*. -# /btn_ad_ (easylist.txt: 3328) -/(.*/)?btn_ad_ -# /btmadsx. (easylist.txt: 3327) -/(.*/)?btmadsx\. -btmadsx.*. -# /btmads. (easylist.txt: 3326) -/(.*/)?btmads\. -btmads.*. -# /btbuckets/btb.js (easylist.txt: 3325) -/(.*/)?btbuckets/btb\.js -# /bserver/* (easylist.txt: 3324) -/(.*/)?bserver/.* -# /brightcovead. (easylist.txt: 3323) -/(.*/)?brightcovead\. -brightcovead.*. -# /breakad_ (easylist.txt: 3322) -/(.*/)?breakad_ -# /boxad_ (easylist.txt: 3321) -/(.*/)?boxad_ -# /boxad3. (easylist.txt: 3320) -/(.*/)?boxad3\. -boxad3.*. -# /boxad2. (easylist.txt: 3319) -/(.*/)?boxad2\. -boxad2.*. -# /boxad1. (easylist.txt: 3318) -/(.*/)?boxad1\. -boxad1.*. -# /boxad. (easylist.txt: 3317) -/(.*/)?boxad\. -boxad.*. -# /box_ads_ (easylist.txt: 3316) -/(.*/)?box_ads_ -# /box_ad_ (easylist.txt: 3315) -/(.*/)?box_ad_ -# /bottomsidead/* (easylist.txt: 3314) -/(.*/)?bottomsidead/.* -# /bottomads. (easylist.txt: 3313) -/(.*/)?bottomads\. -bottomads.*. -# /bottomad/* (easylist.txt: 3312) -/(.*/)?bottomad/.* -# /bottomad. (easylist.txt: 3311) -/(.*/)?bottomad\. -bottomad.*. -# /bottom_adv_ (easylist.txt: 3310) -/(.*/)?bottom_adv_ -# /bottom_adv. (easylist.txt: 3309) -/(.*/)?bottom_adv\. -# /bottom_ads. (easylist.txt: 3308) -/(.*/)?bottom_ads\. -# /bottom_ad. (easylist.txt: 3307) -/(.*/)?bottom_ad\. -# /bottom-advert- (easylist.txt: 3306) -/(.*/)?bottom-advert- -bottom-advert-*. -# /bottom-ads. (easylist.txt: 3305) -/(.*/)?bottom-ads\. -bottom-ads.*. -# /bottom-ad- (easylist.txt: 3304) -/(.*/)?bottom-ad- -bottom-ad-*. -# /boomad. (easylist.txt: 3303) -/(.*/)?boomad\. -boomad.*. -# /bookads2. (easylist.txt: 3302) -/(.*/)?bookads2\. -bookads2.*. -# /bookads. (easylist.txt: 3301) -/(.*/)?bookads\. -bookads.*. -# /bookad/* (easylist.txt: 3300) -/(.*/)?bookad/.* -# /BOM/Ads/* (easylist.txt: 3299) -/(.*/)?BOM/Ads/.* -# /bodyads/* (easylist.txt: 3298) -/(.*/)?bodyads/.* -# /bnrsrv. (easylist.txt: 3297) -/(.*/)?bnrsrv\. -bnrsrv.*. -# /bnrimg. (easylist.txt: 3296) -/(.*/)?bnrimg\. -bnrimg.*. -# /bnrad/* (easylist.txt: 3295) -/(.*/)?bnrad/.* -# /bnr.php? (easylist.txt: 3293) -/(.*/)?bnr\.php\? -# /bmndoubleclickad. (easylist.txt: 3292) -/(.*/)?bmndoubleclickad\. -bmndoubleclickad.*. -# /blogoas- (easylist.txt: 3291) -/(.*/)?blogoas- -blogoas-*. -# /bloggerex. (easylist.txt: 3290) -/(.*/)?bloggerex\. -bloggerex.*. -# /blogadsbg. (easylist.txt: 3289) -/(.*/)?blogadsbg\. -blogadsbg.*. -# /blogads_ (easylist.txt: 3288) -/(.*/)?blogads_ -# /blogads3/* (easylist.txt: 3287) -/(.*/)?blogads3/.* -# /blogads2_ (easylist.txt: 3286) -/(.*/)?blogads2_ -# /blogads/* (easylist.txt: 3285) -/(.*/)?blogads/.* -# /blogads. (easylist.txt: 3284) -/(.*/)?blogads\. -blogads.*. -# /blogads- (easylist.txt: 3283) -/(.*/)?blogads- -blogads-*. -# /blogad_ (easylist.txt: 3282) -/(.*/)?blogad_ -# /blogad02. (easylist.txt: 3281) -/(.*/)?blogad02\. -blogad02.*. -# /blogad. (easylist.txt: 3280) -/(.*/)?blogad\. -blogad.*. -# /blog_ads/* (easylist.txt: 3279) -/(.*/)?blog_ads/.* -# /blog_ad? (easylist.txt: 3278) -/(.*/)?blog_ad\? -# /blog/ads/* (easylist.txt: 3277) -/(.*/)?blog/ads/.* -# /blog-ad- (easylist.txt: 3276) -/(.*/)?blog-ad- -blog-ad-*. -# /blocks/ads/* (easylist.txt: 3275) -/(.*/)?blocks/ads/.* -# /blockad_ (easylist.txt: 3274) -/(.*/)?blockad_ -# /bkgrndads/* (easylist.txt: 3273) -/(.*/)?bkgrndads/.* -# /bizad. (easylist.txt: 3272) -/(.*/)?bizad\. -bizad.*. -# /binary/ad/* (easylist.txt: 3271) -/(.*/)?binary/ad/.* -# /bin/ads/* (easylist.txt: 3270) -/(.*/)?bin/ads/.* -# /bigtopl.swf (easylist.txt: 3269) -/(.*/)?bigtopl\.swf -bigtopl.swf*. -# /bigboxad. (easylist.txt: 3268) -/(.*/)?bigboxad\. -bigboxad.*. -# /bigads/* (easylist.txt: 3267) -/(.*/)?bigads/.* -# /bigad_ (easylist.txt: 3266) -/(.*/)?bigad_ -# /bigad. (easylist.txt: 3265) -/(.*/)?bigad\. -bigad.*. -# /bi_affiliate.js (easylist.txt: 3264) -/(.*/)?bi_affiliate\.js -# /bgads/* (easylist.txt: 3263) -/(.*/)?bgads/.* -# /bg_ads_ (easylist.txt: 3262) -/(.*/)?bg_ads_ -# /bg/ads/* (easylist.txt: 3261) -/(.*/)?bg/ads/.* -# /bg-advert- (easylist.txt: 3260) -/(.*/)?bg-advert- -bg-advert-*. -# /bftv/ads/* (easylist.txt: 3259) -/(.*/)?bftv/ads/.* -# /betrad.js (easylist.txt: 3258) -/(.*/)?betrad\.js -betrad.js*. -# /beta-ad. (easylist.txt: 3257) -/(.*/)?beta-ad\. -beta-ad.*. -# /behaviorads/* (easylist.txt: 3256) -/(.*/)?behaviorads/.* -# /beacon/ad/* (easylist.txt: 3255) -/(.*/)?beacon/ad/.* -# /bdcustomadsense- (easylist.txt: 3254) -/(.*/)?bdcustomadsense- -bdcustomadsense-*. -# /bckgrnd_ad. (easylist.txt: 3253) -/(.*/)?bckgrnd_ad\. -# /bbad9. (easylist.txt: 3252) -/(.*/)?bbad9\. -bbad9.*. -# /bbad8. (easylist.txt: 3251) -/(.*/)?bbad8\. -bbad8.*. -# /bbad7. (easylist.txt: 3250) -/(.*/)?bbad7\. -bbad7.*. -# /bbad6. (easylist.txt: 3249) -/(.*/)?bbad6\. -bbad6.*. -# /bbad5. (easylist.txt: 3248) -/(.*/)?bbad5\. -bbad5.*. -# /bbad4. (easylist.txt: 3247) -/(.*/)?bbad4\. -bbad4.*. -# /bbad3. (easylist.txt: 3246) -/(.*/)?bbad3\. -bbad3.*. -# /bbad2. (easylist.txt: 3245) -/(.*/)?bbad2\. -bbad2.*. -# /bbad10. (easylist.txt: 3244) -/(.*/)?bbad10\. -bbad10.*. -# /bbad1. (easylist.txt: 3243) -/(.*/)?bbad1\. -bbad1.*. -# /bbad. (easylist.txt: 3242) -/(.*/)?bbad\. -bbad.*. -# /basic/ad/* (easylist.txt: 3241) -/(.*/)?basic/ad/.* -# /baselinead. (easylist.txt: 3240) -/(.*/)?baselinead\. -baselinead.*. -# /baseAd. (easylist.txt: 3239) -/(.*/)?baseAd\. -baseAd.*. -# /bar-ad. (easylist.txt: 3238) -/(.*/)?bar-ad\. -bar-ad.*. -# /bansrc/* (easylist.txt: 3237) -/(.*/)?bansrc/.* -# /bannery/*?banner= (easylist.txt: 3236) -/(.*/)?bannery/.*\?banner= -# /bannerwerbung/* (easylist.txt: 3235) -/(.*/)?bannerwerbung/.* -# /bannerview.*? (easylist.txt: 3234) -/(.*/)?bannerview\..*\? -bannerview.*./.*\? -# /bannersyndication. (easylist.txt: 3233) -/(.*/)?bannersyndication\. -bannersyndication.*. -# /bannerserver? (easylist.txt: 3232) -/(.*/)?bannerserver\? -# /bannerserver3| (easylist.txt: 3231) -/(.*/)?bannerserver3$ -# /bannerserver3/* (easylist.txt: 3230) -/(.*/)?bannerserver3/.* -# /bannerserver/* (easylist.txt: 3229) -/(.*/)?bannerserver/.* -# /bannerserve/* (easylist.txt: 3228) -/(.*/)?bannerserve/.* -# /bannerscript/* (easylist.txt: 3227) -/(.*/)?bannerscript/.* -# /bannersAds_ (easylist.txt: 3226) -/(.*/)?bannersAds_ -# /banners_rotation. (easylist.txt: 3225) -/(.*/)?banners_rotation\. -# /banners/promo/* (easylist.txt: 3224) -/(.*/)?banners/promo/.* -# /banners/googlebanner (easylist.txt: 3223) -/(.*/)?banners/googlebanner -# /banners/ffadult/* (easylist.txt: 3222) -/(.*/)?banners/ffadult/.* -# /banners/affiliate/* (easylist.txt: 3221) -/(.*/)?banners/affiliate/.* -# /banners/affil/* (easylist.txt: 3220) -/(.*/)?banners/affil/.* -# /banners/aff. (easylist.txt: 3219) -/(.*/)?banners/aff\. -# /banners/adv_ (easylist.txt: 3218) -/(.*/)?banners/adv_ -# /banners/adv/* (easylist.txt: 3217) -/(.*/)?banners/adv/.* -# /banners/ads/* (easylist.txt: 3216) -/(.*/)?banners/ads/.* -# /banners/ads. (easylist.txt: 3215) -/(.*/)?banners/ads\. -# /banners/ads- (easylist.txt: 3214) -/(.*/)?banners/ads- -# /banners/ad_ (easylist.txt: 3213) -/(.*/)?banners/ad_ -# /banners/ad11. (easylist.txt: 3212) -/(.*/)?banners/ad11\. -# /banners/ad10. (easylist.txt: 3211) -/(.*/)?banners/ad10\. -# /banners/ad/* (easylist.txt: 3210) -/(.*/)?banners/ad/.* -# /banners/728 (easylist.txt: 3209) -/(.*/)?banners/728 -# /banners/468 (easylist.txt: 3208) -/(.*/)?banners/468 -# /banners/460 (easylist.txt: 3207) -/(.*/)?banners/460 -# /banners/300 (easylist.txt: 3206) -/(.*/)?banners/300 -# /banners/160 (easylist.txt: 3205) -/(.*/)?banners/160 -# /banners.php?id (easylist.txt: 3204) -/(.*/)?banners\.php\?id -# /banners.cgi? (easylist.txt: 3203) -/(.*/)?banners\.cgi\? -# /banners.*&iframe= (easylist.txt: 3202) -/(.*/)?banners\..*&iframe= -banners.*./.*&iframe= -# /bannerrotation/* (easylist.txt: 3201) -/(.*/)?bannerrotation/.* -# /bannerrotation. (easylist.txt: 3200) -/(.*/)?bannerrotation\. -bannerrotation.*. -# /bannerrotater/* (easylist.txt: 3199) -/(.*/)?bannerrotater/.* -# /bannerrotate. (easylist.txt: 3198) -/(.*/)?bannerrotate\. -bannerrotate.*. -# /bannerpump. (easylist.txt: 3197) -/(.*/)?bannerpump\. -bannerpump.*. -# /bannermvt. (easylist.txt: 3196) -/(.*/)?bannermvt\. -bannermvt.*. -# /bannermanager/* (easylist.txt: 3195) -/(.*/)?bannermanager/.* -# /bannermaker/* (easylist.txt: 3194) -/(.*/)?bannermaker/.* -# /bannerjs.php? (easylist.txt: 3193) -/(.*/)?bannerjs\.php\? -# /bannerinc. (easylist.txt: 3192) -/(.*/)?bannerinc\. -bannerinc.*. -# /bannerframeopenads_ (easylist.txt: 3191) -/(.*/)?bannerframeopenads_ -# /bannerframeopenads. (easylist.txt: 3190) -/(.*/)?bannerframeopenads\. -bannerframeopenads.*. -# /bannerframe.*? (easylist.txt: 3189) -/(.*/)?bannerframe\..*\? -bannerframe.*./.*\? -# /bannerfile/ad_ (easylist.txt: 3188) -/(.*/)?bannerfile/ad_ -# /bannerfarm/* (easylist.txt: 3187) -/(.*/)?bannerfarm/.* -# /bannerfarm. (easylist.txt: 3186) -/(.*/)?bannerfarm\. -bannerfarm.*. -# /bannerexchange/* (easylist.txt: 3185) -/(.*/)?bannerexchange/.* -# /bannerdeliver.php (easylist.txt: 3184) -/(.*/)?bannerdeliver\.php -bannerdeliver.php*. -# /bannerconduit. (easylist.txt: 3183) -/(.*/)?bannerconduit\. -bannerconduit.*. -# /bannercode.php (easylist.txt: 3182) -/(.*/)?bannercode\.php -bannercode.php*. -# /banneradviva. (easylist.txt: 3181) -/(.*/)?banneradviva\. -banneradviva.*. -# /banneradverts/* (easylist.txt: 3180) -/(.*/)?banneradverts/.* -# /banneradsgenerator. (easylist.txt: 3179) -/(.*/)?banneradsgenerator\. -banneradsgenerator.*. -# /banneradsajax. (easylist.txt: 3178) -/(.*/)?banneradsajax\. -banneradsajax.*. -# /bannerads/* (easylist.txt: 3177) -/(.*/)?bannerads/.* -# /bannerads. (easylist.txt: 3176) -/(.*/)?bannerads\. -bannerads.*. -# /bannerads- (easylist.txt: 3175) -/(.*/)?bannerads- -bannerads-*. -# /bannerad_ (easylist.txt: 3174) -/(.*/)?bannerad_ -# /bannerad6. (easylist.txt: 3173) -/(.*/)?bannerad6\. -bannerad6.*. -# /bannerad3. (easylist.txt: 3172) -/(.*/)?bannerad3\. -bannerad3.*. -# /bannerad2- (easylist.txt: 3171) -/(.*/)?bannerad2- -bannerad2-*. -# /bannerad1- (easylist.txt: 3170) -/(.*/)?bannerad1- -bannerad1-*. -# /bannerad/* (easylist.txt: 3169) -/(.*/)?bannerad/.* -# /bannerad. (easylist.txt: 3168) -/(.*/)?bannerad\. -bannerad.*. -# /banner_zedo/* (easylist.txt: 3167) -/(.*/)?banner_zedo/.* -# /banner_zanox/* (easylist.txt: 3166) -/(.*/)?banner_zanox/.* -# /banner_view. (easylist.txt: 3165) -/(.*/)?banner_view\. -# /banner_skyscraper. (easylist.txt: 3164) -/(.*/)?banner_skyscraper\. -# /banner_OAS.js (easylist.txt: 3163) -/(.*/)?banner_OAS\.js -# /banner_js.*? (easylist.txt: 3162) -/(.*/)?banner_js\..*\? -# /banner_image.php? (easylist.txt: 3161) -/(.*/)?banner_image\.php\? -# /banner_iframe_ (easylist.txt: 3160) -/(.*/)?banner_iframe_ -# /banner_file.php? (easylist.txt: 3159) -/(.*/)?banner_file\.php\? -# /banner_db.php? (easylist.txt: 3158) -/(.*/)?banner_db\.php\? -# /banner_control.php? (easylist.txt: 3157) -/(.*/)?banner_control\.php\? -# /banner_adv/* (easylist.txt: 3156) -/(.*/)?banner_adv/.* -# /banner_ads_ (easylist.txt: 3155) -/(.*/)?banner_ads_ -# /banner_ads/* (easylist.txt: 3154) -/(.*/)?banner_ads/.* -# /banner_ads. (easylist.txt: 3153) -/(.*/)?banner_ads\. -# /banner_ad_ (easylist.txt: 3152) -/(.*/)?banner_ad_ -# /banner_ad. (easylist.txt: 3151) -/(.*/)?banner_ad\. -# /banner_468x (easylist.txt: 3150) -/(.*/)?banner_468x -# /banner_468. (easylist.txt: 3149) -/(.*/)?banner_468\. -# /banner_125x (easylist.txt: 3148) -/(.*/)?banner_125x -# /banner728x90_ (easylist.txt: 3147) -/(.*/)?banner728x90_ -# /banner468x80. (easylist.txt: 3146) -/(.*/)?banner468x80\. -banner468x80.*. -# /banner468x60. (easylist.txt: 3145) -/(.*/)?banner468x60\. -banner468x60.*. -# /banner468a. (easylist.txt: 3144) -/(.*/)?banner468a\. -banner468a.*. -# /banner468_ (easylist.txt: 3143) -/(.*/)?banner468_ -# /banner468. (easylist.txt: 3142) -/(.*/)?banner468\. -banner468.*. -# /banner460x80. (easylist.txt: 3141) -/(.*/)?banner460x80\. -banner460x80.*. -# /banner20468x60. (easylist.txt: 3140) -/(.*/)?banner20468x60\. -banner20468x60.*. -# /banner160x600- (easylist.txt: 3139) -/(.*/)?banner160x600- -banner160x600-*. -# /banner/virtuagirl (easylist.txt: 3138) -/(.*/)?banner/virtuagirl -# /banner/sponsor_ (easylist.txt: 3137) -/(.*/)?banner/sponsor_ -# /banner/rtads/* (easylist.txt: 3136) -/(.*/)?banner/rtads/.* -# /banner/affiliate/* (easylist.txt: 3135) -/(.*/)?banner/affiliate/.* -# /banner/adv_ (easylist.txt: 3134) -/(.*/)?banner/adv_ -# /banner/adv/* (easylist.txt: 3133) -/(.*/)?banner/adv/.* -# /banner/ad_ (easylist.txt: 3132) -/(.*/)?banner/ad_ -# /banner/ad/* (easylist.txt: 3131) -/(.*/)?banner/ad/.* -# /banner/ad. (easylist.txt: 3130) -/(.*/)?banner/ad\. -# /banner/700 (easylist.txt: 3129) -/(.*/)?banner/700 -# /banner/468 (easylist.txt: 3128) -/(.*/)?banner/468 -# /banner.ws? (easylist.txt: 3127) -/(.*/)?banner\.ws\? -# /banner.php (easylist.txt: 3126) -/(.*/)?banner\.php -banner.php*. -# /banner.htm? (easylist.txt: 3125) -/(.*/)?banner\.htm\? -# /banner.gif? (easylist.txt: 3124) -/(.*/)?banner\.gif\? -# /banner.cgi? (easylist.txt: 3123) -/(.*/)?banner\.cgi\? -# /banner.ca? (easylist.txt: 3122) -/(.*/)?banner\.ca\? -# /banner-ads/* (easylist.txt: 3120) -/(.*/)?banner-ads/.* -# /banner-ad_ (easylist.txt: 3119) -/(.*/)?banner-ad_ -# /banner-ad/* (easylist.txt: 3118) -/(.*/)?banner-ad/.* -# /banner-ad. (easylist.txt: 3117) -/(.*/)?banner-ad\. -banner-ad.*. -# /banner-ad- (easylist.txt: 3116) -/(.*/)?banner-ad- -banner-ad-*. -# /Banner-300x250. (easylist.txt: 3115) -/(.*/)?Banner-300x250\. -Banner-300x250.*. -# /banmanpro/* (easylist.txt: 3114) -/(.*/)?banmanpro/.* -# /banman/* (easylist.txt: 3113) -/(.*/)?banman/.* -# /banman.asp? (easylist.txt: 3112) -/(.*/)?banman\.asp\? -# /banimpress. (easylist.txt: 3111) -/(.*/)?banimpress\. -banimpress.*. -# /ban_m.php? (easylist.txt: 3110) -/(.*/)?ban_m\.php\? -# /ban_ad. (easylist.txt: 3109) -/(.*/)?ban_ad\. -# /ban728x90. (easylist.txt: 3108) -/(.*/)?ban728x90\. -ban728x90.*. -# /ban728.php (easylist.txt: 3107) -/(.*/)?ban728\.php -ban728.php*. -# /ban728.html (easylist.txt: 3106) -/(.*/)?ban728\.html -ban728.html*. -# /ban300.php (easylist.txt: 3105) -/(.*/)?ban300\.php -ban300.php*. -# /ban300.html (easylist.txt: 3104) -/(.*/)?ban300\.html -ban300.html*. -# /ban160.php (easylist.txt: 3103) -/(.*/)?ban160\.php -ban160.php*. -# /ban.php? (easylist.txt: 3102) -/(.*/)?ban\.php\? -# /badge_ad_ (easylist.txt: 3101) -/(.*/)?badge_ad_ -# /backlinxxx/js/* (easylist.txt: 3100) -/(.*/)?backlinxxx/js/.* -# /backgroundAdvertising. (easylist.txt: 3099) -/(.*/)?backgroundAdvertising\. -backgroundAdvertising.*. -# /BackgroundAd40. (easylist.txt: 3098) -/(.*/)?BackgroundAd40\. -BackgroundAd40.*. -# /background_ad_ (easylist.txt: 3097) -/(.*/)?background_ad_ -# /back-ad. (easylist.txt: 3096) -/(.*/)?back-ad\. -back-ad.*. -# /b.ads. (easylist.txt: 3095) -/(.*/)?b\.ads\. -b.ads.*. -# /awepop. (easylist.txt: 3094) -/(.*/)?awepop\. -awepop.*. -# /awempire. (easylist.txt: 3093) -/(.*/)?awempire\. -awempire.*. -# /awe2.js (easylist.txt: 3092) -/(.*/)?awe2\.js -awe2.js*. -# /auto_ad_ (easylist.txt: 3091) -/(.*/)?auto_ad_ -# /austria_ad. (easylist.txt: 3090) -/(.*/)?austria_ad\. -# /auditudebanners. (easylist.txt: 3089) -/(.*/)?auditudebanners\. -auditudebanners.*. -# /auditudeadunit. (easylist.txt: 3088) -/(.*/)?auditudeadunit\. -auditudeadunit.*. -# /audioads/* (easylist.txt: 3087) -/(.*/)?audioads/.* -# /audio-ads/* (easylist.txt: 3086) -/(.*/)?audio-ads/.* -# /au2m8_preloader/* (easylist.txt: 3085) -/(.*/)?au2m8_preloader/.* -# /AttractiveAdsCube. (easylist.txt: 3084) -/(.*/)?AttractiveAdsCube\. -AttractiveAdsCube.*. -# /AttractiveAds_ (easylist.txt: 3083) -/(.*/)?AttractiveAds_ -# /AttractiveAds/* (easylist.txt: 3082) -/(.*/)?AttractiveAds/.* -# /atrads. (easylist.txt: 3081) -/(.*/)?atrads\. -atrads.*. -# /atnads/* (easylist.txt: 3080) -/(.*/)?atnads/.* -# /athena/tag/? (easylist.txt: 3079) -/(.*/)?athena/tag/\? -# /asyncspc. (easylist.txt: 3078) -/(.*/)?asyncspc\. -asyncspc.*. -# /asyncadload. (easylist.txt: 3076) -/(.*/)?asyncadload\. -asyncadload.*. -# /ast/ads/* (easylist.txt: 3075) -/(.*/)?ast/ads/.* -# /assets/sponsored/* (easylist.txt: 3074) -/(.*/)?assets/sponsored/.* -# /assets/doubleclick/* (easylist.txt: 3073) -/(.*/)?assets/doubleclick/.* -# /assets/adv/* (easylist.txt: 3072) -/(.*/)?assets/adv/.* -# /assets/ads_ (easylist.txt: 3071) -/(.*/)?assets/ads_ -# /assets/ads/* (easylist.txt: 3070) -/(.*/)?assets/ads/.* -# /assets/ads- (easylist.txt: 3069) -/(.*/)?assets/ads- -# /assets/ad/* (easylist.txt: 3068) -/(.*/)?assets/ad/.* -# /assets/ad- (easylist.txt: 3067) -/(.*/)?assets/ad- -# /asset/adv/* (easylist.txt: 3066) -/(.*/)?asset/adv/.* -# /asset/ad/* (easylist.txt: 3065) -/(.*/)?asset/ad/.* -# /aspbanner_inc.asp? (easylist.txt: 3064) -/(.*/)?aspbanner_inc\.asp\? -# /aseadnshow. (easylist.txt: 3063) -/(.*/)?aseadnshow\. -aseadnshow.*. -# /as_u/ads/* (easylist.txt: 3062) -/(.*/)?as_u/ads/.* -# /as3overstreamplatformadapter. (easylist.txt: 3061) -/(.*/)?as3overstreamplatformadapter\. -as3overstreamplatformadapter.*. -# /as/gb?stid= (easylist.txt: 3060) -/(.*/)?as/gb\?stid= -# /as/gb2?stid= (easylist.txt: 3059) -/(.*/)?as/gb2\?stid= -# /artimediatargetads. (easylist.txt: 3058) -/(.*/)?artimediatargetads\. -artimediatargetads.*. -# /articleSponsorDeriv_ (easylist.txt: 3057) -/(.*/)?articleSponsorDeriv_ -# /article_ad. (easylist.txt: 3056) -/(.*/)?article_ad\. -# /Article-Ad- (easylist.txt: 3055) -/(.*/)?Article-Ad- -Article-Ad-*. -# /aptads/* (easylist.txt: 3054) -/(.*/)?aptads/.* -# /app/ads/* (easylist.txt: 3053) -/(.*/)?app/ads/.* -# /app/ads. (easylist.txt: 3052) -/(.*/)?app/ads\. -# /app.ads. (easylist.txt: 3051) -/(.*/)?app\.ads\. -app.ads.*. -# /app.ads- (easylist.txt: 3050) -/(.*/)?app\.ads- -app.ads-*. -# /apopwin. (easylist.txt: 3049) -/(.*/)?apopwin\. -apopwin.*. -# /api/ads/* (easylist.txt: 3048) -/(.*/)?api/ads/.* -# /api/ad/* (easylist.txt: 3047) -/(.*/)?api/ad/.* -# /api.ad. (easylist.txt: 3046) -/(.*/)?api\.ad\. -api.ad.*. -# /anyad.js (easylist.txt: 3045) -/(.*/)?anyad\.js -anyad.js*. -# /announce/adv/* (easylist.txt: 3044) -/(.*/)?announce/adv/.* -# /annonser/* (easylist.txt: 3043) -/(.*/)?annonser/.* -# /annonser. (easylist.txt: 3042) -/(.*/)?annonser\. -annonser.*. -# /annonse/* (easylist.txt: 3041) -/(.*/)?annonse/.* -# /anchorad. (easylist.txt: 3039) -/(.*/)?anchorad\. -anchorad.*. -# /amzn_omakase. (easylist.txt: 3038) -/(.*/)?amzn_omakase\. -# /amzn_ads. (easylist.txt: 3037) -/(.*/)?amzn_ads\. -# /amazon/widget/* (easylist.txt: 3036) -/(.*/)?amazon/widget/.* -# /amazon/iframeproxy- (easylist.txt: 3035) -/(.*/)?amazon/iframeproxy- -# /am/ads. (easylist.txt: 3034) -/(.*/)?am/ads\. -# /alwebad_ (easylist.txt: 3033) -/(.*/)?alwebad_ -# /alternet.ad? (easylist.txt: 3032) -/(.*/)?alternet\.ad\? -# /all_ads/* (easylist.txt: 3031) -/(.*/)?all_ads/.* -# /all/ad/* (easylist.txt: 3030) -/(.*/)?all/ad/.* -# /ak/ads/* (easylist.txt: 3029) -/(.*/)?ak/ads/.* -# /ak-ads- (easylist.txt: 3028) -/(.*/)?ak-ads- -ak-ads-*. -# /ajs?auid= (easylist.txt: 3027) -/(.*/)?ajs\?auid= -# /ajs.php? (easylist.txt: 3026) -/(.*/)?ajs\.php\? -# /ajrotator/* (easylist.txt: 3025) -/(.*/)?ajrotator/.* -# /ajaxads. (easylist.txt: 3024) -/(.*/)?ajaxads\. -ajaxads.*. -# /ajaxAd? (easylist.txt: 3023) -/(.*/)?ajaxAd\? -# /ajax/ads/* (easylist.txt: 3022) -/(.*/)?ajax/ads/.* -# /ajax/ad/* (easylist.txt: 3021) -/(.*/)?ajax/ad/.* -# /ajax-advert. (easylist.txt: 3020) -/(.*/)?ajax-advert\. -ajax-advert.*. -# /ajax-advert- (easylist.txt: 3019) -/(.*/)?ajax-advert- -ajax-advert-*. -# /ajax-ad/* (easylist.txt: 3018) -/(.*/)?ajax-ad/.* -# /ahmestatic/ads/* (easylist.txt: 3017) -/(.*/)?ahmestatic/ads/.* -# /afr?auid= (easylist.txt: 3016) -/(.*/)?afr\?auid= -# /afr.php? (easylist.txt: 3015) -/(.*/)?afr\.php\? -# /affpic/* (easylist.txt: 3014) -/(.*/)?affpic/.* -# /affliate-banners/* (easylist.txt: 3013) -/(.*/)?affliate-banners/.* -# /affimg/* (easylist.txt: 3012) -/(.*/)?affimg/.* -# /affimages/* (easylist.txt: 3011) -/(.*/)?affimages/.* -# /affilitebanners/* (easylist.txt: 3010) -/(.*/)?affilitebanners/.* -# /affilinet/* (easylist.txt: 3009) -/(.*/)?affilinet/.* -# /affiliationcash. (easylist.txt: 3008) -/(.*/)?affiliationcash\. -affiliationcash.*. -# /affiliation/* (easylist.txt: 3007) -/(.*/)?affiliation/.* -# /affiliatewiz/* (easylist.txt: 3006) -/(.*/)?affiliatewiz/.* -# /affiliatetags/* (easylist.txt: 3005) -/(.*/)?affiliatetags/.* -# /affiliateserver. (easylist.txt: 3004) -/(.*/)?affiliateserver\. -affiliateserver.*. -# /affiliates/contextual. (easylist.txt: 3003) -/(.*/)?affiliates/contextual\. -# /affiliates/ban (easylist.txt: 3002) -/(.*/)?affiliates/ban -# /affiliates/*/show_banner. (easylist.txt: 3001) -/(.*/)?affiliates/.*/show_banner\. -# /affiliates.*.aspx? (easylist.txt: 3000) -/(.*/)?affiliates\..*\.aspx\? -affiliates.*./.*\.aspx\? -# /affiliateimages/* (easylist.txt: 2999) -/(.*/)?affiliateimages/.* -# /affiliatebanners/* (easylist.txt: 2998) -/(.*/)?affiliatebanners/.* -# /affiliatebanner/* (easylist.txt: 2997) -/(.*/)?affiliatebanner/.* -# /affiliateadvertisement. (easylist.txt: 2996) -/(.*/)?affiliateadvertisement\. -affiliateadvertisement.*. -# /affiliateads/* (easylist.txt: 2995) -/(.*/)?affiliateads/.* -# /affiliate_show_iframe. (easylist.txt: 2994) -/(.*/)?affiliate_show_iframe\. -# /affiliate_show_banner. (easylist.txt: 2993) -/(.*/)?affiliate_show_banner\. -# /affiliate_resources/* (easylist.txt: 2992) -/(.*/)?affiliate_resources/.* -# /affiliate_base/banners/* (easylist.txt: 2991) -/(.*/)?affiliate_base/banners/.* -# /affiliate_banners/* (easylist.txt: 2990) -/(.*/)?affiliate_banners/.* -# /affiliate_banner/* (easylist.txt: 2989) -/(.*/)?affiliate_banner/.* -# /affiliate/small_banner/* (easylist.txt: 2988) -/(.*/)?affiliate/small_banner/.* -# /affiliate/script.php? (easylist.txt: 2987) -/(.*/)?affiliate/script\.php\? -# /affiliate/promo/* (easylist.txt: 2986) -/(.*/)?affiliate/promo/.* -# /affiliate/promo- (easylist.txt: 2985) -/(.*/)?affiliate/promo- -# /affiliate/banners/* (easylist.txt: 2984) -/(.*/)?affiliate/banners/.* -# /affiliate/banner/* (easylist.txt: 2983) -/(.*/)?affiliate/banner/.* -# /affiliate/ads/* (easylist.txt: 2982) -/(.*/)?affiliate/ads/.* -# /affiliate/ad/* (easylist.txt: 2981) -/(.*/)?affiliate/ad/.* -# /affiliate-content/* (easylist.txt: 2980) -/(.*/)?affiliate-content/.* -# /Affiliate-Banner- (easylist.txt: 2979) -/(.*/)?Affiliate-Banner- -Affiliate-Banner-*. -# /affilatebanner. (easylist.txt: 2978) -/(.*/)?affilatebanner\. -affilatebanner.*. -# /affclick/* (easylist.txt: 2977) -/(.*/)?affclick/.* -# /affbeat/banners/* (easylist.txt: 2976) -/(.*/)?affbeat/banners/.* -# /affbanners/* (easylist.txt: 2975) -/(.*/)?affbanners/.* -# /affbanner/* (easylist.txt: 2974) -/(.*/)?affbanner/.* -# /affads/* (easylist.txt: 2973) -/(.*/)?affads/.* -# /affad? (easylist.txt: 2972) -/(.*/)?affad\? -# /aff_i?offer_id= (easylist.txt: 2971) -/(.*/)?aff_i\?offer_id= -# /aff_frame. (easylist.txt: 2970) -/(.*/)?aff_frame\. -# /aff_banners/* (easylist.txt: 2969) -/(.*/)?aff_banners/.* -# /aff_ad? (easylist.txt: 2968) -/(.*/)?aff_ad\? -# /aff/images/* (easylist.txt: 2967) -/(.*/)?aff/images/.* -# /aff/ads_ (easylist.txt: 2966) -/(.*/)?aff/ads_ -# /aff.htm (easylist.txt: 2965) -/(.*/)?aff\.htm -aff.htm*. -# /aff-exchange/* (easylist.txt: 2964) -/(.*/)?aff-exchange/.* -# /afdsafads/* (easylist.txt: 2963) -/(.*/)?afdsafads/.* -# /afcsearchads. (easylist.txt: 2962) -/(.*/)?afcsearchads\. -afcsearchads.*. -# /afcads. (easylist.txt: 2961) -/(.*/)?afcads\. -afcads.*. -# /afc-match?q= (easylist.txt: 2960) -/(.*/)?afc-match\?q= -# /adztop. (easylist.txt: 2959) -/(.*/)?adztop\. -adztop.*. -# /adzonetop. (easylist.txt: 2958) -/(.*/)?adzonetop\. -adzonetop.*. -# /adzonesidead. (easylist.txt: 2957) -/(.*/)?adzonesidead\. -adzonesidead.*. -# /adzones/* (easylist.txt: 2956) -/(.*/)?adzones/.* -# /adzoneright. (easylist.txt: 2955) -/(.*/)?adzoneright\. -adzoneright.*. -# /adzoneplayerright. (easylist.txt: 2954) -/(.*/)?adzoneplayerright\. -adzoneplayerright.*. -# /adzonelegend. (easylist.txt: 2953) -/(.*/)?adzonelegend\. -adzonelegend.*. -# /adzoneleft. (easylist.txt: 2952) -/(.*/)?adzoneleft\. -adzoneleft.*. -# /adzonecenteradhomepage. (easylist.txt: 2951) -/(.*/)?adzonecenteradhomepage\. -adzonecenteradhomepage.*. -# /adzonebottom. (easylist.txt: 2950) -/(.*/)?adzonebottom\. -adzonebottom.*. -# /adzonebelowplayer. (easylist.txt: 2949) -/(.*/)?adzonebelowplayer\. -adzonebelowplayer.*. -# /AdZoneAdXp. (easylist.txt: 2948) -/(.*/)?AdZoneAdXp\. -AdZoneAdXp.*. -# /adzone_ (easylist.txt: 2947) -/(.*/)?adzone_ -# /adzone4. (easylist.txt: 2946) -/(.*/)?adzone4\. -adzone4.*. -# /adzone/* (easylist.txt: 2945) -/(.*/)?adzone/.* -# /adzone. (easylist.txt: 2944) -/(.*/)?adzone\. -adzone.*. -# /adzilla/* (easylist.txt: 2943) -/(.*/)?adzilla/.* -# /adzerk2_ (easylist.txt: 2942) -/(.*/)?adzerk2_ -# /adzbotm. (easylist.txt: 2941) -/(.*/)?adzbotm\. -adzbotm.*. -# /adyea. (easylist.txt: 2940) -/(.*/)?adyea\. -adyea.*. -# /adyard300. (easylist.txt: 2939) -/(.*/)?adyard300\. -adyard300.*. -# /adyard. (easylist.txt: 2938) -/(.*/)?adyard\. -adyard.*. -# /adxx.php? (easylist.txt: 2937) -/(.*/)?adxx\.php\? -# /adxsite. (easylist.txt: 2936) -/(.*/)?adxsite\. -adxsite.*. -# /adx_iframe_ (easylist.txt: 2935) -/(.*/)?adx_iframe_ -# /adx_flash. (easylist.txt: 2934) -/(.*/)?adx_flash\. -# /adx_exo_ (easylist.txt: 2933) -/(.*/)?adx_exo_ -# /adx2. (easylist.txt: 2932) -/(.*/)?adx2\. -adx2.*. -# /adx160. (easylist.txt: 2931) -/(.*/)?adx160\. -adx160.*. -# /adx/ads? (easylist.txt: 2930) -/(.*/)?adx/ads\? -# /adwriter2. (easylist.txt: 2928) -/(.*/)?adwriter2\. -adwriter2.*. -# /adwrapperiframe. (easylist.txt: 2927) -/(.*/)?adwrapperiframe\. -adwrapperiframe.*. -# /adwrapper/* (easylist.txt: 2926) -/(.*/)?adwrapper/.* -# /adworx_ (easylist.txt: 2925) -/(.*/)?adworx_ -# /adworx. (easylist.txt: 2924) -/(.*/)?adworx\. -adworx.*. -# /adworldmedia/* (easylist.txt: 2923) -/(.*/)?adworldmedia/.* -# /adworks/* (easylist.txt: 2922) -/(.*/)?adworks/.* -# /adWorking/* (easylist.txt: 2920) -/(.*/)?adWorking/.* -# /adwordstracking.js (easylist.txt: 2919) -/(.*/)?adwordstracking\.js -adwordstracking.js*. -# /adwords/* (easylist.txt: 2918) -/(.*/)?adwords/.* -# /adwolf. (easylist.txt: 2916) -/(.*/)?adwolf\. -adwolf.*. -# /adwizard_ (easylist.txt: 2915) -/(.*/)?adwizard_ -# /adwizard. (easylist.txt: 2914) -/(.*/)?adwizard\. -adwizard.*. -# /adwiz/* (easylist.txt: 2913) -/(.*/)?adwiz/.* -# /adwiz. (easylist.txt: 2912) -/(.*/)?adwiz\. -adwiz.*. -# /adWiseShopPlus1. (easylist.txt: 2911) -/(.*/)?adWiseShopPlus1\. -adWiseShopPlus1.*. -# /adwise/* (easylist.txt: 2910) -/(.*/)?adwise/.* -# /adwidgets/* (easylist.txt: 2909) -/(.*/)?adwidgets/.* -# /adwidget/* (easylist.txt: 2908) -/(.*/)?adwidget/.* -# /adweb33. (easylist.txt: 2907) -/(.*/)?adweb33\. -adweb33.*. -# /adweb2. (easylist.txt: 2906) -/(.*/)?adweb2\. -adweb2.*. -# /adweb. (easylist.txt: 2905) -/(.*/)?adweb\. -adweb.*. -# /adw2.shtml (easylist.txt: 2904) -/(.*/)?adw2\.shtml -adw2.shtml*. -# /adw.shtml (easylist.txt: 2903) -/(.*/)?adw\.shtml -adw.shtml*. -# /advzones/* (easylist.txt: 2902) -/(.*/)?advzones/.* -# /AdvWindow/* (easylist.txt: 2901) -/(.*/)?AdvWindow/.* -# /advweb. (easylist.txt: 2900) -/(.*/)?advweb\. -advweb.*. -# /advtemplate_ (easylist.txt: 2899) -/(.*/)?advtemplate_ -# /advtemplate/* (easylist.txt: 2898) -/(.*/)?advtemplate/.* -# /advtarget/* (easylist.txt: 2897) -/(.*/)?advtarget/.* -# /advt2. (easylist.txt: 2896) -/(.*/)?advt2\. -advt2.*. -# /advt/* (easylist.txt: 2895) -/(.*/)?advt/.* -# /advt. (easylist.txt: 2894) -/(.*/)?advt\. -advt.*. -# /advshow. (easylist.txt: 2893) -/(.*/)?advshow\. -advshow.*. -# /advscripts/* (easylist.txt: 2892) -/(.*/)?advscripts/.* -# /advscript. (easylist.txt: 2891) -/(.*/)?advscript\. -advscript.*. -# /advs/* (easylist.txt: 2890) -/(.*/)?advs/.* -# /advs.ads. (easylist.txt: 2889) -/(.*/)?advs\.ads\. -advs.ads.*. -# /advrotator. (easylist.txt: 2888) -/(.*/)?advrotator\. -advrotator.*. -# /advris/* (easylist.txt: 2887) -/(.*/)?advris/.* -# /advpreload. (easylist.txt: 2886) -/(.*/)?advpreload\. -advpreload.*. -# /advPop. (easylist.txt: 2885) -/(.*/)?advPop\. -advPop.*. -# /advpartnerinit. (easylist.txt: 2884) -/(.*/)?advpartnerinit\. -advpartnerinit.*. -# /advolatility. (easylist.txt: 2883) -/(.*/)?advolatility\. -advolatility.*. -# /advloader. (easylist.txt: 2882) -/(.*/)?advloader\. -advloader.*. -# /advlink300. (easylist.txt: 2881) -/(.*/)?advlink300\. -advlink300.*. -# /adVisit. (easylist.txt: 2880) -/(.*/)?adVisit\. -adVisit.*. -# /advision. (easylist.txt: 2879) -/(.*/)?advision\. -advision.*. -# /advinfo. (easylist.txt: 2878) -/(.*/)?advinfo\. -advinfo.*. -# /adviframe/* (easylist.txt: 2877) -/(.*/)?adviframe/.* -# /adviewer. (easylist.txt: 2876) -/(.*/)?adviewer\. -adviewer.*. -# /adviewed. (easylist.txt: 2875) -/(.*/)?adviewed\. -adviewed.*. -# /adviewas3. (easylist.txt: 2874) -/(.*/)?adviewas3\. -adviewas3.*. -# /adview_ (easylist.txt: 2873) -/(.*/)?adview_ -# /adview? (easylist.txt: 2872) -/(.*/)?adview\? -# /adview/* (easylist.txt: 2871) -/(.*/)?adview/.* -# /adview. (easylist.txt: 2870) -/(.*/)?adview\. -adview.*. -# /advice-ads. (easylist.txt: 2869) -/(.*/)?advice-ads\. -advice-ads.*. -# /advhd. (easylist.txt: 2868) -/(.*/)?advhd\. -advhd.*. -# /advfiles/* (easylist.txt: 2867) -/(.*/)?advfiles/.* -# /advf1. (easylist.txt: 2866) -/(.*/)?advf1\. -advf1.*. -# /advertwebapp. (easylist.txt: 2865) -/(.*/)?advertwebapp\. -advertwebapp.*. -# /advertverticallong. (easylist.txt: 2864) -/(.*/)?advertverticallong\. -advertverticallong.*. -# /adverttop. (easylist.txt: 2863) -/(.*/)?adverttop\. -adverttop.*. -# /advertstub. (easylist.txt: 2862) -/(.*/)?advertstub\. -advertstub.*. -# /advertsquare. (easylist.txt: 2861) -/(.*/)?advertsquare\. -advertsquare.*. -# /advertsky. (easylist.txt: 2860) -/(.*/)?advertsky\. -advertsky.*. -# /advertserve. (easylist.txt: 2859) -/(.*/)?advertserve\. -advertserve.*. -# /adverts_ (easylist.txt: 2858) -/(.*/)?adverts_ -# /adverts/* (easylist.txt: 2857) -/(.*/)?adverts/.* -# /adverts. (easylist.txt: 2856) -/(.*/)?adverts\. -adverts.*. -# /advertright. (easylist.txt: 2855) -/(.*/)?advertright\. -advertright.*. -# /advertrail. (easylist.txt: 2854) -/(.*/)?advertrail\. -advertrail.*. -# /advertpro/* (easylist.txt: 2853) -/(.*/)?advertpro/.* -# /advertpixelmedia1. (easylist.txt: 2852) -/(.*/)?advertpixelmedia1\. -advertpixelmedia1.*. -# /advertphp/* (easylist.txt: 2851) -/(.*/)?advertphp/.* -# /advertorials/* (easylist.txt: 2850) -/(.*/)?advertorials/.* -# /advertorial_ (easylist.txt: 2849) -/(.*/)?advertorial_ -# /advertorial/* (easylist.txt: 2848) -/(.*/)?advertorial/.* -# /advertmsig. (easylist.txt: 2847) -/(.*/)?advertmsig\. -advertmsig.*. -# /advertmedia/* (easylist.txt: 2846) -/(.*/)?advertmedia/.* -# /advertlayer. (easylist.txt: 2845) -/(.*/)?advertlayer\. -advertlayer.*. -# /advertize_ (easylist.txt: 2844) -/(.*/)?advertize_ -# /advertisments/* (easylist.txt: 2843) -/(.*/)?advertisments/.* -# /advertisment_ (easylist.txt: 2842) -/(.*/)?advertisment_ -# /advertisment1- (easylist.txt: 2841) -/(.*/)?advertisment1- -advertisment1-*. -# /advertisment/* (easylist.txt: 2840) -/(.*/)?advertisment/.* -# /advertisment. (easylist.txt: 2839) -/(.*/)?advertisment\. -advertisment.*. -# /advertisment- (easylist.txt: 2838) -/(.*/)?advertisment- -advertisment-*. -# /advertisingwidgets/* (easylist.txt: 2837) -/(.*/)?advertisingwidgets/.* -# /advertisings. (easylist.txt: 2836) -/(.*/)?advertisings\. -advertisings.*. -# /advertisingmodule. (easylist.txt: 2835) -/(.*/)?advertisingmodule\. -advertisingmodule.*. -# /advertisingmanual. (easylist.txt: 2834) -/(.*/)?advertisingmanual\. -advertisingmanual.*. -# /advertisinglinks_ (easylist.txt: 2833) -/(.*/)?advertisinglinks_ -# /AdvertisingIsPresent6? (easylist.txt: 2832) -/(.*/)?AdvertisingIsPresent6\? -# /advertisingimageexte/* (easylist.txt: 2831) -/(.*/)?advertisingimageexte/.* -# /advertisingcontent/* (easylist.txt: 2830) -/(.*/)?advertisingcontent/.* -# /advertisingbutton. (easylist.txt: 2829) -/(.*/)?advertisingbutton\. -advertisingbutton.*. -# /advertisingbanner_ (easylist.txt: 2828) -/(.*/)?advertisingbanner_ -# /advertisingbanner1. (easylist.txt: 2827) -/(.*/)?advertisingbanner1\. -advertisingbanner1.*. -# /advertisingbanner/* (easylist.txt: 2826) -/(.*/)?advertisingbanner/.* -# /advertisingbanner. (easylist.txt: 2825) -/(.*/)?advertisingbanner\. -advertisingbanner.*. -# /advertising_ (easylist.txt: 2824) -/(.*/)?advertising_ -# /advertising? (easylist.txt: 2823) -/(.*/)?advertising\? -# /advertising300x250. (easylist.txt: 2822) -/(.*/)?advertising300x250\. -advertising300x250.*. -# /advertising2. (easylist.txt: 2821) -/(.*/)?advertising2\. -advertising2.*. -# /advertising02. (easylist.txt: 2820) -/(.*/)?advertising02\. -advertising02.*. -# /advertising. (easylist.txt: 2818) -/(.*/)?advertising\. -advertising.*. -# /advertisewithus_ (easylist.txt: 2816) -/(.*/)?advertisewithus_ -# /advertises/* (easylist.txt: 2815) -/(.*/)?advertises/.* -# /advertiserwidget. (easylist.txt: 2814) -/(.*/)?advertiserwidget\. -advertiserwidget.*. -# /advertisementview/* (easylist.txt: 2809) -/(.*/)?advertisementview/.* -# /AdvertisementShare. (easylist.txt: 2808) -/(.*/)?AdvertisementShare\. -AdvertisementShare.*. -# /advertisements_ (easylist.txt: 2807) -/(.*/)?advertisements_ -# /advertisements2. (easylist.txt: 2806) -/(.*/)?advertisements2\. -advertisements2.*. -# /advertisements/* (easylist.txt: 2805) -/(.*/)?advertisements/.* -# /advertisements. (easylist.txt: 2804) -/(.*/)?advertisements\. -advertisements.*. -# /advertisements- (easylist.txt: 2803) -/(.*/)?advertisements- -advertisements-*. -# /advertisementrotation. (easylist.txt: 2802) -/(.*/)?advertisementrotation\. -advertisementrotation.*. -# /advertisementmapping. (easylist.txt: 2801) -/(.*/)?advertisementmapping\. -advertisementmapping.*. -# /advertisementheader. (easylist.txt: 2800) -/(.*/)?advertisementheader\. -advertisementheader.*. -# /advertisementAPI/* (easylist.txt: 2799) -/(.*/)?advertisementAPI/.* -# /advertisement_ (easylist.txt: 2798) -/(.*/)?advertisement_ -# /advertisement3. (easylist.txt: 2797) -/(.*/)?advertisement3\. -advertisement3.*. -# /advertisement2. (easylist.txt: 2796) -/(.*/)?advertisement2\. -advertisement2.*. -# /advertisement160. (easylist.txt: 2795) -/(.*/)?advertisement160\. -advertisement160.*. -# /advertisement1. (easylist.txt: 2794) -/(.*/)?advertisement1\. -advertisement1.*. -# /advertisement/* (easylist.txt: 2793) -/(.*/)?advertisement/.* -# /advertisement. (easylist.txt: 2792) -/(.*/)?advertisement\. -advertisement.*. -# /advertisement- (easylist.txt: 2791) -/(.*/)?advertisement- -advertisement-*. -# /advertisehere. (easylist.txt: 2790) -/(.*/)?advertisehere\. -advertisehere.*. -# /advertise_ (easylist.txt: 2789) -/(.*/)?advertise_ -# /advertise125x125. (easylist.txt: 2788) -/(.*/)?advertise125x125\. -advertise125x125.*. -# /advertise/* (easylist.txt: 2787) -/(.*/)?advertise/.* -# /advertise- (easylist.txt: 2785) -/(.*/)?advertise- -advertise-*. -# /advertical. (easylist.txt: 2784) -/(.*/)?advertical\. -advertical.*. -# /adverthorisontalfullwidth. (easylist.txt: 2783) -/(.*/)?adverthorisontalfullwidth\. -adverthorisontalfullwidth.*. -# /adverth. (easylist.txt: 2782) -/(.*/)?adverth\. -adverth.*. -# /advertguruonline1. (easylist.txt: 2781) -/(.*/)?advertguruonline1\. -advertguruonline1.*. -# /advertbox. (easylist.txt: 2780) -/(.*/)?advertbox\. -advertbox.*. -# /advertbanner2. (easylist.txt: 2779) -/(.*/)?advertbanner2\. -advertbanner2.*. -# /advertbanner. (easylist.txt: 2778) -/(.*/)?advertbanner\. -advertbanner.*. -# /advert_ (easylist.txt: 2777) -/(.*/)?advert_ -# /advert? (easylist.txt: 2776) -/(.*/)?advert\? -# /advert6. (easylist.txt: 2775) -/(.*/)?advert6\. -advert6.*. -# /advert5. (easylist.txt: 2774) -/(.*/)?advert5\. -advert5.*. -# /advert4. (easylist.txt: 2773) -/(.*/)?advert4\. -advert4.*. -# /advert37. (easylist.txt: 2772) -/(.*/)?advert37\. -advert37.*. -# /advert36. (easylist.txt: 2771) -/(.*/)?advert36\. -advert36.*. -# /advert35. (easylist.txt: 2770) -/(.*/)?advert35\. -advert35.*. -# /advert34. (easylist.txt: 2769) -/(.*/)?advert34\. -advert34.*. -# /advert33. (easylist.txt: 2768) -/(.*/)?advert33\. -advert33.*. -# /advert32. (easylist.txt: 2767) -/(.*/)?advert32\. -advert32.*. -# /advert31. (easylist.txt: 2766) -/(.*/)?advert31\. -advert31.*. -# /advert3. (easylist.txt: 2765) -/(.*/)?advert3\. -advert3.*. -# /advert2. (easylist.txt: 2764) -/(.*/)?advert2\. -advert2.*. -# /advert1/* (easylist.txt: 2763) -/(.*/)?advert1/.* -# /advert1. (easylist.txt: 2762) -/(.*/)?advert1\. -advert1.*. -# /advert01. (easylist.txt: 2761) -/(.*/)?advert01\. -advert01.*. -# /advert/* (easylist.txt: 2760) -/(.*/)?advert/.* -# /advert. (easylist.txt: 2759) -/(.*/)?advert\. -advert.*. -# /advert- (easylist.txt: 2758) -/(.*/)?advert- -advert-*. -# /adversting? (easylist.txt: 2757) -/(.*/)?adversting\? -# /adversting/* (easylist.txt: 2756) -/(.*/)?adversting/.* -# /adverserve. (easylist.txt: 2755) -/(.*/)?adverserve\. -adverserve.*. -# /adverfisement2. (easylist.txt: 2754) -/(.*/)?adverfisement2\. -adverfisement2.*. -# /adverfisement. (easylist.txt: 2753) -/(.*/)?adverfisement\. -adverfisement.*. -# /adver_hor. (easylist.txt: 2752) -/(.*/)?adver_hor\. -# /adver. (easylist.txt: 2751) -/(.*/)?adver\. -adver.*. -# /adver-left. (easylist.txt: 2750) -/(.*/)?adver-left\. -adver-left.*. -# /advengine. (easylist.txt: 2749) -/(.*/)?advengine\. -advengine.*. -# /advdoc/* (easylist.txt: 2748) -/(.*/)?advdoc/.* -# /advdl. (easylist.txt: 2747) -/(.*/)?advdl\. -advdl.*. -# /advcounter. (easylist.txt: 2746) -/(.*/)?advcounter\. -advcounter.*. -# /advcontents. (easylist.txt: 2745) -/(.*/)?advcontents\. -advcontents.*. -# /advbanners/* (easylist.txt: 2744) -/(.*/)?advbanners/.* -# /advbanner/* (easylist.txt: 2743) -/(.*/)?advbanner/.* -# /advault. (easylist.txt: 2742) -/(.*/)?advault\. -advault.*. -# /advanced-ads- (easylist.txt: 2741) -/(.*/)?advanced-ads- -advanced-ads-*. -# /advaluewriter. (easylist.txt: 2740) -/(.*/)?advaluewriter\. -advaluewriter.*. -# /advalue_ (easylist.txt: 2739) -/(.*/)?advalue_ -# /advalue/* (easylist.txt: 2738) -/(.*/)?advalue/.* -# /adv_vertical. (easylist.txt: 2737) -/(.*/)?adv_vertical\. -# /adv_vert. (easylist.txt: 2736) -/(.*/)?adv_vert\. -# /adv_top. (easylist.txt: 2735) -/(.*/)?adv_top\. -# /adv_teasers. (easylist.txt: 2734) -/(.*/)?adv_teasers\. -# /adv_server. (easylist.txt: 2733) -/(.*/)?adv_server\. -# /adv_script_ (easylist.txt: 2732) -/(.*/)?adv_script_ -# /adv_player_ (easylist.txt: 2731) -/(.*/)?adv_player_ -# /adv_out. (easylist.txt: 2730) -/(.*/)?adv_out\. -# /adv_manager_ (easylist.txt: 2729) -/(.*/)?adv_manager_ -# /adv_link. (easylist.txt: 2728) -/(.*/)?adv_link\. -# /adv_library3. (easylist.txt: 2727) -/(.*/)?adv_library3\. -# /adv_left_ (easylist.txt: 2726) -/(.*/)?adv_left_ -# /adv_image/* (easylist.txt: 2725) -/(.*/)?adv_image/.* -# /adv_horiz. (easylist.txt: 2724) -/(.*/)?adv_horiz\. -# /adv_frame/* (easylist.txt: 2723) -/(.*/)?adv_frame/.* -# /adv_flash. (easylist.txt: 2722) -/(.*/)?adv_flash\. -# /adv_display. (easylist.txt: 2721) -/(.*/)?adv_display\. -# /adv_burt_ (easylist.txt: 2720) -/(.*/)?adv_burt_ -# /adv_box_ (easylist.txt: 2719) -/(.*/)?adv_box_ -# /adv_banner_ (easylist.txt: 2718) -/(.*/)?adv_banner_ -# /adv_background/* (easylist.txt: 2717) -/(.*/)?adv_background/.* -# /adv_468. (easylist.txt: 2716) -/(.*/)?adv_468\. -# /adv_2. (easylist.txt: 2715) -/(.*/)?adv_2\. -# /adv8. (easylist.txt: 2714) -/(.*/)?adv8\. -adv8.*. -# /adv6. (easylist.txt: 2713) -/(.*/)?adv6\. -adv6.*. -# /adv5. (easylist.txt: 2712) -/(.*/)?adv5\. -adv5.*. -# /Adv468. (easylist.txt: 2711) -/(.*/)?Adv468\. -Adv468.*. -# /adv4. (easylist.txt: 2710) -/(.*/)?adv4\. -adv4.*. -# /adv3. (easylist.txt: 2709) -/(.*/)?adv3\. -adv3.*. -# /adv2. (easylist.txt: 2708) -/(.*/)?adv2\. -adv2.*. -# /adv180x150. (easylist.txt: 2707) -/(.*/)?adv180x150\. -adv180x150.*. -# /Adv150. (easylist.txt: 2706) -/(.*/)?Adv150\. -Adv150.*. -# /adv1. (easylist.txt: 2705) -/(.*/)?adv1\. -adv1.*. -# /adv03. (easylist.txt: 2704) -/(.*/)?adv03\. -adv03.*. -# /adv02. (easylist.txt: 2703) -/(.*/)?adv02\. -adv02.*. -# /adv/topBanners. (easylist.txt: 2702) -/(.*/)?adv/topBanners\. -# /adv/sprintf- (easylist.txt: 2701) -/(.*/)?adv/sprintf- -# /adv/sponsor/* (easylist.txt: 2700) -/(.*/)?adv/sponsor/.* -# /adv/skin_ (easylist.txt: 2699) -/(.*/)?adv/skin_ -# /adv/skin. (easylist.txt: 2698) -/(.*/)?adv/skin\. -# /adv/search. (easylist.txt: 2697) -/(.*/)?adv/search\. -# /adv/script2. (easylist.txt: 2696) -/(.*/)?adv/script2\. -# /adv/script1. (easylist.txt: 2695) -/(.*/)?adv/script1\. -# /adv/rdb. (easylist.txt: 2694) -/(.*/)?adv/rdb\. -# /adv/preroll_ (easylist.txt: 2693) -/(.*/)?adv/preroll_ -# /adv/mobile/* (easylist.txt: 2692) -/(.*/)?adv/mobile/.* -# /adv/mjx. (easylist.txt: 2691) -/(.*/)?adv/mjx\. -# /adv/managers/* (easylist.txt: 2690) -/(.*/)?adv/managers/.* -# /adv/lrec_ (easylist.txt: 2689) -/(.*/)?adv/lrec_ -# /adv/kelkoo_ (easylist.txt: 2688) -/(.*/)?adv/kelkoo_ -# /adv/kelkoo/* (easylist.txt: 2687) -/(.*/)?adv/kelkoo/.* -# /adv/interstitial. (easylist.txt: 2686) -/(.*/)?adv/interstitial\. -# /adv/box- (easylist.txt: 2685) -/(.*/)?adv/box- -# /adv/bottomBanners. (easylist.txt: 2684) -/(.*/)?adv/bottomBanners\. -# /adv/banner1/* (easylist.txt: 2683) -/(.*/)?adv/banner1/.* -# /adv/banner/* (easylist.txt: 2682) -/(.*/)?adv/banner/.* -# /adv/background/* (easylist.txt: 2681) -/(.*/)?adv/background/.* -# /adv/adv_ (easylist.txt: 2680) -/(.*/)?adv/adv_ -# /adv/ads/* (easylist.txt: 2679) -/(.*/)?adv/ads/.* -# /adv/adriver (easylist.txt: 2678) -/(.*/)?adv/adriver -# /adv.png (easylist.txt: 2677) -/(.*/)?adv\.png -adv.png*. -# /adv.php (easylist.txt: 2676) -/(.*/)?adv\.php -adv.php*. -# /adv.jsp (easylist.txt: 2675) -/(.*/)?adv\.jsp -adv.jsp*. -# /adv.html (easylist.txt: 2674) -/(.*/)?adv\.html -adv.html*. -# /adv.css? (easylist.txt: 2673) -/(.*/)?adv\.css\? -# /adv.asp (easylist.txt: 2672) -/(.*/)?adv\.asp -adv.asp*. -# /adv-socialbar- (easylist.txt: 2671) -/(.*/)?adv-socialbar- -adv-socialbar-*. -# /adv-scroll. (easylist.txt: 2670) -/(.*/)?adv-scroll\. -adv-scroll.*. -# /adv-f. (easylist.txt: 2669) -/(.*/)?adv-f\. -adv-f.*. -# /adv-ext- (easylist.txt: 2668) -/(.*/)?adv-ext- -adv-ext-*. -# /adv-expand/* (easylist.txt: 2667) -/(.*/)?adv-expand/.* -# /adv-div- (easylist.txt: 2666) -/(.*/)?adv-div- -adv-div-*. -# /adv-banners/* (easylist.txt: 2665) -/(.*/)?adv-banners/.* -# /adv-bannerize- (easylist.txt: 2664) -/(.*/)?adv-bannerize- -adv-bannerize-*. -# /adv-banner. (easylist.txt: 2663) -/(.*/)?adv-banner\. -adv-banner.*. -# /adv-2. (easylist.txt: 2662) -/(.*/)?adv-2\. -adv-2.*. -# /adv-1. (easylist.txt: 2661) -/(.*/)?adv-1\. -adv-1.*. -# /aduxads/* (easylist.txt: 2660) -/(.*/)?aduxads/.* -# /aduxads. (easylist.txt: 2659) -/(.*/)?aduxads\. -aduxads.*. -# /adutils. (easylist.txt: 2658) -/(.*/)?adutils\. -adutils.*. -# /adutil. (easylist.txt: 2657) -/(.*/)?adutil\. -adutil.*. -# /adunix. (easylist.txt: 2656) -/(.*/)?adunix\. -adunix.*. -# /adunittop| (easylist.txt: 2655) -/(.*/)?adunittop$ -# /adunits? (easylist.txt: 2654) -/(.*/)?adunits\? -# /adunits/* (easylist.txt: 2653) -/(.*/)?adunits/.* -# /adunits. (easylist.txt: 2652) -/(.*/)?adunits\. -adunits.*. -# /adunit/* (easylist.txt: 2651) -/(.*/)?adunit/.* -# /adunit. (easylist.txt: 2650) -/(.*/)?adunit\. -adunit.*. -# /adultimate. (easylist.txt: 2649) -/(.*/)?adultimate\. -adultimate.*. -# /adultadworldpop_ (easylist.txt: 2648) -/(.*/)?adultadworldpop_ -# /adtype= (easylist.txt: 2647) -/(.*/)?adtype= -# /adtype. (easylist.txt: 2646) -/(.*/)?adtype\. -adtype.*. -# /adtxt. (easylist.txt: 2645) -/(.*/)?adtxt\. -adtxt.*. -# /adtvideo. (easylist.txt: 2644) -/(.*/)?adtvideo\. -adtvideo.*. -# /adttext. (easylist.txt: 2643) -/(.*/)?adttext\. -adttext.*. -# /adttext- (easylist.txt: 2642) -/(.*/)?adttext- -adttext-*. -# /adtraff. (easylist.txt: 2641) -/(.*/)?adtraff\. -adtraff.*. -# /adtracking/* (easylist.txt: 2640) -/(.*/)?adtracking/.* -# /adtracking. (easylist.txt: 2639) -/(.*/)?adtracking\. -adtracking.*. -# /adtracker? (easylist.txt: 2638) -/(.*/)?adtracker\? -# /adtracker/* (easylist.txt: 2637) -/(.*/)?adtracker/.* -# /adtracker. (easylist.txt: 2636) -/(.*/)?adtracker\. -adtracker.*. -# /adtrack/* (easylist.txt: 2635) -/(.*/)?adtrack/.* -# /adtrack. (easylist.txt: 2634) -/(.*/)?adtrack\. -adtrack.*. -# /adtopsky. (easylist.txt: 2633) -/(.*/)?adtopsky\. -adtopsky.*. -# /adtopright. (easylist.txt: 2632) -/(.*/)?adtopright\. -adtopright.*. -# /adtopmidsky. (easylist.txt: 2631) -/(.*/)?adtopmidsky\. -adtopmidsky.*. -# /adtopleft. (easylist.txt: 2630) -/(.*/)?adtopleft\. -adtopleft.*. -# /adtopcenter. (easylist.txt: 2629) -/(.*/)?adtopcenter\. -adtopcenter.*. -# /adtop728. (easylist.txt: 2628) -/(.*/)?adtop728\. -adtop728.*. -# /adtop300. (easylist.txt: 2627) -/(.*/)?adtop300\. -adtop300.*. -# /adtop160. (easylist.txt: 2626) -/(.*/)?adtop160\. -adtop160.*. -# /adtop. (easylist.txt: 2625) -/(.*/)?adtop\. -adtop.*. -# /adtooltip/* (easylist.txt: 2624) -/(.*/)?adtooltip/.* -# /adtools2. (easylist.txt: 2623) -/(.*/)?adtools2\. -adtools2.*. -# /adtools/* (easylist.txt: 2622) -/(.*/)?adtools/.* -# /adtool/* (easylist.txt: 2621) -/(.*/)?adtool/.* -# /adtonomy. (easylist.txt: 2620) -/(.*/)?adtonomy\. -adtonomy.*. -# /adtomo/* (easylist.txt: 2619) -/(.*/)?adtomo/.* -# /adtology. (easylist.txt: 2618) -/(.*/)?adtology\. -adtology.*. -# /adtitle. (easylist.txt: 2617) -/(.*/)?adtitle\. -adtitle.*. -# /adtimage. (easylist.txt: 2616) -/(.*/)?adtimage\. -adtimage.*. -# /adtextmpu2. (easylist.txt: 2615) -/(.*/)?adtextmpu2\. -adtextmpu2.*. -# /adtext_ (easylist.txt: 2614) -/(.*/)?adtext_ -# /adtext4. (easylist.txt: 2613) -/(.*/)?adtext4\. -adtext4.*. -# /adtext2. (easylist.txt: 2612) -/(.*/)?adtext2\. -adtext2.*. -# /adtext. (easylist.txt: 2611) -/(.*/)?adtext\. -adtext.*. -# /adtest/* (easylist.txt: 2610) -/(.*/)?adtest/.* -# /adtest. (easylist.txt: 2609) -/(.*/)?adtest\. -adtest.*. -# /adtechscript. (easylist.txt: 2608) -/(.*/)?adtechscript\. -adtechscript.*. -# /adtechHeader. (easylist.txt: 2607) -/(.*/)?adtechHeader\. -adtechHeader.*. -# /adtechglobalsettings.js (easylist.txt: 2606) -/(.*/)?adtechglobalsettings\.js -adtechglobalsettings.js*. -# /adtech_ (easylist.txt: 2605) -/(.*/)?adtech_ -# /adtech; (easylist.txt: 2604) -/(.*/)?adtech; -# /adtech/* (easylist.txt: 2603) -/(.*/)?adtech/.* -# /adtech. (easylist.txt: 2602) -/(.*/)?adtech\. -adtech.*. -# /adtech- (easylist.txt: 2601) -/(.*/)?adtech- -adtech-*. -# /adtaobao. (easylist.txt: 2600) -/(.*/)?adtaobao\. -adtaobao.*. -# /adtaily_ (easylist.txt: 2599) -/(.*/)?adtaily_ -# /adtagtranslator. (easylist.txt: 2598) -/(.*/)?adtagtranslator\. -adtagtranslator.*. -# /adtagtc. (easylist.txt: 2597) -/(.*/)?adtagtc\. -adtagtc.*. -# /adtags/* (easylist.txt: 2596) -/(.*/)?adtags/.* -# /adtags. (easylist.txt: 2595) -/(.*/)?adtags\. -adtags.*. -# /adTagRequest. (easylist.txt: 2594) -/(.*/)?adTagRequest\. -adTagRequest.*. -# /adtago. (easylist.txt: 2593) -/(.*/)?adtago\. -adtago.*. -# /adtaggingsubsec. (easylist.txt: 2592) -/(.*/)?adtaggingsubsec\. -adtaggingsubsec.*. -# /adtagcms. (easylist.txt: 2591) -/(.*/)?adtagcms\. -adtagcms.*. -# /adtag_ (easylist.txt: 2590) -/(.*/)?adtag_ -# /adtag? (easylist.txt: 2589) -/(.*/)?adtag\? -# /adtag/* (easylist.txt: 2588) -/(.*/)?adtag/.* -# /adtag. (easylist.txt: 2587) -/(.*/)?adtag\. -adtag.*. -# /adtadd1. (easylist.txt: 2586) -/(.*/)?adtadd1\. -adtadd1.*. -# /adtabs. (easylist.txt: 2585) -/(.*/)?adtabs\. -adtabs.*. -# /adtable_ (easylist.txt: 2584) -/(.*/)?adtable_ -# /ads~adsize~ (easylist.txt: 2583) -/(.*/)?ads~adsize~ -# /adsystem/* (easylist.txt: 2582) -/(.*/)?adsystem/.* -# /adsystem. (easylist.txt: 2581) -/(.*/)?adsystem\. -adsystem.*. -# /adsys/* (easylist.txt: 2580) -/(.*/)?adsys/.* -# /adsys. (easylist.txt: 2579) -/(.*/)?adsys\. -adsys.*. -# /adsyndication/* (easylist.txt: 2578) -/(.*/)?adsyndication/.* -# /adsyndication. (easylist.txt: 2577) -/(.*/)?adsyndication\. -adsyndication.*. -# /adsync/* (easylist.txt: 2576) -/(.*/)?adsync/.* -# /adsxml/* (easylist.txt: 2575) -/(.*/)?adsxml/.* -# /adsx_728. (easylist.txt: 2574) -/(.*/)?adsx_728\. -# /adsx728. (easylist.txt: 2573) -/(.*/)?adsx728\. -adsx728.*. -# /adsx/* (easylist.txt: 2572) -/(.*/)?adsx/.* -# /adswrapperintl. (easylist.txt: 2571) -/(.*/)?adswrapperintl\. -adswrapperintl.*. -# /adswrapper3. (easylist.txt: 2570) -/(.*/)?adswrapper3\. -adswrapper3.*. -# /adswrapper. (easylist.txt: 2569) -/(.*/)?adswrapper\. -adswrapper.*. -# /adsword. (easylist.txt: 2568) -/(.*/)?adsword\. -adsword.*. -# /adswidejs. (easylist.txt: 2567) -/(.*/)?adswidejs\. -adswidejs.*. -# /adswide. (easylist.txt: 2566) -/(.*/)?adswide\. -adswide.*. -# /adsweb. (easylist.txt: 2565) -/(.*/)?adsweb\. -adsweb.*. -# /adswap/* (easylist.txt: 2564) -/(.*/)?adswap/.* -# /adswap. (easylist.txt: 2563) -/(.*/)?adswap\. -adswap.*. -# /adswap- (easylist.txt: 2562) -/(.*/)?adswap- -adswap-*. -# /adsvr2. (easylist.txt: 2561) -/(.*/)?adsvr2\. -adsvr2.*. -# /adsvr. (easylist.txt: 2560) -/(.*/)?adsvr\. -adsvr.*. -# /adsvo. (easylist.txt: 2559) -/(.*/)?adsvo\. -adsvo.*. -# /adsvariables. (easylist.txt: 2558) -/(.*/)?adsvariables\. -adsvariables.*. -# /adsup. (easylist.txt: 2557) -/(.*/)?adsup\. -adsup.*. -# /adsummos2. (easylist.txt: 2556) -/(.*/)?adsummos2\. -adsummos2.*. -# /adsummos. (easylist.txt: 2555) -/(.*/)?adsummos\. -adsummos.*. -# /adstyle. (easylist.txt: 2554) -/(.*/)?adstyle\. -adstyle.*. -# /adstx. (easylist.txt: 2553) -/(.*/)?adstx\. -adstx.*. -# /adstubs/* (easylist.txt: 2552) -/(.*/)?adstubs/.* -# /adstube/* (easylist.txt: 2551) -/(.*/)?adstube/.* -# /adstub. (easylist.txt: 2550) -/(.*/)?adstub\. -adstub.*. -# /adstrm/* (easylist.txt: 2549) -/(.*/)?adstrm/.* -# /adstrk. (easylist.txt: 2548) -/(.*/)?adstrk\. -adstrk.*. -# /adStrip. (easylist.txt: 2547) -/(.*/)?adStrip\. -adStrip.*. -# /adstreamjscontroller. (easylist.txt: 2546) -/(.*/)?adstreamjscontroller\. -adstreamjscontroller.*. -# /adstream_ (easylist.txt: 2545) -/(.*/)?adstream_ -# /adstream. (easylist.txt: 2544) -/(.*/)?adstream\. -adstream.*. -# /adStrategies/* (easylist.txt: 2543) -/(.*/)?adStrategies/.* -# /adstract/* (easylist.txt: 2542) -/(.*/)?adstract/.* -# /adstracking. (easylist.txt: 2541) -/(.*/)?adstracking\. -adstracking.*. -# /adstorage. (easylist.txt: 2540) -/(.*/)?adstorage\. -adstorage.*. -# /adstop_ (easylist.txt: 2539) -/(.*/)?adstop_ -# /adstop728. (easylist.txt: 2538) -/(.*/)?adstop728\. -adstop728.*. -# /adstop. (easylist.txt: 2537) -/(.*/)?adstop\. -adstop.*. -# /adstitle. (easylist.txt: 2536) -/(.*/)?adstitle\. -adstitle.*. -# /adstemplate/* (easylist.txt: 2535) -/(.*/)?adstemplate/.* -# /adstatic/* (easylist.txt: 2534) -/(.*/)?adstatic/.* -# /adstatic. (easylist.txt: 2533) -/(.*/)?adstatic\. -adstatic.*. -# /adstakeover. (easylist.txt: 2532) -/(.*/)?adstakeover\. -adstakeover.*. -# /adstacodaeu. (easylist.txt: 2531) -/(.*/)?adstacodaeu\. -adstacodaeu.*. -# /adssrv. (easylist.txt: 2530) -/(.*/)?adssrv\. -adssrv.*. -# /adssp. (easylist.txt: 2529) -/(.*/)?adssp\. -adssp.*. -# /adsshow/* (easylist.txt: 2528) -/(.*/)?adsshow/.* -# /AdsShow. (easylist.txt: 2527) -/(.*/)?AdsShow\. -AdsShow.*. -# /adsserver. (easylist.txt: 2526) -/(.*/)?adsserver\. -adsserver.*. -# /adsserv. (easylist.txt: 2525) -/(.*/)?adsserv\. -adsserv.*. -# /adsscript. (easylist.txt: 2524) -/(.*/)?adsscript\. -adsscript.*. -# /adss.asp (easylist.txt: 2523) -/(.*/)?adss\.asp -adss.asp*. -# /adsrv2/* (easylist.txt: 2522) -/(.*/)?adsrv2/.* -# /adsrv/* (easylist.txt: 2521) -/(.*/)?adsrv/.* -# /adsrv. (easylist.txt: 2520) -/(.*/)?adsrv\. -adsrv.*. -# /adsrules/* (easylist.txt: 2519) -/(.*/)?adsrules/.* -# /adsrule. (easylist.txt: 2518) -/(.*/)?adsrule\. -adsrule.*. -# /adsrotator. (easylist.txt: 2517) -/(.*/)?adsrotator\. -adsrotator.*. -# /AdsRotateNEWHeader. (easylist.txt: 2516) -/(.*/)?AdsRotateNEWHeader\. -AdsRotateNEWHeader.*. -# /AdsRotateNEW2right. (easylist.txt: 2515) -/(.*/)?AdsRotateNEW2right\. -AdsRotateNEW2right.*. -# /AdsRotateNEW1right. (easylist.txt: 2514) -/(.*/)?AdsRotateNEW1right\. -AdsRotateNEW1right.*. -# /adsrotateheader. (easylist.txt: 2513) -/(.*/)?adsrotateheader\. -adsrotateheader.*. -# /adsrotate2left. (easylist.txt: 2512) -/(.*/)?adsrotate2left\. -adsrotate2left.*. -# /adsrotate1right. (easylist.txt: 2511) -/(.*/)?adsrotate1right\. -adsrotate1right.*. -# /adsrotate1left. (easylist.txt: 2510) -/(.*/)?adsrotate1left\. -adsrotate1left.*. -# /adsrotate. (easylist.txt: 2509) -/(.*/)?adsrotate\. -adsrotate.*. -# /adsrot2. (easylist.txt: 2508) -/(.*/)?adsrot2\. -adsrot2.*. -# /adsrot. (easylist.txt: 2507) -/(.*/)?adsrot\. -adsrot.*. -# /adsright. (easylist.txt: 2506) -/(.*/)?adsright\. -adsright.*. -# /adsrich. (easylist.txt: 2505) -/(.*/)?adsrich\. -adsrich.*. -# /adsresources/* (easylist.txt: 2504) -/(.*/)?adsresources/.* -# /adsreporting/* (easylist.txt: 2503) -/(.*/)?adsreporting/.* -# /adsremote. (easylist.txt: 2502) -/(.*/)?adsremote\. -adsremote.*. -# /adsrc300. (easylist.txt: 2501) -/(.*/)?adsrc300\. -adsrc300.*. -# /adsrc. (easylist.txt: 2500) -/(.*/)?adsrc\. -adsrc.*. -# /adsquareleft. (easylist.txt: 2499) -/(.*/)?adsquareleft\. -adsquareleft.*. -# /adsquare. (easylist.txt: 2498) -/(.*/)?adsquare\. -adsquare.*. -# /adsq/* (easylist.txt: 2497) -/(.*/)?adsq/.* -# /AdsPublisher. (easylist.txt: 2496) -/(.*/)?AdsPublisher\. -AdsPublisher.*. -# /adspro/* (easylist.txt: 2495) -/(.*/)?adspro/.* -# /adspots/* (easylist.txt: 2494) -/(.*/)?adspots/.* -# /adspot_ (easylist.txt: 2493) -/(.*/)?adspot_ -# /adspot/* (easylist.txt: 2492) -/(.*/)?adspot/.* -# /adspot. (easylist.txt: 2491) -/(.*/)?adspot\. -adspot.*. -# /adsponsor. (easylist.txt: 2490) -/(.*/)?adsponsor\. -adsponsor.*. -# /adsplupu. (easylist.txt: 2489) -/(.*/)?adsplupu\. -adsplupu.*. -# /adsPlugin/* (easylist.txt: 2488) -/(.*/)?adsPlugin/.* -# /AdsPlugin. (easylist.txt: 2487) -/(.*/)?AdsPlugin\. -AdsPlugin.*. -# /Adsplex- (easylist.txt: 2486) -/(.*/)?Adsplex- -Adsplex-*. -# /adsplay. (easylist.txt: 2485) -/(.*/)?adsplay\. -adsplay.*. -# /adspeeler/* (easylist.txt: 2484) -/(.*/)?adspeeler/.* -# /adspan. (easylist.txt: 2483) -/(.*/)?adspan\. -adspan.*. -# /adspacer. (easylist.txt: 2482) -/(.*/)?adspacer\. -adspacer.*. -# /adspace? (easylist.txt: 2481) -/(.*/)?adspace\? -# /adspace2. (easylist.txt: 2480) -/(.*/)?adspace2\. -adspace2.*. -# /AdSpace160x60. (easylist.txt: 2479) -/(.*/)?AdSpace160x60\. -AdSpace160x60.*. -# /adspace1. (easylist.txt: 2478) -/(.*/)?adspace1\. -adspace1.*. -# /adspace/* (easylist.txt: 2477) -/(.*/)?adspace/.* -# /adspace. (easylist.txt: 2476) -/(.*/)?adspace\. -adspace.*. -# /adsp/* (easylist.txt: 2475) -/(.*/)?adsp/.* -# /adsoverlay_ (easylist.txt: 2474) -/(.*/)?adsoverlay_ -# /adsource_ (easylist.txt: 2473) -/(.*/)?adsource_ -# /adsopenx/* (easylist.txt: 2472) -/(.*/)?adsopenx/.* -# /adsonar. (easylist.txt: 2471) -/(.*/)?adsonar\. -adsonar.*. -# /adsniptrack. (easylist.txt: 2470) -/(.*/)?adsniptrack\. -adsniptrack.*. -# /adsnippet. (easylist.txt: 2469) -/(.*/)?adsnippet\. -adsnippet.*. -# /adsnip. (easylist.txt: 2468) -/(.*/)?adsnip\. -adsnip.*. -# /adsnew/* (easylist.txt: 2467) -/(.*/)?adsnew/.* -# /adsnew. (easylist.txt: 2466) -/(.*/)?adsnew\. -adsnew.*. -# /adsmodules/* (easylist.txt: 2465) -/(.*/)?adsmodules/.* -# /adsmm.dll/* (easylist.txt: 2464) -/(.*/)?adsmm\.dll/.* -adsmm.dll/.* -# /adsmedia_ (easylist.txt: 2463) -/(.*/)?adsmedia_ -# /adsManagerV2. (easylist.txt: 2462) -/(.*/)?adsManagerV2\. -adsManagerV2.*. -# /adsmanager/* (easylist.txt: 2461) -/(.*/)?adsmanager/.* -# /adsmanagement/* (easylist.txt: 2460) -/(.*/)?adsmanagement/.* -# /adsm2. (easylist.txt: 2459) -/(.*/)?adsm2\. -adsm2.*. -# /adslugs/* (easylist.txt: 2458) -/(.*/)?adslugs/.* -# /adslug_ (easylist.txt: 2457) -/(.*/)?adslug_ -# /adslug- (easylist.txt: 2456) -/(.*/)?adslug- -adslug-*. -# /adslots. (easylist.txt: 2455) -/(.*/)?adslots\. -adslots.*. -# /adsline. (easylist.txt: 2454) -/(.*/)?adsline\. -adsline.*. -# /adslides. (easylist.txt: 2453) -/(.*/)?adslides\. -adslides.*. -# /adslide. (easylist.txt: 2452) -/(.*/)?adslide\. -adslide.*. -# /adskyscraper. (easylist.txt: 2451) -/(.*/)?adskyscraper\. -adskyscraper.*. -# /adskyright. (easylist.txt: 2450) -/(.*/)?adskyright\. -adskyright.*. -# /adsky. (easylist.txt: 2449) -/(.*/)?adsky\. -adsky.*. -# /adskin/* (easylist.txt: 2448) -/(.*/)?adskin/.* -# /adsjs. (easylist.txt: 2447) -/(.*/)?adsjs\. -adsjs.*. -# /adsites/* (easylist.txt: 2446) -/(.*/)?adsites/.* -# /adsite/* (easylist.txt: 2445) -/(.*/)?adsite/.* -# /adsinsert. (easylist.txt: 2444) -/(.*/)?adsinsert\. -adsinsert.*. -# /adsindie/* (easylist.txt: 2443) -/(.*/)?adsindie/.* -# /adsinclude. (easylist.txt: 2442) -/(.*/)?adsinclude\. -adsinclude.*. -# /adsImg/* (easylist.txt: 2441) -/(.*/)?adsImg/.* -# /adsimages/* (easylist.txt: 2440) -/(.*/)?adsimages/.* -# /adsimage/* (easylist.txt: 2439) -/(.*/)?adsimage/.* -# /adsign. (easylist.txt: 2438) -/(.*/)?adsign\. -adsign.*. -# /adsiframe/* (easylist.txt: 2437) -/(.*/)?adsiframe/.* -# /adsiframe. (easylist.txt: 2436) -/(.*/)?adsiframe\. -adsiframe.*. -# /adsidebarrect. (easylist.txt: 2435) -/(.*/)?adsidebarrect\. -adsidebarrect.*. -# /adsidebar. (easylist.txt: 2434) -/(.*/)?adsidebar\. -adsidebar.*. -# /adsicon/* (easylist.txt: 2433) -/(.*/)?adsicon/.* -# /adsico3. (easylist.txt: 2432) -/(.*/)?adsico3\. -adsico3.*. -# /adsico2. (easylist.txt: 2431) -/(.*/)?adsico2\. -adsico2.*. -# /adsico. (easylist.txt: 2430) -/(.*/)?adsico\. -adsico.*. -# /adsi-j. (easylist.txt: 2429) -/(.*/)?adsi-j\. -adsi-j.*. -# /adshtml2/* (easylist.txt: 2428) -/(.*/)?adshtml2/.* -# /adshow_ (easylist.txt: 2427) -/(.*/)?adshow_ -# /adshow? (easylist.txt: 2426) -/(.*/)?adshow\? -# /adshow/* (easylist.txt: 2425) -/(.*/)?adshow/.* -# /adshow. (easylist.txt: 2424) -/(.*/)?adshow\. -adshow.*. -# /adshow- (easylist.txt: 2423) -/(.*/)?adshow- -adshow-*. -# /adsheader. (easylist.txt: 2422) -/(.*/)?adsheader\. -adsheader.*. -# /adshare3. (easylist.txt: 2421) -/(.*/)?adshare3\. -adshare3.*. -# /adshare/* (easylist.txt: 2420) -/(.*/)?adshare/.* -# /adshare. (easylist.txt: 2419) -/(.*/)?adshare\. -adshare.*. -# /adshandler. (easylist.txt: 2418) -/(.*/)?adshandler\. -adshandler.*. -# /adsGooglePP3. (easylist.txt: 2417) -/(.*/)?adsGooglePP3\. -adsGooglePP3.*. -# /adsgame. (easylist.txt: 2416) -/(.*/)?adsgame\. -adsgame.*. -# /adsfuse- (easylist.txt: 2415) -/(.*/)?adsfuse- -adsfuse-*. -# /adsframe. (easylist.txt: 2414) -/(.*/)?adsframe\. -adsframe.*. -# /adsfolder/* (easylist.txt: 2413) -/(.*/)?adsfolder/.* -# /adsfloat. (easylist.txt: 2412) -/(.*/)?adsfloat\. -adsfloat.*. -# /adsfinal. (easylist.txt: 2411) -/(.*/)?adsfinal\. -adsfinal.*. -# /adsfiles. (easylist.txt: 2410) -/(.*/)?adsfiles\. -adsfiles.*. -# /adsfile. (easylist.txt: 2409) -/(.*/)?adsfile\. -adsfile.*. -# /adsfetch. (easylist.txt: 2408) -/(.*/)?adsfetch\. -adsfetch.*. -# /adsfac. (easylist.txt: 2407) -/(.*/)?adsfac\. -adsfac.*. -# /adsetup_ (easylist.txt: 2406) -/(.*/)?adsetup_ -# /adsetup. (easylist.txt: 2405) -/(.*/)?adsetup\. -adsetup.*. -# /adsession_ (easylist.txt: 2404) -/(.*/)?adsession_ -# /adsession. (easylist.txt: 2403) -/(.*/)?adsession\. -adsession.*. -# /adserv|*|adtech; (easylist.txt: 2402) -/(.*/)?adserv\|.*\|adtech; -# /AdServlet? (easylist.txt: 2401) -/(.*/)?AdServlet\? -# /adserving_ (easylist.txt: 2400) -/(.*/)?adserving_ -# /adserving/* (easylist.txt: 2399) -/(.*/)?adserving/.* -# /adserving. (easylist.txt: 2398) -/(.*/)?adserving\. -adserving.*. -# /adservice| (easylist.txt: 2397) -/(.*/)?adservice$ -# /adservices/* (easylist.txt: 2396) -/(.*/)?adservices/.* -# /adservice/* (easylist.txt: 2395) -/(.*/)?adservice/.* -# /adservice. (easylist.txt: 2394) -/(.*/)?adservice\. -adservice.*. -# /adservice- (easylist.txt: 2393) -/(.*/)?adservice- -adservice-*. -# /adservervastvideovizu. (easylist.txt: 2392) -/(.*/)?adservervastvideovizu\. -adservervastvideovizu.*. -# /adserverstore. (easylist.txt: 2391) -/(.*/)?adserverstore\. -adserverstore.*. -# /adserversolutions/* (easylist.txt: 2390) -/(.*/)?adserversolutions/.* -# /adservers- (easylist.txt: 2389) -/(.*/)?adservers- -adservers-*. -# /adserverpub? (easylist.txt: 2388) -/(.*/)?adserverpub\? -# /adserverdata. (easylist.txt: 2387) -/(.*/)?adserverdata\. -adserverdata.*. -# /adserver_ (easylist.txt: 2386) -/(.*/)?adserver_ -# /adserver? (easylist.txt: 2385) -/(.*/)?adserver\? -# /adserver8strip. (easylist.txt: 2384) -/(.*/)?adserver8strip\. -adserver8strip.*. -# /adserver7/* (easylist.txt: 2383) -/(.*/)?adserver7/.* -# /adserver3. (easylist.txt: 2382) -/(.*/)?adserver3\. -adserver3.*. -# /adserver2/* (easylist.txt: 2381) -/(.*/)?adserver2/.* -# /adserver2. (easylist.txt: 2380) -/(.*/)?adserver2\. -adserver2.*. -# /adserver1. (easylist.txt: 2379) -/(.*/)?adserver1\. -adserver1.*. -# /adserver1- (easylist.txt: 2378) -/(.*/)?adserver1- -adserver1-*. -# /adserver/* (easylist.txt: 2377) -/(.*/)?adserver/.* -# /adserver. (easylist.txt: 2376) -/(.*/)?adserver\. -adserver.*. -# /adserver- (easylist.txt: 2375) -/(.*/)?adserver- -adserver-*. -# /adserve_ (easylist.txt: 2374) -/(.*/)?adserve_ -# /adserve/* (easylist.txt: 2373) -/(.*/)?adserve/.* -# /adserve. (easylist.txt: 2372) -/(.*/)?adserve\. -adserve.*. -# /adserve- (easylist.txt: 2371) -/(.*/)?adserve- -adserve-*. -# /adserv_ (easylist.txt: 2370) -/(.*/)?adserv_ -# /adserv3. (easylist.txt: 2369) -/(.*/)?adserv3\. -adserv3.*. -# /adserv2. (easylist.txt: 2368) -/(.*/)?adserv2\. -adserv2.*. -# /adserv1. (easylist.txt: 2367) -/(.*/)?adserv1\. -adserv1.*. -# /adserv/* (easylist.txt: 2366) -/(.*/)?adserv/.* -# /adserv. (easylist.txt: 2365) -/(.*/)?adserv\. -adserv.*. -# /adser/* (easylist.txt: 2364) -/(.*/)?adser/.* -# /adseperator_ (easylist.txt: 2363) -/(.*/)?adseperator_ -# /adseo/* (easylist.txt: 2362) -/(.*/)?adseo/.* -# /adseo. (easylist.txt: 2361) -/(.*/)?adseo\. -adseo.*. -# /adsenze. (easylist.txt: 2360) -/(.*/)?adsenze\. -adsenze.*. -# /adsensev2. (easylist.txt: 2359) -/(.*/)?adsensev2\. -adsensev2.*. -# /adsensets. (easylist.txt: 2358) -/(.*/)?adsensets\. -adsensets.*. -# /adsensegoogle. (easylist.txt: 2357) -/(.*/)?adsensegoogle\. -adsensegoogle.*. -# /adsensegb. (easylist.txt: 2356) -/(.*/)?adsensegb\. -adsensegb.*. -# /AdsenseBlockView. (easylist.txt: 2355) -/(.*/)?AdsenseBlockView\. -AdsenseBlockView.*. -# /adsense_ (easylist.txt: 2354) -/(.*/)?adsense_ -# /adsense? (easylist.txt: 2353) -/(.*/)?adsense\? -# /adsense5. (easylist.txt: 2352) -/(.*/)?adsense5\. -adsense5.*. -# /adsense4. (easylist.txt: 2351) -/(.*/)?adsense4\. -adsense4.*. -# /adsense3. (easylist.txt: 2350) -/(.*/)?adsense3\. -adsense3.*. -# /adsense250. (easylist.txt: 2349) -/(.*/)?adsense250\. -adsense250.*. -# /adsense24. (easylist.txt: 2348) -/(.*/)?adsense24\. -adsense24.*. -# /adsense23. (easylist.txt: 2347) -/(.*/)?adsense23\. -adsense23.*. -# /adsense2. (easylist.txt: 2346) -/(.*/)?adsense2\. -adsense2.*. -# /adsense1. (easylist.txt: 2345) -/(.*/)?adsense1\. -adsense1.*. -# /adsense/* (easylist.txt: 2344) -/(.*/)?adsense/.* -# /adsense. (easylist.txt: 2343) -/(.*/)?adsense\. -adsense.*. -# /adsense- (easylist.txt: 2342) -/(.*/)?adsense- -adsense-*. -# /adsEnd. (easylist.txt: 2341) -/(.*/)?adsEnd\. -adsEnd.*. -# /adsenceSearchTop. (easylist.txt: 2340) -/(.*/)?adsenceSearchTop\. -adsenceSearchTop.*. -# /adsenceSearch. (easylist.txt: 2339) -/(.*/)?adsenceSearch\. -adsenceSearch.*. -# /adsence. (easylist.txt: 2338) -/(.*/)?adsence\. -adsence.*. -# /adseller/* (easylist.txt: 2337) -/(.*/)?adseller/.* -# /adsegmentation. (easylist.txt: 2336) -/(.*/)?adsegmentation\. -adsegmentation.*. -# /adsecondary. (easylist.txt: 2335) -/(.*/)?adsecondary\. -adsecondary.*. -# /adSearch? (easylist.txt: 2334) -/(.*/)?adSearch\? -# /adsearch. (easylist.txt: 2333) -/(.*/)?adsearch\. -adsearch.*. -# /adsDynLoad/* (easylist.txt: 2332) -/(.*/)?adsDynLoad/.* -# /adsdyn160x160. (easylist.txt: 2331) -/(.*/)?adsdyn160x160\. -adsdyn160x160.*. -# /adsdm. (easylist.txt: 2330) -/(.*/)?adsdm\. -adsdm.*. -# /adsdfp/* (easylist.txt: 2329) -/(.*/)?adsdfp/.* -# /adsdelivery. (easylist.txt: 2328) -/(.*/)?adsdelivery\. -adsdelivery.*. -# /adsDateValidation. (easylist.txt: 2327) -/(.*/)?adsDateValidation\. -adsDateValidation.*. -# /adsdaqsky_ (easylist.txt: 2326) -/(.*/)?adsdaqsky_ -# /adsdaqbox_ (easylist.txt: 2325) -/(.*/)?adsdaqbox_ -# /adsdaqbanner_ (easylist.txt: 2324) -/(.*/)?adsdaqbanner_ -# /adsdaq_ (easylist.txt: 2323) -/(.*/)?adsdaq_ -# /adscroll. (easylist.txt: 2322) -/(.*/)?adscroll\. -adscroll.*. -# /adscripts3. (easylist.txt: 2321) -/(.*/)?adscripts3\. -adscripts3.*. -# /adscripts2. (easylist.txt: 2320) -/(.*/)?adscripts2\. -adscripts2.*. -# /adscripts1. (easylist.txt: 2319) -/(.*/)?adscripts1\. -adscripts1.*. -# /adscripts/* (easylist.txt: 2318) -/(.*/)?adscripts/.* -# /adscript_ (easylist.txt: 2317) -/(.*/)?adscript_ -# /adscript1. (easylist.txt: 2316) -/(.*/)?adscript1\. -adscript1.*. -# /adscript. (easylist.txt: 2315) -/(.*/)?adscript\. -adscript.*. -# /adscpv/* (easylist.txt: 2314) -/(.*/)?adscpv/.* -# /adscontent2. (easylist.txt: 2313) -/(.*/)?adscontent2\. -adscontent2.*. -# /adscontent. (easylist.txt: 2312) -/(.*/)?adscontent\. -adscontent.*. -# /adscluster. (easylist.txt: 2311) -/(.*/)?adscluster\. -adscluster.*. -# /adscloud. (easylist.txt: 2310) -/(.*/)?adscloud\. -adscloud.*. -# /adscaleskyscraper. (easylist.txt: 2309) -/(.*/)?adscaleskyscraper\. -adscaleskyscraper.*. -# /adscalecontentad. (easylist.txt: 2308) -/(.*/)?adscalecontentad\. -adscalecontentad.*. -# /adscalebigsize. (easylist.txt: 2307) -/(.*/)?adscalebigsize\. -adscalebigsize.*. -# /adscale_ (easylist.txt: 2306) -/(.*/)?adscale_ -# /adscale1. (easylist.txt: 2305) -/(.*/)?adscale1\. -adscale1.*. -# /adscale. (easylist.txt: 2304) -/(.*/)?adscale\. -adscale.*. -# /adsbygoogle. (easylist.txt: 2303) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# /adsbycurse. (easylist.txt: 2302) -/(.*/)?adsbycurse\. -adsbycurse.*. -# /adsby. (easylist.txt: 2301) -/(.*/)?adsby\. -adsby.*. -# /adsbox. (easylist.txt: 2300) -/(.*/)?adsbox\. -adsbox.*. -# /adsbannerjs. (easylist.txt: 2299) -/(.*/)?adsbannerjs\. -adsbannerjs.*. -# /adsbanner/* (easylist.txt: 2298) -/(.*/)?adsbanner/.* -# /adsbanner. (easylist.txt: 2297) -/(.*/)?adsbanner\. -adsbanner.*. -# /adsbanner- (easylist.txt: 2296) -/(.*/)?adsbanner- -adsbanner-*. -# /adsatt. (easylist.txt: 2295) -/(.*/)?adsatt\. -adsatt.*. -# /adsAPI. (easylist.txt: 2294) -/(.*/)?adsAPI\. -adsAPI.*. -# /adsandtps/* (easylist.txt: 2293) -/(.*/)?adsandtps/.* -# /adsandbox. (easylist.txt: 2292) -/(.*/)?adsandbox\. -adsandbox.*. -# /adsample. (easylist.txt: 2291) -/(.*/)?adsample\. -adsample.*. -# /adsame. (easylist.txt: 2290) -/(.*/)?adsame\. -adsame.*. -# /adsales/* (easylist.txt: 2289) -/(.*/)?adsales/.* -# /AdsAjaxRefresh. (easylist.txt: 2288) -/(.*/)?AdsAjaxRefresh\. -AdsAjaxRefresh.*. -# /adsadview. (easylist.txt: 2287) -/(.*/)?adsadview\. -adsadview.*. -# /adsadclient31. (easylist.txt: 2286) -/(.*/)?adsadclient31\. -adsadclient31.*. -# /adsa728. (easylist.txt: 2285) -/(.*/)?adsa728\. -adsa728.*. -# /adsa468. (easylist.txt: 2284) -/(.*/)?adsa468\. -adsa468.*. -# /ads_yahoo. (easylist.txt: 2283) -/(.*/)?ads_yahoo\. -# /Ads_WFC. (easylist.txt: 2282) -/(.*/)?Ads_WFC\. -# /ads_view. (easylist.txt: 2281) -/(.*/)?ads_view\. -# /ads_ui. (easylist.txt: 2280) -/(.*/)?ads_ui\. -# /ads_topbar_ (easylist.txt: 2279) -/(.*/)?ads_topbar_ -# /ads_top_ (easylist.txt: 2278) -/(.*/)?ads_top_ -# /ads_text_ (easylist.txt: 2277) -/(.*/)?ads_text_ -# /ads_start. (easylist.txt: 2276) -/(.*/)?ads_start\. -# /ads_sidebar. (easylist.txt: 2275) -/(.*/)?ads_sidebar\. -# /ads_show_ (easylist.txt: 2274) -/(.*/)?ads_show_ -# /ads_server_ (easylist.txt: 2273) -/(.*/)?ads_server_ -# /ads_reporting/* (easylist.txt: 2272) -/(.*/)?ads_reporting/.* -# /ads_redirect. (easylist.txt: 2271) -/(.*/)?ads_redirect\. -# /ads_r. (easylist.txt: 2270) -/(.*/)?ads_r\. -# /ads_pro/* (easylist.txt: 2269) -/(.*/)?ads_pro/.* -# /ads_premium. (easylist.txt: 2268) -/(.*/)?ads_premium\. -# /ads_php/* (easylist.txt: 2267) -/(.*/)?ads_php/.* -# /ads_patron. (easylist.txt: 2266) -/(.*/)?ads_patron\. -# /ads_openx_ (easylist.txt: 2265) -/(.*/)?ads_openx_ -# /ads_new/* (easylist.txt: 2264) -/(.*/)?ads_new/.* -# /ads_new. (easylist.txt: 2263) -/(.*/)?ads_new\. -# /ads_min_ (easylist.txt: 2262) -/(.*/)?ads_min_ -# /ads_medrec_ (easylist.txt: 2261) -/(.*/)?ads_medrec_ -# /ads_manager. (easylist.txt: 2260) -/(.*/)?ads_manager\. -# /ads_loader. (easylist.txt: 2259) -/(.*/)?ads_loader\. -# /ads_load/* (easylist.txt: 2258) -/(.*/)?ads_load/.* -# /ads_left_ (easylist.txt: 2257) -/(.*/)?ads_left_ -# /ads_leaderboard_ (easylist.txt: 2256) -/(.*/)?ads_leaderboard_ -# /ads_images/* (easylist.txt: 2255) -/(.*/)?ads_images/.* -# /ads_image/* (easylist.txt: 2254) -/(.*/)?ads_image/.* -# /ads_iframe. (easylist.txt: 2253) -/(.*/)?ads_iframe\. -# /ads_ifr. (easylist.txt: 2252) -/(.*/)?ads_ifr\. -# /ads_home_ (easylist.txt: 2251) -/(.*/)?ads_home_ -# /ads_google. (easylist.txt: 2250) -/(.*/)?ads_google\. -# /ads_gnm/* (easylist.txt: 2249) -/(.*/)?ads_gnm/.* -# /ads_global. (easylist.txt: 2248) -/(.*/)?ads_global\. -# /ads_gallery/* (easylist.txt: 2247) -/(.*/)?ads_gallery/.* -# /ads_frame. (easylist.txt: 2246) -/(.*/)?ads_frame\. -# /ads_footer. (easylist.txt: 2245) -/(.*/)?ads_footer\. -# /Ads_Fix. (easylist.txt: 2244) -/(.*/)?Ads_Fix\. -# /ads_files/* (easylist.txt: 2243) -/(.*/)?ads_files/.* -# /ads_event. (easylist.txt: 2242) -/(.*/)?ads_event\. -# /ads_display. (easylist.txt: 2241) -/(.*/)?ads_display\. -# /ads_dfp/* (easylist.txt: 2240) -/(.*/)?ads_dfp/.* -# /ads_controller. (easylist.txt: 2239) -/(.*/)?ads_controller\. -# /ads_config. (easylist.txt: 2238) -/(.*/)?ads_config\. -# /ads_codes/* (easylist.txt: 2237) -/(.*/)?ads_codes/.* -# /ads_code_ (easylist.txt: 2236) -/(.*/)?ads_code_ -# /ads_code. (easylist.txt: 2235) -/(.*/)?ads_code\. -# /ads_box_ (easylist.txt: 2234) -/(.*/)?ads_box_ -# /ads_bottom_ (easylist.txt: 2233) -/(.*/)?ads_bottom_ -# /ads_bottom. (easylist.txt: 2232) -/(.*/)?ads_bottom\. -# /ads_bg. (easylist.txt: 2231) -/(.*/)?ads_bg\. -# /ads_banners/* (easylist.txt: 2230) -/(.*/)?ads_banners/.* -# /ads_banner_ (easylist.txt: 2229) -/(.*/)?ads_banner_ -# /ads_ad_ (easylist.txt: 2228) -/(.*/)?ads_ad_ -# /ads_728_ (easylist.txt: 2227) -/(.*/)?ads_728_ -# /ads_6. (easylist.txt: 2226) -/(.*/)?ads_6\. -# /ads_300_ (easylist.txt: 2225) -/(.*/)?ads_300_ -# /ads_300. (easylist.txt: 2224) -/(.*/)?ads_300\. -# /ads_3. (easylist.txt: 2223) -/(.*/)?ads_3\. -# /ads_160_ (easylist.txt: 2222) -/(.*/)?ads_160_ -# /ads_1. (easylist.txt: 2221) -/(.*/)?ads_1\. -# /ads?zone_id= (easylist.txt: 2220) -/(.*/)?ads\?zone_id= -# /ads?zone= (easylist.txt: 2219) -/(.*/)?ads\?zone= -# /ads?spaceid (easylist.txt: 2218) -/(.*/)?ads\?spaceid -# /ads?id= (easylist.txt: 2217) -/(.*/)?ads\?id= -# /ads?callback (easylist.txt: 2216) -/(.*/)?ads\?callback -# /ads?apid (easylist.txt: 2215) -/(.*/)?ads\?apid -# /ads9/* (easylist.txt: 2214) -/(.*/)?ads9/.* -# /ads9. (easylist.txt: 2213) -/(.*/)?ads9\. -ads9.*. -# /ads88. (easylist.txt: 2212) -/(.*/)?ads88\. -ads88.*. -# /ads8/* (easylist.txt: 2211) -/(.*/)?ads8/.* -# /ads8. (easylist.txt: 2210) -/(.*/)?ads8\. -ads8.*. -# /ads790. (easylist.txt: 2209) -/(.*/)?ads790\. -ads790.*. -# /ads728x90a. (easylist.txt: 2208) -/(.*/)?ads728x90a\. -ads728x90a.*. -# /ads728x90_ (easylist.txt: 2207) -/(.*/)?ads728x90_ -# /ads728adn2. (easylist.txt: 2206) -/(.*/)?ads728adn2\. -ads728adn2.*. -# /ads728. (easylist.txt: 2205) -/(.*/)?ads728\. -ads728.*. -# /ads7/* (easylist.txt: 2204) -/(.*/)?ads7/.* -# /ads7. (easylist.txt: 2203) -/(.*/)?ads7\. -ads7.*. -# /ads620x60/* (easylist.txt: 2202) -/(.*/)?ads620x60/.* -# /ads600- (easylist.txt: 2201) -/(.*/)?ads600- -ads600-*. -# /ads6/* (easylist.txt: 2200) -/(.*/)?ads6/.* -# /ads6. (easylist.txt: 2199) -/(.*/)?ads6\. -ads6.*. -# /ads5t. (easylist.txt: 2198) -/(.*/)?ads5t\. -ads5t.*. -# /ads5/* (easylist.txt: 2197) -/(.*/)?ads5/.* -# /ads5. (easylist.txt: 2196) -/(.*/)?ads5\. -ads5.*. -# /ads4n. (easylist.txt: 2195) -/(.*/)?ads4n\. -ads4n.*. -# /ads4j. (easylist.txt: 2194) -/(.*/)?ads4j\. -ads4j.*. -# /ads468x60_ (easylist.txt: 2193) -/(.*/)?ads468x60_ -# /ads468x60. (easylist.txt: 2192) -/(.*/)?ads468x60\. -ads468x60.*. -# /ads468. (easylist.txt: 2191) -/(.*/)?ads468\. -ads468.*. -# /ads4/* (easylist.txt: 2190) -/(.*/)?ads4/.* -# /ads300x250px. (easylist.txt: 2188) -/(.*/)?ads300x250px\. -ads300x250px.*. -# /ads300x250_ (easylist.txt: 2187) -/(.*/)?ads300x250_ -# /ads300X2502. (easylist.txt: 2186) -/(.*/)?ads300X2502\. -ads300X2502.*. -# /ads300x250. (easylist.txt: 2185) -/(.*/)?ads300x250\. -ads300x250.*. -# /ads300adn2. (easylist.txt: 2184) -/(.*/)?ads300adn2\. -ads300adn2.*. -# /ads300. (easylist.txt: 2183) -/(.*/)?ads300\. -ads300.*. -# /ads3/* (easylist.txt: 2182) -/(.*/)?ads3/.* -# /ads3. (easylist.txt: 2181) -/(.*/)?ads3\. -ads3.*. -# /ads2x300new. (easylist.txt: 2180) -/(.*/)?ads2x300new\. -ads2x300new.*. -# /ads2_ (easylist.txt: 2179) -/(.*/)?ads2_ -# /ads210. (easylist.txt: 2178) -/(.*/)?ads210\. -ads210.*. -# /ads2013/* (easylist.txt: 2177) -/(.*/)?ads2013/.* -# /ads2012/* (easylist.txt: 2176) -/(.*/)?ads2012/.* -# /ads2/* (easylist.txt: 2175) -/(.*/)?ads2/.* -# /ads2. (easylist.txt: 2174) -/(.*/)?ads2\. -ads2.*. -# /ads18. (easylist.txt: 2173) -/(.*/)?ads18\. -ads18.*. -# /ads160x600px. (easylist.txt: 2172) -/(.*/)?ads160x600px\. -ads160x600px.*. -# /ads160x600. (easylist.txt: 2171) -/(.*/)?ads160x600\. -ads160x600.*. -# /ads160x600- (easylist.txt: 2170) -/(.*/)?ads160x600- -ads160x600-*. -# /ads160. (easylist.txt: 2169) -/(.*/)?ads160\. -ads160.*. -# /ads125_ (easylist.txt: 2168) -/(.*/)?ads125_ -# /ads125. (easylist.txt: 2167) -/(.*/)?ads125\. -ads125.*. -# /ads12. (easylist.txt: 2166) -/(.*/)?ads12\. -ads12.*. -# /ads11/* (easylist.txt: 2165) -/(.*/)?ads11/.* -# /ads11. (easylist.txt: 2164) -/(.*/)?ads11\. -ads11.*. -# /ads100. (easylist.txt: 2163) -/(.*/)?ads100\. -ads100.*. -# /ads10/* (easylist.txt: 2162) -/(.*/)?ads10/.* -# /ads10. (easylist.txt: 2161) -/(.*/)?ads10\. -ads10.*. -# /ads1/* (easylist.txt: 2160) -/(.*/)?ads1/.* -# /ads1. (easylist.txt: 2159) -/(.*/)?ads1\. -ads1.*. -# /ads09a/* (easylist.txt: 2158) -/(.*/)?ads09a/.* -# /ads05. (easylist.txt: 2157) -/(.*/)?ads05\. -ads05.*. -# /ads01. (easylist.txt: 2156) -/(.*/)?ads01\. -ads01.*. -# /ads0. (easylist.txt: 2155) -/(.*/)?ads0\. -ads0.*. -# /ads/zone/* (easylist.txt: 2154) -/(.*/)?ads/zone/.* -# /ads/yahoo/* (easylist.txt: 2153) -/(.*/)?ads/yahoo/.* -# /ads/xtcore. (easylist.txt: 2152) -/(.*/)?ads/xtcore\. -# /ads/www/* (easylist.txt: 2151) -/(.*/)?ads/www/.* -# /ads/writecapture. (easylist.txt: 2150) -/(.*/)?ads/writecapture\. -# /ads/widget. (easylist.txt: 2149) -/(.*/)?ads/widget\. -# /ads/widebanner. (easylist.txt: 2148) -/(.*/)?ads/widebanner\. -# /ads/welcomescreen. (easylist.txt: 2147) -/(.*/)?ads/welcomescreen\. -# /ads/webplayer. (easylist.txt: 2146) -/(.*/)?ads/webplayer\. -# /ads/web/* (easylist.txt: 2145) -/(.*/)?ads/web/.* -# /ads/vip_ (easylist.txt: 2144) -/(.*/)?ads/vip_ -# /ads/views/* (easylist.txt: 2143) -/(.*/)?ads/views/.* -# /ads/view. (easylist.txt: 2142) -/(.*/)?ads/view\. -# /ads/video_ (easylist.txt: 2141) -/(.*/)?ads/video_ -# /ads/video/* (easylist.txt: 2140) -/(.*/)?ads/video/.* -# /ads/vg/* (easylist.txt: 2139) -/(.*/)?ads/vg/.* -# /ads/vertical/* (easylist.txt: 2138) -/(.*/)?ads/vertical/.* -# /ads/txt_ (easylist.txt: 2137) -/(.*/)?ads/txt_ -# /ads/triggers/* (easylist.txt: 2136) -/(.*/)?ads/triggers/.* -# /ads/tracker/* (easylist.txt: 2135) -/(.*/)?ads/tracker/.* -# /ads/tr_ (easylist.txt: 2134) -/(.*/)?ads/tr_ -# /ads/top. (easylist.txt: 2133) -/(.*/)?ads/top\. -# /ads/top- (easylist.txt: 2132) -/(.*/)?ads/top- -# /ads/tile- (easylist.txt: 2131) -/(.*/)?ads/tile- -# /ads/third- (easylist.txt: 2130) -/(.*/)?ads/third- -# /ads/text/* (easylist.txt: 2129) -/(.*/)?ads/text/.* -# /ads/targeting. (easylist.txt: 2128) -/(.*/)?ads/targeting\. -# /ads/takeovers/* (easylist.txt: 2127) -/(.*/)?ads/takeovers/.* -# /ads/syndicated/* (easylist.txt: 2126) -/(.*/)?ads/syndicated/.* -# /ads/swfobject. (easylist.txt: 2125) -/(.*/)?ads/swfobject\. -# /ads/sub/* (easylist.txt: 2124) -/(.*/)?ads/sub/.* -# /ads/storysponsors/* (easylist.txt: 2123) -/(.*/)?ads/storysponsors/.* -# /ads/square3. (easylist.txt: 2122) -/(.*/)?ads/square3\. -# /ads/square2. (easylist.txt: 2121) -/(.*/)?ads/square2\. -# /ads/square. (easylist.txt: 2120) -/(.*/)?ads/square\. -# /ads/square- (easylist.txt: 2119) -/(.*/)?ads/square- -# /ads/sponsor (easylist.txt: 2118) -/(.*/)?ads/sponsor -# /ads/spacer. (easylist.txt: 2117) -/(.*/)?ads/spacer\. -# /ads/sky_ (easylist.txt: 2116) -/(.*/)?ads/sky_ -# /ads/skins/* (easylist.txt: 2115) -/(.*/)?ads/skins/.* -# /ads/sitewide_ (easylist.txt: 2114) -/(.*/)?ads/sitewide_ -# /ads/sidedoor/* (easylist.txt: 2113) -/(.*/)?ads/sidedoor/.* -# /ads/sidebar- (easylist.txt: 2112) -/(.*/)?ads/sidebar- -# /ads/side- (easylist.txt: 2111) -/(.*/)?ads/side- -# /ads/show/* (easylist.txt: 2110) -/(.*/)?ads/show/.* -# /ads/show. (easylist.txt: 2109) -/(.*/)?ads/show\. -# /ads/serveIt/* (easylist.txt: 2108) -/(.*/)?ads/serveIt/.* -# /ads/select/* (easylist.txt: 2107) -/(.*/)?ads/select/.* -# /ads/scripts/* (easylist.txt: 2106) -/(.*/)?ads/scripts/.* -# /ads/scriptinject. (easylist.txt: 2105) -/(.*/)?ads/scriptinject\. -# /ads/rotate_ (easylist.txt: 2104) -/(.*/)?ads/rotate_ -# /ads/rotate/* (easylist.txt: 2103) -/(.*/)?ads/rotate/.* -# /ads/ringtone_ (easylist.txt: 2102) -/(.*/)?ads/ringtone_ -# /ads/right/* (easylist.txt: 2101) -/(.*/)?ads/right/.* -# /ads/right. (easylist.txt: 2100) -/(.*/)?ads/right\. -# /ads/reskins/* (easylist.txt: 2099) -/(.*/)?ads/reskins/.* -# /ads/request. (easylist.txt: 2098) -/(.*/)?ads/request\. -# /Ads/Refresher. (easylist.txt: 2097) -/(.*/)?Ads/Refresher\. -# /ads/rectangle_ (easylist.txt: 2096) -/(.*/)?ads/rectangle_ -# /ads/rect_ (easylist.txt: 2095) -/(.*/)?ads/rect_ -# /ads/real_ (easylist.txt: 2094) -/(.*/)?ads/real_ -# /ads/rawstory_ (easylist.txt: 2093) -/(.*/)?ads/rawstory_ -# /ads/rail- (easylist.txt: 2092) -/(.*/)?ads/rail- -# /AdS/RAD. (easylist.txt: 2091) -/(.*/)?AdS/RAD\. -# /ads/proxy- (easylist.txt: 2090) -/(.*/)?ads/proxy- -# /ads/proximic. (easylist.txt: 2089) -/(.*/)?ads/proximic\. -# /ads/promo_ (easylist.txt: 2088) -/(.*/)?ads/promo_ -# /ads/profile/* (easylist.txt: 2087) -/(.*/)?ads/profile/.* -# /ads/preroll_ (easylist.txt: 2086) -/(.*/)?ads/preroll_ -# /ads/preroll/* (easylist.txt: 2085) -/(.*/)?ads/preroll/.* -# /ads/preroll- (easylist.txt: 2084) -/(.*/)?ads/preroll- -# /ads/preloader/* (easylist.txt: 2083) -/(.*/)?ads/preloader/.* -# /ads/postscribe. (easylist.txt: 2082) -/(.*/)?ads/postscribe\. -# /ads/post- (easylist.txt: 2081) -/(.*/)?ads/post- -# /ads/popup_ (easylist.txt: 2080) -/(.*/)?ads/popup_ -# /ads/popup. (easylist.txt: 2079) -/(.*/)?ads/popup\. -# /ads/popshow. (easylist.txt: 2078) -/(.*/)?ads/popshow\. -# /ads/popout. (easylist.txt: 2077) -/(.*/)?ads/popout\. -# /ads/pop. (easylist.txt: 2076) -/(.*/)?ads/pop\. -# /ads/plugs/* (easylist.txt: 2075) -/(.*/)?ads/plugs/.* -# /ads/player- (easylist.txt: 2074) -/(.*/)?ads/player- -# /ads/pencil/* (easylist.txt: 2073) -/(.*/)?ads/pencil/.* -# /ads/payload/* (easylist.txt: 2072) -/(.*/)?ads/payload/.* -# /ads/panel. (easylist.txt: 2071) -/(.*/)?ads/panel\. -# /ads/page. (easylist.txt: 2070) -/(.*/)?ads/page\. -# /ads/p/* (easylist.txt: 2069) -/(.*/)?ads/p/.* -# /ads/overlay/* (easylist.txt: 2068) -/(.*/)?ads/overlay/.* -# /ads/overlay- (easylist.txt: 2067) -/(.*/)?ads/overlay- -# /ads/outbrain? (easylist.txt: 2066) -/(.*/)?ads/outbrain\? -# /ads/oscar/* (easylist.txt: 2065) -/(.*/)?ads/oscar/.* -# /ads/original/* (easylist.txt: 2064) -/(.*/)?ads/original/.* -# /ads/oas_ (easylist.txt: 2063) -/(.*/)?ads/oas_ -# /ads/oas/* (easylist.txt: 2062) -/(.*/)?ads/oas/.* -# /ads/oas- (easylist.txt: 2061) -/(.*/)?ads/oas- -# /ads/ninemsn. (easylist.txt: 2060) -/(.*/)?ads/ninemsn\. -# /ads/navbar/* (easylist.txt: 2059) -/(.*/)?ads/navbar/.* -# /ads/mt_ (easylist.txt: 2058) -/(.*/)?ads/mt_ -# /ads/msn/* (easylist.txt: 2057) -/(.*/)?ads/msn/.* -# /ads/mpu? (easylist.txt: 2056) -/(.*/)?ads/mpu\? -# /ads/mpu2? (easylist.txt: 2055) -/(.*/)?ads/mpu2\? -# /ads/mpu/* (easylist.txt: 2054) -/(.*/)?ads/mpu/.* -# /ads/motherless. (easylist.txt: 2053) -/(.*/)?ads/motherless\. -# /ads/middle/* (easylist.txt: 2052) -/(.*/)?ads/middle/.* -# /ads/menu_ (easylist.txt: 2051) -/(.*/)?ads/menu_ -# /ads/masthead_ (easylist.txt: 2050) -/(.*/)?ads/masthead_ -# /ads/marketing/* (easylist.txt: 2049) -/(.*/)?ads/marketing/.* -# /ads/main. (easylist.txt: 2048) -/(.*/)?ads/main\. -# /ads/load. (easylist.txt: 2047) -/(.*/)?ads/load\. -# /ads/leaderbox. (easylist.txt: 2046) -/(.*/)?ads/leaderbox\. -# /ads/leaderboard_ (easylist.txt: 2045) -/(.*/)?ads/leaderboard_ -# /ads/leaderboard? (easylist.txt: 2044) -/(.*/)?ads/leaderboard\? -# /ads/leaderboard/* (easylist.txt: 2043) -/(.*/)?ads/leaderboard/.* -# /ads/leaderboard. (easylist.txt: 2042) -/(.*/)?ads/leaderboard\. -# /ads/leaderboard- (easylist.txt: 2041) -/(.*/)?ads/leaderboard- -# /ads/layer. (easylist.txt: 2040) -/(.*/)?ads/layer\. -# /ads/labels/* (easylist.txt: 2039) -/(.*/)?ads/labels/.* -# /ads/jsbannertext. (easylist.txt: 2038) -/(.*/)?ads/jsbannertext\. -# /ads/js_ (easylist.txt: 2037) -/(.*/)?ads/js_ -# /ads/js/* (easylist.txt: 2036) -/(.*/)?ads/js/.* -# /ads/js. (easylist.txt: 2035) -/(.*/)?ads/js\. -# /ads/interstitial/* (easylist.txt: 2034) -/(.*/)?ads/interstitial/.* -# /ads/interstitial. (easylist.txt: 2033) -/(.*/)?ads/interstitial\. -# /ads/inner_ (easylist.txt: 2032) -/(.*/)?ads/inner_ -# /ads/inline. (easylist.txt: 2031) -/(.*/)?ads/inline\. -# /Ads/InFullScreen. (easylist.txt: 2030) -/(.*/)?Ads/InFullScreen\. -# /ads/indexsponsors/* (easylist.txt: 2029) -/(.*/)?ads/indexsponsors/.* -# /ads/index. (easylist.txt: 2028) -/(.*/)?ads/index\. -# /ads/index- (easylist.txt: 2027) -/(.*/)?ads/index- -# /ads/img/* (easylist.txt: 2026) -/(.*/)?ads/img/.* -# /ads/imbox- (easylist.txt: 2025) -/(.*/)?ads/imbox- -# /ads/images/* (easylist.txt: 2024) -/(.*/)?ads/images/.* -# /ads/image/* (easylist.txt: 2023) -/(.*/)?ads/image/.* -# /ads/im2. (easylist.txt: 2022) -/(.*/)?ads/im2\. -# /ads/iframe (easylist.txt: 2021) -/(.*/)?ads/iframe -# /ads/htmlparser. (easylist.txt: 2020) -/(.*/)?ads/htmlparser\. -# /ads/html/* (easylist.txt: 2019) -/(.*/)?ads/html/.* -# /ads/house_ (easylist.txt: 2018) -/(.*/)?ads/house_ -# /ads/house/* (easylist.txt: 2017) -/(.*/)?ads/house/.* -# /ads/horizontal/* (easylist.txt: 2016) -/(.*/)?ads/horizontal/.* -# /ads/homepage/* (easylist.txt: 2015) -/(.*/)?ads/homepage/.* -# /ads/home/* (easylist.txt: 2014) -/(.*/)?ads/home/.* -# /ads/header_ (easylist.txt: 2013) -/(.*/)?ads/header_ -# /ads/header/* (easylist.txt: 2012) -/(.*/)?ads/header/.* -# /ads/header- (easylist.txt: 2011) -/(.*/)?ads/header- -# /ads/head. (easylist.txt: 2010) -/(.*/)?ads/head\. -# /ads/gray/* (easylist.txt: 2009) -/(.*/)?ads/gray/.* -# /ads/gpt_ (easylist.txt: 2008) -/(.*/)?ads/gpt_ -# /ads/gpt/* (easylist.txt: 2007) -/(.*/)?ads/gpt/.* -# /ads/google_ (easylist.txt: 2006) -/(.*/)?ads/google_ -# /ads/google2. (easylist.txt: 2005) -/(.*/)?ads/google2\. -# /ads/google1. (easylist.txt: 2004) -/(.*/)?ads/google1\. -# /ads/generator/* (easylist.txt: 2003) -/(.*/)?ads/generator/.* -# /ads/generatedHTML/* (easylist.txt: 2002) -/(.*/)?ads/generatedHTML/.* -# /ads/g/* (easylist.txt: 2001) -/(.*/)?ads/g/.* -# /ads/freewheel/* (easylist.txt: 2000) -/(.*/)?ads/freewheel/.* -# /ads/footer_ (easylist.txt: 1999) -/(.*/)?ads/footer_ -# /ads/footer. (easylist.txt: 1998) -/(.*/)?ads/footer\. -# /ads/footer- (easylist.txt: 1997) -/(.*/)?ads/footer- -# /ads/flashbanners/* (easylist.txt: 1996) -/(.*/)?ads/flashbanners/.* -# /ads/flash_ (easylist.txt: 1995) -/(.*/)?ads/flash_ -# /ads/flash/* (easylist.txt: 1994) -/(.*/)?ads/flash/.* -# /ads/fb- (easylist.txt: 1993) -/(.*/)?ads/fb- -# /ads/exit. (easylist.txt: 1992) -/(.*/)?ads/exit\. -# /ads/empty. (easylist.txt: 1991) -/(.*/)?ads/empty\. -# /ads/elementViewability. (easylist.txt: 1990) -/(.*/)?ads/elementViewability\. -# /ads/displaytrust. (easylist.txt: 1989) -/(.*/)?ads/displaytrust\. -# /ads/display/* (easylist.txt: 1988) -/(.*/)?ads/display/.* -# /ads/directory/* (easylist.txt: 1987) -/(.*/)?ads/directory/.* -# /ads/dhtml/* (easylist.txt: 1986) -/(.*/)?ads/dhtml/.* -# /ads/dfp/* (easylist.txt: 1985) -/(.*/)?ads/dfp/.* -# /ads/dfp. (easylist.txt: 1984) -/(.*/)?ads/dfp\. -# /ads/design- (easylist.txt: 1983) -/(.*/)?ads/design- -# /ads/default_ (easylist.txt: 1982) -/(.*/)?ads/default_ -# /ads/dart. (easylist.txt: 1981) -/(.*/)?ads/dart\. -# /ads/daily_ (easylist.txt: 1980) -/(.*/)?ads/daily_ -# /ads/daily. (easylist.txt: 1979) -/(.*/)?ads/daily\. -# /ads/cube- (easylist.txt: 1978) -/(.*/)?ads/cube- -# /ads/creatives/* (easylist.txt: 1977) -/(.*/)?ads/creatives/.* -# /ads/create_ (easylist.txt: 1976) -/(.*/)?ads/create_ -# /ads/contextuallinks/* (easylist.txt: 1975) -/(.*/)?ads/contextuallinks/.* -# /ads/contextual_ (easylist.txt: 1974) -/(.*/)?ads/contextual_ -# /ads/contextual. (easylist.txt: 1973) -/(.*/)?ads/contextual\. -# /ads/configuration/* (easylist.txt: 1972) -/(.*/)?ads/configuration/.* -# /ads/config/* (easylist.txt: 1971) -/(.*/)?ads/config/.* -# /ads/common/* (easylist.txt: 1970) -/(.*/)?ads/common/.* -# /ads/cnvideo/* (easylist.txt: 1969) -/(.*/)?ads/cnvideo/.* -# /ads/click_ (easylist.txt: 1968) -/(.*/)?ads/click_ -# /ads/checkViewport. (easylist.txt: 1967) -/(.*/)?ads/checkViewport\. -# /ads/center. (easylist.txt: 1966) -/(.*/)?ads/center\. -# /ads/center- (easylist.txt: 1965) -/(.*/)?ads/center- -# /ads/cbr. (easylist.txt: 1964) -/(.*/)?ads/cbr\. -# /Ads/Builder. (easylist.txt: 1963) -/(.*/)?Ads/Builder\. -# /ads/btbuckets/* (easylist.txt: 1962) -/(.*/)?ads/btbuckets/.* -# /ads/bt/* (easylist.txt: 1961) -/(.*/)?ads/bt/.* -# /ads/branding/* (easylist.txt: 1960) -/(.*/)?ads/branding/.* -# /ads/box/* (easylist.txt: 1959) -/(.*/)?ads/box/.* -# /ads/bottom/* (easylist.txt: 1958) -/(.*/)?ads/bottom/.* -# /ads/bottom. (easylist.txt: 1957) -/(.*/)?ads/bottom\. -# /ads/blank. (easylist.txt: 1956) -/(.*/)?ads/blank\. -# /Ads/Biz_ (easylist.txt: 1955) -/(.*/)?Ads/Biz_ -# /ads/bilar/* (easylist.txt: 1954) -/(.*/)?ads/bilar/.* -# /ads/behicon. (easylist.txt: 1953) -/(.*/)?ads/behicon\. -# /ads/beacon. (easylist.txt: 1952) -/(.*/)?ads/beacon\. -# /ads/base. (easylist.txt: 1951) -/(.*/)?ads/base\. -# /ads/banners/* (easylist.txt: 1950) -/(.*/)?ads/banners/.* -# /ads/banner_ (easylist.txt: 1949) -/(.*/)?ads/banner_ -# /ads/banner01. (easylist.txt: 1948) -/(.*/)?ads/banner01\. -# /ads/banner/* (easylist.txt: 1947) -/(.*/)?ads/banner/.* -# /ads/banner. (easylist.txt: 1946) -/(.*/)?ads/banner\. -# /ads/banner- (easylist.txt: 1945) -/(.*/)?ads/banner- -# /ads/b/* (easylist.txt: 1944) -/(.*/)?ads/b/.* -# /ads/async/* (easylist.txt: 1943) -/(.*/)?ads/async/.* -# /ads/assets/* (easylist.txt: 1942) -/(.*/)?ads/assets/.* -# /ads/as_header. (easylist.txt: 1941) -/(.*/)?ads/as_header\. -# /ads/aff- (easylist.txt: 1940) -/(.*/)?ads/aff- -# /ads/afc/* (easylist.txt: 1939) -/(.*/)?ads/afc/.* -# /ads/adv/* (easylist.txt: 1938) -/(.*/)?ads/adv/.* -# /ads/ads_ (easylist.txt: 1937) -/(.*/)?ads/ads_ -# /ads/ads/* (easylist.txt: 1936) -/(.*/)?ads/ads/.* -# /ads/ads. (easylist.txt: 1935) -/(.*/)?ads/ads\. -# /Ads/adrp0. (easylist.txt: 1933) -/(.*/)?Ads/adrp0\. -# /ads/adrime/* (easylist.txt: 1932) -/(.*/)?ads/adrime/.* -# /ads/ad_ (easylist.txt: 1931) -/(.*/)?ads/ad_ -# /ads/ad. (easylist.txt: 1930) -/(.*/)?ads/ad\. -# /ads/ad- (easylist.txt: 1929) -/(.*/)?ads/ad- -# /ads/acctid= (easylist.txt: 1928) -/(.*/)?ads/acctid= -# /ads/a. (easylist.txt: 1927) -/(.*/)?ads/a\. -# /ads/?QAPS_ (easylist.txt: 1926) -/(.*/)?ads/\?QAPS_ -# /ads/728b. (easylist.txt: 1925) -/(.*/)?ads/728b\. -# /ads/728. (easylist.txt: 1924) -/(.*/)?ads/728\. -# /ads/468a. (easylist.txt: 1923) -/(.*/)?ads/468a\. -# /ads/468. (easylist.txt: 1922) -/(.*/)?ads/468\. -# /ads/300x120_ (easylist.txt: 1921) -/(.*/)?ads/300x120_ -# /ads/3002. (easylist.txt: 1920) -/(.*/)?ads/3002\. -# /ads/300. (easylist.txt: 1919) -/(.*/)?ads/300\. -# /ads/3.0/* (easylist.txt: 1918) -/(.*/)?ads/3\.0/.* -# /ads/250x120_ (easylist.txt: 1917) -/(.*/)?ads/250x120_ -# /ads/2010/* (easylist.txt: 1916) -/(.*/)?ads/2010/.* -# /ads/2.0/* (easylist.txt: 1915) -/(.*/)?ads/2\.0/.* -# /ads/160/* (easylist.txt: 1914) -/(.*/)?ads/160/.* -# /ads/160. (easylist.txt: 1913) -/(.*/)?ads/160\. -# /ads/125r. (easylist.txt: 1912) -/(.*/)?ads/125r\. -# /ads/125l. (easylist.txt: 1911) -/(.*/)?ads/125l\. -# /ads.w3c. (easylist.txt: 1910) -/(.*/)?ads\.w3c\. -ads.w3c.*. -# /ads.v5.js (easylist.txt: 1909) -/(.*/)?ads\.v5\.js -ads.v5.js*. -# /ads.swf (easylist.txt: 1908) -/(.*/)?ads\.swf -ads.swf*. -# /ads.png (easylist.txt: 1907) -/(.*/)?ads\.png -ads.png*. -# /ads.pl? (easylist.txt: 1906) -/(.*/)?ads\.pl\? -# /ads.php (easylist.txt: 1905) -/(.*/)?ads\.php -ads.php*. -# /ads.pbs (easylist.txt: 1904) -/(.*/)?ads\.pbs -ads.pbs*. -# /ads.jsp (easylist.txt: 1903) -/(.*/)?ads\.jsp -ads.jsp*. -# /ads.json? (easylist.txt: 1902) -/(.*/)?ads\.json\? -# /ads.js? (easylist.txt: 1901) -/(.*/)?ads\.js\? -# /ads.js/* (easylist.txt: 1900) -/(.*/)?ads\.js/.* -ads.js/.* -# /ads.js. (easylist.txt: 1899) -/(.*/)?ads\.js\. -ads.js.*. -# /ads.htm (easylist.txt: 1898) -/(.*/)?ads\.htm -ads.htm*. -# /ads.gif (easylist.txt: 1897) -/(.*/)?ads\.gif -ads.gif*. -# /ads.dll/* (easylist.txt: 1896) -/(.*/)?ads\.dll/.* -ads.dll/.* -# /ads.css (easylist.txt: 1895) -/(.*/)?ads\.css -ads.css*. -# /ads.cfm? (easylist.txt: 1894) -/(.*/)?ads\.cfm\? -# /ads.aspx (easylist.txt: 1893) -/(.*/)?ads\.aspx -ads.aspx*. -# /ads.asp? (easylist.txt: 1892) -/(.*/)?ads\.asp\? -# /Ads.ashx (easylist.txt: 1891) -/(.*/)?Ads\.ashx -Ads.ashx*. -# /ads-top. (easylist.txt: 1890) -/(.*/)?ads-top\. -ads-top.*. -# /ads-sky| (easylist.txt: 1889) -/(.*/)?ads-sky$ -# /ads-skyscraper. (easylist.txt: 1888) -/(.*/)?ads-skyscraper\. -ads-skyscraper.*. -# /ads-service. (easylist.txt: 1887) -/(.*/)?ads-service\. -ads-service.*. -# /ads-segmentjs. (easylist.txt: 1886) -/(.*/)?ads-segmentjs\. -ads-segmentjs.*. -# /ads-scroller- (easylist.txt: 1885) -/(.*/)?ads-scroller- -ads-scroller-*. -# /ads-screen. (easylist.txt: 1884) -/(.*/)?ads-screen\. -ads-screen.*. -# /ads-sa. (easylist.txt: 1883) -/(.*/)?ads-sa\. -ads-sa.*. -# /ads-right. (easylist.txt: 1882) -/(.*/)?ads-right\. -ads-right.*. -# /ads-reviews- (easylist.txt: 1881) -/(.*/)?ads-reviews- -ads-reviews-*. -# /ads-request. (easylist.txt: 1880) -/(.*/)?ads-request\. -ads-request.*. -# /ads-rec| (easylist.txt: 1879) -/(.*/)?ads-rec$ -# /ads-rectangle. (easylist.txt: 1878) -/(.*/)?ads-rectangle\. -ads-rectangle.*. -# /ads-pd. (easylist.txt: 1877) -/(.*/)?ads-pd\. -ads-pd.*. -# /ads-nodep. (easylist.txt: 1876) -/(.*/)?ads-nodep\. -ads-nodep.*. -# /ads-new. (easylist.txt: 1875) -/(.*/)?ads-new\. -ads-new.*. -# /ads-net. (easylist.txt: 1874) -/(.*/)?ads-net\. -ads-net.*. -# /ads-min. (easylist.txt: 1873) -/(.*/)?ads-min\. -ads-min.*. -# /ads-leader| (easylist.txt: 1872) -/(.*/)?ads-leader$ -# /ads-holder. (easylist.txt: 1871) -/(.*/)?ads-holder\. -ads-holder.*. -# /ads-header- (easylist.txt: 1870) -/(.*/)?ads-header- -ads-header-*. -# /ads-gpt. (easylist.txt: 1869) -/(.*/)?ads-gpt\. -ads-gpt.*. -# /ads-footer. (easylist.txt: 1868) -/(.*/)?ads-footer\. -ads-footer.*. -# /ads-foot. (easylist.txt: 1867) -/(.*/)?ads-foot\. -ads-foot.*. -# /ads-common. (easylist.txt: 1866) -/(.*/)?ads-common\. -ads-common.*. -# /ads-blogs- (easylist.txt: 1865) -/(.*/)?ads-blogs- -ads-blogs-*. -# /ads-banner (easylist.txt: 1864) -/(.*/)?ads-banner -ads-banner*. -# /ads-arc. (easylist.txt: 1863) -/(.*/)?ads-arc\. -ads-arc.*. -# /ads-admin. (easylist.txt: 1862) -/(.*/)?ads-admin\. -ads-admin.*. -# /ads-300. (easylist.txt: 1861) -/(.*/)?ads-300\. -ads-300.*. -# /ads-300- (easylist.txt: 1860) -/(.*/)?ads-300- -ads-300-*. -# /ads-250. (easylist.txt: 1859) -/(.*/)?ads-250\. -ads-250.*. -# /ads-2. (easylist.txt: 1858) -/(.*/)?ads-2\. -ads-2.*. -# /ads-1. (easylist.txt: 1857) -/(.*/)?ads-1\. -ads-1.*. -# /ads-07. (easylist.txt: 1856) -/(.*/)?ads-07\. -ads-07.*. -# /ads-06. (easylist.txt: 1855) -/(.*/)?ads-06\. -ads-06.*. -# /ads-05. (easylist.txt: 1854) -/(.*/)?ads-05\. -ads-05.*. -# /ads-04. (easylist.txt: 1853) -/(.*/)?ads-04\. -ads-04.*. -# /ads-03. (easylist.txt: 1852) -/(.*/)?ads-03\. -ads-03.*. -# /ads-02. (easylist.txt: 1851) -/(.*/)?ads-02\. -ads-02.*. -# /ads-01. (easylist.txt: 1850) -/(.*/)?ads-01\. -ads-01.*. -# /adruptive. (easylist.txt: 1849) -/(.*/)?adruptive\. -adruptive.*. -# /adrun. (easylist.txt: 1848) -/(.*/)?adrun\. -adrun.*. -# /adrotv2. (easylist.txt: 1847) -/(.*/)?adrotv2\. -adrotv2.*. -# /adrotator_ (easylist.txt: 1846) -/(.*/)?adrotator_ -# /adrotator2. (easylist.txt: 1845) -/(.*/)?adrotator2\. -adrotator2.*. -# /adrotator/* (easylist.txt: 1844) -/(.*/)?adrotator/.* -# /adrotator. (easylist.txt: 1843) -/(.*/)?adrotator\. -adrotator.*. -# /adrotation. (easylist.txt: 1842) -/(.*/)?adrotation\. -adrotation.*. -# /adrotate/* (easylist.txt: 1841) -/(.*/)?adrotate/.* -# /adrotate. (easylist.txt: 1840) -/(.*/)?adrotate\. -adrotate.*. -# /adrotate- (easylist.txt: 1839) -/(.*/)?adrotate- -adrotate-*. -# /adrotat. (easylist.txt: 1838) -/(.*/)?adrotat\. -adrotat.*. -# /adrot_ (easylist.txt: 1837) -/(.*/)?adrot_ -# /adrot. (easylist.txt: 1836) -/(.*/)?adrot\. -adrot.*. -# /adroot/* (easylist.txt: 1835) -/(.*/)?adroot/.* -# /adrollpixel. (easylist.txt: 1834) -/(.*/)?adrollpixel\. -adrollpixel.*. -# /adroller. (easylist.txt: 1833) -/(.*/)?adroller\. -adroller.*. -# /adRoll. (easylist.txt: 1832) -/(.*/)?adRoll\. -adRoll.*. -# /adrolays. (easylist.txt: 1831) -/(.*/)?adrolays\. -adrolays.*. -# /adrobot. (easylist.txt: 1830) -/(.*/)?adrobot\. -adrobot.*. -# /adriver/* (easylist.txt: 1828) -/(.*/)?adriver/.* -# /adrightcol. (easylist.txt: 1826) -/(.*/)?adrightcol\. -adrightcol.*. -# /adright/* (easylist.txt: 1825) -/(.*/)?adright/.* -# /adright. (easylist.txt: 1824) -/(.*/)?adright\. -adright.*. -# /adrevolver/* (easylist.txt: 1823) -/(.*/)?adrevolver/.* -# /adrevenue/* (easylist.txt: 1822) -/(.*/)?adrevenue/.* -# /adrequisitor- (easylist.txt: 1821) -/(.*/)?adrequisitor- -adrequisitor-*. -# /adrequestvo. (easylist.txt: 1820) -/(.*/)?adrequestvo\. -adrequestvo.*. -# /adrequests. (easylist.txt: 1819) -/(.*/)?adrequests\. -adrequests.*. -# /adrequest. (easylist.txt: 1818) -/(.*/)?adrequest\. -adrequest.*. -# /adreplace728x90. (easylist.txt: 1817) -/(.*/)?adreplace728x90\. -adreplace728x90.*. -# /adreplace160x600. (easylist.txt: 1816) -/(.*/)?adreplace160x600\. -adreplace160x600.*. -# /adreplace/* (easylist.txt: 1815) -/(.*/)?adreplace/.* -# /adrendererfactory. (easylist.txt: 1814) -/(.*/)?adrendererfactory\. -adrendererfactory.*. -# /adremote. (easylist.txt: 1813) -/(.*/)?adremote\. -adremote.*. -# /adreload? (easylist.txt: 1812) -/(.*/)?adreload\? -# /adreload. (easylist.txt: 1811) -/(.*/)?adreload\. -adreload.*. -# /adrelated. (easylist.txt: 1810) -/(.*/)?adrelated\. -adrelated.*. -# /adrefresh. (easylist.txt: 1809) -/(.*/)?adrefresh\. -adrefresh.*. -# /adrefresh- (easylist.txt: 1808) -/(.*/)?adrefresh- -adrefresh-*. -# /adrectanglebanner? (easylist.txt: 1807) -/(.*/)?adrectanglebanner\? -# /adrec. (easylist.txt: 1806) -/(.*/)?adrec\. -adrec.*. -# /adreadytractions. (easylist.txt: 1805) -/(.*/)?adreadytractions\. -adreadytractions.*. -# /adreactor/* (easylist.txt: 1804) -/(.*/)?adreactor/.* -# /adrawdata/* (easylist.txt: 1803) -/(.*/)?adrawdata/.* -# /adratio. (easylist.txt: 1802) -/(.*/)?adratio\. -adratio.*. -# /adquality/* (easylist.txt: 1801) -/(.*/)?adquality/.* -# /AdPub/* (easylist.txt: 1800) -/(.*/)?AdPub/.* -# /adproxy/* (easylist.txt: 1799) -/(.*/)?adproxy/.* -# /adproxy. (easylist.txt: 1798) -/(.*/)?adproxy\. -adproxy.*. -# /adprovider. (easylist.txt: 1797) -/(.*/)?adprovider\. -adprovider.*. -# /adprove_ (easylist.txt: 1796) -/(.*/)?adprove_ -# /adproducts/* (easylist.txt: 1795) -/(.*/)?adproducts/.* -# /adprime. (easylist.txt: 1794) -/(.*/)?adprime\. -adprime.*. -# /AdPreview/* (easylist.txt: 1793) -/(.*/)?AdPreview/.* -# /AdPostInjectAsync. (easylist.txt: 1792) -/(.*/)?AdPostInjectAsync\. -AdPostInjectAsync.*. -# /adpositionsizein- (easylist.txt: 1791) -/(.*/)?adpositionsizein- -adpositionsizein-*. -# /adPositions. (easylist.txt: 1790) -/(.*/)?adPositions\. -adPositions.*. -# /adpopup. (easylist.txt: 1789) -/(.*/)?adpopup\. -adpopup.*. -# /adpop32. (easylist.txt: 1788) -/(.*/)?adpop32\. -adpop32.*. -# /adpop. (easylist.txt: 1787) -/(.*/)?adpop\. -adpop.*. -# /adpool/* (easylist.txt: 1786) -/(.*/)?adpool/.* -# /adpolestar/* (easylist.txt: 1785) -/(.*/)?adpolestar/.* -# /adpoint. (easylist.txt: 1784) -/(.*/)?adpoint\. -adpoint.*. -# /adplugin_ (easylist.txt: 1783) -/(.*/)?adplugin_ -# /adplugin. (easylist.txt: 1782) -/(.*/)?adplugin\. -adplugin.*. -# /adplayer/* (easylist.txt: 1781) -/(.*/)?adplayer/.* -# /adplayer. (easylist.txt: 1780) -/(.*/)?adplayer\. -adplayer.*. -# /adplayer- (easylist.txt: 1779) -/(.*/)?adplayer- -adplayer-*. -# /adplay. (easylist.txt: 1778) -/(.*/)?adplay\. -adplay.*. -# /adplacement. (easylist.txt: 1777) -/(.*/)?adplacement\. -adplacement.*. -# /adplace5_ (easylist.txt: 1776) -/(.*/)?adplace5_ -# /adplace/* (easylist.txt: 1775) -/(.*/)?adplace/.* -# /adpix/* (easylist.txt: 1774) -/(.*/)?adpix/.* -# /adping. (easylist.txt: 1773) -/(.*/)?adping\. -adping.*. -# /adpictures/* (easylist.txt: 1772) -/(.*/)?adpictures/.* -# /adpicture2| (easylist.txt: 1771) -/(.*/)?adpicture2$ -# /adpicture2. (easylist.txt: 1770) -/(.*/)?adpicture2\. -adpicture2.*. -# /adpicture1| (easylist.txt: 1769) -/(.*/)?adpicture1$ -# /adpicture1. (easylist.txt: 1768) -/(.*/)?adpicture1\. -adpicture1.*. -# /adpicture. (easylist.txt: 1767) -/(.*/)?adpicture\. -adpicture.*. -# /adpic/* (easylist.txt: 1766) -/(.*/)?adpic/.* -# /adpic. (easylist.txt: 1765) -/(.*/)?adpic\. -adpic.*. -# /adperfdemo. (easylist.txt: 1763) -/(.*/)?adperfdemo\. -adperfdemo.*. -# /adperf_ (easylist.txt: 1762) -/(.*/)?adperf_ -# /adpeeps/* (easylist.txt: 1761) -/(.*/)?adpeeps/.* -# /adpeeps. (easylist.txt: 1760) -/(.*/)?adpeeps\. -adpeeps.*. -# /adpatch. (easylist.txt: 1759) -/(.*/)?adpatch\. -adpatch.*. -# /adparts/* (easylist.txt: 1758) -/(.*/)?adparts/.* -# /adpartner. (easylist.txt: 1757) -/(.*/)?adpartner\. -adpartner.*. -# /adpanelcontent. (easylist.txt: 1756) -/(.*/)?adpanelcontent\. -adpanelcontent.*. -# /adpanel/* (easylist.txt: 1755) -/(.*/)?adpanel/.* -# /adpan/* (easylist.txt: 1754) -/(.*/)?adpan/.* -# /adpages/* (easylist.txt: 1753) -/(.*/)?adpages/.* -# /adpagem. (easylist.txt: 1752) -/(.*/)?adpagem\. -adpagem.*. -# /adpage/* (easylist.txt: 1751) -/(.*/)?adpage/.* -# /adpage. (easylist.txt: 1750) -/(.*/)?adpage\. -adpage.*. -# /adpage- (easylist.txt: 1749) -/(.*/)?adpage- -adpage-*. -# /adp.htm (easylist.txt: 1748) -/(.*/)?adp\.htm -adp.htm*. -# /adp-pro/* (easylist.txt: 1747) -/(.*/)?adp-pro/.* -# /adoverride. (easylist.txt: 1746) -/(.*/)?adoverride\. -adoverride.*. -# /adoverlayplugin. (easylist.txt: 1745) -/(.*/)?adoverlayplugin\. -adoverlayplugin.*. -# /adoverlay/* (easylist.txt: 1744) -/(.*/)?adoverlay/.* -# /adoverlay. (easylist.txt: 1743) -/(.*/)?adoverlay\. -adoverlay.*. -# /adotubeplugin. (easylist.txt: 1742) -/(.*/)?adotubeplugin\. -adotubeplugin.*. -# /adotube_adapter. (easylist.txt: 1741) -/(.*/)?adotube_adapter\. -# /ados.js (easylist.txt: 1740) -/(.*/)?ados\.js -ados.js*. -# /adorika728. (easylist.txt: 1739) -/(.*/)?adorika728\. -adorika728.*. -# /adorika300. (easylist.txt: 1738) -/(.*/)?adorika300\. -adorika300.*. -# /adoptions. (easylist.txt: 1737) -/(.*/)?adoptions\. -adoptions.*. -# /adoptionicon. (easylist.txt: 1736) -/(.*/)?adoptionicon\. -adoptionicon.*. -# /AdOptimizer. (easylist.txt: 1735) -/(.*/)?AdOptimizer\. -AdOptimizer.*. -# /adops/* (easylist.txt: 1734) -/(.*/)?adops/.* -# /adops. (easylist.txt: 1733) -/(.*/)?adops\. -adops.*. -# /adonly468. (easylist.txt: 1732) -/(.*/)?adonly468\. -adonly468.*. -# /adonline. (easylist.txt: 1731) -/(.*/)?adonline\. -adonline.*. -# /adometry? (easylist.txt: 1730) -/(.*/)?adometry\? -# /adometry. (easylist.txt: 1729) -/(.*/)?adometry\. -adometry.*. -# /adometry- (easylist.txt: 1728) -/(.*/)?adometry- -adometry-*. -# /adocean. (easylist.txt: 1727) -/(.*/)?adocean\. -adocean.*. -# /adobject. (easylist.txt: 1726) -/(.*/)?adobject\. -adobject.*. -# /adnotice. (easylist.txt: 1725) -/(.*/)?adnotice\. -adnotice.*. -# /adnl. (easylist.txt: 1724) -/(.*/)?adnl\. -adnl.*. -# /adng.html (easylist.txt: 1723) -/(.*/)?adng\.html -adng.html*. -# /adnexus- (easylist.txt: 1722) -/(.*/)?adnexus- -adnexus-*. -# /AdNewsclip15. (easylist.txt: 1720) -/(.*/)?AdNewsclip15\. -AdNewsclip15.*. -# /AdNewsclip14. (easylist.txt: 1719) -/(.*/)?AdNewsclip14\. -AdNewsclip14.*. -# /adnews. (easylist.txt: 1718) -/(.*/)?adnews\. -adnews.*. -# /adnew2. (easylist.txt: 1717) -/(.*/)?adnew2\. -adnew2.*. -# /adnetwork_ (easylist.txt: 1716) -/(.*/)?adnetwork_ -# /adnetwork468. (easylist.txt: 1715) -/(.*/)?adnetwork468\. -adnetwork468.*. -# /adnetwork300. (easylist.txt: 1714) -/(.*/)?adnetwork300\. -adnetwork300.*. -# /adnetwork/* (easylist.txt: 1713) -/(.*/)?adnetwork/.* -# /adnetmedia. (easylist.txt: 1711) -/(.*/)?adnetmedia\. -adnetmedia.*. -# /adnet2. (easylist.txt: 1710) -/(.*/)?adnet2\. -adnet2.*. -# /ADNet/* (easylist.txt: 1709) -/(.*/)?ADNet/.* -# /adnet. (easylist.txt: 1708) -/(.*/)?adnet\. -adnet.*. -# /adNdsoft/* (easylist.txt: 1707) -/(.*/)?adNdsoft/.* -# /adnap/* (easylist.txt: 1706) -/(.*/)?adnap/.* -# /admonitor. (easylist.txt: 1705) -/(.*/)?admonitor\. -admonitor.*. -# /admonitor- (easylist.txt: 1704) -/(.*/)?admonitor- -admonitor-*. -# /admob. (easylist.txt: 1703) -/(.*/)?admob\. -admob.*. -# /admixer_ (easylist.txt: 1702) -/(.*/)?admixer_ -# /admixer- (easylist.txt: 1701) -/(.*/)?admixer- -admixer-*. -# /adminibanner2. (easylist.txt: 1700) -/(.*/)?adminibanner2\. -adminibanner2.*. -# /admin/sponsors/* (easylist.txt: 1699) -/(.*/)?admin/sponsors/.* -# /admin/banners/* (easylist.txt: 1698) -/(.*/)?admin/banners/.* -# /admin/ad_ (easylist.txt: 1697) -/(.*/)?admin/ad_ -# /admicro_ (easylist.txt: 1696) -/(.*/)?admicro_ -# /admicro2. (easylist.txt: 1695) -/(.*/)?admicro2\. -admicro2.*. -# /admgr. (easylist.txt: 1694) -/(.*/)?admgr\. -admgr.*. -# /admez/* (easylist.txt: 1693) -/(.*/)?admez/.* -# /admez. (easylist.txt: 1692) -/(.*/)?admez\. -admez.*. -# /admeta. (easylist.txt: 1691) -/(.*/)?admeta\. -admeta.*. -# /admentorserve. (easylist.txt: 1690) -/(.*/)?admentorserve\. -admentorserve.*. -# /admentorasp/* (easylist.txt: 1689) -/(.*/)?admentorasp/.* -# /admentor302/* (easylist.txt: 1688) -/(.*/)?admentor302/.* -# /admentor/* (easylist.txt: 1687) -/(.*/)?admentor/.* -# /admeldscript. (easylist.txt: 1686) -/(.*/)?admeldscript\. -admeldscript.*. -# /admeld_ (easylist.txt: 1685) -/(.*/)?admeld_ -# /admeld/* (easylist.txt: 1684) -/(.*/)?admeld/.* -# /admeld. (easylist.txt: 1683) -/(.*/)?admeld\. -admeld.*. -# /admega. (easylist.txt: 1682) -/(.*/)?admega\. -admega.*. -# /admedia/* (easylist.txt: 1681) -/(.*/)?admedia/.* -# /admedia. (easylist.txt: 1680) -/(.*/)?admedia\. -admedia.*. -# /admeasure. (easylist.txt: 1679) -/(.*/)?admeasure\. -admeasure.*. -# /admaxads. (easylist.txt: 1678) -/(.*/)?admaxads\. -admaxads.*. -# /admax/* (easylist.txt: 1677) -/(.*/)?admax/.* -# /admatik. (easylist.txt: 1675) -/(.*/)?admatik\. -admatik.*. -# /admatcherclient. (easylist.txt: 1674) -/(.*/)?admatcherclient\. -admatcherclient.*. -# /admatch- (easylist.txt: 1672) -/(.*/)?admatch- -admatch-*. -# /admaster? (easylist.txt: 1671) -/(.*/)?admaster\? -# /admaster. (easylist.txt: 1670) -/(.*/)?admaster\. -admaster.*. -# /admarvel. (easylist.txt: 1669) -/(.*/)?admarvel\. -admarvel.*. -# /adMarketplace. (easylist.txt: 1668) -/(.*/)?adMarketplace\. -adMarketplace.*. -# /admarket/* (easylist.txt: 1667) -/(.*/)?admarket/.* -# /admarker_ (easylist.txt: 1666) -/(.*/)?admarker_ -# /admarker. (easylist.txt: 1665) -/(.*/)?admarker\. -admarker.*. -# /admantx/* (easylist.txt: 1664) -/(.*/)?admantx/.* -# /admantx. (easylist.txt: 1663) -/(.*/)?admantx\. -admantx.*. -# /admantx- (easylist.txt: 1662) -/(.*/)?admantx- -admantx-*. -# /admanproxy. (easylist.txt: 1661) -/(.*/)?admanproxy\. -admanproxy.*. -# /admanagerstatus/* (easylist.txt: 1660) -/(.*/)?admanagerstatus/.* -# /admanagers/* (easylist.txt: 1659) -/(.*/)?admanagers/.* -# /admanager_ (easylist.txt: 1658) -/(.*/)?admanager_ -# /admanager3. (easylist.txt: 1657) -/(.*/)?admanager3\. -admanager3.*. -# /admanagementadvanced. (easylist.txt: 1654) -/(.*/)?admanagementadvanced\. -admanagementadvanced.*. -# /admanagement/* (easylist.txt: 1653) -/(.*/)?admanagement/.* -# /adman/* (easylist.txt: 1652) -/(.*/)?adman/.* -# /adman. (easylist.txt: 1651) -/(.*/)?adman\. -adman.*. -# /adman- (easylist.txt: 1650) -/(.*/)?adman- -adman-*. -# /admain| (easylist.txt: 1649) -/(.*/)?admain$ -# /admain. (easylist.txt: 1648) -/(.*/)?admain\. -admain.*. -# /adm/ad/* (easylist.txt: 1647) -/(.*/)?adm/ad/.* -# /adlog.php? (easylist.txt: 1646) -/(.*/)?adlog\.php\? -# /adlock300. (easylist.txt: 1645) -/(.*/)?adlock300\. -adlock300.*. -# /adloader. (easylist.txt: 1644) -/(.*/)?adloader\. -adloader.*. -# /adload. (easylist.txt: 1643) -/(.*/)?adload\. -adload.*. -# /adlist_ (easylist.txt: 1642) -/(.*/)?adlist_ -# /adlinks_ (easylist.txt: 1641) -/(.*/)?adlinks_ -# /adlinks2. (easylist.txt: 1640) -/(.*/)?adlinks2\. -adlinks2.*. -# /adlinks. (easylist.txt: 1639) -/(.*/)?adlinks\. -adlinks.*. -# /adlink_ (easylist.txt: 1638) -/(.*/)?adlink_ -# /adLink728. (easylist.txt: 1637) -/(.*/)?adLink728\. -adLink728.*. -# /adlink/* (easylist.txt: 1636) -/(.*/)?adlink/.* -# /adlink. (easylist.txt: 1635) -/(.*/)?adlink\. -adlink.*. -# /adlink- (easylist.txt: 1634) -/(.*/)?adlink- -adlink-*. -# /adlift4_ (easylist.txt: 1632) -/(.*/)?adlift4_ -# /adlift4. (easylist.txt: 1631) -/(.*/)?adlift4\. -adlift4.*. -# /adlib. (easylist.txt: 1630) -/(.*/)?adlib\. -adlib.*. -# /adlesse. (easylist.txt: 1629) -/(.*/)?adlesse\. -adlesse.*. -# /adlens- (easylist.txt: 1628) -/(.*/)?adlens- -adlens-*. -# /adleftsidebar. (easylist.txt: 1627) -/(.*/)?adleftsidebar\. -adleftsidebar.*. -# /adleft/* (easylist.txt: 1626) -/(.*/)?adleft/.* -# /adleft. (easylist.txt: 1625) -/(.*/)?adleft\. -adleft.*. -# /adleaderboardtop. (easylist.txt: 1624) -/(.*/)?adleaderboardtop\. -adleaderboardtop.*. -# /adleader. (easylist.txt: 1623) -/(.*/)?adleader\. -adleader.*. -# /adlead. (easylist.txt: 1622) -/(.*/)?adlead\. -adlead.*. -# /adlayer/* (easylist.txt: 1621) -/(.*/)?adlayer/.* -# /adlayer. (easylist.txt: 1620) -/(.*/)?adlayer\. -adlayer.*. -# /adlargefooter2. (easylist.txt: 1619) -/(.*/)?adlargefooter2\. -adlargefooter2.*. -# /adlargefooter. (easylist.txt: 1618) -/(.*/)?adlargefooter\. -adlargefooter.*. -# /adlantisloader. (easylist.txt: 1617) -/(.*/)?adlantisloader\. -adlantisloader.*. -# /adlantis. (easylist.txt: 1616) -/(.*/)?adlantis\. -adlantis.*. -# /adlandr. (easylist.txt: 1615) -/(.*/)?adlandr\. -adlandr.*. -# /AdLanding. (easylist.txt: 1614) -/(.*/)?AdLanding\. -AdLanding.*. -# /adlabs.js (easylist.txt: 1613) -/(.*/)?adlabs\.js -adlabs.js*. -# /adlabel_ (easylist.txt: 1612) -/(.*/)?adlabel_ -# /adlabel. (easylist.txt: 1611) -/(.*/)?adlabel\. -adlabel.*. -# /adl.php (easylist.txt: 1610) -/(.*/)?adl\.php -adl.php*. -# /adkeys. (easylist.txt: 1609) -/(.*/)?adkeys\. -adkeys.*. -# /adjuggler? (easylist.txt: 1608) -/(.*/)?adjuggler\? -# /adjug. (easylist.txt: 1607) -/(.*/)?adjug\. -adjug.*. -# /adjsmp. (easylist.txt: 1606) -/(.*/)?adjsmp\. -adjsmp.*. -# /adjs_ (easylist.txt: 1605) -/(.*/)?adjs_ -# /adjs? (easylist.txt: 1604) -/(.*/)?adjs\? -# /adjs/* (easylist.txt: 1603) -/(.*/)?adjs/.* -# /adjs. (easylist.txt: 1602) -/(.*/)?adjs\. -adjs.*. -# /adjk. (easylist.txt: 1601) -/(.*/)?adjk\. -adjk.*. -# /adj.php? (easylist.txt: 1600) -/(.*/)?adj\.php\? -# /adixs. (easylist.txt: 1599) -/(.*/)?adixs\. -adixs.*. -# /adition. (easylist.txt: 1598) -/(.*/)?adition\. -adition.*. -# /adiquity. (easylist.txt: 1596) -/(.*/)?adiquity\. -adiquity.*. -# /adinterax. (easylist.txt: 1595) -/(.*/)?adinterax\. -adinterax.*. -# /adinsertjuicy. (easylist.txt: 1594) -/(.*/)?adinsertjuicy\. -adinsertjuicy.*. -# /adinsertionplugin. (easylist.txt: 1593) -/(.*/)?adinsertionplugin\. -adinsertionplugin.*. -# /adinsert. (easylist.txt: 1592) -/(.*/)?adinsert\. -adinsert.*. -# /adinjector_ (easylist.txt: 1591) -/(.*/)?adinjector_ -# /adinjector. (easylist.txt: 1590) -/(.*/)?adinjector\. -adinjector.*. -# /adinject. (easylist.txt: 1589) -/(.*/)?adinject\. -adinject.*. -# /adinit. (easylist.txt: 1588) -/(.*/)?adinit\. -adinit.*. -# /adindicatortext. (easylist.txt: 1587) -/(.*/)?adindicatortext\. -adindicatortext.*. -# /adindex/* (easylist.txt: 1586) -/(.*/)?adindex/.* -# /adinclude/* (easylist.txt: 1585) -/(.*/)?adinclude/.* -# /adinclude. (easylist.txt: 1584) -/(.*/)?adinclude\. -adinclude.*. -# /adinator/* (easylist.txt: 1583) -/(.*/)?adinator/.* -# /adimg/* (easylist.txt: 1582) -/(.*/)?adimg/.* -# /adimg. (easylist.txt: 1581) -/(.*/)?adimg\. -adimg.*. -# /adimages. (easylist.txt: 1579) -/(.*/)?adimages\. -adimages.*. -# /adimage? (easylist.txt: 1578) -/(.*/)?adimage\? -# /adimage/* (easylist.txt: 1577) -/(.*/)?adimage/.* -# /adimage. (easylist.txt: 1576) -/(.*/)?adimage\. -adimage.*. -# /adim.html?ad (easylist.txt: 1575) -/(.*/)?adim\.html\?ad -# /adifyoverlay. (easylist.txt: 1574) -/(.*/)?adifyoverlay\. -adifyoverlay.*. -# /adifyids. (easylist.txt: 1573) -/(.*/)?adifyids\. -adifyids.*. -# /adifyad. (easylist.txt: 1572) -/(.*/)?adifyad\. -adifyad.*. -# /adify_ (easylist.txt: 1571) -/(.*/)?adify_ -# /adiframe|*|adtech; (easylist.txt: 1570) -/(.*/)?adiframe\|.*\|adtech; -# /adiframetop. (easylist.txt: 1569) -/(.*/)?adiframetop\. -adiframetop.*. -# /adiframem2. (easylist.txt: 1568) -/(.*/)?adiframem2\. -adiframem2.*. -# /adiframem1. (easylist.txt: 1567) -/(.*/)?adiframem1\. -adiframem1.*. -# /adiframeanchor. (easylist.txt: 1566) -/(.*/)?adiframeanchor\. -adiframeanchor.*. -# /adiframe_ (easylist.txt: 1565) -/(.*/)?adiframe_ -# /adiframe? (easylist.txt: 1564) -/(.*/)?adiframe\? -# /adiframe9. (easylist.txt: 1563) -/(.*/)?adiframe9\. -adiframe9.*. -# /adiframe7. (easylist.txt: 1562) -/(.*/)?adiframe7\. -adiframe7.*. -# /adiframe2. (easylist.txt: 1561) -/(.*/)?adiframe2\. -adiframe2.*. -# /adiframe18. (easylist.txt: 1560) -/(.*/)?adiframe18\. -adiframe18.*. -# /adiframe1. (easylist.txt: 1559) -/(.*/)?adiframe1\. -adiframe1.*. -# /adiframe/* (easylist.txt: 1558) -/(.*/)?adiframe/.* -# /adiframe. (easylist.txt: 1557) -/(.*/)?adiframe\. -adiframe.*. -# /adicon_ (easylist.txt: 1556) -/(.*/)?adicon_ -# /adhug_ (easylist.txt: 1555) -/(.*/)?adhug_ -# /adhub. (easylist.txt: 1554) -/(.*/)?adhub\. -adhub.*. -# /adhtml/* (easylist.txt: 1553) -/(.*/)?adhtml/.* -# /adhref. (easylist.txt: 1552) -/(.*/)?adhref\. -adhref.*. -# /adhood. (easylist.txt: 1550) -/(.*/)?adhood\. -adhood.*. -# /adhomepage2. (easylist.txt: 1549) -/(.*/)?adhomepage2\. -adhomepage2.*. -# /adhomepage. (easylist.txt: 1548) -/(.*/)?adhomepage\. -adhomepage.*. -# /adhints/* (easylist.txt: 1547) -/(.*/)?adhints/.* -# /adhese_ (easylist.txt: 1546) -/(.*/)?adhese_ -# /adhese. (easylist.txt: 1545) -/(.*/)?adhese\. -adhese.*. -# /adheading_ (easylist.txt: 1544) -/(.*/)?adheading_ -# /adheadertxt. (easylist.txt: 1543) -/(.*/)?adheadertxt\. -adheadertxt.*. -# /adheader. (easylist.txt: 1542) -/(.*/)?adheader\. -adheader.*. -# /adhandlers2. (easylist.txt: 1541) -/(.*/)?adhandlers2\. -adhandlers2.*. -# /adhandlers- (easylist.txt: 1540) -/(.*/)?adhandlers- -adhandlers-*. -# /adhandler. (easylist.txt: 1538) -/(.*/)?adhandler\. -adhandler.*. -# /adhalfbanner. (easylist.txt: 1537) -/(.*/)?adhalfbanner\. -adhalfbanner.*. -# /adhads. (easylist.txt: 1536) -/(.*/)?adhads\. -adhads.*. -# /adguru. (easylist.txt: 1535) -/(.*/)?adguru\. -adguru.*. -# /adguard. (easylist.txt: 1534) -/(.*/)?adguard\. -adguard.*. -# /adgraphics/* (easylist.txt: 1533) -/(.*/)?adgraphics/.* -# /adgooglefull2. (easylist.txt: 1532) -/(.*/)?adgooglefull2\. -adgooglefull2.*. -# /adgitize- (easylist.txt: 1531) -/(.*/)?adgitize- -adgitize-*. -# /adgetter. (easylist.txt: 1530) -/(.*/)?adgetter\. -adgetter.*. -# /adGet. (easylist.txt: 1529) -/(.*/)?adGet\. -adGet.*. -# /adgeo/* (easylist.txt: 1528) -/(.*/)?adgeo/.* -# /adgenerator. (easylist.txt: 1527) -/(.*/)?adgenerator\. -adgenerator.*. -# /adgearsegmentation. (easylist.txt: 1526) -/(.*/)?adgearsegmentation\. -adgearsegmentation.*. -# /adgear2- (easylist.txt: 1525) -/(.*/)?adgear2- -adgear2-*. -# /adgear1- (easylist.txt: 1524) -/(.*/)?adgear1- -adgear1-*. -# /adgear/* (easylist.txt: 1523) -/(.*/)?adgear/.* -# /adgear.js (easylist.txt: 1522) -/(.*/)?adgear\.js -adgear.js*. -# /adgalleryheader. (easylist.txt: 1521) -/(.*/)?adgalleryheader\. -adgalleryheader.*. -# /adgallery3| (easylist.txt: 1520) -/(.*/)?adgallery3$ -# /adgallery3. (easylist.txt: 1519) -/(.*/)?adgallery3\. -adgallery3.*. -# /adgallery2| (easylist.txt: 1518) -/(.*/)?adgallery2$ -# /adgallery2. (easylist.txt: 1517) -/(.*/)?adgallery2\. -adgallery2.*. -# /adgallery1| (easylist.txt: 1516) -/(.*/)?adgallery1$ -# /adgallery1. (easylist.txt: 1515) -/(.*/)?adgallery1\. -adgallery1.*. -# /adfunctions. (easylist.txt: 1514) -/(.*/)?adfunctions\. -adfunctions.*. -# /adfunction. (easylist.txt: 1513) -/(.*/)?adfunction\. -adfunction.*. -# /adfuncs. (easylist.txt: 1512) -/(.*/)?adfuncs\. -adfuncs.*. -# /adfshow? (easylist.txt: 1511) -/(.*/)?adfshow\? -# /adfrm. (easylist.txt: 1510) -/(.*/)?adfrm\. -adfrm.*. -# /adfrequencycapping. (easylist.txt: 1509) -/(.*/)?adfrequencycapping\. -adfrequencycapping.*. -# /adframewrapper. (easylist.txt: 1508) -/(.*/)?adframewrapper\. -adframewrapper.*. -# /adframetop. (easylist.txt: 1507) -/(.*/)?adframetop\. -adframetop.*. -# /adframemiddle. (easylist.txt: 1506) -/(.*/)?adframemiddle\. -adframemiddle.*. -# /adframecommon. (easylist.txt: 1505) -/(.*/)?adframecommon\. -adframecommon.*. -# /adframebottom. (easylist.txt: 1504) -/(.*/)?adframebottom\. -adframebottom.*. -# /adframe_ (easylist.txt: 1503) -/(.*/)?adframe_ -# /adframe? (easylist.txt: 1502) -/(.*/)?adframe\? -# /adframe728bot. (easylist.txt: 1501) -/(.*/)?adframe728bot\. -adframe728bot.*. -# /adframe728b2. (easylist.txt: 1500) -/(.*/)?adframe728b2\. -adframe728b2.*. -# /adframe728b. (easylist.txt: 1499) -/(.*/)?adframe728b\. -adframe728b.*. -# /adframe728a. (easylist.txt: 1498) -/(.*/)?adframe728a\. -adframe728a.*. -# /adframe468. (easylist.txt: 1497) -/(.*/)?adframe468\. -adframe468.*. -# /adframe2. (easylist.txt: 1496) -/(.*/)?adframe2\. -adframe2.*. -# /adframe120x240. (easylist.txt: 1495) -/(.*/)?adframe120x240\. -adframe120x240.*. -# /adframe120. (easylist.txt: 1494) -/(.*/)?adframe120\. -adframe120.*. -# /adframe/* (easylist.txt: 1493) -/(.*/)?adframe/.* -# /adframe. (easylist.txt: 1492) -/(.*/)?adframe\. -adframe.*. -# /adfr. (easylist.txt: 1491) -/(.*/)?adfr\. -adfr.*. -# /adfox. (easylist.txt: 1490) -/(.*/)?adfox\. -adfox.*. -# /adforums/* (easylist.txt: 1489) -/(.*/)?adforums/.* -# /adformats/* (easylist.txt: 1488) -/(.*/)?adformats/.* -# /adforge. (easylist.txt: 1487) -/(.*/)?adforge\. -adforge.*. -# /adforgame728x90_ (easylist.txt: 1486) -/(.*/)?adforgame728x90_ -# /adforgame728x90. (easylist.txt: 1485) -/(.*/)?adforgame728x90\. -adforgame728x90.*. -# /adforgame160x600. (easylist.txt: 1484) -/(.*/)?adforgame160x600\. -adforgame160x600.*. -# /adfootright. (easylist.txt: 1483) -/(.*/)?adfootright\. -adfootright.*. -# /adfootleft. (easylist.txt: 1482) -/(.*/)?adfootleft\. -adfootleft.*. -# /adFooterBG. (easylist.txt: 1481) -/(.*/)?adFooterBG\. -adFooterBG.*. -# /adfooter. (easylist.txt: 1480) -/(.*/)?adfooter\. -adfooter.*. -# /adfootcenter. (easylist.txt: 1479) -/(.*/)?adfootcenter\. -adfootcenter.*. -# /adfolder/* (easylist.txt: 1478) -/(.*/)?adfolder/.* -# /adfly/* (easylist.txt: 1477) -/(.*/)?adfly/.* -# /adflashes/* (easylist.txt: 1476) -/(.*/)?adflashes/.* -# /adflash. (easylist.txt: 1475) -/(.*/)?adflash\. -adflash.*. -# /adfillers/* (easylist.txt: 1474) -/(.*/)?adfillers/.* -# /adfiles/* (easylist.txt: 1473) -/(.*/)?adfiles/.* -# /adfiles. (easylist.txt: 1472) -/(.*/)?adfiles\. -adfiles.*. -# /adfile/* (easylist.txt: 1471) -/(.*/)?adfile/.* -# /adfile. (easylist.txt: 1470) -/(.*/)?adfile\. -adfile.*. -# /adfever_ (easylist.txt: 1469) -/(.*/)?adfever_ -# /adfetcher? (easylist.txt: 1468) -/(.*/)?adfetcher\? -# /adfetch? (easylist.txt: 1467) -/(.*/)?adfetch\? -# /adfetch. (easylist.txt: 1466) -/(.*/)?adfetch\. -adfetch.*. -# /adfeedtestview. (easylist.txt: 1465) -/(.*/)?adfeedtestview\. -adfeedtestview.*. -# /adfeedback/* (easylist.txt: 1464) -/(.*/)?adfeedback/.* -# /adfeed. (easylist.txt: 1463) -/(.*/)?adfeed\. -adfeed.*. -# /adfarm/* (easylist.txt: 1462) -/(.*/)?adfarm/.* -# /adfactory_ (easylist.txt: 1459) -/(.*/)?adfactory_ -# /adfactory- (easylist.txt: 1457) -/(.*/)?adfactory- -adfactory-*. -# /adfactor_ (easylist.txt: 1456) -/(.*/)?adfactor_ -# /adfactor/* (easylist.txt: 1455) -/(.*/)?adfactor/.* -# /adf.cgi? (easylist.txt: 1454) -/(.*/)?adf\.cgi\? -# /adexternal. (easylist.txt: 1453) -/(.*/)?adexternal\. -adexternal.*. -# /adexclude/* (easylist.txt: 1452) -/(.*/)?adexclude/.* -# /adexample? (easylist.txt: 1451) -/(.*/)?adexample\? -# /adevents. (easylist.txt: 1450) -/(.*/)?adevents\. -adevents.*. -# /adevent. (easylist.txt: 1449) -/(.*/)?adevent\. -adevent.*. -# /adError/* (easylist.txt: 1448) -/(.*/)?adError/.* -# /aderlee_ads. (easylist.txt: 1447) -/(.*/)?aderlee_ads\. -# /adentry. (easylist.txt: 1446) -/(.*/)?adentry\. -adentry.*. -# /adengine_ (easylist.txt: 1445) -/(.*/)?adengine_ -# /adengine/* (easylist.txt: 1444) -/(.*/)?adengine/.* -# /adengage_ (easylist.txt: 1443) -/(.*/)?adengage_ -# /adengage6. (easylist.txt: 1442) -/(.*/)?adengage6\. -adengage6.*. -# /adengage5. (easylist.txt: 1441) -/(.*/)?adengage5\. -adengage5.*. -# /adengage4. (easylist.txt: 1440) -/(.*/)?adengage4\. -adengage4.*. -# /adengage3. (easylist.txt: 1439) -/(.*/)?adengage3\. -adengage3.*. -# /adengage2. (easylist.txt: 1438) -/(.*/)?adengage2\. -adengage2.*. -# /adengage1. (easylist.txt: 1437) -/(.*/)?adengage1\. -adengage1.*. -# /adengage0. (easylist.txt: 1436) -/(.*/)?adengage0\. -adengage0.*. -# /adengage/* (easylist.txt: 1435) -/(.*/)?adengage/.* -# /adengage. (easylist.txt: 1434) -/(.*/)?adengage\. -adengage.*. -# /adengage- (easylist.txt: 1433) -/(.*/)?adengage- -adengage-*. -# /adedge/* (easylist.txt: 1432) -/(.*/)?adedge/.* -# /addyn|*|adtech; (easylist.txt: 1431) -/(.*/)?addyn\|.*\|adtech; -# /addyn|*;adtech; (easylist.txt: 1430) -/(.*/)?addyn\|.*;adtech; -# /addyn/3.0/* (easylist.txt: 1429) -/(.*/)?addyn/3\.0/.* -# /adds_banner/* (easylist.txt: 1428) -/(.*/)?adds_banner/.* -# /addon/ad/* (easylist.txt: 1427) -/(.*/)?addon/ad/.* -# /addisplay. (easylist.txt: 1426) -/(.*/)?addisplay\. -addisplay.*. -# /addeliverymodule/* (easylist.txt: 1425) -/(.*/)?addeliverymodule/.* -# /addelivery/* (easylist.txt: 1424) -/(.*/)?addelivery/.* -# /addefend/* (easylist.txt: 1423) -/(.*/)?addefend/.* -# /addefend. (easylist.txt: 1422) -/(.*/)?addefend\. -addefend.*. -# /addeals/* (easylist.txt: 1421) -/(.*/)?addeals/.* -# /addatasandbox? (easylist.txt: 1420) -/(.*/)?addatasandbox\? -# /addata. (easylist.txt: 1419) -/(.*/)?addata\. -addata.*. -# /add728. (easylist.txt: 1418) -/(.*/)?add728\. -add728.*. -# /adcycle/* (easylist.txt: 1417) -/(.*/)?adcycle/.* -# /adcycle. (easylist.txt: 1416) -/(.*/)?adcycle\. -adcycle.*. -# /adcss/* (easylist.txt: 1415) -/(.*/)?adcss/.* -# /adcreative/* (easylist.txt: 1414) -/(.*/)?adcreative/.* -# /adcreative. (easylist.txt: 1413) -/(.*/)?adcreative\. -adcreative.*. -# /adcounter. (easylist.txt: 1412) -/(.*/)?adcounter\. -adcounter.*. -# /adcount. (easylist.txt: 1411) -/(.*/)?adcount\. -adcount.*. -# /adcore_ (easylist.txt: 1410) -/(.*/)?adcore_ -# /adcore. (easylist.txt: 1409) -/(.*/)?adcore\. -adcore.*. -# /adcontroller. (easylist.txt: 1408) -/(.*/)?adcontroller\. -adcontroller.*. -# /adcontrol/* (easylist.txt: 1407) -/(.*/)?adcontrol/.* -# /adcontrol. (easylist.txt: 1406) -/(.*/)?adcontrol\. -adcontrol.*. -# /adcontents_ (easylist.txt: 1405) -/(.*/)?adcontents_ -# /adcontent/* (easylist.txt: 1404) -/(.*/)?adcontent/.* -# /adcontainer? (easylist.txt: 1402) -/(.*/)?adcontainer\? -# /adconfig/* (easylist.txt: 1401) -/(.*/)?adconfig/.* -# /adconfig.xml? (easylist.txt: 1400) -/(.*/)?adconfig\.xml\? -# /adconfig.js (easylist.txt: 1399) -/(.*/)?adconfig\.js -adconfig.js*. -# /adcomponent/* (easylist.txt: 1398) -/(.*/)?adcomponent/.* -# /adcomp. (easylist.txt: 1397) -/(.*/)?adcomp\. -adcomp.*. -# /adcommon? (easylist.txt: 1396) -/(.*/)?adcommon\? -# /adcollector. (easylist.txt: 1395) -/(.*/)?adcollector\. -adcollector.*. -# /adcodes/* (easylist.txt: 1394) -/(.*/)?adcodes/.* -# /adcode_ (easylist.txt: 1393) -/(.*/)?adcode_ -# /adcode/* (easylist.txt: 1392) -/(.*/)?adcode/.* -# /adcode. (easylist.txt: 1391) -/(.*/)?adcode\. -adcode.*. -# /adclutter. (easylist.txt: 1390) -/(.*/)?adclutter\. -adclutter.*. -# /adclixad. (easylist.txt: 1389) -/(.*/)?adclixad\. -adclixad.*. -# /adclix. (easylist.txt: 1388) -/(.*/)?adclix\. -adclix.*. -# /adclient/* (easylist.txt: 1387) -/(.*/)?adclient/.* -# /adclient. (easylist.txt: 1386) -/(.*/)?adclient\. -adclient.*. -# /adclient- (easylist.txt: 1385) -/(.*/)?adclient- -adclient-*. -# /adclick/* (easylist.txt: 1384) -/(.*/)?adclick/.* -# /adclick. (easylist.txt: 1383) -/(.*/)?adclick\. -adclick.*. -# /adcircle. (easylist.txt: 1382) -/(.*/)?adcircle\. -adcircle.*. -# /adchoicesv4. (easylist.txt: 1381) -/(.*/)?adchoicesv4\. -adchoicesv4.*. -# /adchoiceslogo. (easylist.txt: 1380) -/(.*/)?adchoiceslogo\. -adchoiceslogo.*. -# /adchoicesicon. (easylist.txt: 1379) -/(.*/)?adchoicesicon\. -adchoicesicon.*. -# /adchoicesfooter. (easylist.txt: 1378) -/(.*/)?adchoicesfooter\. -adchoicesfooter.*. -# /adchoices_ (easylist.txt: 1377) -/(.*/)?adchoices_ -# /adchoices2. (easylist.txt: 1376) -/(.*/)?adchoices2\. -adchoices2.*. -# /adchoices16. (easylist.txt: 1375) -/(.*/)?adchoices16\. -adchoices16.*. -# /adchoices/* (easylist.txt: 1374) -/(.*/)?adchoices/.* -# /adchoices. (easylist.txt: 1373) -/(.*/)?adchoices\. -adchoices.*. -# /adchoices- (easylist.txt: 1372) -/(.*/)?adchoices- -adchoices-*. -# /adchoice_ (easylist.txt: 1371) -/(.*/)?adchoice_ -# /adchoice/* (easylist.txt: 1370) -/(.*/)?adchoice/.* -# /adchoice. (easylist.txt: 1369) -/(.*/)?adchoice\. -adchoice.*. -# /adcheck? (easylist.txt: 1368) -/(.*/)?adcheck\? -# /adcheck. (easylist.txt: 1367) -/(.*/)?adcheck\. -adcheck.*. -# /adchannel_ (easylist.txt: 1366) -/(.*/)?adchannel_ -# /adchain. (easylist.txt: 1365) -/(.*/)?adchain\. -adchain.*. -# /adchain- (easylist.txt: 1364) -/(.*/)?adchain- -adchain-*. -# /adcgi? (easylist.txt: 1363) -/(.*/)?adcgi\? -# /adcframe. (easylist.txt: 1362) -/(.*/)?adcframe\. -adcframe.*. -# /adcentral. (easylist.txt: 1361) -/(.*/)?adcentral\. -adcentral.*. -# /adcell/* (easylist.txt: 1359) -/(.*/)?adcell/.* -# /adcdn. (easylist.txt: 1358) -/(.*/)?adcdn\. -adcdn.*. -# /adcde.js (easylist.txt: 1357) -/(.*/)?adcde\.js -adcde.js*. -# /adcast_ (easylist.txt: 1356) -/(.*/)?adcast_ -# /adcast01_ (easylist.txt: 1355) -/(.*/)?adcast01_ -# /adcash. (easylist.txt: 1354) -/(.*/)?adcash\. -adcash.*. -# /adcash- (easylist.txt: 1353) -/(.*/)?adcash- -adcash-*. -# /adcampaigns/* (easylist.txt: 1352) -/(.*/)?adcampaigns/.* -# /adcalloverride. (easylist.txt: 1351) -/(.*/)?adcalloverride\. -adcalloverride.*. -# /adcall. (easylist.txt: 1350) -/(.*/)?adcall\. -adcall.*. -# /adcache. (easylist.txt: 1349) -/(.*/)?adcache\. -adcache.*. -# /adbytes. (easylist.txt: 1348) -/(.*/)?adbytes\. -adbytes.*. -# /adbutler/* (easylist.txt: 1347) -/(.*/)?adbutler/.* -# /adbureau. (easylist.txt: 1346) -/(.*/)?adbureau\. -adbureau.*. -# /adbug_ (easylist.txt: 1345) -/(.*/)?adbug_ -# /adbucks/* (easylist.txt: 1344) -/(.*/)?adbucks/.* -# /adbriteincright. (easylist.txt: 1343) -/(.*/)?adbriteincright\. -adbriteincright.*. -# /adbriteincleft2. (easylist.txt: 1342) -/(.*/)?adbriteincleft2\. -adbriteincleft2.*. -# /adbriteinc. (easylist.txt: 1341) -/(.*/)?adbriteinc\. -adbriteinc.*. -# /adbrite_ (easylist.txt: 1340) -/(.*/)?adbrite_ -# /adbrite2. (easylist.txt: 1339) -/(.*/)?adbrite2\. -adbrite2.*. -# /adbrite/* (easylist.txt: 1338) -/(.*/)?adbrite/.* -# /adbrite. (easylist.txt: 1337) -/(.*/)?adbrite\. -adbrite.*. -# /adbrite- (easylist.txt: 1336) -/(.*/)?adbrite- -adbrite-*. -# /adboxtable- (easylist.txt: 1335) -/(.*/)?adboxtable- -adboxtable-*. -# /adboxes/* (easylist.txt: 1334) -/(.*/)?adboxes/.* -# /adboxbk. (easylist.txt: 1333) -/(.*/)?adboxbk\. -adboxbk.*. -# /adbox_ (easylist.txt: 1332) -/(.*/)?adbox_ -# /adbox2. (easylist.txt: 1331) -/(.*/)?adbox2\. -adbox2.*. -# /adbox1. (easylist.txt: 1330) -/(.*/)?adbox1\. -adbox1.*. -# /adbox/* (easylist.txt: 1329) -/(.*/)?adbox/.* -# /adbox. (easylist.txt: 1328) -/(.*/)?adbox\. -adbox.*. -# /adbottom. (easylist.txt: 1327) -/(.*/)?adbottom\. -adbottom.*. -# /adbotright. (easylist.txt: 1326) -/(.*/)?adbotright\. -adbotright.*. -# /adbotleft. (easylist.txt: 1325) -/(.*/)?adbotleft\. -adbotleft.*. -# /adbot_ (easylist.txt: 1324) -/(.*/)?adbot_ -# /adbot728. (easylist.txt: 1323) -/(.*/)?adbot728\. -adbot728.*. -# /adbot300. (easylist.txt: 1322) -/(.*/)?adbot300\. -adbot300.*. -# /adbot160. (easylist.txt: 1321) -/(.*/)?adbot160\. -adbot160.*. -# /adborder. (easylist.txt: 1320) -/(.*/)?adborder\. -adborder.*. -# /adboost. (easylist.txt: 1319) -/(.*/)?adboost\. -adboost.*. -# /adbn? (easylist.txt: 1318) -/(.*/)?adbn\? -# /adblockr. (easylist.txt: 1317) -/(.*/)?adblockr\. -adblockr.*. -# /adblockl. (easylist.txt: 1316) -/(.*/)?adblockl\. -adblockl.*. -# /adblock?id= (easylist.txt: 1315) -/(.*/)?adblock\?id= -# /adblock26. (easylist.txt: 1314) -/(.*/)?adblock26\. -adblock26.*. -# /adblock.js (easylist.txt: 1313) -/(.*/)?adblock\.js -adblock.js*. -# /adblock.ash (easylist.txt: 1312) -/(.*/)?adblock\.ash -adblock.ash*. -# /adblob. (easylist.txt: 1311) -/(.*/)?adblob\. -adblob.*. -# /adblade-publisher-tools/* (easylist.txt: 1310) -/(.*/)?adblade-publisher-tools/.* -# /adbg.jpg (easylist.txt: 1309) -/(.*/)?adbg\.jpg -adbg.jpg*. -# /adbetween/* (easylist.txt: 1308) -/(.*/)?adbetween/.* -# /adbebi_ (easylist.txt: 1307) -/(.*/)?adbebi_ -# /adbeacon. (easylist.txt: 1306) -/(.*/)?adbeacon\. -adbeacon.*. -# /adbase. (easylist.txt: 1305) -/(.*/)?adbase\. -adbase.*. -# /adbars. (easylist.txt: 1304) -/(.*/)?adbars\. -adbars.*. -# /adbar_ (easylist.txt: 1303) -/(.*/)?adbar_ -# /adbar2_ (easylist.txt: 1302) -/(.*/)?adbar2_ -# /adbar/* (easylist.txt: 1301) -/(.*/)?adbar/.* -# /adbar. (easylist.txt: 1300) -/(.*/)?adbar\. -adbar.*. -# /adbanners/* (easylist.txt: 1299) -/(.*/)?adbanners/.* -# /adbanner_ (easylist.txt: 1298) -/(.*/)?adbanner_ -# /adbanner2. (easylist.txt: 1297) -/(.*/)?adbanner2\. -adbanner2.*. -# /adbanner/* (easylist.txt: 1296) -/(.*/)?adbanner/.* -# /adbanner. (easylist.txt: 1295) -/(.*/)?adbanner\. -adbanner.*. -# /adban. (easylist.txt: 1294) -/(.*/)?adban\. -adban.*. -# /adback? (easylist.txt: 1293) -/(.*/)?adback\? -# /adback. (easylist.txt: 1292) -/(.*/)?adback\. -adback.*. -# /adb.js?tag= (easylist.txt: 1291) -/(.*/)?adb\.js\?tag= -# /adasset4/* (easylist.txt: 1290) -/(.*/)?adasset4/.* -# /adasset/* (easylist.txt: 1289) -/(.*/)?adasset/.* -# /adarena/* (easylist.txt: 1288) -/(.*/)?adarena/.* -# /adaptvexchangevastvideo. (easylist.txt: 1287) -/(.*/)?adaptvexchangevastvideo\. -adaptvexchangevastvideo.*. -# /adaptvadservervastvideo. (easylist.txt: 1286) -/(.*/)?adaptvadservervastvideo\. -adaptvadservervastvideo.*. -# /adaptvadplayer. (easylist.txt: 1285) -/(.*/)?adaptvadplayer\. -adaptvadplayer.*. -# /adanim/* (easylist.txt: 1284) -/(.*/)?adanim/.* -# /adanalytics. (easylist.txt: 1283) -/(.*/)?adanalytics\. -adanalytics.*. -# /adaffiliate_ (easylist.txt: 1282) -/(.*/)?adaffiliate_ -# /adactions. (easylist.txt: 1281) -/(.*/)?adactions\. -adactions.*. -# /ad_www_ (easylist.txt: 1280) -/(.*/)?ad_www_ -# /ad_wrapper. (easylist.txt: 1279) -/(.*/)?ad_wrapper\. -# /ad_width/* (easylist.txt: 1278) -/(.*/)?ad_width/.* -# /ad_wide_ (easylist.txt: 1277) -/(.*/)?ad_wide_ -# /ad_view_ (easylist.txt: 1276) -/(.*/)?ad_view_ -# /ad_video1. (easylist.txt: 1275) -/(.*/)?ad_video1\. -# /ad_video.htm (easylist.txt: 1274) -/(.*/)?ad_video\.htm -# /ad_vertical. (easylist.txt: 1273) -/(.*/)?ad_vertical\. -# /ad_vert. (easylist.txt: 1272) -/(.*/)?ad_vert\. -# /ad_ver/* (easylist.txt: 1271) -/(.*/)?ad_ver/.* -# /ad_utils/* (easylist.txt: 1270) -/(.*/)?ad_utils/.* -# /ad_utils. (easylist.txt: 1269) -/(.*/)?ad_utils\. -# /ad_util. (easylist.txt: 1268) -/(.*/)?ad_util\. -# /ad_upload/* (easylist.txt: 1267) -/(.*/)?ad_upload/.* -# /ad_units/* (easylist.txt: 1266) -/(.*/)?ad_units/.* -# /ad_units. (easylist.txt: 1265) -/(.*/)?ad_units\. -# /ad_txt. (easylist.txt: 1264) -/(.*/)?ad_txt\. -# /ad_tpl. (easylist.txt: 1263) -/(.*/)?ad_tpl\. -# /ad_tower_ (easylist.txt: 1262) -/(.*/)?ad_tower_ -# /ad_topgray2. (easylist.txt: 1261) -/(.*/)?ad_topgray2\. -# /ad_top_ (easylist.txt: 1260) -/(.*/)?ad_top_ -# /ad_top/* (easylist.txt: 1259) -/(.*/)?ad_top/.* -# /ad_top. (easylist.txt: 1258) -/(.*/)?ad_top\. -# /ad_title_ (easylist.txt: 1257) -/(.*/)?ad_title_ -# /ad_timer. (easylist.txt: 1256) -/(.*/)?ad_timer\. -# /ad_tile/* (easylist.txt: 1255) -/(.*/)?ad_tile/.* -# /ad_tickets. (easylist.txt: 1254) -/(.*/)?ad_tickets\. -# /ad_text_ (easylist.txt: 1253) -/(.*/)?ad_text_ -# /ad_text. (easylist.txt: 1252) -/(.*/)?ad_text\. -# /ad_tags_ (easylist.txt: 1251) -/(.*/)?ad_tags_ -# /ad_tag_ (easylist.txt: 1250) -/(.*/)?ad_tag_ -# /ad_tag. (easylist.txt: 1249) -/(.*/)?ad_tag\. -# /ad_tab. (easylist.txt: 1248) -/(.*/)?ad_tab\. -# /ad_system/* (easylist.txt: 1247) -/(.*/)?ad_system/.* -# /ad_syshome. (easylist.txt: 1246) -/(.*/)?ad_syshome\. -# /ad_sys/* (easylist.txt: 1245) -/(.*/)?ad_sys/.* -# /ad_supertile/* (easylist.txt: 1244) -/(.*/)?ad_supertile/.* -# /ad_styling_ (easylist.txt: 1243) -/(.*/)?ad_styling_ -# /ad_stem/* (easylist.txt: 1242) -/(.*/)?ad_stem/.* -# /ad_status. (easylist.txt: 1241) -/(.*/)?ad_status\. -# /ad_srv. (easylist.txt: 1240) -/(.*/)?ad_srv\. -# /ad_squares. (easylist.txt: 1239) -/(.*/)?ad_squares\. -# /ad_square_ (easylist.txt: 1238) -/(.*/)?ad_square_ -# /ad_square. (easylist.txt: 1237) -/(.*/)?ad_square\. -# /ad_spot. (easylist.txt: 1236) -/(.*/)?ad_spot\. -# /ad_space. (easylist.txt: 1235) -/(.*/)?ad_space\. -# /ad_slideout. (easylist.txt: 1234) -/(.*/)?ad_slideout\. -# /ad_skyscraper. (easylist.txt: 1233) -/(.*/)?ad_skyscraper\. -# /ad_sky. (easylist.txt: 1232) -/(.*/)?ad_sky\. -# /ad_skin_ (easylist.txt: 1231) -/(.*/)?ad_skin_ -# /ad_sizes= (easylist.txt: 1230) -/(.*/)?ad_sizes= -# /ad_sidebar/* (easylist.txt: 1229) -/(.*/)?ad_sidebar/.* -# /ad_side. (easylist.txt: 1228) -/(.*/)?ad_side\. -# /ad_show? (easylist.txt: 1227) -/(.*/)?ad_show\? -# /ad_show. (easylist.txt: 1226) -/(.*/)?ad_show\. -# /ad_shared/* (easylist.txt: 1225) -/(.*/)?ad_shared/.* -# /ad_servlet. (easylist.txt: 1224) -/(.*/)?ad_servlet\. -# /ad_server/* (easylist.txt: 1223) -/(.*/)?ad_server/.* -# /ad_server. (easylist.txt: 1222) -/(.*/)?ad_server\. -# /ad_serve_ (easylist.txt: 1221) -/(.*/)?ad_serve_ -# /ad_serve. (easylist.txt: 1220) -/(.*/)?ad_serve\. -# /ad_serv. (easylist.txt: 1219) -/(.*/)?ad_serv\. -# /ad_scroller. (easylist.txt: 1218) -/(.*/)?ad_scroller\. -# /ad_script_ (easylist.txt: 1217) -/(.*/)?ad_script_ -# /ad_script. (easylist.txt: 1216) -/(.*/)?ad_script\. -# /ad_rotator_ (easylist.txt: 1215) -/(.*/)?ad_rotator_ -# /ad_rotator/* (easylist.txt: 1214) -/(.*/)?ad_rotator/.* -# /ad_rotator. (easylist.txt: 1213) -/(.*/)?ad_rotator\. -# /ad_rotation. (easylist.txt: 1212) -/(.*/)?ad_rotation\. -# /ad_right_ (easylist.txt: 1211) -/(.*/)?ad_right_ -# /ad_right. (easylist.txt: 1210) -/(.*/)?ad_right\. -# /ad_resize. (easylist.txt: 1209) -/(.*/)?ad_resize\. -# /ad_request. (easylist.txt: 1208) -/(.*/)?ad_request\. -# /ad_req. (easylist.txt: 1207) -/(.*/)?ad_req\. -# /ad_rentangle. (easylist.txt: 1206) -/(.*/)?ad_rentangle\. -# /ad_renderv4_ (easylist.txt: 1205) -/(.*/)?ad_renderv4_ -# /ad_render_ (easylist.txt: 1204) -/(.*/)?ad_render_ -# /ad_reloader_ (easylist.txt: 1203) -/(.*/)?ad_reloader_ -# /ad_refresher. (easylist.txt: 1202) -/(.*/)?ad_refresher\. -# /ad_refresh. (easylist.txt: 1201) -/(.*/)?ad_refresh\. -# /ad_rectangle_ (easylist.txt: 1200) -/(.*/)?ad_rectangle_ -# /ad_print. (easylist.txt: 1199) -/(.*/)?ad_print\. -# /ad_preroll- (easylist.txt: 1198) -/(.*/)?ad_preroll- -# /ad_premium_ (easylist.txt: 1197) -/(.*/)?ad_premium_ -# /ad_premium. (easylist.txt: 1196) -/(.*/)?ad_premium\. -# /ad_position_ (easylist.txt: 1195) -/(.*/)?ad_position_ -# /ad_position= (easylist.txt: 1194) -/(.*/)?ad_position= -# /ad_pos= (easylist.txt: 1193) -/(.*/)?ad_pos= -# /ad_popup_ (easylist.txt: 1192) -/(.*/)?ad_popup_ -# /ad_pop1. (easylist.txt: 1191) -/(.*/)?ad_pop1\. -# /ad_pop. (easylist.txt: 1190) -/(.*/)?ad_pop\. -# /ad_pics/* (easylist.txt: 1189) -/(.*/)?ad_pics/.* -# /ad_peel/* (easylist.txt: 1188) -/(.*/)?ad_peel/.* -# /ad_parts. (easylist.txt: 1187) -/(.*/)?ad_parts\. -# /ad_paper_ (easylist.txt: 1186) -/(.*/)?ad_paper_ -# /ad_page_ (easylist.txt: 1185) -/(.*/)?ad_page_ -# /ad_overlay. (easylist.txt: 1184) -/(.*/)?ad_overlay\. -# /ad_option_ (easylist.txt: 1183) -/(.*/)?ad_option_ -# /ad_ops/* (easylist.txt: 1182) -/(.*/)?ad_ops/.* -# /ad_offersmail_ (easylist.txt: 1181) -/(.*/)?ad_offersmail_ -# /ad_oas/* (easylist.txt: 1180) -/(.*/)?ad_oas/.* -# /ad_notice. (easylist.txt: 1179) -/(.*/)?ad_notice\. -# /ad_note. (easylist.txt: 1178) -/(.*/)?ad_note\. -# /ad_news. (easylist.txt: 1177) -/(.*/)?ad_news\. -# /ad_navigbar_ (easylist.txt: 1176) -/(.*/)?ad_navigbar_ -# /ad_multi_ (easylist.txt: 1175) -/(.*/)?ad_multi_ -# /ad_mpu. (easylist.txt: 1174) -/(.*/)?ad_mpu\. -# /ad_mobile. (easylist.txt: 1173) -/(.*/)?ad_mobile\. -# /ad_mini_ (easylist.txt: 1172) -/(.*/)?ad_mini_ -# /ad_medium_ (easylist.txt: 1171) -/(.*/)?ad_medium_ -# /ad_media/* (easylist.txt: 1170) -/(.*/)?ad_media/.* -# /ad_mbox. (easylist.txt: 1169) -/(.*/)?ad_mbox\. -# /ad_master_ (easylist.txt: 1168) -/(.*/)?ad_master_ -# /ad_manager/* (easylist.txt: 1167) -/(.*/)?ad_manager/.* -# /ad_manager. (easylist.txt: 1166) -/(.*/)?ad_manager\. -# /ad_manage. (easylist.txt: 1165) -/(.*/)?ad_manage\. -# /ad_lomadee. (easylist.txt: 1164) -/(.*/)?ad_lomadee\. -# /ad_log_ (easylist.txt: 1163) -/(.*/)?ad_log_ -# /ad_locations/* (easylist.txt: 1162) -/(.*/)?ad_locations/.* -# /ad_loader2. (easylist.txt: 1161) -/(.*/)?ad_loader2\. -# /ad_loader. (easylist.txt: 1160) -/(.*/)?ad_loader\. -# /ad_load. (easylist.txt: 1159) -/(.*/)?ad_load\. -# /ad_listpage. (easylist.txt: 1158) -/(.*/)?ad_listpage\. -# /ad_links/* (easylist.txt: 1157) -/(.*/)?ad_links/.* -# /ad_link. (easylist.txt: 1156) -/(.*/)?ad_link\. -# /ad_legend_ (easylist.txt: 1155) -/(.*/)?ad_legend_ -# /ad_left_ (easylist.txt: 1154) -/(.*/)?ad_left_ -# /ad_left. (easylist.txt: 1153) -/(.*/)?ad_left\. -# /ad_leaderboard/* (easylist.txt: 1152) -/(.*/)?ad_leaderboard/.* -# /ad_leaderboard. (easylist.txt: 1151) -/(.*/)?ad_leaderboard\. -# /ad_leader_ (easylist.txt: 1150) -/(.*/)?ad_leader_ -# /ad_leader. (easylist.txt: 1149) -/(.*/)?ad_leader\. -# /ad_large. (easylist.txt: 1148) -/(.*/)?ad_large\. -# /ad_label_ (easylist.txt: 1147) -/(.*/)?ad_label_ -# /ad_label728. (easylist.txt: 1146) -/(.*/)?ad_label728\. -# /ad_label2_ (easylist.txt: 1145) -/(.*/)?ad_label2_ -# /ad_keywords. (easylist.txt: 1144) -/(.*/)?ad_keywords\. -# /ad_jnaught/* (easylist.txt: 1143) -/(.*/)?ad_jnaught/.* -# /ad_insert. (easylist.txt: 1142) -/(.*/)?ad_insert\. -# /ad_index_ (easylist.txt: 1141) -/(.*/)?ad_index_ -# /ad_include. (easylist.txt: 1140) -/(.*/)?ad_include\. -# /ad_img/* (easylist.txt: 1139) -/(.*/)?ad_img/.* -# /ad_img. (easylist.txt: 1138) -/(.*/)?ad_img\. -# /ad_images/* (easylist.txt: 1137) -/(.*/)?ad_images/.* -# /ad_image2. (easylist.txt: 1136) -/(.*/)?ad_image2\. -# /ad_image. (easylist.txt: 1135) -/(.*/)?ad_image\. -# /ad_iframe_ (easylist.txt: 1134) -/(.*/)?ad_iframe_ -# /ad_iframe. (easylist.txt: 1133) -/(.*/)?ad_iframe\. -# /ad_icons/* (easylist.txt: 1132) -/(.*/)?ad_icons/.* -# /ad_html/* (easylist.txt: 1131) -/(.*/)?ad_html/.* -# /ad_horizontal. (easylist.txt: 1130) -/(.*/)?ad_horizontal\. -# /ad_horiz. (easylist.txt: 1129) -/(.*/)?ad_horiz\. -# /ad_horisontal. (easylist.txt: 1128) -/(.*/)?ad_horisontal\. -# /ad_homepage_ (easylist.txt: 1127) -/(.*/)?ad_homepage_ -# /ad_home_ (easylist.txt: 1126) -/(.*/)?ad_home_ -# /ad_home2011_ (easylist.txt: 1125) -/(.*/)?ad_home2011_ -# /ad_holder/* (easylist.txt: 1124) -/(.*/)?ad_holder/.* -# /ad_height/* (easylist.txt: 1123) -/(.*/)?ad_height/.* -# /ad_header_ (easylist.txt: 1122) -/(.*/)?ad_header_ -# /ad_header. (easylist.txt: 1121) -/(.*/)?ad_header\. -# /ad_head_ (easylist.txt: 1120) -/(.*/)?ad_head_ -# /ad_hcr_ (easylist.txt: 1119) -/(.*/)?ad_hcr_ -# /ad_hcl_ (easylist.txt: 1118) -/(.*/)?ad_hcl_ -# /ad_h.css? (easylist.txt: 1117) -/(.*/)?ad_h\.css\? -# /ad_google. (easylist.txt: 1116) -/(.*/)?ad_google\. -# /ad_gif_ (easylist.txt: 1115) -/(.*/)?ad_gif_ -# /ad_gif/* (easylist.txt: 1114) -/(.*/)?ad_gif/.* -# /ad_generator? (easylist.txt: 1113) -/(.*/)?ad_generator\? -# /ad_generator. (easylist.txt: 1112) -/(.*/)?ad_generator\. -# /ad_function. (easylist.txt: 1111) -/(.*/)?ad_function\. -# /ad_frm. (easylist.txt: 1110) -/(.*/)?ad_frm\. -# /ad_frame? (easylist.txt: 1109) -/(.*/)?ad_frame\? -# /ad_frame. (easylist.txt: 1108) -/(.*/)?ad_frame\. -# /ad_forum_ (easylist.txt: 1107) -/(.*/)?ad_forum_ -# /ad_footer_ (easylist.txt: 1106) -/(.*/)?ad_footer_ -# /ad_footer. (easylist.txt: 1105) -/(.*/)?ad_footer\. -# /ad_folder/* (easylist.txt: 1104) -/(.*/)?ad_folder/.* -# /ad_floater. (easylist.txt: 1103) -/(.*/)?ad_floater\. -# /ad_flat_ (easylist.txt: 1102) -/(.*/)?ad_flat_ -# /ad_flash/* (easylist.txt: 1101) -/(.*/)?ad_flash/.* -# /ad_filmstrip/* (easylist.txt: 1100) -/(.*/)?ad_filmstrip/.* -# /ad_filler. (easylist.txt: 1099) -/(.*/)?ad_filler\. -# /ad_fill. (easylist.txt: 1098) -/(.*/)?ad_fill\. -# /ad_files/* (easylist.txt: 1097) -/(.*/)?ad_files/.* -# /ad_file/* (easylist.txt: 1096) -/(.*/)?ad_file/.* -# /ad_feed. (easylist.txt: 1095) -/(.*/)?ad_feed\. -# /ad_entry_ (easylist.txt: 1094) -/(.*/)?ad_entry_ -# /ad_engine? (easylist.txt: 1093) -/(.*/)?ad_engine\? -# /ad_editorials_ (easylist.txt: 1092) -/(.*/)?ad_editorials_ -# /ad_ebound. (easylist.txt: 1091) -/(.*/)?ad_ebound\. -# /ad_drivers/* (easylist.txt: 1090) -/(.*/)?ad_drivers/.* -# /ad_display_ (easylist.txt: 1089) -/(.*/)?ad_display_ -# /ad_display. (easylist.txt: 1088) -/(.*/)?ad_display\. -# /ad_dir/* (easylist.txt: 1087) -/(.*/)?ad_dir/.* -# /ad_digital. (easylist.txt: 1086) -/(.*/)?ad_digital\. -# /ad_detect. (easylist.txt: 1085) -/(.*/)?ad_detect\. -# /ad_data/* (easylist.txt: 1084) -/(.*/)?ad_data/.* -# /ad_creatives. (easylist.txt: 1083) -/(.*/)?ad_creatives\. -# /ad_counter_ (easylist.txt: 1082) -/(.*/)?ad_counter_ -# /ad_counter. (easylist.txt: 1081) -/(.*/)?ad_counter\. -# /ad_count. (easylist.txt: 1080) -/(.*/)?ad_count\. -# /ad_contents/* (easylist.txt: 1079) -/(.*/)?ad_contents/.* -# /ad_content. (easylist.txt: 1078) -/(.*/)?ad_content\. -# /ad_container_ (easylist.txt: 1077) -/(.*/)?ad_container_ -# /ad_configurations_ (easylist.txt: 1076) -/(.*/)?ad_configurations_ -# /ad_configuration. (easylist.txt: 1075) -/(.*/)?ad_configuration\. -# /ad_commonside_ (easylist.txt: 1074) -/(.*/)?ad_commonside_ -# /ad_commonside. (easylist.txt: 1073) -/(.*/)?ad_commonside\. -# /ad_code. (easylist.txt: 1072) -/(.*/)?ad_code\. -# /ad_choices_ (easylist.txt: 1071) -/(.*/)?ad_choices_ -# /ad_choices. (easylist.txt: 1070) -/(.*/)?ad_choices\. -# /ad_check. (easylist.txt: 1069) -/(.*/)?ad_check\. -# /ad_caption. (easylist.txt: 1068) -/(.*/)?ad_caption\. -# /ad_campaigns/* (easylist.txt: 1067) -/(.*/)?ad_campaigns/.* -# /ad_cache/* (easylist.txt: 1066) -/(.*/)?ad_cache/.* -# /ad_button. (easylist.txt: 1065) -/(.*/)?ad_button\. -# /ad_bsb. (easylist.txt: 1064) -/(.*/)?ad_bsb\. -# /ad_box_ (easylist.txt: 1063) -/(.*/)?ad_box_ -# /ad_box? (easylist.txt: 1062) -/(.*/)?ad_box\? -# /ad_box2. (easylist.txt: 1061) -/(.*/)?ad_box2\. -# /ad_box1. (easylist.txt: 1060) -/(.*/)?ad_box1\. -# /ad_box. (easylist.txt: 1059) -/(.*/)?ad_box\. -# /ad_bottom. (easylist.txt: 1058) -/(.*/)?ad_bottom\. -# /ad_bot. (easylist.txt: 1057) -/(.*/)?ad_bot\. -# /ad_bomb/* (easylist.txt: 1056) -/(.*/)?ad_bomb/.* -# /ad_blog. (easylist.txt: 1055) -/(.*/)?ad_blog\. -# /ad_big_ (easylist.txt: 1054) -/(.*/)?ad_big_ -# /ad_base. (easylist.txt: 1053) -/(.*/)?ad_base\. -# /ad_bar_ (easylist.txt: 1052) -/(.*/)?ad_bar_ -# /ad_banners/* (easylist.txt: 1051) -/(.*/)?ad_banners/.* -# /ad_bannerPool- (easylist.txt: 1050) -/(.*/)?ad_bannerPool- -# /ad_banner_ (easylist.txt: 1049) -/(.*/)?ad_banner_ -# /ad_banner2. (easylist.txt: 1048) -/(.*/)?ad_banner2\. -# /ad_banner1. (easylist.txt: 1047) -/(.*/)?ad_banner1\. -# /ad_banner/* (easylist.txt: 1046) -/(.*/)?ad_banner/.* -# /ad_banner. (easylist.txt: 1045) -/(.*/)?ad_banner\. -# /Ad_Arub_ (easylist.txt: 1044) -/(.*/)?Ad_Arub_ -# /ad_art/* (easylist.txt: 1043) -/(.*/)?ad_art/.* -# /ad_area. (easylist.txt: 1042) -/(.*/)?ad_area\. -# /ad_agency/* (easylist.txt: 1041) -/(.*/)?ad_agency/.* -# /ad_960x90_ (easylist.txt: 1040) -/(.*/)?ad_960x90_ -# /ad_728_ (easylist.txt: 1039) -/(.*/)?ad_728_ -# /ad_728. (easylist.txt: 1038) -/(.*/)?ad_728\. -# /ad_600x160_ (easylist.txt: 1037) -/(.*/)?ad_600x160_ -# /ad_600_ (easylist.txt: 1036) -/(.*/)?ad_600_ -# /ad_300_ (easylist.txt: 1035) -/(.*/)?ad_300_ -# /ad_300250. (easylist.txt: 1034) -/(.*/)?ad_300250\. -# /ad_300. (easylist.txt: 1033) -/(.*/)?ad_300\. -# /ad_250x250_ (easylist.txt: 1032) -/(.*/)?ad_250x250_ -# /ad_234x60_ (easylist.txt: 1031) -/(.*/)?ad_234x60_ -# /ad_200x90_ (easylist.txt: 1030) -/(.*/)?ad_200x90_ -# /ad_120_ (easylist.txt: 1029) -/(.*/)?ad_120_ -# /ad?type= (easylist.txt: 1028) -/(.*/)?ad\?type= -# /ad?sponsor= (easylist.txt: 1027) -/(.*/)?ad\?sponsor= -# /ad?pos_ (easylist.txt: 1026) -/(.*/)?ad\?pos_ -# /ad?iframe_ (easylist.txt: 1025) -/(.*/)?ad\?iframe_ -# /ad?currentview= (easylist.txt: 1024) -/(.*/)?ad\?currentview= -# /ad?count= (easylist.txt: 1023) -/(.*/)?ad\?count= -# /ad?cid= (easylist.txt: 1022) -/(.*/)?ad\?cid= -# /ad?channel= (easylist.txt: 1021) -/(.*/)?ad\?channel= -# /ad8. (easylist.txt: 1020) -/(.*/)?ad8\. -ad8.*. -# /ad728x90. (easylist.txt: 1019) -/(.*/)?ad728x90\. -ad728x90.*. -# /ad728x15_ (easylist.txt: 1018) -/(.*/)?ad728x15_ -# /ad728x15. (easylist.txt: 1017) -/(.*/)?ad728x15\. -ad728x15.*. -# /ad728x. (easylist.txt: 1016) -/(.*/)?ad728x\. -ad728x.*. -# /ad728ws. (easylist.txt: 1015) -/(.*/)?ad728ws\. -ad728ws.*. -# /ad728w. (easylist.txt: 1014) -/(.*/)?ad728w\. -ad728w.*. -# /ad728t. (easylist.txt: 1013) -/(.*/)?ad728t\. -ad728t.*. -# /ad728s. (easylist.txt: 1012) -/(.*/)?ad728s\. -ad728s.*. -# /ad728home. (easylist.txt: 1011) -/(.*/)?ad728home\. -ad728home.*. -# /ad728f2. (easylist.txt: 1010) -/(.*/)?ad728f2\. -ad728f2.*. -# /ad728f. (easylist.txt: 1009) -/(.*/)?ad728f\. -ad728f.*. -# /ad728. (easylist.txt: 1008) -/(.*/)?ad728\. -ad728.*. -# /ad728- (easylist.txt: 1007) -/(.*/)?ad728- -ad728-*. -# /ad7. (easylist.txt: 1006) -/(.*/)?ad7\. -ad7.*. -# /ad600x330. (easylist.txt: 1005) -/(.*/)?ad600x330\. -ad600x330.*. -# /ad600x250. (easylist.txt: 1004) -/(.*/)?ad600x250\. -ad600x250.*. -# /ad6. (easylist.txt: 1003) -/(.*/)?ad6\. -ad6.*. -# /ad5. (easylist.txt: 1002) -/(.*/)?ad5\. -ad5.*. -# /ad4i. (easylist.txt: 1001) -/(.*/)?ad4i\. -ad4i.*. -# /ad468x80. (easylist.txt: 1000) -/(.*/)?ad468x80\. -ad468x80.*. -# /ad468x60. (easylist.txt: 999) -/(.*/)?ad468x60\. -ad468x60.*. -# /ad468. (easylist.txt: 998) -/(.*/)?ad468\. -ad468.*. -# /ad41_ (easylist.txt: 997) -/(.*/)?ad41_ -# /ad3i. (easylist.txt: 995) -/(.*/)?ad3i\. -ad3i.*. -# /ad3_ima. (easylist.txt: 994) -/(.*/)?ad3_ima\. -# /ad350. (easylist.txt: 993) -/(.*/)?ad350\. -ad350.*. -# /ad300x250_ (easylist.txt: 992) -/(.*/)?ad300x250_ -# /ad300x250. (easylist.txt: 991) -/(.*/)?ad300x250\. -ad300x250.*. -# /ad300x250- (easylist.txt: 990) -/(.*/)?ad300x250- -ad300x250-*. -# /ad300x145. (easylist.txt: 989) -/(.*/)?ad300x145\. -ad300x145.*. -# /ad300x. (easylist.txt: 988) -/(.*/)?ad300x\. -ad300x.*. -# /ad300ws. (easylist.txt: 987) -/(.*/)?ad300ws\. -ad300ws.*. -# /ad300s. (easylist.txt: 986) -/(.*/)?ad300s\. -ad300s.*. -# /ad300home. (easylist.txt: 985) -/(.*/)?ad300home\. -ad300home.*. -# /ad300f2. (easylist.txt: 984) -/(.*/)?ad300f2\. -ad300f2.*. -# /ad300f. (easylist.txt: 983) -/(.*/)?ad300f\. -ad300f.*. -# /ad300. (easylist.txt: 982) -/(.*/)?ad300\. -ad300.*. -# /ad2you/* (easylist.txt: 980) -/(.*/)?ad2you/.* -# /ad2push. (easylist.txt: 979) -/(.*/)?ad2push\. -ad2push.*. -# /ad2gather. (easylist.txt: 978) -/(.*/)?ad2gather\. -ad2gather.*. -# /ad2gate. (easylist.txt: 977) -/(.*/)?ad2gate\. -ad2gate.*. -# /ad2con. (easylist.txt: 976) -/(.*/)?ad2con\. -ad2con.*. -# /ad2border. (easylist.txt: 975) -/(.*/)?ad2border\. -ad2border.*. -# /ad2_ (easylist.txt: 974) -/(.*/)?ad2_ -# /ad290x60_ (easylist.txt: 973) -/(.*/)?ad290x60_ -# /ad247realmedia/* (easylist.txt: 972) -/(.*/)?ad247realmedia/.* -# /ad24/* (easylist.txt: 971) -/(.*/)?ad24/.* -# /ad234. (easylist.txt: 970) -/(.*/)?ad234\. -ad234.*. -# /ad2010. (easylist.txt: 969) -/(.*/)?ad2010\. -ad2010.*. -# /ad2/res/* (easylist.txt: 968) -/(.*/)?ad2/res/.* -# /ad2/index. (easylist.txt: 967) -/(.*/)?ad2/index\. -# /ad2-728- (easylist.txt: 965) -/(.*/)?ad2-728- -ad2-728-*. -# /ad1x1home. (easylist.txt: 964) -/(.*/)?ad1x1home\. -ad1x1home.*. -# /ad1r. (easylist.txt: 963) -/(.*/)?ad1r\. -ad1r.*. -# /ad1place. (easylist.txt: 962) -/(.*/)?ad1place\. -ad1place.*. -# /ad1_ (easylist.txt: 961) -/(.*/)?ad1_ -# /ad160x600. (easylist.txt: 960) -/(.*/)?ad160x600\. -ad160x600.*. -# /ad160k. (easylist.txt: 959) -/(.*/)?ad160k\. -ad160k.*. -# /ad160. (easylist.txt: 958) -/(.*/)?ad160\. -ad160.*. -# /ad16. (easylist.txt: 957) -/(.*/)?ad16\. -ad16.*. -# /ad15. (easylist.txt: 956) -/(.*/)?ad15\. -ad15.*. -# /ad136/* (easylist.txt: 955) -/(.*/)?ad136/.* -# /ad134m/* (easylist.txt: 954) -/(.*/)?ad134m/.* -# /ad132m/* (easylist.txt: 953) -/(.*/)?ad132m/.* -# /ad132m. (easylist.txt: 952) -/(.*/)?ad132m\. -ad132m.*. -# /ad125x125. (easylist.txt: 951) -/(.*/)?ad125x125\. -ad125x125.*. -# /ad125b. (easylist.txt: 950) -/(.*/)?ad125b\. -ad125b.*. -# /ad125. (easylist.txt: 949) -/(.*/)?ad125\. -ad125.*. -# /ad120x60. (easylist.txt: 948) -/(.*/)?ad120x60\. -ad120x60.*. -# /ad12. (easylist.txt: 947) -/(.*/)?ad12\. -ad12.*. -# /ad1/index. (easylist.txt: 946) -/(.*/)?ad1/index\. -# /ad1-728- (easylist.txt: 944) -/(.*/)?ad1-728- -ad1-728-*. -# /ad02/background_ (easylist.txt: 943) -/(.*/)?ad02/background_ -# /ad01. (easylist.txt: 942) -/(.*/)?ad01\. -ad01.*. -# /ad000/* (easylist.txt: 941) -/(.*/)?ad000/.* -# /ad/view/* (easylist.txt: 939) -/(.*/)?ad/view/.* -# /ad/top_ (easylist.txt: 938) -/(.*/)?ad/top_ -# /ad/top3. (easylist.txt: 937) -/(.*/)?ad/top3\. -# /ad/top2. (easylist.txt: 936) -/(.*/)?ad/top2\. -# /ad/top1. (easylist.txt: 935) -/(.*/)?ad/top1\. -# /ad/top/* (easylist.txt: 934) -/(.*/)?ad/top/.* -# /ad/top. (easylist.txt: 933) -/(.*/)?ad/top\. -# /ad/timing. (easylist.txt: 932) -/(.*/)?ad/timing\. -# /ad/textlinks/* (easylist.txt: 931) -/(.*/)?ad/textlinks/.* -# /ad/takeover/* (easylist.txt: 930) -/(.*/)?ad/takeover/.* -# /ad/swf/* (easylist.txt: 929) -/(.*/)?ad/swf/.* -# /ad/superbanner. (easylist.txt: 928) -/(.*/)?ad/superbanner\. -# /ad/status? (easylist.txt: 927) -/(.*/)?ad/status\? -# /ad/sponsors/* (easylist.txt: 926) -/(.*/)?ad/sponsors/.* -# /ad/sponsored- (easylist.txt: 925) -/(.*/)?ad/sponsored- -# /ad/spacer. (easylist.txt: 924) -/(.*/)?ad/spacer\. -# /ad/small- (easylist.txt: 923) -/(.*/)?ad/small- -# /ad/skyscrapper. (easylist.txt: 922) -/(.*/)?ad/skyscrapper\. -# /ad/skyscraper. (easylist.txt: 921) -/(.*/)?ad/skyscraper\. -# /ad/skin_ (easylist.txt: 920) -/(.*/)?ad/skin_ -# /ad/side_ (easylist.txt: 919) -/(.*/)?ad/side_ -# /ad/show. (easylist.txt: 918) -/(.*/)?ad/show\. -# /ad/serve. (easylist.txt: 917) -/(.*/)?ad/serve\. -# /ad/select? (easylist.txt: 916) -/(.*/)?ad/select\? -# /ad/script/* (easylist.txt: 915) -/(.*/)?ad/script/.* -# /ad/rotate? (easylist.txt: 914) -/(.*/)?ad/rotate\? -# /ad/right2. (easylist.txt: 913) -/(.*/)?ad/right2\. -# /ad/request? (easylist.txt: 912) -/(.*/)?ad/request\? -# /ad/reklamy. (easylist.txt: 911) -/(.*/)?ad/reklamy\. -# /ad/rectangle. (easylist.txt: 910) -/(.*/)?ad/rectangle\. -# /ad/realclick/* (easylist.txt: 909) -/(.*/)?ad/realclick/.* -# /ad/realclick. (easylist.txt: 908) -/(.*/)?ad/realclick\. -# /ad/random_ (easylist.txt: 907) -/(.*/)?ad/random_ -# /ad/quigo/* (easylist.txt: 906) -/(.*/)?ad/quigo/.* -# /ad/preview/* (easylist.txt: 905) -/(.*/)?ad/preview/.* -# /ad/popup. (easylist.txt: 904) -/(.*/)?ad/popup\. -# /ad/pong? (easylist.txt: 903) -/(.*/)?ad/pong\? -# /ad/player| (easylist.txt: 902) -/(.*/)?ad/player$ -# /ad/omakasa. (easylist.txt: 901) -/(.*/)?ad/omakasa\. -# /ad/network/* (easylist.txt: 900) -/(.*/)?ad/network/.* -# /ad/mpu/* (easylist.txt: 899) -/(.*/)?ad/mpu/.* -# /ad/middle. (easylist.txt: 898) -/(.*/)?ad/middle\. -# /ad/logo/* (easylist.txt: 897) -/(.*/)?ad/logo/.* -# /ad/login- (easylist.txt: 896) -/(.*/)?ad/login- -# /ad/log/* (easylist.txt: 895) -/(.*/)?ad/log/.* -# /ad/loading. (easylist.txt: 894) -/(.*/)?ad/loading\. -# /ad/load_ (easylist.txt: 893) -/(.*/)?ad/load_ -# /ad/load. (easylist.txt: 892) -/(.*/)?ad/load\. -# /ad/live- (easylist.txt: 891) -/(.*/)?ad/live- -# /ad/listing- (easylist.txt: 890) -/(.*/)?ad/listing- -# /ad/leaderboard. (easylist.txt: 889) -/(.*/)?ad/leaderboard\. -# /ad/jsonp/* (easylist.txt: 888) -/(.*/)?ad/jsonp/.* -# /ad/inventory/* (easylist.txt: 887) -/(.*/)?ad/inventory/.* -# /ad/integral- (easylist.txt: 886) -/(.*/)?ad/integral- -# /ad/inline? (easylist.txt: 885) -/(.*/)?ad/inline\? -# /ad/index_ (easylist.txt: 884) -/(.*/)?ad/index_ -# /ad/index/* (easylist.txt: 883) -/(.*/)?ad/index/.* -# /ad/index. (easylist.txt: 882) -/(.*/)?ad/index\. -# /ad/img/* (easylist.txt: 881) -/(.*/)?ad/img/.* -# /ad/image/* (easylist.txt: 880) -/(.*/)?ad/image/.* -# /ad/iframe/* (easylist.txt: 879) -/(.*/)?ad/iframe/.* -# /ad/iframe. (easylist.txt: 878) -/(.*/)?ad/iframe\. -# /ad/html/* (easylist.txt: 877) -/(.*/)?ad/html/.* -# /ad/google_ (easylist.txt: 876) -/(.*/)?ad/google_ -# /ad/google/* (easylist.txt: 875) -/(.*/)?ad/google/.* -# /ad/getbanandfile? (easylist.txt: 874) -/(.*/)?ad/getbanandfile\? -# /ad/getban? (easylist.txt: 873) -/(.*/)?ad/getban\? -# /ad/generate? (easylist.txt: 872) -/(.*/)?ad/generate\? -# /ad/framed? (easylist.txt: 871) -/(.*/)?ad/framed\? -# /ad/frame1. (easylist.txt: 870) -/(.*/)?ad/frame1\. -# /AD/Footer_ (easylist.txt: 869) -/(.*/)?AD/Footer_ -# /ad/files/* (easylist.txt: 868) -/(.*/)?ad/files/.* -# /ad/extra_ (easylist.txt: 867) -/(.*/)?ad/extra_ -# /ad/extra/* (easylist.txt: 866) -/(.*/)?ad/extra/.* -# /ad/empty. (easylist.txt: 865) -/(.*/)?ad/empty\. -# /ad/directcall/* (easylist.txt: 864) -/(.*/)?ad/directcall/.* -# /ad/css/* (easylist.txt: 863) -/(.*/)?ad/css/.* -# /ad/cpmstar/* (easylist.txt: 862) -/(.*/)?ad/cpmstar/.* -# /ad/content/* (easylist.txt: 861) -/(.*/)?ad/content/.* -# /ad/commons/* (easylist.txt: 860) -/(.*/)?ad/commons/.* -# /ad/common_ (easylist.txt: 859) -/(.*/)?ad/common_ -# /ad/common/* (easylist.txt: 858) -/(.*/)?ad/common/.* -# /ad/card- (easylist.txt: 857) -/(.*/)?ad/card- -# /ad/bottom. (easylist.txt: 856) -/(.*/)?ad/bottom\. -# /ad/blog_ (easylist.txt: 855) -/(.*/)?ad/blog_ -# /ad/blank. (easylist.txt: 854) -/(.*/)?ad/blank\. -# /ad/bin/* (easylist.txt: 853) -/(.*/)?ad/bin/.* -# /ad/behavpixel. (easylist.txt: 852) -/(.*/)?ad/behavpixel\. -# /ad/banners/* (easylist.txt: 851) -/(.*/)?ad/banners/.* -# /ad/bannerimg/* (easylist.txt: 850) -/(.*/)?ad/bannerimg/.* -# /ad/bannerdetails/* (easylist.txt: 849) -/(.*/)?ad/bannerdetails/.* -# /ad/banner_ (easylist.txt: 848) -/(.*/)?ad/banner_ -# /ad/banner? (easylist.txt: 847) -/(.*/)?ad/banner\? -# /ad/banner/* (easylist.txt: 846) -/(.*/)?ad/banner/.* -# /ad/banner. (easylist.txt: 845) -/(.*/)?ad/banner\. -# /ad/audsci. (easylist.txt: 844) -/(.*/)?ad/audsci\. -# /ad/article_ (easylist.txt: 843) -/(.*/)?ad/article_ -# /ad/afc_ (easylist.txt: 842) -/(.*/)?ad/afc_ -# /ad/a.aspx? (easylist.txt: 841) -/(.*/)?ad/a\.aspx\? -# /ad/?site= (easylist.txt: 840) -/(.*/)?ad/\?site= -# /ad/?section= (easylist.txt: 839) -/(.*/)?ad/\?section= -# /ad/?host= (easylist.txt: 838) -/(.*/)?ad/\?host= -# /ad/960x60. (easylist.txt: 837) -/(.*/)?ad/960x60\. -# /ad/940- (easylist.txt: 836) -/(.*/)?ad/940- -# /ad/938- (easylist.txt: 835) -/(.*/)?ad/938- -# /ad/728- (easylist.txt: 834) -/(.*/)?ad/728- -# /ad/600- (easylist.txt: 833) -/(.*/)?ad/600- -# /ad/130- (easylist.txt: 832) -/(.*/)?ad/130- -# /ad.ytn. (easylist.txt: 831) -/(.*/)?ad\.ytn\. -ad.ytn.*. -# /ad.view? (easylist.txt: 830) -/(.*/)?ad\.view\? -# /ad.valary? (easylist.txt: 829) -/(.*/)?ad\.valary\? -# /ad.serve. (easylist.txt: 828) -/(.*/)?ad\.serve\. -ad.serve.*. -# /ad.sense/* (easylist.txt: 827) -/(.*/)?ad\.sense/.* -ad.sense/.* -# /ad.redirect. (easylist.txt: 826) -/(.*/)?ad\.redirect\. -ad.redirect.*. -# /ad.popup? (easylist.txt: 825) -/(.*/)?ad\.popup\? -# /ad.php| (easylist.txt: 824) -/(.*/)?ad\.php$ -ad.php -# /ad.php? (easylist.txt: 823) -/(.*/)?ad\.php\? -# /ad.php3? (easylist.txt: 822) -/(.*/)?ad\.php3\? -# /ad.min. (easylist.txt: 821) -/(.*/)?ad\.min\. -ad.min.*. -# /ad.mason? (easylist.txt: 820) -/(.*/)?ad\.mason\? -# /ad.jsp? (easylist.txt: 819) -/(.*/)?ad\.jsp\? -# /ad.info. (easylist.txt: 818) -/(.*/)?ad\.info\. -ad.info.*. -# /ad.html? (easylist.txt: 817) -/(.*/)?ad\.html\? -# /ad.gif| (easylist.txt: 816) -/(.*/)?ad\.gif$ -ad.gif -# /ad.epl? (easylist.txt: 815) -/(.*/)?ad\.epl\? -# /ad.css? (easylist.txt: 814) -/(.*/)?ad\.css\? -# /ad.code? (easylist.txt: 813) -/(.*/)?ad\.code\? -# /ad.cgi? (easylist.txt: 812) -/(.*/)?ad\.cgi\? -# /ad.aspx? (easylist.txt: 811) -/(.*/)?ad\.aspx\? -# /ad.asp? (easylist.txt: 810) -/(.*/)?ad\.asp\? -# /ad.ashx? (easylist.txt: 809) -/(.*/)?ad\.ashx\? -# /ad.ams. (easylist.txt: 808) -/(.*/)?ad\.ams\. -ad.ams.*. -# /ad-view- (easylist.txt: 807) -/(.*/)?ad-view- -ad-view-*. -# /ad-verticalbar. (easylist.txt: 806) -/(.*/)?ad-verticalbar\. -ad-verticalbar.*. -# /ad-vertical- (easylist.txt: 805) -/(.*/)?ad-vertical- -ad-vertical-*. -# /ad-vert. (easylist.txt: 804) -/(.*/)?ad-vert\. -ad-vert.*. -# /ad-utilities. (easylist.txt: 803) -/(.*/)?ad-utilities\. -ad-utilities.*. -# /ad-updated- (easylist.txt: 802) -/(.*/)?ad-updated- -ad-updated-*. -# /ad-unit- (easylist.txt: 801) -/(.*/)?ad-unit- -ad-unit-*. -# /ad-topbanner- (easylist.txt: 800) -/(.*/)?ad-topbanner- -ad-topbanner-*. -# /ad-top/* (easylist.txt: 799) -/(.*/)?ad-top/.* -# /ad-top. (easylist.txt: 798) -/(.*/)?ad-top\. -ad-top.*. -# /ad-top- (easylist.txt: 797) -/(.*/)?ad-top- -ad-top-*. -# /ad-title. (easylist.txt: 796) -/(.*/)?ad-title\. -ad-title.*. -# /ad-text. (easylist.txt: 795) -/(.*/)?ad-text\. -ad-text.*. -# /ad-template/* (easylist.txt: 794) -/(.*/)?ad-template/.* -# /ad-template. (easylist.txt: 793) -/(.*/)?ad-template\. -ad-template.*. -# /ad-tandem. (easylist.txt: 792) -/(.*/)?ad-tandem\. -ad-tandem.*. -# /ad-tag2. (easylist.txt: 791) -/(.*/)?ad-tag2\. -ad-tag2.*. -# /ad-styles. (easylist.txt: 790) -/(.*/)?ad-styles\. -ad-styles.*. -# /ad-studio/* (easylist.txt: 789) -/(.*/)?ad-studio/.* -# /ad-strip. (easylist.txt: 788) -/(.*/)?ad-strip\. -ad-strip.*. -# /ad-sprite. (easylist.txt: 787) -/(.*/)?ad-sprite\. -ad-sprite.*. -# /ad-specs. (easylist.txt: 786) -/(.*/)?ad-specs\. -ad-specs.*. -# /ad-source/* (easylist.txt: 785) -/(.*/)?ad-source/.* -# /ad-skyscraper. (easylist.txt: 784) -/(.*/)?ad-skyscraper\. -ad-skyscraper.*. -# /ad-sidebar- (easylist.txt: 783) -/(.*/)?ad-sidebar- -ad-sidebar-*. -# /ad-side/* (easylist.txt: 782) -/(.*/)?ad-side/.* -# /ad-server/* (easylist.txt: 781) -/(.*/)?ad-server/.* -# /ad-server. (easylist.txt: 780) -/(.*/)?ad-server\. -ad-server.*. -# /ad-serve? (easylist.txt: 779) -/(.*/)?ad-serve\? -# /ad-rotator- (easylist.txt: 778) -/(.*/)?ad-rotator- -ad-rotator-*. -# /ad-ros- (easylist.txt: 777) -/(.*/)?ad-ros- -ad-ros-*. -# /ad-right2. (easylist.txt: 776) -/(.*/)?ad-right2\. -ad-right2.*. -# /ad-refresh. (easylist.txt: 775) -/(.*/)?ad-refresh\. -ad-refresh.*. -# /ad-refresh- (easylist.txt: 774) -/(.*/)?ad-refresh- -ad-refresh-*. -# /ad-record. (easylist.txt: 773) -/(.*/)?ad-record\. -ad-record.*. -# /ad-pub. (easylist.txt: 772) -/(.*/)?ad-pub\. -ad-pub.*. -# /ad-position- (easylist.txt: 771) -/(.*/)?ad-position- -ad-position-*. -# /ad-point/* (easylist.txt: 770) -/(.*/)?ad-point/.* -# /ad-plate/* (easylist.txt: 769) -/(.*/)?ad-plate/.* -# /ad-page/* (easylist.txt: 768) -/(.*/)?ad-page/.* -# /ad-openx. (easylist.txt: 767) -/(.*/)?ad-openx\. -ad-openx.*. -# /ad-offer1. (easylist.txt: 766) -/(.*/)?ad-offer1\. -ad-offer1.*. -# /ad-nytimes. (easylist.txt: 765) -/(.*/)?ad-nytimes\. -ad-nytimes.*. -# /ad-modules/* (easylist.txt: 764) -/(.*/)?ad-modules/.* -# /ad-minister/* (easylist.txt: 763) -/(.*/)?ad-minister/.* -# /ad-minister. (easylist.txt: 762) -/(.*/)?ad-minister\. -ad-minister.*. -# /ad-minister- (easylist.txt: 761) -/(.*/)?ad-minister- -ad-minister-*. -# /ad-methods. (easylist.txt: 760) -/(.*/)?ad-methods\. -ad-methods.*. -# /ad-maven- (easylist.txt: 759) -/(.*/)?ad-maven- -ad-maven-*. -# /ad-managment/* (easylist.txt: 758) -/(.*/)?ad-managment/.* -# /ad-manager/* (easylist.txt: 757) -/(.*/)?ad-manager/.* -# /ad-logger/* (easylist.txt: 756) -/(.*/)?ad-logger/.* -# /ad-loading. (easylist.txt: 754) -/(.*/)?ad-loading\. -ad-loading.*. -# /ad-loader. (easylist.txt: 753) -/(.*/)?ad-loader\. -ad-loader.*. -# /ad-loader- (easylist.txt: 752) -/(.*/)?ad-loader- -ad-loader-*. -# /ad-link/* (easylist.txt: 751) -/(.*/)?ad-link/.* -# /ad-lil. (easylist.txt: 750) -/(.*/)?ad-lil\. -ad-lil.*. -# /ad-letter. (easylist.txt: 749) -/(.*/)?ad-letter\. -ad-letter.*. -# /ad-left. (easylist.txt: 748) -/(.*/)?ad-left\. -ad-left.*. -# /ad-leaderboard. (easylist.txt: 747) -/(.*/)?ad-leaderboard\. -ad-leaderboard.*. -# /ad-layering- (easylist.txt: 745) -/(.*/)?ad-layering- -ad-layering-*. -# /ad-label. (easylist.txt: 744) -/(.*/)?ad-label\. -ad-label.*. -# /ad-label- (easylist.txt: 743) -/(.*/)?ad-label- -ad-label-*. -# /ad-issue. (easylist.txt: 742) -/(.*/)?ad-issue\. -ad-issue.*. -# /ad-int- (easylist.txt: 741) -/(.*/)?ad-int- -ad-int-*. -# /ad-injection/* (easylist.txt: 740) -/(.*/)?ad-injection/.* -# /ad-inject/* (easylist.txt: 739) -/(.*/)?ad-inject/.* -# /ad-indicator- (easylist.txt: 738) -/(.*/)?ad-indicator- -ad-indicator-*. -# /ad-ina. (easylist.txt: 737) -/(.*/)?ad-ina\. -ad-ina.*. -# /ad-images/* (easylist.txt: 736) -/(.*/)?ad-images/.* -# /ad-image. (easylist.txt: 735) -/(.*/)?ad-image\. -ad-image.*. -# /ad-iframe? (easylist.txt: 734) -/(.*/)?ad-iframe\? -# /ad-iframe. (easylist.txt: 733) -/(.*/)?ad-iframe\. -ad-iframe.*. -# /ad-iframe- (easylist.txt: 732) -/(.*/)?ad-iframe- -ad-iframe-*. -# /ad-ifr. (easylist.txt: 731) -/(.*/)?ad-ifr\. -ad-ifr.*. -# /ad-identifier. (easylist.txt: 730) -/(.*/)?ad-identifier\. -ad-identifier.*. -# /ad-hug. (easylist.txt: 729) -/(.*/)?ad-hug\. -ad-hug.*. -# /ad-home- (easylist.txt: 728) -/(.*/)?ad-home- -ad-home-*. -# /ad-header. (easylist.txt: 727) -/(.*/)?ad-header\. -ad-header.*. -# /ad-hcm. (easylist.txt: 726) -/(.*/)?ad-hcm\. -ad-hcm.*. -# /ad-half_ (easylist.txt: 725) -/(.*/)?ad-half_ -# /ad-frame/* (easylist.txt: 723) -/(.*/)?ad-frame/.* -# /ad-frame. (easylist.txt: 722) -/(.*/)?ad-frame\. -ad-frame.*. -# /ad-format. (easylist.txt: 721) -/(.*/)?ad-format\. -ad-format.*. -# /ad-flashgame. (easylist.txt: 720) -/(.*/)?ad-flashgame\. -ad-flashgame.*. -# /ad-fix- (easylist.txt: 719) -/(.*/)?ad-fix- -ad-fix-*. -# /ad-feedback. (easylist.txt: 718) -/(.*/)?ad-feedback\. -ad-feedback.*. -# /ad-feature- (easylist.txt: 717) -/(.*/)?ad-feature- -ad-feature-*. -# /ad-exchange. (easylist.txt: 716) -/(.*/)?ad-exchange\. -ad-exchange.*. -# /ad-engine. (easylist.txt: 715) -/(.*/)?ad-engine\. -ad-engine.*. -# /ad-emea. (easylist.txt: 714) -/(.*/)?ad-emea\. -ad-emea.*. -# /ad-creatives/* (easylist.txt: 713) -/(.*/)?ad-creatives/.* -# /ad-creatives- (easylist.txt: 712) -/(.*/)?ad-creatives- -ad-creatives-*. -# /ad-choices. (easylist.txt: 711) -/(.*/)?ad-choices\. -ad-choices.*. -# /ad-choices- (easylist.txt: 710) -/(.*/)?ad-choices- -ad-choices-*. -# /ad-channel- (easylist.txt: 709) -/(.*/)?ad-channel- -ad-channel-*. -# /ad-cdn. (easylist.txt: 708) -/(.*/)?ad-cdn\. -ad-cdn.*. -# /ad-callback. (easylist.txt: 707) -/(.*/)?ad-callback\. -ad-callback.*. -# /ad-button1. (easylist.txt: 706) -/(.*/)?ad-button1\. -ad-button1.*. -# /ad-builder. (easylist.txt: 705) -/(.*/)?ad-builder\. -ad-builder.*. -# /ad-boxes- (easylist.txt: 704) -/(.*/)?ad-boxes- -ad-boxes-*. -# /ad-box- (easylist.txt: 703) -/(.*/)?ad-box- -ad-box-*. -# /ad-bottom. (easylist.txt: 702) -/(.*/)?ad-bottom\. -ad-bottom.*. -# /ad-bin/* (easylist.txt: 701) -/(.*/)?ad-bin/.* -# /ad-bckg. (easylist.txt: 700) -/(.*/)?ad-bckg\. -ad-bckg.*. -# /ad-banner. (easylist.txt: 699) -/(.*/)?ad-banner\. -ad-banner.*. -# /ad-banner- (easylist.txt: 698) -/(.*/)?ad-banner- -ad-banner-*. -# /ad-background. (easylist.txt: 697) -/(.*/)?ad-background\. -ad-background.*. -# /ad-audit. (easylist.txt: 696) -/(.*/)?ad-audit\. -ad-audit.*. -# /ad-amz. (easylist.txt: 695) -/(.*/)?ad-amz\. -ad-amz.*. -# /ad-600- (easylist.txt: 694) -/(.*/)?ad-600- -ad-600-*. -# /ad-468- (easylist.txt: 693) -/(.*/)?ad-468- -ad-468-*. -# /ad-410x300. (easylist.txt: 692) -/(.*/)?ad-410x300\. -ad-410x300.*. -# /ad-350x350- (easylist.txt: 691) -/(.*/)?ad-350x350- -ad-350x350-*. -# /ad-300x254. (easylist.txt: 690) -/(.*/)?ad-300x254\. -ad-300x254.*. -# /ad-300x250. (easylist.txt: 689) -/(.*/)?ad-300x250\. -ad-300x250.*. -# /ad-300topleft. (easylist.txt: 688) -/(.*/)?ad-300topleft\. -ad-300topleft.*. -# /ad-125. (easylist.txt: 687) -/(.*/)?ad-125\. -ad-125.*. -# /ad%20images/* (easylist.txt: 686) -/(.*/)?ad%20images/.* -# /ad%20banners/* (easylist.txt: 685) -/(.*/)?ad%20banners/.* -# /active-ad- (easylist.txt: 684) -/(.*/)?active-ad- -active-ad-*. -# /acc_random= (easylist.txt: 683) -/(.*/)?acc_random= -# /AbvProductAds/* (easylist.txt: 682) -/(.*/)?AbvProductAds/.* -# /abvAds_ (easylist.txt: 681) -/(.*/)?abvAds_ -# /absolutebm.aspx? (easylist.txt: 680) -/(.*/)?absolutebm\.aspx\? -# /about-these-ads. (easylist.txt: 679) -/(.*/)?about-these-ads\. -about-these-ads.*. -# /abnl/?narodads^ (easylist.txt: 678) -/(.*/)?abnl/\?narodads[^\w%.-] -# /abnl/?begun^ (easylist.txt: 677) -/(.*/)?abnl/\?begun[^\w%.-] -# /abmw/* (easylist.txt: 676) -/(.*/)?abmw/.* -# /abmw.asp (easylist.txt: 675) -/(.*/)?abmw\.asp -abmw.asp*. -# /abm.aspx (easylist.txt: 674) -/(.*/)?abm\.aspx -abm.aspx*. -# /abm.asp? (easylist.txt: 673) -/(.*/)?abm\.asp\? -# /ABAdsv1. (easylist.txt: 672) -/(.*/)?ABAdsv1\. -ABAdsv1.*. -# /aamsz= (easylist.txt: 671) -/(.*/)?aamsz= -# /a2/ads/* (easylist.txt: 669) -/(.*/)?a2/ads/.* -# /a/display.php? (easylist.txt: 666) -/(.*/)?a/display\.php\? -# /a/ads/* (easylist.txt: 665) -/(.*/)?a/ads/.* -# /_svc/ad/* (easylist.txt: 664) -/(.*/)?_svc/ad/.* -# /_scripts/_oas/* (easylist.txt: 663) -/(.*/)?_scripts/_oas/.* -# /_js2/oas. (easylist.txt: 662) -/(.*/)?_js2/oas\. -# /_img/ad_ (easylist.txt: 661) -/(.*/)?_img/ad_ -# /_global/ads/* (easylist.txt: 660) -/(.*/)?_global/ads/.* -# /_affiliatebanners/* (easylist.txt: 659) -/(.*/)?_affiliatebanners/.* -# /_ads/* (easylist.txt: 658) -/(.*/)?_ads/.* -# /_30/ads/* (easylist.txt: 657) -/(.*/)?_30/ads/.* -# /_/ads/* (easylist.txt: 656) -/(.*/)?_/ads/.* -# /?view=ad (easylist.txt: 655) -/(.*/)?\?view=ad -# /?advideo/* (easylist.txt: 654) -/(.*/)?\?advideo/.* -# /?adv_partner (easylist.txt: 653) -/(.*/)?\?adv_partner -# /?addyn|* (easylist.txt: 652) -/(.*/)?\?addyn\|.* -# /728x90banner. (easylist.txt: 651) -/(.*/)?728x90banner\. -728x90banner.*. -# /728x80topad. (easylist.txt: 650) -/(.*/)?728x80topad\. -728x80topad.*. -# /728_ad_ (easylist.txt: 649) -/(.*/)?728_ad_ -# /468xads. (easylist.txt: 648) -/(.*/)?468xads\. -468xads.*. -# /468ad. (easylist.txt: 647) -/(.*/)?468ad\. -468ad.*. -# /468-banner. (easylist.txt: 646) -/(.*/)?468-banner\. -468-banner.*. -# /3pt_ads. (easylist.txt: 645) -/(.*/)?3pt_ads\. -# /336x280ads. (easylist.txt: 644) -/(.*/)?336x280ads\. -336x280ads.*. -# /300x500_ad (easylist.txt: 643) -/(.*/)?300x500_ad -# /300x250advert. (easylist.txt: 642) -/(.*/)?300x250advert\. -300x250advert.*. -# /300x250ads. (easylist.txt: 641) -/(.*/)?300x250ads\. -300x250ads.*. -# /300x250adbg. (easylist.txt: 640) -/(.*/)?300x250adbg\. -300x250adbg.*. -# /300x250ad. (easylist.txt: 639) -/(.*/)?300x250ad\. -300x250ad.*. -# /300by250ad. (easylist.txt: 638) -/(.*/)?300by250ad\. -300by250ad.*. -# /300ad. (easylist.txt: 637) -/(.*/)?300ad\. -300ad.*. -# /300_ad_ (easylist.txt: 636) -/(.*/)?300_ad_ -# /300250_ad- (easylist.txt: 635) -/(.*/)?300250_ad- -# /300-ad- (easylist.txt: 634) -/(.*/)?300-ad- -300-ad-*. -# /250x250_advert_ (easylist.txt: 633) -/(.*/)?250x250_advert_ -# /24adscript. (easylist.txt: 632) -/(.*/)?24adscript\. -24adscript.*. -# /24-7ads. (easylist.txt: 631) -/(.*/)?24-7ads\. -24-7ads.*. -# /2015/ads/* (easylist.txt: 630) -/(.*/)?2015/ads/.* -# /2014/ads/* (easylist.txt: 629) -/(.*/)?2014/ads/.* -# /2013/ads/* (easylist.txt: 628) -/(.*/)?2013/ads/.* -# /2011/ads/* (easylist.txt: 627) -/(.*/)?2011/ads/.* -# /2010main/ad/* (easylist.txt: 626) -/(.*/)?2010main/ad/.* -# /2010/ads/* (easylist.txt: 625) -/(.*/)?2010/ads/.* -# /1afr.php? (easylist.txt: 624) -/(.*/)?1afr\.php\? -# /1912/ads/* (easylist.txt: 623) -/(.*/)?1912/ads/.* -# /17/ads/* (easylist.txt: 622) -/(.*/)?17/ads/.* -# /160_ad_ (easylist.txt: 621) -/(.*/)?160_ad_ -# /126_ad. (easylist.txt: 620) -/(.*/)?126_ad\. -# /125x125ad. (easylist.txt: 619) -/(.*/)?125x125ad\. -125x125ad.*. -# /125x125_banner. (easylist.txt: 618) -/(.*/)?125x125_banner\. -# /125x125_ADS/* (easylist.txt: 617) -/(.*/)?125x125_ADS/.* -# /120ads/* (easylist.txt: 616) -/(.*/)?120ads/.* -# /120ad. (easylist.txt: 615) -/(.*/)?120ad\. -120ad.*. -# /1/ads/* (easylist.txt: 614) -/(.*/)?1/ads/.* -# /04/ads- (easylist.txt: 613) -/(.*/)?04/ads- -# /0/ads/* (easylist.txt: 612) -/(.*/)?0/ads/.* -# /!advert_ (easylist.txt: 611) -/(.*/)?!advert_ -# .zw/ads/ (easylist.txt: 610) -/.*\.zw/ads/ -.*.zw/ads/ -# .zm/ads/ (easylist.txt: 609) -/.*\.zm/ads/ -.*.zm/ads/ -# .za/ads/ (easylist.txt: 608) -/.*\.za/ads/ -.*.za/ads/ -# .za/ads. (easylist.txt: 607) -/.*\.za/ads\. -.*.za/ads\. -# .xxx/ads/ (easylist.txt: 606) -/.*\.xxx/ads/ -.*.xxx/ads/ -# .ws/ads/ (easylist.txt: 605) -/.*\.ws/ads/ -.*.ws/ads/ -# .widgets.ad? (easylist.txt: 604) -/.*\.widgets\.ad\? -# .vert.ad. (easylist.txt: 603) -/.*\.vert\.ad\. -.*.vert.ad.*. -# .utils.ads. (easylist.txt: 602) -/.*\.utils\.ads\. -.*.utils.ads.*. -# .us/ads/ (easylist.txt: 601) -/.*\.us/ads/ -.*.us/ads/ -# .uk/adv/ (easylist.txt: 600) -/.*\.uk/adv/ -.*.uk/adv/ -# .uk/ads/ (easylist.txt: 599) -/.*\.uk/ads/ -.*.uk/ads/ -# .tz/ads/ (easylist.txt: 598) -/.*\.tz/ads/ -.*.tz/ads/ -# .twoads. (easylist.txt: 597) -/.*\.twoads\. -.*.twoads.*. -# .tv/ads/ (easylist.txt: 596) -/.*\.tv/ads/ -.*.tv/ads/ -# .tv/ads. (easylist.txt: 595) -/.*\.tv/ads\. -.*.tv/ads\. -# .tv/adl. (easylist.txt: 594) -/.*\.tv/adl\. -.*.tv/adl\. -# .topad. (easylist.txt: 593) -/.*\.topad\. -.*.topad.*. -# .to/ads/ (easylist.txt: 592) -/.*\.to/ads/ -.*.to/ads/ -# .th/ads/ (easylist.txt: 591) -/.*\.th/ads/ -.*.th/ads/ -# .textads. (easylist.txt: 590) -/.*\.textads\. -.*.textads.*. -# .text-link-ads. (easylist.txt: 589) -/.*\.text-link-ads\. -.*.text-link-ads.*. -# .swf?popupiniframe= (easylist.txt: 588) -/.*\.swf\?popupiniframe= -# .swf?link=http (easylist.txt: 587) -/.*\.swf\?link=http -# .swf?link1=http (easylist.txt: 586) -/.*\.swf\?link1=http -# .swf?iurl=http (easylist.txt: 585) -/.*\.swf\?iurl=http -# .swf?clickthru= (easylist.txt: 584) -/.*\.swf\?clickthru= -# .swf?clicktag= (easylist.txt: 583) -/.*\.swf\?clicktag= -# .swf?click= (easylist.txt: 582) -/.*\.swf\?click= -# .swf?ad= (easylist.txt: 581) -/.*\.swf\?ad= -# .swf?2&clicktag= (easylist.txt: 580) -/.*\.swf\?2&clicktag= -# .swf?1&clicktag= (easylist.txt: 579) -/.*\.swf\?1&clicktag= -# .streamads. (easylist.txt: 578) -/.*\.streamads\. -.*.streamads.*. -# .sponsorads. (easylist.txt: 577) -/.*\.sponsorads\. -.*.sponsorads.*. -# .spider.ad/ (easylist.txt: 576) -/.*\.spider\.ad/ -.*.spider.ad -# .sk/ads/ (easylist.txt: 575) -/.*\.sk/ads/ -.*.sk/ads/ -# .show_ad_ (easylist.txt: 574) -/.*\.show_ad_ -# .shortcuts.search. (easylist.txt: 573) -/.*\.shortcuts\.search\. -.*.shortcuts.search.*. -# .se/ads/ (easylist.txt: 572) -/.*\.se/ads/ -.*.se/ads/ -# .rolloverad. (easylist.txt: 570) -/.*\.rolloverad\. -.*.rolloverad.*. -# .refit.ads. (easylist.txt: 569) -/.*\.refit\.ads\. -.*.refit.ads.*. -# .popupvideoad. (easylist.txt: 568) -/.*\.popupvideoad\. -.*.popupvideoad.*. -# .popup_im. (easylist.txt: 567) -/.*\.popup_im\. -# .popunder.js (easylist.txt: 566) -/.*\.popunder\.js -.*.popunder.js*. -# .pl/ads/ (easylist.txt: 565) -/.*\.pl/ads/ -.*.pl/ads/ -# .pk/ads/ (easylist.txt: 564) -/.*\.pk/ads/ -.*.pk/ads/ -# .php?zoneid= (easylist.txt: 563) -/.*\.php\?zoneid= -# .php?zone_id= (easylist.txt: 562) -/.*\.php\?zone_id= -# .php?nats= (easylist.txt: 561) -/.*\.php\?nats= -# .php?clicktag= (easylist.txt: 560) -/.*\.php\?clicktag= -# .php?affid= (easylist.txt: 559) -/.*\.php\?affid= -# .php?adv_ (easylist.txt: 558) -/.*\.php\?adv_ -# .php?adv= (easylist.txt: 557) -/.*\.php\?adv= -# .php?adsid= (easylist.txt: 556) -/.*\.php\?adsid= -# .php?ad_ (easylist.txt: 555) -/.*\.php\?ad_ -# .php?ad= (easylist.txt: 554) -/.*\.php\?ad= -# .php/ads/ (easylist.txt: 553) -/.*\.php/ads/ -.*.php/ads/ -# .php/ad/ (easylist.txt: 552) -/.*\.php/ad/ -.*.php/ad/ -# .ph/ads/ (easylist.txt: 551) -/.*\.ph/ads/ -.*.ph/ads/ -# .org/pops.js (easylist.txt: 550) -/.*\.org/pops\.js -.*.org/pops\.js -# .org/gads/ (easylist.txt: 549) -/.*\.org/gads/ -.*.org/gads/ -# .org/exit.js (easylist.txt: 548) -/.*\.org/exit\.js -.*.org/exit\.js -# .org/adv/ (easylist.txt: 547) -/.*\.org/adv/ -.*.org/adv/ -# .org/ads_ (easylist.txt: 546) -/.*\.org/ads_ -.*.org/ads_ -# .org/ads/ (easylist.txt: 545) -/.*\.org/ads/ -.*.org/ads/ -# .org/ads- (easylist.txt: 544) -/.*\.org/ads- -.*.org/ads- -# .org/adgallery1 (easylist.txt: 543) -/.*\.org/adgallery1 -.*.org/adgallery1 -# .org/ad_ (easylist.txt: 542) -/.*\.org/ad_ -.*.org/ad_ -# .org/ad/ (easylist.txt: 541) -/.*\.org/ad/ -.*.org/ad/ -# .org/ad. (easylist.txt: 540) -/.*\.org/ad\. -.*.org/ad\. -# .org/ad- (easylist.txt: 539) -/.*\.org/ad- -.*.org/ad- -# .openxtag.min.js (easylist.txt: 538) -/.*\.openxtag\.min\.js -.*.openxtag.min.js*. -# .openxtag.js (easylist.txt: 537) -/.*\.openxtag\.js -.*.openxtag.js*. -# .openx. (easylist.txt: 536) -/.*\.openx\. -.*.openx.*. -# .openad. (easylist.txt: 535) -/.*\.openad\. -.*.openad.*. -# .oasfile. (easylist.txt: 534) -/.*\.oasfile\. -.*.oasfile.*. -# .nz/ads/ (easylist.txt: 533) -/.*\.nz/ads/ -.*.nz/ads/ -# .nu/ads/ (easylist.txt: 532) -/.*\.nu/ads/ -.*.nu/ads/ -# .no/ads/ (easylist.txt: 531) -/.*\.no/ads/ -.*.no/ads/ -# .nl/ads/ (easylist.txt: 530) -/.*\.nl/ads/ -.*.nl/ads/ -# .nl/ad2/ (easylist.txt: 529) -/.*\.nl/ad2/ -.*.nl/ad2/ -# .net/vghd_ (easylist.txt: 528) -/.*\.net/vghd_ -.*.net/vghd_ -# .net/pops.js (easylist.txt: 527) -/.*\.net/pops\.js -.*.net/pops\.js -# .net/pfadj/ (easylist.txt: 526) -/.*\.net/pfadj/ -.*.net/pfadj/ -# .net/noidadx/ (easylist.txt: 525) -/.*\.net/noidadx/ -.*.net/noidadx/ -# .net/gads/ (easylist.txt: 524) -/.*\.net/gads/ -.*.net/gads/ -# .net/flashads (easylist.txt: 523) -/.*\.net/flashads -.*.net/flashads -# .net/bnr/ (easylist.txt: 522) -/.*\.net/bnr/ -.*.net/bnr/ -# .net/affiliate/ (easylist.txt: 521) -/.*\.net/affiliate/ -.*.net/affiliate/ -# .net/adv/ (easylist.txt: 520) -/.*\.net/adv/ -.*.net/adv/ -# .net/adt? (easylist.txt: 519) -/.*\.net/adt\? -.*.net/adt\? -# .net/ads_ (easylist.txt: 518) -/.*\.net/ads_ -.*.net/ads_ -# .net/ads? (easylist.txt: 517) -/.*\.net/ads\? -.*.net/ads\? -# .net/ads/ (easylist.txt: 516) -/.*\.net/ads/ -.*.net/ads/ -# .net/ads. (easylist.txt: 515) -/.*\.net/ads\. -.*.net/ads\. -# .net/ads- (easylist.txt: 514) -/.*\.net/ads- -.*.net/ads- -# .net/adj; (easylist.txt: 513) -/.*\.net/adj; -.*.net/adj; -# .net/adgallery (easylist.txt: 512) -/.*\.net/adgallery -.*.net/adgallery -# .net/ad_ (easylist.txt: 511) -/.*\.net/ad_ -.*.net/ad_ -# .net/ad2/ (easylist.txt: 510) -/.*\.net/ad2/ -.*.net/ad2/ -# .net/ad- (easylist.txt: 508) -/.*\.net/ad- -.*.net/ad- -# .net/_adv/ (easylist.txt: 507) -/.*\.net/_adv/ -.*.net/_adv/ -# .name/ads/ (easylist.txt: 506) -/.*\.name/ads/ -.*.name/ads/ -# .my/ads/ (easylist.txt: 505) -/.*\.my/ads/ -.*.my/ads/ -# .mx/ads/ (easylist.txt: 504) -/.*\.mx/ads/ -.*.mx/ads/ -# .mv/ads/ (easylist.txt: 503) -/.*\.mv/ads/ -.*.mv/ads/ -# .mobileads. (easylist.txt: 502) -/.*\.mobileads\. -.*.mobileads.*. -# .me/ads/ (easylist.txt: 501) -/.*\.me/ads/ -.*.me/ads/ -# .me/ads- (easylist.txt: 500) -/.*\.me/ads- -.*.me/ads- -# .lk/ads/ (easylist.txt: 499) -/.*\.lk/ads/ -.*.lk/ads/ -# .link/ads/ (easylist.txt: 498) -/.*\.link/ads/ -.*.link/ads/ -# .lazyload-ad. (easylist.txt: 497) -/.*\.lazyload-ad\. -.*.lazyload-ad.*. -# .lazyload-ad- (easylist.txt: 496) -/.*\.lazyload-ad- -.*.lazyload-ad-*. -# .ke/ads/ (easylist.txt: 495) -/.*\.ke/ads/ -.*.ke/ads/ -# .jsp?adcode= (easylist.txt: 494) -/.*\.jsp\?adcode= -# .jp/ads/ (easylist.txt: 493) -/.*\.jp/ads/ -.*.jp/ads/ -# .is/ads/ (easylist.txt: 492) -/.*\.is/ads/ -.*.is/ads/ -# .internads. (easylist.txt: 491) -/.*\.internads\. -.*.internads.*. -# .intad/ (easylist.txt: 490) -/.*\.intad/ -.*.intad -# .intad. (easylist.txt: 489) -/.*\.intad\. -.*.intad.*. -# .initdoubleclickadselementcontent? (easylist.txt: 488) -/.*\.initdoubleclickadselementcontent\? -# .info/ads/ (easylist.txt: 487) -/.*\.info/ads/ -.*.info/ads/ -# .info/ads- (easylist.txt: 486) -/.*\.info/ads- -.*.info/ads- -# .info/ad_ (easylist.txt: 485) -/.*\.info/ad_ -.*.info/ad_ -# .in/ads/ (easylist.txt: 484) -/.*\.in/ads/ -.*.in/ads/ -# .il/ads/ (easylist.txt: 483) -/.*\.il/ads/ -.*.il/ads/ -# .ie/ads/ (easylist.txt: 482) -/.*\.ie/ads/ -.*.ie/ads/ -# .iads.js (easylist.txt: 481) -/.*\.iads\.js -.*.iads.js*. -# .html?clicktag= (easylist.txt: 480) -/.*\.html\?clicktag= -# .html?ad_ (easylist.txt: 479) -/.*\.html\?ad_ -# .html?ad= (easylist.txt: 478) -/.*\.html\?ad= -# .HomepageAdvertismentBottom. (easylist.txt: 477) -/.*\.HomepageAdvertismentBottom\. -.*.HomepageAdvertismentBottom.*. -# .homad. (easylist.txt: 476) -/.*\.homad\. -.*.homad.*. -# .hk/ads/ (easylist.txt: 475) -/.*\.hk/ads/ -.*.hk/ads/ -# .gr/ads/ (easylist.txt: 474) -/.*\.gr/ads/ -.*.gr/ads/ -# .gif?ad= (easylist.txt: 473) -/.*\.gif\?ad= -# .gg/ads/ (easylist.txt: 472) -/.*\.gg/ads/ -.*.gg/ads/ -# .fm/ads/ (easylist.txt: 471) -/.*\.fm/ads/ -.*.fm/ads/ -# .exp_ad- (easylist.txt: 470) -/.*\.exp_ad- -# .eu/adv/ (easylist.txt: 469) -/.*\.eu/adv/ -.*.eu/adv/ -# .eu/ads/ (easylist.txt: 468) -/.*\.eu/ads/ -.*.eu/ads/ -# .eg/ads/ (easylist.txt: 467) -/.*\.eg/ads/ -.*.eg/ads/ -# .displayAds& (easylist.txt: 466) -/.*\.displayAds& -# .digital/ads/ (easylist.txt: 465) -/.*\.digital/ads/ -.*.digital/ads/ -# .dartconfig.js (easylist.txt: 464) -/.*\.dartconfig\.js -.*.dartconfig.js*. -# .cz/bannery/ (easylist.txt: 463) -/.*\.cz/bannery/ -.*.cz/bannery/ -# .cz/affil/ (easylist.txt: 462) -/.*\.cz/affil/ -.*.cz/affil/ -# .com/video-ad- (easylist.txt: 461) -/.*\.com/video-ad- -.*.com/video-ad- -# .com/ss/ad/ (easylist.txt: 460) -/.*\.com/ss/ad/ -.*.com/ss/ad/ -# .com/promodisplay? (easylist.txt: 459) -/.*\.com/promodisplay\? -.*.com/promodisplay\? -# .com/pm/ad- (easylist.txt: 458) -/.*\.com/pm/ad- -.*.com/pm/ad- -# .com/peels/ (easylist.txt: 457) -/.*\.com/peels/ -.*.com/peels/ -# .com/miads/ (easylist.txt: 456) -/.*\.com/miads/ -.*.com/miads/ -# .com/js/adsense (easylist.txt: 455) -/.*\.com/js/adsense -.*.com/js/adsense -# .com/js/ads/ (easylist.txt: 454) -/.*\.com/js/ads/ -.*.com/js/ads/ -# .com/js/ad. (easylist.txt: 453) -/.*\.com/js/ad\. -.*.com/js/ad\. -# .com/js.ng/ (easylist.txt: 452) -/.*\.com/js\.ng/ -.*.com/js\.ng/ -# .com/iplgadshow (easylist.txt: 451) -/.*\.com/iplgadshow -.*.com/iplgadshow -# .com/im_ad/ (easylist.txt: 450) -/.*\.com/im_ad/ -.*.com/im_ad/ -# .com/im-ad/ (easylist.txt: 449) -/.*\.com/im-ad/ -.*.com/im-ad/ -# .com/gads/ (easylist.txt: 448) -/.*\.com/gads/ -.*.com/gads/ -# .com/doubleclick/ (easylist.txt: 447) -/.*\.com/doubleclick/ -.*.com/doubleclick/ -# .com/bads/ (easylist.txt: 446) -/.*\.com/bads/ -.*.com/bads/ -# .com/adz/ (easylist.txt: 445) -/.*\.com/adz/ -.*.com/adz/ -# .com/adx_ (easylist.txt: 444) -/.*\.com/adx_ -.*.com/adx_ -# .com/adx/ (easylist.txt: 443) -/.*\.com/adx/ -.*.com/adx/ -# .com/adv_ (easylist.txt: 442) -/.*\.com/adv_ -.*.com/adv_ -# .com/adv? (easylist.txt: 441) -/.*\.com/adv\? -.*.com/adv\? -# .com/adv3/ (easylist.txt: 440) -/.*\.com/adv3/ -.*.com/adv3/ -# .com/adv/ (easylist.txt: 439) -/.*\.com/adv/ -.*.com/adv/ -# .com/ads_ (easylist.txt: 438) -/.*\.com/ads_ -.*.com/ads_ -# .com/ads? (easylist.txt: 437) -/.*\.com/ads\? -.*.com/ads\? -# .com/ads. (easylist.txt: 435) -/.*\.com/ads\. -.*.com/ads\. -# .com/ads- (easylist.txt: 434) -/.*\.com/ads- -.*.com/ads- -# .com/adpicture (easylist.txt: 433) -/.*\.com/adpicture -.*.com/adpicture -# .com/adlib_ (easylist.txt: 432) -/.*\.com/adlib_ -.*.com/adlib_ -# .com/adlib/ (easylist.txt: 431) -/.*\.com/adlib/ -.*.com/adlib/ -# .com/adinf/ (easylist.txt: 430) -/.*\.com/adinf/ -.*.com/adinf/ -# .com/adgallery (easylist.txt: 429) -/.*\.com/adgallery -.*.com/adgallery -# .com/adds/ (easylist.txt: 428) -/.*\.com/adds/ -.*.com/adds/ -# .com/adclk? (easylist.txt: 427) -/.*\.com/adclk\? -.*.com/adclk\? -# .com/ad? (easylist.txt: 426) -/.*\.com/ad\? -.*.com/ad\? -# .com/ad6/ (easylist.txt: 425) -/.*\.com/ad6/ -.*.com/ad6/ -# .com/ad2/ (easylist.txt: 424) -/.*\.com/ad2/ -.*.com/ad2/ -# .com/a?size (easylist.txt: 420) -/.*\.com/a\?size -.*.com/a\?size -# .com/a?pagetype (easylist.txt: 419) -/.*\.com/a\?pagetype -.*.com/a\?pagetype -# .com/a?network (easylist.txt: 418) -/.*\.com/a\?network -.*.com/a\?network -# .com/?wid= (easylist.txt: 417) -/.*\.com/\?wid= -.*.com/\?wid= -# .com/?ad= (easylist.txt: 416) -/.*\.com/\?ad= -.*.com/\?ad= -# .co/ads? (easylist.txt: 415) -/.*\.co/ads\? -.*.co/ads\? -# .co/ads/ (easylist.txt: 414) -/.*\.co/ads/ -.*.co/ads/ -# .clkads. (easylist.txt: 413) -/.*\.clkads\. -.*.clkads.*. -# .ch/adv/ (easylist.txt: 412) -/.*\.ch/adv/ -.*.ch/adv/ -# .ch/ads/ (easylist.txt: 411) -/.*\.ch/ads/ -.*.ch/ads/ -# .cgi?ad= (easylist.txt: 410) -/.*\.cgi\?ad= -# .cfm?advideo% (easylist.txt: 409) -/.*\.cfm\?advideo% -# .cfm?ad= (easylist.txt: 408) -/.*\.cfm\?ad= -# .cc/ads/ (easylist.txt: 407) -/.*\.cc/ads/ -.*.cc/ads/ -# .ca/ads/ (easylist.txt: 406) -/.*\.ca/ads/ -.*.ca/ads/ -# .bz/ads/ (easylist.txt: 405) -/.*\.bz/ads/ -.*.bz/ads/ -# .br/ads/ (easylist.txt: 404) -/.*\.br/ads/ -.*.br/ads/ -# .box.ad. (easylist.txt: 403) -/.*\.box\.ad\. -.*.box.ad.*. -# .bns1.net/ (easylist.txt: 402) -/.*\.bns1\.net/ -.*.bns1.net -# .biz/ads/ (easylist.txt: 401) -/.*\.biz/ads/ -.*.biz/ads/ -# .biz/ad2/ (easylist.txt: 400) -/.*\.biz/ad2/ -.*.biz/ad2/ -# .biz/ad/ (easylist.txt: 399) -/.*\.biz/ad/ -.*.biz/ad/ -# .biz/ad. (easylist.txt: 398) -/.*\.biz/ad\. -.*.biz/ad\. -# .be/ads/ (easylist.txt: 397) -/.*\.be/ads/ -.*.be/ads/ -# .bbn.by/ (easylist.txt: 396) -/.*\.bbn\.by/ -.*.bbn.by -# .banner%20ad. (easylist.txt: 395) -/.*\.banner%20ad\. -# .az/adv/ (easylist.txt: 394) -/.*\.az/adv/ -.*.az/adv/ -# .au/ads/ (easylist.txt: 393) -/.*\.au/ads/ -.*.au/ads/ -# .at/ads/ (easylist.txt: 392) -/.*\.at/ads/ -.*.at/ads/ -# .aspx?adid= (easylist.txt: 391) -/.*\.aspx\?adid= -# .aspx?ad= (easylist.txt: 390) -/.*\.aspx\?ad= -# .asp?coad (easylist.txt: 389) -/.*\.asp\?coad -# .ashx?AdID= (easylist.txt: 388) -/.*\.ashx\?AdID= -# .ashx?ad= (easylist.txt: 387) -/.*\.ashx\?ad= -# .ar/ads/ (easylist.txt: 386) -/.*\.ar/ads/ -.*.ar/ads/ -# .ae/ads/ (easylist.txt: 385) -/.*\.ae/ads/ -.*.ae/ads/ -# .adwolf. (easylist.txt: 384) -/.*\.adwolf\. -.*.adwolf.*. -# .advertmarket. (easylist.txt: 383) -/.*\.advertmarket\. -.*.advertmarket.*. -# .AdvertismentBottom. (easylist.txt: 382) -/.*\.AdvertismentBottom\. -.*.AdvertismentBottom.*. -# .adv.cdn. (easylist.txt: 380) -/.*\.adv\.cdn\. -.*.adv.cdn.*. -# .adtooltip& (easylist.txt: 379) -/.*\.adtooltip& -# .adtech_ (easylist.txt: 378) -/.*\.adtech_ -# .adsremote. (easylist.txt: 377) -/.*\.adsremote\. -.*.adsremote.*. -# .adspace. (easylist.txt: 376) -/.*\.adspace\. -.*.adspace.*. -# .adserver1. (easylist.txt: 374) -/.*\.adserver1\. -.*.adserver1.*. -# .adserver01. (easylist.txt: 373) -/.*\.adserver01\. -.*.adserver01.*. -# .adserver. (easylist.txt: 372) -/.*\.adserver\. -.*.adserver.*. -# .adserv/ (easylist.txt: 371) -/.*\.adserv/ -.*.adserv -# .adsense. (easylist.txt: 370) -/.*\.adsense\. -.*.adsense.*. -# .adsbox. (easylist.txt: 369) -/.*\.adsbox\. -.*.adsbox.*. -# .ads_clickthru. (easylist.txt: 368) -/.*\.ads_clickthru\. -# .ads3- (easylist.txt: 367) -/.*\.ads3- -.*.ads3-*. -# .ads2- (easylist.txt: 366) -/.*\.ads2- -.*.ads2-*. -# .ads1. (easylist.txt: 365) -/.*\.ads1\. -.*.ads1.*. -# .ads1- (easylist.txt: 364) -/.*\.ads1- -.*.ads1-*. -# .ads.zones. (easylist.txt: 363) -/.*\.ads\.zones\. -.*.ads.zones.*. -# .ads.loader- (easylist.txt: 362) -/.*\.ads\.loader- -.*.ads.loader-*. -# .ads.darla. (easylist.txt: 361) -/.*\.ads\.darla\. -.*.ads.darla.*. -# .ads.css (easylist.txt: 360) -/.*\.ads\.css -.*.ads.css*. -# .ads.core. (easylist.txt: 359) -/.*\.ads\.core\. -.*.ads.core.*. -# .ads.controller. (easylist.txt: 358) -/.*\.ads\.controller\. -.*.ads.controller.*. -# .ads-tool. (easylist.txt: 357) -/.*\.ads-tool\. -.*.ads-tool.*. -# .ads-min. (easylist.txt: 356) -/.*\.ads-min\. -.*.ads-min.*. -# .ads-lazy. (easylist.txt: 355) -/.*\.ads-lazy\. -.*.ads-lazy.*. -# .ads-and-tracking. (easylist.txt: 354) -/.*\.ads-and-tracking\. -.*.ads-and-tracking.*. -# .adru. (easylist.txt: 353) -/.*\.adru\. -.*.adru.*. -# .adrotate. (easylist.txt: 352) -/.*\.adrotate\. -.*.adrotate.*. -# .adplacement= (easylist.txt: 349) -/.*\.adplacement= -# .adpartner. (easylist.txt: 348) -/.*\.adpartner\. -.*.adpartner.*. -# .admarvel. (easylist.txt: 346) -/.*\.admarvel\. -.*.admarvel.*. -# .adgearpubs. (easylist.txt: 344) -/.*\.adgearpubs\. -.*.adgearpubs.*. -# .adframesrc. (easylist.txt: 343) -/.*\.adframesrc\. -.*.adframesrc.*. -# .adforge. (easylist.txt: 342) -/.*\.adforge\. -.*.adforge.*. -# .adcenter. (easylist.txt: 341) -/.*\.adcenter\. -.*.adcenter.*. -# .adbutler- (easylist.txt: 340) -/.*\.adbutler- -.*.adbutler-*. -# .adbanner. (easylist.txt: 339) -/.*\.adbanner\. -.*.adbanner.*. -# .ad1.nspace (easylist.txt: 338) -/.*\.ad1\.nspace -.*.ad1.nspace*. -# .ad/tag. (easylist.txt: 337) -/.*\.ad/tag\. -.*.ad/tag\. -# .ad/scripts/ (easylist.txt: 336) -/.*\.ad/scripts/ -.*.ad/scripts/ -# .ad/script/ (easylist.txt: 335) -/.*\.ad/script/ -.*.ad/script/ -# .ad/positions/ (easylist.txt: 334) -/.*\.ad/positions/ -.*.ad/positions/ -# .ad/content/ (easylist.txt: 333) -/.*\.ad/content/ -.*.ad/content/ -# .ad.premiere. (easylist.txt: 332) -/.*\.ad\.premiere\. -.*.ad.premiere.*. -# .ad.page. (easylist.txt: 331) -/.*\.ad\.page\. -.*.ad.page.*. -# .ad.json? (easylist.txt: 330) -/.*\.ad\.json\? -# .ad.footer. (easylist.txt: 329) -/.*\.ad\.footer\. -.*.ad.footer.*. -# .ad.final. (easylist.txt: 328) -/.*\.ad\.final\. -.*.ad.final.*. -# .ad-traffic. (easylist.txt: 327) -/.*\.ad-traffic\. -.*.ad-traffic.*. -# .ad-sys. (easylist.txt: 326) -/.*\.ad-sys\. -.*.ad-sys.*. -# .ad-cloud. (easylist.txt: 325) -/.*\.ad-cloud\. -.*.ad-cloud.*. -# .ace.advertising. (easylist.txt: 324) -/.*\.ace\.advertising\. -.*.ace.advertising.*. -# .a3s?n=*&zone_id= (easylist.txt: 323) -/.*\.a3s\?n=.*&zone_id= -# .1d/ads/ (easylist.txt: 322) -/.*\.1d/ads/ -.*.1d/ads/ -# -your-ads-here. (easylist.txt: 321) -/.*-your-ads-here\. -.*-your-ads-here.*. -# -webad1. (easylist.txt: 320) -/.*-webad1\. -.*-webad1.*. -# -Web-Advert. (easylist.txt: 319) -/.*-Web-Advert\. -.*-Web-Advert.*. -# -web-advert- (easylist.txt: 318) -/.*-web-advert- -.*-web-advert-*. -# -Web-Ads. (easylist.txt: 317) -/.*-Web-Ads\. -.*-Web-Ads.*. -# -Web-Ad. (easylist.txt: 316) -/.*-Web-Ad\. -.*-Web-Ad.*. -# -web-ad- (easylist.txt: 315) -/.*-web-ad- -.*-web-ad-*. -# -video-ads/ (easylist.txt: 314) -/.*-video-ads/ -.*-video-ads -# -us/ads/ (easylist.txt: 313) -/.*-us/ads/ -.*-us/ads/ -# -top-ads. (easylist.txt: 312) -/.*-top-ads\. -.*-top-ads.*. -# -top-ad. (easylist.txt: 311) -/.*-top-ad\. -.*-top-ad.*. -# -third-ad. (easylist.txt: 310) -/.*-third-ad\. -.*-third-ad.*. -# -theme/ads/ (easylist.txt: 309) -/.*-theme/ads/ -.*-theme/ads/ -# -text-ads. (easylist.txt: 308) -/.*-text-ads\. -.*-text-ads.*. -# -template-ads/ (easylist.txt: 307) -/.*-template-ads/ -.*-template-ads -# -strip-ads- (easylist.txt: 306) -/.*-strip-ads- -.*-strip-ads-*. -# -sponsored-links- (easylist.txt: 305) -/.*-sponsored-links- -.*-sponsored-links-*. -# -sponsor-ad. (easylist.txt: 304) -/.*-sponsor-ad\. -.*-sponsor-ad.*. -# -source/ads/ (easylist.txt: 303) -/.*-source/ads/ -.*-source/ads/ -# -small-ad. (easylist.txt: 302) -/.*-small-ad\. -.*-small-ad.*. -# -skyscrapper160x600. (easylist.txt: 301) -/.*-skyscrapper160x600\. -.*-skyscrapper160x600.*. -# -Skyscraper-Ad. (easylist.txt: 300) -/.*-Skyscraper-Ad\. -.*-Skyscraper-Ad.*. -# -side-ad- (easylist.txt: 299) -/.*-side-ad- -.*-side-ad-*. -# -show-ads. (easylist.txt: 298) -/.*-show-ads\. -.*-show-ads.*. -# -seasonal-ad. (easylist.txt: 297) -/.*-seasonal-ad\. -.*-seasonal-ad.*. -# -scrollads. (easylist.txt: 296) -/.*-scrollads\. -.*-scrollads.*. -# -rollout-ad- (easylist.txt: 295) -/.*-rollout-ad- -.*-rollout-ad-*. -# -rightrailad- (easylist.txt: 294) -/.*-rightrailad- -.*-rightrailad-*. -# -right-ad. (easylist.txt: 293) -/.*-right-ad\. -.*-right-ad.*. -# -Results-Sponsored. (easylist.txt: 292) -/.*-Results-Sponsored\. -.*-Results-Sponsored.*. -# -rectangle/ad- (easylist.txt: 291) -/.*-rectangle/ad- -.*-rectangle/ad- -# -publicidad. (easylist.txt: 290) -/.*-publicidad\. -.*-publicidad.*. -# -printhousead- (easylist.txt: 289) -/.*-printhousead- -.*-printhousead-*. -# -pri/adv- (easylist.txt: 288) -/.*-pri/adv- -.*-pri/adv- -# -popup-ads- (easylist.txt: 287) -/.*-popup-ads- -.*-popup-ads-*. -# -popup-ad. (easylist.txt: 286) -/.*-popup-ad\. -.*-popup-ad.*. -# -popunder. (easylist.txt: 285) -/.*-popunder\. -.*-popunder.*. -# -popexit. (easylist.txt: 284) -/.*-popexit\. -.*-popexit.*. -# -pop-under/ (easylist.txt: 283) -/.*-pop-under/ -.*-pop-under -# -permads. (easylist.txt: 282) -/.*-permads\. -.*-permads.*. -# -peel-ads- (easylist.txt: 281) -/.*-peel-ads- -.*-peel-ads-*. -# -panel_ad_ (easylist.txt: 280) -/.*-panel_ad_ -# -panel-ad. (easylist.txt: 279) -/.*-panel-ad\. -.*-panel-ad.*. -# -page-peel/ (easylist.txt: 278) -/.*-page-peel/ -.*-page-peel -# -page-ad? (easylist.txt: 277) -/.*-page-ad\? -# -page-ad. (easylist.txt: 276) -/.*-page-ad\. -.*-page-ad.*. -# -online-advert. (easylist.txt: 275) -/.*-online-advert\. -.*-online-advert.*. -# -NewStockAd- (easylist.txt: 274) -/.*-NewStockAd- -.*-NewStockAd-*. -# -newsletter-ad- (easylist.txt: 273) -/.*-newsletter-ad- -.*-newsletter-ad-*. -# -news-ad- (easylist.txt: 272) -/.*-news-ad- -.*-news-ad-*. -# -NewAd. (easylist.txt: 271) -/.*-NewAd\. -.*-NewAd.*. -# -load-ads. (easylist.txt: 270) -/.*-load-ads\. -.*-load-ads.*. -# -leaderboard-ad- (easylist.txt: 269) -/.*-leaderboard-ad- -.*-leaderboard-ad-*. -# -layer-ads/ (easylist.txt: 268) -/.*-layer-ads/ -.*-layer-ads -# -layer-ad. (easylist.txt: 267) -/.*-layer-ad\. -.*-layer-ad.*. -# -intern-ads/ (easylist.txt: 266) -/.*-intern-ads/ -.*-intern-ads -# -inspire-ad. (easylist.txt: 265) -/.*-inspire-ad\. -.*-inspire-ad.*. -# -img/ads/ (easylist.txt: 264) -/.*-img/ads/ -.*-img/ads/ -# -images/ad- (easylist.txt: 263) -/.*-images/ad- -.*-images/ad- -# -image/Ads/ (easylist.txt: 262) -/.*-image/Ads/ -.*-image/Ads/ -# -image-ad. (easylist.txt: 261) -/.*-image-ad\. -.*-image-ad.*. -# -iframe-ads/ (easylist.txt: 260) -/.*-iframe-ads/ -.*-iframe-ads -# -iframe-ad. (easylist.txt: 259) -/.*-iframe-ad\. -.*-iframe-ad.*. -# -housead- (easylist.txt: 258) -/.*-housead- -.*-housead-*. -# -gpt-ad- (easylist.txt: 257) -/.*-gpt-ad- -.*-gpt-ad-*. -# -google2-ad- (easylist.txt: 256) -/.*-google2-ad- -.*-google2-ad-*. -# -google-ads/ (easylist.txt: 255) -/.*-google-ads/ -.*-google-ads -# -google-ads- (easylist.txt: 254) -/.*-google-ads- -.*-google-ads-*. -# -games/ads/ (easylist.txt: 253) -/.*-games/ads/ -.*-games/ads/ -# -gallery_ad/ (easylist.txt: 252) -/.*-gallery_ad/ -# -footerads. (easylist.txt: 251) -/.*-footerads\. -.*-footerads.*. -# -footerads- (easylist.txt: 250) -/.*-footerads- -.*-footerads-*. -# -floorboard-ads/ (easylist.txt: 249) -/.*-floorboard-ads/ -.*-floorboard-ads -# -floater_ads_ (easylist.txt: 248) -/.*-floater_ads_ -# -fleshlight2. (easylist.txt: 247) -/.*-fleshlight2\. -.*-fleshlight2.*. -# -feed-ads. (easylist.txt: 246) -/.*-feed-ads\. -.*-feed-ads.*. -# -featured-ads/ (easylist.txt: 245) -/.*-featured-ads/ -.*-featured-ads -# -featured-ads. (easylist.txt: 244) -/.*-featured-ads\. -.*-featured-ads.*. -# -fe-ads/ (easylist.txt: 243) -/.*-fe-ads/ -.*-fe-ads -# -euads. (easylist.txt: 242) -/.*-euads\. -.*-euads.*. -# -dfp-ads/ (easylist.txt: 241) -/.*-dfp-ads/ -.*-dfp-ads -# -cpm-ads. (easylist.txt: 240) -/.*-cpm-ads\. -.*-cpm-ads.*. -# -cpm-ad. (easylist.txt: 239) -/.*-cpm-ad\. -.*-cpm-ad.*. -# -contest-ad. (easylist.txt: 238) -/.*-contest-ad\. -.*-contest-ad.*. -# -content-ad. (easylist.txt: 237) -/.*-content-ad\. -.*-content-ad.*. -# -box2-ad? (easylist.txt: 236) -/.*-box2-ad\? -# -Box-Ad. (easylist.txt: 235) -/.*-Box-Ad\. -.*-Box-Ad.*. -# -book-ad- (easylist.txt: 234) -/.*-book-ad- -.*-book-ad-*. -# -blog-ad- (easylist.txt: 233) -/.*-blog-ad- -.*-blog-ad-*. -# -bin/ad_ (easylist.txt: 232) -/.*-bin/ad_ -.*-bin/ad_ -# -billboard-ads/ (easylist.txt: 231) -/.*-billboard-ads/ -.*-billboard-ads -# -bg_ads. (easylist.txt: 230) -/.*-bg_ads\. -# -bannerads/ (easylist.txt: 229) -/.*-bannerads/ -.*-bannerads -# -banner468x60. (easylist.txt: 228) -/.*-banner468x60\. -.*-banner468x60.*. -# -banner300x250. (easylist.txt: 227) -/.*-banner300x250\. -.*-banner300x250.*. -# -banner.swf? (easylist.txt: 226) -/.*-banner\.swf\? -# -banner-ads/ (easylist.txt: 225) -/.*-banner-ads/ -.*-banner-ads -# -banner-ads- (easylist.txt: 224) -/.*-banner-ads- -.*-banner-ads-*. -# -banner-ad/ (easylist.txt: 223) -/.*-banner-ad/ -.*-banner-ad -# -banner-ad. (easylist.txt: 222) -/.*-banner-ad\. -.*-banner-ad.*. -# -banner-ad- (easylist.txt: 221) -/.*-banner-ad- -.*-banner-ad-*. -# -banner-768. (easylist.txt: 220) -/.*-banner-768\. -.*-banner-768.*. -# -article-advert- (easylist.txt: 219) -/.*-article-advert- -.*-article-advert-*. -# -article-ads- (easylist.txt: 218) -/.*-article-ads- -.*-article-ads-*. -# -affiliates/img_ (easylist.txt: 217) -/.*-affiliates/img_ -.*-affiliates/img_ -# -affiliate-link. (easylist.txt: 216) -/.*-affiliate-link\. -.*-affiliate-link.*. -# -adwords. (easylist.txt: 215) -/.*-adwords\. -.*-adwords.*. -# -advertisment- (easylist.txt: 214) -/.*-advertisment- -.*-advertisment-*. -# -advertising_ (easylist.txt: 213) -/.*-advertising_ -# -advertisement_ (easylist.txt: 212) -/.*-advertisement_ -# -advertisement. (easylist.txt: 211) -/.*-advertisement\. -.*-advertisement.*. -# -advertisement-icon. (easylist.txt: 210) -/.*-advertisement-icon\. -.*-advertisement-icon.*. -# -advertise01. (easylist.txt: 209) -/.*-advertise01\. -.*-advertise01.*. -# -advertise/ (easylist.txt: 208) -/.*-advertise/ -.*-advertise -# -advert_August. (easylist.txt: 206) -/.*-advert_August\. -# -advert3. (easylist.txt: 205) -/.*-advert3\. -.*-advert3.*. -# -advert2. (easylist.txt: 204) -/.*-advert2\. -.*-advert2.*. -# -advert1. (easylist.txt: 203) -/.*-advert1\. -.*-advert1.*. -# -advert.swf (easylist.txt: 202) -/.*-advert\.swf -.*-advert.swf*. -# -advert.jpg? (easylist.txt: 201) -/.*-advert\.jpg\? -# -advert-label- (easylist.txt: 200) -/.*-advert-label- -.*-advert-label-*. -# -adv.js (easylist.txt: 199) -/.*-adv\.js -.*-adv.js*. -# -adv.jpg (easylist.txt: 198) -/.*-adv\.jpg -.*-adv.jpg*. -# -adv-v1/ (easylist.txt: 197) -/.*-adv-v1/ -.*-adv-v1 -# -adtrack. (easylist.txt: 196) -/.*-adtrack\. -.*-adtrack.*. -# -adtopbanner- (easylist.txt: 195) -/.*-adtopbanner- -.*-adtopbanner-*. -# -adtechfront. (easylist.txt: 194) -/.*-adtechfront\. -.*-adtechfront.*. -# -adsystem- (easylist.txt: 193) -/.*-adsystem- -.*-adsystem-*. -# -adswizz- (easylist.txt: 192) -/.*-adswizz- -.*-adswizz-*. -# -adspot- (easylist.txt: 191) -/.*-adspot- -.*-adspot-*. -# -adspace_ (easylist.txt: 190) -/.*-adspace_ -# -adspace. (easylist.txt: 189) -/.*-adspace\. -.*-adspace.*. -# -adsonar. (easylist.txt: 188) -/.*-adsonar\. -.*-adsonar.*. -# -adserver/ (easylist.txt: 187) -/.*-adserver/ -.*-adserver -# -adserver- (easylist.txt: 186) -/.*-adserver- -.*-adserver-*. -# -adsense2. (easylist.txt: 185) -/.*-adsense2\. -.*-adsense2.*. -# -adscript. (easylist.txt: 184) -/.*-adscript\. -.*-adscript.*. -# -Ads_Billboard_ (easylist.txt: 183) -/.*-Ads_Billboard_ -# -ads_9_3. (easylist.txt: 182) -/.*-ads_9_3\. -# -Ads_728x902. (easylist.txt: 181) -/.*-Ads_728x902\. -# -ads/static- (easylist.txt: 180) -/.*-ads/static- -.*-ads/static- -# -ads/oas/ (easylist.txt: 179) -/.*-ads/oas/ -.*-ads/oas/ -# -ads/img/ (easylist.txt: 178) -/.*-ads/img/ -.*-ads/img/ -# -ads/ad- (easylist.txt: 177) -/.*-ads/ad- -.*-ads/ad- -# -ads/728x (easylist.txt: 176) -/.*-ads/728x -.*-ads/728x -# -ads.swf (easylist.txt: 175) -/.*-ads\.swf -.*-ads.swf*. -# -ads.php? (easylist.txt: 174) -/.*-ads\.php\? -# -ads.js? (easylist.txt: 173) -/.*-ads\.js\? -# -ads.gif (easylist.txt: 172) -/.*-ads\.gif -.*-ads.gif*. -# -ads.generated. (easylist.txt: 171) -/.*-ads\.generated\. -.*-ads.generated.*. -# -ads-widget? (easylist.txt: 170) -/.*-ads-widget\? -# -ads-right. (easylist.txt: 169) -/.*-ads-right\. -.*-ads-right.*. -# -ads-placement. (easylist.txt: 168) -/.*-ads-placement\. -.*-ads-placement.*. -# -ads-ns. (easylist.txt: 167) -/.*-ads-ns\. -.*-ads-ns.*. -# -ads-manager/ (easylist.txt: 166) -/.*-ads-manager/ -.*-ads-manager -# -ads-management/ (easylist.txt: 165) -/.*-ads-management/ -.*-ads-management -# -ads-init& (easylist.txt: 164) -/.*-ads-init& -# -ads-iframe. (easylist.txt: 163) -/.*-ads-iframe\. -.*-ads-iframe.*. -# -ads-bottom. (easylist.txt: 162) -/.*-ads-bottom\. -.*-ads-bottom.*. -# -ads-banner. (easylist.txt: 161) -/.*-ads-banner\. -.*-ads-banner.*. -# -ads-728x (easylist.txt: 160) -/.*-ads-728x -.*-ads-728x*. -# -ads-180x (easylist.txt: 159) -/.*-ads-180x -.*-ads-180x*. -# -adrotation. (easylist.txt: 158) -/.*-adrotation\. -.*-adrotation.*. -# -adnow. (easylist.txt: 157) -/.*-adnow\. -.*-adnow.*. -# -admarvel/ (easylist.txt: 156) -/.*-admarvel/ -.*-admarvel -# -adimage- (easylist.txt: 155) -/.*-adimage- -.*-adimage-*. -# -adhere2. (easylist.txt: 154) -/.*-adhere2\. -.*-adhere2.*. -# -adhelper. (easylist.txt: 153) -/.*-adhelper\. -.*-adhelper.*. -# -adchain. (easylist.txt: 152) -/.*-adchain\. -.*-adchain.*. -# -adcentre. (easylist.txt: 151) -/.*-adcentre\. -.*-adcentre.*. -# -adblack- (easylist.txt: 150) -/.*-adblack- -.*-adblack-*. -# -adap. (easylist.txt: 149) -/.*-adap\. -.*-adap.*. -# -ad_leaderboard/ (easylist.txt: 148) -/.*-ad_leaderboard/ -# -ad_injector/ (easylist.txt: 147) -/.*-ad_injector/ -# -ad_banner- (easylist.txt: 146) -/.*-ad_banner- -# -ad_125x125. (easylist.txt: 145) -/.*-ad_125x125\. -# -ad5. (easylist.txt: 144) -/.*-ad5\. -.*-ad5.*. -# -ad4. (easylist.txt: 143) -/.*-ad4\. -.*-ad4.*. -# -Ad300x90- (easylist.txt: 142) -/.*-Ad300x90- -.*-Ad300x90-*. -# -Ad300x250. (easylist.txt: 141) -/.*-Ad300x250\. -.*-Ad300x250.*. -# -ad3. (easylist.txt: 140) -/.*-ad3\. -.*-ad3.*. -# -ad2_ (easylist.txt: 139) -/.*-ad2_ -# -ad2. (easylist.txt: 138) -/.*-ad2\. -.*-ad2.*. -# -ad1. (easylist.txt: 137) -/.*-ad1\. -.*-ad1.*. -# -ad03. (easylist.txt: 136) -/.*-ad03\. -.*-ad03.*. -# -ad/right_ (easylist.txt: 135) -/.*-ad/right_ -.*-ad/right_ -# -ad/main. (easylist.txt: 134) -/.*-ad/main\. -.*-ad/main\. -# -ad.php? (easylist.txt: 133) -/.*-ad\.php\? -# -ad.jsp| (easylist.txt: 132) -/.*-ad\.jsp$ -.*-ad.jsp -# -ad.jpg? (easylist.txt: 131) -/.*-ad\.jpg\? -# -ad.jpg.pagespeed. (easylist.txt: 130) -/.*-ad\.jpg\.pagespeed\. -.*-ad.jpg.pagespeed.*. -# -ad-zone. (easylist.txt: 129) -/.*-ad-zone\. -.*-ad-zone.*. -# -ad-vertical- (easylist.txt: 128) -/.*-ad-vertical- -.*-ad-vertical-*. -# -ad-util. (easylist.txt: 127) -/.*-ad-util\. -.*-ad-util.*. -# -ad-util- (easylist.txt: 126) -/.*-ad-util- -.*-ad-util-*. -# -ad-unit/ (easylist.txt: 125) -/.*-ad-unit/ -.*-ad-unit -# -ad-unit. (easylist.txt: 124) -/.*-ad-unit\. -.*-ad-unit.*. -# -ad-top. (easylist.txt: 123) -/.*-ad-top\. -.*-ad-top.*. -# -ad-tile. (easylist.txt: 122) -/.*-ad-tile\. -.*-ad-tile.*. -# -ad-switcher. (easylist.txt: 121) -/.*-ad-switcher\. -.*-ad-switcher.*. -# -ad-sidebar- (easylist.txt: 120) -/.*-ad-sidebar- -.*-ad-sidebar-*. -# -ad-server/ (easylist.txt: 119) -/.*-ad-server/ -.*-ad-server -# -ad-rotators/ (easylist.txt: 118) -/.*-ad-rotators/ -.*-ad-rotators -# -ad-right. (easylist.txt: 117) -/.*-ad-right\. -.*-ad-right.*. -# -ad-new_ (easylist.txt: 116) -/.*-ad-new_ -# -ad-mpu+ (easylist.txt: 115) -/.*-ad-mpu\+ -# -ad-marker. (easylist.txt: 114) -/.*-ad-marker\. -.*-ad-marker.*. -# -ad-loading. (easylist.txt: 112) -/.*-ad-loading\. -.*-ad-loading.*. -# -ad-limits. (easylist.txt: 111) -/.*-ad-limits\. -.*-ad-limits.*. -# -ad-left. (easylist.txt: 110) -/.*-ad-left\. -.*-ad-left.*. -# -ad-large. (easylist.txt: 109) -/.*-ad-large\. -.*-ad-large.*. -# -ad-iframe/ (easylist.txt: 108) -/.*-ad-iframe/ -.*-ad-iframe -# -ad-hrule. (easylist.txt: 107) -/.*-ad-hrule\. -.*-ad-hrule.*. -# -ad-hrule- (easylist.txt: 106) -/.*-ad-hrule- -.*-ad-hrule-*. -# -ad-home. (easylist.txt: 105) -/.*-ad-home\. -.*-ad-home.*. -# -ad-gif1- (easylist.txt: 104) -/.*-ad-gif1- -.*-ad-gif1-*. -# -ad-gif- (easylist.txt: 103) -/.*-ad-gif- -.*-ad-gif-*. -# -ad-exo- (easylist.txt: 102) -/.*-ad-exo- -.*-ad-exo-*. -# -ad-ero- (easylist.txt: 101) -/.*-ad-ero- -.*-ad-ero-*. -# -ad-data/ (easylist.txt: 100) -/.*-ad-data/ -.*-ad-data -# -ad-cube. (easylist.txt: 99) -/.*-ad-cube\. -.*-ad-cube.*. -# -ad-column- (easylist.txt: 98) -/.*-ad-column- -.*-ad-column-*. -# -ad-choices. (easylist.txt: 97) -/.*-ad-choices\. -.*-ad-choices.*. -# -ad-category- (easylist.txt: 96) -/.*-ad-category- -.*-ad-category-*. -# -ad-button- (easylist.txt: 95) -/.*-ad-button- -.*-ad-button-*. -# -ad-bottom- (easylist.txt: 94) -/.*-ad-bottom- -.*-ad-bottom-*. -# -ad-big. (easylist.txt: 93) -/.*-ad-big\. -.*-ad-big.*. -# -ad-banner. (easylist.txt: 92) -/.*-ad-banner\. -.*-ad-banner.*. -# -ad-400. (easylist.txt: 91) -/.*-ad-400\. -.*-ad-400.*. -# -ad-340x400- (easylist.txt: 90) -/.*-ad-340x400- -.*-ad-340x400-*. -# -ad-336x280- (easylist.txt: 89) -/.*-ad-336x280- -.*-ad-336x280-*. -# -ad-313x232. (easylist.txt: 88) -/.*-ad-313x232\. -.*-ad-313x232.*. -# -ad-300x250. (easylist.txt: 87) -/.*-ad-300x250\. -.*-ad-300x250.*. -# -ad-24x24. (easylist.txt: 86) -/.*-ad-24x24\. -.*-ad-24x24.*. -# -ad-200x200- (easylist.txt: 85) -/.*-ad-200x200- -.*-ad-200x200-*. -# -ad-180x150px. (easylist.txt: 84) -/.*-ad-180x150px\. -.*-ad-180x150px.*. -# -ad-001- (easylist.txt: 83) -/.*-ad-001- -.*-ad-001-*. -# -300x100ad2. (easylist.txt: 82) -/.*-300x100ad2\. -.*-300x100ad2.*. -# -2011ad_ (easylist.txt: 81) -/.*-2011ad_ -# -2/ads/ (easylist.txt: 80) -/.*-2/ads/ -.*-2/ads/ -# +adverts/ (easylist.txt: 79) -/.*\+adverts/ -# +advertorial. (easylist.txt: 78) -/.*\+advertorial\. -# &view=ad& (easylist.txt: 77) -/.*&view=ad& -# &videoadid= (easylist.txt: 76) -/.*&videoadid= -# &video_ads_ (easylist.txt: 75) -/.*&video_ads_ -# &UrlAdParam= (easylist.txt: 74) -/.*&UrlAdParam= -# &type=ad& (easylist.txt: 73) -/.*&type=ad& -# &strategy=adsense& (easylist.txt: 72) -/.*&strategy=adsense& -# &smart_ad_ (easylist.txt: 71) -/.*&smart_ad_ -# &smallad= (easylist.txt: 70) -/.*&smallad= -# &simple_ad_ (easylist.txt: 69) -/.*&simple_ad_ -# &showad= (easylist.txt: 68) -/.*&showad= -# &show_ad_ (easylist.txt: 67) -/.*&show_ad_ -# &prvtof=*&poru= (easylist.txt: 66) -/.*&prvtof=.*&poru= -# &program=revshare& (easylist.txt: 65) -/.*&program=revshare& -# &popunder= (easylist.txt: 64) -/.*&popunder= -# &maxads= (easylist.txt: 63) -/.*&maxads= -# &largead= (easylist.txt: 62) -/.*&largead= -# &jumpstartadformat= (easylist.txt: 61) -/.*&jumpstartadformat= -# &googleadword= (easylist.txt: 60) -/.*&googleadword= -# &gIncludeExternalAds= (easylist.txt: 59) -/.*&gIncludeExternalAds= -# &expandable_ad_ (easylist.txt: 58) -/.*&expandable_ad_ -# &displayads= (easylist.txt: 57) -/.*&displayads= -# &customSizeAd= (easylist.txt: 56) -/.*&customSizeAd= -# &clicktag=http (easylist.txt: 55) -/.*&clicktag=http -# &banner_id= (easylist.txt: 54) -/.*&banner_id= -# &adzone= (easylist.txt: 53) -/.*&adzone= -# &advtile= (easylist.txt: 52) -/.*&advtile= -# &advid= (easylist.txt: 51) -/.*&advid= -# &advertiserid= (easylist.txt: 50) -/.*&advertiserid= -# &advert_ (easylist.txt: 49) -/.*&advert_ -# &adv_keywords= (easylist.txt: 48) -/.*&adv_keywords= -# &adurl= (easylist.txt: 47) -/.*&adurl= -# &adunit= (easylist.txt: 46) -/.*&adunit= -# &adType=PREROLL& (easylist.txt: 45) -/.*&adType=PREROLL& -# &adstype= (easylist.txt: 44) -/.*&adstype= -# &adspace= (easylist.txt: 43) -/.*&adspace= -# &adsourceid= (easylist.txt: 42) -/.*&adsourceid= -# &adslots= (easylist.txt: 41) -/.*&adslots= -# &adslot= (easylist.txt: 40) -/.*&adslot= -# &adsize= (easylist.txt: 39) -/.*&adsize= -# &adserver= (easylist.txt: 38) -/.*&adserver= -# &adsafe= (easylist.txt: 37) -/.*&adsafe= -# &adpageurl= (easylist.txt: 36) -/.*&adpageurl= -# &adnum= (easylist.txt: 35) -/.*&adnum= -# &adnet= (easylist.txt: 34) -/.*&adnet= -# &adname= (easylist.txt: 33) -/.*&adname= -# &admid= (easylist.txt: 32) -/.*&admid= -# &admeld_ (easylist.txt: 31) -/.*&admeld_ -# &adgroupid= (easylist.txt: 30) -/.*&adgroupid= -# &adcount= (easylist.txt: 29) -/.*&adcount= -# &adclient= (easylist.txt: 28) -/.*&adclient= -# &adbannerid= (easylist.txt: 27) -/.*&adbannerid= -# &ad_zones= (easylist.txt: 26) -/.*&ad_zones= -# &ad_url= (easylist.txt: 25) -/.*&ad_url= -# &ad_type_ (easylist.txt: 24) -/.*&ad_type_ -# &ad_type= (easylist.txt: 23) -/.*&ad_type= -# &ad_number= (easylist.txt: 22) -/.*&ad_number= -# &ad_network_ (easylist.txt: 21) -/.*&ad_network_ -# &ad_keyword= (easylist.txt: 20) -/.*&ad_keyword= -# &ad_height= (easylist.txt: 19) -/.*&ad_height= -# &ad_classid= (easylist.txt: 18) -/.*&ad_classid= -# &ad_channel= (easylist.txt: 17) -/.*&ad_channel= -# &ad_box_ (easylist.txt: 16) -/.*&ad_box_ - -#ab2p-block-request-Aacsv-Cacsv -{+client-header-tagger{ab2p-block-request-Aacsv} \ - +server-header-tagger{ab2p-block-request-Cacsv} \ -} -TAG:^ab2p-block-request-Aacsv-Cacsv$ - -#ab2p-block-request-Aacsv-Cacsv-when-R75 -{+client-header-tagger{ab2p-block-request-Aacsv-Cacsv-when-R75} \ -} -# ||adultmult.tv^$object,stylesheet,domain=adultmult.tv (advblock.txt: 6643) -.adultmult.tv - -#ab2p-block-request-Aaijsv-Caijsv -{+client-header-tagger{ab2p-block-request-Aaijsv} \ - +server-header-tagger{ab2p-block-request-Caijsv} \ -} -# /adfox/*$image,object,script,subdocument (advblock.txt: 366) -/(.*/)?adfox/.* - -#ab2p-block-request-Aaiov-Caiov -{+client-header-tagger{ab2p-block-request-Aaiov} \ - +server-header-tagger{ab2p-block-request-Caiov} \ -} -TAG:^ab2p-block-request-Aaiov-Caiov$ - -#ab2p-block-request-Aaiov-Caiov-when-R166 -{+client-header-tagger{ab2p-block-request-Aaiov-Caiov-when-R166} \ -} -# ||mzstatic.com^$image,object-subrequest,domain=dailymotion.com (easylistchina+easylist.txt: 40666) -.mzstatic.com -# ||mzstatic.com^$image,object-subrequest,domain=dailymotion.com (easylist.txt: 30181) -.mzstatic.com #ab2p-block-request-Aaisv-Caisv {+client-header-tagger{ab2p-block-request-Aaisv} \ +server-header-tagger{ab2p-block-request-Caisv} \ } -TAG:^ab2p-block-request-Aaisv-Caisv$ -# ||yimg.com/*300x250$image,object (easylistchina+easylist.txt: 45733) -.yimg.com/.*300x250 -# ||com/banners/$image,object,subdocument (easylistchina+easylist.txt: 16966) -# .com/ads/$image,object,subdocument (easylistchina+easylist.txt: 10921) -/.*\.com/ads/ -.*.com/ads/ -# ||sznews.com/*.files/$image,object (easylistchina+easylist.txt: 4745) +# ||sznews.com/*.files/$image,object (easylistchina.txt: 4726) .sznews.com/.*\.files/ -# ||stnn.cc/images/xy/*x80$image,object (easylistchina+easylist.txt: 4703) +# ||stnn.cc/images/xy/*x80$image,object (easylistchina.txt: 4684) .stnn.cc/images/xy/.*x80 -# ||ptfish.com/*/ad$image,object (easylistchina+easylist.txt: 4246) +# ||ptfish.com/*/ad$image,object (easylistchina.txt: 4236) .ptfish.com/.*/ad -# ||mp3.haogeba.com^$image,object (easylistchina+easylist.txt: 3982) +# ||mp3.haogeba.com^$image,object (easylistchina.txt: 3970) .mp3.haogeba.com -# ||langxi.org/langxi/*900$image,object (easylistchina+easylist.txt: 3769) +# ||langxi.org/langxi/*900$image,object (easylistchina.txt: 3760) .langxi.org/langxi/.*900 -# ||i.168img.com^$image,object (easylistchina+easylist.txt: 3315) +# ||i.168img.com^$image,object (easylistchina.txt: 3299) .i.168img.com -# ||i.168gamer.$image,object (easylistchina+easylist.txt: 3314) +# ||i.168gamer.$image,object (easylistchina.txt: 3298) .i.168gamer.*. -# ||hybbs.com/i/$image,object (easylistchina+easylist.txt: 3306) +# ||hybbs.com/i/$image,object (easylistchina.txt: 3290) .hybbs.com/i/ -# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina+easylist.txt: 2090) +# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina.txt: 2080) .am.zdnet.com.cn/www/images/ -# /common/cf/*$image,object (easylistchina+easylist.txt: 136) +# /common/cf/*$image,object (easylistchina.txt: 139) /(.*/)?common/cf/.* -# ||sovsport.ru/s/br/*?t=$image,object (advblock.txt: 6417) -.sovsport.ru/s/br/.*\?t= -# ||gamerpro.ru/images/adver/$image,object (advblock.txt: 5766) -.gamerpro.ru/images/adver/ -# ||copypast.ru/re*/$image,object (advblock.txt: 5626) -.copypast.ru/re.*/ -# ||chipmaker.ru/index.php?*§ion=select&$image,object (advblock.txt: 5594) -.chipmaker.ru/index\.php\?.*§ion=select& -# ||bookz.ru/tpl/$image,object (advblock.txt: 5565) -.bookz.ru/tpl/ -# ||yimg.com/*300x250$image,object (easylist.txt: 35248) -.yimg.com/.*300x250 -# ||com/banners/$image,object,subdocument (easylist.txt: 6481) -# .com/ads/$image,object,subdocument (easylist.txt: 436) -/.*\.com/ads/ -.*.com/ads/ - -#ab2p-block-request-Aaisv-Caisv-when-Rt -{+client-header-tagger{ab2p-block-request-Aaisv-Caisv-when-Rt} \ -} -# ||realfuckdates.net^$third-party,image,object (advblock.txt: 1417) -.realfuckdates.net -# ||a.votpusk.ru^$third-party,image,object (advblock.txt: 723) -.a.votpusk.ru -# ||a.mayakinfo.ru^$third-party,image,object (advblock.txt: 722) -.a.mayakinfo.ru #ab2p-block-request-Aajosv-Cajosv {+client-header-tagger{ab2p-block-request-Aajosv} \ +server-header-tagger{ab2p-block-request-Cajosv} \ } -# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2594) +# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2580) .d5.sina.com.cn -# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2592) +# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2578) .d4.sina.com.cn -# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2591) +# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2577) .d3.sina.com.cn -# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2590) +# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2576) .d2.sina.com.cn -# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina+easylist.txt: 2589) +# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2575) .d1.sina.com.cn #ab2p-block-request-Aajsv-Cajsv {+client-header-tagger{ab2p-block-request-Aajsv} \ +server-header-tagger{ab2p-block-request-Cajsv} \ } -# ||up.qingdaonews.com/up/$object,script (easylistchina+easylist.txt: 4928) +# ||up.qingdaonews.com/up/$object,script (easylistchina.txt: 4904) .up.qingdaonews.com/up/ -# ||ks.js.cn*/yytf/$object,script (easylistchina+easylist.txt: 3736) +# ||ks.js.cn*/yytf/$object,script (easylistchina.txt: 3728) .ks.js.cn*./(.*/)?yytf/ -# ||dabaoku.com^$object,script,subdocument (easylistchina+easylist.txt: 2598) +# ||dabaoku.com^$object,script,subdocument (easylistchina.txt: 2584) .dabaoku.com -# ||33.autohome.com.cn^$object,script (easylistchina+easylist.txt: 1570) +# ||33.autohome.com.cn^$object,script (easylistchina.txt: 1574) .33.autohome.com.cn #ab2p-block-request-Aaosv-Caosv {+client-header-tagger{ab2p-block-request-Aaosv} \ +server-header-tagger{ab2p-block-request-Caosv} \ } -TAG:^ab2p-block-request-Aaosv-Caosv$ -# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina+easylist.txt: 2118) +# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina.txt: 2108) .asimgs.pplive.cn -#ab2p-block-request-Aaosv-Caosv-when-R342 -{+client-header-tagger{ab2p-block-request-Aaosv-Caosv-when-R342} \ -} -# ||pladform.ru^$object,object-subrequest,subdocument,domain=molodejj.tv|smotri.com (advblock.txt: 6228) -.pladform.ru - #ab2p-block-request-Aaov-Caov {+client-header-tagger{ab2p-block-request-Aaov} \ +server-header-tagger{ab2p-block-request-Caov} \ } TAG:^ab2p-block-request-Aaov-Caov$ -# ||channel4.com^*.tidaltv.com$object-subrequest (easylistchina+easylist.txt: 46078) -.channel4.com/.*\.tidaltv\.com -# ||channel4.com^*.innovid.com$object-subrequest (easylistchina+easylist.txt: 46077) -.channel4.com/.*\.innovid\.com -# ||weatherbug.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 45542) -.weatherbug.com/.*/ova-jw\.swf -# ||vidspot.net/player/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 45442) -.vidspot.net/player/ova-jw\.swf -# ||videodorm.org/player/yume-h.swf$object-subrequest (easylistchina+easylist.txt: 45426) -.videodorm.org/player/yume-h\.swf -# ||video44.net/gogo/yume-h.swf$object-subrequest (easylistchina+easylist.txt: 45418) -.video44.net/gogo/yume-h\.swf -# ||video.abc.com^*/promos/$object-subrequest (easylistchina+easylist.txt: 45413) -.video.abc.com/.*/promos/ -# ||video-cdn.abcnews.com/ad_$object-subrequest (easylistchina+easylist.txt: 45410) -.video-cdn.abcnews.com/ad_ -# ||speedtest.net/flash/60speedify$object-subrequest (easylistchina+easylist.txt: 44859) -.speedtest.net/flash/60speedify -# ||speedtest.net/flash/59rvvrpc-$object-subrequest (easylistchina+easylist.txt: 44858) -.speedtest.net/flash/59rvvrpc- -# ||slacker.com/wsv1/getspot/?$object-subrequest (easylistchina+easylist.txt: 44783) -.slacker.com/wsv1/getspot/\? -# ||ovfile.com/player/jwadplugin.swf$object-subrequest (easylistchina+easylist.txt: 44292) -.ovfile.com/player/jwadplugin\.swf -# ||mp.adverts.itv.com/priority/*.mp4$object-subrequest (easylistchina+easylist.txt: 44035) -.mp.adverts.itv.com/priority/.*\.mp4 -# ||india.com/ads/jw/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 43497) -.india.com/ads/jw/ova-jw\.swf -# ||ballislife.com^*/ova-player.swf$object-subrequest (easylistchina+easylist.txt: 42280) -.ballislife.com/.*/ova-player\.swf -# ||streamtheworld.com/ondemand/ars?type=preroll$object-subrequest (easylistchina+easylist.txt: 40988) -.streamtheworld.com/ondemand/ars\?type=preroll -# ||pub.sapo.pt/vast.php$object-subrequest (easylistchina+easylist.txt: 40808) -.pub.sapo.pt/vast\.php -# ||player.screenwavemedia.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 40763) -.player.screenwavemedia.com/.*/ova-jw\.swf -# ||myvi.ru/feed/$object-subrequest (easylistchina+easylist.txt: 40665) -.myvi.ru/feed/ -# ||longtailvideo.com^*/ova-$object-subrequest (easylistchina+easylist.txt: 40543) -.longtailvideo.com/.*/ova- -# ||longtailvideo.com^*/googima-$object-subrequest (easylistchina+easylist.txt: 40540) -.longtailvideo.com/.*/googima- -# ||longtailvideo.com^*/adaptvjw5.swf$object-subrequest (easylistchina+easylist.txt: 40538) -.longtailvideo.com/.*/adaptvjw5\.swf -# ||longtailvideo.com^*/adaptvjw5-$object-subrequest (easylistchina+easylist.txt: 40537) -.longtailvideo.com/.*/adaptvjw5- -# ||jivox.com/jivox/serverapis/getcampaignbyid.php?$object-subrequest (easylistchina+easylist.txt: 40476) -.jivox.com/jivox/serverapis/getcampaignbyid\.php\? -# ||ipercast.net^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 40465) -.ipercast.net/.*/ova-jw\.swf -# ||as.jivox.com/jivox/serverapis/getcampaignbysite.php?$object-subrequest (easylistchina+easylist.txt: 39784) -.as.jivox.com/jivox/serverapis/getcampaignbysite\.php\? -# ||akamai.net^*/espnpreroll/$object-subrequest (easylistchina+easylist.txt: 39722) -.akamai.net/.*/espnpreroll/ -# ||afcdn.com^*/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 39691) -.afcdn.com/.*/ova-jw\.swf -# ||adap.tv/redir/plugins3/$object-subrequest (easylistchina+easylist.txt: 39666) -.adap.tv/redir/plugins3/ -# ||adap.tv/redir/plugins/$object-subrequest (easylistchina+easylist.txt: 39665) -.adap.tv/redir/plugins/ -# ||24.com//flashplayer/ova-jw.swf$object-subrequest (easylistchina+easylist.txt: 39595) -# ;cue=pre;$object-subrequest (easylistchina+easylist.txt: 16327) -/.*;cue=pre; -# ||yinyuetai.com/partner/$object-subrequest (easylistchina+easylist.txt: 5267) +# ||yinyuetai.com/partner/$object-subrequest (easylistchina.txt: 5241) .yinyuetai.com/partner/ -# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina+easylist.txt: 4368) +# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina.txt: 4358) .qzs.qq.com/qzone/biz/res/v\.swf\?loc= -# ||qiyipic.com/common/$object-subrequest (easylistchina+easylist.txt: 4298) +# ||qiyipic.com/common/$object-subrequest (easylistchina.txt: 4289) .qiyipic.com/common/ -# ||letvimg.com*gugwl/$object-subrequest (easylistchina+easylist.txt: 3804) +# ||letvimg.com*gugwl/$object-subrequest (easylistchina.txt: 3795) .letvimg.com*./.*gugwl/ .letvimg.com*gugwl -# ||float.sandai.net^$object-subrequest (easylistchina+easylist.txt: 2910) +# ||float.sandai.net^$object-subrequest (easylistchina.txt: 2892) .float.sandai.net -# ||duonao.tv//upload/$object-subrequest (easylistchina+easylist.txt: 2747) -# ||douban.com^*/rda/$object-subrequest (easylistchina+easylist.txt: 2714) +# ||duonao.tv//upload/$object-subrequest (easylistchina.txt: 2728) +# ||douban.com^*/rda/$object-subrequest (easylistchina.txt: 2696) .douban.com/.*/rda/ -# ||dnvod.eu//upload/$object-subrequest (easylistchina+easylist.txt: 2689) -# ||play.aniland.org^*.swf^$object-subrequest (advblock.txt: 6233) -.play.aniland.org/.*\.swf[^\w%.-] -# ||channel4.com^*.tidaltv.com$object-subrequest (easylist.txt: 35593) -.channel4.com/.*\.tidaltv\.com -# ||channel4.com^*.innovid.com$object-subrequest (easylist.txt: 35592) -.channel4.com/.*\.innovid\.com -# ||weatherbug.com^*/ova-jw.swf$object-subrequest (easylist.txt: 35057) -.weatherbug.com/.*/ova-jw\.swf -# ||vidspot.net/player/ova-jw.swf$object-subrequest (easylist.txt: 34957) -.vidspot.net/player/ova-jw\.swf -# ||videodorm.org/player/yume-h.swf$object-subrequest (easylist.txt: 34941) -.videodorm.org/player/yume-h\.swf -# ||video44.net/gogo/yume-h.swf$object-subrequest (easylist.txt: 34933) -.video44.net/gogo/yume-h\.swf -# ||video.abc.com^*/promos/$object-subrequest (easylist.txt: 34928) -.video.abc.com/.*/promos/ -# ||video-cdn.abcnews.com/ad_$object-subrequest (easylist.txt: 34925) -.video-cdn.abcnews.com/ad_ -# ||speedtest.net/flash/60speedify$object-subrequest (easylist.txt: 34374) -.speedtest.net/flash/60speedify -# ||speedtest.net/flash/59rvvrpc-$object-subrequest (easylist.txt: 34373) -.speedtest.net/flash/59rvvrpc- -# ||slacker.com/wsv1/getspot/?$object-subrequest (easylist.txt: 34298) -.slacker.com/wsv1/getspot/\? -# ||ovfile.com/player/jwadplugin.swf$object-subrequest (easylist.txt: 33807) -.ovfile.com/player/jwadplugin\.swf -# ||mp.adverts.itv.com/priority/*.mp4$object-subrequest (easylist.txt: 33550) -.mp.adverts.itv.com/priority/.*\.mp4 -# ||india.com/ads/jw/ova-jw.swf$object-subrequest (easylist.txt: 33012) -.india.com/ads/jw/ova-jw\.swf -# ||ballislife.com^*/ova-player.swf$object-subrequest (easylist.txt: 31795) -.ballislife.com/.*/ova-player\.swf -# ||streamtheworld.com/ondemand/ars?type=preroll$object-subrequest (easylist.txt: 30503) -.streamtheworld.com/ondemand/ars\?type=preroll -# ||pub.sapo.pt/vast.php$object-subrequest (easylist.txt: 30323) -.pub.sapo.pt/vast\.php -# ||player.screenwavemedia.com^*/ova-jw.swf$object-subrequest (easylist.txt: 30278) -.player.screenwavemedia.com/.*/ova-jw\.swf -# ||myvi.ru/feed/$object-subrequest (easylist.txt: 30180) -.myvi.ru/feed/ -# ||longtailvideo.com^*/ova-$object-subrequest (easylist.txt: 30058) -.longtailvideo.com/.*/ova- -# ||longtailvideo.com^*/googima-$object-subrequest (easylist.txt: 30055) -.longtailvideo.com/.*/googima- -# ||longtailvideo.com^*/adaptvjw5.swf$object-subrequest (easylist.txt: 30053) -.longtailvideo.com/.*/adaptvjw5\.swf -# ||longtailvideo.com^*/adaptvjw5-$object-subrequest (easylist.txt: 30052) -.longtailvideo.com/.*/adaptvjw5- -# ||jivox.com/jivox/serverapis/getcampaignbyid.php?$object-subrequest (easylist.txt: 29991) -.jivox.com/jivox/serverapis/getcampaignbyid\.php\? -# ||ipercast.net^*/ova-jw.swf$object-subrequest (easylist.txt: 29980) -.ipercast.net/.*/ova-jw\.swf -# ||as.jivox.com/jivox/serverapis/getcampaignbysite.php?$object-subrequest (easylist.txt: 29299) -.as.jivox.com/jivox/serverapis/getcampaignbysite\.php\? -# ||akamai.net^*/espnpreroll/$object-subrequest (easylist.txt: 29237) -.akamai.net/.*/espnpreroll/ -# ||afcdn.com^*/ova-jw.swf$object-subrequest (easylist.txt: 29206) -.afcdn.com/.*/ova-jw\.swf -# ||adap.tv/redir/plugins3/$object-subrequest (easylist.txt: 29181) -.adap.tv/redir/plugins3/ -# ||adap.tv/redir/plugins/$object-subrequest (easylist.txt: 29180) -.adap.tv/redir/plugins/ -# ||24.com//flashplayer/ova-jw.swf$object-subrequest (easylist.txt: 29110) -# ;cue=pre;$object-subrequest (easylist.txt: 5842) -/.*;cue=pre; +# ||dnvod.eu//upload/$object-subrequest (easylistchina.txt: 2671) -#ab2p-block-request-Aaov-Caov-when-R676t -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R676t} \ +#ab2p-block-request-Aaov-Caov-when-R51 +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R51} \ } -# ||2mdn.net^$object-subrequest,third-party,domain=101cargames.com|1025thebull.com|1031iheartaustin.com|1037theq.com|1041beat.com|1053kissfm.com|1057ezrock.com|1067litefm.com|10news.com|1310news.com|247comedy.com|3news.co.nz|49ers.com|610cktb.com|680news.com|700wlw.com|850koa.com|923jackfm.com|92q.com|940winz.com|94hjy.com|99kisscountry.com|abc15.com|abc2news.com|abcactionnews.com|am1300thezone.com|ap.org|atlantafalcons.com|automobilemag.com|automotive.com|azcardinals.com|baltimoreravens.com|baynews9.com|bbc.co.uk|bbc.com|belfasttelegraph.co.uk|bengals.com|bet.com|big1059.com|bigdog1009.ca|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boom973.com|boom997.com|boomphilly.com|box10.com|brisbanetimes.com.au|buccaneers.com|buffalobills.com|bullz-eye.com|calgaryherald.com|caller.com|canada.com|capitalfm.ca|cbslocal.com|cbsnews.com|cbssports.com|channel955.com|chargers.com|chez106.com|chfi.com|chicagobears.com|chicagotribune.com|cj104.com|cjad.com|cjbk.com|clevelandbrowns.com|cnet.com|coast933.com|colts.com|commercialappeal.com|country1011.com|country1043.com|country1067.com|country600.com|courierpress.com|cp24.com|cricketcountry.com|csmonitor.com|ctvnews.ca|dallascowboys.com|denverbroncos.com|detroitlions.com|drive.com.au|earthcam.com|easyrecipesite.com|edmontonjournal.com|egirlgames.net|elvisduran.com|enjoydressup.com|entrepreneur.com|eonline.com|escapegames.com|euronews.com|eveningecho.ie|fm98wjlb.com|foodnetwork.ca|four.co.nz|foxradio.ca|foxsportsradio.com|gamingbolt.com|ghananation.com|giantbomb.com|giants.com|globalnews.ca|globalpost.com|globaltoronto.com|globaltv.com|globaltvbc.com|globaltvcalgary.com|go.com|gorillanation.com|gosanangelo.com|hallelujah1051.com|hellobeautiful.com|heraldsun.com.au|hgtv.ca|hiphopnc.com|hot1041stl.com|hotair.com|hothiphopdetroit.com|hotspotatl.com|houstontexans.com|ibtimes.co.uk|ign.com|iheart.com|independent.ie|independentmail.com|indyhiphop.com|ipowerrichmond.com|jackfm.ca|jaguars.com|jwplatform.com|kase101.com|kcchiefs.com|kcci.com|kcra.com|kdvr.com|kfiam640.com|kgbx.com|khow.com|kiisfm.com|kiss925.com|kissnorthbay.com|kisssoo.com|kisstimmins.com|kitsapsun.com|kitv.com|kjrh.com|knoxnews.com|kogo.com|komonews.com|kshb.com|kwgn.com|kxan.com|kysdc.com|latimes.com|latinchat.com|leaderpost.com|livestream.com|local8now.com|magic96.com|majorleaguegaming.com|metacafe.com|miamidolphins.com|mix923fm.com|moneycontrol.com|montrealgazette.com|motorcyclistonline.com|moviemistakes.com|mtv.ca|myboom1029.com|mycolumbuspower.com|myezrock.com|naplesnews.com|nationalpost.com|nba.com|ndtv.com|neworleanssaints.com|news1130.com|newsinc.com|newsmax.com|newsmaxhealth.com|newsnet5.com|newsone.com|newstalk1010.com|newstalk1130.com|newyorkjets.com|nydailynews.com|nymag.com|oldschoolcincy.com|ottawacitizen.com|packers.com|panthers.com|patriots.com|pcworld.com|philadelphiaeagles.com|play.it|player.screenwavemedia.com|prowrestling.com|q92timmins.com|raaga.com|radio.com|radionowindy.com|raiders.com|rapbasement.com|redding.com|redskins.com|reporternews.com|reuters.com|rollingstone.com|rootsports.com|rottentomatoes.com|seahawks.com|sherdog.com|skynews.com.au|slice.ca|smh.com.au|sploder.com|sportsnet590.ca|sportsnet960.ca|springboardplatform.com|steelers.com|stlouisrams.com|streetfire.net|stuff.co.nz|tcpalm.com|telegraph.co.uk|theage.com.au|theaustralian.com.au|thebeatdfw.com|theboxhouston.com|thedenverchannel.com|thedrocks.com|theindychannel.com|theprovince.com|thestarphoenix.com|tide.com|timescolonist.com|timeslive.co.za|timesrecordnews.com|titansonline.com|totaljerkface.com|townhall.com|tripadvisor.ca|tripadvisor.co.uk|tripadvisor.co.za|tripadvisor.com|tripadvisor.com.au|tripadvisor.com.my|tripadvisor.com.sg|tripadvisor.ie|tripadvisor.in|turnto23.com|tvone.tv|twitch.tv|twitchy.com|usmagazine.com|vancouversun.com|vcstar.com|veetle.com|vice.com|videojug.com|viki.com|vikings.com|virginradio.ca|vzaar.com|wapt.com|washingtonpost.com|washingtontimes.com|wcpo.com|wdfn.com|weather.com|wescfm.com|wgci.com|wibw.com|wikihow.com|windsorstar.com|wiod.com|wiznation.com|wjdx.com|wkyt.com|wor710.com|wptv.com|wsj.com|wxyz.com|wyff4.com|yahoo.com|youtube.com|z100.com|zhiphopcleveland.com (easylistchina+easylist.txt: 34784) -.2mdn.net -# ||2mdn.net^$object-subrequest,third-party,domain=101cargames.com|1025thebull.com|1031iheartaustin.com|1037theq.com|1041beat.com|1053kissfm.com|1057ezrock.com|1067litefm.com|10news.com|1310news.com|247comedy.com|3news.co.nz|49ers.com|610cktb.com|680news.com|700wlw.com|850koa.com|923jackfm.com|92q.com|940winz.com|94hjy.com|99kisscountry.com|abc15.com|abc2news.com|abcactionnews.com|am1300thezone.com|ap.org|atlantafalcons.com|automobilemag.com|automotive.com|azcardinals.com|baltimoreravens.com|baynews9.com|bbc.co.uk|bbc.com|belfasttelegraph.co.uk|bengals.com|bet.com|big1059.com|bigdog1009.ca|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boom973.com|boom997.com|boomphilly.com|box10.com|brisbanetimes.com.au|buccaneers.com|buffalobills.com|bullz-eye.com|calgaryherald.com|caller.com|canada.com|capitalfm.ca|cbslocal.com|cbsnews.com|cbssports.com|channel955.com|chargers.com|chez106.com|chfi.com|chicagobears.com|chicagotribune.com|cj104.com|cjad.com|cjbk.com|clevelandbrowns.com|cnet.com|coast933.com|colts.com|commercialappeal.com|country1011.com|country1043.com|country1067.com|country600.com|courierpress.com|cp24.com|cricketcountry.com|csmonitor.com|ctvnews.ca|dallascowboys.com|denverbroncos.com|detroitlions.com|drive.com.au|earthcam.com|easyrecipesite.com|edmontonjournal.com|egirlgames.net|elvisduran.com|enjoydressup.com|entrepreneur.com|eonline.com|escapegames.com|euronews.com|eveningecho.ie|fm98wjlb.com|foodnetwork.ca|four.co.nz|foxradio.ca|foxsportsradio.com|gamingbolt.com|ghananation.com|giantbomb.com|giants.com|globalnews.ca|globalpost.com|globaltoronto.com|globaltv.com|globaltvbc.com|globaltvcalgary.com|go.com|gorillanation.com|gosanangelo.com|hallelujah1051.com|hellobeautiful.com|heraldsun.com.au|hgtv.ca|hiphopnc.com|hot1041stl.com|hotair.com|hothiphopdetroit.com|hotspotatl.com|houstontexans.com|ibtimes.co.uk|ign.com|iheart.com|independent.ie|independentmail.com|indyhiphop.com|ipowerrichmond.com|jackfm.ca|jaguars.com|jwplatform.com|kase101.com|kcchiefs.com|kcci.com|kcra.com|kdvr.com|kfiam640.com|kgbx.com|khow.com|kiisfm.com|kiss925.com|kissnorthbay.com|kisssoo.com|kisstimmins.com|kitsapsun.com|kitv.com|kjrh.com|knoxnews.com|kogo.com|komonews.com|kshb.com|kwgn.com|kxan.com|kysdc.com|latimes.com|latinchat.com|leaderpost.com|livestream.com|local8now.com|magic96.com|majorleaguegaming.com|metacafe.com|miamidolphins.com|mix923fm.com|moneycontrol.com|montrealgazette.com|motorcyclistonline.com|moviemistakes.com|mtv.ca|myboom1029.com|mycolumbuspower.com|myezrock.com|naplesnews.com|nationalpost.com|nba.com|ndtv.com|neworleanssaints.com|news1130.com|newsinc.com|newsmax.com|newsmaxhealth.com|newsnet5.com|newsone.com|newstalk1010.com|newstalk1130.com|newyorkjets.com|nydailynews.com|nymag.com|oldschoolcincy.com|ottawacitizen.com|packers.com|panthers.com|patriots.com|pcworld.com|philadelphiaeagles.com|play.it|player.screenwavemedia.com|prowrestling.com|q92timmins.com|raaga.com|radio.com|radionowindy.com|raiders.com|rapbasement.com|redding.com|redskins.com|reporternews.com|reuters.com|rollingstone.com|rootsports.com|rottentomatoes.com|seahawks.com|sherdog.com|skynews.com.au|slice.ca|smh.com.au|sploder.com|sportsnet590.ca|sportsnet960.ca|springboardplatform.com|steelers.com|stlouisrams.com|streetfire.net|stuff.co.nz|tcpalm.com|telegraph.co.uk|theage.com.au|theaustralian.com.au|thebeatdfw.com|theboxhouston.com|thedenverchannel.com|thedrocks.com|theindychannel.com|theprovince.com|thestarphoenix.com|tide.com|timescolonist.com|timeslive.co.za|timesrecordnews.com|titansonline.com|totaljerkface.com|townhall.com|tripadvisor.ca|tripadvisor.co.uk|tripadvisor.co.za|tripadvisor.com|tripadvisor.com.au|tripadvisor.com.my|tripadvisor.com.sg|tripadvisor.ie|tripadvisor.in|turnto23.com|tvone.tv|twitch.tv|twitchy.com|usmagazine.com|vancouversun.com|vcstar.com|veetle.com|vice.com|videojug.com|viki.com|vikings.com|virginradio.ca|vzaar.com|wapt.com|washingtonpost.com|washingtontimes.com|wcpo.com|wdfn.com|weather.com|wescfm.com|wgci.com|wibw.com|wikihow.com|windsorstar.com|wiod.com|wiznation.com|wjdx.com|wkyt.com|wor710.com|wptv.com|wsj.com|wxyz.com|wyff4.com|yahoo.com|youtube.com|z100.com|zhiphopcleveland.com (easylist.txt: 24299) -.2mdn.net - -#ab2p-block-request-Aaov-Caov-when-R61 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R61} \ -} -# ||edgedatg.com^*/AdCountdownPlugin.swf$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 42852) -.edgedatg.com/.*/AdCountdownPlugin\.swf -# ||abc.com/abcvideo/*/mp4/*_Promo_$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 42014) -.abc.com/abcvideo/.*/mp4/.*_Promo_ -# ||edgedatg.com^*/AdCountdownPlugin.swf$object-subrequest,domain=abc.go.com (easylist.txt: 32367) -.edgedatg.com/.*/AdCountdownPlugin\.swf -# ||abc.com/abcvideo/*/mp4/*_Promo_$object-subrequest,domain=abc.go.com (easylist.txt: 31529) -.abc.com/abcvideo/.*/mp4/.*_Promo_ - -#ab2p-block-request-Aaov-Caov-when-R62 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R62} \ -} -# ||doubleclick.net/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easylistchina+easylist.txt: 35999) -.doubleclick.net/crossdomain\.xml -# ||doubleclick.net/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easylist.txt: 25514) -.doubleclick.net/crossdomain\.xml - -#ab2p-block-request-Aaov-Caov-when-R94 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R94} \ -} -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 46099) -.youtube.com/yva_video\?adformat= -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com (easylist.txt: 35614) -.youtube.com/yva_video\?adformat= - -#ab2p-block-request-Aaov-Caov-when-R677t -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R677t} \ -} -# ||videoplaza.com^$object-subrequest,third-party,domain=autoexpress.co.uk|evo.co.uk|givemefootball.com|mensfitness.co.uk|mpora.com|tribalfootball.com (easylistchina+easylist.txt: 37928) -.videoplaza.com -# ||videoplaza.com^$object-subrequest,third-party,domain=autoexpress.co.uk|evo.co.uk|givemefootball.com|mensfitness.co.uk|mpora.com|tribalfootball.com (easylist.txt: 27443) -.videoplaza.com - -#ab2p-block-request-Aaov-Caov-when-R121 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R121} \ -} -# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina+easylist.txt: 3167) +# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina.txt: 3149) .hdslb.com/u_user/ -#ab2p-block-request-Aaov-Caov-when-R135 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R135} \ +#ab2p-block-request-Aaov-Caov-when-R129 +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R129} \ } -# ||gpm-digital.com^$object-subrequest,domain=carambatv.ru|goodgame.ru (advblock.txt: 5807) -.gpm-digital.com - -#ab2p-block-request-Aaov-Caov-when-R138 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R138} \ -} -# ||flv.sales.cbs.com^$object-subrequest,domain=cbs.com|cbsnews.com|twitch.tv (easylistchina+easylist.txt: 43057) -.flv.sales.cbs.com -# ||flv.sales.cbs.com^$object-subrequest,domain=cbs.com|cbsnews.com|twitch.tv (easylist.txt: 32572) -.flv.sales.cbs.com - -#ab2p-block-request-Aaov-Caov-when-R151 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R151} \ -} -# ||cnn.com^*/ad_policy.xml$object-subrequest,domain=cnn.com (easylistchina+easylist.txt: 42564) -.cnn.com/.*/ad_policy\.xml -# ||cnn.com^*/ad_policy.xml$object-subrequest,domain=cnn.com (easylist.txt: 32079) -.cnn.com/.*/ad_policy\.xml - -#ab2p-block-request-Aaov-Caov-when-R165 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R165} \ -} -# .adriver.$object-subrequest,domain=cybergame.tv|smotri.com (advblock.txt: 5368) -/.*\.adriver\. -.*.adriver.*. - -#ab2p-block-request-Aaov-Caov-when-R177 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R177} \ -} -# ||objects.tremormedia.com/embed/swf/acudeo.swf$object-subrequest,domain=deluxemusic.tv.staging.ipercast.net (easylistchina+easylist.txt: 44241) -.objects.tremormedia.com/embed/swf/acudeo\.swf -# ||objects.tremormedia.com/embed/swf/acudeo.swf$object-subrequest,domain=deluxemusic.tv.staging.ipercast.net (easylist.txt: 33756) -.objects.tremormedia.com/embed/swf/acudeo\.swf - -#ab2p-block-request-Aaov-Caov-when-R190 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R190} \ -} -# ||adriver.ru/cgi-bin/erle.cgi?$object-subrequest,domain=echo.msk.ru (advblock.txt: 5454) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-block-request-Aaov-Caov-when-R248 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R248} \ -} -# ||video-cdn.abcnews.com^*_ad_$object-subrequest,domain=go.com (easylistchina+easylist.txt: 45411) -.video-cdn.abcnews.com/.*_ad_ -# ||video-cdn.abcnews.com^*_ad_$object-subrequest,domain=go.com (easylist.txt: 34926) -.video-cdn.abcnews.com/.*_ad_ - -#ab2p-block-request-Aaov-Caov-when-R287 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R287} \ -} -# ||dfs.digitalaccess.ru^$object-subrequest,domain=ivi.ru (advblock.txt: 5646) -.dfs.digitalaccess.ru - -#ab2p-block-request-Aaov-Caov-when-R297 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R297} \ -} -# ||v.adfox.ru^$object-subrequest,domain=kg-portal.ru|tvc.ru|tvzvezda.ru|zoomby.ru (advblock.txt: 6531) -.v.adfox.ru - -#ab2p-block-request-Aaov-Caov-when-R302 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R302} \ -} -# ||cdn.kinoprofi.net/vasp$object-subrequest,domain=kinoprofi.net (advblock.txt: 5580) -.cdn.kinoprofi.net/vasp - -#ab2p-block-request-Aaov-Caov-when-R334 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R334} \ -} -# _advideo/$object-subrequest,domain=megogo.net (advblock.txt: 5406) -/.*_advideo/ -# /u_vod/1/*$object-subrequest,domain=megogo.net (advblock.txt: 5399) -/(.*/)?u_vod/1/.* - -#ab2p-block-request-Aaov-Caov-when-R356 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R356} \ -} -# ||amazonaws.com/player.php?vidurl=$object-subrequest,domain=ndtv.com (easylistchina+easylist.txt: 39751) -.amazonaws.com/player\.php\?vidurl= -# ||amazonaws.com/crossdomain.xml$object-subrequest,domain=ndtv.com (easylistchina+easylist.txt: 39744) -.amazonaws.com/crossdomain\.xml -# ||amazonaws.com/player.php?vidurl=$object-subrequest,domain=ndtv.com (easylist.txt: 29266) -.amazonaws.com/player\.php\?vidurl= -# ||amazonaws.com/crossdomain.xml$object-subrequest,domain=ndtv.com (easylist.txt: 29259) -.amazonaws.com/crossdomain\.xml - -#ab2p-block-request-Aaov-Caov-when-R365 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R365} \ -} -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=nfl.com|viki.com (easylistchina+easylist.txt: 45781) -.youtube.com/yva_video\?adformat= -# ||youtube.com/yva_video?adformat=$object-subrequest,domain=nfl.com|viki.com (easylist.txt: 35296) -.youtube.com/yva_video\?adformat= - -#ab2p-block-request-Aaov-Caov-when-R385 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R385} \ -} -# ||teslagear.ru^$object-subrequest,domain=pladform.ru|smotri.com (advblock.txt: 6458) -.teslagear.ru - -#ab2p-block-request-Aaov-Caov-when-R388 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R388} \ -} -# ||adfox.ru^$object-subrequest,domain=player.vgtrk.com (advblock.txt: 5453) -.adfox.ru - -#ab2p-block-request-Aaov-Caov-when-R435 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R435} \ -} -# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina+easylist.txt: 4817) +# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina.txt: 4794) .tietuku.com -#ab2p-block-request-Aaov-Caov-when-R458 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R458} \ +#ab2p-block-request-Aaov-Caov-when-R137 +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R137} \ } -# ||tbs.com^*/ad_policy.xml$object-subrequest,domain=tbs.com (easylistchina+easylist.txt: 44991) -.tbs.com/.*/ad_policy\.xml -# ||tbs.com^*/ad_policy.xml$object-subrequest,domain=tbs.com (easylist.txt: 34506) -.tbs.com/.*/ad_policy\.xml - -#ab2p-block-request-Aaov-Caov-when-R678t -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R678t} \ -} -# ||videoplaza.tv^$object-subrequest,third-party,domain=tv4play.se (easylistchina+easylist.txt: 37931) -.videoplaza.tv -# ||videoplaza.tv^$object-subrequest,third-party,domain=tv4play.se (easylist.txt: 27446) -.videoplaza.tv - -#ab2p-block-request-Aaov-Caov-when-R486 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R486} \ -} -# ||ictv-ic-ec.indieclicktv.com/media/videos/$object-subrequest,domain=twitchfilm.com (easylistchina+easylist.txt: 43424) -.ictv-ic-ec.indieclicktv.com/media/videos/ -# ||ictv-ic-ec.indieclicktv.com/media/videos/$object-subrequest,domain=twitchfilm.com (easylist.txt: 32939) -.ictv-ic-ec.indieclicktv.com/media/videos/ - -#ab2p-block-request-Aaov-Caov-when-R488 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R488} \ -} -# ||itv.com/priority/$object-subrequest,domain=u.tv (easylistchina+easylist.txt: 43575) -.itv.com/priority/ -# ||itv.com/priority/$object-subrequest,domain=u.tv (easylist.txt: 33090) -.itv.com/priority/ - -#ab2p-block-request-Aaov-Caov-when-R499 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R499} \ -} -# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina+easylist.txt: 4475) +# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina.txt: 4465) .sdo.com -#ab2p-block-request-Aaov-Caov-when-R503 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R503} \ -} -# ||moevideo.net/getit/$object-subrequest,domain=videochart.net (easylistchina+easylist.txt: 44008) -.moevideo.net/getit/ -# ||moevideo.net/getit/$object-subrequest,domain=videochart.net (easylist.txt: 33523) -.moevideo.net/getit/ - -#ab2p-block-request-Aaov-Caov-when-R510 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R510} \ -} -# ||video.thestaticvube.com/video/*.mp4$object-subrequest,domain=vube.com (easylistchina+easylist.txt: 45414) -.video.thestaticvube.com/video/.*\.mp4 -# ||video.thestaticvube.com/video/*.mp4$object-subrequest,domain=vube.com (easylist.txt: 34929) -.video.thestaticvube.com/video/.*\.mp4 - -#ab2p-block-request-Aaov-Caov-when-R534 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R534} \ -} -# ||http.atlas.cdn.yimg.com/yamplus/video_*.mp4?$object-subrequest,domain=yahoo.com (easylistchina+easylist.txt: 43384) -.http.atlas.cdn.yimg.com/yamplus/video_.*\.mp4\? -# ||http.atlas.cdn.yimg.com/yamplus/video_*.mp4?$object-subrequest,domain=yahoo.com (easylist.txt: 32899) -.http.atlas.cdn.yimg.com/yamplus/video_.*\.mp4\? - -#ab2p-block-request-Aaov-Caov-when-R549 -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R549} \ -} -# ||v*.zoomby.ru/video/$object-subrequest,domain=zoomby.ru (advblock.txt: 6527) -.v*./.*\.zoomby\.ru/video/ -.v*.zoomby.ru/video/ - -#ab2p-block-request-Aaov-Caov-when-Rn679t -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-Rn679t} \ -} -# ||adm.fwmrm.net/p/msnbc_live/$object-subrequest,third-party,domain=~msnbc.msn.com|~www.nbcnews.com (easylistchina+easylist.txt: 35046) -.adm.fwmrm.net/p/msnbc_live/ -# ||adm.fwmrm.net/p/msnbc_live/$object-subrequest,third-party,domain=~msnbc.msn.com|~www.nbcnews.com (easylist.txt: 24561) -.adm.fwmrm.net/p/msnbc_live/ - -#ab2p-block-request-Aaov-Caov-when-Rnt -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-Rnt} \ -} -# ||delvenetworks.com^*/acudeo.swf$object-subrequest,~third-party (easylistchina+easylist.txt: 42733) -.delvenetworks.com/.*/acudeo\.swf -# ||delvenetworks.com^*/acudeo.swf$object-subrequest,~third-party (easylist.txt: 32248) -.delvenetworks.com/.*/acudeo\.swf - -#ab2p-block-request-Aaov-Caov-when-Rt -{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-Rt} \ -} -# ||longtailvideo.com^*/ltas-$object-subrequest,third-party (easylistchina+easylist.txt: 40542) -.longtailvideo.com/.*/ltas- -# ||longtailvideo.com^*/googima.swf$object-subrequest,third-party (easylistchina+easylist.txt: 40541) -.longtailvideo.com/.*/googima\.swf -# ||longtailvideo.com^*/adawe-$object-subrequest,third-party (easylistchina+easylist.txt: 40539) -.longtailvideo.com/.*/adawe- -# ||googlesyndication.com^*/googlevideoadslibraryas3.swf$object-subrequest,third-party (easylistchina+easylist.txt: 40360) -.googlesyndication.com/.*/googlevideoadslibraryas3\.swf -# ||googlesyndication.com^*/click_to_buy/$object-subrequest,third-party (easylistchina+easylist.txt: 40358) -.googlesyndication.com/.*/click_to_buy/ -# ||videoplaza.tv/proxy/distributor^$object-subrequest,third-party (easylistchina+easylist.txt: 37930) -.videoplaza.tv/proxy/distributor[^\w%.-] -# ||v.fwmrm.net^$object-subrequest,third-party (easylistchina+easylist.txt: 37883) -.v.fwmrm.net -# ||m1.fwmrm.net^$object-subrequest,third-party (easylistchina+easylist.txt: 36765) -.m1.fwmrm.net -# ||adm.fwmrm.net/p/mtvn_live/$object-subrequest,third-party (easylistchina+easylist.txt: 35047) -.adm.fwmrm.net/p/mtvn_live/ -# ||2mdn.net/dot.gif$object-subrequest,third-party (easylistchina+easylist.txt: 34783) -.2mdn.net/dot\.gif -# ||longtailvideo.com^*/ltas-$object-subrequest,third-party (easylist.txt: 30057) -.longtailvideo.com/.*/ltas- -# ||longtailvideo.com^*/googima.swf$object-subrequest,third-party (easylist.txt: 30056) -.longtailvideo.com/.*/googima\.swf -# ||longtailvideo.com^*/adawe-$object-subrequest,third-party (easylist.txt: 30054) -.longtailvideo.com/.*/adawe- -# ||googlesyndication.com^*/googlevideoadslibraryas3.swf$object-subrequest,third-party (easylist.txt: 29875) -.googlesyndication.com/.*/googlevideoadslibraryas3\.swf -# ||googlesyndication.com^*/click_to_buy/$object-subrequest,third-party (easylist.txt: 29873) -.googlesyndication.com/.*/click_to_buy/ -# ||videoplaza.tv/proxy/distributor^$object-subrequest,third-party (easylist.txt: 27445) -.videoplaza.tv/proxy/distributor[^\w%.-] -# ||v.fwmrm.net^$object-subrequest,third-party (easylist.txt: 27398) -.v.fwmrm.net -# ||m1.fwmrm.net^$object-subrequest,third-party (easylist.txt: 26280) -.m1.fwmrm.net -# ||adm.fwmrm.net/p/mtvn_live/$object-subrequest,third-party (easylist.txt: 24562) -.adm.fwmrm.net/p/mtvn_live/ -# ||2mdn.net/dot.gif$object-subrequest,third-party (easylist.txt: 24298) -.2mdn.net/dot\.gif - #ab2p-block-request-Aasv-Casv {+client-header-tagger{ab2p-block-request-Aasv} \ +server-header-tagger{ab2p-block-request-Casv} \ } TAG:^ab2p-block-request-Aasv-Casv$ -# ||krasview.ru/content/$object (easylistchina+easylist.txt: 46585) -.krasview.ru/content/ -# ||julesjordanvideo.com/flash/$object (easylistchina+easylist.txt: 46579) -.julesjordanvideo.com/flash/ -# ||uploadbaz.com^*-728-$object (easylistchina+easylist.txt: 45354) -.uploadbaz.com/.*-728- -# ||nutritionhorizon.com/content/flash_loaders/$object (easylistchina+easylist.txt: 44211) -.nutritionhorizon.com/content/flash_loaders/ -# ||news.com.au/news/vodafone/$object (easylistchina+easylist.txt: 44138) -.news.com.au/news/vodafone/ -# ||herold.at/fs/orgimg/*.swf?baseurl=http%3a%2f%2fwww.*&linktarget=_blank$object (easylistchina+easylist.txt: 43336) -.herold.at/fs/orgimg/.*\.swf\?baseurl=http%3a%2f%2fwww\..*&linktarget=_blank -# ||hentaistream.com/wp-includes/images/$object (easylistchina+easylist.txt: 43331) -.hentaistream.com/wp-includes/images/ -# ||ts.cn^*/site1/$object (easylistchina+easylist.txt: 4862) +# ||ts.cn^*/site1/$object (easylistchina.txt: 4841) .ts.cn/.*/site1/ -# ||tompda.com^$object (easylistchina+easylist.txt: 4853) +# ||tompda.com^$object (easylistchina.txt: 4832) .tompda.com -# ||pic.zol-img.com.cn^$object (easylistchina+easylist.txt: 4202) +# ||pic.zol-img.com.cn^$object (easylistchina.txt: 4192) .pic.zol-img.com.cn -# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina+easylist.txt: 3865) +# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina.txt: 3855) .ly.shangdu.com/lyinfo/zlwz/flash/ -# ||licai18.com/bk/$object (easylistchina+easylist.txt: 3824) +# ||licai18.com/bk/$object (easylistchina.txt: 3815) .licai18.com/bk/ -# ||letvimg.com^*/108x70$object (easylistchina+easylist.txt: 3807) +# ||letvimg.com^*/108x70$object (easylistchina.txt: 3798) .letvimg.com/.*/108x70 -# ||img.taoguba.com.cn/images/$object (easylistchina+easylist.txt: 3452) +# ||img.taoguba.com.cn/images/$object (easylistchina.txt: 3437) .img.taoguba.com.cn/images/ -# ||hi.people.com.cn/NMediaFile/$object (easylistchina+easylist.txt: 3198) +# ||hi.people.com.cn/NMediaFile/$object (easylistchina.txt: 3180) .hi.people.com.cn/NMediaFile/ -# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina+easylist.txt: 2836) +# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina.txt: 2818) .enshi.cn/userfiles/esrb/ -# ||content.xilu.com^$object (easylistchina+easylist.txt: 2542) +# ||content.xilu.com^$object (easylistchina.txt: 2530) .content.xilu.com -# ||cj.qidian.com^$object,subdocument (easylistchina+easylist.txt: 2487) +# ||cj.qidian.com^$object,subdocument (easylistchina.txt: 2475) .cj.qidian.com -# ||cctime.com/UpLoadFile/201$object (easylistchina+easylist.txt: 2390) +# ||cctime.com/UpLoadFile/201$object (easylistchina.txt: 2376) .cctime.com/UpLoadFile/201 -# ||adm*.autoimg.cn^$object (easylistchina+easylist.txt: 2007) +# ||adm*.autoimg.cn^$object (easylistchina.txt: 1996) .adm*./.*\.autoimg\.cn[^\w%.-] .adm*.autoimg.cn -# ||5dmail.net/image/$object (easylistchina+easylist.txt: 1750) +# ||5dmail.net/image/$object (easylistchina.txt: 1741) .5dmail.net/image/ -# ||gardnet.tomsk.ru^$object (advblock.txt: 7046) -.gardnet.tomsk.ru -# ||autotom.ru/img/$object (advblock.txt: 7036) -.autotom.ru/img/ -# torrent*.com/afisha/$object (advblock.txt: 6932) -/.*torrent.*\.com/afisha/ -.*torrent*./.*\.com/afisha/ -.*torrent*.com/afisha/ -# ||mradx.net/img/$object,subdocument (advblock.txt: 6818) -.mradx.net/img/ -# ||谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x300_$object (advblock.txt: 6639) -.谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x300_ -# ||谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x150_$object (advblock.txt: 6638) -.谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎/200x150_ -# ||youhack.ru^$object (advblock.txt: 6620) -.youhack.ru -# ||ymka.tv/images/$object (advblock.txt: 6619) -.ymka.tv/images/ -# ||yarportal.ru^$object (advblock.txt: 6615) -.yarportal.ru -# ||wvclub.net^$object (advblock.txt: 6598) -.wvclub.net -# ||wowjp.net/_styles/$object (advblock.txt: 6596) -.wowjp.net/_styles/ -# ||wowgeek.ru^$object (advblock.txt: 6595) -.wowgeek.ru -# ||wowgaid.ru/wp-content/uploads/$object (advblock.txt: 6594) -.wowgaid.ru/wp-content/uploads/ -# ||vsestroi.com/files/$object (advblock.txt: 6569) -.vsestroi.com/files/ -# ||vseanime.ru/upload/$object (advblock.txt: 6567) -.vseanime.ru/upload/ -# ||vsatke.ru^$object (advblock.txt: 6564) -.vsatke.ru -# ||videodom.net^$object (advblock.txt: 6547) -.videodom.net -# ||vesti.lv/www/images/$object (advblock.txt: 6541) -.vesti.lv/www/images/ -# ||uniongang.tv^$object (advblock.txt: 6520) -.uniongang.tv -# ||ukrlit.vn.ua^$object (advblock.txt: 6518) -.ukrlit.vn.ua -# ||udaff.com/image/$object (advblock.txt: 6515) -.udaff.com/image/ -# ||tvernews.ru/upload/information_system_$object (advblock.txt: 6501) -.tvernews.ru/upload/information_system_ -# ||tverigrad.ru/wp-content/uploads/$object (advblock.txt: 6500) -.tverigrad.ru/wp-content/uploads/ -# ||travelgps.com.ua/cg/$object (advblock.txt: 6486) -.travelgps.com.ua/cg/ -# ||trackitonline.*/pics/$object (advblock.txt: 6485) -.trackitonline.*./(.*/)?pics/ -# ||torrentino.com/assets/$object (advblock.txt: 6479) -.torrentino.com/assets/ -# ||topgir.com.ua/files/$object (advblock.txt: 6472) -.topgir.com.ua/files/ -# ||tods-blog.com.ua/files/$object (advblock.txt: 6471) -.tods-blog.com.ua/files/ -# ||tltorrent.org/images/$object (advblock.txt: 6468) -.tltorrent.org/images/ -# ||telekomza.ru/wp-content/uploads/$object (advblock.txt: 6457) -.telekomza.ru/wp-content/uploads/ -# ||tapochek.net^$object (advblock.txt: 6453) -.tapochek.net -# ||sysadmins.ru^$object (advblock.txt: 6446) -.sysadmins.ru -# ||sympaty.net/wp-content/uploads/$object (advblock.txt: 6444) -.sympaty.net/wp-content/uploads/ -# ||starkosino.ru/images/stories/$object (advblock.txt: 6426) -.starkosino.ru/images/stories/ -# ||sonikelf.ru^$object (advblock.txt: 6414) -.sonikelf.ru -# ||sibinfo.su/files/$object (advblock.txt: 6400) -.sibinfo.su/files/ -# ||rustorka.com^$object (advblock.txt: 6351) -.rustorka.com -# ||rusnovosti.ru/upload/$object (advblock.txt: 6343) -.rusnovosti.ru/upload/ -# ||rosbalt.ru^$object (advblock.txt: 6321) -.rosbalt.ru -# ||roem.ru^$object (advblock.txt: 6318) -.roem.ru -# ||riotpixels.com/i/$object (advblock.txt: 6309) -.riotpixels.com/i/ -# ||rf-cheats.ru/img/$object (advblock.txt: 6304) -.rf-cheats.ru/img/ -# ||rekportal.ru/wp-content/uploads/$object (advblock.txt: 6298) -.rekportal.ru/wp-content/uploads/ -# ||rd-forum.ru^$object (advblock.txt: 6291) -.rd-forum.ru -# ||programmersforum.ru^$object (advblock.txt: 6262) -.programmersforum.ru -# ||proelectro.ru/files/$object (advblock.txt: 6261) -.proelectro.ru/files/ -# ||pro100news.info/wp-content/uploads/$object (advblock.txt: 6257) -.pro100news.info/wp-content/uploads/ -# ||priorovod.ru/button/$object (advblock.txt: 6255) -.priorovod.ru/button/ -# ||prestige-gaming.ru/styles/hestia/theme/images/$object (advblock.txt: 6253) -.prestige-gaming.ru/styles/hestia/theme/images/ -# ||platon.kz^$object (advblock.txt: 6232) -.platon.kz -# ||overclockers.ru/images/$object (advblock.txt: 6191) -.overclockers.ru/images/ -# ||osvete.ru/files/$object (advblock.txt: 6188) -.osvete.ru/files/ -# ||opensharing.org^$object (advblock.txt: 6182) -.opensharing.org -# ||omskmama.ru^*/images/$object (advblock.txt: 6168) -.omskmama.ru/.*/images/ -# ||oldgames.ru/netcat_files/Image/$object (advblock.txt: 6164) -.oldgames.ru/netcat_files/Image/ -# ||objectiv.tv/templates/$object (advblock.txt: 6159) -.objectiv.tv/templates/ -# ||notebook-center.ru^$object (advblock.txt: 6144) -.notebook-center.ru -# ||noob-club.ru^$object (advblock.txt: 6141) -.noob-club.ru -# ||nnportal.org/nntt/$object (advblock.txt: 6136) -.nnportal.org/nntt/ -# ||nn.by/photos/$object (advblock.txt: 6132) -.nn.by/photos/ -# ||nn.by/images/$object (advblock.txt: 6131) -.nn.by/images/ -# ||ng.by/bimages/$object (advblock.txt: 6128) -.ng.by/bimages/ -# ||new-sebastopol.com/resources/$object (advblock.txt: 6123) -.new-sebastopol.com/resources/ -# ||needforvid.com/images/$object (advblock.txt: 6118) -.needforvid.com/images/ -# ||multmer.org^$object (advblock.txt: 6096) -.multmer.org -# ||moyareklama.ru/common/images/$object (advblock.txt: 6090) -.moyareklama.ru/common/images/ -# ||motorshop.kz/images/$object (advblock.txt: 6088) -.motorshop.kz/images/ -# ||mobile-files.ru^$object (advblock.txt: 6071) -.mobile-files.ru -# ||mmohelper.ru^$object (advblock.txt: 6061) -.mmohelper.ru -# ||megatorrents.*/forum/$object (advblock.txt: 6039) -.megatorrents.*./(.*/)?forum/ -# ||medlux.com.ua^$object (advblock.txt: 6028) -.medlux.com.ua -# ||lovekinozal.ru^$object (advblock.txt: 6008) -.lovekinozal.ru -# ||livefootball.ws^$object (advblock.txt: 5993) -.livefootball.ws -# ||liveangarsk.ru/files/$object (advblock.txt: 5991) -.liveangarsk.ru/files/ -# ||lib.rus.ec/sites/default/files/$object (advblock.txt: 5987) -.lib.rus.ec/sites/default/files/ -# ||kinomir.net^$object (advblock.txt: 5944) -.kinomir.net -# ||interfax.by/files/$object (advblock.txt: 5887) -.interfax.by/files/ -# ||inspired.com.ua^$object (advblock.txt: 5886) -.inspired.com.ua -# ||inmoment.ru/img/$object (advblock.txt: 5883) -.inmoment.ru/img/ -# ||inflora.ru^$object (advblock.txt: 5879) -.inflora.ru -# ||iarex.ru/insimgs/$object (advblock.txt: 5857) -.iarex.ru/insimgs/ -# ||htmlbook.ru/sites/default/files/$object (advblock.txt: 5851) -.htmlbook.ru/sites/default/files/ -# ||htmlbook.ru/files/$object (advblock.txt: 5850) -.htmlbook.ru/files/ -# ||hottabych.net^$object (advblock.txt: 5846) -.hottabych.net -# ||hdtv.ru/resources/$object (advblock.txt: 5830) -.hdtv.ru/resources/ -# ||hdserials.tv^$object (advblock.txt: 5828) -.hdserials.tv -# ||hctorpedo.ru/files/$object (advblock.txt: 5822) -.hctorpedo.ru/files/ -# ||guru.ua/white_menu/$object (advblock.txt: 5817) -.guru.ua/white_menu/ -# ||gubkinskiy.com/images/$object (advblock.txt: 5812) -.gubkinskiy.com/images/ -# ||grani.ru/files/$object (advblock.txt: 5809) -.grani.ru/files/ -# ||gorod55.ru/data/$object (advblock.txt: 5801) -.gorod55.ru/data/ -# ||good73.net^$object (advblock.txt: 5794) -.good73.net -# ||golovne.net^$object (advblock.txt: 5793) -.golovne.net -# ||getalbums.ru^$object (advblock.txt: 5780) -.getalbums.ru -# ||games-archive.net^$object (advblock.txt: 5767) -.games-archive.net -# ||gamemag.ru/img/$object (advblock.txt: 5761) -.gamemag.ru/img/ -# ||fvhm.ru^$object (advblock.txt: 5758) -.fvhm.ru -# ||fullgames.ru^$object (advblock.txt: 5756) -.fullgames.ru -# ||fsell.biz/images/$object (advblock.txt: 5754) -.fsell.biz/images/ -# ||fotooplata.ru^$object (advblock.txt: 5748) -.fotooplata.ru -# ||forum.mista.ru/css/$object (advblock.txt: 5738) -.forum.mista.ru/css/ -# ||file-tracker.net/images/$object (advblock.txt: 5710) -.file-tracker.net/images/ -# ||fermer.ru/files/$object (advblock.txt: 5708) -.fermer.ru/files/ -# ||fcdesna.3dn.ru^$object (advblock.txt: 5704) -.fcdesna.3dn.ru -# ||fast-torrent.ru/media/$object (advblock.txt: 5698) -.fast-torrent.ru/media/ -# ||ekabu.ru/cache/$object,subdocument (advblock.txt: 5680) -.ekabu.ru/cache/ -# ||eg.ru/upfile/picture/$object (advblock.txt: 5678) -.eg.ru/upfile/picture/ -# ||dwg.ru/img/$object (advblock.txt: 5673) -.dwg.ru/img/ -# ||delovoigorod.ru/images/loader$object (advblock.txt: 5638) -.delovoigorod.ru/images/loader -# ||cy-pr.com/images/$object (advblock.txt: 5628) -.cy-pr.com/images/ -# ||comnews.ru/ds_comnews/files/$object (advblock.txt: 5616) -.comnews.ru/ds_comnews/files/ -# ||clubvolvo.ru/crash/$object (advblock.txt: 5606) -.clubvolvo.ru/crash/ -# ||china-iphone.ru/images/$object (advblock.txt: 5591) -.china-iphone.ru/images/ -# ||cheklab.ru^$object (advblock.txt: 5587) -.cheklab.ru -# ||center.bz^$object (advblock.txt: 5584) -.center.bz -# ||bw.myjob.by^$object (advblock.txt: 5576) -.bw.myjob.by -# ||bikepost.ru^$object (advblock.txt: 5549) -.bikepost.ru -# ||belta.by/newbfl/$object (advblock.txt: 5537) -.belta.by/newbfl/ -# ||belta.by/images/storage/banners/$object (advblock.txt: 5536) -.belta.by/images/storage/banners/ -# ||baikal24.ru/images/$object (advblock.txt: 5526) -.baikal24.ru/images/ -# ||babysaratov.ru/img/$object (advblock.txt: 5525) -.babysaratov.ru/img/ -# ||athlete.ru/pic/$object (advblock.txt: 5514) -.athlete.ru/pic/ -# ||antistarforce.com^$object (advblock.txt: 5499) -.antistarforce.com -# ||anidub.com/uploads/$object (advblock.txt: 5480) -.anidub.com/uploads/ -# ||altai4u.com/wp-content/themes/$object (advblock.txt: 5475) -.altai4u.com/wp-content/themes/ -# ||allmoldova.com/uimg/txtuimg/$object (advblock.txt: 5471) -.allmoldova.com/uimg/txtuimg/ -# ||allboxing.ru/files/$object (advblock.txt: 5465) -.allboxing.ru/files/ -# ||agronews.ru/images/$object (advblock.txt: 5457) -.agronews.ru/images/ -# ||7sl.ru/uploads/$object (advblock.txt: 5441) -.7sl.ru/uploads/ -# ||13rus.ru/*/$object (advblock.txt: 5411) -.13rus.ru/.*/ -# //www.vsevam.ru^$object (advblock.txt: 5377) -www.vsevam.ru -# ||bw.pronto.ru/img/$object (advblock.txt: 2067) -.bw.pronto.ru/img/ -# //89.108.121.205^$object (advblock.txt: 1863) -89.108.121.205 -# //89.108.109.12^$object (advblock.txt: 1862) -89.108.109.12 -# //213.151.2.195/storage/*$object (advblock.txt: 1836) -213.151.2.195/storage/.* -# ||pressball.by/files/$object (advblock.txt: 1375) -.pressball.by/files/ -# ||pcmag.ru/upload/$object (advblock.txt: 1339) -.pcmag.ru/upload/ -# ||parimatch.com/jss/$object (advblock.txt: 1318) -.parimatch.com/jss/ -# ||novosti.dn.ua^$object (advblock.txt: 1296) -.novosti.dn.ua -# ||megaline.kz/images/$object (advblock.txt: 1220) -.megaline.kz/images/ -# ||kvasu.net/*/$object (advblock.txt: 1150) -.kvasu.net/.*/ -# ||kv.by/img/$object (advblock.txt: 1149) -.kv.by/img/ -# ||drweb.com/pix/$object (advblock.txt: 944) -.drweb.com/pix/ -# ||bambun.ru/images/$object (advblock.txt: 831) -.bambun.ru/images/ -# /bannerz.$object (advblock.txt: 402) -/(.*/)?bannerz\. -bannerz.*. -# /banner_$object (advblock.txt: 396) -/(.*/)?banner_ -# /ad_click/*$object (advblock.txt: 365) -/(.*/)?ad_click/.* -# ||krasview.ru/content/$object (easylist.txt: 36100) -.krasview.ru/content/ -# ||julesjordanvideo.com/flash/$object (easylist.txt: 36094) -.julesjordanvideo.com/flash/ -# ||uploadbaz.com^*-728-$object (easylist.txt: 34869) -.uploadbaz.com/.*-728- -# ||nutritionhorizon.com/content/flash_loaders/$object (easylist.txt: 33726) -.nutritionhorizon.com/content/flash_loaders/ -# ||news.com.au/news/vodafone/$object (easylist.txt: 33653) -.news.com.au/news/vodafone/ -# ||herold.at/fs/orgimg/*.swf?baseurl=http%3a%2f%2fwww.*&linktarget=_blank$object (easylist.txt: 32851) -.herold.at/fs/orgimg/.*\.swf\?baseurl=http%3a%2f%2fwww\..*&linktarget=_blank -# ||hentaistream.com/wp-includes/images/$object (easylist.txt: 32846) -.hentaistream.com/wp-includes/images/ -#ab2p-block-request-Aasv-Casv-when-R26 -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R26} \ +#ab2p-block-request-Aasv-Casv-when-R50 +{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R50} \ } -# /uploads/*$object,domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7069) -/(.*/)?uploads/.* -# /img/*$object,domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7067) -/(.*/)?img/.* - -#ab2p-block-request-Aasv-Casv-when-R120 -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R120} \ -} -# ||acg.tv^$object,domain=bilibili.com (easylistchina+easylist.txt: 1991) +# ||acg.tv^$object,domain=bilibili.com (easylistchina.txt: 1979) .acg.tv -#ab2p-block-request-Aasv-Casv-when-R132 -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R132} \ +#ab2p-block-request-Aasv-Casv-when-R145 +{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R145} \ } -# ||amazonaws.com/cdn/ipfc/$object,domain=caclubindia.com (easylistchina+easylist.txt: 42139) -.amazonaws.com/cdn/ipfc/ -# ||amazonaws.com/cdn/ipfc/$object,domain=caclubindia.com (easylist.txt: 31654) -.amazonaws.com/cdn/ipfc/ - -#ab2p-block-request-Aasv-Casv-when-R229 -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R229} \ -} -# -torrent.*/forum/$object,domain=free-torrent.org|free-torrents.org|game-torrent.info (advblock.txt: 5366) -/.*-torrent\..*/forum/ -.*-torrent.*./(.*/)?forum/ - -#ab2p-block-request-Aasv-Casv-when-R274 -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R274} \ -} -# /forum/images/*$object,domain=hvosty.ru|vsehvosty.ru (advblock.txt: 5383) -/(.*/)?forum/images/.* - -#ab2p-block-request-Aasv-Casv-when-R680t -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R680t} \ -} -# $third-party,object,subdocument,domain=ints.rusfolder.com|ints.rusfolder.net|piccash.net|pornolab.net (advblock.txt: 5364) - - -#ab2p-block-request-Aasv-Casv-when-R418 -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R418} \ -} -# //94.198.53.135^$object,subdocument,domain=rutracker.org (advblock.txt: 5376) -94.198.53.135 - -#ab2p-block-request-Aasv-Casv-when-R526 -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R526} \ -} -# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina+easylist.txt: 4074) +# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina.txt: 4065) .nmgnews.com.cn/swf/0/10/ -#ab2p-block-request-Aasv-Casv-when-Rt -{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-Rt} \ -} -# ||galleries.videosz.com^$object,third-party (easylistchina+easylist.txt: 41554) -.galleries.videosz.com -# ||gawkerassets.com/assets/marquee/$object,third-party (easylistchina+easylist.txt: 40316) -.gawkerassets.com/assets/marquee/ -# ||qip.ru/i/$third-party,object (advblock.txt: 6281) -.qip.ru/i/ -# ||jenugolok.com^$third-party,object (advblock.txt: 1111) -.jenugolok.com -# ||img.carnage.ru/i/main/$third-party,object (advblock.txt: 1078) -.img.carnage.ru/i/main/ -# ||dnr.kz/test/$third-party,object (advblock.txt: 935) -.dnr.kz/test/ -# ||galleries.videosz.com^$object,third-party (easylist.txt: 31069) -.galleries.videosz.com -# ||gawkerassets.com/assets/marquee/$object,third-party (easylist.txt: 29831) -.gawkerassets.com/assets/marquee/ - -#ab2p-block-request-Ac-Cc -{+client-header-tagger{ab2p-block-request-Ac} \ - +server-header-tagger{ab2p-block-request-Cc} \ -} -# ||videogamer.com^*/css/skins/$stylesheet (easylistchina+easylist.txt: 45429) -.videogamer.com/.*/css/skins/ -# ||kinomania.ru/brand/$stylesheet (advblock.txt: 5941) -.kinomania.ru/brand/ -# ||videogamer.com^*/css/skins/$stylesheet (easylist.txt: 34944) -.videogamer.com/.*/css/skins/ - -#ab2p-block-request-Acj-Ccj -{+client-header-tagger{ab2p-block-request-Acj} \ - +server-header-tagger{ab2p-block-request-Ccj} \ -} -# /overture.$script,stylesheet (easylistchina+easylist.txt: 15178) -/(.*/)?overture\. -overture.*. -# ||meta.ua/*/partn.$script,stylesheet (advblock.txt: 1225) -.meta.ua/.*/partn\. -# /overture.$script,stylesheet (easylist.txt: 4693) -/(.*/)?overture\. -overture.*. - #ab2p-block-request-Ai-Ci {+client-header-tagger{ab2p-block-request-Ai} \ +server-header-tagger{ab2p-block-request-Ci} \ } TAG:^ab2p-block-request-Ai-Ci$ -# ||trovaporno.com/image/incontri$image (easylistchina+easylist.txt: 46941) -.trovaporno.com/image/incontri -# ||starcelebs.com/logos/$image (easylistchina+easylist.txt: 46901) -.starcelebs.com/logos/ -# ||pornbb.org/images/rotation/$image (easylistchina+easylist.txt: 46747) -.pornbb.org/images/rotation/ -# ||hentai-foundry.com/themes/*/add$image (easylistchina+easylist.txt: 46490) -.hentai-foundry.com/themes/.*/add -# ||freeones.com/images/freeones/sidewidget/$image (easylistchina+easylist.txt: 46429) -.freeones.com/images/freeones/sidewidget/ -# ||joindota.com/img/*MR_$image (easylistchina+easylist.txt: 46084) -.joindota.com/img/.*MR_ -# ||joindota.com/img/*LB_$image (easylistchina+easylist.txt: 46083) -.joindota.com/img/.*LB_ -# ||www.infowars.com/*.png$image (easylistchina+easylist.txt: 46067) -.www.infowars.com/.*\.png -# ||thegatewaypundit.com^*.png$image (easylistchina+easylist.txt: 46066) -.thegatewaypundit.com/.*\.png -# ||yimg.com^*/fairfax/$image (easylistchina+easylist.txt: 45749) -.yimg.com/.*/fairfax/ -# ||wowhead.com/uploads/skins/$image (easylistchina+easylist.txt: 45652) -.wowhead.com/uploads/skins/ -# ||wallpaper.com/themes/takeovers/$image (easylistchina+easylist.txt: 45496) -.wallpaper.com/themes/takeovers/ -# ||unblockedpiratebay.com/external/$image (easylistchina+easylist.txt: 45340) -.unblockedpiratebay.com/external/ -# ||unawave.de/templates/unawave/a/$image (easylistchina+easylist.txt: 45339) -.unawave.de/templates/unawave/a/ -# ||unawave.de/medien/wbwso-$image (easylistchina+easylist.txt: 45338) -.unawave.de/medien/wbwso- -# ||unawave.de/medien/ama/$image (easylistchina+easylist.txt: 45337) -.unawave.de/medien/ama/ -# ||unawave.de/medien/a/w-ama-$image (easylistchina+easylist.txt: 45336) -.unawave.de/medien/a/w-ama- -# ||ultimate-guitar.com/bgd/main_$image (easylistchina+easylist.txt: 45327) -.ultimate-guitar.com/bgd/main_ -# ||tsatic-cdn.net/takeovers/$image (easylistchina+easylist.txt: 45265) -.tsatic-cdn.net/takeovers/ -# ||sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/$image (easylistchina+easylist.txt: 44965) -.sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/ -# ||spaceweather.com/abdfeeter/$image (easylistchina+easylist.txt: 44855) -.spaceweather.com/abdfeeter/ -# ||smwcentral.net/html/$image (easylistchina+easylist.txt: 44805) -.smwcentral.net/html/ -# ||sharkscope.com/images/verts/$image (easylistchina+easylist.txt: 44739) -.sharkscope.com/images/verts/ -# ||sectools.org/shared/images/p/$image (easylistchina+easylist.txt: 44703) -.sectools.org/shared/images/p/ -# ||seclists.org/shared/images/p/$image (easylistchina+easylist.txt: 44702) -.seclists.org/shared/images/p/ -# ||rapidshare.com/promo/$image (easylistchina+easylist.txt: 44550) -.rapidshare.com/promo/ -# ||projectorcentral.com/bblaster.cfm?$image (easylistchina+easylist.txt: 44471) -.projectorcentral.com/bblaster\.cfm\? -# ||playgroundmag.net^*/wallpaperpgesp_$image (easylistchina+easylist.txt: 44390) -.playgroundmag.net/.*/wallpaperpgesp_ -# ||petri.co.il/media/$image (easylistchina+easylist.txt: 44342) -.petri.co.il/media/ -# ||pan2.ephotozine.com^$image (easylistchina+easylist.txt: 44310) -.pan2.ephotozine.com -# ||p2pnet.net/images/$image (easylistchina+easylist.txt: 44304) -.p2pnet.net/images/ -# ||nmap.org/shared/images/p/$image (easylistchina+easylist.txt: 44180) -.nmap.org/shared/images/p/ -# ||newstatesman.com/sites/all/themes/*_1280x2000.$image (easylistchina+easylist.txt: 44150) -.newstatesman.com/sites/all/themes/.*_1280x2000\. -# ||news.com.au^*/public/img/p/$image (easylistchina+easylist.txt: 44143) -.news.com.au/.*/public/img/p/ -# ||news.com.au^*-promo$image (easylistchina+easylist.txt: 44139) -.news.com.au/.*-promo -# ||nairaland.com/dynamic/$image (easylistchina+easylist.txt: 44087) -.nairaland.com/dynamic/ -# ||nairaland.com/contents/$image (easylistchina+easylist.txt: 44086) -.nairaland.com/contents/ -# ||mtvnimages.com/images/skins/$image (easylistchina+easylist.txt: 44046) -.mtvnimages.com/images/skins/ -# ||mfcdn.net/media/game321/$image (easylistchina+easylist.txt: 43964) -.mfcdn.net/media/game321/ -# ||madamenoire.com/wp-content/*_Reskin-$image (easylistchina+easylist.txt: 43843) -.madamenoire.com/wp-content/.*_Reskin- -# ||l.yimg.com/a/i/*_wallpaper$image (easylistchina+easylist.txt: 43715) -.l.yimg.com/a/i/.*_wallpaper -# ||kron.com/uploads/*-ad-$image (easylistchina+easylist.txt: 43700) -.kron.com/uploads/.*-ad- -# ||joindota.com/wp-content/*.png$image (easylistchina+easylist.txt: 43609) -.joindota.com/wp-content/.*\.png -# ||idg.com.au/images/*_promo$image (easylistchina+easylist.txt: 43430) -.idg.com.au/images/.*_promo -# ||hdtvtest.co.uk/image/partner/$image (easylistchina+easylist.txt: 43318) -.hdtvtest.co.uk/image/partner/ -# ||gigaom2.files.wordpress.com^*-center-top$image (easylistchina+easylist.txt: 43221) -.gigaom2.files.wordpress.com/.*-center-top -# ||foxsports.com/component/*_wallpaper_$image (easylistchina+easylist.txt: 43078) -.foxsports.com/component/.*_wallpaper_ -# ||ebaystatic.com/aw/signin/*_wallpaper_$image (easylistchina+easylist.txt: 42837) -.ebaystatic.com/aw/signin/.*_wallpaper_ -# ||devshed.com/images/backgrounds/$image (easylistchina+easylist.txt: 42750) -.devshed.com/images/backgrounds/ -# ||cinemablend.com/templates/tpl/reskin/$image (easylistchina+easylist.txt: 42527) -.cinemablend.com/templates/tpl/reskin/ -# ||channel4.com/bips/*/brand/$image (easylistchina+easylist.txt: 42509) -.channel4.com/bips/.*/brand/ -# ||channel4.com/assets/programmes/images/originals/$image (easylistchina+easylist.txt: 42508) -.channel4.com/assets/programmes/images/originals/ -# ||cafemomstatic.com/images/background/$image (easylistchina+easylist.txt: 42438) -.cafemomstatic.com/images/background/ -# ||broadbandgenie.co.uk/img/talktalk/$image (easylistchina+easylist.txt: 42395) -.broadbandgenie.co.uk/img/talktalk/ -# ||banners.friday-ad.co.uk/hpbanneruploads/$image (easylistchina+easylist.txt: 42289) -.banners.friday-ad.co.uk/hpbanneruploads/ -# ||animenewsnetwork.com/stylesheets/*skin$image (easylistchina+easylist.txt: 42176) -.animenewsnetwork.com/stylesheets/.*skin -# ||adverts.itv.com^$image (easylistchina+easylist.txt: 42089) -.adverts.itv.com -# ||4fuckr.com/g/$image (easylistchina+easylist.txt: 41975) -.4fuckr.com/g/ -# ||thrixxx.com/affiliates/$image (easylistchina+easylist.txt: 41751) -.thrixxx.com/affiliates/ -# ||postaffiliatepro.com^*/banners/$image (easylistchina+easylist.txt: 40779) -.postaffiliatepro.com/.*/banners/ -# ||fenixm.com/actions/*Skin*.$image (easylistchina+easylist.txt: 40252) -.fenixm.com/actions/.*Skin.*\. -# ||burstnet.akadns.net^$image (easylistchina+easylist.txt: 39897) -.burstnet.akadns.net -# /totemcash/*$image (easylistchina+easylist.txt: 16016) -/(.*/)?totemcash/.* -# ||webkaka.com*/click/$image (easylistchina+easylist.txt: 5026) +# ||yjhas.net^$image (easylistchina.txt: 5250) +.yjhas.net +# ||webkaka.com*/click/$image (easylistchina.txt: 5003) .webkaka.com*./(.*/)?click/ -# ||vpser.b0.upaiyun.com^$image (easylistchina+easylist.txt: 4989) +# ||vpser.b0.upaiyun.com^$image (easylistchina.txt: 4966) .vpser.b0.upaiyun.com -# ||tiantian.tv/sda/$image (easylistchina+easylist.txt: 4807) +# ||tiantian.tv/sda/$image (easylistchina.txt: 4785) .tiantian.tv/sda/ -# ||spbonow.com/UploadFiles/20$image (easylistchina+easylist.txt: 4664) +# ||spbonow.com/UploadFiles/20$image (easylistchina.txt: 4646) .spbonow.com/UploadFiles/20 -# ||share.dmhy.*/*?$image (easylistchina+easylist.txt: 4514) +# ||share.dmhy.*/*?$image (easylistchina.txt: 4504) .share.dmhy.*./(.*/)?.*\? -# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina+easylist.txt: 4419) +# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina.txt: 4409) .ruanjianxiaozi.qiniudn.com -# ||mycodes.net/js/$image (easylistchina+easylist.txt: 4008) +# ||mycodes.net/js/$image (easylistchina.txt: 3996) .mycodes.net/js/ -# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina+easylist.txt: 3886) +# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina.txt: 3876) .m.tiebaimg.com/timg\?wapp[^\w%.-].*imgtype=0 -# ||kcjc.net/960$image (easylistchina+easylist.txt: 3710) +# ||kcjc.net/960$image (easylistchina.txt: 3702) .kcjc.net/960 -# ||k618.cn/gg$image (easylistchina+easylist.txt: 3699) +# ||k618.cn/gg$image (easylistchina.txt: 3691) .k618.cn/gg -# ||info.btc123.com/images/antiBlock/$image (easylistchina+easylist.txt: 3489) +# ||info.btc123.com/images/antiBlock/$image (easylistchina.txt: 3474) .info.btc123.com/images/antiBlock/ -# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina+easylist.txt: 3477) +# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina.txt: 3462) .imgsrc.baidu.com/tieba/pic/item/ -# ||imgf.gamersky.com^$image (easylistchina+easylist.txt: 3469) +# ||imgf.gamersky.com^$image (easylistchina.txt: 3454) .imgf.gamersky.com -# ||img.6park.com/img/$image (easylistchina+easylist.txt: 3439) +# ||img.6park.com/img/$image (easylistchina.txt: 3424) .img.6park.com/img/ -# ||files.nyaa.se/a*.$image (easylistchina+easylist.txt: 2896) +# ||files.nyaa.se/a*.$image (easylistchina.txt: 2878) .files.nyaa.se/a.*\. -# ||files.nyaa.eu/a*.$image (easylistchina+easylist.txt: 2895) +# ||files.nyaa.eu/a*.$image (easylistchina.txt: 2877) .files.nyaa.eu/a.*\. -# ||dnwx.com*/ad$image (easylistchina+easylist.txt: 2692) +# ||dnwx.com*/ad$image (easylistchina.txt: 2674) .dnwx.com*./(.*/)?ad -# ||p0y.cn^$image (easylistchina+easylist.txt: 880) +# ||p0y.cn^$image (easylistchina.txt: 899) .p0y.cn -# torrent*.com/afisha/*x$image (advblock.txt: 6934) -/.*torrent.*\.com/afisha/.*x -.*torrent*./.*\.com/afisha/.*x -.*torrent*.com/afisha/.*x -# torrent*.com/afisha/*_$image (advblock.txt: 6933) -/.*torrent.*\.com/afisha/.*_ -.*torrent*./.*\.com/afisha/.*_ -.*torrent*.com/afisha/.*_ -# ||uff.uz/images/banners/$image (advblock.txt: 6516) -.uff.uz/images/banners/ -# ||tvzavr.ru/cache/brand/$image (advblock.txt: 6506) -.tvzavr.ru/cache/brand/ -# ||static.oper.ru/images/*_top$image (advblock.txt: 6428) -.static.oper.ru/images/.*_top -# ||rgfootball.net/upload/$image (advblock.txt: 6306) -.rgfootball.net/upload/ -# ||playground.ru/download/bg$image (advblock.txt: 6234) -.playground.ru/download/bg -# ||pixelbrush.ru/pixelbrand$image (advblock.txt: 6225) -.pixelbrush.ru/pixelbrand -# ||igromania.ru/upload/iblock/*/*attract_wallpaper$image (advblock.txt: 5864) -.igromania.ru/upload/iblock/.*/.*attract_wallpaper -# ||astromeridian.ru/assets/images/*/*/brend.$image (advblock.txt: 5512) -.astromeridian.ru/assets/images/.*/.*/brend\. -# ||all-episodes.com/br$image (advblock.txt: 5464) -.all-episodes.com/br -# ||ulitka.ru/logo$image (advblock.txt: 1648) -.ulitka.ru/logo -# ||hypo.ufanet.ru^$image (advblock.txt: 1069) -.hypo.ufanet.ru -# /mirmaek/*$image (advblock.txt: 496) -/(.*/)?mirmaek/.* -# ||trovaporno.com/image/incontri$image (easylist.txt: 36456) -.trovaporno.com/image/incontri -# ||starcelebs.com/logos/$image (easylist.txt: 36416) -.starcelebs.com/logos/ -# ||pornbb.org/images/rotation/$image (easylist.txt: 36262) -.pornbb.org/images/rotation/ -# ||hentai-foundry.com/themes/*/add$image (easylist.txt: 36005) -.hentai-foundry.com/themes/.*/add -# ||freeones.com/images/freeones/sidewidget/$image (easylist.txt: 35944) -.freeones.com/images/freeones/sidewidget/ -# ||joindota.com/img/*MR_$image (easylist.txt: 35599) -.joindota.com/img/.*MR_ -# ||joindota.com/img/*LB_$image (easylist.txt: 35598) -.joindota.com/img/.*LB_ -# ||www.infowars.com/*.png$image (easylist.txt: 35582) -.www.infowars.com/.*\.png -# ||thegatewaypundit.com^*.png$image (easylist.txt: 35581) -.thegatewaypundit.com/.*\.png -# ||yimg.com^*/fairfax/$image (easylist.txt: 35264) -.yimg.com/.*/fairfax/ -# ||wowhead.com/uploads/skins/$image (easylist.txt: 35167) -.wowhead.com/uploads/skins/ -# ||wallpaper.com/themes/takeovers/$image (easylist.txt: 35011) -.wallpaper.com/themes/takeovers/ -# ||unblockedpiratebay.com/external/$image (easylist.txt: 34855) -.unblockedpiratebay.com/external/ -# ||unawave.de/templates/unawave/a/$image (easylist.txt: 34854) -.unawave.de/templates/unawave/a/ -# ||unawave.de/medien/wbwso-$image (easylist.txt: 34853) -.unawave.de/medien/wbwso- -# ||unawave.de/medien/ama/$image (easylist.txt: 34852) -.unawave.de/medien/ama/ -# ||unawave.de/medien/a/w-ama-$image (easylist.txt: 34851) -.unawave.de/medien/a/w-ama- -# ||ultimate-guitar.com/bgd/main_$image (easylist.txt: 34842) -.ultimate-guitar.com/bgd/main_ -# ||tsatic-cdn.net/takeovers/$image (easylist.txt: 34780) -.tsatic-cdn.net/takeovers/ -# ||sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/$image (easylist.txt: 34480) -.sydneyolympicfc.com/admin/media_manager/media/mm_magic_display/ -# ||spaceweather.com/abdfeeter/$image (easylist.txt: 34370) -.spaceweather.com/abdfeeter/ -# ||smwcentral.net/html/$image (easylist.txt: 34320) -.smwcentral.net/html/ -# ||sharkscope.com/images/verts/$image (easylist.txt: 34254) -.sharkscope.com/images/verts/ -# ||sectools.org/shared/images/p/$image (easylist.txt: 34218) -.sectools.org/shared/images/p/ -# ||seclists.org/shared/images/p/$image (easylist.txt: 34217) -.seclists.org/shared/images/p/ -# ||rapidshare.com/promo/$image (easylist.txt: 34065) -.rapidshare.com/promo/ -# ||projectorcentral.com/bblaster.cfm?$image (easylist.txt: 33986) -.projectorcentral.com/bblaster\.cfm\? -# ||playgroundmag.net^*/wallpaperpgesp_$image (easylist.txt: 33905) -.playgroundmag.net/.*/wallpaperpgesp_ -# ||petri.co.il/media/$image (easylist.txt: 33857) -.petri.co.il/media/ -# ||pan2.ephotozine.com^$image (easylist.txt: 33825) -.pan2.ephotozine.com -# ||p2pnet.net/images/$image (easylist.txt: 33819) -.p2pnet.net/images/ -# ||nmap.org/shared/images/p/$image (easylist.txt: 33695) -.nmap.org/shared/images/p/ -# ||newstatesman.com/sites/all/themes/*_1280x2000.$image (easylist.txt: 33665) -.newstatesman.com/sites/all/themes/.*_1280x2000\. -# ||news.com.au^*/public/img/p/$image (easylist.txt: 33658) -.news.com.au/.*/public/img/p/ -# ||news.com.au^*-promo$image (easylist.txt: 33654) -.news.com.au/.*-promo -# ||nairaland.com/dynamic/$image (easylist.txt: 33602) -.nairaland.com/dynamic/ -# ||nairaland.com/contents/$image (easylist.txt: 33601) -.nairaland.com/contents/ -# ||mtvnimages.com/images/skins/$image (easylist.txt: 33561) -.mtvnimages.com/images/skins/ -# ||mfcdn.net/media/game321/$image (easylist.txt: 33479) -.mfcdn.net/media/game321/ -# ||madamenoire.com/wp-content/*_Reskin-$image (easylist.txt: 33358) -.madamenoire.com/wp-content/.*_Reskin- -# ||l.yimg.com/a/i/*_wallpaper$image (easylist.txt: 33230) -.l.yimg.com/a/i/.*_wallpaper -# ||kron.com/uploads/*-ad-$image (easylist.txt: 33215) -.kron.com/uploads/.*-ad- -# ||joindota.com/wp-content/*.png$image (easylist.txt: 33124) -.joindota.com/wp-content/.*\.png -# ||idg.com.au/images/*_promo$image (easylist.txt: 32945) -.idg.com.au/images/.*_promo -# ||hdtvtest.co.uk/image/partner/$image (easylist.txt: 32833) -.hdtvtest.co.uk/image/partner/ -# ||gigaom2.files.wordpress.com^*-center-top$image (easylist.txt: 32736) -.gigaom2.files.wordpress.com/.*-center-top -# ||foxsports.com/component/*_wallpaper_$image (easylist.txt: 32593) -.foxsports.com/component/.*_wallpaper_ -# ||ebaystatic.com/aw/signin/*_wallpaper_$image (easylist.txt: 32352) -.ebaystatic.com/aw/signin/.*_wallpaper_ -# ||devshed.com/images/backgrounds/$image (easylist.txt: 32265) -.devshed.com/images/backgrounds/ -# ||cinemablend.com/templates/tpl/reskin/$image (easylist.txt: 32042) -.cinemablend.com/templates/tpl/reskin/ -# ||channel4.com/bips/*/brand/$image (easylist.txt: 32024) -.channel4.com/bips/.*/brand/ -# ||channel4.com/assets/programmes/images/originals/$image (easylist.txt: 32023) -.channel4.com/assets/programmes/images/originals/ -# ||cafemomstatic.com/images/background/$image (easylist.txt: 31953) -.cafemomstatic.com/images/background/ -# ||broadbandgenie.co.uk/img/talktalk/$image (easylist.txt: 31910) -.broadbandgenie.co.uk/img/talktalk/ -# ||banners.friday-ad.co.uk/hpbanneruploads/$image (easylist.txt: 31804) -.banners.friday-ad.co.uk/hpbanneruploads/ -# ||animenewsnetwork.com/stylesheets/*skin$image (easylist.txt: 31691) -.animenewsnetwork.com/stylesheets/.*skin -# ||adverts.itv.com^$image (easylist.txt: 31604) -.adverts.itv.com -# ||4fuckr.com/g/$image (easylist.txt: 31490) -.4fuckr.com/g/ -# ||thrixxx.com/affiliates/$image (easylist.txt: 31266) -.thrixxx.com/affiliates/ -# ||postaffiliatepro.com^*/banners/$image (easylist.txt: 30294) -.postaffiliatepro.com/.*/banners/ -# ||fenixm.com/actions/*Skin*.$image (easylist.txt: 29767) -.fenixm.com/actions/.*Skin.*\. -# ||burstnet.akadns.net^$image (easylist.txt: 29412) -.burstnet.akadns.net -# /totemcash/*$image (easylist.txt: 5531) -/(.*/)?totemcash/.* -#ab2p-block-request-Ai-Ci-Xx -{+client-header-tagger{ab2p-block-request-Ai} \ - +server-header-tagger{ab2p-block-request-Ci} \ - +client-header-tagger{ab2p-block-request-Xx} \ +#ab2p-block-request-Ai-Ci-when-R176t +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R176t} \ } -TAG:^ab2p-block-request-Ai-Ci-Xx$ +# |http:$image,third-party,domain=99files.net (easylistchina.txt: 1268) -#ab2p-block-request-Ai-Ci-Xx-when-R393 -{+client-header-tagger{ab2p-block-request-Ai-Ci-Xx-when-R393} \ +#ab2p-block-request-Ai-Ci-when-R62 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R62} \ } -# |https://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46228) -# |http://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46225) -# |https://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35743) -# |http://$image,xmlhttprequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35740) - -#ab2p-block-request-Ai-Ci-when-R681t -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R681t} \ -} -# |http:$image,third-party,domain=99files.net (easylistchina+easylist.txt: 1254) - -#ab2p-block-request-Ai-Ci-when-R60 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R60} \ -} -# /somebody-$image,domain=aallenbwest.com|activistpost.com|addictinginfo.org|alfonzorachel.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45938) -/(.*/)?somebody- -somebody-*. -# /somebody-$image,domain=aallenbwest.com|activistpost.com|addictinginfo.org|alfonzorachel.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35453) -/(.*/)?somebody- -somebody-*. - -#ab2p-block-request-Ai-Ci-when-R68 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R68} \ -} -# /mobius-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45936) -/(.*/)?mobius- -mobius-*. -# /bismuth/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45932) -/(.*/)?bismuth/.* -# /mobius-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35451) -/(.*/)?mobius- -mobius-*. -# /bismuth/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.com|hellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35447) -/(.*/)?bismuth/.* - -#ab2p-block-request-Ai-Ci-when-R69 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R69} \ -} -# /rubidium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45937) -/(.*/)?rubidium/.* -# /hallon-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45935) -/(.*/)?hallon- -hallon-*. -# /farrel*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45934) -/(.*/)?farrel.*\. -farrel*./.*\. -farrel*.*. -# /caesium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45933) -/(.*/)?caesium/.* -# /authenv*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45931) -/(.*/)?authenv.*\. -authenv*./.*\. -authenv*.*. -# /astatine/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45930) -/(.*/)?astatine/.* -# /rubidium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35452) -/(.*/)?rubidium/.* -# /hallon-$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35450) -/(.*/)?hallon- -hallon-*. -# /farrel*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35449) -/(.*/)?farrel.*\. -farrel*./.*\. -farrel*.*. -# /caesium/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35448) -/(.*/)?caesium/.* -# /authenv*.$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35446) -/(.*/)?authenv.*\. -authenv*./.*\. -authenv*.*. -# /astatine/*$image,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|gossipgirl.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|realfarmacy.com|redmaryland.com|reverbpress.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35445) -/(.*/)?astatine/.* - -#ab2p-block-request-Ai-Ci-when-R682t -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R682t} \ -} -# |https://$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativeintel.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|sportsmole.co.uk|stevedeace.com|techtimes.com|unilad.co.uk|weaponsmedia.com (easylistchina+easylist.txt: 46062) -# |https://$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativeintel.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|sportsmole.co.uk|stevedeace.com|techtimes.com|unilad.co.uk|weaponsmedia.com (easylist.txt: 35577) - -#ab2p-block-request-Ai-Ci-when-R124 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R124} \ -} -# ||wordpress.com^*_reskin-$image,domain=bossip.com (easylistchina+easylist.txt: 45636) -.wordpress.com/.*_reskin- -# ||wordpress.com^*_reskin-$image,domain=bossip.com (easylist.txt: 35151) -.wordpress.com/.*_reskin- - -#ab2p-block-request-Ai-Ci-when-R128 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R128} \ -} -# ||dotua.org/player.$image,domain=brb.to|cxz.to|fs.to (advblock.txt: 5659) -.dotua.org/player\. -# ||dotua.org/img.$image,domain=brb.to|cxz.to|fs.to (advblock.txt: 5658) -.dotua.org/img\. - -#ab2p-block-request-Ai-Ci-when-R143 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R143} \ -} -# ||bips.channel4.com^*/backgrounds/$image,domain=channel4.com (easylistchina+easylist.txt: 42336) -.bips.channel4.com/.*/backgrounds/ -# ||bips.channel4.com^*/backgrounds/$image,domain=channel4.com (easylist.txt: 31851) -.bips.channel4.com/.*/backgrounds/ - -#ab2p-block-request-Ai-Ci-when-R150 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R150} \ -} -# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina+easylist.txt: 4762) +# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina.txt: 4743) .taobaocdn.com -#ab2p-block-request-Ai-Ci-when-R158 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R158} \ +#ab2p-block-request-Ai-Ci-when-R114 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R114} \ } -# ||goo.gl^$image,domain=cracksfiles.com (easylistchina+easylist.txt: 40351) -.goo.gl -# ||goo.gl^$image,domain=cracksfiles.com (easylist.txt: 29866) -.goo.gl - -#ab2p-block-request-Ai-Ci-when-R167 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R167} \ -} -# ||phobos.apple.com^$image,domain=dailymotion.com|youtube.com (easylistchina+easylist.txt: 40754) -.phobos.apple.com -# ||phobos.apple.com^$image,domain=dailymotion.com|youtube.com (easylist.txt: 30269) -.phobos.apple.com - -#ab2p-block-request-Ai-Ci-when-R171 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R171} \ -} -# ||googleapis.com/dfh/$image,domain=datafilehost.com (easylistchina+easylist.txt: 43254) -.googleapis.com/dfh/ -# ||googleapis.com/dfh/$image,domain=datafilehost.com (easylist.txt: 32769) -.googleapis.com/dfh/ - -#ab2p-block-request-Ai-Ci-when-R196 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R196} \ -} -# |http://$image,domain=explosm.net (easylistchina+easylist.txt: 46060) -# |http://$image,domain=explosm.net (easylist.txt: 35575) - -#ab2p-block-request-Ai-Ci-when-R240 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R240} \ -} -# ||imagebam.com/download/$image,domain=ganool.com (easylistchina+easylist.txt: 43443) -.imagebam.com/download/ -# ||imagebam.com/download/$image,domain=ganool.com (easylist.txt: 32958) -.imagebam.com/download/ - -#ab2p-block-request-Ai-Ci-when-R293 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R293} \ -} -# ||blogsmithmedia.com^*wallpaper$image,domain=joystiq.com (easylistchina+easylist.txt: 42370) -.blogsmithmedia.com/.*wallpaper -# ||blogsmithmedia.com^*wallpaper$image,domain=joystiq.com (easylist.txt: 31885) -.blogsmithmedia.com/.*wallpaper - -#ab2p-block-request-Ai-Ci-when-R349 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R349} \ -} -# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina+easylist.txt: 3316) +# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina.txt: 3300) .i.alipayobjects.com/i/ecmng/ -#ab2p-block-request-Ai-Ci-when-R394 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R394} \ +#ab2p-block-request-Ai-Ci-when-R134 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R134} \ } -# ||reine.ru$image,domain=pornolab.net (advblock.txt: 6297) -.reine.ru*. - -#ab2p-block-request-Ai-Ci-when-R396 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R396} \ -} -# ||cdn.totalfratmove.com^$image,domain=postgradproblems.com (easylistchina+easylist.txt: 39938) -.cdn.totalfratmove.com -# ||cdn.totalfratmove.com^$image,domain=postgradproblems.com (easylist.txt: 29453) -.cdn.totalfratmove.com - -#ab2p-block-request-Ai-Ci-when-R456 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R456} \ -} -# ||imgur.com^$image,domain=talksport.com (easylistchina+easylist.txt: 40443) -.imgur.com -# ||imgur.com^$image,domain=talksport.com (easylist.txt: 29958) -.imgur.com - -#ab2p-block-request-Ai-Ci-when-R464 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R464} \ -} -# ||wordpress.com^*/chive-skin-$image,domain=thechive.com (easylistchina+easylist.txt: 45633) -.wordpress.com/.*/chive-skin- -# ||wordpress.com^*/chive-skin-$image,domain=thechive.com (easylist.txt: 35148) -.wordpress.com/.*/chive-skin- - -#ab2p-block-request-Ai-Ci-when-R487 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R487} \ -} -# /img/*$image,domain=txzqw.com (easylistchina+easylist.txt: 1168) +# /img/*$image,domain=txzqw.com (easylistchina.txt: 1186) /(.*/)?img/.* -# /gif/*$image,domain=txzqw.com (easylistchina+easylist.txt: 1153) +# /gif/*$image,domain=txzqw.com (easylistchina.txt: 1171) /(.*/)?gif/.* -#ab2p-block-request-Ai-Ci-when-R493 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R493} \ +#ab2p-block-request-Ai-Ci-when-R138 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R138} \ } -# ||ilikecheats.net/images/$image,domain=unknowncheats.me (easylistchina+easylist.txt: 43439) -.ilikecheats.net/images/ -# ||ilikecheats.net/images/$image,domain=unknowncheats.me (easylist.txt: 32954) -.ilikecheats.net/images/ - -#ab2p-block-request-Ai-Ci-when-R500 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R500} \ -} -# /friends/*$image,domain=v2ex.com (easylistchina+easylist.txt: 1147) +# /friends/*$image,domain=v2ex.com (easylistchina.txt: 1165) /(.*/)?friends/.* -#ab2p-block-request-Ai-Ci-when-R534 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R534} \ +#ab2p-block-request-Ai-Ci-when-Rn165 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rn165} \ } -# ||yimg.com/hl/ap/default/*_background$image,domain=yahoo.com (easylistchina+easylist.txt: 45743) -.yimg.com/hl/ap/default/.*_background -# ||yimg.com/dh/ap/default/*/skins_$image,domain=yahoo.com (easylistchina+easylist.txt: 45741) -.yimg.com/dh/ap/default/.*/skins_ -# ||yimg.com/cv/ae/us/audience/$image,domain=yahoo.com (easylistchina+easylist.txt: 45737) -.yimg.com/cv/ae/us/audience/ -# ||yimg.com/cv/ae/ca/audience/$image,domain=yahoo.com (easylistchina+easylist.txt: 45736) -.yimg.com/cv/ae/ca/audience/ -# ||yimg.com/hl/ap/default/*_background$image,domain=yahoo.com (easylist.txt: 35258) -.yimg.com/hl/ap/default/.*_background -# ||yimg.com/dh/ap/default/*/skins_$image,domain=yahoo.com (easylist.txt: 35256) -.yimg.com/dh/ap/default/.*/skins_ -# ||yimg.com/cv/ae/us/audience/$image,domain=yahoo.com (easylist.txt: 35252) -.yimg.com/cv/ae/us/audience/ -# ||yimg.com/cv/ae/ca/audience/$image,domain=yahoo.com (easylist.txt: 35251) -.yimg.com/cv/ae/ca/audience/ +# ||bahamut.com.tw^*/2KU/*?v=$~collapse,image,domain=~m.gamer.com.tw (easylistchina.txt: 2144) +.bahamut.com.tw/.*/2KU/.*\?v= -#ab2p-block-request-Ai-Ci-when-R539 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R539} \ +#ab2p-block-request-Ai-Ci-when-Rn172 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rn172} \ } -# ||topspin.net/secure/media/$image,domain=youtube.com (easylistchina+easylist.txt: 41058) -.topspin.net/secure/media/ -# ||topspin.net/secure/media/$image,domain=youtube.com (easylist.txt: 30573) -.topspin.net/secure/media/ - -#ab2p-block-request-Ai-Ci-when-Rn668 -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rn668} \ -} -# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina+easylist.txt: 2593) +# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina.txt: 2579) .d5.sina.com.cn -#ab2p-block-request-Ai-Ci-when-Rnt -{+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rnt} \ -} -# ||cheatsheet.com^$image,~third-party (easylistchina+easylist.txt: 46064) -.cheatsheet.com -# ||cheatsheet.com^$image,~third-party (easylist.txt: 35579) -.cheatsheet.com - #ab2p-block-request-Ai-Ci-when-Rt {+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rt} \ } -# /get/path/.banners.$image,third-party (easylistchina+easylist.txt: 41910) -/(.*/)?get/path/\.banners\. -# ||pornoh.info^$image,third-party (easylistchina+easylist.txt: 41675) -.pornoh.info -# ||screenconnect.com/miscellaneous/ScreenConnect-$image,third-party (easylistchina+easylist.txt: 40882) -.screenconnect.com/miscellaneous/ScreenConnect- -# ||maximainvest.net^$image,third-party (easylistchina+easylist.txt: 40579) -.maximainvest.net -# ||images-pw.secureserver.net^*_*.$image,third-party (easylistchina+easylist.txt: 40428) -.images-pw.secureserver.net/.*_.*\. -# ||colmwynne.com^$image,third-party (easylistchina+easylist.txt: 39979) -.colmwynne.com -# ||info-database.csdn.net/Upload/$image,third-party (easylistchina+easylist.txt: 3488) +# ||info-database.csdn.net/Upload/$image,third-party (easylistchina.txt: 3473) .info-database.csdn.net/Upload/ -# ||niuza.com^$image,subdocument,third-party (easylistchina+easylist.txt: 871) +# ||niuza.com^$image,subdocument,third-party (easylistchina.txt: 890) .niuza.com -# ||kiees.com^$image,subdocument,third-party (easylistchina+easylist.txt: 832) +# ||kiees.com^$image,subdocument,third-party (easylistchina.txt: 851) .kiees.com -# /get/path/.banners.$image,third-party (easylist.txt: 31425) -/(.*/)?get/path/\.banners\. -# ||pornoh.info^$image,third-party (easylist.txt: 31190) -.pornoh.info -# ||screenconnect.com/miscellaneous/ScreenConnect-$image,third-party (easylist.txt: 30397) -.screenconnect.com/miscellaneous/ScreenConnect- -# ||maximainvest.net^$image,third-party (easylist.txt: 30094) -.maximainvest.net -# ||images-pw.secureserver.net^*_*.$image,third-party (easylist.txt: 29943) -.images-pw.secureserver.net/.*_.*\. -# ||colmwynne.com^$image,third-party (easylist.txt: 29494) -.colmwynne.com #ab2p-block-request-Aij-Cij {+client-header-tagger{ab2p-block-request-Aij} \ +server-header-tagger{ab2p-block-request-Cij} \ } -TAG:^ab2p-block-request-Aij-Cij$ -# ||baidu.com/ecom$image,script (easylistchina+easylist.txt: 2159) +# ||baidu.com/ecom$image,script (easylistchina.txt: 2148) .baidu.com/ecom -#ab2p-block-request-Aij-Cij-when-R683t -{+client-header-tagger{ab2p-block-request-Aij-Cij-when-R683t} \ -} -# |https://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46227) -# |http://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 46224) -# |https://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35742) -# |http://$image,script,third-party,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 35739) - -#ab2p-block-request-Aij-Cij-when-Rn642 -{+client-header-tagger{ab2p-block-request-Aij-Cij-when-Rn642} \ -} -# /advertisers.$image,script,subdocument,domain=~panel.rightflow.com (easylistchina+easylist.txt: 13297) -/(.*/)?advertisers\. -advertisers.*. -# /advertisers.$image,script,subdocument,domain=~panel.rightflow.com (easylist.txt: 2812) -/(.*/)?advertisers\. -advertisers.*. - #ab2p-block-request-Aj-Cj {+client-header-tagger{ab2p-block-request-Aj} \ +server-header-tagger{ab2p-block-request-Cj} \ } TAG:^ab2p-block-request-Aj-Cj$ -# ||hornywhores.net/hw$script (easylistchina+easylist.txt: 46513) -.hornywhores.net/hw -# ||hentairules.net/pop_$script (easylistchina+easylist.txt: 46493) -.hentairules.net/pop_ -# ||hcomicbook.com/js/hcb-$script (easylistchina+easylist.txt: 46476) -.hcomicbook.com/js/hcb- -# ||fetishok.com/js/focus.$script (easylistchina+easylist.txt: 46410) -.fetishok.com/js/focus\. -# ||eporner.com/dot/$script (easylistchina+easylist.txt: 46395) -.eporner.com/dot/ -# ||sportspyder.com/assets/application-$script (easylistchina+easylist.txt: 46092) -.sportspyder.com/assets/application- -# /\.sharesix\.com/.*[a-zA-Z0-9]{4}/$script (easylistchina+easylist.txt: 45928) -/(.*/)?\\\.sharesix\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.sharesix\.com/.*[a-zA-Z0-9]{4} -# /\.filenuke\.com/.*[a-zA-Z0-9]{4}/$script (easylistchina+easylist.txt: 45927) -/(.*/)?\\\.filenuke\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.filenuke\.com/.*[a-zA-Z0-9]{4} -# ||valuewalk.com//?$script (easylistchina+easylist.txt: 45391) -# ||subs4free.com^*/wh4_s4f_$script (easylistchina+easylist.txt: 44943) -.subs4free.com/.*/wh4_s4f_ -# ||sfx.ms/AppInsights-$script (easylistchina+easylist.txt: 44727) -.sfx.ms/AppInsights- -# ||networx.com/widget.php?aff_id=$script (easylistchina+easylist.txt: 44127) -.networx.com/widget\.php\?aff_id= -# ||ncrypt.in^*/layer.$script (easylistchina+easylist.txt: 44107) -.ncrypt.in/.*/layer\. -# ||mnn.com/sites/*/popups/AllstatePopup$script (easylistchina+easylist.txt: 44003) -.mnn.com/sites/.*/popups/AllstatePopup -# ||media-imdb.com^*/clicktale-$script (easylistchina+easylist.txt: 43910) -.media-imdb.com/.*/clicktale- -# ||images-amazon.com/images/*/da-us/da-$script (easylistchina+easylist.txt: 43457) -.images-amazon.com/images/.*/da-us/da- -# ||exashare.com^*?*cbrandom=$script (easylistchina+easylist.txt: 42934) -.exashare.com/.*\?.*cbrandom= -# ||aolcdn.com/os/moat/$script (easylistchina+easylist.txt: 42192) -.aolcdn.com/os/moat/ -# ||sadtube.com/chat/$script (easylistchina+easylist.txt: 41716) -.sadtube.com/chat/ -# ||movies.spacash.com^*&th=180x135$script (easylistchina+easylist.txt: 41632) -.movies.spacash.com/.*&th=180x135 -# ||213.174.140.76^*/js/msn-$script (easylistchina+easylist.txt: 41389) -.213.174.140.76/.*/js/msn- -# ||widgets.fie.futurecdn.net^$script (easylistchina+easylist.txt: 41179) -.widgets.fie.futurecdn.net -# ||sfcdn.in/sailfish/$script (easylistchina+easylist.txt: 40901) -.sfcdn.in/sailfish/ -# ||msecnd.net/scripts/*.pop.$script (easylistchina+easylist.txt: 40641) -.msecnd.net/scripts/.*\.pop\. -# ||mrskincdn.com/data/uploader/affiliate/$script (easylistchina+easylist.txt: 40640) -.mrskincdn.com/data/uploader/affiliate/ -# ||cdn.pubexchange.com/modules/display/$script (easylistchina+easylist.txt: 39936) -.cdn.pubexchange.com/modules/display/ -# ||buzina.xyz^$script (easylistchina+easylist.txt: 39902) -.buzina.xyz -# ||btrd.net/assets/interstitial$script (easylistchina+easylist.txt: 39893) -.btrd.net/assets/interstitial -# /FuckAdBlock-$script (easylistchina+easylist.txt: 17026) -/(.*/)?FuckAdBlock- -FuckAdBlock-*. -# /webservices/jsparselinks.aspx?$script (easylistchina+easylist.txt: 16974) -/(.*/)?webservices/jsparselinks\.aspx\? -# /jquery.dfp.min.js$script (easylistchina+easylist.txt: 16972) -/(.*/)?jquery\.dfp\.min\.js -jquery.dfp.min.js*. -# /jquery.dfp.js$script (easylistchina+easylist.txt: 16971) -/(.*/)?jquery\.dfp\.js -jquery.dfp.js*. -# /xlayer/layer.php?uid=$script (easylistchina+easylist.txt: 16251) -/(.*/)?xlayer/layer\.php\?uid= -# /scripts/feedmeCaf.php?q=*&d=*&ron=$script (easylistchina+easylist.txt: 15589) -/(.*/)?scripts/feedmeCaf\.php\?q=.*&d=.*&ron= -# /overture/*$script,subdocument (easylistchina+easylist.txt: 15179) -/(.*/)?overture/.* -# /locker.php?pub=*&gateid=$script (easylistchina+easylist.txt: 14932) -/(.*/)?locker\.php\?pub=.*&gateid= -# /js/ppu.$script (easylistchina+easylist.txt: 14818) -/(.*/)?js/ppu\. -# /get.*/get.$script (easylistchina+easylist.txt: 14381) -/(.*/)?get\..*/get\. -get.*./(.*/)?get\. -# /filter.php?pro$script (easylistchina+easylist.txt: 14259) -/(.*/)?filter\.php\?pro -# /fan-ads.$script (easylistchina+easylist.txt: 14245) -/(.*/)?fan-ads\. -fan-ads.*. -# /dtim300x250.$script (easylistchina+easylist.txt: 14143) -/(.*/)?dtim300x250\. -dtim300x250.*. -# /bnr_show.php?id=$script (easylistchina+easylist.txt: 13779) -/(.*/)?bnr_show\.php\?id= -# /adcenter.$script (easylistchina+easylist.txt: 11845) -/(.*/)?adcenter\. -adcenter.*. -# ||xntk.net^$script (easylistchina+easylist.txt: 5191) +# ||xntk.net^$script (easylistchina.txt: 5168) .xntk.net -# ||xinhuanet.com^*_tl_$script (easylistchina+easylist.txt: 5155) +# ||xinhuanet.com^*_tl_$script (easylistchina.txt: 5132) .xinhuanet.com/.*_tl_ -# ||xiao235.com^$script (easylistchina+easylist.txt: 5125) -.xiao235.com -# ||x.itiexue.net/html/$script (easylistchina+easylist.txt: 5100) +# ||x.itiexue.net/html/$script (easylistchina.txt: 5076) .x.itiexue.net/html/ -# ||wangyouxs.com/A/$script (easylistchina+easylist.txt: 5012) +# ||wangyouxs.com/A/$script (easylistchina.txt: 4989) .wangyouxs.com/A/ -# ||tt1069.com/bbs/ad$script,subdocument (easylistchina+easylist.txt: 4863) -.tt1069.com/bbs/ad -# ||sznews.com/css/$script (easylistchina+easylist.txt: 4746) +# ||sznews.com/css/$script (easylistchina.txt: 4727) .sznews.com/css/ -# ||stheadline.com/*banner$script (easylistchina+easylist.txt: 4700) +# ||stheadline.com/*banner$script (easylistchina.txt: 4681) .stheadline.com/.*banner -# ||skads.gxsky.com^$script (easylistchina+easylist.txt: 4626) +# ||skads.gxsky.com^$script (easylistchina.txt: 4604) .skads.gxsky.com -# ||sinaimg.cn^*/deco/$script (easylistchina+easylist.txt: 4613) +# ||sinaimg.cn^*/deco/$script (easylistchina.txt: 4591) .sinaimg.cn/.*/deco/ -# ||same*.jrj.com.cn^$script,subdocument (easylistchina+easylist.txt: 4449) +# ||same*.jrj.com.cn^$script,subdocument (easylistchina.txt: 4439) .same*./.*\.jrj\.com\.cn[^\w%.-] .same*.jrj.com.cn -# ||s.tankr.net/s/$script (easylistchina+easylist.txt: 4437) +# ||s.tankr.net/s/$script (easylistchina.txt: 4427) .s.tankr.net/s/ -# ||qqread.com/*js/$script (easylistchina+easylist.txt: 4349) +# ||qqread.com/*js/$script (easylistchina.txt: 4339) .qqread.com/.*js/ -# ||qianlong.com/vda/$script (easylistchina+easylist.txt: 4271) +# ||qianlong.com/vda/$script (easylistchina.txt: 4263) .qianlong.com/vda/ -# ||property.hk/ad_$script (easylistchina+easylist.txt: 4241) +# ||property.hk/ad_$script (easylistchina.txt: 4231) .property.hk/ad_ -# ||piaohua.com/js/yzz/$script (easylistchina+easylist.txt: 4184) +# ||piaohua.com/js/yzz/$script (easylistchina.txt: 4174) .piaohua.com/js/yzz/ -# ||pfp.sina.com.cn^$script,subdocument (easylistchina+easylist.txt: 4165) +# ||pfp.sina.com.cn^$script,subdocument (easylistchina.txt: 4155) .pfp.sina.com.cn -# ||ouyaoxiazai.com^$script,subdocument (easylistchina+easylist.txt: 4114) +# ||ouyaoxiazai.com^$script,subdocument (easylistchina.txt: 4104) .ouyaoxiazai.com -# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina+easylist.txt: 4097) +# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina.txt: 4088) .onlinedown.net/newhuagg/.*_pic_ -# ||medsci.cn/aimgs/$script (easylistchina+easylist.txt: 3924) +# ||medsci.cn/aimgs/$script (easylistchina.txt: 3915) .medsci.cn/aimgs/ -# ||linuxidc.com/linuxfile/linux$script (easylistchina+easylist.txt: 3836) +# ||linuxidc.com/linuxfile/linux$script (easylistchina.txt: 3827) .linuxidc.com/linuxfile/linux -# ||kz222.com^$script (easylistchina+easylist.txt: 3756) -.kz222.com -# ||jz5u.com/js/tl$script (easylistchina+easylist.txt: 3689) +# ||jz5u.com/js/tl$script (easylistchina.txt: 3681) .jz5u.com/js/tl -# ||js.tv.itc.cn/gg$script (easylistchina+easylist.txt: 3657) +# ||js.tv.itc.cn/gg$script (easylistchina.txt: 3649) .js.tv.itc.cn/gg -# ||imp3.net/data/js$script (easylistchina+easylist.txt: 3484) +# ||imp3.net/data/js$script (easylistchina.txt: 3469) .imp3.net/data/js -# ||img.jb51.net^$script (easylistchina+easylist.txt: 3449) +# ||img.jb51.net^$script (easylistchina.txt: 3434) .img.jb51.net -# ||ifengimg.com^*Float$script (easylistchina+easylist.txt: 3394) +# ||ifengimg.com^*Float$script (easylistchina.txt: 3379) .ifengimg.com/.*Float -# ||ifengimg.com^*couplet$script (easylistchina+easylist.txt: 3393) +# ||ifengimg.com^*couplet$script (easylistchina.txt: 3378) .ifengimg.com/.*couplet -# ||hkheadline.com/*banner$script (easylistchina+easylist.txt: 3227) +# ||hkheadline.com/*banner$script (easylistchina.txt: 3209) .hkheadline.com/.*banner -# ||hinews.cn/out/$script (easylistchina+easylist.txt: 3207) +# ||hinews.cn/out/$script (easylistchina.txt: 3189) .hinews.cn/out/ -# ||happydown.com^$script,subdocument (easylistchina+easylist.txt: 3144) +# ||happydown.com^$script,subdocument (easylistchina.txt: 3127) .happydown.com -# ||geiliwx.com/read/ad$script (easylistchina+easylist.txt: 2984) +# ||geiliwx.com/read/ad$script (easylistchina.txt: 2966) .geiliwx.com/read/ad -# ||fzpchome.com/txt/$script (easylistchina+easylist.txt: 2944) +# ||fzpchome.com/txt/$script (easylistchina.txt: 2926) .fzpchome.com/txt/ -# ||fzlol.com/images/$script (easylistchina+easylist.txt: 2943) +# ||fzlol.com/images/$script (easylistchina.txt: 2925) .fzlol.com/images/ -# ||fdc.my0511.com^$script (easylistchina+easylist.txt: 2882) +# ||fdc.my0511.com^$script (easylistchina.txt: 2864) .fdc.my0511.com -# ||etf88.com/jjb/*_ad$script (easylistchina+easylist.txt: 2852) +# ||etf88.com/jjb/*_ad$script (easylistchina.txt: 2834) .etf88.com/jjb/.*_ad -# ||dzwww.com/data/js/asp_$script (easylistchina+easylist.txt: 2781) +# ||dzwww.com/data/js/asp_$script (easylistchina.txt: 2762) .dzwww.com/data/js/asp_ -# ||dodo8.com/inc/$script (easylistchina+easylist.txt: 2703) +# ||dodo8.com/inc/$script (easylistchina.txt: 2685) .dodo8.com/inc/ -# ||dddbbb.net^$script,subdocument (easylistchina+easylist.txt: 2624) +# ||dddbbb.net^$script,subdocument (easylistchina.txt: 2609) .dddbbb.net -# ||baishuku.com/news/$script (easylistchina+easylist.txt: 2193) +# ||baishuku.com/news/$script (easylistchina.txt: 2183) .baishuku.com/news/ -# ||ayxz.com/images/$script (easylistchina+easylist.txt: 2142) +# ||ayxz.com/images/$script (easylistchina.txt: 2130) .ayxz.com/images/ -# ||airenti.xyz^$script (easylistchina+easylist.txt: 2060) -.airenti.xyz -# ||airenti.co^$script (easylistchina+easylist.txt: 2059) -.airenti.co -# ||962.net/show/cms_$script (easylistchina+easylist.txt: 1934) +# ||airenti.in^$script (easylistchina.txt: 2050) +.airenti.in +# ||962.net/show/cms_$script (easylistchina.txt: 1924) .962.net/show/cms_ -# ||962.net/show/all_$script (easylistchina+easylist.txt: 1932) +# ||962.net/show/all_$script (easylistchina.txt: 1922) .962.net/show/all_ -# ||8dyun.com/*.php$script (easylistchina+easylist.txt: 1895) +# ||8dyun.com/*.php$script (easylistchina.txt: 1885) .8dyun.com/.*\.php -# ||6park.com/parks/$script (easylistchina+easylist.txt: 1827) +# ||6park.com/parks/$script (easylistchina.txt: 1818) .6park.com/parks/ -# ||6park.com/news/$script (easylistchina+easylist.txt: 1826) +# ||6park.com/news/$script (easylistchina.txt: 1817) .6park.com/news/ -# ||66ys.cc/d/$script (easylistchina+easylist.txt: 1814) +# ||66ys.cc/d/$script (easylistchina.txt: 1805) .66ys.cc/d/ -# ||66e.cc/d/$script (easylistchina+easylist.txt: 1796) +# ||66e.cc/d/$script (easylistchina.txt: 1787) .66e.cc/d/ -# ||23sc.cn*/007/js/$script (easylistchina+easylist.txt: 1532) +# ||23sc.cn*/007/js/$script (easylistchina.txt: 1537) .23sc.cn*./(.*/)?007/js/ -# ||168.it168.com^$script (easylistchina+easylist.txt: 1427) +# ||168.it168.com^$script (easylistchina.txt: 1439) .168.it168.com -# ||131.com/js/131InsideAD$script (easylistchina+easylist.txt: 1394) +# ||131.com/js/131InsideAD$script (easylistchina.txt: 1407) .131.com/js/131InsideAD -# /pub/news/gzrb/*$script (easylistchina+easylist.txt: 1207) +# /pub/news/gzrb/*$script (easylistchina.txt: 1222) /(.*/)?pub/news/gzrb/.* -# |http://tk.*.php?id=*&s=$script (easylistchina+easylist.txt: 500) +# |http://tk.*.php?id=*&s=$script (easylistchina.txt: 512) tk.*./.*\.php\?id=.*&s= -# ||vtomske.ru/js/ds!$script (advblock.txt: 7063) -.vtomske.ru/js/ds! -# ||bs.yandex.$script (advblock.txt: 6994) -.bs.yandex.*. -# ||bs-meta.yandex.$script (advblock.txt: 6993) -.bs-meta.yandex.*. -# ||an.yandex.ru/system/context$script (advblock.txt: 6991) -.an.yandex.ru/system/context -# ||an.yandex.ru/resource/context$script (advblock.txt: 6990) -.an.yandex.ru/resource/context -# ||imgsmail.ru/js/onair2.$script (advblock.txt: 6813) -.imgsmail.ru/js/onair2\. -# ||xyya.net/sha$script (advblock.txt: 6610) -.xyya.net/sha -# ||uzumaki.kz/go?$script (advblock.txt: 6526) -.uzumaki.kz/go\? -# ||pics-money.ru/img/$script (advblock.txt: 6213) -.pics-money.ru/img/ -# ||novostimira.*?v=$script (advblock.txt: 6148) -.novostimira.*./.*\?v= -# ||forums.goha.ru/c06$script (advblock.txt: 5743) -.forums.goha.ru/c06 -# ||dumkare.ru^*.php|$script (advblock.txt: 5668) -.dumkare.ru/.*\.php$ -# ||demotivators.to/media/$script (advblock.txt: 5644) -.demotivators.to/media/ -# ||cmexota.ru/uploads/$script (advblock.txt: 5608) -.cmexota.ru/uploads/ -# ||chtoby-pravilno.ru/go/test.js$script (advblock.txt: 5595) -.chtoby-pravilno.ru/go/test\.js -# .torrent-telik.com^$script (advblock.txt: 5374) -/.*\.torrent-telik\.com[^\w%.-] -.*.torrent-telik.com -# ||d.drive.ru/_/$script (advblock.txt: 1785) -.d.drive.ru/_/ -# ||24smi.org/i/$script (advblock.txt: 1772) -.24smi.org/i/ -# ||partner.join.com.ua^$script (advblock.txt: 1324) -.partner.join.com.ua -# ||ua/rtr/$script (advblock.txt: 659) -# ||tv/rtr/$script (advblock.txt: 658) -# ||su/rtr/$script (advblock.txt: 657) -# ||ru/rtr/$script (advblock.txt: 656) -# ||ro/rtr/$script (advblock.txt: 655) -# ||pl/rtr/$script (advblock.txt: 654) -# ||org/rtr/$script (advblock.txt: 653) -# ||net/rtr/$script (advblock.txt: 652) -# ||me/rtr/$script (advblock.txt: 651) -# ||kz/rtr/$script (advblock.txt: 650) -# ||es/rtr/$script (advblock.txt: 649) -# ||com/rtr/$script (advblock.txt: 648) -# ||by/rtr/$script (advblock.txt: 647) -# ||biz/rtr/$script (advblock.txt: 646) -# ||am/rtr/$script (advblock.txt: 645) -# ||ru/tiz_show.php?id=$script (advblock.txt: 634) -# /www/imgget/*$script (advblock.txt: 600) -/(.*/)?www/imgget/.* -# /vkshow1.php?$script (advblock.txt: 593) -/(.*/)?vkshow1\.php\? -# /uploads/slider/col$script (advblock.txt: 581) -/(.*/)?uploads/slider/col -# /show/?block_id=*&r=$script (advblock.txt: 537) -/(.*/)?show/\?block_id=.*&r= -# /show.php*^type=*&method=$script (advblock.txt: 536) -/(.*/)?show\.php.*[^\w%.-]type=.*&method= -show.php*./(.*[^\w%.-])?type=.*&method= -# /show.php*^placeid=*&rnd=$script (advblock.txt: 535) -/(.*/)?show\.php.*[^\w%.-]placeid=.*&rnd= -show.php*./(.*[^\w%.-])?placeid=.*&rnd= -# /sb.php?s=$script (advblock.txt: 528) -/(.*/)?sb\.php\?s= -# /out.php?sid=$script (advblock.txt: 504) -/(.*/)?out\.php\?sid= -# /js/vk.php?id=$script (advblock.txt: 488) -/(.*/)?js/vk\.php\?id= -# /initRTv2.php?id=$script (advblock.txt: 476) -/(.*/)?initRTv2\.php\?id= -# /cu2.php?ref=$script (advblock.txt: 439) -/(.*/)?cu2\.php\?ref= -# /cu2.php?*&ref=$script (advblock.txt: 438) -/(.*/)?cu2\.php\?.*&ref= -# /cu1.php?ref=$script (advblock.txt: 437) -/(.*/)?cu1\.php\?ref= -# /cu1.php?*&ref=$script (advblock.txt: 436) -/(.*/)?cu1\.php\?.*&ref= -# /cu.js?p=$script (advblock.txt: 434) -/(.*/)?cu\.js\?p= -# /cs3?user_id=*&stream_id=$script (advblock.txt: 430) -/(.*/)?cs3\?user_id=.*&stream_id= -# /cout.php?sid=$script (advblock.txt: 429) -/(.*/)?cout\.php\?sid= -# /amcu_$script (advblock.txt: 385) -/(.*/)?amcu_ -# /adv_out.$script (advblock.txt: 380) -/(.*/)?adv_out\. -# /adv-out/?$script (advblock.txt: 377) -/(.*/)?adv-out/\? -# /^https?://[^/]+/[a-z0-9]{15,}(\?hope=.*)?$/$script (advblock.txt: 363) -/(.*/)?[^\w%.-]https\?://\[[^\w%.-]/\]\+/\[a-z0-9\]\{15,\}\(\\\?hope=\..*\)\?\$/ -/^https?://[^/]+/[a-z0-9]{15,}(\?hope=.*)?$ -# /?t=rot&pid=$script (advblock.txt: 361) -/(.*/)?\?t=rot&pid= -# /?t=b&blockids=$script (advblock.txt: 360) -/(.*/)?\?t=b&blockids= -# /?t=*&noadult=1&pid=$script (advblock.txt: 359) -/(.*/)?\?t=.*&noadult=1&pid= -# //uno.*/?t=$popup,script (advblock.txt: 47) -uno.*./(.*/)?\?t= -# ||hornywhores.net/hw$script (easylist.txt: 36028) -.hornywhores.net/hw -# ||hentairules.net/pop_$script (easylist.txt: 36008) -.hentairules.net/pop_ -# ||hcomicbook.com/js/hcb-$script (easylist.txt: 35991) -.hcomicbook.com/js/hcb- -# ||fetishok.com/js/focus.$script (easylist.txt: 35925) -.fetishok.com/js/focus\. -# ||eporner.com/dot/$script (easylist.txt: 35910) -.eporner.com/dot/ -# ||sportspyder.com/assets/application-$script (easylist.txt: 35607) -.sportspyder.com/assets/application- -# /\.sharesix\.com/.*[a-zA-Z0-9]{4}/$script (easylist.txt: 35443) -/(.*/)?\\\.sharesix\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.sharesix\.com/.*[a-zA-Z0-9]{4} -# /\.filenuke\.com/.*[a-zA-Z0-9]{4}/$script (easylist.txt: 35442) -/(.*/)?\\\.filenuke\\\.com/\..*\[a-zA-Z0-9\]\{4\}/ -/\.filenuke\.com/.*[a-zA-Z0-9]{4} -# ||valuewalk.com//?$script (easylist.txt: 34906) -# ||subs4free.com^*/wh4_s4f_$script (easylist.txt: 34458) -.subs4free.com/.*/wh4_s4f_ -# ||sfx.ms/AppInsights-$script (easylist.txt: 34242) -.sfx.ms/AppInsights- -# ||networx.com/widget.php?aff_id=$script (easylist.txt: 33642) -.networx.com/widget\.php\?aff_id= -# ||ncrypt.in^*/layer.$script (easylist.txt: 33622) -.ncrypt.in/.*/layer\. -# ||mnn.com/sites/*/popups/AllstatePopup$script (easylist.txt: 33518) -.mnn.com/sites/.*/popups/AllstatePopup -# ||media-imdb.com^*/clicktale-$script (easylist.txt: 33425) -.media-imdb.com/.*/clicktale- -# ||images-amazon.com/images/*/da-us/da-$script (easylist.txt: 32972) -.images-amazon.com/images/.*/da-us/da- -# ||exashare.com^*?*cbrandom=$script (easylist.txt: 32449) -.exashare.com/.*\?.*cbrandom= -# ||aolcdn.com/os/moat/$script (easylist.txt: 31707) -.aolcdn.com/os/moat/ -# ||sadtube.com/chat/$script (easylist.txt: 31231) -.sadtube.com/chat/ -# ||movies.spacash.com^*&th=180x135$script (easylist.txt: 31147) -.movies.spacash.com/.*&th=180x135 -# ||213.174.140.76^*/js/msn-$script (easylist.txt: 30904) -.213.174.140.76/.*/js/msn- -# ||widgets.fie.futurecdn.net^$script (easylist.txt: 30694) -.widgets.fie.futurecdn.net -# ||sfcdn.in/sailfish/$script (easylist.txt: 30416) -.sfcdn.in/sailfish/ -# ||msecnd.net/scripts/*.pop.$script (easylist.txt: 30156) -.msecnd.net/scripts/.*\.pop\. -# ||mrskincdn.com/data/uploader/affiliate/$script (easylist.txt: 30155) -.mrskincdn.com/data/uploader/affiliate/ -# ||cdn.pubexchange.com/modules/display/$script (easylist.txt: 29451) -.cdn.pubexchange.com/modules/display/ -# ||buzina.xyz^$script (easylist.txt: 29417) -.buzina.xyz -# ||btrd.net/assets/interstitial$script (easylist.txt: 29408) -.btrd.net/assets/interstitial -# /FuckAdBlock-$script (easylist.txt: 6541) -/(.*/)?FuckAdBlock- -FuckAdBlock-*. -# /webservices/jsparselinks.aspx?$script (easylist.txt: 6489) -/(.*/)?webservices/jsparselinks\.aspx\? -# /jquery.dfp.min.js$script (easylist.txt: 6487) -/(.*/)?jquery\.dfp\.min\.js -jquery.dfp.min.js*. -# /jquery.dfp.js$script (easylist.txt: 6486) -/(.*/)?jquery\.dfp\.js -jquery.dfp.js*. -# /xlayer/layer.php?uid=$script (easylist.txt: 5766) -/(.*/)?xlayer/layer\.php\?uid= -# /scripts/feedmeCaf.php?q=*&d=*&ron=$script (easylist.txt: 5104) -/(.*/)?scripts/feedmeCaf\.php\?q=.*&d=.*&ron= -# /overture/*$script,subdocument (easylist.txt: 4694) -/(.*/)?overture/.* -# /locker.php?pub=*&gateid=$script (easylist.txt: 4447) -/(.*/)?locker\.php\?pub=.*&gateid= -# /js/ppu.$script (easylist.txt: 4333) -/(.*/)?js/ppu\. -# /get.*/get.$script (easylist.txt: 3896) -/(.*/)?get\..*/get\. -get.*./(.*/)?get\. -# /filter.php?pro$script (easylist.txt: 3774) -/(.*/)?filter\.php\?pro -# /fan-ads.$script (easylist.txt: 3760) -/(.*/)?fan-ads\. -fan-ads.*. -# /dtim300x250.$script (easylist.txt: 3658) -/(.*/)?dtim300x250\. -dtim300x250.*. -# /bnr_show.php?id=$script (easylist.txt: 3294) -/(.*/)?bnr_show\.php\?id= -# /adcenter.$script (easylist.txt: 1360) -/(.*/)?adcenter\. -adcenter.*. -#ab2p-block-request-Aj-Cj-Xx -{+client-header-tagger{ab2p-block-request-Aj} \ - +server-header-tagger{ab2p-block-request-Cj} \ - +client-header-tagger{ab2p-block-request-Xx} \ +#ab2p-block-request-Aj-Cj-when-R14 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R14} \ } -TAG:^ab2p-block-request-Aj-Cj-Xx$ +# |http:$script,domain=189so.cn (easylistchina.txt: 1269) -#ab2p-block-request-Aj-Cj-Xx-when-R241 -{+client-header-tagger{ab2p-block-request-Aj-Cj-Xx-when-R241} \ +#ab2p-block-request-Aj-Cj-when-R34 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R34} \ } -# /\/[0-9].*\-.*\-[a-z0-9]{4}/$script,xmlhttprequest,domain=gaytube.com|keezmovies.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 46222) -/(.*/)?\\/\[0-9\]\..*\\-\..*\\-\[a-z0-9\]\{4\}/ -/\/[0-9].*\-.*\-[a-z0-9]{4} -# /\/[0-9].*\-.*\-[a-z0-9]{4}/$script,xmlhttprequest,domain=gaytube.com|keezmovies.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylist.txt: 35737) -/(.*/)?\\/\[0-9\]\..*\\-\..*\\-\[a-z0-9\]\{4\}/ -/\/[0-9].*\-.*\-[a-z0-9]{4} - -#ab2p-block-request-Aj-Cj-Xx-when-R447 -{+client-header-tagger{ab2p-block-request-Aj-Cj-Xx-when-R447} \ -} -# |https://$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45919) -# |http://$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45918) -# |https://$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35434) -# |http://$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35433) - -#ab2p-block-request-Aj-Cj-when-R16 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R16} \ -} -# |http:$script,domain=189so.cn (easylistchina+easylist.txt: 1255) - -#ab2p-block-request-Aj-Cj-when-R28 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R28} \ -} -# ||com/s/$script,subdocument,domain=24warez.ru|anideshka.ru|anilost.com|artero.ru|babestar.ru|best-xxx.net|bestcamsxxx.com|bestrepack.net|bigtorrent.org|bookitut.ru|demotivators.to|drochunov.net|eroox.ru|exoticvideo.net|filmasik.net|filmomax.com|fotooplata.ru|free-torrents.org|freebie.net.ua|freepublish.ru|gidporno.com|girlstop.info|guide-box.ru|hentaiz.org|huyandex.com|i-pic.ru|iarex.ru|imgmoney.ru|kino-zal.kz|kinohost.nov.ru|kinoonlain.org|kritka.net|leporno.org|leporno.ws|mega-track.org|mnogohlama.ru|moresofta.com|ontracker.ru|palevo.com|pic4you.ru|pic5you.ru|pics-money.ru|politland.ru|porn-news.org|porno-gid.info|porno-torrent.biz|porno-torrents.ru|pornoboss.tv|pornoero.com|pornogovno.ru|pornomage.net|pornorip.biz|pornorun.com|pornovizion.com|prisnilos.su|privsex.ru|promotevid.ru|raketa-tv.com|rosporn.com|ru-admin.net|seasonvar.ru|seti-ceti.ru|sibiryak-soft.org|suero.tv|tedkino.com|tyt-kinofilm.ru|uploadimagex.com|uptube.su|uvideos.ru|v-chulkahh.ru|video-magnet.com|vodkov.net|vodvore.net|vserisunki.ru|vzale.tv|wifilm.ru|x-zona.org|xxlbunny.com|xxx-russian.ru|xyu.tv (advblock.txt: 3349) - -#ab2p-block-request-Aj-Cj-when-R39 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R39} \ -} -# /smw.js$script,domain=3dnews.ru (advblock.txt: 5396) -/(.*/)?smw\.js -smw.js*. - -#ab2p-block-request-Aj-Cj-when-R56 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R56} \ -} -# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1263) +# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1277) /(.*/)?p -#ab2p-block-request-Aj-Cj-when-R684t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R684t} \ +#ab2p-block-request-Aj-Cj-when-R177t +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R177t} \ } -# |https://$script,third-party,domain=activistpost.com|addictinginfo.org|ailyheadlines.net|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46063) -# |https://$script,third-party,domain=activistpost.com|addictinginfo.org|ailyheadlines.net|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35578) +# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina.txt: 1270) -#ab2p-block-request-Aj-Cj-when-R685t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R685t} \ +#ab2p-block-request-Aj-Cj-when-R78 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R78} \ } -# |http://$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46061) -# |http://$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35576) - -#ab2p-block-request-Aj-Cj-when-R75 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R75} \ -} -# ||com^$script,domain=adultmult.tv (advblock.txt: 6645) - -#ab2p-block-request-Aj-Cj-when-R686t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R686t} \ -} -# /http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+/$script,third-party,domain=affluentinvestor.com|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|allthumbsgaming.com|barbwire.com|bighealthreport.com|bulletsfirst.net|cheatsheet.com|clashdaily.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|creationrevolution.com|dailysurge.com|dccrimestories.com|drginaloudon.com|drhotze.com|eaglerising.com|freedomoutpost.com|godfatherpolitics.com|instigatornews.com|joeforamerica.com|libertyalliance.com|libertymafia.com|libertyunyielding.com|mediafire.com|menrec.com|nickadamsinamerica.com|patriot.tv|patriotoutdoornews.com|photobucket.com|pitgrit.com|politicaloutcast.com|primewire.ag|promptfile.com|quinhillyer.com|shark-tank.com|stevedeace.com|themattwalshblog.com|therealside.com|tinypic.com|victoriajackson.com|zionica.com (easylistchina+easylist.txt: 41911) -/(.*/)?http://\[a-zA-Z0-9-\]\+\\\.\[a-z\]\+\\/\..*\[a-zA-Z0-9\]\+/ -/http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+ -# /http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+/$script,third-party,domain=affluentinvestor.com|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|allthumbsgaming.com|barbwire.com|bighealthreport.com|bulletsfirst.net|cheatsheet.com|clashdaily.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|creationrevolution.com|dailysurge.com|dccrimestories.com|drginaloudon.com|drhotze.com|eaglerising.com|freedomoutpost.com|godfatherpolitics.com|instigatornews.com|joeforamerica.com|libertyalliance.com|libertymafia.com|libertyunyielding.com|mediafire.com|menrec.com|nickadamsinamerica.com|patriot.tv|patriotoutdoornews.com|photobucket.com|pitgrit.com|politicaloutcast.com|primewire.ag|promptfile.com|quinhillyer.com|shark-tank.com|stevedeace.com|themattwalshblog.com|therealside.com|tinypic.com|victoriajackson.com|zionica.com (easylist.txt: 31426) -/(.*/)?http://\[a-zA-Z0-9-\]\+\\\.\[a-z\]\+\\/\..*\[a-zA-Z0-9\]\+/ -/http://[a-zA-Z0-9-]+\.[a-z]+\/.*[a-zA-Z0-9]+ - -#ab2p-block-request-Aj-Cj-when-R84 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R84} \ -} -# .info^$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|royalvids.eu|tvmuse.com|tvmuse.eu|vidspot.net|vidtomp3.com (easylistchina+easylist.txt: 41899) -/.*\.info[^\w%.-] -.*.info -# .info^$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|royalvids.eu|tvmuse.com|tvmuse.eu|vidspot.net|vidtomp3.com (easylist.txt: 31414) -/.*\.info[^\w%.-] -.*.info - -#ab2p-block-request-Aj-Cj-when-R85 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R85} \ -} -# ^guid=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylistchina+easylist.txt: 41918) -/(.*[^\w%.-])?guid= -# ?random=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylistchina+easylist.txt: 41917) -/.*\?random= -# ^guid=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylist.txt: 31433) -/(.*[^\w%.-])?guid= -# ?random=$script,domain=allmyvideos.net|mediafire.com|mooshare.biz|muchshare.net|tvmuse.com|tvmuse.eu|vidspot.net (easylist.txt: 31432) -/.*\?random= - -#ab2p-block-request-Aj-Cj-when-R96 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R96} \ -} -# ||ru/code/$script,domain=aphorisme.ru|kinopod.ru|mp3ray.ru|tusnya.net (advblock.txt: 3255) - -#ab2p-block-request-Aj-Cj-when-R687t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R687t} \ -} -# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina+easylist.txt: 1256) - -#ab2p-block-request-Aj-Cj-when-R185 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R185} \ -} -# ||amazonaws.com^$script,domain=dsero.com|ginormousbargains.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com|unfair.co (easylistchina+easylist.txt: 46076) -.amazonaws.com -# ||amazonaws.com^$script,domain=dsero.com|ginormousbargains.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com|unfair.co (easylist.txt: 35591) -.amazonaws.com - -#ab2p-block-request-Aj-Cj-when-R186 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R186} \ -} -# ||zapto.org^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46097) -.zapto.org -# ||sytes.net^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46093) -.sytes.net -# ||servequake.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46091) -.servequake.com -# ||servepics.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46090) -.servepics.com -# ||servemp3.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46089) -.servemp3.com -# ||no-ip.biz^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46086) -.no-ip.biz -# ||zapto.org^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35612) -.zapto.org -# ||sytes.net^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35608) -.sytes.net -# ||servequake.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35606) -.servequake.com -# ||servepics.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35605) -.servepics.com -# ||servemp3.com^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35604) -.servemp3.com -# ||no-ip.biz^$script,domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35601) -.no-ip.biz - -#ab2p-block-request-Aj-Cj-when-R688t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R688t} \ -} -# |https://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylistchina+easylist.txt: 45862) -# |http://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylistchina+easylist.txt: 45861) -# |https://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylist.txt: 35377) -# |http://$script,third-party,domain=exashare.com|twer.info|youwatch.org (easylist.txt: 35376) - -#ab2p-block-request-Aj-Cj-when-R197 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R197} \ -} -# ||cloudfront.net^$script,domain=extremetech.com (easylistchina+easylist.txt: 39970) -.cloudfront.net -# ||cloudfront.net^$script,domain=extremetech.com (easylist.txt: 29485) -.cloudfront.net - -#ab2p-block-request-Aj-Cj-when-R689t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R689t} \ -} -# |https://$script,third-party,domain=extremetech.com (easylistchina+easylist.txt: 45854) -# |http://$script,third-party,domain=extremetech.com (easylistchina+easylist.txt: 45853) -# |https://$script,third-party,domain=extremetech.com (easylist.txt: 35369) -# |http://$script,third-party,domain=extremetech.com (easylist.txt: 35368) - -#ab2p-block-request-Aj-Cj-when-R199 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R199} \ -} -# ||msecnd.net/script/$script,domain=eztv.ag|firedrive.com|limetorrents.cc|monova.org|sankakucomplex.com|sockshare.com|ukpirate.org|unblocked.la|userscloud.com|yourbittorrent.com (easylistchina+easylist.txt: 44041) -.msecnd.net/script/ -# ||msecnd.net/script/$script,domain=eztv.ag|firedrive.com|limetorrents.cc|monova.org|sankakucomplex.com|sockshare.com|ukpirate.org|unblocked.la|userscloud.com|yourbittorrent.com (easylist.txt: 33556) -.msecnd.net/script/ - -#ab2p-block-request-Aj-Cj-when-R690t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R690t} \ -} -# |https://$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 45882) -# |http://$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 45881) -# |https://$script,third-party,domain=filmovizija.in (easylist.txt: 35397) -# |http://$script,third-party,domain=filmovizija.in (easylist.txt: 35396) - -#ab2p-block-request-Aj-Cj-when-R219 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R219} \ -} -# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina+easylist.txt: 1140) +# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina.txt: 1160) /(.*/)?cooperation/.* -#ab2p-block-request-Aj-Cj-when-R229 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R229} \ +#ab2p-block-request-Aj-Cj-when-R90 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R90} \ } -# -torrent.*/t/$script,domain=free-torrent.org|free-torrents.org|game-torrent.info (advblock.txt: 5367) -/.*-torrent\..*/t/ -.*-torrent.*./(.*/)?t/ - -#ab2p-block-request-Aj-Cj-when-R691t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R691t} \ -} -# $third-party,script,domain=free-torrents.org|hentaichan.ru|nude-moon.com (advblock.txt: 5365) - - -#ab2p-block-request-Aj-Cj-when-R692t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R692t} \ -} -# |http://$script,third-party,domain=have69.net|i-gay.org (easylistchina+easylist.txt: 46226) -# |http://$script,third-party,domain=have69.net|i-gay.org (easylist.txt: 35741) - -#ab2p-block-request-Aj-Cj-when-R266 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R266} \ -} -# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina+easylist.txt: 4441) +# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina.txt: 4431) .s.yimg.com/ja/ap/ -#ab2p-block-request-Aj-Cj-when-R304 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R304} \ -} -# ||cdn77.org^$script,domain=kinox.to|movie4k.to|thevideo.me|unblocked.la|vidup.me (easylistchina+easylist.txt: 42498) -.cdn77.org -# ||cdn77.org^$script,domain=kinox.to|movie4k.to|thevideo.me|unblocked.la|vidup.me (easylist.txt: 32013) -.cdn77.org - -#ab2p-block-request-Aj-Cj-when-R693t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R693t} \ -} -# |http://$script,subdocument,third-party,domain=linkshrink.net (easylistchina+easylist.txt: 45925) -# |http://$script,subdocument,third-party,domain=linkshrink.net (easylist.txt: 35440) - -#ab2p-block-request-Aj-Cj-when-R325 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R325} \ -} -# ||c-cdn.coub.com^$script,domain=mail.ru (advblock.txt: 6811) -.c-cdn.coub.com - -#ab2p-block-request-Aj-Cj-when-R356 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R356} \ -} -# ||amazonaws.com^*=taboola-$script,domain=ndtv.com (easylistchina+easylist.txt: 39759) -.amazonaws.com/.*=taboola- -# ||amazonaws.com^*&dontMissWithoutHeader=$script,domain=ndtv.com (easylistchina+easylist.txt: 39758) -.amazonaws.com/.*&dontMissWithoutHeader= -# ||amazonaws.com^*=taboola-$script,domain=ndtv.com (easylist.txt: 29274) -.amazonaws.com/.*=taboola- -# ||amazonaws.com^*&dontMissWithoutHeader=$script,domain=ndtv.com (easylist.txt: 29273) -.amazonaws.com/.*&dontMissWithoutHeader= - -#ab2p-block-request-Aj-Cj-when-R694t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R694t} \ -} -# |https://$script,third-party,domain=patheos.com (easylistchina+easylist.txt: 45845) -# |http://$script,third-party,domain=patheos.com (easylistchina+easylist.txt: 45844) -# |https://$script,third-party,domain=patheos.com (easylist.txt: 35360) -# |http://$script,third-party,domain=patheos.com (easylist.txt: 35359) - -#ab2p-block-request-Aj-Cj-when-R695t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R695t} \ -} -# |https://$script,third-party,domain=photobucket.com (easylistchina+easylist.txt: 45897) -# |http://$script,third-party,domain=photobucket.com (easylistchina+easylist.txt: 45896) -# |https://$script,third-party,domain=photobucket.com (easylist.txt: 35412) -# |http://$script,third-party,domain=photobucket.com (easylist.txt: 35411) - -#ab2p-block-request-Aj-Cj-when-R380 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R380} \ -} -# ||forum-gta.com^$script,domain=phpbb3.x-tk.ru (advblock.txt: 5734) -.forum-gta.com - -#ab2p-block-request-Aj-Cj-when-R384 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R384} \ -} -# /static/js/pop*.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 41915) -/(.*/)?static/js/pop.*\.js -# /poptest.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 41914) -/(.*/)?poptest\.js -poptest.js*. -# /static/js/pop*.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 31430) -/(.*/)?static/js/pop.*\.js -# /poptest.js$script,domain=pirateproxy.sx|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 31429) -/(.*/)?poptest\.js -poptest.js*. - -#ab2p-block-request-Aj-Cj-when-R390 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R390} \ -} -# ||politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/$script,domain=politicususa.com (easylistchina+easylist.txt: 44411) -.politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/ -# ||politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/$script,domain=politicususa.com (easylist.txt: 33926) -.politicususa.netdna-cdn.com/wp-content/uploads/shadowbox-js/ - -#ab2p-block-request-Aj-Cj-when-R696t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R696t} \ -} -# |https://$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45888) -# |http://$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45887) -# |https://$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35403) -# |http://$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35402) - -#ab2p-block-request-Aj-Cj-when-R697t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R697t} \ -} -# |https://$script,third-party,domain=promptfile.com (easylistchina+easylist.txt: 45872) -# |http://$script,third-party,domain=promptfile.com (easylistchina+easylist.txt: 45871) -# |https://$script,third-party,domain=promptfile.com (easylist.txt: 35387) -# |http://$script,third-party,domain=promptfile.com (easylist.txt: 35386) - -#ab2p-block-request-Aj-Cj-when-R422 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R422} \ -} -# ||rackcdn.com^$script,domain=search.aol.com (easylistchina+easylist.txt: 40821) -.rackcdn.com -# ||rackcdn.com^$script,domain=search.aol.com (easylist.txt: 30336) -.rackcdn.com - -#ab2p-block-request-Aj-Cj-when-R441 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R441} \ -} -# ||smi2.tv/aa/$script,domain=smi2.ru (advblock.txt: 6406) -.smi2.tv/aa/ - -#ab2p-block-request-Aj-Cj-when-R442 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R442} \ -} -# /?placement=$script,domain=sockshare.com (easylistchina+easylist.txt: 41904) -/(.*/)?\?placement= -# /?placement=$script,domain=sockshare.com (easylist.txt: 31419) -/(.*/)?\?placement= - -#ab2p-block-request-Aj-Cj-when-R698t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R698t} \ -} -# |http://*.com^*|*$script,third-party,domain=sporcle.com (easylistchina+easylist.txt: 41920) -/.*\.com[^\w%.-].*\|.* -.*.com/.*\|.* -# |http://*.com^*|*$script,third-party,domain=sporcle.com (easylist.txt: 31435) -/.*\.com[^\w%.-].*\|.* -.*.com/.*\|.* - -#ab2p-block-request-Aj-Cj-when-R457 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R457} \ -} -# ^user_id^*^stream_id^$script,domain=tapochek.net|unionpeer.org (advblock.txt: 5405) -/(.*[^\w%.-])?user_id[^\w%.-].*[^\w%.-]stream_id[^\w%.-] - -#ab2p-block-request-Aj-Cj-when-R489 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R489} \ -} -# /nexp/dok2v=*/cloudflare/rocket.js$script,domain=ubuntugeek.com (easylistchina+easylist.txt: 41913) -/(.*/)?nexp/dok2v=.*/cloudflare/rocket\.js -# /nexp/dok2v=*/cloudflare/rocket.js$script,domain=ubuntugeek.com (easylist.txt: 31428) -/(.*/)?nexp/dok2v=.*/cloudflare/rocket\.js - -#ab2p-block-request-Aj-Cj-when-R506 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R506} \ -} -# /wp-content/plugins/wbounce/*$script,domain=viralcraze.net (easylistchina+easylist.txt: 41916) -/(.*/)?wp-content/plugins/wbounce/.* -# /wp-content/plugins/wbounce/*$script,domain=viralcraze.net (easylist.txt: 31431) -/(.*/)?wp-content/plugins/wbounce/.* - -#ab2p-block-request-Aj-Cj-when-R513 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R513} \ -} -# ||twt-static.washtimes.com^$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45923) -.twt-static.washtimes.com -# ||twt-static.washtimes.com^$script,domain=washingtontimes.com (easylist.txt: 35438) -.twt-static.washtimes.com - -#ab2p-block-request-Aj-Cj-when-R517 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R517} \ -} -# ||static.plista.com^$script,domain=wg-gesucht.de (easylistchina+easylist.txt: 44890) -.static.plista.com -# ||static.plista.com^$script,domain=wg-gesucht.de (easylist.txt: 34405) -.static.plista.com - -#ab2p-block-request-Aj-Cj-when-R527 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R527} \ -} -# .info^$script,domain=www.pornhub.com (easylistchina+easylist.txt: 46221) -/.*\.info[^\w%.-] -.*.info -# .info^$script,domain=www.pornhub.com (easylist.txt: 35736) -/.*\.info[^\w%.-] -.*.info - -#ab2p-block-request-Aj-Cj-when-R534 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R534} \ -} -# ||yimg.com/ao/adv/$script,domain=yahoo.com (easylistchina+easylist.txt: 45735) -.yimg.com/ao/adv/ -# ||yimg.com/ao/adv/$script,domain=yahoo.com (easylist.txt: 35250) -.yimg.com/ao/adv/ - -#ab2p-block-request-Aj-Cj-when-R537 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R537} \ -} -# ||youporn.com^$script,domain=youporn.com (easylistchina+easylist.txt: 47051) -.youporn.com -# ||youporn.com^$script,domain=youporn.com (easylist.txt: 36566) -.youporn.com - -#ab2p-block-request-Aj-Cj-when-R538 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R538} \ -} -# ||youporn.com^$script,subdocument,domain=youporngay.com (easylistchina+easylist.txt: 47052) -.youporn.com -# ||youporn.com^$script,subdocument,domain=youporngay.com (easylist.txt: 36567) -.youporn.com - -#ab2p-block-request-Aj-Cj-when-R539 -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R539} \ -} -# ||google.com/jsapi?autoload=*%22ads%22$script,domain=youtube.com (easylistchina+easylist.txt: 43253) -.google.com/jsapi\?autoload=.*%22ads%22 -# ||google.com/jsapi?autoload=*%22ads%22$script,domain=youtube.com (easylist.txt: 32768) -.google.com/jsapi\?autoload=.*%22ads%22 - -#ab2p-block-request-Aj-Cj-when-Rn699t -{+client-header-tagger{ab2p-block-request-Aj-Cj-when-Rn699t} \ -} -# ||graphics.pop6.com/javascript/$script,third-party,domain=~adultfriendfinder.co.uk|~adultfriendfinder.com (easylistchina+easylist.txt: 41570) -.graphics.pop6.com/javascript/ -# ||graphics.pop6.com/javascript/$script,third-party,domain=~adultfriendfinder.co.uk|~adultfriendfinder.com (easylist.txt: 31085) -.graphics.pop6.com/javascript/ - #ab2p-block-request-Aj-Cj-when-Rt {+client-header-tagger{ab2p-block-request-Aj-Cj-when-Rt} \ } -# |http://creative.*/smart.js$script,third-party (easylistchina+easylist.txt: 41921) -creative.*./(.*/)?smart\.js -# .info/*.js?guid=$script,third-party (easylistchina+easylist.txt: 41898) -/.*\.info/.*\.js\?guid= -.*.info/.*\.js\?guid= -# .com/jquery/*.js?_t=$script,third-party (easylistchina+easylist.txt: 41897) -/.*\.com/jquery/.*\.js\?_t= -.*.com/jquery/.*\.js\?_t= -# ||swarmjam.com^$script,third-party (easylistchina+easylist.txt: 41006) -.swarmjam.com -# ||surveywriter.net^$script,third-party (easylistchina+easylist.txt: 41003) -.surveywriter.net -# ||redtram.com^$script,third-party (easylistchina+easylist.txt: 40839) -.redtram.com -# ||merdb.org/js/$script,third-party (easylistchina+easylist.txt: 40604) -.merdb.org/js/ -# ||jsfeedget.com^$script,third-party (easylistchina+easylist.txt: 40481) -.jsfeedget.com -# ||dealzone.co.za^$script,third-party (easylistchina+easylist.txt: 40124) -.dealzone.co.za -# ||buyt.in/api?widgets=$script,third-party (easylistchina+easylist.txt: 39901) -.buyt.in/api\?widgets= -# ||blinkx.com/?i=*&adc_pub_id=$script,third-party (easylistchina+easylist.txt: 39862) -.blinkx.com/\?i=.*&adc_pub_id= -# ||178.17.164.58^$script,third-party (easylistchina+easylist.txt: 39586) -.178.17.164.58 -# /Tag.rb$script,third-party (easylistchina+easylist.txt: 16997) -/(.*/)?Tag\.rb -Tag.rb*. -# /Tag.eng$script,third-party (easylistchina+easylist.txt: 16996) -/(.*/)?Tag\.eng -Tag.eng*. -# /mediahosting.engine$script,third-party (easylistchina+easylist.txt: 16995) -/(.*/)?mediahosting\.engine -mediahosting.engine*. -# /w/d/capu.php?z=$script,third-party (easylistchina+easylist.txt: 16163) -/(.*/)?w/d/capu\.php\?z= -# /script/banniere_*.php?id=*&ref=$script,third-party (easylistchina+easylist.txt: 15578) -/(.*/)?script/banniere_.*\.php\?id=.*&ref= -# /rss2/?np=*&hp=$script,third-party (easylistchina+easylist.txt: 15558) -/(.*/)?rss2/\?np=.*&hp= -# /rss2/?hp=*&np=$script,third-party (easylistchina+easylist.txt: 15557) -/(.*/)?rss2/\?hp=.*&np= -# /rss2/?*&np=*&hp=$script,third-party (easylistchina+easylist.txt: 15556) -/(.*/)?rss2/\?.*&np=.*&hp= -# /rss2/?*&hp=*&np=$script,third-party (easylistchina+easylist.txt: 15555) -/(.*/)?rss2/\?.*&hp=.*&np= -# /cb.php?sub$script,third-party (easylistchina+easylist.txt: 13849) -/(.*/)?cb\.php\?sub -# .se/?placement=$script,subdocument,third-party (easylistchina+easylist.txt: 11056) -/.*\.se/\?placement= -.*.se/\?placement= -# ||yxdyk.com^$script,third-party (easylistchina+easylist.txt: 1019) +# ||yxdyk.com^$script,third-party (easylistchina.txt: 1042) .yxdyk.com -# ||685wo.com^$script,third-party (easylistchina+easylist.txt: 580) +# ||685wo.com^$script,third-party (easylistchina.txt: 594) .685wo.com -# |http://p.*.com/view.php?uid=$script,third-party (easylistchina+easylist.txt: 499) +# |http://p.*.com/view.php?uid=$script,third-party (easylistchina.txt: 511) p.*./.*\.com/view\.php\?uid= p.*.com/view\.php\?uid= -# |http://news.*.html|$script,third-party (easylistchina+easylist.txt: 498) -news.*./.*\.html$ -news.*.html -# |http://*:*/s.php?id=$script,third-party (easylistchina+easylist.txt: 496) +# |http://*:*/s.php?id=$script,third-party (easylistchina.txt: 509) /.*:.*/s\.php\?id= .*:*./(.*/)?s\.php\?id= -# |http://*//s.php?id=$script,third-party (easylistchina+easylist.txt: 495) +# |http://*//s.php?id=$script,third-party (easylistchina.txt: 508) /(.*/)?/s\.php\?id= -# |http://*.tw/s.php?id=$script,third-party (easylistchina+easylist.txt: 494) +# |http://*.tw/s.php?id=$script,third-party (easylistchina.txt: 507) /.*\.tw/s\.php\?id= .*.tw/s\.php\?id= -# |http://*.info/s.php?id=$script,third-party (easylistchina+easylist.txt: 493) +# |http://*.info/s.php?id=$script,third-party (easylistchina.txt: 506) /.*\.info/s\.php\?id= .*.info/s\.php\?id= -# |http://*.com/s.php?id=$script,third-party (easylistchina+easylist.txt: 492) +# |http://*.com/s.php?id=$script,third-party (easylistchina.txt: 505) /.*\.com/s\.php\?id= .*.com/s\.php\?id= -# |http://*.cn/s.php?id=$script,third-party (easylistchina+easylist.txt: 491) +# |http://*.cn/s.php?id=$script,third-party (easylistchina.txt: 504) /.*\.cn/s\.php\?id= .*.cn/s\.php\?id= -# |http://*.cc/s.php?id=$script,third-party (easylistchina+easylist.txt: 490) +# |http://*.cc/s.php?id=$script,third-party (easylistchina.txt: 503) /.*\.cc/s\.php\?id= .*.cc/s\.php\?id= -# /i.php?z=$script,third-party (easylistchina+easylist.txt: 475) +# /v.php?z=$script,third-party (easylistchina.txt: 499) +/(.*/)?v\.php\?z= +# /i.php?z=$script,third-party (easylistchina.txt: 487) /(.*/)?i\.php\?z= -# .com/mediaController.php?pid=$script,third-party (easylistchina+easylist.txt: 462) +# .com/mediaController.php?pid=$script,third-party (easylistchina.txt: 474) /.*\.com/mediaController\.php\?pid= .*.com/mediaController\.php\?pid= -# ||to/code/$third-party,script (advblock.txt: 3030) -# ||newanons.ru^$third-party,script (advblock.txt: 2695) -.newanons.ru -# ||fotooplata.ru^$third-party,script (advblock.txt: 2275) -.fotooplata.ru -# ||api.market-place.su^$third-party,script (advblock.txt: 1990) -.api.market-place.su -# ||news.findres.com^$third-party,script,subdocument (advblock.txt: 1804) -.news.findres.com -# ||xap.ru^$third-party,script (advblock.txt: 1743) -.xap.ru -# ||kinozov.ru^$third-party,script (advblock.txt: 1134) -.kinozov.ru -# ||infocar.ru/media/$third-party,script (advblock.txt: 1084) -.infocar.ru/media/ -# ||fotkidepo.ru^$third-party,script (advblock.txt: 1002) -.fotkidepo.ru -# |http://u.to/$third-party,script,subdocument (advblock.txt: 700) -u.to -# ||pw^$third-party,script (advblock.txt: 678) -# ||info^$third-party,script (advblock.txt: 677) -# ||asia^$third-party,script,subdocument (advblock.txt: 676) -# ||servebbs.net^$third-party,script,subdocument (advblock.txt: 673) -.servebbs.net -# ||quelliclub.ru^$third-party,script,subdocument (advblock.txt: 672) -.quelliclub.ru -# ||itsaol.com^$third-party,script,subdocument (advblock.txt: 671) -.itsaol.com -# ||dyndns.$third-party,script,subdocument (advblock.txt: 670) -.dyndns.*. -# ||dyndns-$third-party,script,subdocument (advblock.txt: 669) -.dyndns-*. -# ||chickenkiller.com^$third-party,script,subdocument (advblock.txt: 668) -.chickenkiller.com -# ||changeip.name^$third-party,script,subdocument (advblock.txt: 667) -.changeip.name -# ||ru/text_show.php?id=$third-party,script (advblock.txt: 633) -# ||ru/r/get/?id=*&div=$third-party,script (advblock.txt: 632) -# ||in/?for=$third-party,script (advblock.txt: 620) -# ||com/video/*^format=rotator&$third-party,script (advblock.txt: 619) -# ||com/bout.php?id=$third-party,script (advblock.txt: 617) -# ||com/bgout.php?id=$third-party,script (advblock.txt: 616) -# ||biz/v^$third-party,script (advblock.txt: 615) -# /youtube.php|$third-party,script (advblock.txt: 602) -/(.*/)?youtube\.php$ -youtube.php -# /vkshow.php?id=$third-party,script (advblock.txt: 592) -/(.*/)?vkshow\.php\?id= -# /vknotifier1.php?id=$third-party,script (advblock.txt: 591) -/(.*/)?vknotifier1\.php\?id= -# /vk_code.php?id=$third-party,script (advblock.txt: 590) -/(.*/)?vk_code\.php\?id= -# /sticker?id=$third-party,script (advblock.txt: 547) -/(.*/)?sticker\?id= -# /pixel2/video?$third-party,script (advblock.txt: 508) -/(.*/)?pixel2/video\? -# /news.php?sid=*&bn=$third-party,script (advblock.txt: 502) -/(.*/)?news\.php\?sid=.*&bn= -# /in.cgi?$third-party,script,subdocument (advblock.txt: 469) -/(.*/)?in\.cgi\? -# /get.php?user_id=*&mode=$third-party,script (advblock.txt: 451) -/(.*/)?get\.php\?user_id=.*&mode= -# /get.js?user_id=$third-party,script (advblock.txt: 450) -/(.*/)?get\.js\?user_id= -# /cu.php?$third-party,script (advblock.txt: 435) -/(.*/)?cu\.php\? -# /cszz/*$third-party,script (advblock.txt: 432) -/(.*/)?cszz/.* -# /cshi/*$third-party,script (advblock.txt: 431) -/(.*/)?cshi/.* -# /bshow.php?dimension=$third-party,script (advblock.txt: 416) -/(.*/)?bshow\.php\?dimension= -# /b?size=*&catgry=$third-party,script (advblock.txt: 387) -/(.*/)?b\?size=.*&catgry= -# /^https?://([^.]+\.)+[a-z]+\.(?:biz|ru|space)/[a-z][/?][-a-z0-9_?&=]{5,45}$/$third-party,script (advblock.txt: 362) -/(.*/)?[^\w%.-]https\?://\(\[[^\w%.-]\.\]\+\\\.\)\+\[a-z\]\+\\\.\(\?:biz\|ru\|space\)/\[a-z\]\[/\?\]\[-a-z0-9_\?&=\]\{5,45\}\$/ -/^https?://([^.]+\.)+[a-z]+\.(?:biz|ru|space)/[a-z][/?][-a-z0-9_?&=]{5,45}$ -# /?get_code&template_uid=$third-party,script (advblock.txt: 358) -/(.*/)?\?get_code&template_uid= -# //jsn.$third-party,script (advblock.txt: 352) -jsn.*. -# |http://creative.*/smart.js$script,third-party (easylist.txt: 31436) -creative.*./(.*/)?smart\.js -# .info/*.js?guid=$script,third-party (easylist.txt: 31413) -/.*\.info/.*\.js\?guid= -.*.info/.*\.js\?guid= -# .com/jquery/*.js?_t=$script,third-party (easylist.txt: 31412) -/.*\.com/jquery/.*\.js\?_t= -.*.com/jquery/.*\.js\?_t= -# ||swarmjam.com^$script,third-party (easylist.txt: 30521) -.swarmjam.com -# ||surveywriter.net^$script,third-party (easylist.txt: 30518) -.surveywriter.net -# ||redtram.com^$script,third-party (easylist.txt: 30354) -.redtram.com -# ||merdb.org/js/$script,third-party (easylist.txt: 30119) -.merdb.org/js/ -# ||jsfeedget.com^$script,third-party (easylist.txt: 29996) -.jsfeedget.com -# ||dealzone.co.za^$script,third-party (easylist.txt: 29639) -.dealzone.co.za -# ||buyt.in/api?widgets=$script,third-party (easylist.txt: 29416) -.buyt.in/api\?widgets= -# ||blinkx.com/?i=*&adc_pub_id=$script,third-party (easylist.txt: 29377) -.blinkx.com/\?i=.*&adc_pub_id= -# ||178.17.164.58^$script,third-party (easylist.txt: 29101) -.178.17.164.58 -# /Tag.rb$script,third-party (easylist.txt: 6512) -/(.*/)?Tag\.rb -Tag.rb*. -# /Tag.eng$script,third-party (easylist.txt: 6511) -/(.*/)?Tag\.eng -Tag.eng*. -# /mediahosting.engine$script,third-party (easylist.txt: 6510) -/(.*/)?mediahosting\.engine -mediahosting.engine*. -# /w/d/capu.php?z=$script,third-party (easylist.txt: 5678) -/(.*/)?w/d/capu\.php\?z= -# /script/banniere_*.php?id=*&ref=$script,third-party (easylist.txt: 5093) -/(.*/)?script/banniere_.*\.php\?id=.*&ref= -# /rss2/?np=*&hp=$script,third-party (easylist.txt: 5073) -/(.*/)?rss2/\?np=.*&hp= -# /rss2/?hp=*&np=$script,third-party (easylist.txt: 5072) -/(.*/)?rss2/\?hp=.*&np= -# /rss2/?*&np=*&hp=$script,third-party (easylist.txt: 5071) -/(.*/)?rss2/\?.*&np=.*&hp= -# /rss2/?*&hp=*&np=$script,third-party (easylist.txt: 5070) -/(.*/)?rss2/\?.*&hp=.*&np= -# /cb.php?sub$script,third-party (easylist.txt: 3364) -/(.*/)?cb\.php\?sub -# .se/?placement=$script,subdocument,third-party (easylist.txt: 571) -/.*\.se/\?placement= -.*.se/\?placement= - -#ab2p-block-request-Anacov-Cnacov-Xx -{+client-header-tagger{ab2p-block-request-Anacov} \ - +server-header-tagger{ab2p-block-request-Cnacov} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -# /publicidad.$~object-subrequest,~stylesheet (easylistchina+easylist.txt: 15416) -/(.*/)?publicidad\. -publicidad.*. -# /publicidad.$~object-subrequest,~stylesheet (easylist.txt: 4931) -/(.*/)?publicidad\. -publicidad.*. - -#ab2p-block-request-Anahmov-Cnahmov-Xx -{+client-header-tagger{ab2p-block-request-Anahmov} \ - +server-header-tagger{ab2p-block-request-Cnahmov} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -TAG:^ab2p-block-request-Anahmov-Cnahmov-Xx$ - -#ab2p-block-request-Anahmov-Cnahmov-Xx-when-Rt -{+client-header-tagger{ab2p-block-request-Anahmov-Cnahmov-Xx-when-Rt} \ -} -# ||visiblemeasures.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37951) -.visiblemeasures.com -# ||videoplaza.tv^$~object-subrequest,third-party (easylistchina+easylist.txt: 37932) -.videoplaza.tv -# ||videoplaza.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37929) -.videoplaza.com -# ||partner.video.syndication.msn.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37148) -.partner.video.syndication.msn.com -# ||objects.tremormedia.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 37052) -.objects.tremormedia.com -# ||liverail.com^$~object-subrequest,third-party (easylistchina+easylist.txt: 36730) -.liverail.com -# ||lightningcast.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 36705) -.lightningcast.net -# ||fwmrm.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 36307) -.fwmrm.net -# ||doubleclick.net^*/adj/$~object-subrequest,third-party (easylistchina+easylist.txt: 36071) -.doubleclick.net/.*/adj/ -# ||doubleclick.net^*/adi/$~object-subrequest,third-party (easylistchina+easylist.txt: 36070) -.doubleclick.net/.*/adi/ -# ||doubleclick.net^*/ad/$~object-subrequest,third-party (easylistchina+easylist.txt: 36069) -.doubleclick.net/.*/ad/ -# ||doubleclick.net/adx/$~object-subrequest,third-party (easylistchina+easylist.txt: 35989) -.doubleclick.net/adx/ -# ||doubleclick.net/adj/$~object-subrequest,third-party (easylistchina+easylist.txt: 35987) -.doubleclick.net/adj/ -# ||doubleclick.net/adi/$~object-subrequest,third-party (easylistchina+easylist.txt: 35986) -.doubleclick.net/adi/ -# ||adap.tv^$~object-subrequest,third-party (easylistchina+easylist.txt: 34913) -.adap.tv -# ||ad.doubleclick.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 34885) -.ad.doubleclick.net -# ||2mdn.net^$~object-subrequest,third-party (easylistchina+easylist.txt: 34785) -.2mdn.net -# ||visiblemeasures.com^$~object-subrequest,third-party (easylist.txt: 27466) -.visiblemeasures.com -# ||videoplaza.tv^$~object-subrequest,third-party (easylist.txt: 27447) -.videoplaza.tv -# ||videoplaza.com^$~object-subrequest,third-party (easylist.txt: 27444) -.videoplaza.com -# ||partner.video.syndication.msn.com^$~object-subrequest,third-party (easylist.txt: 26663) -.partner.video.syndication.msn.com -# ||objects.tremormedia.com^$~object-subrequest,third-party (easylist.txt: 26567) -.objects.tremormedia.com -# ||liverail.com^$~object-subrequest,third-party (easylist.txt: 26245) -.liverail.com -# ||lightningcast.net^$~object-subrequest,third-party (easylist.txt: 26220) -.lightningcast.net -# ||fwmrm.net^$~object-subrequest,third-party (easylist.txt: 25822) -.fwmrm.net -# ||doubleclick.net^*/adj/$~object-subrequest,third-party (easylist.txt: 25586) -.doubleclick.net/.*/adj/ -# ||doubleclick.net^*/adi/$~object-subrequest,third-party (easylist.txt: 25585) -.doubleclick.net/.*/adi/ -# ||doubleclick.net^*/ad/$~object-subrequest,third-party (easylist.txt: 25584) -.doubleclick.net/.*/ad/ -# ||doubleclick.net/adx/$~object-subrequest,third-party (easylist.txt: 25504) -.doubleclick.net/adx/ -# ||doubleclick.net/adj/$~object-subrequest,third-party (easylist.txt: 25502) -.doubleclick.net/adj/ -# ||doubleclick.net/adi/$~object-subrequest,third-party (easylist.txt: 25501) -.doubleclick.net/adi/ -# ||adap.tv^$~object-subrequest,third-party (easylist.txt: 24428) -.adap.tv -# ||ad.doubleclick.net^$~object-subrequest,third-party (easylist.txt: 24400) -.ad.doubleclick.net -# ||2mdn.net^$~object-subrequest,third-party (easylist.txt: 24300) -.2mdn.net - -#ab2p-block-request-Anaosv-Cnaosv-Xx -{+client-header-tagger{ab2p-block-request-Anaosv} \ - +server-header-tagger{ab2p-block-request-Cnaosv} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -# /branding/css/*$~object-subrequest,~object (advblock.txt: 413) -/(.*/)?branding/css/.* #ab2p-block-request-Anaov-Cnaov-Xx {+client-header-tagger{ab2p-block-request-Anaov} \ +server-header-tagger{ab2p-block-request-Cnaov} \ +client-header-tagger{ab2p-block-request-Xx} \ } -# ||pagead2.googlesyndication.com^$~object-subrequest (easylistchina+easylist.txt: 40726) -.pagead2.googlesyndication.com -# ||freewheel.mtgx.tv^$~object-subrequest (easylistchina+easylist.txt: 40287) -.freewheel.mtgx.tv -# ?getad=&$~object-subrequest (easylistchina+easylist.txt: 16434) -/.*\?getad=& -# /oascentral.$~object-subrequest (easylistchina+easylist.txt: 15135) -/(.*/)?oascentral\. -oascentral.*. -# /adriver_$~object-subrequest (easylistchina+easylist.txt: 12314) -/(.*/)?adriver_ -# /adriver.$~object-subrequest (easylistchina+easylist.txt: 12312) -/(.*/)?adriver\. -adriver.*. -# /admanager/*$~object-subrequest (easylistchina+easylist.txt: 12141) -/(.*/)?admanager/.* -# /admanager.$~object-subrequest (easylistchina+easylist.txt: 12140) -/(.*/)?admanager\. -admanager.*. -# /adcontent.$~object-subrequest (easylistchina+easylist.txt: 11888) -/(.*/)?adcontent\. -adcontent.*. -# .net/ad/$~object-subrequest (easylistchina+easylist.txt: 10994) -/.*\.net/ad/ -.*.net/ad/ -# .adriver.$~object-subrequest (easylistchina+easylist.txt: 10836) -/.*\.adriver\. -.*.adriver.*. -# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina+easylist.txt: 3237) +# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina.txt: 3219) .hongdou.gxnews.com.cn/upload/index/ -# ||madbanner.$~object-subrequest (advblock.txt: 623) -.madbanner.*. -# /teaser.$~object-subrequest (advblock.txt: 552) -/(.*/)?teaser\. -teaser.*. -# ||pagead2.googlesyndication.com^$~object-subrequest (easylist.txt: 30241) -.pagead2.googlesyndication.com -# ||freewheel.mtgx.tv^$~object-subrequest (easylist.txt: 29802) -.freewheel.mtgx.tv -# ?getad=&$~object-subrequest (easylist.txt: 5949) -/.*\?getad=& -# /oascentral.$~object-subrequest (easylist.txt: 4650) -/(.*/)?oascentral\. -oascentral.*. -# /adriver_$~object-subrequest (easylist.txt: 1829) -/(.*/)?adriver_ -# /adriver.$~object-subrequest (easylist.txt: 1827) -/(.*/)?adriver\. -adriver.*. -# /admanager/*$~object-subrequest (easylist.txt: 1656) -/(.*/)?admanager/.* -# /admanager.$~object-subrequest (easylist.txt: 1655) -/(.*/)?admanager\. -admanager.*. -# /adcontent.$~object-subrequest (easylist.txt: 1403) -/(.*/)?adcontent\. -adcontent.*. -# .net/ad/$~object-subrequest (easylist.txt: 509) -/.*\.net/ad/ -.*.net/ad/ -# .adriver.$~object-subrequest (easylist.txt: 351) -/.*\.adriver\. -.*.adriver.*. - -#ab2p-block-request-Anaov-Cnaov-nX-Xnx -{+client-header-tagger{ab2p-block-request-Anaov} \ - +server-header-tagger{ab2p-block-request-Cnaov} \ - +client-header-tagger{ab2p-block-request-Xnx} \ - +client-header-tagger{ab2p-block-request-nX} \ -} -# /admatcher.$~object-subrequest,~xmlhttprequest (easylistchina+easylist.txt: 12158) -/(.*/)?admatcher\. -admatcher.*. -# /admatcher.$~object-subrequest,~xmlhttprequest (easylist.txt: 1673) -/(.*/)?admatcher\. -admatcher.*. - -#ab2p-block-request-Anc-Cnc-Xx -{+client-header-tagger{ab2p-block-request-Anc} \ - +server-header-tagger{ab2p-block-request-Cnc} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -# ||yimg.com/a/1-$~stylesheet (easylistchina+easylist.txt: 45734) -.yimg.com/a/1- -# ||nflcdn.com^*/partner-type/$~stylesheet (easylistchina+easylist.txt: 44166) -.nflcdn.com/.*/partner-type/ -# ||goal.com^*/betting/$~stylesheet (easylistchina+easylist.txt: 43237) -.goal.com/.*/betting/ -# ||dailymotion.com/skin/data/default/partner/$~stylesheet (easylistchina+easylist.txt: 42696) -.dailymotion.com/skin/data/default/partner/ -# ||takeover.bauermedia.co.uk^$~stylesheet (easylistchina+easylist.txt: 41018) -.takeover.bauermedia.co.uk -# /anti-adblock/*$~stylesheet (easylistchina+easylist.txt: 17019) -/(.*/)?anti-adblock/.* -# _gallery_image_ads_$~stylesheet (easylistchina+easylist.txt: 16816) -/.*_gallery_image_ads_ -# _adtech/$~stylesheet (easylistchina+easylist.txt: 16697) -/.*_adtech/ -# _ad1.$~stylesheet (easylistchina+easylist.txt: 16474) -/.*_ad1\. -# /wp-content/plugins/wp-super-popup/*$~stylesheet (easylistchina+easylist.txt: 16224) -/(.*/)?wp-content/plugins/wp-super-popup/.* -# /wp-content/plugins/m-wp-popup/*$~stylesheet (easylistchina+easylist.txt: 16219) -/(.*/)?wp-content/plugins/m-wp-popup/.* -# /reklama.$~stylesheet (easylistchina+easylist.txt: 15480) -/(.*/)?reklama\. -reklama.*. -# /publicidad_$~stylesheet (easylistchina+easylist.txt: 15418) -/(.*/)?publicidad_ -# /popup-domination/*$~stylesheet (easylistchina+easylist.txt: 15341) -/(.*/)?popup-domination/.* -# /popshow.$~stylesheet (easylistchina+easylist.txt: 15321) -/(.*/)?popshow\. -popshow.*. -# /plugins/wp125/*$~stylesheet (easylistchina+easylist.txt: 15295) -/(.*/)?plugins/wp125/.* -# /plugins/wp-moreads/*$~stylesheet (easylistchina+easylist.txt: 15294) -/(.*/)?plugins/wp-moreads/.* -# /oiopub-direct/*$~stylesheet (easylistchina+easylist.txt: 15144) -/(.*/)?oiopub-direct/.* -# /ads/ads-$~stylesheet (easylistchina+easylist.txt: 12419) -/(.*/)?ads/ads- -# /ad-gallery.$~stylesheet (easylistchina+easylist.txt: 11209) -/(.*/)?ad-gallery\. -ad-gallery.*. -# -ad-manager/$~stylesheet (easylistchina+easylist.txt: 10598) -/.*-ad-manager/ -.*-ad-manager -# ||zoneofgames.ru/branding/$~stylesheet (advblock.txt: 6634) -.zoneofgames.ru/branding/ -# ||kino-dom.tv/branding_$~stylesheet (advblock.txt: 5926) -.kino-dom.tv/branding_ -# ||astromeridian.ru/assets/images/reklama2/$~stylesheet (advblock.txt: 5513) -.astromeridian.ru/assets/images/reklama2/ -# ||yimg.com/a/1-$~stylesheet (easylist.txt: 35249) -.yimg.com/a/1- -# ||nflcdn.com^*/partner-type/$~stylesheet (easylist.txt: 33681) -.nflcdn.com/.*/partner-type/ -# ||goal.com^*/betting/$~stylesheet (easylist.txt: 32752) -.goal.com/.*/betting/ -# ||dailymotion.com/skin/data/default/partner/$~stylesheet (easylist.txt: 32211) -.dailymotion.com/skin/data/default/partner/ -# ||takeover.bauermedia.co.uk^$~stylesheet (easylist.txt: 30533) -.takeover.bauermedia.co.uk -# /anti-adblock/*$~stylesheet (easylist.txt: 6534) -/(.*/)?anti-adblock/.* -# _gallery_image_ads_$~stylesheet (easylist.txt: 6331) -/.*_gallery_image_ads_ -# _adtech/$~stylesheet (easylist.txt: 6212) -/.*_adtech/ -# _ad1.$~stylesheet (easylist.txt: 5989) -/.*_ad1\. -# /wp-content/plugins/wp-super-popup/*$~stylesheet (easylist.txt: 5739) -/(.*/)?wp-content/plugins/wp-super-popup/.* -# /wp-content/plugins/m-wp-popup/*$~stylesheet (easylist.txt: 5734) -/(.*/)?wp-content/plugins/m-wp-popup/.* -# /reklama.$~stylesheet (easylist.txt: 4995) -/(.*/)?reklama\. -reklama.*. -# /publicidad_$~stylesheet (easylist.txt: 4933) -/(.*/)?publicidad_ -# /popup-domination/*$~stylesheet (easylist.txt: 4856) -/(.*/)?popup-domination/.* -# /popshow.$~stylesheet (easylist.txt: 4836) -/(.*/)?popshow\. -popshow.*. -# /plugins/wp125/*$~stylesheet (easylist.txt: 4810) -/(.*/)?plugins/wp125/.* -# /plugins/wp-moreads/*$~stylesheet (easylist.txt: 4809) -/(.*/)?plugins/wp-moreads/.* -# /oiopub-direct/*$~stylesheet (easylist.txt: 4659) -/(.*/)?oiopub-direct/.* -# /ads/ads-$~stylesheet (easylist.txt: 1934) -/(.*/)?ads/ads- -# /ad-gallery.$~stylesheet (easylist.txt: 724) -/(.*/)?ad-gallery\. -ad-gallery.*. -# -ad-manager/$~stylesheet (easylist.txt: 113) -/.*-ad-manager/ -.*-ad-manager - -#ab2p-block-request-Anchm-Cnchm-Xx -{+client-header-tagger{ab2p-block-request-Anchm} \ - +server-header-tagger{ab2p-block-request-Cnchm} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -TAG:^ab2p-block-request-Anchm-Cnchm-Xx$ - -#ab2p-block-request-Anchm-Cnchm-Xx-when-Rt -{+client-header-tagger{ab2p-block-request-Anchm-Cnchm-Xx-when-Rt} \ -} -# ||inskinmedia.com^$~stylesheet,third-party (easylistchina+easylist.txt: 36555) -.inskinmedia.com -# ||inskinmedia.com^$~stylesheet,third-party (easylist.txt: 26070) -.inskinmedia.com - -#ab2p-block-request-Ancj-Cncj-Xx -{+client-header-tagger{ab2p-block-request-Ancj} \ - +server-header-tagger{ab2p-block-request-Cncj} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -# /ad-layout/*$~script,~stylesheet (easylistchina+easylist.txt: 11231) -/(.*/)?ad-layout/.* -# /ad-layout/*$~script,~stylesheet (easylist.txt: 746) -/(.*/)?ad-layout/.* - -#ab2p-block-request-Anhim-Cnhim-Xx -{+client-header-tagger{ab2p-block-request-Anhim} \ - +server-header-tagger{ab2p-block-request-Cnhim} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -TAG:^ab2p-block-request-Anhim-Cnhim-Xx$ - -#ab2p-block-request-Anhim-Cnhim-Xx-when-Rn700t -{+client-header-tagger{ab2p-block-request-Anhim-Cnhim-Xx-when-Rn700t} \ -} -# /adfarm.$~image,third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 11945) -/(.*/)?adfarm\. -adfarm.*. -# .com/ad/$~image,third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 10907) -/.*\.com/ad/ -.*.com/ad/ -# /adfarm.$~image,third-party,domain=~mediaplex.com (easylist.txt: 1460) -/(.*/)?adfarm\. -adfarm.*. -# .com/ad/$~image,third-party,domain=~mediaplex.com (easylist.txt: 422) -/.*\.com/ad/ -.*.com/ad/ - -#ab2p-block-request-Anhim-Cnhim-Xx-when-Rt -{+client-header-tagger{ab2p-block-request-Anhim-Cnhim-Xx-when-Rt} \ -} -# ||content.secondspace.com^$~image,third-party (easylistchina+easylist.txt: 39989) -.content.secondspace.com -# ||metaffiliation.com^$~image,~subdocument,third-party (easylistchina+easylist.txt: 36864) -.metaffiliation.com -# ||dipads.net^$~image,third-party (easylistchina+easylist.txt: 35952) -.dipads.net -# ||dematom.com^$third-party,~image (advblock.txt: 927) -.dematom.com -# ||content.secondspace.com^$~image,third-party (easylist.txt: 29504) -.content.secondspace.com -# ||metaffiliation.com^$~image,~subdocument,third-party (easylist.txt: 26379) -.metaffiliation.com -# ||dipads.net^$~image,third-party (easylist.txt: 25467) -.dipads.net - -#ab2p-block-request-Anhjm-Cnhjm-Xx -{+client-header-tagger{ab2p-block-request-Anhjm} \ - +server-header-tagger{ab2p-block-request-Cnhjm} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -TAG:^ab2p-block-request-Anhjm-Cnhjm-Xx$ - -#ab2p-block-request-Anhjm-Cnhjm-Xx-when-Rt -{+client-header-tagger{ab2p-block-request-Anhjm-Cnhjm-Xx-when-Rt} \ -} -# ||netaffiliation.com^$~script,third-party (easylistchina+easylist.txt: 36986) -.netaffiliation.com -# ||123service.ru^$third-party,~script (advblock.txt: 703) -.123service.ru -# ||netaffiliation.com^$~script,third-party (easylist.txt: 26501) -.netaffiliation.com #ab2p-block-request-Anhm-Cnhm {+client-header-tagger{ab2p-block-request-Anhm} \ @@ -286388,35035 +31766,2258 @@ TAG:^ab2p-block-request-Anhjm-Cnhjm-Xx$ } TAG:^ab2p-block-request-Anhm-Cnhm$ -#ab2p-block-request-Anhm-Cnhm-Xx -{+client-header-tagger{ab2p-block-request-Anhm} \ - +server-header-tagger{ab2p-block-request-Cnhm} \ - +client-header-tagger{ab2p-block-request-Xx} \ +#ab2p-block-request-Anhm-Cnhm-when-Rn178t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn178t} \ } -# ||da.feedsportal.com^$~subdocument (easylistchina+easylist.txt: 42664) -.da.feedsportal.com -# /adimages/*$~subdocument (easylistchina+easylist.txt: 12065) -/(.*/)?adimages/.* -# /adhandler/*$~subdocument (easylistchina+easylist.txt: 12024) -/(.*/)?adhandler/.* -# ||da.feedsportal.com^$~subdocument (easylist.txt: 32179) -.da.feedsportal.com -# /adimages/*$~subdocument (easylist.txt: 1580) -/(.*/)?adimages/.* -# /adhandler/*$~subdocument (easylist.txt: 1539) -/(.*/)?adhandler/.* - -#ab2p-block-request-Anhm-Cnhm-when-R701t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R701t} \ -} -# .ru/*.swf|$third-party,domain=21forum.ru|afisha21.ru|cheb.ru|cheb.ws|cheboksary.ws|kugesi.ru|na-svyazi.ru|zarulem.ws (advblock.txt: 7075) -/.*\.ru/.*\.swf$ -.*.ru/.*\.swf$ - -#ab2p-block-request-Anhm-Cnhm-when-R702t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R702t} \ -} -# ||doubleclick.net^$third-party,domain=3news.co.nz|92q.com|abc-7.com|addictinggames.com|allbusiness.com|bizjournals.com|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boomphilly.com|break.com|cbc.ca|cbs19.tv|cbs3springfield.com|cbslocal.com|complex.com|dailymail.co.uk|darkhorizons.com|doubleviking.com|euronews.com|extratv.com|fandango.com|fox19.com|fox5vegas.com|gorillanation.com|hawaiinewsnow.com|hellobeautiful.com|hiphopnc.com|hot1041stl.com|hothiphopdetroit.com|hotspotatl.com|hulu.com|imdb.com|indiatimes.com|indyhiphop.com|ipowerrichmond.com|joblo.com|kcra.com|kctv5.com|ketv.com|koat.com|koco.com|kolotv.com|kpho.com|kptv.com|ksat.com|ksbw.com|ksfy.com|ksl.com|kypost.com|kysdc.com|live5news.com|livestation.com|livestream.com|metro.us|metronews.ca|miamiherald.com|my9nj.com|myboom1029.com|mycolumbuspower.com|nbcrightnow.com|neatorama.com|necn.com|neopets.com|news.com.au|news4jax.com|newsone.com|nintendoeverything.com|oldschoolcincy.com|pagesuite-professional.co.uk|pandora.com|play.it|player.theplatform.com|radio.com|radionowindy.com|rottentomatoes.com|sbsun.com|shacknews.com|sk-gaming.com|ted.com|thebeatdfw.com|theboxhouston.com|theglobeandmail.com|timesnow.tv|tv2.no|twitch.tv|ustream.tv|wapt.com|washingtonpost.com|wate.com|wbaltv.com|wcvb.com|wdrb.com|wdsu.com|wflx.com|wfmz.com|wfsb.com|wgal.com|whdh.com|wired.com|wisn.com|wiznation.com|wlky.com|wlns.com|wlwt.com|wmur.com|wnem.com|wowt.com|wral.com|wsj.com|wsmv.com|wsvn.com|wtae.com|wthr.com|wxii12.com|wyff4.com|yahoo.com|youtube-nocookie.com|youtube.com|zhiphopcleveland.com (easylistchina+easylist.txt: 36068) -.doubleclick.net -# ||doubleclick.net^$third-party,domain=3news.co.nz|92q.com|abc-7.com|addictinggames.com|allbusiness.com|bizjournals.com|bloomberg.com|bnn.ca|boom92houston.com|boom945.com|boomphilly.com|break.com|cbc.ca|cbs19.tv|cbs3springfield.com|cbslocal.com|complex.com|dailymail.co.uk|darkhorizons.com|doubleviking.com|euronews.com|extratv.com|fandango.com|fox19.com|fox5vegas.com|gorillanation.com|hawaiinewsnow.com|hellobeautiful.com|hiphopnc.com|hot1041stl.com|hothiphopdetroit.com|hotspotatl.com|hulu.com|imdb.com|indiatimes.com|indyhiphop.com|ipowerrichmond.com|joblo.com|kcra.com|kctv5.com|ketv.com|koat.com|koco.com|kolotv.com|kpho.com|kptv.com|ksat.com|ksbw.com|ksfy.com|ksl.com|kypost.com|kysdc.com|live5news.com|livestation.com|livestream.com|metro.us|metronews.ca|miamiherald.com|my9nj.com|myboom1029.com|mycolumbuspower.com|nbcrightnow.com|neatorama.com|necn.com|neopets.com|news.com.au|news4jax.com|newsone.com|nintendoeverything.com|oldschoolcincy.com|pagesuite-professional.co.uk|pandora.com|play.it|player.theplatform.com|radio.com|radionowindy.com|rottentomatoes.com|sbsun.com|shacknews.com|sk-gaming.com|ted.com|thebeatdfw.com|theboxhouston.com|theglobeandmail.com|timesnow.tv|tv2.no|twitch.tv|ustream.tv|wapt.com|washingtonpost.com|wate.com|wbaltv.com|wcvb.com|wdrb.com|wdsu.com|wflx.com|wfmz.com|wfsb.com|wgal.com|whdh.com|wired.com|wisn.com|wiznation.com|wlky.com|wlns.com|wlwt.com|wmur.com|wnem.com|wowt.com|wral.com|wsj.com|wsmv.com|wsvn.com|wtae.com|wthr.com|wxii12.com|wyff4.com|yahoo.com|youtube-nocookie.com|youtube.com|zhiphopcleveland.com (easylist.txt: 25583) -.doubleclick.net - -#ab2p-block-request-Anhm-Cnhm-when-R703t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R703t} \ -} -# ||am15.net^$third-party,domain=adultmult.tv|moonwalk.cc (advblock.txt: 6644) -.am15.net - -#ab2p-block-request-Anhm-Cnhm-when-R704t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R704t} \ -} -# ||rmbn.net^$third-party,domain=adultmult.tv (advblock.txt: 6650) -.rmbn.net - -#ab2p-block-request-Anhm-Cnhm-when-R705t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R705t} \ -} -# ||apress-barmen.ru^$third-party,domain=blizko.ru (advblock.txt: 5504) -.apress-barmen.ru - -#ab2p-block-request-Anhm-Cnhm-when-R706t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R706t} \ -} -# ||snapapp.com^$third-party,domain=bostonmagazine.com (easylistchina+easylist.txt: 40941) -.snapapp.com -# ||snapapp.com^$third-party,domain=bostonmagazine.com (easylist.txt: 30456) -.snapapp.com - -#ab2p-block-request-Anhm-Cnhm-when-R707t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R707t} \ -} -# ||m.uploadedit.com^$third-party,domain=flysat.com (easylistchina+easylist.txt: 40563) -.m.uploadedit.com -# ||m.uploadedit.com^$third-party,domain=flysat.com (easylist.txt: 30078) -.m.uploadedit.com - -#ab2p-block-request-Anhm-Cnhm-when-R708t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R708t} \ -} -# .space^$third-party,domain=free-torrent.org|free-torrents.org|game-torrent.info|jpgstore.ru|pics2pay.ru (advblock.txt: 5373) -/.*\.space[^\w%.-] -.*.space - -#ab2p-block-request-Anhm-Cnhm-when-R709t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R709t} \ -} -# ||rackcdn.com/brokers/$third-party,domain=fxempire.com|fxempire.de|fxempire.it|fxempire.nl (easylistchina+easylist.txt: 40820) -.rackcdn.com/brokers/ -# ||rackcdn.com/brokers/$third-party,domain=fxempire.com|fxempire.de|fxempire.it|fxempire.nl (easylist.txt: 30335) -.rackcdn.com/brokers/ - -#ab2p-block-request-Anhm-Cnhm-when-R710t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R710t} \ -} -# ||idup.in/embed$third-party,domain=ganool.com (easylistchina+easylist.txt: 40417) -.idup.in/embed -# ||idup.in/embed$third-party,domain=ganool.com (easylist.txt: 29932) -.idup.in/embed - -#ab2p-block-request-Anhm-Cnhm-when-R711t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R711t} \ -} -# ||travelplus.tv^$third-party,domain=kissanime.com (easylistchina+easylist.txt: 41071) -.travelplus.tv -# ||travelplus.tv^$third-party,domain=kissanime.com (easylist.txt: 30586) -.travelplus.tv - -#ab2p-block-request-Anhm-Cnhm-when-R712t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R712t} \ -} -# ||masqforo.com^$third-party,domain=linkbucks.com (easylistchina+easylist.txt: 40574) -.masqforo.com -# ||masqforo.com^$third-party,domain=linkbucks.com (easylist.txt: 30089) -.masqforo.com - -#ab2p-block-request-Anhm-Cnhm-when-R713t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R713t} \ -} -# ||6angebot.ch^$third-party,domain=netload.in (easylistchina+easylist.txt: 39606) -.6angebot.ch -# ||6angebot.ch^$third-party,domain=netload.in (easylist.txt: 29121) -.6angebot.ch - -#ab2p-block-request-Anhm-Cnhm-when-R714t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R714t} \ -} -# ||dhgate.com^$third-party,domain=sammyhub.com (easylistchina+easylist.txt: 40137) -.dhgate.com -# ||dhgate.com^$third-party,domain=sammyhub.com (easylist.txt: 29652) -.dhgate.com - -#ab2p-block-request-Anhm-Cnhm-when-R715t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R715t} \ -} -# ||beyondd.co.nz/ezibuy/$third-party,domain=stuff.co.nz (easylistchina+easylist.txt: 42327) -.beyondd.co.nz/ezibuy/ -# ||beyondd.co.nz/ezibuy/$third-party,domain=stuff.co.nz (easylist.txt: 31842) -.beyondd.co.nz/ezibuy/ - -#ab2p-block-request-Anhm-Cnhm-when-R716t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R716t} \ -} -# ||zoomin.tv/video/*.flv$third-party,domain=twitch.tv (easylistchina+easylist.txt: 41242) -.zoomin.tv/video/.*\.flv -# ||zoomin.tv/video/*.flv$third-party,domain=twitch.tv (easylist.txt: 30757) -.zoomin.tv/video/.*\.flv - -#ab2p-block-request-Anhm-Cnhm-when-R717t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R717t} \ -} -# ||88.208.23.$third-party,domain=xhamster.com (easylistchina+easylist.txt: 41393) -.88.208.23.*. -# ||88.208.23.$third-party,domain=xhamster.com (easylist.txt: 30908) -.88.208.23.*. - -#ab2p-block-request-Anhm-Cnhm-when-Rn718t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn718t} \ -} -# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina+easylist.txt: 927) +# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina.txt: 948) .tanx.com -#ab2p-block-request-Anhm-Cnhm-when-Rn719t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn719t} \ +#ab2p-block-request-Anhm-Cnhm-when-Rn179t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn179t} \ } -# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina+easylist.txt: 791) +# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina.txt: 808) .img.uu1001.cn -#ab2p-block-request-Anhm-Cnhm-when-Rn720t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn720t} \ +#ab2p-block-request-Anhm-Cnhm-when-Rn180t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn180t} \ } -# ||46.246.120.230^$third-party,domain=~adexprt.com.ip (easylistchina+easylist.txt: 34806) -.46.246.120.230 -# ||46.246.120.230^$third-party,domain=~adexprt.com.ip (easylist.txt: 24321) -.46.246.120.230 - -#ab2p-block-request-Anhm-Cnhm-when-Rn721t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn721t} \ -} -# ||62.27.51.163^$third-party,domain=~adlive.de.ip (easylistchina+easylist.txt: 34818) -.62.27.51.163 -# ||62.27.51.163^$third-party,domain=~adlive.de.ip (easylist.txt: 24333) -.62.27.51.163 - -#ab2p-block-request-Anhm-Cnhm-when-Rn722t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn722t} \ -} -# ||199.102.225.178^$third-party,domain=~adsimilate.ip (easylistchina+easylist.txt: 34763) -.199.102.225.178 -# ||199.102.225.178^$third-party,domain=~adsimilate.ip (easylist.txt: 24278) -.199.102.225.178 - -#ab2p-block-request-Anhm-Cnhm-when-Rn723t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn723t} \ -} -# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina+easylist.txt: 928) +# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina.txt: 949) .taobao.com/go/ -#ab2p-block-request-Anhm-Cnhm-when-Rn724t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn724t} \ +#ab2p-block-request-Anhm-Cnhm-when-Rn181t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn181t} \ } -# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina+easylist.txt: 648) +# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina.txt: 663) .alimama.cn -#ab2p-block-request-Anhm-Cnhm-when-Rn725t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn725t} \ +#ab2p-block-request-Anhm-Cnhm-when-Rn182t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn182t} \ } -# ||173.225.186.54^$third-party,domain=~apps.su.ip (easylistchina+easylist.txt: 39585) -.173.225.186.54 -# ||173.225.186.54^$third-party,domain=~apps.su.ip (easylist.txt: 29100) -.173.225.186.54 - -#ab2p-block-request-Anhm-Cnhm-when-Rn726t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn726t} \ -} -# ||livejasmin.com^$third-party,domain=~awempire.com (easylistchina+easylist.txt: 41613) -.livejasmin.com -# ||livejasmin.com^$third-party,domain=~awempire.com (easylist.txt: 31128) -.livejasmin.com - -#ab2p-block-request-Anhm-Cnhm-when-Rn727t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn727t} \ -} -# ||216.41.211.36/widget/$third-party,domain=~bpaww.com.ip (easylistchina+easylist.txt: 39593) -.216.41.211.36/widget/ -# ||216.41.211.36/widget/$third-party,domain=~bpaww.com.ip (easylist.txt: 29108) -.216.41.211.36/widget/ - -#ab2p-block-request-Anhm-Cnhm-when-Rn728t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn728t} \ -} -# ||pubdirecte.com^$third-party,domain=~debrideurstream.fr (easylistchina+easylist.txt: 37303) -.pubdirecte.com -# ||pubdirecte.com^$third-party,domain=~debrideurstream.fr (easylist.txt: 26818) -.pubdirecte.com - -#ab2p-block-request-Anhm-Cnhm-when-Rn729t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn729t} \ -} -# ||204.93.181.78^$third-party,domain=~discountmags.ip (easylistchina+easylist.txt: 34772) -.204.93.181.78 -# ||204.93.181.78^$third-party,domain=~discountmags.ip (easylist.txt: 24287) -.204.93.181.78 - -#ab2p-block-request-Anhm-Cnhm-when-Rn730t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn730t} \ -} -# ||217.115.147.241/media/$third-party,domain=~elb-kind.de.ip (easylistchina+easylist.txt: 39594) -.217.115.147.241/media/ -# ||217.115.147.241/media/$third-party,domain=~elb-kind.de.ip (easylist.txt: 29109) -.217.115.147.241/media/ - -#ab2p-block-request-Anhm-Cnhm-when-Rn731t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn731t} \ -} -# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina+easylist.txt: 875) +# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina.txt: 894) .offcn.com -#ab2p-block-request-Anhm-Cnhm-when-Rn732t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn732t} \ +#ab2p-block-request-Anhm-Cnhm-when-Rn183t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn183t} \ } -# ||yourfuckbook.com^$third-party,domain=~fuckbookhookups.com (easylistchina+easylist.txt: 39469) -.yourfuckbook.com -# ||yourfuckbook.com^$third-party,domain=~fuckbookhookups.com (easylist.txt: 28984) -.yourfuckbook.com - -#ab2p-block-request-Anhm-Cnhm-when-Rn733t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn733t} \ -} -# |http://gg.$third-party,domain=~guagua.cn (easylistchina+easylist.txt: 261) +# |http://gg.$third-party,domain=~guagua.cn (easylistchina.txt: 270) gg.*. -#ab2p-block-request-Anhm-Cnhm-when-Rn734t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn734t} \ +#ab2p-block-request-Anhm-Cnhm-when-Rn184t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn184t} \ } -# ||adf.ly/js/$third-party,domain=~j.gs|~q.gs (easylistchina+easylist.txt: 39671) -.adf.ly/js/ -# ||adf.ly/js/$third-party,domain=~j.gs|~q.gs (easylist.txt: 29186) -.adf.ly/js/ - -#ab2p-block-request-Anhm-Cnhm-when-Rn735t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn735t} \ -} -# ||ad2games.com^$third-party,domain=~jobvite.com (easylistchina+easylist.txt: 34904) -.ad2games.com -# ||ad2games.com^$third-party,domain=~jobvite.com (easylist.txt: 24419) -.ad2games.com - -#ab2p-block-request-Anhm-Cnhm-when-Rn736t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn736t} \ -} -# //rs.mail.ru/b$third-party,domain=~km.ru (advblock.txt: 6830) -rs.mail.ru/b - -#ab2p-block-request-Anhm-Cnhm-when-Rn737t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn737t} \ -} -# ||209.15.224.6^$third-party,domain=~liverail-mlgtv.ip (easylistchina+easylist.txt: 39592) -.209.15.224.6 -# ||209.15.224.6^$third-party,domain=~liverail-mlgtv.ip (easylist.txt: 29107) -.209.15.224.6 - -#ab2p-block-request-Anhm-Cnhm-when-Rn738t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn738t} \ -} -# ||95.131.238.35^$third-party,domain=~maltatoday.mt.ip (easylistchina+easylist.txt: 39610) -.95.131.238.35 -# ||95.131.238.35^$third-party,domain=~maltatoday.mt.ip (easylist.txt: 29125) -.95.131.238.35 - -#ab2p-block-request-Anhm-Cnhm-when-Rn739t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn739t} \ -} -# ||mgid.com^$third-party,domain=~marketgid.com|~marketgid.com.ua (easylistchina+easylist.txt: 36875) -.mgid.com -# ||mgid.com^$third-party,domain=~marketgid.com|~marketgid.com.ua (easylist.txt: 26390) -.mgid.com - -#ab2p-block-request-Anhm-Cnhm-when-Rn740t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn740t} \ -} -# ||dt07.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylistchina+easylist.txt: 36106) -.dt07.net -# ||dt00.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylistchina+easylist.txt: 36105) -.dt00.net -# ||dt07.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylist.txt: 25621) -.dt07.net -# ||dt00.net^$third-party,domain=~marketgid.com|~marketgid.ru|~marketgid.ua|~mgid.com|~thechive.com (easylist.txt: 25620) -.dt00.net - -#ab2p-block-request-Anhm-Cnhm-when-Rn741t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn741t} \ -} -# ||mydirtyhobby.com^$third-party,domain=~my-dirty-hobby.com|~mydirtyhobby.de (easylistchina+easylist.txt: 40654) -.mydirtyhobby.com -# ||mydirtyhobby.com^$third-party,domain=~my-dirty-hobby.com|~mydirtyhobby.de (easylist.txt: 30169) -.mydirtyhobby.com - -#ab2p-block-request-Anhm-Cnhm-when-Rn742t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn742t} \ -} -# ||nster.net^$third-party,domain=~nster.com (easylistchina+easylist.txt: 37034) -.nster.net -# ||nster.net^$third-party,domain=~nster.com (easylist.txt: 26549) -.nster.net - -#ab2p-block-request-Anhm-Cnhm-when-Rn743t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn743t} \ -} -# ||ozone.ru^$third-party,domain=~ozon.ru|~ozonru.co.il|~ozonru.com|~ozonru.eu|~ozonru.kz (easylistchina+easylist.txt: 39175) -.ozone.ru -# ||ozone.ru^$third-party,domain=~ozon.ru|~ozonru.co.il|~ozonru.com|~ozonru.eu|~ozonru.kz (easylist.txt: 28690) -.ozone.ru - -#ab2p-block-request-Anhm-Cnhm-when-Rn744t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn744t} \ -} -# ||87.230.102.24^$third-party,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 34831) -.87.230.102.24 -# ||209.222.8.217^$third-party,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 34774) -.209.222.8.217 -# ||87.230.102.24^$third-party,domain=~p2p.adserver.ip (easylist.txt: 24346) -.87.230.102.24 -# ||209.222.8.217^$third-party,domain=~p2p.adserver.ip (easylist.txt: 24289) -.209.222.8.217 - -#ab2p-block-request-Anhm-Cnhm-when-Rn745t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn745t} \ -} -# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina+easylist.txt: 710) +# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina.txt: 726) .dotmore.com.tw -#ab2p-block-request-Anhm-Cnhm-when-Rn746t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn746t} \ +#ab2p-block-request-Anhm-Cnhm-when-Rn185t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn185t} \ } -# ||188.138.1.45^$third-party,domain=~shatecraft.com.ip (easylistchina+easylist.txt: 34759) -.188.138.1.45 -# ||188.138.1.45^$third-party,domain=~shatecraft.com.ip (easylist.txt: 24274) -.188.138.1.45 - -#ab2p-block-request-Anhm-Cnhm-when-Rn747t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn747t} \ -} -# ||208.43.84.120/trueswordsa3.gif$third-party,domain=~trueswords.com.ip (easylistchina+easylist.txt: 39591) -.208.43.84.120/trueswordsa3\.gif -# ||208.43.84.120/trueswordsa3.gif$third-party,domain=~trueswords.com.ip (easylist.txt: 29106) -.208.43.84.120/trueswordsa3\.gif - -#ab2p-block-request-Anhm-Cnhm-when-Rn748t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn748t} \ -} -# ||ero.ru^$third-party,domain=~vpets.ru (advblock.txt: 2237) -.ero.ru - -#ab2p-block-request-Anhm-Cnhm-when-Rn749t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn749t} \ -} -# ||69.50.226.158^$third-party,domain=~worth1000.com.ip (easylistchina+easylist.txt: 39605) -.69.50.226.158 -# ||69.50.226.158^$third-party,domain=~worth1000.com.ip (easylist.txt: 29120) -.69.50.226.158 - -#ab2p-block-request-Anhm-Cnhm-when-Rn750t -{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn750t} \ -} -# ||114la.com^$third-party,domain=~ylmf.com (easylistchina+easylist.txt: 514) +# ||114la.com^$third-party,domain=~ylmf.com (easylistchina.txt: 527) .114la.com #ab2p-block-request-Anhm-Cnhm-when-Rt {+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rt} \ } -# ||mrskin.com/data/mrskincash/$third-party (easylistchina+easylist.txt: 46629) -.mrskin.com/data/mrskincash/ -# ||regnow.img.digitalriver.com/vendor/37587/ud_box$third-party (easylistchina+easylist.txt: 44575) -.regnow.img.digitalriver.com/vendor/37587/ud_box -# ||xxxoh.com/number/$third-party (easylistchina+easylist.txt: 41798) -.xxxoh.com/number/ -# ||xnxx.com^$third-party (easylistchina+easylist.txt: 41795) -.xnxx.com -# ||xlgirls.com/banner/$third-party (easylistchina+easylist.txt: 41794) -.xlgirls.com/banner/ -# ||xcabin.net/b/$third-party (easylistchina+easylist.txt: 41793) -.xcabin.net/b/ -# ||wendi.com/ipt/$third-party (easylistchina+easylist.txt: 41788) -.wendi.com/ipt/ -# ||webmaster.erotik.com^$third-party (easylistchina+easylist.txt: 41787) -.webmaster.erotik.com -# ||watchmygf.com/preview/$third-party (easylistchina+easylist.txt: 41784) -.watchmygf.com/preview/ -# ||vzzk.com/uploads/banners/$third-party (easylistchina+easylist.txt: 41782) -.vzzk.com/uploads/banners/ -# ||vserv.bc.cdn.bitgravity.com^$third-party (easylistchina+easylist.txt: 41781) -.vserv.bc.cdn.bitgravity.com -# ||visit-x.net/promo/$third-party (easylistchina+easylist.txt: 41778) -.visit-x.net/promo/ -# ||vidz.com/promo_banner/$third-party (easylistchina+easylist.txt: 41774) -.vidz.com/promo_banner/ -# ||vectorpastel.com^$third-party (easylistchina+easylist.txt: 41773) -.vectorpastel.com -# ||upsellit.com/custom/$third-party (easylistchina+easylist.txt: 41770) -.upsellit.com/custom/ -# ||trader.erosdlz.com^$third-party (easylistchina+easylist.txt: 41761) -.trader.erosdlz.com -# ||track.xtrasize.nl^$third-party (easylistchina+easylist.txt: 41760) -.track.xtrasize.nl -# ||tours.imlive.com^$third-party (easylistchina+easylist.txt: 41759) -.tours.imlive.com -# ||tour.cum-covered-gfs.com^$third-party (easylistchina+easylist.txt: 41758) -.tour.cum-covered-gfs.com -# ||tools.gfcash.com^$third-party (easylistchina+easylist.txt: 41757) -.tools.gfcash.com -# ||tools.bongacams.com^$third-party (easylistchina+easylist.txt: 41756) -.tools.bongacams.com -# ||tlavideo.com/affiliates/$third-party (easylistchina+easylist.txt: 41755) -.tlavideo.com/affiliates/ -# ||thumbs.sunporno.com^$third-party (easylistchina+easylist.txt: 41753) -.thumbs.sunporno.com -# ||target.vivid.com^$third-party (easylistchina+easylist.txt: 41749) -.target.vivid.com -# ||streamen.com/exports/$third-party (easylistchina+easylist.txt: 41744) -.streamen.com/exports/ -# ||spacash.com/popup/$third-party (easylistchina+easylist.txt: 41740) -.spacash.com/popup/ -# ||snrcash.com/profilerotator/$third-party (easylistchina+easylist.txt: 41738) -.snrcash.com/profilerotator/ -# ||smartmovies.net/promo_$third-party (easylistchina+easylist.txt: 41736) -.smartmovies.net/promo_ -# ||slickcash.com/flash/subtitles_$third-party (easylistchina+easylist.txt: 41735) -.slickcash.com/flash/subtitles_ -# ||sleepgalleries.com/recips/$third-party (easylistchina+easylist.txt: 41734) -.sleepgalleries.com/recips/ -# ||shinypics.com/blogbanner/$third-party (easylistchina+easylist.txt: 41732) -.shinypics.com/blogbanner/ -# ||shared.juicybucks.com^$third-party (easylistchina+easylist.txt: 41729) -.shared.juicybucks.com -# ||sexycams.com/exports/$third-party (easylistchina+easylist.txt: 41727) -.sexycams.com/exports/ -# ||sexy.fling.com^$third-party (easylistchina+easylist.txt: 41726) -.sexy.fling.com -# ||sextronix.com/images/$third-party (easylistchina+easylist.txt: 41724) -.sextronix.com/images/ -# ||sextronix.com/b/$third-party (easylistchina+easylist.txt: 41723) -.sextronix.com/b/ -# ||server140.com^$third-party (easylistchina+easylist.txt: 41720) -.server140.com -# ||screencapturewidget.aebn.net^$third-party (easylistchina+easylist.txt: 41719) -.screencapturewidget.aebn.net -# ||sabin.free.fr^$third-party (easylistchina+easylist.txt: 41714) -.sabin.free.fr -# ||russkoexxx.com/ban/$third-party (easylistchina+easylist.txt: 41712) -.russkoexxx.com/ban/ -# ||ruleclaim.web.fc2.com^$third-party (easylistchina+easylist.txt: 41710) -.ruleclaim.web.fc2.com -# ||rss.dtiserv.com^$third-party (easylistchina+easylist.txt: 41709) -.rss.dtiserv.com -# ||rough-sex-in-russia.com^*/webmaster/$third-party (easylistchina+easylist.txt: 41708) -.rough-sex-in-russia.com/.*/webmaster/ -# ||resimler.randevum.com^$third-party (easylistchina+easylist.txt: 41705) -.resimler.randevum.com -# ||rawtubelive.com/exports/$third-party (easylistchina+easylist.txt: 41702) -.rawtubelive.com/exports/ -# ||rabbitporno.com/iframes/$third-party (easylistchina+easylist.txt: 41701) -.rabbitporno.com/iframes/ -# ||pussycash.com/content/banners/$third-party (easylistchina+easylist.txt: 41698) -.pussycash.com/content/banners/ -# ||punterlink.co.uk/images/storage/siteban$third-party (easylistchina+easylist.txt: 41697) -.punterlink.co.uk/images/storage/siteban -# ||ptcdn.mbicash.nl^$third-party (easylistchina+easylist.txt: 41696) -.ptcdn.mbicash.nl -# ||promos.wealthymen.com^$third-party (easylistchina+easylist.txt: 41694) -.promos.wealthymen.com -# ||promos.meetlocals.com^$third-party (easylistchina+easylist.txt: 41693) -.promos.meetlocals.com -# ||promos.gpniches.com^$third-party (easylistchina+easylist.txt: 41692) -.promos.gpniches.com -# ||promo1.webcams.nl^$third-party (easylistchina+easylist.txt: 41691) -.promo1.webcams.nl -# ||promo.pegcweb.com^$third-party (easylistchina+easylist.txt: 41690) -.promo.pegcweb.com -# ||promo.cams.com^$third-party (easylistchina+easylist.txt: 41689) -.promo.cams.com -# ||promo.blackcrush.com^$third-party (easylistchina+easylist.txt: 41688) -.promo.blackcrush.com -# ||profile.bharatmatrimony.com^$third-party (easylistchina+easylist.txt: 41687) -.profile.bharatmatrimony.com -# ||private.camz.$third-party (easylistchina+easylist.txt: 41684) -.private.camz.*. -# ||prettyincash.com/premade/$third-party (easylistchina+easylist.txt: 41681) -.prettyincash.com/premade/ -# ||potd.onlytease.com^$third-party (easylistchina+easylist.txt: 41680) -.potd.onlytease.com -# ||pornravage.com/notification/$third-party (easylistchina+easylist.txt: 41676) -.pornravage.com/notification/ -# ||pop6.com/banners/$third-party (easylistchina+easylist.txt: 41670) -.pop6.com/banners/ -# ||pop6.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41669) -.pop6.adultfriendfinder.com -# ||pod.xpress.com^$third-party (easylistchina+easylist.txt: 41668) -.pod.xpress.com -# ||pod.manplay.com^$third-party (easylistchina+easylist.txt: 41667) -.pod.manplay.com -# ||pinkvisualgames.com/?revid=$third-party (easylistchina+easylist.txt: 41665) -.pinkvisualgames.com/\?revid= -# ||pcash.globalmailer5.com^$third-party (easylistchina+easylist.txt: 41664) -.pcash.globalmailer5.com -# ||partners.yobt.tv^$third-party (easylistchina+easylist.txt: 41662) -.partners.yobt.tv -# ||partners.yobt.com^$third-party (easylistchina+easylist.txt: 41661) -.partners.yobt.com -# ||partners.heart2heartnetwork.$third-party (easylistchina+easylist.txt: 41659) -.partners.heart2heartnetwork.*. -# ||partner.loveplanet.ru^$third-party (easylistchina+easylist.txt: 41658) -.partner.loveplanet.ru -# ||outils.f5biz.com^$third-party (easylistchina+easylist.txt: 41657) -.outils.f5biz.com -# ||otcash.com/images/$third-party (easylistchina+easylist.txt: 41656) -.otcash.com/images/ -# ||openadultdirectory.com/banner-$third-party (easylistchina+easylist.txt: 41654) -.openadultdirectory.com/banner- -# ||odnidoma.com/ban/$third-party (easylistchina+easylist.txt: 41653) -.odnidoma.com/ban/ -# ||nuvidp.com^$third-party (easylistchina+easylist.txt: 41652) -.nuvidp.com -# ||nude.hu/html/$third-party (easylistchina+easylist.txt: 41650) -.nude.hu/html/ -# ||nubiles.net/webmasters/promo/$third-party (easylistchina+easylist.txt: 41649) -.nubiles.net/webmasters/promo/ -# ||naughtycdn.com/public/iframes/$third-party (easylistchina+easylist.txt: 41647) -.naughtycdn.com/public/iframes/ -# ||natuko-miracle.com/banner/$third-party (easylistchina+easylist.txt: 41646) -.natuko-miracle.com/banner/ -# ||naked.com/promos/$third-party (easylistchina+easylist.txt: 41644) -.naked.com/promos/ -# ||mysexjourney.com/revenue/$third-party (easylistchina+easylist.txt: 41643) -.mysexjourney.com/revenue/ -# ||mykocam.com/js/feeds.js$third-party (easylistchina+easylist.txt: 41642) -.mykocam.com/js/feeds\.js -# ||myfreakygf.com/www/click/$third-party (easylistchina+easylist.txt: 41641) -.myfreakygf.com/www/click/ -# ||mycams.com/freechat.php?$third-party (easylistchina+easylist.txt: 41638) -.mycams.com/freechat\.php\? -# ||my-dirty-hobby.com/?sub=$third-party (easylistchina+easylist.txt: 41637) -.my-dirty-hobby.com/\?sub= -# ||ms.wsex.com^$third-party (easylistchina+easylist.txt: 41636) -.ms.wsex.com -# ||mrvids.com/network/$third-party (easylistchina+easylist.txt: 41635) -.mrvids.com/network/ -# ||mrskincdn.com^*/flash/aff/$third-party (easylistchina+easylist.txt: 41634) -.mrskincdn.com/.*/flash/aff/ -# ||metartmoney.met-art.com^$third-party (easylistchina+easylist.txt: 41630) -.metartmoney.met-art.com -# ||metartmoney.com^$third-party (easylistchina+easylist.txt: 41629) -.metartmoney.com -# ||megacash.warpnet.com.br^$third-party (easylistchina+easylist.txt: 41628) -.megacash.warpnet.com.br -# ||media.pussycash.com^$third-party (easylistchina+easylist.txt: 41627) -.media.pussycash.com -# ||media.mykodial.com^$third-party (easylistchina+easylist.txt: 41626) -.media.mykodial.com -# ||media.mykocam.com^$third-party (easylistchina+easylist.txt: 41625) -.media.mykocam.com -# ||media.match.com^$third-party (easylistchina+easylist.txt: 41624) -.media.match.com -# ||media.eurolive.com^$third-party (easylistchina+easylist.txt: 41623) -.media.eurolive.com -# ||match.com/landing/$third-party (easylistchina+easylist.txt: 41622) -.match.com/landing/ -# ||map.pop6.com^$third-party (easylistchina+easylist.txt: 41621) -.map.pop6.com -# ||manhunt.net/?dm=$third-party (easylistchina+easylist.txt: 41620) -.manhunt.net/\?dm= -# ||manager.koocash.fr^$third-party (easylistchina+easylist.txt: 41619) -.manager.koocash.fr -# ||loveme.com^$third-party (easylistchina+easylist.txt: 41617) -.loveme.com -# ||links.freeones.com^$third-party (easylistchina+easylist.txt: 41612) -.links.freeones.com -# ||layers.spacash.com^$third-party (easylistchina+easylist.txt: 41610) -.layers.spacash.com -# ||latinteencash.com/potd/$third-party (easylistchina+easylist.txt: 41609) -.latinteencash.com/potd/ -# ||kenny-glenn.net^*/longbanner_$third-party (easylistchina+easylist.txt: 41605) -.kenny-glenn.net/.*/longbanner_ -# ||justcutegirls.com/banners/$third-party (easylistchina+easylist.txt: 41603) -.justcutegirls.com/banners/ -# ||just-nude.com/images/ban_$third-party (easylistchina+easylist.txt: 41602) -.just-nude.com/images/ban_ -# ||js.picsomania.info^$third-party (easylistchina+easylist.txt: 41601) -.js.picsomania.info -# ||ivitrine.buscape.com^$third-party (easylistchina+easylist.txt: 41600) -.ivitrine.buscape.com -# ||images.elenasmodels.com/Upload/$third-party (easylistchina+easylist.txt: 41596) -.images.elenasmodels.com/Upload/ -# ||image.nsk-sys.com^$third-party (easylistchina+easylist.txt: 41595) -.image.nsk-sys.com -# ||image.cecash.com^$third-party (easylistchina+easylist.txt: 41594) -.image.cecash.com -# ||iframes.hustler.com^$third-party (easylistchina+easylist.txt: 41591) -.iframes.hustler.com -# ||iframe.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41590) -.iframe.adultfriendfinder.com -# ||hotsocialz.com^$third-party (easylistchina+easylist.txt: 41589) -.hotsocialz.com -# ||hosting24.com/images/banners/$third-party (easylistchina+easylist.txt: 41585) -.hosting24.com/images/banners/ -# ||hosted.x-art.com/potd$third-party (easylistchina+easylist.txt: 41584) -.hosted.x-art.com/potd -# ||hornypharaoh.com/banner_$third-party (easylistchina+easylist.txt: 41582) -.hornypharaoh.com/banner_ -# ||highrollercams.com/widgets/$third-party (easylistchina+easylist.txt: 41578) -.highrollercams.com/widgets/ -# ||graphics.streamray.com^*/cams_live.swf$third-party (easylistchina+easylist.txt: 41571) -.graphics.streamray.com/.*/cams_live\.swf -# ||go2cdn.org/brand/$third-party (easylistchina+easylist.txt: 41569) -.go2cdn.org/brand/ -# ||geobanner.sexfinder.com^$third-party (easylistchina+easylist.txt: 41565) -.geobanner.sexfinder.com -# ||geobanner.fuckbookhookups.com^$third-party (easylistchina+easylist.txt: 41564) -.geobanner.fuckbookhookups.com -# ||geobanner.blacksexmatch.com^$third-party (easylistchina+easylist.txt: 41563) -.geobanner.blacksexmatch.com -# ||geo.camazon.com^$third-party (easylistchina+easylist.txt: 41558) -.geo.camazon.com -# ||gateway-banner.eravage.com^$third-party (easylistchina+easylist.txt: 41557) -.gateway-banner.eravage.com -# ||gallery.deskbabes.com^*.php?dir=*&ids=$third-party (easylistchina+easylist.txt: 41555) -.gallery.deskbabes.com/.*\.php\?dir=.*&ids= -# ||galeriaseroticas.xpg.com.br^$third-party (easylistchina+easylist.txt: 41553) -.galeriaseroticas.xpg.com.br -# ||gagthebitch.com/track/$third-party (easylistchina+easylist.txt: 41552) -.gagthebitch.com/track/ -# ||fuckhub.net^*?pid=$third-party (easylistchina+easylist.txt: 41551) -.fuckhub.net/.*\?pid= -# ||freebbw.com/webcams.html$third-party (easylistchina+easylist.txt: 41546) -.freebbw.com/webcams\.html -# ||femjoy.com/bnrs/$third-party (easylistchina+easylist.txt: 41540) -.femjoy.com/bnrs/ -# ||fansign.streamray.com^$third-party (easylistchina+easylist.txt: 41534) -.fansign.streamray.com -# ||exposedteencelebs.com/banner/$third-party (easylistchina+easylist.txt: 41531) -.exposedteencelebs.com/banner/ -# ||exposedemos.com/track/$third-party (easylistchina+easylist.txt: 41530) -.exposedemos.com/track/ -# ||evilangel.com/static/$third-party (easylistchina+easylist.txt: 41529) -.evilangel.com/static/ -# ||escortforum.net/images/banners/$third-party (easylistchina+easylist.txt: 41526) -.escortforum.net/images/banners/ -# ||erotikdeal.com/?ref=$third-party (easylistchina+easylist.txt: 41524) -.erotikdeal.com/\?ref= -# ||dvdbox.com/promo/$third-party (easylistchina+easylist.txt: 41522) -.dvdbox.com/promo/ -# ||dump1.no-ip.biz^$third-party (easylistchina+easylist.txt: 41521) -.dump1.no-ip.biz -# ||dom2xxx.com/ban/$third-party (easylistchina+easylist.txt: 41519) -.dom2xxx.com/ban/ -# ||ddfcash.com/iframes/$third-party (easylistchina+easylist.txt: 41513) -.ddfcash.com/iframes/ -# ||datefree.com^$third-party (easylistchina+easylist.txt: 41512) -.datefree.com -# ||cs.exposedontape.com^$third-party (easylistchina+easylist.txt: 41509) -.cs.exposedontape.com -# ||cs.celebbusters.com^$third-party (easylistchina+easylist.txt: 41508) -.cs.celebbusters.com -# ||cp.intl.match.com^$third-party (easylistchina+easylist.txt: 41504) -.cp.intl.match.com -# ||core.queerclick.com^$third-party (easylistchina+easylist.txt: 41503) -.core.queerclick.com -# ||contentcache-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 41502) -.contentcache-a.akamaihd.net -# ||content.liveuniverse.com^$third-party (easylistchina+easylist.txt: 41501) -.content.liveuniverse.com -# ||cockfortwo.com/track/$third-party (easylistchina+easylist.txt: 41500) -.cockfortwo.com/track/ -# ||clipjunkie.com/sftopbanner$third-party (easylistchina+easylist.txt: 41497) -.clipjunkie.com/sftopbanner -# ||clickz.lonelycheatingwives.com^$third-party (easylistchina+easylist.txt: 41496) -.clickz.lonelycheatingwives.com -# ||click.kink.com^$third-party (easylistchina+easylist.txt: 41495) -.click.kink.com -# ||click.absoluteagency.com^$third-party (easylistchina+easylist.txt: 41494) -.click.absoluteagency.com -# ||cdnjke.com^$third-party (easylistchina+easylist.txt: 41491) -.cdnjke.com -# ||cdncache2-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 41490) -.cdncache2-a.akamaihd.net -# ||cash.femjoy.com^$third-party (easylistchina+easylist.txt: 41488) -.cash.femjoy.com -# ||camsrule.com/exports/$third-party (easylistchina+easylist.txt: 41486) -.camsrule.com/exports/ -# ||cams.spacash.com^$third-party (easylistchina+easylist.txt: 41485) -.cams.spacash.com -# ||cams.enjoy.be^$third-party (easylistchina+easylist.txt: 41484) -.cams.enjoy.be -# ||cams.com/p/cams/cpcs/streaminfo.cgi?$third-party (easylistchina+easylist.txt: 41483) -.cams.com/p/cams/cpcs/streaminfo\.cgi\? -# ||cams.com/go/$third-party (easylistchina+easylist.txt: 41482) -.cams.com/go/ -# ||camelmedia.net/thumbs/$third-party (easylistchina+easylist.txt: 41481) -.camelmedia.net/thumbs/ -# ||cache.worldfriends.tv^$third-party (easylistchina+easylist.txt: 41480) -.cache.worldfriends.tv -# ||bullz-eye.com/pictureofday/$third-party (easylistchina+easylist.txt: 41479) -.bullz-eye.com/pictureofday/ -# ||bongacash.com/tools/promo.php$third-party (easylistchina+easylist.txt: 41473) -.bongacash.com/tools/promo\.php -# ||bbp.brazzers.com^$third-party (easylistchina+easylist.txt: 41466) -.bbp.brazzers.com -# ||bans.bride.ru^$third-party (easylistchina+easylist.txt: 41465) -.bans.bride.ru -# ||banners.webcams.com^$third-party (easylistchina+easylist.txt: 41463) -.banners.webcams.com -# ||banners.videosecrets.com^$third-party (easylistchina+easylist.txt: 41462) -.banners.videosecrets.com -# ||banners.rushcommerce.com^$third-party (easylistchina+easylist.txt: 41461) -.banners.rushcommerce.com -# ||banners.rude.com^$third-party (easylistchina+easylist.txt: 41460) -.banners.rude.com -# ||banners.penthouse.com^$third-party (easylistchina+easylist.txt: 41459) -.banners.penthouse.com -# ||banners.payserve.com^$third-party (easylistchina+easylist.txt: 41458) -.banners.payserve.com -# ||banners.passiondollars.com^$third-party (easylistchina+easylist.txt: 41457) -.banners.passiondollars.com -# ||banners.passion.com^$third-party (easylistchina+easylist.txt: 41456) -.banners.passion.com -# ||banners.outpersonals.com^$third-party (easylistchina+easylist.txt: 41455) -.banners.outpersonals.com -# ||banners.nostringsattached.com^$third-party (easylistchina+easylist.txt: 41454) -.banners.nostringsattached.com -# ||banners.fuckbookhookups.com^$third-party (easylistchina+easylist.txt: 41453) -.banners.fuckbookhookups.com -# ||banners.fastcupid.com^$third-party (easylistchina+easylist.txt: 41452) -.banners.fastcupid.com -# ||banners.blacksexmatch.com^$third-party (easylistchina+easylist.txt: 41451) -.banners.blacksexmatch.com -# ||banners.amigos.com^$third-party (easylistchina+easylist.txt: 41450) -.banners.amigos.com -# ||banners.alt.com^$third-party (easylistchina+easylist.txt: 41449) -.banners.alt.com -# ||banners.adultfriendfinder.com^$third-party (easylistchina+easylist.txt: 41448) -.banners.adultfriendfinder.com -# ||banners*.spacash.com^$third-party (easylistchina+easylist.txt: 41447) -.banners*./.*\.spacash\.com[^\w%.-] -.banners*.spacash.com -# ||banner.themediaplanets.com^$third-party (easylistchina+easylist.txt: 41446) -.banner.themediaplanets.com -# ||banner.resulthost.org^$third-party (easylistchina+easylist.txt: 41445) -.banner.resulthost.org -# ||banner.gasuki.com^$third-party (easylistchina+easylist.txt: 41444) -.banner.gasuki.com -# ||banner.69stream.com^$third-party (easylistchina+easylist.txt: 41443) -.banner.69stream.com -# ||babes.picrush.com^$third-party (easylistchina+easylist.txt: 41442) -.babes.picrush.com -# ||b.turbo.az^$third-party (easylistchina+easylist.txt: 41441) -.b.turbo.az -# ||atlasfiles.com^*/sp3_ep.js$third-party (easylistchina+easylist.txt: 41439) -.atlasfiles.com/.*/sp3_ep\.js -# ||amateurseite.com/banner/$third-party (easylistchina+easylist.txt: 41431) -.amateurseite.com/banner/ -# ||amateur.amarotic.com^$third-party (easylistchina+easylist.txt: 41430) -.amateur.amarotic.com -# ||amarotic.com^*?wmid=*&kamid=*&wsid=$third-party (easylistchina+easylist.txt: 41429) -.amarotic.com/.*\?wmid=.*&kamid=.*&wsid= -# ||amarotic.com/rotation/layer/chatpage/$third-party (easylistchina+easylist.txt: 41428) -.amarotic.com/rotation/layer/chatpage/ -# ||amarotic.com/Banner/$third-party (easylistchina+easylist.txt: 41427) -.amarotic.com/Banner/ -# ||alt.com/go/$third-party (easylistchina+easylist.txt: 41426) -.alt.com/go/ -# ||affiliates.franchisegator.com^$third-party (easylistchina+easylist.txt: 41423) -.affiliates.franchisegator.com -# ||affiliates.easydate.biz^$third-party (easylistchina+easylist.txt: 41422) -.affiliates.easydate.biz -# ||affiliates.cupidplc.com^$third-party (easylistchina+easylist.txt: 41421) -.affiliates.cupidplc.com -# ||affiliate.godaddy.com^$third-party (easylistchina+easylist.txt: 41420) -.affiliate.godaddy.com -# ||affiliate.dtiserv.com^$third-party (easylistchina+easylist.txt: 41419) -.affiliate.dtiserv.com -# ||affiliate.burn-out.tv^$third-party (easylistchina+easylist.txt: 41418) -.affiliate.burn-out.tv -# ||aff-jp.exshot.com^$third-party (easylistchina+easylist.txt: 41417) -.aff-jp.exshot.com -# ||aff-jp.dxlive.com^$third-party (easylistchina+easylist.txt: 41416) -.aff-jp.dxlive.com -# ||aebn.net/feed/$third-party (easylistchina+easylist.txt: 41415) -.aebn.net/feed/ -# ||adultfriendfinder.com/piclist?$third-party (easylistchina+easylist.txt: 41412) -.adultfriendfinder.com/piclist\? -# ||adultfriendfinder.com/javascript/$third-party (easylistchina+easylist.txt: 41411) -.adultfriendfinder.com/javascript/ -# ||adultfriendfinder.com/images/banners/$third-party (easylistchina+easylist.txt: 41410) -.adultfriendfinder.com/images/banners/ -# ||adultfriendfinder.com/go/$third-party (easylistchina+easylist.txt: 41409) -.adultfriendfinder.com/go/ -# ||adultdvd.com/plugins/*/store.html$third-party (easylistchina+easylist.txt: 41407) -.adultdvd.com/plugins/.*/store\.html -# ||adtools2.amakings.com^$third-party (easylistchina+easylist.txt: 41406) -.adtools2.amakings.com -# ||adtools.gossipkings.com^$third-party (easylistchina+easylist.txt: 41405) -.adtools.gossipkings.com -# ||adsrv.bangbros.com^$third-party (easylistchina+easylist.txt: 41404) -.adsrv.bangbros.com -# ||ads.contentabc.com^$third-party (easylistchina+easylist.txt: 41402) -.ads.contentabc.com -# ||adb.fling.com^$third-party (easylistchina+easylist.txt: 41401) -.adb.fling.com -# ||ad.traffmonster.info^$third-party (easylistchina+easylist.txt: 41400) -.ad.traffmonster.info -# ||ad.favod.net^$third-party (easylistchina+easylist.txt: 41398) -.ad.favod.net -# ||a.sucksex.com^$third-party (easylistchina+easylist.txt: 41396) -.a.sucksex.com -# ||88.85.77.94/rotation/$third-party (easylistchina+easylist.txt: 41394) -.88.85.77.94/rotation/ -# ||4tube.com/iframe/$third-party (easylistchina+easylist.txt: 41391) -.4tube.com/iframe/ -# ||chronophotographie.science^$third-party (easylistchina+easylist.txt: 41246) -.chronophotographie.science -# ||zmh.zope.net^$third-party (easylistchina+easylist.txt: 41241) -.zmh.zope.net -# ||zergnet.com^$third-party (easylistchina+easylist.txt: 41233) -.zergnet.com -# ||zazzle.com^*?rf$third-party (easylistchina+easylist.txt: 41232) -.zazzle.com/.*\?rf -# ||zazzle.com/utl/getpanel$third-party (easylistchina+easylist.txt: 41231) -.zazzle.com/utl/getpanel -# ||youinsure.co.za/frame/$third-party (easylistchina+easylist.txt: 41229) -.youinsure.co.za/frame/ -# ||yieldmanager.edgesuite.net^$third-party (easylistchina+easylist.txt: 41219) -.yieldmanager.edgesuite.net -# ||xml.exactseek.com/cgi-bin/js-feed.cgi?$third-party (easylistchina+easylist.txt: 41213) -.xml.exactseek.com/cgi-bin/js-feed\.cgi\? -# ||xgaming.com/rotate*.php?$third-party (easylistchina+easylist.txt: 41210) -.xgaming.com/rotate.*\.php\? -# ||xcams.com/livecams/pub_collante/script.php?$third-party (easylistchina+easylist.txt: 41209) -.xcams.com/livecams/pub_collante/script\.php\? -# ||wupload.com/referral/$third-party (easylistchina+easylist.txt: 41207) -.wupload.com/referral/ -# ||wsockd.com^$third-party (easylistchina+easylist.txt: 41201) -.wsockd.com -# ||ws.amazon.*/widgets/$third-party (easylistchina+easylist.txt: 41200) -.ws.amazon.*./(.*/)?widgets/ -# ||wrapper.ign.com^$third-party (easylistchina+easylist.txt: 41199) -.wrapper.ign.com -# ||wishlistproducts.com/affiliatetools/$third-party (easylistchina+easylist.txt: 41190) -.wishlistproducts.com/affiliatetools/ -# ||widgets.solaramerica.org^$third-party (easylistchina+easylist.txt: 41186) -.widgets.solaramerica.org -# ||widgets.progrids.com^$third-party (easylistchina+easylist.txt: 41184) -.widgets.progrids.com -# ||widgets.privateproperty.com.ng^$third-party (easylistchina+easylist.txt: 41183) -.widgets.privateproperty.com.ng -# ||widgets.mozo.com.au^$third-party (easylistchina+easylist.txt: 41182) -.widgets.mozo.com.au -# ||widgets.mobilelocalnews.com^$third-party (easylistchina+easylist.txt: 41181) -.widgets.mobilelocalnews.com -# ||widgets.itunes.apple.com^*&affiliate_id=$third-party (easylistchina+easylist.txt: 41180) -.widgets.itunes.apple.com/.*&affiliate_id= -# ||widgets.adviceiq.com^$third-party (easylistchina+easylist.txt: 41178) -.widgets.adviceiq.com -# ||widgetcf.adviceiq.com^$third-party (easylistchina+easylist.txt: 41177) -.widgetcf.adviceiq.com -# ||widget.scoutpa.com^$third-party (easylistchina+easylist.txt: 41172) -.widget.scoutpa.com -# ||widget.jobberman.com^$third-party (easylistchina+easylist.txt: 41169) -.widget.jobberman.com -# ||widget.imshopping.com^$third-party (easylistchina+easylist.txt: 41168) -.widget.imshopping.com -# ||widget.cheki.com.ng^$third-party (easylistchina+easylist.txt: 41166) -.widget.cheki.com.ng -# ||webdev.co.zw/images/banners/$third-party (easylistchina+easylist.txt: 41161) -.webdev.co.zw/images/banners/ -# ||web2feel.com/images/$third-party (easylistchina+easylist.txt: 41160) -.web2feel.com/images/ -# ||wealthyrush.com^*/banners/$third-party (easylistchina+easylist.txt: 41157) -.wealthyrush.com/.*/banners/ -# ||watch-naruto.tv/images/$third-party (easylistchina+easylist.txt: 41154) -.watch-naruto.tv/images/ -# ||vpntunnel.se/aff/$third-party (easylistchina+easylist.txt: 41142) -.vpntunnel.se/aff/ -# ||voodoo.com^$third-party (easylistchina+easylist.txt: 41140) -.voodoo.com -# ||vitabase.com/images/relationships/$third-party (easylistchina+easylist.txt: 41138) -.vitabase.com/images/relationships/ -# ||visitorboost.com/images/$third-party (easylistchina+easylist.txt: 41137) -.visitorboost.com/images/ -# ||visit.homepagle.com^$third-party (easylistchina+easylist.txt: 41136) -.visit.homepagle.com -# ||virool.com/widgets/$third-party (easylistchina+easylist.txt: 41133) -.virool.com/widgets/ -# ||viglink.com/api/products^$third-party (easylistchina+easylist.txt: 41132) -.viglink.com/api/products[^\w%.-] -# ||viglink.com/api/optimize^$third-party (easylistchina+easylist.txt: 41131) -.viglink.com/api/optimize[^\w%.-] -# ||viglink.com/api/insert^$third-party (easylistchina+easylist.txt: 41130) -.viglink.com/api/insert[^\w%.-] -# ||viglink.com/api/batch^$third-party (easylistchina+easylist.txt: 41129) -.viglink.com/api/batch[^\w%.-] -# ||videozr.com^$third-party (easylistchina+easylist.txt: 41125) -.videozr.com -# ||valuechecker.co.uk/banners/$third-party (easylistchina+easylist.txt: 41117) -.valuechecker.co.uk/banners/ -# ||usenet.pw^$third-party (easylistchina+easylist.txt: 41112) -.usenet.pw -# ||uploaded.to/img/public/$third-party (easylistchina+easylist.txt: 41108) -.uploaded.to/img/public/ -# ||uploaded.net/img/public/$third-party (easylistchina+easylist.txt: 41107) -.uploaded.net/img/public/ -# ||upickem.net^*/affiliates/$third-party (easylistchina+easylist.txt: 41105) -.upickem.net/.*/affiliates/ -# ||unsereuni.at/resources/img/$third-party (easylistchina+easylist.txt: 41104) -.unsereuni.at/resources/img/ -# ||turbobit.net/refers/$third-party (easylistchina+easylist.txt: 41088) -.turbobit.net/refers/ -# ||turbobit.net/ref/$third-party (easylistchina+easylist.txt: 41087) -.turbobit.net/ref/ -# ||ttt.co.uk/TMConverter/$third-party (easylistchina+easylist.txt: 41086) -.ttt.co.uk/TMConverter/ -# ||tshirthell.com/img/affiliate_section/$third-party (easylistchina+easylist.txt: 41085) -.tshirthell.com/img/affiliate_section/ -# ||trivago.co.uk/uk/srv/$third-party (easylistchina+easylist.txt: 41084) -.trivago.co.uk/uk/srv/ -# ||trialpay.com^*&dw-ptid=$third-party (easylistchina+easylist.txt: 41078) -.trialpay.com/.*&dw-ptid= -# ||travelmail.traveltek.net^$third-party (easylistchina+easylist.txt: 41070) -.travelmail.traveltek.net -# ||tosol.co.uk/international.php?$third-party (easylistchina+easylist.txt: 41062) -.tosol.co.uk/international\.php\? -# ||toptenreviews.com/w/af_widget.js$third-party (easylistchina+easylist.txt: 41060) -.toptenreviews.com/w/af_widget\.js -# ||topbinaryaffiliates.ck-cdn.com^$third-party (easylistchina+easylist.txt: 41056) -.topbinaryaffiliates.ck-cdn.com -# ||tipico.*?affiliateId=$third-party (easylistchina+easylist.txt: 41049) -.tipico.*./.*\?affiliateId= -# ||tipico.*/affiliate/$third-party (easylistchina+easylist.txt: 41048) -.tipico.*./(.*/)?affiliate/ -# ||thirdpartycdn.lumovies.com^$third-party (easylistchina+easylist.txt: 41039) -.thirdpartycdn.lumovies.com -# ||theselfdefenseco.com/?affid=$third-party (easylistchina+easylist.txt: 41037) -.theselfdefenseco.com/\?affid= -# ||themify.me/banners/$third-party (easylistchina+easylist.txt: 41032) -.themify.me/banners/ -# ||theatm.info/images/$third-party (easylistchina+easylist.txt: 41029) -.theatm.info/images/ -# ||techbargains.com/scripts/banner.js$third-party (easylistchina+easylist.txt: 41024) -.techbargains.com/scripts/banner\.js -# ||techbargains.com/inc_iframe_deals_feed.cfm?$third-party (easylistchina+easylist.txt: 41023) -.techbargains.com/inc_iframe_deals_feed\.cfm\? -# ||tag.regieci.com^$third-party (easylistchina+easylist.txt: 41016) -.tag.regieci.com -# ||syndicate.payloadz.com^$third-party (easylistchina+easylist.txt: 41012) -.syndicate.payloadz.com -# ||sweeva.com/widget.php?w=$third-party (easylistchina+easylist.txt: 41010) -.sweeva.com/widget\.php\?w= -# ||sweetwater.com/feature/$third-party (easylistchina+easylist.txt: 41009) -.sweetwater.com/feature/ -# ||sweed.to/?pid=$third-party (easylistchina+easylist.txt: 41007) -.sweed.to/\?pid= -# ||svcs.ebay.com/services/search/FindingService/*^affiliate.tracking$third-party (easylistchina+easylist.txt: 41005) -.svcs.ebay.com/services/search/FindingService/.*[^\w%.-]affiliate\.tracking -# ||surveymonkey.com/jspop.aspx?$third-party (easylistchina+easylist.txt: 41002) -.surveymonkey.com/jspop\.aspx\? -# ||supply.upjers.com^$third-party (easylistchina+easylist.txt: 40999) -.supply.upjers.com -# ||strikeadcdn.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 40990) -.strikeadcdn.s3.amazonaws.com -# ||static.tradetracker.net^$third-party (easylistchina+easylist.txt: 40982) -.static.tradetracker.net -# ||static.criteo.net/js/duplo^$third-party (easylistchina+easylist.txt: 40980) -.static.criteo.net/js/duplo[^\w%.-] -# ||static.criteo.net/images^$third-party (easylistchina+easylist.txt: 40979) -.static.criteo.net/images[^\w%.-] -# ||static.criteo.net/flash^$third-party (easylistchina+easylist.txt: 40978) -.static.criteo.net/flash[^\w%.-] -# ||static.criteo.net/design^$third-party (easylistchina+easylist.txt: 40977) -.static.criteo.net/design[^\w%.-] -# ||static.criteo.com/js/duplo^$third-party (easylistchina+easylist.txt: 40976) -.static.criteo.com/js/duplo[^\w%.-] -# ||static.criteo.com/images^$third-party (easylistchina+easylist.txt: 40975) -.static.criteo.com/images[^\w%.-] -# ||static.criteo.com/flash^$third-party (easylistchina+easylist.txt: 40974) -.static.criteo.com/flash[^\w%.-] -# ||static.criteo.com/design^$third-party (easylistchina+easylist.txt: 40973) -.static.criteo.com/design[^\w%.-] -# ||static.*.criteo.net/js/duplo^$third-party (easylistchina+easylist.txt: 40972) -.static.*./.*\.criteo\.net/js/duplo[^\w%.-] -.static.*.criteo.net/js/duplo[^\w%.-] -# ||static.*.criteo.net/images^$third-party (easylistchina+easylist.txt: 40971) -.static.*./.*\.criteo\.net/images[^\w%.-] -.static.*.criteo.net/images[^\w%.-] -# ||static.*.criteo.net/flash^$third-party (easylistchina+easylist.txt: 40970) -.static.*./.*\.criteo\.net/flash[^\w%.-] -.static.*.criteo.net/flash[^\w%.-] -# ||static.*.criteo.net/design^$third-party (easylistchina+easylist.txt: 40969) -.static.*./.*\.criteo\.net/design[^\w%.-] -.static.*.criteo.net/design[^\w%.-] -# ||stargames.com/bridge.asp?$third-party (easylistchina+easylist.txt: 40968) -.stargames.com/bridge\.asp\? -# ||stalliongold.com/images/*x$third-party (easylistchina+easylist.txt: 40967) -.stalliongold.com/images/.*x -# ||stacksocial.com^*?aid=$third-party (easylistchina+easylist.txt: 40966) -.stacksocial.com/.*\?aid= -# ||stacksocial.com/bundles/$third-party (easylistchina+easylist.txt: 40965) -.stacksocial.com/bundles/ -# ||ssl-images-amazon.com/images/*/banner/$third-party (easylistchina+easylist.txt: 40963) -.ssl-images-amazon.com/images/.*/banner/ -# ||srv.dynamicyield.com^$third-party (easylistchina+easylist.txt: 40960) -.srv.dynamicyield.com -# ||sproutnova.com/serve.php$third-party (easylistchina+easylist.txt: 40958) -.sproutnova.com/serve\.php -# ||sportsbetaffiliates.com.au^$third-party (easylistchina+easylist.txt: 40956) -.sportsbetaffiliates.com.au -# ||splashpagemaker.com/images/$third-party (easylistchina+easylist.txt: 40953) -.splashpagemaker.com/images/ -# ||socialmonkee.com/images/$third-party (easylistchina+easylist.txt: 40944) -.socialmonkee.com/images/ -# ||sndkorea.nowcdn.co.kr^$third-party (easylistchina+easylist.txt: 40943) -.sndkorea.nowcdn.co.kr -# ||snapdeal.com^*.php$third-party (easylistchina+easylist.txt: 40942) -.snapdeal.com/.*\.php -# ||smartlinks.dianomi.com^$third-party (easylistchina+easylist.txt: 40938) -.smartlinks.dianomi.com -# ||smartdestinations.com/ai/$third-party (easylistchina+easylist.txt: 40937) -.smartdestinations.com/ai/ -# ||slysoft.com/img/banner/$third-party (easylistchina+easylist.txt: 40935) -.slysoft.com/img/banner/ -# ||slickdeals.meritline.com^$third-party (easylistchina+easylist.txt: 40933) -.slickdeals.meritline.com -# ||skydsl.eu/banner/$third-party (easylistchina+easylist.txt: 40932) -.skydsl.eu/banner/ -# ||sitegiant.my/affiliate/$third-party (easylistchina+easylist.txt: 40929) -.sitegiant.my/affiliate/ -# ||site5.com/creative/$third-party (easylistchina+easylist.txt: 40927) -.site5.com/creative/ -# ||sisters-magazine.com/iframebanners/$third-party (easylistchina+easylist.txt: 40926) -.sisters-magazine.com/iframebanners/ -# ||sis.amazon.com/iu?$third-party (easylistchina+easylist.txt: 40925) -.sis.amazon.com/iu\? -# ||singlehop.com/affiliates/$third-party (easylistchina+easylist.txt: 40923) -.singlehop.com/affiliates/ -# ||shopping.com/sc/pac/sdc_widget_v2.0_proxy.js$third-party (easylistchina+easylist.txt: 40915) -.shopping.com/sc/pac/sdc_widget_v2\.0_proxy\.js -# ||shopilize.com^$third-party (easylistchina+easylist.txt: 40914) -.shopilize.com -# ||sharingzone.net/images/banner$third-party (easylistchina+easylist.txt: 40910) -.sharingzone.net/images/banner -# ||shareflare.net/images/$third-party (easylistchina+easylist.txt: 40908) -.shareflare.net/images/ -# ||sfstatic.com^*/js/fl.js$third-party (easylistchina+easylist.txt: 40905) -.sfstatic.com/.*/js/fl\.js -# ||settleships.com^$third-party (easylistchina+easylist.txt: 40900) -.settleships.com -# ||server.freegamesall.com^$third-party (easylistchina+easylist.txt: 40896) -.server.freegamesall.com -# ||servedby.yell.com^$third-party (easylistchina+easylist.txt: 40895) -.servedby.yell.com -# ||seedsman.com/affiliate/$third-party (easylistchina+easylist.txt: 40891) -.seedsman.com/affiliate/ -# ||seedboxco.net/*.swf$third-party (easylistchina+easylist.txt: 40890) -.seedboxco.net/.*\.swf -# ||searchportal.information.com/?$third-party (easylistchina+easylist.txt: 40884) -.searchportal.information.com/\? -# ||scribol.com/txwidget$third-party (easylistchina+easylist.txt: 40883) -.scribol.com/txwidget -# ||sciencecareers.org/widget/$third-party (easylistchina+easylist.txt: 40879) -.sciencecareers.org/widget/ -# ||satshop.tv/images/banner/$third-party (easylistchina+easylist.txt: 40876) -.satshop.tv/images/banner/ -# ||sat-shop.co.uk/images/$third-party (easylistchina+easylist.txt: 40875) -.sat-shop.co.uk/images/ -# ||salefile.googlecode.com^$third-party (easylistchina+easylist.txt: 40873) -.salefile.googlecode.com -# ||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com^$third-party (easylistchina+easylist.txt: 40868) -.s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com -# ||s.cxt.ms^$third-party (easylistchina+easylist.txt: 40866) -.s.cxt.ms -# ||rya.rockyou.com^$third-party (easylistchina+easylist.txt: 40862) -.rya.rockyou.com -# ||russian-dreams.net/static/js/$third-party (easylistchina+easylist.txt: 40861) -.russian-dreams.net/static/js/ -# ||rover.ebay.com^*&adtype=$third-party (easylistchina+easylist.txt: 40858) -.rover.ebay.com/.*&adtype= -# ||roia.hutchmedia.com^$third-party (easylistchina+easylist.txt: 40853) -.roia.hutchmedia.com -# ||richmedia.yahoo.com^$third-party (easylistchina+easylist.txt: 40850) -.richmedia.yahoo.com -# ||ribbon.india.com^$third-party (easylistchina+easylist.txt: 40849) -.ribbon.india.com -# ||rewards1.com/images/referralbanners/$third-party (easylistchina+easylist.txt: 40848) -.rewards1.com/images/referralbanners/ -# ||relink.us/images/$third-party (easylistchina+easylist.txt: 40843) -.relink.us/images/ -# ||regmyudid.com^*/index.html$third-party (easylistchina+easylist.txt: 40840) -.regmyudid.com/.*/index\.html -# ||redflagdeals.com/dealoftheday/widgets/$third-party (easylistchina+easylist.txt: 40838) -.redflagdeals.com/dealoftheday/widgets/ -# ||redbeacon.com/widget/$third-party (easylistchina+easylist.txt: 40837) -.redbeacon.com/widget/ -# ||red-tube.com^*.php?wmid=*&kamid=*&wsid=$third-party (easylistchina+easylist.txt: 40836) -.red-tube.com/.*\.php\?wmid=.*&kamid=.*&wsid= -# ||readme.ru/informer/$third-party (easylistchina+easylist.txt: 40834) -.readme.ru/informer/ -# ||rdio.com/media/images/affiliate/$third-party (easylistchina+easylist.txt: 40833) -.rdio.com/media/images/affiliate/ -# ||rcm*.amazon.$third-party (easylistchina+easylist.txt: 40832) -.rcm*./.*\.amazon\. -.rcm*.amazon.*. -# ||rbth.ru/widget/$third-party (easylistchina+easylist.txt: 40831) -.rbth.ru/widget/ -# ||radiocentre.ca/randomimages/$third-party (easylistchina+easylist.txt: 40823) -.radiocentre.ca/randomimages/ -# ||quickflix*.gridserver.com^$third-party (easylistchina+easylist.txt: 40815) -.quickflix*./.*\.gridserver\.com[^\w%.-] -.quickflix*.gridserver.com -# ||putlocker.com/images/banners/$third-party (easylistchina+easylist.txt: 40813) -.putlocker.com/images/banners/ -# ||public.porn.fr^$third-party (easylistchina+easylist.txt: 40809) -.public.porn.fr -# ||pub.dreamboxcart.com^$third-party (easylistchina+easylist.txt: 40807) -.pub.dreamboxcart.com -# ||pub.aujourdhui.com^$third-party (easylistchina+easylist.txt: 40805) -.pub.aujourdhui.com -# ||proxies2u.com/images/btn/$third-party (easylistchina+easylist.txt: 40800) -.proxies2u.com/images/btn/ -# ||propgoluxury.com/partners/$third-party (easylistchina+easylist.txt: 40799) -.propgoluxury.com/partners/ -# ||prizerebel.com/images/banner$third-party (easylistchina+easylist.txt: 40792) -.prizerebel.com/images/banner -# ||pricegrabber.com/mlink3.php?$third-party (easylistchina+easylist.txt: 40787) -.pricegrabber.com/mlink3\.php\? -# ||pricegrabber.com/mlink.php?$third-party (easylistchina+easylist.txt: 40786) -.pricegrabber.com/mlink\.php\? -# ||pricegrabber.com/export_feeds.php?$third-party (easylistchina+easylist.txt: 40785) -.pricegrabber.com/export_feeds\.php\? -# ||pricegrabber.com/cb_table.php$third-party (easylistchina+easylist.txt: 40784) -.pricegrabber.com/cb_table\.php -# ||pricedinfo.com^$third-party (easylistchina+easylist.txt: 40783) -.pricedinfo.com -# ||premium.naturalnews.tv^$third-party (easylistchina+easylist.txt: 40782) -.premium.naturalnews.tv -# ||premium-template.com/banner/$third-party (easylistchina+easylist.txt: 40781) -.premium-template.com/banner/ -# ||post.rmbn.ru^$third-party (easylistchina+easylist.txt: 40778) -.post.rmbn.ru -# ||pops.freeze.com^$third-party (easylistchina+easylist.txt: 40776) -.pops.freeze.com -# ||popmog.com^$third-party (easylistchina+easylist.txt: 40775) -.popmog.com -# ||pokerroomkings.com^*/banner/$third-party (easylistchina+easylist.txt: 40770) -.pokerroomkings.com/.*/banner/ -# ||pm.web.com^$third-party (easylistchina+easylist.txt: 40768) -.pm.web.com -# ||plus.net/images/referrals/*_banner_$third-party (easylistchina+easylist.txt: 40767) -.plus.net/images/referrals/.*_banner_ -# ||play-asia.com/paos-$third-party (easylistchina+easylist.txt: 40761) -.play-asia.com/paos- -# ||pics.firstload.de^$third-party (easylistchina+easylist.txt: 40760) -.pics.firstload.de -# ||ph.hillcountrytexas.com/imp.php?$third-party (easylistchina+easylist.txt: 40753) -.ph.hillcountrytexas.com/imp\.php\? -# ||perfectmoney.com/img/banners/$third-party (easylistchina+easylist.txt: 40752) -.perfectmoney.com/img/banners/ -# ||perfectforex.biz/images/*x$third-party (easylistchina+easylist.txt: 40751) -.perfectforex.biz/images/.*x -# ||pdl.viaplay.com/commercials/$third-party (easylistchina+easylist.txt: 40749) -.pdl.viaplay.com/commercials/ -# ||pcash.imlive.com^$third-party (easylistchina+easylist.txt: 40747) -.pcash.imlive.com -# ||partners.betus.com^$third-party (easylistchina+easylist.txt: 40737) -.partners.betus.com -# ||partner.e-conomic.com^$third-party (easylistchina+easylist.txt: 40733) -.partner.e-conomic.com -# ||partner.alloy.com^$third-party (easylistchina+easylist.txt: 40730) -.partner.alloy.com -# ||pan.dogster.com^$third-party (easylistchina+easylist.txt: 40729) -.pan.dogster.com -# ||padsdel.com^$third-party (easylistchina+easylist.txt: 40725) -.padsdel.com -# ||p.pw/banners/$third-party (easylistchina+easylist.txt: 40724) -.p.pw/banners/ -# ||onegameplace.com/iframe.php$third-party (easylistchina+easylist.txt: 40711) -.onegameplace.com/iframe\.php -# ||ojooo.com^*/banner_$third-party (easylistchina+easylist.txt: 40708) -.ojooo.com/.*/banner_ -# ||ojooo.com/register_f/$third-party (easylistchina+easylist.txt: 40707) -.ojooo.com/register_f/ -# ||office.eteachergroup.com/leads/$third-party (easylistchina+easylist.txt: 40705) -.office.eteachergroup.com/leads/ -# ||offerssyndication.appspot.com^$third-party (easylistchina+easylist.txt: 40704) -.offerssyndication.appspot.com -# ||offers-service.cbsinteractive.com^$third-party (easylistchina+easylist.txt: 40703) -.offers-service.cbsinteractive.com -# ||o2live.com^$third-party (easylistchina+easylist.txt: 40697) -.o2live.com -# ||numb.hotshare.biz^$third-party (easylistchina+easylist.txt: 40694) -.numb.hotshare.biz -# ||nude.mk/images/$third-party (easylistchina+easylist.txt: 40693) -.nude.mk/images/ -# ||novadune.com^$third-party (easylistchina+easylist.txt: 40690) -.novadune.com -# ||nlsl.about.com/img?$third-party (easylistchina+easylist.txt: 40688) -.nlsl.about.com/img\? -# ||nitropdf.com/graphics/promo/$third-party (easylistchina+easylist.txt: 40687) -.nitropdf.com/graphics/promo/ -# ||newware.net/home/newware-sm.png$third-party (easylistchina+easylist.txt: 40685) -.newware.net/home/newware-sm\.png -# ||newware.net/home/banner$third-party (easylistchina+easylist.txt: 40684) -.newware.net/home/banner -# ||news-whistleout.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 40683) -.news-whistleout.s3.amazonaws.com -# ||namecheap.com/graphics/linkus/$third-party (easylistchina+easylist.txt: 40669) -.namecheap.com/graphics/linkus/ -# ||n4g.com^*/IndieMonthSideBarWidget?$third-party (easylistchina+easylist.txt: 40668) -.n4g.com/.*/IndieMonthSideBarWidget\? -# ||mytrafficstrategy.com/images/$third-party (easylistchina+easylist.txt: 40663) -.mytrafficstrategy.com/images/ -# ||myspace.com/play/myspace/*&locationId$third-party (easylistchina+easylist.txt: 40662) -.myspace.com/play/myspace/.*&locationId -# ||mylife.com/partner/$third-party (easylistchina+easylist.txt: 40661) -.mylife.com/partner/ -# ||myfreeresources.com/getimg.php?$third-party (easylistchina+easylist.txt: 40658) -.myfreeresources.com/getimg\.php\? -# ||myfreepaysite.info^*.gif$third-party (easylistchina+easylist.txt: 40657) -.myfreepaysite.info/.*\.gif -# ||myezbz.com/marketplace/widget/$third-party (easylistchina+easylist.txt: 40656) -.myezbz.com/marketplace/widget/ -# ||mydownloader.net/banners/$third-party (easylistchina+easylist.txt: 40655) -.mydownloader.net/banners/ -# ||mybdhost.com/imgv2/$third-party (easylistchina+easylist.txt: 40653) -.mybdhost.com/imgv2/ -# ||musicmemorization.com/images/$third-party (easylistchina+easylist.txt: 40648) -.musicmemorization.com/images/ -# ||mto.mediatakeout.com^$third-party (easylistchina+easylist.txt: 40645) -.mto.mediatakeout.com -# ||mt.sellingrealestatemalta.com^$third-party (easylistchina+easylist.txt: 40644) -.mt.sellingrealestatemalta.com -# ||msm.mysavings.com^*.asp?afid=$third-party (easylistchina+easylist.txt: 40642) -.msm.mysavings.com/.*\.asp\?afid= -# ||mp3ix.com^$third-party (easylistchina+easylist.txt: 40636) -.mp3ix.com -# ||moneycontrol.com/share-market-game/$third-party (easylistchina+easylist.txt: 40631) -.moneycontrol.com/share-market-game/ -# ||mobilemetrics.appspot.com^$third-party (easylistchina+easylist.txt: 40627) -.mobilemetrics.appspot.com -# ||mmwebhandler.888.com^$third-party (easylistchina+easylist.txt: 40625) -.mmwebhandler.888.com -# ||mmosale.com/baner_images/$third-party (easylistchina+easylist.txt: 40624) -.mmosale.com/baner_images/ -# ||mmo4rpg.com^*.gif|$third-party (easylistchina+easylist.txt: 40623) -.mmo4rpg.com/.*\.gif$ -# ||mightydeals.com/widgets/$third-party (easylistchina+easylist.txt: 40615) -.mightydeals.com/widgets/ -# ||mightydeals.com/widget?$third-party (easylistchina+easylist.txt: 40614) -.mightydeals.com/widget\? -# ||mightyape.co.nz/stuff/$third-party (easylistchina+easylist.txt: 40613) -.mightyape.co.nz/stuff/ -# ||microsoft.com^*/community/images/windowsintune/$third-party (easylistchina+easylist.txt: 40612) -.microsoft.com/.*/community/images/windowsintune/ -# ||microsoft.com^*/bannerrotator/$third-party (easylistchina+easylist.txt: 40611) -.microsoft.com/.*/bannerrotator/ -# ||mgprofit.com/images/*x$third-party (easylistchina+easylist.txt: 40610) -.mgprofit.com/images/.*x -# ||mgm.com/www/$third-party (easylistchina+easylist.txt: 40609) -.mgm.com/www/ -# ||mfeed.newzfind.com^$third-party (easylistchina+easylist.txt: 40608) -.mfeed.newzfind.com -# ||metaboli.fr^*/adgude_$third-party (easylistchina+easylist.txt: 40605) -.metaboli.fr/.*/adgude_ -# ||meraad2.blogspot.com^$third-party (easylistchina+easylist.txt: 40603) -.meraad2.blogspot.com -# ||mediaplex.com/ad/js/$third-party (easylistchina+easylist.txt: 40597) -.mediaplex.com/ad/js/ -# ||mediaplex.com/ad/fm/$third-party (easylistchina+easylist.txt: 40596) -.mediaplex.com/ad/fm/ -# ||mediaplex.com/ad/bn/$third-party (easylistchina+easylist.txt: 40595) -.mediaplex.com/ad/bn/ -# ||media.onlineteachers.co.in^$third-party (easylistchina+easylist.txt: 40593) -.media.onlineteachers.co.in -# ||media.netrefer.com^$third-party (easylistchina+easylist.txt: 40592) -.media.netrefer.com -# ||media.myspace.com/play/*/featured-videos-$third-party (easylistchina+easylist.txt: 40591) -.media.myspace.com/play/.*/featured-videos- -# ||media.domainking.ng/media/$third-party (easylistchina+easylist.txt: 40589) -.media.domainking.ng/media/ -# ||media-toolbar.com^$third-party (easylistchina+easylist.txt: 40587) -.media-toolbar.com -# ||mb.marathonbet.com^$third-party (easylistchina+easylist.txt: 40582) -.mb.marathonbet.com -# ||matrixmails.com/images/$third-party (easylistchina+easylist.txt: 40578) -.matrixmails.com/images/ -# ||match.com^*/prm/$third-party (easylistchina+easylist.txt: 40576) -.match.com/.*/prm/ -# ||mastiway.com/webimages/$third-party (easylistchina+easylist.txt: 40575) -.mastiway.com/webimages/ -# ||mantra.com.au^*/campaigns/$third-party (easylistchina+easylist.txt: 40571) -.mantra.com.au/.*/campaigns/ -# ||madisonlogic.com^$third-party (easylistchina+easylist.txt: 40565) -.madisonlogic.com -# ||lynku.com/partners/$third-party (easylistchina+easylist.txt: 40562) -.lynku.com/partners/ -# ||lumfile.com/lumimage/ourbanner/$third-party (easylistchina+easylist.txt: 40559) -.lumfile.com/lumimage/ourbanner/ -# ||lp.ncdownloader.com^$third-party (easylistchina+easylist.txt: 40553) -.lp.ncdownloader.com -# ||lowcountrymarketplace.com/widgets/$third-party (easylistchina+easylist.txt: 40551) -.lowcountrymarketplace.com/widgets/ -# ||lowbird.com/random/$third-party (easylistchina+easylist.txt: 40550) -.lowbird.com/random/ -# ||lottoelite.com/banners/$third-party (easylistchina+easylist.txt: 40549) -.lottoelite.com/banners/ -# ||loot.co.za^*/banners/$third-party (easylistchina+easylist.txt: 40548) -.loot.co.za/.*/banners/ -# ||loot.co.za/shop/product.jsp?$third-party (easylistchina+easylist.txt: 40547) -.loot.co.za/shop/product\.jsp\? -# ||loopnet.com^*/searchwidget.htm$third-party (easylistchina+easylist.txt: 40546) -.loopnet.com/.*/searchwidget\.htm -# ||liveshows.com^*/live.js$third-party (easylistchina+easylist.txt: 40532) -.liveshows.com/.*/live\.js -# ||liutilities.com/partners/$third-party (easylistchina+easylist.txt: 40528) -.liutilities.com/partners/ -# ||litecoinkamikaze.com/assets/images/banner$third-party (easylistchina+easylist.txt: 40526) -.litecoinkamikaze.com/assets/images/banner -# ||linkbird.com/static/upload/*/banner/$third-party (easylistchina+easylist.txt: 40523) -.linkbird.com/static/upload/.*/banner/ -# ||link.link.ru^$third-party (easylistchina+easylist.txt: 40522) -.link.link.ru -# ||lifestyle24h.com/reward/$third-party (easylistchina+easylist.txt: 40519) -.lifestyle24h.com/reward/ -# ||letters.coursekey.com/lettertemplates_$third-party (easylistchina+easylist.txt: 40517) -.letters.coursekey.com/lettertemplates_ -# ||lessemf.com/images/banner-$third-party (easylistchina+easylist.txt: 40515) -.lessemf.com/images/banner- -# ||lesmeilleurs-jeux.net/images/ban/$third-party (easylistchina+easylist.txt: 40514) -.lesmeilleurs-jeux.net/images/ban/ -# ||legitonlinejobs.com/images/$third-party (easylistchina+easylist.txt: 40512) -.legitonlinejobs.com/images/ -# ||leadintelligence.co.uk/in-text.js$third-party (easylistchina+easylist.txt: 40508) -.leadintelligence.co.uk/in-text\.js -# ||lawdepot.com/affiliate/$third-party (easylistchina+easylist.txt: 40507) -.lawdepot.com/affiliate/ -# ||lapi.ebay.com^$third-party (easylistchina+easylist.txt: 40505) -.lapi.ebay.com -# ||kraken.giantrealm.com^$third-party (easylistchina+easylist.txt: 40500) -.kraken.giantrealm.com -# ||kontera.com/javascript/lib/KonaLibInline.js$third-party (easylistchina+easylist.txt: 40498) -.kontera.com/javascript/lib/KonaLibInline\.js -# ||kaltura.com^*/vastPlugin.swf$third-party (easylistchina+easylist.txt: 40493) -.kaltura.com/.*/vastPlugin\.swf -# ||k-po.com/img/ebay.png$third-party (easylistchina+easylist.txt: 40488) -.k-po.com/img/ebay\.png -# ||jvzoo.com/assets/widget/$third-party (easylistchina+easylist.txt: 40487) -.jvzoo.com/assets/widget/ -# ||junction.co.za/widget/$third-party (easylistchina+easylist.txt: 40485) -.junction.co.za/widget/ -# ||jugglu.com/content/widgets/$third-party (easylistchina+easylist.txt: 40484) -.jugglu.com/content/widgets/ -# ||jobs-affiliates.ws/images/$third-party (easylistchina+easylist.txt: 40478) -.jobs-affiliates.ws/images/ -# ||joblet.jp/javascripts/$third-party (easylistchina+easylist.txt: 40477) -.joblet.jp/javascripts/ -# ||jinx.com/content/banner/$third-party (easylistchina+easylist.txt: 40475) -.jinx.com/content/banner/ -# ||jenningsforddirect.co.uk/sitewide/extras/$third-party (easylistchina+easylist.txt: 40473) -.jenningsforddirect.co.uk/sitewide/extras/ -# ||ipixs.com/ban/$third-party (easylistchina+easylist.txt: 40466) -.ipixs.com/ban/ -# ||iobit.com/partner/$third-party (easylistchina+easylist.txt: 40464) -.iobit.com/partner/ -# ||interstitial.glsp.netdna-cdn.com^$third-party (easylistchina+easylist.txt: 40462) -.interstitial.glsp.netdna-cdn.com -# ||interserver.net/logos/vps-$third-party (easylistchina+easylist.txt: 40461) -.interserver.net/logos/vps- -# ||internetbrands.com/partners/$third-party (easylistchina+easylist.txt: 40460) -.internetbrands.com/partners/ -# ||intermrkts.vo.llnwd.net^$third-party (easylistchina+easylist.txt: 40459) -.intermrkts.vo.llnwd.net -# ||inline.playbryte.com^$third-party (easylistchina+easylist.txt: 40454) -.inline.playbryte.com -# ||init.lingospot.com^$third-party (easylistchina+easylist.txt: 40453) -.init.lingospot.com -# ||infibeam.com/affiliate/$third-party (easylistchina+easylist.txt: 40448) -.infibeam.com/affiliate/ -# ||indian-forex.com^*/banners/$third-party (easylistchina+easylist.txt: 40446) -.indian-forex.com/.*/banners/ -# ||imgpop.googlecode.com^$third-party (easylistchina+easylist.txt: 40442) -.imgpop.googlecode.com -# ||imgehost.com^*/banners/$third-party (easylistchina+easylist.txt: 40441) -.imgehost.com/.*/banners/ -# ||img.servint.net^$third-party (easylistchina+easylist.txt: 40439) -.img.servint.net -# ||img.promoddl.com^$third-party (easylistchina+easylist.txt: 40438) -.img.promoddl.com -# ||img.mybet.com^$third-party (easylistchina+easylist.txt: 40437) -.img.mybet.com -# ||img.hostmonster.com^$third-party (easylistchina+easylist.txt: 40436) -.img.hostmonster.com -# ||img.bluehost.com^$third-party (easylistchina+easylist.txt: 40435) -.img.bluehost.com -# ||images.youbuy.it/images/$third-party (easylistchina+easylist.txt: 40433) -.images.youbuy.it/images/ -# ||images.mylot.com^$third-party (easylistchina+easylist.txt: 40432) -.images.mylot.com -# ||images.dreamhost.com^$third-party (easylistchina+easylist.txt: 40431) -.images.dreamhost.com -# ||images.criteo.net^$third-party (easylistchina+easylist.txt: 40430) -.images.criteo.net -# ||images.*.criteo.net^$third-party (easylistchina+easylist.txt: 40429) -.images.*./.*\.criteo\.net[^\w%.-] -.images.*.criteo.net -# ||images-amazon.com/images/*/banner/$third-party (easylistchina+easylist.txt: 40425) -.images-amazon.com/images/.*/banner/ -# ||image.dhgate.com^*/dhgate-logo-$third-party (easylistchina+easylist.txt: 40423) -.image.dhgate.com/.*/dhgate-logo- -# ||image.com.com^*/skin2.jpg$third-party (easylistchina+easylist.txt: 40422) -.image.com.com/.*/skin2\.jpg -# ||ilapi.ebay.com^$third-party (easylistchina+easylist.txt: 40419) -.ilapi.ebay.com -# ||ifilm.com/website/*_skin_$third-party (easylistchina+easylist.txt: 40418) -.ifilm.com/website/.*_skin_ -# ||idg.com.au/ggg/images/*_home.jpg$third-party (easylistchina+easylist.txt: 40416) -.idg.com.au/ggg/images/.*_home\.jpg -# ||idealo.co.uk/priceinfo/$third-party (easylistchina+easylist.txt: 40415) -.idealo.co.uk/priceinfo/ -# ||i.ligatus.com/*-placements/$third-party (easylistchina+easylist.txt: 40406) -.i.ligatus.com/.*-placements/ -# ||hqfootyad4.blogspot.com^$third-party (easylistchina+easylist.txt: 40397) -.hqfootyad4.blogspot.com -# ||hotlinking.dosmil.imap.cc^$third-party (easylistchina+easylist.txt: 40396) -.hotlinking.dosmil.imap.cc -# ||hoteltravel.com/partner/$third-party (easylistchina+easylist.txt: 40395) -.hoteltravel.com/partner/ -# ||hotelsbycity.com^*/bannermtg.php?$third-party (easylistchina+easylist.txt: 40394) -.hotelsbycity.com/.*/bannermtg\.php\? -# ||hostmonster.com/src/js/izahariev/$third-party (easylistchina+easylist.txt: 40393) -.hostmonster.com/src/js/izahariev/ -# ||hosting.conduit.com^$third-party (easylistchina+easylist.txt: 40391) -.hosting.conduit.com -# ||hostgator.com/~affiliat/cgi-bin/affiliates/$third-party (easylistchina+easylist.txt: 40390) -.hostgator.com/~affiliat/cgi-bin/affiliates/ -# ||hostdime.com/images/affiliate/$third-party (easylistchina+easylist.txt: 40389) -.hostdime.com/images/affiliate/ -# ||healthtrader.com/banner-$third-party (easylistchina+easylist.txt: 40380) -.healthtrader.com/banner- -# ||hdvid-codecs.com^$third-party (easylistchina+easylist.txt: 40379) -.hdvid-codecs.com -# ||gsniper.com/images/$third-party (easylistchina+easylist.txt: 40372) -.gsniper.com/images/ -# ||grouponcdn.com^*/affiliate_widget/$third-party (easylistchina+easylist.txt: 40371) -.grouponcdn.com/.*/affiliate_widget/ -# ||groupon.com/javascripts/common/affiliate_widget/$third-party (easylistchina+easylist.txt: 40370) -.groupon.com/javascripts/common/affiliate_widget/ -# ||grammar.coursekey.com/inter/$third-party (easylistchina+easylist.txt: 40368) -.grammar.coursekey.com/inter/ -# ||googlesyndication.com^*/simgad/$third-party (easylistchina+easylist.txt: 40361) -.googlesyndication.com/.*/simgad/ -# ||googlesyndication.com/simgad/$third-party (easylistchina+easylist.txt: 40357) -.googlesyndication.com/simgad/ -# ||googlesyndication.com/safeframe/$third-party (easylistchina+easylist.txt: 40356) -.googlesyndication.com/safeframe/ -# ||googlesyndication.com/pagead/$third-party (easylistchina+easylist.txt: 40355) -.googlesyndication.com/pagead/ -# ||goldmoney.com/~/media/Images/Banners/$third-party (easylistchina+easylist.txt: 40350) -.goldmoney.com/~/media/Images/Banners/ -# ||gold4rs.com/images/$third-party (easylistchina+easylist.txt: 40349) -.gold4rs.com/images/ -# ||giantsavings-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 40339) -.giantsavings-a.akamaihd.net -# ||ggmania.com^*.jpg$third-party (easylistchina+easylist.txt: 40337) -.ggmania.com/.*\.jpg -# ||gfxa.sheetmusicplus.com^$third-party (easylistchina+easylist.txt: 40336) -.gfxa.sheetmusicplus.com -# ||getnzb.com/img/partner/banners/$third-party (easylistchina+easylist.txt: 40333) -.getnzb.com/img/partner/banners/ -# ||gethopper.com/tp/$third-party (easylistchina+easylist.txt: 40332) -.gethopper.com/tp/ -# ||getadblock.com/images/adblock_banners/$third-party (easylistchina+easylist.txt: 40331) -.getadblock.com/images/adblock_banners/ -# ||get.thisisvegas.com^$third-party (easylistchina+easylist.txt: 40330) -.get.thisisvegas.com -# ||get.slotocash.com^$third-party (easylistchina+easylist.txt: 40329) -.get.slotocash.com -# ||get.rubyroyal.com^$third-party (easylistchina+easylist.txt: 40328) -.get.rubyroyal.com -# ||get.paradise8.com^$third-party (easylistchina+easylist.txt: 40327) -.get.paradise8.com -# ||get.davincisgold.com^$third-party (easylistchina+easylist.txt: 40326) -.get.davincisgold.com -# ||get.box24casino.com^$third-party (easylistchina+easylist.txt: 40325) -.get.box24casino.com -# ||get.2leep.com^$third-party (easylistchina+easylist.txt: 40324) -.get.2leep.com -# ||get.*.website/static/get-js?stid=$third-party (easylistchina+easylist.txt: 40323) -.get.*./.*\.website/static/get-js\?stid= -.get.*.website/static/get-js\?stid= -# ||generic4all.com^*?refid=$third-party (easylistchina+easylist.txt: 40319) -.generic4all.com/.*\?refid= -# ||gamblingwages.com/images/$third-party (easylistchina+easylist.txt: 40306) -.gamblingwages.com/images/ -# ||fyygame.com/images/*.swf$third-party (easylistchina+easylist.txt: 40304) -.fyygame.com/images/.*\.swf -# ||fyicentralmi.com/remote_widget?$third-party (easylistchina+easylist.txt: 40302) -.fyicentralmi.com/remote_widget\? -# ||futuresite.register.com/us?$third-party (easylistchina+easylist.txt: 40299) -.futuresite.register.com/us\? -# ||fupa.com/aw.aspx?$third-party (easylistchina+easylist.txt: 40296) -.fupa.com/aw\.aspx\? -# ||fugger.netfirms.com/moa.swf$third-party (easylistchina+easylist.txt: 40294) -.fugger.netfirms.com/moa\.swf -# ||fugger.ipage.com^$third-party (easylistchina+easylist.txt: 40293) -.fugger.ipage.com -# ||frogatto.com/images/$third-party (easylistchina+easylist.txt: 40290) -.frogatto.com/images/ -# ||friedrice.la/widget/$third-party (easylistchina+easylist.txt: 40289) -.friedrice.la/widget/ -# ||freshbooks.com/images/banners/$third-party (easylistchina+easylist.txt: 40288) -.freshbooks.com/images/banners/ -# ||freakshare.com/banner/$third-party (easylistchina+easylist.txt: 40281) -.freakshare.com/banner/ -# ||forms.aweber.com/form/styled_popovers_and_lightboxes.js$third-party (easylistchina+easylist.txt: 40276) -.forms.aweber.com/form/styled_popovers_and_lightboxes\.js -# ||flixcart.com/affiliate/$third-party (easylistchina+easylist.txt: 40271) -.flixcart.com/affiliate/ -# ||flipkart.com/affiliateWidget/$third-party (easylistchina+easylist.txt: 40270) -.flipkart.com/affiliateWidget/ -# ||flipchat.com/index.php?$third-party (easylistchina+easylist.txt: 40269) -.flipchat.com/index\.php\? -# ||flagship.asp-host.co.uk^$third-party (easylistchina+easylist.txt: 40268) -.flagship.asp-host.co.uk -# ||fimserve.myspace.com^$third-party (easylistchina+easylist.txt: 40265) -.fimserve.myspace.com -# ||filmehd.net/imagini/banner_$third-party (easylistchina+easylist.txt: 40262) -.filmehd.net/imagini/banner_ -# ||fileserve.com/images/banner_$third-party (easylistchina+easylist.txt: 40260) -.fileserve.com/images/banner_ -# ||fileloadr.com^$third-party (easylistchina+easylist.txt: 40257) -.fileloadr.com -# ||filedroid.net/af_ta/$third-party (easylistchina+easylist.txt: 40254) -.filedroid.net/af_ta/ -# ||filedownloader.net/design/$third-party (easylistchina+easylist.txt: 40253) -.filedownloader.net/design/ -# ||fcgadgets.blogspot.com^$third-party (easylistchina+easylist.txt: 40249) -.fcgadgets.blogspot.com -# ||fatads.toldya.com^$third-party (easylistchina+easylist.txt: 40247) -.fatads.toldya.com -# ||farmholidays.is/iframeallfarmsearch.aspx?$third-party (easylistchina+easylist.txt: 40245) -.farmholidays.is/iframeallfarmsearch\.aspx\? -# ||fantaz.com^*/banners/$third-party (easylistchina+easylist.txt: 40243) -.fantaz.com/.*/banners/ -# ||fancybar.net/ac/fancybar.js?zoneid$third-party (easylistchina+easylist.txt: 40241) -.fancybar.net/ac/fancybar\.js\?zoneid -# ||eyetopics.com/content_images/$third-party (easylistchina+easylist.txt: 40238) -.eyetopics.com/content_images/ -# ||extabit.com/s/$third-party (easylistchina+easylist.txt: 40233) -.extabit.com/s/ -# ||explorer.sheknows.com^$third-party (easylistchina+easylist.txt: 40231) -.explorer.sheknows.com -# ||etrader.kalahari.net^$third-party (easylistchina+easylist.txt: 40224) -.etrader.kalahari.net -# ||etrader.kalahari.com^$third-party (easylistchina+easylist.txt: 40223) -.etrader.kalahari.com -# ||etoro.com/B*_A*_TGet.aspx$third-party (easylistchina+easylist.txt: 40222) -.etoro.com/B.*_A.*_TGet\.aspx -# ||etoolkit.com/banner/$third-party (easylistchina+easylist.txt: 40221) -.etoolkit.com/banner/ -# ||escape.insites.eu^$third-party (easylistchina+easylist.txt: 40219) -.escape.insites.eu -# ||engine.gamerati.net^$third-party (easylistchina+easylist.txt: 40214) -.engine.gamerati.net -# ||emailcashpro.com/images/$third-party (easylistchina+easylist.txt: 40212) -.emailcashpro.com/images/ -# ||eltexonline.com/contentrotator/$third-party (easylistchina+easylist.txt: 40211) -.eltexonline.com/contentrotator/ -# ||elenasmodels.com/cache/cb_$third-party (easylistchina+easylist.txt: 40208) -.elenasmodels.com/cache/cb_ -# ||eholidayfinder.com/images/logo.gif$third-party (easylistchina+easylist.txt: 40207) -.eholidayfinder.com/images/logo\.gif -# ||edge.viagogo.co.uk^*/widget.ashx?$third-party (easylistchina+easylist.txt: 40205) -.edge.viagogo.co.uk/.*/widget\.ashx\? -# ||eblastengine.upickem.net^$third-party (easylistchina+easylist.txt: 40202) -.eblastengine.upickem.net -# ||ebaycommercenetwork.com/publisher/$third-party (easylistchina+easylist.txt: 40199) -.ebaycommercenetwork.com/publisher/ -# ||eattoday.com.mt/widgets/$third-party (easylistchina+easylist.txt: 40198) -.eattoday.com.mt/widgets/ -# ||e-webcorp.com/images/$third-party (easylistchina+easylist.txt: 40195) -.e-webcorp.com/images/ -# ||dynamicserving.com^$third-party (easylistchina+easylist.txt: 40192) -.dynamicserving.com -# ||dx.com/affiliate/$third-party (easylistchina+easylist.txt: 40185) -.dx.com/affiliate/ -# ||dvdfab.com/images/fabnewbanner/$third-party (easylistchina+easylist.txt: 40182) -.dvdfab.com/images/fabnewbanner/ -# ||dreamstime.com/img/badges/banner$third-party (easylistchina+easylist.txt: 40175) -.dreamstime.com/img/badges/banner -# ||dreamhost.com/rewards/$third-party (easylistchina+easylist.txt: 40173) -.dreamhost.com/rewards/ -# ||dreamboxcart.com/earning/$third-party (easylistchina+easylist.txt: 40172) -.dreamboxcart.com/earning/ -# ||dramafeverw2.appspot.com/widget/$third-party (easylistchina+easylist.txt: 40171) -.dramafeverw2.appspot.com/widget/ -# ||dramafever.com/widget/$third-party (easylistchina+easylist.txt: 40170) -.dramafever.com/widget/ -# ||downloadprovider.me/en/search/*?aff.id=*&iframe=$third-party (easylistchina+easylist.txt: 40164) -.downloadprovider.me/en/search/.*\?aff\.id=.*&iframe= -# ||downloadandsave-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 40163) -.downloadandsave-a.akamaihd.net -# ||download.bitdefender.com/resources/media/$third-party (easylistchina+easylist.txt: 40162) -.download.bitdefender.com/resources/media/ -# ||download-provider.org/?aff.id=$third-party (easylistchina+easylist.txt: 40161) -.download-provider.org/\?aff\.id= -# ||domainapps.com/assets/img/domain-apps.gif$third-party (easylistchina+easylist.txt: 40155) -.domainapps.com/assets/img/domain-apps\.gif -# ||directnicparking.com^$third-party (easylistchina+easylist.txt: 40141) -.directnicparking.com -# ||direct.quasir.info^$third-party (easylistchina+easylist.txt: 40140) -.direct.quasir.info -# ||desi4m.com/desi4m.gif$third-party (easylistchina+easylist.txt: 40128) -.desi4m.com/desi4m\.gif -# ||delivery.importantmedia.org^$third-party (easylistchina+easylist.txt: 40125) -.delivery.importantmedia.org -# ||deals.macupdate.com^$third-party (easylistchina+easylist.txt: 40120) -.deals.macupdate.com -# ||deals.buxr.net^$third-party (easylistchina+easylist.txt: 40119) -.deals.buxr.net -# ||dealplatform.com^*/widgets/$third-party (easylistchina+easylist.txt: 40118) -.dealplatform.com/.*/widgets/ -# ||dealextreme.com/affiliate_upload/$third-party (easylistchina+easylist.txt: 40117) -.dealextreme.com/affiliate_upload/ -# ||dawanda.com/widget/$third-party (easylistchina+easylist.txt: 40114) -.dawanda.com/widget/ -# ||daterly.com/*.widget.php$third-party (easylistchina+easylist.txt: 40113) -.daterly.com/.*\.widget\.php -# ||cuteonly.com/banners.php$third-party (easylistchina+easylist.txt: 40009) -.cuteonly.com/banners\.php -# ||customer.heartinternet.co.uk^$third-party (easylistchina+easylist.txt: 40008) -.customer.heartinternet.co.uk -# ||cursecdn.com/shared-assets/current/anchor.js?id=$third-party (easylistchina+easylist.txt: 40006) -.cursecdn.com/shared-assets/current/anchor\.js\?id= -# ||cts.tradepub.com/cts4/?ptnr=*&tm=$third-party (easylistchina+easylist.txt: 40004) -.cts.tradepub.com/cts4/\?ptnr=.*&tm= -# ||crunchyroll.com/awidget/$third-party (easylistchina+easylist.txt: 40002) -.crunchyroll.com/awidget/ -# ||cruisesalefinder.co.nz/affiliates.html$third-party (easylistchina+easylist.txt: 40001) -.cruisesalefinder.co.nz/affiliates\.html -# ||cplayer.blinkx.com^$third-party (easylistchina+easylist.txt: 39996) -.cplayer.blinkx.com -# ||couptopia.com/affiliate/$third-party (easylistchina+easylist.txt: 39994) -.couptopia.com/affiliate/ -# ||couponcp-a.akamaihd.net^$third-party (easylistchina+easylist.txt: 39993) -.couponcp-a.akamaihd.net -# ||conversionplanet.com/published/feeds/$third-party (easylistchina+easylist.txt: 39992) -.conversionplanet.com/published/feeds/ -# ||conduit.com//banners/$third-party (easylistchina+easylist.txt: 39984) -# ||comx-computers.co.za/banners/$third-party (easylistchina+easylist.txt: 39983) -.comx-computers.co.za/banners/ -# ||code.popup2m.com^$third-party (easylistchina+easylist.txt: 39978) -.code.popup2m.com -# ||cloudzer.net^*/banner/$third-party (easylistchina+easylist.txt: 39974) -.cloudzer.net/.*/banner/ -# ||circularhub.com^$third-party (easylistchina+easylist.txt: 39955) -.circularhub.com -# ||choices.truste.com^$third-party (easylistchina+easylist.txt: 39952) -.choices.truste.com -# ||challies.com^*/wtsbooks5.png$third-party (easylistchina+easylist.txt: 39950) -.challies.com/.*/wtsbooks5\.png -# ||chacsystems.com/gk_add.html$third-party (easylistchina+easylist.txt: 39949) -.chacsystems.com/gk_add\.html -# ||cex.io/informer/$third-party (easylistchina+easylist.txt: 39946) -.cex.io/informer/ -# ||centralscotlandjoinery.co.uk/images/csj-125.gif$third-party (easylistchina+easylist.txt: 39943) -.centralscotlandjoinery.co.uk/images/csj-125\.gif -# ||cdn.sweeva.com/images/$third-party (easylistchina+easylist.txt: 39937) -.cdn.sweeva.com/images/ -# ||cdn.offcloud.com^$third-party (easylistchina+easylist.txt: 39935) -.cdn.offcloud.com -# ||cdn.assets.gorillanation.com^$third-party (easylistchina+easylist.txt: 39932) -.cdn.assets.gorillanation.com -# ||caw.criteo.com^$third-party (easylistchina+easylist.txt: 39929) -.caw.criteo.com -# ||caw.*.criteo.com^$third-party (easylistchina+easylist.txt: 39928) -.caw.*./.*\.criteo\.com[^\w%.-] -.caw.*.criteo.com -# ||cas.criteo.com^$third-party (easylistchina+easylist.txt: 39920) -.cas.criteo.com -# ||cas.*.criteo.com^$third-party (easylistchina+easylist.txt: 39918) -.cas.*./.*\.criteo\.com[^\w%.-] -.cas.*.criteo.com -# ||carfax.com/img_myap/$third-party (easylistchina+easylist.txt: 39916) -.carfax.com/img_myap/ -# ||careerjunction.co.za^*/widget?$third-party (easylistchina+easylist.txt: 39915) -.careerjunction.co.za/.*/widget\? -# ||careerjunction.co.za/widgets/$third-party (easylistchina+easylist.txt: 39914) -.careerjunction.co.za/widgets/ -# ||canonresourcecenter.com^$third-party (easylistchina+easylist.txt: 39912) -.canonresourcecenter.com -# ||cancomdigital.com/resourcecenter/$third-party (easylistchina+easylist.txt: 39911) -.cancomdigital.com/resourcecenter/ -# ||buzznet.com^*/showpping-banner-$third-party (easylistchina+easylist.txt: 39903) -.buzznet.com/.*/showpping-banner- -# ||bubbles-uk.com/banner/$third-party (easylistchina+easylist.txt: 39894) -.bubbles-uk.com/banner/ -# ||btguard.com/images/$third-party (easylistchina+easylist.txt: 39891) -.btguard.com/images/ -# ||broadbandgenie.co.uk/widget?$third-party (easylistchina+easylist.txt: 39888) -.broadbandgenie.co.uk/widget\? -# ||brettterpstra.com/wp-content/uploads/$third-party (easylistchina+easylist.txt: 39887) -.brettterpstra.com/wp-content/uploads/ -# ||bordernode.com/images/$third-party (easylistchina+easylist.txt: 39878) -.bordernode.com/images/ -# ||bo-videos.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 39872) -.bo-videos.s3.amazonaws.com -# ||bluepromocode.com/images/widgets/$third-party (easylistchina+easylist.txt: 39868) -.bluepromocode.com/images/widgets/ -# ||blocks.ginotrack.com^$third-party (easylistchina+easylist.txt: 39866) -.blocks.ginotrack.com -# ||bliss-systems-api.co.uk^$third-party (easylistchina+easylist.txt: 39864) -.bliss-systems-api.co.uk -# ||bittorrent.am/serws.php?$third-party (easylistchina+easylist.txt: 39858) -.bittorrent.am/serws\.php\? -# ||bitcoinwebhosting.net/banners/$third-party (easylistchina+easylist.txt: 39856) -.bitcoinwebhosting.net/banners/ -# ||bitcoindice.com/img/bitcoindice_$third-party (easylistchina+easylist.txt: 39855) -.bitcoindice.com/img/bitcoindice_ -# ||binbox.io/public/img/promo/$third-party (easylistchina+easylist.txt: 39852) -.binbox.io/public/img/promo/ -# ||bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview.jsp?$third-party (easylistchina+easylist.txt: 39847) -.bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview\.jsp\? -# ||bharatmatrimony.com/matrimoney/matrimoneybanners/$third-party (easylistchina+easylist.txt: 39844) -.bharatmatrimony.com/matrimoney/matrimoneybanners/ -# ||betwaypartners.com/affiliate_media/$third-party (easylistchina+easylist.txt: 39843) -.betwaypartners.com/affiliate_media/ -# ||betting.betfair.com^$third-party (easylistchina+easylist.txt: 39842) -.betting.betfair.com -# ||beta.down2crazy.com^$third-party (easylistchina+easylist.txt: 39840) -.beta.down2crazy.com -# ||berush.com/images/*_semrush_$third-party (easylistchina+easylist.txt: 39834) -.berush.com/images/.*_semrush_ -# ||bemyapp.com/trk/$third-party (easylistchina+easylist.txt: 39832) -.bemyapp.com/trk/ -# ||bc.vc/js/link-converter.js$third-party (easylistchina+easylist.txt: 39829) -.bc.vc/js/link-converter\.js -# ||bc.coupons.com^$third-party (easylistchina+easylist.txt: 39828) -.bc.coupons.com -# ||banners.webmasterplan.com^$third-party (easylistchina+easylist.txt: 39826) -.banners.webmasterplan.com -# ||banners.videosz.com^$third-party (easylistchina+easylist.txt: 39825) -.banners.videosz.com -# ||banners.smarttweak.com^$third-party (easylistchina+easylist.txt: 39824) -.banners.smarttweak.com -# ||banners.moreniche.com^$third-party (easylistchina+easylist.txt: 39823) -.banners.moreniche.com -# ||banners.ixitools.com^$third-party (easylistchina+easylist.txt: 39822) -.banners.ixitools.com -# ||banners.cfspm.com.au^$third-party (easylistchina+easylist.txt: 39821) -.banners.cfspm.com.au -# ||bannermaken.nl/banners/$third-party (easylistchina+easylist.txt: 39820) -.bannermaken.nl/banners/ -# ||banner2.casino.com^$third-party (easylistchina+easylist.txt: 39819) -.banner2.casino.com -# ||banner.titanpoker.com^$third-party (easylistchina+easylist.txt: 39818) -.banner.titanpoker.com -# ||banman.isoftmarketing.com^$third-party (easylistchina+easylist.txt: 39812) -.banman.isoftmarketing.com -# ||bankrate.com/jsfeeds/$third-party (easylistchina+easylist.txt: 39810) -.bankrate.com/jsfeeds/ -# ||badoo.com/informer/$third-party (easylistchina+easylist.txt: 39807) -.badoo.com/informer/ -# ||babylon.com/systems/af/landing/$third-party (easylistchina+easylist.txt: 39804) -.babylon.com/systems/af/landing/ -# ||babylon.com/site/images/common.js$third-party (easylistchina+easylist.txt: 39803) -.babylon.com/site/images/common\.js -# ||b.sell.com^$third-party (easylistchina+easylist.txt: 39799) -.b.sell.com -# ||awadhtimes.com^$third-party (easylistchina+easylist.txt: 39793) -.awadhtimes.com -# ||augine.com/widget|$third-party (easylistchina+easylist.txt: 39791) -.augine.com/widget$ -# ||athena-ads.wikia.com^$third-party (easylistchina+easylist.txt: 39789) -.athena-ads.wikia.com -# ||as.devbridge.com^$third-party (easylistchina+easylist.txt: 39783) -.as.devbridge.com -# ||appwork.org/hoster/banner_$third-party (easylistchina+easylist.txt: 39778) -.appwork.org/hoster/banner_ -# ||appsgenius.com/images/$third-party (easylistchina+easylist.txt: 39777) -.appsgenius.com/images/ -# ||api.groupon.com/v2/deals/$third-party (easylistchina+easylist.txt: 39772) -.api.groupon.com/v2/deals/ -# ||api.bitp.it^$third-party (easylistchina+easylist.txt: 39771) -.api.bitp.it -# ||api.140proof.com^$third-party (easylistchina+easylist.txt: 39770) -.api.140proof.com -# ||any.gs/visitScript/$third-party (easylistchina+easylist.txt: 39765) -.any.gs/visitScript/ -# ||anime.jlist.com^$third-party (easylistchina+easylist.txt: 39763) -.anime.jlist.com -# ||angelbc.com/clients/*/banners/$third-party (easylistchina+easylist.txt: 39762) -.angelbc.com/clients/.*/banners/ -# ||amazon.com^*/getaanad?$third-party (easylistchina+easylist.txt: 39738) -.amazon.com/.*/getaanad\? -# ||amazon.com/?_encoding*&linkcode$third-party (easylistchina+easylist.txt: 39736) -.amazon.com/\?_encoding.*&linkcode -# ||altushost.com/docs/$third-party (easylistchina+easylist.txt: 39735) -.altushost.com/docs/ -# ||algart.net*_banner_$third-party (easylistchina+easylist.txt: 39729) -.algart.net*./.*_banner_ -# ||akamaihd.net^*/web/pdk/swf/freewheel.swf?$third-party (easylistchina+easylist.txt: 39727) -.akamaihd.net/.*/web/pdk/swf/freewheel\.swf\? -# ||akamai.net^*.247realmedia.com/$third-party (easylistchina+easylist.txt: 39721) -.akamai.net/.*\.247realmedia\.com/ -# ||ak1.imgaft.com^$third-party (easylistchina+easylist.txt: 39720) -.ak1.imgaft.com -# ||ak.imgaft.com^$third-party (easylistchina+easylist.txt: 39719) -.ak.imgaft.com -# ||ahlanlive.com/newsletters/banners/$third-party (easylistchina+easylist.txt: 39715) -.ahlanlive.com/newsletters/banners/ -# ||afimg.liveperson.com^$third-party (easylistchina+easylist.txt: 39712) -.afimg.liveperson.com -# ||affutdmedia.com^$third-party (easylistchina+easylist.txt: 39711) -.affutdmedia.com -# ||affiliation.filestube.com^$third-party (easylistchina+easylist.txt: 39709) -.affiliation.filestube.com -# ||affiliates.picaboocorp.com^$third-party (easylistchina+easylist.txt: 39707) -.affiliates.picaboocorp.com -# ||affiliates.lynda.com^$third-party (easylistchina+easylist.txt: 39706) -.affiliates.lynda.com -# ||affiliates.homestead.com^$third-party (easylistchina+easylist.txt: 39705) -.affiliates.homestead.com -# ||affiliates.bookdepository.com^$third-party (easylistchina+easylist.txt: 39704) -.affiliates.bookdepository.com -# ||affiliates.bookdepository.co.uk^$third-party (easylistchina+easylist.txt: 39703) -.affiliates.bookdepository.co.uk -# ||affiliates-cdn.mozilla.org^$third-party (easylistchina+easylist.txt: 39701) -.affiliates-cdn.mozilla.org -# ||affiliatehub.skybet.com^$third-party (easylistchina+easylist.txt: 39699) -.affiliatehub.skybet.com -# ||affiliate.mediatemple.net^$third-party (easylistchina+easylist.txt: 39698) -.affiliate.mediatemple.net -# ||affiliate.juno.co.uk^$third-party (easylistchina+easylist.txt: 39697) -.affiliate.juno.co.uk -# ||aff.cupidplc.com^$third-party (easylistchina+easylist.txt: 39692) -.aff.cupidplc.com -# ||adstest.zaman.com.tr^$third-party (easylistchina+easylist.txt: 39687) -.adstest.zaman.com.tr -# ||adsrv.eacdn.com^$third-party (easylistchina+easylist.txt: 39685) -.adsrv.eacdn.com -# ||adserv.legitreviews.com^$third-party (easylistchina+easylist.txt: 39684) -.adserv.legitreviews.com -# ||ads.dynamicyield.com^$third-party (easylistchina+easylist.txt: 39680) -.ads.dynamicyield.com -# ||adm.shinobi.jp^$third-party (easylistchina+easylist.txt: 39676) -.adm.shinobi.jp -# ||adlandpro.com^$third-party (easylistchina+easylist.txt: 39675) -.adlandpro.com -# ||adfoc.us/js/$third-party (easylistchina+easylist.txt: 39673) -.adfoc.us/js/ -# ||adf.ly^*/link-converter.js$third-party (easylistchina+easylist.txt: 39672) -.adf.ly/.*/link-converter\.js -# ||addme.com/images/addme_$third-party (easylistchina+easylist.txt: 39668) -.addme.com/images/addme_ -# ||ad2links.com/js/$third-party (easylistchina+easylist.txt: 39663) -.ad2links.com/js/ -# ||ad.zaman.com.tr^$third-party (easylistchina+easylist.txt: 39662) -.ad.zaman.com.tr -# ||ad.wsod.com^$third-party (easylistchina+easylist.txt: 39661) -.ad.wsod.com -# ||ad.valuecalling.com^$third-party (easylistchina+easylist.txt: 39658) -.ad.valuecalling.com -# ||ad.sponsoreo.com^$third-party (easylistchina+easylist.txt: 39657) -.ad.sponsoreo.com -# ||ad.sharethis.com^$third-party (easylistchina+easylist.txt: 39654) -.ad.sharethis.com -# ||ad.realmcdn.net^$third-party (easylistchina+easylist.txt: 39651) -.ad.realmcdn.net -# ||ad.premiumonlinemedia.com^$third-party (easylistchina+easylist.txt: 39647) -.ad.premiumonlinemedia.com -# ||ad.netcommunities.com^$third-party (easylistchina+easylist.txt: 39643) -.ad.netcommunities.com -# ||ad.mygamesol.com^$third-party (easylistchina+easylist.txt: 39642) -.ad.mygamesol.com -# ||ad.linkstorms.com^$third-party (easylistchina+easylist.txt: 39638) -.ad.linkstorms.com -# ||ad.lijit.com^$third-party (easylistchina+easylist.txt: 39637) -.ad.lijit.com -# ||ad.jokeroo.com^$third-party (easylistchina+easylist.txt: 39636) -.ad.jokeroo.com -# ||ad.indomp3z.us^$third-party (easylistchina+easylist.txt: 39634) -.ad.indomp3z.us -# ||ad.imad.co.kr^$third-party (easylistchina+easylist.txt: 39633) -.ad.imad.co.kr -# ||ad.ghfusion.com^$third-party (easylistchina+easylist.txt: 39630) -.ad.ghfusion.com -# ||ad.e-kolay.net^$third-party (easylistchina+easylist.txt: 39627) -.ad.e-kolay.net -# ||ad.aquamediadirect.com^$third-party (easylistchina+easylist.txt: 39625) -.ad.aquamediadirect.com -# ||ad.23blogs.com^$third-party (easylistchina+easylist.txt: 39621) -.ad.23blogs.com -# ||ablacrack.com/popup-pvd.js$third-party (easylistchina+easylist.txt: 39620) -.ablacrack.com/popup-pvd\.js -# ||96.9.176.245^$third-party (easylistchina+easylist.txt: 39611) -.96.9.176.245 -# ||360pal.com/ads/$third-party (easylistchina+easylist.txt: 39602) -.360pal.com/ads/ -# ||2yu.in/banner/$third-party (easylistchina+easylist.txt: 39601) -.2yu.in/banner/ -# ||2leep.com/ticker2/$third-party (easylistchina+easylist.txt: 39600) -.2leep.com/ticker2/ -# ||2beon.co.kr/nad/$third-party (easylistchina+easylist.txt: 39599) -.2beon.co.kr/nad/ -# ||24hrlikes.com/images/$third-party (easylistchina+easylist.txt: 39598) -.24hrlikes.com/images/ -# ||24casino.cz/poker300-$third-party (easylistchina+easylist.txt: 39597) -.24casino.cz/poker300- -# ||110.45.173.103/ad/$third-party (easylistchina+easylist.txt: 39581) -.110.45.173.103/ad/ -# ||reporo.net^$third-party (easylistchina+easylist.txt: 39479) -.reporo.net -# ||ziphentai.com^$third-party (easylistchina+easylist.txt: 39477) -.ziphentai.com -# ||zinzimo.info^$third-party (easylistchina+easylist.txt: 39476) -.zinzimo.info -# ||zenkreka.com^$third-party (easylistchina+easylist.txt: 39475) -.zenkreka.com -# ||zboac.com^$third-party (easylistchina+easylist.txt: 39474) -.zboac.com -# ||yx0banners.com^$third-party (easylistchina+easylist.txt: 39473) -.yx0banners.com -# ||yuppads.com^$third-party (easylistchina+easylist.txt: 39472) -.yuppads.com -# ||yu0123456.com^$third-party (easylistchina+easylist.txt: 39471) -.yu0123456.com -# ||ypmadserver.com^$third-party (easylistchina+easylist.txt: 39470) -.ypmadserver.com -# ||yourdatelink.com^$third-party (easylistchina+easylist.txt: 39468) -.yourdatelink.com -# ||your-big.com^$third-party (easylistchina+easylist.txt: 39467) -.your-big.com -# ||yoshatia.com^$third-party (easylistchina+easylist.txt: 39466) -.yoshatia.com -# ||yobihost.com^$third-party (easylistchina+easylist.txt: 39465) -.yobihost.com -# ||yfum.com^$third-party (easylistchina+easylist.txt: 39464) -.yfum.com -# ||yesmessenger.com^$third-party (easylistchina+easylist.txt: 39463) -.yesmessenger.com -# ||yazcash.com^$third-party (easylistchina+easylist.txt: 39462) -.yazcash.com -# ||y72yuyr9.com^$third-party (easylistchina+easylist.txt: 39461) -.y72yuyr9.com -# ||xxxwebtraffic.com^$third-party (easylistchina+easylist.txt: 39460) -.xxxwebtraffic.com -# ||xxxvipporno.com^$third-party (easylistchina+easylist.txt: 39459) -.xxxvipporno.com -# ||xxxmatch.com^$third-party (easylistchina+easylist.txt: 39458) -.xxxmatch.com -# ||xxxlnk.com^$third-party (easylistchina+easylist.txt: 39457) -.xxxlnk.com -# ||xxxex.com^$third-party (easylistchina+easylist.txt: 39456) -.xxxex.com -# ||xxxblackbook.com^$third-party (easylistchina+easylist.txt: 39455) -.xxxblackbook.com -# ||xxxbannerswap.com^$third-party (easylistchina+easylist.txt: 39454) -.xxxbannerswap.com -# ||xxxallaccesspass.com^$third-party (easylistchina+easylist.txt: 39453) -.xxxallaccesspass.com -# ||xxltr.com^$third-party (easylistchina+easylist.txt: 39452) -.xxltr.com -# ||xpop.co^$third-party (easylistchina+easylist.txt: 39451) -.xpop.co -# ||xpollo.com^$third-party (easylistchina+easylist.txt: 39450) -.xpollo.com -# ||xoliter.com^$third-party (easylistchina+easylist.txt: 39449) -.xoliter.com -# ||xmediawebs.net^$third-party (easylistchina+easylist.txt: 39448) -.xmediawebs.net -# ||xlovecam.com^$third-party (easylistchina+easylist.txt: 39447) -.xlovecam.com -# ||xidx.org^$third-party (easylistchina+easylist.txt: 39446) -.xidx.org -# ||xhamstercams.com^$third-party (easylistchina+easylist.txt: 39445) -.xhamstercams.com -# ||xfuckbook.com^$third-party (easylistchina+easylist.txt: 39444) -.xfuckbook.com -# ||xf43506e8.pw^$third-party (easylistchina+easylist.txt: 39443) -.xf43506e8.pw -# ||xclicks.net^$third-party (easylistchina+easylist.txt: 39442) -.xclicks.net -# ||xclickdirect.com^$third-party (easylistchina+easylist.txt: 39441) -.xclickdirect.com -# ||xaxoro.com^^$third-party (easylistchina+easylist.txt: 39440) -.xaxoro.com/[^\w%.-] -# ||x3v66zlz.com^$third-party (easylistchina+easylist.txt: 39439) -.x3v66zlz.com -# ||x-exchanger.co.uk^$third-party (easylistchina+easylist.txt: 39438) -.x-exchanger.co.uk -# ||x-adservice.com^$third-party (easylistchina+easylist.txt: 39437) -.x-adservice.com -# ||wwwmobiroll.com^$third-party (easylistchina+easylist.txt: 39436) -.wwwmobiroll.com -# ||wqlkp.com^$third-party (easylistchina+easylist.txt: 39435) -.wqlkp.com -# ||worldsbestcams.com^$third-party (easylistchina+easylist.txt: 39434) -.worldsbestcams.com -# ||wood-pen.com^$third-party (easylistchina+easylist.txt: 39433) -.wood-pen.com -# ||wma.io^$third-party (easylistchina+easylist.txt: 39432) -.wma.io -# ||wildmatch.com^$third-party (easylistchina+easylist.txt: 39431) -.wildmatch.com -# ||wildhookups.com^$third-party (easylistchina+easylist.txt: 39430) -.wildhookups.com -# ||wifelovers.com^$third-party (easylistchina+easylist.txt: 39429) -.wifelovers.com -# ||whaleads.com^$third-party (easylistchina+easylist.txt: 39428) -.whaleads.com -# ||wetpeachcash.com^$third-party (easylistchina+easylist.txt: 39427) -.wetpeachcash.com -# ||weselltraffic.com^$third-party (easylistchina+easylist.txt: 39426) -.weselltraffic.com -# ||weownthetraffic.com^$third-party (easylistchina+easylist.txt: 39425) -.weownthetraffic.com -# ||webteaser.ru^$third-party (easylistchina+easylist.txt: 39424) -.webteaser.ru -# ||webstats.com.br^$third-party (easylistchina+easylist.txt: 39423) -.webstats.com.br -# ||websitepromoserver.com^$third-party (easylistchina+easylist.txt: 39422) -.websitepromoserver.com -# ||webclickmanager.com^$third-party (easylistchina+easylist.txt: 39421) -.webclickmanager.com -# ||webclickengine.com^$third-party (easylistchina+easylist.txt: 39420) -.webclickengine.com -# ||webcampromotions.com^$third-party (easylistchina+easylist.txt: 39419) -.webcampromotions.com -# ||webcambait.com^$third-party (easylistchina+easylist.txt: 39418) -.webcambait.com -# ||watchmygf.to^$third-party (easylistchina+easylist.txt: 39417) -.watchmygf.to -# ||warsomnet.com^$third-party (easylistchina+easylist.txt: 39416) -.warsomnet.com -# ||wamcash.com^$third-party (easylistchina+easylist.txt: 39415) -.wamcash.com -# ||walprater.com^$third-party (easylistchina+easylist.txt: 39414) -.walprater.com -# ||vsexshop.ru^$third-party (easylistchina+easylist.txt: 39413) -.vsexshop.ru -# ||vrstage.com^$third-party (easylistchina+easylist.txt: 39412) -.vrstage.com -# ||vroll.net^$third-party (easylistchina+easylist.txt: 39411) -.vroll.net -# ||voluumtrk.com^$third-party (easylistchina+easylist.txt: 39410) -.voluumtrk.com -# ||vogozae.ru^$third-party (easylistchina+easylist.txt: 39409) -.vogozae.ru -# ||vogotita.com^$third-party (easylistchina+easylist.txt: 39408) -.vogotita.com -# ||vogorana.ru^$third-party (easylistchina+easylist.txt: 39407) -.vogorana.ru -# ||vogopita.com^$third-party (easylistchina+easylist.txt: 39406) -.vogopita.com -# ||vod-cash.com^$third-party (easylistchina+easylist.txt: 39405) -.vod-cash.com -# ||vlogexpert.com^$third-party (easylistchina+easylist.txt: 39404) -.vlogexpert.com -# ||vlexokrako.com^$third-party (easylistchina+easylist.txt: 39403) -.vlexokrako.com -# ||vktr073.net^$third-party (easylistchina+easylist.txt: 39402) -.vktr073.net -# ||vividcash.com^$third-party (easylistchina+easylist.txt: 39401) -.vividcash.com -# ||virtuagirlhd.com^$third-party (easylistchina+easylist.txt: 39400) -.virtuagirlhd.com -# ||viewrtb.com^$third-party (easylistchina+easylist.txt: 39399) -.viewrtb.com -# ||video-people.com^$third-party (easylistchina+easylist.txt: 39398) -.video-people.com -# ||verticalaffiliation.com^$third-party (easylistchina+easylist.txt: 39397) -.verticalaffiliation.com -# ||ver-pelis.net^$third-party (easylistchina+easylist.txt: 39396) -.ver-pelis.net -# ||uxernab.com^$third-party (easylistchina+easylist.txt: 39395) -.uxernab.com -# ||uuidksinc.net^$third-party (easylistchina+easylist.txt: 39394) -.uuidksinc.net -# ||unlimedia.net^$third-party (easylistchina+easylist.txt: 39393) -.unlimedia.net -# ||unaspajas.com^$third-party (easylistchina+easylist.txt: 39392) -.unaspajas.com -# ||ukreggae.ru^$third-party (easylistchina+easylist.txt: 39391) -.ukreggae.ru -# ||tynyh.com^$third-party (easylistchina+easylist.txt: 39390) -.tynyh.com -# ||txxx.com^$third-party (easylistchina+easylist.txt: 39389) -.txxx.com -# ||twistyscash.com^$third-party (easylistchina+easylist.txt: 39388) -.twistyscash.com -# ||tvzavr.ru^$third-party (easylistchina+easylist.txt: 39387) -.tvzavr.ru -# ||tufosex.com.br^$third-party (easylistchina+easylist.txt: 39386) -.tufosex.com.br -# ||tubedspots.com^$third-party (easylistchina+easylist.txt: 39385) -.tubedspots.com -# ||tubeadnetwork.com^$third-party (easylistchina+easylist.txt: 39384) -.tubeadnetwork.com -# ||ttlmodels.com^$third-party (easylistchina+easylist.txt: 39383) -.ttlmodels.com -# ||try9.com^$third-party (easylistchina+easylist.txt: 39382) -.try9.com -# ||trw12.com^$third-party (easylistchina+easylist.txt: 39381) -.trw12.com -# ||trustedadserver.com^$third-party (easylistchina+easylist.txt: 39380) -.trustedadserver.com -# ||transexy.it^$third-party (easylistchina+easylist.txt: 39379) -.transexy.it -# ||trafogon.net^$third-party (easylistchina+easylist.txt: 39378) -.trafogon.net -# ||traficmax.fr^$third-party (easylistchina+easylist.txt: 39377) -.traficmax.fr -# ||trafficundercontrol.com^$third-party (easylistchina+easylist.txt: 39376) -.trafficundercontrol.com -# ||trafficstars.com^$third-party (easylistchina+easylist.txt: 39375) -.trafficstars.com -# ||trafficshop.com^$third-party (easylistchina+easylist.txt: 39374) -.trafficshop.com -# ||trafficpimps.com^$third-party (easylistchina+easylist.txt: 39373) -.trafficpimps.com -# ||trafficlearn.com^$third-party (easylistchina+easylist.txt: 39372) -.trafficlearn.com -# ||traffichunt.com^$third-party (easylistchina+easylist.txt: 39371) -.traffichunt.com -# ||trafficholder.com^$third-party (easylistchina+easylist.txt: 39370) -.trafficholder.com -# ||traffic.ru^$third-party (easylistchina+easylist.txt: 39369) -.traffic.ru -# ||traffic-in.com^$third-party (easylistchina+easylist.txt: 39368) -.traffic-in.com -# ||traffbiz.ru^$third-party (easylistchina+easylist.txt: 39367) -.traffbiz.ru -# ||trackerodss.eu^$third-party (easylistchina+easylist.txt: 39366) -.trackerodss.eu -# ||tracker2kss.eu^$third-party (easylistchina+easylist.txt: 39365) -.tracker2kss.eu -# ||tracelive.ru^$third-party (easylistchina+easylist.txt: 39364) -.tracelive.ru -# ||tossoffads.com^$third-party (easylistchina+easylist.txt: 39363) -.tossoffads.com -# ||torrent-anime.ru^$third-party (easylistchina+easylist.txt: 39362) -.torrent-anime.ru -# ||topbucks.com^$third-party (easylistchina+easylist.txt: 39361) -.topbucks.com -# ||top-sponsor.com^$third-party (easylistchina+easylist.txt: 39360) -.top-sponsor.com -# ||toget.ru^$third-party (easylistchina+easylist.txt: 39359) -.toget.ru -# ||todayssn.com^$third-party (easylistchina+easylist.txt: 39358) -.todayssn.com -# ||tmserver-2.net^$third-party (easylistchina+easylist.txt: 39357) -.tmserver-2.net -# ||tmserver-1.com^$third-party (easylistchina+easylist.txt: 39356) -.tmserver-1.com -# ||tm-core.net^$third-party (easylistchina+easylist.txt: 39355) -.tm-core.net -# ||tkhigh.com^$third-party (easylistchina+easylist.txt: 39354) -.tkhigh.com -# ||tizernet.com^$third-party (easylistchina+easylist.txt: 39353) -.tizernet.com -# ||titsbro.pw^$third-party (easylistchina+easylist.txt: 39352) -.titsbro.pw -# ||titsbro.org^$third-party (easylistchina+easylist.txt: 39351) -.titsbro.org -# ||titsbro.net^$third-party (easylistchina+easylist.txt: 39350) -.titsbro.net -# ||tinyweene.com^$third-party (easylistchina+easylist.txt: 39349) -.tinyweene.com -# ||tingrinter.com^$third-party (easylistchina+easylist.txt: 39348) -.tingrinter.com -# ||timteen.com^$third-party (easylistchina+easylist.txt: 39347) -.timteen.com -# ||thumbnail-galleries.net^$third-party (easylistchina+easylist.txt: 39346) -.thumbnail-galleries.net -# ||thesocialsexnetwork.com^$third-party (easylistchina+easylist.txt: 39345) -.thesocialsexnetwork.com -# ||thepayporn.com^$third-party (easylistchina+easylist.txt: 39344) -.thepayporn.com -# ||thebunsenburner.com^$third-party (easylistchina+easylist.txt: 39343) -.thebunsenburner.com -# ||the-adult-company.com^$third-party (easylistchina+easylist.txt: 39342) -.the-adult-company.com -# ||teendestruction.com^$third-party (easylistchina+easylist.txt: 39341) -.teendestruction.com -# ||tech-board.com^$third-party (easylistchina+easylist.txt: 39340) -.tech-board.com -# ||teaservizio.com^$third-party (easylistchina+easylist.txt: 39339) -.teaservizio.com -# ||teasernet.ru^$third-party (easylistchina+easylist.txt: 39338) -.teasernet.ru -# ||tarkita.ru^$third-party (easylistchina+easylist.txt: 39337) -.tarkita.ru -# ||targettrafficmarketing.net^$third-party (easylistchina+easylist.txt: 39336) -.targettrafficmarketing.net -# ||targetingnow.com^$third-party (easylistchina+easylist.txt: 39335) -.targetingnow.com -# ||talk-blog.com^$third-party (easylistchina+easylist.txt: 39334) -.talk-blog.com -# ||sweetstudents.com^$third-party (easylistchina+easylist.txt: 39333) -.sweetstudents.com -# ||sweetmedia.org^$third-party (easylistchina+easylist.txt: 39332) -.sweetmedia.org -# ||sv2.biz^$third-party (easylistchina+easylist.txt: 39331) -.sv2.biz -# ||sunnysmedia.com^$third-party (easylistchina+easylist.txt: 39330) -.sunnysmedia.com -# ||stripsaver.com^$third-party (easylistchina+easylist.txt: 39329) -.stripsaver.com -# ||streamateaccess.com^$third-party (easylistchina+easylist.txt: 39328) -.streamateaccess.com -# ||sterrencash.nl^$third-party (easylistchina+easylist.txt: 39327) -.sterrencash.nl -# ||steamtraffic.com^$third-party (easylistchina+easylist.txt: 39326) -.steamtraffic.com -# ||stat-data.net^$third-party (easylistchina+easylist.txt: 39325) -.stat-data.net -# ||startwebpromo.com^$third-party (easylistchina+easylist.txt: 39324) -.startwebpromo.com -# ||startede.com^$third-party (easylistchina+easylist.txt: 39323) -.startede.com -# ||squeeder.com^$third-party (easylistchina+easylist.txt: 39322) -.squeeder.com -# ||spunkycash.com^$third-party (easylistchina+easylist.txt: 39321) -.spunkycash.com -# ||spcwm.com^$third-party (easylistchina+easylist.txt: 39320) -.spcwm.com -# ||sortow.ru^$third-party (easylistchina+easylist.txt: 39319) -.sortow.ru -# ||solutionsadultes.com^$third-party (easylistchina+easylist.txt: 39318) -.solutionsadultes.com -# ||socialsexnetwork.net^$third-party (easylistchina+easylist.txt: 39317) -.socialsexnetwork.net -# ||smutty.com^$third-party (easylistchina+easylist.txt: 39316) -.smutty.com -# ||sms-xxx.com^$third-party (easylistchina+easylist.txt: 39315) -.sms-xxx.com -# ||smartbn.ru^$third-party (easylistchina+easylist.txt: 39314) -.smartbn.ru -# ||slendastic.com^$third-party (easylistchina+easylist.txt: 39313) -.slendastic.com -# ||skeettools.com^$third-party (easylistchina+easylist.txt: 39312) -.skeettools.com -# ||sjosteras.com^$third-party (easylistchina+easylist.txt: 39311) -.sjosteras.com -# ||sixsigmatraffic.com^$third-party (easylistchina+easylist.txt: 39310) -.sixsigmatraffic.com -# ||siccash.com^$third-party (easylistchina+easylist.txt: 39309) -.siccash.com -# ||shopping-centres.org^$third-party (easylistchina+easylist.txt: 39308) -.shopping-centres.org -# ||sexypower.net^$third-party (easylistchina+easylist.txt: 39307) -.sexypower.net -# ||sexy-ch.com^$third-party (easylistchina+easylist.txt: 39306) -.sexy-ch.com -# ||sexvertise.com^$third-party (easylistchina+easylist.txt: 39305) -.sexvertise.com -# ||sextubecash.com^$third-party (easylistchina+easylist.txt: 39304) -.sextubecash.com -# ||sextracker.com^$third-party (easylistchina+easylist.txt: 39303) -.sextracker.com -# ||sexsearch.com^$third-party (easylistchina+easylist.txt: 39302) -.sexsearch.com -# ||sexplaycam.com^$third-party (easylistchina+easylist.txt: 39301) -.sexplaycam.com -# ||sexopages.com^$third-party (easylistchina+easylist.txt: 39300) -.sexopages.com -# ||sexole.com^$third-party (easylistchina+easylist.txt: 39299) -.sexole.com -# ||sexlist.com^$third-party (easylistchina+easylist.txt: 39298) -.sexlist.com -# ||sexdatecash.com^$third-party (easylistchina+easylist.txt: 39297) -.sexdatecash.com -# ||sexad.net^$third-party (easylistchina+easylist.txt: 39296) -.sexad.net -# ||sesxc.com^$third-party (easylistchina+easylist.txt: 39295) -.sesxc.com -# ||senkinar.com^$third-party (easylistchina+easylist.txt: 39294) -.senkinar.com -# ||seitentipp.com^$third-party (easylistchina+easylist.txt: 39293) -.seitentipp.com -# ||seemybucks.com^$third-party (easylistchina+easylist.txt: 39292) -.seemybucks.com -# ||seekbang.com^$third-party (easylistchina+easylist.txt: 39291) -.seekbang.com -# ||secretbehindporn.com^$third-party (easylistchina+easylist.txt: 39290) -.secretbehindporn.com -# ||searchx.eu^$third-party (easylistchina+easylist.txt: 39289) -.searchx.eu -# ||searchpeack.com^$third-party (easylistchina+easylist.txt: 39288) -.searchpeack.com -# ||scenesgirls.com^$third-party (easylistchina+easylist.txt: 39287) -.scenesgirls.com -# ||sbs-ad.com^$third-party (easylistchina+easylist.txt: 39286) -.sbs-ad.com -# ||sascentral.com^$third-party (easylistchina+easylist.txt: 39285) -.sascentral.com -# ||sancdn.net^$third-party (easylistchina+easylist.txt: 39284) -.sancdn.net -# ||safelinktracker.com^$third-party (easylistchina+easylist.txt: 39283) -.safelinktracker.com -# ||russianlovematch.com^$third-party (easylistchina+easylist.txt: 39282) -.russianlovematch.com -# ||runetki.com^$third-party (easylistchina+easylist.txt: 39281) -.runetki.com -# ||runetki.co^$third-party (easylistchina+easylist.txt: 39280) -.runetki.co -# ||rulerclick.ru^$third-party (easylistchina+easylist.txt: 39279) -.rulerclick.ru -# ||rulerclick.com^$third-party (easylistchina+easylist.txt: 39278) -.rulerclick.com -# ||rukplaza.com^$third-party (easylistchina+easylist.txt: 39277) -.rukplaza.com -# ||rubanners.com^$third-party (easylistchina+easylist.txt: 39276) -.rubanners.com -# ||rtbsystem.com^$third-party (easylistchina+easylist.txt: 39275) -.rtbsystem.com -# ||rsdisp.ru^$third-party (easylistchina+easylist.txt: 39274) -.rsdisp.ru -# ||royal-cash.com^$third-party (easylistchina+easylist.txt: 39273) -.royal-cash.com -# ||robotadserver.com^$third-party (easylistchina+easylist.txt: 39272) -.robotadserver.com -# ||rmkflouh.com^$third-party (easylistchina+easylist.txt: 39271) -.rmkflouh.com -# ||rmbn.net^$third-party (easylistchina+easylist.txt: 39270) -.rmbn.net -# ||rlogoro.ru^$third-party (easylistchina+easylist.txt: 39269) -.rlogoro.ru -# ||rivcash.com^$third-party (easylistchina+easylist.txt: 39268) -.rivcash.com -# ||ripbwing.com^$third-party (easylistchina+easylist.txt: 39267) -.ripbwing.com -# ||rexbucks.com^$third-party (easylistchina+easylist.txt: 39266) -.rexbucks.com -# ||retoxo.com^$third-party (easylistchina+easylist.txt: 39265) -.retoxo.com -# ||retargetpro.net^$third-party (easylistchina+easylist.txt: 39264) -.retargetpro.net -# ||reprak.com^$third-party (easylistchina+easylist.txt: 39263) -.reprak.com -# ||reliablebanners.com^$third-party (easylistchina+easylist.txt: 39262) -.reliablebanners.com -# ||redpineapplemedia.com^$third-party (easylistchina+easylist.txt: 39261) -.redpineapplemedia.com -# ||redlightcenter.com^$third-party (easylistchina+easylist.txt: 39260) -.redlightcenter.com -# ||redirectoptimizer.com^$third-party (easylistchina+easylist.txt: 39259) -.redirectoptimizer.com -# ||redcash.net^$third-party (easylistchina+easylist.txt: 39258) -.redcash.net -# ||realitytraffic.com^$third-party (easylistchina+easylist.txt: 39257) -.realitytraffic.com -# ||realitycash.com^$third-party (easylistchina+easylist.txt: 39256) -.realitycash.com -# ||realdatechat.com^$third-party (easylistchina+easylist.txt: 39255) -.realdatechat.com -# ||real2clean.ru^$third-party (easylistchina+easylist.txt: 39254) -.real2clean.ru -# ||reachword.com^$third-party (easylistchina+easylist.txt: 39253) -.reachword.com -# ||rdiul.com^$third-party (easylistchina+easylist.txt: 39252) -.rdiul.com -# ||rareru.ru^$third-party (easylistchina+easylist.txt: 39251) -.rareru.ru -# ||ramctrlgate.com^$third-party (easylistchina+easylist.txt: 39250) -.ramctrlgate.com -# ||ragazzeinvendita.com^$third-party (easylistchina+easylist.txt: 39249) -.ragazzeinvendita.com -# ||rack-media.com^$third-party (easylistchina+easylist.txt: 39248) -.rack-media.com -# ||r7e0zhv8.com^$third-party (easylistchina+easylist.txt: 39247) -.r7e0zhv8.com -# ||quexotac.com^$third-party (easylistchina+easylist.txt: 39246) -.quexotac.com -# ||queronamoro.com^$third-party (easylistchina+easylist.txt: 39245) -.queronamoro.com -# ||quagodex.com^$third-party (easylistchina+easylist.txt: 39244) -.quagodex.com -# ||pyiel2bz.com^$third-party (easylistchina+easylist.txt: 39243) -.pyiel2bz.com -# ||putanapartners.com^$third-party (easylistchina+easylist.txt: 39242) -.putanapartners.com -# ||putags.com^$third-party (easylistchina+easylist.txt: 39241) -.putags.com -# ||pussyeatingclubcams.com^$third-party (easylistchina+easylist.txt: 39240) -.pussyeatingclubcams.com -# ||pussyeatingclub.com^$third-party (easylistchina+easylist.txt: 39239) -.pussyeatingclub.com -# ||publish4.com^$third-party (easylistchina+easylist.txt: 39238) -.publish4.com -# ||ptwebcams.com^$third-party (easylistchina+easylist.txt: 39237) -.ptwebcams.com -# ||ptrfc.com^$third-party (easylistchina+easylist.txt: 39236) -.ptrfc.com -# ||ptclassic.com^$third-party (easylistchina+easylist.txt: 39235) -.ptclassic.com -# ||psma01.com^$third-party (easylistchina+easylist.txt: 39234) -.psma01.com -# ||prscripts.com^$third-party (easylistchina+easylist.txt: 39233) -.prscripts.com -# ||protizer.ru^$third-party (easylistchina+easylist.txt: 39232) -.protizer.ru -# ||protect-x.com^$third-party (easylistchina+easylist.txt: 39231) -.protect-x.com -# ||promowebstar.com^$third-party (easylistchina+easylist.txt: 39230) -.promowebstar.com -# ||promotools.biz^$third-party (easylistchina+easylist.txt: 39229) -.promotools.biz -# ||promotion-campaigns.com^$third-party (easylistchina+easylist.txt: 39228) -.promotion-campaigns.com -# ||promocionesweb.com^$third-party (easylistchina+easylist.txt: 39227) -.promocionesweb.com -# ||promo4partners.com^$third-party (easylistchina+easylist.txt: 39226) -.promo4partners.com -# ||program3.com^$third-party (easylistchina+easylist.txt: 39225) -.program3.com -# ||profitstat.biz^$third-party (easylistchina+easylist.txt: 39224) -.profitstat.biz -# ||profistats.net^$third-party (easylistchina+easylist.txt: 39223) -.profistats.net -# ||privatewebseiten.com^$third-party (easylistchina+easylist.txt: 39222) -.privatewebseiten.com -# ||privateseiten.net^$third-party (easylistchina+easylist.txt: 39221) -.privateseiten.net -# ||private4.com^$third-party (easylistchina+easylist.txt: 39220) -.private4.com -# ||privacyprotector.com^$third-party (easylistchina+easylist.txt: 39219) -.privacyprotector.com -# ||premiumhdv.com^$third-party (easylistchina+easylist.txt: 39218) -.premiumhdv.com -# ||premature-ejaculation-causes.org^$third-party (easylistchina+easylist.txt: 39217) -.premature-ejaculation-causes.org -# ||ppc-direct.com^$third-party (easylistchina+easylist.txt: 39216) -.ppc-direct.com -# ||pourmajeurs.com^$third-party (easylistchina+easylist.txt: 39215) -.pourmajeurs.com -# ||portable-basketball.com^$third-party (easylistchina+easylist.txt: 39214) -.portable-basketball.com -# ||porntrack.com^$third-party (easylistchina+easylist.txt: 39213) -.porntrack.com -# ||pornoow.com^$third-party (easylistchina+easylist.txt: 39212) -.pornoow.com -# ||porno-file.ru^$third-party (easylistchina+easylist.txt: 39211) -.porno-file.ru -# ||pornleep.com^$third-party (easylistchina+easylist.txt: 39210) -.pornleep.com -# ||pornkings.com^$third-party (easylistchina+easylist.txt: 39209) -.pornkings.com -# ||pornearn.com^$third-party (easylistchina+easylist.txt: 39208) -.pornearn.com -# ||pornconversions.com^$third-party (easylistchina+easylist.txt: 39207) -.pornconversions.com -# ||pornattitude.com^$third-party (easylistchina+easylist.txt: 39206) -.pornattitude.com -# ||porn99.net^$third-party (easylistchina+easylist.txt: 39205) -.porn99.net -# ||porn88.net^$third-party (easylistchina+easylist.txt: 39204) -.porn88.net -# ||porn-site-builder.com^$third-party (easylistchina+easylist.txt: 39203) -.porn-site-builder.com -# ||porn-hitz.com^$third-party (easylistchina+easylist.txt: 39202) -.porn-hitz.com -# ||porn-ad.org^$third-party (easylistchina+easylist.txt: 39201) -.porn-ad.org -# ||porkolt.com^$third-party (easylistchina+easylist.txt: 39200) -.porkolt.com -# ||popupclick.ru^$third-party (easylistchina+easylist.txt: 39199) -.popupclick.ru -# ||poppcheck.de^$third-party (easylistchina+easylist.txt: 39198) -.poppcheck.de -# ||popdown.biz^$third-party (easylistchina+easylist.txt: 39197) -.popdown.biz -# ||popander.com^$third-party (easylistchina+easylist.txt: 39196) -.popander.com -# ||popander.biz^$third-party (easylistchina+easylist.txt: 39195) -.popander.biz -# ||pop-bazar.net^$third-party (easylistchina+easylist.txt: 39194) -.pop-bazar.net -# ||poonproscash.com^$third-party (easylistchina+easylist.txt: 39193) -.poonproscash.com -# ||polimantu.com^$third-party (easylistchina+easylist.txt: 39192) -.polimantu.com -# ||pnads.com^$third-party (easylistchina+easylist.txt: 39191) -.pnads.com -# ||plugrush.com^$third-party (easylistchina+easylist.txt: 39190) -.plugrush.com -# ||plantaosexy.com^$third-party (easylistchina+easylist.txt: 39189) -.plantaosexy.com -# ||plachetde.biz^$third-party (easylistchina+easylist.txt: 39188) -.plachetde.biz -# ||pinkhoneypots.com^$third-party (easylistchina+easylist.txt: 39187) -.pinkhoneypots.com -# ||pictureturn.com^$third-party (easylistchina+easylist.txt: 39186) -.pictureturn.com -# ||philstraffic.com^$third-party (easylistchina+easylist.txt: 39185) -.philstraffic.com -# ||pepipo.com^$third-party (easylistchina+easylist.txt: 39184) -.pepipo.com -# ||pecash.com^$third-party (easylistchina+easylist.txt: 39183) -.pecash.com -# ||partnercash.de^$third-party (easylistchina+easylist.txt: 39182) -.partnercash.de -# ||partnercash.com^$third-party (easylistchina+easylist.txt: 39181) -.partnercash.com -# ||parkingpremium.com^$third-party (easylistchina+easylist.txt: 39180) -.parkingpremium.com -# ||panoll.com^$third-party (easylistchina+easylist.txt: 39179) -.panoll.com -# ||paid-to-promote.net^$third-party (easylistchina+easylist.txt: 39178) -.paid-to-promote.net -# ||p51d20aa4.website^$third-party (easylistchina+easylist.txt: 39177) -.p51d20aa4.website -# ||ozonru.eu^$third-party (easylistchina+easylist.txt: 39176) -.ozonru.eu -# ||ozon.ru^$third-party (easylistchina+easylist.txt: 39174) -.ozon.ru -# ||ozelmedikal.com^$third-party (easylistchina+easylist.txt: 39173) -.ozelmedikal.com -# ||owpawuk.ru^$third-party (easylistchina+easylist.txt: 39172) -.owpawuk.ru -# ||owlopadjet.info^$third-party (easylistchina+easylist.txt: 39171) -.owlopadjet.info -# ||outster.com^$third-party (easylistchina+easylist.txt: 39170) -.outster.com -# ||otherprofit.com^$third-party (easylistchina+easylist.txt: 39169) -.otherprofit.com -# ||otaserve.net^$third-party (easylistchina+easylist.txt: 39168) -.otaserve.net -# ||orodi.ru^$third-party (easylistchina+easylist.txt: 39167) -.orodi.ru -# ||ordermc.com^$third-party (easylistchina+easylist.txt: 39166) -.ordermc.com -# ||onyarysh.ru^$third-party (easylistchina+easylist.txt: 39165) -.onyarysh.ru -# ||onhercam.com^$third-party (easylistchina+easylist.txt: 39164) -.onhercam.com -# ||omynews.net^$third-party (easylistchina+easylist.txt: 39163) -.omynews.net -# ||okeo.ru^$third-party (easylistchina+easylist.txt: 39162) -.okeo.ru -# ||odzb5nkp.com^$third-party (easylistchina+easylist.txt: 39161) -.odzb5nkp.com -# ||oddads.net^$third-party (easylistchina+easylist.txt: 39160) -.oddads.net -# ||o333o.com^$third-party (easylistchina+easylist.txt: 39159) -.o333o.com -# ||nvp2auf5.com^$third-party (easylistchina+easylist.txt: 39158) -.nvp2auf5.com -# ||nummobile.com^$third-party (easylistchina+easylist.txt: 39157) -.nummobile.com -# ||nsfwads.com^$third-party (easylistchina+easylist.txt: 39156) -.nsfwads.com -# ||nscash.com^$third-party (easylistchina+easylist.txt: 39155) -.nscash.com -# ||nkk31jjp.com^$third-party (easylistchina+easylist.txt: 39154) -.nkk31jjp.com -# ||njmaq.com^$third-party (easylistchina+easylist.txt: 39153) -.njmaq.com -# ||ningme.ru^$third-party (easylistchina+easylist.txt: 39152) -.ningme.ru -# ||nikkiscash.com^$third-party (easylistchina+easylist.txt: 39151) -.nikkiscash.com -# ||ngbn.net^$third-party (easylistchina+easylist.txt: 39150) -.ngbn.net -# ||newsexbook.com^$third-party (easylistchina+easylist.txt: 39149) -.newsexbook.com -# ||newnudecash.com^$third-party (easylistchina+easylist.txt: 39148) -.newnudecash.com -# ||newagerevenue.com^$third-party (easylistchina+easylist.txt: 39147) -.newagerevenue.com -# ||newads.bangbros.com^$third-party (easylistchina+easylist.txt: 39146) -.newads.bangbros.com -# ||neuesdate.com^$third-party (easylistchina+easylist.txt: 39145) -.neuesdate.com -# ||netosdesalim.info^$third-party (easylistchina+easylist.txt: 39144) -.netosdesalim.info -# ||nature-friend.com^$third-party (easylistchina+easylist.txt: 39143) -.nature-friend.com -# ||nastydollars.com^$third-party (easylistchina+easylist.txt: 39142) -.nastydollars.com -# ||n9nedegrees.com^$third-party (easylistchina+easylist.txt: 39141) -.n9nedegrees.com -# ||mywebclick.net^$third-party (easylistchina+easylist.txt: 39140) -.mywebclick.net -# ||myprecisionads.com^$third-party (easylistchina+easylist.txt: 39139) -.myprecisionads.com -# ||mymirror.biz^$third-party (easylistchina+easylist.txt: 39138) -.mymirror.biz -# ||myadultbanners.com^$third-party (easylistchina+easylist.txt: 39137) -.myadultbanners.com -# ||mtree.com^$third-party (easylistchina+easylist.txt: 39136) -.mtree.com -# ||mtoor.com^$third-party (easylistchina+easylist.txt: 39135) -.mtoor.com -# ||msquaredproductions.com^$third-party (easylistchina+easylist.txt: 39134) -.msquaredproductions.com -# ||mrskincash.com^$third-party (easylistchina+easylist.txt: 39133) -.mrskincash.com -# ||mpmcash.com^$third-party (easylistchina+easylist.txt: 39132) -.mpmcash.com -# ||mp3vicio.com^$third-party (easylistchina+easylist.txt: 39131) -.mp3vicio.com -# ||morehitserver.com^$third-party (easylistchina+easylist.txt: 39130) -.morehitserver.com -# ||mopilod.com^$third-party (easylistchina+easylist.txt: 39129) -.mopilod.com -# ||mobred.net^$third-party (easylistchina+easylist.txt: 39128) -.mobred.net -# ||mobilerevenu.com^$third-party (easylistchina+easylist.txt: 39127) -.mobilerevenu.com -# ||mobbobr.com^$third-party (easylistchina+easylist.txt: 39126) -.mobbobr.com -# ||mobalives.com^$third-party (easylistchina+easylist.txt: 39125) -.mobalives.com -# ||mo8mwxi1.com^$third-party (easylistchina+easylist.txt: 39124) -.mo8mwxi1.com -# ||mmaaxx.com^$third-party (easylistchina+easylist.txt: 39123) -.mmaaxx.com -# ||millioncash.ru^$third-party (easylistchina+easylist.txt: 39122) -.millioncash.ru -# ||might-stay.info^$third-party (easylistchina+easylist.txt: 39121) -.might-stay.info -# ||meubonus.com^$third-party (easylistchina+easylist.txt: 39120) -.meubonus.com -# ||methodcash.com^$third-party (easylistchina+easylist.txt: 39119) -.methodcash.com -# ||meta4-group.com^$third-party (easylistchina+easylist.txt: 39118) -.meta4-group.com -# ||menteret.com^$third-party (easylistchina+easylist.txt: 39117) -.menteret.com -# ||meineserver.com^$third-party (easylistchina+easylist.txt: 39116) -.meineserver.com -# ||megoads.eu^$third-party (easylistchina+easylist.txt: 39115) -.megoads.eu -# ||mediumpimpin.com^$third-party (easylistchina+easylist.txt: 39114) -.mediumpimpin.com -# ||mediagra.com^$third-party (easylistchina+easylist.txt: 39113) -.mediagra.com -# ||media-click.ru^$third-party (easylistchina+easylist.txt: 39112) -.media-click.ru -# ||meccahoo.com^$third-party (easylistchina+easylist.txt: 39111) -.meccahoo.com -# ||mdlsrv.com^$third-party (easylistchina+easylist.txt: 39110) -.mdlsrv.com -# ||mc-nudes.com^$third-party (easylistchina+easylist.txt: 39109) -.mc-nudes.com -# ||mb103.com^$third-party (easylistchina+easylist.txt: 39108) -.mb103.com -# ||mazetin.ru^$third-party (easylistchina+easylist.txt: 39107) -.mazetin.ru -# ||maxiadv.com^$third-party (easylistchina+easylist.txt: 39106) -.maxiadv.com -# ||maxcash.com^$third-party (easylistchina+easylist.txt: 39105) -.maxcash.com -# ||matrix-cash.com^$third-party (easylistchina+easylist.txt: 39104) -.matrix-cash.com -# ||matrimoniale3x.ro^$third-party (easylistchina+easylist.txt: 39103) -.matrimoniale3x.ro -# ||masterwanker.com^$third-party (easylistchina+easylist.txt: 39102) -.masterwanker.com -# ||markswebcams.com^$third-party (easylistchina+easylist.txt: 39101) -.markswebcams.com -# ||manfys.com^$third-party (easylistchina+easylist.txt: 39100) -.manfys.com -# ||mallorcash.com^$third-party (easylistchina+easylist.txt: 39099) -.mallorcash.com -# ||mallcom.com^$third-party (easylistchina+easylist.txt: 39098) -.mallcom.com -# ||mahnatka.ru^$third-party (easylistchina+easylist.txt: 39097) -.mahnatka.ru -# ||magical-sky.com^$third-party (easylistchina+easylist.txt: 39096) -.magical-sky.com -# ||madbanner.com^$third-party (easylistchina+easylist.txt: 39095) -.madbanner.com -# ||lyubnozo.ru^$third-party (easylistchina+easylist.txt: 39094) -.lyubnozo.ru -# ||luvcom.com^$third-party (easylistchina+easylist.txt: 39093) -.luvcom.com -# ||luvcash.com^$third-party (easylistchina+easylist.txt: 39092) -.luvcash.com -# ||lucidcommerce.com^$third-party (easylistchina+easylist.txt: 39091) -.lucidcommerce.com -# ||lsawards.com^$third-party (easylistchina+easylist.txt: 39090) -.lsawards.com -# ||lovercash.com^$third-party (easylistchina+easylist.txt: 39089) -.lovercash.com -# ||lovecam.com.br^$third-party (easylistchina+easylist.txt: 39088) -.lovecam.com.br -# ||loveadverts.com^$third-party (easylistchina+easylist.txt: 39087) -.loveadverts.com -# ||lostun.com^$third-party (easylistchina+easylist.txt: 39086) -.lostun.com -# ||loading-delivery1.com^$third-party (easylistchina+easylist.txt: 39085) -.loading-delivery1.com -# ||loa-traffic.com^$third-party (easylistchina+easylist.txt: 39084) -.loa-traffic.com -# ||lizads.com^$third-party (easylistchina+easylist.txt: 39083) -.lizads.com -# ||livetraf.com^$third-party (easylistchina+easylist.txt: 39082) -.livetraf.com -# ||livepromotools.com^$third-party (easylistchina+easylist.txt: 39081) -.livepromotools.com -# ||liveprivates.com^$third-party (easylistchina+easylist.txt: 39080) -.liveprivates.com -# ||livejasmin.tv^$third-party (easylistchina+easylist.txt: 39079) -.livejasmin.tv -# ||livecam.com^$third-party (easylistchina+easylist.txt: 39078) -.livecam.com -# ||links-and-traffic.com^$third-party (easylistchina+easylist.txt: 39077) -.links-and-traffic.com -# ||limon.biz^$third-party (easylistchina+easylist.txt: 39076) -.limon.biz -# ||lifepromo.biz^$third-party (easylistchina+easylist.txt: 39075) -.lifepromo.biz -# ||lickbylick.com^$third-party (easylistchina+easylist.txt: 39074) -.lickbylick.com -# ||legendarylars.com^$third-party (easylistchina+easylist.txt: 39073) -.legendarylars.com -# ||leche69.com^$third-party (easylistchina+easylist.txt: 39072) -.leche69.com -# ||lavantat.com^$third-party (easylistchina+easylist.txt: 39071) -.lavantat.com -# ||kwot.biz^$third-party (easylistchina+easylist.txt: 39070) -.kwot.biz -# ||kuhnivsemisrazu.ru^$third-party (easylistchina+easylist.txt: 39069) -.kuhnivsemisrazu.ru -# ||kolort.ru^$third-party (easylistchina+easylist.txt: 39068) -.kolort.ru -# ||kolitat.com^$third-party (easylistchina+easylist.txt: 39067) -.kolitat.com -# ||kolestence.com^$third-party (easylistchina+easylist.txt: 39066) -.kolestence.com -# ||kliklink.ru^$third-party (easylistchina+easylist.txt: 39065) -.kliklink.ru -# ||kinopokaz.org^$third-party (easylistchina+easylist.txt: 39064) -.kinopokaz.org -# ||kingpinmedia.net^$third-party (easylistchina+easylist.txt: 39063) -.kingpinmedia.net -# ||kaplay.com^$third-party (easylistchina+easylist.txt: 39062) -.kaplay.com -# ||kadam.ru^$third-party (easylistchina+easylist.txt: 39061) -.kadam.ru -# ||k9x.net^$third-party (easylistchina+easylist.txt: 39060) -.k9x.net -# ||jz9ugaqb.com^$third-party (easylistchina+easylist.txt: 39059) -.jz9ugaqb.com -# ||justresa.com^$third-party (easylistchina+easylist.txt: 39058) -.justresa.com -# ||juicycash.net^$third-party (easylistchina+easylist.txt: 39057) -.juicycash.net -# ||juicyads.com^$third-party (easylistchina+easylist.txt: 39056) -.juicyads.com -# ||joyourself.com^$third-party (easylistchina+easylist.txt: 39055) -.joyourself.com -# ||jowapt.com^$third-party (easylistchina+easylist.txt: 39054) -.jowapt.com -# ||joinnowinstantly.com^$third-party (easylistchina+easylist.txt: 39053) -.joinnowinstantly.com -# ||jfresi.com^$third-party (easylistchina+easylist.txt: 39052) -.jfresi.com -# ||jerrcotch.com^$third-party (easylistchina+easylist.txt: 39051) -.jerrcotch.com -# ||jaymancash.com^$third-party (easylistchina+easylist.txt: 39050) -.jaymancash.com -# ||javbucks.com^$third-party (easylistchina+easylist.txt: 39049) -.javbucks.com -# ||jackao.net^$third-party (easylistchina+easylist.txt: 39048) -.jackao.net -# ||ixspublic.com^$third-party (easylistchina+easylist.txt: 39047) -.ixspublic.com -# ||iwinnersadvantage.com^$third-party (easylistchina+easylist.txt: 39046) -.iwinnersadvantage.com -# ||itw.me^$third-party (easylistchina+easylist.txt: 39045) -.itw.me -# ||itslive.com^$third-party (easylistchina+easylist.txt: 39044) -.itslive.com -# ||itrxx.com^$third-party (easylistchina+easylist.txt: 39043) -.itrxx.com -# ||itmcash.com^$third-party (easylistchina+easylist.txt: 39042) -.itmcash.com -# ||iprofit.cc^$third-party (easylistchina+easylist.txt: 39041) -.iprofit.cc -# ||intrapromotion.com^$third-party (easylistchina+easylist.txt: 39040) -.intrapromotion.com -# ||internebula.net^$third-party (easylistchina+easylist.txt: 39039) -.internebula.net -# ||intellichatadult.com^$third-party (easylistchina+easylist.txt: 39038) -.intellichatadult.com -# ||inheart.ru^$third-party (easylistchina+easylist.txt: 39037) -.inheart.ru -# ||impotencehelp.info^$third-party (easylistchina+easylist.txt: 39036) -.impotencehelp.info -# ||ilovecheating.com^$third-party (easylistchina+easylist.txt: 39035) -.ilovecheating.com -# ||iheartbucks.com^$third-party (easylistchina+easylist.txt: 39034) -.iheartbucks.com -# ||igiplay.net^$third-party (easylistchina+easylist.txt: 39033) -.igiplay.net -# ||idolbucks.com^$third-party (easylistchina+easylist.txt: 39032) -.idolbucks.com -# ||ideal-sexe.com^$third-party (easylistchina+easylist.txt: 39031) -.ideal-sexe.com -# ||ictowaz.ru^$third-party (easylistchina+easylist.txt: 39030) -.ictowaz.ru -# ||icqadvert.org^$third-party (easylistchina+easylist.txt: 39029) -.icqadvert.org -# ||icetraffic.com^$third-party (easylistchina+easylist.txt: 39028) -.icetraffic.com -# ||hubtraffic.com^$third-party (easylistchina+easylist.txt: 39027) -.hubtraffic.com -# ||hsmclick.com^$third-party (easylistchina+easylist.txt: 39026) -.hsmclick.com -# ||hotsocials.com^$third-party (easylistchina+easylist.txt: 39025) -.hotsocials.com -# ||hot-socials.com^$third-party (easylistchina+easylist.txt: 39024) -.hot-socials.com -# ||hot-dances.com^$third-party (easylistchina+easylist.txt: 39023) -.hot-dances.com -# ||hostave4.net^$third-party (easylistchina+easylist.txt: 39022) -.hostave4.net -# ||host-go.info^$third-party (easylistchina+easylist.txt: 39021) -.host-go.info -# ||hornyspots.com^$third-party (easylistchina+easylist.txt: 39020) -.hornyspots.com -# ||hornymatches.com^$third-party (easylistchina+easylist.txt: 39019) -.hornymatches.com -# ||hoptopboy.com^$third-party (easylistchina+easylist.txt: 39018) -.hoptopboy.com -# ||hopilos.com^$third-party (easylistchina+easylist.txt: 39017) -.hopilos.com -# ||hookupbucks.com^$third-party (easylistchina+easylist.txt: 39016) -.hookupbucks.com -# ||home-soon.com^$third-party (easylistchina+easylist.txt: 39015) -.home-soon.com -# ||hizlireklam.com^$third-party (easylistchina+easylist.txt: 39014) -.hizlireklam.com -# ||hipals.com^$third-party (easylistchina+easylist.txt: 39013) -.hipals.com -# ||highnets.com^$third-party (easylistchina+easylist.txt: 39012) -.highnets.com -# ||hiddenbucks.com^$third-party (easylistchina+easylist.txt: 39011) -.hiddenbucks.com -# ||herezera.com^$third-party (easylistchina+easylist.txt: 39010) -.herezera.com -# ||hentaibiz.com^$third-party (easylistchina+easylist.txt: 39009) -.hentaibiz.com -# ||helltraffic.com^$third-party (easylistchina+easylist.txt: 39008) -.helltraffic.com -# ||gzbop.com^$third-party (easylistchina+easylist.txt: 39007) -.gzbop.com -# ||gunzblazingpromo.com^$third-party (easylistchina+easylist.txt: 39006) -.gunzblazingpromo.com -# ||gtsads.com^$third-party (easylistchina+easylist.txt: 39005) -.gtsads.com -# ||gridlockparadise.com^$third-party (easylistchina+easylist.txt: 39004) -.gridlockparadise.com -# ||greatcpm.com^$third-party (easylistchina+easylist.txt: 39003) -.greatcpm.com -# ||govereign.com^$third-party (easylistchina+easylist.txt: 39002) -.govereign.com -# ||golderotica.com^$third-party (easylistchina+easylist.txt: 39001) -.golderotica.com -# ||goklics.ru^$third-party (easylistchina+easylist.txt: 39000) -.goklics.ru -# ||goallurl.ru^$third-party (easylistchina+easylist.txt: 38999) -.goallurl.ru -# ||go2euroshop.com^$third-party (easylistchina+easylist.txt: 38998) -.go2euroshop.com -# ||glbtrk.com^$third-party (easylistchina+easylist.txt: 38997) -.glbtrk.com -# ||gl-cash.com^$third-party (easylistchina+easylist.txt: 38996) -.gl-cash.com -# ||ggwcash.com^$third-party (easylistchina+easylist.txt: 38995) -.ggwcash.com -# ||gfhdkse.com^$third-party (easylistchina+easylist.txt: 38994) -.gfhdkse.com -# ||getiton.com^$third-party (easylistchina+easylist.txt: 38993) -.getiton.com -# ||geoinventory.com^$third-party (easylistchina+easylist.txt: 38992) -.geoinventory.com -# ||geofamily.ru^$third-party (easylistchina+easylist.txt: 38991) -.geofamily.ru -# ||geoaddicted.net^$third-party (easylistchina+easylist.txt: 38990) -.geoaddicted.net -# ||genialradio.com^$third-party (easylistchina+easylist.txt: 38989) -.genialradio.com -# ||gefnaro.com^$third-party (easylistchina+easylist.txt: 38988) -.gefnaro.com -# ||gayxperience.com^$third-party (easylistchina+easylist.txt: 38987) -.gayxperience.com -# ||gayadpros.com^$third-party (easylistchina+easylist.txt: 38986) -.gayadpros.com -# ||ganardineroreal.com^$third-party (easylistchina+easylist.txt: 38985) -.ganardineroreal.com -# ||gamblespot.ru^$third-party (easylistchina+easylist.txt: 38984) -.gamblespot.ru -# ||g726n8cy.com^$third-party (easylistchina+easylist.txt: 38983) -.g726n8cy.com -# ||g6ni40i7.com^$third-party (easylistchina+easylist.txt: 38982) -.g6ni40i7.com -# ||funnypickuplinesforgirls.com^$third-party (easylistchina+easylist.txt: 38981) -.funnypickuplinesforgirls.com -# ||funcel.mobi^$third-party (easylistchina+easylist.txt: 38980) -.funcel.mobi -# ||fuelbuck.com^$third-party (easylistchina+easylist.txt: 38979) -.fuelbuck.com -# ||fuckyoucash.com^$third-party (easylistchina+easylist.txt: 38978) -.fuckyoucash.com -# ||fuckermedia.com^$third-party (easylistchina+easylist.txt: 38977) -.fuckermedia.com -# ||fuckbookdating.com^$third-party (easylistchina+easylist.txt: 38976) -.fuckbookdating.com -# ||fuckbook.cm^$third-party (easylistchina+easylist.txt: 38975) -.fuckbook.cm -# ||frutrun.com^$third-party (easylistchina+easylist.txt: 38974) -.frutrun.com -# ||frivol-ads.com^$third-party (easylistchina+easylist.txt: 38973) -.frivol-ads.com -# ||frestime.com^$third-party (easylistchina+easylist.txt: 38972) -.frestime.com -# ||frestacero.com^$third-party (easylistchina+easylist.txt: 38971) -.frestacero.com -# ||free-porn-vidz.com^$third-party (easylistchina+easylist.txt: 38970) -.free-porn-vidz.com -# ||freakads.com^$third-party (easylistchina+easylist.txt: 38969) -.freakads.com -# ||forgetstore.com^$third-party (easylistchina+easylist.txt: 38968) -.forgetstore.com -# ||fncash.com^$third-party (easylistchina+easylist.txt: 38967) -.fncash.com -# ||fmscash.com^$third-party (easylistchina+easylist.txt: 38966) -.fmscash.com -# ||flirtingsms.com^$third-party (easylistchina+easylist.txt: 38965) -.flirtingsms.com -# ||flirt4free.com^$third-party (easylistchina+easylist.txt: 38964) -.flirt4free.com -# ||flirt4e.com^$third-party (easylistchina+easylist.txt: 38963) -.flirt4e.com -# ||flipflapflo.net^$third-party (easylistchina+easylist.txt: 38962) -.flipflapflo.net -# ||flipflapflo.info^$third-party (easylistchina+easylist.txt: 38961) -.flipflapflo.info -# ||fleshlightgirls.com^$third-party (easylistchina+easylist.txt: 38960) -.fleshlightgirls.com -# ||fleshcash.com^$third-party (easylistchina+easylist.txt: 38959) -.fleshcash.com -# ||flashadtools.com^$third-party (easylistchina+easylist.txt: 38958) -.flashadtools.com -# ||findandtry.com^$third-party (easylistchina+easylist.txt: 38957) -.findandtry.com -# ||filthads.com^$third-party (easylistchina+easylist.txt: 38956) -.filthads.com -# ||fickads.net^$third-party (easylistchina+easylist.txt: 38955) -.fickads.net -# ||felixflow.com^$third-party (easylistchina+easylist.txt: 38954) -.felixflow.com -# ||feeder.xxx^$third-party (easylistchina+easylist.txt: 38953) -.feeder.xxx -# ||fanmalinin.ru^$third-party (easylistchina+easylist.txt: 38952) -.fanmalinin.ru -# ||facetz.net^$third-party (easylistchina+easylist.txt: 38951) -.facetz.net -# ||faceporn.com^$third-party (easylistchina+easylist.txt: 38950) -.faceporn.com -# ||facebookofsex.com^$third-party (easylistchina+easylist.txt: 38949) -.facebookofsex.com -# ||eyemedias.com^$third-party (easylistchina+easylist.txt: 38948) -.eyemedias.com -# ||exsifsi.ru^$third-party (easylistchina+easylist.txt: 38947) -.exsifsi.ru -# ||exoticads.com^$third-party (easylistchina+easylist.txt: 38946) -.exoticads.com -# ||exogripper.com^$third-party (easylistchina+easylist.txt: 38945) -.exogripper.com -# ||exoclickz.com^$third-party (easylistchina+easylist.txt: 38944) -.exoclickz.com -# ||exclusivepussy.com^$third-party (easylistchina+easylist.txt: 38943) -.exclusivepussy.com -# ||exchangecash.de^$third-party (easylistchina+easylist.txt: 38942) -.exchangecash.de -# ||euro4ads.de^$third-party (easylistchina+easylist.txt: 38941) -.euro4ads.de -# ||euro-rx.com^$third-party (easylistchina+easylist.txt: 38940) -.euro-rx.com -# ||eu2xml.com^$third-party (easylistchina+easylist.txt: 38939) -.eu2xml.com -# ||escortso.com^$third-party (easylistchina+easylist.txt: 38938) -.escortso.com -# ||erotizer.info^$third-party (easylistchina+easylist.txt: 38937) -.erotizer.info -# ||erotikdating.com^$third-party (easylistchina+easylist.txt: 38936) -.erotikdating.com -# ||erosadv.com^$third-party (easylistchina+easylist.txt: 38935) -.erosadv.com -# ||eragi.ru^$third-party (easylistchina+easylist.txt: 38934) -.eragi.ru -# ||enoratraffic.com^$third-party (easylistchina+easylist.txt: 38933) -.enoratraffic.com -# ||emediawebs.com^$third-party (easylistchina+easylist.txt: 38932) -.emediawebs.com -# ||eltepo.ru^$third-party (easylistchina+easylist.txt: 38931) -.eltepo.ru -# ||elekted.com^$third-party (easylistchina+easylist.txt: 38930) -.elekted.com -# ||ecortb.com^$third-party (easylistchina+easylist.txt: 38929) -.ecortb.com -# ||ebocornac.com^$third-party (easylistchina+easylist.txt: 38928) -.ebocornac.com -# ||ebdr2.com^$third-party (easylistchina+easylist.txt: 38927) -.ebdr2.com -# ||easyflirt.com^$third-party (easylistchina+easylist.txt: 38926) -.easyflirt.com -# ||easy-dating.org^$third-party (easylistchina+easylist.txt: 38925) -.easy-dating.org -# ||eadulttraffic.com^$third-party (easylistchina+easylist.txt: 38924) -.eadulttraffic.com -# ||dvdkinoteatr.com^$third-party (easylistchina+easylist.txt: 38923) -.dvdkinoteatr.com -# ||dtiserv2.com^$third-party (easylistchina+easylist.txt: 38922) -.dtiserv2.com -# ||dro4icho.ru^$third-party (easylistchina+easylist.txt: 38921) -.dro4icho.ru -# ||drevil.to^$third-party (easylistchina+easylist.txt: 38920) -.drevil.to -# ||doublegear.com^$third-party (easylistchina+easylist.txt: 38919) -.doublegear.com -# ||double-check.com^$third-party (easylistchina+easylist.txt: 38918) -.double-check.com -# ||dosugcz.biz^$third-party (easylistchina+easylist.txt: 38917) -.dosugcz.biz -# ||dofolo.ru^$third-party (easylistchina+easylist.txt: 38916) -.dofolo.ru -# ||divertura.com^$third-party (easylistchina+easylist.txt: 38915) -.divertura.com -# ||divascam.com^$third-party (easylistchina+easylist.txt: 38914) -.divascam.com -# ||discreetlocalgirls.com^$third-party (easylistchina+easylist.txt: 38913) -.discreetlocalgirls.com -# ||direction-x.com^$third-party (easylistchina+easylist.txt: 38912) -.direction-x.com -# ||directchat.tv^$third-party (easylistchina+easylist.txt: 38911) -.directchat.tv -# ||directadvert.ru^$third-party (easylistchina+easylist.txt: 38910) -.directadvert.ru -# ||digitaldesire.com^$third-party (easylistchina+easylist.txt: 38909) -.digitaldesire.com -# ||desiad.net^$third-party (easylistchina+easylist.txt: 38908) -.desiad.net -# ||depravedwhores.com^$third-party (easylistchina+easylist.txt: 38907) -.depravedwhores.com -# ||depilflash.tv^$third-party (easylistchina+easylist.txt: 38906) -.depilflash.tv -# ||denotyro.com^$third-party (easylistchina+easylist.txt: 38905) -.denotyro.com -# ||demanier.com^$third-party (easylistchina+easylist.txt: 38904) -.demanier.com -# ||deecash.com^$third-party (easylistchina+easylist.txt: 38903) -.deecash.com -# ||dblpmp.com^$third-party (easylistchina+easylist.txt: 38902) -.dblpmp.com -# ||datingidol.com^$third-party (easylistchina+easylist.txt: 38901) -.datingidol.com -# ||datingamateurs.com^$third-party (easylistchina+easylist.txt: 38900) -.datingamateurs.com -# ||datingadnetwork.com^$third-party (easylistchina+easylist.txt: 38899) -.datingadnetwork.com -# ||dating-adv.com^$third-party (easylistchina+easylist.txt: 38898) -.dating-adv.com -# ||datexchanges.net^$third-party (easylistchina+easylist.txt: 38897) -.datexchanges.net -# ||datetraders.com^$third-party (easylistchina+easylist.txt: 38896) -.datetraders.com -# ||datefunclub.com^$third-party (easylistchina+easylist.txt: 38895) -.datefunclub.com -# ||data.13dc235d.xyz^$third-party (easylistchina+easylist.txt: 38894) -.data.13dc235d.xyz -# ||data-ero-advertising.com^$third-party (easylistchina+easylist.txt: 38893) -.data-ero-advertising.com -# ||darangi.ru^$third-party (easylistchina+easylist.txt: 38892) -.darangi.ru -# ||danzabucks.com^$third-party (easylistchina+easylist.txt: 38891) -.danzabucks.com -# ||dana123.com^$third-party (easylistchina+easylist.txt: 38890) -.dana123.com -# ||dallavel.com^$third-party (easylistchina+easylist.txt: 38889) -.dallavel.com -# ||daffaite.com^$third-party (easylistchina+easylist.txt: 38888) -.daffaite.com -# ||d3b3e6340.website^$third-party (easylistchina+easylist.txt: 38887) -.d3b3e6340.website -# ||d29gqcij.com^$third-party (easylistchina+easylist.txt: 38886) -.d29gqcij.com -# ||d0main.ru^$third-party (easylistchina+easylist.txt: 38885) -.d0main.ru -# ||d-agency.net^$third-party (easylistchina+easylist.txt: 38884) -.d-agency.net -# ||cybernetentertainment.com^$third-party (easylistchina+easylist.txt: 38883) -.cybernetentertainment.com -# ||cyberbidhost.com^$third-party (easylistchina+easylist.txt: 38882) -.cyberbidhost.com -# ||cwgads.com^$third-party (easylistchina+easylist.txt: 38881) -.cwgads.com -# ||ctyzd.com^$third-party (easylistchina+easylist.txt: 38880) -.ctyzd.com -# ||crtracklink.com^$third-party (easylistchina+easylist.txt: 38879) -.crtracklink.com -# ||crocoads.com^$third-party (easylistchina+easylist.txt: 38878) -.crocoads.com -# ||creoads.com^$third-party (easylistchina+easylist.txt: 38877) -.creoads.com -# ||crakcash.com^$third-party (easylistchina+easylist.txt: 38876) -.crakcash.com -# ||crakbanner.com^$third-party (easylistchina+easylist.txt: 38875) -.crakbanner.com -# ||cpl1.ru^$third-party (easylistchina+easylist.txt: 38874) -.cpl1.ru -# ||cpacoreg.com^$third-party (easylistchina+easylist.txt: 38873) -.cpacoreg.com -# ||comunicazio.com^$third-party (easylistchina+easylist.txt: 38872) -.comunicazio.com -# ||colpory.com^$third-party (easylistchina+easylist.txt: 38871) -.colpory.com -# ||coloredguitar.com^$third-party (easylistchina+easylist.txt: 38870) -.coloredguitar.com -# ||coldhardcash.com^$third-party (easylistchina+easylist.txt: 38869) -.coldhardcash.com -# ||codelnet.com^$third-party (easylistchina+easylist.txt: 38868) -.codelnet.com -# ||cmdfnow.com^$third-party (easylistchina+easylist.txt: 38867) -.cmdfnow.com -# ||clicktrace.info^$third-party (easylistchina+easylist.txt: 38866) -.clicktrace.info -# ||clickthruserver.com^$third-party (easylistchina+easylist.txt: 38865) -.clickthruserver.com -# ||clicksvenue.com^$third-party (easylistchina+easylist.txt: 38864) -.clicksvenue.com -# ||clickpapa.com^$third-party (easylistchina+easylist.txt: 38863) -.clickpapa.com -# ||clickganic.com^$third-party (easylistchina+easylist.txt: 38862) -.clickganic.com -# ||clearac.com^$third-party (easylistchina+easylist.txt: 38861) -.clearac.com -# ||citysex.com^$third-party (easylistchina+easylist.txt: 38860) -.citysex.com -# ||chopstick16.com^$third-party (easylistchina+easylist.txt: 38859) -.chopstick16.com -# ||chestyry.com^$third-party (easylistchina+easylist.txt: 38858) -.chestyry.com -# ||che-ka.com^$third-party (easylistchina+easylist.txt: 38857) -.che-ka.com -# ||chatischat.com^$third-party (easylistchina+easylist.txt: 38856) -.chatischat.com -# ||cervicalknowledge.info^$third-party (easylistchina+easylist.txt: 38855) -.cervicalknowledge.info -# ||certified-apps.com^$third-party (easylistchina+easylist.txt: 38854) -.certified-apps.com -# ||cennter.com^$third-party (easylistchina+easylist.txt: 38853) -.cennter.com -# ||celogera.com^$third-party (easylistchina+easylist.txt: 38852) -.celogera.com -# ||celeb-ads.com^$third-party (easylistchina+easylist.txt: 38851) -.celeb-ads.com -# ||ceepq.com^$third-party (easylistchina+easylist.txt: 38850) -.ceepq.com -# ||cashtraff.com^$third-party (easylistchina+easylist.txt: 38849) -.cashtraff.com -# ||cashthat.com^$third-party (easylistchina+easylist.txt: 38848) -.cashthat.com -# ||cashlayer.com^$third-party (easylistchina+easylist.txt: 38847) -.cashlayer.com -# ||cash4movie.com^$third-party (easylistchina+easylist.txt: 38846) -.cash4movie.com -# ||cash-program.com^$third-party (easylistchina+easylist.txt: 38845) -.cash-program.com -# ||camzap.com^$third-party (easylistchina+easylist.txt: 38844) -.camzap.com -# ||camsitecash.com^$third-party (easylistchina+easylist.txt: 38843) -.camsitecash.com -# ||camsense.com^$third-party (easylistchina+easylist.txt: 38842) -.camsense.com -# ||campromos.nl^$third-party (easylistchina+easylist.txt: 38841) -.campromos.nl -# ||camprime.com^$third-party (easylistchina+easylist.txt: 38840) -.camprime.com -# ||camplacecash.com^$third-party (easylistchina+easylist.txt: 38839) -.camplacecash.com -# ||campartner.com^$third-party (easylistchina+easylist.txt: 38838) -.campartner.com -# ||camduty.com^$third-party (easylistchina+easylist.txt: 38837) -.camduty.com -# ||camdough.com^$third-party (easylistchina+easylist.txt: 38836) -.camdough.com -# ||camcrush.com^$third-party (easylistchina+easylist.txt: 38835) -.camcrush.com -# ||camads.net^$third-party (easylistchina+easylist.txt: 38834) -.camads.net -# ||cam4flat.com^$third-party (easylistchina+easylist.txt: 38833) -.cam4flat.com -# ||cam-lolita.net^$third-party (easylistchina+easylist.txt: 38832) -.cam-lolita.net -# ||bumskontakte.ch^$third-party (easylistchina+easylist.txt: 38831) -.bumskontakte.ch -# ||bumblecash.com^$third-party (easylistchina+easylist.txt: 38830) -.bumblecash.com -# ||brqvld0p.com^$third-party (easylistchina+easylist.txt: 38829) -.brqvld0p.com -# ||brothersincash.com^$third-party (easylistchina+easylist.txt: 38828) -.brothersincash.com -# ||brightcpm.net^$third-party (easylistchina+easylist.txt: 38827) -.brightcpm.net -# ||branzas.com^$third-party (easylistchina+easylist.txt: 38826) -.branzas.com -# ||bposterss.net^$third-party (easylistchina+easylist.txt: 38825) -.bposterss.net -# ||bookofsex.com^$third-party (easylistchina+easylist.txt: 38824) -.bookofsex.com -# ||boinkcash.com^$third-party (easylistchina+easylist.txt: 38823) -.boinkcash.com -# ||board-books.com^$third-party (easylistchina+easylist.txt: 38822) -.board-books.com -# ||blossoms.com^$third-party (easylistchina+easylist.txt: 38821) -.blossoms.com -# ||black-ghettos.info^$third-party (easylistchina+easylist.txt: 38820) -.black-ghettos.info -# ||biksibo.ru^$third-party (easylistchina+easylist.txt: 38819) -.biksibo.ru -# ||bgmtracker.com^$third-party (easylistchina+easylist.txt: 38818) -.bgmtracker.com -# ||betweendigital.com^$third-party (easylistchina+easylist.txt: 38817) -.betweendigital.com -# ||bestssn.com^$third-party (easylistchina+easylist.txt: 38816) -.bestssn.com -# ||bestholly.com^$third-party (easylistchina+easylist.txt: 38815) -.bestholly.com -# ||belasninfetas.org^$third-party (easylistchina+easylist.txt: 38814) -.belasninfetas.org -# ||belamicash.com^$third-party (easylistchina+easylist.txt: 38813) -.belamicash.com -# ||bcash4you.com^$third-party (easylistchina+easylist.txt: 38812) -.bcash4you.com -# ||baskodenta.com^$third-party (easylistchina+easylist.txt: 38811) -.baskodenta.com -# ||basesclick.ru^$third-party (easylistchina+easylist.txt: 38810) -.basesclick.ru -# ||banerator.net^$third-party (easylistchina+easylist.txt: 38809) -.banerator.net -# ||aztecash.com^$third-party (easylistchina+easylist.txt: 38808) -.aztecash.com -# ||azerbazer.com^$third-party (easylistchina+easylist.txt: 38807) -.azerbazer.com -# ||ax47mp-xp-21.com^$third-party (easylistchina+easylist.txt: 38806) -.ax47mp-xp-21.com -# ||awmpartners.com^$third-party (easylistchina+easylist.txt: 38805) -.awmpartners.com -# ||awmcenter.eu^$third-party (easylistchina+easylist.txt: 38804) -.awmcenter.eu -# ||augrenso.com^$third-party (easylistchina+easylist.txt: 38803) -.augrenso.com -# ||asiafriendfinder.com^$third-party (easylistchina+easylist.txt: 38802) -.asiafriendfinder.com -# ||are-ter.com^$third-party (easylistchina+easylist.txt: 38801) -.are-ter.com -# ||apromoweb.com^$third-party (easylistchina+easylist.txt: 38800) -.apromoweb.com -# ||antoball.com^$third-party (easylistchina+easylist.txt: 38799) -.antoball.com -# ||antaraimedia.com^$third-party (easylistchina+easylist.txt: 38798) -.antaraimedia.com -# ||angelpastel.com^$third-party (easylistchina+easylist.txt: 38797) -.angelpastel.com -# ||anastasia-international.com^$third-party (easylistchina+easylist.txt: 38796) -.anastasia-international.com -# ||amvotes.ru^$third-party (easylistchina+easylist.txt: 38795) -.amvotes.ru -# ||amtracking01.com^$third-party (easylistchina+easylist.txt: 38794) -.amtracking01.com -# ||allotraffic.com^$third-party (easylistchina+easylist.txt: 38793) -.allotraffic.com -# ||allosponsor.com^$third-party (easylistchina+easylist.txt: 38792) -.allosponsor.com -# ||alladultcash.com^$third-party (easylistchina+easylist.txt: 38791) -.alladultcash.com -# ||all-about-tech.com^$third-party (easylistchina+easylist.txt: 38790) -.all-about-tech.com -# ||alfatraffic.com^$third-party (easylistchina+easylist.txt: 38789) -.alfatraffic.com -# ||aipmedia.com^$third-party (easylistchina+easylist.txt: 38788) -.aipmedia.com -# ||aipbannerx.com^$third-party (easylistchina+easylist.txt: 38787) -.aipbannerx.com -# ||affiligay.net^$third-party (easylistchina+easylist.txt: 38786) -.affiligay.net -# ||affiliaxe.com^$third-party (easylistchina+easylist.txt: 38785) -.affiliaxe.com -# ||affiliation-int.com^$third-party (easylistchina+easylist.txt: 38784) -.affiliation-int.com -# ||affiliatewindow.com^$third-party (easylistchina+easylist.txt: 38783) -.affiliatewindow.com -# ||aeesy.com^$third-party (easylistchina+easylist.txt: 38782) -.aeesy.com -# ||adzs.com^$third-party (easylistchina+easylist.txt: 38781) -.adzs.com -# ||adxregie.com^$third-party (easylistchina+easylist.txt: 38780) -.adxregie.com -# ||adxpansion.com^$third-party (easylistchina+easylist.txt: 38779) -.adxpansion.com -# ||adxmarket.com^$third-party (easylistchina+easylist.txt: 38778) -.adxmarket.com -# ||adxite.com^$third-party (easylistchina+easylist.txt: 38777) -.adxite.com -# ||advsense.info^$third-party (easylistchina+easylist.txt: 38776) -.advsense.info -# ||advredir.com^$third-party (easylistchina+easylist.txt: 38775) -.advredir.com -# ||advprotraffic.com^$third-party (easylistchina+easylist.txt: 38774) -.advprotraffic.com -# ||advmania.com^$third-party (easylistchina+easylist.txt: 38773) -.advmania.com -# ||advmaker.ru^$third-party (easylistchina+easylist.txt: 38772) -.advmaker.ru -# ||advertrtb.com^$third-party (easylistchina+easylist.txt: 38771) -.advertrtb.com -# ||advertom.com^$third-party (easylistchina+easylist.txt: 38770) -.advertom.com -# ||advertisingsex.com^$third-party (easylistchina+easylist.txt: 38769) -.advertisingsex.com -# ||adventory.com^$third-party (easylistchina+easylist.txt: 38768) -.adventory.com -# ||adv777.com^$third-party (easylistchina+easylist.txt: 38767) -.adv777.com -# ||adv-plus.com^$third-party (easylistchina+easylist.txt: 38766) -.adv-plus.com -# ||adulttubetraffic.com^$third-party (easylistchina+easylist.txt: 38765) -.adulttubetraffic.com -# ||adulttiz.com^$third-party (easylistchina+easylist.txt: 38764) -.adulttiz.com -# ||adultsense.org^$third-party (easylistchina+easylist.txt: 38763) -.adultsense.org -# ||adultsense.com^$third-party (easylistchina+easylist.txt: 38762) -.adultsense.com -# ||adultpopunders.com^$third-party (easylistchina+easylist.txt: 38761) -.adultpopunders.com -# ||adultoafiliados.com.br^$third-party (easylistchina+easylist.txt: 38760) -.adultoafiliados.com.br -# ||adultmoviegroup.com^$third-party (easylistchina+easylist.txt: 38759) -.adultmoviegroup.com -# ||adultmediabuying.com^$third-party (easylistchina+easylist.txt: 38758) -.adultmediabuying.com -# ||adultlinkexchange.com^$third-party (easylistchina+easylist.txt: 38757) -.adultlinkexchange.com -# ||adultdatingtraffic.com^$third-party (easylistchina+easylist.txt: 38756) -.adultdatingtraffic.com -# ||adultcommercial.net^$third-party (easylistchina+easylist.txt: 38755) -.adultcommercial.net -# ||adultadvertising.net^$third-party (easylistchina+easylist.txt: 38754) -.adultadvertising.net -# ||adultadmedia.com^$third-party (easylistchina+easylist.txt: 38753) -.adultadmedia.com -# ||adultaccessnow.com^$third-party (easylistchina+easylist.txt: 38752) -.adultaccessnow.com -# ||adult3dcomics.com^$third-party (easylistchina+easylist.txt: 38751) -.adult3dcomics.com -# ||adsyst.biz^$third-party (easylistchina+easylist.txt: 38750) -.adsyst.biz -# ||adskape.ru^$third-party (easylistchina+easylist.txt: 38749) -.adskape.ru -# ||adshostview.com^$third-party (easylistchina+easylist.txt: 38748) -.adshostview.com -# ||adsgangsta.com^$third-party (easylistchina+easylist.txt: 38747) -.adsgangsta.com -# ||adsbr.info^$third-party (easylistchina+easylist.txt: 38746) -.adsbr.info -# ||adrent.net^$third-party (easylistchina+easylist.txt: 38745) -.adrent.net -# ||adpron.com^$third-party (easylistchina+easylist.txt: 38744) -.adpron.com -# ||adperiun.com^$third-party (easylistchina+easylist.txt: 38743) -.adperiun.com -# ||adparad.net^$third-party (easylistchina+easylist.txt: 38742) -.adparad.net -# ||adnetxchange.com^$third-party (easylistchina+easylist.txt: 38741) -.adnetxchange.com -# ||admez.com^$third-party (easylistchina+easylist.txt: 38740) -.admez.com -# ||adlook.net^$third-party (easylistchina+easylist.txt: 38739) -.adlook.net -# ||adjunky.com^$third-party (easylistchina+easylist.txt: 38738) -.adjunky.com -# ||adfux.com^$third-party (easylistchina+easylist.txt: 38737) -.adfux.com -# ||addbags.com^$third-party (easylistchina+easylist.txt: 38736) -.addbags.com -# ||adcell.de^$third-party (easylistchina+easylist.txt: 38735) -.adcell.de -# ||adbmi.com^$third-party (easylistchina+easylist.txt: 38734) -.adbmi.com -# ||adbars.net^$third-party (easylistchina+easylist.txt: 38733) -.adbars.net -# ||ad4partners.com^$third-party (easylistchina+easylist.txt: 38732) -.ad4partners.com -# ||ad001.ru^$third-party (easylistchina+easylist.txt: 38731) -.ad001.ru -# ||ad-u.com^$third-party (easylistchina+easylist.txt: 38730) -.ad-u.com -# ||ad-411.com^$third-party (easylistchina+easylist.txt: 38729) -.ad-411.com -# ||actionlocker.com^$third-party (easylistchina+easylist.txt: 38728) -.actionlocker.com -# ||acnescarsx.info^$third-party (easylistchina+easylist.txt: 38727) -.acnescarsx.info -# ||acmexxx.com^$third-party (easylistchina+easylist.txt: 38726) -.acmexxx.com -# ||abusedbabysitters.com^$third-party (easylistchina+easylist.txt: 38725) -.abusedbabysitters.com -# ||abgeobalancer.com^$third-party (easylistchina+easylist.txt: 38724) -.abgeobalancer.com -# ||abakys.ru^$third-party (easylistchina+easylist.txt: 38723) -.abakys.ru -# ||ab4tn.com^$third-party (easylistchina+easylist.txt: 38722) -.ab4tn.com -# ||aaovn.info^$third-party (easylistchina+easylist.txt: 38721) -.aaovn.info -# ||8ipztcc1.com^$third-party (easylistchina+easylist.txt: 38720) -.8ipztcc1.com -# ||89.248.172.46^$third-party (easylistchina+easylist.txt: 38719) -.89.248.172.46 -# ||85.17.210.202^$third-party (easylistchina+easylist.txt: 38718) -.85.17.210.202 -# ||80.77.113.200^$third-party (easylistchina+easylist.txt: 38717) -.80.77.113.200 -# ||7vws1j1j.com^$third-party (easylistchina+easylist.txt: 38716) -.7vws1j1j.com -# ||7cxcrejm.com^$third-party (easylistchina+easylist.txt: 38715) -.7cxcrejm.com -# ||777partners.com^$third-party (easylistchina+easylist.txt: 38714) -.777partners.com -# ||777partner.net^$third-party (easylistchina+easylist.txt: 38713) -.777partner.net -# ||777partner.com^$third-party (easylistchina+easylist.txt: 38712) -.777partner.com -# ||777-partners.net^$third-party (easylistchina+easylist.txt: 38711) -.777-partners.net -# ||777-partners.com^$third-party (easylistchina+easylist.txt: 38710) -.777-partners.com -# ||777-partner.net^$third-party (easylistchina+easylist.txt: 38709) -.777-partner.net -# ||777-partner.com^$third-party (easylistchina+easylist.txt: 38708) -.777-partner.com -# ||76.76.5.113^$third-party (easylistchina+easylist.txt: 38707) -.76.76.5.113 -# ||750industries.com^$third-party (easylistchina+easylist.txt: 38706) -.750industries.com -# ||699fy4ne.com^$third-party (easylistchina+easylist.txt: 38705) -.699fy4ne.com -# ||59zs1xei.com^$third-party (easylistchina+easylist.txt: 38704) -.59zs1xei.com -# ||4link.it^$third-party (easylistchina+easylist.txt: 38703) -.4link.it -# ||45i73jv6.com^$third-party (easylistchina+easylist.txt: 38702) -.45i73jv6.com -# ||40xbfzk8.com^$third-party (easylistchina+easylist.txt: 38701) -.40xbfzk8.com -# ||33traffic.com^$third-party (easylistchina+easylist.txt: 38700) -.33traffic.com -# ||24x7adservice.com^$third-party (easylistchina+easylist.txt: 38699) -.24x7adservice.com -# ||24smile.org^$third-party (easylistchina+easylist.txt: 38698) -.24smile.org -# ||247teencash.net^$third-party (easylistchina+easylist.txt: 38697) -.247teencash.net -# ||21sexturycash.com^$third-party (easylistchina+easylist.txt: 38696) -.21sexturycash.com -# ||212.150.34.117^$third-party (easylistchina+easylist.txt: 38695) -.212.150.34.117 -# ||206.217.206.137^$third-party (easylistchina+easylist.txt: 38694) -.206.217.206.137 -# ||1tizer.com^$third-party (easylistchina+easylist.txt: 38693) -.1tizer.com -# ||1loop.com^$third-party (easylistchina+easylist.txt: 38692) -.1loop.com -# ||195.228.74.26^$third-party (easylistchina+easylist.txt: 38691) -.195.228.74.26 -# ||18naked.com^$third-party (easylistchina+easylist.txt: 38690) -.18naked.com -# ||15yomodels.com^$third-party (easylistchina+easylist.txt: 38688) -.15yomodels.com -# ||123advertising.nl^$third-party (easylistchina+easylist.txt: 38687) -.123advertising.nl -# ||10y5gehv.com^$third-party (easylistchina+easylist.txt: 38686) -.10y5gehv.com -# ||100pour.com^$third-party (easylistchina+easylist.txt: 38685) -.100pour.com -# ||0llii0g6.com^$third-party (easylistchina+easylist.txt: 38684) -.0llii0g6.com -# ||zrfrornn.net^$third-party (easylistchina+easylist.txt: 38349) -.zrfrornn.net -# ||zomri.net^$third-party (easylistchina+easylist.txt: 38348) -.zomri.net -# ||ziccardia.com^$third-party (easylistchina+easylist.txt: 38347) -.ziccardia.com -# ||z4pick.com^$third-party (easylistchina+easylist.txt: 38346) -.z4pick.com -# ||yuasaghn.com^$third-party (easylistchina+easylist.txt: 38345) -.yuasaghn.com -# ||yrrrbn.me^$third-party (easylistchina+easylist.txt: 38344) -.yrrrbn.me -# ||ypprr.com^$third-party (easylistchina+easylist.txt: 38343) -.ypprr.com -# ||ypppdc.com^$third-party (easylistchina+easylist.txt: 38342) -.ypppdc.com -# ||yopdi.com^$third-party (easylistchina+easylist.txt: 38341) -.yopdi.com -# ||yomri.net^$third-party (easylistchina+easylist.txt: 38340) -.yomri.net -# ||yodr.net^$third-party (easylistchina+easylist.txt: 38339) -.yodr.net -# ||yobr.net^$third-party (easylistchina+easylist.txt: 38338) -.yobr.net -# ||yardr.net^$third-party (easylistchina+easylist.txt: 38337) -.yardr.net -# ||xylopologyn.com^$third-party (easylistchina+easylist.txt: 38336) -.xylopologyn.com -# ||xplrer.co^$third-party (easylistchina+easylist.txt: 38335) -.xplrer.co -# ||xcrsqg.com^$third-party (easylistchina+easylist.txt: 38334) -.xcrsqg.com -# ||wudr.net^$third-party (easylistchina+easylist.txt: 38333) -.wudr.net -# ||wuatriser.net^$third-party (easylistchina+easylist.txt: 38332) -.wuatriser.net -# ||wuarnurf.net^$third-party (easylistchina+easylist.txt: 38331) -.wuarnurf.net -# ||wopdi.com^$third-party (easylistchina+easylist.txt: 38330) -.wopdi.com -# ||wensdteuy.com^$third-party (easylistchina+easylist.txt: 38329) -.wensdteuy.com -# ||waddr.com^$third-party (easylistchina+easylist.txt: 38328) -.waddr.com -# ||vuadiolgy.net^$third-party (easylistchina+easylist.txt: 38327) -.vuadiolgy.net -# ||vopdi.com^$third-party (easylistchina+easylist.txt: 38326) -.vopdi.com -# ||virsualr.com^$third-party (easylistchina+easylist.txt: 38325) -.virsualr.com -# ||viewscout.com^$third-party (easylistchina+easylist.txt: 38324) -.viewscout.com -# ||v8bridge.link^$third-party (easylistchina+easylist.txt: 38323) -.v8bridge.link -# ||username1.link^$third-party (easylistchina+easylist.txt: 38322) -.username1.link -# ||uppo.co^$third-party (easylistchina+easylist.txt: 38321) -.uppo.co -# ||unuarvse.net^$third-party (easylistchina+easylist.txt: 38320) -.unuarvse.net -# ||tualipoly.net^$third-party (easylistchina+easylist.txt: 38319) -.tualipoly.net -# ||trndi.net^$third-party (easylistchina+easylist.txt: 38318) -.trndi.net -# ||trllxv.co^$third-party (easylistchina+easylist.txt: 38317) -.trllxv.co -# ||topdi.net^$third-party (easylistchina+easylist.txt: 38316) -.topdi.net -# ||tolosgrey.net^$third-party (easylistchina+easylist.txt: 38315) -.tolosgrey.net -# ||thrilamd.net^$third-party (easylistchina+easylist.txt: 38314) -.thrilamd.net -# ||thiscdn.com^$third-party (easylistchina+easylist.txt: 38313) -.thiscdn.com -# ||th4wwe.net^$third-party (easylistchina+easylist.txt: 38312) -.th4wwe.net -# ||t7row.com^$third-party (easylistchina+easylist.txt: 38311) -.t7row.com -# ||t3sort.com^$third-party (easylistchina+easylist.txt: 38310) -.t3sort.com -# ||sxrrxa.net^$third-party (easylistchina+easylist.txt: 38309) -.sxrrxa.net -# ||spoa-soard.com^$third-party (easylistchina+easylist.txt: 38308) -.spoa-soard.com -# ||splazards.com^$third-party (easylistchina+easylist.txt: 38307) -.splazards.com -# ||spereminf.com^$third-party (easylistchina+easylist.txt: 38306) -.spereminf.com -# ||simusangr.com^$third-party (easylistchina+easylist.txt: 38305) -.simusangr.com -# ||sfesd.net^$third-party (easylistchina+easylist.txt: 38304) -.sfesd.net -# ||selectr.net^$third-party (easylistchina+easylist.txt: 38303) -.selectr.net -# ||rugistratuan.com^$third-party (easylistchina+easylist.txt: 38302) -.rugistratuan.com -# ||rugistoto.net^$third-party (easylistchina+easylist.txt: 38301) -.rugistoto.net -# ||rterdf.me^$third-party (easylistchina+easylist.txt: 38300) -.rterdf.me -# ||rlex.org^$third-party (easylistchina+easylist.txt: 38299) -.rlex.org -# ||rigistrar.net^$third-party (easylistchina+easylist.txt: 38298) -.rigistrar.net -# ||rhgersf.com^$third-party (easylistchina+easylist.txt: 38297) -.rhgersf.com -# ||regersd.net^$third-party (easylistchina+easylist.txt: 38296) -.regersd.net -# ||rdige.com^$third-party (easylistchina+easylist.txt: 38295) -.rdige.com -# ||r3seek.com^$third-party (easylistchina+easylist.txt: 38294) -.r3seek.com -# ||qzsccm.com^$third-party (easylistchina+easylist.txt: 38293) -.qzsccm.com -# ||qewa33a.com^$third-party (easylistchina+easylist.txt: 38292) -.qewa33a.com -# ||q3sift.com^$third-party (easylistchina+easylist.txt: 38291) -.q3sift.com -# ||prndi.net^$third-party (easylistchina+easylist.txt: 38290) -.prndi.net -# ||prfffc.info^$third-party (easylistchina+easylist.txt: 38289) -.prfffc.info -# ||polawrg.com^$third-party (easylistchina+easylist.txt: 38288) -.polawrg.com -# ||pikkr.net^$third-party (easylistchina+easylist.txt: 38287) -.pikkr.net -# ||p7vortex.com^$third-party (easylistchina+easylist.txt: 38286) -.p7vortex.com -# ||opner.co^$third-party (easylistchina+easylist.txt: 38285) -.opner.co -# ||oplo.org^$third-party (easylistchina+easylist.txt: 38284) -.oplo.org -# ||nuaknamg.net^$third-party (easylistchina+easylist.txt: 38283) -.nuaknamg.net -# ||nrfort.com^$third-party (easylistchina+easylist.txt: 38282) -.nrfort.com -# ||maningrs.com^$third-party (easylistchina+easylist.txt: 38281) -.maningrs.com -# ||luadcik.com^$third-party (easylistchina+easylist.txt: 38280) -.luadcik.com -# ||loopr.co^$third-party (easylistchina+easylist.txt: 38279) -.loopr.co -# ||lirte.org^$third-party (easylistchina+easylist.txt: 38278) -.lirte.org -# ||lia-ndr.com^$third-party (easylistchina+easylist.txt: 38277) -.lia-ndr.com -# ||lesuard.com^$third-party (easylistchina+easylist.txt: 38276) -.lesuard.com -# ||leanoisgo.com^$third-party (easylistchina+easylist.txt: 38275) -.leanoisgo.com -# ||kuangard.net^$third-party (easylistchina+easylist.txt: 38274) -.kuangard.net -# ||knoandr.com^$third-party (easylistchina+easylist.txt: 38273) -.knoandr.com -# ||kioshow.com^$third-party (easylistchina+easylist.txt: 38272) -.kioshow.com -# ||kilomonj.net^$third-party (easylistchina+easylist.txt: 38271) -.kilomonj.net -# ||jusukrs.com^$third-party (easylistchina+easylist.txt: 38270) -.jusukrs.com -# ||juruasikr.net^$third-party (easylistchina+easylist.txt: 38269) -.juruasikr.net -# ||jellr.net^$third-party (easylistchina+easylist.txt: 38268) -.jellr.net -# ||jdrm4.com^$third-party (easylistchina+easylist.txt: 38267) -.jdrm4.com -# ||jaspensar.com^$third-party (easylistchina+easylist.txt: 38266) -.jaspensar.com -# ||ivism.org^$third-party (easylistchina+easylist.txt: 38265) -.ivism.org -# ||iunbrudy.net^$third-party (easylistchina+easylist.txt: 38264) -.iunbrudy.net -# ||ignup.com^$third-party (easylistchina+easylist.txt: 38263) -.ignup.com -# ||hoppr.co^$third-party (easylistchina+easylist.txt: 38262) -.hoppr.co -# ||holmgard.link^$third-party (easylistchina+easylist.txt: 38261) -.holmgard.link -# ||hobri.net^$third-party (easylistchina+easylist.txt: 38260) -.hobri.net -# ||heizuanubr.net^$third-party (easylistchina+easylist.txt: 38259) -.heizuanubr.net -# ||havnr.com^$third-party (easylistchina+easylist.txt: 38258) -.havnr.com -# ||hapnr.net^$third-party (easylistchina+easylist.txt: 38257) -.hapnr.net -# ||gusufrs.me^$third-party (easylistchina+easylist.txt: 38256) -.gusufrs.me -# ||gghfncd.net^$third-party (easylistchina+easylist.txt: 38255) -.gghfncd.net -# ||fuandarst.com^$third-party (easylistchina+easylist.txt: 38254) -.fuandarst.com -# ||frxrydv.com^$third-party (easylistchina+easylist.txt: 38253) -.frxrydv.com -# ||frxle.com^$third-party (easylistchina+easylist.txt: 38252) -.frxle.com -# ||fowar.net^$third-party (easylistchina+easylist.txt: 38251) -.fowar.net -# ||foulsomty.com^$third-party (easylistchina+easylist.txt: 38250) -.foulsomty.com -# ||flaurse.net^$third-party (easylistchina+easylist.txt: 38249) -.flaurse.net -# ||flaudnrs.me^$third-party (easylistchina+easylist.txt: 38248) -.flaudnrs.me -# ||faunsts.me^$third-party (easylistchina+easylist.txt: 38247) -.faunsts.me -# ||extonsuan.com^$third-party (easylistchina+easylist.txt: 38246) -.extonsuan.com -# ||exlpor.com^$third-party (easylistchina+easylist.txt: 38245) -.exlpor.com -# ||exernala.com^$third-party (easylistchina+easylist.txt: 38244) -.exernala.com -# ||excolobar.com^$third-party (easylistchina+easylist.txt: 38243) -.excolobar.com -# ||exciliburn.com^$third-party (easylistchina+easylist.txt: 38242) -.exciliburn.com -# ||exactly0r.com^$third-party (easylistchina+easylist.txt: 38241) -.exactly0r.com -# ||esults.net^$third-party (easylistchina+easylist.txt: 38240) -.esults.net -# ||ershgrst.com^$third-party (easylistchina+easylist.txt: 38239) -.ershgrst.com -# ||ergers.net^$third-party (easylistchina+easylist.txt: 38238) -.ergers.net -# ||entru.co^$third-party (easylistchina+easylist.txt: 38237) -.entru.co -# ||elepheny.com^$third-party (easylistchina+easylist.txt: 38236) -.elepheny.com -# ||edabl.net^$third-party (easylistchina+easylist.txt: 38235) -.edabl.net -# ||dutolats.net^$third-party (easylistchina+easylist.txt: 38234) -.dutolats.net -# ||duactinor.net^$third-party (easylistchina+easylist.txt: 38233) -.duactinor.net -# ||drfflt.info^$third-party (easylistchina+easylist.txt: 38232) -.drfflt.info -# ||draugonda.net^$third-party (easylistchina+easylist.txt: 38231) -.draugonda.net -# ||doumantr.com^$third-party (easylistchina+easylist.txt: 38230) -.doumantr.com -# ||domri.net^$third-party (easylistchina+easylist.txt: 38229) -.domri.net -# ||dilpy.org^$third-party (easylistchina+easylist.txt: 38228) -.dilpy.org -# ||diabolicaf.com^$third-party (easylistchina+easylist.txt: 38227) -.diabolicaf.com -# ||deuskex.link^$third-party (easylistchina+easylist.txt: 38226) -.deuskex.link -# ||d3lens.com^$third-party (easylistchina+easylist.txt: 38225) -.d3lens.com -# ||crhikay.me^$third-party (easylistchina+easylist.txt: 38224) -.crhikay.me -# ||cotnr.com^$third-party (easylistchina+easylist.txt: 38223) -.cotnr.com -# ||contentr.net^$third-party (easylistchina+easylist.txt: 38222) -.contentr.net -# ||contentolyze.net^$third-party (easylistchina+easylist.txt: 38221) -.contentolyze.net -# ||compoter.net^$third-party (easylistchina+easylist.txt: 38220) -.compoter.net -# ||coaterhand.net^$third-party (easylistchina+easylist.txt: 38219) -.coaterhand.net -# ||chualangry.com^$third-party (easylistchina+easylist.txt: 38218) -.chualangry.com -# ||chiuawa.net^$third-party (easylistchina+easylist.txt: 38217) -.chiuawa.net -# ||chansiar.net^$third-party (easylistchina+easylist.txt: 38216) -.chansiar.net -# ||casiours.com^$third-party (easylistchina+easylist.txt: 38215) -.casiours.com -# ||c8factor.com^$third-party (easylistchina+easylist.txt: 38214) -.c8factor.com -# ||buoalait.com^$third-party (easylistchina+easylist.txt: 38213) -.buoalait.com -# ||buhafr.net^$third-party (easylistchina+easylist.txt: 38212) -.buhafr.net -# ||buatongz.net^$third-party (easylistchina+easylist.txt: 38211) -.buatongz.net -# ||boafernd.com^$third-party (easylistchina+easylist.txt: 38210) -.boafernd.com -# ||bluazard.net^$third-party (easylistchina+easylist.txt: 38209) -.bluazard.net -# ||blipi.net^$third-party (easylistchina+easylist.txt: 38208) -.blipi.net -# ||bliankerd.net^$third-party (easylistchina+easylist.txt: 38207) -.bliankerd.net -# ||blazwuatr.com^$third-party (easylistchina+easylist.txt: 38206) -.blazwuatr.com -# ||blaundorz.com^$third-party (easylistchina+easylist.txt: 38205) -.blaundorz.com -# ||biastoful.net^$third-party (easylistchina+easylist.txt: 38204) -.biastoful.net -# ||biankord.net^$third-party (easylistchina+easylist.txt: 38203) -.biankord.net -# ||baungarnr.com^$third-party (easylistchina+easylist.txt: 38202) -.baungarnr.com -# ||batarsur.com^$third-party (easylistchina+easylist.txt: 38201) -.batarsur.com -# ||baordrid.com^$third-party (easylistchina+easylist.txt: 38200) -.baordrid.com -# ||artbr.net^$third-party (easylistchina+easylist.txt: 38199) -.artbr.net -# ||appr8.net^$third-party (easylistchina+easylist.txt: 38198) -.appr8.net -# ||anomiely.com^$third-party (easylistchina+easylist.txt: 38197) -.anomiely.com -# ||allianrd.net^$third-party (easylistchina+easylist.txt: 38196) -.allianrd.net -# ||advuatianf.com^$third-party (easylistchina+easylist.txt: 38195) -.advuatianf.com -# ||addo-mnton.com^$third-party (easylistchina+easylist.txt: 38194) -.addo-mnton.com -# ||accmndtion.org^$third-party (easylistchina+easylist.txt: 38193) -.accmndtion.org -# ||atresadvertising.com^$third-party (easylistchina+easylist.txt: 38191) -.atresadvertising.com -# ||adhood.com^$third-party (easylistchina+easylist.txt: 38190) -.adhood.com -# ||yieldmo.com^$third-party (easylistchina+easylist.txt: 38188) -.yieldmo.com -# ||waptrick.com^$third-party (easylistchina+easylist.txt: 38187) -.waptrick.com -# ||wapdollar.in^$third-party (easylistchina+easylist.txt: 38186) -.wapdollar.in -# ||vungle.com^$third-party (easylistchina+easylist.txt: 38185) -.vungle.com -# ||tapjoyads.com^$third-party (easylistchina+easylist.txt: 38184) -.tapjoyads.com -# ||stepkeydo.com^$third-party (easylistchina+easylist.txt: 38183) -.stepkeydo.com -# ||startappexchange.com^$third-party (easylistchina+easylist.txt: 38182) -.startappexchange.com -# ||smaato.net^$third-party (easylistchina+easylist.txt: 38181) -.smaato.net -# ||sascdn.com^$third-party (easylistchina+easylist.txt: 38180) -.sascdn.com -# ||mysearch-online.com^$third-party (easylistchina+easylist.txt: 38179) -.mysearch-online.com -# ||mojiva.com^$third-party (easylistchina+easylist.txt: 38178) -.mojiva.com -# ||mocean.mobi^$third-party (easylistchina+easylist.txt: 38177) -.mocean.mobi -# ||mobpartner.mobi^$third-party (easylistchina+easylist.txt: 38176) -.mobpartner.mobi -# ||mobizme.net^$third-party (easylistchina+easylist.txt: 38175) -.mobizme.net -# ||mobgold.com^$third-party (easylistchina+easylist.txt: 38174) -.mobgold.com -# ||mkhoj.com^$third-party (easylistchina+easylist.txt: 38173) -.mkhoj.com -# ||millennialmedia.com^$third-party (easylistchina+easylist.txt: 38172) -.millennialmedia.com -# ||mad-adz.com^$third-party (easylistchina+easylist.txt: 38171) -.mad-adz.com -# ||kuad.kusogi.com^$third-party (easylistchina+easylist.txt: 38170) -.kuad.kusogi.com -# ||inmobi.com^$third-party (easylistchina+easylist.txt: 38169) -.inmobi.com -# ||greystripe.com^$third-party (easylistchina+easylist.txt: 38168) -.greystripe.com -# ||doubleclick.net^*/pfadx/app.ytpwatch.$third-party (easylistchina+easylist.txt: 38167) -.doubleclick.net/.*/pfadx/app\.ytpwatch\. -# ||dmg-mobile.com^$third-party (easylistchina+easylist.txt: 38166) -.dmg-mobile.com -# ||buxx.mobi^$third-party (easylistchina+easylist.txt: 38165) -.buxx.mobi -# ||appads.com^$third-party (easylistchina+easylist.txt: 38164) -.appads.com -# ||amobee.com^$third-party (easylistchina+easylist.txt: 38163) -.amobee.com -# ||airpush.com^$third-party (easylistchina+easylist.txt: 38162) -.airpush.com -# ||adzmob.com^$third-party (easylistchina+easylist.txt: 38161) -.adzmob.com -# ||adwired.mobi^$third-party (easylistchina+easylist.txt: 38160) -.adwired.mobi -# ||adwhirl.com^$third-party (easylistchina+easylist.txt: 38159) -.adwhirl.com -# ||admob.com^$third-party (easylistchina+easylist.txt: 38158) -.admob.com -# ||adiquity.com^$third-party (easylistchina+easylist.txt: 38157) -.adiquity.com -# ||adcolony.com^$third-party (easylistchina+easylist.txt: 38156) -.adcolony.com -# ||adbuddiz.com^$third-party (easylistchina+easylist.txt: 38155) -.adbuddiz.com -# ||zypenetwork.com^$third-party (easylistchina+easylist.txt: 38153) -.zypenetwork.com -# ||zyiis.net^$third-party (easylistchina+easylist.txt: 38152) -.zyiis.net -# ||zxxds.net^$third-party (easylistchina+easylist.txt: 38151) -.zxxds.net -# ||zwaar.org^$third-party (easylistchina+easylist.txt: 38150) -.zwaar.org -# ||zugo.com^$third-party (easylistchina+easylist.txt: 38149) -.zugo.com -# ||zoomdirect.com.au^$third-party (easylistchina+easylist.txt: 38148) -.zoomdirect.com.au -# ||zonplug.com^$third-party (easylistchina+easylist.txt: 38147) -.zonplug.com -# ||zonealta.com^$third-party (easylistchina+easylist.txt: 38146) -.zonealta.com -# ||zompmedia.com^$third-party (easylistchina+easylist.txt: 38145) -.zompmedia.com -# ||zoglafi.info^$third-party (easylistchina+easylist.txt: 38144) -.zoglafi.info -# ||znaptag.com^$third-party (easylistchina+easylist.txt: 38143) -.znaptag.com -# ||zipropyl.com^$third-party (easylistchina+easylist.txt: 38142) -.zipropyl.com -# ||ziffdavis.com^$third-party (easylistchina+easylist.txt: 38141) -.ziffdavis.com -# ||zidae.com^$third-party (easylistchina+easylist.txt: 38140) -.zidae.com -# ||zferral.com^$third-party (easylistchina+easylist.txt: 38139) -.zferral.com -# ||zeropark.com^$third-party (easylistchina+easylist.txt: 38138) -.zeropark.com -# ||zerezas.com^$third-party (easylistchina+easylist.txt: 38137) -.zerezas.com -# ||zercstas.com^$third-party (easylistchina+easylist.txt: 38136) -.zercstas.com -# ||zenoviagroup.com^$third-party (easylistchina+easylist.txt: 38135) -.zenoviagroup.com -# ||zenoviaexchange.com^$third-party (easylistchina+easylist.txt: 38134) -.zenoviaexchange.com -# ||zeesiti.com^$third-party (easylistchina+easylist.txt: 38133) -.zeesiti.com -# ||zedo.com^$third-party (easylistchina+easylist.txt: 38132) -.zedo.com -# ||zeads.com^$third-party (easylistchina+easylist.txt: 38131) -.zeads.com -# ||zde-engage.com^$third-party (easylistchina+easylist.txt: 38130) -.zde-engage.com -# ||zapunited.com^$third-party (easylistchina+easylist.txt: 38129) -.zapunited.com -# ||zappy.co.za^$third-party (easylistchina+easylist.txt: 38128) -.zappy.co.za -# ||zaparena.com^$third-party (easylistchina+easylist.txt: 38127) -.zaparena.com -# ||zanox.com/ppv/$third-party (easylistchina+easylist.txt: 38126) -.zanox.com/ppv/ -# ||zanox-affiliate.de/ppv/$third-party (easylistchina+easylist.txt: 38125) -.zanox-affiliate.de/ppv/ -# ||zangocash.com^$third-party (easylistchina+easylist.txt: 38124) -.zangocash.com -# ||z5x.net^$third-party (easylistchina+easylist.txt: 38123) -.z5x.net -# ||z-defense.com^$third-party (easylistchina+easylist.txt: 38122) -.z-defense.com -# ||yzus09by.com^$third-party (easylistchina+easylist.txt: 38121) -.yzus09by.com -# ||yzrnur.com^$third-party (easylistchina+easylist.txt: 38120) -.yzrnur.com -# ||yz56lywd.com^$third-party (easylistchina+easylist.txt: 38119) -.yz56lywd.com -# ||yvoria.com^$third-party (easylistchina+easylist.txt: 38118) -.yvoria.com -# ||yupfiles.net^$third-party (easylistchina+easylist.txt: 38117) -.yupfiles.net -# ||yumenetworks.com^$third-party (easylistchina+easylist.txt: 38116) -.yumenetworks.com -# ||yucce.com^$third-party (easylistchina+easylist.txt: 38115) -.yucce.com -# ||yuarth.com^$third-party (easylistchina+easylist.txt: 38114) -.yuarth.com -# ||ytsa.net^$third-party (easylistchina+easylist.txt: 38113) -.ytsa.net -# ||yourquickads.com^$third-party (easylistchina+easylist.txt: 38112) -.yourquickads.com -# ||yourfastpaydayloans.com^$third-party (easylistchina+easylist.txt: 38111) -.yourfastpaydayloans.com -# ||youradexchange.com^$third-party (easylistchina+easylist.txt: 38110) -.youradexchange.com -# ||your-tornado-file.org^$third-party (easylistchina+easylist.txt: 38109) -.your-tornado-file.org -# ||your-tornado-file.com^$third-party (easylistchina+easylist.txt: 38108) -.your-tornado-file.com -# ||youlouk.com^$third-party (easylistchina+easylist.txt: 38107) -.youlouk.com -# ||youlamedia.com^$third-party (easylistchina+easylist.txt: 38106) -.youlamedia.com -# ||youcandoitwithroi.com^$third-party (easylistchina+easylist.txt: 38105) -.youcandoitwithroi.com -# ||yottacash.com^$third-party (easylistchina+easylist.txt: 38104) -.yottacash.com -# ||yoc-adserver.com^$third-party (easylistchina+easylist.txt: 38103) -.yoc-adserver.com -# ||ymads.com^$third-party (easylistchina+easylist.txt: 38102) -.ymads.com -# ||yllix.com^$third-party (easylistchina+easylist.txt: 38101) -.yllix.com -# ||yldmgrimg.net^$third-party (easylistchina+easylist.txt: 38100) -.yldmgrimg.net -# ||yldbt.com^$third-party (easylistchina+easylist.txt: 38099) -.yldbt.com -# ||yieldx.com^$third-party (easylistchina+easylist.txt: 38098) -.yieldx.com -# ||yieldselect.com^$third-party (easylistchina+easylist.txt: 38097) -.yieldselect.com -# ||yieldoptimizer.com^$third-party (easylistchina+easylist.txt: 38096) -.yieldoptimizer.com -# ||yieldmanager.net^$third-party (easylistchina+easylist.txt: 38095) -.yieldmanager.net -# ||yieldmanager.com^$third-party (easylistchina+easylist.txt: 38094) -.yieldmanager.com -# ||yieldlab.net^$third-party (easylistchina+easylist.txt: 38093) -.yieldlab.net -# ||yieldkit.com^$third-party (easylistchina+easylist.txt: 38092) -.yieldkit.com -# ||yieldbuild.com^$third-party (easylistchina+easylist.txt: 38091) -.yieldbuild.com -# ||yieldadvert.com^$third-party (easylistchina+easylist.txt: 38090) -.yieldadvert.com -# ||yieldads.com^$third-party (easylistchina+easylist.txt: 38089) -.yieldads.com -# ||yesnexus.com^$third-party (easylistchina+easylist.txt: 38088) -.yesnexus.com -# ||yesadsrv.com^$third-party (easylistchina+easylist.txt: 38087) -.yesadsrv.com -# ||yes-messenger.com^$third-party (easylistchina+easylist.txt: 38086) -.yes-messenger.com -# ||yellads.com^$third-party (easylistchina+easylist.txt: 38085) -.yellads.com -# ||yeabble.com^$third-party (easylistchina+easylist.txt: 38084) -.yeabble.com -# ||yceml.net^$third-party (easylistchina+easylist.txt: 38083) -.yceml.net -# ||ycasmd.info^$third-party (easylistchina+easylist.txt: 38082) -.ycasmd.info -# ||yb0t.com^$third-party (easylistchina+easylist.txt: 38081) -.yb0t.com -# ||yawnedgtuis.org^$third-party (easylistchina+easylist.txt: 38080) -.yawnedgtuis.org -# ||yashi.com^$third-party (easylistchina+easylist.txt: 38079) -.yashi.com -# ||yambotan.ru^$third-party (easylistchina+easylist.txt: 38078) -.yambotan.ru -# ||yadomedia.com^$third-party (easylistchina+easylist.txt: 38077) -.yadomedia.com -# ||yabuka.com^$third-party (easylistchina+easylist.txt: 38076) -.yabuka.com -# ||ya88s1yk.com^$third-party (easylistchina+easylist.txt: 38075) -.ya88s1yk.com -# ||xxlink.net^$third-party (easylistchina+easylist.txt: 38074) -.xxlink.net -# ||xx00.info^$third-party (easylistchina+easylist.txt: 38073) -.xx00.info -# ||xvika.com^$third-party (easylistchina+easylist.txt: 38072) -.xvika.com -# ||xubob.com^$third-party (easylistchina+easylist.txt: 38071) -.xubob.com -# ||xtendmedia.com^$third-party (easylistchina+easylist.txt: 38070) -.xtendmedia.com -# ||xtendadvert.com^$third-party (easylistchina+easylist.txt: 38069) -.xtendadvert.com -# ||xtcie.com^$third-party (easylistchina+easylist.txt: 38068) -.xtcie.com -# ||xs.mochiads.com^$third-party (easylistchina+easylist.txt: 38067) -.xs.mochiads.com -# ||xmlconfig.ltassrv.com^$third-party (easylistchina+easylist.txt: 38066) -.xmlconfig.ltassrv.com -# ||xmasdom.com^$third-party (easylistchina+easylist.txt: 38065) -.xmasdom.com -# ||xjfjx8hw.com^$third-party (easylistchina+easylist.txt: 38064) -.xjfjx8hw.com -# ||xgraph.net^$third-party (easylistchina+easylist.txt: 38063) -.xgraph.net -# ||xfs5yhr1.com^$third-party (easylistchina+easylist.txt: 38062) -.xfs5yhr1.com -# ||xfileload.com^$third-party (easylistchina+easylist.txt: 38061) -.xfileload.com -# ||xeontopa.com^$third-party (easylistchina+easylist.txt: 38060) -.xeontopa.com -# ||xdirectx.com^$third-party (easylistchina+easylist.txt: 38059) -.xdirectx.com -# ||xdev.info^$third-party (easylistchina+easylist.txt: 38058) -.xdev.info -# ||xchangebanners.com^$third-party (easylistchina+easylist.txt: 38057) -.xchangebanners.com -# ||xcelsiusadserver.com^$third-party (easylistchina+easylist.txt: 38056) -.xcelsiusadserver.com -# ||xcelltech.com^$third-party (easylistchina+easylist.txt: 38055) -.xcelltech.com -# ||xaxoro.com^$third-party (easylistchina+easylist.txt: 38054) -.xaxoro.com -# ||xadcentral.com^$third-party (easylistchina+easylist.txt: 38053) -.xadcentral.com -# ||xad.com^$third-party (easylistchina+easylist.txt: 38052) -.xad.com -# ||x4300tiz.com^$third-party (easylistchina+easylist.txt: 38051) -.x4300tiz.com -# ||x.mochiads.com^$third-party (easylistchina+easylist.txt: 38050) -.x.mochiads.com -# ||wwwpromoter.com^$third-party (easylistchina+easylist.txt: 38049) -.wwwpromoter.com -# ||wwwadcntr.com^$third-party (easylistchina+easylist.txt: 38048) -.wwwadcntr.com -# ||wwv4ez0n.com^$third-party (easylistchina+easylist.txt: 38047) -.wwv4ez0n.com -# ||wwbn.com^$third-party (easylistchina+easylist.txt: 38046) -.wwbn.com -# ||wurea.com^$third-party (easylistchina+easylist.txt: 38045) -.wurea.com -# ||wulium.com^$third-party (easylistchina+easylist.txt: 38044) -.wulium.com -# ||worthyadvertising.com^$third-party (easylistchina+easylist.txt: 38043) -.worthyadvertising.com -# ||worthathousandwords.com^$third-party (easylistchina+easylist.txt: 38042) -.worthathousandwords.com -# ||worldwidemailer.com^$third-party (easylistchina+easylist.txt: 38041) -.worldwidemailer.com -# ||worlddatinghere.com^$third-party (easylistchina+easylist.txt: 38040) -.worlddatinghere.com -# ||wordego.com^$third-party (easylistchina+easylist.txt: 38039) -.wordego.com -# ||wordbankads.com^$third-party (easylistchina+easylist.txt: 38038) -.wordbankads.com -# ||wootmedia.net^$third-party (easylistchina+easylist.txt: 38037) -.wootmedia.net -# ||wonclick.com^$third-party (easylistchina+easylist.txt: 38036) -.wonclick.com -# ||wmmediacorp.com^$third-party (easylistchina+easylist.txt: 38035) -.wmmediacorp.com -# ||wlmarketing.com^$third-party (easylistchina+easylist.txt: 38034) -.wlmarketing.com -# ||winsspeeder.info^$third-party (easylistchina+easylist.txt: 38033) -.winsspeeder.info -# ||wingads.com^$third-party (easylistchina+easylist.txt: 38032) -.wingads.com -# ||winbuyer.com^$third-party (easylistchina+easylist.txt: 38031) -.winbuyer.com -# ||wigetstudios.com^$third-party (easylistchina+easylist.txt: 38030) -.wigetstudios.com -# ||wigetmedia.com^$third-party (easylistchina+easylist.txt: 38029) -.wigetmedia.com -# ||widgetwidget.mobi^$third-party (easylistchina+easylist.txt: 38028) -.widgetwidget.mobi -# ||widgetvalue.net^$third-party (easylistchina+easylist.txt: 38027) -.widgetvalue.net -# ||widgetsurvey.biz^$third-party (easylistchina+easylist.txt: 38026) -.widgetsurvey.biz -# ||widgets.fccinteractive.com^$third-party (easylistchina+easylist.txt: 38025) -.widgets.fccinteractive.com -# ||widgetlead.net^$third-party (easylistchina+easylist.txt: 38024) -.widgetlead.net -# ||widgetbucks.com^$third-party (easylistchina+easylist.txt: 38023) -.widgetbucks.com -# ||widgetbanner.mobi^$third-party (easylistchina+easylist.txt: 38022) -.widgetbanner.mobi -# ||widgetadvertising.biz^$third-party (easylistchina+easylist.txt: 38021) -.widgetadvertising.biz -# ||widget.yavli.com^$third-party (easylistchina+easylist.txt: 38020) -.widget.yavli.com -# ||why-outsource.net^$third-party (easylistchina+easylist.txt: 38019) -.why-outsource.net -# ||whtsrv9.com^$third-party (easylistchina+easylist.txt: 38018) -.whtsrv9.com -# ||whoads.net^$third-party (easylistchina+easylist.txt: 38017) -.whoads.net -# ||where.com^$third-party (easylistchina+easylist.txt: 38016) -.where.com -# ||wh5kb0u4.com^$third-party (easylistchina+easylist.txt: 38015) -.wh5kb0u4.com -# ||wgreatdream.com^$third-party (easylistchina+easylist.txt: 38014) -.wgreatdream.com -# ||wfnetwork.com^$third-party (easylistchina+easylist.txt: 38013) -.wfnetwork.com -# ||werbe-sponsor.de^$third-party (easylistchina+easylist.txt: 38012) -.werbe-sponsor.de -# ||wellturnedpenne.info^$third-party (easylistchina+easylist.txt: 38011) -.wellturnedpenne.info -# ||wegotmedia.com^$third-party (easylistchina+easylist.txt: 38010) -.wegotmedia.com -# ||wegetpaid.net^$third-party (easylistchina+easylist.txt: 38009) -.wegetpaid.net -# ||webusersurvey.com^$third-party (easylistchina+easylist.txt: 38008) -.webusersurvey.com -# ||webtraffic.ttinet.com^$third-party (easylistchina+easylist.txt: 38007) -.webtraffic.ttinet.com -# ||webseeds.com^$third-party (easylistchina+easylist.txt: 38006) -.webseeds.com -# ||weborama.fr^$third-party (easylistchina+easylist.txt: 38005) -.weborama.fr -# ||webmedia.co.il^$third-party (easylistchina+easylist.txt: 38004) -.webmedia.co.il -# ||webgains.com^$third-party (easylistchina+easylist.txt: 38003) -.webgains.com -# ||webadvertise123.com^$third-party (easylistchina+easylist.txt: 38002) -.webadvertise123.com -# ||webads.nl^$third-party (easylistchina+easylist.txt: 38001) -.webads.nl -# ||webads.co.nz^$third-party (easylistchina+easylist.txt: 38000) -.webads.co.nz -# ||web-bird.jp^$third-party (easylistchina+easylist.txt: 37999) -.web-bird.jp -# ||web-adservice.com^$third-party (easylistchina+easylist.txt: 37998) -.web-adservice.com -# ||weadrevenue.com^$third-party (easylistchina+easylist.txt: 37997) -.weadrevenue.com -# ||wcpanalytics.com^$third-party (easylistchina+easylist.txt: 37996) -.wcpanalytics.com -# ||wcmcs.net^$third-party (easylistchina+easylist.txt: 37995) -.wcmcs.net -# ||wbptqzmv.com^$third-party (easylistchina+easylist.txt: 37994) -.wbptqzmv.com -# ||waymp.com^$third-party (easylistchina+easylist.txt: 37993) -.waymp.com -# ||wateristian.com^$third-party (easylistchina+easylist.txt: 37992) -.wateristian.com -# ||watchnowlive.eu^$third-party (easylistchina+easylist.txt: 37991) -.watchnowlive.eu -# ||watchfree.flv.in^$third-party (easylistchina+easylist.txt: 37990) -.watchfree.flv.in -# ||warfacco.com^$third-party (easylistchina+easylist.txt: 37989) -.warfacco.com -# ||warezlayer.to^$third-party (easylistchina+easylist.txt: 37988) -.warezlayer.to -# ||wangfenxi.com^$third-party (easylistchina+easylist.txt: 37987) -.wangfenxi.com -# ||wamnetwork.com^$third-party (easylistchina+easylist.txt: 37986) -.wamnetwork.com -# ||wallacemaloneymindanao.info^$third-party (easylistchina+easylist.txt: 37985) -.wallacemaloneymindanao.info -# ||wahoha.com^$third-party (easylistchina+easylist.txt: 37984) -.wahoha.com -# ||wagershare.com^$third-party (easylistchina+easylist.txt: 37983) -.wagershare.com -# ||waframedia8.com^$third-party (easylistchina+easylist.txt: 37982) -.waframedia8.com -# ||waframedia7.com^$third-party (easylistchina+easylist.txt: 37981) -.waframedia7.com -# ||waframedia5.com^$third-party (easylistchina+easylist.txt: 37980) -.waframedia5.com -# ||waframedia3.com^$third-party (easylistchina+easylist.txt: 37979) -.waframedia3.com -# ||wafmedia6.com^$third-party (easylistchina+easylist.txt: 37978) -.wafmedia6.com -# ||wafmedia5.com^$third-party (easylistchina+easylist.txt: 37977) -.wafmedia5.com -# ||wafmedia3.com^$third-party (easylistchina+easylist.txt: 37976) -.wafmedia3.com -# ||w9statistics.info^$third-party (easylistchina+easylist.txt: 37975) -.w9statistics.info -# ||w5statistics.info^$third-party (easylistchina+easylist.txt: 37974) -.w5statistics.info -# ||w4.com^$third-party (easylistchina+easylist.txt: 37973) -.w4.com -# ||w3exit.com^$third-party (easylistchina+easylist.txt: 37972) -.w3exit.com -# ||w00tmedia.net^$third-party (easylistchina+easylist.txt: 37971) -.w00tmedia.net -# ||w00tads.com^$third-party (easylistchina+easylist.txt: 37970) -.w00tads.com -# ||vuiads.net^$third-party (easylistchina+easylist.txt: 37969) -.vuiads.net -# ||vuiads.info^$third-party (easylistchina+easylist.txt: 37968) -.vuiads.info -# ||vuiads.de^$third-party (easylistchina+easylist.txt: 37967) -.vuiads.de -# ||vth05dse.com^$third-party (easylistchina+easylist.txt: 37966) -.vth05dse.com -# ||vsservers.net^$third-party (easylistchina+easylist.txt: 37965) -.vsservers.net -# ||vs4family.com^$third-party (easylistchina+easylist.txt: 37964) -.vs4family.com -# ||vs4entertainment.com^$third-party (easylistchina+easylist.txt: 37963) -.vs4entertainment.com -# ||vs20060817.com^$third-party (easylistchina+easylist.txt: 37962) -.vs20060817.com -# ||vpico.com^$third-party (easylistchina+easylist.txt: 37961) -.vpico.com -# ||vogozaw.ru^$third-party (easylistchina+easylist.txt: 37960) -.vogozaw.ru -# ||vogosita.com^$third-party (easylistchina+easylist.txt: 37959) -.vogosita.com -# ||vntsm.com^$third-party (easylistchina+easylist.txt: 37958) -.vntsm.com -# ||vixnixxer.com^$third-party (easylistchina+easylist.txt: 37957) -.vixnixxer.com -# ||vivamob.net^$third-party (easylistchina+easylist.txt: 37956) -.vivamob.net -# ||vitalads.net^$third-party (easylistchina+easylist.txt: 37955) -.vitalads.net -# ||visualsteel.net^$third-party (easylistchina+easylist.txt: 37954) -.visualsteel.net -# ||visitweb.com^$third-party (easylistchina+easylist.txt: 37953) -.visitweb.com -# ||visitdetails.com^$third-party (easylistchina+easylist.txt: 37952) -.visitdetails.com -# ||visiblegains.com^$third-party (easylistchina+easylist.txt: 37950) -.visiblegains.com -# ||visiads.com^$third-party (easylistchina+easylist.txt: 37949) -.visiads.com -# ||viralmediatech.com^$third-party (easylistchina+easylist.txt: 37948) -.viralmediatech.com -# ||vipquesting.com^$third-party (easylistchina+easylist.txt: 37947) -.vipquesting.com -# ||vipcpms.com^$third-party (easylistchina+easylist.txt: 37946) -.vipcpms.com -# ||vindicosuite.com^$third-party (easylistchina+easylist.txt: 37945) -.vindicosuite.com -# ||viewivo.com^$third-party (easylistchina+easylist.txt: 37944) -.viewivo.com -# ||viewex.co.uk^$third-party (easylistchina+easylist.txt: 37943) -.viewex.co.uk -# ||viewclc.com^$third-party (easylistchina+easylist.txt: 37942) -.viewclc.com -# ||viewablemedia.net^$third-party (easylistchina+easylist.txt: 37941) -.viewablemedia.net -# ||view.atdmt.com^*/view/$third-party (easylistchina+easylist.txt: 37940) -.view.atdmt.com/.*/view/ -# ||view.atdmt.com^*/iview/$third-party (easylistchina+easylist.txt: 37939) -.view.atdmt.com/.*/iview/ -# ||view.atdmt.com/partner/$third-party (easylistchina+easylist.txt: 37938) -.view.atdmt.com/partner/ -# ||view-ads.de^$third-party (easylistchina+easylist.txt: 37937) -.view-ads.de -# ||viedeo2k.tv^$third-party (easylistchina+easylist.txt: 37936) -.viedeo2k.tv -# ||vidpay.com^$third-party (easylistchina+easylist.txt: 37935) -.vidpay.com -# ||videovfr.com^$third-party (easylistchina+easylist.txt: 37934) -.videovfr.com -# ||videoroll.net^$third-party (easylistchina+easylist.txt: 37933) -.videoroll.net -# ||videologygroup.com^$third-party (easylistchina+easylist.txt: 37927) -.videologygroup.com -# ||videoliver.com^$third-party (easylistchina+easylist.txt: 37926) -.videoliver.com -# ||videolansoftware.com^$third-party (easylistchina+easylist.txt: 37925) -.videolansoftware.com -# ||videohube.eu^$third-party (easylistchina+easylist.txt: 37924) -.videohube.eu -# ||videohub.com^$third-party (easylistchina+easylist.txt: 37923) -.videohub.com -# ||videoegg.com^$third-party (easylistchina+easylist.txt: 37922) -.videoegg.com -# ||videodeals.com^$third-party (easylistchina+easylist.txt: 37921) -.videodeals.com -# ||videoclick.ru^$third-party (easylistchina+easylist.txt: 37920) -.videoclick.ru -# ||videoadex.com^$third-party (easylistchina+easylist.txt: 37919) -.videoadex.com -# ||video1404.info^$third-party (easylistchina+easylist.txt: 37918) -.video1404.info -# ||video-loader.com^$third-party (easylistchina+easylist.txt: 37917) -.video-loader.com -# ||vibrantmedia.com^$third-party (easylistchina+easylist.txt: 37916) -.vibrantmedia.com -# ||vibrant.co^$third-party (easylistchina+easylist.txt: 37915) -.vibrant.co -# ||vianadserver.com^$third-party (easylistchina+easylist.txt: 37914) -.vianadserver.com -# ||vhmnetwork.com^$third-party (easylistchina+easylist.txt: 37913) -.vhmnetwork.com -# ||versetime.com^$third-party (easylistchina+easylist.txt: 37912) -.versetime.com -# ||versahq.com^$third-party (easylistchina+easylist.txt: 37911) -.versahq.com -# ||verata.xyz^$third-party (easylistchina+easylist.txt: 37910) -.verata.xyz -# ||veoxa.com^$third-party (easylistchina+easylist.txt: 37909) -.veoxa.com -# ||venusbux.com^$third-party (easylistchina+easylist.txt: 37908) -.venusbux.com -# ||vendexo.com^$third-party (easylistchina+easylist.txt: 37907) -.vendexo.com -# ||vemba.com^$third-party (easylistchina+easylist.txt: 37906) -.vemba.com -# ||velti.com^$third-party (easylistchina+easylist.txt: 37905) -.velti.com -# ||velmedia.net^$third-party (easylistchina+easylist.txt: 37904) -.velmedia.net -# ||vellde.com^$third-party (easylistchina+easylist.txt: 37903) -.vellde.com -# ||vectorstock.com^$third-party (easylistchina+easylist.txt: 37902) -.vectorstock.com -# ||vdopia.com^$third-party (easylistchina+easylist.txt: 37901) -.vdopia.com -# ||vcommission.com^$third-party (easylistchina+easylist.txt: 37900) -.vcommission.com -# ||vcmedia.com^$third-party (easylistchina+easylist.txt: 37899) -.vcmedia.com -# ||vastopped.com^$third-party (easylistchina+easylist.txt: 37898) -.vastopped.com -# ||vapedia.com^$third-party (easylistchina+easylist.txt: 37897) -.vapedia.com -# ||valuecontent.net^$third-party (easylistchina+easylist.txt: 37896) -.valuecontent.net -# ||valuecommerce.com^$third-party (easylistchina+easylist.txt: 37895) -.valuecommerce.com -# ||valueclickmedia.com^$third-party (easylistchina+easylist.txt: 37894) -.valueclickmedia.com -# ||valueclick.net^$third-party (easylistchina+easylist.txt: 37893) -.valueclick.net -# ||valueclick.com^$third-party (easylistchina+easylist.txt: 37892) -.valueclick.com -# ||valueaffiliate.net^$third-party (easylistchina+easylist.txt: 37891) -.valueaffiliate.net -# ||valuead.com^$third-party (easylistchina+easylist.txt: 37890) -.valuead.com -# ||validclick.com^$third-party (easylistchina+easylist.txt: 37889) -.validclick.com -# ||vadpay.com^$third-party (easylistchina+easylist.txt: 37888) -.vadpay.com -# ||v2mlblack.biz^$third-party (easylistchina+easylist.txt: 37887) -.v2mlblack.biz -# ||v2cigs.com^$third-party (easylistchina+easylist.txt: 37886) -.v2cigs.com -# ||v11media.com^$third-party (easylistchina+easylist.txt: 37885) -.v11media.com -# ||v.movad.de^$third-party (easylistchina+easylist.txt: 37884) -.v.movad.de -# ||utubeconverter.com^$third-party (easylistchina+easylist.txt: 37882) -.utubeconverter.com -# ||utokapa.com^$third-party (easylistchina+easylist.txt: 37881) -.utokapa.com -# ||utarget.ru^$third-party (easylistchina+easylist.txt: 37880) -.utarget.ru -# ||utarget.co.uk^$third-party (easylistchina+easylist.txt: 37879) -.utarget.co.uk -# ||usurv.com^$third-party (easylistchina+easylist.txt: 37878) -.usurv.com -# ||usercash.com^$third-party (easylistchina+easylist.txt: 37877) -.usercash.com -# ||usenetpassport.com^$third-party (easylistchina+easylist.txt: 37876) -.usenetpassport.com -# ||usenetjunction.com^$third-party (easylistchina+easylist.txt: 37875) -.usenetjunction.com -# ||usemax.de^$third-party (easylistchina+easylist.txt: 37874) -.usemax.de -# ||usbanners.com^$third-party (easylistchina+easylist.txt: 37873) -.usbanners.com -# ||urlcash.net^$third-party (easylistchina+easylist.txt: 37872) -.urlcash.net -# ||urlads.net^$third-party (easylistchina+easylist.txt: 37871) -.urlads.net -# ||ureace.com^$third-party (easylistchina+easylist.txt: 37870) -.ureace.com -# ||urbation.net^$third-party (easylistchina+easylist.txt: 37869) -.urbation.net -# ||upliftsearch.com^$third-party (easylistchina+easylist.txt: 37868) -.upliftsearch.com -# ||upads.info^$third-party (easylistchina+easylist.txt: 37867) -.upads.info -# ||unterary.com^$third-party (easylistchina+easylist.txt: 37866) -.unterary.com -# ||unrulymedia.com^$third-party (easylistchina+easylist.txt: 37865) -.unrulymedia.com -# ||unlockr.com^$third-party (easylistchina+easylist.txt: 37864) -.unlockr.com -# ||universityofinternetscience.com^$third-party (easylistchina+easylist.txt: 37863) -.universityofinternetscience.com -# ||unitethecows.com^$third-party (easylistchina+easylist.txt: 37862) -.unitethecows.com -# ||unicast.com^$third-party (easylistchina+easylist.txt: 37861) -.unicast.com -# ||undertone.com^$third-party (easylistchina+easylist.txt: 37860) -.undertone.com -# ||underclick.ru^$third-party (easylistchina+easylist.txt: 37859) -.underclick.ru -# ||unanimis.co.uk^$third-party (easylistchina+easylist.txt: 37858) -.unanimis.co.uk -# ||ultimategracelessness.info^$third-party (easylistchina+easylist.txt: 37857) -.ultimategracelessness.info -# ||ukbanners.com^$third-party (easylistchina+easylist.txt: 37856) -.ukbanners.com -# ||uiqatnpooq.com^$third-party (easylistchina+easylist.txt: 37855) -.uiqatnpooq.com -# ||uiadserver.com^$third-party (easylistchina+easylist.txt: 37854) -.uiadserver.com -# ||uglyst.com^$third-party (easylistchina+easylist.txt: 37853) -.uglyst.com -# ||ughus.com^$third-party (easylistchina+easylist.txt: 37852) -.ughus.com -# ||ugaral.com^$third-party (easylistchina+easylist.txt: 37851) -.ugaral.com -# ||udmserve.net^$third-party (easylistchina+easylist.txt: 37850) -.udmserve.net -# ||ubudigital.com^$third-party (easylistchina+easylist.txt: 37849) -.ubudigital.com -# ||u1hw38x0.com^$third-party (easylistchina+easylist.txt: 37848) -.u1hw38x0.com -# ||u-ad.info^$third-party (easylistchina+easylist.txt: 37847) -.u-ad.info -# ||tyroo.com^$third-party (easylistchina+easylist.txt: 37846) -.tyroo.com -# ||twtad.com^$third-party (easylistchina+easylist.txt: 37845) -.twtad.com -# ||twittad.com^$third-party (easylistchina+easylist.txt: 37844) -.twittad.com -# ||twistads.com^$third-party (easylistchina+easylist.txt: 37843) -.twistads.com -# ||twinpinenetwork.com^$third-party (easylistchina+easylist.txt: 37842) -.twinpinenetwork.com -# ||tweard.com^$third-party (easylistchina+easylist.txt: 37841) -.tweard.com -# ||twalm.com^$third-party (easylistchina+easylist.txt: 37840) -.twalm.com -# ||tvprocessing.com^$third-party (easylistchina+easylist.txt: 37839) -.tvprocessing.com -# ||tvas-c.pw^$third-party (easylistchina+easylist.txt: 37838) -.tvas-c.pw -# ||tutvp.com^$third-party (easylistchina+easylist.txt: 37837) -.tutvp.com -# ||tusno.com^$third-party (easylistchina+easylist.txt: 37836) -.tusno.com -# ||turn.com^$third-party (easylistchina+easylist.txt: 37835) -.turn.com -# ||turbotraff.net^$third-party (easylistchina+easylist.txt: 37834) -.turbotraff.net -# ||tumri.net^$third-party (easylistchina+easylist.txt: 37833) -.tumri.net -# ||tubereplay.com^$third-party (easylistchina+easylist.txt: 37832) -.tubereplay.com -# ||tubemogul.com^$third-party (easylistchina+easylist.txt: 37831) -.tubemogul.com -# ||tubberlo.com^$third-party (easylistchina+easylist.txt: 37830) -.tubberlo.com -# ||ttzmedia.com^$third-party (easylistchina+easylist.txt: 37829) -.ttzmedia.com -# ||trygen.co.uk^$third-party (easylistchina+easylist.txt: 37828) -.trygen.co.uk -# ||truex.com^$third-party (easylistchina+easylist.txt: 37827) -.truex.com -# ||truesecurejump.com^$third-party (easylistchina+easylist.txt: 37826) -.truesecurejump.com -# ||trtrccl.com^$third-party (easylistchina+easylist.txt: 37825) -.trtrccl.com -# ||trmit.com^$third-party (easylistchina+easylist.txt: 37824) -.trmit.com -# ||trks.us^$third-party (easylistchina+easylist.txt: 37823) -.trks.us -# ||trklnks.com^$third-party (easylistchina+easylist.txt: 37822) -.trklnks.com -# ||trker.com^$third-party (easylistchina+easylist.txt: 37821) -.trker.com -# ||trkclk.net^$third-party (easylistchina+easylist.txt: 37820) -.trkclk.net -# ||trkalot.com^$third-party (easylistchina+easylist.txt: 37819) -.trkalot.com -# ||trk4.com^$third-party (easylistchina+easylist.txt: 37818) -.trk4.com -# ||trigami.com^$third-party (easylistchina+easylist.txt: 37817) -.trigami.com -# ||tribalfusion.com^$third-party (easylistchina+easylist.txt: 37816) -.tribalfusion.com -# ||triadmedianetwork.com^$third-party (easylistchina+easylist.txt: 37815) -.triadmedianetwork.com -# ||trenpyle.com^$third-party (easylistchina+easylist.txt: 37814) -.trenpyle.com -# ||tredirect.com^$third-party (easylistchina+easylist.txt: 37813) -.tredirect.com -# ||travidia.com^$third-party (easylistchina+easylist.txt: 37812) -.travidia.com -# ||travelscream.com^$third-party (easylistchina+easylist.txt: 37811) -.travelscream.com -# ||traveladvertising.com^$third-party (easylistchina+easylist.txt: 37810) -.traveladvertising.com -# ||trapasol.com^$third-party (easylistchina+easylist.txt: 37809) -.trapasol.com -# ||trahic.ru^$third-party (easylistchina+easylist.txt: 37808) -.trahic.ru -# ||traffirms.com^$third-party (easylistchina+easylist.txt: 37807) -.traffirms.com -# ||trafficzap.com^$third-party (easylistchina+easylist.txt: 37806) -.trafficzap.com -# ||trafficz.com^$third-party (easylistchina+easylist.txt: 37805) -.trafficz.com -# ||trafficwave.net^$third-party (easylistchina+easylist.txt: 37804) -.trafficwave.net -# ||trafficvance.com^$third-party (easylistchina+easylist.txt: 37803) -.trafficvance.com -# ||trafficular.com^$third-party (easylistchina+easylist.txt: 37802) -.trafficular.com -# ||traffictrader.net^$third-party (easylistchina+easylist.txt: 37801) -.traffictrader.net -# ||trafficsynergy.com^$third-party (easylistchina+easylist.txt: 37800) -.trafficsynergy.com -# ||trafficsway.com^$third-party (easylistchina+easylist.txt: 37799) -.trafficsway.com -# ||trafficswarm.com^$third-party (easylistchina+easylist.txt: 37798) -.trafficswarm.com -# ||trafficspaces.net^$third-party (easylistchina+easylist.txt: 37797) -.trafficspaces.net -# ||trafficrevenue.net^$third-party (easylistchina+easylist.txt: 37796) -.trafficrevenue.net -# ||trafficposse.com^$third-party (easylistchina+easylist.txt: 37795) -.trafficposse.com -# ||trafficmp.com^$third-party (easylistchina+easylist.txt: 37794) -.trafficmp.com -# ||trafficmasterz.net^$third-party (easylistchina+easylist.txt: 37793) -.trafficmasterz.net -# ||trafficjunky.net^$third-party (easylistchina+easylist.txt: 37792) -.trafficjunky.net -# ||traffichaus.com^$third-party (easylistchina+easylist.txt: 37791) -.traffichaus.com -# ||trafficforce.com^$third-party (easylistchina+easylist.txt: 37790) -.trafficforce.com -# ||trafficfactory.biz^$third-party (easylistchina+easylist.txt: 37789) -.trafficfactory.biz -# ||trafficbroker.com^$third-party (easylistchina+easylist.txt: 37788) -.trafficbroker.com -# ||trafficbarads.com^$third-party (easylistchina+easylist.txt: 37787) -.trafficbarads.com -# ||traffic-supremacy.com^$third-party (easylistchina+easylist.txt: 37786) -.traffic-supremacy.com -# ||traffboost.net^$third-party (easylistchina+easylist.txt: 37785) -.traffboost.net -# ||traff-advertazer.com^$third-party (easylistchina+easylist.txt: 37784) -.traff-advertazer.com -# ||tradepopups.com^$third-party (easylistchina+easylist.txt: 37783) -.tradepopups.com -# ||tradeexpert.net^$third-party (easylistchina+easylist.txt: 37782) -.tradeexpert.net -# ||tradeadexchange.com^$third-party (easylistchina+easylist.txt: 37781) -.tradeadexchange.com -# ||trackyourlinks.com^$third-party (easylistchina+easylist.txt: 37780) -.trackyourlinks.com -# ||trackword.net^$third-party (easylistchina+easylist.txt: 37779) -.trackword.net -# ||tracktor.co.uk^$third-party (easylistchina+easylist.txt: 37778) -.tracktor.co.uk -# ||trackthatad.com^$third-party (easylistchina+easylist.txt: 37777) -.trackthatad.com -# ||trackstarsengland.net^$third-party (easylistchina+easylist.txt: 37776) -.trackstarsengland.net -# ||trackpromotion.net^$third-party (easylistchina+easylist.txt: 37775) -.trackpromotion.net -# ||trackpath.biz^$third-party (easylistchina+easylist.txt: 37774) -.trackpath.biz -# ||trackingoffer.net^$third-party (easylistchina+easylist.txt: 37773) -.trackingoffer.net -# ||trackingoffer.info^$third-party (easylistchina+easylist.txt: 37772) -.trackingoffer.info -# ||tracking11.com^$third-party (easylistchina+easylist.txt: 37771) -.tracking11.com -# ||tracking101.com^$third-party (easylistchina+easylist.txt: 37770) -.tracking101.com -# ||tracking.to^$third-party (easylistchina+easylist.txt: 37769) -.tracking.to -# ||trackcorner.com^$third-party (easylistchina+easylist.txt: 37768) -.trackcorner.com -# ||trackadvertising.net^$third-party (easylistchina+easylist.txt: 37767) -.trackadvertising.net -# ||traceadmanager.com^$third-party (easylistchina+easylist.txt: 37766) -.traceadmanager.com -# ||tqlkg.net^$third-party (easylistchina+easylist.txt: 37765) -.tqlkg.net -# ||tqlkg.com^$third-party (easylistchina+easylist.txt: 37764) -.tqlkg.com -# ||tpnads.com^$third-party (easylistchina+easylist.txt: 37763) -.tpnads.com -# ||tower-colocation.info^$third-party (easylistchina+easylist.txt: 37762) -.tower-colocation.info -# ||tower-colocation.de^$third-party (easylistchina+easylist.txt: 37761) -.tower-colocation.de -# ||towardstelephone.com^$third-party (easylistchina+easylist.txt: 37760) -.towardstelephone.com -# ||totemcash.com^$third-party (easylistchina+easylist.txt: 37759) -.totemcash.com -# ||totalprofitplan.com^$third-party (easylistchina+easylist.txt: 37758) -.totalprofitplan.com -# ||total-media.net^$third-party (easylistchina+easylist.txt: 37757) -.total-media.net -# ||torrpedoads.net^$third-party (easylistchina+easylist.txt: 37756) -.torrpedoads.net -# ||torrida.net^$third-party (easylistchina+easylist.txt: 37755) -.torrida.net -# ||toroadvertising.com^$third-party (easylistchina+easylist.txt: 37754) -.toroadvertising.com -# ||torerolumiere.net^$third-party (easylistchina+easylist.txt: 37753) -.torerolumiere.net -# ||torconpro.com^$third-party (easylistchina+easylist.txt: 37752) -.torconpro.com -# ||torads.xyz^$third-party (easylistchina+easylist.txt: 37751) -.torads.xyz -# ||torads.me^$third-party (easylistchina+easylist.txt: 37750) -.torads.me -# ||tophotoffers.com^$third-party (easylistchina+easylist.txt: 37749) -.tophotoffers.com -# ||topfox.co.uk^$third-party (easylistchina+easylist.txt: 37748) -.topfox.co.uk -# ||topeuro.biz^$third-party (easylistchina+easylist.txt: 37747) -.topeuro.biz -# ||topcasino10.com^$third-party (easylistchina+easylist.txt: 37746) -.topcasino10.com -# ||topauto10.com^$third-party (easylistchina+easylist.txt: 37745) -.topauto10.com -# ||top26.net^$third-party (easylistchina+easylist.txt: 37744) -.top26.net -# ||tool-site.com^$third-party (easylistchina+easylist.txt: 37743) -.tool-site.com -# ||tonefuse.com^$third-party (easylistchina+easylist.txt: 37742) -.tonefuse.com -# ||tomekas.com^$third-party (easylistchina+easylist.txt: 37741) -.tomekas.com -# ||tollfreeforwarding.com^$third-party (easylistchina+easylist.txt: 37740) -.tollfreeforwarding.com -# ||tokenads.com^$third-party (easylistchina+easylist.txt: 37739) -.tokenads.com -# ||toboads.com^$third-party (easylistchina+easylist.txt: 37738) -.toboads.com -# ||tnyzin.ru^$third-party (easylistchina+easylist.txt: 37737) -.tnyzin.ru -# ||tlvmedia.com^$third-party (easylistchina+easylist.txt: 37736) -.tlvmedia.com -# ||tldadserv.com^$third-party (easylistchina+easylist.txt: 37735) -.tldadserv.com -# ||tkqlhce.com^$third-party (easylistchina+easylist.txt: 37734) -.tkqlhce.com -# ||tissage-extension.com^$third-party (easylistchina+easylist.txt: 37733) -.tissage-extension.com -# ||tiser.com^$third-party (easylistchina+easylist.txt: 37732) -.tiser.com -# ||tisadama.com^$third-party (easylistchina+easylist.txt: 37731) -.tisadama.com -# ||tinbuadserv.com^$third-party (easylistchina+easylist.txt: 37730) -.tinbuadserv.com -# ||tightexact.net^$third-party (easylistchina+easylist.txt: 37729) -.tightexact.net -# ||tidaltv.com^$third-party (easylistchina+easylist.txt: 37728) -.tidaltv.com -# ||thoughtsondance.info^$third-party (easylistchina+easylist.txt: 37727) -.thoughtsondance.info -# ||thoughtleadr.com^$third-party (easylistchina+easylist.txt: 37726) -.thoughtleadr.com -# ||thoseads.com^$third-party (easylistchina+easylist.txt: 37725) -.thoseads.com -# ||thewheelof.com^$third-party (easylistchina+easylist.txt: 37724) -.thewheelof.com -# ||thewebgemnetwork.com^$third-party (easylistchina+easylist.txt: 37723) -.thewebgemnetwork.com -# ||thepiratereactor.net^$third-party (easylistchina+easylist.txt: 37722) -.thepiratereactor.net -# ||themidnightmatulas.com^$third-party (easylistchina+easylist.txt: 37721) -.themidnightmatulas.com -# ||theloungenet.com^$third-party (easylistchina+easylist.txt: 37720) -.theloungenet.com -# ||thelistassassin.com^$third-party (easylistchina+easylist.txt: 37719) -.thelistassassin.com -# ||theequalground.info^$third-party (easylistchina+easylist.txt: 37718) -.theequalground.info -# ||thebflix.info^$third-party (easylistchina+easylist.txt: 37717) -.thebflix.info -# ||thebannerexchange.com^$third-party (easylistchina+easylist.txt: 37716) -.thebannerexchange.com -# ||theads.me^$third-party (easylistchina+easylist.txt: 37715) -.theads.me -# ||theadgateway.com^$third-party (easylistchina+easylist.txt: 37714) -.theadgateway.com -# ||thangasoline.com^$third-party (easylistchina+easylist.txt: 37713) -.thangasoline.com -# ||tgtmedia.com^$third-party (easylistchina+easylist.txt: 37712) -.tgtmedia.com -# ||tfag.de^$third-party (easylistchina+easylist.txt: 37711) -.tfag.de -# ||textsrv.com^$third-party (easylistchina+easylist.txt: 37710) -.textsrv.com -# ||textonlyads.com^$third-party (easylistchina+easylist.txt: 37709) -.textonlyads.com -# ||text-link-ads.com^$third-party (easylistchina+easylist.txt: 37708) -.text-link-ads.com -# ||testnet.nl^$third-party (easylistchina+easylist.txt: 37707) -.testnet.nl -# ||testfilter.com^$third-party (easylistchina+easylist.txt: 37706) -.testfilter.com -# ||terraclicks.com^$third-party (easylistchina+easylist.txt: 37705) -.terraclicks.com -# ||teracreative.com^$third-party (easylistchina+easylist.txt: 37704) -.teracreative.com -# ||teracent.net^$third-party (easylistchina+easylist.txt: 37703) -.teracent.net -# ||teosredic.com^$third-party (easylistchina+easylist.txt: 37702) -.teosredic.com -# ||tennerlist.com^$third-party (easylistchina+easylist.txt: 37701) -.tennerlist.com -# ||telemetryverification.net^$third-party (easylistchina+easylist.txt: 37700) -.telemetryverification.net -# ||technoratimedia.com^$third-party (easylistchina+easylist.txt: 37699) -.technoratimedia.com -# ||techclicks.net^$third-party (easylistchina+easylist.txt: 37698) -.techclicks.net -# ||tec-tec-boom.com^$third-party (easylistchina+easylist.txt: 37697) -.tec-tec-boom.com -# ||teasernet.com^$third-party (easylistchina+easylist.txt: 37696) -.teasernet.com -# ||teambetaffiliates.com^$third-party (easylistchina+easylist.txt: 37695) -.teambetaffiliates.com -# ||teads.tv^$third-party (easylistchina+easylist.txt: 37694) -.teads.tv -# ||td563.com^$third-party (easylistchina+easylist.txt: 37693) -.td563.com -# ||td553.com^$third-party (easylistchina+easylist.txt: 37692) -.td553.com -# ||tcadops.ca^$third-party (easylistchina+easylist.txt: 37691) -.tcadops.ca -# ||tbaffiliate.com^$third-party (easylistchina+easylist.txt: 37690) -.tbaffiliate.com -# ||tattomedia.com^$third-party (easylistchina+easylist.txt: 37689) -.tattomedia.com -# ||targetspot.com^$third-party (easylistchina+easylist.txt: 37688) -.targetspot.com -# ||targetpoint.com^$third-party (easylistchina+easylist.txt: 37687) -.targetpoint.com -# ||targetnet.com^$third-party (easylistchina+easylist.txt: 37686) -.targetnet.com -# ||targetadverts.com^$third-party (easylistchina+easylist.txt: 37685) -.targetadverts.com -# ||tardangro.com^$third-party (easylistchina+easylist.txt: 37684) -.tardangro.com -# ||tapad.com^$third-party (easylistchina+easylist.txt: 37683) -.tapad.com -# ||tangozebra.com^$third-party (easylistchina+easylist.txt: 37682) -.tangozebra.com -# ||talaropa.com^$third-party (easylistchina+easylist.txt: 37681) -.talaropa.com -# ||takensparks.com^$third-party (easylistchina+easylist.txt: 37680) -.takensparks.com -# ||tailsweep.com^$third-party (easylistchina+easylist.txt: 37679) -.tailsweep.com -# ||tagshost.com^$third-party (easylistchina+easylist.txt: 37678) -.tagshost.com -# ||tagjunction.com^$third-party (easylistchina+easylist.txt: 37677) -.tagjunction.com -# ||taggify.net^$third-party (easylistchina+easylist.txt: 37676) -.taggify.net -# ||tafmaster.com^$third-party (easylistchina+easylist.txt: 37675) -.tafmaster.com -# ||tacticalrepublic.com^$third-party (easylistchina+easylist.txt: 37674) -.tacticalrepublic.com -# ||tacoda.net^$third-party (easylistchina+easylist.txt: 37673) -.tacoda.net -# ||tacastas.com^$third-party (easylistchina+easylist.txt: 37672) -.tacastas.com -# ||t3q7af0z.com^$third-party (easylistchina+easylist.txt: 37671) -.t3q7af0z.com -# ||syndicatedsearchresults.com^$third-party (easylistchina+easylist.txt: 37670) -.syndicatedsearchresults.com -# ||synapsys.us^$third-party (easylistchina+easylist.txt: 37669) -.synapsys.us -# ||symbiosting.com^$third-party (easylistchina+easylist.txt: 37668) -.symbiosting.com -# ||swoop.com^$third-party (easylistchina+easylist.txt: 37667) -.swoop.com -# ||switchadhub.com^$third-party (easylistchina+easylist.txt: 37666) -.switchadhub.com -# ||swelen.com^$third-party (easylistchina+easylist.txt: 37665) -.swelen.com -# ||swbdds.com^$third-party (easylistchina+easylist.txt: 37664) -.swbdds.com -# ||swadvertising.org^$third-party (easylistchina+easylist.txt: 37663) -.swadvertising.org -# ||svlu.net^$third-party (easylistchina+easylist.txt: 37662) -.svlu.net -# ||suthome.com^$third-party (easylistchina+easylist.txt: 37661) -.suthome.com -# ||surveywidget.biz^$third-party (easylistchina+easylist.txt: 37660) -.surveywidget.biz -# ||surveyvalue.net^$third-party (easylistchina+easylist.txt: 37659) -.surveyvalue.net -# ||surveyvalue.mobi^$third-party (easylistchina+easylist.txt: 37658) -.surveyvalue.mobi -# ||survey-poll.com^$third-party (easylistchina+easylist.txt: 37657) -.survey-poll.com -# ||surfboarddigital.com.au^$third-party (easylistchina+easylist.txt: 37656) -.surfboarddigital.com.au -# ||surf-bar-traffic.com^$third-party (easylistchina+easylist.txt: 37655) -.surf-bar-traffic.com -# ||supremeadsonline.com^$third-party (easylistchina+easylist.txt: 37654) -.supremeadsonline.com -# ||supplyframe.com^$third-party (easylistchina+easylist.txt: 37653) -.supplyframe.com -# ||supersitetime.com^$third-party (easylistchina+easylist.txt: 37652) -.supersitetime.com -# ||superloofy.com^$third-party (easylistchina+easylist.txt: 37651) -.superloofy.com -# ||super-links.net^$third-party (easylistchina+easylist.txt: 37650) -.super-links.net -# ||suparewards.com^$third-party (easylistchina+easylist.txt: 37649) -.suparewards.com -# ||sunmedia.net^$third-party (easylistchina+easylist.txt: 37648) -.sunmedia.net -# ||sumarketing.co.uk^$third-party (easylistchina+easylist.txt: 37647) -.sumarketing.co.uk -# ||sulvo.co^$third-party (easylistchina+easylist.txt: 37646) -.sulvo.co -# ||suitesmart.com^$third-party (easylistchina+easylist.txt: 37645) -.suitesmart.com -# ||suite6ixty6ix.com^$third-party (easylistchina+easylist.txt: 37644) -.suite6ixty6ix.com -# ||suggesttool.com^$third-party (easylistchina+easylist.txt: 37643) -.suggesttool.com -# ||sugarlistsuggest.info^$third-party (easylistchina+easylist.txt: 37642) -.sugarlistsuggest.info -# ||suffusefacultytsunami.info^$third-party (easylistchina+easylist.txt: 37641) -.suffusefacultytsunami.info -# ||successfultogether.co.uk^$third-party (easylistchina+easylist.txt: 37640) -.successfultogether.co.uk -# ||submitexpress.co.uk^$third-party (easylistchina+easylist.txt: 37639) -.submitexpress.co.uk -# ||sublimemedia.net^$third-party (easylistchina+easylist.txt: 37638) -.sublimemedia.net -# ||style-eyes.eu^$third-party (easylistchina+easylist.txt: 37637) -.style-eyes.eu -# ||struq.com^$third-party (easylistchina+easylist.txt: 37636) -.struq.com -# ||strikead.com^$third-party (easylistchina+easylist.txt: 37635) -.strikead.com -# ||streamdownloadonline.com^$third-party (easylistchina+easylist.txt: 37634) -.streamdownloadonline.com -# ||streamate.com^$third-party (easylistchina+easylist.txt: 37633) -.streamate.com -# ||stocker.bonnint.net^$third-party (easylistchina+easylist.txt: 37632) -.stocker.bonnint.net -# ||stickyadstv.com^$third-party (easylistchina+easylist.txt: 37631) -.stickyadstv.com -# ||stealthlockers.com^$third-party (easylistchina+easylist.txt: 37630) -.stealthlockers.com -# ||statsmobi.com^$third-party (easylistchina+easylist.txt: 37629) -.statsmobi.com -# ||statelead.com^$third-party (easylistchina+easylist.txt: 37628) -.statelead.com -# ||statecannoticed.com^$third-party (easylistchina+easylist.txt: 37627) -.statecannoticed.com -# ||statcamp.net^$third-party (easylistchina+easylist.txt: 37626) -.statcamp.net -# ||startpagea.com^$third-party (easylistchina+easylist.txt: 37625) -.startpagea.com -# ||starlayer.com^$third-party (easylistchina+easylist.txt: 37624) -.starlayer.com -# ||stargamesaffiliate.com^$third-party (easylistchina+easylist.txt: 37623) -.stargamesaffiliate.com -# ||star-advertising.com^$third-party (easylistchina+easylist.txt: 37622) -.star-advertising.com -# ||standartads.com^$third-party (easylistchina+easylist.txt: 37621) -.standartads.com -# ||stalesplit.com^$third-party (easylistchina+easylist.txt: 37620) -.stalesplit.com -# ||stackattacka.com^$third-party (easylistchina+easylist.txt: 37619) -.stackattacka.com -# ||stackadapt.com^$third-party (easylistchina+easylist.txt: 37618) -.stackadapt.com -# ||stabletrappeddevote.info^$third-party (easylistchina+easylist.txt: 37617) -.stabletrappeddevote.info -# ||sta-ads.com^$third-party (easylistchina+easylist.txt: 37616) -.sta-ads.com -# ||srx.com.sg^$third-party (easylistchina+easylist.txt: 37615) -.srx.com.sg -# ||srtk.net^$third-party (easylistchina+easylist.txt: 37614) -.srtk.net -# ||sq2trk2.com^$third-party (easylistchina+easylist.txt: 37613) -.sq2trk2.com -# ||sproose.com^$third-party (easylistchina+easylist.txt: 37612) -.sproose.com -# ||sprintrade.com^$third-party (easylistchina+easylist.txt: 37611) -.sprintrade.com -# ||spoutable.com^$third-party (easylistchina+easylist.txt: 37610) -.spoutable.com -# ||spotxchange.com^$third-party (easylistchina+easylist.txt: 37609) -.spotxchange.com -# ||spottt.com^$third-party (easylistchina+easylist.txt: 37608) -.spottt.com -# ||spotscenered.info^$third-party (easylistchina+easylist.txt: 37607) -.spotscenered.info -# ||spotrails.com^$third-party (easylistchina+easylist.txt: 37606) -.spotrails.com -# ||sportsyndicator.com^$third-party (easylistchina+easylist.txt: 37605) -.sportsyndicator.com -# ||sponsorselect.com^$third-party (easylistchina+easylist.txt: 37604) -.sponsorselect.com -# ||sponsorpay.com^$third-party (easylistchina+easylist.txt: 37603) -.sponsorpay.com -# ||sponsorpalace.com^$third-party (easylistchina+easylist.txt: 37602) -.sponsorpalace.com -# ||sponsormob.com^$third-party (easylistchina+easylist.txt: 37601) -.sponsormob.com -# ||sponsoredtweets.com^$third-party (easylistchina+easylist.txt: 37600) -.sponsoredtweets.com -# ||sponsoredby.me^$third-party (easylistchina+easylist.txt: 37599) -.sponsoredby.me -# ||spongecell.com^$third-party (easylistchina+easylist.txt: 37598) -.spongecell.com -# ||spmxs.com^$third-party (easylistchina+easylist.txt: 37597) -.spmxs.com -# ||splut.com^$third-party (easylistchina+easylist.txt: 37596) -.splut.com -# ||splinky.com^$third-party (easylistchina+easylist.txt: 37595) -.splinky.com -# ||spinbox.net^$third-party (easylistchina+easylist.txt: 37594) -.spinbox.net -# ||spinbox.freedom.com^$third-party (easylistchina+easylist.txt: 37593) -.spinbox.freedom.com -# ||spiderhood.net^$third-party (easylistchina+easylist.txt: 37592) -.spiderhood.net -# ||speedsuccess.net^$third-party (easylistchina+easylist.txt: 37591) -.speedsuccess.net -# ||speedshiftmedia.com^$third-party (easylistchina+easylist.txt: 37590) -.speedshiftmedia.com -# ||speeb.com^$third-party (easylistchina+easylist.txt: 37589) -.speeb.com -# ||spectato.com^$third-party (easylistchina+easylist.txt: 37588) -.spectato.com -# ||specificmedia.com^$third-party (easylistchina+easylist.txt: 37587) -.specificmedia.com -# ||specificclick.net^$third-party (easylistchina+easylist.txt: 37586) -.specificclick.net -# ||sparkstudios.com^$third-party (easylistchina+easylist.txt: 37585) -.sparkstudios.com -# ||sotuktraffic.com^$third-party (easylistchina+easylist.txt: 37584) -.sotuktraffic.com -# ||sophiasearch.com^$third-party (easylistchina+easylist.txt: 37583) -.sophiasearch.com -# ||sonobi.com^$third-party (easylistchina+easylist.txt: 37582) -.sonobi.com -# ||sonnerie.net^$third-party (easylistchina+easylist.txt: 37581) -.sonnerie.net -# ||solutionzip.info^$third-party (easylistchina+easylist.txt: 37580) -.solutionzip.info -# ||solocpm.com^$third-party (easylistchina+easylist.txt: 37579) -.solocpm.com -# ||solarmosa.com^$third-party (easylistchina+easylist.txt: 37578) -.solarmosa.com -# ||solapoka.com^$third-party (easylistchina+easylist.txt: 37577) -.solapoka.com -# ||sokitosa.com^$third-party (easylistchina+easylist.txt: 37576) -.sokitosa.com -# ||softwares2015.com^$third-party (easylistchina+easylist.txt: 37575) -.softwares2015.com -# ||softpopads.com^$third-party (easylistchina+easylist.txt: 37574) -.softpopads.com -# ||softonicads.com^$third-party (easylistchina+easylist.txt: 37573) -.softonicads.com -# ||soft4dle.com^$third-party (easylistchina+easylist.txt: 37572) -.soft4dle.com -# ||sodud.com^$third-party (easylistchina+easylist.txt: 37571) -.sodud.com -# ||sociomantic.com^$third-party (easylistchina+easylist.txt: 37570) -.sociomantic.com -# ||sociocast.com^$third-party (easylistchina+easylist.txt: 37569) -.sociocast.com -# ||society6.com^$third-party (easylistchina+easylist.txt: 37568) -.society6.com -# ||socialspark.com^$third-party (easylistchina+easylist.txt: 37567) -.socialspark.com -# ||socialreach.com^$third-party (easylistchina+easylist.txt: 37566) -.socialreach.com -# ||socialmedia.com^$third-party (easylistchina+easylist.txt: 37565) -.socialmedia.com -# ||sociallypublish.com^$third-party (easylistchina+easylist.txt: 37564) -.sociallypublish.com -# ||socialelective.com^$third-party (easylistchina+easylist.txt: 37563) -.socialelective.com -# ||socialbirth.com^$third-party (easylistchina+easylist.txt: 37562) -.socialbirth.com -# ||sochr.com^$third-party (easylistchina+easylist.txt: 37561) -.sochr.com -# ||so-excited.com^$third-party (easylistchina+easylist.txt: 37560) -.so-excited.com -# ||sndkorea.co.kr^$third-party (easylistchina+easylist.txt: 37559) -.sndkorea.co.kr -# ||snap.com^$third-party (easylistchina+easylist.txt: 37558) -.snap.com -# ||sn00.net^$third-party (easylistchina+easylist.txt: 37557) -.sn00.net -# ||sms-mmm.com^$third-party (easylistchina+easylist.txt: 37556) -.sms-mmm.com -# ||smpgfx.com^$third-party (easylistchina+easylist.txt: 37555) -.smpgfx.com -# ||smowtion.com^$third-party (easylistchina+easylist.txt: 37554) -.smowtion.com -# ||smilyes4u.com^$third-party (easylistchina+easylist.txt: 37553) -.smilyes4u.com -# ||smileycentral.com^$third-party (easylistchina+easylist.txt: 37552) -.smileycentral.com -# ||smartyads.com^$third-party (easylistchina+easylist.txt: 37551) -.smartyads.com -# ||smarttds.ru^$third-party (easylistchina+easylist.txt: 37550) -.smarttds.ru -# ||smarttargetting.net^$third-party (easylistchina+easylist.txt: 37549) -.smarttargetting.net -# ||smarttargetting.com^$third-party (easylistchina+easylist.txt: 37548) -.smarttargetting.com -# ||smarttargetting.co.uk^$third-party (easylistchina+easylist.txt: 37547) -.smarttargetting.co.uk -# ||smarterdownloads.net^$third-party (easylistchina+easylist.txt: 37546) -.smarterdownloads.net -# ||smartdevicemedia.com^$third-party (easylistchina+easylist.txt: 37545) -.smartdevicemedia.com -# ||smartadserver.com^$third-party (easylistchina+easylist.txt: 37544) -.smartadserver.com -# ||smartad.ee^$third-party (easylistchina+easylist.txt: 37543) -.smartad.ee -# ||smart2.allocine.fr^$third-party (easylistchina+easylist.txt: 37542) -.smart2.allocine.fr -# ||smart.allocine.fr^$third-party (easylistchina+easylist.txt: 37541) -.smart.allocine.fr -# ||smart-feed-online.com^$third-party (easylistchina+easylist.txt: 37540) -.smart-feed-online.com -# ||smaclick.com^$third-party (easylistchina+easylist.txt: 37539) -.smaclick.com -# ||slinse.com^$third-party (easylistchina+easylist.txt: 37538) -.slinse.com -# ||slimtrade.com^$third-party (easylistchina+easylist.txt: 37537) -.slimtrade.com -# ||slimspots.com^$third-party (easylistchina+easylist.txt: 37536) -.slimspots.com -# ||slikslik.com^$third-party (easylistchina+easylist.txt: 37535) -.slikslik.com -# ||slfpu.com^$third-party (easylistchina+easylist.txt: 37534) -.slfpu.com -# ||skyscrpr.com^$third-party (easylistchina+easylist.txt: 37533) -.skyscrpr.com -# ||skyactivate.com^$third-party (easylistchina+easylist.txt: 37532) -.skyactivate.com -# ||skoovyads.com^$third-party (easylistchina+easylist.txt: 37531) -.skoovyads.com -# ||skinected.com^$third-party (easylistchina+easylist.txt: 37530) -.skinected.com -# ||skimlinks.com^$third-party (easylistchina+easylist.txt: 37529) -.skimlinks.com -# ||sittiad.com^$third-party (easylistchina+easylist.txt: 37528) -.sittiad.com -# ||sitethree.com^$third-party (easylistchina+easylist.txt: 37527) -.sitethree.com -# ||sitesense-oo.com^$third-party (easylistchina+easylist.txt: 37526) -.sitesense-oo.com -# ||sitescoutadserver.com^$third-party (easylistchina+easylist.txt: 37525) -.sitescoutadserver.com -# ||sitescout.com^$third-party (easylistchina+easylist.txt: 37524) -.sitescout.com -# ||siteencore.com^$third-party (easylistchina+easylist.txt: 37523) -.siteencore.com -# ||sitebrand.com^$third-party (easylistchina+easylist.txt: 37522) -.sitebrand.com -# ||simplyhired.com^$third-party (easylistchina+easylist.txt: 37521) -.simplyhired.com -# ||simply.com^$third-party (easylistchina+easylist.txt: 37520) -.simply.com -# ||simpio.com^$third-party (easylistchina+easylist.txt: 37519) -.simpio.com -# ||silverads.net^$third-party (easylistchina+easylist.txt: 37518) -.silverads.net -# ||silstavo.com^$third-party (easylistchina+easylist.txt: 37517) -.silstavo.com -# ||silence-ads.com^$third-party (easylistchina+easylist.txt: 37516) -.silence-ads.com -# ||siamzone.com^$third-party (easylistchina+easylist.txt: 37515) -.siamzone.com -# ||showyoursite.com^$third-party (easylistchina+easylist.txt: 37514) -.showyoursite.com -# ||shopzyapp.com^$third-party (easylistchina+easylist.txt: 37513) -.shopzyapp.com -# ||shoppingads.com^$third-party (easylistchina+easylist.txt: 37512) -.shoppingads.com -# ||shopalyst.com^$third-party (easylistchina+easylist.txt: 37511) -.shopalyst.com -# ||shoogloonetwork.com^$third-party (easylistchina+easylist.txt: 37510) -.shoogloonetwork.com -# ||sharethrough.com^$third-party (easylistchina+easylist.txt: 37509) -.sharethrough.com -# ||shareresults.com^$third-party (easylistchina+easylist.txt: 37508) -.shareresults.com -# ||sharegods.com^$third-party (easylistchina+easylist.txt: 37507) -.sharegods.com -# ||shareasale.com^$third-party (easylistchina+easylist.txt: 37506) -.shareasale.com -# ||share-server.com^$third-party (easylistchina+easylist.txt: 37505) -.share-server.com -# ||shakamech.com^$third-party (easylistchina+easylist.txt: 37504) -.shakamech.com -# ||sexmoney.com^$third-party (easylistchina+easylist.txt: 37503) -.sexmoney.com -# ||sevendaystart.com^$third-party (easylistchina+easylist.txt: 37502) -.sevendaystart.com -# ||sevenads.net^$third-party (easylistchina+easylist.txt: 37501) -.sevenads.net -# ||sev4ifmxa.com^$third-party (easylistchina+easylist.txt: 37500) -.sev4ifmxa.com -# ||sethads.info^$third-party (easylistchina+easylist.txt: 37499) -.sethads.info -# ||serving-sys.com^$third-party (easylistchina+easylist.txt: 37498) -.serving-sys.com -# ||servemeads.com^$third-party (easylistchina+easylist.txt: 37497) -.servemeads.com -# ||servedbyopenx.com^$third-party (easylistchina+easylist.txt: 37496) -.servedbyopenx.com -# ||servedbyadbutler.com^$third-party (easylistchina+easylist.txt: 37495) -.servedbyadbutler.com -# ||servebom.com^$third-party (easylistchina+easylist.txt: 37494) -.servebom.com -# ||serve-sys.com^$third-party (easylistchina+easylist.txt: 37493) -.serve-sys.com -# ||servali.net^$third-party (easylistchina+easylist.txt: 37492) -.servali.net -# ||seriousfiles.com^$third-party (easylistchina+easylist.txt: 37491) -.seriousfiles.com -# ||serialbay.com^$third-party (easylistchina+easylist.txt: 37490) -.serialbay.com -# ||senzapudore.net^$third-party (easylistchina+easylist.txt: 37489) -.senzapudore.net -# ||sendptp.com^$third-party (easylistchina+easylist.txt: 37488) -.sendptp.com -# ||selsin.net^$third-party (easylistchina+easylist.txt: 37487) -.selsin.net -# ||sellhealth.com^$third-party (easylistchina+easylist.txt: 37486) -.sellhealth.com -# ||sekindo.com^$third-party (easylistchina+easylist.txt: 37485) -.sekindo.com -# ||seekads.net^$third-party (easylistchina+easylist.txt: 37484) -.seekads.net -# ||seductionprofits.com^$third-party (easylistchina+easylist.txt: 37483) -.seductionprofits.com -# ||sedoparking.com^$third-party (easylistchina+easylist.txt: 37482) -.sedoparking.com -# ||securitain.com^$third-party (easylistchina+easylist.txt: 37481) -.securitain.com -# ||securewebsiteaccess.com^$third-party (easylistchina+easylist.txt: 37480) -.securewebsiteaccess.com -# ||securesoft.info^$third-party (easylistchina+easylist.txt: 37479) -.securesoft.info -# ||secure-softwaremanager.com^$third-party (easylistchina+easylist.txt: 37478) -.secure-softwaremanager.com -# ||secondstreetmedia.com^$third-party (easylistchina+easylist.txt: 37477) -.secondstreetmedia.com -# ||seccoads.com^$third-party (easylistchina+easylist.txt: 37476) -.seccoads.com -# ||search123.uk.com^$third-party (easylistchina+easylist.txt: 37475) -.search123.uk.com -# ||scratchaffs.com^$third-party (easylistchina+easylist.txt: 37474) -.scratchaffs.com -# ||scootloor.com^$third-party (easylistchina+easylist.txt: 37473) -.scootloor.com -# ||sceno.ru^$third-party (easylistchina+easylist.txt: 37472) -.sceno.ru -# ||scanscout.com^$third-party (easylistchina+easylist.txt: 37471) -.scanscout.com -# ||scanmedios.com^$third-party (easylistchina+easylist.txt: 37470) -.scanmedios.com -# ||sbcpower.com^$third-party (easylistchina+easylist.txt: 37469) -.sbcpower.com -# ||sbaffiliates.com^$third-party (easylistchina+easylist.txt: 37468) -.sbaffiliates.com -# ||sba.about.co.kr^$third-party (easylistchina+easylist.txt: 37467) -.sba.about.co.kr -# ||saymedia.com^$third-party (easylistchina+easylist.txt: 37466) -.saymedia.com -# ||sayadcoltd.com^$third-party (easylistchina+easylist.txt: 37465) -.sayadcoltd.com -# ||saveads.org^$third-party (easylistchina+easylist.txt: 37464) -.saveads.org -# ||saveads.net^$third-party (easylistchina+easylist.txt: 37463) -.saveads.net -# ||satgreera.com^$third-party (easylistchina+easylist.txt: 37462) -.satgreera.com -# ||saple.net^$third-party (easylistchina+easylist.txt: 37461) -.saple.net -# ||salvador24.com^$third-party (easylistchina+easylist.txt: 37460) -.salvador24.com -# ||saltamendors.com^$third-party (easylistchina+easylist.txt: 37459) -.saltamendors.com -# ||salesnleads.com^$third-party (easylistchina+easylist.txt: 37458) -.salesnleads.com -# ||sakura-traffic.com^$third-party (easylistchina+easylist.txt: 37457) -.sakura-traffic.com -# ||safelistextreme.com^$third-party (easylistchina+easylist.txt: 37456) -.safelistextreme.com -# ||safecllc.com^$third-party (easylistchina+easylist.txt: 37455) -.safecllc.com -# ||safeadnetworkdata.net^$third-party (easylistchina+easylist.txt: 37454) -.safeadnetworkdata.net -# ||sa.entireweb.com^$third-party (easylistchina+easylist.txt: 37453) -.sa.entireweb.com -# ||s2d6.com^$third-party (easylistchina+easylist.txt: 37452) -.s2d6.com -# ||s.adroll.com^$third-party (easylistchina+easylist.txt: 37451) -.s.adroll.com -# ||ryminos.com^$third-party (easylistchina+easylist.txt: 37450) -.ryminos.com -# ||rwpads.com^$third-party (easylistchina+easylist.txt: 37449) -.rwpads.com -# ||runreproducerow.com^$third-party (easylistchina+easylist.txt: 37448) -.runreproducerow.com -# ||runadtag.com^$third-party (easylistchina+easylist.txt: 37447) -.runadtag.com -# ||rummyaffiliates.com^$third-party (easylistchina+easylist.txt: 37446) -.rummyaffiliates.com -# ||rubiconproject.com^$third-party (easylistchina+easylist.txt: 37445) -.rubiconproject.com -# ||rtbpops.com^$third-party (easylistchina+easylist.txt: 37444) -.rtbpops.com -# ||rtbpop.com^$third-party (easylistchina+easylist.txt: 37443) -.rtbpop.com -# ||rtbmedia.org^$third-party (easylistchina+easylist.txt: 37442) -.rtbmedia.org -# ||rtbidder.net^$third-party (easylistchina+easylist.txt: 37441) -.rtbidder.net -# ||roxyaffiliates.com^$third-party (easylistchina+easylist.txt: 37440) -.roxyaffiliates.com -# ||rovion.com^$third-party (easylistchina+easylist.txt: 37439) -.rovion.com -# ||rotorads.com^$third-party (easylistchina+easylist.txt: 37438) -.rotorads.com -# ||rotatingad.com^$third-party (easylistchina+easylist.txt: 37437) -.rotatingad.com -# ||rotaban.ru^$third-party (easylistchina+easylist.txt: 37436) -.rotaban.ru -# ||romance-net.com^$third-party (easylistchina+easylist.txt: 37435) -.romance-net.com -# ||roirocket.com^$third-party (easylistchina+easylist.txt: 37434) -.roirocket.com -# ||roicharger.com^$third-party (easylistchina+easylist.txt: 37433) -.roicharger.com -# ||rogueaffiliatesystem.com^$third-party (easylistchina+easylist.txt: 37432) -.rogueaffiliatesystem.com -# ||rocketier.net^$third-party (easylistchina+easylist.txt: 37431) -.rocketier.net -# ||robocat.me^$third-party (easylistchina+easylist.txt: 37430) -.robocat.me -# ||rnmd.net^$third-party (easylistchina+easylist.txt: 37429) -.rnmd.net -# ||rmxads.com^$third-party (easylistchina+easylist.txt: 37428) -.rmxads.com -# ||rixaka.com^$third-party (easylistchina+easylist.txt: 37427) -.rixaka.com -# ||riverbanksand.com^$third-party (easylistchina+easylist.txt: 37426) -.riverbanksand.com -# ||ripplead.com^$third-party (easylistchina+easylist.txt: 37425) -.ripplead.com -# ||ringtonepartner.com^$third-party (easylistchina+easylist.txt: 37424) -.ringtonepartner.com -# ||ringtonematcher.com^$third-party (easylistchina+easylist.txt: 37423) -.ringtonematcher.com -# ||richwebmedia.com^$third-party (easylistchina+easylist.txt: 37422) -.richwebmedia.com -# ||richmedia247.com^$third-party (easylistchina+easylist.txt: 37421) -.richmedia247.com -# ||ricead.com^$third-party (easylistchina+easylist.txt: 37420) -.ricead.com -# ||rhythmxchange.com^$third-party (easylistchina+easylist.txt: 37419) -.rhythmxchange.com -# ||rhown.com^$third-party (easylistchina+easylist.txt: 37418) -.rhown.com -# ||rfihub.net^$third-party (easylistchina+easylist.txt: 37417) -.rfihub.net -# ||rewardstyle.com^$third-party (easylistchina+easylist.txt: 37416) -.rewardstyle.com -# ||rewardsaffiliates.com^$third-party (easylistchina+easylist.txt: 37415) -.rewardsaffiliates.com -# ||rewardisement.com^$third-party (easylistchina+easylist.txt: 37414) -.rewardisement.com -# ||revsci.net^$third-party (easylistchina+easylist.txt: 37413) -.revsci.net -# ||revresponse.com^$third-party (easylistchina+easylist.txt: 37412) -.revresponse.com -# ||revresda.com^$third-party (easylistchina+easylist.txt: 37411) -.revresda.com -# ||revokinets.com^$third-party (easylistchina+easylist.txt: 37410) -.revokinets.com -# ||revmob.com^$third-party (easylistchina+easylist.txt: 37409) -.revmob.com -# ||revfusion.net^$third-party (easylistchina+easylist.txt: 37408) -.revfusion.net -# ||revenuemax.de^$third-party (easylistchina+easylist.txt: 37407) -.revenuemax.de -# ||revenuemantra.com^$third-party (easylistchina+easylist.txt: 37406) -.revenuemantra.com -# ||revenuehits.com^$third-party (easylistchina+easylist.txt: 37405) -.revenuehits.com -# ||revenuegiants.com^$third-party (easylistchina+easylist.txt: 37404) -.revenuegiants.com -# ||revenue.com^$third-party (easylistchina+easylist.txt: 37403) -.revenue.com -# ||revcontent.com^$third-party (easylistchina+easylist.txt: 37402) -.revcontent.com -# ||rev2pub.com^$third-party (easylistchina+easylist.txt: 37401) -.rev2pub.com -# ||reussissonsensemble.fr^$third-party (easylistchina+easylist.txt: 37400) -.reussissonsensemble.fr -# ||retargeter.com^$third-party (easylistchina+easylist.txt: 37399) -.retargeter.com -# ||resultsz.com^$third-party (easylistchina+easylist.txt: 37398) -.resultsz.com -# ||resultlinks.com^$third-party (easylistchina+easylist.txt: 37397) -.resultlinks.com -# ||respondhq.com^$third-party (easylistchina+easylist.txt: 37396) -.respondhq.com -# ||respond-adserver.cloudapp.net^$third-party (easylistchina+easylist.txt: 37395) -.respond-adserver.cloudapp.net -# ||respecific.net^$third-party (easylistchina+easylist.txt: 37394) -.respecific.net -# ||resideral.com^$third-party (easylistchina+easylist.txt: 37393) -.resideral.com -# ||repaynik.com^$third-party (easylistchina+easylist.txt: 37392) -.repaynik.com -# ||remiroyal.ro^$third-party (easylistchina+easylist.txt: 37391) -.remiroyal.ro -# ||remintrex.com^$third-party (easylistchina+easylist.txt: 37390) -.remintrex.com -# ||relytec.com^$third-party (easylistchina+easylist.txt: 37389) -.relytec.com -# ||relevanti.com^$third-party (easylistchina+easylist.txt: 37388) -.relevanti.com -# ||relestar.com^$third-party (easylistchina+easylist.txt: 37387) -.relestar.com -# ||relatedweboffers.com^$third-party (easylistchina+easylist.txt: 37386) -.relatedweboffers.com -# ||reklamz.com^$third-party (easylistchina+easylist.txt: 37385) -.reklamz.com -# ||regurgical.com^$third-party (easylistchina+easylist.txt: 37384) -.regurgical.com -# ||registry.cw.cm^$third-party (easylistchina+easylist.txt: 37383) -.registry.cw.cm -# ||regdfh.info^$third-party (easylistchina+easylist.txt: 37382) -.regdfh.info -# ||referback.com^$third-party (easylistchina+easylist.txt: 37381) -.referback.com -# ||refban.com^$third-party (easylistchina+easylist.txt: 37380) -.refban.com -# ||reelcentric.com^$third-party (easylistchina+easylist.txt: 37379) -.reelcentric.com -# ||reduxmediagroup.com^$third-party (easylistchina+easylist.txt: 37378) -.reduxmediagroup.com -# ||redpeepers.com^$third-party (easylistchina+easylist.txt: 37377) -.redpeepers.com -# ||redintelligence.net^$third-party (easylistchina+easylist.txt: 37376) -.redintelligence.net -# ||redcourtside.com^$third-party (easylistchina+easylist.txt: 37375) -.redcourtside.com -# ||recomendedsite.com^$third-party (easylistchina+easylist.txt: 37374) -.recomendedsite.com -# ||reate.info^$third-party (easylistchina+easylist.txt: 37373) -.reate.info -# ||realvu.net^$third-party (easylistchina+easylist.txt: 37372) -.realvu.net -# ||realsecuredredirect.com^$third-party (easylistchina+easylist.txt: 37371) -.realsecuredredirect.com -# ||realsecuredredir.com^$third-party (easylistchina+easylist.txt: 37370) -.realsecuredredir.com -# ||realmedia.com^$third-party (easylistchina+easylist.txt: 37369) -.realmedia.com -# ||realmatch.com^$third-party (easylistchina+easylist.txt: 37368) -.realmatch.com -# ||realclick.co.kr^$third-party (easylistchina+easylist.txt: 37367) -.realclick.co.kr -# ||readserver.net^$third-party (easylistchina+easylist.txt: 37366) -.readserver.net -# ||reactx.com^$third-party (easylistchina+easylist.txt: 37365) -.reactx.com -# ||reachmode.com^$third-party (easylistchina+easylist.txt: 37364) -.reachmode.com -# ||reachlocal.com^$third-party (easylistchina+easylist.txt: 37363) -.reachlocal.com -# ||reachjunction.com^$third-party (easylistchina+easylist.txt: 37362) -.reachjunction.com -# ||rddywd.com^$third-party (easylistchina+easylist.txt: 37361) -.rddywd.com -# ||rcurn.com^$third-party (easylistchina+easylist.txt: 37360) -.rcurn.com -# ||rcads.net^$third-party (easylistchina+easylist.txt: 37359) -.rcads.net -# ||rbnt.org^$third-party (easylistchina+easylist.txt: 37358) -.rbnt.org -# ||rawasy.com^$third-party (easylistchina+easylist.txt: 37357) -.rawasy.com -# ||rateaccept.net^$third-party (easylistchina+easylist.txt: 37356) -.rateaccept.net -# ||rapt.com^$third-party (easylistchina+easylist.txt: 37355) -.rapt.com -# ||rampanel.com^$third-party (easylistchina+easylist.txt: 37354) -.rampanel.com -# ||rainwealth.com^$third-party (easylistchina+easylist.txt: 37353) -.rainwealth.com -# ||rainbowtgx.com^$third-party (easylistchina+easylist.txt: 37352) -.rainbowtgx.com -# ||raiggy.com^$third-party (easylistchina+easylist.txt: 37351) -.raiggy.com -# ||ragapa.com^$third-party (easylistchina+easylist.txt: 37350) -.ragapa.com -# ||radiusmarketing.com^$third-party (easylistchina+easylist.txt: 37349) -.radiusmarketing.com -# ||radicalwealthformula.com^$third-party (easylistchina+easylist.txt: 37348) -.radicalwealthformula.com -# ||radeant.com^$third-party (easylistchina+easylist.txt: 37347) -.radeant.com -# ||rabilitan.com^$third-party (easylistchina+easylist.txt: 37346) -.rabilitan.com -# ||qwzmje9w.com^$third-party (easylistchina+easylist.txt: 37345) -.qwzmje9w.com -# ||qwobl.net^$third-party (easylistchina+easylist.txt: 37344) -.qwobl.net -# ||quinstreet.com^$third-party (easylistchina+easylist.txt: 37343) -.quinstreet.com -# ||quickcash500.com^$third-party (easylistchina+easylist.txt: 37342) -.quickcash500.com -# ||questus.com^$third-party (easylistchina+easylist.txt: 37341) -.questus.com -# ||questionmarket.com^$third-party (easylistchina+easylist.txt: 37340) -.questionmarket.com -# ||quensillo.com^$third-party (easylistchina+easylist.txt: 37339) -.quensillo.com -# ||quantumads.com^$third-party (easylistchina+easylist.txt: 37338) -.quantumads.com -# ||qualitypageviews.com^$third-party (easylistchina+easylist.txt: 37337) -.qualitypageviews.com -# ||qservz.com^$third-party (easylistchina+easylist.txt: 37336) -.qservz.com -# ||qnsr.com^$third-party (easylistchina+easylist.txt: 37335) -.qnsr.com -# ||qnrzmapdcc.com^$third-party (easylistchina+easylist.txt: 37334) -.qnrzmapdcc.com -# ||qksz.net^$third-party (easylistchina+easylist.txt: 37333) -.qksz.net -# ||qksrv.net^$third-party (easylistchina+easylist.txt: 37332) -.qksrv.net -# ||qdmil.com^$third-party (easylistchina+easylist.txt: 37331) -.qdmil.com -# ||qadservice.com^$third-party (easylistchina+easylist.txt: 37330) -.qadservice.com -# ||qadserve.com^$third-party (easylistchina+easylist.txt: 37329) -.qadserve.com -# ||q1xyxm89.com^$third-party (easylistchina+easylist.txt: 37328) -.q1xyxm89.com -# ||q1mediahydraplatform.com^$third-party (easylistchina+easylist.txt: 37327) -.q1mediahydraplatform.com -# ||q1media.com^$third-party (easylistchina+easylist.txt: 37326) -.q1media.com -# ||pzuwqncdai.com^$third-party (easylistchina+easylist.txt: 37325) -.pzuwqncdai.com -# ||pzaasocba.com^$third-party (easylistchina+easylist.txt: 37324) -.pzaasocba.com -# ||pxstda.com^$third-party (easylistchina+easylist.txt: 37323) -.pxstda.com -# ||pxl2015x1.com^$third-party (easylistchina+easylist.txt: 37322) -.pxl2015x1.com -# ||pwrads.net^$third-party (easylistchina+easylist.txt: 37321) -.pwrads.net -# ||push2check.com^$third-party (easylistchina+easylist.txt: 37320) -.push2check.com -# ||purpleflag.net^$third-party (easylistchina+easylist.txt: 37319) -.purpleflag.net -# ||pulsemgr.com^$third-party (easylistchina+easylist.txt: 37318) -.pulsemgr.com -# ||pulse360.com^$third-party (easylistchina+easylist.txt: 37317) -.pulse360.com -# ||puhtml.com^$third-party (easylistchina+easylist.txt: 37316) -.puhtml.com -# ||pubted.com^$third-party (easylistchina+easylist.txt: 37315) -.pubted.com -# ||pubserve.net^$third-party (easylistchina+easylist.txt: 37314) -.pubserve.net -# ||pubnation.com^$third-party (easylistchina+easylist.txt: 37313) -.pubnation.com -# ||pubmine.com^$third-party (easylistchina+easylist.txt: 37312) -.pubmine.com -# ||pubmatic.com^$third-party (easylistchina+easylist.txt: 37311) -.pubmatic.com -# ||publisheradnetwork.com^$third-party (easylistchina+easylist.txt: 37310) -.publisheradnetwork.com -# ||publisher.to^$third-party (easylistchina+easylist.txt: 37309) -.publisher.to -# ||publicsunrise.link^$third-party (easylistchina+easylist.txt: 37308) -.publicsunrise.link -# ||publicityclerks.com^$third-party (easylistchina+easylist.txt: 37307) -.publicityclerks.com -# ||publicidees.com^$third-party (easylistchina+easylist.txt: 37306) -.publicidees.com -# ||publicidad.net^$third-party (easylistchina+easylist.txt: 37305) -.publicidad.net -# ||pubgears.com^$third-party (easylistchina+easylist.txt: 37304) -.pubgears.com -# ||pub-fit.com^$third-party (easylistchina+easylist.txt: 37302) -.pub-fit.com -# ||ptp24.com^$third-party (easylistchina+easylist.txt: 37301) -.ptp24.com -# ||ptp22.com^$third-party (easylistchina+easylist.txt: 37300) -.ptp22.com -# ||ptp.lolco.net^$third-party (easylistchina+easylist.txt: 37299) -.ptp.lolco.net -# ||ptmzr.com^$third-party (easylistchina+easylist.txt: 37298) -.ptmzr.com -# ||psma02.com^$third-party (easylistchina+easylist.txt: 37297) -.psma02.com -# ||pseqcs05.com^$third-party (easylistchina+easylist.txt: 37296) -.pseqcs05.com -# ||psclicks.com^$third-party (easylistchina+easylist.txt: 37295) -.psclicks.com -# ||prre.ru^$third-party (easylistchina+easylist.txt: 37294) -.prre.ru -# ||proximic.com^$third-party (easylistchina+easylist.txt: 37293) -.proximic.com -# ||provider-direct.com^$third-party (easylistchina+easylist.txt: 37292) -.provider-direct.com -# ||protally.net^$third-party (easylistchina+easylist.txt: 37291) -.protally.net -# ||prosperent.com^$third-party (easylistchina+easylist.txt: 37290) -.prosperent.com -# ||proper.io^$third-party (easylistchina+easylist.txt: 37289) -.proper.io -# ||propelplus.com^$third-party (easylistchina+easylist.txt: 37288) -.propelplus.com -# ||propellerpops.com^$third-party (easylistchina+easylist.txt: 37287) -.propellerpops.com -# ||propellerads.com^$third-party (easylistchina+easylist.txt: 37286) -.propellerads.com -# ||promotiontrack.mobi^$third-party (easylistchina+easylist.txt: 37285) -.promotiontrack.mobi -# ||promotionoffer.mobi^$third-party (easylistchina+easylist.txt: 37284) -.promotionoffer.mobi -# ||promoted.com^$third-party (easylistchina+easylist.txt: 37283) -.promoted.com -# ||promobenef.com^$third-party (easylistchina+easylist.txt: 37282) -.promobenef.com -# ||promo-reklama.ru^$third-party (easylistchina+easylist.txt: 37281) -.promo-reklama.ru -# ||projectwonderful.com^$third-party (easylistchina+easylist.txt: 37280) -.projectwonderful.com -# ||programresolver.net^$third-party (easylistchina+easylist.txt: 37279) -.programresolver.net -# ||profitpeelers.com^$third-party (easylistchina+easylist.txt: 37278) -.profitpeelers.com -# ||proffigurufast.com^$third-party (easylistchina+easylist.txt: 37277) -.proffigurufast.com -# ||prod.untd.com^$third-party (easylistchina+easylist.txt: 37276) -.prod.untd.com -# ||probannerswap.com^$third-party (easylistchina+easylist.txt: 37275) -.probannerswap.com -# ||proadsdirect.com^$third-party (easylistchina+easylist.txt: 37274) -.proadsdirect.com -# ||pro-market.net^$third-party (easylistchina+easylist.txt: 37273) -.pro-market.net -# ||pro-advertising.com^$third-party (easylistchina+easylist.txt: 37272) -.pro-advertising.com -# ||pro-advert.de^$third-party (easylistchina+easylist.txt: 37271) -.pro-advert.de -# ||primaryads.com^$third-party (easylistchina+easylist.txt: 37270) -.primaryads.com -# ||prickac.com^$third-party (easylistchina+easylist.txt: 37269) -.prickac.com -# ||prf.hn^$third-party (easylistchina+easylist.txt: 37268) -.prf.hn -# ||prexista.com^$third-party (easylistchina+easylist.txt: 37267) -.prexista.com -# ||prestadsng.com^$third-party (easylistchina+easylist.txt: 37266) -.prestadsng.com -# ||predictad.com^$third-party (easylistchina+easylist.txt: 37265) -.predictad.com -# ||precisionclick.com^$third-party (easylistchina+easylist.txt: 37264) -.precisionclick.com -# ||prebid.org^$third-party (easylistchina+easylist.txt: 37263) -.prebid.org -# ||ppsearcher.ru^$third-party (easylistchina+easylist.txt: 37262) -.ppsearcher.ru -# ||ppcwebspy.com^$third-party (easylistchina+easylist.txt: 37261) -.ppcwebspy.com -# ||ppctrck.com^$third-party (easylistchina+easylist.txt: 37260) -.ppctrck.com -# ||ppclinking.com^$third-party (easylistchina+easylist.txt: 37259) -.ppclinking.com -# ||ppcindo.com^$third-party (easylistchina+easylist.txt: 37258) -.ppcindo.com -# ||powerlinks.com^$third-party (easylistchina+easylist.txt: 37257) -.powerlinks.com -# ||powerfulbusiness.net^$third-party (easylistchina+easylist.txt: 37256) -.powerfulbusiness.net -# ||poweradvertising.co.uk^$third-party (easylistchina+easylist.txt: 37255) -.poweradvertising.co.uk -# ||postrelease.com^$third-party (easylistchina+easylist.txt: 37254) -.postrelease.com -# ||posternel.com^$third-party (easylistchina+easylist.txt: 37253) -.posternel.com -# ||pornv.org^$third-party (easylistchina+easylist.txt: 37252) -.pornv.org -# ||popupvia.com^$third-party (easylistchina+easylist.txt: 37251) -.popupvia.com -# ||popuptraffic.com^$third-party (easylistchina+easylist.txt: 37250) -.popuptraffic.com -# ||popunderz.com^$third-party (easylistchina+easylist.txt: 37249) -.popunderz.com -# ||popundertotal.com^$third-party (easylistchina+easylist.txt: 37248) -.popundertotal.com -# ||popunder.ru^$third-party (easylistchina+easylist.txt: 37247) -.popunder.ru -# ||populisengage.com^$third-party (easylistchina+easylist.txt: 37246) -.populisengage.com -# ||populis.com^$third-party (easylistchina+easylist.txt: 37245) -.populis.com -# ||popularmedia.net^$third-party (easylistchina+easylist.txt: 37244) -.popularmedia.net -# ||popularitish.com^$third-party (easylistchina+easylist.txt: 37243) -.popularitish.com -# ||poptarts.me^$third-party (easylistchina+easylist.txt: 37242) -.poptarts.me -# ||popshow.info^$third-party (easylistchina+easylist.txt: 37241) -.popshow.info -# ||popsads.com^$third-party (easylistchina+easylist.txt: 37240) -.popsads.com -# ||poponclick.com^$third-party (easylistchina+easylist.txt: 37239) -.poponclick.com -# ||popmyads.com^$third-party (easylistchina+easylist.txt: 37238) -.popmyads.com -# ||popmyad.com^$third-party (easylistchina+easylist.txt: 37237) -.popmyad.com -# ||popmarker.com^$third-party (easylistchina+easylist.txt: 37236) -.popmarker.com -# ||popmajor.com^$third-party (easylistchina+easylist.txt: 37235) -.popmajor.com -# ||popearn.com^$third-party (easylistchina+easylist.txt: 37234) -.popearn.com -# ||popcpv.com^$third-party (easylistchina+easylist.txt: 37233) -.popcpv.com -# ||popcpm.com^$third-party (easylistchina+easylist.txt: 37232) -.popcpm.com -# ||popcash.net^$third-party (easylistchina+easylist.txt: 37231) -.popcash.net -# ||popadscdn.net^$third-party (easylistchina+easylist.txt: 37230) -.popadscdn.net -# ||popads.net^$third-party (easylistchina+easylist.txt: 37229) -.popads.net -# ||polydarth.com^$third-party (easylistchina+easylist.txt: 37228) -.polydarth.com -# ||polyad.net^$third-party (easylistchina+easylist.txt: 37227) -.polyad.net -# ||polmontventures.com^$third-party (easylistchina+easylist.txt: 37226) -.polmontventures.com -# ||polluxnetwork.com^$third-party (easylistchina+easylist.txt: 37225) -.polluxnetwork.com -# ||points2shop.com^$third-party (easylistchina+easylist.txt: 37224) -.points2shop.com -# ||pointroll.com^$third-party (easylistchina+easylist.txt: 37223) -.pointroll.com -# ||pointclicktrack.com^$third-party (easylistchina+easylist.txt: 37222) -.pointclicktrack.com -# ||pntrs.com^$third-party (easylistchina+easylist.txt: 37221) -.pntrs.com -# ||pntrac.com^$third-party (easylistchina+easylist.txt: 37220) -.pntrac.com -# ||pntra.com^$third-party (easylistchina+easylist.txt: 37219) -.pntra.com -# ||pnoss.com^$third-party (easylistchina+easylist.txt: 37218) -.pnoss.com -# ||pmsrvr.com^$third-party (easylistchina+easylist.txt: 37217) -.pmsrvr.com -# ||plxserve.com^$third-party (easylistchina+easylist.txt: 37216) -.plxserve.com -# ||plusfind.net^$third-party (easylistchina+easylist.txt: 37215) -.plusfind.net -# ||plugerr.com^$third-party (easylistchina+easylist.txt: 37214) -.plugerr.com -# ||plocap.com^$third-party (easylistchina+easylist.txt: 37213) -.plocap.com -# ||pllddc.com^$third-party (easylistchina+easylist.txt: 37212) -.pllddc.com -# ||plexop.net^$third-party (easylistchina+easylist.txt: 37211) -.plexop.net -# ||plenomedia.com^$third-party (easylistchina+easylist.txt: 37210) -.plenomedia.com -# ||pleeko.com^$third-party (easylistchina+easylist.txt: 37209) -.pleeko.com -# ||playukinternet.com^$third-party (easylistchina+easylist.txt: 37208) -.playukinternet.com -# ||playertraffic.com^$third-party (easylistchina+easylist.txt: 37207) -.playertraffic.com -# ||play24.us^$third-party (easylistchina+easylist.txt: 37206) -.play24.us -# ||platinumadvertisement.com^$third-party (easylistchina+easylist.txt: 37205) -.platinumadvertisement.com -# ||plannto.com^$third-party (easylistchina+easylist.txt: 37204) -.plannto.com -# ||pjtra.com^$third-party (easylistchina+easylist.txt: 37203) -.pjtra.com -# ||pjatr.com^$third-party (easylistchina+easylist.txt: 37202) -.pjatr.com -# ||pixxur.com^$third-party (easylistchina+easylist.txt: 37201) -.pixxur.com -# ||pixfuture.net^$third-party (easylistchina+easylist.txt: 37200) -.pixfuture.net -# ||pixeltrack66.com^$third-party (easylistchina+easylist.txt: 37199) -.pixeltrack66.com -# ||pixazza.com^$third-party (easylistchina+easylist.txt: 37198) -.pixazza.com -# ||pivotrunner.com^$third-party (easylistchina+easylist.txt: 37197) -.pivotrunner.com -# ||pivotalmedialabs.com^$third-party (easylistchina+easylist.txt: 37196) -.pivotalmedialabs.com -# ||piticlik.com^$third-party (easylistchina+easylist.txt: 37195) -.piticlik.com -# ||pioneeringad.com^$third-party (easylistchina+easylist.txt: 37194) -.pioneeringad.com -# ||pinballpublishernetwork.com^$third-party (easylistchina+easylist.txt: 37193) -.pinballpublishernetwork.com -# ||pictela.net^$third-party (easylistchina+easylist.txt: 37192) -.pictela.net -# ||picsti.com^$third-party (easylistchina+easylist.txt: 37191) -.picsti.com -# ||picbucks.com^$third-party (easylistchina+easylist.txt: 37190) -.picbucks.com -# ||picadmedia.com^$third-party (easylistchina+easylist.txt: 37189) -.picadmedia.com -# ||pianobuyerdeals.com^$third-party (easylistchina+easylist.txt: 37188) -.pianobuyerdeals.com -# ||phonespybubble.com^$third-party (easylistchina+easylist.txt: 37187) -.phonespybubble.com -# ||philosophere.com^$third-party (easylistchina+easylist.txt: 37186) -.philosophere.com -# ||philipstreehouse.info^$third-party (easylistchina+easylist.txt: 37185) -.philipstreehouse.info -# ||philbardre.com^$third-party (easylistchina+easylist.txt: 37184) -.philbardre.com -# ||pheedo.com^$third-party (easylistchina+easylist.txt: 37183) -.pheedo.com -# ||pharmcash.com^$third-party (easylistchina+easylist.txt: 37182) -.pharmcash.com -# ||pgssl.com^$third-party (easylistchina+easylist.txt: 37181) -.pgssl.com -# ||pgpartner.com^$third-party (easylistchina+easylist.txt: 37180) -.pgpartner.com -# ||pgmediaserve.com^$third-party (easylistchina+easylist.txt: 37179) -.pgmediaserve.com -# ||pezrphjl.com^$third-party (easylistchina+easylist.txt: 37178) -.pezrphjl.com -# ||persevered.com^$third-party (easylistchina+easylist.txt: 37177) -.persevered.com -# ||permutive.com^$third-party (easylistchina+easylist.txt: 37176) -.permutive.com -# ||performancingads.com^$third-party (easylistchina+easylist.txt: 37175) -.performancingads.com -# ||performancetrack.info^$third-party (easylistchina+easylist.txt: 37174) -.performancetrack.info -# ||performanceadvertising.mobi^$third-party (easylistchina+easylist.txt: 37173) -.performanceadvertising.mobi -# ||performance-based.com^$third-party (easylistchina+easylist.txt: 37172) -.performance-based.com -# ||perfoormapp.info^$third-party (easylistchina+easylist.txt: 37171) -.perfoormapp.info -# ||perfcreatives.com^$third-party (easylistchina+easylist.txt: 37170) -.perfcreatives.com -# ||perfb.com^$third-party (easylistchina+easylist.txt: 37169) -.perfb.com -# ||percularity.com^$third-party (easylistchina+easylist.txt: 37168) -.percularity.com -# ||pepperjamnetwork.com^$third-party (easylistchina+easylist.txt: 37167) -.pepperjamnetwork.com -# ||penuma.com^$third-party (easylistchina+easylist.txt: 37166) -.penuma.com -# ||peer39.net^$third-party (easylistchina+easylist.txt: 37165) -.peer39.net -# ||peemee.com^$third-party (easylistchina+easylist.txt: 37164) -.peemee.com -# ||peelawaymaker.com^$third-party (easylistchina+easylist.txt: 37163) -.peelawaymaker.com -# ||peakclick.com^$third-party (easylistchina+easylist.txt: 37162) -.peakclick.com -# ||pe2k2dty.com^$third-party (easylistchina+easylist.txt: 37161) -.pe2k2dty.com -# ||pc-ads.com^$third-party (easylistchina+easylist.txt: 37160) -.pc-ads.com -# ||payperpost.com^$third-party (easylistchina+easylist.txt: 37159) -.payperpost.com -# ||paydotcom.com^$third-party (easylistchina+easylist.txt: 37158) -.paydotcom.com -# ||pay-click.ru^$third-party (easylistchina+easylist.txt: 37157) -.pay-click.ru -# ||pautaspr.com^$third-party (easylistchina+easylist.txt: 37156) -.pautaspr.com -# ||passionfruitads.com^$third-party (easylistchina+easylist.txt: 37155) -.passionfruitads.com -# ||pas-rahav.com^$third-party (easylistchina+easylist.txt: 37154) -.pas-rahav.com -# ||partypoker.com^$third-party (easylistchina+easylist.txt: 37153) -.partypoker.com -# ||partypartners.com^$third-party (easylistchina+easylist.txt: 37152) -.partypartners.com -# ||partycasino.com^$third-party (easylistchina+easylist.txt: 37151) -.partycasino.com -# ||partnermax.de^$third-party (easylistchina+easylist.txt: 37150) -.partnermax.de -# ||partnerearning.com^$third-party (easylistchina+easylist.txt: 37149) -.partnerearning.com -# ||partner.googleadservices.com^$third-party (easylistchina+easylist.txt: 37147) -.partner.googleadservices.com -# ||partner-ads.com^$third-party (easylistchina+easylist.txt: 37146) -.partner-ads.com -# ||paradocs.ru^$third-party (easylistchina+easylist.txt: 37145) -.paradocs.ru -# ||paperg.com^$third-party (easylistchina+easylist.txt: 37144) -.paperg.com -# ||pantherads.com^$third-party (easylistchina+easylist.txt: 37143) -.pantherads.com -# ||panachetech.com^$third-party (easylistchina+easylist.txt: 37142) -.panachetech.com -# ||pakbanners.com^$third-party (easylistchina+easylist.txt: 37141) -.pakbanners.com -# ||paidsearchexperts.com^$third-party (easylistchina+easylist.txt: 37140) -.paidsearchexperts.com -# ||paidonresults.net^$third-party (easylistchina+easylist.txt: 37139) -.paidonresults.net -# ||paid4ad.de^$third-party (easylistchina+easylist.txt: 37138) -.paid4ad.de -# ||pagesinxt.com^$third-party (easylistchina+easylist.txt: 37137) -.pagesinxt.com -# ||pagefair.net^$third-party (easylistchina+easylist.txt: 37136) -.pagefair.net -# ||padstm.com^$third-party (easylistchina+easylist.txt: 37135) -.padstm.com -# ||padsdelivery.com^$third-party (easylistchina+easylist.txt: 37134) -.padsdelivery.com -# ||paads.dk^$third-party (easylistchina+easylist.txt: 37133) -.paads.dk -# ||p2ads.com^$third-party (easylistchina+easylist.txt: 37132) -.p2ads.com -# ||p-digital-server.com^$third-party (easylistchina+easylist.txt: 37131) -.p-digital-server.com -# ||p-comme-performance.com^$third-party (easylistchina+easylist.txt: 37130) -.p-comme-performance.com -# ||p-advg.com^$third-party (easylistchina+easylist.txt: 37129) -.p-advg.com -# ||ozonemedia.com^$third-party (easylistchina+easylist.txt: 37128) -.ozonemedia.com -# ||ozertesa.com^$third-party (easylistchina+easylist.txt: 37127) -.ozertesa.com -# ||oxybe.com^$third-party (easylistchina+easylist.txt: 37126) -.oxybe.com -# ||oxtracking.com^$third-party (easylistchina+easylist.txt: 37125) -.oxtracking.com -# ||oxsng.com^$third-party (easylistchina+easylist.txt: 37124) -.oxsng.com -# ||oxado.com^$third-party (easylistchina+easylist.txt: 37123) -.oxado.com -# ||ovtopli.ru^$third-party (easylistchina+easylist.txt: 37122) -.ovtopli.ru -# ||overturs.com^$third-party (easylistchina+easylist.txt: 37121) -.overturs.com -# ||overture.com^$third-party (easylistchina+easylist.txt: 37120) -.overture.com -# ||overhaps.com^$third-party (easylistchina+easylist.txt: 37119) -.overhaps.com -# ||oveld.com^$third-party (easylistchina+easylist.txt: 37118) -.oveld.com -# ||ov8pc.tv^$third-party (easylistchina+easylist.txt: 37117) -.ov8pc.tv -# ||ourunlimitedleads.com^$third-party (easylistchina+easylist.txt: 37116) -.ourunlimitedleads.com -# ||othersonline.com^$third-party (easylistchina+easylist.txt: 37115) -.othersonline.com -# ||ospreymedialp.com^$third-party (easylistchina+easylist.txt: 37114) -.ospreymedialp.com -# ||oskale.ru^$third-party (easylistchina+easylist.txt: 37113) -.oskale.ru -# ||ordingly.com^$third-party (easylistchina+easylist.txt: 37112) -.ordingly.com -# ||orbengine.com^$third-party (easylistchina+easylist.txt: 37111) -.orbengine.com -# ||orarala.com^$third-party (easylistchina+easylist.txt: 37110) -.orarala.com -# ||orangeads.fr^$third-party (easylistchina+easylist.txt: 37109) -.orangeads.fr -# ||optinmonster.com^$third-party (easylistchina+easylist.txt: 37108) -.optinmonster.com -# ||optinemailpro.com^$third-party (easylistchina+easylist.txt: 37107) -.optinemailpro.com -# ||optimizeadvert.biz^$third-party (easylistchina+easylist.txt: 37106) -.optimizeadvert.biz -# ||optimatic.com^$third-party (easylistchina+easylist.txt: 37105) -.optimatic.com -# ||optimalroi.info^$third-party (easylistchina+easylist.txt: 37104) -.optimalroi.info -# ||optiad.net^$third-party (easylistchina+easylist.txt: 37103) -.optiad.net -# ||opteama.com^$third-party (easylistchina+easylist.txt: 37102) -.opteama.com -# ||opt-n.net^$third-party (easylistchina+easylist.txt: 37101) -.opt-n.net -# ||opt-intelligence.com^$third-party (easylistchina+easylist.txt: 37100) -.opt-intelligence.com -# ||operatical.com^$third-party (easylistchina+easylist.txt: 37099) -.operatical.com -# ||openxmarket.asia^$third-party (easylistchina+easylist.txt: 37098) -.openxmarket.asia -# ||openxenterprise.com^$third-party (easylistchina+easylist.txt: 37097) -.openxenterprise.com -# ||openxadexchange.com^$third-party (easylistchina+easylist.txt: 37096) -.openxadexchange.com -# ||opensourceadvertisementnetwork.info^$third-party (easylistchina+easylist.txt: 37095) -.opensourceadvertisementnetwork.info -# ||openetray.com^$third-party (easylistchina+easylist.txt: 37094) -.openetray.com -# ||openbook.net^$third-party (easylistchina+easylist.txt: 37093) -.openbook.net -# ||opap.co.kr^$third-party (easylistchina+easylist.txt: 37092) -.opap.co.kr -# ||oos4l.com^$third-party (easylistchina+easylist.txt: 37091) -.oos4l.com -# ||oofte.com^$third-party (easylistchina+easylist.txt: 37090) -.oofte.com -# ||ooecyaauiz.com^$third-party (easylistchina+easylist.txt: 37089) -.ooecyaauiz.com -# ||oodode.com^$third-party (easylistchina+easylist.txt: 37088) -.oodode.com -# ||onvertise.com^$third-party (easylistchina+easylist.txt: 37087) -.onvertise.com -# ||onsitemarketplace.net^$third-party (easylistchina+easylist.txt: 37086) -.onsitemarketplace.net -# ||onscroll.com^$third-party (easylistchina+easylist.txt: 37085) -.onscroll.com -# ||onrampadvertising.com^$third-party (easylistchina+easylist.txt: 37084) -.onrampadvertising.com -# ||onlyalad.net^$third-party (easylistchina+easylist.txt: 37083) -.onlyalad.net -# ||onlinedl.info^$third-party (easylistchina+easylist.txt: 37082) -.onlinedl.info -# ||onlineadtracker.co.uk^$third-party (easylistchina+easylist.txt: 37081) -.onlineadtracker.co.uk -# ||online-media24.de^$third-party (easylistchina+easylist.txt: 37080) -.online-media24.de -# ||online-adnetwork.com^$third-party (easylistchina+easylist.txt: 37079) -.online-adnetwork.com -# ||onespot.com^$third-party (easylistchina+easylist.txt: 37078) -.onespot.com -# ||onenetworkdirect.net^$third-party (easylistchina+easylist.txt: 37077) -.onenetworkdirect.net -# ||onenetworkdirect.com^$third-party (easylistchina+easylist.txt: 37076) -.onenetworkdirect.com -# ||onedmp.com^$third-party (easylistchina+easylist.txt: 37075) -.onedmp.com -# ||onclickads.net^$third-party (easylistchina+easylist.txt: 37074) -.onclickads.net -# ||onads.com^$third-party (easylistchina+easylist.txt: 37073) -.onads.com -# ||onad.eu^$third-party (easylistchina+easylist.txt: 37072) -.onad.eu -# ||omni-ads.com^$third-party (easylistchina+easylist.txt: 37071) -.omni-ads.com -# ||omg2.com^$third-party (easylistchina+easylist.txt: 37070) -.omg2.com -# ||omclick.com^$third-party (easylistchina+easylist.txt: 37069) -.omclick.com -# ||oldtiger.net^$third-party (easylistchina+easylist.txt: 37068) -.oldtiger.net -# ||oileddaintiessunset.info^$third-party (easylistchina+easylist.txt: 37067) -.oileddaintiessunset.info -# ||ohmcasting.com^$third-party (easylistchina+easylist.txt: 37066) -.ohmcasting.com -# ||oggifinogi.com^$third-party (easylistchina+easylist.txt: 37065) -.oggifinogi.com -# ||ofino.ru^$third-party (easylistchina+easylist.txt: 37064) -.ofino.ru -# ||offersquared.com^$third-party (easylistchina+easylist.txt: 37063) -.offersquared.com -# ||offerserve.com^$third-party (easylistchina+easylist.txt: 37062) -.offerserve.com -# ||offerpalads.com^$third-party (easylistchina+easylist.txt: 37061) -.offerpalads.com -# ||offerforge.com^$third-party (easylistchina+easylist.txt: 37060) -.offerforge.com -# ||offeradvertising.biz^$third-party (easylistchina+easylist.txt: 37059) -.offeradvertising.biz -# ||oehposan.com^$third-party (easylistchina+easylist.txt: 37058) -.oehposan.com -# ||oclus.com^$third-party (easylistchina+easylist.txt: 37057) -.oclus.com -# ||oclsasrv.com^$third-party (easylistchina+easylist.txt: 37056) -.oclsasrv.com -# ||oclasrv.com^$third-party (easylistchina+easylist.txt: 37055) -.oclasrv.com -# ||oceanwebcraft.com^$third-party (easylistchina+easylist.txt: 37054) -.oceanwebcraft.com -# ||objectservers.com^$third-party (easylistchina+easylist.txt: 37053) -.objectservers.com -# ||obibanners.com^$third-party (easylistchina+easylist.txt: 37051) -.obibanners.com -# ||obeus.com^$third-party (easylistchina+easylist.txt: 37050) -.obeus.com -# ||obesw.com^$third-party (easylistchina+easylist.txt: 37049) -.obesw.com -# ||oainternetservices.com^$third-party (easylistchina+easylist.txt: 37048) -.oainternetservices.com -# ||oads.co^$third-party (easylistchina+easylist.txt: 37047) -.oads.co -# ||nzphoenix.com^$third-party (easylistchina+easylist.txt: 37046) -.nzphoenix.com -# ||nzads.net.nz^$third-party (easylistchina+easylist.txt: 37045) -.nzads.net.nz -# ||nyadmcncserve-05y06a.com^$third-party (easylistchina+easylist.txt: 37044) -.nyadmcncserve-05y06a.com -# ||nxtck.com^$third-party (easylistchina+easylist.txt: 37043) -.nxtck.com -# ||nwfhalifax.com^$third-party (easylistchina+easylist.txt: 37042) -.nwfhalifax.com -# ||nvero.net^$third-party (easylistchina+easylist.txt: 37041) -.nvero.net -# ||nvadn.com^$third-party (easylistchina+easylist.txt: 37040) -.nvadn.com -# ||nuseek.com^$third-party (easylistchina+easylist.txt: 37039) -.nuseek.com -# ||numbers.md^$third-party (easylistchina+easylist.txt: 37038) -.numbers.md -# ||numberium.com^$third-party (easylistchina+easylist.txt: 37037) -.numberium.com -# ||ntv.io^$third-party (easylistchina+easylist.txt: 37036) -.ntv.io -# ||ntent.com^$third-party (easylistchina+easylist.txt: 37035) -.ntent.com -# ||nspmotion.com^$third-party (easylistchina+easylist.txt: 37033) -.nspmotion.com -# ||nsmartad.com^$third-party (easylistchina+easylist.txt: 37032) -.nsmartad.com -# ||nsdsvc.com^$third-party (easylistchina+easylist.txt: 37031) -.nsdsvc.com -# ||nscontext.com^$third-party (easylistchina+easylist.txt: 37030) -.nscontext.com -# ||nrnma.com^$third-party (easylistchina+easylist.txt: 37029) -.nrnma.com -# ||nquchhfyex.com^$third-party (easylistchina+easylist.txt: 37028) -.nquchhfyex.com -# ||npvos.com^$third-party (easylistchina+easylist.txt: 37027) -.npvos.com -# ||nplexmedia.com^$third-party (easylistchina+easylist.txt: 37026) -.nplexmedia.com -# ||nowspots.com^$third-party (easylistchina+easylist.txt: 37025) -.nowspots.com -# ||nowlooking.net^$third-party (easylistchina+easylist.txt: 37024) -.nowlooking.net -# ||novarevenue.com^$third-party (easylistchina+easylist.txt: 37023) -.novarevenue.com -# ||northmay.com^$third-party (easylistchina+easylist.txt: 37022) -.northmay.com -# ||normkela.com^$third-party (easylistchina+easylist.txt: 37021) -.normkela.com -# ||noretia.com^$third-party (easylistchina+easylist.txt: 37020) -.noretia.com -# ||nonstoppartner.de^$third-party (easylistchina+easylist.txt: 37019) -.nonstoppartner.de -# ||nobsetfinvestor.com^$third-party (easylistchina+easylist.txt: 37018) -.nobsetfinvestor.com -# ||nobleppc.com^$third-party (easylistchina+easylist.txt: 37017) -.nobleppc.com -# ||nmwrdr.net^$third-party (easylistchina+easylist.txt: 37016) -.nmwrdr.net -# ||nmcdn.us^$third-party (easylistchina+easylist.txt: 37015) -.nmcdn.us -# ||nkredir.com^$third-party (easylistchina+easylist.txt: 37014) -.nkredir.com -# ||nighter.club^$third-party (easylistchina+easylist.txt: 37013) -.nighter.club -# ||nicheads.com^$third-party (easylistchina+easylist.txt: 37012) -.nicheads.com -# ||nicheadgenerator.com^$third-party (easylistchina+easylist.txt: 37011) -.nicheadgenerator.com -# ||ngecity.com^$third-party (easylistchina+easylist.txt: 37010) -.ngecity.com -# ||nextmobilecash.com^$third-party (easylistchina+easylist.txt: 37009) -.nextmobilecash.com -# ||nexage.com^$third-party (easylistchina+easylist.txt: 37008) -.nexage.com -# ||nexac.com^$third-party (easylistchina+easylist.txt: 37007) -.nexac.com -# ||newtention.net^$third-party (easylistchina+easylist.txt: 37006) -.newtention.net -# ||newstogram.com^$third-party (easylistchina+easylist.txt: 37005) -.newstogram.com -# ||newsnet.in.ua^$third-party (easylistchina+easylist.txt: 37004) -.newsnet.in.ua -# ||newsadstream.com^$third-party (easylistchina+easylist.txt: 37003) -.newsadstream.com -# ||newideasdaily.com^$third-party (easylistchina+easylist.txt: 37002) -.newideasdaily.com -# ||newgentraffic.com^$third-party (easylistchina+easylist.txt: 37001) -.newgentraffic.com -# ||newdosug.eu^$third-party (easylistchina+easylist.txt: 37000) -.newdosug.eu -# ||neudesicmediagroup.com^$third-party (easylistchina+easylist.txt: 36999) -.neudesicmediagroup.com -# ||networldmedia.net^$third-party (easylistchina+easylist.txt: 36998) -.networldmedia.net -# ||networld.hk^$third-party (easylistchina+easylist.txt: 36997) -.networld.hk -# ||networkxi.com^$third-party (easylistchina+easylist.txt: 36996) -.networkxi.com -# ||networkplay.in^$third-party (easylistchina+easylist.txt: 36995) -.networkplay.in -# ||netsolads.com^$third-party (easylistchina+easylist.txt: 36994) -.netsolads.com -# ||netshelter.net^$third-party (easylistchina+easylist.txt: 36993) -.netshelter.net -# ||netseer.com^$third-party (easylistchina+easylist.txt: 36992) -.netseer.com -# ||netpondads.com^$third-party (easylistchina+easylist.txt: 36991) -.netpondads.com -# ||netloader.cc^$third-party (easylistchina+easylist.txt: 36990) -.netloader.cc -# ||netliker.com^$third-party (easylistchina+easylist.txt: 36989) -.netliker.com -# ||netflixalternative.net^$third-party (easylistchina+easylist.txt: 36988) -.netflixalternative.net -# ||netavenir.com^$third-party (easylistchina+easylist.txt: 36987) -.netavenir.com -# ||net3media.com^$third-party (easylistchina+easylist.txt: 36985) -.net3media.com -# ||net-ad-vantage.com^$third-party (easylistchina+easylist.txt: 36984) -.net-ad-vantage.com -# ||neoffic.com^$third-party (easylistchina+easylist.txt: 36983) -.neoffic.com -# ||neodatagroup.com^$third-party (easylistchina+easylist.txt: 36982) -.neodatagroup.com -# ||neobux.com^$third-party (easylistchina+easylist.txt: 36981) -.neobux.com -# ||negolist.com^$third-party (easylistchina+easylist.txt: 36980) -.negolist.com -# ||neblotech.com^$third-party (easylistchina+easylist.txt: 36979) -.neblotech.com -# ||ncrjsserver.com^$third-party (easylistchina+easylist.txt: 36978) -.ncrjsserver.com -# ||nbstatic.com^$third-party (easylistchina+easylist.txt: 36977) -.nbstatic.com -# ||nbjmp.com^$third-party (easylistchina+easylist.txt: 36976) -.nbjmp.com -# ||nativeads.com^$third-party (easylistchina+easylist.txt: 36975) -.nativeads.com -# ||nativead.co^$third-party (easylistchina+easylist.txt: 36974) -.nativead.co -# ||native-adserver.com^$third-party (easylistchina+easylist.txt: 36973) -.native-adserver.com -# ||nanigans.com^$third-party (easylistchina+easylist.txt: 36972) -.nanigans.com -# ||nagrande.com^$third-party (easylistchina+easylist.txt: 36971) -.nagrande.com -# ||nabbr.com^$third-party (easylistchina+easylist.txt: 36970) -.nabbr.com -# ||n4403ad.doubleclick.net^$third-party (easylistchina+easylist.txt: 36969) -.n4403ad.doubleclick.net -# ||n388hkxg.com^$third-party (easylistchina+easylist.txt: 36968) -.n388hkxg.com -# ||mz28ismn.com^$third-party (easylistchina+easylist.txt: 36967) -.mz28ismn.com -# ||mywidget.mobi^$third-party (easylistchina+easylist.txt: 36966) -.mywidget.mobi -# ||myvads.com^$third-party (easylistchina+easylist.txt: 36965) -.myvads.com -# ||myuniques.ru^$third-party (easylistchina+easylist.txt: 36964) -.myuniques.ru -# ||mythings.com^$third-party (easylistchina+easylist.txt: 36963) -.mythings.com -# ||mysafeurl.com^$third-party (easylistchina+easylist.txt: 36962) -.mysafeurl.com -# ||myplayerhd.net^$third-party (easylistchina+easylist.txt: 36961) -.myplayerhd.net -# ||mynewcarquote.us^$third-party (easylistchina+easylist.txt: 36960) -.mynewcarquote.us -# ||mylinkbox.com^$third-party (easylistchina+easylist.txt: 36959) -.mylinkbox.com -# ||myinfotopia.com^$third-party (easylistchina+easylist.txt: 36958) -.myinfotopia.com -# ||myemailbox.info^$third-party (easylistchina+easylist.txt: 36957) -.myemailbox.info -# ||mydreamads.com^$third-party (easylistchina+easylist.txt: 36956) -.mydreamads.com -# ||mycooliframe.net^$third-party (easylistchina+easylist.txt: 36955) -.mycooliframe.net -# ||myclickbankads.com^$third-party (easylistchina+easylist.txt: 36954) -.myclickbankads.com -# ||myaffiliates.com^$third-party (easylistchina+easylist.txt: 36953) -.myaffiliates.com -# ||my-layer.net^$third-party (easylistchina+easylist.txt: 36952) -.my-layer.net -# ||mxtads.com^$third-party (easylistchina+easylist.txt: 36951) -.mxtads.com -# ||mutary.com^$third-party (easylistchina+easylist.txt: 36950) -.mutary.com -# ||musicnote.info^$third-party (easylistchina+easylist.txt: 36949) -.musicnote.info -# ||music-desktop.com^$third-party (easylistchina+easylist.txt: 36948) -.music-desktop.com -# ||munically.com^$third-party (easylistchina+easylist.txt: 36947) -.munically.com -# ||multiview.com^$third-party (easylistchina+easylist.txt: 36946) -.multiview.com -# ||multiadserv.com^$third-party (easylistchina+easylist.txt: 36945) -.multiadserv.com -# ||mujap.com^$third-party (easylistchina+easylist.txt: 36944) -.mujap.com -# ||mtrcss.com^$third-party (easylistchina+easylist.txt: 36943) -.mtrcss.com -# ||mtagmonetizationb.com^$third-party (easylistchina+easylist.txt: 36942) -.mtagmonetizationb.com -# ||mtagmonetizationa.com^$third-party (easylistchina+easylist.txt: 36941) -.mtagmonetizationa.com -# ||msypr.com^$third-party (easylistchina+easylist.txt: 36940) -.msypr.com -# ||msads.net^$third-party (easylistchina+easylist.txt: 36939) -.msads.net -# ||mprezchc.com^$third-party (easylistchina+easylist.txt: 36938) -.mprezchc.com -# ||mpression.net^$third-party (easylistchina+easylist.txt: 36937) -.mpression.net -# ||mpnrs.com^$third-party (easylistchina+easylist.txt: 36936) -.mpnrs.com -# ||movad.net^$third-party (easylistchina+easylist.txt: 36935) -.movad.net -# ||mottnow.com^$third-party (easylistchina+easylist.txt: 36934) -.mottnow.com -# ||moselats.com^$third-party (easylistchina+easylist.txt: 36933) -.moselats.com -# ||morgdm.ru^$third-party (easylistchina+easylist.txt: 36932) -.morgdm.ru -# ||moreplayerz.com^$third-party (easylistchina+easylist.txt: 36931) -.moreplayerz.com -# ||moregamers.com^$third-party (easylistchina+easylist.txt: 36930) -.moregamers.com -# ||mooxar.com^$third-party (easylistchina+easylist.txt: 36929) -.mooxar.com -# ||mootermedia.com^$third-party (easylistchina+easylist.txt: 36928) -.mootermedia.com -# ||mookie1.com^$third-party (easylistchina+easylist.txt: 36927) -.mookie1.com -# ||monsoonads.com^$third-party (easylistchina+easylist.txt: 36926) -.monsoonads.com -# ||monkeybroker.net^$third-party (easylistchina+easylist.txt: 36925) -.monkeybroker.net -# ||moneywhisper.com^$third-party (easylistchina+easylist.txt: 36924) -.moneywhisper.com -# ||moneycosmos.com^$third-party (easylistchina+easylist.txt: 36923) -.moneycosmos.com -# ||money4ads.com^$third-party (easylistchina+easylist.txt: 36922) -.money4ads.com -# ||money-cpm.fr^$third-party (easylistchina+easylist.txt: 36921) -.money-cpm.fr -# ||mokonocdn.com^$third-party (easylistchina+easylist.txt: 36920) -.mokonocdn.com -# ||mojoaffiliates.com^$third-party (easylistchina+easylist.txt: 36919) -.mojoaffiliates.com -# ||mogointeractive.com^$third-party (easylistchina+easylist.txt: 36918) -.mogointeractive.com -# ||moffsets.com^$third-party (easylistchina+easylist.txt: 36917) -.moffsets.com -# ||modelegating.com^$third-party (easylistchina+easylist.txt: 36916) -.modelegating.com -# ||mobytrks.com^$third-party (easylistchina+easylist.txt: 36915) -.mobytrks.com -# ||mobtrks.com^$third-party (easylistchina+easylist.txt: 36914) -.mobtrks.com -# ||mobstrks.com^$third-party (easylistchina+easylist.txt: 36913) -.mobstrks.com -# ||moborobot.com^$third-party (easylistchina+easylist.txt: 36912) -.moborobot.com -# ||mobiyield.com^$third-party (easylistchina+easylist.txt: 36911) -.mobiyield.com -# ||mobitracker.info^$third-party (easylistchina+easylist.txt: 36910) -.mobitracker.info -# ||mobisla.com^$third-party (easylistchina+easylist.txt: 36909) -.mobisla.com -# ||mobiright.com^$third-party (easylistchina+easylist.txt: 36908) -.mobiright.com -# ||mobile-10.com^$third-party (easylistchina+easylist.txt: 36907) -.mobile-10.com -# ||mobikano.com^$third-party (easylistchina+easylist.txt: 36906) -.mobikano.com -# ||mobifobi.com^$third-party (easylistchina+easylist.txt: 36905) -.mobifobi.com -# ||mobicont.com^$third-party (easylistchina+easylist.txt: 36904) -.mobicont.com -# ||mobfox.com^$third-party (easylistchina+easylist.txt: 36903) -.mobfox.com -# ||mobday.com^$third-party (easylistchina+easylist.txt: 36902) -.mobday.com -# ||mobatory.com^$third-party (easylistchina+easylist.txt: 36901) -.mobatory.com -# ||mobatori.com^$third-party (easylistchina+easylist.txt: 36900) -.mobatori.com -# ||moatads.com^$third-party (easylistchina+easylist.txt: 36899) -.moatads.com -# ||mmotraffic.com^$third-party (easylistchina+easylist.txt: 36898) -.mmotraffic.com -# ||mmoptional.com^$third-party (easylistchina+easylist.txt: 36897) -.mmoptional.com -# ||mmondi.com^$third-party (easylistchina+easylist.txt: 36896) -.mmondi.com -# ||mmngte.net^$third-party (easylistchina+easylist.txt: 36895) -.mmngte.net -# ||mmismm.com^$third-party (easylistchina+easylist.txt: 36894) -.mmismm.com -# ||mmgads.com^$third-party (easylistchina+easylist.txt: 36893) -.mmgads.com -# ||mmadsgadget.com^$third-party (easylistchina+easylist.txt: 36892) -.mmadsgadget.com -# ||mlnadvertising.com^$third-party (easylistchina+easylist.txt: 36891) -.mlnadvertising.com -# ||mktseek.com^$third-party (easylistchina+easylist.txt: 36890) -.mktseek.com -# ||mixpo.com^$third-party (easylistchina+easylist.txt: 36889) -.mixpo.com -# ||mixmarket.biz^$third-party (easylistchina+easylist.txt: 36888) -.mixmarket.biz -# ||miva.com^$third-party (easylistchina+easylist.txt: 36887) -.miva.com -# ||mistands.com^$third-party (easylistchina+easylist.txt: 36886) -.mistands.com -# ||mirrorpersonalinjury.co.uk^$third-party (easylistchina+easylist.txt: 36885) -.mirrorpersonalinjury.co.uk -# ||mirago.com^$third-party (easylistchina+easylist.txt: 36884) -.mirago.com -# ||minimumpay.info^$third-party (easylistchina+easylist.txt: 36883) -.minimumpay.info -# ||mindlytix.com^$third-party (easylistchina+easylist.txt: 36882) -.mindlytix.com -# ||milabra.com^$third-party (easylistchina+easylist.txt: 36881) -.milabra.com -# ||microsoftaffiliates.net^$third-party (easylistchina+easylist.txt: 36880) -.microsoftaffiliates.net -# ||microadinc.com^$third-party (easylistchina+easylist.txt: 36879) -.microadinc.com -# ||microad.jp^$third-party (easylistchina+easylist.txt: 36878) -.microad.jp -# ||mibebu.com^$third-party (easylistchina+easylist.txt: 36877) -.mibebu.com -# ||mgplatform.com^$third-party (easylistchina+easylist.txt: 36876) -.mgplatform.com -# ||mgcashgate.com^$third-party (easylistchina+easylist.txt: 36874) -.mgcashgate.com -# ||mgcash.com^$third-party (easylistchina+easylist.txt: 36873) -.mgcash.com -# ||mezimedia.com^$third-party (easylistchina+easylist.txt: 36872) -.mezimedia.com -# ||meya41w7.com^$third-party (easylistchina+easylist.txt: 36871) -.meya41w7.com -# ||meviodisplayads.com^$third-party (easylistchina+easylist.txt: 36870) -.meviodisplayads.com -# ||metrics.io^$third-party (easylistchina+easylist.txt: 36869) -.metrics.io -# ||metavertizer.com^$third-party (easylistchina+easylist.txt: 36868) -.metavertizer.com -# ||metavertising.com^$third-party (easylistchina+easylist.txt: 36867) -.metavertising.com -# ||messagespaceads.com^$third-party (easylistchina+easylist.txt: 36863) -.messagespaceads.com -# ||mercuras.com^$third-party (easylistchina+easylist.txt: 36862) -.mercuras.com -# ||merchenta.com^$third-party (easylistchina+easylist.txt: 36861) -.merchenta.com -# ||mentalks.ru^$third-party (easylistchina+easylist.txt: 36860) -.mentalks.ru -# ||mentad.com^$third-party (easylistchina+easylist.txt: 36859) -.mentad.com -# ||mengheng.net^$third-party (easylistchina+easylist.txt: 36858) -.mengheng.net -# ||mellowads.com^$third-party (easylistchina+easylist.txt: 36857) -.mellowads.com -# ||meinlist.com^$third-party (easylistchina+easylist.txt: 36856) -.meinlist.com -# ||megbase.com^$third-party (easylistchina+easylist.txt: 36855) -.megbase.com -# ||megatronmailer.com^$third-party (easylistchina+easylist.txt: 36854) -.megatronmailer.com -# ||megapopads.com^$third-party (easylistchina+easylist.txt: 36853) -.megapopads.com -# ||megacpm.com^$third-party (easylistchina+easylist.txt: 36852) -.megacpm.com -# ||megaad.nz^$third-party (easylistchina+easylist.txt: 36851) -.megaad.nz -# ||meetic-partners.com^$third-party (easylistchina+easylist.txt: 36850) -.meetic-partners.com -# ||meendocash.com^$third-party (easylistchina+easylist.txt: 36849) -.meendocash.com -# ||medyanetads.com^$third-party (easylistchina+easylist.txt: 36848) -.medyanetads.com -# ||medyanet.net^$third-party (easylistchina+easylist.txt: 36847) -.medyanet.net -# ||medrx.sensis.com.au^$third-party (easylistchina+easylist.txt: 36846) -.medrx.sensis.com.au -# ||medleyads.com^$third-party (easylistchina+easylist.txt: 36845) -.medleyads.com -# ||mediatraks.com^$third-party (easylistchina+easylist.txt: 36844) -.mediatraks.com -# ||mediatraffic.com^$third-party (easylistchina+easylist.txt: 36843) -.mediatraffic.com -# ||mediative.ca^$third-party (easylistchina+easylist.txt: 36842) -.mediative.ca -# ||mediatarget.com^$third-party (easylistchina+easylist.txt: 36841) -.mediatarget.com -# ||mediapeo.com^$third-party (easylistchina+easylist.txt: 36840) -.mediapeo.com -# ||mediaonpro.com^$third-party (easylistchina+easylist.txt: 36839) -.mediaonpro.com -# ||mediaonenetwork.net^$third-party (easylistchina+easylist.txt: 36838) -.mediaonenetwork.net -# ||medialation.net^$third-party (easylistchina+easylist.txt: 36837) -.medialation.net -# ||medialand.ru^$third-party (easylistchina+easylist.txt: 36836) -.medialand.ru -# ||mediakeywords.com^$third-party (easylistchina+easylist.txt: 36835) -.mediakeywords.com -# ||mediagridwork.com^$third-party (easylistchina+easylist.txt: 36834) -.mediagridwork.com -# ||mediag4.com^$third-party (easylistchina+easylist.txt: 36833) -.mediag4.com -# ||mediaforge.com^$third-party (easylistchina+easylist.txt: 36832) -.mediaforge.com -# ||mediaflire.com^$third-party (easylistchina+easylist.txt: 36831) -.mediaflire.com -# ||mediafilesdownload.com^$third-party (easylistchina+easylist.txt: 36830) -.mediafilesdownload.com -# ||mediaffiliation.com^$third-party (easylistchina+easylist.txt: 36829) -.mediaffiliation.com -# ||mediacpm.com^$third-party (easylistchina+easylist.txt: 36828) -.mediacpm.com -# ||mediaclick.com^$third-party (easylistchina+easylist.txt: 36827) -.mediaclick.com -# ||mediaadserver.org^$third-party (easylistchina+easylist.txt: 36826) -.mediaadserver.org -# ||media970.com^$third-party (easylistchina+easylist.txt: 36825) -.media970.com -# ||media6degrees.com^$third-party (easylistchina+easylist.txt: 36824) -.media6degrees.com -# ||media303.com^$third-party (easylistchina+easylist.txt: 36823) -.media303.com -# ||media.net^$third-party (easylistchina+easylist.txt: 36822) -.media.net -# ||media-servers.net^$third-party (easylistchina+easylist.txt: 36821) -.media-servers.net -# ||media-networks.ru^$third-party (easylistchina+easylist.txt: 36820) -.media-networks.ru -# ||media-ks.net^$third-party (easylistchina+easylist.txt: 36819) -.media-ks.net -# ||media-general.com^$third-party (easylistchina+easylist.txt: 36818) -.media-general.com -# ||meadigital.com^$third-party (easylistchina+easylist.txt: 36817) -.meadigital.com -# ||mdn2015x4.com^$third-party (easylistchina+easylist.txt: 36816) -.mdn2015x4.com -# ||mdn2015x2.com^$third-party (easylistchina+easylist.txt: 36815) -.mdn2015x2.com -# ||mdn2015x1.com^$third-party (easylistchina+easylist.txt: 36814) -.mdn2015x1.com -# ||mdialog.com^$third-party (easylistchina+easylist.txt: 36813) -.mdialog.com -# ||mdadx.com^$third-party (easylistchina+easylist.txt: 36812) -.mdadx.com -# ||mdadvertising.net^$third-party (easylistchina+easylist.txt: 36811) -.mdadvertising.net -# ||mcdstorage.com^$third-party (easylistchina+easylist.txt: 36810) -.mcdstorage.com -# ||mcdomainalot.com^$third-party (easylistchina+easylist.txt: 36809) -.mcdomainalot.com -# ||mbn.com.ua^$third-party (easylistchina+easylist.txt: 36808) -.mbn.com.ua -# ||mb8e17f12.website^$third-party (easylistchina+easylist.txt: 36807) -.mb8e17f12.website -# ||mb57.com^$third-party (easylistchina+easylist.txt: 36806) -.mb57.com -# ||mb38.com^$third-party (easylistchina+easylist.txt: 36805) -.mb38.com -# ||mb104.com^$third-party (easylistchina+easylist.txt: 36804) -.mb104.com -# ||mb102.com^$third-party (easylistchina+easylist.txt: 36803) -.mb102.com -# ||mb01.com^$third-party (easylistchina+easylist.txt: 36802) -.mb01.com -# ||maxserving.com^$third-party (easylistchina+easylist.txt: 36801) -.maxserving.com -# ||maudau.com^$third-party (easylistchina+easylist.txt: 36800) -.maudau.com -# ||matiro.com^$third-party (easylistchina+easylist.txt: 36799) -.matiro.com -# ||mastertraffic.cn^$third-party (easylistchina+easylist.txt: 36798) -.mastertraffic.cn -# ||masternal.com^$third-party (easylistchina+easylist.txt: 36797) -.masternal.com -# ||masterads.org^$third-party (easylistchina+easylist.txt: 36796) -.masterads.org -# ||martiniadnetwork.com^$third-party (easylistchina+easylist.txt: 36795) -.martiniadnetwork.com -# ||marsads.com^$third-party (easylistchina+easylist.txt: 36794) -.marsads.com -# ||marketoring.com^$third-party (easylistchina+easylist.txt: 36793) -.marketoring.com -# ||marketnetwork.com^$third-party (easylistchina+easylist.txt: 36792) -.marketnetwork.com -# ||marketleverage.com^$third-party (easylistchina+easylist.txt: 36791) -.marketleverage.com -# ||marketingenhanced.com^$third-party (easylistchina+easylist.txt: 36790) -.marketingenhanced.com -# ||markethealth.com^$third-party (easylistchina+easylist.txt: 36789) -.markethealth.com -# ||marketgid.com^$third-party (easylistchina+easylist.txt: 36788) -.marketgid.com -# ||marketfly.net^$third-party (easylistchina+easylist.txt: 36787) -.marketfly.net -# ||marketbanker.com^$third-party (easylistchina+easylist.txt: 36786) -.marketbanker.com -# ||marfeel.com^$third-party (easylistchina+easylist.txt: 36785) -.marfeel.com -# ||marbil24.co.za^$third-party (easylistchina+easylist.txt: 36784) -.marbil24.co.za -# ||mangoforex.com^$third-party (easylistchina+easylist.txt: 36783) -.mangoforex.com -# ||mallsponsor.com^$third-party (easylistchina+easylist.txt: 36782) -.mallsponsor.com -# ||makemoneymakemoney.net^$third-party (easylistchina+easylist.txt: 36781) -.makemoneymakemoney.net -# ||makecashtakingsurveys.biz^$third-party (easylistchina+easylist.txt: 36780) -.makecashtakingsurveys.biz -# ||mainroll.com^$third-party (easylistchina+easylist.txt: 36779) -.mainroll.com -# ||mainadv.com^$third-party (easylistchina+easylist.txt: 36778) -.mainadv.com -# ||mailmarketingmachine.com^$third-party (easylistchina+easylist.txt: 36777) -.mailmarketingmachine.com -# ||magnetisemedia.com^$third-party (easylistchina+easylist.txt: 36776) -.magnetisemedia.com -# ||magicalled.info^$third-party (easylistchina+easylist.txt: 36775) -.magicalled.info -# ||madsone.com^$third-party (easylistchina+easylist.txt: 36774) -.madsone.com -# ||madserving.com^$third-party (easylistchina+easylist.txt: 36773) -.madserving.com -# ||madadsmedia.com^$third-party (easylistchina+easylist.txt: 36772) -.madadsmedia.com -# ||machings.com^^$third-party (easylistchina+easylist.txt: 36771) -.machings.com/[^\w%.-] -# ||mabirol.com^$third-party (easylistchina+easylist.txt: 36770) -.mabirol.com -# ||m5prod.net^$third-party (easylistchina+easylist.txt: 36769) -.m5prod.net -# ||m57ku6sm.com^$third-party (easylistchina+easylist.txt: 36768) -.m57ku6sm.com -# ||m4pub.com^$third-party (easylistchina+easylist.txt: 36767) -.m4pub.com -# ||m2pub.com^$third-party (easylistchina+easylist.txt: 36766) -.m2pub.com -# ||lzjl.com^$third-party (easylistchina+easylist.txt: 36764) -.lzjl.com -# ||lx2rv.com^$third-party (easylistchina+easylist.txt: 36763) -.lx2rv.com -# ||luxup.ru^$third-party (easylistchina+easylist.txt: 36762) -.luxup.ru -# ||luxbetaffiliates.com.au^$third-party (easylistchina+easylist.txt: 36761) -.luxbetaffiliates.com.au -# ||luxadv.com^$third-party (easylistchina+easylist.txt: 36760) -.luxadv.com -# ||lushcrush.com^$third-party (easylistchina+easylist.txt: 36759) -.lushcrush.com -# ||lucidmedia.com^$third-party (easylistchina+easylist.txt: 36758) -.lucidmedia.com -# ||ltassrv.com.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 36755) -.ltassrv.com.s3.amazonaws.com -# ||lqw.me^$third-party (easylistchina+easylist.txt: 36754) -.lqw.me -# ||lqcdn.com^$third-party (easylistchina+easylist.txt: 36753) -.lqcdn.com -# ||loxtk.com^$third-party (easylistchina+easylist.txt: 36752) -.loxtk.com -# ||love-banner.com^$third-party (easylistchina+easylist.txt: 36751) -.love-banner.com -# ||lotteryaffiliates.com^$third-party (easylistchina+easylist.txt: 36750) -.lotteryaffiliates.com -# ||lostelephants.xyz^$third-party (easylistchina+easylist.txt: 36749) -.lostelephants.xyz -# ||losomy.com^$third-party (easylistchina+easylist.txt: 36748) -.losomy.com -# ||loseads.eu^$third-party (easylistchina+easylist.txt: 36747) -.loseads.eu -# ||lose-ads.de^$third-party (easylistchina+easylist.txt: 36746) -.lose-ads.de -# ||looneynetwork.com^$third-party (easylistchina+easylist.txt: 36745) -.looneynetwork.com -# ||looneyads.com^$third-party (easylistchina+easylist.txt: 36744) -.looneyads.com -# ||looksmart.com^$third-party (easylistchina+easylist.txt: 36743) -.looksmart.com -# ||lookit-quick.com^$third-party (easylistchina+easylist.txt: 36742) -.lookit-quick.com -# ||loodyas.com^$third-party (easylistchina+easylist.txt: 36741) -.loodyas.com -# ||logo-net.co.uk^$third-party (easylistchina+easylist.txt: 36740) -.logo-net.co.uk -# ||lockscalecompare.com^$third-party (easylistchina+easylist.txt: 36739) -.lockscalecompare.com -# ||lockhosts.com^$third-party (easylistchina+easylist.txt: 36738) -.lockhosts.com -# ||lockerdome.com^$third-party (easylistchina+easylist.txt: 36737) -.lockerdome.com -# ||localsearch24.co.uk^$third-party (easylistchina+easylist.txt: 36736) -.localsearch24.co.uk -# ||localedgemedia.com^$third-party (easylistchina+easylist.txt: 36735) -.localedgemedia.com -# ||localadbuy.com^$third-party (easylistchina+easylist.txt: 36734) -.localadbuy.com -# ||loading-resource.com^$third-party (easylistchina+easylist.txt: 36733) -.loading-resource.com -# ||lndjj.com^$third-party (easylistchina+easylist.txt: 36732) -.lndjj.com -# ||liveuniversenetwork.com^$third-party (easylistchina+easylist.txt: 36731) -.liveuniversenetwork.com -# ||liveadserver.net^$third-party (easylistchina+easylist.txt: 36729) -.liveadserver.net -# ||liveadoptimizer.com^$third-party (easylistchina+easylist.txt: 36728) -.liveadoptimizer.com -# ||liveadexchanger.com^$third-party (easylistchina+easylist.txt: 36727) -.liveadexchanger.com -# ||listingcafe.com^$third-party (easylistchina+easylist.txt: 36726) -.listingcafe.com -# ||liqwid.net^$third-party (easylistchina+easylist.txt: 36725) -.liqwid.net -# ||linkz.net^$third-party (easylistchina+easylist.txt: 36724) -.linkz.net -# ||linkybank.com^$third-party (easylistchina+easylist.txt: 36723) -.linkybank.com -# ||linkworth.com^$third-party (easylistchina+easylist.txt: 36722) -.linkworth.com -# ||linkwash.de^$third-party (easylistchina+easylist.txt: 36721) -.linkwash.de -# ||linkstorm.net^$third-party (easylistchina+easylist.txt: 36720) -.linkstorm.net -# ||linksmart.com^$third-party (easylistchina+easylist.txt: 36719) -.linksmart.com -# ||linkshowoff.com^$third-party (easylistchina+easylist.txt: 36718) -.linkshowoff.com -# ||links.io^$third-party (easylistchina+easylist.txt: 36717) -.links.io -# ||linkreferral.com^$third-party (easylistchina+easylist.txt: 36716) -.linkreferral.com -# ||linkoffers.net^$third-party (easylistchina+easylist.txt: 36715) -.linkoffers.net -# ||linkmads.com^$third-party (easylistchina+easylist.txt: 36714) -.linkmads.com -# ||linkgrand.com^$third-party (easylistchina+easylist.txt: 36713) -.linkgrand.com -# ||linkexchangers.net^$third-party (easylistchina+easylist.txt: 36712) -.linkexchangers.net -# ||linkexchange.com^$third-party (easylistchina+easylist.txt: 36711) -.linkexchange.com -# ||linkelevator.com^$third-party (easylistchina+easylist.txt: 36710) -.linkelevator.com -# ||linkconnector.com^$third-party (easylistchina+easylist.txt: 36709) -.linkconnector.com -# ||linkclicks.com^$third-party (easylistchina+easylist.txt: 36708) -.linkclicks.com -# ||linkbuddies.com^$third-party (easylistchina+easylist.txt: 36707) -.linkbuddies.com -# ||linicom.co.il^$third-party (easylistchina+easylist.txt: 36706) -.linicom.co.il -# ||lightad.co.kr^$third-party (easylistchina+easylist.txt: 36704) -.lightad.co.kr -# ||ligational.com^$third-party (easylistchina+easylist.txt: 36703) -.ligational.com -# ||liftdna.com^$third-party (easylistchina+easylist.txt: 36702) -.liftdna.com -# ||lgse.com^$third-party (easylistchina+easylist.txt: 36701) -.lgse.com -# ||lfstmedia.com^$third-party (easylistchina+easylist.txt: 36700) -.lfstmedia.com -# ||letsgoshopping.tk^$third-party (easylistchina+easylist.txt: 36699) -.letsgoshopping.tk -# ||letilyadothejob.com^$third-party (easylistchina+easylist.txt: 36698) -.letilyadothejob.com -# ||legisland.net^$third-party (easylistchina+easylist.txt: 36697) -.legisland.net -# ||leetmedia.com^$third-party (easylistchina+easylist.txt: 36696) -.leetmedia.com -# ||leadmediapartners.com^$third-party (easylistchina+easylist.txt: 36695) -.leadmediapartners.com -# ||leaderpub.fr^$third-party (easylistchina+easylist.txt: 36694) -.leaderpub.fr -# ||leadcola.com^$third-party (easylistchina+easylist.txt: 36693) -.leadcola.com -# ||leadbolt.net^$third-party (easylistchina+easylist.txt: 36692) -.leadbolt.net -# ||leadadvert.info^$third-party (easylistchina+easylist.txt: 36691) -.leadadvert.info -# ||leadad.mobi^$third-party (easylistchina+easylist.txt: 36690) -.leadad.mobi -# ||leadacceptor.com^$third-party (easylistchina+easylist.txt: 36689) -.leadacceptor.com -# ||lduhtrp.net^$third-party (easylistchina+easylist.txt: 36688) -.lduhtrp.net -# ||ldgateway.com^$third-party (easylistchina+easylist.txt: 36687) -.ldgateway.com -# ||lcl2adserver.com^$third-party (easylistchina+easylist.txt: 36686) -.lcl2adserver.com -# ||lbm1.com^$third-party (easylistchina+easylist.txt: 36685) -.lbm1.com -# ||lazynerd.info^$third-party (easylistchina+easylist.txt: 36684) -.lazynerd.info -# ||layerwelt.com^$third-party (easylistchina+easylist.txt: 36683) -.layerwelt.com -# ||layerloop.com^$third-party (easylistchina+easylist.txt: 36682) -.layerloop.com -# ||layer-ad.org^$third-party (easylistchina+easylist.txt: 36681) -.layer-ad.org -# ||launchbit.com^$third-party (easylistchina+easylist.txt: 36680) -.launchbit.com -# ||laserhairremovalstore.com^$third-party (easylistchina+easylist.txt: 36679) -.laserhairremovalstore.com -# ||largestable.com^$third-party (easylistchina+easylist.txt: 36678) -.largestable.com -# ||lanistaconcepts.com^$third-party (easylistchina+easylist.txt: 36677) -.lanistaconcepts.com -# ||lakidar.net^$third-party (easylistchina+easylist.txt: 36676) -.lakidar.net -# ||lakequincy.com^$third-party (easylistchina+easylist.txt: 36675) -.lakequincy.com -# ||ladbrokesaffiliates.com.au^$third-party (easylistchina+easylist.txt: 36674) -.ladbrokesaffiliates.com.au -# ||l3op.info^$third-party (easylistchina+easylist.txt: 36673) -.l3op.info -# ||kumpulblogger.com^$third-party (easylistchina+easylist.txt: 36672) -.kumpulblogger.com -# ||kromeleta.ru^$third-party (easylistchina+easylist.txt: 36671) -.kromeleta.ru -# ||kr3vinsx.com^$third-party (easylistchina+easylist.txt: 36670) -.kr3vinsx.com -# ||kqzyfj.com^$third-party (easylistchina+easylist.txt: 36669) -.kqzyfj.com -# ||kovla.com^$third-party (easylistchina+easylist.txt: 36668) -.kovla.com -# ||korrelate.net^$third-party (easylistchina+easylist.txt: 36667) -.korrelate.net -# ||koocash.com^$third-party (easylistchina+easylist.txt: 36666) -.koocash.com -# ||kontextua.com^$third-party (easylistchina+easylist.txt: 36665) -.kontextua.com -# ||komoona.com^$third-party (easylistchina+easylist.txt: 36664) -.komoona.com -# ||kolition.com^$third-party (easylistchina+easylist.txt: 36663) -.kolition.com -# ||knowd.com^$third-party (easylistchina+easylist.txt: 36662) -.knowd.com -# ||knorex.asia^$third-party (easylistchina+easylist.txt: 36661) -.knorex.asia -# ||klonedaset.org^$third-party (easylistchina+easylist.txt: 36660) -.klonedaset.org -# ||kloapers.com^$third-party (easylistchina+easylist.txt: 36659) -.kloapers.com -# ||klixfeed.com^$third-party (easylistchina+easylist.txt: 36658) -.klixfeed.com -# ||klipmart.com^$third-party (easylistchina+easylist.txt: 36657) -.klipmart.com -# ||klikvip.com^$third-party (easylistchina+easylist.txt: 36656) -.klikvip.com -# ||kliksaya.com^$third-party (easylistchina+easylist.txt: 36655) -.kliksaya.com -# ||klikadvertising.com^$third-party (easylistchina+easylist.txt: 36654) -.klikadvertising.com -# ||kjgh5o.com^$third-party (easylistchina+easylist.txt: 36653) -.kjgh5o.com -# ||kitnmedia.com^$third-party (easylistchina+easylist.txt: 36652) -.kitnmedia.com -# ||kiosked.com^$third-party (easylistchina+easylist.txt: 36651) -.kiosked.com -# ||kintokup.com^$third-party (easylistchina+easylist.txt: 36650) -.kintokup.com -# ||kinley.com^$third-party (easylistchina+easylist.txt: 36649) -.kinley.com -# ||kikuzip.com^$third-party (easylistchina+easylist.txt: 36648) -.kikuzip.com -# ||keywordblocks.com^$third-party (easylistchina+easylist.txt: 36647) -.keywordblocks.com -# ||keyrunmodel.com^$third-party (easylistchina+easylist.txt: 36646) -.keyrunmodel.com -# ||ketoo.com^$third-party (easylistchina+easylist.txt: 36645) -.ketoo.com -# ||kerg.net^$third-party (easylistchina+easylist.txt: 36644) -.kerg.net -# ||kehalim.com^$third-party (easylistchina+easylist.txt: 36643) -.kehalim.com -# ||keewurd.com^$third-party (easylistchina+easylist.txt: 36642) -.keewurd.com -# ||kavanga.ru^$third-party (easylistchina+easylist.txt: 36641) -.kavanga.ru -# ||kantarmedia.com^$third-party (easylistchina+easylist.txt: 36640) -.kantarmedia.com -# ||kanoodle.com^$third-party (easylistchina+easylist.txt: 36639) -.kanoodle.com -# ||k0z09okc.com^$third-party (easylistchina+easylist.txt: 36638) -.k0z09okc.com -# ||jyvtidkx.com^$third-party (easylistchina+easylist.txt: 36637) -.jyvtidkx.com -# ||jwaavsze.com^$third-party (easylistchina+easylist.txt: 36636) -.jwaavsze.com -# ||justrelevant.com^$third-party (easylistchina+easylist.txt: 36635) -.justrelevant.com -# ||jursp.com^$third-party (easylistchina+easylist.txt: 36634) -.jursp.com -# ||jumptap.com^$third-party (easylistchina+easylist.txt: 36633) -.jumptap.com -# ||jumpelead.com^$third-party (easylistchina+easylist.txt: 36632) -.jumpelead.com -# ||jumia.com.ng^$third-party (easylistchina+easylist.txt: 36631) -.jumia.com.ng -# ||jumbolt.ru^$third-party (easylistchina+easylist.txt: 36630) -.jumbolt.ru -# ||jumboaffiliates.com^$third-party (easylistchina+easylist.txt: 36629) -.jumboaffiliates.com -# ||jujzh9va.com^$third-party (easylistchina+easylist.txt: 36628) -.jujzh9va.com -# ||jujuads.com^$third-party (easylistchina+easylist.txt: 36627) -.jujuads.com -# ||juiceadv.net^$third-party (easylistchina+easylist.txt: 36626) -.juiceadv.net -# ||juiceadv.com^$third-party (easylistchina+easylist.txt: 36625) -.juiceadv.com -# ||judicated.com^$third-party (easylistchina+easylist.txt: 36624) -.judicated.com -# ||jtrakk.com^$third-party (easylistchina+easylist.txt: 36623) -.jtrakk.com -# ||jssearch.net^$third-party (easylistchina+easylist.txt: 36622) -.jssearch.net -# ||jsretra.com^$third-party (easylistchina+easylist.txt: 36621) -.jsretra.com -# ||jsfeedadsget.com^$third-party (easylistchina+easylist.txt: 36620) -.jsfeedadsget.com -# ||jscount.com^$third-party (easylistchina+easylist.txt: 36619) -.jscount.com -# ||js.cdn.ac^$third-party (easylistchina+easylist.txt: 36618) -.js.cdn.ac -# ||jque.net^$third-party (easylistchina+easylist.txt: 36617) -.jque.net -# ||joytocash.com^$third-party (easylistchina+easylist.txt: 36616) -.joytocash.com -# ||jobtarget.com^$third-party (easylistchina+easylist.txt: 36615) -.jobtarget.com -# ||jobsyndicate.com^$third-party (easylistchina+easylist.txt: 36614) -.jobsyndicate.com -# ||jo7cofh3.com^$third-party (easylistchina+easylist.txt: 36613) -.jo7cofh3.com -# ||jmp9.com^$third-party (easylistchina+easylist.txt: 36612) -.jmp9.com -# ||jizzontoy.com^$third-party (easylistchina+easylist.txt: 36611) -.jizzontoy.com -# ||jiwire.com^$third-party (easylistchina+easylist.txt: 36610) -.jiwire.com -# ||jivox.com^$third-party (easylistchina+easylist.txt: 36609) -.jivox.com -# ||jiawen88.com^$third-party (easylistchina+easylist.txt: 36608) -.jiawen88.com -# ||jemmgroup.com^$third-party (easylistchina+easylist.txt: 36607) -.jemmgroup.com -# ||jeetyetmedia.com^$third-party (easylistchina+easylist.txt: 36606) -.jeetyetmedia.com -# ||jdproject.net^$third-party (easylistchina+easylist.txt: 36605) -.jdproject.net -# ||jdoqocy.com^$third-party (easylistchina+easylist.txt: 36604) -.jdoqocy.com -# ||jbrlsr.com^$third-party (easylistchina+easylist.txt: 36603) -.jbrlsr.com -# ||jangonetwork.com^$third-party (easylistchina+easylist.txt: 36602) -.jangonetwork.com -# ||jango.com^$third-party (easylistchina+easylist.txt: 36601) -.jango.com -# ||jadcenter.com^$third-party (easylistchina+easylist.txt: 36600) -.jadcenter.com -# ||j2ef76da3.website^$third-party (easylistchina+easylist.txt: 36599) -.j2ef76da3.website -# ||izeads.com^$third-party (easylistchina+easylist.txt: 36598) -.izeads.com -# ||ixnp.com^$third-party (easylistchina+easylist.txt: 36597) -.ixnp.com -# ||iwantmoar.net^$third-party (easylistchina+easylist.txt: 36596) -.iwantmoar.net -# ||iv.doubleclick.net^$third-party (easylistchina+easylist.txt: 36595) -.iv.doubleclick.net -# ||iu16wmye.com^$third-party (easylistchina+easylist.txt: 36594) -.iu16wmye.com -# ||itrengia.com^$third-party (easylistchina+easylist.txt: 36593) -.itrengia.com -# ||isparkmedia.com^$third-party (easylistchina+easylist.txt: 36592) -.isparkmedia.com -# ||isohits.com^$third-party (easylistchina+easylist.txt: 36591) -.isohits.com -# ||isapi.solutions^$third-party (easylistchina+easylist.txt: 36590) -.isapi.solutions -# ||ipromote.com^$third-party (easylistchina+easylist.txt: 36589) -.ipromote.com -# ||ipredictive.com^$third-party (easylistchina+easylist.txt: 36588) -.ipredictive.com -# ||ip-adress.com^$third-party (easylistchina+easylist.txt: 36587) -.ip-adress.com -# ||inviziads.com^$third-party (easylistchina+easylist.txt: 36586) -.inviziads.com -# ||investingchannel.com^$third-party (easylistchina+easylist.txt: 36585) -.investingchannel.com -# ||inuxu.co.in^$third-party (easylistchina+easylist.txt: 36584) -.inuxu.co.in -# ||inuxu.biz^$third-party (easylistchina+easylist.txt: 36583) -.inuxu.biz -# ||inuvo.com^$third-party (easylistchina+easylist.txt: 36582) -.inuvo.com -# ||intuneads.com^$third-party (easylistchina+easylist.txt: 36581) -.intuneads.com -# ||inttrax.com^$third-party (easylistchina+easylist.txt: 36580) -.inttrax.com -# ||intopicmedia.com^$third-party (easylistchina+easylist.txt: 36579) -.intopicmedia.com -# ||intgr.net^$third-party (easylistchina+easylist.txt: 36578) -.intgr.net -# ||intextual.net^$third-party (easylistchina+easylist.txt: 36577) -.intextual.net -# ||intextscript.com^$third-party (easylistchina+easylist.txt: 36576) -.intextscript.com -# ||intextdirect.com^$third-party (easylistchina+easylist.txt: 36575) -.intextdirect.com -# ||interworksmedia.co.kr^$third-party (easylistchina+easylist.txt: 36574) -.interworksmedia.co.kr -# ||interpolls.com^$third-party (easylistchina+easylist.txt: 36573) -.interpolls.com -# ||internetadbrokers.com^$third-party (easylistchina+easylist.txt: 36572) -.internetadbrokers.com -# ||intermarkets.net^$third-party (easylistchina+easylist.txt: 36571) -.intermarkets.net -# ||interesting.cc^$third-party (easylistchina+easylist.txt: 36570) -.interesting.cc -# ||interestably.com^$third-party (easylistchina+easylist.txt: 36569) -.interestably.com -# ||interclick.com^$third-party (easylistchina+easylist.txt: 36568) -.interclick.com -# ||interactivespot.net^$third-party (easylistchina+easylist.txt: 36567) -.interactivespot.net -# ||intentmedia.net^$third-party (easylistchina+easylist.txt: 36566) -.intentmedia.net -# ||intenthq.com^$third-party (easylistchina+easylist.txt: 36565) -.intenthq.com -# ||intellitxt.com^$third-party (easylistchina+easylist.txt: 36564) -.intellitxt.com -# ||intellibanners.com^$third-party (easylistchina+easylist.txt: 36563) -.intellibanners.com -# ||integral-marketing.com^$third-party (easylistchina+easylist.txt: 36562) -.integral-marketing.com -# ||instivate.com^$third-party (easylistchina+easylist.txt: 36561) -.instivate.com -# ||instinctiveads.com^$third-party (easylistchina+easylist.txt: 36560) -.instinctiveads.com -# ||instantdollarz.com^$third-party (easylistchina+easylist.txt: 36559) -.instantdollarz.com -# ||instantbannercreator.com^$third-party (easylistchina+easylist.txt: 36558) -.instantbannercreator.com -# ||insta-cash.net^$third-party (easylistchina+easylist.txt: 36557) -.insta-cash.net -# ||inspiringsweater.xyz^$third-party (easylistchina+easylist.txt: 36556) -.inspiringsweater.xyz -# ||inskinad.com^$third-party (easylistchina+easylist.txt: 36554) -.inskinad.com -# ||insitesystems.com^$third-party (easylistchina+easylist.txt: 36553) -.insitesystems.com -# ||insitepromotion.com^$third-party (easylistchina+easylist.txt: 36552) -.insitepromotion.com -# ||insightexpressai.com^$third-party (easylistchina+easylist.txt: 36551) -.insightexpressai.com -# ||insightexpress.com^$third-party (easylistchina+easylist.txt: 36550) -.insightexpress.com -# ||innovid.com^$third-party (easylistchina+easylist.txt: 36549) -.innovid.com -# ||innity.net^$third-party (easylistchina+easylist.txt: 36548) -.innity.net -# ||innity.com^$third-party (easylistchina+easylist.txt: 36547) -.innity.com -# ||inktad.com^$third-party (easylistchina+easylist.txt: 36546) -.inktad.com -# ||ingame.ad^$third-party (easylistchina+easylist.txt: 36545) -.ingame.ad -# ||infra-ad.com^$third-party (easylistchina+easylist.txt: 36544) -.infra-ad.com -# ||information-sale.com^$third-party (easylistchina+easylist.txt: 36543) -.information-sale.com -# ||infolinks.com^$third-party (easylistchina+easylist.txt: 36542) -.infolinks.com -# ||info4.a7.org^$third-party (easylistchina+easylist.txt: 36541) -.info4.a7.org -# ||influads.com^$third-party (easylistchina+easylist.txt: 36540) -.influads.com -# ||infinityads.com^$third-party (easylistchina+easylist.txt: 36539) -.infinityads.com -# ||infinite-ads.com^$third-party (easylistchina+easylist.txt: 36538) -.infinite-ads.com -# ||infectiousmedia.com^$third-party (easylistchina+easylist.txt: 36537) -.infectiousmedia.com -# ||inetinteractive.com^$third-party (easylistchina+easylist.txt: 36536) -.inetinteractive.com -# ||inentasky.com^$third-party (easylistchina+easylist.txt: 36535) -.inentasky.com -# ||industrybrains.com^$third-party (easylistchina+easylist.txt: 36534) -.industrybrains.com -# ||indofad.com^$third-party (easylistchina+easylist.txt: 36533) -.indofad.com -# ||indieclick.com^$third-party (easylistchina+easylist.txt: 36532) -.indieclick.com -# ||indicate.to^$third-party (easylistchina+easylist.txt: 36531) -.indicate.to -# ||indianlinkexchange.com^$third-party (easylistchina+easylist.txt: 36530) -.indianlinkexchange.com -# ||indianbannerexchange.com^$third-party (easylistchina+easylist.txt: 36529) -.indianbannerexchange.com -# ||indiads.com^$third-party (easylistchina+easylist.txt: 36528) -.indiads.com -# ||indiabanner.com^$third-party (easylistchina+easylist.txt: 36527) -.indiabanner.com -# ||indexww.com^$third-party (easylistchina+easylist.txt: 36526) -.indexww.com -# ||increase-marketing.com^$third-party (easylistchina+easylist.txt: 36525) -.increase-marketing.com -# ||incomeliberation.com^$third-party (easylistchina+easylist.txt: 36524) -.incomeliberation.com -# ||incentaclick.com^$third-party (easylistchina+easylist.txt: 36523) -.incentaclick.com -# ||in-appadvertising.com^$third-party (easylistchina+easylist.txt: 36522) -.in-appadvertising.com -# ||impressionvalue.mobi^$third-party (easylistchina+easylist.txt: 36521) -.impressionvalue.mobi -# ||impressionperformance.biz^$third-party (easylistchina+easylist.txt: 36520) -.impressionperformance.biz -# ||impressiondesk.com^$third-party (easylistchina+easylist.txt: 36519) -.impressiondesk.com -# ||impressioncontent.info^$third-party (easylistchina+easylist.txt: 36518) -.impressioncontent.info -# ||impressionaffiliate.mobi^$third-party (easylistchina+easylist.txt: 36517) -.impressionaffiliate.mobi -# ||impressionaffiliate.com^$third-party (easylistchina+easylist.txt: 36516) -.impressionaffiliate.com -# ||impresionesweb.com^$third-party (easylistchina+easylist.txt: 36515) -.impresionesweb.com -# ||implix.com^$third-party (easylistchina+easylist.txt: 36514) -.implix.com -# ||impactradius.com^$third-party (easylistchina+easylist.txt: 36513) -.impactradius.com -# ||impact-ad.jp^$third-party (easylistchina+easylist.txt: 36512) -.impact-ad.jp -# ||imp*.tradedoubler.com^$third-party (easylistchina+easylist.txt: 36511) -.imp*./.*\.tradedoubler\.com[^\w%.-] -.imp*.tradedoubler.com -# ||imonomy.com^$third-party (easylistchina+easylist.txt: 36510) -.imonomy.com -# ||imiclk.com^$third-party (easylistchina+easylist.txt: 36509) -.imiclk.com -# ||imho.ru^$third-party (easylistchina+easylist.txt: 36508) -.imho.ru -# ||imgwebfeed.com^$third-party (easylistchina+easylist.txt: 36507) -.imgwebfeed.com -# ||imgsniper.com^$third-party (easylistchina+easylist.txt: 36506) -.imgsniper.com -# ||imglt.com^$third-party (easylistchina+easylist.txt: 36505) -.imglt.com -# ||imgfeedget.com^$third-party (easylistchina+easylist.txt: 36504) -.imgfeedget.com -# ||img-giganto.net^$third-party (easylistchina+easylist.txt: 36503) -.img-giganto.net -# ||imediarevenue.com^$third-party (easylistchina+easylist.txt: 36502) -.imediarevenue.com -# ||imediaaudiences.com^$third-party (easylistchina+easylist.txt: 36501) -.imediaaudiences.com -# ||imedia.co.il^$third-party (easylistchina+easylist.txt: 36500) -.imedia.co.il -# ||imasdk.googleapis.com^$third-party (easylistchina+easylist.txt: 36499) -.imasdk.googleapis.com -# ||imageadnet.com^$third-party (easylistchina+easylist.txt: 36498) -.imageadnet.com -# ||ikzikistheking.com^$third-party (easylistchina+easylist.txt: 36497) -.ikzikistheking.com -# ||ignitioninstaller.com^$third-party (easylistchina+easylist.txt: 36496) -.ignitioninstaller.com -# ||igloohq.com^$third-party (easylistchina+easylist.txt: 36495) -.igloohq.com -# ||igameunion.com^$third-party (easylistchina+easylist.txt: 36494) -.igameunion.com -# ||iframe.mediaplazza.com^$third-party (easylistchina+easylist.txt: 36493) -.iframe.mediaplazza.com -# ||idownloadgalore.com^$third-party (easylistchina+easylist.txt: 36492) -.idownloadgalore.com -# ||identads.com^$third-party (easylistchina+easylist.txt: 36491) -.identads.com -# ||idealmedia.com^$third-party (easylistchina+easylist.txt: 36490) -.idealmedia.com -# ||icqadvnew.com^$third-party (easylistchina+easylist.txt: 36489) -.icqadvnew.com -# ||icdirect.com^$third-party (easylistchina+easylist.txt: 36488) -.icdirect.com -# ||ibryte.com^$third-party (easylistchina+easylist.txt: 36487) -.ibryte.com -# ||ibatom.com^$third-party (easylistchina+easylist.txt: 36486) -.ibatom.com -# ||ibannerexchange.com^$third-party (easylistchina+easylist.txt: 36485) -.ibannerexchange.com -# ||iasrv.com^$third-party (easylistchina+easylist.txt: 36484) -.iasrv.com -# ||iasbetaffiliates.com^$third-party (easylistchina+easylist.txt: 36483) -.iasbetaffiliates.com -# ||iamediaserve.com^$third-party (easylistchina+easylist.txt: 36482) -.iamediaserve.com -# ||i.skimresources.com^$third-party (easylistchina+easylist.txt: 36481) -.i.skimresources.com -# ||i-media.co.nz^$third-party (easylistchina+easylist.txt: 36480) -.i-media.co.nz -# ||hyperwebads.com^$third-party (easylistchina+easylist.txt: 36479) -.hyperwebads.com -# ||hypervre.com^$third-party (easylistchina+easylist.txt: 36478) -.hypervre.com -# ||hypertrackeraff.com^$third-party (easylistchina+easylist.txt: 36477) -.hypertrackeraff.com -# ||hyperlinksecure.com^$third-party (easylistchina+easylist.txt: 36476) -.hyperlinksecure.com -# ||hypemakers.net^$third-party (easylistchina+easylist.txt: 36475) -.hypemakers.net -# ||hypeads.org^$third-party (easylistchina+easylist.txt: 36474) -.hypeads.org -# ||hype-ads.com^$third-party (easylistchina+easylist.txt: 36473) -.hype-ads.com -# ||huzonico.com^$third-party (easylistchina+easylist.txt: 36472) -.huzonico.com -# ||httpsecurity.org^$third-party (easylistchina+easylist.txt: 36471) -.httpsecurity.org -# ||httpool.com^$third-party (easylistchina+easylist.txt: 36470) -.httpool.com -# ||htmlhubing.xyz^$third-party (easylistchina+easylist.txt: 36469) -.htmlhubing.xyz -# ||hstpnetwork.com^$third-party (easylistchina+easylist.txt: 36468) -.hstpnetwork.com -# ||hsslx.com^$third-party (easylistchina+easylist.txt: 36467) -.hsslx.com -# ||hplose.de^$third-party (easylistchina+easylist.txt: 36466) -.hplose.de -# ||hover.in^$third-party (easylistchina+easylist.txt: 36465) -.hover.in -# ||hotwords.com^$third-party (easylistchina+easylist.txt: 36464) -.hotwords.com -# ||hotwords.com.mx^$third-party (easylistchina+easylist.txt: 36463) -.hotwords.com.mx -# ||hotwords.com.br^$third-party (easylistchina+easylist.txt: 36462) -.hotwords.com.br -# ||hotptp.com^$third-party (easylistchina+easylist.txt: 36461) -.hotptp.com -# ||hotkeys.com^$third-party (easylistchina+easylist.txt: 36460) -.hotkeys.com -# ||hotfeed.net^$third-party (easylistchina+easylist.txt: 36459) -.hotfeed.net -# ||hotelscombined.com^$third-party (easylistchina+easylist.txt: 36458) -.hotelscombined.com -# ||hotelscombined.com.au^$third-party (easylistchina+easylist.txt: 36457) -.hotelscombined.com.au -# ||hot-hits.us^$third-party (easylistchina+easylist.txt: 36456) -.hot-hits.us -# ||hosticanaffiliate.com^$third-party (easylistchina+easylist.txt: 36455) -.hosticanaffiliate.com -# ||horyzon-media.com^$third-party (easylistchina+easylist.txt: 36454) -.horyzon-media.com -# ||horsered.com^$third-party (easylistchina+easylist.txt: 36453) -.horsered.com -# ||horse-racing-affiliate-program.co.uk^$third-party (easylistchina+easylist.txt: 36452) -.horse-racing-affiliate-program.co.uk -# ||hopfeed.com^$third-party (easylistchina+easylist.txt: 36451) -.hopfeed.com -# ||hoomezip.biz^$third-party (easylistchina+easylist.txt: 36450) -.hoomezip.biz -# ||holidaytravelguide.org^$third-party (easylistchina+easylist.txt: 36449) -.holidaytravelguide.org -# ||holdingprice.net^$third-party (easylistchina+easylist.txt: 36448) -.holdingprice.net -# ||hokaybo.com^$third-party (easylistchina+easylist.txt: 36447) -.hokaybo.com -# ||hlads.com^$third-party (easylistchina+easylist.txt: 36446) -.hlads.com -# ||hitwastedgarden.com^$third-party (easylistchina+easylist.txt: 36445) -.hitwastedgarden.com -# ||hits.sys.lv^$third-party (easylistchina+easylist.txt: 36444) -.hits.sys.lv -# ||hit-now.com^$third-party (easylistchina+easylist.txt: 36443) -.hit-now.com -# ||histians.com^$third-party (easylistchina+easylist.txt: 36442) -.histians.com -# ||hiplair.com^$third-party (easylistchina+easylist.txt: 36441) -.hiplair.com -# ||himediadx.com^$third-party (easylistchina+easylist.txt: 36440) -.himediadx.com -# ||himediads.com^$third-party (easylistchina+easylist.txt: 36439) -.himediads.com -# ||hilltopads.net^$third-party (easylistchina+easylist.txt: 36438) -.hilltopads.net -# ||hijacksystem.com^$third-party (easylistchina+easylist.txt: 36437) -.hijacksystem.com -# ||hiadone.com^$third-party (easylistchina+easylist.txt: 36436) -.hiadone.com -# ||hgdat.com^$third-party (easylistchina+easylist.txt: 36435) -.hgdat.com -# ||hexagram.com^$third-party (easylistchina+easylist.txt: 36434) -.hexagram.com -# ||helloreverb.com^$third-party (easylistchina+easylist.txt: 36433) -.helloreverb.com -# ||hebiichigo.com^$third-party (easylistchina+easylist.txt: 36432) -.hebiichigo.com -# ||healthcarestars.com^$third-party (easylistchina+easylist.txt: 36431) -.healthcarestars.com -# ||healthaffiliatesnetwork.com^$third-party (easylistchina+easylist.txt: 36430) -.healthaffiliatesnetwork.com -# ||headup.com^$third-party (easylistchina+easylist.txt: 36429) -.headup.com -# ||hdvidcodecs.com^$third-party (easylistchina+easylist.txt: 36428) -.hdvidcodecs.com -# ||hdvid-codecs-dl.net^$third-party (easylistchina+easylist.txt: 36427) -.hdvid-codecs-dl.net -# ||hdplayer-download.com^$third-party (easylistchina+easylist.txt: 36426) -.hdplayer-download.com -# ||hd-plugin.com^$third-party (easylistchina+easylist.txt: 36425) -.hd-plugin.com -# ||hb-247.com^$third-party (easylistchina+easylist.txt: 36424) -.hb-247.com -# ||havetohave.com^$third-party (easylistchina+easylist.txt: 36423) -.havetohave.com -# ||havamedia.net^$third-party (easylistchina+easylist.txt: 36422) -.havamedia.net -# ||harrenmedianetwork.com^$third-party (easylistchina+easylist.txt: 36421) -.harrenmedianetwork.com -# ||happilyswitching.net^$third-party (easylistchina+easylist.txt: 36420) -.happilyswitching.net -# ||hanaprop.com^$third-party (easylistchina+easylist.txt: 36419) -.hanaprop.com -# ||halogennetwork.com^$third-party (easylistchina+easylist.txt: 36418) -.halogennetwork.com -# ||halfpriceozarks.com^$third-party (easylistchina+easylist.txt: 36417) -.halfpriceozarks.com -# ||h12-media.com^$third-party (easylistchina+easylist.txt: 36416) -.h12-media.com -# ||h-images.net^$third-party (easylistchina+easylist.txt: 36415) -.h-images.net -# ||gx101.com^$third-party (easylistchina+easylist.txt: 36414) -.gx101.com -# ||gwallet.com^$third-party (easylistchina+easylist.txt: 36413) -.gwallet.com -# ||gururevenue.com^$third-party (easylistchina+easylist.txt: 36412) -.gururevenue.com -# ||gunpartners.com^$third-party (easylistchina+easylist.txt: 36411) -.gunpartners.com -# ||gumgum.com^$third-party (easylistchina+easylist.txt: 36410) -.gumgum.com -# ||guitaralliance.com^$third-party (easylistchina+easylist.txt: 36409) -.guitaralliance.com -# ||guardiandigitalcomparison.co.uk^$third-party (easylistchina+easylist.txt: 36408) -.guardiandigitalcomparison.co.uk -# ||gscsystemwithdarren.com^$third-party (easylistchina+easylist.txt: 36407) -.gscsystemwithdarren.com -# ||gscontxt.net^$third-party (easylistchina+easylist.txt: 36406) -.gscontxt.net -# ||grt03.com^$third-party (easylistchina+easylist.txt: 36405) -.grt03.com -# ||grt02.com^$third-party (easylistchina+easylist.txt: 36404) -.grt02.com -# ||groupcommerce.com^$third-party (easylistchina+easylist.txt: 36403) -.groupcommerce.com -# ||groovinads.com^$third-party (easylistchina+easylist.txt: 36402) -.groovinads.com -# ||grllopa.com^$third-party (easylistchina+easylist.txt: 36401) -.grllopa.com -# ||gripdownload.co^$third-party (easylistchina+easylist.txt: 36400) -.gripdownload.co -# ||gretzalz.com^$third-party (easylistchina+easylist.txt: 36399) -.gretzalz.com -# ||grenstia.com^$third-party (easylistchina+easylist.txt: 36398) -.grenstia.com -# ||greenlabelppc.com^$third-party (easylistchina+easylist.txt: 36397) -.greenlabelppc.com -# ||greenads.org^$third-party (easylistchina+easylist.txt: 36396) -.greenads.org -# ||gratisnetwork.com^$third-party (easylistchina+easylist.txt: 36395) -.gratisnetwork.com -# ||grapeshot.co.uk^$third-party (easylistchina+easylist.txt: 36394) -.grapeshot.co.uk -# ||grafpedia.com^$third-party (easylistchina+easylist.txt: 36393) -.grafpedia.com -# ||grabo.bg^$third-party (easylistchina+easylist.txt: 36392) -.grabo.bg -# ||grabmyads.com^$third-party (easylistchina+easylist.txt: 36391) -.grabmyads.com -# ||gpacalculatorhighschoolfree.com^$third-party (easylistchina+easylist.txt: 36390) -.gpacalculatorhighschoolfree.com -# ||goviral.hs.llnwd.net^$third-party (easylistchina+easylist.txt: 36389) -.goviral.hs.llnwd.net -# ||goviral-content.com^$third-party (easylistchina+easylist.txt: 36388) -.goviral-content.com -# ||governmenttrainingexchange.com^$third-party (easylistchina+easylist.txt: 36387) -.governmenttrainingexchange.com -# ||gourmetads.com^$third-party (easylistchina+easylist.txt: 36386) -.gourmetads.com -# ||gorgonkil.com^$third-party (easylistchina+easylist.txt: 36385) -.gorgonkil.com -# ||gopjn.com^$third-party (easylistchina+easylist.txt: 36384) -.gopjn.com -# ||googletagservices.com/tag/static/$third-party (easylistchina+easylist.txt: 36383) -.googletagservices.com/tag/static/ -# ||googletagservices.com/tag/js/gpt_$third-party (easylistchina+easylist.txt: 36382) -.googletagservices.com/tag/js/gpt_ -# ||googlesyndicatiion.com^$third-party (easylistchina+easylist.txt: 36381) -.googlesyndicatiion.com -# ||googleadservicepixel.com^$third-party (easylistchina+easylist.txt: 36380) -.googleadservicepixel.com -# ||goodadvertising.info^$third-party (easylistchina+easylist.txt: 36379) -.goodadvertising.info -# ||goodadvert.ru^$third-party (easylistchina+easylist.txt: 36378) -.goodadvert.ru -# ||gojoingscnow.com^$third-party (easylistchina+easylist.txt: 36377) -.gojoingscnow.com -# ||gogoplexer.com^$third-party (easylistchina+easylist.txt: 36376) -.gogoplexer.com -# ||goember.com^$third-party (easylistchina+easylist.txt: 36375) -.goember.com -# ||godspeaks.net^$third-party (easylistchina+easylist.txt: 36374) -.godspeaks.net -# ||goclickon.us^$third-party (easylistchina+easylist.txt: 36373) -.goclickon.us -# ||go2speed.org^$third-party (easylistchina+easylist.txt: 36372) -.go2speed.org -# ||go2media.org^$third-party (easylistchina+easylist.txt: 36371) -.go2media.org -# ||go2jump.org^$third-party (easylistchina+easylist.txt: 36370) -.go2jump.org -# ||gmads.net^$third-party (easylistchina+easylist.txt: 36369) -.gmads.net -# ||glowdot.com^$third-party (easylistchina+easylist.txt: 36368) -.glowdot.com -# ||globaltakeoff.net^$third-party (easylistchina+easylist.txt: 36367) -.globaltakeoff.net -# ||globalsuccessclub.com^$third-party (easylistchina+easylist.txt: 36366) -.globalsuccessclub.com -# ||globalinteractive.com^$third-party (easylistchina+easylist.txt: 36365) -.globalinteractive.com -# ||globaladv.net^$third-party (easylistchina+easylist.txt: 36364) -.globaladv.net -# ||globaladsales.com^$third-party (easylistchina+easylist.txt: 36363) -.globaladsales.com -# ||global-success-club.net^$third-party (easylistchina+easylist.txt: 36362) -.global-success-club.net -# ||glical.com^$third-party (easylistchina+easylist.txt: 36361) -.glical.com -# ||gklmedia.com^$third-party (easylistchina+easylist.txt: 36360) -.gklmedia.com -# ||gimiclub.com^$third-party (easylistchina+easylist.txt: 36359) -.gimiclub.com -# ||gigamega.su^$third-party (easylistchina+easylist.txt: 36358) -.gigamega.su -# ||giantaffiliates.com^$third-party (easylistchina+easylist.txt: 36357) -.giantaffiliates.com -# ||ggncpm.com^$third-party (easylistchina+easylist.txt: 36356) -.ggncpm.com -# ||gettipsz.info^$third-party (easylistchina+easylist.txt: 36355) -.gettipsz.info -# ||getthislistbuildingvideo.biz^$third-party (easylistchina+easylist.txt: 36354) -.getthislistbuildingvideo.biz -# ||getscorecash.com^$third-party (easylistchina+easylist.txt: 36353) -.getscorecash.com -# ||getgscfree.com^$third-party (easylistchina+easylist.txt: 36352) -.getgscfree.com -# ||getgamers.eu^$third-party (easylistchina+easylist.txt: 36351) -.getgamers.eu -# ||gestionpub.com^$third-party (easylistchina+easylist.txt: 36350) -.gestionpub.com -# ||geovisite.com^$third-party (easylistchina+easylist.txt: 36349) -.geovisite.com -# ||geopromos.com^$third-party (easylistchina+easylist.txt: 36348) -.geopromos.com -# ||geoipads.com^$third-party (easylistchina+easylist.txt: 36347) -.geoipads.com -# ||geo-idm.fr^$third-party (easylistchina+easylist.txt: 36346) -.geo-idm.fr -# ||genovesetacet.com^$third-party (easylistchina+easylist.txt: 36345) -.genovesetacet.com -# ||genieessp.com^$third-party (easylistchina+easylist.txt: 36344) -.genieessp.com -# ||geniad.net^$third-party (easylistchina+easylist.txt: 36343) -.geniad.net -# ||genesismedia.com^$third-party (easylistchina+easylist.txt: 36342) -.genesismedia.com -# ||genericsteps.com^$third-party (easylistchina+easylist.txt: 36341) -.genericsteps.com -# ||genericlink.com^$third-party (easylistchina+easylist.txt: 36340) -.genericlink.com -# ||gemineering.com^$third-party (easylistchina+easylist.txt: 36339) -.gemineering.com -# ||geld-internet-verdienen.net^$third-party (easylistchina+easylist.txt: 36338) -.geld-internet-verdienen.net -# ||gefhasio.com^$third-party (easylistchina+easylist.txt: 36337) -.gefhasio.com -# ||geek2us.net^$third-party (easylistchina+easylist.txt: 36336) -.geek2us.net -# ||geede.info^$third-party (easylistchina+easylist.txt: 36335) -.geede.info -# ||gdmdigital.com^$third-party (easylistchina+easylist.txt: 36334) -.gdmdigital.com -# ||gayadnetwork.com^$third-party (easylistchina+easylist.txt: 36333) -.gayadnetwork.com -# ||gatikus.com^$third-party (easylistchina+easylist.txt: 36332) -.gatikus.com -# ||gate-ru.com^$third-party (easylistchina+easylist.txt: 36331) -.gate-ru.com -# ||garvmedia.com^$third-party (easylistchina+easylist.txt: 36330) -.garvmedia.com -# ||garristo.com^$third-party (easylistchina+easylist.txt: 36329) -.garristo.com -# ||gannett.gcion.com^$third-party (easylistchina+easylist.txt: 36328) -.gannett.gcion.com -# ||gandrad.org^$third-party (easylistchina+easylist.txt: 36327) -.gandrad.org -# ||gan.doubleclick.net^$third-party (easylistchina+easylist.txt: 36326) -.gan.doubleclick.net -# ||gamesrevenue.com^$third-party (easylistchina+easylist.txt: 36325) -.gamesrevenue.com -# ||gamesbannerexchange.com^$third-party (easylistchina+easylist.txt: 36324) -.gamesbannerexchange.com -# ||gamersbanner.com^$third-party (easylistchina+easylist.txt: 36323) -.gamersbanner.com -# ||gamersad.com^$third-party (easylistchina+easylist.txt: 36322) -.gamersad.com -# ||gamehotus.com^$third-party (easylistchina+easylist.txt: 36321) -.gamehotus.com -# ||gamecetera.com^$third-party (easylistchina+easylist.txt: 36320) -.gamecetera.com -# ||gameads.com^$third-party (easylistchina+easylist.txt: 36319) -.gameads.com -# ||game-clicks.com^$third-party (easylistchina+easylist.txt: 36318) -.game-clicks.com -# ||game-advertising-online.com^$third-party (easylistchina+easylist.txt: 36317) -.game-advertising-online.com -# ||gambling-affiliation.com^$third-party (easylistchina+easylist.txt: 36316) -.gambling-affiliation.com -# ||galleyn.com^$third-party (easylistchina+easylist.txt: 36315) -.galleyn.com -# ||gainmoneyfast.com^$third-party (easylistchina+easylist.txt: 36314) -.gainmoneyfast.com -# ||gagenez.com^$third-party (easylistchina+easylist.txt: 36313) -.gagenez.com -# ||gagacon.com^$third-party (easylistchina+easylist.txt: 36312) -.gagacon.com -# ||g4whisperermedia.com^$third-party (easylistchina+easylist.txt: 36311) -.g4whisperermedia.com -# ||g-cash.biz^$third-party (easylistchina+easylist.txt: 36310) -.g-cash.biz -# ||fxyc0dwa.com^$third-party (easylistchina+easylist.txt: 36309) -.fxyc0dwa.com -# ||fxdepo.com^$third-party (easylistchina+easylist.txt: 36308) -.fxdepo.com -# ||futureus.com^$third-party (easylistchina+easylist.txt: 36306) -.futureus.com -# ||futureresiduals.com^$third-party (easylistchina+easylist.txt: 36305) -.futureresiduals.com -# ||fusionads.net^$third-party (easylistchina+easylist.txt: 36304) -.fusionads.net -# ||funklicks.com^$third-party (easylistchina+easylist.txt: 36303) -.funklicks.com -# ||fulltraffic.net^$third-party (easylistchina+easylist.txt: 36302) -.fulltraffic.net -# ||ftv-publicite.fr^$third-party (easylistchina+easylist.txt: 36301) -.ftv-publicite.fr -# ||ftjcfx.com^$third-party (easylistchina+easylist.txt: 36300) -.ftjcfx.com -# ||fruitkings.com^$third-party (easylistchina+easylist.txt: 36299) -.fruitkings.com -# ||fromfriendswithlove.com^$third-party (easylistchina+easylist.txt: 36298) -.fromfriendswithlove.com -# ||friendlyduck.com^$third-party (easylistchina+easylist.txt: 36297) -.friendlyduck.com -# ||fresh8.co^$third-party (easylistchina+easylist.txt: 36296) -.fresh8.co -# ||freesoftwarelive.com^$third-party (easylistchina+easylist.txt: 36295) -.freesoftwarelive.com -# ||freeskreen.com^$third-party (easylistchina+easylist.txt: 36294) -.freeskreen.com -# ||freerotator.com^$third-party (easylistchina+easylist.txt: 36293) -.freerotator.com -# ||freepaidsurveyz.com^$third-party (easylistchina+easylist.txt: 36292) -.freepaidsurveyz.com -# ||freedownloadsoft.net^$third-party (easylistchina+easylist.txt: 36291) -.freedownloadsoft.net -# ||freecouponbiz.com^$third-party (easylistchina+easylist.txt: 36290) -.freecouponbiz.com -# ||freebiesurveys.com^$third-party (easylistchina+easylist.txt: 36289) -.freebiesurveys.com -# ||freebannerswap.co.uk^$third-party (easylistchina+easylist.txt: 36288) -.freebannerswap.co.uk -# ||frameptp.com^$third-party (easylistchina+easylist.txt: 36287) -.frameptp.com -# ||forrestersurveys.com^$third-party (easylistchina+easylist.txt: 36286) -.forrestersurveys.com -# ||forpyke.com^$third-party (easylistchina+easylist.txt: 36285) -.forpyke.com -# ||forifiha.com^$third-party (easylistchina+easylist.txt: 36284) -.forifiha.com -# ||forexyard.com^$third-party (easylistchina+easylist.txt: 36283) -.forexyard.com -# ||forex-affiliate.net^$third-party (easylistchina+easylist.txt: 36282) -.forex-affiliate.net -# ||forex-affiliate.com^$third-party (easylistchina+easylist.txt: 36281) -.forex-affiliate.com -# ||forcepprofile.com^$third-party (easylistchina+easylist.txt: 36280) -.forcepprofile.com -# ||forced-lose.de^$third-party (easylistchina+easylist.txt: 36279) -.forced-lose.de -# ||footnote.com^$third-party (easylistchina+easylist.txt: 36278) -.footnote.com -# ||footerslideupad.com^$third-party (easylistchina+easylist.txt: 36277) -.footerslideupad.com -# ||footar.com^$third-party (easylistchina+easylist.txt: 36276) -.footar.com -# ||foonad.com^$third-party (easylistchina+easylist.txt: 36275) -.foonad.com -# ||foodieblogroll.com^$third-party (easylistchina+easylist.txt: 36274) -.foodieblogroll.com -# ||focre.info^$third-party (easylistchina+easylist.txt: 36273) -.focre.info -# ||focalex.com^$third-party (easylistchina+easylist.txt: 36272) -.focalex.com -# ||fmsads.com^$third-party (easylistchina+easylist.txt: 36271) -.fmsads.com -# ||fmpub.net^$third-party (easylistchina+easylist.txt: 36270) -.fmpub.net -# ||flymyads.com^$third-party (easylistchina+easylist.txt: 36269) -.flymyads.com -# ||flyertown.ca^$third-party (easylistchina+easylist.txt: 36268) -.flyertown.ca -# ||fluxads.com^$third-party (easylistchina+easylist.txt: 36267) -.fluxads.com -# ||fluidads.co^$third-party (easylistchina+easylist.txt: 36266) -.fluidads.co -# ||flomigo.com^$third-party (easylistchina+easylist.txt: 36265) -.flomigo.com -# ||flodonas.com^$third-party (easylistchina+easylist.txt: 36264) -.flodonas.com -# ||fllwert.net^$third-party (easylistchina+easylist.txt: 36263) -.fllwert.net -# ||flite.com^$third-party (easylistchina+easylist.txt: 36262) -.flite.com -# ||fliionos.co.uk^$third-party (easylistchina+easylist.txt: 36261) -.fliionos.co.uk -# ||flexlinks.com^$third-party (easylistchina+easylist.txt: 36260) -.flexlinks.com -# ||flashtalking.com^$third-party (easylistchina+easylist.txt: 36259) -.flashtalking.com -# ||flashclicks.com^$third-party (easylistchina+easylist.txt: 36258) -.flashclicks.com -# ||flappysquid.net^$third-party (easylistchina+easylist.txt: 36257) -.flappysquid.net -# ||flappyhamster.net^$third-party (easylistchina+easylist.txt: 36256) -.flappyhamster.net -# ||flappybadger.net^$third-party (easylistchina+easylist.txt: 36255) -.flappybadger.net -# ||flagads.net^$third-party (easylistchina+easylist.txt: 36254) -.flagads.net -# ||fl-ads.com^$third-party (easylistchina+easylist.txt: 36253) -.fl-ads.com -# ||fixionmedia.com^$third-party (easylistchina+easylist.txt: 36252) -.fixionmedia.com -# ||fisari.com^$third-party (easylistchina+easylist.txt: 36251) -.fisari.com -# ||firstlightera.com^$third-party (easylistchina+easylist.txt: 36250) -.firstlightera.com -# ||firstimpression.io^$third-party (easylistchina+easylist.txt: 36249) -.firstimpression.io -# ||firstadsolution.com^$third-party (easylistchina+easylist.txt: 36248) -.firstadsolution.com -# ||first-rate.com^$third-party (easylistchina+easylist.txt: 36247) -.first-rate.com -# ||firmharborlinked.com^$third-party (easylistchina+easylist.txt: 36246) -.firmharborlinked.com -# ||firegob.com^$third-party (easylistchina+easylist.txt: 36245) -.firegob.com -# ||firefeeder.com^$third-party (easylistchina+easylist.txt: 36244) -.firefeeder.com -# ||firaxtech.com^$third-party (easylistchina+easylist.txt: 36243) -.firaxtech.com -# ||findsthat.com^$third-party (easylistchina+easylist.txt: 36242) -.findsthat.com -# ||findbestsolution.net^$third-party (easylistchina+easylist.txt: 36241) -.findbestsolution.net -# ||find-cheap-hotels.org^$third-party (easylistchina+easylist.txt: 36240) -.find-cheap-hotels.org -# ||find-abc.com^$third-party (easylistchina+easylist.txt: 36239) -.find-abc.com -# ||finalanypar.link^$third-party (easylistchina+easylist.txt: 36238) -.finalanypar.link -# ||fimserve.com^$third-party (easylistchina+easylist.txt: 36237) -.fimserve.com -# ||filtermomosearch.com^$third-party (easylistchina+easylist.txt: 36236) -.filtermomosearch.com -# ||filetarget.com^$third-party (easylistchina+easylist.txt: 36235) -.filetarget.com -# ||fidel.to^$third-party (easylistchina+easylist.txt: 36234) -.fidel.to -# ||fenixm.com^$third-party (easylistchina+easylist.txt: 36233) -.fenixm.com -# ||feljack.com^$third-party (easylistchina+easylist.txt: 36232) -.feljack.com -# ||feed-ads.com^$third-party (easylistchina+easylist.txt: 36231) -.feed-ads.com -# ||featurelink.com^$third-party (easylistchina+easylist.txt: 36230) -.featurelink.com -# ||featuredusers.com^$third-party (easylistchina+easylist.txt: 36229) -.featuredusers.com -# ||fbsvu.com^$third-party (easylistchina+easylist.txt: 36228) -.fbsvu.com -# ||fbgdc.com^$third-party (easylistchina+easylist.txt: 36227) -.fbgdc.com -# ||fb-plus.com^$third-party (easylistchina+easylist.txt: 36226) -.fb-plus.com -# ||fasttracktech.biz^$third-party (easylistchina+easylist.txt: 36225) -.fasttracktech.biz -# ||fastclick.net^$third-party (easylistchina+easylist.txt: 36224) -.fastclick.net -# ||fastates.net^$third-party (easylistchina+easylist.txt: 36223) -.fastates.net -# ||fastapi.net^$third-party (easylistchina+easylist.txt: 36222) -.fastapi.net -# ||fast2earn.com^$third-party (easylistchina+easylist.txt: 36221) -.fast2earn.com -# ||falkag.net^$third-party (easylistchina+easylist.txt: 36220) -.falkag.net -# ||fairadsnetwork.com^$third-party (easylistchina+easylist.txt: 36219) -.fairadsnetwork.com -# ||faggrim.com^$third-party (easylistchina+easylist.txt: 36218) -.faggrim.com -# ||ezoic.net^$third-party (easylistchina+easylist.txt: 36217) -.ezoic.net -# ||ezmob.com^$third-party (easylistchina+easylist.txt: 36216) -.ezmob.com -# ||ezadserver.net^$third-party (easylistchina+easylist.txt: 36215) -.ezadserver.net -# ||eyewonder.com^$third-party (easylistchina+easylist.txt: 36214) -.eyewonder.com -# ||eyewond.hs.llnwd.net^$third-party (easylistchina+easylist.txt: 36213) -.eyewond.hs.llnwd.net -# ||eyeviewads.com^$third-party (easylistchina+easylist.txt: 36212) -.eyeviewads.com -# ||eyereturn.com^$third-party (easylistchina+easylist.txt: 36211) -.eyereturn.com -# ||eyere.com^$third-party (easylistchina+easylist.txt: 36210) -.eyere.com -# ||extra33.com^$third-party (easylistchina+easylist.txt: 36209) -.extra33.com -# ||expresswebtraffic.com^$third-party (easylistchina+easylist.txt: 36208) -.expresswebtraffic.com -# ||exponential.com^$third-party (easylistchina+easylist.txt: 36207) -.exponential.com -# ||explainidentifycoding.info^$third-party (easylistchina+easylist.txt: 36206) -.explainidentifycoding.info -# ||exoneratedresignation.info^$third-party (easylistchina+easylist.txt: 36205) -.exoneratedresignation.info -# ||exoclick.com^$third-party (easylistchina+easylist.txt: 36204) -.exoclick.com -# ||exitjunction.com^$third-party (easylistchina+easylist.txt: 36203) -.exitjunction.com -# ||exitexplosion.com^$third-party (easylistchina+easylist.txt: 36202) -.exitexplosion.com -# ||exchange4media.com^$third-party (easylistchina+easylist.txt: 36201) -.exchange4media.com -# ||excellenceads.com^$third-party (easylistchina+easylist.txt: 36200) -.excellenceads.com -# ||exactdrive.com^$third-party (easylistchina+easylist.txt: 36199) -.exactdrive.com -# ||evolvenation.com^$third-party (easylistchina+easylist.txt: 36198) -.evolvenation.com -# ||evolvemediallc.com^$third-party (easylistchina+easylist.txt: 36197) -.evolvemediallc.com -# ||euz.net^$third-party (easylistchina+easylist.txt: 36196) -.euz.net -# ||euros4click.de^$third-party (easylistchina+easylist.txt: 36195) -.euros4click.de -# ||europacash.com^$third-party (easylistchina+easylist.txt: 36194) -.europacash.com -# ||euroclick.com^$third-party (easylistchina+easylist.txt: 36193) -.euroclick.com -# ||eurew.com^$third-party (easylistchina+easylist.txt: 36192) -.eurew.com -# ||etology.com^$third-party (easylistchina+easylist.txt: 36191) -.etology.com -# ||etmanly.ru^$third-party (easylistchina+easylist.txt: 36190) -.etmanly.ru -# ||etgdta.com^$third-party (easylistchina+easylist.txt: 36189) -.etgdta.com -# ||etargetnet.com^$third-party (easylistchina+easylist.txt: 36188) -.etargetnet.com -# ||essaycoupons.com^$third-party (easylistchina+easylist.txt: 36187) -.essaycoupons.com -# ||essayads.com^$third-party (easylistchina+easylist.txt: 36186) -.essayads.com -# ||especifican.com^$third-party (easylistchina+easylist.txt: 36185) -.especifican.com -# ||escokuro.com^$third-party (easylistchina+easylist.txt: 36184) -.escokuro.com -# ||escale.to^$third-party (easylistchina+easylist.txt: 36183) -.escale.to -# ||escalatenetwork.com^$third-party (easylistchina+easylist.txt: 36182) -.escalatenetwork.com -# ||erovinmo.com^$third-party (easylistchina+easylist.txt: 36181) -.erovinmo.com -# ||erovation.com^$third-party (easylistchina+easylist.txt: 36180) -.erovation.com -# ||ero-advertising.com^$third-party (easylistchina+easylist.txt: 36179) -.ero-advertising.com -# ||ergoledo.com^$third-party (easylistchina+easylist.txt: 36178) -.ergoledo.com -# ||ergodob.ru^$third-party (easylistchina+easylist.txt: 36177) -.ergodob.ru -# ||ergerww.net^$third-party (easylistchina+easylist.txt: 36176) -.ergerww.net -# ||erendri.com^$third-party (easylistchina+easylist.txt: 36175) -.erendri.com -# ||erado.org^$third-party (easylistchina+easylist.txt: 36174) -.erado.org -# ||eqads.com^$third-party (easylistchina+easylist.txt: 36173) -.eqads.com -# ||eptum.com^$third-party (easylistchina+easylist.txt: 36172) -.eptum.com -# ||eptord.com^$third-party (easylistchina+easylist.txt: 36171) -.eptord.com -# ||epnredirect.ru^$third-party (easylistchina+easylist.txt: 36170) -.epnredirect.ru -# ||epicgameads.com^$third-party (easylistchina+easylist.txt: 36169) -.epicgameads.com -# ||eosads.com^$third-party (easylistchina+easylist.txt: 36168) -.eosads.com -# ||entrecard.s3.amazonaws.com^$third-party (easylistchina+easylist.txt: 36167) -.entrecard.s3.amazonaws.com -# ||entrecard.com^$third-party (easylistchina+easylist.txt: 36166) -.entrecard.com -# ||enterads.com^$third-party (easylistchina+easylist.txt: 36165) -.enterads.com -# ||enlnks.com^$third-party (easylistchina+easylist.txt: 36164) -.enlnks.com -# ||engineseeker.com^$third-party (easylistchina+easylist.txt: 36163) -.engineseeker.com -# ||emptyspaceads.com^$third-party (easylistchina+easylist.txt: 36162) -.emptyspaceads.com -# ||employers-freshly.org^$third-party (easylistchina+easylist.txt: 36161) -.employers-freshly.org -# ||empiremoney.com^$third-party (easylistchina+easylist.txt: 36160) -.empiremoney.com -# ||emediate.se^$third-party (easylistchina+easylist.txt: 36159) -.emediate.se -# ||emediate.eu^$third-party (easylistchina+easylist.txt: 36158) -.emediate.eu -# ||emediate.dk^$third-party (easylistchina+easylist.txt: 36157) -.emediate.dk -# ||emediate.ch^$third-party (easylistchina+easylist.txt: 36156) -.emediate.ch -# ||emberads.com^$third-party (easylistchina+easylist.txt: 36155) -.emberads.com -# ||elvate.net^$third-party (easylistchina+easylist.txt: 36154) -.elvate.net -# ||elefantsearch.com^$third-party (easylistchina+easylist.txt: 36153) -.elefantsearch.com -# ||electnext.com^$third-party (easylistchina+easylist.txt: 36152) -.electnext.com -# ||elasticad.net^$third-party (easylistchina+easylist.txt: 36151) -.elasticad.net -# ||ektezis.ru^$third-party (easylistchina+easylist.txt: 36150) -.ektezis.ru -# ||ekmas.com^$third-party (easylistchina+easylist.txt: 36149) -.ekmas.com -# ||egamingonline.com^$third-party (easylistchina+easylist.txt: 36148) -.egamingonline.com -# ||effectivemeasure.net^$third-party (easylistchina+easylist.txt: 36147) -.effectivemeasure.net -# ||eedr.org^$third-party (easylistchina+easylist.txt: 36146) -.eedr.org -# ||edomz.net^$third-party (easylistchina+easylist.txt: 36145) -.edomz.net -# ||edgevertise.com^$third-party (easylistchina+easylist.txt: 36144) -.edgevertise.com -# ||edgeads.org^$third-party (easylistchina+easylist.txt: 36143) -.edgeads.org -# ||ecpmrocks.com^$third-party (easylistchina+easylist.txt: 36142) -.ecpmrocks.com -# ||ebz.io^$third-party (easylistchina+easylist.txt: 36141) -.ebz.io -# ||ebuzzing.com^$third-party (easylistchina+easylist.txt: 36140) -.ebuzzing.com -# ||eblastengine.com^$third-party (easylistchina+easylist.txt: 36139) -.eblastengine.com -# ||ebayobjects.com^$third-party (easylistchina+easylist.txt: 36138) -.ebayobjects.com -# ||ebayobjects.com.au^$third-party (easylistchina+easylist.txt: 36137) -.ebayobjects.com.au -# ||ebannertraffic.com^$third-party (easylistchina+easylist.txt: 36136) -.ebannertraffic.com -# ||easyinline.com^$third-party (easylistchina+easylist.txt: 36135) -.easyinline.com -# ||easyhits4u.com^$third-party (easylistchina+easylist.txt: 36134) -.easyhits4u.com -# ||easyflirt-partners.biz^$third-party (easylistchina+easylist.txt: 36133) -.easyflirt-partners.biz -# ||easydownload4you.com^$third-party (easylistchina+easylist.txt: 36132) -.easydownload4you.com -# ||easyad.com^$third-party (easylistchina+easylist.txt: 36131) -.easyad.com -# ||easy-adserver.com^$third-party (easylistchina+easylist.txt: 36130) -.easy-adserver.com -# ||earnify.com^$third-party (easylistchina+easylist.txt: 36129) -.earnify.com -# ||eads.to^$third-party (easylistchina+easylist.txt: 36128) -.eads.to -# ||eads-adserving.com^$third-party (easylistchina+easylist.txt: 36127) -.eads-adserving.com -# ||e9mlrvy1.com^$third-party (easylistchina+easylist.txt: 36126) -.e9mlrvy1.com -# ||e2yth.tv^$third-party (easylistchina+easylist.txt: 36125) -.e2yth.tv -# ||e-viral.com^$third-party (easylistchina+easylist.txt: 36124) -.e-viral.com -# ||e-planning.net^$third-party (easylistchina+easylist.txt: 36123) -.e-planning.net -# ||e-generator.com^$third-party (easylistchina+easylist.txt: 36122) -.e-generator.com -# ||e-find.co^$third-party (easylistchina+easylist.txt: 36121) -.e-find.co -# ||dynamitedata.com^$third-party (easylistchina+easylist.txt: 36120) -.dynamitedata.com -# ||dynamicoxygen.com^$third-party (easylistchina+easylist.txt: 36119) -.dynamicoxygen.com -# ||dyino.com^$third-party (easylistchina+easylist.txt: 36118) -.dyino.com -# ||dvaminusodin.net^$third-party (easylistchina+easylist.txt: 36117) -.dvaminusodin.net -# ||durtz.com^$third-party (easylistchina+easylist.txt: 36116) -.durtz.com -# ||durokuro.com^$third-party (easylistchina+easylist.txt: 36115) -.durokuro.com -# ||durnowar.com^$third-party (easylistchina+easylist.txt: 36114) -.durnowar.com -# ||dumedia.ru^$third-party (easylistchina+easylist.txt: 36113) -.dumedia.ru -# ||duggiads.com^$third-party (easylistchina+easylist.txt: 36112) -.duggiads.com -# ||duetads.com^$third-party (easylistchina+easylist.txt: 36111) -.duetads.com -# ||dudelsa.com^$third-party (easylistchina+easylist.txt: 36110) -.dudelsa.com -# ||dualmarket.info^$third-party (easylistchina+easylist.txt: 36109) -.dualmarket.info -# ||dtzads.com^$third-party (easylistchina+easylist.txt: 36108) -.dtzads.com -# ||dtmpub.com^$third-party (easylistchina+easylist.txt: 36107) -.dtmpub.com -# ||dsultra.com^$third-party (easylistchina+easylist.txt: 36104) -.dsultra.com -# ||dsnr-affiliates.com^$third-party (easylistchina+easylist.txt: 36103) -.dsnr-affiliates.com -# ||dsnextgen.com^$third-party (easylistchina+easylist.txt: 36102) -.dsnextgen.com -# ||dsero.net^$third-party (easylistchina+easylist.txt: 36101) -.dsero.net -# ||drowle.com^$third-party (easylistchina+easylist.txt: 36100) -.drowle.com -# ||dreamsearch.or.kr^$third-party (easylistchina+easylist.txt: 36099) -.dreamsearch.or.kr -# ||dreamaquarium.com^$third-party (easylistchina+easylist.txt: 36098) -.dreamaquarium.com -# ||dpstack.com^$third-party (easylistchina+easylist.txt: 36097) -.dpstack.com -# ||dpsrexor.com^$third-party (easylistchina+easylist.txt: 36096) -.dpsrexor.com -# ||dpmsrv.com^$third-party (easylistchina+easylist.txt: 36095) -.dpmsrv.com -# ||dpbolvw.net^$third-party (easylistchina+easylist.txt: 36094) -.dpbolvw.net -# ||dp25.kr^$third-party (easylistchina+easylist.txt: 36093) -.dp25.kr -# ||downsonglyrics.com^$third-party (easylistchina+easylist.txt: 36092) -.downsonglyrics.com -# ||downloadboutique.com^$third-party (easylistchina+easylist.txt: 36091) -.downloadboutique.com -# ||down1oads.com^$third-party (easylistchina+easylist.txt: 36090) -.down1oads.com -# ||doubleverify.com^$third-party (easylistchina+easylist.txt: 36089) -.doubleverify.com -# ||doublerecall.com^$third-party (easylistchina+easylist.txt: 36088) -.doublerecall.com -# ||doublerads.com^$third-party (easylistchina+easylist.txt: 36087) -.doublerads.com -# ||doublepimp.com^$third-party (easylistchina+easylist.txt: 36086) -.doublepimp.com -# ||doublemax.net^$third-party (easylistchina+easylist.txt: 36085) -.doublemax.net -# ||doubleclicks.me^$third-party (easylistchina+easylist.txt: 36084) -.doubleclicks.me -# ||doubleclickbygoogle.com^$third-party (easylistchina+easylist.txt: 36083) -.doubleclickbygoogle.com -# ||doubleclick.net^*;afv_flvurl=http://cdn.c.ooyala.com/$third-party (easylistchina+easylist.txt: 36082) -.doubleclick.net/.*;afv_flvurl=http://cdn\.c\.ooyala\.com/ -# ||doubleclick.net^*/pfadx/team.sd/$third-party (easylistchina+easylist.txt: 36081) -.doubleclick.net/.*/pfadx/team\.sd/ -# ||doubleclick.net^*/pfadx/team.dal/$third-party (easylistchina+easylist.txt: 36080) -.doubleclick.net/.*/pfadx/team\.dal/ -# ||doubleclick.net^*/pfadx/team.car/$third-party (easylistchina+easylist.txt: 36079) -.doubleclick.net/.*/pfadx/team\.car/ -# ||doubleclick.net^*/pfadx/ssp.wews/$third-party (easylistchina+easylist.txt: 36078) -.doubleclick.net/.*/pfadx/ssp\.wews/ -# ||doubleclick.net^*/pfadx/muzumain/$third-party (easylistchina+easylist.txt: 36077) -.doubleclick.net/.*/pfadx/muzumain/ -# ||doubleclick.net^*/pfadx/ibs.orl.news/$third-party (easylistchina+easylist.txt: 36076) -.doubleclick.net/.*/pfadx/ibs\.orl\.news/ -# ||doubleclick.net^*/pfadx/embed.ytpwatch.$third-party (easylistchina+easylist.txt: 36075) -.doubleclick.net/.*/pfadx/embed\.ytpwatch\. -# ||doubleclick.net^*/pfadx/com.ytpwatch.$third-party (easylistchina+easylist.txt: 36074) -.doubleclick.net/.*/pfadx/com\.ytpwatch\. -# ||doubleclick.net^*/pfadx/cmn_complextv/$third-party (easylistchina+easylist.txt: 36073) -.doubleclick.net/.*/pfadx/cmn_complextv/ -# ||doubleclick.net^*/pfadx/ccr.newyork.$third-party (easylistchina+easylist.txt: 36072) -.doubleclick.net/.*/pfadx/ccr\.newyork\. -# ||doubleclick.net/pfadx/www.tv3.co.nz$third-party (easylistchina+easylist.txt: 36066) -.doubleclick.net/pfadx/www\.tv3\.co\.nz -# ||doubleclick.net/pfadx/video.wsj.com/$third-party (easylistchina+easylist.txt: 36065) -.doubleclick.net/pfadx/video\.wsj\.com/ -# ||doubleclick.net/pfadx/video.marketwatch.com/$third-party (easylistchina+easylist.txt: 36064) -.doubleclick.net/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/pfadx/ugo.gv.1up/$third-party (easylistchina+easylist.txt: 36063) -.doubleclick.net/pfadx/ugo\.gv\.1up/ -# ||doubleclick.net/pfadx/trb.$third-party (easylistchina+easylist.txt: 36062) -.doubleclick.net/pfadx/trb\. -# ||doubleclick.net/pfadx/tmz.video.wb.dart/$third-party (easylistchina+easylist.txt: 36061) -.doubleclick.net/pfadx/tmz\.video\.wb\.dart/ -# ||doubleclick.net/pfadx/tmg.telegraph.$third-party (easylistchina+easylist.txt: 36060) -.doubleclick.net/pfadx/tmg\.telegraph\. -# ||doubleclick.net/pfadx/sugar.poptv/$third-party (easylistchina+easylist.txt: 36059) -.doubleclick.net/pfadx/sugar\.poptv/ -# ||doubleclick.net/pfadx/storm.no/$third-party (easylistchina+easylist.txt: 36058) -.doubleclick.net/pfadx/storm\.no/ -# ||doubleclick.net/pfadx/ssp.kgtv/$third-party (easylistchina+easylist.txt: 36057) -.doubleclick.net/pfadx/ssp\.kgtv/ -# ||doubleclick.net/pfadx/ng.videoplayer/$third-party (easylistchina+easylist.txt: 36056) -.doubleclick.net/pfadx/ng\.videoplayer/ -# ||doubleclick.net/pfadx/nfl.$third-party (easylistchina+easylist.txt: 36055) -.doubleclick.net/pfadx/nfl\. -# ||doubleclick.net/pfadx/ndm.tcm/$third-party (easylistchina+easylist.txt: 36054) -.doubleclick.net/pfadx/ndm\.tcm/ -# ||doubleclick.net/pfadx/nbcu.nhl/$third-party (easylistchina+easylist.txt: 36053) -.doubleclick.net/pfadx/nbcu\.nhl/ -# ||doubleclick.net/pfadx/nbcu.nhl.$third-party (easylistchina+easylist.txt: 36052) -.doubleclick.net/pfadx/nbcu\.nhl\. -# ||doubleclick.net/pfadx/nbcu.nbc/$third-party (easylistchina+easylist.txt: 36051) -.doubleclick.net/pfadx/nbcu\.nbc/ -# ||doubleclick.net/pfadx/muzuoffsite/$third-party (easylistchina+easylist.txt: 36050) -.doubleclick.net/pfadx/muzuoffsite/ -# ||doubleclick.net/pfadx/muzumain/$third-party (easylistchina+easylist.txt: 36049) -.doubleclick.net/pfadx/muzumain/ -# ||doubleclick.net/pfadx/miniclip.prevideo/$third-party (easylistchina+easylist.txt: 36048) -.doubleclick.net/pfadx/miniclip\.prevideo/ -# ||doubleclick.net/pfadx/miniclip.midvideo/$third-party (easylistchina+easylist.txt: 36047) -.doubleclick.net/pfadx/miniclip\.midvideo/ -# ||doubleclick.net/pfadx/mc.channelnewsasia.com^$third-party (easylistchina+easylist.txt: 36046) -.doubleclick.net/pfadx/mc\.channelnewsasia\.com[^\w%.-] -# ||doubleclick.net/pfadx/ltv.wtvr.video/$third-party (easylistchina+easylist.txt: 36045) -.doubleclick.net/pfadx/ltv\.wtvr\.video/ -# ||doubleclick.net/pfadx/intl.sps.com/$third-party (easylistchina+easylist.txt: 36044) -.doubleclick.net/pfadx/intl\.sps\.com/ -# ||doubleclick.net/pfadx/gn.movieweb.com/$third-party (easylistchina+easylist.txt: 36043) -.doubleclick.net/pfadx/gn\.movieweb\.com/ -# ||doubleclick.net/pfadx/ddm.ksl/$third-party (easylistchina+easylist.txt: 36042) -.doubleclick.net/pfadx/ddm\.ksl/ -# ||doubleclick.net/pfadx/ctv.spacecast/$third-party (easylistchina+easylist.txt: 36041) -.doubleclick.net/pfadx/ctv\.spacecast/ -# ||doubleclick.net/pfadx/ctv.muchmusic.com/$third-party (easylistchina+easylist.txt: 36040) -.doubleclick.net/pfadx/ctv\.muchmusic\.com/ -# ||doubleclick.net/pfadx/ctv.ctvwatch.ca/$third-party (easylistchina+easylist.txt: 36039) -.doubleclick.net/pfadx/ctv\.ctvwatch\.ca/ -# ||doubleclick.net/pfadx/csn.$third-party (easylistchina+easylist.txt: 36038) -.doubleclick.net/pfadx/csn\. -# ||doubleclick.net/pfadx/comedycentral.$third-party (easylistchina+easylist.txt: 36037) -.doubleclick.net/pfadx/comedycentral\. -# ||doubleclick.net/pfadx/ccr.$third-party (easylistchina+easylist.txt: 36036) -.doubleclick.net/pfadx/ccr\. -# ||doubleclick.net/pfadx/CBS.$third-party (easylistchina+easylist.txt: 36035) -.doubleclick.net/pfadx/CBS\. -# ||doubleclick.net/pfadx/cblvsn.nwsd.videogallery/$third-party (easylistchina+easylist.txt: 36034) -.doubleclick.net/pfadx/cblvsn\.nwsd\.videogallery/ -# ||doubleclick.net/pfadx/bzj.bizjournals/$third-party (easylistchina+easylist.txt: 36033) -.doubleclick.net/pfadx/bzj\.bizjournals/ -# ||doubleclick.net/pfadx/blp.video/midroll$third-party (easylistchina+easylist.txt: 36032) -.doubleclick.net/pfadx/blp\.video/midroll -# ||doubleclick.net/pfadx/bet.com/$third-party (easylistchina+easylist.txt: 36031) -.doubleclick.net/pfadx/bet\.com/ -# ||doubleclick.net/pfadx/belo.king5.pre/$third-party (easylistchina+easylist.txt: 36030) -.doubleclick.net/pfadx/belo\.king5\.pre/ -# ||doubleclick.net/pfadx/aetn.aetv.shows/$third-party (easylistchina+easylist.txt: 36029) -.doubleclick.net/pfadx/aetn\.aetv\.shows/ -# ||doubleclick.net/pfadx/*CBSINTERACTIVE/$third-party (easylistchina+easylist.txt: 36028) -.doubleclick.net/pfadx/.*CBSINTERACTIVE/ -# ||doubleclick.net/pfadx/*adcat=$third-party (easylistchina+easylist.txt: 36027) -.doubleclick.net/pfadx/.*adcat= -# ||doubleclick.net/pfadx/*/kidstv/$third-party (easylistchina+easylist.txt: 36026) -.doubleclick.net/pfadx/.*/kidstv/ -# ||doubleclick.net/pfadx/*.WALTDISNEYINTERNETGROU/$third-party (easylistchina+easylist.txt: 36025) -.doubleclick.net/pfadx/.*\.WALTDISNEYINTERNETGROU/ -# ||doubleclick.net/pfadx/*.VIACOMINTERNATIONAL/$third-party (easylistchina+easylist.txt: 36024) -.doubleclick.net/pfadx/.*\.VIACOMINTERNATIONAL/ -# ||doubleclick.net/pfadx/*.sevenload.com_$third-party (easylistchina+easylist.txt: 36023) -.doubleclick.net/pfadx/.*\.sevenload\.com_ -# ||doubleclick.net/pfadx/*.reuters/$third-party (easylistchina+easylist.txt: 36022) -.doubleclick.net/pfadx/.*\.reuters/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL/$third-party (easylistchina+easylist.txt: 36021) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL-CNBC/$third-party (easylistchina+easylist.txt: 36020) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL-CNBC/ -# ||doubleclick.net/pfadx/*.NBCUNI.COM/$third-party (easylistchina+easylist.txt: 36019) -.doubleclick.net/pfadx/.*\.NBCUNI\.COM/ -# ||doubleclick.net/pfadx/*.nbc.com/$third-party (easylistchina+easylist.txt: 36018) -.doubleclick.net/pfadx/.*\.nbc\.com/ -# ||doubleclick.net/pfadx/*.muzu/$third-party (easylistchina+easylist.txt: 36017) -.doubleclick.net/pfadx/.*\.muzu/ -# ||doubleclick.net/pfadx/*.mtvi$third-party (easylistchina+easylist.txt: 36016) -.doubleclick.net/pfadx/.*\.mtvi -# ||doubleclick.net/pfadx/*.MTV-Viacom/$third-party (easylistchina+easylist.txt: 36015) -.doubleclick.net/pfadx/.*\.MTV-Viacom/ -# ||doubleclick.net/pfadx/*.MCNONLINE/$third-party (easylistchina+easylist.txt: 36014) -.doubleclick.net/pfadx/.*\.MCNONLINE/ -# ||doubleclick.net/pfadx/*.ESPN/$third-party (easylistchina+easylist.txt: 36013) -.doubleclick.net/pfadx/.*\.ESPN/ -# ||doubleclick.net/pfadx/*.BLIPTV/$third-party (easylistchina+easylist.txt: 36012) -.doubleclick.net/pfadx/.*\.BLIPTV/ -# ||doubleclick.net/pfadx/*.ABC.com/$third-party (easylistchina+easylist.txt: 36011) -.doubleclick.net/pfadx/.*\.ABC\.com/ -# ||doubleclick.net/N6872/pfadx/shaw.mylifetimetv.ca/$third-party (easylistchina+easylist.txt: 36010) -.doubleclick.net/N6872/pfadx/shaw\.mylifetimetv\.ca/ -# ||doubleclick.net/N6088/pfadx/ssp.kshb/$third-party (easylistchina+easylist.txt: 36009) -.doubleclick.net/N6088/pfadx/ssp\.kshb/ -# ||doubleclick.net/N5479/pfadx/ctv.$third-party (easylistchina+easylist.txt: 36008) -.doubleclick.net/N5479/pfadx/ctv\. -# ||doubleclick.net/N5202/pfadx/cmn_livemixtapes/$third-party (easylistchina+easylist.txt: 36007) -.doubleclick.net/N5202/pfadx/cmn_livemixtapes/ -# ||doubleclick.net/N4526/pfadx/*.muzu/$third-party (easylistchina+easylist.txt: 36006) -.doubleclick.net/N4526/pfadx/.*\.muzu/ -# ||doubleclick.net/N4117/pfadx/*.sbs.com.au/$third-party (easylistchina+easylist.txt: 36005) -.doubleclick.net/N4117/pfadx/.*\.sbs\.com\.au/ -# ||doubleclick.net/N3626/pfadx/thehothits.com.au/$third-party (easylistchina+easylist.txt: 36004) -.doubleclick.net/N3626/pfadx/thehothits\.com\.au/ -# ||doubleclick.net/N2/pfadx/video.wsj.com/$third-party (easylistchina+easylist.txt: 36003) -.doubleclick.net/N2/pfadx/video\.wsj\.com/ -# ||doubleclick.net/N2/pfadx/video.allthingsd.com/$third-party (easylistchina+easylist.txt: 36001) -.doubleclick.net/N2/pfadx/video\.allthingsd\.com/ -# ||doubleclick.net/N2/pfadx/video.*.wsj.com/$third-party (easylistchina+easylist.txt: 36000) -.doubleclick.net/N2/pfadx/video\..*\.wsj\.com/ -# ||doubleclick.net/adx/wn.nat.$third-party (easylistchina+easylist.txt: 35998) -.doubleclick.net/adx/wn\.nat\. -# ||doubleclick.net/adx/wn.loc.$third-party (easylistchina+easylist.txt: 35997) -.doubleclick.net/adx/wn\.loc\. -# ||doubleclick.net/adx/tsg.$third-party (easylistchina+easylist.txt: 35996) -.doubleclick.net/adx/tsg\. -# ||doubleclick.net/adx/ibs.$third-party (easylistchina+easylist.txt: 35995) -.doubleclick.net/adx/ibs\. -# ||doubleclick.net/adx/CBS.$third-party (easylistchina+easylist.txt: 35994) -.doubleclick.net/adx/CBS\. -# ||doubleclick.net/adx/*.ted/$third-party (easylistchina+easylist.txt: 35993) -.doubleclick.net/adx/.*\.ted/ -# ||doubleclick.net/adx/*.NPR/$third-party (easylistchina+easylist.txt: 35992) -.doubleclick.net/adx/.*\.NPR/ -# ||doubleclick.net/adx/*.NPR.MUSIC/$third-party (easylistchina+easylist.txt: 35991) -.doubleclick.net/adx/.*\.NPR\.MUSIC/ -# ||doubleclick.net/adx/*.collegehumor/$third-party (easylistchina+easylist.txt: 35990) -.doubleclick.net/adx/.*\.collegehumor/ -# ||doubleclick.net/adj/*.collegehumor/sec=videos_originalcontent;$third-party (easylistchina+easylist.txt: 35988) -.doubleclick.net/adj/.*\.collegehumor/sec=videos_originalcontent; -# ||doubleclick.net/ad/$third-party (easylistchina+easylist.txt: 35985) -.doubleclick.net/ad/ -# ||doubleclick.net/*/pfadx/lin.$third-party (easylistchina+easylist.txt: 35984) -.doubleclick.net/.*/pfadx/lin\. -# ||doubleclick.net/*/ch_news.com/$third-party (easylistchina+easylist.txt: 35983) -.doubleclick.net/.*/ch_news\.com/ -# ||doubleclick.com^$third-party (easylistchina+easylist.txt: 35982) -.doubleclick.com -# ||double.net^$third-party (easylistchina+easylist.txt: 35981) -.double.net -# ||dotandad.com^$third-party (easylistchina+easylist.txt: 35980) -.dotandad.com -# ||dorenga.com^$third-party (easylistchina+easylist.txt: 35979) -.dorenga.com -# ||doomail.org^$third-party (easylistchina+easylist.txt: 35978) -.doomail.org -# ||doogleonduty.com^$third-party (easylistchina+easylist.txt: 35977) -.doogleonduty.com -# ||dooc.info^$third-party (easylistchina+easylist.txt: 35976) -.dooc.info -# ||domdex.com^$third-party (easylistchina+easylist.txt: 35975) -.domdex.com -# ||domainsponsor.com^$third-party (easylistchina+easylist.txt: 35974) -.domainsponsor.com -# ||domainbuyingservices.com^$third-party (easylistchina+easylist.txt: 35973) -.domainbuyingservices.com -# ||domainadvertising.com^$third-party (easylistchina+easylist.txt: 35972) -.domainadvertising.com -# ||dollarsponsor.com^$third-party (easylistchina+easylist.txt: 35971) -.dollarsponsor.com -# ||dollarade.com^$third-party (easylistchina+easylist.txt: 35970) -.dollarade.com -# ||document4u.info^$third-party (easylistchina+easylist.txt: 35969) -.document4u.info -# ||dntrck.com^$third-party (easylistchina+easylist.txt: 35968) -.dntrck.com -# ||dmu20vut.com^$third-party (easylistchina+easylist.txt: 35967) -.dmu20vut.com -# ||dl-rms.com^$third-party (easylistchina+easylist.txt: 35966) -.dl-rms.com -# ||dj-updates.com^$third-party (easylistchina+easylist.txt: 35965) -.dj-updates.com -# ||districtm.ca^$third-party (easylistchina+easylist.txt: 35964) -.districtm.ca -# ||distilled.ie^$third-party (easylistchina+easylist.txt: 35963) -.distilled.ie -# ||dispop.com^$third-party (easylistchina+easylist.txt: 35962) -.dispop.com -# ||directtrk.com^$third-party (easylistchina+easylist.txt: 35961) -.directtrk.com -# ||directtrack.com^$third-party (easylistchina+easylist.txt: 35960) -.directtrack.com -# ||directrev.com^$third-party (easylistchina+easylist.txt: 35959) -.directrev.com -# ||directorym.com^$third-party (easylistchina+easylist.txt: 35958) -.directorym.com -# ||directoral.info^$third-party (easylistchina+easylist.txt: 35957) -.directoral.info -# ||directleads.com^$third-party (easylistchina+easylist.txt: 35956) -.directleads.com -# ||directile.net^$third-party (easylistchina+easylist.txt: 35955) -.directile.net -# ||directile.info^$third-party (easylistchina+easylist.txt: 35954) -.directile.info -# ||directaclick.com^$third-party (easylistchina+easylist.txt: 35953) -.directaclick.com -# ||dinclinx.com^$third-party (easylistchina+easylist.txt: 35951) -.dinclinx.com -# ||digitrevenue.com^$third-party (easylistchina+easylist.txt: 35950) -.digitrevenue.com -# ||digipathmedia.com^$third-party (easylistchina+easylist.txt: 35949) -.digipathmedia.com -# ||dianomioffers.co.uk^$third-party (easylistchina+easylist.txt: 35948) -.dianomioffers.co.uk -# ||diamondtraff.com^$third-party (easylistchina+easylist.txt: 35947) -.diamondtraff.com -# ||dhundora.com^$third-party (easylistchina+easylist.txt: 35946) -.dhundora.com -# ||dgmaxinteractive.com^$third-party (easylistchina+easylist.txt: 35945) -.dgmaxinteractive.com -# ||dgmaustralia.com^$third-party (easylistchina+easylist.txt: 35944) -.dgmaustralia.com -# ||dgmatix.com^$third-party (easylistchina+easylist.txt: 35943) -.dgmatix.com -# ||dexplatform.com^$third-party (easylistchina+easylist.txt: 35942) -.dexplatform.com -# ||deximedia.com^$third-party (easylistchina+easylist.txt: 35941) -.deximedia.com -# ||developermedia.com^$third-party (easylistchina+easylist.txt: 35940) -.developermedia.com -# ||detroposal.com^$third-party (easylistchina+easylist.txt: 35939) -.detroposal.com -# ||destinationurl.com^$third-party (easylistchina+easylist.txt: 35938) -.destinationurl.com -# ||derlatas.com^$third-party (easylistchina+easylist.txt: 35937) -.derlatas.com -# ||deriversal.com^$third-party (easylistchina+easylist.txt: 35936) -.deriversal.com -# ||deployads.com^$third-party (easylistchina+easylist.txt: 35935) -.deployads.com -# ||deplayer.net^$third-party (easylistchina+easylist.txt: 35934) -.deplayer.net -# ||delnapb.com^$third-party (easylistchina+easylist.txt: 35933) -.delnapb.com -# ||delivery51.com^$third-party (easylistchina+easylist.txt: 35932) -.delivery51.com -# ||delivery49.com^$third-party (easylistchina+easylist.txt: 35931) -.delivery49.com -# ||delivery47.com^$third-party (easylistchina+easylist.txt: 35930) -.delivery47.com -# ||delivery45.com^$third-party (easylistchina+easylist.txt: 35929) -.delivery45.com -# ||dehtale.ru^$third-party (easylistchina+easylist.txt: 35928) -.dehtale.ru -# ||deguiste.com^$third-party (easylistchina+easylist.txt: 35927) -.deguiste.com -# ||defaultimg.com^$third-party (easylistchina+easylist.txt: 35926) -.defaultimg.com -# ||deepmetrix.com^$third-party (easylistchina+easylist.txt: 35925) -.deepmetrix.com -# ||dedicatednetworks.com^$third-party (easylistchina+easylist.txt: 35924) -.dedicatednetworks.com -# ||dedicatedmedia.com^$third-party (easylistchina+easylist.txt: 35923) -.dedicatedmedia.com -# ||decknetwork.net^$third-party (easylistchina+easylist.txt: 35922) -.decknetwork.net -# ||decisionnews.com^$third-party (easylistchina+easylist.txt: 35921) -.decisionnews.com -# ||decisionmark.com^$third-party (easylistchina+easylist.txt: 35920) -.decisionmark.com -# ||dealcurrent.com^$third-party (easylistchina+easylist.txt: 35919) -.dealcurrent.com -# ||dbclix.com^$third-party (easylistchina+easylist.txt: 35918) -.dbclix.com -# ||dbbsrv.com^$third-party (easylistchina+easylist.txt: 35917) -.dbbsrv.com -# ||dazhantai.com^$third-party (easylistchina+easylist.txt: 35916) -.dazhantai.com -# ||datumreact.com^$third-party (easylistchina+easylist.txt: 35915) -.datumreact.com -# ||datinggold.com^$third-party (easylistchina+easylist.txt: 35914) -.datinggold.com -# ||dating-banners.com^$third-party (easylistchina+easylist.txt: 35913) -.dating-banners.com -# ||data.adroll.com^$third-party (easylistchina+easylist.txt: 35912) -.data.adroll.com -# ||dashboardad.net^$third-party (easylistchina+easylist.txt: 35911) -.dashboardad.net -# ||dashbida.com^$third-party (easylistchina+easylist.txt: 35910) -.dashbida.com -# ||das5ku9q.com^$third-party (easylistchina+easylist.txt: 35909) -.das5ku9q.com -# ||darwarvid.com^$third-party (easylistchina+easylist.txt: 35908) -.darwarvid.com -# ||dapper.net^$third-party (easylistchina+easylist.txt: 35907) -.dapper.net -# ||danitabedtick.net^$third-party (easylistchina+easylist.txt: 35906) -.danitabedtick.net -# ||dadegid.ru^$third-party (easylistchina+easylist.txt: 35905) -.dadegid.ru -# ||da-ads.com^$third-party (easylistchina+easylist.txt: 35904) -.da-ads.com -# ||d2ship.com^$third-party (easylistchina+easylist.txt: 35903) -.d2ship.com -# ||d1110e4.se^$third-party (easylistchina+easylist.txt: 35902) -.d1110e4.se -# ||d03x2011.com^$third-party (easylistchina+easylist.txt: 35901) -.d03x2011.com -# ||d.m3.net^$third-party (easylistchina+easylist.txt: 35900) -.d.m3.net -# ||d.adroll.com^$third-party (easylistchina+easylist.txt: 35899) -.d.adroll.com -# ||czasnaherbate.info^$third-party (easylistchina+easylist.txt: 35898) -.czasnaherbate.info -# ||cygnus.com^$third-party (easylistchina+easylist.txt: 35897) -.cygnus.com -# ||cybmas.com^$third-party (easylistchina+easylist.txt: 35896) -.cybmas.com -# ||curtisfrierson.com^$third-party (easylistchina+easylist.txt: 35895) -.curtisfrierson.com -# ||currentlyobsessed.me^$third-party (easylistchina+easylist.txt: 35894) -.currentlyobsessed.me -# ||curancience.com^$third-party (easylistchina+easylist.txt: 35893) -.curancience.com -# ||cuelinks.com^$third-party (easylistchina+easylist.txt: 35892) -.cuelinks.com -# ||cubics.com^$third-party (easylistchina+easylist.txt: 35891) -.cubics.com -# ||ctrhub.com^$third-party (easylistchina+easylist.txt: 35890) -.ctrhub.com -# ||ctm-media.com^$third-party (easylistchina+easylist.txt: 35889) -.ctm-media.com -# ||ctenetwork.com^$third-party (easylistchina+easylist.txt: 35888) -.ctenetwork.com -# ||ctasnet.com^$third-party (easylistchina+easylist.txt: 35887) -.ctasnet.com -# ||cruiseworldinc.com^$third-party (easylistchina+easylist.txt: 35886) -.cruiseworldinc.com -# ||cruftexcision.xyz^$third-party (easylistchina+easylist.txt: 35885) -.cruftexcision.xyz -# ||crowdgravity.com^$third-party (easylistchina+easylist.txt: 35884) -.crowdgravity.com -# ||crowdgatheradnetwork.com^$third-party (easylistchina+easylist.txt: 35883) -.crowdgatheradnetwork.com -# ||crossrider.com^$third-party (easylistchina+easylist.txt: 35882) -.crossrider.com -# ||crispads.com^$third-party (easylistchina+easylist.txt: 35881) -.crispads.com -# ||creditcards15x.tk^$third-party (easylistchina+easylist.txt: 35880) -.creditcards15x.tk -# ||creative-serving.com^$third-party (easylistchina+easylist.txt: 35879) -.creative-serving.com -# ||crazyvideosempire.com^$third-party (easylistchina+easylist.txt: 35878) -.crazyvideosempire.com -# ||crazylead.com^$third-party (easylistchina+easylist.txt: 35877) -.crazylead.com -# ||crakmedia.com^$third-party (easylistchina+easylist.txt: 35876) -.crakmedia.com -# ||cpxinteractive.com^$third-party (easylistchina+easylist.txt: 35875) -.cpxinteractive.com -# ||cpxadroit.com^$third-party (easylistchina+easylist.txt: 35874) -.cpxadroit.com -# ||cpx24.com^$third-party (easylistchina+easylist.txt: 35873) -.cpx24.com -# ||cpvtgt.com^$third-party (easylistchina+easylist.txt: 35872) -.cpvtgt.com -# ||cpvmarketplace.info^$third-party (easylistchina+easylist.txt: 35871) -.cpvmarketplace.info -# ||cpvadvertise.com^$third-party (easylistchina+easylist.txt: 35870) -.cpvadvertise.com -# ||cpvads.com^$third-party (easylistchina+easylist.txt: 35869) -.cpvads.com -# ||cpulaptop.com^$third-party (easylistchina+easylist.txt: 35868) -.cpulaptop.com -# ||cpuim.com^$third-party (easylistchina+easylist.txt: 35867) -.cpuim.com -# ||cpmtree.com^$third-party (easylistchina+easylist.txt: 35866) -.cpmtree.com -# ||cpmstar.com^$third-party (easylistchina+easylist.txt: 35865) -.cpmstar.com -# ||cpmrocket.com^$third-party (easylistchina+easylist.txt: 35864) -.cpmrocket.com -# ||cpmmedia.net^$third-party (easylistchina+easylist.txt: 35863) -.cpmmedia.net -# ||cpmleader.com^$third-party (easylistchina+easylist.txt: 35862) -.cpmleader.com -# ||cpmaffiliation.com^$third-party (easylistchina+easylist.txt: 35861) -.cpmaffiliation.com -# ||cpmadvisors.com^$third-party (easylistchina+easylist.txt: 35860) -.cpmadvisors.com -# ||cpm.biz^$third-party (easylistchina+easylist.txt: 35859) -.cpm.biz -# ||cpfclassifieds.com^$third-party (easylistchina+easylist.txt: 35858) -.cpfclassifieds.com -# ||cpcadnet.com^$third-party (easylistchina+easylist.txt: 35857) -.cpcadnet.com -# ||cpays.com^$third-party (easylistchina+easylist.txt: 35856) -.cpays.com -# ||cpaway.com^$third-party (easylistchina+easylist.txt: 35855) -.cpaway.com -# ||cpanuk.com^$third-party (easylistchina+easylist.txt: 35854) -.cpanuk.com -# ||cpalock.com^$third-party (easylistchina+easylist.txt: 35853) -.cpalock.com -# ||cpalead.com^$third-party (easylistchina+easylist.txt: 35852) -.cpalead.com -# ||cpagrip.com^$third-party (easylistchina+easylist.txt: 35851) -.cpagrip.com -# ||cpaclickz.com^$third-party (easylistchina+easylist.txt: 35850) -.cpaclickz.com -# ||cpaclicks.com^$third-party (easylistchina+easylist.txt: 35849) -.cpaclicks.com -# ||cpabeyond.com^$third-party (easylistchina+easylist.txt: 35848) -.cpabeyond.com -# ||coupon2buy.com^$third-party (easylistchina+easylist.txt: 35846) -.coupon2buy.com -# ||coull.com^$third-party (easylistchina+easylist.txt: 35845) -.coull.com -# ||cosmjs.com^$third-party (easylistchina+easylist.txt: 35844) -.cosmjs.com -# ||cornflip.com^$third-party (easylistchina+easylist.txt: 35843) -.cornflip.com -# ||coretarget.co.uk^$third-party (easylistchina+easylist.txt: 35842) -.coretarget.co.uk -# ||cor-natty.com^$third-party (easylistchina+easylist.txt: 35841) -.cor-natty.com -# ||copacet.com^$third-party (easylistchina+easylist.txt: 35840) -.copacet.com -# ||coolmirage.com^$third-party (easylistchina+easylist.txt: 35839) -.coolmirage.com -# ||coolerads.com^$third-party (easylistchina+easylist.txt: 35838) -.coolerads.com -# ||contextweb.com^$third-party (easylistchina+easylist.txt: 35837) -.contextweb.com -# ||contextuads.com^$third-party (easylistchina+easylist.txt: 35836) -.contextuads.com -# ||contextads.net^$third-party (easylistchina+easylist.txt: 35835) -.contextads.net -# ||contexlink.se^$third-party (easylistchina+easylist.txt: 35834) -.contexlink.se -# ||contentwidgets.net^$third-party (easylistchina+easylist.txt: 35833) -.contentwidgets.net -# ||contenture.com^$third-party (easylistchina+easylist.txt: 35832) -.contenture.com -# ||contentjs.com^$third-party (easylistchina+easylist.txt: 35831) -.contentjs.com -# ||contentdigital.info^$third-party (easylistchina+easylist.txt: 35830) -.contentdigital.info -# ||contentclick.co.uk^$third-party (easylistchina+easylist.txt: 35829) -.contentclick.co.uk -# ||content.ad^$third-party (easylistchina+easylist.txt: 35828) -.content.ad -# ||content-cooperation.com^$third-party (easylistchina+easylist.txt: 35827) -.content-cooperation.com -# ||contaxe.com^$third-party (easylistchina+easylist.txt: 35826) -.contaxe.com -# ||contadd.com^$third-party (easylistchina+easylist.txt: 35825) -.contadd.com -# ||consumergenepool.com^$third-party (easylistchina+easylist.txt: 35824) -.consumergenepool.com -# ||construment.com^$third-party (easylistchina+easylist.txt: 35823) -.construment.com -# ||connextra.com^$third-party (easylistchina+easylist.txt: 35822) -.connextra.com -# ||connexplace.com^$third-party (easylistchina+easylist.txt: 35821) -.connexplace.com -# ||connexity.net^$third-party (easylistchina+easylist.txt: 35820) -.connexity.net -# ||connectionads.com^$third-party (easylistchina+easylist.txt: 35819) -.connectionads.com -# ||connectedads.net^$third-party (easylistchina+easylist.txt: 35818) -.connectedads.net -# ||connatix.com^$third-party (easylistchina+easylist.txt: 35817) -.connatix.com -# ||conduit-services.com^$third-party (easylistchina+easylist.txt: 35816) -.conduit-services.com -# ||conduit-banners.com^$third-party (easylistchina+easylist.txt: 35815) -.conduit-banners.com -# ||comscore.com^$third-party (easylistchina+easylist.txt: 35814) -.comscore.com -# ||complive.link^$third-party (easylistchina+easylist.txt: 35813) -.complive.link -# ||completecarrd.com^$third-party (easylistchina+easylist.txt: 35812) -.completecarrd.com -# ||commissionmonster.com^$third-party (easylistchina+easylist.txt: 35811) -.commissionmonster.com -# ||commissionlounge.com^$third-party (easylistchina+easylist.txt: 35810) -.commissionlounge.com -# ||commissionfactory.com.au^$third-party (easylistchina+easylist.txt: 35809) -.commissionfactory.com.au -# ||commission.bz^$third-party (easylistchina+easylist.txt: 35808) -.commission.bz -# ||commission-junction.com^$third-party (easylistchina+easylist.txt: 35807) -.commission-junction.com -# ||comclick.com^$third-party (easylistchina+easylist.txt: 35806) -.comclick.com -# ||colliersads.com^$third-party (easylistchina+easylist.txt: 35805) -.colliersads.com -# ||collective-media.net^$third-party (easylistchina+easylist.txt: 35804) -.collective-media.net -# ||collection-day.com^$third-party (easylistchina+easylist.txt: 35803) -.collection-day.com -# ||coinadvert.net^$third-party (easylistchina+easylist.txt: 35802) -.coinadvert.net -# ||coguan.com^$third-party (easylistchina+easylist.txt: 35801) -.coguan.com -# ||cogsdigital.com^$third-party (easylistchina+easylist.txt: 35800) -.cogsdigital.com -# ||cogocast.net^$third-party (easylistchina+easylist.txt: 35799) -.cogocast.net -# ||coedmediagroup.com^$third-party (easylistchina+easylist.txt: 35798) -.coedmediagroup.com -# ||codigobarras.net^$third-party (easylistchina+easylist.txt: 35797) -.codigobarras.net -# ||codezap.com^$third-party (easylistchina+easylist.txt: 35796) -.codezap.com -# ||coadvertise.com^$third-party (easylistchina+easylist.txt: 35795) -.coadvertise.com -# ||cntdy.mobi^$third-party (easylistchina+easylist.txt: 35794) -.cntdy.mobi -# ||cnt.my^$third-party (easylistchina+easylist.txt: 35793) -.cnt.my -# ||cmllk1.info^$third-party (easylistchina+easylist.txt: 35792) -.cmllk1.info -# ||cmfads.com^$third-party (easylistchina+easylist.txt: 35791) -.cmfads.com -# ||clz3.net^$third-party (easylistchina+easylist.txt: 35790) -.clz3.net -# ||cltomedia.info^$third-party (easylistchina+easylist.txt: 35789) -.cltomedia.info -# ||cloudioo.net^$third-party (easylistchina+easylist.txt: 35788) -.cloudioo.net -# ||clnk.me^$third-party (easylistchina+easylist.txt: 35787) -.clnk.me -# ||clixtrac.com^$third-party (easylistchina+easylist.txt: 35785) -.clixtrac.com -# ||clixsense.com^$third-party (easylistchina+easylist.txt: 35784) -.clixsense.com -# ||clixgalore.com^$third-party (easylistchina+easylist.txt: 35783) -.clixgalore.com -# ||clickzxc.com^$third-party (easylistchina+easylist.txt: 35782) -.clickzxc.com -# ||clickxchange.com^$third-party (easylistchina+easylist.txt: 35781) -.clickxchange.com -# ||clickwinks.com^$third-party (easylistchina+easylist.txt: 35780) -.clickwinks.com -# ||clickupto.com^$third-party (easylistchina+easylist.txt: 35779) -.clickupto.com -# ||clicktripz.com^$third-party (easylistchina+easylist.txt: 35778) -.clicktripz.com -# ||clicktripz.co^$third-party (easylistchina+easylist.txt: 35777) -.clicktripz.co -# ||clickthrucash.com^$third-party (easylistchina+easylist.txt: 35776) -.clickthrucash.com -# ||clickterra.net^$third-party (easylistchina+easylist.txt: 35775) -.clickterra.net -# ||clicksurvey.mobi^$third-party (easylistchina+easylist.txt: 35774) -.clicksurvey.mobi -# ||clicksor.net^$third-party (easylistchina+easylist.txt: 35773) -.clicksor.net -# ||clicksor.com^$third-party (easylistchina+easylist.txt: 35772) -.clicksor.com -# ||clicks2count.com^$third-party (easylistchina+easylist.txt: 35771) -.clicks2count.com -# ||clickosmedia.com^$third-party (easylistchina+easylist.txt: 35770) -.clickosmedia.com -# ||clicknano.com^$third-party (easylistchina+easylist.txt: 35769) -.clicknano.com -# ||clickmyads.info^$third-party (easylistchina+easylist.txt: 35768) -.clickmyads.info -# ||clickkingdom.net^$third-party (easylistchina+easylist.txt: 35767) -.clickkingdom.net -# ||clickiocdn.com^$third-party (easylistchina+easylist.txt: 35766) -.clickiocdn.com -# ||clickintext.net^$third-party (easylistchina+easylist.txt: 35765) -.clickintext.net -# ||clickintext.com^$third-party (easylistchina+easylist.txt: 35764) -.clickintext.com -# ||clickfuse.com^$third-party (easylistchina+easylist.txt: 35763) -.clickfuse.com -# ||clickexperts.net^$third-party (easylistchina+easylist.txt: 35762) -.clickexperts.net -# ||clickexa.com^$third-party (easylistchina+easylist.txt: 35761) -.clickexa.com -# ||clickequations.net^$third-party (easylistchina+easylist.txt: 35760) -.clickequations.net -# ||clickcertain.com^$third-party (easylistchina+easylist.txt: 35759) -.clickcertain.com -# ||clickcash.com^$third-party (easylistchina+easylist.txt: 35758) -.clickcash.com -# ||clickbubbles.net^$third-party (easylistchina+easylist.txt: 35757) -.clickbubbles.net -# ||clickboothlnk.com^$third-party (easylistchina+easylist.txt: 35756) -.clickboothlnk.com -# ||clickbooth.com^$third-party (easylistchina+easylist.txt: 35755) -.clickbooth.com -# ||clickbet88.com^$third-party (easylistchina+easylist.txt: 35754) -.clickbet88.com -# ||clickagy.com^$third-party (easylistchina+easylist.txt: 35753) -.clickagy.com -# ||clickad.pl^$third-party (easylistchina+easylist.txt: 35752) -.clickad.pl -# ||clickable.com^$third-party (easylistchina+easylist.txt: 35751) -.clickable.com -# ||click4free.info^$third-party (easylistchina+easylist.txt: 35750) -.click4free.info -# ||click2jump.com^$third-party (easylistchina+easylist.txt: 35749) -.click2jump.com -# ||click.scour.com^$third-party (easylistchina+easylist.txt: 35748) -.click.scour.com -# ||clevv.com^$third-party (easylistchina+easylist.txt: 35747) -.clevv.com -# ||clente.com^$third-party (easylistchina+easylist.txt: 35746) -.clente.com -# ||clear-request.com^$third-party (easylistchina+easylist.txt: 35745) -.clear-request.com -# ||cleafs.com^$third-party (easylistchina+easylist.txt: 35744) -.cleafs.com -# ||cldlr.com^$third-party (easylistchina+easylist.txt: 35743) -.cldlr.com -# ||clayaim.com^$third-party (easylistchina+easylist.txt: 35742) -.clayaim.com -# ||claxonmedia.com^$third-party (easylistchina+easylist.txt: 35741) -.claxonmedia.com -# ||clash-media.com^$third-party (easylistchina+easylist.txt: 35740) -.clash-media.com -# ||clarityray.com^$third-party (easylistchina+easylist.txt: 35739) -.clarityray.com -# ||cjt1.net^$third-party (easylistchina+easylist.txt: 35738) -.cjt1.net -# ||citysite.net^$third-party (easylistchina+easylist.txt: 35737) -.citysite.net -# ||city-ads.de^$third-party (easylistchina+easylist.txt: 35736) -.city-ads.de -# ||cibleclick.com^$third-party (easylistchina+easylist.txt: 35735) -.cibleclick.com -# ||chronicads.com^$third-party (easylistchina+easylist.txt: 35734) -.chronicads.com -# ||chitika.net^$third-party (easylistchina+easylist.txt: 35733) -.chitika.net -# ||chitika.com^$third-party (easylistchina+easylist.txt: 35732) -.chitika.com -# ||chipleader.com^$third-party (easylistchina+easylist.txt: 35731) -.chipleader.com -# ||chinagrad.ru^$third-party (easylistchina+easylist.txt: 35730) -.chinagrad.ru -# ||china-netwave.com^$third-party (easylistchina+easylist.txt: 35729) -.china-netwave.com -# ||chicbuy.info^$third-party (easylistchina+easylist.txt: 35728) -.chicbuy.info -# ||cherytso.com^$third-party (easylistchina+easylist.txt: 35727) -.cherytso.com -# ||checkoutfree.com^$third-party (easylistchina+easylist.txt: 35726) -.checkoutfree.com -# ||checkmystats.com.au^$third-party (easylistchina+easylist.txt: 35725) -.checkmystats.com.au -# ||checkm8.com^$third-party (easylistchina+easylist.txt: 35724) -.checkm8.com -# ||charltonmedia.com^$third-party (easylistchina+easylist.txt: 35723) -.charltonmedia.com -# ||chanished.net^$third-party (easylistchina+easylist.txt: 35722) -.chanished.net -# ||chango.com^$third-party (easylistchina+easylist.txt: 35721) -.chango.com -# ||chameleon.ad^$third-party (easylistchina+easylist.txt: 35720) -.chameleon.ad -# ||cgecwm.org^$third-party (easylistchina+easylist.txt: 35719) -.cgecwm.org -# ||cerotop.com^$third-party (easylistchina+easylist.txt: 35718) -.cerotop.com -# ||centralnervous.net^$third-party (easylistchina+easylist.txt: 35717) -.centralnervous.net -# ||cdnservr.com^$third-party (easylistchina+easylist.txt: 35716) -.cdnservr.com -# ||cdnrl.com^$third-party (easylistchina+easylist.txt: 35715) -.cdnrl.com -# ||cdnads.com^$third-party (easylistchina+easylist.txt: 35714) -.cdnads.com -# ||cdna.tremormedia.com^$third-party (easylistchina+easylist.txt: 35713) -.cdna.tremormedia.com -# ||cdn.mobicow.com^$third-party (easylistchina+easylist.txt: 35712) -.cdn.mobicow.com -# ||cdn-image.com^$third-party (easylistchina+easylist.txt: 35711) -.cdn-image.com -# ||cd828.com^$third-party (easylistchina+easylist.txt: 35710) -.cd828.com -# ||cc-dt.com^$third-party (easylistchina+easylist.txt: 35709) -.cc-dt.com -# ||cbn.tbn.ru^$third-party (easylistchina+easylist.txt: 35708) -.cbn.tbn.ru -# ||cbleads.com^$third-party (easylistchina+easylist.txt: 35707) -.cbleads.com -# ||cbclicks.com^$third-party (easylistchina+easylist.txt: 35706) -.cbclicks.com -# ||cbclickbank.com^$third-party (easylistchina+easylist.txt: 35705) -.cbclickbank.com -# ||cbaazars.com^$third-party (easylistchina+easylist.txt: 35704) -.cbaazars.com -# ||cb-content.com^$third-party (easylistchina+easylist.txt: 35703) -.cb-content.com -# ||caygh.com^$third-party (easylistchina+easylist.txt: 35702) -.caygh.com -# ||castplatform.com^$third-party (easylistchina+easylist.txt: 35701) -.castplatform.com -# ||casterpretic.com^$third-party (easylistchina+easylist.txt: 35700) -.casterpretic.com -# ||caspion.com^$third-party (easylistchina+easylist.txt: 35699) -.caspion.com -# ||casino-zilla.com^$third-party (easylistchina+easylist.txt: 35698) -.casino-zilla.com -# ||cashworld.biz^$third-party (easylistchina+easylist.txt: 35697) -.cashworld.biz -# ||cashtrafic.info^$third-party (easylistchina+easylist.txt: 35696) -.cashtrafic.info -# ||cashtrafic.com^$third-party (easylistchina+easylist.txt: 35695) -.cashtrafic.com -# ||cashonvisit.com^$third-party (easylistchina+easylist.txt: 35694) -.cashonvisit.com -# ||cashmylinks.com^$third-party (easylistchina+easylist.txt: 35693) -.cashmylinks.com -# ||cashatgsc.com^$third-party (easylistchina+easylist.txt: 35692) -.cashatgsc.com -# ||cash4members.com^$third-party (easylistchina+easylist.txt: 35691) -.cash4members.com -# ||cash-duck.com^$third-party (easylistchina+easylist.txt: 35690) -.cash-duck.com -# ||casalemedia.com^$third-party (easylistchina+easylist.txt: 35689) -.casalemedia.com -# ||cartorkins.com^$third-party (easylistchina+easylist.txt: 35688) -.cartorkins.com -# ||carrier.bz^$third-party (easylistchina+easylist.txt: 35687) -.carrier.bz -# ||cardincraping.net^$third-party (easylistchina+easylist.txt: 35686) -.cardincraping.net -# ||carbonads.com^$third-party (easylistchina+easylist.txt: 35685) -.carbonads.com -# ||captifymedia.com^$third-party (easylistchina+easylist.txt: 35684) -.captifymedia.com -# ||captainad.com^$third-party (easylistchina+easylist.txt: 35683) -.captainad.com -# ||capitatmarket.com^$third-party (easylistchina+easylist.txt: 35682) -.capitatmarket.com -# ||capacitygrid.com^$third-party (easylistchina+easylist.txt: 35681) -.capacitygrid.com -# ||canoeklix.com^$third-party (easylistchina+easylist.txt: 35680) -.canoeklix.com -# ||campanja.com^$third-party (easylistchina+easylist.txt: 35679) -.campanja.com -# ||camleyads.info^$third-party (easylistchina+easylist.txt: 35678) -.camleyads.info -# ||c8.net.ua^$third-party (easylistchina+easylist.txt: 35677) -.c8.net.ua -# ||c-planet.net^$third-party (easylistchina+easylist.txt: 35676) -.c-planet.net -# ||c-on-text.com^$third-party (easylistchina+easylist.txt: 35675) -.c-on-text.com -# ||byzoo.org^$third-party (easylistchina+easylist.txt: 35674) -.byzoo.org -# ||byspot.com^$third-party (easylistchina+easylist.txt: 35673) -.byspot.com -# ||bwinpartypartners.com^$third-party (easylistchina+easylist.txt: 35672) -.bwinpartypartners.com -# ||buzzparadise.com^$third-party (easylistchina+easylist.txt: 35671) -.buzzparadise.com -# ||buzzcity.net^$third-party (easylistchina+easylist.txt: 35670) -.buzzcity.net -# ||buyt.in^$third-party (easylistchina+easylist.txt: 35669) -.buyt.in -# ||buysellads.com^$third-party (easylistchina+easylist.txt: 35668) -.buysellads.com -# ||buyorselltnhomes.com^$third-party (easylistchina+easylist.txt: 35667) -.buyorselltnhomes.com -# ||buyflood.com^$third-party (easylistchina+easylist.txt: 35666) -.buyflood.com -# ||buxp.org^$third-party (easylistchina+easylist.txt: 35665) -.buxp.org -# ||buxflow.com^$third-party (easylistchina+easylist.txt: 35664) -.buxflow.com -# ||buxept.com^$third-party (easylistchina+easylist.txt: 35663) -.buxept.com -# ||busterzaster.de^$third-party (easylistchina+easylist.txt: 35662) -.busterzaster.de -# ||businessclick.com^$third-party (easylistchina+easylist.txt: 35661) -.businessclick.com -# ||businesscare.com^$third-party (easylistchina+easylist.txt: 35660) -.businesscare.com -# ||burstnet.com^$third-party (easylistchina+easylist.txt: 35659) -.burstnet.com -# ||burnsoftware.info^$third-party (easylistchina+easylist.txt: 35658) -.burnsoftware.info -# ||burjam.com^$third-party (easylistchina+easylist.txt: 35657) -.burjam.com -# ||burbanked.info^$third-party (easylistchina+easylist.txt: 35656) -.burbanked.info -# ||bunny-net.com^$third-party (easylistchina+easylist.txt: 35655) -.bunny-net.com -# ||bunchofads.com^$third-party (easylistchina+easylist.txt: 35654) -.bunchofads.com -# ||bulletproofserving.com^$third-party (easylistchina+easylist.txt: 35653) -.bulletproofserving.com -# ||buildtrafficx.com^$third-party (easylistchina+easylist.txt: 35652) -.buildtrafficx.com -# ||budurl.com^$third-party (easylistchina+easylist.txt: 35651) -.budurl.com -# ||budgetedbauer.com^$third-party (easylistchina+easylist.txt: 35650) -.budgetedbauer.com -# ||bucketsofbanners.com^$third-party (easylistchina+easylist.txt: 35649) -.bucketsofbanners.com -# ||bubblesmedia.ru^$third-party (easylistchina+easylist.txt: 35648) -.bubblesmedia.ru -# ||bu520.com^$third-party (easylistchina+easylist.txt: 35647) -.bu520.com -# ||bttrack.com^$third-party (easylistchina+easylist.txt: 35646) -.bttrack.com -# ||bttbgroup.com^$third-party (easylistchina+easylist.txt: 35645) -.bttbgroup.com -# ||btrll.com^$third-party (easylistchina+easylist.txt: 35644) -.btrll.com -# ||btnibbler.com^$third-party (easylistchina+easylist.txt: 35643) -.btnibbler.com -# ||bstrtb.com^$third-party (easylistchina+easylist.txt: 35642) -.bstrtb.com -# ||brucelead.com^$third-party (easylistchina+easylist.txt: 35641) -.brucelead.com -# ||browsersfeedback.com^$third-party (easylistchina+easylist.txt: 35640) -.browsersfeedback.com -# ||broadstreetads.com^$third-party (easylistchina+easylist.txt: 35639) -.broadstreetads.com -# ||brightshare.com^$third-party (easylistchina+easylist.txt: 35638) -.brightshare.com -# ||brighteroption.com^$third-party (easylistchina+easylist.txt: 35637) -.brighteroption.com -# ||bridgetrack.com^$third-party (easylistchina+easylist.txt: 35636) -.bridgetrack.com -# ||brealtime.com^$third-party (easylistchina+easylist.txt: 35635) -.brealtime.com -# ||breadpro.com^$third-party (easylistchina+easylist.txt: 35634) -.breadpro.com -# ||bravenetmedianetwork.com^$third-party (easylistchina+easylist.txt: 35633) -.bravenetmedianetwork.com -# ||braside.ru^$third-party (easylistchina+easylist.txt: 35632) -.braside.ru -# ||brandreachsys.com^$third-party (easylistchina+easylist.txt: 35631) -.brandreachsys.com -# ||brandclik.com^$third-party (easylistchina+easylist.txt: 35630) -.brandclik.com -# ||brandaffinity.net^$third-party (easylistchina+easylist.txt: 35629) -.brandaffinity.net -# ||brandads.net^$third-party (easylistchina+easylist.txt: 35628) -.brandads.net -# ||brand.net^$third-party (easylistchina+easylist.txt: 35627) -.brand.net -# ||brand-display.com^$third-party (easylistchina+easylist.txt: 35626) -.brand-display.com -# ||branchr.com^$third-party (easylistchina+easylist.txt: 35625) -.branchr.com -# ||brainient.com^$third-party (easylistchina+easylist.txt: 35624) -.brainient.com -# ||br.rk.com^$third-party (easylistchina+easylist.txt: 35623) -.br.rk.com -# ||bptracking.com^$third-party (easylistchina+easylist.txt: 35622) -.bptracking.com -# ||boylesportsreklame.com^$third-party (easylistchina+easylist.txt: 35621) -.boylesportsreklame.com -# ||boydadvertising.co.uk^$third-party (easylistchina+easylist.txt: 35620) -.boydadvertising.co.uk -# ||bororas.com^$third-party (easylistchina+easylist.txt: 35619) -.bororas.com -# ||bormoni.ru^$third-party (easylistchina+easylist.txt: 35618) -.bormoni.ru -# ||boostclic.com^$third-party (easylistchina+easylist.txt: 35617) -.boostclic.com -# ||boostable.com^$third-party (easylistchina+easylist.txt: 35616) -.boostable.com -# ||booklandonline.info^$third-party (easylistchina+easylist.txt: 35615) -.booklandonline.info -# ||boo-box.com^$third-party (easylistchina+easylist.txt: 35614) -.boo-box.com -# ||bonusfapturbo.com^$third-party (easylistchina+easylist.txt: 35613) -.bonusfapturbo.com -# ||bokroet.com^$third-party (easylistchina+easylist.txt: 35612) -.bokroet.com -# ||bogads.com^$third-party (easylistchina+easylist.txt: 35611) -.bogads.com -# ||bnr.sys.lv^$third-party (easylistchina+easylist.txt: 35610) -.bnr.sys.lv -# ||bnmla.com^$third-party (easylistchina+easylist.txt: 35609) -.bnmla.com -# ||bnhtml.com^$third-party (easylistchina+easylist.txt: 35608) -.bnhtml.com -# ||bnetworx.com^$third-party (easylistchina+easylist.txt: 35607) -.bnetworx.com -# ||bmanpn.com^$third-party (easylistchina+easylist.txt: 35606) -.bmanpn.com -# ||blumi.to^$third-party (easylistchina+easylist.txt: 35605) -.blumi.to -# ||bluestreak.com^$third-party (easylistchina+easylist.txt: 35604) -.bluestreak.com -# ||blueadvertise.com^$third-party (easylistchina+easylist.txt: 35603) -.blueadvertise.com -# ||blogohertz.com^$third-party (easylistchina+easylist.txt: 35602) -.blogohertz.com -# ||blogherads.com^$third-party (easylistchina+easylist.txt: 35601) -.blogherads.com -# ||bloggerex.com^$third-party (easylistchina+easylist.txt: 35600) -.bloggerex.com -# ||blogclans.com^$third-party (easylistchina+easylist.txt: 35599) -.blogclans.com -# ||blogbannerexchange.com^$third-party (easylistchina+easylist.txt: 35598) -.blogbannerexchange.com -# ||blogads.com^$third-party (easylistchina+easylist.txt: 35597) -.blogads.com -# ||blinkadr.com^$third-party (easylistchina+easylist.txt: 35596) -.blinkadr.com -# ||blardenso.com^$third-party (easylistchina+easylist.txt: 35595) -.blardenso.com -# ||blamcity.com^$third-party (easylistchina+easylist.txt: 35594) -.blamcity.com -# ||blamads.com^$third-party (easylistchina+easylist.txt: 35593) -.blamads.com -# ||bjjingda.com^$third-party (easylistchina+easylist.txt: 35592) -.bjjingda.com -# ||bizzclick.com^$third-party (easylistchina+easylist.txt: 35591) -.bizzclick.com -# ||bizrotator.com^$third-party (easylistchina+easylist.txt: 35590) -.bizrotator.com -# ||bizographics.com^$third-party (easylistchina+easylist.txt: 35589) -.bizographics.com -# ||bitx.tv^$third-party (easylistchina+easylist.txt: 35588) -.bitx.tv -# ||bittads.com^$third-party (easylistchina+easylist.txt: 35587) -.bittads.com -# ||bitfalcon.tv^$third-party (easylistchina+easylist.txt: 35586) -.bitfalcon.tv -# ||bitcoinadvertisers.com^$third-party (easylistchina+easylist.txt: 35585) -.bitcoinadvertisers.com -# ||bitads.net^$third-party (easylistchina+easylist.txt: 35584) -.bitads.net -# ||binlayer.de^$third-party (easylistchina+easylist.txt: 35583) -.binlayer.de -# ||binlayer.com^$third-party (easylistchina+easylist.txt: 35582) -.binlayer.com -# ||bingo4affiliates.com^$third-party (easylistchina+easylist.txt: 35581) -.bingo4affiliates.com -# ||binaryoptionssystems.org^$third-party (easylistchina+easylist.txt: 35580) -.binaryoptionssystems.org -# ||bin-layer.ru^$third-party (easylistchina+easylist.txt: 35579) -.bin-layer.ru -# ||bin-layer.de^$third-party (easylistchina+easylist.txt: 35578) -.bin-layer.de -# ||bimlocal.com^$third-party (easylistchina+easylist.txt: 35577) -.bimlocal.com -# ||billypub.com^$third-party (easylistchina+easylist.txt: 35576) -.billypub.com -# ||bijscode.com^$third-party (easylistchina+easylist.txt: 35575) -.bijscode.com -# ||bigfineads.com^$third-party (easylistchina+easylist.txt: 35574) -.bigfineads.com -# ||bigadpoint.net^$third-party (easylistchina+easylist.txt: 35573) -.bigadpoint.net -# ||biemedia.com^$third-party (easylistchina+easylist.txt: 35572) -.biemedia.com -# ||bidvertiser.com^$third-party (easylistchina+easylist.txt: 35571) -.bidvertiser.com -# ||bidsystem.com^$third-party (easylistchina+easylist.txt: 35570) -.bidsystem.com -# ||bidgewatr.com^$third-party (easylistchina+easylist.txt: 35569) -.bidgewatr.com -# ||bh3.net^$third-party (easylistchina+easylist.txt: 35568) -.bh3.net -# ||bfast.com^$third-party (easylistchina+easylist.txt: 35567) -.bfast.com -# ||bettingpartners.com^$third-party (easylistchina+easylist.txt: 35566) -.bettingpartners.com -# ||betrad.com^$third-party (easylistchina+easylist.txt: 35565) -.betrad.com -# ||betoga.com^$third-party (easylistchina+easylist.txt: 35564) -.betoga.com -# ||betaffs.com^$third-party (easylistchina+easylist.txt: 35563) -.betaffs.com -# ||bet365affiliates.com^$third-party (easylistchina+easylist.txt: 35562) -.bet365affiliates.com -# ||bet3000partners.com^$third-party (easylistchina+easylist.txt: 35561) -.bet3000partners.com -# ||bestpricewala.com^$third-party (easylistchina+easylist.txt: 35560) -.bestpricewala.com -# ||bestonlinecoupons.com^$third-party (easylistchina+easylist.txt: 35559) -.bestonlinecoupons.com -# ||bestofferdirect.com^$third-party (easylistchina+easylist.txt: 35558) -.bestofferdirect.com -# ||besthitsnow.com^$third-party (easylistchina+easylist.txt: 35557) -.besthitsnow.com -# ||bestgameads.com^$third-party (easylistchina+easylist.txt: 35556) -.bestgameads.com -# ||bestforexpartners.com^$third-party (easylistchina+easylist.txt: 35555) -.bestforexpartners.com -# ||bestfindsite.com^$third-party (easylistchina+easylist.txt: 35554) -.bestfindsite.com -# ||bestdeals.ws^$third-party (easylistchina+easylist.txt: 35553) -.bestdeals.ws -# ||bestcasinopartner.com^$third-party (easylistchina+easylist.txt: 35552) -.bestcasinopartner.com -# ||beringmedia.com^$third-party (easylistchina+easylist.txt: 35551) -.beringmedia.com -# ||bepolite.eu^$third-party (easylistchina+easylist.txt: 35550) -.bepolite.eu -# ||bentdownload.com^$third-party (easylistchina+easylist.txt: 35549) -.bentdownload.com -# ||belvertising.be^$third-party (easylistchina+easylist.txt: 35548) -.belvertising.be -# ||belointeractive.com^$third-party (easylistchina+easylist.txt: 35547) -.belointeractive.com -# ||begun.ru^$third-party (easylistchina+easylist.txt: 35546) -.begun.ru -# ||beforescence.com^$third-party (easylistchina+easylist.txt: 35545) -.beforescence.com -# ||befade.com^$third-party (easylistchina+easylist.txt: 35544) -.befade.com -# ||beead.net^$third-party (easylistchina+easylist.txt: 35543) -.beead.net -# ||beead.co.uk^$third-party (easylistchina+easylist.txt: 35542) -.beead.co.uk -# ||bedorm.com^$third-party (easylistchina+easylist.txt: 35541) -.bedorm.com -# ||bebi.com^$third-party (easylistchina+easylist.txt: 35540) -.bebi.com -# ||beatchucknorris.com^$third-party (easylistchina+easylist.txt: 35539) -.beatchucknorris.com -# ||beaconads.com^$third-party (easylistchina+easylist.txt: 35538) -.beaconads.com -# ||bbuni.com^$third-party (easylistchina+easylist.txt: 35537) -.bbuni.com -# ||bbelements.com^$third-party (easylistchina+easylist.txt: 35536) -.bbelements.com -# ||basebanner.com^$third-party (easylistchina+easylist.txt: 35535) -.basebanner.com -# ||baronsoffers.com^$third-party (easylistchina+easylist.txt: 35534) -.baronsoffers.com -# ||bannerweb.com^$third-party (easylistchina+easylist.txt: 35533) -.bannerweb.com -# ||bannertracker-script.com^$third-party (easylistchina+easylist.txt: 35532) -.bannertracker-script.com -# ||bannertgt.com^$third-party (easylistchina+easylist.txt: 35531) -.bannertgt.com -# ||bannersurvey.biz^$third-party (easylistchina+easylist.txt: 35530) -.bannersurvey.biz -# ||bannersnack.net^$third-party (easylistchina+easylist.txt: 35529) -.bannersnack.net -# ||bannersnack.com^$third-party (easylistchina+easylist.txt: 35528) -.bannersnack.com -# ||bannersmania.com^$third-party (easylistchina+easylist.txt: 35527) -.bannersmania.com -# ||bannerrage.com^$third-party (easylistchina+easylist.txt: 35526) -.bannerrage.com -# ||bannerperformance.net^$third-party (easylistchina+easylist.txt: 35525) -.bannerperformance.net -# ||bannerlot.com^$third-party (easylistchina+easylist.txt: 35524) -.bannerlot.com -# ||bannerjammers.com^$third-party (easylistchina+easylist.txt: 35523) -.bannerjammers.com -# ||bannerignition.co.za^$third-party (easylistchina+easylist.txt: 35522) -.bannerignition.co.za -# ||bannerflux.com^$third-party (easylistchina+easylist.txt: 35521) -.bannerflux.com -# ||bannerflow.com^$third-party (easylistchina+easylist.txt: 35520) -.bannerflow.com -# ||bannerexchange.com.au^$third-party (easylistchina+easylist.txt: 35519) -.bannerexchange.com.au -# ||bannerdealer.com^$third-party (easylistchina+easylist.txt: 35518) -.bannerdealer.com -# ||bannerconnect.net^$third-party (easylistchina+easylist.txt: 35517) -.bannerconnect.net -# ||bannerconnect.com^$third-party (easylistchina+easylist.txt: 35516) -.bannerconnect.com -# ||bannercde.com^$third-party (easylistchina+easylist.txt: 35515) -.bannercde.com -# ||bannerbridge.net^$third-party (easylistchina+easylist.txt: 35514) -.bannerbridge.net -# ||bannerblasters.com^$third-party (easylistchina+easylist.txt: 35513) -.bannerblasters.com -# ||bannerbank.ru^$third-party (easylistchina+easylist.txt: 35512) -.bannerbank.ru -# ||banner-rotation.com^$third-party (easylistchina+easylist.txt: 35511) -.banner-rotation.com -# ||banner-clix.com^$third-party (easylistchina+easylist.txt: 35510) -.banner-clix.com -# ||bananaflippy.com^$third-party (easylistchina+easylist.txt: 35509) -.bananaflippy.com -# ||baldiro.de^$third-party (easylistchina+easylist.txt: 35508) -.baldiro.de -# ||badjocks.com^$third-party (easylistchina+easylist.txt: 35507) -.badjocks.com -# ||backlinks.com^$third-party (easylistchina+easylist.txt: 35506) -.backlinks.com -# ||backbeatmedia.com^$third-party (easylistchina+easylist.txt: 35505) -.backbeatmedia.com -# ||babbnrs.com^$third-party (easylistchina+easylist.txt: 35504) -.babbnrs.com -# ||b6508157d.website^$third-party (easylistchina+easylist.txt: 35503) -.b6508157d.website -# ||b117f8da23446a91387efea0e428392a.pl^$third-party (easylistchina+easylist.txt: 35502) -.b117f8da23446a91387efea0e428392a.pl -# ||azorbe.com^$third-party (easylistchina+easylist.txt: 35501) -.azorbe.com -# ||azoogleads.com^$third-party (easylistchina+easylist.txt: 35500) -.azoogleads.com -# ||azjmp.com^$third-party (easylistchina+easylist.txt: 35499) -.azjmp.com -# ||azads.com^$third-party (easylistchina+easylist.txt: 35498) -.azads.com -# ||ayboll.com^$third-party (easylistchina+easylist.txt: 35497) -.ayboll.com -# ||axill.com^$third-party (easylistchina+easylist.txt: 35496) -.axill.com -# ||awsurveys.com^$third-party (easylistchina+easylist.txt: 35495) -.awsurveys.com -# ||awsmer.com^$third-party (easylistchina+easylist.txt: 35494) -.awsmer.com -# ||awltovhc.com^$third-party (easylistchina+easylist.txt: 35493) -.awltovhc.com -# ||awin1.com^$third-party (easylistchina+easylist.txt: 35492) -.awin1.com -# ||awempire.com^$third-party (easylistchina+easylist.txt: 35491) -.awempire.com -# ||awaps.net^$third-party (easylistchina+easylist.txt: 35490) -.awaps.net -# ||avercarto.com^$third-party (easylistchina+easylist.txt: 35489) -.avercarto.com -# ||avazutracking.net^$third-party (easylistchina+easylist.txt: 35488) -.avazutracking.net -# ||avazu.net^$third-party (easylistchina+easylist.txt: 35487) -.avazu.net -# ||avalopaly.com^$third-party (easylistchina+easylist.txt: 35486) -.avalopaly.com -# ||avalanchers.com^$third-party (easylistchina+easylist.txt: 35485) -.avalanchers.com -# ||avads.co.uk^$third-party (easylistchina+easylist.txt: 35484) -.avads.co.uk -# ||automateyourlist.com^$third-party (easylistchina+easylist.txt: 35483) -.automateyourlist.com -# ||automatedtraffic.com^$third-party (easylistchina+easylist.txt: 35482) -.automatedtraffic.com -# ||auto-insurance-quotes-compare.com^$third-party (easylistchina+easylist.txt: 35481) -.auto-insurance-quotes-compare.com -# ||auto-im.com^$third-party (easylistchina+easylist.txt: 35480) -.auto-im.com -# ||auspipe.com^$third-party (easylistchina+easylist.txt: 35479) -.auspipe.com -# ||aunmdhxrco.com^$third-party (easylistchina+easylist.txt: 35478) -.aunmdhxrco.com -# ||august15download.com^$third-party (easylistchina+easylist.txt: 35477) -.august15download.com -# ||augmentad.net^$third-party (easylistchina+easylist.txt: 35476) -.augmentad.net -# ||auditude.com^$third-party (easylistchina+easylist.txt: 35475) -.auditude.com -# ||auditoire.ph^$third-party (easylistchina+easylist.txt: 35474) -.auditoire.ph -# ||audienceprofiler.com^$third-party (easylistchina+easylist.txt: 35473) -.audienceprofiler.com -# ||audiencefuel.com^$third-party (easylistchina+easylist.txt: 35472) -.audiencefuel.com -# ||audience2media.com^$third-party (easylistchina+easylist.txt: 35471) -.audience2media.com -# ||auctionnudge.com^$third-party (easylistchina+easylist.txt: 35470) -.auctionnudge.com -# ||au2m8.com^$third-party (easylistchina+easylist.txt: 35469) -.au2m8.com -# ||atwola.com^$third-party (easylistchina+easylist.txt: 35468) -.atwola.com -# ||atrinsic.com^$third-party (easylistchina+easylist.txt: 35467) -.atrinsic.com -# ||atomex.net^$third-party (easylistchina+easylist.txt: 35466) -.atomex.net -# ||ato.mx^$third-party (easylistchina+easylist.txt: 35465) -.ato.mx -# ||atmalinks.com^$third-party (easylistchina+easylist.txt: 35464) -.atmalinks.com -# ||atemda.com^$third-party (easylistchina+easylist.txt: 35463) -.atemda.com -# ||atadserver.com^$third-party (easylistchina+easylist.txt: 35462) -.atadserver.com -# ||astree.be^$third-party (easylistchina+easylist.txt: 35461) -.astree.be -# ||asterpix.com^$third-party (easylistchina+easylist.txt: 35460) -.asterpix.com -# ||assoc-amazon.it^$third-party (easylistchina+easylist.txt: 35459) -.assoc-amazon.it -# ||assoc-amazon.fr^$third-party (easylistchina+easylist.txt: 35458) -.assoc-amazon.fr -# ||assoc-amazon.es^$third-party (easylistchina+easylist.txt: 35457) -.assoc-amazon.es -# ||assoc-amazon.de^$third-party (easylistchina+easylist.txt: 35456) -.assoc-amazon.de -# ||assoc-amazon.com^$third-party (easylistchina+easylist.txt: 35455) -.assoc-amazon.com -# ||assoc-amazon.co.uk^$third-party (easylistchina+easylist.txt: 35454) -.assoc-amazon.co.uk -# ||assoc-amazon.ca^$third-party (easylistchina+easylist.txt: 35453) -.assoc-amazon.ca -# ||assetize.com^$third-party (easylistchina+easylist.txt: 35452) -.assetize.com -# ||asrety.com^$third-party (easylistchina+easylist.txt: 35451) -.asrety.com -# ||asooda.com^$third-party (easylistchina+easylist.txt: 35450) -.asooda.com -# ||asklots.com^$third-party (easylistchina+easylist.txt: 35449) -.asklots.com -# ||aseadnet.com^$third-party (easylistchina+easylist.txt: 35448) -.aseadnet.com -# ||asafesite.com^$third-party (easylistchina+easylist.txt: 35447) -.asafesite.com -# ||as5000.com^$third-party (easylistchina+easylist.txt: 35446) -.as5000.com -# ||as-farm.com^$third-party (easylistchina+easylist.txt: 35445) -.as-farm.com -# ||arti-mediagroup.com^$third-party (easylistchina+easylist.txt: 35444) -.arti-mediagroup.com -# ||areasnap.com^$third-party (easylistchina+easylist.txt: 35443) -.areasnap.com -# ||arcadechain.com^$third-party (easylistchina+easylist.txt: 35442) -.arcadechain.com -# ||arcadebe.com^$third-party (easylistchina+easylist.txt: 35441) -.arcadebe.com -# ||arcadebanners.com^$third-party (easylistchina+easylist.txt: 35440) -.arcadebanners.com -# ||arcadebannerexchange.org^$third-party (easylistchina+easylist.txt: 35439) -.arcadebannerexchange.org -# ||arcadebannerexchange.net^$third-party (easylistchina+easylist.txt: 35438) -.arcadebannerexchange.net -# ||arabweb.biz^$third-party (easylistchina+easylist.txt: 35437) -.arabweb.biz -# ||arab4eg.com^$third-party (easylistchina+easylist.txt: 35436) -.arab4eg.com -# ||apxlv.com^$third-party (easylistchina+easylist.txt: 35435) -.apxlv.com -# ||apsmediaagency.com^$third-party (easylistchina+easylist.txt: 35434) -.apsmediaagency.com -# ||april29-disp-download.com^$third-party (easylistchina+easylist.txt: 35433) -.april29-disp-download.com -# ||apptap.com^$third-party (easylistchina+easylist.txt: 35432) -.apptap.com -# ||apportium.com^$third-party (easylistchina+easylist.txt: 35431) -.apportium.com -# ||applebarq.com^$third-party (easylistchina+easylist.txt: 35430) -.applebarq.com -# ||appendad.com^$third-party (easylistchina+easylist.txt: 35429) -.appendad.com -# ||apmebf.com^$third-party (easylistchina+easylist.txt: 35428) -.apmebf.com -# ||apex-ad.com^$third-party (easylistchina+easylist.txt: 35427) -.apex-ad.com -# ||aorpum.com^$third-party (easylistchina+easylist.txt: 35426) -.aorpum.com -# ||aorms.com^$third-party (easylistchina+easylist.txt: 35425) -.aorms.com -# ||aoqneyvmaz.com^$third-party (easylistchina+easylist.txt: 35424) -.aoqneyvmaz.com -# ||anyxp.com^$third-party (easylistchina+easylist.txt: 35423) -.anyxp.com -# ||anymedia.lv^$third-party (easylistchina+easylist.txt: 35422) -.anymedia.lv -# ||anwufkjjja.com^$third-party (easylistchina+easylist.txt: 35421) -.anwufkjjja.com -# ||anrdoezrs.net^$third-party (easylistchina+easylist.txt: 35420) -.anrdoezrs.net -# ||anonymousads.com^$third-party (easylistchina+easylist.txt: 35419) -.anonymousads.com -# ||angege.com^$third-party (easylistchina+easylist.txt: 35418) -.angege.com -# ||anet*.tradedoubler.com^$third-party (easylistchina+easylist.txt: 35417) -.anet*./.*\.tradedoubler\.com[^\w%.-] -.anet*.tradedoubler.com -# ||andomediagroup.com^$third-party (easylistchina+easylist.txt: 35416) -.andomediagroup.com -# ||andomedia.com^$third-party (easylistchina+easylist.txt: 35415) -.andomedia.com -# ||andohs.net^$third-party (easylistchina+easylist.txt: 35414) -.andohs.net -# ||anastasiasaffiliate.com^$third-party (easylistchina+easylist.txt: 35413) -.anastasiasaffiliate.com -# ||ampxchange.com^$third-party (easylistchina+easylist.txt: 35412) -.ampxchange.com -# ||amgdgt.com^$third-party (easylistchina+easylist.txt: 35411) -.amgdgt.com -# ||amertazy.com^$third-party (easylistchina+easylist.txt: 35410) -.amertazy.com -# ||amazonily.com^$third-party (easylistchina+easylist.txt: 35409) -.amazonily.com -# ||amazon-cornerstone.com^$third-party (easylistchina+easylist.txt: 35408) -.amazon-cornerstone.com -# ||amazon-adsystem.com^$third-party (easylistchina+easylist.txt: 35407) -.amazon-adsystem.com -# ||am15.net^$third-party (easylistchina+easylist.txt: 35406) -.am15.net -# ||am11.ru^$third-party (easylistchina+easylist.txt: 35405) -.am11.ru -# ||am10.ru^$third-party (easylistchina+easylist.txt: 35404) -.am10.ru -# ||am-display.com^$third-party (easylistchina+easylist.txt: 35403) -.am-display.com -# ||altitude-arena.com^$third-party (easylistchina+easylist.txt: 35402) -.altitude-arena.com -# ||alternativeadverts.com^$third-party (easylistchina+easylist.txt: 35401) -.alternativeadverts.com -# ||alternads.info^$third-party (easylistchina+easylist.txt: 35400) -.alternads.info -# ||alphagodaddy.com^$third-party (easylistchina+easylist.txt: 35399) -.alphagodaddy.com -# ||alphabirdnetwork.com^$third-party (easylistchina+easylist.txt: 35398) -.alphabirdnetwork.com -# ||alphabird.com^$third-party (easylistchina+easylist.txt: 35397) -.alphabird.com -# ||allyes.com^$third-party (easylistchina+easylist.txt: 35396) -.allyes.com -# ||alloydigital.com^$third-party (easylistchina+easylist.txt: 35395) -.alloydigital.com -# ||allmt.com^$third-party (easylistchina+easylist.txt: 35394) -.allmt.com -# ||alleliteads.com^$third-party (easylistchina+easylist.txt: 35393) -.alleliteads.com -# ||allabc.com^$third-party (easylistchina+easylist.txt: 35392) -.allabc.com -# ||alimama.com^$third-party (easylistchina+easylist.txt: 35391) -.alimama.com -# ||alfynetwork.com^$third-party (easylistchina+easylist.txt: 35390) -.alfynetwork.com -# ||alchemysocial.com^$third-party (easylistchina+easylist.txt: 35389) -.alchemysocial.com -# ||ajansreklam.net^$third-party (easylistchina+easylist.txt: 35388) -.ajansreklam.net -# ||aimatch.com^$third-party (easylistchina+easylist.txt: 35387) -.aimatch.com -# ||aim4media.com^$third-party (easylistchina+easylist.txt: 35386) -.aim4media.com -# ||agvzvwof.com^$third-party (easylistchina+easylist.txt: 35385) -.agvzvwof.com -# ||agomwefq.com^$third-party (easylistchina+easylist.txt: 35384) -.agomwefq.com -# ||agmtrk.com^$third-party (easylistchina+easylist.txt: 35383) -.agmtrk.com -# ||aglocobanners.com^$third-party (easylistchina+easylist.txt: 35382) -.aglocobanners.com -# ||aggregateknowledge.com^$third-party (easylistchina+easylist.txt: 35381) -.aggregateknowledge.com -# ||agentcenters.com^$third-party (easylistchina+easylist.txt: 35380) -.agentcenters.com -# ||agcdn.com^$third-party (easylistchina+easylist.txt: 35379) -.agcdn.com -# ||afy11.net^$third-party (easylistchina+easylist.txt: 35378) -.afy11.net -# ||afterdownloads.com^$third-party (easylistchina+easylist.txt: 35377) -.afterdownloads.com -# ||afterdownload.com^$third-party (easylistchina+easylist.txt: 35376) -.afterdownload.com -# ||africawin.com^$third-party (easylistchina+easylist.txt: 35375) -.africawin.com -# ||aflrm.com^$third-party (easylistchina+easylist.txt: 35374) -.aflrm.com -# ||afftrack.com^$third-party (easylistchina+easylist.txt: 35373) -.afftrack.com -# ||affplanet.com^$third-party (easylistchina+easylist.txt: 35372) -.affplanet.com -# ||affiz.net^$third-party (easylistchina+easylist.txt: 35371) -.affiz.net -# ||affinity.com^$third-party (easylistchina+easylist.txt: 35370) -.affinity.com -# ||affinitad.com^$third-party (easylistchina+easylist.txt: 35369) -.affinitad.com -# ||affimo.de^$third-party (easylistchina+easylist.txt: 35368) -.affimo.de -# ||affiliserve.com^$third-party (easylistchina+easylist.txt: 35367) -.affiliserve.com -# ||affiliproducts.com^$third-party (easylistchina+easylist.txt: 35366) -.affiliproducts.com -# ||affilijack.de^$third-party (easylistchina+easylist.txt: 35365) -.affilijack.de -# ||affiliationzone.com^$third-party (easylistchina+easylist.txt: 35364) -.affiliationzone.com -# ||affiliationworld.com^$third-party (easylistchina+easylist.txt: 35363) -.affiliationworld.com -# ||affiliationcash.com^$third-party (easylistchina+easylist.txt: 35362) -.affiliationcash.com -# ||affiliation-france.com^$third-party (easylistchina+easylist.txt: 35361) -.affiliation-france.com -# ||affiliatesensor.com^$third-party (easylistchina+easylist.txt: 35360) -.affiliatesensor.com -# ||affiliatemembership.com^$third-party (easylistchina+easylist.txt: 35359) -.affiliatemembership.com -# ||affiliatelounge.com^$third-party (easylistchina+easylist.txt: 35358) -.affiliatelounge.com -# ||affiliategroove.com^$third-party (easylistchina+easylist.txt: 35357) -.affiliategroove.com -# ||affiliategateways.co^$third-party (easylistchina+easylist.txt: 35356) -.affiliategateways.co -# ||affiliatefuture.com^$third-party (easylistchina+easylist.txt: 35355) -.affiliatefuture.com -# ||affiliatefuel.com^$third-party (easylistchina+easylist.txt: 35354) -.affiliatefuel.com -# ||affiliateer.com^$third-party (easylistchina+easylist.txt: 35353) -.affiliateer.com -# ||affiliateedge.com^$third-party (easylistchina+easylist.txt: 35352) -.affiliateedge.com -# ||affiliatebannerfarm.com^$third-party (easylistchina+easylist.txt: 35351) -.affiliatebannerfarm.com -# ||affiliate.cx^$third-party (easylistchina+easylist.txt: 35350) -.affiliate.cx -# ||affiliate.com^$third-party (easylistchina+easylist.txt: 35349) -.affiliate.com -# ||affiliate-robot.com^$third-party (easylistchina+easylist.txt: 35348) -.affiliate-robot.com -# ||affiliate-gate.com^$third-party (easylistchina+easylist.txt: 35347) -.affiliate-gate.com -# ||affiliate-b.com^$third-party (easylistchina+easylist.txt: 35346) -.affiliate-b.com -# ||affec.tv^$third-party (easylistchina+easylist.txt: 35345) -.affec.tv -# ||affbuzzads.com^$third-party (easylistchina+easylist.txt: 35344) -.affbuzzads.com -# ||affbot8.com^$third-party (easylistchina+easylist.txt: 35343) -.affbot8.com -# ||affbot7.com^$third-party (easylistchina+easylist.txt: 35342) -.affbot7.com -# ||affbot3.com^$third-party (easylistchina+easylist.txt: 35341) -.affbot3.com -# ||affbot1.com^$third-party (easylistchina+easylist.txt: 35340) -.affbot1.com -# ||aff.biz^$third-party (easylistchina+easylist.txt: 35339) -.aff.biz -# ||aff-online.com^$third-party (easylistchina+easylist.txt: 35338) -.aff-online.com -# ||afdads.com^$third-party (easylistchina+easylist.txt: 35337) -.afdads.com -# ||afcyhf.com^$third-party (easylistchina+easylist.txt: 35336) -.afcyhf.com -# ||adzs.nl^$third-party (easylistchina+easylist.txt: 35335) -.adzs.nl -# ||adzouk.com^$third-party (easylistchina+easylist.txt: 35334) -.adzouk.com -# ||adzonk.com^$third-party (easylistchina+easylist.txt: 35333) -.adzonk.com -# ||adziff.com^$third-party (easylistchina+easylist.txt: 35332) -.adziff.com -# ||adzhub.com^$third-party (easylistchina+easylist.txt: 35331) -.adzhub.com -# ||adzerk.net^$third-party (easylistchina+easylist.txt: 35330) -.adzerk.net -# ||adzbazar.com^$third-party (easylistchina+easylist.txt: 35329) -.adzbazar.com -# ||adz.co.zw^$third-party (easylistchina+easylist.txt: 35328) -.adz.co.zw -# ||adyoz.com^$third-party (easylistchina+easylist.txt: 35327) -.adyoz.com -# ||adyoulike.com^$third-party (easylistchina+easylist.txt: 35326) -.adyoulike.com -# ||adxpower.com^$third-party (easylistchina+easylist.txt: 35325) -.adxpower.com -# ||adxpose.com^$third-party (easylistchina+easylist.txt: 35324) -.adxpose.com -# ||adxion.com^$third-party (easylistchina+easylist.txt: 35323) -.adxion.com -# ||adxcore.com^$third-party (easylistchina+easylist.txt: 35322) -.adxcore.com -# ||adworldmedia.net^$third-party (easylistchina+easylist.txt: 35321) -.adworldmedia.net -# ||adworldmedia.com^$third-party (easylistchina+easylist.txt: 35320) -.adworldmedia.com -# ||adworkmedia.com^$third-party (easylistchina+easylist.txt: 35319) -.adworkmedia.com -# ||adwordsservicapi.com^$third-party (easylistchina+easylist.txt: 35318) -.adwordsservicapi.com -# ||adwires.com^$third-party (easylistchina+easylist.txt: 35317) -.adwires.com -# ||advsnx.net^$third-party (easylistchina+easylist.txt: 35316) -.advsnx.net -# ||advrtice.com^$third-party (easylistchina+easylist.txt: 35315) -.advrtice.com -# ||advpoints.com^$third-party (easylistchina+easylist.txt: 35314) -.advpoints.com -# ||advombat.ru^$third-party (easylistchina+easylist.txt: 35313) -.advombat.ru -# ||advmedialtd.com^$third-party (easylistchina+easylist.txt: 35312) -.advmedialtd.com -# ||advmd.com^$third-party (easylistchina+easylist.txt: 35311) -.advmd.com -# ||adviva.net^$third-party (easylistchina+easylist.txt: 35310) -.adviva.net -# ||advgoogle.com^$third-party (easylistchina+easylist.txt: 35309) -.advgoogle.com -# ||advg.jp^$third-party (easylistchina+easylist.txt: 35308) -.advg.jp -# ||advertxi.com^$third-party (easylistchina+easylist.txt: 35307) -.advertxi.com -# ||advertur.ru^$third-party (easylistchina+easylist.txt: 35306) -.advertur.ru -# ||advertstream.com^$third-party (easylistchina+easylist.txt: 35305) -.advertstream.com -# ||advertstatic.com^$third-party (easylistchina+easylist.txt: 35304) -.advertstatic.com -# ||advertserve.com^$third-party (easylistchina+easylist.txt: 35303) -.advertserve.com -# ||advertrev.com^$third-party (easylistchina+easylist.txt: 35302) -.advertrev.com -# ||advertpay.net^$third-party (easylistchina+easylist.txt: 35301) -.advertpay.net -# ||advertone.ru^$third-party (easylistchina+easylist.txt: 35300) -.advertone.ru -# ||advertmedias.com^$third-party (easylistchina+easylist.txt: 35299) -.advertmedias.com -# ||advertmarketing.com^$third-party (easylistchina+easylist.txt: 35298) -.advertmarketing.com -# ||advertlets.com^$third-party (easylistchina+easylist.txt: 35297) -.advertlets.com -# ||advertlead.net^$third-party (easylistchina+easylist.txt: 35296) -.advertlead.net -# ||advertjunction.com^$third-party (easylistchina+easylist.txt: 35295) -.advertjunction.com -# ||advertisingvalue.info^$third-party (easylistchina+easylist.txt: 35294) -.advertisingvalue.info -# ||advertisingpath.net^$third-party (easylistchina+easylist.txt: 35293) -.advertisingpath.net -# ||advertisingiq.com^$third-party (easylistchina+easylist.txt: 35292) -.advertisingiq.com -# ||advertising365.com^$third-party (easylistchina+easylist.txt: 35291) -.advertising365.com -# ||advertising.com^$third-party (easylistchina+easylist.txt: 35290) -.advertising.com -# ||advertising-department.com^$third-party (easylistchina+easylist.txt: 35289) -.advertising-department.com -# ||advertiseyourgame.com^$third-party (easylistchina+easylist.txt: 35288) -.advertiseyourgame.com -# ||advertisespace.com^$third-party (easylistchina+easylist.txt: 35287) -.advertisespace.com -# ||advertisegame.com^$third-party (easylistchina+easylist.txt: 35286) -.advertisegame.com -# ||advertiseforfree.co.za^$third-party (easylistchina+easylist.txt: 35285) -.advertiseforfree.co.za -# ||advertise.com^$third-party (easylistchina+easylist.txt: 35284) -.advertise.com -# ||adverticum.net^$third-party (easylistchina+easylist.txt: 35283) -.adverticum.net -# ||adverteerdirect.nl^$third-party (easylistchina+easylist.txt: 35282) -.adverteerdirect.nl -# ||advertbox.us^$third-party (easylistchina+easylist.txt: 35281) -.advertbox.us -# ||advertarium.com.ua^$third-party (easylistchina+easylist.txt: 35280) -.advertarium.com.ua -# ||adverserve.net^$third-party (easylistchina+easylist.txt: 35279) -.adverserve.net -# ||adversalservers.com^$third-party (easylistchina+easylist.txt: 35278) -.adversalservers.com -# ||adversaldisplay.com^$third-party (easylistchina+easylist.txt: 35277) -.adversaldisplay.com -# ||adversal.com^$third-party (easylistchina+easylist.txt: 35276) -.adversal.com -# ||adventori.com^$third-party (easylistchina+easylist.txt: 35275) -.adventori.com -# ||advatar.to^$third-party (easylistchina+easylist.txt: 35274) -.advatar.to -# ||advard.com^$third-party (easylistchina+easylist.txt: 35273) -.advard.com -# ||advantageglobalmarketing.com^$third-party (easylistchina+easylist.txt: 35272) -.advantageglobalmarketing.com -# ||advanseads.com^$third-party (easylistchina+easylist.txt: 35271) -.advanseads.com -# ||adv9.net^$third-party (easylistchina+easylist.txt: 35270) -.adv9.net -# ||adv-adserver.com^$third-party (easylistchina+easylist.txt: 35269) -.adv-adserver.com -# ||adurr.com^$third-party (easylistchina+easylist.txt: 35268) -.adurr.com -# ||adulttds.com^$third-party (easylistchina+easylist.txt: 35267) -.adulttds.com -# ||adultimate.net^$third-party (easylistchina+easylist.txt: 35266) -.adultimate.net -# ||adultadworld.com^$third-party (easylistchina+easylist.txt: 35265) -.adultadworld.com -# ||adult-adv.com^$third-party (easylistchina+easylist.txt: 35264) -.adult-adv.com -# ||aduacni.com^$third-party (easylistchina+easylist.txt: 35263) -.aduacni.com -# ||adtwirl.com^$third-party (easylistchina+easylist.txt: 35262) -.adtwirl.com -# ||adtruism.com^$third-party (easylistchina+easylist.txt: 35261) -.adtruism.com -# ||adtrovert.com^$third-party (easylistchina+easylist.txt: 35260) -.adtrovert.com -# ||adtrix.com^$third-party (easylistchina+easylist.txt: 35259) -.adtrix.com -# ||adtrgt.com^$third-party (easylistchina+easylist.txt: 35258) -.adtrgt.com -# ||adtransfer.net^$third-party (easylistchina+easylist.txt: 35257) -.adtransfer.net -# ||adtrace.org^$third-party (easylistchina+easylist.txt: 35256) -.adtrace.org -# ||adtpix.com^$third-party (easylistchina+easylist.txt: 35255) -.adtpix.com -# ||adtotal.pl^$third-party (easylistchina+easylist.txt: 35254) -.adtotal.pl -# ||adtoox.com^$third-party (easylistchina+easylist.txt: 35253) -.adtoox.com -# ||adtomafusion.com^$third-party (easylistchina+easylist.txt: 35252) -.adtomafusion.com -# ||adtoma.com^$third-party (easylistchina+easylist.txt: 35251) -.adtoma.com -# ||adtology3.com^$third-party (easylistchina+easylist.txt: 35250) -.adtology3.com -# ||adtology2.com^$third-party (easylistchina+easylist.txt: 35249) -.adtology2.com -# ||adtology1.com^$third-party (easylistchina+easylist.txt: 35248) -.adtology1.com -# ||adtoll.com^$third-party (easylistchina+easylist.txt: 35247) -.adtoll.com -# ||adtoadd.com^$third-party (easylistchina+easylist.txt: 35246) -.adtoadd.com -# ||adtlgc.com^$third-party (easylistchina+easylist.txt: 35245) -.adtlgc.com -# ||adtgs.com^$third-party (easylistchina+easylist.txt: 35244) -.adtgs.com -# ||adteractive.com^$third-party (easylistchina+easylist.txt: 35243) -.adteractive.com -# ||adtegrity.net^$third-party (easylistchina+easylist.txt: 35242) -.adtegrity.net -# ||adtechus.com^$third-party (easylistchina+easylist.txt: 35241) -.adtechus.com -# ||adtech.de^$third-party (easylistchina+easylist.txt: 35240) -.adtech.de -# ||adtecc.com^$third-party (easylistchina+easylist.txt: 35239) -.adtecc.com -# ||adtdp.com^$third-party (easylistchina+easylist.txt: 35238) -.adtdp.com -# ||adtaily.pl^$third-party (easylistchina+easylist.txt: 35237) -.adtaily.pl -# ||adtaily.eu^$third-party (easylistchina+easylist.txt: 35236) -.adtaily.eu -# ||adtaily.com^$third-party (easylistchina+easylist.txt: 35235) -.adtaily.com -# ||adsymptotic.com^$third-party (easylistchina+easylist.txt: 35234) -.adsymptotic.com -# ||adsxgm.com^$third-party (easylistchina+easylist.txt: 35233) -.adsxgm.com -# ||adswizz.com^$third-party (easylistchina+easylist.txt: 35232) -.adswizz.com -# ||adsvert.com^$third-party (easylistchina+easylist.txt: 35231) -.adsvert.com -# ||adsurve.com^$third-party (easylistchina+easylist.txt: 35230) -.adsurve.com -# ||adsupply.com^$third-party (easylistchina+easylist.txt: 35229) -.adsupply.com -# ||adsupermarket.com^$third-party (easylistchina+easylist.txt: 35228) -.adsupermarket.com -# ||adsummos.net^$third-party (easylistchina+easylist.txt: 35227) -.adsummos.net -# ||adsterra.com^$third-party (easylistchina+easylist.txt: 35226) -.adsterra.com -# ||adstatic.com^$third-party (easylistchina+easylist.txt: 35225) -.adstatic.com -# ||adstargeting.com^$third-party (easylistchina+easylist.txt: 35224) -.adstargeting.com -# ||adssites.net^$third-party (easylistchina+easylist.txt: 35223) -.adssites.net -# ||adssend.net^$third-party (easylistchina+easylist.txt: 35222) -.adssend.net -# ||adsrvr.org^$third-party (easylistchina+easylist.txt: 35221) -.adsrvr.org -# ||adsrvmedia.net^$third-party (easylistchina+easylist.txt: 35220) -.adsrvmedia.net -# ||adsrvmedia.com^$third-party (easylistchina+easylist.txt: 35219) -.adsrvmedia.com -# ||adsrv.us^$third-party (easylistchina+easylist.txt: 35218) -.adsrv.us -# ||adsring.com^$third-party (easylistchina+easylist.txt: 35217) -.adsring.com -# ||adsrevenue.net^$third-party (easylistchina+easylist.txt: 35216) -.adsrevenue.net -# ||adspynet.com^$third-party (easylistchina+easylist.txt: 35215) -.adspynet.com -# ||adspruce.com^$third-party (easylistchina+easylist.txt: 35214) -.adspruce.com -# ||adspring.to^$third-party (easylistchina+easylist.txt: 35213) -.adspring.to -# ||adspirit.de^$third-party (easylistchina+easylist.txt: 35212) -.adspirit.de -# ||adspeed.com^$third-party (easylistchina+easylist.txt: 35211) -.adspeed.com -# ||adspdbl.com^$third-party (easylistchina+easylist.txt: 35210) -.adspdbl.com -# ||adsparc.net^$third-party (easylistchina+easylist.txt: 35209) -.adsparc.net -# ||adspaper.org^$third-party (easylistchina+easylist.txt: 35208) -.adspaper.org -# ||adsovo.com^$third-party (easylistchina+easylist.txt: 35207) -.adsovo.com -# ||adsopx.com^$third-party (easylistchina+easylist.txt: 35206) -.adsopx.com -# ||adsonar.com^$third-party (easylistchina+easylist.txt: 35205) -.adsonar.com -# ||adsniper.ru^$third-party (easylistchina+easylist.txt: 35204) -.adsniper.ru -# ||adsnext.net^$third-party (easylistchina+easylist.txt: 35203) -.adsnext.net -# ||adsnetworkserver.com^$third-party (easylistchina+easylist.txt: 35202) -.adsnetworkserver.com -# ||adsnative.com^$third-party (easylistchina+easylist.txt: 35201) -.adsnative.com -# ||adsmws.cloudapp.net^$third-party (easylistchina+easylist.txt: 35200) -.adsmws.cloudapp.net -# ||adsmoon.com^$third-party (easylistchina+easylist.txt: 35199) -.adsmoon.com -# ||adsmile.biz^$third-party (easylistchina+easylist.txt: 35198) -.adsmile.biz -# ||adsmedia.cc^$third-party (easylistchina+easylist.txt: 35197) -.adsmedia.cc -# ||adsmarket.es^$third-party (easylistchina+easylist.txt: 35196) -.adsmarket.es -# ||adsmarket.com^$third-party (easylistchina+easylist.txt: 35195) -.adsmarket.com -# ||adslot.com^$third-party (easylistchina+easylist.txt: 35194) -.adslot.com -# ||adslingers.com^$third-party (easylistchina+easylist.txt: 35193) -.adslingers.com -# ||adslidango.com^$third-party (easylistchina+easylist.txt: 35192) -.adslidango.com -# ||adskeeper.co.uk^$third-party (easylistchina+easylist.txt: 35191) -.adskeeper.co.uk -# ||adsinimages.com^$third-party (easylistchina+easylist.txt: 35190) -.adsinimages.com -# ||adsimilis.com^$third-party (easylistchina+easylist.txt: 35189) -.adsimilis.com -# ||adsignals.com^$third-party (easylistchina+easylist.txt: 35188) -.adsignals.com -# ||adshuffle.com^$third-party (easylistchina+easylist.txt: 35187) -.adshuffle.com -# ||adshot.de^$third-party (easylistchina+easylist.txt: 35186) -.adshot.de -# ||adshost2.com^$third-party (easylistchina+easylist.txt: 35185) -.adshost2.com -# ||adshost1.com^$third-party (easylistchina+easylist.txt: 35184) -.adshost1.com -# ||adshopping.com^$third-party (easylistchina+easylist.txt: 35183) -.adshopping.com -# ||adshexa.com^$third-party (easylistchina+easylist.txt: 35182) -.adshexa.com -# ||adshack.com^$third-party (easylistchina+easylist.txt: 35181) -.adshack.com -# ||adsfuse.com^$third-party (easylistchina+easylist.txt: 35180) -.adsfuse.com -# ||adsfundi.net^$third-party (easylistchina+easylist.txt: 35179) -.adsfundi.net -# ||adsfundi.com^$third-party (easylistchina+easylist.txt: 35178) -.adsfundi.com -# ||adsforindians.com^$third-party (easylistchina+easylist.txt: 35177) -.adsforindians.com -# ||adsfast.com^$third-party (easylistchina+easylist.txt: 35176) -.adsfast.com -# ||adsfactor.net^$third-party (easylistchina+easylist.txt: 35175) -.adsfactor.net -# ||adsfac.us^$third-party (easylistchina+easylist.txt: 35174) -.adsfac.us -# ||adsfac.net^$third-party (easylistchina+easylist.txt: 35173) -.adsfac.net -# ||adsfac.eu^$third-party (easylistchina+easylist.txt: 35172) -.adsfac.eu -# ||adservr.de^$third-party (easylistchina+easylist.txt: 35171) -.adservr.de -# ||adservpi.com^$third-party (easylistchina+easylist.txt: 35170) -.adservpi.com -# ||adservinginternational.com^$third-party (easylistchina+easylist.txt: 35169) -.adservinginternational.com -# ||adservingfactory.com^$third-party (easylistchina+easylist.txt: 35168) -.adservingfactory.com -# ||adservhere.com^$third-party (easylistchina+easylist.txt: 35167) -.adservhere.com -# ||adserverpub.com^$third-party (easylistchina+easylist.txt: 35166) -.adserverpub.com -# ||adserverplus.com^$third-party (easylistchina+easylist.txt: 35165) -.adserverplus.com -# ||adserver-fx.com^$third-party (easylistchina+easylist.txt: 35164) -.adserver-fx.com -# ||adserve.ph^$third-party (easylistchina+easylist.txt: 35163) -.adserve.ph -# ||adserve.com^$third-party (easylistchina+easylist.txt: 35162) -.adserve.com -# ||adserv8.com^$third-party (easylistchina+easylist.txt: 35161) -.adserv8.com -# ||adsensecamp.com^$third-party (easylistchina+easylist.txt: 35160) -.adsensecamp.com -# ||adsearcher.ru^$third-party (easylistchina+easylist.txt: 35159) -.adsearcher.ru -# ||adsdot.ph^$third-party (easylistchina+easylist.txt: 35158) -.adsdot.ph -# ||adsdk.com^$third-party (easylistchina+easylist.txt: 35157) -.adsdk.com -# ||adsclickingnetwork.com^$third-party (easylistchina+easylist.txt: 35156) -.adsclickingnetwork.com -# ||adscendmedia.com^$third-party (easylistchina+easylist.txt: 35155) -.adscendmedia.com -# ||adscampaign.net^$third-party (easylistchina+easylist.txt: 35154) -.adscampaign.net -# ||adscale.de^$third-party (easylistchina+easylist.txt: 35153) -.adscale.de -# ||adsbrook.com^$third-party (easylistchina+easylist.txt: 35152) -.adsbrook.com -# ||adsbookie.com^$third-party (easylistchina+easylist.txt: 35151) -.adsbookie.com -# ||adsame.com^$third-party (easylistchina+easylist.txt: 35150) -.adsame.com -# ||adsalvo.com^$third-party (easylistchina+easylist.txt: 35149) -.adsalvo.com -# ||adsafeprotected.com^$third-party (easylistchina+easylist.txt: 35148) -.adsafeprotected.com -# ||ads4cheap.com^$third-party (easylistchina+easylist.txt: 35147) -.ads4cheap.com -# ||ads2srv.com^$third-party (easylistchina+easylist.txt: 35146) -.ads2srv.com -# ||ads2ads.net^$third-party (easylistchina+easylist.txt: 35145) -.ads2ads.net -# ||ads01.com^$third-party (easylistchina+easylist.txt: 35144) -.ads01.com -# ||ads.intergi.com^$third-party (easylistchina+easylist.txt: 35143) -.ads.intergi.com -# ||ads-stats.com^$third-party (easylistchina+easylist.txt: 35142) -.ads-stats.com -# ||ads-elsevier.net^$third-party (easylistchina+easylist.txt: 35141) -.ads-elsevier.net -# ||ads-4u.com^$third-party (easylistchina+easylist.txt: 35140) -.ads-4u.com -# ||adrocket.com^$third-party (easylistchina+easylist.txt: 35139) -.adrocket.com -# ||adrise.de^$third-party (easylistchina+easylist.txt: 35138) -.adrise.de -# ||adrich.cash^$third-party (easylistchina+easylist.txt: 35137) -.adrich.cash -# ||adrevolver.com^$third-party (easylistchina+easylist.txt: 35136) -.adrevolver.com -# ||adresellers.com^$third-party (easylistchina+easylist.txt: 35135) -.adresellers.com -# ||adreadytractions.com^$third-party (easylistchina+easylist.txt: 35134) -.adreadytractions.com -# ||adready.com^$third-party (easylistchina+easylist.txt: 35133) -.adready.com -# ||adreactor.com^$third-party (easylistchina+easylist.txt: 35132) -.adreactor.com -# ||adrcdn.com^$third-party (easylistchina+easylist.txt: 35131) -.adrcdn.com -# ||adquest3d.com^$third-party (easylistchina+easylist.txt: 35130) -.adquest3d.com -# ||adquantix.com^$third-party (easylistchina+easylist.txt: 35129) -.adquantix.com -# ||adpushup.com^$third-party (easylistchina+easylist.txt: 35128) -.adpushup.com -# ||adprs.net^$third-party (easylistchina+easylist.txt: 35127) -.adprs.net -# ||adprovi.de^$third-party (easylistchina+easylist.txt: 35126) -.adprovi.de -# ||adprotected.com^$third-party (easylistchina+easylist.txt: 35125) -.adprotected.com -# ||adproper.info^$third-party (easylistchina+easylist.txt: 35124) -.adproper.info -# ||adprofit2share.com^$third-party (easylistchina+easylist.txt: 35123) -.adprofit2share.com -# ||adpremo.com^$third-party (easylistchina+easylist.txt: 35122) -.adpremo.com -# ||adpredictive.com^$third-party (easylistchina+easylist.txt: 35121) -.adpredictive.com -# ||adppv.com^$third-party (easylistchina+easylist.txt: 35120) -.adppv.com -# ||adpoper.com^$third-party (easylistchina+easylist.txt: 35119) -.adpoper.com -# ||adplxmd.com^$third-party (easylistchina+easylist.txt: 35118) -.adplxmd.com -# ||adplugg.com^$third-party (easylistchina+easylist.txt: 35117) -.adplugg.com -# ||adplex.media^$third-party (easylistchina+easylist.txt: 35116) -.adplex.media -# ||adplans.info^$third-party (easylistchina+easylist.txt: 35115) -.adplans.info -# ||adpionier.de^$third-party (easylistchina+easylist.txt: 35114) -.adpionier.de -# ||adpinion.com^$third-party (easylistchina+easylist.txt: 35113) -.adpinion.com -# ||adphreak.com^$third-party (easylistchina+easylist.txt: 35112) -.adphreak.com -# ||adperium.com^$third-party (easylistchina+easylist.txt: 35111) -.adperium.com -# ||adperfect.com^$third-party (easylistchina+easylist.txt: 35110) -.adperfect.com -# ||adpay.com^$third-party (easylistchina+easylist.txt: 35109) -.adpay.com -# ||adpath.mobi^$third-party (easylistchina+easylist.txt: 35108) -.adpath.mobi -# ||adparlor.com^$third-party (easylistchina+easylist.txt: 35107) -.adparlor.com -# ||adpacks.com^$third-party (easylistchina+easylist.txt: 35106) -.adpacks.com -# ||adowner.net^$third-party (easylistchina+easylist.txt: 35105) -.adowner.net -# ||adovida.com^$third-party (easylistchina+easylist.txt: 35104) -.adovida.com -# ||adotube.com^$third-party (easylistchina+easylist.txt: 35103) -.adotube.com -# ||adotomy.com^$third-party (easylistchina+easylist.txt: 35102) -.adotomy.com -# ||adotic.com^$third-party (easylistchina+easylist.txt: 35101) -.adotic.com -# ||adorika.net^$third-party (easylistchina+easylist.txt: 35100) -.adorika.net -# ||adorika.com^$third-party (easylistchina+easylist.txt: 35099) -.adorika.com -# ||adoptim.com^$third-party (easylistchina+easylist.txt: 35098) -.adoptim.com -# ||adoperator.com^$third-party (easylistchina+easylist.txt: 35097) -.adoperator.com -# ||adonweb.ru^$third-party (easylistchina+easylist.txt: 35096) -.adonweb.ru -# ||adonnews.com^$third-party (easylistchina+easylist.txt: 35095) -.adonnews.com -# ||adonly.com^$third-party (easylistchina+easylist.txt: 35094) -.adonly.com -# ||adonion.com^$third-party (easylistchina+easylist.txt: 35093) -.adonion.com -# ||adohana.com^$third-party (easylistchina+easylist.txt: 35092) -.adohana.com -# ||adocean.pl^$third-party (easylistchina+easylist.txt: 35091) -.adocean.pl -# ||adnxs1.com^$third-party (easylistchina+easylist.txt: 35090) -.adnxs1.com -# ||adnxs.net^$third-party (easylistchina+easylist.txt: 35089) -.adnxs.net -# ||adnxs.com^$third-party (easylistchina+easylist.txt: 35088) -.adnxs.com -# ||adnow.com^$third-party (easylistchina+easylist.txt: 35087) -.adnow.com -# ||adnoble.com^$third-party (easylistchina+easylist.txt: 35086) -.adnoble.com -# ||adnmore.co.kr^$third-party (easylistchina+easylist.txt: 35085) -.adnmore.co.kr -# ||adnium.com^$third-party (easylistchina+easylist.txt: 35084) -.adnium.com -# ||adnimation.com^$third-party (easylistchina+easylist.txt: 35083) -.adnimation.com -# ||adngin.com^$third-party (easylistchina+easylist.txt: 35082) -.adngin.com -# ||adnext.fr^$third-party (easylistchina+easylist.txt: 35081) -.adnext.fr -# ||adnetworkperformance.com^$third-party (easylistchina+easylist.txt: 35080) -.adnetworkperformance.com -# ||adnetworkme.com^$third-party (easylistchina+easylist.txt: 35079) -.adnetworkme.com -# ||adnet.vn^$third-party (easylistchina+easylist.txt: 35078) -.adnet.vn -# ||adnet.ru^$third-party (easylistchina+easylist.txt: 35077) -.adnet.ru -# ||adnet.lt^$third-party (easylistchina+easylist.txt: 35076) -.adnet.lt -# ||adnet.de^$third-party (easylistchina+easylist.txt: 35075) -.adnet.de -# ||adnet.com^$third-party (easylistchina+easylist.txt: 35074) -.adnet.com -# ||adnet.biz^$third-party (easylistchina+easylist.txt: 35073) -.adnet.biz -# ||adnet-media.net^$third-party (easylistchina+easylist.txt: 35072) -.adnet-media.net -# ||adnectar.com^$third-party (easylistchina+easylist.txt: 35071) -.adnectar.com -# ||adne.tv^$third-party (easylistchina+easylist.txt: 35070) -.adne.tv -# ||admzn.com^$third-party (easylistchina+easylist.txt: 35069) -.admzn.com -# ||admulti.com^$third-party (easylistchina+easylist.txt: 35068) -.admulti.com -# ||admtpmp127.com^$third-party (easylistchina+easylist.txt: 35067) -.admtpmp127.com -# ||admpads.com^$third-party (easylistchina+easylist.txt: 35066) -.admpads.com -# ||admngronline.com^$third-party (easylistchina+easylist.txt: 35065) -.admngronline.com -# ||admixer.net^$third-party (easylistchina+easylist.txt: 35064) -.admixer.net -# ||admitad.com^$third-party (easylistchina+easylist.txt: 35063) -.admitad.com -# ||admission.net^$third-party (easylistchina+easylist.txt: 35062) -.admission.net -# ||admeta.com^$third-party (easylistchina+easylist.txt: 35061) -.admeta.com -# ||admeld.com^$third-party (easylistchina+easylist.txt: 35060) -.admeld.com -# ||admedo.com^$third-party (easylistchina+easylist.txt: 35059) -.admedo.com -# ||admedias.net^$third-party (easylistchina+easylist.txt: 35058) -.admedias.net -# ||admedia.com^$third-party (easylistchina+easylist.txt: 35057) -.admedia.com -# ||admaya.in^$third-party (easylistchina+easylist.txt: 35056) -.admaya.in -# ||admaxim.com^$third-party (easylistchina+easylist.txt: 35055) -.admaxim.com -# ||admarketplace.net^$third-party (easylistchina+easylist.txt: 35054) -.admarketplace.net -# ||admanmedia.com^$third-party (easylistchina+easylist.txt: 35053) -.admanmedia.com -# ||admanage.com^$third-party (easylistchina+easylist.txt: 35052) -.admanage.com -# ||adman.gr^$third-party (easylistchina+easylist.txt: 35051) -.adman.gr -# ||admamba.com^$third-party (easylistchina+easylist.txt: 35050) -.admamba.com -# ||admailtiser.com^$third-party (easylistchina+easylist.txt: 35049) -.admailtiser.com -# ||admagnet.net^$third-party (easylistchina+easylist.txt: 35048) -.admagnet.net -# ||adlux.com^$third-party (easylistchina+easylist.txt: 35044) -.adlux.com -# ||adlure.biz^$third-party (easylistchina+easylist.txt: 35043) -.adlure.biz -# ||adlpartner.com^$third-party (easylistchina+easylist.txt: 35042) -.adlpartner.com -# ||adlooxtracking.com^$third-party (easylistchina+easylist.txt: 35041) -.adlooxtracking.com -# ||adloaded.com^$third-party (easylistchina+easylist.txt: 35040) -.adloaded.com -# ||adlisher.com^$third-party (easylistchina+easylist.txt: 35039) -.adlisher.com -# ||adlinx.info^$third-party (easylistchina+easylist.txt: 35038) -.adlinx.info -# ||adlink.net^$third-party (easylistchina+easylist.txt: 35037) -.adlink.net -# ||adlegend.com^$third-party (easylistchina+easylist.txt: 35036) -.adlegend.com -# ||adlayer.net^$third-party (easylistchina+easylist.txt: 35035) -.adlayer.net -# ||adkonekt.com^$third-party (easylistchina+easylist.txt: 35034) -.adkonekt.com -# ||adknowledge.com^$third-party (easylistchina+easylist.txt: 35033) -.adknowledge.com -# ||adklip.com^$third-party (easylistchina+easylist.txt: 35032) -.adklip.com -# ||adkick.net^$third-party (easylistchina+easylist.txt: 35031) -.adkick.net -# ||adkengage.com^$third-party (easylistchina+easylist.txt: 35030) -.adkengage.com -# ||adk2x.com^$third-party (easylistchina+easylist.txt: 35029) -.adk2x.com -# ||adk2.com^$third-party (easylistchina+easylist.txt: 35028) -.adk2.com -# ||adk2.co^$third-party (easylistchina+easylist.txt: 35027) -.adk2.co -# ||adjungle.com^$third-party (easylistchina+easylist.txt: 35026) -.adjungle.com -# ||adjuggler.net^$third-party (easylistchina+easylist.txt: 35025) -.adjuggler.net -# ||adjuggler.com^$third-party (easylistchina+easylist.txt: 35024) -.adjuggler.com -# ||adjug.com^$third-party (easylistchina+easylist.txt: 35023) -.adjug.com -# ||adjector.com^$third-party (easylistchina+easylist.txt: 35022) -.adjector.com -# ||adjal.com^$third-party (easylistchina+easylist.txt: 35021) -.adjal.com -# ||adition.com^$third-party (easylistchina+easylist.txt: 35020) -.adition.com -# ||adit-media.com^$third-party (easylistchina+easylist.txt: 35019) -.adit-media.com -# ||adisn.com^$third-party (easylistchina+easylist.txt: 35018) -.adisn.com -# ||adisfy.com^$third-party (easylistchina+easylist.txt: 35017) -.adisfy.com -# ||adireland.com^$third-party (easylistchina+easylist.txt: 35016) -.adireland.com -# ||adiqglobal.com^$third-party (easylistchina+easylist.txt: 35015) -.adiqglobal.com -# ||adip.ly^$third-party (easylistchina+easylist.txt: 35014) -.adip.ly -# ||adinterax.com^$third-party (easylistchina+easylist.txt: 35013) -.adinterax.com -# ||adintend.com^$third-party (easylistchina+easylist.txt: 35012) -.adintend.com -# ||adinfinity.com.au^$third-party (easylistchina+easylist.txt: 35011) -.adinfinity.com.au -# ||adindigo.com^$third-party (easylistchina+easylist.txt: 35010) -.adindigo.com -# ||adincon.com^$third-party (easylistchina+easylist.txt: 35009) -.adincon.com -# ||adinch.com^$third-party (easylistchina+easylist.txt: 35008) -.adinch.com -# ||adimpression.net^$third-party (easylistchina+easylist.txt: 35007) -.adimpression.net -# ||adimperia.com^$third-party (easylistchina+easylist.txt: 35006) -.adimperia.com -# ||adimpact.com^$third-party (easylistchina+easylist.txt: 35005) -.adimpact.com -# ||adimise.com^$third-party (easylistchina+easylist.txt: 35004) -.adimise.com -# ||adikteev.com^$third-party (easylistchina+easylist.txt: 35003) -.adikteev.com -# ||adigniter.org^$third-party (easylistchina+easylist.txt: 35002) -.adigniter.org -# ||adicate.com^$third-party (easylistchina+easylist.txt: 35001) -.adicate.com -# ||adhub.co.nz^$third-party (easylistchina+easylist.txt: 35000) -.adhub.co.nz -# ||adhostingsolutions.com^$third-party (easylistchina+easylist.txt: 34999) -.adhostingsolutions.com -# ||adhitzads.com^$third-party (easylistchina+easylist.txt: 34998) -.adhitzads.com -# ||adhigh.net^$third-party (easylistchina+easylist.txt: 34997) -.adhigh.net -# ||adhese.net^$third-party (easylistchina+easylist.txt: 34996) -.adhese.net -# ||adhese.com^$third-party (easylistchina+easylist.txt: 34995) -.adhese.com -# ||adhese.be^$third-party (easylistchina+easylist.txt: 34994) -.adhese.be -# ||adgrx.com^$third-party (easylistchina+easylist.txt: 34993) -.adgrx.com -# ||adgroups.com^$third-party (easylistchina+easylist.txt: 34992) -.adgroups.com -# ||adgoto.com^$third-party (easylistchina+easylist.txt: 34991) -.adgoto.com -# ||adgorithms.com^$third-party (easylistchina+easylist.txt: 34990) -.adgorithms.com -# ||adglare.net^$third-party (easylistchina+easylist.txt: 34989) -.adglare.net -# ||adglamour.net^$third-party (easylistchina+easylist.txt: 34988) -.adglamour.net -# ||adgitize.com^$third-party (easylistchina+easylist.txt: 34987) -.adgitize.com -# ||adgine.net^$third-party (easylistchina+easylist.txt: 34986) -.adgine.net -# ||adgila.com^$third-party (easylistchina+easylist.txt: 34985) -.adgila.com -# ||adgent007.com^$third-party (easylistchina+easylist.txt: 34984) -.adgent007.com -# ||adgebra.co.in^$third-party (easylistchina+easylist.txt: 34983) -.adgebra.co.in -# ||adgear.com^$third-party (easylistchina+easylist.txt: 34982) -.adgear.com -# ||adgatemedia.com^$third-party (easylistchina+easylist.txt: 34981) -.adgatemedia.com -# ||adgardener.com^$third-party (easylistchina+easylist.txt: 34980) -.adgardener.com -# ||adgalax.com^$third-party (easylistchina+easylist.txt: 34979) -.adgalax.com -# ||adfusion.com^$third-party (easylistchina+easylist.txt: 34978) -.adfusion.com -# ||adfunkyserver.com^$third-party (easylistchina+easylist.txt: 34977) -.adfunkyserver.com -# ||adfrontiers.com^$third-party (easylistchina+easylist.txt: 34976) -.adfrontiers.com -# ||adfrog.info^$third-party (easylistchina+easylist.txt: 34975) -.adfrog.info -# ||adfrika.com^$third-party (easylistchina+easylist.txt: 34974) -.adfrika.com -# ||adframesrc.com^$third-party (easylistchina+easylist.txt: 34973) -.adframesrc.com -# ||adform.net^$third-party (easylistchina+easylist.txt: 34972) -.adform.net -# ||adforgeinc.com^$third-party (easylistchina+easylist.txt: 34971) -.adforgeinc.com -# ||adforgames.com^$third-party (easylistchina+easylist.txt: 34970) -.adforgames.com -# ||adfootprints.com^$third-party (easylistchina+easylist.txt: 34969) -.adfootprints.com -# ||adfeedstrk.com^$third-party (easylistchina+easylist.txt: 34968) -.adfeedstrk.com -# ||adfactory88.com^$third-party (easylistchina+easylist.txt: 34967) -.adfactory88.com -# ||adf01.net^$third-party (easylistchina+easylist.txt: 34966) -.adf01.net -# ||adextent.com^$third-party (easylistchina+easylist.txt: 34965) -.adextent.com -# ||adexprts.com^$third-party (easylistchina+easylist.txt: 34964) -.adexprts.com -# ||adexprt.com^$third-party (easylistchina+easylist.txt: 34963) -.adexprt.com -# ||adexcite.com^$third-party (easylistchina+easylist.txt: 34962) -.adexcite.com -# ||adespresso.com^$third-party (easylistchina+easylist.txt: 34961) -.adespresso.com -# ||adengage.com^$third-party (easylistchina+easylist.txt: 34960) -.adengage.com -# ||ademails.com^$third-party (easylistchina+easylist.txt: 34959) -.ademails.com -# ||adelement.com^$third-party (easylistchina+easylist.txt: 34958) -.adelement.com -# ||adedy.com^$third-party (easylistchina+easylist.txt: 34957) -.adedy.com -# ||adecn.com^$third-party (easylistchina+easylist.txt: 34956) -.adecn.com -# ||addynamo.net^$third-party (easylistchina+easylist.txt: 34955) -.addynamo.net -# ||addynamix.com^$third-party (easylistchina+easylist.txt: 34954) -.addynamix.com -# ||addynamics.eu^$third-party (easylistchina+easylist.txt: 34953) -.addynamics.eu -# ||addroid.com^$third-party (easylistchina+easylist.txt: 34952) -.addroid.com -# ||addoer.com^$third-party (easylistchina+easylist.txt: 34951) -.addoer.com -# ||addiply.com^$third-party (easylistchina+easylist.txt: 34950) -.addiply.com -# ||addelive.com^$third-party (easylistchina+easylist.txt: 34949) -.addelive.com -# ||addaim.com^$third-party (easylistchina+easylist.txt: 34948) -.addaim.com -# ||adcru.com^$third-party (easylistchina+easylist.txt: 34947) -.adcru.com -# ||adcron.com^$third-party (easylistchina+easylist.txt: 34946) -.adcron.com -# ||adcount.in^$third-party (easylistchina+easylist.txt: 34945) -.adcount.in -# ||adconscious.com^$third-party (easylistchina+easylist.txt: 34944) -.adconscious.com -# ||adcolo.com^$third-party (easylistchina+easylist.txt: 34943) -.adcolo.com -# ||adcloud.net^$third-party (easylistchina+easylist.txt: 34942) -.adcloud.net -# ||adclickmedia.com^$third-party (easylistchina+easylist.txt: 34941) -.adclickmedia.com -# ||adclickafrica.com^$third-party (easylistchina+easylist.txt: 34940) -.adclickafrica.com -# ||adclick.pk^$third-party (easylistchina+easylist.txt: 34939) -.adclick.pk -# ||adclick.lv^$third-party (easylistchina+easylist.txt: 34938) -.adclick.lv -# ||adchoice.co.za^$third-party (easylistchina+easylist.txt: 34937) -.adchoice.co.za -# ||adchemical.com^$third-party (easylistchina+easylist.txt: 34936) -.adchemical.com -# ||adchap.com^$third-party (easylistchina+easylist.txt: 34935) -.adchap.com -# ||adcfrthyo.tk^$third-party (easylistchina+easylist.txt: 34934) -.adcfrthyo.tk -# ||adcentriconline.com^$third-party (easylistchina+easylist.txt: 34933) -.adcentriconline.com -# ||adcdnx.com^$third-party (easylistchina+easylist.txt: 34932) -.adcdnx.com -# ||adcde.com^$third-party (easylistchina+easylist.txt: 34931) -.adcde.com -# ||adcastplus.net^$third-party (easylistchina+easylist.txt: 34930) -.adcastplus.net -# ||adcash.com^$third-party (easylistchina+easylist.txt: 34929) -.adcash.com -# ||adcade.com^$third-party (easylistchina+easylist.txt: 34928) -.adcade.com -# ||adbuyer.com^$third-party (easylistchina+easylist.txt: 34927) -.adbuyer.com -# ||adbutler.com^$third-party (easylistchina+easylist.txt: 34926) -.adbutler.com -# ||adbureau.net^$third-party (easylistchina+easylist.txt: 34925) -.adbureau.net -# ||adbull.com^$third-party (easylistchina+easylist.txt: 34924) -.adbull.com -# ||adbrook.com^$third-party (easylistchina+easylist.txt: 34923) -.adbrook.com -# ||adbroo.com^$third-party (easylistchina+easylist.txt: 34922) -.adbroo.com -# ||adbrite.com^$third-party (easylistchina+easylist.txt: 34921) -.adbrite.com -# ||adbrau.com^$third-party (easylistchina+easylist.txt: 34920) -.adbrau.com -# ||adbooth.net^$third-party (easylistchina+easylist.txt: 34919) -.adbooth.net -# ||adboost.com^$third-party (easylistchina+easylist.txt: 34918) -.adboost.com -# ||adblade.com^$third-party (easylistchina+easylist.txt: 34917) -.adblade.com -# ||adbasket.net^$third-party (easylistchina+easylist.txt: 34916) -.adbasket.net -# ||adbard.net^$third-party (easylistchina+easylist.txt: 34915) -.adbard.net -# ||adapd.com^$third-party (easylistchina+easylist.txt: 34914) -.adapd.com -# ||adaos-ads.net^$third-party (easylistchina+easylist.txt: 34912) -.adaos-ads.net -# ||adagora.com^$third-party (easylistchina+easylist.txt: 34911) -.adagora.com -# ||adadvisor.net^$third-party (easylistchina+easylist.txt: 34910) -.adadvisor.net -# ||adaction.se^$third-party (easylistchina+easylist.txt: 34909) -.adaction.se -# ||adacado.com^$third-party (easylistchina+easylist.txt: 34908) -.adacado.com -# ||ad6media.fr^$third-party (easylistchina+easylist.txt: 34907) -.ad6media.fr -# ||ad4game.com^$third-party (easylistchina+easylist.txt: 34906) -.ad4game.com -# ||ad2up.com^$third-party (easylistchina+easylist.txt: 34905) -.ad2up.com -# ||ad2adnetwork.biz^$third-party (easylistchina+easylist.txt: 34903) -.ad2adnetwork.biz -# ||ad2387.com^$third-party (easylistchina+easylist.txt: 34902) -.ad2387.com -# ||ad20.net^$third-party (easylistchina+easylist.txt: 34901) -.ad20.net -# ||ad134m.com^$third-party (easylistchina+easylist.txt: 34900) -.ad134m.com -# ||ad132m.com^$third-party (easylistchina+easylist.txt: 34899) -.ad132m.com -# ||ad131m.com^$third-party (easylistchina+easylist.txt: 34898) -.ad131m.com -# ||ad129m.com^$third-party (easylistchina+easylist.txt: 34897) -.ad129m.com -# ||ad128m.com^$third-party (easylistchina+easylist.txt: 34896) -.ad128m.com -# ||ad127m.com^$third-party (easylistchina+easylist.txt: 34895) -.ad127m.com -# ||ad125m.com^$third-party (easylistchina+easylist.txt: 34894) -.ad125m.com -# ||ad123m.com^$third-party (easylistchina+easylist.txt: 34893) -.ad123m.com -# ||ad122m.com^$third-party (easylistchina+easylist.txt: 34892) -.ad122m.com -# ||ad121m.com^$third-party (easylistchina+easylist.txt: 34891) -.ad121m.com -# ||ad120m.com^$third-party (easylistchina+easylist.txt: 34890) -.ad120m.com -# ||ad.yieldpartners.com^$third-party (easylistchina+easylist.txt: 34889) -.ad.yieldpartners.com -# ||ad.pxlad.io^$third-party (easylistchina+easylist.txt: 34888) -.ad.pxlad.io -# ||ad.mo.doubleclick.net/dartproxy/$third-party (easylistchina+easylist.txt: 34887) -.ad.mo.doubleclick.net/dartproxy/ -# ||ad.linksynergy.com^$third-party (easylistchina+easylist.txt: 34886) -.ad.linksynergy.com -# ||ad.atdmt.com/i/a.js$third-party (easylistchina+easylist.txt: 34884) -.ad.atdmt.com/i/a\.js -# ||ad.atdmt.com/i/a.html$third-party (easylistchina+easylist.txt: 34883) -.ad.atdmt.com/i/a\.html -# ||ad-vice.biz^$third-party (easylistchina+easylist.txt: 34882) -.ad-vice.biz -# ||ad-stir.com^$third-party (easylistchina+easylist.txt: 34881) -.ad-stir.com -# ||ad-srv.net^$third-party (easylistchina+easylist.txt: 34880) -.ad-srv.net -# ||ad-sponsor.com^$third-party (easylistchina+easylist.txt: 34879) -.ad-sponsor.com -# ||ad-serverparc.nl^$third-party (easylistchina+easylist.txt: 34878) -.ad-serverparc.nl -# ||ad-server.co.za^$third-party (easylistchina+easylist.txt: 34877) -.ad-server.co.za -# ||ad-media.org^$third-party (easylistchina+easylist.txt: 34876) -.ad-media.org -# ||ad-maven.com^$third-party (easylistchina+easylist.txt: 34875) -.ad-maven.com -# ||ad-m.asia^$third-party (easylistchina+easylist.txt: 34874) -.ad-m.asia -# ||ad-indicator.com^$third-party (easylistchina+easylist.txt: 34873) -.ad-indicator.com -# ||ad-gbn.com^$third-party (easylistchina+easylist.txt: 34872) -.ad-gbn.com -# ||ad-flow.com^$third-party (easylistchina+easylist.txt: 34871) -.ad-flow.com -# ||ad-delivery.net^$third-party (easylistchina+easylist.txt: 34870) -.ad-delivery.net -# ||ad-clicks.com^$third-party (easylistchina+easylist.txt: 34869) -.ad-clicks.com -# ||ad-bay.com^$third-party (easylistchina+easylist.txt: 34868) -.ad-bay.com -# ||ad-balancer.net^$third-party (easylistchina+easylist.txt: 34867) -.ad-balancer.net -# ||ad-back.net^$third-party (easylistchina+easylist.txt: 34866) -.ad-back.net -# ||activedancer.com^$third-party (easylistchina+easylist.txt: 34865) -.activedancer.com -# ||actiondesk.com^$third-party (easylistchina+easylist.txt: 34864) -.actiondesk.com -# ||acronym.com^$third-party (easylistchina+easylist.txt: 34863) -.acronym.com -# ||acf-webmaster.net^$third-party (easylistchina+easylist.txt: 34862) -.acf-webmaster.net -# ||accuserveadsystem.com^$third-party (easylistchina+easylist.txt: 34861) -.accuserveadsystem.com -# ||accounts.pkr.com^$third-party (easylistchina+easylist.txt: 34860) -.accounts.pkr.com -# ||accmgr.com^$third-party (easylistchina+easylist.txt: 34859) -.accmgr.com -# ||access-mc.com^$third-party (easylistchina+easylist.txt: 34858) -.access-mc.com -# ||accelacomm.com^$third-party (easylistchina+easylist.txt: 34857) -.accelacomm.com -# ||abtracker.us^$third-party (easylistchina+easylist.txt: 34856) -.abtracker.us -# ||aboutads.quantcast.com^$third-party (easylistchina+easylist.txt: 34855) -.aboutads.quantcast.com -# ||abnad.net^$third-party (easylistchina+easylist.txt: 34854) -.abnad.net -# ||abletomeet.com^$third-party (easylistchina+easylist.txt: 34853) -.abletomeet.com -# ||aaa.dv0.info^$third-party (easylistchina+easylist.txt: 34852) -.aaa.dv0.info -# ||aaa.at4.info^$third-party (easylistchina+easylist.txt: 34851) -.aaa.at4.info -# ||aa.voice2page.com^$third-party (easylistchina+easylist.txt: 34850) -.aa.voice2page.com -# ||a5pub.com^$third-party (easylistchina+easylist.txt: 34849) -.a5pub.com -# ||a4dtrk.com^$third-party (easylistchina+easylist.txt: 34848) -.a4dtrk.com -# ||a433.com^$third-party (easylistchina+easylist.txt: 34847) -.a433.com -# ||a3pub.com^$third-party (easylistchina+easylist.txt: 34846) -.a3pub.com -# ||a2pub.com^$third-party (easylistchina+easylist.txt: 34845) -.a2pub.com -# ||a2dfp.net^$third-party (easylistchina+easylist.txt: 34844) -.a2dfp.net -# ||a.raasnet.com^$third-party (easylistchina+easylist.txt: 34843) -.a.raasnet.com -# ||a.ligatus.com^$third-party (easylistchina+easylist.txt: 34842) -.a.ligatus.com -# ||a.adroll.com^$third-party (easylistchina+easylist.txt: 34841) -.a.adroll.com -# ||a-static.com^$third-party (easylistchina+easylist.txt: 34840) -.a-static.com -# ||a-ads.com^$third-party (easylistchina+easylist.txt: 34839) -.a-ads.com -# ||9ts3tpia.com^$third-party (easylistchina+easylist.txt: 34838) -.9ts3tpia.com -# ||9d63c80da.pw^$third-party (easylistchina+easylist.txt: 34837) -.9d63c80da.pw -# ||97d73lsi.com^$third-party (easylistchina+easylist.txt: 34836) -.97d73lsi.com -# ||8yxupue8.com^$third-party (easylistchina+easylist.txt: 34835) -.8yxupue8.com -# ||888promos.com^$third-party (easylistchina+easylist.txt: 34834) -.888promos.com -# ||888medianetwork.com^$third-party (easylistchina+easylist.txt: 34833) -.888medianetwork.com -# ||888media.net^$third-party (easylistchina+easylist.txt: 34832) -.888media.net -# ||82d914.se^$third-party (easylistchina+easylist.txt: 34830) -.82d914.se -# ||7u8a8i88.com^$third-party (easylistchina+easylist.txt: 34829) -.7u8a8i88.com -# ||7search.com^$third-party (easylistchina+easylist.txt: 34828) -.7search.com -# ||7pud.com^$third-party (easylistchina+easylist.txt: 34827) -.7pud.com -# ||7insight.com^$third-party (easylistchina+easylist.txt: 34826) -.7insight.com -# ||78.138.126.253^$third-party (easylistchina+easylist.txt: 34824) -.78.138.126.253 -# ||778669.com^$third-party (easylistchina+easylist.txt: 34823) -.778669.com -# ||777seo.com^$third-party (easylistchina+easylist.txt: 34822) -.777seo.com -# ||64.20.60.123^$third-party (easylistchina+easylist.txt: 34820) -.64.20.60.123 -# ||63.225.61.4^$third-party (easylistchina+easylist.txt: 34819) -.63.225.61.4 -# ||600z.com^$third-party (easylistchina+easylist.txt: 34817) -.600z.com -# ||5gl1x9qc.com^$third-party (easylistchina+easylist.txt: 34816) -.5gl1x9qc.com -# ||5clickcashsoftware.com^$third-party (easylistchina+easylist.txt: 34815) -.5clickcashsoftware.com -# ||5advertise.com^$third-party (easylistchina+easylist.txt: 34814) -.5advertise.com -# ||5362367e.info^$third-party (easylistchina+easylist.txt: 34813) -.5362367e.info -# ||50.7.243.123^$third-party (easylistchina+easylist.txt: 34812) -.50.7.243.123 -# ||4wnet.com^$third-party (easylistchina+easylist.txt: 34811) -.4wnet.com -# ||4uvjosuc.com^$third-party (easylistchina+easylist.txt: 34810) -.4uvjosuc.com -# ||4e43ac9c.info^$third-party (easylistchina+easylist.txt: 34809) -.4e43ac9c.info -# ||4dsply.com^$third-party (easylistchina+easylist.txt: 34808) -.4dsply.com -# ||4affiliate.net^$third-party (easylistchina+easylist.txt: 34807) -.4affiliate.net -# ||43plc.com^$third-party (easylistchina+easylist.txt: 34803) -.43plc.com -# ||3t7euflv.com^$third-party (easylistchina+easylist.txt: 34802) -.3t7euflv.com -# ||3redlightfix.com^$third-party (easylistchina+easylist.txt: 34801) -.3redlightfix.com -# ||3rdads.com^$third-party (easylistchina+easylist.txt: 34800) -.3rdads.com -# ||3omb.com^$third-party (easylistchina+easylist.txt: 34799) -.3omb.com -# ||3lr67y45.com^$third-party (easylistchina+easylist.txt: 34798) -.3lr67y45.com -# ||3lift.com^$third-party (easylistchina+easylist.txt: 34797) -.3lift.com -# ||3cnce854.com^$third-party (easylistchina+easylist.txt: 34796) -.3cnce854.com -# ||365sbaffiliates.com^$third-party (easylistchina+easylist.txt: 34795) -.365sbaffiliates.com -# ||360yield.com^$third-party (easylistchina+easylist.txt: 34794) -.360yield.com -# ||360popads.com^$third-party (easylistchina+easylist.txt: 34793) -.360popads.com -# ||360installer.com^$third-party (easylistchina+easylist.txt: 34792) -.360installer.com -# ||360adstrack.com^$third-party (easylistchina+easylist.txt: 34791) -.360adstrack.com -# ||360ads.com^$third-party (easylistchina+easylist.txt: 34790) -.360ads.com -# ||350media.com^$third-party (easylistchina+easylist.txt: 34789) -.350media.com -# ||3393.com^$third-party (easylistchina+easylist.txt: 34788) -.3393.com -# ||32b4oilo.com^$third-party (easylistchina+easylist.txt: 34787) -.32b4oilo.com -# ||2xbpub.com^$third-party (easylistchina+easylist.txt: 34786) -.2xbpub.com -# ||2mdn.info^$third-party (easylistchina+easylist.txt: 34782) -.2mdn.info -# ||2dpt.com^$third-party (easylistchina+easylist.txt: 34781) -.2dpt.com -# ||2d4c3872.info^$third-party (easylistchina+easylist.txt: 34780) -.2d4c3872.info -# ||2d4c3870.info^$third-party (easylistchina+easylist.txt: 34779) -.2d4c3870.info -# ||254a.com^$third-party (easylistchina+easylist.txt: 34778) -.254a.com -# ||247realmedia.com^$third-party (easylistchina+easylist.txt: 34777) -.247realmedia.com -# ||213.163.70.183^$third-party (easylistchina+easylist.txt: 34776) -.213.163.70.183 -# ||20dollars2surf.com^$third-party (easylistchina+easylist.txt: 34775) -.20dollars2surf.com -# ||206ads.com^$third-party (easylistchina+easylist.txt: 34773) -.206ads.com -# ||1yk851od.com^$third-party (easylistchina+easylist.txt: 34771) -.1yk851od.com -# ||1sadx.net^$third-party (easylistchina+easylist.txt: 34770) -.1sadx.net -# ||1phads.com^$third-party (easylistchina+easylist.txt: 34769) -.1phads.com -# ||1nimo.com^$third-party (easylistchina+easylist.txt: 34768) -.1nimo.com -# ||1empiredirect.com^$third-party (easylistchina+easylist.txt: 34767) -.1empiredirect.com -# ||1e0y.xyz^$third-party (easylistchina+easylist.txt: 34766) -.1e0y.xyz -# ||1clickdownloads.com^$third-party (easylistchina+easylist.txt: 34765) -.1clickdownloads.com -# ||1ccbt.com^$third-party (easylistchina+easylist.txt: 34764) -.1ccbt.com -# ||194.71.107.25^$third-party (easylistchina+easylist.txt: 34762) -.194.71.107.25 -# ||18clicks.com^$third-party (easylistchina+easylist.txt: 34761) -.18clicks.com -# ||188server.com^$third-party (easylistchina+easylist.txt: 34760) -.188server.com -# ||17a898bb.info^$third-party (easylistchina+easylist.txt: 34758) -.17a898bb.info -# ||17a898b9.info^$third-party (easylistchina+easylist.txt: 34757) -.17a898b9.info -# ||174.142.194.177^$third-party (easylistchina+easylist.txt: 34756) -.174.142.194.177 -# ||15f3c01c.info^$third-party (easylistchina+easylist.txt: 34755) -.15f3c01c.info -# ||15f3c01a.info^$third-party (easylistchina+easylist.txt: 34754) -.15f3c01a.info -# ||152media.com^$third-party (easylistchina+easylist.txt: 34753) -.152media.com -# ||12place.com^$third-party (easylistchina+easylist.txt: 34752) -.12place.com -# ||123date.me^$third-party (easylistchina+easylist.txt: 34751) -.123date.me -# ||1100i.com^$third-party (easylistchina+easylist.txt: 34750) -.1100i.com -# ||10pipsaffiliates.com^$third-party (easylistchina+easylist.txt: 34749) -.10pipsaffiliates.com -# ||10fbb07a4b0.se^$third-party (easylistchina+easylist.txt: 34748) -.10fbb07a4b0.se -# ||103092804.com^$third-party (easylistchina+easylist.txt: 34747) -.103092804.com -# ||101m3.com^$third-party (easylistchina+easylist.txt: 34746) -.101m3.com -# ||0icep80f.com^$third-party (easylistchina+easylist.txt: 34745) -.0icep80f.com -# ||007-gateway.com^$third-party (easylistchina+easylist.txt: 34744) -.007-gateway.com -# ://promo.$third-party (easylistchina+easylist.txt: 16321) -/.*://promo\. -promo.*. -# ://banners.$third-party (easylistchina+easylist.txt: 16312) -/.*://banners\. -banners.*. -# ://banner.$third-party (easylistchina+easylist.txt: 16311) -/.*://banner\. -banner.*. -# ://affiliates.$third-party (easylistchina+easylist.txt: 16309) -/.*://affiliates\. -affiliates.*. -# ://affiliate.$third-party (easylistchina+easylist.txt: 16308) -/.*://affiliate\. -affiliate.*. -# /pub_images/*$third-party (easylistchina+easylist.txt: 15408) -/(.*/)?pub_images/.* -# /exports/tour/*$third-party (easylistchina+easylist.txt: 14226) -/(.*/)?exports/tour/.* -# /banner.asp?$third-party (easylistchina+easylist.txt: 13606) -/(.*/)?banner\.asp\? -# /a3/?sub=$third-party (easylistchina+easylist.txt: 11155) -/(.*/)?a3/\?sub= -# /a2/?sub=$third-party (easylistchina+easylist.txt: 11153) -/(.*/)?a2/\?sub= -# /a1/*?sub=$third-party (easylistchina+easylist.txt: 11152) -/(.*/)?a1/.*\?sub= -# ||xxx169.org^$third-party (easylistchina+easylist.txt: 5218) +# ||xxx169.org^$third-party (easylistchina.txt: 5194) .xxx169.org -# ||henghost.com^$third-party (easylistchina+easylist.txt: 3185) +# ||henghost.com^$third-party (easylistchina.txt: 3167) .henghost.com -# ||game.466.com^$third-party (easylistchina+easylist.txt: 2957) +# ||game.466.com^$third-party (easylistchina.txt: 2939) .game.466.com -# ||eat-travel.com.tw^$third-party (easylistchina+easylist.txt: 2806) +# ||eat-travel.com.tw^$third-party (easylistchina.txt: 2788) .eat-travel.com.tw -# ||av165.com/images/$third-party (easylistchina+easylist.txt: 2133) -.av165.com/images/ -# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina+easylist.txt: 1529) +# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina.txt: 1534) .2345.com/jifenimg/img/common/logo\.png -# ||zytwq.net^$third-party (easylistchina+easylist.txt: 1033) +# ||zytwq.net^$third-party (easylistchina.txt: 1056) .zytwq.net -# ||ztdsp.com^$third-party (easylistchina+easylist.txt: 1032) +# ||ztdsp.com^$third-party (easylistchina.txt: 1055) .ztdsp.com -# ||zp265.com^$third-party (easylistchina+easylist.txt: 1031) +# ||zp265.com^$third-party (easylistchina.txt: 1054) .zp265.com -# ||zj66.net^$third-party (easylistchina+easylist.txt: 1029) +# ||zj66.net^$third-party (easylistchina.txt: 1052) .zj66.net -# ||zgyiyi.com^$third-party (easylistchina+easylist.txt: 1028) +# ||zgyiyi.com^$third-party (easylistchina.txt: 1051) .zgyiyi.com -# ||ze5.com^$third-party (easylistchina+easylist.txt: 1025) +# ||ze5.com^$third-party (easylistchina.txt: 1048) .ze5.com -# ||zd6789.com^$third-party (easylistchina+easylist.txt: 1024) +# ||zd6789.com^$third-party (easylistchina.txt: 1047) .zd6789.com -# ||zampdsp.com^$third-party (easylistchina+easylist.txt: 1023) +# ||zampdsp.com^$third-party (easylistchina.txt: 1046) .zampdsp.com -# ||zampda.net^$third-party (easylistchina+easylist.txt: 1022) +# ||zampda.net^$third-party (easylistchina.txt: 1045) .zampda.net -# ||yzxls.com^$third-party (easylistchina+easylist.txt: 1021) +# ||yzxls.com^$third-party (easylistchina.txt: 1044) .yzxls.com -# ||yunfanlm.com^$third-party (easylistchina+easylist.txt: 1018) +# ||yunfanlm.com^$third-party (easylistchina.txt: 1041) .yunfanlm.com -# ||ysm.ezprice.net^$third-party (easylistchina+easylist.txt: 1016) +# ||yuanhsu.com^$third-party (easylistchina.txt: 1039) +.yuanhsu.com +# ||ysm.ezprice.net^$third-party (easylistchina.txt: 1038) .ysm.ezprice.net -# ||yoyi.tv^$third-party (easylistchina+easylist.txt: 1014) +# ||yoyi.tv^$third-party (easylistchina.txt: 1036) .yoyi.tv -# ||yoyi.com.cn^$third-party (easylistchina+easylist.txt: 1013) +# ||yoyi.com.cn^$third-party (easylistchina.txt: 1035) .yoyi.com.cn -# ||youxicool.net^$third-party (easylistchina+easylist.txt: 1012) +# ||youxicool.net^$third-party (easylistchina.txt: 1034) .youxicool.net -# ||youle55.com^$third-party (easylistchina+easylist.txt: 1011) +# ||youle55.com^$third-party (easylistchina.txt: 1033) .youle55.com -# ||youbet8.com^$third-party (easylistchina+easylist.txt: 1010) +# ||youbet8.com^$third-party (easylistchina.txt: 1032) .youbet8.com -# ||yongv.com^$third-party (easylistchina+easylist.txt: 1009) +# ||yongv.com^$third-party (easylistchina.txt: 1031) .yongv.com -# ||yiwad.com^$third-party (easylistchina+easylist.txt: 1006) +# ||yiwad.com^$third-party (easylistchina.txt: 1028) .yiwad.com -# ||yiqifa.com^*.js$third-party (easylistchina+easylist.txt: 1005) +# ||yiqifa.com^*.js$third-party (easylistchina.txt: 1027) .yiqifa.com/.*\.js -# ||yiiwoo.com^$third-party (easylistchina+easylist.txt: 1003) +# ||yiiwoo.com^$third-party (easylistchina.txt: 1025) .yiiwoo.com -# ||yigao.com^$third-party (easylistchina+easylist.txt: 1002) +# ||yigao.com^$third-party (easylistchina.txt: 1024) .yigao.com -# ||ye3.com^$third-party (easylistchina+easylist.txt: 1001) +# ||ye3.com^$third-party (easylistchina.txt: 1023) .ye3.com -# ||ydcpc.com^$third-party (easylistchina+easylist.txt: 1000) +# ||ydcpc.com^$third-party (easylistchina.txt: 1022) .ydcpc.com -# ||xzdchl.com^$third-party (easylistchina+easylist.txt: 998) +# ||xzdchl.com^$third-party (easylistchina.txt: 1020) .xzdchl.com -# ||xsu.cc^$third-party (easylistchina+easylist.txt: 995) +# ||xsu.cc^$third-party (easylistchina.txt: 1017) .xsu.cc -# ||xp3366.com^$third-party (easylistchina+easylist.txt: 994) +# ||xp3366.com^$third-party (easylistchina.txt: 1016) .xp3366.com -# ||xe2c.com^$third-party (easylistchina+easylist.txt: 992) +# ||xe2c.com^$third-party (easylistchina.txt: 1014) .xe2c.com -# ||xdwan.com^$third-party (easylistchina+easylist.txt: 991) +# ||xdwan.com^$third-party (easylistchina.txt: 1013) .xdwan.com -# ||xajx.com^$third-party (easylistchina+easylist.txt: 988) +# ||xajx.com^$third-party (easylistchina.txt: 1010) .xajx.com -# ||wudang05.com^$third-party (easylistchina+easylist.txt: 985) +# ||wudang05.com^$third-party (easylistchina.txt: 1006) .wudang05.com -# ||wqzyt.net^$third-party (easylistchina+easylist.txt: 983) +# ||wqzyt.net^$third-party (easylistchina.txt: 1004) .wqzyt.net -# ||wo685.com^$third-party (easylistchina+easylist.txt: 981) +# ||wo685.com^$third-party (easylistchina.txt: 1002) .wo685.com -# ||wit.qq.com^$third-party (easylistchina+easylist.txt: 980) +# ||wit.qq.com^$third-party (easylistchina.txt: 1001) .wit.qq.com -# ||widget.ezprice.com.tw^$third-party (easylistchina+easylist.txt: 978) +# ||widget.ezprice.com.tw^$third-party (easylistchina.txt: 999) .widget.ezprice.com.tw -# ||weizhanle.com^$third-party (easylistchina+easylist.txt: 977) +# ||weizhanle.com^$third-party (easylistchina.txt: 998) .weizhanle.com -# ||weddingeeos.com^$third-party (easylistchina+easylist.txt: 976) +# ||weddingeeos.com^$third-party (easylistchina.txt: 997) .weddingeeos.com -# ||weareqy.com^$third-party (easylistchina+easylist.txt: 975) +# ||weareqy.com^$third-party (easylistchina.txt: 996) .weareqy.com -# ||vsnoon.com^$third-party (easylistchina+easylist.txt: 972) +# ||vsnoon.com^$third-party (easylistchina.txt: 993) .vsnoon.com -# ||vpie.net^$third-party (easylistchina+easylist.txt: 971) +# ||vpie.net^$third-party (easylistchina.txt: 992) .vpie.net -# ||visadd.com^$third-party (easylistchina+easylist.txt: 970) +# ||visadd.com^$third-party (easylistchina.txt: 991) .visadd.com -# ||vf5c.com^$third-party (easylistchina+easylist.txt: 968) +# ||vf5c.com^$third-party (easylistchina.txt: 989) .vf5c.com -# ||vamaker.com^$third-party (easylistchina+easylist.txt: 967) +# ||vamaker.com^$third-party (easylistchina.txt: 988) .vamaker.com -# ||v-links.net^$third-party (easylistchina+easylist.txt: 965) +# ||v-links.net^$third-party (easylistchina.txt: 986) .v-links.net -# ||urlad.com.tw^$third-party (easylistchina+easylist.txt: 964) +# ||urlad.com.tw^$third-party (easylistchina.txt: 985) .urlad.com.tw -# ||unionsky2.cn^$third-party (easylistchina+easylist.txt: 962) +# ||unionsky2.cn^$third-party (easylistchina.txt: 983) .unionsky2.cn -# ||unionsky.cn^$third-party (easylistchina+easylist.txt: 961) +# ||unionsky.cn^$third-party (easylistchina.txt: 982) .unionsky.cn -# ||unionli.com^$third-party (easylistchina+easylist.txt: 960) +# ||unionli.com^$third-party (easylistchina.txt: 981) .unionli.com -# ||unionbig.com^$third-party (easylistchina+easylist.txt: 959) +# ||unionbig.com^$third-party (easylistchina.txt: 980) .unionbig.com -# ||union009.com^$third-party (easylistchina+easylist.txt: 958) +# ||union009.com^$third-party (easylistchina.txt: 979) .union009.com -# ||union.$third-party (easylistchina+easylist.txt: 957) +# ||union.$third-party (easylistchina.txt: 978) .union.*. -# ||unimhk.com^$third-party (easylistchina+easylist.txt: 956) +# ||unimhk.com^$third-party (easylistchina.txt: 977) .unimhk.com -# ||ulink.cc^$third-party (easylistchina+easylist.txt: 955) +# ||ulink.cc^$third-party (easylistchina.txt: 976) .ulink.cc -# ||ujian.cc^$third-party (easylistchina+easylist.txt: 954) +# ||ujian.cc^$third-party (easylistchina.txt: 975) .ujian.cc -# ||ufstone.com^$third-party (easylistchina+easylist.txt: 953) +# ||ufstone.com^$third-party (easylistchina.txt: 974) .ufstone.com -# ||ueadlian.com^$third-party (easylistchina+easylist.txt: 952) +# ||ueadlian.com^$third-party (easylistchina.txt: 973) .ueadlian.com -# ||u88.cn^$third-party (easylistchina+easylist.txt: 950) +# ||u88.cn^$third-party (easylistchina.txt: 971) .u88.cn -# ||u.801t.com^$third-party (easylistchina+easylist.txt: 949) +# ||u.801t.com^$third-party (easylistchina.txt: 970) .u.801t.com -# ||txkjad.com^$third-party (easylistchina+easylist.txt: 948) +# ||txkjad.com^$third-party (easylistchina.txt: 969) .txkjad.com -# ||twrank.com^$third-party (easylistchina+easylist.txt: 947) +# ||twrank.com^$third-party (easylistchina.txt: 968) .twrank.com -# ||twm.com.tw^$third-party (easylistchina+easylist.txt: 946) +# ||twm.com.tw^$third-party (easylistchina.txt: 967) .twm.com.tw -# ||twcczhu.com^$third-party (easylistchina+easylist.txt: 945) +# ||twcczhu.com^$third-party (easylistchina.txt: 966) .twcczhu.com -# ||twb98.com^$third-party (easylistchina+easylist.txt: 944) +# ||twb98.com^$third-party (easylistchina.txt: 965) .twb98.com -# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 943) +# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 964) .tw-cm.ysm.yahoo.com -# ||tukj.net^$third-party (easylistchina+easylist.txt: 942) +# ||tukj.net^$third-party (easylistchina.txt: 963) .tukj.net -# ||tripadvisor.com^$third-party (easylistchina+easylist.txt: 941) +# ||tripadvisor.com^$third-party (easylistchina.txt: 962) .tripadvisor.com -# ||toy9090.com^$third-party (easylistchina+easylist.txt: 940) +# ||toy9090.com^$third-party (easylistchina.txt: 961) .toy9090.com -# ||toufangke.com^$third-party (easylistchina+easylist.txt: 939) +# ||toufangke.com^$third-party (easylistchina.txt: 960) .toufangke.com -# ||top888.com^$third-party (easylistchina+easylist.txt: 938) +# ||top888.com^$third-party (easylistchina.txt: 959) .top888.com -# ||tk001.com^$third-party (easylistchina+easylist.txt: 936) +# ||tk001.com^$third-party (easylistchina.txt: 957) .tk001.com -# ||tebaidu.cn^$third-party (easylistchina+easylist.txt: 934) +# ||tebaidu.cn^$third-party (easylistchina.txt: 955) .tebaidu.cn -# ||tbjfw.com^$third-party (easylistchina+easylist.txt: 931) +# ||tbjfw.com^$third-party (easylistchina.txt: 952) .tbjfw.com -# ||taotu001.com^$third-party (easylistchina+easylist.txt: 930) +# ||taotu001.com^$third-party (easylistchina.txt: 951) .taotu001.com -# ||tanchuang002.info^$third-party (easylistchina+easylist.txt: 926) +# ||tanchuang002.info^$third-party (easylistchina.txt: 947) .tanchuang002.info -# ||ta80.com^$third-party (easylistchina+easylist.txt: 923) +# ||ta80.com^$third-party (easylistchina.txt: 944) .ta80.com -# ||t3nlink.com^$third-party (easylistchina+easylist.txt: 921) +# ||t3nlink.com^$third-party (easylistchina.txt: 942) .t3nlink.com -# ||superfish.com^$third-party (easylistchina+easylist.txt: 920) +# ||superfish.com^$third-party (easylistchina.txt: 941) .superfish.com -# ||stnts.com^$third-party (easylistchina+easylist.txt: 919) +# ||stnts.com^$third-party (easylistchina.txt: 939) .stnts.com -# ||star8.net^$third-party (easylistchina+easylist.txt: 918) +# ||star8.net^$third-party (easylistchina.txt: 938) .star8.net -# ||sphwq.net^$third-party (easylistchina+easylist.txt: 916) +# ||sphwq.net^$third-party (easylistchina.txt: 936) .sphwq.net -# ||souacode.com^$third-party (easylistchina+easylist.txt: 914) +# ||souacode.com^$third-party (easylistchina.txt: 934) .souacode.com -# ||sosobook.cn^$third-party (easylistchina+easylist.txt: 913) +# ||sosobook.cn^$third-party (easylistchina.txt: 933) .sosobook.cn -# ||snyu.com^$third-party (easylistchina+easylist.txt: 911) +# ||snyu.com^$third-party (easylistchina.txt: 931) .snyu.com -# ||snxyf.com^$third-party (easylistchina+easylist.txt: 910) +# ||snxyf.com^$third-party (easylistchina.txt: 930) .snxyf.com -# ||sin114.com^$third-party (easylistchina+easylist.txt: 909) +# ||sin114.com^$third-party (easylistchina.txt: 929) .sin114.com -# ||sharele.cn^$third-party (easylistchina+easylist.txt: 906) +# ||sharele.cn^$third-party (easylistchina.txt: 926) .sharele.cn -# ||sexy-more.com^$third-party (easylistchina+easylist.txt: 903) +# ||sexy-more.com^$third-party (easylistchina.txt: 923) .sexy-more.com -# ||sales-frontier.com^$third-party (easylistchina+easylist.txt: 902) +# ||sales-frontier.com^$third-party (easylistchina.txt: 922) .sales-frontier.com -# ||s17cnzz.com^$third-party (easylistchina+easylist.txt: 901) +# ||s17cnzz.com^$third-party (easylistchina.txt: 921) .s17cnzz.com -# ||ruanwenclub.com^$third-party (easylistchina+easylist.txt: 898) +# ||ruanwenclub.com^$third-party (easylistchina.txt: 918) .ruanwenclub.com -# ||rsccs.com^$third-party (easylistchina+easylist.txt: 897) +# ||rsccs.com^$third-party (easylistchina.txt: 917) .rsccs.com -# ||rbc.cn^$third-party (easylistchina+easylist.txt: 895) +# ||rbc.cn^$third-party (easylistchina.txt: 915) .rbc.cn -# ||qubilou.com^$third-party (easylistchina+easylist.txt: 893) +# ||qubilou.com^$third-party (easylistchina.txt: 913) .qubilou.com -# ||qq4g.cn^$third-party (easylistchina+easylist.txt: 892) +# ||qtmojo.com^$third-party (easylistchina.txt: 912) +.qtmojo.com +# ||qq4g.cn^$third-party (easylistchina.txt: 911) .qq4g.cn -# ||qiyou.com^$third-party (easylistchina+easylist.txt: 891) +# ||qiyou.com^$third-party (easylistchina.txt: 910) .qiyou.com -# ||qidou.com^$third-party (easylistchina+easylist.txt: 889) +# ||qidou.com^$third-party (easylistchina.txt: 908) .qidou.com -# ||prohost.com.tw^$third-party (easylistchina+easylist.txt: 888) +# ||prohost.com.tw^$third-party (easylistchina.txt: 907) .prohost.com.tw -# ||pro.cn^$third-party (easylistchina+easylist.txt: 887) +# ||pro.cn^$third-party (easylistchina.txt: 906) .pro.cn -# ||poxzyu.com^$third-party (easylistchina+easylist.txt: 886) +# ||poxzyu.com^$third-party (easylistchina.txt: 905) .poxzyu.com -# ||pagechoice.net^$third-party (easylistchina+easylist.txt: 883) +# ||pagechoice.net^$third-party (easylistchina.txt: 902) .pagechoice.net -# ||onetad.com^$third-party (easylistchina+easylist.txt: 879) +# ||onetad.com^$third-party (easylistchina.txt: 898) .onetad.com -# ||okokw.com^$third-party (easylistchina+easylist.txt: 878) +# ||okokw.com^$third-party (easylistchina.txt: 897) .okokw.com -# ||octopuspop.com^$third-party (easylistchina+easylist.txt: 874) +# ||octopuspop.com^$third-party (easylistchina.txt: 893) .octopuspop.com -# ||o091i.com^$third-party (easylistchina+easylist.txt: 873) +# ||o091i.com^$third-party (easylistchina.txt: 892) .o091i.com -# ||niurenw.com^$third-party (easylistchina+easylist.txt: 869) +# ||niurenw.com^$third-party (easylistchina.txt: 888) .niurenw.com -# ||ni22.com^$third-party (easylistchina+easylist.txt: 868) +# ||ni22.com^$third-party (easylistchina.txt: 887) .ni22.com -# ||news.tagtoo.co^$third-party (easylistchina+easylist.txt: 866) +# ||news.tagtoo.co^$third-party (easylistchina.txt: 885) .news.tagtoo.co -# ||myzwqwe12.com^$third-party (easylistchina+easylist.txt: 865) +# ||myzwqwe12.com^$third-party (easylistchina.txt: 884) .myzwqwe12.com -# ||mytanwan.com^$third-party (easylistchina+easylist.txt: 864) +# ||mytanwan.com^$third-party (easylistchina.txt: 883) .mytanwan.com -# ||mycctvmedia.com^$third-party (easylistchina+easylist.txt: 863) +# ||mycctvmedia.com^$third-party (easylistchina.txt: 882) .mycctvmedia.com -# ||mtxsk.com^$third-party (easylistchina+easylist.txt: 862) +# ||mtxsk.com^$third-party (easylistchina.txt: 881) .mtxsk.com -# ||moogos.com^$third-party (easylistchina+easylist.txt: 860) +# ||moogos.com^$third-party (easylistchina.txt: 879) .moogos.com -# ||mobads.baidu.com^$third-party (easylistchina+easylist.txt: 858) +# ||mobads.baidu.com^$third-party (easylistchina.txt: 877) .mobads.baidu.com -# ||miaozhen.com^$third-party (easylistchina+easylist.txt: 856) +# ||miaozhen.com^$third-party (easylistchina.txt: 875) .miaozhen.com -# ||mgwl668.com^$third-party (easylistchina+easylist.txt: 855) +# ||mgwl668.com^$third-party (easylistchina.txt: 874) .mgwl668.com -# ||mediav.com^$third-party (easylistchina+easylist.txt: 854) +# ||mediav.com^$third-party (easylistchina.txt: 873) .mediav.com -# ||media8.cn^$third-party (easylistchina+easylist.txt: 853) +# ||media8.cn^$third-party (easylistchina.txt: 872) .media8.cn -# ||mathtag.com^$third-party (easylistchina+easylist.txt: 852) +# ||mathtag.com^$third-party (easylistchina.txt: 871) .mathtag.com -# ||mamamiyu.com^$third-party (easylistchina+easylist.txt: 850) +# ||mamamiyu.com^$third-party (easylistchina.txt: 869) .mamamiyu.com -# ||lx167.com^$third-party (easylistchina+easylist.txt: 847) +# ||lx167.com^$third-party (easylistchina.txt: 866) .lx167.com -# ||lv711.net^$third-party (easylistchina+easylist.txt: 846) +# ||lv711.net^$third-party (easylistchina.txt: 865) .lv711.net -# ||lnr1.com^$third-party (easylistchina+easylist.txt: 845) +# ||lnr1.com^$third-party (easylistchina.txt: 864) .lnr1.com -# ||linkvans.com^$third-party (easylistchina+easylist.txt: 843) +# ||linkvans.com^$third-party (easylistchina.txt: 862) .linkvans.com -# ||lianmeng.360.cn^$third-party (easylistchina+easylist.txt: 842) -.lianmeng.360.cn -# ||lhzly.com^$third-party (easylistchina+easylist.txt: 841) +# ||lhzly.com^$third-party (easylistchina.txt: 860) .lhzly.com -# ||le123.cn^$third-party (easylistchina+easylist.txt: 839) +# ||le123.cn^$third-party (easylistchina.txt: 858) .le123.cn -# ||kuaizitech.com^$third-party (easylistchina+easylist.txt: 837) +# ||kuaizitech.com^$third-party (easylistchina.txt: 856) .kuaizitech.com -# ||ku63.com^$third-party (easylistchina+easylist.txt: 835) +# ||ku63.com^$third-party (easylistchina.txt: 854) .ku63.com -# ||keyrun.cn^$third-party (easylistchina+easylist.txt: 830) +# ||keyrun.cn^$third-party (easylistchina.txt: 849) .keyrun.cn -# ||kejet.$third-party (easylistchina+easylist.txt: 829) +# ||keydot.net^$third-party (easylistchina.txt: 848) +.keydot.net +# ||kejet.$third-party (easylistchina.txt: 847) .kejet.*. -# ||kefeng56.com^$third-party (easylistchina+easylist.txt: 828) +# ||kefeng56.com^$third-party (easylistchina.txt: 846) .kefeng56.com -# ||kdly.net^$third-party (easylistchina+easylist.txt: 827) +# ||kdly.net^$third-party (easylistchina.txt: 845) .kdly.net -# ||kaixinjiehun.com^$third-party (easylistchina+easylist.txt: 826) +# ||kaixinjiehun.com^$third-party (easylistchina.txt: 844) .kaixinjiehun.com -# ||jusha.com^$third-party (easylistchina+easylist.txt: 823) +# ||jusha.com^$third-party (easylistchina.txt: 841) .jusha.com -# ||junnew.com^$third-party (easylistchina+easylist.txt: 822) +# ||junnew.com^$third-party (easylistchina.txt: 840) .junnew.com -# ||juandou.com^$third-party (easylistchina+easylist.txt: 821) +# ||juandou.com^$third-party (easylistchina.txt: 839) .juandou.com -# ||ju33.com^$third-party (easylistchina+easylist.txt: 820) +# ||ju33.com^$third-party (easylistchina.txt: 838) .ju33.com -# ||jtxh.net^$third-party (easylistchina+easylist.txt: 819) +# ||jtxh.net^$third-party (easylistchina.txt: 837) .jtxh.net -# ||jsyd139.com^$third-party (easylistchina+easylist.txt: 818) +# ||jsyd139.com^$third-party (easylistchina.txt: 836) .jsyd139.com -# ||jsmbaidu.com^$third-party (easylistchina+easylist.txt: 817) +# ||jsmbaidu.com^$third-party (easylistchina.txt: 835) .jsmbaidu.com -# ||jsjxhd.com^$third-party (easylistchina+easylist.txt: 816) +# ||jsjxhd.com^$third-party (easylistchina.txt: 834) .jsjxhd.com -# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 815) +# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina.txt: 833) .js-apac-ss.ysm.yahoo.com -# ||jointreport-switch.com^$third-party (easylistchina+easylist.txt: 814) +# ||jointreport-switch.com^$third-party (easylistchina.txt: 832) .jointreport-switch.com -# ||jntmedia.cn^$third-party (easylistchina+easylist.txt: 812) +# ||jntmedia.cn^$third-party (easylistchina.txt: 830) .jntmedia.cn -# ||jixing8.net^$third-party (easylistchina+easylist.txt: 807) +# ||jixing8.net^$third-party (easylistchina.txt: 825) .jixing8.net -# ||jixing8.com^$third-party (easylistchina+easylist.txt: 806) +# ||jixing8.com^$third-party (easylistchina.txt: 824) .jixing8.com -# ||jisucn.com^$third-party (easylistchina+easylist.txt: 805) +# ||jisucn.com^$third-party (easylistchina.txt: 823) .jisucn.com -# ||jiankang13.com^$third-party (easylistchina+easylist.txt: 804) +# ||jiankang13.com^$third-party (easylistchina.txt: 822) .jiankang13.com -# ||jiangcao.com^$third-party (easylistchina+easylist.txt: 803) +# ||jianglishi.cn^$third-party (easylistchina.txt: 821) +.jianglishi.cn +# ||jiangcao.com^$third-party (easylistchina.txt: 820) .jiangcao.com -# ||j8j9.com^$third-party (easylistchina+easylist.txt: 799) +# ||j8j9.com^$third-party (easylistchina.txt: 816) .j8j9.com -# ||itechwall.com^$third-party (easylistchina+easylist.txt: 798) +# ||itechwall.com^$third-party (easylistchina.txt: 815) .itechwall.com -# ||istreamsche.com^$third-party (easylistchina+easylist.txt: 797) +# ||istreamsche.com^$third-party (easylistchina.txt: 814) .istreamsche.com -# ||is686.com^$third-party (easylistchina+easylist.txt: 796) +# ||is686.com^$third-party (easylistchina.txt: 813) .is686.com -# ||iprefer.com.tw^$third-party (easylistchina+easylist.txt: 795) +# ||iprefer.com.tw^$third-party (easylistchina.txt: 812) .iprefer.com.tw -# ||instreet.cn^$third-party (easylistchina+easylist.txt: 794) +# ||instreet.cn^$third-party (easylistchina.txt: 811) .instreet.cn -# ||index8.cn^$third-party (easylistchina+easylist.txt: 793) +# ||index8.cn^$third-party (easylistchina.txt: 810) .index8.cn -# ||iguang.tw^$third-party (easylistchina+easylist.txt: 789) +# ||iguang.tw^$third-party (easylistchina.txt: 806) .iguang.tw -# ||iee5.com^$third-party (easylistchina+easylist.txt: 788) +# ||iee5.com^$third-party (easylistchina.txt: 805) .iee5.com -# ||icast.cn^$third-party (easylistchina+easylist.txt: 787) +# ||icast.cn^$third-party (easylistchina.txt: 804) .icast.cn -# ||i3z.cn^$third-party (easylistchina+easylist.txt: 786) +# ||i3z.cn^$third-party (easylistchina.txt: 803) .i3z.cn -# ||i000o.com^$third-party (easylistchina+easylist.txt: 784) +# ||i000o.com^$third-party (easylistchina.txt: 801) .i000o.com -# ||hxqu.com^$third-party (easylistchina+easylist.txt: 783) +# ||hxqu.com^$third-party (easylistchina.txt: 800) .hxqu.com -# ||hsmkj.net^$third-party (easylistchina+easylist.txt: 781) +# ||hsmkj.net^$third-party (easylistchina.txt: 798) .hsmkj.net -# ||hn163fck.com^$third-party (easylistchina+easylist.txt: 779) +# ||hn163fck.com^$third-party (easylistchina.txt: 796) .hn163fck.com -# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina+easylist.txt: 777) +# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 794) .hk-cm.ysm.yahoo.com -# ||heima8.com^$third-party (easylistchina+easylist.txt: 775) +# ||heima8.com^$third-party (easylistchina.txt: 792) .heima8.com -# ||hauchi.com.tw^$third-party (easylistchina+easylist.txt: 774) +# ||hauchi.com.tw^$third-party (easylistchina.txt: 791) .hauchi.com.tw -# ||haoyiwang.net^$third-party (easylistchina+easylist.txt: 773) +# ||haoyiwang.net^$third-party (easylistchina.txt: 790) .haoyiwang.net -# ||haomm.com^$third-party (easylistchina+easylist.txt: 772) +# ||haomm.com^$third-party (easylistchina.txt: 789) .haomm.com -# ||haoba.info^$third-party (easylistchina+easylist.txt: 769) +# ||haoba.info^$third-party (easylistchina.txt: 786) .haoba.info -# ||hao123union.baidu.com^$third-party (easylistchina+easylist.txt: 768) +# ||hao123union.baidu.com^$third-party (easylistchina.txt: 785) .hao123union.baidu.com -# ||haiyunx.com^$third-party (easylistchina+easylist.txt: 766) +# ||haiyunx.com^$third-party (easylistchina.txt: 783) .haiyunx.com -# ||gzbywl.com^$third-party (easylistchina+easylist.txt: 763) +# ||gzbywl.com^$third-party (easylistchina.txt: 780) .gzbywl.com -# ||gs307.com^$third-party (easylistchina+easylist.txt: 761) +# ||gs307.com^$third-party (easylistchina.txt: 778) .gs307.com -# ||gohappy.com.tw^$third-party (easylistchina+easylist.txt: 760) +# ||gotonav.com^$third-party (easylistchina.txt: 777) +.gotonav.com +# ||gohappy.com.tw^$third-party (easylistchina.txt: 776) .gohappy.com.tw -# ||ggmm777.com^$third-party (easylistchina+easylist.txt: 758) +# ||ggmm777.com^$third-party (easylistchina.txt: 774) .ggmm777.com -# ||gf1353.com^$third-party (easylistchina+easylist.txt: 757) +# ||gf1353.com^$third-party (easylistchina.txt: 773) .gf1353.com -# ||geotmt.com^$third-party (easylistchina+easylist.txt: 754) +# ||geotmt.com^$third-party (easylistchina.txt: 770) .geotmt.com -# ||gdxxb.com^$third-party (easylistchina+easylist.txt: 753) +# ||gdxxb.com^$third-party (easylistchina.txt: 769) .gdxxb.com -# ||gansha.co^$third-party (easylistchina+easylist.txt: 752) +# ||gansha.co^$third-party (easylistchina.txt: 768) .gansha.co -# ||gameone.com^$third-party (easylistchina+easylist.txt: 751) +# ||gameone.com^$third-party (easylistchina.txt: 767) .gameone.com -# ||gamecps.com^$third-party (easylistchina+easylist.txt: 750) +# ||gamecps.com^$third-party (easylistchina.txt: 766) .gamecps.com -# ||game3737.com^$third-party (easylistchina+easylist.txt: 749) +# ||game3737.com^$third-party (easylistchina.txt: 765) .game3737.com -# ||g35.cc^$third-party (easylistchina+easylist.txt: 748) +# ||g35.cc^$third-party (easylistchina.txt: 764) .g35.cc -# ||fxxgw.com^$third-party (easylistchina+easylist.txt: 747) +# ||fxxgw.com^$third-party (easylistchina.txt: 763) .fxxgw.com -# ||fmad.cc^$third-party (easylistchina+easylist.txt: 744) +# ||fmad.cc^$third-party (easylistchina.txt: 760) .fmad.cc -# ||feitian001.com^$third-party (easylistchina+easylist.txt: 742) +# ||feitian001.com^$third-party (easylistchina.txt: 758) .feitian001.com -# ||fadama.com^$third-party (easylistchina+easylist.txt: 740) +# ||fadama.com^$third-party (easylistchina.txt: 756) .fadama.com -# ||f8272.com^$third-party (easylistchina+easylist.txt: 739) +# ||f8272.com^$third-party (easylistchina.txt: 755) .f8272.com -# ||eyouv.cn^$third-party (easylistchina+easylist.txt: 735) +# ||eyouv.cn^$third-party (easylistchina.txt: 751) .eyouv.cn -# ||ertya.com^$third-party (easylistchina+easylist.txt: 734) -.ertya.com -# ||emarbox.com^$third-party (easylistchina+easylist.txt: 733) +# ||emarbox.com^$third-party (easylistchina.txt: 750) .emarbox.com -# ||elsad.tw^$third-party (easylistchina+easylist.txt: 732) +# ||elsad.tw^$third-party (easylistchina.txt: 749) .elsad.tw -# ||ejin56.com^$third-party (easylistchina+easylist.txt: 731) +# ||ejin56.com^$third-party (easylistchina.txt: 748) .ejin56.com -# ||egooad.com^$third-party (easylistchina+easylist.txt: 729) +# ||egooad.com^$third-party (easylistchina.txt: 746) .egooad.com -# ||eeyy.com^$third-party (easylistchina+easylist.txt: 728) +# ||eeyy.com^$third-party (easylistchina.txt: 745) .eeyy.com -# ||easou.com^$third-party (easylistchina+easylist.txt: 726) +# ||easou.com^$third-party (easylistchina.txt: 743) .easou.com -# ||ea3721.com^$third-party (easylistchina+easylist.txt: 725) +# ||ea3721.com^$third-party (easylistchina.txt: 742) .ea3721.com -# ||dxpmedia.com^$third-party (easylistchina+easylist.txt: 719) +# ||dxpmedia.com^$third-party (easylistchina.txt: 736) .dxpmedia.com -# ||dushimj.com^$third-party (easylistchina+easylist.txt: 716) +# ||dushimj.com^$third-party (easylistchina.txt: 733) .dushimj.com -# ||dszm163.com^$third-party (easylistchina+easylist.txt: 714) +# ||dszm163.com^$third-party (easylistchina.txt: 731) .dszm163.com -# ||doubleadv.com^$third-party (easylistchina+easylist.txt: 712) +# ||doubleadv.com^$third-party (easylistchina.txt: 728) .doubleadv.com -# ||dmtrck.com^$third-party (easylistchina+easylist.txt: 709) +# ||dmtrck.com^$third-party (easylistchina.txt: 725) .dmtrck.com -# ||dlads.cn^$third-party (easylistchina+easylist.txt: 708) +# ||dlads.cn^$third-party (easylistchina.txt: 724) .dlads.cn -# ||displink.com^$third-party (easylistchina+easylist.txt: 707) +# ||displink.com^$third-party (easylistchina.txt: 723) .displink.com -# ||dianxin.com^$third-party (easylistchina+easylist.txt: 706) +# ||dianxin.com^$third-party (easylistchina.txt: 722) .dianxin.com -# ||dian500.com^$third-party (easylistchina+easylist.txt: 705) +# ||dian500.com^$third-party (easylistchina.txt: 721) .dian500.com -# ||dddddd.net^$third-party (easylistchina+easylist.txt: 704) +# ||dddddd.net^$third-party (easylistchina.txt: 720) .dddddd.net -# ||d8360.com^$third-party (easylistchina+easylist.txt: 701) +# ||d8360.com^$third-party (easylistchina.txt: 717) .d8360.com -# ||d1ad.com^$third-party (easylistchina+easylist.txt: 700) +# ||d1ad.com^$third-party (easylistchina.txt: 716) .d1ad.com -# ||csbew.com^$third-party (easylistchina+easylist.txt: 694) +# ||csbew.com^$third-party (easylistchina.txt: 710) .csbew.com -# ||csad.cc^$third-party (easylistchina+easylist.txt: 693) +# ||csad.cc^$third-party (easylistchina.txt: 709) .csad.cc -# ||cs.37see.com^$third-party (easylistchina+easylist.txt: 692) +# ||cs.37see.com^$third-party (easylistchina.txt: 708) .cs.37see.com -# ||crazymike.tw^$third-party (easylistchina+easylist.txt: 690) +# ||crazymike.tw^$third-party (easylistchina.txt: 706) .crazymike.tw -# ||coinadv.com^$third-party (easylistchina+easylist.txt: 683) +# ||coinadv.com^$third-party (easylistchina.txt: 699) .coinadv.com -# ||cnxad.com^$third-party (easylistchina+easylist.txt: 679) +# ||cnxad.com^$third-party (easylistchina.txt: 695) .cnxad.com -# ||cloudad.asia^$third-party (easylistchina+easylist.txt: 678) +# ||cloudad.asia^$third-party (easylistchina.txt: 694) .cloudad.asia -# ||chinesean.com^$third-party (easylistchina+easylist.txt: 677) +# ||cjlaoshi.com^$third-party (easylistchina.txt: 693) +.cjlaoshi.com +# ||chinesean.com^$third-party (easylistchina.txt: 692) .chinesean.com -# ||chinauma.net^$third-party (easylistchina+easylist.txt: 676) +# ||chinauma.net^$third-party (easylistchina.txt: 691) .chinauma.net -# ||chapm.com^$third-party (easylistchina+easylist.txt: 675) +# ||chapm.com^$third-party (easylistchina.txt: 690) .chapm.com -# ||chanet.com.cn^$third-party (easylistchina+easylist.txt: 674) +# ||chanet.com.cn^$third-party (easylistchina.txt: 689) .chanet.com.cn -# ||c.91wan.com^$third-party (easylistchina+easylist.txt: 669) +# ||c.91wan.com^$third-party (easylistchina.txt: 684) .c.91wan.com -# ||btyou.com^$third-party (easylistchina+easylist.txt: 668) +# ||btyou.com^$third-party (easylistchina.txt: 683) .btyou.com -# ||books.com.tw/exep/ap/$third-party (easylistchina+easylist.txt: 667) +# ||books.com.tw/exep/ap/$third-party (easylistchina.txt: 682) .books.com.tw/exep/ap/ -# ||bloggerads.net^$third-party (easylistchina+easylist.txt: 666) +# ||bloggerads.net^$third-party (easylistchina.txt: 681) .bloggerads.net -# ||blogad.com.tw^$third-party (easylistchina+easylist.txt: 665) +# ||blogad.com.tw^$third-party (easylistchina.txt: 680) .blogad.com.tw -# ||biddingx.com^$third-party (easylistchina+easylist.txt: 664) +# ||biddingx.com^$third-party (easylistchina.txt: 679) .biddingx.com -# ||behe.com^$third-party (easylistchina+easylist.txt: 663) +# ||behe.com^$third-party (easylistchina.txt: 678) .behe.com -# ||baodaozhan.cn^$third-party (easylistchina+easylist.txt: 662) +# ||baodaozhan.cn^$third-party (easylistchina.txt: 677) .baodaozhan.cn -# ||bang5mai.com^$third-party (easylistchina+easylist.txt: 661) +# ||bang5mai.com^$third-party (easylistchina.txt: 676) .bang5mai.com -# ||baidu360haosou.info^$third-party (easylistchina+easylist.txt: 660) +# ||baidu360haosou.info^$third-party (easylistchina.txt: 675) .baidu360haosou.info -# ||b5h7.com^$third-party (easylistchina+easylist.txt: 659) +# ||b5h7.com^$third-party (easylistchina.txt: 674) .b5h7.com -# ||av8d.net^$third-party (easylistchina+easylist.txt: 658) +# ||av8d.net^$third-party (easylistchina.txt: 673) .av8d.net -# ||at918.com^$third-party (easylistchina+easylist.txt: 656) +# ||at918.com^$third-party (easylistchina.txt: 671) .at918.com -# ||aoparking.com^$third-party (easylistchina+easylist.txt: 654) +# ||aoparking.com^$third-party (easylistchina.txt: 669) .aoparking.com -# ||andmejs.com^$third-party (easylistchina+easylist.txt: 653) +# ||andmejs.com^$third-party (easylistchina.txt: 668) .andmejs.com -# ||allyes.$third-party (easylistchina+easylist.txt: 651) +# ||allyes.$third-party (easylistchina.txt: 666) .allyes.*. -# ||ajhdf.com^$third-party (easylistchina+easylist.txt: 647) +# ||ajhdf.com^$third-party (easylistchina.txt: 662) .ajhdf.com -# ||aimato.com^$third-party (easylistchina+easylist.txt: 645) +# ||aimato.com^$third-party (easylistchina.txt: 660) .aimato.com -# ||aidaicn.com^$third-party (easylistchina+easylist.txt: 644) +# ||aidaicn.com^$third-party (easylistchina.txt: 659) .aidaicn.com -# ||agrantsem.com^$third-party (easylistchina+easylist.txt: 643) +# ||agrantsem.com^$third-party (easylistchina.txt: 658) .agrantsem.com -# ||affiliate.rakuten.co.jp^$third-party (easylistchina+easylist.txt: 642) +# ||affiliate.rakuten.co.jp^$third-party (easylistchina.txt: 657) .affiliate.rakuten.co.jp -# ||adyun.com^$third-party (easylistchina+easylist.txt: 641) +# ||adyun.com^$third-party (easylistchina.txt: 656) .adyun.com -# ||adxiaozi.com^$third-party (easylistchina+easylist.txt: 640) +# ||adxiaozi.com^$third-party (easylistchina.txt: 655) .adxiaozi.com -# ||adver.com.tw^$third-party (easylistchina+easylist.txt: 639) +# ||adver.com.tw^$third-party (easylistchina.txt: 654) .adver.com.tw -# ||adunioncode.com^$third-party (easylistchina+easylist.txt: 638) +# ||adunioncode.com^$third-party (easylistchina.txt: 653) .adunioncode.com -# ||adt100.com^$third-party (easylistchina+easylist.txt: 637) +# ||adt100.com^$third-party (easylistchina.txt: 652) .adt100.com -# ||adsbro.com^$third-party (easylistchina+easylist.txt: 636) +# ||adsbro.com^$third-party (easylistchina.txt: 651) .adsbro.com -# ||adsage.com^$third-party (easylistchina+easylist.txt: 635) +# ||adsage.com^$third-party (easylistchina.txt: 650) .adsage.com -# ||adpush.cn^$third-party (easylistchina+easylist.txt: 633) +# ||adpush.cn^$third-party (easylistchina.txt: 648) .adpush.cn -# ||adpro.cn^$third-party (easylistchina+easylist.txt: 632) +# ||adpro.cn^$third-party (easylistchina.txt: 647) .adpro.cn -# ||admin6.com^$third-party (easylistchina+easylist.txt: 631) +# ||admin6.com^$third-party (easylistchina.txt: 646) .admin6.com -# ||adm.cnzz.net^$third-party (easylistchina+easylist.txt: 630) +# ||adm.cnzz.net^$third-party (easylistchina.txt: 645) .adm.cnzz.net -# ||adkongjian.com^$third-party (easylistchina+easylist.txt: 628) +# ||adkongjian.com^$third-party (easylistchina.txt: 643) .adkongjian.com -# ||adingo.jp^$third-party (easylistchina+easylist.txt: 627) +# ||adingo.jp^$third-party (easylistchina.txt: 642) .adingo.jp -# ||adhouyi.com^$third-party (easylistchina+easylist.txt: 626) +# ||adhouyi.com^$third-party (easylistchina.txt: 641) .adhouyi.com -# ||adconfer.com^$third-party (easylistchina+easylist.txt: 625) +# ||adconfer.com^$third-party (easylistchina.txt: 640) .adconfer.com -# ||adchina.cc^$third-party (easylistchina+easylist.txt: 624) +# ||adchina.cc^$third-party (easylistchina.txt: 639) .adchina.cc -# ||adcenter.conn.tw^$third-party (easylistchina+easylist.txt: 623) +# ||adcenter.conn.tw^$third-party (easylistchina.txt: 638) .adcenter.conn.tw -# ||adbxb.com^$third-party (easylistchina+easylist.txt: 622) +# ||adbxb.com^$third-party (easylistchina.txt: 637) .adbxb.com -# ||ad8.cc^$third-party (easylistchina+easylist.txt: 621) +# ||ad8.cc^$third-party (easylistchina.txt: 636) .ad8.cc -# ||ad-plus.cn^$third-party (easylistchina+easylist.txt: 619) +# ||ad-plus.cn^$third-party (easylistchina.txt: 634) .ad-plus.cn -# ||acs86.com^$third-party (easylistchina+easylist.txt: 618) +# ||acs86.com^$third-party (easylistchina.txt: 633) .acs86.com -# ||acgbase.com^$third-party (easylistchina+easylist.txt: 617) +# ||acgbase.com^$third-party (easylistchina.txt: 632) .acgbase.com -# ||a7shun.com^$third-party (easylistchina+easylist.txt: 615) +# ||a7shun.com^$third-party (easylistchina.txt: 630) .a7shun.com -# ||a3p4.com^$third-party (easylistchina+easylist.txt: 614) +# ||a3p4.com^$third-party (easylistchina.txt: 629) .a3p4.com -# ||9xu.com^$third-party (easylistchina+easylist.txt: 613) +# ||9xu.com^$third-party (easylistchina.txt: 628) .9xu.com -# ||9w1an.com^$third-party (easylistchina+easylist.txt: 612) +# ||9w1an.com^$third-party (easylistchina.txt: 627) .9w1an.com -# ||9ead.com^$third-party (easylistchina+easylist.txt: 611) +# ||9ead.com^$third-party (easylistchina.txt: 626) .9ead.com -# ||9718.com^$third-party (easylistchina+easylist.txt: 610) +# ||9718.com^$third-party (easylistchina.txt: 625) .9718.com -# ||9519.net^$third-party (easylistchina+easylist.txt: 609) +# ||9519.net^$third-party (easylistchina.txt: 624) .9519.net -# ||9158918.com^$third-party (easylistchina+easylist.txt: 604) +# ||9158918.com^$third-party (easylistchina.txt: 618) .9158918.com -# ||913h6.cn^$third-party (easylistchina+easylist.txt: 603) +# ||913h6.cn^$third-party (easylistchina.txt: 617) .913h6.cn -# ||911.cc^$third-party (easylistchina+easylist.txt: 602) +# ||911.cc^$third-party (easylistchina.txt: 616) .911.cc -# ||8ox.cn^$third-party (easylistchina+easylist.txt: 601) +# ||8ox.cn^$third-party (easylistchina.txt: 615) .8ox.cn -# ||8le8le.com^$third-party (easylistchina+easylist.txt: 600) +# ||8le8le.com^$third-party (easylistchina.txt: 614) .8le8le.com -# ||8910ad.com^$third-party (easylistchina+easylist.txt: 598) +# ||8910ad.com^$third-party (easylistchina.txt: 612) .8910ad.com -# ||88cpc.com^$third-party (easylistchina+easylist.txt: 596) +# ||88cpc.com^$third-party (easylistchina.txt: 610) .88cpc.com -# ||7o2o.com^$third-party (easylistchina+easylist.txt: 591) +# ||7o2o.com^$third-party (easylistchina.txt: 605) .7o2o.com -# ||7clink.com^$third-party (easylistchina+easylist.txt: 590) +# ||7clink.com^$third-party (easylistchina.txt: 604) .7clink.com -# ||7bwan.com^$third-party (easylistchina+easylist.txt: 589) +# ||7bwan.com^$third-party (easylistchina.txt: 603) .7bwan.com -# ||788xj.com^$third-party (easylistchina+easylist.txt: 588) +# ||788xj.com^$third-party (easylistchina.txt: 602) .788xj.com -# ||710070.com^$third-party (easylistchina+easylist.txt: 585) +# ||710070.com^$third-party (easylistchina.txt: 599) .710070.com -# ||70e.com^$third-party (easylistchina+easylist.txt: 584) +# ||70e.com^$third-party (easylistchina.txt: 598) .70e.com -# ||6dad.com^$third-party (easylistchina+easylist.txt: 582) +# ||6dad.com^$third-party (easylistchina.txt: 596) .6dad.com -# ||67lm.com^$third-party (easylistchina+easylist.txt: 579) +# ||67lm.com^$third-party (easylistchina.txt: 593) .67lm.com -# ||668559.com^$third-party (easylistchina+easylist.txt: 578) +# ||668559.com^$third-party (easylistchina.txt: 591) .668559.com -# ||63kc.com^$third-party (easylistchina+easylist.txt: 577) +# ||63kc.com^$third-party (easylistchina.txt: 590) .63kc.com -# ||5mnh.com^$third-party (easylistchina+easylist.txt: 575) +# ||5mnh.com^$third-party (easylistchina.txt: 588) .5mnh.com -# ||565882.com^$third-party (easylistchina+easylist.txt: 573) +# ||565882.com^$third-party (easylistchina.txt: 586) .565882.com -# ||5399.com^$third-party (easylistchina+easylist.txt: 572) +# ||5399.com^$third-party (easylistchina.txt: 585) .5399.com -# ||52kmh.com^$third-party (easylistchina+easylist.txt: 570) +# ||52kmh.com^$third-party (easylistchina.txt: 583) .52kmh.com -# ||526d.com^$third-party (easylistchina+easylist.txt: 569) +# ||526d.com^$third-party (easylistchina.txt: 582) .526d.com -# ||51ads.com^$third-party (easylistchina+easylist.txt: 568) +# ||51ads.com^$third-party (easylistchina.txt: 581) .51ads.com -# ||4936.cn^$third-party (easylistchina+easylist.txt: 566) +# ||4936.cn^$third-party (easylistchina.txt: 579) .4936.cn -# ||44pv.com^$third-party (easylistchina+easylist.txt: 565) +# ||44pv.com^$third-party (easylistchina.txt: 578) .44pv.com -# ||3p-link.com^$third-party (easylistchina+easylist.txt: 564) +# ||3p-link.com^$third-party (easylistchina.txt: 577) .3p-link.com -# ||3dwwwgame.com^$third-party (easylistchina+easylist.txt: 562) +# ||3dwwwgame.com^$third-party (easylistchina.txt: 575) .3dwwwgame.com -# ||3alian.net^$third-party (easylistchina+easylist.txt: 561) +# ||3alian.net^$third-party (easylistchina.txt: 574) .3alian.net -# ||3975lm.com^$third-party (easylistchina+easylist.txt: 560) +# ||3975lm.com^$third-party (easylistchina.txt: 573) .3975lm.com -# ||38ra.com^$third-party (easylistchina+easylist.txt: 559) +# ||38ra.com^$third-party (easylistchina.txt: 572) .38ra.com -# ||3839168.com^$third-party (easylistchina+easylist.txt: 558) +# ||3839168.com^$third-party (easylistchina.txt: 571) .3839168.com -# ||3808010.com/code$third-party (easylistchina+easylist.txt: 557) +# ||3808010.com/code$third-party (easylistchina.txt: 570) .3808010.com/code -# ||37cs.com^$third-party (easylistchina+easylist.txt: 556) +# ||37cs.com^$third-party (easylistchina.txt: 569) .37cs.com -# ||36500.net^$third-party (easylistchina+easylist.txt: 551) +# ||36500.net^$third-party (easylistchina.txt: 564) .36500.net -# ||36500.com^$third-party (easylistchina+easylist.txt: 550) +# ||36500.com^$third-party (easylistchina.txt: 563) .36500.com -# ||360doo.com^$third-party (easylistchina+easylist.txt: 549) +# ||360doo.com^$third-party (easylistchina.txt: 562) .360doo.com -# ||3600ys.com^$third-party (easylistchina+easylist.txt: 547) +# ||3600ys.com^$third-party (easylistchina.txt: 560) .3600ys.com -# ||3399.com/act/$third-party (easylistchina+easylist.txt: 546) +# ||3399.com/act/$third-party (easylistchina.txt: 559) .3399.com/act/ -# ||32414.com^$third-party (easylistchina+easylist.txt: 545) +# ||32414.com^$third-party (easylistchina.txt: 558) .32414.com -# ||321tui.com^$third-party (easylistchina+easylist.txt: 544) +# ||321tui.com^$third-party (easylistchina.txt: 557) .321tui.com -# ||321tui.cn^$third-party (easylistchina+easylist.txt: 543) +# ||321tui.cn^$third-party (easylistchina.txt: 556) .321tui.cn -# ||2529.com^$third-party (easylistchina+easylist.txt: 541) +# ||2529.com^$third-party (easylistchina.txt: 554) .2529.com -# ||23kmm.com^$third-party (easylistchina+easylist.txt: 540) +# ||23kmm.com^$third-party (easylistchina.txt: 553) .23kmm.com -# ||235123.net^$third-party (easylistchina+easylist.txt: 539) +# ||235123.net^$third-party (easylistchina.txt: 552) .235123.net -# ||217wo.com^$third-party (easylistchina+easylist.txt: 534) +# ||217wo.com^$third-party (easylistchina.txt: 547) .217wo.com -# ||2155ec.com^$third-party (easylistchina+easylist.txt: 533) +# ||2155ec.com^$third-party (easylistchina.txt: 546) .2155ec.com -# ||210.65.10.32^$third-party (easylistchina+easylist.txt: 531) +# ||210.65.10.32^$third-party (easylistchina.txt: 544) .210.65.10.32 -# ||1v7.cn^$third-party (easylistchina+easylist.txt: 528) +# ||1v7.cn^$third-party (easylistchina.txt: 541) .1v7.cn -# ||1qwe3r.com^$third-party (easylistchina+easylist.txt: 527) +# ||1qwe3r.com^$third-party (easylistchina.txt: 540) .1qwe3r.com -# ||1lo0.net^$third-party (easylistchina+easylist.txt: 526) +# ||1lo0.net^$third-party (easylistchina.txt: 539) .1lo0.net -# ||139site.com^$third-party (easylistchina+easylist.txt: 522) +# ||139site.com^$third-party (easylistchina.txt: 535) .139site.com -# ||12l22.net^$third-party (easylistchina+easylist.txt: 520) +# ||12l22.net^$third-party (easylistchina.txt: 533) .12l22.net -# ||1188.com^$third-party (easylistchina+easylist.txt: 517) +# ||1188.com^$third-party (easylistchina.txt: 530) .1188.com -# ||118114.cn^$third-party (easylistchina+easylist.txt: 516) +# ||118114.cn^$third-party (easylistchina.txt: 529) .118114.cn -# ||1133.cc^$third-party (easylistchina+easylist.txt: 513) +# ||1133.cc^$third-party (easylistchina.txt: 526) .1133.cc -# ||110160.com^$third-party (easylistchina+easylist.txt: 509) +# ||110160.com^$third-party (easylistchina.txt: 522) .110160.com -# ||103.249.111.179^$third-party (easylistchina+easylist.txt: 507) +# ||103.249.111.179^$third-party (easylistchina.txt: 519) .103.249.111.179 -# ||100cpc.com^$third-party (easylistchina+easylist.txt: 506) +# ||100cpc.com^$third-party (easylistchina.txt: 518) .100cpc.com -# ||0756j.com^$third-party (easylistchina+easylist.txt: 504) +# ||0756j.com^$third-party (easylistchina.txt: 516) .0756j.com -# ||0591101.com^$third-party (easylistchina+easylist.txt: 503) +# ||0591101.com^$third-party (easylistchina.txt: 515) .0591101.com -# ||033.com^$third-party (easylistchina+easylist.txt: 502) +# ||033.com^$third-party (easylistchina.txt: 514) .033.com -# :8080/js/v2.1.js$third-party (easylistchina+easylist.txt: 488) +# :8080/js/v2.1.js$third-party (easylistchina.txt: 501) /.*:8080/js/v2\.1\.js -# :8080/js/v1.js$third-party (easylistchina+easylist.txt: 487) +# :8080/js/v1.js$third-party (easylistchina.txt: 500) /.*:8080/js/v1\.js -# /svr/popwin.aspx?$third-party (easylistchina+easylist.txt: 485) +# /svr/popwin.aspx?$third-party (easylistchina.txt: 497) /(.*/)?svr/popwin\.aspx\? -# /pge/?s=$third-party (easylistchina+easylist.txt: 484) +# /pge/?s=$third-party (easylistchina.txt: 496) /(.*/)?pge/\?s= -# /pd2.js$third-party (easylistchina+easylist.txt: 483) +# /pd2.js$third-party (easylistchina.txt: 495) /(.*/)?pd2\.js pd2.js*. -# /page/s.php?s=$third-party (easylistchina+easylist.txt: 481) +# /page/s.php?s=$third-party (easylistchina.txt: 493) /(.*/)?page/s\.php\?s= -# /page/index.php?s=$third-party (easylistchina+easylist.txt: 480) +# /page/index.php?s=$third-party (easylistchina.txt: 492) /(.*/)?page/index\.php\?s= -# /page/?s=$third-party (easylistchina+easylist.txt: 479) +# /page/?s=$third-party (easylistchina.txt: 491) /(.*/)?page/\?s= -# /floatingcontent/*$third-party (easylistchina+easylist.txt: 474) +# /floatingcontent/*$third-party (easylistchina.txt: 486) /(.*/)?floatingcontent/.* -# /99vjj/*$third-party (easylistchina+easylist.txt: 463) +# /99vjj/*$third-party (easylistchina.txt: 475) /(.*/)?99vjj/.* -# |http://*/s.js?sp=*&r=$third-party (easylistchina+easylist.txt: 258) +# |http://*/s.js?sp=*&r=$third-party (easylistchina.txt: 267) /(.*/)?s\.js\?sp=.*&r= -# /h/k.php?u=*&l=*&v=$third-party (easylistchina+easylist.txt: 163) +# /h/k.php?u=*&l=*&v=$third-party (easylistchina.txt: 168) /(.*/)?h/k\.php\?u=.*&l=.*&v= -# ||yy32.com^$third-party (easylistchina+easylist.txt: 85) +# ||yy32.com^$third-party (easylistchina.txt: 82) .yy32.com -# ||xq12.com^$third-party (easylistchina+easylist.txt: 84) +# ||xq12.com^$third-party (easylistchina.txt: 81) .xq12.com -# ||xixianad.com^$third-party (easylistchina+easylist.txt: 83) +# ||xixianad.com^$third-party (easylistchina.txt: 80) .xixianad.com -# ||wofan.net^$third-party (easylistchina+easylist.txt: 82) +# ||wofan.net^$third-party (easylistchina.txt: 79) .wofan.net -# ||v.xi666.com^$third-party (easylistchina+easylist.txt: 81) +# ||v.xi666.com^$third-party (easylistchina.txt: 78) .v.xi666.com -# ||ugoooo.com^$third-party (easylistchina+easylist.txt: 80) +# ||ugoooo.com^$third-party (easylistchina.txt: 77) .ugoooo.com -# ||uctrac.com^$third-party (easylistchina+easylist.txt: 79) +# ||uctrac.com^$third-party (easylistchina.txt: 76) .uctrac.com -# ||ubcpm.com^$third-party (easylistchina+easylist.txt: 78) +# ||ubcpm.com^$third-party (easylistchina.txt: 75) .ubcpm.com -# ||szvr.com^$third-party (easylistchina+easylist.txt: 76) +# ||szvr.com^$third-party (easylistchina.txt: 73) .szvr.com -# ||sitemaji.com^$third-party (easylistchina+easylist.txt: 75) +# ||sitemaji.com^$third-party (easylistchina.txt: 72) .sitemaji.com -# ||samboc.com^$third-party (easylistchina+easylist.txt: 74) +# ||samboc.com^$third-party (easylistchina.txt: 71) .samboc.com -# ||rekanw.com^$third-party (easylistchina+easylist.txt: 71) +# ||rekanw.com^$third-party (easylistchina.txt: 68) .rekanw.com -# ||rayli.com.cn^$third-party (easylistchina+easylist.txt: 70) +# ||rayli.com.cn^$third-party (easylistchina.txt: 67) .rayli.com.cn -# ||qling.com^$third-party (easylistchina+easylist.txt: 69) +# ||qling.com^$third-party (easylistchina.txt: 66) .qling.com -# ||oeya.com^$third-party (easylistchina+easylist.txt: 68) +# ||oeya.com^$third-party (easylistchina.txt: 65) .oeya.com -# ||niwota.com^$third-party (easylistchina+easylist.txt: 67) +# ||niwota.com^$third-party (easylistchina.txt: 64) .niwota.com -# ||mosa86.com^$third-party (easylistchina+easylist.txt: 66) +# ||mosa86.com^$third-party (easylistchina.txt: 63) .mosa86.com -# ||lm.35.com^$third-party (easylistchina+easylist.txt: 63) +# ||lm.35.com^$third-party (easylistchina.txt: 60) .lm.35.com -# ||lianjie.phpwind.com^$third-party (easylistchina+easylist.txt: 62) +# ||lianjie.phpwind.com^$third-party (easylistchina.txt: 59) .lianjie.phpwind.com -# ||kuqi.com^$third-party (easylistchina+easylist.txt: 61) +# ||kuqi.com^$third-party (easylistchina.txt: 58) .kuqi.com -# ||kuaiwan.com^$third-party (easylistchina+easylist.txt: 60) +# ||kuaiwan.com^$third-party (easylistchina.txt: 57) .kuaiwan.com -# ||image.qndown.com^$third-party (easylistchina+easylist.txt: 59) +# ||image.qndown.com^$third-party (easylistchina.txt: 56) .image.qndown.com -# ||ilepai.com^$third-party (easylistchina+easylist.txt: 58) +# ||ilepai.com^$third-party (easylistchina.txt: 55) .ilepai.com -# ||ifocus.cn^$third-party (easylistchina+easylist.txt: 57) +# ||ifocus.cn^$third-party (easylistchina.txt: 54) .ifocus.cn -# ||hz3137.com^$third-party (easylistchina+easylist.txt: 56) +# ||hz3137.com^$third-party (easylistchina.txt: 53) .hz3137.com -# ||housefun.com.tw^$third-party (easylistchina+easylist.txt: 55) +# ||housefun.com.tw^$third-party (easylistchina.txt: 52) .housefun.com.tw -# ||googleadsl.com^$third-party (easylistchina+easylist.txt: 53) +# ||googleadsl.com^$third-party (easylistchina.txt: 50) .googleadsl.com -# ||flashwing.net^$third-party (easylistchina+easylist.txt: 52) +# ||flashwing.net^$third-party (easylistchina.txt: 49) .flashwing.net -# ||ee4kdushuba.com^$third-party (easylistchina+easylist.txt: 51) +# ||ee4kdushuba.com^$third-party (easylistchina.txt: 48) .ee4kdushuba.com -# ||dingge.cc^$third-party (easylistchina+easylist.txt: 50) +# ||dingge.cc^$third-party (easylistchina.txt: 47) .dingge.cc -# ||dian5000.com^$third-party (easylistchina+easylist.txt: 49) +# ||dian5000.com^$third-party (easylistchina.txt: 46) .dian5000.com -# ||cpm360.com^$third-party (easylistchina+easylist.txt: 48) +# ||cpm360.com^$third-party (easylistchina.txt: 45) .cpm360.com -# ||caiyifz.com^$third-party (easylistchina+easylist.txt: 47) +# ||caiyifz.com^$third-party (easylistchina.txt: 44) .caiyifz.com -# ||buzzads.com^$third-party (easylistchina+easylist.txt: 46) +# ||buzzads.com^$third-party (easylistchina.txt: 43) .buzzads.com -# ||boosj.com^$third-party (easylistchina+easylist.txt: 45) +# ||boosj.com^$third-party (easylistchina.txt: 42) .boosj.com -# ||bmw100.cn^$third-party (easylistchina+easylist.txt: 44) +# ||bmw100.cn^$third-party (easylistchina.txt: 41) .bmw100.cn -# ||baitaiad.com^$third-party (easylistchina+easylist.txt: 42) +# ||baitaiad.com^$third-party (easylistchina.txt: 39) .baitaiad.com -# ||artxun.com^$third-party (easylistchina+easylist.txt: 41) +# ||artxun.com^$third-party (easylistchina.txt: 38) .artxun.com -# ||aifei.info^$third-party (easylistchina+easylist.txt: 40) +# ||aifei.info^$third-party (easylistchina.txt: 37) .aifei.info -# ||ads80.com^$third-party (easylistchina+easylist.txt: 39) +# ||ads80.com^$third-party (easylistchina.txt: 36) .ads80.com -# ||admaji.com^$third-party (easylistchina+easylist.txt: 37) +# ||admaji.com^$third-party (easylistchina.txt: 34) .admaji.com -# ||77zhuan.com^$third-party (easylistchina+easylist.txt: 35) +# ||77zhuan.com^$third-party (easylistchina.txt: 32) .77zhuan.com -# ||7794.com^$third-party (easylistchina+easylist.txt: 34) +# ||7794.com^$third-party (easylistchina.txt: 31) .7794.com -# ||52lover.info^$third-party (easylistchina+easylist.txt: 33) +# ||52lover.info^$third-party (easylistchina.txt: 30) .52lover.info -# ||49ko.com^$third-party (easylistchina+easylist.txt: 32) +# ||49ko.com^$third-party (easylistchina.txt: 29) .49ko.com -# ||37pk49.com^$third-party (easylistchina+easylist.txt: 31) +# ||37pk49.com^$third-party (easylistchina.txt: 28) .37pk49.com -# ||1x3x.com^$third-party (easylistchina+easylist.txt: 30) +# ||1x3x.com^$third-party (easylistchina.txt: 27) .1x3x.com -# ||12291.com^$third-party (easylistchina+easylist.txt: 29) +# ||12291.com^$third-party (easylistchina.txt: 26) .12291.com -# ||116b.com^$third-party (easylistchina+easylist.txt: 28) +# ||116b.com^$third-party (easylistchina.txt: 25) .116b.com -# ||114lm.com^$third-party (easylistchina+easylist.txt: 27) +# ||114lm.com^$third-party (easylistchina.txt: 24) .114lm.com -# ||api.traq.li^$third-party (advblock.txt: 7165) -.api.traq.li -# ||tg.tomsk.ru/$third-party (advblock.txt: 7053) -.tg.tomsk.ru -# ||tehnomag.tomsk.ru/index.php?ukey=product_widget&$third-party (advblock.txt: 7052) -.tehnomag.tomsk.ru/index\.php\?ukey=product_widget& -# ||rde.ru^$third-party (advblock.txt: 7051) -.rde.ru -# ||kompstar.tomsk.ru^$third-party (advblock.txt: 7048) -.kompstar.tomsk.ru -# ||yabs.yandex.*/show/$third-party (advblock.txt: 6996) -.yabs.yandex.*./(.*/)?show/ -# ||an.yandex.$third-party (advblock.txt: 6989) -.an.yandex.*. -# ||vkmus.com^$third-party (advblock.txt: 6959) -.vkmus.com -# ||vkbutton.com^$third-party (advblock.txt: 6958) -.vkbutton.com -# ||price.ru^$third-party (advblock.txt: 6901) -.price.ru -# ||torg.mail.ru/prtnr/$third-party (advblock.txt: 6833) -.torg.mail.ru/prtnr/ -# ||showbiz.mail.ru^$third-party (advblock.txt: 6832) -.showbiz.mail.ru -# ||banners.mail.ru^$third-party (advblock.txt: 6831) -.banners.mail.ru -# ||yapfiles.com^$third-party (advblock.txt: 6611) -.yapfiles.com -# ||xjp4v.ru^$third-party (advblock.txt: 6604) -.xjp4v.ru -# ||s1block.com^$third-party (advblock.txt: 6365) -.s1block.com -# ||metamarket.com.ua^$third-party (advblock.txt: 6048) -.metamarket.com.ua -# ||boom.pdanew.com^$third-party (advblock.txt: 5566) -.boom.pdanew.com -# ||the-people-group.$third-party (advblock.txt: 3289) -.the-people-group.*. -# ||people-group.$third-party (advblock.txt: 3287) -.people-group.*. -# ||kipfilms.ru^$third-party (advblock.txt: 3282) -.kipfilms.ru -# ||extract.zz.mu^$third-party (advblock.txt: 3280) -.extract.zz.mu -# ||eroox.ru^$third-party (advblock.txt: 3279) -.eroox.ru -# ||zxrtn.com^$third-party (advblock.txt: 3252) -.zxrtn.com -# ||znatokionline.com^$third-party (advblock.txt: 3249) -.znatokionline.com -# ||zgvvx.com^$third-party (advblock.txt: 3247) -.zgvvx.com -# ||zboac.com^$third-party (advblock.txt: 3245) -.zboac.com -# ||yrsfs.com^$third-party (advblock.txt: 3241) -.yrsfs.com -# ||ynwia.com^$third-party (advblock.txt: 3237) -.ynwia.com -# ||yluvo.com^$third-party (advblock.txt: 3236) -.yluvo.com -# ||xyghv.com^$third-party (advblock.txt: 3230) -.xyghv.com -# ||xwell.ru^$third-party (advblock.txt: 3229) -.xwell.ru -# ||xn----etbhjdhwegjlz.xn--p1ai^$third-party (advblock.txt: 3226) -.xn----etbhjdhwegjlz.xn--p1ai -# ||wyuxy.com^$third-party (advblock.txt: 3215) -.wyuxy.com -# ||wvzhj.com^$third-party (advblock.txt: 3213) -.wvzhj.com -# ||wlsport.com^$third-party (advblock.txt: 3202) -.wlsport.com -# ||wizard-traffstock.com^$third-party,~popup,popup (advblock.txt: 3200) -.wizard-traffstock.com -# ||winvideo.org^$third-party (advblock.txt: 3198) -.winvideo.org -# ||winvideo.me^$third-party (advblock.txt: 3197) -.winvideo.me -# ||winneradsmedia.com^$third-party (advblock.txt: 3196) -.winneradsmedia.com -# ||wedtor.com^$third-party (advblock.txt: 3191) -.wedtor.com -# ||web-games.biz^$third-party (advblock.txt: 3184) -.web-games.biz -# ||waveview.info^$third-party (advblock.txt: 3182) -.waveview.info -# ||wad.ojooo.com^$third-party (advblock.txt: 3176) -.wad.ojooo.com -# ||vutrem.com^$third-party (advblock.txt: 3162) -.vutrem.com -# ||vpvsy.com^$third-party (advblock.txt: 3159) -.vpvsy.com -# ||vongomedia.ru^$third-party (advblock.txt: 3156) -.vongomedia.ru -# ||vmet.ro^$third-party (advblock.txt: 3148) -.vmet.ro -# ||vktweaks.at.ua^$third-party (advblock.txt: 3146) -.vktweaks.at.ua -# ||vk242.ru^$third-party (advblock.txt: 3143) -.vk242.ru -# ||vidseed.ru$third-party (advblock.txt: 3130) -.vidseed.ru*. -# ||vidigital.ru^$third-party (advblock.txt: 3129) -.vidigital.ru -# ||videoroll.net^$third-party (advblock.txt: 3128) -.videoroll.net -# ||videoburner2015.com^$third-party (advblock.txt: 3124) -.videoburner2015.com -# ||vidasys.ru^$third-party (advblock.txt: 3115) -.vidasys.ru -# ||vcnnz.com^$third-party (advblock.txt: 3112) -.vcnnz.com -# ||vboys.ru^$third-party (advblock.txt: 3111) -.vboys.ru -# ||uvcwj.com^$third-party (advblock.txt: 3102) -.uvcwj.com -# ||tynyh.com^$third-party (advblock.txt: 3083) -.tynyh.com -# ||ttarget.ru^$third-party (advblock.txt: 3077) -.ttarget.ru -# ||tsilepe.ru^$third-party (advblock.txt: 3074) -.tsilepe.ru -# ||tratouler.com^$third-party (advblock.txt: 3068) -.tratouler.com -# ||trafka.ru^$third-party (advblock.txt: 3059) -.trafka.ru -# ||traffim.com^$third-party (advblock.txt: 3055) -.traffim.com -# ||trafex.net^$third-party (advblock.txt: 3052) -.trafex.net -# ||tormun.com^$third-party (advblock.txt: 3041) -.tormun.com -# ||torkok.com^$third-party (advblock.txt: 3040) -.torkok.com -# ||toplaygame.ru^$third-party (advblock.txt: 3039) -.toplaygame.ru -# ||to/files/$third-party (advblock.txt: 3031) -# ||tizerlink.com^$third-party (advblock.txt: 3021) -.tizerlink.com -# ||tizerlady.org^$third-party (advblock.txt: 3020) -.tizerlady.org -# ||tizerlady.net^$third-party (advblock.txt: 3019) -.tizerlady.net -# ||tizerlady.com^$third-party (advblock.txt: 3018) -.tizerlady.com -# ||tizerlady.biz^$third-party (advblock.txt: 3017) -.tizerlady.biz -# ||tizerclik.com^$third-party (advblock.txt: 3011) -.tizerclik.com -# ||tizerbank.com^$third-party (advblock.txt: 3009) -.tizerbank.com -# ||tiz-et.ru^$third-party (advblock.txt: 3003) -.tiz-et.ru -# ||textun.ru^$third-party (advblock.txt: 2991) -.textun.ru -# ||technical-rtl.ru^$third-party (advblock.txt: 2986) -.technical-rtl.ru -# ||teasermedia.net^$third-party (advblock.txt: 2980) -.teasermedia.net -# ||t.fotos.ua^$third-party (advblock.txt: 2964) -.t.fotos.ua -# ||sutgof.ru^$third-party (advblock.txt: 2960) -.sutgof.ru -# ||super-sxema.ru^$third-party (advblock.txt: 2955) -.super-sxema.ru -# ||sugvuxa.ru^$third-party (advblock.txt: 2953) -.sugvuxa.ru -# ||stat-well.com^$third-party (advblock.txt: 2947) -.stat-well.com -# ||ssl-services.com^$third-party (advblock.txt: 2943) -.ssl-services.com -# ||sovetnik.yandex.net^$third-party (advblock.txt: 2936) -.sovetnik.yandex.net -# ||smilered.com^$third-party (advblock.txt: 2922) -.smilered.com -# ||sm0tri.eu^$third-party (advblock.txt: 2921) -.sm0tri.eu -# ||slickjump.com^$third-party (advblock.txt: 2918) -.slickjump.com -# ||slavedomain48.net^$third-party (advblock.txt: 2916) -.slavedomain48.net -# ||server-number-1.ru^$third-party (advblock.txt: 2898) -.server-number-1.ru -# ||serv7553.ru^$third-party (advblock.txt: 2896) -.serv7553.ru -# ||sernen.com^$third-party (advblock.txt: 2895) -.sernen.com -# ||seedr.ru^$third-party (advblock.txt: 2890) -.seedr.ru -# ||seedr.com^$third-party (advblock.txt: 2889) -.seedr.com -# ||sdx.ru^$third-party (advblock.txt: 2886) -.sdx.ru -# ||salutbook.ru^$third-party (advblock.txt: 2884) -.salutbook.ru -# ||salesdoubler.com.ua^$third-party (advblock.txt: 2883) -.salesdoubler.com.ua -# ||sadreno.com^$third-party (advblock.txt: 2880) -.sadreno.com -# ||s5block.com^$third-party (advblock.txt: 2879) -.s5block.com -# ||s1venus.com^$third-party (advblock.txt: 2878) -.s1venus.com -# ||rutvind.com^$third-party (advblock.txt: 2874) -.rutvind.com -# ||rutorads.com^$third-party (advblock.txt: 2873) -.rutorads.com -# ||rusprices.ru^$third-party (advblock.txt: 2871) -.rusprices.ru -# ||ruschopi.ru^$third-party (advblock.txt: 2870) -.ruschopi.ru -# ||rtbclick.net^$third-party (advblock.txt: 2862) -.rtbclick.net -# ||rtb-media.ru^$third-party (advblock.txt: 2861) -.rtb-media.ru -# ||republer.com^$third-party (advblock.txt: 2842) -.republer.com -# ||regpole.com^$third-party (advblock.txt: 2840) -.regpole.com -# ||redclick.ru^$third-party (advblock.txt: 2837) -.redclick.ru -# ||reborko.com^$third-party (advblock.txt: 2835) -.reborko.com -# ||realtraf.$third-party,~popup,popup (advblock.txt: 2832) -.realtraf.*. -# ||rdiul.com^$third-party (advblock.txt: 2828) -.rdiul.com -# ||ravnovesienews.ru^$third-party (advblock.txt: 2826) -.ravnovesienews.ru -# ||ratioboom.ru^$third-party (advblock.txt: 2824) -.ratioboom.ru -# ||qwertypay.com^$third-party (advblock.txt: 2823) -.qwertypay.com -# ||qtymi.com^$third-party (advblock.txt: 2822) -.qtymi.com -# ||qload.ru^$third-party (advblock.txt: 2817) -.qload.ru -# ||qbann.ru^$third-party (advblock.txt: 2815) -.qbann.ru -# ||puhtml.com^$third-party (advblock.txt: 2812) -.puhtml.com -# ||psmardr.com^$third-party (advblock.txt: 2808) -.psmardr.com -# ||psma03.com^$third-party (advblock.txt: 2807) -.psma03.com -# ||psma02.com^$third-party (advblock.txt: 2806) -.psma02.com -# ||psma01.com^$third-party (advblock.txt: 2805) -.psma01.com -# ||promoworld.pw^$third-party (advblock.txt: 2799) -.promoworld.pw -# ||promocns.com^$third-party (advblock.txt: 2798) -.promocns.com -# ||promocenter.biz^$third-party (advblock.txt: 2797) -.promocenter.biz -# ||povyspo.ru^$third-party (advblock.txt: 2785) -.povyspo.ru -# ||porhuk.com^$third-party (advblock.txt: 2782) -.porhuk.com -# ||pokutaf.com^$third-party (advblock.txt: 2775) -.pokutaf.com -# ||pluginsjquery.com^$third-party (advblock.txt: 2769) -.pluginsjquery.com -# ||planeta-online.tv^$third-party (advblock.txt: 2767) -.planeta-online.tv -# ||planeta-fresh.ru^$third-party (advblock.txt: 2766) -.planeta-fresh.ru -# ||pentoch.com^$third-party (advblock.txt: 2760) -.pentoch.com -# ||oyy.ru^$third-party (advblock.txt: 2747) -.oyy.ru -# ||otclick-adv.ru^$third-party (advblock.txt: 2741) -.otclick-adv.ru -# ||oqida.ru^$third-party (advblock.txt: 2739) -.oqida.ru -# ||ontagru.ru^$third-party (advblock.txt: 2733) -.ontagru.ru -# ||omynews.net^$third-party (advblock.txt: 2726) -.omynews.net -# ||ochze.com^$third-party (advblock.txt: 2720) -.ochze.com -# ||obhodsb.com^$third-party (advblock.txt: 2718) -.obhodsb.com -# ||ntvk1.ru^$third-party (advblock.txt: 2711) -.ntvk1.ru -# ||nickhel.com^$third-party (advblock.txt: 2702) -.nickhel.com -# ||nextclick.com.ua^$third-party (advblock.txt: 2701) -.nextclick.com.ua -# ||newsanons.ru^$third-party (advblock.txt: 2698) -.newsanons.ru -# ||n278adserv.com^$third-party (advblock.txt: 2686) -.n278adserv.com -# ||n161adserv.com^$third-party (advblock.txt: 2685) -.n161adserv.com -# ||mycpm.ru^$third-party (advblock.txt: 2681) -.mycpm.ru -# ||myarusel.gpor.ru^$third-party (advblock.txt: 2680) -.myarusel.gpor.ru -# ||mxttrf.com^$third-party (advblock.txt: 2678) -.mxttrf.com -# ||mxccs.com^$third-party (advblock.txt: 2676) -.mxccs.com -# ||mutrik.com^$third-party (advblock.txt: 2673) -.mutrik.com -# ||msrv.su^$third-party (advblock.txt: 2669) -.msrv.su -# ||mrs-twister.ru^$third-party (advblock.txt: 2667) -.mrs-twister.ru -# ||moipep.com^$third-party (advblock.txt: 2657) -.moipep.com -# ||mobitds.ru^$third-party (advblock.txt: 2650) -.mobitds.ru -# ||mobioffers.ru^$third-party (advblock.txt: 2647) -.mobioffers.ru -# ||mixadvert.com^$third-party (advblock.txt: 2638) -.mixadvert.com -# ||mediatoday.ru^$third-party (advblock.txt: 2613) -.mediatoday.ru -# ||mediaskyline.ru^$third-party (advblock.txt: 2611) -.mediaskyline.ru -# ||medianaft.ru^$third-party (advblock.txt: 2602) -.medianaft.ru -# ||medianaft.com^$third-party (advblock.txt: 2601) -.medianaft.com -# ||mediakadr.ru^$third-party (advblock.txt: 2599) -.mediakadr.ru -# ||media-storage.org^$third-party (advblock.txt: 2594) -.media-storage.org -# ||medads.ru^$third-party (advblock.txt: 2589) -.medads.ru -# ||mdeih.com^$third-party (advblock.txt: 2586) -.mdeih.com -# ||mayvbm.com^$third-party (advblock.txt: 2581) -.mayvbm.com -# ||masterdomain24.com^$third-party (advblock.txt: 2576) -.masterdomain24.com -# ||madnet.ru^$third-party (advblock.txt: 2567) -.madnet.ru -# ||ma-static.ru^$third-party (advblock.txt: 2565) -.ma-static.ru -# ||lvuic.com^$third-party (advblock.txt: 2560) -.lvuic.com -# ||luxads.net^$third-party (advblock.txt: 2557) -.luxads.net -# ||lresoza.ru^$third-party (advblock.txt: 2550) -.lresoza.ru -# ||lomtor.com^$third-party (advblock.txt: 2541) -.lomtor.com -# ||livesurf.ru^$third-party (advblock.txt: 2535) -.livesurf.ru -# ||linkwall.ru^$third-party (advblock.txt: 2528) -.linkwall.ru -# ||linkunder.ru^$third-party (advblock.txt: 2526) -.linkunder.ru -# ||linkslot.ru^$third-party (advblock.txt: 2524) -.linkslot.ru -# ||links-wm.ru^$third-party (advblock.txt: 2523) -.links-wm.ru -# ||linicom.com^$third-party (advblock.txt: 2518) -.linicom.com -# ||limo20.ru^$third-party (advblock.txt: 2516) -.limo20.ru -# ||letmelook.net^$third-party (advblock.txt: 2509) -.letmelook.net -# ||lepubs.com^$third-party (advblock.txt: 2506) -.lepubs.com -# ||leadzu.com^$third-party (advblock.txt: 2503) -.leadzu.com -# ||lapumo.com^$third-party (advblock.txt: 2498) -.lapumo.com -# ||ladyads.ru^$third-party (advblock.txt: 2489) -.ladyads.ru -# ||ladiesnadosuge.com^$third-party (advblock.txt: 2487) -.ladiesnadosuge.com -# ||kuveres.com^$third-party (advblock.txt: 2478) -.kuveres.com -# ||kupivip.ru^$third-party (advblock.txt: 2477) -.kupivip.ru -# ||knc.lv^$third-party (advblock.txt: 2466) -.knc.lv -# ||kin0.biz^$third-party (advblock.txt: 2454) -.kin0.biz -# ||kadam.net^$third-party (advblock.txt: 2450) -.kadam.net -# ||jpqgs.com^$third-party (advblock.txt: 2443) -.jpqgs.com -# ||ivsiveg.ru^$third-party (advblock.txt: 2434) -.ivsiveg.ru -# ||intimcity.com^$third-party (advblock.txt: 2423) -.intimcity.com -# ||intelligencehost.net^$third-party (advblock.txt: 2420) -.intelligencehost.net -# ||inetrek.com^$third-party (advblock.txt: 2418) -.inetrek.com -# ||indcoest.com^$third-party (advblock.txt: 2417) -.indcoest.com -# ||image325.ru^$third-party (advblock.txt: 2410) -.image325.ru -# ||ileads.ru^$third-party (advblock.txt: 2394) -.ileads.ru -# ||i-vengo.com^$third-party (advblock.txt: 2365) -.i-vengo.com -# ||hyndir.com^$third-party (advblock.txt: 2363) -.hyndir.com -# ||hghit.com^$third-party (advblock.txt: 2348) -.hghit.com -# ||hgdat.com^$third-party (advblock.txt: 2347) -.hgdat.com -# ||guktuti.ru^$third-party (advblock.txt: 2339) -.guktuti.ru -# ||grofku.com^$third-party (advblock.txt: 2334) -.grofku.com -# ||gotriki.com^$third-party (advblock.txt: 2329) -.gotriki.com -# ||goodlooknews.net^$third-party (advblock.txt: 2325) -.goodlooknews.net -# ||glammor.ru^$third-party (advblock.txt: 2310) -.glammor.ru -# ||gizenon.ru^$third-party (advblock.txt: 2308) -.gizenon.ru -# ||getuplinks.ru^$third-party (advblock.txt: 2301) -.getuplinks.ru -# ||get-hit.ru^$third-party (advblock.txt: 2300) -.get-hit.ru -# ||gdsln.ru^$third-party (advblock.txt: 2299) -.gdsln.ru -# ||gawxf.com^$third-party (advblock.txt: 2297) -.gawxf.com -# ||gameleads.ru^$third-party (advblock.txt: 2292) -.gameleads.ru -# ||fufko.com^$third-party (advblock.txt: 2283) -.fufko.com -# ||fotrento.com^$third-party (advblock.txt: 2276) -.fotrento.com -# ||fortuka.com^$third-party (advblock.txt: 2274) -.fortuka.com -# ||fobise.ru^$third-party (advblock.txt: 2273) -.fobise.ru -# ||fingoty.com^$third-party (advblock.txt: 2262) -.fingoty.com -# ||faddgetdo.ru^$third-party (advblock.txt: 2251) -.faddgetdo.ru -# ||ezaste.ru^$third-party (advblock.txt: 2249) -.ezaste.ru -# ||exchangenews.ru^$third-party (advblock.txt: 2247) -.exchangenews.ru -# ||et-code.ru^$third-party (advblock.txt: 2242) -.et-code.ru -# ||eroticahd.org^$third-party (advblock.txt: 2238) -.eroticahd.org -# ||engageya.com^$third-party (advblock.txt: 2231) -.engageya.com -# ||elkagoda.ru^$third-party (advblock.txt: 2226) -.elkagoda.ru -# ||egpofy.com^$third-party (advblock.txt: 2223) -.egpofy.com -# ||ecortb.com^$third-party (advblock.txt: 2222) -.ecortb.com -# ||ebloren.ru^$third-party (advblock.txt: 2219) -.ebloren.ru -# ||dyzha.com^$third-party (advblock.txt: 2217) -.dyzha.com -# ||dumedia.ru^$third-party (advblock.txt: 2212) -.dumedia.ru -# ||drtraff.ru^$third-party (advblock.txt: 2211) -.drtraff.ru -# ||dosug.cz^$third-party (advblock.txt: 2204) -.dosug.cz -# ||dornut.com^$third-party (advblock.txt: 2203) -.dornut.com -# ||dodrek.com^$third-party (advblock.txt: 2196) -.dodrek.com -# ||directtogo.ru^$third-party (advblock.txt: 2191) -.directtogo.ru -# ||dictus.biz^$third-party (advblock.txt: 2185) -.dictus.biz -# ||datariver.ru^$third-party (advblock.txt: 2169) -.datariver.ru -# ||d2ue9k1rhsumed.cloudfront.net^$third-party (advblock.txt: 2158) -.d2ue9k1rhsumed.cloudfront.net -# ||d-agency.net^$third-party (advblock.txt: 2156) -.d-agency.net -# ||cuioj.com^$third-party (advblock.txt: 2152) -.cuioj.com -# ||cufcw.com^$third-party (advblock.txt: 2151) -.cufcw.com -# ||cubo.ru^$third-party (advblock.txt: 2150) -.cubo.ru -# ||ctyzd.com^$third-party (advblock.txt: 2149) -.ctyzd.com -# ||ctrmanager.com^$third-party (advblock.txt: 2148) -.ctrmanager.com -# ||creofun.com^$third-party (advblock.txt: 2146) -.creofun.com -# ||creofive.com^$third-party (advblock.txt: 2145) -.creofive.com -# ||contema.ru^$third-party (advblock.txt: 2128) -.contema.ru -# ||code.roadvel.ru^$third-party (advblock.txt: 2117) -.code.roadvel.ru -# ||cobrand.ria.com^$third-party (advblock.txt: 2114) -.cobrand.ria.com -# ||cms-skin.com^$third-party (advblock.txt: 2113) -.cms-skin.com -# ||clkmon.com^$third-party (advblock.txt: 2106) -.clkmon.com -# ||ckqby.com^$third-party (advblock.txt: 2096) -.ckqby.com -# ||ck-cdn.com^$third-party (advblock.txt: 2095) -.ck-cdn.com -# ||cityads.ru^$third-party (advblock.txt: 2094) -.cityads.ru -# ||cityads.com^$third-party (advblock.txt: 2093) -.cityads.com -# ||cdnjs.nl^$third-party (advblock.txt: 2083) -.cdnjs.nl -# ||cashprom.ru^$third-party (advblock.txt: 2079) -.cashprom.ru -# ||bznclicks.com^$third-party (advblock.txt: 2072) -.bznclicks.com -# ||bzlwe.com^$third-party (advblock.txt: 2071) -.bzlwe.com -# ||buzzoola.com^$third-party (advblock.txt: 2066) -.buzzoola.com -# ||bussters.com^$third-party (advblock.txt: 2063) -.bussters.com -# ||broklam.com^$third-party (advblock.txt: 2060) -.broklam.com -# ||brndrm.com^$third-party (advblock.txt: 2059) -.brndrm.com -# ||bposterss.net^$third-party (advblock.txt: 2055) -.bposterss.net -# ||bongobono.com^$third-party (advblock.txt: 2053) -.bongobono.com -# ||bongacash.com^$third-party (advblock.txt: 2052) -.bongacash.com -# ||bjpwv.com^$third-party (advblock.txt: 2046) -.bjpwv.com -# ||betonmarkets.com^$third-party (advblock.txt: 2040) -.betonmarkets.com -# ||berdent.com^$third-party (advblock.txt: 2037) -.berdent.com -# ||bequri.com^$third-party (advblock.txt: 2036) -.bequri.com -# ||bazilhan.com^$third-party (advblock.txt: 2031) -.bazilhan.com -# ||bara-banner.com^$third-party (advblock.txt: 2027) -.bara-banner.com -# ||bannersold.eu^$third-party (advblock.txt: 2024) -.bannersold.eu -# ||banerator.net^$third-party (advblock.txt: 2022) -.banerator.net -# ||baks-easy.com^$third-party (advblock.txt: 2021) -.baks-easy.com -# ||backend.opogame.com^$third-party (advblock.txt: 2019) -.backend.opogame.com -# ||bablogon.net^$third-party (advblock.txt: 2017) -.bablogon.net -# ||ayjvb.com^$third-party (advblock.txt: 2014) -.ayjvb.com -# ||avmgetdo.ru^$third-party (advblock.txt: 2013) -.avmgetdo.ru -# ||avdego.net^$third-party (advblock.txt: 2012) -.avdego.net -# ||astdn.ru^*/$third-party (advblock.txt: 2010) -.astdn.ru/.*/ -# ||ardiver.ru^$third-party (advblock.txt: 2004) -.ardiver.ru -# ||apytrc.com^$third-party (advblock.txt: 2001) -.apytrc.com -# ||apypxl.com^$third-party (advblock.txt: 2000) -.apypxl.com -# ||appboost.ru^$third-party (advblock.txt: 1994) -.appboost.ru -# ||analyticsncc.net^$third-party (advblock.txt: 1984) -.analyticsncc.net -# ||alltheladyz.xyz^$third-party (advblock.txt: 1976) -.alltheladyz.xyz -# ||allkalisto.ru^$third-party (advblock.txt: 1974) -.allkalisto.ru -# ||alipromo.com^$third-party (advblock.txt: 1973) -.alipromo.com -# ||alidtd.com^$third-party (advblock.txt: 1972) -.alidtd.com -# ||advland.ru^$third-party (advblock.txt: 1952) -.advland.ru -# ||advkino.ru^$third-party (advblock.txt: 1951) -.advkino.ru -# ||advideo.ru^$third-party (advblock.txt: 1950) -.advideo.ru -# ||advice.imho.net^$third-party (advblock.txt: 1949) -.advice.imho.net -# ||advertur.ru^$third-party (advblock.txt: 1948) -.advertur.ru -# ||advertshot.ru^$third-party (advblock.txt: 1946) -.advertshot.ru -# ||advertone.ru^$third-party (advblock.txt: 1945) -.advertone.ru -# ||advertoly.com^$third-party (advblock.txt: 1944) -.advertoly.com -# ||advertmedianetwork.ru^$third-party (advblock.txt: 1943) -.advertmedianetwork.ru -# ||advego.ru^$third-party (advblock.txt: 1940) -.advego.ru -# ||adveg.ru^$third-party (advblock.txt: 1939) -.adveg.ru -# ||advarkads.com^$third-party (advblock.txt: 1938) -.advarkads.com -# ||advagava.ru^$third-party (advblock.txt: 1937) -.advagava.ru -# ||adv-target.ru^$third-party (advblock.txt: 1935) -.adv-target.ru -# ||adulthub.ru^$third-party (advblock.txt: 1933) -.adulthub.ru -# ||adstarter.ru^$third-party (advblock.txt: 1928) -.adstarter.ru -# ||adselector.ru^$third-party (advblock.txt: 1923) -.adselector.ru -# ||adsactive.ru^$third-party (advblock.txt: 1922) -.adsactive.ru -# ||adname.ru^$third-party (advblock.txt: 1920) -.adname.ru -# ||admixercreatives.blob.core.windows.net^$third-party (advblock.txt: 1919) -.admixercreatives.blob.core.windows.net -# ||admitlead.ru^$third-party (advblock.txt: 1918) -.admitlead.ru -# ||admail.am^$third-party (advblock.txt: 1917) -.admail.am -# ||adlook.net^$third-party (advblock.txt: 1916) -.adlook.net -# ||adlift.ru^$third-party (advblock.txt: 1915) -.adlift.ru -# ||adlabs.ru^$third-party (advblock.txt: 1914) -.adlabs.ru -# ||addtraf.ru^$third-party (advblock.txt: 1909) -.addtraf.ru -# ||adcamp.ru^$third-party (advblock.txt: 1908) -.adcamp.ru -# ||adbmi.com^$third-party (advblock.txt: 1907) -.adbmi.com -# ||adbix.tv^$third-party (advblock.txt: 1906) -.adbix.tv -# ||actionteaser.ru^$third-party (advblock.txt: 1894) -.actionteaser.ru -# ||actionads.ru^$third-party (advblock.txt: 1892) -.actionads.ru -# ||7-link.ru^$third-party (advblock.txt: 1886) -.7-link.ru -# ||1ru.tv^$third-party (advblock.txt: 1870) -.1ru.tv -# //85.10.194.51^$third-party (advblock.txt: 1845) -85.10.194.51 -# ||tophot-news.com^$third-party (advblock.txt: 1823) -.tophot-news.com -# ||ru-novocti.com^$third-party (advblock.txt: 1817) -.ru-novocti.com -# ||nntx.ru^$third-party (advblock.txt: 1805) -.nntx.ru -# ||mhealth.ru^$third-party (advblock.txt: 1803) -.mhealth.ru -# ||meta.ua/*/block.js|$third-party (advblock.txt: 1801) -.meta.ua/.*/block\.js$ -# ||lenta-novostei.com^$third-party (advblock.txt: 1799) -.lenta-novostei.com -# ||cmexota.ru^$third-party (advblock.txt: 1781) -.cmexota.ru -# ||zto.h16.ru^$third-party (advblock.txt: 1765) -.zto.h16.ru -# ||zozocash.biz^$third-party (advblock.txt: 1763) -.zozocash.biz -# ||zorkabiz.ru^$third-party (advblock.txt: 1762) -.zorkabiz.ru -# ||znews.su^$third-party (advblock.txt: 1761) -.znews.su -# ||zizu.lv^$third-party (advblock.txt: 1760) -.zizu.lv -# ||zipmonster.ru^$third-party (advblock.txt: 1759) -.zipmonster.ru -# ||zheton.com^$third-party (advblock.txt: 1758) -.zheton.com -# ||zamok911.com^$third-party (advblock.txt: 1755) -.zamok911.com -# ||yousticker.com/load/$third-party (advblock.txt: 1754) -.yousticker.com/load/ -# ||yournewhosting.com/images/$third-party (advblock.txt: 1753) -.yournewhosting.com/images/ -# ||yottos.com$third-party (advblock.txt: 1752) -.yottos.com*. -# ||yoga-terapia.ru^$third-party (advblock.txt: 1751) -.yoga-terapia.ru -# ||yellowmedia.biz^$third-party (advblock.txt: 1750) -.yellowmedia.biz -# ||xxx-news.$third-party (advblock.txt: 1746) -.xxx-news.*. -# ||x4u.ru^$third-party (advblock.txt: 1742) -.x4u.ru -# ||x-ero.ru^$third-party (advblock.txt: 1740) -.x-ero.ru -# ||wwwomen.ru^$third-party (advblock.txt: 1739) -.wwwomen.ru -# ||wolist.ru^$third-party (advblock.txt: 1734) -.wolist.ru -# ||wmzona.com^$third-party (advblock.txt: 1733) -.wmzona.com -# ||wmlink.$third-party (advblock.txt: 1731) -.wmlink.*. -# ||wmirk.ru^$third-party (advblock.txt: 1730) -.wmirk.ru -# ||wm-talk.org^$third-party (advblock.txt: 1729) -.wm-talk.org -# ||winlinebet.com^$third-party (advblock.txt: 1725) -.winlinebet.com -# ||wewonurgold.ws^$third-party (advblock.txt: 1723) -.wewonurgold.ws -# ||webhost1.ru/design/$third-party (advblock.txt: 1713) -.webhost1.ru/design/ -# ||webex.ru^$third-party (advblock.txt: 1712) -.webex.ru -# ||warezplatinum.com^$third-party (advblock.txt: 1705) -.warezplatinum.com -# ||vyatka-host.ru^$third-party (advblock.txt: 1700) -.vyatka-host.ru -# ||vsexshop.ru^$third-party (advblock.txt: 1697) -.vsexshop.ru -# ||vsesumki.com^$third-party (advblock.txt: 1695) -.vsesumki.com -# ||vsemp.ru^$third-party (advblock.txt: 1694) -.vsemp.ru -# ||vsem.ru^$third-party (advblock.txt: 1693) -.vsem.ru -# ||vsekino.su^$third-party (advblock.txt: 1692) -.vsekino.su -# ||vpsite.ru^$third-party (advblock.txt: 1690) -.vpsite.ru -# ||vpered.ru^$third-party (advblock.txt: 1689) -.vpered.ru -# ||voyna-plemyon.ru^$third-party (advblock.txt: 1688) -.voyna-plemyon.ru -# ||vodkov.net^$third-party (advblock.txt: 1686) -.vodkov.net -# ||vladmag.ru^$third-party (advblock.txt: 1685) -.vladmag.ru -# ||vladkofe.ru^$third-party (advblock.txt: 1684) -.vladkofe.ru -# ||vladja.com^$third-party (advblock.txt: 1683) -.vladja.com -# ||videoruletka.net^$third-party (advblock.txt: 1676) -.videoruletka.net -# ||videoklass.ru^$third-party (advblock.txt: 1673) -.videoklass.ru -# ||videoigr.net/includes/$third-party (advblock.txt: 1671) -.videoigr.net/includes/ -# ||videofan.ru^$third-party (advblock.txt: 1670) -.videofan.ru -# ||videoclik.$third-party (advblock.txt: 1668) -.videoclik.*. -# ||vicepiter.ru^$third-party (advblock.txt: 1664) -.vicepiter.ru -# ||via-shop.ru^$third-party (advblock.txt: 1663) -.via-shop.ru -# ||usde.biz^$third-party (advblock.txt: 1653) -.usde.biz -# ||uptracker.ru^$third-party (advblock.txt: 1652) -.uptracker.ru -# ||unlockers.ru^$third-party (advblock.txt: 1651) -.unlockers.ru -# ||ukrbanner.net^$third-party (advblock.txt: 1646) -.ukrbanner.net -# ||uadvt.net^$third-party (advblock.txt: 1641) -.uadvt.net -# ||ua-teens.com^$third-party (advblock.txt: 1640) -.ua-teens.com -# ||tvoy-startup.ru^$third-party (advblock.txt: 1635) -.tvoy-startup.ru -# ||trustlink.ru^$third-party (advblock.txt: 1628) -.trustlink.ru -# ||trafunder.$third-party (advblock.txt: 1626) -.trafunder.*. -# ||traf.spb.ru^$third-party (advblock.txt: 1619) -.traf.spb.ru -# ||tradelinks.$third-party (advblock.txt: 1611) -.tradelinks.*. -# ||trade7.ru^$third-party (advblock.txt: 1610) -.trade7.ru -# ||torgnn.ru^$third-party (advblock.txt: 1609) -.torgnn.ru -# ||topcto.ru^$third-party (advblock.txt: 1607) -.topcto.ru -# ||topbrokers.com.ua^$third-party (advblock.txt: 1606) -.topbrokers.com.ua -# ||topadvert.ru^$third-party (advblock.txt: 1605) -.topadvert.ru -# ||top-shop.ru^$third-party (advblock.txt: 1604) -.top-shop.ru -# ||todaymix.ru^$third-party (advblock.txt: 1602) -.todaymix.ru -# ||testsbox.ru^$third-party (advblock.txt: 1587) -.testsbox.ru -# ||tehnoklad.ru^$third-party (advblock.txt: 1583) -.tehnoklad.ru -# ||tdmplus.ru^$third-party (advblock.txt: 1576) -.tdmplus.ru -# ||surbis.ru^$third-party (advblock.txt: 1567) -.surbis.ru -# ||superwoomen.ru^$third-party (advblock.txt: 1566) -.superwoomen.ru -# ||supertop.ru^$third-party (advblock.txt: 1565) -.supertop.ru -# ||superstyle.ru^$third-party (advblock.txt: 1564) -.superstyle.ru -# ||superfish.com^$third-party (advblock.txt: 1563) -.superfish.com -# ||supercatalog.3dn.ru^$third-party (advblock.txt: 1562) -.supercatalog.3dn.ru -# ||strogonet.ru^$third-party (advblock.txt: 1556) -.strogonet.ru -# ||stripvidz.com^$third-party (advblock.txt: 1554) -.stripvidz.com -# ||steptocash.ru^$third-party (advblock.txt: 1551) -.steptocash.ru -# ||steamaccs.com^$third-party (advblock.txt: 1548) -.steamaccs.com -# ||steam-sell.ru^$third-party (advblock.txt: 1547) -.steam-sell.ru -# ||statcontent.ru^$third-party (advblock.txt: 1544) -.statcontent.ru -# ||starphotoblog.com^$third-party (advblock.txt: 1542) -.starphotoblog.com -# ||sputnik1.ru^$third-party (advblock.txt: 1537) -.sputnik1.ru -# ||sppromo.com/feed.php?$third-party (advblock.txt: 1535) -.sppromo.com/feed\.php\? -# ||sportoboz.ru^$third-party (advblock.txt: 1534) -.sportoboz.ru -# ||sport-fitnes.ru^$third-party (advblock.txt: 1533) -.sport-fitnes.ru -# ||softbn.ru^$third-party (advblock.txt: 1529) -.softbn.ru -# ||smsconvertv3.ru^$third-party (advblock.txt: 1524) -.smsconvertv3.ru -# ||smile32.ru^$third-party (advblock.txt: 1523) -.smile32.ru -# ||smigid.ru^$third-party (advblock.txt: 1522) -.smigid.ru -# ||smi2.ru/data/$third-party (advblock.txt: 1520) -.smi2.ru/data/ -# ||smart-soft.ru^$third-party (advblock.txt: 1518) -.smart-soft.ru -# ||slimp.net^$third-party (advblock.txt: 1517) -.slimp.net -# ||sitetraff.ru^$third-party (advblock.txt: 1512) -.sitetraff.ru -# ||simplity.ru^$third-party (advblock.txt: 1510) -.simplity.ru -# ||sexprice.ru^$third-party (advblock.txt: 1506) -.sexprice.ru -# ||sexplay.com.ua^$third-party (advblock.txt: 1505) -.sexplay.com.ua -# ||sexfilms.ru^$third-party (advblock.txt: 1504) -.sexfilms.ru -# ||sex-finger.com^$third-party (advblock.txt: 1502) -.sex-finger.com -# ||sevensteps.biz^$third-party (advblock.txt: 1501) -.sevensteps.biz -# ||setlinks.ru^$third-party (advblock.txt: 1500) -.setlinks.ru -# ||seriouspartner.ru^$third-party (advblock.txt: 1497) -.seriouspartner.ru -# ||serialinfo.ru^$third-party (advblock.txt: 1496) -.serialinfo.ru -# ||seorate.ru^$third-party (advblock.txt: 1493) -.seorate.ru -# ||seopult.ru^$third-party (advblock.txt: 1492) -.seopult.ru -# ||seoliner.ru^$third-party (advblock.txt: 1491) -.seoliner.ru -# ||seo-sport.ru^$third-party (advblock.txt: 1488) -.seo-sport.ru -# ||senseagency.ru^$third-party (advblock.txt: 1486) -.senseagency.ru -# ||selectornews.com^$third-party (advblock.txt: 1485) -.selectornews.com -# ||scrool.ru^$third-party (advblock.txt: 1482) -.scrool.ru -# ||sb-money.ru^$third-party (advblock.txt: 1480) -.sb-money.ru -# ||saturn-plus.ru/downloads/$third-party (advblock.txt: 1479) -.saturn-plus.ru/downloads/ -# ||sampishi.ru^$third-party (advblock.txt: 1476) -.sampishi.ru -# ||s.s-ports.ru/i/$third-party (advblock.txt: 1473) -.s.s-ports.ru/i/ -# ||s.ex.region70.ru^$third-party (advblock.txt: 1470) -.s.ex.region70.ru -# ||s-pl.ru/downloads/$third-party (advblock.txt: 1469) -.s-pl.ru/downloads/ -# ||rustrackers.ru^$third-party (advblock.txt: 1466) -.rustrackers.ru -# ||ruspravda.info/resources/images/$third-party (advblock.txt: 1464) -.ruspravda.info/resources/images/ -# ||rusnabat.com^$third-party (advblock.txt: 1463) -.rusnabat.com -# ||rusmedserv.com^$third-party (advblock.txt: 1462) -.rusmedserv.com -# ||ruscontext.com^$third-party (advblock.txt: 1460) -.ruscontext.com -# ||ruscams.com^$third-party (advblock.txt: 1459) -.ruscams.com -# ||rus-porno.ru^$third-party (advblock.txt: 1458) -.rus-porno.ru -# ||rs-context.ru^$third-party (advblock.txt: 1453) -.rs-context.ru -# ||rotator.$third-party (advblock.txt: 1450) -.rotator.*. -# ||rotapost.ru^$third-party (advblock.txt: 1449) -.rotapost.ru -# ||rorer.ru^$third-party (advblock.txt: 1445) -.rorer.ru -# ||rookee.ru^$third-party (advblock.txt: 1444) -.rookee.ru -# ||rnbn.ru^$third-party (advblock.txt: 1441) -.rnbn.ru -# ||rimvoyeur.ru^$third-party (advblock.txt: 1439) -.rimvoyeur.ru -# ||richtraffic.ru^$third-party (advblock.txt: 1438) -.richtraffic.ru -# ||richpopup.com^$third-party (advblock.txt: 1437) -.richpopup.com -# ||richclick.ru^$third-party (advblock.txt: 1436) -.richclick.ru -# ||reklamnoedelo.com^$third-party (advblock.txt: 1434) -.reklamnoedelo.com -# ||reklamaster.com^$third-party (advblock.txt: 1432) -.reklamaster.com -# ||regac.ru^$third-party (advblock.txt: 1429) -.regac.ru -# ||refo.ru^$third-party (advblock.txt: 1426) -.refo.ru -# ||referalov.net^$third-party (advblock.txt: 1425) -.referalov.net -# ||refer.ru^$third-party (advblock.txt: 1424) -.refer.ru -# ||rec2000.at.ua^$third-party (advblock.txt: 1418) -.rec2000.at.ua -# ||rax.ru^$third-party (advblock.txt: 1414) -.rax.ru -# ||r1media.ru^$third-party (advblock.txt: 1405) -.r1media.ru -# ||r-money.ru^$third-party (advblock.txt: 1403) -.r-money.ru -# ||qwex.ru^$third-party (advblock.txt: 1401) -.qwex.ru -# ||putana.cz^$third-party (advblock.txt: 1398) -.putana.cz -# ||pustoty.net^$third-party (advblock.txt: 1397) -.pustoty.net -# ||puls.lv^$third-party (advblock.txt: 1395) -.puls.lv -# ||prosto.cn.ua^$third-party (advblock.txt: 1392) -.prosto.cn.ua -# ||prospero.ru^$third-party (advblock.txt: 1391) -.prospero.ru -# ||pronskaya.ru/b/$third-party (advblock.txt: 1390) -.pronskaya.ru/b/ -# ||promoblock.$third-party (advblock.txt: 1386) -.promoblock.*. -# ||promo.md^$third-party (advblock.txt: 1385) -.promo.md -# ||profit-partner.ru^$third-party (advblock.txt: 1381) -.profit-partner.ru -# ||price.ua^$third-party (advblock.txt: 1376) -.price.ua -# ||pozzitiv.ru^$third-party (advblock.txt: 1373) -.pozzitiv.ru -# ||pornula1.com^$third-party (advblock.txt: 1371) -.pornula1.com -# ||popuptraf.$third-party (advblock.txt: 1369) -.popuptraf.*. -# ||popad.ru^$third-party (advblock.txt: 1367) -.popad.ru -# ||pop-wmz.ru^$third-party (advblock.txt: 1366) -.pop-wmz.ru -# ||pop-banner.$third-party (advblock.txt: 1365) -.pop-banner.*. -# ||ponsshop.ru^$third-party (advblock.txt: 1364) -.ponsshop.ru -# ||plus10sm.ru^$third-party (advblock.txt: 1359) -.plus10sm.ru -# ||play2.biz^$third-party (advblock.txt: 1357) -.play2.biz -# ||play-in-flash.com/wp-content/$third-party (advblock.txt: 1356) -.play-in-flash.com/wp-content/ -# ||platinumcode.net^$third-party (advblock.txt: 1355) -.platinumcode.net -# ||planetaua.net^$third-party (advblock.txt: 1354) -.planetaua.net -# ||pirojok.net^$third-party (advblock.txt: 1349) -.pirojok.net -# ||pinkintim.com/image/$third-party (advblock.txt: 1348) -.pinkintim.com/image/ -# ||pingmedia.ru^$third-party (advblock.txt: 1347) -.pingmedia.ru -# ||picbay.ru^$third-party (advblock.txt: 1345) -.picbay.ru -# ||personalspy.ru^$third-party (advblock.txt: 1344) -.personalspy.ru -# ||penzensky.ru^$third-party (advblock.txt: 1343) -.penzensky.ru -# ||peel-down.ru^$third-party (advblock.txt: 1341) -.peel-down.ru -# ||pbnet.ru^$third-party (advblock.txt: 1336) -.pbnet.ru -# ||pbid.iforex.com^$third-party (advblock.txt: 1335) -.pbid.iforex.com -# ||pay-partner.ru^$third-party (advblock.txt: 1332) -.pay-partner.ru -# ||partners.vsemayki.ru^$third-party (advblock.txt: 1329) -.partners.vsemayki.ru -# ||partners.otpusk.com^$third-party (advblock.txt: 1328) -.partners.otpusk.com -# ||partner.privatbank.ua^$third-party (advblock.txt: 1326) -.partner.privatbank.ua -# ||partner.hideme.ru^$third-party (advblock.txt: 1322) -.partner.hideme.ru -# ||partner.gameboss.ru^$third-party (advblock.txt: 1321) -.partner.gameboss.ru -# ||pammru.net^$third-party (advblock.txt: 1317) -.pammru.net -# ||oxysoft.ru^$third-party (advblock.txt: 1315) -.oxysoft.ru -# ||owebmoney.ru^$third-party (advblock.txt: 1314) -.owebmoney.ru -# ||oru.ru^$third-party (advblock.txt: 1312) -.oru.ru -# ||openlinks.ru^$third-party (advblock.txt: 1310) -.openlinks.ru -# ||only4men.ru^$third-party (advblock.txt: 1307) -.only4men.ru -# ||obmenki.ru.com^$third-party (advblock.txt: 1302) -.obmenki.ru.com -# ||numbers.md^$third-party (advblock.txt: 1299) -.numbers.md -# ||nu-stars.com^$third-party (advblock.txt: 1298) -.nu-stars.com -# ||nsoft-s.com^$third-party (advblock.txt: 1297) -.nsoft-s.com -# ||novem.pl^$third-party (advblock.txt: 1295) -.novem.pl -# ||novatizer.com^$third-party (advblock.txt: 1294) -.novatizer.com -# ||nova-star.ru^$third-party (advblock.txt: 1293) -.nova-star.ru -# ||noion.ru^$third-party (advblock.txt: 1290) -.noion.ru -# ||nnn.novoteka.ru^$third-party (advblock.txt: 1289) -.nnn.novoteka.ru -# ||nimp.org^$third-party (advblock.txt: 1286) -.nimp.org -# ||ngads.com^$third-party (advblock.txt: 1284) -.ngads.com -# ||news.rin.ru^$third-party (advblock.txt: 1281) -.news.rin.ru -# ||newclick.org^$third-party (advblock.txt: 1280) -.newclick.org -# ||netporno.org^$third-party (advblock.txt: 1279) -.netporno.org -# ||neosmi.ru^$third-party (advblock.txt: 1278) -.neosmi.ru -# ||neosap.ru^$third-party (advblock.txt: 1277) -.neosap.ru -# ||nehudeyka.ru^$third-party (advblock.txt: 1275) -.nehudeyka.ru -# ||nadavi.ru^$third-party (advblock.txt: 1271) -.nadavi.ru -# ||nadavi.com.ua^$third-party (advblock.txt: 1270) -.nadavi.com.ua -# ||myragon.ru^$third-party,~popup,popup (advblock.txt: 1266) -.myragon.ru -# ||myjulia.ru^$third-party (advblock.txt: 1265) -.myjulia.ru -# ||myjane.ru^$third-party (advblock.txt: 1264) -.myjane.ru -# ||myiphone.be^$third-party (advblock.txt: 1263) -.myiphone.be -# ||myinfocenter.ru^$third-party (advblock.txt: 1262) -.myinfocenter.ru -# ||musictraffic.ru^$third-party (advblock.txt: 1259) -.musictraffic.ru -# ||multonly.ru^$third-party (advblock.txt: 1257) -.multonly.ru -# ||moviecash.ru^$third-party (advblock.txt: 1255) -.moviecash.ru -# ||moshoster.ru/images/$third-party (advblock.txt: 1253) -.moshoster.ru/images/ -# ||moogle.ru^$third-party (advblock.txt: 1250) -.moogle.ru -# ||monolit.franchia.pp.ua^$third-party (advblock.txt: 1249) -.monolit.franchia.pp.ua -# ||money-job.ru^$third-party (advblock.txt: 1246) -.money-job.ru -# ||modastro.ee^$third-party (advblock.txt: 1242) -.modastro.ee -# ||mobn.net^$third-party (advblock.txt: 1241) -.mobn.net -# ||mobi-cinema.net^$third-party (advblock.txt: 1239) -.mobi-cinema.net -# ||mnogo.ru^$third-party (advblock.txt: 1238) -.mnogo.ru -# ||mmcispartners.com^$third-party (advblock.txt: 1237) -.mmcispartners.com -# ||mirvolos.com$third-party (advblock.txt: 1234) -.mirvolos.com*. -# ||mirmaek.ru^$third-party (advblock.txt: 1233) -.mirmaek.ru -# ||miralinks.ru^$third-party (advblock.txt: 1232) -.miralinks.ru -# ||mir-games.org/uploads/$third-party (advblock.txt: 1231) -.mir-games.org/uploads/ -# ||micro-win.com^$third-party (advblock.txt: 1229) -.micro-win.com -# ||metaprofit.net^$third-party (advblock.txt: 1226) -.metaprofit.net -# ||mercatos.ru^$third-party (advblock.txt: 1224) -.mercatos.ru -# ||megawmr.ru^$third-party (advblock.txt: 1223) -.megawmr.ru -# ||megastock.ru^$third-party (advblock.txt: 1222) -.megastock.ru -# ||mega-cash.net^$third-party (advblock.txt: 1218) -.mega-cash.net -# ||mediaget.com^$third-party (advblock.txt: 1215) -.mediaget.com -# ||mediacontext.$third-party (advblock.txt: 1214) -.mediacontext.*. -# ||med.finsecret.ru^$third-party (advblock.txt: 1212) -.med.finsecret.ru -# ||mdesign.planet.ee^$third-party (advblock.txt: 1211) -.mdesign.planet.ee -# ||mben.ru^$third-party (advblock.txt: 1208) -.mben.ru -# ||mbanner.net^$third-party (advblock.txt: 1207) -.mbanner.net -# ||mazuma.ru^$third-party (advblock.txt: 1206) -.mazuma.ru -# ||mayka.kz^$third-party (advblock.txt: 1205) -.mayka.kz -# ||maxtrust.ru^$third-party (advblock.txt: 1204) -.maxtrust.ru -# ||maxdps.ru^$third-party (advblock.txt: 1203) -.maxdps.ru -# ||marketgid.com^$third-party,~popup,popup (advblock.txt: 1202) -.marketgid.com -# ||manwm.ru^$third-party (advblock.txt: 1199) -.manwm.ru -# ||mainlink.ru^$third-party (advblock.txt: 1195) -.mainlink.ru -# ||mail.banklife.ru^$third-party (advblock.txt: 1194) -.mail.banklife.ru -# ||magna.ru^$third-party (advblock.txt: 1192) -.magna.ru -# ||mabila.ua^$third-party (advblock.txt: 1191) -.mabila.ua -# ||lovn.ru^$third-party (advblock.txt: 1185) -.lovn.ru -# ||looksmile.ru^$third-party (advblock.txt: 1182) -.looksmile.ru -# ||listsites.ru^$third-party (advblock.txt: 1174) -.listsites.ru -# ||linkwm.ru^$third-party (advblock.txt: 1171) -.linkwm.ru -# ||liex.ru^$third-party (advblock.txt: 1166) -.liex.ru -# ||letssex.$third-party (advblock.txt: 1163) -.letssex.*. -# ||letsseks.$third-party (advblock.txt: 1162) -.letsseks.*. -# ||letitfile.ru/images/$third-party (advblock.txt: 1160) -.letitfile.ru/images/ -# ||letitbit-porno.com^$third-party (advblock.txt: 1159) -.letitbit-porno.com -# ||lenty.ru^$third-party (advblock.txt: 1157) -.lenty.ru -# ||laser44.ru^$third-party (advblock.txt: 1155) -.laser44.ru -# ||ladyshopping.ru^$third-party (advblock.txt: 1152) -.ladyshopping.ru -# ||kupitraff.ru^$third-party (advblock.txt: 1148) -.kupitraff.ru -# ||kritka.kz^$third-party (advblock.txt: 1144) -.kritka.kz -# ||kredit.beregu.ru^$third-party (advblock.txt: 1143) -.kredit.beregu.ru -# ||kpk.me^$third-party (advblock.txt: 1142) -.kpk.me -# ||kpdn.ru^$third-party (advblock.txt: 1141) -.kpdn.ru -# ||komok.com^$third-party (advblock.txt: 1140) -.komok.com -# ||knstats.com^$third-party (advblock.txt: 1137) -.knstats.com -# ||kinoman.$third-party (advblock.txt: 1133) -.kinoman.*. -# ||kinolib.com^$third-party (advblock.txt: 1132) -.kinolib.com -# ||kinoclub.org^$third-party (advblock.txt: 1130) -.kinoclub.org -# ||kingpeon.com^$third-party (advblock.txt: 1129) -.kingpeon.com -# ||ket.ru^$third-party (advblock.txt: 1128) -.ket.ru -# ||kakgu.ru^$third-party (advblock.txt: 1121) -.kakgu.ru -# ||kachestvoo.ru^$third-party (advblock.txt: 1118) -.kachestvoo.ru -# ||jollywallet.com^$third-party (advblock.txt: 1114) -.jollywallet.com -# ||itizer.ru^$third-party (advblock.txt: 1108) -.itizer.ru -# ||itcgin.net^$third-party (advblock.txt: 1107) -.itcgin.net -# ||iso100.ru^$third-party (advblock.txt: 1105) -.iso100.ru -# ||ipru.ru^$third-party (advblock.txt: 1103) -.ipru.ru -# ||iphones.ru^$third-party (advblock.txt: 1102) -.iphones.ru -# ||iphone10gs.com^$third-party (advblock.txt: 1101) -.iphone10gs.com -# ||ipgold.ru^$third-party (advblock.txt: 1100) -.ipgold.ru -# ||invest-pool.ru^$third-party (advblock.txt: 1097) -.invest-pool.ru -# ||intimznaki.tomsk.ru^$third-party (advblock.txt: 1096) -.intimznaki.tomsk.ru -# ||internetdengi.net^$third-party (advblock.txt: 1093) -.internetdengi.net -# ||instantcash.ru^$third-party (advblock.txt: 1091) -.instantcash.ru -# ||inoe.name^$third-party (advblock.txt: 1088) -.inoe.name -# ||inmoment.ru^$third-party (advblock.txt: 1087) -.inmoment.ru -# ||inforesell.ru^$third-party (advblock.txt: 1085) -.inforesell.ru -# ||inboobs.net^$third-party (advblock.txt: 1081) -.inboobs.net -# ||imobilco.ru^$third-party (advblock.txt: 1080) -.imobilco.ru -# ||imarker.ru^$third-party (advblock.txt: 1077) -.imarker.ru -# ||ilfumomoney.ru^$third-party (advblock.txt: 1076) -.ilfumomoney.ru -# ||id5.ru^$third-party (advblock.txt: 1073) -.id5.ru -# ||hotels24.ua^$third-party (advblock.txt: 1066) -.hotels24.ua -# ||host4media.com^$third-party (advblock.txt: 1063) -.host4media.com -# ||hitlist.ru^$third-party (advblock.txt: 1058) -.hitlist.ru -# ||hideme.ru/images/static-$third-party (advblock.txt: 1055) -.hideme.ru/images/static- -# ||hd-tube.ru^$third-party (advblock.txt: 1053) -.hd-tube.ru -# ||hata.nikolaev.ua^$third-party (advblock.txt: 1052) -.hata.nikolaev.ua -# ||goon.ru^$third-party (advblock.txt: 1043) -.goon.ru -# ||goodkukhni2.ru^$third-party (advblock.txt: 1042) -.goodkukhni2.ru -# ||goldline.pro^$third-party (advblock.txt: 1039) -.goldline.pro -# ||golden-fishka.com^$third-party (advblock.txt: 1037) -.golden-fishka.com -# ||globusgps.ru^$third-party (advblock.txt: 1033) -.globusgps.ru -# ||glamursgirl.ru^$third-party (advblock.txt: 1031) -.glamursgirl.ru -# ||girlstalks.ru^$third-party (advblock.txt: 1029) -.girlstalks.ru -# ||girl-rus.com^$third-party (advblock.txt: 1028) -.girl-rus.com -# ||gamblingbuilder.com^$third-party (advblock.txt: 1016) -.gamblingbuilder.com -# ||galaxymeet.ru^$third-party (advblock.txt: 1015) -.galaxymeet.ru -# ||fxcast.com^$third-party (advblock.txt: 1013) -.fxcast.com -# ||funnation.ru^$third-party (advblock.txt: 1011) -.funnation.ru -# ||freshmac.ru^$third-party (advblock.txt: 1007) -.freshmac.ru -# ||freehd.com.ua^$third-party (advblock.txt: 1005) -.freehd.com.ua -# ||forsage.biz^$third-party (advblock.txt: 1001) -.forsage.biz -# ||fooder.ru^$third-party (advblock.txt: 998) -.fooder.ru -# ||flirchi.ru^$third-party,~popup,popup (advblock.txt: 995) -.flirchi.ru -# ||fire-casino.com^$third-party (advblock.txt: 992) -.fire-casino.com -# ||filmcool.ru^$third-party (advblock.txt: 989) -.filmcool.ru -# ||filepost.ru^$third-party (advblock.txt: 988) -.filepost.ru -# ||file-online.ru^$third-party (advblock.txt: 987) -.file-online.ru -# ||fast-anime.ru^$third-party (advblock.txt: 979) -.fast-anime.ru -# ||fanat.kz^$third-party (advblock.txt: 974) -.fanat.kz -# ||exaccess.ru^$third-party (advblock.txt: 969) -.exaccess.ru -# ||evilfighter.ru^$third-party (advblock.txt: 966) -.evilfighter.ru -# ||esc-team.com^$third-party (advblock.txt: 962) -.esc-team.com -# ||eogli.org^$third-party (advblock.txt: 958) -.eogli.org -# ||eogli.com^$third-party (advblock.txt: 957) -.eogli.com -# ||eogli.biz^$third-party (advblock.txt: 956) -.eogli.biz -# ||elfmoney.ru^$third-party (advblock.txt: 953) -.elfmoney.ru -# ||e-mint.ru^$third-party (advblock.txt: 948) -.e-mint.ru -# ||drakonas.eu^$third-party (advblock.txt: 943) -.drakonas.eu -# ||dostavka.ru^$third-party (advblock.txt: 937) -.dostavka.ru -# ||dhgate.com^$third-party (advblock.txt: 932) -.dhgate.com -# ||demoreklama.net.ua^$third-party (advblock.txt: 928) -.demoreklama.net.ua -# ||ddkdr.ru^$third-party (advblock.txt: 926) -.ddkdr.ru -# ||cyberstyle.ru^$third-party (advblock.txt: 923) -.cyberstyle.ru -# ||crutop.nu^$third-party (advblock.txt: 917) -.crutop.nu -# ||creara-media.ru^$third-party (advblock.txt: 916) -.creara-media.ru -# ||corporative.ru^$third-party (advblock.txt: 911) -.corporative.ru -# ||clx.ru^$third-party (advblock.txt: 903) -.clx.ru -# ||clickconvert.ru^$third-party (advblock.txt: 899) -.clickconvert.ru -# ||clickbux.ru^$third-party (advblock.txt: 897) -.clickbux.ru -# ||city-advertising.ru^$third-party (advblock.txt: 892) -.city-advertising.ru -# ||citilink.ru^$third-party (advblock.txt: 891) -.citilink.ru -# ||cinemateka3d.ru^$third-party (advblock.txt: 890) -.cinemateka3d.ru -# ||casino-kaza.com^$third-party (advblock.txt: 883) -.casino-kaza.com -# ||casas-mario.ru^$third-party (advblock.txt: 881) -.casas-mario.ru -# ||captainsofcrush.ru^$third-party (advblock.txt: 879) -.captainsofcrush.ru -# ||c.tbex.ru^$third-party (advblock.txt: 878) -.c.tbex.ru -# ||buxify-v2.com^$third-party (advblock.txt: 874) -.buxify-v2.com -# ||brothers-company.ru^$third-party (advblock.txt: 870) -.brothers-company.ru -# ||boobzi.com^$third-party (advblock.txt: 867) -.boobzi.com -# ||bongo-shop.com^$third-party (advblock.txt: 866) -.bongo-shop.com -# ||bnfest.com^$third-party (advblock.txt: 863) -.bnfest.com -# ||blogun.ru^$third-party (advblock.txt: 858) -.blogun.ru -# ||bizua.com^$third-party (advblock.txt: 857) -.bizua.com -# ||bigbord.net^$third-party (advblock.txt: 853) -.bigbord.net -# ||be-mine.ru^$third-party (advblock.txt: 848) -.be-mine.ru -# ||basketfan.my1.ru^$third-party (advblock.txt: 841) -.basketfan.my1.ru -# ||banage.ru^$third-party (advblock.txt: 832) -.banage.ru -# ||baks-mail.ru^$third-party (advblock.txt: 830) -.baks-mail.ru -# ||babyclick.ru^$third-party (advblock.txt: 828) -.babyclick.ru -# ||azbukasexa.ru^$third-party (advblock.txt: 817) -.azbukasexa.ru -# ||azartcash.com^$third-party (advblock.txt: 816) -.azartcash.com -# ||avazone.ru^$third-party (advblock.txt: 812) -.avazone.ru -# ||ava.com.ua^$third-party (advblock.txt: 811) -.ava.com.ua -# ||autoua.com^$third-party (advblock.txt: 810) -.autoua.com -# ||autoreg.ru^$third-party (advblock.txt: 808) -.autoreg.ru -# ||astroinf.ru^$third-party (advblock.txt: 805) -.astroinf.ru -# ||askmarket.net^$third-party (advblock.txt: 803) -.askmarket.net -# ||arsfu.ru^$third-party (advblock.txt: 800) -.arsfu.ru -# ||ap-jam.com^$third-party (advblock.txt: 798) -.ap-jam.com -# ||anyreads.com^$third-party (advblock.txt: 797) -.anyreads.com -# ||antmoney.com^$third-party (advblock.txt: 794) -.antmoney.com -# ||anons.greenmama.ru^$third-party (advblock.txt: 792) -.anons.greenmama.ru -# ||anews.cc^$third-party (advblock.txt: 791) -.anews.cc -# ||alpari.ru/static/$third-party (advblock.txt: 787) -.alpari.ru/static/ -# ||allwomens.ru^$third-party (advblock.txt: 786) -.allwomens.ru -# ||allsiemens.com^$third-party (advblock.txt: 784) -.allsiemens.com -# ||allnokia.ru^$third-party (advblock.txt: 783) -.allnokia.ru -# ||allnewspoint.com^$third-party (advblock.txt: 782) -.allnewspoint.com -# ||akavita.com^$third-party (advblock.txt: 779) -.akavita.com -# ||agrotv.ru^$third-party (advblock.txt: 777) -.agrotv.ru -# ||agentbilet.com/sites/$third-party (advblock.txt: 775) -.agentbilet.com/sites/ -# ||affiliate.vsemayki.ru^$third-party (advblock.txt: 773) -.affiliate.vsemayki.ru -# ||advertpro.ru^$third-party (advblock.txt: 767) -.advertpro.ru -# ||advertpro.com^$third-party (advblock.txt: 766) -.advertpro.com -# ||admimsy.com^$third-party (advblock.txt: 752) -.admimsy.com -# ||addnow.ru^$third-party (advblock.txt: 744) -.addnow.ru -# ||activiks.ru^$third-party (advblock.txt: 728) -.activiks.ru -# ||abcfilm.org^$third-party (advblock.txt: 724) -.abcfilm.org -# ||9fine.ru^$third-party (advblock.txt: 719) -.9fine.ru -# ||3rs.ru^$third-party (advblock.txt: 713) -.3rs.ru -# ||3d-ero.com^$third-party (advblock.txt: 712) -.3d-ero.com -# ||2da2.ru^$third-party (advblock.txt: 710) -.2da2.ru -# ||2baksa.net^$third-party (advblock.txt: 709) -.2baksa.net -# ||24new.ru^$third-party (advblock.txt: 707) -.24new.ru -# ||1popov.ru^$third-party (advblock.txt: 704) -.1popov.ru -# ||003.ua^$third-party (advblock.txt: 701) -.003.ua -# ||zavetiss.ru^$third-party (advblock.txt: 674) -.zavetiss.ru -# ||com/js/check_blocks.js|$third-party (advblock.txt: 618) -# ||biz/banner/$third-party (advblock.txt: 614) -# /vse-pricheski.$third-party (advblock.txt: 595) -/(.*/)?vse-pricheski\. -vse-pricheski.*. -# /viewt.js$third-party (advblock.txt: 588) -/(.*/)?viewt\.js -viewt.js*. -# /t.bbn?$third-party (advblock.txt: 550) -/(.*/)?t\.bbn\? -# /popout.php?id=$third-party (advblock.txt: 513) -/(.*/)?popout\.php\?id= -# /jstbt.js|$third-party (advblock.txt: 489) -/(.*/)?jstbt\.js$ -jstbt.js -# /js/slider.php?id=$third-party (advblock.txt: 487) -/(.*/)?js/slider\.php\?id= -# /js/popup.php?id=$third-party (advblock.txt: 485) -/(.*/)?js/popup\.php\?id= -# /js/peeldown.php?id=$third-party (advblock.txt: 484) -/(.*/)?js/peeldown\.php\?id= -# /js/if.php?id=$third-party (advblock.txt: 483) -/(.*/)?js/if\.php\?id= -# /block_view.php?bid=$third-party (advblock.txt: 407) -/(.*/)?block_view\.php\?bid= -# /api/topl/*/*.js$third-party (advblock.txt: 386) -/(.*/)?api/topl/.*/.*\.js -# ||contactsin.mobi^$third-party,~popup,popup (advblock.txt: 133) -.contactsin.mobi -# ||adv859672.ru^$third-party,~popup,popup (advblock.txt: 120) -.adv859672.ru -# ||adv758968.ru^$third-party,~popup,popup (advblock.txt: 119) -.adv758968.ru -# ||adv679854.ru^$third-party,~popup,popup (advblock.txt: 118) -.adv679854.ru -# ||adv578125.ru^$third-party,~popup,popup (advblock.txt: 117) -.adv578125.ru -# ||adv481895.ru^$third-party,~popup,popup (advblock.txt: 116) -.adv481895.ru -# ||adv457895.ru^$third-party,~popup,popup (advblock.txt: 115) -.adv457895.ru -# ||adv225489.ru^$third-party,~popup,popup (advblock.txt: 114) -.adv225489.ru -# ||social-leads.ru^$third-party,~popup,popup (advblock.txt: 102) -.social-leads.ru -# ||compareiseries.in^$third-party,~popup,popup (advblock.txt: 76) -.compareiseries.in -# ||adserv01.ru^$third-party,~popup,popup (advblock.txt: 65) -.adserv01.ru -# ||actionpay.ru^$third-party,~popup,popup (advblock.txt: 64) -.actionpay.ru -# ||mrskin.com/data/mrskincash/$third-party (easylist.txt: 36144) -.mrskin.com/data/mrskincash/ -# ||regnow.img.digitalriver.com/vendor/37587/ud_box$third-party (easylist.txt: 34090) -.regnow.img.digitalriver.com/vendor/37587/ud_box -# ||xxxoh.com/number/$third-party (easylist.txt: 31313) -.xxxoh.com/number/ -# ||xnxx.com^$third-party (easylist.txt: 31310) -.xnxx.com -# ||xlgirls.com/banner/$third-party (easylist.txt: 31309) -.xlgirls.com/banner/ -# ||xcabin.net/b/$third-party (easylist.txt: 31308) -.xcabin.net/b/ -# ||wendi.com/ipt/$third-party (easylist.txt: 31303) -.wendi.com/ipt/ -# ||webmaster.erotik.com^$third-party (easylist.txt: 31302) -.webmaster.erotik.com -# ||watchmygf.com/preview/$third-party (easylist.txt: 31299) -.watchmygf.com/preview/ -# ||vzzk.com/uploads/banners/$third-party (easylist.txt: 31297) -.vzzk.com/uploads/banners/ -# ||vserv.bc.cdn.bitgravity.com^$third-party (easylist.txt: 31296) -.vserv.bc.cdn.bitgravity.com -# ||visit-x.net/promo/$third-party (easylist.txt: 31293) -.visit-x.net/promo/ -# ||vidz.com/promo_banner/$third-party (easylist.txt: 31289) -.vidz.com/promo_banner/ -# ||vectorpastel.com^$third-party (easylist.txt: 31288) -.vectorpastel.com -# ||upsellit.com/custom/$third-party (easylist.txt: 31285) -.upsellit.com/custom/ -# ||trader.erosdlz.com^$third-party (easylist.txt: 31276) -.trader.erosdlz.com -# ||track.xtrasize.nl^$third-party (easylist.txt: 31275) -.track.xtrasize.nl -# ||tours.imlive.com^$third-party (easylist.txt: 31274) -.tours.imlive.com -# ||tour.cum-covered-gfs.com^$third-party (easylist.txt: 31273) -.tour.cum-covered-gfs.com -# ||tools.gfcash.com^$third-party (easylist.txt: 31272) -.tools.gfcash.com -# ||tools.bongacams.com^$third-party (easylist.txt: 31271) -.tools.bongacams.com -# ||tlavideo.com/affiliates/$third-party (easylist.txt: 31270) -.tlavideo.com/affiliates/ -# ||thumbs.sunporno.com^$third-party (easylist.txt: 31268) -.thumbs.sunporno.com -# ||target.vivid.com^$third-party (easylist.txt: 31264) -.target.vivid.com -# ||streamen.com/exports/$third-party (easylist.txt: 31259) -.streamen.com/exports/ -# ||spacash.com/popup/$third-party (easylist.txt: 31255) -.spacash.com/popup/ -# ||snrcash.com/profilerotator/$third-party (easylist.txt: 31253) -.snrcash.com/profilerotator/ -# ||smartmovies.net/promo_$third-party (easylist.txt: 31251) -.smartmovies.net/promo_ -# ||slickcash.com/flash/subtitles_$third-party (easylist.txt: 31250) -.slickcash.com/flash/subtitles_ -# ||sleepgalleries.com/recips/$third-party (easylist.txt: 31249) -.sleepgalleries.com/recips/ -# ||shinypics.com/blogbanner/$third-party (easylist.txt: 31247) -.shinypics.com/blogbanner/ -# ||shared.juicybucks.com^$third-party (easylist.txt: 31244) -.shared.juicybucks.com -# ||sexycams.com/exports/$third-party (easylist.txt: 31242) -.sexycams.com/exports/ -# ||sexy.fling.com^$third-party (easylist.txt: 31241) -.sexy.fling.com -# ||sextronix.com/images/$third-party (easylist.txt: 31239) -.sextronix.com/images/ -# ||sextronix.com/b/$third-party (easylist.txt: 31238) -.sextronix.com/b/ -# ||server140.com^$third-party (easylist.txt: 31235) -.server140.com -# ||screencapturewidget.aebn.net^$third-party (easylist.txt: 31234) -.screencapturewidget.aebn.net -# ||sabin.free.fr^$third-party (easylist.txt: 31229) -.sabin.free.fr -# ||russkoexxx.com/ban/$third-party (easylist.txt: 31227) -.russkoexxx.com/ban/ -# ||ruleclaim.web.fc2.com^$third-party (easylist.txt: 31225) -.ruleclaim.web.fc2.com -# ||rss.dtiserv.com^$third-party (easylist.txt: 31224) -.rss.dtiserv.com -# ||rough-sex-in-russia.com^*/webmaster/$third-party (easylist.txt: 31223) -.rough-sex-in-russia.com/.*/webmaster/ -# ||resimler.randevum.com^$third-party (easylist.txt: 31220) -.resimler.randevum.com -# ||rawtubelive.com/exports/$third-party (easylist.txt: 31217) -.rawtubelive.com/exports/ -# ||rabbitporno.com/iframes/$third-party (easylist.txt: 31216) -.rabbitporno.com/iframes/ -# ||pussycash.com/content/banners/$third-party (easylist.txt: 31213) -.pussycash.com/content/banners/ -# ||punterlink.co.uk/images/storage/siteban$third-party (easylist.txt: 31212) -.punterlink.co.uk/images/storage/siteban -# ||ptcdn.mbicash.nl^$third-party (easylist.txt: 31211) -.ptcdn.mbicash.nl -# ||promos.wealthymen.com^$third-party (easylist.txt: 31209) -.promos.wealthymen.com -# ||promos.meetlocals.com^$third-party (easylist.txt: 31208) -.promos.meetlocals.com -# ||promos.gpniches.com^$third-party (easylist.txt: 31207) -.promos.gpniches.com -# ||promo1.webcams.nl^$third-party (easylist.txt: 31206) -.promo1.webcams.nl -# ||promo.pegcweb.com^$third-party (easylist.txt: 31205) -.promo.pegcweb.com -# ||promo.cams.com^$third-party (easylist.txt: 31204) -.promo.cams.com -# ||promo.blackcrush.com^$third-party (easylist.txt: 31203) -.promo.blackcrush.com -# ||profile.bharatmatrimony.com^$third-party (easylist.txt: 31202) -.profile.bharatmatrimony.com -# ||private.camz.$third-party (easylist.txt: 31199) -.private.camz.*. -# ||prettyincash.com/premade/$third-party (easylist.txt: 31196) -.prettyincash.com/premade/ -# ||potd.onlytease.com^$third-party (easylist.txt: 31195) -.potd.onlytease.com -# ||pornravage.com/notification/$third-party (easylist.txt: 31191) -.pornravage.com/notification/ -# ||pop6.com/banners/$third-party (easylist.txt: 31185) -.pop6.com/banners/ -# ||pop6.adultfriendfinder.com^$third-party (easylist.txt: 31184) -.pop6.adultfriendfinder.com -# ||pod.xpress.com^$third-party (easylist.txt: 31183) -.pod.xpress.com -# ||pod.manplay.com^$third-party (easylist.txt: 31182) -.pod.manplay.com -# ||pinkvisualgames.com/?revid=$third-party (easylist.txt: 31180) -.pinkvisualgames.com/\?revid= -# ||pcash.globalmailer5.com^$third-party (easylist.txt: 31179) -.pcash.globalmailer5.com -# ||partners.yobt.tv^$third-party (easylist.txt: 31177) -.partners.yobt.tv -# ||partners.yobt.com^$third-party (easylist.txt: 31176) -.partners.yobt.com -# ||partners.heart2heartnetwork.$third-party (easylist.txt: 31174) -.partners.heart2heartnetwork.*. -# ||partner.loveplanet.ru^$third-party (easylist.txt: 31173) -.partner.loveplanet.ru -# ||outils.f5biz.com^$third-party (easylist.txt: 31172) -.outils.f5biz.com -# ||otcash.com/images/$third-party (easylist.txt: 31171) -.otcash.com/images/ -# ||openadultdirectory.com/banner-$third-party (easylist.txt: 31169) -.openadultdirectory.com/banner- -# ||odnidoma.com/ban/$third-party (easylist.txt: 31168) -.odnidoma.com/ban/ -# ||nuvidp.com^$third-party (easylist.txt: 31167) -.nuvidp.com -# ||nude.hu/html/$third-party (easylist.txt: 31165) -.nude.hu/html/ -# ||nubiles.net/webmasters/promo/$third-party (easylist.txt: 31164) -.nubiles.net/webmasters/promo/ -# ||naughtycdn.com/public/iframes/$third-party (easylist.txt: 31162) -.naughtycdn.com/public/iframes/ -# ||natuko-miracle.com/banner/$third-party (easylist.txt: 31161) -.natuko-miracle.com/banner/ -# ||naked.com/promos/$third-party (easylist.txt: 31159) -.naked.com/promos/ -# ||mysexjourney.com/revenue/$third-party (easylist.txt: 31158) -.mysexjourney.com/revenue/ -# ||mykocam.com/js/feeds.js$third-party (easylist.txt: 31157) -.mykocam.com/js/feeds\.js -# ||myfreakygf.com/www/click/$third-party (easylist.txt: 31156) -.myfreakygf.com/www/click/ -# ||mycams.com/freechat.php?$third-party (easylist.txt: 31153) -.mycams.com/freechat\.php\? -# ||my-dirty-hobby.com/?sub=$third-party (easylist.txt: 31152) -.my-dirty-hobby.com/\?sub= -# ||ms.wsex.com^$third-party (easylist.txt: 31151) -.ms.wsex.com -# ||mrvids.com/network/$third-party (easylist.txt: 31150) -.mrvids.com/network/ -# ||mrskincdn.com^*/flash/aff/$third-party (easylist.txt: 31149) -.mrskincdn.com/.*/flash/aff/ -# ||metartmoney.met-art.com^$third-party (easylist.txt: 31145) -.metartmoney.met-art.com -# ||metartmoney.com^$third-party (easylist.txt: 31144) -.metartmoney.com -# ||megacash.warpnet.com.br^$third-party (easylist.txt: 31143) -.megacash.warpnet.com.br -# ||media.pussycash.com^$third-party (easylist.txt: 31142) -.media.pussycash.com -# ||media.mykodial.com^$third-party (easylist.txt: 31141) -.media.mykodial.com -# ||media.mykocam.com^$third-party (easylist.txt: 31140) -.media.mykocam.com -# ||media.match.com^$third-party (easylist.txt: 31139) -.media.match.com -# ||media.eurolive.com^$third-party (easylist.txt: 31138) -.media.eurolive.com -# ||match.com/landing/$third-party (easylist.txt: 31137) -.match.com/landing/ -# ||map.pop6.com^$third-party (easylist.txt: 31136) -.map.pop6.com -# ||manhunt.net/?dm=$third-party (easylist.txt: 31135) -.manhunt.net/\?dm= -# ||manager.koocash.fr^$third-party (easylist.txt: 31134) -.manager.koocash.fr -# ||loveme.com^$third-party (easylist.txt: 31132) -.loveme.com -# ||links.freeones.com^$third-party (easylist.txt: 31127) -.links.freeones.com -# ||layers.spacash.com^$third-party (easylist.txt: 31125) -.layers.spacash.com -# ||latinteencash.com/potd/$third-party (easylist.txt: 31124) -.latinteencash.com/potd/ -# ||kenny-glenn.net^*/longbanner_$third-party (easylist.txt: 31120) -.kenny-glenn.net/.*/longbanner_ -# ||justcutegirls.com/banners/$third-party (easylist.txt: 31118) -.justcutegirls.com/banners/ -# ||just-nude.com/images/ban_$third-party (easylist.txt: 31117) -.just-nude.com/images/ban_ -# ||js.picsomania.info^$third-party (easylist.txt: 31116) -.js.picsomania.info -# ||ivitrine.buscape.com^$third-party (easylist.txt: 31115) -.ivitrine.buscape.com -# ||images.elenasmodels.com/Upload/$third-party (easylist.txt: 31111) -.images.elenasmodels.com/Upload/ -# ||image.nsk-sys.com^$third-party (easylist.txt: 31110) -.image.nsk-sys.com -# ||image.cecash.com^$third-party (easylist.txt: 31109) -.image.cecash.com -# ||iframes.hustler.com^$third-party (easylist.txt: 31106) -.iframes.hustler.com -# ||iframe.adultfriendfinder.com^$third-party (easylist.txt: 31105) -.iframe.adultfriendfinder.com -# ||hotsocialz.com^$third-party (easylist.txt: 31104) -.hotsocialz.com -# ||hosting24.com/images/banners/$third-party (easylist.txt: 31100) -.hosting24.com/images/banners/ -# ||hosted.x-art.com/potd$third-party (easylist.txt: 31099) -.hosted.x-art.com/potd -# ||hornypharaoh.com/banner_$third-party (easylist.txt: 31097) -.hornypharaoh.com/banner_ -# ||highrollercams.com/widgets/$third-party (easylist.txt: 31093) -.highrollercams.com/widgets/ -# ||graphics.streamray.com^*/cams_live.swf$third-party (easylist.txt: 31086) -.graphics.streamray.com/.*/cams_live\.swf -# ||go2cdn.org/brand/$third-party (easylist.txt: 31084) -.go2cdn.org/brand/ -# ||geobanner.sexfinder.com^$third-party (easylist.txt: 31080) -.geobanner.sexfinder.com -# ||geobanner.fuckbookhookups.com^$third-party (easylist.txt: 31079) -.geobanner.fuckbookhookups.com -# ||geobanner.blacksexmatch.com^$third-party (easylist.txt: 31078) -.geobanner.blacksexmatch.com -# ||geo.camazon.com^$third-party (easylist.txt: 31073) -.geo.camazon.com -# ||gateway-banner.eravage.com^$third-party (easylist.txt: 31072) -.gateway-banner.eravage.com -# ||gallery.deskbabes.com^*.php?dir=*&ids=$third-party (easylist.txt: 31070) -.gallery.deskbabes.com/.*\.php\?dir=.*&ids= -# ||galeriaseroticas.xpg.com.br^$third-party (easylist.txt: 31068) -.galeriaseroticas.xpg.com.br -# ||gagthebitch.com/track/$third-party (easylist.txt: 31067) -.gagthebitch.com/track/ -# ||fuckhub.net^*?pid=$third-party (easylist.txt: 31066) -.fuckhub.net/.*\?pid= -# ||freebbw.com/webcams.html$third-party (easylist.txt: 31061) -.freebbw.com/webcams\.html -# ||femjoy.com/bnrs/$third-party (easylist.txt: 31055) -.femjoy.com/bnrs/ -# ||fansign.streamray.com^$third-party (easylist.txt: 31049) -.fansign.streamray.com -# ||exposedteencelebs.com/banner/$third-party (easylist.txt: 31046) -.exposedteencelebs.com/banner/ -# ||exposedemos.com/track/$third-party (easylist.txt: 31045) -.exposedemos.com/track/ -# ||evilangel.com/static/$third-party (easylist.txt: 31044) -.evilangel.com/static/ -# ||escortforum.net/images/banners/$third-party (easylist.txt: 31041) -.escortforum.net/images/banners/ -# ||erotikdeal.com/?ref=$third-party (easylist.txt: 31039) -.erotikdeal.com/\?ref= -# ||dvdbox.com/promo/$third-party (easylist.txt: 31037) -.dvdbox.com/promo/ -# ||dump1.no-ip.biz^$third-party (easylist.txt: 31036) -.dump1.no-ip.biz -# ||dom2xxx.com/ban/$third-party (easylist.txt: 31034) -.dom2xxx.com/ban/ -# ||ddfcash.com/iframes/$third-party (easylist.txt: 31028) -.ddfcash.com/iframes/ -# ||datefree.com^$third-party (easylist.txt: 31027) -.datefree.com -# ||cs.exposedontape.com^$third-party (easylist.txt: 31024) -.cs.exposedontape.com -# ||cs.celebbusters.com^$third-party (easylist.txt: 31023) -.cs.celebbusters.com -# ||cp.intl.match.com^$third-party (easylist.txt: 31019) -.cp.intl.match.com -# ||core.queerclick.com^$third-party (easylist.txt: 31018) -.core.queerclick.com -# ||contentcache-a.akamaihd.net^$third-party (easylist.txt: 31017) -.contentcache-a.akamaihd.net -# ||content.liveuniverse.com^$third-party (easylist.txt: 31016) -.content.liveuniverse.com -# ||cockfortwo.com/track/$third-party (easylist.txt: 31015) -.cockfortwo.com/track/ -# ||clipjunkie.com/sftopbanner$third-party (easylist.txt: 31012) -.clipjunkie.com/sftopbanner -# ||clickz.lonelycheatingwives.com^$third-party (easylist.txt: 31011) -.clickz.lonelycheatingwives.com -# ||click.kink.com^$third-party (easylist.txt: 31010) -.click.kink.com -# ||click.absoluteagency.com^$third-party (easylist.txt: 31009) -.click.absoluteagency.com -# ||cdnjke.com^$third-party (easylist.txt: 31006) -.cdnjke.com -# ||cdncache2-a.akamaihd.net^$third-party (easylist.txt: 31005) -.cdncache2-a.akamaihd.net -# ||cash.femjoy.com^$third-party (easylist.txt: 31003) -.cash.femjoy.com -# ||camsrule.com/exports/$third-party (easylist.txt: 31001) -.camsrule.com/exports/ -# ||cams.spacash.com^$third-party (easylist.txt: 31000) -.cams.spacash.com -# ||cams.enjoy.be^$third-party (easylist.txt: 30999) -.cams.enjoy.be -# ||cams.com/p/cams/cpcs/streaminfo.cgi?$third-party (easylist.txt: 30998) -.cams.com/p/cams/cpcs/streaminfo\.cgi\? -# ||cams.com/go/$third-party (easylist.txt: 30997) -.cams.com/go/ -# ||camelmedia.net/thumbs/$third-party (easylist.txt: 30996) -.camelmedia.net/thumbs/ -# ||cache.worldfriends.tv^$third-party (easylist.txt: 30995) -.cache.worldfriends.tv -# ||bullz-eye.com/pictureofday/$third-party (easylist.txt: 30994) -.bullz-eye.com/pictureofday/ -# ||bongacash.com/tools/promo.php$third-party (easylist.txt: 30988) -.bongacash.com/tools/promo\.php -# ||bbp.brazzers.com^$third-party (easylist.txt: 30981) -.bbp.brazzers.com -# ||bans.bride.ru^$third-party (easylist.txt: 30980) -.bans.bride.ru -# ||banners.webcams.com^$third-party (easylist.txt: 30978) -.banners.webcams.com -# ||banners.videosecrets.com^$third-party (easylist.txt: 30977) -.banners.videosecrets.com -# ||banners.rushcommerce.com^$third-party (easylist.txt: 30976) -.banners.rushcommerce.com -# ||banners.rude.com^$third-party (easylist.txt: 30975) -.banners.rude.com -# ||banners.penthouse.com^$third-party (easylist.txt: 30974) -.banners.penthouse.com -# ||banners.payserve.com^$third-party (easylist.txt: 30973) -.banners.payserve.com -# ||banners.passiondollars.com^$third-party (easylist.txt: 30972) -.banners.passiondollars.com -# ||banners.passion.com^$third-party (easylist.txt: 30971) -.banners.passion.com -# ||banners.outpersonals.com^$third-party (easylist.txt: 30970) -.banners.outpersonals.com -# ||banners.nostringsattached.com^$third-party (easylist.txt: 30969) -.banners.nostringsattached.com -# ||banners.fuckbookhookups.com^$third-party (easylist.txt: 30968) -.banners.fuckbookhookups.com -# ||banners.fastcupid.com^$third-party (easylist.txt: 30967) -.banners.fastcupid.com -# ||banners.blacksexmatch.com^$third-party (easylist.txt: 30966) -.banners.blacksexmatch.com -# ||banners.amigos.com^$third-party (easylist.txt: 30965) -.banners.amigos.com -# ||banners.alt.com^$third-party (easylist.txt: 30964) -.banners.alt.com -# ||banners.adultfriendfinder.com^$third-party (easylist.txt: 30963) -.banners.adultfriendfinder.com -# ||banners*.spacash.com^$third-party (easylist.txt: 30962) -.banners*./.*\.spacash\.com[^\w%.-] -.banners*.spacash.com -# ||banner.themediaplanets.com^$third-party (easylist.txt: 30961) -.banner.themediaplanets.com -# ||banner.resulthost.org^$third-party (easylist.txt: 30960) -.banner.resulthost.org -# ||banner.gasuki.com^$third-party (easylist.txt: 30959) -.banner.gasuki.com -# ||banner.69stream.com^$third-party (easylist.txt: 30958) -.banner.69stream.com -# ||babes.picrush.com^$third-party (easylist.txt: 30957) -.babes.picrush.com -# ||b.turbo.az^$third-party (easylist.txt: 30956) -.b.turbo.az -# ||atlasfiles.com^*/sp3_ep.js$third-party (easylist.txt: 30954) -.atlasfiles.com/.*/sp3_ep\.js -# ||amateurseite.com/banner/$third-party (easylist.txt: 30946) -.amateurseite.com/banner/ -# ||amateur.amarotic.com^$third-party (easylist.txt: 30945) -.amateur.amarotic.com -# ||amarotic.com^*?wmid=*&kamid=*&wsid=$third-party (easylist.txt: 30944) -.amarotic.com/.*\?wmid=.*&kamid=.*&wsid= -# ||amarotic.com/rotation/layer/chatpage/$third-party (easylist.txt: 30943) -.amarotic.com/rotation/layer/chatpage/ -# ||amarotic.com/Banner/$third-party (easylist.txt: 30942) -.amarotic.com/Banner/ -# ||alt.com/go/$third-party (easylist.txt: 30941) -.alt.com/go/ -# ||affiliates.franchisegator.com^$third-party (easylist.txt: 30938) -.affiliates.franchisegator.com -# ||affiliates.easydate.biz^$third-party (easylist.txt: 30937) -.affiliates.easydate.biz -# ||affiliates.cupidplc.com^$third-party (easylist.txt: 30936) -.affiliates.cupidplc.com -# ||affiliate.godaddy.com^$third-party (easylist.txt: 30935) -.affiliate.godaddy.com -# ||affiliate.dtiserv.com^$third-party (easylist.txt: 30934) -.affiliate.dtiserv.com -# ||affiliate.burn-out.tv^$third-party (easylist.txt: 30933) -.affiliate.burn-out.tv -# ||aff-jp.exshot.com^$third-party (easylist.txt: 30932) -.aff-jp.exshot.com -# ||aff-jp.dxlive.com^$third-party (easylist.txt: 30931) -.aff-jp.dxlive.com -# ||aebn.net/feed/$third-party (easylist.txt: 30930) -.aebn.net/feed/ -# ||adultfriendfinder.com/piclist?$third-party (easylist.txt: 30927) -.adultfriendfinder.com/piclist\? -# ||adultfriendfinder.com/javascript/$third-party (easylist.txt: 30926) -.adultfriendfinder.com/javascript/ -# ||adultfriendfinder.com/images/banners/$third-party (easylist.txt: 30925) -.adultfriendfinder.com/images/banners/ -# ||adultfriendfinder.com/go/$third-party (easylist.txt: 30924) -.adultfriendfinder.com/go/ -# ||adultdvd.com/plugins/*/store.html$third-party (easylist.txt: 30922) -.adultdvd.com/plugins/.*/store\.html -# ||adtools2.amakings.com^$third-party (easylist.txt: 30921) -.adtools2.amakings.com -# ||adtools.gossipkings.com^$third-party (easylist.txt: 30920) -.adtools.gossipkings.com -# ||adsrv.bangbros.com^$third-party (easylist.txt: 30919) -.adsrv.bangbros.com -# ||ads.contentabc.com^$third-party (easylist.txt: 30917) -.ads.contentabc.com -# ||adb.fling.com^$third-party (easylist.txt: 30916) -.adb.fling.com -# ||ad.traffmonster.info^$third-party (easylist.txt: 30915) -.ad.traffmonster.info -# ||ad.favod.net^$third-party (easylist.txt: 30913) -.ad.favod.net -# ||a.sucksex.com^$third-party (easylist.txt: 30911) -.a.sucksex.com -# ||88.85.77.94/rotation/$third-party (easylist.txt: 30909) -.88.85.77.94/rotation/ -# ||4tube.com/iframe/$third-party (easylist.txt: 30906) -.4tube.com/iframe/ -# ||chronophotographie.science^$third-party (easylist.txt: 30761) -.chronophotographie.science -# ||zmh.zope.net^$third-party (easylist.txt: 30756) -.zmh.zope.net -# ||zergnet.com^$third-party (easylist.txt: 30748) -.zergnet.com -# ||zazzle.com^*?rf$third-party (easylist.txt: 30747) -.zazzle.com/.*\?rf -# ||zazzle.com/utl/getpanel$third-party (easylist.txt: 30746) -.zazzle.com/utl/getpanel -# ||youinsure.co.za/frame/$third-party (easylist.txt: 30744) -.youinsure.co.za/frame/ -# ||yieldmanager.edgesuite.net^$third-party (easylist.txt: 30734) -.yieldmanager.edgesuite.net -# ||xml.exactseek.com/cgi-bin/js-feed.cgi?$third-party (easylist.txt: 30728) -.xml.exactseek.com/cgi-bin/js-feed\.cgi\? -# ||xgaming.com/rotate*.php?$third-party (easylist.txt: 30725) -.xgaming.com/rotate.*\.php\? -# ||xcams.com/livecams/pub_collante/script.php?$third-party (easylist.txt: 30724) -.xcams.com/livecams/pub_collante/script\.php\? -# ||wupload.com/referral/$third-party (easylist.txt: 30722) -.wupload.com/referral/ -# ||wsockd.com^$third-party (easylist.txt: 30716) -.wsockd.com -# ||ws.amazon.*/widgets/$third-party (easylist.txt: 30715) -.ws.amazon.*./(.*/)?widgets/ -# ||wrapper.ign.com^$third-party (easylist.txt: 30714) -.wrapper.ign.com -# ||wishlistproducts.com/affiliatetools/$third-party (easylist.txt: 30705) -.wishlistproducts.com/affiliatetools/ -# ||widgets.solaramerica.org^$third-party (easylist.txt: 30701) -.widgets.solaramerica.org -# ||widgets.progrids.com^$third-party (easylist.txt: 30699) -.widgets.progrids.com -# ||widgets.privateproperty.com.ng^$third-party (easylist.txt: 30698) -.widgets.privateproperty.com.ng -# ||widgets.mozo.com.au^$third-party (easylist.txt: 30697) -.widgets.mozo.com.au -# ||widgets.mobilelocalnews.com^$third-party (easylist.txt: 30696) -.widgets.mobilelocalnews.com -# ||widgets.itunes.apple.com^*&affiliate_id=$third-party (easylist.txt: 30695) -.widgets.itunes.apple.com/.*&affiliate_id= -# ||widgets.adviceiq.com^$third-party (easylist.txt: 30693) -.widgets.adviceiq.com -# ||widgetcf.adviceiq.com^$third-party (easylist.txt: 30692) -.widgetcf.adviceiq.com -# ||widget.scoutpa.com^$third-party (easylist.txt: 30687) -.widget.scoutpa.com -# ||widget.jobberman.com^$third-party (easylist.txt: 30684) -.widget.jobberman.com -# ||widget.imshopping.com^$third-party (easylist.txt: 30683) -.widget.imshopping.com -# ||widget.cheki.com.ng^$third-party (easylist.txt: 30681) -.widget.cheki.com.ng -# ||webdev.co.zw/images/banners/$third-party (easylist.txt: 30676) -.webdev.co.zw/images/banners/ -# ||web2feel.com/images/$third-party (easylist.txt: 30675) -.web2feel.com/images/ -# ||wealthyrush.com^*/banners/$third-party (easylist.txt: 30672) -.wealthyrush.com/.*/banners/ -# ||watch-naruto.tv/images/$third-party (easylist.txt: 30669) -.watch-naruto.tv/images/ -# ||vpntunnel.se/aff/$third-party (easylist.txt: 30657) -.vpntunnel.se/aff/ -# ||voodoo.com^$third-party (easylist.txt: 30655) -.voodoo.com -# ||vitabase.com/images/relationships/$third-party (easylist.txt: 30653) -.vitabase.com/images/relationships/ -# ||visitorboost.com/images/$third-party (easylist.txt: 30652) -.visitorboost.com/images/ -# ||visit.homepagle.com^$third-party (easylist.txt: 30651) -.visit.homepagle.com -# ||virool.com/widgets/$third-party (easylist.txt: 30648) -.virool.com/widgets/ -# ||viglink.com/api/products^$third-party (easylist.txt: 30647) -.viglink.com/api/products[^\w%.-] -# ||viglink.com/api/optimize^$third-party (easylist.txt: 30646) -.viglink.com/api/optimize[^\w%.-] -# ||viglink.com/api/insert^$third-party (easylist.txt: 30645) -.viglink.com/api/insert[^\w%.-] -# ||viglink.com/api/batch^$third-party (easylist.txt: 30644) -.viglink.com/api/batch[^\w%.-] -# ||videozr.com^$third-party (easylist.txt: 30640) -.videozr.com -# ||valuechecker.co.uk/banners/$third-party (easylist.txt: 30632) -.valuechecker.co.uk/banners/ -# ||usenet.pw^$third-party (easylist.txt: 30627) -.usenet.pw -# ||uploaded.to/img/public/$third-party (easylist.txt: 30623) -.uploaded.to/img/public/ -# ||uploaded.net/img/public/$third-party (easylist.txt: 30622) -.uploaded.net/img/public/ -# ||upickem.net^*/affiliates/$third-party (easylist.txt: 30620) -.upickem.net/.*/affiliates/ -# ||unsereuni.at/resources/img/$third-party (easylist.txt: 30619) -.unsereuni.at/resources/img/ -# ||turbobit.net/refers/$third-party (easylist.txt: 30603) -.turbobit.net/refers/ -# ||turbobit.net/ref/$third-party (easylist.txt: 30602) -.turbobit.net/ref/ -# ||ttt.co.uk/TMConverter/$third-party (easylist.txt: 30601) -.ttt.co.uk/TMConverter/ -# ||tshirthell.com/img/affiliate_section/$third-party (easylist.txt: 30600) -.tshirthell.com/img/affiliate_section/ -# ||trivago.co.uk/uk/srv/$third-party (easylist.txt: 30599) -.trivago.co.uk/uk/srv/ -# ||trialpay.com^*&dw-ptid=$third-party (easylist.txt: 30593) -.trialpay.com/.*&dw-ptid= -# ||travelmail.traveltek.net^$third-party (easylist.txt: 30585) -.travelmail.traveltek.net -# ||tosol.co.uk/international.php?$third-party (easylist.txt: 30577) -.tosol.co.uk/international\.php\? -# ||toptenreviews.com/w/af_widget.js$third-party (easylist.txt: 30575) -.toptenreviews.com/w/af_widget\.js -# ||topbinaryaffiliates.ck-cdn.com^$third-party (easylist.txt: 30571) -.topbinaryaffiliates.ck-cdn.com -# ||tipico.*?affiliateId=$third-party (easylist.txt: 30564) -.tipico.*./.*\?affiliateId= -# ||tipico.*/affiliate/$third-party (easylist.txt: 30563) -.tipico.*./(.*/)?affiliate/ -# ||thirdpartycdn.lumovies.com^$third-party (easylist.txt: 30554) -.thirdpartycdn.lumovies.com -# ||theselfdefenseco.com/?affid=$third-party (easylist.txt: 30552) -.theselfdefenseco.com/\?affid= -# ||themify.me/banners/$third-party (easylist.txt: 30547) -.themify.me/banners/ -# ||theatm.info/images/$third-party (easylist.txt: 30544) -.theatm.info/images/ -# ||techbargains.com/scripts/banner.js$third-party (easylist.txt: 30539) -.techbargains.com/scripts/banner\.js -# ||techbargains.com/inc_iframe_deals_feed.cfm?$third-party (easylist.txt: 30538) -.techbargains.com/inc_iframe_deals_feed\.cfm\? -# ||tag.regieci.com^$third-party (easylist.txt: 30531) -.tag.regieci.com -# ||syndicate.payloadz.com^$third-party (easylist.txt: 30527) -.syndicate.payloadz.com -# ||sweeva.com/widget.php?w=$third-party (easylist.txt: 30525) -.sweeva.com/widget\.php\?w= -# ||sweetwater.com/feature/$third-party (easylist.txt: 30524) -.sweetwater.com/feature/ -# ||sweed.to/?pid=$third-party (easylist.txt: 30522) -.sweed.to/\?pid= -# ||svcs.ebay.com/services/search/FindingService/*^affiliate.tracking$third-party (easylist.txt: 30520) -.svcs.ebay.com/services/search/FindingService/.*[^\w%.-]affiliate\.tracking -# ||surveymonkey.com/jspop.aspx?$third-party (easylist.txt: 30517) -.surveymonkey.com/jspop\.aspx\? -# ||supply.upjers.com^$third-party (easylist.txt: 30514) -.supply.upjers.com -# ||strikeadcdn.s3.amazonaws.com^$third-party (easylist.txt: 30505) -.strikeadcdn.s3.amazonaws.com -# ||static.tradetracker.net^$third-party (easylist.txt: 30497) -.static.tradetracker.net -# ||static.criteo.net/js/duplo^$third-party (easylist.txt: 30495) -.static.criteo.net/js/duplo[^\w%.-] -# ||static.criteo.net/images^$third-party (easylist.txt: 30494) -.static.criteo.net/images[^\w%.-] -# ||static.criteo.net/flash^$third-party (easylist.txt: 30493) -.static.criteo.net/flash[^\w%.-] -# ||static.criteo.net/design^$third-party (easylist.txt: 30492) -.static.criteo.net/design[^\w%.-] -# ||static.criteo.com/js/duplo^$third-party (easylist.txt: 30491) -.static.criteo.com/js/duplo[^\w%.-] -# ||static.criteo.com/images^$third-party (easylist.txt: 30490) -.static.criteo.com/images[^\w%.-] -# ||static.criteo.com/flash^$third-party (easylist.txt: 30489) -.static.criteo.com/flash[^\w%.-] -# ||static.criteo.com/design^$third-party (easylist.txt: 30488) -.static.criteo.com/design[^\w%.-] -# ||static.*.criteo.net/js/duplo^$third-party (easylist.txt: 30487) -.static.*./.*\.criteo\.net/js/duplo[^\w%.-] -.static.*.criteo.net/js/duplo[^\w%.-] -# ||static.*.criteo.net/images^$third-party (easylist.txt: 30486) -.static.*./.*\.criteo\.net/images[^\w%.-] -.static.*.criteo.net/images[^\w%.-] -# ||static.*.criteo.net/flash^$third-party (easylist.txt: 30485) -.static.*./.*\.criteo\.net/flash[^\w%.-] -.static.*.criteo.net/flash[^\w%.-] -# ||static.*.criteo.net/design^$third-party (easylist.txt: 30484) -.static.*./.*\.criteo\.net/design[^\w%.-] -.static.*.criteo.net/design[^\w%.-] -# ||stargames.com/bridge.asp?$third-party (easylist.txt: 30483) -.stargames.com/bridge\.asp\? -# ||stalliongold.com/images/*x$third-party (easylist.txt: 30482) -.stalliongold.com/images/.*x -# ||stacksocial.com^*?aid=$third-party (easylist.txt: 30481) -.stacksocial.com/.*\?aid= -# ||stacksocial.com/bundles/$third-party (easylist.txt: 30480) -.stacksocial.com/bundles/ -# ||ssl-images-amazon.com/images/*/banner/$third-party (easylist.txt: 30478) -.ssl-images-amazon.com/images/.*/banner/ -# ||srv.dynamicyield.com^$third-party (easylist.txt: 30475) -.srv.dynamicyield.com -# ||sproutnova.com/serve.php$third-party (easylist.txt: 30473) -.sproutnova.com/serve\.php -# ||sportsbetaffiliates.com.au^$third-party (easylist.txt: 30471) -.sportsbetaffiliates.com.au -# ||splashpagemaker.com/images/$third-party (easylist.txt: 30468) -.splashpagemaker.com/images/ -# ||socialmonkee.com/images/$third-party (easylist.txt: 30459) -.socialmonkee.com/images/ -# ||sndkorea.nowcdn.co.kr^$third-party (easylist.txt: 30458) -.sndkorea.nowcdn.co.kr -# ||snapdeal.com^*.php$third-party (easylist.txt: 30457) -.snapdeal.com/.*\.php -# ||smartlinks.dianomi.com^$third-party (easylist.txt: 30453) -.smartlinks.dianomi.com -# ||smartdestinations.com/ai/$third-party (easylist.txt: 30452) -.smartdestinations.com/ai/ -# ||slysoft.com/img/banner/$third-party (easylist.txt: 30450) -.slysoft.com/img/banner/ -# ||slickdeals.meritline.com^$third-party (easylist.txt: 30448) -.slickdeals.meritline.com -# ||skydsl.eu/banner/$third-party (easylist.txt: 30447) -.skydsl.eu/banner/ -# ||sitegiant.my/affiliate/$third-party (easylist.txt: 30444) -.sitegiant.my/affiliate/ -# ||site5.com/creative/$third-party (easylist.txt: 30442) -.site5.com/creative/ -# ||sisters-magazine.com/iframebanners/$third-party (easylist.txt: 30441) -.sisters-magazine.com/iframebanners/ -# ||sis.amazon.com/iu?$third-party (easylist.txt: 30440) -.sis.amazon.com/iu\? -# ||singlehop.com/affiliates/$third-party (easylist.txt: 30438) -.singlehop.com/affiliates/ -# ||shopping.com/sc/pac/sdc_widget_v2.0_proxy.js$third-party (easylist.txt: 30430) -.shopping.com/sc/pac/sdc_widget_v2\.0_proxy\.js -# ||shopilize.com^$third-party (easylist.txt: 30429) -.shopilize.com -# ||sharingzone.net/images/banner$third-party (easylist.txt: 30425) -.sharingzone.net/images/banner -# ||shareflare.net/images/$third-party (easylist.txt: 30423) -.shareflare.net/images/ -# ||sfstatic.com^*/js/fl.js$third-party (easylist.txt: 30420) -.sfstatic.com/.*/js/fl\.js -# ||settleships.com^$third-party (easylist.txt: 30415) -.settleships.com -# ||server.freegamesall.com^$third-party (easylist.txt: 30411) -.server.freegamesall.com -# ||servedby.yell.com^$third-party (easylist.txt: 30410) -.servedby.yell.com -# ||seedsman.com/affiliate/$third-party (easylist.txt: 30406) -.seedsman.com/affiliate/ -# ||seedboxco.net/*.swf$third-party (easylist.txt: 30405) -.seedboxco.net/.*\.swf -# ||searchportal.information.com/?$third-party (easylist.txt: 30399) -.searchportal.information.com/\? -# ||scribol.com/txwidget$third-party (easylist.txt: 30398) -.scribol.com/txwidget -# ||sciencecareers.org/widget/$third-party (easylist.txt: 30394) -.sciencecareers.org/widget/ -# ||satshop.tv/images/banner/$third-party (easylist.txt: 30391) -.satshop.tv/images/banner/ -# ||sat-shop.co.uk/images/$third-party (easylist.txt: 30390) -.sat-shop.co.uk/images/ -# ||salefile.googlecode.com^$third-party (easylist.txt: 30388) -.salefile.googlecode.com -# ||s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com^$third-party (easylist.txt: 30383) -.s11clickmoviedownloadercom.maynemyltf.netdna-cdn.com -# ||s.cxt.ms^$third-party (easylist.txt: 30381) -.s.cxt.ms -# ||rya.rockyou.com^$third-party (easylist.txt: 30377) -.rya.rockyou.com -# ||russian-dreams.net/static/js/$third-party (easylist.txt: 30376) -.russian-dreams.net/static/js/ -# ||rover.ebay.com^*&adtype=$third-party (easylist.txt: 30373) -.rover.ebay.com/.*&adtype= -# ||roia.hutchmedia.com^$third-party (easylist.txt: 30368) -.roia.hutchmedia.com -# ||richmedia.yahoo.com^$third-party (easylist.txt: 30365) -.richmedia.yahoo.com -# ||ribbon.india.com^$third-party (easylist.txt: 30364) -.ribbon.india.com -# ||rewards1.com/images/referralbanners/$third-party (easylist.txt: 30363) -.rewards1.com/images/referralbanners/ -# ||relink.us/images/$third-party (easylist.txt: 30358) -.relink.us/images/ -# ||regmyudid.com^*/index.html$third-party (easylist.txt: 30355) -.regmyudid.com/.*/index\.html -# ||redflagdeals.com/dealoftheday/widgets/$third-party (easylist.txt: 30353) -.redflagdeals.com/dealoftheday/widgets/ -# ||redbeacon.com/widget/$third-party (easylist.txt: 30352) -.redbeacon.com/widget/ -# ||red-tube.com^*.php?wmid=*&kamid=*&wsid=$third-party (easylist.txt: 30351) -.red-tube.com/.*\.php\?wmid=.*&kamid=.*&wsid= -# ||readme.ru/informer/$third-party (easylist.txt: 30349) -.readme.ru/informer/ -# ||rdio.com/media/images/affiliate/$third-party (easylist.txt: 30348) -.rdio.com/media/images/affiliate/ -# ||rcm*.amazon.$third-party (easylist.txt: 30347) -.rcm*./.*\.amazon\. -.rcm*.amazon.*. -# ||rbth.ru/widget/$third-party (easylist.txt: 30346) -.rbth.ru/widget/ -# ||radiocentre.ca/randomimages/$third-party (easylist.txt: 30338) -.radiocentre.ca/randomimages/ -# ||quickflix*.gridserver.com^$third-party (easylist.txt: 30330) -.quickflix*./.*\.gridserver\.com[^\w%.-] -.quickflix*.gridserver.com -# ||putlocker.com/images/banners/$third-party (easylist.txt: 30328) -.putlocker.com/images/banners/ -# ||public.porn.fr^$third-party (easylist.txt: 30324) -.public.porn.fr -# ||pub.dreamboxcart.com^$third-party (easylist.txt: 30322) -.pub.dreamboxcart.com -# ||pub.aujourdhui.com^$third-party (easylist.txt: 30320) -.pub.aujourdhui.com -# ||proxies2u.com/images/btn/$third-party (easylist.txt: 30315) -.proxies2u.com/images/btn/ -# ||propgoluxury.com/partners/$third-party (easylist.txt: 30314) -.propgoluxury.com/partners/ -# ||prizerebel.com/images/banner$third-party (easylist.txt: 30307) -.prizerebel.com/images/banner -# ||pricegrabber.com/mlink3.php?$third-party (easylist.txt: 30302) -.pricegrabber.com/mlink3\.php\? -# ||pricegrabber.com/mlink.php?$third-party (easylist.txt: 30301) -.pricegrabber.com/mlink\.php\? -# ||pricegrabber.com/export_feeds.php?$third-party (easylist.txt: 30300) -.pricegrabber.com/export_feeds\.php\? -# ||pricegrabber.com/cb_table.php$third-party (easylist.txt: 30299) -.pricegrabber.com/cb_table\.php -# ||pricedinfo.com^$third-party (easylist.txt: 30298) -.pricedinfo.com -# ||premium.naturalnews.tv^$third-party (easylist.txt: 30297) -.premium.naturalnews.tv -# ||premium-template.com/banner/$third-party (easylist.txt: 30296) -.premium-template.com/banner/ -# ||post.rmbn.ru^$third-party (easylist.txt: 30293) -.post.rmbn.ru -# ||pops.freeze.com^$third-party (easylist.txt: 30291) -.pops.freeze.com -# ||popmog.com^$third-party (easylist.txt: 30290) -.popmog.com -# ||pokerroomkings.com^*/banner/$third-party (easylist.txt: 30285) -.pokerroomkings.com/.*/banner/ -# ||pm.web.com^$third-party (easylist.txt: 30283) -.pm.web.com -# ||plus.net/images/referrals/*_banner_$third-party (easylist.txt: 30282) -.plus.net/images/referrals/.*_banner_ -# ||play-asia.com/paos-$third-party (easylist.txt: 30276) -.play-asia.com/paos- -# ||pics.firstload.de^$third-party (easylist.txt: 30275) -.pics.firstload.de -# ||ph.hillcountrytexas.com/imp.php?$third-party (easylist.txt: 30268) -.ph.hillcountrytexas.com/imp\.php\? -# ||perfectmoney.com/img/banners/$third-party (easylist.txt: 30267) -.perfectmoney.com/img/banners/ -# ||perfectforex.biz/images/*x$third-party (easylist.txt: 30266) -.perfectforex.biz/images/.*x -# ||pdl.viaplay.com/commercials/$third-party (easylist.txt: 30264) -.pdl.viaplay.com/commercials/ -# ||pcash.imlive.com^$third-party (easylist.txt: 30262) -.pcash.imlive.com -# ||partners.betus.com^$third-party (easylist.txt: 30252) -.partners.betus.com -# ||partner.e-conomic.com^$third-party (easylist.txt: 30248) -.partner.e-conomic.com -# ||partner.alloy.com^$third-party (easylist.txt: 30245) -.partner.alloy.com -# ||pan.dogster.com^$third-party (easylist.txt: 30244) -.pan.dogster.com -# ||padsdel.com^$third-party (easylist.txt: 30240) -.padsdel.com -# ||p.pw/banners/$third-party (easylist.txt: 30239) -.p.pw/banners/ -# ||onegameplace.com/iframe.php$third-party (easylist.txt: 30226) -.onegameplace.com/iframe\.php -# ||ojooo.com^*/banner_$third-party (easylist.txt: 30223) -.ojooo.com/.*/banner_ -# ||ojooo.com/register_f/$third-party (easylist.txt: 30222) -.ojooo.com/register_f/ -# ||office.eteachergroup.com/leads/$third-party (easylist.txt: 30220) -.office.eteachergroup.com/leads/ -# ||offerssyndication.appspot.com^$third-party (easylist.txt: 30219) -.offerssyndication.appspot.com -# ||offers-service.cbsinteractive.com^$third-party (easylist.txt: 30218) -.offers-service.cbsinteractive.com -# ||o2live.com^$third-party (easylist.txt: 30212) -.o2live.com -# ||numb.hotshare.biz^$third-party (easylist.txt: 30209) -.numb.hotshare.biz -# ||nude.mk/images/$third-party (easylist.txt: 30208) -.nude.mk/images/ -# ||novadune.com^$third-party (easylist.txt: 30205) -.novadune.com -# ||nlsl.about.com/img?$third-party (easylist.txt: 30203) -.nlsl.about.com/img\? -# ||nitropdf.com/graphics/promo/$third-party (easylist.txt: 30202) -.nitropdf.com/graphics/promo/ -# ||newware.net/home/newware-sm.png$third-party (easylist.txt: 30200) -.newware.net/home/newware-sm\.png -# ||newware.net/home/banner$third-party (easylist.txt: 30199) -.newware.net/home/banner -# ||news-whistleout.s3.amazonaws.com^$third-party (easylist.txt: 30198) -.news-whistleout.s3.amazonaws.com -# ||namecheap.com/graphics/linkus/$third-party (easylist.txt: 30184) -.namecheap.com/graphics/linkus/ -# ||n4g.com^*/IndieMonthSideBarWidget?$third-party (easylist.txt: 30183) -.n4g.com/.*/IndieMonthSideBarWidget\? -# ||mytrafficstrategy.com/images/$third-party (easylist.txt: 30178) -.mytrafficstrategy.com/images/ -# ||myspace.com/play/myspace/*&locationId$third-party (easylist.txt: 30177) -.myspace.com/play/myspace/.*&locationId -# ||mylife.com/partner/$third-party (easylist.txt: 30176) -.mylife.com/partner/ -# ||myfreeresources.com/getimg.php?$third-party (easylist.txt: 30173) -.myfreeresources.com/getimg\.php\? -# ||myfreepaysite.info^*.gif$third-party (easylist.txt: 30172) -.myfreepaysite.info/.*\.gif -# ||myezbz.com/marketplace/widget/$third-party (easylist.txt: 30171) -.myezbz.com/marketplace/widget/ -# ||mydownloader.net/banners/$third-party (easylist.txt: 30170) -.mydownloader.net/banners/ -# ||mybdhost.com/imgv2/$third-party (easylist.txt: 30168) -.mybdhost.com/imgv2/ -# ||musicmemorization.com/images/$third-party (easylist.txt: 30163) -.musicmemorization.com/images/ -# ||mto.mediatakeout.com^$third-party (easylist.txt: 30160) -.mto.mediatakeout.com -# ||mt.sellingrealestatemalta.com^$third-party (easylist.txt: 30159) -.mt.sellingrealestatemalta.com -# ||msm.mysavings.com^*.asp?afid=$third-party (easylist.txt: 30157) -.msm.mysavings.com/.*\.asp\?afid= -# ||mp3ix.com^$third-party (easylist.txt: 30151) -.mp3ix.com -# ||moneycontrol.com/share-market-game/$third-party (easylist.txt: 30146) -.moneycontrol.com/share-market-game/ -# ||mobilemetrics.appspot.com^$third-party (easylist.txt: 30142) -.mobilemetrics.appspot.com -# ||mmwebhandler.888.com^$third-party (easylist.txt: 30140) -.mmwebhandler.888.com -# ||mmosale.com/baner_images/$third-party (easylist.txt: 30139) -.mmosale.com/baner_images/ -# ||mmo4rpg.com^*.gif|$third-party (easylist.txt: 30138) -.mmo4rpg.com/.*\.gif$ -# ||mightydeals.com/widgets/$third-party (easylist.txt: 30130) -.mightydeals.com/widgets/ -# ||mightydeals.com/widget?$third-party (easylist.txt: 30129) -.mightydeals.com/widget\? -# ||mightyape.co.nz/stuff/$third-party (easylist.txt: 30128) -.mightyape.co.nz/stuff/ -# ||microsoft.com^*/community/images/windowsintune/$third-party (easylist.txt: 30127) -.microsoft.com/.*/community/images/windowsintune/ -# ||microsoft.com^*/bannerrotator/$third-party (easylist.txt: 30126) -.microsoft.com/.*/bannerrotator/ -# ||mgprofit.com/images/*x$third-party (easylist.txt: 30125) -.mgprofit.com/images/.*x -# ||mgm.com/www/$third-party (easylist.txt: 30124) -.mgm.com/www/ -# ||mfeed.newzfind.com^$third-party (easylist.txt: 30123) -.mfeed.newzfind.com -# ||metaboli.fr^*/adgude_$third-party (easylist.txt: 30120) -.metaboli.fr/.*/adgude_ -# ||meraad2.blogspot.com^$third-party (easylist.txt: 30118) -.meraad2.blogspot.com -# ||mediaplex.com/ad/js/$third-party (easylist.txt: 30112) -.mediaplex.com/ad/js/ -# ||mediaplex.com/ad/fm/$third-party (easylist.txt: 30111) -.mediaplex.com/ad/fm/ -# ||mediaplex.com/ad/bn/$third-party (easylist.txt: 30110) -.mediaplex.com/ad/bn/ -# ||media.onlineteachers.co.in^$third-party (easylist.txt: 30108) -.media.onlineteachers.co.in -# ||media.netrefer.com^$third-party (easylist.txt: 30107) -.media.netrefer.com -# ||media.myspace.com/play/*/featured-videos-$third-party (easylist.txt: 30106) -.media.myspace.com/play/.*/featured-videos- -# ||media.domainking.ng/media/$third-party (easylist.txt: 30104) -.media.domainking.ng/media/ -# ||media-toolbar.com^$third-party (easylist.txt: 30102) -.media-toolbar.com -# ||mb.marathonbet.com^$third-party (easylist.txt: 30097) -.mb.marathonbet.com -# ||matrixmails.com/images/$third-party (easylist.txt: 30093) -.matrixmails.com/images/ -# ||match.com^*/prm/$third-party (easylist.txt: 30091) -.match.com/.*/prm/ -# ||mastiway.com/webimages/$third-party (easylist.txt: 30090) -.mastiway.com/webimages/ -# ||mantra.com.au^*/campaigns/$third-party (easylist.txt: 30086) -.mantra.com.au/.*/campaigns/ -# ||madisonlogic.com^$third-party (easylist.txt: 30080) -.madisonlogic.com -# ||lynku.com/partners/$third-party (easylist.txt: 30077) -.lynku.com/partners/ -# ||lumfile.com/lumimage/ourbanner/$third-party (easylist.txt: 30074) -.lumfile.com/lumimage/ourbanner/ -# ||lp.ncdownloader.com^$third-party (easylist.txt: 30068) -.lp.ncdownloader.com -# ||lowcountrymarketplace.com/widgets/$third-party (easylist.txt: 30066) -.lowcountrymarketplace.com/widgets/ -# ||lowbird.com/random/$third-party (easylist.txt: 30065) -.lowbird.com/random/ -# ||lottoelite.com/banners/$third-party (easylist.txt: 30064) -.lottoelite.com/banners/ -# ||loot.co.za^*/banners/$third-party (easylist.txt: 30063) -.loot.co.za/.*/banners/ -# ||loot.co.za/shop/product.jsp?$third-party (easylist.txt: 30062) -.loot.co.za/shop/product\.jsp\? -# ||loopnet.com^*/searchwidget.htm$third-party (easylist.txt: 30061) -.loopnet.com/.*/searchwidget\.htm -# ||liveshows.com^*/live.js$third-party (easylist.txt: 30047) -.liveshows.com/.*/live\.js -# ||liutilities.com/partners/$third-party (easylist.txt: 30043) -.liutilities.com/partners/ -# ||litecoinkamikaze.com/assets/images/banner$third-party (easylist.txt: 30041) -.litecoinkamikaze.com/assets/images/banner -# ||linkbird.com/static/upload/*/banner/$third-party (easylist.txt: 30038) -.linkbird.com/static/upload/.*/banner/ -# ||link.link.ru^$third-party (easylist.txt: 30037) -.link.link.ru -# ||lifestyle24h.com/reward/$third-party (easylist.txt: 30034) -.lifestyle24h.com/reward/ -# ||letters.coursekey.com/lettertemplates_$third-party (easylist.txt: 30032) -.letters.coursekey.com/lettertemplates_ -# ||lessemf.com/images/banner-$third-party (easylist.txt: 30030) -.lessemf.com/images/banner- -# ||lesmeilleurs-jeux.net/images/ban/$third-party (easylist.txt: 30029) -.lesmeilleurs-jeux.net/images/ban/ -# ||legitonlinejobs.com/images/$third-party (easylist.txt: 30027) -.legitonlinejobs.com/images/ -# ||leadintelligence.co.uk/in-text.js$third-party (easylist.txt: 30023) -.leadintelligence.co.uk/in-text\.js -# ||lawdepot.com/affiliate/$third-party (easylist.txt: 30022) -.lawdepot.com/affiliate/ -# ||lapi.ebay.com^$third-party (easylist.txt: 30020) -.lapi.ebay.com -# ||kraken.giantrealm.com^$third-party (easylist.txt: 30015) -.kraken.giantrealm.com -# ||kontera.com/javascript/lib/KonaLibInline.js$third-party (easylist.txt: 30013) -.kontera.com/javascript/lib/KonaLibInline\.js -# ||kaltura.com^*/vastPlugin.swf$third-party (easylist.txt: 30008) -.kaltura.com/.*/vastPlugin\.swf -# ||k-po.com/img/ebay.png$third-party (easylist.txt: 30003) -.k-po.com/img/ebay\.png -# ||jvzoo.com/assets/widget/$third-party (easylist.txt: 30002) -.jvzoo.com/assets/widget/ -# ||junction.co.za/widget/$third-party (easylist.txt: 30000) -.junction.co.za/widget/ -# ||jugglu.com/content/widgets/$third-party (easylist.txt: 29999) -.jugglu.com/content/widgets/ -# ||jobs-affiliates.ws/images/$third-party (easylist.txt: 29993) -.jobs-affiliates.ws/images/ -# ||joblet.jp/javascripts/$third-party (easylist.txt: 29992) -.joblet.jp/javascripts/ -# ||jinx.com/content/banner/$third-party (easylist.txt: 29990) -.jinx.com/content/banner/ -# ||jenningsforddirect.co.uk/sitewide/extras/$third-party (easylist.txt: 29988) -.jenningsforddirect.co.uk/sitewide/extras/ -# ||ipixs.com/ban/$third-party (easylist.txt: 29981) -.ipixs.com/ban/ -# ||iobit.com/partner/$third-party (easylist.txt: 29979) -.iobit.com/partner/ -# ||interstitial.glsp.netdna-cdn.com^$third-party (easylist.txt: 29977) -.interstitial.glsp.netdna-cdn.com -# ||interserver.net/logos/vps-$third-party (easylist.txt: 29976) -.interserver.net/logos/vps- -# ||internetbrands.com/partners/$third-party (easylist.txt: 29975) -.internetbrands.com/partners/ -# ||intermrkts.vo.llnwd.net^$third-party (easylist.txt: 29974) -.intermrkts.vo.llnwd.net -# ||inline.playbryte.com^$third-party (easylist.txt: 29969) -.inline.playbryte.com -# ||init.lingospot.com^$third-party (easylist.txt: 29968) -.init.lingospot.com -# ||infibeam.com/affiliate/$third-party (easylist.txt: 29963) -.infibeam.com/affiliate/ -# ||indian-forex.com^*/banners/$third-party (easylist.txt: 29961) -.indian-forex.com/.*/banners/ -# ||imgpop.googlecode.com^$third-party (easylist.txt: 29957) -.imgpop.googlecode.com -# ||imgehost.com^*/banners/$third-party (easylist.txt: 29956) -.imgehost.com/.*/banners/ -# ||img.servint.net^$third-party (easylist.txt: 29954) -.img.servint.net -# ||img.promoddl.com^$third-party (easylist.txt: 29953) -.img.promoddl.com -# ||img.mybet.com^$third-party (easylist.txt: 29952) -.img.mybet.com -# ||img.hostmonster.com^$third-party (easylist.txt: 29951) -.img.hostmonster.com -# ||img.bluehost.com^$third-party (easylist.txt: 29950) -.img.bluehost.com -# ||images.youbuy.it/images/$third-party (easylist.txt: 29948) -.images.youbuy.it/images/ -# ||images.mylot.com^$third-party (easylist.txt: 29947) -.images.mylot.com -# ||images.dreamhost.com^$third-party (easylist.txt: 29946) -.images.dreamhost.com -# ||images.criteo.net^$third-party (easylist.txt: 29945) -.images.criteo.net -# ||images.*.criteo.net^$third-party (easylist.txt: 29944) -.images.*./.*\.criteo\.net[^\w%.-] -.images.*.criteo.net -# ||images-amazon.com/images/*/banner/$third-party (easylist.txt: 29940) -.images-amazon.com/images/.*/banner/ -# ||image.dhgate.com^*/dhgate-logo-$third-party (easylist.txt: 29938) -.image.dhgate.com/.*/dhgate-logo- -# ||image.com.com^*/skin2.jpg$third-party (easylist.txt: 29937) -.image.com.com/.*/skin2\.jpg -# ||ilapi.ebay.com^$third-party (easylist.txt: 29934) -.ilapi.ebay.com -# ||ifilm.com/website/*_skin_$third-party (easylist.txt: 29933) -.ifilm.com/website/.*_skin_ -# ||idg.com.au/ggg/images/*_home.jpg$third-party (easylist.txt: 29931) -.idg.com.au/ggg/images/.*_home\.jpg -# ||idealo.co.uk/priceinfo/$third-party (easylist.txt: 29930) -.idealo.co.uk/priceinfo/ -# ||i.ligatus.com/*-placements/$third-party (easylist.txt: 29921) -.i.ligatus.com/.*-placements/ -# ||hqfootyad4.blogspot.com^$third-party (easylist.txt: 29912) -.hqfootyad4.blogspot.com -# ||hotlinking.dosmil.imap.cc^$third-party (easylist.txt: 29911) -.hotlinking.dosmil.imap.cc -# ||hoteltravel.com/partner/$third-party (easylist.txt: 29910) -.hoteltravel.com/partner/ -# ||hotelsbycity.com^*/bannermtg.php?$third-party (easylist.txt: 29909) -.hotelsbycity.com/.*/bannermtg\.php\? -# ||hostmonster.com/src/js/izahariev/$third-party (easylist.txt: 29908) -.hostmonster.com/src/js/izahariev/ -# ||hosting.conduit.com^$third-party (easylist.txt: 29906) -.hosting.conduit.com -# ||hostgator.com/~affiliat/cgi-bin/affiliates/$third-party (easylist.txt: 29905) -.hostgator.com/~affiliat/cgi-bin/affiliates/ -# ||hostdime.com/images/affiliate/$third-party (easylist.txt: 29904) -.hostdime.com/images/affiliate/ -# ||healthtrader.com/banner-$third-party (easylist.txt: 29895) -.healthtrader.com/banner- -# ||hdvid-codecs.com^$third-party (easylist.txt: 29894) -.hdvid-codecs.com -# ||gsniper.com/images/$third-party (easylist.txt: 29887) -.gsniper.com/images/ -# ||grouponcdn.com^*/affiliate_widget/$third-party (easylist.txt: 29886) -.grouponcdn.com/.*/affiliate_widget/ -# ||groupon.com/javascripts/common/affiliate_widget/$third-party (easylist.txt: 29885) -.groupon.com/javascripts/common/affiliate_widget/ -# ||grammar.coursekey.com/inter/$third-party (easylist.txt: 29883) -.grammar.coursekey.com/inter/ -# ||googlesyndication.com^*/simgad/$third-party (easylist.txt: 29876) -.googlesyndication.com/.*/simgad/ -# ||googlesyndication.com/simgad/$third-party (easylist.txt: 29872) -.googlesyndication.com/simgad/ -# ||googlesyndication.com/safeframe/$third-party (easylist.txt: 29871) -.googlesyndication.com/safeframe/ -# ||googlesyndication.com/pagead/$third-party (easylist.txt: 29870) -.googlesyndication.com/pagead/ -# ||goldmoney.com/~/media/Images/Banners/$third-party (easylist.txt: 29865) -.goldmoney.com/~/media/Images/Banners/ -# ||gold4rs.com/images/$third-party (easylist.txt: 29864) -.gold4rs.com/images/ -# ||giantsavings-a.akamaihd.net^$third-party (easylist.txt: 29854) -.giantsavings-a.akamaihd.net -# ||ggmania.com^*.jpg$third-party (easylist.txt: 29852) -.ggmania.com/.*\.jpg -# ||gfxa.sheetmusicplus.com^$third-party (easylist.txt: 29851) -.gfxa.sheetmusicplus.com -# ||getnzb.com/img/partner/banners/$third-party (easylist.txt: 29848) -.getnzb.com/img/partner/banners/ -# ||gethopper.com/tp/$third-party (easylist.txt: 29847) -.gethopper.com/tp/ -# ||getadblock.com/images/adblock_banners/$third-party (easylist.txt: 29846) -.getadblock.com/images/adblock_banners/ -# ||get.thisisvegas.com^$third-party (easylist.txt: 29845) -.get.thisisvegas.com -# ||get.slotocash.com^$third-party (easylist.txt: 29844) -.get.slotocash.com -# ||get.rubyroyal.com^$third-party (easylist.txt: 29843) -.get.rubyroyal.com -# ||get.paradise8.com^$third-party (easylist.txt: 29842) -.get.paradise8.com -# ||get.davincisgold.com^$third-party (easylist.txt: 29841) -.get.davincisgold.com -# ||get.box24casino.com^$third-party (easylist.txt: 29840) -.get.box24casino.com -# ||get.2leep.com^$third-party (easylist.txt: 29839) -.get.2leep.com -# ||get.*.website/static/get-js?stid=$third-party (easylist.txt: 29838) -.get.*./.*\.website/static/get-js\?stid= -.get.*.website/static/get-js\?stid= -# ||generic4all.com^*?refid=$third-party (easylist.txt: 29834) -.generic4all.com/.*\?refid= -# ||gamblingwages.com/images/$third-party (easylist.txt: 29821) -.gamblingwages.com/images/ -# ||fyygame.com/images/*.swf$third-party (easylist.txt: 29819) -.fyygame.com/images/.*\.swf -# ||fyicentralmi.com/remote_widget?$third-party (easylist.txt: 29817) -.fyicentralmi.com/remote_widget\? -# ||futuresite.register.com/us?$third-party (easylist.txt: 29814) -.futuresite.register.com/us\? -# ||fupa.com/aw.aspx?$third-party (easylist.txt: 29811) -.fupa.com/aw\.aspx\? -# ||fugger.netfirms.com/moa.swf$third-party (easylist.txt: 29809) -.fugger.netfirms.com/moa\.swf -# ||fugger.ipage.com^$third-party (easylist.txt: 29808) -.fugger.ipage.com -# ||frogatto.com/images/$third-party (easylist.txt: 29805) -.frogatto.com/images/ -# ||friedrice.la/widget/$third-party (easylist.txt: 29804) -.friedrice.la/widget/ -# ||freshbooks.com/images/banners/$third-party (easylist.txt: 29803) -.freshbooks.com/images/banners/ -# ||freakshare.com/banner/$third-party (easylist.txt: 29796) -.freakshare.com/banner/ -# ||forms.aweber.com/form/styled_popovers_and_lightboxes.js$third-party (easylist.txt: 29791) -.forms.aweber.com/form/styled_popovers_and_lightboxes\.js -# ||flixcart.com/affiliate/$third-party (easylist.txt: 29786) -.flixcart.com/affiliate/ -# ||flipkart.com/affiliateWidget/$third-party (easylist.txt: 29785) -.flipkart.com/affiliateWidget/ -# ||flipchat.com/index.php?$third-party (easylist.txt: 29784) -.flipchat.com/index\.php\? -# ||flagship.asp-host.co.uk^$third-party (easylist.txt: 29783) -.flagship.asp-host.co.uk -# ||fimserve.myspace.com^$third-party (easylist.txt: 29780) -.fimserve.myspace.com -# ||filmehd.net/imagini/banner_$third-party (easylist.txt: 29777) -.filmehd.net/imagini/banner_ -# ||fileserve.com/images/banner_$third-party (easylist.txt: 29775) -.fileserve.com/images/banner_ -# ||fileloadr.com^$third-party (easylist.txt: 29772) -.fileloadr.com -# ||filedroid.net/af_ta/$third-party (easylist.txt: 29769) -.filedroid.net/af_ta/ -# ||filedownloader.net/design/$third-party (easylist.txt: 29768) -.filedownloader.net/design/ -# ||fcgadgets.blogspot.com^$third-party (easylist.txt: 29764) -.fcgadgets.blogspot.com -# ||fatads.toldya.com^$third-party (easylist.txt: 29762) -.fatads.toldya.com -# ||farmholidays.is/iframeallfarmsearch.aspx?$third-party (easylist.txt: 29760) -.farmholidays.is/iframeallfarmsearch\.aspx\? -# ||fantaz.com^*/banners/$third-party (easylist.txt: 29758) -.fantaz.com/.*/banners/ -# ||fancybar.net/ac/fancybar.js?zoneid$third-party (easylist.txt: 29756) -.fancybar.net/ac/fancybar\.js\?zoneid -# ||eyetopics.com/content_images/$third-party (easylist.txt: 29753) -.eyetopics.com/content_images/ -# ||extabit.com/s/$third-party (easylist.txt: 29748) -.extabit.com/s/ -# ||explorer.sheknows.com^$third-party (easylist.txt: 29746) -.explorer.sheknows.com -# ||etrader.kalahari.net^$third-party (easylist.txt: 29739) -.etrader.kalahari.net -# ||etrader.kalahari.com^$third-party (easylist.txt: 29738) -.etrader.kalahari.com -# ||etoro.com/B*_A*_TGet.aspx$third-party (easylist.txt: 29737) -.etoro.com/B.*_A.*_TGet\.aspx -# ||etoolkit.com/banner/$third-party (easylist.txt: 29736) -.etoolkit.com/banner/ -# ||escape.insites.eu^$third-party (easylist.txt: 29734) -.escape.insites.eu -# ||engine.gamerati.net^$third-party (easylist.txt: 29729) -.engine.gamerati.net -# ||emailcashpro.com/images/$third-party (easylist.txt: 29727) -.emailcashpro.com/images/ -# ||eltexonline.com/contentrotator/$third-party (easylist.txt: 29726) -.eltexonline.com/contentrotator/ -# ||elenasmodels.com/cache/cb_$third-party (easylist.txt: 29723) -.elenasmodels.com/cache/cb_ -# ||eholidayfinder.com/images/logo.gif$third-party (easylist.txt: 29722) -.eholidayfinder.com/images/logo\.gif -# ||edge.viagogo.co.uk^*/widget.ashx?$third-party (easylist.txt: 29720) -.edge.viagogo.co.uk/.*/widget\.ashx\? -# ||eblastengine.upickem.net^$third-party (easylist.txt: 29717) -.eblastengine.upickem.net -# ||ebaycommercenetwork.com/publisher/$third-party (easylist.txt: 29714) -.ebaycommercenetwork.com/publisher/ -# ||eattoday.com.mt/widgets/$third-party (easylist.txt: 29713) -.eattoday.com.mt/widgets/ -# ||e-webcorp.com/images/$third-party (easylist.txt: 29710) -.e-webcorp.com/images/ -# ||dynamicserving.com^$third-party (easylist.txt: 29707) -.dynamicserving.com -# ||dx.com/affiliate/$third-party (easylist.txt: 29700) -.dx.com/affiliate/ -# ||dvdfab.com/images/fabnewbanner/$third-party (easylist.txt: 29697) -.dvdfab.com/images/fabnewbanner/ -# ||dreamstime.com/img/badges/banner$third-party (easylist.txt: 29690) -.dreamstime.com/img/badges/banner -# ||dreamhost.com/rewards/$third-party (easylist.txt: 29688) -.dreamhost.com/rewards/ -# ||dreamboxcart.com/earning/$third-party (easylist.txt: 29687) -.dreamboxcart.com/earning/ -# ||dramafeverw2.appspot.com/widget/$third-party (easylist.txt: 29686) -.dramafeverw2.appspot.com/widget/ -# ||dramafever.com/widget/$third-party (easylist.txt: 29685) -.dramafever.com/widget/ -# ||downloadprovider.me/en/search/*?aff.id=*&iframe=$third-party (easylist.txt: 29679) -.downloadprovider.me/en/search/.*\?aff\.id=.*&iframe= -# ||downloadandsave-a.akamaihd.net^$third-party (easylist.txt: 29678) -.downloadandsave-a.akamaihd.net -# ||download.bitdefender.com/resources/media/$third-party (easylist.txt: 29677) -.download.bitdefender.com/resources/media/ -# ||download-provider.org/?aff.id=$third-party (easylist.txt: 29676) -.download-provider.org/\?aff\.id= -# ||domainapps.com/assets/img/domain-apps.gif$third-party (easylist.txt: 29670) -.domainapps.com/assets/img/domain-apps\.gif -# ||directnicparking.com^$third-party (easylist.txt: 29656) -.directnicparking.com -# ||direct.quasir.info^$third-party (easylist.txt: 29655) -.direct.quasir.info -# ||desi4m.com/desi4m.gif$third-party (easylist.txt: 29643) -.desi4m.com/desi4m\.gif -# ||delivery.importantmedia.org^$third-party (easylist.txt: 29640) -.delivery.importantmedia.org -# ||deals.macupdate.com^$third-party (easylist.txt: 29635) -.deals.macupdate.com -# ||deals.buxr.net^$third-party (easylist.txt: 29634) -.deals.buxr.net -# ||dealplatform.com^*/widgets/$third-party (easylist.txt: 29633) -.dealplatform.com/.*/widgets/ -# ||dealextreme.com/affiliate_upload/$third-party (easylist.txt: 29632) -.dealextreme.com/affiliate_upload/ -# ||dawanda.com/widget/$third-party (easylist.txt: 29629) -.dawanda.com/widget/ -# ||daterly.com/*.widget.php$third-party (easylist.txt: 29628) -.daterly.com/.*\.widget\.php -# ||cuteonly.com/banners.php$third-party (easylist.txt: 29524) -.cuteonly.com/banners\.php -# ||customer.heartinternet.co.uk^$third-party (easylist.txt: 29523) -.customer.heartinternet.co.uk -# ||cursecdn.com/shared-assets/current/anchor.js?id=$third-party (easylist.txt: 29521) -.cursecdn.com/shared-assets/current/anchor\.js\?id= -# ||cts.tradepub.com/cts4/?ptnr=*&tm=$third-party (easylist.txt: 29519) -.cts.tradepub.com/cts4/\?ptnr=.*&tm= -# ||crunchyroll.com/awidget/$third-party (easylist.txt: 29517) -.crunchyroll.com/awidget/ -# ||cruisesalefinder.co.nz/affiliates.html$third-party (easylist.txt: 29516) -.cruisesalefinder.co.nz/affiliates\.html -# ||cplayer.blinkx.com^$third-party (easylist.txt: 29511) -.cplayer.blinkx.com -# ||couptopia.com/affiliate/$third-party (easylist.txt: 29509) -.couptopia.com/affiliate/ -# ||couponcp-a.akamaihd.net^$third-party (easylist.txt: 29508) -.couponcp-a.akamaihd.net -# ||conversionplanet.com/published/feeds/$third-party (easylist.txt: 29507) -.conversionplanet.com/published/feeds/ -# ||conduit.com//banners/$third-party (easylist.txt: 29499) -# ||comx-computers.co.za/banners/$third-party (easylist.txt: 29498) -.comx-computers.co.za/banners/ -# ||code.popup2m.com^$third-party (easylist.txt: 29493) -.code.popup2m.com -# ||cloudzer.net^*/banner/$third-party (easylist.txt: 29489) -.cloudzer.net/.*/banner/ -# ||circularhub.com^$third-party (easylist.txt: 29470) -.circularhub.com -# ||choices.truste.com^$third-party (easylist.txt: 29467) -.choices.truste.com -# ||challies.com^*/wtsbooks5.png$third-party (easylist.txt: 29465) -.challies.com/.*/wtsbooks5\.png -# ||chacsystems.com/gk_add.html$third-party (easylist.txt: 29464) -.chacsystems.com/gk_add\.html -# ||cex.io/informer/$third-party (easylist.txt: 29461) -.cex.io/informer/ -# ||centralscotlandjoinery.co.uk/images/csj-125.gif$third-party (easylist.txt: 29458) -.centralscotlandjoinery.co.uk/images/csj-125\.gif -# ||cdn.sweeva.com/images/$third-party (easylist.txt: 29452) -.cdn.sweeva.com/images/ -# ||cdn.offcloud.com^$third-party (easylist.txt: 29450) -.cdn.offcloud.com -# ||cdn.assets.gorillanation.com^$third-party (easylist.txt: 29447) -.cdn.assets.gorillanation.com -# ||caw.criteo.com^$third-party (easylist.txt: 29444) -.caw.criteo.com -# ||caw.*.criteo.com^$third-party (easylist.txt: 29443) -.caw.*./.*\.criteo\.com[^\w%.-] -.caw.*.criteo.com -# ||cas.criteo.com^$third-party (easylist.txt: 29435) -.cas.criteo.com -# ||cas.*.criteo.com^$third-party (easylist.txt: 29433) -.cas.*./.*\.criteo\.com[^\w%.-] -.cas.*.criteo.com -# ||carfax.com/img_myap/$third-party (easylist.txt: 29431) -.carfax.com/img_myap/ -# ||careerjunction.co.za^*/widget?$third-party (easylist.txt: 29430) -.careerjunction.co.za/.*/widget\? -# ||careerjunction.co.za/widgets/$third-party (easylist.txt: 29429) -.careerjunction.co.za/widgets/ -# ||canonresourcecenter.com^$third-party (easylist.txt: 29427) -.canonresourcecenter.com -# ||cancomdigital.com/resourcecenter/$third-party (easylist.txt: 29426) -.cancomdigital.com/resourcecenter/ -# ||buzznet.com^*/showpping-banner-$third-party (easylist.txt: 29418) -.buzznet.com/.*/showpping-banner- -# ||bubbles-uk.com/banner/$third-party (easylist.txt: 29409) -.bubbles-uk.com/banner/ -# ||btguard.com/images/$third-party (easylist.txt: 29406) -.btguard.com/images/ -# ||broadbandgenie.co.uk/widget?$third-party (easylist.txt: 29403) -.broadbandgenie.co.uk/widget\? -# ||brettterpstra.com/wp-content/uploads/$third-party (easylist.txt: 29402) -.brettterpstra.com/wp-content/uploads/ -# ||bordernode.com/images/$third-party (easylist.txt: 29393) -.bordernode.com/images/ -# ||bo-videos.s3.amazonaws.com^$third-party (easylist.txt: 29387) -.bo-videos.s3.amazonaws.com -# ||bluepromocode.com/images/widgets/$third-party (easylist.txt: 29383) -.bluepromocode.com/images/widgets/ -# ||blocks.ginotrack.com^$third-party (easylist.txt: 29381) -.blocks.ginotrack.com -# ||bliss-systems-api.co.uk^$third-party (easylist.txt: 29379) -.bliss-systems-api.co.uk -# ||bittorrent.am/serws.php?$third-party (easylist.txt: 29373) -.bittorrent.am/serws\.php\? -# ||bitcoinwebhosting.net/banners/$third-party (easylist.txt: 29371) -.bitcoinwebhosting.net/banners/ -# ||bitcoindice.com/img/bitcoindice_$third-party (easylist.txt: 29370) -.bitcoindice.com/img/bitcoindice_ -# ||binbox.io/public/img/promo/$third-party (easylist.txt: 29367) -.binbox.io/public/img/promo/ -# ||bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview.jsp?$third-party (easylist.txt: 29362) -.bidorbuy.co.za/jsp/tradesearch/TradeFeedPreview\.jsp\? -# ||bharatmatrimony.com/matrimoney/matrimoneybanners/$third-party (easylist.txt: 29359) -.bharatmatrimony.com/matrimoney/matrimoneybanners/ -# ||betwaypartners.com/affiliate_media/$third-party (easylist.txt: 29358) -.betwaypartners.com/affiliate_media/ -# ||betting.betfair.com^$third-party (easylist.txt: 29357) -.betting.betfair.com -# ||beta.down2crazy.com^$third-party (easylist.txt: 29355) -.beta.down2crazy.com -# ||berush.com/images/*_semrush_$third-party (easylist.txt: 29349) -.berush.com/images/.*_semrush_ -# ||bemyapp.com/trk/$third-party (easylist.txt: 29347) -.bemyapp.com/trk/ -# ||bc.vc/js/link-converter.js$third-party (easylist.txt: 29344) -.bc.vc/js/link-converter\.js -# ||bc.coupons.com^$third-party (easylist.txt: 29343) -.bc.coupons.com -# ||banners.webmasterplan.com^$third-party (easylist.txt: 29341) -.banners.webmasterplan.com -# ||banners.videosz.com^$third-party (easylist.txt: 29340) -.banners.videosz.com -# ||banners.smarttweak.com^$third-party (easylist.txt: 29339) -.banners.smarttweak.com -# ||banners.moreniche.com^$third-party (easylist.txt: 29338) -.banners.moreniche.com -# ||banners.ixitools.com^$third-party (easylist.txt: 29337) -.banners.ixitools.com -# ||banners.cfspm.com.au^$third-party (easylist.txt: 29336) -.banners.cfspm.com.au -# ||bannermaken.nl/banners/$third-party (easylist.txt: 29335) -.bannermaken.nl/banners/ -# ||banner2.casino.com^$third-party (easylist.txt: 29334) -.banner2.casino.com -# ||banner.titanpoker.com^$third-party (easylist.txt: 29333) -.banner.titanpoker.com -# ||banman.isoftmarketing.com^$third-party (easylist.txt: 29327) -.banman.isoftmarketing.com -# ||bankrate.com/jsfeeds/$third-party (easylist.txt: 29325) -.bankrate.com/jsfeeds/ -# ||badoo.com/informer/$third-party (easylist.txt: 29322) -.badoo.com/informer/ -# ||babylon.com/systems/af/landing/$third-party (easylist.txt: 29319) -.babylon.com/systems/af/landing/ -# ||babylon.com/site/images/common.js$third-party (easylist.txt: 29318) -.babylon.com/site/images/common\.js -# ||b.sell.com^$third-party (easylist.txt: 29314) -.b.sell.com -# ||awadhtimes.com^$third-party (easylist.txt: 29308) -.awadhtimes.com -# ||augine.com/widget|$third-party (easylist.txt: 29306) -.augine.com/widget$ -# ||athena-ads.wikia.com^$third-party (easylist.txt: 29304) -.athena-ads.wikia.com -# ||as.devbridge.com^$third-party (easylist.txt: 29298) -.as.devbridge.com -# ||appwork.org/hoster/banner_$third-party (easylist.txt: 29293) -.appwork.org/hoster/banner_ -# ||appsgenius.com/images/$third-party (easylist.txt: 29292) -.appsgenius.com/images/ -# ||api.groupon.com/v2/deals/$third-party (easylist.txt: 29287) -.api.groupon.com/v2/deals/ -# ||api.bitp.it^$third-party (easylist.txt: 29286) -.api.bitp.it -# ||api.140proof.com^$third-party (easylist.txt: 29285) -.api.140proof.com -# ||any.gs/visitScript/$third-party (easylist.txt: 29280) -.any.gs/visitScript/ -# ||anime.jlist.com^$third-party (easylist.txt: 29278) -.anime.jlist.com -# ||angelbc.com/clients/*/banners/$third-party (easylist.txt: 29277) -.angelbc.com/clients/.*/banners/ -# ||amazon.com^*/getaanad?$third-party (easylist.txt: 29253) -.amazon.com/.*/getaanad\? -# ||amazon.com/?_encoding*&linkcode$third-party (easylist.txt: 29251) -.amazon.com/\?_encoding.*&linkcode -# ||altushost.com/docs/$third-party (easylist.txt: 29250) -.altushost.com/docs/ -# ||algart.net*_banner_$third-party (easylist.txt: 29244) -.algart.net*./.*_banner_ -# ||akamaihd.net^*/web/pdk/swf/freewheel.swf?$third-party (easylist.txt: 29242) -.akamaihd.net/.*/web/pdk/swf/freewheel\.swf\? -# ||akamai.net^*.247realmedia.com/$third-party (easylist.txt: 29236) -.akamai.net/.*\.247realmedia\.com/ -# ||ak1.imgaft.com^$third-party (easylist.txt: 29235) -.ak1.imgaft.com -# ||ak.imgaft.com^$third-party (easylist.txt: 29234) -.ak.imgaft.com -# ||ahlanlive.com/newsletters/banners/$third-party (easylist.txt: 29230) -.ahlanlive.com/newsletters/banners/ -# ||afimg.liveperson.com^$third-party (easylist.txt: 29227) -.afimg.liveperson.com -# ||affutdmedia.com^$third-party (easylist.txt: 29226) -.affutdmedia.com -# ||affiliation.filestube.com^$third-party (easylist.txt: 29224) -.affiliation.filestube.com -# ||affiliates.picaboocorp.com^$third-party (easylist.txt: 29222) -.affiliates.picaboocorp.com -# ||affiliates.lynda.com^$third-party (easylist.txt: 29221) -.affiliates.lynda.com -# ||affiliates.homestead.com^$third-party (easylist.txt: 29220) -.affiliates.homestead.com -# ||affiliates.bookdepository.com^$third-party (easylist.txt: 29219) -.affiliates.bookdepository.com -# ||affiliates.bookdepository.co.uk^$third-party (easylist.txt: 29218) -.affiliates.bookdepository.co.uk -# ||affiliates-cdn.mozilla.org^$third-party (easylist.txt: 29216) -.affiliates-cdn.mozilla.org -# ||affiliatehub.skybet.com^$third-party (easylist.txt: 29214) -.affiliatehub.skybet.com -# ||affiliate.mediatemple.net^$third-party (easylist.txt: 29213) -.affiliate.mediatemple.net -# ||affiliate.juno.co.uk^$third-party (easylist.txt: 29212) -.affiliate.juno.co.uk -# ||aff.cupidplc.com^$third-party (easylist.txt: 29207) -.aff.cupidplc.com -# ||adstest.zaman.com.tr^$third-party (easylist.txt: 29202) -.adstest.zaman.com.tr -# ||adsrv.eacdn.com^$third-party (easylist.txt: 29200) -.adsrv.eacdn.com -# ||adserv.legitreviews.com^$third-party (easylist.txt: 29199) -.adserv.legitreviews.com -# ||ads.dynamicyield.com^$third-party (easylist.txt: 29195) -.ads.dynamicyield.com -# ||adm.shinobi.jp^$third-party (easylist.txt: 29191) -.adm.shinobi.jp -# ||adlandpro.com^$third-party (easylist.txt: 29190) -.adlandpro.com -# ||adfoc.us/js/$third-party (easylist.txt: 29188) -.adfoc.us/js/ -# ||adf.ly^*/link-converter.js$third-party (easylist.txt: 29187) -.adf.ly/.*/link-converter\.js -# ||addme.com/images/addme_$third-party (easylist.txt: 29183) -.addme.com/images/addme_ -# ||ad2links.com/js/$third-party (easylist.txt: 29178) -.ad2links.com/js/ -# ||ad.zaman.com.tr^$third-party (easylist.txt: 29177) -.ad.zaman.com.tr -# ||ad.wsod.com^$third-party (easylist.txt: 29176) -.ad.wsod.com -# ||ad.valuecalling.com^$third-party (easylist.txt: 29173) -.ad.valuecalling.com -# ||ad.sponsoreo.com^$third-party (easylist.txt: 29172) -.ad.sponsoreo.com -# ||ad.sharethis.com^$third-party (easylist.txt: 29169) -.ad.sharethis.com -# ||ad.realmcdn.net^$third-party (easylist.txt: 29166) -.ad.realmcdn.net -# ||ad.premiumonlinemedia.com^$third-party (easylist.txt: 29162) -.ad.premiumonlinemedia.com -# ||ad.netcommunities.com^$third-party (easylist.txt: 29158) -.ad.netcommunities.com -# ||ad.mygamesol.com^$third-party (easylist.txt: 29157) -.ad.mygamesol.com -# ||ad.linkstorms.com^$third-party (easylist.txt: 29153) -.ad.linkstorms.com -# ||ad.lijit.com^$third-party (easylist.txt: 29152) -.ad.lijit.com -# ||ad.jokeroo.com^$third-party (easylist.txt: 29151) -.ad.jokeroo.com -# ||ad.indomp3z.us^$third-party (easylist.txt: 29149) -.ad.indomp3z.us -# ||ad.imad.co.kr^$third-party (easylist.txt: 29148) -.ad.imad.co.kr -# ||ad.ghfusion.com^$third-party (easylist.txt: 29145) -.ad.ghfusion.com -# ||ad.e-kolay.net^$third-party (easylist.txt: 29142) -.ad.e-kolay.net -# ||ad.aquamediadirect.com^$third-party (easylist.txt: 29140) -.ad.aquamediadirect.com -# ||ad.23blogs.com^$third-party (easylist.txt: 29136) -.ad.23blogs.com -# ||ablacrack.com/popup-pvd.js$third-party (easylist.txt: 29135) -.ablacrack.com/popup-pvd\.js -# ||96.9.176.245^$third-party (easylist.txt: 29126) -.96.9.176.245 -# ||360pal.com/ads/$third-party (easylist.txt: 29117) -.360pal.com/ads/ -# ||2yu.in/banner/$third-party (easylist.txt: 29116) -.2yu.in/banner/ -# ||2leep.com/ticker2/$third-party (easylist.txt: 29115) -.2leep.com/ticker2/ -# ||2beon.co.kr/nad/$third-party (easylist.txt: 29114) -.2beon.co.kr/nad/ -# ||24hrlikes.com/images/$third-party (easylist.txt: 29113) -.24hrlikes.com/images/ -# ||24casino.cz/poker300-$third-party (easylist.txt: 29112) -.24casino.cz/poker300- -# ||110.45.173.103/ad/$third-party (easylist.txt: 29096) -.110.45.173.103/ad/ -# ||reporo.net^$third-party (easylist.txt: 28994) -.reporo.net -# ||ziphentai.com^$third-party (easylist.txt: 28992) -.ziphentai.com -# ||zinzimo.info^$third-party (easylist.txt: 28991) -.zinzimo.info -# ||zenkreka.com^$third-party (easylist.txt: 28990) -.zenkreka.com -# ||zboac.com^$third-party (easylist.txt: 28989) -.zboac.com -# ||yx0banners.com^$third-party (easylist.txt: 28988) -.yx0banners.com -# ||yuppads.com^$third-party (easylist.txt: 28987) -.yuppads.com -# ||yu0123456.com^$third-party (easylist.txt: 28986) -.yu0123456.com -# ||ypmadserver.com^$third-party (easylist.txt: 28985) -.ypmadserver.com -# ||yourdatelink.com^$third-party (easylist.txt: 28983) -.yourdatelink.com -# ||your-big.com^$third-party (easylist.txt: 28982) -.your-big.com -# ||yoshatia.com^$third-party (easylist.txt: 28981) -.yoshatia.com -# ||yobihost.com^$third-party (easylist.txt: 28980) -.yobihost.com -# ||yfum.com^$third-party (easylist.txt: 28979) -.yfum.com -# ||yesmessenger.com^$third-party (easylist.txt: 28978) -.yesmessenger.com -# ||yazcash.com^$third-party (easylist.txt: 28977) -.yazcash.com -# ||y72yuyr9.com^$third-party (easylist.txt: 28976) -.y72yuyr9.com -# ||xxxwebtraffic.com^$third-party (easylist.txt: 28975) -.xxxwebtraffic.com -# ||xxxvipporno.com^$third-party (easylist.txt: 28974) -.xxxvipporno.com -# ||xxxmatch.com^$third-party (easylist.txt: 28973) -.xxxmatch.com -# ||xxxlnk.com^$third-party (easylist.txt: 28972) -.xxxlnk.com -# ||xxxex.com^$third-party (easylist.txt: 28971) -.xxxex.com -# ||xxxblackbook.com^$third-party (easylist.txt: 28970) -.xxxblackbook.com -# ||xxxbannerswap.com^$third-party (easylist.txt: 28969) -.xxxbannerswap.com -# ||xxxallaccesspass.com^$third-party (easylist.txt: 28968) -.xxxallaccesspass.com -# ||xxltr.com^$third-party (easylist.txt: 28967) -.xxltr.com -# ||xpop.co^$third-party (easylist.txt: 28966) -.xpop.co -# ||xpollo.com^$third-party (easylist.txt: 28965) -.xpollo.com -# ||xoliter.com^$third-party (easylist.txt: 28964) -.xoliter.com -# ||xmediawebs.net^$third-party (easylist.txt: 28963) -.xmediawebs.net -# ||xlovecam.com^$third-party (easylist.txt: 28962) -.xlovecam.com -# ||xidx.org^$third-party (easylist.txt: 28961) -.xidx.org -# ||xhamstercams.com^$third-party (easylist.txt: 28960) -.xhamstercams.com -# ||xfuckbook.com^$third-party (easylist.txt: 28959) -.xfuckbook.com -# ||xf43506e8.pw^$third-party (easylist.txt: 28958) -.xf43506e8.pw -# ||xclicks.net^$third-party (easylist.txt: 28957) -.xclicks.net -# ||xclickdirect.com^$third-party (easylist.txt: 28956) -.xclickdirect.com -# ||xaxoro.com^^$third-party (easylist.txt: 28955) -.xaxoro.com/[^\w%.-] -# ||x3v66zlz.com^$third-party (easylist.txt: 28954) -.x3v66zlz.com -# ||x-exchanger.co.uk^$third-party (easylist.txt: 28953) -.x-exchanger.co.uk -# ||x-adservice.com^$third-party (easylist.txt: 28952) -.x-adservice.com -# ||wwwmobiroll.com^$third-party (easylist.txt: 28951) -.wwwmobiroll.com -# ||wqlkp.com^$third-party (easylist.txt: 28950) -.wqlkp.com -# ||worldsbestcams.com^$third-party (easylist.txt: 28949) -.worldsbestcams.com -# ||wood-pen.com^$third-party (easylist.txt: 28948) -.wood-pen.com -# ||wma.io^$third-party (easylist.txt: 28947) -.wma.io -# ||wildmatch.com^$third-party (easylist.txt: 28946) -.wildmatch.com -# ||wildhookups.com^$third-party (easylist.txt: 28945) -.wildhookups.com -# ||wifelovers.com^$third-party (easylist.txt: 28944) -.wifelovers.com -# ||whaleads.com^$third-party (easylist.txt: 28943) -.whaleads.com -# ||wetpeachcash.com^$third-party (easylist.txt: 28942) -.wetpeachcash.com -# ||weselltraffic.com^$third-party (easylist.txt: 28941) -.weselltraffic.com -# ||weownthetraffic.com^$third-party (easylist.txt: 28940) -.weownthetraffic.com -# ||webteaser.ru^$third-party (easylist.txt: 28939) -.webteaser.ru -# ||webstats.com.br^$third-party (easylist.txt: 28938) -.webstats.com.br -# ||websitepromoserver.com^$third-party (easylist.txt: 28937) -.websitepromoserver.com -# ||webclickmanager.com^$third-party (easylist.txt: 28936) -.webclickmanager.com -# ||webclickengine.com^$third-party (easylist.txt: 28935) -.webclickengine.com -# ||webcampromotions.com^$third-party (easylist.txt: 28934) -.webcampromotions.com -# ||webcambait.com^$third-party (easylist.txt: 28933) -.webcambait.com -# ||watchmygf.to^$third-party (easylist.txt: 28932) -.watchmygf.to -# ||warsomnet.com^$third-party (easylist.txt: 28931) -.warsomnet.com -# ||wamcash.com^$third-party (easylist.txt: 28930) -.wamcash.com -# ||walprater.com^$third-party (easylist.txt: 28929) -.walprater.com -# ||vsexshop.ru^$third-party (easylist.txt: 28928) -.vsexshop.ru -# ||vrstage.com^$third-party (easylist.txt: 28927) -.vrstage.com -# ||vroll.net^$third-party (easylist.txt: 28926) -.vroll.net -# ||voluumtrk.com^$third-party (easylist.txt: 28925) -.voluumtrk.com -# ||vogozae.ru^$third-party (easylist.txt: 28924) -.vogozae.ru -# ||vogotita.com^$third-party (easylist.txt: 28923) -.vogotita.com -# ||vogorana.ru^$third-party (easylist.txt: 28922) -.vogorana.ru -# ||vogopita.com^$third-party (easylist.txt: 28921) -.vogopita.com -# ||vod-cash.com^$third-party (easylist.txt: 28920) -.vod-cash.com -# ||vlogexpert.com^$third-party (easylist.txt: 28919) -.vlogexpert.com -# ||vlexokrako.com^$third-party (easylist.txt: 28918) -.vlexokrako.com -# ||vktr073.net^$third-party (easylist.txt: 28917) -.vktr073.net -# ||vividcash.com^$third-party (easylist.txt: 28916) -.vividcash.com -# ||virtuagirlhd.com^$third-party (easylist.txt: 28915) -.virtuagirlhd.com -# ||viewrtb.com^$third-party (easylist.txt: 28914) -.viewrtb.com -# ||video-people.com^$third-party (easylist.txt: 28913) -.video-people.com -# ||verticalaffiliation.com^$third-party (easylist.txt: 28912) -.verticalaffiliation.com -# ||ver-pelis.net^$third-party (easylist.txt: 28911) -.ver-pelis.net -# ||uxernab.com^$third-party (easylist.txt: 28910) -.uxernab.com -# ||uuidksinc.net^$third-party (easylist.txt: 28909) -.uuidksinc.net -# ||unlimedia.net^$third-party (easylist.txt: 28908) -.unlimedia.net -# ||unaspajas.com^$third-party (easylist.txt: 28907) -.unaspajas.com -# ||ukreggae.ru^$third-party (easylist.txt: 28906) -.ukreggae.ru -# ||tynyh.com^$third-party (easylist.txt: 28905) -.tynyh.com -# ||txxx.com^$third-party (easylist.txt: 28904) -.txxx.com -# ||twistyscash.com^$third-party (easylist.txt: 28903) -.twistyscash.com -# ||tvzavr.ru^$third-party (easylist.txt: 28902) -.tvzavr.ru -# ||tufosex.com.br^$third-party (easylist.txt: 28901) -.tufosex.com.br -# ||tubedspots.com^$third-party (easylist.txt: 28900) -.tubedspots.com -# ||tubeadnetwork.com^$third-party (easylist.txt: 28899) -.tubeadnetwork.com -# ||ttlmodels.com^$third-party (easylist.txt: 28898) -.ttlmodels.com -# ||try9.com^$third-party (easylist.txt: 28897) -.try9.com -# ||trw12.com^$third-party (easylist.txt: 28896) -.trw12.com -# ||trustedadserver.com^$third-party (easylist.txt: 28895) -.trustedadserver.com -# ||transexy.it^$third-party (easylist.txt: 28894) -.transexy.it -# ||trafogon.net^$third-party (easylist.txt: 28893) -.trafogon.net -# ||traficmax.fr^$third-party (easylist.txt: 28892) -.traficmax.fr -# ||trafficundercontrol.com^$third-party (easylist.txt: 28891) -.trafficundercontrol.com -# ||trafficstars.com^$third-party (easylist.txt: 28890) -.trafficstars.com -# ||trafficshop.com^$third-party (easylist.txt: 28889) -.trafficshop.com -# ||trafficpimps.com^$third-party (easylist.txt: 28888) -.trafficpimps.com -# ||trafficlearn.com^$third-party (easylist.txt: 28887) -.trafficlearn.com -# ||traffichunt.com^$third-party (easylist.txt: 28886) -.traffichunt.com -# ||trafficholder.com^$third-party (easylist.txt: 28885) -.trafficholder.com -# ||traffic.ru^$third-party (easylist.txt: 28884) -.traffic.ru -# ||traffic-in.com^$third-party (easylist.txt: 28883) -.traffic-in.com -# ||traffbiz.ru^$third-party (easylist.txt: 28882) -.traffbiz.ru -# ||trackerodss.eu^$third-party (easylist.txt: 28881) -.trackerodss.eu -# ||tracker2kss.eu^$third-party (easylist.txt: 28880) -.tracker2kss.eu -# ||tracelive.ru^$third-party (easylist.txt: 28879) -.tracelive.ru -# ||tossoffads.com^$third-party (easylist.txt: 28878) -.tossoffads.com -# ||torrent-anime.ru^$third-party (easylist.txt: 28877) -.torrent-anime.ru -# ||topbucks.com^$third-party (easylist.txt: 28876) -.topbucks.com -# ||top-sponsor.com^$third-party (easylist.txt: 28875) -.top-sponsor.com -# ||toget.ru^$third-party (easylist.txt: 28874) -.toget.ru -# ||todayssn.com^$third-party (easylist.txt: 28873) -.todayssn.com -# ||tmserver-2.net^$third-party (easylist.txt: 28872) -.tmserver-2.net -# ||tmserver-1.com^$third-party (easylist.txt: 28871) -.tmserver-1.com -# ||tm-core.net^$third-party (easylist.txt: 28870) -.tm-core.net -# ||tkhigh.com^$third-party (easylist.txt: 28869) -.tkhigh.com -# ||tizernet.com^$third-party (easylist.txt: 28868) -.tizernet.com -# ||titsbro.pw^$third-party (easylist.txt: 28867) -.titsbro.pw -# ||titsbro.org^$third-party (easylist.txt: 28866) -.titsbro.org -# ||titsbro.net^$third-party (easylist.txt: 28865) -.titsbro.net -# ||tinyweene.com^$third-party (easylist.txt: 28864) -.tinyweene.com -# ||tingrinter.com^$third-party (easylist.txt: 28863) -.tingrinter.com -# ||timteen.com^$third-party (easylist.txt: 28862) -.timteen.com -# ||thumbnail-galleries.net^$third-party (easylist.txt: 28861) -.thumbnail-galleries.net -# ||thesocialsexnetwork.com^$third-party (easylist.txt: 28860) -.thesocialsexnetwork.com -# ||thepayporn.com^$third-party (easylist.txt: 28859) -.thepayporn.com -# ||thebunsenburner.com^$third-party (easylist.txt: 28858) -.thebunsenburner.com -# ||the-adult-company.com^$third-party (easylist.txt: 28857) -.the-adult-company.com -# ||teendestruction.com^$third-party (easylist.txt: 28856) -.teendestruction.com -# ||tech-board.com^$third-party (easylist.txt: 28855) -.tech-board.com -# ||teaservizio.com^$third-party (easylist.txt: 28854) -.teaservizio.com -# ||teasernet.ru^$third-party (easylist.txt: 28853) -.teasernet.ru -# ||tarkita.ru^$third-party (easylist.txt: 28852) -.tarkita.ru -# ||targettrafficmarketing.net^$third-party (easylist.txt: 28851) -.targettrafficmarketing.net -# ||targetingnow.com^$third-party (easylist.txt: 28850) -.targetingnow.com -# ||talk-blog.com^$third-party (easylist.txt: 28849) -.talk-blog.com -# ||sweetstudents.com^$third-party (easylist.txt: 28848) -.sweetstudents.com -# ||sweetmedia.org^$third-party (easylist.txt: 28847) -.sweetmedia.org -# ||sv2.biz^$third-party (easylist.txt: 28846) -.sv2.biz -# ||sunnysmedia.com^$third-party (easylist.txt: 28845) -.sunnysmedia.com -# ||stripsaver.com^$third-party (easylist.txt: 28844) -.stripsaver.com -# ||streamateaccess.com^$third-party (easylist.txt: 28843) -.streamateaccess.com -# ||sterrencash.nl^$third-party (easylist.txt: 28842) -.sterrencash.nl -# ||steamtraffic.com^$third-party (easylist.txt: 28841) -.steamtraffic.com -# ||stat-data.net^$third-party (easylist.txt: 28840) -.stat-data.net -# ||startwebpromo.com^$third-party (easylist.txt: 28839) -.startwebpromo.com -# ||startede.com^$third-party (easylist.txt: 28838) -.startede.com -# ||squeeder.com^$third-party (easylist.txt: 28837) -.squeeder.com -# ||spunkycash.com^$third-party (easylist.txt: 28836) -.spunkycash.com -# ||spcwm.com^$third-party (easylist.txt: 28835) -.spcwm.com -# ||sortow.ru^$third-party (easylist.txt: 28834) -.sortow.ru -# ||solutionsadultes.com^$third-party (easylist.txt: 28833) -.solutionsadultes.com -# ||socialsexnetwork.net^$third-party (easylist.txt: 28832) -.socialsexnetwork.net -# ||smutty.com^$third-party (easylist.txt: 28831) -.smutty.com -# ||sms-xxx.com^$third-party (easylist.txt: 28830) -.sms-xxx.com -# ||smartbn.ru^$third-party (easylist.txt: 28829) -.smartbn.ru -# ||slendastic.com^$third-party (easylist.txt: 28828) -.slendastic.com -# ||skeettools.com^$third-party (easylist.txt: 28827) -.skeettools.com -# ||sjosteras.com^$third-party (easylist.txt: 28826) -.sjosteras.com -# ||sixsigmatraffic.com^$third-party (easylist.txt: 28825) -.sixsigmatraffic.com -# ||siccash.com^$third-party (easylist.txt: 28824) -.siccash.com -# ||shopping-centres.org^$third-party (easylist.txt: 28823) -.shopping-centres.org -# ||sexypower.net^$third-party (easylist.txt: 28822) -.sexypower.net -# ||sexy-ch.com^$third-party (easylist.txt: 28821) -.sexy-ch.com -# ||sexvertise.com^$third-party (easylist.txt: 28820) -.sexvertise.com -# ||sextubecash.com^$third-party (easylist.txt: 28819) -.sextubecash.com -# ||sextracker.com^$third-party (easylist.txt: 28818) -.sextracker.com -# ||sexsearch.com^$third-party (easylist.txt: 28817) -.sexsearch.com -# ||sexplaycam.com^$third-party (easylist.txt: 28816) -.sexplaycam.com -# ||sexopages.com^$third-party (easylist.txt: 28815) -.sexopages.com -# ||sexole.com^$third-party (easylist.txt: 28814) -.sexole.com -# ||sexlist.com^$third-party (easylist.txt: 28813) -.sexlist.com -# ||sexdatecash.com^$third-party (easylist.txt: 28812) -.sexdatecash.com -# ||sexad.net^$third-party (easylist.txt: 28811) -.sexad.net -# ||sesxc.com^$third-party (easylist.txt: 28810) -.sesxc.com -# ||senkinar.com^$third-party (easylist.txt: 28809) -.senkinar.com -# ||seitentipp.com^$third-party (easylist.txt: 28808) -.seitentipp.com -# ||seemybucks.com^$third-party (easylist.txt: 28807) -.seemybucks.com -# ||seekbang.com^$third-party (easylist.txt: 28806) -.seekbang.com -# ||secretbehindporn.com^$third-party (easylist.txt: 28805) -.secretbehindporn.com -# ||searchx.eu^$third-party (easylist.txt: 28804) -.searchx.eu -# ||searchpeack.com^$third-party (easylist.txt: 28803) -.searchpeack.com -# ||scenesgirls.com^$third-party (easylist.txt: 28802) -.scenesgirls.com -# ||sbs-ad.com^$third-party (easylist.txt: 28801) -.sbs-ad.com -# ||sascentral.com^$third-party (easylist.txt: 28800) -.sascentral.com -# ||sancdn.net^$third-party (easylist.txt: 28799) -.sancdn.net -# ||safelinktracker.com^$third-party (easylist.txt: 28798) -.safelinktracker.com -# ||russianlovematch.com^$third-party (easylist.txt: 28797) -.russianlovematch.com -# ||runetki.com^$third-party (easylist.txt: 28796) -.runetki.com -# ||runetki.co^$third-party (easylist.txt: 28795) -.runetki.co -# ||rulerclick.ru^$third-party (easylist.txt: 28794) -.rulerclick.ru -# ||rulerclick.com^$third-party (easylist.txt: 28793) -.rulerclick.com -# ||rukplaza.com^$third-party (easylist.txt: 28792) -.rukplaza.com -# ||rubanners.com^$third-party (easylist.txt: 28791) -.rubanners.com -# ||rtbsystem.com^$third-party (easylist.txt: 28790) -.rtbsystem.com -# ||rsdisp.ru^$third-party (easylist.txt: 28789) -.rsdisp.ru -# ||royal-cash.com^$third-party (easylist.txt: 28788) -.royal-cash.com -# ||robotadserver.com^$third-party (easylist.txt: 28787) -.robotadserver.com -# ||rmkflouh.com^$third-party (easylist.txt: 28786) -.rmkflouh.com -# ||rmbn.net^$third-party (easylist.txt: 28785) -.rmbn.net -# ||rlogoro.ru^$third-party (easylist.txt: 28784) -.rlogoro.ru -# ||rivcash.com^$third-party (easylist.txt: 28783) -.rivcash.com -# ||ripbwing.com^$third-party (easylist.txt: 28782) -.ripbwing.com -# ||rexbucks.com^$third-party (easylist.txt: 28781) -.rexbucks.com -# ||retoxo.com^$third-party (easylist.txt: 28780) -.retoxo.com -# ||retargetpro.net^$third-party (easylist.txt: 28779) -.retargetpro.net -# ||reprak.com^$third-party (easylist.txt: 28778) -.reprak.com -# ||reliablebanners.com^$third-party (easylist.txt: 28777) -.reliablebanners.com -# ||redpineapplemedia.com^$third-party (easylist.txt: 28776) -.redpineapplemedia.com -# ||redlightcenter.com^$third-party (easylist.txt: 28775) -.redlightcenter.com -# ||redirectoptimizer.com^$third-party (easylist.txt: 28774) -.redirectoptimizer.com -# ||redcash.net^$third-party (easylist.txt: 28773) -.redcash.net -# ||realitytraffic.com^$third-party (easylist.txt: 28772) -.realitytraffic.com -# ||realitycash.com^$third-party (easylist.txt: 28771) -.realitycash.com -# ||realdatechat.com^$third-party (easylist.txt: 28770) -.realdatechat.com -# ||real2clean.ru^$third-party (easylist.txt: 28769) -.real2clean.ru -# ||reachword.com^$third-party (easylist.txt: 28768) -.reachword.com -# ||rdiul.com^$third-party (easylist.txt: 28767) -.rdiul.com -# ||rareru.ru^$third-party (easylist.txt: 28766) -.rareru.ru -# ||ramctrlgate.com^$third-party (easylist.txt: 28765) -.ramctrlgate.com -# ||ragazzeinvendita.com^$third-party (easylist.txt: 28764) -.ragazzeinvendita.com -# ||rack-media.com^$third-party (easylist.txt: 28763) -.rack-media.com -# ||r7e0zhv8.com^$third-party (easylist.txt: 28762) -.r7e0zhv8.com -# ||quexotac.com^$third-party (easylist.txt: 28761) -.quexotac.com -# ||queronamoro.com^$third-party (easylist.txt: 28760) -.queronamoro.com -# ||quagodex.com^$third-party (easylist.txt: 28759) -.quagodex.com -# ||pyiel2bz.com^$third-party (easylist.txt: 28758) -.pyiel2bz.com -# ||putanapartners.com^$third-party (easylist.txt: 28757) -.putanapartners.com -# ||putags.com^$third-party (easylist.txt: 28756) -.putags.com -# ||pussyeatingclubcams.com^$third-party (easylist.txt: 28755) -.pussyeatingclubcams.com -# ||pussyeatingclub.com^$third-party (easylist.txt: 28754) -.pussyeatingclub.com -# ||publish4.com^$third-party (easylist.txt: 28753) -.publish4.com -# ||ptwebcams.com^$third-party (easylist.txt: 28752) -.ptwebcams.com -# ||ptrfc.com^$third-party (easylist.txt: 28751) -.ptrfc.com -# ||ptclassic.com^$third-party (easylist.txt: 28750) -.ptclassic.com -# ||psma01.com^$third-party (easylist.txt: 28749) -.psma01.com -# ||prscripts.com^$third-party (easylist.txt: 28748) -.prscripts.com -# ||protizer.ru^$third-party (easylist.txt: 28747) -.protizer.ru -# ||protect-x.com^$third-party (easylist.txt: 28746) -.protect-x.com -# ||promowebstar.com^$third-party (easylist.txt: 28745) -.promowebstar.com -# ||promotools.biz^$third-party (easylist.txt: 28744) -.promotools.biz -# ||promotion-campaigns.com^$third-party (easylist.txt: 28743) -.promotion-campaigns.com -# ||promocionesweb.com^$third-party (easylist.txt: 28742) -.promocionesweb.com -# ||promo4partners.com^$third-party (easylist.txt: 28741) -.promo4partners.com -# ||program3.com^$third-party (easylist.txt: 28740) -.program3.com -# ||profitstat.biz^$third-party (easylist.txt: 28739) -.profitstat.biz -# ||profistats.net^$third-party (easylist.txt: 28738) -.profistats.net -# ||privatewebseiten.com^$third-party (easylist.txt: 28737) -.privatewebseiten.com -# ||privateseiten.net^$third-party (easylist.txt: 28736) -.privateseiten.net -# ||private4.com^$third-party (easylist.txt: 28735) -.private4.com -# ||privacyprotector.com^$third-party (easylist.txt: 28734) -.privacyprotector.com -# ||premiumhdv.com^$third-party (easylist.txt: 28733) -.premiumhdv.com -# ||premature-ejaculation-causes.org^$third-party (easylist.txt: 28732) -.premature-ejaculation-causes.org -# ||ppc-direct.com^$third-party (easylist.txt: 28731) -.ppc-direct.com -# ||pourmajeurs.com^$third-party (easylist.txt: 28730) -.pourmajeurs.com -# ||portable-basketball.com^$third-party (easylist.txt: 28729) -.portable-basketball.com -# ||porntrack.com^$third-party (easylist.txt: 28728) -.porntrack.com -# ||pornoow.com^$third-party (easylist.txt: 28727) -.pornoow.com -# ||porno-file.ru^$third-party (easylist.txt: 28726) -.porno-file.ru -# ||pornleep.com^$third-party (easylist.txt: 28725) -.pornleep.com -# ||pornkings.com^$third-party (easylist.txt: 28724) -.pornkings.com -# ||pornearn.com^$third-party (easylist.txt: 28723) -.pornearn.com -# ||pornconversions.com^$third-party (easylist.txt: 28722) -.pornconversions.com -# ||pornattitude.com^$third-party (easylist.txt: 28721) -.pornattitude.com -# ||porn99.net^$third-party (easylist.txt: 28720) -.porn99.net -# ||porn88.net^$third-party (easylist.txt: 28719) -.porn88.net -# ||porn-site-builder.com^$third-party (easylist.txt: 28718) -.porn-site-builder.com -# ||porn-hitz.com^$third-party (easylist.txt: 28717) -.porn-hitz.com -# ||porn-ad.org^$third-party (easylist.txt: 28716) -.porn-ad.org -# ||porkolt.com^$third-party (easylist.txt: 28715) -.porkolt.com -# ||popupclick.ru^$third-party (easylist.txt: 28714) -.popupclick.ru -# ||poppcheck.de^$third-party (easylist.txt: 28713) -.poppcheck.de -# ||popdown.biz^$third-party (easylist.txt: 28712) -.popdown.biz -# ||popander.com^$third-party (easylist.txt: 28711) -.popander.com -# ||popander.biz^$third-party (easylist.txt: 28710) -.popander.biz -# ||pop-bazar.net^$third-party (easylist.txt: 28709) -.pop-bazar.net -# ||poonproscash.com^$third-party (easylist.txt: 28708) -.poonproscash.com -# ||polimantu.com^$third-party (easylist.txt: 28707) -.polimantu.com -# ||pnads.com^$third-party (easylist.txt: 28706) -.pnads.com -# ||plugrush.com^$third-party (easylist.txt: 28705) -.plugrush.com -# ||plantaosexy.com^$third-party (easylist.txt: 28704) -.plantaosexy.com -# ||plachetde.biz^$third-party (easylist.txt: 28703) -.plachetde.biz -# ||pinkhoneypots.com^$third-party (easylist.txt: 28702) -.pinkhoneypots.com -# ||pictureturn.com^$third-party (easylist.txt: 28701) -.pictureturn.com -# ||philstraffic.com^$third-party (easylist.txt: 28700) -.philstraffic.com -# ||pepipo.com^$third-party (easylist.txt: 28699) -.pepipo.com -# ||pecash.com^$third-party (easylist.txt: 28698) -.pecash.com -# ||partnercash.de^$third-party (easylist.txt: 28697) -.partnercash.de -# ||partnercash.com^$third-party (easylist.txt: 28696) -.partnercash.com -# ||parkingpremium.com^$third-party (easylist.txt: 28695) -.parkingpremium.com -# ||panoll.com^$third-party (easylist.txt: 28694) -.panoll.com -# ||paid-to-promote.net^$third-party (easylist.txt: 28693) -.paid-to-promote.net -# ||p51d20aa4.website^$third-party (easylist.txt: 28692) -.p51d20aa4.website -# ||ozonru.eu^$third-party (easylist.txt: 28691) -.ozonru.eu -# ||ozon.ru^$third-party (easylist.txt: 28689) -.ozon.ru -# ||ozelmedikal.com^$third-party (easylist.txt: 28688) -.ozelmedikal.com -# ||owpawuk.ru^$third-party (easylist.txt: 28687) -.owpawuk.ru -# ||owlopadjet.info^$third-party (easylist.txt: 28686) -.owlopadjet.info -# ||outster.com^$third-party (easylist.txt: 28685) -.outster.com -# ||otherprofit.com^$third-party (easylist.txt: 28684) -.otherprofit.com -# ||otaserve.net^$third-party (easylist.txt: 28683) -.otaserve.net -# ||orodi.ru^$third-party (easylist.txt: 28682) -.orodi.ru -# ||ordermc.com^$third-party (easylist.txt: 28681) -.ordermc.com -# ||onyarysh.ru^$third-party (easylist.txt: 28680) -.onyarysh.ru -# ||onhercam.com^$third-party (easylist.txt: 28679) -.onhercam.com -# ||omynews.net^$third-party (easylist.txt: 28678) -.omynews.net -# ||okeo.ru^$third-party (easylist.txt: 28677) -.okeo.ru -# ||odzb5nkp.com^$third-party (easylist.txt: 28676) -.odzb5nkp.com -# ||oddads.net^$third-party (easylist.txt: 28675) -.oddads.net -# ||o333o.com^$third-party (easylist.txt: 28674) -.o333o.com -# ||nvp2auf5.com^$third-party (easylist.txt: 28673) -.nvp2auf5.com -# ||nummobile.com^$third-party (easylist.txt: 28672) -.nummobile.com -# ||nsfwads.com^$third-party (easylist.txt: 28671) -.nsfwads.com -# ||nscash.com^$third-party (easylist.txt: 28670) -.nscash.com -# ||nkk31jjp.com^$third-party (easylist.txt: 28669) -.nkk31jjp.com -# ||njmaq.com^$third-party (easylist.txt: 28668) -.njmaq.com -# ||ningme.ru^$third-party (easylist.txt: 28667) -.ningme.ru -# ||nikkiscash.com^$third-party (easylist.txt: 28666) -.nikkiscash.com -# ||ngbn.net^$third-party (easylist.txt: 28665) -.ngbn.net -# ||newsexbook.com^$third-party (easylist.txt: 28664) -.newsexbook.com -# ||newnudecash.com^$third-party (easylist.txt: 28663) -.newnudecash.com -# ||newagerevenue.com^$third-party (easylist.txt: 28662) -.newagerevenue.com -# ||newads.bangbros.com^$third-party (easylist.txt: 28661) -.newads.bangbros.com -# ||neuesdate.com^$third-party (easylist.txt: 28660) -.neuesdate.com -# ||netosdesalim.info^$third-party (easylist.txt: 28659) -.netosdesalim.info -# ||nature-friend.com^$third-party (easylist.txt: 28658) -.nature-friend.com -# ||nastydollars.com^$third-party (easylist.txt: 28657) -.nastydollars.com -# ||n9nedegrees.com^$third-party (easylist.txt: 28656) -.n9nedegrees.com -# ||mywebclick.net^$third-party (easylist.txt: 28655) -.mywebclick.net -# ||myprecisionads.com^$third-party (easylist.txt: 28654) -.myprecisionads.com -# ||mymirror.biz^$third-party (easylist.txt: 28653) -.mymirror.biz -# ||myadultbanners.com^$third-party (easylist.txt: 28652) -.myadultbanners.com -# ||mtree.com^$third-party (easylist.txt: 28651) -.mtree.com -# ||mtoor.com^$third-party (easylist.txt: 28650) -.mtoor.com -# ||msquaredproductions.com^$third-party (easylist.txt: 28649) -.msquaredproductions.com -# ||mrskincash.com^$third-party (easylist.txt: 28648) -.mrskincash.com -# ||mpmcash.com^$third-party (easylist.txt: 28647) -.mpmcash.com -# ||mp3vicio.com^$third-party (easylist.txt: 28646) -.mp3vicio.com -# ||morehitserver.com^$third-party (easylist.txt: 28645) -.morehitserver.com -# ||mopilod.com^$third-party (easylist.txt: 28644) -.mopilod.com -# ||mobred.net^$third-party (easylist.txt: 28643) -.mobred.net -# ||mobilerevenu.com^$third-party (easylist.txt: 28642) -.mobilerevenu.com -# ||mobbobr.com^$third-party (easylist.txt: 28641) -.mobbobr.com -# ||mobalives.com^$third-party (easylist.txt: 28640) -.mobalives.com -# ||mo8mwxi1.com^$third-party (easylist.txt: 28639) -.mo8mwxi1.com -# ||mmaaxx.com^$third-party (easylist.txt: 28638) -.mmaaxx.com -# ||millioncash.ru^$third-party (easylist.txt: 28637) -.millioncash.ru -# ||might-stay.info^$third-party (easylist.txt: 28636) -.might-stay.info -# ||meubonus.com^$third-party (easylist.txt: 28635) -.meubonus.com -# ||methodcash.com^$third-party (easylist.txt: 28634) -.methodcash.com -# ||meta4-group.com^$third-party (easylist.txt: 28633) -.meta4-group.com -# ||menteret.com^$third-party (easylist.txt: 28632) -.menteret.com -# ||meineserver.com^$third-party (easylist.txt: 28631) -.meineserver.com -# ||megoads.eu^$third-party (easylist.txt: 28630) -.megoads.eu -# ||mediumpimpin.com^$third-party (easylist.txt: 28629) -.mediumpimpin.com -# ||mediagra.com^$third-party (easylist.txt: 28628) -.mediagra.com -# ||media-click.ru^$third-party (easylist.txt: 28627) -.media-click.ru -# ||meccahoo.com^$third-party (easylist.txt: 28626) -.meccahoo.com -# ||mdlsrv.com^$third-party (easylist.txt: 28625) -.mdlsrv.com -# ||mc-nudes.com^$third-party (easylist.txt: 28624) -.mc-nudes.com -# ||mb103.com^$third-party (easylist.txt: 28623) -.mb103.com -# ||mazetin.ru^$third-party (easylist.txt: 28622) -.mazetin.ru -# ||maxiadv.com^$third-party (easylist.txt: 28621) -.maxiadv.com -# ||maxcash.com^$third-party (easylist.txt: 28620) -.maxcash.com -# ||matrix-cash.com^$third-party (easylist.txt: 28619) -.matrix-cash.com -# ||matrimoniale3x.ro^$third-party (easylist.txt: 28618) -.matrimoniale3x.ro -# ||masterwanker.com^$third-party (easylist.txt: 28617) -.masterwanker.com -# ||markswebcams.com^$third-party (easylist.txt: 28616) -.markswebcams.com -# ||manfys.com^$third-party (easylist.txt: 28615) -.manfys.com -# ||mallorcash.com^$third-party (easylist.txt: 28614) -.mallorcash.com -# ||mallcom.com^$third-party (easylist.txt: 28613) -.mallcom.com -# ||mahnatka.ru^$third-party (easylist.txt: 28612) -.mahnatka.ru -# ||magical-sky.com^$third-party (easylist.txt: 28611) -.magical-sky.com -# ||madbanner.com^$third-party (easylist.txt: 28610) -.madbanner.com -# ||lyubnozo.ru^$third-party (easylist.txt: 28609) -.lyubnozo.ru -# ||luvcom.com^$third-party (easylist.txt: 28608) -.luvcom.com -# ||luvcash.com^$third-party (easylist.txt: 28607) -.luvcash.com -# ||lucidcommerce.com^$third-party (easylist.txt: 28606) -.lucidcommerce.com -# ||lsawards.com^$third-party (easylist.txt: 28605) -.lsawards.com -# ||lovercash.com^$third-party (easylist.txt: 28604) -.lovercash.com -# ||lovecam.com.br^$third-party (easylist.txt: 28603) -.lovecam.com.br -# ||loveadverts.com^$third-party (easylist.txt: 28602) -.loveadverts.com -# ||lostun.com^$third-party (easylist.txt: 28601) -.lostun.com -# ||loading-delivery1.com^$third-party (easylist.txt: 28600) -.loading-delivery1.com -# ||loa-traffic.com^$third-party (easylist.txt: 28599) -.loa-traffic.com -# ||lizads.com^$third-party (easylist.txt: 28598) -.lizads.com -# ||livetraf.com^$third-party (easylist.txt: 28597) -.livetraf.com -# ||livepromotools.com^$third-party (easylist.txt: 28596) -.livepromotools.com -# ||liveprivates.com^$third-party (easylist.txt: 28595) -.liveprivates.com -# ||livejasmin.tv^$third-party (easylist.txt: 28594) -.livejasmin.tv -# ||livecam.com^$third-party (easylist.txt: 28593) -.livecam.com -# ||links-and-traffic.com^$third-party (easylist.txt: 28592) -.links-and-traffic.com -# ||limon.biz^$third-party (easylist.txt: 28591) -.limon.biz -# ||lifepromo.biz^$third-party (easylist.txt: 28590) -.lifepromo.biz -# ||lickbylick.com^$third-party (easylist.txt: 28589) -.lickbylick.com -# ||legendarylars.com^$third-party (easylist.txt: 28588) -.legendarylars.com -# ||leche69.com^$third-party (easylist.txt: 28587) -.leche69.com -# ||lavantat.com^$third-party (easylist.txt: 28586) -.lavantat.com -# ||kwot.biz^$third-party (easylist.txt: 28585) -.kwot.biz -# ||kuhnivsemisrazu.ru^$third-party (easylist.txt: 28584) -.kuhnivsemisrazu.ru -# ||kolort.ru^$third-party (easylist.txt: 28583) -.kolort.ru -# ||kolitat.com^$third-party (easylist.txt: 28582) -.kolitat.com -# ||kolestence.com^$third-party (easylist.txt: 28581) -.kolestence.com -# ||kliklink.ru^$third-party (easylist.txt: 28580) -.kliklink.ru -# ||kinopokaz.org^$third-party (easylist.txt: 28579) -.kinopokaz.org -# ||kingpinmedia.net^$third-party (easylist.txt: 28578) -.kingpinmedia.net -# ||kaplay.com^$third-party (easylist.txt: 28577) -.kaplay.com -# ||kadam.ru^$third-party (easylist.txt: 28576) -.kadam.ru -# ||k9x.net^$third-party (easylist.txt: 28575) -.k9x.net -# ||jz9ugaqb.com^$third-party (easylist.txt: 28574) -.jz9ugaqb.com -# ||justresa.com^$third-party (easylist.txt: 28573) -.justresa.com -# ||juicycash.net^$third-party (easylist.txt: 28572) -.juicycash.net -# ||juicyads.com^$third-party (easylist.txt: 28571) -.juicyads.com -# ||joyourself.com^$third-party (easylist.txt: 28570) -.joyourself.com -# ||jowapt.com^$third-party (easylist.txt: 28569) -.jowapt.com -# ||joinnowinstantly.com^$third-party (easylist.txt: 28568) -.joinnowinstantly.com -# ||jfresi.com^$third-party (easylist.txt: 28567) -.jfresi.com -# ||jerrcotch.com^$third-party (easylist.txt: 28566) -.jerrcotch.com -# ||jaymancash.com^$third-party (easylist.txt: 28565) -.jaymancash.com -# ||javbucks.com^$third-party (easylist.txt: 28564) -.javbucks.com -# ||jackao.net^$third-party (easylist.txt: 28563) -.jackao.net -# ||ixspublic.com^$third-party (easylist.txt: 28562) -.ixspublic.com -# ||iwinnersadvantage.com^$third-party (easylist.txt: 28561) -.iwinnersadvantage.com -# ||itw.me^$third-party (easylist.txt: 28560) -.itw.me -# ||itslive.com^$third-party (easylist.txt: 28559) -.itslive.com -# ||itrxx.com^$third-party (easylist.txt: 28558) -.itrxx.com -# ||itmcash.com^$third-party (easylist.txt: 28557) -.itmcash.com -# ||iprofit.cc^$third-party (easylist.txt: 28556) -.iprofit.cc -# ||intrapromotion.com^$third-party (easylist.txt: 28555) -.intrapromotion.com -# ||internebula.net^$third-party (easylist.txt: 28554) -.internebula.net -# ||intellichatadult.com^$third-party (easylist.txt: 28553) -.intellichatadult.com -# ||inheart.ru^$third-party (easylist.txt: 28552) -.inheart.ru -# ||impotencehelp.info^$third-party (easylist.txt: 28551) -.impotencehelp.info -# ||ilovecheating.com^$third-party (easylist.txt: 28550) -.ilovecheating.com -# ||iheartbucks.com^$third-party (easylist.txt: 28549) -.iheartbucks.com -# ||igiplay.net^$third-party (easylist.txt: 28548) -.igiplay.net -# ||idolbucks.com^$third-party (easylist.txt: 28547) -.idolbucks.com -# ||ideal-sexe.com^$third-party (easylist.txt: 28546) -.ideal-sexe.com -# ||ictowaz.ru^$third-party (easylist.txt: 28545) -.ictowaz.ru -# ||icqadvert.org^$third-party (easylist.txt: 28544) -.icqadvert.org -# ||icetraffic.com^$third-party (easylist.txt: 28543) -.icetraffic.com -# ||hubtraffic.com^$third-party (easylist.txt: 28542) -.hubtraffic.com -# ||hsmclick.com^$third-party (easylist.txt: 28541) -.hsmclick.com -# ||hotsocials.com^$third-party (easylist.txt: 28540) -.hotsocials.com -# ||hot-socials.com^$third-party (easylist.txt: 28539) -.hot-socials.com -# ||hot-dances.com^$third-party (easylist.txt: 28538) -.hot-dances.com -# ||hostave4.net^$third-party (easylist.txt: 28537) -.hostave4.net -# ||host-go.info^$third-party (easylist.txt: 28536) -.host-go.info -# ||hornyspots.com^$third-party (easylist.txt: 28535) -.hornyspots.com -# ||hornymatches.com^$third-party (easylist.txt: 28534) -.hornymatches.com -# ||hoptopboy.com^$third-party (easylist.txt: 28533) -.hoptopboy.com -# ||hopilos.com^$third-party (easylist.txt: 28532) -.hopilos.com -# ||hookupbucks.com^$third-party (easylist.txt: 28531) -.hookupbucks.com -# ||home-soon.com^$third-party (easylist.txt: 28530) -.home-soon.com -# ||hizlireklam.com^$third-party (easylist.txt: 28529) -.hizlireklam.com -# ||hipals.com^$third-party (easylist.txt: 28528) -.hipals.com -# ||highnets.com^$third-party (easylist.txt: 28527) -.highnets.com -# ||hiddenbucks.com^$third-party (easylist.txt: 28526) -.hiddenbucks.com -# ||herezera.com^$third-party (easylist.txt: 28525) -.herezera.com -# ||hentaibiz.com^$third-party (easylist.txt: 28524) -.hentaibiz.com -# ||helltraffic.com^$third-party (easylist.txt: 28523) -.helltraffic.com -# ||gzbop.com^$third-party (easylist.txt: 28522) -.gzbop.com -# ||gunzblazingpromo.com^$third-party (easylist.txt: 28521) -.gunzblazingpromo.com -# ||gtsads.com^$third-party (easylist.txt: 28520) -.gtsads.com -# ||gridlockparadise.com^$third-party (easylist.txt: 28519) -.gridlockparadise.com -# ||greatcpm.com^$third-party (easylist.txt: 28518) -.greatcpm.com -# ||govereign.com^$third-party (easylist.txt: 28517) -.govereign.com -# ||golderotica.com^$third-party (easylist.txt: 28516) -.golderotica.com -# ||goklics.ru^$third-party (easylist.txt: 28515) -.goklics.ru -# ||goallurl.ru^$third-party (easylist.txt: 28514) -.goallurl.ru -# ||go2euroshop.com^$third-party (easylist.txt: 28513) -.go2euroshop.com -# ||glbtrk.com^$third-party (easylist.txt: 28512) -.glbtrk.com -# ||gl-cash.com^$third-party (easylist.txt: 28511) -.gl-cash.com -# ||ggwcash.com^$third-party (easylist.txt: 28510) -.ggwcash.com -# ||gfhdkse.com^$third-party (easylist.txt: 28509) -.gfhdkse.com -# ||getiton.com^$third-party (easylist.txt: 28508) -.getiton.com -# ||geoinventory.com^$third-party (easylist.txt: 28507) -.geoinventory.com -# ||geofamily.ru^$third-party (easylist.txt: 28506) -.geofamily.ru -# ||geoaddicted.net^$third-party (easylist.txt: 28505) -.geoaddicted.net -# ||genialradio.com^$third-party (easylist.txt: 28504) -.genialradio.com -# ||gefnaro.com^$third-party (easylist.txt: 28503) -.gefnaro.com -# ||gayxperience.com^$third-party (easylist.txt: 28502) -.gayxperience.com -# ||gayadpros.com^$third-party (easylist.txt: 28501) -.gayadpros.com -# ||ganardineroreal.com^$third-party (easylist.txt: 28500) -.ganardineroreal.com -# ||gamblespot.ru^$third-party (easylist.txt: 28499) -.gamblespot.ru -# ||g726n8cy.com^$third-party (easylist.txt: 28498) -.g726n8cy.com -# ||g6ni40i7.com^$third-party (easylist.txt: 28497) -.g6ni40i7.com -# ||funnypickuplinesforgirls.com^$third-party (easylist.txt: 28496) -.funnypickuplinesforgirls.com -# ||funcel.mobi^$third-party (easylist.txt: 28495) -.funcel.mobi -# ||fuelbuck.com^$third-party (easylist.txt: 28494) -.fuelbuck.com -# ||fuckyoucash.com^$third-party (easylist.txt: 28493) -.fuckyoucash.com -# ||fuckermedia.com^$third-party (easylist.txt: 28492) -.fuckermedia.com -# ||fuckbookdating.com^$third-party (easylist.txt: 28491) -.fuckbookdating.com -# ||fuckbook.cm^$third-party (easylist.txt: 28490) -.fuckbook.cm -# ||frutrun.com^$third-party (easylist.txt: 28489) -.frutrun.com -# ||frivol-ads.com^$third-party (easylist.txt: 28488) -.frivol-ads.com -# ||frestime.com^$third-party (easylist.txt: 28487) -.frestime.com -# ||frestacero.com^$third-party (easylist.txt: 28486) -.frestacero.com -# ||free-porn-vidz.com^$third-party (easylist.txt: 28485) -.free-porn-vidz.com -# ||freakads.com^$third-party (easylist.txt: 28484) -.freakads.com -# ||forgetstore.com^$third-party (easylist.txt: 28483) -.forgetstore.com -# ||fncash.com^$third-party (easylist.txt: 28482) -.fncash.com -# ||fmscash.com^$third-party (easylist.txt: 28481) -.fmscash.com -# ||flirtingsms.com^$third-party (easylist.txt: 28480) -.flirtingsms.com -# ||flirt4free.com^$third-party (easylist.txt: 28479) -.flirt4free.com -# ||flirt4e.com^$third-party (easylist.txt: 28478) -.flirt4e.com -# ||flipflapflo.net^$third-party (easylist.txt: 28477) -.flipflapflo.net -# ||flipflapflo.info^$third-party (easylist.txt: 28476) -.flipflapflo.info -# ||fleshlightgirls.com^$third-party (easylist.txt: 28475) -.fleshlightgirls.com -# ||fleshcash.com^$third-party (easylist.txt: 28474) -.fleshcash.com -# ||flashadtools.com^$third-party (easylist.txt: 28473) -.flashadtools.com -# ||findandtry.com^$third-party (easylist.txt: 28472) -.findandtry.com -# ||filthads.com^$third-party (easylist.txt: 28471) -.filthads.com -# ||fickads.net^$third-party (easylist.txt: 28470) -.fickads.net -# ||felixflow.com^$third-party (easylist.txt: 28469) -.felixflow.com -# ||feeder.xxx^$third-party (easylist.txt: 28468) -.feeder.xxx -# ||fanmalinin.ru^$third-party (easylist.txt: 28467) -.fanmalinin.ru -# ||facetz.net^$third-party (easylist.txt: 28466) -.facetz.net -# ||faceporn.com^$third-party (easylist.txt: 28465) -.faceporn.com -# ||facebookofsex.com^$third-party (easylist.txt: 28464) -.facebookofsex.com -# ||eyemedias.com^$third-party (easylist.txt: 28463) -.eyemedias.com -# ||exsifsi.ru^$third-party (easylist.txt: 28462) -.exsifsi.ru -# ||exoticads.com^$third-party (easylist.txt: 28461) -.exoticads.com -# ||exogripper.com^$third-party (easylist.txt: 28460) -.exogripper.com -# ||exoclickz.com^$third-party (easylist.txt: 28459) -.exoclickz.com -# ||exclusivepussy.com^$third-party (easylist.txt: 28458) -.exclusivepussy.com -# ||exchangecash.de^$third-party (easylist.txt: 28457) -.exchangecash.de -# ||euro4ads.de^$third-party (easylist.txt: 28456) -.euro4ads.de -# ||euro-rx.com^$third-party (easylist.txt: 28455) -.euro-rx.com -# ||eu2xml.com^$third-party (easylist.txt: 28454) -.eu2xml.com -# ||escortso.com^$third-party (easylist.txt: 28453) -.escortso.com -# ||erotizer.info^$third-party (easylist.txt: 28452) -.erotizer.info -# ||erotikdating.com^$third-party (easylist.txt: 28451) -.erotikdating.com -# ||erosadv.com^$third-party (easylist.txt: 28450) -.erosadv.com -# ||eragi.ru^$third-party (easylist.txt: 28449) -.eragi.ru -# ||enoratraffic.com^$third-party (easylist.txt: 28448) -.enoratraffic.com -# ||emediawebs.com^$third-party (easylist.txt: 28447) -.emediawebs.com -# ||eltepo.ru^$third-party (easylist.txt: 28446) -.eltepo.ru -# ||elekted.com^$third-party (easylist.txt: 28445) -.elekted.com -# ||ecortb.com^$third-party (easylist.txt: 28444) -.ecortb.com -# ||ebocornac.com^$third-party (easylist.txt: 28443) -.ebocornac.com -# ||ebdr2.com^$third-party (easylist.txt: 28442) -.ebdr2.com -# ||easyflirt.com^$third-party (easylist.txt: 28441) -.easyflirt.com -# ||easy-dating.org^$third-party (easylist.txt: 28440) -.easy-dating.org -# ||eadulttraffic.com^$third-party (easylist.txt: 28439) -.eadulttraffic.com -# ||dvdkinoteatr.com^$third-party (easylist.txt: 28438) -.dvdkinoteatr.com -# ||dtiserv2.com^$third-party (easylist.txt: 28437) -.dtiserv2.com -# ||dro4icho.ru^$third-party (easylist.txt: 28436) -.dro4icho.ru -# ||drevil.to^$third-party (easylist.txt: 28435) -.drevil.to -# ||doublegear.com^$third-party (easylist.txt: 28434) -.doublegear.com -# ||double-check.com^$third-party (easylist.txt: 28433) -.double-check.com -# ||dosugcz.biz^$third-party (easylist.txt: 28432) -.dosugcz.biz -# ||dofolo.ru^$third-party (easylist.txt: 28431) -.dofolo.ru -# ||divertura.com^$third-party (easylist.txt: 28430) -.divertura.com -# ||divascam.com^$third-party (easylist.txt: 28429) -.divascam.com -# ||discreetlocalgirls.com^$third-party (easylist.txt: 28428) -.discreetlocalgirls.com -# ||direction-x.com^$third-party (easylist.txt: 28427) -.direction-x.com -# ||directchat.tv^$third-party (easylist.txt: 28426) -.directchat.tv -# ||directadvert.ru^$third-party (easylist.txt: 28425) -.directadvert.ru -# ||digitaldesire.com^$third-party (easylist.txt: 28424) -.digitaldesire.com -# ||desiad.net^$third-party (easylist.txt: 28423) -.desiad.net -# ||depravedwhores.com^$third-party (easylist.txt: 28422) -.depravedwhores.com -# ||depilflash.tv^$third-party (easylist.txt: 28421) -.depilflash.tv -# ||denotyro.com^$third-party (easylist.txt: 28420) -.denotyro.com -# ||demanier.com^$third-party (easylist.txt: 28419) -.demanier.com -# ||deecash.com^$third-party (easylist.txt: 28418) -.deecash.com -# ||dblpmp.com^$third-party (easylist.txt: 28417) -.dblpmp.com -# ||datingidol.com^$third-party (easylist.txt: 28416) -.datingidol.com -# ||datingamateurs.com^$third-party (easylist.txt: 28415) -.datingamateurs.com -# ||datingadnetwork.com^$third-party (easylist.txt: 28414) -.datingadnetwork.com -# ||dating-adv.com^$third-party (easylist.txt: 28413) -.dating-adv.com -# ||datexchanges.net^$third-party (easylist.txt: 28412) -.datexchanges.net -# ||datetraders.com^$third-party (easylist.txt: 28411) -.datetraders.com -# ||datefunclub.com^$third-party (easylist.txt: 28410) -.datefunclub.com -# ||data.13dc235d.xyz^$third-party (easylist.txt: 28409) -.data.13dc235d.xyz -# ||data-ero-advertising.com^$third-party (easylist.txt: 28408) -.data-ero-advertising.com -# ||darangi.ru^$third-party (easylist.txt: 28407) -.darangi.ru -# ||danzabucks.com^$third-party (easylist.txt: 28406) -.danzabucks.com -# ||dana123.com^$third-party (easylist.txt: 28405) -.dana123.com -# ||dallavel.com^$third-party (easylist.txt: 28404) -.dallavel.com -# ||daffaite.com^$third-party (easylist.txt: 28403) -.daffaite.com -# ||d3b3e6340.website^$third-party (easylist.txt: 28402) -.d3b3e6340.website -# ||d29gqcij.com^$third-party (easylist.txt: 28401) -.d29gqcij.com -# ||d0main.ru^$third-party (easylist.txt: 28400) -.d0main.ru -# ||d-agency.net^$third-party (easylist.txt: 28399) -.d-agency.net -# ||cybernetentertainment.com^$third-party (easylist.txt: 28398) -.cybernetentertainment.com -# ||cyberbidhost.com^$third-party (easylist.txt: 28397) -.cyberbidhost.com -# ||cwgads.com^$third-party (easylist.txt: 28396) -.cwgads.com -# ||ctyzd.com^$third-party (easylist.txt: 28395) -.ctyzd.com -# ||crtracklink.com^$third-party (easylist.txt: 28394) -.crtracklink.com -# ||crocoads.com^$third-party (easylist.txt: 28393) -.crocoads.com -# ||creoads.com^$third-party (easylist.txt: 28392) -.creoads.com -# ||crakcash.com^$third-party (easylist.txt: 28391) -.crakcash.com -# ||crakbanner.com^$third-party (easylist.txt: 28390) -.crakbanner.com -# ||cpl1.ru^$third-party (easylist.txt: 28389) -.cpl1.ru -# ||cpacoreg.com^$third-party (easylist.txt: 28388) -.cpacoreg.com -# ||comunicazio.com^$third-party (easylist.txt: 28387) -.comunicazio.com -# ||colpory.com^$third-party (easylist.txt: 28386) -.colpory.com -# ||coloredguitar.com^$third-party (easylist.txt: 28385) -.coloredguitar.com -# ||coldhardcash.com^$third-party (easylist.txt: 28384) -.coldhardcash.com -# ||codelnet.com^$third-party (easylist.txt: 28383) -.codelnet.com -# ||cmdfnow.com^$third-party (easylist.txt: 28382) -.cmdfnow.com -# ||clicktrace.info^$third-party (easylist.txt: 28381) -.clicktrace.info -# ||clickthruserver.com^$third-party (easylist.txt: 28380) -.clickthruserver.com -# ||clicksvenue.com^$third-party (easylist.txt: 28379) -.clicksvenue.com -# ||clickpapa.com^$third-party (easylist.txt: 28378) -.clickpapa.com -# ||clickganic.com^$third-party (easylist.txt: 28377) -.clickganic.com -# ||clearac.com^$third-party (easylist.txt: 28376) -.clearac.com -# ||citysex.com^$third-party (easylist.txt: 28375) -.citysex.com -# ||chopstick16.com^$third-party (easylist.txt: 28374) -.chopstick16.com -# ||chestyry.com^$third-party (easylist.txt: 28373) -.chestyry.com -# ||che-ka.com^$third-party (easylist.txt: 28372) -.che-ka.com -# ||chatischat.com^$third-party (easylist.txt: 28371) -.chatischat.com -# ||cervicalknowledge.info^$third-party (easylist.txt: 28370) -.cervicalknowledge.info -# ||certified-apps.com^$third-party (easylist.txt: 28369) -.certified-apps.com -# ||cennter.com^$third-party (easylist.txt: 28368) -.cennter.com -# ||celogera.com^$third-party (easylist.txt: 28367) -.celogera.com -# ||celeb-ads.com^$third-party (easylist.txt: 28366) -.celeb-ads.com -# ||ceepq.com^$third-party (easylist.txt: 28365) -.ceepq.com -# ||cashtraff.com^$third-party (easylist.txt: 28364) -.cashtraff.com -# ||cashthat.com^$third-party (easylist.txt: 28363) -.cashthat.com -# ||cashlayer.com^$third-party (easylist.txt: 28362) -.cashlayer.com -# ||cash4movie.com^$third-party (easylist.txt: 28361) -.cash4movie.com -# ||cash-program.com^$third-party (easylist.txt: 28360) -.cash-program.com -# ||camzap.com^$third-party (easylist.txt: 28359) -.camzap.com -# ||camsitecash.com^$third-party (easylist.txt: 28358) -.camsitecash.com -# ||camsense.com^$third-party (easylist.txt: 28357) -.camsense.com -# ||campromos.nl^$third-party (easylist.txt: 28356) -.campromos.nl -# ||camprime.com^$third-party (easylist.txt: 28355) -.camprime.com -# ||camplacecash.com^$third-party (easylist.txt: 28354) -.camplacecash.com -# ||campartner.com^$third-party (easylist.txt: 28353) -.campartner.com -# ||camduty.com^$third-party (easylist.txt: 28352) -.camduty.com -# ||camdough.com^$third-party (easylist.txt: 28351) -.camdough.com -# ||camcrush.com^$third-party (easylist.txt: 28350) -.camcrush.com -# ||camads.net^$third-party (easylist.txt: 28349) -.camads.net -# ||cam4flat.com^$third-party (easylist.txt: 28348) -.cam4flat.com -# ||cam-lolita.net^$third-party (easylist.txt: 28347) -.cam-lolita.net -# ||bumskontakte.ch^$third-party (easylist.txt: 28346) -.bumskontakte.ch -# ||bumblecash.com^$third-party (easylist.txt: 28345) -.bumblecash.com -# ||brqvld0p.com^$third-party (easylist.txt: 28344) -.brqvld0p.com -# ||brothersincash.com^$third-party (easylist.txt: 28343) -.brothersincash.com -# ||brightcpm.net^$third-party (easylist.txt: 28342) -.brightcpm.net -# ||branzas.com^$third-party (easylist.txt: 28341) -.branzas.com -# ||bposterss.net^$third-party (easylist.txt: 28340) -.bposterss.net -# ||bookofsex.com^$third-party (easylist.txt: 28339) -.bookofsex.com -# ||boinkcash.com^$third-party (easylist.txt: 28338) -.boinkcash.com -# ||board-books.com^$third-party (easylist.txt: 28337) -.board-books.com -# ||blossoms.com^$third-party (easylist.txt: 28336) -.blossoms.com -# ||black-ghettos.info^$third-party (easylist.txt: 28335) -.black-ghettos.info -# ||biksibo.ru^$third-party (easylist.txt: 28334) -.biksibo.ru -# ||bgmtracker.com^$third-party (easylist.txt: 28333) -.bgmtracker.com -# ||betweendigital.com^$third-party (easylist.txt: 28332) -.betweendigital.com -# ||bestssn.com^$third-party (easylist.txt: 28331) -.bestssn.com -# ||bestholly.com^$third-party (easylist.txt: 28330) -.bestholly.com -# ||belasninfetas.org^$third-party (easylist.txt: 28329) -.belasninfetas.org -# ||belamicash.com^$third-party (easylist.txt: 28328) -.belamicash.com -# ||bcash4you.com^$third-party (easylist.txt: 28327) -.bcash4you.com -# ||baskodenta.com^$third-party (easylist.txt: 28326) -.baskodenta.com -# ||basesclick.ru^$third-party (easylist.txt: 28325) -.basesclick.ru -# ||banerator.net^$third-party (easylist.txt: 28324) -.banerator.net -# ||aztecash.com^$third-party (easylist.txt: 28323) -.aztecash.com -# ||azerbazer.com^$third-party (easylist.txt: 28322) -.azerbazer.com -# ||ax47mp-xp-21.com^$third-party (easylist.txt: 28321) -.ax47mp-xp-21.com -# ||awmpartners.com^$third-party (easylist.txt: 28320) -.awmpartners.com -# ||awmcenter.eu^$third-party (easylist.txt: 28319) -.awmcenter.eu -# ||augrenso.com^$third-party (easylist.txt: 28318) -.augrenso.com -# ||asiafriendfinder.com^$third-party (easylist.txt: 28317) -.asiafriendfinder.com -# ||are-ter.com^$third-party (easylist.txt: 28316) -.are-ter.com -# ||apromoweb.com^$third-party (easylist.txt: 28315) -.apromoweb.com -# ||antoball.com^$third-party (easylist.txt: 28314) -.antoball.com -# ||antaraimedia.com^$third-party (easylist.txt: 28313) -.antaraimedia.com -# ||angelpastel.com^$third-party (easylist.txt: 28312) -.angelpastel.com -# ||anastasia-international.com^$third-party (easylist.txt: 28311) -.anastasia-international.com -# ||amvotes.ru^$third-party (easylist.txt: 28310) -.amvotes.ru -# ||amtracking01.com^$third-party (easylist.txt: 28309) -.amtracking01.com -# ||allotraffic.com^$third-party (easylist.txt: 28308) -.allotraffic.com -# ||allosponsor.com^$third-party (easylist.txt: 28307) -.allosponsor.com -# ||alladultcash.com^$third-party (easylist.txt: 28306) -.alladultcash.com -# ||all-about-tech.com^$third-party (easylist.txt: 28305) -.all-about-tech.com -# ||alfatraffic.com^$third-party (easylist.txt: 28304) -.alfatraffic.com -# ||aipmedia.com^$third-party (easylist.txt: 28303) -.aipmedia.com -# ||aipbannerx.com^$third-party (easylist.txt: 28302) -.aipbannerx.com -# ||affiligay.net^$third-party (easylist.txt: 28301) -.affiligay.net -# ||affiliaxe.com^$third-party (easylist.txt: 28300) -.affiliaxe.com -# ||affiliation-int.com^$third-party (easylist.txt: 28299) -.affiliation-int.com -# ||affiliatewindow.com^$third-party (easylist.txt: 28298) -.affiliatewindow.com -# ||aeesy.com^$third-party (easylist.txt: 28297) -.aeesy.com -# ||adzs.com^$third-party (easylist.txt: 28296) -.adzs.com -# ||adxregie.com^$third-party (easylist.txt: 28295) -.adxregie.com -# ||adxpansion.com^$third-party (easylist.txt: 28294) -.adxpansion.com -# ||adxmarket.com^$third-party (easylist.txt: 28293) -.adxmarket.com -# ||adxite.com^$third-party (easylist.txt: 28292) -.adxite.com -# ||advsense.info^$third-party (easylist.txt: 28291) -.advsense.info -# ||advredir.com^$third-party (easylist.txt: 28290) -.advredir.com -# ||advprotraffic.com^$third-party (easylist.txt: 28289) -.advprotraffic.com -# ||advmania.com^$third-party (easylist.txt: 28288) -.advmania.com -# ||advmaker.ru^$third-party (easylist.txt: 28287) -.advmaker.ru -# ||advertrtb.com^$third-party (easylist.txt: 28286) -.advertrtb.com -# ||advertom.com^$third-party (easylist.txt: 28285) -.advertom.com -# ||advertisingsex.com^$third-party (easylist.txt: 28284) -.advertisingsex.com -# ||adventory.com^$third-party (easylist.txt: 28283) -.adventory.com -# ||adv777.com^$third-party (easylist.txt: 28282) -.adv777.com -# ||adv-plus.com^$third-party (easylist.txt: 28281) -.adv-plus.com -# ||adulttubetraffic.com^$third-party (easylist.txt: 28280) -.adulttubetraffic.com -# ||adulttiz.com^$third-party (easylist.txt: 28279) -.adulttiz.com -# ||adultsense.org^$third-party (easylist.txt: 28278) -.adultsense.org -# ||adultsense.com^$third-party (easylist.txt: 28277) -.adultsense.com -# ||adultpopunders.com^$third-party (easylist.txt: 28276) -.adultpopunders.com -# ||adultoafiliados.com.br^$third-party (easylist.txt: 28275) -.adultoafiliados.com.br -# ||adultmoviegroup.com^$third-party (easylist.txt: 28274) -.adultmoviegroup.com -# ||adultmediabuying.com^$third-party (easylist.txt: 28273) -.adultmediabuying.com -# ||adultlinkexchange.com^$third-party (easylist.txt: 28272) -.adultlinkexchange.com -# ||adultdatingtraffic.com^$third-party (easylist.txt: 28271) -.adultdatingtraffic.com -# ||adultcommercial.net^$third-party (easylist.txt: 28270) -.adultcommercial.net -# ||adultadvertising.net^$third-party (easylist.txt: 28269) -.adultadvertising.net -# ||adultadmedia.com^$third-party (easylist.txt: 28268) -.adultadmedia.com -# ||adultaccessnow.com^$third-party (easylist.txt: 28267) -.adultaccessnow.com -# ||adult3dcomics.com^$third-party (easylist.txt: 28266) -.adult3dcomics.com -# ||adsyst.biz^$third-party (easylist.txt: 28265) -.adsyst.biz -# ||adskape.ru^$third-party (easylist.txt: 28264) -.adskape.ru -# ||adshostview.com^$third-party (easylist.txt: 28263) -.adshostview.com -# ||adsgangsta.com^$third-party (easylist.txt: 28262) -.adsgangsta.com -# ||adsbr.info^$third-party (easylist.txt: 28261) -.adsbr.info -# ||adrent.net^$third-party (easylist.txt: 28260) -.adrent.net -# ||adpron.com^$third-party (easylist.txt: 28259) -.adpron.com -# ||adperiun.com^$third-party (easylist.txt: 28258) -.adperiun.com -# ||adparad.net^$third-party (easylist.txt: 28257) -.adparad.net -# ||adnetxchange.com^$third-party (easylist.txt: 28256) -.adnetxchange.com -# ||admez.com^$third-party (easylist.txt: 28255) -.admez.com -# ||adlook.net^$third-party (easylist.txt: 28254) -.adlook.net -# ||adjunky.com^$third-party (easylist.txt: 28253) -.adjunky.com -# ||adfux.com^$third-party (easylist.txt: 28252) -.adfux.com -# ||addbags.com^$third-party (easylist.txt: 28251) -.addbags.com -# ||adcell.de^$third-party (easylist.txt: 28250) -.adcell.de -# ||adbmi.com^$third-party (easylist.txt: 28249) -.adbmi.com -# ||adbars.net^$third-party (easylist.txt: 28248) -.adbars.net -# ||ad4partners.com^$third-party (easylist.txt: 28247) -.ad4partners.com -# ||ad001.ru^$third-party (easylist.txt: 28246) -.ad001.ru -# ||ad-u.com^$third-party (easylist.txt: 28245) -.ad-u.com -# ||ad-411.com^$third-party (easylist.txt: 28244) -.ad-411.com -# ||actionlocker.com^$third-party (easylist.txt: 28243) -.actionlocker.com -# ||acnescarsx.info^$third-party (easylist.txt: 28242) -.acnescarsx.info -# ||acmexxx.com^$third-party (easylist.txt: 28241) -.acmexxx.com -# ||abusedbabysitters.com^$third-party (easylist.txt: 28240) -.abusedbabysitters.com -# ||abgeobalancer.com^$third-party (easylist.txt: 28239) -.abgeobalancer.com -# ||abakys.ru^$third-party (easylist.txt: 28238) -.abakys.ru -# ||ab4tn.com^$third-party (easylist.txt: 28237) -.ab4tn.com -# ||aaovn.info^$third-party (easylist.txt: 28236) -.aaovn.info -# ||8ipztcc1.com^$third-party (easylist.txt: 28235) -.8ipztcc1.com -# ||89.248.172.46^$third-party (easylist.txt: 28234) -.89.248.172.46 -# ||85.17.210.202^$third-party (easylist.txt: 28233) -.85.17.210.202 -# ||80.77.113.200^$third-party (easylist.txt: 28232) -.80.77.113.200 -# ||7vws1j1j.com^$third-party (easylist.txt: 28231) -.7vws1j1j.com -# ||7cxcrejm.com^$third-party (easylist.txt: 28230) -.7cxcrejm.com -# ||777partners.com^$third-party (easylist.txt: 28229) -.777partners.com -# ||777partner.net^$third-party (easylist.txt: 28228) -.777partner.net -# ||777partner.com^$third-party (easylist.txt: 28227) -.777partner.com -# ||777-partners.net^$third-party (easylist.txt: 28226) -.777-partners.net -# ||777-partners.com^$third-party (easylist.txt: 28225) -.777-partners.com -# ||777-partner.net^$third-party (easylist.txt: 28224) -.777-partner.net -# ||777-partner.com^$third-party (easylist.txt: 28223) -.777-partner.com -# ||76.76.5.113^$third-party (easylist.txt: 28222) -.76.76.5.113 -# ||750industries.com^$third-party (easylist.txt: 28221) -.750industries.com -# ||699fy4ne.com^$third-party (easylist.txt: 28220) -.699fy4ne.com -# ||59zs1xei.com^$third-party (easylist.txt: 28219) -.59zs1xei.com -# ||4link.it^$third-party (easylist.txt: 28218) -.4link.it -# ||45i73jv6.com^$third-party (easylist.txt: 28217) -.45i73jv6.com -# ||40xbfzk8.com^$third-party (easylist.txt: 28216) -.40xbfzk8.com -# ||33traffic.com^$third-party (easylist.txt: 28215) -.33traffic.com -# ||24x7adservice.com^$third-party (easylist.txt: 28214) -.24x7adservice.com -# ||24smile.org^$third-party (easylist.txt: 28213) -.24smile.org -# ||247teencash.net^$third-party (easylist.txt: 28212) -.247teencash.net -# ||21sexturycash.com^$third-party (easylist.txt: 28211) -.21sexturycash.com -# ||212.150.34.117^$third-party (easylist.txt: 28210) -.212.150.34.117 -# ||206.217.206.137^$third-party (easylist.txt: 28209) -.206.217.206.137 -# ||1tizer.com^$third-party (easylist.txt: 28208) -.1tizer.com -# ||1loop.com^$third-party (easylist.txt: 28207) -.1loop.com -# ||195.228.74.26^$third-party (easylist.txt: 28206) -.195.228.74.26 -# ||18naked.com^$third-party (easylist.txt: 28205) -.18naked.com -# ||15yomodels.com^$third-party (easylist.txt: 28203) -.15yomodels.com -# ||123advertising.nl^$third-party (easylist.txt: 28202) -.123advertising.nl -# ||10y5gehv.com^$third-party (easylist.txt: 28201) -.10y5gehv.com -# ||100pour.com^$third-party (easylist.txt: 28200) -.100pour.com -# ||0llii0g6.com^$third-party (easylist.txt: 28199) -.0llii0g6.com -# ||zrfrornn.net^$third-party (easylist.txt: 27864) -.zrfrornn.net -# ||zomri.net^$third-party (easylist.txt: 27863) -.zomri.net -# ||ziccardia.com^$third-party (easylist.txt: 27862) -.ziccardia.com -# ||z4pick.com^$third-party (easylist.txt: 27861) -.z4pick.com -# ||yuasaghn.com^$third-party (easylist.txt: 27860) -.yuasaghn.com -# ||yrrrbn.me^$third-party (easylist.txt: 27859) -.yrrrbn.me -# ||ypprr.com^$third-party (easylist.txt: 27858) -.ypprr.com -# ||ypppdc.com^$third-party (easylist.txt: 27857) -.ypppdc.com -# ||yopdi.com^$third-party (easylist.txt: 27856) -.yopdi.com -# ||yomri.net^$third-party (easylist.txt: 27855) -.yomri.net -# ||yodr.net^$third-party (easylist.txt: 27854) -.yodr.net -# ||yobr.net^$third-party (easylist.txt: 27853) -.yobr.net -# ||yardr.net^$third-party (easylist.txt: 27852) -.yardr.net -# ||xylopologyn.com^$third-party (easylist.txt: 27851) -.xylopologyn.com -# ||xplrer.co^$third-party (easylist.txt: 27850) -.xplrer.co -# ||xcrsqg.com^$third-party (easylist.txt: 27849) -.xcrsqg.com -# ||wudr.net^$third-party (easylist.txt: 27848) -.wudr.net -# ||wuatriser.net^$third-party (easylist.txt: 27847) -.wuatriser.net -# ||wuarnurf.net^$third-party (easylist.txt: 27846) -.wuarnurf.net -# ||wopdi.com^$third-party (easylist.txt: 27845) -.wopdi.com -# ||wensdteuy.com^$third-party (easylist.txt: 27844) -.wensdteuy.com -# ||waddr.com^$third-party (easylist.txt: 27843) -.waddr.com -# ||vuadiolgy.net^$third-party (easylist.txt: 27842) -.vuadiolgy.net -# ||vopdi.com^$third-party (easylist.txt: 27841) -.vopdi.com -# ||virsualr.com^$third-party (easylist.txt: 27840) -.virsualr.com -# ||viewscout.com^$third-party (easylist.txt: 27839) -.viewscout.com -# ||v8bridge.link^$third-party (easylist.txt: 27838) -.v8bridge.link -# ||username1.link^$third-party (easylist.txt: 27837) -.username1.link -# ||uppo.co^$third-party (easylist.txt: 27836) -.uppo.co -# ||unuarvse.net^$third-party (easylist.txt: 27835) -.unuarvse.net -# ||tualipoly.net^$third-party (easylist.txt: 27834) -.tualipoly.net -# ||trndi.net^$third-party (easylist.txt: 27833) -.trndi.net -# ||trllxv.co^$third-party (easylist.txt: 27832) -.trllxv.co -# ||topdi.net^$third-party (easylist.txt: 27831) -.topdi.net -# ||tolosgrey.net^$third-party (easylist.txt: 27830) -.tolosgrey.net -# ||thrilamd.net^$third-party (easylist.txt: 27829) -.thrilamd.net -# ||thiscdn.com^$third-party (easylist.txt: 27828) -.thiscdn.com -# ||th4wwe.net^$third-party (easylist.txt: 27827) -.th4wwe.net -# ||t7row.com^$third-party (easylist.txt: 27826) -.t7row.com -# ||t3sort.com^$third-party (easylist.txt: 27825) -.t3sort.com -# ||sxrrxa.net^$third-party (easylist.txt: 27824) -.sxrrxa.net -# ||spoa-soard.com^$third-party (easylist.txt: 27823) -.spoa-soard.com -# ||splazards.com^$third-party (easylist.txt: 27822) -.splazards.com -# ||spereminf.com^$third-party (easylist.txt: 27821) -.spereminf.com -# ||simusangr.com^$third-party (easylist.txt: 27820) -.simusangr.com -# ||sfesd.net^$third-party (easylist.txt: 27819) -.sfesd.net -# ||selectr.net^$third-party (easylist.txt: 27818) -.selectr.net -# ||rugistratuan.com^$third-party (easylist.txt: 27817) -.rugistratuan.com -# ||rugistoto.net^$third-party (easylist.txt: 27816) -.rugistoto.net -# ||rterdf.me^$third-party (easylist.txt: 27815) -.rterdf.me -# ||rlex.org^$third-party (easylist.txt: 27814) -.rlex.org -# ||rigistrar.net^$third-party (easylist.txt: 27813) -.rigistrar.net -# ||rhgersf.com^$third-party (easylist.txt: 27812) -.rhgersf.com -# ||regersd.net^$third-party (easylist.txt: 27811) -.regersd.net -# ||rdige.com^$third-party (easylist.txt: 27810) -.rdige.com -# ||r3seek.com^$third-party (easylist.txt: 27809) -.r3seek.com -# ||qzsccm.com^$third-party (easylist.txt: 27808) -.qzsccm.com -# ||qewa33a.com^$third-party (easylist.txt: 27807) -.qewa33a.com -# ||q3sift.com^$third-party (easylist.txt: 27806) -.q3sift.com -# ||prndi.net^$third-party (easylist.txt: 27805) -.prndi.net -# ||prfffc.info^$third-party (easylist.txt: 27804) -.prfffc.info -# ||polawrg.com^$third-party (easylist.txt: 27803) -.polawrg.com -# ||pikkr.net^$third-party (easylist.txt: 27802) -.pikkr.net -# ||p7vortex.com^$third-party (easylist.txt: 27801) -.p7vortex.com -# ||opner.co^$third-party (easylist.txt: 27800) -.opner.co -# ||oplo.org^$third-party (easylist.txt: 27799) -.oplo.org -# ||nuaknamg.net^$third-party (easylist.txt: 27798) -.nuaknamg.net -# ||nrfort.com^$third-party (easylist.txt: 27797) -.nrfort.com -# ||maningrs.com^$third-party (easylist.txt: 27796) -.maningrs.com -# ||luadcik.com^$third-party (easylist.txt: 27795) -.luadcik.com -# ||loopr.co^$third-party (easylist.txt: 27794) -.loopr.co -# ||lirte.org^$third-party (easylist.txt: 27793) -.lirte.org -# ||lia-ndr.com^$third-party (easylist.txt: 27792) -.lia-ndr.com -# ||lesuard.com^$third-party (easylist.txt: 27791) -.lesuard.com -# ||leanoisgo.com^$third-party (easylist.txt: 27790) -.leanoisgo.com -# ||kuangard.net^$third-party (easylist.txt: 27789) -.kuangard.net -# ||knoandr.com^$third-party (easylist.txt: 27788) -.knoandr.com -# ||kioshow.com^$third-party (easylist.txt: 27787) -.kioshow.com -# ||kilomonj.net^$third-party (easylist.txt: 27786) -.kilomonj.net -# ||jusukrs.com^$third-party (easylist.txt: 27785) -.jusukrs.com -# ||juruasikr.net^$third-party (easylist.txt: 27784) -.juruasikr.net -# ||jellr.net^$third-party (easylist.txt: 27783) -.jellr.net -# ||jdrm4.com^$third-party (easylist.txt: 27782) -.jdrm4.com -# ||jaspensar.com^$third-party (easylist.txt: 27781) -.jaspensar.com -# ||ivism.org^$third-party (easylist.txt: 27780) -.ivism.org -# ||iunbrudy.net^$third-party (easylist.txt: 27779) -.iunbrudy.net -# ||ignup.com^$third-party (easylist.txt: 27778) -.ignup.com -# ||hoppr.co^$third-party (easylist.txt: 27777) -.hoppr.co -# ||holmgard.link^$third-party (easylist.txt: 27776) -.holmgard.link -# ||hobri.net^$third-party (easylist.txt: 27775) -.hobri.net -# ||heizuanubr.net^$third-party (easylist.txt: 27774) -.heizuanubr.net -# ||havnr.com^$third-party (easylist.txt: 27773) -.havnr.com -# ||hapnr.net^$third-party (easylist.txt: 27772) -.hapnr.net -# ||gusufrs.me^$third-party (easylist.txt: 27771) -.gusufrs.me -# ||gghfncd.net^$third-party (easylist.txt: 27770) -.gghfncd.net -# ||fuandarst.com^$third-party (easylist.txt: 27769) -.fuandarst.com -# ||frxrydv.com^$third-party (easylist.txt: 27768) -.frxrydv.com -# ||frxle.com^$third-party (easylist.txt: 27767) -.frxle.com -# ||fowar.net^$third-party (easylist.txt: 27766) -.fowar.net -# ||foulsomty.com^$third-party (easylist.txt: 27765) -.foulsomty.com -# ||flaurse.net^$third-party (easylist.txt: 27764) -.flaurse.net -# ||flaudnrs.me^$third-party (easylist.txt: 27763) -.flaudnrs.me -# ||faunsts.me^$third-party (easylist.txt: 27762) -.faunsts.me -# ||extonsuan.com^$third-party (easylist.txt: 27761) -.extonsuan.com -# ||exlpor.com^$third-party (easylist.txt: 27760) -.exlpor.com -# ||exernala.com^$third-party (easylist.txt: 27759) -.exernala.com -# ||excolobar.com^$third-party (easylist.txt: 27758) -.excolobar.com -# ||exciliburn.com^$third-party (easylist.txt: 27757) -.exciliburn.com -# ||exactly0r.com^$third-party (easylist.txt: 27756) -.exactly0r.com -# ||esults.net^$third-party (easylist.txt: 27755) -.esults.net -# ||ershgrst.com^$third-party (easylist.txt: 27754) -.ershgrst.com -# ||ergers.net^$third-party (easylist.txt: 27753) -.ergers.net -# ||entru.co^$third-party (easylist.txt: 27752) -.entru.co -# ||elepheny.com^$third-party (easylist.txt: 27751) -.elepheny.com -# ||edabl.net^$third-party (easylist.txt: 27750) -.edabl.net -# ||dutolats.net^$third-party (easylist.txt: 27749) -.dutolats.net -# ||duactinor.net^$third-party (easylist.txt: 27748) -.duactinor.net -# ||drfflt.info^$third-party (easylist.txt: 27747) -.drfflt.info -# ||draugonda.net^$third-party (easylist.txt: 27746) -.draugonda.net -# ||doumantr.com^$third-party (easylist.txt: 27745) -.doumantr.com -# ||domri.net^$third-party (easylist.txt: 27744) -.domri.net -# ||dilpy.org^$third-party (easylist.txt: 27743) -.dilpy.org -# ||diabolicaf.com^$third-party (easylist.txt: 27742) -.diabolicaf.com -# ||deuskex.link^$third-party (easylist.txt: 27741) -.deuskex.link -# ||d3lens.com^$third-party (easylist.txt: 27740) -.d3lens.com -# ||crhikay.me^$third-party (easylist.txt: 27739) -.crhikay.me -# ||cotnr.com^$third-party (easylist.txt: 27738) -.cotnr.com -# ||contentr.net^$third-party (easylist.txt: 27737) -.contentr.net -# ||contentolyze.net^$third-party (easylist.txt: 27736) -.contentolyze.net -# ||compoter.net^$third-party (easylist.txt: 27735) -.compoter.net -# ||coaterhand.net^$third-party (easylist.txt: 27734) -.coaterhand.net -# ||chualangry.com^$third-party (easylist.txt: 27733) -.chualangry.com -# ||chiuawa.net^$third-party (easylist.txt: 27732) -.chiuawa.net -# ||chansiar.net^$third-party (easylist.txt: 27731) -.chansiar.net -# ||casiours.com^$third-party (easylist.txt: 27730) -.casiours.com -# ||c8factor.com^$third-party (easylist.txt: 27729) -.c8factor.com -# ||buoalait.com^$third-party (easylist.txt: 27728) -.buoalait.com -# ||buhafr.net^$third-party (easylist.txt: 27727) -.buhafr.net -# ||buatongz.net^$third-party (easylist.txt: 27726) -.buatongz.net -# ||boafernd.com^$third-party (easylist.txt: 27725) -.boafernd.com -# ||bluazard.net^$third-party (easylist.txt: 27724) -.bluazard.net -# ||blipi.net^$third-party (easylist.txt: 27723) -.blipi.net -# ||bliankerd.net^$third-party (easylist.txt: 27722) -.bliankerd.net -# ||blazwuatr.com^$third-party (easylist.txt: 27721) -.blazwuatr.com -# ||blaundorz.com^$third-party (easylist.txt: 27720) -.blaundorz.com -# ||biastoful.net^$third-party (easylist.txt: 27719) -.biastoful.net -# ||biankord.net^$third-party (easylist.txt: 27718) -.biankord.net -# ||baungarnr.com^$third-party (easylist.txt: 27717) -.baungarnr.com -# ||batarsur.com^$third-party (easylist.txt: 27716) -.batarsur.com -# ||baordrid.com^$third-party (easylist.txt: 27715) -.baordrid.com -# ||artbr.net^$third-party (easylist.txt: 27714) -.artbr.net -# ||appr8.net^$third-party (easylist.txt: 27713) -.appr8.net -# ||anomiely.com^$third-party (easylist.txt: 27712) -.anomiely.com -# ||allianrd.net^$third-party (easylist.txt: 27711) -.allianrd.net -# ||advuatianf.com^$third-party (easylist.txt: 27710) -.advuatianf.com -# ||addo-mnton.com^$third-party (easylist.txt: 27709) -.addo-mnton.com -# ||accmndtion.org^$third-party (easylist.txt: 27708) -.accmndtion.org -# ||atresadvertising.com^$third-party (easylist.txt: 27706) -.atresadvertising.com -# ||adhood.com^$third-party (easylist.txt: 27705) -.adhood.com -# ||yieldmo.com^$third-party (easylist.txt: 27703) -.yieldmo.com -# ||waptrick.com^$third-party (easylist.txt: 27702) -.waptrick.com -# ||wapdollar.in^$third-party (easylist.txt: 27701) -.wapdollar.in -# ||vungle.com^$third-party (easylist.txt: 27700) -.vungle.com -# ||tapjoyads.com^$third-party (easylist.txt: 27699) -.tapjoyads.com -# ||stepkeydo.com^$third-party (easylist.txt: 27698) -.stepkeydo.com -# ||startappexchange.com^$third-party (easylist.txt: 27697) -.startappexchange.com -# ||smaato.net^$third-party (easylist.txt: 27696) -.smaato.net -# ||sascdn.com^$third-party (easylist.txt: 27695) -.sascdn.com -# ||mysearch-online.com^$third-party (easylist.txt: 27694) -.mysearch-online.com -# ||mojiva.com^$third-party (easylist.txt: 27693) -.mojiva.com -# ||mocean.mobi^$third-party (easylist.txt: 27692) -.mocean.mobi -# ||mobpartner.mobi^$third-party (easylist.txt: 27691) -.mobpartner.mobi -# ||mobizme.net^$third-party (easylist.txt: 27690) -.mobizme.net -# ||mobgold.com^$third-party (easylist.txt: 27689) -.mobgold.com -# ||mkhoj.com^$third-party (easylist.txt: 27688) -.mkhoj.com -# ||millennialmedia.com^$third-party (easylist.txt: 27687) -.millennialmedia.com -# ||mad-adz.com^$third-party (easylist.txt: 27686) -.mad-adz.com -# ||kuad.kusogi.com^$third-party (easylist.txt: 27685) -.kuad.kusogi.com -# ||inmobi.com^$third-party (easylist.txt: 27684) -.inmobi.com -# ||greystripe.com^$third-party (easylist.txt: 27683) -.greystripe.com -# ||doubleclick.net^*/pfadx/app.ytpwatch.$third-party (easylist.txt: 27682) -.doubleclick.net/.*/pfadx/app\.ytpwatch\. -# ||dmg-mobile.com^$third-party (easylist.txt: 27681) -.dmg-mobile.com -# ||buxx.mobi^$third-party (easylist.txt: 27680) -.buxx.mobi -# ||appads.com^$third-party (easylist.txt: 27679) -.appads.com -# ||amobee.com^$third-party (easylist.txt: 27678) -.amobee.com -# ||airpush.com^$third-party (easylist.txt: 27677) -.airpush.com -# ||adzmob.com^$third-party (easylist.txt: 27676) -.adzmob.com -# ||adwired.mobi^$third-party (easylist.txt: 27675) -.adwired.mobi -# ||adwhirl.com^$third-party (easylist.txt: 27674) -.adwhirl.com -# ||admob.com^$third-party (easylist.txt: 27673) -.admob.com -# ||adiquity.com^$third-party (easylist.txt: 27672) -.adiquity.com -# ||adcolony.com^$third-party (easylist.txt: 27671) -.adcolony.com -# ||adbuddiz.com^$third-party (easylist.txt: 27670) -.adbuddiz.com -# ||zypenetwork.com^$third-party (easylist.txt: 27668) -.zypenetwork.com -# ||zyiis.net^$third-party (easylist.txt: 27667) -.zyiis.net -# ||zxxds.net^$third-party (easylist.txt: 27666) -.zxxds.net -# ||zwaar.org^$third-party (easylist.txt: 27665) -.zwaar.org -# ||zugo.com^$third-party (easylist.txt: 27664) -.zugo.com -# ||zoomdirect.com.au^$third-party (easylist.txt: 27663) -.zoomdirect.com.au -# ||zonplug.com^$third-party (easylist.txt: 27662) -.zonplug.com -# ||zonealta.com^$third-party (easylist.txt: 27661) -.zonealta.com -# ||zompmedia.com^$third-party (easylist.txt: 27660) -.zompmedia.com -# ||zoglafi.info^$third-party (easylist.txt: 27659) -.zoglafi.info -# ||znaptag.com^$third-party (easylist.txt: 27658) -.znaptag.com -# ||zipropyl.com^$third-party (easylist.txt: 27657) -.zipropyl.com -# ||ziffdavis.com^$third-party (easylist.txt: 27656) -.ziffdavis.com -# ||zidae.com^$third-party (easylist.txt: 27655) -.zidae.com -# ||zferral.com^$third-party (easylist.txt: 27654) -.zferral.com -# ||zeropark.com^$third-party (easylist.txt: 27653) -.zeropark.com -# ||zerezas.com^$third-party (easylist.txt: 27652) -.zerezas.com -# ||zercstas.com^$third-party (easylist.txt: 27651) -.zercstas.com -# ||zenoviagroup.com^$third-party (easylist.txt: 27650) -.zenoviagroup.com -# ||zenoviaexchange.com^$third-party (easylist.txt: 27649) -.zenoviaexchange.com -# ||zeesiti.com^$third-party (easylist.txt: 27648) -.zeesiti.com -# ||zedo.com^$third-party (easylist.txt: 27647) -.zedo.com -# ||zeads.com^$third-party (easylist.txt: 27646) -.zeads.com -# ||zde-engage.com^$third-party (easylist.txt: 27645) -.zde-engage.com -# ||zapunited.com^$third-party (easylist.txt: 27644) -.zapunited.com -# ||zappy.co.za^$third-party (easylist.txt: 27643) -.zappy.co.za -# ||zaparena.com^$third-party (easylist.txt: 27642) -.zaparena.com -# ||zanox.com/ppv/$third-party (easylist.txt: 27641) -.zanox.com/ppv/ -# ||zanox-affiliate.de/ppv/$third-party (easylist.txt: 27640) -.zanox-affiliate.de/ppv/ -# ||zangocash.com^$third-party (easylist.txt: 27639) -.zangocash.com -# ||z5x.net^$third-party (easylist.txt: 27638) -.z5x.net -# ||z-defense.com^$third-party (easylist.txt: 27637) -.z-defense.com -# ||yzus09by.com^$third-party (easylist.txt: 27636) -.yzus09by.com -# ||yzrnur.com^$third-party (easylist.txt: 27635) -.yzrnur.com -# ||yz56lywd.com^$third-party (easylist.txt: 27634) -.yz56lywd.com -# ||yvoria.com^$third-party (easylist.txt: 27633) -.yvoria.com -# ||yupfiles.net^$third-party (easylist.txt: 27632) -.yupfiles.net -# ||yumenetworks.com^$third-party (easylist.txt: 27631) -.yumenetworks.com -# ||yucce.com^$third-party (easylist.txt: 27630) -.yucce.com -# ||yuarth.com^$third-party (easylist.txt: 27629) -.yuarth.com -# ||ytsa.net^$third-party (easylist.txt: 27628) -.ytsa.net -# ||yourquickads.com^$third-party (easylist.txt: 27627) -.yourquickads.com -# ||yourfastpaydayloans.com^$third-party (easylist.txt: 27626) -.yourfastpaydayloans.com -# ||youradexchange.com^$third-party (easylist.txt: 27625) -.youradexchange.com -# ||your-tornado-file.org^$third-party (easylist.txt: 27624) -.your-tornado-file.org -# ||your-tornado-file.com^$third-party (easylist.txt: 27623) -.your-tornado-file.com -# ||youlouk.com^$third-party (easylist.txt: 27622) -.youlouk.com -# ||youlamedia.com^$third-party (easylist.txt: 27621) -.youlamedia.com -# ||youcandoitwithroi.com^$third-party (easylist.txt: 27620) -.youcandoitwithroi.com -# ||yottacash.com^$third-party (easylist.txt: 27619) -.yottacash.com -# ||yoc-adserver.com^$third-party (easylist.txt: 27618) -.yoc-adserver.com -# ||ymads.com^$third-party (easylist.txt: 27617) -.ymads.com -# ||yllix.com^$third-party (easylist.txt: 27616) -.yllix.com -# ||yldmgrimg.net^$third-party (easylist.txt: 27615) -.yldmgrimg.net -# ||yldbt.com^$third-party (easylist.txt: 27614) -.yldbt.com -# ||yieldx.com^$third-party (easylist.txt: 27613) -.yieldx.com -# ||yieldselect.com^$third-party (easylist.txt: 27612) -.yieldselect.com -# ||yieldoptimizer.com^$third-party (easylist.txt: 27611) -.yieldoptimizer.com -# ||yieldmanager.net^$third-party (easylist.txt: 27610) -.yieldmanager.net -# ||yieldmanager.com^$third-party (easylist.txt: 27609) -.yieldmanager.com -# ||yieldlab.net^$third-party (easylist.txt: 27608) -.yieldlab.net -# ||yieldkit.com^$third-party (easylist.txt: 27607) -.yieldkit.com -# ||yieldbuild.com^$third-party (easylist.txt: 27606) -.yieldbuild.com -# ||yieldadvert.com^$third-party (easylist.txt: 27605) -.yieldadvert.com -# ||yieldads.com^$third-party (easylist.txt: 27604) -.yieldads.com -# ||yesnexus.com^$third-party (easylist.txt: 27603) -.yesnexus.com -# ||yesadsrv.com^$third-party (easylist.txt: 27602) -.yesadsrv.com -# ||yes-messenger.com^$third-party (easylist.txt: 27601) -.yes-messenger.com -# ||yellads.com^$third-party (easylist.txt: 27600) -.yellads.com -# ||yeabble.com^$third-party (easylist.txt: 27599) -.yeabble.com -# ||yceml.net^$third-party (easylist.txt: 27598) -.yceml.net -# ||ycasmd.info^$third-party (easylist.txt: 27597) -.ycasmd.info -# ||yb0t.com^$third-party (easylist.txt: 27596) -.yb0t.com -# ||yawnedgtuis.org^$third-party (easylist.txt: 27595) -.yawnedgtuis.org -# ||yashi.com^$third-party (easylist.txt: 27594) -.yashi.com -# ||yambotan.ru^$third-party (easylist.txt: 27593) -.yambotan.ru -# ||yadomedia.com^$third-party (easylist.txt: 27592) -.yadomedia.com -# ||yabuka.com^$third-party (easylist.txt: 27591) -.yabuka.com -# ||ya88s1yk.com^$third-party (easylist.txt: 27590) -.ya88s1yk.com -# ||xxlink.net^$third-party (easylist.txt: 27589) -.xxlink.net -# ||xx00.info^$third-party (easylist.txt: 27588) -.xx00.info -# ||xvika.com^$third-party (easylist.txt: 27587) -.xvika.com -# ||xubob.com^$third-party (easylist.txt: 27586) -.xubob.com -# ||xtendmedia.com^$third-party (easylist.txt: 27585) -.xtendmedia.com -# ||xtendadvert.com^$third-party (easylist.txt: 27584) -.xtendadvert.com -# ||xtcie.com^$third-party (easylist.txt: 27583) -.xtcie.com -# ||xs.mochiads.com^$third-party (easylist.txt: 27582) -.xs.mochiads.com -# ||xmlconfig.ltassrv.com^$third-party (easylist.txt: 27581) -.xmlconfig.ltassrv.com -# ||xmasdom.com^$third-party (easylist.txt: 27580) -.xmasdom.com -# ||xjfjx8hw.com^$third-party (easylist.txt: 27579) -.xjfjx8hw.com -# ||xgraph.net^$third-party (easylist.txt: 27578) -.xgraph.net -# ||xfs5yhr1.com^$third-party (easylist.txt: 27577) -.xfs5yhr1.com -# ||xfileload.com^$third-party (easylist.txt: 27576) -.xfileload.com -# ||xeontopa.com^$third-party (easylist.txt: 27575) -.xeontopa.com -# ||xdirectx.com^$third-party (easylist.txt: 27574) -.xdirectx.com -# ||xdev.info^$third-party (easylist.txt: 27573) -.xdev.info -# ||xchangebanners.com^$third-party (easylist.txt: 27572) -.xchangebanners.com -# ||xcelsiusadserver.com^$third-party (easylist.txt: 27571) -.xcelsiusadserver.com -# ||xcelltech.com^$third-party (easylist.txt: 27570) -.xcelltech.com -# ||xaxoro.com^$third-party (easylist.txt: 27569) -.xaxoro.com -# ||xadcentral.com^$third-party (easylist.txt: 27568) -.xadcentral.com -# ||xad.com^$third-party (easylist.txt: 27567) -.xad.com -# ||x4300tiz.com^$third-party (easylist.txt: 27566) -.x4300tiz.com -# ||x.mochiads.com^$third-party (easylist.txt: 27565) -.x.mochiads.com -# ||wwwpromoter.com^$third-party (easylist.txt: 27564) -.wwwpromoter.com -# ||wwwadcntr.com^$third-party (easylist.txt: 27563) -.wwwadcntr.com -# ||wwv4ez0n.com^$third-party (easylist.txt: 27562) -.wwv4ez0n.com -# ||wwbn.com^$third-party (easylist.txt: 27561) -.wwbn.com -# ||wurea.com^$third-party (easylist.txt: 27560) -.wurea.com -# ||wulium.com^$third-party (easylist.txt: 27559) -.wulium.com -# ||worthyadvertising.com^$third-party (easylist.txt: 27558) -.worthyadvertising.com -# ||worthathousandwords.com^$third-party (easylist.txt: 27557) -.worthathousandwords.com -# ||worldwidemailer.com^$third-party (easylist.txt: 27556) -.worldwidemailer.com -# ||worlddatinghere.com^$third-party (easylist.txt: 27555) -.worlddatinghere.com -# ||wordego.com^$third-party (easylist.txt: 27554) -.wordego.com -# ||wordbankads.com^$third-party (easylist.txt: 27553) -.wordbankads.com -# ||wootmedia.net^$third-party (easylist.txt: 27552) -.wootmedia.net -# ||wonclick.com^$third-party (easylist.txt: 27551) -.wonclick.com -# ||wmmediacorp.com^$third-party (easylist.txt: 27550) -.wmmediacorp.com -# ||wlmarketing.com^$third-party (easylist.txt: 27549) -.wlmarketing.com -# ||winsspeeder.info^$third-party (easylist.txt: 27548) -.winsspeeder.info -# ||wingads.com^$third-party (easylist.txt: 27547) -.wingads.com -# ||winbuyer.com^$third-party (easylist.txt: 27546) -.winbuyer.com -# ||wigetstudios.com^$third-party (easylist.txt: 27545) -.wigetstudios.com -# ||wigetmedia.com^$third-party (easylist.txt: 27544) -.wigetmedia.com -# ||widgetwidget.mobi^$third-party (easylist.txt: 27543) -.widgetwidget.mobi -# ||widgetvalue.net^$third-party (easylist.txt: 27542) -.widgetvalue.net -# ||widgetsurvey.biz^$third-party (easylist.txt: 27541) -.widgetsurvey.biz -# ||widgets.fccinteractive.com^$third-party (easylist.txt: 27540) -.widgets.fccinteractive.com -# ||widgetlead.net^$third-party (easylist.txt: 27539) -.widgetlead.net -# ||widgetbucks.com^$third-party (easylist.txt: 27538) -.widgetbucks.com -# ||widgetbanner.mobi^$third-party (easylist.txt: 27537) -.widgetbanner.mobi -# ||widgetadvertising.biz^$third-party (easylist.txt: 27536) -.widgetadvertising.biz -# ||widget.yavli.com^$third-party (easylist.txt: 27535) -.widget.yavli.com -# ||why-outsource.net^$third-party (easylist.txt: 27534) -.why-outsource.net -# ||whtsrv9.com^$third-party (easylist.txt: 27533) -.whtsrv9.com -# ||whoads.net^$third-party (easylist.txt: 27532) -.whoads.net -# ||where.com^$third-party (easylist.txt: 27531) -.where.com -# ||wh5kb0u4.com^$third-party (easylist.txt: 27530) -.wh5kb0u4.com -# ||wgreatdream.com^$third-party (easylist.txt: 27529) -.wgreatdream.com -# ||wfnetwork.com^$third-party (easylist.txt: 27528) -.wfnetwork.com -# ||werbe-sponsor.de^$third-party (easylist.txt: 27527) -.werbe-sponsor.de -# ||wellturnedpenne.info^$third-party (easylist.txt: 27526) -.wellturnedpenne.info -# ||wegotmedia.com^$third-party (easylist.txt: 27525) -.wegotmedia.com -# ||wegetpaid.net^$third-party (easylist.txt: 27524) -.wegetpaid.net -# ||webusersurvey.com^$third-party (easylist.txt: 27523) -.webusersurvey.com -# ||webtraffic.ttinet.com^$third-party (easylist.txt: 27522) -.webtraffic.ttinet.com -# ||webseeds.com^$third-party (easylist.txt: 27521) -.webseeds.com -# ||weborama.fr^$third-party (easylist.txt: 27520) -.weborama.fr -# ||webmedia.co.il^$third-party (easylist.txt: 27519) -.webmedia.co.il -# ||webgains.com^$third-party (easylist.txt: 27518) -.webgains.com -# ||webadvertise123.com^$third-party (easylist.txt: 27517) -.webadvertise123.com -# ||webads.nl^$third-party (easylist.txt: 27516) -.webads.nl -# ||webads.co.nz^$third-party (easylist.txt: 27515) -.webads.co.nz -# ||web-bird.jp^$third-party (easylist.txt: 27514) -.web-bird.jp -# ||web-adservice.com^$third-party (easylist.txt: 27513) -.web-adservice.com -# ||weadrevenue.com^$third-party (easylist.txt: 27512) -.weadrevenue.com -# ||wcpanalytics.com^$third-party (easylist.txt: 27511) -.wcpanalytics.com -# ||wcmcs.net^$third-party (easylist.txt: 27510) -.wcmcs.net -# ||wbptqzmv.com^$third-party (easylist.txt: 27509) -.wbptqzmv.com -# ||waymp.com^$third-party (easylist.txt: 27508) -.waymp.com -# ||wateristian.com^$third-party (easylist.txt: 27507) -.wateristian.com -# ||watchnowlive.eu^$third-party (easylist.txt: 27506) -.watchnowlive.eu -# ||watchfree.flv.in^$third-party (easylist.txt: 27505) -.watchfree.flv.in -# ||warfacco.com^$third-party (easylist.txt: 27504) -.warfacco.com -# ||warezlayer.to^$third-party (easylist.txt: 27503) -.warezlayer.to -# ||wangfenxi.com^$third-party (easylist.txt: 27502) -.wangfenxi.com -# ||wamnetwork.com^$third-party (easylist.txt: 27501) -.wamnetwork.com -# ||wallacemaloneymindanao.info^$third-party (easylist.txt: 27500) -.wallacemaloneymindanao.info -# ||wahoha.com^$third-party (easylist.txt: 27499) -.wahoha.com -# ||wagershare.com^$third-party (easylist.txt: 27498) -.wagershare.com -# ||waframedia8.com^$third-party (easylist.txt: 27497) -.waframedia8.com -# ||waframedia7.com^$third-party (easylist.txt: 27496) -.waframedia7.com -# ||waframedia5.com^$third-party (easylist.txt: 27495) -.waframedia5.com -# ||waframedia3.com^$third-party (easylist.txt: 27494) -.waframedia3.com -# ||wafmedia6.com^$third-party (easylist.txt: 27493) -.wafmedia6.com -# ||wafmedia5.com^$third-party (easylist.txt: 27492) -.wafmedia5.com -# ||wafmedia3.com^$third-party (easylist.txt: 27491) -.wafmedia3.com -# ||w9statistics.info^$third-party (easylist.txt: 27490) -.w9statistics.info -# ||w5statistics.info^$third-party (easylist.txt: 27489) -.w5statistics.info -# ||w4.com^$third-party (easylist.txt: 27488) -.w4.com -# ||w3exit.com^$third-party (easylist.txt: 27487) -.w3exit.com -# ||w00tmedia.net^$third-party (easylist.txt: 27486) -.w00tmedia.net -# ||w00tads.com^$third-party (easylist.txt: 27485) -.w00tads.com -# ||vuiads.net^$third-party (easylist.txt: 27484) -.vuiads.net -# ||vuiads.info^$third-party (easylist.txt: 27483) -.vuiads.info -# ||vuiads.de^$third-party (easylist.txt: 27482) -.vuiads.de -# ||vth05dse.com^$third-party (easylist.txt: 27481) -.vth05dse.com -# ||vsservers.net^$third-party (easylist.txt: 27480) -.vsservers.net -# ||vs4family.com^$third-party (easylist.txt: 27479) -.vs4family.com -# ||vs4entertainment.com^$third-party (easylist.txt: 27478) -.vs4entertainment.com -# ||vs20060817.com^$third-party (easylist.txt: 27477) -.vs20060817.com -# ||vpico.com^$third-party (easylist.txt: 27476) -.vpico.com -# ||vogozaw.ru^$third-party (easylist.txt: 27475) -.vogozaw.ru -# ||vogosita.com^$third-party (easylist.txt: 27474) -.vogosita.com -# ||vntsm.com^$third-party (easylist.txt: 27473) -.vntsm.com -# ||vixnixxer.com^$third-party (easylist.txt: 27472) -.vixnixxer.com -# ||vivamob.net^$third-party (easylist.txt: 27471) -.vivamob.net -# ||vitalads.net^$third-party (easylist.txt: 27470) -.vitalads.net -# ||visualsteel.net^$third-party (easylist.txt: 27469) -.visualsteel.net -# ||visitweb.com^$third-party (easylist.txt: 27468) -.visitweb.com -# ||visitdetails.com^$third-party (easylist.txt: 27467) -.visitdetails.com -# ||visiblegains.com^$third-party (easylist.txt: 27465) -.visiblegains.com -# ||visiads.com^$third-party (easylist.txt: 27464) -.visiads.com -# ||viralmediatech.com^$third-party (easylist.txt: 27463) -.viralmediatech.com -# ||vipquesting.com^$third-party (easylist.txt: 27462) -.vipquesting.com -# ||vipcpms.com^$third-party (easylist.txt: 27461) -.vipcpms.com -# ||vindicosuite.com^$third-party (easylist.txt: 27460) -.vindicosuite.com -# ||viewivo.com^$third-party (easylist.txt: 27459) -.viewivo.com -# ||viewex.co.uk^$third-party (easylist.txt: 27458) -.viewex.co.uk -# ||viewclc.com^$third-party (easylist.txt: 27457) -.viewclc.com -# ||viewablemedia.net^$third-party (easylist.txt: 27456) -.viewablemedia.net -# ||view.atdmt.com^*/view/$third-party (easylist.txt: 27455) -.view.atdmt.com/.*/view/ -# ||view.atdmt.com^*/iview/$third-party (easylist.txt: 27454) -.view.atdmt.com/.*/iview/ -# ||view.atdmt.com/partner/$third-party (easylist.txt: 27453) -.view.atdmt.com/partner/ -# ||view-ads.de^$third-party (easylist.txt: 27452) -.view-ads.de -# ||viedeo2k.tv^$third-party (easylist.txt: 27451) -.viedeo2k.tv -# ||vidpay.com^$third-party (easylist.txt: 27450) -.vidpay.com -# ||videovfr.com^$third-party (easylist.txt: 27449) -.videovfr.com -# ||videoroll.net^$third-party (easylist.txt: 27448) -.videoroll.net -# ||videologygroup.com^$third-party (easylist.txt: 27442) -.videologygroup.com -# ||videoliver.com^$third-party (easylist.txt: 27441) -.videoliver.com -# ||videolansoftware.com^$third-party (easylist.txt: 27440) -.videolansoftware.com -# ||videohube.eu^$third-party (easylist.txt: 27439) -.videohube.eu -# ||videohub.com^$third-party (easylist.txt: 27438) -.videohub.com -# ||videoegg.com^$third-party (easylist.txt: 27437) -.videoegg.com -# ||videodeals.com^$third-party (easylist.txt: 27436) -.videodeals.com -# ||videoclick.ru^$third-party (easylist.txt: 27435) -.videoclick.ru -# ||videoadex.com^$third-party (easylist.txt: 27434) -.videoadex.com -# ||video1404.info^$third-party (easylist.txt: 27433) -.video1404.info -# ||video-loader.com^$third-party (easylist.txt: 27432) -.video-loader.com -# ||vibrantmedia.com^$third-party (easylist.txt: 27431) -.vibrantmedia.com -# ||vibrant.co^$third-party (easylist.txt: 27430) -.vibrant.co -# ||vianadserver.com^$third-party (easylist.txt: 27429) -.vianadserver.com -# ||vhmnetwork.com^$third-party (easylist.txt: 27428) -.vhmnetwork.com -# ||versetime.com^$third-party (easylist.txt: 27427) -.versetime.com -# ||versahq.com^$third-party (easylist.txt: 27426) -.versahq.com -# ||verata.xyz^$third-party (easylist.txt: 27425) -.verata.xyz -# ||veoxa.com^$third-party (easylist.txt: 27424) -.veoxa.com -# ||venusbux.com^$third-party (easylist.txt: 27423) -.venusbux.com -# ||vendexo.com^$third-party (easylist.txt: 27422) -.vendexo.com -# ||vemba.com^$third-party (easylist.txt: 27421) -.vemba.com -# ||velti.com^$third-party (easylist.txt: 27420) -.velti.com -# ||velmedia.net^$third-party (easylist.txt: 27419) -.velmedia.net -# ||vellde.com^$third-party (easylist.txt: 27418) -.vellde.com -# ||vectorstock.com^$third-party (easylist.txt: 27417) -.vectorstock.com -# ||vdopia.com^$third-party (easylist.txt: 27416) -.vdopia.com -# ||vcommission.com^$third-party (easylist.txt: 27415) -.vcommission.com -# ||vcmedia.com^$third-party (easylist.txt: 27414) -.vcmedia.com -# ||vastopped.com^$third-party (easylist.txt: 27413) -.vastopped.com -# ||vapedia.com^$third-party (easylist.txt: 27412) -.vapedia.com -# ||valuecontent.net^$third-party (easylist.txt: 27411) -.valuecontent.net -# ||valuecommerce.com^$third-party (easylist.txt: 27410) -.valuecommerce.com -# ||valueclickmedia.com^$third-party (easylist.txt: 27409) -.valueclickmedia.com -# ||valueclick.net^$third-party (easylist.txt: 27408) -.valueclick.net -# ||valueclick.com^$third-party (easylist.txt: 27407) -.valueclick.com -# ||valueaffiliate.net^$third-party (easylist.txt: 27406) -.valueaffiliate.net -# ||valuead.com^$third-party (easylist.txt: 27405) -.valuead.com -# ||validclick.com^$third-party (easylist.txt: 27404) -.validclick.com -# ||vadpay.com^$third-party (easylist.txt: 27403) -.vadpay.com -# ||v2mlblack.biz^$third-party (easylist.txt: 27402) -.v2mlblack.biz -# ||v2cigs.com^$third-party (easylist.txt: 27401) -.v2cigs.com -# ||v11media.com^$third-party (easylist.txt: 27400) -.v11media.com -# ||v.movad.de^$third-party (easylist.txt: 27399) -.v.movad.de -# ||utubeconverter.com^$third-party (easylist.txt: 27397) -.utubeconverter.com -# ||utokapa.com^$third-party (easylist.txt: 27396) -.utokapa.com -# ||utarget.ru^$third-party (easylist.txt: 27395) -.utarget.ru -# ||utarget.co.uk^$third-party (easylist.txt: 27394) -.utarget.co.uk -# ||usurv.com^$third-party (easylist.txt: 27393) -.usurv.com -# ||usercash.com^$third-party (easylist.txt: 27392) -.usercash.com -# ||usenetpassport.com^$third-party (easylist.txt: 27391) -.usenetpassport.com -# ||usenetjunction.com^$third-party (easylist.txt: 27390) -.usenetjunction.com -# ||usemax.de^$third-party (easylist.txt: 27389) -.usemax.de -# ||usbanners.com^$third-party (easylist.txt: 27388) -.usbanners.com -# ||urlcash.net^$third-party (easylist.txt: 27387) -.urlcash.net -# ||urlads.net^$third-party (easylist.txt: 27386) -.urlads.net -# ||ureace.com^$third-party (easylist.txt: 27385) -.ureace.com -# ||urbation.net^$third-party (easylist.txt: 27384) -.urbation.net -# ||upliftsearch.com^$third-party (easylist.txt: 27383) -.upliftsearch.com -# ||upads.info^$third-party (easylist.txt: 27382) -.upads.info -# ||unterary.com^$third-party (easylist.txt: 27381) -.unterary.com -# ||unrulymedia.com^$third-party (easylist.txt: 27380) -.unrulymedia.com -# ||unlockr.com^$third-party (easylist.txt: 27379) -.unlockr.com -# ||universityofinternetscience.com^$third-party (easylist.txt: 27378) -.universityofinternetscience.com -# ||unitethecows.com^$third-party (easylist.txt: 27377) -.unitethecows.com -# ||unicast.com^$third-party (easylist.txt: 27376) -.unicast.com -# ||undertone.com^$third-party (easylist.txt: 27375) -.undertone.com -# ||underclick.ru^$third-party (easylist.txt: 27374) -.underclick.ru -# ||unanimis.co.uk^$third-party (easylist.txt: 27373) -.unanimis.co.uk -# ||ultimategracelessness.info^$third-party (easylist.txt: 27372) -.ultimategracelessness.info -# ||ukbanners.com^$third-party (easylist.txt: 27371) -.ukbanners.com -# ||uiqatnpooq.com^$third-party (easylist.txt: 27370) -.uiqatnpooq.com -# ||uiadserver.com^$third-party (easylist.txt: 27369) -.uiadserver.com -# ||uglyst.com^$third-party (easylist.txt: 27368) -.uglyst.com -# ||ughus.com^$third-party (easylist.txt: 27367) -.ughus.com -# ||ugaral.com^$third-party (easylist.txt: 27366) -.ugaral.com -# ||udmserve.net^$third-party (easylist.txt: 27365) -.udmserve.net -# ||ubudigital.com^$third-party (easylist.txt: 27364) -.ubudigital.com -# ||u1hw38x0.com^$third-party (easylist.txt: 27363) -.u1hw38x0.com -# ||u-ad.info^$third-party (easylist.txt: 27362) -.u-ad.info -# ||tyroo.com^$third-party (easylist.txt: 27361) -.tyroo.com -# ||twtad.com^$third-party (easylist.txt: 27360) -.twtad.com -# ||twittad.com^$third-party (easylist.txt: 27359) -.twittad.com -# ||twistads.com^$third-party (easylist.txt: 27358) -.twistads.com -# ||twinpinenetwork.com^$third-party (easylist.txt: 27357) -.twinpinenetwork.com -# ||tweard.com^$third-party (easylist.txt: 27356) -.tweard.com -# ||twalm.com^$third-party (easylist.txt: 27355) -.twalm.com -# ||tvprocessing.com^$third-party (easylist.txt: 27354) -.tvprocessing.com -# ||tvas-c.pw^$third-party (easylist.txt: 27353) -.tvas-c.pw -# ||tutvp.com^$third-party (easylist.txt: 27352) -.tutvp.com -# ||tusno.com^$third-party (easylist.txt: 27351) -.tusno.com -# ||turn.com^$third-party (easylist.txt: 27350) -.turn.com -# ||turbotraff.net^$third-party (easylist.txt: 27349) -.turbotraff.net -# ||tumri.net^$third-party (easylist.txt: 27348) -.tumri.net -# ||tubereplay.com^$third-party (easylist.txt: 27347) -.tubereplay.com -# ||tubemogul.com^$third-party (easylist.txt: 27346) -.tubemogul.com -# ||tubberlo.com^$third-party (easylist.txt: 27345) -.tubberlo.com -# ||ttzmedia.com^$third-party (easylist.txt: 27344) -.ttzmedia.com -# ||trygen.co.uk^$third-party (easylist.txt: 27343) -.trygen.co.uk -# ||truex.com^$third-party (easylist.txt: 27342) -.truex.com -# ||truesecurejump.com^$third-party (easylist.txt: 27341) -.truesecurejump.com -# ||trtrccl.com^$third-party (easylist.txt: 27340) -.trtrccl.com -# ||trmit.com^$third-party (easylist.txt: 27339) -.trmit.com -# ||trks.us^$third-party (easylist.txt: 27338) -.trks.us -# ||trklnks.com^$third-party (easylist.txt: 27337) -.trklnks.com -# ||trker.com^$third-party (easylist.txt: 27336) -.trker.com -# ||trkclk.net^$third-party (easylist.txt: 27335) -.trkclk.net -# ||trkalot.com^$third-party (easylist.txt: 27334) -.trkalot.com -# ||trk4.com^$third-party (easylist.txt: 27333) -.trk4.com -# ||trigami.com^$third-party (easylist.txt: 27332) -.trigami.com -# ||tribalfusion.com^$third-party (easylist.txt: 27331) -.tribalfusion.com -# ||triadmedianetwork.com^$third-party (easylist.txt: 27330) -.triadmedianetwork.com -# ||trenpyle.com^$third-party (easylist.txt: 27329) -.trenpyle.com -# ||tredirect.com^$third-party (easylist.txt: 27328) -.tredirect.com -# ||travidia.com^$third-party (easylist.txt: 27327) -.travidia.com -# ||travelscream.com^$third-party (easylist.txt: 27326) -.travelscream.com -# ||traveladvertising.com^$third-party (easylist.txt: 27325) -.traveladvertising.com -# ||trapasol.com^$third-party (easylist.txt: 27324) -.trapasol.com -# ||trahic.ru^$third-party (easylist.txt: 27323) -.trahic.ru -# ||traffirms.com^$third-party (easylist.txt: 27322) -.traffirms.com -# ||trafficzap.com^$third-party (easylist.txt: 27321) -.trafficzap.com -# ||trafficz.com^$third-party (easylist.txt: 27320) -.trafficz.com -# ||trafficwave.net^$third-party (easylist.txt: 27319) -.trafficwave.net -# ||trafficvance.com^$third-party (easylist.txt: 27318) -.trafficvance.com -# ||trafficular.com^$third-party (easylist.txt: 27317) -.trafficular.com -# ||traffictrader.net^$third-party (easylist.txt: 27316) -.traffictrader.net -# ||trafficsynergy.com^$third-party (easylist.txt: 27315) -.trafficsynergy.com -# ||trafficsway.com^$third-party (easylist.txt: 27314) -.trafficsway.com -# ||trafficswarm.com^$third-party (easylist.txt: 27313) -.trafficswarm.com -# ||trafficspaces.net^$third-party (easylist.txt: 27312) -.trafficspaces.net -# ||trafficrevenue.net^$third-party (easylist.txt: 27311) -.trafficrevenue.net -# ||trafficposse.com^$third-party (easylist.txt: 27310) -.trafficposse.com -# ||trafficmp.com^$third-party (easylist.txt: 27309) -.trafficmp.com -# ||trafficmasterz.net^$third-party (easylist.txt: 27308) -.trafficmasterz.net -# ||trafficjunky.net^$third-party (easylist.txt: 27307) -.trafficjunky.net -# ||traffichaus.com^$third-party (easylist.txt: 27306) -.traffichaus.com -# ||trafficforce.com^$third-party (easylist.txt: 27305) -.trafficforce.com -# ||trafficfactory.biz^$third-party (easylist.txt: 27304) -.trafficfactory.biz -# ||trafficbroker.com^$third-party (easylist.txt: 27303) -.trafficbroker.com -# ||trafficbarads.com^$third-party (easylist.txt: 27302) -.trafficbarads.com -# ||traffic-supremacy.com^$third-party (easylist.txt: 27301) -.traffic-supremacy.com -# ||traffboost.net^$third-party (easylist.txt: 27300) -.traffboost.net -# ||traff-advertazer.com^$third-party (easylist.txt: 27299) -.traff-advertazer.com -# ||tradepopups.com^$third-party (easylist.txt: 27298) -.tradepopups.com -# ||tradeexpert.net^$third-party (easylist.txt: 27297) -.tradeexpert.net -# ||tradeadexchange.com^$third-party (easylist.txt: 27296) -.tradeadexchange.com -# ||trackyourlinks.com^$third-party (easylist.txt: 27295) -.trackyourlinks.com -# ||trackword.net^$third-party (easylist.txt: 27294) -.trackword.net -# ||tracktor.co.uk^$third-party (easylist.txt: 27293) -.tracktor.co.uk -# ||trackthatad.com^$third-party (easylist.txt: 27292) -.trackthatad.com -# ||trackstarsengland.net^$third-party (easylist.txt: 27291) -.trackstarsengland.net -# ||trackpromotion.net^$third-party (easylist.txt: 27290) -.trackpromotion.net -# ||trackpath.biz^$third-party (easylist.txt: 27289) -.trackpath.biz -# ||trackingoffer.net^$third-party (easylist.txt: 27288) -.trackingoffer.net -# ||trackingoffer.info^$third-party (easylist.txt: 27287) -.trackingoffer.info -# ||tracking11.com^$third-party (easylist.txt: 27286) -.tracking11.com -# ||tracking101.com^$third-party (easylist.txt: 27285) -.tracking101.com -# ||tracking.to^$third-party (easylist.txt: 27284) -.tracking.to -# ||trackcorner.com^$third-party (easylist.txt: 27283) -.trackcorner.com -# ||trackadvertising.net^$third-party (easylist.txt: 27282) -.trackadvertising.net -# ||traceadmanager.com^$third-party (easylist.txt: 27281) -.traceadmanager.com -# ||tqlkg.net^$third-party (easylist.txt: 27280) -.tqlkg.net -# ||tqlkg.com^$third-party (easylist.txt: 27279) -.tqlkg.com -# ||tpnads.com^$third-party (easylist.txt: 27278) -.tpnads.com -# ||tower-colocation.info^$third-party (easylist.txt: 27277) -.tower-colocation.info -# ||tower-colocation.de^$third-party (easylist.txt: 27276) -.tower-colocation.de -# ||towardstelephone.com^$third-party (easylist.txt: 27275) -.towardstelephone.com -# ||totemcash.com^$third-party (easylist.txt: 27274) -.totemcash.com -# ||totalprofitplan.com^$third-party (easylist.txt: 27273) -.totalprofitplan.com -# ||total-media.net^$third-party (easylist.txt: 27272) -.total-media.net -# ||torrpedoads.net^$third-party (easylist.txt: 27271) -.torrpedoads.net -# ||torrida.net^$third-party (easylist.txt: 27270) -.torrida.net -# ||toroadvertising.com^$third-party (easylist.txt: 27269) -.toroadvertising.com -# ||torerolumiere.net^$third-party (easylist.txt: 27268) -.torerolumiere.net -# ||torconpro.com^$third-party (easylist.txt: 27267) -.torconpro.com -# ||torads.xyz^$third-party (easylist.txt: 27266) -.torads.xyz -# ||torads.me^$third-party (easylist.txt: 27265) -.torads.me -# ||tophotoffers.com^$third-party (easylist.txt: 27264) -.tophotoffers.com -# ||topfox.co.uk^$third-party (easylist.txt: 27263) -.topfox.co.uk -# ||topeuro.biz^$third-party (easylist.txt: 27262) -.topeuro.biz -# ||topcasino10.com^$third-party (easylist.txt: 27261) -.topcasino10.com -# ||topauto10.com^$third-party (easylist.txt: 27260) -.topauto10.com -# ||top26.net^$third-party (easylist.txt: 27259) -.top26.net -# ||tool-site.com^$third-party (easylist.txt: 27258) -.tool-site.com -# ||tonefuse.com^$third-party (easylist.txt: 27257) -.tonefuse.com -# ||tomekas.com^$third-party (easylist.txt: 27256) -.tomekas.com -# ||tollfreeforwarding.com^$third-party (easylist.txt: 27255) -.tollfreeforwarding.com -# ||tokenads.com^$third-party (easylist.txt: 27254) -.tokenads.com -# ||toboads.com^$third-party (easylist.txt: 27253) -.toboads.com -# ||tnyzin.ru^$third-party (easylist.txt: 27252) -.tnyzin.ru -# ||tlvmedia.com^$third-party (easylist.txt: 27251) -.tlvmedia.com -# ||tldadserv.com^$third-party (easylist.txt: 27250) -.tldadserv.com -# ||tkqlhce.com^$third-party (easylist.txt: 27249) -.tkqlhce.com -# ||tissage-extension.com^$third-party (easylist.txt: 27248) -.tissage-extension.com -# ||tiser.com^$third-party (easylist.txt: 27247) -.tiser.com -# ||tisadama.com^$third-party (easylist.txt: 27246) -.tisadama.com -# ||tinbuadserv.com^$third-party (easylist.txt: 27245) -.tinbuadserv.com -# ||tightexact.net^$third-party (easylist.txt: 27244) -.tightexact.net -# ||tidaltv.com^$third-party (easylist.txt: 27243) -.tidaltv.com -# ||thoughtsondance.info^$third-party (easylist.txt: 27242) -.thoughtsondance.info -# ||thoughtleadr.com^$third-party (easylist.txt: 27241) -.thoughtleadr.com -# ||thoseads.com^$third-party (easylist.txt: 27240) -.thoseads.com -# ||thewheelof.com^$third-party (easylist.txt: 27239) -.thewheelof.com -# ||thewebgemnetwork.com^$third-party (easylist.txt: 27238) -.thewebgemnetwork.com -# ||thepiratereactor.net^$third-party (easylist.txt: 27237) -.thepiratereactor.net -# ||themidnightmatulas.com^$third-party (easylist.txt: 27236) -.themidnightmatulas.com -# ||theloungenet.com^$third-party (easylist.txt: 27235) -.theloungenet.com -# ||thelistassassin.com^$third-party (easylist.txt: 27234) -.thelistassassin.com -# ||theequalground.info^$third-party (easylist.txt: 27233) -.theequalground.info -# ||thebflix.info^$third-party (easylist.txt: 27232) -.thebflix.info -# ||thebannerexchange.com^$third-party (easylist.txt: 27231) -.thebannerexchange.com -# ||theads.me^$third-party (easylist.txt: 27230) -.theads.me -# ||theadgateway.com^$third-party (easylist.txt: 27229) -.theadgateway.com -# ||thangasoline.com^$third-party (easylist.txt: 27228) -.thangasoline.com -# ||tgtmedia.com^$third-party (easylist.txt: 27227) -.tgtmedia.com -# ||tfag.de^$third-party (easylist.txt: 27226) -.tfag.de -# ||textsrv.com^$third-party (easylist.txt: 27225) -.textsrv.com -# ||textonlyads.com^$third-party (easylist.txt: 27224) -.textonlyads.com -# ||text-link-ads.com^$third-party (easylist.txt: 27223) -.text-link-ads.com -# ||testnet.nl^$third-party (easylist.txt: 27222) -.testnet.nl -# ||testfilter.com^$third-party (easylist.txt: 27221) -.testfilter.com -# ||terraclicks.com^$third-party (easylist.txt: 27220) -.terraclicks.com -# ||teracreative.com^$third-party (easylist.txt: 27219) -.teracreative.com -# ||teracent.net^$third-party (easylist.txt: 27218) -.teracent.net -# ||teosredic.com^$third-party (easylist.txt: 27217) -.teosredic.com -# ||tennerlist.com^$third-party (easylist.txt: 27216) -.tennerlist.com -# ||telemetryverification.net^$third-party (easylist.txt: 27215) -.telemetryverification.net -# ||technoratimedia.com^$third-party (easylist.txt: 27214) -.technoratimedia.com -# ||techclicks.net^$third-party (easylist.txt: 27213) -.techclicks.net -# ||tec-tec-boom.com^$third-party (easylist.txt: 27212) -.tec-tec-boom.com -# ||teasernet.com^$third-party (easylist.txt: 27211) -.teasernet.com -# ||teambetaffiliates.com^$third-party (easylist.txt: 27210) -.teambetaffiliates.com -# ||teads.tv^$third-party (easylist.txt: 27209) -.teads.tv -# ||td563.com^$third-party (easylist.txt: 27208) -.td563.com -# ||td553.com^$third-party (easylist.txt: 27207) -.td553.com -# ||tcadops.ca^$third-party (easylist.txt: 27206) -.tcadops.ca -# ||tbaffiliate.com^$third-party (easylist.txt: 27205) -.tbaffiliate.com -# ||tattomedia.com^$third-party (easylist.txt: 27204) -.tattomedia.com -# ||targetspot.com^$third-party (easylist.txt: 27203) -.targetspot.com -# ||targetpoint.com^$third-party (easylist.txt: 27202) -.targetpoint.com -# ||targetnet.com^$third-party (easylist.txt: 27201) -.targetnet.com -# ||targetadverts.com^$third-party (easylist.txt: 27200) -.targetadverts.com -# ||tardangro.com^$third-party (easylist.txt: 27199) -.tardangro.com -# ||tapad.com^$third-party (easylist.txt: 27198) -.tapad.com -# ||tangozebra.com^$third-party (easylist.txt: 27197) -.tangozebra.com -# ||talaropa.com^$third-party (easylist.txt: 27196) -.talaropa.com -# ||takensparks.com^$third-party (easylist.txt: 27195) -.takensparks.com -# ||tailsweep.com^$third-party (easylist.txt: 27194) -.tailsweep.com -# ||tagshost.com^$third-party (easylist.txt: 27193) -.tagshost.com -# ||tagjunction.com^$third-party (easylist.txt: 27192) -.tagjunction.com -# ||taggify.net^$third-party (easylist.txt: 27191) -.taggify.net -# ||tafmaster.com^$third-party (easylist.txt: 27190) -.tafmaster.com -# ||tacticalrepublic.com^$third-party (easylist.txt: 27189) -.tacticalrepublic.com -# ||tacoda.net^$third-party (easylist.txt: 27188) -.tacoda.net -# ||tacastas.com^$third-party (easylist.txt: 27187) -.tacastas.com -# ||t3q7af0z.com^$third-party (easylist.txt: 27186) -.t3q7af0z.com -# ||syndicatedsearchresults.com^$third-party (easylist.txt: 27185) -.syndicatedsearchresults.com -# ||synapsys.us^$third-party (easylist.txt: 27184) -.synapsys.us -# ||symbiosting.com^$third-party (easylist.txt: 27183) -.symbiosting.com -# ||swoop.com^$third-party (easylist.txt: 27182) -.swoop.com -# ||switchadhub.com^$third-party (easylist.txt: 27181) -.switchadhub.com -# ||swelen.com^$third-party (easylist.txt: 27180) -.swelen.com -# ||swbdds.com^$third-party (easylist.txt: 27179) -.swbdds.com -# ||swadvertising.org^$third-party (easylist.txt: 27178) -.swadvertising.org -# ||svlu.net^$third-party (easylist.txt: 27177) -.svlu.net -# ||suthome.com^$third-party (easylist.txt: 27176) -.suthome.com -# ||surveywidget.biz^$third-party (easylist.txt: 27175) -.surveywidget.biz -# ||surveyvalue.net^$third-party (easylist.txt: 27174) -.surveyvalue.net -# ||surveyvalue.mobi^$third-party (easylist.txt: 27173) -.surveyvalue.mobi -# ||survey-poll.com^$third-party (easylist.txt: 27172) -.survey-poll.com -# ||surfboarddigital.com.au^$third-party (easylist.txt: 27171) -.surfboarddigital.com.au -# ||surf-bar-traffic.com^$third-party (easylist.txt: 27170) -.surf-bar-traffic.com -# ||supremeadsonline.com^$third-party (easylist.txt: 27169) -.supremeadsonline.com -# ||supplyframe.com^$third-party (easylist.txt: 27168) -.supplyframe.com -# ||supersitetime.com^$third-party (easylist.txt: 27167) -.supersitetime.com -# ||superloofy.com^$third-party (easylist.txt: 27166) -.superloofy.com -# ||super-links.net^$third-party (easylist.txt: 27165) -.super-links.net -# ||suparewards.com^$third-party (easylist.txt: 27164) -.suparewards.com -# ||sunmedia.net^$third-party (easylist.txt: 27163) -.sunmedia.net -# ||sumarketing.co.uk^$third-party (easylist.txt: 27162) -.sumarketing.co.uk -# ||sulvo.co^$third-party (easylist.txt: 27161) -.sulvo.co -# ||suitesmart.com^$third-party (easylist.txt: 27160) -.suitesmart.com -# ||suite6ixty6ix.com^$third-party (easylist.txt: 27159) -.suite6ixty6ix.com -# ||suggesttool.com^$third-party (easylist.txt: 27158) -.suggesttool.com -# ||sugarlistsuggest.info^$third-party (easylist.txt: 27157) -.sugarlistsuggest.info -# ||suffusefacultytsunami.info^$third-party (easylist.txt: 27156) -.suffusefacultytsunami.info -# ||successfultogether.co.uk^$third-party (easylist.txt: 27155) -.successfultogether.co.uk -# ||submitexpress.co.uk^$third-party (easylist.txt: 27154) -.submitexpress.co.uk -# ||sublimemedia.net^$third-party (easylist.txt: 27153) -.sublimemedia.net -# ||style-eyes.eu^$third-party (easylist.txt: 27152) -.style-eyes.eu -# ||struq.com^$third-party (easylist.txt: 27151) -.struq.com -# ||strikead.com^$third-party (easylist.txt: 27150) -.strikead.com -# ||streamdownloadonline.com^$third-party (easylist.txt: 27149) -.streamdownloadonline.com -# ||streamate.com^$third-party (easylist.txt: 27148) -.streamate.com -# ||stocker.bonnint.net^$third-party (easylist.txt: 27147) -.stocker.bonnint.net -# ||stickyadstv.com^$third-party (easylist.txt: 27146) -.stickyadstv.com -# ||stealthlockers.com^$third-party (easylist.txt: 27145) -.stealthlockers.com -# ||statsmobi.com^$third-party (easylist.txt: 27144) -.statsmobi.com -# ||statelead.com^$third-party (easylist.txt: 27143) -.statelead.com -# ||statecannoticed.com^$third-party (easylist.txt: 27142) -.statecannoticed.com -# ||statcamp.net^$third-party (easylist.txt: 27141) -.statcamp.net -# ||startpagea.com^$third-party (easylist.txt: 27140) -.startpagea.com -# ||starlayer.com^$third-party (easylist.txt: 27139) -.starlayer.com -# ||stargamesaffiliate.com^$third-party (easylist.txt: 27138) -.stargamesaffiliate.com -# ||star-advertising.com^$third-party (easylist.txt: 27137) -.star-advertising.com -# ||standartads.com^$third-party (easylist.txt: 27136) -.standartads.com -# ||stalesplit.com^$third-party (easylist.txt: 27135) -.stalesplit.com -# ||stackattacka.com^$third-party (easylist.txt: 27134) -.stackattacka.com -# ||stackadapt.com^$third-party (easylist.txt: 27133) -.stackadapt.com -# ||stabletrappeddevote.info^$third-party (easylist.txt: 27132) -.stabletrappeddevote.info -# ||sta-ads.com^$third-party (easylist.txt: 27131) -.sta-ads.com -# ||srx.com.sg^$third-party (easylist.txt: 27130) -.srx.com.sg -# ||srtk.net^$third-party (easylist.txt: 27129) -.srtk.net -# ||sq2trk2.com^$third-party (easylist.txt: 27128) -.sq2trk2.com -# ||sproose.com^$third-party (easylist.txt: 27127) -.sproose.com -# ||sprintrade.com^$third-party (easylist.txt: 27126) -.sprintrade.com -# ||spoutable.com^$third-party (easylist.txt: 27125) -.spoutable.com -# ||spotxchange.com^$third-party (easylist.txt: 27124) -.spotxchange.com -# ||spottt.com^$third-party (easylist.txt: 27123) -.spottt.com -# ||spotscenered.info^$third-party (easylist.txt: 27122) -.spotscenered.info -# ||spotrails.com^$third-party (easylist.txt: 27121) -.spotrails.com -# ||sportsyndicator.com^$third-party (easylist.txt: 27120) -.sportsyndicator.com -# ||sponsorselect.com^$third-party (easylist.txt: 27119) -.sponsorselect.com -# ||sponsorpay.com^$third-party (easylist.txt: 27118) -.sponsorpay.com -# ||sponsorpalace.com^$third-party (easylist.txt: 27117) -.sponsorpalace.com -# ||sponsormob.com^$third-party (easylist.txt: 27116) -.sponsormob.com -# ||sponsoredtweets.com^$third-party (easylist.txt: 27115) -.sponsoredtweets.com -# ||sponsoredby.me^$third-party (easylist.txt: 27114) -.sponsoredby.me -# ||spongecell.com^$third-party (easylist.txt: 27113) -.spongecell.com -# ||spmxs.com^$third-party (easylist.txt: 27112) -.spmxs.com -# ||splut.com^$third-party (easylist.txt: 27111) -.splut.com -# ||splinky.com^$third-party (easylist.txt: 27110) -.splinky.com -# ||spinbox.net^$third-party (easylist.txt: 27109) -.spinbox.net -# ||spinbox.freedom.com^$third-party (easylist.txt: 27108) -.spinbox.freedom.com -# ||spiderhood.net^$third-party (easylist.txt: 27107) -.spiderhood.net -# ||speedsuccess.net^$third-party (easylist.txt: 27106) -.speedsuccess.net -# ||speedshiftmedia.com^$third-party (easylist.txt: 27105) -.speedshiftmedia.com -# ||speeb.com^$third-party (easylist.txt: 27104) -.speeb.com -# ||spectato.com^$third-party (easylist.txt: 27103) -.spectato.com -# ||specificmedia.com^$third-party (easylist.txt: 27102) -.specificmedia.com -# ||specificclick.net^$third-party (easylist.txt: 27101) -.specificclick.net -# ||sparkstudios.com^$third-party (easylist.txt: 27100) -.sparkstudios.com -# ||sotuktraffic.com^$third-party (easylist.txt: 27099) -.sotuktraffic.com -# ||sophiasearch.com^$third-party (easylist.txt: 27098) -.sophiasearch.com -# ||sonobi.com^$third-party (easylist.txt: 27097) -.sonobi.com -# ||sonnerie.net^$third-party (easylist.txt: 27096) -.sonnerie.net -# ||solutionzip.info^$third-party (easylist.txt: 27095) -.solutionzip.info -# ||solocpm.com^$third-party (easylist.txt: 27094) -.solocpm.com -# ||solarmosa.com^$third-party (easylist.txt: 27093) -.solarmosa.com -# ||solapoka.com^$third-party (easylist.txt: 27092) -.solapoka.com -# ||sokitosa.com^$third-party (easylist.txt: 27091) -.sokitosa.com -# ||softwares2015.com^$third-party (easylist.txt: 27090) -.softwares2015.com -# ||softpopads.com^$third-party (easylist.txt: 27089) -.softpopads.com -# ||softonicads.com^$third-party (easylist.txt: 27088) -.softonicads.com -# ||soft4dle.com^$third-party (easylist.txt: 27087) -.soft4dle.com -# ||sodud.com^$third-party (easylist.txt: 27086) -.sodud.com -# ||sociomantic.com^$third-party (easylist.txt: 27085) -.sociomantic.com -# ||sociocast.com^$third-party (easylist.txt: 27084) -.sociocast.com -# ||society6.com^$third-party (easylist.txt: 27083) -.society6.com -# ||socialspark.com^$third-party (easylist.txt: 27082) -.socialspark.com -# ||socialreach.com^$third-party (easylist.txt: 27081) -.socialreach.com -# ||socialmedia.com^$third-party (easylist.txt: 27080) -.socialmedia.com -# ||sociallypublish.com^$third-party (easylist.txt: 27079) -.sociallypublish.com -# ||socialelective.com^$third-party (easylist.txt: 27078) -.socialelective.com -# ||socialbirth.com^$third-party (easylist.txt: 27077) -.socialbirth.com -# ||sochr.com^$third-party (easylist.txt: 27076) -.sochr.com -# ||so-excited.com^$third-party (easylist.txt: 27075) -.so-excited.com -# ||sndkorea.co.kr^$third-party (easylist.txt: 27074) -.sndkorea.co.kr -# ||snap.com^$third-party (easylist.txt: 27073) -.snap.com -# ||sn00.net^$third-party (easylist.txt: 27072) -.sn00.net -# ||sms-mmm.com^$third-party (easylist.txt: 27071) -.sms-mmm.com -# ||smpgfx.com^$third-party (easylist.txt: 27070) -.smpgfx.com -# ||smowtion.com^$third-party (easylist.txt: 27069) -.smowtion.com -# ||smilyes4u.com^$third-party (easylist.txt: 27068) -.smilyes4u.com -# ||smileycentral.com^$third-party (easylist.txt: 27067) -.smileycentral.com -# ||smartyads.com^$third-party (easylist.txt: 27066) -.smartyads.com -# ||smarttds.ru^$third-party (easylist.txt: 27065) -.smarttds.ru -# ||smarttargetting.net^$third-party (easylist.txt: 27064) -.smarttargetting.net -# ||smarttargetting.com^$third-party (easylist.txt: 27063) -.smarttargetting.com -# ||smarttargetting.co.uk^$third-party (easylist.txt: 27062) -.smarttargetting.co.uk -# ||smarterdownloads.net^$third-party (easylist.txt: 27061) -.smarterdownloads.net -# ||smartdevicemedia.com^$third-party (easylist.txt: 27060) -.smartdevicemedia.com -# ||smartadserver.com^$third-party (easylist.txt: 27059) -.smartadserver.com -# ||smartad.ee^$third-party (easylist.txt: 27058) -.smartad.ee -# ||smart2.allocine.fr^$third-party (easylist.txt: 27057) -.smart2.allocine.fr -# ||smart.allocine.fr^$third-party (easylist.txt: 27056) -.smart.allocine.fr -# ||smart-feed-online.com^$third-party (easylist.txt: 27055) -.smart-feed-online.com -# ||smaclick.com^$third-party (easylist.txt: 27054) -.smaclick.com -# ||slinse.com^$third-party (easylist.txt: 27053) -.slinse.com -# ||slimtrade.com^$third-party (easylist.txt: 27052) -.slimtrade.com -# ||slimspots.com^$third-party (easylist.txt: 27051) -.slimspots.com -# ||slikslik.com^$third-party (easylist.txt: 27050) -.slikslik.com -# ||slfpu.com^$third-party (easylist.txt: 27049) -.slfpu.com -# ||skyscrpr.com^$third-party (easylist.txt: 27048) -.skyscrpr.com -# ||skyactivate.com^$third-party (easylist.txt: 27047) -.skyactivate.com -# ||skoovyads.com^$third-party (easylist.txt: 27046) -.skoovyads.com -# ||skinected.com^$third-party (easylist.txt: 27045) -.skinected.com -# ||skimlinks.com^$third-party (easylist.txt: 27044) -.skimlinks.com -# ||sittiad.com^$third-party (easylist.txt: 27043) -.sittiad.com -# ||sitethree.com^$third-party (easylist.txt: 27042) -.sitethree.com -# ||sitesense-oo.com^$third-party (easylist.txt: 27041) -.sitesense-oo.com -# ||sitescoutadserver.com^$third-party (easylist.txt: 27040) -.sitescoutadserver.com -# ||sitescout.com^$third-party (easylist.txt: 27039) -.sitescout.com -# ||siteencore.com^$third-party (easylist.txt: 27038) -.siteencore.com -# ||sitebrand.com^$third-party (easylist.txt: 27037) -.sitebrand.com -# ||simplyhired.com^$third-party (easylist.txt: 27036) -.simplyhired.com -# ||simply.com^$third-party (easylist.txt: 27035) -.simply.com -# ||simpio.com^$third-party (easylist.txt: 27034) -.simpio.com -# ||silverads.net^$third-party (easylist.txt: 27033) -.silverads.net -# ||silstavo.com^$third-party (easylist.txt: 27032) -.silstavo.com -# ||silence-ads.com^$third-party (easylist.txt: 27031) -.silence-ads.com -# ||siamzone.com^$third-party (easylist.txt: 27030) -.siamzone.com -# ||showyoursite.com^$third-party (easylist.txt: 27029) -.showyoursite.com -# ||shopzyapp.com^$third-party (easylist.txt: 27028) -.shopzyapp.com -# ||shoppingads.com^$third-party (easylist.txt: 27027) -.shoppingads.com -# ||shopalyst.com^$third-party (easylist.txt: 27026) -.shopalyst.com -# ||shoogloonetwork.com^$third-party (easylist.txt: 27025) -.shoogloonetwork.com -# ||sharethrough.com^$third-party (easylist.txt: 27024) -.sharethrough.com -# ||shareresults.com^$third-party (easylist.txt: 27023) -.shareresults.com -# ||sharegods.com^$third-party (easylist.txt: 27022) -.sharegods.com -# ||shareasale.com^$third-party (easylist.txt: 27021) -.shareasale.com -# ||share-server.com^$third-party (easylist.txt: 27020) -.share-server.com -# ||shakamech.com^$third-party (easylist.txt: 27019) -.shakamech.com -# ||sexmoney.com^$third-party (easylist.txt: 27018) -.sexmoney.com -# ||sevendaystart.com^$third-party (easylist.txt: 27017) -.sevendaystart.com -# ||sevenads.net^$third-party (easylist.txt: 27016) -.sevenads.net -# ||sev4ifmxa.com^$third-party (easylist.txt: 27015) -.sev4ifmxa.com -# ||sethads.info^$third-party (easylist.txt: 27014) -.sethads.info -# ||serving-sys.com^$third-party (easylist.txt: 27013) -.serving-sys.com -# ||servemeads.com^$third-party (easylist.txt: 27012) -.servemeads.com -# ||servedbyopenx.com^$third-party (easylist.txt: 27011) -.servedbyopenx.com -# ||servedbyadbutler.com^$third-party (easylist.txt: 27010) -.servedbyadbutler.com -# ||servebom.com^$third-party (easylist.txt: 27009) -.servebom.com -# ||serve-sys.com^$third-party (easylist.txt: 27008) -.serve-sys.com -# ||servali.net^$third-party (easylist.txt: 27007) -.servali.net -# ||seriousfiles.com^$third-party (easylist.txt: 27006) -.seriousfiles.com -# ||serialbay.com^$third-party (easylist.txt: 27005) -.serialbay.com -# ||senzapudore.net^$third-party (easylist.txt: 27004) -.senzapudore.net -# ||sendptp.com^$third-party (easylist.txt: 27003) -.sendptp.com -# ||selsin.net^$third-party (easylist.txt: 27002) -.selsin.net -# ||sellhealth.com^$third-party (easylist.txt: 27001) -.sellhealth.com -# ||sekindo.com^$third-party (easylist.txt: 27000) -.sekindo.com -# ||seekads.net^$third-party (easylist.txt: 26999) -.seekads.net -# ||seductionprofits.com^$third-party (easylist.txt: 26998) -.seductionprofits.com -# ||sedoparking.com^$third-party (easylist.txt: 26997) -.sedoparking.com -# ||securitain.com^$third-party (easylist.txt: 26996) -.securitain.com -# ||securewebsiteaccess.com^$third-party (easylist.txt: 26995) -.securewebsiteaccess.com -# ||securesoft.info^$third-party (easylist.txt: 26994) -.securesoft.info -# ||secure-softwaremanager.com^$third-party (easylist.txt: 26993) -.secure-softwaremanager.com -# ||secondstreetmedia.com^$third-party (easylist.txt: 26992) -.secondstreetmedia.com -# ||seccoads.com^$third-party (easylist.txt: 26991) -.seccoads.com -# ||search123.uk.com^$third-party (easylist.txt: 26990) -.search123.uk.com -# ||scratchaffs.com^$third-party (easylist.txt: 26989) -.scratchaffs.com -# ||scootloor.com^$third-party (easylist.txt: 26988) -.scootloor.com -# ||sceno.ru^$third-party (easylist.txt: 26987) -.sceno.ru -# ||scanscout.com^$third-party (easylist.txt: 26986) -.scanscout.com -# ||scanmedios.com^$third-party (easylist.txt: 26985) -.scanmedios.com -# ||sbcpower.com^$third-party (easylist.txt: 26984) -.sbcpower.com -# ||sbaffiliates.com^$third-party (easylist.txt: 26983) -.sbaffiliates.com -# ||sba.about.co.kr^$third-party (easylist.txt: 26982) -.sba.about.co.kr -# ||saymedia.com^$third-party (easylist.txt: 26981) -.saymedia.com -# ||sayadcoltd.com^$third-party (easylist.txt: 26980) -.sayadcoltd.com -# ||saveads.org^$third-party (easylist.txt: 26979) -.saveads.org -# ||saveads.net^$third-party (easylist.txt: 26978) -.saveads.net -# ||satgreera.com^$third-party (easylist.txt: 26977) -.satgreera.com -# ||saple.net^$third-party (easylist.txt: 26976) -.saple.net -# ||salvador24.com^$third-party (easylist.txt: 26975) -.salvador24.com -# ||saltamendors.com^$third-party (easylist.txt: 26974) -.saltamendors.com -# ||salesnleads.com^$third-party (easylist.txt: 26973) -.salesnleads.com -# ||sakura-traffic.com^$third-party (easylist.txt: 26972) -.sakura-traffic.com -# ||safelistextreme.com^$third-party (easylist.txt: 26971) -.safelistextreme.com -# ||safecllc.com^$third-party (easylist.txt: 26970) -.safecllc.com -# ||safeadnetworkdata.net^$third-party (easylist.txt: 26969) -.safeadnetworkdata.net -# ||sa.entireweb.com^$third-party (easylist.txt: 26968) -.sa.entireweb.com -# ||s2d6.com^$third-party (easylist.txt: 26967) -.s2d6.com -# ||s.adroll.com^$third-party (easylist.txt: 26966) -.s.adroll.com -# ||ryminos.com^$third-party (easylist.txt: 26965) -.ryminos.com -# ||rwpads.com^$third-party (easylist.txt: 26964) -.rwpads.com -# ||runreproducerow.com^$third-party (easylist.txt: 26963) -.runreproducerow.com -# ||runadtag.com^$third-party (easylist.txt: 26962) -.runadtag.com -# ||rummyaffiliates.com^$third-party (easylist.txt: 26961) -.rummyaffiliates.com -# ||rubiconproject.com^$third-party (easylist.txt: 26960) -.rubiconproject.com -# ||rtbpops.com^$third-party (easylist.txt: 26959) -.rtbpops.com -# ||rtbpop.com^$third-party (easylist.txt: 26958) -.rtbpop.com -# ||rtbmedia.org^$third-party (easylist.txt: 26957) -.rtbmedia.org -# ||rtbidder.net^$third-party (easylist.txt: 26956) -.rtbidder.net -# ||roxyaffiliates.com^$third-party (easylist.txt: 26955) -.roxyaffiliates.com -# ||rovion.com^$third-party (easylist.txt: 26954) -.rovion.com -# ||rotorads.com^$third-party (easylist.txt: 26953) -.rotorads.com -# ||rotatingad.com^$third-party (easylist.txt: 26952) -.rotatingad.com -# ||rotaban.ru^$third-party (easylist.txt: 26951) -.rotaban.ru -# ||romance-net.com^$third-party (easylist.txt: 26950) -.romance-net.com -# ||roirocket.com^$third-party (easylist.txt: 26949) -.roirocket.com -# ||roicharger.com^$third-party (easylist.txt: 26948) -.roicharger.com -# ||rogueaffiliatesystem.com^$third-party (easylist.txt: 26947) -.rogueaffiliatesystem.com -# ||rocketier.net^$third-party (easylist.txt: 26946) -.rocketier.net -# ||robocat.me^$third-party (easylist.txt: 26945) -.robocat.me -# ||rnmd.net^$third-party (easylist.txt: 26944) -.rnmd.net -# ||rmxads.com^$third-party (easylist.txt: 26943) -.rmxads.com -# ||rixaka.com^$third-party (easylist.txt: 26942) -.rixaka.com -# ||riverbanksand.com^$third-party (easylist.txt: 26941) -.riverbanksand.com -# ||ripplead.com^$third-party (easylist.txt: 26940) -.ripplead.com -# ||ringtonepartner.com^$third-party (easylist.txt: 26939) -.ringtonepartner.com -# ||ringtonematcher.com^$third-party (easylist.txt: 26938) -.ringtonematcher.com -# ||richwebmedia.com^$third-party (easylist.txt: 26937) -.richwebmedia.com -# ||richmedia247.com^$third-party (easylist.txt: 26936) -.richmedia247.com -# ||ricead.com^$third-party (easylist.txt: 26935) -.ricead.com -# ||rhythmxchange.com^$third-party (easylist.txt: 26934) -.rhythmxchange.com -# ||rhown.com^$third-party (easylist.txt: 26933) -.rhown.com -# ||rfihub.net^$third-party (easylist.txt: 26932) -.rfihub.net -# ||rewardstyle.com^$third-party (easylist.txt: 26931) -.rewardstyle.com -# ||rewardsaffiliates.com^$third-party (easylist.txt: 26930) -.rewardsaffiliates.com -# ||rewardisement.com^$third-party (easylist.txt: 26929) -.rewardisement.com -# ||revsci.net^$third-party (easylist.txt: 26928) -.revsci.net -# ||revresponse.com^$third-party (easylist.txt: 26927) -.revresponse.com -# ||revresda.com^$third-party (easylist.txt: 26926) -.revresda.com -# ||revokinets.com^$third-party (easylist.txt: 26925) -.revokinets.com -# ||revmob.com^$third-party (easylist.txt: 26924) -.revmob.com -# ||revfusion.net^$third-party (easylist.txt: 26923) -.revfusion.net -# ||revenuemax.de^$third-party (easylist.txt: 26922) -.revenuemax.de -# ||revenuemantra.com^$third-party (easylist.txt: 26921) -.revenuemantra.com -# ||revenuehits.com^$third-party (easylist.txt: 26920) -.revenuehits.com -# ||revenuegiants.com^$third-party (easylist.txt: 26919) -.revenuegiants.com -# ||revenue.com^$third-party (easylist.txt: 26918) -.revenue.com -# ||revcontent.com^$third-party (easylist.txt: 26917) -.revcontent.com -# ||rev2pub.com^$third-party (easylist.txt: 26916) -.rev2pub.com -# ||reussissonsensemble.fr^$third-party (easylist.txt: 26915) -.reussissonsensemble.fr -# ||retargeter.com^$third-party (easylist.txt: 26914) -.retargeter.com -# ||resultsz.com^$third-party (easylist.txt: 26913) -.resultsz.com -# ||resultlinks.com^$third-party (easylist.txt: 26912) -.resultlinks.com -# ||respondhq.com^$third-party (easylist.txt: 26911) -.respondhq.com -# ||respond-adserver.cloudapp.net^$third-party (easylist.txt: 26910) -.respond-adserver.cloudapp.net -# ||respecific.net^$third-party (easylist.txt: 26909) -.respecific.net -# ||resideral.com^$third-party (easylist.txt: 26908) -.resideral.com -# ||repaynik.com^$third-party (easylist.txt: 26907) -.repaynik.com -# ||remiroyal.ro^$third-party (easylist.txt: 26906) -.remiroyal.ro -# ||remintrex.com^$third-party (easylist.txt: 26905) -.remintrex.com -# ||relytec.com^$third-party (easylist.txt: 26904) -.relytec.com -# ||relevanti.com^$third-party (easylist.txt: 26903) -.relevanti.com -# ||relestar.com^$third-party (easylist.txt: 26902) -.relestar.com -# ||relatedweboffers.com^$third-party (easylist.txt: 26901) -.relatedweboffers.com -# ||reklamz.com^$third-party (easylist.txt: 26900) -.reklamz.com -# ||regurgical.com^$third-party (easylist.txt: 26899) -.regurgical.com -# ||registry.cw.cm^$third-party (easylist.txt: 26898) -.registry.cw.cm -# ||regdfh.info^$third-party (easylist.txt: 26897) -.regdfh.info -# ||referback.com^$third-party (easylist.txt: 26896) -.referback.com -# ||refban.com^$third-party (easylist.txt: 26895) -.refban.com -# ||reelcentric.com^$third-party (easylist.txt: 26894) -.reelcentric.com -# ||reduxmediagroup.com^$third-party (easylist.txt: 26893) -.reduxmediagroup.com -# ||redpeepers.com^$third-party (easylist.txt: 26892) -.redpeepers.com -# ||redintelligence.net^$third-party (easylist.txt: 26891) -.redintelligence.net -# ||redcourtside.com^$third-party (easylist.txt: 26890) -.redcourtside.com -# ||recomendedsite.com^$third-party (easylist.txt: 26889) -.recomendedsite.com -# ||reate.info^$third-party (easylist.txt: 26888) -.reate.info -# ||realvu.net^$third-party (easylist.txt: 26887) -.realvu.net -# ||realsecuredredirect.com^$third-party (easylist.txt: 26886) -.realsecuredredirect.com -# ||realsecuredredir.com^$third-party (easylist.txt: 26885) -.realsecuredredir.com -# ||realmedia.com^$third-party (easylist.txt: 26884) -.realmedia.com -# ||realmatch.com^$third-party (easylist.txt: 26883) -.realmatch.com -# ||realclick.co.kr^$third-party (easylist.txt: 26882) -.realclick.co.kr -# ||readserver.net^$third-party (easylist.txt: 26881) -.readserver.net -# ||reactx.com^$third-party (easylist.txt: 26880) -.reactx.com -# ||reachmode.com^$third-party (easylist.txt: 26879) -.reachmode.com -# ||reachlocal.com^$third-party (easylist.txt: 26878) -.reachlocal.com -# ||reachjunction.com^$third-party (easylist.txt: 26877) -.reachjunction.com -# ||rddywd.com^$third-party (easylist.txt: 26876) -.rddywd.com -# ||rcurn.com^$third-party (easylist.txt: 26875) -.rcurn.com -# ||rcads.net^$third-party (easylist.txt: 26874) -.rcads.net -# ||rbnt.org^$third-party (easylist.txt: 26873) -.rbnt.org -# ||rawasy.com^$third-party (easylist.txt: 26872) -.rawasy.com -# ||rateaccept.net^$third-party (easylist.txt: 26871) -.rateaccept.net -# ||rapt.com^$third-party (easylist.txt: 26870) -.rapt.com -# ||rampanel.com^$third-party (easylist.txt: 26869) -.rampanel.com -# ||rainwealth.com^$third-party (easylist.txt: 26868) -.rainwealth.com -# ||rainbowtgx.com^$third-party (easylist.txt: 26867) -.rainbowtgx.com -# ||raiggy.com^$third-party (easylist.txt: 26866) -.raiggy.com -# ||ragapa.com^$third-party (easylist.txt: 26865) -.ragapa.com -# ||radiusmarketing.com^$third-party (easylist.txt: 26864) -.radiusmarketing.com -# ||radicalwealthformula.com^$third-party (easylist.txt: 26863) -.radicalwealthformula.com -# ||radeant.com^$third-party (easylist.txt: 26862) -.radeant.com -# ||rabilitan.com^$third-party (easylist.txt: 26861) -.rabilitan.com -# ||qwzmje9w.com^$third-party (easylist.txt: 26860) -.qwzmje9w.com -# ||qwobl.net^$third-party (easylist.txt: 26859) -.qwobl.net -# ||quinstreet.com^$third-party (easylist.txt: 26858) -.quinstreet.com -# ||quickcash500.com^$third-party (easylist.txt: 26857) -.quickcash500.com -# ||questus.com^$third-party (easylist.txt: 26856) -.questus.com -# ||questionmarket.com^$third-party (easylist.txt: 26855) -.questionmarket.com -# ||quensillo.com^$third-party (easylist.txt: 26854) -.quensillo.com -# ||quantumads.com^$third-party (easylist.txt: 26853) -.quantumads.com -# ||qualitypageviews.com^$third-party (easylist.txt: 26852) -.qualitypageviews.com -# ||qservz.com^$third-party (easylist.txt: 26851) -.qservz.com -# ||qnsr.com^$third-party (easylist.txt: 26850) -.qnsr.com -# ||qnrzmapdcc.com^$third-party (easylist.txt: 26849) -.qnrzmapdcc.com -# ||qksz.net^$third-party (easylist.txt: 26848) -.qksz.net -# ||qksrv.net^$third-party (easylist.txt: 26847) -.qksrv.net -# ||qdmil.com^$third-party (easylist.txt: 26846) -.qdmil.com -# ||qadservice.com^$third-party (easylist.txt: 26845) -.qadservice.com -# ||qadserve.com^$third-party (easylist.txt: 26844) -.qadserve.com -# ||q1xyxm89.com^$third-party (easylist.txt: 26843) -.q1xyxm89.com -# ||q1mediahydraplatform.com^$third-party (easylist.txt: 26842) -.q1mediahydraplatform.com -# ||q1media.com^$third-party (easylist.txt: 26841) -.q1media.com -# ||pzuwqncdai.com^$third-party (easylist.txt: 26840) -.pzuwqncdai.com -# ||pzaasocba.com^$third-party (easylist.txt: 26839) -.pzaasocba.com -# ||pxstda.com^$third-party (easylist.txt: 26838) -.pxstda.com -# ||pxl2015x1.com^$third-party (easylist.txt: 26837) -.pxl2015x1.com -# ||pwrads.net^$third-party (easylist.txt: 26836) -.pwrads.net -# ||push2check.com^$third-party (easylist.txt: 26835) -.push2check.com -# ||purpleflag.net^$third-party (easylist.txt: 26834) -.purpleflag.net -# ||pulsemgr.com^$third-party (easylist.txt: 26833) -.pulsemgr.com -# ||pulse360.com^$third-party (easylist.txt: 26832) -.pulse360.com -# ||puhtml.com^$third-party (easylist.txt: 26831) -.puhtml.com -# ||pubted.com^$third-party (easylist.txt: 26830) -.pubted.com -# ||pubserve.net^$third-party (easylist.txt: 26829) -.pubserve.net -# ||pubnation.com^$third-party (easylist.txt: 26828) -.pubnation.com -# ||pubmine.com^$third-party (easylist.txt: 26827) -.pubmine.com -# ||pubmatic.com^$third-party (easylist.txt: 26826) -.pubmatic.com -# ||publisheradnetwork.com^$third-party (easylist.txt: 26825) -.publisheradnetwork.com -# ||publisher.to^$third-party (easylist.txt: 26824) -.publisher.to -# ||publicsunrise.link^$third-party (easylist.txt: 26823) -.publicsunrise.link -# ||publicityclerks.com^$third-party (easylist.txt: 26822) -.publicityclerks.com -# ||publicidees.com^$third-party (easylist.txt: 26821) -.publicidees.com -# ||publicidad.net^$third-party (easylist.txt: 26820) -.publicidad.net -# ||pubgears.com^$third-party (easylist.txt: 26819) -.pubgears.com -# ||pub-fit.com^$third-party (easylist.txt: 26817) -.pub-fit.com -# ||ptp24.com^$third-party (easylist.txt: 26816) -.ptp24.com -# ||ptp22.com^$third-party (easylist.txt: 26815) -.ptp22.com -# ||ptp.lolco.net^$third-party (easylist.txt: 26814) -.ptp.lolco.net -# ||ptmzr.com^$third-party (easylist.txt: 26813) -.ptmzr.com -# ||psma02.com^$third-party (easylist.txt: 26812) -.psma02.com -# ||pseqcs05.com^$third-party (easylist.txt: 26811) -.pseqcs05.com -# ||psclicks.com^$third-party (easylist.txt: 26810) -.psclicks.com -# ||prre.ru^$third-party (easylist.txt: 26809) -.prre.ru -# ||proximic.com^$third-party (easylist.txt: 26808) -.proximic.com -# ||provider-direct.com^$third-party (easylist.txt: 26807) -.provider-direct.com -# ||protally.net^$third-party (easylist.txt: 26806) -.protally.net -# ||prosperent.com^$third-party (easylist.txt: 26805) -.prosperent.com -# ||proper.io^$third-party (easylist.txt: 26804) -.proper.io -# ||propelplus.com^$third-party (easylist.txt: 26803) -.propelplus.com -# ||propellerpops.com^$third-party (easylist.txt: 26802) -.propellerpops.com -# ||propellerads.com^$third-party (easylist.txt: 26801) -.propellerads.com -# ||promotiontrack.mobi^$third-party (easylist.txt: 26800) -.promotiontrack.mobi -# ||promotionoffer.mobi^$third-party (easylist.txt: 26799) -.promotionoffer.mobi -# ||promoted.com^$third-party (easylist.txt: 26798) -.promoted.com -# ||promobenef.com^$third-party (easylist.txt: 26797) -.promobenef.com -# ||promo-reklama.ru^$third-party (easylist.txt: 26796) -.promo-reklama.ru -# ||projectwonderful.com^$third-party (easylist.txt: 26795) -.projectwonderful.com -# ||programresolver.net^$third-party (easylist.txt: 26794) -.programresolver.net -# ||profitpeelers.com^$third-party (easylist.txt: 26793) -.profitpeelers.com -# ||proffigurufast.com^$third-party (easylist.txt: 26792) -.proffigurufast.com -# ||prod.untd.com^$third-party (easylist.txt: 26791) -.prod.untd.com -# ||probannerswap.com^$third-party (easylist.txt: 26790) -.probannerswap.com -# ||proadsdirect.com^$third-party (easylist.txt: 26789) -.proadsdirect.com -# ||pro-market.net^$third-party (easylist.txt: 26788) -.pro-market.net -# ||pro-advertising.com^$third-party (easylist.txt: 26787) -.pro-advertising.com -# ||pro-advert.de^$third-party (easylist.txt: 26786) -.pro-advert.de -# ||primaryads.com^$third-party (easylist.txt: 26785) -.primaryads.com -# ||prickac.com^$third-party (easylist.txt: 26784) -.prickac.com -# ||prf.hn^$third-party (easylist.txt: 26783) -.prf.hn -# ||prexista.com^$third-party (easylist.txt: 26782) -.prexista.com -# ||prestadsng.com^$third-party (easylist.txt: 26781) -.prestadsng.com -# ||predictad.com^$third-party (easylist.txt: 26780) -.predictad.com -# ||precisionclick.com^$third-party (easylist.txt: 26779) -.precisionclick.com -# ||prebid.org^$third-party (easylist.txt: 26778) -.prebid.org -# ||ppsearcher.ru^$third-party (easylist.txt: 26777) -.ppsearcher.ru -# ||ppcwebspy.com^$third-party (easylist.txt: 26776) -.ppcwebspy.com -# ||ppctrck.com^$third-party (easylist.txt: 26775) -.ppctrck.com -# ||ppclinking.com^$third-party (easylist.txt: 26774) -.ppclinking.com -# ||ppcindo.com^$third-party (easylist.txt: 26773) -.ppcindo.com -# ||powerlinks.com^$third-party (easylist.txt: 26772) -.powerlinks.com -# ||powerfulbusiness.net^$third-party (easylist.txt: 26771) -.powerfulbusiness.net -# ||poweradvertising.co.uk^$third-party (easylist.txt: 26770) -.poweradvertising.co.uk -# ||postrelease.com^$third-party (easylist.txt: 26769) -.postrelease.com -# ||posternel.com^$third-party (easylist.txt: 26768) -.posternel.com -# ||pornv.org^$third-party (easylist.txt: 26767) -.pornv.org -# ||popupvia.com^$third-party (easylist.txt: 26766) -.popupvia.com -# ||popuptraffic.com^$third-party (easylist.txt: 26765) -.popuptraffic.com -# ||popunderz.com^$third-party (easylist.txt: 26764) -.popunderz.com -# ||popundertotal.com^$third-party (easylist.txt: 26763) -.popundertotal.com -# ||popunder.ru^$third-party (easylist.txt: 26762) -.popunder.ru -# ||populisengage.com^$third-party (easylist.txt: 26761) -.populisengage.com -# ||populis.com^$third-party (easylist.txt: 26760) -.populis.com -# ||popularmedia.net^$third-party (easylist.txt: 26759) -.popularmedia.net -# ||popularitish.com^$third-party (easylist.txt: 26758) -.popularitish.com -# ||poptarts.me^$third-party (easylist.txt: 26757) -.poptarts.me -# ||popshow.info^$third-party (easylist.txt: 26756) -.popshow.info -# ||popsads.com^$third-party (easylist.txt: 26755) -.popsads.com -# ||poponclick.com^$third-party (easylist.txt: 26754) -.poponclick.com -# ||popmyads.com^$third-party (easylist.txt: 26753) -.popmyads.com -# ||popmyad.com^$third-party (easylist.txt: 26752) -.popmyad.com -# ||popmarker.com^$third-party (easylist.txt: 26751) -.popmarker.com -# ||popmajor.com^$third-party (easylist.txt: 26750) -.popmajor.com -# ||popearn.com^$third-party (easylist.txt: 26749) -.popearn.com -# ||popcpv.com^$third-party (easylist.txt: 26748) -.popcpv.com -# ||popcpm.com^$third-party (easylist.txt: 26747) -.popcpm.com -# ||popcash.net^$third-party (easylist.txt: 26746) -.popcash.net -# ||popadscdn.net^$third-party (easylist.txt: 26745) -.popadscdn.net -# ||popads.net^$third-party (easylist.txt: 26744) -.popads.net -# ||polydarth.com^$third-party (easylist.txt: 26743) -.polydarth.com -# ||polyad.net^$third-party (easylist.txt: 26742) -.polyad.net -# ||polmontventures.com^$third-party (easylist.txt: 26741) -.polmontventures.com -# ||polluxnetwork.com^$third-party (easylist.txt: 26740) -.polluxnetwork.com -# ||points2shop.com^$third-party (easylist.txt: 26739) -.points2shop.com -# ||pointroll.com^$third-party (easylist.txt: 26738) -.pointroll.com -# ||pointclicktrack.com^$third-party (easylist.txt: 26737) -.pointclicktrack.com -# ||pntrs.com^$third-party (easylist.txt: 26736) -.pntrs.com -# ||pntrac.com^$third-party (easylist.txt: 26735) -.pntrac.com -# ||pntra.com^$third-party (easylist.txt: 26734) -.pntra.com -# ||pnoss.com^$third-party (easylist.txt: 26733) -.pnoss.com -# ||pmsrvr.com^$third-party (easylist.txt: 26732) -.pmsrvr.com -# ||plxserve.com^$third-party (easylist.txt: 26731) -.plxserve.com -# ||plusfind.net^$third-party (easylist.txt: 26730) -.plusfind.net -# ||plugerr.com^$third-party (easylist.txt: 26729) -.plugerr.com -# ||plocap.com^$third-party (easylist.txt: 26728) -.plocap.com -# ||pllddc.com^$third-party (easylist.txt: 26727) -.pllddc.com -# ||plexop.net^$third-party (easylist.txt: 26726) -.plexop.net -# ||plenomedia.com^$third-party (easylist.txt: 26725) -.plenomedia.com -# ||pleeko.com^$third-party (easylist.txt: 26724) -.pleeko.com -# ||playukinternet.com^$third-party (easylist.txt: 26723) -.playukinternet.com -# ||playertraffic.com^$third-party (easylist.txt: 26722) -.playertraffic.com -# ||play24.us^$third-party (easylist.txt: 26721) -.play24.us -# ||platinumadvertisement.com^$third-party (easylist.txt: 26720) -.platinumadvertisement.com -# ||plannto.com^$third-party (easylist.txt: 26719) -.plannto.com -# ||pjtra.com^$third-party (easylist.txt: 26718) -.pjtra.com -# ||pjatr.com^$third-party (easylist.txt: 26717) -.pjatr.com -# ||pixxur.com^$third-party (easylist.txt: 26716) -.pixxur.com -# ||pixfuture.net^$third-party (easylist.txt: 26715) -.pixfuture.net -# ||pixeltrack66.com^$third-party (easylist.txt: 26714) -.pixeltrack66.com -# ||pixazza.com^$third-party (easylist.txt: 26713) -.pixazza.com -# ||pivotrunner.com^$third-party (easylist.txt: 26712) -.pivotrunner.com -# ||pivotalmedialabs.com^$third-party (easylist.txt: 26711) -.pivotalmedialabs.com -# ||piticlik.com^$third-party (easylist.txt: 26710) -.piticlik.com -# ||pioneeringad.com^$third-party (easylist.txt: 26709) -.pioneeringad.com -# ||pinballpublishernetwork.com^$third-party (easylist.txt: 26708) -.pinballpublishernetwork.com -# ||pictela.net^$third-party (easylist.txt: 26707) -.pictela.net -# ||picsti.com^$third-party (easylist.txt: 26706) -.picsti.com -# ||picbucks.com^$third-party (easylist.txt: 26705) -.picbucks.com -# ||picadmedia.com^$third-party (easylist.txt: 26704) -.picadmedia.com -# ||pianobuyerdeals.com^$third-party (easylist.txt: 26703) -.pianobuyerdeals.com -# ||phonespybubble.com^$third-party (easylist.txt: 26702) -.phonespybubble.com -# ||philosophere.com^$third-party (easylist.txt: 26701) -.philosophere.com -# ||philipstreehouse.info^$third-party (easylist.txt: 26700) -.philipstreehouse.info -# ||philbardre.com^$third-party (easylist.txt: 26699) -.philbardre.com -# ||pheedo.com^$third-party (easylist.txt: 26698) -.pheedo.com -# ||pharmcash.com^$third-party (easylist.txt: 26697) -.pharmcash.com -# ||pgssl.com^$third-party (easylist.txt: 26696) -.pgssl.com -# ||pgpartner.com^$third-party (easylist.txt: 26695) -.pgpartner.com -# ||pgmediaserve.com^$third-party (easylist.txt: 26694) -.pgmediaserve.com -# ||pezrphjl.com^$third-party (easylist.txt: 26693) -.pezrphjl.com -# ||persevered.com^$third-party (easylist.txt: 26692) -.persevered.com -# ||permutive.com^$third-party (easylist.txt: 26691) -.permutive.com -# ||performancingads.com^$third-party (easylist.txt: 26690) -.performancingads.com -# ||performancetrack.info^$third-party (easylist.txt: 26689) -.performancetrack.info -# ||performanceadvertising.mobi^$third-party (easylist.txt: 26688) -.performanceadvertising.mobi -# ||performance-based.com^$third-party (easylist.txt: 26687) -.performance-based.com -# ||perfoormapp.info^$third-party (easylist.txt: 26686) -.perfoormapp.info -# ||perfcreatives.com^$third-party (easylist.txt: 26685) -.perfcreatives.com -# ||perfb.com^$third-party (easylist.txt: 26684) -.perfb.com -# ||percularity.com^$third-party (easylist.txt: 26683) -.percularity.com -# ||pepperjamnetwork.com^$third-party (easylist.txt: 26682) -.pepperjamnetwork.com -# ||penuma.com^$third-party (easylist.txt: 26681) -.penuma.com -# ||peer39.net^$third-party (easylist.txt: 26680) -.peer39.net -# ||peemee.com^$third-party (easylist.txt: 26679) -.peemee.com -# ||peelawaymaker.com^$third-party (easylist.txt: 26678) -.peelawaymaker.com -# ||peakclick.com^$third-party (easylist.txt: 26677) -.peakclick.com -# ||pe2k2dty.com^$third-party (easylist.txt: 26676) -.pe2k2dty.com -# ||pc-ads.com^$third-party (easylist.txt: 26675) -.pc-ads.com -# ||payperpost.com^$third-party (easylist.txt: 26674) -.payperpost.com -# ||paydotcom.com^$third-party (easylist.txt: 26673) -.paydotcom.com -# ||pay-click.ru^$third-party (easylist.txt: 26672) -.pay-click.ru -# ||pautaspr.com^$third-party (easylist.txt: 26671) -.pautaspr.com -# ||passionfruitads.com^$third-party (easylist.txt: 26670) -.passionfruitads.com -# ||pas-rahav.com^$third-party (easylist.txt: 26669) -.pas-rahav.com -# ||partypoker.com^$third-party (easylist.txt: 26668) -.partypoker.com -# ||partypartners.com^$third-party (easylist.txt: 26667) -.partypartners.com -# ||partycasino.com^$third-party (easylist.txt: 26666) -.partycasino.com -# ||partnermax.de^$third-party (easylist.txt: 26665) -.partnermax.de -# ||partnerearning.com^$third-party (easylist.txt: 26664) -.partnerearning.com -# ||partner.googleadservices.com^$third-party (easylist.txt: 26662) -.partner.googleadservices.com -# ||partner-ads.com^$third-party (easylist.txt: 26661) -.partner-ads.com -# ||paradocs.ru^$third-party (easylist.txt: 26660) -.paradocs.ru -# ||paperg.com^$third-party (easylist.txt: 26659) -.paperg.com -# ||pantherads.com^$third-party (easylist.txt: 26658) -.pantherads.com -# ||panachetech.com^$third-party (easylist.txt: 26657) -.panachetech.com -# ||pakbanners.com^$third-party (easylist.txt: 26656) -.pakbanners.com -# ||paidsearchexperts.com^$third-party (easylist.txt: 26655) -.paidsearchexperts.com -# ||paidonresults.net^$third-party (easylist.txt: 26654) -.paidonresults.net -# ||paid4ad.de^$third-party (easylist.txt: 26653) -.paid4ad.de -# ||pagesinxt.com^$third-party (easylist.txt: 26652) -.pagesinxt.com -# ||pagefair.net^$third-party (easylist.txt: 26651) -.pagefair.net -# ||padstm.com^$third-party (easylist.txt: 26650) -.padstm.com -# ||padsdelivery.com^$third-party (easylist.txt: 26649) -.padsdelivery.com -# ||paads.dk^$third-party (easylist.txt: 26648) -.paads.dk -# ||p2ads.com^$third-party (easylist.txt: 26647) -.p2ads.com -# ||p-digital-server.com^$third-party (easylist.txt: 26646) -.p-digital-server.com -# ||p-comme-performance.com^$third-party (easylist.txt: 26645) -.p-comme-performance.com -# ||p-advg.com^$third-party (easylist.txt: 26644) -.p-advg.com -# ||ozonemedia.com^$third-party (easylist.txt: 26643) -.ozonemedia.com -# ||ozertesa.com^$third-party (easylist.txt: 26642) -.ozertesa.com -# ||oxybe.com^$third-party (easylist.txt: 26641) -.oxybe.com -# ||oxtracking.com^$third-party (easylist.txt: 26640) -.oxtracking.com -# ||oxsng.com^$third-party (easylist.txt: 26639) -.oxsng.com -# ||oxado.com^$third-party (easylist.txt: 26638) -.oxado.com -# ||ovtopli.ru^$third-party (easylist.txt: 26637) -.ovtopli.ru -# ||overturs.com^$third-party (easylist.txt: 26636) -.overturs.com -# ||overture.com^$third-party (easylist.txt: 26635) -.overture.com -# ||overhaps.com^$third-party (easylist.txt: 26634) -.overhaps.com -# ||oveld.com^$third-party (easylist.txt: 26633) -.oveld.com -# ||ov8pc.tv^$third-party (easylist.txt: 26632) -.ov8pc.tv -# ||ourunlimitedleads.com^$third-party (easylist.txt: 26631) -.ourunlimitedleads.com -# ||othersonline.com^$third-party (easylist.txt: 26630) -.othersonline.com -# ||ospreymedialp.com^$third-party (easylist.txt: 26629) -.ospreymedialp.com -# ||oskale.ru^$third-party (easylist.txt: 26628) -.oskale.ru -# ||ordingly.com^$third-party (easylist.txt: 26627) -.ordingly.com -# ||orbengine.com^$third-party (easylist.txt: 26626) -.orbengine.com -# ||orarala.com^$third-party (easylist.txt: 26625) -.orarala.com -# ||orangeads.fr^$third-party (easylist.txt: 26624) -.orangeads.fr -# ||optinmonster.com^$third-party (easylist.txt: 26623) -.optinmonster.com -# ||optinemailpro.com^$third-party (easylist.txt: 26622) -.optinemailpro.com -# ||optimizeadvert.biz^$third-party (easylist.txt: 26621) -.optimizeadvert.biz -# ||optimatic.com^$third-party (easylist.txt: 26620) -.optimatic.com -# ||optimalroi.info^$third-party (easylist.txt: 26619) -.optimalroi.info -# ||optiad.net^$third-party (easylist.txt: 26618) -.optiad.net -# ||opteama.com^$third-party (easylist.txt: 26617) -.opteama.com -# ||opt-n.net^$third-party (easylist.txt: 26616) -.opt-n.net -# ||opt-intelligence.com^$third-party (easylist.txt: 26615) -.opt-intelligence.com -# ||operatical.com^$third-party (easylist.txt: 26614) -.operatical.com -# ||openxmarket.asia^$third-party (easylist.txt: 26613) -.openxmarket.asia -# ||openxenterprise.com^$third-party (easylist.txt: 26612) -.openxenterprise.com -# ||openxadexchange.com^$third-party (easylist.txt: 26611) -.openxadexchange.com -# ||opensourceadvertisementnetwork.info^$third-party (easylist.txt: 26610) -.opensourceadvertisementnetwork.info -# ||openetray.com^$third-party (easylist.txt: 26609) -.openetray.com -# ||openbook.net^$third-party (easylist.txt: 26608) -.openbook.net -# ||opap.co.kr^$third-party (easylist.txt: 26607) -.opap.co.kr -# ||oos4l.com^$third-party (easylist.txt: 26606) -.oos4l.com -# ||oofte.com^$third-party (easylist.txt: 26605) -.oofte.com -# ||ooecyaauiz.com^$third-party (easylist.txt: 26604) -.ooecyaauiz.com -# ||oodode.com^$third-party (easylist.txt: 26603) -.oodode.com -# ||onvertise.com^$third-party (easylist.txt: 26602) -.onvertise.com -# ||onsitemarketplace.net^$third-party (easylist.txt: 26601) -.onsitemarketplace.net -# ||onscroll.com^$third-party (easylist.txt: 26600) -.onscroll.com -# ||onrampadvertising.com^$third-party (easylist.txt: 26599) -.onrampadvertising.com -# ||onlyalad.net^$third-party (easylist.txt: 26598) -.onlyalad.net -# ||onlinedl.info^$third-party (easylist.txt: 26597) -.onlinedl.info -# ||onlineadtracker.co.uk^$third-party (easylist.txt: 26596) -.onlineadtracker.co.uk -# ||online-media24.de^$third-party (easylist.txt: 26595) -.online-media24.de -# ||online-adnetwork.com^$third-party (easylist.txt: 26594) -.online-adnetwork.com -# ||onespot.com^$third-party (easylist.txt: 26593) -.onespot.com -# ||onenetworkdirect.net^$third-party (easylist.txt: 26592) -.onenetworkdirect.net -# ||onenetworkdirect.com^$third-party (easylist.txt: 26591) -.onenetworkdirect.com -# ||onedmp.com^$third-party (easylist.txt: 26590) -.onedmp.com -# ||onclickads.net^$third-party (easylist.txt: 26589) -.onclickads.net -# ||onads.com^$third-party (easylist.txt: 26588) -.onads.com -# ||onad.eu^$third-party (easylist.txt: 26587) -.onad.eu -# ||omni-ads.com^$third-party (easylist.txt: 26586) -.omni-ads.com -# ||omg2.com^$third-party (easylist.txt: 26585) -.omg2.com -# ||omclick.com^$third-party (easylist.txt: 26584) -.omclick.com -# ||oldtiger.net^$third-party (easylist.txt: 26583) -.oldtiger.net -# ||oileddaintiessunset.info^$third-party (easylist.txt: 26582) -.oileddaintiessunset.info -# ||ohmcasting.com^$third-party (easylist.txt: 26581) -.ohmcasting.com -# ||oggifinogi.com^$third-party (easylist.txt: 26580) -.oggifinogi.com -# ||ofino.ru^$third-party (easylist.txt: 26579) -.ofino.ru -# ||offersquared.com^$third-party (easylist.txt: 26578) -.offersquared.com -# ||offerserve.com^$third-party (easylist.txt: 26577) -.offerserve.com -# ||offerpalads.com^$third-party (easylist.txt: 26576) -.offerpalads.com -# ||offerforge.com^$third-party (easylist.txt: 26575) -.offerforge.com -# ||offeradvertising.biz^$third-party (easylist.txt: 26574) -.offeradvertising.biz -# ||oehposan.com^$third-party (easylist.txt: 26573) -.oehposan.com -# ||oclus.com^$third-party (easylist.txt: 26572) -.oclus.com -# ||oclsasrv.com^$third-party (easylist.txt: 26571) -.oclsasrv.com -# ||oclasrv.com^$third-party (easylist.txt: 26570) -.oclasrv.com -# ||oceanwebcraft.com^$third-party (easylist.txt: 26569) -.oceanwebcraft.com -# ||objectservers.com^$third-party (easylist.txt: 26568) -.objectservers.com -# ||obibanners.com^$third-party (easylist.txt: 26566) -.obibanners.com -# ||obeus.com^$third-party (easylist.txt: 26565) -.obeus.com -# ||obesw.com^$third-party (easylist.txt: 26564) -.obesw.com -# ||oainternetservices.com^$third-party (easylist.txt: 26563) -.oainternetservices.com -# ||oads.co^$third-party (easylist.txt: 26562) -.oads.co -# ||nzphoenix.com^$third-party (easylist.txt: 26561) -.nzphoenix.com -# ||nzads.net.nz^$third-party (easylist.txt: 26560) -.nzads.net.nz -# ||nyadmcncserve-05y06a.com^$third-party (easylist.txt: 26559) -.nyadmcncserve-05y06a.com -# ||nxtck.com^$third-party (easylist.txt: 26558) -.nxtck.com -# ||nwfhalifax.com^$third-party (easylist.txt: 26557) -.nwfhalifax.com -# ||nvero.net^$third-party (easylist.txt: 26556) -.nvero.net -# ||nvadn.com^$third-party (easylist.txt: 26555) -.nvadn.com -# ||nuseek.com^$third-party (easylist.txt: 26554) -.nuseek.com -# ||numbers.md^$third-party (easylist.txt: 26553) -.numbers.md -# ||numberium.com^$third-party (easylist.txt: 26552) -.numberium.com -# ||ntv.io^$third-party (easylist.txt: 26551) -.ntv.io -# ||ntent.com^$third-party (easylist.txt: 26550) -.ntent.com -# ||nspmotion.com^$third-party (easylist.txt: 26548) -.nspmotion.com -# ||nsmartad.com^$third-party (easylist.txt: 26547) -.nsmartad.com -# ||nsdsvc.com^$third-party (easylist.txt: 26546) -.nsdsvc.com -# ||nscontext.com^$third-party (easylist.txt: 26545) -.nscontext.com -# ||nrnma.com^$third-party (easylist.txt: 26544) -.nrnma.com -# ||nquchhfyex.com^$third-party (easylist.txt: 26543) -.nquchhfyex.com -# ||npvos.com^$third-party (easylist.txt: 26542) -.npvos.com -# ||nplexmedia.com^$third-party (easylist.txt: 26541) -.nplexmedia.com -# ||nowspots.com^$third-party (easylist.txt: 26540) -.nowspots.com -# ||nowlooking.net^$third-party (easylist.txt: 26539) -.nowlooking.net -# ||novarevenue.com^$third-party (easylist.txt: 26538) -.novarevenue.com -# ||northmay.com^$third-party (easylist.txt: 26537) -.northmay.com -# ||normkela.com^$third-party (easylist.txt: 26536) -.normkela.com -# ||noretia.com^$third-party (easylist.txt: 26535) -.noretia.com -# ||nonstoppartner.de^$third-party (easylist.txt: 26534) -.nonstoppartner.de -# ||nobsetfinvestor.com^$third-party (easylist.txt: 26533) -.nobsetfinvestor.com -# ||nobleppc.com^$third-party (easylist.txt: 26532) -.nobleppc.com -# ||nmwrdr.net^$third-party (easylist.txt: 26531) -.nmwrdr.net -# ||nmcdn.us^$third-party (easylist.txt: 26530) -.nmcdn.us -# ||nkredir.com^$third-party (easylist.txt: 26529) -.nkredir.com -# ||nighter.club^$third-party (easylist.txt: 26528) -.nighter.club -# ||nicheads.com^$third-party (easylist.txt: 26527) -.nicheads.com -# ||nicheadgenerator.com^$third-party (easylist.txt: 26526) -.nicheadgenerator.com -# ||ngecity.com^$third-party (easylist.txt: 26525) -.ngecity.com -# ||nextmobilecash.com^$third-party (easylist.txt: 26524) -.nextmobilecash.com -# ||nexage.com^$third-party (easylist.txt: 26523) -.nexage.com -# ||nexac.com^$third-party (easylist.txt: 26522) -.nexac.com -# ||newtention.net^$third-party (easylist.txt: 26521) -.newtention.net -# ||newstogram.com^$third-party (easylist.txt: 26520) -.newstogram.com -# ||newsnet.in.ua^$third-party (easylist.txt: 26519) -.newsnet.in.ua -# ||newsadstream.com^$third-party (easylist.txt: 26518) -.newsadstream.com -# ||newideasdaily.com^$third-party (easylist.txt: 26517) -.newideasdaily.com -# ||newgentraffic.com^$third-party (easylist.txt: 26516) -.newgentraffic.com -# ||newdosug.eu^$third-party (easylist.txt: 26515) -.newdosug.eu -# ||neudesicmediagroup.com^$third-party (easylist.txt: 26514) -.neudesicmediagroup.com -# ||networldmedia.net^$third-party (easylist.txt: 26513) -.networldmedia.net -# ||networld.hk^$third-party (easylist.txt: 26512) -.networld.hk -# ||networkxi.com^$third-party (easylist.txt: 26511) -.networkxi.com -# ||networkplay.in^$third-party (easylist.txt: 26510) -.networkplay.in -# ||netsolads.com^$third-party (easylist.txt: 26509) -.netsolads.com -# ||netshelter.net^$third-party (easylist.txt: 26508) -.netshelter.net -# ||netseer.com^$third-party (easylist.txt: 26507) -.netseer.com -# ||netpondads.com^$third-party (easylist.txt: 26506) -.netpondads.com -# ||netloader.cc^$third-party (easylist.txt: 26505) -.netloader.cc -# ||netliker.com^$third-party (easylist.txt: 26504) -.netliker.com -# ||netflixalternative.net^$third-party (easylist.txt: 26503) -.netflixalternative.net -# ||netavenir.com^$third-party (easylist.txt: 26502) -.netavenir.com -# ||net3media.com^$third-party (easylist.txt: 26500) -.net3media.com -# ||net-ad-vantage.com^$third-party (easylist.txt: 26499) -.net-ad-vantage.com -# ||neoffic.com^$third-party (easylist.txt: 26498) -.neoffic.com -# ||neodatagroup.com^$third-party (easylist.txt: 26497) -.neodatagroup.com -# ||neobux.com^$third-party (easylist.txt: 26496) -.neobux.com -# ||negolist.com^$third-party (easylist.txt: 26495) -.negolist.com -# ||neblotech.com^$third-party (easylist.txt: 26494) -.neblotech.com -# ||ncrjsserver.com^$third-party (easylist.txt: 26493) -.ncrjsserver.com -# ||nbstatic.com^$third-party (easylist.txt: 26492) -.nbstatic.com -# ||nbjmp.com^$third-party (easylist.txt: 26491) -.nbjmp.com -# ||nativeads.com^$third-party (easylist.txt: 26490) -.nativeads.com -# ||nativead.co^$third-party (easylist.txt: 26489) -.nativead.co -# ||native-adserver.com^$third-party (easylist.txt: 26488) -.native-adserver.com -# ||nanigans.com^$third-party (easylist.txt: 26487) -.nanigans.com -# ||nagrande.com^$third-party (easylist.txt: 26486) -.nagrande.com -# ||nabbr.com^$third-party (easylist.txt: 26485) -.nabbr.com -# ||n4403ad.doubleclick.net^$third-party (easylist.txt: 26484) -.n4403ad.doubleclick.net -# ||n388hkxg.com^$third-party (easylist.txt: 26483) -.n388hkxg.com -# ||mz28ismn.com^$third-party (easylist.txt: 26482) -.mz28ismn.com -# ||mywidget.mobi^$third-party (easylist.txt: 26481) -.mywidget.mobi -# ||myvads.com^$third-party (easylist.txt: 26480) -.myvads.com -# ||myuniques.ru^$third-party (easylist.txt: 26479) -.myuniques.ru -# ||mythings.com^$third-party (easylist.txt: 26478) -.mythings.com -# ||mysafeurl.com^$third-party (easylist.txt: 26477) -.mysafeurl.com -# ||myplayerhd.net^$third-party (easylist.txt: 26476) -.myplayerhd.net -# ||mynewcarquote.us^$third-party (easylist.txt: 26475) -.mynewcarquote.us -# ||mylinkbox.com^$third-party (easylist.txt: 26474) -.mylinkbox.com -# ||myinfotopia.com^$third-party (easylist.txt: 26473) -.myinfotopia.com -# ||myemailbox.info^$third-party (easylist.txt: 26472) -.myemailbox.info -# ||mydreamads.com^$third-party (easylist.txt: 26471) -.mydreamads.com -# ||mycooliframe.net^$third-party (easylist.txt: 26470) -.mycooliframe.net -# ||myclickbankads.com^$third-party (easylist.txt: 26469) -.myclickbankads.com -# ||myaffiliates.com^$third-party (easylist.txt: 26468) -.myaffiliates.com -# ||my-layer.net^$third-party (easylist.txt: 26467) -.my-layer.net -# ||mxtads.com^$third-party (easylist.txt: 26466) -.mxtads.com -# ||mutary.com^$third-party (easylist.txt: 26465) -.mutary.com -# ||musicnote.info^$third-party (easylist.txt: 26464) -.musicnote.info -# ||music-desktop.com^$third-party (easylist.txt: 26463) -.music-desktop.com -# ||munically.com^$third-party (easylist.txt: 26462) -.munically.com -# ||multiview.com^$third-party (easylist.txt: 26461) -.multiview.com -# ||multiadserv.com^$third-party (easylist.txt: 26460) -.multiadserv.com -# ||mujap.com^$third-party (easylist.txt: 26459) -.mujap.com -# ||mtrcss.com^$third-party (easylist.txt: 26458) -.mtrcss.com -# ||mtagmonetizationb.com^$third-party (easylist.txt: 26457) -.mtagmonetizationb.com -# ||mtagmonetizationa.com^$third-party (easylist.txt: 26456) -.mtagmonetizationa.com -# ||msypr.com^$third-party (easylist.txt: 26455) -.msypr.com -# ||msads.net^$third-party (easylist.txt: 26454) -.msads.net -# ||mprezchc.com^$third-party (easylist.txt: 26453) -.mprezchc.com -# ||mpression.net^$third-party (easylist.txt: 26452) -.mpression.net -# ||mpnrs.com^$third-party (easylist.txt: 26451) -.mpnrs.com -# ||movad.net^$third-party (easylist.txt: 26450) -.movad.net -# ||mottnow.com^$third-party (easylist.txt: 26449) -.mottnow.com -# ||moselats.com^$third-party (easylist.txt: 26448) -.moselats.com -# ||morgdm.ru^$third-party (easylist.txt: 26447) -.morgdm.ru -# ||moreplayerz.com^$third-party (easylist.txt: 26446) -.moreplayerz.com -# ||moregamers.com^$third-party (easylist.txt: 26445) -.moregamers.com -# ||mooxar.com^$third-party (easylist.txt: 26444) -.mooxar.com -# ||mootermedia.com^$third-party (easylist.txt: 26443) -.mootermedia.com -# ||mookie1.com^$third-party (easylist.txt: 26442) -.mookie1.com -# ||monsoonads.com^$third-party (easylist.txt: 26441) -.monsoonads.com -# ||monkeybroker.net^$third-party (easylist.txt: 26440) -.monkeybroker.net -# ||moneywhisper.com^$third-party (easylist.txt: 26439) -.moneywhisper.com -# ||moneycosmos.com^$third-party (easylist.txt: 26438) -.moneycosmos.com -# ||money4ads.com^$third-party (easylist.txt: 26437) -.money4ads.com -# ||money-cpm.fr^$third-party (easylist.txt: 26436) -.money-cpm.fr -# ||mokonocdn.com^$third-party (easylist.txt: 26435) -.mokonocdn.com -# ||mojoaffiliates.com^$third-party (easylist.txt: 26434) -.mojoaffiliates.com -# ||mogointeractive.com^$third-party (easylist.txt: 26433) -.mogointeractive.com -# ||moffsets.com^$third-party (easylist.txt: 26432) -.moffsets.com -# ||modelegating.com^$third-party (easylist.txt: 26431) -.modelegating.com -# ||mobytrks.com^$third-party (easylist.txt: 26430) -.mobytrks.com -# ||mobtrks.com^$third-party (easylist.txt: 26429) -.mobtrks.com -# ||mobstrks.com^$third-party (easylist.txt: 26428) -.mobstrks.com -# ||moborobot.com^$third-party (easylist.txt: 26427) -.moborobot.com -# ||mobiyield.com^$third-party (easylist.txt: 26426) -.mobiyield.com -# ||mobitracker.info^$third-party (easylist.txt: 26425) -.mobitracker.info -# ||mobisla.com^$third-party (easylist.txt: 26424) -.mobisla.com -# ||mobiright.com^$third-party (easylist.txt: 26423) -.mobiright.com -# ||mobile-10.com^$third-party (easylist.txt: 26422) -.mobile-10.com -# ||mobikano.com^$third-party (easylist.txt: 26421) -.mobikano.com -# ||mobifobi.com^$third-party (easylist.txt: 26420) -.mobifobi.com -# ||mobicont.com^$third-party (easylist.txt: 26419) -.mobicont.com -# ||mobfox.com^$third-party (easylist.txt: 26418) -.mobfox.com -# ||mobday.com^$third-party (easylist.txt: 26417) -.mobday.com -# ||mobatory.com^$third-party (easylist.txt: 26416) -.mobatory.com -# ||mobatori.com^$third-party (easylist.txt: 26415) -.mobatori.com -# ||moatads.com^$third-party (easylist.txt: 26414) -.moatads.com -# ||mmotraffic.com^$third-party (easylist.txt: 26413) -.mmotraffic.com -# ||mmoptional.com^$third-party (easylist.txt: 26412) -.mmoptional.com -# ||mmondi.com^$third-party (easylist.txt: 26411) -.mmondi.com -# ||mmngte.net^$third-party (easylist.txt: 26410) -.mmngte.net -# ||mmismm.com^$third-party (easylist.txt: 26409) -.mmismm.com -# ||mmgads.com^$third-party (easylist.txt: 26408) -.mmgads.com -# ||mmadsgadget.com^$third-party (easylist.txt: 26407) -.mmadsgadget.com -# ||mlnadvertising.com^$third-party (easylist.txt: 26406) -.mlnadvertising.com -# ||mktseek.com^$third-party (easylist.txt: 26405) -.mktseek.com -# ||mixpo.com^$third-party (easylist.txt: 26404) -.mixpo.com -# ||mixmarket.biz^$third-party (easylist.txt: 26403) -.mixmarket.biz -# ||miva.com^$third-party (easylist.txt: 26402) -.miva.com -# ||mistands.com^$third-party (easylist.txt: 26401) -.mistands.com -# ||mirrorpersonalinjury.co.uk^$third-party (easylist.txt: 26400) -.mirrorpersonalinjury.co.uk -# ||mirago.com^$third-party (easylist.txt: 26399) -.mirago.com -# ||minimumpay.info^$third-party (easylist.txt: 26398) -.minimumpay.info -# ||mindlytix.com^$third-party (easylist.txt: 26397) -.mindlytix.com -# ||milabra.com^$third-party (easylist.txt: 26396) -.milabra.com -# ||microsoftaffiliates.net^$third-party (easylist.txt: 26395) -.microsoftaffiliates.net -# ||microadinc.com^$third-party (easylist.txt: 26394) -.microadinc.com -# ||microad.jp^$third-party (easylist.txt: 26393) -.microad.jp -# ||mibebu.com^$third-party (easylist.txt: 26392) -.mibebu.com -# ||mgplatform.com^$third-party (easylist.txt: 26391) -.mgplatform.com -# ||mgcashgate.com^$third-party (easylist.txt: 26389) -.mgcashgate.com -# ||mgcash.com^$third-party (easylist.txt: 26388) -.mgcash.com -# ||mezimedia.com^$third-party (easylist.txt: 26387) -.mezimedia.com -# ||meya41w7.com^$third-party (easylist.txt: 26386) -.meya41w7.com -# ||meviodisplayads.com^$third-party (easylist.txt: 26385) -.meviodisplayads.com -# ||metrics.io^$third-party (easylist.txt: 26384) -.metrics.io -# ||metavertizer.com^$third-party (easylist.txt: 26383) -.metavertizer.com -# ||metavertising.com^$third-party (easylist.txt: 26382) -.metavertising.com -# ||messagespaceads.com^$third-party (easylist.txt: 26378) -.messagespaceads.com -# ||mercuras.com^$third-party (easylist.txt: 26377) -.mercuras.com -# ||merchenta.com^$third-party (easylist.txt: 26376) -.merchenta.com -# ||mentalks.ru^$third-party (easylist.txt: 26375) -.mentalks.ru -# ||mentad.com^$third-party (easylist.txt: 26374) -.mentad.com -# ||mengheng.net^$third-party (easylist.txt: 26373) -.mengheng.net -# ||mellowads.com^$third-party (easylist.txt: 26372) -.mellowads.com -# ||meinlist.com^$third-party (easylist.txt: 26371) -.meinlist.com -# ||megbase.com^$third-party (easylist.txt: 26370) -.megbase.com -# ||megatronmailer.com^$third-party (easylist.txt: 26369) -.megatronmailer.com -# ||megapopads.com^$third-party (easylist.txt: 26368) -.megapopads.com -# ||megacpm.com^$third-party (easylist.txt: 26367) -.megacpm.com -# ||megaad.nz^$third-party (easylist.txt: 26366) -.megaad.nz -# ||meetic-partners.com^$third-party (easylist.txt: 26365) -.meetic-partners.com -# ||meendocash.com^$third-party (easylist.txt: 26364) -.meendocash.com -# ||medyanetads.com^$third-party (easylist.txt: 26363) -.medyanetads.com -# ||medyanet.net^$third-party (easylist.txt: 26362) -.medyanet.net -# ||medrx.sensis.com.au^$third-party (easylist.txt: 26361) -.medrx.sensis.com.au -# ||medleyads.com^$third-party (easylist.txt: 26360) -.medleyads.com -# ||mediatraks.com^$third-party (easylist.txt: 26359) -.mediatraks.com -# ||mediatraffic.com^$third-party (easylist.txt: 26358) -.mediatraffic.com -# ||mediative.ca^$third-party (easylist.txt: 26357) -.mediative.ca -# ||mediatarget.com^$third-party (easylist.txt: 26356) -.mediatarget.com -# ||mediapeo.com^$third-party (easylist.txt: 26355) -.mediapeo.com -# ||mediaonpro.com^$third-party (easylist.txt: 26354) -.mediaonpro.com -# ||mediaonenetwork.net^$third-party (easylist.txt: 26353) -.mediaonenetwork.net -# ||medialation.net^$third-party (easylist.txt: 26352) -.medialation.net -# ||medialand.ru^$third-party (easylist.txt: 26351) -.medialand.ru -# ||mediakeywords.com^$third-party (easylist.txt: 26350) -.mediakeywords.com -# ||mediagridwork.com^$third-party (easylist.txt: 26349) -.mediagridwork.com -# ||mediag4.com^$third-party (easylist.txt: 26348) -.mediag4.com -# ||mediaforge.com^$third-party (easylist.txt: 26347) -.mediaforge.com -# ||mediaflire.com^$third-party (easylist.txt: 26346) -.mediaflire.com -# ||mediafilesdownload.com^$third-party (easylist.txt: 26345) -.mediafilesdownload.com -# ||mediaffiliation.com^$third-party (easylist.txt: 26344) -.mediaffiliation.com -# ||mediacpm.com^$third-party (easylist.txt: 26343) -.mediacpm.com -# ||mediaclick.com^$third-party (easylist.txt: 26342) -.mediaclick.com -# ||mediaadserver.org^$third-party (easylist.txt: 26341) -.mediaadserver.org -# ||media970.com^$third-party (easylist.txt: 26340) -.media970.com -# ||media6degrees.com^$third-party (easylist.txt: 26339) -.media6degrees.com -# ||media303.com^$third-party (easylist.txt: 26338) -.media303.com -# ||media.net^$third-party (easylist.txt: 26337) -.media.net -# ||media-servers.net^$third-party (easylist.txt: 26336) -.media-servers.net -# ||media-networks.ru^$third-party (easylist.txt: 26335) -.media-networks.ru -# ||media-ks.net^$third-party (easylist.txt: 26334) -.media-ks.net -# ||media-general.com^$third-party (easylist.txt: 26333) -.media-general.com -# ||meadigital.com^$third-party (easylist.txt: 26332) -.meadigital.com -# ||mdn2015x4.com^$third-party (easylist.txt: 26331) -.mdn2015x4.com -# ||mdn2015x2.com^$third-party (easylist.txt: 26330) -.mdn2015x2.com -# ||mdn2015x1.com^$third-party (easylist.txt: 26329) -.mdn2015x1.com -# ||mdialog.com^$third-party (easylist.txt: 26328) -.mdialog.com -# ||mdadx.com^$third-party (easylist.txt: 26327) -.mdadx.com -# ||mdadvertising.net^$third-party (easylist.txt: 26326) -.mdadvertising.net -# ||mcdstorage.com^$third-party (easylist.txt: 26325) -.mcdstorage.com -# ||mcdomainalot.com^$third-party (easylist.txt: 26324) -.mcdomainalot.com -# ||mbn.com.ua^$third-party (easylist.txt: 26323) -.mbn.com.ua -# ||mb8e17f12.website^$third-party (easylist.txt: 26322) -.mb8e17f12.website -# ||mb57.com^$third-party (easylist.txt: 26321) -.mb57.com -# ||mb38.com^$third-party (easylist.txt: 26320) -.mb38.com -# ||mb104.com^$third-party (easylist.txt: 26319) -.mb104.com -# ||mb102.com^$third-party (easylist.txt: 26318) -.mb102.com -# ||mb01.com^$third-party (easylist.txt: 26317) -.mb01.com -# ||maxserving.com^$third-party (easylist.txt: 26316) -.maxserving.com -# ||maudau.com^$third-party (easylist.txt: 26315) -.maudau.com -# ||matiro.com^$third-party (easylist.txt: 26314) -.matiro.com -# ||mastertraffic.cn^$third-party (easylist.txt: 26313) -.mastertraffic.cn -# ||masternal.com^$third-party (easylist.txt: 26312) -.masternal.com -# ||masterads.org^$third-party (easylist.txt: 26311) -.masterads.org -# ||martiniadnetwork.com^$third-party (easylist.txt: 26310) -.martiniadnetwork.com -# ||marsads.com^$third-party (easylist.txt: 26309) -.marsads.com -# ||marketoring.com^$third-party (easylist.txt: 26308) -.marketoring.com -# ||marketnetwork.com^$third-party (easylist.txt: 26307) -.marketnetwork.com -# ||marketleverage.com^$third-party (easylist.txt: 26306) -.marketleverage.com -# ||marketingenhanced.com^$third-party (easylist.txt: 26305) -.marketingenhanced.com -# ||markethealth.com^$third-party (easylist.txt: 26304) -.markethealth.com -# ||marketgid.com^$third-party (easylist.txt: 26303) -.marketgid.com -# ||marketfly.net^$third-party (easylist.txt: 26302) -.marketfly.net -# ||marketbanker.com^$third-party (easylist.txt: 26301) -.marketbanker.com -# ||marfeel.com^$third-party (easylist.txt: 26300) -.marfeel.com -# ||marbil24.co.za^$third-party (easylist.txt: 26299) -.marbil24.co.za -# ||mangoforex.com^$third-party (easylist.txt: 26298) -.mangoforex.com -# ||mallsponsor.com^$third-party (easylist.txt: 26297) -.mallsponsor.com -# ||makemoneymakemoney.net^$third-party (easylist.txt: 26296) -.makemoneymakemoney.net -# ||makecashtakingsurveys.biz^$third-party (easylist.txt: 26295) -.makecashtakingsurveys.biz -# ||mainroll.com^$third-party (easylist.txt: 26294) -.mainroll.com -# ||mainadv.com^$third-party (easylist.txt: 26293) -.mainadv.com -# ||mailmarketingmachine.com^$third-party (easylist.txt: 26292) -.mailmarketingmachine.com -# ||magnetisemedia.com^$third-party (easylist.txt: 26291) -.magnetisemedia.com -# ||magicalled.info^$third-party (easylist.txt: 26290) -.magicalled.info -# ||madsone.com^$third-party (easylist.txt: 26289) -.madsone.com -# ||madserving.com^$third-party (easylist.txt: 26288) -.madserving.com -# ||madadsmedia.com^$third-party (easylist.txt: 26287) -.madadsmedia.com -# ||machings.com^^$third-party (easylist.txt: 26286) -.machings.com/[^\w%.-] -# ||mabirol.com^$third-party (easylist.txt: 26285) -.mabirol.com -# ||m5prod.net^$third-party (easylist.txt: 26284) -.m5prod.net -# ||m57ku6sm.com^$third-party (easylist.txt: 26283) -.m57ku6sm.com -# ||m4pub.com^$third-party (easylist.txt: 26282) -.m4pub.com -# ||m2pub.com^$third-party (easylist.txt: 26281) -.m2pub.com -# ||lzjl.com^$third-party (easylist.txt: 26279) -.lzjl.com -# ||lx2rv.com^$third-party (easylist.txt: 26278) -.lx2rv.com -# ||luxup.ru^$third-party (easylist.txt: 26277) -.luxup.ru -# ||luxbetaffiliates.com.au^$third-party (easylist.txt: 26276) -.luxbetaffiliates.com.au -# ||luxadv.com^$third-party (easylist.txt: 26275) -.luxadv.com -# ||lushcrush.com^$third-party (easylist.txt: 26274) -.lushcrush.com -# ||lucidmedia.com^$third-party (easylist.txt: 26273) -.lucidmedia.com -# ||ltassrv.com.s3.amazonaws.com^$third-party (easylist.txt: 26270) -.ltassrv.com.s3.amazonaws.com -# ||lqw.me^$third-party (easylist.txt: 26269) -.lqw.me -# ||lqcdn.com^$third-party (easylist.txt: 26268) -.lqcdn.com -# ||loxtk.com^$third-party (easylist.txt: 26267) -.loxtk.com -# ||love-banner.com^$third-party (easylist.txt: 26266) -.love-banner.com -# ||lotteryaffiliates.com^$third-party (easylist.txt: 26265) -.lotteryaffiliates.com -# ||lostelephants.xyz^$third-party (easylist.txt: 26264) -.lostelephants.xyz -# ||losomy.com^$third-party (easylist.txt: 26263) -.losomy.com -# ||loseads.eu^$third-party (easylist.txt: 26262) -.loseads.eu -# ||lose-ads.de^$third-party (easylist.txt: 26261) -.lose-ads.de -# ||looneynetwork.com^$third-party (easylist.txt: 26260) -.looneynetwork.com -# ||looneyads.com^$third-party (easylist.txt: 26259) -.looneyads.com -# ||looksmart.com^$third-party (easylist.txt: 26258) -.looksmart.com -# ||lookit-quick.com^$third-party (easylist.txt: 26257) -.lookit-quick.com -# ||loodyas.com^$third-party (easylist.txt: 26256) -.loodyas.com -# ||logo-net.co.uk^$third-party (easylist.txt: 26255) -.logo-net.co.uk -# ||lockscalecompare.com^$third-party (easylist.txt: 26254) -.lockscalecompare.com -# ||lockhosts.com^$third-party (easylist.txt: 26253) -.lockhosts.com -# ||lockerdome.com^$third-party (easylist.txt: 26252) -.lockerdome.com -# ||localsearch24.co.uk^$third-party (easylist.txt: 26251) -.localsearch24.co.uk -# ||localedgemedia.com^$third-party (easylist.txt: 26250) -.localedgemedia.com -# ||localadbuy.com^$third-party (easylist.txt: 26249) -.localadbuy.com -# ||loading-resource.com^$third-party (easylist.txt: 26248) -.loading-resource.com -# ||lndjj.com^$third-party (easylist.txt: 26247) -.lndjj.com -# ||liveuniversenetwork.com^$third-party (easylist.txt: 26246) -.liveuniversenetwork.com -# ||liveadserver.net^$third-party (easylist.txt: 26244) -.liveadserver.net -# ||liveadoptimizer.com^$third-party (easylist.txt: 26243) -.liveadoptimizer.com -# ||liveadexchanger.com^$third-party (easylist.txt: 26242) -.liveadexchanger.com -# ||listingcafe.com^$third-party (easylist.txt: 26241) -.listingcafe.com -# ||liqwid.net^$third-party (easylist.txt: 26240) -.liqwid.net -# ||linkz.net^$third-party (easylist.txt: 26239) -.linkz.net -# ||linkybank.com^$third-party (easylist.txt: 26238) -.linkybank.com -# ||linkworth.com^$third-party (easylist.txt: 26237) -.linkworth.com -# ||linkwash.de^$third-party (easylist.txt: 26236) -.linkwash.de -# ||linkstorm.net^$third-party (easylist.txt: 26235) -.linkstorm.net -# ||linksmart.com^$third-party (easylist.txt: 26234) -.linksmart.com -# ||linkshowoff.com^$third-party (easylist.txt: 26233) -.linkshowoff.com -# ||links.io^$third-party (easylist.txt: 26232) -.links.io -# ||linkreferral.com^$third-party (easylist.txt: 26231) -.linkreferral.com -# ||linkoffers.net^$third-party (easylist.txt: 26230) -.linkoffers.net -# ||linkmads.com^$third-party (easylist.txt: 26229) -.linkmads.com -# ||linkgrand.com^$third-party (easylist.txt: 26228) -.linkgrand.com -# ||linkexchangers.net^$third-party (easylist.txt: 26227) -.linkexchangers.net -# ||linkexchange.com^$third-party (easylist.txt: 26226) -.linkexchange.com -# ||linkelevator.com^$third-party (easylist.txt: 26225) -.linkelevator.com -# ||linkconnector.com^$third-party (easylist.txt: 26224) -.linkconnector.com -# ||linkclicks.com^$third-party (easylist.txt: 26223) -.linkclicks.com -# ||linkbuddies.com^$third-party (easylist.txt: 26222) -.linkbuddies.com -# ||linicom.co.il^$third-party (easylist.txt: 26221) -.linicom.co.il -# ||lightad.co.kr^$third-party (easylist.txt: 26219) -.lightad.co.kr -# ||ligational.com^$third-party (easylist.txt: 26218) -.ligational.com -# ||liftdna.com^$third-party (easylist.txt: 26217) -.liftdna.com -# ||lgse.com^$third-party (easylist.txt: 26216) -.lgse.com -# ||lfstmedia.com^$third-party (easylist.txt: 26215) -.lfstmedia.com -# ||letsgoshopping.tk^$third-party (easylist.txt: 26214) -.letsgoshopping.tk -# ||letilyadothejob.com^$third-party (easylist.txt: 26213) -.letilyadothejob.com -# ||legisland.net^$third-party (easylist.txt: 26212) -.legisland.net -# ||leetmedia.com^$third-party (easylist.txt: 26211) -.leetmedia.com -# ||leadmediapartners.com^$third-party (easylist.txt: 26210) -.leadmediapartners.com -# ||leaderpub.fr^$third-party (easylist.txt: 26209) -.leaderpub.fr -# ||leadcola.com^$third-party (easylist.txt: 26208) -.leadcola.com -# ||leadbolt.net^$third-party (easylist.txt: 26207) -.leadbolt.net -# ||leadadvert.info^$third-party (easylist.txt: 26206) -.leadadvert.info -# ||leadad.mobi^$third-party (easylist.txt: 26205) -.leadad.mobi -# ||leadacceptor.com^$third-party (easylist.txt: 26204) -.leadacceptor.com -# ||lduhtrp.net^$third-party (easylist.txt: 26203) -.lduhtrp.net -# ||ldgateway.com^$third-party (easylist.txt: 26202) -.ldgateway.com -# ||lcl2adserver.com^$third-party (easylist.txt: 26201) -.lcl2adserver.com -# ||lbm1.com^$third-party (easylist.txt: 26200) -.lbm1.com -# ||lazynerd.info^$third-party (easylist.txt: 26199) -.lazynerd.info -# ||layerwelt.com^$third-party (easylist.txt: 26198) -.layerwelt.com -# ||layerloop.com^$third-party (easylist.txt: 26197) -.layerloop.com -# ||layer-ad.org^$third-party (easylist.txt: 26196) -.layer-ad.org -# ||launchbit.com^$third-party (easylist.txt: 26195) -.launchbit.com -# ||laserhairremovalstore.com^$third-party (easylist.txt: 26194) -.laserhairremovalstore.com -# ||largestable.com^$third-party (easylist.txt: 26193) -.largestable.com -# ||lanistaconcepts.com^$third-party (easylist.txt: 26192) -.lanistaconcepts.com -# ||lakidar.net^$third-party (easylist.txt: 26191) -.lakidar.net -# ||lakequincy.com^$third-party (easylist.txt: 26190) -.lakequincy.com -# ||ladbrokesaffiliates.com.au^$third-party (easylist.txt: 26189) -.ladbrokesaffiliates.com.au -# ||l3op.info^$third-party (easylist.txt: 26188) -.l3op.info -# ||kumpulblogger.com^$third-party (easylist.txt: 26187) -.kumpulblogger.com -# ||kromeleta.ru^$third-party (easylist.txt: 26186) -.kromeleta.ru -# ||kr3vinsx.com^$third-party (easylist.txt: 26185) -.kr3vinsx.com -# ||kqzyfj.com^$third-party (easylist.txt: 26184) -.kqzyfj.com -# ||kovla.com^$third-party (easylist.txt: 26183) -.kovla.com -# ||korrelate.net^$third-party (easylist.txt: 26182) -.korrelate.net -# ||koocash.com^$third-party (easylist.txt: 26181) -.koocash.com -# ||kontextua.com^$third-party (easylist.txt: 26180) -.kontextua.com -# ||komoona.com^$third-party (easylist.txt: 26179) -.komoona.com -# ||kolition.com^$third-party (easylist.txt: 26178) -.kolition.com -# ||knowd.com^$third-party (easylist.txt: 26177) -.knowd.com -# ||knorex.asia^$third-party (easylist.txt: 26176) -.knorex.asia -# ||klonedaset.org^$third-party (easylist.txt: 26175) -.klonedaset.org -# ||kloapers.com^$third-party (easylist.txt: 26174) -.kloapers.com -# ||klixfeed.com^$third-party (easylist.txt: 26173) -.klixfeed.com -# ||klipmart.com^$third-party (easylist.txt: 26172) -.klipmart.com -# ||klikvip.com^$third-party (easylist.txt: 26171) -.klikvip.com -# ||kliksaya.com^$third-party (easylist.txt: 26170) -.kliksaya.com -# ||klikadvertising.com^$third-party (easylist.txt: 26169) -.klikadvertising.com -# ||kjgh5o.com^$third-party (easylist.txt: 26168) -.kjgh5o.com -# ||kitnmedia.com^$third-party (easylist.txt: 26167) -.kitnmedia.com -# ||kiosked.com^$third-party (easylist.txt: 26166) -.kiosked.com -# ||kintokup.com^$third-party (easylist.txt: 26165) -.kintokup.com -# ||kinley.com^$third-party (easylist.txt: 26164) -.kinley.com -# ||kikuzip.com^$third-party (easylist.txt: 26163) -.kikuzip.com -# ||keywordblocks.com^$third-party (easylist.txt: 26162) -.keywordblocks.com -# ||keyrunmodel.com^$third-party (easylist.txt: 26161) -.keyrunmodel.com -# ||ketoo.com^$third-party (easylist.txt: 26160) -.ketoo.com -# ||kerg.net^$third-party (easylist.txt: 26159) -.kerg.net -# ||kehalim.com^$third-party (easylist.txt: 26158) -.kehalim.com -# ||keewurd.com^$third-party (easylist.txt: 26157) -.keewurd.com -# ||kavanga.ru^$third-party (easylist.txt: 26156) -.kavanga.ru -# ||kantarmedia.com^$third-party (easylist.txt: 26155) -.kantarmedia.com -# ||kanoodle.com^$third-party (easylist.txt: 26154) -.kanoodle.com -# ||k0z09okc.com^$third-party (easylist.txt: 26153) -.k0z09okc.com -# ||jyvtidkx.com^$third-party (easylist.txt: 26152) -.jyvtidkx.com -# ||jwaavsze.com^$third-party (easylist.txt: 26151) -.jwaavsze.com -# ||justrelevant.com^$third-party (easylist.txt: 26150) -.justrelevant.com -# ||jursp.com^$third-party (easylist.txt: 26149) -.jursp.com -# ||jumptap.com^$third-party (easylist.txt: 26148) -.jumptap.com -# ||jumpelead.com^$third-party (easylist.txt: 26147) -.jumpelead.com -# ||jumia.com.ng^$third-party (easylist.txt: 26146) -.jumia.com.ng -# ||jumbolt.ru^$third-party (easylist.txt: 26145) -.jumbolt.ru -# ||jumboaffiliates.com^$third-party (easylist.txt: 26144) -.jumboaffiliates.com -# ||jujzh9va.com^$third-party (easylist.txt: 26143) -.jujzh9va.com -# ||jujuads.com^$third-party (easylist.txt: 26142) -.jujuads.com -# ||juiceadv.net^$third-party (easylist.txt: 26141) -.juiceadv.net -# ||juiceadv.com^$third-party (easylist.txt: 26140) -.juiceadv.com -# ||judicated.com^$third-party (easylist.txt: 26139) -.judicated.com -# ||jtrakk.com^$third-party (easylist.txt: 26138) -.jtrakk.com -# ||jssearch.net^$third-party (easylist.txt: 26137) -.jssearch.net -# ||jsretra.com^$third-party (easylist.txt: 26136) -.jsretra.com -# ||jsfeedadsget.com^$third-party (easylist.txt: 26135) -.jsfeedadsget.com -# ||jscount.com^$third-party (easylist.txt: 26134) -.jscount.com -# ||js.cdn.ac^$third-party (easylist.txt: 26133) -.js.cdn.ac -# ||jque.net^$third-party (easylist.txt: 26132) -.jque.net -# ||joytocash.com^$third-party (easylist.txt: 26131) -.joytocash.com -# ||jobtarget.com^$third-party (easylist.txt: 26130) -.jobtarget.com -# ||jobsyndicate.com^$third-party (easylist.txt: 26129) -.jobsyndicate.com -# ||jo7cofh3.com^$third-party (easylist.txt: 26128) -.jo7cofh3.com -# ||jmp9.com^$third-party (easylist.txt: 26127) -.jmp9.com -# ||jizzontoy.com^$third-party (easylist.txt: 26126) -.jizzontoy.com -# ||jiwire.com^$third-party (easylist.txt: 26125) -.jiwire.com -# ||jivox.com^$third-party (easylist.txt: 26124) -.jivox.com -# ||jiawen88.com^$third-party (easylist.txt: 26123) -.jiawen88.com -# ||jemmgroup.com^$third-party (easylist.txt: 26122) -.jemmgroup.com -# ||jeetyetmedia.com^$third-party (easylist.txt: 26121) -.jeetyetmedia.com -# ||jdproject.net^$third-party (easylist.txt: 26120) -.jdproject.net -# ||jdoqocy.com^$third-party (easylist.txt: 26119) -.jdoqocy.com -# ||jbrlsr.com^$third-party (easylist.txt: 26118) -.jbrlsr.com -# ||jangonetwork.com^$third-party (easylist.txt: 26117) -.jangonetwork.com -# ||jango.com^$third-party (easylist.txt: 26116) -.jango.com -# ||jadcenter.com^$third-party (easylist.txt: 26115) -.jadcenter.com -# ||j2ef76da3.website^$third-party (easylist.txt: 26114) -.j2ef76da3.website -# ||izeads.com^$third-party (easylist.txt: 26113) -.izeads.com -# ||ixnp.com^$third-party (easylist.txt: 26112) -.ixnp.com -# ||iwantmoar.net^$third-party (easylist.txt: 26111) -.iwantmoar.net -# ||iv.doubleclick.net^$third-party (easylist.txt: 26110) -.iv.doubleclick.net -# ||iu16wmye.com^$third-party (easylist.txt: 26109) -.iu16wmye.com -# ||itrengia.com^$third-party (easylist.txt: 26108) -.itrengia.com -# ||isparkmedia.com^$third-party (easylist.txt: 26107) -.isparkmedia.com -# ||isohits.com^$third-party (easylist.txt: 26106) -.isohits.com -# ||isapi.solutions^$third-party (easylist.txt: 26105) -.isapi.solutions -# ||ipromote.com^$third-party (easylist.txt: 26104) -.ipromote.com -# ||ipredictive.com^$third-party (easylist.txt: 26103) -.ipredictive.com -# ||ip-adress.com^$third-party (easylist.txt: 26102) -.ip-adress.com -# ||inviziads.com^$third-party (easylist.txt: 26101) -.inviziads.com -# ||investingchannel.com^$third-party (easylist.txt: 26100) -.investingchannel.com -# ||inuxu.co.in^$third-party (easylist.txt: 26099) -.inuxu.co.in -# ||inuxu.biz^$third-party (easylist.txt: 26098) -.inuxu.biz -# ||inuvo.com^$third-party (easylist.txt: 26097) -.inuvo.com -# ||intuneads.com^$third-party (easylist.txt: 26096) -.intuneads.com -# ||inttrax.com^$third-party (easylist.txt: 26095) -.inttrax.com -# ||intopicmedia.com^$third-party (easylist.txt: 26094) -.intopicmedia.com -# ||intgr.net^$third-party (easylist.txt: 26093) -.intgr.net -# ||intextual.net^$third-party (easylist.txt: 26092) -.intextual.net -# ||intextscript.com^$third-party (easylist.txt: 26091) -.intextscript.com -# ||intextdirect.com^$third-party (easylist.txt: 26090) -.intextdirect.com -# ||interworksmedia.co.kr^$third-party (easylist.txt: 26089) -.interworksmedia.co.kr -# ||interpolls.com^$third-party (easylist.txt: 26088) -.interpolls.com -# ||internetadbrokers.com^$third-party (easylist.txt: 26087) -.internetadbrokers.com -# ||intermarkets.net^$third-party (easylist.txt: 26086) -.intermarkets.net -# ||interesting.cc^$third-party (easylist.txt: 26085) -.interesting.cc -# ||interestably.com^$third-party (easylist.txt: 26084) -.interestably.com -# ||interclick.com^$third-party (easylist.txt: 26083) -.interclick.com -# ||interactivespot.net^$third-party (easylist.txt: 26082) -.interactivespot.net -# ||intentmedia.net^$third-party (easylist.txt: 26081) -.intentmedia.net -# ||intenthq.com^$third-party (easylist.txt: 26080) -.intenthq.com -# ||intellitxt.com^$third-party (easylist.txt: 26079) -.intellitxt.com -# ||intellibanners.com^$third-party (easylist.txt: 26078) -.intellibanners.com -# ||integral-marketing.com^$third-party (easylist.txt: 26077) -.integral-marketing.com -# ||instivate.com^$third-party (easylist.txt: 26076) -.instivate.com -# ||instinctiveads.com^$third-party (easylist.txt: 26075) -.instinctiveads.com -# ||instantdollarz.com^$third-party (easylist.txt: 26074) -.instantdollarz.com -# ||instantbannercreator.com^$third-party (easylist.txt: 26073) -.instantbannercreator.com -# ||insta-cash.net^$third-party (easylist.txt: 26072) -.insta-cash.net -# ||inspiringsweater.xyz^$third-party (easylist.txt: 26071) -.inspiringsweater.xyz -# ||inskinad.com^$third-party (easylist.txt: 26069) -.inskinad.com -# ||insitesystems.com^$third-party (easylist.txt: 26068) -.insitesystems.com -# ||insitepromotion.com^$third-party (easylist.txt: 26067) -.insitepromotion.com -# ||insightexpressai.com^$third-party (easylist.txt: 26066) -.insightexpressai.com -# ||insightexpress.com^$third-party (easylist.txt: 26065) -.insightexpress.com -# ||innovid.com^$third-party (easylist.txt: 26064) -.innovid.com -# ||innity.net^$third-party (easylist.txt: 26063) -.innity.net -# ||innity.com^$third-party (easylist.txt: 26062) -.innity.com -# ||inktad.com^$third-party (easylist.txt: 26061) -.inktad.com -# ||ingame.ad^$third-party (easylist.txt: 26060) -.ingame.ad -# ||infra-ad.com^$third-party (easylist.txt: 26059) -.infra-ad.com -# ||information-sale.com^$third-party (easylist.txt: 26058) -.information-sale.com -# ||infolinks.com^$third-party (easylist.txt: 26057) -.infolinks.com -# ||info4.a7.org^$third-party (easylist.txt: 26056) -.info4.a7.org -# ||influads.com^$third-party (easylist.txt: 26055) -.influads.com -# ||infinityads.com^$third-party (easylist.txt: 26054) -.infinityads.com -# ||infinite-ads.com^$third-party (easylist.txt: 26053) -.infinite-ads.com -# ||infectiousmedia.com^$third-party (easylist.txt: 26052) -.infectiousmedia.com -# ||inetinteractive.com^$third-party (easylist.txt: 26051) -.inetinteractive.com -# ||inentasky.com^$third-party (easylist.txt: 26050) -.inentasky.com -# ||industrybrains.com^$third-party (easylist.txt: 26049) -.industrybrains.com -# ||indofad.com^$third-party (easylist.txt: 26048) -.indofad.com -# ||indieclick.com^$third-party (easylist.txt: 26047) -.indieclick.com -# ||indicate.to^$third-party (easylist.txt: 26046) -.indicate.to -# ||indianlinkexchange.com^$third-party (easylist.txt: 26045) -.indianlinkexchange.com -# ||indianbannerexchange.com^$third-party (easylist.txt: 26044) -.indianbannerexchange.com -# ||indiads.com^$third-party (easylist.txt: 26043) -.indiads.com -# ||indiabanner.com^$third-party (easylist.txt: 26042) -.indiabanner.com -# ||indexww.com^$third-party (easylist.txt: 26041) -.indexww.com -# ||increase-marketing.com^$third-party (easylist.txt: 26040) -.increase-marketing.com -# ||incomeliberation.com^$third-party (easylist.txt: 26039) -.incomeliberation.com -# ||incentaclick.com^$third-party (easylist.txt: 26038) -.incentaclick.com -# ||in-appadvertising.com^$third-party (easylist.txt: 26037) -.in-appadvertising.com -# ||impressionvalue.mobi^$third-party (easylist.txt: 26036) -.impressionvalue.mobi -# ||impressionperformance.biz^$third-party (easylist.txt: 26035) -.impressionperformance.biz -# ||impressiondesk.com^$third-party (easylist.txt: 26034) -.impressiondesk.com -# ||impressioncontent.info^$third-party (easylist.txt: 26033) -.impressioncontent.info -# ||impressionaffiliate.mobi^$third-party (easylist.txt: 26032) -.impressionaffiliate.mobi -# ||impressionaffiliate.com^$third-party (easylist.txt: 26031) -.impressionaffiliate.com -# ||impresionesweb.com^$third-party (easylist.txt: 26030) -.impresionesweb.com -# ||implix.com^$third-party (easylist.txt: 26029) -.implix.com -# ||impactradius.com^$third-party (easylist.txt: 26028) -.impactradius.com -# ||impact-ad.jp^$third-party (easylist.txt: 26027) -.impact-ad.jp -# ||imp*.tradedoubler.com^$third-party (easylist.txt: 26026) -.imp*./.*\.tradedoubler\.com[^\w%.-] -.imp*.tradedoubler.com -# ||imonomy.com^$third-party (easylist.txt: 26025) -.imonomy.com -# ||imiclk.com^$third-party (easylist.txt: 26024) -.imiclk.com -# ||imho.ru^$third-party (easylist.txt: 26023) -.imho.ru -# ||imgwebfeed.com^$third-party (easylist.txt: 26022) -.imgwebfeed.com -# ||imgsniper.com^$third-party (easylist.txt: 26021) -.imgsniper.com -# ||imglt.com^$third-party (easylist.txt: 26020) -.imglt.com -# ||imgfeedget.com^$third-party (easylist.txt: 26019) -.imgfeedget.com -# ||img-giganto.net^$third-party (easylist.txt: 26018) -.img-giganto.net -# ||imediarevenue.com^$third-party (easylist.txt: 26017) -.imediarevenue.com -# ||imediaaudiences.com^$third-party (easylist.txt: 26016) -.imediaaudiences.com -# ||imedia.co.il^$third-party (easylist.txt: 26015) -.imedia.co.il -# ||imasdk.googleapis.com^$third-party (easylist.txt: 26014) -.imasdk.googleapis.com -# ||imageadnet.com^$third-party (easylist.txt: 26013) -.imageadnet.com -# ||ikzikistheking.com^$third-party (easylist.txt: 26012) -.ikzikistheking.com -# ||ignitioninstaller.com^$third-party (easylist.txt: 26011) -.ignitioninstaller.com -# ||igloohq.com^$third-party (easylist.txt: 26010) -.igloohq.com -# ||igameunion.com^$third-party (easylist.txt: 26009) -.igameunion.com -# ||iframe.mediaplazza.com^$third-party (easylist.txt: 26008) -.iframe.mediaplazza.com -# ||idownloadgalore.com^$third-party (easylist.txt: 26007) -.idownloadgalore.com -# ||identads.com^$third-party (easylist.txt: 26006) -.identads.com -# ||idealmedia.com^$third-party (easylist.txt: 26005) -.idealmedia.com -# ||icqadvnew.com^$third-party (easylist.txt: 26004) -.icqadvnew.com -# ||icdirect.com^$third-party (easylist.txt: 26003) -.icdirect.com -# ||ibryte.com^$third-party (easylist.txt: 26002) -.ibryte.com -# ||ibatom.com^$third-party (easylist.txt: 26001) -.ibatom.com -# ||ibannerexchange.com^$third-party (easylist.txt: 26000) -.ibannerexchange.com -# ||iasrv.com^$third-party (easylist.txt: 25999) -.iasrv.com -# ||iasbetaffiliates.com^$third-party (easylist.txt: 25998) -.iasbetaffiliates.com -# ||iamediaserve.com^$third-party (easylist.txt: 25997) -.iamediaserve.com -# ||i.skimresources.com^$third-party (easylist.txt: 25996) -.i.skimresources.com -# ||i-media.co.nz^$third-party (easylist.txt: 25995) -.i-media.co.nz -# ||hyperwebads.com^$third-party (easylist.txt: 25994) -.hyperwebads.com -# ||hypervre.com^$third-party (easylist.txt: 25993) -.hypervre.com -# ||hypertrackeraff.com^$third-party (easylist.txt: 25992) -.hypertrackeraff.com -# ||hyperlinksecure.com^$third-party (easylist.txt: 25991) -.hyperlinksecure.com -# ||hypemakers.net^$third-party (easylist.txt: 25990) -.hypemakers.net -# ||hypeads.org^$third-party (easylist.txt: 25989) -.hypeads.org -# ||hype-ads.com^$third-party (easylist.txt: 25988) -.hype-ads.com -# ||huzonico.com^$third-party (easylist.txt: 25987) -.huzonico.com -# ||httpsecurity.org^$third-party (easylist.txt: 25986) -.httpsecurity.org -# ||httpool.com^$third-party (easylist.txt: 25985) -.httpool.com -# ||htmlhubing.xyz^$third-party (easylist.txt: 25984) -.htmlhubing.xyz -# ||hstpnetwork.com^$third-party (easylist.txt: 25983) -.hstpnetwork.com -# ||hsslx.com^$third-party (easylist.txt: 25982) -.hsslx.com -# ||hplose.de^$third-party (easylist.txt: 25981) -.hplose.de -# ||hover.in^$third-party (easylist.txt: 25980) -.hover.in -# ||hotwords.com^$third-party (easylist.txt: 25979) -.hotwords.com -# ||hotwords.com.mx^$third-party (easylist.txt: 25978) -.hotwords.com.mx -# ||hotwords.com.br^$third-party (easylist.txt: 25977) -.hotwords.com.br -# ||hotptp.com^$third-party (easylist.txt: 25976) -.hotptp.com -# ||hotkeys.com^$third-party (easylist.txt: 25975) -.hotkeys.com -# ||hotfeed.net^$third-party (easylist.txt: 25974) -.hotfeed.net -# ||hotelscombined.com^$third-party (easylist.txt: 25973) -.hotelscombined.com -# ||hotelscombined.com.au^$third-party (easylist.txt: 25972) -.hotelscombined.com.au -# ||hot-hits.us^$third-party (easylist.txt: 25971) -.hot-hits.us -# ||hosticanaffiliate.com^$third-party (easylist.txt: 25970) -.hosticanaffiliate.com -# ||horyzon-media.com^$third-party (easylist.txt: 25969) -.horyzon-media.com -# ||horsered.com^$third-party (easylist.txt: 25968) -.horsered.com -# ||horse-racing-affiliate-program.co.uk^$third-party (easylist.txt: 25967) -.horse-racing-affiliate-program.co.uk -# ||hopfeed.com^$third-party (easylist.txt: 25966) -.hopfeed.com -# ||hoomezip.biz^$third-party (easylist.txt: 25965) -.hoomezip.biz -# ||holidaytravelguide.org^$third-party (easylist.txt: 25964) -.holidaytravelguide.org -# ||holdingprice.net^$third-party (easylist.txt: 25963) -.holdingprice.net -# ||hokaybo.com^$third-party (easylist.txt: 25962) -.hokaybo.com -# ||hlads.com^$third-party (easylist.txt: 25961) -.hlads.com -# ||hitwastedgarden.com^$third-party (easylist.txt: 25960) -.hitwastedgarden.com -# ||hits.sys.lv^$third-party (easylist.txt: 25959) -.hits.sys.lv -# ||hit-now.com^$third-party (easylist.txt: 25958) -.hit-now.com -# ||histians.com^$third-party (easylist.txt: 25957) -.histians.com -# ||hiplair.com^$third-party (easylist.txt: 25956) -.hiplair.com -# ||himediadx.com^$third-party (easylist.txt: 25955) -.himediadx.com -# ||himediads.com^$third-party (easylist.txt: 25954) -.himediads.com -# ||hilltopads.net^$third-party (easylist.txt: 25953) -.hilltopads.net -# ||hijacksystem.com^$third-party (easylist.txt: 25952) -.hijacksystem.com -# ||hiadone.com^$third-party (easylist.txt: 25951) -.hiadone.com -# ||hgdat.com^$third-party (easylist.txt: 25950) -.hgdat.com -# ||hexagram.com^$third-party (easylist.txt: 25949) -.hexagram.com -# ||helloreverb.com^$third-party (easylist.txt: 25948) -.helloreverb.com -# ||hebiichigo.com^$third-party (easylist.txt: 25947) -.hebiichigo.com -# ||healthcarestars.com^$third-party (easylist.txt: 25946) -.healthcarestars.com -# ||healthaffiliatesnetwork.com^$third-party (easylist.txt: 25945) -.healthaffiliatesnetwork.com -# ||headup.com^$third-party (easylist.txt: 25944) -.headup.com -# ||hdvidcodecs.com^$third-party (easylist.txt: 25943) -.hdvidcodecs.com -# ||hdvid-codecs-dl.net^$third-party (easylist.txt: 25942) -.hdvid-codecs-dl.net -# ||hdplayer-download.com^$third-party (easylist.txt: 25941) -.hdplayer-download.com -# ||hd-plugin.com^$third-party (easylist.txt: 25940) -.hd-plugin.com -# ||hb-247.com^$third-party (easylist.txt: 25939) -.hb-247.com -# ||havetohave.com^$third-party (easylist.txt: 25938) -.havetohave.com -# ||havamedia.net^$third-party (easylist.txt: 25937) -.havamedia.net -# ||harrenmedianetwork.com^$third-party (easylist.txt: 25936) -.harrenmedianetwork.com -# ||happilyswitching.net^$third-party (easylist.txt: 25935) -.happilyswitching.net -# ||hanaprop.com^$third-party (easylist.txt: 25934) -.hanaprop.com -# ||halogennetwork.com^$third-party (easylist.txt: 25933) -.halogennetwork.com -# ||halfpriceozarks.com^$third-party (easylist.txt: 25932) -.halfpriceozarks.com -# ||h12-media.com^$third-party (easylist.txt: 25931) -.h12-media.com -# ||h-images.net^$third-party (easylist.txt: 25930) -.h-images.net -# ||gx101.com^$third-party (easylist.txt: 25929) -.gx101.com -# ||gwallet.com^$third-party (easylist.txt: 25928) -.gwallet.com -# ||gururevenue.com^$third-party (easylist.txt: 25927) -.gururevenue.com -# ||gunpartners.com^$third-party (easylist.txt: 25926) -.gunpartners.com -# ||gumgum.com^$third-party (easylist.txt: 25925) -.gumgum.com -# ||guitaralliance.com^$third-party (easylist.txt: 25924) -.guitaralliance.com -# ||guardiandigitalcomparison.co.uk^$third-party (easylist.txt: 25923) -.guardiandigitalcomparison.co.uk -# ||gscsystemwithdarren.com^$third-party (easylist.txt: 25922) -.gscsystemwithdarren.com -# ||gscontxt.net^$third-party (easylist.txt: 25921) -.gscontxt.net -# ||grt03.com^$third-party (easylist.txt: 25920) -.grt03.com -# ||grt02.com^$third-party (easylist.txt: 25919) -.grt02.com -# ||groupcommerce.com^$third-party (easylist.txt: 25918) -.groupcommerce.com -# ||groovinads.com^$third-party (easylist.txt: 25917) -.groovinads.com -# ||grllopa.com^$third-party (easylist.txt: 25916) -.grllopa.com -# ||gripdownload.co^$third-party (easylist.txt: 25915) -.gripdownload.co -# ||gretzalz.com^$third-party (easylist.txt: 25914) -.gretzalz.com -# ||grenstia.com^$third-party (easylist.txt: 25913) -.grenstia.com -# ||greenlabelppc.com^$third-party (easylist.txt: 25912) -.greenlabelppc.com -# ||greenads.org^$third-party (easylist.txt: 25911) -.greenads.org -# ||gratisnetwork.com^$third-party (easylist.txt: 25910) -.gratisnetwork.com -# ||grapeshot.co.uk^$third-party (easylist.txt: 25909) -.grapeshot.co.uk -# ||grafpedia.com^$third-party (easylist.txt: 25908) -.grafpedia.com -# ||grabo.bg^$third-party (easylist.txt: 25907) -.grabo.bg -# ||grabmyads.com^$third-party (easylist.txt: 25906) -.grabmyads.com -# ||gpacalculatorhighschoolfree.com^$third-party (easylist.txt: 25905) -.gpacalculatorhighschoolfree.com -# ||goviral.hs.llnwd.net^$third-party (easylist.txt: 25904) -.goviral.hs.llnwd.net -# ||goviral-content.com^$third-party (easylist.txt: 25903) -.goviral-content.com -# ||governmenttrainingexchange.com^$third-party (easylist.txt: 25902) -.governmenttrainingexchange.com -# ||gourmetads.com^$third-party (easylist.txt: 25901) -.gourmetads.com -# ||gorgonkil.com^$third-party (easylist.txt: 25900) -.gorgonkil.com -# ||gopjn.com^$third-party (easylist.txt: 25899) -.gopjn.com -# ||googletagservices.com/tag/static/$third-party (easylist.txt: 25898) -.googletagservices.com/tag/static/ -# ||googletagservices.com/tag/js/gpt_$third-party (easylist.txt: 25897) -.googletagservices.com/tag/js/gpt_ -# ||googlesyndicatiion.com^$third-party (easylist.txt: 25896) -.googlesyndicatiion.com -# ||googleadservicepixel.com^$third-party (easylist.txt: 25895) -.googleadservicepixel.com -# ||goodadvertising.info^$third-party (easylist.txt: 25894) -.goodadvertising.info -# ||goodadvert.ru^$third-party (easylist.txt: 25893) -.goodadvert.ru -# ||gojoingscnow.com^$third-party (easylist.txt: 25892) -.gojoingscnow.com -# ||gogoplexer.com^$third-party (easylist.txt: 25891) -.gogoplexer.com -# ||goember.com^$third-party (easylist.txt: 25890) -.goember.com -# ||godspeaks.net^$third-party (easylist.txt: 25889) -.godspeaks.net -# ||goclickon.us^$third-party (easylist.txt: 25888) -.goclickon.us -# ||go2speed.org^$third-party (easylist.txt: 25887) -.go2speed.org -# ||go2media.org^$third-party (easylist.txt: 25886) -.go2media.org -# ||go2jump.org^$third-party (easylist.txt: 25885) -.go2jump.org -# ||gmads.net^$third-party (easylist.txt: 25884) -.gmads.net -# ||glowdot.com^$third-party (easylist.txt: 25883) -.glowdot.com -# ||globaltakeoff.net^$third-party (easylist.txt: 25882) -.globaltakeoff.net -# ||globalsuccessclub.com^$third-party (easylist.txt: 25881) -.globalsuccessclub.com -# ||globalinteractive.com^$third-party (easylist.txt: 25880) -.globalinteractive.com -# ||globaladv.net^$third-party (easylist.txt: 25879) -.globaladv.net -# ||globaladsales.com^$third-party (easylist.txt: 25878) -.globaladsales.com -# ||global-success-club.net^$third-party (easylist.txt: 25877) -.global-success-club.net -# ||glical.com^$third-party (easylist.txt: 25876) -.glical.com -# ||gklmedia.com^$third-party (easylist.txt: 25875) -.gklmedia.com -# ||gimiclub.com^$third-party (easylist.txt: 25874) -.gimiclub.com -# ||gigamega.su^$third-party (easylist.txt: 25873) -.gigamega.su -# ||giantaffiliates.com^$third-party (easylist.txt: 25872) -.giantaffiliates.com -# ||ggncpm.com^$third-party (easylist.txt: 25871) -.ggncpm.com -# ||gettipsz.info^$third-party (easylist.txt: 25870) -.gettipsz.info -# ||getthislistbuildingvideo.biz^$third-party (easylist.txt: 25869) -.getthislistbuildingvideo.biz -# ||getscorecash.com^$third-party (easylist.txt: 25868) -.getscorecash.com -# ||getgscfree.com^$third-party (easylist.txt: 25867) -.getgscfree.com -# ||getgamers.eu^$third-party (easylist.txt: 25866) -.getgamers.eu -# ||gestionpub.com^$third-party (easylist.txt: 25865) -.gestionpub.com -# ||geovisite.com^$third-party (easylist.txt: 25864) -.geovisite.com -# ||geopromos.com^$third-party (easylist.txt: 25863) -.geopromos.com -# ||geoipads.com^$third-party (easylist.txt: 25862) -.geoipads.com -# ||geo-idm.fr^$third-party (easylist.txt: 25861) -.geo-idm.fr -# ||genovesetacet.com^$third-party (easylist.txt: 25860) -.genovesetacet.com -# ||genieessp.com^$third-party (easylist.txt: 25859) -.genieessp.com -# ||geniad.net^$third-party (easylist.txt: 25858) -.geniad.net -# ||genesismedia.com^$third-party (easylist.txt: 25857) -.genesismedia.com -# ||genericsteps.com^$third-party (easylist.txt: 25856) -.genericsteps.com -# ||genericlink.com^$third-party (easylist.txt: 25855) -.genericlink.com -# ||gemineering.com^$third-party (easylist.txt: 25854) -.gemineering.com -# ||geld-internet-verdienen.net^$third-party (easylist.txt: 25853) -.geld-internet-verdienen.net -# ||gefhasio.com^$third-party (easylist.txt: 25852) -.gefhasio.com -# ||geek2us.net^$third-party (easylist.txt: 25851) -.geek2us.net -# ||geede.info^$third-party (easylist.txt: 25850) -.geede.info -# ||gdmdigital.com^$third-party (easylist.txt: 25849) -.gdmdigital.com -# ||gayadnetwork.com^$third-party (easylist.txt: 25848) -.gayadnetwork.com -# ||gatikus.com^$third-party (easylist.txt: 25847) -.gatikus.com -# ||gate-ru.com^$third-party (easylist.txt: 25846) -.gate-ru.com -# ||garvmedia.com^$third-party (easylist.txt: 25845) -.garvmedia.com -# ||garristo.com^$third-party (easylist.txt: 25844) -.garristo.com -# ||gannett.gcion.com^$third-party (easylist.txt: 25843) -.gannett.gcion.com -# ||gandrad.org^$third-party (easylist.txt: 25842) -.gandrad.org -# ||gan.doubleclick.net^$third-party (easylist.txt: 25841) -.gan.doubleclick.net -# ||gamesrevenue.com^$third-party (easylist.txt: 25840) -.gamesrevenue.com -# ||gamesbannerexchange.com^$third-party (easylist.txt: 25839) -.gamesbannerexchange.com -# ||gamersbanner.com^$third-party (easylist.txt: 25838) -.gamersbanner.com -# ||gamersad.com^$third-party (easylist.txt: 25837) -.gamersad.com -# ||gamehotus.com^$third-party (easylist.txt: 25836) -.gamehotus.com -# ||gamecetera.com^$third-party (easylist.txt: 25835) -.gamecetera.com -# ||gameads.com^$third-party (easylist.txt: 25834) -.gameads.com -# ||game-clicks.com^$third-party (easylist.txt: 25833) -.game-clicks.com -# ||game-advertising-online.com^$third-party (easylist.txt: 25832) -.game-advertising-online.com -# ||gambling-affiliation.com^$third-party (easylist.txt: 25831) -.gambling-affiliation.com -# ||galleyn.com^$third-party (easylist.txt: 25830) -.galleyn.com -# ||gainmoneyfast.com^$third-party (easylist.txt: 25829) -.gainmoneyfast.com -# ||gagenez.com^$third-party (easylist.txt: 25828) -.gagenez.com -# ||gagacon.com^$third-party (easylist.txt: 25827) -.gagacon.com -# ||g4whisperermedia.com^$third-party (easylist.txt: 25826) -.g4whisperermedia.com -# ||g-cash.biz^$third-party (easylist.txt: 25825) -.g-cash.biz -# ||fxyc0dwa.com^$third-party (easylist.txt: 25824) -.fxyc0dwa.com -# ||fxdepo.com^$third-party (easylist.txt: 25823) -.fxdepo.com -# ||futureus.com^$third-party (easylist.txt: 25821) -.futureus.com -# ||futureresiduals.com^$third-party (easylist.txt: 25820) -.futureresiduals.com -# ||fusionads.net^$third-party (easylist.txt: 25819) -.fusionads.net -# ||funklicks.com^$third-party (easylist.txt: 25818) -.funklicks.com -# ||fulltraffic.net^$third-party (easylist.txt: 25817) -.fulltraffic.net -# ||ftv-publicite.fr^$third-party (easylist.txt: 25816) -.ftv-publicite.fr -# ||ftjcfx.com^$third-party (easylist.txt: 25815) -.ftjcfx.com -# ||fruitkings.com^$third-party (easylist.txt: 25814) -.fruitkings.com -# ||fromfriendswithlove.com^$third-party (easylist.txt: 25813) -.fromfriendswithlove.com -# ||friendlyduck.com^$third-party (easylist.txt: 25812) -.friendlyduck.com -# ||fresh8.co^$third-party (easylist.txt: 25811) -.fresh8.co -# ||freesoftwarelive.com^$third-party (easylist.txt: 25810) -.freesoftwarelive.com -# ||freeskreen.com^$third-party (easylist.txt: 25809) -.freeskreen.com -# ||freerotator.com^$third-party (easylist.txt: 25808) -.freerotator.com -# ||freepaidsurveyz.com^$third-party (easylist.txt: 25807) -.freepaidsurveyz.com -# ||freedownloadsoft.net^$third-party (easylist.txt: 25806) -.freedownloadsoft.net -# ||freecouponbiz.com^$third-party (easylist.txt: 25805) -.freecouponbiz.com -# ||freebiesurveys.com^$third-party (easylist.txt: 25804) -.freebiesurveys.com -# ||freebannerswap.co.uk^$third-party (easylist.txt: 25803) -.freebannerswap.co.uk -# ||frameptp.com^$third-party (easylist.txt: 25802) -.frameptp.com -# ||forrestersurveys.com^$third-party (easylist.txt: 25801) -.forrestersurveys.com -# ||forpyke.com^$third-party (easylist.txt: 25800) -.forpyke.com -# ||forifiha.com^$third-party (easylist.txt: 25799) -.forifiha.com -# ||forexyard.com^$third-party (easylist.txt: 25798) -.forexyard.com -# ||forex-affiliate.net^$third-party (easylist.txt: 25797) -.forex-affiliate.net -# ||forex-affiliate.com^$third-party (easylist.txt: 25796) -.forex-affiliate.com -# ||forcepprofile.com^$third-party (easylist.txt: 25795) -.forcepprofile.com -# ||forced-lose.de^$third-party (easylist.txt: 25794) -.forced-lose.de -# ||footnote.com^$third-party (easylist.txt: 25793) -.footnote.com -# ||footerslideupad.com^$third-party (easylist.txt: 25792) -.footerslideupad.com -# ||footar.com^$third-party (easylist.txt: 25791) -.footar.com -# ||foonad.com^$third-party (easylist.txt: 25790) -.foonad.com -# ||foodieblogroll.com^$third-party (easylist.txt: 25789) -.foodieblogroll.com -# ||focre.info^$third-party (easylist.txt: 25788) -.focre.info -# ||focalex.com^$third-party (easylist.txt: 25787) -.focalex.com -# ||fmsads.com^$third-party (easylist.txt: 25786) -.fmsads.com -# ||fmpub.net^$third-party (easylist.txt: 25785) -.fmpub.net -# ||flymyads.com^$third-party (easylist.txt: 25784) -.flymyads.com -# ||flyertown.ca^$third-party (easylist.txt: 25783) -.flyertown.ca -# ||fluxads.com^$third-party (easylist.txt: 25782) -.fluxads.com -# ||fluidads.co^$third-party (easylist.txt: 25781) -.fluidads.co -# ||flomigo.com^$third-party (easylist.txt: 25780) -.flomigo.com -# ||flodonas.com^$third-party (easylist.txt: 25779) -.flodonas.com -# ||fllwert.net^$third-party (easylist.txt: 25778) -.fllwert.net -# ||flite.com^$third-party (easylist.txt: 25777) -.flite.com -# ||fliionos.co.uk^$third-party (easylist.txt: 25776) -.fliionos.co.uk -# ||flexlinks.com^$third-party (easylist.txt: 25775) -.flexlinks.com -# ||flashtalking.com^$third-party (easylist.txt: 25774) -.flashtalking.com -# ||flashclicks.com^$third-party (easylist.txt: 25773) -.flashclicks.com -# ||flappysquid.net^$third-party (easylist.txt: 25772) -.flappysquid.net -# ||flappyhamster.net^$third-party (easylist.txt: 25771) -.flappyhamster.net -# ||flappybadger.net^$third-party (easylist.txt: 25770) -.flappybadger.net -# ||flagads.net^$third-party (easylist.txt: 25769) -.flagads.net -# ||fl-ads.com^$third-party (easylist.txt: 25768) -.fl-ads.com -# ||fixionmedia.com^$third-party (easylist.txt: 25767) -.fixionmedia.com -# ||fisari.com^$third-party (easylist.txt: 25766) -.fisari.com -# ||firstlightera.com^$third-party (easylist.txt: 25765) -.firstlightera.com -# ||firstimpression.io^$third-party (easylist.txt: 25764) -.firstimpression.io -# ||firstadsolution.com^$third-party (easylist.txt: 25763) -.firstadsolution.com -# ||first-rate.com^$third-party (easylist.txt: 25762) -.first-rate.com -# ||firmharborlinked.com^$third-party (easylist.txt: 25761) -.firmharborlinked.com -# ||firegob.com^$third-party (easylist.txt: 25760) -.firegob.com -# ||firefeeder.com^$third-party (easylist.txt: 25759) -.firefeeder.com -# ||firaxtech.com^$third-party (easylist.txt: 25758) -.firaxtech.com -# ||findsthat.com^$third-party (easylist.txt: 25757) -.findsthat.com -# ||findbestsolution.net^$third-party (easylist.txt: 25756) -.findbestsolution.net -# ||find-cheap-hotels.org^$third-party (easylist.txt: 25755) -.find-cheap-hotels.org -# ||find-abc.com^$third-party (easylist.txt: 25754) -.find-abc.com -# ||finalanypar.link^$third-party (easylist.txt: 25753) -.finalanypar.link -# ||fimserve.com^$third-party (easylist.txt: 25752) -.fimserve.com -# ||filtermomosearch.com^$third-party (easylist.txt: 25751) -.filtermomosearch.com -# ||filetarget.com^$third-party (easylist.txt: 25750) -.filetarget.com -# ||fidel.to^$third-party (easylist.txt: 25749) -.fidel.to -# ||fenixm.com^$third-party (easylist.txt: 25748) -.fenixm.com -# ||feljack.com^$third-party (easylist.txt: 25747) -.feljack.com -# ||feed-ads.com^$third-party (easylist.txt: 25746) -.feed-ads.com -# ||featurelink.com^$third-party (easylist.txt: 25745) -.featurelink.com -# ||featuredusers.com^$third-party (easylist.txt: 25744) -.featuredusers.com -# ||fbsvu.com^$third-party (easylist.txt: 25743) -.fbsvu.com -# ||fbgdc.com^$third-party (easylist.txt: 25742) -.fbgdc.com -# ||fb-plus.com^$third-party (easylist.txt: 25741) -.fb-plus.com -# ||fasttracktech.biz^$third-party (easylist.txt: 25740) -.fasttracktech.biz -# ||fastclick.net^$third-party (easylist.txt: 25739) -.fastclick.net -# ||fastates.net^$third-party (easylist.txt: 25738) -.fastates.net -# ||fastapi.net^$third-party (easylist.txt: 25737) -.fastapi.net -# ||fast2earn.com^$third-party (easylist.txt: 25736) -.fast2earn.com -# ||falkag.net^$third-party (easylist.txt: 25735) -.falkag.net -# ||fairadsnetwork.com^$third-party (easylist.txt: 25734) -.fairadsnetwork.com -# ||faggrim.com^$third-party (easylist.txt: 25733) -.faggrim.com -# ||ezoic.net^$third-party (easylist.txt: 25732) -.ezoic.net -# ||ezmob.com^$third-party (easylist.txt: 25731) -.ezmob.com -# ||ezadserver.net^$third-party (easylist.txt: 25730) -.ezadserver.net -# ||eyewonder.com^$third-party (easylist.txt: 25729) -.eyewonder.com -# ||eyewond.hs.llnwd.net^$third-party (easylist.txt: 25728) -.eyewond.hs.llnwd.net -# ||eyeviewads.com^$third-party (easylist.txt: 25727) -.eyeviewads.com -# ||eyereturn.com^$third-party (easylist.txt: 25726) -.eyereturn.com -# ||eyere.com^$third-party (easylist.txt: 25725) -.eyere.com -# ||extra33.com^$third-party (easylist.txt: 25724) -.extra33.com -# ||expresswebtraffic.com^$third-party (easylist.txt: 25723) -.expresswebtraffic.com -# ||exponential.com^$third-party (easylist.txt: 25722) -.exponential.com -# ||explainidentifycoding.info^$third-party (easylist.txt: 25721) -.explainidentifycoding.info -# ||exoneratedresignation.info^$third-party (easylist.txt: 25720) -.exoneratedresignation.info -# ||exoclick.com^$third-party (easylist.txt: 25719) -.exoclick.com -# ||exitjunction.com^$third-party (easylist.txt: 25718) -.exitjunction.com -# ||exitexplosion.com^$third-party (easylist.txt: 25717) -.exitexplosion.com -# ||exchange4media.com^$third-party (easylist.txt: 25716) -.exchange4media.com -# ||excellenceads.com^$third-party (easylist.txt: 25715) -.excellenceads.com -# ||exactdrive.com^$third-party (easylist.txt: 25714) -.exactdrive.com -# ||evolvenation.com^$third-party (easylist.txt: 25713) -.evolvenation.com -# ||evolvemediallc.com^$third-party (easylist.txt: 25712) -.evolvemediallc.com -# ||euz.net^$third-party (easylist.txt: 25711) -.euz.net -# ||euros4click.de^$third-party (easylist.txt: 25710) -.euros4click.de -# ||europacash.com^$third-party (easylist.txt: 25709) -.europacash.com -# ||euroclick.com^$third-party (easylist.txt: 25708) -.euroclick.com -# ||eurew.com^$third-party (easylist.txt: 25707) -.eurew.com -# ||etology.com^$third-party (easylist.txt: 25706) -.etology.com -# ||etmanly.ru^$third-party (easylist.txt: 25705) -.etmanly.ru -# ||etgdta.com^$third-party (easylist.txt: 25704) -.etgdta.com -# ||etargetnet.com^$third-party (easylist.txt: 25703) -.etargetnet.com -# ||essaycoupons.com^$third-party (easylist.txt: 25702) -.essaycoupons.com -# ||essayads.com^$third-party (easylist.txt: 25701) -.essayads.com -# ||especifican.com^$third-party (easylist.txt: 25700) -.especifican.com -# ||escokuro.com^$third-party (easylist.txt: 25699) -.escokuro.com -# ||escale.to^$third-party (easylist.txt: 25698) -.escale.to -# ||escalatenetwork.com^$third-party (easylist.txt: 25697) -.escalatenetwork.com -# ||erovinmo.com^$third-party (easylist.txt: 25696) -.erovinmo.com -# ||erovation.com^$third-party (easylist.txt: 25695) -.erovation.com -# ||ero-advertising.com^$third-party (easylist.txt: 25694) -.ero-advertising.com -# ||ergoledo.com^$third-party (easylist.txt: 25693) -.ergoledo.com -# ||ergodob.ru^$third-party (easylist.txt: 25692) -.ergodob.ru -# ||ergerww.net^$third-party (easylist.txt: 25691) -.ergerww.net -# ||erendri.com^$third-party (easylist.txt: 25690) -.erendri.com -# ||erado.org^$third-party (easylist.txt: 25689) -.erado.org -# ||eqads.com^$third-party (easylist.txt: 25688) -.eqads.com -# ||eptum.com^$third-party (easylist.txt: 25687) -.eptum.com -# ||eptord.com^$third-party (easylist.txt: 25686) -.eptord.com -# ||epnredirect.ru^$third-party (easylist.txt: 25685) -.epnredirect.ru -# ||epicgameads.com^$third-party (easylist.txt: 25684) -.epicgameads.com -# ||eosads.com^$third-party (easylist.txt: 25683) -.eosads.com -# ||entrecard.s3.amazonaws.com^$third-party (easylist.txt: 25682) -.entrecard.s3.amazonaws.com -# ||entrecard.com^$third-party (easylist.txt: 25681) -.entrecard.com -# ||enterads.com^$third-party (easylist.txt: 25680) -.enterads.com -# ||enlnks.com^$third-party (easylist.txt: 25679) -.enlnks.com -# ||engineseeker.com^$third-party (easylist.txt: 25678) -.engineseeker.com -# ||emptyspaceads.com^$third-party (easylist.txt: 25677) -.emptyspaceads.com -# ||employers-freshly.org^$third-party (easylist.txt: 25676) -.employers-freshly.org -# ||empiremoney.com^$third-party (easylist.txt: 25675) -.empiremoney.com -# ||emediate.se^$third-party (easylist.txt: 25674) -.emediate.se -# ||emediate.eu^$third-party (easylist.txt: 25673) -.emediate.eu -# ||emediate.dk^$third-party (easylist.txt: 25672) -.emediate.dk -# ||emediate.ch^$third-party (easylist.txt: 25671) -.emediate.ch -# ||emberads.com^$third-party (easylist.txt: 25670) -.emberads.com -# ||elvate.net^$third-party (easylist.txt: 25669) -.elvate.net -# ||elefantsearch.com^$third-party (easylist.txt: 25668) -.elefantsearch.com -# ||electnext.com^$third-party (easylist.txt: 25667) -.electnext.com -# ||elasticad.net^$third-party (easylist.txt: 25666) -.elasticad.net -# ||ektezis.ru^$third-party (easylist.txt: 25665) -.ektezis.ru -# ||ekmas.com^$third-party (easylist.txt: 25664) -.ekmas.com -# ||egamingonline.com^$third-party (easylist.txt: 25663) -.egamingonline.com -# ||effectivemeasure.net^$third-party (easylist.txt: 25662) -.effectivemeasure.net -# ||eedr.org^$third-party (easylist.txt: 25661) -.eedr.org -# ||edomz.net^$third-party (easylist.txt: 25660) -.edomz.net -# ||edgevertise.com^$third-party (easylist.txt: 25659) -.edgevertise.com -# ||edgeads.org^$third-party (easylist.txt: 25658) -.edgeads.org -# ||ecpmrocks.com^$third-party (easylist.txt: 25657) -.ecpmrocks.com -# ||ebz.io^$third-party (easylist.txt: 25656) -.ebz.io -# ||ebuzzing.com^$third-party (easylist.txt: 25655) -.ebuzzing.com -# ||eblastengine.com^$third-party (easylist.txt: 25654) -.eblastengine.com -# ||ebayobjects.com^$third-party (easylist.txt: 25653) -.ebayobjects.com -# ||ebayobjects.com.au^$third-party (easylist.txt: 25652) -.ebayobjects.com.au -# ||ebannertraffic.com^$third-party (easylist.txt: 25651) -.ebannertraffic.com -# ||easyinline.com^$third-party (easylist.txt: 25650) -.easyinline.com -# ||easyhits4u.com^$third-party (easylist.txt: 25649) -.easyhits4u.com -# ||easyflirt-partners.biz^$third-party (easylist.txt: 25648) -.easyflirt-partners.biz -# ||easydownload4you.com^$third-party (easylist.txt: 25647) -.easydownload4you.com -# ||easyad.com^$third-party (easylist.txt: 25646) -.easyad.com -# ||easy-adserver.com^$third-party (easylist.txt: 25645) -.easy-adserver.com -# ||earnify.com^$third-party (easylist.txt: 25644) -.earnify.com -# ||eads.to^$third-party (easylist.txt: 25643) -.eads.to -# ||eads-adserving.com^$third-party (easylist.txt: 25642) -.eads-adserving.com -# ||e9mlrvy1.com^$third-party (easylist.txt: 25641) -.e9mlrvy1.com -# ||e2yth.tv^$third-party (easylist.txt: 25640) -.e2yth.tv -# ||e-viral.com^$third-party (easylist.txt: 25639) -.e-viral.com -# ||e-planning.net^$third-party (easylist.txt: 25638) -.e-planning.net -# ||e-generator.com^$third-party (easylist.txt: 25637) -.e-generator.com -# ||e-find.co^$third-party (easylist.txt: 25636) -.e-find.co -# ||dynamitedata.com^$third-party (easylist.txt: 25635) -.dynamitedata.com -# ||dynamicoxygen.com^$third-party (easylist.txt: 25634) -.dynamicoxygen.com -# ||dyino.com^$third-party (easylist.txt: 25633) -.dyino.com -# ||dvaminusodin.net^$third-party (easylist.txt: 25632) -.dvaminusodin.net -# ||durtz.com^$third-party (easylist.txt: 25631) -.durtz.com -# ||durokuro.com^$third-party (easylist.txt: 25630) -.durokuro.com -# ||durnowar.com^$third-party (easylist.txt: 25629) -.durnowar.com -# ||dumedia.ru^$third-party (easylist.txt: 25628) -.dumedia.ru -# ||duggiads.com^$third-party (easylist.txt: 25627) -.duggiads.com -# ||duetads.com^$third-party (easylist.txt: 25626) -.duetads.com -# ||dudelsa.com^$third-party (easylist.txt: 25625) -.dudelsa.com -# ||dualmarket.info^$third-party (easylist.txt: 25624) -.dualmarket.info -# ||dtzads.com^$third-party (easylist.txt: 25623) -.dtzads.com -# ||dtmpub.com^$third-party (easylist.txt: 25622) -.dtmpub.com -# ||dsultra.com^$third-party (easylist.txt: 25619) -.dsultra.com -# ||dsnr-affiliates.com^$third-party (easylist.txt: 25618) -.dsnr-affiliates.com -# ||dsnextgen.com^$third-party (easylist.txt: 25617) -.dsnextgen.com -# ||dsero.net^$third-party (easylist.txt: 25616) -.dsero.net -# ||drowle.com^$third-party (easylist.txt: 25615) -.drowle.com -# ||dreamsearch.or.kr^$third-party (easylist.txt: 25614) -.dreamsearch.or.kr -# ||dreamaquarium.com^$third-party (easylist.txt: 25613) -.dreamaquarium.com -# ||dpstack.com^$third-party (easylist.txt: 25612) -.dpstack.com -# ||dpsrexor.com^$third-party (easylist.txt: 25611) -.dpsrexor.com -# ||dpmsrv.com^$third-party (easylist.txt: 25610) -.dpmsrv.com -# ||dpbolvw.net^$third-party (easylist.txt: 25609) -.dpbolvw.net -# ||dp25.kr^$third-party (easylist.txt: 25608) -.dp25.kr -# ||downsonglyrics.com^$third-party (easylist.txt: 25607) -.downsonglyrics.com -# ||downloadboutique.com^$third-party (easylist.txt: 25606) -.downloadboutique.com -# ||down1oads.com^$third-party (easylist.txt: 25605) -.down1oads.com -# ||doubleverify.com^$third-party (easylist.txt: 25604) -.doubleverify.com -# ||doublerecall.com^$third-party (easylist.txt: 25603) -.doublerecall.com -# ||doublerads.com^$third-party (easylist.txt: 25602) -.doublerads.com -# ||doublepimp.com^$third-party (easylist.txt: 25601) -.doublepimp.com -# ||doublemax.net^$third-party (easylist.txt: 25600) -.doublemax.net -# ||doubleclicks.me^$third-party (easylist.txt: 25599) -.doubleclicks.me -# ||doubleclickbygoogle.com^$third-party (easylist.txt: 25598) -.doubleclickbygoogle.com -# ||doubleclick.net^*;afv_flvurl=http://cdn.c.ooyala.com/$third-party (easylist.txt: 25597) -.doubleclick.net/.*;afv_flvurl=http://cdn\.c\.ooyala\.com/ -# ||doubleclick.net^*/pfadx/team.sd/$third-party (easylist.txt: 25596) -.doubleclick.net/.*/pfadx/team\.sd/ -# ||doubleclick.net^*/pfadx/team.dal/$third-party (easylist.txt: 25595) -.doubleclick.net/.*/pfadx/team\.dal/ -# ||doubleclick.net^*/pfadx/team.car/$third-party (easylist.txt: 25594) -.doubleclick.net/.*/pfadx/team\.car/ -# ||doubleclick.net^*/pfadx/ssp.wews/$third-party (easylist.txt: 25593) -.doubleclick.net/.*/pfadx/ssp\.wews/ -# ||doubleclick.net^*/pfadx/muzumain/$third-party (easylist.txt: 25592) -.doubleclick.net/.*/pfadx/muzumain/ -# ||doubleclick.net^*/pfadx/ibs.orl.news/$third-party (easylist.txt: 25591) -.doubleclick.net/.*/pfadx/ibs\.orl\.news/ -# ||doubleclick.net^*/pfadx/embed.ytpwatch.$third-party (easylist.txt: 25590) -.doubleclick.net/.*/pfadx/embed\.ytpwatch\. -# ||doubleclick.net^*/pfadx/com.ytpwatch.$third-party (easylist.txt: 25589) -.doubleclick.net/.*/pfadx/com\.ytpwatch\. -# ||doubleclick.net^*/pfadx/cmn_complextv/$third-party (easylist.txt: 25588) -.doubleclick.net/.*/pfadx/cmn_complextv/ -# ||doubleclick.net^*/pfadx/ccr.newyork.$third-party (easylist.txt: 25587) -.doubleclick.net/.*/pfadx/ccr\.newyork\. -# ||doubleclick.net/pfadx/www.tv3.co.nz$third-party (easylist.txt: 25581) -.doubleclick.net/pfadx/www\.tv3\.co\.nz -# ||doubleclick.net/pfadx/video.wsj.com/$third-party (easylist.txt: 25580) -.doubleclick.net/pfadx/video\.wsj\.com/ -# ||doubleclick.net/pfadx/video.marketwatch.com/$third-party (easylist.txt: 25579) -.doubleclick.net/pfadx/video\.marketwatch\.com/ -# ||doubleclick.net/pfadx/ugo.gv.1up/$third-party (easylist.txt: 25578) -.doubleclick.net/pfadx/ugo\.gv\.1up/ -# ||doubleclick.net/pfadx/trb.$third-party (easylist.txt: 25577) -.doubleclick.net/pfadx/trb\. -# ||doubleclick.net/pfadx/tmz.video.wb.dart/$third-party (easylist.txt: 25576) -.doubleclick.net/pfadx/tmz\.video\.wb\.dart/ -# ||doubleclick.net/pfadx/tmg.telegraph.$third-party (easylist.txt: 25575) -.doubleclick.net/pfadx/tmg\.telegraph\. -# ||doubleclick.net/pfadx/sugar.poptv/$third-party (easylist.txt: 25574) -.doubleclick.net/pfadx/sugar\.poptv/ -# ||doubleclick.net/pfadx/storm.no/$third-party (easylist.txt: 25573) -.doubleclick.net/pfadx/storm\.no/ -# ||doubleclick.net/pfadx/ssp.kgtv/$third-party (easylist.txt: 25572) -.doubleclick.net/pfadx/ssp\.kgtv/ -# ||doubleclick.net/pfadx/ng.videoplayer/$third-party (easylist.txt: 25571) -.doubleclick.net/pfadx/ng\.videoplayer/ -# ||doubleclick.net/pfadx/nfl.$third-party (easylist.txt: 25570) -.doubleclick.net/pfadx/nfl\. -# ||doubleclick.net/pfadx/ndm.tcm/$third-party (easylist.txt: 25569) -.doubleclick.net/pfadx/ndm\.tcm/ -# ||doubleclick.net/pfadx/nbcu.nhl/$third-party (easylist.txt: 25568) -.doubleclick.net/pfadx/nbcu\.nhl/ -# ||doubleclick.net/pfadx/nbcu.nhl.$third-party (easylist.txt: 25567) -.doubleclick.net/pfadx/nbcu\.nhl\. -# ||doubleclick.net/pfadx/nbcu.nbc/$third-party (easylist.txt: 25566) -.doubleclick.net/pfadx/nbcu\.nbc/ -# ||doubleclick.net/pfadx/muzuoffsite/$third-party (easylist.txt: 25565) -.doubleclick.net/pfadx/muzuoffsite/ -# ||doubleclick.net/pfadx/muzumain/$third-party (easylist.txt: 25564) -.doubleclick.net/pfadx/muzumain/ -# ||doubleclick.net/pfadx/miniclip.prevideo/$third-party (easylist.txt: 25563) -.doubleclick.net/pfadx/miniclip\.prevideo/ -# ||doubleclick.net/pfadx/miniclip.midvideo/$third-party (easylist.txt: 25562) -.doubleclick.net/pfadx/miniclip\.midvideo/ -# ||doubleclick.net/pfadx/mc.channelnewsasia.com^$third-party (easylist.txt: 25561) -.doubleclick.net/pfadx/mc\.channelnewsasia\.com[^\w%.-] -# ||doubleclick.net/pfadx/ltv.wtvr.video/$third-party (easylist.txt: 25560) -.doubleclick.net/pfadx/ltv\.wtvr\.video/ -# ||doubleclick.net/pfadx/intl.sps.com/$third-party (easylist.txt: 25559) -.doubleclick.net/pfadx/intl\.sps\.com/ -# ||doubleclick.net/pfadx/gn.movieweb.com/$third-party (easylist.txt: 25558) -.doubleclick.net/pfadx/gn\.movieweb\.com/ -# ||doubleclick.net/pfadx/ddm.ksl/$third-party (easylist.txt: 25557) -.doubleclick.net/pfadx/ddm\.ksl/ -# ||doubleclick.net/pfadx/ctv.spacecast/$third-party (easylist.txt: 25556) -.doubleclick.net/pfadx/ctv\.spacecast/ -# ||doubleclick.net/pfadx/ctv.muchmusic.com/$third-party (easylist.txt: 25555) -.doubleclick.net/pfadx/ctv\.muchmusic\.com/ -# ||doubleclick.net/pfadx/ctv.ctvwatch.ca/$third-party (easylist.txt: 25554) -.doubleclick.net/pfadx/ctv\.ctvwatch\.ca/ -# ||doubleclick.net/pfadx/csn.$third-party (easylist.txt: 25553) -.doubleclick.net/pfadx/csn\. -# ||doubleclick.net/pfadx/comedycentral.$third-party (easylist.txt: 25552) -.doubleclick.net/pfadx/comedycentral\. -# ||doubleclick.net/pfadx/ccr.$third-party (easylist.txt: 25551) -.doubleclick.net/pfadx/ccr\. -# ||doubleclick.net/pfadx/CBS.$third-party (easylist.txt: 25550) -.doubleclick.net/pfadx/CBS\. -# ||doubleclick.net/pfadx/cblvsn.nwsd.videogallery/$third-party (easylist.txt: 25549) -.doubleclick.net/pfadx/cblvsn\.nwsd\.videogallery/ -# ||doubleclick.net/pfadx/bzj.bizjournals/$third-party (easylist.txt: 25548) -.doubleclick.net/pfadx/bzj\.bizjournals/ -# ||doubleclick.net/pfadx/blp.video/midroll$third-party (easylist.txt: 25547) -.doubleclick.net/pfadx/blp\.video/midroll -# ||doubleclick.net/pfadx/bet.com/$third-party (easylist.txt: 25546) -.doubleclick.net/pfadx/bet\.com/ -# ||doubleclick.net/pfadx/belo.king5.pre/$third-party (easylist.txt: 25545) -.doubleclick.net/pfadx/belo\.king5\.pre/ -# ||doubleclick.net/pfadx/aetn.aetv.shows/$third-party (easylist.txt: 25544) -.doubleclick.net/pfadx/aetn\.aetv\.shows/ -# ||doubleclick.net/pfadx/*CBSINTERACTIVE/$third-party (easylist.txt: 25543) -.doubleclick.net/pfadx/.*CBSINTERACTIVE/ -# ||doubleclick.net/pfadx/*adcat=$third-party (easylist.txt: 25542) -.doubleclick.net/pfadx/.*adcat= -# ||doubleclick.net/pfadx/*/kidstv/$third-party (easylist.txt: 25541) -.doubleclick.net/pfadx/.*/kidstv/ -# ||doubleclick.net/pfadx/*.WALTDISNEYINTERNETGROU/$third-party (easylist.txt: 25540) -.doubleclick.net/pfadx/.*\.WALTDISNEYINTERNETGROU/ -# ||doubleclick.net/pfadx/*.VIACOMINTERNATIONAL/$third-party (easylist.txt: 25539) -.doubleclick.net/pfadx/.*\.VIACOMINTERNATIONAL/ -# ||doubleclick.net/pfadx/*.sevenload.com_$third-party (easylist.txt: 25538) -.doubleclick.net/pfadx/.*\.sevenload\.com_ -# ||doubleclick.net/pfadx/*.reuters/$third-party (easylist.txt: 25537) -.doubleclick.net/pfadx/.*\.reuters/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL/$third-party (easylist.txt: 25536) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL/ -# ||doubleclick.net/pfadx/*.NBCUNIVERSAL-CNBC/$third-party (easylist.txt: 25535) -.doubleclick.net/pfadx/.*\.NBCUNIVERSAL-CNBC/ -# ||doubleclick.net/pfadx/*.NBCUNI.COM/$third-party (easylist.txt: 25534) -.doubleclick.net/pfadx/.*\.NBCUNI\.COM/ -# ||doubleclick.net/pfadx/*.nbc.com/$third-party (easylist.txt: 25533) -.doubleclick.net/pfadx/.*\.nbc\.com/ -# ||doubleclick.net/pfadx/*.muzu/$third-party (easylist.txt: 25532) -.doubleclick.net/pfadx/.*\.muzu/ -# ||doubleclick.net/pfadx/*.mtvi$third-party (easylist.txt: 25531) -.doubleclick.net/pfadx/.*\.mtvi -# ||doubleclick.net/pfadx/*.MTV-Viacom/$third-party (easylist.txt: 25530) -.doubleclick.net/pfadx/.*\.MTV-Viacom/ -# ||doubleclick.net/pfadx/*.MCNONLINE/$third-party (easylist.txt: 25529) -.doubleclick.net/pfadx/.*\.MCNONLINE/ -# ||doubleclick.net/pfadx/*.ESPN/$third-party (easylist.txt: 25528) -.doubleclick.net/pfadx/.*\.ESPN/ -# ||doubleclick.net/pfadx/*.BLIPTV/$third-party (easylist.txt: 25527) -.doubleclick.net/pfadx/.*\.BLIPTV/ -# ||doubleclick.net/pfadx/*.ABC.com/$third-party (easylist.txt: 25526) -.doubleclick.net/pfadx/.*\.ABC\.com/ -# ||doubleclick.net/N6872/pfadx/shaw.mylifetimetv.ca/$third-party (easylist.txt: 25525) -.doubleclick.net/N6872/pfadx/shaw\.mylifetimetv\.ca/ -# ||doubleclick.net/N6088/pfadx/ssp.kshb/$third-party (easylist.txt: 25524) -.doubleclick.net/N6088/pfadx/ssp\.kshb/ -# ||doubleclick.net/N5479/pfadx/ctv.$third-party (easylist.txt: 25523) -.doubleclick.net/N5479/pfadx/ctv\. -# ||doubleclick.net/N5202/pfadx/cmn_livemixtapes/$third-party (easylist.txt: 25522) -.doubleclick.net/N5202/pfadx/cmn_livemixtapes/ -# ||doubleclick.net/N4526/pfadx/*.muzu/$third-party (easylist.txt: 25521) -.doubleclick.net/N4526/pfadx/.*\.muzu/ -# ||doubleclick.net/N4117/pfadx/*.sbs.com.au/$third-party (easylist.txt: 25520) -.doubleclick.net/N4117/pfadx/.*\.sbs\.com\.au/ -# ||doubleclick.net/N3626/pfadx/thehothits.com.au/$third-party (easylist.txt: 25519) -.doubleclick.net/N3626/pfadx/thehothits\.com\.au/ -# ||doubleclick.net/N2/pfadx/video.wsj.com/$third-party (easylist.txt: 25518) -.doubleclick.net/N2/pfadx/video\.wsj\.com/ -# ||doubleclick.net/N2/pfadx/video.allthingsd.com/$third-party (easylist.txt: 25516) -.doubleclick.net/N2/pfadx/video\.allthingsd\.com/ -# ||doubleclick.net/N2/pfadx/video.*.wsj.com/$third-party (easylist.txt: 25515) -.doubleclick.net/N2/pfadx/video\..*\.wsj\.com/ -# ||doubleclick.net/adx/wn.nat.$third-party (easylist.txt: 25513) -.doubleclick.net/adx/wn\.nat\. -# ||doubleclick.net/adx/wn.loc.$third-party (easylist.txt: 25512) -.doubleclick.net/adx/wn\.loc\. -# ||doubleclick.net/adx/tsg.$third-party (easylist.txt: 25511) -.doubleclick.net/adx/tsg\. -# ||doubleclick.net/adx/ibs.$third-party (easylist.txt: 25510) -.doubleclick.net/adx/ibs\. -# ||doubleclick.net/adx/CBS.$third-party (easylist.txt: 25509) -.doubleclick.net/adx/CBS\. -# ||doubleclick.net/adx/*.ted/$third-party (easylist.txt: 25508) -.doubleclick.net/adx/.*\.ted/ -# ||doubleclick.net/adx/*.NPR/$third-party (easylist.txt: 25507) -.doubleclick.net/adx/.*\.NPR/ -# ||doubleclick.net/adx/*.NPR.MUSIC/$third-party (easylist.txt: 25506) -.doubleclick.net/adx/.*\.NPR\.MUSIC/ -# ||doubleclick.net/adx/*.collegehumor/$third-party (easylist.txt: 25505) -.doubleclick.net/adx/.*\.collegehumor/ -# ||doubleclick.net/adj/*.collegehumor/sec=videos_originalcontent;$third-party (easylist.txt: 25503) -.doubleclick.net/adj/.*\.collegehumor/sec=videos_originalcontent; -# ||doubleclick.net/ad/$third-party (easylist.txt: 25500) -.doubleclick.net/ad/ -# ||doubleclick.net/*/pfadx/lin.$third-party (easylist.txt: 25499) -.doubleclick.net/.*/pfadx/lin\. -# ||doubleclick.net/*/ch_news.com/$third-party (easylist.txt: 25498) -.doubleclick.net/.*/ch_news\.com/ -# ||doubleclick.com^$third-party (easylist.txt: 25497) -.doubleclick.com -# ||double.net^$third-party (easylist.txt: 25496) -.double.net -# ||dotandad.com^$third-party (easylist.txt: 25495) -.dotandad.com -# ||dorenga.com^$third-party (easylist.txt: 25494) -.dorenga.com -# ||doomail.org^$third-party (easylist.txt: 25493) -.doomail.org -# ||doogleonduty.com^$third-party (easylist.txt: 25492) -.doogleonduty.com -# ||dooc.info^$third-party (easylist.txt: 25491) -.dooc.info -# ||domdex.com^$third-party (easylist.txt: 25490) -.domdex.com -# ||domainsponsor.com^$third-party (easylist.txt: 25489) -.domainsponsor.com -# ||domainbuyingservices.com^$third-party (easylist.txt: 25488) -.domainbuyingservices.com -# ||domainadvertising.com^$third-party (easylist.txt: 25487) -.domainadvertising.com -# ||dollarsponsor.com^$third-party (easylist.txt: 25486) -.dollarsponsor.com -# ||dollarade.com^$third-party (easylist.txt: 25485) -.dollarade.com -# ||document4u.info^$third-party (easylist.txt: 25484) -.document4u.info -# ||dntrck.com^$third-party (easylist.txt: 25483) -.dntrck.com -# ||dmu20vut.com^$third-party (easylist.txt: 25482) -.dmu20vut.com -# ||dl-rms.com^$third-party (easylist.txt: 25481) -.dl-rms.com -# ||dj-updates.com^$third-party (easylist.txt: 25480) -.dj-updates.com -# ||districtm.ca^$third-party (easylist.txt: 25479) -.districtm.ca -# ||distilled.ie^$third-party (easylist.txt: 25478) -.distilled.ie -# ||dispop.com^$third-party (easylist.txt: 25477) -.dispop.com -# ||directtrk.com^$third-party (easylist.txt: 25476) -.directtrk.com -# ||directtrack.com^$third-party (easylist.txt: 25475) -.directtrack.com -# ||directrev.com^$third-party (easylist.txt: 25474) -.directrev.com -# ||directorym.com^$third-party (easylist.txt: 25473) -.directorym.com -# ||directoral.info^$third-party (easylist.txt: 25472) -.directoral.info -# ||directleads.com^$third-party (easylist.txt: 25471) -.directleads.com -# ||directile.net^$third-party (easylist.txt: 25470) -.directile.net -# ||directile.info^$third-party (easylist.txt: 25469) -.directile.info -# ||directaclick.com^$third-party (easylist.txt: 25468) -.directaclick.com -# ||dinclinx.com^$third-party (easylist.txt: 25466) -.dinclinx.com -# ||digitrevenue.com^$third-party (easylist.txt: 25465) -.digitrevenue.com -# ||digipathmedia.com^$third-party (easylist.txt: 25464) -.digipathmedia.com -# ||dianomioffers.co.uk^$third-party (easylist.txt: 25463) -.dianomioffers.co.uk -# ||diamondtraff.com^$third-party (easylist.txt: 25462) -.diamondtraff.com -# ||dhundora.com^$third-party (easylist.txt: 25461) -.dhundora.com -# ||dgmaxinteractive.com^$third-party (easylist.txt: 25460) -.dgmaxinteractive.com -# ||dgmaustralia.com^$third-party (easylist.txt: 25459) -.dgmaustralia.com -# ||dgmatix.com^$third-party (easylist.txt: 25458) -.dgmatix.com -# ||dexplatform.com^$third-party (easylist.txt: 25457) -.dexplatform.com -# ||deximedia.com^$third-party (easylist.txt: 25456) -.deximedia.com -# ||developermedia.com^$third-party (easylist.txt: 25455) -.developermedia.com -# ||detroposal.com^$third-party (easylist.txt: 25454) -.detroposal.com -# ||destinationurl.com^$third-party (easylist.txt: 25453) -.destinationurl.com -# ||derlatas.com^$third-party (easylist.txt: 25452) -.derlatas.com -# ||deriversal.com^$third-party (easylist.txt: 25451) -.deriversal.com -# ||deployads.com^$third-party (easylist.txt: 25450) -.deployads.com -# ||deplayer.net^$third-party (easylist.txt: 25449) -.deplayer.net -# ||delnapb.com^$third-party (easylist.txt: 25448) -.delnapb.com -# ||delivery51.com^$third-party (easylist.txt: 25447) -.delivery51.com -# ||delivery49.com^$third-party (easylist.txt: 25446) -.delivery49.com -# ||delivery47.com^$third-party (easylist.txt: 25445) -.delivery47.com -# ||delivery45.com^$third-party (easylist.txt: 25444) -.delivery45.com -# ||dehtale.ru^$third-party (easylist.txt: 25443) -.dehtale.ru -# ||deguiste.com^$third-party (easylist.txt: 25442) -.deguiste.com -# ||defaultimg.com^$third-party (easylist.txt: 25441) -.defaultimg.com -# ||deepmetrix.com^$third-party (easylist.txt: 25440) -.deepmetrix.com -# ||dedicatednetworks.com^$third-party (easylist.txt: 25439) -.dedicatednetworks.com -# ||dedicatedmedia.com^$third-party (easylist.txt: 25438) -.dedicatedmedia.com -# ||decknetwork.net^$third-party (easylist.txt: 25437) -.decknetwork.net -# ||decisionnews.com^$third-party (easylist.txt: 25436) -.decisionnews.com -# ||decisionmark.com^$third-party (easylist.txt: 25435) -.decisionmark.com -# ||dealcurrent.com^$third-party (easylist.txt: 25434) -.dealcurrent.com -# ||dbclix.com^$third-party (easylist.txt: 25433) -.dbclix.com -# ||dbbsrv.com^$third-party (easylist.txt: 25432) -.dbbsrv.com -# ||dazhantai.com^$third-party (easylist.txt: 25431) -.dazhantai.com -# ||datumreact.com^$third-party (easylist.txt: 25430) -.datumreact.com -# ||datinggold.com^$third-party (easylist.txt: 25429) -.datinggold.com -# ||dating-banners.com^$third-party (easylist.txt: 25428) -.dating-banners.com -# ||data.adroll.com^$third-party (easylist.txt: 25427) -.data.adroll.com -# ||dashboardad.net^$third-party (easylist.txt: 25426) -.dashboardad.net -# ||dashbida.com^$third-party (easylist.txt: 25425) -.dashbida.com -# ||das5ku9q.com^$third-party (easylist.txt: 25424) -.das5ku9q.com -# ||darwarvid.com^$third-party (easylist.txt: 25423) -.darwarvid.com -# ||dapper.net^$third-party (easylist.txt: 25422) -.dapper.net -# ||danitabedtick.net^$third-party (easylist.txt: 25421) -.danitabedtick.net -# ||dadegid.ru^$third-party (easylist.txt: 25420) -.dadegid.ru -# ||da-ads.com^$third-party (easylist.txt: 25419) -.da-ads.com -# ||d2ship.com^$third-party (easylist.txt: 25418) -.d2ship.com -# ||d1110e4.se^$third-party (easylist.txt: 25417) -.d1110e4.se -# ||d03x2011.com^$third-party (easylist.txt: 25416) -.d03x2011.com -# ||d.m3.net^$third-party (easylist.txt: 25415) -.d.m3.net -# ||d.adroll.com^$third-party (easylist.txt: 25414) -.d.adroll.com -# ||czasnaherbate.info^$third-party (easylist.txt: 25413) -.czasnaherbate.info -# ||cygnus.com^$third-party (easylist.txt: 25412) -.cygnus.com -# ||cybmas.com^$third-party (easylist.txt: 25411) -.cybmas.com -# ||curtisfrierson.com^$third-party (easylist.txt: 25410) -.curtisfrierson.com -# ||currentlyobsessed.me^$third-party (easylist.txt: 25409) -.currentlyobsessed.me -# ||curancience.com^$third-party (easylist.txt: 25408) -.curancience.com -# ||cuelinks.com^$third-party (easylist.txt: 25407) -.cuelinks.com -# ||cubics.com^$third-party (easylist.txt: 25406) -.cubics.com -# ||ctrhub.com^$third-party (easylist.txt: 25405) -.ctrhub.com -# ||ctm-media.com^$third-party (easylist.txt: 25404) -.ctm-media.com -# ||ctenetwork.com^$third-party (easylist.txt: 25403) -.ctenetwork.com -# ||ctasnet.com^$third-party (easylist.txt: 25402) -.ctasnet.com -# ||cruiseworldinc.com^$third-party (easylist.txt: 25401) -.cruiseworldinc.com -# ||cruftexcision.xyz^$third-party (easylist.txt: 25400) -.cruftexcision.xyz -# ||crowdgravity.com^$third-party (easylist.txt: 25399) -.crowdgravity.com -# ||crowdgatheradnetwork.com^$third-party (easylist.txt: 25398) -.crowdgatheradnetwork.com -# ||crossrider.com^$third-party (easylist.txt: 25397) -.crossrider.com -# ||crispads.com^$third-party (easylist.txt: 25396) -.crispads.com -# ||creditcards15x.tk^$third-party (easylist.txt: 25395) -.creditcards15x.tk -# ||creative-serving.com^$third-party (easylist.txt: 25394) -.creative-serving.com -# ||crazyvideosempire.com^$third-party (easylist.txt: 25393) -.crazyvideosempire.com -# ||crazylead.com^$third-party (easylist.txt: 25392) -.crazylead.com -# ||crakmedia.com^$third-party (easylist.txt: 25391) -.crakmedia.com -# ||cpxinteractive.com^$third-party (easylist.txt: 25390) -.cpxinteractive.com -# ||cpxadroit.com^$third-party (easylist.txt: 25389) -.cpxadroit.com -# ||cpx24.com^$third-party (easylist.txt: 25388) -.cpx24.com -# ||cpvtgt.com^$third-party (easylist.txt: 25387) -.cpvtgt.com -# ||cpvmarketplace.info^$third-party (easylist.txt: 25386) -.cpvmarketplace.info -# ||cpvadvertise.com^$third-party (easylist.txt: 25385) -.cpvadvertise.com -# ||cpvads.com^$third-party (easylist.txt: 25384) -.cpvads.com -# ||cpulaptop.com^$third-party (easylist.txt: 25383) -.cpulaptop.com -# ||cpuim.com^$third-party (easylist.txt: 25382) -.cpuim.com -# ||cpmtree.com^$third-party (easylist.txt: 25381) -.cpmtree.com -# ||cpmstar.com^$third-party (easylist.txt: 25380) -.cpmstar.com -# ||cpmrocket.com^$third-party (easylist.txt: 25379) -.cpmrocket.com -# ||cpmmedia.net^$third-party (easylist.txt: 25378) -.cpmmedia.net -# ||cpmleader.com^$third-party (easylist.txt: 25377) -.cpmleader.com -# ||cpmaffiliation.com^$third-party (easylist.txt: 25376) -.cpmaffiliation.com -# ||cpmadvisors.com^$third-party (easylist.txt: 25375) -.cpmadvisors.com -# ||cpm.biz^$third-party (easylist.txt: 25374) -.cpm.biz -# ||cpfclassifieds.com^$third-party (easylist.txt: 25373) -.cpfclassifieds.com -# ||cpcadnet.com^$third-party (easylist.txt: 25372) -.cpcadnet.com -# ||cpays.com^$third-party (easylist.txt: 25371) -.cpays.com -# ||cpaway.com^$third-party (easylist.txt: 25370) -.cpaway.com -# ||cpanuk.com^$third-party (easylist.txt: 25369) -.cpanuk.com -# ||cpalock.com^$third-party (easylist.txt: 25368) -.cpalock.com -# ||cpalead.com^$third-party (easylist.txt: 25367) -.cpalead.com -# ||cpagrip.com^$third-party (easylist.txt: 25366) -.cpagrip.com -# ||cpaclickz.com^$third-party (easylist.txt: 25365) -.cpaclickz.com -# ||cpaclicks.com^$third-party (easylist.txt: 25364) -.cpaclicks.com -# ||cpabeyond.com^$third-party (easylist.txt: 25363) -.cpabeyond.com -# ||coupon2buy.com^$third-party (easylist.txt: 25361) -.coupon2buy.com -# ||coull.com^$third-party (easylist.txt: 25360) -.coull.com -# ||cosmjs.com^$third-party (easylist.txt: 25359) -.cosmjs.com -# ||cornflip.com^$third-party (easylist.txt: 25358) -.cornflip.com -# ||coretarget.co.uk^$third-party (easylist.txt: 25357) -.coretarget.co.uk -# ||cor-natty.com^$third-party (easylist.txt: 25356) -.cor-natty.com -# ||copacet.com^$third-party (easylist.txt: 25355) -.copacet.com -# ||coolmirage.com^$third-party (easylist.txt: 25354) -.coolmirage.com -# ||coolerads.com^$third-party (easylist.txt: 25353) -.coolerads.com -# ||contextweb.com^$third-party (easylist.txt: 25352) -.contextweb.com -# ||contextuads.com^$third-party (easylist.txt: 25351) -.contextuads.com -# ||contextads.net^$third-party (easylist.txt: 25350) -.contextads.net -# ||contexlink.se^$third-party (easylist.txt: 25349) -.contexlink.se -# ||contentwidgets.net^$third-party (easylist.txt: 25348) -.contentwidgets.net -# ||contenture.com^$third-party (easylist.txt: 25347) -.contenture.com -# ||contentjs.com^$third-party (easylist.txt: 25346) -.contentjs.com -# ||contentdigital.info^$third-party (easylist.txt: 25345) -.contentdigital.info -# ||contentclick.co.uk^$third-party (easylist.txt: 25344) -.contentclick.co.uk -# ||content.ad^$third-party (easylist.txt: 25343) -.content.ad -# ||content-cooperation.com^$third-party (easylist.txt: 25342) -.content-cooperation.com -# ||contaxe.com^$third-party (easylist.txt: 25341) -.contaxe.com -# ||contadd.com^$third-party (easylist.txt: 25340) -.contadd.com -# ||consumergenepool.com^$third-party (easylist.txt: 25339) -.consumergenepool.com -# ||construment.com^$third-party (easylist.txt: 25338) -.construment.com -# ||connextra.com^$third-party (easylist.txt: 25337) -.connextra.com -# ||connexplace.com^$third-party (easylist.txt: 25336) -.connexplace.com -# ||connexity.net^$third-party (easylist.txt: 25335) -.connexity.net -# ||connectionads.com^$third-party (easylist.txt: 25334) -.connectionads.com -# ||connectedads.net^$third-party (easylist.txt: 25333) -.connectedads.net -# ||connatix.com^$third-party (easylist.txt: 25332) -.connatix.com -# ||conduit-services.com^$third-party (easylist.txt: 25331) -.conduit-services.com -# ||conduit-banners.com^$third-party (easylist.txt: 25330) -.conduit-banners.com -# ||comscore.com^$third-party (easylist.txt: 25329) -.comscore.com -# ||complive.link^$third-party (easylist.txt: 25328) -.complive.link -# ||completecarrd.com^$third-party (easylist.txt: 25327) -.completecarrd.com -# ||commissionmonster.com^$third-party (easylist.txt: 25326) -.commissionmonster.com -# ||commissionlounge.com^$third-party (easylist.txt: 25325) -.commissionlounge.com -# ||commissionfactory.com.au^$third-party (easylist.txt: 25324) -.commissionfactory.com.au -# ||commission.bz^$third-party (easylist.txt: 25323) -.commission.bz -# ||commission-junction.com^$third-party (easylist.txt: 25322) -.commission-junction.com -# ||comclick.com^$third-party (easylist.txt: 25321) -.comclick.com -# ||colliersads.com^$third-party (easylist.txt: 25320) -.colliersads.com -# ||collective-media.net^$third-party (easylist.txt: 25319) -.collective-media.net -# ||collection-day.com^$third-party (easylist.txt: 25318) -.collection-day.com -# ||coinadvert.net^$third-party (easylist.txt: 25317) -.coinadvert.net -# ||coguan.com^$third-party (easylist.txt: 25316) -.coguan.com -# ||cogsdigital.com^$third-party (easylist.txt: 25315) -.cogsdigital.com -# ||cogocast.net^$third-party (easylist.txt: 25314) -.cogocast.net -# ||coedmediagroup.com^$third-party (easylist.txt: 25313) -.coedmediagroup.com -# ||codigobarras.net^$third-party (easylist.txt: 25312) -.codigobarras.net -# ||codezap.com^$third-party (easylist.txt: 25311) -.codezap.com -# ||coadvertise.com^$third-party (easylist.txt: 25310) -.coadvertise.com -# ||cntdy.mobi^$third-party (easylist.txt: 25309) -.cntdy.mobi -# ||cnt.my^$third-party (easylist.txt: 25308) -.cnt.my -# ||cmllk1.info^$third-party (easylist.txt: 25307) -.cmllk1.info -# ||cmfads.com^$third-party (easylist.txt: 25306) -.cmfads.com -# ||clz3.net^$third-party (easylist.txt: 25305) -.clz3.net -# ||cltomedia.info^$third-party (easylist.txt: 25304) -.cltomedia.info -# ||cloudioo.net^$third-party (easylist.txt: 25303) -.cloudioo.net -# ||clnk.me^$third-party (easylist.txt: 25302) -.clnk.me -# ||clixtrac.com^$third-party (easylist.txt: 25300) -.clixtrac.com -# ||clixsense.com^$third-party (easylist.txt: 25299) -.clixsense.com -# ||clixgalore.com^$third-party (easylist.txt: 25298) -.clixgalore.com -# ||clickzxc.com^$third-party (easylist.txt: 25297) -.clickzxc.com -# ||clickxchange.com^$third-party (easylist.txt: 25296) -.clickxchange.com -# ||clickwinks.com^$third-party (easylist.txt: 25295) -.clickwinks.com -# ||clickupto.com^$third-party (easylist.txt: 25294) -.clickupto.com -# ||clicktripz.com^$third-party (easylist.txt: 25293) -.clicktripz.com -# ||clicktripz.co^$third-party (easylist.txt: 25292) -.clicktripz.co -# ||clickthrucash.com^$third-party (easylist.txt: 25291) -.clickthrucash.com -# ||clickterra.net^$third-party (easylist.txt: 25290) -.clickterra.net -# ||clicksurvey.mobi^$third-party (easylist.txt: 25289) -.clicksurvey.mobi -# ||clicksor.net^$third-party (easylist.txt: 25288) -.clicksor.net -# ||clicksor.com^$third-party (easylist.txt: 25287) -.clicksor.com -# ||clicks2count.com^$third-party (easylist.txt: 25286) -.clicks2count.com -# ||clickosmedia.com^$third-party (easylist.txt: 25285) -.clickosmedia.com -# ||clicknano.com^$third-party (easylist.txt: 25284) -.clicknano.com -# ||clickmyads.info^$third-party (easylist.txt: 25283) -.clickmyads.info -# ||clickkingdom.net^$third-party (easylist.txt: 25282) -.clickkingdom.net -# ||clickiocdn.com^$third-party (easylist.txt: 25281) -.clickiocdn.com -# ||clickintext.net^$third-party (easylist.txt: 25280) -.clickintext.net -# ||clickintext.com^$third-party (easylist.txt: 25279) -.clickintext.com -# ||clickfuse.com^$third-party (easylist.txt: 25278) -.clickfuse.com -# ||clickexperts.net^$third-party (easylist.txt: 25277) -.clickexperts.net -# ||clickexa.com^$third-party (easylist.txt: 25276) -.clickexa.com -# ||clickequations.net^$third-party (easylist.txt: 25275) -.clickequations.net -# ||clickcertain.com^$third-party (easylist.txt: 25274) -.clickcertain.com -# ||clickcash.com^$third-party (easylist.txt: 25273) -.clickcash.com -# ||clickbubbles.net^$third-party (easylist.txt: 25272) -.clickbubbles.net -# ||clickboothlnk.com^$third-party (easylist.txt: 25271) -.clickboothlnk.com -# ||clickbooth.com^$third-party (easylist.txt: 25270) -.clickbooth.com -# ||clickbet88.com^$third-party (easylist.txt: 25269) -.clickbet88.com -# ||clickagy.com^$third-party (easylist.txt: 25268) -.clickagy.com -# ||clickad.pl^$third-party (easylist.txt: 25267) -.clickad.pl -# ||clickable.com^$third-party (easylist.txt: 25266) -.clickable.com -# ||click4free.info^$third-party (easylist.txt: 25265) -.click4free.info -# ||click2jump.com^$third-party (easylist.txt: 25264) -.click2jump.com -# ||click.scour.com^$third-party (easylist.txt: 25263) -.click.scour.com -# ||clevv.com^$third-party (easylist.txt: 25262) -.clevv.com -# ||clente.com^$third-party (easylist.txt: 25261) -.clente.com -# ||clear-request.com^$third-party (easylist.txt: 25260) -.clear-request.com -# ||cleafs.com^$third-party (easylist.txt: 25259) -.cleafs.com -# ||cldlr.com^$third-party (easylist.txt: 25258) -.cldlr.com -# ||clayaim.com^$third-party (easylist.txt: 25257) -.clayaim.com -# ||claxonmedia.com^$third-party (easylist.txt: 25256) -.claxonmedia.com -# ||clash-media.com^$third-party (easylist.txt: 25255) -.clash-media.com -# ||clarityray.com^$third-party (easylist.txt: 25254) -.clarityray.com -# ||cjt1.net^$third-party (easylist.txt: 25253) -.cjt1.net -# ||citysite.net^$third-party (easylist.txt: 25252) -.citysite.net -# ||city-ads.de^$third-party (easylist.txt: 25251) -.city-ads.de -# ||cibleclick.com^$third-party (easylist.txt: 25250) -.cibleclick.com -# ||chronicads.com^$third-party (easylist.txt: 25249) -.chronicads.com -# ||chitika.net^$third-party (easylist.txt: 25248) -.chitika.net -# ||chitika.com^$third-party (easylist.txt: 25247) -.chitika.com -# ||chipleader.com^$third-party (easylist.txt: 25246) -.chipleader.com -# ||chinagrad.ru^$third-party (easylist.txt: 25245) -.chinagrad.ru -# ||china-netwave.com^$third-party (easylist.txt: 25244) -.china-netwave.com -# ||chicbuy.info^$third-party (easylist.txt: 25243) -.chicbuy.info -# ||cherytso.com^$third-party (easylist.txt: 25242) -.cherytso.com -# ||checkoutfree.com^$third-party (easylist.txt: 25241) -.checkoutfree.com -# ||checkmystats.com.au^$third-party (easylist.txt: 25240) -.checkmystats.com.au -# ||checkm8.com^$third-party (easylist.txt: 25239) -.checkm8.com -# ||charltonmedia.com^$third-party (easylist.txt: 25238) -.charltonmedia.com -# ||chanished.net^$third-party (easylist.txt: 25237) -.chanished.net -# ||chango.com^$third-party (easylist.txt: 25236) -.chango.com -# ||chameleon.ad^$third-party (easylist.txt: 25235) -.chameleon.ad -# ||cgecwm.org^$third-party (easylist.txt: 25234) -.cgecwm.org -# ||cerotop.com^$third-party (easylist.txt: 25233) -.cerotop.com -# ||centralnervous.net^$third-party (easylist.txt: 25232) -.centralnervous.net -# ||cdnservr.com^$third-party (easylist.txt: 25231) -.cdnservr.com -# ||cdnrl.com^$third-party (easylist.txt: 25230) -.cdnrl.com -# ||cdnads.com^$third-party (easylist.txt: 25229) -.cdnads.com -# ||cdna.tremormedia.com^$third-party (easylist.txt: 25228) -.cdna.tremormedia.com -# ||cdn.mobicow.com^$third-party (easylist.txt: 25227) -.cdn.mobicow.com -# ||cdn-image.com^$third-party (easylist.txt: 25226) -.cdn-image.com -# ||cd828.com^$third-party (easylist.txt: 25225) -.cd828.com -# ||cc-dt.com^$third-party (easylist.txt: 25224) -.cc-dt.com -# ||cbn.tbn.ru^$third-party (easylist.txt: 25223) -.cbn.tbn.ru -# ||cbleads.com^$third-party (easylist.txt: 25222) -.cbleads.com -# ||cbclicks.com^$third-party (easylist.txt: 25221) -.cbclicks.com -# ||cbclickbank.com^$third-party (easylist.txt: 25220) -.cbclickbank.com -# ||cbaazars.com^$third-party (easylist.txt: 25219) -.cbaazars.com -# ||cb-content.com^$third-party (easylist.txt: 25218) -.cb-content.com -# ||caygh.com^$third-party (easylist.txt: 25217) -.caygh.com -# ||castplatform.com^$third-party (easylist.txt: 25216) -.castplatform.com -# ||casterpretic.com^$third-party (easylist.txt: 25215) -.casterpretic.com -# ||caspion.com^$third-party (easylist.txt: 25214) -.caspion.com -# ||casino-zilla.com^$third-party (easylist.txt: 25213) -.casino-zilla.com -# ||cashworld.biz^$third-party (easylist.txt: 25212) -.cashworld.biz -# ||cashtrafic.info^$third-party (easylist.txt: 25211) -.cashtrafic.info -# ||cashtrafic.com^$third-party (easylist.txt: 25210) -.cashtrafic.com -# ||cashonvisit.com^$third-party (easylist.txt: 25209) -.cashonvisit.com -# ||cashmylinks.com^$third-party (easylist.txt: 25208) -.cashmylinks.com -# ||cashatgsc.com^$third-party (easylist.txt: 25207) -.cashatgsc.com -# ||cash4members.com^$third-party (easylist.txt: 25206) -.cash4members.com -# ||cash-duck.com^$third-party (easylist.txt: 25205) -.cash-duck.com -# ||casalemedia.com^$third-party (easylist.txt: 25204) -.casalemedia.com -# ||cartorkins.com^$third-party (easylist.txt: 25203) -.cartorkins.com -# ||carrier.bz^$third-party (easylist.txt: 25202) -.carrier.bz -# ||cardincraping.net^$third-party (easylist.txt: 25201) -.cardincraping.net -# ||carbonads.com^$third-party (easylist.txt: 25200) -.carbonads.com -# ||captifymedia.com^$third-party (easylist.txt: 25199) -.captifymedia.com -# ||captainad.com^$third-party (easylist.txt: 25198) -.captainad.com -# ||capitatmarket.com^$third-party (easylist.txt: 25197) -.capitatmarket.com -# ||capacitygrid.com^$third-party (easylist.txt: 25196) -.capacitygrid.com -# ||canoeklix.com^$third-party (easylist.txt: 25195) -.canoeklix.com -# ||campanja.com^$third-party (easylist.txt: 25194) -.campanja.com -# ||camleyads.info^$third-party (easylist.txt: 25193) -.camleyads.info -# ||c8.net.ua^$third-party (easylist.txt: 25192) -.c8.net.ua -# ||c-planet.net^$third-party (easylist.txt: 25191) -.c-planet.net -# ||c-on-text.com^$third-party (easylist.txt: 25190) -.c-on-text.com -# ||byzoo.org^$third-party (easylist.txt: 25189) -.byzoo.org -# ||byspot.com^$third-party (easylist.txt: 25188) -.byspot.com -# ||bwinpartypartners.com^$third-party (easylist.txt: 25187) -.bwinpartypartners.com -# ||buzzparadise.com^$third-party (easylist.txt: 25186) -.buzzparadise.com -# ||buzzcity.net^$third-party (easylist.txt: 25185) -.buzzcity.net -# ||buyt.in^$third-party (easylist.txt: 25184) -.buyt.in -# ||buysellads.com^$third-party (easylist.txt: 25183) -.buysellads.com -# ||buyorselltnhomes.com^$third-party (easylist.txt: 25182) -.buyorselltnhomes.com -# ||buyflood.com^$third-party (easylist.txt: 25181) -.buyflood.com -# ||buxp.org^$third-party (easylist.txt: 25180) -.buxp.org -# ||buxflow.com^$third-party (easylist.txt: 25179) -.buxflow.com -# ||buxept.com^$third-party (easylist.txt: 25178) -.buxept.com -# ||busterzaster.de^$third-party (easylist.txt: 25177) -.busterzaster.de -# ||businessclick.com^$third-party (easylist.txt: 25176) -.businessclick.com -# ||businesscare.com^$third-party (easylist.txt: 25175) -.businesscare.com -# ||burstnet.com^$third-party (easylist.txt: 25174) -.burstnet.com -# ||burnsoftware.info^$third-party (easylist.txt: 25173) -.burnsoftware.info -# ||burjam.com^$third-party (easylist.txt: 25172) -.burjam.com -# ||burbanked.info^$third-party (easylist.txt: 25171) -.burbanked.info -# ||bunny-net.com^$third-party (easylist.txt: 25170) -.bunny-net.com -# ||bunchofads.com^$third-party (easylist.txt: 25169) -.bunchofads.com -# ||bulletproofserving.com^$third-party (easylist.txt: 25168) -.bulletproofserving.com -# ||buildtrafficx.com^$third-party (easylist.txt: 25167) -.buildtrafficx.com -# ||budurl.com^$third-party (easylist.txt: 25166) -.budurl.com -# ||budgetedbauer.com^$third-party (easylist.txt: 25165) -.budgetedbauer.com -# ||bucketsofbanners.com^$third-party (easylist.txt: 25164) -.bucketsofbanners.com -# ||bubblesmedia.ru^$third-party (easylist.txt: 25163) -.bubblesmedia.ru -# ||bu520.com^$third-party (easylist.txt: 25162) -.bu520.com -# ||bttrack.com^$third-party (easylist.txt: 25161) -.bttrack.com -# ||bttbgroup.com^$third-party (easylist.txt: 25160) -.bttbgroup.com -# ||btrll.com^$third-party (easylist.txt: 25159) -.btrll.com -# ||btnibbler.com^$third-party (easylist.txt: 25158) -.btnibbler.com -# ||bstrtb.com^$third-party (easylist.txt: 25157) -.bstrtb.com -# ||brucelead.com^$third-party (easylist.txt: 25156) -.brucelead.com -# ||browsersfeedback.com^$third-party (easylist.txt: 25155) -.browsersfeedback.com -# ||broadstreetads.com^$third-party (easylist.txt: 25154) -.broadstreetads.com -# ||brightshare.com^$third-party (easylist.txt: 25153) -.brightshare.com -# ||brighteroption.com^$third-party (easylist.txt: 25152) -.brighteroption.com -# ||bridgetrack.com^$third-party (easylist.txt: 25151) -.bridgetrack.com -# ||brealtime.com^$third-party (easylist.txt: 25150) -.brealtime.com -# ||breadpro.com^$third-party (easylist.txt: 25149) -.breadpro.com -# ||bravenetmedianetwork.com^$third-party (easylist.txt: 25148) -.bravenetmedianetwork.com -# ||braside.ru^$third-party (easylist.txt: 25147) -.braside.ru -# ||brandreachsys.com^$third-party (easylist.txt: 25146) -.brandreachsys.com -# ||brandclik.com^$third-party (easylist.txt: 25145) -.brandclik.com -# ||brandaffinity.net^$third-party (easylist.txt: 25144) -.brandaffinity.net -# ||brandads.net^$third-party (easylist.txt: 25143) -.brandads.net -# ||brand.net^$third-party (easylist.txt: 25142) -.brand.net -# ||brand-display.com^$third-party (easylist.txt: 25141) -.brand-display.com -# ||branchr.com^$third-party (easylist.txt: 25140) -.branchr.com -# ||brainient.com^$third-party (easylist.txt: 25139) -.brainient.com -# ||br.rk.com^$third-party (easylist.txt: 25138) -.br.rk.com -# ||bptracking.com^$third-party (easylist.txt: 25137) -.bptracking.com -# ||boylesportsreklame.com^$third-party (easylist.txt: 25136) -.boylesportsreklame.com -# ||boydadvertising.co.uk^$third-party (easylist.txt: 25135) -.boydadvertising.co.uk -# ||bororas.com^$third-party (easylist.txt: 25134) -.bororas.com -# ||bormoni.ru^$third-party (easylist.txt: 25133) -.bormoni.ru -# ||boostclic.com^$third-party (easylist.txt: 25132) -.boostclic.com -# ||boostable.com^$third-party (easylist.txt: 25131) -.boostable.com -# ||booklandonline.info^$third-party (easylist.txt: 25130) -.booklandonline.info -# ||boo-box.com^$third-party (easylist.txt: 25129) -.boo-box.com -# ||bonusfapturbo.com^$third-party (easylist.txt: 25128) -.bonusfapturbo.com -# ||bokroet.com^$third-party (easylist.txt: 25127) -.bokroet.com -# ||bogads.com^$third-party (easylist.txt: 25126) -.bogads.com -# ||bnr.sys.lv^$third-party (easylist.txt: 25125) -.bnr.sys.lv -# ||bnmla.com^$third-party (easylist.txt: 25124) -.bnmla.com -# ||bnhtml.com^$third-party (easylist.txt: 25123) -.bnhtml.com -# ||bnetworx.com^$third-party (easylist.txt: 25122) -.bnetworx.com -# ||bmanpn.com^$third-party (easylist.txt: 25121) -.bmanpn.com -# ||blumi.to^$third-party (easylist.txt: 25120) -.blumi.to -# ||bluestreak.com^$third-party (easylist.txt: 25119) -.bluestreak.com -# ||blueadvertise.com^$third-party (easylist.txt: 25118) -.blueadvertise.com -# ||blogohertz.com^$third-party (easylist.txt: 25117) -.blogohertz.com -# ||blogherads.com^$third-party (easylist.txt: 25116) -.blogherads.com -# ||bloggerex.com^$third-party (easylist.txt: 25115) -.bloggerex.com -# ||blogclans.com^$third-party (easylist.txt: 25114) -.blogclans.com -# ||blogbannerexchange.com^$third-party (easylist.txt: 25113) -.blogbannerexchange.com -# ||blogads.com^$third-party (easylist.txt: 25112) -.blogads.com -# ||blinkadr.com^$third-party (easylist.txt: 25111) -.blinkadr.com -# ||blardenso.com^$third-party (easylist.txt: 25110) -.blardenso.com -# ||blamcity.com^$third-party (easylist.txt: 25109) -.blamcity.com -# ||blamads.com^$third-party (easylist.txt: 25108) -.blamads.com -# ||bjjingda.com^$third-party (easylist.txt: 25107) -.bjjingda.com -# ||bizzclick.com^$third-party (easylist.txt: 25106) -.bizzclick.com -# ||bizrotator.com^$third-party (easylist.txt: 25105) -.bizrotator.com -# ||bizographics.com^$third-party (easylist.txt: 25104) -.bizographics.com -# ||bitx.tv^$third-party (easylist.txt: 25103) -.bitx.tv -# ||bittads.com^$third-party (easylist.txt: 25102) -.bittads.com -# ||bitfalcon.tv^$third-party (easylist.txt: 25101) -.bitfalcon.tv -# ||bitcoinadvertisers.com^$third-party (easylist.txt: 25100) -.bitcoinadvertisers.com -# ||bitads.net^$third-party (easylist.txt: 25099) -.bitads.net -# ||binlayer.de^$third-party (easylist.txt: 25098) -.binlayer.de -# ||binlayer.com^$third-party (easylist.txt: 25097) -.binlayer.com -# ||bingo4affiliates.com^$third-party (easylist.txt: 25096) -.bingo4affiliates.com -# ||binaryoptionssystems.org^$third-party (easylist.txt: 25095) -.binaryoptionssystems.org -# ||bin-layer.ru^$third-party (easylist.txt: 25094) -.bin-layer.ru -# ||bin-layer.de^$third-party (easylist.txt: 25093) -.bin-layer.de -# ||bimlocal.com^$third-party (easylist.txt: 25092) -.bimlocal.com -# ||billypub.com^$third-party (easylist.txt: 25091) -.billypub.com -# ||bijscode.com^$third-party (easylist.txt: 25090) -.bijscode.com -# ||bigfineads.com^$third-party (easylist.txt: 25089) -.bigfineads.com -# ||bigadpoint.net^$third-party (easylist.txt: 25088) -.bigadpoint.net -# ||biemedia.com^$third-party (easylist.txt: 25087) -.biemedia.com -# ||bidvertiser.com^$third-party (easylist.txt: 25086) -.bidvertiser.com -# ||bidsystem.com^$third-party (easylist.txt: 25085) -.bidsystem.com -# ||bidgewatr.com^$third-party (easylist.txt: 25084) -.bidgewatr.com -# ||bh3.net^$third-party (easylist.txt: 25083) -.bh3.net -# ||bfast.com^$third-party (easylist.txt: 25082) -.bfast.com -# ||bettingpartners.com^$third-party (easylist.txt: 25081) -.bettingpartners.com -# ||betrad.com^$third-party (easylist.txt: 25080) -.betrad.com -# ||betoga.com^$third-party (easylist.txt: 25079) -.betoga.com -# ||betaffs.com^$third-party (easylist.txt: 25078) -.betaffs.com -# ||bet365affiliates.com^$third-party (easylist.txt: 25077) -.bet365affiliates.com -# ||bet3000partners.com^$third-party (easylist.txt: 25076) -.bet3000partners.com -# ||bestpricewala.com^$third-party (easylist.txt: 25075) -.bestpricewala.com -# ||bestonlinecoupons.com^$third-party (easylist.txt: 25074) -.bestonlinecoupons.com -# ||bestofferdirect.com^$third-party (easylist.txt: 25073) -.bestofferdirect.com -# ||besthitsnow.com^$third-party (easylist.txt: 25072) -.besthitsnow.com -# ||bestgameads.com^$third-party (easylist.txt: 25071) -.bestgameads.com -# ||bestforexpartners.com^$third-party (easylist.txt: 25070) -.bestforexpartners.com -# ||bestfindsite.com^$third-party (easylist.txt: 25069) -.bestfindsite.com -# ||bestdeals.ws^$third-party (easylist.txt: 25068) -.bestdeals.ws -# ||bestcasinopartner.com^$third-party (easylist.txt: 25067) -.bestcasinopartner.com -# ||beringmedia.com^$third-party (easylist.txt: 25066) -.beringmedia.com -# ||bepolite.eu^$third-party (easylist.txt: 25065) -.bepolite.eu -# ||bentdownload.com^$third-party (easylist.txt: 25064) -.bentdownload.com -# ||belvertising.be^$third-party (easylist.txt: 25063) -.belvertising.be -# ||belointeractive.com^$third-party (easylist.txt: 25062) -.belointeractive.com -# ||begun.ru^$third-party (easylist.txt: 25061) -.begun.ru -# ||beforescence.com^$third-party (easylist.txt: 25060) -.beforescence.com -# ||befade.com^$third-party (easylist.txt: 25059) -.befade.com -# ||beead.net^$third-party (easylist.txt: 25058) -.beead.net -# ||beead.co.uk^$third-party (easylist.txt: 25057) -.beead.co.uk -# ||bedorm.com^$third-party (easylist.txt: 25056) -.bedorm.com -# ||bebi.com^$third-party (easylist.txt: 25055) -.bebi.com -# ||beatchucknorris.com^$third-party (easylist.txt: 25054) -.beatchucknorris.com -# ||beaconads.com^$third-party (easylist.txt: 25053) -.beaconads.com -# ||bbuni.com^$third-party (easylist.txt: 25052) -.bbuni.com -# ||bbelements.com^$third-party (easylist.txt: 25051) -.bbelements.com -# ||basebanner.com^$third-party (easylist.txt: 25050) -.basebanner.com -# ||baronsoffers.com^$third-party (easylist.txt: 25049) -.baronsoffers.com -# ||bannerweb.com^$third-party (easylist.txt: 25048) -.bannerweb.com -# ||bannertracker-script.com^$third-party (easylist.txt: 25047) -.bannertracker-script.com -# ||bannertgt.com^$third-party (easylist.txt: 25046) -.bannertgt.com -# ||bannersurvey.biz^$third-party (easylist.txt: 25045) -.bannersurvey.biz -# ||bannersnack.net^$third-party (easylist.txt: 25044) -.bannersnack.net -# ||bannersnack.com^$third-party (easylist.txt: 25043) -.bannersnack.com -# ||bannersmania.com^$third-party (easylist.txt: 25042) -.bannersmania.com -# ||bannerrage.com^$third-party (easylist.txt: 25041) -.bannerrage.com -# ||bannerperformance.net^$third-party (easylist.txt: 25040) -.bannerperformance.net -# ||bannerlot.com^$third-party (easylist.txt: 25039) -.bannerlot.com -# ||bannerjammers.com^$third-party (easylist.txt: 25038) -.bannerjammers.com -# ||bannerignition.co.za^$third-party (easylist.txt: 25037) -.bannerignition.co.za -# ||bannerflux.com^$third-party (easylist.txt: 25036) -.bannerflux.com -# ||bannerflow.com^$third-party (easylist.txt: 25035) -.bannerflow.com -# ||bannerexchange.com.au^$third-party (easylist.txt: 25034) -.bannerexchange.com.au -# ||bannerdealer.com^$third-party (easylist.txt: 25033) -.bannerdealer.com -# ||bannerconnect.net^$third-party (easylist.txt: 25032) -.bannerconnect.net -# ||bannerconnect.com^$third-party (easylist.txt: 25031) -.bannerconnect.com -# ||bannercde.com^$third-party (easylist.txt: 25030) -.bannercde.com -# ||bannerbridge.net^$third-party (easylist.txt: 25029) -.bannerbridge.net -# ||bannerblasters.com^$third-party (easylist.txt: 25028) -.bannerblasters.com -# ||bannerbank.ru^$third-party (easylist.txt: 25027) -.bannerbank.ru -# ||banner-rotation.com^$third-party (easylist.txt: 25026) -.banner-rotation.com -# ||banner-clix.com^$third-party (easylist.txt: 25025) -.banner-clix.com -# ||bananaflippy.com^$third-party (easylist.txt: 25024) -.bananaflippy.com -# ||baldiro.de^$third-party (easylist.txt: 25023) -.baldiro.de -# ||badjocks.com^$third-party (easylist.txt: 25022) -.badjocks.com -# ||backlinks.com^$third-party (easylist.txt: 25021) -.backlinks.com -# ||backbeatmedia.com^$third-party (easylist.txt: 25020) -.backbeatmedia.com -# ||babbnrs.com^$third-party (easylist.txt: 25019) -.babbnrs.com -# ||b6508157d.website^$third-party (easylist.txt: 25018) -.b6508157d.website -# ||b117f8da23446a91387efea0e428392a.pl^$third-party (easylist.txt: 25017) -.b117f8da23446a91387efea0e428392a.pl -# ||azorbe.com^$third-party (easylist.txt: 25016) -.azorbe.com -# ||azoogleads.com^$third-party (easylist.txt: 25015) -.azoogleads.com -# ||azjmp.com^$third-party (easylist.txt: 25014) -.azjmp.com -# ||azads.com^$third-party (easylist.txt: 25013) -.azads.com -# ||ayboll.com^$third-party (easylist.txt: 25012) -.ayboll.com -# ||axill.com^$third-party (easylist.txt: 25011) -.axill.com -# ||awsurveys.com^$third-party (easylist.txt: 25010) -.awsurveys.com -# ||awsmer.com^$third-party (easylist.txt: 25009) -.awsmer.com -# ||awltovhc.com^$third-party (easylist.txt: 25008) -.awltovhc.com -# ||awin1.com^$third-party (easylist.txt: 25007) -.awin1.com -# ||awempire.com^$third-party (easylist.txt: 25006) -.awempire.com -# ||awaps.net^$third-party (easylist.txt: 25005) -.awaps.net -# ||avercarto.com^$third-party (easylist.txt: 25004) -.avercarto.com -# ||avazutracking.net^$third-party (easylist.txt: 25003) -.avazutracking.net -# ||avazu.net^$third-party (easylist.txt: 25002) -.avazu.net -# ||avalopaly.com^$third-party (easylist.txt: 25001) -.avalopaly.com -# ||avalanchers.com^$third-party (easylist.txt: 25000) -.avalanchers.com -# ||avads.co.uk^$third-party (easylist.txt: 24999) -.avads.co.uk -# ||automateyourlist.com^$third-party (easylist.txt: 24998) -.automateyourlist.com -# ||automatedtraffic.com^$third-party (easylist.txt: 24997) -.automatedtraffic.com -# ||auto-insurance-quotes-compare.com^$third-party (easylist.txt: 24996) -.auto-insurance-quotes-compare.com -# ||auto-im.com^$third-party (easylist.txt: 24995) -.auto-im.com -# ||auspipe.com^$third-party (easylist.txt: 24994) -.auspipe.com -# ||aunmdhxrco.com^$third-party (easylist.txt: 24993) -.aunmdhxrco.com -# ||august15download.com^$third-party (easylist.txt: 24992) -.august15download.com -# ||augmentad.net^$third-party (easylist.txt: 24991) -.augmentad.net -# ||auditude.com^$third-party (easylist.txt: 24990) -.auditude.com -# ||auditoire.ph^$third-party (easylist.txt: 24989) -.auditoire.ph -# ||audienceprofiler.com^$third-party (easylist.txt: 24988) -.audienceprofiler.com -# ||audiencefuel.com^$third-party (easylist.txt: 24987) -.audiencefuel.com -# ||audience2media.com^$third-party (easylist.txt: 24986) -.audience2media.com -# ||auctionnudge.com^$third-party (easylist.txt: 24985) -.auctionnudge.com -# ||au2m8.com^$third-party (easylist.txt: 24984) -.au2m8.com -# ||atwola.com^$third-party (easylist.txt: 24983) -.atwola.com -# ||atrinsic.com^$third-party (easylist.txt: 24982) -.atrinsic.com -# ||atomex.net^$third-party (easylist.txt: 24981) -.atomex.net -# ||ato.mx^$third-party (easylist.txt: 24980) -.ato.mx -# ||atmalinks.com^$third-party (easylist.txt: 24979) -.atmalinks.com -# ||atemda.com^$third-party (easylist.txt: 24978) -.atemda.com -# ||atadserver.com^$third-party (easylist.txt: 24977) -.atadserver.com -# ||astree.be^$third-party (easylist.txt: 24976) -.astree.be -# ||asterpix.com^$third-party (easylist.txt: 24975) -.asterpix.com -# ||assoc-amazon.it^$third-party (easylist.txt: 24974) -.assoc-amazon.it -# ||assoc-amazon.fr^$third-party (easylist.txt: 24973) -.assoc-amazon.fr -# ||assoc-amazon.es^$third-party (easylist.txt: 24972) -.assoc-amazon.es -# ||assoc-amazon.de^$third-party (easylist.txt: 24971) -.assoc-amazon.de -# ||assoc-amazon.com^$third-party (easylist.txt: 24970) -.assoc-amazon.com -# ||assoc-amazon.co.uk^$third-party (easylist.txt: 24969) -.assoc-amazon.co.uk -# ||assoc-amazon.ca^$third-party (easylist.txt: 24968) -.assoc-amazon.ca -# ||assetize.com^$third-party (easylist.txt: 24967) -.assetize.com -# ||asrety.com^$third-party (easylist.txt: 24966) -.asrety.com -# ||asooda.com^$third-party (easylist.txt: 24965) -.asooda.com -# ||asklots.com^$third-party (easylist.txt: 24964) -.asklots.com -# ||aseadnet.com^$third-party (easylist.txt: 24963) -.aseadnet.com -# ||asafesite.com^$third-party (easylist.txt: 24962) -.asafesite.com -# ||as5000.com^$third-party (easylist.txt: 24961) -.as5000.com -# ||as-farm.com^$third-party (easylist.txt: 24960) -.as-farm.com -# ||arti-mediagroup.com^$third-party (easylist.txt: 24959) -.arti-mediagroup.com -# ||areasnap.com^$third-party (easylist.txt: 24958) -.areasnap.com -# ||arcadechain.com^$third-party (easylist.txt: 24957) -.arcadechain.com -# ||arcadebe.com^$third-party (easylist.txt: 24956) -.arcadebe.com -# ||arcadebanners.com^$third-party (easylist.txt: 24955) -.arcadebanners.com -# ||arcadebannerexchange.org^$third-party (easylist.txt: 24954) -.arcadebannerexchange.org -# ||arcadebannerexchange.net^$third-party (easylist.txt: 24953) -.arcadebannerexchange.net -# ||arabweb.biz^$third-party (easylist.txt: 24952) -.arabweb.biz -# ||arab4eg.com^$third-party (easylist.txt: 24951) -.arab4eg.com -# ||apxlv.com^$third-party (easylist.txt: 24950) -.apxlv.com -# ||apsmediaagency.com^$third-party (easylist.txt: 24949) -.apsmediaagency.com -# ||april29-disp-download.com^$third-party (easylist.txt: 24948) -.april29-disp-download.com -# ||apptap.com^$third-party (easylist.txt: 24947) -.apptap.com -# ||apportium.com^$third-party (easylist.txt: 24946) -.apportium.com -# ||applebarq.com^$third-party (easylist.txt: 24945) -.applebarq.com -# ||appendad.com^$third-party (easylist.txt: 24944) -.appendad.com -# ||apmebf.com^$third-party (easylist.txt: 24943) -.apmebf.com -# ||apex-ad.com^$third-party (easylist.txt: 24942) -.apex-ad.com -# ||aorpum.com^$third-party (easylist.txt: 24941) -.aorpum.com -# ||aorms.com^$third-party (easylist.txt: 24940) -.aorms.com -# ||aoqneyvmaz.com^$third-party (easylist.txt: 24939) -.aoqneyvmaz.com -# ||anyxp.com^$third-party (easylist.txt: 24938) -.anyxp.com -# ||anymedia.lv^$third-party (easylist.txt: 24937) -.anymedia.lv -# ||anwufkjjja.com^$third-party (easylist.txt: 24936) -.anwufkjjja.com -# ||anrdoezrs.net^$third-party (easylist.txt: 24935) -.anrdoezrs.net -# ||anonymousads.com^$third-party (easylist.txt: 24934) -.anonymousads.com -# ||angege.com^$third-party (easylist.txt: 24933) -.angege.com -# ||anet*.tradedoubler.com^$third-party (easylist.txt: 24932) -.anet*./.*\.tradedoubler\.com[^\w%.-] -.anet*.tradedoubler.com -# ||andomediagroup.com^$third-party (easylist.txt: 24931) -.andomediagroup.com -# ||andomedia.com^$third-party (easylist.txt: 24930) -.andomedia.com -# ||andohs.net^$third-party (easylist.txt: 24929) -.andohs.net -# ||anastasiasaffiliate.com^$third-party (easylist.txt: 24928) -.anastasiasaffiliate.com -# ||ampxchange.com^$third-party (easylist.txt: 24927) -.ampxchange.com -# ||amgdgt.com^$third-party (easylist.txt: 24926) -.amgdgt.com -# ||amertazy.com^$third-party (easylist.txt: 24925) -.amertazy.com -# ||amazonily.com^$third-party (easylist.txt: 24924) -.amazonily.com -# ||amazon-cornerstone.com^$third-party (easylist.txt: 24923) -.amazon-cornerstone.com -# ||amazon-adsystem.com^$third-party (easylist.txt: 24922) -.amazon-adsystem.com -# ||am15.net^$third-party (easylist.txt: 24921) -.am15.net -# ||am11.ru^$third-party (easylist.txt: 24920) -.am11.ru -# ||am10.ru^$third-party (easylist.txt: 24919) -.am10.ru -# ||am-display.com^$third-party (easylist.txt: 24918) -.am-display.com -# ||altitude-arena.com^$third-party (easylist.txt: 24917) -.altitude-arena.com -# ||alternativeadverts.com^$third-party (easylist.txt: 24916) -.alternativeadverts.com -# ||alternads.info^$third-party (easylist.txt: 24915) -.alternads.info -# ||alphagodaddy.com^$third-party (easylist.txt: 24914) -.alphagodaddy.com -# ||alphabirdnetwork.com^$third-party (easylist.txt: 24913) -.alphabirdnetwork.com -# ||alphabird.com^$third-party (easylist.txt: 24912) -.alphabird.com -# ||allyes.com^$third-party (easylist.txt: 24911) -.allyes.com -# ||alloydigital.com^$third-party (easylist.txt: 24910) -.alloydigital.com -# ||allmt.com^$third-party (easylist.txt: 24909) -.allmt.com -# ||alleliteads.com^$third-party (easylist.txt: 24908) -.alleliteads.com -# ||allabc.com^$third-party (easylist.txt: 24907) -.allabc.com -# ||alimama.com^$third-party (easylist.txt: 24906) -.alimama.com -# ||alfynetwork.com^$third-party (easylist.txt: 24905) -.alfynetwork.com -# ||alchemysocial.com^$third-party (easylist.txt: 24904) -.alchemysocial.com -# ||ajansreklam.net^$third-party (easylist.txt: 24903) -.ajansreklam.net -# ||aimatch.com^$third-party (easylist.txt: 24902) -.aimatch.com -# ||aim4media.com^$third-party (easylist.txt: 24901) -.aim4media.com -# ||agvzvwof.com^$third-party (easylist.txt: 24900) -.agvzvwof.com -# ||agomwefq.com^$third-party (easylist.txt: 24899) -.agomwefq.com -# ||agmtrk.com^$third-party (easylist.txt: 24898) -.agmtrk.com -# ||aglocobanners.com^$third-party (easylist.txt: 24897) -.aglocobanners.com -# ||aggregateknowledge.com^$third-party (easylist.txt: 24896) -.aggregateknowledge.com -# ||agentcenters.com^$third-party (easylist.txt: 24895) -.agentcenters.com -# ||agcdn.com^$third-party (easylist.txt: 24894) -.agcdn.com -# ||afy11.net^$third-party (easylist.txt: 24893) -.afy11.net -# ||afterdownloads.com^$third-party (easylist.txt: 24892) -.afterdownloads.com -# ||afterdownload.com^$third-party (easylist.txt: 24891) -.afterdownload.com -# ||africawin.com^$third-party (easylist.txt: 24890) -.africawin.com -# ||aflrm.com^$third-party (easylist.txt: 24889) -.aflrm.com -# ||afftrack.com^$third-party (easylist.txt: 24888) -.afftrack.com -# ||affplanet.com^$third-party (easylist.txt: 24887) -.affplanet.com -# ||affiz.net^$third-party (easylist.txt: 24886) -.affiz.net -# ||affinity.com^$third-party (easylist.txt: 24885) -.affinity.com -# ||affinitad.com^$third-party (easylist.txt: 24884) -.affinitad.com -# ||affimo.de^$third-party (easylist.txt: 24883) -.affimo.de -# ||affiliserve.com^$third-party (easylist.txt: 24882) -.affiliserve.com -# ||affiliproducts.com^$third-party (easylist.txt: 24881) -.affiliproducts.com -# ||affilijack.de^$third-party (easylist.txt: 24880) -.affilijack.de -# ||affiliationzone.com^$third-party (easylist.txt: 24879) -.affiliationzone.com -# ||affiliationworld.com^$third-party (easylist.txt: 24878) -.affiliationworld.com -# ||affiliationcash.com^$third-party (easylist.txt: 24877) -.affiliationcash.com -# ||affiliation-france.com^$third-party (easylist.txt: 24876) -.affiliation-france.com -# ||affiliatesensor.com^$third-party (easylist.txt: 24875) -.affiliatesensor.com -# ||affiliatemembership.com^$third-party (easylist.txt: 24874) -.affiliatemembership.com -# ||affiliatelounge.com^$third-party (easylist.txt: 24873) -.affiliatelounge.com -# ||affiliategroove.com^$third-party (easylist.txt: 24872) -.affiliategroove.com -# ||affiliategateways.co^$third-party (easylist.txt: 24871) -.affiliategateways.co -# ||affiliatefuture.com^$third-party (easylist.txt: 24870) -.affiliatefuture.com -# ||affiliatefuel.com^$third-party (easylist.txt: 24869) -.affiliatefuel.com -# ||affiliateer.com^$third-party (easylist.txt: 24868) -.affiliateer.com -# ||affiliateedge.com^$third-party (easylist.txt: 24867) -.affiliateedge.com -# ||affiliatebannerfarm.com^$third-party (easylist.txt: 24866) -.affiliatebannerfarm.com -# ||affiliate.cx^$third-party (easylist.txt: 24865) -.affiliate.cx -# ||affiliate.com^$third-party (easylist.txt: 24864) -.affiliate.com -# ||affiliate-robot.com^$third-party (easylist.txt: 24863) -.affiliate-robot.com -# ||affiliate-gate.com^$third-party (easylist.txt: 24862) -.affiliate-gate.com -# ||affiliate-b.com^$third-party (easylist.txt: 24861) -.affiliate-b.com -# ||affec.tv^$third-party (easylist.txt: 24860) -.affec.tv -# ||affbuzzads.com^$third-party (easylist.txt: 24859) -.affbuzzads.com -# ||affbot8.com^$third-party (easylist.txt: 24858) -.affbot8.com -# ||affbot7.com^$third-party (easylist.txt: 24857) -.affbot7.com -# ||affbot3.com^$third-party (easylist.txt: 24856) -.affbot3.com -# ||affbot1.com^$third-party (easylist.txt: 24855) -.affbot1.com -# ||aff.biz^$third-party (easylist.txt: 24854) -.aff.biz -# ||aff-online.com^$third-party (easylist.txt: 24853) -.aff-online.com -# ||afdads.com^$third-party (easylist.txt: 24852) -.afdads.com -# ||afcyhf.com^$third-party (easylist.txt: 24851) -.afcyhf.com -# ||adzs.nl^$third-party (easylist.txt: 24850) -.adzs.nl -# ||adzouk.com^$third-party (easylist.txt: 24849) -.adzouk.com -# ||adzonk.com^$third-party (easylist.txt: 24848) -.adzonk.com -# ||adziff.com^$third-party (easylist.txt: 24847) -.adziff.com -# ||adzhub.com^$third-party (easylist.txt: 24846) -.adzhub.com -# ||adzerk.net^$third-party (easylist.txt: 24845) -.adzerk.net -# ||adzbazar.com^$third-party (easylist.txt: 24844) -.adzbazar.com -# ||adz.co.zw^$third-party (easylist.txt: 24843) -.adz.co.zw -# ||adyoz.com^$third-party (easylist.txt: 24842) -.adyoz.com -# ||adyoulike.com^$third-party (easylist.txt: 24841) -.adyoulike.com -# ||adxpower.com^$third-party (easylist.txt: 24840) -.adxpower.com -# ||adxpose.com^$third-party (easylist.txt: 24839) -.adxpose.com -# ||adxion.com^$third-party (easylist.txt: 24838) -.adxion.com -# ||adxcore.com^$third-party (easylist.txt: 24837) -.adxcore.com -# ||adworldmedia.net^$third-party (easylist.txt: 24836) -.adworldmedia.net -# ||adworldmedia.com^$third-party (easylist.txt: 24835) -.adworldmedia.com -# ||adworkmedia.com^$third-party (easylist.txt: 24834) -.adworkmedia.com -# ||adwordsservicapi.com^$third-party (easylist.txt: 24833) -.adwordsservicapi.com -# ||adwires.com^$third-party (easylist.txt: 24832) -.adwires.com -# ||advsnx.net^$third-party (easylist.txt: 24831) -.advsnx.net -# ||advrtice.com^$third-party (easylist.txt: 24830) -.advrtice.com -# ||advpoints.com^$third-party (easylist.txt: 24829) -.advpoints.com -# ||advombat.ru^$third-party (easylist.txt: 24828) -.advombat.ru -# ||advmedialtd.com^$third-party (easylist.txt: 24827) -.advmedialtd.com -# ||advmd.com^$third-party (easylist.txt: 24826) -.advmd.com -# ||adviva.net^$third-party (easylist.txt: 24825) -.adviva.net -# ||advgoogle.com^$third-party (easylist.txt: 24824) -.advgoogle.com -# ||advg.jp^$third-party (easylist.txt: 24823) -.advg.jp -# ||advertxi.com^$third-party (easylist.txt: 24822) -.advertxi.com -# ||advertur.ru^$third-party (easylist.txt: 24821) -.advertur.ru -# ||advertstream.com^$third-party (easylist.txt: 24820) -.advertstream.com -# ||advertstatic.com^$third-party (easylist.txt: 24819) -.advertstatic.com -# ||advertserve.com^$third-party (easylist.txt: 24818) -.advertserve.com -# ||advertrev.com^$third-party (easylist.txt: 24817) -.advertrev.com -# ||advertpay.net^$third-party (easylist.txt: 24816) -.advertpay.net -# ||advertone.ru^$third-party (easylist.txt: 24815) -.advertone.ru -# ||advertmedias.com^$third-party (easylist.txt: 24814) -.advertmedias.com -# ||advertmarketing.com^$third-party (easylist.txt: 24813) -.advertmarketing.com -# ||advertlets.com^$third-party (easylist.txt: 24812) -.advertlets.com -# ||advertlead.net^$third-party (easylist.txt: 24811) -.advertlead.net -# ||advertjunction.com^$third-party (easylist.txt: 24810) -.advertjunction.com -# ||advertisingvalue.info^$third-party (easylist.txt: 24809) -.advertisingvalue.info -# ||advertisingpath.net^$third-party (easylist.txt: 24808) -.advertisingpath.net -# ||advertisingiq.com^$third-party (easylist.txt: 24807) -.advertisingiq.com -# ||advertising365.com^$third-party (easylist.txt: 24806) -.advertising365.com -# ||advertising.com^$third-party (easylist.txt: 24805) -.advertising.com -# ||advertising-department.com^$third-party (easylist.txt: 24804) -.advertising-department.com -# ||advertiseyourgame.com^$third-party (easylist.txt: 24803) -.advertiseyourgame.com -# ||advertisespace.com^$third-party (easylist.txt: 24802) -.advertisespace.com -# ||advertisegame.com^$third-party (easylist.txt: 24801) -.advertisegame.com -# ||advertiseforfree.co.za^$third-party (easylist.txt: 24800) -.advertiseforfree.co.za -# ||advertise.com^$third-party (easylist.txt: 24799) -.advertise.com -# ||adverticum.net^$third-party (easylist.txt: 24798) -.adverticum.net -# ||adverteerdirect.nl^$third-party (easylist.txt: 24797) -.adverteerdirect.nl -# ||advertbox.us^$third-party (easylist.txt: 24796) -.advertbox.us -# ||advertarium.com.ua^$third-party (easylist.txt: 24795) -.advertarium.com.ua -# ||adverserve.net^$third-party (easylist.txt: 24794) -.adverserve.net -# ||adversalservers.com^$third-party (easylist.txt: 24793) -.adversalservers.com -# ||adversaldisplay.com^$third-party (easylist.txt: 24792) -.adversaldisplay.com -# ||adversal.com^$third-party (easylist.txt: 24791) -.adversal.com -# ||adventori.com^$third-party (easylist.txt: 24790) -.adventori.com -# ||advatar.to^$third-party (easylist.txt: 24789) -.advatar.to -# ||advard.com^$third-party (easylist.txt: 24788) -.advard.com -# ||advantageglobalmarketing.com^$third-party (easylist.txt: 24787) -.advantageglobalmarketing.com -# ||advanseads.com^$third-party (easylist.txt: 24786) -.advanseads.com -# ||adv9.net^$third-party (easylist.txt: 24785) -.adv9.net -# ||adv-adserver.com^$third-party (easylist.txt: 24784) -.adv-adserver.com -# ||adurr.com^$third-party (easylist.txt: 24783) -.adurr.com -# ||adulttds.com^$third-party (easylist.txt: 24782) -.adulttds.com -# ||adultimate.net^$third-party (easylist.txt: 24781) -.adultimate.net -# ||adultadworld.com^$third-party (easylist.txt: 24780) -.adultadworld.com -# ||adult-adv.com^$third-party (easylist.txt: 24779) -.adult-adv.com -# ||aduacni.com^$third-party (easylist.txt: 24778) -.aduacni.com -# ||adtwirl.com^$third-party (easylist.txt: 24777) -.adtwirl.com -# ||adtruism.com^$third-party (easylist.txt: 24776) -.adtruism.com -# ||adtrovert.com^$third-party (easylist.txt: 24775) -.adtrovert.com -# ||adtrix.com^$third-party (easylist.txt: 24774) -.adtrix.com -# ||adtrgt.com^$third-party (easylist.txt: 24773) -.adtrgt.com -# ||adtransfer.net^$third-party (easylist.txt: 24772) -.adtransfer.net -# ||adtrace.org^$third-party (easylist.txt: 24771) -.adtrace.org -# ||adtpix.com^$third-party (easylist.txt: 24770) -.adtpix.com -# ||adtotal.pl^$third-party (easylist.txt: 24769) -.adtotal.pl -# ||adtoox.com^$third-party (easylist.txt: 24768) -.adtoox.com -# ||adtomafusion.com^$third-party (easylist.txt: 24767) -.adtomafusion.com -# ||adtoma.com^$third-party (easylist.txt: 24766) -.adtoma.com -# ||adtology3.com^$third-party (easylist.txt: 24765) -.adtology3.com -# ||adtology2.com^$third-party (easylist.txt: 24764) -.adtology2.com -# ||adtology1.com^$third-party (easylist.txt: 24763) -.adtology1.com -# ||adtoll.com^$third-party (easylist.txt: 24762) -.adtoll.com -# ||adtoadd.com^$third-party (easylist.txt: 24761) -.adtoadd.com -# ||adtlgc.com^$third-party (easylist.txt: 24760) -.adtlgc.com -# ||adtgs.com^$third-party (easylist.txt: 24759) -.adtgs.com -# ||adteractive.com^$third-party (easylist.txt: 24758) -.adteractive.com -# ||adtegrity.net^$third-party (easylist.txt: 24757) -.adtegrity.net -# ||adtechus.com^$third-party (easylist.txt: 24756) -.adtechus.com -# ||adtech.de^$third-party (easylist.txt: 24755) -.adtech.de -# ||adtecc.com^$third-party (easylist.txt: 24754) -.adtecc.com -# ||adtdp.com^$third-party (easylist.txt: 24753) -.adtdp.com -# ||adtaily.pl^$third-party (easylist.txt: 24752) -.adtaily.pl -# ||adtaily.eu^$third-party (easylist.txt: 24751) -.adtaily.eu -# ||adtaily.com^$third-party (easylist.txt: 24750) -.adtaily.com -# ||adsymptotic.com^$third-party (easylist.txt: 24749) -.adsymptotic.com -# ||adsxgm.com^$third-party (easylist.txt: 24748) -.adsxgm.com -# ||adswizz.com^$third-party (easylist.txt: 24747) -.adswizz.com -# ||adsvert.com^$third-party (easylist.txt: 24746) -.adsvert.com -# ||adsurve.com^$third-party (easylist.txt: 24745) -.adsurve.com -# ||adsupply.com^$third-party (easylist.txt: 24744) -.adsupply.com -# ||adsupermarket.com^$third-party (easylist.txt: 24743) -.adsupermarket.com -# ||adsummos.net^$third-party (easylist.txt: 24742) -.adsummos.net -# ||adsterra.com^$third-party (easylist.txt: 24741) -.adsterra.com -# ||adstatic.com^$third-party (easylist.txt: 24740) -.adstatic.com -# ||adstargeting.com^$third-party (easylist.txt: 24739) -.adstargeting.com -# ||adssites.net^$third-party (easylist.txt: 24738) -.adssites.net -# ||adssend.net^$third-party (easylist.txt: 24737) -.adssend.net -# ||adsrvr.org^$third-party (easylist.txt: 24736) -.adsrvr.org -# ||adsrvmedia.net^$third-party (easylist.txt: 24735) -.adsrvmedia.net -# ||adsrvmedia.com^$third-party (easylist.txt: 24734) -.adsrvmedia.com -# ||adsrv.us^$third-party (easylist.txt: 24733) -.adsrv.us -# ||adsring.com^$third-party (easylist.txt: 24732) -.adsring.com -# ||adsrevenue.net^$third-party (easylist.txt: 24731) -.adsrevenue.net -# ||adspynet.com^$third-party (easylist.txt: 24730) -.adspynet.com -# ||adspruce.com^$third-party (easylist.txt: 24729) -.adspruce.com -# ||adspring.to^$third-party (easylist.txt: 24728) -.adspring.to -# ||adspirit.de^$third-party (easylist.txt: 24727) -.adspirit.de -# ||adspeed.com^$third-party (easylist.txt: 24726) -.adspeed.com -# ||adspdbl.com^$third-party (easylist.txt: 24725) -.adspdbl.com -# ||adsparc.net^$third-party (easylist.txt: 24724) -.adsparc.net -# ||adspaper.org^$third-party (easylist.txt: 24723) -.adspaper.org -# ||adsovo.com^$third-party (easylist.txt: 24722) -.adsovo.com -# ||adsopx.com^$third-party (easylist.txt: 24721) -.adsopx.com -# ||adsonar.com^$third-party (easylist.txt: 24720) -.adsonar.com -# ||adsniper.ru^$third-party (easylist.txt: 24719) -.adsniper.ru -# ||adsnext.net^$third-party (easylist.txt: 24718) -.adsnext.net -# ||adsnetworkserver.com^$third-party (easylist.txt: 24717) -.adsnetworkserver.com -# ||adsnative.com^$third-party (easylist.txt: 24716) -.adsnative.com -# ||adsmws.cloudapp.net^$third-party (easylist.txt: 24715) -.adsmws.cloudapp.net -# ||adsmoon.com^$third-party (easylist.txt: 24714) -.adsmoon.com -# ||adsmile.biz^$third-party (easylist.txt: 24713) -.adsmile.biz -# ||adsmedia.cc^$third-party (easylist.txt: 24712) -.adsmedia.cc -# ||adsmarket.es^$third-party (easylist.txt: 24711) -.adsmarket.es -# ||adsmarket.com^$third-party (easylist.txt: 24710) -.adsmarket.com -# ||adslot.com^$third-party (easylist.txt: 24709) -.adslot.com -# ||adslingers.com^$third-party (easylist.txt: 24708) -.adslingers.com -# ||adslidango.com^$third-party (easylist.txt: 24707) -.adslidango.com -# ||adskeeper.co.uk^$third-party (easylist.txt: 24706) -.adskeeper.co.uk -# ||adsinimages.com^$third-party (easylist.txt: 24705) -.adsinimages.com -# ||adsimilis.com^$third-party (easylist.txt: 24704) -.adsimilis.com -# ||adsignals.com^$third-party (easylist.txt: 24703) -.adsignals.com -# ||adshuffle.com^$third-party (easylist.txt: 24702) -.adshuffle.com -# ||adshot.de^$third-party (easylist.txt: 24701) -.adshot.de -# ||adshost2.com^$third-party (easylist.txt: 24700) -.adshost2.com -# ||adshost1.com^$third-party (easylist.txt: 24699) -.adshost1.com -# ||adshopping.com^$third-party (easylist.txt: 24698) -.adshopping.com -# ||adshexa.com^$third-party (easylist.txt: 24697) -.adshexa.com -# ||adshack.com^$third-party (easylist.txt: 24696) -.adshack.com -# ||adsfuse.com^$third-party (easylist.txt: 24695) -.adsfuse.com -# ||adsfundi.net^$third-party (easylist.txt: 24694) -.adsfundi.net -# ||adsfundi.com^$third-party (easylist.txt: 24693) -.adsfundi.com -# ||adsforindians.com^$third-party (easylist.txt: 24692) -.adsforindians.com -# ||adsfast.com^$third-party (easylist.txt: 24691) -.adsfast.com -# ||adsfactor.net^$third-party (easylist.txt: 24690) -.adsfactor.net -# ||adsfac.us^$third-party (easylist.txt: 24689) -.adsfac.us -# ||adsfac.net^$third-party (easylist.txt: 24688) -.adsfac.net -# ||adsfac.eu^$third-party (easylist.txt: 24687) -.adsfac.eu -# ||adservr.de^$third-party (easylist.txt: 24686) -.adservr.de -# ||adservpi.com^$third-party (easylist.txt: 24685) -.adservpi.com -# ||adservinginternational.com^$third-party (easylist.txt: 24684) -.adservinginternational.com -# ||adservingfactory.com^$third-party (easylist.txt: 24683) -.adservingfactory.com -# ||adservhere.com^$third-party (easylist.txt: 24682) -.adservhere.com -# ||adserverpub.com^$third-party (easylist.txt: 24681) -.adserverpub.com -# ||adserverplus.com^$third-party (easylist.txt: 24680) -.adserverplus.com -# ||adserver-fx.com^$third-party (easylist.txt: 24679) -.adserver-fx.com -# ||adserve.ph^$third-party (easylist.txt: 24678) -.adserve.ph -# ||adserve.com^$third-party (easylist.txt: 24677) -.adserve.com -# ||adserv8.com^$third-party (easylist.txt: 24676) -.adserv8.com -# ||adsensecamp.com^$third-party (easylist.txt: 24675) -.adsensecamp.com -# ||adsearcher.ru^$third-party (easylist.txt: 24674) -.adsearcher.ru -# ||adsdot.ph^$third-party (easylist.txt: 24673) -.adsdot.ph -# ||adsdk.com^$third-party (easylist.txt: 24672) -.adsdk.com -# ||adsclickingnetwork.com^$third-party (easylist.txt: 24671) -.adsclickingnetwork.com -# ||adscendmedia.com^$third-party (easylist.txt: 24670) -.adscendmedia.com -# ||adscampaign.net^$third-party (easylist.txt: 24669) -.adscampaign.net -# ||adscale.de^$third-party (easylist.txt: 24668) -.adscale.de -# ||adsbrook.com^$third-party (easylist.txt: 24667) -.adsbrook.com -# ||adsbookie.com^$third-party (easylist.txt: 24666) -.adsbookie.com -# ||adsame.com^$third-party (easylist.txt: 24665) -.adsame.com -# ||adsalvo.com^$third-party (easylist.txt: 24664) -.adsalvo.com -# ||adsafeprotected.com^$third-party (easylist.txt: 24663) -.adsafeprotected.com -# ||ads4cheap.com^$third-party (easylist.txt: 24662) -.ads4cheap.com -# ||ads2srv.com^$third-party (easylist.txt: 24661) -.ads2srv.com -# ||ads2ads.net^$third-party (easylist.txt: 24660) -.ads2ads.net -# ||ads01.com^$third-party (easylist.txt: 24659) -.ads01.com -# ||ads.intergi.com^$third-party (easylist.txt: 24658) -.ads.intergi.com -# ||ads-stats.com^$third-party (easylist.txt: 24657) -.ads-stats.com -# ||ads-elsevier.net^$third-party (easylist.txt: 24656) -.ads-elsevier.net -# ||ads-4u.com^$third-party (easylist.txt: 24655) -.ads-4u.com -# ||adrocket.com^$third-party (easylist.txt: 24654) -.adrocket.com -# ||adrise.de^$third-party (easylist.txt: 24653) -.adrise.de -# ||adrich.cash^$third-party (easylist.txt: 24652) -.adrich.cash -# ||adrevolver.com^$third-party (easylist.txt: 24651) -.adrevolver.com -# ||adresellers.com^$third-party (easylist.txt: 24650) -.adresellers.com -# ||adreadytractions.com^$third-party (easylist.txt: 24649) -.adreadytractions.com -# ||adready.com^$third-party (easylist.txt: 24648) -.adready.com -# ||adreactor.com^$third-party (easylist.txt: 24647) -.adreactor.com -# ||adrcdn.com^$third-party (easylist.txt: 24646) -.adrcdn.com -# ||adquest3d.com^$third-party (easylist.txt: 24645) -.adquest3d.com -# ||adquantix.com^$third-party (easylist.txt: 24644) -.adquantix.com -# ||adpushup.com^$third-party (easylist.txt: 24643) -.adpushup.com -# ||adprs.net^$third-party (easylist.txt: 24642) -.adprs.net -# ||adprovi.de^$third-party (easylist.txt: 24641) -.adprovi.de -# ||adprotected.com^$third-party (easylist.txt: 24640) -.adprotected.com -# ||adproper.info^$third-party (easylist.txt: 24639) -.adproper.info -# ||adprofit2share.com^$third-party (easylist.txt: 24638) -.adprofit2share.com -# ||adpremo.com^$third-party (easylist.txt: 24637) -.adpremo.com -# ||adpredictive.com^$third-party (easylist.txt: 24636) -.adpredictive.com -# ||adppv.com^$third-party (easylist.txt: 24635) -.adppv.com -# ||adpoper.com^$third-party (easylist.txt: 24634) -.adpoper.com -# ||adplxmd.com^$third-party (easylist.txt: 24633) -.adplxmd.com -# ||adplugg.com^$third-party (easylist.txt: 24632) -.adplugg.com -# ||adplex.media^$third-party (easylist.txt: 24631) -.adplex.media -# ||adplans.info^$third-party (easylist.txt: 24630) -.adplans.info -# ||adpionier.de^$third-party (easylist.txt: 24629) -.adpionier.de -# ||adpinion.com^$third-party (easylist.txt: 24628) -.adpinion.com -# ||adphreak.com^$third-party (easylist.txt: 24627) -.adphreak.com -# ||adperium.com^$third-party (easylist.txt: 24626) -.adperium.com -# ||adperfect.com^$third-party (easylist.txt: 24625) -.adperfect.com -# ||adpay.com^$third-party (easylist.txt: 24624) -.adpay.com -# ||adpath.mobi^$third-party (easylist.txt: 24623) -.adpath.mobi -# ||adparlor.com^$third-party (easylist.txt: 24622) -.adparlor.com -# ||adpacks.com^$third-party (easylist.txt: 24621) -.adpacks.com -# ||adowner.net^$third-party (easylist.txt: 24620) -.adowner.net -# ||adovida.com^$third-party (easylist.txt: 24619) -.adovida.com -# ||adotube.com^$third-party (easylist.txt: 24618) -.adotube.com -# ||adotomy.com^$third-party (easylist.txt: 24617) -.adotomy.com -# ||adotic.com^$third-party (easylist.txt: 24616) -.adotic.com -# ||adorika.net^$third-party (easylist.txt: 24615) -.adorika.net -# ||adorika.com^$third-party (easylist.txt: 24614) -.adorika.com -# ||adoptim.com^$third-party (easylist.txt: 24613) -.adoptim.com -# ||adoperator.com^$third-party (easylist.txt: 24612) -.adoperator.com -# ||adonweb.ru^$third-party (easylist.txt: 24611) -.adonweb.ru -# ||adonnews.com^$third-party (easylist.txt: 24610) -.adonnews.com -# ||adonly.com^$third-party (easylist.txt: 24609) -.adonly.com -# ||adonion.com^$third-party (easylist.txt: 24608) -.adonion.com -# ||adohana.com^$third-party (easylist.txt: 24607) -.adohana.com -# ||adocean.pl^$third-party (easylist.txt: 24606) -.adocean.pl -# ||adnxs1.com^$third-party (easylist.txt: 24605) -.adnxs1.com -# ||adnxs.net^$third-party (easylist.txt: 24604) -.adnxs.net -# ||adnxs.com^$third-party (easylist.txt: 24603) -.adnxs.com -# ||adnow.com^$third-party (easylist.txt: 24602) -.adnow.com -# ||adnoble.com^$third-party (easylist.txt: 24601) -.adnoble.com -# ||adnmore.co.kr^$third-party (easylist.txt: 24600) -.adnmore.co.kr -# ||adnium.com^$third-party (easylist.txt: 24599) -.adnium.com -# ||adnimation.com^$third-party (easylist.txt: 24598) -.adnimation.com -# ||adngin.com^$third-party (easylist.txt: 24597) -.adngin.com -# ||adnext.fr^$third-party (easylist.txt: 24596) -.adnext.fr -# ||adnetworkperformance.com^$third-party (easylist.txt: 24595) -.adnetworkperformance.com -# ||adnetworkme.com^$third-party (easylist.txt: 24594) -.adnetworkme.com -# ||adnet.vn^$third-party (easylist.txt: 24593) -.adnet.vn -# ||adnet.ru^$third-party (easylist.txt: 24592) -.adnet.ru -# ||adnet.lt^$third-party (easylist.txt: 24591) -.adnet.lt -# ||adnet.de^$third-party (easylist.txt: 24590) -.adnet.de -# ||adnet.com^$third-party (easylist.txt: 24589) -.adnet.com -# ||adnet.biz^$third-party (easylist.txt: 24588) -.adnet.biz -# ||adnet-media.net^$third-party (easylist.txt: 24587) -.adnet-media.net -# ||adnectar.com^$third-party (easylist.txt: 24586) -.adnectar.com -# ||adne.tv^$third-party (easylist.txt: 24585) -.adne.tv -# ||admzn.com^$third-party (easylist.txt: 24584) -.admzn.com -# ||admulti.com^$third-party (easylist.txt: 24583) -.admulti.com -# ||admtpmp127.com^$third-party (easylist.txt: 24582) -.admtpmp127.com -# ||admpads.com^$third-party (easylist.txt: 24581) -.admpads.com -# ||admngronline.com^$third-party (easylist.txt: 24580) -.admngronline.com -# ||admixer.net^$third-party (easylist.txt: 24579) -.admixer.net -# ||admitad.com^$third-party (easylist.txt: 24578) -.admitad.com -# ||admission.net^$third-party (easylist.txt: 24577) -.admission.net -# ||admeta.com^$third-party (easylist.txt: 24576) -.admeta.com -# ||admeld.com^$third-party (easylist.txt: 24575) -.admeld.com -# ||admedo.com^$third-party (easylist.txt: 24574) -.admedo.com -# ||admedias.net^$third-party (easylist.txt: 24573) -.admedias.net -# ||admedia.com^$third-party (easylist.txt: 24572) -.admedia.com -# ||admaya.in^$third-party (easylist.txt: 24571) -.admaya.in -# ||admaxim.com^$third-party (easylist.txt: 24570) -.admaxim.com -# ||admarketplace.net^$third-party (easylist.txt: 24569) -.admarketplace.net -# ||admanmedia.com^$third-party (easylist.txt: 24568) -.admanmedia.com -# ||admanage.com^$third-party (easylist.txt: 24567) -.admanage.com -# ||adman.gr^$third-party (easylist.txt: 24566) -.adman.gr -# ||admamba.com^$third-party (easylist.txt: 24565) -.admamba.com -# ||admailtiser.com^$third-party (easylist.txt: 24564) -.admailtiser.com -# ||admagnet.net^$third-party (easylist.txt: 24563) -.admagnet.net -# ||adlux.com^$third-party (easylist.txt: 24559) -.adlux.com -# ||adlure.biz^$third-party (easylist.txt: 24558) -.adlure.biz -# ||adlpartner.com^$third-party (easylist.txt: 24557) -.adlpartner.com -# ||adlooxtracking.com^$third-party (easylist.txt: 24556) -.adlooxtracking.com -# ||adloaded.com^$third-party (easylist.txt: 24555) -.adloaded.com -# ||adlisher.com^$third-party (easylist.txt: 24554) -.adlisher.com -# ||adlinx.info^$third-party (easylist.txt: 24553) -.adlinx.info -# ||adlink.net^$third-party (easylist.txt: 24552) -.adlink.net -# ||adlegend.com^$third-party (easylist.txt: 24551) -.adlegend.com -# ||adlayer.net^$third-party (easylist.txt: 24550) -.adlayer.net -# ||adkonekt.com^$third-party (easylist.txt: 24549) -.adkonekt.com -# ||adknowledge.com^$third-party (easylist.txt: 24548) -.adknowledge.com -# ||adklip.com^$third-party (easylist.txt: 24547) -.adklip.com -# ||adkick.net^$third-party (easylist.txt: 24546) -.adkick.net -# ||adkengage.com^$third-party (easylist.txt: 24545) -.adkengage.com -# ||adk2x.com^$third-party (easylist.txt: 24544) -.adk2x.com -# ||adk2.com^$third-party (easylist.txt: 24543) -.adk2.com -# ||adk2.co^$third-party (easylist.txt: 24542) -.adk2.co -# ||adjungle.com^$third-party (easylist.txt: 24541) -.adjungle.com -# ||adjuggler.net^$third-party (easylist.txt: 24540) -.adjuggler.net -# ||adjuggler.com^$third-party (easylist.txt: 24539) -.adjuggler.com -# ||adjug.com^$third-party (easylist.txt: 24538) -.adjug.com -# ||adjector.com^$third-party (easylist.txt: 24537) -.adjector.com -# ||adjal.com^$third-party (easylist.txt: 24536) -.adjal.com -# ||adition.com^$third-party (easylist.txt: 24535) -.adition.com -# ||adit-media.com^$third-party (easylist.txt: 24534) -.adit-media.com -# ||adisn.com^$third-party (easylist.txt: 24533) -.adisn.com -# ||adisfy.com^$third-party (easylist.txt: 24532) -.adisfy.com -# ||adireland.com^$third-party (easylist.txt: 24531) -.adireland.com -# ||adiqglobal.com^$third-party (easylist.txt: 24530) -.adiqglobal.com -# ||adip.ly^$third-party (easylist.txt: 24529) -.adip.ly -# ||adinterax.com^$third-party (easylist.txt: 24528) -.adinterax.com -# ||adintend.com^$third-party (easylist.txt: 24527) -.adintend.com -# ||adinfinity.com.au^$third-party (easylist.txt: 24526) -.adinfinity.com.au -# ||adindigo.com^$third-party (easylist.txt: 24525) -.adindigo.com -# ||adincon.com^$third-party (easylist.txt: 24524) -.adincon.com -# ||adinch.com^$third-party (easylist.txt: 24523) -.adinch.com -# ||adimpression.net^$third-party (easylist.txt: 24522) -.adimpression.net -# ||adimperia.com^$third-party (easylist.txt: 24521) -.adimperia.com -# ||adimpact.com^$third-party (easylist.txt: 24520) -.adimpact.com -# ||adimise.com^$third-party (easylist.txt: 24519) -.adimise.com -# ||adikteev.com^$third-party (easylist.txt: 24518) -.adikteev.com -# ||adigniter.org^$third-party (easylist.txt: 24517) -.adigniter.org -# ||adicate.com^$third-party (easylist.txt: 24516) -.adicate.com -# ||adhub.co.nz^$third-party (easylist.txt: 24515) -.adhub.co.nz -# ||adhostingsolutions.com^$third-party (easylist.txt: 24514) -.adhostingsolutions.com -# ||adhitzads.com^$third-party (easylist.txt: 24513) -.adhitzads.com -# ||adhigh.net^$third-party (easylist.txt: 24512) -.adhigh.net -# ||adhese.net^$third-party (easylist.txt: 24511) -.adhese.net -# ||adhese.com^$third-party (easylist.txt: 24510) -.adhese.com -# ||adhese.be^$third-party (easylist.txt: 24509) -.adhese.be -# ||adgrx.com^$third-party (easylist.txt: 24508) -.adgrx.com -# ||adgroups.com^$third-party (easylist.txt: 24507) -.adgroups.com -# ||adgoto.com^$third-party (easylist.txt: 24506) -.adgoto.com -# ||adgorithms.com^$third-party (easylist.txt: 24505) -.adgorithms.com -# ||adglare.net^$third-party (easylist.txt: 24504) -.adglare.net -# ||adglamour.net^$third-party (easylist.txt: 24503) -.adglamour.net -# ||adgitize.com^$third-party (easylist.txt: 24502) -.adgitize.com -# ||adgine.net^$third-party (easylist.txt: 24501) -.adgine.net -# ||adgila.com^$third-party (easylist.txt: 24500) -.adgila.com -# ||adgent007.com^$third-party (easylist.txt: 24499) -.adgent007.com -# ||adgebra.co.in^$third-party (easylist.txt: 24498) -.adgebra.co.in -# ||adgear.com^$third-party (easylist.txt: 24497) -.adgear.com -# ||adgatemedia.com^$third-party (easylist.txt: 24496) -.adgatemedia.com -# ||adgardener.com^$third-party (easylist.txt: 24495) -.adgardener.com -# ||adgalax.com^$third-party (easylist.txt: 24494) -.adgalax.com -# ||adfusion.com^$third-party (easylist.txt: 24493) -.adfusion.com -# ||adfunkyserver.com^$third-party (easylist.txt: 24492) -.adfunkyserver.com -# ||adfrontiers.com^$third-party (easylist.txt: 24491) -.adfrontiers.com -# ||adfrog.info^$third-party (easylist.txt: 24490) -.adfrog.info -# ||adfrika.com^$third-party (easylist.txt: 24489) -.adfrika.com -# ||adframesrc.com^$third-party (easylist.txt: 24488) -.adframesrc.com -# ||adform.net^$third-party (easylist.txt: 24487) -.adform.net -# ||adforgeinc.com^$third-party (easylist.txt: 24486) -.adforgeinc.com -# ||adforgames.com^$third-party (easylist.txt: 24485) -.adforgames.com -# ||adfootprints.com^$third-party (easylist.txt: 24484) -.adfootprints.com -# ||adfeedstrk.com^$third-party (easylist.txt: 24483) -.adfeedstrk.com -# ||adfactory88.com^$third-party (easylist.txt: 24482) -.adfactory88.com -# ||adf01.net^$third-party (easylist.txt: 24481) -.adf01.net -# ||adextent.com^$third-party (easylist.txt: 24480) -.adextent.com -# ||adexprts.com^$third-party (easylist.txt: 24479) -.adexprts.com -# ||adexprt.com^$third-party (easylist.txt: 24478) -.adexprt.com -# ||adexcite.com^$third-party (easylist.txt: 24477) -.adexcite.com -# ||adespresso.com^$third-party (easylist.txt: 24476) -.adespresso.com -# ||adengage.com^$third-party (easylist.txt: 24475) -.adengage.com -# ||ademails.com^$third-party (easylist.txt: 24474) -.ademails.com -# ||adelement.com^$third-party (easylist.txt: 24473) -.adelement.com -# ||adedy.com^$third-party (easylist.txt: 24472) -.adedy.com -# ||adecn.com^$third-party (easylist.txt: 24471) -.adecn.com -# ||addynamo.net^$third-party (easylist.txt: 24470) -.addynamo.net -# ||addynamix.com^$third-party (easylist.txt: 24469) -.addynamix.com -# ||addynamics.eu^$third-party (easylist.txt: 24468) -.addynamics.eu -# ||addroid.com^$third-party (easylist.txt: 24467) -.addroid.com -# ||addoer.com^$third-party (easylist.txt: 24466) -.addoer.com -# ||addiply.com^$third-party (easylist.txt: 24465) -.addiply.com -# ||addelive.com^$third-party (easylist.txt: 24464) -.addelive.com -# ||addaim.com^$third-party (easylist.txt: 24463) -.addaim.com -# ||adcru.com^$third-party (easylist.txt: 24462) -.adcru.com -# ||adcron.com^$third-party (easylist.txt: 24461) -.adcron.com -# ||adcount.in^$third-party (easylist.txt: 24460) -.adcount.in -# ||adconscious.com^$third-party (easylist.txt: 24459) -.adconscious.com -# ||adcolo.com^$third-party (easylist.txt: 24458) -.adcolo.com -# ||adcloud.net^$third-party (easylist.txt: 24457) -.adcloud.net -# ||adclickmedia.com^$third-party (easylist.txt: 24456) -.adclickmedia.com -# ||adclickafrica.com^$third-party (easylist.txt: 24455) -.adclickafrica.com -# ||adclick.pk^$third-party (easylist.txt: 24454) -.adclick.pk -# ||adclick.lv^$third-party (easylist.txt: 24453) -.adclick.lv -# ||adchoice.co.za^$third-party (easylist.txt: 24452) -.adchoice.co.za -# ||adchemical.com^$third-party (easylist.txt: 24451) -.adchemical.com -# ||adchap.com^$third-party (easylist.txt: 24450) -.adchap.com -# ||adcfrthyo.tk^$third-party (easylist.txt: 24449) -.adcfrthyo.tk -# ||adcentriconline.com^$third-party (easylist.txt: 24448) -.adcentriconline.com -# ||adcdnx.com^$third-party (easylist.txt: 24447) -.adcdnx.com -# ||adcde.com^$third-party (easylist.txt: 24446) -.adcde.com -# ||adcastplus.net^$third-party (easylist.txt: 24445) -.adcastplus.net -# ||adcash.com^$third-party (easylist.txt: 24444) -.adcash.com -# ||adcade.com^$third-party (easylist.txt: 24443) -.adcade.com -# ||adbuyer.com^$third-party (easylist.txt: 24442) -.adbuyer.com -# ||adbutler.com^$third-party (easylist.txt: 24441) -.adbutler.com -# ||adbureau.net^$third-party (easylist.txt: 24440) -.adbureau.net -# ||adbull.com^$third-party (easylist.txt: 24439) -.adbull.com -# ||adbrook.com^$third-party (easylist.txt: 24438) -.adbrook.com -# ||adbroo.com^$third-party (easylist.txt: 24437) -.adbroo.com -# ||adbrite.com^$third-party (easylist.txt: 24436) -.adbrite.com -# ||adbrau.com^$third-party (easylist.txt: 24435) -.adbrau.com -# ||adbooth.net^$third-party (easylist.txt: 24434) -.adbooth.net -# ||adboost.com^$third-party (easylist.txt: 24433) -.adboost.com -# ||adblade.com^$third-party (easylist.txt: 24432) -.adblade.com -# ||adbasket.net^$third-party (easylist.txt: 24431) -.adbasket.net -# ||adbard.net^$third-party (easylist.txt: 24430) -.adbard.net -# ||adapd.com^$third-party (easylist.txt: 24429) -.adapd.com -# ||adaos-ads.net^$third-party (easylist.txt: 24427) -.adaos-ads.net -# ||adagora.com^$third-party (easylist.txt: 24426) -.adagora.com -# ||adadvisor.net^$third-party (easylist.txt: 24425) -.adadvisor.net -# ||adaction.se^$third-party (easylist.txt: 24424) -.adaction.se -# ||adacado.com^$third-party (easylist.txt: 24423) -.adacado.com -# ||ad6media.fr^$third-party (easylist.txt: 24422) -.ad6media.fr -# ||ad4game.com^$third-party (easylist.txt: 24421) -.ad4game.com -# ||ad2up.com^$third-party (easylist.txt: 24420) -.ad2up.com -# ||ad2adnetwork.biz^$third-party (easylist.txt: 24418) -.ad2adnetwork.biz -# ||ad2387.com^$third-party (easylist.txt: 24417) -.ad2387.com -# ||ad20.net^$third-party (easylist.txt: 24416) -.ad20.net -# ||ad134m.com^$third-party (easylist.txt: 24415) -.ad134m.com -# ||ad132m.com^$third-party (easylist.txt: 24414) -.ad132m.com -# ||ad131m.com^$third-party (easylist.txt: 24413) -.ad131m.com -# ||ad129m.com^$third-party (easylist.txt: 24412) -.ad129m.com -# ||ad128m.com^$third-party (easylist.txt: 24411) -.ad128m.com -# ||ad127m.com^$third-party (easylist.txt: 24410) -.ad127m.com -# ||ad125m.com^$third-party (easylist.txt: 24409) -.ad125m.com -# ||ad123m.com^$third-party (easylist.txt: 24408) -.ad123m.com -# ||ad122m.com^$third-party (easylist.txt: 24407) -.ad122m.com -# ||ad121m.com^$third-party (easylist.txt: 24406) -.ad121m.com -# ||ad120m.com^$third-party (easylist.txt: 24405) -.ad120m.com -# ||ad.yieldpartners.com^$third-party (easylist.txt: 24404) -.ad.yieldpartners.com -# ||ad.pxlad.io^$third-party (easylist.txt: 24403) -.ad.pxlad.io -# ||ad.mo.doubleclick.net/dartproxy/$third-party (easylist.txt: 24402) -.ad.mo.doubleclick.net/dartproxy/ -# ||ad.linksynergy.com^$third-party (easylist.txt: 24401) -.ad.linksynergy.com -# ||ad.atdmt.com/i/a.js$third-party (easylist.txt: 24399) -.ad.atdmt.com/i/a\.js -# ||ad.atdmt.com/i/a.html$third-party (easylist.txt: 24398) -.ad.atdmt.com/i/a\.html -# ||ad-vice.biz^$third-party (easylist.txt: 24397) -.ad-vice.biz -# ||ad-stir.com^$third-party (easylist.txt: 24396) -.ad-stir.com -# ||ad-srv.net^$third-party (easylist.txt: 24395) -.ad-srv.net -# ||ad-sponsor.com^$third-party (easylist.txt: 24394) -.ad-sponsor.com -# ||ad-serverparc.nl^$third-party (easylist.txt: 24393) -.ad-serverparc.nl -# ||ad-server.co.za^$third-party (easylist.txt: 24392) -.ad-server.co.za -# ||ad-media.org^$third-party (easylist.txt: 24391) -.ad-media.org -# ||ad-maven.com^$third-party (easylist.txt: 24390) -.ad-maven.com -# ||ad-m.asia^$third-party (easylist.txt: 24389) -.ad-m.asia -# ||ad-indicator.com^$third-party (easylist.txt: 24388) -.ad-indicator.com -# ||ad-gbn.com^$third-party (easylist.txt: 24387) -.ad-gbn.com -# ||ad-flow.com^$third-party (easylist.txt: 24386) -.ad-flow.com -# ||ad-delivery.net^$third-party (easylist.txt: 24385) -.ad-delivery.net -# ||ad-clicks.com^$third-party (easylist.txt: 24384) -.ad-clicks.com -# ||ad-bay.com^$third-party (easylist.txt: 24383) -.ad-bay.com -# ||ad-balancer.net^$third-party (easylist.txt: 24382) -.ad-balancer.net -# ||ad-back.net^$third-party (easylist.txt: 24381) -.ad-back.net -# ||activedancer.com^$third-party (easylist.txt: 24380) -.activedancer.com -# ||actiondesk.com^$third-party (easylist.txt: 24379) -.actiondesk.com -# ||acronym.com^$third-party (easylist.txt: 24378) -.acronym.com -# ||acf-webmaster.net^$third-party (easylist.txt: 24377) -.acf-webmaster.net -# ||accuserveadsystem.com^$third-party (easylist.txt: 24376) -.accuserveadsystem.com -# ||accounts.pkr.com^$third-party (easylist.txt: 24375) -.accounts.pkr.com -# ||accmgr.com^$third-party (easylist.txt: 24374) -.accmgr.com -# ||access-mc.com^$third-party (easylist.txt: 24373) -.access-mc.com -# ||accelacomm.com^$third-party (easylist.txt: 24372) -.accelacomm.com -# ||abtracker.us^$third-party (easylist.txt: 24371) -.abtracker.us -# ||aboutads.quantcast.com^$third-party (easylist.txt: 24370) -.aboutads.quantcast.com -# ||abnad.net^$third-party (easylist.txt: 24369) -.abnad.net -# ||abletomeet.com^$third-party (easylist.txt: 24368) -.abletomeet.com -# ||aaa.dv0.info^$third-party (easylist.txt: 24367) -.aaa.dv0.info -# ||aaa.at4.info^$third-party (easylist.txt: 24366) -.aaa.at4.info -# ||aa.voice2page.com^$third-party (easylist.txt: 24365) -.aa.voice2page.com -# ||a5pub.com^$third-party (easylist.txt: 24364) -.a5pub.com -# ||a4dtrk.com^$third-party (easylist.txt: 24363) -.a4dtrk.com -# ||a433.com^$third-party (easylist.txt: 24362) -.a433.com -# ||a3pub.com^$third-party (easylist.txt: 24361) -.a3pub.com -# ||a2pub.com^$third-party (easylist.txt: 24360) -.a2pub.com -# ||a2dfp.net^$third-party (easylist.txt: 24359) -.a2dfp.net -# ||a.raasnet.com^$third-party (easylist.txt: 24358) -.a.raasnet.com -# ||a.ligatus.com^$third-party (easylist.txt: 24357) -.a.ligatus.com -# ||a.adroll.com^$third-party (easylist.txt: 24356) -.a.adroll.com -# ||a-static.com^$third-party (easylist.txt: 24355) -.a-static.com -# ||a-ads.com^$third-party (easylist.txt: 24354) -.a-ads.com -# ||9ts3tpia.com^$third-party (easylist.txt: 24353) -.9ts3tpia.com -# ||9d63c80da.pw^$third-party (easylist.txt: 24352) -.9d63c80da.pw -# ||97d73lsi.com^$third-party (easylist.txt: 24351) -.97d73lsi.com -# ||8yxupue8.com^$third-party (easylist.txt: 24350) -.8yxupue8.com -# ||888promos.com^$third-party (easylist.txt: 24349) -.888promos.com -# ||888medianetwork.com^$third-party (easylist.txt: 24348) -.888medianetwork.com -# ||888media.net^$third-party (easylist.txt: 24347) -.888media.net -# ||82d914.se^$third-party (easylist.txt: 24345) -.82d914.se -# ||7u8a8i88.com^$third-party (easylist.txt: 24344) -.7u8a8i88.com -# ||7search.com^$third-party (easylist.txt: 24343) -.7search.com -# ||7pud.com^$third-party (easylist.txt: 24342) -.7pud.com -# ||7insight.com^$third-party (easylist.txt: 24341) -.7insight.com -# ||78.138.126.253^$third-party (easylist.txt: 24339) -.78.138.126.253 -# ||778669.com^$third-party (easylist.txt: 24338) -.778669.com -# ||777seo.com^$third-party (easylist.txt: 24337) -.777seo.com -# ||64.20.60.123^$third-party (easylist.txt: 24335) -.64.20.60.123 -# ||63.225.61.4^$third-party (easylist.txt: 24334) -.63.225.61.4 -# ||600z.com^$third-party (easylist.txt: 24332) -.600z.com -# ||5gl1x9qc.com^$third-party (easylist.txt: 24331) -.5gl1x9qc.com -# ||5clickcashsoftware.com^$third-party (easylist.txt: 24330) -.5clickcashsoftware.com -# ||5advertise.com^$third-party (easylist.txt: 24329) -.5advertise.com -# ||5362367e.info^$third-party (easylist.txt: 24328) -.5362367e.info -# ||50.7.243.123^$third-party (easylist.txt: 24327) -.50.7.243.123 -# ||4wnet.com^$third-party (easylist.txt: 24326) -.4wnet.com -# ||4uvjosuc.com^$third-party (easylist.txt: 24325) -.4uvjosuc.com -# ||4e43ac9c.info^$third-party (easylist.txt: 24324) -.4e43ac9c.info -# ||4dsply.com^$third-party (easylist.txt: 24323) -.4dsply.com -# ||4affiliate.net^$third-party (easylist.txt: 24322) -.4affiliate.net -# ||43plc.com^$third-party (easylist.txt: 24318) -.43plc.com -# ||3t7euflv.com^$third-party (easylist.txt: 24317) -.3t7euflv.com -# ||3redlightfix.com^$third-party (easylist.txt: 24316) -.3redlightfix.com -# ||3rdads.com^$third-party (easylist.txt: 24315) -.3rdads.com -# ||3omb.com^$third-party (easylist.txt: 24314) -.3omb.com -# ||3lr67y45.com^$third-party (easylist.txt: 24313) -.3lr67y45.com -# ||3lift.com^$third-party (easylist.txt: 24312) -.3lift.com -# ||3cnce854.com^$third-party (easylist.txt: 24311) -.3cnce854.com -# ||365sbaffiliates.com^$third-party (easylist.txt: 24310) -.365sbaffiliates.com -# ||360yield.com^$third-party (easylist.txt: 24309) -.360yield.com -# ||360popads.com^$third-party (easylist.txt: 24308) -.360popads.com -# ||360installer.com^$third-party (easylist.txt: 24307) -.360installer.com -# ||360adstrack.com^$third-party (easylist.txt: 24306) -.360adstrack.com -# ||360ads.com^$third-party (easylist.txt: 24305) -.360ads.com -# ||350media.com^$third-party (easylist.txt: 24304) -.350media.com -# ||3393.com^$third-party (easylist.txt: 24303) -.3393.com -# ||32b4oilo.com^$third-party (easylist.txt: 24302) -.32b4oilo.com -# ||2xbpub.com^$third-party (easylist.txt: 24301) -.2xbpub.com -# ||2mdn.info^$third-party (easylist.txt: 24297) -.2mdn.info -# ||2dpt.com^$third-party (easylist.txt: 24296) -.2dpt.com -# ||2d4c3872.info^$third-party (easylist.txt: 24295) -.2d4c3872.info -# ||2d4c3870.info^$third-party (easylist.txt: 24294) -.2d4c3870.info -# ||254a.com^$third-party (easylist.txt: 24293) -.254a.com -# ||247realmedia.com^$third-party (easylist.txt: 24292) -.247realmedia.com -# ||213.163.70.183^$third-party (easylist.txt: 24291) -.213.163.70.183 -# ||20dollars2surf.com^$third-party (easylist.txt: 24290) -.20dollars2surf.com -# ||206ads.com^$third-party (easylist.txt: 24288) -.206ads.com -# ||1yk851od.com^$third-party (easylist.txt: 24286) -.1yk851od.com -# ||1sadx.net^$third-party (easylist.txt: 24285) -.1sadx.net -# ||1phads.com^$third-party (easylist.txt: 24284) -.1phads.com -# ||1nimo.com^$third-party (easylist.txt: 24283) -.1nimo.com -# ||1empiredirect.com^$third-party (easylist.txt: 24282) -.1empiredirect.com -# ||1e0y.xyz^$third-party (easylist.txt: 24281) -.1e0y.xyz -# ||1clickdownloads.com^$third-party (easylist.txt: 24280) -.1clickdownloads.com -# ||1ccbt.com^$third-party (easylist.txt: 24279) -.1ccbt.com -# ||194.71.107.25^$third-party (easylist.txt: 24277) -.194.71.107.25 -# ||18clicks.com^$third-party (easylist.txt: 24276) -.18clicks.com -# ||188server.com^$third-party (easylist.txt: 24275) -.188server.com -# ||17a898bb.info^$third-party (easylist.txt: 24273) -.17a898bb.info -# ||17a898b9.info^$third-party (easylist.txt: 24272) -.17a898b9.info -# ||174.142.194.177^$third-party (easylist.txt: 24271) -.174.142.194.177 -# ||15f3c01c.info^$third-party (easylist.txt: 24270) -.15f3c01c.info -# ||15f3c01a.info^$third-party (easylist.txt: 24269) -.15f3c01a.info -# ||152media.com^$third-party (easylist.txt: 24268) -.152media.com -# ||12place.com^$third-party (easylist.txt: 24267) -.12place.com -# ||123date.me^$third-party (easylist.txt: 24266) -.123date.me -# ||1100i.com^$third-party (easylist.txt: 24265) -.1100i.com -# ||10pipsaffiliates.com^$third-party (easylist.txt: 24264) -.10pipsaffiliates.com -# ||10fbb07a4b0.se^$third-party (easylist.txt: 24263) -.10fbb07a4b0.se -# ||103092804.com^$third-party (easylist.txt: 24262) -.103092804.com -# ||101m3.com^$third-party (easylist.txt: 24261) -.101m3.com -# ||0icep80f.com^$third-party (easylist.txt: 24260) -.0icep80f.com -# ||007-gateway.com^$third-party (easylist.txt: 24259) -.007-gateway.com -# ://promo.$third-party (easylist.txt: 5836) -/.*://promo\. -promo.*. -# ://banners.$third-party (easylist.txt: 5827) -/.*://banners\. -banners.*. -# ://banner.$third-party (easylist.txt: 5826) -/.*://banner\. -banner.*. -# ://affiliates.$third-party (easylist.txt: 5824) -/.*://affiliates\. -affiliates.*. -# ://affiliate.$third-party (easylist.txt: 5823) -/.*://affiliate\. -affiliate.*. -# /pub_images/*$third-party (easylist.txt: 4923) -/(.*/)?pub_images/.* -# /exports/tour/*$third-party (easylist.txt: 3741) -/(.*/)?exports/tour/.* -# /banner.asp?$third-party (easylist.txt: 3121) -/(.*/)?banner\.asp\? -# /a3/?sub=$third-party (easylist.txt: 670) -/(.*/)?a3/\?sub= -# /a2/?sub=$third-party (easylist.txt: 668) -/(.*/)?a2/\?sub= -# /a1/*?sub=$third-party (easylist.txt: 667) -/(.*/)?a1/.*\?sub= #ab2p-block-request-Ani-Cni-Xx {+client-header-tagger{ab2p-block-request-Ani} \ +server-header-tagger{ab2p-block-request-Cni} \ +client-header-tagger{ab2p-block-request-Xx} \ } -# /pounder-$~image (easylistchina+easylist.txt: 15357) -/(.*/)?pounder- -pounder-*. -# ||lady8844.com/IMAGE/$~image (easylistchina+easylist.txt: 3763) +# ||lady8844.com/IMAGE/$~image (easylistchina.txt: 3754) .lady8844.com/IMAGE/ -# ||img.eol.cn/images/ed/$~image (easylistchina+easylist.txt: 3446) +# ||img.eol.cn/images/ed/$~image (easylistchina.txt: 3431) .img.eol.cn/images/ed/ -# ||molodejj.tv^*/branding/$~image (advblock.txt: 6080) -.molodejj.tv/.*/branding/ -# /pounder-$~image (easylist.txt: 4872) -/(.*/)?pounder- -pounder-*. - -#ab2p-block-request-Anj-Cnj-Xx -{+client-header-tagger{ab2p-block-request-Anj} \ - +server-header-tagger{ab2p-block-request-Cnj} \ - +client-header-tagger{ab2p-block-request-Xx} \ -} -# ||shopping-spb.su/images_b/$~script (advblock.txt: 6398) -.shopping-spb.su/images_b/ -# ||s5o.ru^*/banners/$~script (advblock.txt: 6366) -.s5o.ru/.*/banners/ #ab2p-block-request-R1 {+client-header-tagger{ab2p-block-request-R1} \ } -# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|107.150.17.66|20fuck.com|20men.com|22fuck.com|23.226.134.115|23.226.134.116|23.226.138.28|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina+easylist.txt: 1159) +# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tb001.xyz|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina.txt: 1177) /(.*/)?images/.*\.gif #ab2p-block-request-R2 {+client-header-tagger{ab2p-block-request-R2} \ } -# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina+easylist.txt: 4612) +# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tb001.xyz|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina.txt: 4590) .sinaimg.cn/.*\.gif #ab2p-block-request-R3 {+client-header-tagger{ab2p-block-request-R3} \ } -# ||109.201.134.110^$domain=04stream.com (easylistchina+easylist.txt: 39580) -.109.201.134.110 -# ||109.201.134.110^$domain=04stream.com (easylist.txt: 29095) -.109.201.134.110 +# ||chinaacc.com^$domain=100ksw.com (easylistchina.txt: 2414) +.chinaacc.com #ab2p-block-request-R4 {+client-header-tagger{ab2p-block-request-R4} \ } -# ||chinaacc.com^$domain=100ksw.com (easylistchina+easylist.txt: 2428) -.chinaacc.com - -#ab2p-block-request-R6 -{+client-header-tagger{ab2p-block-request-R6} \ -} -# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina+easylist.txt: 1166) +# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina.txt: 1184) /(.*/)?images/moe +#ab2p-block-request-R5 +{+client-header-tagger{ab2p-block-request-R5} \ +} +# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina.txt: 1159) +/(.*/)?config\. +config.*. + #ab2p-block-request-R7 {+client-header-tagger{ab2p-block-request-R7} \ } -# /skin/1212/bg$domain=114la.com|ylmf.com (easylistchina+easylist.txt: 1214) -/(.*/)?skin/1212/bg -# /material/vph.$domain=114la.com|ylmf.com (easylistchina+easylist.txt: 1189) -/(.*/)?material/vph\. +# ||sohucs.com^*_gif$domain=12580sky.com (easylistchina.txt: 4633) +.sohucs.com/.*_gif #ab2p-block-request-R8 {+client-header-tagger{ab2p-block-request-R8} \ } -# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina+easylist.txt: 1139) -/(.*/)?config\. -config.*. +# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina.txt: 1118) +/.*\.gif$ +.*.gif + +#ab2p-block-request-R9 +{+client-header-tagger{ab2p-block-request-R9} \ +} +# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina.txt: 1116) +/.*\.com/x/ +.*.com/x/ #ab2p-block-request-R10 {+client-header-tagger{ab2p-block-request-R10} \ } -# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina+easylist.txt: 1094) -/.*\.gif$ -.*.gif +# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina.txt: 1279) +/(.*/)?ts\.js #ab2p-block-request-R11 {+client-header-tagger{ab2p-block-request-R11} \ } -# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina+easylist.txt: 1092) -/.*\.com/x/ -.*.com/x/ +# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina.txt: 4822) +.tinypic.com #ab2p-block-request-R12 {+client-header-tagger{ab2p-block-request-R12} \ } -# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina+easylist.txt: 1265) -/(.*/)?ts\.js +# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84fn.com|99ee1.com|99re5.com|99rr6.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|caoliuzx.com|cililian.me|fdzone.org|izzs.cc|jisuzhibo.net|links.hjav.in|liulanmi.com|sbme.me|taohuazu.tw|thzhd.net|ttdyy.tv|xinqixi.com|xxxbt.com|youb444.com|zhiboche.com (easylistchina.txt: 4589) +.sinaimg.cn #ab2p-block-request-R13 {+client-header-tagger{ab2p-block-request-R13} \ } -# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina+easylist.txt: 4844) -.tinypic.com - -#ab2p-block-request-R14 -{+client-header-tagger{ab2p-block-request-R14} \ -} -# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84zr.com|99re.city|99re.co|99re.net|99re.org|99re6.com|99re8.com|99rehomes.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|cao1024.com|caoliuzx.com|cililian.me|fdzone.org|jisuzhibo.net|links.hjav.in|liulanmi.com|lululu.club|lululu.lu|ml.gg|sbme.me|taohuazu.tw|ttdyy.tv|xinqixi.com|xxxbt.com|zhiboche.com (easylistchina+easylist.txt: 4611) -.sinaimg.cn +# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1229) +/(.*/)?skin/tb12/.* +# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1192) +/(.*/)?img/skin/.*_bg\. #ab2p-block-request-R15 {+client-header-tagger{ab2p-block-request-R15} \ } -# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina+easylist.txt: 1215) -/(.*/)?skin/tb12/.* -# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina+easylist.txt: 1174) -/(.*/)?img/skin/.*_bg\. +# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina.txt: 3456) +.imgmega.com/i/.*\.gif + +#ab2p-block-request-R16 +{+client-header-tagger{ab2p-block-request-R16} \ +} +# ||imgur.com^*.gif$domain=18p2p.com (easylistchina.txt: 3468) +.imgur.com/.*\.gif #ab2p-block-request-R17 {+client-header-tagger{ab2p-block-request-R17} \ } -# /adpost_$domain=18avday.cc|18avday.com (easylistchina+easylist.txt: 1117) -/(.*/)?adpost_ -# /adpost.$domain=18avday.cc|18avday.com (easylistchina+easylist.txt: 1116) -/(.*/)?adpost\. -adpost.*. +# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina.txt: 2388) +.cdndm.com/3/2015/ #ab2p-block-request-R18 {+client-header-tagger{ab2p-block-request-R18} \ } -# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina+easylist.txt: 3471) -.imgmega.com/i/.*\.gif +# |http://*/adblock$domain=26766.com (easylistchina.txt: 1275) +/(.*/)?adblock #ab2p-block-request-R19 {+client-header-tagger{ab2p-block-request-R19} \ } -# ||imgur.com^*.gif$domain=18p2p.com (easylistchina+easylist.txt: 3483) -.imgur.com/.*\.gif +# /the_top$domain=28188.com|28188.net (easylistchina.txt: 1235) +/(.*/)?the_top +# /banner.js$domain=28188.com|28188.net (easylistchina.txt: 1151) +/(.*/)?banner\.js +banner.js*. #ab2p-block-request-R20 {+client-header-tagger{ab2p-block-request-R20} \ } -# /images/banners/*$domain=19rus.info|1tvnet.ru|arendator.ru|biwork.ru|bvedomosti.ru|cars.ru|csmania.ru|fitsport.ru|fuzz-magazine.ru|gamegpu.ru|hd-systems.com.ua|itexpert.org.ua|karelia.ru|km.ru|mebelminsk.by|moscow-post.com|nakanune.ru|newizv.ru|ngregion.ru|poiskvps.ru|pretenziy.ru|rbc.ru|ridna.ua|rtr24.ru|ruslife.eu|sevastopol.su|skoda-club.org.ua|starkosino.ru|vjazhi.ru|vp-news.ru|vsatke.ru|zrenue.com|谐芯褉芯写-泻懈薪谐懈褋械锌锌.褉褎 (advblock.txt: 5387) -/(.*/)?images/banners/.* +# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina.txt: 4564) +.sinaimg.cn/large/ #ab2p-block-request-R21 {+client-header-tagger{ab2p-block-request-R21} \ } -# ||windows.net/script/p.js$domain=1fichier.com|limetorrents.cc|primewire.ag|thepiratebay.銇裤倱銇 (easylistchina+easylist.txt: 45606) -.windows.net/script/p\.js -# ||windows.net/script/p.js$domain=1fichier.com|limetorrents.cc|primewire.ag|thepiratebay.銇裤倱銇 (easylist.txt: 35121) -.windows.net/script/p\.js +# ||qpic.cn^$domain=360-bo.com|pptiyu.com (easylistchina.txt: 4318) +.qpic.cn #ab2p-block-request-R22 {+client-header-tagger{ab2p-block-request-R22} \ } -# ||megogo.net^*?autoplay=1$domain=1kinobig.ru|hdkinomax.com|kino-dom.tv (advblock.txt: 6040) -.megogo.net/.*\?autoplay=1 +# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina.txt: 1136) +/(.*/)?ad2014\.js +ad2014.js*. #ab2p-block-request-R23 {+client-header-tagger{ab2p-block-request-R23} \ } -# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina+easylist.txt: 2402) -.cdndm.com/3/2015/ +# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina.txt: 1212) +/(.*/)?mydisplay\.php\?i= #ab2p-block-request-R24 {+client-header-tagger{ab2p-block-request-R24} \ } -# ||adfox.ru/*/getCode?$domain=1tv.ru (advblock.txt: 5452) -.adfox.ru/.*/getCode\? +# /xiaoshuo.js$domain=45zw.com (easylistchina.txt: 1252) +/(.*/)?xiaoshuo\.js +xiaoshuo.js*. + +#ab2p-block-request-R25 +{+client-header-tagger{ab2p-block-request-R25} \ +} +# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1180) +/(.*/)?images/888\.gif +# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1178) +/(.*/)?images/.*gamble +# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1170) +/(.*/)?gennie_b\.htm #ab2p-block-request-R26 {+client-header-tagger{ab2p-block-request-R26} \ } -# /img/bg/*$domain=21forum.ru|cheb.ru|na-svyazi.ru (advblock.txt: 7068) -/(.*/)?img/bg/.* +# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina.txt: 1193) +/(.*/)?ipower\.htm +ipower.htm*. #ab2p-block-request-R27 {+client-header-tagger{ab2p-block-request-R27} \ } -# /ads/*$domain=240513.com|ozdpt.com (easylistchina+easylist.txt: 1118) -/(.*/)?ads/.* +# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina.txt: 1196) +/(.*/)?js/gTool\.js + +#ab2p-block-request-R186t +{+client-header-tagger{ab2p-block-request-R186t} \ +} +# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|downhhh.com|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina.txt: 1067) #ab2p-block-request-R29 {+client-header-tagger{ab2p-block-request-R29} \ } -# |http://*/adblock$domain=26766.com (easylistchina+easylist.txt: 1261) -/(.*/)?adblock +# ||wal8.com^$domain=52jifenbao.net (easylistchina.txt: 4974) +.wal8.com +# ||qiniudn.com^$domain=52jifenbao.net (easylistchina.txt: 4283) +.qiniudn.com #ab2p-block-request-R30 {+client-header-tagger{ab2p-block-request-R30} \ } -# /the_top$domain=28188.com|28188.net (easylistchina+easylist.txt: 1221) -/(.*/)?the_top -# /banner.js$domain=28188.com|28188.net (easylistchina+easylist.txt: 1131) -/(.*/)?banner\.js -banner.js*. +# ||tietuku.com^$domain=5ydj.com|99ee1.com|99re5.com|99rr6.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina.txt: 4793) +.tietuku.com + +#ab2p-block-request-R31 +{+client-header-tagger{ab2p-block-request-R31} \ +} +# ||media.*.gif$domain=6668.se (easylistchina.txt: 3913) +.media.*./.*\.gif +.media.*.gif*. + +#ab2p-block-request-R32 +{+client-header-tagger{ab2p-block-request-R32} \ +} +# /js/top.js$domain=8comic.com|comicvip.com (easylistchina.txt: 1198) +/(.*/)?js/top\.js #ab2p-block-request-R33 {+client-header-tagger{ab2p-block-request-R33} \ } -# ||softexter.com^$popup,domain=2drive.net (easylistchina+easylist.txt: 46183) -.softexter.com -# ||softexter.com^$popup,domain=2drive.net (easylist.txt: 35698) -.softexter.com +# ||meimb.com^$domain=94as.com (easylistchina.txt: 3919) +.meimb.com #ab2p-block-request-R34 {+client-header-tagger{ab2p-block-request-R34} \ } -# ||xplian.com^$domain=2mm.tv (easylistchina+easylist.txt: 5197) -.xplian.com +# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1278) +/(.*/)?t\.js +# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1201) +/(.*/)?jsc/stat\.js +# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1200) +/(.*/)?jsc/Copy\.js +# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1199) +/(.*/)?jsc/book_ #ab2p-block-request-R35 {+client-header-tagger{ab2p-block-request-R35} \ } -# ||href.li^$popup,domain=300mblink.com (easylistchina+easylist.txt: 46153) -.href.li -# ||href.li^$popup,domain=300mblink.com (easylist.txt: 35668) -.href.li - -#ab2p-block-request-R36 -{+client-header-tagger{ab2p-block-request-R36} \ -} -# ||qpic.cn^$domain=360-bo.com|54xr.com|pptiyu.com|xrba.net (easylistchina+easylist.txt: 4328) -.qpic.cn +# ||chuantu.biz^$domain=99ee1.com|99re5.com|99rr6.com (easylistchina.txt: 2461) +.chuantu.biz #ab2p-block-request-R37 {+client-header-tagger{ab2p-block-request-R37} \ } -# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina+easylist.txt: 4576) -.sinaimg.cn/large/ +# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina.txt: 1104) +.taobao.com #ab2p-block-request-R38 {+client-header-tagger{ab2p-block-request-R38} \ } -# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina+easylist.txt: 1112) -/(.*/)?ad2014\.js -ad2014.js*. +# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina.txt: 4572) +.sinaimg.cn/large/ec76730dgw + +#ab2p-block-request-R39 +{+client-header-tagger{ab2p-block-request-R39} \ +} +# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina.txt: 1281) +t.cn + +#ab2p-block-request-R40 +{+client-header-tagger{ab2p-block-request-R40} \ +} +# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina.txt: 1061) +/(.*/)?\? #ab2p-block-request-R41 {+client-header-tagger{ab2p-block-request-R41} \ } -# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina+easylist.txt: 1197) -/(.*/)?mydisplay\.php\?i= +# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1124) +/(.*/)?2015new\.js +2015new.js*. #ab2p-block-request-R42 {+client-header-tagger{ab2p-block-request-R42} \ } -# /xiaoshuo.js$domain=45zw.com (easylistchina+easylist.txt: 1238) -/(.*/)?xiaoshuo\.js -xiaoshuo.js*. +# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1273) +/(.*/)?83/ #ab2p-block-request-R43 {+client-header-tagger{ab2p-block-request-R43} \ } -# ||schenkelklopfer.org^$popup,domain=4fuckr.com (easylistchina+easylist.txt: 46180) -.schenkelklopfer.org -# ||jokertraffic.com^$popup,domain=4fuckr.com (easylistchina+easylist.txt: 46160) -.jokertraffic.com -# ||schenkelklopfer.org^$domain=4fuckr.com (easylistchina+easylist.txt: 44676) -.schenkelklopfer.org -# ||jokertraffic.com^$domain=4fuckr.com (easylistchina+easylist.txt: 43610) -.jokertraffic.com -# ||schenkelklopfer.org^$popup,domain=4fuckr.com (easylist.txt: 35695) -.schenkelklopfer.org -# ||jokertraffic.com^$popup,domain=4fuckr.com (easylist.txt: 35675) -.jokertraffic.com -# ||schenkelklopfer.org^$domain=4fuckr.com (easylist.txt: 34191) -.schenkelklopfer.org -# ||jokertraffic.com^$domain=4fuckr.com (easylist.txt: 33125) -.jokertraffic.com +# ||bp.blogspot.com^$domain=avmimi.com (easylistchina.txt: 2297) +.bp.blogspot.com #ab2p-block-request-R44 {+client-header-tagger{ab2p-block-request-R44} \ } -# ||youtube.com/embed/$domain=4put.ru (advblock.txt: 6621) -.youtube.com/embed/ +# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina.txt: 4740) +.taobaocdn.com/imgextra/ #ab2p-block-request-R45 {+client-header-tagger{ab2p-block-request-R45} \ } -# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1162) -/(.*/)?images/888\.gif -# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1160) -/(.*/)?images/.*gamble -# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1152) -/(.*/)?gennie_b\.htm +# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina.txt: 4912) +.upload.chinaz.com/20.*\.gif #ab2p-block-request-R46 {+client-header-tagger{ab2p-block-request-R46} \ } -# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina+easylist.txt: 1175) -/(.*/)?ipower\.htm -ipower.htm*. +# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina.txt: 3428) +.img.china.alibaba.com/img/ibank/ #ab2p-block-request-R47 {+client-header-tagger{ab2p-block-request-R47} \ } -# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina+easylist.txt: 1179) -/(.*/)?js/gTool\.js +# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina.txt: 1174) +/(.*/)?house/images/.* -#ab2p-block-request-R751t -{+client-header-tagger{ab2p-block-request-R751t} \ +#ab2p-block-request-R48 +{+client-header-tagger{ab2p-block-request-R48} \ } -# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina+easylist.txt: 1044) +# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina.txt: 1280) +rc.sz.zj.cn/.*\.swf #ab2p-block-request-R49 {+client-header-tagger{ab2p-block-request-R49} \ } -# ||wal8.com^$domain=52jifenbao.net (easylistchina+easylist.txt: 4997) -.wal8.com -# ||qiniudn.com^$domain=52jifenbao.net (easylistchina+easylist.txt: 4291) -.qiniudn.com - -#ab2p-block-request-R50 -{+client-header-tagger{ab2p-block-request-R50} \ -} -# ||tietuku.com^$domain=5ydj.com|99re.city|99re.net|99re6.com|99re8.com|99rehomes.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina+easylist.txt: 4816) -.tietuku.com - -#ab2p-block-request-R51 -{+client-header-tagger{ab2p-block-request-R51} \ -} -# ||netdna-cdn.com^*-Background-1280x10241.$domain=7daysindubai.com (easylistchina+easylist.txt: 40678) -.netdna-cdn.com/.*-Background-1280x10241\. -# ||netdna-cdn.com/wp-content/plugins/background-manager/$domain=7daysindubai.com (easylistchina+easylist.txt: 40676) -.netdna-cdn.com/wp-content/plugins/background-manager/ -# ||netdna-cdn.com^*-Background-1280x10241.$domain=7daysindubai.com (easylist.txt: 30193) -.netdna-cdn.com/.*-Background-1280x10241\. -# ||netdna-cdn.com/wp-content/plugins/background-manager/$domain=7daysindubai.com (easylist.txt: 30191) -.netdna-cdn.com/wp-content/plugins/background-manager/ +# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina.txt: 3954) +.momoshop.com.tw/league/ #ab2p-block-request-R52 {+client-header-tagger{ab2p-block-request-R52} \ } -# /float.js$domain=8888eee.com|xav4.com|xav5.com|xav6.com|xav7.com|xav8.com|xav9.com|xiaav.cc|xiaav.me (easylistchina+easylist.txt: 1146) -/(.*/)?float\.js -float.js*. -# /attachment/Mon_$domain=8888eee.com|xav4.com|xav5.com|xav6.com|xav7.com|xav8.com|xav9.com|xiaav.cc|xiaav.me (easylistchina+easylist.txt: 1128) -/(.*/)?attachment/Mon_ +# /images/tuangou$domain=bjxxw.com (easylistchina.txt: 1185) +/(.*/)?images/tuangou #ab2p-block-request-R53 {+client-header-tagger{ab2p-block-request-R53} \ } -# /js/top.js$domain=8comic.com|comicvip.com (easylistchina+easylist.txt: 1182) -/(.*/)?js/top\.js +# ||85rere.com^$popup,domain=btbbt.cc (easylistchina.txt: 1071) +.85rere.com #ab2p-block-request-R54 {+client-header-tagger{ab2p-block-request-R54} \ } -# /js/alls_$domain=911-sss.com|911semm.com|911semm.info|911seqq.info|913sss.com|kuaisou222.com|ylgbt.info|ylgxxbt.com (easylistchina+easylist.txt: 1178) -/(.*/)?js/alls_ +# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina.txt: 1234) +/(.*/)?tb780x90\.gif +tb780x90.gif*. #ab2p-block-request-R55 {+client-header-tagger{ab2p-block-request-R55} \ } -# ||meimb.com^$domain=94as.com (easylistchina+easylist.txt: 3928) -.meimb.com +# /d125.260.gif$domain=btup.net (easylistchina.txt: 1161) +/(.*/)?d125\.260\.gif +d125.260.gif*. #ab2p-block-request-R56 {+client-header-tagger{ab2p-block-request-R56} \ } -# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1264) -/(.*/)?t\.js -# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1185) -/(.*/)?jsc/stat\.js -# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1184) -/(.*/)?jsc/Copy\.js -# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina+easylist.txt: 1183) -/(.*/)?jsc/book_ +# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina.txt: 1168) +/(.*/)?gamepic/.* -#ab2p-block-request-R58 -{+client-header-tagger{ab2p-block-request-R58} \ +#ab2p-block-request-R57 +{+client-header-tagger{ab2p-block-request-R57} \ } -# ||tumblr.com^$domain=99re.co|99re.org (easylistchina+easylist.txt: 4878) -.tumblr.com +# ||duapp.com^$domain=ccav1.com (easylistchina.txt: 2726) +.duapp.com #ab2p-block-request-R59 {+client-header-tagger{ab2p-block-request-R59} \ } -# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina+easylist.txt: 1079) -.taobao.com +# |http://*/bn/$domain=chimatong.com (easylistchina.txt: 1276) +/(.*/)?bn/ + +#ab2p-block-request-R60 +{+client-header-tagger{ab2p-block-request-R60} \ +} +# /sda/*$domain=chineseinla.com (easylistchina.txt: 1225) +/(.*/)?sda/.* +# /images/content/1436/*$domain=chineseinla.com (easylistchina.txt: 1183) +/(.*/)?images/content/1436/.* + +#ab2p-block-request-R61 +{+client-header-tagger{ab2p-block-request-R61} \ +} +# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina.txt: 5276) +.youtube.com/embed/.*&autoplay=1& #ab2p-block-request-R63 {+client-header-tagger{ab2p-block-request-R63} \ } -# ||rackcdn.com/*Rails_$domain=accesshollywood.com (easylistchina+easylist.txt: 44520) -.rackcdn.com/.*Rails_ -# ||rackcdn.com/*Rails_$domain=accesshollywood.com (easylist.txt: 34035) -.rackcdn.com/.*Rails_ +# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina.txt: 4864) +.tw.partner.buy.yahoo.com #ab2p-block-request-R64 {+client-header-tagger{ab2p-block-request-R64} \ } -# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina+easylist.txt: 4592) -.sinaimg.cn/large/ec76730dgw +# /assets/images/banner$domain=cpbl.com.tw (easylistchina.txt: 1144) +/(.*/)?assets/images/banner #ab2p-block-request-R65 {+client-header-tagger{ab2p-block-request-R65} \ } -# ||googleusercontent.com^*/s468/$domain=activistpost.com (easylistchina+easylist.txt: 43256) -.googleusercontent.com/.*/s468/ -# ||googleusercontent.com^*/s220/$domain=activistpost.com (easylistchina+easylist.txt: 43255) -.googleusercontent.com/.*/s220/ -# ||googleusercontent.com^*/s468/$domain=activistpost.com (easylist.txt: 32771) -.googleusercontent.com/.*/s468/ -# ||googleusercontent.com^*/s220/$domain=activistpost.com (easylist.txt: 32770) -.googleusercontent.com/.*/s220/ +# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina.txt: 1155) +/(.*/)?biz_icon/.* + +#ab2p-block-request-R66 +{+client-header-tagger{ab2p-block-request-R66} \ +} +# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina.txt: 4366) +.rakuten-static.com +# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina.txt: 4184) +.pic.pimg.tw/cwyuni/.*\.gif\?v= + +#ab2p-block-request-R67 +{+client-header-tagger{ab2p-block-request-R67} \ +} +# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina.txt: 4577) +.sinaimg.cn/mw1024/6283e.*\.jpg +# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina.txt: 4001) +.mygeek.cn/pic_ + +#ab2p-block-request-R68 +{+client-header-tagger{ab2p-block-request-R68} \ +} +# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina.txt: 1285) +.005.tv/data/attachment/forum/.*\.gif + +#ab2p-block-request-R69 +{+client-header-tagger{ab2p-block-request-R69} \ +} +# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina.txt: 1141) +/(.*/)?aeiou/.* + +#ab2p-block-request-R70 +{+client-header-tagger{ab2p-block-request-R70} \ +} +# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina.txt: 1250) +/(.*/)?wxhfm\.html +wxhfm.html*. +# /wxh.js$domain=dm5.com|dm5.hk (easylistchina.txt: 1249) +/(.*/)?wxh\.js +wxh.js*. + +#ab2p-block-request-R71 +{+client-header-tagger{ab2p-block-request-R71} \ +} +# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina.txt: 4742) +.taobaocdn.com #ab2p-block-request-R72 {+client-header-tagger{ab2p-block-request-R72} \ } -# /3market.php?$domain=adf.ly|j.gs|q.gs|u.bb (easylistchina+easylist.txt: 41903) -/(.*/)?3market\.php\? -# /3market.php?$domain=adf.ly|j.gs|q.gs|u.bb (easylist.txt: 31418) -/(.*/)?3market\.php\? +# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina.txt: 1152) +/(.*/)?banner/.* #ab2p-block-request-R73 {+client-header-tagger{ab2p-block-request-R73} \ } -# /market.php?$domain=adf.ly|u.bb (easylistchina+easylist.txt: 41912) -/(.*/)?market\.php\? -# /market.php?$domain=adf.ly|u.bb (easylist.txt: 31427) -/(.*/)?market\.php\? +# ||1.baidu.com^$popup,domain=douban.com (easylistchina.txt: 1069) +.1.baidu.com #ab2p-block-request-R74 {+client-header-tagger{ab2p-block-request-R74} \ } -# ||newsgate.pw^$popup,domain=adjet.biz (easylistchina+easylist.txt: 46169) -.newsgate.pw -# ||newsgate.pw^$popup,domain=adjet.biz (easylist.txt: 35684) -.newsgate.pw +# /static/media/curl.swf$domain=duba.com (easylistchina.txt: 1231) +/(.*/)?static/media/curl\.swf + +#ab2p-block-request-R75 +{+client-header-tagger{ab2p-block-request-R75} \ +} +# |http:$domain=e.70e.com|e701.net (easylistchina.txt: 1267) #ab2p-block-request-R76 {+client-header-tagger{ab2p-block-request-R76} \ } -# ||dumedia.ru^$domain=adultmult.tv|moonwalk.cc (advblock.txt: 6646) -.dumedia.ru +# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina.txt: 1164) +/(.*/)?EZ-YAHOO/.* #ab2p-block-request-R77 {+client-header-tagger{ab2p-block-request-R77} \ } -# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina+easylist.txt: 1267) -t.cn +# /pagead/*$domain=fankudo.com (easylistchina.txt: 1221) +/(.*/)?pagead/.* #ab2p-block-request-R79 {+client-header-tagger{ab2p-block-request-R79} \ } -# /images/banners_$domain=agronews.ru|agrotv.ru (advblock.txt: 5388) -/(.*/)?images/banners_ +# ||k.youku.com^$domain=flvcd.com (easylistchina.txt: 3690) +.k.youku.com #ab2p-block-request-R80 {+client-header-tagger{ab2p-block-request-R80} \ } -# ||cloudfront.net/ccmtblv2.png$domain=aim.org (easylistchina+easylist.txt: 42549) -.cloudfront.net/ccmtblv2\.png -# ||cloudfront.net/ccmtblv2.png$domain=aim.org (easylist.txt: 32064) -.cloudfront.net/ccmtblv2\.png +# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina.txt: 2474) +.cj.qidian.com/Picture/ #ab2p-block-request-R81 {+client-header-tagger{ab2p-block-request-R81} \ } -# ||akiba.ookami-cdn.net/images/subby.jpg$domain=akiba-online.com (easylistchina+easylist.txt: 42111) -.akiba.ookami-cdn.net/images/subby\.jpg -# ||akiba.ookami-cdn.net/images/subby.jpg$domain=akiba-online.com (easylist.txt: 31626) -.akiba.ookami-cdn.net/images/subby\.jpg +# /jquery.$domain=game.macx.cn (easylistchina.txt: 1194) +/(.*/)?jquery\. +jquery.*. #ab2p-block-request-R82 {+client-header-tagger{ab2p-block-request-R82} \ } -# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina+easylist.txt: 1038) -/(.*/)?\? +# ||8kele.com^$~collapse,domain=gamer.com.tw (easylistchina.txt: 1887) +.8kele.com +# /web/ad/*$domain=gamer.com.tw (easylistchina.txt: 1243) +/(.*/)?web/ad/.* -#ab2p-block-request-R752t -{+client-header-tagger{ab2p-block-request-R752t} \ +#ab2p-block-request-R83 +{+client-header-tagger{ab2p-block-request-R83} \ } -# |http:$popup,third-party,domain=allmyvideos.net|embed.videoweed.es|extreme-board.com|fastspics.net|filepost.com|filmovizija.com|go4up.com|imagebam.com|imagefruit.com|imageporter.com|imgbox.com|imgmade.com|imgshots.com|imgsin.com|imgspice.com|load.to|mofunzone.com|openload.co|promptfile.com|putlocker.is|thevideo.me|twer.info|vidspot.net|watchcartoononline.com|xtshare.com|youwatch.org (easylistchina+easylist.txt: 46104) -# |http:$popup,third-party,domain=allmyvideos.net|embed.videoweed.es|extreme-board.com|fastspics.net|filepost.com|filmovizija.com|go4up.com|imagebam.com|imagefruit.com|imageporter.com|imgbox.com|imgmade.com|imgshots.com|imgsin.com|imgspice.com|load.to|mofunzone.com|openload.co|promptfile.com|putlocker.is|thevideo.me|twer.info|vidspot.net|watchcartoononline.com|xtshare.com|youwatch.org (easylist.txt: 35619) +# /marketing/cover/*$domain=geekpark.net (easylistchina.txt: 1204) +/(.*/)?marketing/cover/.* + +#ab2p-block-request-R84 +{+client-header-tagger{ab2p-block-request-R84} \ +} +# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina.txt: 3475) +.info.lm.tv.sohu.com + +#ab2p-block-request-R85 +{+client-header-tagger{ab2p-block-request-R85} \ +} +# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina.txt: 4835) +.top.taobao.com/interface_v2\.php\? #ab2p-block-request-R86 {+client-header-tagger{ab2p-block-request-R86} \ } -# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina+easylist.txt: 1100) -/(.*/)?2015new\.js -2015new.js*. +# /bao/uploaded/*$domain=hacg.lol (easylistchina.txt: 1154) +/(.*/)?bao/uploaded/.* +# ||taobao.com$popup,domain=hacg.lol (easylistchina.txt: 1103) +.taobao.com*. #ab2p-block-request-R87 {+client-header-tagger{ab2p-block-request-R87} \ } -# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina+easylist.txt: 1259) -/(.*/)?83/ +# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina.txt: 1181) +/(.*/)?Images/ak47/.* #ab2p-block-request-R88 {+client-header-tagger{ab2p-block-request-R88} \ } -# ||titanbrowser.com^$popup,domain=amaderforum.com (easylistchina+easylist.txt: 46193) -.titanbrowser.com -# ||findgrid.com^$popup,domain=amaderforum.com (easylistchina+easylist.txt: 46131) -.findgrid.com -# ||titanbrowser.com^$popup,domain=amaderforum.com (easylist.txt: 35708) -.titanbrowser.com -# ||findgrid.com^$popup,domain=amaderforum.com (easylist.txt: 35646) -.findgrid.com +# ||51img1.com^$domain=hdscg.com (easylistchina.txt: 1664) +.51img1.com #ab2p-block-request-R89 {+client-header-tagger{ab2p-block-request-R89} \ } -# ||goo.gl^$popup,domain=amaderforum.com|jumbofile.net|videomega.tv (easylistchina+easylist.txt: 46146) -.goo.gl -# ||goo.gl^$popup,domain=amaderforum.com|jumbofile.net|videomega.tv (easylist.txt: 35661) -.goo.gl - -#ab2p-block-request-R90 -{+client-header-tagger{ab2p-block-request-R90} \ -} -# /images/branding/*$domain=amovies.tv|cybergame.tv|dfiles.ru|filmz.ru (advblock.txt: 5390) -/(.*/)?images/branding/.* +# ||xldytt.com^$popup,domain=henbt.com (easylistchina.txt: 1107) +.xldytt.com #ab2p-block-request-R91 {+client-header-tagger{ab2p-block-request-R91} \ } -# /images/brand/*$domain=amuzic.ru|emuzic.ru|pikabu.ru (advblock.txt: 5389) -/(.*/)?images/brand/.* +# /nfs/ad/*$domain=hkbici.com (easylistchina.txt: 1216) +/(.*/)?nfs/ad/.* +# /attachment/ad/*$domain=hkbici.com (easylistchina.txt: 1147) +/(.*/)?attachment/ad/.* -#ab2p-block-request-R753t -{+client-header-tagger{ab2p-block-request-R753t} \ +#ab2p-block-request-R92 +{+client-header-tagger{ab2p-block-request-R92} \ } -# ||spendcrazy.net^$popup,third-party,domain=animegalaxy.net|animenova.tv|animetoon.tv|animewow.eu|gogoanime.com|goodanime.eu|gooddrama.net|toonget.com (easylistchina+easylist.txt: 46185) -.spendcrazy.net -# ||spendcrazy.net^$popup,third-party,domain=animegalaxy.net|animenova.tv|animetoon.tv|animewow.eu|gogoanime.com|goodanime.eu|gooddrama.net|toonget.com (easylist.txt: 35700) -.spendcrazy.net - -#ab2p-block-request-R93 -{+client-header-tagger{ab2p-block-request-R93} \ -} -# ||adcdn.tv^$domain=anistar.ru (advblock.txt: 5451) -.adcdn.tv +# ||megalife.com.hk^$domain=hkgolden.com (easylistchina.txt: 3916) +.megalife.com.hk #ab2p-block-request-R95 {+client-header-tagger{ab2p-block-request-R95} \ } -# /rotator.js|$domain=antistarforce.com|rustorka.com|rustorka.net (advblock.txt: 5395) -/(.*/)?rotator\.js$ -rotator.js -# .js?rt=$domain=antistarforce.com|rustorka.com|rustorka.net (advblock.txt: 5370) -/.*\.js\?rt= +# ||alicdn.com^*.jpg$domain=htai.me (easylistchina.txt: 2071) +.alicdn.com/.*\.jpg +# ||alicdn.com^*.gif$domain=htai.me (easylistchina.txt: 2070) +.alicdn.com/.*\.gif + +#ab2p-block-request-R96 +{+client-header-tagger{ab2p-block-request-R96} \ +} +# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina.txt: 3527) +.item.taobao.com #ab2p-block-request-R97 {+client-header-tagger{ab2p-block-request-R97} \ } -# ||pladform.ru^$domain=api.cybergame.tv (advblock.txt: 6227) -.pladform.ru +# /tres/recommend/*$domain=ifeng.com (easylistchina.txt: 1237) +/(.*/)?tres/recommend/.* #ab2p-block-request-R98 {+client-header-tagger{ab2p-block-request-R98} \ } -# ||gpawireservices.com/input/files/*.gif$domain=archerywire.com (easylistchina+easylist.txt: 40365) -.gpawireservices.com/input/files/.*\.gif -# ||gpawireservices.com/input/files/*.gif$domain=archerywire.com (easylist.txt: 29880) -.gpawireservices.com/input/files/.*\.gif +# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina.txt: 1133) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ +/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf +# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina.txt: 1095) +.miaozhen.com #ab2p-block-request-R99 {+client-header-tagger{ab2p-block-request-R99} \ } -# /images/partners/*$domain=argumenti.ru|fonarevka.ru|profit-maker.org (advblock.txt: 5391) -/(.*/)?images/partners/.* +# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina.txt: 1134) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ +/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) #ab2p-block-request-R100 {+client-header-tagger{ab2p-block-request-R100} \ } -# ||cloudfront.net/hot/ars.dart/$domain=arstechnica.com (easylistchina+easylist.txt: 42550) -.cloudfront.net/hot/ars\.dart/ -# ||cloudfront.net/hot/ars.dart/$domain=arstechnica.com (easylist.txt: 32065) -.cloudfront.net/hot/ars\.dart/ +# ||imgchr.com^$domain=iyejie.com (easylistchina.txt: 3453) +.imgchr.com #ab2p-block-request-R101 {+client-header-tagger{ab2p-block-request-R101} \ } -# ||patrickjames.com/images/$domain=askandyaboutclothes.com (easylistchina+easylist.txt: 44318) -.patrickjames.com/images/ -# ||patrickjames.com/images/$domain=askandyaboutclothes.com (easylist.txt: 33833) -.patrickjames.com/images/ +# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina.txt: 4392) +.riju.com/pr/ +# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina.txt: 3630) +.jpunion.com +# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1191) +/(.*/)?img/kana\.jpg +# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1190) +/(.*/)?img/disc\.jpg #ab2p-block-request-R102 {+client-header-tagger{ab2p-block-request-R102} \ } -# ||174.143.241.129^$domain=astalavista.com (easylistchina+easylist.txt: 41945) -.174.143.241.129 -# ||174.143.241.129^$domain=astalavista.com (easylist.txt: 31460) -.174.143.241.129 +# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina.txt: 4321) +.qq.com/bqq_qfpic/ #ab2p-block-request-R103 {+client-header-tagger{ab2p-block-request-R103} \ } -# ||playlist.yahoo.com/makeplaylist.dll?$domain=au.tv.yahoo.com (easylistchina+easylist.txt: 44393) -.playlist.yahoo.com/makeplaylist\.dll\? -# ||playlist.yahoo.com/makeplaylist.dll?$domain=au.tv.yahoo.com (easylist.txt: 33908) -.playlist.yahoo.com/makeplaylist\.dll\? +# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina.txt: 1132) +/(.*/)?\?age=1& #ab2p-block-request-R104 {+client-header-tagger{ab2p-block-request-R104} \ } -# ||ibsrv.net/royalpurple/$domain=audiforums.com (easylistchina+easylist.txt: 43415) -.ibsrv.net/royalpurple/ -# ||ibsrv.net/*forumsponsor$domain=audiforums.com (easylistchina+easylist.txt: 43414) -.ibsrv.net/.*forumsponsor -# ||ibsrv.net/royalpurple/$domain=audiforums.com (easylist.txt: 32930) -.ibsrv.net/royalpurple/ -# ||ibsrv.net/*forumsponsor$domain=audiforums.com (easylist.txt: 32929) -.ibsrv.net/.*forumsponsor +# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina.txt: 1187) +/(.*/)?img/.*\.gif #ab2p-block-request-R105 {+client-header-tagger{ab2p-block-request-R105} \ } -# ||augusta.com/sites/*/yca_plugin/yahoo.js$domain=augusta.com (easylistchina+easylist.txt: 42241) -.augusta.com/sites/.*/yca_plugin/yahoo\.js -# ||augusta.com/sites/*/yca_plugin/yahoo.js$domain=augusta.com (easylist.txt: 31756) -.augusta.com/sites/.*/yca_plugin/yahoo\.js +# .fancybox.$domain=life.com.tw (easylistchina.txt: 1117) +/.*\.fancybox\. +.*.fancybox.*. + +#ab2p-block-request-R106 +{+client-header-tagger{ab2p-block-request-R106} \ +} +# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina.txt: 4795) +.tietuku.com/.*\.gif + +#ab2p-block-request-R107 +{+client-header-tagger{ab2p-block-request-R107} \ +} +# ||gp.jstv.com^$domain=live.jstv.com (easylistchina.txt: 3028) +.gp.jstv.com #ab2p-block-request-R108 {+client-header-tagger{ab2p-block-request-R108} \ } -# ||bp.blogspot.com^$domain=avmimi.com (easylistchina+easylist.txt: 2311) -.bp.blogspot.com +# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina.txt: 1162) +/(.*/)?da\.aspx$ +da.aspx + +#ab2p-block-request-R109 +{+client-header-tagger{ab2p-block-request-R109} \ +} +# /js/index_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1197) +/(.*/)?js/index_ +# .com/js/l_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1114) +/.*\.com/js/l_ +.*.com/js/l_ #ab2p-block-request-R110 {+client-header-tagger{ab2p-block-request-R110} \ } -# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina+easylist.txt: 4759) -.taobaocdn.com/imgextra/ +# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina.txt: 1717) +.55.la/anonymous/banner/ #ab2p-block-request-R111 {+client-header-tagger{ab2p-block-request-R111} \ } -# ||site-rips.org^$popup,domain=backupload.net (easylistchina+easylist.txt: 47093) -.site-rips.org -# ||site-rips.org^$popup,domain=backupload.net (easylist.txt: 36608) -.site-rips.org +# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina.txt: 4131) +.pchome.com.tw/iframe/ #ab2p-block-request-R112 {+client-header-tagger{ab2p-block-request-R112} \ } -# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina+easylist.txt: 4936) -.upload.chinaz.com/20.*\.gif +# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina.txt: 3591) +.jiaoyou8.com #ab2p-block-request-R113 {+client-header-tagger{ab2p-block-request-R113} \ } -# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina+easylist.txt: 3443) -.img.china.alibaba.com/img/ibank/ - -#ab2p-block-request-R114 -{+client-header-tagger{ab2p-block-request-R114} \ -} -# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina+easylist.txt: 1156) -/(.*/)?house/images/.* +# ||picuphost.com^$domain=mmload.info (easylistchina.txt: 4195) +.picuphost.com #ab2p-block-request-R115 {+client-header-tagger{ab2p-block-request-R115} \ } -# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina+easylist.txt: 1266) -rc.sz.zj.cn/.*\.swf +# /js/adBom.js$domain=myqcloud.com (easylistchina.txt: 1195) +/(.*/)?js/adBom\.js #ab2p-block-request-R116 {+client-header-tagger{ab2p-block-request-R116} \ } -# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina+easylist.txt: 3967) -.momoshop.com.tw/league/ +# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina.txt: 5067) +.www.china.com.cn/node_ #ab2p-block-request-R117 {+client-header-tagger{ab2p-block-request-R117} \ } -# /btcclicksskyscraper.png$domain=best-bitcoin-faucet.eu|best-free-faucet.eu|bitcoin-best-faucet.eu|bitcoin-cloud.eu|bitcoin-faucet.eu|bitcoin-free-faucet.eu|free-bitcoin-faucet.eu|get-bitcoins-free.eu|get-free-bitcoin.eu|win-free-bitcoins.eu (easylistchina+easylist.txt: 41907) -/(.*/)?btcclicksskyscraper\.png -btcclicksskyscraper.png*. -# /btcclicksskyscraper.png$domain=best-bitcoin-faucet.eu|best-free-faucet.eu|bitcoin-best-faucet.eu|bitcoin-cloud.eu|bitcoin-faucet.eu|bitcoin-free-faucet.eu|free-bitcoin-faucet.eu|get-bitcoins-free.eu|get-free-bitcoin.eu|win-free-bitcoins.eu (easylist.txt: 31422) -/(.*/)?btcclicksskyscraper\.png -btcclicksskyscraper.png*. +# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina.txt: 1264) +/.*_iframe\.htm$ #ab2p-block-request-R118 {+client-header-tagger{ab2p-block-request-R118} \ } -# ||finegame.org^$popup,domain=bestreams.net (easylistchina+easylist.txt: 46132) -.finegame.org -# ||finegame.org^$popup,domain=bestreams.net (easylist.txt: 35647) -.finegame.org +# .com/tps/$domain=ocucn.com (easylistchina.txt: 1115) +/.*\.com/tps/ +.*.com/tps/ #ab2p-block-request-R119 {+client-header-tagger{ab2p-block-request-R119} \ } -# ||caphyon.com/img/press/caphyon/small-logo.png$domain=better-explorer.com (easylistchina+easylist.txt: 42457) -.caphyon.com/img/press/caphyon/small-logo\.png -# ||caphyon.com/img/press/caphyon/small-logo.png$domain=better-explorer.com (easylist.txt: 31972) -.caphyon.com/img/press/caphyon/small-logo\.png +# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina.txt: 1239) +/(.*/)?upload/gad/.* + +#ab2p-block-request-R120 +{+client-header-tagger{ab2p-block-request-R120} \ +} +# ||baidu.com^$domain=pos.baidu.com (easylistchina.txt: 2177) +.baidu.com + +#ab2p-block-request-R121 +{+client-header-tagger{ab2p-block-request-R121} \ +} +# ||imgbus.com^$domain=qiannao.com|ref.so (easylistchina.txt: 3450) +.imgbus.com #ab2p-block-request-R122 {+client-header-tagger{ab2p-block-request-R122} \ } -# /images/tuangou$domain=bjxxw.com (easylistchina+easylist.txt: 1167) -/(.*/)?images/tuangou +# /950-90.gif$domain=qire213.com (easylistchina.txt: 1131) +/(.*/)?950-90\.gif +950-90.gif*. + +#ab2p-block-request-R123 +{+client-header-tagger{ab2p-block-request-R123} \ +} +# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1253) +/(.*/)?xybgg\.gif +xybgg.gif*. +# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1189) +/(.*/)?img/br650\.gif +# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1188) +/(.*/)?img/br300\.gif + +#ab2p-block-request-R124 +{+client-header-tagger{ab2p-block-request-R124} \ +} +# ||howbbs.net^$domain=ref.so (easylistchina.txt: 3245) +.howbbs.net + +#ab2p-block-request-R125 +{+client-header-tagger{ab2p-block-request-R125} \ +} +# /afp/*$domain=scol.com.cn (easylistchina.txt: 1143) +/(.*/)?afp/.* #ab2p-block-request-R126 {+client-header-tagger{ab2p-block-request-R126} \ } -# ||amazonaws.com/digitalcinemanec.swf$domain=boxoffice.com (easylistchina+easylist.txt: 39745) -.amazonaws.com/digitalcinemanec\.swf -# ||amazonaws.com/digitalcinemanec.swf$domain=boxoffice.com (easylist.txt: 29260) -.amazonaws.com/digitalcinemanec\.swf +# /images/20$domain=sex169.info|sex169.org (easylistchina.txt: 1179) +/(.*/)?images/20 #ab2p-block-request-R127 {+client-header-tagger{ab2p-block-request-R127} \ } -# ||213.174.140.38^*/msn-*.js$domain=boyfriendtv.com|pornoxo.com (easylistchina+easylist.txt: 46231) -.213.174.140.38/.*/msn-.*\.js -# ||213.174.140.38^*/msn-*.js$domain=boyfriendtv.com|pornoxo.com (easylist.txt: 35746) -.213.174.140.38/.*/msn-.*\.js +# ||iweek.ly^$domain=share.popgo.org (easylistchina.txt: 3556) +.iweek.ly -#ab2p-block-request-R129 -{+client-header-tagger{ab2p-block-request-R129} \ +#ab2p-block-request-R128 +{+client-header-tagger{ab2p-block-request-R128} \ } -# ||85rere.com^$popup,domain=btbbt.cc (easylistchina+easylist.txt: 1048) -.85rere.com +# ||url.cn^$domain=shuajizhijia.com (easylistchina.txt: 4915) +.url.cn #ab2p-block-request-R130 {+client-header-tagger{ab2p-block-request-R130} \ } -# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina+easylist.txt: 1220) -/(.*/)?tb780x90\.gif -tb780x90.gif*. +# /ycpiframe.aspx$domain=strtv.cn (easylistchina.txt: 1254) +/(.*/)?ycpiframe\.aspx +ycpiframe.aspx*. #ab2p-block-request-R131 {+client-header-tagger{ab2p-block-request-R131} \ } -# /d125.260.gif$domain=btup.net (easylistchina+easylist.txt: 1141) -/(.*/)?d125\.260\.gif -d125.260.gif*. +# /sungg/*$domain=sun0769.com (easylistchina.txt: 1232) +/(.*/)?sungg/.* #ab2p-block-request-R132 {+client-header-tagger{ab2p-block-request-R132} \ } -# ||amazonaws.com/cdn/campaign/$domain=caclubindia.com (easylistchina+easylist.txt: 42138) -.amazonaws.com/cdn/campaign/ -# ||amazonaws.com/cdn/campaign/$domain=caclubindia.com (easylist.txt: 31653) -.amazonaws.com/cdn/campaign/ +# ||junph.cn^$domain=tiexue.net (easylistchina.txt: 3665) +.junph.cn #ab2p-block-request-R133 {+client-header-tagger{ab2p-block-request-R133} \ } -# ||imgbus.com^$domain=cao1024.com|qiannao.com|ref.so (easylistchina+easylist.txt: 3465) -.imgbus.com +# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina.txt: 5293) +.yupoo.com/3126961304/ -#ab2p-block-request-R134 -{+client-header-tagger{ab2p-block-request-R134} \ +#ab2p-block-request-R135 +{+client-header-tagger{ab2p-block-request-R135} \ } -# ||cc/banners/$domain=capricornus.cc|moonwalk.cc (advblock.txt: 5579) +# /lagou-$domain=uisdc.com (easylistchina.txt: 1203) +/(.*/)?lagou- +lagou-*. #ab2p-block-request-R136 {+client-header-tagger{ab2p-block-request-R136} \ } -# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina+easylist.txt: 1150) -/(.*/)?gamepic/.* +# /bannerpic/*$domain=uopera.net (easylistchina.txt: 1153) +/(.*/)?bannerpic/.* -#ab2p-block-request-R137 -{+client-header-tagger{ab2p-block-request-R137} \ +#ab2p-block-request-R138 +{+client-header-tagger{ab2p-block-request-R138} \ } -# ||alidw.net^$domain=cbs.com (easylistchina+easylist.txt: 46075) -.alidw.net -# ||ailde.com^$domain=cbs.com (easylistchina+easylist.txt: 46074) -.ailde.com -# /ailde.$domain=cbs.com (easylistchina+easylist.txt: 46072) -/(.*/)?ailde\. -ailde.*. -# ||doubleclick.net/gampad/ads?*^vpos^$domain=cbs.com (easylistchina+easylist.txt: 42797) -.doubleclick.net/gampad/ads\?.*[^\w%.-]vpos[^\w%.-] -# ||alidw.net^$domain=cbs.com (easylist.txt: 35590) -.alidw.net -# ||ailde.com^$domain=cbs.com (easylist.txt: 35589) -.ailde.com -# /ailde.$domain=cbs.com (easylist.txt: 35587) -/(.*/)?ailde\. -ailde.*. -# ||doubleclick.net/gampad/ads?*^vpos^$domain=cbs.com (easylist.txt: 32312) -.doubleclick.net/gampad/ads\?.*[^\w%.-]vpos[^\w%.-] +# /assets/sidebar/*$domain=v2ex.com (easylistchina.txt: 1145) +/(.*/)?assets/sidebar/.* #ab2p-block-request-R139 {+client-header-tagger{ab2p-block-request-R139} \ } -# ||adm.fwmrm.net/crossdomain.xml$domain=cc.com|mtv.com (easylistchina+easylist.txt: 35045) -.adm.fwmrm.net/crossdomain\.xml -# ||adm.fwmrm.net/crossdomain.xml$domain=cc.com|mtv.com (easylist.txt: 24560) -.adm.fwmrm.net/crossdomain\.xml +# ||alicdn.com^$domain=wangyueblog.com|xiadele.com|xm9x.net (easylistchina.txt: 2069) +.alicdn.com #ab2p-block-request-R140 {+client-header-tagger{ab2p-block-request-R140} \ } -# ||duapp.com^$domain=ccav1.com (easylistchina+easylist.txt: 2745) -.duapp.com +# ||imgur.com^$domain=wgun.net (easylistchina.txt: 3467) +.imgur.com + +#ab2p-block-request-R141 +{+client-header-tagger{ab2p-block-request-R141} \ +} +# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina.txt: 4914) +.uploadhouse.com/.*\.gif + +#ab2p-block-request-R142 +{+client-header-tagger{ab2p-block-request-R142} \ +} +# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina.txt: 1246) +/(.*/)?wp-content/uploads/.*vpn +# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina.txt: 1245) +/(.*/)?wp-content/uploads/.*hidemyass +# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina.txt: 1244) +/(.*/)?Webbanner_ +# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina.txt: 1137) +/(.*/)?ad_nydus\.png + +#ab2p-block-request-R143 +{+client-header-tagger{ab2p-block-request-R143} \ +} +# /attachment/album/*$domain=www.52hardware.com (easylistchina.txt: 1148) +/(.*/)?attachment/album/.* #ab2p-block-request-R144 {+client-header-tagger{ab2p-block-request-R144} \ } -# ||aliimg.com^$domain=chem21.info (advblock.txt: 5462) -.aliimg.com - -#ab2p-block-request-R145 -{+client-header-tagger{ab2p-block-request-R145} \ -} -# |http://*/bn/$domain=chimatong.com (easylistchina+easylist.txt: 1262) -/(.*/)?bn/ +# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina.txt: 5407) +.zsg.kimi.com.tw +# .html|$domain=www.gamer.com.tw (easylistchina.txt: 1119) +/.*\.html$ +.*.html #ab2p-block-request-R146 {+client-header-tagger{ab2p-block-request-R146} \ } -# /sda/*$domain=chineseinla.com (easylistchina+easylist.txt: 1210) -/(.*/)?sda/.* -# /images/content/1436/*$domain=chineseinla.com (easylistchina+easylist.txt: 1165) -/(.*/)?images/content/1436/.* +# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina.txt: 3420) +.img*./.*\.itiexue\.net/2.*\.gif +.img*.itiexue.net/2.*\.gif #ab2p-block-request-R147 {+client-header-tagger{ab2p-block-request-R147} \ } -# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina+easylist.txt: 5302) -.youtube.com/embed/.*&autoplay=1& +# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1108) +.xmds.opd2c.com +# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1097) +.moezone.taobao.com +# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1073) +.acgpost.taobao.com +# /item.htm?$popup,domain=www.tsdm.net (easylistchina.txt: 1063) +/(.*/)?item\.htm\? #ab2p-block-request-R148 {+client-header-tagger{ab2p-block-request-R148} \ } -# ||cloudfront.net/pop?$domain=clipconverter.cc (easylistchina+easylist.txt: 42551) -.cloudfront.net/pop\? -# ||cloudfront.net/pop?$domain=clipconverter.cc (easylist.txt: 32066) -.cloudfront.net/pop\? +# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina.txt: 5311) +.yytcdn.com/swf/plugins_new\.xml\? #ab2p-block-request-R149 {+client-header-tagger{ab2p-block-request-R149} \ } -# ||images-amazon.com^$domain=cloudfront.net (easylistchina+easylist.txt: 40426) -.images-amazon.com -# ||images-amazon.com^$domain=cloudfront.net (easylist.txt: 29941) -.images-amazon.com +# /r/video/*$domain=youxi.baidu.com (easylistchina.txt: 1223) +/(.*/)?r/video/.* + +#ab2p-block-request-R150 +{+client-header-tagger{ab2p-block-request-R150} \ +} +# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina.txt: 3021) +.googleusercontent.com/.*=w800-h352-no + +#ab2p-block-request-R151 +{+client-header-tagger{ab2p-block-request-R151} \ +} +# ||srcdd.com^$domain=zasv.com (easylistchina.txt: 4650) +.srcdd.com #ab2p-block-request-R152 {+client-header-tagger{ab2p-block-request-R152} \ } -# ||wp.com^*/coedmagazine3/gads/$domain=coedmagazine.com (easylistchina+easylist.txt: 45656) -.wp.com/.*/coedmagazine3/gads/ -# ||wp.com^*/linkwidgets/$domain=coedmagazine.com (easylistchina+easylist.txt: 41198) -.wp.com/.*/linkwidgets/ -# ||wp.com^*/coedmagazine3/gads/$domain=coedmagazine.com (easylist.txt: 35171) -.wp.com/.*/coedmagazine3/gads/ -# ||wp.com^*/linkwidgets/$domain=coedmagazine.com (easylist.txt: 30713) -.wp.com/.*/linkwidgets/ - -#ab2p-block-request-R153 -{+client-header-tagger{ab2p-block-request-R153} \ -} -# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina+easylist.txt: 4888) -.tw.partner.buy.yahoo.com - -#ab2p-block-request-R154 -{+client-header-tagger{ab2p-block-request-R154} \ -} -# ||yolasite.com/resources/$domain=coolsport.tv (easylistchina+easylist.txt: 45761) -.yolasite.com/resources/ -# ||yolasite.com/resources/$domain=coolsport.tv (easylist.txt: 35276) -.yolasite.com/resources/ - -#ab2p-block-request-R155 -{+client-header-tagger{ab2p-block-request-R155} \ -} -# .com/b?z=$domain=couchtuner.eu|zzstream.li (easylistchina+easylist.txt: 41896) -/.*\.com/b\?z= -.*.com/b\?z= -# .com/b?z=$domain=couchtuner.eu|zzstream.li (easylist.txt: 31411) -/.*\.com/b\?z= -.*.com/b\?z= - -#ab2p-block-request-R156 -{+client-header-tagger{ab2p-block-request-R156} \ -} -# ||imgur.com/i2iBMaD.gif$domain=cpahero.com (easylistchina+easylist.txt: 43480) -.imgur.com/i2iBMaD\.gif -# ||imgur.com/i2iBMaD.gif$domain=cpahero.com (easylist.txt: 32995) -.imgur.com/i2iBMaD\.gif - -#ab2p-block-request-R157 -{+client-header-tagger{ab2p-block-request-R157} \ -} -# /assets/images/banner$domain=cpbl.com.tw (easylistchina+easylist.txt: 1123) -/(.*/)?assets/images/banner - -#ab2p-block-request-R159 -{+client-header-tagger{ab2p-block-request-R159} \ -} -# ||lylebarn.com/crashwidget/$domain=crash.net (easylistchina+easylist.txt: 40561) -.lylebarn.com/crashwidget/ -# ||lylebarn.com/crashwidget/$domain=crash.net (easylist.txt: 30076) -.lylebarn.com/crashwidget/ - -#ab2p-block-request-R160 -{+client-header-tagger{ab2p-block-request-R160} \ -} -# /files/!modules/*$domain=crazys.info|ucrazy.ru (advblock.txt: 5382) -/(.*/)?files/!modules/.* - -#ab2p-block-request-R161 -{+client-header-tagger{ab2p-block-request-R161} \ -} -# ||amazonaws.com/newscloud-production/*/backgrounds/$domain=crescent-news.com|daily-jeff.com|recordpub.com|state-journal.com|the-daily-record.com|the-review.com|times-gazette.com (easylistchina+easylist.txt: 39749) -.amazonaws.com/newscloud-production/.*/backgrounds/ -# ||amazonaws.com/newscloud-production/*/backgrounds/$domain=crescent-news.com|daily-jeff.com|recordpub.com|state-journal.com|the-daily-record.com|the-review.com|times-gazette.com (easylist.txt: 29264) -.amazonaws.com/newscloud-production/.*/backgrounds/ - -#ab2p-block-request-R162 -{+client-header-tagger{ab2p-block-request-R162} \ -} -# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina+easylist.txt: 1135) -/(.*/)?biz_icon/.* - -#ab2p-block-request-R163 -{+client-header-tagger{ab2p-block-request-R163} \ -} -# ||akamaihd.net/preroll*.mp4?$domain=csnnw.com (easylistchina+easylist.txt: 39725) -.akamaihd.net/preroll.*\.mp4\? -# ||akamaihd.net/preroll*.mp4?$domain=csnnw.com (easylist.txt: 29240) -.akamaihd.net/preroll.*\.mp4\? - -#ab2p-block-request-R164 -{+client-header-tagger{ab2p-block-request-R164} \ -} -# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina+easylist.txt: 4376) -.rakuten-static.com -# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina+easylist.txt: 4194) -.pic.pimg.tw/cwyuni/.*\.gif\?v= - -#ab2p-block-request-R168 -{+client-header-tagger{ab2p-block-request-R168} \ -} -# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina+easylist.txt: 4597) -.sinaimg.cn/mw1024/6283e.*\.jpg -# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina+easylist.txt: 4013) -.mygeek.cn/pic_ - -#ab2p-block-request-R169 -{+client-header-tagger{ab2p-block-request-R169} \ -} -# ||screenshot.ru^$domain=darkmoney.cc (advblock.txt: 6378) -.screenshot.ru - -#ab2p-block-request-R170 -{+client-header-tagger{ab2p-block-request-R170} \ -} -# ||bangstage.com^$popup,domain=datacloud.to (easylistchina+easylist.txt: 46113) -.bangstage.com -# ||bangstage.com^$popup,domain=datacloud.to (easylist.txt: 35628) -.bangstage.com - -#ab2p-block-request-R172 -{+client-header-tagger{ab2p-block-request-R172} \ -} -# ||fuzface.com/dcrtv/ad$domain=dcrtv.com (easylistchina+easylist.txt: 43136) -.fuzface.com/dcrtv/ad -# ||fuzface.com/dcrtv/ad$domain=dcrtv.com (easylist.txt: 32651) -.fuzface.com/dcrtv/ad - -#ab2p-block-request-R173 -{+client-header-tagger{ab2p-block-request-R173} \ -} -# ||b117f8da23446a91387efea0e428392a.pl^$domain=ddlvalley.net (easylistchina+easylist.txt: 39800) -.b117f8da23446a91387efea0e428392a.pl -# ||b117f8da23446a91387efea0e428392a.pl^$domain=ddlvalley.net (easylist.txt: 29315) -.b117f8da23446a91387efea0e428392a.pl - -#ab2p-block-request-R174 -{+client-header-tagger{ab2p-block-request-R174} \ -} -# /assets/_takeover/*$domain=deadspin.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com (easylistchina+easylist.txt: 41906) -/(.*/)?assets/_takeover/.* -# /assets/_takeover/*$domain=deadspin.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com (easylist.txt: 31421) -/(.*/)?assets/_takeover/.* - -#ab2p-block-request-R175 -{+client-header-tagger{ab2p-block-request-R175} \ -} -# ||cloudfront.net^*/shaadi.com/$domain=deccanchronicle.com (easylistchina+easylist.txt: 42552) -.cloudfront.net/.*/shaadi\.com/ -# ||cloudfront.net^*/shaadi.com/$domain=deccanchronicle.com (easylist.txt: 32067) -.cloudfront.net/.*/shaadi\.com/ - -#ab2p-block-request-R176 -{+client-header-tagger{ab2p-block-request-R176} \ -} -# ||zmovie.tv^$popup,domain=deditv.com|vidbox.net (easylistchina+easylist.txt: 46219) -.zmovie.tv -# ||zmovie.tv^$popup,domain=deditv.com|vidbox.net (easylist.txt: 35734) -.zmovie.tv - -#ab2p-block-request-R178 -{+client-header-tagger{ab2p-block-request-R178} \ -} -# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina+easylist.txt: 1271) -.005.tv/data/attachment/forum/.*\.gif - -#ab2p-block-request-R179 -{+client-header-tagger{ab2p-block-request-R179} \ -} -# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina+easylist.txt: 1120) -/(.*/)?aeiou/.* - -#ab2p-block-request-R180 -{+client-header-tagger{ab2p-block-request-R180} \ -} -# ||photobucket.com/albums/cc94/dl4all/temp/enginesong.gif$domain=dl4all.com (easylistchina+easylist.txt: 44357) -.photobucket.com/albums/cc94/dl4all/temp/enginesong\.gif -# ||photobucket.com/albums/cc94/dl4all/temp/enginesong.gif$domain=dl4all.com (easylist.txt: 33872) -.photobucket.com/albums/cc94/dl4all/temp/enginesong\.gif - -#ab2p-block-request-R181 -{+client-header-tagger{ab2p-block-request-R181} \ -} -# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina+easylist.txt: 1236) -/(.*/)?wxhfm\.html -wxhfm.html*. -# /wxh.js$domain=dm5.com|dm5.hk (easylistchina+easylist.txt: 1235) -/(.*/)?wxh\.js -wxh.js*. - -#ab2p-block-request-R182 -{+client-header-tagger{ab2p-block-request-R182} \ -} -# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina+easylist.txt: 4761) -.taobaocdn.com - -#ab2p-block-request-R183 -{+client-header-tagger{ab2p-block-request-R183} \ -} -# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina+easylist.txt: 1132) -/(.*/)?banner/.* - -#ab2p-block-request-R184 -{+client-header-tagger{ab2p-block-request-R184} \ -} -# ||1.baidu.com^$popup,domain=douban.com (easylistchina+easylist.txt: 1046) -.1.baidu.com - -#ab2p-block-request-R186 -{+client-header-tagger{ab2p-block-request-R186} \ -} -# ||servebeer.com^$domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylistchina+easylist.txt: 46088) -.servebeer.com -# ||servebeer.com^$domain=dsero.com|korean-candy.com|misheel.net|politicususa.com|techydoor.com|trutower.com (easylist.txt: 35603) -.servebeer.com - -#ab2p-block-request-R187 -{+client-header-tagger{ab2p-block-request-R187} \ -} -# /static/media/curl.swf$domain=duba.com (easylistchina+easylist.txt: 1217) -/(.*/)?static/media/curl\.swf - -#ab2p-block-request-R188 -{+client-header-tagger{ab2p-block-request-R188} \ -} -# |http:$domain=e.70e.com|e701.net (easylistchina+easylist.txt: 1253) - -#ab2p-block-request-R189 -{+client-header-tagger{ab2p-block-request-R189} \ -} -# //rs.mail.ru/b$domain=e.mail.ru (advblock.txt: 6806) -rs.mail.ru/b - -#ab2p-block-request-R191 -{+client-header-tagger{ab2p-block-request-R191} \ -} -# ||adriver.ru/cgi-bin/click.$popup,domain=edinstvennaya.ua|gazeta.ua (advblock.txt: 113) -.adriver.ru/cgi-bin/click\. - -#ab2p-block-request-R192 -{+client-header-tagger{ab2p-block-request-R192} \ -} -# ||rackcdn.com/banner/$domain=enjore.com (easylistchina+easylist.txt: 40819) -.rackcdn.com/banner/ -# ||rackcdn.com/banner/$domain=enjore.com (easylist.txt: 30334) -.rackcdn.com/banner/ - -#ab2p-block-request-R193 -{+client-header-tagger{ab2p-block-request-R193} \ -} -# ||amazonaws.com^*MPU%20Banner.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42146) -.amazonaws.com/.*MPU%20Banner\.jpg -# ||amazonaws.com^*-Banner.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42144) -.amazonaws.com/.*-Banner\.jpg -# ||amazonaws.com^*-ad.jpg$domain=ewn.co.za (easylistchina+easylist.txt: 42143) -.amazonaws.com/.*-ad\.jpg -# ||amazonaws.com^*MPU%20Banner.jpg$domain=ewn.co.za (easylist.txt: 31661) -.amazonaws.com/.*MPU%20Banner\.jpg -# ||amazonaws.com^*-Banner.jpg$domain=ewn.co.za (easylist.txt: 31659) -.amazonaws.com/.*-Banner\.jpg -# ||amazonaws.com^*-ad.jpg$domain=ewn.co.za (easylist.txt: 31658) -.amazonaws.com/.*-ad\.jpg - -#ab2p-block-request-R194 -{+client-header-tagger{ab2p-block-request-R194} \ -} -# ^utm_source=$popup,domain=exashare.com|sex.com|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 46103) -/(.*[^\w%.-])?utm_source= -# ^utm_source=$popup,domain=exashare.com|sex.com|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 35618) -/(.*[^\w%.-])?utm_source= - -#ab2p-block-request-R197 -{+client-header-tagger{ab2p-block-request-R197} \ -} -# .xyz^$domain=extremetech.com (easylistchina+easylist.txt: 41901) -/.*\.xyz[^\w%.-] -.*.xyz -# .xyz^$domain=extremetech.com (easylist.txt: 31416) -/.*\.xyz[^\w%.-] -.*.xyz - -#ab2p-block-request-R198 -{+client-header-tagger{ab2p-block-request-R198} \ -} -# ||rackcdn.com^$popup,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47092) -.rackcdn.com -# ||rackcdn.com^$popup,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36607) -.rackcdn.com - -#ab2p-block-request-R754t -{+client-header-tagger{ab2p-block-request-R754t} \ -} -# |http://*?*^id^$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47070) -/.*\?.*[^\w%.-]id[^\w%.-] -# |http://*?*=$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47069) -/.*\?.*= -# |http://*?*^id^$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36585) -/.*\?.*[^\w%.-]id[^\w%.-] -# |http://*?*=$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36584) -/.*\?.*= - -#ab2p-block-request-R200 -{+client-header-tagger{ab2p-block-request-R200} \ -} -# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina+easylist.txt: 1145) -/(.*/)?EZ-YAHOO/.* - -#ab2p-block-request-R201 -{+client-header-tagger{ab2p-block-request-R201} \ -} -# ||onlytrailer.ru/embed/$domain=f-picture.net|filmasik.net|radikal.ru (advblock.txt: 6179) -.onlytrailer.ru/embed/ - -#ab2p-block-request-R202 -{+client-header-tagger{ab2p-block-request-R202} \ -} -# ||fbcdn.net^*/flyers/$domain=facebook.com (easylistchina+easylist.txt: 42971) -.fbcdn.net/.*/flyers/ -# ||fbcdn.net^*/flyers/$domain=facebook.com (easylist.txt: 32486) -.fbcdn.net/.*/flyers/ - -#ab2p-block-request-R203 -{+client-header-tagger{ab2p-block-request-R203} \ -} -# /pagead/*$domain=fankudo.com (easylistchina+easylist.txt: 1206) -/(.*/)?pagead/.* - -#ab2p-block-request-R204 -{+client-header-tagger{ab2p-block-request-R204} \ -} -# ||mediaspanonline.com^*_Background.$domain=farmingshow.com (easylistchina+easylist.txt: 43924) -.mediaspanonline.com/.*_Background\. -# ||mediaspanonline.com^*_Background.$domain=farmingshow.com (easylist.txt: 33439) -.mediaspanonline.com/.*_Background\. - -#ab2p-block-request-R205 -{+client-header-tagger{ab2p-block-request-R205} \ -} -# ||mediaspanonline.com^*_Background_$domain=farmingshow.com|radiosport.co.nz (easylistchina+easylist.txt: 43925) -.mediaspanonline.com/.*_Background_ -# ||mediaspanonline.com^*_Background_$domain=farmingshow.com|radiosport.co.nz (easylist.txt: 33440) -.mediaspanonline.com/.*_Background_ - -#ab2p-block-request-R206 -{+client-header-tagger{ab2p-block-request-R206} \ -} -# ||ruralpressevents.com/agquip/logos/$domain=farmonline.com.au (easylistchina+easylist.txt: 40860) -.ruralpressevents.com/agquip/logos/ -# ||ruralpressevents.com/agquip/logos/$domain=farmonline.com.au (easylist.txt: 30375) -.ruralpressevents.com/agquip/logos/ - -#ab2p-block-request-R207 -{+client-header-tagger{ab2p-block-request-R207} \ -} -# ||bit.ly^$popup,domain=fastvideo.eu|rapidvideo.org|sh.st (easylistchina+easylist.txt: 46115) -.bit.ly -# ||bit.ly^$popup,domain=fastvideo.eu|rapidvideo.org|sh.st (easylist.txt: 35630) -.bit.ly - -#ab2p-block-request-R208 -{+client-header-tagger{ab2p-block-request-R208} \ -} -# ||cityads.ru/click-$popup,domain=fayloobmennik.net|lovekinozal.ru|rusfolder.com|rutor.org (advblock.txt: 130) -.cityads.ru/click- - -#ab2p-block-request-R209 -{+client-header-tagger{ab2p-block-request-R209} \ -} -# ||cloudfront.net^*banner$domain=fiaformulae.com (easylistchina+easylist.txt: 39972) -.cloudfront.net/.*banner -# ||cloudfront.net^*ad$domain=fiaformulae.com (easylistchina+easylist.txt: 39971) -.cloudfront.net/.*ad -# ||cloudfront.net^*banner$domain=fiaformulae.com (easylist.txt: 29487) -.cloudfront.net/.*banner -# ||cloudfront.net^*ad$domain=fiaformulae.com (easylist.txt: 29486) -.cloudfront.net/.*ad - -#ab2p-block-request-R210 -{+client-header-tagger{ab2p-block-request-R210} \ -} -# ||leaderdownload.com^$popup,domain=fiberupload.net (easylistchina+easylist.txt: 46162) -.leaderdownload.com -# ||leaderdownload.com^$popup,domain=fiberupload.net (easylist.txt: 35677) -.leaderdownload.com - -#ab2p-block-request-R211 -{+client-header-tagger{ab2p-block-request-R211} \ -} -# ||74.86.208.249^$domain=fijivillage.com (easylistchina+easylist.txt: 41988) -.74.86.208.249 -# ||74.86.208.249^$domain=fijivillage.com (easylist.txt: 31503) -.74.86.208.249 - -#ab2p-block-request-R212 -{+client-header-tagger{ab2p-block-request-R212} \ -} -# ||kalemaro.com^$popup,domain=filatak.com (easylistchina+easylist.txt: 46161) -.kalemaro.com -# ||kalemaro.com^$popup,domain=filatak.com (easylist.txt: 35676) -.kalemaro.com - -#ab2p-block-request-R213 -{+client-header-tagger{ab2p-block-request-R213} \ -} -# ||109.236.82.94^$domain=fileforever.net (easylistchina+easylist.txt: 41938) -.109.236.82.94 -# ||109.236.82.94^$domain=fileforever.net (easylist.txt: 31453) -.109.236.82.94 - -#ab2p-block-request-R214 -{+client-header-tagger{ab2p-block-request-R214} \ -} -# ||moevideo.net/framevideo/$domain=fileplaneta.com|freezpic.ru|mediapapa.org (advblock.txt: 6076) -.moevideo.net/framevideo/ - -#ab2p-block-request-R215 -{+client-header-tagger{ab2p-block-request-R215} \ -} -# ||itunes.apple.com^$popup,domain=fillinn.com (easylistchina+easylist.txt: 41308) -.itunes.apple.com -# ||itunes.apple.com^$popup,domain=fillinn.com (easylist.txt: 30823) -.itunes.apple.com - -#ab2p-block-request-R216 -{+client-header-tagger{ab2p-block-request-R216} \ -} -# ||photo4sell.com^$popup,domain=filmovizija.com (easylistchina+easylist.txt: 46174) -.photo4sell.com -# ||217.79.184.79^$domain=filmovizija.com (easylistchina+easylist.txt: 41958) -.217.79.184.79 -# ||photo4sell.com^$popup,domain=filmovizija.com (easylist.txt: 35689) -.photo4sell.com -# ||217.79.184.79^$domain=filmovizija.com (easylist.txt: 31473) -.217.79.184.79 - -#ab2p-block-request-R218 -{+client-header-tagger{ab2p-block-request-R218} \ -} -# ||ancestrydata.com/widget.html?$domain=findagrave.com (easylistchina+easylist.txt: 39761) -.ancestrydata.com/widget\.html\? -# ||ancestrydata.com/widget.html?$domain=findagrave.com (easylist.txt: 29276) -.ancestrydata.com/widget\.html\? - -#ab2p-block-request-R220 -{+client-header-tagger{ab2p-block-request-R220} \ -} -# ||ad.adriver.ru^$domain=firstrownow.eu|kyivpost.com|uatoday.tv|unian.info (easylistchina+easylist.txt: 39624) -.ad.adriver.ru -# ||ad.adriver.ru^$domain=firstrownow.eu|kyivpost.com|uatoday.tv|unian.info (easylist.txt: 29139) -.ad.adriver.ru - -#ab2p-block-request-R221 -{+client-header-tagger{ab2p-block-request-R221} \ -} -# |http://li.ru/go?$popup,domain=fishki.net (advblock.txt: 29) -li.ru/go\? - -#ab2p-block-request-R222 -{+client-header-tagger{ab2p-block-request-R222} \ -} -# ||vibeo.to^$popup,domain=flashx.tv (easylistchina+easylist.txt: 46204) -.vibeo.to -# ||free-stream.tv^$popup,domain=flashx.tv (easylistchina+easylist.txt: 46138) -.free-stream.tv -# ||vibeo.to^$popup,domain=flashx.tv (easylist.txt: 35719) -.vibeo.to -# ||free-stream.tv^$popup,domain=flashx.tv (easylist.txt: 35653) -.free-stream.tv - -#ab2p-block-request-R223 -{+client-header-tagger{ab2p-block-request-R223} \ -} -# ||k.youku.com^$domain=flvcd.com (easylistchina+easylist.txt: 3698) -.k.youku.com - -#ab2p-block-request-R225 -{+client-header-tagger{ab2p-block-request-R225} \ -} -# ||rq.adfox.ru^$domain=fontanka.ru (advblock.txt: 6325) -.rq.adfox.ru - -#ab2p-block-request-R226 -{+client-header-tagger{ab2p-block-request-R226} \ -} -# /upload/rk/*$domain=footballreview.ru|innov.ru|newkaliningrad.ru|seonews.ru (advblock.txt: 5400) -/(.*/)?upload/rk/.* - -#ab2p-block-request-R227 -{+client-header-tagger{ab2p-block-request-R227} \ -} -# ||srvv.co^$domain=foreverceleb.com (easylistchina+easylist.txt: 40961) -.srvv.co -# ||srvv.co^$domain=foreverceleb.com (easylist.txt: 30476) -.srvv.co - -#ab2p-block-request-R228 -{+client-header-tagger{ab2p-block-request-R228} \ -} -# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina+easylist.txt: 2486) -.cj.qidian.com/Picture/ - -#ab2p-block-request-R232 -{+client-header-tagger{ab2p-block-request-R232} \ -} -# ||ruorange.org^$popup,domain=freezpic.ru (advblock.txt: 173) -.ruorange.org - -#ab2p-block-request-R233 -{+client-header-tagger{ab2p-block-request-R233} \ -} -# ||pik-tv.com/embed/$domain=freshrecords.ru (advblock.txt: 6215) -.pik-tv.com/embed/ - -#ab2p-block-request-R236 -{+client-header-tagger{ab2p-block-request-R236} \ -} -# ||thebestbookies.com^$popup,domain=f谋rstrowsports.eu (easylistchina+easylist.txt: 46190) -.thebestbookies.com -# ||thebestbookies.com^$popup,domain=f谋rstrowsports.eu (easylist.txt: 35705) -.thebestbookies.com - -#ab2p-block-request-R237 -{+client-header-tagger{ab2p-block-request-R237} \ -} -# /static/banners/*$domain=gagadget.com|maxpark.com|vse-sto.com.ua (advblock.txt: 5397) -/(.*/)?static/banners/.* - -#ab2p-block-request-R238 -{+client-header-tagger{ab2p-block-request-R238} \ -} -# /jquery.$domain=game.macx.cn (easylistchina+easylist.txt: 1176) -/(.*/)?jquery\. -jquery.*. - -#ab2p-block-request-R239 -{+client-header-tagger{ab2p-block-request-R239} \ -} -# /web/ad/*$domain=gamer.com.tw (easylistchina+easylist.txt: 1229) -/(.*/)?web/ad/.* - -#ab2p-block-request-R242 -{+client-header-tagger{ab2p-block-request-R242} \ -} -# ||captchaad.com/captchaad.js$domain=gca.sh (easylistchina+easylist.txt: 42462) -.captchaad.com/captchaad\.js -# ||captchaad.com/captchaad.js$domain=gca.sh (easylist.txt: 31977) -.captchaad.com/captchaad\.js - -#ab2p-block-request-R243 -{+client-header-tagger{ab2p-block-request-R243} \ -} -# ||4548621445004054774f0039660873e9ae60d8fb.googledrive.com^$domain=gearshout.net (advblock.txt: 5434) -.4548621445004054774f0039660873e9ae60d8fb.googledrive.com - -#ab2p-block-request-R244 -{+client-header-tagger{ab2p-block-request-R244} \ -} -# /marketing/cover/*$domain=geekpark.net (easylistchina+easylist.txt: 1188) -/(.*/)?marketing/cover/.* - -#ab2p-block-request-R245 -{+client-header-tagger{ab2p-block-request-R245} \ -} -# ||thedoujin.com^$domain=gelbooru.com (easylistchina+easylist.txt: 46922) -.thedoujin.com -# ||twitch.tv/widgets/live_embed_player.swf$domain=gelbooru.com (easylistchina+easylist.txt: 45298) -.twitch.tv/widgets/live_embed_player\.swf -# ||thedoujin.com^$domain=gelbooru.com (easylist.txt: 36437) -.thedoujin.com -# ||twitch.tv/widgets/live_embed_player.swf$domain=gelbooru.com (easylist.txt: 34813) -.twitch.tv/widgets/live_embed_player\.swf - -#ab2p-block-request-R246 -{+client-header-tagger{ab2p-block-request-R246} \ -} -# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina+easylist.txt: 3490) -.info.lm.tv.sohu.com - -#ab2p-block-request-R247 -{+client-header-tagger{ab2p-block-request-R247} \ -} -# ||wordpress.com^*/amazon2-center-top.$domain=gigaom.com (easylistchina+easylist.txt: 45632) -.wordpress.com/.*/amazon2-center-top\. -# ||wordpress.com^*/amazon2-center-top.$domain=gigaom.com (easylist.txt: 35147) -.wordpress.com/.*/amazon2-center-top\. - -#ab2p-block-request-R250 -{+client-header-tagger{ab2p-block-request-R250} \ -} -# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina+easylist.txt: 4856) -.top.taobao.com/interface_v2\.php\? - -#ab2p-block-request-R251 -{+client-header-tagger{ab2p-block-request-R251} \ -} -# ||dropbox.com^*/aff-resources/$domain=gramfeed.com (easylistchina+easylist.txt: 40179) -.dropbox.com/.*/aff-resources/ -# ||dropbox.com^*/aff-resources/$domain=gramfeed.com (easylist.txt: 29694) -.dropbox.com/.*/aff-resources/ - -#ab2p-block-request-R252 -{+client-header-tagger{ab2p-block-request-R252} \ -} -# ||megaswf.com/file/$domain=gruntig.net (easylistchina+easylist.txt: 43936) -.megaswf.com/file/ -# ||gruntig2008.opendrive.com^$domain=gruntig.net (easylistchina+easylist.txt: 43278) -.gruntig2008.opendrive.com -# ||megaswf.com/file/$domain=gruntig.net (easylist.txt: 33451) -.megaswf.com/file/ -# ||gruntig2008.opendrive.com^$domain=gruntig.net (easylist.txt: 32793) -.gruntig2008.opendrive.com - -#ab2p-block-request-R253 -{+client-header-tagger{ab2p-block-request-R253} \ -} -# ||amazonaws.com/banner/$domain=gserp.com (easylistchina+easylist.txt: 39741) -.amazonaws.com/banner/ -# ||amazonaws.com/banner/$domain=gserp.com (easylist.txt: 29256) -.amazonaws.com/banner/ - -#ab2p-block-request-R254 -{+client-header-tagger{ab2p-block-request-R254} \ -} -# /bao/uploaded/*$domain=hacg.lol (easylistchina+easylist.txt: 1134) -/(.*/)?bao/uploaded/.* - -#ab2p-block-request-R255 -{+client-header-tagger{ab2p-block-request-R255} \ -} -# ||rackcdn.com^*/banners/$domain=hanime.tv (easylistchina+easylist.txt: 46823) -.rackcdn.com/.*/banners/ -# ||rackcdn.com^*/banners/$domain=hanime.tv (easylist.txt: 36338) -.rackcdn.com/.*/banners/ - -#ab2p-block-request-R256 -{+client-header-tagger{ab2p-block-request-R256} \ -} -# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina+easylist.txt: 1163) -/(.*/)?Images/ak47/.* - -#ab2p-block-request-R257 -{+client-header-tagger{ab2p-block-request-R257} \ -} -# ||amazonaws.com/kbnetworkz/$domain=hardforum.com (easylistchina+easylist.txt: 42141) -.amazonaws.com/kbnetworkz/ -# ||amazonaws.com/kbnetworkz/$domain=hardforum.com (easylist.txt: 31656) -.amazonaws.com/kbnetworkz/ - -#ab2p-block-request-R259 -{+client-header-tagger{ab2p-block-request-R259} \ -} -# ||tracker.hdclub.com.ua/dox/$domain=hdclub.org|tracker.hdclub.com.ua (advblock.txt: 6484) -.tracker.hdclub.com.ua/dox/ - -#ab2p-block-request-R260 -{+client-header-tagger{ab2p-block-request-R260} \ -} -# ||rackcdn.com^$domain=hdkinomax.com (advblock.txt: 6284) -.rackcdn.com - -#ab2p-block-request-R261 -{+client-header-tagger{ab2p-block-request-R261} \ -} -# ||51img1.com^$domain=hdscg.com|v8gay.com (easylistchina+easylist.txt: 1669) -.51img1.com - -#ab2p-block-request-R262 -{+client-header-tagger{ab2p-block-request-R262} \ -} -# ||youtube.com^$domain=help2play.com|otvetes.com|vkonagt.com (advblock.txt: 208) -.youtube.com - -#ab2p-block-request-R263 -{+client-header-tagger{ab2p-block-request-R263} \ -} -# ||xldytt.com^$popup,domain=henbt.com (easylistchina+easylist.txt: 1083) -.xldytt.com - -#ab2p-block-request-R264 -{+client-header-tagger{ab2p-block-request-R264} \ -} -# ||avetirus.ru^$domain=hentaiz.org (advblock.txt: 5518) -.avetirus.ru - -#ab2p-block-request-R265 -{+client-header-tagger{ab2p-block-request-R265} \ -} -# ||watchclip.tv^$popup,domain=hipfile.com (easylistchina+easylist.txt: 46210) -.watchclip.tv -# ||watchclip.tv^$popup,domain=hipfile.com (easylist.txt: 35725) -.watchclip.tv - -#ab2p-block-request-R267 -{+client-header-tagger{ab2p-block-request-R267} \ -} -# /nfs/ad/*$domain=hkbici.com (easylistchina+easylist.txt: 1201) -/(.*/)?nfs/ad/.* -# /attachment/ad/*$domain=hkbici.com (easylistchina+easylist.txt: 1126) -/(.*/)?attachment/ad/.* - -#ab2p-block-request-R268 -{+client-header-tagger{ab2p-block-request-R268} \ -} -# ||megalife.com.hk^$domain=hkgolden.com (easylistchina+easylist.txt: 3925) -.megalife.com.hk - -#ab2p-block-request-R271 -{+client-header-tagger{ab2p-block-request-R271} \ -} -# ||alicdn.com^*.jpg$domain=htai.me (easylistchina+easylist.txt: 2081) -.alicdn.com/.*\.jpg -# ||alicdn.com^*.gif$domain=htai.me (easylistchina+easylist.txt: 2080) -.alicdn.com/.*\.gif - -#ab2p-block-request-R272 -{+client-header-tagger{ab2p-block-request-R272} \ -} -# ||google.com.eg/url?$popup,domain=hulkload.com (easylistchina+easylist.txt: 46147) -.google.com.eg/url\? -# ||google.com.eg/url?$popup,domain=hulkload.com (easylist.txt: 35662) -.google.com.eg/url\? - -#ab2p-block-request-R275 -{+client-header-tagger{ab2p-block-request-R275} \ -} -# ||noiseblocker.de^$domain=hw-lab.com (advblock.txt: 6139) -.noiseblocker.de -# ||antec.com/*/web_banner/$domain=hw-lab.com (advblock.txt: 5495) -.antec.com/.*/web_banner/ - -#ab2p-block-request-R276 -{+client-header-tagger{ab2p-block-request-R276} \ -} -# ||hwcdn.net^$domain=i24news.tv|newindianexpress.com (easylistchina+easylist.txt: 40402) -.hwcdn.net -# ||hwcdn.net^$domain=i24news.tv|newindianexpress.com (easylist.txt: 29917) -.hwcdn.net - -#ab2p-block-request-R277 -{+client-header-tagger{ab2p-block-request-R277} \ -} -# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina+easylist.txt: 3542) -.item.taobao.com - -#ab2p-block-request-R278 -{+client-header-tagger{ab2p-block-request-R278} \ -} -# ||axisbank.com/shopaholics-festival/$domain=ibnlive.in.com (easylistchina+easylist.txt: 39796) -.axisbank.com/shopaholics-festival/ -# ||axisbank.com/shopaholics-festival/$domain=ibnlive.in.com (easylist.txt: 29311) -.axisbank.com/shopaholics-festival/ - -#ab2p-block-request-R279 -{+client-header-tagger{ab2p-block-request-R279} \ -} -# /tres/recommend/*$domain=ifeng.com (easylistchina+easylist.txt: 1223) -/(.*/)?tres/recommend/.* - -#ab2p-block-request-R280 -{+client-header-tagger{ab2p-block-request-R280} \ -} -# ||ru/code/$domain=imageban.ru|tekst-pesni-tut.ru (advblock.txt: 3343) - -#ab2p-block-request-R281 -{+client-header-tagger{ab2p-block-request-R281} \ -} -# ||wordpress.com^*_250x2501.$domain=inspirationfeed.com (easylistchina+easylist.txt: 45635) -.wordpress.com/.*_250x2501\. -# ||wordpress.com^*/mediatemple.jpg$domain=inspirationfeed.com (easylistchina+easylist.txt: 45634) -.wordpress.com/.*/mediatemple\.jpg -# ||wordpress.com^*-banner-$domain=inspirationfeed.com (easylistchina+easylist.txt: 45631) -.wordpress.com/.*-banner- -# ||wordpress.com^*_250x2501.$domain=inspirationfeed.com (easylist.txt: 35150) -.wordpress.com/.*_250x2501\. -# ||wordpress.com^*/mediatemple.jpg$domain=inspirationfeed.com (easylist.txt: 35149) -.wordpress.com/.*/mediatemple\.jpg -# ||wordpress.com^*-banner-$domain=inspirationfeed.com (easylist.txt: 35146) -.wordpress.com/.*-banner- - -#ab2p-block-request-R283 -{+client-header-tagger{ab2p-block-request-R283} \ -} -# ||rackspacecloud.com/Broker%20Buttons/$domain=investing.com (easylistchina+easylist.txt: 40822) -.rackspacecloud.com/Broker%20Buttons/ -# ||rackspacecloud.com/Broker%20Buttons/$domain=investing.com (easylist.txt: 30337) -.rackspacecloud.com/Broker%20Buttons/ - -#ab2p-block-request-R284 -{+client-header-tagger{ab2p-block-request-R284} \ -} -# ||livecrics.livet20worldcup.com/video.php$domain=iplstream.com (easylistchina+easylist.txt: 40530) -.livecrics.livet20worldcup.com/video\.php -# ||livecrics.livet20worldcup.com/video.php$domain=iplstream.com (easylist.txt: 30045) -.livecrics.livet20worldcup.com/video\.php - -#ab2p-block-request-R285 -{+client-header-tagger{ab2p-block-request-R285} \ -} -# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina+easylist.txt: 1109) -/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ -/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf -# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina+easylist.txt: 1071) -.miaozhen.com - -#ab2p-block-request-R286 -{+client-header-tagger{ab2p-block-request-R286} \ -} -# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina+easylist.txt: 1110) -/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ -/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) - -#ab2p-block-request-R288 -{+client-header-tagger{ab2p-block-request-R288} \ -} -# ||imgchr.com^$domain=iyejie.com (easylistchina+easylist.txt: 3468) -.imgchr.com - -#ab2p-block-request-R289 -{+client-header-tagger{ab2p-block-request-R289} \ -} -# ||sinaimg.cn^$domain=izzs.cc (easylistchina+easylist.txt: 5454) -.sinaimg.cn - -#ab2p-block-request-R290 -{+client-header-tagger{ab2p-block-request-R290} \ -} -# ||brightcove.com/js/BrightcoveExperiences.js$domain=java-forums.org (easylistchina+easylist.txt: 42390) -.brightcove.com/js/BrightcoveExperiences\.js -# ||brightcove.com/js/BrightcoveExperiences.js$domain=java-forums.org (easylist.txt: 31905) -.brightcove.com/js/BrightcoveExperiences\.js - -#ab2p-block-request-R292 -{+client-header-tagger{ab2p-block-request-R292} \ -} -# /joynew.css?$domain=joyreactor.cc|reactor.cc (advblock.txt: 5392) -/(.*/)?joynew\.css\? - -#ab2p-block-request-R294 -{+client-header-tagger{ab2p-block-request-R294} \ -} -# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 4402) -.riju.com/pr/ -# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 3640) -.jpunion.com -# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 1173) -/(.*/)?img/kana\.jpg -# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina+easylist.txt: 1172) -/(.*/)?img/disc\.jpg - -#ab2p-block-request-R295 -{+client-header-tagger{ab2p-block-request-R295} \ -} -# ||com^$popup,domain=kartinka.in (advblock.txt: 32) - -#ab2p-block-request-R296 -{+client-header-tagger{ab2p-block-request-R296} \ -} -# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina+easylist.txt: 4331) -.qq.com/bqq_qfpic/ - -#ab2p-block-request-R298 -{+client-header-tagger{ab2p-block-request-R298} \ -} -# ||toptrailers.net^$popup,domain=kingfiles.net|uploadrocket.net (easylistchina+easylist.txt: 46196) -.toptrailers.net -# ||toptrailers.net^$popup,domain=kingfiles.net|uploadrocket.net (easylist.txt: 35711) -.toptrailers.net - -#ab2p-block-request-R299 -{+client-header-tagger{ab2p-block-request-R299} \ -} -# ||g-tv.ru^*&auto_play=1$domain=kino-dom.tv (advblock.txt: 5759) -.g-tv.ru/.*&auto_play=1 - -#ab2p-block-request-R300 -{+client-header-tagger{ab2p-block-request-R300} \ -} -# /swf/*$domain=kino-live.org|riper.am (advblock.txt: 5398) -/(.*/)?swf/.* -# /js/init.js$domain=kino-live.org|riper.am (advblock.txt: 5393) -/(.*/)?js/init\.js -# /images/*-banners.$domain=kino-live.org|riper.am (advblock.txt: 5386) -/(.*/)?images/.*-banners\. -# /css/styles.css$domain=kino-live.org|riper.am (advblock.txt: 5381) -/(.*/)?css/styles\.css - -#ab2p-block-request-R301 -{+client-header-tagger{ab2p-block-request-R301} \ -} -# ||data.videonow.ru^$domain=kinonews.ru|lifenews.ru|sport-express.ru (advblock.txt: 5630) -.data.videonow.ru - -#ab2p-block-request-R303 -{+client-header-tagger{ab2p-block-request-R303} \ -} -# /com.js$domain=kinox.to (easylistchina+easylist.txt: 41909) -/(.*/)?com\.js -com.js*. -# /com.js$domain=kinox.to (easylist.txt: 31424) -/(.*/)?com\.js -com.js*. - -#ab2p-block-request-R305 -{+client-header-tagger{ab2p-block-request-R305} \ -} -# /rklm/*$domain=kirovnet.ru|ui.ua (advblock.txt: 5394) -/(.*/)?rklm/.* - -#ab2p-block-request-R307 -{+client-header-tagger{ab2p-block-request-R307} \ -} -# ||koob.ru/*.php?*=$domain=klex.ru (advblock.txt: 5960) -.koob.ru/.*\.php\?.*= - -#ab2p-block-request-R308 -{+client-header-tagger{ab2p-block-request-R308} \ -} -# ||bmu.img.com.ua^$domain=korrespondent.net (advblock.txt: 5560) -.bmu.img.com.ua - -#ab2p-block-request-R309 -{+client-header-tagger{ab2p-block-request-R309} \ -} -# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina+easylist.txt: 1108) -/(.*/)?\?age=1& - -#ab2p-block-request-R310 -{+client-header-tagger{ab2p-block-request-R310} \ -} -# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina+easylist.txt: 1169) -/(.*/)?img/.*\.gif - -#ab2p-block-request-R311 -{+client-header-tagger{ab2p-block-request-R311} \ -} -# ||porn101.com^$popup,domain=lexsteele.com (easylistchina+easylist.txt: 47087) -.porn101.com -# ||porn101.com^$popup,domain=lexsteele.com (easylist.txt: 36602) -.porn101.com - -#ab2p-block-request-R312 -{+client-header-tagger{ab2p-block-request-R312} \ -} -# .fancybox.$domain=life.com.tw (easylistchina+easylist.txt: 1093) -/.*\.fancybox\. -.*.fancybox.*. - -#ab2p-block-request-R313 -{+client-header-tagger{ab2p-block-request-R313} \ -} -# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina+easylist.txt: 4818) -.tietuku.com/.*\.gif - -#ab2p-block-request-R314 -{+client-header-tagger{ab2p-block-request-R314} \ -} -# ||bp.blogspot.com^*banner*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42383) -.bp.blogspot.com/.*banner.*\.jpg -# ||bp.blogspot.com^*/poster*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42382) -.bp.blogspot.com/.*/poster.*\.jpg -# ||bp.blogspot.com^*%2bad*.jpg$domain=lindaikeji.blogspot.com (easylistchina+easylist.txt: 42381) -.bp.blogspot.com/.*%2bad.*\.jpg -# ||bp.blogspot.com^*banner*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31898) -.bp.blogspot.com/.*banner.*\.jpg -# ||bp.blogspot.com^*/poster*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31897) -.bp.blogspot.com/.*/poster.*\.jpg -# ||bp.blogspot.com^*%2bad*.jpg$domain=lindaikeji.blogspot.com (easylist.txt: 31896) -.bp.blogspot.com/.*%2bad.*\.jpg - -#ab2p-block-request-R317 -{+client-header-tagger{ab2p-block-request-R317} \ -} -# ||gp.jstv.com^$domain=live.jstv.com (easylistchina+easylist.txt: 3046) -.gp.jstv.com - -#ab2p-block-request-R318 -{+client-header-tagger{ab2p-block-request-R318} \ -} -# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina+easylist.txt: 1142) -/(.*/)?da\.aspx$ -da.aspx - -#ab2p-block-request-R319 -{+client-header-tagger{ab2p-block-request-R319} \ -} -# ||mp3albomov.net^$popup,domain=lossless-galaxy.ru (advblock.txt: 37) -.mp3albomov.net - -#ab2p-block-request-R320 -{+client-header-tagger{ab2p-block-request-R320} \ -} -# /js/index_right$domain=lt57.com|ltwbook.com|ltxsw.com (easylistchina+easylist.txt: 1181) -/(.*/)?js/index_right -# /js/index_*68860.js$domain=lt57.com|ltwbook.com|ltxsw.com (easylistchina+easylist.txt: 1180) -/(.*/)?js/index_.*68860\.js - -#ab2p-block-request-R321 -{+client-header-tagger{ab2p-block-request-R321} \ -} -# ||qndown.com^$domain=lululu8.net (easylistchina+easylist.txt: 4326) -.qndown.com - -#ab2p-block-request-R322 -{+client-header-tagger{ab2p-block-request-R322} \ -} -# ||abbigli.com^$popup,domain=luxtorrents.com (advblock.txt: 30) -.abbigli.com - -#ab2p-block-request-R323 -{+client-header-tagger{ab2p-block-request-R323} \ -} -# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina+easylist.txt: 1724) -.55.la/anonymous/banner/ - -#ab2p-block-request-R324 -{+client-header-tagger{ab2p-block-request-R324} \ -} -# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina+easylist.txt: 4140) -.pchome.com.tw/iframe/ - -#ab2p-block-request-R325 -{+client-header-tagger{ab2p-block-request-R325} \ -} -# /brandingVideo.js$domain=mail.ru (advblock.txt: 6810) -/(.*/)?brandingVideo\.js -brandingVideo.js*. - -#ab2p-block-request-R326 -{+client-header-tagger{ab2p-block-request-R326} \ -} -# ||beap.gemini.yahoo.com^$popup,domain=mail.yahoo.com (easylistchina+easylist.txt: 46114) -.beap.gemini.yahoo.com -# ||beap.gemini.yahoo.com^$popup,domain=mail.yahoo.com (easylist.txt: 35629) -.beap.gemini.yahoo.com - -#ab2p-block-request-R327 -{+client-header-tagger{ab2p-block-request-R327} \ -} -# ||pagefair.com/static/adblock_detection/js/d.min.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 46087) -.pagefair.com/static/adblock_detection/js/d\.min\.js -# ||mlg-ad-ops.s3.amazonaws.com^$domain=majorleaguegaming.com (easylistchina+easylist.txt: 43997) -.mlg-ad-ops.s3.amazonaws.com -# ||pagefair.com/static/adblock_detection/js/d.min.js$domain=majorleaguegaming.com (easylist.txt: 35602) -.pagefair.com/static/adblock_detection/js/d\.min\.js -# ||mlg-ad-ops.s3.amazonaws.com^$domain=majorleaguegaming.com (easylist.txt: 33512) -.mlg-ad-ops.s3.amazonaws.com - -#ab2p-block-request-R328 -{+client-header-tagger{ab2p-block-request-R328} \ -} -# ||wambacdn.net/images/upload/adv/$domain=mamba.ru (easylistchina+easylist.txt: 45499) -.wambacdn.net/images/upload/adv/ -# ||wambacdn.net/images/upload/adv/$domain=mamba.ru (easylist.txt: 35014) -.wambacdn.net/images/upload/adv/ - -#ab2p-block-request-R329 -{+client-header-tagger{ab2p-block-request-R329} \ -} -# ||mfcdn.net/store/banners/$domain=mangafox.me (easylistchina+easylist.txt: 43965) -.mfcdn.net/store/banners/ -# ||mfcdn.net/store/banners/$domain=mangafox.me (easylist.txt: 33480) -.mfcdn.net/store/banners/ - -#ab2p-block-request-R755t -{+client-header-tagger{ab2p-block-request-R755t} \ -} -# ||indianmasala.com^$popup,third-party,domain=masalaboard.com (easylistchina+easylist.txt: 38515) -.indianmasala.com -# ||indianmasala.com^$popup,third-party,domain=masalaboard.com (easylist.txt: 28030) -.indianmasala.com - -#ab2p-block-request-R331 -{+client-header-tagger{ab2p-block-request-R331} \ -} -# ||firepic.org^$domain=mega-pics-money.ru (advblock.txt: 5719) -.firepic.org - -#ab2p-block-request-R332 -{+client-header-tagger{ab2p-block-request-R332} \ -} -# ||orange-pic.net^$domain=megaimg.ru (advblock.txt: 6185) -.orange-pic.net - -#ab2p-block-request-R333 -{+client-header-tagger{ab2p-block-request-R333} \ -} -# ||bazr.ru/player?playlistId=$domain=megaresheba.ru|muzofon.com|teledidar.tv (advblock.txt: 5533) -.bazr.ru/player\?playlistId= - -#ab2p-block-request-R334 -{+client-header-tagger{ab2p-block-request-R334} \ -} -# ||vcdn.biz/*_mggads/$domain=megogo.net (advblock.txt: 6536) -.vcdn.biz/.*_mggads/ - -#ab2p-block-request-R335 -{+client-header-tagger{ab2p-block-request-R335} \ -} -# ||memorygapdotorg.files.wordpress.com^*allamerican3.jpg$domain=memoryholeblog.com (easylistchina+easylist.txt: 43943) -.memorygapdotorg.files.wordpress.com/.*allamerican3\.jpg -# ||memorygapdotorg.files.wordpress.com^*allamerican3.jpg$domain=memoryholeblog.com (easylist.txt: 33458) -.memorygapdotorg.files.wordpress.com/.*allamerican3\.jpg - -#ab2p-block-request-R336 -{+client-header-tagger{ab2p-block-request-R336} \ -} -# ||ge.tt/api/$domain=mhktricks.net (easylistchina+easylist.txt: 40317) -.ge.tt/api/ -# ||ge.tt/api/$domain=mhktricks.net (easylist.txt: 29832) -.ge.tt/api/ - -#ab2p-block-request-R337 -{+client-header-tagger{ab2p-block-request-R337} \ -} -# /clickpop.js$domain=miliblog.co.uk (easylistchina+easylist.txt: 41908) -/(.*/)?clickpop\.js -clickpop.js*. -# /clickpop.js$domain=miliblog.co.uk (easylist.txt: 31423) -/(.*/)?clickpop\.js -clickpop.js*. - -#ab2p-block-request-R338 -{+client-header-tagger{ab2p-block-request-R338} \ -} -# ||plista.com/async.js$domain=mirror.co.uk (easylistchina+easylist.txt: 40766) -.plista.com/async\.js -# ||plista.com/async.js$domain=mirror.co.uk (easylist.txt: 30281) -.plista.com/async\.js - -#ab2p-block-request-R339 -{+client-header-tagger{ab2p-block-request-R339} \ -} -# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina+easylist.txt: 3604) -.jiaoyou8.com - -#ab2p-block-request-R340 -{+client-header-tagger{ab2p-block-request-R340} \ -} -# ||picuphost.com^$domain=mmload.info (easylistchina+easylist.txt: 4205) -.picuphost.com - -#ab2p-block-request-R341 -{+client-header-tagger{ab2p-block-request-R341} \ -} -# ||netdna-cdn.com^$domain=modovideo.com|mooshare.biz (easylistchina+easylist.txt: 44119) -.netdna-cdn.com -# ||netdna-cdn.com^$domain=modovideo.com|mooshare.biz (easylist.txt: 33634) -.netdna-cdn.com - -#ab2p-block-request-R343 -{+client-header-tagger{ab2p-block-request-R343} \ -} -# ||winvideo.org^$domain=moonwalk.cc (advblock.txt: 6651) -.winvideo.org -# ||mxtads.com^$domain=moonwalk.cc (advblock.txt: 6649) -.mxtads.com -# $popup,domain=moonwalk.cc (advblock.txt: 27) - - -#ab2p-block-request-R344 -{+client-header-tagger{ab2p-block-request-R344} \ -} -# /zvooq.css$domain=moskva.fm|piter.fm (advblock.txt: 5403) -/(.*/)?zvooq\.css -zvooq.css*. - -#ab2p-block-request-R345 -{+client-header-tagger{ab2p-block-request-R345} \ -} -# ||amazonaws.com/ansible.js$domain=motherjones.com (easylistchina+easylist.txt: 39740) -.amazonaws.com/ansible\.js -# ||amazonaws.com/ansible.js$domain=motherjones.com (easylist.txt: 29255) -.amazonaws.com/ansible\.js - -#ab2p-block-request-R346 -{+client-header-tagger{ab2p-block-request-R346} \ -} -# ||aolcdn.com/os/movies/css-js/sprite/*-wallpaper?$domain=moviefone.com (easylistchina+easylist.txt: 42193) -.aolcdn.com/os/movies/css-js/sprite/.*-wallpaper\? -# ||aolcdn.com/os/movies/css-js/sprite/*-wallpaper?$domain=moviefone.com (easylist.txt: 31708) -.aolcdn.com/os/movies/css-js/sprite/.*-wallpaper\? - -#ab2p-block-request-R347 -{+client-header-tagger{ab2p-block-request-R347} \ -} -# ||click.aliexpress.com^$popup,domain=multiupfile.com (easylistchina+easylist.txt: 46118) -.click.aliexpress.com -# ||click.aliexpress.com^$popup,domain=multiupfile.com (easylist.txt: 35633) -.click.aliexpress.com - -#ab2p-block-request-R348 -{+client-header-tagger{ab2p-block-request-R348} \ -} -# ||planeta-online.tv^$domain=my-hit.org (advblock.txt: 6229) -.planeta-online.tv - -#ab2p-block-request-R350 -{+client-header-tagger{ab2p-block-request-R350} \ -} -# ||nimbb.com^$domain=my.rsscache.com (easylistchina+easylist.txt: 44177) -.nimbb.com -# ||nimbb.com^$domain=my.rsscache.com (easylist.txt: 33692) -.nimbb.com - -#ab2p-block-request-R351 -{+client-header-tagger{ab2p-block-request-R351} \ -} -# /js/adBom.js$domain=myqcloud.com (easylistchina+easylist.txt: 1177) -/(.*/)?js/adBom\.js - -#ab2p-block-request-R352 -{+client-header-tagger{ab2p-block-request-R352} \ -} -# ||namba.kg^$popup,domain=namba.kg (advblock.txt: 38) -.namba.kg - -#ab2p-block-request-R353 -{+client-header-tagger{ab2p-block-request-R353} \ -} -# /www/base/*&cb=$domain=namba.kg|namba.tj (advblock.txt: 5402) -/(.*/)?www/base/.*&cb= -# /banner_fullscreen.js|$domain=namba.kg|namba.tj (advblock.txt: 5380) -/(.*/)?banner_fullscreen\.js$ - -#ab2p-block-request-R354 -{+client-header-tagger{ab2p-block-request-R354} \ -} -# ||namba.tj^$popup,domain=namba.tj (advblock.txt: 39) -.namba.tj - -#ab2p-block-request-R355 -{+client-header-tagger{ab2p-block-request-R355} \ -} -# ||hide.me^$popup,domain=ncrypt.in (easylistchina+easylist.txt: 46149) -.hide.me -# ||5.199.170.67^$domain=ncrypt.in (easylistchina+easylist.txt: 41980) -.5.199.170.67 -# ||hide.me^$popup,domain=ncrypt.in (easylist.txt: 35664) -.hide.me -# ||5.199.170.67^$domain=ncrypt.in (easylist.txt: 31495) -.5.199.170.67 - -#ab2p-block-request-R357 -{+client-header-tagger{ab2p-block-request-R357} \ -} -# ||single-vergleich.de^$popup,domain=netload.in (easylistchina+easylist.txt: 46182) -.single-vergleich.de -# ||single-vergleich.de^$popup,domain=netload.in (easylist.txt: 35697) -.single-vergleich.de - -#ab2p-block-request-R358 -{+client-header-tagger{ab2p-block-request-R358} \ -} -# ||ngfiles.com/bg-skins/sponsored/skins/$domain=newgrounds.com (easylistchina+easylist.txt: 44167) -.ngfiles.com/bg-skins/sponsored/skins/ -# ||ngfiles.com/bg-skins/sponsored/skins/$domain=newgrounds.com (easylist.txt: 33682) -.ngfiles.com/bg-skins/sponsored/skins/ - -#ab2p-block-request-R359 -{+client-header-tagger{ab2p-block-request-R359} \ -} -# ||aviasales.ru/partners/$domain=newrbk.ru (advblock.txt: 5521) -.aviasales.ru/partners/ - -#ab2p-block-request-R360 -{+client-header-tagger{ab2p-block-request-R360} \ -} -# ||rentalcars.com/affxml/$domain=news-headlines.co.za (easylistchina+easylist.txt: 40844) -.rentalcars.com/affxml/ -# ||rentalcars.com/affxml/$domain=news-headlines.co.za (easylist.txt: 30359) -.rentalcars.com/affxml/ - -#ab2p-block-request-R361 -{+client-header-tagger{ab2p-block-request-R361} \ -} -# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina+easylist.txt: 5091) -.www.china.com.cn/node_ - -#ab2p-block-request-R362 -{+client-header-tagger{ab2p-block-request-R362} \ -} -# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina+easylist.txt: 1250) -/.*_iframe\.htm$ - -#ab2p-block-request-R363 -{+client-header-tagger{ab2p-block-request-R363} \ -} -# ||newscdn.com.au^*/desktop-bg-body.png$domain=news.com.au (easylistchina+easylist.txt: 44146) -.newscdn.com.au/.*/desktop-bg-body\.png -# ||newscdn.com.au^*/desktop-bg-body.png$domain=news.com.au (easylist.txt: 33661) -.newscdn.com.au/.*/desktop-bg-body\.png - -#ab2p-block-request-R364 -{+client-header-tagger{ab2p-block-request-R364} \ -} -# ||connectok.com/brightcove/?$domain=newsok.com (easylistchina+easylist.txt: 39986) -.connectok.com/brightcove/\? -# ||connectok.com/brightcove/?$domain=newsok.com (easylist.txt: 29501) -.connectok.com/brightcove/\? - -#ab2p-block-request-R366 -{+client-header-tagger{ab2p-block-request-R366} \ -} -# ||hostingkartinok.com/uploads/images/$domain=nikolaev-city.net (advblock.txt: 5844) -.hostingkartinok.com/uploads/images/ - -#ab2p-block-request-R367 -{+client-header-tagger{ab2p-block-request-R367} \ -} -# ||info^$popup,domain=nnm.me|serialu.net (advblock.txt: 35) - -#ab2p-block-request-R368 -{+client-header-tagger{ab2p-block-request-R368} \ -} -# ||oboom.com/assets/raw/$media,domain=oboom.com (easylistchina+easylist.txt: 44242) -.oboom.com/assets/raw/ -# ||oboom.com/assets/raw/$media,domain=oboom.com (easylist.txt: 33757) -.oboom.com/assets/raw/ - -#ab2p-block-request-R369 -{+client-header-tagger{ab2p-block-request-R369} \ -} -# .com/tps/$domain=ocucn.com (easylistchina+easylist.txt: 1091) -/.*\.com/tps/ -.*.com/tps/ - -#ab2p-block-request-R370 -{+client-header-tagger{ab2p-block-request-R370} \ -} -# ||cloudfront.net/*/takeover/$domain=offers.com (easylistchina+easylist.txt: 42548) -.cloudfront.net/.*/takeover/ -# ||cloudfront.net/*/takeover/$domain=offers.com (easylist.txt: 32063) -.cloudfront.net/.*/takeover/ - -#ab2p-block-request-R371 -{+client-header-tagger{ab2p-block-request-R371} \ -} -# ||wp.com^*/downloadlink$domain=onhax.net (easylistchina+easylist.txt: 45658) -.wp.com/.*/downloadlink -# ||wp.com^*/dlinks/$domain=onhax.net (easylistchina+easylist.txt: 45657) -.wp.com/.*/dlinks/ -# ||wp.com^*/downloadlink$domain=onhax.net (easylist.txt: 35173) -.wp.com/.*/downloadlink -# ||wp.com^*/dlinks/$domain=onhax.net (easylist.txt: 35172) -.wp.com/.*/dlinks/ - -#ab2p-block-request-R372 -{+client-header-tagger{ab2p-block-request-R372} \ -} -# ||rutube.ru/embed/$domain=ontracker.ru (advblock.txt: 6360) -.rutube.ru/embed/ - -#ab2p-block-request-R373 -{+client-header-tagger{ab2p-block-request-R373} \ -} -# ||rubiconproject.com^$domain=optimized-by.rubiconproject.com (easylistchina+easylist.txt: 44628) -.rubiconproject.com -# ||rubiconproject.com^$domain=optimized-by.rubiconproject.com (easylist.txt: 34143) -.rubiconproject.com - -#ab2p-block-request-R374 -{+client-header-tagger{ab2p-block-request-R374} \ -} -# ||209.62.111.179/ad.aspx$domain=pachanyc.com (easylistchina+easylist.txt: 41955) -.209.62.111.179/ad\.aspx -# ||209.62.111.179/ad.aspx$domain=pachanyc.com (easylist.txt: 31470) -.209.62.111.179/ad\.aspx - -#ab2p-block-request-R376 -{+client-header-tagger{ab2p-block-request-R376} \ -} -# ||roomguru.ru/SearchBox/$domain=pavelkesh.ru (advblock.txt: 6319) -.roomguru.ru/SearchBox/ - -#ab2p-block-request-R377 -{+client-header-tagger{ab2p-block-request-R377} \ -} -# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina+easylist.txt: 1225) -/(.*/)?upload/gad/.* - -#ab2p-block-request-R378 -{+client-header-tagger{ab2p-block-request-R378} \ -} -# ||rackcdn.com/*skin-$domain=pcgamesn.com (easylistchina+easylist.txt: 44521) -.rackcdn.com/.*skin- -# ||rackcdn.com/*skin-$domain=pcgamesn.com (easylist.txt: 34036) -.rackcdn.com/.*skin- - -#ab2p-block-request-R380 -{+client-header-tagger{ab2p-block-request-R380} \ -} -# ||phpbb-phpbb*.x-tk.ru^$domain=phpbb3.x-tk.ru (advblock.txt: 6207) -.phpbb-phpbb*./.*\.x-tk\.ru[^\w%.-] -.phpbb-phpbb*.x-tk.ru - -#ab2p-block-request-R381 -{+client-header-tagger{ab2p-block-request-R381} \ -} -# ||letitbit-porno.com^$popup,domain=pic2profit.com (advblock.txt: 36) -.letitbit-porno.com - -#ab2p-block-request-R382 -{+client-header-tagger{ab2p-block-request-R382} \ -} -# ||slavakirkudu.ru^$domain=picforall.ru (advblock.txt: 6403) -.slavakirkudu.ru - -#ab2p-block-request-R383 -{+client-header-tagger{ab2p-block-request-R383} \ -} -# ||garmin.ru/virb/?$popup,domain=pikabu.ru (advblock.txt: 148) -.garmin.ru/virb/\? - -#ab2p-block-request-R386 -{+client-header-tagger{ab2p-block-request-R386} \ -} -# ||deltamarket.com.ua^$domain=planetaua.net (advblock.txt: 5642) -.deltamarket.com.ua - -#ab2p-block-request-R387 -{+client-header-tagger{ab2p-block-request-R387} \ -} -# ||akamaihd.net^*/ads/$domain=player.theplatform.com (easylistchina+easylist.txt: 42109) -.akamaihd.net/.*/ads/ -# ||akamaihd.net^*/ads/$domain=player.theplatform.com (easylist.txt: 31624) -.akamaihd.net/.*/ads/ - -#ab2p-block-request-R389 -{+client-header-tagger{ab2p-block-request-R389} \ -} -# ||bigcommerce.com^*/product_images/$domain=politicalears.com (easylistchina+easylist.txt: 39848) -.bigcommerce.com/.*/product_images/ -# ||bigcommerce.com^*/product_images/$domain=politicalears.com (easylist.txt: 29363) -.bigcommerce.com/.*/product_images/ - -#ab2p-block-request-R391 -{+client-header-tagger{ab2p-block-request-R391} \ -} -# ||celebjihad.com/widget/widget.js$domain=popbytes.com (easylistchina+easylist.txt: 42500) -.celebjihad.com/widget/widget\.js -# ||celebjihad.com/widget/widget.js$domain=popbytes.com (easylist.txt: 32015) -.celebjihad.com/widget/widget\.js - -#ab2p-block-request-R392 -{+client-header-tagger{ab2p-block-request-R392} \ -} -# ||phncdn.com/css/campaign.css?$domain=pornhub.com (easylistchina+easylist.txt: 46678) -.phncdn.com/css/campaign\.css\? -# ||phncdn.com/css/campaign.css?$domain=pornhub.com (easylist.txt: 36193) -.phncdn.com/css/campaign\.css\? - -#ab2p-block-request-R395 -{+client-header-tagger{ab2p-block-request-R395} \ -} -# ||baidu.com^$domain=pos.baidu.com (easylistchina+easylist.txt: 2187) -.baidu.com - -#ab2p-block-request-R397 -{+client-header-tagger{ab2p-block-request-R397} \ -} -# ||pr-cy.ru^*.swf^$domain=pr-cy.ru (advblock.txt: 6251) -.pr-cy.ru/.*\.swf[^\w%.-] - -#ab2p-block-request-R398 -{+client-header-tagger{ab2p-block-request-R398} \ -} -# ||zanox.com^$popup,domain=pregen.net (easylistchina+easylist.txt: 46217) -.zanox.com -# ||zanox.com^$popup,domain=pregen.net (easylist.txt: 35732) -.zanox.com - -#ab2p-block-request-R399 -{+client-header-tagger{ab2p-block-request-R399} \ -} -# ||prime.ms^$domain=primejailbait.com (easylistchina+easylist.txt: 41682) -.prime.ms -# ||prime.ms^$domain=primejailbait.com (easylist.txt: 31197) -.prime.ms - -#ab2p-block-request-R401 -{+client-header-tagger{ab2p-block-request-R401} \ -} -# ||maases.com/i/br/$domain=promodj.com (easylistchina+easylist.txt: 40564) -.maases.com/i/br/ -# ||maases.com/i/br/$domain=promodj.com (easylist.txt: 30079) -.maases.com/i/br/ - -#ab2p-block-request-R403 -{+client-header-tagger{ab2p-block-request-R403} \ -} -# ||fashionsaga.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 46128) -.fashionsaga.com -# ||fashionsaga.com^$popup,domain=putlocker.is (easylist.txt: 35643) -.fashionsaga.com - -#ab2p-block-request-R404 -{+client-header-tagger{ab2p-block-request-R404} \ -} -# /950-90.gif$domain=qire213.com (easylistchina+easylist.txt: 1107) -/(.*/)?950-90\.gif -950-90.gif*. - -#ab2p-block-request-R405 -{+client-header-tagger{ab2p-block-request-R405} \ -} -# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1239) -/(.*/)?xybgg\.gif -xybgg.gif*. -# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1171) -/(.*/)?img/br650\.gif -# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina+easylist.txt: 1170) -/(.*/)?img/br300\.gif - -#ab2p-block-request-R406 -{+client-header-tagger{ab2p-block-request-R406} \ -} -# ||dyncdn.me/static/20/js/expla*.js$domain=rarbg.to|rarbg.unblocked.la|rarbgmirror.com (easylistchina+easylist.txt: 42826) -.dyncdn.me/static/20/js/expla.*\.js -# ||dyncdn.me/static/20/js/expla*.js$domain=rarbg.to|rarbg.unblocked.la|rarbgmirror.com (easylist.txt: 32341) -.dyncdn.me/static/20/js/expla.*\.js - -#ab2p-block-request-R407 -{+client-header-tagger{ab2p-block-request-R407} \ -} -# ^utm_medium=pops^$popup,domain=ratedporntube.com|sextuberate.com (easylistchina+easylist.txt: 47068) -/(.*[^\w%.-])?utm_medium=pops[^\w%.-] -# ^utm_medium=pops^$popup,domain=ratedporntube.com|sextuberate.com (easylist.txt: 36583) -/(.*[^\w%.-])?utm_medium=pops[^\w%.-] - -#ab2p-block-request-R408 -{+client-header-tagger{ab2p-block-request-R408} \ -} -# ||tripadvisor.com/WidgetEmbed-*&partnerId=$domain=rbth.co.uk|rbth.com (easylistchina+easylist.txt: 41081) -.tripadvisor.com/WidgetEmbed-.*&partnerId= -# ||tripadvisor.com/WidgetEmbed-*&partnerId=$domain=rbth.co.uk|rbth.com (easylist.txt: 30596) -.tripadvisor.com/WidgetEmbed-.*&partnerId= - -#ab2p-block-request-R409 -{+client-header-tagger{ab2p-block-request-R409} \ -} -# ||cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:*.mp3$domain=rdio.com (easylistchina+easylist.txt: 42556) -.cmodmedia*./.*\.live\.streamtheworld\.com/media/cm-audio/cm:.*\.mp3 -.cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:.*\.mp3 -# ||cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:*.mp3$domain=rdio.com (easylist.txt: 32071) -.cmodmedia*./.*\.live\.streamtheworld\.com/media/cm-audio/cm:.*\.mp3 -.cmodmedia*.live.streamtheworld.com/media/cm-audio/cm:.*\.mp3 - -#ab2p-block-request-R410 -{+client-header-tagger{ab2p-block-request-R410} \ -} -# ||netdna-cdn.com^*-300x250.$domain=readersdigest.co.uk (easylistchina+easylist.txt: 40677) -.netdna-cdn.com/.*-300x250\. -# ||netdna-cdn.com^*-300x250.$domain=readersdigest.co.uk (easylist.txt: 30192) -.netdna-cdn.com/.*-300x250\. - -#ab2p-block-request-R411 -{+client-header-tagger{ab2p-block-request-R411} \ -} -# ||porn4free.tv^$popup,domain=redtube.cc (easylistchina+easylist.txt: 47088) -.porn4free.tv -# ||porn4free.tv^$popup,domain=redtube.cc (easylist.txt: 36603) -.porn4free.tv - -#ab2p-block-request-R412 -{+client-header-tagger{ab2p-block-request-R412} \ -} -# ||howbbs.net^$domain=ref.so (easylistchina+easylist.txt: 3263) -.howbbs.net - -#ab2p-block-request-R413 -{+client-header-tagger{ab2p-block-request-R413} \ -} -# ||restotv.ru/promo/$domain=restoclub.ru (advblock.txt: 6303) -.restotv.ru/promo/ - -#ab2p-block-request-R414 -{+client-header-tagger{ab2p-block-request-R414} \ -} -# ||static.crowdscience.com/max-*.js?callback=crowdScienceCallback$domain=reuters.com (easylistchina+easylist.txt: 46069) -.static.crowdscience.com/max-.*\.js\?callback=crowdScienceCallback -# ||static.crowdscience.com/max-*.js?callback=crowdScienceCallback$domain=reuters.com (easylist.txt: 35584) -.static.crowdscience.com/max-.*\.js\?callback=crowdScienceCallback - -#ab2p-block-request-R415 -{+client-header-tagger{ab2p-block-request-R415} \ -} -# ||dgrad-host.com/banner.$domain=rootden.ru (advblock.txt: 5647) -.dgrad-host.com/banner\. - -#ab2p-block-request-R416 -{+client-header-tagger{ab2p-block-request-R416} \ -} -# ||wtprn.com/images/$domain=rprradio.com (easylistchina+easylist.txt: 41204) -.wtprn.com/images/ -# ||wtprn.com/images/$domain=rprradio.com (easylist.txt: 30719) -.wtprn.com/images/ - -#ab2p-block-request-R417 -{+client-header-tagger{ab2p-block-request-R417} \ -} -# ||vcdn.biz^$domain=rusfolder.com|rusfolder.net|rutube.ru (advblock.txt: 6537) -.vcdn.biz - -#ab2p-block-request-R418 -{+client-header-tagger{ab2p-block-request-R418} \ -} -# //195.82.146.52^$domain=rutracker.org (advblock.txt: 5375) -195.82.146.52 - -#ab2p-block-request-R420 -{+client-header-tagger{ab2p-block-request-R420} \ -} -# /afp/*$domain=scol.com.cn (easylistchina+easylist.txt: 1122) -/(.*/)?afp/.* - -#ab2p-block-request-R421 -{+client-header-tagger{ab2p-block-request-R421} \ -} -# ||fastpic.ru^$domain=screenlist.ru (advblock.txt: 5701) -.fastpic.ru - -#ab2p-block-request-R423 -{+client-header-tagger{ab2p-block-request-R423} \ -} -# ||r.search.yahoo.com/_ylt=*;_ylu=*.r.msn.com$popup,domain=search.yahoo.com (easylistchina+easylist.txt: 46178) -.r.search.yahoo.com/_ylt=.*;_ylu=.*\.r\.msn\.com -# ||r.search.yahoo.com/_ylt=*;_ylu=*.r.msn.com$popup,domain=search.yahoo.com (easylist.txt: 35693) -.r.search.yahoo.com/_ylt=.*;_ylu=.*\.r\.msn\.com - -#ab2p-block-request-R424 -{+client-header-tagger{ab2p-block-request-R424} \ -} -# ||datalock.ru^*player.swf|$domain=seasonvar.ru (advblock.txt: 5631) -.datalock.ru/.*player\.swf$ - -#ab2p-block-request-R425 -{+client-header-tagger{ab2p-block-request-R425} \ -} -# ||pamaradio.com^$popup,domain=secureupload.eu (easylistchina+easylist.txt: 46172) -.pamaradio.com -# ||pamaradio.com^$popup,domain=secureupload.eu (easylist.txt: 35687) -.pamaradio.com - -#ab2p-block-request-R426 -{+client-header-tagger{ab2p-block-request-R426} \ -} -# /sendspace-pop.$popup,domain=sendspace.com (easylistchina+easylist.txt: 46102) -/(.*/)?sendspace-pop\. -sendspace-pop.*. -# ||216.151.186.5^*/serve.php?$domain=sendspace.com (easylistchina+easylist.txt: 41957) -.216.151.186.5/.*/serve\.php\? -# /sendspace-pop.$popup,domain=sendspace.com (easylist.txt: 35617) -/(.*/)?sendspace-pop\. -sendspace-pop.*. -# ||216.151.186.5^*/serve.php?$domain=sendspace.com (easylist.txt: 31472) -.216.151.186.5/.*/serve\.php\? - -#ab2p-block-request-R427 -{+client-header-tagger{ab2p-block-request-R427} \ -} -# /images/20$domain=sex169.info|sex169.org (easylistchina+easylist.txt: 1161) -/(.*/)?images/20 - -#ab2p-block-request-R428 -{+client-header-tagger{ab2p-block-request-R428} \ -} -# ||iweek.ly^$domain=share.popgo.org (easylistchina+easylist.txt: 3570) -.iweek.ly - -#ab2p-block-request-R429 -{+client-header-tagger{ab2p-block-request-R429} \ -} -# ||hcdn.co/scripts/shadowbox/shadowbox.js$domain=shared.sx (easylistchina+easylist.txt: 43316) -.hcdn.co/scripts/shadowbox/shadowbox\.js -# ||hcdn.co/scripts/shadowbox/shadowbox.js$domain=shared.sx (easylist.txt: 32831) -.hcdn.co/scripts/shadowbox/shadowbox\.js - -#ab2p-block-request-R430 -{+client-header-tagger{ab2p-block-request-R430} \ -} -# ||truckingunlimited.com^$popup,domain=sharpfile.com (easylistchina+easylist.txt: 41363) -.truckingunlimited.com -# ||truckingunlimited.com^$popup,domain=sharpfile.com (easylist.txt: 30878) -.truckingunlimited.com - -#ab2p-block-request-R431 -{+client-header-tagger{ab2p-block-request-R431} \ -} -# ||wp.com^*/banners/$domain=showbiz411.com (easylistchina+easylist.txt: 45655) -.wp.com/.*/banners/ -# ||wp.com^*/banners/$domain=showbiz411.com (easylist.txt: 35170) -.wp.com/.*/banners/ - -#ab2p-block-request-R432 -{+client-header-tagger{ab2p-block-request-R432} \ -} -# ||url.cn^$domain=shuajizhijia.com (easylistchina+easylist.txt: 4939) -.url.cn - -#ab2p-block-request-R433 -{+client-header-tagger{ab2p-block-request-R433} \ -} -# /helper/special$domain=siliconrus.com|tjournal.ru (advblock.txt: 5385) -/(.*/)?helper/special - -#ab2p-block-request-R434 -{+client-header-tagger{ab2p-block-request-R434} \ -} -# ||gratuit.niloo.fr^$popup,domain=simophone.com (easylistchina+easylist.txt: 46148) -.gratuit.niloo.fr -# ||gratuit.niloo.fr^$popup,domain=simophone.com (easylist.txt: 35663) -.gratuit.niloo.fr - -#ab2p-block-request-R436 -{+client-header-tagger{ab2p-block-request-R436} \ -} -# ||prod-skybet.s3.amazonaws.com^$domain=skysports.com (easylistchina+easylist.txt: 40794) -.prod-skybet.s3.amazonaws.com -# ||prod-skybet.s3.amazonaws.com^$domain=skysports.com (easylist.txt: 30309) -.prod-skybet.s3.amazonaws.com - -#ab2p-block-request-R437 -{+client-header-tagger{ab2p-block-request-R437} \ -} -# ||cloudfront.net/images/amazon/$domain=slader.com (easylistchina+easylist.txt: 39965) -.cloudfront.net/images/amazon/ -# ||amazonaws.com/images/a/$domain=slader.com (easylistchina+easylist.txt: 39747) -.amazonaws.com/images/a/ -# ||cloudfront.net/images/amazon/$domain=slader.com (easylist.txt: 29480) -.cloudfront.net/images/amazon/ -# ||amazonaws.com/images/a/$domain=slader.com (easylist.txt: 29262) -.amazonaws.com/images/a/ - -#ab2p-block-request-R438 -{+client-header-tagger{ab2p-block-request-R438} \ -} -# ||devtools2.networkcities.net/wp-content/uploads/output_trLIFi.gif$domain=smallseotools.com (easylistchina+easylist.txt: 42751) -.devtools2.networkcities.net/wp-content/uploads/output_trLIFi\.gif -# ||devtools2.networkcities.net/wp-content/uploads/output_trLIFi.gif$domain=smallseotools.com (easylist.txt: 32266) -.devtools2.networkcities.net/wp-content/uploads/output_trLIFi\.gif - -#ab2p-block-request-R439 -{+client-header-tagger{ab2p-block-request-R439} \ -} -# ||bookingbuddy.com/js/bookingbuddy.strings.php?$domain=smartertravel.com (easylistchina+easylist.txt: 42377) -.bookingbuddy.com/js/bookingbuddy\.strings\.php\? -# ||bookingbuddy.com/js/bookingbuddy.strings.php?$domain=smartertravel.com (easylist.txt: 31892) -.bookingbuddy.com/js/bookingbuddy\.strings\.php\? - -#ab2p-block-request-R440 -{+client-header-tagger{ab2p-block-request-R440} \ -} -# ||gpm-digital.com^$domain=smexo.tv (advblock.txt: 6648) -.gpm-digital.com -# ||googlesyndication.com^$domain=smexo.tv (advblock.txt: 6647) -.googlesyndication.com - -#ab2p-block-request-R443 -{+client-header-tagger{ab2p-block-request-R443} \ -} -# ||softpedia-static.com/images/afh/$domain=softpedia.com (easylistchina+easylist.txt: 44831) -.softpedia-static.com/images/afh/ -# ||softpedia-static.com/images/afh/$domain=softpedia.com (easylist.txt: 34346) -.softpedia-static.com/images/afh/ - -#ab2p-block-request-R444 -{+client-header-tagger{ab2p-block-request-R444} \ -} -# ||songspk.name/fidelity.html$domain=songs.pk|songspk.name (easylistchina+easylist.txt: 44841) -.songspk.name/fidelity\.html -# ||songspk.name/fidelity.html$domain=songs.pk|songspk.name (easylist.txt: 34356) -.songspk.name/fidelity\.html - -#ab2p-block-request-R445 -{+client-header-tagger{ab2p-block-request-R445} \ -} -# ||amazonaws.com^*/site-takeover/$domain=songza.com (easylistchina+easylist.txt: 42145) -.amazonaws.com/.*/site-takeover/ -# ||amazonaws.com^*/site-takeover/$domain=songza.com (easylist.txt: 31660) -.amazonaws.com/.*/site-takeover/ - -#ab2p-block-request-R446 -{+client-header-tagger{ab2p-block-request-R446} \ -} -# ||sinaimg.cn/large/*.gif$domain=souqiu8.com|zhaofuli.club (easylistchina+easylist.txt: 4577) -.sinaimg.cn/large/.*\.gif - -#ab2p-block-request-R447 -{+client-header-tagger{ab2p-block-request-R447} \ -} -# ||wistia.net/embed/$domain=speedtest.net (easylistchina+easylist.txt: 45616) -.wistia.net/embed/ -# ||wistia.net/embed/$domain=speedtest.net (easylist.txt: 35131) -.wistia.net/embed/ - -#ab2p-block-request-R448 -{+client-header-tagger{ab2p-block-request-R448} \ -} -# ||media.mtvnservices.com/player/scripts/mtvn_player_control.js$domain=spike.com (easylistchina+easylist.txt: 43913) -.media.mtvnservices.com/player/scripts/mtvn_player_control\.js -# ||media.mtvnservices.com/player/scripts/mtvn_player_control.js$domain=spike.com (easylist.txt: 33428) -.media.mtvnservices.com/player/scripts/mtvn_player_control\.js - -#ab2p-block-request-R449 -{+client-header-tagger{ab2p-block-request-R449} \ -} -# ||spcontentcdn.net^$domain=sporcle.com (easylistchina+easylist.txt: 44857) -.spcontentcdn.net -# ||d6vwe9xdz9i45.cloudfront.net/psa.js$domain=sporcle.com (easylistchina+easylist.txt: 42663) -.d6vwe9xdz9i45.cloudfront.net/psa\.js -# ||spcontentcdn.net^$domain=sporcle.com (easylist.txt: 34372) -.spcontentcdn.net -# ||d6vwe9xdz9i45.cloudfront.net/psa.js$domain=sporcle.com (easylist.txt: 32178) -.d6vwe9xdz9i45.cloudfront.net/psa\.js - -#ab2p-block-request-R450 -{+client-header-tagger{ab2p-block-request-R450} \ -} -# ||tumblr.com^*/tumblr_mht2lq0XUC1rmg71eo1_500.gif$domain=stocporn.com (easylistchina+easylist.txt: 41764) -.tumblr.com/.*/tumblr_mht2lq0XUC1rmg71eo1_500\.gif -# ||tumblr.com^*/tumblr_mht2lq0XUC1rmg71eo1_500.gif$domain=stocporn.com (easylist.txt: 31279) -.tumblr.com/.*/tumblr_mht2lq0XUC1rmg71eo1_500\.gif - -#ab2p-block-request-R451 -{+client-header-tagger{ab2p-block-request-R451} \ -} -# ||lp.longtailvideo.com^$domain=stopgame.ru (advblock.txt: 6009) -.lp.longtailvideo.com - -#ab2p-block-request-R452 -{+client-header-tagger{ab2p-block-request-R452} \ -} -# /ycpiframe.aspx$domain=strtv.cn (easylistchina+easylist.txt: 1240) -/(.*/)?ycpiframe\.aspx -ycpiframe.aspx*. - -#ab2p-block-request-R453 -{+client-header-tagger{ab2p-block-request-R453} \ -} -# ||stuff.priceme.co.nz^$domain=stuff.co.nz (easylistchina+easylist.txt: 44939) -.stuff.priceme.co.nz -# ||stuff.priceme.co.nz^$domain=stuff.co.nz (easylist.txt: 34454) -.stuff.priceme.co.nz - -#ab2p-block-request-R454 -{+client-header-tagger{ab2p-block-request-R454} \ -} -# /sungg/*$domain=sun0769.com (easylistchina+easylist.txt: 1218) -/(.*/)?sungg/.* - -#ab2p-block-request-R459 -{+client-header-tagger{ab2p-block-request-R459} \ -} -# ||fileparadox.in/free$popup,domain=tdarkangel.com (easylistchina+easylist.txt: 47076) -.fileparadox.in/free -# ||fileparadox.in/free$popup,domain=tdarkangel.com (easylist.txt: 36591) -.fileparadox.in/free - -#ab2p-block-request-R460 -{+client-header-tagger{ab2p-block-request-R460} \ -} -# ||amazonaws.com/videos/$domain=technewstoday.com (easylistchina+easylist.txt: 42142) -.amazonaws.com/videos/ -# ||amazonaws.com/videos/$domain=technewstoday.com (easylist.txt: 31657) -.amazonaws.com/videos/ - -#ab2p-block-request-R461 -{+client-header-tagger{ab2p-block-request-R461} \ -} -# ||tpucdn.com/images/bnnrs/$domain=techpowerup.com (easylistchina+easylist.txt: 45245) -.tpucdn.com/images/bnnrs/ -# ||tpucdn.com/images/b/$domain=techpowerup.com (easylistchina+easylist.txt: 45244) -.tpucdn.com/images/b/ -# ||tpucdn.com/images/bnnrs/$domain=techpowerup.com (easylist.txt: 34760) -.tpucdn.com/images/bnnrs/ -# ||tpucdn.com/images/b/$domain=techpowerup.com (easylist.txt: 34759) -.tpucdn.com/images/b/ - -#ab2p-block-request-R462 -{+client-header-tagger{ab2p-block-request-R462} \ -} -# ||pladform.ru/player?pl=35495$domain=teledidar.tv (advblock.txt: 6226) -.pladform.ru/player\?pl=35495 - -#ab2p-block-request-R463 -{+client-header-tagger{ab2p-block-request-R463} \ -} -# ||histats.com/js15.js$domain=televisaofutebol.com (easylistchina+easylist.txt: 46080) -.histats.com/js15\.js -# ||histats.com/js15.js$domain=televisaofutebol.com (easylist.txt: 35595) -.histats.com/js15\.js - -#ab2p-block-request-R465 -{+client-header-tagger{ab2p-block-request-R465} \ -} -# ||wpcomwidgets.com^$domain=thegrio.com (easylistchina+easylist.txt: 45659) -.wpcomwidgets.com -# ||wpcomwidgets.com^$domain=thegrio.com (easylist.txt: 35174) -.wpcomwidgets.com - -#ab2p-block-request-R466 -{+client-header-tagger{ab2p-block-request-R466} \ -} -# ||filmreel.tv^$domain=thepiratebay.si (easylistchina+easylist.txt: 40263) -.filmreel.tv -# ||filmreel.tv^$domain=thepiratebay.si (easylist.txt: 29778) -.filmreel.tv - -#ab2p-block-request-R467 -{+client-header-tagger{ab2p-block-request-R467} \ -} -# ||goo.gl^$popup,domain=thisav.com (easylistchina+easylist.txt: 47077) -.goo.gl -# ||goo.gl^$popup,domain=thisav.com (easylist.txt: 36592) -.goo.gl - -#ab2p-block-request-R468 -{+client-header-tagger{ab2p-block-request-R468} \ -} -# ||serving.portal.dmflex.com^$domain=thisdaylive.com (easylistchina+easylist.txt: 40899) -.serving.portal.dmflex.com -# ||serving.portal.dmflex.com^$domain=thisdaylive.com (easylist.txt: 30414) -.serving.portal.dmflex.com - -#ab2p-block-request-R469 -{+client-header-tagger{ab2p-block-request-R469} \ -} -# ||netdna-cdn.com^*/tiwib-lootr-ad.png$domain=thisiswhyimbroke.com (easylistchina+easylist.txt: 44120) -.netdna-cdn.com/.*/tiwib-lootr-ad\.png -# ||netdna-cdn.com^*/tiwib-lootr-ad.png$domain=thisiswhyimbroke.com (easylist.txt: 33635) -.netdna-cdn.com/.*/tiwib-lootr-ad\.png - -#ab2p-block-request-R470 -{+client-header-tagger{ab2p-block-request-R470} \ -} -# ||junph.cn^$domain=tiexue.net (easylistchina+easylist.txt: 3673) -.junph.cn - -#ab2p-block-request-R471 -{+client-header-tagger{ab2p-block-request-R471} \ -} -# ||booking.com/general.html?$domain=timeout.com (easylistchina+easylist.txt: 39875) -.booking.com/general\.html\? -# ||booking.com/general.html?$domain=timeout.com (easylist.txt: 29390) -.booking.com/general\.html\? - -#ab2p-block-request-R473 -{+client-header-tagger{ab2p-block-request-R473} \ -} -# ||tmz.vo.llnwd.net^*/sponsorship/$domain=tmz.com (easylistchina+easylist.txt: 45192) -.tmz.vo.llnwd.net/.*/sponsorship/ -# ||tmz.vo.llnwd.net^*/sponsorship/$domain=tmz.com (easylist.txt: 34707) -.tmz.vo.llnwd.net/.*/sponsorship/ - -#ab2p-block-request-R474 -{+client-header-tagger{ab2p-block-request-R474} \ -} -# ||194.14.0.39/pia_wide.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylistchina+easylist.txt: 41951) -.194.14.0.39/pia_wide\.png -# ||194.14.0.39/pia.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylistchina+easylist.txt: 41950) -.194.14.0.39/pia\.png -# ||194.14.0.39/pia_wide.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylist.txt: 31466) -.194.14.0.39/pia_wide\.png -# ||194.14.0.39/pia.png$domain=tokyo-tosho.net|tokyotosho.info|tokyotosho.se (easylist.txt: 31465) -.194.14.0.39/pia\.png - -#ab2p-block-request-R475 -{+client-header-tagger{ab2p-block-request-R475} \ -} -# ||kxcdn.com/dlbutton3.png$domain=torlock.com (easylistchina+easylist.txt: 43712) -.kxcdn.com/dlbutton3\.png -# ||kxcdn.com/dlbutton1.png$domain=torlock.com (easylistchina+easylist.txt: 43711) -.kxcdn.com/dlbutton1\.png -# ||kxcdn.com/dlbutton3.png$domain=torlock.com (easylist.txt: 33227) -.kxcdn.com/dlbutton3\.png -# ||kxcdn.com/dlbutton1.png$domain=torlock.com (easylist.txt: 33226) -.kxcdn.com/dlbutton1\.png - -#ab2p-block-request-R476 -{+client-header-tagger{ab2p-block-request-R476} \ -} -# ||aiosearch.com^$popup,domain=torrent-finder.info (easylistchina+easylist.txt: 46110) -.aiosearch.com -# ||aiosearch.com^$popup,domain=torrent-finder.info (easylist.txt: 35625) -.aiosearch.com - -#ab2p-block-request-R477 -{+client-header-tagger{ab2p-block-request-R477} \ -} -# ||runetki.tv^$popup,domain=torrent-pirat.com (advblock.txt: 40) -.runetki.tv - -#ab2p-block-request-R479 -{+client-header-tagger{ab2p-block-request-R479} \ -} -# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina+easylist.txt: 5321) -.yupoo.com/3126961304/ - -#ab2p-block-request-R481 -{+client-header-tagger{ab2p-block-request-R481} \ -} -# ||cwer.ws^$popup,domain=turbobit.net (advblock.txt: 33) -.cwer.ws - -#ab2p-block-request-R482 -{+client-header-tagger{ab2p-block-request-R482} \ -} -# ||limbohost.net^$popup,domain=tusfiles.net (easylistchina+easylist.txt: 46163) -.limbohost.net -# ||limbohost.net^$popup,domain=tusfiles.net (easylist.txt: 35678) -.limbohost.net - -#ab2p-block-request-R484 -{+client-header-tagger{ab2p-block-request-R484} \ -} -# ||84.234.22.104/ads/$domain=tvcatchup.com (easylistchina+easylist.txt: 41990) -.84.234.22.104/ads/ -# ||84.234.22.104/ads/$domain=tvcatchup.com (easylist.txt: 31505) -.84.234.22.104/ads/ - -#ab2p-block-request-R490 -{+client-header-tagger{ab2p-block-request-R490} \ -} -# /lagou-$domain=uisdc.com (easylistchina+easylist.txt: 1187) -/(.*/)?lagou- -lagou-*. - -#ab2p-block-request-R491 -{+client-header-tagger{ab2p-block-request-R491} \ -} -# ||ustatik.com/_img/promo/takeovers_$domain=ultimate-guitar.com (easylistchina+easylist.txt: 45386) -.ustatik.com/_img/promo/takeovers_ -# ||ustatik.com/_img/promo/takeovers/$domain=ultimate-guitar.com (easylistchina+easylist.txt: 45385) -.ustatik.com/_img/promo/takeovers/ -# ||ustatik.com/_img/promo/takeovers_$domain=ultimate-guitar.com (easylist.txt: 34901) -.ustatik.com/_img/promo/takeovers_ -# ||ustatik.com/_img/promo/takeovers/$domain=ultimate-guitar.com (easylist.txt: 34900) -.ustatik.com/_img/promo/takeovers/ - -#ab2p-block-request-R492 -{+client-header-tagger{ab2p-block-request-R492} \ -} -# .cloudfront.net^$domain=unionpeer.org (advblock.txt: 1852) -/.*\.cloudfront\.net[^\w%.-] -.*.cloudfront.net - -#ab2p-block-request-R493 -{+client-header-tagger{ab2p-block-request-R493} \ -} -# ||postimg.org/998w2sb0b/blackops2hack.gif$domain=unknowncheats.me (easylistchina+easylist.txt: 44425) -.postimg.org/998w2sb0b/blackops2hack\.gif -# ||postimg.org/998w2sb0b/blackops2hack.gif$domain=unknowncheats.me (easylist.txt: 33940) -.postimg.org/998w2sb0b/blackops2hack\.gif - -#ab2p-block-request-R494 -{+client-header-tagger{ab2p-block-request-R494} \ -} -# /bannerpic/*$domain=uopera.net (easylistchina+easylist.txt: 1133) -/(.*/)?bannerpic/.* - -#ab2p-block-request-R495 -{+client-header-tagger{ab2p-block-request-R495} \ -} -# ||short.zain.biz^$popup,domain=up09.com (easylistchina+easylist.txt: 46181) -.short.zain.biz -# ||short.zain.biz^$popup,domain=up09.com (easylist.txt: 35696) -.short.zain.biz - -#ab2p-block-request-R496 -{+client-header-tagger{ab2p-block-request-R496} \ -} -# ||hexupload.com^*.gif$domain=uploadbaz.com (easylistchina+easylist.txt: 43340) -.hexupload.com/.*\.gif -# ||hexupload.com^*.gif$domain=uploadbaz.com (easylist.txt: 32855) -.hexupload.com/.*\.gif - -#ab2p-block-request-R497 -{+client-header-tagger{ab2p-block-request-R497} \ -} -# ||adf.ly^$popup,domain=uploadcore.com|urgrove.com (easylistchina+easylist.txt: 46107) -.adf.ly -# ||adf.ly^$popup,domain=uploadcore.com|urgrove.com (easylist.txt: 35622) -.adf.ly - -#ab2p-block-request-R498 -{+client-header-tagger{ab2p-block-request-R498} \ -} -# ||spyw.com^$domain=uploadlw.com (easylistchina+easylist.txt: 44875) -.spyw.com -# ||vze.com^$domain=uploadlw.com (easylistchina+easylist.txt: 41147) -.vze.com -# ||milanomoda.info^$domain=uploadlw.com (easylistchina+easylist.txt: 40617) -.milanomoda.info -# ||spyw.com^$domain=uploadlw.com (easylist.txt: 34390) -.spyw.com -# ||vze.com^$domain=uploadlw.com (easylist.txt: 30662) -.vze.com -# ||milanomoda.info^$domain=uploadlw.com (easylist.txt: 30132) -.milanomoda.info - -#ab2p-block-request-R500 -{+client-header-tagger{ab2p-block-request-R500} \ -} -# /assets/sidebar/*$domain=v2ex.com (easylistchina+easylist.txt: 1124) -/(.*/)?assets/sidebar/.* - -#ab2p-block-request-R501 -{+client-header-tagger{ab2p-block-request-R501} \ -} -# ||nesk.co^$popup,domain=veehd.com (easylistchina+easylist.txt: 46168) -.nesk.co -# ||nesk.co^$popup,domain=veehd.com (easylist.txt: 35683) -.nesk.co - -#ab2p-block-request-R502 -{+client-header-tagger{ab2p-block-request-R502} \ -} -# /uploads/payad/*$domain=via-midgard.info|via-midgard1.info (advblock.txt: 5401) -/(.*/)?uploads/payad/.* - -#ab2p-block-request-R505 -{+client-header-tagger{ab2p-block-request-R505} \ -} -# ||babereporters.info^$popup,domain=viewcube.org (easylistchina+easylist.txt: 41813) -.babereporters.info -# ||babereporters.info^$popup,domain=viewcube.org (easylist.txt: 31328) -.babereporters.info - -#ab2p-block-request-R507 -{+client-header-tagger{ab2p-block-request-R507} \ -} -# ||jizz.best^$popup,domain=vivo.sx (easylistchina+easylist.txt: 46159) -.jizz.best -# ||jizz.best^$popup,domain=vivo.sx (easylist.txt: 35674) -.jizz.best - -#ab2p-block-request-R508 -{+client-header-tagger{ab2p-block-request-R508} \ -} -# ||safe.vk-saver.in.ua^$domain=vk-saver.in.ua (advblock.txt: 6369) -.safe.vk-saver.in.ua - -#ab2p-block-request-R509 -{+client-header-tagger{ab2p-block-request-R509} \ -} -# ||superfish.com^$domain=vk.com (advblock.txt: 6439) -.superfish.com - -#ab2p-block-request-R512 -{+client-header-tagger{ab2p-block-request-R512} \ -} -# ||alicdn.com^$domain=wangyueblog.com|xiadele.com (easylistchina+easylist.txt: 2079) -.alicdn.com - -#ab2p-block-request-R514 -{+client-header-tagger{ab2p-block-request-R514} \ -} -# ||wegrin.com^$popup,domain=watchfreemovies.ch (easylistchina+easylist.txt: 46211) -.wegrin.com -# ||wegrin.com^$popup,domain=watchfreemovies.ch (easylist.txt: 35726) -.wegrin.com - -#ab2p-block-request-R515 -{+client-header-tagger{ab2p-block-request-R515} \ -} -# ||whtsrv3.com^*==$domain=webhostingtalk.com (easylistchina+easylist.txt: 45598) -.whtsrv3.com/.*== -# /*;sz=*;ord=$domain=webhostingtalk.com (easylistchina+easylist.txt: 41902) -/(.*/)?.*;sz=.*;ord= -/.*;sz=.*;ord= -# ||whtsrv3.com^*==$domain=webhostingtalk.com (easylist.txt: 35113) -.whtsrv3.com/.*== -# /*;sz=*;ord=$domain=webhostingtalk.com (easylist.txt: 31417) -/(.*/)?.*;sz=.*;ord= -/.*;sz=.*;ord= - -#ab2p-block-request-R516 -{+client-header-tagger{ab2p-block-request-R516} \ -} -# ||ientrymail.com/webheadtools$domain=webpronews.com (easylistchina+easylist.txt: 43432) -.ientrymail.com/webheadtools -# ||ientrymail.com/webheadtools$domain=webpronews.com (easylist.txt: 32947) -.ientrymail.com/webheadtools - -#ab2p-block-request-R518 -{+client-header-tagger{ab2p-block-request-R518} \ -} -# ||imgur.com^$domain=wgun.net (easylistchina+easylist.txt: 3482) -.imgur.com - -#ab2p-block-request-R519 -{+client-header-tagger{ab2p-block-request-R519} \ -} -# ||getresponse.com^$domain=wigflip.com (easylistchina+easylist.txt: 43210) -.getresponse.com -# ||getresponse.com^$domain=wigflip.com (easylist.txt: 32725) -.getresponse.com - -#ab2p-block-request-R520 -{+client-header-tagger{ab2p-block-request-R520} \ -} -# ||85.17.254.150^*.php?$domain=wiretarget.com (easylistchina+easylist.txt: 41991) -.85.17.254.150/.*\.php\? -# ||85.17.254.150^*.php?$domain=wiretarget.com (easylist.txt: 31506) -.85.17.254.150/.*\.php\? - -#ab2p-block-request-R521 -{+client-header-tagger{ab2p-block-request-R521} \ -} -# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina+easylist.txt: 4938) -.uploadhouse.com/.*\.gif - -#ab2p-block-request-R522 -{+client-header-tagger{ab2p-block-request-R522} \ -} -# ||212.7.200.164^$domain=wjunction.com (easylistchina+easylist.txt: 41956) -.212.7.200.164 -# ||212.7.200.164^$domain=wjunction.com (easylist.txt: 31471) -.212.7.200.164 - -#ab2p-block-request-R523 -{+client-header-tagger{ab2p-block-request-R523} \ -} -# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1232) -/(.*/)?wp-content/uploads/.*vpn -# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1231) -/(.*/)?wp-content/uploads/.*hidemyass -# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1230) -/(.*/)?Webbanner_ -# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina+easylist.txt: 1113) -/(.*/)?ad_nydus\.png - -#ab2p-block-request-R524 -{+client-header-tagger{ab2p-block-request-R524} \ -} -# /attachment/album/*$domain=www.52hardware.com (easylistchina+easylist.txt: 1127) -/(.*/)?attachment/album/.* - -#ab2p-block-request-R525 -{+client-header-tagger{ab2p-block-request-R525} \ -} -# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina+easylist.txt: 5433) -.zsg.kimi.com.tw -# .html|$domain=www.gamer.com.tw (easylistchina+easylist.txt: 1095) -/.*\.html$ -.*.html - -#ab2p-block-request-R528 -{+client-header-tagger{ab2p-block-request-R528} \ -} -# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina+easylist.txt: 3435) -.img*./.*\.itiexue\.net/2.*\.gif -.img*.itiexue.net/2.*\.gif - -#ab2p-block-request-R529 -{+client-header-tagger{ab2p-block-request-R529} \ -} -# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1084) -.xmds.opd2c.com -# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1073) -.moezone.taobao.com -# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1050) -.acgpost.taobao.com -# /item.htm?$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1040) -/(.*/)?item\.htm\? - -#ab2p-block-request-R531 -{+client-header-tagger{ab2p-block-request-R531} \ -} -# ||meinbonusxxl.de^$domain=xup.in (easylistchina+easylist.txt: 43938) -.meinbonusxxl.de -# ||meinbonusxxl.de^$domain=xup.in (easylist.txt: 33453) -.meinbonusxxl.de - -#ab2p-block-request-R532 -{+client-header-tagger{ab2p-block-request-R532} \ -} -# ||fc2.com^$popup,domain=xvideos.com (easylistchina+easylist.txt: 47075) -.fc2.com -# ||fc2.com^$popup,domain=xvideos.com (easylist.txt: 36590) -.fc2.com - -#ab2p-block-request-R533 -{+client-header-tagger{ab2p-block-request-R533} \ -} -# ||109.201.146.142^$domain=xxxbunker.com (easylistchina+easylist.txt: 46229) -.109.201.146.142 -# ||109.201.146.142^$domain=xxxbunker.com (easylist.txt: 35744) -.109.201.146.142 - -#ab2p-block-request-R534 -{+client-header-tagger{ab2p-block-request-R534} \ -} -# ||yimg.com^*_west.swf$domain=yahoo.com (easylistchina+easylist.txt: 45757) -.yimg.com/.*_west\.swf -# ||yimg.com^*_north.swf$domain=yahoo.com (easylistchina+easylist.txt: 45756) -.yimg.com/.*_north\.swf -# ||yimg.com^*_east.swf$domain=yahoo.com (easylistchina+easylist.txt: 45755) -.yimg.com/.*_east\.swf -# ||yimg.com^*/yfpadobject.js$domain=yahoo.com (easylistchina+easylist.txt: 45754) -.yimg.com/.*/yfpadobject\.js -# ||yimg.com^*/yad*.js$domain=yahoo.com (easylistchina+easylist.txt: 45752) -.yimg.com/.*/yad.*\.js -# ||yimg.com^*/ya-answers-dmros-ssl-min.js$domain=yahoo.com (easylistchina+easylist.txt: 45751) -.yimg.com/.*/ya-answers-dmros-ssl-min\.js -# ||yimg.com^*/darla-secure-pre-min.js$domain=yahoo.com (easylistchina+easylist.txt: 45748) -.yimg.com/.*/darla-secure-pre-min\.js -# ||yimg.com^*/billboardv2r5min.js$domain=yahoo.com (easylistchina+easylist.txt: 45747) -.yimg.com/.*/billboardv2r5min\.js -# ||yimg.com/rq/darla/$domain=yahoo.com (easylistchina+easylist.txt: 45746) -.yimg.com/rq/darla/ -# ||yimg.com/i/i/de/cat/yahoo.html$domain=yahoo.com (easylistchina+easylist.txt: 45744) -.yimg.com/i/i/de/cat/yahoo\.html -# ||yimg.com/hl/ap/*_takeover_$domain=yahoo.com (easylistchina+easylist.txt: 45742) -.yimg.com/hl/ap/.*_takeover_ -# ||yimg.com/cv/eng/*/970x250_$domain=yahoo.com (easylistchina+easylist.txt: 45740) -.yimg.com/cv/eng/.*/970x250_ -# ||yimg.com/cv/eng/*/635x100_$domain=yahoo.com (easylistchina+easylist.txt: 45739) -.yimg.com/cv/eng/.*/635x100_ -# ||yimg.com/cv/eng/*.webm$domain=yahoo.com (easylistchina+easylist.txt: 45738) -.yimg.com/cv/eng/.*\.webm -# ||yimg.com^*_skin_$domain=yahoo.com (easylistchina+easylist.txt: 41224) -.yimg.com/.*_skin_ -# ||yimg.com^*/dianominewwidget2.html$domain=yahoo.com (easylistchina+easylist.txt: 41221) -.yimg.com/.*/dianominewwidget2\.html -# ||yimg.com^*_west.swf$domain=yahoo.com (easylist.txt: 35272) -.yimg.com/.*_west\.swf -# ||yimg.com^*_north.swf$domain=yahoo.com (easylist.txt: 35271) -.yimg.com/.*_north\.swf -# ||yimg.com^*_east.swf$domain=yahoo.com (easylist.txt: 35270) -.yimg.com/.*_east\.swf -# ||yimg.com^*/yfpadobject.js$domain=yahoo.com (easylist.txt: 35269) -.yimg.com/.*/yfpadobject\.js -# ||yimg.com^*/yad*.js$domain=yahoo.com (easylist.txt: 35267) -.yimg.com/.*/yad.*\.js -# ||yimg.com^*/ya-answers-dmros-ssl-min.js$domain=yahoo.com (easylist.txt: 35266) -.yimg.com/.*/ya-answers-dmros-ssl-min\.js -# ||yimg.com^*/darla-secure-pre-min.js$domain=yahoo.com (easylist.txt: 35263) -.yimg.com/.*/darla-secure-pre-min\.js -# ||yimg.com^*/billboardv2r5min.js$domain=yahoo.com (easylist.txt: 35262) -.yimg.com/.*/billboardv2r5min\.js -# ||yimg.com/rq/darla/$domain=yahoo.com (easylist.txt: 35261) -.yimg.com/rq/darla/ -# ||yimg.com/i/i/de/cat/yahoo.html$domain=yahoo.com (easylist.txt: 35259) -.yimg.com/i/i/de/cat/yahoo\.html -# ||yimg.com/hl/ap/*_takeover_$domain=yahoo.com (easylist.txt: 35257) -.yimg.com/hl/ap/.*_takeover_ -# ||yimg.com/cv/eng/*/970x250_$domain=yahoo.com (easylist.txt: 35255) -.yimg.com/cv/eng/.*/970x250_ -# ||yimg.com/cv/eng/*/635x100_$domain=yahoo.com (easylist.txt: 35254) -.yimg.com/cv/eng/.*/635x100_ -# ||yimg.com/cv/eng/*.webm$domain=yahoo.com (easylist.txt: 35253) -.yimg.com/cv/eng/.*\.webm -# ||yimg.com^*_skin_$domain=yahoo.com (easylist.txt: 30739) -.yimg.com/.*_skin_ -# ||yimg.com^*/dianominewwidget2.html$domain=yahoo.com (easylist.txt: 30736) -.yimg.com/.*/dianominewwidget2\.html - -#ab2p-block-request-R535 -{+client-header-tagger{ab2p-block-request-R535} \ -} -# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina+easylist.txt: 5338) -.yytcdn.com/swf/plugins_new\.xml\? - -#ab2p-block-request-R536 -{+client-header-tagger{ab2p-block-request-R536} \ -} -# ||uselessjunk.com^$domain=yoloselfie.com (easylistchina+easylist.txt: 41772) -.uselessjunk.com -# ||uselessjunk.com^$domain=yoloselfie.com (easylist.txt: 31287) -.uselessjunk.com - -#ab2p-block-request-R537 -{+client-header-tagger{ab2p-block-request-R537} \ -} -# ||phncdn.com/cb/youpornwebfront/css/skin.css$domain=youporn.com (easylistchina+easylist.txt: 46677) -.phncdn.com/cb/youpornwebfront/css/skin\.css -# ||phncdn.com/cb/youpornwebfront/css/babes.css$domain=youporn.com (easylistchina+easylist.txt: 46676) -.phncdn.com/cb/youpornwebfront/css/babes\.css -# ||phncdn.com/cb/youpornwebfront/css/skin.css$domain=youporn.com (easylist.txt: 36192) -.phncdn.com/cb/youpornwebfront/css/skin\.css -# ||phncdn.com/cb/youpornwebfront/css/babes.css$domain=youporn.com (easylist.txt: 36191) -.phncdn.com/cb/youpornwebfront/css/babes\.css - -#ab2p-block-request-R539 -{+client-header-tagger{ab2p-block-request-R539} \ -} -# ||ytimg.com^*_banner$domain=youtube.com (easylistchina+easylist.txt: 45794) -.ytimg.com/.*_banner -# ||ytimg.com^*/new_watch_background_*.jpg?$domain=youtube.com (easylistchina+easylist.txt: 45793) -.ytimg.com/.*/new_watch_background_.*\.jpg\? -# ||ytimg.com^*/new_watch_background.jpg?$domain=youtube.com (easylistchina+easylist.txt: 45792) -.ytimg.com/.*/new_watch_background\.jpg\? -# ||espn.vad.go.com^$domain=youtube.com (easylistchina+easylist.txt: 42897) -.espn.vad.go.com -# ||ytimg.com^*_banner$domain=youtube.com (easylist.txt: 35309) -.ytimg.com/.*_banner -# ||ytimg.com^*/new_watch_background_*.jpg?$domain=youtube.com (easylist.txt: 35308) -.ytimg.com/.*/new_watch_background_.*\.jpg\? -# ||ytimg.com^*/new_watch_background.jpg?$domain=youtube.com (easylist.txt: 35307) -.ytimg.com/.*/new_watch_background\.jpg\? -# ||espn.vad.go.com^$domain=youtube.com (easylist.txt: 32412) -.espn.vad.go.com - -#ab2p-block-request-R540 -{+client-header-tagger{ab2p-block-request-R540} \ -} -# ||vids.ma^$domain=youwatch.org (easylistchina+easylist.txt: 45441) -.vids.ma -# ||vids.ma^$domain=youwatch.org (easylist.txt: 34956) -.vids.ma - -#ab2p-block-request-R541 -{+client-header-tagger{ab2p-block-request-R541} \ -} -# /r/video/*$domain=youxi.baidu.com (easylistchina+easylist.txt: 1208) -/(.*/)?r/video/.* - -#ab2p-block-request-R542 -{+client-header-tagger{ab2p-block-request-R542} \ -} -# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina+easylist.txt: 3039) -.googleusercontent.com/.*=w800-h352-no - -#ab2p-block-request-R543 -{+client-header-tagger{ab2p-block-request-R543} \ -} -# ||srcdd.com^$domain=zasv.com (easylistchina+easylist.txt: 4668) -.srcdd.com - -#ab2p-block-request-R544 -{+client-header-tagger{ab2p-block-request-R544} \ -} -# ||ip-ads.de^$domain=zattoo.com (easylistchina+easylist.txt: 43546) -.ip-ads.de -# ||emsservice.de/videos/$domain=zattoo.com (easylistchina+easylist.txt: 42874) -.emsservice.de/videos/ -# ||emsservice.de.s3.amazonaws.com/videos/$domain=zattoo.com (easylistchina+easylist.txt: 42873) -.emsservice.de.s3.amazonaws.com/videos/ -# ||ip-ads.de^$domain=zattoo.com (easylist.txt: 33061) -.ip-ads.de -# ||emsservice.de/videos/$domain=zattoo.com (easylist.txt: 32389) -.emsservice.de/videos/ -# ||emsservice.de.s3.amazonaws.com/videos/$domain=zattoo.com (easylist.txt: 32388) -.emsservice.de.s3.amazonaws.com/videos/ - -#ab2p-block-request-R545 -{+client-header-tagger{ab2p-block-request-R545} \ -} -# ||178.209.48.7^$domain=zerohedge.com (easylistchina+easylist.txt: 41947) -.178.209.48.7 -# ||178.209.48.7^$domain=zerohedge.com (easylist.txt: 31462) -.178.209.48.7 - -#ab2p-block-request-R546 -{+client-header-tagger{ab2p-block-request-R546} \ -} -# ||sinaimg.cn/large/*.jpg?$domain=zhaofuli.club (easylistchina+easylist.txt: 4578) -.sinaimg.cn/large/.*\.jpg\? - -#ab2p-block-request-R547 -{+client-header-tagger{ab2p-block-request-R547} \ -} -# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina+easylist.txt: 1069) +# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina.txt: 1093) .kanzipai.com -#ab2p-block-request-R548 -{+client-header-tagger{ab2p-block-request-R548} \ +#ab2p-block-request-Rn153 +{+client-header-tagger{ab2p-block-request-Rn153} \ } -# ||zloy.im^$domain=zloy.bz (advblock.txt: 6631) -.zloy.im - -#ab2p-block-request-R550 -{+client-header-tagger{ab2p-block-request-R550} \ -} -# ||moneycaptcha.ru/swf/$domain=写械褌褋泻懈泄-屑懈褉.net (advblock.txt: 6082) -.moneycaptcha.ru/swf/ - -#ab2p-block-request-Rn551 -{+client-header-tagger{ab2p-block-request-Rn551} \ -} -# |http://*/gg/$domain=~11185.cn (easylistchina+easylist.txt: 251) +# |http://*/gg/$domain=~11185.cn (easylistchina.txt: 260) /(.*/)?gg/ -#ab2p-block-request-Rn554 -{+client-header-tagger{ab2p-block-request-Rn554} \ +#ab2p-block-request-Rn159 +{+client-header-tagger{ab2p-block-request-Rn159} \ } -# /ad-local.$domain=~ad-local.de (easylistchina+easylist.txt: 11240) -/(.*/)?ad-local\. -ad-local.*. -# /ad-local.$domain=~ad-local.de (easylist.txt: 755) -/(.*/)?ad-local\. -ad-local.*. - -#ab2p-block-request-Rn555 -{+client-header-tagger{ab2p-block-request-Rn555} \ -} -# .com/ad.$domain=~ad-tuning.de (easylistchina+easylist.txt: 10906) -/.*\.com/ad\. -.*.com/ad\. -# .com/ad.$domain=~ad-tuning.de (easylist.txt: 421) -/.*\.com/ad\. -.*.com/ad\. - -#ab2p-block-request-Rn557 -{+client-header-tagger{ab2p-block-request-Rn557} \ -} -# /adfactory.$domain=~adfactory.rocks (easylistchina+easylist.txt: 11943) -/(.*/)?adfactory\. -adfactory.*. -# /adfactory.$domain=~adfactory.rocks (easylist.txt: 1458) -/(.*/)?adfactory\. -adfactory.*. - -#ab2p-block-request-Rn558 -{+client-header-tagger{ab2p-block-request-Rn558} \ -} -# /adhost.$domain=~adhost.dk (easylistchina+easylist.txt: 12036) -/(.*/)?adhost\. -adhost.*. -# /adhost.$domain=~adhost.dk (easylist.txt: 1551) -/(.*/)?adhost\. -adhost.*. - -#ab2p-block-request-Rn559 -{+client-header-tagger{ab2p-block-request-Rn559} \ -} -# /adiro.$domain=~adiro.se (easylistchina+easylist.txt: 12082) -/(.*/)?adiro\. -adiro.*. -# /adiro.$domain=~adiro.se (easylist.txt: 1597) -/(.*/)?adiro\. -adiro.*. - -#ab2p-block-request-Rn560 -{+client-header-tagger{ab2p-block-request-Rn560} \ -} -# .adlabs.$domain=~adlabs.ru (easylistchina+easylist.txt: 10830) -/.*\.adlabs\. -.*.adlabs.*. -# .adlabs.$domain=~adlabs.ru (easylist.txt: 345) -/.*\.adlabs\. -.*.adlabs.*. - -#ab2p-block-request-Rn561 -{+client-header-tagger{ab2p-block-request-Rn561} \ -} -# /adline.$domain=~adline.co.il (easylistchina+easylist.txt: 12118) -/(.*/)?adline\. -adline.*. -# /adline.$domain=~adline.co.il (easylist.txt: 1633) -/(.*/)?adline\. -adline.*. - -#ab2p-block-request-Rn563 -{+client-header-tagger{ab2p-block-request-Rn563} \ -} -# /admax.$domain=~admax.cn|~admax.co|~admax.eu|~admax.fi|~admax.info|~admax.net|~admax.nu|~admax.org|~admax.se|~admax.us (easylistchina+easylist.txt: 12161) -/(.*/)?admax\. -admax.*. -# /admax.$domain=~admax.cn|~admax.co|~admax.eu|~admax.fi|~admax.info|~admax.net|~admax.nu|~admax.org|~admax.se|~admax.us (easylist.txt: 1676) -/(.*/)?admax\. -admax.*. - -#ab2p-block-request-Rn564 -{+client-header-tagger{ab2p-block-request-Rn564} \ -} -# /adnetwork.$domain=~adnetwork.ie (easylistchina+easylist.txt: 12197) -/(.*/)?adnetwork\. -adnetwork.*. -# /adnetwork.$domain=~adnetwork.ie (easylist.txt: 1712) -/(.*/)?adnetwork\. -adnetwork.*. - -#ab2p-block-request-Rn565 -{+client-header-tagger{ab2p-block-request-Rn565} \ -} -# .adnetwork.$domain=~adnetwork.ie|~adnetwork.sk (easylistchina+easylist.txt: 10832) -/.*\.adnetwork\. -.*.adnetwork.*. -# .adnetwork.$domain=~adnetwork.ie|~adnetwork.sk (easylist.txt: 347) -/.*\.adnetwork\. -.*.adnetwork.*. - -#ab2p-block-request-Rn566 -{+client-header-tagger{ab2p-block-request-Rn566} \ -} -# /adnext.$domain=~adnext.pl (easylistchina+easylist.txt: 12206) -/(.*/)?adnext\. -adnext.*. -# /adnext.$domain=~adnext.pl (easylist.txt: 1721) -/(.*/)?adnext\. -adnext.*. - -#ab2p-block-request-Rn567 -{+client-header-tagger{ab2p-block-request-Rn567} \ -} -# /adphoto.$domain=~adphoto.fr (easylistchina+easylist.txt: 12249) -/(.*/)?adphoto\. -adphoto.*. -# /adphoto.$domain=~adphoto.fr (easylist.txt: 1764) -/(.*/)?adphoto\. -adphoto.*. - -#ab2p-block-request-Rn568 -{+client-header-tagger{ab2p-block-request-Rn568} \ -} -# .adresult.$domain=~adresult.ch (easylistchina+easylist.txt: 10835) -/.*\.adresult\. -.*.adresult.*. -# .adresult.$domain=~adresult.ch (easylist.txt: 350) -/.*\.adresult\. -.*.adresult.*. - -#ab2p-block-request-Rn569 -{+client-header-tagger{ab2p-block-request-Rn569} \ -} -# /ads4.$domain=~ads4.city (easylistchina+easylist.txt: 12674) -/(.*/)?ads4\. -ads4.*. -# /ads4.$domain=~ads4.city (easylist.txt: 2189) -/(.*/)?ads4\. -ads4.*. - -#ab2p-block-request-Rn570 -{+client-header-tagger{ab2p-block-request-Rn570} \ -} -# .adService.$domain=~adservice.com (easylistchina+easylist.txt: 10860) -/.*\.adService\. -.*.adService.*. -# .adService.$domain=~adservice.com (easylist.txt: 375) -/.*\.adService\. -.*.adService.*. - -#ab2p-block-request-Rn573 -{+client-header-tagger{ab2p-block-request-Rn573} \ -} -# ://adv.$domain=~adv.ru|~adv.vg|~advids.co|~farapp.com|~forex-tv-online.com|~typeform.com|~welaika.com (easylistchina+easylist.txt: 16307) -/.*://adv\. -adv.*. -# ://adv.$domain=~adv.ru|~adv.vg|~advids.co|~farapp.com|~forex-tv-online.com|~typeform.com|~welaika.com (easylist.txt: 5822) -/.*://adv\. -adv.*. - -#ab2p-block-request-Rn574 -{+client-header-tagger{ab2p-block-request-Rn574} \ -} -# .advert.$domain=~advert.ly (easylistchina+easylist.txt: 10866) -/.*\.advert\. -.*.advert.*. -# .advert.$domain=~advert.ly (easylist.txt: 381) -/.*\.advert\. -.*.advert.*. - -#ab2p-block-request-Rn575 -{+client-header-tagger{ab2p-block-request-Rn575} \ -} -# /advertise.$domain=~advertise.apartments.com|~advertise.bingads.microsoft.com (easylistchina+easylist.txt: 13271) -/(.*/)?advertise\. -advertise.*. -# /advertise.$domain=~advertise.apartments.com|~advertise.bingads.microsoft.com (easylist.txt: 2786) -/(.*/)?advertise\. -advertise.*. - -#ab2p-block-request-Rn576 -{+client-header-tagger{ab2p-block-request-Rn576} \ -} -# /advertiser.$domain=~advertiser.growmobile.com|~panel.rightflow.com (easylistchina+easylist.txt: 13295) -/(.*/)?advertiser\. -advertiser.*. -# /advertiser.$domain=~advertiser.growmobile.com|~panel.rightflow.com (easylist.txt: 2810) -/(.*/)?advertiser\. -advertiser.*. - -#ab2p-block-request-Rn577 -{+client-header-tagger{ab2p-block-request-Rn577} \ -} -# /adworks.$domain=~adworks.co.il (easylistchina+easylist.txt: 13406) -/(.*/)?adworks\. -adworks.*. -# /adworks.$domain=~adworks.co.il (easylist.txt: 2921) -/(.*/)?adworks\. -adworks.*. - -#ab2p-block-request-Rn578 -{+client-header-tagger{ab2p-block-request-Rn578} \ -} -# /adx.$domain=~adx.uk.com (easylistchina+easylist.txt: 13414) -/(.*/)?adx\. -adx.*. -# /adx.$domain=~adx.uk.com (easylist.txt: 2929) -/(.*/)?adx\. -adx.*. - -#ab2p-block-request-Rn581 -{+client-header-tagger{ab2p-block-request-Rn581} \ -} -# /annonse.$domain=~annonse.nu (easylistchina+easylist.txt: 13525) -/(.*/)?annonse\. -annonse.*. -# /annonse.$domain=~annonse.nu (easylist.txt: 3040) -/(.*/)?annonse\. -annonse.*. - -#ab2p-block-request-Rn583 -{+client-header-tagger{ab2p-block-request-Rn583} \ -} -# /asyncjs.$domain=~asyncjs.com (easylistchina+easylist.txt: 13562) -/(.*/)?asyncjs\. -asyncjs.*. -# /asyncjs.$domain=~asyncjs.com (easylist.txt: 3077) -/(.*/)?asyncjs\. -asyncjs.*. - -#ab2p-block-request-Rn585 -{+client-header-tagger{ab2p-block-request-Rn585} \ -} -# /advertiser/*$domain=~bingads.microsoft.com|~mobileapptracking.com|~trialpay.com (easylistchina+easylist.txt: 13296) -/(.*/)?advertiser/.* -# /advertiser/*$domain=~bingads.microsoft.com|~mobileapptracking.com|~trialpay.com (easylist.txt: 2811) -/(.*/)?advertiser/.* - -#ab2p-block-request-Rn586 -{+client-header-tagger{ab2p-block-request-Rn586} \ -} -# /blockadblock.$domain=~blockadblock.com (easylistchina+easylist.txt: 17022) -/(.*/)?blockadblock\. -blockadblock.*. -# /blockadblock.$domain=~blockadblock.com (easylist.txt: 6537) -/(.*/)?blockadblock\. -blockadblock.*. - -#ab2p-block-request-Rn588 -{+client-header-tagger{ab2p-block-request-Rn588} \ -} -# ||bt.kiev.ua^$domain=~bt.kiev.ua (advblock.txt: 873) -.bt.kiev.ua - -#ab2p-block-request-Rn589 -{+client-header-tagger{ab2p-block-request-Rn589} \ -} -# ||carnage.ru^$popup,domain=~carnage.ru|~karnage.ru|~sesterce.ru (advblock.txt: 126) -.carnage.ru - -#ab2p-block-request-Rn756nt -{+client-header-tagger{ab2p-block-request-Rn756nt} \ -} -# .com/ad/$~third-party,domain=~channel4.com|~mediaplex.com (easylistchina+easylist.txt: 10908) -/.*\.com/ad/ -.*.com/ad/ -# .com/ad/$~third-party,domain=~channel4.com|~mediaplex.com (easylist.txt: 423) -/.*\.com/ad/ -.*.com/ad/ - -#ab2p-block-request-Rn591 -{+client-header-tagger{ab2p-block-request-Rn591} \ -} -# ||clickad.com.ua^$domain=~clickad.com.ua (advblock.txt: 895) -.clickad.com.ua - -#ab2p-block-request-Rn592 -{+client-header-tagger{ab2p-block-request-Rn592} \ -} -# ||complexmedianetwork.com/cdn/agenda.complex.com/$domain=~complex.com (easylistchina+easylist.txt: 39981) -.complexmedianetwork.com/cdn/agenda\.complex\.com/ -# ||complexmedianetwork.com/cdn/agenda.complex.com/$domain=~complex.com (easylist.txt: 29496) -.complexmedianetwork.com/cdn/agenda\.complex\.com/ - -#ab2p-block-request-Rn596 -{+client-header-tagger{ab2p-block-request-Rn596} \ -} -# /duilian.$domain=~duilian.msra.cn (easylistchina+easylist.txt: 142) +# /duilian.$domain=~duilian.msra.cn (easylistchina.txt: 145) /(.*/)?duilian\. duilian.*. -#ab2p-block-request-Rn599 -{+client-header-tagger{ab2p-block-request-Rn599} \ +#ab2p-block-request-Rn161 +{+client-header-tagger{ab2p-block-request-Rn161} \ } -# /etology.$domain=~etology.com (easylistchina+easylist.txt: 14203) -/(.*/)?etology\. -etology.*. -# /etology.$domain=~etology.com (easylist.txt: 3718) -/(.*/)?etology\. -etology.*. - -#ab2p-block-request-Rn600 -{+client-header-tagger{ab2p-block-request-Rn600} \ -} -# ||encyclopediadramatica.es/edf/$domain=~forum.encyclopediadramatica.es (easylistchina+easylist.txt: 42877) -.encyclopediadramatica.es/edf/ -# ||encyclopediadramatica.es/edf/$domain=~forum.encyclopediadramatica.es (easylist.txt: 32392) -.encyclopediadramatica.es/edf/ - -#ab2p-block-request-Rn601 -{+client-header-tagger{ab2p-block-request-Rn601} \ -} -# ||encyclopediadramatica.se/edf/$domain=~forum.encyclopediadramatica.se (easylistchina+easylist.txt: 42880) -.encyclopediadramatica.se/edf/ -# ||encyclopediadramatica.se/edf/$domain=~forum.encyclopediadramatica.se (easylist.txt: 32395) -.encyclopediadramatica.se/edf/ - -#ab2p-block-request-Rn602 -{+client-header-tagger{ab2p-block-request-Rn602} \ -} -# ||amazonaws.com/fotomag/$domain=~fotomag.com.ua (advblock.txt: 789) -.amazonaws.com/fotomag/ - -#ab2p-block-request-Rn604 -{+client-header-tagger{ab2p-block-request-Rn604} \ -} -# /floatad.$domain=~fwxgx.com (easylistchina+easylist.txt: 147) +# /floatad.$domain=~fwxgx.com (easylistchina.txt: 151) /(.*/)?floatad\. floatad.*. -#ab2p-block-request-Rn605 -{+client-header-tagger{ab2p-block-request-Rn605} \ +#ab2p-block-request-Rn163 +{+client-header-tagger{ab2p-block-request-Rn163} \ } -# ||online.ua/goods/$domain=~goods.ua (advblock.txt: 6174) -.online.ua/goods/ - -#ab2p-block-request-Rn606 -{+client-header-tagger{ab2p-block-request-Rn606} \ -} -# ||d2a0bnlkc0czvp.cloudfront.net^$domain=~gowatchit.com (easylistchina+easylist.txt: 40042) -.d2a0bnlkc0czvp.cloudfront.net -# ||d2a0bnlkc0czvp.cloudfront.net^$domain=~gowatchit.com (easylist.txt: 29557) -.d2a0bnlkc0czvp.cloudfront.net - -#ab2p-block-request-Rn608 -{+client-header-tagger{ab2p-block-request-Rn608} \ -} -# ||hitex.com.ua^$domain=~hitex.com.ua (advblock.txt: 1057) -.hitex.com.ua - -#ab2p-block-request-Rn609 -{+client-header-tagger{ab2p-block-request-Rn609} \ -} -# /advertisers/*$domain=~home.tapjoy.com|~panel.rightflow.com (easylistchina+easylist.txt: 13298) -/(.*/)?advertisers/.* -# /advertisers/*$domain=~home.tapjoy.com|~panel.rightflow.com (easylist.txt: 2813) -/(.*/)?advertisers/.* - -#ab2p-block-request-Rn610 -{+client-header-tagger{ab2p-block-request-Rn610} \ -} -# ||108.166.93.81/rotate/$domain=~infowars.com.ip (easylistchina+easylist.txt: 39579) -.108.166.93.81/rotate/ -# ||108.166.93.81/rotate/$domain=~infowars.com.ip (easylist.txt: 29094) -.108.166.93.81/rotate/ - -#ab2p-block-request-Rn611 -{+client-header-tagger{ab2p-block-request-Rn611} \ -} -# ||itsellservice.com.ua^$domain=~itsellservice.com.ua (advblock.txt: 1109) -.itsellservice.com.ua - -#ab2p-block-request-Rn612 -{+client-header-tagger{ab2p-block-request-Rn612} \ -} -# ||itsmygame.com.ua^$domain=~itsmygame.com.ua (advblock.txt: 1110) -.itsmygame.com.ua - -#ab2p-block-request-Rn614 -{+client-header-tagger{ab2p-block-request-Rn614} \ -} -# ||go.jetswap.com^$domain=~jetswap.com (advblock.txt: 2318) -.go.jetswap.com - -#ab2p-block-request-Rn615 -{+client-header-tagger{ab2p-block-request-Rn615} \ -} -# ||bw.pronto.ru^$domain=~job.ru (advblock.txt: 2068) -.bw.pronto.ru - -#ab2p-block-request-Rn617 -{+client-header-tagger{ab2p-block-request-Rn617} \ -} -# ||kinofilms.com.ua^$domain=~kinofilms.com.ua (advblock.txt: 1131) -.kinofilms.com.ua - -#ab2p-block-request-Rn619 -{+client-header-tagger{ab2p-block-request-Rn619} \ -} -# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina+easylist.txt: 4409) +# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina.txt: 4399) .rm.sina.com.cn -#ab2p-block-request-Rn620 -{+client-header-tagger{ab2p-block-request-Rn620} \ +#ab2p-block-request-Rn164 +{+client-header-tagger{ab2p-block-request-Rn164} \ } -# .leads.su/$domain=~leads.su (advblock.txt: 1853) -/.*\.leads\.su/ -.*.leads.su +# ||lianmeng.360.cn^$domain=~lianmeng.360.cn (easylistchina.txt: 861) +.lianmeng.360.cn -#ab2p-block-request-Rn622 -{+client-header-tagger{ab2p-block-request-Rn622} \ +#ab2p-block-request-Rn166 +{+client-header-tagger{ab2p-block-request-Rn166} \ } -# ||magnet.kiev.ua^$domain=~magnet.kiev.ua (advblock.txt: 1193) -.magnet.kiev.ua - -#ab2p-block-request-Rn624 -{+client-header-tagger{ab2p-block-request-Rn624} \ -} -# ||mambo.kiev.ua^$domain=~mambo.kiev.ua (advblock.txt: 1196) -.mambo.kiev.ua - -#ab2p-block-request-Rn627 -{+client-header-tagger{ab2p-block-request-Rn627} \ -} -# -advertise.$domain=~mb-advertise.gr (easylistchina+easylist.txt: 10692) -/.*-advertise\. -.*-advertise.*. -# -advertise.$domain=~mb-advertise.gr (easylist.txt: 207) -/.*-advertise\. -.*-advertise.*. - -#ab2p-block-request-Rn757nt -{+client-header-tagger{ab2p-block-request-Rn757nt} \ -} -# /adfarm.$~third-party,domain=~mediaplex.com (easylistchina+easylist.txt: 11946) -/(.*/)?adfarm\. -adfarm.*. -# /adfarm.$~third-party,domain=~mediaplex.com (easylist.txt: 1461) -/(.*/)?adfarm\. -adfarm.*. - -#ab2p-block-request-Rn629 -{+client-header-tagger{ab2p-block-request-Rn629} \ -} -# ||meganews.kiev.ua^$domain=~meganews.kiev.ua (advblock.txt: 1221) -.meganews.kiev.ua - -#ab2p-block-request-Rn630 -{+client-header-tagger{ab2p-block-request-Rn630} \ -} -# ||anyfiles.ru^$domain=~moi-progi.ru (advblock.txt: 796) -.anyfiles.ru - -#ab2p-block-request-Rn633 -{+client-header-tagger{ab2p-block-request-Rn633} \ -} -# //rs.mail.ru/b*.swf|$domain=~my.mail.ru (advblock.txt: 6809) -rs.mail.ru/b.*\.swf$ - -#ab2p-block-request-Rn634 -{+client-header-tagger{ab2p-block-request-Rn634} \ -} -# /mydirtyhobby.$domain=~mydirtyhobby.com|~mydirtyhobby.de (easylistchina+easylist.txt: 15052) -/(.*/)?mydirtyhobby\. -mydirtyhobby.*. -# /mydirtyhobby.$domain=~mydirtyhobby.com|~mydirtyhobby.de (easylist.txt: 4567) -/(.*/)?mydirtyhobby\. -mydirtyhobby.*. - -#ab2p-block-request-Rn635 -{+client-header-tagger{ab2p-block-request-Rn635} \ -} -# /images/ad.$domain=~ngohq.com (easylistchina+easylist.txt: 14654) -/(.*/)?images/ad\. -# /images/ad.$domain=~ngohq.com (easylist.txt: 4169) -/(.*/)?images/ad\. - -#ab2p-block-request-Rn636 -{+client-header-tagger{ab2p-block-request-Rn636} \ -} -# ||novostimira.$domain=~novostimira.com|~novostimira.com.ua|~novostimira.ua (advblock.txt: 1806) -.novostimira.*. - -#ab2p-block-request-Rn638 -{+client-header-tagger{ab2p-block-request-Rn638} \ -} -# /advertising-$domain=~outbrain.com (easylistchina+easylist.txt: 13302) -/(.*/)?advertising- -advertising-*. -# /advertising-$domain=~outbrain.com (easylist.txt: 2817) -/(.*/)?advertising- -advertising-*. - -#ab2p-block-request-Rn639 -{+client-header-tagger{ab2p-block-request-Rn639} \ -} -# ?advertiserid=$domain=~outbrain.com|~seek.co.nz|~seek.com.au (easylistchina+easylist.txt: 16419) -/.*\?advertiserid= -# ?advertiserid=$domain=~outbrain.com|~seek.co.nz|~seek.com.au (easylist.txt: 5934) -/.*\?advertiserid= - -#ab2p-block-request-Rn641 -{+client-header-tagger{ab2p-block-request-Rn641} \ -} -# ||173.199.120.7/delivery/$domain=~p2p.adserver.ip (easylistchina+easylist.txt: 39584) -.173.199.120.7/delivery/ -# ||173.199.120.7/delivery/$domain=~p2p.adserver.ip (easylist.txt: 29099) -.173.199.120.7/delivery/ - -#ab2p-block-request-Rn642 -{+client-header-tagger{ab2p-block-request-Rn642} \ -} -# ?advertiser_id=$domain=~panel.rightflow.com (easylistchina+easylist.txt: 16418) -/.*\?advertiser_id= -# ?advertiser_id=$domain=~panel.rightflow.com (easylist.txt: 5933) -/.*\?advertiser_id= - -#ab2p-block-request-Rn643 -{+client-header-tagger{ab2p-block-request-Rn643} \ -} -# /adwords.$domain=~ppc.ee (easylistchina+easylist.txt: 13402) -/(.*/)?adwords\. -adwords.*. -# /adwords.$domain=~ppc.ee (easylist.txt: 2917) -/(.*/)?adwords\. -adwords.*. - -#ab2p-block-request-Rn644 -{+client-header-tagger{ab2p-block-request-Rn644} \ -} -# ||qs.kiev.ua^$domain=~qs.kiev.ua (advblock.txt: 1400) -.qs.kiev.ua - -#ab2p-block-request-Rn645 -{+client-header-tagger{ab2p-block-request-Rn645} \ -} -# /redtram.$domain=~redtram.com|~redtram.fm (advblock.txt: 522) -/(.*/)?redtram\. -redtram.*. -# .redtram.$domain=~redtram.com|~redtram.fm (advblock.txt: 328) -/.*\.redtram\. -.*.redtram.*. - -#ab2p-block-request-Rn646 -{+client-header-tagger{ab2p-block-request-Rn646} \ -} -# ||rozetka.com.ua^$domain=~rozetka.com.ua (advblock.txt: 1451) -.rozetka.com.ua - -#ab2p-block-request-Rn647 -{+client-header-tagger{ab2p-block-request-Rn647} \ -} -# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina+easylist.txt: 245) +# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina.txt: 254) /.*\.tw/ad/ .*.tw/ad/ -#ab2p-block-request-Rn648 -{+client-header-tagger{ab2p-block-request-Rn648} \ +#ab2p-block-request-Rn167 +{+client-header-tagger{ab2p-block-request-Rn167} \ } -# |http://*/js/ad.$domain=~sac.net.cn (easylistchina+easylist.txt: 255) +# |http://*/js/ad.$domain=~sac.net.cn (easylistchina.txt: 264) /(.*/)?js/ad\. -#ab2p-block-request-Rn650 -{+client-header-tagger{ab2p-block-request-Rn650} \ +#ab2p-block-request-Rn169 +{+client-header-tagger{ab2p-block-request-Rn169} \ } -# ||sedo.cachefly.net^$domain=~sedoparking.com (easylistchina+easylist.txt: 44709) -.sedo.cachefly.net -# ||sedo.cachefly.net^$domain=~sedoparking.com (easylist.txt: 34224) -.sedo.cachefly.net - -#ab2p-block-request-Rn651 -{+client-header-tagger{ab2p-block-request-Rn651} \ -} -# ||seo24.com.ua^$domain=~seo24.com.ua (advblock.txt: 1489) -.seo24.com.ua - -#ab2p-block-request-Rn652 -{+client-header-tagger{ab2p-block-request-Rn652} \ -} -# ||sextalk.com.ru^$domain=~sextalk.com.ru (advblock.txt: 1507) -.sextalk.com.ru - -#ab2p-block-request-Rn654 -{+client-header-tagger{ab2p-block-request-Rn654} \ -} -# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina+easylist.txt: 5001) +# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina.txt: 4978) .wan.sogoucdn.com/cdn/flash/ -#ab2p-block-request-Rn655 -{+client-header-tagger{ab2p-block-request-Rn655} \ +#ab2p-block-request-Rn170 +{+client-header-tagger{ab2p-block-request-Rn170} \ } -# /homepage_ads/*$domain=~swedishbeauty.com (easylistchina+easylist.txt: 14557) -/(.*/)?homepage_ads/.* -# /homepage_ads/*$domain=~swedishbeauty.com (easylist.txt: 4072) -/(.*/)?homepage_ads/.* - -#ab2p-block-request-Rn656 -{+client-header-tagger{ab2p-block-request-Rn656} \ -} -# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina+easylist.txt: 3370) +# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina.txt: 3355) .ifengimg.com/mappa/ -#ab2p-block-request-Rn659 -{+client-header-tagger{ab2p-block-request-Rn659} \ +#ab2p-block-request-Rn171 +{+client-header-tagger{ab2p-block-request-Rn171} \ } -# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina+easylist.txt: 73) +# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina.txt: 70) .s.yimg.com/.*/flash_general_ -#ab2p-block-request-Rn660 -{+client-header-tagger{ab2p-block-request-Rn660} \ +#ab2p-block-request-Rn172 +{+client-header-tagger{ab2p-block-request-Rn172} \ } -# /ad4.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11481) -/(.*/)?ad4\. -ad4.*. -# /ad3.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11466) -/(.*/)?ad3\. -ad3.*. -# /ad2.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11451) -/(.*/)?ad2\. -ad2.*. -# /ad1.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11430) -/(.*/)?ad1\. -ad1.*. -# /ad0.$domain=~vereinslinie.de (easylistchina+easylist.txt: 11425) -/(.*/)?ad0\. -ad0.*. -# /ad4.$domain=~vereinslinie.de (easylist.txt: 996) -/(.*/)?ad4\. -ad4.*. -# /ad3.$domain=~vereinslinie.de (easylist.txt: 981) -/(.*/)?ad3\. -ad3.*. -# /ad2.$domain=~vereinslinie.de (easylist.txt: 966) -/(.*/)?ad2\. -ad2.*. -# /ad1.$domain=~vereinslinie.de (easylist.txt: 945) -/(.*/)?ad1\. -ad1.*. -# /ad0.$domain=~vereinslinie.de (easylist.txt: 940) -/(.*/)?ad0\. -ad0.*. - -#ab2p-block-request-Rn661 -{+client-header-tagger{ab2p-block-request-Rn661} \ -} -# ||viprelax.com.ua^$domain=~viprelax.com.ua (advblock.txt: 1679) -.viprelax.com.ua - -#ab2p-block-request-Rn663 -{+client-header-tagger{ab2p-block-request-Rn663} \ -} -# ||wau.com.ua^$domain=~wau.com.ua (advblock.txt: 1707) -.wau.com.ua - -#ab2p-block-request-Rn664 -{+client-header-tagger{ab2p-block-request-Rn664} \ -} -# ||wave525.com.ua^$domain=~wave525.com.ua (advblock.txt: 1708) -.wave525.com.ua - -#ab2p-block-request-Rn665 -{+client-header-tagger{ab2p-block-request-Rn665} \ -} -# ||worldofrest.com.ua^$domain=~worldofrest.com.ua (advblock.txt: 1736) -.worldofrest.com.ua - -#ab2p-block-request-Rn666 -{+client-header-tagger{ab2p-block-request-Rn666} \ -} -# ||cpm.wargaming.net^$popup,domain=~worldoftanks.ru (advblock.txt: 134) -.cpm.wargaming.net - -#ab2p-block-request-Rn668 -{+client-header-tagger{ab2p-block-request-Rn668} \ -} -# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina+easylist.txt: 4056) +# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina.txt: 4047) .news.sina.com.cn/pfpnews/js/libweb\.js -#ab2p-block-request-Rn669 -{+client-header-tagger{ab2p-block-request-Rn669} \ +#ab2p-block-request-Rn173 +{+client-header-tagger{ab2p-block-request-Rn173} \ } -# /xtendmedia.$domain=~xtendmedia.dk (easylistchina+easylist.txt: 16257) -/(.*/)?xtendmedia\. -xtendmedia.*. -# /xtendmedia.$domain=~xtendmedia.dk (easylist.txt: 5772) -/(.*/)?xtendmedia\. -xtendmedia.*. - -#ab2p-block-request-Rn670 -{+client-header-tagger{ab2p-block-request-Rn670} \ -} -# ||yimg.com/no/$domain=~yahoo.com (easylistchina+easylist.txt: 5262) +# ||yimg.com/no/$domain=~yahoo.com (easylistchina.txt: 5236) .yimg.com/no/ -#ab2p-block-request-Rn671 -{+client-header-tagger{ab2p-block-request-Rn671} \ +#ab2p-block-request-Rn174 +{+client-header-tagger{ab2p-block-request-Rn174} \ } -# /picad/*$domain=~ychr.com (easylistchina+easylist.txt: 195) +# /picad/*$domain=~ychr.com (easylistchina.txt: 203) /(.*/)?picad/.* -#ab2p-block-request-Rn673 -{+client-header-tagger{ab2p-block-request-Rn673} \ -} -# ||173.245.86.115^$domain=~yobt.com.ip (easylistchina+easylist.txt: 38689) -.173.245.86.115 -# ||173.245.86.115^$domain=~yobt.com.ip (easylist.txt: 28204) -.173.245.86.115 - -#ab2p-block-request-Rn674 -{+client-header-tagger{ab2p-block-request-Rn674} \ -} -# _reklama_$domain=~youtube.com (easylistchina+easylist.txt: 16895) -/.*_reklama_ -# _reklama_$domain=~youtube.com (easylist.txt: 6410) -/.*_reklama_ - -#ab2p-block-request-Rn675 -{+client-header-tagger{ab2p-block-request-Rn675} \ -} -# ||zzima.com^$popup,domain=~zzima.com (advblock.txt: 199) -.zzima.com - -#ab2p-block-request-Rnt -{+client-header-tagger{ab2p-block-request-Rnt} \ -} -# ||exashare.com^*&h=$popup,~third-party (easylistchina+easylist.txt: 46126) -.exashare.com/.*&h= -# ||askandyaboutclothes.com/images/$~third-party (easylistchina+easylist.txt: 42230) -.askandyaboutclothes.com/images/ -# /static/js/4728ba74bc.js$~third-party (easylistchina+easylist.txt: 15858) -/(.*/)?static/js/4728ba74bc\.js -# ||ppvlj.com^$~third-party (advblock.txt: 2786) -.ppvlj.com -# ||exashare.com^*&h=$popup,~third-party (easylist.txt: 35641) -.exashare.com/.*&h= -# ||askandyaboutclothes.com/images/$~third-party (easylist.txt: 31745) -.askandyaboutclothes.com/images/ -# /static/js/4728ba74bc.js$~third-party (easylist.txt: 5373) -/(.*/)?static/js/4728ba74bc\.js - #ab2p-block-request-Rt {+client-header-tagger{ab2p-block-request-Rt} \ } -# ||streamtunerhd.com/signup?$popup,third-party (easylistchina+easylist.txt: 46188) -.streamtunerhd.com/signup\? -# ||yuvutu.com^$popup,third-party (easylistchina+easylist.txt: 41893) -.yuvutu.com -# ||xvideoslive.com/landing/$popup,third-party (easylistchina+easylist.txt: 41892) -.xvideoslive.com/landing/ -# ||xvideoslive.com/?AFNO$popup,third-party (easylistchina+easylist.txt: 41891) -.xvideoslive.com/\?AFNO -# ||xrounds.com/?lmid=$popup,third-party (easylistchina+easylist.txt: 41890) -.xrounds.com/\?lmid= -# ||xdating.com/search/$popup,third-party (easylistchina+easylist.txt: 41889) -.xdating.com/search/ -# ||webcams.com^$popup,third-party (easylistchina+easylist.txt: 41888) -.webcams.com -# ||vs3.com^$popup,third-party (easylistchina+easylist.txt: 41886) -.vs3.com -# ||visit-x.net/cams/*.html?*&s=*&ws=$popup,third-party (easylistchina+easylist.txt: 41885) -.visit-x.net/cams/.*\.html\?.*&s=.*&ws= -# ||videosz.com^*&tracker_id=$popup,third-party (easylistchina+easylist.txt: 41884) -.videosz.com/.*&tracker_id= -# ||videosz.com/search.php$popup,third-party (easylistchina+easylist.txt: 41883) -.videosz.com/search\.php -# ||twistys.com/track/$popup,third-party (easylistchina+easylist.txt: 41879) -.twistys.com/track/ -# ||tube911.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylistchina+easylist.txt: 41878) -.tube911.com/scj/cgi/out\.php\?scheme_id= -# ||tour.mrskin.com^$popup,third-party (easylistchina+easylist.txt: 41877) -.tour.mrskin.com -# ||teenslikeitbig.com/track/$popup,third-party (easylistchina+easylist.txt: 41874) -.teenslikeitbig.com/track/ -# ||socialflirt.com/go/$popup,third-party (easylistchina+easylist.txt: 41872) -.socialflirt.com/go/ -# ||sexsearchcom.com^$popup,third-party (easylistchina+easylist.txt: 41871) -.sexsearchcom.com -# ||sexier.com/services/adsredirect.ashx?$popup,third-party (easylistchina+easylist.txt: 41869) -.sexier.com/services/adsredirect\.ashx\? -# ||rudefinder.com/?$popup,third-party (easylistchina+easylist.txt: 41865) -.rudefinder.com/\? -# ||redlightcenter.com/?trq=$popup,third-party (easylistchina+easylist.txt: 41863) -.redlightcenter.com/\?trq= -# ||postselfies.com^*?nats=$popup,third-party (easylistchina+easylist.txt: 41862) -.postselfies.com/.*\?nats= -# ||pornme.com^*.php?ref=$popup,third-party (easylistchina+easylist.txt: 41858) -.pornme.com/.*\.php\?ref= -# ||online.mydirtyhobby.com^*?naff=$popup,third-party (easylistchina+easylist.txt: 41855) -.online.mydirtyhobby.com/.*\?naff= -# ||mydirtyhobby.com/?$popup,third-party (easylistchina+easylist.txt: 41853) -.mydirtyhobby.com/\? -# ||mjtlive.com/exports/golive/?lp=*&afno=$popup,third-party (easylistchina+easylist.txt: 41852) -.mjtlive.com/exports/golive/\?lp=.*&afno= -# ||media.campartner.com^*?cp=$popup,third-party (easylistchina+easylist.txt: 41850) -.media.campartner.com/.*\?cp= -# ||media.campartner.com/index.php?cpID=*&cpMID=$popup,third-party (easylistchina+easylist.txt: 41849) -.media.campartner.com/index\.php\?cpID=.*&cpMID= -# ||livejasmin.com^$popup,third-party (easylistchina+easylist.txt: 41848) -.livejasmin.com -# ||linkfame.com^*/go.php?$popup,third-party (easylistchina+easylist.txt: 41846) -.linkfame.com/.*/go\.php\? -# ||letstryanal.com/track/$popup,third-party (easylistchina+easylist.txt: 41845) -.letstryanal.com/track/ -# ||join.teamskeet.com/track/$popup,third-party (easylistchina+easylist.txt: 41842) -.join.teamskeet.com/track/ -# ||join.filthydatez.com^$popup,third-party (easylistchina+easylist.txt: 41841) -.join.filthydatez.com -# ||jasmin.com^$popup,third-party (easylistchina+easylist.txt: 41840) -.jasmin.com -# ||ipornia.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylistchina+easylist.txt: 41839) -.ipornia.com/scj/cgi/out\.php\?scheme_id= -# ||imlive.com/wmaster.ashx?$popup,third-party (easylistchina+easylist.txt: 41838) -.imlive.com/wmaster\.ashx\? -# ||hqtubevideos.com/play.html$popup,third-party (easylistchina+easylist.txt: 41836) -.hqtubevideos.com/play\.html -# ||fuckbooknet.net/dating/$popup,third-party (easylistchina+easylist.txt: 41831) -.fuckbooknet.net/dating/ -# ||flirt4free.com/_special/pops/$popup,third-party (easylistchina+easylist.txt: 41829) -.flirt4free.com/_special/pops/ -# ||fleshlight-international.eu^*?link=$popup,third-party (easylistchina+easylist.txt: 41827) -.fleshlight-international.eu/.*\?link= -# ||exposedwebcams.com/?token=$popup,third-party (easylistchina+easylist.txt: 41823) -.exposedwebcams.com/\?token= -# ||devilsfilm.com/track/go.php?$popup,third-party (easylistchina+easylist.txt: 41821) -.devilsfilm.com/track/go\.php\? -# ||cpm.amateurcommunity.*?cp=$popup,third-party (easylistchina+easylist.txt: 41820) -.cpm.amateurcommunity.*./.*\?cp= -# ||benaughty.com/aff.php?$popup,third-party (easylistchina+easylist.txt: 41814) -.benaughty.com/aff\.php\? -# ||babecams.net/landing/$popup,third-party (easylistchina+easylist.txt: 41812) -.babecams.net/landing/ -# ||amarotic.com^*?wmid=$popup,third-party (easylistchina+easylist.txt: 41811) -.amarotic.com/.*\?wmid= -# ||amarotic.com/?$popup,third-party (easylistchina+easylist.txt: 41810) -.amarotic.com/\? -# ||adultfriendfinder.com/go/$popup,third-party (easylistchina+easylist.txt: 41809) -.adultfriendfinder.com/go/ -# ||adultfriendfinder.com/banners/$popup,third-party (easylistchina+easylist.txt: 41808) -.adultfriendfinder.com/banners/ -# ||777livecams.com/?id=$popup,third-party (easylistchina+easylist.txt: 41807) -.777livecams.com/\?id= -# ||1800freecams.com^$popup,third-party (easylistchina+easylist.txt: 41805) -.1800freecams.com -# ||withbinaryoptions.com^$popup,third-party (easylistchina+easylist.txt: 41376) -.withbinaryoptions.com -# ||with-binaryoption.com^$popup,third-party (easylistchina+easylist.txt: 41375) -.with-binaryoption.com -# ||widget.yavli.com^$popup,third-party (easylistchina+easylist.txt: 41374) -.widget.yavli.com -# ||wealth-at-home-millions.com^$popup,third-party (easylistchina+easylist.txt: 41372) -.wealth-at-home-millions.com -# ||virtuagirl.com/landing/$popup,third-party (easylistchina+easylist.txt: 41371) -.virtuagirl.com/landing/ -# ||vidds.net/?s=promo$popup,third-party (easylistchina+easylist.txt: 41370) -.vidds.net/\?s=promo -# ||urmediazone.com/play?ref=$popup,third-party (easylistchina+easylist.txt: 41368) -.urmediazone.com/play\?ref= -# ||tripadvisor.*/HotelLander?$popup,third-party (easylistchina+easylist.txt: 41362) -.tripadvisor.*./(.*/)?HotelLander\? -# ||track.xtrasize.nl^$popup,third-party (easylistchina+easylist.txt: 41361) -.track.xtrasize.nl -# ||track.mypcbackup.com^$popup,third-party (easylistchina+easylist.txt: 41360) -.track.mypcbackup.com -# ||torntv-tvv.org^$popup,third-party (easylistchina+easylist.txt: 41359) -.torntv-tvv.org -# ||tipico.com^*?affiliateid=$popup,third-party (easylistchina+easylist.txt: 41358) -.tipico.com/.*\?affiliateid= -# ||thetraderinpajamas.com^$popup,third-party (easylistchina+easylist.txt: 41357) -.thetraderinpajamas.com -# ||thebestbookies.com^$popup,third-party (easylistchina+easylist.txt: 41355) -.thebestbookies.com -# ||sunmaker.com^*^a_aid^$popup,third-party (easylistchina+easylist.txt: 41354) -.sunmaker.com/.*[^\w%.-]a_aid[^\w%.-] -# ||stargames.com/web/*&cid=*&pid=$popup,third-party (easylistchina+easylist.txt: 41353) -.stargames.com/web/.*&cid=.*&pid= -# ||stake7.com^*?a_aid=$popup,third-party (easylistchina+easylist.txt: 41351) -.stake7.com/.*\?a_aid= -# ||sharecash.org^$popup,third-party (easylistchina+easylist.txt: 41349) -.sharecash.org -# ||serve.williamhillcasino.com^$popup,third-party (easylistchina+easylist.txt: 41347) -.serve.williamhillcasino.com -# ||serve.prestigecasino.com^$popup,third-party (easylistchina+easylist.txt: 41346) -.serve.prestigecasino.com -# ||secure.komli.com^$popup,third-party (easylistchina+easylist.txt: 41345) -.secure.komli.com -# ||roomkey.com/referrals?$popup,third-party (easylistchina+easylist.txt: 41344) -.roomkey.com/referrals\? -# ||rocketgames.com^$popup,third-party (easylistchina+easylist.txt: 41343) -.rocketgames.com -# ||record.sportsbetaffiliates.com.au^$popup,third-party (easylistchina+easylist.txt: 41341) -.record.sportsbetaffiliates.com.au -# ||promo.xcasino.com/?$popup,third-party (easylistchina+easylist.txt: 41338) -.promo.xcasino.com/\? -# ||promo.galabingo.com^$popup,third-party (easylistchina+easylist.txt: 41337) -.promo.galabingo.com -# ||pokerstars.eu^*/?source=$popup,third-party (easylistchina+easylist.txt: 41335) -.pokerstars.eu/.*/\?source= -# ||pc.thevideo.me^$popup,third-party (easylistchina+easylist.txt: 41332) -.pc.thevideo.me -# ||paid.outbrain.com/network/redir?$popup,third-party (easylistchina+easylist.txt: 41331) -.paid.outbrain.com/network/redir\? -# ||otvetus.com^$popup,third-party (easylistchina+easylist.txt: 41330) -.otvetus.com -# ||opendownloadmanager.com^$popup,third-party (easylistchina+easylist.txt: 41329) -.opendownloadmanager.com -# ||mp3ger.com^$popup,third-party (easylistchina+easylist.txt: 41326) -.mp3ger.com -# ||mgid.com^$popup,third-party (easylistchina+easylist.txt: 41325) -.mgid.com -# ||meme.smhlmao.com^$popup,third-party (easylistchina+easylist.txt: 41324) -.meme.smhlmao.com -# ||megacloud.com/signup?$popup,third-party (easylistchina+easylist.txt: 41323) -.megacloud.com/signup\? -# ||media.mybet.com/redirect.aspx?pid=*&bid=$popup,third-party (easylistchina+easylist.txt: 41322) -.media.mybet.com/redirect\.aspx\?pid=.*&bid= -# ||mcars.org/landing/$popup,third-party (easylistchina+easylist.txt: 41321) -.mcars.org/landing/ -# ||maxedtube.com/video_play?*&utm_campaign=$popup,third-party (easylistchina+easylist.txt: 41320) -.maxedtube.com/video_play\?.*&utm_campaign= -# ||lyricsbogie.com/?$popup,third-party (easylistchina+easylist.txt: 41318) -.lyricsbogie.com/\? -# ||lsbet.com/bonus/$popup,third-party (easylistchina+easylist.txt: 41316) -.lsbet.com/bonus/ -# ||lp.titanpoker.com^$popup,third-party (easylistchina+easylist.txt: 41315) -.lp.titanpoker.com -# ||lp.musicboxnewtab.com^$popup,third-party (easylistchina+easylist.txt: 41314) -.lp.musicboxnewtab.com -# ||lp.imesh.com/?$popup,third-party (easylistchina+easylist.txt: 41313) -.lp.imesh.com/\? -# ||lp.ilivid.com/?$popup,third-party (easylistchina+easylist.txt: 41312) -.lp.ilivid.com/\? -# ||lovefilm.com/partners/$popup,third-party (easylistchina+easylist.txt: 41310) -.lovefilm.com/partners/ -# ||i2casting.com^$popup,third-party (easylistchina+easylist.txt: 41307) -.i2casting.com -# ||house-rent.us^$popup,third-party (easylistchina+easylist.txt: 41304) -.house-rent.us -# ||homemadecelebrityporn.com/track/$popup,third-party (easylistchina+easylist.txt: 41303) -.homemadecelebrityporn.com/track/ -# ||hmn-net.com^*/xdirect/$popup,third-party (easylistchina+easylist.txt: 41302) -.hmn-net.com/.*/xdirect/ -# ||hetu.in^$popup,third-party (easylistchina+easylist.txt: 41301) -.hetu.in -# ||getsecuredfiles.com^$popup,third-party (easylistchina+easylist.txt: 41298) -.getsecuredfiles.com -# ||generic4all.com^*.dhtml?refid=$popup,third-party (easylistchina+easylist.txt: 41297) -.generic4all.com/.*\.dhtml\?refid= -# ||fulltiltpoker.com/affiliates/$popup,third-party (easylistchina+easylist.txt: 41295) -.fulltiltpoker.com/affiliates/ -# ||fulltiltpoker.com/?key=$popup,third-party (easylistchina+easylist.txt: 41294) -.fulltiltpoker.com/\?key= -# ||fleshlight.com/?link=$popup,third-party (easylistchina+easylist.txt: 41291) -.fleshlight.com/\?link= -# ||facebookcoverx.com^$popup,third-party (easylistchina+easylist.txt: 41286) -.facebookcoverx.com -# ||europacasino.com^$popup,third-party (easylistchina+easylist.txt: 41284) -.europacasino.com -# ||erotikdeal.com/advertising.html$popup,third-party (easylistchina+easylist.txt: 41282) -.erotikdeal.com/advertising\.html -# ||erotikdeal.com/?ref=$popup,third-party (easylistchina+easylist.txt: 41281) -.erotikdeal.com/\?ref= -# ||dateoffer.net/?s=*&subid=$popup,third-party (easylistchina+easylist.txt: 41279) -.dateoffer.net/\?s=.*&subid= -# ||ctcautobody.com^$popup,third-party (easylistchina+easylist.txt: 41277) -.ctcautobody.com -# ||clickansave.net^$popup,third-party (easylistchina+easylist.txt: 41275) -.clickansave.net -# ||click.scour.com^$popup,third-party (easylistchina+easylist.txt: 41274) -.click.scour.com -# ||chaturbate.com/affiliates/$popup,third-party (easylistchina+easylist.txt: 41273) -.chaturbate.com/affiliates/ -# ||cdnfarm18.com^$popup,third-party (easylistchina+easylist.txt: 41270) -.cdnfarm18.com -# ||cdn.optmd.com^$popup,third-party (easylistchina+easylist.txt: 41269) -.cdn.optmd.com -# ||casino.com^*?*=$popup,third-party (easylistchina+easylist.txt: 41267) -.casino.com/.*\?.*= -# ||casino-x.com^*?partner=$popup,third-party (easylistchina+easylist.txt: 41266) -.casino-x.com/.*\?partner= -# ||bovada.lv^$popup,third-party (easylistchina+easylist.txt: 41265) -.bovada.lv -# ||binaryoptions24h.com^$popup,third-party (easylistchina+easylist.txt: 41264) -.binaryoptions24h.com -# ||banner.galabingo.com^$popup,third-party (easylistchina+easylist.txt: 41262) -.banner.galabingo.com -# ||babylon.com/welcome/index.html?affID=$popup,third-party (easylistchina+easylist.txt: 41261) -.babylon.com/welcome/index\.html\?affID= -# ||babylon.com/redirects/$popup,third-party (easylistchina+easylist.txt: 41260) -.babylon.com/redirects/ -# ||amazing-offers.co.il^$popup,third-party (easylistchina+easylist.txt: 41259) -.amazing-offers.co.il -# ||aliexpress.com/?af=$popup,third-party (easylistchina+easylist.txt: 41258) -.aliexpress.com/\?af= -# ||affportal-lb.bevomedia.com^$popup,third-party (easylistchina+easylist.txt: 41257) -.affportal-lb.bevomedia.com -# ||affiliates.galapartners.co.uk^$popup,third-party (easylistchina+easylist.txt: 41256) -.affiliates.galapartners.co.uk -# ||adserving.unibet.com^$popup,third-party (easylistchina+easylist.txt: 41255) -.adserving.unibet.com -# ||admngronline.com^$popup,third-party (easylistchina+easylist.txt: 41253) -.admngronline.com -# ||adfoc.us/serve/$popup,third-party (easylistchina+easylist.txt: 41252) -.adfoc.us/serve/ -# ||6angebot.ch/?ref=$popup,third-party (easylistchina+easylist.txt: 41251) -.6angebot.ch/\?ref= -# ||y72yuyr9.com^$popup,third-party (easylistchina+easylist.txt: 39572) -.y72yuyr9.com -# ||xxxbunker.com^$popup,third-party (easylistchina+easylist.txt: 39570) -.xxxbunker.com -# ||xvika.net^$popup,third-party (easylistchina+easylist.txt: 39569) -.xvika.net -# ||xvika.com^$popup,third-party (easylistchina+easylist.txt: 39568) -.xvika.com -# ||xpeeps.com^$popup,third-party (easylistchina+easylist.txt: 39567) -.xpeeps.com -# ||xdtraffic.com^$popup,third-party (easylistchina+easylist.txt: 39565) -.xdtraffic.com -# ||x2porn.eu^$popup,third-party (easylistchina+easylist.txt: 39564) -.x2porn.eu -# ||voyeurbase.com^$popup,third-party (easylistchina+easylist.txt: 39562) -.voyeurbase.com -# ||trafficholder.com^$popup,third-party (easylistchina+easylist.txt: 39558) -.trafficholder.com -# ||targetingnow.com^$popup,third-party (easylistchina+easylist.txt: 39555) -.targetingnow.com -# ||socialsex.com^$popup,third-party (easylistchina+easylist.txt: 39554) -.socialsex.com -# ||socialsex.biz^$popup,third-party (easylistchina+easylist.txt: 39553) -.socialsex.biz -# ||sexintheuk.com^$popup,third-party (easylistchina+easylist.txt: 39552) -.sexintheuk.com -# ||sexflirtbook.com^$popup,third-party (easylistchina+easylist.txt: 39551) -.sexflirtbook.com -# ||sexad.net^$popup,third-party (easylistchina+easylist.txt: 39550) -.sexad.net -# ||sex-journey.com^$popup,third-party (easylistchina+easylist.txt: 39549) -.sex-journey.com -# ||setravieso.com^$popup,third-party (easylistchina+easylist.txt: 39548) -.setravieso.com -# ||sascentral.com^$popup,third-party (easylistchina+easylist.txt: 39547) -.sascentral.com -# ||royalads.net^$popup,third-party (easylistchina+easylist.txt: 39546) -.royalads.net -# ||reviewdollars.com^$popup,third-party (easylistchina+easylist.txt: 39545) -.reviewdollars.com -# ||reporo.net^$popup,third-party (easylistchina+easylist.txt: 39544) -.reporo.net -# ||repmbuycurl.com^$popup,third-party (easylistchina+easylist.txt: 39543) -.repmbuycurl.com -# ||prpops.com^$popup,third-party (easylistchina+easylist.txt: 39542) -.prpops.com -# ||prexista.com^$popup,third-party (easylistchina+easylist.txt: 39541) -.prexista.com -# ||popcash.net^$popup,third-party (easylistchina+easylist.txt: 39539) -.popcash.net -# ||plugrush.com^$popup,third-party (easylistchina+easylist.txt: 39538) -.plugrush.com -# ||plinx.net^$popup,third-party (easylistchina+easylist.txt: 39537) -.plinx.net -# ||njmaq.com^$popup,third-party (easylistchina+easylist.txt: 39534) -.njmaq.com -# ||naughtyplayful.com^$popup,third-party (easylistchina+easylist.txt: 39532) -.naughtyplayful.com -# ||loltrk.com^$popup,third-party (easylistchina+easylist.txt: 39531) -.loltrk.com -# ||legacyminerals.net^$popup,third-party (easylistchina+easylist.txt: 39530) -.legacyminerals.net -# ||kaizentraffic.com^$popup,third-party (easylistchina+easylist.txt: 39529) -.kaizentraffic.com -# ||juicyads.com^$popup,third-party (easylistchina+easylist.txt: 39528) -.juicyads.com -# ||indianfriendfinder.com^$popup,third-party (easylistchina+easylist.txt: 39526) -.indianfriendfinder.com -# ||imgcarry.com^$popup,third-party (easylistchina+easylist.txt: 39525) -.imgcarry.com -# ||imagesnake.com^$popup,third-party (easylistchina+easylist.txt: 39524) -.imagesnake.com -# ||hornymatches.com^$popup,third-party (easylistchina+easylist.txt: 39523) -.hornymatches.com -# ||hizlireklam.com^$popup,third-party (easylistchina+easylist.txt: 39522) -.hizlireklam.com -# ||hapend.biz^$popup,third-party (easylistchina+easylist.txt: 39520) -.hapend.biz -# ||hanaprop.com^$popup,third-party (easylistchina+easylist.txt: 39519) -.hanaprop.com -# ||gothot.org^$popup,third-party (easylistchina+easylist.txt: 39518) -.gothot.org -# ||freewebcams.com^$popup,third-party (easylistchina+easylist.txt: 39517) -.freewebcams.com -# ||fpctraffic2.com^$popup,third-party (easylistchina+easylist.txt: 39515) -.fpctraffic2.com -# ||fox-forden.ru^$popup,third-party (easylistchina+easylist.txt: 39514) -.fox-forden.ru -# ||foaks.com^$popup,third-party (easylistchina+easylist.txt: 39513) -.foaks.com -# ||filthads.com^$popup,third-party (easylistchina+easylist.txt: 39511) -.filthads.com -# ||exgfpunished.com^$popup,third-party (easylistchina+easylist.txt: 39508) -.exgfpunished.com -# ||everyporn.net^$popup,third-party (easylistchina+easylist.txt: 39507) -.everyporn.net -# ||ero-advertising.com^$popup,third-party (easylistchina+easylist.txt: 39505) -.ero-advertising.com -# ||ekod.info^$popup,third-party (easylistchina+easylist.txt: 39504) -.ekod.info -# ||ebocornac.com^$popup,third-party (easylistchina+easylist.txt: 39503) -.ebocornac.com -# ||dverser.ru^$popup,third-party (easylistchina+easylist.txt: 39501) -.dverser.ru -# ||doublegear.com^$popup,third-party (easylistchina+easylist.txt: 39500) -.doublegear.com -# ||chtic.net^$popup,third-party (easylistchina+easylist.txt: 39498) -.chtic.net -# ||chokertraffic.com^$popup,third-party (easylistchina+easylist.txt: 39497) -.chokertraffic.com -# ||c4tracking01.com^$popup,third-party (easylistchina+easylist.txt: 39496) -.c4tracking01.com -# ||banners.cams.com^$popup,third-party (easylistchina+easylist.txt: 39493) -.banners.cams.com -# ||aquete.com^$popup,third-party (easylistchina+easylist.txt: 39492) -.aquete.com -# ||adxpansion.com^$popup,third-party (easylistchina+easylist.txt: 39491) -.adxpansion.com -# ||adxite.com^$popup,third-party (easylistchina+easylist.txt: 39490) -.adxite.com -# ||adultmoda.com^$popup,third-party (easylistchina+easylist.txt: 39489) -.adultmoda.com -# ||adultadworld.com^$popup,third-party (easylistchina+easylist.txt: 39488) -.adultadworld.com -# ||adultadmedia.com^$popup,third-party (easylistchina+easylist.txt: 39487) -.adultadmedia.com -# ||adsnero.website^$popup,third-party (easylistchina+easylist.txt: 39485) -.adsnero.website -# ||45i73jv6.com^$popup,third-party (easylistchina+easylist.txt: 39484) -.45i73jv6.com -# ||3file.info^$popup,third-party (easylistchina+easylist.txt: 39482) -.3file.info -# ||zeroredirect1.com^$popup,third-party (easylistchina+easylist.txt: 38682) -.zeroredirect1.com -# ||zedo.com^$popup,third-party (easylistchina+easylist.txt: 38681) -.zedo.com -# ||z5x.net^$popup,third-party (easylistchina+easylist.txt: 38680) -.z5x.net -# ||yupiromo.ru^$popup,third-party (easylistchina+easylist.txt: 38679) -.yupiromo.ru -# ||yieldtraffic.com^$popup,third-party (easylistchina+easylist.txt: 38678) -.yieldtraffic.com -# ||yieldmanager.com^$popup,third-party (easylistchina+easylist.txt: 38677) -.yieldmanager.com -# ||xtendmedia.com^$popup,third-party (easylistchina+easylist.txt: 38676) -.xtendmedia.com -# ||xclicks.net^$popup,third-party (easylistchina+easylist.txt: 38675) -.xclicks.net -# ||xaxoro.com^$popup,third-party (easylistchina+easylist.txt: 38674) -.xaxoro.com -# ||wzus1.ask.com^$popup,third-party (easylistchina+easylist.txt: 38673) -.wzus1.ask.com -# ||wwwpromoter.com^$popup,third-party (easylistchina+easylist.txt: 38672) -.wwwpromoter.com -# ||worldrewardcenter.net^$popup,third-party (easylistchina+easylist.txt: 38671) -.worldrewardcenter.net -# ||wonderlandads.com^$popup,third-party (easylistchina+easylist.txt: 38670) -.wonderlandads.com -# ||wigetmedia.com^$popup,third-party (easylistchina+easylist.txt: 38669) -.wigetmedia.com -# ||whoads.net^$popup,third-party (easylistchina+easylist.txt: 38668) -.whoads.net -# ||weliketofuckstrangers.com^$popup,third-party (easylistchina+easylist.txt: 38667) -.weliketofuckstrangers.com -# ||webtrackerplus.com^$popup,third-party (easylistchina+easylist.txt: 38666) -.webtrackerplus.com -# ||websearchers.net^$popup,third-party (easylistchina+easylist.txt: 38665) -.websearchers.net -# ||weareheard.org^$popup,third-party (easylistchina+easylist.txt: 38664) -.weareheard.org -# ||wbsadsdel2.com^$popup,third-party (easylistchina+easylist.txt: 38663) -.wbsadsdel2.com -# ||wbsadsdel.com^$popup,third-party (easylistchina+easylist.txt: 38662) -.wbsadsdel.com -# ||wahoha.com^$popup,third-party (easylistchina+easylist.txt: 38661) -.wahoha.com -# ||waframedia5.com^$popup,third-party (easylistchina+easylist.txt: 38660) -.waframedia5.com -# ||w4statistics.info^$popup,third-party (easylistchina+easylist.txt: 38659) -.w4statistics.info -# ||vprmnwbskk.com^$popup,third-party (easylistchina+easylist.txt: 38658) -.vprmnwbskk.com -# ||vipcpms.com^$popup,third-party (easylistchina+easylist.txt: 38657) -.vipcpms.com -# ||vgsgaming-ads.com^$popup,third-party (easylistchina+easylist.txt: 38656) -.vgsgaming-ads.com -# ||updater-checker.net^$popup,third-party (easylistchina+easylist.txt: 38655) -.updater-checker.net -# ||twqiqiang.com^$popup,third-party (easylistchina+easylist.txt: 38654) -.twqiqiang.com -# ||tvas-b.pw^$popup,third-party (easylistchina+easylist.txt: 38653) -.tvas-b.pw -# ||tvas-a.pw^$popup,third-party (easylistchina+easylist.txt: 38652) -.tvas-a.pw -# ||tutvp.com^$popup,third-party (easylistchina+easylist.txt: 38651) -.tutvp.com -# ||trw12.com^$popup,third-party (easylistchina+easylist.txt: 38650) -.trw12.com -# ||trklnks.com^$popup,third-party (easylistchina+easylist.txt: 38649) -.trklnks.com -# ||traffichaus.com^$popup,third-party (easylistchina+easylist.txt: 38648) -.traffichaus.com -# ||trafficforce.com^$popup,third-party (easylistchina+easylist.txt: 38647) -.trafficforce.com -# ||tracki112.com^$popup,third-party (easylistchina+easylist.txt: 38646) -.tracki112.com -# ||totrack.ru^$popup,third-party (easylistchina+easylist.txt: 38645) -.totrack.ru -# ||totaladperformance.com^$popup,third-party (easylistchina+easylist.txt: 38644) -.totaladperformance.com -# ||toroadvertisingmedia.com^$popup,third-party (easylistchina+easylist.txt: 38643) -.toroadvertisingmedia.com -# ||topshelftraffic.com^$popup,third-party (easylistchina+easylist.txt: 38642) -.topshelftraffic.com -# ||tonefuse.com^$popup,third-party (easylistchina+easylist.txt: 38641) -.tonefuse.com -# ||tjoomo.com^$popup,third-party (easylistchina+easylist.txt: 38640) -.tjoomo.com -# ||therewardsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38639) -.therewardsurvey.com -# ||thepornsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38638) -.thepornsurvey.com -# ||the-consumer-reporter.org^$popup,third-party (easylistchina+easylist.txt: 38637) -.the-consumer-reporter.org -# ||the-binary-trader.biz^$popup,third-party (easylistchina+easylist.txt: 38636) -.the-binary-trader.biz -# ||textsrv.com^$popup,third-party (easylistchina+easylist.txt: 38635) -.textsrv.com -# ||terraclicks.com^$popup,third-party (easylistchina+easylist.txt: 38634) -.terraclicks.com -# ||technicssurveys.info^$popup,third-party (easylistchina+easylist.txt: 38633) -.technicssurveys.info -# ||techcloudtrk.com^$popup,third-party (easylistchina+easylist.txt: 38632) -.techcloudtrk.com -# ||td563.com^$popup,third-party (easylistchina+easylist.txt: 38631) -.td563.com -# ||syncedvision.com^$popup,third-party (easylistchina+easylist.txt: 38630) -.syncedvision.com -# ||symkashop.ru^$popup,third-party (easylistchina+easylist.txt: 38629) -.symkashop.ru -# ||swadvertising.org^$popup,third-party (easylistchina+easylist.txt: 38628) -.swadvertising.org -# ||surveystope.com^$popup,third-party (easylistchina+easylist.txt: 38627) -.surveystope.com -# ||surveyspaid.com^$popup,third-party (easylistchina+easylist.txt: 38626) -.surveyspaid.com -# ||surveysforgifts.org^$popup,third-party (easylistchina+easylist.txt: 38625) -.surveysforgifts.org -# ||surveyend.com^$popup,third-party (easylistchina+easylist.txt: 38624) -.surveyend.com -# ||statstrackeronline.com^$popup,third-party (easylistchina+easylist.txt: 38623) -.statstrackeronline.com -# ||statsmobi.com^$popup,third-party (easylistchina+easylist.txt: 38622) -.statsmobi.com -# ||stabletrappeddevote.info^$popup,third-party (easylistchina+easylist.txt: 38621) -.stabletrappeddevote.info -# ||srvpub.com^$popup,third-party (easylistchina+easylist.txt: 38620) -.srvpub.com -# ||srv2trking.com^$popup,third-party (easylistchina+easylist.txt: 38619) -.srv2trking.com -# ||srv-ad.com^$popup,third-party (easylistchina+easylist.txt: 38618) -.srv-ad.com -# ||sparkstudios.com^$popup,third-party (easylistchina+easylist.txt: 38617) -.sparkstudios.com -# ||smutty.com^$popup,third-party (easylistchina+easylist.txt: 38616) -.smutty.com -# ||sms-mmm.com^$popup,third-party (easylistchina+easylist.txt: 38615) -.sms-mmm.com -# ||smartwebads.com^$popup,third-party (easylistchina+easylist.txt: 38614) -.smartwebads.com -# ||slimspots.com^$popup,third-party (easylistchina+easylist.txt: 38613) -.slimspots.com -# ||slikslik.com^$popup,third-party (easylistchina+easylist.txt: 38612) -.slikslik.com -# ||singlesexdates.com^$popup,third-party (easylistchina+easylist.txt: 38611) -.singlesexdates.com -# ||simpleinternetupdate.com^$popup,third-party (easylistchina+easylist.txt: 38610) -.simpleinternetupdate.com -# ||silstavo.com^$popup,third-party (easylistchina+easylist.txt: 38609) -.silstavo.com -# ||sexitnow.com^$popup,third-party (easylistchina+easylist.txt: 38608) -.sexitnow.com -# ||servingit.co^$popup,third-party (easylistchina+easylist.txt: 38607) -.servingit.co -# ||serving-sys.com^$popup,third-party (easylistchina+easylist.txt: 38606) -.serving-sys.com -# ||senzapudore.it^$popup,third-party (easylistchina+easylist.txt: 38605) -.senzapudore.it -# ||secureintl.com^$popup,third-party (easylistchina+easylist.txt: 38604) -.secureintl.com -# ||rubikon6.if.ua^$popup,third-party (easylistchina+easylist.txt: 38603) -.rubikon6.if.ua -# ||roulettebotplus.com^$popup,third-party (easylistchina+easylist.txt: 38602) -.roulettebotplus.com -# ||ronetu.ru^$popup,third-party (easylistchina+easylist.txt: 38601) -.ronetu.ru -# ||ringtonepartner.com^$popup,third-party (easylistchina+easylist.txt: 38600) -.ringtonepartner.com -# ||ringtonematcher.com^$popup,third-party (easylistchina+easylist.txt: 38599) -.ringtonematcher.com -# ||rikhov.ru^$popup,third-party (easylistchina+easylist.txt: 38598) -.rikhov.ru -# ||rgadvert.com^$popup,third-party (easylistchina+easylist.txt: 38597) -.rgadvert.com -# ||retkow.com^$popup,third-party (easylistchina+easylist.txt: 38596) -.retkow.com -# ||rehok.km.ua^$popup,third-party (easylistchina+easylist.txt: 38595) -.rehok.km.ua -# ||rdsrv.com^$popup,third-party (easylistchina+easylist.txt: 38594) -.rdsrv.com -# ||ratari.ru^$popup,third-party (easylistchina+easylist.txt: 38593) -.ratari.ru -# ||raoplenort.biz^$popup,third-party (easylistchina+easylist.txt: 38592) -.raoplenort.biz -# ||pwrads.net^$popup,third-party (easylistchina+easylist.txt: 38591) -.pwrads.net -# ||pureadexchange.com^$popup,third-party (easylistchina+easylist.txt: 38590) -.pureadexchange.com -# ||pulse360.com^$popup,third-party (easylistchina+easylist.txt: 38589) -.pulse360.com -# ||pubted.com^$popup,third-party (easylistchina+easylist.txt: 38588) -.pubted.com -# ||pubdirecte.com^$popup,third-party (easylistchina+easylist.txt: 38587) -.pubdirecte.com -# ||pubads.g.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38586) -.pubads.g.doubleclick.net -# ||prowlerz.com^$popup,third-party (easylistchina+easylist.txt: 38585) -.prowlerz.com -# ||propellerpops.com^$popup,third-party (easylistchina+easylist.txt: 38584) -.propellerpops.com -# ||propellerads.com^$popup,third-party (easylistchina+easylist.txt: 38583) -.propellerads.com -# ||promotions.sportsbet.com.au^$popup,third-party (easylistchina+easylist.txt: 38582) -.promotions.sportsbet.com.au -# ||promotions-paradise.org^$popup,third-party (easylistchina+easylist.txt: 38581) -.promotions-paradise.org -# ||prizegiveaway.org^$popup,third-party (easylistchina+easylist.txt: 38580) -.prizegiveaway.org -# ||print3.info^$popup,third-party (easylistchina+easylist.txt: 38579) -.print3.info -# ||poponclick.com^$popup,third-party (easylistchina+easylist.txt: 38578) -.poponclick.com -# ||popmyads.com^$popup,third-party (easylistchina+easylist.txt: 38577) -.popmyads.com -# ||popads.net^$popup,third-party (easylistchina+easylist.txt: 38576) -.popads.net -# ||pomofon.ru^$popup,third-party (easylistchina+easylist.txt: 38575) -.pomofon.ru -# ||pointroll.com^$popup,third-party (easylistchina+easylist.txt: 38574) -.pointroll.com -# ||pointclicktrack.com^$popup,third-party (easylistchina+easylist.txt: 38573) -.pointclicktrack.com -# ||plsdrct2.me^$popup,third-party (easylistchina+easylist.txt: 38572) -.plsdrct2.me -# ||plexop.net^$popup,third-party (easylistchina+easylist.txt: 38571) -.plexop.net -# ||pipaoffers.com^$popup,third-party (easylistchina+easylist.txt: 38570) -.pipaoffers.com -# ||pgmediaserve.com^$popup,third-party (easylistchina+easylist.txt: 38569) -.pgmediaserve.com -# ||pexu.com^$popup,third-party (easylistchina+easylist.txt: 38568) -.pexu.com -# ||perfcreatives.com^$popup,third-party (easylistchina+easylist.txt: 38567) -.perfcreatives.com -# ||pdfcomplete.com^$popup,third-party (easylistchina+easylist.txt: 38566) -.pdfcomplete.com -# ||partypills.org^$popup,third-party (easylistchina+easylist.txt: 38565) -.partypills.org -# ||oxybe.com^$popup,third-party (easylistchina+easylist.txt: 38564) -.oxybe.com -# ||overturs.com^$popup,third-party (easylistchina+easylist.txt: 38563) -.overturs.com -# ||openadserving.com^$popup,third-party (easylistchina+easylist.txt: 38562) -.openadserving.com -# ||open-downloads.net^$popup,third-party (easylistchina+easylist.txt: 38561) -.open-downloads.net -# ||onlinecashmethod.com^$popup,third-party (easylistchina+easylist.txt: 38560) -.onlinecashmethod.com -# ||onlinecareerpackage.com^$popup,third-party (easylistchina+easylist.txt: 38559) -.onlinecareerpackage.com -# ||onhitads.net^$popup,third-party (easylistchina+easylist.txt: 38558) -.onhitads.net -# ||onclickads.net^$popup,third-party (easylistchina+easylist.txt: 38557) -.onclickads.net -# ||onad.eu^$popup,third-party (easylistchina+easylist.txt: 38556) -.onad.eu -# ||o333o.com^$popup,third-party (easylistchina+easylist.txt: 38555) -.o333o.com -# ||nymphdate.com^$popup,third-party (easylistchina+easylist.txt: 38554) -.nymphdate.com -# ||nturveev.com^$popup,third-party (easylistchina+easylist.txt: 38553) -.nturveev.com -# ||netliker.com^$popup,third-party (easylistchina+easylist.txt: 38552) -.netliker.com -# ||n388hkxg.com^$popup,third-party (easylistchina+easylist.txt: 38551) -.n388hkxg.com -# ||my-layer.net^$popup,third-party (easylistchina+easylist.txt: 38550) -.my-layer.net -# ||moneytec.com^$popup,third-party (easylistchina+easylist.txt: 38549) -.moneytec.com -# ||mobileraffles.com^$popup,third-party (easylistchina+easylist.txt: 38548) -.mobileraffles.com -# ||mktmobi.com^$popup,third-party (easylistchina+easylist.txt: 38547) -.mktmobi.com -# ||millionairesurveys.com^$popup,third-party (easylistchina+easylist.txt: 38546) -.millionairesurveys.com -# ||metodoroleta24h.com^$popup,third-party (easylistchina+easylist.txt: 38545) -.metodoroleta24h.com -# ||menepe.com^$popup,third-party (easylistchina+easylist.txt: 38544) -.menepe.com -# ||megapopads.com^$popup,third-party (easylistchina+easylist.txt: 38543) -.megapopads.com -# ||meetsexygirls.org^$popup,third-party (easylistchina+easylist.txt: 38542) -.meetsexygirls.org -# ||meetgoodgirls.com^$popup,third-party (easylistchina+easylist.txt: 38541) -.meetgoodgirls.com -# ||mediaseeding.com^$popup,third-party (easylistchina+easylist.txt: 38540) -.mediaseeding.com -# ||media-servers.net^$popup,third-party (easylistchina+easylist.txt: 38539) -.media-servers.net -# ||media-app.com^$popup,third-party (easylistchina+easylist.txt: 38538) -.media-app.com -# ||mdn2015x1.com^$popup,third-party (easylistchina+easylist.txt: 38537) -.mdn2015x1.com -# ||marketresearchglobal.com^$popup,third-party (easylistchina+easylist.txt: 38536) -.marketresearchglobal.com -# ||maomaotang.com^$popup,third-party (easylistchina+easylist.txt: 38535) -.maomaotang.com -# ||m57ku6sm.com^$popup,third-party (easylistchina+easylist.txt: 38534) -.m57ku6sm.com -# ||lustigbanner.com^$popup,third-party (easylistchina+easylist.txt: 38533) -.lustigbanner.com -# ||lnkgt.com^$popup,third-party (easylistchina+easylist.txt: 38532) -.lnkgt.com -# ||lmebxwbsno.com^$popup,third-party (easylistchina+easylist.txt: 38531) -.lmebxwbsno.com -# ||liversely.net^$popup,third-party (easylistchina+easylist.txt: 38530) -.liversely.net -# ||livepromotools.com^$popup,third-party (easylistchina+easylist.txt: 38529) -.livepromotools.com -# ||livechatflirt.com^$popup,third-party (easylistchina+easylist.txt: 38528) -.livechatflirt.com -# ||ligatus.com^$popup,third-party (easylistchina+easylist.txt: 38527) -.ligatus.com -# ||letshareus.com^$popup,third-party (easylistchina+easylist.txt: 38526) -.letshareus.com -# ||legisland.net^$popup,third-party (easylistchina+easylist.txt: 38525) -.legisland.net -# ||landsraad.cc^$popup,third-party (easylistchina+easylist.txt: 38524) -.landsraad.cc -# ||kanoodle.com^$popup,third-party (easylistchina+easylist.txt: 38523) -.kanoodle.com -# ||junbi-tracker.com^$popup,third-party (easylistchina+easylist.txt: 38522) -.junbi-tracker.com -# ||jujzh9va.com^$popup,third-party (easylistchina+easylist.txt: 38521) -.jujzh9va.com -# ||jdtracker.com^$popup,third-party (easylistchina+easylist.txt: 38520) -.jdtracker.com -# ||integral-marketing.com^$popup,third-party (easylistchina+easylist.txt: 38519) -.integral-marketing.com -# ||instantpaydaynetwork.com^$popup,third-party (easylistchina+easylist.txt: 38518) -.instantpaydaynetwork.com -# ||insta-cash.net^$popup,third-party (easylistchina+easylist.txt: 38517) -.insta-cash.net -# ||indianweeklynews.com^$popup,third-party (easylistchina+easylist.txt: 38516) -.indianweeklynews.com -# ||inbinaryoption.com^$popup,third-party (easylistchina+easylist.txt: 38514) -.inbinaryoption.com -# ||ilividnewtab.com^$popup,third-party (easylistchina+easylist.txt: 38513) -.ilividnewtab.com -# ||iiasdomk1m9812m4z3.com^$popup,third-party (easylistchina+easylist.txt: 38512) -.iiasdomk1m9812m4z3.com -# ||ifilez.org^$popup,third-party (easylistchina+easylist.txt: 38511) -.ifilez.org -# ||hstpnetwork.com^$popup,third-party (easylistchina+easylist.txt: 38510) -.hstpnetwork.com -# ||hotchatdirect.com^$popup,third-party (easylistchina+easylist.txt: 38509) -.hotchatdirect.com -# ||hornygirlsexposed.com^$popup,third-party (easylistchina+easylist.txt: 38508) -.hornygirlsexposed.com -# ||homecareerforyou1.info^$popup,third-party (easylistchina+easylist.txt: 38507) -.homecareerforyou1.info -# ||hilltopads.net^$popup,third-party (easylistchina+easylist.txt: 38506) -.hilltopads.net -# ||highcpms.com^$popup,third-party (easylistchina+easylist.txt: 38505) -.highcpms.com -# ||hd-plugin.com^$popup,third-party (easylistchina+easylist.txt: 38504) -.hd-plugin.com -# ||gsniper2.com^$popup,third-party (easylistchina+easylist.txt: 38503) -.gsniper2.com -# ||greatbranddeals.com^$popup,third-party (easylistchina+easylist.txt: 38502) -.greatbranddeals.com -# ||gotoplaymillion.com^$popup,third-party (easylistchina+easylist.txt: 38501) -.gotoplaymillion.com -# ||googleads.g.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38500) -.googleads.g.doubleclick.net -# ||gofindmedia.net^$popup,third-party (easylistchina+easylist.txt: 38499) -.gofindmedia.net -# ||giveaways.club^$popup,third-party (easylistchina+easylist.txt: 38498) -.giveaways.club -# ||gib-gib-la.com^$popup,third-party (easylistchina+easylist.txt: 38497) -.gib-gib-la.com -# ||ganja.com^$popup,third-party (easylistchina+easylist.txt: 38496) -.ganja.com -# ||g05.info^$popup,third-party (easylistchina+easylist.txt: 38495) -.g05.info -# ||frtya.com^$popup,third-party (easylistchina+easylist.txt: 38494) -.frtya.com -# ||friendlyduck.com^$popup,third-party (easylistchina+easylist.txt: 38493) -.friendlyduck.com -# ||fmdwbsfxf0.com^$popup,third-party (easylistchina+easylist.txt: 38492) -.fmdwbsfxf0.com -# ||firstmediahub.com^$popup,third-party (easylistchina+easylist.txt: 38491) -.firstmediahub.com -# ||firstclass-download.com^$popup,third-party (easylistchina+easylist.txt: 38490) -.firstclass-download.com -# ||findonlinesurveysforcash.com^$popup,third-party (easylistchina+easylist.txt: 38489) -.findonlinesurveysforcash.com -# ||finance-reporting.org^$popup,third-party (easylistchina+easylist.txt: 38488) -.finance-reporting.org -# ||filestube.com^$popup,third-party (easylistchina+easylist.txt: 38487) -.filestube.com -# ||fidel.to^$popup,third-party (easylistchina+easylist.txt: 38486) -.fidel.to -# ||fhserve.com^$popup,third-party (easylistchina+easylist.txt: 38485) -.fhserve.com -# ||f-questionnaire.com^$popup,third-party (easylistchina+easylist.txt: 38484) -.f-questionnaire.com -# ||f-hookups.com^$popup,third-party (easylistchina+easylist.txt: 38483) -.f-hookups.com -# ||ezdownloadpro.info^$popup,third-party (easylistchina+easylist.txt: 38482) -.ezdownloadpro.info -# ||exoclick.com^$popup,third-party (easylistchina+easylist.txt: 38481) -.exoclick.com -# ||ewebse.com^$popup,third-party (easylistchina+easylist.txt: 38480) -.ewebse.com -# ||euromillionairesystem.me^$popup,third-party (easylistchina+easylist.txt: 38479) -.euromillionairesystem.me -# ||eroanalysis.com^$popup,third-party (easylistchina+easylist.txt: 38478) -.eroanalysis.com -# ||epicgameads.com^$popup,third-party (easylistchina+easylist.txt: 38477) -.epicgameads.com -# ||ebzkswbs78.com^$popup,third-party (easylistchina+easylist.txt: 38476) -.ebzkswbs78.com -# ||easykits.org^$popup,third-party (easylistchina+easylist.txt: 38475) -.easykits.org -# ||easydownloadnow.com^$popup,third-party (easylistchina+easylist.txt: 38474) -.easydownloadnow.com -# ||durokuro.com^$popup,third-party (easylistchina+easylist.txt: 38473) -.durokuro.com -# ||downloadthesefile.com^$popup,third-party (easylistchina+easylist.txt: 38472) -.downloadthesefile.com -# ||downloadboutique.com^$popup,third-party (easylistchina+easylist.txt: 38471) -.downloadboutique.com -# ||down1oads.com^$popup,third-party (easylistchina+easylist.txt: 38470) -.down1oads.com -# ||doublepimp.com^$popup,third-party (easylistchina+easylist.txt: 38469) -.doublepimp.com -# ||dojerena.com^$popup,third-party (easylistchina+easylist.txt: 38468) -.dojerena.com -# ||distantstat.com^$popup,third-party (easylistchina+easylist.txt: 38467) -.distantstat.com -# ||distantnews.com^$popup,third-party (easylistchina+easylist.txt: 38466) -.distantnews.com -# ||directrev.com^$popup,third-party (easylistchina+easylist.txt: 38465) -.directrev.com -# ||denza.pro^$popup,third-party (easylistchina+easylist.txt: 38464) -.denza.pro -# ||crazyad.net^$popup,third-party (easylistchina+easylist.txt: 38463) -.crazyad.net -# ||cpvadvertise.com^$popup,third-party (easylistchina+easylist.txt: 38462) -.cpvadvertise.com -# ||cpmterra.com^$popup,third-party (easylistchina+easylist.txt: 38461) -.cpmterra.com -# ||cpmstar.com^$popup,third-party (easylistchina+easylist.txt: 38460) -.cpmstar.com -# ||cpayard.com^$popup,third-party (easylistchina+easylist.txt: 38459) -.cpayard.com -# ||contractallsinstance.info^$popup,third-party (easylistchina+easylist.txt: 38458) -.contractallsinstance.info -# ||contentabc.com^$popup,third-party (easylistchina+easylist.txt: 38457) -.contentabc.com -# ||computersoftwarelive.com^$popup,third-party (easylistchina+easylist.txt: 38456) -.computersoftwarelive.com -# ||cmllk2.info^$popup,third-party (easylistchina+easylist.txt: 38455) -.cmllk2.info -# ||clpremdo.com^$popup,third-party (easylistchina+easylist.txt: 38454) -.clpremdo.com -# ||cloudtracked.com^$popup,third-party (easylistchina+easylist.txt: 38453) -.cloudtracked.com -# ||clkrev.com^$popup,third-party (easylistchina+easylist.txt: 38452) -.clkrev.com -# ||clkmon.com^$popup,third-party (easylistchina+easylist.txt: 38451) -.clkmon.com -# ||clkads.com^$popup,third-party (easylistchina+easylist.txt: 38450) -.clkads.com -# ||clicktripz.com^$popup,third-party (easylistchina+easylist.txt: 38449) -.clicktripz.com -# ||clickter.net^$popup,third-party (easylistchina+easylist.txt: 38448) -.clickter.net -# ||clicksvenue.com^$popup,third-party (easylistchina+easylist.txt: 38447) -.clicksvenue.com -# ||clicksor.com^$popup,third-party (easylistchina+easylist.txt: 38446) -.clicksor.com -# ||clickosmedia.com^$popup,third-party (easylistchina+easylist.txt: 38445) -.clickosmedia.com -# ||clickmngr.com^$popup,third-party (easylistchina+easylist.txt: 38444) -.clickmngr.com -# ||clickfuse.com^$popup,third-party (easylistchina+easylist.txt: 38443) -.clickfuse.com -# ||casino.betsson.com^$popup,third-party (easylistchina+easylist.txt: 38442) -.casino.betsson.com -# ||callhelpmetaroll.rocks^$popup,third-party (easylistchina+easylist.txt: 38440) -.callhelpmetaroll.rocks -# ||bzrvwbsh5o.com^$popup,third-party (easylistchina+easylist.txt: 38439) -.bzrvwbsh5o.com -# ||brandreachsys.com^$popup,third-party (easylistchina+easylist.txt: 38438) -.brandreachsys.com -# ||bonzuna.com^$popup,third-party (easylistchina+easylist.txt: 38437) -.bonzuna.com -# ||bongacams.com^$popup,third-party (easylistchina+easylist.txt: 38436) -.bongacams.com -# ||blogscash.info^$popup,third-party (easylistchina+easylist.txt: 38435) -.blogscash.info -# ||blockthis.es^$popup,third-party (easylistchina+easylist.txt: 38434) -.blockthis.es -# ||blinkogold.es^$popup,third-party (easylistchina+easylist.txt: 38433) -.blinkogold.es -# ||blinko.es^$popup,third-party (easylistchina+easylist.txt: 38432) -.blinko.es -# ||binaryoptionsgame.com^$popup,third-party (easylistchina+easylist.txt: 38431) -.binaryoptionsgame.com -# ||bighot.ru^$popup,third-party (easylistchina+easylist.txt: 38430) -.bighot.ru -# ||bidvertiser.com^$popup,third-party (easylistchina+easylist.txt: 38429) -.bidvertiser.com -# ||bidsystem.com^$popup,third-party (easylistchina+easylist.txt: 38428) -.bidsystem.com -# ||bestproducttesters.com^$popup,third-party (easylistchina+easylist.txt: 38427) -.bestproducttesters.com -# ||best-zb.com^$popup,third-party (easylistchina+easylist.txt: 38426) -.best-zb.com -# ||bentdownload.com^$popup,third-party (easylistchina+easylist.txt: 38425) -.bentdownload.com -# ||becoquins.net^$popup,third-party (easylistchina+easylist.txt: 38424) -.becoquins.net -# ||becoquin.com^$popup,third-party (easylistchina+easylist.txt: 38423) -.becoquin.com -# ||bbuni.com^$popup,third-party (easylistchina+easylist.txt: 38422) -.bbuni.com -# ||baypops.com^$popup,third-party (easylistchina+easylist.txt: 38421) -.baypops.com -# ||awsclic.com^$popup,third-party (easylistchina+easylist.txt: 38420) -.awsclic.com -# ||awempire.com^$popup,third-party (easylistchina+easylist.txt: 38419) -.awempire.com -# ||avalopaly.com^$popup,third-party (easylistchina+easylist.txt: 38418) -.avalopaly.com -# ||august15download.com^$popup,third-party (easylistchina+easylist.txt: 38417) -.august15download.com -# ||ar.voicefive.com^$popup,third-party (easylistchina+easylist.txt: 38416) -.ar.voicefive.com -# ||answered-questions.com^$popup,third-party (easylistchina+easylist.txt: 38415) -.answered-questions.com -# ||annualinternetsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38414) -.annualinternetsurvey.com -# ||angege.com^$popup,third-party (easylistchina+easylist.txt: 38413) -.angege.com -# ||am10.ru^$popup,third-party (easylistchina+easylist.txt: 38412) -.am10.ru -# ||alternads.info^$popup,third-party (easylistchina+easylist.txt: 38411) -.alternads.info -# ||alpinedrct.com^$popup,third-party (easylistchina+easylist.txt: 38410) -.alpinedrct.com -# ||allsporttv.com^$popup,third-party (easylistchina+easylist.txt: 38409) -.allsporttv.com -# ||allslotscasino.com^$popup,third-party (easylistchina+easylist.txt: 38408) -.allslotscasino.com -# ||aflrm.com^$popup,third-party (easylistchina+easylist.txt: 38407) -.aflrm.com -# ||affbuzzads.com^$popup,third-party (easylistchina+easylist.txt: 38406) -.affbuzzads.com -# ||advmedialtd.com^$popup,third-party (easylistchina+easylist.txt: 38405) -.advmedialtd.com -# ||advertserve.com^$popup,third-party (easylistchina+easylist.txt: 38404) -.advertserve.com -# ||adtraffic.org^$popup,third-party (easylistchina+easylist.txt: 38403) -.adtraffic.org -# ||adtrace.org^$popup,third-party (easylistchina+easylist.txt: 38402) -.adtrace.org -# ||adsurve.com^$popup,third-party (easylistchina+easylist.txt: 38401) -.adsurve.com -# ||adsupplyads.com^$popup,third-party (easylistchina+easylist.txt: 38400) -.adsupplyads.com -# ||adsupply.com^$popup,third-party (easylistchina+easylist.txt: 38399) -.adsupply.com -# ||adsmarket.com^$popup,third-party (easylistchina+easylist.txt: 38398) -.adsmarket.com -# ||adshostnet.com^$popup,third-party (easylistchina+easylist.txt: 38397) -.adshostnet.com -# ||adserverplus.com^$popup,third-party (easylistchina+easylist.txt: 38396) -.adserverplus.com -# ||ads.sexier.com^$popup,third-party (easylistchina+easylist.txt: 38395) -.ads.sexier.com -# ||adplxmd.com^$popup,third-party (easylistchina+easylist.txt: 38394) -.adplxmd.com -# ||adonweb.ru^$popup,third-party (easylistchina+easylist.txt: 38393) -.adonweb.ru -# ||adnxs.com^$popup,third-party (easylistchina+easylist.txt: 38392) -.adnxs.com -# ||adnetworkperformance.com^$popup,third-party (easylistchina+easylist.txt: 38391) -.adnetworkperformance.com -# ||adlure.net^$popup,third-party (easylistchina+easylist.txt: 38390) -.adlure.net -# ||adk2x.com^$popup,third-party (easylistchina+easylist.txt: 38389) -.adk2x.com -# ||adk2.net^$popup,third-party (easylistchina+easylist.txt: 38388) -.adk2.net -# ||adk2.com^$popup,third-party (easylistchina+easylist.txt: 38387) -.adk2.com -# ||adk2.co^$popup,third-party (easylistchina+easylist.txt: 38386) -.adk2.co -# ||adjuggler.net^$popup,third-party (easylistchina+easylist.txt: 38385) -.adjuggler.net -# ||aditor.com^$popup,third-party (easylistchina+easylist.txt: 38384) -.aditor.com -# ||adimps.com^$popup,third-party (easylistchina+easylist.txt: 38383) -.adimps.com -# ||adform.net^$popup,third-party (easylistchina+easylist.txt: 38382) -.adform.net -# ||adfarm.mediaplex.com^$popup,third-party (easylistchina+easylist.txt: 38381) -.adfarm.mediaplex.com -# ||adcdnx.com^$popup,third-party (easylistchina+easylist.txt: 38380) -.adcdnx.com -# ||adcash.com^$popup,third-party (easylistchina+easylist.txt: 38379) -.adcash.com -# ||adbma.com^$popup,third-party (easylistchina+easylist.txt: 38378) -.adbma.com -# ||ad4game.com^$popup,third-party (easylistchina+easylist.txt: 38377) -.ad4game.com -# ||ad2games.com^$popup,third-party (easylistchina+easylist.txt: 38376) -.ad2games.com -# ||ad2387.com^$popup,third-party (easylistchina+easylist.txt: 38375) -.ad2387.com -# ||ad131m.com^$popup,third-party (easylistchina+easylist.txt: 38374) -.ad131m.com -# ||ad.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38373) -.ad.doubleclick.net -# ||ad-feeds.com^$popup,third-party (easylistchina+easylist.txt: 38372) -.ad-feeds.com -# ||ad-emea.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38371) -.ad-emea.doubleclick.net -# ||ad-apac.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38370) -.ad-apac.doubleclick.net -# ||absoluteclickscom.com^$popup,third-party (easylistchina+easylist.txt: 38369) -.absoluteclickscom.com -# ||abbeyblog.me^$popup,third-party (easylistchina+easylist.txt: 38368) -.abbeyblog.me -# ||9newstoday.net^$popup,third-party (easylistchina+easylist.txt: 38367) -.9newstoday.net -# ||888promos.com^$popup,third-party (easylistchina+easylist.txt: 38366) -.888promos.com -# ||888poker.com^$popup,third-party (easylistchina+easylist.txt: 38365) -.888poker.com -# ||888media.net^$popup,third-party (easylistchina+easylist.txt: 38364) -.888media.net -# ||888games.com^$popup,third-party (easylistchina+easylist.txt: 38363) -.888games.com -# ||888casino.com^$popup,third-party (easylistchina+easylist.txt: 38362) -.888casino.com -# ||83nsdjqqo1cau183xz.com^$popup,third-party (easylistchina+easylist.txt: 38361) -.83nsdjqqo1cau183xz.com -# ||5dimes.com^$popup,third-party (easylistchina+easylist.txt: 38360) -.5dimes.com -# ||4dsply.com^$popup,third-party (easylistchina+easylist.txt: 38359) -.4dsply.com -# ||360adstrack.com^$popup,third-party (easylistchina+easylist.txt: 38358) -.360adstrack.com -# ||360adshost.net^$popup,third-party (easylistchina+easylist.txt: 38357) -.360adshost.net -# ||32d1d3b9c.se^$popup,third-party (easylistchina+easylist.txt: 38356) -.32d1d3b9c.se -# ||30daychange.co^$popup,third-party (easylistchina+easylist.txt: 38355) -.30daychange.co -# ||2mdn.info^$popup,third-party (easylistchina+easylist.txt: 38354) -.2mdn.info -# ||1phads.com^$popup,third-party (easylistchina+easylist.txt: 38353) -.1phads.com -# ||1afcfcb2c.ninja^$popup,third-party (easylistchina+easylist.txt: 38352) -.1afcfcb2c.ninja -# ||123vidz.com^$popup,third-party (easylistchina+easylist.txt: 38351) -.123vidz.com -# /redirect.spark?$popup,third-party (easylistchina+easylist.txt: 17641) -/(.*/)?redirect\.spark\? -# /fp.engine?$popup,third-party (easylistchina+easylist.txt: 17630) -/(.*/)?fp\.engine\? -# &link_type=offer$popup,third-party (easylistchina+easylist.txt: 17602) -/.*&link_type=offer -# ||vnet.cn^*.html?$popup,third-party (easylistchina+easylist.txt: 1082) +# ||vnet.cn^*.html?$popup,third-party (easylistchina.txt: 1106) .vnet.cn/.*\.html\? -# ||todayapp.cc^$popup,third-party (easylistchina+easylist.txt: 1080) +# ||todayapp.cc^$popup,third-party (easylistchina.txt: 1105) .todayapp.cc -# ||son999.com^$popup,third-party (easylistchina+easylist.txt: 1077) +# ||son999.com^$popup,third-party (easylistchina.txt: 1101) .son999.com -# ||moe.005.tv^$popup,third-party (easylistchina+easylist.txt: 1072) +# ||moe.005.tv^$popup,third-party (easylistchina.txt: 1096) .moe.005.tv -# ||iswan.cn^$popup,third-party (easylistchina+easylist.txt: 1067) +# ||iswan.cn^$popup,third-party (easylistchina.txt: 1091) .iswan.cn -# ||gxp.cc^$popup,third-party (easylistchina+easylist.txt: 1063) -.gxp.cc -# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina+easylist.txt: 1061) +# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina.txt: 1086) .gd.ct10000.com/.*/push/ -# ||gd.189.cn^*/push/$popup,third-party (easylistchina+easylist.txt: 1060) +# ||gd.189.cn^*/push/$popup,third-party (easylistchina.txt: 1085) .gd.189.cn/.*/push/ -# ||gd.189.cn/push/$popup,third-party (easylistchina+easylist.txt: 1059) +# ||gd.189.cn/push/$popup,third-party (easylistchina.txt: 1084) .gd.189.cn/push/ -# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina+easylist.txt: 1058) +# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina.txt: 1083) .gd.189.cn/gz/promotion/ -# ||gd.189.cn/ad/$popup,third-party (easylistchina+easylist.txt: 1057) +# ||gd.189.cn/ad/$popup,third-party (easylistchina.txt: 1082) .gd.189.cn/ad/ -# ||dhqp68.com^$popup,third-party (easylistchina+easylist.txt: 1056) +# ||dhqp68.com^$popup,third-party (easylistchina.txt: 1080) .dhqp68.com -# ||cnyjk.com^$popup,third-party (easylistchina+easylist.txt: 1055) -.cnyjk.com -# ||093game.com^$popup,third-party (easylistchina+easylist.txt: 1045) +# ||093game.com^$popup,third-party (easylistchina.txt: 1068) .093game.com -# /pushstart.aspx?$popup,third-party (easylistchina+easylist.txt: 1043) +# /pushstart.aspx?$popup,third-party (easylistchina.txt: 1066) /(.*/)?pushstart\.aspx\? -# /pushportal/PushPortalServer$popup,third-party (easylistchina+easylist.txt: 1042) +# /pushportal/PushPortalServer$popup,third-party (easylistchina.txt: 1065) /(.*/)?pushportal/PushPortalServer -# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina+easylist.txt: 1039) +# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina.txt: 1062) /(.*/)?BadwebRemindPage\.aspx\?param= -# .com/?Intr=$popup,third-party (easylistchina+easylist.txt: 1037) +# .com/?Intr=$popup,third-party (easylistchina.txt: 1060) /.*\.com/\?Intr= .*.com/\?Intr= -# .com/?aff=$popup,third-party (easylistchina+easylist.txt: 1036) +# .com/?aff=$popup,third-party (easylistchina.txt: 1059) /.*\.com/\?aff= .*.com/\?aff= -# .189.gd^*.html?p=$popup,third-party (easylistchina+easylist.txt: 1035) +# .189.gd^*.html?p=$popup,third-party (easylistchina.txt: 1058) /.*\.189\.gd[^\w%.-].*\.html\?p= .*.189.gd/.*\.html\?p= -# ||itpodol.ru^$third-party,popup (advblock.txt: 2429) -.itpodol.ru -# ||vezuha.me^$third-party,popup (advblock.txt: 188) -.vezuha.me -# ||test-studio.ru^$third-party,popup (advblock.txt: 184) -.test-studio.ru -# ||sapato.ru^$third-party,popup (advblock.txt: 174) -.sapato.ru -# ||electblogers.com^$third-party,popup (advblock.txt: 140) -.electblogers.com -# ||24smile.$third-party,popup (advblock.txt: 111) -.24smile.*. -# ||cbn.tbn.ru^$third-party,popup (advblock.txt: 72) -.cbn.tbn.ru -# ||streamtunerhd.com/signup?$popup,third-party (easylist.txt: 35703) -.streamtunerhd.com/signup\? -# ||yuvutu.com^$popup,third-party (easylist.txt: 31408) -.yuvutu.com -# ||xvideoslive.com/landing/$popup,third-party (easylist.txt: 31407) -.xvideoslive.com/landing/ -# ||xvideoslive.com/?AFNO$popup,third-party (easylist.txt: 31406) -.xvideoslive.com/\?AFNO -# ||xrounds.com/?lmid=$popup,third-party (easylist.txt: 31405) -.xrounds.com/\?lmid= -# ||xdating.com/search/$popup,third-party (easylist.txt: 31404) -.xdating.com/search/ -# ||webcams.com^$popup,third-party (easylist.txt: 31403) -.webcams.com -# ||vs3.com^$popup,third-party (easylist.txt: 31401) -.vs3.com -# ||visit-x.net/cams/*.html?*&s=*&ws=$popup,third-party (easylist.txt: 31400) -.visit-x.net/cams/.*\.html\?.*&s=.*&ws= -# ||videosz.com^*&tracker_id=$popup,third-party (easylist.txt: 31399) -.videosz.com/.*&tracker_id= -# ||videosz.com/search.php$popup,third-party (easylist.txt: 31398) -.videosz.com/search\.php -# ||twistys.com/track/$popup,third-party (easylist.txt: 31394) -.twistys.com/track/ -# ||tube911.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylist.txt: 31393) -.tube911.com/scj/cgi/out\.php\?scheme_id= -# ||tour.mrskin.com^$popup,third-party (easylist.txt: 31392) -.tour.mrskin.com -# ||teenslikeitbig.com/track/$popup,third-party (easylist.txt: 31389) -.teenslikeitbig.com/track/ -# ||socialflirt.com/go/$popup,third-party (easylist.txt: 31387) -.socialflirt.com/go/ -# ||sexsearchcom.com^$popup,third-party (easylist.txt: 31386) -.sexsearchcom.com -# ||sexier.com/services/adsredirect.ashx?$popup,third-party (easylist.txt: 31384) -.sexier.com/services/adsredirect\.ashx\? -# ||rudefinder.com/?$popup,third-party (easylist.txt: 31380) -.rudefinder.com/\? -# ||redlightcenter.com/?trq=$popup,third-party (easylist.txt: 31378) -.redlightcenter.com/\?trq= -# ||postselfies.com^*?nats=$popup,third-party (easylist.txt: 31377) -.postselfies.com/.*\?nats= -# ||pornme.com^*.php?ref=$popup,third-party (easylist.txt: 31373) -.pornme.com/.*\.php\?ref= -# ||online.mydirtyhobby.com^*?naff=$popup,third-party (easylist.txt: 31370) -.online.mydirtyhobby.com/.*\?naff= -# ||mydirtyhobby.com/?$popup,third-party (easylist.txt: 31368) -.mydirtyhobby.com/\? -# ||mjtlive.com/exports/golive/?lp=*&afno=$popup,third-party (easylist.txt: 31367) -.mjtlive.com/exports/golive/\?lp=.*&afno= -# ||media.campartner.com^*?cp=$popup,third-party (easylist.txt: 31365) -.media.campartner.com/.*\?cp= -# ||media.campartner.com/index.php?cpID=*&cpMID=$popup,third-party (easylist.txt: 31364) -.media.campartner.com/index\.php\?cpID=.*&cpMID= -# ||livejasmin.com^$popup,third-party (easylist.txt: 31363) -.livejasmin.com -# ||linkfame.com^*/go.php?$popup,third-party (easylist.txt: 31361) -.linkfame.com/.*/go\.php\? -# ||letstryanal.com/track/$popup,third-party (easylist.txt: 31360) -.letstryanal.com/track/ -# ||join.teamskeet.com/track/$popup,third-party (easylist.txt: 31357) -.join.teamskeet.com/track/ -# ||join.filthydatez.com^$popup,third-party (easylist.txt: 31356) -.join.filthydatez.com -# ||jasmin.com^$popup,third-party (easylist.txt: 31355) -.jasmin.com -# ||ipornia.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylist.txt: 31354) -.ipornia.com/scj/cgi/out\.php\?scheme_id= -# ||imlive.com/wmaster.ashx?$popup,third-party (easylist.txt: 31353) -.imlive.com/wmaster\.ashx\? -# ||hqtubevideos.com/play.html$popup,third-party (easylist.txt: 31351) -.hqtubevideos.com/play\.html -# ||fuckbooknet.net/dating/$popup,third-party (easylist.txt: 31346) -.fuckbooknet.net/dating/ -# ||flirt4free.com/_special/pops/$popup,third-party (easylist.txt: 31344) -.flirt4free.com/_special/pops/ -# ||fleshlight-international.eu^*?link=$popup,third-party (easylist.txt: 31342) -.fleshlight-international.eu/.*\?link= -# ||exposedwebcams.com/?token=$popup,third-party (easylist.txt: 31338) -.exposedwebcams.com/\?token= -# ||devilsfilm.com/track/go.php?$popup,third-party (easylist.txt: 31336) -.devilsfilm.com/track/go\.php\? -# ||cpm.amateurcommunity.*?cp=$popup,third-party (easylist.txt: 31335) -.cpm.amateurcommunity.*./.*\?cp= -# ||benaughty.com/aff.php?$popup,third-party (easylist.txt: 31329) -.benaughty.com/aff\.php\? -# ||babecams.net/landing/$popup,third-party (easylist.txt: 31327) -.babecams.net/landing/ -# ||amarotic.com^*?wmid=$popup,third-party (easylist.txt: 31326) -.amarotic.com/.*\?wmid= -# ||amarotic.com/?$popup,third-party (easylist.txt: 31325) -.amarotic.com/\? -# ||adultfriendfinder.com/go/$popup,third-party (easylist.txt: 31324) -.adultfriendfinder.com/go/ -# ||adultfriendfinder.com/banners/$popup,third-party (easylist.txt: 31323) -.adultfriendfinder.com/banners/ -# ||777livecams.com/?id=$popup,third-party (easylist.txt: 31322) -.777livecams.com/\?id= -# ||1800freecams.com^$popup,third-party (easylist.txt: 31320) -.1800freecams.com -# ||withbinaryoptions.com^$popup,third-party (easylist.txt: 30891) -.withbinaryoptions.com -# ||with-binaryoption.com^$popup,third-party (easylist.txt: 30890) -.with-binaryoption.com -# ||widget.yavli.com^$popup,third-party (easylist.txt: 30889) -.widget.yavli.com -# ||wealth-at-home-millions.com^$popup,third-party (easylist.txt: 30887) -.wealth-at-home-millions.com -# ||virtuagirl.com/landing/$popup,third-party (easylist.txt: 30886) -.virtuagirl.com/landing/ -# ||vidds.net/?s=promo$popup,third-party (easylist.txt: 30885) -.vidds.net/\?s=promo -# ||urmediazone.com/play?ref=$popup,third-party (easylist.txt: 30883) -.urmediazone.com/play\?ref= -# ||tripadvisor.*/HotelLander?$popup,third-party (easylist.txt: 30877) -.tripadvisor.*./(.*/)?HotelLander\? -# ||track.xtrasize.nl^$popup,third-party (easylist.txt: 30876) -.track.xtrasize.nl -# ||track.mypcbackup.com^$popup,third-party (easylist.txt: 30875) -.track.mypcbackup.com -# ||torntv-tvv.org^$popup,third-party (easylist.txt: 30874) -.torntv-tvv.org -# ||tipico.com^*?affiliateid=$popup,third-party (easylist.txt: 30873) -.tipico.com/.*\?affiliateid= -# ||thetraderinpajamas.com^$popup,third-party (easylist.txt: 30872) -.thetraderinpajamas.com -# ||thebestbookies.com^$popup,third-party (easylist.txt: 30870) -.thebestbookies.com -# ||sunmaker.com^*^a_aid^$popup,third-party (easylist.txt: 30869) -.sunmaker.com/.*[^\w%.-]a_aid[^\w%.-] -# ||stargames.com/web/*&cid=*&pid=$popup,third-party (easylist.txt: 30868) -.stargames.com/web/.*&cid=.*&pid= -# ||stake7.com^*?a_aid=$popup,third-party (easylist.txt: 30866) -.stake7.com/.*\?a_aid= -# ||sharecash.org^$popup,third-party (easylist.txt: 30864) -.sharecash.org -# ||serve.williamhillcasino.com^$popup,third-party (easylist.txt: 30862) -.serve.williamhillcasino.com -# ||serve.prestigecasino.com^$popup,third-party (easylist.txt: 30861) -.serve.prestigecasino.com -# ||secure.komli.com^$popup,third-party (easylist.txt: 30860) -.secure.komli.com -# ||roomkey.com/referrals?$popup,third-party (easylist.txt: 30859) -.roomkey.com/referrals\? -# ||rocketgames.com^$popup,third-party (easylist.txt: 30858) -.rocketgames.com -# ||record.sportsbetaffiliates.com.au^$popup,third-party (easylist.txt: 30856) -.record.sportsbetaffiliates.com.au -# ||promo.xcasino.com/?$popup,third-party (easylist.txt: 30853) -.promo.xcasino.com/\? -# ||promo.galabingo.com^$popup,third-party (easylist.txt: 30852) -.promo.galabingo.com -# ||pokerstars.eu^*/?source=$popup,third-party (easylist.txt: 30850) -.pokerstars.eu/.*/\?source= -# ||pc.thevideo.me^$popup,third-party (easylist.txt: 30847) -.pc.thevideo.me -# ||paid.outbrain.com/network/redir?$popup,third-party (easylist.txt: 30846) -.paid.outbrain.com/network/redir\? -# ||otvetus.com^$popup,third-party (easylist.txt: 30845) -.otvetus.com -# ||opendownloadmanager.com^$popup,third-party (easylist.txt: 30844) -.opendownloadmanager.com -# ||mp3ger.com^$popup,third-party (easylist.txt: 30841) -.mp3ger.com -# ||mgid.com^$popup,third-party (easylist.txt: 30840) -.mgid.com -# ||meme.smhlmao.com^$popup,third-party (easylist.txt: 30839) -.meme.smhlmao.com -# ||megacloud.com/signup?$popup,third-party (easylist.txt: 30838) -.megacloud.com/signup\? -# ||media.mybet.com/redirect.aspx?pid=*&bid=$popup,third-party (easylist.txt: 30837) -.media.mybet.com/redirect\.aspx\?pid=.*&bid= -# ||mcars.org/landing/$popup,third-party (easylist.txt: 30836) -.mcars.org/landing/ -# ||maxedtube.com/video_play?*&utm_campaign=$popup,third-party (easylist.txt: 30835) -.maxedtube.com/video_play\?.*&utm_campaign= -# ||lyricsbogie.com/?$popup,third-party (easylist.txt: 30833) -.lyricsbogie.com/\? -# ||lsbet.com/bonus/$popup,third-party (easylist.txt: 30831) -.lsbet.com/bonus/ -# ||lp.titanpoker.com^$popup,third-party (easylist.txt: 30830) -.lp.titanpoker.com -# ||lp.musicboxnewtab.com^$popup,third-party (easylist.txt: 30829) -.lp.musicboxnewtab.com -# ||lp.imesh.com/?$popup,third-party (easylist.txt: 30828) -.lp.imesh.com/\? -# ||lp.ilivid.com/?$popup,third-party (easylist.txt: 30827) -.lp.ilivid.com/\? -# ||lovefilm.com/partners/$popup,third-party (easylist.txt: 30825) -.lovefilm.com/partners/ -# ||i2casting.com^$popup,third-party (easylist.txt: 30822) -.i2casting.com -# ||house-rent.us^$popup,third-party (easylist.txt: 30819) -.house-rent.us -# ||homemadecelebrityporn.com/track/$popup,third-party (easylist.txt: 30818) -.homemadecelebrityporn.com/track/ -# ||hmn-net.com^*/xdirect/$popup,third-party (easylist.txt: 30817) -.hmn-net.com/.*/xdirect/ -# ||hetu.in^$popup,third-party (easylist.txt: 30816) -.hetu.in -# ||getsecuredfiles.com^$popup,third-party (easylist.txt: 30813) -.getsecuredfiles.com -# ||generic4all.com^*.dhtml?refid=$popup,third-party (easylist.txt: 30812) -.generic4all.com/.*\.dhtml\?refid= -# ||fulltiltpoker.com/affiliates/$popup,third-party (easylist.txt: 30810) -.fulltiltpoker.com/affiliates/ -# ||fulltiltpoker.com/?key=$popup,third-party (easylist.txt: 30809) -.fulltiltpoker.com/\?key= -# ||fleshlight.com/?link=$popup,third-party (easylist.txt: 30806) -.fleshlight.com/\?link= -# ||facebookcoverx.com^$popup,third-party (easylist.txt: 30801) -.facebookcoverx.com -# ||europacasino.com^$popup,third-party (easylist.txt: 30799) -.europacasino.com -# ||erotikdeal.com/advertising.html$popup,third-party (easylist.txt: 30797) -.erotikdeal.com/advertising\.html -# ||erotikdeal.com/?ref=$popup,third-party (easylist.txt: 30796) -.erotikdeal.com/\?ref= -# ||dateoffer.net/?s=*&subid=$popup,third-party (easylist.txt: 30794) -.dateoffer.net/\?s=.*&subid= -# ||ctcautobody.com^$popup,third-party (easylist.txt: 30792) -.ctcautobody.com -# ||clickansave.net^$popup,third-party (easylist.txt: 30790) -.clickansave.net -# ||click.scour.com^$popup,third-party (easylist.txt: 30789) -.click.scour.com -# ||chaturbate.com/affiliates/$popup,third-party (easylist.txt: 30788) -.chaturbate.com/affiliates/ -# ||cdnfarm18.com^$popup,third-party (easylist.txt: 30785) -.cdnfarm18.com -# ||cdn.optmd.com^$popup,third-party (easylist.txt: 30784) -.cdn.optmd.com -# ||casino.com^*?*=$popup,third-party (easylist.txt: 30782) -.casino.com/.*\?.*= -# ||casino-x.com^*?partner=$popup,third-party (easylist.txt: 30781) -.casino-x.com/.*\?partner= -# ||bovada.lv^$popup,third-party (easylist.txt: 30780) -.bovada.lv -# ||binaryoptions24h.com^$popup,third-party (easylist.txt: 30779) -.binaryoptions24h.com -# ||banner.galabingo.com^$popup,third-party (easylist.txt: 30777) -.banner.galabingo.com -# ||babylon.com/welcome/index.html?affID=$popup,third-party (easylist.txt: 30776) -.babylon.com/welcome/index\.html\?affID= -# ||babylon.com/redirects/$popup,third-party (easylist.txt: 30775) -.babylon.com/redirects/ -# ||amazing-offers.co.il^$popup,third-party (easylist.txt: 30774) -.amazing-offers.co.il -# ||aliexpress.com/?af=$popup,third-party (easylist.txt: 30773) -.aliexpress.com/\?af= -# ||affportal-lb.bevomedia.com^$popup,third-party (easylist.txt: 30772) -.affportal-lb.bevomedia.com -# ||affiliates.galapartners.co.uk^$popup,third-party (easylist.txt: 30771) -.affiliates.galapartners.co.uk -# ||adserving.unibet.com^$popup,third-party (easylist.txt: 30770) -.adserving.unibet.com -# ||admngronline.com^$popup,third-party (easylist.txt: 30768) -.admngronline.com -# ||adfoc.us/serve/$popup,third-party (easylist.txt: 30767) -.adfoc.us/serve/ -# ||6angebot.ch/?ref=$popup,third-party (easylist.txt: 30766) -.6angebot.ch/\?ref= -# ||y72yuyr9.com^$popup,third-party (easylist.txt: 29087) -.y72yuyr9.com -# ||xxxbunker.com^$popup,third-party (easylist.txt: 29085) -.xxxbunker.com -# ||xvika.net^$popup,third-party (easylist.txt: 29084) -.xvika.net -# ||xvika.com^$popup,third-party (easylist.txt: 29083) -.xvika.com -# ||xpeeps.com^$popup,third-party (easylist.txt: 29082) -.xpeeps.com -# ||xdtraffic.com^$popup,third-party (easylist.txt: 29080) -.xdtraffic.com -# ||x2porn.eu^$popup,third-party (easylist.txt: 29079) -.x2porn.eu -# ||voyeurbase.com^$popup,third-party (easylist.txt: 29077) -.voyeurbase.com -# ||trafficholder.com^$popup,third-party (easylist.txt: 29073) -.trafficholder.com -# ||targetingnow.com^$popup,third-party (easylist.txt: 29070) -.targetingnow.com -# ||socialsex.com^$popup,third-party (easylist.txt: 29069) -.socialsex.com -# ||socialsex.biz^$popup,third-party (easylist.txt: 29068) -.socialsex.biz -# ||sexintheuk.com^$popup,third-party (easylist.txt: 29067) -.sexintheuk.com -# ||sexflirtbook.com^$popup,third-party (easylist.txt: 29066) -.sexflirtbook.com -# ||sexad.net^$popup,third-party (easylist.txt: 29065) -.sexad.net -# ||sex-journey.com^$popup,third-party (easylist.txt: 29064) -.sex-journey.com -# ||setravieso.com^$popup,third-party (easylist.txt: 29063) -.setravieso.com -# ||sascentral.com^$popup,third-party (easylist.txt: 29062) -.sascentral.com -# ||royalads.net^$popup,third-party (easylist.txt: 29061) -.royalads.net -# ||reviewdollars.com^$popup,third-party (easylist.txt: 29060) -.reviewdollars.com -# ||reporo.net^$popup,third-party (easylist.txt: 29059) -.reporo.net -# ||repmbuycurl.com^$popup,third-party (easylist.txt: 29058) -.repmbuycurl.com -# ||prpops.com^$popup,third-party (easylist.txt: 29057) -.prpops.com -# ||prexista.com^$popup,third-party (easylist.txt: 29056) -.prexista.com -# ||popcash.net^$popup,third-party (easylist.txt: 29054) -.popcash.net -# ||plugrush.com^$popup,third-party (easylist.txt: 29053) -.plugrush.com -# ||plinx.net^$popup,third-party (easylist.txt: 29052) -.plinx.net -# ||njmaq.com^$popup,third-party (easylist.txt: 29049) -.njmaq.com -# ||naughtyplayful.com^$popup,third-party (easylist.txt: 29047) -.naughtyplayful.com -# ||loltrk.com^$popup,third-party (easylist.txt: 29046) -.loltrk.com -# ||legacyminerals.net^$popup,third-party (easylist.txt: 29045) -.legacyminerals.net -# ||kaizentraffic.com^$popup,third-party (easylist.txt: 29044) -.kaizentraffic.com -# ||juicyads.com^$popup,third-party (easylist.txt: 29043) -.juicyads.com -# ||indianfriendfinder.com^$popup,third-party (easylist.txt: 29041) -.indianfriendfinder.com -# ||imgcarry.com^$popup,third-party (easylist.txt: 29040) -.imgcarry.com -# ||imagesnake.com^$popup,third-party (easylist.txt: 29039) -.imagesnake.com -# ||hornymatches.com^$popup,third-party (easylist.txt: 29038) -.hornymatches.com -# ||hizlireklam.com^$popup,third-party (easylist.txt: 29037) -.hizlireklam.com -# ||hapend.biz^$popup,third-party (easylist.txt: 29035) -.hapend.biz -# ||hanaprop.com^$popup,third-party (easylist.txt: 29034) -.hanaprop.com -# ||gothot.org^$popup,third-party (easylist.txt: 29033) -.gothot.org -# ||freewebcams.com^$popup,third-party (easylist.txt: 29032) -.freewebcams.com -# ||fpctraffic2.com^$popup,third-party (easylist.txt: 29030) -.fpctraffic2.com -# ||fox-forden.ru^$popup,third-party (easylist.txt: 29029) -.fox-forden.ru -# ||foaks.com^$popup,third-party (easylist.txt: 29028) -.foaks.com -# ||filthads.com^$popup,third-party (easylist.txt: 29026) -.filthads.com -# ||exgfpunished.com^$popup,third-party (easylist.txt: 29023) -.exgfpunished.com -# ||everyporn.net^$popup,third-party (easylist.txt: 29022) -.everyporn.net -# ||ero-advertising.com^$popup,third-party (easylist.txt: 29020) -.ero-advertising.com -# ||ekod.info^$popup,third-party (easylist.txt: 29019) -.ekod.info -# ||ebocornac.com^$popup,third-party (easylist.txt: 29018) -.ebocornac.com -# ||dverser.ru^$popup,third-party (easylist.txt: 29016) -.dverser.ru -# ||doublegear.com^$popup,third-party (easylist.txt: 29015) -.doublegear.com -# ||chtic.net^$popup,third-party (easylist.txt: 29013) -.chtic.net -# ||chokertraffic.com^$popup,third-party (easylist.txt: 29012) -.chokertraffic.com -# ||c4tracking01.com^$popup,third-party (easylist.txt: 29011) -.c4tracking01.com -# ||banners.cams.com^$popup,third-party (easylist.txt: 29008) -.banners.cams.com -# ||aquete.com^$popup,third-party (easylist.txt: 29007) -.aquete.com -# ||adxpansion.com^$popup,third-party (easylist.txt: 29006) -.adxpansion.com -# ||adxite.com^$popup,third-party (easylist.txt: 29005) -.adxite.com -# ||adultmoda.com^$popup,third-party (easylist.txt: 29004) -.adultmoda.com -# ||adultadworld.com^$popup,third-party (easylist.txt: 29003) -.adultadworld.com -# ||adultadmedia.com^$popup,third-party (easylist.txt: 29002) -.adultadmedia.com -# ||adsnero.website^$popup,third-party (easylist.txt: 29000) -.adsnero.website -# ||45i73jv6.com^$popup,third-party (easylist.txt: 28999) -.45i73jv6.com -# ||3file.info^$popup,third-party (easylist.txt: 28997) -.3file.info -# ||zeroredirect1.com^$popup,third-party (easylist.txt: 28197) -.zeroredirect1.com -# ||zedo.com^$popup,third-party (easylist.txt: 28196) -.zedo.com -# ||z5x.net^$popup,third-party (easylist.txt: 28195) -.z5x.net -# ||yupiromo.ru^$popup,third-party (easylist.txt: 28194) -.yupiromo.ru -# ||yieldtraffic.com^$popup,third-party (easylist.txt: 28193) -.yieldtraffic.com -# ||yieldmanager.com^$popup,third-party (easylist.txt: 28192) -.yieldmanager.com -# ||xtendmedia.com^$popup,third-party (easylist.txt: 28191) -.xtendmedia.com -# ||xclicks.net^$popup,third-party (easylist.txt: 28190) -.xclicks.net -# ||xaxoro.com^$popup,third-party (easylist.txt: 28189) -.xaxoro.com -# ||wzus1.ask.com^$popup,third-party (easylist.txt: 28188) -.wzus1.ask.com -# ||wwwpromoter.com^$popup,third-party (easylist.txt: 28187) -.wwwpromoter.com -# ||worldrewardcenter.net^$popup,third-party (easylist.txt: 28186) -.worldrewardcenter.net -# ||wonderlandads.com^$popup,third-party (easylist.txt: 28185) -.wonderlandads.com -# ||wigetmedia.com^$popup,third-party (easylist.txt: 28184) -.wigetmedia.com -# ||whoads.net^$popup,third-party (easylist.txt: 28183) -.whoads.net -# ||weliketofuckstrangers.com^$popup,third-party (easylist.txt: 28182) -.weliketofuckstrangers.com -# ||webtrackerplus.com^$popup,third-party (easylist.txt: 28181) -.webtrackerplus.com -# ||websearchers.net^$popup,third-party (easylist.txt: 28180) -.websearchers.net -# ||weareheard.org^$popup,third-party (easylist.txt: 28179) -.weareheard.org -# ||wbsadsdel2.com^$popup,third-party (easylist.txt: 28178) -.wbsadsdel2.com -# ||wbsadsdel.com^$popup,third-party (easylist.txt: 28177) -.wbsadsdel.com -# ||wahoha.com^$popup,third-party (easylist.txt: 28176) -.wahoha.com -# ||waframedia5.com^$popup,third-party (easylist.txt: 28175) -.waframedia5.com -# ||w4statistics.info^$popup,third-party (easylist.txt: 28174) -.w4statistics.info -# ||vprmnwbskk.com^$popup,third-party (easylist.txt: 28173) -.vprmnwbskk.com -# ||vipcpms.com^$popup,third-party (easylist.txt: 28172) -.vipcpms.com -# ||vgsgaming-ads.com^$popup,third-party (easylist.txt: 28171) -.vgsgaming-ads.com -# ||updater-checker.net^$popup,third-party (easylist.txt: 28170) -.updater-checker.net -# ||twqiqiang.com^$popup,third-party (easylist.txt: 28169) -.twqiqiang.com -# ||tvas-b.pw^$popup,third-party (easylist.txt: 28168) -.tvas-b.pw -# ||tvas-a.pw^$popup,third-party (easylist.txt: 28167) -.tvas-a.pw -# ||tutvp.com^$popup,third-party (easylist.txt: 28166) -.tutvp.com -# ||trw12.com^$popup,third-party (easylist.txt: 28165) -.trw12.com -# ||trklnks.com^$popup,third-party (easylist.txt: 28164) -.trklnks.com -# ||traffichaus.com^$popup,third-party (easylist.txt: 28163) -.traffichaus.com -# ||trafficforce.com^$popup,third-party (easylist.txt: 28162) -.trafficforce.com -# ||tracki112.com^$popup,third-party (easylist.txt: 28161) -.tracki112.com -# ||totrack.ru^$popup,third-party (easylist.txt: 28160) -.totrack.ru -# ||totaladperformance.com^$popup,third-party (easylist.txt: 28159) -.totaladperformance.com -# ||toroadvertisingmedia.com^$popup,third-party (easylist.txt: 28158) -.toroadvertisingmedia.com -# ||topshelftraffic.com^$popup,third-party (easylist.txt: 28157) -.topshelftraffic.com -# ||tonefuse.com^$popup,third-party (easylist.txt: 28156) -.tonefuse.com -# ||tjoomo.com^$popup,third-party (easylist.txt: 28155) -.tjoomo.com -# ||therewardsurvey.com^$popup,third-party (easylist.txt: 28154) -.therewardsurvey.com -# ||thepornsurvey.com^$popup,third-party (easylist.txt: 28153) -.thepornsurvey.com -# ||the-consumer-reporter.org^$popup,third-party (easylist.txt: 28152) -.the-consumer-reporter.org -# ||the-binary-trader.biz^$popup,third-party (easylist.txt: 28151) -.the-binary-trader.biz -# ||textsrv.com^$popup,third-party (easylist.txt: 28150) -.textsrv.com -# ||terraclicks.com^$popup,third-party (easylist.txt: 28149) -.terraclicks.com -# ||technicssurveys.info^$popup,third-party (easylist.txt: 28148) -.technicssurveys.info -# ||techcloudtrk.com^$popup,third-party (easylist.txt: 28147) -.techcloudtrk.com -# ||td563.com^$popup,third-party (easylist.txt: 28146) -.td563.com -# ||syncedvision.com^$popup,third-party (easylist.txt: 28145) -.syncedvision.com -# ||symkashop.ru^$popup,third-party (easylist.txt: 28144) -.symkashop.ru -# ||swadvertising.org^$popup,third-party (easylist.txt: 28143) -.swadvertising.org -# ||surveystope.com^$popup,third-party (easylist.txt: 28142) -.surveystope.com -# ||surveyspaid.com^$popup,third-party (easylist.txt: 28141) -.surveyspaid.com -# ||surveysforgifts.org^$popup,third-party (easylist.txt: 28140) -.surveysforgifts.org -# ||surveyend.com^$popup,third-party (easylist.txt: 28139) -.surveyend.com -# ||statstrackeronline.com^$popup,third-party (easylist.txt: 28138) -.statstrackeronline.com -# ||statsmobi.com^$popup,third-party (easylist.txt: 28137) -.statsmobi.com -# ||stabletrappeddevote.info^$popup,third-party (easylist.txt: 28136) -.stabletrappeddevote.info -# ||srvpub.com^$popup,third-party (easylist.txt: 28135) -.srvpub.com -# ||srv2trking.com^$popup,third-party (easylist.txt: 28134) -.srv2trking.com -# ||srv-ad.com^$popup,third-party (easylist.txt: 28133) -.srv-ad.com -# ||sparkstudios.com^$popup,third-party (easylist.txt: 28132) -.sparkstudios.com -# ||smutty.com^$popup,third-party (easylist.txt: 28131) -.smutty.com -# ||sms-mmm.com^$popup,third-party (easylist.txt: 28130) -.sms-mmm.com -# ||smartwebads.com^$popup,third-party (easylist.txt: 28129) -.smartwebads.com -# ||slimspots.com^$popup,third-party (easylist.txt: 28128) -.slimspots.com -# ||slikslik.com^$popup,third-party (easylist.txt: 28127) -.slikslik.com -# ||singlesexdates.com^$popup,third-party (easylist.txt: 28126) -.singlesexdates.com -# ||simpleinternetupdate.com^$popup,third-party (easylist.txt: 28125) -.simpleinternetupdate.com -# ||silstavo.com^$popup,third-party (easylist.txt: 28124) -.silstavo.com -# ||sexitnow.com^$popup,third-party (easylist.txt: 28123) -.sexitnow.com -# ||servingit.co^$popup,third-party (easylist.txt: 28122) -.servingit.co -# ||serving-sys.com^$popup,third-party (easylist.txt: 28121) -.serving-sys.com -# ||senzapudore.it^$popup,third-party (easylist.txt: 28120) -.senzapudore.it -# ||secureintl.com^$popup,third-party (easylist.txt: 28119) -.secureintl.com -# ||rubikon6.if.ua^$popup,third-party (easylist.txt: 28118) -.rubikon6.if.ua -# ||roulettebotplus.com^$popup,third-party (easylist.txt: 28117) -.roulettebotplus.com -# ||ronetu.ru^$popup,third-party (easylist.txt: 28116) -.ronetu.ru -# ||ringtonepartner.com^$popup,third-party (easylist.txt: 28115) -.ringtonepartner.com -# ||ringtonematcher.com^$popup,third-party (easylist.txt: 28114) -.ringtonematcher.com -# ||rikhov.ru^$popup,third-party (easylist.txt: 28113) -.rikhov.ru -# ||rgadvert.com^$popup,third-party (easylist.txt: 28112) -.rgadvert.com -# ||retkow.com^$popup,third-party (easylist.txt: 28111) -.retkow.com -# ||rehok.km.ua^$popup,third-party (easylist.txt: 28110) -.rehok.km.ua -# ||rdsrv.com^$popup,third-party (easylist.txt: 28109) -.rdsrv.com -# ||ratari.ru^$popup,third-party (easylist.txt: 28108) -.ratari.ru -# ||raoplenort.biz^$popup,third-party (easylist.txt: 28107) -.raoplenort.biz -# ||pwrads.net^$popup,third-party (easylist.txt: 28106) -.pwrads.net -# ||pureadexchange.com^$popup,third-party (easylist.txt: 28105) -.pureadexchange.com -# ||pulse360.com^$popup,third-party (easylist.txt: 28104) -.pulse360.com -# ||pubted.com^$popup,third-party (easylist.txt: 28103) -.pubted.com -# ||pubdirecte.com^$popup,third-party (easylist.txt: 28102) -.pubdirecte.com -# ||pubads.g.doubleclick.net^$popup,third-party (easylist.txt: 28101) -.pubads.g.doubleclick.net -# ||prowlerz.com^$popup,third-party (easylist.txt: 28100) -.prowlerz.com -# ||propellerpops.com^$popup,third-party (easylist.txt: 28099) -.propellerpops.com -# ||propellerads.com^$popup,third-party (easylist.txt: 28098) -.propellerads.com -# ||promotions.sportsbet.com.au^$popup,third-party (easylist.txt: 28097) -.promotions.sportsbet.com.au -# ||promotions-paradise.org^$popup,third-party (easylist.txt: 28096) -.promotions-paradise.org -# ||prizegiveaway.org^$popup,third-party (easylist.txt: 28095) -.prizegiveaway.org -# ||print3.info^$popup,third-party (easylist.txt: 28094) -.print3.info -# ||poponclick.com^$popup,third-party (easylist.txt: 28093) -.poponclick.com -# ||popmyads.com^$popup,third-party (easylist.txt: 28092) -.popmyads.com -# ||popads.net^$popup,third-party (easylist.txt: 28091) -.popads.net -# ||pomofon.ru^$popup,third-party (easylist.txt: 28090) -.pomofon.ru -# ||pointroll.com^$popup,third-party (easylist.txt: 28089) -.pointroll.com -# ||pointclicktrack.com^$popup,third-party (easylist.txt: 28088) -.pointclicktrack.com -# ||plsdrct2.me^$popup,third-party (easylist.txt: 28087) -.plsdrct2.me -# ||plexop.net^$popup,third-party (easylist.txt: 28086) -.plexop.net -# ||pipaoffers.com^$popup,third-party (easylist.txt: 28085) -.pipaoffers.com -# ||pgmediaserve.com^$popup,third-party (easylist.txt: 28084) -.pgmediaserve.com -# ||pexu.com^$popup,third-party (easylist.txt: 28083) -.pexu.com -# ||perfcreatives.com^$popup,third-party (easylist.txt: 28082) -.perfcreatives.com -# ||pdfcomplete.com^$popup,third-party (easylist.txt: 28081) -.pdfcomplete.com -# ||partypills.org^$popup,third-party (easylist.txt: 28080) -.partypills.org -# ||oxybe.com^$popup,third-party (easylist.txt: 28079) -.oxybe.com -# ||overturs.com^$popup,third-party (easylist.txt: 28078) -.overturs.com -# ||openadserving.com^$popup,third-party (easylist.txt: 28077) -.openadserving.com -# ||open-downloads.net^$popup,third-party (easylist.txt: 28076) -.open-downloads.net -# ||onlinecashmethod.com^$popup,third-party (easylist.txt: 28075) -.onlinecashmethod.com -# ||onlinecareerpackage.com^$popup,third-party (easylist.txt: 28074) -.onlinecareerpackage.com -# ||onhitads.net^$popup,third-party (easylist.txt: 28073) -.onhitads.net -# ||onclickads.net^$popup,third-party (easylist.txt: 28072) -.onclickads.net -# ||onad.eu^$popup,third-party (easylist.txt: 28071) -.onad.eu -# ||o333o.com^$popup,third-party (easylist.txt: 28070) -.o333o.com -# ||nymphdate.com^$popup,third-party (easylist.txt: 28069) -.nymphdate.com -# ||nturveev.com^$popup,third-party (easylist.txt: 28068) -.nturveev.com -# ||netliker.com^$popup,third-party (easylist.txt: 28067) -.netliker.com -# ||n388hkxg.com^$popup,third-party (easylist.txt: 28066) -.n388hkxg.com -# ||my-layer.net^$popup,third-party (easylist.txt: 28065) -.my-layer.net -# ||moneytec.com^$popup,third-party (easylist.txt: 28064) -.moneytec.com -# ||mobileraffles.com^$popup,third-party (easylist.txt: 28063) -.mobileraffles.com -# ||mktmobi.com^$popup,third-party (easylist.txt: 28062) -.mktmobi.com -# ||millionairesurveys.com^$popup,third-party (easylist.txt: 28061) -.millionairesurveys.com -# ||metodoroleta24h.com^$popup,third-party (easylist.txt: 28060) -.metodoroleta24h.com -# ||menepe.com^$popup,third-party (easylist.txt: 28059) -.menepe.com -# ||megapopads.com^$popup,third-party (easylist.txt: 28058) -.megapopads.com -# ||meetsexygirls.org^$popup,third-party (easylist.txt: 28057) -.meetsexygirls.org -# ||meetgoodgirls.com^$popup,third-party (easylist.txt: 28056) -.meetgoodgirls.com -# ||mediaseeding.com^$popup,third-party (easylist.txt: 28055) -.mediaseeding.com -# ||media-servers.net^$popup,third-party (easylist.txt: 28054) -.media-servers.net -# ||media-app.com^$popup,third-party (easylist.txt: 28053) -.media-app.com -# ||mdn2015x1.com^$popup,third-party (easylist.txt: 28052) -.mdn2015x1.com -# ||marketresearchglobal.com^$popup,third-party (easylist.txt: 28051) -.marketresearchglobal.com -# ||maomaotang.com^$popup,third-party (easylist.txt: 28050) -.maomaotang.com -# ||m57ku6sm.com^$popup,third-party (easylist.txt: 28049) -.m57ku6sm.com -# ||lustigbanner.com^$popup,third-party (easylist.txt: 28048) -.lustigbanner.com -# ||lnkgt.com^$popup,third-party (easylist.txt: 28047) -.lnkgt.com -# ||lmebxwbsno.com^$popup,third-party (easylist.txt: 28046) -.lmebxwbsno.com -# ||liversely.net^$popup,third-party (easylist.txt: 28045) -.liversely.net -# ||livepromotools.com^$popup,third-party (easylist.txt: 28044) -.livepromotools.com -# ||livechatflirt.com^$popup,third-party (easylist.txt: 28043) -.livechatflirt.com -# ||ligatus.com^$popup,third-party (easylist.txt: 28042) -.ligatus.com -# ||letshareus.com^$popup,third-party (easylist.txt: 28041) -.letshareus.com -# ||legisland.net^$popup,third-party (easylist.txt: 28040) -.legisland.net -# ||landsraad.cc^$popup,third-party (easylist.txt: 28039) -.landsraad.cc -# ||kanoodle.com^$popup,third-party (easylist.txt: 28038) -.kanoodle.com -# ||junbi-tracker.com^$popup,third-party (easylist.txt: 28037) -.junbi-tracker.com -# ||jujzh9va.com^$popup,third-party (easylist.txt: 28036) -.jujzh9va.com -# ||jdtracker.com^$popup,third-party (easylist.txt: 28035) -.jdtracker.com -# ||integral-marketing.com^$popup,third-party (easylist.txt: 28034) -.integral-marketing.com -# ||instantpaydaynetwork.com^$popup,third-party (easylist.txt: 28033) -.instantpaydaynetwork.com -# ||insta-cash.net^$popup,third-party (easylist.txt: 28032) -.insta-cash.net -# ||indianweeklynews.com^$popup,third-party (easylist.txt: 28031) -.indianweeklynews.com -# ||inbinaryoption.com^$popup,third-party (easylist.txt: 28029) -.inbinaryoption.com -# ||ilividnewtab.com^$popup,third-party (easylist.txt: 28028) -.ilividnewtab.com -# ||iiasdomk1m9812m4z3.com^$popup,third-party (easylist.txt: 28027) -.iiasdomk1m9812m4z3.com -# ||ifilez.org^$popup,third-party (easylist.txt: 28026) -.ifilez.org -# ||hstpnetwork.com^$popup,third-party (easylist.txt: 28025) -.hstpnetwork.com -# ||hotchatdirect.com^$popup,third-party (easylist.txt: 28024) -.hotchatdirect.com -# ||hornygirlsexposed.com^$popup,third-party (easylist.txt: 28023) -.hornygirlsexposed.com -# ||homecareerforyou1.info^$popup,third-party (easylist.txt: 28022) -.homecareerforyou1.info -# ||hilltopads.net^$popup,third-party (easylist.txt: 28021) -.hilltopads.net -# ||highcpms.com^$popup,third-party (easylist.txt: 28020) -.highcpms.com -# ||hd-plugin.com^$popup,third-party (easylist.txt: 28019) -.hd-plugin.com -# ||gsniper2.com^$popup,third-party (easylist.txt: 28018) -.gsniper2.com -# ||greatbranddeals.com^$popup,third-party (easylist.txt: 28017) -.greatbranddeals.com -# ||gotoplaymillion.com^$popup,third-party (easylist.txt: 28016) -.gotoplaymillion.com -# ||googleads.g.doubleclick.net^$popup,third-party (easylist.txt: 28015) -.googleads.g.doubleclick.net -# ||gofindmedia.net^$popup,third-party (easylist.txt: 28014) -.gofindmedia.net -# ||giveaways.club^$popup,third-party (easylist.txt: 28013) -.giveaways.club -# ||gib-gib-la.com^$popup,third-party (easylist.txt: 28012) -.gib-gib-la.com -# ||ganja.com^$popup,third-party (easylist.txt: 28011) -.ganja.com -# ||g05.info^$popup,third-party (easylist.txt: 28010) -.g05.info -# ||frtya.com^$popup,third-party (easylist.txt: 28009) -.frtya.com -# ||friendlyduck.com^$popup,third-party (easylist.txt: 28008) -.friendlyduck.com -# ||fmdwbsfxf0.com^$popup,third-party (easylist.txt: 28007) -.fmdwbsfxf0.com -# ||firstmediahub.com^$popup,third-party (easylist.txt: 28006) -.firstmediahub.com -# ||firstclass-download.com^$popup,third-party (easylist.txt: 28005) -.firstclass-download.com -# ||findonlinesurveysforcash.com^$popup,third-party (easylist.txt: 28004) -.findonlinesurveysforcash.com -# ||finance-reporting.org^$popup,third-party (easylist.txt: 28003) -.finance-reporting.org -# ||filestube.com^$popup,third-party (easylist.txt: 28002) -.filestube.com -# ||fidel.to^$popup,third-party (easylist.txt: 28001) -.fidel.to -# ||fhserve.com^$popup,third-party (easylist.txt: 28000) -.fhserve.com -# ||f-questionnaire.com^$popup,third-party (easylist.txt: 27999) -.f-questionnaire.com -# ||f-hookups.com^$popup,third-party (easylist.txt: 27998) -.f-hookups.com -# ||ezdownloadpro.info^$popup,third-party (easylist.txt: 27997) -.ezdownloadpro.info -# ||exoclick.com^$popup,third-party (easylist.txt: 27996) -.exoclick.com -# ||ewebse.com^$popup,third-party (easylist.txt: 27995) -.ewebse.com -# ||euromillionairesystem.me^$popup,third-party (easylist.txt: 27994) -.euromillionairesystem.me -# ||eroanalysis.com^$popup,third-party (easylist.txt: 27993) -.eroanalysis.com -# ||epicgameads.com^$popup,third-party (easylist.txt: 27992) -.epicgameads.com -# ||ebzkswbs78.com^$popup,third-party (easylist.txt: 27991) -.ebzkswbs78.com -# ||easykits.org^$popup,third-party (easylist.txt: 27990) -.easykits.org -# ||easydownloadnow.com^$popup,third-party (easylist.txt: 27989) -.easydownloadnow.com -# ||durokuro.com^$popup,third-party (easylist.txt: 27988) -.durokuro.com -# ||downloadthesefile.com^$popup,third-party (easylist.txt: 27987) -.downloadthesefile.com -# ||downloadboutique.com^$popup,third-party (easylist.txt: 27986) -.downloadboutique.com -# ||down1oads.com^$popup,third-party (easylist.txt: 27985) -.down1oads.com -# ||doublepimp.com^$popup,third-party (easylist.txt: 27984) -.doublepimp.com -# ||dojerena.com^$popup,third-party (easylist.txt: 27983) -.dojerena.com -# ||distantstat.com^$popup,third-party (easylist.txt: 27982) -.distantstat.com -# ||distantnews.com^$popup,third-party (easylist.txt: 27981) -.distantnews.com -# ||directrev.com^$popup,third-party (easylist.txt: 27980) -.directrev.com -# ||denza.pro^$popup,third-party (easylist.txt: 27979) -.denza.pro -# ||crazyad.net^$popup,third-party (easylist.txt: 27978) -.crazyad.net -# ||cpvadvertise.com^$popup,third-party (easylist.txt: 27977) -.cpvadvertise.com -# ||cpmterra.com^$popup,third-party (easylist.txt: 27976) -.cpmterra.com -# ||cpmstar.com^$popup,third-party (easylist.txt: 27975) -.cpmstar.com -# ||cpayard.com^$popup,third-party (easylist.txt: 27974) -.cpayard.com -# ||contractallsinstance.info^$popup,third-party (easylist.txt: 27973) -.contractallsinstance.info -# ||contentabc.com^$popup,third-party (easylist.txt: 27972) -.contentabc.com -# ||computersoftwarelive.com^$popup,third-party (easylist.txt: 27971) -.computersoftwarelive.com -# ||cmllk2.info^$popup,third-party (easylist.txt: 27970) -.cmllk2.info -# ||clpremdo.com^$popup,third-party (easylist.txt: 27969) -.clpremdo.com -# ||cloudtracked.com^$popup,third-party (easylist.txt: 27968) -.cloudtracked.com -# ||clkrev.com^$popup,third-party (easylist.txt: 27967) -.clkrev.com -# ||clkmon.com^$popup,third-party (easylist.txt: 27966) -.clkmon.com -# ||clkads.com^$popup,third-party (easylist.txt: 27965) -.clkads.com -# ||clicktripz.com^$popup,third-party (easylist.txt: 27964) -.clicktripz.com -# ||clickter.net^$popup,third-party (easylist.txt: 27963) -.clickter.net -# ||clicksvenue.com^$popup,third-party (easylist.txt: 27962) -.clicksvenue.com -# ||clicksor.com^$popup,third-party (easylist.txt: 27961) -.clicksor.com -# ||clickosmedia.com^$popup,third-party (easylist.txt: 27960) -.clickosmedia.com -# ||clickmngr.com^$popup,third-party (easylist.txt: 27959) -.clickmngr.com -# ||clickfuse.com^$popup,third-party (easylist.txt: 27958) -.clickfuse.com -# ||casino.betsson.com^$popup,third-party (easylist.txt: 27957) -.casino.betsson.com -# ||callhelpmetaroll.rocks^$popup,third-party (easylist.txt: 27955) -.callhelpmetaroll.rocks -# ||bzrvwbsh5o.com^$popup,third-party (easylist.txt: 27954) -.bzrvwbsh5o.com -# ||brandreachsys.com^$popup,third-party (easylist.txt: 27953) -.brandreachsys.com -# ||bonzuna.com^$popup,third-party (easylist.txt: 27952) -.bonzuna.com -# ||bongacams.com^$popup,third-party (easylist.txt: 27951) -.bongacams.com -# ||blogscash.info^$popup,third-party (easylist.txt: 27950) -.blogscash.info -# ||blockthis.es^$popup,third-party (easylist.txt: 27949) -.blockthis.es -# ||blinkogold.es^$popup,third-party (easylist.txt: 27948) -.blinkogold.es -# ||blinko.es^$popup,third-party (easylist.txt: 27947) -.blinko.es -# ||binaryoptionsgame.com^$popup,third-party (easylist.txt: 27946) -.binaryoptionsgame.com -# ||bighot.ru^$popup,third-party (easylist.txt: 27945) -.bighot.ru -# ||bidvertiser.com^$popup,third-party (easylist.txt: 27944) -.bidvertiser.com -# ||bidsystem.com^$popup,third-party (easylist.txt: 27943) -.bidsystem.com -# ||bestproducttesters.com^$popup,third-party (easylist.txt: 27942) -.bestproducttesters.com -# ||best-zb.com^$popup,third-party (easylist.txt: 27941) -.best-zb.com -# ||bentdownload.com^$popup,third-party (easylist.txt: 27940) -.bentdownload.com -# ||becoquins.net^$popup,third-party (easylist.txt: 27939) -.becoquins.net -# ||becoquin.com^$popup,third-party (easylist.txt: 27938) -.becoquin.com -# ||bbuni.com^$popup,third-party (easylist.txt: 27937) -.bbuni.com -# ||baypops.com^$popup,third-party (easylist.txt: 27936) -.baypops.com -# ||awsclic.com^$popup,third-party (easylist.txt: 27935) -.awsclic.com -# ||awempire.com^$popup,third-party (easylist.txt: 27934) -.awempire.com -# ||avalopaly.com^$popup,third-party (easylist.txt: 27933) -.avalopaly.com -# ||august15download.com^$popup,third-party (easylist.txt: 27932) -.august15download.com -# ||ar.voicefive.com^$popup,third-party (easylist.txt: 27931) -.ar.voicefive.com -# ||answered-questions.com^$popup,third-party (easylist.txt: 27930) -.answered-questions.com -# ||annualinternetsurvey.com^$popup,third-party (easylist.txt: 27929) -.annualinternetsurvey.com -# ||angege.com^$popup,third-party (easylist.txt: 27928) -.angege.com -# ||am10.ru^$popup,third-party (easylist.txt: 27927) -.am10.ru -# ||alternads.info^$popup,third-party (easylist.txt: 27926) -.alternads.info -# ||alpinedrct.com^$popup,third-party (easylist.txt: 27925) -.alpinedrct.com -# ||allsporttv.com^$popup,third-party (easylist.txt: 27924) -.allsporttv.com -# ||allslotscasino.com^$popup,third-party (easylist.txt: 27923) -.allslotscasino.com -# ||aflrm.com^$popup,third-party (easylist.txt: 27922) -.aflrm.com -# ||affbuzzads.com^$popup,third-party (easylist.txt: 27921) -.affbuzzads.com -# ||advmedialtd.com^$popup,third-party (easylist.txt: 27920) -.advmedialtd.com -# ||advertserve.com^$popup,third-party (easylist.txt: 27919) -.advertserve.com -# ||adtraffic.org^$popup,third-party (easylist.txt: 27918) -.adtraffic.org -# ||adtrace.org^$popup,third-party (easylist.txt: 27917) -.adtrace.org -# ||adsurve.com^$popup,third-party (easylist.txt: 27916) -.adsurve.com -# ||adsupplyads.com^$popup,third-party (easylist.txt: 27915) -.adsupplyads.com -# ||adsupply.com^$popup,third-party (easylist.txt: 27914) -.adsupply.com -# ||adsmarket.com^$popup,third-party (easylist.txt: 27913) -.adsmarket.com -# ||adshostnet.com^$popup,third-party (easylist.txt: 27912) -.adshostnet.com -# ||adserverplus.com^$popup,third-party (easylist.txt: 27911) -.adserverplus.com -# ||ads.sexier.com^$popup,third-party (easylist.txt: 27910) -.ads.sexier.com -# ||adplxmd.com^$popup,third-party (easylist.txt: 27909) -.adplxmd.com -# ||adonweb.ru^$popup,third-party (easylist.txt: 27908) -.adonweb.ru -# ||adnxs.com^$popup,third-party (easylist.txt: 27907) -.adnxs.com -# ||adnetworkperformance.com^$popup,third-party (easylist.txt: 27906) -.adnetworkperformance.com -# ||adlure.net^$popup,third-party (easylist.txt: 27905) -.adlure.net -# ||adk2x.com^$popup,third-party (easylist.txt: 27904) -.adk2x.com -# ||adk2.net^$popup,third-party (easylist.txt: 27903) -.adk2.net -# ||adk2.com^$popup,third-party (easylist.txt: 27902) -.adk2.com -# ||adk2.co^$popup,third-party (easylist.txt: 27901) -.adk2.co -# ||adjuggler.net^$popup,third-party (easylist.txt: 27900) -.adjuggler.net -# ||aditor.com^$popup,third-party (easylist.txt: 27899) -.aditor.com -# ||adimps.com^$popup,third-party (easylist.txt: 27898) -.adimps.com -# ||adform.net^$popup,third-party (easylist.txt: 27897) -.adform.net -# ||adfarm.mediaplex.com^$popup,third-party (easylist.txt: 27896) -.adfarm.mediaplex.com -# ||adcdnx.com^$popup,third-party (easylist.txt: 27895) -.adcdnx.com -# ||adcash.com^$popup,third-party (easylist.txt: 27894) -.adcash.com -# ||adbma.com^$popup,third-party (easylist.txt: 27893) -.adbma.com -# ||ad4game.com^$popup,third-party (easylist.txt: 27892) -.ad4game.com -# ||ad2games.com^$popup,third-party (easylist.txt: 27891) -.ad2games.com -# ||ad2387.com^$popup,third-party (easylist.txt: 27890) -.ad2387.com -# ||ad131m.com^$popup,third-party (easylist.txt: 27889) -.ad131m.com -# ||ad.doubleclick.net^$popup,third-party (easylist.txt: 27888) -.ad.doubleclick.net -# ||ad-feeds.com^$popup,third-party (easylist.txt: 27887) -.ad-feeds.com -# ||ad-emea.doubleclick.net^$popup,third-party (easylist.txt: 27886) -.ad-emea.doubleclick.net -# ||ad-apac.doubleclick.net^$popup,third-party (easylist.txt: 27885) -.ad-apac.doubleclick.net -# ||absoluteclickscom.com^$popup,third-party (easylist.txt: 27884) -.absoluteclickscom.com -# ||abbeyblog.me^$popup,third-party (easylist.txt: 27883) -.abbeyblog.me -# ||9newstoday.net^$popup,third-party (easylist.txt: 27882) -.9newstoday.net -# ||888promos.com^$popup,third-party (easylist.txt: 27881) -.888promos.com -# ||888poker.com^$popup,third-party (easylist.txt: 27880) -.888poker.com -# ||888media.net^$popup,third-party (easylist.txt: 27879) -.888media.net -# ||888games.com^$popup,third-party (easylist.txt: 27878) -.888games.com -# ||888casino.com^$popup,third-party (easylist.txt: 27877) -.888casino.com -# ||83nsdjqqo1cau183xz.com^$popup,third-party (easylist.txt: 27876) -.83nsdjqqo1cau183xz.com -# ||5dimes.com^$popup,third-party (easylist.txt: 27875) -.5dimes.com -# ||4dsply.com^$popup,third-party (easylist.txt: 27874) -.4dsply.com -# ||360adstrack.com^$popup,third-party (easylist.txt: 27873) -.360adstrack.com -# ||360adshost.net^$popup,third-party (easylist.txt: 27872) -.360adshost.net -# ||32d1d3b9c.se^$popup,third-party (easylist.txt: 27871) -.32d1d3b9c.se -# ||30daychange.co^$popup,third-party (easylist.txt: 27870) -.30daychange.co -# ||2mdn.info^$popup,third-party (easylist.txt: 27869) -.2mdn.info -# ||1phads.com^$popup,third-party (easylist.txt: 27868) -.1phads.com -# ||1afcfcb2c.ninja^$popup,third-party (easylist.txt: 27867) -.1afcfcb2c.ninja -# ||123vidz.com^$popup,third-party (easylist.txt: 27866) -.123vidz.com -# /redirect.spark?$popup,third-party (easylist.txt: 7156) -/(.*/)?redirect\.spark\? -# /fp.engine?$popup,third-party (easylist.txt: 7145) -/(.*/)?fp\.engine\? -# &link_type=offer$popup,third-party (easylist.txt: 7117) -/.*&link_type=offer #ab2p-block-request-Xx {+client-header-tagger{ab2p-block-request-Xx} \ } -TAG:^ab2p-block-request-Xx$ -# ||pornhub.com/pics/latest/$xmlhttprequest (easylistchina+easylist.txt: 46762) -.pornhub.com/pics/latest/ -# ||hardsextube.com/pornstars/$xmlhttprequest (easylistchina+easylist.txt: 46469) -.hardsextube.com/pornstars/ -# ||tomshardware.com/price/widget/?$xmlhttprequest (easylistchina+easylist.txt: 45197) -.tomshardware.com/price/widget/\? -# ||tomshardware.com/indexAjax.php?ctrl=ajax_pricegrabber$xmlhttprequest (easylistchina+easylist.txt: 45196) -.tomshardware.com/indexAjax\.php\?ctrl=ajax_pricegrabber -# ||thenextweb.com^*/canvas.php?$xmlhttprequest (easylistchina+easylist.txt: 45108) -.thenextweb.com/.*/canvas\.php\? -# ||onrpg.com^*.php?$xmlhttprequest (easylistchina+easylist.txt: 44269) -.onrpg.com/.*\.php\? -# ||lshunter.tv^*&task=getbets$xmlhttprequest (easylistchina+easylist.txt: 43814) -.lshunter.tv/.*&task=getbets -# ||feedly.com/amazon.$xmlhttprequest (easylistchina+easylist.txt: 42973) -.feedly.com/amazon\. -# ||4sysops.com^*.php?unit=main$xmlhttprequest (easylistchina+easylist.txt: 41979) -.4sysops.com/.*\.php\?unit=main -# /track.php?click=*&domain=*&uid=$xmlhttprequest (easylistchina+easylist.txt: 16021) -/(.*/)?track\.php\?click=.*&domain=.*&uid= -# /rg-rlog.php$xmlhttprequest (easylistchina+easylist.txt: 15512) -/(.*/)?rg-rlog\.php -rg-rlog.php*. -# /rg-erdr.php$xmlhttprequest (easylistchina+easylist.txt: 15511) -/(.*/)?rg-erdr\.php -rg-erdr.php*. -# ||ithome.com/html/$xmlhttprequest (easylistchina+easylist.txt: 3544) +# ||ithome.com/html/$xmlhttprequest (easylistchina.txt: 3529) .ithome.com/html/ -# ||lurkmore.to/*/?*=left$xmlhttprequest (advblock.txt: 6011) -.lurkmore.to/.*/\?.*=left -# ||lurkmo.re/*/?*=left$xmlhttprequest (advblock.txt: 6010) -.lurkmo.re/.*/\?.*=left -# ||pornhub.com/pics/latest/$xmlhttprequest (easylist.txt: 36277) -.pornhub.com/pics/latest/ -# ||hardsextube.com/pornstars/$xmlhttprequest (easylist.txt: 35984) -.hardsextube.com/pornstars/ -# ||tomshardware.com/price/widget/?$xmlhttprequest (easylist.txt: 34712) -.tomshardware.com/price/widget/\? -# ||tomshardware.com/indexAjax.php?ctrl=ajax_pricegrabber$xmlhttprequest (easylist.txt: 34711) -.tomshardware.com/indexAjax\.php\?ctrl=ajax_pricegrabber -# ||thenextweb.com^*/canvas.php?$xmlhttprequest (easylist.txt: 34623) -.thenextweb.com/.*/canvas\.php\? -# ||onrpg.com^*.php?$xmlhttprequest (easylist.txt: 33784) -.onrpg.com/.*\.php\? -# ||lshunter.tv^*&task=getbets$xmlhttprequest (easylist.txt: 33329) -.lshunter.tv/.*&task=getbets -# ||feedly.com/amazon.$xmlhttprequest (easylist.txt: 32488) -.feedly.com/amazon\. -# ||4sysops.com^*.php?unit=main$xmlhttprequest (easylist.txt: 31494) -.4sysops.com/.*\.php\?unit=main -# /track.php?click=*&domain=*&uid=$xmlhttprequest (easylist.txt: 5536) -/(.*/)?track\.php\?click=.*&domain=.*&uid= -# /rg-rlog.php$xmlhttprequest (easylist.txt: 5027) -/(.*/)?rg-rlog\.php -rg-rlog.php*. -# /rg-erdr.php$xmlhttprequest (easylist.txt: 5026) -/(.*/)?rg-erdr\.php -rg-erdr.php*. - -#ab2p-block-request-Xx-when-R291 -{+client-header-tagger{ab2p-block-request-Xx-when-R291} \ -} -# ||most3.ykt.ru/vast/$xmlhttprequest,domain=joker.ykt.ru (advblock.txt: 6085) -.most3.ykt.ru/vast/ - -#ab2p-block-request-Xx-when-R698t -{+client-header-tagger{ab2p-block-request-Xx-when-R698t} \ -} -# |http://*=*&$third-party,xmlhttprequest,domain=sporcle.com (easylistchina+easylist.txt: 46073) -/.*=.*& -# .com/lib/f=$third-party,xmlhttprequest,domain=sporcle.com (easylistchina+easylist.txt: 46071) -/.*\.com/lib/f= -.*.com/lib/f= -# |http://*=*&$third-party,xmlhttprequest,domain=sporcle.com (easylist.txt: 35588) -/.*=.*& -# .com/lib/f=$third-party,xmlhttprequest,domain=sporcle.com (easylist.txt: 35586) -/.*\.com/lib/f= -.*.com/lib/f= - -#ab2p-block-request-Xx-when-R480 -{+client-header-tagger{ab2p-block-request-Xx-when-R480} \ -} -# ||t8.*.com/?$xmlhttprequest,domain=tube8.com (easylistchina+easylist.txt: 46910) -.t8.*./.*\.com/\? -.t8.*.com/\? -# ||t8.*.com/?$xmlhttprequest,domain=tube8.com (easylist.txt: 36425) -.t8.*./.*\.com/\? -.t8.*.com/\? - -#ab2p-block-request-Xx-when-Rnt -{+client-header-tagger{ab2p-block-request-Xx-when-Rnt} \ -} -# ||youjizz.com^$~third-party,xmlhttprequest (easylistchina+easylist.txt: 47040) -.youjizz.com -# ||youjizz.com^$~third-party,xmlhttprequest (easylist.txt: 36555) -.youjizz.com - -#ab2p-block-request-nX-Xnx -{+client-header-tagger{ab2p-block-request-Xnx} \ - +client-header-tagger{ab2p-block-request-nX} \ -} -TAG:^ab2p-block-request-nX-Xnx$ -# ||futbol24.com/f24/rek/$~xmlhttprequest (easylistchina+easylist.txt: 43135) -.futbol24.com/f24/rek/ -# -300x250-$~xmlhttprequest (easylistchina+easylist.txt: 17057) -/.*-300x250- -.*-300x250-*. -# ||futbol24.com/f24/rek/$~xmlhttprequest (easylist.txt: 32650) -.futbol24.com/f24/rek/ -# -300x250-$~xmlhttprequest (easylist.txt: 6572) -/.*-300x250- -.*-300x250-*. - -#ab2p-block-request-nX-Xnx-when-Rn657 -{+client-header-tagger{ab2p-block-request-nX-Xnx-when-Rn657} \ -} -# /advertising/*$~xmlhttprequest,domain=~temple.edu (easylistchina+easylist.txt: 13304) -/(.*/)?advertising/.* -# /advertising/*$~xmlhttprequest,domain=~temple.edu (easylist.txt: 2819) -/(.*/)?advertising/.* #ab2p-block-xframe {+server-header-filter{ab2p-xframe-filter} \ } TAG:^ab2p-block-xframe$ -# ||xxxxsextube.com/*.html$subdocument (easylistchina+easylist.txt: 47031) -.xxxxsextube.com/.*\.html -# ||wetplace.com/iframes/$subdocument (easylistchina+easylist.txt: 46982) -.wetplace.com/iframes/ -# ||s.xvideos.com^$subdocument (easylistchina+easylist.txt: 46847) -.s.xvideos.com -# ||realhomesex.net/ae/$subdocument (easylistchina+easylist.txt: 46829) -.realhomesex.net/ae/ -# ||realhomesex.net/*.html$subdocument (easylistchina+easylist.txt: 46828) -.realhomesex.net/.*\.html -# ||pornoxo.com/pxo/$subdocument (easylistchina+easylist.txt: 46781) -.pornoxo.com/pxo/ -# ||pornerbros.com/rec/$subdocument (easylistchina+easylist.txt: 46755) -.pornerbros.com/rec/ -# ||media1.realgfporn.com^$subdocument (easylistchina+easylist.txt: 46611) -.media1.realgfporn.com -# ||homemademoviez.com^$subdocument (easylistchina+easylist.txt: 46509) -.homemademoviez.com -# ||hdporn.in/rec/$subdocument (easylistchina+easylist.txt: 46481) -.hdporn.in/rec/ -# ||fetishok.com/rec/$subdocument (easylistchina+easylist.txt: 46411) -.fetishok.com/rec/ -# ||efukt.com^*.php$subdocument (easylistchina+easylist.txt: 46387) -.efukt.com/.*\.php -# ||coolmovs.com/rec/$subdocument (easylistchina+easylist.txt: 46352) -.coolmovs.com/rec/ -# ||bravotube.net/if/$subdocument (easylistchina+easylist.txt: 46334) -.bravotube.net/if/ -# ||bravotube.net/dd$subdocument (easylistchina+easylist.txt: 46332) -.bravotube.net/dd -# ||zonein.tv/add$subdocument (easylistchina+easylist.txt: 45822) -.zonein.tv/add -# ||yardbarker.com/asset/asset_source/*?ord=$subdocument (easylistchina+easylist.txt: 45707) -.yardbarker.com/asset/asset_source/.*\?ord= -# ||wiretarget.com/a_$subdocument (easylistchina+easylist.txt: 45615) -.wiretarget.com/a_ -# ||vehix.com/tags/default.imu?$subdocument (easylistchina+easylist.txt: 45397) -.vehix.com/tags/default\.imu\? -# ||uberhumor.com/iframe$subdocument (easylistchina+easylist.txt: 45307) -.uberhumor.com/iframe -# ||uberhumor.com/*btf.html$subdocument (easylistchina+easylist.txt: 45306) -.uberhumor.com/.*btf\.html -# ||tripadvisor.*/adp/adp-$subdocument (easylistchina+easylist.txt: 45255) -.tripadvisor.*./(.*/)?adp/adp- -# ||tenmanga.com/files/js/manga_$subdocument (easylistchina+easylist.txt: 45018) -.tenmanga.com/files/js/manga_ -# ||telegraph.co.uk/international/$subdocument (easylistchina+easylist.txt: 45012) -.telegraph.co.uk/international/ -# ||tampermonkey.net^*.*.$subdocument (easylistchina+easylist.txt: 44983) -.tampermonkey.net/.*\..*\. -# ||stream2watch.me/_$subdocument (easylistchina+easylist.txt: 44914) -.stream2watch.me/_ -# ||sockshare.com^*.php?*title$subdocument (easylistchina+easylist.txt: 44822) -.sockshare.com/.*\.php\?.*title -# ||sockshare.com/*.php?embed*type=$subdocument (easylistchina+easylist.txt: 44819) -.sockshare.com/.*\.php\?embed.*type= -# ||snopes.com/common/include/$subdocument (easylistchina+easylist.txt: 44807) -.snopes.com/common/include/ -# ||sigalert.com/getunit.asp?$subdocument (easylistchina+easylist.txt: 44767) -.sigalert.com/getunit\.asp\? -# ||scoop.co.nz/xl?c$subdocument (easylistchina+easylist.txt: 44679) -.scoop.co.nz/xl\?c -# ||rotoworld.com^*&sponsor=$subdocument (easylistchina+easylist.txt: 44616) -.rotoworld.com/.*&sponsor= -# ||rocvideo.tv/pu/$subdocument (easylistchina+easylist.txt: 44606) -.rocvideo.tv/pu/ -# ||rediff.com/worldrediff/pix/$subdocument (easylistchina+easylist.txt: 44569) -.rediff.com/worldrediff/pix/ -# ||ragezone.com/index.php/$subdocument (easylistchina+easylist.txt: 44540) -.ragezone.com/index\.php/ -# ||quickpwn.com^$subdocument (easylistchina+easylist.txt: 44512) -.quickpwn.com -# ||primewire.ag/frame_header.php?$subdocument (easylistchina+easylist.txt: 44454) -.primewire.ag/frame_header\.php\? -# ||playhd.eu^*.html|$subdocument (easylistchina+easylist.txt: 44391) -.playhd.eu/.*\.html$ -# ||outofaces.com/*.html$subdocument (easylistchina+easylist.txt: 44289) -.outofaces.com/.*\.html -# ||osdir.com/ml/$subdocument (easylistchina+easylist.txt: 44284) -.osdir.com/ml/ -# ||onlinerealgames.com/google$subdocument (easylistchina+easylist.txt: 44266) -.onlinerealgames.com/google -# ||okcupid.com/daisy?$subdocument (easylistchina+easylist.txt: 44254) -.okcupid.com/daisy\? -# ||mypiratebay.cl^$subdocument (easylistchina+easylist.txt: 44071) -.mypiratebay.cl -# ||mediafire.com^*/linkto/default-$subdocument (easylistchina+easylist.txt: 43916) -.mediafire.com/.*/linkto/default- -# ||lyrics5ab.com/wp-content/add$subdocument (easylistchina+easylist.txt: 43825) -.lyrics5ab.com/wp-content/add -# ||lw1.lnkworld.com^$subdocument (easylistchina+easylist.txt: 43821) -.lw1.lnkworld.com -# ||lw1.gamecopyworld.com^$subdocument (easylistchina+easylist.txt: 43820) -.lw1.gamecopyworld.com -# ||lookbook.nu^*.html?$subdocument (easylistchina+easylist.txt: 43804) -.lookbook.nu/.*\.html\? -# ||livesearch.ninemsn.com.au^$subdocument (easylistchina+easylist.txt: 43782) -.livesearch.ninemsn.com.au -# ||linuxtopia.org/includes/$subdocument (easylistchina+easylist.txt: 43772) -.linuxtopia.org/includes/ -# ||interfacelift.com/inc_new/$subdocument (easylistchina+easylist.txt: 43537) -.interfacelift.com/inc_new/ -# ||indiatimes.com/google$subdocument (easylistchina+easylist.txt: 43504) -.indiatimes.com/google -# ||indiatimes.com/articleshow_google_$subdocument (easylistchina+easylist.txt: 43503) -.indiatimes.com/articleshow_google_ -# ||independent.co.uk/multimedia/archive/$subdocument (easylistchina+easylist.txt: 43493) -.independent.co.uk/multimedia/archive/ -# ||imgah.com/traffic$subdocument (easylistchina+easylist.txt: 43473) -.imgah.com/traffic -# ||imdb.com/images/*/scriptloader.$subdocument (easylistchina+easylist.txt: 43470) -.imdb.com/images/.*/scriptloader\. -# ||i.neoseeker.com/d/$subdocument (easylistchina+easylist.txt: 43403) -.i.neoseeker.com/d/ -# ||hotgamesforgirls.com/html/$subdocument (easylistchina+easylist.txt: 43373) -.hotgamesforgirls.com/html/ -# ||hostingdedi.com/wp-content/uploads/add$subdocument (easylistchina+easylist.txt: 43364) -.hostingdedi.com/wp-content/uploads/add -# ||grammar-monster.com/scripts/$subdocument (easylistchina+easylist.txt: 43266) -.grammar-monster.com/scripts/ -# ||goauto.com.au/mellor/mellor.nsf/toy$subdocument (easylistchina+easylist.txt: 43239) -.goauto.com.au/mellor/mellor\.nsf/toy -# ||getprice.com.au/searchwidget.aspx?$subdocument (easylistchina+easylist.txt: 43208) -.getprice.com.au/searchwidget\.aspx\? -# ||gelbooru.com/protech.php$subdocument (easylistchina+easylist.txt: 43194) -.gelbooru.com/protech\.php -# ||gelbooru.com/poll.php$subdocument (easylistchina+easylist.txt: 43193) -.gelbooru.com/poll\.php -# ||gelbooru.com/lk.php$subdocument (easylistchina+easylist.txt: 43192) -.gelbooru.com/lk\.php -# ||freestockcharts.com/symbolhit.aspx$subdocument (easylistchina+easylist.txt: 43108) -.freestockcharts.com/symbolhit\.aspx -# ||fansshare.com/va/?$subdocument (easylistchina+easylist.txt: 42964) -.fansshare.com/va/\? -# ||fakku.net/static/seele-$subdocument (easylistchina+easylist.txt: 42957) -.fakku.net/static/seele- -# ||ex1.gamecopyworld.com^$subdocument (easylistchina+easylist.txt: 42928) -.ex1.gamecopyworld.com -# ||emuleday.com/cpxt_$subdocument (easylistchina+easylist.txt: 42876) -.emuleday.com/cpxt_ -# ||emule-top50.com/extras/$subdocument (easylistchina+easylist.txt: 42875) -.emule-top50.com/extras/ -# ||dramabay.com/y/$subdocument (easylistchina+easylist.txt: 42805) -.dramabay.com/y/ -# ||demonoid.unblockt.com/cached/$subdocument (easylistchina+easylist.txt: 42735) -.demonoid.unblockt.com/cached/ -# ||deals.iphonehacks.com^$subdocument (easylistchina+easylist.txt: 42722) -.deals.iphonehacks.com -# ||deals.cultofmac.com^$subdocument (easylistchina+easylist.txt: 42721) -.deals.cultofmac.com -# ||classic-tv.com/burst$subdocument (easylistchina+easylist.txt: 42539) -.classic-tv.com/burst -# ||chaklyrics.com/add$subdocument (easylistchina+easylist.txt: 42507) -.chaklyrics.com/add -# ||btmon.com/da/$subdocument (easylistchina+easylist.txt: 42419) -.btmon.com/da/ -# ||bitreactor.to/static/subpage$subdocument (easylistchina+easylist.txt: 42343) -.bitreactor.to/static/subpage -# ||appleserialnumberinfo.com/desktop/sdas/$subdocument (easylistchina+easylist.txt: 42200) -.appleserialnumberinfo.com/desktop/sdas/ -# ||anime-source.com/banzai/banner.$subdocument (easylistchina+easylist.txt: 42167) -.anime-source.com/banzai/banner\. -# ||androidcommunity.com/external_marketing/$subdocument (easylistchina+easylist.txt: 42159) -.androidcommunity.com/external_marketing/ -# ||anchorfree.net^*/?tm=$subdocument (easylistchina+easylist.txt: 42157) -.anchorfree.net/.*/\?tm= -# ||anchorfree.net/?tm=$subdocument (easylistchina+easylist.txt: 42156) -.anchorfree.net/\?tm= -# ||amazon.com/aan/$subdocument (easylistchina+easylist.txt: 42136) -.amazon.com/aan/ -# ||accesshollywood.com/aife?$subdocument (easylistchina+easylist.txt: 42035) -.accesshollywood.com/aife\? -# ||about.com/0g/$subdocument (easylistchina+easylist.txt: 42019) -.about.com/0g/ -# ||50statesclassifieds.com/image.php?size_id=$subdocument (easylistchina+easylist.txt: 41981) -.50statesclassifieds.com/image\.php\?size_id= -# |http://p.pw^$subdocument (easylistchina+easylist.txt: 41923) -p.pw -# /af.php?$subdocument (easylistchina+easylist.txt: 41905) -/(.*/)?af\.php\? -# ||ztod.com/iframe/third/$subdocument (easylistchina+easylist.txt: 41802) -.ztod.com/iframe/third/ -# /exports/livemodel/?$subdocument (easylistchina+easylist.txt: 41380) -/(.*/)?exports/livemodel/\? -# .php?pub=*&trw_adblocker=$subdocument (easylistchina+easylist.txt: 41379) -/.*\.php\?pub=.*&trw_adblocker= -# ||tinyurl.com/4x848hd$subdocument (easylistchina+easylist.txt: 41047) -.tinyurl.com/4x848hd -# ||simplyfwd.com/?dn=*&pid=$subdocument (easylistchina+easylist.txt: 40922) -.simplyfwd.com/\?dn=.*&pid= -# ||google.com/uds/afs?*adsense$subdocument (easylistchina+easylist.txt: 40354) -.google.com/uds/afs\?.*adsense -# ||break.com/break/html/$subdocument (easylistchina+easylist.txt: 39885) -.break.com/break/html/ -# ||akamaihd.net/ssa/*?zoneid=$subdocument (easylistchina+easylist.txt: 39726) -.akamaihd.net/ssa/.*\?zoneid= -# ||aadvertismentt.com^$subdocument (easylistchina+easylist.txt: 39618) -.aadvertismentt.com -# /728.html$subdocument (easylistchina+easylist.txt: 17262) -/(.*/)?728\.html -728.html*. -# /300.html$subdocument (easylistchina+easylist.txt: 17174) -/(.*/)?300\.html -300.html*. -# /160.html$subdocument (easylistchina+easylist.txt: 17155) -/(.*/)?160\.html -160.html*. -# ||com/banners/$image,object,subdocument (easylistchina+easylist.txt: 16966) -# /overture/*$script,subdocument (easylistchina+easylist.txt: 15179) -/(.*/)?overture/.* -# .com/ads/$image,object,subdocument (easylistchina+easylist.txt: 10921) -/.*\.com/ads/ -.*.com/ads/ -# ||yxdd.com^$subdocument (easylistchina+easylist.txt: 5328) +# ||yxdd.com^$subdocument (easylistchina.txt: 5301) .yxdd.com -# ||ylnet.com.cn/inc/ad$subdocument (easylistchina+easylist.txt: 5281) +# ||ylnet.com.cn/inc/ad$subdocument (easylistchina.txt: 5255) .ylnet.com.cn/inc/ad -# ||xiaoliaolianmeng.com^$subdocument (easylistchina+easylist.txt: 5127) +# ||xiaoliaolianmeng.com^$subdocument (easylistchina.txt: 5104) .xiaoliaolianmeng.com -# ||winvvv.com^$subdocument (easylistchina+easylist.txt: 5065) +# ||winvvv.com^$subdocument (easylistchina.txt: 5042) .winvvv.com -# ||wholehk.com/madads$subdocument (easylistchina+easylist.txt: 5058) +# ||wholehk.com/madads$subdocument (easylistchina.txt: 5035) .wholehk.com/madads -# ||wan.sogou.com/cdn/$subdocument (easylistchina+easylist.txt: 4998) +# ||wan.sogou.com/cdn/$subdocument (easylistchina.txt: 4975) .wan.sogou.com/cdn/ -# ||w010w.com.cn^$subdocument (easylistchina+easylist.txt: 4995) +# ||w010w.com.cn^$subdocument (easylistchina.txt: 4972) .w010w.com.cn -# ||vanpeople.com/ad$subdocument (easylistchina+easylist.txt: 4959) +# ||vanpeople.com/ad$subdocument (easylistchina.txt: 4935) .vanpeople.com/ad -# ||uuu9.tieba.com^$subdocument (easylistchina+easylist.txt: 4948) +# ||uuu9.tieba.com^$subdocument (easylistchina.txt: 4924) .uuu9.tieba.com -# ||uho.com.tw^$subdocument (easylistchina+easylist.txt: 4923) +# ||uho.com.tw^$subdocument (easylistchina.txt: 4899) .uho.com.tw -# ||tvf4.com^$subdocument (easylistchina+easylist.txt: 4884) +# ||tvf4.com^$subdocument (easylistchina.txt: 4860) .tvf4.com -# ||tt1069.com/bbs/ad$script,subdocument (easylistchina+easylist.txt: 4863) -.tt1069.com/bbs/ad -# ||tasteforlife.com.tw^$subdocument (easylistchina+easylist.txt: 4771) +# ||tasteforlife.com.tw^$subdocument (easylistchina.txt: 4751) .tasteforlife.com.tw -# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina+easylist.txt: 4738) +# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina.txt: 4719) .sz.zj.cn/info\.php\?fid= -# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina+easylist.txt: 4713) +# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina.txt: 4694) .strip.taobaocdn.com/tfscom/ -# ||stnn.cc/images/xy/300$subdocument (easylistchina+easylist.txt: 4704) +# ||stnn.cc/images/xy/300$subdocument (easylistchina.txt: 4685) .stnn.cc/images/xy/300 -# ||siyu88.net/g$subdocument (easylistchina+easylist.txt: 4622) +# ||siyu88.net/g$subdocument (easylistchina.txt: 4600) .siyu88.net/g -# ||sina.com.tw^$subdocument (easylistchina+easylist.txt: 4568) +# ||sina.com.tw^$subdocument (easylistchina.txt: 4557) .sina.com.tw -# ||sh114so.com^$subdocument (easylistchina+easylist.txt: 4494) +# ||sh114so.com^$subdocument (easylistchina.txt: 4484) .sh114so.com -# ||same*.jrj.com.cn^$script,subdocument (easylistchina+easylist.txt: 4449) +# ||same*.jrj.com.cn^$script,subdocument (easylistchina.txt: 4439) .same*./.*\.jrj\.com\.cn[^\w%.-] .same*.jrj.com.cn -# ||readnovel.com/js/$subdocument (easylistchina+easylist.txt: 4381) +# ||readnovel.com/js/$subdocument (easylistchina.txt: 4371) .readnovel.com/js/ -# ||qqtz.com/ad$subdocument (easylistchina+easylist.txt: 4351) +# ||qqtz.com/ad$subdocument (easylistchina.txt: 4341) .qqtz.com/ad -# ||qq.com/game/footerbar$subdocument (easylistchina+easylist.txt: 4333) +# ||qq.com/game/footerbar$subdocument (easylistchina.txt: 4323) .qq.com/game/footerbar -# ||q-touch.com.tw^$subdocument (easylistchina+easylist.txt: 4259) +# ||q-touch.com.tw^$subdocument (easylistchina.txt: 4248) .q-touch.com.tw -# ||pfp.sina.com.cn^$script,subdocument (easylistchina+easylist.txt: 4165) +# ||pfp.sina.com.cn^$script,subdocument (easylistchina.txt: 4155) .pfp.sina.com.cn -# ||pfizer.com.tw^$subdocument (easylistchina+easylist.txt: 4164) +# ||pfizer.com.tw^$subdocument (easylistchina.txt: 4154) .pfizer.com.tw -# ||ouyaoxiazai.com^$script,subdocument (easylistchina+easylist.txt: 4114) +# ||ouyaoxiazai.com^$script,subdocument (easylistchina.txt: 4104) .ouyaoxiazai.com -# ||nutrimate.com.tw^$subdocument (easylistchina+easylist.txt: 4084) +# ||nutrimate.com.tw^$subdocument (easylistchina.txt: 4075) .nutrimate.com.tw -# ||narutom.com/v2/v/$subdocument (easylistchina+easylist.txt: 4035) +# ||narutom.com/v2/v/$subdocument (easylistchina.txt: 4026) .narutom.com/v2/v/ -# ||ms211.com/about/$subdocument (easylistchina+easylist.txt: 3986) +# ||ms211.com/about/$subdocument (easylistchina.txt: 3974) .ms211.com/about/ -# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina+easylist.txt: 3966) +# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina.txt: 3953) .momoshop.com.tw/goods/GoodsDetail\.jsp\? -# ||mahua.com/api/$subdocument (easylistchina+easylist.txt: 3895) +# ||mahua.com/api/$subdocument (easylistchina.txt: 3885) .mahua.com/api/ -# ||javjunkies.com/FL$subdocument (easylistchina+easylist.txt: 3583) +# ||javjunkies.com/FL$subdocument (easylistchina.txt: 3569) .javjunkies.com/FL -# ||images.china.cn^*first/$subdocument (easylistchina+easylist.txt: 3419) +# ||images.china.cn^*first/$subdocument (easylistchina.txt: 3404) .images.china.cn/.*first/ -# ||hoopchina.com.cn/topn$subdocument (easylistchina+easylist.txt: 3240) +# ||hoopchina.com.cn/topn$subdocument (easylistchina.txt: 3222) .hoopchina.com.cn/topn -# ||happydown.com^$script,subdocument (easylistchina+easylist.txt: 3144) +# ||happydown.com^$script,subdocument (easylistchina.txt: 3127) .happydown.com -# ||games.ifeng.com^$subdocument (easylistchina+easylist.txt: 2968) +# ||games.ifeng.com^$subdocument (easylistchina.txt: 2950) .games.ifeng.com -# ||gamersky.com^*.htm$subdocument (easylistchina+easylist.txt: 2967) +# ||gamersky.com^*.htm$subdocument (easylistchina.txt: 2949) .gamersky.com/.*\.htm -# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina+easylist.txt: 2932) +# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina.txt: 2914) .fumanhua.com/template/.*/images/g_js/ -# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina+easylist.txt: 2836) +# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina.txt: 2818) .enshi.cn/userfiles/esrb/ -# ||dota2.uuu9.com^$subdocument (easylistchina+easylist.txt: 2710) +# ||dota2.uuu9.com^$subdocument (easylistchina.txt: 2692) .dota2.uuu9.com -# ||dddbbb.net^$script,subdocument (easylistchina+easylist.txt: 2624) +# ||dddbbb.net^$script,subdocument (easylistchina.txt: 2609) .dddbbb.net -# ||dabaoku.com^$object,script,subdocument (easylistchina+easylist.txt: 2598) +# ||dabaoku.com^$object,script,subdocument (easylistchina.txt: 2584) .dabaoku.com -# ||d.5.to^$subdocument (easylistchina+easylist.txt: 2584) +# ||d.5.to^$subdocument (easylistchina.txt: 2570) .d.5.to -# ||cmsjs.eastmoney.com^$subdocument (easylistchina+easylist.txt: 2493) +# ||cmsjs.eastmoney.com^$subdocument (easylistchina.txt: 2481) .cmsjs.eastmoney.com -# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina+easylist.txt: 2491) +# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina.txt: 2479) .club.pchome.net/.*/localexchange\.php -# ||cj.qidian.com^$object,subdocument (easylistchina+easylist.txt: 2487) +# ||cj.qidian.com^$object,subdocument (easylistchina.txt: 2475) .cj.qidian.com -# ||chinabyte.com/w/$subdocument (easylistchina+easylist.txt: 2429) +# ||chinabyte.com/w/$subdocument (easylistchina.txt: 2415) .chinabyte.com/w/ -# ||ccoo.cn/webdiy/$subdocument (easylistchina+easylist.txt: 2389) +# ||ccoo.cn/webdiy/$subdocument (easylistchina.txt: 2375) .ccoo.cn/webdiy/ -# ||bxwx.org/js/$subdocument (easylistchina+easylist.txt: 2348) +# ||bxwx.org/js/$subdocument (easylistchina.txt: 2333) .bxwx.org/js/ -# ||buzzhand.com/images/$subdocument (easylistchina+easylist.txt: 2342) +# ||buzzhand.com/images/$subdocument (easylistchina.txt: 2327) .buzzhand.com/images/ -# ||bunnybee.com.tw/bee/$subdocument (easylistchina+easylist.txt: 2337) +# ||bunnybee.com.tw/bee/$subdocument (easylistchina.txt: 2322) .bunnybee.com.tw/bee/ -# ||blog.china.com/u/dvpush/$subdocument (easylistchina+easylist.txt: 2293) +# ||blog.china.com/u/dvpush/$subdocument (easylistchina.txt: 2279) .blog.china.com/u/dvpush/ -# ||bcok.com^$subdocument (easylistchina+easylist.txt: 2216) +# ||bcok.com^$subdocument (easylistchina.txt: 2202) .bcok.com -# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina+easylist.txt: 2090) +# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina.txt: 2080) .am.zdnet.com.cn/www/images/ -# ||alexa.cn/ad$subdocument (easylistchina+easylist.txt: 2071) +# ||alexa.cn/ad$subdocument (easylistchina.txt: 2061) .alexa.cn/ad -# ||adsproject.nownews.com^$subdocument (easylistchina+easylist.txt: 2035) +# ||adsproject.nownews.com^$subdocument (easylistchina.txt: 2024) .adsproject.nownews.com -# ||9upk.com/js/$subdocument (easylistchina+easylist.txt: 1966) +# ||9upk.com/js/$subdocument (easylistchina.txt: 1953) .9upk.com/js/ -# ||99770.cc^$subdocument (easylistchina+easylist.txt: 1943) +# ||99770.cc^$subdocument (easylistchina.txt: 1933) .99770.cc -# ||6park.com^$subdocument (easylistchina+easylist.txt: 1829) +# ||6park.com^$subdocument (easylistchina.txt: 1820) .6park.com -# ||51zxav.net^$subdocument (easylistchina+easylist.txt: 1692) -.51zxav.net -# ||51t.com^$subdocument (easylistchina+easylist.txt: 1672) +# ||51t.com^$subdocument (easylistchina.txt: 1667) .51t.com -# ||3boys2girls.com^$subdocument (easylistchina+easylist.txt: 1614) +# ||3boys2girls.com^$subdocument (easylistchina.txt: 1613) .3boys2girls.com -# ||189so.cn^$subdocument (easylistchina+easylist.txt: 1476) +# ||189so.cn^$subdocument (easylistchina.txt: 1487) .189so.cn -# ||173.255.139.114^$subdocument (easylistchina+easylist.txt: 1449) +# ||173.255.139.114^$subdocument (easylistchina.txt: 1461) .173.255.139.114 -# ||121zou.com^$subdocument (easylistchina+easylist.txt: 1373) +# ||121zou.com^$subdocument (easylistchina.txt: 1386) .121zou.com -# ||119xiazai.com^$subdocument (easylistchina+easylist.txt: 1360) +# ||119xiazai.com^$subdocument (easylistchina.txt: 1376) .119xiazai.com -# ||115.29.46.146^$subdocument (easylistchina+easylist.txt: 1354) +# ||115.29.46.146^$subdocument (easylistchina.txt: 1370) .115.29.46.146 -# ||114so.cn^$subdocument (easylistchina+easylist.txt: 1350) +# ||114so.cn^$subdocument (easylistchina.txt: 1366) .114so.cn -# ||yiqifa.com^$subdocument (easylistchina+easylist.txt: 1004) +# ||yiqifa.com^$subdocument (easylistchina.txt: 1026) .yiqifa.com -# ||4kt2.com^$subdocument (easylistchina+easylist.txt: 567) +# ||4kt2.com^$subdocument (easylistchina.txt: 580) .4kt2.com -# ||lu.sogou.com^$subdocument (easylistchina+easylist.txt: 65) +# ||lu.sogou.com^$subdocument (easylistchina.txt: 62) .lu.sogou.com -# ||mradx.net^*&link1=$subdocument (advblock.txt: 6819) -.mradx.net/.*&link1= -# ||mradx.net/img/$object,subdocument (advblock.txt: 6818) -.mradx.net/img/ -# //rs.mail.ru/b$subdocument (advblock.txt: 6807) -rs.mail.ru/b -# //r.mail.ru/b$subdocument (advblock.txt: 6805) -r.mail.ru/b -# ||yaplakal.com/html/$subdocument (advblock.txt: 6613) -.yaplakal.com/html/ -# ||tree.tv/film/index/banners$subdocument (advblock.txt: 6488) -.tree.tv/film/index/banners -# ||tapochek.net^$subdocument (advblock.txt: 6454) -.tapochek.net -# ||samforum.ws^$subdocument (advblock.txt: 6370) -.samforum.ws -# ||panicnews.ru^$subdocument (advblock.txt: 6200) -.panicnews.ru -# ||motoua.net/i/$subdocument (advblock.txt: 6089) -.motoua.net/i/ -# ||livelib.ru/*0x*.htm|$subdocument (advblock.txt: 5998) -.livelib.ru/.*0x.*\.htm$ -# ||footballhd.ru^$subdocument (advblock.txt: 5729) -.footballhd.ru -# ||ekabu.ru/cache/$object,subdocument (advblock.txt: 5680) -.ekabu.ru/cache/ -# ||delfi.ee/misc/$subdocument (advblock.txt: 5634) -.delfi.ee/misc/ -# ||artfile.ru/f/$subdocument (advblock.txt: 5509) -.artfile.ru/f/ -# ||vitr.alawar.ru^$subdocument (advblock.txt: 1681) -.vitr.alawar.ru -# ||svpressa.ru^$subdocument (advblock.txt: 1570) -.svpressa.ru -# /showf.php?u=$subdocument (advblock.txt: 539) -/(.*/)?showf\.php\?u= -# /iframe/inosmi.$subdocument (advblock.txt: 458) -/(.*/)?iframe/inosmi\. -# /iframe/glomu.$subdocument (advblock.txt: 457) -/(.*/)?iframe/glomu\. -# /banners/*/*/0/index.$subdocument (advblock.txt: 400) -/(.*/)?banners/.*/.*/0/index\. -# /adfox/*$image,object,script,subdocument (advblock.txt: 366) -/(.*/)?adfox/.* -# ||xxxxsextube.com/*.html$subdocument (easylist.txt: 36546) -.xxxxsextube.com/.*\.html -# ||wetplace.com/iframes/$subdocument (easylist.txt: 36497) -.wetplace.com/iframes/ -# ||s.xvideos.com^$subdocument (easylist.txt: 36362) -.s.xvideos.com -# ||realhomesex.net/ae/$subdocument (easylist.txt: 36344) -.realhomesex.net/ae/ -# ||realhomesex.net/*.html$subdocument (easylist.txt: 36343) -.realhomesex.net/.*\.html -# ||pornoxo.com/pxo/$subdocument (easylist.txt: 36296) -.pornoxo.com/pxo/ -# ||pornerbros.com/rec/$subdocument (easylist.txt: 36270) -.pornerbros.com/rec/ -# ||media1.realgfporn.com^$subdocument (easylist.txt: 36126) -.media1.realgfporn.com -# ||homemademoviez.com^$subdocument (easylist.txt: 36024) -.homemademoviez.com -# ||hdporn.in/rec/$subdocument (easylist.txt: 35996) -.hdporn.in/rec/ -# ||fetishok.com/rec/$subdocument (easylist.txt: 35926) -.fetishok.com/rec/ -# ||efukt.com^*.php$subdocument (easylist.txt: 35902) -.efukt.com/.*\.php -# ||coolmovs.com/rec/$subdocument (easylist.txt: 35867) -.coolmovs.com/rec/ -# ||bravotube.net/if/$subdocument (easylist.txt: 35849) -.bravotube.net/if/ -# ||bravotube.net/dd$subdocument (easylist.txt: 35847) -.bravotube.net/dd -# ||zonein.tv/add$subdocument (easylist.txt: 35337) -.zonein.tv/add -# ||yardbarker.com/asset/asset_source/*?ord=$subdocument (easylist.txt: 35222) -.yardbarker.com/asset/asset_source/.*\?ord= -# ||wiretarget.com/a_$subdocument (easylist.txt: 35130) -.wiretarget.com/a_ -# ||vehix.com/tags/default.imu?$subdocument (easylist.txt: 34912) -.vehix.com/tags/default\.imu\? -# ||uberhumor.com/iframe$subdocument (easylist.txt: 34822) -.uberhumor.com/iframe -# ||uberhumor.com/*btf.html$subdocument (easylist.txt: 34821) -.uberhumor.com/.*btf\.html -# ||tripadvisor.*/adp/adp-$subdocument (easylist.txt: 34770) -.tripadvisor.*./(.*/)?adp/adp- -# ||tenmanga.com/files/js/manga_$subdocument (easylist.txt: 34533) -.tenmanga.com/files/js/manga_ -# ||telegraph.co.uk/international/$subdocument (easylist.txt: 34527) -.telegraph.co.uk/international/ -# ||tampermonkey.net^*.*.$subdocument (easylist.txt: 34498) -.tampermonkey.net/.*\..*\. -# ||stream2watch.me/_$subdocument (easylist.txt: 34429) -.stream2watch.me/_ -# ||sockshare.com^*.php?*title$subdocument (easylist.txt: 34337) -.sockshare.com/.*\.php\?.*title -# ||sockshare.com/*.php?embed*type=$subdocument (easylist.txt: 34334) -.sockshare.com/.*\.php\?embed.*type= -# ||snopes.com/common/include/$subdocument (easylist.txt: 34322) -.snopes.com/common/include/ -# ||sigalert.com/getunit.asp?$subdocument (easylist.txt: 34282) -.sigalert.com/getunit\.asp\? -# ||scoop.co.nz/xl?c$subdocument (easylist.txt: 34194) -.scoop.co.nz/xl\?c -# ||rotoworld.com^*&sponsor=$subdocument (easylist.txt: 34131) -.rotoworld.com/.*&sponsor= -# ||rocvideo.tv/pu/$subdocument (easylist.txt: 34121) -.rocvideo.tv/pu/ -# ||rediff.com/worldrediff/pix/$subdocument (easylist.txt: 34084) -.rediff.com/worldrediff/pix/ -# ||ragezone.com/index.php/$subdocument (easylist.txt: 34055) -.ragezone.com/index\.php/ -# ||quickpwn.com^$subdocument (easylist.txt: 34027) -.quickpwn.com -# ||primewire.ag/frame_header.php?$subdocument (easylist.txt: 33969) -.primewire.ag/frame_header\.php\? -# ||playhd.eu^*.html|$subdocument (easylist.txt: 33906) -.playhd.eu/.*\.html$ -# ||outofaces.com/*.html$subdocument (easylist.txt: 33804) -.outofaces.com/.*\.html -# ||osdir.com/ml/$subdocument (easylist.txt: 33799) -.osdir.com/ml/ -# ||onlinerealgames.com/google$subdocument (easylist.txt: 33781) -.onlinerealgames.com/google -# ||okcupid.com/daisy?$subdocument (easylist.txt: 33769) -.okcupid.com/daisy\? -# ||mypiratebay.cl^$subdocument (easylist.txt: 33586) -.mypiratebay.cl -# ||mediafire.com^*/linkto/default-$subdocument (easylist.txt: 33431) -.mediafire.com/.*/linkto/default- -# ||lyrics5ab.com/wp-content/add$subdocument (easylist.txt: 33340) -.lyrics5ab.com/wp-content/add -# ||lw1.lnkworld.com^$subdocument (easylist.txt: 33336) -.lw1.lnkworld.com -# ||lw1.gamecopyworld.com^$subdocument (easylist.txt: 33335) -.lw1.gamecopyworld.com -# ||lookbook.nu^*.html?$subdocument (easylist.txt: 33319) -.lookbook.nu/.*\.html\? -# ||livesearch.ninemsn.com.au^$subdocument (easylist.txt: 33297) -.livesearch.ninemsn.com.au -# ||linuxtopia.org/includes/$subdocument (easylist.txt: 33287) -.linuxtopia.org/includes/ -# ||interfacelift.com/inc_new/$subdocument (easylist.txt: 33052) -.interfacelift.com/inc_new/ -# ||indiatimes.com/google$subdocument (easylist.txt: 33019) -.indiatimes.com/google -# ||indiatimes.com/articleshow_google_$subdocument (easylist.txt: 33018) -.indiatimes.com/articleshow_google_ -# ||independent.co.uk/multimedia/archive/$subdocument (easylist.txt: 33008) -.independent.co.uk/multimedia/archive/ -# ||imgah.com/traffic$subdocument (easylist.txt: 32988) -.imgah.com/traffic -# ||imdb.com/images/*/scriptloader.$subdocument (easylist.txt: 32985) -.imdb.com/images/.*/scriptloader\. -# ||i.neoseeker.com/d/$subdocument (easylist.txt: 32918) -.i.neoseeker.com/d/ -# ||hotgamesforgirls.com/html/$subdocument (easylist.txt: 32888) -.hotgamesforgirls.com/html/ -# ||hostingdedi.com/wp-content/uploads/add$subdocument (easylist.txt: 32879) -.hostingdedi.com/wp-content/uploads/add -# ||grammar-monster.com/scripts/$subdocument (easylist.txt: 32781) -.grammar-monster.com/scripts/ -# ||goauto.com.au/mellor/mellor.nsf/toy$subdocument (easylist.txt: 32754) -.goauto.com.au/mellor/mellor\.nsf/toy -# ||getprice.com.au/searchwidget.aspx?$subdocument (easylist.txt: 32723) -.getprice.com.au/searchwidget\.aspx\? -# ||gelbooru.com/protech.php$subdocument (easylist.txt: 32709) -.gelbooru.com/protech\.php -# ||gelbooru.com/poll.php$subdocument (easylist.txt: 32708) -.gelbooru.com/poll\.php -# ||gelbooru.com/lk.php$subdocument (easylist.txt: 32707) -.gelbooru.com/lk\.php -# ||freestockcharts.com/symbolhit.aspx$subdocument (easylist.txt: 32623) -.freestockcharts.com/symbolhit\.aspx -# ||fansshare.com/va/?$subdocument (easylist.txt: 32479) -.fansshare.com/va/\? -# ||fakku.net/static/seele-$subdocument (easylist.txt: 32472) -.fakku.net/static/seele- -# ||ex1.gamecopyworld.com^$subdocument (easylist.txt: 32443) -.ex1.gamecopyworld.com -# ||emuleday.com/cpxt_$subdocument (easylist.txt: 32391) -.emuleday.com/cpxt_ -# ||emule-top50.com/extras/$subdocument (easylist.txt: 32390) -.emule-top50.com/extras/ -# ||dramabay.com/y/$subdocument (easylist.txt: 32320) -.dramabay.com/y/ -# ||demonoid.unblockt.com/cached/$subdocument (easylist.txt: 32250) -.demonoid.unblockt.com/cached/ -# ||deals.iphonehacks.com^$subdocument (easylist.txt: 32237) -.deals.iphonehacks.com -# ||deals.cultofmac.com^$subdocument (easylist.txt: 32236) -.deals.cultofmac.com -# ||classic-tv.com/burst$subdocument (easylist.txt: 32054) -.classic-tv.com/burst -# ||chaklyrics.com/add$subdocument (easylist.txt: 32022) -.chaklyrics.com/add -# ||btmon.com/da/$subdocument (easylist.txt: 31934) -.btmon.com/da/ -# ||bitreactor.to/static/subpage$subdocument (easylist.txt: 31858) -.bitreactor.to/static/subpage -# ||appleserialnumberinfo.com/desktop/sdas/$subdocument (easylist.txt: 31715) -.appleserialnumberinfo.com/desktop/sdas/ -# ||anime-source.com/banzai/banner.$subdocument (easylist.txt: 31682) -.anime-source.com/banzai/banner\. -# ||androidcommunity.com/external_marketing/$subdocument (easylist.txt: 31674) -.androidcommunity.com/external_marketing/ -# ||anchorfree.net^*/?tm=$subdocument (easylist.txt: 31672) -.anchorfree.net/.*/\?tm= -# ||anchorfree.net/?tm=$subdocument (easylist.txt: 31671) -.anchorfree.net/\?tm= -# ||amazon.com/aan/$subdocument (easylist.txt: 31651) -.amazon.com/aan/ -# ||accesshollywood.com/aife?$subdocument (easylist.txt: 31550) -.accesshollywood.com/aife\? -# ||about.com/0g/$subdocument (easylist.txt: 31534) -.about.com/0g/ -# ||50statesclassifieds.com/image.php?size_id=$subdocument (easylist.txt: 31496) -.50statesclassifieds.com/image\.php\?size_id= -# |http://p.pw^$subdocument (easylist.txt: 31438) -p.pw -# /af.php?$subdocument (easylist.txt: 31420) -/(.*/)?af\.php\? -# ||ztod.com/iframe/third/$subdocument (easylist.txt: 31317) -.ztod.com/iframe/third/ -# /exports/livemodel/?$subdocument (easylist.txt: 30895) -/(.*/)?exports/livemodel/\? -# .php?pub=*&trw_adblocker=$subdocument (easylist.txt: 30894) -/.*\.php\?pub=.*&trw_adblocker= -# ||tinyurl.com/4x848hd$subdocument (easylist.txt: 30562) -.tinyurl.com/4x848hd -# ||simplyfwd.com/?dn=*&pid=$subdocument (easylist.txt: 30437) -.simplyfwd.com/\?dn=.*&pid= -# ||google.com/uds/afs?*adsense$subdocument (easylist.txt: 29869) -.google.com/uds/afs\?.*adsense -# ||break.com/break/html/$subdocument (easylist.txt: 29400) -.break.com/break/html/ -# ||akamaihd.net/ssa/*?zoneid=$subdocument (easylist.txt: 29241) -.akamaihd.net/ssa/.*\?zoneid= -# ||aadvertismentt.com^$subdocument (easylist.txt: 29133) -.aadvertismentt.com -# /728.html$subdocument (easylist.txt: 6777) -/(.*/)?728\.html -728.html*. -# /300.html$subdocument (easylist.txt: 6689) -/(.*/)?300\.html -300.html*. -# /160.html$subdocument (easylist.txt: 6670) -/(.*/)?160\.html -160.html*. -# ||com/banners/$image,object,subdocument (easylist.txt: 6481) -# /overture/*$script,subdocument (easylist.txt: 4694) -/(.*/)?overture/.* -# .com/ads/$image,object,subdocument (easylist.txt: 436) -/.*\.com/ads/ -.*.com/ads/ -#ab2p-block-xframe-R9 -{+client-header-tagger{ab2p-block-xframe-R9} \ +#ab2p-block-xframe-R6 +{+client-header-tagger{ab2p-block-xframe-R6} \ } -# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina+easylist.txt: 1213) +# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina.txt: 1228) /(.*/)?Sitefiles/.* -#ab2p-block-xframe-R28 -{+client-header-tagger{ab2p-block-xframe-R28} \ +#ab2p-block-xframe-R78 +{+client-header-tagger{ab2p-block-xframe-R78} \ } -# ||com/s/$script,subdocument,domain=24warez.ru|anideshka.ru|anilost.com|artero.ru|babestar.ru|best-xxx.net|bestcamsxxx.com|bestrepack.net|bigtorrent.org|bookitut.ru|demotivators.to|drochunov.net|eroox.ru|exoticvideo.net|filmasik.net|filmomax.com|fotooplata.ru|free-torrents.org|freebie.net.ua|freepublish.ru|gidporno.com|girlstop.info|guide-box.ru|hentaiz.org|huyandex.com|i-pic.ru|iarex.ru|imgmoney.ru|kino-zal.kz|kinohost.nov.ru|kinoonlain.org|kritka.net|leporno.org|leporno.ws|mega-track.org|mnogohlama.ru|moresofta.com|ontracker.ru|palevo.com|pic4you.ru|pic5you.ru|pics-money.ru|politland.ru|porn-news.org|porno-gid.info|porno-torrent.biz|porno-torrents.ru|pornoboss.tv|pornoero.com|pornogovno.ru|pornomage.net|pornorip.biz|pornorun.com|pornovizion.com|prisnilos.su|privsex.ru|promotevid.ru|raketa-tv.com|rosporn.com|ru-admin.net|seasonvar.ru|seti-ceti.ru|sibiryak-soft.org|suero.tv|tedkino.com|tyt-kinofilm.ru|uploadimagex.com|uptube.su|uvideos.ru|v-chulkahh.ru|video-magnet.com|vodkov.net|vodvore.net|vserisunki.ru|vzale.tv|wifilm.ru|x-zona.org|xxlbunny.com|xxx-russian.ru|xyu.tv (advblock.txt: 3349) - -#ab2p-block-xframe-R758t -{+client-header-tagger{ab2p-block-xframe-R758t} \ -} -# |http:$subdocument,third-party,domain=2ad.in|ad2links.com|adf.ly|adfoc.us|adv.li|adyou.me|allmyvideos.net|ay.gy|fuestfka.com|imgmega.com|j.gs|linkbucksmedia.com|mortastica.com|prodsetter-in.com|q.gs|sh.st|shr77.com|sonomerit.com|ssovgoxbvppy.net|thevideo.me|twer.info|u.bb|vidspot.net (easylistchina+easylist.txt: 41919) -# |http:$subdocument,third-party,domain=2ad.in|ad2links.com|adf.ly|adfoc.us|adv.li|adyou.me|allmyvideos.net|ay.gy|fuestfka.com|imgmega.com|j.gs|linkbucksmedia.com|mortastica.com|prodsetter-in.com|q.gs|sh.st|shr77.com|sonomerit.com|ssovgoxbvppy.net|thevideo.me|twer.info|u.bb|vidspot.net (easylist.txt: 31434) - -#ab2p-block-xframe-R759t -{+client-header-tagger{ab2p-block-xframe-R759t} \ -} -# |https:$subdocument,third-party,domain=2ad.in|adf.ly|adfoc.us|adjet.biz|adv.li|ay.gy|j.gs|linkbucksmedia.com|q.gs|sh.st|tvbximak.com|u.bb (easylistchina+easylist.txt: 41924) -# |https:$subdocument,third-party,domain=2ad.in|adf.ly|adfoc.us|adjet.biz|adv.li|ay.gy|j.gs|linkbucksmedia.com|q.gs|sh.st|tvbximak.com|u.bb (easylist.txt: 31439) - -#ab2p-block-xframe-R71 -{+client-header-tagger{ab2p-block-xframe-R71} \ -} -# ||bit.ly^$subdocument,domain=adf.ly (easylistchina+easylist.txt: 39854) -.bit.ly -# ||bit.ly^$subdocument,domain=adf.ly (easylist.txt: 29369) -.bit.ly - -#ab2p-block-xframe-R760nt -{+client-header-tagger{ab2p-block-xframe-R760nt} \ -} -# ||adf.ly/?$subdocument,~third-party,domain=adf.ly (easylistchina+easylist.txt: 39669) -.adf.ly/\? -# ||adf.ly/?$subdocument,~third-party,domain=adf.ly (easylist.txt: 29184) -.adf.ly/\? - -#ab2p-block-xframe-R107 -{+client-header-tagger{ab2p-block-xframe-R107} \ -} -# ||avaxnews.net/yb_$subdocument,domain=avaxhm.com (easylistchina+easylist.txt: 42249) -.avaxnews.net/yb_ -# ||avaxnews.net/yb_$subdocument,domain=avaxhm.com (easylist.txt: 31764) -.avaxnews.net/yb_ - -#ab2p-block-xframe-R109 -{+client-header-tagger{ab2p-block-xframe-R109} \ -} -# ||goo.gl^$subdocument,domain=backin.net|uploadlw.com (easylistchina+easylist.txt: 40352) -.goo.gl -# ||goo.gl^$subdocument,domain=backin.net|uploadlw.com (easylist.txt: 29867) -.goo.gl - -#ab2p-block-xframe-R142 -{+client-header-tagger{ab2p-block-xframe-R142} \ -} -# ||censor.net.ua^$subdocument,domain=censor.net.ua (advblock.txt: 5582) -.censor.net.ua - -#ab2p-block-xframe-R202 -{+client-header-tagger{ab2p-block-xframe-R202} \ -} -# ||bing.com/fblogout?$subdocument,domain=facebook.com (easylistchina+easylist.txt: 42334) -.bing.com/fblogout\? -# ||bing.com/fblogout?$subdocument,domain=facebook.com (easylist.txt: 31849) -.bing.com/fblogout\? - -#ab2p-block-xframe-R219 -{+client-header-tagger{ab2p-block-xframe-R219} \ -} -# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina+easylist.txt: 1140) +# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina.txt: 1160) /(.*/)?cooperation/.* -#ab2p-block-xframe-R234 -{+client-header-tagger{ab2p-block-xframe-R234} \ +#ab2p-block-xframe-R82 +{+client-header-tagger{ab2p-block-xframe-R82} \ } -# ||casinobonusdeal.com^$subdocument,domain=frombar.com|gledaisport.com|smotrisport.com|sportcategory.com|sportlemon.org|sportlemon.tv (easylistchina+easylist.txt: 39924) -.casinobonusdeal.com -# ||casinobonusdeal.com^$subdocument,domain=frombar.com|gledaisport.com|smotrisport.com|sportcategory.com|sportlemon.org|sportlemon.tv (easylist.txt: 29439) -.casinobonusdeal.com - -#ab2p-block-xframe-R239 -{+client-header-tagger{ab2p-block-xframe-R239} \ -} -# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina+easylist.txt: 1151) +# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1169) /(.*/)?gamer/.* -# /baha/*$subdocument,domain=gamer.com.tw (easylistchina+easylist.txt: 1130) +# /baha/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1150) /(.*/)?baha/.* -#ab2p-block-xframe-R249 -{+client-header-tagger{ab2p-block-xframe-R249} \ +#ab2p-block-xframe-R90 +{+client-header-tagger{ab2p-block-xframe-R90} \ } -# /^https?://goodgame\.ru/[a-z0-9]+$/$subdocument,domain=goodgame.ru (advblock.txt: 5378) -/(.*/)?[^\w%.-]https\?://goodgame\\\.ru/\[a-z0-9\]\+\$/ -/^https?://goodgame\.ru/[a-z0-9]+$ - -#ab2p-block-xframe-R266 -{+client-header-tagger{ab2p-block-xframe-R266} \ -} -# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina+easylist.txt: 4441) +# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina.txt: 4431) .s.yimg.com/ja/ap/ -#ab2p-block-xframe-R269 -{+client-header-tagger{ab2p-block-xframe-R269} \ +#ab2p-block-xframe-R93 +{+client-header-tagger{ab2p-block-xframe-R93} \ } -# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk|wwledsbb.net (easylistchina+easylist.txt: 1257) +# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk (easylistchina.txt: 1271) -#ab2p-block-xframe-R270 -{+client-header-tagger{ab2p-block-xframe-R270} \ +#ab2p-block-xframe-R94 +{+client-header-tagger{ab2p-block-xframe-R94} \ } -# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina+easylist.txt: 1413) +# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina.txt: 1423) .163.com/special/ -#ab2p-block-xframe-R273 -{+client-header-tagger{ab2p-block-xframe-R273} \ +#ab2p-block-xframe-Rn158 +{+client-header-tagger{ab2p-block-xframe-Rn158} \ } -# ||gotupload.com^$subdocument,domain=hulkshare.com (easylistchina+easylist.txt: 43260) -.gotupload.com -# ||gotupload.com^$subdocument,domain=hulkshare.com (easylist.txt: 32775) -.gotupload.com - -#ab2p-block-xframe-R680t -{+client-header-tagger{ab2p-block-xframe-R680t} \ -} -# $third-party,object,subdocument,domain=ints.rusfolder.com|ints.rusfolder.net|piccash.net|pornolab.net (advblock.txt: 5364) - - -#ab2p-block-xframe-R693t -{+client-header-tagger{ab2p-block-xframe-R693t} \ -} -# |http://$script,subdocument,third-party,domain=linkshrink.net (easylistchina+easylist.txt: 45925) -# |http://$script,subdocument,third-party,domain=linkshrink.net (easylist.txt: 35440) - -#ab2p-block-xframe-R342 -{+client-header-tagger{ab2p-block-xframe-R342} \ -} -# ||pladform.ru^$object,object-subrequest,subdocument,domain=molodejj.tv|smotri.com (advblock.txt: 6228) -.pladform.ru - -#ab2p-block-xframe-R418 -{+client-header-tagger{ab2p-block-xframe-R418} \ -} -# //94.198.53.135^$object,subdocument,domain=rutracker.org (advblock.txt: 5376) -94.198.53.135 - -#ab2p-block-xframe-R453 -{+client-header-tagger{ab2p-block-xframe-R453} \ -} -# ||neighbourly.co.nz^$subdocument,domain=stuff.co.nz (easylistchina+easylist.txt: 40672) -.neighbourly.co.nz -# ||neighbourly.co.nz^$subdocument,domain=stuff.co.nz (easylist.txt: 30187) -.neighbourly.co.nz - -#ab2p-block-xframe-R455 -{+client-header-tagger{ab2p-block-xframe-R455} \ -} -# ||fuckandcdn.com/sun/sunstatic/frms/$subdocument,domain=sunporno.com (easylistchina+easylist.txt: 46434) -.fuckandcdn.com/sun/sunstatic/frms/ -# ||fuckandcdn.com/sun/sunstatic/frms/$subdocument,domain=sunporno.com (easylist.txt: 35949) -.fuckandcdn.com/sun/sunstatic/frms/ - -#ab2p-block-xframe-R472 -{+client-header-tagger{ab2p-block-xframe-R472} \ -} -# ||tinychat.com/channel?frame=true&$subdocument,domain=tinypaste.com (easylistchina+easylist.txt: 45184) -.tinychat.com/channel\?frame=true& -# ||tinychat.com/channel?frame=true&$subdocument,domain=tinypaste.com (easylist.txt: 34699) -.tinychat.com/channel\?frame=true& - -#ab2p-block-xframe-R478 -{+client-header-tagger{ab2p-block-xframe-R478} \ -} -# ||vizortv.com^$subdocument,domain=torrentszona.com (advblock.txt: 6948) -.vizortv.com -# ||torrentsporno.com^$subdocument,domain=torrentszona.com (advblock.txt: 6946) -.torrentsporno.com -# ||torrentsline.com^$subdocument,domain=torrentszona.com (advblock.txt: 6945) -.torrentsline.com -# ||torrentsfilm.com^$subdocument,domain=torrentszona.com (advblock.txt: 6944) -.torrentsfilm.com -# ||onlinepsyholog.com^$subdocument,domain=torrentszona.com (advblock.txt: 6943) -.onlinepsyholog.com -# ||luxtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6942) -.luxtorrents.com -# ||listtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6941) -.listtorrents.com -# ||lifetorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6939) -.lifetorrents.com -# ||kinovizor.com^$subdocument,domain=torrentszona.com (advblock.txt: 6938) -.kinovizor.com -# ||funtorrents.com^$subdocument,domain=torrentszona.com (advblock.txt: 6937) -.funtorrents.com - -#ab2p-block-xframe-R504 -{+client-header-tagger{ab2p-block-xframe-R504} \ -} -# ||vidspot.net^$subdocument,domain=vidspot.net (easylistchina+easylist.txt: 45444) -.vidspot.net -# ||vidspot.net^$subdocument,domain=vidspot.net (easylist.txt: 34959) -.vidspot.net - -#ab2p-block-xframe-R511 -{+client-header-tagger{ab2p-block-xframe-R511} \ -} -# .ru/inc/$subdocument,domain=vz.ru (advblock.txt: 5372) -/.*\.ru/inc/ -.*.ru/inc/ - -#ab2p-block-xframe-R534 -{+client-header-tagger{ab2p-block-xframe-R534} \ -} -# ||yimg.com/la/i/wan/widgets/wjobs/$subdocument,domain=yahoo.com (easylistchina+easylist.txt: 45745) -.yimg.com/la/i/wan/widgets/wjobs/ -# ||bankrate.com^$subdocument,domain=yahoo.com (easylistchina+easylist.txt: 39811) -.bankrate.com -# ||yimg.com/la/i/wan/widgets/wjobs/$subdocument,domain=yahoo.com (easylist.txt: 35260) -.yimg.com/la/i/wan/widgets/wjobs/ -# ||bankrate.com^$subdocument,domain=yahoo.com (easylist.txt: 29326) -.bankrate.com - -#ab2p-block-xframe-R538 -{+client-header-tagger{ab2p-block-xframe-R538} \ -} -# ||youporn.com^$script,subdocument,domain=youporngay.com (easylistchina+easylist.txt: 47052) -.youporn.com -# ||youporn.com^$script,subdocument,domain=youporngay.com (easylist.txt: 36567) -.youporn.com - -#ab2p-block-xframe-Rn595 -{+client-header-tagger{ab2p-block-xframe-Rn595} \ -} -# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina+easylist.txt: 1988) +# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina.txt: 1976) .acg.178.com/.*/t_ -#ab2p-block-xframe-Rn642 -{+client-header-tagger{ab2p-block-xframe-Rn642} \ -} -# /advertisers.$image,script,subdocument,domain=~panel.rightflow.com (easylistchina+easylist.txt: 13297) -/(.*/)?advertisers\. -advertisers.*. -# /advertisers.$image,script,subdocument,domain=~panel.rightflow.com (easylist.txt: 2812) -/(.*/)?advertisers\. -advertisers.*. - -#ab2p-block-xframe-Rnt -{+client-header-tagger{ab2p-block-xframe-Rnt} \ -} -# ||youporn.com^$subdocument,~third-party (easylistchina+easylist.txt: 47053) -.youporn.com -# ||youjizz.com^$subdocument,~third-party (easylistchina+easylist.txt: 47039) -.youjizz.com -# ||tube8.com^$subdocument,~third-party (easylistchina+easylist.txt: 46944) -.tube8.com -# ||redtube.com^$subdocument,~third-party (easylistchina+easylist.txt: 46838) -.redtube.com -# ||pornvideoxo.com^$subdocument,~third-party (easylistchina+easylist.txt: 46809) -.pornvideoxo.com -# ||pornsharing.com/App_Themes/pornsharingnew/$subdocument,~third-party (easylistchina+easylist.txt: 46794) -.pornsharing.com/App_Themes/pornsharingnew/ -# ||pornsharing.com/App_Themes/pornsharianew/$subdocument,~third-party (easylistchina+easylist.txt: 46792) -.pornsharing.com/App_Themes/pornsharianew/ -# ||eporner.com^$subdocument,~third-party (easylistchina+easylist.txt: 46397) -.eporner.com -# ||devicemag.com^$subdocument,~third-party (easylistchina+easylist.txt: 42748) -.devicemag.com -# /common/results.htm?block=*[colorAdSeparator]$subdocument,~third-party (easylistchina+easylist.txt: 13908) -/(.*/)?common/results\.htm\?block=.*\[colorAdSeparator\] -# ||youporn.com^$subdocument,~third-party (easylist.txt: 36568) -.youporn.com -# ||youjizz.com^$subdocument,~third-party (easylist.txt: 36554) -.youjizz.com -# ||tube8.com^$subdocument,~third-party (easylist.txt: 36459) -.tube8.com -# ||redtube.com^$subdocument,~third-party (easylist.txt: 36353) -.redtube.com -# ||pornvideoxo.com^$subdocument,~third-party (easylist.txt: 36324) -.pornvideoxo.com -# ||pornsharing.com/App_Themes/pornsharingnew/$subdocument,~third-party (easylist.txt: 36309) -.pornsharing.com/App_Themes/pornsharingnew/ -# ||pornsharing.com/App_Themes/pornsharianew/$subdocument,~third-party (easylist.txt: 36307) -.pornsharing.com/App_Themes/pornsharianew/ -# ||eporner.com^$subdocument,~third-party (easylist.txt: 35912) -.eporner.com -# ||devicemag.com^$subdocument,~third-party (easylist.txt: 32263) -.devicemag.com -# /common/results.htm?block=*[colorAdSeparator]$subdocument,~third-party (easylist.txt: 3423) -/(.*/)?common/results\.htm\?block=.*\[colorAdSeparator\] - #ab2p-block-xframe-Rt {+client-header-tagger{ab2p-block-xframe-Rt} \ } -# ||depositphotos.com^$subdocument,third-party (easylistchina+easylist.txt: 42737) -.depositphotos.com -# .net/director/?$subdocument,third-party (easylistchina+easylist.txt: 41900) -/.*\.net/director/\? -.*.net/director/\? -# ||xxtu.be^$subdocument,third-party (easylistchina+easylist.txt: 41797) -.xxtu.be -# ||twilightsex.com^$subdocument,third-party (easylistchina+easylist.txt: 41767) -.twilightsex.com -# ||pornturbo.com^*.php?*&cmp=$subdocument,third-party (easylistchina+easylist.txt: 41679) -.pornturbo.com/.*\.php\?.*&cmp= -# ||pornturbo.com/*.php?g=$subdocument,third-party (easylistchina+easylist.txt: 41678) -.pornturbo.com/.*\.php\?g= -# ||pornhubpremium.com/relatedpremium/$subdocument,third-party (easylistchina+easylist.txt: 41674) -.pornhubpremium.com/relatedpremium/ -# ||porndeals.com^$subdocument,third-party (easylistchina+easylist.txt: 41673) -.porndeals.com -# ||livesexasian.com^$subdocument,third-party (easylistchina+easylist.txt: 41614) -.livesexasian.com -# ||ifriends.net^$subdocument,third-party (easylistchina+easylist.txt: 41592) -.ifriends.net -# ||hornybirds.com^$subdocument,third-party (easylistchina+easylist.txt: 41581) -.hornybirds.com -# ||hardcoresexnow.com^$subdocument,third-party (easylistchina+easylist.txt: 41573) -.hardcoresexnow.com -# ||freeonescams.com^$subdocument,third-party (easylistchina+easylist.txt: 41547) -.freeonescams.com -# ||fbooksluts.com^$subdocument,third-party (easylistchina+easylist.txt: 41537) -.fbooksluts.com -# ||daredorm.com^$subdocument,third-party (easylistchina+easylist.txt: 41511) -.daredorm.com -# ||cartoontube.com^$subdocument,third-party (easylistchina+easylist.txt: 41487) -.cartoontube.com -# ||yooclick.com^$subdocument,third-party (easylistchina+easylist.txt: 41227) -.yooclick.com -# ||yontoo.com^$subdocument,third-party (easylistchina+easylist.txt: 41226) -.yontoo.com -# ||widget.shopstyle.com/widget?pid=$subdocument,third-party (easylistchina+easylist.txt: 41175) -.widget.shopstyle.com/widget\?pid= -# ||watersoul.com^$subdocument,third-party (easylistchina+easylist.txt: 41156) -.watersoul.com -# ||watchme.com/track/$subdocument,third-party (easylistchina+easylist.txt: 41155) -.watchme.com/track/ -# ||vuvuplaza.com^$subdocument,third-party (easylistchina+easylist.txt: 41145) -.vuvuplaza.com -# ||vdownloader.com/pages/$subdocument,third-party (easylistchina+easylist.txt: 41120) -.vdownloader.com/pages/ -# ||ubuntudeal.co.za^$subdocument,third-party (easylistchina+easylist.txt: 41094) -.ubuntudeal.co.za -# ||traceybell.co.uk^$subdocument,third-party (easylistchina+easylist.txt: 41067) -.traceybell.co.uk -# ||todaysfinder.com^$subdocument,third-party (easylistchina+easylist.txt: 41053) -.todaysfinder.com -# ||tiqiq.com/Tiqiq/WidgetInactiveIFrame.aspx?WidgetID=*&PublisherID=$subdocument,third-party (easylistchina+easylist.txt: 41050) -.tiqiq.com/Tiqiq/WidgetInactiveIFrame\.aspx\?WidgetID=.*&PublisherID= -# ||tickles.ie^$subdocument,third-party (easylistchina+easylist.txt: 41044) -.tickles.ie -# ||tickles.co.uk^$subdocument,third-party (easylistchina+easylist.txt: 41043) -.tickles.co.uk -# ||thebigchair.com.au^$subdocument,third-party (easylistchina+easylist.txt: 41030) -.thebigchair.com.au -# ||superherostuff.com/pages/cbmpage.aspx?*&cbmid=$subdocument,third-party (easylistchina+easylist.txt: 40995) -.superherostuff.com/pages/cbmpage\.aspx\?.*&cbmid= -# ||stylefind.com^*?campaign=$subdocument,third-party (easylistchina+easylist.txt: 40993) -.stylefind.com/.*\?campaign= -# ||securep2p.com^$subdocument,third-party (easylistchina+easylist.txt: 40887) -.securep2p.com -# ||s1.wp.com^$subdocument,third-party (easylistchina+easylist.txt: 40867) -.s1.wp.com -# ||roadcomponentsdb.com^$subdocument,third-party (easylistchina+easylist.txt: 40851) -.roadcomponentsdb.com -# ||pokerstars.com/?source=$subdocument,third-party (easylistchina+easylist.txt: 40772) -.pokerstars.com/\?source= -# ||playata.myvideo.de^$subdocument,third-party (easylistchina+easylist.txt: 40762) -.playata.myvideo.de -# ||pagerage.com^$subdocument,third-party (easylistchina+easylist.txt: 40727) -.pagerage.com -# ||networkice.com^$subdocument,third-party (easylistchina+easylist.txt: 40682) -.networkice.com -# ||myalter1tv.altervista.org^$subdocument,third-party (easylistchina+easylist.txt: 40652) -.myalter1tv.altervista.org -# ||my-dirty-hobby.com/track/$subdocument,third-party (easylistchina+easylist.txt: 40651) -.my-dirty-hobby.com/track/ -# ||my-best-jobs.com^$subdocument,third-party (easylistchina+easylist.txt: 40650) -.my-best-jobs.com -# ||musik-a-z.com^$subdocument,third-party (easylistchina+easylist.txt: 40649) -.musik-a-z.com -# ||mediaserver.digitec.ch^$subdocument,third-party (easylistchina+easylist.txt: 40598) -.mediaserver.digitec.ch -# ||mcc.godaddy.com/park/$subdocument,third-party (easylistchina+easylist.txt: 40584) -.mcc.godaddy.com/park/ -# ||linkedin.com/csp/dtag?$subdocument,third-party (easylistchina+easylist.txt: 40524) -.linkedin.com/csp/dtag\? -# ||lg.com/in/cinema3d.jsp$subdocument,third-party (easylistchina+easylist.txt: 40518) -.lg.com/in/cinema3d\.jsp -# ||jocly.com^*.html?click=$subdocument,third-party (easylistchina+easylist.txt: 40479) -.jocly.com/.*\.html\?click= -# ||jeysearch.com^$subdocument,third-party (easylistchina+easylist.txt: 40474) -.jeysearch.com -# ||gadgetresearch.net^$subdocument,third-party (easylistchina+easylist.txt: 40305) -.gadgetresearch.net -# ||freetricktipss.info^$subdocument,third-party (easylistchina+easylist.txt: 40286) -.freetricktipss.info -# ||firstclass-download.com^$subdocument,third-party (easylistchina+easylist.txt: 40267) -.firstclass-download.com -# ||elitsearch.com^$subdocument,third-party (easylistchina+easylist.txt: 40209) -.elitsearch.com -# ||dealswarm.com^$subdocument,third-party (easylistchina+easylist.txt: 40122) -.dealswarm.com -# ||dailydealstwincities.com/widgets/$subdocument,third-party (easylistchina+easylist.txt: 40105) -.dailydealstwincities.com/widgets/ -# ||d-l-t.com^$subdocument,third-party (easylistchina+easylist.txt: 40010) -.d-l-t.com -# ||charlestondealstoday.com/aux/ux/_component/ss_dealrail/$subdocument,third-party (easylistchina+easylist.txt: 39951) -.charlestondealstoday.com/aux/ux/_component/ss_dealrail/ -# ||cars.fyidriving.com^$subdocument,third-party (easylistchina+easylist.txt: 39917) -.cars.fyidriving.com -# ||bookingdragon.com^$subdocument,third-party (easylistchina+easylist.txt: 39877) -.bookingdragon.com -# ||bigpond.com/specials/$subdocument,third-party (easylistchina+easylist.txt: 39849) -.bigpond.com/specials/ -# ||bidgo.ca^$subdocument,third-party (easylistchina+easylist.txt: 39845) -.bidgo.ca -# ||amazon.com/gp/redirect.html?$subdocument,third-party (easylistchina+easylist.txt: 39737) -.amazon.com/gp/redirect\.html\? -# .se/?placement=$script,subdocument,third-party (easylistchina+easylist.txt: 11056) -/.*\.se/\?placement= -.*.se/\?placement= -# ||niuza.com^$image,subdocument,third-party (easylistchina+easylist.txt: 871) +# ||niuza.com^$image,subdocument,third-party (easylistchina.txt: 890) .niuza.com -# ||kiees.com^$image,subdocument,third-party (easylistchina+easylist.txt: 832) +# ||kiees.com^$image,subdocument,third-party (easylistchina.txt: 851) .kiees.com -# ||pravda.ru/cache/cqc/$third-party,subdocument (advblock.txt: 1812) -.pravda.ru/cache/cqc/ -# ||news.findres.com^$third-party,script,subdocument (advblock.txt: 1804) -.news.findres.com -# ||from-ua.com^$third-party,subdocument (advblock.txt: 1793) -.from-ua.com -# ||videoigr.net^$third-party,subdocument (advblock.txt: 1672) -.videoigr.net -# ||shopik.tv^$third-party,subdocument (advblock.txt: 1508) -.shopik.tv -# ||lakidar.net^$third-party,subdocument (advblock.txt: 1154) -.lakidar.net -# ||gamebook.pw^$third-party,subdocument (advblock.txt: 1017) -.gamebook.pw -# ||bit.ly^$third-party,subdocument (advblock.txt: 856) -.bit.ly -# ||autocentre.ua^$third-party,subdocument (advblock.txt: 807) -.autocentre.ua -# |http://u.to/$third-party,script,subdocument (advblock.txt: 700) -u.to -# ||asia^$third-party,script,subdocument (advblock.txt: 676) -# ||servebbs.net^$third-party,script,subdocument (advblock.txt: 673) -.servebbs.net -# ||quelliclub.ru^$third-party,script,subdocument (advblock.txt: 672) -.quelliclub.ru -# ||itsaol.com^$third-party,script,subdocument (advblock.txt: 671) -.itsaol.com -# ||dyndns.$third-party,script,subdocument (advblock.txt: 670) -.dyndns.*. -# ||dyndns-$third-party,script,subdocument (advblock.txt: 669) -.dyndns-*. -# ||chickenkiller.com^$third-party,script,subdocument (advblock.txt: 668) -.chickenkiller.com -# ||changeip.name^$third-party,script,subdocument (advblock.txt: 667) -.changeip.name -# /play/?ref=*/play/*$third-party,subdocument (advblock.txt: 509) -/(.*/)?play/\?ref=.*/play/.* -# /in.cgi?$third-party,script,subdocument (advblock.txt: 469) -/(.*/)?in\.cgi\? -# /getThumbs?uid=$third-party,subdocument (advblock.txt: 454) -/(.*/)?getThumbs\?uid= -# /forum?t=$third-party,subdocument (advblock.txt: 444) -/(.*/)?forum\?t= -# ||depositphotos.com^$subdocument,third-party (easylist.txt: 32252) -.depositphotos.com -# .net/director/?$subdocument,third-party (easylist.txt: 31415) -/.*\.net/director/\? -.*.net/director/\? -# ||xxtu.be^$subdocument,third-party (easylist.txt: 31312) -.xxtu.be -# ||twilightsex.com^$subdocument,third-party (easylist.txt: 31282) -.twilightsex.com -# ||pornturbo.com^*.php?*&cmp=$subdocument,third-party (easylist.txt: 31194) -.pornturbo.com/.*\.php\?.*&cmp= -# ||pornturbo.com/*.php?g=$subdocument,third-party (easylist.txt: 31193) -.pornturbo.com/.*\.php\?g= -# ||pornhubpremium.com/relatedpremium/$subdocument,third-party (easylist.txt: 31189) -.pornhubpremium.com/relatedpremium/ -# ||porndeals.com^$subdocument,third-party (easylist.txt: 31188) -.porndeals.com -# ||livesexasian.com^$subdocument,third-party (easylist.txt: 31129) -.livesexasian.com -# ||ifriends.net^$subdocument,third-party (easylist.txt: 31107) -.ifriends.net -# ||hornybirds.com^$subdocument,third-party (easylist.txt: 31096) -.hornybirds.com -# ||hardcoresexnow.com^$subdocument,third-party (easylist.txt: 31088) -.hardcoresexnow.com -# ||freeonescams.com^$subdocument,third-party (easylist.txt: 31062) -.freeonescams.com -# ||fbooksluts.com^$subdocument,third-party (easylist.txt: 31052) -.fbooksluts.com -# ||daredorm.com^$subdocument,third-party (easylist.txt: 31026) -.daredorm.com -# ||cartoontube.com^$subdocument,third-party (easylist.txt: 31002) -.cartoontube.com -# ||yooclick.com^$subdocument,third-party (easylist.txt: 30742) -.yooclick.com -# ||yontoo.com^$subdocument,third-party (easylist.txt: 30741) -.yontoo.com -# ||widget.shopstyle.com/widget?pid=$subdocument,third-party (easylist.txt: 30690) -.widget.shopstyle.com/widget\?pid= -# ||watersoul.com^$subdocument,third-party (easylist.txt: 30671) -.watersoul.com -# ||watchme.com/track/$subdocument,third-party (easylist.txt: 30670) -.watchme.com/track/ -# ||vuvuplaza.com^$subdocument,third-party (easylist.txt: 30660) -.vuvuplaza.com -# ||vdownloader.com/pages/$subdocument,third-party (easylist.txt: 30635) -.vdownloader.com/pages/ -# ||ubuntudeal.co.za^$subdocument,third-party (easylist.txt: 30609) -.ubuntudeal.co.za -# ||traceybell.co.uk^$subdocument,third-party (easylist.txt: 30582) -.traceybell.co.uk -# ||todaysfinder.com^$subdocument,third-party (easylist.txt: 30568) -.todaysfinder.com -# ||tiqiq.com/Tiqiq/WidgetInactiveIFrame.aspx?WidgetID=*&PublisherID=$subdocument,third-party (easylist.txt: 30565) -.tiqiq.com/Tiqiq/WidgetInactiveIFrame\.aspx\?WidgetID=.*&PublisherID= -# ||tickles.ie^$subdocument,third-party (easylist.txt: 30559) -.tickles.ie -# ||tickles.co.uk^$subdocument,third-party (easylist.txt: 30558) -.tickles.co.uk -# ||thebigchair.com.au^$subdocument,third-party (easylist.txt: 30545) -.thebigchair.com.au -# ||superherostuff.com/pages/cbmpage.aspx?*&cbmid=$subdocument,third-party (easylist.txt: 30510) -.superherostuff.com/pages/cbmpage\.aspx\?.*&cbmid= -# ||stylefind.com^*?campaign=$subdocument,third-party (easylist.txt: 30508) -.stylefind.com/.*\?campaign= -# ||securep2p.com^$subdocument,third-party (easylist.txt: 30402) -.securep2p.com -# ||s1.wp.com^$subdocument,third-party (easylist.txt: 30382) -.s1.wp.com -# ||roadcomponentsdb.com^$subdocument,third-party (easylist.txt: 30366) -.roadcomponentsdb.com -# ||pokerstars.com/?source=$subdocument,third-party (easylist.txt: 30287) -.pokerstars.com/\?source= -# ||playata.myvideo.de^$subdocument,third-party (easylist.txt: 30277) -.playata.myvideo.de -# ||pagerage.com^$subdocument,third-party (easylist.txt: 30242) -.pagerage.com -# ||networkice.com^$subdocument,third-party (easylist.txt: 30197) -.networkice.com -# ||myalter1tv.altervista.org^$subdocument,third-party (easylist.txt: 30167) -.myalter1tv.altervista.org -# ||my-dirty-hobby.com/track/$subdocument,third-party (easylist.txt: 30166) -.my-dirty-hobby.com/track/ -# ||my-best-jobs.com^$subdocument,third-party (easylist.txt: 30165) -.my-best-jobs.com -# ||musik-a-z.com^$subdocument,third-party (easylist.txt: 30164) -.musik-a-z.com -# ||mediaserver.digitec.ch^$subdocument,third-party (easylist.txt: 30113) -.mediaserver.digitec.ch -# ||mcc.godaddy.com/park/$subdocument,third-party (easylist.txt: 30099) -.mcc.godaddy.com/park/ -# ||linkedin.com/csp/dtag?$subdocument,third-party (easylist.txt: 30039) -.linkedin.com/csp/dtag\? -# ||lg.com/in/cinema3d.jsp$subdocument,third-party (easylist.txt: 30033) -.lg.com/in/cinema3d\.jsp -# ||jocly.com^*.html?click=$subdocument,third-party (easylist.txt: 29994) -.jocly.com/.*\.html\?click= -# ||jeysearch.com^$subdocument,third-party (easylist.txt: 29989) -.jeysearch.com -# ||gadgetresearch.net^$subdocument,third-party (easylist.txt: 29820) -.gadgetresearch.net -# ||freetricktipss.info^$subdocument,third-party (easylist.txt: 29801) -.freetricktipss.info -# ||firstclass-download.com^$subdocument,third-party (easylist.txt: 29782) -.firstclass-download.com -# ||elitsearch.com^$subdocument,third-party (easylist.txt: 29724) -.elitsearch.com -# ||dealswarm.com^$subdocument,third-party (easylist.txt: 29637) -.dealswarm.com -# ||dailydealstwincities.com/widgets/$subdocument,third-party (easylist.txt: 29620) -.dailydealstwincities.com/widgets/ -# ||d-l-t.com^$subdocument,third-party (easylist.txt: 29525) -.d-l-t.com -# ||charlestondealstoday.com/aux/ux/_component/ss_dealrail/$subdocument,third-party (easylist.txt: 29466) -.charlestondealstoday.com/aux/ux/_component/ss_dealrail/ -# ||cars.fyidriving.com^$subdocument,third-party (easylist.txt: 29432) -.cars.fyidriving.com -# ||bookingdragon.com^$subdocument,third-party (easylist.txt: 29392) -.bookingdragon.com -# ||bigpond.com/specials/$subdocument,third-party (easylist.txt: 29364) -.bigpond.com/specials/ -# ||bidgo.ca^$subdocument,third-party (easylist.txt: 29360) -.bidgo.ca -# ||amazon.com/gp/redirect.html?$subdocument,third-party (easylist.txt: 29252) -.amazon.com/gp/redirect\.html\? -# .se/?placement=$script,subdocument,third-party (easylist.txt: 571) -/.*\.se/\?placement= -.*.se/\?placement= #ab2p-block-xpopup {+filter{ab2p-popup-filter} \ } TAG:^ab2p-block-xpopup$ -# ||ymages.org/prepop.php$popup (easylistchina+easylist.txt: 47094) -.ymages.org/prepop\.php -# ||r18.com/*utm_source$popup (easylistchina+easylist.txt: 47091) -.r18.com/.*utm_source -# ||publicagent.com/bigzpup.php$popup (easylistchina+easylist.txt: 47090) -.publicagent.com/bigzpup\.php -# ||pornuppz.info/out.php$popup (easylistchina+easylist.txt: 47089) -.pornuppz.info/out\.php -# ||pop.mrstiff.com^$popup (easylistchina+easylist.txt: 47086) -.pop.mrstiff.com -# ||pop.fapxl.com^$popup (easylistchina+easylist.txt: 47085) -.pop.fapxl.com -# ||pinporn.com/popunder/$popup (easylistchina+easylist.txt: 47084) -.pinporn.com/popunder/ -# ||namethatporn.com/ntpoo$popup (easylistchina+easylist.txt: 47083) -.namethatporn.com/ntpoo -# ||movies.askjolene.com/c64?clickid=$popup (easylistchina+easylist.txt: 47082) -.movies.askjolene.com/c64\?clickid= -# ||imagebam.com/redirect_awe.php$popup (easylistchina+easylist.txt: 47081) -.imagebam.com/redirect_awe\.php -# ||heganteens.com/exo.php$popup (easylistchina+easylist.txt: 47080) -.heganteens.com/exo\.php -# ||hegansex.com/exo.php$popup (easylistchina+easylist.txt: 47079) -.hegansex.com/exo\.php -# ||h2porn.com/pu.php$popup (easylistchina+easylist.txt: 47078) -.h2porn.com/pu\.php -# ||fantastube.com/track.php$popup (easylistchina+easylist.txt: 47074) -.fantastube.com/track\.php -# ||fantasti.cc^*?ad=$popup (easylistchina+easylist.txt: 47073) -.fantasti.cc/.*\?ad= -# ||eporner.com/pop.php$popup (easylistchina+easylist.txt: 47072) -.eporner.com/pop\.php -# ||ad.userporn.com^$popup (easylistchina+easylist.txt: 47071) -.ad.userporn.com -# ||ziddu.com/onclickpop.php$popup (easylistchina+easylist.txt: 46218) -.ziddu.com/onclickpop\.php -# ||youwatch.org^*^crr^$popup (easylistchina+easylist.txt: 46216) -.youwatch.org/.*[^\w%.-]crr[^\w%.-] -# ||youwatch.org^*^ban^$popup (easylistchina+easylist.txt: 46215) -.youwatch.org/.*[^\w%.-]ban[^\w%.-] -# ||youwatch.org/vids*.html$popup (easylistchina+easylist.txt: 46214) -.youwatch.org/vids.*\.html -# ||yasni.ca/ad_pop.php$popup (easylistchina+easylist.txt: 46213) -.yasni.ca/ad_pop\.php -# ||whies.info^$popup (easylistchina+easylist.txt: 46212) -.whies.info -# ||watch-movies.net.in/popup.php$popup (easylistchina+easylist.txt: 46209) -.watch-movies.net.in/popup\.php -# ||vodu.ch/play_video.php$popup (easylistchina+easylist.txt: 46208) -.vodu.ch/play_video\.php -# ||virtualtourist.com/commerce/popunder/$popup (easylistchina+easylist.txt: 46207) -.virtualtourist.com/commerce/popunder/ -# ||vidspot.net^*http$popup (easylistchina+easylist.txt: 46206) -.vidspot.net/.*http -# ||vidhog.com/ilivid-redirect.php$popup (easylistchina+easylist.txt: 46205) -.vidhog.com/ilivid-redirect\.php -# ||tripadvisor.*/SimilarHotelsPopunder?$popup (easylistchina+easylist.txt: 46203) -.tripadvisor.*./(.*/)?SimilarHotelsPopunder\? -# ||tripadvisor.*/rulebasedpopunder?$popup (easylistchina+easylist.txt: 46202) -.tripadvisor.*./(.*/)?rulebasedpopunder\? -# ||trans.youwatch.org^$popup (easylistchina+easylist.txt: 46201) -.trans.youwatch.org -# ||tozer.youwatch.org^$popup (easylistchina+easylist.txt: 46200) -.tozer.youwatch.org -# ||torrentz.eu/p/$popup (easylistchina+easylist.txt: 46199) -.torrentz.eu/p/ -# ||torrentz.*/wgmpop/$popup (easylistchina+easylist.txt: 46198) -.torrentz.*./(.*/)?wgmpop/ -# ||torrentz.*/mgidpop/$popup (easylistchina+easylist.txt: 46197) -.torrentz.*./(.*/)?mgidpop/ -# ||tny.cz/red/first.php$popup (easylistchina+easylist.txt: 46195) -.tny.cz/red/first\.php -# ||titanshare.to/download-extern.php?type=*&n=$popup (easylistchina+easylist.txt: 46194) -.titanshare.to/download-extern\.php\?type=.*&n= -# ||thevideo.me/script/$popup (easylistchina+easylist.txt: 46192) -.thevideo.me/script/ -# ||thesource.com/magicshave/$popup (easylistchina+easylist.txt: 46191) -.thesource.com/magicshave/ -# ||subs4free.com/_pop_link.php$popup (easylistchina+easylist.txt: 46189) -.subs4free.com/_pop_link\.php -# ||streamcloud.eu/deliver.php$popup (easylistchina+easylist.txt: 46187) -.streamcloud.eu/deliver\.php -# ||sponsorselect.com/Common/LandingPage.aspx?eu=$popup (easylistchina+easylist.txt: 46186) -.sponsorselect.com/Common/LandingPage\.aspx\?eu= -# ||songspk.cc/pop*.html$popup (easylistchina+easylist.txt: 46184) -.songspk.cc/pop.*\.html -# ||rediff.com/uim/ads/$popup (easylistchina+easylist.txt: 46179) -.rediff.com/uim/ads/ -# ||pop.billionuploads.com^$popup (easylistchina+easylist.txt: 46177) -.pop.billionuploads.com -# ||playhd.eu/test$popup (easylistchina+easylist.txt: 46176) -.playhd.eu/test -# ||plarium.com/play/*adCampaign=$popup (easylistchina+easylist.txt: 46175) -.plarium.com/play/.*adCampaign= -# ||park.above.com^$popup (easylistchina+easylist.txt: 46173) -.park.above.com -# ||oddschecker.com/clickout.htm?type=takeover-$popup (easylistchina+easylist.txt: 46171) -.oddschecker.com/clickout\.htm\?type=takeover- -# ||nosteam.ro/pma/$popup (easylistchina+easylist.txt: 46170) -.nosteam.ro/pma/ -# ||multiupload.nl/popunder/$popup (easylistchina+easylist.txt: 46167) -.multiupload.nl/popunder/ -# ||miniurls.co^*?ref=$popup (easylistchina+easylist.txt: 46166) -.miniurls.co/.*\?ref= -# ||military.com/data/popup/new_education_popunder.htm$popup (easylistchina+easylist.txt: 46165) -.military.com/data/popup/new_education_popunder\.htm -# ||linkbucks.com^*/?*=$popup (easylistchina+easylist.txt: 46164) -.linkbucks.com/.*/\?.*= -# ||itv.com/itv/adclick/$popup (easylistchina+easylist.txt: 46158) -.itv.com/itv/adclick/ -# ||intradayfun.com/news_intradayfun.com.html$popup (easylistchina+easylist.txt: 46157) -.intradayfun.com/news_intradayfun\.com\.html -# ||imageshack.us/newuploader_ad.php$popup (easylistchina+easylist.txt: 46156) -.imageshack.us/newuploader_ad\.php -# ||imageshack.us/ads/$popup (easylistchina+easylist.txt: 46155) -.imageshack.us/ads/ -# ||ifly.com/trip-plan/ifly-trip?*&ad=$popup (easylistchina+easylist.txt: 46154) -.ifly.com/trip-plan/ifly-trip\?.*&ad= -# ||houndmirror.com/out.php$popup (easylistchina+easylist.txt: 46152) -.houndmirror.com/out\.php -# ||homets.info/queen_file?$popup (easylistchina+easylist.txt: 46151) -.homets.info/queen_file\? -# ||homerun.re/adServe/$popup (easylistchina+easylist.txt: 46150) -.homerun.re/adServe/ -# ||gamezadvisor.com/popup.php$popup (easylistchina+easylist.txt: 46145) -.gamezadvisor.com/popup\.php -# ||fullonsms.com/sid.html$popup (easylistchina+easylist.txt: 46144) -.fullonsms.com/sid\.html -# ||fullonsms.com/quikrad.html$popup (easylistchina+easylist.txt: 46143) -.fullonsms.com/quikrad\.html -# ||fullonsms.com/quikr.html$popup (easylistchina+easylist.txt: 46142) -.fullonsms.com/quikr\.html -# ||fullonsms.com/mixpop.html$popup (easylistchina+easylist.txt: 46141) -.fullonsms.com/mixpop\.html -# ||fullonsms.com/blank.php$popup (easylistchina+easylist.txt: 46140) -.fullonsms.com/blank\.php -# ||freean.us^*?ref=$popup (easylistchina+easylist.txt: 46139) -.freean.us/.*\?ref= -# ||free-filehost.net/pop/$popup (easylistchina+easylist.txt: 46137) -.free-filehost.net/pop/ -# ||flashx.tv/frame/$popup (easylistchina+easylist.txt: 46136) -.flashx.tv/frame/ -# ||flashx.tv/ads/$popup (easylistchina+easylist.txt: 46135) -.flashx.tv/ads/ -# ||firedrive.com/tools/$popup (easylistchina+easylist.txt: 46134) -.firedrive.com/tools/ -# ||firedrive.com/appresources/$popup (easylistchina+easylist.txt: 46133) -.firedrive.com/appresources/ -# ||filmon.com^*&adn=$popup (easylistchina+easylist.txt: 46130) -.filmon.com/.*&adn= -# ||filepost.com/default_popup.html$popup (easylistchina+easylist.txt: 46129) -.filepost.com/default_popup\.html -# ||f-picture.net/Misc/JumpClick?$popup (easylistchina+easylist.txt: 46127) -.f-picture.net/Misc/JumpClick\? -# ||edomz.com/re.php?mid=$popup (easylistchina+easylist.txt: 46125) -.edomz.com/re\.php\?mid= -# ||eafyfsuh.net^*/?name=$popup (easylistchina+easylist.txt: 46124) -.eafyfsuh.net/.*/\?name= -# ||deb.gs^*?ref=$popup (easylistchina+easylist.txt: 46123) -.deb.gs/.*\?ref= -# ||damoh.muzu.tv^$popup (easylistchina+easylist.txt: 46122) -.damoh.muzu.tv -# ||conservativepost.com/pu/$popup (easylistchina+easylist.txt: 46121) -.conservativepost.com/pu/ -# ||comicbookmovie.com/plugins/ads/$popup (easylistchina+easylist.txt: 46120) -.comicbookmovie.com/plugins/ads/ -# ||cloudzilla.to/cam/wpop.php$popup (easylistchina+easylist.txt: 46119) -.cloudzilla.to/cam/wpop\.php -# ||channel4.com/ad/$popup (easylistchina+easylist.txt: 46117) -.channel4.com/ad/ -# ||casino-x.com^*&promo$popup (easylistchina+easylist.txt: 46116) -.casino-x.com/.*&promo -# ||avalanchers.com/out/$popup (easylistchina+easylist.txt: 46112) -.avalanchers.com/out/ -# ||allmyvideos.net^*?p=$popup (easylistchina+easylist.txt: 46111) -.allmyvideos.net/.*\?p= -# ||adyou.me/bug/adcash$popup (easylistchina+easylist.txt: 46109) -.adyou.me/bug/adcash -# ||adx.kat.ph^$popup (easylistchina+easylist.txt: 46108) -.adx.kat.ph -# ||4fuckr.com/api.php$popup (easylistchina+easylist.txt: 46106) -.4fuckr.com/api\.php -# ||104.239.139.5/display/$popup (easylistchina+easylist.txt: 46105) -.104.239.139.5/display/ -# ||wantlive.com/landing/$popup (easylistchina+easylist.txt: 41887) -.wantlive.com/landing/ -# ||videobox.com/tour/$popup (easylistchina+easylist.txt: 41882) -.videobox.com/tour/ -# ||videobox.com/?tid=$popup (easylistchina+easylist.txt: 41881) -.videobox.com/\?tid= -# ||upforit.com/ext.php$popup (easylistchina+easylist.txt: 41880) -.upforit.com/ext\.php -# ||topbucks.com/popunder/$popup (easylistchina+easylist.txt: 41876) -.topbucks.com/popunder/ -# ||textad.sexsearch.com^$popup (easylistchina+easylist.txt: 41875) -.textad.sexsearch.com -# ||streamate.com/landing/$popup (easylistchina+easylist.txt: 41873) -.streamate.com/landing/ -# ||sexier.com^*_popunder&$popup (easylistchina+easylist.txt: 41870) -.sexier.com/.*_popunder& -# ||sex.com/popunder/$popup (easylistchina+easylist.txt: 41868) -.sex.com/popunder/ -# ||seeme.com^*?aid=*&art=$popup (easylistchina+easylist.txt: 41867) -.seeme.com/.*\?aid=.*&art= -# ||seekbang.com/cs/rotator/$popup (easylistchina+easylist.txt: 41866) -.seekbang.com/cs/rotator/ -# ||redtube.com/bid/$popup (easylistchina+easylist.txt: 41864) -.redtube.com/bid/ -# ||pornslash.com/cbp.php$popup (easylistchina+easylist.txt: 41861) -.pornslash.com/cbp\.php -# ||pornoh.info^$popup (easylistchina+easylist.txt: 41860) -.pornoh.info -# ||porno-onlain.info/top.php$popup (easylistchina+easylist.txt: 41859) -.porno-onlain.info/top\.php -# ||pornhub.com^*&utm_campaign=*-pop|$popup (easylistchina+easylist.txt: 41857) -.pornhub.com/.*&utm_campaign=.*-pop$ -# ||pomnach.ru^$popup (easylistchina+easylist.txt: 41856) -.pomnach.ru -# ||myfreecams.com/?co_id=$popup (easylistchina+easylist.txt: 41854) -.myfreecams.com/\?co_id= -# ||meetlocals.com^*popunder$popup (easylistchina+easylist.txt: 41851) -.meetlocals.com/.*popunder -# ||livecams.com^$popup (easylistchina+easylist.txt: 41847) -.livecams.com -# ||judgeporn.com/video_pop.php?$popup (easylistchina+easylist.txt: 41844) -.judgeporn.com/video_pop\.php\? -# ||join.whitegfs.com^$popup (easylistchina+easylist.txt: 41843) -.join.whitegfs.com -# ||icgirls.com^$popup (easylistchina+easylist.txt: 41837) -.icgirls.com -# ||hazeher.com/t1/pps$popup (easylistchina+easylist.txt: 41835) -.hazeher.com/t1/pps -# ||get-a-fuck-tonight.com^$popup (easylistchina+easylist.txt: 41834) -.get-a-fuck-tonight.com -# ||fucktapes.org/fucktube.htm$popup (easylistchina+easylist.txt: 41833) -.fucktapes.org/fucktube\.htm -# ||fuckshow.org^*&adr=$popup (easylistchina+easylist.txt: 41832) -.fuckshow.org/.*&adr= -# ||fuckbookhookups.com/go/$popup (easylistchina+easylist.txt: 41830) -.fuckbookhookups.com/go/ -# ||fling.com/enter.php?$popup (easylistchina+easylist.txt: 41828) -.fling.com/enter\.php\? -# ||fantasti.cc/ajax/gw.php?$popup (easylistchina+easylist.txt: 41826) -.fantasti.cc/ajax/gw\.php\? -# ||extremefuse.com/out.php?$popup (easylistchina+easylist.txt: 41825) -.extremefuse.com/out\.php\? -# ||ext.affaire.com^$popup (easylistchina+easylist.txt: 41824) -.ext.affaire.com -# ||epornerlive.com/index.php?*=punder$popup (easylistchina+easylist.txt: 41822) -.epornerlive.com/index\.php\?.*=punder -# ||chaturbate.com/sitestats/openwindow/$popup (easylistchina+easylist.txt: 41819) -.chaturbate.com/sitestats/openwindow/ -# ||chaturbate.com/*/?join_overlay=$popup (easylistchina+easylist.txt: 41818) -.chaturbate.com/.*/\?join_overlay= -# ||candidvoyeurism.com/ads/$popup (easylistchina+easylist.txt: 41817) -.candidvoyeurism.com/ads/ -# ||camcity.com/rtr.php?aid=$popup (easylistchina+easylist.txt: 41816) -.camcity.com/rtr\.php\?aid= -# ||cam4.com/?$popup (easylistchina+easylist.txt: 41815) -.cam4.com/\? -# ||21sextury.com^$popup (easylistchina+easylist.txt: 41806) -.21sextury.com -# ||wptpoker.com^$popup (easylistchina+easylist.txt: 41377) -.wptpoker.com -# ||weeklyprizewinner.com-net.info^$popup (easylistchina+easylist.txt: 41373) -.weeklyprizewinner.com-net.info -# ||usenet.nl^$popup (easylistchina+easylist.txt: 41369) -.usenet.nl -# ||urlcash.net/random*.php$popup (easylistchina+easylist.txt: 41367) -.urlcash.net/random.*\.php -# ||uploaded.net/ref/$popup (easylistchina+easylist.txt: 41366) -.uploaded.net/ref/ -# ||upbcd.info/vuze/$popup (easylistchina+easylist.txt: 41365) -.upbcd.info/vuze/ -# ||ul.to/ref/$popup (easylistchina+easylist.txt: 41364) -.ul.to/ref/ -# ||theseforums.com^*/?ref=$popup (easylistchina+easylist.txt: 41356) -.theseforums.com/.*/\?ref= -# ||stargames.com/bridge.asp?idr=$popup (easylistchina+easylist.txt: 41352) -.stargames.com/bridge\.asp\?idr= -# ||softingo.com/clp/$popup (easylistchina+easylist.txt: 41350) -.softingo.com/clp/ -# ||settlecruise.org^$popup (easylistchina+easylist.txt: 41348) -.settlecruise.org -# ||red-tube.com/popunder/$popup (easylistchina+easylist.txt: 41342) -.red-tube.com/popunder/ -# ||rackcorp.com^$popup (easylistchina+easylist.txt: 41340) -.rackcorp.com -# ||pub.ezanga.com/rv2.php?$popup (easylistchina+easylist.txt: 41339) -.pub.ezanga.com/rv2\.php\? -# ||priceinfo.comuv.com^$popup (easylistchina+easylist.txt: 41336) -.priceinfo.comuv.com -# ||platinumdown.com^$popup (easylistchina+easylist.txt: 41334) -.platinumdown.com -# ||planet49.com/cgi-bin/wingame.pl?$popup (easylistchina+easylist.txt: 41333) -.planet49.com/cgi-bin/wingame\.pl\? -# ||noowmedia.com^$popup (easylistchina+easylist.txt: 41328) -.noowmedia.com -# ||mypromocenter.com^$popup (easylistchina+easylist.txt: 41327) -.mypromocenter.com -# ||makemoneyonline.2yu.in^$popup (easylistchina+easylist.txt: 41319) -.makemoneyonline.2yu.in -# ||lumosity.com/landing_pages/$popup (easylistchina+easylist.txt: 41317) -.lumosity.com/landing_pages/ -# ||lovepoker.de^*/?pid=$popup (easylistchina+easylist.txt: 41311) -.lovepoker.de/.*/\?pid= -# ||liutilities.com^*/affiliate/$popup (easylistchina+easylist.txt: 41309) -.liutilities.com/.*/affiliate/ -# ||hyperlinksecure.com/go/$popup (easylistchina+easylist.txt: 41306) -.hyperlinksecure.com/go/ -# ||hyperlinksecure.com/back?token=$popup (easylistchina+easylist.txt: 41305) -.hyperlinksecure.com/back\?token= -# ||hdvidcodecs.com^$popup (easylistchina+easylist.txt: 41300) -.hdvidcodecs.com -# ||hdvid-codec.com^$popup (easylistchina+easylist.txt: 41299) -.hdvid-codec.com -# ||fwmrm.net/ad/$popup (easylistchina+easylist.txt: 41296) -.fwmrm.net/ad/ -# ||fsoft4down.com^$popup (easylistchina+easylist.txt: 41293) -.fsoft4down.com -# ||free-rewards.com-s.tv^$popup (easylistchina+easylist.txt: 41292) -.free-rewards.com-s.tv -# ||flashplayer-updates.com^$popup (easylistchina+easylist.txt: 41290) -.flashplayer-updates.com -# ||firstload.de^$popup (easylistchina+easylist.txt: 41289) -.firstload.de -# ||firstload.com^$popup (easylistchina+easylist.txt: 41288) -.firstload.com -# ||fastclick.net^$popup (easylistchina+easylist.txt: 41287) -.fastclick.net -# ||evanetwork.com^$popup (easylistchina+easylist.txt: 41285) -.evanetwork.com -# ||eurogrand.com^$popup (easylistchina+easylist.txt: 41283) -.eurogrand.com -# ||eroticmix.blogspot.$popup (easylistchina+easylist.txt: 41280) -.eroticmix.blogspot.*. -# ||d1110e4.se^$popup (easylistchina+easylist.txt: 41278) -.d1110e4.se -# ||coolguruji.com/l.php?$popup (easylistchina+easylist.txt: 41276) -.coolguruji.com/l\.php\? -# ||chatulfetelor.net/$popup (easylistchina+easylist.txt: 41272) -.chatulfetelor.net -# ||chatlivejasmin.net^$popup (easylistchina+easylist.txt: 41271) -.chatlivejasmin.net -# ||casinoadviser.net^$popup (easylistchina+easylist.txt: 41268) -.casinoadviser.net -# ||bet365.com^*affiliate=$popup (easylistchina+easylist.txt: 41263) -.bet365.com/.*affiliate= -# ||adrotator.se^$popup (easylistchina+easylist.txt: 41254) -.adrotator.se -# ||5.39.67.191/promo.php?$popup (easylistchina+easylist.txt: 41250) -.5.39.67.191/promo\.php\? -# ||4utro.ru^$popup (easylistchina+easylist.txt: 41249) -.4utro.ru -# ||xxxmatch.com^$popup (easylistchina+easylist.txt: 39571) -.xxxmatch.com -# ||xmatch.com^$popup (easylistchina+easylist.txt: 39566) -.xmatch.com -# ||watchmygf.com^$popup (easylistchina+easylist.txt: 39563) -.watchmygf.com -# ||vlexokrako.com^$popup (easylistchina+easylist.txt: 39561) -.vlexokrako.com -# ||turnefo.ru^$popup (easylistchina+easylist.txt: 39560) -.turnefo.ru -# ||trafficstars.com^$popup (easylistchina+easylist.txt: 39559) -.trafficstars.com -# ||trafficbroker.com^$popup (easylistchina+easylist.txt: 39557) -.trafficbroker.com -# ||trackvoluum.com^$popup (easylistchina+easylist.txt: 39556) -.trackvoluum.com -# ||pornbus.org^$popup (easylistchina+easylist.txt: 39540) -.pornbus.org -# ||playgirl.com^$popup (easylistchina+easylist.txt: 39536) -.playgirl.com -# ||pinkberrytube.com^$popup (easylistchina+easylist.txt: 39535) -.pinkberrytube.com -# ||needlive.com^$popup (easylistchina+easylist.txt: 39533) -.needlive.com -# ||ipvertising.com^$popup (easylistchina+easylist.txt: 39527) -.ipvertising.com -# ||herezera.com^$popup (easylistchina+easylist.txt: 39521) -.herezera.com -# ||freecamsexposed.com^$popup (easylistchina+easylist.txt: 39516) -.freecamsexposed.com -# ||flagads.net^$popup (easylistchina+easylist.txt: 39512) -.flagads.net -# ||fbay.tv^$popup (easylistchina+easylist.txt: 39510) -.fbay.tv -# ||exogripper.com^$popup (easylistchina+easylist.txt: 39509) -.exogripper.com -# ||ertya.com^$popup (easylistchina+easylist.txt: 39506) -.ertya.com -# ||easysexdate.com^$popup (easylistchina+easylist.txt: 39502) -.easysexdate.com -# ||connexionsafe.com^$popup (easylistchina+easylist.txt: 39499) -.connexionsafe.com -# ||buy404s.com^$popup (easylistchina+easylist.txt: 39495) -.buy404s.com -# ||bitterstrawberry.com^$popup (easylistchina+easylist.txt: 39494) -.bitterstrawberry.com -# ||adtgs.com^$popup (easylistchina+easylist.txt: 39486) -.adtgs.com -# ||3questionsgetthegirl.com^$popup (easylistchina+easylist.txt: 39483) -.3questionsgetthegirl.com -# ||33traffic.com^$popup (easylistchina+easylist.txt: 39481) -.33traffic.com -# ||careerjournalonline.com^$popup (easylistchina+easylist.txt: 38441) -.careerjournalonline.com -# _popunder+$popup (easylistchina+easylist.txt: 17656) -/.*_popunder\+ -# ?zoneid=*_bannerid=$popup (easylistchina+easylist.txt: 17655) -/.*\?zoneid=.*_bannerid= -# ?iiadext=$popup (easylistchina+easylist.txt: 17654) -/.*\?iiadext= -# ?bannerid=*&punder=$popup (easylistchina+easylist.txt: 17653) -/.*\?bannerid=.*&punder= -# ?AdUrl=$popup (easylistchina+easylist.txt: 17652) -/.*\?AdUrl= -# =popunders&$popup (easylistchina+easylist.txt: 17651) -/.*=popunders& -# =popunder&$popup (easylistchina+easylist.txt: 17650) -/.*=popunder& -# ://adv.$popup (easylistchina+easylist.txt: 17649) -/.*://adv\. -adv.*. -# ://ads.$popup (easylistchina+easylist.txt: 17648) -/.*://ads\. -ads.*. -# /yesbaby.$popup (easylistchina+easylist.txt: 17647) -/(.*/)?yesbaby\. -yesbaby.*. -# /srvclk.php?$popup (easylistchina+easylist.txt: 17646) -/(.*/)?srvclk\.php\? -# /spopunder^$popup (easylistchina+easylist.txt: 17645) -/(.*/)?spopunder[^\w%.-] -# /showads/*$popup (easylistchina+easylist.txt: 17644) -/(.*/)?showads/.* -# /servlet/ajrotator/*$popup (easylistchina+easylist.txt: 17643) -/(.*/)?servlet/ajrotator/.* -# /rotator.php?$popup (easylistchina+easylist.txt: 17642) -/(.*/)?rotator\.php\? -# /Redirect.engine$popup (easylistchina+easylist.txt: 17640) -/(.*/)?Redirect\.engine -Redirect.engine*. -# /Redirect.eng?$popup (easylistchina+easylist.txt: 17639) -/(.*/)?Redirect\.eng\? -# /realmedia/ads/*$popup (easylistchina+easylist.txt: 17638) -/(.*/)?realmedia/ads/.* -# /punder.php$popup (easylistchina+easylist.txt: 17637) -/(.*/)?punder\.php -punder.php*. -# /promoredirect?*&campaign=*&zone=$popup (easylistchina+easylist.txt: 17636) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /popupads.$popup (easylistchina+easylist.txt: 17635) -/(.*/)?popupads\. -popupads.*. -# /popunder_$popup (easylistchina+easylist.txt: 17634) -/(.*/)?popunder_ -# /popunder.$popup (easylistchina+easylist.txt: 17633) -/(.*/)?popunder\. -popunder.*. -# /popout.$popup (easylistchina+easylist.txt: 17632) -/(.*/)?popout\. -popout.*. -# /lr.php?zoneid=$popup (easylistchina+easylist.txt: 17631) -/(.*/)?lr\.php\?zoneid= -# /bani/index.php?id=$popup (easylistchina+easylist.txt: 17629) -/(.*/)?bani/index\.php\?id= -# /afu.php?$popup (easylistchina+easylist.txt: 17628) -/(.*/)?afu\.php\? -# /advlink.$popup (easylistchina+easylist.txt: 17627) -/(.*/)?advlink\. -advlink.*. -# /adsynserveuserid=$popup (easylistchina+easylist.txt: 17626) -/(.*/)?adsynserveuserid= -# /adstream_sx.ads/*$popup (easylistchina+easylist.txt: 17625) -/(.*/)?adstream_sx\.ads/.* -# /adserver.$popup (easylistchina+easylist.txt: 17624) -/(.*/)?adserver\. -adserver.*. -# /adServe/sa?cid=$popup (easylistchina+easylist.txt: 17623) -/(.*/)?adServe/sa\?cid= -# /ads.htm$popup (easylistchina+easylist.txt: 17622) -/(.*/)?ads\.htm -ads.htm*. -# /AdHandler.aspx?$popup (easylistchina+easylist.txt: 17621) -/(.*/)?AdHandler\.aspx\? -# /adclick.$popup (easylistchina+easylist.txt: 17620) -/(.*/)?adclick\. -adclick.*. -# /ad_pop.php?$popup (easylistchina+easylist.txt: 17619) -/(.*/)?ad_pop\.php\? -# /ad132m/*$popup (easylistchina+easylist.txt: 17618) -/(.*/)?ad132m/.* -# /ad/window.php?$popup (easylistchina+easylist.txt: 17617) -/(.*/)?ad/window\.php\? -# /ad/display.php$popup (easylistchina+easylist.txt: 17616) -/(.*/)?ad/display\.php -# /ad.php|$popup (easylistchina+easylist.txt: 17615) -/(.*/)?ad\.php$ -ad.php -# /ad.php?zone$popup (easylistchina+easylist.txt: 17614) -/(.*/)?ad\.php\?zone -# /ad.php?tag=$popup (easylistchina+easylist.txt: 17613) -/(.*/)?ad\.php\?tag= -# /a/display.php?$popup (easylistchina+easylist.txt: 17612) -/(.*/)?a/display\.php\? -# /?reef=$popup (easylistchina+easylist.txt: 17611) -/(.*/)?\?reef= -# /?placement=*&redirect$popup (easylistchina+easylist.txt: 17610) -/(.*/)?\?placement=.*&redirect -# .engine?PlacementId=$popup (easylistchina+easylist.txt: 17609) -/.*\.engine\?PlacementId= -# .com/ads?$popup (easylistchina+easylist.txt: 17608) -/.*\.com/ads\? -.*.com/ads\? -# .com/?adv=$popup (easylistchina+easylist.txt: 17607) -/.*\.com/\?adv= -.*.com/\?adv= -# .co/ads/$popup (easylistchina+easylist.txt: 17606) -/.*\.co/ads/ -.*.co/ads/ -# -ads-campaign/$popup (easylistchina+easylist.txt: 17605) -/.*-ads-campaign/ -.*-ads-campaign -# &program=revshare&$popup (easylistchina+easylist.txt: 17604) -/.*&program=revshare& -# &popunder=$popup (easylistchina+easylist.txt: 17603) -/.*&popunder= -# ||zhubajie.com/?fromcode=$popup (easylistchina+easylist.txt: 1086) +# ||zhubajie.com/?fromcode=$popup (easylistchina.txt: 1110) .zhubajie.com/\?fromcode= -# ||yy18.info/yyrethanks18.$popup (easylistchina+easylist.txt: 1085) +# ||yy18.info/yyrethanks18.$popup (easylistchina.txt: 1109) .yy18.info/yyrethanks18\. -# ||uc8.cc/award/$popup (easylistchina+easylist.txt: 1081) -.uc8.cc/award/ -# ||t-movies.com.tw/pop.asp$popup (easylistchina+easylist.txt: 1078) +# ||t-movies.com.tw/pop.asp$popup (easylistchina.txt: 1102) .t-movies.com.tw/pop\.asp -# ||sohu.com/i/?pvid=$popup (easylistchina+easylist.txt: 1076) +# ||sohu.com/i/?pvid=$popup (easylistchina.txt: 1100) .sohu.com/i/\?pvid= -# ||smartor.org/iclk/?zoneid=$popup (easylistchina+easylist.txt: 1075) +# ||smartor.org/iclk/?zoneid=$popup (easylistchina.txt: 1099) .smartor.org/iclk/\?zoneid= -# ||qidian.com/showavd.$popup (easylistchina+easylist.txt: 1074) +# ||qidian.com/showavd.$popup (easylistchina.txt: 1098) .qidian.com/showavd\. -# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina+easylist.txt: 1070) +# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina.txt: 1094) .kuai.xunlei.com/do_e_mu\?data= -# ||jjwxc.net/jjad*.html$popup (easylistchina+easylist.txt: 1068) +# ||jjwxc.net/jjad*.html$popup (easylistchina.txt: 1092) .jjwxc.net/jjad.*\.html -# ||iqiyi.com/track$popup (easylistchina+easylist.txt: 1066) +# ||iqiyi.com/track$popup (easylistchina.txt: 1090) .iqiyi.com/track -# ||ihualun.com^$popup (easylistchina+easylist.txt: 1065) +# ||ihualun.com^$popup (easylistchina.txt: 1089) .ihualun.com -# ||hinet.net/product/promotion/$popup (easylistchina+easylist.txt: 1064) +# ||hinet.net/product/promotion/$popup (easylistchina.txt: 1088) .hinet.net/product/promotion/ -# ||greenet.cn^*_popu_$popup (easylistchina+easylist.txt: 1062) +# ||greenet.cn^*_popu_$popup (easylistchina.txt: 1087) .greenet.cn/.*_popu_ -# ||c.admaster.com.cn^$popup (easylistchina+easylist.txt: 1054) +# ||gamer.com.tw/adcounter.$popup (easylistchina.txt: 1081) +.gamer.com.tw/adcounter\. +# ||c.admaster.com.cn^$popup (easylistchina.txt: 1079) .c.admaster.com.cn -# ||ark.letv.com/t?$popup (easylistchina+easylist.txt: 1053) +# ||baidu.com/baidu.php?url=$popup (easylistchina.txt: 1078) +.baidu.com/baidu\.php\?url= +# ||baidu.com/adrc.$popup (easylistchina.txt: 1077) +.baidu.com/adrc\. +# ||ark.letv.com/t?$popup (easylistchina.txt: 1076) .ark.letv.com/t\? -# ||aiwanma99.com^$popup (easylistchina+easylist.txt: 1052) +# ||aiwanma99.com^$popup (easylistchina.txt: 1075) .aiwanma99.com -# ||ad.189so.cn^$popup (easylistchina+easylist.txt: 1051) +# ||ad.189so.cn^$popup (easylistchina.txt: 1074) .ad.189so.cn -# ||9100300.com^$popup (easylistchina+easylist.txt: 1049) +# ||9100300.com^$popup (easylistchina.txt: 1072) .9100300.com -# ||133gp.com^$popup (easylistchina+easylist.txt: 1047) +# ||133gp.com^$popup (easylistchina.txt: 1070) .133gp.com -# /portalwlanad/pages/*$popup (easylistchina+easylist.txt: 1041) +# /portalwlanad/pages/*$popup (easylistchina.txt: 1064) /(.*/)?portalwlanad/pages/.* -# ||xltraff.net^$~popup,popup (advblock.txt: 3225) -.xltraff.net -# ||wts-rotator.com^$~popup,popup (advblock.txt: 3212) -.wts-rotator.com -# ||trafidet.ru^$~popup,popup (advblock.txt: 3058) -.trafidet.ru -# ||mytraff.net^$~popup,popup (advblock.txt: 2684) -.mytraff.net -# ||mediaunder.us^$~popup,popup (advblock.txt: 2615) -.mediaunder.us -# ||maxtraff.com^$~popup,popup (advblock.txt: 2580) -.maxtraff.com -# ||gokliks.ru^$~popup,popup (advblock.txt: 2321) -.gokliks.ru -# ||activepr.ru^$~popup,popup (advblock.txt: 1895) -.activepr.ru -# ||4allclick.ru^$~popup,popup (advblock.txt: 1877) -.4allclick.ru -# /in.htm?wm=$popup (advblock.txt: 470) -/(.*/)?in\.htm\?wm= -# /code/click.php?id=$popup (advblock.txt: 427) -/(.*/)?code/click\.php\?id= -# ||zarabotat-v-inete.com^$~popup,popup (advblock.txt: 206) -.zarabotat-v-inete.com -# ||vkonagt.com^$~popup,popup (advblock.txt: 205) -.vkonagt.com -# ||otvetes.com^$~popup,popup (advblock.txt: 204) -.otvetes.com -# ||help2play.com^$~popup,popup (advblock.txt: 203) -.help2play.com -# ||add5.ru^$~popup,popup (advblock.txt: 202) -.add5.ru -# ||yapfiles.ru^*/rating_by_pop/$popup (advblock.txt: 198) -.yapfiles.ru/.*/rating_by_pop/ -# ||x-uboino.ru^$popup (advblock.txt: 197) -.x-uboino.ru -# ||x-uboino.net^$popup (advblock.txt: 196) -.x-uboino.net -# ||worldoftanks.eu/play/$popup (advblock.txt: 195) -.worldoftanks.eu/play/ -# ||winafterwin.com^$popup (advblock.txt: 194) -.winafterwin.com -# ||webarbitrage.ru/?$popup (advblock.txt: 193) -.webarbitrage.ru/\? -# ||warthunder.ru^*/register-for-free?r=$popup (advblock.txt: 192) -.warthunder.ru/.*/register-for-free\?r= -# ||wardogs.ru/lp?ref=$popup (advblock.txt: 191) -.wardogs.ru/lp\?ref= -# ||w-raza.com^$popup (advblock.txt: 190) -.w-raza.com -# ||vulkan.site^*^goto=$popup (advblock.txt: 189) -.vulkan.site/.*[^\w%.-]goto= -# ||velcome-club.com^$popup (advblock.txt: 187) -.velcome-club.com -# ||vashi-dohody.com^$~popup,popup (advblock.txt: 186) -.vashi-dohody.com -# ||travian.com.ua/landingpage/$popup (advblock.txt: 185) -.travian.com.ua/landingpage/ -# ||tankionline.com/ru/play$popup (advblock.txt: 183) -.tankionline.com/ru/play -# ||survey.gemius.com.ua^$popup (advblock.txt: 182) -.survey.gemius.com.ua -# ||snailz.ru/promo/?$popup (advblock.txt: 181) -.snailz.ru/promo/\? -# ||slivz.com^$popup (advblock.txt: 180) -.slivz.com -# ||skidka50.com.ua^$popup (advblock.txt: 179) -.skidka50.com.ua -# ||sex-mambo.net^$popup (advblock.txt: 178) -.sex-mambo.net -# ||sergey-mavrodi.com^$popup (advblock.txt: 177) -.sergey-mavrodi.com -# ||sbornix.ru^$popup (advblock.txt: 176) -.sbornix.ru -# ||say.tv/?actionpay=$popup (advblock.txt: 175) -.say.tv/\?actionpay= -# ||runetki.com/random/$popup (advblock.txt: 172) -.runetki.com/random/ -# ||relaxmybody.ru^$popup (advblock.txt: 171) -.relaxmybody.ru -# ||promo.advertlock.ru^$popup (advblock.txt: 170) -.promo.advertlock.ru -# ||power-braselet.ru^$popup (advblock.txt: 169) -.power-braselet.ru -# ||pop.sn00.net^$popup (advblock.txt: 168) -.pop.sn00.net -# ||pointblank.ru/?pid=$popup (advblock.txt: 167) -.pointblank.ru/\?pid= -# ||pin2me.com^$popup (advblock.txt: 166) -.pin2me.com -# ||pi-c.ru/go.php?id=*&rref=$popup (advblock.txt: 165) -.pi-c.ru/go\.php\?id=.*&rref= -# ||partypoker.com^*/videopop/$popup (advblock.txt: 164) -.partypoker.com/.*/videopop/ -# ||panel.gemius.com.ua^$popup (advblock.txt: 163) -.panel.gemius.com.ua -# ||mycultures.ru^$popup (advblock.txt: 162) -.mycultures.ru -# ||my-eromir.net^$popup (advblock.txt: 161) -.my-eromir.net -# ||moi-goroskop.com^$popup (advblock.txt: 160) -.moi-goroskop.com -# ||modnakasta.ua^$popup (advblock.txt: 159) -.modnakasta.ua -# ||mobruner.com^$~popup,popup (advblock.txt: 158) -.mobruner.com -# ||megogo.net^*&utm_$popup (advblock.txt: 157) -.megogo.net/.*&utm_ -# ||luckiestclick.com^$popup (advblock.txt: 156) -.luckiestclick.com -# ||lovecity3d.com/img/promo.$popup (advblock.txt: 155) -.lovecity3d.com/img/promo\. -# ||loadru.ru/18/$popup (advblock.txt: 154) -.loadru.ru/18/ -# ||link2you.ru^$popup (advblock.txt: 153) -.link2you.ru -# ||legendworld.ru/ref/$popup (advblock.txt: 152) -.legendworld.ru/ref/ -# ||kupitraf.com^$popup (advblock.txt: 151) -.kupitraf.com -# ||inet-dengi.net/?$popup (advblock.txt: 150) -.inet-dengi.net/\? -# ||goodsbrowser.com^$popup (advblock.txt: 149) -.goodsbrowser.com -# ||gamebomb.ru/gaming.$popup (advblock.txt: 147) -.gamebomb.ru/gaming\. -# ||funtest-ru.com^$popup (advblock.txt: 146) -.funtest-ru.com -# ||fotostrana.ru/start/*/?$popup (advblock.txt: 145) -.fotostrana.ru/start/.*/\? -# ||fileplaneta.com/?op=redirect_to&url=$popup (advblock.txt: 144) -.fileplaneta.com/\?op=redirect_to&url= -# ||fastpic.ru/?$popup (advblock.txt: 143) -.fastpic.ru/\? -# ||etonovosti.net^$popup (advblock.txt: 142) -.etonovosti.net -# ||ero-spinula.ru^$popup (advblock.txt: 141) -.ero-spinula.ru -# ||electbloger.com^$popup (advblock.txt: 139) -.electbloger.com -# ||drtuber.com/embed/redirect?$popup (advblock.txt: 138) -.drtuber.com/embed/redirect\? -# ||discovermore.ru/restorepassword$~popup,popup (advblock.txt: 137) -.discovermore.ru/restorepassword -# ||devochki.cz^$popup (advblock.txt: 136) -.devochki.cz -# ||darkorbit.bigpoint.com/?aid=$popup (advblock.txt: 135) -.darkorbit.bigpoint.com/\?aid= -# ||clubrelaxxxx.com^$popup (advblock.txt: 132) -.clubrelaxxxx.com -# ||club-sale.ru^$popup (advblock.txt: 131) -.club-sale.ru -# ||chaplingames.ru^$popup (advblock.txt: 129) -.chaplingames.ru -# ||cdnet.tv/lockadb.$popup (advblock.txt: 128) -.cdnet.tv/lockadb\. -# ||casino-x.com/?partner=$popup (advblock.txt: 127) -.casino-x.com/\?partner= -# ||bonsport.ru^$popup (advblock.txt: 125) -.bonsport.ru -# ||blinkogold.ru^$popup (advblock.txt: 124) -.blinkogold.ru -# ||audance.ru*/promo/$popup (advblock.txt: 123) -.audance.ru*./(.*/)?promo/ -# ||astaninki2.com^$popup (advblock.txt: 122) -.astaninki2.com -# ||alvegia.ru/register_$popup (advblock.txt: 121) -.alvegia.ru/register_ -# ||9donline.ru/welcome/?mita=$popup (advblock.txt: 112) -.9donline.ru/welcome/\?mita= -# /blog_strijenko/*$popup (advblock.txt: 110) -/(.*/)?blog_strijenko/.* -# ||yandes.biz/in.cgi?$popup (advblock.txt: 108) -.yandes.biz/in\.cgi\? -# ||war.noc.su/?$popup (advblock.txt: 107) -.war.noc.su/\? -# ||wap-jump.com/jump_redirect?id=$popup (advblock.txt: 106) -.wap-jump.com/jump_redirect\?id= -# ||track.adwad.ru^$popup (advblock.txt: 105) -.track.adwad.ru -# ||terraclicks.com^$popup (advblock.txt: 104) -.terraclicks.com -# ||teamearn.ru/open/$popup (advblock.txt: 103) -.teamearn.ru/open/ -# ||ruclicks.com/in/$popup (advblock.txt: 101) -.ruclicks.com/in/ -# ||redirecturl.ru^$popup (advblock.txt: 100) -.redirecturl.ru -# ||re-directme.com^$popup (advblock.txt: 99) -.re-directme.com -# ||rambler.pw^$popup (advblock.txt: 98) -.rambler.pw -# ||playermailer.net^$popup (advblock.txt: 97) -.playermailer.net -# ||peel-down.net/search.php?$popup (advblock.txt: 96) -.peel-down.net/search\.php\? -# ||napravil.ru^$popup (advblock.txt: 95) -.napravil.ru -# ||mxttrf.com/ads?$popup (advblock.txt: 94) -.mxttrf.com/ads\? -# ||mi3u.info^$~popup,popup (advblock.txt: 93) -.mi3u.info -# ||mesvip.com^$popup (advblock.txt: 92) -.mesvip.com -# ||luxup.ru^$popup (advblock.txt: 91) -.luxup.ru -# ||luckydir.ru^$~popup,popup (advblock.txt: 90) -.luckydir.ru -# ||lightcoffee.ru^$popup (advblock.txt: 89) -.lightcoffee.ru -# ||kan3.info^$~popup,popup (advblock.txt: 88) -.kan3.info -# ||ipchecker.ru/?id=$popup (advblock.txt: 87) -.ipchecker.ru/\?id= -# ||igrohit.net/goto.$popup (advblock.txt: 86) -.igrohit.net/goto\. -# ||hghit.com/direct?$popup (advblock.txt: 85) -.hghit.com/direct\? -# ||hapend.biz/thread$popup (advblock.txt: 84) -.hapend.biz/thread -# ||gotostat.ru^$popup (advblock.txt: 83) -.gotostat.ru -# ||gobylink.info^$popup (advblock.txt: 82) -.gobylink.info -# ||go.trafking.ru^$popup (advblock.txt: 81) -.go.trafking.ru -# ||ertovy.ru^$popup (advblock.txt: 80) -.ertovy.ru -# ||eknq.ru^$popup (advblock.txt: 79) -.eknq.ru -# ||earnshill.com/images/sp/$popup (advblock.txt: 78) -.earnshill.com/images/sp/ -# ||crusewind.net/click/direct.php?$popup (advblock.txt: 77) -.crusewind.net/click/direct\.php\? -# ||clickson.net^*/pp/$popup (advblock.txt: 75) -.clickson.net/.*/pp/ -# ||clickov.com^$popup (advblock.txt: 74) -.clickov.com -# ||clickganic.com^$popup (advblock.txt: 73) -.clickganic.com -# ||bubblesmedia.ru/gocu/$popup (advblock.txt: 71) -.bubblesmedia.ru/gocu/ -# ||apb-re.ru/?pid=$popup (advblock.txt: 70) -.apb-re.ru/\?pid= -# ||am15.net^$popup (advblock.txt: 69) -.am15.net -# ||aftevap.ru^$popup (advblock.txt: 68) -.aftevap.ru -# ||adspynet.com/reference?pid=$popup (advblock.txt: 67) -.adspynet.com/reference\?pid= -# ||adservone.com^$popup (advblock.txt: 66) -.adservone.com -# .tnt-online.ru/?utm_$popup (advblock.txt: 63) -/.*\.tnt-online\.ru/\?utm_ -.*.tnt-online.ru/\?utm_ -# ||com/on.php?id=$popup (advblock.txt: 61) -# ||com/go.php?tid=*&hid=$popup (advblock.txt: 60) -# ^clickunder^$~popup,popup (advblock.txt: 59) -/(.*[^\w%.-])?clickunder[^\w%.-] -# /wtsin.cgi?id=$~popup,popup (advblock.txt: 58) -/(.*/)?wtsin\.cgi\?id= -# /webunder.$~popup,popup (advblock.txt: 57) -/(.*/)?webunder\. -webunder.*. -# /vkshpion/?page=$popup (advblock.txt: 56) -/(.*/)?vkshpion/\?page= -# /utarget.$~popup,popup (advblock.txt: 55) -/(.*/)?utarget\. -utarget.*. -# /popua/*$popup (advblock.txt: 54) -/(.*/)?popua/.* -# /popads/*$popup (advblock.txt: 53) -/(.*/)?popads/.* -# /popads.$popup (advblock.txt: 52) -/(.*/)?popads\. -popads.*. -# /JumpClick?i=BannerKey_$popup (advblock.txt: 51) -/(.*/)?JumpClick\?i=BannerKey_ -# /click/body.php?id=*&hash=$~popup,popup (advblock.txt: 50) -/(.*/)?click/body\.php\?id=.*&hash= -# /adv_clk_redirect.php?$popup (advblock.txt: 49) -/(.*/)?adv_clk_redirect\.php\? -# /ad/popup/*$popup (advblock.txt: 48) -/(.*/)?ad/popup/.* -# //uno.*/?t=$popup,script (advblock.txt: 47) -uno.*./(.*/)?\?t= -# //kpup.*/?sid=$popup (advblock.txt: 46) -kpup.*./(.*/)?\?sid= -# .webunder.$~popup,popup (advblock.txt: 45) -/.*\.webunder\. -.*.webunder.*. -# .clickunder.$~popup,popup (advblock.txt: 44) -/.*\.clickunder\. -.*.clickunder.*. -# &utm_campaign=CU_ru$popup (advblock.txt: 43) -/.*&utm_campaign=CU_ru -# &temz=clikundr&$~popup,popup (advblock.txt: 42) -/.*&temz=clikundr& -# ||getitbit.net/ads/$popup (advblock.txt: 34) -.getitbit.net/ads/ -# ||com/?id=*&t=direct^$popup (advblock.txt: 31) -# .lostfilm.tv^*^bid=$popup (advblock.txt: 28) -/.*\.lostfilm\.tv[^\w%.-].*[^\w%.-]bid= -.*.lostfilm.tv/.*[^\w%.-]bid= -# ||ymages.org/prepop.php$popup (easylist.txt: 36609) -.ymages.org/prepop\.php -# ||r18.com/*utm_source$popup (easylist.txt: 36606) -.r18.com/.*utm_source -# ||publicagent.com/bigzpup.php$popup (easylist.txt: 36605) -.publicagent.com/bigzpup\.php -# ||pornuppz.info/out.php$popup (easylist.txt: 36604) -.pornuppz.info/out\.php -# ||pop.mrstiff.com^$popup (easylist.txt: 36601) -.pop.mrstiff.com -# ||pop.fapxl.com^$popup (easylist.txt: 36600) -.pop.fapxl.com -# ||pinporn.com/popunder/$popup (easylist.txt: 36599) -.pinporn.com/popunder/ -# ||namethatporn.com/ntpoo$popup (easylist.txt: 36598) -.namethatporn.com/ntpoo -# ||movies.askjolene.com/c64?clickid=$popup (easylist.txt: 36597) -.movies.askjolene.com/c64\?clickid= -# ||imagebam.com/redirect_awe.php$popup (easylist.txt: 36596) -.imagebam.com/redirect_awe\.php -# ||heganteens.com/exo.php$popup (easylist.txt: 36595) -.heganteens.com/exo\.php -# ||hegansex.com/exo.php$popup (easylist.txt: 36594) -.hegansex.com/exo\.php -# ||h2porn.com/pu.php$popup (easylist.txt: 36593) -.h2porn.com/pu\.php -# ||fantastube.com/track.php$popup (easylist.txt: 36589) -.fantastube.com/track\.php -# ||fantasti.cc^*?ad=$popup (easylist.txt: 36588) -.fantasti.cc/.*\?ad= -# ||eporner.com/pop.php$popup (easylist.txt: 36587) -.eporner.com/pop\.php -# ||ad.userporn.com^$popup (easylist.txt: 36586) -.ad.userporn.com -# ||ziddu.com/onclickpop.php$popup (easylist.txt: 35733) -.ziddu.com/onclickpop\.php -# ||youwatch.org^*^crr^$popup (easylist.txt: 35731) -.youwatch.org/.*[^\w%.-]crr[^\w%.-] -# ||youwatch.org^*^ban^$popup (easylist.txt: 35730) -.youwatch.org/.*[^\w%.-]ban[^\w%.-] -# ||youwatch.org/vids*.html$popup (easylist.txt: 35729) -.youwatch.org/vids.*\.html -# ||yasni.ca/ad_pop.php$popup (easylist.txt: 35728) -.yasni.ca/ad_pop\.php -# ||whies.info^$popup (easylist.txt: 35727) -.whies.info -# ||watch-movies.net.in/popup.php$popup (easylist.txt: 35724) -.watch-movies.net.in/popup\.php -# ||vodu.ch/play_video.php$popup (easylist.txt: 35723) -.vodu.ch/play_video\.php -# ||virtualtourist.com/commerce/popunder/$popup (easylist.txt: 35722) -.virtualtourist.com/commerce/popunder/ -# ||vidspot.net^*http$popup (easylist.txt: 35721) -.vidspot.net/.*http -# ||vidhog.com/ilivid-redirect.php$popup (easylist.txt: 35720) -.vidhog.com/ilivid-redirect\.php -# ||tripadvisor.*/SimilarHotelsPopunder?$popup (easylist.txt: 35718) -.tripadvisor.*./(.*/)?SimilarHotelsPopunder\? -# ||tripadvisor.*/rulebasedpopunder?$popup (easylist.txt: 35717) -.tripadvisor.*./(.*/)?rulebasedpopunder\? -# ||trans.youwatch.org^$popup (easylist.txt: 35716) -.trans.youwatch.org -# ||tozer.youwatch.org^$popup (easylist.txt: 35715) -.tozer.youwatch.org -# ||torrentz.eu/p/$popup (easylist.txt: 35714) -.torrentz.eu/p/ -# ||torrentz.*/wgmpop/$popup (easylist.txt: 35713) -.torrentz.*./(.*/)?wgmpop/ -# ||torrentz.*/mgidpop/$popup (easylist.txt: 35712) -.torrentz.*./(.*/)?mgidpop/ -# ||tny.cz/red/first.php$popup (easylist.txt: 35710) -.tny.cz/red/first\.php -# ||titanshare.to/download-extern.php?type=*&n=$popup (easylist.txt: 35709) -.titanshare.to/download-extern\.php\?type=.*&n= -# ||thevideo.me/script/$popup (easylist.txt: 35707) -.thevideo.me/script/ -# ||thesource.com/magicshave/$popup (easylist.txt: 35706) -.thesource.com/magicshave/ -# ||subs4free.com/_pop_link.php$popup (easylist.txt: 35704) -.subs4free.com/_pop_link\.php -# ||streamcloud.eu/deliver.php$popup (easylist.txt: 35702) -.streamcloud.eu/deliver\.php -# ||sponsorselect.com/Common/LandingPage.aspx?eu=$popup (easylist.txt: 35701) -.sponsorselect.com/Common/LandingPage\.aspx\?eu= -# ||songspk.cc/pop*.html$popup (easylist.txt: 35699) -.songspk.cc/pop.*\.html -# ||rediff.com/uim/ads/$popup (easylist.txt: 35694) -.rediff.com/uim/ads/ -# ||pop.billionuploads.com^$popup (easylist.txt: 35692) -.pop.billionuploads.com -# ||playhd.eu/test$popup (easylist.txt: 35691) -.playhd.eu/test -# ||plarium.com/play/*adCampaign=$popup (easylist.txt: 35690) -.plarium.com/play/.*adCampaign= -# ||park.above.com^$popup (easylist.txt: 35688) -.park.above.com -# ||oddschecker.com/clickout.htm?type=takeover-$popup (easylist.txt: 35686) -.oddschecker.com/clickout\.htm\?type=takeover- -# ||nosteam.ro/pma/$popup (easylist.txt: 35685) -.nosteam.ro/pma/ -# ||multiupload.nl/popunder/$popup (easylist.txt: 35682) -.multiupload.nl/popunder/ -# ||miniurls.co^*?ref=$popup (easylist.txt: 35681) -.miniurls.co/.*\?ref= -# ||military.com/data/popup/new_education_popunder.htm$popup (easylist.txt: 35680) -.military.com/data/popup/new_education_popunder\.htm -# ||linkbucks.com^*/?*=$popup (easylist.txt: 35679) -.linkbucks.com/.*/\?.*= -# ||itv.com/itv/adclick/$popup (easylist.txt: 35673) -.itv.com/itv/adclick/ -# ||intradayfun.com/news_intradayfun.com.html$popup (easylist.txt: 35672) -.intradayfun.com/news_intradayfun\.com\.html -# ||imageshack.us/newuploader_ad.php$popup (easylist.txt: 35671) -.imageshack.us/newuploader_ad\.php -# ||imageshack.us/ads/$popup (easylist.txt: 35670) -.imageshack.us/ads/ -# ||ifly.com/trip-plan/ifly-trip?*&ad=$popup (easylist.txt: 35669) -.ifly.com/trip-plan/ifly-trip\?.*&ad= -# ||houndmirror.com/out.php$popup (easylist.txt: 35667) -.houndmirror.com/out\.php -# ||homets.info/queen_file?$popup (easylist.txt: 35666) -.homets.info/queen_file\? -# ||homerun.re/adServe/$popup (easylist.txt: 35665) -.homerun.re/adServe/ -# ||gamezadvisor.com/popup.php$popup (easylist.txt: 35660) -.gamezadvisor.com/popup\.php -# ||fullonsms.com/sid.html$popup (easylist.txt: 35659) -.fullonsms.com/sid\.html -# ||fullonsms.com/quikrad.html$popup (easylist.txt: 35658) -.fullonsms.com/quikrad\.html -# ||fullonsms.com/quikr.html$popup (easylist.txt: 35657) -.fullonsms.com/quikr\.html -# ||fullonsms.com/mixpop.html$popup (easylist.txt: 35656) -.fullonsms.com/mixpop\.html -# ||fullonsms.com/blank.php$popup (easylist.txt: 35655) -.fullonsms.com/blank\.php -# ||freean.us^*?ref=$popup (easylist.txt: 35654) -.freean.us/.*\?ref= -# ||free-filehost.net/pop/$popup (easylist.txt: 35652) -.free-filehost.net/pop/ -# ||flashx.tv/frame/$popup (easylist.txt: 35651) -.flashx.tv/frame/ -# ||flashx.tv/ads/$popup (easylist.txt: 35650) -.flashx.tv/ads/ -# ||firedrive.com/tools/$popup (easylist.txt: 35649) -.firedrive.com/tools/ -# ||firedrive.com/appresources/$popup (easylist.txt: 35648) -.firedrive.com/appresources/ -# ||filmon.com^*&adn=$popup (easylist.txt: 35645) -.filmon.com/.*&adn= -# ||filepost.com/default_popup.html$popup (easylist.txt: 35644) -.filepost.com/default_popup\.html -# ||f-picture.net/Misc/JumpClick?$popup (easylist.txt: 35642) -.f-picture.net/Misc/JumpClick\? -# ||edomz.com/re.php?mid=$popup (easylist.txt: 35640) -.edomz.com/re\.php\?mid= -# ||eafyfsuh.net^*/?name=$popup (easylist.txt: 35639) -.eafyfsuh.net/.*/\?name= -# ||deb.gs^*?ref=$popup (easylist.txt: 35638) -.deb.gs/.*\?ref= -# ||damoh.muzu.tv^$popup (easylist.txt: 35637) -.damoh.muzu.tv -# ||conservativepost.com/pu/$popup (easylist.txt: 35636) -.conservativepost.com/pu/ -# ||comicbookmovie.com/plugins/ads/$popup (easylist.txt: 35635) -.comicbookmovie.com/plugins/ads/ -# ||cloudzilla.to/cam/wpop.php$popup (easylist.txt: 35634) -.cloudzilla.to/cam/wpop\.php -# ||channel4.com/ad/$popup (easylist.txt: 35632) -.channel4.com/ad/ -# ||casino-x.com^*&promo$popup (easylist.txt: 35631) -.casino-x.com/.*&promo -# ||avalanchers.com/out/$popup (easylist.txt: 35627) -.avalanchers.com/out/ -# ||allmyvideos.net^*?p=$popup (easylist.txt: 35626) -.allmyvideos.net/.*\?p= -# ||adyou.me/bug/adcash$popup (easylist.txt: 35624) -.adyou.me/bug/adcash -# ||adx.kat.ph^$popup (easylist.txt: 35623) -.adx.kat.ph -# ||4fuckr.com/api.php$popup (easylist.txt: 35621) -.4fuckr.com/api\.php -# ||104.239.139.5/display/$popup (easylist.txt: 35620) -.104.239.139.5/display/ -# ||wantlive.com/landing/$popup (easylist.txt: 31402) -.wantlive.com/landing/ -# ||videobox.com/tour/$popup (easylist.txt: 31397) -.videobox.com/tour/ -# ||videobox.com/?tid=$popup (easylist.txt: 31396) -.videobox.com/\?tid= -# ||upforit.com/ext.php$popup (easylist.txt: 31395) -.upforit.com/ext\.php -# ||topbucks.com/popunder/$popup (easylist.txt: 31391) -.topbucks.com/popunder/ -# ||textad.sexsearch.com^$popup (easylist.txt: 31390) -.textad.sexsearch.com -# ||streamate.com/landing/$popup (easylist.txt: 31388) -.streamate.com/landing/ -# ||sexier.com^*_popunder&$popup (easylist.txt: 31385) -.sexier.com/.*_popunder& -# ||sex.com/popunder/$popup (easylist.txt: 31383) -.sex.com/popunder/ -# ||seeme.com^*?aid=*&art=$popup (easylist.txt: 31382) -.seeme.com/.*\?aid=.*&art= -# ||seekbang.com/cs/rotator/$popup (easylist.txt: 31381) -.seekbang.com/cs/rotator/ -# ||redtube.com/bid/$popup (easylist.txt: 31379) -.redtube.com/bid/ -# ||pornslash.com/cbp.php$popup (easylist.txt: 31376) -.pornslash.com/cbp\.php -# ||pornoh.info^$popup (easylist.txt: 31375) -.pornoh.info -# ||porno-onlain.info/top.php$popup (easylist.txt: 31374) -.porno-onlain.info/top\.php -# ||pornhub.com^*&utm_campaign=*-pop|$popup (easylist.txt: 31372) -.pornhub.com/.*&utm_campaign=.*-pop$ -# ||pomnach.ru^$popup (easylist.txt: 31371) -.pomnach.ru -# ||myfreecams.com/?co_id=$popup (easylist.txt: 31369) -.myfreecams.com/\?co_id= -# ||meetlocals.com^*popunder$popup (easylist.txt: 31366) -.meetlocals.com/.*popunder -# ||livecams.com^$popup (easylist.txt: 31362) -.livecams.com -# ||judgeporn.com/video_pop.php?$popup (easylist.txt: 31359) -.judgeporn.com/video_pop\.php\? -# ||join.whitegfs.com^$popup (easylist.txt: 31358) -.join.whitegfs.com -# ||icgirls.com^$popup (easylist.txt: 31352) -.icgirls.com -# ||hazeher.com/t1/pps$popup (easylist.txt: 31350) -.hazeher.com/t1/pps -# ||get-a-fuck-tonight.com^$popup (easylist.txt: 31349) -.get-a-fuck-tonight.com -# ||fucktapes.org/fucktube.htm$popup (easylist.txt: 31348) -.fucktapes.org/fucktube\.htm -# ||fuckshow.org^*&adr=$popup (easylist.txt: 31347) -.fuckshow.org/.*&adr= -# ||fuckbookhookups.com/go/$popup (easylist.txt: 31345) -.fuckbookhookups.com/go/ -# ||fling.com/enter.php?$popup (easylist.txt: 31343) -.fling.com/enter\.php\? -# ||fantasti.cc/ajax/gw.php?$popup (easylist.txt: 31341) -.fantasti.cc/ajax/gw\.php\? -# ||extremefuse.com/out.php?$popup (easylist.txt: 31340) -.extremefuse.com/out\.php\? -# ||ext.affaire.com^$popup (easylist.txt: 31339) -.ext.affaire.com -# ||epornerlive.com/index.php?*=punder$popup (easylist.txt: 31337) -.epornerlive.com/index\.php\?.*=punder -# ||chaturbate.com/sitestats/openwindow/$popup (easylist.txt: 31334) -.chaturbate.com/sitestats/openwindow/ -# ||chaturbate.com/*/?join_overlay=$popup (easylist.txt: 31333) -.chaturbate.com/.*/\?join_overlay= -# ||candidvoyeurism.com/ads/$popup (easylist.txt: 31332) -.candidvoyeurism.com/ads/ -# ||camcity.com/rtr.php?aid=$popup (easylist.txt: 31331) -.camcity.com/rtr\.php\?aid= -# ||cam4.com/?$popup (easylist.txt: 31330) -.cam4.com/\? -# ||21sextury.com^$popup (easylist.txt: 31321) -.21sextury.com -# ||wptpoker.com^$popup (easylist.txt: 30892) -.wptpoker.com -# ||weeklyprizewinner.com-net.info^$popup (easylist.txt: 30888) -.weeklyprizewinner.com-net.info -# ||usenet.nl^$popup (easylist.txt: 30884) -.usenet.nl -# ||urlcash.net/random*.php$popup (easylist.txt: 30882) -.urlcash.net/random.*\.php -# ||uploaded.net/ref/$popup (easylist.txt: 30881) -.uploaded.net/ref/ -# ||upbcd.info/vuze/$popup (easylist.txt: 30880) -.upbcd.info/vuze/ -# ||ul.to/ref/$popup (easylist.txt: 30879) -.ul.to/ref/ -# ||theseforums.com^*/?ref=$popup (easylist.txt: 30871) -.theseforums.com/.*/\?ref= -# ||stargames.com/bridge.asp?idr=$popup (easylist.txt: 30867) -.stargames.com/bridge\.asp\?idr= -# ||softingo.com/clp/$popup (easylist.txt: 30865) -.softingo.com/clp/ -# ||settlecruise.org^$popup (easylist.txt: 30863) -.settlecruise.org -# ||red-tube.com/popunder/$popup (easylist.txt: 30857) -.red-tube.com/popunder/ -# ||rackcorp.com^$popup (easylist.txt: 30855) -.rackcorp.com -# ||pub.ezanga.com/rv2.php?$popup (easylist.txt: 30854) -.pub.ezanga.com/rv2\.php\? -# ||priceinfo.comuv.com^$popup (easylist.txt: 30851) -.priceinfo.comuv.com -# ||platinumdown.com^$popup (easylist.txt: 30849) -.platinumdown.com -# ||planet49.com/cgi-bin/wingame.pl?$popup (easylist.txt: 30848) -.planet49.com/cgi-bin/wingame\.pl\? -# ||noowmedia.com^$popup (easylist.txt: 30843) -.noowmedia.com -# ||mypromocenter.com^$popup (easylist.txt: 30842) -.mypromocenter.com -# ||makemoneyonline.2yu.in^$popup (easylist.txt: 30834) -.makemoneyonline.2yu.in -# ||lumosity.com/landing_pages/$popup (easylist.txt: 30832) -.lumosity.com/landing_pages/ -# ||lovepoker.de^*/?pid=$popup (easylist.txt: 30826) -.lovepoker.de/.*/\?pid= -# ||liutilities.com^*/affiliate/$popup (easylist.txt: 30824) -.liutilities.com/.*/affiliate/ -# ||hyperlinksecure.com/go/$popup (easylist.txt: 30821) -.hyperlinksecure.com/go/ -# ||hyperlinksecure.com/back?token=$popup (easylist.txt: 30820) -.hyperlinksecure.com/back\?token= -# ||hdvidcodecs.com^$popup (easylist.txt: 30815) -.hdvidcodecs.com -# ||hdvid-codec.com^$popup (easylist.txt: 30814) -.hdvid-codec.com -# ||fwmrm.net/ad/$popup (easylist.txt: 30811) -.fwmrm.net/ad/ -# ||fsoft4down.com^$popup (easylist.txt: 30808) -.fsoft4down.com -# ||free-rewards.com-s.tv^$popup (easylist.txt: 30807) -.free-rewards.com-s.tv -# ||flashplayer-updates.com^$popup (easylist.txt: 30805) -.flashplayer-updates.com -# ||firstload.de^$popup (easylist.txt: 30804) -.firstload.de -# ||firstload.com^$popup (easylist.txt: 30803) -.firstload.com -# ||fastclick.net^$popup (easylist.txt: 30802) -.fastclick.net -# ||evanetwork.com^$popup (easylist.txt: 30800) -.evanetwork.com -# ||eurogrand.com^$popup (easylist.txt: 30798) -.eurogrand.com -# ||eroticmix.blogspot.$popup (easylist.txt: 30795) -.eroticmix.blogspot.*. -# ||d1110e4.se^$popup (easylist.txt: 30793) -.d1110e4.se -# ||coolguruji.com/l.php?$popup (easylist.txt: 30791) -.coolguruji.com/l\.php\? -# ||chatulfetelor.net/$popup (easylist.txt: 30787) -.chatulfetelor.net -# ||chatlivejasmin.net^$popup (easylist.txt: 30786) -.chatlivejasmin.net -# ||casinoadviser.net^$popup (easylist.txt: 30783) -.casinoadviser.net -# ||bet365.com^*affiliate=$popup (easylist.txt: 30778) -.bet365.com/.*affiliate= -# ||adrotator.se^$popup (easylist.txt: 30769) -.adrotator.se -# ||5.39.67.191/promo.php?$popup (easylist.txt: 30765) -.5.39.67.191/promo\.php\? -# ||4utro.ru^$popup (easylist.txt: 30764) -.4utro.ru -# ||xxxmatch.com^$popup (easylist.txt: 29086) -.xxxmatch.com -# ||xmatch.com^$popup (easylist.txt: 29081) -.xmatch.com -# ||watchmygf.com^$popup (easylist.txt: 29078) -.watchmygf.com -# ||vlexokrako.com^$popup (easylist.txt: 29076) -.vlexokrako.com -# ||turnefo.ru^$popup (easylist.txt: 29075) -.turnefo.ru -# ||trafficstars.com^$popup (easylist.txt: 29074) -.trafficstars.com -# ||trafficbroker.com^$popup (easylist.txt: 29072) -.trafficbroker.com -# ||trackvoluum.com^$popup (easylist.txt: 29071) -.trackvoluum.com -# ||pornbus.org^$popup (easylist.txt: 29055) -.pornbus.org -# ||playgirl.com^$popup (easylist.txt: 29051) -.playgirl.com -# ||pinkberrytube.com^$popup (easylist.txt: 29050) -.pinkberrytube.com -# ||needlive.com^$popup (easylist.txt: 29048) -.needlive.com -# ||ipvertising.com^$popup (easylist.txt: 29042) -.ipvertising.com -# ||herezera.com^$popup (easylist.txt: 29036) -.herezera.com -# ||freecamsexposed.com^$popup (easylist.txt: 29031) -.freecamsexposed.com -# ||flagads.net^$popup (easylist.txt: 29027) -.flagads.net -# ||fbay.tv^$popup (easylist.txt: 29025) -.fbay.tv -# ||exogripper.com^$popup (easylist.txt: 29024) -.exogripper.com -# ||ertya.com^$popup (easylist.txt: 29021) -.ertya.com -# ||easysexdate.com^$popup (easylist.txt: 29017) -.easysexdate.com -# ||connexionsafe.com^$popup (easylist.txt: 29014) -.connexionsafe.com -# ||buy404s.com^$popup (easylist.txt: 29010) -.buy404s.com -# ||bitterstrawberry.com^$popup (easylist.txt: 29009) -.bitterstrawberry.com -# ||adtgs.com^$popup (easylist.txt: 29001) -.adtgs.com -# ||3questionsgetthegirl.com^$popup (easylist.txt: 28998) -.3questionsgetthegirl.com -# ||33traffic.com^$popup (easylist.txt: 28996) -.33traffic.com -# ||careerjournalonline.com^$popup (easylist.txt: 27956) -.careerjournalonline.com -# _popunder+$popup (easylist.txt: 7171) -/.*_popunder\+ -# ?zoneid=*_bannerid=$popup (easylist.txt: 7170) -/.*\?zoneid=.*_bannerid= -# ?iiadext=$popup (easylist.txt: 7169) -/.*\?iiadext= -# ?bannerid=*&punder=$popup (easylist.txt: 7168) -/.*\?bannerid=.*&punder= -# ?AdUrl=$popup (easylist.txt: 7167) -/.*\?AdUrl= -# =popunders&$popup (easylist.txt: 7166) -/.*=popunders& -# =popunder&$popup (easylist.txt: 7165) -/.*=popunder& -# ://adv.$popup (easylist.txt: 7164) -/.*://adv\. -adv.*. -# ://ads.$popup (easylist.txt: 7163) -/.*://ads\. -ads.*. -# /yesbaby.$popup (easylist.txt: 7162) -/(.*/)?yesbaby\. -yesbaby.*. -# /srvclk.php?$popup (easylist.txt: 7161) -/(.*/)?srvclk\.php\? -# /spopunder^$popup (easylist.txt: 7160) -/(.*/)?spopunder[^\w%.-] -# /showads/*$popup (easylist.txt: 7159) -/(.*/)?showads/.* -# /servlet/ajrotator/*$popup (easylist.txt: 7158) -/(.*/)?servlet/ajrotator/.* -# /rotator.php?$popup (easylist.txt: 7157) -/(.*/)?rotator\.php\? -# /Redirect.engine$popup (easylist.txt: 7155) -/(.*/)?Redirect\.engine -Redirect.engine*. -# /Redirect.eng?$popup (easylist.txt: 7154) -/(.*/)?Redirect\.eng\? -# /realmedia/ads/*$popup (easylist.txt: 7153) -/(.*/)?realmedia/ads/.* -# /punder.php$popup (easylist.txt: 7152) -/(.*/)?punder\.php -punder.php*. -# /promoredirect?*&campaign=*&zone=$popup (easylist.txt: 7151) -/(.*/)?promoredirect\?.*&campaign=.*&zone= -# /popupads.$popup (easylist.txt: 7150) -/(.*/)?popupads\. -popupads.*. -# /popunder_$popup (easylist.txt: 7149) -/(.*/)?popunder_ -# /popunder.$popup (easylist.txt: 7148) -/(.*/)?popunder\. -popunder.*. -# /popout.$popup (easylist.txt: 7147) -/(.*/)?popout\. -popout.*. -# /lr.php?zoneid=$popup (easylist.txt: 7146) -/(.*/)?lr\.php\?zoneid= -# /bani/index.php?id=$popup (easylist.txt: 7144) -/(.*/)?bani/index\.php\?id= -# /afu.php?$popup (easylist.txt: 7143) -/(.*/)?afu\.php\? -# /advlink.$popup (easylist.txt: 7142) -/(.*/)?advlink\. -advlink.*. -# /adsynserveuserid=$popup (easylist.txt: 7141) -/(.*/)?adsynserveuserid= -# /adstream_sx.ads/*$popup (easylist.txt: 7140) -/(.*/)?adstream_sx\.ads/.* -# /adserver.$popup (easylist.txt: 7139) -/(.*/)?adserver\. -adserver.*. -# /adServe/sa?cid=$popup (easylist.txt: 7138) -/(.*/)?adServe/sa\?cid= -# /ads.htm$popup (easylist.txt: 7137) -/(.*/)?ads\.htm -ads.htm*. -# /AdHandler.aspx?$popup (easylist.txt: 7136) -/(.*/)?AdHandler\.aspx\? -# /adclick.$popup (easylist.txt: 7135) -/(.*/)?adclick\. -adclick.*. -# /ad_pop.php?$popup (easylist.txt: 7134) -/(.*/)?ad_pop\.php\? -# /ad132m/*$popup (easylist.txt: 7133) -/(.*/)?ad132m/.* -# /ad/window.php?$popup (easylist.txt: 7132) -/(.*/)?ad/window\.php\? -# /ad/display.php$popup (easylist.txt: 7131) -/(.*/)?ad/display\.php -# /ad.php|$popup (easylist.txt: 7130) -/(.*/)?ad\.php$ -ad.php -# /ad.php?zone$popup (easylist.txt: 7129) -/(.*/)?ad\.php\?zone -# /ad.php?tag=$popup (easylist.txt: 7128) -/(.*/)?ad\.php\?tag= -# /a/display.php?$popup (easylist.txt: 7127) -/(.*/)?a/display\.php\? -# /?reef=$popup (easylist.txt: 7126) -/(.*/)?\?reef= -# /?placement=*&redirect$popup (easylist.txt: 7125) -/(.*/)?\?placement=.*&redirect -# .engine?PlacementId=$popup (easylist.txt: 7124) -/.*\.engine\?PlacementId= -# .com/ads?$popup (easylist.txt: 7123) -/.*\.com/ads\? -.*.com/ads\? -# .com/?adv=$popup (easylist.txt: 7122) -/.*\.com/\?adv= -.*.com/\?adv= -# .co/ads/$popup (easylist.txt: 7121) -/.*\.co/ads/ -.*.co/ads/ -# -ads-campaign/$popup (easylist.txt: 7120) -/.*-ads-campaign/ -.*-ads-campaign -# &program=revshare&$popup (easylist.txt: 7119) -/.*&program=revshare& -# &popunder=$popup (easylist.txt: 7118) -/.*&popunder= -#ab2p-block-xpopup-Anhm-Cnhm -{+client-header-tagger{ab2p-block-xpopup-Anhm} \ - +server-header-tagger{ab2p-block-xpopup-Cnhm} \ +#ab2p-block-xpopup-R186t +{+client-header-tagger{ab2p-block-xpopup-R186t} \ } -TAG:^ab2p-block-xpopup-Anhm-Cnhm$ +# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|downhhh.com|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina.txt: 1067) -#ab2p-block-xpopup-Anhm-Cnhm-when-Rt -{+client-header-tagger{ab2p-block-xpopup-Anhm-Cnhm-when-Rt} \ +#ab2p-block-xpopup-R37 +{+client-header-tagger{ab2p-block-xpopup-R37} \ } -# ||wizard-traffstock.com^$third-party,~popup,popup (advblock.txt: 3200) -.wizard-traffstock.com -# ||realtraf.$third-party,~popup,popup (advblock.txt: 2832) -.realtraf.*. -# ||myragon.ru^$third-party,~popup,popup (advblock.txt: 1266) -.myragon.ru -# ||marketgid.com^$third-party,~popup,popup (advblock.txt: 1202) -.marketgid.com -# ||flirchi.ru^$third-party,~popup,popup (advblock.txt: 995) -.flirchi.ru -# ||contactsin.mobi^$third-party,~popup,popup (advblock.txt: 133) -.contactsin.mobi -# ||adv859672.ru^$third-party,~popup,popup (advblock.txt: 120) -.adv859672.ru -# ||adv758968.ru^$third-party,~popup,popup (advblock.txt: 119) -.adv758968.ru -# ||adv679854.ru^$third-party,~popup,popup (advblock.txt: 118) -.adv679854.ru -# ||adv578125.ru^$third-party,~popup,popup (advblock.txt: 117) -.adv578125.ru -# ||adv481895.ru^$third-party,~popup,popup (advblock.txt: 116) -.adv481895.ru -# ||adv457895.ru^$third-party,~popup,popup (advblock.txt: 115) -.adv457895.ru -# ||adv225489.ru^$third-party,~popup,popup (advblock.txt: 114) -.adv225489.ru -# ||social-leads.ru^$third-party,~popup,popup (advblock.txt: 102) -.social-leads.ru -# ||compareiseries.in^$third-party,~popup,popup (advblock.txt: 76) -.compareiseries.in -# ||adserv01.ru^$third-party,~popup,popup (advblock.txt: 65) -.adserv01.ru -# ||actionpay.ru^$third-party,~popup,popup (advblock.txt: 64) -.actionpay.ru - -#ab2p-block-xpopup-R33 -{+client-header-tagger{ab2p-block-xpopup-R33} \ -} -# ||softexter.com^$popup,domain=2drive.net (easylistchina+easylist.txt: 46183) -.softexter.com -# ||softexter.com^$popup,domain=2drive.net (easylist.txt: 35698) -.softexter.com - -#ab2p-block-xpopup-R35 -{+client-header-tagger{ab2p-block-xpopup-R35} \ -} -# ||href.li^$popup,domain=300mblink.com (easylistchina+easylist.txt: 46153) -.href.li -# ||href.li^$popup,domain=300mblink.com (easylist.txt: 35668) -.href.li - -#ab2p-block-xpopup-R43 -{+client-header-tagger{ab2p-block-xpopup-R43} \ -} -# ||schenkelklopfer.org^$popup,domain=4fuckr.com (easylistchina+easylist.txt: 46180) -.schenkelklopfer.org -# ||jokertraffic.com^$popup,domain=4fuckr.com (easylistchina+easylist.txt: 46160) -.jokertraffic.com -# ||schenkelklopfer.org^$popup,domain=4fuckr.com (easylist.txt: 35695) -.schenkelklopfer.org -# ||jokertraffic.com^$popup,domain=4fuckr.com (easylist.txt: 35675) -.jokertraffic.com - -#ab2p-block-xpopup-R751t -{+client-header-tagger{ab2p-block-xpopup-R751t} \ -} -# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina+easylist.txt: 1044) - -#ab2p-block-xpopup-R59 -{+client-header-tagger{ab2p-block-xpopup-R59} \ -} -# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina+easylist.txt: 1079) +# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina.txt: 1104) .taobao.com -#ab2p-block-xpopup-R74 -{+client-header-tagger{ab2p-block-xpopup-R74} \ +#ab2p-block-xpopup-R40 +{+client-header-tagger{ab2p-block-xpopup-R40} \ } -# ||newsgate.pw^$popup,domain=adjet.biz (easylistchina+easylist.txt: 46169) -.newsgate.pw -# ||newsgate.pw^$popup,domain=adjet.biz (easylist.txt: 35684) -.newsgate.pw - -#ab2p-block-xpopup-R82 -{+client-header-tagger{ab2p-block-xpopup-R82} \ -} -# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina+easylist.txt: 1038) +# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina.txt: 1061) /(.*/)?\? -#ab2p-block-xpopup-R752t -{+client-header-tagger{ab2p-block-xpopup-R752t} \ +#ab2p-block-xpopup-R53 +{+client-header-tagger{ab2p-block-xpopup-R53} \ } -# |http:$popup,third-party,domain=allmyvideos.net|embed.videoweed.es|extreme-board.com|fastspics.net|filepost.com|filmovizija.com|go4up.com|imagebam.com|imagefruit.com|imageporter.com|imgbox.com|imgmade.com|imgshots.com|imgsin.com|imgspice.com|load.to|mofunzone.com|openload.co|promptfile.com|putlocker.is|thevideo.me|twer.info|vidspot.net|watchcartoononline.com|xtshare.com|youwatch.org (easylistchina+easylist.txt: 46104) -# |http:$popup,third-party,domain=allmyvideos.net|embed.videoweed.es|extreme-board.com|fastspics.net|filepost.com|filmovizija.com|go4up.com|imagebam.com|imagefruit.com|imageporter.com|imgbox.com|imgmade.com|imgshots.com|imgsin.com|imgspice.com|load.to|mofunzone.com|openload.co|promptfile.com|putlocker.is|thevideo.me|twer.info|vidspot.net|watchcartoononline.com|xtshare.com|youwatch.org (easylist.txt: 35619) +# ||85rere.com^$popup,domain=btbbt.cc (easylistchina.txt: 1071) +.85rere.com -#ab2p-block-xpopup-R88 -{+client-header-tagger{ab2p-block-xpopup-R88} \ +#ab2p-block-xpopup-R73 +{+client-header-tagger{ab2p-block-xpopup-R73} \ } -# ||titanbrowser.com^$popup,domain=amaderforum.com (easylistchina+easylist.txt: 46193) -.titanbrowser.com -# ||findgrid.com^$popup,domain=amaderforum.com (easylistchina+easylist.txt: 46131) -.findgrid.com -# ||titanbrowser.com^$popup,domain=amaderforum.com (easylist.txt: 35708) -.titanbrowser.com -# ||findgrid.com^$popup,domain=amaderforum.com (easylist.txt: 35646) -.findgrid.com +# ||1.baidu.com^$popup,domain=douban.com (easylistchina.txt: 1069) +.1.baidu.com + +#ab2p-block-xpopup-R86 +{+client-header-tagger{ab2p-block-xpopup-R86} \ +} +# ||taobao.com$popup,domain=hacg.lol (easylistchina.txt: 1103) +.taobao.com*. #ab2p-block-xpopup-R89 {+client-header-tagger{ab2p-block-xpopup-R89} \ } -# ||goo.gl^$popup,domain=amaderforum.com|jumbofile.net|videomega.tv (easylistchina+easylist.txt: 46146) -.goo.gl -# ||goo.gl^$popup,domain=amaderforum.com|jumbofile.net|videomega.tv (easylist.txt: 35661) -.goo.gl - -#ab2p-block-xpopup-R753t -{+client-header-tagger{ab2p-block-xpopup-R753t} \ -} -# ||spendcrazy.net^$popup,third-party,domain=animegalaxy.net|animenova.tv|animetoon.tv|animewow.eu|gogoanime.com|goodanime.eu|gooddrama.net|toonget.com (easylistchina+easylist.txt: 46185) -.spendcrazy.net -# ||spendcrazy.net^$popup,third-party,domain=animegalaxy.net|animenova.tv|animetoon.tv|animewow.eu|gogoanime.com|goodanime.eu|gooddrama.net|toonget.com (easylist.txt: 35700) -.spendcrazy.net - -#ab2p-block-xpopup-R111 -{+client-header-tagger{ab2p-block-xpopup-R111} \ -} -# ||site-rips.org^$popup,domain=backupload.net (easylistchina+easylist.txt: 47093) -.site-rips.org -# ||site-rips.org^$popup,domain=backupload.net (easylist.txt: 36608) -.site-rips.org - -#ab2p-block-xpopup-R118 -{+client-header-tagger{ab2p-block-xpopup-R118} \ -} -# ||finegame.org^$popup,domain=bestreams.net (easylistchina+easylist.txt: 46132) -.finegame.org -# ||finegame.org^$popup,domain=bestreams.net (easylist.txt: 35647) -.finegame.org - -#ab2p-block-xpopup-R129 -{+client-header-tagger{ab2p-block-xpopup-R129} \ -} -# ||85rere.com^$popup,domain=btbbt.cc (easylistchina+easylist.txt: 1048) -.85rere.com - -#ab2p-block-xpopup-R170 -{+client-header-tagger{ab2p-block-xpopup-R170} \ -} -# ||bangstage.com^$popup,domain=datacloud.to (easylistchina+easylist.txt: 46113) -.bangstage.com -# ||bangstage.com^$popup,domain=datacloud.to (easylist.txt: 35628) -.bangstage.com - -#ab2p-block-xpopup-R176 -{+client-header-tagger{ab2p-block-xpopup-R176} \ -} -# ||zmovie.tv^$popup,domain=deditv.com|vidbox.net (easylistchina+easylist.txt: 46219) -.zmovie.tv -# ||zmovie.tv^$popup,domain=deditv.com|vidbox.net (easylist.txt: 35734) -.zmovie.tv - -#ab2p-block-xpopup-R184 -{+client-header-tagger{ab2p-block-xpopup-R184} \ -} -# ||1.baidu.com^$popup,domain=douban.com (easylistchina+easylist.txt: 1046) -.1.baidu.com - -#ab2p-block-xpopup-R191 -{+client-header-tagger{ab2p-block-xpopup-R191} \ -} -# ||adriver.ru/cgi-bin/click.$popup,domain=edinstvennaya.ua|gazeta.ua (advblock.txt: 113) -.adriver.ru/cgi-bin/click\. - -#ab2p-block-xpopup-R194 -{+client-header-tagger{ab2p-block-xpopup-R194} \ -} -# ^utm_source=$popup,domain=exashare.com|sex.com|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylistchina+easylist.txt: 46103) -/(.*[^\w%.-])?utm_source= -# ^utm_source=$popup,domain=exashare.com|sex.com|thepiratebay.am|thepiratebay.gd|thepiratebay.la|thepiratebay.mn|thepiratebay.vg (easylist.txt: 35618) -/(.*[^\w%.-])?utm_source= - -#ab2p-block-xpopup-R198 -{+client-header-tagger{ab2p-block-xpopup-R198} \ -} -# ||rackcdn.com^$popup,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47092) -.rackcdn.com -# ||rackcdn.com^$popup,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36607) -.rackcdn.com - -#ab2p-block-xpopup-R754t -{+client-header-tagger{ab2p-block-xpopup-R754t} \ -} -# |http://*?*^id^$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47070) -/.*\?.*[^\w%.-]id[^\w%.-] -# |http://*?*=$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylistchina+easylist.txt: 47069) -/.*\?.*= -# |http://*?*^id^$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36585) -/.*\?.*[^\w%.-]id[^\w%.-] -# |http://*?*=$popup,third-party,domain=extremetube.com|pornhub.com|redtube.com|spankwire.com|tube8.com|youporn.com|youporngay.com (easylist.txt: 36584) -/.*\?.*= - -#ab2p-block-xpopup-R207 -{+client-header-tagger{ab2p-block-xpopup-R207} \ -} -# ||bit.ly^$popup,domain=fastvideo.eu|rapidvideo.org|sh.st (easylistchina+easylist.txt: 46115) -.bit.ly -# ||bit.ly^$popup,domain=fastvideo.eu|rapidvideo.org|sh.st (easylist.txt: 35630) -.bit.ly - -#ab2p-block-xpopup-R208 -{+client-header-tagger{ab2p-block-xpopup-R208} \ -} -# ||cityads.ru/click-$popup,domain=fayloobmennik.net|lovekinozal.ru|rusfolder.com|rutor.org (advblock.txt: 130) -.cityads.ru/click- - -#ab2p-block-xpopup-R210 -{+client-header-tagger{ab2p-block-xpopup-R210} \ -} -# ||leaderdownload.com^$popup,domain=fiberupload.net (easylistchina+easylist.txt: 46162) -.leaderdownload.com -# ||leaderdownload.com^$popup,domain=fiberupload.net (easylist.txt: 35677) -.leaderdownload.com - -#ab2p-block-xpopup-R212 -{+client-header-tagger{ab2p-block-xpopup-R212} \ -} -# ||kalemaro.com^$popup,domain=filatak.com (easylistchina+easylist.txt: 46161) -.kalemaro.com -# ||kalemaro.com^$popup,domain=filatak.com (easylist.txt: 35676) -.kalemaro.com - -#ab2p-block-xpopup-R215 -{+client-header-tagger{ab2p-block-xpopup-R215} \ -} -# ||itunes.apple.com^$popup,domain=fillinn.com (easylistchina+easylist.txt: 41308) -.itunes.apple.com -# ||itunes.apple.com^$popup,domain=fillinn.com (easylist.txt: 30823) -.itunes.apple.com - -#ab2p-block-xpopup-R216 -{+client-header-tagger{ab2p-block-xpopup-R216} \ -} -# ||photo4sell.com^$popup,domain=filmovizija.com (easylistchina+easylist.txt: 46174) -.photo4sell.com -# ||photo4sell.com^$popup,domain=filmovizija.com (easylist.txt: 35689) -.photo4sell.com - -#ab2p-block-xpopup-R221 -{+client-header-tagger{ab2p-block-xpopup-R221} \ -} -# |http://li.ru/go?$popup,domain=fishki.net (advblock.txt: 29) -li.ru/go\? - -#ab2p-block-xpopup-R222 -{+client-header-tagger{ab2p-block-xpopup-R222} \ -} -# ||vibeo.to^$popup,domain=flashx.tv (easylistchina+easylist.txt: 46204) -.vibeo.to -# ||free-stream.tv^$popup,domain=flashx.tv (easylistchina+easylist.txt: 46138) -.free-stream.tv -# ||vibeo.to^$popup,domain=flashx.tv (easylist.txt: 35719) -.vibeo.to -# ||free-stream.tv^$popup,domain=flashx.tv (easylist.txt: 35653) -.free-stream.tv - -#ab2p-block-xpopup-R232 -{+client-header-tagger{ab2p-block-xpopup-R232} \ -} -# ||ruorange.org^$popup,domain=freezpic.ru (advblock.txt: 173) -.ruorange.org - -#ab2p-block-xpopup-R236 -{+client-header-tagger{ab2p-block-xpopup-R236} \ -} -# ||thebestbookies.com^$popup,domain=f谋rstrowsports.eu (easylistchina+easylist.txt: 46190) -.thebestbookies.com -# ||thebestbookies.com^$popup,domain=f谋rstrowsports.eu (easylist.txt: 35705) -.thebestbookies.com - -#ab2p-block-xpopup-R263 -{+client-header-tagger{ab2p-block-xpopup-R263} \ -} -# ||xldytt.com^$popup,domain=henbt.com (easylistchina+easylist.txt: 1083) +# ||xldytt.com^$popup,domain=henbt.com (easylistchina.txt: 1107) .xldytt.com -#ab2p-block-xpopup-R265 -{+client-header-tagger{ab2p-block-xpopup-R265} \ +#ab2p-block-xpopup-R98 +{+client-header-tagger{ab2p-block-xpopup-R98} \ } -# ||watchclip.tv^$popup,domain=hipfile.com (easylistchina+easylist.txt: 46210) -.watchclip.tv -# ||watchclip.tv^$popup,domain=hipfile.com (easylist.txt: 35725) -.watchclip.tv - -#ab2p-block-xpopup-R272 -{+client-header-tagger{ab2p-block-xpopup-R272} \ -} -# ||google.com.eg/url?$popup,domain=hulkload.com (easylistchina+easylist.txt: 46147) -.google.com.eg/url\? -# ||google.com.eg/url?$popup,domain=hulkload.com (easylist.txt: 35662) -.google.com.eg/url\? - -#ab2p-block-xpopup-R285 -{+client-header-tagger{ab2p-block-xpopup-R285} \ -} -# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina+easylist.txt: 1071) +# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina.txt: 1095) .miaozhen.com -#ab2p-block-xpopup-R295 -{+client-header-tagger{ab2p-block-xpopup-R295} \ +#ab2p-block-xpopup-R147 +{+client-header-tagger{ab2p-block-xpopup-R147} \ } -# ||com^$popup,domain=kartinka.in (advblock.txt: 32) - -#ab2p-block-xpopup-R298 -{+client-header-tagger{ab2p-block-xpopup-R298} \ -} -# ||toptrailers.net^$popup,domain=kingfiles.net|uploadrocket.net (easylistchina+easylist.txt: 46196) -.toptrailers.net -# ||toptrailers.net^$popup,domain=kingfiles.net|uploadrocket.net (easylist.txt: 35711) -.toptrailers.net - -#ab2p-block-xpopup-R311 -{+client-header-tagger{ab2p-block-xpopup-R311} \ -} -# ||porn101.com^$popup,domain=lexsteele.com (easylistchina+easylist.txt: 47087) -.porn101.com -# ||porn101.com^$popup,domain=lexsteele.com (easylist.txt: 36602) -.porn101.com - -#ab2p-block-xpopup-R319 -{+client-header-tagger{ab2p-block-xpopup-R319} \ -} -# ||mp3albomov.net^$popup,domain=lossless-galaxy.ru (advblock.txt: 37) -.mp3albomov.net - -#ab2p-block-xpopup-R322 -{+client-header-tagger{ab2p-block-xpopup-R322} \ -} -# ||abbigli.com^$popup,domain=luxtorrents.com (advblock.txt: 30) -.abbigli.com - -#ab2p-block-xpopup-R326 -{+client-header-tagger{ab2p-block-xpopup-R326} \ -} -# ||beap.gemini.yahoo.com^$popup,domain=mail.yahoo.com (easylistchina+easylist.txt: 46114) -.beap.gemini.yahoo.com -# ||beap.gemini.yahoo.com^$popup,domain=mail.yahoo.com (easylist.txt: 35629) -.beap.gemini.yahoo.com - -#ab2p-block-xpopup-R755t -{+client-header-tagger{ab2p-block-xpopup-R755t} \ -} -# ||indianmasala.com^$popup,third-party,domain=masalaboard.com (easylistchina+easylist.txt: 38515) -.indianmasala.com -# ||indianmasala.com^$popup,third-party,domain=masalaboard.com (easylist.txt: 28030) -.indianmasala.com - -#ab2p-block-xpopup-R343 -{+client-header-tagger{ab2p-block-xpopup-R343} \ -} -# $popup,domain=moonwalk.cc (advblock.txt: 27) - - -#ab2p-block-xpopup-R347 -{+client-header-tagger{ab2p-block-xpopup-R347} \ -} -# ||click.aliexpress.com^$popup,domain=multiupfile.com (easylistchina+easylist.txt: 46118) -.click.aliexpress.com -# ||click.aliexpress.com^$popup,domain=multiupfile.com (easylist.txt: 35633) -.click.aliexpress.com - -#ab2p-block-xpopup-R352 -{+client-header-tagger{ab2p-block-xpopup-R352} \ -} -# ||namba.kg^$popup,domain=namba.kg (advblock.txt: 38) -.namba.kg - -#ab2p-block-xpopup-R354 -{+client-header-tagger{ab2p-block-xpopup-R354} \ -} -# ||namba.tj^$popup,domain=namba.tj (advblock.txt: 39) -.namba.tj - -#ab2p-block-xpopup-R355 -{+client-header-tagger{ab2p-block-xpopup-R355} \ -} -# ||hide.me^$popup,domain=ncrypt.in (easylistchina+easylist.txt: 46149) -.hide.me -# ||hide.me^$popup,domain=ncrypt.in (easylist.txt: 35664) -.hide.me - -#ab2p-block-xpopup-R357 -{+client-header-tagger{ab2p-block-xpopup-R357} \ -} -# ||single-vergleich.de^$popup,domain=netload.in (easylistchina+easylist.txt: 46182) -.single-vergleich.de -# ||single-vergleich.de^$popup,domain=netload.in (easylist.txt: 35697) -.single-vergleich.de - -#ab2p-block-xpopup-R367 -{+client-header-tagger{ab2p-block-xpopup-R367} \ -} -# ||info^$popup,domain=nnm.me|serialu.net (advblock.txt: 35) - -#ab2p-block-xpopup-R381 -{+client-header-tagger{ab2p-block-xpopup-R381} \ -} -# ||letitbit-porno.com^$popup,domain=pic2profit.com (advblock.txt: 36) -.letitbit-porno.com - -#ab2p-block-xpopup-R383 -{+client-header-tagger{ab2p-block-xpopup-R383} \ -} -# ||garmin.ru/virb/?$popup,domain=pikabu.ru (advblock.txt: 148) -.garmin.ru/virb/\? - -#ab2p-block-xpopup-R398 -{+client-header-tagger{ab2p-block-xpopup-R398} \ -} -# ||zanox.com^$popup,domain=pregen.net (easylistchina+easylist.txt: 46217) -.zanox.com -# ||zanox.com^$popup,domain=pregen.net (easylist.txt: 35732) -.zanox.com - -#ab2p-block-xpopup-R403 -{+client-header-tagger{ab2p-block-xpopup-R403} \ -} -# ||fashionsaga.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 46128) -.fashionsaga.com -# ||fashionsaga.com^$popup,domain=putlocker.is (easylist.txt: 35643) -.fashionsaga.com - -#ab2p-block-xpopup-R407 -{+client-header-tagger{ab2p-block-xpopup-R407} \ -} -# ^utm_medium=pops^$popup,domain=ratedporntube.com|sextuberate.com (easylistchina+easylist.txt: 47068) -/(.*[^\w%.-])?utm_medium=pops[^\w%.-] -# ^utm_medium=pops^$popup,domain=ratedporntube.com|sextuberate.com (easylist.txt: 36583) -/(.*[^\w%.-])?utm_medium=pops[^\w%.-] - -#ab2p-block-xpopup-R411 -{+client-header-tagger{ab2p-block-xpopup-R411} \ -} -# ||porn4free.tv^$popup,domain=redtube.cc (easylistchina+easylist.txt: 47088) -.porn4free.tv -# ||porn4free.tv^$popup,domain=redtube.cc (easylist.txt: 36603) -.porn4free.tv - -#ab2p-block-xpopup-R423 -{+client-header-tagger{ab2p-block-xpopup-R423} \ -} -# ||r.search.yahoo.com/_ylt=*;_ylu=*.r.msn.com$popup,domain=search.yahoo.com (easylistchina+easylist.txt: 46178) -.r.search.yahoo.com/_ylt=.*;_ylu=.*\.r\.msn\.com -# ||r.search.yahoo.com/_ylt=*;_ylu=*.r.msn.com$popup,domain=search.yahoo.com (easylist.txt: 35693) -.r.search.yahoo.com/_ylt=.*;_ylu=.*\.r\.msn\.com - -#ab2p-block-xpopup-R425 -{+client-header-tagger{ab2p-block-xpopup-R425} \ -} -# ||pamaradio.com^$popup,domain=secureupload.eu (easylistchina+easylist.txt: 46172) -.pamaradio.com -# ||pamaradio.com^$popup,domain=secureupload.eu (easylist.txt: 35687) -.pamaradio.com - -#ab2p-block-xpopup-R426 -{+client-header-tagger{ab2p-block-xpopup-R426} \ -} -# /sendspace-pop.$popup,domain=sendspace.com (easylistchina+easylist.txt: 46102) -/(.*/)?sendspace-pop\. -sendspace-pop.*. -# /sendspace-pop.$popup,domain=sendspace.com (easylist.txt: 35617) -/(.*/)?sendspace-pop\. -sendspace-pop.*. - -#ab2p-block-xpopup-R430 -{+client-header-tagger{ab2p-block-xpopup-R430} \ -} -# ||truckingunlimited.com^$popup,domain=sharpfile.com (easylistchina+easylist.txt: 41363) -.truckingunlimited.com -# ||truckingunlimited.com^$popup,domain=sharpfile.com (easylist.txt: 30878) -.truckingunlimited.com - -#ab2p-block-xpopup-R434 -{+client-header-tagger{ab2p-block-xpopup-R434} \ -} -# ||gratuit.niloo.fr^$popup,domain=simophone.com (easylistchina+easylist.txt: 46148) -.gratuit.niloo.fr -# ||gratuit.niloo.fr^$popup,domain=simophone.com (easylist.txt: 35663) -.gratuit.niloo.fr - -#ab2p-block-xpopup-R459 -{+client-header-tagger{ab2p-block-xpopup-R459} \ -} -# ||fileparadox.in/free$popup,domain=tdarkangel.com (easylistchina+easylist.txt: 47076) -.fileparadox.in/free -# ||fileparadox.in/free$popup,domain=tdarkangel.com (easylist.txt: 36591) -.fileparadox.in/free - -#ab2p-block-xpopup-R467 -{+client-header-tagger{ab2p-block-xpopup-R467} \ -} -# ||goo.gl^$popup,domain=thisav.com (easylistchina+easylist.txt: 47077) -.goo.gl -# ||goo.gl^$popup,domain=thisav.com (easylist.txt: 36592) -.goo.gl - -#ab2p-block-xpopup-R476 -{+client-header-tagger{ab2p-block-xpopup-R476} \ -} -# ||aiosearch.com^$popup,domain=torrent-finder.info (easylistchina+easylist.txt: 46110) -.aiosearch.com -# ||aiosearch.com^$popup,domain=torrent-finder.info (easylist.txt: 35625) -.aiosearch.com - -#ab2p-block-xpopup-R477 -{+client-header-tagger{ab2p-block-xpopup-R477} \ -} -# ||runetki.tv^$popup,domain=torrent-pirat.com (advblock.txt: 40) -.runetki.tv - -#ab2p-block-xpopup-R481 -{+client-header-tagger{ab2p-block-xpopup-R481} \ -} -# ||cwer.ws^$popup,domain=turbobit.net (advblock.txt: 33) -.cwer.ws - -#ab2p-block-xpopup-R482 -{+client-header-tagger{ab2p-block-xpopup-R482} \ -} -# ||limbohost.net^$popup,domain=tusfiles.net (easylistchina+easylist.txt: 46163) -.limbohost.net -# ||limbohost.net^$popup,domain=tusfiles.net (easylist.txt: 35678) -.limbohost.net - -#ab2p-block-xpopup-R495 -{+client-header-tagger{ab2p-block-xpopup-R495} \ -} -# ||short.zain.biz^$popup,domain=up09.com (easylistchina+easylist.txt: 46181) -.short.zain.biz -# ||short.zain.biz^$popup,domain=up09.com (easylist.txt: 35696) -.short.zain.biz - -#ab2p-block-xpopup-R497 -{+client-header-tagger{ab2p-block-xpopup-R497} \ -} -# ||adf.ly^$popup,domain=uploadcore.com|urgrove.com (easylistchina+easylist.txt: 46107) -.adf.ly -# ||adf.ly^$popup,domain=uploadcore.com|urgrove.com (easylist.txt: 35622) -.adf.ly - -#ab2p-block-xpopup-R501 -{+client-header-tagger{ab2p-block-xpopup-R501} \ -} -# ||nesk.co^$popup,domain=veehd.com (easylistchina+easylist.txt: 46168) -.nesk.co -# ||nesk.co^$popup,domain=veehd.com (easylist.txt: 35683) -.nesk.co - -#ab2p-block-xpopup-R505 -{+client-header-tagger{ab2p-block-xpopup-R505} \ -} -# ||babereporters.info^$popup,domain=viewcube.org (easylistchina+easylist.txt: 41813) -.babereporters.info -# ||babereporters.info^$popup,domain=viewcube.org (easylist.txt: 31328) -.babereporters.info - -#ab2p-block-xpopup-R507 -{+client-header-tagger{ab2p-block-xpopup-R507} \ -} -# ||jizz.best^$popup,domain=vivo.sx (easylistchina+easylist.txt: 46159) -.jizz.best -# ||jizz.best^$popup,domain=vivo.sx (easylist.txt: 35674) -.jizz.best - -#ab2p-block-xpopup-R514 -{+client-header-tagger{ab2p-block-xpopup-R514} \ -} -# ||wegrin.com^$popup,domain=watchfreemovies.ch (easylistchina+easylist.txt: 46211) -.wegrin.com -# ||wegrin.com^$popup,domain=watchfreemovies.ch (easylist.txt: 35726) -.wegrin.com - -#ab2p-block-xpopup-R529 -{+client-header-tagger{ab2p-block-xpopup-R529} \ -} -# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1084) +# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1108) .xmds.opd2c.com -# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1073) +# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1097) .moezone.taobao.com -# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1050) +# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1073) .acgpost.taobao.com -# /item.htm?$popup,domain=www.tsdm.net (easylistchina+easylist.txt: 1040) +# /item.htm?$popup,domain=www.tsdm.net (easylistchina.txt: 1063) /(.*/)?item\.htm\? -#ab2p-block-xpopup-R532 -{+client-header-tagger{ab2p-block-xpopup-R532} \ +#ab2p-block-xpopup-R152 +{+client-header-tagger{ab2p-block-xpopup-R152} \ } -# ||fc2.com^$popup,domain=xvideos.com (easylistchina+easylist.txt: 47075) -.fc2.com -# ||fc2.com^$popup,domain=xvideos.com (easylist.txt: 36590) -.fc2.com - -#ab2p-block-xpopup-R547 -{+client-header-tagger{ab2p-block-xpopup-R547} \ -} -# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina+easylist.txt: 1069) +# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina.txt: 1093) .kanzipai.com -#ab2p-block-xpopup-Rn589 -{+client-header-tagger{ab2p-block-xpopup-Rn589} \ -} -# ||carnage.ru^$popup,domain=~carnage.ru|~karnage.ru|~sesterce.ru (advblock.txt: 126) -.carnage.ru - -#ab2p-block-xpopup-Rn666 -{+client-header-tagger{ab2p-block-xpopup-Rn666} \ -} -# ||cpm.wargaming.net^$popup,domain=~worldoftanks.ru (advblock.txt: 134) -.cpm.wargaming.net - -#ab2p-block-xpopup-Rn675 -{+client-header-tagger{ab2p-block-xpopup-Rn675} \ -} -# ||zzima.com^$popup,domain=~zzima.com (advblock.txt: 199) -.zzima.com - -#ab2p-block-xpopup-Rnt -{+client-header-tagger{ab2p-block-xpopup-Rnt} \ -} -# ||exashare.com^*&h=$popup,~third-party (easylistchina+easylist.txt: 46126) -.exashare.com/.*&h= -# ||exashare.com^*&h=$popup,~third-party (easylist.txt: 35641) -.exashare.com/.*&h= - #ab2p-block-xpopup-Rt {+client-header-tagger{ab2p-block-xpopup-Rt} \ } -# ||streamtunerhd.com/signup?$popup,third-party (easylistchina+easylist.txt: 46188) -.streamtunerhd.com/signup\? -# ||yuvutu.com^$popup,third-party (easylistchina+easylist.txt: 41893) -.yuvutu.com -# ||xvideoslive.com/landing/$popup,third-party (easylistchina+easylist.txt: 41892) -.xvideoslive.com/landing/ -# ||xvideoslive.com/?AFNO$popup,third-party (easylistchina+easylist.txt: 41891) -.xvideoslive.com/\?AFNO -# ||xrounds.com/?lmid=$popup,third-party (easylistchina+easylist.txt: 41890) -.xrounds.com/\?lmid= -# ||xdating.com/search/$popup,third-party (easylistchina+easylist.txt: 41889) -.xdating.com/search/ -# ||webcams.com^$popup,third-party (easylistchina+easylist.txt: 41888) -.webcams.com -# ||vs3.com^$popup,third-party (easylistchina+easylist.txt: 41886) -.vs3.com -# ||visit-x.net/cams/*.html?*&s=*&ws=$popup,third-party (easylistchina+easylist.txt: 41885) -.visit-x.net/cams/.*\.html\?.*&s=.*&ws= -# ||videosz.com^*&tracker_id=$popup,third-party (easylistchina+easylist.txt: 41884) -.videosz.com/.*&tracker_id= -# ||videosz.com/search.php$popup,third-party (easylistchina+easylist.txt: 41883) -.videosz.com/search\.php -# ||twistys.com/track/$popup,third-party (easylistchina+easylist.txt: 41879) -.twistys.com/track/ -# ||tube911.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylistchina+easylist.txt: 41878) -.tube911.com/scj/cgi/out\.php\?scheme_id= -# ||tour.mrskin.com^$popup,third-party (easylistchina+easylist.txt: 41877) -.tour.mrskin.com -# ||teenslikeitbig.com/track/$popup,third-party (easylistchina+easylist.txt: 41874) -.teenslikeitbig.com/track/ -# ||socialflirt.com/go/$popup,third-party (easylistchina+easylist.txt: 41872) -.socialflirt.com/go/ -# ||sexsearchcom.com^$popup,third-party (easylistchina+easylist.txt: 41871) -.sexsearchcom.com -# ||sexier.com/services/adsredirect.ashx?$popup,third-party (easylistchina+easylist.txt: 41869) -.sexier.com/services/adsredirect\.ashx\? -# ||rudefinder.com/?$popup,third-party (easylistchina+easylist.txt: 41865) -.rudefinder.com/\? -# ||redlightcenter.com/?trq=$popup,third-party (easylistchina+easylist.txt: 41863) -.redlightcenter.com/\?trq= -# ||postselfies.com^*?nats=$popup,third-party (easylistchina+easylist.txt: 41862) -.postselfies.com/.*\?nats= -# ||pornme.com^*.php?ref=$popup,third-party (easylistchina+easylist.txt: 41858) -.pornme.com/.*\.php\?ref= -# ||online.mydirtyhobby.com^*?naff=$popup,third-party (easylistchina+easylist.txt: 41855) -.online.mydirtyhobby.com/.*\?naff= -# ||mydirtyhobby.com/?$popup,third-party (easylistchina+easylist.txt: 41853) -.mydirtyhobby.com/\? -# ||mjtlive.com/exports/golive/?lp=*&afno=$popup,third-party (easylistchina+easylist.txt: 41852) -.mjtlive.com/exports/golive/\?lp=.*&afno= -# ||media.campartner.com^*?cp=$popup,third-party (easylistchina+easylist.txt: 41850) -.media.campartner.com/.*\?cp= -# ||media.campartner.com/index.php?cpID=*&cpMID=$popup,third-party (easylistchina+easylist.txt: 41849) -.media.campartner.com/index\.php\?cpID=.*&cpMID= -# ||livejasmin.com^$popup,third-party (easylistchina+easylist.txt: 41848) -.livejasmin.com -# ||linkfame.com^*/go.php?$popup,third-party (easylistchina+easylist.txt: 41846) -.linkfame.com/.*/go\.php\? -# ||letstryanal.com/track/$popup,third-party (easylistchina+easylist.txt: 41845) -.letstryanal.com/track/ -# ||join.teamskeet.com/track/$popup,third-party (easylistchina+easylist.txt: 41842) -.join.teamskeet.com/track/ -# ||join.filthydatez.com^$popup,third-party (easylistchina+easylist.txt: 41841) -.join.filthydatez.com -# ||jasmin.com^$popup,third-party (easylistchina+easylist.txt: 41840) -.jasmin.com -# ||ipornia.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylistchina+easylist.txt: 41839) -.ipornia.com/scj/cgi/out\.php\?scheme_id= -# ||imlive.com/wmaster.ashx?$popup,third-party (easylistchina+easylist.txt: 41838) -.imlive.com/wmaster\.ashx\? -# ||hqtubevideos.com/play.html$popup,third-party (easylistchina+easylist.txt: 41836) -.hqtubevideos.com/play\.html -# ||fuckbooknet.net/dating/$popup,third-party (easylistchina+easylist.txt: 41831) -.fuckbooknet.net/dating/ -# ||flirt4free.com/_special/pops/$popup,third-party (easylistchina+easylist.txt: 41829) -.flirt4free.com/_special/pops/ -# ||fleshlight-international.eu^*?link=$popup,third-party (easylistchina+easylist.txt: 41827) -.fleshlight-international.eu/.*\?link= -# ||exposedwebcams.com/?token=$popup,third-party (easylistchina+easylist.txt: 41823) -.exposedwebcams.com/\?token= -# ||devilsfilm.com/track/go.php?$popup,third-party (easylistchina+easylist.txt: 41821) -.devilsfilm.com/track/go\.php\? -# ||cpm.amateurcommunity.*?cp=$popup,third-party (easylistchina+easylist.txt: 41820) -.cpm.amateurcommunity.*./.*\?cp= -# ||benaughty.com/aff.php?$popup,third-party (easylistchina+easylist.txt: 41814) -.benaughty.com/aff\.php\? -# ||babecams.net/landing/$popup,third-party (easylistchina+easylist.txt: 41812) -.babecams.net/landing/ -# ||amarotic.com^*?wmid=$popup,third-party (easylistchina+easylist.txt: 41811) -.amarotic.com/.*\?wmid= -# ||amarotic.com/?$popup,third-party (easylistchina+easylist.txt: 41810) -.amarotic.com/\? -# ||adultfriendfinder.com/go/$popup,third-party (easylistchina+easylist.txt: 41809) -.adultfriendfinder.com/go/ -# ||adultfriendfinder.com/banners/$popup,third-party (easylistchina+easylist.txt: 41808) -.adultfriendfinder.com/banners/ -# ||777livecams.com/?id=$popup,third-party (easylistchina+easylist.txt: 41807) -.777livecams.com/\?id= -# ||1800freecams.com^$popup,third-party (easylistchina+easylist.txt: 41805) -.1800freecams.com -# ||withbinaryoptions.com^$popup,third-party (easylistchina+easylist.txt: 41376) -.withbinaryoptions.com -# ||with-binaryoption.com^$popup,third-party (easylistchina+easylist.txt: 41375) -.with-binaryoption.com -# ||widget.yavli.com^$popup,third-party (easylistchina+easylist.txt: 41374) -.widget.yavli.com -# ||wealth-at-home-millions.com^$popup,third-party (easylistchina+easylist.txt: 41372) -.wealth-at-home-millions.com -# ||virtuagirl.com/landing/$popup,third-party (easylistchina+easylist.txt: 41371) -.virtuagirl.com/landing/ -# ||vidds.net/?s=promo$popup,third-party (easylistchina+easylist.txt: 41370) -.vidds.net/\?s=promo -# ||urmediazone.com/play?ref=$popup,third-party (easylistchina+easylist.txt: 41368) -.urmediazone.com/play\?ref= -# ||tripadvisor.*/HotelLander?$popup,third-party (easylistchina+easylist.txt: 41362) -.tripadvisor.*./(.*/)?HotelLander\? -# ||track.xtrasize.nl^$popup,third-party (easylistchina+easylist.txt: 41361) -.track.xtrasize.nl -# ||track.mypcbackup.com^$popup,third-party (easylistchina+easylist.txt: 41360) -.track.mypcbackup.com -# ||torntv-tvv.org^$popup,third-party (easylistchina+easylist.txt: 41359) -.torntv-tvv.org -# ||tipico.com^*?affiliateid=$popup,third-party (easylistchina+easylist.txt: 41358) -.tipico.com/.*\?affiliateid= -# ||thetraderinpajamas.com^$popup,third-party (easylistchina+easylist.txt: 41357) -.thetraderinpajamas.com -# ||thebestbookies.com^$popup,third-party (easylistchina+easylist.txt: 41355) -.thebestbookies.com -# ||sunmaker.com^*^a_aid^$popup,third-party (easylistchina+easylist.txt: 41354) -.sunmaker.com/.*[^\w%.-]a_aid[^\w%.-] -# ||stargames.com/web/*&cid=*&pid=$popup,third-party (easylistchina+easylist.txt: 41353) -.stargames.com/web/.*&cid=.*&pid= -# ||stake7.com^*?a_aid=$popup,third-party (easylistchina+easylist.txt: 41351) -.stake7.com/.*\?a_aid= -# ||sharecash.org^$popup,third-party (easylistchina+easylist.txt: 41349) -.sharecash.org -# ||serve.williamhillcasino.com^$popup,third-party (easylistchina+easylist.txt: 41347) -.serve.williamhillcasino.com -# ||serve.prestigecasino.com^$popup,third-party (easylistchina+easylist.txt: 41346) -.serve.prestigecasino.com -# ||secure.komli.com^$popup,third-party (easylistchina+easylist.txt: 41345) -.secure.komli.com -# ||roomkey.com/referrals?$popup,third-party (easylistchina+easylist.txt: 41344) -.roomkey.com/referrals\? -# ||rocketgames.com^$popup,third-party (easylistchina+easylist.txt: 41343) -.rocketgames.com -# ||record.sportsbetaffiliates.com.au^$popup,third-party (easylistchina+easylist.txt: 41341) -.record.sportsbetaffiliates.com.au -# ||promo.xcasino.com/?$popup,third-party (easylistchina+easylist.txt: 41338) -.promo.xcasino.com/\? -# ||promo.galabingo.com^$popup,third-party (easylistchina+easylist.txt: 41337) -.promo.galabingo.com -# ||pokerstars.eu^*/?source=$popup,third-party (easylistchina+easylist.txt: 41335) -.pokerstars.eu/.*/\?source= -# ||pc.thevideo.me^$popup,third-party (easylistchina+easylist.txt: 41332) -.pc.thevideo.me -# ||paid.outbrain.com/network/redir?$popup,third-party (easylistchina+easylist.txt: 41331) -.paid.outbrain.com/network/redir\? -# ||otvetus.com^$popup,third-party (easylistchina+easylist.txt: 41330) -.otvetus.com -# ||opendownloadmanager.com^$popup,third-party (easylistchina+easylist.txt: 41329) -.opendownloadmanager.com -# ||mp3ger.com^$popup,third-party (easylistchina+easylist.txt: 41326) -.mp3ger.com -# ||mgid.com^$popup,third-party (easylistchina+easylist.txt: 41325) -.mgid.com -# ||meme.smhlmao.com^$popup,third-party (easylistchina+easylist.txt: 41324) -.meme.smhlmao.com -# ||megacloud.com/signup?$popup,third-party (easylistchina+easylist.txt: 41323) -.megacloud.com/signup\? -# ||media.mybet.com/redirect.aspx?pid=*&bid=$popup,third-party (easylistchina+easylist.txt: 41322) -.media.mybet.com/redirect\.aspx\?pid=.*&bid= -# ||mcars.org/landing/$popup,third-party (easylistchina+easylist.txt: 41321) -.mcars.org/landing/ -# ||maxedtube.com/video_play?*&utm_campaign=$popup,third-party (easylistchina+easylist.txt: 41320) -.maxedtube.com/video_play\?.*&utm_campaign= -# ||lyricsbogie.com/?$popup,third-party (easylistchina+easylist.txt: 41318) -.lyricsbogie.com/\? -# ||lsbet.com/bonus/$popup,third-party (easylistchina+easylist.txt: 41316) -.lsbet.com/bonus/ -# ||lp.titanpoker.com^$popup,third-party (easylistchina+easylist.txt: 41315) -.lp.titanpoker.com -# ||lp.musicboxnewtab.com^$popup,third-party (easylistchina+easylist.txt: 41314) -.lp.musicboxnewtab.com -# ||lp.imesh.com/?$popup,third-party (easylistchina+easylist.txt: 41313) -.lp.imesh.com/\? -# ||lp.ilivid.com/?$popup,third-party (easylistchina+easylist.txt: 41312) -.lp.ilivid.com/\? -# ||lovefilm.com/partners/$popup,third-party (easylistchina+easylist.txt: 41310) -.lovefilm.com/partners/ -# ||i2casting.com^$popup,third-party (easylistchina+easylist.txt: 41307) -.i2casting.com -# ||house-rent.us^$popup,third-party (easylistchina+easylist.txt: 41304) -.house-rent.us -# ||homemadecelebrityporn.com/track/$popup,third-party (easylistchina+easylist.txt: 41303) -.homemadecelebrityporn.com/track/ -# ||hmn-net.com^*/xdirect/$popup,third-party (easylistchina+easylist.txt: 41302) -.hmn-net.com/.*/xdirect/ -# ||hetu.in^$popup,third-party (easylistchina+easylist.txt: 41301) -.hetu.in -# ||getsecuredfiles.com^$popup,third-party (easylistchina+easylist.txt: 41298) -.getsecuredfiles.com -# ||generic4all.com^*.dhtml?refid=$popup,third-party (easylistchina+easylist.txt: 41297) -.generic4all.com/.*\.dhtml\?refid= -# ||fulltiltpoker.com/affiliates/$popup,third-party (easylistchina+easylist.txt: 41295) -.fulltiltpoker.com/affiliates/ -# ||fulltiltpoker.com/?key=$popup,third-party (easylistchina+easylist.txt: 41294) -.fulltiltpoker.com/\?key= -# ||fleshlight.com/?link=$popup,third-party (easylistchina+easylist.txt: 41291) -.fleshlight.com/\?link= -# ||facebookcoverx.com^$popup,third-party (easylistchina+easylist.txt: 41286) -.facebookcoverx.com -# ||europacasino.com^$popup,third-party (easylistchina+easylist.txt: 41284) -.europacasino.com -# ||erotikdeal.com/advertising.html$popup,third-party (easylistchina+easylist.txt: 41282) -.erotikdeal.com/advertising\.html -# ||erotikdeal.com/?ref=$popup,third-party (easylistchina+easylist.txt: 41281) -.erotikdeal.com/\?ref= -# ||dateoffer.net/?s=*&subid=$popup,third-party (easylistchina+easylist.txt: 41279) -.dateoffer.net/\?s=.*&subid= -# ||ctcautobody.com^$popup,third-party (easylistchina+easylist.txt: 41277) -.ctcautobody.com -# ||clickansave.net^$popup,third-party (easylistchina+easylist.txt: 41275) -.clickansave.net -# ||click.scour.com^$popup,third-party (easylistchina+easylist.txt: 41274) -.click.scour.com -# ||chaturbate.com/affiliates/$popup,third-party (easylistchina+easylist.txt: 41273) -.chaturbate.com/affiliates/ -# ||cdnfarm18.com^$popup,third-party (easylistchina+easylist.txt: 41270) -.cdnfarm18.com -# ||cdn.optmd.com^$popup,third-party (easylistchina+easylist.txt: 41269) -.cdn.optmd.com -# ||casino.com^*?*=$popup,third-party (easylistchina+easylist.txt: 41267) -.casino.com/.*\?.*= -# ||casino-x.com^*?partner=$popup,third-party (easylistchina+easylist.txt: 41266) -.casino-x.com/.*\?partner= -# ||bovada.lv^$popup,third-party (easylistchina+easylist.txt: 41265) -.bovada.lv -# ||binaryoptions24h.com^$popup,third-party (easylistchina+easylist.txt: 41264) -.binaryoptions24h.com -# ||banner.galabingo.com^$popup,third-party (easylistchina+easylist.txt: 41262) -.banner.galabingo.com -# ||babylon.com/welcome/index.html?affID=$popup,third-party (easylistchina+easylist.txt: 41261) -.babylon.com/welcome/index\.html\?affID= -# ||babylon.com/redirects/$popup,third-party (easylistchina+easylist.txt: 41260) -.babylon.com/redirects/ -# ||amazing-offers.co.il^$popup,third-party (easylistchina+easylist.txt: 41259) -.amazing-offers.co.il -# ||aliexpress.com/?af=$popup,third-party (easylistchina+easylist.txt: 41258) -.aliexpress.com/\?af= -# ||affportal-lb.bevomedia.com^$popup,third-party (easylistchina+easylist.txt: 41257) -.affportal-lb.bevomedia.com -# ||affiliates.galapartners.co.uk^$popup,third-party (easylistchina+easylist.txt: 41256) -.affiliates.galapartners.co.uk -# ||adserving.unibet.com^$popup,third-party (easylistchina+easylist.txt: 41255) -.adserving.unibet.com -# ||admngronline.com^$popup,third-party (easylistchina+easylist.txt: 41253) -.admngronline.com -# ||adfoc.us/serve/$popup,third-party (easylistchina+easylist.txt: 41252) -.adfoc.us/serve/ -# ||6angebot.ch/?ref=$popup,third-party (easylistchina+easylist.txt: 41251) -.6angebot.ch/\?ref= -# ||y72yuyr9.com^$popup,third-party (easylistchina+easylist.txt: 39572) -.y72yuyr9.com -# ||xxxbunker.com^$popup,third-party (easylistchina+easylist.txt: 39570) -.xxxbunker.com -# ||xvika.net^$popup,third-party (easylistchina+easylist.txt: 39569) -.xvika.net -# ||xvika.com^$popup,third-party (easylistchina+easylist.txt: 39568) -.xvika.com -# ||xpeeps.com^$popup,third-party (easylistchina+easylist.txt: 39567) -.xpeeps.com -# ||xdtraffic.com^$popup,third-party (easylistchina+easylist.txt: 39565) -.xdtraffic.com -# ||x2porn.eu^$popup,third-party (easylistchina+easylist.txt: 39564) -.x2porn.eu -# ||voyeurbase.com^$popup,third-party (easylistchina+easylist.txt: 39562) -.voyeurbase.com -# ||trafficholder.com^$popup,third-party (easylistchina+easylist.txt: 39558) -.trafficholder.com -# ||targetingnow.com^$popup,third-party (easylistchina+easylist.txt: 39555) -.targetingnow.com -# ||socialsex.com^$popup,third-party (easylistchina+easylist.txt: 39554) -.socialsex.com -# ||socialsex.biz^$popup,third-party (easylistchina+easylist.txt: 39553) -.socialsex.biz -# ||sexintheuk.com^$popup,third-party (easylistchina+easylist.txt: 39552) -.sexintheuk.com -# ||sexflirtbook.com^$popup,third-party (easylistchina+easylist.txt: 39551) -.sexflirtbook.com -# ||sexad.net^$popup,third-party (easylistchina+easylist.txt: 39550) -.sexad.net -# ||sex-journey.com^$popup,third-party (easylistchina+easylist.txt: 39549) -.sex-journey.com -# ||setravieso.com^$popup,third-party (easylistchina+easylist.txt: 39548) -.setravieso.com -# ||sascentral.com^$popup,third-party (easylistchina+easylist.txt: 39547) -.sascentral.com -# ||royalads.net^$popup,third-party (easylistchina+easylist.txt: 39546) -.royalads.net -# ||reviewdollars.com^$popup,third-party (easylistchina+easylist.txt: 39545) -.reviewdollars.com -# ||reporo.net^$popup,third-party (easylistchina+easylist.txt: 39544) -.reporo.net -# ||repmbuycurl.com^$popup,third-party (easylistchina+easylist.txt: 39543) -.repmbuycurl.com -# ||prpops.com^$popup,third-party (easylistchina+easylist.txt: 39542) -.prpops.com -# ||prexista.com^$popup,third-party (easylistchina+easylist.txt: 39541) -.prexista.com -# ||popcash.net^$popup,third-party (easylistchina+easylist.txt: 39539) -.popcash.net -# ||plugrush.com^$popup,third-party (easylistchina+easylist.txt: 39538) -.plugrush.com -# ||plinx.net^$popup,third-party (easylistchina+easylist.txt: 39537) -.plinx.net -# ||njmaq.com^$popup,third-party (easylistchina+easylist.txt: 39534) -.njmaq.com -# ||naughtyplayful.com^$popup,third-party (easylistchina+easylist.txt: 39532) -.naughtyplayful.com -# ||loltrk.com^$popup,third-party (easylistchina+easylist.txt: 39531) -.loltrk.com -# ||legacyminerals.net^$popup,third-party (easylistchina+easylist.txt: 39530) -.legacyminerals.net -# ||kaizentraffic.com^$popup,third-party (easylistchina+easylist.txt: 39529) -.kaizentraffic.com -# ||juicyads.com^$popup,third-party (easylistchina+easylist.txt: 39528) -.juicyads.com -# ||indianfriendfinder.com^$popup,third-party (easylistchina+easylist.txt: 39526) -.indianfriendfinder.com -# ||imgcarry.com^$popup,third-party (easylistchina+easylist.txt: 39525) -.imgcarry.com -# ||imagesnake.com^$popup,third-party (easylistchina+easylist.txt: 39524) -.imagesnake.com -# ||hornymatches.com^$popup,third-party (easylistchina+easylist.txt: 39523) -.hornymatches.com -# ||hizlireklam.com^$popup,third-party (easylistchina+easylist.txt: 39522) -.hizlireklam.com -# ||hapend.biz^$popup,third-party (easylistchina+easylist.txt: 39520) -.hapend.biz -# ||hanaprop.com^$popup,third-party (easylistchina+easylist.txt: 39519) -.hanaprop.com -# ||gothot.org^$popup,third-party (easylistchina+easylist.txt: 39518) -.gothot.org -# ||freewebcams.com^$popup,third-party (easylistchina+easylist.txt: 39517) -.freewebcams.com -# ||fpctraffic2.com^$popup,third-party (easylistchina+easylist.txt: 39515) -.fpctraffic2.com -# ||fox-forden.ru^$popup,third-party (easylistchina+easylist.txt: 39514) -.fox-forden.ru -# ||foaks.com^$popup,third-party (easylistchina+easylist.txt: 39513) -.foaks.com -# ||filthads.com^$popup,third-party (easylistchina+easylist.txt: 39511) -.filthads.com -# ||exgfpunished.com^$popup,third-party (easylistchina+easylist.txt: 39508) -.exgfpunished.com -# ||everyporn.net^$popup,third-party (easylistchina+easylist.txt: 39507) -.everyporn.net -# ||ero-advertising.com^$popup,third-party (easylistchina+easylist.txt: 39505) -.ero-advertising.com -# ||ekod.info^$popup,third-party (easylistchina+easylist.txt: 39504) -.ekod.info -# ||ebocornac.com^$popup,third-party (easylistchina+easylist.txt: 39503) -.ebocornac.com -# ||dverser.ru^$popup,third-party (easylistchina+easylist.txt: 39501) -.dverser.ru -# ||doublegear.com^$popup,third-party (easylistchina+easylist.txt: 39500) -.doublegear.com -# ||chtic.net^$popup,third-party (easylistchina+easylist.txt: 39498) -.chtic.net -# ||chokertraffic.com^$popup,third-party (easylistchina+easylist.txt: 39497) -.chokertraffic.com -# ||c4tracking01.com^$popup,third-party (easylistchina+easylist.txt: 39496) -.c4tracking01.com -# ||banners.cams.com^$popup,third-party (easylistchina+easylist.txt: 39493) -.banners.cams.com -# ||aquete.com^$popup,third-party (easylistchina+easylist.txt: 39492) -.aquete.com -# ||adxpansion.com^$popup,third-party (easylistchina+easylist.txt: 39491) -.adxpansion.com -# ||adxite.com^$popup,third-party (easylistchina+easylist.txt: 39490) -.adxite.com -# ||adultmoda.com^$popup,third-party (easylistchina+easylist.txt: 39489) -.adultmoda.com -# ||adultadworld.com^$popup,third-party (easylistchina+easylist.txt: 39488) -.adultadworld.com -# ||adultadmedia.com^$popup,third-party (easylistchina+easylist.txt: 39487) -.adultadmedia.com -# ||adsnero.website^$popup,third-party (easylistchina+easylist.txt: 39485) -.adsnero.website -# ||45i73jv6.com^$popup,third-party (easylistchina+easylist.txt: 39484) -.45i73jv6.com -# ||3file.info^$popup,third-party (easylistchina+easylist.txt: 39482) -.3file.info -# ||zeroredirect1.com^$popup,third-party (easylistchina+easylist.txt: 38682) -.zeroredirect1.com -# ||zedo.com^$popup,third-party (easylistchina+easylist.txt: 38681) -.zedo.com -# ||z5x.net^$popup,third-party (easylistchina+easylist.txt: 38680) -.z5x.net -# ||yupiromo.ru^$popup,third-party (easylistchina+easylist.txt: 38679) -.yupiromo.ru -# ||yieldtraffic.com^$popup,third-party (easylistchina+easylist.txt: 38678) -.yieldtraffic.com -# ||yieldmanager.com^$popup,third-party (easylistchina+easylist.txt: 38677) -.yieldmanager.com -# ||xtendmedia.com^$popup,third-party (easylistchina+easylist.txt: 38676) -.xtendmedia.com -# ||xclicks.net^$popup,third-party (easylistchina+easylist.txt: 38675) -.xclicks.net -# ||xaxoro.com^$popup,third-party (easylistchina+easylist.txt: 38674) -.xaxoro.com -# ||wzus1.ask.com^$popup,third-party (easylistchina+easylist.txt: 38673) -.wzus1.ask.com -# ||wwwpromoter.com^$popup,third-party (easylistchina+easylist.txt: 38672) -.wwwpromoter.com -# ||worldrewardcenter.net^$popup,third-party (easylistchina+easylist.txt: 38671) -.worldrewardcenter.net -# ||wonderlandads.com^$popup,third-party (easylistchina+easylist.txt: 38670) -.wonderlandads.com -# ||wigetmedia.com^$popup,third-party (easylistchina+easylist.txt: 38669) -.wigetmedia.com -# ||whoads.net^$popup,third-party (easylistchina+easylist.txt: 38668) -.whoads.net -# ||weliketofuckstrangers.com^$popup,third-party (easylistchina+easylist.txt: 38667) -.weliketofuckstrangers.com -# ||webtrackerplus.com^$popup,third-party (easylistchina+easylist.txt: 38666) -.webtrackerplus.com -# ||websearchers.net^$popup,third-party (easylistchina+easylist.txt: 38665) -.websearchers.net -# ||weareheard.org^$popup,third-party (easylistchina+easylist.txt: 38664) -.weareheard.org -# ||wbsadsdel2.com^$popup,third-party (easylistchina+easylist.txt: 38663) -.wbsadsdel2.com -# ||wbsadsdel.com^$popup,third-party (easylistchina+easylist.txt: 38662) -.wbsadsdel.com -# ||wahoha.com^$popup,third-party (easylistchina+easylist.txt: 38661) -.wahoha.com -# ||waframedia5.com^$popup,third-party (easylistchina+easylist.txt: 38660) -.waframedia5.com -# ||w4statistics.info^$popup,third-party (easylistchina+easylist.txt: 38659) -.w4statistics.info -# ||vprmnwbskk.com^$popup,third-party (easylistchina+easylist.txt: 38658) -.vprmnwbskk.com -# ||vipcpms.com^$popup,third-party (easylistchina+easylist.txt: 38657) -.vipcpms.com -# ||vgsgaming-ads.com^$popup,third-party (easylistchina+easylist.txt: 38656) -.vgsgaming-ads.com -# ||updater-checker.net^$popup,third-party (easylistchina+easylist.txt: 38655) -.updater-checker.net -# ||twqiqiang.com^$popup,third-party (easylistchina+easylist.txt: 38654) -.twqiqiang.com -# ||tvas-b.pw^$popup,third-party (easylistchina+easylist.txt: 38653) -.tvas-b.pw -# ||tvas-a.pw^$popup,third-party (easylistchina+easylist.txt: 38652) -.tvas-a.pw -# ||tutvp.com^$popup,third-party (easylistchina+easylist.txt: 38651) -.tutvp.com -# ||trw12.com^$popup,third-party (easylistchina+easylist.txt: 38650) -.trw12.com -# ||trklnks.com^$popup,third-party (easylistchina+easylist.txt: 38649) -.trklnks.com -# ||traffichaus.com^$popup,third-party (easylistchina+easylist.txt: 38648) -.traffichaus.com -# ||trafficforce.com^$popup,third-party (easylistchina+easylist.txt: 38647) -.trafficforce.com -# ||tracki112.com^$popup,third-party (easylistchina+easylist.txt: 38646) -.tracki112.com -# ||totrack.ru^$popup,third-party (easylistchina+easylist.txt: 38645) -.totrack.ru -# ||totaladperformance.com^$popup,third-party (easylistchina+easylist.txt: 38644) -.totaladperformance.com -# ||toroadvertisingmedia.com^$popup,third-party (easylistchina+easylist.txt: 38643) -.toroadvertisingmedia.com -# ||topshelftraffic.com^$popup,third-party (easylistchina+easylist.txt: 38642) -.topshelftraffic.com -# ||tonefuse.com^$popup,third-party (easylistchina+easylist.txt: 38641) -.tonefuse.com -# ||tjoomo.com^$popup,third-party (easylistchina+easylist.txt: 38640) -.tjoomo.com -# ||therewardsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38639) -.therewardsurvey.com -# ||thepornsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38638) -.thepornsurvey.com -# ||the-consumer-reporter.org^$popup,third-party (easylistchina+easylist.txt: 38637) -.the-consumer-reporter.org -# ||the-binary-trader.biz^$popup,third-party (easylistchina+easylist.txt: 38636) -.the-binary-trader.biz -# ||textsrv.com^$popup,third-party (easylistchina+easylist.txt: 38635) -.textsrv.com -# ||terraclicks.com^$popup,third-party (easylistchina+easylist.txt: 38634) -.terraclicks.com -# ||technicssurveys.info^$popup,third-party (easylistchina+easylist.txt: 38633) -.technicssurveys.info -# ||techcloudtrk.com^$popup,third-party (easylistchina+easylist.txt: 38632) -.techcloudtrk.com -# ||td563.com^$popup,third-party (easylistchina+easylist.txt: 38631) -.td563.com -# ||syncedvision.com^$popup,third-party (easylistchina+easylist.txt: 38630) -.syncedvision.com -# ||symkashop.ru^$popup,third-party (easylistchina+easylist.txt: 38629) -.symkashop.ru -# ||swadvertising.org^$popup,third-party (easylistchina+easylist.txt: 38628) -.swadvertising.org -# ||surveystope.com^$popup,third-party (easylistchina+easylist.txt: 38627) -.surveystope.com -# ||surveyspaid.com^$popup,third-party (easylistchina+easylist.txt: 38626) -.surveyspaid.com -# ||surveysforgifts.org^$popup,third-party (easylistchina+easylist.txt: 38625) -.surveysforgifts.org -# ||surveyend.com^$popup,third-party (easylistchina+easylist.txt: 38624) -.surveyend.com -# ||statstrackeronline.com^$popup,third-party (easylistchina+easylist.txt: 38623) -.statstrackeronline.com -# ||statsmobi.com^$popup,third-party (easylistchina+easylist.txt: 38622) -.statsmobi.com -# ||stabletrappeddevote.info^$popup,third-party (easylistchina+easylist.txt: 38621) -.stabletrappeddevote.info -# ||srvpub.com^$popup,third-party (easylistchina+easylist.txt: 38620) -.srvpub.com -# ||srv2trking.com^$popup,third-party (easylistchina+easylist.txt: 38619) -.srv2trking.com -# ||srv-ad.com^$popup,third-party (easylistchina+easylist.txt: 38618) -.srv-ad.com -# ||sparkstudios.com^$popup,third-party (easylistchina+easylist.txt: 38617) -.sparkstudios.com -# ||smutty.com^$popup,third-party (easylistchina+easylist.txt: 38616) -.smutty.com -# ||sms-mmm.com^$popup,third-party (easylistchina+easylist.txt: 38615) -.sms-mmm.com -# ||smartwebads.com^$popup,third-party (easylistchina+easylist.txt: 38614) -.smartwebads.com -# ||slimspots.com^$popup,third-party (easylistchina+easylist.txt: 38613) -.slimspots.com -# ||slikslik.com^$popup,third-party (easylistchina+easylist.txt: 38612) -.slikslik.com -# ||singlesexdates.com^$popup,third-party (easylistchina+easylist.txt: 38611) -.singlesexdates.com -# ||simpleinternetupdate.com^$popup,third-party (easylistchina+easylist.txt: 38610) -.simpleinternetupdate.com -# ||silstavo.com^$popup,third-party (easylistchina+easylist.txt: 38609) -.silstavo.com -# ||sexitnow.com^$popup,third-party (easylistchina+easylist.txt: 38608) -.sexitnow.com -# ||servingit.co^$popup,third-party (easylistchina+easylist.txt: 38607) -.servingit.co -# ||serving-sys.com^$popup,third-party (easylistchina+easylist.txt: 38606) -.serving-sys.com -# ||senzapudore.it^$popup,third-party (easylistchina+easylist.txt: 38605) -.senzapudore.it -# ||secureintl.com^$popup,third-party (easylistchina+easylist.txt: 38604) -.secureintl.com -# ||rubikon6.if.ua^$popup,third-party (easylistchina+easylist.txt: 38603) -.rubikon6.if.ua -# ||roulettebotplus.com^$popup,third-party (easylistchina+easylist.txt: 38602) -.roulettebotplus.com -# ||ronetu.ru^$popup,third-party (easylistchina+easylist.txt: 38601) -.ronetu.ru -# ||ringtonepartner.com^$popup,third-party (easylistchina+easylist.txt: 38600) -.ringtonepartner.com -# ||ringtonematcher.com^$popup,third-party (easylistchina+easylist.txt: 38599) -.ringtonematcher.com -# ||rikhov.ru^$popup,third-party (easylistchina+easylist.txt: 38598) -.rikhov.ru -# ||rgadvert.com^$popup,third-party (easylistchina+easylist.txt: 38597) -.rgadvert.com -# ||retkow.com^$popup,third-party (easylistchina+easylist.txt: 38596) -.retkow.com -# ||rehok.km.ua^$popup,third-party (easylistchina+easylist.txt: 38595) -.rehok.km.ua -# ||rdsrv.com^$popup,third-party (easylistchina+easylist.txt: 38594) -.rdsrv.com -# ||ratari.ru^$popup,third-party (easylistchina+easylist.txt: 38593) -.ratari.ru -# ||raoplenort.biz^$popup,third-party (easylistchina+easylist.txt: 38592) -.raoplenort.biz -# ||pwrads.net^$popup,third-party (easylistchina+easylist.txt: 38591) -.pwrads.net -# ||pureadexchange.com^$popup,third-party (easylistchina+easylist.txt: 38590) -.pureadexchange.com -# ||pulse360.com^$popup,third-party (easylistchina+easylist.txt: 38589) -.pulse360.com -# ||pubted.com^$popup,third-party (easylistchina+easylist.txt: 38588) -.pubted.com -# ||pubdirecte.com^$popup,third-party (easylistchina+easylist.txt: 38587) -.pubdirecte.com -# ||pubads.g.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38586) -.pubads.g.doubleclick.net -# ||prowlerz.com^$popup,third-party (easylistchina+easylist.txt: 38585) -.prowlerz.com -# ||propellerpops.com^$popup,third-party (easylistchina+easylist.txt: 38584) -.propellerpops.com -# ||propellerads.com^$popup,third-party (easylistchina+easylist.txt: 38583) -.propellerads.com -# ||promotions.sportsbet.com.au^$popup,third-party (easylistchina+easylist.txt: 38582) -.promotions.sportsbet.com.au -# ||promotions-paradise.org^$popup,third-party (easylistchina+easylist.txt: 38581) -.promotions-paradise.org -# ||prizegiveaway.org^$popup,third-party (easylistchina+easylist.txt: 38580) -.prizegiveaway.org -# ||print3.info^$popup,third-party (easylistchina+easylist.txt: 38579) -.print3.info -# ||poponclick.com^$popup,third-party (easylistchina+easylist.txt: 38578) -.poponclick.com -# ||popmyads.com^$popup,third-party (easylistchina+easylist.txt: 38577) -.popmyads.com -# ||popads.net^$popup,third-party (easylistchina+easylist.txt: 38576) -.popads.net -# ||pomofon.ru^$popup,third-party (easylistchina+easylist.txt: 38575) -.pomofon.ru -# ||pointroll.com^$popup,third-party (easylistchina+easylist.txt: 38574) -.pointroll.com -# ||pointclicktrack.com^$popup,third-party (easylistchina+easylist.txt: 38573) -.pointclicktrack.com -# ||plsdrct2.me^$popup,third-party (easylistchina+easylist.txt: 38572) -.plsdrct2.me -# ||plexop.net^$popup,third-party (easylistchina+easylist.txt: 38571) -.plexop.net -# ||pipaoffers.com^$popup,third-party (easylistchina+easylist.txt: 38570) -.pipaoffers.com -# ||pgmediaserve.com^$popup,third-party (easylistchina+easylist.txt: 38569) -.pgmediaserve.com -# ||pexu.com^$popup,third-party (easylistchina+easylist.txt: 38568) -.pexu.com -# ||perfcreatives.com^$popup,third-party (easylistchina+easylist.txt: 38567) -.perfcreatives.com -# ||pdfcomplete.com^$popup,third-party (easylistchina+easylist.txt: 38566) -.pdfcomplete.com -# ||partypills.org^$popup,third-party (easylistchina+easylist.txt: 38565) -.partypills.org -# ||oxybe.com^$popup,third-party (easylistchina+easylist.txt: 38564) -.oxybe.com -# ||overturs.com^$popup,third-party (easylistchina+easylist.txt: 38563) -.overturs.com -# ||openadserving.com^$popup,third-party (easylistchina+easylist.txt: 38562) -.openadserving.com -# ||open-downloads.net^$popup,third-party (easylistchina+easylist.txt: 38561) -.open-downloads.net -# ||onlinecashmethod.com^$popup,third-party (easylistchina+easylist.txt: 38560) -.onlinecashmethod.com -# ||onlinecareerpackage.com^$popup,third-party (easylistchina+easylist.txt: 38559) -.onlinecareerpackage.com -# ||onhitads.net^$popup,third-party (easylistchina+easylist.txt: 38558) -.onhitads.net -# ||onclickads.net^$popup,third-party (easylistchina+easylist.txt: 38557) -.onclickads.net -# ||onad.eu^$popup,third-party (easylistchina+easylist.txt: 38556) -.onad.eu -# ||o333o.com^$popup,third-party (easylistchina+easylist.txt: 38555) -.o333o.com -# ||nymphdate.com^$popup,third-party (easylistchina+easylist.txt: 38554) -.nymphdate.com -# ||nturveev.com^$popup,third-party (easylistchina+easylist.txt: 38553) -.nturveev.com -# ||netliker.com^$popup,third-party (easylistchina+easylist.txt: 38552) -.netliker.com -# ||n388hkxg.com^$popup,third-party (easylistchina+easylist.txt: 38551) -.n388hkxg.com -# ||my-layer.net^$popup,third-party (easylistchina+easylist.txt: 38550) -.my-layer.net -# ||moneytec.com^$popup,third-party (easylistchina+easylist.txt: 38549) -.moneytec.com -# ||mobileraffles.com^$popup,third-party (easylistchina+easylist.txt: 38548) -.mobileraffles.com -# ||mktmobi.com^$popup,third-party (easylistchina+easylist.txt: 38547) -.mktmobi.com -# ||millionairesurveys.com^$popup,third-party (easylistchina+easylist.txt: 38546) -.millionairesurveys.com -# ||metodoroleta24h.com^$popup,third-party (easylistchina+easylist.txt: 38545) -.metodoroleta24h.com -# ||menepe.com^$popup,third-party (easylistchina+easylist.txt: 38544) -.menepe.com -# ||megapopads.com^$popup,third-party (easylistchina+easylist.txt: 38543) -.megapopads.com -# ||meetsexygirls.org^$popup,third-party (easylistchina+easylist.txt: 38542) -.meetsexygirls.org -# ||meetgoodgirls.com^$popup,third-party (easylistchina+easylist.txt: 38541) -.meetgoodgirls.com -# ||mediaseeding.com^$popup,third-party (easylistchina+easylist.txt: 38540) -.mediaseeding.com -# ||media-servers.net^$popup,third-party (easylistchina+easylist.txt: 38539) -.media-servers.net -# ||media-app.com^$popup,third-party (easylistchina+easylist.txt: 38538) -.media-app.com -# ||mdn2015x1.com^$popup,third-party (easylistchina+easylist.txt: 38537) -.mdn2015x1.com -# ||marketresearchglobal.com^$popup,third-party (easylistchina+easylist.txt: 38536) -.marketresearchglobal.com -# ||maomaotang.com^$popup,third-party (easylistchina+easylist.txt: 38535) -.maomaotang.com -# ||m57ku6sm.com^$popup,third-party (easylistchina+easylist.txt: 38534) -.m57ku6sm.com -# ||lustigbanner.com^$popup,third-party (easylistchina+easylist.txt: 38533) -.lustigbanner.com -# ||lnkgt.com^$popup,third-party (easylistchina+easylist.txt: 38532) -.lnkgt.com -# ||lmebxwbsno.com^$popup,third-party (easylistchina+easylist.txt: 38531) -.lmebxwbsno.com -# ||liversely.net^$popup,third-party (easylistchina+easylist.txt: 38530) -.liversely.net -# ||livepromotools.com^$popup,third-party (easylistchina+easylist.txt: 38529) -.livepromotools.com -# ||livechatflirt.com^$popup,third-party (easylistchina+easylist.txt: 38528) -.livechatflirt.com -# ||ligatus.com^$popup,third-party (easylistchina+easylist.txt: 38527) -.ligatus.com -# ||letshareus.com^$popup,third-party (easylistchina+easylist.txt: 38526) -.letshareus.com -# ||legisland.net^$popup,third-party (easylistchina+easylist.txt: 38525) -.legisland.net -# ||landsraad.cc^$popup,third-party (easylistchina+easylist.txt: 38524) -.landsraad.cc -# ||kanoodle.com^$popup,third-party (easylistchina+easylist.txt: 38523) -.kanoodle.com -# ||junbi-tracker.com^$popup,third-party (easylistchina+easylist.txt: 38522) -.junbi-tracker.com -# ||jujzh9va.com^$popup,third-party (easylistchina+easylist.txt: 38521) -.jujzh9va.com -# ||jdtracker.com^$popup,third-party (easylistchina+easylist.txt: 38520) -.jdtracker.com -# ||integral-marketing.com^$popup,third-party (easylistchina+easylist.txt: 38519) -.integral-marketing.com -# ||instantpaydaynetwork.com^$popup,third-party (easylistchina+easylist.txt: 38518) -.instantpaydaynetwork.com -# ||insta-cash.net^$popup,third-party (easylistchina+easylist.txt: 38517) -.insta-cash.net -# ||indianweeklynews.com^$popup,third-party (easylistchina+easylist.txt: 38516) -.indianweeklynews.com -# ||inbinaryoption.com^$popup,third-party (easylistchina+easylist.txt: 38514) -.inbinaryoption.com -# ||ilividnewtab.com^$popup,third-party (easylistchina+easylist.txt: 38513) -.ilividnewtab.com -# ||iiasdomk1m9812m4z3.com^$popup,third-party (easylistchina+easylist.txt: 38512) -.iiasdomk1m9812m4z3.com -# ||ifilez.org^$popup,third-party (easylistchina+easylist.txt: 38511) -.ifilez.org -# ||hstpnetwork.com^$popup,third-party (easylistchina+easylist.txt: 38510) -.hstpnetwork.com -# ||hotchatdirect.com^$popup,third-party (easylistchina+easylist.txt: 38509) -.hotchatdirect.com -# ||hornygirlsexposed.com^$popup,third-party (easylistchina+easylist.txt: 38508) -.hornygirlsexposed.com -# ||homecareerforyou1.info^$popup,third-party (easylistchina+easylist.txt: 38507) -.homecareerforyou1.info -# ||hilltopads.net^$popup,third-party (easylistchina+easylist.txt: 38506) -.hilltopads.net -# ||highcpms.com^$popup,third-party (easylistchina+easylist.txt: 38505) -.highcpms.com -# ||hd-plugin.com^$popup,third-party (easylistchina+easylist.txt: 38504) -.hd-plugin.com -# ||gsniper2.com^$popup,third-party (easylistchina+easylist.txt: 38503) -.gsniper2.com -# ||greatbranddeals.com^$popup,third-party (easylistchina+easylist.txt: 38502) -.greatbranddeals.com -# ||gotoplaymillion.com^$popup,third-party (easylistchina+easylist.txt: 38501) -.gotoplaymillion.com -# ||googleads.g.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38500) -.googleads.g.doubleclick.net -# ||gofindmedia.net^$popup,third-party (easylistchina+easylist.txt: 38499) -.gofindmedia.net -# ||giveaways.club^$popup,third-party (easylistchina+easylist.txt: 38498) -.giveaways.club -# ||gib-gib-la.com^$popup,third-party (easylistchina+easylist.txt: 38497) -.gib-gib-la.com -# ||ganja.com^$popup,third-party (easylistchina+easylist.txt: 38496) -.ganja.com -# ||g05.info^$popup,third-party (easylistchina+easylist.txt: 38495) -.g05.info -# ||frtya.com^$popup,third-party (easylistchina+easylist.txt: 38494) -.frtya.com -# ||friendlyduck.com^$popup,third-party (easylistchina+easylist.txt: 38493) -.friendlyduck.com -# ||fmdwbsfxf0.com^$popup,third-party (easylistchina+easylist.txt: 38492) -.fmdwbsfxf0.com -# ||firstmediahub.com^$popup,third-party (easylistchina+easylist.txt: 38491) -.firstmediahub.com -# ||firstclass-download.com^$popup,third-party (easylistchina+easylist.txt: 38490) -.firstclass-download.com -# ||findonlinesurveysforcash.com^$popup,third-party (easylistchina+easylist.txt: 38489) -.findonlinesurveysforcash.com -# ||finance-reporting.org^$popup,third-party (easylistchina+easylist.txt: 38488) -.finance-reporting.org -# ||filestube.com^$popup,third-party (easylistchina+easylist.txt: 38487) -.filestube.com -# ||fidel.to^$popup,third-party (easylistchina+easylist.txt: 38486) -.fidel.to -# ||fhserve.com^$popup,third-party (easylistchina+easylist.txt: 38485) -.fhserve.com -# ||f-questionnaire.com^$popup,third-party (easylistchina+easylist.txt: 38484) -.f-questionnaire.com -# ||f-hookups.com^$popup,third-party (easylistchina+easylist.txt: 38483) -.f-hookups.com -# ||ezdownloadpro.info^$popup,third-party (easylistchina+easylist.txt: 38482) -.ezdownloadpro.info -# ||exoclick.com^$popup,third-party (easylistchina+easylist.txt: 38481) -.exoclick.com -# ||ewebse.com^$popup,third-party (easylistchina+easylist.txt: 38480) -.ewebse.com -# ||euromillionairesystem.me^$popup,third-party (easylistchina+easylist.txt: 38479) -.euromillionairesystem.me -# ||eroanalysis.com^$popup,third-party (easylistchina+easylist.txt: 38478) -.eroanalysis.com -# ||epicgameads.com^$popup,third-party (easylistchina+easylist.txt: 38477) -.epicgameads.com -# ||ebzkswbs78.com^$popup,third-party (easylistchina+easylist.txt: 38476) -.ebzkswbs78.com -# ||easykits.org^$popup,third-party (easylistchina+easylist.txt: 38475) -.easykits.org -# ||easydownloadnow.com^$popup,third-party (easylistchina+easylist.txt: 38474) -.easydownloadnow.com -# ||durokuro.com^$popup,third-party (easylistchina+easylist.txt: 38473) -.durokuro.com -# ||downloadthesefile.com^$popup,third-party (easylistchina+easylist.txt: 38472) -.downloadthesefile.com -# ||downloadboutique.com^$popup,third-party (easylistchina+easylist.txt: 38471) -.downloadboutique.com -# ||down1oads.com^$popup,third-party (easylistchina+easylist.txt: 38470) -.down1oads.com -# ||doublepimp.com^$popup,third-party (easylistchina+easylist.txt: 38469) -.doublepimp.com -# ||dojerena.com^$popup,third-party (easylistchina+easylist.txt: 38468) -.dojerena.com -# ||distantstat.com^$popup,third-party (easylistchina+easylist.txt: 38467) -.distantstat.com -# ||distantnews.com^$popup,third-party (easylistchina+easylist.txt: 38466) -.distantnews.com -# ||directrev.com^$popup,third-party (easylistchina+easylist.txt: 38465) -.directrev.com -# ||denza.pro^$popup,third-party (easylistchina+easylist.txt: 38464) -.denza.pro -# ||crazyad.net^$popup,third-party (easylistchina+easylist.txt: 38463) -.crazyad.net -# ||cpvadvertise.com^$popup,third-party (easylistchina+easylist.txt: 38462) -.cpvadvertise.com -# ||cpmterra.com^$popup,third-party (easylistchina+easylist.txt: 38461) -.cpmterra.com -# ||cpmstar.com^$popup,third-party (easylistchina+easylist.txt: 38460) -.cpmstar.com -# ||cpayard.com^$popup,third-party (easylistchina+easylist.txt: 38459) -.cpayard.com -# ||contractallsinstance.info^$popup,third-party (easylistchina+easylist.txt: 38458) -.contractallsinstance.info -# ||contentabc.com^$popup,third-party (easylistchina+easylist.txt: 38457) -.contentabc.com -# ||computersoftwarelive.com^$popup,third-party (easylistchina+easylist.txt: 38456) -.computersoftwarelive.com -# ||cmllk2.info^$popup,third-party (easylistchina+easylist.txt: 38455) -.cmllk2.info -# ||clpremdo.com^$popup,third-party (easylistchina+easylist.txt: 38454) -.clpremdo.com -# ||cloudtracked.com^$popup,third-party (easylistchina+easylist.txt: 38453) -.cloudtracked.com -# ||clkrev.com^$popup,third-party (easylistchina+easylist.txt: 38452) -.clkrev.com -# ||clkmon.com^$popup,third-party (easylistchina+easylist.txt: 38451) -.clkmon.com -# ||clkads.com^$popup,third-party (easylistchina+easylist.txt: 38450) -.clkads.com -# ||clicktripz.com^$popup,third-party (easylistchina+easylist.txt: 38449) -.clicktripz.com -# ||clickter.net^$popup,third-party (easylistchina+easylist.txt: 38448) -.clickter.net -# ||clicksvenue.com^$popup,third-party (easylistchina+easylist.txt: 38447) -.clicksvenue.com -# ||clicksor.com^$popup,third-party (easylistchina+easylist.txt: 38446) -.clicksor.com -# ||clickosmedia.com^$popup,third-party (easylistchina+easylist.txt: 38445) -.clickosmedia.com -# ||clickmngr.com^$popup,third-party (easylistchina+easylist.txt: 38444) -.clickmngr.com -# ||clickfuse.com^$popup,third-party (easylistchina+easylist.txt: 38443) -.clickfuse.com -# ||casino.betsson.com^$popup,third-party (easylistchina+easylist.txt: 38442) -.casino.betsson.com -# ||callhelpmetaroll.rocks^$popup,third-party (easylistchina+easylist.txt: 38440) -.callhelpmetaroll.rocks -# ||bzrvwbsh5o.com^$popup,third-party (easylistchina+easylist.txt: 38439) -.bzrvwbsh5o.com -# ||brandreachsys.com^$popup,third-party (easylistchina+easylist.txt: 38438) -.brandreachsys.com -# ||bonzuna.com^$popup,third-party (easylistchina+easylist.txt: 38437) -.bonzuna.com -# ||bongacams.com^$popup,third-party (easylistchina+easylist.txt: 38436) -.bongacams.com -# ||blogscash.info^$popup,third-party (easylistchina+easylist.txt: 38435) -.blogscash.info -# ||blockthis.es^$popup,third-party (easylistchina+easylist.txt: 38434) -.blockthis.es -# ||blinkogold.es^$popup,third-party (easylistchina+easylist.txt: 38433) -.blinkogold.es -# ||blinko.es^$popup,third-party (easylistchina+easylist.txt: 38432) -.blinko.es -# ||binaryoptionsgame.com^$popup,third-party (easylistchina+easylist.txt: 38431) -.binaryoptionsgame.com -# ||bighot.ru^$popup,third-party (easylistchina+easylist.txt: 38430) -.bighot.ru -# ||bidvertiser.com^$popup,third-party (easylistchina+easylist.txt: 38429) -.bidvertiser.com -# ||bidsystem.com^$popup,third-party (easylistchina+easylist.txt: 38428) -.bidsystem.com -# ||bestproducttesters.com^$popup,third-party (easylistchina+easylist.txt: 38427) -.bestproducttesters.com -# ||best-zb.com^$popup,third-party (easylistchina+easylist.txt: 38426) -.best-zb.com -# ||bentdownload.com^$popup,third-party (easylistchina+easylist.txt: 38425) -.bentdownload.com -# ||becoquins.net^$popup,third-party (easylistchina+easylist.txt: 38424) -.becoquins.net -# ||becoquin.com^$popup,third-party (easylistchina+easylist.txt: 38423) -.becoquin.com -# ||bbuni.com^$popup,third-party (easylistchina+easylist.txt: 38422) -.bbuni.com -# ||baypops.com^$popup,third-party (easylistchina+easylist.txt: 38421) -.baypops.com -# ||awsclic.com^$popup,third-party (easylistchina+easylist.txt: 38420) -.awsclic.com -# ||awempire.com^$popup,third-party (easylistchina+easylist.txt: 38419) -.awempire.com -# ||avalopaly.com^$popup,third-party (easylistchina+easylist.txt: 38418) -.avalopaly.com -# ||august15download.com^$popup,third-party (easylistchina+easylist.txt: 38417) -.august15download.com -# ||ar.voicefive.com^$popup,third-party (easylistchina+easylist.txt: 38416) -.ar.voicefive.com -# ||answered-questions.com^$popup,third-party (easylistchina+easylist.txt: 38415) -.answered-questions.com -# ||annualinternetsurvey.com^$popup,third-party (easylistchina+easylist.txt: 38414) -.annualinternetsurvey.com -# ||angege.com^$popup,third-party (easylistchina+easylist.txt: 38413) -.angege.com -# ||am10.ru^$popup,third-party (easylistchina+easylist.txt: 38412) -.am10.ru -# ||alternads.info^$popup,third-party (easylistchina+easylist.txt: 38411) -.alternads.info -# ||alpinedrct.com^$popup,third-party (easylistchina+easylist.txt: 38410) -.alpinedrct.com -# ||allsporttv.com^$popup,third-party (easylistchina+easylist.txt: 38409) -.allsporttv.com -# ||allslotscasino.com^$popup,third-party (easylistchina+easylist.txt: 38408) -.allslotscasino.com -# ||aflrm.com^$popup,third-party (easylistchina+easylist.txt: 38407) -.aflrm.com -# ||affbuzzads.com^$popup,third-party (easylistchina+easylist.txt: 38406) -.affbuzzads.com -# ||advmedialtd.com^$popup,third-party (easylistchina+easylist.txt: 38405) -.advmedialtd.com -# ||advertserve.com^$popup,third-party (easylistchina+easylist.txt: 38404) -.advertserve.com -# ||adtraffic.org^$popup,third-party (easylistchina+easylist.txt: 38403) -.adtraffic.org -# ||adtrace.org^$popup,third-party (easylistchina+easylist.txt: 38402) -.adtrace.org -# ||adsurve.com^$popup,third-party (easylistchina+easylist.txt: 38401) -.adsurve.com -# ||adsupplyads.com^$popup,third-party (easylistchina+easylist.txt: 38400) -.adsupplyads.com -# ||adsupply.com^$popup,third-party (easylistchina+easylist.txt: 38399) -.adsupply.com -# ||adsmarket.com^$popup,third-party (easylistchina+easylist.txt: 38398) -.adsmarket.com -# ||adshostnet.com^$popup,third-party (easylistchina+easylist.txt: 38397) -.adshostnet.com -# ||adserverplus.com^$popup,third-party (easylistchina+easylist.txt: 38396) -.adserverplus.com -# ||ads.sexier.com^$popup,third-party (easylistchina+easylist.txt: 38395) -.ads.sexier.com -# ||adplxmd.com^$popup,third-party (easylistchina+easylist.txt: 38394) -.adplxmd.com -# ||adonweb.ru^$popup,third-party (easylistchina+easylist.txt: 38393) -.adonweb.ru -# ||adnxs.com^$popup,third-party (easylistchina+easylist.txt: 38392) -.adnxs.com -# ||adnetworkperformance.com^$popup,third-party (easylistchina+easylist.txt: 38391) -.adnetworkperformance.com -# ||adlure.net^$popup,third-party (easylistchina+easylist.txt: 38390) -.adlure.net -# ||adk2x.com^$popup,third-party (easylistchina+easylist.txt: 38389) -.adk2x.com -# ||adk2.net^$popup,third-party (easylistchina+easylist.txt: 38388) -.adk2.net -# ||adk2.com^$popup,third-party (easylistchina+easylist.txt: 38387) -.adk2.com -# ||adk2.co^$popup,third-party (easylistchina+easylist.txt: 38386) -.adk2.co -# ||adjuggler.net^$popup,third-party (easylistchina+easylist.txt: 38385) -.adjuggler.net -# ||aditor.com^$popup,third-party (easylistchina+easylist.txt: 38384) -.aditor.com -# ||adimps.com^$popup,third-party (easylistchina+easylist.txt: 38383) -.adimps.com -# ||adform.net^$popup,third-party (easylistchina+easylist.txt: 38382) -.adform.net -# ||adfarm.mediaplex.com^$popup,third-party (easylistchina+easylist.txt: 38381) -.adfarm.mediaplex.com -# ||adcdnx.com^$popup,third-party (easylistchina+easylist.txt: 38380) -.adcdnx.com -# ||adcash.com^$popup,third-party (easylistchina+easylist.txt: 38379) -.adcash.com -# ||adbma.com^$popup,third-party (easylistchina+easylist.txt: 38378) -.adbma.com -# ||ad4game.com^$popup,third-party (easylistchina+easylist.txt: 38377) -.ad4game.com -# ||ad2games.com^$popup,third-party (easylistchina+easylist.txt: 38376) -.ad2games.com -# ||ad2387.com^$popup,third-party (easylistchina+easylist.txt: 38375) -.ad2387.com -# ||ad131m.com^$popup,third-party (easylistchina+easylist.txt: 38374) -.ad131m.com -# ||ad.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38373) -.ad.doubleclick.net -# ||ad-feeds.com^$popup,third-party (easylistchina+easylist.txt: 38372) -.ad-feeds.com -# ||ad-emea.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38371) -.ad-emea.doubleclick.net -# ||ad-apac.doubleclick.net^$popup,third-party (easylistchina+easylist.txt: 38370) -.ad-apac.doubleclick.net -# ||absoluteclickscom.com^$popup,third-party (easylistchina+easylist.txt: 38369) -.absoluteclickscom.com -# ||abbeyblog.me^$popup,third-party (easylistchina+easylist.txt: 38368) -.abbeyblog.me -# ||9newstoday.net^$popup,third-party (easylistchina+easylist.txt: 38367) -.9newstoday.net -# ||888promos.com^$popup,third-party (easylistchina+easylist.txt: 38366) -.888promos.com -# ||888poker.com^$popup,third-party (easylistchina+easylist.txt: 38365) -.888poker.com -# ||888media.net^$popup,third-party (easylistchina+easylist.txt: 38364) -.888media.net -# ||888games.com^$popup,third-party (easylistchina+easylist.txt: 38363) -.888games.com -# ||888casino.com^$popup,third-party (easylistchina+easylist.txt: 38362) -.888casino.com -# ||83nsdjqqo1cau183xz.com^$popup,third-party (easylistchina+easylist.txt: 38361) -.83nsdjqqo1cau183xz.com -# ||5dimes.com^$popup,third-party (easylistchina+easylist.txt: 38360) -.5dimes.com -# ||4dsply.com^$popup,third-party (easylistchina+easylist.txt: 38359) -.4dsply.com -# ||360adstrack.com^$popup,third-party (easylistchina+easylist.txt: 38358) -.360adstrack.com -# ||360adshost.net^$popup,third-party (easylistchina+easylist.txt: 38357) -.360adshost.net -# ||32d1d3b9c.se^$popup,third-party (easylistchina+easylist.txt: 38356) -.32d1d3b9c.se -# ||30daychange.co^$popup,third-party (easylistchina+easylist.txt: 38355) -.30daychange.co -# ||2mdn.info^$popup,third-party (easylistchina+easylist.txt: 38354) -.2mdn.info -# ||1phads.com^$popup,third-party (easylistchina+easylist.txt: 38353) -.1phads.com -# ||1afcfcb2c.ninja^$popup,third-party (easylistchina+easylist.txt: 38352) -.1afcfcb2c.ninja -# ||123vidz.com^$popup,third-party (easylistchina+easylist.txt: 38351) -.123vidz.com -# /redirect.spark?$popup,third-party (easylistchina+easylist.txt: 17641) -/(.*/)?redirect\.spark\? -# /fp.engine?$popup,third-party (easylistchina+easylist.txt: 17630) -/(.*/)?fp\.engine\? -# &link_type=offer$popup,third-party (easylistchina+easylist.txt: 17602) -/.*&link_type=offer -# ||vnet.cn^*.html?$popup,third-party (easylistchina+easylist.txt: 1082) +# ||vnet.cn^*.html?$popup,third-party (easylistchina.txt: 1106) .vnet.cn/.*\.html\? -# ||todayapp.cc^$popup,third-party (easylistchina+easylist.txt: 1080) +# ||todayapp.cc^$popup,third-party (easylistchina.txt: 1105) .todayapp.cc -# ||son999.com^$popup,third-party (easylistchina+easylist.txt: 1077) +# ||son999.com^$popup,third-party (easylistchina.txt: 1101) .son999.com -# ||moe.005.tv^$popup,third-party (easylistchina+easylist.txt: 1072) +# ||moe.005.tv^$popup,third-party (easylistchina.txt: 1096) .moe.005.tv -# ||iswan.cn^$popup,third-party (easylistchina+easylist.txt: 1067) +# ||iswan.cn^$popup,third-party (easylistchina.txt: 1091) .iswan.cn -# ||gxp.cc^$popup,third-party (easylistchina+easylist.txt: 1063) -.gxp.cc -# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina+easylist.txt: 1061) +# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina.txt: 1086) .gd.ct10000.com/.*/push/ -# ||gd.189.cn^*/push/$popup,third-party (easylistchina+easylist.txt: 1060) +# ||gd.189.cn^*/push/$popup,third-party (easylistchina.txt: 1085) .gd.189.cn/.*/push/ -# ||gd.189.cn/push/$popup,third-party (easylistchina+easylist.txt: 1059) +# ||gd.189.cn/push/$popup,third-party (easylistchina.txt: 1084) .gd.189.cn/push/ -# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina+easylist.txt: 1058) +# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina.txt: 1083) .gd.189.cn/gz/promotion/ -# ||gd.189.cn/ad/$popup,third-party (easylistchina+easylist.txt: 1057) +# ||gd.189.cn/ad/$popup,third-party (easylistchina.txt: 1082) .gd.189.cn/ad/ -# ||dhqp68.com^$popup,third-party (easylistchina+easylist.txt: 1056) +# ||dhqp68.com^$popup,third-party (easylistchina.txt: 1080) .dhqp68.com -# ||cnyjk.com^$popup,third-party (easylistchina+easylist.txt: 1055) -.cnyjk.com -# ||093game.com^$popup,third-party (easylistchina+easylist.txt: 1045) +# ||093game.com^$popup,third-party (easylistchina.txt: 1068) .093game.com -# /pushstart.aspx?$popup,third-party (easylistchina+easylist.txt: 1043) +# /pushstart.aspx?$popup,third-party (easylistchina.txt: 1066) /(.*/)?pushstart\.aspx\? -# /pushportal/PushPortalServer$popup,third-party (easylistchina+easylist.txt: 1042) +# /pushportal/PushPortalServer$popup,third-party (easylistchina.txt: 1065) /(.*/)?pushportal/PushPortalServer -# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina+easylist.txt: 1039) +# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina.txt: 1062) /(.*/)?BadwebRemindPage\.aspx\?param= -# .com/?Intr=$popup,third-party (easylistchina+easylist.txt: 1037) +# .com/?Intr=$popup,third-party (easylistchina.txt: 1060) /.*\.com/\?Intr= .*.com/\?Intr= -# .com/?aff=$popup,third-party (easylistchina+easylist.txt: 1036) +# .com/?aff=$popup,third-party (easylistchina.txt: 1059) /.*\.com/\?aff= .*.com/\?aff= -# .189.gd^*.html?p=$popup,third-party (easylistchina+easylist.txt: 1035) +# .189.gd^*.html?p=$popup,third-party (easylistchina.txt: 1058) /.*\.189\.gd[^\w%.-].*\.html\?p= .*.189.gd/.*\.html\?p= -# ||itpodol.ru^$third-party,popup (advblock.txt: 2429) -.itpodol.ru -# ||vezuha.me^$third-party,popup (advblock.txt: 188) -.vezuha.me -# ||test-studio.ru^$third-party,popup (advblock.txt: 184) -.test-studio.ru -# ||sapato.ru^$third-party,popup (advblock.txt: 174) -.sapato.ru -# ||electblogers.com^$third-party,popup (advblock.txt: 140) -.electblogers.com -# ||24smile.$third-party,popup (advblock.txt: 111) -.24smile.*. -# ||cbn.tbn.ru^$third-party,popup (advblock.txt: 72) -.cbn.tbn.ru -# ||streamtunerhd.com/signup?$popup,third-party (easylist.txt: 35703) -.streamtunerhd.com/signup\? -# ||yuvutu.com^$popup,third-party (easylist.txt: 31408) -.yuvutu.com -# ||xvideoslive.com/landing/$popup,third-party (easylist.txt: 31407) -.xvideoslive.com/landing/ -# ||xvideoslive.com/?AFNO$popup,third-party (easylist.txt: 31406) -.xvideoslive.com/\?AFNO -# ||xrounds.com/?lmid=$popup,third-party (easylist.txt: 31405) -.xrounds.com/\?lmid= -# ||xdating.com/search/$popup,third-party (easylist.txt: 31404) -.xdating.com/search/ -# ||webcams.com^$popup,third-party (easylist.txt: 31403) -.webcams.com -# ||vs3.com^$popup,third-party (easylist.txt: 31401) -.vs3.com -# ||visit-x.net/cams/*.html?*&s=*&ws=$popup,third-party (easylist.txt: 31400) -.visit-x.net/cams/.*\.html\?.*&s=.*&ws= -# ||videosz.com^*&tracker_id=$popup,third-party (easylist.txt: 31399) -.videosz.com/.*&tracker_id= -# ||videosz.com/search.php$popup,third-party (easylist.txt: 31398) -.videosz.com/search\.php -# ||twistys.com/track/$popup,third-party (easylist.txt: 31394) -.twistys.com/track/ -# ||tube911.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylist.txt: 31393) -.tube911.com/scj/cgi/out\.php\?scheme_id= -# ||tour.mrskin.com^$popup,third-party (easylist.txt: 31392) -.tour.mrskin.com -# ||teenslikeitbig.com/track/$popup,third-party (easylist.txt: 31389) -.teenslikeitbig.com/track/ -# ||socialflirt.com/go/$popup,third-party (easylist.txt: 31387) -.socialflirt.com/go/ -# ||sexsearchcom.com^$popup,third-party (easylist.txt: 31386) -.sexsearchcom.com -# ||sexier.com/services/adsredirect.ashx?$popup,third-party (easylist.txt: 31384) -.sexier.com/services/adsredirect\.ashx\? -# ||rudefinder.com/?$popup,third-party (easylist.txt: 31380) -.rudefinder.com/\? -# ||redlightcenter.com/?trq=$popup,third-party (easylist.txt: 31378) -.redlightcenter.com/\?trq= -# ||postselfies.com^*?nats=$popup,third-party (easylist.txt: 31377) -.postselfies.com/.*\?nats= -# ||pornme.com^*.php?ref=$popup,third-party (easylist.txt: 31373) -.pornme.com/.*\.php\?ref= -# ||online.mydirtyhobby.com^*?naff=$popup,third-party (easylist.txt: 31370) -.online.mydirtyhobby.com/.*\?naff= -# ||mydirtyhobby.com/?$popup,third-party (easylist.txt: 31368) -.mydirtyhobby.com/\? -# ||mjtlive.com/exports/golive/?lp=*&afno=$popup,third-party (easylist.txt: 31367) -.mjtlive.com/exports/golive/\?lp=.*&afno= -# ||media.campartner.com^*?cp=$popup,third-party (easylist.txt: 31365) -.media.campartner.com/.*\?cp= -# ||media.campartner.com/index.php?cpID=*&cpMID=$popup,third-party (easylist.txt: 31364) -.media.campartner.com/index\.php\?cpID=.*&cpMID= -# ||livejasmin.com^$popup,third-party (easylist.txt: 31363) -.livejasmin.com -# ||linkfame.com^*/go.php?$popup,third-party (easylist.txt: 31361) -.linkfame.com/.*/go\.php\? -# ||letstryanal.com/track/$popup,third-party (easylist.txt: 31360) -.letstryanal.com/track/ -# ||join.teamskeet.com/track/$popup,third-party (easylist.txt: 31357) -.join.teamskeet.com/track/ -# ||join.filthydatez.com^$popup,third-party (easylist.txt: 31356) -.join.filthydatez.com -# ||jasmin.com^$popup,third-party (easylist.txt: 31355) -.jasmin.com -# ||ipornia.com/scj/cgi/out.php?scheme_id=$popup,third-party (easylist.txt: 31354) -.ipornia.com/scj/cgi/out\.php\?scheme_id= -# ||imlive.com/wmaster.ashx?$popup,third-party (easylist.txt: 31353) -.imlive.com/wmaster\.ashx\? -# ||hqtubevideos.com/play.html$popup,third-party (easylist.txt: 31351) -.hqtubevideos.com/play\.html -# ||fuckbooknet.net/dating/$popup,third-party (easylist.txt: 31346) -.fuckbooknet.net/dating/ -# ||flirt4free.com/_special/pops/$popup,third-party (easylist.txt: 31344) -.flirt4free.com/_special/pops/ -# ||fleshlight-international.eu^*?link=$popup,third-party (easylist.txt: 31342) -.fleshlight-international.eu/.*\?link= -# ||exposedwebcams.com/?token=$popup,third-party (easylist.txt: 31338) -.exposedwebcams.com/\?token= -# ||devilsfilm.com/track/go.php?$popup,third-party (easylist.txt: 31336) -.devilsfilm.com/track/go\.php\? -# ||cpm.amateurcommunity.*?cp=$popup,third-party (easylist.txt: 31335) -.cpm.amateurcommunity.*./.*\?cp= -# ||benaughty.com/aff.php?$popup,third-party (easylist.txt: 31329) -.benaughty.com/aff\.php\? -# ||babecams.net/landing/$popup,third-party (easylist.txt: 31327) -.babecams.net/landing/ -# ||amarotic.com^*?wmid=$popup,third-party (easylist.txt: 31326) -.amarotic.com/.*\?wmid= -# ||amarotic.com/?$popup,third-party (easylist.txt: 31325) -.amarotic.com/\? -# ||adultfriendfinder.com/go/$popup,third-party (easylist.txt: 31324) -.adultfriendfinder.com/go/ -# ||adultfriendfinder.com/banners/$popup,third-party (easylist.txt: 31323) -.adultfriendfinder.com/banners/ -# ||777livecams.com/?id=$popup,third-party (easylist.txt: 31322) -.777livecams.com/\?id= -# ||1800freecams.com^$popup,third-party (easylist.txt: 31320) -.1800freecams.com -# ||withbinaryoptions.com^$popup,third-party (easylist.txt: 30891) -.withbinaryoptions.com -# ||with-binaryoption.com^$popup,third-party (easylist.txt: 30890) -.with-binaryoption.com -# ||widget.yavli.com^$popup,third-party (easylist.txt: 30889) -.widget.yavli.com -# ||wealth-at-home-millions.com^$popup,third-party (easylist.txt: 30887) -.wealth-at-home-millions.com -# ||virtuagirl.com/landing/$popup,third-party (easylist.txt: 30886) -.virtuagirl.com/landing/ -# ||vidds.net/?s=promo$popup,third-party (easylist.txt: 30885) -.vidds.net/\?s=promo -# ||urmediazone.com/play?ref=$popup,third-party (easylist.txt: 30883) -.urmediazone.com/play\?ref= -# ||tripadvisor.*/HotelLander?$popup,third-party (easylist.txt: 30877) -.tripadvisor.*./(.*/)?HotelLander\? -# ||track.xtrasize.nl^$popup,third-party (easylist.txt: 30876) -.track.xtrasize.nl -# ||track.mypcbackup.com^$popup,third-party (easylist.txt: 30875) -.track.mypcbackup.com -# ||torntv-tvv.org^$popup,third-party (easylist.txt: 30874) -.torntv-tvv.org -# ||tipico.com^*?affiliateid=$popup,third-party (easylist.txt: 30873) -.tipico.com/.*\?affiliateid= -# ||thetraderinpajamas.com^$popup,third-party (easylist.txt: 30872) -.thetraderinpajamas.com -# ||thebestbookies.com^$popup,third-party (easylist.txt: 30870) -.thebestbookies.com -# ||sunmaker.com^*^a_aid^$popup,third-party (easylist.txt: 30869) -.sunmaker.com/.*[^\w%.-]a_aid[^\w%.-] -# ||stargames.com/web/*&cid=*&pid=$popup,third-party (easylist.txt: 30868) -.stargames.com/web/.*&cid=.*&pid= -# ||stake7.com^*?a_aid=$popup,third-party (easylist.txt: 30866) -.stake7.com/.*\?a_aid= -# ||sharecash.org^$popup,third-party (easylist.txt: 30864) -.sharecash.org -# ||serve.williamhillcasino.com^$popup,third-party (easylist.txt: 30862) -.serve.williamhillcasino.com -# ||serve.prestigecasino.com^$popup,third-party (easylist.txt: 30861) -.serve.prestigecasino.com -# ||secure.komli.com^$popup,third-party (easylist.txt: 30860) -.secure.komli.com -# ||roomkey.com/referrals?$popup,third-party (easylist.txt: 30859) -.roomkey.com/referrals\? -# ||rocketgames.com^$popup,third-party (easylist.txt: 30858) -.rocketgames.com -# ||record.sportsbetaffiliates.com.au^$popup,third-party (easylist.txt: 30856) -.record.sportsbetaffiliates.com.au -# ||promo.xcasino.com/?$popup,third-party (easylist.txt: 30853) -.promo.xcasino.com/\? -# ||promo.galabingo.com^$popup,third-party (easylist.txt: 30852) -.promo.galabingo.com -# ||pokerstars.eu^*/?source=$popup,third-party (easylist.txt: 30850) -.pokerstars.eu/.*/\?source= -# ||pc.thevideo.me^$popup,third-party (easylist.txt: 30847) -.pc.thevideo.me -# ||paid.outbrain.com/network/redir?$popup,third-party (easylist.txt: 30846) -.paid.outbrain.com/network/redir\? -# ||otvetus.com^$popup,third-party (easylist.txt: 30845) -.otvetus.com -# ||opendownloadmanager.com^$popup,third-party (easylist.txt: 30844) -.opendownloadmanager.com -# ||mp3ger.com^$popup,third-party (easylist.txt: 30841) -.mp3ger.com -# ||mgid.com^$popup,third-party (easylist.txt: 30840) -.mgid.com -# ||meme.smhlmao.com^$popup,third-party (easylist.txt: 30839) -.meme.smhlmao.com -# ||megacloud.com/signup?$popup,third-party (easylist.txt: 30838) -.megacloud.com/signup\? -# ||media.mybet.com/redirect.aspx?pid=*&bid=$popup,third-party (easylist.txt: 30837) -.media.mybet.com/redirect\.aspx\?pid=.*&bid= -# ||mcars.org/landing/$popup,third-party (easylist.txt: 30836) -.mcars.org/landing/ -# ||maxedtube.com/video_play?*&utm_campaign=$popup,third-party (easylist.txt: 30835) -.maxedtube.com/video_play\?.*&utm_campaign= -# ||lyricsbogie.com/?$popup,third-party (easylist.txt: 30833) -.lyricsbogie.com/\? -# ||lsbet.com/bonus/$popup,third-party (easylist.txt: 30831) -.lsbet.com/bonus/ -# ||lp.titanpoker.com^$popup,third-party (easylist.txt: 30830) -.lp.titanpoker.com -# ||lp.musicboxnewtab.com^$popup,third-party (easylist.txt: 30829) -.lp.musicboxnewtab.com -# ||lp.imesh.com/?$popup,third-party (easylist.txt: 30828) -.lp.imesh.com/\? -# ||lp.ilivid.com/?$popup,third-party (easylist.txt: 30827) -.lp.ilivid.com/\? -# ||lovefilm.com/partners/$popup,third-party (easylist.txt: 30825) -.lovefilm.com/partners/ -# ||i2casting.com^$popup,third-party (easylist.txt: 30822) -.i2casting.com -# ||house-rent.us^$popup,third-party (easylist.txt: 30819) -.house-rent.us -# ||homemadecelebrityporn.com/track/$popup,third-party (easylist.txt: 30818) -.homemadecelebrityporn.com/track/ -# ||hmn-net.com^*/xdirect/$popup,third-party (easylist.txt: 30817) -.hmn-net.com/.*/xdirect/ -# ||hetu.in^$popup,third-party (easylist.txt: 30816) -.hetu.in -# ||getsecuredfiles.com^$popup,third-party (easylist.txt: 30813) -.getsecuredfiles.com -# ||generic4all.com^*.dhtml?refid=$popup,third-party (easylist.txt: 30812) -.generic4all.com/.*\.dhtml\?refid= -# ||fulltiltpoker.com/affiliates/$popup,third-party (easylist.txt: 30810) -.fulltiltpoker.com/affiliates/ -# ||fulltiltpoker.com/?key=$popup,third-party (easylist.txt: 30809) -.fulltiltpoker.com/\?key= -# ||fleshlight.com/?link=$popup,third-party (easylist.txt: 30806) -.fleshlight.com/\?link= -# ||facebookcoverx.com^$popup,third-party (easylist.txt: 30801) -.facebookcoverx.com -# ||europacasino.com^$popup,third-party (easylist.txt: 30799) -.europacasino.com -# ||erotikdeal.com/advertising.html$popup,third-party (easylist.txt: 30797) -.erotikdeal.com/advertising\.html -# ||erotikdeal.com/?ref=$popup,third-party (easylist.txt: 30796) -.erotikdeal.com/\?ref= -# ||dateoffer.net/?s=*&subid=$popup,third-party (easylist.txt: 30794) -.dateoffer.net/\?s=.*&subid= -# ||ctcautobody.com^$popup,third-party (easylist.txt: 30792) -.ctcautobody.com -# ||clickansave.net^$popup,third-party (easylist.txt: 30790) -.clickansave.net -# ||click.scour.com^$popup,third-party (easylist.txt: 30789) -.click.scour.com -# ||chaturbate.com/affiliates/$popup,third-party (easylist.txt: 30788) -.chaturbate.com/affiliates/ -# ||cdnfarm18.com^$popup,third-party (easylist.txt: 30785) -.cdnfarm18.com -# ||cdn.optmd.com^$popup,third-party (easylist.txt: 30784) -.cdn.optmd.com -# ||casino.com^*?*=$popup,third-party (easylist.txt: 30782) -.casino.com/.*\?.*= -# ||casino-x.com^*?partner=$popup,third-party (easylist.txt: 30781) -.casino-x.com/.*\?partner= -# ||bovada.lv^$popup,third-party (easylist.txt: 30780) -.bovada.lv -# ||binaryoptions24h.com^$popup,third-party (easylist.txt: 30779) -.binaryoptions24h.com -# ||banner.galabingo.com^$popup,third-party (easylist.txt: 30777) -.banner.galabingo.com -# ||babylon.com/welcome/index.html?affID=$popup,third-party (easylist.txt: 30776) -.babylon.com/welcome/index\.html\?affID= -# ||babylon.com/redirects/$popup,third-party (easylist.txt: 30775) -.babylon.com/redirects/ -# ||amazing-offers.co.il^$popup,third-party (easylist.txt: 30774) -.amazing-offers.co.il -# ||aliexpress.com/?af=$popup,third-party (easylist.txt: 30773) -.aliexpress.com/\?af= -# ||affportal-lb.bevomedia.com^$popup,third-party (easylist.txt: 30772) -.affportal-lb.bevomedia.com -# ||affiliates.galapartners.co.uk^$popup,third-party (easylist.txt: 30771) -.affiliates.galapartners.co.uk -# ||adserving.unibet.com^$popup,third-party (easylist.txt: 30770) -.adserving.unibet.com -# ||admngronline.com^$popup,third-party (easylist.txt: 30768) -.admngronline.com -# ||adfoc.us/serve/$popup,third-party (easylist.txt: 30767) -.adfoc.us/serve/ -# ||6angebot.ch/?ref=$popup,third-party (easylist.txt: 30766) -.6angebot.ch/\?ref= -# ||y72yuyr9.com^$popup,third-party (easylist.txt: 29087) -.y72yuyr9.com -# ||xxxbunker.com^$popup,third-party (easylist.txt: 29085) -.xxxbunker.com -# ||xvika.net^$popup,third-party (easylist.txt: 29084) -.xvika.net -# ||xvika.com^$popup,third-party (easylist.txt: 29083) -.xvika.com -# ||xpeeps.com^$popup,third-party (easylist.txt: 29082) -.xpeeps.com -# ||xdtraffic.com^$popup,third-party (easylist.txt: 29080) -.xdtraffic.com -# ||x2porn.eu^$popup,third-party (easylist.txt: 29079) -.x2porn.eu -# ||voyeurbase.com^$popup,third-party (easylist.txt: 29077) -.voyeurbase.com -# ||trafficholder.com^$popup,third-party (easylist.txt: 29073) -.trafficholder.com -# ||targetingnow.com^$popup,third-party (easylist.txt: 29070) -.targetingnow.com -# ||socialsex.com^$popup,third-party (easylist.txt: 29069) -.socialsex.com -# ||socialsex.biz^$popup,third-party (easylist.txt: 29068) -.socialsex.biz -# ||sexintheuk.com^$popup,third-party (easylist.txt: 29067) -.sexintheuk.com -# ||sexflirtbook.com^$popup,third-party (easylist.txt: 29066) -.sexflirtbook.com -# ||sexad.net^$popup,third-party (easylist.txt: 29065) -.sexad.net -# ||sex-journey.com^$popup,third-party (easylist.txt: 29064) -.sex-journey.com -# ||setravieso.com^$popup,third-party (easylist.txt: 29063) -.setravieso.com -# ||sascentral.com^$popup,third-party (easylist.txt: 29062) -.sascentral.com -# ||royalads.net^$popup,third-party (easylist.txt: 29061) -.royalads.net -# ||reviewdollars.com^$popup,third-party (easylist.txt: 29060) -.reviewdollars.com -# ||reporo.net^$popup,third-party (easylist.txt: 29059) -.reporo.net -# ||repmbuycurl.com^$popup,third-party (easylist.txt: 29058) -.repmbuycurl.com -# ||prpops.com^$popup,third-party (easylist.txt: 29057) -.prpops.com -# ||prexista.com^$popup,third-party (easylist.txt: 29056) -.prexista.com -# ||popcash.net^$popup,third-party (easylist.txt: 29054) -.popcash.net -# ||plugrush.com^$popup,third-party (easylist.txt: 29053) -.plugrush.com -# ||plinx.net^$popup,third-party (easylist.txt: 29052) -.plinx.net -# ||njmaq.com^$popup,third-party (easylist.txt: 29049) -.njmaq.com -# ||naughtyplayful.com^$popup,third-party (easylist.txt: 29047) -.naughtyplayful.com -# ||loltrk.com^$popup,third-party (easylist.txt: 29046) -.loltrk.com -# ||legacyminerals.net^$popup,third-party (easylist.txt: 29045) -.legacyminerals.net -# ||kaizentraffic.com^$popup,third-party (easylist.txt: 29044) -.kaizentraffic.com -# ||juicyads.com^$popup,third-party (easylist.txt: 29043) -.juicyads.com -# ||indianfriendfinder.com^$popup,third-party (easylist.txt: 29041) -.indianfriendfinder.com -# ||imgcarry.com^$popup,third-party (easylist.txt: 29040) -.imgcarry.com -# ||imagesnake.com^$popup,third-party (easylist.txt: 29039) -.imagesnake.com -# ||hornymatches.com^$popup,third-party (easylist.txt: 29038) -.hornymatches.com -# ||hizlireklam.com^$popup,third-party (easylist.txt: 29037) -.hizlireklam.com -# ||hapend.biz^$popup,third-party (easylist.txt: 29035) -.hapend.biz -# ||hanaprop.com^$popup,third-party (easylist.txt: 29034) -.hanaprop.com -# ||gothot.org^$popup,third-party (easylist.txt: 29033) -.gothot.org -# ||freewebcams.com^$popup,third-party (easylist.txt: 29032) -.freewebcams.com -# ||fpctraffic2.com^$popup,third-party (easylist.txt: 29030) -.fpctraffic2.com -# ||fox-forden.ru^$popup,third-party (easylist.txt: 29029) -.fox-forden.ru -# ||foaks.com^$popup,third-party (easylist.txt: 29028) -.foaks.com -# ||filthads.com^$popup,third-party (easylist.txt: 29026) -.filthads.com -# ||exgfpunished.com^$popup,third-party (easylist.txt: 29023) -.exgfpunished.com -# ||everyporn.net^$popup,third-party (easylist.txt: 29022) -.everyporn.net -# ||ero-advertising.com^$popup,third-party (easylist.txt: 29020) -.ero-advertising.com -# ||ekod.info^$popup,third-party (easylist.txt: 29019) -.ekod.info -# ||ebocornac.com^$popup,third-party (easylist.txt: 29018) -.ebocornac.com -# ||dverser.ru^$popup,third-party (easylist.txt: 29016) -.dverser.ru -# ||doublegear.com^$popup,third-party (easylist.txt: 29015) -.doublegear.com -# ||chtic.net^$popup,third-party (easylist.txt: 29013) -.chtic.net -# ||chokertraffic.com^$popup,third-party (easylist.txt: 29012) -.chokertraffic.com -# ||c4tracking01.com^$popup,third-party (easylist.txt: 29011) -.c4tracking01.com -# ||banners.cams.com^$popup,third-party (easylist.txt: 29008) -.banners.cams.com -# ||aquete.com^$popup,third-party (easylist.txt: 29007) -.aquete.com -# ||adxpansion.com^$popup,third-party (easylist.txt: 29006) -.adxpansion.com -# ||adxite.com^$popup,third-party (easylist.txt: 29005) -.adxite.com -# ||adultmoda.com^$popup,third-party (easylist.txt: 29004) -.adultmoda.com -# ||adultadworld.com^$popup,third-party (easylist.txt: 29003) -.adultadworld.com -# ||adultadmedia.com^$popup,third-party (easylist.txt: 29002) -.adultadmedia.com -# ||adsnero.website^$popup,third-party (easylist.txt: 29000) -.adsnero.website -# ||45i73jv6.com^$popup,third-party (easylist.txt: 28999) -.45i73jv6.com -# ||3file.info^$popup,third-party (easylist.txt: 28997) -.3file.info -# ||zeroredirect1.com^$popup,third-party (easylist.txt: 28197) -.zeroredirect1.com -# ||zedo.com^$popup,third-party (easylist.txt: 28196) -.zedo.com -# ||z5x.net^$popup,third-party (easylist.txt: 28195) -.z5x.net -# ||yupiromo.ru^$popup,third-party (easylist.txt: 28194) -.yupiromo.ru -# ||yieldtraffic.com^$popup,third-party (easylist.txt: 28193) -.yieldtraffic.com -# ||yieldmanager.com^$popup,third-party (easylist.txt: 28192) -.yieldmanager.com -# ||xtendmedia.com^$popup,third-party (easylist.txt: 28191) -.xtendmedia.com -# ||xclicks.net^$popup,third-party (easylist.txt: 28190) -.xclicks.net -# ||xaxoro.com^$popup,third-party (easylist.txt: 28189) -.xaxoro.com -# ||wzus1.ask.com^$popup,third-party (easylist.txt: 28188) -.wzus1.ask.com -# ||wwwpromoter.com^$popup,third-party (easylist.txt: 28187) -.wwwpromoter.com -# ||worldrewardcenter.net^$popup,third-party (easylist.txt: 28186) -.worldrewardcenter.net -# ||wonderlandads.com^$popup,third-party (easylist.txt: 28185) -.wonderlandads.com -# ||wigetmedia.com^$popup,third-party (easylist.txt: 28184) -.wigetmedia.com -# ||whoads.net^$popup,third-party (easylist.txt: 28183) -.whoads.net -# ||weliketofuckstrangers.com^$popup,third-party (easylist.txt: 28182) -.weliketofuckstrangers.com -# ||webtrackerplus.com^$popup,third-party (easylist.txt: 28181) -.webtrackerplus.com -# ||websearchers.net^$popup,third-party (easylist.txt: 28180) -.websearchers.net -# ||weareheard.org^$popup,third-party (easylist.txt: 28179) -.weareheard.org -# ||wbsadsdel2.com^$popup,third-party (easylist.txt: 28178) -.wbsadsdel2.com -# ||wbsadsdel.com^$popup,third-party (easylist.txt: 28177) -.wbsadsdel.com -# ||wahoha.com^$popup,third-party (easylist.txt: 28176) -.wahoha.com -# ||waframedia5.com^$popup,third-party (easylist.txt: 28175) -.waframedia5.com -# ||w4statistics.info^$popup,third-party (easylist.txt: 28174) -.w4statistics.info -# ||vprmnwbskk.com^$popup,third-party (easylist.txt: 28173) -.vprmnwbskk.com -# ||vipcpms.com^$popup,third-party (easylist.txt: 28172) -.vipcpms.com -# ||vgsgaming-ads.com^$popup,third-party (easylist.txt: 28171) -.vgsgaming-ads.com -# ||updater-checker.net^$popup,third-party (easylist.txt: 28170) -.updater-checker.net -# ||twqiqiang.com^$popup,third-party (easylist.txt: 28169) -.twqiqiang.com -# ||tvas-b.pw^$popup,third-party (easylist.txt: 28168) -.tvas-b.pw -# ||tvas-a.pw^$popup,third-party (easylist.txt: 28167) -.tvas-a.pw -# ||tutvp.com^$popup,third-party (easylist.txt: 28166) -.tutvp.com -# ||trw12.com^$popup,third-party (easylist.txt: 28165) -.trw12.com -# ||trklnks.com^$popup,third-party (easylist.txt: 28164) -.trklnks.com -# ||traffichaus.com^$popup,third-party (easylist.txt: 28163) -.traffichaus.com -# ||trafficforce.com^$popup,third-party (easylist.txt: 28162) -.trafficforce.com -# ||tracki112.com^$popup,third-party (easylist.txt: 28161) -.tracki112.com -# ||totrack.ru^$popup,third-party (easylist.txt: 28160) -.totrack.ru -# ||totaladperformance.com^$popup,third-party (easylist.txt: 28159) -.totaladperformance.com -# ||toroadvertisingmedia.com^$popup,third-party (easylist.txt: 28158) -.toroadvertisingmedia.com -# ||topshelftraffic.com^$popup,third-party (easylist.txt: 28157) -.topshelftraffic.com -# ||tonefuse.com^$popup,third-party (easylist.txt: 28156) -.tonefuse.com -# ||tjoomo.com^$popup,third-party (easylist.txt: 28155) -.tjoomo.com -# ||therewardsurvey.com^$popup,third-party (easylist.txt: 28154) -.therewardsurvey.com -# ||thepornsurvey.com^$popup,third-party (easylist.txt: 28153) -.thepornsurvey.com -# ||the-consumer-reporter.org^$popup,third-party (easylist.txt: 28152) -.the-consumer-reporter.org -# ||the-binary-trader.biz^$popup,third-party (easylist.txt: 28151) -.the-binary-trader.biz -# ||textsrv.com^$popup,third-party (easylist.txt: 28150) -.textsrv.com -# ||terraclicks.com^$popup,third-party (easylist.txt: 28149) -.terraclicks.com -# ||technicssurveys.info^$popup,third-party (easylist.txt: 28148) -.technicssurveys.info -# ||techcloudtrk.com^$popup,third-party (easylist.txt: 28147) -.techcloudtrk.com -# ||td563.com^$popup,third-party (easylist.txt: 28146) -.td563.com -# ||syncedvision.com^$popup,third-party (easylist.txt: 28145) -.syncedvision.com -# ||symkashop.ru^$popup,third-party (easylist.txt: 28144) -.symkashop.ru -# ||swadvertising.org^$popup,third-party (easylist.txt: 28143) -.swadvertising.org -# ||surveystope.com^$popup,third-party (easylist.txt: 28142) -.surveystope.com -# ||surveyspaid.com^$popup,third-party (easylist.txt: 28141) -.surveyspaid.com -# ||surveysforgifts.org^$popup,third-party (easylist.txt: 28140) -.surveysforgifts.org -# ||surveyend.com^$popup,third-party (easylist.txt: 28139) -.surveyend.com -# ||statstrackeronline.com^$popup,third-party (easylist.txt: 28138) -.statstrackeronline.com -# ||statsmobi.com^$popup,third-party (easylist.txt: 28137) -.statsmobi.com -# ||stabletrappeddevote.info^$popup,third-party (easylist.txt: 28136) -.stabletrappeddevote.info -# ||srvpub.com^$popup,third-party (easylist.txt: 28135) -.srvpub.com -# ||srv2trking.com^$popup,third-party (easylist.txt: 28134) -.srv2trking.com -# ||srv-ad.com^$popup,third-party (easylist.txt: 28133) -.srv-ad.com -# ||sparkstudios.com^$popup,third-party (easylist.txt: 28132) -.sparkstudios.com -# ||smutty.com^$popup,third-party (easylist.txt: 28131) -.smutty.com -# ||sms-mmm.com^$popup,third-party (easylist.txt: 28130) -.sms-mmm.com -# ||smartwebads.com^$popup,third-party (easylist.txt: 28129) -.smartwebads.com -# ||slimspots.com^$popup,third-party (easylist.txt: 28128) -.slimspots.com -# ||slikslik.com^$popup,third-party (easylist.txt: 28127) -.slikslik.com -# ||singlesexdates.com^$popup,third-party (easylist.txt: 28126) -.singlesexdates.com -# ||simpleinternetupdate.com^$popup,third-party (easylist.txt: 28125) -.simpleinternetupdate.com -# ||silstavo.com^$popup,third-party (easylist.txt: 28124) -.silstavo.com -# ||sexitnow.com^$popup,third-party (easylist.txt: 28123) -.sexitnow.com -# ||servingit.co^$popup,third-party (easylist.txt: 28122) -.servingit.co -# ||serving-sys.com^$popup,third-party (easylist.txt: 28121) -.serving-sys.com -# ||senzapudore.it^$popup,third-party (easylist.txt: 28120) -.senzapudore.it -# ||secureintl.com^$popup,third-party (easylist.txt: 28119) -.secureintl.com -# ||rubikon6.if.ua^$popup,third-party (easylist.txt: 28118) -.rubikon6.if.ua -# ||roulettebotplus.com^$popup,third-party (easylist.txt: 28117) -.roulettebotplus.com -# ||ronetu.ru^$popup,third-party (easylist.txt: 28116) -.ronetu.ru -# ||ringtonepartner.com^$popup,third-party (easylist.txt: 28115) -.ringtonepartner.com -# ||ringtonematcher.com^$popup,third-party (easylist.txt: 28114) -.ringtonematcher.com -# ||rikhov.ru^$popup,third-party (easylist.txt: 28113) -.rikhov.ru -# ||rgadvert.com^$popup,third-party (easylist.txt: 28112) -.rgadvert.com -# ||retkow.com^$popup,third-party (easylist.txt: 28111) -.retkow.com -# ||rehok.km.ua^$popup,third-party (easylist.txt: 28110) -.rehok.km.ua -# ||rdsrv.com^$popup,third-party (easylist.txt: 28109) -.rdsrv.com -# ||ratari.ru^$popup,third-party (easylist.txt: 28108) -.ratari.ru -# ||raoplenort.biz^$popup,third-party (easylist.txt: 28107) -.raoplenort.biz -# ||pwrads.net^$popup,third-party (easylist.txt: 28106) -.pwrads.net -# ||pureadexchange.com^$popup,third-party (easylist.txt: 28105) -.pureadexchange.com -# ||pulse360.com^$popup,third-party (easylist.txt: 28104) -.pulse360.com -# ||pubted.com^$popup,third-party (easylist.txt: 28103) -.pubted.com -# ||pubdirecte.com^$popup,third-party (easylist.txt: 28102) -.pubdirecte.com -# ||pubads.g.doubleclick.net^$popup,third-party (easylist.txt: 28101) -.pubads.g.doubleclick.net -# ||prowlerz.com^$popup,third-party (easylist.txt: 28100) -.prowlerz.com -# ||propellerpops.com^$popup,third-party (easylist.txt: 28099) -.propellerpops.com -# ||propellerads.com^$popup,third-party (easylist.txt: 28098) -.propellerads.com -# ||promotions.sportsbet.com.au^$popup,third-party (easylist.txt: 28097) -.promotions.sportsbet.com.au -# ||promotions-paradise.org^$popup,third-party (easylist.txt: 28096) -.promotions-paradise.org -# ||prizegiveaway.org^$popup,third-party (easylist.txt: 28095) -.prizegiveaway.org -# ||print3.info^$popup,third-party (easylist.txt: 28094) -.print3.info -# ||poponclick.com^$popup,third-party (easylist.txt: 28093) -.poponclick.com -# ||popmyads.com^$popup,third-party (easylist.txt: 28092) -.popmyads.com -# ||popads.net^$popup,third-party (easylist.txt: 28091) -.popads.net -# ||pomofon.ru^$popup,third-party (easylist.txt: 28090) -.pomofon.ru -# ||pointroll.com^$popup,third-party (easylist.txt: 28089) -.pointroll.com -# ||pointclicktrack.com^$popup,third-party (easylist.txt: 28088) -.pointclicktrack.com -# ||plsdrct2.me^$popup,third-party (easylist.txt: 28087) -.plsdrct2.me -# ||plexop.net^$popup,third-party (easylist.txt: 28086) -.plexop.net -# ||pipaoffers.com^$popup,third-party (easylist.txt: 28085) -.pipaoffers.com -# ||pgmediaserve.com^$popup,third-party (easylist.txt: 28084) -.pgmediaserve.com -# ||pexu.com^$popup,third-party (easylist.txt: 28083) -.pexu.com -# ||perfcreatives.com^$popup,third-party (easylist.txt: 28082) -.perfcreatives.com -# ||pdfcomplete.com^$popup,third-party (easylist.txt: 28081) -.pdfcomplete.com -# ||partypills.org^$popup,third-party (easylist.txt: 28080) -.partypills.org -# ||oxybe.com^$popup,third-party (easylist.txt: 28079) -.oxybe.com -# ||overturs.com^$popup,third-party (easylist.txt: 28078) -.overturs.com -# ||openadserving.com^$popup,third-party (easylist.txt: 28077) -.openadserving.com -# ||open-downloads.net^$popup,third-party (easylist.txt: 28076) -.open-downloads.net -# ||onlinecashmethod.com^$popup,third-party (easylist.txt: 28075) -.onlinecashmethod.com -# ||onlinecareerpackage.com^$popup,third-party (easylist.txt: 28074) -.onlinecareerpackage.com -# ||onhitads.net^$popup,third-party (easylist.txt: 28073) -.onhitads.net -# ||onclickads.net^$popup,third-party (easylist.txt: 28072) -.onclickads.net -# ||onad.eu^$popup,third-party (easylist.txt: 28071) -.onad.eu -# ||o333o.com^$popup,third-party (easylist.txt: 28070) -.o333o.com -# ||nymphdate.com^$popup,third-party (easylist.txt: 28069) -.nymphdate.com -# ||nturveev.com^$popup,third-party (easylist.txt: 28068) -.nturveev.com -# ||netliker.com^$popup,third-party (easylist.txt: 28067) -.netliker.com -# ||n388hkxg.com^$popup,third-party (easylist.txt: 28066) -.n388hkxg.com -# ||my-layer.net^$popup,third-party (easylist.txt: 28065) -.my-layer.net -# ||moneytec.com^$popup,third-party (easylist.txt: 28064) -.moneytec.com -# ||mobileraffles.com^$popup,third-party (easylist.txt: 28063) -.mobileraffles.com -# ||mktmobi.com^$popup,third-party (easylist.txt: 28062) -.mktmobi.com -# ||millionairesurveys.com^$popup,third-party (easylist.txt: 28061) -.millionairesurveys.com -# ||metodoroleta24h.com^$popup,third-party (easylist.txt: 28060) -.metodoroleta24h.com -# ||menepe.com^$popup,third-party (easylist.txt: 28059) -.menepe.com -# ||megapopads.com^$popup,third-party (easylist.txt: 28058) -.megapopads.com -# ||meetsexygirls.org^$popup,third-party (easylist.txt: 28057) -.meetsexygirls.org -# ||meetgoodgirls.com^$popup,third-party (easylist.txt: 28056) -.meetgoodgirls.com -# ||mediaseeding.com^$popup,third-party (easylist.txt: 28055) -.mediaseeding.com -# ||media-servers.net^$popup,third-party (easylist.txt: 28054) -.media-servers.net -# ||media-app.com^$popup,third-party (easylist.txt: 28053) -.media-app.com -# ||mdn2015x1.com^$popup,third-party (easylist.txt: 28052) -.mdn2015x1.com -# ||marketresearchglobal.com^$popup,third-party (easylist.txt: 28051) -.marketresearchglobal.com -# ||maomaotang.com^$popup,third-party (easylist.txt: 28050) -.maomaotang.com -# ||m57ku6sm.com^$popup,third-party (easylist.txt: 28049) -.m57ku6sm.com -# ||lustigbanner.com^$popup,third-party (easylist.txt: 28048) -.lustigbanner.com -# ||lnkgt.com^$popup,third-party (easylist.txt: 28047) -.lnkgt.com -# ||lmebxwbsno.com^$popup,third-party (easylist.txt: 28046) -.lmebxwbsno.com -# ||liversely.net^$popup,third-party (easylist.txt: 28045) -.liversely.net -# ||livepromotools.com^$popup,third-party (easylist.txt: 28044) -.livepromotools.com -# ||livechatflirt.com^$popup,third-party (easylist.txt: 28043) -.livechatflirt.com -# ||ligatus.com^$popup,third-party (easylist.txt: 28042) -.ligatus.com -# ||letshareus.com^$popup,third-party (easylist.txt: 28041) -.letshareus.com -# ||legisland.net^$popup,third-party (easylist.txt: 28040) -.legisland.net -# ||landsraad.cc^$popup,third-party (easylist.txt: 28039) -.landsraad.cc -# ||kanoodle.com^$popup,third-party (easylist.txt: 28038) -.kanoodle.com -# ||junbi-tracker.com^$popup,third-party (easylist.txt: 28037) -.junbi-tracker.com -# ||jujzh9va.com^$popup,third-party (easylist.txt: 28036) -.jujzh9va.com -# ||jdtracker.com^$popup,third-party (easylist.txt: 28035) -.jdtracker.com -# ||integral-marketing.com^$popup,third-party (easylist.txt: 28034) -.integral-marketing.com -# ||instantpaydaynetwork.com^$popup,third-party (easylist.txt: 28033) -.instantpaydaynetwork.com -# ||insta-cash.net^$popup,third-party (easylist.txt: 28032) -.insta-cash.net -# ||indianweeklynews.com^$popup,third-party (easylist.txt: 28031) -.indianweeklynews.com -# ||inbinaryoption.com^$popup,third-party (easylist.txt: 28029) -.inbinaryoption.com -# ||ilividnewtab.com^$popup,third-party (easylist.txt: 28028) -.ilividnewtab.com -# ||iiasdomk1m9812m4z3.com^$popup,third-party (easylist.txt: 28027) -.iiasdomk1m9812m4z3.com -# ||ifilez.org^$popup,third-party (easylist.txt: 28026) -.ifilez.org -# ||hstpnetwork.com^$popup,third-party (easylist.txt: 28025) -.hstpnetwork.com -# ||hotchatdirect.com^$popup,third-party (easylist.txt: 28024) -.hotchatdirect.com -# ||hornygirlsexposed.com^$popup,third-party (easylist.txt: 28023) -.hornygirlsexposed.com -# ||homecareerforyou1.info^$popup,third-party (easylist.txt: 28022) -.homecareerforyou1.info -# ||hilltopads.net^$popup,third-party (easylist.txt: 28021) -.hilltopads.net -# ||highcpms.com^$popup,third-party (easylist.txt: 28020) -.highcpms.com -# ||hd-plugin.com^$popup,third-party (easylist.txt: 28019) -.hd-plugin.com -# ||gsniper2.com^$popup,third-party (easylist.txt: 28018) -.gsniper2.com -# ||greatbranddeals.com^$popup,third-party (easylist.txt: 28017) -.greatbranddeals.com -# ||gotoplaymillion.com^$popup,third-party (easylist.txt: 28016) -.gotoplaymillion.com -# ||googleads.g.doubleclick.net^$popup,third-party (easylist.txt: 28015) -.googleads.g.doubleclick.net -# ||gofindmedia.net^$popup,third-party (easylist.txt: 28014) -.gofindmedia.net -# ||giveaways.club^$popup,third-party (easylist.txt: 28013) -.giveaways.club -# ||gib-gib-la.com^$popup,third-party (easylist.txt: 28012) -.gib-gib-la.com -# ||ganja.com^$popup,third-party (easylist.txt: 28011) -.ganja.com -# ||g05.info^$popup,third-party (easylist.txt: 28010) -.g05.info -# ||frtya.com^$popup,third-party (easylist.txt: 28009) -.frtya.com -# ||friendlyduck.com^$popup,third-party (easylist.txt: 28008) -.friendlyduck.com -# ||fmdwbsfxf0.com^$popup,third-party (easylist.txt: 28007) -.fmdwbsfxf0.com -# ||firstmediahub.com^$popup,third-party (easylist.txt: 28006) -.firstmediahub.com -# ||firstclass-download.com^$popup,third-party (easylist.txt: 28005) -.firstclass-download.com -# ||findonlinesurveysforcash.com^$popup,third-party (easylist.txt: 28004) -.findonlinesurveysforcash.com -# ||finance-reporting.org^$popup,third-party (easylist.txt: 28003) -.finance-reporting.org -# ||filestube.com^$popup,third-party (easylist.txt: 28002) -.filestube.com -# ||fidel.to^$popup,third-party (easylist.txt: 28001) -.fidel.to -# ||fhserve.com^$popup,third-party (easylist.txt: 28000) -.fhserve.com -# ||f-questionnaire.com^$popup,third-party (easylist.txt: 27999) -.f-questionnaire.com -# ||f-hookups.com^$popup,third-party (easylist.txt: 27998) -.f-hookups.com -# ||ezdownloadpro.info^$popup,third-party (easylist.txt: 27997) -.ezdownloadpro.info -# ||exoclick.com^$popup,third-party (easylist.txt: 27996) -.exoclick.com -# ||ewebse.com^$popup,third-party (easylist.txt: 27995) -.ewebse.com -# ||euromillionairesystem.me^$popup,third-party (easylist.txt: 27994) -.euromillionairesystem.me -# ||eroanalysis.com^$popup,third-party (easylist.txt: 27993) -.eroanalysis.com -# ||epicgameads.com^$popup,third-party (easylist.txt: 27992) -.epicgameads.com -# ||ebzkswbs78.com^$popup,third-party (easylist.txt: 27991) -.ebzkswbs78.com -# ||easykits.org^$popup,third-party (easylist.txt: 27990) -.easykits.org -# ||easydownloadnow.com^$popup,third-party (easylist.txt: 27989) -.easydownloadnow.com -# ||durokuro.com^$popup,third-party (easylist.txt: 27988) -.durokuro.com -# ||downloadthesefile.com^$popup,third-party (easylist.txt: 27987) -.downloadthesefile.com -# ||downloadboutique.com^$popup,third-party (easylist.txt: 27986) -.downloadboutique.com -# ||down1oads.com^$popup,third-party (easylist.txt: 27985) -.down1oads.com -# ||doublepimp.com^$popup,third-party (easylist.txt: 27984) -.doublepimp.com -# ||dojerena.com^$popup,third-party (easylist.txt: 27983) -.dojerena.com -# ||distantstat.com^$popup,third-party (easylist.txt: 27982) -.distantstat.com -# ||distantnews.com^$popup,third-party (easylist.txt: 27981) -.distantnews.com -# ||directrev.com^$popup,third-party (easylist.txt: 27980) -.directrev.com -# ||denza.pro^$popup,third-party (easylist.txt: 27979) -.denza.pro -# ||crazyad.net^$popup,third-party (easylist.txt: 27978) -.crazyad.net -# ||cpvadvertise.com^$popup,third-party (easylist.txt: 27977) -.cpvadvertise.com -# ||cpmterra.com^$popup,third-party (easylist.txt: 27976) -.cpmterra.com -# ||cpmstar.com^$popup,third-party (easylist.txt: 27975) -.cpmstar.com -# ||cpayard.com^$popup,third-party (easylist.txt: 27974) -.cpayard.com -# ||contractallsinstance.info^$popup,third-party (easylist.txt: 27973) -.contractallsinstance.info -# ||contentabc.com^$popup,third-party (easylist.txt: 27972) -.contentabc.com -# ||computersoftwarelive.com^$popup,third-party (easylist.txt: 27971) -.computersoftwarelive.com -# ||cmllk2.info^$popup,third-party (easylist.txt: 27970) -.cmllk2.info -# ||clpremdo.com^$popup,third-party (easylist.txt: 27969) -.clpremdo.com -# ||cloudtracked.com^$popup,third-party (easylist.txt: 27968) -.cloudtracked.com -# ||clkrev.com^$popup,third-party (easylist.txt: 27967) -.clkrev.com -# ||clkmon.com^$popup,third-party (easylist.txt: 27966) -.clkmon.com -# ||clkads.com^$popup,third-party (easylist.txt: 27965) -.clkads.com -# ||clicktripz.com^$popup,third-party (easylist.txt: 27964) -.clicktripz.com -# ||clickter.net^$popup,third-party (easylist.txt: 27963) -.clickter.net -# ||clicksvenue.com^$popup,third-party (easylist.txt: 27962) -.clicksvenue.com -# ||clicksor.com^$popup,third-party (easylist.txt: 27961) -.clicksor.com -# ||clickosmedia.com^$popup,third-party (easylist.txt: 27960) -.clickosmedia.com -# ||clickmngr.com^$popup,third-party (easylist.txt: 27959) -.clickmngr.com -# ||clickfuse.com^$popup,third-party (easylist.txt: 27958) -.clickfuse.com -# ||casino.betsson.com^$popup,third-party (easylist.txt: 27957) -.casino.betsson.com -# ||callhelpmetaroll.rocks^$popup,third-party (easylist.txt: 27955) -.callhelpmetaroll.rocks -# ||bzrvwbsh5o.com^$popup,third-party (easylist.txt: 27954) -.bzrvwbsh5o.com -# ||brandreachsys.com^$popup,third-party (easylist.txt: 27953) -.brandreachsys.com -# ||bonzuna.com^$popup,third-party (easylist.txt: 27952) -.bonzuna.com -# ||bongacams.com^$popup,third-party (easylist.txt: 27951) -.bongacams.com -# ||blogscash.info^$popup,third-party (easylist.txt: 27950) -.blogscash.info -# ||blockthis.es^$popup,third-party (easylist.txt: 27949) -.blockthis.es -# ||blinkogold.es^$popup,third-party (easylist.txt: 27948) -.blinkogold.es -# ||blinko.es^$popup,third-party (easylist.txt: 27947) -.blinko.es -# ||binaryoptionsgame.com^$popup,third-party (easylist.txt: 27946) -.binaryoptionsgame.com -# ||bighot.ru^$popup,third-party (easylist.txt: 27945) -.bighot.ru -# ||bidvertiser.com^$popup,third-party (easylist.txt: 27944) -.bidvertiser.com -# ||bidsystem.com^$popup,third-party (easylist.txt: 27943) -.bidsystem.com -# ||bestproducttesters.com^$popup,third-party (easylist.txt: 27942) -.bestproducttesters.com -# ||best-zb.com^$popup,third-party (easylist.txt: 27941) -.best-zb.com -# ||bentdownload.com^$popup,third-party (easylist.txt: 27940) -.bentdownload.com -# ||becoquins.net^$popup,third-party (easylist.txt: 27939) -.becoquins.net -# ||becoquin.com^$popup,third-party (easylist.txt: 27938) -.becoquin.com -# ||bbuni.com^$popup,third-party (easylist.txt: 27937) -.bbuni.com -# ||baypops.com^$popup,third-party (easylist.txt: 27936) -.baypops.com -# ||awsclic.com^$popup,third-party (easylist.txt: 27935) -.awsclic.com -# ||awempire.com^$popup,third-party (easylist.txt: 27934) -.awempire.com -# ||avalopaly.com^$popup,third-party (easylist.txt: 27933) -.avalopaly.com -# ||august15download.com^$popup,third-party (easylist.txt: 27932) -.august15download.com -# ||ar.voicefive.com^$popup,third-party (easylist.txt: 27931) -.ar.voicefive.com -# ||answered-questions.com^$popup,third-party (easylist.txt: 27930) -.answered-questions.com -# ||annualinternetsurvey.com^$popup,third-party (easylist.txt: 27929) -.annualinternetsurvey.com -# ||angege.com^$popup,third-party (easylist.txt: 27928) -.angege.com -# ||am10.ru^$popup,third-party (easylist.txt: 27927) -.am10.ru -# ||alternads.info^$popup,third-party (easylist.txt: 27926) -.alternads.info -# ||alpinedrct.com^$popup,third-party (easylist.txt: 27925) -.alpinedrct.com -# ||allsporttv.com^$popup,third-party (easylist.txt: 27924) -.allsporttv.com -# ||allslotscasino.com^$popup,third-party (easylist.txt: 27923) -.allslotscasino.com -# ||aflrm.com^$popup,third-party (easylist.txt: 27922) -.aflrm.com -# ||affbuzzads.com^$popup,third-party (easylist.txt: 27921) -.affbuzzads.com -# ||advmedialtd.com^$popup,third-party (easylist.txt: 27920) -.advmedialtd.com -# ||advertserve.com^$popup,third-party (easylist.txt: 27919) -.advertserve.com -# ||adtraffic.org^$popup,third-party (easylist.txt: 27918) -.adtraffic.org -# ||adtrace.org^$popup,third-party (easylist.txt: 27917) -.adtrace.org -# ||adsurve.com^$popup,third-party (easylist.txt: 27916) -.adsurve.com -# ||adsupplyads.com^$popup,third-party (easylist.txt: 27915) -.adsupplyads.com -# ||adsupply.com^$popup,third-party (easylist.txt: 27914) -.adsupply.com -# ||adsmarket.com^$popup,third-party (easylist.txt: 27913) -.adsmarket.com -# ||adshostnet.com^$popup,third-party (easylist.txt: 27912) -.adshostnet.com -# ||adserverplus.com^$popup,third-party (easylist.txt: 27911) -.adserverplus.com -# ||ads.sexier.com^$popup,third-party (easylist.txt: 27910) -.ads.sexier.com -# ||adplxmd.com^$popup,third-party (easylist.txt: 27909) -.adplxmd.com -# ||adonweb.ru^$popup,third-party (easylist.txt: 27908) -.adonweb.ru -# ||adnxs.com^$popup,third-party (easylist.txt: 27907) -.adnxs.com -# ||adnetworkperformance.com^$popup,third-party (easylist.txt: 27906) -.adnetworkperformance.com -# ||adlure.net^$popup,third-party (easylist.txt: 27905) -.adlure.net -# ||adk2x.com^$popup,third-party (easylist.txt: 27904) -.adk2x.com -# ||adk2.net^$popup,third-party (easylist.txt: 27903) -.adk2.net -# ||adk2.com^$popup,third-party (easylist.txt: 27902) -.adk2.com -# ||adk2.co^$popup,third-party (easylist.txt: 27901) -.adk2.co -# ||adjuggler.net^$popup,third-party (easylist.txt: 27900) -.adjuggler.net -# ||aditor.com^$popup,third-party (easylist.txt: 27899) -.aditor.com -# ||adimps.com^$popup,third-party (easylist.txt: 27898) -.adimps.com -# ||adform.net^$popup,third-party (easylist.txt: 27897) -.adform.net -# ||adfarm.mediaplex.com^$popup,third-party (easylist.txt: 27896) -.adfarm.mediaplex.com -# ||adcdnx.com^$popup,third-party (easylist.txt: 27895) -.adcdnx.com -# ||adcash.com^$popup,third-party (easylist.txt: 27894) -.adcash.com -# ||adbma.com^$popup,third-party (easylist.txt: 27893) -.adbma.com -# ||ad4game.com^$popup,third-party (easylist.txt: 27892) -.ad4game.com -# ||ad2games.com^$popup,third-party (easylist.txt: 27891) -.ad2games.com -# ||ad2387.com^$popup,third-party (easylist.txt: 27890) -.ad2387.com -# ||ad131m.com^$popup,third-party (easylist.txt: 27889) -.ad131m.com -# ||ad.doubleclick.net^$popup,third-party (easylist.txt: 27888) -.ad.doubleclick.net -# ||ad-feeds.com^$popup,third-party (easylist.txt: 27887) -.ad-feeds.com -# ||ad-emea.doubleclick.net^$popup,third-party (easylist.txt: 27886) -.ad-emea.doubleclick.net -# ||ad-apac.doubleclick.net^$popup,third-party (easylist.txt: 27885) -.ad-apac.doubleclick.net -# ||absoluteclickscom.com^$popup,third-party (easylist.txt: 27884) -.absoluteclickscom.com -# ||abbeyblog.me^$popup,third-party (easylist.txt: 27883) -.abbeyblog.me -# ||9newstoday.net^$popup,third-party (easylist.txt: 27882) -.9newstoday.net -# ||888promos.com^$popup,third-party (easylist.txt: 27881) -.888promos.com -# ||888poker.com^$popup,third-party (easylist.txt: 27880) -.888poker.com -# ||888media.net^$popup,third-party (easylist.txt: 27879) -.888media.net -# ||888games.com^$popup,third-party (easylist.txt: 27878) -.888games.com -# ||888casino.com^$popup,third-party (easylist.txt: 27877) -.888casino.com -# ||83nsdjqqo1cau183xz.com^$popup,third-party (easylist.txt: 27876) -.83nsdjqqo1cau183xz.com -# ||5dimes.com^$popup,third-party (easylist.txt: 27875) -.5dimes.com -# ||4dsply.com^$popup,third-party (easylist.txt: 27874) -.4dsply.com -# ||360adstrack.com^$popup,third-party (easylist.txt: 27873) -.360adstrack.com -# ||360adshost.net^$popup,third-party (easylist.txt: 27872) -.360adshost.net -# ||32d1d3b9c.se^$popup,third-party (easylist.txt: 27871) -.32d1d3b9c.se -# ||30daychange.co^$popup,third-party (easylist.txt: 27870) -.30daychange.co -# ||2mdn.info^$popup,third-party (easylist.txt: 27869) -.2mdn.info -# ||1phads.com^$popup,third-party (easylist.txt: 27868) -.1phads.com -# ||1afcfcb2c.ninja^$popup,third-party (easylist.txt: 27867) -.1afcfcb2c.ninja -# ||123vidz.com^$popup,third-party (easylist.txt: 27866) -.123vidz.com -# /redirect.spark?$popup,third-party (easylist.txt: 7156) -/(.*/)?redirect\.spark\? -# /fp.engine?$popup,third-party (easylist.txt: 7145) -/(.*/)?fp\.engine\? -# &link_type=offer$popup,third-party (easylist.txt: 7117) -/.*&link_type=offer #-ab2p-unblock-dnt-nR {-client-header-tagger{ab2p-unblock-dnt-nR} \ @@ -321428,76 +34029,11 @@ TAG:^-ab2p-unblock-dnt-nR$ } TAG:^-ab2p-unblock-elem-nR$ -#-ab2p-unblock-request-Aaijsv-Caijsv-when-nR -{-client-header-tagger{ab2p-unblock-request-Aaijsv-Caijsv-when-nR} \ -} -TAG:^-ab2p-unblock-request-Aaijsv-Caijsv-when-nR$ - -#-ab2p-unblock-request-Aaov-Caov-when-nR -{-client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -TAG:^-ab2p-unblock-request-Aaov-Caov-when-nR$ - -#-ab2p-unblock-request-Aasv-Casv-when-nR -{-client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-nR} \ -} -TAG:^-ab2p-unblock-request-Aasv-Casv-when-nR$ - -#-ab2p-unblock-request-Acij-Ccij-Xx-when-nR -{-client-header-tagger{ab2p-unblock-request-Acij-Ccij-Xx-when-nR} \ -} -TAG:^-ab2p-unblock-request-Acij-Ccij-Xx-when-nR$ - -#-ab2p-unblock-request-Acj-Ccj-when-nR -{-client-header-tagger{ab2p-unblock-request-Acj-Ccj-when-nR} \ -} -TAG:^-ab2p-unblock-request-Acj-Ccj-when-nR$ - -#-ab2p-unblock-request-Ai-Ci-Xx-when-nR -{-client-header-tagger{ab2p-unblock-request-Ai-Ci-Xx-when-nR} \ -} -TAG:^-ab2p-unblock-request-Ai-Ci-Xx-when-nR$ - -#-ab2p-unblock-request-Ai-Ci-when-nR -{-client-header-tagger{ab2p-unblock-request-Ai-Ci-when-nR} \ -} -TAG:^-ab2p-unblock-request-Ai-Ci-when-nR$ - -#-ab2p-unblock-request-Aij-Cij-when-nR -{-client-header-tagger{ab2p-unblock-request-Aij-Cij-when-nR} \ -} -TAG:^-ab2p-unblock-request-Aij-Cij-when-nR$ - #-ab2p-unblock-request-Aj-Cj-Xx-when-nR {-client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-nR} \ } TAG:^-ab2p-unblock-request-Aj-Cj-Xx-when-nR$ -#-ab2p-unblock-request-Aj-Cj-when-nR -{-client-header-tagger{ab2p-unblock-request-Aj-Cj-when-nR} \ -} -TAG:^-ab2p-unblock-request-Aj-Cj-when-nR$ - -#-ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-nR -{-client-header-tagger{ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-nR} \ -} -TAG:^-ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-nR$ - -#-ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-nR -{-client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-nR} \ -} -TAG:^-ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-nR$ - -#-ab2p-unblock-request-Anhm-nC-Cnhm-when-nR -{-client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-when-nR} \ -} -TAG:^-ab2p-unblock-request-Anhm-nC-Cnhm-when-nR$ - -#-ab2p-unblock-request-Xx-when-nR -{-client-header-tagger{ab2p-unblock-request-Xx-when-nR} \ -} -TAG:^-ab2p-unblock-request-Xx-when-nR$ - #-ab2p-unblock-request-nC {-server-header-tagger{ab2p-unblock-request-nC} \ } @@ -321508,42761 +34044,3219 @@ TAG:^-ab2p-unblock-request-nC$ } TAG:^-ab2p-unblock-request-nR$ -#-ab2p-unblock-xframe-nR -{-client-header-tagger{ab2p-unblock-xframe-nR} \ -} -TAG:^-ab2p-unblock-xframe-nR$ - -#-ab2p-unblock-xpopup-nR -{-client-header-tagger{ab2p-unblock-xpopup-nR} \ -} -TAG:^-ab2p-unblock-xpopup-nR$ - #ab2p-unblock-dnt { \ } TAG:^ab2p-unblock-dnt$ -# @@||imagebam.com/image/$popup (easylistchina+easylist.txt: 61794) -.imagebam.com/image/ -# @@||ads.b10f.jp/flv/$~third-party (easylistchina+easylist.txt: 61787) -.ads.b10f.jp/flv/ -# @@||youngmodelsclub.net^$elemhide (easylistchina+easylist.txt: 61785) -.youngmodelsclub.net -# @@||youfreeporntube.com^$generichide (easylistchina+easylist.txt: 61784) -.youfreeporntube.com -# @@||you-fap.com^$elemhide (easylistchina+easylist.txt: 61783) -.you-fap.com -# @@||xibitnet.com/check/advertisements.js (easylistchina+easylist.txt: 61782) -.xibitnet.com/check/advertisements\.js -# @@||xibitnet.com/check/advertisement.js (easylistchina+easylist.txt: 61781) -.xibitnet.com/check/advertisement\.js -# @@||tube8.com/js/advertisement.js (easylistchina+easylist.txt: 61780) -.tube8.com/js/advertisement\.js -# @@||trafficjunky.net/js/ad*.js (easylistchina+easylist.txt: 61779) -.trafficjunky.net/js/ad.*\.js -# @@||thisav.com^$elemhide (easylistchina+easylist.txt: 61777) -.thisav.com -# @@||submityourflicks.com/player/player-ads.swf$object (easylistchina+easylist.txt: 61775) -.submityourflicks.com/player/player-ads\.swf -# @@||sexvidx.tv/js/eroex.js (easylistchina+easylist.txt: 61774) -.sexvidx.tv/js/eroex\.js -# @@||pornve.com^$elemhide (easylistchina+easylist.txt: 61772) -.pornve.com -# @@||pornfun.com/js/ads.js (easylistchina+easylist.txt: 61770) -.pornfun.com/js/ads\.js -# @@||porndoo.com/showads.js (easylistchina+easylist.txt: 61769) -.porndoo.com/showads\.js -# @@||phncdn.com^*/fuckadblock.js (easylistchina+easylist.txt: 61767) -.phncdn.com/.*/fuckadblock\.js -# @@||phncdn.com^*/ads.js (easylistchina+easylist.txt: 61766) -.phncdn.com/.*/ads\.js -# @@||phncdn.com/js/advertisement.js (easylistchina+easylist.txt: 61764) -.phncdn.com/js/advertisement\.js -# @@||palaotog.net^$elemhide (easylistchina+easylist.txt: 61763) -.palaotog.net -# @@||openload.io/Ads.png (easylistchina+easylist.txt: 61762) -.openload.io/Ads\.png -# @@||ooporn.com/ads.js (easylistchina+easylist.txt: 61761) -.ooporn.com/ads\.js -# @@||nightchan.com/advertisement.js (easylistchina+easylist.txt: 61760) -.nightchan.com/advertisement\.js -# @@||n4mo.org^$elemhide (easylistchina+easylist.txt: 61759) -.n4mo.org -# @@||n4mo.org/wp-content/*/ads/ (easylistchina+easylist.txt: 61758) -.n4mo.org/wp-content/.*/ads/ -# @@||mongoporn.com^*/adframe/$subdocument (easylistchina+easylist.txt: 61757) -.mongoporn.com/.*/adframe/ -# @@||lfporn.com^$elemhide (easylistchina+easylist.txt: 61756) -.lfporn.com -# @@||jporn4u.com/js/ads.js (easylistchina+easylist.txt: 61754) -.jporn4u.com/js/ads\.js -# @@||javstar.net^$elemhide (easylistchina+easylist.txt: 61752) -.javstar.net -# @@||javpee.com/eroex.js (easylistchina+easylist.txt: 61751) -.javpee.com/eroex\.js -# @@||javhub.net^$script,~third-party (easylistchina+easylist.txt: 61750) -.javhub.net -# @@||javhub.net^$elemhide (easylistchina+easylist.txt: 61749) -.javhub.net -# @@||indiangilma.com^$elemhide (easylistchina+easylist.txt: 61744) -.indiangilma.com -# @@||imgadult.com/js/advertisement.js (easylistchina+easylist.txt: 61743) -.imgadult.com/js/advertisement\.js -# @@||hentaimoe.com/js/advertisement.js (easylistchina+easylist.txt: 61742) -.hentaimoe.com/js/advertisement\.js -# @@||hentaihaven.org^*/fuckadblock.js (easylistchina+easylist.txt: 61741) -.hentaihaven.org/.*/fuckadblock\.js -# @@||hentaienespa帽ol.net^$elemhide (easylistchina+easylist.txt: 61740) -.hentaienespa帽ol.net -# @@||hellojav.com^$elemhide (easylistchina+easylist.txt: 61739) -.hellojav.com -# @@||fuqer.com^*/advertisement.js (easylistchina+easylist.txt: 61736) -.fuqer.com/.*/advertisement\.js -# @@||fapxl.com^$elemhide (easylistchina+easylist.txt: 61735) -.fapxl.com -# @@||desihoes.com/advertisement.js (easylistchina+easylist.txt: 61734) -.desihoes.com/advertisement\.js -# @@||adultadworld.com/adhandler/$subdocument (easylistchina+easylist.txt: 61733) -.adultadworld.com/adhandler/ -# @@||ad.thisav.com/player/swfobject.js (easylistchina+easylist.txt: 61732) -.ad.thisav.com/player/swfobject\.js -# @@||25643e662a2.com/ad*.js (easylistchina+easylist.txt: 61731) -.25643e662a2.com/ad.*\.js -# @@||209.58.131.22^*/advertisement.js (easylistchina+easylist.txt: 61730) -.209.58.131.22/.*/advertisement\.js -# @@||1986a44b12e.com/googlead.js (easylistchina+easylist.txt: 61729) -.1986a44b12e.com/googlead\.js -# @@||1986a44b12e.com/Ad*.js (easylistchina+easylist.txt: 61728) -.1986a44b12e.com/Ad.*\.js -# @@||youporngay.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61724) -.youporngay.com/_Incapsula_Resource\? -# @@||youporn.com/watch_postroll/$xmlhttprequest (easylistchina+easylist.txt: 61722) -.youporn.com/watch_postroll/ -# @@||youporn.com/watch/$xmlhttprequest (easylistchina+easylist.txt: 61721) -.youporn.com/watch/ -# @@||youporn.com/subscriptions/$xmlhttprequest (easylistchina+easylist.txt: 61720) -.youporn.com/subscriptions/ -# @@||youporn.com/searchapi/$xmlhttprequest (easylistchina+easylist.txt: 61719) -.youporn.com/searchapi/ -# @@||youporn.com/notifications/$xmlhttprequest (easylistchina+easylist.txt: 61718) -.youporn.com/notifications/ -# @@||youporn.com/mycollections.json$xmlhttprequest (easylistchina+easylist.txt: 61717) -.youporn.com/mycollections\.json -# @@||youporn.com/esi_home/$xmlhttprequest (easylistchina+easylist.txt: 61716) -.youporn.com/esi_home/ -# @@||youporn.com/change/$xmlhttprequest (easylistchina+easylist.txt: 61715) -.youporn.com/change/ -# @@||youporn.com/ajax/$xmlhttprequest (easylistchina+easylist.txt: 61714) -.youporn.com/ajax/ -# @@||youporn.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61713) -.youporn.com/_Incapsula_Resource\? -# @@||upload.tube8.com^$script,xmlhttprequest (easylistchina+easylist.txt: 61710) -.upload.tube8.com -# @@||tube8.fr/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61709) -.tube8.fr/_Incapsula_Resource\? -# @@||tube8.es/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61708) -.tube8.es/_Incapsula_Resource\? -# @@||tube8.com/images/$image (easylistchina+easylist.txt: 61707) -.tube8.com/images/ -# @@||tube8.com/favicon.ico (easylistchina+easylist.txt: 61706) -.tube8.com/favicon\.ico -# @@||tube8.com/embed/$subdocument,~third-party (easylistchina+easylist.txt: 61705) -.tube8.com/embed/ -# @@||tube8.com/ajax2/$xmlhttprequest (easylistchina+easylist.txt: 61704) -.tube8.com/ajax2/ -# @@||tube8.com/ajax/$xmlhttprequest (easylistchina+easylist.txt: 61703) -.tube8.com/ajax/ -# @@||tube8.com/ajax-$xmlhttprequest (easylistchina+easylist.txt: 61702) -.tube8.com/ajax- -# @@||tube8.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61701) -.tube8.com/_Incapsula_Resource\? -# @@||redtube.com/watched/$xmlhttprequest (easylistchina+easylist.txt: 61696) -.redtube.com/watched/ -# @@||redtube.com/videodetails/$xmlhttprequest (easylistchina+easylist.txt: 61695) -.redtube.com/videodetails/ -# @@||redtube.com/upload/$xmlhttprequest (easylistchina+easylist.txt: 61694) -.redtube.com/upload/ -# @@||redtube.com/tags-stars/$xmlhttprequest (easylistchina+easylist.txt: 61693) -.redtube.com/tags-stars/ -# @@||redtube.com/tags-stars$xmlhttprequest (easylistchina+easylist.txt: 61692) -.redtube.com/tags-stars -# @@||redtube.com/subscribe/$xmlhttprequest (easylistchina+easylist.txt: 61691) -.redtube.com/subscribe/ -# @@||redtube.com/starsuggestion/$xmlhttprequest (easylistchina+easylist.txt: 61690) -.redtube.com/starsuggestion/ -# @@||redtube.com/searchsuggest?$xmlhttprequest (easylistchina+easylist.txt: 61689) -.redtube.com/searchsuggest\? -# @@||redtube.com/relatedvideos/$xmlhttprequest (easylistchina+easylist.txt: 61688) -.redtube.com/relatedvideos/ -# @@||redtube.com/recommended/$xmlhttprequest (easylistchina+easylist.txt: 61687) -.redtube.com/recommended/ -# @@||redtube.com/rate$xmlhttprequest (easylistchina+easylist.txt: 61686) -.redtube.com/rate -# @@||redtube.com/panel/$xmlhttprequest (easylistchina+easylist.txt: 61685) -.redtube.com/panel/ -# @@||redtube.com/notifications/$xmlhttprequest (easylistchina+easylist.txt: 61684) -.redtube.com/notifications/ -# @@||redtube.com/message/$xmlhttprequest (easylistchina+easylist.txt: 61683) -.redtube.com/message/ -# @@||redtube.com/logout$xmlhttprequest (easylistchina+easylist.txt: 61682) -.redtube.com/logout -# @@||redtube.com/language-star-suggestion/$xmlhttprequest (easylistchina+easylist.txt: 61681) -.redtube.com/language-star-suggestion/ -# @@||redtube.com/js/jquery/$xmlhttprequest (easylistchina+easylist.txt: 61680) -.redtube.com/js/jquery/ -# @@||redtube.com/htmllogin| (easylistchina+easylist.txt: 61679) -.redtube.com/htmllogin$ -# @@||redtube.com/gallery/$xmlhttprequest (easylistchina+easylist.txt: 61678) -.redtube.com/gallery/ -# @@||redtube.com/embed/$xmlhttprequest (easylistchina+easylist.txt: 61677) -.redtube.com/embed/ -# @@||redtube.com/comments/$xmlhttprequest (easylistchina+easylist.txt: 61676) -.redtube.com/comments/ -# @@||redtube.com/blockuser/$xmlhttprequest (easylistchina+easylist.txt: 61675) -.redtube.com/blockuser/ -# @@||redtube.com/bid/$subdocument (easylistchina+easylist.txt: 61674) -.redtube.com/bid/ -# @@||redtube.com/advancedsearch$xmlhttprequest (easylistchina+easylist.txt: 61673) -.redtube.com/advancedsearch -# @@||redtube.com/addfriend/$xmlhttprequest (easylistchina+easylist.txt: 61672) -.redtube.com/addfriend/ -# @@||redtube.com/addfavorite/$xmlhttprequest (easylistchina+easylist.txt: 61671) -.redtube.com/addfavorite/ -# @@||redtube.com/_thumbs/$image (easylistchina+easylist.txt: 61670) -.redtube.com/_thumbs/ -# @@||redtube.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61669) -.redtube.com/_Incapsula_Resource\? -# @@||redtube.com.br/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61668) -.redtube.com.br/_Incapsula_Resource\? -# @@||pornhubcommunity.com/cdn_files/images/$image (easylistchina+easylist.txt: 61667) -.pornhubcommunity.com/cdn_files/images/ -# @@||pornhub.com/videouploading3/$xmlhttprequest (easylistchina+easylist.txt: 61665) -.pornhub.com/videouploading3/ -# @@||pornhub.com/video/$xmlhttprequest (easylistchina+easylist.txt: 61664) -.pornhub.com/video/ -# @@||pornhub.com/users/$xmlhttprequest (easylistchina+easylist.txt: 61663) -.pornhub.com/users/ -# @@||pornhub.com/user/$xmlhttprequest (easylistchina+easylist.txt: 61662) -.pornhub.com/user/ -# @@||pornhub.com/uploading/$xmlhttprequest (easylistchina+easylist.txt: 61661) -.pornhub.com/uploading/ -# @@||pornhub.com/upload/$xmlhttprequest (easylistchina+easylist.txt: 61660) -.pornhub.com/upload/ -# @@||pornhub.com/svvt/add?$xmlhttprequest (easylistchina+easylist.txt: 61659) -.pornhub.com/svvt/add\? -# @@||pornhub.com/stream/$xmlhttprequest (easylistchina+easylist.txt: 61658) -.pornhub.com/stream/ -# @@||pornhub.com/premium/$xmlhttprequest (easylistchina+easylist.txt: 61657) -.pornhub.com/premium/ -# @@||pornhub.com/pornstars/$xmlhttprequest (easylistchina+easylist.txt: 61656) -.pornhub.com/pornstars/ -# @@||pornhub.com/pornstar/$xmlhttprequest (easylistchina+easylist.txt: 61655) -.pornhub.com/pornstar/ -# @@||pornhub.com/playlist_json/$xmlhttprequest (easylistchina+easylist.txt: 61654) -.pornhub.com/playlist_json/ -# @@||pornhub.com/oauth2/authorize?$popup (easylistchina+easylist.txt: 61653) -.pornhub.com/oauth2/authorize\? -# @@||pornhub.com/insights/$image,xmlhttprequest (easylistchina+easylist.txt: 61652) -.pornhub.com/insights/ -# @@||pornhub.com/gif/$xmlhttprequest (easylistchina+easylist.txt: 61651) -.pornhub.com/gif/ -# @@||pornhub.com/front/$xmlhttprequest (easylistchina+easylist.txt: 61650) -.pornhub.com/front/ -# @@||pornhub.com/comment/$xmlhttprequest (easylistchina+easylist.txt: 61649) -.pornhub.com/comment/ -# @@||pornhub.com/chat/$xmlhttprequest (easylistchina+easylist.txt: 61648) -.pornhub.com/chat/ -# @@||pornhub.com/channel/$xmlhttprequest (easylistchina+easylist.txt: 61647) -.pornhub.com/channel/ -# @@||pornhub.com/album_upload$xmlhttprequest (easylistchina+easylist.txt: 61646) -.pornhub.com/album_upload -# @@||pornhub.com/album/$xmlhttprequest (easylistchina+easylist.txt: 61645) -.pornhub.com/album/ -# @@||pornhub.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61644) -.pornhub.com/_Incapsula_Resource\? -# @@||phncdn.com^*/html5Uploader/$script (easylistchina+easylist.txt: 61641) -.phncdn.com/.*/html5Uploader/ -# @@||phncdn.com/zeroclipboard-$script (easylistchina+easylist.txt: 61640) -.phncdn.com/zeroclipboard- -# @@||phncdn.com/www-static/js/vtablet/video/$script (easylistchina+easylist.txt: 61639) -.phncdn.com/www-static/js/vtablet/video/ -# @@||phncdn.com/www-static/js/vtablet/template-$script (easylistchina+easylist.txt: 61638) -.phncdn.com/www-static/js/vtablet/template- -# @@||phncdn.com/www-static/js/vtablet/pcFunctions.js$script (easylistchina+easylist.txt: 61637) -.phncdn.com/www-static/js/vtablet/pcFunctions\.js -# @@||phncdn.com/www-static/js/vtablet/main.js$script (easylistchina+easylist.txt: 61636) -.phncdn.com/www-static/js/vtablet/main\.js -# @@||phncdn.com/www-static/js/vtablet/legacy.js$script (easylistchina+easylist.txt: 61635) -.phncdn.com/www-static/js/vtablet/legacy\.js -# @@||phncdn.com/www-static/js/vtablet/iscroll-lite.$script (easylistchina+easylist.txt: 61634) -.phncdn.com/www-static/js/vtablet/iscroll-lite\. -# @@||phncdn.com/www-static/js/vtablet/hammer.min.js$script (easylistchina+easylist.txt: 61633) -.phncdn.com/www-static/js/vtablet/hammer\.min\.js -# @@||phncdn.com/www-static/js/vtablet/front/$script (easylistchina+easylist.txt: 61632) -.phncdn.com/www-static/js/vtablet/front/ -# @@||phncdn.com/www-static/js/vtablet/fakeworker-$script (easylistchina+easylist.txt: 61631) -.phncdn.com/www-static/js/vtablet/fakeworker- -# @@||phncdn.com/www-static/js/vmobile/widget-$script (easylistchina+easylist.txt: 61630) -.phncdn.com/www-static/js/vmobile/widget- -# @@||phncdn.com/www-static/js/vmobile/video-search.js$script (easylistchina+easylist.txt: 61629) -.phncdn.com/www-static/js/vmobile/video-search\.js -# @@||phncdn.com/www-static/js/vmobile/utils.js$script (easylistchina+easylist.txt: 61628) -.phncdn.com/www-static/js/vmobile/utils\.js -# @@||phncdn.com/www-static/js/vmobile/stream.js$script (easylistchina+easylist.txt: 61627) -.phncdn.com/www-static/js/vmobile/stream\.js -# @@||phncdn.com/www-static/js/vmobile/stream-$script (easylistchina+easylist.txt: 61626) -.phncdn.com/www-static/js/vmobile/stream- -# @@||phncdn.com/www-static/js/vmobile/show.js$script (easylistchina+easylist.txt: 61625) -.phncdn.com/www-static/js/vmobile/show\.js -# @@||phncdn.com/www-static/js/vmobile/profile.js$script (easylistchina+easylist.txt: 61624) -.phncdn.com/www-static/js/vmobile/profile\.js -# @@||phncdn.com/www-static/js/vmobile/preHeadJs.$script (easylistchina+easylist.txt: 61623) -.phncdn.com/www-static/js/vmobile/preHeadJs\. -# @@||phncdn.com/www-static/js/vmobile/phub.js$script (easylistchina+easylist.txt: 61622) -.phncdn.com/www-static/js/vmobile/phub\.js -# @@||phncdn.com/www-static/js/vmobile/photo.js$script (easylistchina+easylist.txt: 61621) -.phncdn.com/www-static/js/vmobile/photo\.js -# @@||phncdn.com/www-static/js/vmobile/notifications.js$script (easylistchina+easylist.txt: 61620) -.phncdn.com/www-static/js/vmobile/notifications\.js -# @@||phncdn.com/www-static/js/vmobile/login.js$script (easylistchina+easylist.txt: 61619) -.phncdn.com/www-static/js/vmobile/login\.js -# @@||phncdn.com/www-static/js/vmobile/html5-canvas.js$script (easylistchina+easylist.txt: 61618) -.phncdn.com/www-static/js/vmobile/html5-canvas\.js -# @@||phncdn.com/www-static/js/vmobile/head.js$script (easylistchina+easylist.txt: 61617) -.phncdn.com/www-static/js/vmobile/head\.js -# @@||phncdn.com/www-static/js/vmobile/footer.js$script (easylistchina+easylist.txt: 61616) -.phncdn.com/www-static/js/vmobile/footer\.js -# @@||phncdn.com/www-static/js/vmobile/feed-comments.js$script (easylistchina+easylist.txt: 61615) -.phncdn.com/www-static/js/vmobile/feed-comments\.js -# @@||phncdn.com/www-static/js/vmobile/comments.js$script (easylistchina+easylist.txt: 61614) -.phncdn.com/www-static/js/vmobile/comments\.js -# @@||phncdn.com/www-static/js/vmobile/autocomplete-$script (easylistchina+easylist.txt: 61613) -.phncdn.com/www-static/js/vmobile/autocomplete- -# @@||phncdn.com/www-static/js/vmobile/application.js$script (easylistchina+easylist.txt: 61612) -.phncdn.com/www-static/js/vmobile/application\.js -# @@||phncdn.com/www-static/js/vmobile/album.js$script (easylistchina+easylist.txt: 61611) -.phncdn.com/www-static/js/vmobile/album\.js -# @@||phncdn.com/www-static/js/video-$script (easylistchina+easylist.txt: 61610) -.phncdn.com/www-static/js/video- -# @@||phncdn.com/www-static/js/tag-$script (easylistchina+easylist.txt: 61609) -.phncdn.com/www-static/js/tag- -# @@||phncdn.com/www-static/js/suggest-$script (easylistchina+easylist.txt: 61608) -.phncdn.com/www-static/js/suggest- -# @@||phncdn.com/www-static/js/signin.js$script (easylistchina+easylist.txt: 61607) -.phncdn.com/www-static/js/signin\.js -# @@||phncdn.com/www-static/js/show_image.js?$script (easylistchina+easylist.txt: 61606) -.phncdn.com/www-static/js/show_image\.js\? -# @@||phncdn.com/www-static/js/quality-$script (easylistchina+easylist.txt: 61605) -.phncdn.com/www-static/js/quality- -# @@||phncdn.com/www-static/js/promo-banner.js$script (easylistchina+easylist.txt: 61604) -.phncdn.com/www-static/js/promo-banner\.js -# @@||phncdn.com/www-static/js/profile/$script (easylistchina+easylist.txt: 61603) -.phncdn.com/www-static/js/profile/ -# @@||phncdn.com/www-static/js/premium/$script (easylistchina+easylist.txt: 61602) -.phncdn.com/www-static/js/premium/ -# @@||phncdn.com/www-static/js/pornstars.js?$script (easylistchina+easylist.txt: 61601) -.phncdn.com/www-static/js/pornstars\.js\? -# @@||phncdn.com/www-static/js/playlist/$script (easylistchina+easylist.txt: 61600) -.phncdn.com/www-static/js/playlist/ -# @@||phncdn.com/www-static/js/phub.$script (easylistchina+easylist.txt: 61599) -.phncdn.com/www-static/js/phub\. -# @@||phncdn.com/www-static/js/ph-networkbar.js$script (easylistchina+easylist.txt: 61598) -.phncdn.com/www-static/js/ph-networkbar\.js -# @@||phncdn.com/www-static/js/ph-footer.js$script (easylistchina+easylist.txt: 61597) -.phncdn.com/www-static/js/ph-footer\.js -# @@||phncdn.com/www-static/js/mg_flipbook-$script (easylistchina+easylist.txt: 61596) -.phncdn.com/www-static/js/mg_flipbook- -# @@||phncdn.com/www-static/js/mg-utils.js$script (easylistchina+easylist.txt: 61595) -.phncdn.com/www-static/js/mg-utils\.js -# @@||phncdn.com/www-static/js/mg-modal.js$script (easylistchina+easylist.txt: 61594) -.phncdn.com/www-static/js/mg-modal\.js -# @@||phncdn.com/www-static/js/lib/$script (easylistchina+easylist.txt: 61593) -.phncdn.com/www-static/js/lib/ -# @@||phncdn.com/www-static/js/html5Player/$script (easylistchina+easylist.txt: 61592) -.phncdn.com/www-static/js/html5Player/ -# @@||phncdn.com/www-static/js/header.js$script (easylistchina+easylist.txt: 61591) -.phncdn.com/www-static/js/header\.js -# @@||phncdn.com/www-static/js/header-menu.js?$script (easylistchina+easylist.txt: 61590) -.phncdn.com/www-static/js/header-menu\.js\? -# @@||phncdn.com/www-static/js/gif-$script (easylistchina+easylist.txt: 61589) -.phncdn.com/www-static/js/gif- -# @@||phncdn.com/www-static/js/front-login.js$script (easylistchina+easylist.txt: 61588) -.phncdn.com/www-static/js/front-login\.js -# @@||phncdn.com/www-static/js/front-index.js?$script (easylistchina+easylist.txt: 61587) -.phncdn.com/www-static/js/front-index\.js\? -# @@||phncdn.com/www-static/js/footer.js$script (easylistchina+easylist.txt: 61586) -.phncdn.com/www-static/js/footer\.js -# @@||phncdn.com/www-static/js/create-account.js?$script (easylistchina+easylist.txt: 61585) -.phncdn.com/www-static/js/create-account\.js\? -# @@||phncdn.com/www-static/*/widgets-$script (easylistchina+easylist.txt: 61584) -.phncdn.com/www-static/.*/widgets- -# @@||phncdn.com/www-static/*/jquery.$script (easylistchina+easylist.txt: 61583) -.phncdn.com/www-static/.*/jquery\. -# @@||phncdn.com/www-static/*/gif-view.js$script (easylistchina+easylist.txt: 61582) -.phncdn.com/www-static/.*/gif-view\.js -# @@||phncdn.com/www-static/*/gif-view-functions.js$script (easylistchina+easylist.txt: 61581) -.phncdn.com/www-static/.*/gif-view-functions\.js -# @@||phncdn.com/www-static/*/autocomplete.$script (easylistchina+easylist.txt: 61580) -.phncdn.com/www-static/.*/autocomplete\. -# @@||phncdn.com/underscore-$script (easylistchina+easylist.txt: 61579) -.phncdn.com/underscore- -# @@||phncdn.com/tubes-$script (easylistchina+easylist.txt: 61578) -.phncdn.com/tubes- -# @@||phncdn.com/timings-$script (easylistchina+easylist.txt: 61577) -.phncdn.com/timings- -# @@||phncdn.com/swfobject-$script (easylistchina+easylist.txt: 61576) -.phncdn.com/swfobject- -# @@||phncdn.com/pagespeed.js$script (easylistchina+easylist.txt: 61575) -.phncdn.com/pagespeed\.js -# @@||phncdn.com/networkbar-$script (easylistchina+easylist.txt: 61574) -.phncdn.com/networkbar- -# @@||phncdn.com/modernizr-$script (easylistchina+easylist.txt: 61573) -.phncdn.com/modernizr- -# @@||phncdn.com/js/xp_bubble/$script (easylistchina+easylist.txt: 61572) -.phncdn.com/js/xp_bubble/ -# @@||phncdn.com/js/votingSystem/$script (easylistchina+easylist.txt: 61571) -.phncdn.com/js/votingSystem/ -# @@||phncdn.com/js/videos_setUp-min.js?$script (easylistchina+easylist.txt: 61570) -.phncdn.com/js/videos_setUp-min\.js\? -# @@||phncdn.com/js/videoPlayer/$script (easylistchina+easylist.txt: 61569) -.phncdn.com/js/videoPlayer/ -# @@||phncdn.com/js/videoDetection.js?$script (easylistchina+easylist.txt: 61568) -.phncdn.com/js/videoDetection\.js\? -# @@||phncdn.com/js/video_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61567) -.phncdn.com/js/video_setUp_tablet-min\.js -# @@||phncdn.com/js/video_setUp-min.js$script (easylistchina+easylist.txt: 61566) -.phncdn.com/js/video_setUp-min\.js -# @@||phncdn.com/js/userVideos_setUp-min.js?$script (easylistchina+easylist.txt: 61565) -.phncdn.com/js/userVideos_setUp-min\.js\? -# @@||phncdn.com/js/userSettings_setUp-min.js?$script (easylistchina+easylist.txt: 61564) -.phncdn.com/js/userSettings_setUp-min\.js\? -# @@||phncdn.com/js/userMiniProfile/$script (easylistchina+easylist.txt: 61563) -.phncdn.com/js/userMiniProfile/ -# @@||phncdn.com/js/userInc-min.js$script (easylistchina+easylist.txt: 61562) -.phncdn.com/js/userInc-min\.js -# @@||phncdn.com/js/userFollowing_setUp-min.js?$script (easylistchina+easylist.txt: 61561) -.phncdn.com/js/userFollowing_setUp-min\.js\? -# @@||phncdn.com/js/userFollowers_setUp-min.js?$script (easylistchina+easylist.txt: 61560) -.phncdn.com/js/userFollowers_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites_setUp-min.js?$script (easylistchina+easylist.txt: 61559) -.phncdn.com/js/userFavorites_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites-$script (easylistchina+easylist.txt: 61558) -.phncdn.com/js/userFavorites- -# @@||phncdn.com/js/userDashboard_setUp-min.js?$script (easylistchina+easylist.txt: 61557) -.phncdn.com/js/userDashboard_setUp-min\.js\? -# @@||phncdn.com/js/userComments_setUp-min.js?$script (easylistchina+easylist.txt: 61556) -.phncdn.com/js/userComments_setUp-min\.js\? -# @@||phncdn.com/js/userComments-min.js$script (easylistchina+easylist.txt: 61555) -.phncdn.com/js/userComments-min\.js -# @@||phncdn.com/js/userAchievements_setUp-min.js?$script (easylistchina+easylist.txt: 61554) -.phncdn.com/js/userAchievements_setUp-min\.js\? -# @@||phncdn.com/js/user_post_comment_form/$script (easylistchina+easylist.txt: 61553) -.phncdn.com/js/user_post_comment_form/ -# @@||phncdn.com/js/user_favorites/$script (easylistchina+easylist.txt: 61552) -.phncdn.com/js/user_favorites/ -# @@||phncdn.com/js/user_dashboard/$script (easylistchina+easylist.txt: 61551) -.phncdn.com/js/user_dashboard/ -# @@||phncdn.com/js/user_comments/$script (easylistchina+easylist.txt: 61550) -.phncdn.com/js/user_comments/ -# @@||phncdn.com/js/uploaded_video_thumbnail_select/$script (easylistchina+easylist.txt: 61549) -.phncdn.com/js/uploaded_video_thumbnail_select/ -# @@||phncdn.com/js/underPlayer/$script (easylistchina+easylist.txt: 61548) -.phncdn.com/js/underPlayer/ -# @@||phncdn.com/js/translatorWatchPageController-min.js$script (easylistchina+easylist.txt: 61547) -.phncdn.com/js/translatorWatchPageController-min\.js -# @@||phncdn.com/js/translator/$script (easylistchina+easylist.txt: 61546) -.phncdn.com/js/translator/ -# @@||phncdn.com/js/translator-min.js$script (easylistchina+easylist.txt: 61545) -.phncdn.com/js/translator-min\.js -# @@||phncdn.com/js/tagStar/$script (easylistchina+easylist.txt: 61544) -.phncdn.com/js/tagStar/ -# @@||phncdn.com/js/site-main.$script (easylistchina+easylist.txt: 61543) -.phncdn.com/js/site-main\. -# @@||phncdn.com/js/signin-min.js$script (easylistchina+easylist.txt: 61542) -.phncdn.com/js/signin-min\.js -# @@||phncdn.com/js/showMenu/$script (easylistchina+easylist.txt: 61541) -.phncdn.com/js/showMenu/ -# @@||phncdn.com/js/share_video_block/$script (easylistchina+easylist.txt: 61540) -.phncdn.com/js/share_video_block/ -# @@||phncdn.com/js/segment_changer/$script (easylistchina+easylist.txt: 61539) -.phncdn.com/js/segment_changer/ -# @@||phncdn.com/js/searchbar_show/$script (easylistchina+easylist.txt: 61538) -.phncdn.com/js/searchbar_show/ -# @@||phncdn.com/js/searchbar/$script (easylistchina+easylist.txt: 61537) -.phncdn.com/js/searchbar/ -# @@||phncdn.com/js/search_setUp-min.js$script (easylistchina+easylist.txt: 61536) -.phncdn.com/js/search_setUp-min\.js -# @@||phncdn.com/js/report_video_form/$script (easylistchina+easylist.txt: 61535) -.phncdn.com/js/report_video_form/ -# @@||phncdn.com/js/relatedVideos/$script (easylistchina+easylist.txt: 61534) -.phncdn.com/js/relatedVideos/ -# @@||phncdn.com/js/popUnder/exclusions-min.js$script (easylistchina+easylist.txt: 61533) -.phncdn.com/js/popUnder/exclusions-min\.js -# @@||phncdn.com/js/ourfriends-min.js$script (easylistchina+easylist.txt: 61532) -.phncdn.com/js/ourfriends-min\.js -# @@||phncdn.com/js/nextBtn/$script (easylistchina+easylist.txt: 61531) -.phncdn.com/js/nextBtn/ -# @@||phncdn.com/js/needLogin/$script (easylistchina+easylist.txt: 61530) -.phncdn.com/js/needLogin/ -# @@||phncdn.com/js/mg_modal/$script (easylistchina+easylist.txt: 61529) -.phncdn.com/js/mg_modal/ -# @@||phncdn.com/js/menu_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61528) -.phncdn.com/js/menu_setUp_tablet-min\.js -# @@||phncdn.com/js/m_tubes/MG_autocomplete.js$script (easylistchina+easylist.txt: 61527) -.phncdn.com/js/m_tubes/MG_autocomplete\.js -# @@||phncdn.com/js/login_form/$script (easylistchina+easylist.txt: 61526) -.phncdn.com/js/login_form/ -# @@||phncdn.com/js/libs/ProfileCommentsAction-min.js$script (easylistchina+easylist.txt: 61525) -.phncdn.com/js/libs/ProfileCommentsAction-min\.js -# @@||phncdn.com/js/levelUp/$script (easylistchina+easylist.txt: 61524) -.phncdn.com/js/levelUp/ -# @@||phncdn.com/js/language_$script (easylistchina+easylist.txt: 61523) -.phncdn.com/js/language_ -# @@||phncdn.com/js/karmaInfo/$script (easylistchina+easylist.txt: 61522) -.phncdn.com/js/karmaInfo/ -# @@||phncdn.com/js/jquery.$script (easylistchina+easylist.txt: 61521) -.phncdn.com/js/jquery\. -# @@||phncdn.com/js/jqbrowser-compressed.js$script (easylistchina+easylist.txt: 61520) -.phncdn.com/js/jqbrowser-compressed\.js -# @@||phncdn.com/js/is_online/$script (easylistchina+easylist.txt: 61519) -.phncdn.com/js/is_online/ -# @@||phncdn.com/js/ipad/$script (easylistchina+easylist.txt: 61518) -.phncdn.com/js/ipad/ -# @@||phncdn.com/js/infinite.$script (easylistchina+easylist.txt: 61517) -.phncdn.com/js/infinite\. -# @@||phncdn.com/js/html5player.js?$script (easylistchina+easylist.txt: 61516) -.phncdn.com/js/html5player\.js\? -# @@||phncdn.com/js/home_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61515) -.phncdn.com/js/home_setUp_tablet-min\.js -# @@||phncdn.com/js/home_setUp-min.js$script (easylistchina+easylist.txt: 61514) -.phncdn.com/js/home_setUp-min\.js -# @@||phncdn.com/js/general_tablet-min.js$script (easylistchina+easylist.txt: 61513) -.phncdn.com/js/general_tablet-min\.js -# @@||phncdn.com/js/general-min.js$script (easylistchina+easylist.txt: 61512) -.phncdn.com/js/general-min\.js -# @@||phncdn.com/js/follow_button/$script (easylistchina+easylist.txt: 61511) -.phncdn.com/js/follow_button/ -# @@||phncdn.com/js/flipbook/$script (easylistchina+easylist.txt: 61510) -.phncdn.com/js/flipbook/ -# @@||phncdn.com/js/filters_menu/$script (easylistchina+easylist.txt: 61509) -.phncdn.com/js/filters_menu/ -# @@||phncdn.com/js/fav_like_user_feed/$script (easylistchina+easylist.txt: 61508) -.phncdn.com/js/fav_like_user_feed/ -# @@||phncdn.com/js/et.ready.$script (easylistchina+easylist.txt: 61507) -.phncdn.com/js/et\.ready\. -# @@||phncdn.com/js/editUserDropDown/$script (easylistchina+easylist.txt: 61506) -.phncdn.com/js/editUserDropDown/ -# @@||phncdn.com/js/deleteVideo/$script (easylistchina+easylist.txt: 61505) -.phncdn.com/js/deleteVideo/ -# @@||phncdn.com/js/deleteComment/$script (easylistchina+easylist.txt: 61504) -.phncdn.com/js/deleteComment/ -# @@||phncdn.com/js/cover_tutorial/$script (easylistchina+easylist.txt: 61503) -.phncdn.com/js/cover_tutorial/ -# @@||phncdn.com/js/common_jq-min.js$script (easylistchina+easylist.txt: 61502) -.phncdn.com/js/common_jq-min\.js -# @@||phncdn.com/js/comments/$script (easylistchina+easylist.txt: 61501) -.phncdn.com/js/comments/ -# @@||phncdn.com/js/categorylist_setUp-min.js?$script (easylistchina+easylist.txt: 61500) -.phncdn.com/js/categorylist_setUp-min\.js\? -# @@||phncdn.com/js/carousellite.$script (easylistchina+easylist.txt: 61499) -.phncdn.com/js/carousellite\. -# @@||phncdn.com/js/browser-$script (easylistchina+easylist.txt: 61498) -.phncdn.com/js/browser- -# @@||phncdn.com/js/badgeSelector/$script (easylistchina+easylist.txt: 61497) -.phncdn.com/js/badgeSelector/ -# @@||phncdn.com/js/avatar_$script (easylistchina+easylist.txt: 61496) -.phncdn.com/js/avatar_ -# @@||phncdn.com/js/ad_form_header/ad_form_header-min.js?$script (easylistchina+easylist.txt: 61495) -.phncdn.com/js/ad_form_header/ad_form_header-min\.js\? -# @@||phncdn.com/js/achievement-$script (easylistchina+easylist.txt: 61494) -.phncdn.com/js/achievement- -# @@||phncdn.com/js/*_disclaimer/*_disclaimer_controller-min.js?$script (easylistchina+easylist.txt: 61493) -.phncdn.com/js/.*_disclaimer/.*_disclaimer_controller-min\.js\? -# @@||phncdn.com/js/*_disclaimer/*_disclaimer-min.js?$script (easylistchina+easylist.txt: 61492) -.phncdn.com/js/.*_disclaimer/.*_disclaimer-min\.js\? -# @@||phncdn.com/jquery/$script (easylistchina+easylist.txt: 61491) -.phncdn.com/jquery/ -# @@||phncdn.com/jquery-$script (easylistchina+easylist.txt: 61490) -.phncdn.com/jquery- -# @@||phncdn.com/html5shiv-$script (easylistchina+easylist.txt: 61489) -.phncdn.com/html5shiv- -# @@||phncdn.com/html5player/$script (easylistchina+easylist.txt: 61488) -.phncdn.com/html5player/ -# @@||phncdn.com/head/$script (easylistchina+easylist.txt: 61487) -.phncdn.com/head/ -# @@||phncdn.com/cb/bundles/$script (easylistchina+easylist.txt: 61486) -.phncdn.com/cb/bundles/ -# @@||phncdn.com/cb/assets/$script (easylistchina+easylist.txt: 61485) -.phncdn.com/cb/assets/ -# @@||google.com/recaptcha/$image (easylistchina+easylist.txt: 61482) -.google.com/recaptcha/ -# @@||blog.tube8.com/wp-content/$image,script (easylistchina+easylist.txt: 61476) -.blog.tube8.com/wp-content/ -# @@||xxxporntalk.com/images/xxxpt-chrome.jpg (easylistchina+easylist.txt: 61470) -.xxxporntalk.com/images/xxxpt-chrome\.jpg -# @@||xhcdn.com/images/flag/AD.gif (easylistchina+easylist.txt: 61469) -.xhcdn.com/images/flag/AD\.gif -# @@||tracking.hornymatches.com/track?type=unsubscribe&enid=$subdocument,third-party (easylistchina+easylist.txt: 61466) -.tracking.hornymatches.com/track\?type=unsubscribe&enid= -# @@||tnaflix.com/ad/$object-subrequest (easylistchina+easylist.txt: 61465) -.tnaflix.com/ad/ -# @@||tjoob.com/go.php?ad=$script,~third-party (easylistchina+easylist.txt: 61464) -.tjoob.com/go\.php\?ad= -# @@||sundaysportclassifieds.co.uk/ads/$image,~third-party (easylistchina+easylist.txt: 61461) -.sundaysportclassifieds.co.uk/ads/ -# @@||store.adam4adam.com/images/affbanners/$~third-party (easylistchina+easylist.txt: 61460) -.store.adam4adam.com/images/affbanners/ -# @@||store.adam4adam.com/affimages/$~third-party (easylistchina+easylist.txt: 61459) -.store.adam4adam.com/affimages/ -# @@||starcelebs.com/logos/logo10.jpg (easylistchina+easylist.txt: 61458) -.starcelebs.com/logos/logo10\.jpg -# @@||skimtube.com/advertisements.php? (easylistchina+easylist.txt: 61457) -.skimtube.com/advertisements\.php\? -# @@||sextoyfun.com/control/aff_banners/$~third-party (easylistchina+easylist.txt: 61456) -.sextoyfun.com/control/aff_banners/ -# @@||sextoyfun.com/admin/aff_files/BannerManager/$~third-party (easylistchina+easylist.txt: 61455) -.sextoyfun.com/admin/aff_files/BannerManager/ -# @@||pornteengirl.com/temporaire/image.php?*/virtuagirl/$image (easylistchina+easylist.txt: 61453) -.pornteengirl.com/temporaire/image\.php\?.*/virtuagirl/ -# @@||panicporn.com/Bannerads/player/player_flv_multi.swf$object (easylistchina+easylist.txt: 61451) -.panicporn.com/Bannerads/player/player_flv_multi\.swf -# @@||nonktube.com/img/adyea.jpg (easylistchina+easylist.txt: 61450) -.nonktube.com/img/adyea\.jpg -# @@||mrstiff.com/view/textad/$xmlhttprequest (easylistchina+easylist.txt: 61449) -.mrstiff.com/view/textad/ -# @@||manhuntshop.com/images/affbanners/$~third-party (easylistchina+easylist.txt: 61448) -.manhuntshop.com/images/affbanners/ -# @@||manhuntshop.com/affimages/$~third-party (easylistchina+easylist.txt: 61447) -.manhuntshop.com/affimages/ -# @@||kuntfutube.com/go.php?ad= (easylistchina+easylist.txt: 61445) -.kuntfutube.com/go\.php\?ad= -# @@||hostedadsp.realitykings.com/hosted/flash/rk_player_1.5_300x250.swf$object (easylistchina+easylist.txt: 61443) -.hostedadsp.realitykings.com/hosted/flash/rk_player_1\.5_300x250\.swf -# @@||graphics.pop6.com/javascript/live_cd/$script (easylistchina+easylist.txt: 61441) -.graphics.pop6.com/javascript/live_cd/ -# @@||graphics.pop6.com/javascript/live/$script (easylistchina+easylist.txt: 61440) -.graphics.pop6.com/javascript/live/ -# @@||gaynetwork.co.uk/Images/ads/bg/$image,~third-party (easylistchina+easylist.txt: 61438) -.gaynetwork.co.uk/Images/ads/bg/ -# @@||fucktube.com/work/videoad.php? (easylistchina+easylist.txt: 61437) -.fucktube.com/work/videoad\.php\? -# @@||eskimotube.com/advertisements.php?$script (easylistchina+easylist.txt: 61436) -.eskimotube.com/advertisements\.php\? -# @@||cam4.*/ads/directory/$xmlhttprequest (easylistchina+easylist.txt: 61434) -.cam4.*./(.*/)?ads/directory/ -# @@||burningcamel.com/ads/banner.jpg (easylistchina+easylist.txt: 61433) -.burningcamel.com/ads/banner\.jpg -# @@||boyzshop.com/images/affbanners/$image,~third-party (easylistchina+easylist.txt: 61432) -.boyzshop.com/images/affbanners/ -# @@||boyzshop.com/affimages/$~third-party (easylistchina+easylist.txt: 61431) -.boyzshop.com/affimages/ -# @@||ads.ultimatesurrender.com^$image,~third-party (easylistchina+easylist.txt: 61428) -.ads.ultimatesurrender.com -# @@||ads.fuckingmachines.com^$image,~third-party (easylistchina+easylist.txt: 61427) -.ads.fuckingmachines.com -# @@||ad.thisav.com/player/jw.swf (easylistchina+easylist.txt: 61426) -.ad.thisav.com/player/jw\.swf -# @@||ad.thisav.com/player/config.xml$object-subrequest (easylistchina+easylist.txt: 61425) -.ad.thisav.com/player/config\.xml -# @@||gsmarena.com/adclick.php?bannerid=$popup (easylistchina+easylist.txt: 61413) -.gsmarena.com/adclick\.php\?bannerid= -# @@||adv.blogupp.com^$popup (easylistchina+easylist.txt: 61403) -.adv.blogupp.com -# @@||ads.twitter.com^$popup,~third-party (easylistchina+easylist.txt: 61400) -.ads.twitter.com -# @@||ads.pinterest.com^$popup,~third-party (easylistchina+easylist.txt: 61397) -.ads.pinterest.com -# @@||zorza-polarna.pl/environment/cache/images/300_250_ (easylistchina+easylist.txt: 61391) -.zorza-polarna.pl/environment/cache/images/300_250_ -# @@||weatherbug.com/style/stickers/*_728x90.css (easylistchina+easylist.txt: 61389) -.weatherbug.com/style/stickers/.*_728x90\.css -# @@||weatherbug.com/images/stickers/*/728x90/ (easylistchina+easylist.txt: 61388) -.weatherbug.com/images/stickers/.*/728x90/ -# @@||weatherbug.com/desktop-weather/*=728x90& (easylistchina+easylist.txt: 61387) -.weatherbug.com/desktop-weather/.*=728x90& -# @@||weather.craven.net.au/weather/products/300x250.asp?$image (easylistchina+easylist.txt: 61386) -.weather.craven.net.au/weather/products/300x250\.asp\? -# @@||w3easy.org/templates/*_120x60_ (easylistchina+easylist.txt: 61385) -.w3easy.org/templates/.*_120x60_ -# @@||w3easy.org/templates/*_120x60. (easylistchina+easylist.txt: 61384) -.w3easy.org/templates/.*_120x60\. -# @@||vortex.accuweather.com^*_300x250_bg.jpg (easylistchina+easylist.txt: 61383) -.vortex.accuweather.com/.*_300x250_bg\.jpg -# @@||vortex.accuweather.com^*_160x600_bg.jpg (easylistchina+easylist.txt: 61382) -.vortex.accuweather.com/.*_160x600_bg\.jpg -# @@||vortex.accuweather.com^*_120x60_bg.jpg (easylistchina+easylist.txt: 61381) -.vortex.accuweather.com/.*_120x60_bg\.jpg -# @@||viamichelin.*&size=728x90,$subdocument (easylistchina+easylist.txt: 61380) -.viamichelin.*./.*&size=728x90, -# @@||usopen.org/images/pics/misc/*.300x250.jpg (easylistchina+easylist.txt: 61379) -.usopen.org/images/pics/misc/.*\.300x250\.jpg -# @@||usanetwork.com/sites/usanetwork/*300x250 (easylistchina+easylist.txt: 61378) -.usanetwork.com/sites/usanetwork/.*300x250 -# @@||union.edu/media/galleryPics/400x250/$~third-party (easylistchina+easylist.txt: 61377) -.union.edu/media/galleryPics/400x250/ -# @@||turner.com/v5cache/TCM/Images/*_120x60_ (easylistchina+easylist.txt: 61375) -.turner.com/v5cache/TCM/Images/.*_120x60_ -# @@||turner.com/v5cache/TCM/images/*_120x60. (easylistchina+easylist.txt: 61374) -.turner.com/v5cache/TCM/images/.*_120x60\. -# @@||tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/*_120_60.jpg (easylistchina+easylist.txt: 61373) -.tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/.*_120_60\.jpg -# @@||techpakistani.com/wp-content/uploads/*-300x100.$image (easylistchina+easylist.txt: 61372) -.techpakistani.com/wp-content/uploads/.*-300x100\. -# @@||swansuk.co.uk^*/300x250/$image,~third-party (easylistchina+easylist.txt: 61370) -.swansuk.co.uk/.*/300x250/ -# @@||stickam.com/wb/www/category/300x250/$image (easylistchina+easylist.txt: 61369) -.stickam.com/wb/www/category/300x250/ -# @@||static-origin.openedition.org^*-120x240.jpg (easylistchina+easylist.txt: 61368) -.static-origin.openedition.org/.*-120x240\.jpg -# @@||russia-direct.org/custom_ajax/widget?*=300x250&$script (easylistchina+easylist.txt: 61367) -.russia-direct.org/custom_ajax/widget\?.*=300x250& -# @@||roofandfloor.com/listing_$image,~third-party (easylistchina+easylist.txt: 61366) -.roofandfloor.com/listing_ -# @@||rehabs.com^*/xicons_social_sprite_400x60.png (easylistchina+easylist.txt: 61365) -.rehabs.com/.*/xicons_social_sprite_400x60\.png -# @@||quisqualis.com/QBanner_760x100.jpg (easylistchina+easylist.txt: 61363) -.quisqualis.com/QBanner_760x100\.jpg -# @@||opposingviews.com^*/300x250/ (easylistchina+easylist.txt: 61361) -.opposingviews.com/.*/300x250/ -# @@||onescreen.net/os/static/widgets/*300x250 (easylistchina+easylist.txt: 61360) -.onescreen.net/os/static/widgets/.*300x250 -# @@||nationalgeographic.com/exposure/content/*300x250 (easylistchina+easylist.txt: 61359) -.nationalgeographic.com/exposure/content/.*300x250 -# @@||mxtoolbox.com/Public/images/banners/Mx-Pro-160x600.jpg (easylistchina+easylist.txt: 61358) -.mxtoolbox.com/Public/images/banners/Mx-Pro-160x600\.jpg -# @@||msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/$image (easylistchina+easylist.txt: 61357) -.msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/ -# @@||motherboard.tv/content-images/*_120x60. (easylistchina+easylist.txt: 61355) -.motherboard.tv/content-images/.*_120x60\. -# @@||metrics.target.com/b/ss/*_300x250_$image (easylistchina+easylist.txt: 61353) -.metrics.target.com/b/ss/.*_300x250_ -# @@||marketing.beatport.com.s3.amazonaws.com^*/728x90_ (easylistchina+easylist.txt: 61352) -.marketing.beatport.com.s3.amazonaws.com/.*/728x90_ -# @@||maps.googleapis.com/maps/api/*=300x250& (easylistchina+easylist.txt: 61351) -.maps.googleapis.com/maps/api/.*=300x250& -# @@||maps.google.*/staticmap*^size=300x250^$image (easylistchina+easylist.txt: 61350) -.maps.google.*./(.*/)?staticmap.*[^\w%.-]size=300x250[^\w%.-] -# @@||la-finca-distribution.de/wp-content/uploads/*-120x240.$image (easylistchina+easylist.txt: 61349) -.la-finca-distribution.de/wp-content/uploads/.*-120x240\. -# @@||komikslandia.pl/environment/cache/images/300_250_ (easylistchina+easylist.txt: 61348) -.komikslandia.pl/environment/cache/images/300_250_ -# @@||imperialwonderservices.ie/images/banner/*-468x60.$~third-party (easylistchina+easylist.txt: 61347) -.imperialwonderservices.ie/images/banner/.*-468x60\. -# @@||imdb.com/images/*doubleclick/*320x240 (easylistchina+easylist.txt: 61346) -.imdb.com/images/.*doubleclick/.*320x240 -# @@||imdb.com/images/*doubleclick/*300x250 (easylistchina+easylist.txt: 61345) -.imdb.com/images/.*doubleclick/.*300x250 -# @@||imawow.weather.com/web/wow/$image (easylistchina+easylist.txt: 61344) -.imawow.weather.com/web/wow/ -# @@||images.outbrain.com/imageserver/*-120x60.$image (easylistchina+easylist.txt: 61343) -.images.outbrain.com/imageserver/.*-120x60\. -# @@||hortifor.com/images/*120x60$~third-party (easylistchina+easylist.txt: 61339) -.hortifor.com/images/.*120x60 -# @@||heathceramics.com/media/300x250/$image,~third-party (easylistchina+easylist.txt: 61338) -.heathceramics.com/media/300x250/ -# @@||harpers.co.uk/pictures/300x250/ (easylistchina+easylist.txt: 61337) -.harpers.co.uk/pictures/300x250/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?*=300x250& (easylistchina+easylist.txt: 61336) -.google.com/uds/modules/elements/newsshow/iframe\.html\?.*=300x250& -# @@||freetvhub.com/ad1_300x250.html (easylistchina+easylist.txt: 61335) -.freetvhub.com/ad1_300x250\.html -# @@||framestr.com^*/300x250/$image,~third-party (easylistchina+easylist.txt: 61334) -.framestr.com/.*/300x250/ -# @@||firestormgames.co.uk/image/*-120x60. (easylistchina+easylist.txt: 61332) -.firestormgames.co.uk/image/.*-120x60\. -# @@||findafranchise.com/_img/*_120x60.$image (easylistchina+easylist.txt: 61331) -.findafranchise.com/_img/.*_120x60\. -# @@||film.com/plugins/*-300x250 (easylistchina+easylist.txt: 61330) -.film.com/plugins/.*-300x250 -# @@||efvi.eu/badge/*-120x60.png (easylistchina+easylist.txt: 61328) -.efvi.eu/badge/.*-120x60\.png -# @@||educationpost.com.hk^*/300x250/$image (easylistchina+easylist.txt: 61327) -.educationpost.com.hk/.*/300x250/ -# @@||disney.com.au/global/swf/banner160x600.swf (easylistchina+easylist.txt: 61326) -.disney.com.au/global/swf/banner160x600\.swf -# @@||disney.com.au/global/swf/*728x90.swf (easylistchina+easylist.txt: 61325) -.disney.com.au/global/swf/.*728x90\.swf -# @@||discovery.com^*/ratio-size/pixel-ratio/300x250.png (easylistchina+easylist.txt: 61324) -.discovery.com/.*/ratio-size/pixel-ratio/300x250\.png -# @@||dawn.com/wp-content/uploads/*_300x250.jpg (easylistchina+easylist.txt: 61323) -.dawn.com/wp-content/uploads/.*_300x250\.jpg -# @@||cubeecraft.com/images/home/features/300x250/$image,~third-party (easylistchina+easylist.txt: 61322) -.cubeecraft.com/images/home/features/300x250/ -# @@||crowdignite.com/img/upload/*300x250 (easylistchina+easylist.txt: 61321) -.crowdignite.com/img/upload/.*300x250 -# @@||consumerist-com.wpengine.netdna-cdn.com/assets/*300x250 (easylistchina+easylist.txt: 61320) -.consumerist-com.wpengine.netdna-cdn.com/assets/.*300x250 -# @@||cinemanow.com/images/banners/300x250/ (easylistchina+easylist.txt: 61319) -.cinemanow.com/images/banners/300x250/ -# @@||canada.com/news/*-300-250.gif (easylistchina+easylist.txt: 61318) -.canada.com/news/.*-300-250\.gif -# @@||bizquest.com^*_img/_franchise/*_120x60.$image (easylistchina+easylist.txt: 61317) -.bizquest.com/.*_img/_franchise/.*_120x60\. -# @@||bettermarks.com/media$~third-party (easylistchina+easylist.txt: 61316) -.bettermarks.com/media -# @@||assets2.plinxmedia.net^*_300x250. (easylistchina+easylist.txt: 61315) -.assets2.plinxmedia.net/.*_300x250\. -# @@||assets1.plinxmedia.net^*_300x250. (easylistchina+easylist.txt: 61314) -.assets1.plinxmedia.net/.*_300x250\. -# @@||assets.vice.com^*_120x60.jpg (easylistchina+easylist.txt: 61313) -.assets.vice.com/.*_120x60\.jpg -# @@||artserieshotels.com.au/images/*_460_60. (easylistchina+easylist.txt: 61312) -.artserieshotels.com.au/images/.*_460_60\. -# @@||arnhemland-safaris.com/images/*_480_80_ (easylistchina+easylist.txt: 61311) -.arnhemland-safaris.com/images/.*_480_80_ -# @@||anitasrecipes.com/Content/Images/*160x500$image (easylistchina+easylist.txt: 61310) -.anitasrecipes.com/Content/Images/.*160x500 -# @@||ajax.googleapis.com/ajax/services/search/news?*-728x90&$script (easylistchina+easylist.txt: 61306) -.ajax.googleapis.com/ajax/services/search/news\?.*-728x90& -# @@||publisher.adservice.com^$elemhide (easylistchina+easylist.txt: 61298) -.publisher.adservice.com -# @@||adservicemedia.dk^$elemhide (easylistchina+easylist.txt: 61295) -.adservicemedia.dk -# @@||adservicemedia.dk/images/$~third-party (easylistchina+easylist.txt: 61294) -.adservicemedia.dk/images/ -# @@||adservice.com/wp-content/themes/adservice/$~third-party (easylistchina+easylist.txt: 61293) -.adservice.com/wp-content/themes/adservice/ -# @@||dailymotion.com/advertise/$xmlhttprequest (easylistchina+easylist.txt: 61285) -.dailymotion.com/advertise/ -# @@||gameloft.com/advertising-$~third-party (easylistchina+easylist.txt: 61282) -.gameloft.com/advertising- -# @@||adsbox.io^$~third-party (easylistchina+easylist.txt: 61280) -.adsbox.io -# @@||revealads.com^$~third-party (easylistchina+easylist.txt: 61278) -.revealads.com -# @@||integralplatform.com/static/js/Advertiser/$~third-party (easylistchina+easylist.txt: 61276) -.integralplatform.com/static/js/Advertiser/ -# @@||ads.acesse.com^$~third-party (easylistchina+easylist.txt: 61274) -.ads.acesse.com -# @@||ads.acesse.com^$elemhide (easylistchina+easylist.txt: 61273) -.ads.acesse.com -# @@||advertise.ru^$~third-party (easylistchina+easylist.txt: 61271) -.advertise.ru -# @@||ads.stumbleupon.com^$~third-party (easylistchina+easylist.txt: 61269) -.ads.stumbleupon.com -# @@||ads.stumbleupon.com^$popup (easylistchina+easylist.txt: 61268) -.ads.stumbleupon.com -# @@||teliad.*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 61249) -.teliad.*./(.*/)?advertiser/ -# @@||seedingup.*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 61248) -.seedingup.*./(.*/)?advertiser/ -# @@||app.adroll.com^$elemhide (easylistchina+easylist.txt: 61246) -.app.adroll.com -# @@||advertise.mxit.com^$~third-party (easylistchina+easylist.txt: 61241) -.advertise.mxit.com -# @@||vk.com/ads?act=payments&type$script,stylesheet (easylistchina+easylist.txt: 61234) -.vk.com/ads\?act=payments&type -# @@||vk.com/ads$elemhide (easylistchina+easylist.txt: 61232) -.vk.com/ads -# @@||paymentgate.ru/payment/*_Advert/ (easylistchina+easylist.txt: 61231) -.paymentgate.ru/payment/.*_Advert/ -# @@||advertising.microsoft.com^$~third-party (easylistchina+easylist.txt: 61228) -.advertising.microsoft.com -# @@||advertise.bingads.microsoft.com/wwimages/search/global/$image (easylistchina+easylist.txt: 61227) -.advertise.bingads.microsoft.com/wwimages/search/global/ -# @@||authentication-api.skimlinks.com^ (easylistchina+easylist.txt: 61224) -.authentication-api.skimlinks.com -# @@||api-merchants.skimlinks.com^ (easylistchina+easylist.txt: 61223) -.api-merchants.skimlinks.com -# @@||adhese.com^$~third-party (easylistchina+easylist.txt: 61219) -.adhese.com -# @@||adfox.ru^$~third-party (easylistchina+easylist.txt: 61215) -.adfox.ru -# @@||healthyadvertising.es^$~third-party (easylistchina+easylist.txt: 61213) -.healthyadvertising.es -# @@||fullad.com.br^$~third-party (easylistchina+easylist.txt: 61211) -.fullad.com.br -# @@||dashboard.tovarro.com^$~third-party (easylistchina+easylist.txt: 61209) -.dashboard.tovarro.com -# @@||dashboard.mgid.com^$~third-party (easylistchina+easylist.txt: 61208) -.dashboard.mgid.com -# @@||dashboard.marketgid.com^$~third-party (easylistchina+easylist.txt: 61207) -.dashboard.marketgid.com -# @@||dashboard.lentainform.com^$~third-party (easylistchina+easylist.txt: 61206) -.dashboard.lentainform.com -# @@||dashboard.idealmedia.com^$~third-party (easylistchina+easylist.txt: 61205) -.dashboard.idealmedia.com -# @@||www.advertising.com^$~third-party (easylistchina+easylist.txt: 61200) -.www.advertising.com -# @@||adcenter.mobicow.com^$~third-party (easylistchina+easylist.txt: 61198) -.adcenter.mobicow.com -# @@||www.google.com/images/icons/product/adsense-$image (easylistchina+easylist.txt: 61194) -.www.google.com/images/icons/product/adsense- -# @@||www.google.com/images/icons/feature/adsense_$image (easylistchina+easylist.txt: 61193) -.www.google.com/images/icons/feature/adsense_ -# @@||www.google.com/doubleclick/images/favicon.ico (easylistchina+easylist.txt: 61191) -.www.google.com/doubleclick/images/favicon\.ico -# @@||www.google.com/adwords/$elemhide (easylistchina+easylist.txt: 61188) -.www.google.com/adwords/ -# @@||www.google.*/adwords/$~third-party (easylistchina+easylist.txt: 61185) -.www.google.*./(.*/)?adwords/ -# @@||www.google.*/adsense/$~third-party (easylistchina+easylist.txt: 61184) -.www.google.*./(.*/)?adsense/ -# @@||www.google.*/ads/start/$~third-party (easylistchina+easylist.txt: 61183) -.www.google.*./(.*/)?ads/start/ -# @@||www.google.*/ads/js/$~third-party (easylistchina+easylist.txt: 61182) -.www.google.*./(.*/)?ads/js/ -# @@||www.google.*/ads/images/ (easylistchina+easylist.txt: 61181) -.www.google.*./(.*/)?ads/images/ -# @@||www.google.*/ads/css/$~third-party (easylistchina+easylist.txt: 61180) -.www.google.*./(.*/)?ads/css/ -# @@||www.google.*/ads/*/images/ (easylistchina+easylist.txt: 61179) -.www.google.*./(.*/)?ads/.*/images/ -# @@||www.google.*/adometry/$~third-party (easylistchina+easylist.txt: 61178) -.www.google.*./(.*/)?adometry/ -# @@||www.google.*/adometry.$~third-party (easylistchina+easylist.txt: 61177) -.www.google.*./(.*/)?adometry\. -# @@||support.google.com/adwords/$~third-party (easylistchina+easylist.txt: 61176) -.support.google.com/adwords/ -# @@||support.google.com/adsense/$~third-party (easylistchina+easylist.txt: 61175) -.support.google.com/adsense/ -# @@||google.com/payments/*/adwords.$document,subdocument (easylistchina+easylist.txt: 61170) -.google.com/payments/.*/adwords\. -# @@||google.com/help/hc/images/adwords/$image,~third-party (easylistchina+easylist.txt: 61169) -.google.com/help/hc/images/adwords/ -# @@||accounts.google.com/accounts/adwords/$image,~third-party (easylistchina+easylist.txt: 61162) -.accounts.google.com/accounts/adwords/ -# @@||www.facebook.com/ads/$elemhide (easylistchina+easylist.txt: 61159) -.www.facebook.com/ads/ -# @@||adwolf.eu^$~third-party (easylistchina+easylist.txt: 61157) -.adwolf.eu -# @@||ziarelive.ro/assets/js/advertisement.js (easylistchina+easylist.txt: 61154) -.ziarelive.ro/assets/js/advertisement\.js -# @@||yapo.cl/js/viewad.js? (easylistchina+easylist.txt: 61152) -.yapo.cl/js/viewad\.js\? -# @@||xe.gr/property/recent_ads?$xmlhttprequest (easylistchina+easylist.txt: 61151) -.xe.gr/property/recent_ads\? -# @@||vinden.se/ads/$~third-party (easylistchina+easylist.txt: 61147) -.vinden.se/ads/ -# @@||videonuz.ensonhaber.com/player/hdflvplayer/xml/ads.xml?$object-subrequest (easylistchina+easylist.txt: 61145) -.videonuz.ensonhaber.com/player/hdflvplayer/xml/ads\.xml\? -# @@||velasridaura.com/modules/*/advertising_custom.$image,~third-party (easylistchina+easylist.txt: 61143) -.velasridaura.com/modules/.*/advertising_custom\. -# @@||vedomosti.ru/assets/vendors/adriver.media-$script (easylistchina+easylist.txt: 61142) -.vedomosti.ru/assets/vendors/adriver\.media- -# @@||varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel.js (easylistchina+easylist.txt: 61141) -.varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel\.js -# @@||uol.com.br/html.ng/*&affiliate=$object-subrequest (easylistchina+easylist.txt: 61140) -.uol.com.br/html\.ng/.*&affiliate= -# @@||tvn.adocean.pl^$object-subrequest (easylistchina+easylist.txt: 61139) -.tvn.adocean.pl -# @@||tv2.dk/mpx/player.php/adtech_$subdocument (easylistchina+easylist.txt: 61138) -.tv2.dk/mpx/player\.php/adtech_ -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.php (easylistchina+easylist.txt: 61137) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.php -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.js (easylistchina+easylist.txt: 61136) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.js -# @@||trrsf.com^*/admanager.js (easylistchina+easylist.txt: 61135) -.trrsf.com/.*/admanager\.js -# @@||trrsf.com.br/playerttv/$xmlhttprequest (easylistchina+easylist.txt: 61133) -.trrsf.com.br/playerttv/ -# @@||tn.com.ar^*/vivo/300/publicidad.html$subdocument (easylistchina+easylist.txt: 61132) -.tn.com.ar/.*/vivo/300/publicidad\.html -# @@||thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend.js (easylistchina+easylist.txt: 61131) -.thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend\.js -# @@||terra.com.br^*/admanager.html$subdocument (easylistchina+easylist.txt: 61130) -.terra.com.br/.*/admanager\.html -# @@||terra.cl^*/admanager.html$subdocument (easylistchina+easylist.txt: 61129) -.terra.cl/.*/admanager\.html -# @@||ta3.com/advert-async-system/$xmlhttprequest (easylistchina+easylist.txt: 61128) -.ta3.com/advert-async-system/ -# @@||submarino.com.br/openx/www/delivery/ (easylistchina+easylist.txt: 61127) -.submarino.com.br/openx/www/delivery/ -# @@||style.seznam.cz/ad/im.js (easylistchina+easylist.txt: 61126) -.style.seznam.cz/ad/im\.js -# @@||start.no/includes/js/adCode.js (easylistchina+easylist.txt: 61123) -.start.no/includes/js/adCode\.js -# @@||start.no/advertpro/servlet/view/text/html/zone?zid=$script (easylistchina+easylist.txt: 61122) -.start.no/advertpro/servlet/view/text/html/zone\?zid= -# @@||soov.ee/js/newad.js (easylistchina+easylist.txt: 61120) -.soov.ee/js/newad\.js -# @@||sms.cz/bannery/$object-subrequest,~third-party (easylistchina+easylist.txt: 61119) -.sms.cz/bannery/ -# @@||smartadserver.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61117) -.smartadserver.com/crossdomain\.xml -# @@||smart.allocine.fr/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61112) -.smart.allocine.fr/crossdomain\.xml -# @@||skai.gr/advert/*.flv$object-subrequest (easylistchina+easylist.txt: 61111) -.skai.gr/advert/.*\.flv -# @@||sigmalive.com/assets/js/jquery.openxtag.js (easylistchina+easylist.txt: 61110) -.sigmalive.com/assets/js/jquery\.openxtag\.js -# @@||segundamano.mx/api/*/ads/$~third-party (easylistchina+easylist.txt: 61109) -.segundamano.mx/api/.*/ads/ -# @@||sanook.com/php/get_ads.php?vast_linear=$xmlhttprequest (easylistchina+easylist.txt: 61106) -.sanook.com/php/get_ads\.php\?vast_linear= -# @@||s-nk.pl/img/ads/icons_pack (easylistchina+easylist.txt: 61104) -.s-nk.pl/img/ads/icons_pack -# @@||run.admost.com/adx/js/admost.js? (easylistchina+easylist.txt: 61103) -.run.admost.com/adx/js/admost\.js\? -# @@||run.admost.com/adx/get.ashx?z=*&accptck=true&nojs=1 (easylistchina+easylist.txt: 61102) -.run.admost.com/adx/get\.ashx\?z=.*&accptck=true&nojs=1 -# @@||rtl.lu/ipljs/adtech_async.js (easylistchina+easylist.txt: 61101) -.rtl.lu/ipljs/adtech_async\.js -# @@||rocking.gr/js/jquery.dfp.min.js (easylistchina+easylist.txt: 61100) -.rocking.gr/js/jquery\.dfp\.min\.js -# @@||ring.bg/adserver/adall.php?*&video_on_page=1 (easylistchina+easylist.txt: 61099) -.ring.bg/adserver/adall\.php\?.*&video_on_page=1 -# @@||rentalsystems.com/advert_price_imbed.asp?$subdocument (easylistchina+easylist.txt: 61098) -.rentalsystems.com/advert_price_imbed\.asp\? -# @@||reklama5.mk^$~third-party (easylistchina+easylist.txt: 61097) -.reklama5.mk -# @@||quebarato.com.br/css/static/ad_search.css (easylistchina+easylist.txt: 61095) -.quebarato.com.br/css/static/ad_search\.css -# @@||quebarato.com.br/css/static/ad_detail.css (easylistchina+easylist.txt: 61094) -.quebarato.com.br/css/static/ad_detail\.css -# @@||ptcliente.pt/App_Themes/Default/Img/ad_$image (easylistchina+easylist.txt: 61093) -.ptcliente.pt/App_Themes/Default/Img/ad_ -# @@||ptchan.net/imagens/banner.php (easylistchina+easylist.txt: 61092) -.ptchan.net/imagens/banner\.php -# @@||psoe.es/Areas/Affiliation/ (easylistchina+easylist.txt: 61091) -.psoe.es/Areas/Affiliation/ -# @@||prohardver.hu/js/common/forms_$script (easylistchina+easylist.txt: 61088) -.prohardver.hu/js/common/forms_ -# @@||polovniautomobili.com/images/ad-$~third-party (easylistchina+easylist.txt: 61087) -.polovniautomobili.com/images/ad- -# @@||player.terra.com^*&adunit=$script (easylistchina+easylist.txt: 61085) -.player.terra.com/.*&adunit= -# @@||peoplegreece.com/assets/js/adtech_res.js (easylistchina+easylist.txt: 61084) -.peoplegreece.com/assets/js/adtech_res\.js -# @@||openx.zomoto.nl/live/www/delivery/spcjs.php?id= (easylistchina+easylist.txt: 61081) -.openx.zomoto.nl/live/www/delivery/spcjs\.php\?id= -# @@||openx.zomoto.nl/live/www/delivery/fl.js (easylistchina+easylist.txt: 61080) -.openx.zomoto.nl/live/www/delivery/fl\.js -# @@||openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null.jpg (easylistchina+easylist.txt: 61079) -.openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null\.jpg -# @@||oas.dn.se/adstream_mjx.ads/dn.se/nyheter/ettan/*@$script (easylistchina+easylist.txt: 61077) -.oas.dn.se/adstream_mjx\.ads/dn\.se/nyheter/ettan/.*@ -# @@||nordjyske.dk/scripts/ads/StoryAds.js (easylistchina+easylist.txt: 61073) -.nordjyske.dk/scripts/ads/StoryAds\.js -# @@||niedziela.nl/adverts/$image,~third-party (easylistchina+easylist.txt: 61072) -.niedziela.nl/adverts/ -# @@||mynet.com/nocache/adocean.js? (easylistchina+easylist.txt: 61070) -.mynet.com/nocache/adocean\.js\? -# @@||mynet.com.tr/nocache/adocean.js? (easylistchina+easylist.txt: 61069) -.mynet.com.tr/nocache/adocean\.js\? -# @@||moviezone.cz/swf/ad-player/$object,object-subrequest (easylistchina+easylist.txt: 61068) -.moviezone.cz/swf/ad-player/ -# @@||moviezone.cz//moviezone/reklama/$object-subrequest (easylistchina+easylist.txt: 61067) -# @@||mmgastro.pl/js/reklama/$~third-party (easylistchina+easylist.txt: 61066) -.mmgastro.pl/js/reklama/ -# @@||mmgastro.pl/img/reklama/$image,~third-party (easylistchina+easylist.txt: 61065) -.mmgastro.pl/img/reklama/ -# @@||mjhobbymassan.se/r/annonser/$image,~third-party (easylistchina+easylist.txt: 61063) -.mjhobbymassan.se/r/annonser/ -# @@||minuripsmed.ee/templates/*/images/advert.gif (easylistchina+easylist.txt: 61062) -.minuripsmed.ee/templates/.*/images/advert\.gif -# @@||megatv.com^*/adverts.asp?$object-subrequest (easylistchina+easylist.txt: 61061) -.megatv.com/.*/adverts\.asp\? -# @@||mail.bg/mail/index/getads/$xmlhttprequest (easylistchina+easylist.txt: 61060) -.mail.bg/mail/index/getads/ -# @@||lrytas.lt/ads/video_feed.js (easylistchina+easylist.txt: 61059) -.lrytas.lt/ads/video_feed\.js -# @@||laredoute.*/scripts/combinejs.ashx?*/affiliation/$script (easylistchina+easylist.txt: 61056) -.laredoute.*./(.*/)?scripts/combinejs\.ashx\?.*/affiliation/ -# @@||krotoszyn.pl/uploads/pub/ads_files/$image,~third-party (easylistchina+easylist.txt: 61055) -.krotoszyn.pl/uploads/pub/ads_files/ -# @@||kopavogur.is/umsoknarvefur/advertisement.aspx$subdocument (easylistchina+easylist.txt: 61054) -.kopavogur.is/umsoknarvefur/advertisement\.aspx -# @@||kompas.com^*/supersized.*.min_ads.js? (easylistchina+easylist.txt: 61053) -.kompas.com/.*/supersized\..*\.min_ads\.js\? -# @@||kanalfrederikshavn.dk^*/jquery.openx.js? (easylistchina+easylist.txt: 61052) -.kanalfrederikshavn.dk/.*/jquery\.openx\.js\? -# @@||joemonster.org^*_reklama_$image (easylistchina+easylist.txt: 61051) -.joemonster.org/.*_reklama_ -# @@||jesper.nu/javascript/libs/videoads.js (easylistchina+easylist.txt: 61050) -.jesper.nu/javascript/libs/videoads\.js -# @@||izigo.pt^*/adsearch? (easylistchina+easylist.txt: 61049) -.izigo.pt/.*/adsearch\? -# @@||izigo.pt/AdPictures/ (easylistchina+easylist.txt: 61048) -.izigo.pt/AdPictures/ -# @@||islafenice.net^*/adsense.js (easylistchina+easylist.txt: 61047) -.islafenice.net/.*/adsense\.js -# @@||isanook.com/vi/0/js/ads-$script (easylistchina+easylist.txt: 61046) -.isanook.com/vi/0/js/ads- -# @@||hry.cz/ad/adcode.js (easylistchina+easylist.txt: 61040) -.hry.cz/ad/adcode\.js -# @@||honfoglalo.hu/aagetad.php?$subdocument (easylistchina+easylist.txt: 61039) -.honfoglalo.hu/aagetad\.php\? -# @@||homad.eu^$~third-party (easylistchina+easylist.txt: 61038) -.homad.eu -# @@||hizlial.com/banners/$~third-party (easylistchina+easylist.txt: 61037) -.hizlial.com/banners/ -# @@||happymtb.org/annonser/$~third-party (easylistchina+easylist.txt: 61036) -.happymtb.org/annonser/ -# @@||haberler.com/video-haber/adsense_news_politics.swf?$object (easylistchina+easylist.txt: 61035) -.haberler.com/video-haber/adsense_news_politics\.swf\? -# @@||guloggratis.dk/modules/$script,~third-party,xmlhttprequest (easylistchina+easylist.txt: 61034) -.guloggratis.dk/modules/ -# @@||gov.in/pdf/ADVERTISEMENT/$~third-party (easylistchina+easylist.txt: 61033) -.gov.in/pdf/ADVERTISEMENT/ -# @@||freeride.se/img/admarket/$~third-party (easylistchina+easylist.txt: 61031) -.freeride.se/img/admarket/ -# @@||fotosioon.com/wp-content/*/images/advert.gif (easylistchina+easylist.txt: 61030) -.fotosioon.com/wp-content/.*/images/advert\.gif -# @@||fotolog.com/styles/flags/ad.gif (easylistchina+easylist.txt: 61029) -.fotolog.com/styles/flags/ad\.gif -# @@||fotojorgen.no/images/*/webadverts/ (easylistchina+easylist.txt: 61028) -.fotojorgen.no/images/.*/webadverts/ -# @@||forads.pl^$~third-party (easylistchina+easylist.txt: 61027) -.forads.pl -# @@||flashgames247.com/advertising/preroll/google-fg247-preloader.swf$object (easylistchina+easylist.txt: 61026) -.flashgames247.com/advertising/preroll/google-fg247-preloader\.swf -# @@||filmon.com/ad/affiliateimages/banner-250x350.png (easylistchina+easylist.txt: 61025) -.filmon.com/ad/affiliateimages/banner-250x350\.png -# @@||felcia.co.uk/js/ads_common.js (easylistchina+easylist.txt: 61024) -.felcia.co.uk/js/ads_common\.js -# @@||felcia.co.uk/css/advert-view.css (easylistchina+easylist.txt: 61023) -.felcia.co.uk/css/advert-view\.css -# @@||felcia.co.uk/css/ads-common.css (easylistchina+easylist.txt: 61022) -.felcia.co.uk/css/ads-common\.css -# @@||fajerwerkilider.pl/environment/cache/images/300_250_productGfx_$image (easylistchina+easylist.txt: 61020) -.fajerwerkilider.pl/environment/cache/images/300_250_productGfx_ -# @@||ettevotja.ee/templates/*/images/advert.gif (easylistchina+easylist.txt: 61018) -.ettevotja.ee/templates/.*/images/advert\.gif -# @@||epaper.andhrajyothy.com/js/newads.js (easylistchina+easylist.txt: 61017) -.epaper.andhrajyothy.com/js/newads\.js -# @@||emediate.se/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61014) -.emediate.se/crossdomain\.xml -# @@||emediate.eu/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61012) -.emediate.eu/crossdomain\.xml -# @@||emag.hu/site_ajax_ads?id=$xmlhttprequest (easylistchina+easylist.txt: 61010) -.emag.hu/site_ajax_ads\?id= -# @@||ehowenespanol.com/frames/ad.html?$subdocument (easylistchina+easylist.txt: 61009) -.ehowenespanol.com/frames/ad\.html\? -# @@||ehow.com.br/frames/ad.html?$subdocument (easylistchina+easylist.txt: 61008) -.ehow.com.br/frames/ad\.html\? -# @@||doladowania.pl/pp/$script (easylistchina+easylist.txt: 61004) -.doladowania.pl/pp/ -# @@||di.se^*/advertisement.js (easylistchina+easylist.txt: 61003) -.di.se/.*/advertisement\.js -# @@||di.se^$generichide (easylistchina+easylist.txt: 61002) -.di.se -# @@||custojusto.pt/user/myads/ (easylistchina+easylist.txt: 61001) -.custojusto.pt/user/myads/ -# @@||catmusica.cat/paudio/getads.jsp?$xmlhttprequest (easylistchina+easylist.txt: 60999) -.catmusica.cat/paudio/getads\.jsp\? -# @@||carfinder.gr/api/ads/$xmlhttprequest (easylistchina+easylist.txt: 60998) -.carfinder.gr/api/ads/ -# @@||bomnegocio.com/css/ad_insert.css (easylistchina+easylist.txt: 60997) -.bomnegocio.com/css/ad_insert\.css -# @@||bolha.com/css/ad.css? (easylistchina+easylist.txt: 60996) -.bolha.com/css/ad\.css\? -# @@||bnrs.ilm.ee/www/delivery/fl.js (easylistchina+easylist.txt: 60995) -.bnrs.ilm.ee/www/delivery/fl\.js -# @@||bn.uol.com.br/html.ng/$object-subrequest (easylistchina+easylist.txt: 60994) -.bn.uol.com.br/html\.ng/ -# @@||bmwoglasnik.si/images/ads/ (easylistchina+easylist.txt: 60993) -.bmwoglasnik.si/images/ads/ -# @@||blocket.se^*/newad.js (easylistchina+easylist.txt: 60992) -.blocket.se/.*/newad\.js -# @@||biancolavoro.euspert.com/js/ad.js (easylistchina+easylist.txt: 60991) -.biancolavoro.euspert.com/js/ad\.js -# @@||banki.ru/bitrix/*/advertising.block/$stylesheet (easylistchina+easylist.txt: 60988) -.banki.ru/bitrix/.*/advertising\.block/ -# @@||bancodevenezuela.com/imagenes/publicidad/$~third-party (easylistchina+easylist.txt: 60987) -.bancodevenezuela.com/imagenes/publicidad/ -# @@||bancainternet.com.ar/eBanking/images/*-PUBLICIDAD. (easylistchina+easylist.txt: 60986) -.bancainternet.com.ar/eBanking/images/.*-PUBLICIDAD\. -# @@||autotube.cz/ui/player/ad.php?id=$object-subrequest (easylistchina+easylist.txt: 60985) -.autotube.cz/ui/player/ad\.php\?id= -# @@||autoscout24.*/all.js.aspx?m=css&*=/stylesheets/adbanner.css (easylistchina+easylist.txt: 60984) -.autoscout24.*./(.*/)?all\.js\.aspx\?m=css&.*=/stylesheets/adbanner\.css -# @@||atresplayer.com/static/imgs/no_ads.jpg$object-subrequest (easylistchina+easylist.txt: 60983) -.atresplayer.com/static/imgs/no_ads\.jpg -# @@||applevideo.edgesuite.net/admedia/$object-subrequest (easylistchina+easylist.txt: 60982) -.applevideo.edgesuite.net/admedia/ -# @@||americateve.com/mediaplayer_ads/new_config_openx.xml$xmlhttprequest (easylistchina+easylist.txt: 60977) -.americateve.com/mediaplayer_ads/new_config_openx\.xml -# @@||amarillas.cl/js/advertise/$script (easylistchina+easylist.txt: 60974) -.amarillas.cl/js/advertise/ -# @@||amarillas.cl/advertise.do?$xmlhttprequest (easylistchina+easylist.txt: 60973) -.amarillas.cl/advertise\.do\? -# @@||alio.lt/public/advertisement/texttoimage.html?$image (easylistchina+easylist.txt: 60971) -.alio.lt/public/advertisement/texttoimage\.html\? -# @@||advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page.gif (easylistchina+easylist.txt: 60966) -.advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page\.gif -# @@||advert.ee^$~third-party (easylistchina+easylist.txt: 60962) -.advert.ee -# @@||adv.pt^$~third-party (easylistchina+easylist.txt: 60961) -.adv.pt -# @@||adsystem.pl^$~third-party (easylistchina+easylist.txt: 60955) -.adsystem.pl -# @@||ads.us.e-planning.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60952) -.ads.us.e-planning.net/crossdomain\.xml -# @@||ads.telecinco.es/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60950) -.ads.telecinco.es/crossdomain\.xml -# @@||ads.postimees.ee/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60949) -.ads.postimees.ee/crossdomain\.xml -# @@||ads.peteava.ro/www/serve_ads/serve2.php?campaign=$object-subrequest (easylistchina+easylist.txt: 60948) -.ads.peteava.ro/www/serve_ads/serve2\.php\?campaign= -# @@||ads.peteava.ro/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60947) -.ads.peteava.ro/crossdomain\.xml -# @@||ads.nicovideo.jp/assets/js/ads-*.js (easylistchina+easylist.txt: 60946) -.ads.nicovideo.jp/assets/js/ads-.*\.js -# @@||ads.hosting.vcmedia.vn/jinfo.ashx?$object-subrequest (easylistchina+easylist.txt: 60945) -.ads.hosting.vcmedia.vn/jinfo\.ashx\? -# @@||ads.hosting.vcmedia.vn/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60944) -.ads.hosting.vcmedia.vn/crossdomain\.xml -# @@||ads.cvut.cz^$~third-party (easylistchina+easylist.txt: 60942) -.ads.cvut.cz -# @@||adpriv.nikkei.com/bservers/AAMALL/*/acc_random=$script (easylistchina+easylist.txt: 60941) -.adpriv.nikkei.com/bservers/AAMALL/.*/acc_random= -# @@||ad3.l3go.com.br^$~third-party (easylistchina+easylist.txt: 60933) -.ad3.l3go.com.br -# @@||ad.nl/ad/css/$~third-party (easylistchina+easylist.txt: 60932) -.ad.nl/ad/css/ -# @@||ad.e-kolay.net/mnetorfad.js (easylistchina+easylist.txt: 60931) -.ad.e-kolay.net/mnetorfad\.js -# @@||ad.e-kolay.net/Medyanet.js (easylistchina+easylist.txt: 60930) -.ad.e-kolay.net/Medyanet\.js -# @@||ad.e-kolay.net/jquery-*-Medyanet.min.js (easylistchina+easylist.txt: 60929) -.ad.e-kolay.net/jquery-.*-Medyanet\.min\.js -# @@||ad.e-kolay.net/ad.js (easylistchina+easylist.txt: 60928) -.ad.e-kolay.net/ad\.js -# @@||zoomin.tv/adhandler/amalia.adm?$object-subrequest (easylistchina+easylist.txt: 60923) -.zoomin.tv/adhandler/amalia\.adm\? -# @@||zman.com/adv/ova/overlay.xml (easylistchina+easylist.txt: 60922) -.zman.com/adv/ova/overlay\.xml -# @@||zattoo.com/ads/cs?$xmlhttprequest (easylistchina+easylist.txt: 60919) -.zattoo.com/ads/cs\? -# @@||ytconv.net/*google_ads.js (easylistchina+easylist.txt: 60918) -.ytconv.net/.*google_ads\.js -# @@||youwatch.org^$elemhide (easylistchina+easylist.txt: 60916) -.youwatch.org -# @@||youwatch.org/adframe.js (easylistchina+easylist.txt: 60915) -.youwatch.org/adframe\.js -# @@||yellowbridge.com^*/advertisement.js (easylistchina+easylist.txt: 60913) -.yellowbridge.com/.*/advertisement\.js -# @@||yellowbridge.com^$elemhide (easylistchina+easylist.txt: 60912) -.yellowbridge.com -# @@||yellowbridge.com/ad/show_ads.js (easylistchina+easylist.txt: 60911) -.yellowbridge.com/ad/show_ads\.js -# @@||yasni.*/adframe.js (easylistchina+easylist.txt: 60910) -.yasni.*./(.*/)?adframe\.js -# @@||xup.in^$elemhide (easylistchina+easylist.txt: 60909) -.xup.in -# @@||xooimg.com/magesy/js-cdn/adblock.js (easylistchina+easylist.txt: 60908) -.xooimg.com/magesy/js-cdn/adblock\.js -# @@||xlocker.net^$elemhide (easylistchina+easylist.txt: 60907) -.xlocker.net -# @@||www.vg.no^$elemhide (easylistchina+easylist.txt: 60906) -.www.vg.no -# @@||wwe2day.tv^$elemhide (easylistchina+easylist.txt: 60905) -.wwe2day.tv -# @@||writing.com^$script (easylistchina+easylist.txt: 60904) -.writing.com -# @@||wrestlingtalk.org^$elemhide (easylistchina+easylist.txt: 60903) -.wrestlingtalk.org -# @@||wowhq.eu^$elemhide (easylistchina+easylist.txt: 60902) -.wowhq.eu -# @@||wowebook.org^$elemhide (easylistchina+easylist.txt: 60901) -.wowebook.org -# @@||worldofapk.tk^$elemhide (easylistchina+easylist.txt: 60900) -.worldofapk.tk -# @@||world-of-hentai.to/advertisement.js (easylistchina+easylist.txt: 60899) -.world-of-hentai.to/advertisement\.js -# @@||windows7themes.net/wp-content/advert.js (easylistchina+easylist.txt: 60897) -.windows7themes.net/wp-content/advert\.js -# @@||win-free-bitcoins.eu^$elemhide (easylistchina+easylist.txt: 60896) -.win-free-bitcoins.eu -# @@||wholecloud.net/banner.php?$script (easylistchina+easylist.txt: 60895) -.wholecloud.net/banner\.php\? -# @@||whatsapprb.blogspot.com^$elemhide (easylistchina+easylist.txt: 60894) -.whatsapprb.blogspot.com -# @@||weshare.me^$elemhide (easylistchina+easylist.txt: 60893) -.weshare.me -# @@||weshare.me/fuckadblock.js (easylistchina+easylist.txt: 60892) -.weshare.me/fuckadblock\.js -# @@||welovebtc.com/show_ads.js (easylistchina+easylist.txt: 60891) -.welovebtc.com/show_ads\.js -# @@||webtv.rs/media/blic/advertisement.jpg (easylistchina+easylist.txt: 60890) -.webtv.rs/media/blic/advertisement\.jpg -# @@||webtoolhub.com^$elemhide (easylistchina+easylist.txt: 60889) -.webtoolhub.com -# @@||webfirstrow.eu^*/advertisement.js (easylistchina+easylist.txt: 60888) -.webfirstrow.eu/.*/advertisement\.js -# @@||webfirstrow.eu/advertisement.js (easylistchina+easylist.txt: 60887) -.webfirstrow.eu/advertisement\.js -# @@||weather.com^*/advertisement.js (easylistchina+easylist.txt: 60886) -.weather.com/.*/advertisement\.js -# @@||watchcartoononline.com/advertisement.js (easylistchina+easylist.txt: 60885) -.watchcartoononline.com/advertisement\.js -# @@||wanamlite.com/images/ad/$image (easylistchina+easylist.txt: 60884) -.wanamlite.com/images/ad/ -# @@||wallpapersimages.co.uk^$elemhide (easylistchina+easylist.txt: 60883) -.wallpapersimages.co.uk -# @@||wallpapermania.eu/assets/js/advertisement.js (easylistchina+easylist.txt: 60882) -.wallpapermania.eu/assets/js/advertisement\.js -# @@||vodu.ch^$script (easylistchina+easylist.txt: 60881) -.vodu.ch -# @@||vivotvhd.com^$elemhide (easylistchina+easylist.txt: 60880) -.vivotvhd.com -# @@||virtualpets.com^*/ads.js (easylistchina+easylist.txt: 60879) -.virtualpets.com/.*/ads\.js -# @@||vipleague.se/js/ads.js (easylistchina+easylist.txt: 60878) -.vipleague.se/js/ads\.js -# @@||vipbox.tv/js/ads.js (easylistchina+easylist.txt: 60877) -.vipbox.tv/js/ads\.js -# @@||viki.com/*.js$script (easylistchina+easylist.txt: 60876) -.viki.com/.*\.js -# @@||vietvbb.vn/up/clientscript/google_ads.js (easylistchina+easylist.txt: 60875) -.vietvbb.vn/up/clientscript/google_ads\.js -# @@||vidup.me/js/$script (easylistchina+easylist.txt: 60874) -.vidup.me/js/ -# @@||videoweed.es/banner.php?$script (easylistchina+easylist.txt: 60873) -.videoweed.es/banner\.php\? -# @@||videomega.tv^*/ad.php?id=$subdocument (easylistchina+easylist.txt: 60871) -.videomega.tv/.*/ad\.php\?id= -# @@||videomega.tv^$stylesheet (easylistchina+easylist.txt: 60870) -.videomega.tv -# @@||videomega.tv^$script (easylistchina+easylist.txt: 60869) -.videomega.tv -# @@||videomega.tv^$elemhide (easylistchina+easylist.txt: 60868) -.videomega.tv -# @@||videomega.tv/pub/interstitial.css (easylistchina+easylist.txt: 60867) -.videomega.tv/pub/interstitial\.css -# @@||videocelebrities.eu^*/adframe/ (easylistchina+easylist.txt: 60866) -.videocelebrities.eu/.*/adframe/ -# @@||vgunetwork.com/public/js/*/advertisement.js (easylistchina+easylist.txt: 60864) -.vgunetwork.com/public/js/.*/advertisement\.js -# @@||verticalscope.com/js/advert.js (easylistchina+easylist.txt: 60863) -.verticalscope.com/js/advert\.js -# @@||vercanalestv.com^$elemhide (easylistchina+easylist.txt: 60862) -.vercanalestv.com -# @@||ver-flv.com^$elemhide (easylistchina+easylist.txt: 60861) -.ver-flv.com -# @@||vencko.net^$elemhide (easylistchina+easylist.txt: 60859) -.vencko.net -# @@||velocity.com^$elemhide (easylistchina+easylist.txt: 60858) -.velocity.com -# @@||veedi.com^*/ADS.js (easylistchina+easylist.txt: 60857) -.veedi.com/.*/ADS\.js -# @@||usaupload.net/ads.js (easylistchina+easylist.txt: 60852) -.usaupload.net/ads\.js -# @@||urlgalleries.net^*/adhandler/$subdocument (easylistchina+easylist.txt: 60851) -.urlgalleries.net/.*/adhandler/ -# @@||url4u.org^$elemhide (easylistchina+easylist.txt: 60850) -.url4u.org -# @@||urduustaad.com^$elemhide (easylistchina+easylist.txt: 60848) -.urduustaad.com -# @@||urdupoint.com/js/advertisement.js (easylistchina+easylist.txt: 60846) -.urdupoint.com/js/advertisement\.js -# @@||urbeez.com/adver$script (easylistchina+easylist.txt: 60845) -.urbeez.com/adver -# @@||uptobox.com^$elemhide (easylistchina+easylist.txt: 60844) -.uptobox.com -# @@||upshare.org/advertisement.js (easylistchina+easylist.txt: 60843) -.upshare.org/advertisement\.js -# @@||uploadlw.com^$elemhide (easylistchina+easylist.txt: 60842) -.uploadlw.com -# @@||uploadlw.com/getbanner.cfm?$script (easylistchina+easylist.txt: 60841) -.uploadlw.com/getbanner\.cfm\? -# @@||uploadex.com^$elemhide (easylistchina+easylist.txt: 60840) -.uploadex.com -# @@||uploadex.com/fuckadblock.js (easylistchina+easylist.txt: 60839) -.uploadex.com/fuckadblock\.js -# @@||up-flow.org/advertisement.js (easylistchina+easylist.txt: 60838) -.up-flow.org/advertisement\.js -# @@||unlockpwd.com^$elemhide (easylistchina+easylist.txt: 60837) -.unlockpwd.com -# @@||ulto.ga^$elemhide (easylistchina+easylist.txt: 60836) -.ulto.ga -# @@||uktv.co.uk/static/js/ads.js (easylistchina+easylist.txt: 60835) -.uktv.co.uk/static/js/ads\.js -# @@||ucoz.com/ads/banner.jpg?$image (easylistchina+easylist.txt: 60834) -.ucoz.com/ads/banner\.jpg\? -# @@||twitch.tv/ads/ads.js (easylistchina+easylist.txt: 60833) -.twitch.tv/ads/ads\.js -# @@||tvrex.altervista.org^$elemhide (easylistchina+easylist.txt: 60832) -.tvrex.altervista.org -# @@||tvpelis.net^*/advertisement2.js (easylistchina+easylist.txt: 60831) -.tvpelis.net/.*/advertisement2\.js -# @@||tvenvivocrackmastersamm.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60829) -.tvenvivocrackmastersamm.blogspot.com.ar -# @@||tvdez.com/ads/ads_$subdocument (easylistchina+easylist.txt: 60828) -.tvdez.com/ads/ads_ -# @@||tv3.co.nz/Portals/*/advertisement.js (easylistchina+easylist.txt: 60827) -.tv3.co.nz/Portals/.*/advertisement\.js -# @@||tv-porinternet.com.mx^$elemhide (easylistchina+easylist.txt: 60826) -.tv-porinternet.com.mx -# @@||tv-msn.com^$elemhide (easylistchina+easylist.txt: 60825) -.tv-msn.com -# @@||tutvgratis.tv^*/fuckadblock.js (easylistchina+easylist.txt: 60824) -.tutvgratis.tv/.*/fuckadblock\.js -# @@||tusmangas.net^$elemhide (easylistchina+easylist.txt: 60823) -.tusmangas.net -# @@||turktorrent.cc^$elemhide (easylistchina+easylist.txt: 60822) -.turktorrent.cc -# @@||turkdown.com^$script (easylistchina+easylist.txt: 60821) -.turkdown.com -# @@||turkdown.com^$elemhide (easylistchina+easylist.txt: 60820) -.turkdown.com -# @@||trizone91.com^$elemhide (easylistchina+easylist.txt: 60816) -.trizone91.com -# @@||trackitonline.ru^$elemhide (easylistchina+easylist.txt: 60812) -.trackitonline.ru -# @@||tpmrpg.net/adframe.js (easylistchina+easylist.txt: 60811) -.tpmrpg.net/adframe\.js -# @@||tlc.com^$elemhide (easylistchina+easylist.txt: 60808) -.tlc.com -# @@||tklist.net^$elemhide (easylistchina+easylist.txt: 60807) -.tklist.net -# @@||tklist.net/tklist/*ad$image (easylistchina+easylist.txt: 60806) -.tklist.net/tklist/.*ad -# @@||theweatherspace.com^*/advertisement.js (easylistchina+easylist.txt: 60803) -.theweatherspace.com/.*/advertisement\.js -# @@||thewatchseries.biz^$elemhide (easylistchina+easylist.txt: 60802) -.thewatchseries.biz -# @@||thevideos.tv/js/ads.js (easylistchina+easylist.txt: 60801) -.thevideos.tv/js/ads\.js -# @@||thesominaltv.com/advertisement.js (easylistchina+easylist.txt: 60800) -.thesominaltv.com/advertisement\.js -# @@||thesimsresource.com/downloads/download/itemId/$elemhide (easylistchina+easylist.txt: 60798) -.thesimsresource.com/downloads/download/itemId/ -# @@||thesilverforum.com/public/js/jsLoader.js?adType=$script (easylistchina+easylist.txt: 60797) -.thesilverforum.com/public/js/jsLoader\.js\?adType= -# @@||thememypc.com^$elemhide (easylistchina+easylist.txt: 60796) -.thememypc.com -# @@||thememypc.com/wp-content/*/ads/$image (easylistchina+easylist.txt: 60795) -.thememypc.com/wp-content/.*/ads/ -# @@||thelordofstreaming.it^$elemhide (easylistchina+easylist.txt: 60794) -.thelordofstreaming.it -# @@||thelordofstreaming.it/wp-content/uploads/*/ad_$image (easylistchina+easylist.txt: 60793) -.thelordofstreaming.it/wp-content/uploads/.*/ad_ -# @@||television-envivo.com^$elemhide (easylistchina+easylist.txt: 60791) -.television-envivo.com -# @@||televall.com.mx/fuckadblock.js (easylistchina+easylist.txt: 60790) -.televall.com.mx/fuckadblock\.js -# @@||telemetryverification.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60789) -.telemetryverification.net/crossdomain\.xml -# @@||teknogods.com/advert.js (easylistchina+easylist.txt: 60788) -.teknogods.com/advert\.js -# @@||teenidols4you.com^$elemhide (easylistchina+easylist.txt: 60786) -.teenidols4you.com -# @@||techweekeurope.co.uk^*/advertising.js (easylistchina+easylist.txt: 60785) -.techweekeurope.co.uk/.*/advertising\.js -# @@||techingspot.blogspot.in^$elemhide (easylistchina+easylist.txt: 60784) -.techingspot.blogspot.in -# @@||team-vitality.fr/assets/images/advert.png (easylistchina+easylist.txt: 60783) -.team-vitality.fr/assets/images/advert\.png -# @@||tamercome.blogspot.co.uk^$elemhide (easylistchina+easylist.txt: 60782) -.tamercome.blogspot.co.uk -# @@||talksport.com/sites/default/files/ben/advert.js (easylistchina+easylist.txt: 60781) -.talksport.com/sites/default/files/ben/advert\.js -# @@||superplatyna.com^$elemhide (easylistchina+easylist.txt: 60780) -.superplatyna.com -# @@||supergames.com^*/ads.js (easylistchina+easylist.txt: 60779) -.supergames.com/.*/ads\.js -# @@||superfilm.pl/advertisement.js (easylistchina+easylist.txt: 60777) -.superfilm.pl/advertisement\.js -# @@||superanimes.com^$elemhide (easylistchina+easylist.txt: 60776) -.superanimes.com -# @@||streamlive.to^*/ad/$image (easylistchina+easylist.txt: 60775) -.streamlive.to/.*/ad/ -# @@||streamlive.to/js/ads.js (easylistchina+easylist.txt: 60774) -.streamlive.to/js/ads\.js -# @@||streaming-hub.com^$elemhide (easylistchina+easylist.txt: 60773) -.streaming-hub.com -# @@||streamin.to/adblock/advert.js (easylistchina+easylist.txt: 60772) -.streamin.to/adblock/advert\.js -# @@||streamcloud.eu^$xmlhttprequest (easylistchina+easylist.txt: 60771) -.streamcloud.eu -# @@||stream4free.eu^$elemhide (easylistchina+easylist.txt: 60770) -.stream4free.eu -# @@||stream2watch.me^$elemhide (easylistchina+easylist.txt: 60769) -.stream2watch.me -# @@||stickgames.com^*/ads.js (easylistchina+easylist.txt: 60768) -.stickgames.com/.*/ads\.js -# @@||startribune.com^$generichide (easylistchina+easylist.txt: 60765) -.startribune.com -# @@||stackexchange.com/affiliate/ (easylistchina+easylist.txt: 60764) -.stackexchange.com/affiliate/ -# @@||srnet.eu^$script (easylistchina+easylist.txt: 60763) -.srnet.eu -# @@||springstreetads.com/scripts/advertising.js (easylistchina+easylist.txt: 60762) -.springstreetads.com/scripts/advertising\.js -# @@||speedpremium.info^$script (easylistchina+easylist.txt: 60760) -.speedpremium.info -# @@||spaste.com^$script (easylistchina+easylist.txt: 60759) -.spaste.com -# @@||sparkylinux.org/images/ad/$image (easylistchina+easylist.txt: 60758) -.sparkylinux.org/images/ad/ -# @@||sounddrain.net^*/advertisement.js (easylistchina+easylist.txt: 60757) -.sounddrain.net/.*/advertisement\.js -# @@||sominaltvfilms.com^$elemhide (easylistchina+easylist.txt: 60755) -.sominaltvfilms.com -# @@||sominaltvfilms.com/wp-content/*/adbanner/$image (easylistchina+easylist.txt: 60754) -.sominaltvfilms.com/wp-content/.*/adbanner/ -# @@||software4all-now.blogspot.co.uk^$elemhide (easylistchina+easylist.txt: 60753) -.software4all-now.blogspot.co.uk -# @@||sockshare.com/js/$script (easylistchina+easylist.txt: 60752) -.sockshare.com/js/ -# @@||slader.com^$elemhide (easylistchina+easylist.txt: 60746) -.slader.com -# @@||skidrowcrack.com^$elemhide (easylistchina+easylist.txt: 60745) -.skidrowcrack.com -# @@||skidrowcrack.com/advertisement.js (easylistchina+easylist.txt: 60744) -.skidrowcrack.com/advertisement\.js -# @@||sizedrive.com^$elemhide (easylistchina+easylist.txt: 60743) -.sizedrive.com -# @@||sizedrive.com/js/fuckadblock.js (easylistchina+easylist.txt: 60742) -.sizedrive.com/js/fuckadblock\.js -# @@||sitepoint.com^*/ad-server.js (easylistchina+easylist.txt: 60740) -.sitepoint.com/.*/ad-server\.js -# @@||siamfishing.com^*/advert.js (easylistchina+easylist.txt: 60739) -.siamfishing.com/.*/advert\.js -# @@||showsport-tv.com^$elemhide (easylistchina+easylist.txt: 60738) -.showsport-tv.com -# @@||showsport-tv.com/adv*.js (easylistchina+easylist.txt: 60737) -.showsport-tv.com/adv.*\.js -# @@||shimory.com/js/show_ads.js (easylistchina+easylist.txt: 60736) -.shimory.com/js/show_ads\.js -# @@||sheepskinproxy.com/js/advertisement.js (easylistchina+easylist.txt: 60735) -.sheepskinproxy.com/js/advertisement\.js -# @@||seriesbang.net^$elemhide (easylistchina+easylist.txt: 60733) -.seriesbang.net -# @@||series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/$script (easylistchina+easylist.txt: 60732) -.series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/ -# @@||senmanga.com/advertisement.js (easylistchina+easylist.txt: 60731) -.senmanga.com/advertisement\.js -# @@||seekingalpha.com^$script (easylistchina+easylist.txt: 60730) -.seekingalpha.com -# @@||secureupload.eu^$elemhide (easylistchina+easylist.txt: 60728) -.secureupload.eu -# @@||securenetsystems.net^*/ads.js (easylistchina+easylist.txt: 60727) -.securenetsystems.net/.*/ads\.js -# @@||scriptnulled.eu^$elemhide (easylistchina+easylist.txt: 60725) -.scriptnulled.eu -# @@||scoutingbook.com/js/adsense.js (easylistchina+easylist.txt: 60724) -.scoutingbook.com/js/adsense\.js -# @@||sciencechannel.com^$elemhide (easylistchina+easylist.txt: 60723) -.sciencechannel.com -# @@||scan-manga.com/ads/banner.jpg$image (easylistchina+easylist.txt: 60722) -.scan-manga.com/ads/banner\.jpg -# @@||scan-manga.com/ads.html (easylistchina+easylist.txt: 60721) -.scan-manga.com/ads\.html -# @@||sawlive.tv/adscript.js (easylistchina+easylist.txt: 60719) -.sawlive.tv/adscript\.js -# @@||savevideo.me/images/banner_ads.gif (easylistchina+easylist.txt: 60718) -.savevideo.me/images/banner_ads\.gif -# @@||sankakustatic.com^$script (easylistchina+easylist.txt: 60714) -.sankakustatic.com -# @@||sankakucomplex.com^$script (easylistchina+easylist.txt: 60713) -.sankakucomplex.com -# @@||saikoanimes.net^*/advertisement.js (easylistchina+easylist.txt: 60712) -.saikoanimes.net/.*/advertisement\.js -# @@||saavn.com/ads/search_config_ad.php?$subdocument (easylistchina+easylist.txt: 60710) -.saavn.com/ads/search_config_ad\.php\? -# @@||runners.es^*/advertisement.js (easylistchina+easylist.txt: 60709) -.runners.es/.*/advertisement\.js -# @@||rtube.de^$elemhide (easylistchina+easylist.txt: 60707) -.rtube.de -# @@||rojadirecta.me^$elemhide (easylistchina+easylist.txt: 60704) -.rojadirecta.me -# @@||rincondelvago.com^*_adsense.js (easylistchina+easylist.txt: 60703) -.rincondelvago.com/.*_adsense\.js -# @@||revclouds.com^$generichide (easylistchina+easylist.txt: 60701) -.revclouds.com -# @@||remo-xp.com^$elemhide (easylistchina+easylist.txt: 60697) -.remo-xp.com -# @@||redtube.com*/adframe.js (easylistchina+easylist.txt: 60694) -.redtube.com*./(.*/)?adframe\.js -# @@||realidadscans.org^$elemhide (easylistchina+easylist.txt: 60693) -.realidadscans.org -# @@||ratebeer.com/javascript/advertisement.js (easylistchina+easylist.txt: 60691) -.ratebeer.com/javascript/advertisement\.js -# @@||rapidmoviez.com/files/php/mgid-ad$subdocument (easylistchina+easylist.txt: 60690) -.rapidmoviez.com/files/php/mgid-ad -# @@||rapidmoviez.com/ad$image,subdocument (easylistchina+easylist.txt: 60689) -.rapidmoviez.com/ad -# @@||rapid8.com^$script (easylistchina+easylist.txt: 60688) -.rapid8.com -# @@||radioio.com^*/adframe.js (easylistchina+easylist.txt: 60687) -.radioio.com/.*/adframe\.js -# @@||radioaficion.com^$elemhide (easylistchina+easylist.txt: 60686) -.radioaficion.com -# @@||radioaficion.com/HamNews/*/ad$image (easylistchina+easylist.txt: 60685) -.radioaficion.com/HamNews/.*/ad -# @@||radar-toulouse.fr/advertisement.js (easylistchina+easylist.txt: 60684) -.radar-toulouse.fr/advertisement\.js -# @@||racedepartment.com^*/advertisement.js (easylistchina+easylist.txt: 60682) -.racedepartment.com/.*/advertisement\.js -# @@||qrrro.com^*/adhandler/ (easylistchina+easylist.txt: 60681) -.qrrro.com/.*/adhandler/ -# @@||pxstream.tv^$elemhide (easylistchina+easylist.txt: 60679) -.pxstream.tv -# @@||puromarketing.com^$elemhide (easylistchina+easylist.txt: 60678) -.puromarketing.com -# @@||puromarketing.com/js/advertisement.js (easylistchina+easylist.txt: 60677) -.puromarketing.com/js/advertisement\.js -# @@||pubdirecte.com^*/advertisement.js (easylistchina+easylist.txt: 60676) -.pubdirecte.com/.*/advertisement\.js -# @@||psarips.com^$script (easylistchina+easylist.txt: 60674) -.psarips.com -# @@||protect-url.net^$script,~third-party (easylistchina+easylist.txt: 60673) -.protect-url.net -# @@||primewire.ag/js/advertisement.js (easylistchina+easylist.txt: 60670) -.primewire.ag/js/advertisement\.js -# @@||primeshare.tv^*/advertisement.js (easylistchina+easylist.txt: 60669) -.primeshare.tv/.*/advertisement\.js -# @@||primeshare.tv^*/adframe.js (easylistchina+easylist.txt: 60668) -.primeshare.tv/.*/adframe\.js -# @@||premiumleecher.com^$elemhide (easylistchina+easylist.txt: 60667) -.premiumleecher.com -# @@||premiumleecher.com/inc/adsense.js (easylistchina+easylist.txt: 60666) -.premiumleecher.com/inc/adsense\.js -# @@||premiumleecher.com/inc/adframe.js (easylistchina+easylist.txt: 60665) -.premiumleecher.com/inc/adframe\.js -# @@||premiumgeneratorlink.com^$elemhide (easylistchina+easylist.txt: 60664) -.premiumgeneratorlink.com -# @@||premium4.us^$elemhide (easylistchina+easylist.txt: 60663) -.premium4.us -# @@||prad.de/en/$elemhide (easylistchina+easylist.txt: 60662) -.prad.de/en/ -# @@||portalzuca.com^$elemhide (easylistchina+easylist.txt: 60660) -.portalzuca.com -# @@||pocosmegashdd.com^$elemhide (easylistchina+easylist.txt: 60656) -.pocosmegashdd.com -# @@||playindiafilms.com/advertisement.js (easylistchina+easylist.txt: 60655) -.playindiafilms.com/advertisement\.js -# @@||playhd.eu/advertisement.js (easylistchina+easylist.txt: 60654) -.playhd.eu/advertisement\.js -# @@||player.utv.ie/assets/js/adframe.js (easylistchina+easylist.txt: 60653) -.player.utv.ie/assets/js/adframe\.js -# @@||player.foxfdm.com^*/playback.js$xmlhttprequest (easylistchina+easylist.txt: 60652) -.player.foxfdm.com/.*/playback\.js -# @@||play-old-pc-games.com^$elemhide (easylistchina+easylist.txt: 60651) -.play-old-pc-games.com -# @@||pirlotv.tv^$elemhide (easylistchina+easylist.txt: 60650) -.pirlotv.tv -# @@||pipocas.tv/js/advertisement.js (easylistchina+easylist.txt: 60649) -.pipocas.tv/js/advertisement\.js -# @@||picu.pk^$elemhide (easylistchina+easylist.txt: 60648) -.picu.pk -# @@||picload.org^$elemhide (easylistchina+easylist.txt: 60647) -.picload.org -# @@||photofacefun.com^*/adblock.js (easylistchina+easylist.txt: 60646) -.photofacefun.com/.*/adblock\.js -# @@||phoronix.com/advertisement.js (easylistchina+easylist.txt: 60645) -.phoronix.com/advertisement\.js -# @@||pes-patch.com^$elemhide (easylistchina+easylist.txt: 60644) -.pes-patch.com -# @@||perkuinternete.lt/modules/mod_jpayday/js/advertisement.js (easylistchina+easylist.txt: 60643) -.perkuinternete.lt/modules/mod_jpayday/js/advertisement\.js -# @@||peliculas.online-latino.com^$elemhide (easylistchina+easylist.txt: 60642) -.peliculas.online-latino.com -# @@||pcgames-download.net^$elemhide (easylistchina+easylist.txt: 60640) -.pcgames-download.net -# @@||paste.org/style/adframe.js (easylistchina+easylist.txt: 60639) -.paste.org/style/adframe\.js -# @@||pandora.com/static/ads/ (easylistchina+easylist.txt: 60635) -.pandora.com/static/ads/ -# @@||overclock3d.net/js/advert.js (easylistchina+easylist.txt: 60620) -.overclock3d.net/js/advert\.js -# @@||osdarlings.com^$elemhide (easylistchina+easylist.txt: 60619) -.osdarlings.com -# @@||oploverz.net^$elemhide (easylistchina+easylist.txt: 60616) -.oploverz.net -# @@||openx.gamereactor.dk/multi.php?$script (easylistchina+easylist.txt: 60612) -.openx.gamereactor.dk/multi\.php\? -# @@||openspeedtest.com/advertisement.js (easylistchina+easylist.txt: 60611) -.openspeedtest.com/advertisement\.js -# @@||openrunner.com/js/advertisement.js (easylistchina+easylist.txt: 60610) -.openrunner.com/js/advertisement\.js -# @@||openload.io^$elemhide (easylistchina+easylist.txt: 60606) -.openload.io -# @@||openload.co^$elemhide (easylistchina+easylist.txt: 60603) -.openload.co -# @@||onvasortir.com/advert$script (easylistchina+easylist.txt: 60602) -.onvasortir.com/advert -# @@||onrpg.com/advertisement.js (easylistchina+easylist.txt: 60601) -.onrpg.com/advertisement\.js -# @@||onlinevideoconverter.com^*ad*.js (easylistchina+easylist.txt: 60600) -.onlinevideoconverter.com/.*ad.*\.js -# @@||onlinemoviewatchs.com^$elemhide (easylistchina+easylist.txt: 60599) -.onlinemoviewatchs.com -# @@||onlinemoviewatchfree.com^$elemhide (easylistchina+easylist.txt: 60598) -.onlinemoviewatchfree.com -# @@||onlinemoviesfreee.com^$elemhide (easylistchina+easylist.txt: 60597) -.onlinemoviesfreee.com -# @@||oneplay.tv^$elemhide (easylistchina+easylist.txt: 60596) -.oneplay.tv -# @@||oneplay.tv/embed/js/fuckadblock.js (easylistchina+easylist.txt: 60595) -.oneplay.tv/embed/js/fuckadblock\.js -# @@||omaredomex.org^$elemhide (easylistchina+easylist.txt: 60594) -.omaredomex.org -# @@||nzbstars.com*/advertisement.js (easylistchina+easylist.txt: 60591) -.nzbstars.com*./(.*/)?advertisement\.js -# @@||nowvideo.to/banner.php?$script (easylistchina+easylist.txt: 60590) -.nowvideo.to/banner\.php\? -# @@||nowvideo.sx/banner.php?$script (easylistchina+easylist.txt: 60589) -.nowvideo.sx/banner\.php\? -# @@||nowvideo.li/banner.php?$script (easylistchina+easylist.txt: 60588) -.nowvideo.li/banner\.php\? -# @@||nowdownload.to/banner.php?$script (easylistchina+easylist.txt: 60587) -.nowdownload.to/banner\.php\? -# @@||novamov.com/banner.php?$script (easylistchina+easylist.txt: 60586) -.novamov.com/banner\.php\? -# @@||noticiasautomotivas.com.br^$elemhide (easylistchina+easylist.txt: 60585) -.noticiasautomotivas.com.br -# @@||nosteam.ro^*/advertisement.js (easylistchina+easylist.txt: 60584) -.nosteam.ro/.*/advertisement\.js -# @@||nosteam.ro/advertisement.js (easylistchina+easylist.txt: 60583) -.nosteam.ro/advertisement\.js -# @@||nornar.com^$elemhide (easylistchina+easylist.txt: 60582) -.nornar.com -# @@||nonags.com^*/ad$image (easylistchina+easylist.txt: 60581) -.nonags.com/.*/ad -# @@||nonags.com^$elemhide (easylistchina+easylist.txt: 60580) -.nonags.com -# @@||nicoblog-games.com^$elemhide (easylistchina+easylist.txt: 60579) -.nicoblog-games.com -# @@||nextthreedays.com/Include/Javascript/AdFunctions.js (easylistchina+easylist.txt: 60577) -.nextthreedays.com/Include/Javascript/AdFunctions\.js -# @@||next-episode.net^$script (easylistchina+easylist.txt: 60576) -.next-episode.net -# @@||newxxxvideosupdate.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60575) -.newxxxvideosupdate.blogspot.com.ar -# @@||newmusicforpeople.org^$elemhide (easylistchina+easylist.txt: 60574) -.newmusicforpeople.org -# @@||nettavisen.no^*/advertisement.js (easylistchina+easylist.txt: 60573) -.nettavisen.no/.*/advertisement\.js -# @@||needrom.com/advert1.js (easylistchina+easylist.txt: 60572) -.needrom.com/advert1\.js -# @@||ndtv.com/static/js/advertisement.js (easylistchina+easylist.txt: 60571) -.ndtv.com/static/js/advertisement\.js -# @@||nbahd.com^$elemhide (easylistchina+easylist.txt: 60570) -.nbahd.com -# @@||narkive.com^$elemhide (easylistchina+easylist.txt: 60569) -.narkive.com -# @@||mypapercraft.net^$elemhide (easylistchina+easylist.txt: 60567) -.mypapercraft.net -# @@||myksn.net^$elemhide (easylistchina+easylist.txt: 60566) -.myksn.net -# @@||myiplayer.com^$elemhide (easylistchina+easylist.txt: 60565) -.myiplayer.com -# @@||myiplayer.com/ad*.js (easylistchina+easylist.txt: 60564) -.myiplayer.com/ad.*\.js -# @@||myfreeforum.org/advertisement.js (easylistchina+easylist.txt: 60563) -.myfreeforum.org/advertisement\.js -# @@||myfineforum.org/advertisement.js (easylistchina+easylist.txt: 60562) -.myfineforum.org/advertisement\.js -# @@||mybannermaker.com/banner.php$~third-party (easylistchina+easylist.txt: 60561) -.mybannermaker.com/banner\.php -# @@||mwfiles.net/advertisement.js (easylistchina+easylist.txt: 60560) -.mwfiles.net/advertisement\.js -# @@||musicacelestial.net^$elemhide (easylistchina+easylist.txt: 60559) -.musicacelestial.net -# @@||mundoprogramas.net^$elemhide (easylistchina+easylist.txt: 60558) -.mundoprogramas.net -# @@||multiup.org^$elemhide (easylistchina+easylist.txt: 60557) -.multiup.org -# @@||multiup.org/img/theme/*?$image (easylistchina+easylist.txt: 60556) -.multiup.org/img/theme/.*\? -# @@||mugiwaranofansub.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60555) -.mugiwaranofansub.blogspot.com.ar -# @@||mrtzcmp3.net/advertisement.js (easylistchina+easylist.txt: 60554) -.mrtzcmp3.net/advertisement\.js -# @@||mrjuegosdroid.co.vu^$elemhide (easylistchina+easylist.txt: 60553) -.mrjuegosdroid.co.vu -# @@||mpc-g.com^$elemhide (easylistchina+easylist.txt: 60552) -.mpc-g.com -# @@||mp3skull.la^$elemhide (easylistchina+easylist.txt: 60551) -.mp3skull.la -# @@||mp3clan.net^$elemhide (easylistchina+easylist.txt: 60550) -.mp3clan.net -# @@||mp3clan.com^*/advertisement.js (easylistchina+easylist.txt: 60549) -.mp3clan.com/.*/advertisement\.js -# @@||mp3clan.com^$elemhide (easylistchina+easylist.txt: 60548) -.mp3clan.com -# @@||mp3clan.audio^$elemhide (easylistchina+easylist.txt: 60547) -.mp3clan.audio -# @@||movie1k.net^$elemhide (easylistchina+easylist.txt: 60546) -.movie1k.net -# @@||mousebreaker.com/scripts/ads.js (easylistchina+easylist.txt: 60545) -.mousebreaker.com/scripts/ads\.js -# @@||moon-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60544) -.moon-faucet.tk/advertisement\.js -# @@||monsoonads.com:8080/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60542) -.monsoonads.com:8080/crossdomain\.xml -# @@||monsoonads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60541) -.monsoonads.com/crossdomain\.xml -# @@||monova.unblocked.la^$generichide (easylistchina+easylist.txt: 60540) -.monova.unblocked.la -# @@||monova.unblocked.la/js/adframe.js (easylistchina+easylist.txt: 60539) -.monova.unblocked.la/js/adframe\.js -# @@||monova.org^$generichide (easylistchina+easylist.txt: 60538) -.monova.org -# @@||monova.org/js/adframe.js (easylistchina+easylist.txt: 60537) -.monova.org/js/adframe\.js -# @@||moneyinpjs.com/advertisement.js (easylistchina+easylist.txt: 60536) -.moneyinpjs.com/advertisement\.js -# @@||moje-dzialdowo.pl/images/*.swf|$object (easylistchina+easylist.txt: 60535) -.moje-dzialdowo.pl/images/.*\.swf$ -# @@||moje-dzialdowo.pl/delivery/ajs.php?zoneid=$script (easylistchina+easylist.txt: 60534) -.moje-dzialdowo.pl/delivery/ajs\.php\?zoneid= -# @@||mobinozer.com^*/advert.js (easylistchina+easylist.txt: 60533) -.mobinozer.com/.*/advert\.js -# @@||mmatko.com/images/ad/$image (easylistchina+easylist.txt: 60532) -.mmatko.com/images/ad/ -# @@||mma-core.com/Scripts/adscript.js (easylistchina+easylist.txt: 60531) -.mma-core.com/Scripts/adscript\.js -# @@||mix.dj^*/advertisement.js (easylistchina+easylist.txt: 60530) -.mix.dj/.*/advertisement\.js -# @@||mix.dj/jscripts/jquery/mdj_adverts.js (easylistchina+easylist.txt: 60529) -.mix.dj/jscripts/jquery/mdj_adverts\.js -# @@||mintmovies.net^$elemhide (easylistchina+easylist.txt: 60528) -.mintmovies.net -# @@||miniclipcdn.com/js/advertisement.js (easylistchina+easylist.txt: 60527) -.miniclipcdn.com/js/advertisement\.js -# @@||minecraft-forum.net^$elemhide (easylistchina+easylist.txt: 60526) -.minecraft-forum.net -# @@||mimaletamusical.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60525) -.mimaletamusical.blogspot.com.ar -# @@||mgcash.com/common/adblock.js (easylistchina+easylist.txt: 60518) -.mgcash.com/common/adblock\.js -# @@||megawypas.pl/includes/adframe.js (easylistchina+easylist.txt: 60517) -.megawypas.pl/includes/adframe\.js -# @@||megavideodownloader.com/adframe.js (easylistchina+easylist.txt: 60516) -.megavideodownloader.com/adframe\.js -# @@||megahd.me^*/advertisement.js (easylistchina+easylist.txt: 60515) -.megahd.me/.*/advertisement\.js -# @@||megadown.us/advertisement.js (easylistchina+easylist.txt: 60514) -.megadown.us/advertisement\.js -# @@||megacineonline.net^$elemhide (easylistchina+easylist.txt: 60513) -.megacineonline.net -# @@||megacineonline.biz^$elemhide (easylistchina+easylist.txt: 60512) -.megacineonline.biz -# @@||mediaplaybox.com^$elemhide (easylistchina+easylist.txt: 60510) -.mediaplaybox.com -# @@||maxedtech.com^$elemhide (easylistchina+easylist.txt: 60507) -.maxedtech.com -# @@||maxcheaters.com/public/js/jsLoader.js (easylistchina+easylist.txt: 60506) -.maxcheaters.com/public/js/jsLoader\.js -# @@||max-deportv.net^$elemhide (easylistchina+easylist.txt: 60505) -.max-deportv.net -# @@||max-deportv.info^$elemhide (easylistchina+easylist.txt: 60504) -.max-deportv.info -# @@||mastertoons.com^$elemhide (easylistchina+easylist.txt: 60503) -.mastertoons.com -# @@||masfuertequeelhierro.com^$elemhide (easylistchina+easylist.txt: 60502) -.masfuertequeelhierro.com -# @@||marketmilitia.org^$elemhide (easylistchina+easylist.txt: 60501) -.marketmilitia.org -# @@||marketmilitia.org/advertisement.js (easylistchina+easylist.txt: 60500) -.marketmilitia.org/advertisement\.js -# @@||mangakaka.com^*/advertiser.js (easylistchina+easylist.txt: 60499) -.mangakaka.com/.*/advertiser\.js -# @@||mangakaka.com/ad/$subdocument (easylistchina+easylist.txt: 60498) -.mangakaka.com/ad/ -# @@||mangahost.com/ads.js? (easylistchina+easylist.txt: 60497) -.mangahost.com/ads\.js\? -# @@||mangahop.com^$generichide (easylistchina+easylist.txt: 60496) -.mangahop.com -# @@||mangabird.me/sites/default/files/manga/*/advertise-$image (easylistchina+easylist.txt: 60495) -.mangabird.me/sites/default/files/manga/.*/advertise- -# @@||mangabird.com^$elemhide (easylistchina+easylist.txt: 60494) -.mangabird.com -# @@||mangabird.com/sites/all/themes/zen/js/advertiser.js (easylistchina+easylist.txt: 60493) -.mangabird.com/sites/all/themes/zen/js/advertiser\.js -# @@||manga2u.co/css/advertiser.js (easylistchina+easylist.txt: 60492) -.manga2u.co/css/advertiser\.js -# @@||mamahd.com^$elemhide (easylistchina+easylist.txt: 60491) -.mamahd.com -# @@||mamahd.com/advertisement.js (easylistchina+easylist.txt: 60490) -.mamahd.com/advertisement\.js -# @@||makemehost.com/js/ads.js (easylistchina+easylist.txt: 60489) -.makemehost.com/js/ads\.js -# @@||majorleaguegaming.com^*.png?*=$image (easylistchina+easylist.txt: 60488) -.majorleaguegaming.com/.*\.png\?.*= -# @@||majorleaguegaming.com^$elemhide (easylistchina+easylist.txt: 60487) -.majorleaguegaming.com -# @@||majorleaguegaming.com/live/assets/advertisement-*.js (easylistchina+easylist.txt: 60486) -.majorleaguegaming.com/live/assets/advertisement-.*\.js -# @@||magesy.be^$elemhide (easylistchina+easylist.txt: 60485) -.magesy.be -# @@||magesy.be/advertisement.js (easylistchina+easylist.txt: 60484) -.magesy.be/advertisement\.js -# @@||macobserver.com/js/adlink.js (easylistchina+easylist.txt: 60482) -.macobserver.com/js/adlink\.js -# @@||mac2sell.net^$elemhide (easylistchina+easylist.txt: 60480) -.mac2sell.net -# @@||maamp3.com^$elemhide (easylistchina+easylist.txt: 60479) -.maamp3.com -# @@||lumload.com^$elemhide (easylistchina+easylist.txt: 60478) -.lumload.com -# @@||lpmanager.com^*/fuckadblock.js (easylistchina+easylist.txt: 60477) -.lpmanager.com/.*/fuckadblock\.js -# @@||lpg-forum.pl/advertise.js (easylistchina+easylist.txt: 60476) -.lpg-forum.pl/advertise\.js -# @@||lordpyrak.net^$elemhide (easylistchina+easylist.txt: 60475) -.lordpyrak.net -# @@||lomeutec.com^$elemhide (easylistchina+easylist.txt: 60474) -.lomeutec.com -# @@||livrosdoexilado.org^$elemhide (easylistchina+easylist.txt: 60473) -.livrosdoexilado.org -# @@||litecoiner.net/advertisement.js (easylistchina+easylist.txt: 60472) -.litecoiner.net/advertisement\.js -# @@||litecoin-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60471) -.litecoin-faucet.tk/advertisement\.js -# @@||liquidcompass.net/js/advertisement.js (easylistchina+easylist.txt: 60470) -.liquidcompass.net/js/advertisement\.js -# @@||linkshrink.net^$elemhide (easylistchina+easylist.txt: 60469) -.linkshrink.net -# @@||linkcrypt.ws^$elemhide (easylistchina+easylist.txt: 60468) -.linkcrypt.ws -# @@||link.tl^$elemhide (easylistchina+easylist.txt: 60466) -.link.tl -# @@||lilfile.com/js/advertise.js (easylistchina+easylist.txt: 60465) -.lilfile.com/js/advertise\.js -# @@||lilfile.com/js/advertise-2.js (easylistchina+easylist.txt: 60464) -.lilfile.com/js/advertise-2\.js -# @@||lifehacker.com.au^*/ads.js (easylistchina+easylist.txt: 60463) -.lifehacker.com.au/.*/ads\.js -# @@||liberallogic101.com/show_ads.js (easylistchina+easylist.txt: 60462) -.liberallogic101.com/show_ads\.js -# @@||legionprogramas.org^$elemhide (easylistchina+easylist.txt: 60461) -.legionprogramas.org -# @@||legionpeliculas.org^$elemhide (easylistchina+easylist.txt: 60460) -.legionpeliculas.org -# @@||leecher.us^$elemhide (easylistchina+easylist.txt: 60459) -.leecher.us -# @@||leecher.us/assets/img/*/ads/$image (easylistchina+easylist.txt: 60458) -.leecher.us/assets/img/.*/ads/ -# @@||leaguesecretary.com/advertisement.js (easylistchina+easylist.txt: 60457) -.leaguesecretary.com/advertisement\.js -# @@||layer13.net^$elemhide,script (easylistchina+easylist.txt: 60456) -.layer13.net -# @@||lasprovincias.es^*/adframe.js (easylistchina+easylist.txt: 60455) -.lasprovincias.es/.*/adframe\.js -# @@||lasexta.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60454) -.lasexta.com/adsxml/ -# @@||lag10.net^$elemhide (easylistchina+easylist.txt: 60453) -.lag10.net -# @@||kwikupload.com^$elemhide (easylistchina+easylist.txt: 60452) -.kwikupload.com -# @@||kshowes.net^$elemhide (easylistchina+easylist.txt: 60451) -.kshowes.net -# @@||kotaku.com.au^*/ads.js (easylistchina+easylist.txt: 60450) -.kotaku.com.au/.*/ads\.js -# @@||koparos.info^$elemhide (easylistchina+easylist.txt: 60449) -.koparos.info -# @@||koparos.info/ads.php (easylistchina+easylist.txt: 60448) -.koparos.info/ads\.php -# @@||kisscartoon.me/Ads/$subdocument (easylistchina+easylist.txt: 60447) -.kisscartoon.me/Ads/ -# @@||kissanime.com/ads/$image,subdocument (easylistchina+easylist.txt: 60446) -.kissanime.com/ads/ -# @@||kenkenpuzzle.com/assets/ads-$script (easylistchina+easylist.txt: 60445) -.kenkenpuzzle.com/assets/ads- -# @@||kdliker.com/js/advert.js (easylistchina+easylist.txt: 60444) -.kdliker.com/js/advert\.js -# @@||katsomo.fi^*/advertisement.js (easylistchina+easylist.txt: 60443) -.katsomo.fi/.*/advertisement\.js -# @@||katsomo.fi^*/advert.js (easylistchina+easylist.txt: 60442) -.katsomo.fi/.*/advert\.js -# @@||juzupload.com/advert*.js (easylistchina+easylist.txt: 60441) -.juzupload.com/advert.*\.js -# @@||junksport.com/watch/advertisement.js (easylistchina+easylist.txt: 60440) -.junksport.com/watch/advertisement\.js -# @@||juba-get.com^*/advertisement.js (easylistchina+easylist.txt: 60439) -.juba-get.com/.*/advertisement\.js -# @@||jkanime.net^*/advertisement2.js (easylistchina+easylist.txt: 60437) -.jkanime.net/.*/advertisement2\.js -# @@||jkanime.net/assets/js/advertisement.js (easylistchina+easylist.txt: 60436) -.jkanime.net/assets/js/advertisement\.js -# @@||jjcast.com^$elemhide (easylistchina+easylist.txt: 60435) -.jjcast.com -# @@||jevvi.es/adblock/$image (easylistchina+easylist.txt: 60434) -.jevvi.es/adblock/ -# @@||iriptv.com/player/ads.js (easylistchina+easylist.txt: 60433) -.iriptv.com/player/ads\.js -# @@||iptvlinks.com^$elemhide (easylistchina+easylist.txt: 60432) -.iptvlinks.com -# @@||investopedia.com^*/adverts.js (easylistchina+easylist.txt: 60430) -.investopedia.com/.*/adverts\.js -# @@||investopedia.com^*/advertisement.js (easylistchina+easylist.txt: 60429) -.investopedia.com/.*/advertisement\.js -# @@||investopedia.com^$elemhide (easylistchina+easylist.txt: 60428) -.investopedia.com -# @@||investopedia.com/public/js/ads.js (easylistchina+easylist.txt: 60427) -.investopedia.com/public/js/ads\.js -# @@||investigationdiscovery.com/shared/ad-enablers/ (easylistchina+easylist.txt: 60426) -.investigationdiscovery.com/shared/ad-enablers/ -# @@||install.wtf/advertisement/advertisement.js (easylistchina+easylist.txt: 60422) -.install.wtf/advertisement/advertisement\.js -# @@||inskinmedia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60421) -.inskinmedia.com/crossdomain\.xml -# @@||incredibox.com^$elemhide (easylistchina+easylist.txt: 60415) -.incredibox.com -# @@||incredibox.com/js/fuckadblock.js (easylistchina+easylist.txt: 60414) -.incredibox.com/js/fuckadblock\.js -# @@||incredibox.com/js/advertisement.js (easylistchina+easylist.txt: 60413) -.incredibox.com/js/advertisement\.js -# @@||imgsure.com/ads/banner.jpg? (easylistchina+easylist.txt: 60410) -.imgsure.com/ads/banner\.jpg\? -# @@||imgleech.com/ads/banner.jpg? (easylistchina+easylist.txt: 60409) -.imgleech.com/ads/banner\.jpg\? -# @@||imgclick.net^$elemhide (easylistchina+easylist.txt: 60408) -.imgclick.net -# @@||images.bangtidy.net^$elemhide (easylistchina+easylist.txt: 60405) -.images.bangtidy.net -# @@||imageontime.com/ads/banner.jpg? (easylistchina+easylist.txt: 60404) -.imageontime.com/ads/banner\.jpg\? -# @@||ilive.to^$elemhide (easylistchina+easylist.txt: 60400) -.ilive.to -# @@||ilive.to/js/advert*.js (easylistchina+easylist.txt: 60399) -.ilive.to/js/advert.*\.js -# @@||iguide.to/js/advertisement.js (easylistchina+easylist.txt: 60398) -.iguide.to/js/advertisement\.js -# @@||ifirstrow.eu^$script (easylistchina+easylist.txt: 60395) -.ifirstrow.eu -# @@||idevnote.com^$elemhide (easylistchina+easylist.txt: 60394) -.idevnote.com -# @@||ibmmainframeforum.com^$elemhide (easylistchina+easylist.txt: 60393) -.ibmmainframeforum.com -# @@||i-stream.pl^*/advertisement.js (easylistchina+easylist.txt: 60391) -.i-stream.pl/.*/advertisement\.js -# @@||hubturkey.net^$elemhide (easylistchina+easylist.txt: 60389) -.hubturkey.net -# @@||hqq.tv^$elemhide (easylistchina+easylist.txt: 60388) -.hqq.tv -# @@||hqpdb.com/ads/banner.jpg? (easylistchina+easylist.txt: 60387) -.hqpdb.com/ads/banner\.jpg\? -# @@||hpfanficarchive.com^*/advertisement.js (easylistchina+easylist.txt: 60386) -.hpfanficarchive.com/.*/advertisement\.js -# @@||hostyd.com^$elemhide (easylistchina+easylist.txt: 60385) -.hostyd.com -# @@||hogarutil.com^$elemhide (easylistchina+easylist.txt: 60383) -.hogarutil.com -# @@||hitcric.info^$elemhide (easylistchina+easylist.txt: 60382) -.hitcric.info -# @@||hexawebhosting.com/adcode.js (easylistchina+easylist.txt: 60380) -.hexawebhosting.com/adcode\.js -# @@||hentai-foundry.com^*/ads.js (easylistchina+easylist.txt: 60379) -.hentai-foundry.com/.*/ads\.js -# @@||hdmovie14.net/js/ad*.js (easylistchina+easylist.txt: 60378) -.hdmovie14.net/js/ad.*\.js -# @@||hdfree.tv/live/ad.php (easylistchina+easylist.txt: 60377) -.hdfree.tv/live/ad\.php -# @@||haxlog.com^$elemhide (easylistchina+easylist.txt: 60375) -.haxlog.com -# @@||hardware.no^$script (easylistchina+easylist.txt: 60374) -.hardware.no -# @@||hardware.no/artikler/$image,~third-party (easylistchina+easylist.txt: 60373) -.hardware.no/artikler/ -# @@||hardware.no/ads/$image (easylistchina+easylist.txt: 60372) -.hardware.no/ads/ -# @@||hallpass.com^*/ads.js (easylistchina+easylist.txt: 60371) -.hallpass.com/.*/ads\.js -# @@||hackintosh.zone^$elemhide (easylistchina+easylist.txt: 60370) -.hackintosh.zone -# @@||hackintosh.zone/adblock/advertisement.js (easylistchina+easylist.txt: 60369) -.hackintosh.zone/adblock/advertisement\.js -# @@||hackers.co.id/adframe/adframe.js (easylistchina+easylist.txt: 60368) -.hackers.co.id/adframe/adframe\.js -# @@||guygames.com^*/ads.js (easylistchina+easylist.txt: 60367) -.guygames.com/.*/ads\.js -# @@||goldsday.com^$elemhide (easylistchina+easylist.txt: 60360) -.goldsday.com -# @@||gofirstrow.eu^*/advertisement.js (easylistchina+easylist.txt: 60359) -.gofirstrow.eu/.*/advertisement\.js -# @@||gofirstrow.eu/advertisement.js (easylistchina+easylist.txt: 60358) -.gofirstrow.eu/advertisement\.js -# @@||go4up.com^$elemhide (easylistchina+easylist.txt: 60357) -.go4up.com -# @@||go4up.com/advertisement.js (easylistchina+easylist.txt: 60356) -.go4up.com/advertisement\.js -# @@||gizmodo.com.au^*/ads.js (easylistchina+easylist.txt: 60354) -.gizmodo.com.au/.*/ads\.js -# @@||girlsocool.com^*/ads.js (easylistchina+easylist.txt: 60353) -.girlsocool.com/.*/ads\.js -# @@||girlsaskguys.com^*/js/ads. (easylistchina+easylist.txt: 60352) -.girlsaskguys.com/.*/js/ads\. -# @@||girlgames.com^*/ads.js (easylistchina+easylist.txt: 60351) -.girlgames.com/.*/ads\.js -# @@||getdebrid.com^$elemhide (easylistchina+easylist.txt: 60350) -.getdebrid.com -# @@||getdebrid.com/advertisement.js (easylistchina+easylist.txt: 60349) -.getdebrid.com/advertisement\.js -# @@||get-free-bitcoin.eu^$elemhide (easylistchina+easylist.txt: 60348) -.get-free-bitcoin.eu -# @@||get-bitcoins-free.eu^$elemhide (easylistchina+easylist.txt: 60347) -.get-bitcoins-free.eu -# @@||gdataonline.com/exp/textad.js (easylistchina+easylist.txt: 60345) -.gdataonline.com/exp/textad\.js -# @@||gamespot.com/js/ads.js (easylistchina+easylist.txt: 60344) -.gamespot.com/js/ads\.js -# @@||gameslivetv.com/js/advertisement.js (easylistchina+easylist.txt: 60343) -.gameslivetv.com/js/advertisement\.js -# @@||gameshark.com/images/ads/ (easylistchina+easylist.txt: 60342) -.gameshark.com/images/ads/ -# @@||games.washingtonpost.com/Scripts/$script (easylistchina+easylist.txt: 60341) -.games.washingtonpost.com/Scripts/ -# @@||games.latimes.com/Scripts/advert.js (easylistchina+easylist.txt: 60340) -.games.latimes.com/Scripts/advert\.js -# @@||gamersconnexion.com/js/advert.js (easylistchina+easylist.txt: 60339) -.gamersconnexion.com/js/advert\.js -# @@||gamereactor.net/advertisement.js (easylistchina+easylist.txt: 60338) -.gamereactor.net/advertisement\.js -# @@||gamereactor.$script,~third-party (easylistchina+easylist.txt: 60337) -.gamereactor.*. -# @@||gameopc.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60336) -.gameopc.blogspot.com.ar -# @@||gamecopyworld.eu/games/$script (easylistchina+easylist.txt: 60335) -.gamecopyworld.eu/games/ -# @@||gamecopyworld.com/games/$script (easylistchina+easylist.txt: 60334) -.gamecopyworld.com/games/ -# @@||gallerynova.se^*/advertisement.js (easylistchina+easylist.txt: 60331) -.gallerynova.se/.*/advertisement\.js -# @@||gallery.aethereality.net/advertisement.js (easylistchina+easylist.txt: 60330) -.gallery.aethereality.net/advertisement\.js -# @@||funniermoments.com^$stylesheet (easylistchina+easylist.txt: 60315) -.funniermoments.com -# @@||funniermoments.com^$elemhide (easylistchina+easylist.txt: 60314) -.funniermoments.com -# @@||funniermoments.com/adframe.js (easylistchina+easylist.txt: 60313) -.funniermoments.com/adframe\.js -# @@||freshdown.net^$elemhide (easylistchina+easylist.txt: 60312) -.freshdown.net -# @@||freshdown.net/templates/Blaster/img/*/ads/$image (easylistchina+easylist.txt: 60311) -.freshdown.net/templates/Blaster/img/.*/ads/ -# @@||freesportsbet.com/js/advertisement.js (easylistchina+easylist.txt: 60310) -.freesportsbet.com/js/advertisement\.js -# @@||freeprosurfer.com^$elemhide (easylistchina+easylist.txt: 60309) -.freeprosurfer.com -# @@||freegamehosting.nl/js/advertisement.js (easylistchina+easylist.txt: 60308) -.freegamehosting.nl/js/advertisement\.js -# @@||freegamehosting.nl/advertisement.js (easylistchina+easylist.txt: 60307) -.freegamehosting.nl/advertisement\.js -# @@||freebitcoin.wmat.pl^*/advertisement.js (easylistchina+easylist.txt: 60306) -.freebitcoin.wmat.pl/.*/advertisement\.js -# @@||freebitco.in^$script (easylistchina+easylist.txt: 60305) -.freebitco.in -# @@||free.smsmarkaz.urdupoint.com^$elemhide (easylistchina+easylist.txt: 60303) -.free.smsmarkaz.urdupoint.com -# @@||free-bitcoin-faucet.eu^$elemhide (easylistchina+easylist.txt: 60302) -.free-bitcoin-faucet.eu -# @@||fm.tuba.pl/tuba3/_js/advert.js (easylistchina+easylist.txt: 60297) -.fm.tuba.pl/tuba3/_js/advert\.js -# @@||flvto.biz^$elemhide (easylistchina+easylist.txt: 60296) -.flvto.biz -# @@||fitshr.net^$script,stylesheet (easylistchina+easylist.txt: 60294) -.fitshr.net -# @@||firsttube.co^$elemhide (easylistchina+easylist.txt: 60293) -.firsttube.co -# @@||firstrow*.eu^$script (easylistchina+easylist.txt: 60292) -.firstrow*./.*\.eu[^\w%.-] -.firstrow*.eu -# @@||firstonetv.com/ads_advertisement.js (easylistchina+easylist.txt: 60290) -.firstonetv.com/ads_advertisement\.js -# @@||filmweb.pl/adbanner/$script (easylistchina+easylist.txt: 60289) -.filmweb.pl/adbanner/ -# @@||filmux.org^$elemhide (easylistchina+easylist.txt: 60288) -.filmux.org -# @@||filmux.net/ads/banner.jpg? (easylistchina+easylist.txt: 60287) -.filmux.net/ads/banner\.jpg\? -# @@||filmovizija.in^$script,~third-party,xmlhttprequest (easylistchina+easylist.txt: 60286) -.filmovizija.in -# @@||filmovisaprevodom.net/advertisement.js (easylistchina+easylist.txt: 60285) -.filmovisaprevodom.net/advertisement\.js -# @@||filerev.cc^$elemhide (easylistchina+easylist.txt: 60283) -.filerev.cc -# @@||fileice.net/js/advertisement.js (easylistchina+easylist.txt: 60282) -.fileice.net/js/advertisement\.js -# @@||filecom.net/advertisement.js (easylistchina+easylist.txt: 60281) -.filecom.net/advertisement\.js -# @@||fhsload.hopto.org^$script,~third-party (easylistchina+easylist.txt: 60280) -.fhsload.hopto.org -# @@||fhscheck.zapto.org^$script,~third-party (easylistchina+easylist.txt: 60279) -.fhscheck.zapto.org -# @@||ffiles.com/images/mmfiles_ (easylistchina+easylist.txt: 60278) -.ffiles.com/images/mmfiles_ -# @@||fcportables.com^$elemhide (easylistchina+easylist.txt: 60277) -.fcportables.com -# @@||fastcompany.com/js/advertisement.js (easylistchina+easylist.txt: 60275) -.fastcompany.com/js/advertisement\.js -# @@||fastcolabs.com/js/advertisement.js (easylistchina+easylist.txt: 60274) -.fastcolabs.com/js/advertisement\.js -# @@||fastcoexist.com/js/advertisement.js (easylistchina+easylist.txt: 60273) -.fastcoexist.com/js/advertisement\.js -# @@||fastcodesign.com/js/advertisement.js (easylistchina+easylist.txt: 60272) -.fastcodesign.com/js/advertisement\.js -# @@||fastcocreate.com/js/advertisement.js (easylistchina+easylist.txt: 60271) -.fastcocreate.com/js/advertisement\.js -# @@||ezcast.tv/static/scripts/adscript.js (easylistchina+easylist.txt: 60269) -.ezcast.tv/static/scripts/adscript\.js -# @@||exsite.pl^*/advert.js (easylistchina+easylist.txt: 60268) -.exsite.pl/.*/advert\.js -# @@||exrapidleech.info^$elemhide,script (easylistchina+easylist.txt: 60267) -.exrapidleech.info -# @@||exrapidleech.info/templates/$image (easylistchina+easylist.txt: 60266) -.exrapidleech.info/templates/ -# @@||exoclick.com/wp-content/$image,third-party (easylistchina+easylist.txt: 60263) -.exoclick.com/wp-content/ -# @@||exashare.com/ads.html$subdocument (easylistchina+easylist.txt: 60262) -.exashare.com/ads\.html -# @@||eventhubs.com^*.$script (easylistchina+easylist.txt: 60261) -.eventhubs.com/.*\. -# @@||euroman.dk^$elemhide (easylistchina+easylist.txt: 60260) -.euroman.dk -# @@||eu5.org^*/advert.js (easylistchina+easylist.txt: 60259) -.eu5.org/.*/advert\.js -# @@||eskago.pl/html/js/advertisement.js (easylistchina+easylist.txt: 60258) -.eskago.pl/html/js/advertisement\.js -# @@||eskago.pl/html/js/adv.bbelements.js (easylistchina+easylist.txt: 60257) -.eskago.pl/html/js/adv\.bbelements\.js -# @@||eskago.pl/html/js/ads-banner.js (easylistchina+easylist.txt: 60256) -.eskago.pl/html/js/ads-banner\.js -# @@||eska.pl^*bbelements.js (easylistchina+easylist.txt: 60255) -.eska.pl/.*bbelements\.js -# @@||eosads.com/adver$script (easylistchina+easylist.txt: 60250) -.eosads.com/adver -# @@||elrellano.com/ad/ad.js (easylistchina+easylist.txt: 60248) -.elrellano.com/ad/ad\.js -# @@||elektrotanya.com/ads/$script,~third-party (easylistchina+easylist.txt: 60247) -.elektrotanya.com/ads/ -# @@||eclypsia.com^$script,~third-party (easylistchina+easylist.txt: 60244) -.eclypsia.com -# @@||ebkimg.com/banners/ (easylistchina+easylist.txt: 60243) -.ebkimg.com/banners/ -# @@||e24.no^$elemhide (easylistchina+easylist.txt: 60242) -.e24.no -# @@||dx-tv.com^$elemhide (easylistchina+easylist.txt: 60241) -.dx-tv.com -# @@||dvdfullfree.com^$elemhide (easylistchina+easylist.txt: 60240) -.dvdfullfree.com -# @@||dutplanet.net/ajax/reclamecheck.php?$xmlhttprequest (easylistchina+easylist.txt: 60239) -.dutplanet.net/ajax/reclamecheck\.php\? -# @@||drugs.com^$subdocument,~third-party (easylistchina+easylist.txt: 60238) -.drugs.com -# @@||dressuppink.com^*/ads.js (easylistchina+easylist.txt: 60236) -.dressuppink.com/.*/ads\.js -# @@||dressup.com^*/ads.js (easylistchina+easylist.txt: 60234) -.dressup.com/.*/ads\.js -# @@||dragoart.com^$elemhide (easylistchina+easylist.txt: 60233) -.dragoart.com -# @@||doodle.com/builtstatic/*/doodle/js/$script (easylistchina+easylist.txt: 60227) -.doodle.com/builtstatic/.*/doodle/js/ -# @@||dontdrinkandroot.net/js/adframe.js (easylistchina+easylist.txt: 60226) -.dontdrinkandroot.net/js/adframe\.js -# @@||domain.com/ads.html (easylistchina+easylist.txt: 60225) -.domain.com/ads\.html -# @@||dogefaucet.com^*/advertisement.js (easylistchina+easylist.txt: 60223) -.dogefaucet.com/.*/advertisement\.js -# @@||doge-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60221) -.doge-faucet.tk/advertisement\.js -# @@||docpaste.com^$elemhide (easylistchina+easylist.txt: 60220) -.docpaste.com -# @@||dksoftwares4u.blogspot.co.uk^$elemhide (easylistchina+easylist.txt: 60217) -.dksoftwares4u.blogspot.co.uk -# @@||dizi-mag.com/ads/$subdocument (easylistchina+easylist.txt: 60215) -.dizi-mag.com/ads/ -# @@||dinozap.tv/adimages/ (easylistchina+easylist.txt: 60214) -.dinozap.tv/adimages/ -# @@||destinypublicevents.com/src/advertisement.js (easylistchina+easylist.txt: 60211) -.destinypublicevents.com/src/advertisement\.js -# @@||destinationamerica.com^$elemhide (easylistchina+easylist.txt: 60210) -.destinationamerica.com -# @@||desionlinetheater.com^$elemhide (easylistchina+easylist.txt: 60209) -.desionlinetheater.com -# @@||decomaniacos.es^*/advertisement.js (easylistchina+easylist.txt: 60205) -.decomaniacos.es/.*/advertisement\.js -# @@||debridx.com^$elemhide (easylistchina+easylist.txt: 60204) -.debridx.com -# @@||debridnet.com^$elemhide (easylistchina+easylist.txt: 60203) -.debridnet.com -# @@||debridit.com^$elemhide (easylistchina+easylist.txt: 60202) -.debridit.com -# @@||debrastagi.com^$elemhide (easylistchina+easylist.txt: 60201) -.debrastagi.com -# @@||dayt.se^$elemhide (easylistchina+easylist.txt: 60199) -.dayt.se -# @@||danydanielrt.com^$elemhide (easylistchina+easylist.txt: 60197) -.danydanielrt.com -# @@||d2anfhdgjxf8s1.cloudfront.net/ajs.php?adserver=$script (easylistchina+easylist.txt: 60194) -.d2anfhdgjxf8s1.cloudfront.net/ajs\.php\?adserver= -# @@||cyberdevilz.net^$elemhide (easylistchina+easylist.txt: 60193) -.cyberdevilz.net -# @@||cricket-365.tv^$elemhide (easylistchina+easylist.txt: 60191) -.cricket-365.tv -# @@||crazygallery.info/ads/$script (easylistchina+easylist.txt: 60190) -.crazygallery.info/ads/ -# @@||corepacks.com^$elemhide (easylistchina+easylist.txt: 60182) -.corepacks.com -# @@||coolgames.com^*/ads.js (easylistchina+easylist.txt: 60180) -.coolgames.com/.*/ads\.js -# @@||cookinggames.com^*/ads.js (easylistchina+easylist.txt: 60179) -.cookinggames.com/.*/ads\.js -# @@||computerworld.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 60177) -.computerworld.com/www/js/ads/gpt_includes\.js -# @@||compartiendofull.org^$elemhide (easylistchina+easylist.txt: 60176) -.compartiendofull.org -# @@||coinurl.com/get.php?id=18045 (easylistchina+easylist.txt: 60174) -.coinurl.com/get\.php\?id=18045 -# @@||coinracket.com^$elemhide (easylistchina+easylist.txt: 60173) -.coinracket.com -# @@||coincheckin.com/js/adframe.js (easylistchina+easylist.txt: 60172) -.coincheckin.com/js/adframe\.js -# @@||codingcrazy.com/demo/adframe.js (easylistchina+easylist.txt: 60171) -.codingcrazy.com/demo/adframe\.js -# @@||clubedohardware.com.br^$elemhide (easylistchina+easylist.txt: 60170) -.clubedohardware.com.br -# @@||cloudvidz.net^$elemhide (easylistchina+easylist.txt: 60169) -.cloudvidz.net -# @@||cloudtime.to/banner.php?$script (easylistchina+easylist.txt: 60168) -.cloudtime.to/banner\.php\? -# @@||cleodesktop.com^$elemhide (easylistchina+easylist.txt: 60163) -.cleodesktop.com -# @@||cityam.com^$generichide (easylistchina+easylist.txt: 60162) -.cityam.com -# @@||cinestrenostv.tv/reproductores/adblock.js (easylistchina+easylist.txt: 60161) -.cinestrenostv.tv/reproductores/adblock\.js -# @@||cinema2satu.net^$elemhide (easylistchina+easylist.txt: 60160) -.cinema2satu.net -# @@||chrissmoove.com^$elemhide (easylistchina+easylist.txt: 60157) -.chrissmoove.com -# @@||channel4.com/p/c4_live/VPAIDAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60153) -.channel4.com/p/c4_live/VPAIDAdRenderer\.swf -# @@||channel4.com/p/c4_live/Video2AdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60152) -.channel4.com/p/c4_live/Video2AdRenderer\.swf -# @@||channel4.com/p/c4_live/UberlayAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60151) -.channel4.com/p/c4_live/UberlayAdRenderer\.swf -# @@||channel4.com/p/c4_live/PauseAdExtension.swf$object-subrequest (easylistchina+easylist.txt: 60150) -.channel4.com/p/c4_live/PauseAdExtension\.swf -# @@||channel4.com/p/c4_live/ExternalHTMLAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60149) -.channel4.com/p/c4_live/ExternalHTMLAdRenderer\.swf -# @@||channel4.com/ad/l/1?|$object-subrequest (easylistchina+easylist.txt: 60148) -.channel4.com/ad/l/1\?$ -# @@||celogeek.com/stylesheets/blogads.css (easylistchina+easylist.txt: 60145) -.celogeek.com/stylesheets/blogads\.css -# @@||cdnco.us^$script (easylistchina+easylist.txt: 60144) -.cdnco.us -# @@||cdn.eventosppv.me^$elemhide (easylistchina+easylist.txt: 60142) -.cdn.eventosppv.me -# @@||cdn-seekingalpha.com^*/ads.js (easylistchina+easylist.txt: 60140) -.cdn-seekingalpha.com/.*/ads\.js -# @@||cbs.com^$elemhide (easylistchina+easylist.txt: 60138) -.cbs.com -# @@||catchvideo.net/adframe.js (easylistchina+easylist.txt: 60137) -.catchvideo.net/adframe\.js -# @@||casadossegredos.tv/ads/ads_$subdocument (easylistchina+easylist.txt: 60135) -.casadossegredos.tv/ads/ads_ -# @@||captchme.net/js/advertisement.js (easylistchina+easylist.txt: 60134) -.captchme.net/js/advertisement\.js -# @@||captchme.net/js/advertisement-min.js (easylistchina+easylist.txt: 60133) -.captchme.net/js/advertisement-min\.js -# @@||calcularindemnizacion.es^$elemhide (easylistchina+easylist.txt: 60131) -.calcularindemnizacion.es -# @@||bywarrior.com^$elemhide (easylistchina+easylist.txt: 60130) -.bywarrior.com -# @@||bulletproofserving.com/scripts/ads.js (easylistchina+easylist.txt: 60128) -.bulletproofserving.com/scripts/ads\.js -# @@||budget101.com^$elemhide (easylistchina+easylist.txt: 60127) -.budget101.com -# @@||btspread.com/eroex.js (easylistchina+easylist.txt: 60126) -.btspread.com/eroex\.js -# @@||btava.com^$script (easylistchina+easylist.txt: 60125) -.btava.com -# @@||boxxod.net/advertisement.js (easylistchina+easylist.txt: 60123) -.boxxod.net/advertisement\.js -# @@||boincstats.com/js/adframe.js (easylistchina+easylist.txt: 60122) -.boincstats.com/js/adframe\.js -# @@||bitplay.ga^$elemhide (easylistchina+easylist.txt: 60119) -.bitplay.ga -# @@||bitcoiner.net/advertisement.js (easylistchina+easylist.txt: 60118) -.bitcoiner.net/advertisement\.js -# @@||bitcoin-free-faucet.eu^$elemhide (easylistchina+easylist.txt: 60117) -.bitcoin-free-faucet.eu -# @@||bitcoin-faucet.eu^$elemhide (easylistchina+easylist.txt: 60116) -.bitcoin-faucet.eu -# @@||bitcoin-cloud.eu^$elemhide (easylistchina+easylist.txt: 60115) -.bitcoin-cloud.eu -# @@||bitcoin-best-faucet.eu^$elemhide (easylistchina+easylist.txt: 60114) -.bitcoin-best-faucet.eu -# @@||bitcofree.com^$elemhide (easylistchina+easylist.txt: 60113) -.bitcofree.com -# @@||binbox.io^$elemhide (easylistchina+easylist.txt: 60112) -.binbox.io -# @@||binbox.io/adblock.js (easylistchina+easylist.txt: 60111) -.binbox.io/adblock\.js -# @@||binbox.io/ad/$subdocument (easylistchina+easylist.txt: 60110) -.binbox.io/ad/ -# @@||bilzonen.dk/scripts/ads.js (easylistchina+easylist.txt: 60109) -.bilzonen.dk/scripts/ads\.js -# @@||bicimotosargentina.com^$elemhide (easylistchina+easylist.txt: 60108) -.bicimotosargentina.com -# @@||bezaldfamily.net^$elemhide (easylistchina+easylist.txt: 60107) -.bezaldfamily.net -# @@||better-explorer.com^$elemhide (easylistchina+easylist.txt: 60106) -.better-explorer.com -# @@||bestream.tv/advert*.js (easylistchina+easylist.txt: 60105) -.bestream.tv/advert.*\.js -# @@||bestofmedia.com^*/advertisement.js (easylistchina+easylist.txt: 60104) -.bestofmedia.com/.*/advertisement\.js -# @@||best-free-faucet.eu^$elemhide (easylistchina+easylist.txt: 60103) -.best-free-faucet.eu -# @@||best-bitcoin-faucet.eu^$elemhide (easylistchina+easylist.txt: 60102) -.best-bitcoin-faucet.eu -# @@||beemp3s.org/adreactor/$script (easylistchina+easylist.txt: 60100) -.beemp3s.org/adreactor/ -# @@||beelink.in/advertisement.js (easylistchina+easylist.txt: 60099) -.beelink.in/advertisement\.js -# @@||bdrip.ws^$elemhide (easylistchina+easylist.txt: 60098) -.bdrip.ws -# @@||bdrip.ws/web_data/*/ad$image (easylistchina+easylist.txt: 60097) -.bdrip.ws/web_data/.*/ad -# @@||backin.net^$elemhide (easylistchina+easylist.txt: 60095) -.backin.net -# @@||backin.net/advertisement.js (easylistchina+easylist.txt: 60094) -.backin.net/advertisement\.js -# @@||avforums.com/*ad$script (easylistchina+easylist.txt: 60092) -.avforums.com/.*ad -# @@||autolikesgroups.com^$elemhide (easylistchina+easylist.txt: 60091) -.autolikesgroups.com -# @@||autolikergroup.com/advertisement.js (easylistchina+easylist.txt: 60090) -.autolikergroup.com/advertisement\.js -# @@||autogespot.*/JavaScript/ads.js? (easylistchina+easylist.txt: 60089) -.autogespot.*./(.*/)?JavaScript/ads\.js\? -# @@||auroravid.to/banner.php (easylistchina+easylist.txt: 60088) -.auroravid.to/banner\.php -# @@||auditude.com/player/js/lib/aud.html5player.js (easylistchina+easylist.txt: 60087) -.auditude.com/player/js/lib/aud\.html5player\.js -# @@||atresplayer.com/static/js/advertisement.js (easylistchina+easylist.txt: 60085) -.atresplayer.com/static/js/advertisement\.js -# @@||atresplayer.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60084) -.atresplayer.com/adsxml/ -# @@||atresmedia.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60083) -.atresmedia.com/adsxml/ -# @@||aseanlegacy.net^$elemhide (easylistchina+easylist.txt: 60082) -.aseanlegacy.net -# @@||aseanlegacy.net/images/ads.png (easylistchina+easylist.txt: 60081) -.aseanlegacy.net/images/ads\.png -# @@||aseanlegacy.net/assets/advertisement.js (easylistchina+easylist.txt: 60080) -.aseanlegacy.net/assets/advertisement\.js -# @@||aseanlegacy.net/ad*.js (easylistchina+easylist.txt: 60079) -.aseanlegacy.net/ad.*\.js -# @@||arto.com/includes/js/adtech.de/script.axd/adframe.js? (easylistchina+easylist.txt: 60078) -.arto.com/includes/js/adtech\.de/script\.axd/adframe\.js\? -# @@||ar51.eu/ad/advertisement.js (easylistchina+easylist.txt: 60077) -.ar51.eu/ad/advertisement\.js -# @@||appfull.net^$elemhide (easylistchina+easylist.txt: 60076) -.appfull.net -# @@||appdn.net^$elemhide (easylistchina+easylist.txt: 60075) -.appdn.net -# @@||apkone.net^$elemhide (easylistchina+easylist.txt: 60074) -.apkone.net -# @@||apkmirror.com/wp-content/themes/APKMirror/js/ads.js (easylistchina+easylist.txt: 60073) -.apkmirror.com/wp-content/themes/APKMirror/js/ads\.js -# @@||anti-adblock-scripts.googlecode.com/files/adscript.js (easylistchina+easylist.txt: 60072) -.anti-adblock-scripts.googlecode.com/files/adscript\.js -# @@||antena3.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60071) -.antena3.com/adsxml/ -# @@||anonytext.tk^$elemhide (easylistchina+easylist.txt: 60070) -.anonytext.tk -# @@||anizm.com^$elemhide (easylistchina+easylist.txt: 60069) -.anizm.com -# @@||anisearch.com^*/ads.js? (easylistchina+easylist.txt: 60068) -.anisearch.com/.*/ads\.js\? -# @@||animesubita.info^$elemhide (easylistchina+easylist.txt: 60067) -.animesubita.info -# @@||animesproject.com^*/player.php$elemhide (easylistchina+easylist.txt: 60066) -.animesproject.com/.*/player\.php -# @@||animesproject.com^*/fuckadblock.js (easylistchina+easylist.txt: 60065) -.animesproject.com/.*/fuckadblock\.js -# @@||animefushigi.com^$elemhide (easylistchina+easylist.txt: 60064) -.animefushigi.com -# @@||animecrave.com/_content/$script (easylistchina+easylist.txt: 60063) -.animecrave.com/_content/ -# @@||anime2enjoy.com^$elemhide (easylistchina+easylist.txt: 60062) -.anime2enjoy.com -# @@||animalplanet.com^$elemhide (easylistchina+easylist.txt: 60061) -.animalplanet.com -# @@||android-zone.org^$elemhide (easylistchina+easylist.txt: 60060) -.android-zone.org -# @@||ancensored.com/sites/all/modules/player/images/ad.jpg (easylistchina+easylist.txt: 60059) -.ancensored.com/sites/all/modules/player/images/ad\.jpg -# @@||amk.to/js/adcode.js? (easylistchina+easylist.txt: 60058) -.amk.to/js/adcode\.js\? -# @@||amigosdelamili.com^$elemhide (easylistchina+easylist.txt: 60057) -.amigosdelamili.com -# @@||amazonaws.com/ssbss.ss/$script (easylistchina+easylist.txt: 60055) -.amazonaws.com/ssbss\.ss/ -# @@||amazonaws.com/atzuma/ajs.php?adserver=$script (easylistchina+easylist.txt: 60054) -.amazonaws.com/atzuma/ajs\.php\?adserver= -# @@||altoque.com^$elemhide (easylistchina+easylist.txt: 60052) -.altoque.com -# @@||allkpop.com/ads.js (easylistchina+easylist.txt: 60051) -.allkpop.com/ads\.js -# @@||alcohoin-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60048) -.alcohoin-faucet.tk/advertisement\.js -# @@||ahctv.com^$elemhide (easylistchina+easylist.txt: 60043) -.ahctv.com -# @@||agar.io^*/advertisement.js (easylistchina+easylist.txt: 60042) -.agar.io/.*/advertisement\.js -# @@||afterburnerleech.com/js/show_ads.js (easylistchina+easylist.txt: 60041) -.afterburnerleech.com/js/show_ads\.js -# @@||afreesms.com^$elemhide (easylistchina+easylist.txt: 60039) -.afreesms.com -# @@||afdah.tv^$script (easylistchina+easylist.txt: 60038) -.afdah.tv -# @@||afdah.com^$script (easylistchina+easylist.txt: 60037) -.afdah.com -# @@||afdah.co^$script (easylistchina+easylist.txt: 60036) -.afdah.co -# @@||adserver.liverc.com/getBannerVerify.js (easylistchina+easylist.txt: 60026) -.adserver.liverc.com/getBannerVerify\.js -# @@||ads.nipr.ac.jp^$~third-party (easylistchina+easylist.txt: 60015) -.ads.nipr.ac.jp -# @@||ads.clubedohardware.com.br/www/delivery/$script (easylistchina+easylist.txt: 60010) -.ads.clubedohardware.com.br/www/delivery/ -# @@||adf.ly^$generichide (easylistchina+easylist.txt: 59992) -.adf.ly -# @@||adexprt.com/cdn3/*&m=magnet$subdocument (easylistchina+easylist.txt: 59991) -.adexprt.com/cdn3/.*&m=magnet -# @@||adconscious.com/js/fuckadblock.js (easylistchina+easylist.txt: 59990) -.adconscious.com/js/fuckadblock\.js -# @@||ad.leadbolt.net/show_cu.js (easylistchina+easylist.txt: 59983) -.ad.leadbolt.net/show_cu\.js -# @@||ad.filmweb.pl^$script (easylistchina+easylist.txt: 59982) -.ad.filmweb.pl -# @@||9xbuddy.com/js/ads.js (easylistchina+easylist.txt: 59978) -.9xbuddy.com/js/ads\.js -# @@||9tutorials.com^$elemhide (easylistchina+easylist.txt: 59977) -.9tutorials.com -# @@||95.211.184.210/js/advertisement.js (easylistchina+easylist.txt: 59973) -.95.211.184.210/js/advertisement\.js -# @@||4sysops.com^*/adframe.js (easylistchina+easylist.txt: 59971) -.4sysops.com/.*/adframe\.js -# @@||4shared.com^$script,xmlhttprequest (easylistchina+easylist.txt: 59970) -.4shared.com -# @@||4fuckr.com^*/adframe.js (easylistchina+easylist.txt: 59969) -.4fuckr.com/.*/adframe\.js -# @@||360haven.com^$elemhide (easylistchina+easylist.txt: 59968) -.360haven.com -# @@||360haven.com/adframe.js (easylistchina+easylist.txt: 59967) -.360haven.com/adframe\.js -# @@||300mblink.com^$elemhide (easylistchina+easylist.txt: 59966) -.300mblink.com -# @@/wp-prevent-adblocker/*$script,~third-party (easylistchina+easylist.txt: 59938) -/(.*/)?wp-prevent-adblocker/.* -# @@/wp-content/plugins/wordpress-adblock-blocker/adframe.js$~third-party (easylistchina+easylist.txt: 59937) -/(.*/)?wp-content/plugins/wordpress-adblock-blocker/adframe\.js -# @@/wp-content/plugins/simple-adblock-notice/*$script,~third-party (easylistchina+easylist.txt: 59936) -/(.*/)?wp-content/plugins/simple-adblock-notice/.* -# @@/wp-content/plugins/blockalyzer-adblock-counter/*$image,script,~third-party (easylistchina+easylist.txt: 59935) -/(.*/)?wp-content/plugins/blockalyzer-adblock-counter/.* -# @@/wp-content/plugins/anti-block/js/advertisement.js$~third-party (easylistchina+easylist.txt: 59934) -/(.*/)?wp-content/plugins/anti-block/js/advertisement\.js -# @@/wp-content/plugins/adblock-notify-by-bweb/js/advertisement.js$~third-party (easylistchina+easylist.txt: 59933) -/(.*/)?wp-content/plugins/adblock-notify-by-bweb/js/advertisement\.js -# @@/blockalyzer-adblock-counter/js/advertisement.js$script,~third-party (easylistchina+easylist.txt: 59925) -/(.*/)?blockalyzer-adblock-counter/js/advertisement\.js -# @@/adBlockDetector/*$~third-party (easylistchina+easylist.txt: 59914) -/(.*/)?adBlockDetector/.* -# @@||zillow.com/ads/FlexAd.htm?did=$subdocument (easylistchina+easylist.txt: 59878) -.zillow.com/ads/FlexAd\.htm\?did= -# @@||ziehl-abegg.com/images/img_adverts/$~third-party (easylistchina+easylist.txt: 59877) -.ziehl-abegg.com/images/img_adverts/ -# @@||zeenews.india.com/ads/jw/player.swf$object (easylistchina+easylist.txt: 59876) -.zeenews.india.com/ads/jw/player\.swf -# @@||zedo.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59873) -.zedo.com/crossdomain\.xml -# @@||zattoo.com/advertising/channelswitch/$subdocument (easylistchina+easylist.txt: 59871) -.zattoo.com/advertising/channelswitch/ -# @@||zattoo.com/?advideo/*;vidAS=PRE_ROLL;$object-subrequest (easylistchina+easylist.txt: 59870) -.zattoo.com/\?advideo/.*;vidAS=PRE_ROLL; -# @@||zap2it.com/ads/newsletter/$image,~third-party (easylistchina+easylist.txt: 59869) -.zap2it.com/ads/newsletter/ -# @@||yumenetworks.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59867) -.yumenetworks.com/crossdomain\.xml -# @@||youtube.com^*_adsense_$xmlhttprequest (easylistchina+easylist.txt: 59860) -.youtube.com/.*_adsense_ -# @@||youtube.com/yt/css/www-advertise.css (easylistchina+easylist.txt: 59859) -.youtube.com/yt/css/www-advertise\.css -# @@||youtube.com/yt/advertise/medias/images/$image (easylistchina+easylist.txt: 59858) -.youtube.com/yt/advertise/medias/images/ -# @@||yokosonews.com/files/cache/ (easylistchina+easylist.txt: 59856) -.yokosonews.com/files/cache/ -# @@||ykhandler.com/adframe.js (easylistchina+easylist.txt: 59855) -.ykhandler.com/adframe\.js -# @@||yimg.com^*/java/promotions/js/ad_eo_1.1.js (easylistchina+easylist.txt: 59854) -.yimg.com/.*/java/promotions/js/ad_eo_1\.1\.js -# @@||yimg.com^*&yat/js/ads_ (easylistchina+easylist.txt: 59851) -.yimg.com/.*&yat/js/ads_ -# @@||yimg.com/zz/combo?*&*.js (easylistchina+easylist.txt: 59850) -.yimg.com/zz/combo\?.*&.*\.js -# @@||yellupload.com/yell/videoads/yellvideoplayer.swf? (easylistchina+easylist.txt: 59846) -.yellupload.com/yell/videoads/yellvideoplayer\.swf\? -# @@||yellupload.com/yell/videoads/*.flv| (easylistchina+easylist.txt: 59845) -.yellupload.com/yell/videoads/.*\.flv$ -# @@||yellowpages.com.mt/Images/Design/Buttons/advert.png (easylistchina+easylist.txt: 59844) -.yellowpages.com.mt/Images/Design/Buttons/advert\.png -# @@||yahoo.net/1/adnetwork/$object-subrequest (easylistchina+easylist.txt: 59841) -.yahoo.net/1/adnetwork/ -# @@||yahoo.com/combo?$stylesheet (easylistchina+easylist.txt: 59840) -.yahoo.com/combo\? -# @@||xbox.com/assets/ad/$image,~third-party (easylistchina+easylist.txt: 59837) -.xbox.com/assets/ad/ -# @@||www.networkadvertising.org/choices/|$document (easylistchina+easylist.txt: 59835) -.www.networkadvertising.org/choices/$ -# @@||www.google.com/ads/preferences/$image,script,subdocument (easylistchina+easylist.txt: 59834) -.www.google.com/ads/preferences/ -# @@||www.google.*/settings/u/0/ads/preferences/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59833) -.www.google.*./(.*/)?settings/u/0/ads/preferences/ -# @@||www.google.*/search?$subdocument (easylistchina+easylist.txt: 59832) -.www.google.*./(.*/)?search\? -# @@||www.google.*/aclk?*&adurl=$subdocument,~third-party (easylistchina+easylist.txt: 59831) -.www.google.*./(.*/)?aclk\?.*&adurl= -# @@||www.facebook.com/ad.*^ajaxpipe^$subdocument,~third-party (easylistchina+easylist.txt: 59830) -.www.facebook.com/ad\..*[^\w%.-]ajaxpipe[^\w%.-] -# @@||wrapper.teamxbox.com/a?size=headermainad (easylistchina+easylist.txt: 59828) -.wrapper.teamxbox.com/a\?size=headermainad -# @@||wpthemedetector.com/ad/$~third-party (easylistchina+easylist.txt: 59827) -.wpthemedetector.com/ad/ -# @@||wp.com/_static/*/criteo.js (easylistchina+easylist.txt: 59823) -.wp.com/_static/.*/criteo\.js -# @@||wortech.ac.uk/publishingimages/adverts/ (easylistchina+easylist.txt: 59822) -.wortech.ac.uk/publishingimages/adverts/ -# @@||worldstarhiphop.com^*/dj2.swf (easylistchina+easylist.txt: 59821) -.worldstarhiphop.com/.*/dj2\.swf -# @@||wisegeek.com/res/contentad/ (easylistchina+easylist.txt: 59820) -.wisegeek.com/res/contentad/ -# @@||wirefly.com/_images/ads/ (easylistchina+easylist.txt: 59819) -.wirefly.com/_images/ads/ -# @@||wired.com^*/cn-fe-ads/cn.dart.js (easylistchina+easylist.txt: 59818) -.wired.com/.*/cn-fe-ads/cn\.dart\.js -# @@||winnipegsun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59817) -.winnipegsun.com/assets/js/dfp\.js\? -# @@||williamsauction.com/Resources/images/ads/$~third-party (easylistchina+easylist.txt: 59816) -.williamsauction.com/Resources/images/ads/ -# @@||wikia.nocookie.net^*/images/$image (easylistchina+easylist.txt: 59815) -.wikia.nocookie.net/.*/images/ -# @@||wikia.com/__spotlights/spc.php?$xmlhttprequest (easylistchina+easylist.txt: 59814) -.wikia.com/__spotlights/spc\.php\? -# @@||widgetserver.com/syndication/get_widget.html?*&widget.adplacement=$subdocument (easylistchina+easylist.txt: 59813) -.widgetserver.com/syndication/get_widget\.html\?.*&widget\.adplacement= -# @@||widgets.cbslocal.com/player/embed?affiliate=$subdocument (easylistchina+easylist.txt: 59811) -.widgets.cbslocal.com/player/embed\?affiliate= -# @@||widget.slide.com^*/ads/*/preroll.swf (easylistchina+easylist.txt: 59810) -.widget.slide.com/.*/ads/.*/preroll\.swf -# @@||widget.breakingburner.com/ad/$subdocument (easylistchina+easylist.txt: 59809) -.widget.breakingburner.com/ad/ -# @@||whittakersworldwide.com/site-media/advertisements/ (easylistchina+easylist.txt: 59807) -.whittakersworldwide.com/site-media/advertisements/ -# @@||whitepages.com^*/google_adsense.js? (easylistchina+easylist.txt: 59806) -.whitepages.com/.*/google_adsense\.js\? -# @@||wellsfargo.com/img/ads/$~third-party (easylistchina+easylist.txt: 59805) -.wellsfargo.com/img/ads/ -# @@||wearetennis.com/pages/home/img/ad-$image (easylistchina+easylist.txt: 59802) -.wearetennis.com/pages/home/img/ad- -# @@||washingtonpost.com^*=/ad/audsci.js (easylistchina+easylist.txt: 59801) -.washingtonpost.com/.*=/ad/audsci\.js -# @@||washingtonpost.com/wpost2/css/combo?*/ads.css (easylistchina+easylist.txt: 59800) -.washingtonpost.com/wpost2/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wpost/css/combo?*/ads.css (easylistchina+easylist.txt: 59799) -.washingtonpost.com/wpost/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wp-srv/ad/wpni_generic_ad.js (easylistchina+easylist.txt: 59798) -.washingtonpost.com/wp-srv/ad/wpni_generic_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp_config.js (easylistchina+easylist.txt: 59797) -.washingtonpost.com/wp-srv/ad/wp_config\.js -# @@||washingtonpost.com/wp-srv/ad/wp_ad.js (easylistchina+easylist.txt: 59796) -.washingtonpost.com/wp-srv/ad/wp_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp.js (easylistchina+easylist.txt: 59795) -.washingtonpost.com/wp-srv/ad/wp\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks_config.js (easylistchina+easylist.txt: 59794) -.washingtonpost.com/wp-srv/ad/textlinks_config\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks.js (easylistchina+easylist.txt: 59793) -.washingtonpost.com/wp-srv/ad/textlinks\.js -# @@||washingtonpost.com/wp-srv/ad/textlink_driver.js (easylistchina+easylist.txt: 59792) -.washingtonpost.com/wp-srv/ad/textlink_driver\.js -# @@||washingtonpost.com/wp-srv/ad/generic_ad.js (easylistchina+easylist.txt: 59791) -.washingtonpost.com/wp-srv/ad/generic_ad\.js -# @@||washingtonpost.com/wp-adv/advertisers/russianow/ (easylistchina+easylist.txt: 59790) -.washingtonpost.com/wp-adv/advertisers/russianow/ -# @@||wappalyzer.com/sites/default/files/icons/$image (easylistchina+easylist.txt: 59789) -.wappalyzer.com/sites/default/files/icons/ -# @@||walmartmoneycard.com^*/shared/ad_rotater.swf (easylistchina+easylist.txt: 59788) -.walmartmoneycard.com/.*/shared/ad_rotater\.swf -# @@||wallpapersmania.com/ad/$image,~third-party (easylistchina+easylist.txt: 59787) -.wallpapersmania.com/ad/ -# @@||wahooads.com/Ads.nsf/$~third-party (easylistchina+easylist.txt: 59786) -.wahooads.com/Ads\.nsf/ -# @@||wahoha.com^$~third-party (easylistchina+easylist.txt: 59785) -.wahoha.com -# @@||vtstage.cbsinteractive.com/plugins/*_adplugin.swf (easylistchina+easylist.txt: 59782) -.vtstage.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vswebapp.com^$~third-party (easylistchina+easylist.txt: 59781) -.vswebapp.com -# @@||vombasavers.com^*.swf?clickTAG=$object,~third-party (easylistchina+easylist.txt: 59780) -.vombasavers.com/.*\.swf\?clickTAG= -# @@||vmagazine.com/web/css/ads.css (easylistchina+easylist.txt: 59779) -.vmagazine.com/web/css/ads\.css -# @@||vk.com/ads?act=$~third-party (easylistchina+easylist.txt: 59777) -.vk.com/ads\?act= -# @@||vizanime.com/ad/get_ads? (easylistchina+easylist.txt: 59776) -.vizanime.com/ad/get_ads\? -# @@||vitalitymall.co.za/images/adrotator/ (easylistchina+easylist.txt: 59775) -.vitalitymall.co.za/images/adrotator/ -# @@||vistek.ca/ads/ (easylistchina+easylist.txt: 59774) -.vistek.ca/ads/ -# @@||virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery.internads.js (easylistchina+easylist.txt: 59773) -.virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery\.internads\.js -# @@||vindicoasset.edgesuite.net/repository/campaigncreative/*/instreamad/$object-subrequest (easylistchina+easylist.txt: 59772) -.vindicoasset.edgesuite.net/repository/campaigncreative/.*/instreamad/ -# @@||villermen.com/minecraft/banner/banner.php$image (easylistchina+easylist.txt: 59771) -.villermen.com/minecraft/banner/banner\.php -# @@||vidtech.cbsinteractive.com/plugins/*_adplugin.swf (easylistchina+easylist.txt: 59770) -.vidtech.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vidspot.net/tmp/status.html?*upload=file$subdocument (easylistchina+easylist.txt: 59769) -.vidspot.net/tmp/status\.html\?.*upload=file -# @@||vidspot.net/cgi-bin/upload.cgi?upload_id=*&X-Progress-ID=*&js_on=*&utype=*&upload_type=$subdocument (easylistchina+easylist.txt: 59768) -.vidspot.net/cgi-bin/upload\.cgi\?upload_id=.*&X-Progress-ID=.*&js_on=.*&utype=.*&upload_type= -# @@||vidspot.net/builtin-$subdocument (easylistchina+easylist.txt: 59767) -.vidspot.net/builtin- -# @@||vidspot.net/blank.html|$subdocument (easylistchina+easylist.txt: 59766) -.vidspot.net/blank\.html$ -# @@||vidible.tv/stage/$media,object,other (easylistchina+easylist.txt: 59765) -.vidible.tv/stage/ -# @@||vidible.tv/prod/$media,object,other (easylistchina+easylist.txt: 59763) -.vidible.tv/prod/ -# @@||videosxml.mobileads.indiatimes.com^$object-subrequest (easylistchina+easylist.txt: 59762) -.videosxml.mobileads.indiatimes.com -# @@||video.nbcuni.com^*/inext_ad_engine/ad_engine_extension.swf (easylistchina+easylist.txt: 59758) -.video.nbcuni.com/.*/inext_ad_engine/ad_engine_extension\.swf -# @@||video.nbcuni.com^*/ad_engine_extension_nbc.swf (easylistchina+easylist.txt: 59757) -.video.nbcuni.com/.*/ad_engine_extension_nbc\.swf -# @@||video.economist.com/adfinder.jsp? (easylistchina+easylist.txt: 59756) -.video.economist.com/adfinder\.jsp\? -# @@||vidcoin.com/adserver/$subdocument,xmlhttprequest (easylistchina+easylist.txt: 59755) -.vidcoin.com/adserver/ -# @@||viamichelin.*/static/advert/sponsoring/itinerarypage/itinerarypage.js (easylistchina+easylist.txt: 59754) -.viamichelin.*./(.*/)?static/advert/sponsoring/itinerarypage/itinerarypage\.js -# @@||viamichelin.*/static/advert/afsquery/afsquery.js (easylistchina+easylist.txt: 59753) -.viamichelin.*./(.*/)?static/advert/afsquery/afsquery\.js -# @@||viamichelin.*/rentacar.js (easylistchina+easylist.txt: 59752) -.viamichelin.*./(.*/)?rentacar\.js -# @@||veetle.com/images/common/ads/ (easylistchina+easylist.txt: 59749) -.veetle.com/images/common/ads/ -# @@||vanityfair.com/ads/js/cn.dart.bun.min.js (easylistchina+easylist.txt: 59748) -.vanityfair.com/ads/js/cn\.dart\.bun\.min\.js -# @@||vancouversun.com/js/adsync/adsynclibrary.js (easylistchina+easylist.txt: 59747) -.vancouversun.com/js/adsync/adsynclibrary\.js -# @@||valueram.com/banners/ads/ (easylistchina+easylist.txt: 59746) -.valueram.com/banners/ads/ -# @@||vagazette.com/hive/images/adv_ (easylistchina+easylist.txt: 59745) -.vagazette.com/hive/images/adv_ -# @@||vad.go.com/dynamicvideoad?$object-subrequest (easylistchina+easylist.txt: 59744) -.vad.go.com/dynamicvideoad\? -# @@||vacationstarter.com/hive/images/adv_ (easylistchina+easylist.txt: 59743) -.vacationstarter.com/hive/images/adv_ -# @@||v.fwmrm.net/p/espn_live/$object-subrequest (easylistchina+easylist.txt: 59741) -.v.fwmrm.net/p/espn_live/ -# @@||v.fwmrm.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59740) -.v.fwmrm.net/crossdomain\.xml -# @@||utdallas.edu^*/banner.js (easylistchina+easylist.txt: 59736) -.utdallas.edu/.*/banner\.js -# @@||utdallas.edu/maps/images/img/$image (easylistchina+easylist.txt: 59735) -.utdallas.edu/maps/images/img/ -# @@||utdallas.edu/locator/maps/$image (easylistchina+easylist.txt: 59734) -.utdallas.edu/locator/maps/ -# @@||utarget.co.uk/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59733) -.utarget.co.uk/crossdomain\.xml -# @@||usps.com/adserver/ (easylistchina+easylist.txt: 59732) -.usps.com/adserver/ -# @@||usanetwork.com^*/usanetwork_ads.s_code.js? (easylistchina+easylist.txt: 59731) -.usanetwork.com/.*/usanetwork_ads\.s_code\.js\? -# @@||urbanog.com/banners/$image (easylistchina+easylist.txt: 59730) -.urbanog.com/banners/ -# @@||uploaded.net/affiliate/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59729) -.uploaded.net/affiliate/ -# @@||upload.wikimedia.org/wikipedia/ (easylistchina+easylist.txt: 59728) -.upload.wikimedia.org/wikipedia/ -# @@||upc-cablecom.ch^*.swf?clicktag=http$object (easylistchina+easylist.txt: 59727) -.upc-cablecom.ch/.*\.swf\?clicktag=http -# @@||undsports.com/ads2/$image (easylistchina+easylist.txt: 59726) -.undsports.com/ads2/ -# @@||ultrabrown.com/images/adheader.jpg (easylistchina+easylist.txt: 59725) -.ultrabrown.com/images/adheader\.jpg -# @@||ultimate-guitar.com/js/ug_ads.js (easylistchina+easylist.txt: 59724) -.ultimate-guitar.com/js/ug_ads\.js -# @@||ukbride.co.uk/css/*/adverts.css (easylistchina+easylist.txt: 59723) -.ukbride.co.uk/css/.*/adverts\.css -# @@||uillinois.edu/eas/ (easylistchina+easylist.txt: 59722) -.uillinois.edu/eas/ -# @@||ucaster.eu/static/scripts/adscript.js (easylistchina+easylist.txt: 59721) -.ucaster.eu/static/scripts/adscript\.js -# @@||twogag.com/comics/$image,~third-party (easylistchina+easylist.txt: 59719) -.twogag.com/comics/ -# @@||twitvid.com/mediaplayer_*.swf? (easylistchina+easylist.txt: 59718) -.twitvid.com/mediaplayer_.*\.swf\? -# @@||twinspires.com/php/$subdocument,~third-party (easylistchina+easylist.txt: 59717) -.twinspires.com/php/ -# @@||tvnz.co.nz/*/advertisement.js (easylistchina+easylist.txt: 59716) -.tvnz.co.nz/.*/advertisement\.js -# @@||tvgorge.com^*/adplayer.swf (easylistchina+easylist.txt: 59715) -.tvgorge.com/.*/adplayer\.swf -# @@||tv-kino.net/wp-content/themes/*/advertisement.js (easylistchina+easylist.txt: 59714) -.tv-kino.net/wp-content/themes/.*/advertisement\.js -# @@||tut.by/uppod/frameid406/ads1/ (easylistchina+easylist.txt: 59713) -.tut.by/uppod/frameid406/ads1/ -# @@||tudouui.com/bin/player2/*&adsourceid= (easylistchina+easylist.txt: 59706) -.tudouui.com/bin/player2/.*&adsourceid= -# @@||tubemogul.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59705) -.tubemogul.com/crossdomain\.xml -# @@||tubemogul.com/bootloader/tubemogulflowplayer.swf$object-subrequest (easylistchina+easylist.txt: 59704) -.tubemogul.com/bootloader/tubemogulflowplayer\.swf -# @@||trutv.com/includes/banners/de/video/*.ad|$object-subrequest (easylistchina+easylist.txt: 59703) -.trutv.com/includes/banners/de/video/.*\.ad$ -# @@||trustedreviews.com^*/adtech.js (easylistchina+easylist.txt: 59702) -.trustedreviews.com/.*/adtech\.js -# @@||trulia.com/modules/ad_agents_$xmlhttprequest (easylistchina+easylist.txt: 59701) -.trulia.com/modules/ad_agents_ -# @@||trifort.org/ads/$~third-party (easylistchina+easylist.txt: 59700) -.trifort.org/ads/ -# @@||trialpay.com/js/advertiser.js (easylistchina+easylist.txt: 59699) -.trialpay.com/js/advertiser\.js -# @@||tremor.nuggad.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59697) -.tremor.nuggad.net/crossdomain\.xml -# @@||travidia.com/ss-page/ (easylistchina+easylist.txt: 59696) -.travidia.com/ss-page/ -# @@||travidia.com/fsi/page.aspx?$subdocument (easylistchina+easylist.txt: 59695) -.travidia.com/fsi/page\.aspx\? -# @@||traumagame.com/trauma_data/ads/ad2.jpg (easylistchina+easylist.txt: 59691) -.traumagame.com/trauma_data/ads/ad2\.jpg -# @@||translate.google.com/translate/static/*-ads/ (easylistchina+easylist.txt: 59690) -.translate.google.com/translate/static/.*-ads/ -# @@||translate.google.*/translate_*&q=$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59689) -.translate.google.*./(.*/)?translate_.*&q= -# @@||traktorpool.de^*/advert. (easylistchina+easylist.txt: 59688) -.traktorpool.de/.*/advert\. -# @@||traktorpool.de/scripts/advert/ (easylistchina+easylist.txt: 59687) -.traktorpool.de/scripts/advert/ -# @@||tradecarview.com/material/housead/$image (easylistchina+easylist.txt: 59684) -.tradecarview.com/material/housead/ -# @@||trade-a-plane.com/AdBox/js/jquery.TAP_AdBox.js (easylistchina+easylist.txt: 59683) -.trade-a-plane.com/AdBox/js/jquery\.TAP_AdBox\.js -# @@||toshiba.*^banner_id^$subdocument (easylistchina+easylist.txt: 59681) -.toshiba.*./(.*[^\w%.-])?banner_id[^\w%.-] -# @@||torontosun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59680) -.torontosun.com/assets/js/dfp\.js\? -# @@||topusajobs.com/banners/ (easylistchina+easylist.txt: 59679) -.topusajobs.com/banners/ -# @@||topgear.com^*/ads.min.js (easylistchina+easylist.txt: 59678) -.topgear.com/.*/ads\.min\.js -# @@||toongoggles.com/getads?$xmlhttprequest (easylistchina+easylist.txt: 59677) -.toongoggles.com/getads\? -# @@||toongames.com/advertising/toon-google-preloader.swf$object (easylistchina+easylist.txt: 59676) -.toongames.com/advertising/toon-google-preloader\.swf -# @@||tooltrucks.com/banners/$image,~third-party (easylistchina+easylist.txt: 59675) -.tooltrucks.com/banners/ -# @@||tooltrucks.com/ads/$image,~third-party (easylistchina+easylist.txt: 59674) -.tooltrucks.com/ads/ -# @@||tntexpress.com.au^*/marketing/banners/ (easylistchina+easylist.txt: 59671) -.tntexpress.com.au/.*/marketing/banners/ -# @@||tnol.com/adimages/digitaledition/$object-subrequest (easylistchina+easylist.txt: 59670) -.tnol.com/adimages/digitaledition/ -# @@||tm.tradetracker.net/tag?$script (easylistchina+easylist.txt: 59669) -.tm.tradetracker.net/tag\? -# @@||tkcarsites.com/soba/bannersservice (easylistchina+easylist.txt: 59668) -.tkcarsites.com/soba/bannersservice -# @@||tinysubversions.com/clickbait/adjs.json (easylistchina+easylist.txt: 59667) -.tinysubversions.com/clickbait/adjs\.json -# @@||tinbuadserv.com/v3/serve.php?$script (easylistchina+easylist.txt: 59666) -.tinbuadserv.com/v3/serve\.php\? -# @@||tinbuadserv.com/js/integrate/ads_common.js (easylistchina+easylist.txt: 59665) -.tinbuadserv.com/js/integrate/ads_common\.js -# @@||timesofmalta.com/videoads/*preroll.flv$object-subrequest (easylistchina+easylist.txt: 59664) -.timesofmalta.com/videoads/.*preroll\.flv -# @@||timeout.com/images/ads/weather/ (easylistchina+easylist.txt: 59663) -.timeout.com/images/ads/weather/ -# @@||timeinc.net^*/tii_ads.js (easylistchina+easylist.txt: 59662) -.timeinc.net/.*/tii_ads\.js -# @@||tiads.timeinc.net/ads/tgx.js (easylistchina+easylist.txt: 59658) -.tiads.timeinc.net/ads/tgx\.js -# @@||thunderheadeng.com/wp-content/uploads/*300x250 (easylistchina+easylist.txt: 59657) -.thunderheadeng.com/wp-content/uploads/.*300x250 -# @@||thrifty.co.uk/bannerads/ (easylistchina+easylist.txt: 59655) -.thrifty.co.uk/bannerads/ -# @@||thomsonlocal.com/js/adsense-min.js (easylistchina+easylist.txt: 59654) -.thomsonlocal.com/js/adsense-min\.js -# @@||thomann.de/thumb/*/pics/adv/adv_image_ (easylistchina+easylist.txt: 59653) -.thomann.de/thumb/.*/pics/adv/adv_image_ -# @@||theweathernetwork.com/tpl/web/adtech/$xmlhttprequest (easylistchina+easylist.txt: 59652) -.theweathernetwork.com/tpl/web/adtech/ -# @@||theweathernetwork.com/js/adrefresh.js (easylistchina+easylist.txt: 59651) -.theweathernetwork.com/js/adrefresh\.js -# @@||thetvdb.com/banners/ (easylistchina+easylist.txt: 59650) -.thetvdb.com/banners/ -# @@||theory-test.co.uk/css/ads.css (easylistchina+easylist.txt: 59647) -.theory-test.co.uk/css/ads\.css -# @@||thenewsroom.com^*/advertisement.xml$object-subrequest (easylistchina+easylist.txt: 59646) -.thenewsroom.com/.*/advertisement\.xml -# @@||thenewage.co.za/classifieds/images2/postad.gif (easylistchina+easylist.txt: 59645) -.thenewage.co.za/classifieds/images2/postad\.gif -# @@||theloop.com.au/js/simplejob_ad_content.js? (easylistchina+easylist.txt: 59643) -.theloop.com.au/js/simplejob_ad_content\.js\? -# @@||thekraftgroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59642) -.thekraftgroup.com/crossdomain\.xml -# @@||thefrisky.com/js/adspaces.min.js (easylistchina+easylist.txt: 59641) -.thefrisky.com/js/adspaces\.min\.js -# @@||thefourthperiod.com/ads/tfplogo_ (easylistchina+easylist.txt: 59640) -.thefourthperiod.com/ads/tfplogo_ -# @@||theepochtimes.com^*/article-ads.js? (easylistchina+easylist.txt: 59639) -.theepochtimes.com/.*/article-ads\.js\? -# @@||theepochtimes.com/ads/videos-right.html?$subdocument (easylistchina+easylist.txt: 59638) -.theepochtimes.com/ads/videos-right\.html\? -# @@||theepochtimes.com/ads/videos-below.htm?$subdocument (easylistchina+easylist.txt: 59637) -.theepochtimes.com/ads/videos-below\.htm\? -# @@||theepochtimes.com/ads/video/inarticle-video.html$subdocument (easylistchina+easylist.txt: 59636) -.theepochtimes.com/ads/video/inarticle-video\.html -# @@||thedailygreen.com/ams/page-ads.js? (easylistchina+easylist.txt: 59634) -.thedailygreen.com/ams/page-ads\.js\? -# @@||theatlantic.com/widget/$xmlhttprequest (easylistchina+easylist.txt: 59633) -.theatlantic.com/widget/ -# @@||texasstudentmedia.com/advertise/ (easylistchina+easylist.txt: 59632) -.texasstudentmedia.com/advertise/ -# @@||tetrisfriends.com/ads/google_dfp_video_ad.html (easylistchina+easylist.txt: 59631) -.tetrisfriends.com/ads/google_dfp_video_ad\.html -# @@||terraristik.com^*/ad_pics/$~third-party (easylistchina+easylist.txt: 59630) -.terraristik.com/.*/ad_pics/ -# @@||terraristik.com^*&ad_type=$~third-party (easylistchina+easylist.txt: 59629) -.terraristik.com/.*&ad_type= -# @@||temple.edu/advertising/$~third-party (easylistchina+easylist.txt: 59628) -.temple.edu/advertising/ -# @@||telegraphcouk.skimlinks.com/api/telegraph.skimlinks.js (easylistchina+easylist.txt: 59627) -.telegraphcouk.skimlinks.com/api/telegraph\.skimlinks\.js -# @@||teknikor.com/content/wp-content/themes/*-adv.jpg (easylistchina+easylist.txt: 59626) -.teknikor.com/content/wp-content/themes/.*-adv\.jpg -# @@||tbns.com.au/shops/images/ads/$~third-party (easylistchina+easylist.txt: 59622) -.tbns.com.au/shops/images/ads/ -# @@||talkrtv.com/ad/channel.php?$subdocument (easylistchina+easylist.txt: 59619) -.talkrtv.com/ad/channel\.php\? -# @@||talkgold.com/bans/rss.png (easylistchina+easylist.txt: 59618) -.talkgold.com/bans/rss\.png -# @@||take40.com/common/javascript/ads.js (easylistchina+easylist.txt: 59617) -.take40.com/common/javascript/ads\.js -# @@||tacdn.com^*_popunder_$script,stylesheet (easylistchina+easylist.txt: 59615) -.tacdn.com/.*_popunder_ -# @@||syracuse.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59614) -.syracuse.com/static/common/js/ads/ads\.js -# @@||syn.5min.com/handlers/SenseHandler.ashx?*&adUnit=$script (easylistchina+easylist.txt: 59612) -.syn.5min.com/handlers/SenseHandler\.ashx\?.*&adUnit= -# @@||swordfox.co.nz^*/advertising/$~third-party (easylistchina+easylist.txt: 59611) -.swordfox.co.nz/.*/advertising/ -# @@||support.dlink.com/Scripts/custom/pop.js (easylistchina+easylist.txt: 59609) -.support.dlink.com/Scripts/custom/pop\.js -# @@||supersonicads.com/delivery/singleBanner.php?*&bannerId$subdocument (easylistchina+easylist.txt: 59608) -.supersonicads.com/delivery/singleBanner\.php\?.*&bannerId -# @@||supersonicads.com/api/v1/trackCommission.php*password=$image (easylistchina+easylist.txt: 59607) -.supersonicads.com/api/v1/trackCommission\.php.*password= -# @@||supersonicads.com/api/rest/funds/*/advertisers/$~third-party (easylistchina+easylist.txt: 59606) -.supersonicads.com/api/rest/funds/.*/advertisers/ -# @@||superfundo.org/advertisement.js (easylistchina+easylist.txt: 59605) -.superfundo.org/advertisement\.js -# @@||supercartoons.net/ad-preroll.html (easylistchina+easylist.txt: 59604) -.supercartoons.net/ad-preroll\.html -# @@||summitracing.com/global/images/bannerads/ (easylistchina+easylist.txt: 59603) -.summitracing.com/global/images/bannerads/ -# @@||subscribe.teenvogue.com/ams/page-ads.js (easylistchina+easylist.txt: 59601) -.subscribe.teenvogue.com/ams/page-ads\.js -# @@||subscribe.newyorker.com/ams/page-ads.js (easylistchina+easylist.txt: 59600) -.subscribe.newyorker.com/ams/page-ads\.js -# @@||style.com/images/*.doubleclick$object (easylistchina+easylist.txt: 59599) -.style.com/images/.*\.doubleclick -# @@||style.com/flashxml/*.doubleclick$object (easylistchina+easylist.txt: 59598) -.style.com/flashxml/.*\.doubleclick -# @@||streamlive.to/ads/$object,script (easylistchina+easylist.txt: 59597) -.streamlive.to/ads/ -# @@||streaming.gmgradio.com/adverts/*.mp3$object-subrequest (easylistchina+easylist.txt: 59596) -.streaming.gmgradio.com/adverts/.*\.mp3 -# @@||stickam.com/css/ver1/asset/sharelayout2col_ad300x250.css (easylistchina+easylist.txt: 59595) -.stickam.com/css/ver1/asset/sharelayout2col_ad300x250\.css -# @@||stclassifieds.sg/postad/ (easylistchina+easylist.txt: 59594) -.stclassifieds.sg/postad/ -# @@||stclassifieds.sg/images/ads/$~third-party (easylistchina+easylist.txt: 59593) -.stclassifieds.sg/images/ads/ -# @@||static.cricinfo.com^*/ADVERTS/*/liveScores.swf$object (easylistchina+easylist.txt: 59591) -.static.cricinfo.com/.*/ADVERTS/.*/liveScores\.swf -# @@||static.ak.fbcdn.net^*/ads/$script (easylistchina+easylist.txt: 59589) -.static.ak.fbcdn.net/.*/ads/ -# @@||statedesign.com/advertisers/$image,~third-party (easylistchina+easylist.txt: 59587) -.statedesign.com/advertisers/ -# @@||state.co.us/caic/pub_bc_avo.php?zone_id=$subdocument (easylistchina+easylist.txt: 59586) -.state.co.us/caic/pub_bc_avo\.php\?zone_id= -# @@||startxchange.com/textad.php?$xmlhttprequest (easylistchina+easylist.txt: 59585) -.startxchange.com/textad\.php\? -# @@||st.com^*/banners.js (easylistchina+easylist.txt: 59584) -.st.com/.*/banners\.js -# @@||ssl-images-amazon.com^*/popover/popover-$script (easylistchina+easylist.txt: 59583) -.ssl-images-amazon.com/.*/popover/popover- -# @@||sprouts.com/ad/$image,subdocument (easylistchina+easylist.txt: 59580) -.sprouts.com/ad/ -# @@||sprint.com^*/adservice/$xmlhttprequest (easylistchina+easylist.txt: 59579) -.sprint.com/.*/adservice/ -# @@||springbokradio.com/sitebuilder/images/ads- (easylistchina+easylist.txt: 59578) -.springbokradio.com/sitebuilder/images/ads- -# @@||springbokradio.com/images/ads- (easylistchina+easylist.txt: 59577) -.springbokradio.com/images/ads- -# @@||springboardplatform.com/storage/lightbox_code/static/companion_ads.js (easylistchina+easylist.txt: 59576) -.springboardplatform.com/storage/lightbox_code/static/companion_ads\.js -# @@||spotxchange.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59571) -.spotxchange.com/crossdomain\.xml -# @@||spotrails.com^*/flowplayeradplayerplugin.swf (easylistchina+easylist.txt: 59569) -.spotrails.com/.*/flowplayeradplayerplugin\.swf -# @@||spotrails.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59568) -.spotrails.com/crossdomain\.xml -# @@||sploder.com/prerollad.swf?s=$object-subrequest (easylistchina+easylist.txt: 59565) -.sploder.com/prerollad\.swf\?s= -# @@||spendino.de/admanager/ (easylistchina+easylist.txt: 59564) -.spendino.de/admanager/ -# @@||spectrum.ieee.org/assets/js/masonry-ads-right.min.js (easylistchina+easylist.txt: 59563) -.spectrum.ieee.org/assets/js/masonry-ads-right\.min\.js -# @@||southwest.com^*/homepage/ads/ (easylistchina+easylist.txt: 59562) -.southwest.com/.*/homepage/ads/ -# @@||southwest.com/assets/images/ads/ad_select_flight_ (easylistchina+easylist.txt: 59561) -.southwest.com/assets/images/ads/ad_select_flight_ -# @@||sonypictures.com^*/admedia/ (easylistchina+easylist.txt: 59560) -.sonypictures.com/.*/admedia/ -# @@||sonypictures.com/global/images/ads/300x250/ad300x250.json$xmlhttprequest (easylistchina+easylist.txt: 59559) -.sonypictures.com/global/images/ads/300x250/ad300x250\.json -# @@||sonicstate.com/video/hd/hdconfig-geo.cfm?$object-subrequest (easylistchina+easylist.txt: 59558) -.sonicstate.com/video/hd/hdconfig-geo\.cfm\? -# @@||songza.com/static/*/songza/ads/iframe.js (easylistchina+easylist.txt: 59557) -.songza.com/static/.*/songza/ads/iframe\.js -# @@||songza.com/advertising/top/ (easylistchina+easylist.txt: 59556) -.songza.com/advertising/top/ -# @@||somewheresouth.net/banner/banner.php$image (easylistchina+easylist.txt: 59555) -.somewheresouth.net/banner/banner\.php -# @@||somethingsexyplanet.com/image/adzones/ (easylistchina+easylist.txt: 59554) -.somethingsexyplanet.com/image/adzones/ -# @@||softwarepromotions.com/images/google-adwords-professional.gif (easylistchina+easylist.txt: 59553) -.softwarepromotions.com/images/google-adwords-professional\.gif -# @@||softwarepromotions.com/adwords/$~third-party (easylistchina+easylist.txt: 59552) -.softwarepromotions.com/adwords/ -# @@||socialblogsitewebdesign.com^*/advertising_conversion_images/ (easylistchina+easylist.txt: 59551) -.socialblogsitewebdesign.com/.*/advertising_conversion_images/ -# @@||smmirror.com^*/getads.php (easylistchina+easylist.txt: 59550) -.smmirror.com/.*/getads\.php -# @@||smctemple.wpengine.com/advertising/$~third-party (easylistchina+easylist.txt: 59547) -.smctemple.wpengine.com/advertising/ -# @@||slowblog.com/ad.js (easylistchina+easylist.txt: 59543) -.slowblog.com/ad\.js -# @@||slotsheaven.com/banners/$~third-party (easylistchina+easylist.txt: 59542) -.slotsheaven.com/banners/ -# @@||skymediator.com/ads/*/skymediator.php?$subdocument (easylistchina+easylist.txt: 59540) -.skymediator.com/ads/.*/skymediator\.php\? -# @@||sjsuspartans.com/ads2/$image (easylistchina+easylist.txt: 59539) -.sjsuspartans.com/ads2/ -# @@||site-jump.com/banners/ (easylistchina+easylist.txt: 59538) -.site-jump.com/banners/ -# @@||sillyvamp.com/ads/Donate.png (easylistchina+easylist.txt: 59537) -.sillyvamp.com/ads/Donate\.png -# @@||silive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59536) -.silive.com/static/common/js/ads/ads\.js -# @@||sihanoukvilleonline.com/banners/sologo.png (easylistchina+easylist.txt: 59535) -.sihanoukvilleonline.com/banners/sologo\.png -# @@||signin.verizon.com^*/affiliate/$subdocument,xmlhttprequest (easylistchina+easylist.txt: 59534) -.signin.verizon.com/.*/affiliate/ -# @@||sify.com/news/postcomments.php?*468x60.html (easylistchina+easylist.txt: 59533) -.sify.com/news/postcomments\.php\?.*468x60\.html -# @@||siamautologistics.com/ads/$image,~third-party (easylistchina+easylist.txt: 59532) -.siamautologistics.com/ads/ -# @@||shelleytheatre.co.uk/filmimages/banners/160 (easylistchina+easylist.txt: 59530) -.shelleytheatre.co.uk/filmimages/banners/160 -# @@||shawfloors.com/adx/$image,~third-party (easylistchina+easylist.txt: 59529) -.shawfloors.com/adx/ -# @@||sharinspireds.co.nf/Images/Ads/$~third-party (easylistchina+easylist.txt: 59528) -.sharinspireds.co.nf/Images/Ads/ -# @@||share.pingdom.com/banners/$image (easylistchina+easylist.txt: 59526) -.share.pingdom.com/banners/ -# @@||shackvideo.com/playlist_xml.x? (easylistchina+easylist.txt: 59525) -.shackvideo.com/playlist_xml\.x\? -# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easylistchina+easylist.txt: 59523) -.sh.st/bundles/smeadvertisement/img/track\.gif\? -# @@||seventeen.com/ams/page-ads.js (easylistchina+easylist.txt: 59521) -.seventeen.com/ams/page-ads\.js -# @@||serviceexpress.net/js/pop.js (easylistchina+easylist.txt: 59519) -.serviceexpress.net/js/pop\.js -# @@||server.cpmstar.com/adviewas3.swf?contentspotid=$object-subrequest (easylistchina+easylist.txt: 59517) -.server.cpmstar.com/adviewas3\.swf\?contentspotid= -# @@||serve.vdopia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59514) -.serve.vdopia.com/crossdomain\.xml -# @@||selsin.net/imprint-$image (easylistchina+easylist.txt: 59513) -.selsin.net/imprint- -# @@||sekonda.co.uk/advert_images/ (easylistchina+easylist.txt: 59512) -.sekonda.co.uk/advert_images/ -# @@||securenetsystems.net/scripts/*/sdfy_scripts_advertising.js (easylistchina+easylist.txt: 59510) -.securenetsystems.net/scripts/.*/sdfy_scripts_advertising\.js -# @@||securenetsystems.net/advertising/ad_campaign_get.cfm?$xmlhttprequest (easylistchina+easylist.txt: 59509) -.securenetsystems.net/advertising/ad_campaign_get\.cfm\? -# @@||secondlife.com/assets/*_AD3.jpg (easylistchina+easylist.txt: 59508) -.secondlife.com/assets/.*_AD3\.jpg -# @@||sec-ads.bridgetrack.com/ads_img/ (easylistchina+easylist.txt: 59507) -.sec-ads.bridgetrack.com/ads_img/ -# @@||search.yahoo.com^$generichide (easylistchina+easylist.txt: 59506) -.search.yahoo.com -# @@||search.comcast.net/static.php?$stylesheet (easylistchina+easylist.txt: 59505) -.search.comcast.net/static\.php\? -# @@||sdltutorials.com/Data/Ads/AppStateBanner.jpg (easylistchina+easylist.txt: 59504) -.sdltutorials.com/Data/Ads/AppStateBanner\.jpg -# @@||sdelkino.com/images/ad/$image (easylistchina+easylist.txt: 59503) -.sdelkino.com/images/ad/ -# @@||sdcdn.com/cms/ads/piczo/$image (easylistchina+easylist.txt: 59502) -.sdcdn.com/cms/ads/piczo/ -# @@||scutt.eu/ads/$~third-party (easylistchina+easylist.txt: 59501) -.scutt.eu/ads/ -# @@||scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors.xml$object-subrequest (easylistchina+easylist.txt: 59500) -.scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors\.xml -# @@||scanscout.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59494) -.scanscout.com/crossdomain\.xml -# @@||save.ca/img/ads/$~third-party (easylistchina+easylist.txt: 59492) -.save.ca/img/ads/ -# @@||sascdn.com^*/jwplayerAdPlugin.swf$object-subrequest (easylistchina+easylist.txt: 59491) -.sascdn.com/.*/jwplayerAdPlugin\.swf -# @@||sascdn.com^*/jwplayer-plugin.swf?$object-subrequest (easylistchina+easylist.txt: 59490) -.sascdn.com/.*/jwplayer-plugin\.swf\? -# @@||sascdn.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59489) -.sascdn.com/crossdomain\.xml -# @@||salon.com/content/plugins/salon-ad-controller/ad-utilities.js (easylistchina+easylist.txt: 59488) -.salon.com/content/plugins/salon-ad-controller/ad-utilities\.js -# @@||salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery.jshowoff.min.js? (easylistchina+easylist.txt: 59487) -.salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery\.jshowoff\.min\.js\? -# @@||sales.liveperson.net/visitor/addons/deploy2.asp?*&d_id=adcenter&$script (easylistchina+easylist.txt: 59486) -.sales.liveperson.net/visitor/addons/deploy2\.asp\?.*&d_id=adcenter& -# @@||sal.co.th/ads/$image,~third-party (easylistchina+easylist.txt: 59485) -.sal.co.th/ads/ -# @@||sabotage-films.com/ads/$~third-party (easylistchina+easylist.txt: 59484) -.sabotage-films.com/ads/ -# @@||ryuutama.com/ads/ads.php?get=$xmlhttprequest (easylistchina+easylist.txt: 59480) -.ryuutama.com/ads/ads\.php\?get= -# @@||russellrooftiles.co.uk/images/rrt_envirotile_home_advert.png (easylistchina+easylist.txt: 59479) -.russellrooftiles.co.uk/images/rrt_envirotile_home_advert\.png -# @@||rthk.org.hk/assets/flash/rthk/*/ad_banner$object (easylistchina+easylist.txt: 59478) -.rthk.org.hk/assets/flash/rthk/.*/ad_banner -# @@||rthk.hk/assets/flash/rthk/*/ad_banner$object (easylistchina+easylist.txt: 59477) -.rthk.hk/assets/flash/rthk/.*/ad_banner -# @@||rsvlts.com/wp-content/uploads/*-advertisment- (easylistchina+easylist.txt: 59473) -.rsvlts.com/wp-content/uploads/.*-advertisment- -# @@||rotate.infowars.com/www/delivery/spcjs.php (easylistchina+easylist.txt: 59468) -.rotate.infowars.com/www/delivery/spcjs\.php -# @@||rotate.infowars.com/www/delivery/fl.js (easylistchina+easylist.txt: 59467) -.rotate.infowars.com/www/delivery/fl\.js -# @@||rosauers.com/locations/ads.html (easylistchina+easylist.txt: 59466) -.rosauers.com/locations/ads\.html -# @@||rmncdn.com/ads/mini-$image (easylistchina+easylist.txt: 59463) -.rmncdn.com/ads/mini- -# @@||rewaz.org/ads/adframe2.js (easylistchina+easylist.txt: 59462) -.rewaz.org/ads/adframe2\.js -# @@||revit.eu/static/uploads/images/themes/banners/small-banner-$object-subrequest (easylistchina+easylist.txt: 59458) -.revit.eu/static/uploads/images/themes/banners/small-banner- -# @@||replgroup.com/banners/$image,~third-party (easylistchina+easylist.txt: 59453) -.replgroup.com/banners/ -# @@||remo-xp.com/wp-content/themes/adsense-boqpod/style.css (easylistchina+easylist.txt: 59452) -.remo-xp.com/wp-content/themes/adsense-boqpod/style\.css -# @@||refline.ch^*/advertisement.css (easylistchina+easylist.txt: 59451) -.refline.ch/.*/advertisement\.css -# @@||redsharknews.com/components/com_adagency/includes/$script (easylistchina+easylist.txt: 59450) -.redsharknews.com/components/com_adagency/includes/ -# @@||redbookmag.com/ams/page-ads.js? (easylistchina+easylist.txt: 59449) -.redbookmag.com/ams/page-ads\.js\? -# @@||realvnc.com/assets/img/ad-bg.jpg (easylistchina+easylist.txt: 59448) -.realvnc.com/assets/img/ad-bg\.jpg -# @@||realmedia.channel4.com/realmedia/ads/adstream_sx.ads/channel4.newcu/$object-subrequest,~third-party (easylistchina+easylist.txt: 59447) -.realmedia.channel4.com/realmedia/ads/adstream_sx\.ads/channel4\.newcu/ -# @@||realbeauty.com/ams/page-ads.js? (easylistchina+easylist.txt: 59446) -.realbeauty.com/ams/page-ads\.js\? -# @@||readwrite.com/files/styles/$image (easylistchina+easylist.txt: 59445) -.readwrite.com/files/styles/ -# @@||rcards.net/wp-content/uploads/useful_banner_manager_banners/ (easylistchina+easylist.txt: 59442) -.rcards.net/wp-content/uploads/useful_banner_manager_banners/ -# @@||rcards.net/wp-content/plugins/useful-banner-manager/ (easylistchina+easylist.txt: 59441) -.rcards.net/wp-content/plugins/useful-banner-manager/ -# @@||rapoo.com/images/ad/$image,~third-party (easylistchina+easylist.txt: 59439) -.rapoo.com/images/ad/ -# @@||rainbowdressup.com/ads/adsnewvars.swf (easylistchina+easylist.txt: 59438) -.rainbowdressup.com/ads/adsnewvars\.swf -# @@||radiotimes.com/rt-service/resource/jspack? (easylistchina+easylist.txt: 59437) -.radiotimes.com/rt-service/resource/jspack\? -# @@||radioguide.fm/minify/?*/Advertising/webroot/css/advertising.css (easylistchina+easylist.txt: 59436) -.radioguide.fm/minify/\?.*/Advertising/webroot/css/advertising\.css -# @@||rad.org.uk/images/adverts/$image,~third-party (easylistchina+easylist.txt: 59435) -.rad.org.uk/images/adverts/ -# @@||r2games.com/bannerad/$image,~third-party (easylistchina+easylist.txt: 59430) -.r2games.com/bannerad/ -# @@||quit.org.au/images/images/ad/ (easylistchina+easylist.txt: 59428) -.quit.org.au/images/images/ad/ -# @@||q2servers.com/pop.js (easylistchina+easylist.txt: 59425) -.q2servers.com/pop\.js -# @@||puzzler.com/commercials/*.htm$subdocument (easylistchina+easylist.txt: 59424) -.puzzler.com/commercials/.*\.htm -# @@||pursuit.co.za/css/globalAd.css (easylistchina+easylist.txt: 59423) -.pursuit.co.za/css/globalAd\.css -# @@||pumpkinpatchkids.com/www/delivery/ajs.php?$script (easylistchina+easylist.txt: 59422) -.pumpkinpatchkids.com/www/delivery/ajs\.php\? -# @@||ptgrey.com/_PGR_Content/Advertising/$image,~third-party (easylistchina+easylist.txt: 59419) -.ptgrey.com/_PGR_Content/Advertising/ -# @@||pshared.5min.com/Scripts/ThumbSeed2.js?*&adUnit=$script (easylistchina+easylist.txt: 59418) -.pshared.5min.com/Scripts/ThumbSeed2\.js\?.*&adUnit= -# @@||proxyserver.asia/themes/advertising-$image,stylesheet (easylistchina+easylist.txt: 59417) -.proxyserver.asia/themes/advertising- -# @@||proprofs.com/quiz-school/js/modernizr_ads.js (easylistchina+easylist.txt: 59416) -.proprofs.com/quiz-school/js/modernizr_ads\.js -# @@||promophot.com/photo/ad/$image (easylistchina+easylist.txt: 59415) -.promophot.com/photo/ad/ -# @@||promo.campaigndog.com^$third-party (easylistchina+easylist.txt: 59411) -.promo.campaigndog.com -# @@||promo.acronis.com^*?base=www.acronis.$subdocument (easylistchina+easylist.txt: 59410) -.promo.acronis.com/.*\?base=www\.acronis\. -# @@||productioncars.com/pics/menu/ads2.gif (easylistchina+easylist.txt: 59409) -.productioncars.com/pics/menu/ads2\.gif -# @@||productioncars.com/pics/menu/ads.gif (easylistchina+easylist.txt: 59408) -.productioncars.com/pics/menu/ads\.gif -# @@||procato.com/_pub/advertisement.js (easylistchina+easylist.txt: 59407) -.procato.com/_pub/advertisement\.js -# @@||procato.com/_pub/ads.php?u=$xmlhttprequest (easylistchina+easylist.txt: 59406) -.procato.com/_pub/ads\.php\?u= -# @@||prism.opticsinfobase.org/Scripts/ADS/Details.js (easylistchina+easylist.txt: 59405) -.prism.opticsinfobase.org/Scripts/ADS/Details\.js -# @@||pressdisplay.com/advertising/showimage.aspx? (easylistchina+easylist.txt: 59404) -.pressdisplay.com/advertising/showimage\.aspx\? -# @@||powercolor.com/image/ad/$~third-party (easylistchina+easylist.txt: 59403) -.powercolor.com/image/ad/ -# @@||popcap.com/sites/all/modules/popcap/js/popcap_openx.js? (easylistchina+easylist.txt: 59400) -.popcap.com/sites/all/modules/popcap/js/popcap_openx\.js\? -# @@||popad.co^$~third-party (easylistchina+easylist.txt: 59399) -.popad.co -# @@||pop.advecs.com^$~third-party (easylistchina+easylist.txt: 59398) -.pop.advecs.com -# @@||politico.com/js/magazine/ads.js (easylistchina+easylist.txt: 59396) -.politico.com/js/magazine/ads\.js -# @@||plugcomputer.org^*/ad1.jpg (easylistchina+easylist.txt: 59394) -.plugcomputer.org/.*/ad1\.jpg -# @@||playintraffik.com/advertising/ (easylistchina+easylist.txt: 59393) -.playintraffik.com/advertising/ -# @@||player.vioapi.com/ads/flash/vioplayer.swf (easylistchina+easylist.txt: 59392) -.player.vioapi.com/ads/flash/vioplayer\.swf -# @@||player.streamtheworld.com/liveplayer.php?*adstype= (easylistchina+easylist.txt: 59389) -.player.streamtheworld.com/liveplayer\.php\?.*adstype= -# @@||player.onescreen.net/*/MediaPlayer.swf?ads=$object-subrequest (easylistchina+easylist.txt: 59388) -.player.onescreen.net/.*/MediaPlayer\.swf\?ads= -# @@||player.goviral-content.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59387) -.player.goviral-content.com/crossdomain\.xml -# @@||player.animelicio.us/adimages/$subdocument (easylistchina+easylist.txt: 59382) -.player.animelicio.us/adimages/ -# @@||planetrecruit.com/ad/$image (easylistchina+easylist.txt: 59381) -.planetrecruit.com/ad/ -# @@||planetoddity.com/wp-content/*-ads-$image (easylistchina+easylist.txt: 59380) -.planetoddity.com/wp-content/.*-ads- -# @@||planetaxel.com^*.php?ad=$stylesheet (easylistchina+easylist.txt: 59379) -.planetaxel.com/.*\.php\?ad= -# @@||pitchfork.com/desktop/js/pitchfork/ads/interstitial.js (easylistchina+easylist.txt: 59378) -.pitchfork.com/desktop/js/pitchfork/ads/interstitial\.js -# @@||pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218.gif (easylistchina+easylist.txt: 59377) -.pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218\.gif -# @@||pinkbike.org^*.swf?ad=0&$object (easylistchina+easylist.txt: 59376) -.pinkbike.org/.*\.swf\?ad=0& -# @@||ping.indieclicktv.com/www/delivery/ajs.php?zoneid$object-subrequest (easylistchina+easylist.txt: 59375) -.ping.indieclicktv.com/www/delivery/ajs\.php\?zoneid -# @@||piercesnorthsidemarket.com/ads/$image (easylistchina+easylist.txt: 59374) -.piercesnorthsidemarket.com/ads/ -# @@||picplzthumbs.com/upload/img/ad/ (easylistchina+easylist.txt: 59373) -.picplzthumbs.com/upload/img/ad/ -# @@||photofunia.com/effects/$~third-party (easylistchina+easylist.txt: 59371) -.photofunia.com/effects/ -# @@||photobucket.com/albums/ad$image (easylistchina+easylist.txt: 59369) -.photobucket.com/albums/ad -# @@||photo.ekathimerini.com/ads/extra/$image,~third-party (easylistchina+easylist.txt: 59368) -.photo.ekathimerini.com/ads/extra/ -# @@||phonealchemist.com/api/affiliation/$~third-party (easylistchina+easylist.txt: 59367) -.phonealchemist.com/api/affiliation/ -# @@||phl.org/Advertising/$image,~third-party (easylistchina+easylist.txt: 59365) -.phl.org/Advertising/ -# @@||pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad.min.js$script (easylistchina+easylist.txt: 59364) -.pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad\.min\.js -# @@||pets4homes.co.uk^*/advert.css (easylistchina+easylist.txt: 59363) -.pets4homes.co.uk/.*/advert\.css -# @@||pets4homes.co.uk/*/advert.js (easylistchina+easylist.txt: 59362) -.pets4homes.co.uk/.*/advert\.js -# @@||petra-fischer.com/tl_files/pics/*/ADVERTISING/$~third-party (easylistchina+easylist.txt: 59361) -.petra-fischer.com/tl_files/pics/.*/ADVERTISING/ -# @@||petcarerx.com/banners/ (easylistchina+easylist.txt: 59360) -.petcarerx.com/banners/ -# @@||petapixel.com/ads/$~third-party (easylistchina+easylist.txt: 59359) -.petapixel.com/ads/ -# @@||perezhilton.com^*-without-ads-$object,object-subrequest,subdocument (easylistchina+easylist.txt: 59358) -.perezhilton.com/.*-without-ads- -# @@||perezhilton.com/included_ads/ (easylistchina+easylist.txt: 59357) -.perezhilton.com/included_ads/ -# @@||perbang.dk/_pub/advertisement.js? (easylistchina+easylist.txt: 59356) -.perbang.dk/_pub/advertisement\.js\? -# @@||perbang.dk/_pub/ads.php?u=$xmlhttprequest (easylistchina+easylist.txt: 59355) -.perbang.dk/_pub/ads\.php\?u= -# @@||pennlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59354) -.pennlive.com/static/common/js/ads/ads\.js -# @@||pch.com^*/videoad.$stylesheet (easylistchina+easylist.txt: 59353) -.pch.com/.*/videoad\. -# @@||pch.com/iframe-ad/?adType=$subdocument (easylistchina+easylist.txt: 59352) -.pch.com/iframe-ad/\?adType= -# @@||pbs.org^*/sponsors/flvvideoplayer.swf (easylistchina+easylist.txt: 59351) -.pbs.org/.*/sponsors/flvvideoplayer\.swf -# @@||payload*.cargocollective.com^$image (easylistchina+easylist.txt: 59350) -.payload*./.*\.cargocollective\.com[^\w%.-] -.payload*.cargocollective.com -# @@||patient-education.com/banners/$~third-party (easylistchina+easylist.txt: 59348) -.patient-education.com/banners/ -# @@||partners.thefilter.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59346) -.partners.thefilter.com/crossdomain\.xml -# @@||pantherssl.com/banners/ (easylistchina+easylist.txt: 59339) -.pantherssl.com/banners/ -# @@||pandasecurity.com/banners/$image,~third-party (easylistchina+easylist.txt: 59338) -.pandasecurity.com/banners/ -# @@||pagesinventory.com/_data/flags/ad.gif (easylistchina+easylist.txt: 59337) -.pagesinventory.com/_data/flags/ad\.gif -# @@||pagead2.googlesyndication.com/pagead/static?format=in_video_ads&$elemhide,subdocument (easylistchina+easylist.txt: 59336) -.pagead2.googlesyndication.com/pagead/static\?format=in_video_ads& -# @@||pacogames.com/ad/ima3_preloader_$object (easylistchina+easylist.txt: 59326) -.pacogames.com/ad/ima3_preloader_ -# @@||pachoumis.com/advertising-$~third-party (easylistchina+easylist.txt: 59325) -.pachoumis.com/advertising- -# @@||pachanyc.com/_images/advertise_submit.gif (easylistchina+easylist.txt: 59324) -.pachanyc.com/_images/advertise_submit\.gif -# @@||ozspeedtest.com/js/pop.js (easylistchina+easylist.txt: 59323) -.ozspeedtest.com/js/pop\.js -# @@||oxfordlearnersdictionaries.com/external/scripts/doubleclick.js (easylistchina+easylist.txt: 59322) -.oxfordlearnersdictionaries.com/external/scripts/doubleclick\.js -# @@||ox.popcap.com/delivery/afr.php?&zoneid=$subdocument,~third-party (easylistchina+easylist.txt: 59321) -.ox.popcap.com/delivery/afr\.php\?&zoneid= -# @@||ox-d.sbnation.com/w/1.0/jstag| (easylistchina+easylist.txt: 59319) -.ox-d.sbnation.com/w/1\.0/jstag$ -# @@||overture.london^$~third-party (easylistchina+easylist.txt: 59315) -.overture.london -# @@||ottawasun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59314) -.ottawasun.com/assets/js/dfp\.js\? -# @@||otakumode.com/shop/titleArea?*_promo_id=$xmlhttprequest (easylistchina+easylist.txt: 59312) -.otakumode.com/shop/titleArea\?.*_promo_id= -# @@||osdir.com/ml/dateindex*&num=$subdocument (easylistchina+easylist.txt: 59311) -.osdir.com/ml/dateindex.*&num= -# @@||oregonlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59310) -.oregonlive.com/static/common/js/ads/ads\.js -# @@||opgevenisgeenoptie.nl^*/favicon_ad6.ico (easylistchina+easylist.txt: 59305) -.opgevenisgeenoptie.nl/.*/favicon_ad6\.ico -# @@||openx.nobelprize.org/openx/www/delivery/$script (easylistchina+easylist.txt: 59301) -.openx.nobelprize.org/openx/www/delivery/ -# @@||openload.io/deliverad/$xmlhttprequest (easylistchina+easylist.txt: 59298) -.openload.io/deliverad/ -# @@||onionstatic.com^*/videoads.js (easylistchina+easylist.txt: 59297) -.onionstatic.com/.*/videoads\.js -# @@||onetravel.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 59296) -.onetravel.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||omnikool.discovery.com/realmedia/ads/adstream_mjx.ads/dsc.discovery.com/$script (easylistchina+easylist.txt: 59295) -.omnikool.discovery.com/realmedia/ads/adstream_mjx\.ads/dsc\.discovery\.com/ -# @@||omgubuntu.co.uk^*/banner.js (easylistchina+easylist.txt: 59294) -.omgubuntu.co.uk/.*/banner\.js -# @@||omgili.com/ads.search? (easylistchina+easylist.txt: 59293) -.omgili.com/ads\.search\? -# @@||oldergames.com/adlib/ (easylistchina+easylist.txt: 59292) -.oldergames.com/adlib/ -# @@||okta.com/js/app/sso/interstitial.js$~third-party (easylistchina+easylist.txt: 59291) -.okta.com/js/app/sso/interstitial\.js -# @@||ocp.com.com/adfunctions.js? (easylistchina+easylist.txt: 59289) -.ocp.com.com/adfunctions\.js\? -# @@||objects.tremormedia.com/embed/swf/admanager*.swf (easylistchina+easylist.txt: 59288) -.objects.tremormedia.com/embed/swf/admanager.*\.swf -# @@||oascentral.thepostgame.com/om/$script (easylistchina+easylist.txt: 59284) -.oascentral.thepostgame.com/om/ -# @@||oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx.ads$script (easylistchina+easylist.txt: 59283) -.oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx\.ads -# @@||oascentral.surfline.com/realmedia/ads/adstream_sx.ads/www.surfline.com/articles$object-subrequest (easylistchina+easylist.txt: 59282) -.oascentral.surfline.com/realmedia/ads/adstream_sx\.ads/www\.surfline\.com/articles -# @@||oascentral.surfline.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59281) -.oascentral.surfline.com/crossdomain\.xml -# @@||oascentral.sumworld.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59278) -.oascentral.sumworld.com/crossdomain\.xml -# @@||oascentral.post-gazette.com/realmedia/ads/$object-subrequest (easylistchina+easylist.txt: 59277) -.oascentral.post-gazette.com/realmedia/ads/ -# @@||oascentral.ibtimes.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59276) -.oascentral.ibtimes.com/crossdomain\.xml -# @@||oas.theguardian.com^$xmlhttprequest (easylistchina+easylist.txt: 59272) -.oas.theguardian.com -# @@||oas.absoluteradio.co.uk^*/www.absoluteradio.co.uk/player/ (easylistchina+easylist.txt: 59270) -.oas.absoluteradio.co.uk/.*/www\.absoluteradio\.co\.uk/player/ -# @@||oas.absoluteradio.co.uk/realmedia/ads/$object-subrequest (easylistchina+easylist.txt: 59269) -.oas.absoluteradio.co.uk/realmedia/ads/ -# @@||nytimes.perfectmarket.com^$stylesheet (easylistchina+easylist.txt: 59268) -.nytimes.perfectmarket.com -# @@||nytimes.com/adx/images/ads/*_premium-crosswords_bg_600x329.gif (easylistchina+easylist.txt: 59267) -.nytimes.com/adx/images/ads/.*_premium-crosswords_bg_600x329\.gif -# @@||nytimes.com/adx/images/ads/*_buynow_btn_53x18.gif (easylistchina+easylist.txt: 59266) -.nytimes.com/adx/images/ads/.*_buynow_btn_53x18\.gif -# @@||nytimes.com/ads/interstitial/skip*.gif (easylistchina+easylist.txt: 59263) -.nytimes.com/ads/interstitial/skip.*\.gif -# @@||nsandi.com/files/asset/banner-ads/ (easylistchina+easylist.txt: 59258) -.nsandi.com/files/asset/banner-ads/ -# @@||nola.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59256) -.nola.com/static/common/js/ads/ads\.js -# @@||nj.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59255) -.nj.com/static/common/js/ads/ads\.js -# @@||nintandbox.net/images/*-Advertising_$image (easylistchina+easylist.txt: 59254) -.nintandbox.net/images/.*-Advertising_ -# @@||nickjr.com/global/scripts/overture/sponsored_links_lib.js (easylistchina+easylist.txt: 59253) -.nickjr.com/global/scripts/overture/sponsored_links_lib\.js -# @@||nickjr.com/assets/ad-entry/ (easylistchina+easylist.txt: 59252) -.nickjr.com/assets/ad-entry/ -# @@||nick.com/js/ads.jsp (easylistchina+easylist.txt: 59250) -.nick.com/js/ads\.jsp -# @@||nflcdn.com/static/*/global/ads.js (easylistchina+easylist.txt: 59246) -.nflcdn.com/static/.*/global/ads\.js -# @@||nfl.com^*/ads.js (easylistchina+easylist.txt: 59245) -.nfl.com/.*/ads\.js -# @@||nextmedia.com/admedia/$object-subrequest (easylistchina+easylist.txt: 59243) -.nextmedia.com/admedia/ -# @@||newzimbabwe.com/banners/350x350/ (easylistchina+easylist.txt: 59241) -.newzimbabwe.com/banners/350x350/ -# @@||newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn.dart.js (easylistchina+easylist.txt: 59240) -.newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn\.dart\.js -# @@||newsweek.com/ads/adscripts/prod/*_$script (easylistchina+easylist.txt: 59239) -.newsweek.com/ads/adscripts/prod/.*_ -# @@||newsarama.com/common/js/advertisements.js (easylistchina+easylist.txt: 59238) -.newsarama.com/common/js/advertisements\.js -# @@||news.nate.com/etc/adrectanglebanner? (easylistchina+easylist.txt: 59237) -.news.nate.com/etc/adrectanglebanner\? -# @@||newgrounds.com/ads/advertisement.js (easylistchina+easylist.txt: 59236) -.newgrounds.com/ads/advertisement\.js -# @@||newgrounds.com/ads/ad_medals.gif (easylistchina+easylist.txt: 59235) -.newgrounds.com/ads/ad_medals\.gif -# @@||networkworld.com/www/js/ads/gpt_includes.js? (easylistchina+easylist.txt: 59234) -.networkworld.com/www/js/ads/gpt_includes\.js\? -# @@||neodrive.co/cam/directrev.js? (easylistchina+easylist.txt: 59231) -.neodrive.co/cam/directrev\.js\? -# @@||neobux.com/v/?a=l&l=$document (easylistchina+easylist.txt: 59230) -.neobux.com/v/\?a=l&l= -# @@||nedbank.co.za/website/content/home/google_ad_Cut.jpg (easylistchina+easylist.txt: 59229) -.nedbank.co.za/website/content/home/google_ad_Cut\.jpg -# @@||ncregister.com/images/sized/images/ads/ (easylistchina+easylist.txt: 59228) -.ncregister.com/images/sized/images/ads/ -# @@||ncregister.com/images/ads/ (easylistchina+easylist.txt: 59227) -.ncregister.com/images/ads/ -# @@||nbc.com/collarity/ (easylistchina+easylist.txt: 59226) -.nbc.com/collarity/ -# @@||nature.com/advertising/$~third-party (easylistchina+easylist.txt: 59224) -.nature.com/advertising/ -# @@||nationmultimedia.com/new/js/doubleclick.js (easylistchina+easylist.txt: 59223) -.nationmultimedia.com/new/js/doubleclick\.js -# @@||nationalgeographic.com/channel/videos/satellite/*.swf?adsite= (easylistchina+easylist.txt: 59222) -.nationalgeographic.com/channel/videos/satellite/.*\.swf\?adsite= -# @@||nationalbusinessfurniture.com/product/advertising/$image (easylistchina+easylist.txt: 59221) -.nationalbusinessfurniture.com/product/advertising/ -# @@||napaonline.com/Content/script/jquery.lazyload-ad-$script (easylistchina+easylist.txt: 59220) -.napaonline.com/Content/script/jquery\.lazyload-ad- -# @@||myrecipes.com/static/advertising/ (easylistchina+easylist.txt: 59218) -.myrecipes.com/static/advertising/ -# @@||myprotein.com/Files/OpenX/$image,~third-party (easylistchina+easylist.txt: 59217) -.myprotein.com/Files/OpenX/ -# @@||mymemory.co.uk/images/adverts/$image,~third-party (easylistchina+easylist.txt: 59216) -.mymemory.co.uk/images/adverts/ -# @@||myhouseabroad.com/js/adview.js (easylistchina+easylist.txt: 59215) -.myhouseabroad.com/js/adview\.js -# @@||myhouseabroad.com/*/ads/ (easylistchina+easylist.txt: 59214) -.myhouseabroad.com/.*/ads/ -# @@||mycricket.com/openx/offers/$image (easylistchina+easylist.txt: 59213) -.mycricket.com/openx/offers/ -# @@||myadt.com/js-ext/smartbanner/ (easylistchina+easylist.txt: 59212) -.myadt.com/js-ext/smartbanner/ -# @@||mxtabs.net/ads/interstitial$subdocument (easylistchina+easylist.txt: 59211) -.mxtabs.net/ads/interstitial -# @@||mutualofomaha.com/images/ads/ (easylistchina+easylist.txt: 59209) -.mutualofomaha.com/images/ads/ -# @@||mussil.com/mussilcomfiles/commercials/*.jpg (easylistchina+easylist.txt: 59208) -.mussil.com/mussilcomfiles/commercials/.*\.jpg -# @@||music-clips.net/ads/list.txt?_=$xmlhttprequest (easylistchina+easylist.txt: 59205) -.music-clips.net/ads/list\.txt\?_= -# @@||mudah.my/css/mudah_adview_min.css (easylistchina+easylist.txt: 59204) -.mudah.my/css/mudah_adview_min\.css -# @@||muchmusic.com/includes/js/adzone.js (easylistchina+easylist.txt: 59203) -.muchmusic.com/includes/js/adzone\.js -# @@||msy.com.au/images/ADbanner/eletter/$~third-party (easylistchina+easylist.txt: 59202) -.msy.com.au/images/ADbanner/eletter/ -# @@||msnbcmedia.msn.com^*/sitemanagement/ads/*/blog_printbutton.png (easylistchina+easylist.txt: 59200) -.msnbcmedia.msn.com/.*/sitemanagement/ads/.*/blog_printbutton\.png -# @@||msi.com/pic/banner/ (easylistchina+easylist.txt: 59199) -.msi.com/pic/banner/ -# @@||msi.com/js/topad/topad.css (easylistchina+easylist.txt: 59198) -.msi.com/js/topad/topad\.css -# @@||mp32u.net/adframe.js (easylistchina+easylist.txt: 59196) -.mp32u.net/adframe\.js -# @@||movoto.com/LeaderboardAd.aspx?adSpotName=$subdocument (easylistchina+easylist.txt: 59195) -.movoto.com/LeaderboardAd\.aspx\?adSpotName= -# @@||motortrade.me/js/$~third-party (easylistchina+easylist.txt: 59194) -.motortrade.me/js/ -# @@||motortrade.me/advert/$~third-party (easylistchina+easylist.txt: 59193) -.motortrade.me/advert/ -# @@||monster.com/awm/*/ADVERTISING- (easylistchina+easylist.txt: 59191) -.monster.com/awm/.*/ADVERTISING- -# @@||moneybookers.com/ads/$~third-party (easylistchina+easylist.txt: 59190) -.moneybookers.com/ads/ -# @@||mofunzone.com/ads/ima3_preloader_*.swf$object (easylistchina+easylist.txt: 59189) -.mofunzone.com/ads/ima3_preloader_.*\.swf -# @@||mobinozer.com^*/gads.js (easylistchina+easylist.txt: 59184) -.mobinozer.com/.*/gads\.js -# @@||mobilefish.com/scripts/advertisement.js (easylistchina+easylist.txt: 59183) -.mobilefish.com/scripts/advertisement\.js -# @@||mlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59181) -.mlive.com/static/common/js/ads/ads\.js -# @@||mlb.com/shared/components/gameday/v6/js/adproxy.js (easylistchina+easylist.txt: 59180) -.mlb.com/shared/components/gameday/v6/js/adproxy\.js -# @@||mlb.com/scripts/dc_ads.js (easylistchina+easylist.txt: 59179) -.mlb.com/scripts/dc_ads\.js -# @@||mircscripts.org/advertisements.js (easylistchina+easylist.txt: 59177) -.mircscripts.org/advertisements\.js -# @@||miniclipcdn.com/content/push-ads/ (easylistchina+easylist.txt: 59176) -.miniclipcdn.com/content/push-ads/ -# @@||miniclip.com/scripts/js.php? (easylistchina+easylist.txt: 59175) -.miniclip.com/scripts/js\.php\? -# @@||miller-mccune.com/wp-content/plugins/*/oiopub-direct/images/style/output.css (easylistchina+easylist.txt: 59174) -.miller-mccune.com/wp-content/plugins/.*/oiopub-direct/images/style/output\.css -# @@||militaryfleamarket.net/media/com_jomclassifieds/adverts/ (easylistchina+easylist.txt: 59173) -.militaryfleamarket.net/media/com_jomclassifieds/adverts/ -# @@||metalmusicradio.com^*/banner.php (easylistchina+easylist.txt: 59170) -.metalmusicradio.com/.*/banner\.php -# @@||metacafe.com/banner.php? (easylistchina+easylist.txt: 59169) -.metacafe.com/banner\.php\? -# @@||merkatia.com/adimages/$image (easylistchina+easylist.txt: 59168) -.merkatia.com/adimages/ -# @@||meritline.com/banners/$image,~third-party (easylistchina+easylist.txt: 59167) -.meritline.com/banners/ -# @@||medscapestatic.com/pi/scripts/ads/dfp/profads2.js (easylistchina+easylist.txt: 59165) -.medscapestatic.com/pi/scripts/ads/dfp/profads2\.js -# @@||medscape.com/html.ng/*slideshow (easylistchina+easylist.txt: 59164) -.medscape.com/html\.ng/.*slideshow -# @@||mediabistro.com^*/displayadleader.asp?$subdocument (easylistchina+easylist.txt: 59160) -.mediabistro.com/.*/displayadleader\.asp\? -# @@||media.washingtonpost.com/wp-srv/ad/tiffany_manager.js (easylistchina+easylist.txt: 59159) -.media.washingtonpost.com/wp-srv/ad/tiffany_manager\.js -# @@||media.washingtonpost.com/wp-srv/ad/photo-ad-config.jsonp (easylistchina+easylist.txt: 59158) -.media.washingtonpost.com/wp-srv/ad/photo-ad-config\.jsonp -# @@||media.washingtonpost.com/wp-srv/ad/ad_v2.js (easylistchina+easylist.txt: 59157) -.media.washingtonpost.com/wp-srv/ad/ad_v2\.js -# @@||media.styleblueprint.com/ad.php?$script,~third-party (easylistchina+easylist.txt: 59156) -.media.styleblueprint.com/ad\.php\? -# @@||media.expedia.com/*/ads/ (easylistchina+easylist.txt: 59151) -.media.expedia.com/.*/ads/ -# @@||media.cargocollective.com^$image (easylistchina+easylist.txt: 59150) -.media.cargocollective.com -# @@||media.avclub.com/onion/js/videoads.js$script (easylistchina+easylist.txt: 59149) -.media.avclub.com/onion/js/videoads\.js -# @@||mcpn.us/resources/images/adv/$~third-party (easylistchina+easylist.txt: 59147) -.mcpn.us/resources/images/adv/ -# @@||mcfc.co.uk/js/core/adtracking.js (easylistchina+easylist.txt: 59146) -.mcfc.co.uk/js/core/adtracking\.js -# @@||maxim.com/advert*/countdown/$script,stylesheet (easylistchina+easylist.txt: 59145) -.maxim.com/advert.*/countdown/ -# @@||masslive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59144) -.masslive.com/static/common/js/ads/ads\.js -# @@||marketwatch.com^$elemhide (easylistchina+easylist.txt: 59143) -.marketwatch.com -# @@||marketing.beatport.com.s3.amazonaws.com/html/*/Banner_Ads/header_$image (easylistchina+easylist.txt: 59142) -.marketing.beatport.com.s3.amazonaws.com/html/.*/Banner_Ads/header_ -# @@||marines.com/videos/commercials/$object-subrequest (easylistchina+easylist.txt: 59141) -.marines.com/videos/commercials/ -# @@||marieclaire.com/ams/page-ads.js? (easylistchina+easylist.txt: 59140) -.marieclaire.com/ams/page-ads\.js\? -# @@||marcs.com^*/AdViewer.js (easylistchina+easylist.txt: 59139) -.marcs.com/.*/AdViewer\.js -# @@||marcokrenn.com/public/images/pages/advertising/$~third-party (easylistchina+easylist.txt: 59138) -.marcokrenn.com/public/images/pages/advertising/ -# @@||marciglesias.com/publicidad/ (easylistchina+easylist.txt: 59137) -.marciglesias.com/publicidad/ -# @@||marca.com/deporte/css/*/publicidad.css (easylistchina+easylist.txt: 59136) -.marca.com/deporte/css/.*/publicidad\.css -# @@||maps.gstatic.com/maps-api-*/adsense.js (easylistchina+easylist.txt: 59135) -.maps.gstatic.com/maps-api-.*/adsense\.js -# @@||maps.googleapis.com/maps-api-*/adsense.js (easylistchina+easylist.txt: 59134) -.maps.googleapis.com/maps-api-.*/adsense\.js -# @@||maps.chitika.net^ (easylistchina+easylist.txt: 59133) -.maps.chitika.net -# @@||maps-static.chitika.net^ (easylistchina+easylist.txt: 59132) -.maps-static.chitika.net -# @@||mansioncasino.com/banners/$~third-party (easylistchina+easylist.txt: 59131) -.mansioncasino.com/banners/ -# @@||manoramaonline.com/advt/cricbuzz/ (easylistchina+easylist.txt: 59130) -.manoramaonline.com/advt/cricbuzz/ -# @@||manilatimes.net/images/banners/logo-mt.png (easylistchina+easylist.txt: 59129) -.manilatimes.net/images/banners/logo-mt\.png -# @@||mail.yahoo.com/neo/assets/swf/uploader.swf (easylistchina+easylist.txt: 59128) -.mail.yahoo.com/neo/assets/swf/uploader\.swf -# @@||mail.google.com^*/uploaderapi*.swf (easylistchina+easylist.txt: 59127) -.mail.google.com/.*/uploaderapi.*\.swf -# @@||mail.google.com^*&view=ad&$xmlhttprequest (easylistchina+easylist.txt: 59126) -.mail.google.com/.*&view=ad& -# @@||magicbricks.com/img/adbanner/ (easylistchina+easylist.txt: 59125) -.magicbricks.com/img/adbanner/ -# @@||mads.com.com/ads/common/faith/*.xml$object-subrequest (easylistchina+easylist.txt: 59123) -.mads.com.com/ads/common/faith/.*\.xml -# @@||mads.cbs.com/mac-ad?$object-subrequest (easylistchina+easylist.txt: 59122) -.mads.cbs.com/mac-ad\? -# @@||macworld.com/www/js/ads/jquery.lazyload-ad.js (easylistchina+easylist.txt: 59121) -.macworld.com/www/js/ads/jquery\.lazyload-ad\.js -# @@||mac-sports.com/ads2/508128.swf (easylistchina+easylist.txt: 59120) -.mac-sports.com/ads2/508128\.swf -# @@||lyngsat-logo.com/icon/flag/az/ad.gif (easylistchina+easylist.txt: 59119) -.lyngsat-logo.com/icon/flag/az/ad\.gif -# @@||luceosolutions.com/recruit/advert_details.php?id=$subdocument (easylistchina+easylist.txt: 59117) -.luceosolutions.com/recruit/advert_details\.php\?id= -# @@||ltassrv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59114) -.ltassrv.com/crossdomain\.xml -# @@||lovefilm.com/static/scripts/advertising/dart.overlay.js (easylistchina+easylist.txt: 59112) -.lovefilm.com/static/scripts/advertising/dart\.overlay\.js -# @@||lovefilm.com/ajax/widgets/advertising/$xmlhttprequest (easylistchina+easylist.txt: 59111) -.lovefilm.com/ajax/widgets/advertising/ -# @@||logmein.com/Serve.aspx?ZoneID=$script,~third-party (easylistchina+easylist.txt: 59107) -.logmein.com/Serve\.aspx\?ZoneID= -# @@||llnwd.net^*/js/3rdparty/swfobject$script (easylistchina+easylist.txt: 59106) -.llnwd.net/.*/js/3rdparty/swfobject -# @@||live365.com/web/components/ads/*.html? (easylistchina+easylist.txt: 59101) -.live365.com/web/components/ads/.*\.html\? -# @@||live365.com/scripts/liveads.js (easylistchina+easylist.txt: 59100) -.live365.com/scripts/liveads\.js -# @@||live365.com/mini/blank300x250.html (easylistchina+easylist.txt: 59099) -.live365.com/mini/blank300x250\.html -# @@||live-support.se^*/Admax/$~third-party (easylistchina+easylist.txt: 59096) -.live-support.se/.*/Admax/ -# @@||listings.brokersweb.com/JsonSearchSb.aspx?*&maxAds=$script (easylistchina+easylist.txt: 59095) -.listings.brokersweb.com/JsonSearchSb\.aspx\?.*&maxAds= -# @@||lipsum.com/images/banners/ (easylistchina+easylist.txt: 59094) -.lipsum.com/images/banners/ -# @@||linksave.in/img/usercp/ads.png (easylistchina+easylist.txt: 59090) -.linksave.in/img/usercp/ads\.png -# @@||linkbucks.com/tmpl/$image,stylesheet (easylistchina+easylist.txt: 59088) -.linkbucks.com/tmpl/ -# @@||limecellular.com/resources/images/adv/$~third-party (easylistchina+easylist.txt: 59087) -.limecellular.com/resources/images/adv/ -# @@||lightningcast.net/servlets/getplaylist?*&responsetype=asx&$object (easylistchina+easylist.txt: 59085) -.lightningcast.net/servlets/getplaylist\?.*&responsetype=asx& -# @@||libraryjournal.com/wp-content/plugins/wp-intern-ads/$script,stylesheet (easylistchina+easylist.txt: 59084) -.libraryjournal.com/wp-content/plugins/wp-intern-ads/ -# @@||lesacasino.com/banners/$~third-party (easylistchina+easylist.txt: 59083) -.lesacasino.com/banners/ -# @@||lemon-ads.com^$~document,~third-party (easylistchina+easylist.txt: 59082) -.lemon-ads.com -# @@||lelong.com.my/UserImages/Ads/$image,~third-party (easylistchina+easylist.txt: 59081) -.lelong.com.my/UserImages/Ads/ -# @@||lehighvalleylive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59080) -.lehighvalleylive.com/static/common/js/ads/ads\.js -# @@||larazon.es/larazon-theme/js/publicidad.js? (easylistchina+easylist.txt: 59076) -.larazon.es/larazon-theme/js/publicidad\.js\? -# @@||lanacion.com.ar/*/publicidad/ (easylistchina+easylist.txt: 59075) -.lanacion.com.ar/.*/publicidad/ -# @@||lads.myspace.com/videos/msvideoplayer.swf?$object,object-subrequest (easylistchina+easylist.txt: 59074) -.lads.myspace.com/videos/msvideoplayer\.swf\? -# @@||lacanadaonline.com/hive/images/adv_ (easylistchina+easylist.txt: 59073) -.lacanadaonline.com/hive/images/adv_ -# @@||l.yimg.com/zz/combo?*/advertising.$stylesheet (easylistchina+easylist.txt: 59072) -.l.yimg.com/zz/combo\?.*/advertising\. -# @@||l.yimg.com/*/adservice/ (easylistchina+easylist.txt: 59071) -.l.yimg.com/.*/adservice/ -# @@||ksl.com/resources/classifieds/graphics/ad_ (easylistchina+easylist.txt: 59070) -.ksl.com/resources/classifieds/graphics/ad_ -# @@||krispykreme.com/content/images/ads/ (easylistchina+easylist.txt: 59069) -.krispykreme.com/content/images/ads/ -# @@||kotak.com/banners/$image (easylistchina+easylist.txt: 59068) -.kotak.com/banners/ -# @@||koaa.com/videoplayer/iframe.cfm?*&hide_ads= (easylistchina+easylist.txt: 59066) -.koaa.com/videoplayer/iframe\.cfm\?.*&hide_ads= -# @@||kloubert.com/wp-content/uploads/*/Advertising_$image,~third-party (easylistchina+easylist.txt: 59065) -.kloubert.com/wp-content/uploads/.*/Advertising_ -# @@||kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_$object (easylistchina+easylist.txt: 59064) -.kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_ -# @@||kingofgames.net/gads/kingofgames.swf (easylistchina+easylist.txt: 59061) -.kingofgames.net/gads/kingofgames\.swf -# @@||king5.com/templates/belo_dart_iframed_ad?dartTag=LeaderTop&$subdocument (easylistchina+easylist.txt: 59060) -.king5.com/templates/belo_dart_iframed_ad\?dartTag=LeaderTop& -# @@||kidshealth.org/licensees/licensee1/js/gam.html (easylistchina+easylist.txt: 59059) -.kidshealth.org/licensees/licensee1/js/gam\.html -# @@||kcra.com^*/adpositionsizein-min.js (easylistchina+easylist.txt: 59057) -.kcra.com/.*/adpositionsizein-min\.js -# @@||kcna.kp/images/ads_arrow_ (easylistchina+easylist.txt: 59056) -.kcna.kp/images/ads_arrow_ -# @@||karolinashumilas.com/img/adv/ (easylistchina+easylist.txt: 59055) -.karolinashumilas.com/img/adv/ -# @@||kamernet.nl/Adverts/$~third-party (easylistchina+easylist.txt: 59054) -.kamernet.nl/Adverts/ -# @@||justin-klein.com/banners/ (easylistchina+easylist.txt: 59052) -.justin-klein.com/banners/ -# @@||jsstatic.com/_ads/ (easylistchina+easylist.txt: 59050) -.jsstatic.com/_ads/ -# @@||joyhubs.com/View/*/js/pop.js (easylistchina+easylist.txt: 59048) -.joyhubs.com/View/.*/js/pop\.js -# @@||jobstreet.com/_ads/ (easylistchina+easylist.txt: 59046) -.jobstreet.com/_ads/ -# @@||jobsearch.careerone.com.au^*/bannerad.asmx/ (easylistchina+easylist.txt: 59045) -.jobsearch.careerone.com.au/.*/bannerad\.asmx/ -# @@||jobs.wa.gov.au/images/advertimages/ (easylistchina+easylist.txt: 59044) -.jobs.wa.gov.au/images/advertimages/ -# @@||itweb.co.za/banners/en-cdt*.gif (easylistchina+easylist.txt: 59042) -.itweb.co.za/banners/en-cdt.*\.gif -# @@||itv.com^*/tvshows_adcall_08.js (easylistchina+easylist.txt: 59041) -.itv.com/.*/tvshows_adcall_08\.js -# @@||itv.com^*/flvplayer.swf?$object (easylistchina+easylist.txt: 59040) -.itv.com/.*/flvplayer\.swf\? -# @@||itv.com^*.adserver.js (easylistchina+easylist.txt: 59039) -.itv.com/.*\.adserver\.js -# @@||itv.com/itv/hserver/*/site=itv/$xmlhttprequest (easylistchina+easylist.txt: 59036) -.itv.com/itv/hserver/.*/site=itv/ -# @@||island.lk/userfiles/image/danweem/island.gif (easylistchina+easylist.txt: 59035) -.island.lk/userfiles/image/danweem/island\.gif -# @@||iolproperty.co.za/images/ad_banner.png (easylistchina+easylist.txt: 59031) -.iolproperty.co.za/images/ad_banner\.png -# @@||inviziads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59030) -.inviziads.com/crossdomain\.xml -# @@||investors.com/Scripts/AdScript.js? (easylistchina+easylist.txt: 59029) -.investors.com/Scripts/AdScript\.js\? -# @@||interadcorp.com/script/interad.$script,stylesheet (easylistchina+easylist.txt: 59028) -.interadcorp.com/script/interad\. -# @@||intellitxt.com/ast/js/nbcuni/$script (easylistchina+easylist.txt: 59025) -.intellitxt.com/ast/js/nbcuni/ -# @@||intellitext.co^$~third-party (easylistchina+easylist.txt: 59024) -.intellitext.co -# @@||intellicast.com/App_Scripts/ad.min.js (easylistchina+easylist.txt: 59023) -.intellicast.com/App_Scripts/ad\.min\.js -# @@||inspire.net.nz/adverts/$image (easylistchina+easylist.txt: 59022) -.inspire.net.nz/adverts/ -# @@||inserts2online.com/images/site/viewad.gif (easylistchina+easylist.txt: 59015) -.inserts2online.com/images/site/viewad\.gif -# @@||inserts2online.com/*.jsp?*&adid=$subdocument (easylistchina+easylist.txt: 59014) -.inserts2online.com/.*\.jsp\?.*&adid= -# @@||infoworld.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 59009) -.infoworld.com/www/js/ads/gpt_includes\.js -# @@||indiatimes.com/configspace/ads/$object,object-subrequest (easylistchina+easylist.txt: 59008) -.indiatimes.com/configspace/ads/ -# @@||indiaresults.com/advertisements/submit.png (easylistchina+easylist.txt: 59007) -.indiaresults.com/advertisements/submit\.png -# @@||incredibox.fr/js/advertise.js (easylistchina+easylist.txt: 59006) -.incredibox.fr/js/advertise\.js -# @@||incredibox.fr/image/advertise/ (easylistchina+easylist.txt: 59005) -.incredibox.fr/image/advertise/ -# @@||incredibox.fr/advertise/_liste.js (easylistchina+easylist.txt: 59004) -.incredibox.fr/advertise/_liste\.js -# @@||imobie.com/js/anytrans-adv.js (easylistchina+easylist.txt: 59000) -.imobie.com/js/anytrans-adv\.js -# @@||img.weather.weatherbug.com^*/stickers/$image,stylesheet (easylistchina+easylist.txt: 58998) -.img.weather.weatherbug.com/.*/stickers/ -# @@||img.travidia.com^$image (easylistchina+easylist.txt: 58997) -.img.travidia.com -# @@||img.thedailywtf.com/images/ads/ (easylistchina+easylist.txt: 58996) -.img.thedailywtf.com/images/ads/ -# @@||imasdk.googleapis.com/flash/sdkloader/adsapi_3.swf$object-subrequest (easylistchina+easylist.txt: 58989) -.imasdk.googleapis.com/flash/sdkloader/adsapi_3\.swf -# @@||imasdk.googleapis.com/flash/core/3.*/adsapi.swf$object-subrequest (easylistchina+easylist.txt: 58988) -.imasdk.googleapis.com/flash/core/3\..*/adsapi\.swf -# @@||images.nickjr.com/ads/promo/ (easylistchina+easylist.txt: 58984) -.images.nickjr.com/ads/promo/ -# @@||images.nationalgeographic.com/wpf/media-live/graphic/ (easylistchina+easylist.txt: 58983) -.images.nationalgeographic.com/wpf/media-live/graphic/ -# @@||images.mmorpg.com/scripts/advertisement.js (easylistchina+easylist.txt: 58982) -.images.mmorpg.com/scripts/advertisement\.js -# @@||images.frys.com/art/ads/js/$script,stylesheet (easylistchina+easylist.txt: 58981) -.images.frys.com/art/ads/js/ -# @@||images.frys.com/art/ads/images/$image,~third-party (easylistchina+easylist.txt: 58980) -.images.frys.com/art/ads/images/ -# @@||images.forbes.com/video/ads/blank_frame.flv$object-subrequest (easylistchina+easylist.txt: 58979) -.images.forbes.com/video/ads/blank_frame\.flv -# @@||images.dashtickets.co.nz/advertising/featured/$image (easylistchina+easylist.txt: 58978) -.images.dashtickets.co.nz/advertising/featured/ -# @@||ikea.com^*/img/ads/ (easylistchina+easylist.txt: 58974) -.ikea.com/.*/img/ads/ -# @@||ikea.com^*/img/ad_ (easylistchina+easylist.txt: 58973) -.ikea.com/.*/img/ad_ -# @@||iframe.ivillage.com/iframe_render? (easylistchina+easylist.txt: 58971) -.iframe.ivillage.com/iframe_render\? -# @@||ifeelgoood.com/tapcontent-*.swf?clicktag=$object (easylistchina+easylist.txt: 58970) -.ifeelgoood.com/tapcontent-.*\.swf\?clicktag= -# @@||identity-us.com/ads/ads.html (easylistchina+easylist.txt: 58969) -.identity-us.com/ads/ads\.html -# @@||icons.iconarchive.com/icons/$image (easylistchina+easylist.txt: 58968) -.icons.iconarchive.com/icons/ -# @@||icefilms.info/jquery.lazyload-ad-*-min.js (easylistchina+easylist.txt: 58967) -.icefilms.info/jquery\.lazyload-ad-.*-min\.js -# @@||ibnlive.com/videoads/*_ads_*.xml$object-subrequest (easylistchina+easylist.txt: 58965) -.ibnlive.com/videoads/.*_ads_.*\.xml -# @@||i.espn.co.uk/ads/gamemodule_$object (easylistchina+easylist.txt: 58964) -.i.espn.co.uk/ads/gamemodule_ -# @@||i.cdn.turner.com^*/adserviceadapter.swf (easylistchina+easylist.txt: 58962) -.i.cdn.turner.com/.*/adserviceadapter\.swf -# @@||huntington.com/Script/AdManager.js (easylistchina+easylist.txt: 58961) -.huntington.com/Script/AdManager\.js -# @@||hulu.com/published/*.mp4 (easylistchina+easylist.txt: 58959) -.hulu.com/published/.*\.mp4 -# @@||hulu.com/published/*.flv (easylistchina+easylist.txt: 58958) -.hulu.com/published/.*\.flv -# @@||hulkshare.com/js/adsmanager.js (easylistchina+easylist.txt: 58957) -.hulkshare.com/js/adsmanager\.js -# @@||huffingtonpost.com/images/ads/$~third-party (easylistchina+easylist.txt: 58955) -.huffingtonpost.com/images/ads/ -# @@||huffingtonpost.com/_uac/adpage.html (easylistchina+easylist.txt: 58954) -.huffingtonpost.com/_uac/adpage\.html -# @@||huffingtonpost.co.uk/_uac/adpage.html (easylistchina+easylist.txt: 58953) -.huffingtonpost.co.uk/_uac/adpage\.html -# @@||hp.com^*/scripts/ads/$~third-party (easylistchina+easylist.txt: 58952) -.hp.com/.*/scripts/ads/ -# @@||howcast.com/flash/assets/ads/liverail.swf (easylistchina+easylist.txt: 58951) -.howcast.com/flash/assets/ads/liverail\.swf -# @@||houstonpress.com/adindex/$xmlhttprequest (easylistchina+easylist.txt: 58950) -.houstonpress.com/adindex/ -# @@||housebeautiful.com/cm/shared/scripts/refreshads-*.js (easylistchina+easylist.txt: 58949) -.housebeautiful.com/cm/shared/scripts/refreshads-.*\.js -# @@||housebeautiful.com/ams/page-ads.js (easylistchina+easylist.txt: 58948) -.housebeautiful.com/ams/page-ads\.js -# @@||hotnewhiphop.com/web_root/images/ads/banner-*.png (easylistchina+easylist.txt: 58947) -.hotnewhiphop.com/web_root/images/ads/banner-.*\.png -# @@||homedepot.com^*/thdGoogleAdSense.js (easylistchina+easylist.txt: 58946) -.homedepot.com/.*/thdGoogleAdSense\.js -# @@||hologfx.com/banners/$image,~third-party (easylistchina+easylist.txt: 58945) -.hologfx.com/banners/ -# @@||historyextra.com^*_advertorial$stylesheet (easylistchina+easylist.txt: 58944) -.historyextra.com/.*_advertorial -# @@||hipsterhitler.com/wp-content/webcomic/$image (easylistchina+easylist.txt: 58943) -.hipsterhitler.com/wp-content/webcomic/ -# @@||hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement.jpg (easylistchina+easylist.txt: 58942) -.hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement\.jpg -# @@||hillvue.com/banners/$image,~third-party (easylistchina+easylist.txt: 58941) -.hillvue.com/banners/ -# @@||hentai-foundry.com/themes/default/images/buttons/add_comment_icon.png (easylistchina+easylist.txt: 58940) -.hentai-foundry.com/themes/default/images/buttons/add_comment_icon\.png -# @@||hellotv.in/livetv/advertisements.xml$object-subrequest (easylistchina+easylist.txt: 58939) -.hellotv.in/livetv/advertisements\.xml -# @@||hebdenbridge.co.uk/ads/images/smallads.png (easylistchina+easylist.txt: 58938) -.hebdenbridge.co.uk/ads/images/smallads\.png -# @@||healthline.com/v2/ad-mr2-iframe?useAdsHost=*&dfpAdSite= (easylistchina+easylist.txt: 58937) -.healthline.com/v2/ad-mr2-iframe\?useAdsHost=.*&dfpAdSite= -# @@||healthline.com/v2/ad-leaderboard-iframe?$subdocument (easylistchina+easylist.txt: 58936) -.healthline.com/v2/ad-leaderboard-iframe\? -# @@||healthline.com/resources/base/js/responsive-ads.js? (easylistchina+easylist.txt: 58935) -.healthline.com/resources/base/js/responsive-ads\.js\? -# @@||healthadnet.adprimemedia.com/vn/vna/data/ad.php$object-subrequest (easylistchina+easylist.txt: 58933) -.healthadnet.adprimemedia.com/vn/vna/data/ad\.php -# @@||hbindependent.com/hive/images/adv_ (easylistchina+easylist.txt: 58932) -.hbindependent.com/hive/images/adv_ -# @@||hawaii-scuba.com/ads_styles.css (easylistchina+easylist.txt: 58931) -.hawaii-scuba.com/ads_styles\.css -# @@||harmonsgrocery.com/ads/$image (easylistchina+easylist.txt: 58930) -.harmonsgrocery.com/ads/ -# @@||hallo.co.uk/advert/$~third-party (easylistchina+easylist.txt: 58929) -.hallo.co.uk/advert/ -# @@||hafeezcentre.pk^*/ads_images/$image,~third-party (easylistchina+easylist.txt: 58928) -.hafeezcentre.pk/.*/ads_images/ -# @@||gws.ign.com/ws/search?*&google_adpage=$script (easylistchina+easylist.txt: 58927) -.gws.ign.com/ws/search\?.*&google_adpage= -# @@||guysen.com/script/ads.js (easylistchina+easylist.txt: 58926) -.guysen.com/script/ads\.js -# @@||gumtree.com^*/postAd.js (easylistchina+easylist.txt: 58925) -.gumtree.com/.*/postAd\.js -# @@||gulflive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58924) -.gulflive.com/static/common/js/ads/ads\.js -# @@||guim.co.uk^*/styles/wide/google-ads.css (easylistchina+easylist.txt: 58923) -.guim.co.uk/.*/styles/wide/google-ads\.css -# @@||guardianapps.co.uk^*/advertisement-features$xmlhttprequest (easylistchina+easylist.txt: 58922) -.guardianapps.co.uk/.*/advertisement-features -# @@||guardian4.com/banners/$image,~third-party (easylistchina+easylist.txt: 58921) -.guardian4.com/banners/ -# @@||gotomeeting.com/images/ad/$image,stylesheet (easylistchina+easylist.txt: 58919) -.gotomeeting.com/images/ad/ -# @@||gotoassist.com/images/ad/ (easylistchina+easylist.txt: 58918) -.gotoassist.com/images/ad/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?format=728x90^$document,subdocument (easylistchina+easylist.txt: 58909) -.google.com/uds/modules/elements/newsshow/iframe\.html\?format=728x90[^\w%.-] -# @@||google.com/search?q=$xmlhttprequest (easylistchina+easylist.txt: 58904) -.google.com/search\?q= -# @@||google.com/_static/images/*/ads.png (easylistchina+easylist.txt: 58896) -.google.com/_static/images/.*/ads\.png -# @@||google.com/_/apps-static/*/socialads/$script,stylesheet (easylistchina+easylist.txt: 58895) -.google.com/_/apps-static/.*/socialads/ -# @@||google.*/webpagethumbnail?*&query=$script (easylistchina+easylist.txt: 58894) -.google.*./(.*/)?webpagethumbnail\?.*&query= -# @@||google.*/search?sclient=*&q=$xmlhttprequest (easylistchina+easylist.txt: 58893) -.google.*./(.*/)?search\?sclient=.*&q= -# @@||google.*/s?*&q=$xmlhttprequest (easylistchina+easylist.txt: 58892) -.google.*./(.*/)?s\?.*&q= -# @@||goodyhoo.com/banners/ (easylistchina+easylist.txt: 58891) -.goodyhoo.com/banners/ -# @@||goember.com/ad/*.xml?$xmlhttprequest (easylistchina+easylist.txt: 58890) -.goember.com/ad/.*\.xml\? -# @@||godtube.com/resource/mediaplayer/*&adzone=$object-subrequest (easylistchina+easylist.txt: 58889) -.godtube.com/resource/mediaplayer/.*&adzone= -# @@||godlessnightsfilm.co.uk/scripts/ad-gallery/ (easylistchina+easylist.txt: 58888) -.godlessnightsfilm.co.uk/scripts/ad-gallery/ -# @@||gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-*.swf$object (easylistchina+easylist.txt: 58886) -.gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-.*\.swf -# @@||gmfreeze.org/site_media//uploads/page_ad_images/$image (easylistchina+easylist.txt: 58884) -.gmfreeze.org/site_media//uploads/page_ad_images/ -# @@||globaltv.com/js/smdg_ads.js (easylistchina+easylist.txt: 58883) -.globaltv.com/js/smdg_ads\.js -# @@||glendalenewspress.com/hive/images/adv_ (easylistchina+easylist.txt: 58881) -.glendalenewspress.com/hive/images/adv_ -# @@||glamour.com/aspen/js/dartCall.js (easylistchina+easylist.txt: 58880) -.glamour.com/aspen/js/dartCall\.js -# @@||glamour.com/aspen/components/cn-fe-ads/js/cn.dart.js (easylistchina+easylist.txt: 58879) -.glamour.com/aspen/components/cn-fe-ads/js/cn\.dart\.js -# @@||gitorious.org/adv/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58878) -.gitorious.org/adv/ -# @@||girlsplay.com/banners/ima3_preloader_$object (easylistchina+easylist.txt: 58877) -.girlsplay.com/banners/ima3_preloader_ -# @@||getgamesgo.com/Banners/$image,~third-party (easylistchina+easylist.txt: 58873) -.getgamesgo.com/Banners/ -# @@||geektime.com/wp-content/uploads/*/Google-Adsense-$image,~third-party (easylistchina+easylist.txt: 58872) -.geektime.com/wp-content/uploads/.*/Google-Adsense- -# @@||gcultra.com/js/exit_popup.js (easylistchina+easylist.txt: 58871) -.gcultra.com/js/exit_popup\.js -# @@||garrysmod.org/ads/$image,script,stylesheet (easylistchina+easylist.txt: 58870) -.garrysmod.org/ads/ -# @@||garmin.com^*/Sponsors.js? (easylistchina+easylist.txt: 58869) -.garmin.com/.*/Sponsors\.js\? -# @@||gamesgames.com/vda/friendly-iframe.html?videoPreroll300x250$subdocument (easylistchina+easylist.txt: 58866) -.gamesgames.com/vda/friendly-iframe\.html\?videoPreroll300x250 -# @@||games.washingtonpost.com/games/$elemhide (easylistchina+easylist.txt: 58865) -.games.washingtonpost.com/games/ -# @@||games.cnn.com/ad/$object,object-subrequest,subdocument (easylistchina+easylist.txt: 58864) -.games.cnn.com/ad/ -# @@||gameitnow.com/ads/google_loader.swf$object (easylistchina+easylist.txt: 58863) -.gameitnow.com/ads/google_loader\.swf -# @@||gameitnow.com/ads/gameadvertentie.php?$subdocument (easylistchina+easylist.txt: 58862) -.gameitnow.com/ads/gameadvertentie\.php\? -# @@||gamehouse.com/adiframe/preroll-ad/$subdocument (easylistchina+easylist.txt: 58861) -.gamehouse.com/adiframe/preroll-ad/ -# @@||game.zylom.com^*/cm_loader.*.swf?$object (easylistchina+easylist.txt: 58860) -.game.zylom.com/.*/cm_loader\..*\.swf\? -# @@||game.zylom.com^*.swf?*&adURL=$object (easylistchina+easylist.txt: 58859) -.game.zylom.com/.*\.swf\?.*&adURL= -# @@||gactv.com^*/javascript/ad/coread/$script (easylistchina+easylist.txt: 58858) -.gactv.com/.*/javascript/ad/coread/ -# @@||g4tv.com/clientscriptoptimizer.ashx?*-ads.$script,stylesheet (easylistchina+easylist.txt: 58857) -.g4tv.com/clientscriptoptimizer\.ashx\?.*-ads\. -# @@||g.doubleclick.net/pagead/ads?ad_type=text_dynamicimage_flash^$object-subrequest (easylistchina+easylist.txt: 58856) -.g.doubleclick.net/pagead/ads\?ad_type=text_dynamicimage_flash[^\w%.-] -# @@||funiaste.net/obrazki/*&adtype= (easylistchina+easylist.txt: 58847) -.funiaste.net/obrazki/.*&adtype= -# @@||fs-freeware.net/images/jdownloads/downloadimages/banner_ads.png (easylistchina+easylist.txt: 58845) -.fs-freeware.net/images/jdownloads/downloadimages/banner_ads\.png -# @@||freeviewnz.tv^*/uploads/ads/ (easylistchina+easylist.txt: 58843) -.freeviewnz.tv/.*/uploads/ads/ -# @@||freeride.co.uk/img/admarket/$~third-party (easylistchina+easylist.txt: 58842) -.freeride.co.uk/img/admarket/ -# @@||freeonlinegames.com/advertising/google-loader.swf?$object (easylistchina+easylist.txt: 58841) -.freeonlinegames.com/advertising/google-loader\.swf\? -# @@||freeonlinegames.com/advertising/adaptv-as3.swf?$object (easylistchina+easylist.txt: 58840) -.freeonlinegames.com/advertising/adaptv-as3\.swf\? -# @@||freeads.in/freead.png (easylistchina+easylist.txt: 58839) -.freeads.in/freead\.png -# @@||freeads.in/classifieds/common/postad.css (easylistchina+easylist.txt: 58838) -.freeads.in/classifieds/common/postad\.css -# @@||forums.realgm.com/banners/ (easylistchina+easylist.txt: 58837) -.forums.realgm.com/banners/ -# @@||fortune.com/data/chartbeat/$xmlhttprequest (easylistchina+easylist.txt: 58836) -.fortune.com/data/chartbeat/ -# @@||forex.com/adx/$image (easylistchina+easylist.txt: 58835) -.forex.com/adx/ -# @@||folklands.com/health/advertise_with_us_files/$~third-party (easylistchina+easylist.txt: 58833) -.folklands.com/health/advertise_with_us_files/ -# @@||flysaa.com^*/jquery.adserver.js (easylistchina+easylist.txt: 58830) -.flysaa.com/.*/jquery\.adserver\.js -# @@||flyerservices.com/cached_banner_pages/*bannerid= (easylistchina+easylist.txt: 58829) -.flyerservices.com/cached_banner_pages/.*bannerid= -# @@||flossmanuals.net/site_static/xinha/plugins/DoubleClick/$~third-party (easylistchina+easylist.txt: 58828) -.flossmanuals.net/site_static/xinha/plugins/DoubleClick/ -# @@||flipboard.com/media/uploads/adv_$image,~third-party (easylistchina+easylist.txt: 58826) -.flipboard.com/media/uploads/adv_ -# @@||fixtracking.com/images/ad-$image,~third-party (easylistchina+easylist.txt: 58824) -.fixtracking.com/images/ad- -# @@||filestage.to/design/player/player.swf?*&popunder=$object,third-party (easylistchina+easylist.txt: 58823) -.filestage.to/design/player/player\.swf\?.*&popunder= -# @@||files.coloribus.com^$image,~third-party (easylistchina+easylist.txt: 58822) -.files.coloribus.com -# @@||fifa.com/flash/videoplayer/libs/advert_$object-subrequest (easylistchina+easylist.txt: 58821) -.fifa.com/flash/videoplayer/libs/advert_ -# @@||festina.com/txt/advertising.xml$object-subrequest (easylistchina+easylist.txt: 58819) -.festina.com/txt/advertising\.xml -# @@||feeds.videogamer.com^*/videoad.xml?$object-subrequest (easylistchina+easylist.txt: 58818) -.feeds.videogamer.com/.*/videoad\.xml\? -# @@||feedroom.speedera.net/static.feedroom.com/affiliate/ (easylistchina+easylist.txt: 58817) -.feedroom.speedera.net/static\.feedroom\.com/affiliate/ -# @@||fbcdn.net/rsrc.php/*-aD2.js$script (easylistchina+easylist.txt: 58815) -.fbcdn.net/rsrc\.php/.*-aD2\.js -# @@||farecompare.com^*/farecomp/ (easylistchina+easylist.txt: 58814) -.farecompare.com/.*/farecomp/ -# @@||faceinhole.com/adsense.swf$object-subrequest (easylistchina+easylist.txt: 58813) -.faceinhole.com/adsense\.swf -# @@||extras.chron.com/banners/*/social_icons/$image,subdocument (easylistchina+easylist.txt: 58810) -.extras.chron.com/banners/.*/social_icons/ -# @@||explosm.net/db/files/comics/$image (easylistchina+easylist.txt: 58809) -.explosm.net/db/files/comics/ -# @@||explosm.net/comics/$image (easylistchina+easylist.txt: 58808) -.explosm.net/comics/ -# @@||expedia.com/minify/ads-min-*.js? (easylistchina+easylist.txt: 58807) -.expedia.com/minify/ads-min-.*\.js\? -# @@||expedia.com/js.ng/*&PLACEMENT=CXHOMECORE_$script (easylistchina+easylist.txt: 58806) -.expedia.com/js\.ng/.*&PLACEMENT=CXHOMECORE_ -# @@||expedia.com/html.cms/TPID=*&ADSIZE=$subdocument (easylistchina+easylist.txt: 58805) -.expedia.com/html\.cms/TPID=.*&ADSIZE= -# @@||expedia.com/daily/common/msi.asp (easylistchina+easylist.txt: 58804) -.expedia.com/daily/common/msi\.asp -# @@||expedia.co.nz/html.cms/tpid=*&adsize= (easylistchina+easylist.txt: 58803) -.expedia.co.nz/html\.cms/tpid=.*&adsize= -# @@||ewallpapers.eu/ads/logo.jpg (easylistchina+easylist.txt: 58801) -.ewallpapers.eu/ads/logo\.jpg -# @@||eventim.de/obj/basic/ad2_obj/layout/ (easylistchina+easylist.txt: 58800) -.eventim.de/obj/basic/ad2_obj/layout/ -# @@||eventcinemas.co.nz^*_adhub_server_$script (easylistchina+easylist.txt: 58799) -.eventcinemas.co.nz/.*_adhub_server_ -# @@||evanscycles.com/ads/$image,~third-party (easylistchina+easylist.txt: 58798) -.evanscycles.com/ads/ -# @@||esquire.com/ams/page-ads.js?$script (easylistchina+easylist.txt: 58797) -.esquire.com/ams/page-ads\.js\? -# @@||espn.go.com^*/espn360/banner?$subdocument (easylistchina+easylist.txt: 58792) -.espn.go.com/.*/espn360/banner\? -# @@||espn.co.uk/ads/gamemodule_v0.2.swf$object (easylistchina+easylist.txt: 58791) -.espn.co.uk/ads/gamemodule_v0\.2\.swf -# @@||equippers.com/absolutebm.aspx?$script (easylistchina+easylist.txt: 58790) -.equippers.com/absolutebm\.aspx\? -# @@||equippers.com/abm.aspx?$script (easylistchina+easylist.txt: 58789) -.equippers.com/abm\.aspx\? -# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview.main.js? (easylistchina+easylist.txt: 58788) -.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview\.main\.js\? -# @@||epicgameads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58785) -.epicgameads.com/crossdomain\.xml -# @@||engrish.com/wp-content/uploads/*/advertisement-$image,~third-party (easylistchina+easylist.txt: 58784) -.engrish.com/wp-content/uploads/.*/advertisement- -# @@||englishanimes.com/wp-content/themes/englishanimes/js/pop.js (easylistchina+easylist.txt: 58783) -.englishanimes.com/wp-content/themes/englishanimes/js/pop\.js -# @@||engadget.com/_uac/adpage.html$subdocument (easylistchina+easylist.txt: 58781) -.engadget.com/_uac/adpage\.html -# @@||empireonline.com/images/image_index/300x250/ (easylistchina+easylist.txt: 58780) -.empireonline.com/images/image_index/300x250/ -# @@||emergencymedicalparamedic.com/wp-content/themes/AdSense/style.css (easylistchina+easylist.txt: 58779) -.emergencymedicalparamedic.com/wp-content/themes/AdSense/style\.css -# @@||emailbidding.com^*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58778) -.emailbidding.com/.*/advertiser/ -# @@||eluxe.ca^*_doubleclick.js*.pagespeed.$script (easylistchina+easylist.txt: 58777) -.eluxe.ca/.*_doubleclick\.js.*\.pagespeed\. -# @@||elephantjournal.com/ad_art/ (easylistchina+easylist.txt: 58776) -.elephantjournal.com/ad_art/ -# @@||eightinc.com/admin/zone.php?zoneid=$xmlhttprequest (easylistchina+easylist.txt: 58775) -.eightinc.com/admin/zone\.php\?zoneid= -# @@||ehow.co.uk/frames/ad.html?$subdocument (easylistchina+easylist.txt: 58774) -.ehow.co.uk/frames/ad\.html\? -# @@||egotastic.us.intellitxt.com/intellitxt/front.asp (easylistchina+easylist.txt: 58773) -.egotastic.us.intellitxt.com/intellitxt/front\.asp -# @@||eeweb.com/comics/*_ads-$image (easylistchina+easylist.txt: 58772) -.eeweb.com/comics/.*_ads- -# @@||eduspec.science.ru.nl^*-images/ad- (easylistchina+easylist.txt: 58771) -.eduspec.science.ru.nl/.*-images/ad- -# @@||edmontonsun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 58770) -.edmontonsun.com/assets/js/dfp\.js\? -# @@||edmontonjournal.com/js/adsync/adsynclibrary.js (easylistchina+easylist.txt: 58769) -.edmontonjournal.com/js/adsync/adsynclibrary\.js -# @@||edgar.pro-g.co.uk/data/*/videos/adverts/$object-subrequest (easylistchina+easylist.txt: 58766) -.edgar.pro-g.co.uk/data/.*/videos/adverts/ -# @@||economist.com.na^*/banners/cartoon_ (easylistchina+easylist.txt: 58765) -.economist.com.na/.*/banners/cartoon_ -# @@||eboundservices.com/iframe/newads/iframe.php?stream=$subdocument (easylistchina+easylist.txt: 58764) -.eboundservices.com/iframe/newads/iframe\.php\?stream= -# @@||ebayrtm.com/rtm?rtmcmd&a=json&cb=parent.$script (easylistchina+easylist.txt: 58763) -.ebayrtm.com/rtm\?rtmcmd&a=json&cb=parent\. -# @@||easyfundraising.org.uk/images/home/*-120x60.$image (easylistchina+easylist.txt: 58762) -.easyfundraising.org.uk/images/home/.*-120x60\. -# @@||earthtv.com/player_tmp/overlayad.js (easylistchina+easylist.txt: 58761) -.earthtv.com/player_tmp/overlayad\.js -# @@||earthtechling.com^*/imasters-wp-adserver-styles.css (easylistchina+easylist.txt: 58760) -.earthtechling.com/.*/imasters-wp-adserver-styles\.css -# @@||earthcam.com/swf/ads5.swf (easylistchina+easylist.txt: 58759) -.earthcam.com/swf/ads5\.swf -# @@||eagleboys.com.au/eagleboys/*/ads/$~third-party (easylistchina+easylist.txt: 58758) -.eagleboys.com.au/eagleboys/.*/ads/ -# @@||eafyfsuh.net/scripts/generated/key.js?t=$script (easylistchina+easylist.txt: 58757) -.eafyfsuh.net/scripts/generated/key\.js\?t= -# @@||eafyfsuh.net/intermission/loadTargetUrl?t=$xmlhttprequest (easylistchina+easylist.txt: 58756) -.eafyfsuh.net/intermission/loadTargetUrl\?t= -# @@||dyncdn.buzznet.com/catfiles/?f=dojo/*.googleadservices.$script (easylistchina+easylist.txt: 58755) -.dyncdn.buzznet.com/catfiles/\?f=dojo/.*\.googleadservices\. -# @@||dx.com/openx/$image,~third-party (easylistchina+easylist.txt: 58754) -.dx.com/openx/ -# @@||dwiextreme.com/banners/dwiextreme$image (easylistchina+easylist.txt: 58753) -.dwiextreme.com/banners/dwiextreme -# @@||dstw.adgear.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58751) -.dstw.adgear.com/crossdomain\.xml -# @@||drupal.org^*/revealads.png (easylistchina+easylist.txt: 58750) -.drupal.org/.*/revealads\.png -# @@||drunkard.com/banners/modern-drunkard-book.jpg (easylistchina+easylist.txt: 58749) -.drunkard.com/banners/modern-drunkard-book\.jpg -# @@||drunkard.com/banners/drunkard-gear.jpg (easylistchina+easylist.txt: 58748) -.drunkard.com/banners/drunkard-gear\.jpg -# @@||drunkard.com/banners/drunk-korps-banner.jpg (easylistchina+easylist.txt: 58747) -.drunkard.com/banners/drunk-korps-banner\.jpg -# @@||dropzone.no/sap/its/gfx/top_ad_$image,~third-party (easylistchina+easylist.txt: 58746) -.dropzone.no/sap/its/gfx/top_ad_ -# @@||dragon-mania-legends-wiki.mobga.me^*_Advertisement_ (easylistchina+easylist.txt: 58741) -.dragon-mania-legends-wiki.mobga.me/.*_Advertisement_ -# @@||dragon-mania-legends-wiki.mobga.me^*_advertisement. (easylistchina+easylist.txt: 58740) -.dragon-mania-legends-wiki.mobga.me/.*_advertisement\. -# @@||downvids.net/ads.js (easylistchina+easylist.txt: 58739) -.downvids.net/ads\.js -# @@||dove.saymedia.com^$xmlhttprequest (easylistchina+easylist.txt: 58738) -.dove.saymedia.com -# @@||doubleclick.net^*/targeted.optimum/*;sz=968x286;$image,popup,script (easylistchina+easylist.txt: 58735) -.doubleclick.net/.*/targeted\.optimum/.*;sz=968x286; -# @@||doubleclick.net^*/adj/wwe.shows/ecw_ecwreplay;*;sz=624x325;$script (easylistchina+easylist.txt: 58731) -.doubleclick.net/.*/adj/wwe\.shows/ecw_ecwreplay;.*;sz=624x325; -# @@||doubleclick.net/pfadx/umg.*;sz=10x$script (easylistchina+easylist.txt: 58727) -.doubleclick.net/pfadx/umg\..*;sz=10x -# @@||doubleclick.net/N2605/adi/MiLB.com/scoreboard;*;sz=728x90;$subdocument (easylistchina+easylist.txt: 58722) -.doubleclick.net/N2605/adi/MiLB\.com/scoreboard;.*;sz=728x90; -# @@||doubleclick.net/adj/pong.all/*;dcopt=ist;$script (easylistchina+easylist.txt: 58716) -.doubleclick.net/adj/pong\.all/.*;dcopt=ist; -# @@||doubleclick.net/adj/nbcu.nbc/videoplayer-$script (easylistchina+easylist.txt: 58713) -.doubleclick.net/adj/nbcu\.nbc/videoplayer- -# @@||doubleclick.net/adj/imdb2.consumer.video/*;sz=320x240,$script (easylistchina+easylist.txt: 58711) -.doubleclick.net/adj/imdb2\.consumer\.video/.*;sz=320x240, -# @@||doubleclick.net/adj/ctv.muchmusicblog.com/$script (easylistchina+easylist.txt: 58709) -.doubleclick.net/adj/ctv\.muchmusicblog\.com/ -# @@||doubleclick.net/adi/amzn.*;ri=digital-music-track;$subdocument (easylistchina+easylist.txt: 58696) -.doubleclick.net/adi/amzn\..*;ri=digital-music-track; -# @@||doubleclick.net/ad/can/chow/$object-subrequest (easylistchina+easylist.txt: 58692) -.doubleclick.net/ad/can/chow/ -# @@||domandgeri.com/banners/$~third-party (easylistchina+easylist.txt: 58689) -.domandgeri.com/banners/ -# @@||dolphinimaging.com/banners/ (easylistchina+easylist.txt: 58688) -.dolphinimaging.com/banners/ -# @@||dolphinimaging.com/banners.js (easylistchina+easylist.txt: 58687) -.dolphinimaging.com/banners\.js -# @@||dolidoli.com/images/ads- (easylistchina+easylist.txt: 58685) -.dolidoli.com/images/ads- -# @@||doityourself.com^*/shared/ads.css$stylesheet (easylistchina+easylist.txt: 58684) -.doityourself.com/.*/shared/ads\.css -# @@||disruptorbeam.com/assets/uploaded/ads/$image,~third-party (easylistchina+easylist.txt: 58681) -.disruptorbeam.com/assets/uploaded/ads/ -# @@||disneyphotopass.com/adimages/ (easylistchina+easylist.txt: 58680) -.disneyphotopass.com/adimages/ -# @@||disney.go.com/dxd/data/ads/game_ad.xml?gameid=$object-subrequest (easylistchina+easylist.txt: 58679) -.disney.go.com/dxd/data/ads/game_ad\.xml\?gameid= -# @@||disney.com.au/global/swf/banner300x250.swf (easylistchina+easylist.txt: 58678) -.disney.com.au/global/swf/banner300x250\.swf -# @@||discovery.com/components/consolidate-static/?files=*/adsense- (easylistchina+easylist.txt: 58677) -.discovery.com/components/consolidate-static/\?files=.*/adsense- -# @@||directwonen.nl/adverts/$~third-party (easylistchina+easylist.txt: 58676) -.directwonen.nl/adverts/ -# @@||directtextbook.com^*.php?ad_ (easylistchina+easylist.txt: 58675) -.directtextbook.com/.*\.php\?ad_ -# @@||direct.fairfax.com.au/hserver/*/site=vid.*/adtype=embedded/$script (easylistchina+easylist.txt: 58673) -.direct.fairfax.com.au/hserver/.*/site=vid\..*/adtype=embedded/ -# @@||digsby.com/affiliate/banners/$image,~third-party (easylistchina+easylist.txt: 58672) -.digsby.com/affiliate/banners/ -# @@||digiads.com.au/images/shared/misc/ad-disclaimer.gif (easylistchina+easylist.txt: 58671) -.digiads.com.au/images/shared/misc/ad-disclaimer\.gif -# @@||digiads.com.au/css/24032006/adstyle.css (easylistchina+easylist.txt: 58670) -.digiads.com.au/css/24032006/adstyle\.css -# @@||deviantart.net/minish/advertising/downloadad_splash_close.png (easylistchina+easylist.txt: 58669) -.deviantart.net/minish/advertising/downloadad_splash_close\.png -# @@||design-essentials.net/affiliate/$script,subdocument (easylistchina+easylist.txt: 58667) -.design-essentials.net/affiliate/ -# @@||delvenetworks.com/player/*_ad_$subdocument (easylistchina+easylist.txt: 58665) -.delvenetworks.com/player/.*_ad_ -# @@||delish.com/cm/shared/scripts/refreshads-*.js (easylistchina+easylist.txt: 58663) -.delish.com/cm/shared/scripts/refreshads-.*\.js -# @@||deliciousdigital.com/data/our-work/advertising/ (easylistchina+easylist.txt: 58662) -.deliciousdigital.com/data/our-work/advertising/ -# @@||delicious.com^*/compose?url=$xmlhttprequest (easylistchina+easylist.txt: 58661) -.delicious.com/.*/compose\?url= -# @@||dealerimg.com/Ads/$image (easylistchina+easylist.txt: 58660) -.dealerimg.com/Ads/ -# @@||dc.tremormedia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58659) -.dc.tremormedia.com/crossdomain\.xml -# @@||dawanda.com^*/adcenter.js$~third-party (easylistchina+easylist.txt: 58658) -.dawanda.com/.*/adcenter\.js -# @@||dawanda.com^*/ad_center.css$~third-party (easylistchina+easylist.txt: 58657) -.dawanda.com/.*/ad_center\.css -# @@||davidsilverspares.co.uk/graphics/*_ad.gif$~third-party (easylistchina+easylist.txt: 58656) -.davidsilverspares.co.uk/graphics/.*_ad\.gif -# @@||davescomputertips.com/images/ads/paypal.png (easylistchina+easylist.txt: 58655) -.davescomputertips.com/images/ads/paypal\.png -# @@||dataknet.com/s.axd?$stylesheet (easylistchina+easylist.txt: 58654) -.dataknet.com/s\.axd\? -# @@||data.panachetech.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58652) -.data.panachetech.com/crossdomain\.xml -# @@||dart.clearchannel.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58651) -.dart.clearchannel.com/crossdomain\.xml -# @@||danielechevarria.com^*/advertising-$~third-party (easylistchina+easylist.txt: 58650) -.danielechevarria.com/.*/advertising- -# @@||dailypilot.com/hive/images/adv_ (easylistchina+easylist.txt: 58649) -.dailypilot.com/hive/images/adv_ -# @@||dailymotion.com/videowall/*&clickTAG=http (easylistchina+easylist.txt: 58648) -.dailymotion.com/videowall/.*&clickTAG=http -# @@||dailymail.co.uk^*/googleads--.js (easylistchina+easylist.txt: 58647) -.dailymail.co.uk/.*/googleads--\.js -# @@||dailyhiit.com/sites/*/ad-images/ (easylistchina+easylist.txt: 58646) -.dailyhiit.com/sites/.*/ad-images/ -# @@||dailycaller.com/wp-content/plugins/advertisements/$script (easylistchina+easylist.txt: 58645) -.dailycaller.com/wp-content/plugins/advertisements/ -# @@||d3con.org/data1/$image,~third-party (easylistchina+easylist.txt: 58641) -.d3con.org/data1/ -# @@||cydiaupdates.net/CydiaUpdates.com_600x80.png (easylistchina+easylist.txt: 58639) -.cydiaupdates.net/CydiaUpdates\.com_600x80\.png -# @@||cwtv.com^$elemhide (easylistchina+easylist.txt: 58638) -.cwtv.com -# @@||cvs.com/webcontent/images/weeklyad/adcontent/$~third-party (easylistchina+easylist.txt: 58637) -.cvs.com/webcontent/images/weeklyad/adcontent/ -# @@||cubeecraft.com/openx/$~third-party (easylistchina+easylist.txt: 58636) -.cubeecraft.com/openx/ -# @@||ctv.ca/players/mediaplayer/*/AdManager.js^ (easylistchina+easylist.txt: 58635) -.ctv.ca/players/mediaplayer/.*/AdManager\.js[^\w%.-] -# @@||css.wpdigital.net/wpost/css/combo?*/ads.css (easylistchina+easylist.txt: 58634) -.css.wpdigital.net/wpost/css/combo\?.*/ads\.css -# @@||csoonline.com/js/doubleclick_ads.js? (easylistchina+easylist.txt: 58633) -.csoonline.com/js/doubleclick_ads\.js\? -# @@||csmonitor.com/advertising/sharetools.php$subdocument (easylistchina+easylist.txt: 58632) -.csmonitor.com/advertising/sharetools\.php -# @@||csair.com/*/adpic.js (easylistchina+easylist.txt: 58631) -.csair.com/.*/adpic\.js -# @@||cricketcountry.com/js/ad-gallery.js$script (easylistchina+easylist.txt: 58630) -.cricketcountry.com/js/ad-gallery\.js -# @@||cricbuzz.com/includes/ads/schedule/$~third-party (easylistchina+easylist.txt: 58629) -.cricbuzz.com/includes/ads/schedule/ -# @@||cricbuzz.com/includes/ads/images/worldcup/more_arrow_$image (easylistchina+easylist.txt: 58628) -.cricbuzz.com/includes/ads/images/worldcup/more_arrow_ -# @@||cricbuzz.com/includes/ads/images/wct20/$image (easylistchina+easylist.txt: 58627) -.cricbuzz.com/includes/ads/images/wct20/ -# @@||cracker.com.au^*/cracker-classifieds-free-ads.$~document (easylistchina+easylist.txt: 58626) -.cracker.com.au/.*/cracker-classifieds-free-ads\. -# @@||countryliving.com/ams/page-ads.js (easylistchina+easylist.txt: 58625) -.countryliving.com/ams/page-ads\.js -# @@||cosmopolitan.com/cm/shared/scripts/refreshads-$script (easylistchina+easylist.txt: 58624) -.cosmopolitan.com/cm/shared/scripts/refreshads- -# @@||cosmopolitan.com/ams/page-ads.js (easylistchina+easylist.txt: 58623) -.cosmopolitan.com/ams/page-ads\.js -# @@||corporatehousingbyowner.com/js/ad-gallery.js (easylistchina+easylist.txt: 58622) -.corporatehousingbyowner.com/js/ad-gallery\.js -# @@||copesdistributing.com/images/adds/banner_$~third-party (easylistchina+easylist.txt: 58621) -.copesdistributing.com/images/adds/banner_ -# @@||content.hallmark.com/scripts/ecards/adspot.js (easylistchina+easylist.txt: 58620) -.content.hallmark.com/scripts/ecards/adspot\.js -# @@||content.datingfactory.com/promotools/$script (easylistchina+easylist.txt: 58619) -.content.datingfactory.com/promotools/ -# @@||contactmusic.com/advertpro/servlet/view/dynamic/$object-subrequest (easylistchina+easylist.txt: 58616) -.contactmusic.com/advertpro/servlet/view/dynamic/ -# @@||constructalia.com/banners/$image,~third-party (easylistchina+easylist.txt: 58615) -.constructalia.com/banners/ -# @@||connectingdirectories.com/advertisers/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58614) -.connectingdirectories.com/advertisers/ -# @@||comsec.com.au^*/homepage_banner_ad.gif (easylistchina+easylist.txt: 58612) -.comsec.com.au/.*/homepage_banner_ad\.gif -# @@||computerworld.com/resources/scripts/lib/doubleclick_ads.js$script (easylistchina+easylist.txt: 58611) -.computerworld.com/resources/scripts/lib/doubleclick_ads\.js -# @@||completemarkets.com/pictureHandler.ashx?adid=$image,~third-party (easylistchina+easylist.txt: 58610) -.completemarkets.com/pictureHandler\.ashx\?adid= -# @@||commarts.com/Images/missinganissue_ad.gif (easylistchina+easylist.txt: 58609) -.commarts.com/Images/missinganissue_ad\.gif -# @@||colorado.gov/airquality/psi/adv.png (easylistchina+easylist.txt: 58606) -.colorado.gov/airquality/psi/adv\.png -# @@||collective-media.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58604) -.collective-media.net/crossdomain\.xml -# @@||coastlinepilot.com/hive/images/adv_ (easylistchina+easylist.txt: 58603) -.coastlinepilot.com/hive/images/adv_ -# @@||cnet.com/ad/ad-cookie/*?_=$xmlhttprequest (easylistchina+easylist.txt: 58602) -.cnet.com/ad/ad-cookie/.*\?_= -# @@||clustrmaps.com/images/clustrmaps-back-soon.jpg$third-party (easylistchina+easylist.txt: 58601) -.clustrmaps.com/images/clustrmaps-back-soon\.jpg -# @@||club777.com/banners/$~third-party (easylistchina+easylist.txt: 58600) -.club777.com/banners/ -# @@||clickbd.com^*/ads/$image,~third-party (easylistchina+easylist.txt: 58597) -.clickbd.com/.*/ads/ -# @@||cleveland.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58596) -.cleveland.com/static/common/js/ads/ads\.js -# @@||classistatic.com^*/banner-ads/ (easylistchina+easylist.txt: 58595) -.classistatic.com/.*/banner-ads/ -# @@||classifieds.wsj.com/ad/$~third-party (easylistchina+easylist.txt: 58594) -.classifieds.wsj.com/ad/ -# @@||classifiedads.com/adbox.php$xmlhttprequest (easylistchina+easylist.txt: 58593) -.classifiedads.com/adbox\.php -# @@||cio.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 58592) -.cio.com/www/js/ads/gpt_includes\.js -# @@||christianhouseshare.com.au/images/publish_ad1.jpg (easylistchina+easylist.txt: 58591) -.christianhouseshare.com.au/images/publish_ad1\.jpg -# @@||chicavenue.com.au/assets/ads/$image,~third-party (easylistchina+easylist.txt: 58590) -.chicavenue.com.au/assets/ads/ -# @@||chibis.adotube.com/napp/$object,object-subrequest (easylistchina+easylist.txt: 58589) -.chibis.adotube.com/napp/ -# @@||chibis.adotube.com/appRuntime/swfobject/$script (easylistchina+easylist.txt: 58588) -.chibis.adotube.com/appRuntime/swfobject/ -# @@||chibis.adotube.com/appruntime/player/$object,object-subrequest (easylistchina+easylist.txt: 58587) -.chibis.adotube.com/appruntime/player/ -# @@||chemistwarehouse.com.au/images/AdImages/ (easylistchina+easylist.txt: 58586) -.chemistwarehouse.com.au/images/AdImages/ -# @@||checkm8.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58585) -.checkm8.com/crossdomain\.xml -# @@||checkerdist.com/product-detail.cfm?*advert_id=$~third-party (easylistchina+easylist.txt: 58583) -.checkerdist.com/product-detail\.cfm\?.*advert_id= -# @@||cheapoair.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 58582) -.cheapoair.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||cheapoair.ca/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 58581) -.cheapoair.ca/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||chase.com^*/adserving/ (easylistchina+easylist.txt: 58580) -.chase.com/.*/adserving/ -# @@||chase.com/content/*/ads/$image,~third-party (easylistchina+easylist.txt: 58579) -.chase.com/content/.*/ads/ -# @@||channel4.com/media/scripts/oasconfig/siteads.js (easylistchina+easylist.txt: 58577) -.channel4.com/media/scripts/oasconfig/siteads\.js -# @@||cerebral.s4.bizhat.com/banners/$image,~third-party (easylistchina+easylist.txt: 58576) -.cerebral.s4.bizhat.com/banners/ -# @@||cellc.co.za/adserv/$image,object,script,~third-party (easylistchina+easylist.txt: 58575) -.cellc.co.za/adserv/ -# @@||cdn.turner.com^*/video/336x280_ad.gif (easylistchina+easylist.txt: 58573) -.cdn.turner.com/.*/video/336x280_ad\.gif -# @@||cdn.travidia.com/rop-sub/$image (easylistchina+easylist.txt: 58572) -.cdn.travidia.com/rop-sub/ -# @@||cdn.travidia.com/rop-ad/$image (easylistchina+easylist.txt: 58571) -.cdn.travidia.com/rop-ad/ -# @@||cdn.travidia.com/fsi-page/$image (easylistchina+easylist.txt: 58570) -.cdn.travidia.com/fsi-page/ -# @@||cdn.pch.com/spectrummedia/spectrum/adunit/ (easylistchina+easylist.txt: 58569) -.cdn.pch.com/spectrummedia/spectrum/adunit/ -# @@||cdn.ndtv.com/static/js/ads.js (easylistchina+easylist.txt: 58568) -.cdn.ndtv.com/static/js/ads\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/writecapture.js (easylistchina+easylist.txt: 58560) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/writecapture\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/swfobject.js (easylistchina+easylist.txt: 58559) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/swfobject\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jwplayerl.js (easylistchina+easylist.txt: 58558) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jwplayerl\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jquery.writecapture.js (easylistchina+easylist.txt: 58557) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jquery\.writecapture\.js -# @@||cbsistatic.com^*/sticky-ads.js? (easylistchina+easylist.txt: 58553) -.cbsistatic.com/.*/sticky-ads\.js\? -# @@||cbs.com/sitecommon/includes/cacheable/combine.php?*/adfunctions. (easylistchina+easylist.txt: 58550) -.cbs.com/sitecommon/includes/cacheable/combine\.php\?.*/adfunctions\. -# @@||cbc.ca/ads/*.php?$xmlhttprequest (easylistchina+easylist.txt: 58549) -.cbc.ca/ads/.*\.php\? -# @@||carzone.ie/es-ie/*advert$image,script,stylesheet (easylistchina+easylist.txt: 58547) -.carzone.ie/es-ie/.*advert -# @@||caranddriver.com/tools/iframe/?$subdocument (easylistchina+easylist.txt: 58546) -.caranddriver.com/tools/iframe/\? -# @@||caranddriver.com/assets/js/ads/ads-combined.min.js (easylistchina+easylist.txt: 58545) -.caranddriver.com/assets/js/ads/ads-combined\.min\.js -# @@||carambo.la^*/GetAds|$xmlhttprequest (easylistchina+easylist.txt: 58544) -.carambo.la/.*/GetAds$ -# @@||capitalone360.com/js/adwizard/adwizard_homepage.js? (easylistchina+easylist.txt: 58543) -.capitalone360.com/js/adwizard/adwizard_homepage\.js\? -# @@||candystand.com/assets/images/ads/$image (easylistchina+easylist.txt: 58542) -.candystand.com/assets/images/ads/ -# @@||canadianlisted.com/css/*/ad/index.css (easylistchina+easylist.txt: 58541) -.canadianlisted.com/css/.*/ad/index\.css -# @@||cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240.jpg (easylistchina+easylist.txt: 58539) -.cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240\.jpg -# @@||calgarysun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 58538) -.calgarysun.com/assets/js/dfp\.js\? -# @@||cache.nymag.com/scripts/ad_manager.js (easylistchina+easylist.txt: 58537) -.cache.nymag.com/scripts/ad_manager\.js -# @@||bworldonline.com/adserver/ (easylistchina+easylist.txt: 58536) -.bworldonline.com/adserver/ -# @@||buyselltrade.ca/adimages/$image,~third-party (easylistchina+easylist.txt: 58535) -.buyselltrade.ca/adimages/ -# @@||buyforlessok.com/advertising/ (easylistchina+easylist.txt: 58534) -.buyforlessok.com/advertising/ -# @@||buyandsell.ie/images/ads/$~third-party (easylistchina+easylist.txt: 58533) -.buyandsell.ie/images/ads/ -# @@||buyandsell.ie/ads/$~third-party (easylistchina+easylist.txt: 58532) -.buyandsell.ie/ads/ -# @@||buyandsell.ie/ad/$~third-party (easylistchina+easylist.txt: 58531) -.buyandsell.ie/ad/ -# @@||buy.com/buy_assets/addeals/$~third-party (easylistchina+easylist.txt: 58530) -.buy.com/buy_assets/addeals/ -# @@||butlereagle.com/static/ads/ (easylistchina+easylist.txt: 58529) -.butlereagle.com/static/ads/ -# @@||business-supply.com/images/adrotator/ (easylistchina+easylist.txt: 58528) -.business-supply.com/images/adrotator/ -# @@||burfordadvertising.com/advertising/$~third-party (easylistchina+easylist.txt: 58527) -.burfordadvertising.com/advertising/ -# @@||burbankleader.com/hive/images/adv_ (easylistchina+easylist.txt: 58526) -.burbankleader.com/hive/images/adv_ -# @@||btrll.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58524) -.btrll.com/crossdomain\.xml -# @@||bthomehub.home/images/adv_ (easylistchina+easylist.txt: 58523) -.bthomehub.home/images/adv_ -# @@||bsvideos.com/json/ad.php? (easylistchina+easylist.txt: 58522) -.bsvideos.com/json/ad\.php\? -# @@||brothersoft.com/gads/coop_show_download.php?soft_id=$script (easylistchina+easylist.txt: 58521) -.brothersoft.com/gads/coop_show_download\.php\?soft_id= -# @@||brocraft.net/js/banners.js (easylistchina+easylist.txt: 58520) -.brocraft.net/js/banners\.js -# @@||britishairways.com/cms/global/styles/*/openx.css (easylistchina+easylist.txt: 58519) -.britishairways.com/cms/global/styles/.*/openx\.css -# @@||britannica.com/resources/images/shared/ad-loading.gif (easylistchina+easylist.txt: 58518) -.britannica.com/resources/images/shared/ad-loading\.gif -# @@||brightcove.com^*bannerid$third-party (easylistchina+easylist.txt: 58517) -.brightcove.com/.*bannerid -# @@||brainient.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58515) -.brainient.com/crossdomain\.xml -# @@||boxedlynch.com/advertising-gallery.html (easylistchina+easylist.txt: 58514) -.boxedlynch.com/advertising-gallery\.html -# @@||box10.com/advertising/*-preroll.swf (easylistchina+easylist.txt: 58513) -.box10.com/advertising/.*-preroll\.swf -# @@||boston.com/images/ads/yourtown_social_widget/$image (easylistchina+easylist.txt: 58512) -.boston.com/images/ads/yourtown_social_widget/ -# @@||bonappetit.com^*/cn.dart.js (easylistchina+easylist.txt: 58510) -.bonappetit.com/.*/cn\.dart\.js -# @@||bonappetit.com/ams/page-ads.js? (easylistchina+easylist.txt: 58509) -.bonappetit.com/ams/page-ads\.js\? -# @@||boats.com/ad/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58508) -.boats.com/ad/ -# @@||bnbfinder.com/adv_getCity.php?$xmlhttprequest (easylistchina+easylist.txt: 58507) -.bnbfinder.com/adv_getCity\.php\? -# @@||bluetree.co.uk/hji/advertising.$object-subrequest (easylistchina+easylist.txt: 58506) -.bluetree.co.uk/hji/advertising\. -# @@||bluetooth.com/banners/ (easylistchina+easylist.txt: 58505) -.bluetooth.com/banners/ -# @@||bloomberg.com/rapi/ads/js_config.js (easylistchina+easylist.txt: 58504) -.bloomberg.com/rapi/ads/js_config\.js -# @@||blastro.com/pl_ads.php?$object-subrequest (easylistchina+easylist.txt: 58503) -.blastro.com/pl_ads\.php\? -# @@||blackshoppingchannel.com^*/com_adagency/$~third-party (easylistchina+easylist.txt: 58502) -.blackshoppingchannel.com/.*/com_adagency/ -# @@||blackshoppingchannel.com^*/ad_agency/$~third-party (easylistchina+easylist.txt: 58501) -.blackshoppingchannel.com/.*/ad_agency/ -# @@||bing.net/images/thumbnail.aspx?q=$image (easylistchina+easylist.txt: 58500) -.bing.net/images/thumbnail\.aspx\?q= -# @@||bing.com/maps/Ads.ashx$xmlhttprequest (easylistchina+easylist.txt: 58499) -.bing.com/maps/Ads\.ashx -# @@||bing.com/images/async?q=$xmlhttprequest (easylistchina+easylist.txt: 58498) -.bing.com/images/async\?q= -# @@||bikeexchange.com.au/adverts/ (easylistchina+easylist.txt: 58497) -.bikeexchange.com.au/adverts/ -# @@||bigfishaudio.com/banners/$image (easylistchina+easylist.txt: 58496) -.bigfishaudio.com/banners/ -# @@||betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ (easylistchina+easylist.txt: 58494) -.betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ -# @@||betar.gov.bd/wp-content/plugins/useful-banner-manager/ (easylistchina+easylist.txt: 58493) -.betar.gov.bd/wp-content/plugins/useful-banner-manager/ -# @@||bellaliant.net^*/banners/ads/$image,~third-party (easylistchina+easylist.txt: 58492) -.bellaliant.net/.*/banners/ads/ -# @@||bebusiness.eu/js/adview.js (easylistchina+easylist.txt: 58491) -.bebusiness.eu/js/adview\.js -# @@||beatthebrochure.com/js/jquery.popunder.js (easylistchina+easylist.txt: 58490) -.beatthebrochure.com/js/jquery\.popunder\.js -# @@||barafranca.*/banner.php| (easylistchina+easylist.txt: 58480) -.barafranca.*./(.*/)?banner\.php$ -# @@||banners.wunderground.com^$image (easylistchina+easylist.txt: 58478) -.banners.wunderground.com -# @@||banners.goldbroker.com/widget/ (easylistchina+easylist.txt: 58477) -.banners.goldbroker.com/widget/ -# @@||banners.gametracker.rs^$image (easylistchina+easylist.txt: 58476) -.banners.gametracker.rs -# @@||bannerfans.com/banners/$image,~third-party (easylistchina+easylist.txt: 58474) -.bannerfans.com/banners/ -# @@||banner4five.com/banners/$~third-party (easylistchina+easylist.txt: 58473) -.banner4five.com/banners/ -# @@||bankofamerica.com^*?adx=$xmlhttprequest (easylistchina+easylist.txt: 58471) -.bankofamerica.com/.*\?adx= -# @@||bahtsold.com/assets/images/ads/no_img_main.png (easylistchina+easylist.txt: 58470) -.bahtsold.com/assets/images/ads/no_img_main\.png -# @@||bahtsold.com/assets/home/openx/Thailand/$image,~third-party (easylistchina+easylist.txt: 58469) -.bahtsold.com/assets/home/openx/Thailand/ -# @@||bafta.org/static/site/javascript/banners.js (easylistchina+easylist.txt: 58468) -.bafta.org/static/site/javascript/banners\.js -# @@||backpackinglight.com/backpackinglight/ads/banner-$~third-party (easylistchina+easylist.txt: 58467) -.backpackinglight.com/backpackinglight/ads/banner- -# @@||aviationexplorer.com/airline_aviation_ads/ (easylistchina+easylist.txt: 58464) -.aviationexplorer.com/airline_aviation_ads/ -# @@||aviationdocumentstorage.com/Av_Docs/CSS/ADS-1.css (easylistchina+easylist.txt: 58463) -.aviationdocumentstorage.com/Av_Docs/CSS/ADS-1\.css -# @@||aviationclassifieds.com/adimg/$image,~third-party (easylistchina+easylist.txt: 58462) -.aviationclassifieds.com/adimg/ -# @@||avclub.com/ads/av-video-ad/$xmlhttprequest (easylistchina+easylist.txt: 58461) -.avclub.com/ads/av-video-ad/ -# @@||autotrader.co.uk^*_adverts/$xmlhttprequest (easylistchina+easylist.txt: 58460) -.autotrader.co.uk/.*_adverts/ -# @@||autotrader.co.uk^*/advert/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58459) -.autotrader.co.uk/.*/advert/ -# @@||autotrader.co.uk/static/*/images/adv/icons.png (easylistchina+easylist.txt: 58458) -.autotrader.co.uk/static/.*/images/adv/icons\.png -# @@||autotrader.co.uk/advert/$xmlhttprequest (easylistchina+easylist.txt: 58457) -.autotrader.co.uk/advert/ -# @@||autogespot.info/upload/ads/$image (easylistchina+easylist.txt: 58456) -.autogespot.info/upload/ads/ -# @@||auditude.com^*/AuditudeAdUnit.swf$object-subrequest (easylistchina+easylist.txt: 58453) -.auditude.com/.*/AuditudeAdUnit\.swf -# @@||auditude.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58452) -.auditude.com/crossdomain\.xml -# @@||auctionzip.com/cgi-bin/showimage.cgi? (easylistchina+easylist.txt: 58450) -.auctionzip.com/cgi-bin/showimage\.cgi\? -# @@||att.com/images/*/admanager/ (easylistchina+easylist.txt: 58448) -.att.com/images/.*/admanager/ -# @@||athena365.com/web/components/ads/rma.html (easylistchina+easylist.txt: 58447) -.athena365.com/web/components/ads/rma\.html -# @@||asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training.png (easylistchina+easylist.txt: 58446) -.asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training\.png -# @@||assiniboine.mb.ca/files/intrasite_ads/ (easylistchina+easylist.txt: 58443) -.assiniboine.mb.ca/files/intrasite_ads/ -# @@||asrock.com/images/ad-$~third-party (easylistchina+easylist.txt: 58441) -.asrock.com/images/ad- -# @@||asiasold.com/assets/home/openx/$image,~third-party (easylistchina+easylist.txt: 58440) -.asiasold.com/assets/home/openx/ -# @@||as.webmd.com/html.ng/transactionid=$object-subrequest,script,subdocument (easylistchina+easylist.txt: 58439) -.as.webmd.com/html\.ng/transactionid= -# @@||as.bankrate.com/RealMedia/ads/adstream_mjx.ads/$script,~third-party (easylistchina+easylist.txt: 58437) -.as.bankrate.com/RealMedia/ads/adstream_mjx\.ads/ -# @@||arti-mediagroup.com/flowplayer/amta_plugin.swf$object-subrequest (easylistchina+easylist.txt: 58436) -.arti-mediagroup.com/flowplayer/amta_plugin\.swf -# @@||arti-mediagroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58435) -.arti-mediagroup.com/crossdomain\.xml -# @@||arthurbrokerage.com/Websites/arthur/templates/overture/ (easylistchina+easylist.txt: 58434) -.arthurbrokerage.com/Websites/arthur/templates/overture/ -# @@||armorgames.com^$elemhide (easylistchina+easylist.txt: 58433) -.armorgames.com -# @@||area51.stackexchange.com/ads/$image (easylistchina+easylist.txt: 58432) -.area51.stackexchange.com/ads/ -# @@||architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite.png (easylistchina+easylist.txt: 58431) -.architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite\.png -# @@||archiproducts.com/adv/ (easylistchina+easylist.txt: 58430) -.archiproducts.com/adv/ -# @@||archaeologydataservice.ac.uk/images/ads_$image (easylistchina+easylist.txt: 58429) -.archaeologydataservice.ac.uk/images/ads_ -# @@||apwg.org/images/sponsors/ (easylistchina+easylist.txt: 58428) -.apwg.org/images/sponsors/ -# @@||apps.digmyweb.com/ads?$xmlhttprequest (easylistchina+easylist.txt: 58427) -.apps.digmyweb.com/ads\? -# @@||applegate.co.uk/stats/recordclick.html?$xmlhttprequest (easylistchina+easylist.txt: 58426) -.applegate.co.uk/stats/recordclick\.html\? -# @@||apple.com^*/video-ad.html (easylistchina+easylist.txt: 58425) -.apple.com/.*/video-ad\.html -# @@||apple.com^*/includes/ads (easylistchina+easylist.txt: 58424) -.apple.com/.*/includes/ads -# @@||apple.com^*/ads/$object,object-subrequest,xmlhttprequest (easylistchina+easylist.txt: 58421) -.apple.com/.*/ads/ -# @@||apmex.com/resources/ads/ (easylistchina+easylist.txt: 58419) -.apmex.com/resources/ads/ -# @@||api.cirqle.nl^*&advertiserId=$script,xmlhttprequest (easylistchina+easylist.txt: 58414) -.api.cirqle.nl/.*&advertiserId= -# @@||aone-soft.com/style/images/ad*.jpg (easylistchina+easylist.txt: 58413) -.aone-soft.com/style/images/ad.*\.jpg -# @@||aolcdn.com/os_merge/?file=/aol/*.js&$script (easylistchina+easylist.txt: 58410) -.aolcdn.com/os_merge/\?file=/aol/.*\.js& -# @@||annfammed.org/adsystem/$image,~third-party (easylistchina+easylist.txt: 58407) -.annfammed.org/adsystem/ -# @@||andomediagroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58406) -.andomediagroup.com/crossdomain\.xml -# @@||andohs.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58405) -.andohs.net/crossdomain\.xml -# @@||andcorp.com.au^*.swf?clicktag= (easylistchina+easylist.txt: 58404) -.andcorp.com.au/.*\.swf\?clicktag= -# @@||ananzi.co.za/ads/$~third-party (easylistchina+easylist.txt: 58403) -.ananzi.co.za/ads/ -# @@||amwa.net/sites/default/files/styles/promotion_image/public/promotions/$~third-party (easylistchina+easylist.txt: 58402) -.amwa.net/sites/default/files/styles/promotion_image/public/promotions/ -# @@||amiblood.com/Images/ad.jpg (easylistchina+easylist.txt: 58401) -.amiblood.com/Images/ad\.jpg -# @@||amctv.com/commons/advertisement/js/AdFrame.js (easylistchina+easylist.txt: 58400) -.amctv.com/commons/advertisement/js/AdFrame\.js -# @@||amazon-adsystem.com/widgets/q?$image (easylistchina+easylist.txt: 58389) -.amazon-adsystem.com/widgets/q\? -# @@||alusa.org/store/modules/blockadvertising/$~third-party (easylistchina+easylist.txt: 58385) -.alusa.org/store/modules/blockadvertising/ -# @@||alphabaseinc.com/images/display_adz/$~third-party (easylistchina+easylist.txt: 58384) -.alphabaseinc.com/images/display_adz/ -# @@||allulook4.com/min/?$stylesheet (easylistchina+easylist.txt: 58383) -.allulook4.com/min/\? -# @@||alluc.ee/js/advertisement.js (easylistchina+easylist.txt: 58382) -.alluc.ee/js/advertisement\.js -# @@||allot.com/Banners/*.swf$object (easylistchina+easylist.txt: 58381) -.allot.com/Banners/.*\.swf -# @@||albumartexchange.com/gallery/images/public/ad/$image (easylistchina+easylist.txt: 58380) -.albumartexchange.com/gallery/images/public/ad/ -# @@||al.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58379) -.al.com/static/common/js/ads/ads\.js -# @@||akamaihd.net/hads-*.mp4? (easylistchina+easylist.txt: 58377) -.akamaihd.net/hads-.*\.mp4\? -# @@||ajmadison.com/images/adverts/ (easylistchina+easylist.txt: 58372) -.ajmadison.com/images/adverts/ -# @@||aiwip.com/static/images/advertisers/$image,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58371) -.aiwip.com/static/images/advertisers/ -# @@||aiwip.com/advertisers/$image,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58370) -.aiwip.com/advertisers/ -# @@||airplaydirect.com/openx/www/images/$image (easylistchina+easylist.txt: 58369) -.airplaydirect.com/openx/www/images/ -# @@||airguns.net/classifieds/ad_images/ (easylistchina+easylist.txt: 58368) -.airguns.net/classifieds/ad_images/ -# @@||airguns.net/advertisement_images/ (easylistchina+easylist.txt: 58367) -.airguns.net/advertisement_images/ -# @@||airbaltic.com/banners/$~third-party (easylistchina+easylist.txt: 58366) -.airbaltic.com/banners/ -# @@||aimsworldrunning.org/images/AD_Box_$image,~third-party (easylistchina+easylist.txt: 58365) -.aimsworldrunning.org/images/AD_Box_ -# @@||africam.com/adimages/ (easylistchina+easylist.txt: 58364) -.africam.com/adimages/ -# @@||affiliates.unpakt.com/widget_loader/widget_loader.js (easylistchina+easylist.txt: 58362) -.affiliates.unpakt.com/widget_loader/widget_loader\.js -# @@||affiliates.unpakt.com/widget/$subdocument (easylistchina+easylist.txt: 58361) -.affiliates.unpakt.com/widget/ -# @@||affiliate.skiamade.com^$subdocument,third-party (easylistchina+easylist.txt: 58358) -.affiliate.skiamade.com -# @@||affiliate.kickapps.com/service/ (easylistchina+easylist.txt: 58357) -.affiliate.kickapps.com/service/ -# @@||affiliate.kickapps.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58356) -.affiliate.kickapps.com/crossdomain\.xml -# @@||ae.amgdgt.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58354) -.ae.amgdgt.com/crossdomain\.xml -# @@||adworks.com.co^$~third-party (easylistchina+easylist.txt: 58352) -.adworks.com.co -# @@||adweb.pl^$~third-party (easylistchina+easylist.txt: 58351) -.adweb.pl -# @@||adweb.cis.mcmaster.ca^$~third-party (easylistchina+easylist.txt: 58350) -.adweb.cis.mcmaster.ca -# @@||advweb.ua.cmu.edu^$~third-party (easylistchina+easylist.txt: 58349) -.advweb.ua.cmu.edu -# @@||advisory.mtanyct.info/outsideWidget/widget.html?*.adPlacement=$subdocument (easylistchina+easylist.txt: 58348) -.advisory.mtanyct.info/outsideWidget/widget\.html\?.*\.adPlacement= -# @@||adverts.cdn.tvcatchup.com^$object-subrequest (easylistchina+easylist.txt: 58347) -.adverts.cdn.tvcatchup.com -# @@||advertising.vrisko.gr^$~third-party (easylistchina+easylist.txt: 58345) -.advertising.vrisko.gr -# @@||advertising.utexas.edu^$~third-party (easylistchina+easylist.txt: 58344) -.advertising.utexas.edu -# @@||advertising.theigroup.co.uk^$~third-party (easylistchina+easylist.txt: 58343) -.advertising.theigroup.co.uk -# @@||advertising.scoop.co.nz^ (easylistchina+easylist.txt: 58342) -.advertising.scoop.co.nz -# @@||advertising.racingpost.com^$image,script,stylesheet,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58341) -.advertising.racingpost.com -# @@||advertising.nzme.co.nz/media/$image,~third-party (easylistchina+easylist.txt: 58340) -.advertising.nzme.co.nz/media/ -# @@||advertising.autotrader.co.uk^$~third-party (easylistchina+easylist.txt: 58339) -.advertising.autotrader.co.uk -# @@||advertising.acne.se^$~third-party (easylistchina+easylist.txt: 58338) -.advertising.acne.se -# @@||advertiser.trialpay.com^$~third-party (easylistchina+easylist.txt: 58336) -.advertiser.trialpay.com -# @@||advertiser.seek.com.au^$~third-party (easylistchina+easylist.txt: 58335) -.advertiser.seek.com.au -# @@||advertiser.seek.co.nz^$~third-party (easylistchina+easylist.txt: 58334) -.advertiser.seek.co.nz -# @@||advertise.movem.co.uk^$~third-party (easylistchina+easylist.txt: 58333) -.advertise.movem.co.uk -# @@||advertise.azcentral.com^$~third-party (easylistchina+easylist.txt: 58331) -.advertise.azcentral.com -# @@||advantabankcorp.com/ADV/$~third-party (easylistchina+easylist.txt: 58330) -.advantabankcorp.com/ADV/ -# @@||adv.works^$~third-party (easylistchina+easylist.txt: 58329) -.adv.works -# @@||adv.li^$~third-party (easylistchina+easylist.txt: 58328) -.adv.li -# @@||adv.escreverdireito.com^$~third-party (easylistchina+easylist.txt: 58327) -.adv.escreverdireito.com -# @@||adv.erti.se^$~third-party (easylistchina+easylist.txt: 58326) -.adv.erti.se -# @@||adv.blogupp.com^ (easylistchina+easylist.txt: 58325) -.adv.blogupp.com -# @@||adv.*.przedsiebiorca.pl^$~third-party (easylistchina+easylist.txt: 58324) -.adv.*./.*\.przedsiebiorca\.pl[^\w%.-] -.adv.*.przedsiebiorca.pl -# @@||adultvideotorrents.com/assets/blockblock/advertisement.js (easylistchina+easylist.txt: 58323) -.adultvideotorrents.com/assets/blockblock/advertisement\.js -# @@||adtechus.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58321) -.adtechus.com/crossdomain\.xml -# @@||adtech.de/?advideo/3.0/1215.1/3228528/*;vidas=pre_roll;$object-subrequest (easylistchina+easylist.txt: 58316) -.adtech.de/\?advideo/3\.0/1215\.1/3228528/.*;vidas=pre_roll; -# @@||adssecurity.com/app_themes/ads/images/ (easylistchina+easylist.txt: 58313) -.adssecurity.com/app_themes/ads/images/ -# @@||adsremote.scrippsnetworks.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58310) -.adsremote.scrippsnetworks.com/crossdomain\.xml -# @@||adspot.lk^$~third-party (easylistchina+easylist.txt: 58309) -.adspot.lk -# @@||adsign.republika.pl^$~third-party (easylistchina+easylist.txt: 58306) -.adsign.republika.pl -# @@||adsign.no^$~third-party (easylistchina+easylist.txt: 58304) -.adsign.no -# @@||adshost1.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58302) -.adshost1.com/crossdomain\.xml -# @@||adserver.yahoo.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58300) -.adserver.yahoo.com/crossdomain\.xml -# @@||adserver.vidcoin.com^*/get_campaigns?$xmlhttprequest (easylistchina+easylist.txt: 58296) -.adserver.vidcoin.com/.*/get_campaigns\? -# @@||adserver.tvcatchup.com^$object-subrequest (easylistchina+easylist.txt: 58295) -.adserver.tvcatchup.com -# @@||adserver.bworldonline.com^ (easylistchina+easylist.txt: 58294) -.adserver.bworldonline.com -# @@||adserver.bigwigmedia.com/ingamead3.swf (easylistchina+easylist.txt: 58293) -.adserver.bigwigmedia.com/ingamead3\.swf -# @@||adseo.pl^$~third-party (easylistchina+easylist.txt: 58285) -.adseo.pl -# @@||adsbox.in^$~third-party (easylistchina+easylist.txt: 58284) -.adsbox.in -# @@||adsbox.com.sg^$~third-party (easylistchina+easylist.txt: 58283) -.adsbox.com.sg -# @@||ads1.msn.com/ads/pronws/$image (easylistchina+easylist.txt: 58281) -.ads1.msn.com/ads/pronws/ -# @@||ads.yimg.com^*videoadmodule*.swf (easylistchina+easylist.txt: 58278) -.ads.yimg.com/.*videoadmodule.*\.swf -# @@||ads.yimg.com^*/search/b/syc_logo_2.gif (easylistchina+easylist.txt: 58277) -.ads.yimg.com/.*/search/b/syc_logo_2\.gif -# @@||ads.yimg.com^*/any/yahoologo$image (easylistchina+easylist.txt: 58276) -.ads.yimg.com/.*/any/yahoologo -# @@||ads.yimg.com/ev/eu/any/vint/videointerstitial*.js (easylistchina+easylist.txt: 58274) -.ads.yimg.com/ev/eu/any/vint/videointerstitial.*\.js -# @@||ads.undertone.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58272) -.ads.undertone.com/crossdomain\.xml -# @@||ads.trutv.com/html.ng/tile=*&site=trutv&tru_tv_pos=preroll&$object-subrequest (easylistchina+easylist.txt: 58270) -.ads.trutv.com/html\.ng/tile=.*&site=trutv&tru_tv_pos=preroll& -# @@||ads.trutv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58269) -.ads.trutv.com/crossdomain\.xml -# @@||ads.trackitdown.net/delivery/afr.php?zoneid=6&$subdocument,~third-party (easylistchina+easylist.txt: 58268) -.ads.trackitdown.net/delivery/afr\.php\?zoneid=6& -# @@||ads.sudpresse.be/adview.php?what=zone:$image (easylistchina+easylist.txt: 58266) -.ads.sudpresse.be/adview\.php\?what=zone: -# @@||ads.songs.pk/openx/www/delivery/ (easylistchina+easylist.txt: 58264) -.ads.songs.pk/openx/www/delivery/ -# @@||ads.socialtheater.com^$~third-party (easylistchina+easylist.txt: 58263) -.ads.socialtheater.com -# @@||ads.smartfeedads.com^$~third-party (easylistchina+easylist.txt: 58262) -.ads.smartfeedads.com -# @@||ads.seriouswheels.com^$~third-party (easylistchina+easylist.txt: 58260) -.ads.seriouswheels.com -# @@||ads.pinterest.com^$~third-party (easylistchina+easylist.txt: 58257) -.ads.pinterest.com -# @@||ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ (easylistchina+easylist.txt: 58256) -.ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ -# @@||ads.nyootv.com:8080/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58255) -.ads.nyootv.com:8080/crossdomain\.xml -# @@||ads.nyootv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58254) -.ads.nyootv.com/crossdomain\.xml -# @@||ads.nationmedia.com/webfonts/$font (easylistchina+easylist.txt: 58253) -.ads.nationmedia.com/webfonts/ -# @@||ads.mycricket.com/www/delivery/ajs.php?zoneid=$script,~third-party (easylistchina+easylist.txt: 58252) -.ads.mycricket.com/www/delivery/ajs\.php\?zoneid= -# @@||ads.memo2.nl^ (easylistchina+easylist.txt: 58251) -.ads.memo2.nl -# @@||ads.mefeedia.com/flash/flowplayer.controls-3.0.2.min.js (easylistchina+easylist.txt: 58250) -.ads.mefeedia.com/flash/flowplayer\.controls-3\.0\.2\.min\.js -# @@||ads.mefeedia.com/flash/flowplayer-3.1.2.min.js (easylistchina+easylist.txt: 58249) -.ads.mefeedia.com/flash/flowplayer-3\.1\.2\.min\.js -# @@||ads.m1.com.sg^$~third-party (easylistchina+easylist.txt: 58248) -.ads.m1.com.sg -# @@||ads.intergi.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58244) -.ads.intergi.com/crossdomain\.xml -# @@||ads.indeed.com^$~third-party (easylistchina+easylist.txt: 58242) -.ads.indeed.com -# @@||ads.healthline.com/v2/adajax?$subdocument (easylistchina+easylist.txt: 58241) -.ads.healthline.com/v2/adajax\? -# @@||ads.golfweek.com^$~third-party (easylistchina+easylist.txt: 58240) -.ads.golfweek.com -# @@||ads.globo.com^*/globovideo/player/ (easylistchina+easylist.txt: 58239) -.ads.globo.com/.*/globovideo/player/ -# @@||ads.fusac.fr^$~third-party (easylistchina+easylist.txt: 58238) -.ads.fusac.fr -# @@||ads.foxnews.com/js/omtr_code.js (easylistchina+easylist.txt: 58237) -.ads.foxnews.com/js/omtr_code\.js -# @@||ads.foxnews.com/js/adv2.js (easylistchina+easylist.txt: 58236) -.ads.foxnews.com/js/adv2\.js -# @@||ads.foxnews.com/js/ad.js (easylistchina+easylist.txt: 58235) -.ads.foxnews.com/js/ad\.js -# @@||ads.foxnews.com/api/*-slideshow-data.js? (easylistchina+easylist.txt: 58234) -.ads.foxnews.com/api/.*-slideshow-data\.js\? -# @@||ads.fox.com/fox/black_2sec_600.flv (easylistchina+easylist.txt: 58233) -.ads.fox.com/fox/black_2sec_600\.flv -# @@||ads.forbes.com/realmedia/ads/*@videopreroll$script (easylistchina+easylist.txt: 58232) -.ads.forbes.com/realmedia/ads/.*@videopreroll -# @@||ads.eu.com/ads-$~third-party (easylistchina+easylist.txt: 58230) -.ads.eu.com/ads- -# @@||ads.cnn.com/js.ng/*&cnn_intl_subsection=download$script (easylistchina+easylist.txt: 58228) -.ads.cnn.com/js\.ng/.*&cnn_intl_subsection=download -# @@||ads.caravansforsale.co.uk^$~third-party (easylistchina+easylist.txt: 58227) -.ads.caravansforsale.co.uk -# @@||ads.belointeractive.com/realmedia/ads/adstream_mjx.ads/www.kgw.com/video/$script (easylistchina+easylist.txt: 58224) -.ads.belointeractive.com/realmedia/ads/adstream_mjx\.ads/www\.kgw\.com/video/ -# @@||ads.badassembly.com^$~third-party (easylistchina+easylist.txt: 58223) -.ads.badassembly.com -# @@||ads.ahds.ac.uk^$~document (easylistchina+easylist.txt: 58221) -.ads.ahds.ac.uk -# @@||adphoto.eu^$~third-party (easylistchina+easylist.txt: 58217) -.adphoto.eu -# @@||adpages.com^$~third-party (easylistchina+easylist.txt: 58216) -.adpages.com -# @@||adotube.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58215) -.adotube.com/crossdomain\.xml -# @@||adnews.pl^$~third-party (easylistchina+easylist.txt: 58213) -.adnews.pl -# @@||adnet.twitvid.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58212) -.adnet.twitvid.com/crossdomain\.xml -# @@||adman.se^$~third-party (easylistchina+easylist.txt: 58208) -.adman.se -# @@||adlib.info^$~third-party (easylistchina+easylist.txt: 58202) -.adlib.info -# @@||adimages.go.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58201) -.adimages.go.com/crossdomain\.xml -# @@||adhostingsolutions.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58200) -.adhostingsolutions.com/crossdomain\.xml -# @@||adguard.com^$~third-party (easylistchina+easylist.txt: 58199) -.adguard.com -# @@||adflyer.co.uk/adverts/$image (easylistchina+easylist.txt: 58197) -.adflyer.co.uk/adverts/ -# @@||adf.ly/static/image/ad_top_bg.png (easylistchina+easylist.txt: 58195) -.adf.ly/static/image/ad_top_bg\.png -# @@||adf.ly/images/ad*.png (easylistchina+easylist.txt: 58194) -.adf.ly/images/ad.*\.png -# @@||adevents.com.au^$~third-party (easylistchina+easylist.txt: 58193) -.adevents.com.au -# @@||addictinggames.com^*/mtvi_ads_reporting.js (easylistchina+easylist.txt: 58192) -.addictinggames.com/.*/mtvi_ads_reporting\.js -# @@||adcode.mobi^$~third-party (easylistchina+easylist.txt: 58190) -.adcode.mobi -# @@||adcenter.nu^$~third-party (easylistchina+easylist.txt: 58189) -.adcenter.nu -# @@||adboost.io^$~third-party (easylistchina+easylist.txt: 58187) -.adboost.io -# @@||adbar.pp.ua^$~third-party (easylistchina+easylist.txt: 58185) -.adbar.pp.ua -# @@||adap.tv/redir/javascript/vpaid.js (easylistchina+easylist.txt: 58183) -.adap.tv/redir/javascript/vpaid\.js -# @@||adap.tv/redir/client/adplayer.swf$object-subrequest (easylistchina+easylist.txt: 58179) -.adap.tv/redir/client/adplayer\.swf -# @@||adap.tv/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58178) -.adap.tv/crossdomain\.xml -# @@||adap.tv/control?$object-subrequest (easylistchina+easylist.txt: 58177) -.adap.tv/control\? -# @@||ad4.liverail.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58171) -.ad4.liverail.com/crossdomain\.xml -# @@||ad3.eu^$~third-party (easylistchina+easylist.txt: 58166) -.ad3.eu -# @@||ad2.zophar.net/images/logo.jpg$image (easylistchina+easylist.txt: 58165) -.ad2.zophar.net/images/logo\.jpg -# @@||ad.smartclip.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58163) -.ad.smartclip.net/crossdomain\.xml -# @@||ad.reebonz.com/www/ (easylistchina+easylist.txt: 58162) -.ad.reebonz.com/www/ -# @@||ad.doubleclick.net/pfadx/nbcu.nbc/rewind$object-subrequest (easylistchina+easylist.txt: 58160) -.ad.doubleclick.net/pfadx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/adx/nbcu.nbc/rewind$object-subrequest (easylistchina+easylist.txt: 58157) -.ad.doubleclick.net/adx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/ad/can/cbs/*;pausead=1;$object-subrequest (easylistchina+easylist.txt: 58153) -.ad.doubleclick.net/ad/can/cbs/.*;pausead=1; -# @@||ad.afy11.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58151) -.ad.afy11.net/crossdomain\.xml -# @@||ad.adserve.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58150) -.ad.adserve.com/crossdomain\.xml -# @@||ad.71i.de/global_js/magic/sevenload_magic.js$object-subrequest (easylistchina+easylist.txt: 58148) -.ad.71i.de/global_js/magic/sevenload_magic\.js -# @@||ad.71i.de/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58147) -.ad.71i.de/crossdomain\.xml -# @@||activelydisengaged.com/wp-content/uploads/*/ad$image (easylistchina+easylist.txt: 58145) -.activelydisengaged.com/wp-content/uploads/.*/ad -# @@||abcnews.go.com/assets/static/ads/fwps.js (easylistchina+easylist.txt: 58143) -.abcnews.go.com/assets/static/ads/fwps\.js -# @@||abcnews.com/assets/static/ads/fwps.js (easylistchina+easylist.txt: 58142) -.abcnews.com/assets/static/ads/fwps\.js -# @@||abbyy.com/adx/$~third-party (easylistchina+easylist.txt: 58140) -.abbyy.com/adx/ -# @@||a.giantrealm.com/assets/vau/grplayer*.swf (easylistchina+easylist.txt: 58138) -.a.giantrealm.com/assets/vau/grplayer.*\.swf -# @@||9msn.com.au^*/ads/ninemsn.ads$script (easylistchina+easylist.txt: 58137) -.9msn.com.au/.*/ads/ninemsn\.ads -# @@||961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON.png (easylistchina+easylist.txt: 58134) -.961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON\.png -# @@||6waves.com/js/adshow.js (easylistchina+easylist.txt: 58133) -.6waves.com/js/adshow\.js -# @@||6waves.com/ads/720x300/ (easylistchina+easylist.txt: 58132) -.6waves.com/ads/720x300/ -# @@||53.com/resources/images/ad-rotator/ (easylistchina+easylist.txt: 58131) -.53.com/resources/images/ad-rotator/ -# @@||360gig.com/images/1_468x60.png (easylistchina+easylist.txt: 58129) -.360gig.com/images/1_468x60\.png -# @@||33universal.adprimemedia.com/vn/vna/data/ad.php?$object-subrequest (easylistchina+easylist.txt: 58128) -.33universal.adprimemedia.com/vn/vna/data/ad\.php\? -# @@||2mdn.net/instream/flash/*/adsapi.swf$object-subrequest (easylistchina+easylist.txt: 58122) -.2mdn.net/instream/flash/.*/adsapi\.swf -# @@||24ur.com/static/*/banners.js (easylistchina+easylist.txt: 58119) -.24ur.com/static/.*/banners\.js -# @@||24ur.com/adserver/adall. (easylistchina+easylist.txt: 58118) -.24ur.com/adserver/adall\. -# @@||247realmedia.com^*/farecomp/ (easylistchina+easylist.txt: 58117) -.247realmedia.com/.*/farecomp/ -# @@||192.168.*/images/adv_ (easylistchina+easylist.txt: 58112) -.192.168.*./(.*/)?images/adv_ -# @@||192.168.$xmlhttprequest (easylistchina+easylist.txt: 58111) -.192.168.*. -# @@/wp-content/plugins/bwp-minify/min/?f=$script,stylesheet,~third-party (easylistchina+easylist.txt: 58110) -/(.*/)?wp-content/plugins/bwp-minify/min/\?f= -# @@/wordpress/wp-admin/*/adrotate/*$~third-party (easylistchina+easylist.txt: 58109) -/(.*/)?wordpress/wp-admin/.*/adrotate/.* -# @@/wordpress/wp-admin/*-ads-manager/*$~third-party (easylistchina+easylist.txt: 58108) -/(.*/)?wordpress/wp-admin/.*-ads-manager/.* -# @@/advertising-glype/*$image,stylesheet (easylistchina+easylist.txt: 58102) -/(.*/)?advertising-glype/.* -# @@||ytimg.com/yts/jsbin/$script (easylistchina+easylist.txt: 46058) -.ytimg.com/yts/jsbin/ -# @@||youtube.com/player_api$script,third-party (easylistchina+easylist.txt: 46057) -.youtube.com/player_api -# @@||youtube.com/iframe_api$script,third-party (easylistchina+easylist.txt: 46056) -.youtube.com/iframe_api -# @@||widget.clipix.com^$script,third-party (easylistchina+easylist.txt: 46052) -.widget.clipix.com -# @@||vidible.tv/prod/$script,third-party (easylistchina+easylist.txt: 46051) -.vidible.tv/prod/ -# @@||ui.bamstatic.com^$script,third-party (easylistchina+easylist.txt: 46049) -.ui.bamstatic.com -# @@||twimg.com^$image,third-party (easylistchina+easylist.txt: 46047) -.twimg.com -# @@||thegatewaypundit.com/wp-includes/images/rss.png (easylistchina+easylist.txt: 46046) -.thegatewaypundit.com/wp-includes/images/rss\.png -# @@||thegatewaypundit.com/wp-content/uploads/submit_tip.png (easylistchina+easylist.txt: 46045) -.thegatewaypundit.com/wp-content/uploads/submit_tip\.png -# @@||static.cdn-ec.viddler.com^$script (easylistchina+easylist.txt: 46038) -.static.cdn-ec.viddler.com -# @@||providesupport.com^$script (easylistchina+easylist.txt: 46032) -.providesupport.com -# @@||playbuzz.com/widget/$script,third-party (easylistchina+easylist.txt: 46024) -.playbuzz.com/widget/ -# @@||platform.vine.co^$script (easylistchina+easylist.txt: 46023) -.platform.vine.co -# @@||p.jwpcdn.com^$script,third-party (easylistchina+easylist.txt: 46020) -.p.jwpcdn.com -# @@||netdna-cdn.com/wp-includes/js/$script,third-party (easylistchina+easylist.txt: 46018) -.netdna-cdn.com/wp-includes/js/ -# @@||my.hellobar.com^$script,third-party (easylistchina+easylist.txt: 46016) -.my.hellobar.com -# @@||lpsimage.newsinc.com/player/show/$script (easylistchina+easylist.txt: 46013) -.lpsimage.newsinc.com/player/show/ -# @@||lps.newsinc.com/player/show/$script (easylistchina+easylist.txt: 46012) -.lps.newsinc.com/player/show/ -# @@||loggly.cheatsheet.com/inputs/$image,~third-party (easylistchina+easylist.txt: 46011) -.loggly.cheatsheet.com/inputs/ -# @@||intensedebate.com/js/$script,third-party (easylistchina+easylist.txt: 46003) -.intensedebate.com/js/ -# @@||imgur.com/min/$script,third-party (easylistchina+easylist.txt: 46002) -.imgur.com/min/ -# @@||images.sportsworldnews.com^$image,third-party (easylistchina+easylist.txt: 46001) -.images.sportsworldnews.com -# @@||hwcdn.net/*.js?$script (easylistchina+easylist.txt: 45999) -.hwcdn.net/.*\.js\? -# @@||gstatic.com/trustedstores/$script (easylistchina+easylist.txt: 45998) -.gstatic.com/trustedstores/ -# @@||gravatar.com/avatar$image,third-party (easylistchina+easylist.txt: 45997) -.gravatar.com/avatar -# @@||googlecommerce.com^$script (easylistchina+easylist.txt: 45994) -.googlecommerce.com -# @@||google.com/recaptcha/$script (easylistchina+easylist.txt: 45992) -.google.com/recaptcha/ -# @@||google.com/jsapi$script,third-party (easylistchina+easylist.txt: 45991) -.google.com/jsapi -# @@||google.com/js/th/$script (easylistchina+easylist.txt: 45990) -.google.com/js/th/ -# @@||files.explosm.net/thumbs/$image (easylistchina+easylist.txt: 45986) -.files.explosm.net/thumbs/ -# @@||files.explosm.net/rcg/$image (easylistchina+easylist.txt: 45985) -.files.explosm.net/rcg/ -# @@||files.explosm.net/avatars/$image (easylistchina+easylist.txt: 45984) -.files.explosm.net/avatars/ -# @@||explosm.net/show/thumbnails/$image (easylistchina+easylist.txt: 45982) -.explosm.net/show/thumbnails/ -# @@||explosm.net/img/nav-button_random@2x.png| (easylistchina+easylist.txt: 45981) -.explosm.net/img/nav-button_random@2x\.png$ -# @@||explosm.net/img/nav-button_previous@2x.png| (easylistchina+easylist.txt: 45980) -.explosm.net/img/nav-button_previous@2x\.png$ -# @@||explosm.net/img/nav-button_next@2x.png| (easylistchina+easylist.txt: 45979) -.explosm.net/img/nav-button_next@2x\.png$ -# @@||explosm.net/img/nav-button_newest@2x.png| (easylistchina+easylist.txt: 45978) -.explosm.net/img/nav-button_newest@2x\.png$ -# @@||explosm.net/img/nav-button_first@2x.png| (easylistchina+easylist.txt: 45977) -.explosm.net/img/nav-button_first@2x\.png$ -# @@||explosm.net/img/logo.png (easylistchina+easylist.txt: 45976) -.explosm.net/img/logo\.png -# @@||explosm.net/favicons/favicon$image (easylistchina+easylist.txt: 45975) -.explosm.net/favicons/favicon -# @@||content-img.newsinc.com^$image,third-party (easylistchina+easylist.txt: 45968) -.content-img.newsinc.com -# @@||conservativevideos.com^$generichide (easylistchina+easylist.txt: 45966) -.conservativevideos.com -# @@||cheatsheet.com/wp-content/uploads/$image,~third-party (easylistchina+easylist.txt: 45960) -.cheatsheet.com/wp-content/uploads/ -# @@||cheatsheet.com/wp-content/themes/$image,~third-party (easylistchina+easylist.txt: 45959) -.cheatsheet.com/wp-content/themes/ -# @@||cdn.shopify.com^$script (easylistchina+easylist.txt: 45956) -.cdn.shopify.com -# @@||bigcommerce.com^$image,third-party (easylistchina+easylist.txt: 45953) -.bigcommerce.com -# @@||assets.newsinc.com^$image,third-party (easylistchina+easylist.txt: 45951) -.assets.newsinc.com -# @@||ajax.cloudflare.com/cdn-cgi/nexp/$script,third-party (easylistchina+easylist.txt: 45942) -.ajax.cloudflare.com/cdn-cgi/nexp/ -# @@/wp-content/plugins/akismet/*$script,~third-party (easylistchina+easylist.txt: 45939) -/(.*/)?wp-content/plugins/akismet/.* -# @@||speedtest.net/results.php$xmlhttprequest (easylistchina+easylist.txt: 45914) -.speedtest.net/results\.php -# @@||speedtest.net/javascript/swfobject.js (easylistchina+easylist.txt: 45913) -.speedtest.net/javascript/swfobject\.js -# @@||speedtest.net/javascript/speedtest-main.js?v= (easylistchina+easylist.txt: 45912) -.speedtest.net/javascript/speedtest-main\.js\?v= -# @@||speedtest.net/javascript/speedtest-main.js?p=*&r=*&q=*%3*&s=*%3*= (easylistchina+easylist.txt: 45911) -.speedtest.net/javascript/speedtest-main\.js\?p=.*&r=.*&q=.*%3.*&s=.*%3.*= -# @@||speedtest.net/javascript/jquery.ui*.js (easylistchina+easylist.txt: 45910) -.speedtest.net/javascript/jquery\.ui.*\.js -# @@||speedtest.net/javascript/jquery.tipTip.js (easylistchina+easylist.txt: 45909) -.speedtest.net/javascript/jquery\.tipTip\.js -# @@||speedtest.net/javascript/jquery.placeholder.min.js (easylistchina+easylist.txt: 45908) -.speedtest.net/javascript/jquery\.placeholder\.min\.js -# @@||speedtest.net/javascript/jquery-*.min.js (easylistchina+easylist.txt: 45907) -.speedtest.net/javascript/jquery-.*\.min\.js -# @@||speedtest.net/javascript/highcharts.js (easylistchina+easylist.txt: 45906) -.speedtest.net/javascript/highcharts\.js -# @@||speedtest.net/javascript/functions.js (easylistchina+easylist.txt: 45905) -.speedtest.net/javascript/functions\.js -# @@||speedtest.net/javascript/extMouseWheel.js (easylistchina+easylist.txt: 45904) -.speedtest.net/javascript/extMouseWheel\.js -# @@||exashare.com/player6/$script (easylistchina+easylist.txt: 45859) -.exashare.com/player6/ -# @@||exashare.com/js/$script (easylistchina+easylist.txt: 45858) -.exashare.com/js/ -# @@||exashare.com/ad.js (easylistchina+easylist.txt: 45857) -.exashare.com/ad\.js -# @@||tmall.com/add? (easylistchina+easylist.txt: 10489) +# @@||tmall.com/add? (easylistchina.txt: 10477) .tmall.com/add\? -# @@||tbcdn.cn^*/click_track.js (easylistchina+easylist.txt: 10488) +# @@||tbcdn.cn^*/click_track.js (easylistchina.txt: 10476) .tbcdn.cn/.*/click_track\.js -# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina+easylist.txt: 10486) +# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina.txt: 10474) .stjscn.s-msn.com/portal/hp/2011/udctrack\. -# @@||pingjs.qq.com/ping.js (easylistchina+easylist.txt: 10480) +# @@||pingjs.qq.com/ping.js (easylistchina.txt: 10468) .pingjs.qq.com/ping\.js -# @@||msn.wrating.com/a1.js (easylistchina+easylist.txt: 10478) +# @@||msn.wrating.com/a1.js (easylistchina.txt: 10466) .msn.wrating.com/a1\.js -# @@||jd.com/setCookie? (easylistchina+easylist.txt: 10477) +# @@||jd.com/setCookie? (easylistchina.txt: 10465) .jd.com/setCookie\? -# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina+easylist.txt: 10475) +# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina.txt: 10463) .guahao.cn/common/js/plugins/fingerprint\.js -# @@||g.alicdn.com^*/banner_ad_ (easylistchina+easylist.txt: 10471) +# @@||g.alicdn.com^*/banner_ad_ (easylistchina.txt: 10458) .g.alicdn.com/.*/banner_ad_ -# @@||count.video.sina.com.cn^*?video_ids= (easylistchina+easylist.txt: 10469) +# @@||count.video.sina.com.cn^*?video_ids= (easylistchina.txt: 10456) .count.video.sina.com.cn/.*\?video_ids= -# @@||bagehd.com/iplookup. (easylistchina+easylist.txt: 10468) +# @@||bagehd.com/iplookup. (easylistchina.txt: 10455) .bagehd.com/iplookup\. -# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina+easylist.txt: 10467) +# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina.txt: 10454) .autohome.com.cn/javascript/fingerprint\.js -# @@||analytics.163.com/ntes.js (easylistchina+easylist.txt: 10466) +# @@||analytics.163.com/ntes.js (easylistchina.txt: 10453) .analytics.163.com/ntes\.js -# @@||alicdn.com^*/click_track.js (easylistchina+easylist.txt: 10465) +# @@||alicdn.com^*/click_track.js (easylistchina.txt: 10452) .alicdn.com/.*/click_track\.js -# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina+easylist.txt: 10464) +# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina.txt: 10451) .aixifan.com/dotnet/20130418/script/fingerprint\. -# @@||7m.cn/v2/js/analyse.js (easylistchina+easylist.txt: 10463) +# @@||7m.cn/v2/js/analyse.js (easylistchina.txt: 10450) .7m.cn/v2/js/analyse\.js -# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina+easylist.txt: 10456) +# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina.txt: 10443) .xnimg.cn/.*/nx/ugc/share/js/hotlist\.js -# @@||zjol.com.cn^*/index.jsp?newsid=$elemhide (easylistchina+easylist.txt: 10445) +# @@||zjol.com.cn^*/index.jsp?newsid=$elemhide (easylistchina.txt: 10432) .zjol.com.cn/.*/index\.jsp\?newsid= -# @@||zhibowu.com/ad2.htm (easylistchina+easylist.txt: 10444) +# @@||zhibowu.com/ad2.htm (easylistchina.txt: 10431) .zhibowu.com/ad2\.htm -# @@||zhaopin.cn^*/adbox_ (easylistchina+easylist.txt: 10443) +# @@||zhaopin.cn^*/adbox_ (easylistchina.txt: 10430) .zhaopin.cn/.*/adbox_ -# @@||zhaopin.cn/js/app/popShow. (easylistchina+easylist.txt: 10442) +# @@||zhaopin.cn/js/app/popShow. (easylistchina.txt: 10429) .zhaopin.cn/js/app/popShow\. -# @@||youku.com^*^showAd (easylistchina+easylist.txt: 10440) +# @@||youku.com^*^showAd (easylistchina.txt: 10428) .youku.com/.*[^\w%.-]showAd -# @@||youku.com^*^adshow (easylistchina+easylist.txt: 10439) +# @@||youku.com^*^adshow (easylistchina.txt: 10427) .youku.com/.*[^\w%.-]adshow -# @@||yiqifa.com/ad_images/$~third-party (easylistchina+easylist.txt: 10437) +# @@||yiqifa.com/ad_images/$~third-party (easylistchina.txt: 10425) .yiqifa.com/ad_images/ -# @@||yinfu.cc/sid/function (easylistchina+easylist.txt: 10436) +# @@||yinfu.cc/sid/function (easylistchina.txt: 10424) .yinfu.cc/sid/function -# @@||yinfu.cc/sid/*play (easylistchina+easylist.txt: 10435) +# @@||yinfu.cc/sid/*play (easylistchina.txt: 10423) .yinfu.cc/sid/.*play -# @@||yimuhe.com/n_js/advertiser.js (easylistchina+easylist.txt: 10434) +# @@||yimuhe.com/n_js/advertiser.js (easylistchina.txt: 10422) .yimuhe.com/n_js/advertiser\.js -# @@||yimg.jp/combo?*/ad/ (easylistchina+easylist.txt: 10433) +# @@||yimg.jp/combo?*/ad/ (easylistchina.txt: 10421) .yimg.jp/combo\?.*/ad/ -# @@||ydxxt.com/ad/ (easylistchina+easylist.txt: 10431) +# @@||ydxxt.com/ad/ (easylistchina.txt: 10419) .ydxxt.com/ad/ -# @@||yawin.cn/ad/$object-subrequest (easylistchina+easylist.txt: 10430) +# @@||yawin.cn/ad/$object-subrequest (easylistchina.txt: 10418) .yawin.cn/ad/ -# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina+easylist.txt: 10429) +# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10417) .xunleipu.com/a-d-j-s/a-d-7\.js -# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina+easylist.txt: 10428) +# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10416) .xunleihao.com/a-d-j-s/a-d-7\.js -# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina+easylist.txt: 10427) +# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina.txt: 10415) .xnimg.cn/n/apps/profile/modules/tuiguang/ -# @@||xintaoke.com/images/gg/*.jpg (easylistchina+easylist.txt: 10426) +# @@||xintaoke.com/images/gg/*.jpg (easylistchina.txt: 10414) .xintaoke.com/images/gg/.*\.jpg -# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina+easylist.txt: 10425) +# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina.txt: 10413) .xinhuanet.com/2014/imgad/FS_2014weixin\.jpg -# @@||wubisheng.cn/style/pagead2.js (easylistchina+easylist.txt: 10424) +# @@||wubisheng.cn/style/pagead2.js (easylistchina.txt: 10412) .wubisheng.cn/style/pagead2\.js -# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina+easylist.txt: 10423) +# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina.txt: 10411) .wubisheng.cn/style/adsbygoogle\.js -# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina+easylist.txt: 10422) +# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina.txt: 10410) .woxiu.com/xapi/offsite_swf_more\.php\?.*&type= -# @@||wowsai.com/data/files/ad/ (easylistchina+easylist.txt: 10421) +# @@||wowsai.com/data/files/ad/ (easylistchina.txt: 10409) .wowsai.com/data/files/ad/ -# @@||wishdown.com/images/logo.gif (easylistchina+easylist.txt: 10420) +# @@||wishdown.com/images/logo.gif (easylistchina.txt: 10408) .wishdown.com/images/logo\.gif -# @@||win007.com/images/ad/qiu (easylistchina+easylist.txt: 10419) +# @@||win007.com/images/ad/qiu (easylistchina.txt: 10407) .win007.com/images/ad/qiu -# @@||win007.com/image/75338867887z.gif (easylistchina+easylist.txt: 10418) +# @@||win007.com/image/75338867887z.gif (easylistchina.txt: 10406) .win007.com/image/75338867887z\.gif -# @@||wholehk.com/madads728.htm (easylistchina+easylist.txt: 10417) +# @@||wholehk.com/madads728.htm (easylistchina.txt: 10405) .wholehk.com/madads728\.htm -# @@||wholehk.com/adsbygoogle.js (easylistchina+easylist.txt: 10416) +# @@||wholehk.com/adsbygoogle.js (easylistchina.txt: 10404) .wholehk.com/adsbygoogle\.js -# @@||wfcmw.cn^*.radio. (easylistchina+easylist.txt: 10415) +# @@||wfcmw.cn^*.radio. (easylistchina.txt: 10403) .wfcmw.cn/.*\.radio\. -# @@||weibo.com/api/weipan/getAds (easylistchina+easylist.txt: 10414) +# @@||weibo.com/api/weipan/getAds (easylistchina.txt: 10402) .weibo.com/api/weipan/getAds -# @@||webcrow.jp/adjs/ncskt.js (easylistchina+easylist.txt: 10413) +# @@||webcrow.jp/adjs/ncskt.js (easylistchina.txt: 10401) .webcrow.jp/adjs/ncskt\.js -# @@||veimg.cn/AdsShow/ (easylistchina+easylist.txt: 10412) +# @@||veimg.cn/AdsShow/ (easylistchina.txt: 10400) .veimg.cn/AdsShow/ -# @@||v1.cn/player/cloud/cloud_player (easylistchina+easylist.txt: 10411) +# @@||v1.cn/player/cloud/cloud_player (easylistchina.txt: 10399) .v1.cn/player/cloud/cloud_player -# @@||v.rbc.cn/ad/ (easylistchina+easylist.txt: 10410) +# @@||v.rbc.cn/ad/ (easylistchina.txt: 10398) .v.rbc.cn/ad/ -# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina+easylist.txt: 10409) +# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina.txt: 10397) .up2stream.com/vjs/plugin/css/ads\.css -# @@||union.m.jd.com/click/ (easylistchina+easylist.txt: 10408) +# @@||union.m.jd.com/click/ (easylistchina.txt: 10396) .union.m.jd.com/click/ -# @@||union.easypass.cn/block/ (easylistchina+easylist.txt: 10407) +# @@||union.easypass.cn/block/ (easylistchina.txt: 10395) .union.easypass.cn/block/ -# @@||union.click.jd.com^ (easylistchina+easylist.txt: 10406) +# @@||union.click.jd.com^ (easylistchina.txt: 10394) .union.click.jd.com -# @@||union.bokecc.com/servlet/getvideofile? (easylistchina+easylist.txt: 10405) +# @@||union.bokecc.com/servlet/getvideofile? (easylistchina.txt: 10393) .union.bokecc.com/servlet/getvideofile\? -# @@||union.bokecc.com/player? (easylistchina+easylist.txt: 10404) +# @@||union.bokecc.com/player? (easylistchina.txt: 10392) .union.bokecc.com/player\? -# @@||union.bokecc.com/flash/$object (easylistchina+easylist.txt: 10403) +# @@||union.bokecc.com/flash/$object (easylistchina.txt: 10391) .union.bokecc.com/flash/ -# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina+easylist.txt: 10401) +# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina.txt: 10389) .ujinbi.com/UpLoadFile/guanggao/ -# @@||ujinbi.com/AD/ (easylistchina+easylist.txt: 10400) +# @@||ujinbi.com/AD/ (easylistchina.txt: 10388) .ujinbi.com/AD/ -# @@||u9pan.com/images/ads/ (easylistchina+easylist.txt: 10398) +# @@||u9pan.com/images/ads/ (easylistchina.txt: 10386) .u9pan.com/images/ads/ -# @@||tt1069.com/advert.js (easylistchina+easylist.txt: 10396) +# @@||tt1069.com/advert.js (easylistchina.txt: 10384) .tt1069.com/advert\.js -# @@||toy9090.com^*/NR.gif (easylistchina+easylist.txt: 10395) +# @@||toy9090.com^*/NR.gif (easylistchina.txt: 10383) .toy9090.com/.*/NR\.gif -# @@||toy9090.com^*/NL.gif (easylistchina+easylist.txt: 10394) +# @@||toy9090.com^*/NL.gif (easylistchina.txt: 10382) .toy9090.com/.*/NL\.gif -# @@||totheglory.im/pic/ttg_logo (easylistchina+easylist.txt: 10393) +# @@||totheglory.im/pic/ttg_logo (easylistchina.txt: 10381) .totheglory.im/pic/ttg_logo -# @@||tompda.com/images/pix.swf (easylistchina+easylist.txt: 10392) +# @@||tompda.com/images/pix.swf (easylistchina.txt: 10380) .tompda.com/images/pix\.swf -# @@||tmall.com/go/*/banner.php (easylistchina+easylist.txt: 10391) +# @@||tmall.com/go/*/banner.php (easylistchina.txt: 10379) .tmall.com/go/.*/banner\.php -# @@||tenpay.com^*?ADTAG= (easylistchina+easylist.txt: 10390) +# @@||tenpay.com^*?ADTAG= (easylistchina.txt: 10378) .tenpay.com/.*\?ADTAG= -# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina+easylist.txt: 10389) +# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina.txt: 10377) .tenpay.com/v2\.0/main/creditcard/portal_rpm_apply\.shtml -# @@||taobao.com^*&adgroupid= (easylistchina+easylist.txt: 10388) +# @@||taobao.com^*&adgroupid= (easylistchina.txt: 10375) .taobao.com/.*&adgroupid= -# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina+easylist.txt: 10387) +# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina.txt: 10374) .taobao.com/go/app/tmall/login-api\.php\? -# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina+easylist.txt: 10386) +# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina.txt: 10373) .tansuo.cntv.cn/.*/tansuo_Advertise\.js -# @@||sx566.com/templates/default/images/ad (easylistchina+easylist.txt: 10384) +# @@||sx566.com/templates/default/images/ad (easylistchina.txt: 10371) .sx566.com/templates/default/images/ad -# @@||sudupan.com^*/*.gif (easylistchina+easylist.txt: 10383) +# @@||sudupan.com^*/*.gif (easylistchina.txt: 10370) .sudupan.com/.*/.*\.gif -# @@||static.hdslb.com/ad-images/$image (easylistchina+easylist.txt: 10381) +# @@||static.hdslb.com/ad-images/$image (easylistchina.txt: 10368) .static.hdslb.com/ad-images/ -# @@||static.atm.youku.com^*.swf (easylistchina+easylist.txt: 10380) +# @@||static.atm.youku.com^*.swf (easylistchina.txt: 10367) .static.atm.youku.com/.*\.swf -# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina+easylist.txt: 10379) +# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina.txt: 10366) .spbonow.com/UploadFiles/201505/2015051853456325\.gif -# @@||spbonow.com/images/ads/logo.gif (easylistchina+easylist.txt: 10378) +# @@||spbonow.com/images/ads/logo.gif (easylistchina.txt: 10365) .spbonow.com/images/ads/logo\.gif -# @@||sjsmitaa.org/bin/showads. (easylistchina+easylist.txt: 10377) +# @@||sjsmitaa.org/bin/showads. (easylistchina.txt: 10364) .sjsmitaa.org/bin/showads\. -# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina+easylist.txt: 10376) +# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina.txt: 10363) .sinaimg.cn/.*/deco/.*/sinaObj\.js -# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina+easylist.txt: 10374) +# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina.txt: 10361) .sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra\.gif -# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina+easylist.txt: 10373) +# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina.txt: 10360) .sinaimg.cn/dy/deco/.*/js/require\.js -# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina+easylist.txt: 10372) +# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina.txt: 10359) .sinaimg.cn/dy/deco/.*/js/base\.js -# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina+easylist.txt: 10370) +# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina.txt: 10357) .sinaimg.cn/ad/adimage/50x50_ -# @@||sina.com.hk^*_ads.cgi (easylistchina+easylist.txt: 10369) +# @@||sina.com.hk^*_ads.cgi (easylistchina.txt: 10356) .sina.com.hk/.*_ads\.cgi -# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina+easylist.txt: 10368) +# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina.txt: 10355) .sina.com.cn/litong/zhitou/pic/close- -# @@||simba.taobao.com/?name=mcad$script (easylistchina+easylist.txt: 10367) +# @@||simba.taobao.com/?name=mcad$script (easylistchina.txt: 10354) .simba.taobao.com/\?name=mcad -# @@||share.dmhy.*/generate-captcha? (easylistchina+easylist.txt: 10366) +# @@||share.dmhy.*/generate-captcha? (easylistchina.txt: 10353) .share.dmhy.*./(.*/)?generate-captcha\? -# @@||sf-express.com/.galleries/advertisement/ (easylistchina+easylist.txt: 10365) +# @@||sf-express.com/.galleries/advertisement/ (easylistchina.txt: 10352) .sf-express.com/\.galleries/advertisement/ -# @@||sex169.org^$elemhide (easylistchina+easylist.txt: 10364) -.sex169.org -# @@||sex169.info^$elemhide (easylistchina+easylist.txt: 10363) -.sex169.info -# @@||serve.netsh.org^$elemhide (easylistchina+easylist.txt: 10362) +# @@||serve.netsh.org^$elemhide (easylistchina.txt: 10351) .serve.netsh.org -# @@||selfimg.com.cn/?? (easylistchina+easylist.txt: 10361) +# @@||selfimg.com.cn/?? (easylistchina.txt: 10350) .selfimg.com.cn/\?\? -# @@||sdc.pingan.com^$~image (easylistchina+easylist.txt: 10360) +# @@||sdc.pingan.com^$~image (easylistchina.txt: 10349) .sdc.pingan.com -# @@||sc.jb51.net/adimg/*.jpg (easylistchina+easylist.txt: 10359) +# @@||sc.jb51.net/adimg/*.jpg (easylistchina.txt: 10348) .sc.jb51.net/adimg/.*\.jpg -# @@||sakai.club/advertisement.js (easylistchina+easylist.txt: 10358) +# @@||sakai.club/advertisement.js (easylistchina.txt: 10347) .sakai.club/advertisement\.js -# @@||sakai-hk.com/advertisement.js (easylistchina+easylist.txt: 10357) +# @@||sakai-hk.com/advertisement.js (easylistchina.txt: 10346) .sakai-hk.com/advertisement\.js -# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina+easylist.txt: 10356) +# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina.txt: 10345) .saibeinews.com/index\.php\?m=poster&c=index&a=show_poster&id=2 -# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina+easylist.txt: 10353) +# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina.txt: 10343) .ruten.com.tw/js/jquery\.ruten\.supertop_ad\.js -# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina+easylist.txt: 10351) +# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina.txt: 10341) .regapi.37.com/api/p_register\.php\?login_account= -# @@||ref.so/templates/ref/short_show/adview_ (easylistchina+easylist.txt: 10350) +# @@||ref.so/templates/ref/short_show/adview_ (easylistchina.txt: 10340) .ref.so/templates/ref/short_show/adview_ -# @@||rakuya.com.tw^*/common_ad. (easylistchina+easylist.txt: 10349) +# @@||rakuya.com.tw^*/common_ad. (easylistchina.txt: 10339) .rakuya.com.tw/.*/common_ad\. -# @@||quwenjiemi.com/105.js? (easylistchina+easylist.txt: 10348) +# @@||quwenjiemi.com/105.js? (easylistchina.txt: 10338) .quwenjiemi.com/105\.js\? -# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina+easylist.txt: 10347) +# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina.txt: 10337) .qqread.com/swf/qqread_rollpic\.swf -# @@||qq.com^*?ADTAG= (easylistchina+easylist.txt: 10346) +# @@||qq.com^*?ADTAG= (easylistchina.txt: 10336) .qq.com/.*\?ADTAG= -# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina+easylist.txt: 10345) +# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina.txt: 10335) .qq.com/server/website/CommWebGameSelect_ad\.js -# @@||qq.com/bossweb/jifen/ (easylistchina+easylist.txt: 10344) +# @@||qq.com/bossweb/jifen/ (easylistchina.txt: 10334) .qq.com/bossweb/jifen/ -# @@||qiyipic.com/common/fix/pub_images/ (easylistchina+easylist.txt: 10343) +# @@||qiyipic.com/common/fix/pub_images/ (easylistchina.txt: 10333) .qiyipic.com/common/fix/pub_images/ -# @@||qingdaoport.net/adv/random.jsp (easylistchina+easylist.txt: 10342) +# @@||qingdaoport.net/adv/random.jsp (easylistchina.txt: 10332) .qingdaoport.net/adv/random\.jsp -# @@||qingcheng.com^*/ad (easylistchina+easylist.txt: 10341) +# @@||qingcheng.com^*/ad (easylistchina.txt: 10331) .qingcheng.com/.*/ad -# @@||qikuyou.com/images/js/adv.js (easylistchina+easylist.txt: 10340) +# @@||qikuyou.com/images/js/adv.js (easylistchina.txt: 10330) .qikuyou.com/images/js/adv\.js -# @@||qidian.com/ploy/20*.swf (easylistchina+easylist.txt: 10339) +# @@||qidian.com/ploy/20*.swf (easylistchina.txt: 10329) .qidian.com/ploy/20.*\.swf -# @@||pub.alimama.com/common/adzone/ (easylistchina+easylist.txt: 10338) +# @@||pub.alimama.com/common/adzone/ (easylistchina.txt: 10328) .pub.alimama.com/common/adzone/ -# @@||ps123.net/MyFile/toptxt.js (easylistchina+easylist.txt: 10337) +# @@||ps123.net/MyFile/toptxt.js (easylistchina.txt: 10327) .ps123.net/MyFile/toptxt\.js -# @@||pos.baidu.com/acom?di=u1840644& (easylistchina+easylist.txt: 10335) +# @@||pos.baidu.com/acom?di=u1840644& (easylistchina.txt: 10325) .pos.baidu.com/acom\?di=u1840644& -# @@||pos.baidu.com/acom?di=u1705639& (easylistchina+easylist.txt: 10334) +# @@||pos.baidu.com/acom?di=u1705639& (easylistchina.txt: 10324) .pos.baidu.com/acom\?di=u1705639& -# @@||pos.baidu.com/acom?di=u1671167& (easylistchina+easylist.txt: 10333) +# @@||pos.baidu.com/acom?di=u1671167& (easylistchina.txt: 10323) .pos.baidu.com/acom\?di=u1671167& -# @@||pos.baidu.com/acom?di=u1460926& (easylistchina+easylist.txt: 10332) +# @@||pos.baidu.com/acom?di=u1460926& (easylistchina.txt: 10322) .pos.baidu.com/acom\?di=u1460926& -# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina+easylist.txt: 10330) +# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina.txt: 10320) .pmm.people.com.cn/main/s\?user=people\|homepage\|2013juxing -# @@||piccool.com/2home/phpAdsNew/ (easylistchina+easylist.txt: 10329) +# @@||piccool.com/2home/phpAdsNew/ (easylistchina.txt: 10319) .piccool.com/2home/phpAdsNew/ -# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina+easylist.txt: 10328) +# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina.txt: 10318) .pic.zol-img.com.cn/2009/pix_index\.swf -# @@||photo.erji.com/tb/*.gif (easylistchina+easylist.txt: 10327) +# @@||photo.erji.com/tb/*.gif (easylistchina.txt: 10317) .photo.erji.com/tb/.*\.gif -# @@||pep.com.cn/rjs/guanggao/ (easylistchina+easylist.txt: 10326) +# @@||pep.com.cn/rjs/guanggao/ (easylistchina.txt: 10316) .pep.com.cn/rjs/guanggao/ -# @@||ouyaoxiazai.com/shouyead.js (easylistchina+easylist.txt: 10322) +# @@||ouyaoxiazai.com/shouyead.js (easylistchina.txt: 10312) .ouyaoxiazai.com/shouyead\.js -# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina+easylist.txt: 10321) +# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina.txt: 10311) .ooomm.com/ad/Whoyao_logo114\.png -# @@||ooomm.com/ad/icon/ (easylistchina+easylist.txt: 10320) +# @@||ooomm.com/ad/icon/ (easylistchina.txt: 10310) .ooomm.com/ad/icon/ -# @@||online.unionpay.com/ads/$script (easylistchina+easylist.txt: 10319) +# @@||online.unionpay.com/ads/$script (easylistchina.txt: 10309) .online.unionpay.com/ads/ -# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina+easylist.txt: 10318) +# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina.txt: 10308) .omusic.com.tw/backend/uploadpic/adindex/ -# @@||newxing.com/a_d/downAddress.js (easylistchina+easylist.txt: 10317) +# @@||newxing.com/a_d/downAddress.js (easylistchina.txt: 10307) .newxing.com/a_d/downAddress\.js -# @@||news.u17i.com/advert/ (easylistchina+easylist.txt: 10316) +# @@||news.u17i.com/advert/ (easylistchina.txt: 10306) .news.u17i.com/advert/ -# @@||new7574.u.qiniudn.com^*^ad (easylistchina+easylist.txt: 10315) +# @@||new7574.u.qiniudn.com^*^ad (easylistchina.txt: 10305) .new7574.u.qiniudn.com/.*[^\w%.-]ad -# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina+easylist.txt: 10314) +# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina.txt: 10304) .netded.com/plus/ad_js\.php\?aid=3$ -# @@||naruto.hk/ad/uy.js (easylistchina+easylist.txt: 10313) +# @@||naruto.hk/ad/uy.js (easylistchina.txt: 10303) .naruto.hk/ad/uy\.js -# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina+easylist.txt: 10312) +# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina.txt: 10302) .mymusic.net.tw/js/ad/index_1\.js -# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina+easylist.txt: 10311) +# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina.txt: 10301) .muzhiwan.com/forum\.php\?.*=300x250& -# @@||monnsutogatya.com^$elemhide (easylistchina+easylist.txt: 10310) +# @@||monnsutogatya.com^$elemhide (easylistchina.txt: 10300) .monnsutogatya.com -# @@||mnighthk.net^$elemhide (easylistchina+easylist.txt: 10309) +# @@||mnighthk.net^$elemhide (easylistchina.txt: 10299) .mnighthk.net -# @@||mnighthk.net/template/*/ad (easylistchina+easylist.txt: 10308) +# @@||mnighthk.net/template/*/ad (easylistchina.txt: 10298) .mnighthk.net/template/.*/ad -# @@||mm.maxthon.cn/ad/ (easylistchina+easylist.txt: 10307) +# @@||mm.maxthon.cn/ad/ (easylistchina.txt: 10297) .mm.maxthon.cn/ad/ -# @@||miaozhen.com^*/m.suning. (easylistchina+easylist.txt: 10306) +# @@||miaozhen.com^*/m.suning. (easylistchina.txt: 10296) .miaozhen.com/.*/m\.suning\. -# @@||meizu.com/fileserver/ad/img/ (easylistchina+easylist.txt: 10305) +# @@||meizu.com/fileserver/ad/img/ (easylistchina.txt: 10295) .meizu.com/fileserver/ad/img/ -# @@||meiziweibo.com^$elemhide (easylistchina+easylist.txt: 10304) +# @@||meiziweibo.com^$elemhide (easylistchina.txt: 10294) .meiziweibo.com -# @@||ltxhcz.com/skin/default/images/ (easylistchina+easylist.txt: 10302) +# @@||ltxhcz.com/skin/default/images/ (easylistchina.txt: 10292) .ltxhcz.com/skin/default/images/ -# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina+easylist.txt: 10301) +# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina.txt: 10291) .life.tenpay.com/res/ad/cellphone/js/down_for_app\.js -# @@||letvcloud.com^*&showAd= (easylistchina+easylist.txt: 10299) +# @@||letvcloud.com^*&showAd= (easylistchina.txt: 10289) .letvcloud.com/.*&showAd= -# @@||letv.com*/tuiguang/$subdocument (easylistchina+easylist.txt: 10298) +# @@||letv.com*/tuiguang/$subdocument (easylistchina.txt: 10288) .letv.com*./(.*/)?tuiguang/ -# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina+easylist.txt: 10296) +# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina.txt: 10286) .l.qq.com/livemsg\?ty=web&ad_type= -# @@||kukuplay.com/upload/*.*.swf (easylistchina+easylist.txt: 10295) +# @@||kukuplay.com/upload/*.*.swf (easylistchina.txt: 10285) .kukuplay.com/upload/.*\..*\.swf -# @@||joy.cn/service.php?*&showad= (easylistchina+easylist.txt: 10291) +# @@||joy.cn/service.php?*&showad= (easylistchina.txt: 10281) .joy.cn/service\.php\?.*&showad= -# @@||jjjgame.com/plus/ad_ (easylistchina+easylist.txt: 10290) +# @@||jjjgame.com/plus/ad_ (easylistchina.txt: 10280) .jjjgame.com/plus/ad_ -# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina+easylist.txt: 10289) +# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina.txt: 10279) .jj.5ccc.net/scripts/new/pagetop\.js -# @@||jinhongweiqi.com/ad/update/ (easylistchina+easylist.txt: 10288) +# @@||jinhongweiqi.com/ad/update/ (easylistchina.txt: 10278) .jinhongweiqi.com/ad/update/ -# @@||itjsb.com/bg.gif (easylistchina+easylist.txt: 10286) +# @@||itjsb.com/bg.gif (easylistchina.txt: 10276) .itjsb.com/bg\.gif -# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina+easylist.txt: 10285) +# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina.txt: 10275) .itiexue.net/js/tiexue/statistic/wwwindex/ -# @@||indeep.com.tw^*/Showad. (easylistchina+easylist.txt: 10281) +# @@||indeep.com.tw^*/Showad. (easylistchina.txt: 10271) .indeep.com.tw/.*/Showad\. -# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina+easylist.txt: 10280) +# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina.txt: 10270) .indeep.com.tw/Images/Upload/AdPic/ -# @@||indeep.com.tw/images/ad.swf? (easylistchina+easylist.txt: 10279) +# @@||indeep.com.tw/images/ad.swf? (easylistchina.txt: 10269) .indeep.com.tw/images/ad\.swf\? -# @@||img.ybbbs.com/2014/*app (easylistchina+easylist.txt: 10278) +# @@||img.ybbbs.com/2014/*app (easylistchina.txt: 10268) .img.ybbbs.com/2014/.*app -# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina+easylist.txt: 10274) +# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina.txt: 10264) .icbc.com.cn/Portal_Resources/Common/AdRes/ -# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina+easylist.txt: 10273) +# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina.txt: 10263) .icbc.com.cn/Portal_Resources/Common/AdCss/ -# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina+easylist.txt: 10272) +# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina.txt: 10262) .icbc.com.cn/ICBC_ADJS/ -# @@||icbc.com.cn/icbc/include/AD_ (easylistchina+easylist.txt: 10271) +# @@||icbc.com.cn/icbc/include/AD_ (easylistchina.txt: 10261) .icbc.com.cn/icbc/include/AD_ -# @@||ibf.tw^$elemhide (easylistchina+easylist.txt: 10270) +# @@||ibf.tw^$elemhide (easylistchina.txt: 10260) .ibf.tw -# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina+easylist.txt: 10269) +# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina.txt: 10259) .i3.sinaimg.cn/video/deco/2013/0325/js/ -# @@||hunantv.com/FrameWork/AFP/skin_ (easylistchina+easylist.txt: 10268) -.hunantv.com/FrameWork/AFP/skin_ -# @@||huelead.com/images/*ad (easylistchina+easylist.txt: 10267) +# @@||hunantv.com/FrameWork/AFP/ (easylistchina.txt: 10258) +.hunantv.com/FrameWork/AFP/ +# @@||huelead.com/images/*ad (easylistchina.txt: 10257) .huelead.com/images/.*ad -# @@||hkjc.com/banners/ (easylistchina+easylist.txt: 10266) +# @@||hkjc.com/banners/ (easylistchina.txt: 10256) .hkjc.com/banners/ -# @@||hhtt.cn/web.php/ad/show (easylistchina+easylist.txt: 10265) +# @@||hhtt.cn/web.php/ad/show (easylistchina.txt: 10255) .hhtt.cn/web\.php/ad/show -# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina+easylist.txt: 10264) +# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina.txt: 10254) .hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg\.js -# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina+easylist.txt: 10263) +# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina.txt: 10253) .heikexs.com/wp-content/themes/Duoxs.*/js/user\.js -# @@||guancha.cn/ad/m_ (easylistchina+easylist.txt: 10261) +# @@||guancha.cn/ad/m_ (easylistchina.txt: 10251) .guancha.cn/ad/m_ -# @@||gqzzw.com*/adview_ (easylistchina+easylist.txt: 10260) +# @@||gqzzw.com*/adview_ (easylistchina.txt: 10250) .gqzzw.com*./(.*/)?adview_ -# @@||gqdzs.com*/adview_ (easylistchina+easylist.txt: 10259) +# @@||gqdzs.com*/adview_ (easylistchina.txt: 10249) .gqdzs.com*./(.*/)?adview_ -# @@||gpsdlm.com/images/ad. (easylistchina+easylist.txt: 10258) +# @@||gpsdlm.com/images/ad. (easylistchina.txt: 10248) .gpsdlm.com/images/ad\. -# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina+easylist.txt: 10257) +# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina.txt: 10247) .gov.cn/scripts/Comm/AdRotator\.js -# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina+easylist.txt: 10256) +# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina.txt: 10246) .go.goyeah.com/adpolestar/ -# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina+easylist.txt: 10255) +# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina.txt: 10245) .gg1z.com/statics/gg/greendown/logo\.gif -# @@||gg.img123456.com^ (easylistchina+easylist.txt: 10253) +# @@||gg.yxdown.com/count/countzt.js (easylistchina.txt: 10244) +.gg.yxdown.com/count/countzt\.js +# @@||gg.img123456.com^ (easylistchina.txt: 10242) .gg.img123456.com -# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina+easylist.txt: 10252) +# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina.txt: 10241) .ganji.com/findjob/send_resume\..*&ad_type= -# @@||gamersky.com^*/dhgame_ (easylistchina+easylist.txt: 10251) +# @@||gamersky.com^*/dhgame_ (easylistchina.txt: 10240) .gamersky.com/.*/dhgame_ -# @@||game.sina.com.tw/game_data/advertise/ (easylistchina+easylist.txt: 10250) +# @@||game.sina.com.tw/game_data/advertise/ (easylistchina.txt: 10239) .game.sina.com.tw/game_data/advertise/ -# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina+easylist.txt: 10249) +# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina.txt: 10238) .g.tbcdn.cn/tb/mercury/.*/ads/index\. -# @@||g.alicdn.com/??*/criteo (easylistchina+easylist.txt: 10248) +# @@||g.alicdn.com/??*/criteo (easylistchina.txt: 10237) .g.alicdn.com/\?\?.*/criteo -# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina+easylist.txt: 10247) +# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina.txt: 10236) .g.163.com/jr\?site=netease&affiliate=freemail -# @@||forum.51nb.com/images/*/ (easylistchina+easylist.txt: 10246) +# @@||forum.51nb.com/images/*/ (easylistchina.txt: 10235) .forum.51nb.com/images/.*/ -# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina+easylist.txt: 10245) +# @@||fharr.com^$generichide (easylistchina.txt: 10234) +.fharr.com +# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina.txt: 10232) .esquirehk.com/action/adtag/\(type\)/googletag/\(method\)/async -# @@||emome.net/files/advertising/ (easylistchina+easylist.txt: 10244) +# @@||emome.net/files/advertising/ (easylistchina.txt: 10231) .emome.net/files/advertising/ -# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina+easylist.txt: 10243) +# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina.txt: 10230) .eiv.baidu.com/hmt/icon/21\.gif -# @@||edgesuite.net^*/ad.css? (easylistchina+easylist.txt: 10242) +# @@||edgesuite.net^*/ad.css? (easylistchina.txt: 10229) .edgesuite.net/.*/ad\.css\? -# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina+easylist.txt: 10241) +# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina.txt: 10228) .eden.org.tw/themes/liger/images/banner_ -# @@||eden.org.tw*/script/ad_banner/ (easylistchina+easylist.txt: 10240) +# @@||eden.org.tw*/script/ad_banner/ (easylistchina.txt: 10227) .eden.org.tw*./(.*/)?script/ad_banner/ -# @@||ecma.bdimg.com/holmes/*.svg (easylistchina+easylist.txt: 10239) +# @@||ecma.bdimg.com/holmes/*.svg (easylistchina.txt: 10226) .ecma.bdimg.com/holmes/.*\.svg -# @@||ecitic.com/eshop/advertise/ (easylistchina+easylist.txt: 10238) +# @@||ecitic.com/eshop/advertise/ (easylistchina.txt: 10225) .ecitic.com/eshop/advertise/ -# @@||ecitic.com/ads_ (easylistchina+easylist.txt: 10237) +# @@||ecitic.com/ads_ (easylistchina.txt: 10224) .ecitic.com/ads_ -# @@||ebiotrade.com/jslibrary/js44.js (easylistchina+easylist.txt: 10236) +# @@||ebiotrade.com/jslibrary/js44.js (easylistchina.txt: 10223) .ebiotrade.com/jslibrary/js44\.js -# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina+easylist.txt: 10234) +# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina.txt: 10218) .e.cn.miaozhen.com/r/k=.*=http -# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina+easylist.txt: 10233) +# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina.txt: 10217) .dzwww.com/ad/jsfiles/fillCon\.js -# @@||dvs.china.com/crossdomain.xml (easylistchina+easylist.txt: 10232) +# @@||dvs.china.com/crossdomain.xml (easylistchina.txt: 10216) .dvs.china.com/crossdomain\.xml -# @@||dvs.china.com/adv1.xml (easylistchina+easylist.txt: 10231) +# @@||dvs.china.com/adv1.xml (easylistchina.txt: 10215) .dvs.china.com/adv1\.xml -# @@||dvbcn.com/caches/poster_js/23.js (easylistchina+easylist.txt: 10230) +# @@||dvbcn.com/caches/poster_js/23.js (easylistchina.txt: 10214) .dvbcn.com/caches/poster_js/23\.js -# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina+easylist.txt: 10229) +# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina.txt: 10213) .dushiwenxue.com/add/article/pagetop\.js -# @@||duba.net/common/cf/common_6545_icon. (easylistchina+easylist.txt: 10228) +# @@||duba.net/common/cf/common_6545_icon. (easylistchina.txt: 10212) .duba.net/common/cf/common_6545_icon\. -# @@||downbank.cn/s1/yl.js (easylistchina+easylist.txt: 10227) +# @@||downbank.cn/s1/yl.js (easylistchina.txt: 10211) .downbank.cn/s1/yl\.js -# @@||down.cc/down/js/ad.js (easylistchina+easylist.txt: 10226) +# @@||down.cc/down/js/ad.js (easylistchina.txt: 10210) .down.cc/down/js/ad\.js -# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina+easylist.txt: 10225) +# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina.txt: 10209) .do189.com/zb_users/theme/duoyi/style/images/text_bg\.gif -# @@||dnvod.eu/ads/$object-subrequest (easylistchina+easylist.txt: 10224) +# @@||dnvod.eu/ads/$object-subrequest (easylistchina.txt: 10208) .dnvod.eu/ads/ -# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina+easylist.txt: 10223) +# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina.txt: 10207) .disney.com.tw/tv/global/swf/banner728x90\.swf -# @@||dilidili.com/js/week.js (easylistchina+easylist.txt: 10222) +# @@||dilidili.com/js/week.js (easylistchina.txt: 10206) .dilidili.com/js/week\.js -# @@||daoju.qq.com/time/*/js/ad/ (easylistchina+easylist.txt: 10221) +# @@||daoju.qq.com/time/*/js/ad/ (easylistchina.txt: 10205) .daoju.qq.com/time/.*/js/ad/ -# @@||damai.cn^*/TopAd/ (easylistchina+easylist.txt: 10220) +# @@||damai.cn^*/TopAd/ (easylistchina.txt: 10204) .damai.cn/.*/TopAd/ -# @@||cztv.com/player/*.swf?ad= (easylistchina+easylist.txt: 10219) +# @@||cztv.com/player/*.swf?ad= (easylistchina.txt: 10203) .cztv.com/player/.*\.swf\?ad= -# @@||csbew.com/FrameWork/AFP/ASP_ (easylistchina+easylist.txt: 10217) -.csbew.com/FrameWork/AFP/ASP_ -# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina+easylist.txt: 10216) +# @@||csbew.com/FrameWork/AFP/ (easylistchina.txt: 10201) +.csbew.com/FrameWork/AFP/ +# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina.txt: 10200) .cq.qq.com/js/cody/.*scroll_ad\.js -# @@||costco.com.tw/jsps/website/*AD (easylistchina+easylist.txt: 10213) +# @@||costco.com.tw/jsps/website/*AD (easylistchina.txt: 10197) .costco.com.tw/jsps/website/.*AD -# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina+easylist.txt: 10212) +# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina.txt: 10196) .content.s8bbs.com/ad/bbs/.*\.jpg -# @@||cntv.cn^*_ad.js (easylistchina+easylist.txt: 10211) +# @@||cntv.cn^*_ad.js (easylistchina.txt: 10195) .cntv.cn/.*_ad\.js -# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina+easylist.txt: 10210) +# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina.txt: 10194) .cnsofas.com/loldytt/js/jquery\.js -# @@||cnr.cn/gg/ (easylistchina+easylist.txt: 10209) +# @@||cnr.cn/gg/ (easylistchina.txt: 10193) .cnr.cn/gg/ -# @@||cmbchina.com/ads/ (easylistchina+easylist.txt: 10208) +# @@||cmbchina.com/ads/ (easylistchina.txt: 10192) .cmbchina.com/ads/ -# @@||click.union.vip.com^ (easylistchina+easylist.txt: 10207) +# @@||click.union.vip.com^ (easylistchina.txt: 10191) .click.union.vip.com -# @@||click.union.jd.com^ (easylistchina+easylist.txt: 10206) +# @@||click.union.jd.com^ (easylistchina.txt: 10190) .click.union.jd.com -# @@||citysbs.com^*/swfupload/ (easylistchina+easylist.txt: 10205) +# @@||citysbs.com^*/swfupload/ (easylistchina.txt: 10189) .citysbs.com/.*/swfupload/ -# @@||chinahr.com/images/phpads/ (easylistchina+easylist.txt: 10204) +# @@||chinahr.com/images/phpads/ (easylistchina.txt: 10188) .chinahr.com/images/phpads/ -# @@||cdn.wdlm.cn^*/ (easylistchina+easylist.txt: 10203) +# @@||cdn.wdlm.cn^*/ (easylistchina.txt: 10187) .cdn.wdlm.cn/.*/ -# @@||cb.baidu.com/ecom?di=943217& (easylistchina+easylist.txt: 10198) +# @@||cb.baidu.com/ecom?di=943217& (easylistchina.txt: 10182) .cb.baidu.com/ecom\?di=943217& -# @@||cb.baidu.com/ecom?di=893557& (easylistchina+easylist.txt: 10197) +# @@||cb.baidu.com/ecom?di=893557& (easylistchina.txt: 10181) .cb.baidu.com/ecom\?di=893557& -# @@||cb.baidu.com/ecom?di=817641& (easylistchina+easylist.txt: 10196) +# @@||cb.baidu.com/ecom?di=817641& (easylistchina.txt: 10180) .cb.baidu.com/ecom\?di=817641& -# @@||cb.baidu.com/ecom?di=654997& (easylistchina+easylist.txt: 10195) +# @@||cb.baidu.com/ecom?di=654997& (easylistchina.txt: 10179) .cb.baidu.com/ecom\?di=654997& -# @@||cb.baidu.com/ecom?di=373107& (easylistchina+easylist.txt: 10194) +# @@||cb.baidu.com/ecom?di=373107& (easylistchina.txt: 10178) .cb.baidu.com/ecom\?di=373107& -# @@||cb.baidu.com/ecom?di=106878& (easylistchina+easylist.txt: 10193) +# @@||cb.baidu.com/ecom?di=106878& (easylistchina.txt: 10177) .cb.baidu.com/ecom\?di=106878& -# @@||buy.ccb.com/public/js/ad.js (easylistchina+easylist.txt: 10189) +# @@||buy.ccb.com/public/js/ad.js (easylistchina.txt: 10173) .buy.ccb.com/public/js/ad\.js -# @@||briian.com/advert. (easylistchina+easylist.txt: 10188) +# @@||briian.com/advert. (easylistchina.txt: 10172) .briian.com/advert\. -# @@||blimage.com/picserver/ggpic/ (easylistchina+easylist.txt: 10187) +# @@||blimage.com/picserver/ggpic/ (easylistchina.txt: 10171) .blimage.com/picserver/ggpic/ -# @@||blemall.com^$elemhide (easylistchina+easylist.txt: 10186) +# @@||blemall.com^$elemhide (easylistchina.txt: 10170) .blemall.com -# @@||biz.gexing.com/bottom_ (easylistchina+easylist.txt: 10185) +# @@||biz.gexing.com/bottom_ (easylistchina.txt: 10169) .biz.gexing.com/bottom_ -# @@||biquge5.com/jquery/biquge.js (easylistchina+easylist.txt: 10184) +# @@||biquge5.com/jquery/biquge.js (easylistchina.txt: 10168) .biquge5.com/jquery/biquge\.js -# @@||bingfeng.tw^$elemhide (easylistchina+easylist.txt: 10183) +# @@||bingfeng.tw^$elemhide (easylistchina.txt: 10167) .bingfeng.tw -# @@||beanfun.com/ADClient/ (easylistchina+easylist.txt: 10182) +# @@||beanfun.com/ADClient/ (easylistchina.txt: 10166) .beanfun.com/ADClient/ -# @@||bdstatic.com/??*, (easylistchina+easylist.txt: 10181) +# @@||bdstatic.com/??*, (easylistchina.txt: 10165) .bdstatic.com/\?\?.*, -# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina+easylist.txt: 10179) +# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina.txt: 10163) .bbs.yantuchina.com/gg/tmp/hong\.gif -# @@||banma.com/statics/js/?? (easylistchina+easylist.txt: 10178) +# @@||banma.com/statics/js/?? (easylistchina.txt: 10162) .banma.com/statics/js/\?\? -# @@||atm.youku.com/cast/getFlvUrl. (easylistchina+easylist.txt: 10177) +# @@||bahamut.com.tw/JS/ad/mobileBigBanner.js (easylistchina.txt: 10161) +.bahamut.com.tw/JS/ad/mobileBigBanner\.js +# @@||atm.youku.com/cast/getFlvUrl. (easylistchina.txt: 10160) .atm.youku.com/cast/getFlvUrl\. -# @@||astyle.alicdn.com/?? (easylistchina+easylist.txt: 10176) +# @@||astyle.alicdn.com/?? (easylistchina.txt: 10159) .astyle.alicdn.com/\?\? -# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina+easylist.txt: 10175) +# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina.txt: 10158) .aspjzy.com/jsweb/js/hotsearch\.js -# @@||aqy103.com/js/aqy/main.js (easylistchina+easylist.txt: 10173) +# @@||aqy103.com/js/aqy/main.js (easylistchina.txt: 10156) .aqy103.com/js/aqy/main\.js -# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina+easylist.txt: 10172) +# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina.txt: 10155) .appledaily.com.hk/admedia/ -# @@||appbyme.com^*/Advertisement.css (easylistchina+easylist.txt: 10171) +# @@||appbyme.com^*/Advertisement.css (easylistchina.txt: 10154) .appbyme.com/.*/Advertisement\.css -# @@||appbyme.com/adclient/ (easylistchina+easylist.txt: 10170) +# @@||appbyme.com/adclient/ (easylistchina.txt: 10153) .appbyme.com/adclient/ -# @@||angpic.3g.net.cn/ai/*/ (easylistchina+easylist.txt: 10169) +# @@||angpic.3g.net.cn/ai/*/ (easylistchina.txt: 10152) .angpic.3g.net.cn/ai/.*/ -# @@||airenti.xyz/*/$script (easylistchina+easylist.txt: 10166) -.airenti.xyz/.*/ -# @@||airenti.co/*/$script (easylistchina+easylist.txt: 10165) -.airenti.co/.*/ -# @@||advertise.shijue.cvidea.cn^ (easylistchina+easylist.txt: 10164) +# @@||airenti.in/*/$script (easylistchina.txt: 10149) +.airenti.in/.*/ +# @@||advertise.shijue.cvidea.cn^ (easylistchina.txt: 10148) .advertise.shijue.cvidea.cn -# @@||advert.kf5.com^ (easylistchina+easylist.txt: 10163) +# @@||advert.kf5.com^ (easylistchina.txt: 10147) .advert.kf5.com -# @@||ads.i8.com.cn/hd/dzs/ (easylistchina+easylist.txt: 10159) +# @@||ads.i8.com.cn/hd/dzs/ (easylistchina.txt: 10143) .ads.i8.com.cn/hd/dzs/ -# @@||adjs.8591.com.tw^$script (easylistchina+easylist.txt: 10155) +# @@||adjs.8591.com.tw^$script (easylistchina.txt: 10139) .adjs.8591.com.tw -# @@||addon.discuz.com/resource/*/ad (easylistchina+easylist.txt: 10154) +# @@||addon.discuz.com/resource/*/ad (easylistchina.txt: 10138) .addon.discuz.com/resource/.*/ad -# @@||adcdn.pingan.com^ (easylistchina+easylist.txt: 10153) +# @@||adcdn.pingan.com^ (easylistchina.txt: 10137) .adcdn.pingan.com -# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina+easylist.txt: 10152) +# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina.txt: 10136) .ad1.nownews.com/ads\.php\?ownerid=1335 -# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina+easylist.txt: 10151) +# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina.txt: 10135) .ad1.nownews.com/ads\.php\?ownerid=1334 -# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina+easylist.txt: 10150) +# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina.txt: 10134) .ad1.nownews.com/ads\.php\?ownerid=1333 -# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina+easylist.txt: 10149) +# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina.txt: 10133) .ad1.nownews.com/ads\.php\?ownerid=1332 -# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina+easylist.txt: 10148) +# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina.txt: 10132) .ad1.nownews.com/ads\.php\?ownerid=1331 -# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina+easylist.txt: 10147) +# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina.txt: 10131) .ad1.nownews.com/ads\.php\?ownerid=1325 -# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina+easylist.txt: 10146) +# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina.txt: 10130) .ad1.nownews.com/ads\.php\?ownerid=1324 -# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina+easylist.txt: 10145) +# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina.txt: 10129) .ad1.nownews.com/ads\.php\?ownerid=1323 -# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina+easylist.txt: 10144) +# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina.txt: 10128) .ad1.nownews.com/ads\.php\?ownerid=1322 -# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina+easylist.txt: 10143) +# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina.txt: 10127) .ad1.nownews.com/ads\.php\?ownerid=1321 -# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina+easylist.txt: 10142) +# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina.txt: 10126) .ad1.nownews.com/ads\.php\?ownerid=1294 -# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina+easylist.txt: 10141) +# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina.txt: 10125) .ad1.nownews.com/.*\.php\?ownerid=1355 -# @@||ad.thsi.cn/siteHome/ (easylistchina+easylist.txt: 10139) +# @@||ad.thsi.cn/siteHome/ (easylistchina.txt: 10123) .ad.thsi.cn/siteHome/ -# @@||ad.qyer.com^ (easylistchina+easylist.txt: 10138) +# @@||ad.qyer.com^ (easylistchina.txt: 10122) .ad.qyer.com -# @@||ad.ourgame.com^ (easylistchina+easylist.txt: 10137) +# @@||ad.ourgame.com^ (easylistchina.txt: 10121) .ad.ourgame.com -# @@||ad.kazakinfo.com^ (easylistchina+easylist.txt: 10136) +# @@||ad.kazakinfo.com^ (easylistchina.txt: 10120) .ad.kazakinfo.com -# @@||ad.jz123.cn^ (easylistchina+easylist.txt: 10135) +# @@||ad.jz123.cn^ (easylistchina.txt: 10119) .ad.jz123.cn -# @@||ad.damai.cn^ (easylistchina+easylist.txt: 10133) +# @@||ad.damai.cn^ (easylistchina.txt: 10117) .ad.damai.cn -# @@||ad.abchina.com^ (easylistchina+easylist.txt: 10131) +# @@||ad.abchina.com^ (easylistchina.txt: 10115) .ad.abchina.com -# @@||ad.10010.com^ (easylistchina+easylist.txt: 10128) +# @@||ad.10010.com^ (easylistchina.txt: 10112) .ad.10010.com -# @@||abchina.com^*/images/ad. (easylistchina+easylist.txt: 10126) +# @@||abchina.com^*/images/ad. (easylistchina.txt: 10110) .abchina.com/.*/images/ad\. -# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina+easylist.txt: 10125) +# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina.txt: 10109) .a.banggo.com/Ad/getAdPosList\.shtml -# @@||95599.cn^*/images/ad. (easylistchina+easylist.txt: 10123) +# @@||99ting.cn/image/ding.gif (easylistchina.txt: 10106) +.99ting.cn/image/ding\.gif +# @@||95599.cn^*/images/ad. (easylistchina.txt: 10105) .95599.cn/.*/images/ad\. -# @@||8591.com.tw^*/buyAd.css (easylistchina+easylist.txt: 10122) +# @@||8591.com.tw^*/buyAd.css (easylistchina.txt: 10104) .8591.com.tw/.*/buyAd\.css -# @@||7vk.com/detail/shehuipinlun.js (easylistchina+easylist.txt: 10121) +# @@||7vk.com/detail/shehuipinlun.js (easylistchina.txt: 10103) .7vk.com/detail/shehuipinlun\.js -# @@||7s8.net/image/ads/ (easylistchina+easylist.txt: 10120) +# @@||7s8.net/image/ads/ (easylistchina.txt: 10102) .7s8.net/image/ads/ -# @@||77119.com/js/fenxiang.js (easylistchina+easylist.txt: 10119) +# @@||77119.com/js/fenxiang.js (easylistchina.txt: 10101) .77119.com/js/fenxiang\.js -# @@||75.125.41.29:8080/*/ (easylistchina+easylist.txt: 10118) +# @@||75.125.41.29:8080/*/ (easylistchina.txt: 10100) .75.125.41.29:8080/.*/ -# @@||70.86.24.120:8060/*/ (easylistchina+easylist.txt: 10115) +# @@||70.86.24.120:8060/*/ (easylistchina.txt: 10097) .70.86.24.120:8060/.*/ -# @@||61ef.cn/upfiles/gg/ (easylistchina+easylist.txt: 10114) +# @@||61ef.cn/upfiles/gg/ (easylistchina.txt: 10096) .61ef.cn/upfiles/gg/ -# @@||61.164.108.184/tb/*.gif (easylistchina+easylist.txt: 10113) +# @@||61.164.108.184/tb/*.gif (easylistchina.txt: 10095) .61.164.108.184/tb/.*\.gif -# @@||61.164.108.104:4275/*/*.gif (easylistchina+easylist.txt: 10112) +# @@||61.164.108.104:4275/*/*.gif (easylistchina.txt: 10094) .61.164.108.104:4275/.*/.*\.gif -# @@||58cdn.com.cn/tuiguang/center/ (easylistchina+easylist.txt: 10111) +# @@||58cdn.com.cn/tuiguang/center/ (easylistchina.txt: 10092) .58cdn.com.cn/tuiguang/center/ -# @@||58.com/adJump?adType= (easylistchina+easylist.txt: 10109) +# @@||58.com/adJump?adType= (easylistchina.txt: 10090) .58.com/adJump\?adType= -# @@||52zy.com/gg/ (easylistchina+easylist.txt: 10108) +# @@||52zy.com/gg/ (easylistchina.txt: 10089) .52zy.com/gg/ -# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina+easylist.txt: 10107) +# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina.txt: 10088) .52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b\.png -# @@||51img1.com/??*/adsys. (easylistchina+easylist.txt: 10106) +# @@||51img1.com/??*/adsys. (easylistchina.txt: 10087) .51img1.com/\?\?.*/adsys\. -# @@||51hanhua.com/2013/brtxt.js (easylistchina+easylist.txt: 10105) +# @@||51hanhua.com/2013/brtxt.js (easylistchina.txt: 10086) .51hanhua.com/2013/brtxt\.js -# @@||360buyimg.com^*?? (easylistchina+easylist.txt: 10103) +# @@||360buyimg.com^*?? (easylistchina.txt: 10084) .360buyimg.com/.*\?\? -# @@||3399.com/DataTransfer/Advertisement/ (easylistchina+easylist.txt: 10100) +# @@||3399.com/DataTransfer/Advertisement/ (easylistchina.txt: 10081) .3399.com/DataTransfer/Advertisement/ -# @@||33.autohome.com.cn/njs/newget.js (easylistchina+easylist.txt: 10099) +# @@||33.autohome.com.cn/njs/newget.js (easylistchina.txt: 10080) .33.autohome.com.cn/njs/newget\.js -# @@||33.autohome.com.cn/njs/10055.js (easylistchina+easylist.txt: 10098) +# @@||33.autohome.com.cn/njs/10055.js (easylistchina.txt: 10079) .33.autohome.com.cn/njs/10055\.js -# @@||2kandy.com^$generichide (easylistchina+easylist.txt: 10097) +# @@||2kandy.com^$generichide (easylistchina.txt: 10078) .2kandy.com -# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina+easylist.txt: 10096) +# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina.txt: 10077) .2kandy.com/source/plugin/fieah_blockadblock/ -# @@||221.7.250.35/caches/poster_js/21.js (easylistchina+easylist.txt: 10093) +# @@||221.7.250.35/caches/poster_js/21.js (easylistchina.txt: 10076) .221.7.250.35/caches/poster_js/21\.js -# @@||218.65.30.232:88/day_ (easylistchina+easylist.txt: 10092) -.218.65.30.232:88/day_ -# @@||192.168.*/advertising_$stylesheet (easylistchina+easylist.txt: 10091) +# @@||192.168.*/advertising_$stylesheet (easylistchina.txt: 10075) .192.168.*./(.*/)?advertising_ -# @@||192.168.*.1/userRpm/Index.$elemhide (easylistchina+easylist.txt: 10090) +# @@||192.168.*.1/userRpm/Index.$elemhide (easylistchina.txt: 10074) .192.168.*./.*\.1/userRpm/Index\. .192.168.*.1/userRpm/Index\. -# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina+easylist.txt: 10089) +# @@||189.cn^$generichide (easylistchina.txt: 10073) +.189.cn +# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina.txt: 10072) .189.cn/activity/adzh2015/js/ad\.js -# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina+easylist.txt: 10088) +# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina.txt: 10071) .17kk.cc/scriptAD/other/new_manhua\.html -# @@||177mh.com/img_v1/bbad.gif (easylistchina+easylist.txt: 10087) +# @@||177mh.com/img_v1/bbad.gif (easylistchina.txt: 10070) .177mh.com/img_v1/bbad\.gif -# @@||17173.com/x/flash800500.js (easylistchina+easylist.txt: 10086) +# @@||17173.com/x/flash800500.js (easylistchina.txt: 10069) .17173.com/x/flash800500\.js -# @@||16888.com/dist/js/?? (easylistchina+easylist.txt: 10085) +# @@||16888.com/dist/js/?? (easylistchina.txt: 10068) .16888.com/dist/js/\?\? -# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina+easylist.txt: 10084) +# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina.txt: 10067) .131js.131.com/home/resouces/js/index_20120420\.js -# @@||123dhang.com/supo/advertisement.js (easylistchina+easylist.txt: 10082) +# @@||123dhang.com/supo/advertisement.js (easylistchina.txt: 10065) .123dhang.com/supo/advertisement\.js -# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina+easylist.txt: 10081) +# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina.txt: 10064) .12306.cn/otn/resources/images/pic/new-ad -# @@||113.com.tw/www/image/index-ad.png (easylistchina+easylist.txt: 10080) +# @@||113.com.tw/www/image/index-ad.png (easylistchina.txt: 10063) .113.com.tw/www/image/index-ad\.png -# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina+easylist.txt: 10079) +# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina.txt: 10062) .107.182.131.103/cache/\?q=/images/.*/ -# @@||10010.com^*/ad/ (easylistchina+easylist.txt: 10076) +# @@||10086.cn^$generichide (easylistchina.txt: 10060) +.10086.cn +# @@||10010.com^*/ad/ (easylistchina.txt: 10059) .10010.com/.*/ad/ -# @@||10010.com^*/ad. (easylistchina+easylist.txt: 10075) +# @@||10010.com^*/ad. (easylistchina.txt: 10058) .10010.com/.*/ad\. -# @@||060s.com/images_ad/*.png (easylistchina+easylist.txt: 10074) +# @@||060s.com/images_ad/*.png (easylistchina.txt: 10057) .060s.com/images_ad/.*\.png -# @@|http://*/gg/*.css (easylistchina+easylist.txt: 10073) +# @@|http://tieba.baidu.com/|$genericblock (easylistchina.txt: 10056) +tieba.baidu.com/$ +# @@|http://*/gg/*.css (easylistchina.txt: 10055) /(.*/)?gg/.*\.css -# @@u-ads.adap.tv*youku.com (easylistchina+easylist.txt: 10067) +# @@u-ads.adap.tv*youku.com (easylistchina.txt: 10049) /.*u-ads\.adap\.tv.*youku\.com .*u-ads.adap.tv*./.*youku\.com .*u-ads.adap.tv*youku.com*. -# @@/ttkdweb/page/js/ad.js (easylistchina+easylist.txt: 10058) +# @@/ttkdweb/page/js/ad.js (easylistchina.txt: 10040) /(.*/)?ttkdweb/page/js/ad\.js -# @@/page/adv.html?advId=$subdocument (easylistchina+easylist.txt: 10049) +# @@/page/adv.html?advId=$subdocument (easylistchina.txt: 10031) /(.*/)?page/adv\.html\?advId= -# @@/dy_44jjss/zytop1.js (easylistchina+easylist.txt: 10036) -/(.*/)?dy_44jjss/zytop1\.js -# @@/dy_44jjss/topbu.js (easylistchina+easylist.txt: 10035) -/(.*/)?dy_44jjss/topbu\.js -# @@/data/attachment/*_300_250_ (easylistchina+easylist.txt: 10034) +# @@/data/attachment/*_300_250_ (easylistchina.txt: 10018) /(.*/)?data/attachment/.*_300_250_ -# @@/cntv_Advertise.js (easylistchina+easylist.txt: 10031) +# @@/cntv_Advertise.js (easylistchina.txt: 10015) /(.*/)?cntv_Advertise\.js -# @@/appledaily/homead/*_ad_logo. (easylistchina+easylist.txt: 10027) +# @@/appledaily/homead/*_ad_logo. (easylistchina.txt: 10011) /(.*/)?appledaily/homead/.*_ad_logo\. -# @@/32666/images/ad (easylistchina+easylist.txt: 9995) +# @@/32666/images/ad (easylistchina.txt: 9980) /(.*/)?32666/images/ad -# @@/2kuai/images/ad (easylistchina+easylist.txt: 9994) +# @@/2kuai/images/ad (easylistchina.txt: 9979) /(.*/)?2kuai/images/ad -# @@.tudouui.com^*&adSourceId= (easylistchina+easylist.txt: 9992) +# @@.tudouui.com^*&adSourceId= (easylistchina.txt: 9977) /.*\.tudouui\.com[^\w%.-].*&adSourceId= .*.tudouui.com/.*&adSourceId= -# @@.s1979.com/ad/ad*.mp4 (easylistchina+easylist.txt: 9991) +# @@.s1979.com/ad/ad*.mp4 (easylistchina.txt: 9976) /.*\.s1979\.com/ad/ad.*\.mp4 .*.s1979.com/ad/ad.*\.mp4 -# @@.jstv.com/c/gg/ (easylistchina+easylist.txt: 9990) +# @@.jstv.com/c/gg/ (easylistchina.txt: 9975) /.*\.jstv\.com/c/gg/ .*.jstv.com/c/gg/ -# @@.cntv.cn/adplayer/ (easylistchina+easylist.txt: 9984) +# @@.cntv.cn/adplayer/ (easylistchina.txt: 9970) /.*\.cntv\.cn/adplayer/ .*.cntv.cn/adplayer/ -# @@.beautifulphoto.net/ads/music (easylistchina+easylist.txt: 9983) +# @@.beautifulphoto.net/ads/music (easylistchina.txt: 9969) /.*\.beautifulphoto\.net/ads/music .*.beautifulphoto.net/ads/music -# @@&adf=dalian_300x250_ (easylistchina+easylist.txt: 9981) +# @@&adf=dalian_300x250_ (easylistchina.txt: 9967) /.*&adf=dalian_300x250_ -# @@||union.bokecc.com/crossdomain.xml (easylistchina+easylist.txt: 24) +# @@||union.bokecc.com/crossdomain.xml (easylistchina.txt: 21) .union.bokecc.com/crossdomain\.xml -# @@||poster.weather.com.cn/p_files/base/$image (easylistchina+easylist.txt: 23) +# @@||poster.weather.com.cn/p_files/base/$image (easylistchina.txt: 20) .poster.weather.com.cn/p_files/base/ -# @@||hichannel.hinet.net^$object-subrequest (easylistchina+easylist.txt: 22) +# @@||hichannel.hinet.net^$object-subrequest (easylistchina.txt: 19) .hichannel.hinet.net -# @@||vse.kz/public/js/jsLoader.js?adkey= (advblock.txt: 7607) -.vse.kz/public/js/jsLoader\.js\?adkey= -# @@||sports.ru^*/adfox.$image,xmlhttprequest (advblock.txt: 7600) -.sports.ru/.*/adfox\. -# @@||smexo.tv^$genericblock,generichide (advblock.txt: 7599) -.smexo.tv -# @@||rutube.ru/dbg/player_stat?$object-subrequest (advblock.txt: 7598) -.rutube.ru/dbg/player_stat\? -# @@||ria.ru^$generichide (advblock.txt: 7597) -.ria.ru -# @@||remoteshaman.com/templates/remotehelp/js/ads.js| (advblock.txt: 7596) -.remoteshaman.com/templates/remotehelp/js/ads\.js$ -# @@||planetaua.net^$generichide (advblock.txt: 7594) -.planetaua.net -# @@||photolessons.org^$elemhide (advblock.txt: 7592) -.photolessons.org -# @@||olegon.ru^$elemhide (advblock.txt: 7588) -.olegon.ru -# @@||moviki.ru/embed/$elemhide (advblock.txt: 7585) -.moviki.ru/embed/ -# @@||moonwalk.cc^$elemhide (advblock.txt: 7583) -.moonwalk.cc -# @@||lostfilmonline.tv^$elemhide (advblock.txt: 7581) -.lostfilmonline.tv -# @@||kinomania.kz^$generichide (advblock.txt: 7577) -.kinomania.kz -# @@||ivbt.ru^$elemhide (advblock.txt: 7576) -.ivbt.ru -# @@||free-send.ru^$elemhide (advblock.txt: 7568) -.free-send.ru -# @@||forum.zarulem.ws^$elemhide (advblock.txt: 7567) -.forum.zarulem.ws -# @@||forum.na-svyazi.ru^$elemhide (advblock.txt: 7566) -.forum.na-svyazi.ru -# @@||fileplaneta.com^$generichide (advblock.txt: 7565) -.fileplaneta.com -# @@||cnews.ru^$generichide (advblock.txt: 7562) -.cnews.ru -# @@||anistar.ru^$generichide (advblock.txt: 7561) -.anistar.ru -# @@||adultmult.tv^$genericblock,generichide (advblock.txt: 7555) -.adultmult.tv -# @@/banner.jpg?ad_height=300&adzone=100&adserver=1&adType=32|$image (advblock.txt: 7533) -/(.*/)?banner\.jpg\?ad_height=300&adzone=100&adserver=1&adType=32$ -# @@||yastatic.net/market-export/*/adv/advert.js| (advblock.txt: 7439) -.yastatic.net/market-export/.*/adv/advert\.js$ -# @@||yandex.st/swf/ad-sdk-module/1_0/info?nc= (advblock.txt: 7438) -.yandex.st/swf/ad-sdk-module/1_0/info\?nc= -# @@||yandex.st/swf/ad-sdk-module/1_0/*/ad-sdk-module.swf?partnerid=139995 (advblock.txt: 7437) -.yandex.st/swf/ad-sdk-module/1_0/.*/ad-sdk-module\.swf\?partnerid=139995 -# @@||yandex.ru/metrika/informer.js (advblock.txt: 7436) -.yandex.ru/metrika/informer\.js -# @@||x-soft.tomsk.ru/dsa/kompstar/jcarousel.js (advblock.txt: 7433) -.x-soft.tomsk.ru/dsa/kompstar/jcarousel\.js -# @@||volnorez.com^*/liveplayer.swf?url= (advblock.txt: 7430) -.volnorez.com/.*/liveplayer\.swf\?url= -# @@||videocore.tv^*/pladform_pitertv.swf|$object-subrequest (advblock.txt: 7425) -.videocore.tv/.*/pladform_pitertv\.swf$ -# @@||videocore.tv/jscript/$script (advblock.txt: 7424) -.videocore.tv/jscript/ -# @@||video.videonow.ru/crossdomain.xml (advblock.txt: 7423) -.video.videonow.ru/crossdomain\.xml -# @@||video.begun.ru/flowplayer_begun_lib.swf| (advblock.txt: 7421) -.video.begun.ru/flowplayer_begun_lib\.swf$ -# @@||video.*.user.madbanner.ru^$object-subrequest (advblock.txt: 7420) -.video.*./.*\.user\.madbanner\.ru[^\w%.-] -.video.*.user.madbanner.ru -# @@||ukrainianiphone.com/baners/r/$~third-party (advblock.txt: 7417) -.ukrainianiphone.com/baners/r/ -# @@||teachvideo.ru/www/delivery/$~third-party (advblock.txt: 7407) -.teachvideo.ru/www/delivery/ -# @@||teachvideo.ru/advert/$~third-party (advblock.txt: 7406) -.teachvideo.ru/advert/ -# @@||statcounter.com/counter/counter.js$~third-party (advblock.txt: 7397) -.statcounter.com/counter/counter\.js -# @@||sims3club.ru/images/bn/$~third-party (advblock.txt: 7392) -.sims3club.ru/images/bn/ -# @@||semrush.com/m/scripts/reports/backlinks.$~third-party (advblock.txt: 7391) -.semrush.com/m/scripts/reports/backlinks\. -# @@||s5o.ru/common/css/teaser.css? (advblock.txt: 7387) -.s5o.ru/common/css/teaser\.css\? -# @@||s.click.aliexpress.com^$popup (advblock.txt: 7386) -.s.click.aliexpress.com -# @@||ruspor.ru^$~third-party (advblock.txt: 7383) -.ruspor.ru -# @@||rublacklist.net/media/*/RKS-banner-$image (advblock.txt: 7381) -.rublacklist.net/media/.*/RKS-banner- -# @@||rostcars.ru/css/advertisement.css$~third-party (advblock.txt: 7378) -.rostcars.ru/css/advertisement\.css -# @@||rock-online.ru/thema/rock/images/baner_$~third-party (advblock.txt: 7376) -.rock-online.ru/thema/rock/images/baner_ -# @@||rf-mods.ru/uploads/banners/ (advblock.txt: 7375) -.rf-mods.ru/uploads/banners/ -# @@||promo.static.gamexp.ru^ (advblock.txt: 7369) -.promo.static.gamexp.ru -# @@||promo.gamble2fun.com^$subdocument (advblock.txt: 7367) -.promo.gamble2fun.com -# @@||prokazan.ru/sites/default/files/imagecache/tizer_$~third-party (advblock.txt: 7366) -.prokazan.ru/sites/default/files/imagecache/tizer_ -# @@||plektan.com/ad/$image (advblock.txt: 7361) -.plektan.com/ad/ -# @@||play.aniland.org^*.swf$object (advblock.txt: 7360) -.play.aniland.org/.*\.swf -# @@||peakdesign.ru^*/300_250_ (advblock.txt: 7354) -.peakdesign.ru/.*/300_250_ -# @@||nude-moon.com/cdn-cgi/pe/bag2?r[]=http%3A%2F%2Fnude-moon. (advblock.txt: 7350) -.nude-moon.com/cdn-cgi/pe/bag2\?r\[\]=http%3A%2F%2Fnude-moon\. -# @@||now.ru/www/delivery/fc.php? (advblock.txt: 7349) -.now.ru/www/delivery/fc\.php\? -# @@||noteru.com/photo/*/tizer/$image (advblock.txt: 7348) -.noteru.com/photo/.*/tizer/ -# @@||myradio24.com/informer.php (advblock.txt: 7343) -.myradio24.com/informer\.php -# @@||myband.info/advert/$~third-party (advblock.txt: 7342) -.myband.info/advert/ -# @@||my.south.rt.ru^$document (advblock.txt: 7341) -.my.south.rt.ru -# @@||mmi.bemobile.ua/lib/lib.js (advblock.txt: 7338) -.mmi.bemobile.ua/lib/lib\.js -# @@||megogo.net^$generichide (advblock.txt: 7336) -.megogo.net -# @@||mediatoday.ru/storage/JWPlayerVideoClickPlugin$object-subrequest (advblock.txt: 7335) -.mediatoday.ru/storage/JWPlayerVideoClickPlugin -# @@||mediatoday.ru/crossdomain.xml| (advblock.txt: 7334) -.mediatoday.ru/crossdomain\.xml$ -# @@||maritimebank.com/All/Images/Banner.gif (advblock.txt: 7331) -.maritimebank.com/All/Images/Banner\.gif -# @@||map.cn.ua/media/*/tur/ (advblock.txt: 7330) -.map.cn.ua/media/.*/tur/ -# @@||mads.su^$~third-party (advblock.txt: 7328) -.mads.su -# @@||liveangarsk.ru/files/k/k-nikita.gif (advblock.txt: 7324) -.liveangarsk.ru/files/k/k-nikita\.gif -# @@||lifenews.ru^$generichide (advblock.txt: 7323) -.lifenews.ru -# @@||kino-dom.org^$generichide (advblock.txt: 7321) -.kino-dom.org -# @@||instreamvideo.ru/storage/InstreamVideoPlugin$object-subrequest (advblock.txt: 7317) -.instreamvideo.ru/storage/InstreamVideoPlugin -# @@||instreamvideo.ru/crossdomain.xml| (advblock.txt: 7316) -.instreamvideo.ru/crossdomain\.xml$ -# @@||iledebeaute.ru^$genericblock,generichide (advblock.txt: 7312) -.iledebeaute.ru -# @@||enaza.ru/assets/img/$image (advblock.txt: 7292) -.enaza.ru/assets/img/ -# @@||efxi.ru/files/banner.gif| (advblock.txt: 7290) -.efxi.ru/files/banner\.gif$ -# @@||darkteam.net/advertisement.js (advblock.txt: 7288) -.darkteam.net/advertisement\.js -# @@||changecopyright.ru/bannersout/ (advblock.txt: 7285) -.changecopyright.ru/bannersout/ -# @@||bash.im/webmaster|$elemhide (advblock.txt: 7276) -.bash.im/webmaster$ -# @@||an.yandex.ru/vcset/139995?*&client_type=flash (advblock.txt: 7266) -.an.yandex.ru/vcset/139995\?.*&client_type=flash -# @@||an.yandex.ru/crossdomain.xml (advblock.txt: 7262) -.an.yandex.ru/crossdomain\.xml -# @@||amazonaws.com/c.swf?path=http (advblock.txt: 7261) -.amazonaws.com/c\.swf\?path=http -# @@||alluregame.ru/Content/*/Advert$~third-party (advblock.txt: 7259) -.alluregame.ru/Content/.*/Advert -# @@||alfabank.ru/*/baner_$~third-party (advblock.txt: 7258) -.alfabank.ru/.*/baner_ -# @@||advertising.yandex.$~third-party (advblock.txt: 7253) -.advertising.yandex.*. -# @@||advert.starlightmedia.ua/ua/index/get-advert (advblock.txt: 7251) -.advert.starlightmedia.ua/ua/index/get-advert -# @@||advert.starlightmedia.ua/crossdomain.xml (advblock.txt: 7250) -.advert.starlightmedia.ua/crossdomain\.xml -# @@||advert.kp.ru^$~object,~third-party (advblock.txt: 7249) -.advert.kp.ru -# @@||adv.ru^$popup (advblock.txt: 7247) -.adv.ru -# @@||adsgame.pro^$~third-party (advblock.txt: 7243) -.adsgame.pro -# @@||ads.tomtel.ru/adjs.$script (advblock.txt: 7240) -.ads.tomtel.ru/adjs\. -# @@||ads.su^$~third-party (advblock.txt: 7239) -.ads.su -# @@||ads.rb.ru/video_banner.php$object-subrequest (advblock.txt: 7238) -.ads.rb.ru/video_banner\.php -# @@||adman.com^$~third-party (advblock.txt: 7226) -.adman.com -# @@||900.md/ads/js/$~third-party (advblock.txt: 7222) -.900.md/ads/js/ -# @@||900.md/ads/images/$~third-party (advblock.txt: 7221) -.900.md/ads/images/ -# @@||7771000.ru/images/*/baners/$~third-party (advblock.txt: 7220) -.7771000.ru/images/.*/baners/ -# @@||2gis.ru^$generichide (advblock.txt: 7219) -.2gis.ru -# @@.soundcloud.com/player.swf?url= (advblock.txt: 7179) -/.*\.soundcloud\.com/player\.swf\?url= -.*.soundcloud.com/player\.swf\?url= -# @@||adsvk.com/scripts/advertise_$~third-party (advblock.txt: 6972) -.adsvk.com/scripts/advertise_ -# @@||adsvk.com/images/advertising/$~third-party (advblock.txt: 6971) -.adsvk.com/images/advertising/ -# @@||vk.com/ads*.php?__query=$~third-party (advblock.txt: 6967) -.vk.com/ads.*\.php\?__query= -# @@||wowroad.info^$third-party,script (advblock.txt: 697) -.wowroad.info -# @@||wikiroutes.info^$third-party,script (advblock.txt: 696) -.wikiroutes.info -# @@||stells.info^$third-party,script (advblock.txt: 695) -.stells.info -# @@||static.kinoafisha.info^$third-party,script (advblock.txt: 694) -.static.kinoafisha.info -# @@||oplata.info^$third-party,script (advblock.txt: 693) -.oplata.info -# @@||nyan.pw^$third-party,script (advblock.txt: 692) -.nyan.pw -# @@||kuda-edu.info^$third-party,script (advblock.txt: 690) -.kuda-edu.info -# @@||infoclub.info^$third-party,script (advblock.txt: 689) -.infoclub.info -# @@||gowebinar.info^$third-party,script (advblock.txt: 688) -.gowebinar.info -# @@||ctpe.info^$third-party,script (advblock.txt: 687) -.ctpe.info -# @@||blockchain.info^$third-party,script (advblock.txt: 686) -.blockchain.info -# @@||bitrix.info^$third-party,script (advblock.txt: 685) -.bitrix.info -# @@||bdodb.info^$third-party,script (advblock.txt: 684) -.bdodb.info -# @@||autogespot.info^$third-party,script (advblock.txt: 681) -.autogespot.info -# @@||imagebam.com/image/$popup (easylist.txt: 51309) -.imagebam.com/image/ -# @@||ads.b10f.jp/flv/$~third-party (easylist.txt: 51302) -.ads.b10f.jp/flv/ -# @@||youngmodelsclub.net^$elemhide (easylist.txt: 51300) -.youngmodelsclub.net -# @@||youfreeporntube.com^$generichide (easylist.txt: 51299) -.youfreeporntube.com -# @@||you-fap.com^$elemhide (easylist.txt: 51298) -.you-fap.com -# @@||xibitnet.com/check/advertisements.js (easylist.txt: 51297) -.xibitnet.com/check/advertisements\.js -# @@||xibitnet.com/check/advertisement.js (easylist.txt: 51296) -.xibitnet.com/check/advertisement\.js -# @@||tube8.com/js/advertisement.js (easylist.txt: 51295) -.tube8.com/js/advertisement\.js -# @@||trafficjunky.net/js/ad*.js (easylist.txt: 51294) -.trafficjunky.net/js/ad.*\.js -# @@||thisav.com^$elemhide (easylist.txt: 51292) -.thisav.com -# @@||submityourflicks.com/player/player-ads.swf$object (easylist.txt: 51290) -.submityourflicks.com/player/player-ads\.swf -# @@||sexvidx.tv/js/eroex.js (easylist.txt: 51289) -.sexvidx.tv/js/eroex\.js -# @@||pornve.com^$elemhide (easylist.txt: 51287) -.pornve.com -# @@||pornfun.com/js/ads.js (easylist.txt: 51285) -.pornfun.com/js/ads\.js -# @@||porndoo.com/showads.js (easylist.txt: 51284) -.porndoo.com/showads\.js -# @@||phncdn.com^*/fuckadblock.js (easylist.txt: 51282) -.phncdn.com/.*/fuckadblock\.js -# @@||phncdn.com^*/ads.js (easylist.txt: 51281) -.phncdn.com/.*/ads\.js -# @@||phncdn.com/js/advertisement.js (easylist.txt: 51279) -.phncdn.com/js/advertisement\.js -# @@||palaotog.net^$elemhide (easylist.txt: 51278) -.palaotog.net -# @@||openload.io/Ads.png (easylist.txt: 51277) -.openload.io/Ads\.png -# @@||ooporn.com/ads.js (easylist.txt: 51276) -.ooporn.com/ads\.js -# @@||nightchan.com/advertisement.js (easylist.txt: 51275) -.nightchan.com/advertisement\.js -# @@||n4mo.org^$elemhide (easylist.txt: 51274) -.n4mo.org -# @@||n4mo.org/wp-content/*/ads/ (easylist.txt: 51273) -.n4mo.org/wp-content/.*/ads/ -# @@||mongoporn.com^*/adframe/$subdocument (easylist.txt: 51272) -.mongoporn.com/.*/adframe/ -# @@||lfporn.com^$elemhide (easylist.txt: 51271) -.lfporn.com -# @@||jporn4u.com/js/ads.js (easylist.txt: 51269) -.jporn4u.com/js/ads\.js -# @@||javstar.net^$elemhide (easylist.txt: 51267) -.javstar.net -# @@||javpee.com/eroex.js (easylist.txt: 51266) -.javpee.com/eroex\.js -# @@||javhub.net^$script,~third-party (easylist.txt: 51265) -.javhub.net -# @@||javhub.net^$elemhide (easylist.txt: 51264) -.javhub.net -# @@||indiangilma.com^$elemhide (easylist.txt: 51259) -.indiangilma.com -# @@||imgadult.com/js/advertisement.js (easylist.txt: 51258) -.imgadult.com/js/advertisement\.js -# @@||hentaimoe.com/js/advertisement.js (easylist.txt: 51257) -.hentaimoe.com/js/advertisement\.js -# @@||hentaihaven.org^*/fuckadblock.js (easylist.txt: 51256) -.hentaihaven.org/.*/fuckadblock\.js -# @@||hentaienespa帽ol.net^$elemhide (easylist.txt: 51255) -.hentaienespa帽ol.net -# @@||hellojav.com^$elemhide (easylist.txt: 51254) -.hellojav.com -# @@||fuqer.com^*/advertisement.js (easylist.txt: 51251) -.fuqer.com/.*/advertisement\.js -# @@||fapxl.com^$elemhide (easylist.txt: 51250) -.fapxl.com -# @@||desihoes.com/advertisement.js (easylist.txt: 51249) -.desihoes.com/advertisement\.js -# @@||adultadworld.com/adhandler/$subdocument (easylist.txt: 51248) -.adultadworld.com/adhandler/ -# @@||ad.thisav.com/player/swfobject.js (easylist.txt: 51247) -.ad.thisav.com/player/swfobject\.js -# @@||25643e662a2.com/ad*.js (easylist.txt: 51246) -.25643e662a2.com/ad.*\.js -# @@||209.58.131.22^*/advertisement.js (easylist.txt: 51245) -.209.58.131.22/.*/advertisement\.js -# @@||1986a44b12e.com/googlead.js (easylist.txt: 51244) -.1986a44b12e.com/googlead\.js -# @@||1986a44b12e.com/Ad*.js (easylist.txt: 51243) -.1986a44b12e.com/Ad.*\.js -# @@||youporngay.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51239) -.youporngay.com/_Incapsula_Resource\? -# @@||youporn.com/watch_postroll/$xmlhttprequest (easylist.txt: 51237) -.youporn.com/watch_postroll/ -# @@||youporn.com/watch/$xmlhttprequest (easylist.txt: 51236) -.youporn.com/watch/ -# @@||youporn.com/subscriptions/$xmlhttprequest (easylist.txt: 51235) -.youporn.com/subscriptions/ -# @@||youporn.com/searchapi/$xmlhttprequest (easylist.txt: 51234) -.youporn.com/searchapi/ -# @@||youporn.com/notifications/$xmlhttprequest (easylist.txt: 51233) -.youporn.com/notifications/ -# @@||youporn.com/mycollections.json$xmlhttprequest (easylist.txt: 51232) -.youporn.com/mycollections\.json -# @@||youporn.com/esi_home/$xmlhttprequest (easylist.txt: 51231) -.youporn.com/esi_home/ -# @@||youporn.com/change/$xmlhttprequest (easylist.txt: 51230) -.youporn.com/change/ -# @@||youporn.com/ajax/$xmlhttprequest (easylist.txt: 51229) -.youporn.com/ajax/ -# @@||youporn.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51228) -.youporn.com/_Incapsula_Resource\? -# @@||upload.tube8.com^$script,xmlhttprequest (easylist.txt: 51225) -.upload.tube8.com -# @@||tube8.fr/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51224) -.tube8.fr/_Incapsula_Resource\? -# @@||tube8.es/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51223) -.tube8.es/_Incapsula_Resource\? -# @@||tube8.com/images/$image (easylist.txt: 51222) -.tube8.com/images/ -# @@||tube8.com/favicon.ico (easylist.txt: 51221) -.tube8.com/favicon\.ico -# @@||tube8.com/embed/$subdocument,~third-party (easylist.txt: 51220) -.tube8.com/embed/ -# @@||tube8.com/ajax2/$xmlhttprequest (easylist.txt: 51219) -.tube8.com/ajax2/ -# @@||tube8.com/ajax/$xmlhttprequest (easylist.txt: 51218) -.tube8.com/ajax/ -# @@||tube8.com/ajax-$xmlhttprequest (easylist.txt: 51217) -.tube8.com/ajax- -# @@||tube8.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51216) -.tube8.com/_Incapsula_Resource\? -# @@||redtube.com/watched/$xmlhttprequest (easylist.txt: 51211) -.redtube.com/watched/ -# @@||redtube.com/videodetails/$xmlhttprequest (easylist.txt: 51210) -.redtube.com/videodetails/ -# @@||redtube.com/upload/$xmlhttprequest (easylist.txt: 51209) -.redtube.com/upload/ -# @@||redtube.com/tags-stars/$xmlhttprequest (easylist.txt: 51208) -.redtube.com/tags-stars/ -# @@||redtube.com/tags-stars$xmlhttprequest (easylist.txt: 51207) -.redtube.com/tags-stars -# @@||redtube.com/subscribe/$xmlhttprequest (easylist.txt: 51206) -.redtube.com/subscribe/ -# @@||redtube.com/starsuggestion/$xmlhttprequest (easylist.txt: 51205) -.redtube.com/starsuggestion/ -# @@||redtube.com/searchsuggest?$xmlhttprequest (easylist.txt: 51204) -.redtube.com/searchsuggest\? -# @@||redtube.com/relatedvideos/$xmlhttprequest (easylist.txt: 51203) -.redtube.com/relatedvideos/ -# @@||redtube.com/recommended/$xmlhttprequest (easylist.txt: 51202) -.redtube.com/recommended/ -# @@||redtube.com/rate$xmlhttprequest (easylist.txt: 51201) -.redtube.com/rate -# @@||redtube.com/panel/$xmlhttprequest (easylist.txt: 51200) -.redtube.com/panel/ -# @@||redtube.com/notifications/$xmlhttprequest (easylist.txt: 51199) -.redtube.com/notifications/ -# @@||redtube.com/message/$xmlhttprequest (easylist.txt: 51198) -.redtube.com/message/ -# @@||redtube.com/logout$xmlhttprequest (easylist.txt: 51197) -.redtube.com/logout -# @@||redtube.com/language-star-suggestion/$xmlhttprequest (easylist.txt: 51196) -.redtube.com/language-star-suggestion/ -# @@||redtube.com/js/jquery/$xmlhttprequest (easylist.txt: 51195) -.redtube.com/js/jquery/ -# @@||redtube.com/htmllogin| (easylist.txt: 51194) -.redtube.com/htmllogin$ -# @@||redtube.com/gallery/$xmlhttprequest (easylist.txt: 51193) -.redtube.com/gallery/ -# @@||redtube.com/embed/$xmlhttprequest (easylist.txt: 51192) -.redtube.com/embed/ -# @@||redtube.com/comments/$xmlhttprequest (easylist.txt: 51191) -.redtube.com/comments/ -# @@||redtube.com/blockuser/$xmlhttprequest (easylist.txt: 51190) -.redtube.com/blockuser/ -# @@||redtube.com/bid/$subdocument (easylist.txt: 51189) -.redtube.com/bid/ -# @@||redtube.com/advancedsearch$xmlhttprequest (easylist.txt: 51188) -.redtube.com/advancedsearch -# @@||redtube.com/addfriend/$xmlhttprequest (easylist.txt: 51187) -.redtube.com/addfriend/ -# @@||redtube.com/addfavorite/$xmlhttprequest (easylist.txt: 51186) -.redtube.com/addfavorite/ -# @@||redtube.com/_thumbs/$image (easylist.txt: 51185) -.redtube.com/_thumbs/ -# @@||redtube.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51184) -.redtube.com/_Incapsula_Resource\? -# @@||redtube.com.br/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51183) -.redtube.com.br/_Incapsula_Resource\? -# @@||pornhubcommunity.com/cdn_files/images/$image (easylist.txt: 51182) -.pornhubcommunity.com/cdn_files/images/ -# @@||pornhub.com/videouploading3/$xmlhttprequest (easylist.txt: 51180) -.pornhub.com/videouploading3/ -# @@||pornhub.com/video/$xmlhttprequest (easylist.txt: 51179) -.pornhub.com/video/ -# @@||pornhub.com/users/$xmlhttprequest (easylist.txt: 51178) -.pornhub.com/users/ -# @@||pornhub.com/user/$xmlhttprequest (easylist.txt: 51177) -.pornhub.com/user/ -# @@||pornhub.com/uploading/$xmlhttprequest (easylist.txt: 51176) -.pornhub.com/uploading/ -# @@||pornhub.com/upload/$xmlhttprequest (easylist.txt: 51175) -.pornhub.com/upload/ -# @@||pornhub.com/svvt/add?$xmlhttprequest (easylist.txt: 51174) -.pornhub.com/svvt/add\? -# @@||pornhub.com/stream/$xmlhttprequest (easylist.txt: 51173) -.pornhub.com/stream/ -# @@||pornhub.com/premium/$xmlhttprequest (easylist.txt: 51172) -.pornhub.com/premium/ -# @@||pornhub.com/pornstars/$xmlhttprequest (easylist.txt: 51171) -.pornhub.com/pornstars/ -# @@||pornhub.com/pornstar/$xmlhttprequest (easylist.txt: 51170) -.pornhub.com/pornstar/ -# @@||pornhub.com/playlist_json/$xmlhttprequest (easylist.txt: 51169) -.pornhub.com/playlist_json/ -# @@||pornhub.com/oauth2/authorize?$popup (easylist.txt: 51168) -.pornhub.com/oauth2/authorize\? -# @@||pornhub.com/insights/$image,xmlhttprequest (easylist.txt: 51167) -.pornhub.com/insights/ -# @@||pornhub.com/gif/$xmlhttprequest (easylist.txt: 51166) -.pornhub.com/gif/ -# @@||pornhub.com/front/$xmlhttprequest (easylist.txt: 51165) -.pornhub.com/front/ -# @@||pornhub.com/comment/$xmlhttprequest (easylist.txt: 51164) -.pornhub.com/comment/ -# @@||pornhub.com/chat/$xmlhttprequest (easylist.txt: 51163) -.pornhub.com/chat/ -# @@||pornhub.com/channel/$xmlhttprequest (easylist.txt: 51162) -.pornhub.com/channel/ -# @@||pornhub.com/album_upload$xmlhttprequest (easylist.txt: 51161) -.pornhub.com/album_upload -# @@||pornhub.com/album/$xmlhttprequest (easylist.txt: 51160) -.pornhub.com/album/ -# @@||pornhub.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51159) -.pornhub.com/_Incapsula_Resource\? -# @@||phncdn.com^*/html5Uploader/$script (easylist.txt: 51156) -.phncdn.com/.*/html5Uploader/ -# @@||phncdn.com/zeroclipboard-$script (easylist.txt: 51155) -.phncdn.com/zeroclipboard- -# @@||phncdn.com/www-static/js/vtablet/video/$script (easylist.txt: 51154) -.phncdn.com/www-static/js/vtablet/video/ -# @@||phncdn.com/www-static/js/vtablet/template-$script (easylist.txt: 51153) -.phncdn.com/www-static/js/vtablet/template- -# @@||phncdn.com/www-static/js/vtablet/pcFunctions.js$script (easylist.txt: 51152) -.phncdn.com/www-static/js/vtablet/pcFunctions\.js -# @@||phncdn.com/www-static/js/vtablet/main.js$script (easylist.txt: 51151) -.phncdn.com/www-static/js/vtablet/main\.js -# @@||phncdn.com/www-static/js/vtablet/legacy.js$script (easylist.txt: 51150) -.phncdn.com/www-static/js/vtablet/legacy\.js -# @@||phncdn.com/www-static/js/vtablet/iscroll-lite.$script (easylist.txt: 51149) -.phncdn.com/www-static/js/vtablet/iscroll-lite\. -# @@||phncdn.com/www-static/js/vtablet/hammer.min.js$script (easylist.txt: 51148) -.phncdn.com/www-static/js/vtablet/hammer\.min\.js -# @@||phncdn.com/www-static/js/vtablet/front/$script (easylist.txt: 51147) -.phncdn.com/www-static/js/vtablet/front/ -# @@||phncdn.com/www-static/js/vtablet/fakeworker-$script (easylist.txt: 51146) -.phncdn.com/www-static/js/vtablet/fakeworker- -# @@||phncdn.com/www-static/js/vmobile/widget-$script (easylist.txt: 51145) -.phncdn.com/www-static/js/vmobile/widget- -# @@||phncdn.com/www-static/js/vmobile/video-search.js$script (easylist.txt: 51144) -.phncdn.com/www-static/js/vmobile/video-search\.js -# @@||phncdn.com/www-static/js/vmobile/utils.js$script (easylist.txt: 51143) -.phncdn.com/www-static/js/vmobile/utils\.js -# @@||phncdn.com/www-static/js/vmobile/stream.js$script (easylist.txt: 51142) -.phncdn.com/www-static/js/vmobile/stream\.js -# @@||phncdn.com/www-static/js/vmobile/stream-$script (easylist.txt: 51141) -.phncdn.com/www-static/js/vmobile/stream- -# @@||phncdn.com/www-static/js/vmobile/show.js$script (easylist.txt: 51140) -.phncdn.com/www-static/js/vmobile/show\.js -# @@||phncdn.com/www-static/js/vmobile/profile.js$script (easylist.txt: 51139) -.phncdn.com/www-static/js/vmobile/profile\.js -# @@||phncdn.com/www-static/js/vmobile/preHeadJs.$script (easylist.txt: 51138) -.phncdn.com/www-static/js/vmobile/preHeadJs\. -# @@||phncdn.com/www-static/js/vmobile/phub.js$script (easylist.txt: 51137) -.phncdn.com/www-static/js/vmobile/phub\.js -# @@||phncdn.com/www-static/js/vmobile/photo.js$script (easylist.txt: 51136) -.phncdn.com/www-static/js/vmobile/photo\.js -# @@||phncdn.com/www-static/js/vmobile/notifications.js$script (easylist.txt: 51135) -.phncdn.com/www-static/js/vmobile/notifications\.js -# @@||phncdn.com/www-static/js/vmobile/login.js$script (easylist.txt: 51134) -.phncdn.com/www-static/js/vmobile/login\.js -# @@||phncdn.com/www-static/js/vmobile/html5-canvas.js$script (easylist.txt: 51133) -.phncdn.com/www-static/js/vmobile/html5-canvas\.js -# @@||phncdn.com/www-static/js/vmobile/head.js$script (easylist.txt: 51132) -.phncdn.com/www-static/js/vmobile/head\.js -# @@||phncdn.com/www-static/js/vmobile/footer.js$script (easylist.txt: 51131) -.phncdn.com/www-static/js/vmobile/footer\.js -# @@||phncdn.com/www-static/js/vmobile/feed-comments.js$script (easylist.txt: 51130) -.phncdn.com/www-static/js/vmobile/feed-comments\.js -# @@||phncdn.com/www-static/js/vmobile/comments.js$script (easylist.txt: 51129) -.phncdn.com/www-static/js/vmobile/comments\.js -# @@||phncdn.com/www-static/js/vmobile/autocomplete-$script (easylist.txt: 51128) -.phncdn.com/www-static/js/vmobile/autocomplete- -# @@||phncdn.com/www-static/js/vmobile/application.js$script (easylist.txt: 51127) -.phncdn.com/www-static/js/vmobile/application\.js -# @@||phncdn.com/www-static/js/vmobile/album.js$script (easylist.txt: 51126) -.phncdn.com/www-static/js/vmobile/album\.js -# @@||phncdn.com/www-static/js/video-$script (easylist.txt: 51125) -.phncdn.com/www-static/js/video- -# @@||phncdn.com/www-static/js/tag-$script (easylist.txt: 51124) -.phncdn.com/www-static/js/tag- -# @@||phncdn.com/www-static/js/suggest-$script (easylist.txt: 51123) -.phncdn.com/www-static/js/suggest- -# @@||phncdn.com/www-static/js/signin.js$script (easylist.txt: 51122) -.phncdn.com/www-static/js/signin\.js -# @@||phncdn.com/www-static/js/show_image.js?$script (easylist.txt: 51121) -.phncdn.com/www-static/js/show_image\.js\? -# @@||phncdn.com/www-static/js/quality-$script (easylist.txt: 51120) -.phncdn.com/www-static/js/quality- -# @@||phncdn.com/www-static/js/promo-banner.js$script (easylist.txt: 51119) -.phncdn.com/www-static/js/promo-banner\.js -# @@||phncdn.com/www-static/js/profile/$script (easylist.txt: 51118) -.phncdn.com/www-static/js/profile/ -# @@||phncdn.com/www-static/js/premium/$script (easylist.txt: 51117) -.phncdn.com/www-static/js/premium/ -# @@||phncdn.com/www-static/js/pornstars.js?$script (easylist.txt: 51116) -.phncdn.com/www-static/js/pornstars\.js\? -# @@||phncdn.com/www-static/js/playlist/$script (easylist.txt: 51115) -.phncdn.com/www-static/js/playlist/ -# @@||phncdn.com/www-static/js/phub.$script (easylist.txt: 51114) -.phncdn.com/www-static/js/phub\. -# @@||phncdn.com/www-static/js/ph-networkbar.js$script (easylist.txt: 51113) -.phncdn.com/www-static/js/ph-networkbar\.js -# @@||phncdn.com/www-static/js/ph-footer.js$script (easylist.txt: 51112) -.phncdn.com/www-static/js/ph-footer\.js -# @@||phncdn.com/www-static/js/mg_flipbook-$script (easylist.txt: 51111) -.phncdn.com/www-static/js/mg_flipbook- -# @@||phncdn.com/www-static/js/mg-utils.js$script (easylist.txt: 51110) -.phncdn.com/www-static/js/mg-utils\.js -# @@||phncdn.com/www-static/js/mg-modal.js$script (easylist.txt: 51109) -.phncdn.com/www-static/js/mg-modal\.js -# @@||phncdn.com/www-static/js/lib/$script (easylist.txt: 51108) -.phncdn.com/www-static/js/lib/ -# @@||phncdn.com/www-static/js/html5Player/$script (easylist.txt: 51107) -.phncdn.com/www-static/js/html5Player/ -# @@||phncdn.com/www-static/js/header.js$script (easylist.txt: 51106) -.phncdn.com/www-static/js/header\.js -# @@||phncdn.com/www-static/js/header-menu.js?$script (easylist.txt: 51105) -.phncdn.com/www-static/js/header-menu\.js\? -# @@||phncdn.com/www-static/js/gif-$script (easylist.txt: 51104) -.phncdn.com/www-static/js/gif- -# @@||phncdn.com/www-static/js/front-login.js$script (easylist.txt: 51103) -.phncdn.com/www-static/js/front-login\.js -# @@||phncdn.com/www-static/js/front-index.js?$script (easylist.txt: 51102) -.phncdn.com/www-static/js/front-index\.js\? -# @@||phncdn.com/www-static/js/footer.js$script (easylist.txt: 51101) -.phncdn.com/www-static/js/footer\.js -# @@||phncdn.com/www-static/js/create-account.js?$script (easylist.txt: 51100) -.phncdn.com/www-static/js/create-account\.js\? -# @@||phncdn.com/www-static/*/widgets-$script (easylist.txt: 51099) -.phncdn.com/www-static/.*/widgets- -# @@||phncdn.com/www-static/*/jquery.$script (easylist.txt: 51098) -.phncdn.com/www-static/.*/jquery\. -# @@||phncdn.com/www-static/*/gif-view.js$script (easylist.txt: 51097) -.phncdn.com/www-static/.*/gif-view\.js -# @@||phncdn.com/www-static/*/gif-view-functions.js$script (easylist.txt: 51096) -.phncdn.com/www-static/.*/gif-view-functions\.js -# @@||phncdn.com/www-static/*/autocomplete.$script (easylist.txt: 51095) -.phncdn.com/www-static/.*/autocomplete\. -# @@||phncdn.com/underscore-$script (easylist.txt: 51094) -.phncdn.com/underscore- -# @@||phncdn.com/tubes-$script (easylist.txt: 51093) -.phncdn.com/tubes- -# @@||phncdn.com/timings-$script (easylist.txt: 51092) -.phncdn.com/timings- -# @@||phncdn.com/swfobject-$script (easylist.txt: 51091) -.phncdn.com/swfobject- -# @@||phncdn.com/pagespeed.js$script (easylist.txt: 51090) -.phncdn.com/pagespeed\.js -# @@||phncdn.com/networkbar-$script (easylist.txt: 51089) -.phncdn.com/networkbar- -# @@||phncdn.com/modernizr-$script (easylist.txt: 51088) -.phncdn.com/modernizr- -# @@||phncdn.com/js/xp_bubble/$script (easylist.txt: 51087) -.phncdn.com/js/xp_bubble/ -# @@||phncdn.com/js/votingSystem/$script (easylist.txt: 51086) -.phncdn.com/js/votingSystem/ -# @@||phncdn.com/js/videos_setUp-min.js?$script (easylist.txt: 51085) -.phncdn.com/js/videos_setUp-min\.js\? -# @@||phncdn.com/js/videoPlayer/$script (easylist.txt: 51084) -.phncdn.com/js/videoPlayer/ -# @@||phncdn.com/js/videoDetection.js?$script (easylist.txt: 51083) -.phncdn.com/js/videoDetection\.js\? -# @@||phncdn.com/js/video_setUp_tablet-min.js$script (easylist.txt: 51082) -.phncdn.com/js/video_setUp_tablet-min\.js -# @@||phncdn.com/js/video_setUp-min.js$script (easylist.txt: 51081) -.phncdn.com/js/video_setUp-min\.js -# @@||phncdn.com/js/userVideos_setUp-min.js?$script (easylist.txt: 51080) -.phncdn.com/js/userVideos_setUp-min\.js\? -# @@||phncdn.com/js/userSettings_setUp-min.js?$script (easylist.txt: 51079) -.phncdn.com/js/userSettings_setUp-min\.js\? -# @@||phncdn.com/js/userMiniProfile/$script (easylist.txt: 51078) -.phncdn.com/js/userMiniProfile/ -# @@||phncdn.com/js/userInc-min.js$script (easylist.txt: 51077) -.phncdn.com/js/userInc-min\.js -# @@||phncdn.com/js/userFollowing_setUp-min.js?$script (easylist.txt: 51076) -.phncdn.com/js/userFollowing_setUp-min\.js\? -# @@||phncdn.com/js/userFollowers_setUp-min.js?$script (easylist.txt: 51075) -.phncdn.com/js/userFollowers_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites_setUp-min.js?$script (easylist.txt: 51074) -.phncdn.com/js/userFavorites_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites-$script (easylist.txt: 51073) -.phncdn.com/js/userFavorites- -# @@||phncdn.com/js/userDashboard_setUp-min.js?$script (easylist.txt: 51072) -.phncdn.com/js/userDashboard_setUp-min\.js\? -# @@||phncdn.com/js/userComments_setUp-min.js?$script (easylist.txt: 51071) -.phncdn.com/js/userComments_setUp-min\.js\? -# @@||phncdn.com/js/userComments-min.js$script (easylist.txt: 51070) -.phncdn.com/js/userComments-min\.js -# @@||phncdn.com/js/userAchievements_setUp-min.js?$script (easylist.txt: 51069) -.phncdn.com/js/userAchievements_setUp-min\.js\? -# @@||phncdn.com/js/user_post_comment_form/$script (easylist.txt: 51068) -.phncdn.com/js/user_post_comment_form/ -# @@||phncdn.com/js/user_favorites/$script (easylist.txt: 51067) -.phncdn.com/js/user_favorites/ -# @@||phncdn.com/js/user_dashboard/$script (easylist.txt: 51066) -.phncdn.com/js/user_dashboard/ -# @@||phncdn.com/js/user_comments/$script (easylist.txt: 51065) -.phncdn.com/js/user_comments/ -# @@||phncdn.com/js/uploaded_video_thumbnail_select/$script (easylist.txt: 51064) -.phncdn.com/js/uploaded_video_thumbnail_select/ -# @@||phncdn.com/js/underPlayer/$script (easylist.txt: 51063) -.phncdn.com/js/underPlayer/ -# @@||phncdn.com/js/translatorWatchPageController-min.js$script (easylist.txt: 51062) -.phncdn.com/js/translatorWatchPageController-min\.js -# @@||phncdn.com/js/translator/$script (easylist.txt: 51061) -.phncdn.com/js/translator/ -# @@||phncdn.com/js/translator-min.js$script (easylist.txt: 51060) -.phncdn.com/js/translator-min\.js -# @@||phncdn.com/js/tagStar/$script (easylist.txt: 51059) -.phncdn.com/js/tagStar/ -# @@||phncdn.com/js/site-main.$script (easylist.txt: 51058) -.phncdn.com/js/site-main\. -# @@||phncdn.com/js/signin-min.js$script (easylist.txt: 51057) -.phncdn.com/js/signin-min\.js -# @@||phncdn.com/js/showMenu/$script (easylist.txt: 51056) -.phncdn.com/js/showMenu/ -# @@||phncdn.com/js/share_video_block/$script (easylist.txt: 51055) -.phncdn.com/js/share_video_block/ -# @@||phncdn.com/js/segment_changer/$script (easylist.txt: 51054) -.phncdn.com/js/segment_changer/ -# @@||phncdn.com/js/searchbar_show/$script (easylist.txt: 51053) -.phncdn.com/js/searchbar_show/ -# @@||phncdn.com/js/searchbar/$script (easylist.txt: 51052) -.phncdn.com/js/searchbar/ -# @@||phncdn.com/js/search_setUp-min.js$script (easylist.txt: 51051) -.phncdn.com/js/search_setUp-min\.js -# @@||phncdn.com/js/report_video_form/$script (easylist.txt: 51050) -.phncdn.com/js/report_video_form/ -# @@||phncdn.com/js/relatedVideos/$script (easylist.txt: 51049) -.phncdn.com/js/relatedVideos/ -# @@||phncdn.com/js/popUnder/exclusions-min.js$script (easylist.txt: 51048) -.phncdn.com/js/popUnder/exclusions-min\.js -# @@||phncdn.com/js/ourfriends-min.js$script (easylist.txt: 51047) -.phncdn.com/js/ourfriends-min\.js -# @@||phncdn.com/js/nextBtn/$script (easylist.txt: 51046) -.phncdn.com/js/nextBtn/ -# @@||phncdn.com/js/needLogin/$script (easylist.txt: 51045) -.phncdn.com/js/needLogin/ -# @@||phncdn.com/js/mg_modal/$script (easylist.txt: 51044) -.phncdn.com/js/mg_modal/ -# @@||phncdn.com/js/menu_setUp_tablet-min.js$script (easylist.txt: 51043) -.phncdn.com/js/menu_setUp_tablet-min\.js -# @@||phncdn.com/js/m_tubes/MG_autocomplete.js$script (easylist.txt: 51042) -.phncdn.com/js/m_tubes/MG_autocomplete\.js -# @@||phncdn.com/js/login_form/$script (easylist.txt: 51041) -.phncdn.com/js/login_form/ -# @@||phncdn.com/js/libs/ProfileCommentsAction-min.js$script (easylist.txt: 51040) -.phncdn.com/js/libs/ProfileCommentsAction-min\.js -# @@||phncdn.com/js/levelUp/$script (easylist.txt: 51039) -.phncdn.com/js/levelUp/ -# @@||phncdn.com/js/language_$script (easylist.txt: 51038) -.phncdn.com/js/language_ -# @@||phncdn.com/js/karmaInfo/$script (easylist.txt: 51037) -.phncdn.com/js/karmaInfo/ -# @@||phncdn.com/js/jquery.$script (easylist.txt: 51036) -.phncdn.com/js/jquery\. -# @@||phncdn.com/js/jqbrowser-compressed.js$script (easylist.txt: 51035) -.phncdn.com/js/jqbrowser-compressed\.js -# @@||phncdn.com/js/is_online/$script (easylist.txt: 51034) -.phncdn.com/js/is_online/ -# @@||phncdn.com/js/ipad/$script (easylist.txt: 51033) -.phncdn.com/js/ipad/ -# @@||phncdn.com/js/infinite.$script (easylist.txt: 51032) -.phncdn.com/js/infinite\. -# @@||phncdn.com/js/html5player.js?$script (easylist.txt: 51031) -.phncdn.com/js/html5player\.js\? -# @@||phncdn.com/js/home_setUp_tablet-min.js$script (easylist.txt: 51030) -.phncdn.com/js/home_setUp_tablet-min\.js -# @@||phncdn.com/js/home_setUp-min.js$script (easylist.txt: 51029) -.phncdn.com/js/home_setUp-min\.js -# @@||phncdn.com/js/general_tablet-min.js$script (easylist.txt: 51028) -.phncdn.com/js/general_tablet-min\.js -# @@||phncdn.com/js/general-min.js$script (easylist.txt: 51027) -.phncdn.com/js/general-min\.js -# @@||phncdn.com/js/follow_button/$script (easylist.txt: 51026) -.phncdn.com/js/follow_button/ -# @@||phncdn.com/js/flipbook/$script (easylist.txt: 51025) -.phncdn.com/js/flipbook/ -# @@||phncdn.com/js/filters_menu/$script (easylist.txt: 51024) -.phncdn.com/js/filters_menu/ -# @@||phncdn.com/js/fav_like_user_feed/$script (easylist.txt: 51023) -.phncdn.com/js/fav_like_user_feed/ -# @@||phncdn.com/js/et.ready.$script (easylist.txt: 51022) -.phncdn.com/js/et\.ready\. -# @@||phncdn.com/js/editUserDropDown/$script (easylist.txt: 51021) -.phncdn.com/js/editUserDropDown/ -# @@||phncdn.com/js/deleteVideo/$script (easylist.txt: 51020) -.phncdn.com/js/deleteVideo/ -# @@||phncdn.com/js/deleteComment/$script (easylist.txt: 51019) -.phncdn.com/js/deleteComment/ -# @@||phncdn.com/js/cover_tutorial/$script (easylist.txt: 51018) -.phncdn.com/js/cover_tutorial/ -# @@||phncdn.com/js/common_jq-min.js$script (easylist.txt: 51017) -.phncdn.com/js/common_jq-min\.js -# @@||phncdn.com/js/comments/$script (easylist.txt: 51016) -.phncdn.com/js/comments/ -# @@||phncdn.com/js/categorylist_setUp-min.js?$script (easylist.txt: 51015) -.phncdn.com/js/categorylist_setUp-min\.js\? -# @@||phncdn.com/js/carousellite.$script (easylist.txt: 51014) -.phncdn.com/js/carousellite\. -# @@||phncdn.com/js/browser-$script (easylist.txt: 51013) -.phncdn.com/js/browser- -# @@||phncdn.com/js/badgeSelector/$script (easylist.txt: 51012) -.phncdn.com/js/badgeSelector/ -# @@||phncdn.com/js/avatar_$script (easylist.txt: 51011) -.phncdn.com/js/avatar_ -# @@||phncdn.com/js/ad_form_header/ad_form_header-min.js?$script (easylist.txt: 51010) -.phncdn.com/js/ad_form_header/ad_form_header-min\.js\? -# @@||phncdn.com/js/achievement-$script (easylist.txt: 51009) -.phncdn.com/js/achievement- -# @@||phncdn.com/js/*_disclaimer/*_disclaimer_controller-min.js?$script (easylist.txt: 51008) -.phncdn.com/js/.*_disclaimer/.*_disclaimer_controller-min\.js\? -# @@||phncdn.com/js/*_disclaimer/*_disclaimer-min.js?$script (easylist.txt: 51007) -.phncdn.com/js/.*_disclaimer/.*_disclaimer-min\.js\? -# @@||phncdn.com/jquery/$script (easylist.txt: 51006) -.phncdn.com/jquery/ -# @@||phncdn.com/jquery-$script (easylist.txt: 51005) -.phncdn.com/jquery- -# @@||phncdn.com/html5shiv-$script (easylist.txt: 51004) -.phncdn.com/html5shiv- -# @@||phncdn.com/html5player/$script (easylist.txt: 51003) -.phncdn.com/html5player/ -# @@||phncdn.com/head/$script (easylist.txt: 51002) -.phncdn.com/head/ -# @@||phncdn.com/cb/bundles/$script (easylist.txt: 51001) -.phncdn.com/cb/bundles/ -# @@||phncdn.com/cb/assets/$script (easylist.txt: 51000) -.phncdn.com/cb/assets/ -# @@||google.com/recaptcha/$image (easylist.txt: 50997) -.google.com/recaptcha/ -# @@||blog.tube8.com/wp-content/$image,script (easylist.txt: 50991) -.blog.tube8.com/wp-content/ -# @@||xxxporntalk.com/images/xxxpt-chrome.jpg (easylist.txt: 50985) -.xxxporntalk.com/images/xxxpt-chrome\.jpg -# @@||xhcdn.com/images/flag/AD.gif (easylist.txt: 50984) -.xhcdn.com/images/flag/AD\.gif -# @@||tracking.hornymatches.com/track?type=unsubscribe&enid=$subdocument,third-party (easylist.txt: 50981) -.tracking.hornymatches.com/track\?type=unsubscribe&enid= -# @@||tnaflix.com/ad/$object-subrequest (easylist.txt: 50980) -.tnaflix.com/ad/ -# @@||tjoob.com/go.php?ad=$script,~third-party (easylist.txt: 50979) -.tjoob.com/go\.php\?ad= -# @@||sundaysportclassifieds.co.uk/ads/$image,~third-party (easylist.txt: 50976) -.sundaysportclassifieds.co.uk/ads/ -# @@||store.adam4adam.com/images/affbanners/$~third-party (easylist.txt: 50975) -.store.adam4adam.com/images/affbanners/ -# @@||store.adam4adam.com/affimages/$~third-party (easylist.txt: 50974) -.store.adam4adam.com/affimages/ -# @@||starcelebs.com/logos/logo10.jpg (easylist.txt: 50973) -.starcelebs.com/logos/logo10\.jpg -# @@||skimtube.com/advertisements.php? (easylist.txt: 50972) -.skimtube.com/advertisements\.php\? -# @@||sextoyfun.com/control/aff_banners/$~third-party (easylist.txt: 50971) -.sextoyfun.com/control/aff_banners/ -# @@||sextoyfun.com/admin/aff_files/BannerManager/$~third-party (easylist.txt: 50970) -.sextoyfun.com/admin/aff_files/BannerManager/ -# @@||pornteengirl.com/temporaire/image.php?*/virtuagirl/$image (easylist.txt: 50968) -.pornteengirl.com/temporaire/image\.php\?.*/virtuagirl/ -# @@||panicporn.com/Bannerads/player/player_flv_multi.swf$object (easylist.txt: 50966) -.panicporn.com/Bannerads/player/player_flv_multi\.swf -# @@||nonktube.com/img/adyea.jpg (easylist.txt: 50965) -.nonktube.com/img/adyea\.jpg -# @@||mrstiff.com/view/textad/$xmlhttprequest (easylist.txt: 50964) -.mrstiff.com/view/textad/ -# @@||manhuntshop.com/images/affbanners/$~third-party (easylist.txt: 50963) -.manhuntshop.com/images/affbanners/ -# @@||manhuntshop.com/affimages/$~third-party (easylist.txt: 50962) -.manhuntshop.com/affimages/ -# @@||kuntfutube.com/go.php?ad= (easylist.txt: 50960) -.kuntfutube.com/go\.php\?ad= -# @@||hostedadsp.realitykings.com/hosted/flash/rk_player_1.5_300x250.swf$object (easylist.txt: 50958) -.hostedadsp.realitykings.com/hosted/flash/rk_player_1\.5_300x250\.swf -# @@||graphics.pop6.com/javascript/live_cd/$script (easylist.txt: 50956) -.graphics.pop6.com/javascript/live_cd/ -# @@||graphics.pop6.com/javascript/live/$script (easylist.txt: 50955) -.graphics.pop6.com/javascript/live/ -# @@||gaynetwork.co.uk/Images/ads/bg/$image,~third-party (easylist.txt: 50953) -.gaynetwork.co.uk/Images/ads/bg/ -# @@||fucktube.com/work/videoad.php? (easylist.txt: 50952) -.fucktube.com/work/videoad\.php\? -# @@||eskimotube.com/advertisements.php?$script (easylist.txt: 50951) -.eskimotube.com/advertisements\.php\? -# @@||cam4.*/ads/directory/$xmlhttprequest (easylist.txt: 50949) -.cam4.*./(.*/)?ads/directory/ -# @@||burningcamel.com/ads/banner.jpg (easylist.txt: 50948) -.burningcamel.com/ads/banner\.jpg -# @@||boyzshop.com/images/affbanners/$image,~third-party (easylist.txt: 50947) -.boyzshop.com/images/affbanners/ -# @@||boyzshop.com/affimages/$~third-party (easylist.txt: 50946) -.boyzshop.com/affimages/ -# @@||ads.ultimatesurrender.com^$image,~third-party (easylist.txt: 50943) -.ads.ultimatesurrender.com -# @@||ads.fuckingmachines.com^$image,~third-party (easylist.txt: 50942) -.ads.fuckingmachines.com -# @@||ad.thisav.com/player/jw.swf (easylist.txt: 50941) -.ad.thisav.com/player/jw\.swf -# @@||ad.thisav.com/player/config.xml$object-subrequest (easylist.txt: 50940) -.ad.thisav.com/player/config\.xml -# @@||gsmarena.com/adclick.php?bannerid=$popup (easylist.txt: 50928) -.gsmarena.com/adclick\.php\?bannerid= -# @@||adv.blogupp.com^$popup (easylist.txt: 50918) -.adv.blogupp.com -# @@||ads.twitter.com^$popup,~third-party (easylist.txt: 50915) -.ads.twitter.com -# @@||ads.pinterest.com^$popup,~third-party (easylist.txt: 50912) -.ads.pinterest.com -# @@||zorza-polarna.pl/environment/cache/images/300_250_ (easylist.txt: 50906) -.zorza-polarna.pl/environment/cache/images/300_250_ -# @@||weatherbug.com/style/stickers/*_728x90.css (easylist.txt: 50904) -.weatherbug.com/style/stickers/.*_728x90\.css -# @@||weatherbug.com/images/stickers/*/728x90/ (easylist.txt: 50903) -.weatherbug.com/images/stickers/.*/728x90/ -# @@||weatherbug.com/desktop-weather/*=728x90& (easylist.txt: 50902) -.weatherbug.com/desktop-weather/.*=728x90& -# @@||weather.craven.net.au/weather/products/300x250.asp?$image (easylist.txt: 50901) -.weather.craven.net.au/weather/products/300x250\.asp\? -# @@||w3easy.org/templates/*_120x60_ (easylist.txt: 50900) -.w3easy.org/templates/.*_120x60_ -# @@||w3easy.org/templates/*_120x60. (easylist.txt: 50899) -.w3easy.org/templates/.*_120x60\. -# @@||vortex.accuweather.com^*_300x250_bg.jpg (easylist.txt: 50898) -.vortex.accuweather.com/.*_300x250_bg\.jpg -# @@||vortex.accuweather.com^*_160x600_bg.jpg (easylist.txt: 50897) -.vortex.accuweather.com/.*_160x600_bg\.jpg -# @@||vortex.accuweather.com^*_120x60_bg.jpg (easylist.txt: 50896) -.vortex.accuweather.com/.*_120x60_bg\.jpg -# @@||viamichelin.*&size=728x90,$subdocument (easylist.txt: 50895) -.viamichelin.*./.*&size=728x90, -# @@||usopen.org/images/pics/misc/*.300x250.jpg (easylist.txt: 50894) -.usopen.org/images/pics/misc/.*\.300x250\.jpg -# @@||usanetwork.com/sites/usanetwork/*300x250 (easylist.txt: 50893) -.usanetwork.com/sites/usanetwork/.*300x250 -# @@||union.edu/media/galleryPics/400x250/$~third-party (easylist.txt: 50892) -.union.edu/media/galleryPics/400x250/ -# @@||turner.com/v5cache/TCM/Images/*_120x60_ (easylist.txt: 50890) -.turner.com/v5cache/TCM/Images/.*_120x60_ -# @@||turner.com/v5cache/TCM/images/*_120x60. (easylist.txt: 50889) -.turner.com/v5cache/TCM/images/.*_120x60\. -# @@||tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/*_120_60.jpg (easylist.txt: 50888) -.tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/.*_120_60\.jpg -# @@||techpakistani.com/wp-content/uploads/*-300x100.$image (easylist.txt: 50887) -.techpakistani.com/wp-content/uploads/.*-300x100\. -# @@||swansuk.co.uk^*/300x250/$image,~third-party (easylist.txt: 50885) -.swansuk.co.uk/.*/300x250/ -# @@||stickam.com/wb/www/category/300x250/$image (easylist.txt: 50884) -.stickam.com/wb/www/category/300x250/ -# @@||static-origin.openedition.org^*-120x240.jpg (easylist.txt: 50883) -.static-origin.openedition.org/.*-120x240\.jpg -# @@||russia-direct.org/custom_ajax/widget?*=300x250&$script (easylist.txt: 50882) -.russia-direct.org/custom_ajax/widget\?.*=300x250& -# @@||roofandfloor.com/listing_$image,~third-party (easylist.txt: 50881) -.roofandfloor.com/listing_ -# @@||rehabs.com^*/xicons_social_sprite_400x60.png (easylist.txt: 50880) -.rehabs.com/.*/xicons_social_sprite_400x60\.png -# @@||quisqualis.com/QBanner_760x100.jpg (easylist.txt: 50878) -.quisqualis.com/QBanner_760x100\.jpg -# @@||opposingviews.com^*/300x250/ (easylist.txt: 50876) -.opposingviews.com/.*/300x250/ -# @@||onescreen.net/os/static/widgets/*300x250 (easylist.txt: 50875) -.onescreen.net/os/static/widgets/.*300x250 -# @@||nationalgeographic.com/exposure/content/*300x250 (easylist.txt: 50874) -.nationalgeographic.com/exposure/content/.*300x250 -# @@||mxtoolbox.com/Public/images/banners/Mx-Pro-160x600.jpg (easylist.txt: 50873) -.mxtoolbox.com/Public/images/banners/Mx-Pro-160x600\.jpg -# @@||msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/$image (easylist.txt: 50872) -.msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/ -# @@||motherboard.tv/content-images/*_120x60. (easylist.txt: 50870) -.motherboard.tv/content-images/.*_120x60\. -# @@||metrics.target.com/b/ss/*_300x250_$image (easylist.txt: 50868) -.metrics.target.com/b/ss/.*_300x250_ -# @@||marketing.beatport.com.s3.amazonaws.com^*/728x90_ (easylist.txt: 50867) -.marketing.beatport.com.s3.amazonaws.com/.*/728x90_ -# @@||maps.googleapis.com/maps/api/*=300x250& (easylist.txt: 50866) -.maps.googleapis.com/maps/api/.*=300x250& -# @@||maps.google.*/staticmap*^size=300x250^$image (easylist.txt: 50865) -.maps.google.*./(.*/)?staticmap.*[^\w%.-]size=300x250[^\w%.-] -# @@||la-finca-distribution.de/wp-content/uploads/*-120x240.$image (easylist.txt: 50864) -.la-finca-distribution.de/wp-content/uploads/.*-120x240\. -# @@||komikslandia.pl/environment/cache/images/300_250_ (easylist.txt: 50863) -.komikslandia.pl/environment/cache/images/300_250_ -# @@||imperialwonderservices.ie/images/banner/*-468x60.$~third-party (easylist.txt: 50862) -.imperialwonderservices.ie/images/banner/.*-468x60\. -# @@||imdb.com/images/*doubleclick/*320x240 (easylist.txt: 50861) -.imdb.com/images/.*doubleclick/.*320x240 -# @@||imdb.com/images/*doubleclick/*300x250 (easylist.txt: 50860) -.imdb.com/images/.*doubleclick/.*300x250 -# @@||imawow.weather.com/web/wow/$image (easylist.txt: 50859) -.imawow.weather.com/web/wow/ -# @@||images.outbrain.com/imageserver/*-120x60.$image (easylist.txt: 50858) -.images.outbrain.com/imageserver/.*-120x60\. -# @@||hortifor.com/images/*120x60$~third-party (easylist.txt: 50854) -.hortifor.com/images/.*120x60 -# @@||heathceramics.com/media/300x250/$image,~third-party (easylist.txt: 50853) -.heathceramics.com/media/300x250/ -# @@||harpers.co.uk/pictures/300x250/ (easylist.txt: 50852) -.harpers.co.uk/pictures/300x250/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?*=300x250& (easylist.txt: 50851) -.google.com/uds/modules/elements/newsshow/iframe\.html\?.*=300x250& -# @@||freetvhub.com/ad1_300x250.html (easylist.txt: 50850) -.freetvhub.com/ad1_300x250\.html -# @@||framestr.com^*/300x250/$image,~third-party (easylist.txt: 50849) -.framestr.com/.*/300x250/ -# @@||firestormgames.co.uk/image/*-120x60. (easylist.txt: 50847) -.firestormgames.co.uk/image/.*-120x60\. -# @@||findafranchise.com/_img/*_120x60.$image (easylist.txt: 50846) -.findafranchise.com/_img/.*_120x60\. -# @@||film.com/plugins/*-300x250 (easylist.txt: 50845) -.film.com/plugins/.*-300x250 -# @@||efvi.eu/badge/*-120x60.png (easylist.txt: 50843) -.efvi.eu/badge/.*-120x60\.png -# @@||educationpost.com.hk^*/300x250/$image (easylist.txt: 50842) -.educationpost.com.hk/.*/300x250/ -# @@||disney.com.au/global/swf/banner160x600.swf (easylist.txt: 50841) -.disney.com.au/global/swf/banner160x600\.swf -# @@||disney.com.au/global/swf/*728x90.swf (easylist.txt: 50840) -.disney.com.au/global/swf/.*728x90\.swf -# @@||discovery.com^*/ratio-size/pixel-ratio/300x250.png (easylist.txt: 50839) -.discovery.com/.*/ratio-size/pixel-ratio/300x250\.png -# @@||dawn.com/wp-content/uploads/*_300x250.jpg (easylist.txt: 50838) -.dawn.com/wp-content/uploads/.*_300x250\.jpg -# @@||cubeecraft.com/images/home/features/300x250/$image,~third-party (easylist.txt: 50837) -.cubeecraft.com/images/home/features/300x250/ -# @@||crowdignite.com/img/upload/*300x250 (easylist.txt: 50836) -.crowdignite.com/img/upload/.*300x250 -# @@||consumerist-com.wpengine.netdna-cdn.com/assets/*300x250 (easylist.txt: 50835) -.consumerist-com.wpengine.netdna-cdn.com/assets/.*300x250 -# @@||cinemanow.com/images/banners/300x250/ (easylist.txt: 50834) -.cinemanow.com/images/banners/300x250/ -# @@||canada.com/news/*-300-250.gif (easylist.txt: 50833) -.canada.com/news/.*-300-250\.gif -# @@||bizquest.com^*_img/_franchise/*_120x60.$image (easylist.txt: 50832) -.bizquest.com/.*_img/_franchise/.*_120x60\. -# @@||bettermarks.com/media$~third-party (easylist.txt: 50831) -.bettermarks.com/media -# @@||assets2.plinxmedia.net^*_300x250. (easylist.txt: 50830) -.assets2.plinxmedia.net/.*_300x250\. -# @@||assets1.plinxmedia.net^*_300x250. (easylist.txt: 50829) -.assets1.plinxmedia.net/.*_300x250\. -# @@||assets.vice.com^*_120x60.jpg (easylist.txt: 50828) -.assets.vice.com/.*_120x60\.jpg -# @@||artserieshotels.com.au/images/*_460_60. (easylist.txt: 50827) -.artserieshotels.com.au/images/.*_460_60\. -# @@||arnhemland-safaris.com/images/*_480_80_ (easylist.txt: 50826) -.arnhemland-safaris.com/images/.*_480_80_ -# @@||anitasrecipes.com/Content/Images/*160x500$image (easylist.txt: 50825) -.anitasrecipes.com/Content/Images/.*160x500 -# @@||ajax.googleapis.com/ajax/services/search/news?*-728x90&$script (easylist.txt: 50821) -.ajax.googleapis.com/ajax/services/search/news\?.*-728x90& -# @@||publisher.adservice.com^$elemhide (easylist.txt: 50813) -.publisher.adservice.com -# @@||adservicemedia.dk^$elemhide (easylist.txt: 50810) -.adservicemedia.dk -# @@||adservicemedia.dk/images/$~third-party (easylist.txt: 50809) -.adservicemedia.dk/images/ -# @@||adservice.com/wp-content/themes/adservice/$~third-party (easylist.txt: 50808) -.adservice.com/wp-content/themes/adservice/ -# @@||dailymotion.com/advertise/$xmlhttprequest (easylist.txt: 50800) -.dailymotion.com/advertise/ -# @@||gameloft.com/advertising-$~third-party (easylist.txt: 50797) -.gameloft.com/advertising- -# @@||adsbox.io^$~third-party (easylist.txt: 50795) -.adsbox.io -# @@||revealads.com^$~third-party (easylist.txt: 50793) -.revealads.com -# @@||integralplatform.com/static/js/Advertiser/$~third-party (easylist.txt: 50791) -.integralplatform.com/static/js/Advertiser/ -# @@||ads.acesse.com^$~third-party (easylist.txt: 50789) -.ads.acesse.com -# @@||ads.acesse.com^$elemhide (easylist.txt: 50788) -.ads.acesse.com -# @@||advertise.ru^$~third-party (easylist.txt: 50786) -.advertise.ru -# @@||ads.stumbleupon.com^$~third-party (easylist.txt: 50784) -.ads.stumbleupon.com -# @@||ads.stumbleupon.com^$popup (easylist.txt: 50783) -.ads.stumbleupon.com -# @@||teliad.*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 50764) -.teliad.*./(.*/)?advertiser/ -# @@||seedingup.*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 50763) -.seedingup.*./(.*/)?advertiser/ -# @@||app.adroll.com^$elemhide (easylist.txt: 50761) -.app.adroll.com -# @@||advertise.mxit.com^$~third-party (easylist.txt: 50756) -.advertise.mxit.com -# @@||vk.com/ads?act=payments&type$script,stylesheet (easylist.txt: 50749) -.vk.com/ads\?act=payments&type -# @@||vk.com/ads$elemhide (easylist.txt: 50747) -.vk.com/ads -# @@||paymentgate.ru/payment/*_Advert/ (easylist.txt: 50746) -.paymentgate.ru/payment/.*_Advert/ -# @@||advertising.microsoft.com^$~third-party (easylist.txt: 50743) -.advertising.microsoft.com -# @@||advertise.bingads.microsoft.com/wwimages/search/global/$image (easylist.txt: 50742) -.advertise.bingads.microsoft.com/wwimages/search/global/ -# @@||authentication-api.skimlinks.com^ (easylist.txt: 50739) -.authentication-api.skimlinks.com -# @@||api-merchants.skimlinks.com^ (easylist.txt: 50738) -.api-merchants.skimlinks.com -# @@||adhese.com^$~third-party (easylist.txt: 50734) -.adhese.com -# @@||adfox.ru^$~third-party (easylist.txt: 50730) -.adfox.ru -# @@||healthyadvertising.es^$~third-party (easylist.txt: 50728) -.healthyadvertising.es -# @@||fullad.com.br^$~third-party (easylist.txt: 50726) -.fullad.com.br -# @@||dashboard.tovarro.com^$~third-party (easylist.txt: 50724) -.dashboard.tovarro.com -# @@||dashboard.mgid.com^$~third-party (easylist.txt: 50723) -.dashboard.mgid.com -# @@||dashboard.marketgid.com^$~third-party (easylist.txt: 50722) -.dashboard.marketgid.com -# @@||dashboard.lentainform.com^$~third-party (easylist.txt: 50721) -.dashboard.lentainform.com -# @@||dashboard.idealmedia.com^$~third-party (easylist.txt: 50720) -.dashboard.idealmedia.com -# @@||www.advertising.com^$~third-party (easylist.txt: 50715) -.www.advertising.com -# @@||adcenter.mobicow.com^$~third-party (easylist.txt: 50713) -.adcenter.mobicow.com -# @@||www.google.com/images/icons/product/adsense-$image (easylist.txt: 50709) -.www.google.com/images/icons/product/adsense- -# @@||www.google.com/images/icons/feature/adsense_$image (easylist.txt: 50708) -.www.google.com/images/icons/feature/adsense_ -# @@||www.google.com/doubleclick/images/favicon.ico (easylist.txt: 50706) -.www.google.com/doubleclick/images/favicon\.ico -# @@||www.google.com/adwords/$elemhide (easylist.txt: 50703) -.www.google.com/adwords/ -# @@||www.google.*/adwords/$~third-party (easylist.txt: 50700) -.www.google.*./(.*/)?adwords/ -# @@||www.google.*/adsense/$~third-party (easylist.txt: 50699) -.www.google.*./(.*/)?adsense/ -# @@||www.google.*/ads/start/$~third-party (easylist.txt: 50698) -.www.google.*./(.*/)?ads/start/ -# @@||www.google.*/ads/js/$~third-party (easylist.txt: 50697) -.www.google.*./(.*/)?ads/js/ -# @@||www.google.*/ads/images/ (easylist.txt: 50696) -.www.google.*./(.*/)?ads/images/ -# @@||www.google.*/ads/css/$~third-party (easylist.txt: 50695) -.www.google.*./(.*/)?ads/css/ -# @@||www.google.*/ads/*/images/ (easylist.txt: 50694) -.www.google.*./(.*/)?ads/.*/images/ -# @@||www.google.*/adometry/$~third-party (easylist.txt: 50693) -.www.google.*./(.*/)?adometry/ -# @@||www.google.*/adometry.$~third-party (easylist.txt: 50692) -.www.google.*./(.*/)?adometry\. -# @@||support.google.com/adwords/$~third-party (easylist.txt: 50691) -.support.google.com/adwords/ -# @@||support.google.com/adsense/$~third-party (easylist.txt: 50690) -.support.google.com/adsense/ -# @@||google.com/payments/*/adwords.$document,subdocument (easylist.txt: 50685) -.google.com/payments/.*/adwords\. -# @@||google.com/help/hc/images/adwords/$image,~third-party (easylist.txt: 50684) -.google.com/help/hc/images/adwords/ -# @@||accounts.google.com/accounts/adwords/$image,~third-party (easylist.txt: 50677) -.accounts.google.com/accounts/adwords/ -# @@||www.facebook.com/ads/$elemhide (easylist.txt: 50674) -.www.facebook.com/ads/ -# @@||adwolf.eu^$~third-party (easylist.txt: 50672) -.adwolf.eu -# @@||ziarelive.ro/assets/js/advertisement.js (easylist.txt: 50669) -.ziarelive.ro/assets/js/advertisement\.js -# @@||yapo.cl/js/viewad.js? (easylist.txt: 50667) -.yapo.cl/js/viewad\.js\? -# @@||xe.gr/property/recent_ads?$xmlhttprequest (easylist.txt: 50666) -.xe.gr/property/recent_ads\? -# @@||vinden.se/ads/$~third-party (easylist.txt: 50662) -.vinden.se/ads/ -# @@||videonuz.ensonhaber.com/player/hdflvplayer/xml/ads.xml?$object-subrequest (easylist.txt: 50660) -.videonuz.ensonhaber.com/player/hdflvplayer/xml/ads\.xml\? -# @@||velasridaura.com/modules/*/advertising_custom.$image,~third-party (easylist.txt: 50658) -.velasridaura.com/modules/.*/advertising_custom\. -# @@||vedomosti.ru/assets/vendors/adriver.media-$script (easylist.txt: 50657) -.vedomosti.ru/assets/vendors/adriver\.media- -# @@||varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel.js (easylist.txt: 50656) -.varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel\.js -# @@||uol.com.br/html.ng/*&affiliate=$object-subrequest (easylist.txt: 50655) -.uol.com.br/html\.ng/.*&affiliate= -# @@||tvn.adocean.pl^$object-subrequest (easylist.txt: 50654) -.tvn.adocean.pl -# @@||tv2.dk/mpx/player.php/adtech_$subdocument (easylist.txt: 50653) -.tv2.dk/mpx/player\.php/adtech_ -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.php (easylist.txt: 50652) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.php -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.js (easylist.txt: 50651) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.js -# @@||trrsf.com^*/admanager.js (easylist.txt: 50650) -.trrsf.com/.*/admanager\.js -# @@||trrsf.com.br/playerttv/$xmlhttprequest (easylist.txt: 50648) -.trrsf.com.br/playerttv/ -# @@||tn.com.ar^*/vivo/300/publicidad.html$subdocument (easylist.txt: 50647) -.tn.com.ar/.*/vivo/300/publicidad\.html -# @@||thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend.js (easylist.txt: 50646) -.thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend\.js -# @@||terra.com.br^*/admanager.html$subdocument (easylist.txt: 50645) -.terra.com.br/.*/admanager\.html -# @@||terra.cl^*/admanager.html$subdocument (easylist.txt: 50644) -.terra.cl/.*/admanager\.html -# @@||ta3.com/advert-async-system/$xmlhttprequest (easylist.txt: 50643) -.ta3.com/advert-async-system/ -# @@||submarino.com.br/openx/www/delivery/ (easylist.txt: 50642) -.submarino.com.br/openx/www/delivery/ -# @@||style.seznam.cz/ad/im.js (easylist.txt: 50641) -.style.seznam.cz/ad/im\.js -# @@||start.no/includes/js/adCode.js (easylist.txt: 50638) -.start.no/includes/js/adCode\.js -# @@||start.no/advertpro/servlet/view/text/html/zone?zid=$script (easylist.txt: 50637) -.start.no/advertpro/servlet/view/text/html/zone\?zid= -# @@||soov.ee/js/newad.js (easylist.txt: 50635) -.soov.ee/js/newad\.js -# @@||sms.cz/bannery/$object-subrequest,~third-party (easylist.txt: 50634) -.sms.cz/bannery/ -# @@||smartadserver.com/crossdomain.xml$object-subrequest (easylist.txt: 50632) -.smartadserver.com/crossdomain\.xml -# @@||smart.allocine.fr/crossdomain.xml$object-subrequest (easylist.txt: 50627) -.smart.allocine.fr/crossdomain\.xml -# @@||skai.gr/advert/*.flv$object-subrequest (easylist.txt: 50626) -.skai.gr/advert/.*\.flv -# @@||sigmalive.com/assets/js/jquery.openxtag.js (easylist.txt: 50625) -.sigmalive.com/assets/js/jquery\.openxtag\.js -# @@||segundamano.mx/api/*/ads/$~third-party (easylist.txt: 50624) -.segundamano.mx/api/.*/ads/ -# @@||sanook.com/php/get_ads.php?vast_linear=$xmlhttprequest (easylist.txt: 50621) -.sanook.com/php/get_ads\.php\?vast_linear= -# @@||s-nk.pl/img/ads/icons_pack (easylist.txt: 50619) -.s-nk.pl/img/ads/icons_pack -# @@||run.admost.com/adx/js/admost.js? (easylist.txt: 50618) -.run.admost.com/adx/js/admost\.js\? -# @@||run.admost.com/adx/get.ashx?z=*&accptck=true&nojs=1 (easylist.txt: 50617) -.run.admost.com/adx/get\.ashx\?z=.*&accptck=true&nojs=1 -# @@||rtl.lu/ipljs/adtech_async.js (easylist.txt: 50616) -.rtl.lu/ipljs/adtech_async\.js -# @@||rocking.gr/js/jquery.dfp.min.js (easylist.txt: 50615) -.rocking.gr/js/jquery\.dfp\.min\.js -# @@||ring.bg/adserver/adall.php?*&video_on_page=1 (easylist.txt: 50614) -.ring.bg/adserver/adall\.php\?.*&video_on_page=1 -# @@||rentalsystems.com/advert_price_imbed.asp?$subdocument (easylist.txt: 50613) -.rentalsystems.com/advert_price_imbed\.asp\? -# @@||reklama5.mk^$~third-party (easylist.txt: 50612) -.reklama5.mk -# @@||quebarato.com.br/css/static/ad_search.css (easylist.txt: 50610) -.quebarato.com.br/css/static/ad_search\.css -# @@||quebarato.com.br/css/static/ad_detail.css (easylist.txt: 50609) -.quebarato.com.br/css/static/ad_detail\.css -# @@||ptcliente.pt/App_Themes/Default/Img/ad_$image (easylist.txt: 50608) -.ptcliente.pt/App_Themes/Default/Img/ad_ -# @@||ptchan.net/imagens/banner.php (easylist.txt: 50607) -.ptchan.net/imagens/banner\.php -# @@||psoe.es/Areas/Affiliation/ (easylist.txt: 50606) -.psoe.es/Areas/Affiliation/ -# @@||prohardver.hu/js/common/forms_$script (easylist.txt: 50603) -.prohardver.hu/js/common/forms_ -# @@||polovniautomobili.com/images/ad-$~third-party (easylist.txt: 50602) -.polovniautomobili.com/images/ad- -# @@||player.terra.com^*&adunit=$script (easylist.txt: 50600) -.player.terra.com/.*&adunit= -# @@||peoplegreece.com/assets/js/adtech_res.js (easylist.txt: 50599) -.peoplegreece.com/assets/js/adtech_res\.js -# @@||openx.zomoto.nl/live/www/delivery/spcjs.php?id= (easylist.txt: 50596) -.openx.zomoto.nl/live/www/delivery/spcjs\.php\?id= -# @@||openx.zomoto.nl/live/www/delivery/fl.js (easylist.txt: 50595) -.openx.zomoto.nl/live/www/delivery/fl\.js -# @@||openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null.jpg (easylist.txt: 50594) -.openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null\.jpg -# @@||oas.dn.se/adstream_mjx.ads/dn.se/nyheter/ettan/*@$script (easylist.txt: 50592) -.oas.dn.se/adstream_mjx\.ads/dn\.se/nyheter/ettan/.*@ -# @@||nordjyske.dk/scripts/ads/StoryAds.js (easylist.txt: 50588) -.nordjyske.dk/scripts/ads/StoryAds\.js -# @@||niedziela.nl/adverts/$image,~third-party (easylist.txt: 50587) -.niedziela.nl/adverts/ -# @@||mynet.com/nocache/adocean.js? (easylist.txt: 50585) -.mynet.com/nocache/adocean\.js\? -# @@||mynet.com.tr/nocache/adocean.js? (easylist.txt: 50584) -.mynet.com.tr/nocache/adocean\.js\? -# @@||moviezone.cz/swf/ad-player/$object,object-subrequest (easylist.txt: 50583) -.moviezone.cz/swf/ad-player/ -# @@||moviezone.cz//moviezone/reklama/$object-subrequest (easylist.txt: 50582) -# @@||mmgastro.pl/js/reklama/$~third-party (easylist.txt: 50581) -.mmgastro.pl/js/reklama/ -# @@||mmgastro.pl/img/reklama/$image,~third-party (easylist.txt: 50580) -.mmgastro.pl/img/reklama/ -# @@||mjhobbymassan.se/r/annonser/$image,~third-party (easylist.txt: 50578) -.mjhobbymassan.se/r/annonser/ -# @@||minuripsmed.ee/templates/*/images/advert.gif (easylist.txt: 50577) -.minuripsmed.ee/templates/.*/images/advert\.gif -# @@||megatv.com^*/adverts.asp?$object-subrequest (easylist.txt: 50576) -.megatv.com/.*/adverts\.asp\? -# @@||mail.bg/mail/index/getads/$xmlhttprequest (easylist.txt: 50575) -.mail.bg/mail/index/getads/ -# @@||lrytas.lt/ads/video_feed.js (easylist.txt: 50574) -.lrytas.lt/ads/video_feed\.js -# @@||laredoute.*/scripts/combinejs.ashx?*/affiliation/$script (easylist.txt: 50571) -.laredoute.*./(.*/)?scripts/combinejs\.ashx\?.*/affiliation/ -# @@||krotoszyn.pl/uploads/pub/ads_files/$image,~third-party (easylist.txt: 50570) -.krotoszyn.pl/uploads/pub/ads_files/ -# @@||kopavogur.is/umsoknarvefur/advertisement.aspx$subdocument (easylist.txt: 50569) -.kopavogur.is/umsoknarvefur/advertisement\.aspx -# @@||kompas.com^*/supersized.*.min_ads.js? (easylist.txt: 50568) -.kompas.com/.*/supersized\..*\.min_ads\.js\? -# @@||kanalfrederikshavn.dk^*/jquery.openx.js? (easylist.txt: 50567) -.kanalfrederikshavn.dk/.*/jquery\.openx\.js\? -# @@||joemonster.org^*_reklama_$image (easylist.txt: 50566) -.joemonster.org/.*_reklama_ -# @@||jesper.nu/javascript/libs/videoads.js (easylist.txt: 50565) -.jesper.nu/javascript/libs/videoads\.js -# @@||izigo.pt^*/adsearch? (easylist.txt: 50564) -.izigo.pt/.*/adsearch\? -# @@||izigo.pt/AdPictures/ (easylist.txt: 50563) -.izigo.pt/AdPictures/ -# @@||islafenice.net^*/adsense.js (easylist.txt: 50562) -.islafenice.net/.*/adsense\.js -# @@||isanook.com/vi/0/js/ads-$script (easylist.txt: 50561) -.isanook.com/vi/0/js/ads- -# @@||hry.cz/ad/adcode.js (easylist.txt: 50555) -.hry.cz/ad/adcode\.js -# @@||honfoglalo.hu/aagetad.php?$subdocument (easylist.txt: 50554) -.honfoglalo.hu/aagetad\.php\? -# @@||homad.eu^$~third-party (easylist.txt: 50553) -.homad.eu -# @@||hizlial.com/banners/$~third-party (easylist.txt: 50552) -.hizlial.com/banners/ -# @@||happymtb.org/annonser/$~third-party (easylist.txt: 50551) -.happymtb.org/annonser/ -# @@||haberler.com/video-haber/adsense_news_politics.swf?$object (easylist.txt: 50550) -.haberler.com/video-haber/adsense_news_politics\.swf\? -# @@||guloggratis.dk/modules/$script,~third-party,xmlhttprequest (easylist.txt: 50549) -.guloggratis.dk/modules/ -# @@||gov.in/pdf/ADVERTISEMENT/$~third-party (easylist.txt: 50548) -.gov.in/pdf/ADVERTISEMENT/ -# @@||freeride.se/img/admarket/$~third-party (easylist.txt: 50546) -.freeride.se/img/admarket/ -# @@||fotosioon.com/wp-content/*/images/advert.gif (easylist.txt: 50545) -.fotosioon.com/wp-content/.*/images/advert\.gif -# @@||fotolog.com/styles/flags/ad.gif (easylist.txt: 50544) -.fotolog.com/styles/flags/ad\.gif -# @@||fotojorgen.no/images/*/webadverts/ (easylist.txt: 50543) -.fotojorgen.no/images/.*/webadverts/ -# @@||forads.pl^$~third-party (easylist.txt: 50542) -.forads.pl -# @@||flashgames247.com/advertising/preroll/google-fg247-preloader.swf$object (easylist.txt: 50541) -.flashgames247.com/advertising/preroll/google-fg247-preloader\.swf -# @@||filmon.com/ad/affiliateimages/banner-250x350.png (easylist.txt: 50540) -.filmon.com/ad/affiliateimages/banner-250x350\.png -# @@||felcia.co.uk/js/ads_common.js (easylist.txt: 50539) -.felcia.co.uk/js/ads_common\.js -# @@||felcia.co.uk/css/advert-view.css (easylist.txt: 50538) -.felcia.co.uk/css/advert-view\.css -# @@||felcia.co.uk/css/ads-common.css (easylist.txt: 50537) -.felcia.co.uk/css/ads-common\.css -# @@||fajerwerkilider.pl/environment/cache/images/300_250_productGfx_$image (easylist.txt: 50535) -.fajerwerkilider.pl/environment/cache/images/300_250_productGfx_ -# @@||ettevotja.ee/templates/*/images/advert.gif (easylist.txt: 50533) -.ettevotja.ee/templates/.*/images/advert\.gif -# @@||epaper.andhrajyothy.com/js/newads.js (easylist.txt: 50532) -.epaper.andhrajyothy.com/js/newads\.js -# @@||emediate.se/crossdomain.xml$object-subrequest (easylist.txt: 50529) -.emediate.se/crossdomain\.xml -# @@||emediate.eu/crossdomain.xml$object-subrequest (easylist.txt: 50527) -.emediate.eu/crossdomain\.xml -# @@||emag.hu/site_ajax_ads?id=$xmlhttprequest (easylist.txt: 50525) -.emag.hu/site_ajax_ads\?id= -# @@||ehowenespanol.com/frames/ad.html?$subdocument (easylist.txt: 50524) -.ehowenespanol.com/frames/ad\.html\? -# @@||ehow.com.br/frames/ad.html?$subdocument (easylist.txt: 50523) -.ehow.com.br/frames/ad\.html\? -# @@||doladowania.pl/pp/$script (easylist.txt: 50519) -.doladowania.pl/pp/ -# @@||di.se^*/advertisement.js (easylist.txt: 50518) -.di.se/.*/advertisement\.js -# @@||di.se^$generichide (easylist.txt: 50517) -.di.se -# @@||custojusto.pt/user/myads/ (easylist.txt: 50516) -.custojusto.pt/user/myads/ -# @@||catmusica.cat/paudio/getads.jsp?$xmlhttprequest (easylist.txt: 50514) -.catmusica.cat/paudio/getads\.jsp\? -# @@||carfinder.gr/api/ads/$xmlhttprequest (easylist.txt: 50513) -.carfinder.gr/api/ads/ -# @@||bomnegocio.com/css/ad_insert.css (easylist.txt: 50512) -.bomnegocio.com/css/ad_insert\.css -# @@||bolha.com/css/ad.css? (easylist.txt: 50511) -.bolha.com/css/ad\.css\? -# @@||bnrs.ilm.ee/www/delivery/fl.js (easylist.txt: 50510) -.bnrs.ilm.ee/www/delivery/fl\.js -# @@||bn.uol.com.br/html.ng/$object-subrequest (easylist.txt: 50509) -.bn.uol.com.br/html\.ng/ -# @@||bmwoglasnik.si/images/ads/ (easylist.txt: 50508) -.bmwoglasnik.si/images/ads/ -# @@||blocket.se^*/newad.js (easylist.txt: 50507) -.blocket.se/.*/newad\.js -# @@||biancolavoro.euspert.com/js/ad.js (easylist.txt: 50506) -.biancolavoro.euspert.com/js/ad\.js -# @@||banki.ru/bitrix/*/advertising.block/$stylesheet (easylist.txt: 50503) -.banki.ru/bitrix/.*/advertising\.block/ -# @@||bancodevenezuela.com/imagenes/publicidad/$~third-party (easylist.txt: 50502) -.bancodevenezuela.com/imagenes/publicidad/ -# @@||bancainternet.com.ar/eBanking/images/*-PUBLICIDAD. (easylist.txt: 50501) -.bancainternet.com.ar/eBanking/images/.*-PUBLICIDAD\. -# @@||autotube.cz/ui/player/ad.php?id=$object-subrequest (easylist.txt: 50500) -.autotube.cz/ui/player/ad\.php\?id= -# @@||autoscout24.*/all.js.aspx?m=css&*=/stylesheets/adbanner.css (easylist.txt: 50499) -.autoscout24.*./(.*/)?all\.js\.aspx\?m=css&.*=/stylesheets/adbanner\.css -# @@||atresplayer.com/static/imgs/no_ads.jpg$object-subrequest (easylist.txt: 50498) -.atresplayer.com/static/imgs/no_ads\.jpg -# @@||applevideo.edgesuite.net/admedia/$object-subrequest (easylist.txt: 50497) -.applevideo.edgesuite.net/admedia/ -# @@||americateve.com/mediaplayer_ads/new_config_openx.xml$xmlhttprequest (easylist.txt: 50492) -.americateve.com/mediaplayer_ads/new_config_openx\.xml -# @@||amarillas.cl/js/advertise/$script (easylist.txt: 50489) -.amarillas.cl/js/advertise/ -# @@||amarillas.cl/advertise.do?$xmlhttprequest (easylist.txt: 50488) -.amarillas.cl/advertise\.do\? -# @@||alio.lt/public/advertisement/texttoimage.html?$image (easylist.txt: 50486) -.alio.lt/public/advertisement/texttoimage\.html\? -# @@||advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page.gif (easylist.txt: 50481) -.advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page\.gif -# @@||advert.ee^$~third-party (easylist.txt: 50477) -.advert.ee -# @@||adv.pt^$~third-party (easylist.txt: 50476) -.adv.pt -# @@||adsystem.pl^$~third-party (easylist.txt: 50470) -.adsystem.pl -# @@||ads.us.e-planning.net/crossdomain.xml$object-subrequest (easylist.txt: 50467) -.ads.us.e-planning.net/crossdomain\.xml -# @@||ads.telecinco.es/crossdomain.xml$object-subrequest (easylist.txt: 50465) -.ads.telecinco.es/crossdomain\.xml -# @@||ads.postimees.ee/crossdomain.xml$object-subrequest (easylist.txt: 50464) -.ads.postimees.ee/crossdomain\.xml -# @@||ads.peteava.ro/www/serve_ads/serve2.php?campaign=$object-subrequest (easylist.txt: 50463) -.ads.peteava.ro/www/serve_ads/serve2\.php\?campaign= -# @@||ads.peteava.ro/crossdomain.xml$object-subrequest (easylist.txt: 50462) -.ads.peteava.ro/crossdomain\.xml -# @@||ads.nicovideo.jp/assets/js/ads-*.js (easylist.txt: 50461) -.ads.nicovideo.jp/assets/js/ads-.*\.js -# @@||ads.hosting.vcmedia.vn/jinfo.ashx?$object-subrequest (easylist.txt: 50460) -.ads.hosting.vcmedia.vn/jinfo\.ashx\? -# @@||ads.hosting.vcmedia.vn/crossdomain.xml$object-subrequest (easylist.txt: 50459) -.ads.hosting.vcmedia.vn/crossdomain\.xml -# @@||ads.cvut.cz^$~third-party (easylist.txt: 50457) -.ads.cvut.cz -# @@||adpriv.nikkei.com/bservers/AAMALL/*/acc_random=$script (easylist.txt: 50456) -.adpriv.nikkei.com/bservers/AAMALL/.*/acc_random= -# @@||ad3.l3go.com.br^$~third-party (easylist.txt: 50448) -.ad3.l3go.com.br -# @@||ad.nl/ad/css/$~third-party (easylist.txt: 50447) -.ad.nl/ad/css/ -# @@||ad.e-kolay.net/mnetorfad.js (easylist.txt: 50446) -.ad.e-kolay.net/mnetorfad\.js -# @@||ad.e-kolay.net/Medyanet.js (easylist.txt: 50445) -.ad.e-kolay.net/Medyanet\.js -# @@||ad.e-kolay.net/jquery-*-Medyanet.min.js (easylist.txt: 50444) -.ad.e-kolay.net/jquery-.*-Medyanet\.min\.js -# @@||ad.e-kolay.net/ad.js (easylist.txt: 50443) -.ad.e-kolay.net/ad\.js -# @@||zoomin.tv/adhandler/amalia.adm?$object-subrequest (easylist.txt: 50438) -.zoomin.tv/adhandler/amalia\.adm\? -# @@||zman.com/adv/ova/overlay.xml (easylist.txt: 50437) -.zman.com/adv/ova/overlay\.xml -# @@||zattoo.com/ads/cs?$xmlhttprequest (easylist.txt: 50434) -.zattoo.com/ads/cs\? -# @@||ytconv.net/*google_ads.js (easylist.txt: 50433) -.ytconv.net/.*google_ads\.js -# @@||youwatch.org^$elemhide (easylist.txt: 50431) -.youwatch.org -# @@||youwatch.org/adframe.js (easylist.txt: 50430) -.youwatch.org/adframe\.js -# @@||yellowbridge.com^*/advertisement.js (easylist.txt: 50428) -.yellowbridge.com/.*/advertisement\.js -# @@||yellowbridge.com^$elemhide (easylist.txt: 50427) -.yellowbridge.com -# @@||yellowbridge.com/ad/show_ads.js (easylist.txt: 50426) -.yellowbridge.com/ad/show_ads\.js -# @@||yasni.*/adframe.js (easylist.txt: 50425) -.yasni.*./(.*/)?adframe\.js -# @@||xup.in^$elemhide (easylist.txt: 50424) -.xup.in -# @@||xooimg.com/magesy/js-cdn/adblock.js (easylist.txt: 50423) -.xooimg.com/magesy/js-cdn/adblock\.js -# @@||xlocker.net^$elemhide (easylist.txt: 50422) -.xlocker.net -# @@||www.vg.no^$elemhide (easylist.txt: 50421) -.www.vg.no -# @@||wwe2day.tv^$elemhide (easylist.txt: 50420) -.wwe2day.tv -# @@||writing.com^$script (easylist.txt: 50419) -.writing.com -# @@||wrestlingtalk.org^$elemhide (easylist.txt: 50418) -.wrestlingtalk.org -# @@||wowhq.eu^$elemhide (easylist.txt: 50417) -.wowhq.eu -# @@||wowebook.org^$elemhide (easylist.txt: 50416) -.wowebook.org -# @@||worldofapk.tk^$elemhide (easylist.txt: 50415) -.worldofapk.tk -# @@||world-of-hentai.to/advertisement.js (easylist.txt: 50414) -.world-of-hentai.to/advertisement\.js -# @@||windows7themes.net/wp-content/advert.js (easylist.txt: 50412) -.windows7themes.net/wp-content/advert\.js -# @@||win-free-bitcoins.eu^$elemhide (easylist.txt: 50411) -.win-free-bitcoins.eu -# @@||wholecloud.net/banner.php?$script (easylist.txt: 50410) -.wholecloud.net/banner\.php\? -# @@||whatsapprb.blogspot.com^$elemhide (easylist.txt: 50409) -.whatsapprb.blogspot.com -# @@||weshare.me^$elemhide (easylist.txt: 50408) -.weshare.me -# @@||weshare.me/fuckadblock.js (easylist.txt: 50407) -.weshare.me/fuckadblock\.js -# @@||welovebtc.com/show_ads.js (easylist.txt: 50406) -.welovebtc.com/show_ads\.js -# @@||webtv.rs/media/blic/advertisement.jpg (easylist.txt: 50405) -.webtv.rs/media/blic/advertisement\.jpg -# @@||webtoolhub.com^$elemhide (easylist.txt: 50404) -.webtoolhub.com -# @@||webfirstrow.eu^*/advertisement.js (easylist.txt: 50403) -.webfirstrow.eu/.*/advertisement\.js -# @@||webfirstrow.eu/advertisement.js (easylist.txt: 50402) -.webfirstrow.eu/advertisement\.js -# @@||weather.com^*/advertisement.js (easylist.txt: 50401) -.weather.com/.*/advertisement\.js -# @@||watchcartoononline.com/advertisement.js (easylist.txt: 50400) -.watchcartoononline.com/advertisement\.js -# @@||wanamlite.com/images/ad/$image (easylist.txt: 50399) -.wanamlite.com/images/ad/ -# @@||wallpapersimages.co.uk^$elemhide (easylist.txt: 50398) -.wallpapersimages.co.uk -# @@||wallpapermania.eu/assets/js/advertisement.js (easylist.txt: 50397) -.wallpapermania.eu/assets/js/advertisement\.js -# @@||vodu.ch^$script (easylist.txt: 50396) -.vodu.ch -# @@||vivotvhd.com^$elemhide (easylist.txt: 50395) -.vivotvhd.com -# @@||virtualpets.com^*/ads.js (easylist.txt: 50394) -.virtualpets.com/.*/ads\.js -# @@||vipleague.se/js/ads.js (easylist.txt: 50393) -.vipleague.se/js/ads\.js -# @@||vipbox.tv/js/ads.js (easylist.txt: 50392) -.vipbox.tv/js/ads\.js -# @@||viki.com/*.js$script (easylist.txt: 50391) -.viki.com/.*\.js -# @@||vietvbb.vn/up/clientscript/google_ads.js (easylist.txt: 50390) -.vietvbb.vn/up/clientscript/google_ads\.js -# @@||vidup.me/js/$script (easylist.txt: 50389) -.vidup.me/js/ -# @@||videoweed.es/banner.php?$script (easylist.txt: 50388) -.videoweed.es/banner\.php\? -# @@||videomega.tv^*/ad.php?id=$subdocument (easylist.txt: 50386) -.videomega.tv/.*/ad\.php\?id= -# @@||videomega.tv^$stylesheet (easylist.txt: 50385) -.videomega.tv -# @@||videomega.tv^$script (easylist.txt: 50384) -.videomega.tv -# @@||videomega.tv^$elemhide (easylist.txt: 50383) -.videomega.tv -# @@||videomega.tv/pub/interstitial.css (easylist.txt: 50382) -.videomega.tv/pub/interstitial\.css -# @@||videocelebrities.eu^*/adframe/ (easylist.txt: 50381) -.videocelebrities.eu/.*/adframe/ -# @@||vgunetwork.com/public/js/*/advertisement.js (easylist.txt: 50379) -.vgunetwork.com/public/js/.*/advertisement\.js -# @@||verticalscope.com/js/advert.js (easylist.txt: 50378) -.verticalscope.com/js/advert\.js -# @@||vercanalestv.com^$elemhide (easylist.txt: 50377) -.vercanalestv.com -# @@||ver-flv.com^$elemhide (easylist.txt: 50376) -.ver-flv.com -# @@||vencko.net^$elemhide (easylist.txt: 50374) -.vencko.net -# @@||velocity.com^$elemhide (easylist.txt: 50373) -.velocity.com -# @@||veedi.com^*/ADS.js (easylist.txt: 50372) -.veedi.com/.*/ADS\.js -# @@||usaupload.net/ads.js (easylist.txt: 50367) -.usaupload.net/ads\.js -# @@||urlgalleries.net^*/adhandler/$subdocument (easylist.txt: 50366) -.urlgalleries.net/.*/adhandler/ -# @@||url4u.org^$elemhide (easylist.txt: 50365) -.url4u.org -# @@||urduustaad.com^$elemhide (easylist.txt: 50363) -.urduustaad.com -# @@||urdupoint.com/js/advertisement.js (easylist.txt: 50361) -.urdupoint.com/js/advertisement\.js -# @@||urbeez.com/adver$script (easylist.txt: 50360) -.urbeez.com/adver -# @@||uptobox.com^$elemhide (easylist.txt: 50359) -.uptobox.com -# @@||upshare.org/advertisement.js (easylist.txt: 50358) -.upshare.org/advertisement\.js -# @@||uploadlw.com^$elemhide (easylist.txt: 50357) -.uploadlw.com -# @@||uploadlw.com/getbanner.cfm?$script (easylist.txt: 50356) -.uploadlw.com/getbanner\.cfm\? -# @@||uploadex.com^$elemhide (easylist.txt: 50355) -.uploadex.com -# @@||uploadex.com/fuckadblock.js (easylist.txt: 50354) -.uploadex.com/fuckadblock\.js -# @@||up-flow.org/advertisement.js (easylist.txt: 50353) -.up-flow.org/advertisement\.js -# @@||unlockpwd.com^$elemhide (easylist.txt: 50352) -.unlockpwd.com -# @@||ulto.ga^$elemhide (easylist.txt: 50351) -.ulto.ga -# @@||uktv.co.uk/static/js/ads.js (easylist.txt: 50350) -.uktv.co.uk/static/js/ads\.js -# @@||ucoz.com/ads/banner.jpg?$image (easylist.txt: 50349) -.ucoz.com/ads/banner\.jpg\? -# @@||twitch.tv/ads/ads.js (easylist.txt: 50348) -.twitch.tv/ads/ads\.js -# @@||tvrex.altervista.org^$elemhide (easylist.txt: 50347) -.tvrex.altervista.org -# @@||tvpelis.net^*/advertisement2.js (easylist.txt: 50346) -.tvpelis.net/.*/advertisement2\.js -# @@||tvenvivocrackmastersamm.blogspot.com.ar^$elemhide (easylist.txt: 50344) -.tvenvivocrackmastersamm.blogspot.com.ar -# @@||tvdez.com/ads/ads_$subdocument (easylist.txt: 50343) -.tvdez.com/ads/ads_ -# @@||tv3.co.nz/Portals/*/advertisement.js (easylist.txt: 50342) -.tv3.co.nz/Portals/.*/advertisement\.js -# @@||tv-porinternet.com.mx^$elemhide (easylist.txt: 50341) -.tv-porinternet.com.mx -# @@||tv-msn.com^$elemhide (easylist.txt: 50340) -.tv-msn.com -# @@||tutvgratis.tv^*/fuckadblock.js (easylist.txt: 50339) -.tutvgratis.tv/.*/fuckadblock\.js -# @@||tusmangas.net^$elemhide (easylist.txt: 50338) -.tusmangas.net -# @@||turktorrent.cc^$elemhide (easylist.txt: 50337) -.turktorrent.cc -# @@||turkdown.com^$script (easylist.txt: 50336) -.turkdown.com -# @@||turkdown.com^$elemhide (easylist.txt: 50335) -.turkdown.com -# @@||trizone91.com^$elemhide (easylist.txt: 50331) -.trizone91.com -# @@||trackitonline.ru^$elemhide (easylist.txt: 50327) -.trackitonline.ru -# @@||tpmrpg.net/adframe.js (easylist.txt: 50326) -.tpmrpg.net/adframe\.js -# @@||tlc.com^$elemhide (easylist.txt: 50323) -.tlc.com -# @@||tklist.net^$elemhide (easylist.txt: 50322) -.tklist.net -# @@||tklist.net/tklist/*ad$image (easylist.txt: 50321) -.tklist.net/tklist/.*ad -# @@||theweatherspace.com^*/advertisement.js (easylist.txt: 50318) -.theweatherspace.com/.*/advertisement\.js -# @@||thewatchseries.biz^$elemhide (easylist.txt: 50317) -.thewatchseries.biz -# @@||thevideos.tv/js/ads.js (easylist.txt: 50316) -.thevideos.tv/js/ads\.js -# @@||thesominaltv.com/advertisement.js (easylist.txt: 50315) -.thesominaltv.com/advertisement\.js -# @@||thesimsresource.com/downloads/download/itemId/$elemhide (easylist.txt: 50313) -.thesimsresource.com/downloads/download/itemId/ -# @@||thesilverforum.com/public/js/jsLoader.js?adType=$script (easylist.txt: 50312) -.thesilverforum.com/public/js/jsLoader\.js\?adType= -# @@||thememypc.com^$elemhide (easylist.txt: 50311) -.thememypc.com -# @@||thememypc.com/wp-content/*/ads/$image (easylist.txt: 50310) -.thememypc.com/wp-content/.*/ads/ -# @@||thelordofstreaming.it^$elemhide (easylist.txt: 50309) -.thelordofstreaming.it -# @@||thelordofstreaming.it/wp-content/uploads/*/ad_$image (easylist.txt: 50308) -.thelordofstreaming.it/wp-content/uploads/.*/ad_ -# @@||television-envivo.com^$elemhide (easylist.txt: 50306) -.television-envivo.com -# @@||televall.com.mx/fuckadblock.js (easylist.txt: 50305) -.televall.com.mx/fuckadblock\.js -# @@||telemetryverification.net/crossdomain.xml$object-subrequest (easylist.txt: 50304) -.telemetryverification.net/crossdomain\.xml -# @@||teknogods.com/advert.js (easylist.txt: 50303) -.teknogods.com/advert\.js -# @@||teenidols4you.com^$elemhide (easylist.txt: 50301) -.teenidols4you.com -# @@||techweekeurope.co.uk^*/advertising.js (easylist.txt: 50300) -.techweekeurope.co.uk/.*/advertising\.js -# @@||techingspot.blogspot.in^$elemhide (easylist.txt: 50299) -.techingspot.blogspot.in -# @@||team-vitality.fr/assets/images/advert.png (easylist.txt: 50298) -.team-vitality.fr/assets/images/advert\.png -# @@||tamercome.blogspot.co.uk^$elemhide (easylist.txt: 50297) -.tamercome.blogspot.co.uk -# @@||talksport.com/sites/default/files/ben/advert.js (easylist.txt: 50296) -.talksport.com/sites/default/files/ben/advert\.js -# @@||superplatyna.com^$elemhide (easylist.txt: 50295) -.superplatyna.com -# @@||supergames.com^*/ads.js (easylist.txt: 50294) -.supergames.com/.*/ads\.js -# @@||superfilm.pl/advertisement.js (easylist.txt: 50292) -.superfilm.pl/advertisement\.js -# @@||superanimes.com^$elemhide (easylist.txt: 50291) -.superanimes.com -# @@||streamlive.to^*/ad/$image (easylist.txt: 50290) -.streamlive.to/.*/ad/ -# @@||streamlive.to/js/ads.js (easylist.txt: 50289) -.streamlive.to/js/ads\.js -# @@||streaming-hub.com^$elemhide (easylist.txt: 50288) -.streaming-hub.com -# @@||streamin.to/adblock/advert.js (easylist.txt: 50287) -.streamin.to/adblock/advert\.js -# @@||streamcloud.eu^$xmlhttprequest (easylist.txt: 50286) -.streamcloud.eu -# @@||stream4free.eu^$elemhide (easylist.txt: 50285) -.stream4free.eu -# @@||stream2watch.me^$elemhide (easylist.txt: 50284) -.stream2watch.me -# @@||stickgames.com^*/ads.js (easylist.txt: 50283) -.stickgames.com/.*/ads\.js -# @@||startribune.com^$generichide (easylist.txt: 50280) -.startribune.com -# @@||stackexchange.com/affiliate/ (easylist.txt: 50279) -.stackexchange.com/affiliate/ -# @@||srnet.eu^$script (easylist.txt: 50278) -.srnet.eu -# @@||springstreetads.com/scripts/advertising.js (easylist.txt: 50277) -.springstreetads.com/scripts/advertising\.js -# @@||speedpremium.info^$script (easylist.txt: 50275) -.speedpremium.info -# @@||spaste.com^$script (easylist.txt: 50274) -.spaste.com -# @@||sparkylinux.org/images/ad/$image (easylist.txt: 50273) -.sparkylinux.org/images/ad/ -# @@||sounddrain.net^*/advertisement.js (easylist.txt: 50272) -.sounddrain.net/.*/advertisement\.js -# @@||sominaltvfilms.com^$elemhide (easylist.txt: 50270) -.sominaltvfilms.com -# @@||sominaltvfilms.com/wp-content/*/adbanner/$image (easylist.txt: 50269) -.sominaltvfilms.com/wp-content/.*/adbanner/ -# @@||software4all-now.blogspot.co.uk^$elemhide (easylist.txt: 50268) -.software4all-now.blogspot.co.uk -# @@||sockshare.com/js/$script (easylist.txt: 50267) -.sockshare.com/js/ -# @@||slader.com^$elemhide (easylist.txt: 50261) -.slader.com -# @@||skidrowcrack.com^$elemhide (easylist.txt: 50260) -.skidrowcrack.com -# @@||skidrowcrack.com/advertisement.js (easylist.txt: 50259) -.skidrowcrack.com/advertisement\.js -# @@||sizedrive.com^$elemhide (easylist.txt: 50258) -.sizedrive.com -# @@||sizedrive.com/js/fuckadblock.js (easylist.txt: 50257) -.sizedrive.com/js/fuckadblock\.js -# @@||sitepoint.com^*/ad-server.js (easylist.txt: 50255) -.sitepoint.com/.*/ad-server\.js -# @@||siamfishing.com^*/advert.js (easylist.txt: 50254) -.siamfishing.com/.*/advert\.js -# @@||showsport-tv.com^$elemhide (easylist.txt: 50253) -.showsport-tv.com -# @@||showsport-tv.com/adv*.js (easylist.txt: 50252) -.showsport-tv.com/adv.*\.js -# @@||shimory.com/js/show_ads.js (easylist.txt: 50251) -.shimory.com/js/show_ads\.js -# @@||sheepskinproxy.com/js/advertisement.js (easylist.txt: 50250) -.sheepskinproxy.com/js/advertisement\.js -# @@||seriesbang.net^$elemhide (easylist.txt: 50248) -.seriesbang.net -# @@||series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/$script (easylist.txt: 50247) -.series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/ -# @@||senmanga.com/advertisement.js (easylist.txt: 50246) -.senmanga.com/advertisement\.js -# @@||seekingalpha.com^$script (easylist.txt: 50245) -.seekingalpha.com -# @@||secureupload.eu^$elemhide (easylist.txt: 50243) -.secureupload.eu -# @@||securenetsystems.net^*/ads.js (easylist.txt: 50242) -.securenetsystems.net/.*/ads\.js -# @@||scriptnulled.eu^$elemhide (easylist.txt: 50240) -.scriptnulled.eu -# @@||scoutingbook.com/js/adsense.js (easylist.txt: 50239) -.scoutingbook.com/js/adsense\.js -# @@||sciencechannel.com^$elemhide (easylist.txt: 50238) -.sciencechannel.com -# @@||scan-manga.com/ads/banner.jpg$image (easylist.txt: 50237) -.scan-manga.com/ads/banner\.jpg -# @@||scan-manga.com/ads.html (easylist.txt: 50236) -.scan-manga.com/ads\.html -# @@||sawlive.tv/adscript.js (easylist.txt: 50234) -.sawlive.tv/adscript\.js -# @@||savevideo.me/images/banner_ads.gif (easylist.txt: 50233) -.savevideo.me/images/banner_ads\.gif -# @@||sankakustatic.com^$script (easylist.txt: 50229) -.sankakustatic.com -# @@||sankakucomplex.com^$script (easylist.txt: 50228) -.sankakucomplex.com -# @@||saikoanimes.net^*/advertisement.js (easylist.txt: 50227) -.saikoanimes.net/.*/advertisement\.js -# @@||saavn.com/ads/search_config_ad.php?$subdocument (easylist.txt: 50225) -.saavn.com/ads/search_config_ad\.php\? -# @@||runners.es^*/advertisement.js (easylist.txt: 50224) -.runners.es/.*/advertisement\.js -# @@||rtube.de^$elemhide (easylist.txt: 50222) -.rtube.de -# @@||rojadirecta.me^$elemhide (easylist.txt: 50219) -.rojadirecta.me -# @@||rincondelvago.com^*_adsense.js (easylist.txt: 50218) -.rincondelvago.com/.*_adsense\.js -# @@||revclouds.com^$generichide (easylist.txt: 50216) -.revclouds.com -# @@||remo-xp.com^$elemhide (easylist.txt: 50212) -.remo-xp.com -# @@||redtube.com*/adframe.js (easylist.txt: 50209) -.redtube.com*./(.*/)?adframe\.js -# @@||realidadscans.org^$elemhide (easylist.txt: 50208) -.realidadscans.org -# @@||ratebeer.com/javascript/advertisement.js (easylist.txt: 50206) -.ratebeer.com/javascript/advertisement\.js -# @@||rapidmoviez.com/files/php/mgid-ad$subdocument (easylist.txt: 50205) -.rapidmoviez.com/files/php/mgid-ad -# @@||rapidmoviez.com/ad$image,subdocument (easylist.txt: 50204) -.rapidmoviez.com/ad -# @@||rapid8.com^$script (easylist.txt: 50203) -.rapid8.com -# @@||radioio.com^*/adframe.js (easylist.txt: 50202) -.radioio.com/.*/adframe\.js -# @@||radioaficion.com^$elemhide (easylist.txt: 50201) -.radioaficion.com -# @@||radioaficion.com/HamNews/*/ad$image (easylist.txt: 50200) -.radioaficion.com/HamNews/.*/ad -# @@||radar-toulouse.fr/advertisement.js (easylist.txt: 50199) -.radar-toulouse.fr/advertisement\.js -# @@||racedepartment.com^*/advertisement.js (easylist.txt: 50197) -.racedepartment.com/.*/advertisement\.js -# @@||qrrro.com^*/adhandler/ (easylist.txt: 50196) -.qrrro.com/.*/adhandler/ -# @@||pxstream.tv^$elemhide (easylist.txt: 50194) -.pxstream.tv -# @@||puromarketing.com^$elemhide (easylist.txt: 50193) -.puromarketing.com -# @@||puromarketing.com/js/advertisement.js (easylist.txt: 50192) -.puromarketing.com/js/advertisement\.js -# @@||pubdirecte.com^*/advertisement.js (easylist.txt: 50191) -.pubdirecte.com/.*/advertisement\.js -# @@||psarips.com^$script (easylist.txt: 50189) -.psarips.com -# @@||protect-url.net^$script,~third-party (easylist.txt: 50188) -.protect-url.net -# @@||primewire.ag/js/advertisement.js (easylist.txt: 50185) -.primewire.ag/js/advertisement\.js -# @@||primeshare.tv^*/advertisement.js (easylist.txt: 50184) -.primeshare.tv/.*/advertisement\.js -# @@||primeshare.tv^*/adframe.js (easylist.txt: 50183) -.primeshare.tv/.*/adframe\.js -# @@||premiumleecher.com^$elemhide (easylist.txt: 50182) -.premiumleecher.com -# @@||premiumleecher.com/inc/adsense.js (easylist.txt: 50181) -.premiumleecher.com/inc/adsense\.js -# @@||premiumleecher.com/inc/adframe.js (easylist.txt: 50180) -.premiumleecher.com/inc/adframe\.js -# @@||premiumgeneratorlink.com^$elemhide (easylist.txt: 50179) -.premiumgeneratorlink.com -# @@||premium4.us^$elemhide (easylist.txt: 50178) -.premium4.us -# @@||prad.de/en/$elemhide (easylist.txt: 50177) -.prad.de/en/ -# @@||portalzuca.com^$elemhide (easylist.txt: 50175) -.portalzuca.com -# @@||pocosmegashdd.com^$elemhide (easylist.txt: 50171) -.pocosmegashdd.com -# @@||playindiafilms.com/advertisement.js (easylist.txt: 50170) -.playindiafilms.com/advertisement\.js -# @@||playhd.eu/advertisement.js (easylist.txt: 50169) -.playhd.eu/advertisement\.js -# @@||player.utv.ie/assets/js/adframe.js (easylist.txt: 50168) -.player.utv.ie/assets/js/adframe\.js -# @@||player.foxfdm.com^*/playback.js$xmlhttprequest (easylist.txt: 50167) -.player.foxfdm.com/.*/playback\.js -# @@||play-old-pc-games.com^$elemhide (easylist.txt: 50166) -.play-old-pc-games.com -# @@||pirlotv.tv^$elemhide (easylist.txt: 50165) -.pirlotv.tv -# @@||pipocas.tv/js/advertisement.js (easylist.txt: 50164) -.pipocas.tv/js/advertisement\.js -# @@||picu.pk^$elemhide (easylist.txt: 50163) -.picu.pk -# @@||picload.org^$elemhide (easylist.txt: 50162) -.picload.org -# @@||photofacefun.com^*/adblock.js (easylist.txt: 50161) -.photofacefun.com/.*/adblock\.js -# @@||phoronix.com/advertisement.js (easylist.txt: 50160) -.phoronix.com/advertisement\.js -# @@||pes-patch.com^$elemhide (easylist.txt: 50159) -.pes-patch.com -# @@||perkuinternete.lt/modules/mod_jpayday/js/advertisement.js (easylist.txt: 50158) -.perkuinternete.lt/modules/mod_jpayday/js/advertisement\.js -# @@||peliculas.online-latino.com^$elemhide (easylist.txt: 50157) -.peliculas.online-latino.com -# @@||pcgames-download.net^$elemhide (easylist.txt: 50155) -.pcgames-download.net -# @@||paste.org/style/adframe.js (easylist.txt: 50154) -.paste.org/style/adframe\.js -# @@||pandora.com/static/ads/ (easylist.txt: 50150) -.pandora.com/static/ads/ -# @@||overclock3d.net/js/advert.js (easylist.txt: 50135) -.overclock3d.net/js/advert\.js -# @@||osdarlings.com^$elemhide (easylist.txt: 50134) -.osdarlings.com -# @@||oploverz.net^$elemhide (easylist.txt: 50131) -.oploverz.net -# @@||openx.gamereactor.dk/multi.php?$script (easylist.txt: 50127) -.openx.gamereactor.dk/multi\.php\? -# @@||openspeedtest.com/advertisement.js (easylist.txt: 50126) -.openspeedtest.com/advertisement\.js -# @@||openrunner.com/js/advertisement.js (easylist.txt: 50125) -.openrunner.com/js/advertisement\.js -# @@||openload.io^$elemhide (easylist.txt: 50121) -.openload.io -# @@||openload.co^$elemhide (easylist.txt: 50118) -.openload.co -# @@||onvasortir.com/advert$script (easylist.txt: 50117) -.onvasortir.com/advert -# @@||onrpg.com/advertisement.js (easylist.txt: 50116) -.onrpg.com/advertisement\.js -# @@||onlinevideoconverter.com^*ad*.js (easylist.txt: 50115) -.onlinevideoconverter.com/.*ad.*\.js -# @@||onlinemoviewatchs.com^$elemhide (easylist.txt: 50114) -.onlinemoviewatchs.com -# @@||onlinemoviewatchfree.com^$elemhide (easylist.txt: 50113) -.onlinemoviewatchfree.com -# @@||onlinemoviesfreee.com^$elemhide (easylist.txt: 50112) -.onlinemoviesfreee.com -# @@||oneplay.tv^$elemhide (easylist.txt: 50111) -.oneplay.tv -# @@||oneplay.tv/embed/js/fuckadblock.js (easylist.txt: 50110) -.oneplay.tv/embed/js/fuckadblock\.js -# @@||omaredomex.org^$elemhide (easylist.txt: 50109) -.omaredomex.org -# @@||nzbstars.com*/advertisement.js (easylist.txt: 50106) -.nzbstars.com*./(.*/)?advertisement\.js -# @@||nowvideo.to/banner.php?$script (easylist.txt: 50105) -.nowvideo.to/banner\.php\? -# @@||nowvideo.sx/banner.php?$script (easylist.txt: 50104) -.nowvideo.sx/banner\.php\? -# @@||nowvideo.li/banner.php?$script (easylist.txt: 50103) -.nowvideo.li/banner\.php\? -# @@||nowdownload.to/banner.php?$script (easylist.txt: 50102) -.nowdownload.to/banner\.php\? -# @@||novamov.com/banner.php?$script (easylist.txt: 50101) -.novamov.com/banner\.php\? -# @@||noticiasautomotivas.com.br^$elemhide (easylist.txt: 50100) -.noticiasautomotivas.com.br -# @@||nosteam.ro^*/advertisement.js (easylist.txt: 50099) -.nosteam.ro/.*/advertisement\.js -# @@||nosteam.ro/advertisement.js (easylist.txt: 50098) -.nosteam.ro/advertisement\.js -# @@||nornar.com^$elemhide (easylist.txt: 50097) -.nornar.com -# @@||nonags.com^*/ad$image (easylist.txt: 50096) -.nonags.com/.*/ad -# @@||nonags.com^$elemhide (easylist.txt: 50095) -.nonags.com -# @@||nicoblog-games.com^$elemhide (easylist.txt: 50094) -.nicoblog-games.com -# @@||nextthreedays.com/Include/Javascript/AdFunctions.js (easylist.txt: 50092) -.nextthreedays.com/Include/Javascript/AdFunctions\.js -# @@||next-episode.net^$script (easylist.txt: 50091) -.next-episode.net -# @@||newxxxvideosupdate.blogspot.com.ar^$elemhide (easylist.txt: 50090) -.newxxxvideosupdate.blogspot.com.ar -# @@||newmusicforpeople.org^$elemhide (easylist.txt: 50089) -.newmusicforpeople.org -# @@||nettavisen.no^*/advertisement.js (easylist.txt: 50088) -.nettavisen.no/.*/advertisement\.js -# @@||needrom.com/advert1.js (easylist.txt: 50087) -.needrom.com/advert1\.js -# @@||ndtv.com/static/js/advertisement.js (easylist.txt: 50086) -.ndtv.com/static/js/advertisement\.js -# @@||nbahd.com^$elemhide (easylist.txt: 50085) -.nbahd.com -# @@||narkive.com^$elemhide (easylist.txt: 50084) -.narkive.com -# @@||mypapercraft.net^$elemhide (easylist.txt: 50082) -.mypapercraft.net -# @@||myksn.net^$elemhide (easylist.txt: 50081) -.myksn.net -# @@||myiplayer.com^$elemhide (easylist.txt: 50080) -.myiplayer.com -# @@||myiplayer.com/ad*.js (easylist.txt: 50079) -.myiplayer.com/ad.*\.js -# @@||myfreeforum.org/advertisement.js (easylist.txt: 50078) -.myfreeforum.org/advertisement\.js -# @@||myfineforum.org/advertisement.js (easylist.txt: 50077) -.myfineforum.org/advertisement\.js -# @@||mybannermaker.com/banner.php$~third-party (easylist.txt: 50076) -.mybannermaker.com/banner\.php -# @@||mwfiles.net/advertisement.js (easylist.txt: 50075) -.mwfiles.net/advertisement\.js -# @@||musicacelestial.net^$elemhide (easylist.txt: 50074) -.musicacelestial.net -# @@||mundoprogramas.net^$elemhide (easylist.txt: 50073) -.mundoprogramas.net -# @@||multiup.org^$elemhide (easylist.txt: 50072) -.multiup.org -# @@||multiup.org/img/theme/*?$image (easylist.txt: 50071) -.multiup.org/img/theme/.*\? -# @@||mugiwaranofansub.blogspot.com.ar^$elemhide (easylist.txt: 50070) -.mugiwaranofansub.blogspot.com.ar -# @@||mrtzcmp3.net/advertisement.js (easylist.txt: 50069) -.mrtzcmp3.net/advertisement\.js -# @@||mrjuegosdroid.co.vu^$elemhide (easylist.txt: 50068) -.mrjuegosdroid.co.vu -# @@||mpc-g.com^$elemhide (easylist.txt: 50067) -.mpc-g.com -# @@||mp3skull.la^$elemhide (easylist.txt: 50066) -.mp3skull.la -# @@||mp3clan.net^$elemhide (easylist.txt: 50065) -.mp3clan.net -# @@||mp3clan.com^*/advertisement.js (easylist.txt: 50064) -.mp3clan.com/.*/advertisement\.js -# @@||mp3clan.com^$elemhide (easylist.txt: 50063) -.mp3clan.com -# @@||mp3clan.audio^$elemhide (easylist.txt: 50062) -.mp3clan.audio -# @@||movie1k.net^$elemhide (easylist.txt: 50061) -.movie1k.net -# @@||mousebreaker.com/scripts/ads.js (easylist.txt: 50060) -.mousebreaker.com/scripts/ads\.js -# @@||moon-faucet.tk/advertisement.js (easylist.txt: 50059) -.moon-faucet.tk/advertisement\.js -# @@||monsoonads.com:8080/crossdomain.xml$object-subrequest (easylist.txt: 50057) -.monsoonads.com:8080/crossdomain\.xml -# @@||monsoonads.com/crossdomain.xml$object-subrequest (easylist.txt: 50056) -.monsoonads.com/crossdomain\.xml -# @@||monova.unblocked.la^$generichide (easylist.txt: 50055) -.monova.unblocked.la -# @@||monova.unblocked.la/js/adframe.js (easylist.txt: 50054) -.monova.unblocked.la/js/adframe\.js -# @@||monova.org^$generichide (easylist.txt: 50053) -.monova.org -# @@||monova.org/js/adframe.js (easylist.txt: 50052) -.monova.org/js/adframe\.js -# @@||moneyinpjs.com/advertisement.js (easylist.txt: 50051) -.moneyinpjs.com/advertisement\.js -# @@||moje-dzialdowo.pl/images/*.swf|$object (easylist.txt: 50050) -.moje-dzialdowo.pl/images/.*\.swf$ -# @@||moje-dzialdowo.pl/delivery/ajs.php?zoneid=$script (easylist.txt: 50049) -.moje-dzialdowo.pl/delivery/ajs\.php\?zoneid= -# @@||mobinozer.com^*/advert.js (easylist.txt: 50048) -.mobinozer.com/.*/advert\.js -# @@||mmatko.com/images/ad/$image (easylist.txt: 50047) -.mmatko.com/images/ad/ -# @@||mma-core.com/Scripts/adscript.js (easylist.txt: 50046) -.mma-core.com/Scripts/adscript\.js -# @@||mix.dj^*/advertisement.js (easylist.txt: 50045) -.mix.dj/.*/advertisement\.js -# @@||mix.dj/jscripts/jquery/mdj_adverts.js (easylist.txt: 50044) -.mix.dj/jscripts/jquery/mdj_adverts\.js -# @@||mintmovies.net^$elemhide (easylist.txt: 50043) -.mintmovies.net -# @@||miniclipcdn.com/js/advertisement.js (easylist.txt: 50042) -.miniclipcdn.com/js/advertisement\.js -# @@||minecraft-forum.net^$elemhide (easylist.txt: 50041) -.minecraft-forum.net -# @@||mimaletamusical.blogspot.com.ar^$elemhide (easylist.txt: 50040) -.mimaletamusical.blogspot.com.ar -# @@||mgcash.com/common/adblock.js (easylist.txt: 50033) -.mgcash.com/common/adblock\.js -# @@||megawypas.pl/includes/adframe.js (easylist.txt: 50032) -.megawypas.pl/includes/adframe\.js -# @@||megavideodownloader.com/adframe.js (easylist.txt: 50031) -.megavideodownloader.com/adframe\.js -# @@||megahd.me^*/advertisement.js (easylist.txt: 50030) -.megahd.me/.*/advertisement\.js -# @@||megadown.us/advertisement.js (easylist.txt: 50029) -.megadown.us/advertisement\.js -# @@||megacineonline.net^$elemhide (easylist.txt: 50028) -.megacineonline.net -# @@||megacineonline.biz^$elemhide (easylist.txt: 50027) -.megacineonline.biz -# @@||mediaplaybox.com^$elemhide (easylist.txt: 50025) -.mediaplaybox.com -# @@||maxedtech.com^$elemhide (easylist.txt: 50022) -.maxedtech.com -# @@||maxcheaters.com/public/js/jsLoader.js (easylist.txt: 50021) -.maxcheaters.com/public/js/jsLoader\.js -# @@||max-deportv.net^$elemhide (easylist.txt: 50020) -.max-deportv.net -# @@||max-deportv.info^$elemhide (easylist.txt: 50019) -.max-deportv.info -# @@||mastertoons.com^$elemhide (easylist.txt: 50018) -.mastertoons.com -# @@||masfuertequeelhierro.com^$elemhide (easylist.txt: 50017) -.masfuertequeelhierro.com -# @@||marketmilitia.org^$elemhide (easylist.txt: 50016) -.marketmilitia.org -# @@||marketmilitia.org/advertisement.js (easylist.txt: 50015) -.marketmilitia.org/advertisement\.js -# @@||mangakaka.com^*/advertiser.js (easylist.txt: 50014) -.mangakaka.com/.*/advertiser\.js -# @@||mangakaka.com/ad/$subdocument (easylist.txt: 50013) -.mangakaka.com/ad/ -# @@||mangahost.com/ads.js? (easylist.txt: 50012) -.mangahost.com/ads\.js\? -# @@||mangahop.com^$generichide (easylist.txt: 50011) -.mangahop.com -# @@||mangabird.me/sites/default/files/manga/*/advertise-$image (easylist.txt: 50010) -.mangabird.me/sites/default/files/manga/.*/advertise- -# @@||mangabird.com^$elemhide (easylist.txt: 50009) -.mangabird.com -# @@||mangabird.com/sites/all/themes/zen/js/advertiser.js (easylist.txt: 50008) -.mangabird.com/sites/all/themes/zen/js/advertiser\.js -# @@||manga2u.co/css/advertiser.js (easylist.txt: 50007) -.manga2u.co/css/advertiser\.js -# @@||mamahd.com^$elemhide (easylist.txt: 50006) -.mamahd.com -# @@||mamahd.com/advertisement.js (easylist.txt: 50005) -.mamahd.com/advertisement\.js -# @@||makemehost.com/js/ads.js (easylist.txt: 50004) -.makemehost.com/js/ads\.js -# @@||majorleaguegaming.com^*.png?*=$image (easylist.txt: 50003) -.majorleaguegaming.com/.*\.png\?.*= -# @@||majorleaguegaming.com^$elemhide (easylist.txt: 50002) -.majorleaguegaming.com -# @@||majorleaguegaming.com/live/assets/advertisement-*.js (easylist.txt: 50001) -.majorleaguegaming.com/live/assets/advertisement-.*\.js -# @@||magesy.be^$elemhide (easylist.txt: 50000) -.magesy.be -# @@||magesy.be/advertisement.js (easylist.txt: 49999) -.magesy.be/advertisement\.js -# @@||macobserver.com/js/adlink.js (easylist.txt: 49997) -.macobserver.com/js/adlink\.js -# @@||mac2sell.net^$elemhide (easylist.txt: 49995) -.mac2sell.net -# @@||maamp3.com^$elemhide (easylist.txt: 49994) -.maamp3.com -# @@||lumload.com^$elemhide (easylist.txt: 49993) -.lumload.com -# @@||lpmanager.com^*/fuckadblock.js (easylist.txt: 49992) -.lpmanager.com/.*/fuckadblock\.js -# @@||lpg-forum.pl/advertise.js (easylist.txt: 49991) -.lpg-forum.pl/advertise\.js -# @@||lordpyrak.net^$elemhide (easylist.txt: 49990) -.lordpyrak.net -# @@||lomeutec.com^$elemhide (easylist.txt: 49989) -.lomeutec.com -# @@||livrosdoexilado.org^$elemhide (easylist.txt: 49988) -.livrosdoexilado.org -# @@||litecoiner.net/advertisement.js (easylist.txt: 49987) -.litecoiner.net/advertisement\.js -# @@||litecoin-faucet.tk/advertisement.js (easylist.txt: 49986) -.litecoin-faucet.tk/advertisement\.js -# @@||liquidcompass.net/js/advertisement.js (easylist.txt: 49985) -.liquidcompass.net/js/advertisement\.js -# @@||linkshrink.net^$elemhide (easylist.txt: 49984) -.linkshrink.net -# @@||linkcrypt.ws^$elemhide (easylist.txt: 49983) -.linkcrypt.ws -# @@||link.tl^$elemhide (easylist.txt: 49981) -.link.tl -# @@||lilfile.com/js/advertise.js (easylist.txt: 49980) -.lilfile.com/js/advertise\.js -# @@||lilfile.com/js/advertise-2.js (easylist.txt: 49979) -.lilfile.com/js/advertise-2\.js -# @@||lifehacker.com.au^*/ads.js (easylist.txt: 49978) -.lifehacker.com.au/.*/ads\.js -# @@||liberallogic101.com/show_ads.js (easylist.txt: 49977) -.liberallogic101.com/show_ads\.js -# @@||legionprogramas.org^$elemhide (easylist.txt: 49976) -.legionprogramas.org -# @@||legionpeliculas.org^$elemhide (easylist.txt: 49975) -.legionpeliculas.org -# @@||leecher.us^$elemhide (easylist.txt: 49974) -.leecher.us -# @@||leecher.us/assets/img/*/ads/$image (easylist.txt: 49973) -.leecher.us/assets/img/.*/ads/ -# @@||leaguesecretary.com/advertisement.js (easylist.txt: 49972) -.leaguesecretary.com/advertisement\.js -# @@||layer13.net^$elemhide,script (easylist.txt: 49971) -.layer13.net -# @@||lasprovincias.es^*/adframe.js (easylist.txt: 49970) -.lasprovincias.es/.*/adframe\.js -# @@||lasexta.com/adsxml/$object-subrequest (easylist.txt: 49969) -.lasexta.com/adsxml/ -# @@||lag10.net^$elemhide (easylist.txt: 49968) -.lag10.net -# @@||kwikupload.com^$elemhide (easylist.txt: 49967) -.kwikupload.com -# @@||kshowes.net^$elemhide (easylist.txt: 49966) -.kshowes.net -# @@||kotaku.com.au^*/ads.js (easylist.txt: 49965) -.kotaku.com.au/.*/ads\.js -# @@||koparos.info^$elemhide (easylist.txt: 49964) -.koparos.info -# @@||koparos.info/ads.php (easylist.txt: 49963) -.koparos.info/ads\.php -# @@||kisscartoon.me/Ads/$subdocument (easylist.txt: 49962) -.kisscartoon.me/Ads/ -# @@||kissanime.com/ads/$image,subdocument (easylist.txt: 49961) -.kissanime.com/ads/ -# @@||kenkenpuzzle.com/assets/ads-$script (easylist.txt: 49960) -.kenkenpuzzle.com/assets/ads- -# @@||kdliker.com/js/advert.js (easylist.txt: 49959) -.kdliker.com/js/advert\.js -# @@||katsomo.fi^*/advertisement.js (easylist.txt: 49958) -.katsomo.fi/.*/advertisement\.js -# @@||katsomo.fi^*/advert.js (easylist.txt: 49957) -.katsomo.fi/.*/advert\.js -# @@||juzupload.com/advert*.js (easylist.txt: 49956) -.juzupload.com/advert.*\.js -# @@||junksport.com/watch/advertisement.js (easylist.txt: 49955) -.junksport.com/watch/advertisement\.js -# @@||juba-get.com^*/advertisement.js (easylist.txt: 49954) -.juba-get.com/.*/advertisement\.js -# @@||jkanime.net^*/advertisement2.js (easylist.txt: 49952) -.jkanime.net/.*/advertisement2\.js -# @@||jkanime.net/assets/js/advertisement.js (easylist.txt: 49951) -.jkanime.net/assets/js/advertisement\.js -# @@||jjcast.com^$elemhide (easylist.txt: 49950) -.jjcast.com -# @@||jevvi.es/adblock/$image (easylist.txt: 49949) -.jevvi.es/adblock/ -# @@||iriptv.com/player/ads.js (easylist.txt: 49948) -.iriptv.com/player/ads\.js -# @@||iptvlinks.com^$elemhide (easylist.txt: 49947) -.iptvlinks.com -# @@||investopedia.com^*/adverts.js (easylist.txt: 49945) -.investopedia.com/.*/adverts\.js -# @@||investopedia.com^*/advertisement.js (easylist.txt: 49944) -.investopedia.com/.*/advertisement\.js -# @@||investopedia.com^$elemhide (easylist.txt: 49943) -.investopedia.com -# @@||investopedia.com/public/js/ads.js (easylist.txt: 49942) -.investopedia.com/public/js/ads\.js -# @@||investigationdiscovery.com/shared/ad-enablers/ (easylist.txt: 49941) -.investigationdiscovery.com/shared/ad-enablers/ -# @@||install.wtf/advertisement/advertisement.js (easylist.txt: 49937) -.install.wtf/advertisement/advertisement\.js -# @@||inskinmedia.com/crossdomain.xml$object-subrequest (easylist.txt: 49936) -.inskinmedia.com/crossdomain\.xml -# @@||incredibox.com^$elemhide (easylist.txt: 49930) -.incredibox.com -# @@||incredibox.com/js/fuckadblock.js (easylist.txt: 49929) -.incredibox.com/js/fuckadblock\.js -# @@||incredibox.com/js/advertisement.js (easylist.txt: 49928) -.incredibox.com/js/advertisement\.js -# @@||imgsure.com/ads/banner.jpg? (easylist.txt: 49925) -.imgsure.com/ads/banner\.jpg\? -# @@||imgleech.com/ads/banner.jpg? (easylist.txt: 49924) -.imgleech.com/ads/banner\.jpg\? -# @@||imgclick.net^$elemhide (easylist.txt: 49923) -.imgclick.net -# @@||images.bangtidy.net^$elemhide (easylist.txt: 49920) -.images.bangtidy.net -# @@||imageontime.com/ads/banner.jpg? (easylist.txt: 49919) -.imageontime.com/ads/banner\.jpg\? -# @@||ilive.to^$elemhide (easylist.txt: 49915) -.ilive.to -# @@||ilive.to/js/advert*.js (easylist.txt: 49914) -.ilive.to/js/advert.*\.js -# @@||iguide.to/js/advertisement.js (easylist.txt: 49913) -.iguide.to/js/advertisement\.js -# @@||ifirstrow.eu^$script (easylist.txt: 49910) -.ifirstrow.eu -# @@||idevnote.com^$elemhide (easylist.txt: 49909) -.idevnote.com -# @@||ibmmainframeforum.com^$elemhide (easylist.txt: 49908) -.ibmmainframeforum.com -# @@||i-stream.pl^*/advertisement.js (easylist.txt: 49906) -.i-stream.pl/.*/advertisement\.js -# @@||hubturkey.net^$elemhide (easylist.txt: 49904) -.hubturkey.net -# @@||hqq.tv^$elemhide (easylist.txt: 49903) -.hqq.tv -# @@||hqpdb.com/ads/banner.jpg? (easylist.txt: 49902) -.hqpdb.com/ads/banner\.jpg\? -# @@||hpfanficarchive.com^*/advertisement.js (easylist.txt: 49901) -.hpfanficarchive.com/.*/advertisement\.js -# @@||hostyd.com^$elemhide (easylist.txt: 49900) -.hostyd.com -# @@||hogarutil.com^$elemhide (easylist.txt: 49898) -.hogarutil.com -# @@||hitcric.info^$elemhide (easylist.txt: 49897) -.hitcric.info -# @@||hexawebhosting.com/adcode.js (easylist.txt: 49895) -.hexawebhosting.com/adcode\.js -# @@||hentai-foundry.com^*/ads.js (easylist.txt: 49894) -.hentai-foundry.com/.*/ads\.js -# @@||hdmovie14.net/js/ad*.js (easylist.txt: 49893) -.hdmovie14.net/js/ad.*\.js -# @@||hdfree.tv/live/ad.php (easylist.txt: 49892) -.hdfree.tv/live/ad\.php -# @@||haxlog.com^$elemhide (easylist.txt: 49890) -.haxlog.com -# @@||hardware.no^$script (easylist.txt: 49889) -.hardware.no -# @@||hardware.no/artikler/$image,~third-party (easylist.txt: 49888) -.hardware.no/artikler/ -# @@||hardware.no/ads/$image (easylist.txt: 49887) -.hardware.no/ads/ -# @@||hallpass.com^*/ads.js (easylist.txt: 49886) -.hallpass.com/.*/ads\.js -# @@||hackintosh.zone^$elemhide (easylist.txt: 49885) -.hackintosh.zone -# @@||hackintosh.zone/adblock/advertisement.js (easylist.txt: 49884) -.hackintosh.zone/adblock/advertisement\.js -# @@||hackers.co.id/adframe/adframe.js (easylist.txt: 49883) -.hackers.co.id/adframe/adframe\.js -# @@||guygames.com^*/ads.js (easylist.txt: 49882) -.guygames.com/.*/ads\.js -# @@||goldsday.com^$elemhide (easylist.txt: 49875) -.goldsday.com -# @@||gofirstrow.eu^*/advertisement.js (easylist.txt: 49874) -.gofirstrow.eu/.*/advertisement\.js -# @@||gofirstrow.eu/advertisement.js (easylist.txt: 49873) -.gofirstrow.eu/advertisement\.js -# @@||go4up.com^$elemhide (easylist.txt: 49872) -.go4up.com -# @@||go4up.com/advertisement.js (easylist.txt: 49871) -.go4up.com/advertisement\.js -# @@||gizmodo.com.au^*/ads.js (easylist.txt: 49869) -.gizmodo.com.au/.*/ads\.js -# @@||girlsocool.com^*/ads.js (easylist.txt: 49868) -.girlsocool.com/.*/ads\.js -# @@||girlsaskguys.com^*/js/ads. (easylist.txt: 49867) -.girlsaskguys.com/.*/js/ads\. -# @@||girlgames.com^*/ads.js (easylist.txt: 49866) -.girlgames.com/.*/ads\.js -# @@||getdebrid.com^$elemhide (easylist.txt: 49865) -.getdebrid.com -# @@||getdebrid.com/advertisement.js (easylist.txt: 49864) -.getdebrid.com/advertisement\.js -# @@||get-free-bitcoin.eu^$elemhide (easylist.txt: 49863) -.get-free-bitcoin.eu -# @@||get-bitcoins-free.eu^$elemhide (easylist.txt: 49862) -.get-bitcoins-free.eu -# @@||gdataonline.com/exp/textad.js (easylist.txt: 49860) -.gdataonline.com/exp/textad\.js -# @@||gamespot.com/js/ads.js (easylist.txt: 49859) -.gamespot.com/js/ads\.js -# @@||gameslivetv.com/js/advertisement.js (easylist.txt: 49858) -.gameslivetv.com/js/advertisement\.js -# @@||gameshark.com/images/ads/ (easylist.txt: 49857) -.gameshark.com/images/ads/ -# @@||games.washingtonpost.com/Scripts/$script (easylist.txt: 49856) -.games.washingtonpost.com/Scripts/ -# @@||games.latimes.com/Scripts/advert.js (easylist.txt: 49855) -.games.latimes.com/Scripts/advert\.js -# @@||gamersconnexion.com/js/advert.js (easylist.txt: 49854) -.gamersconnexion.com/js/advert\.js -# @@||gamereactor.net/advertisement.js (easylist.txt: 49853) -.gamereactor.net/advertisement\.js -# @@||gamereactor.$script,~third-party (easylist.txt: 49852) -.gamereactor.*. -# @@||gameopc.blogspot.com.ar^$elemhide (easylist.txt: 49851) -.gameopc.blogspot.com.ar -# @@||gamecopyworld.eu/games/$script (easylist.txt: 49850) -.gamecopyworld.eu/games/ -# @@||gamecopyworld.com/games/$script (easylist.txt: 49849) -.gamecopyworld.com/games/ -# @@||gallerynova.se^*/advertisement.js (easylist.txt: 49846) -.gallerynova.se/.*/advertisement\.js -# @@||gallery.aethereality.net/advertisement.js (easylist.txt: 49845) -.gallery.aethereality.net/advertisement\.js -# @@||funniermoments.com^$stylesheet (easylist.txt: 49830) -.funniermoments.com -# @@||funniermoments.com^$elemhide (easylist.txt: 49829) -.funniermoments.com -# @@||funniermoments.com/adframe.js (easylist.txt: 49828) -.funniermoments.com/adframe\.js -# @@||freshdown.net^$elemhide (easylist.txt: 49827) -.freshdown.net -# @@||freshdown.net/templates/Blaster/img/*/ads/$image (easylist.txt: 49826) -.freshdown.net/templates/Blaster/img/.*/ads/ -# @@||freesportsbet.com/js/advertisement.js (easylist.txt: 49825) -.freesportsbet.com/js/advertisement\.js -# @@||freeprosurfer.com^$elemhide (easylist.txt: 49824) -.freeprosurfer.com -# @@||freegamehosting.nl/js/advertisement.js (easylist.txt: 49823) -.freegamehosting.nl/js/advertisement\.js -# @@||freegamehosting.nl/advertisement.js (easylist.txt: 49822) -.freegamehosting.nl/advertisement\.js -# @@||freebitcoin.wmat.pl^*/advertisement.js (easylist.txt: 49821) -.freebitcoin.wmat.pl/.*/advertisement\.js -# @@||freebitco.in^$script (easylist.txt: 49820) -.freebitco.in -# @@||free.smsmarkaz.urdupoint.com^$elemhide (easylist.txt: 49818) -.free.smsmarkaz.urdupoint.com -# @@||free-bitcoin-faucet.eu^$elemhide (easylist.txt: 49817) -.free-bitcoin-faucet.eu -# @@||fm.tuba.pl/tuba3/_js/advert.js (easylist.txt: 49812) -.fm.tuba.pl/tuba3/_js/advert\.js -# @@||flvto.biz^$elemhide (easylist.txt: 49811) -.flvto.biz -# @@||fitshr.net^$script,stylesheet (easylist.txt: 49809) -.fitshr.net -# @@||firsttube.co^$elemhide (easylist.txt: 49808) -.firsttube.co -# @@||firstrow*.eu^$script (easylist.txt: 49807) -.firstrow*./.*\.eu[^\w%.-] -.firstrow*.eu -# @@||firstonetv.com/ads_advertisement.js (easylist.txt: 49805) -.firstonetv.com/ads_advertisement\.js -# @@||filmweb.pl/adbanner/$script (easylist.txt: 49804) -.filmweb.pl/adbanner/ -# @@||filmux.org^$elemhide (easylist.txt: 49803) -.filmux.org -# @@||filmux.net/ads/banner.jpg? (easylist.txt: 49802) -.filmux.net/ads/banner\.jpg\? -# @@||filmovizija.in^$script,~third-party,xmlhttprequest (easylist.txt: 49801) -.filmovizija.in -# @@||filmovisaprevodom.net/advertisement.js (easylist.txt: 49800) -.filmovisaprevodom.net/advertisement\.js -# @@||filerev.cc^$elemhide (easylist.txt: 49798) -.filerev.cc -# @@||fileice.net/js/advertisement.js (easylist.txt: 49797) -.fileice.net/js/advertisement\.js -# @@||filecom.net/advertisement.js (easylist.txt: 49796) -.filecom.net/advertisement\.js -# @@||fhsload.hopto.org^$script,~third-party (easylist.txt: 49795) -.fhsload.hopto.org -# @@||fhscheck.zapto.org^$script,~third-party (easylist.txt: 49794) -.fhscheck.zapto.org -# @@||ffiles.com/images/mmfiles_ (easylist.txt: 49793) -.ffiles.com/images/mmfiles_ -# @@||fcportables.com^$elemhide (easylist.txt: 49792) -.fcportables.com -# @@||fastcompany.com/js/advertisement.js (easylist.txt: 49790) -.fastcompany.com/js/advertisement\.js -# @@||fastcolabs.com/js/advertisement.js (easylist.txt: 49789) -.fastcolabs.com/js/advertisement\.js -# @@||fastcoexist.com/js/advertisement.js (easylist.txt: 49788) -.fastcoexist.com/js/advertisement\.js -# @@||fastcodesign.com/js/advertisement.js (easylist.txt: 49787) -.fastcodesign.com/js/advertisement\.js -# @@||fastcocreate.com/js/advertisement.js (easylist.txt: 49786) -.fastcocreate.com/js/advertisement\.js -# @@||ezcast.tv/static/scripts/adscript.js (easylist.txt: 49784) -.ezcast.tv/static/scripts/adscript\.js -# @@||exsite.pl^*/advert.js (easylist.txt: 49783) -.exsite.pl/.*/advert\.js -# @@||exrapidleech.info^$elemhide,script (easylist.txt: 49782) -.exrapidleech.info -# @@||exrapidleech.info/templates/$image (easylist.txt: 49781) -.exrapidleech.info/templates/ -# @@||exoclick.com/wp-content/$image,third-party (easylist.txt: 49778) -.exoclick.com/wp-content/ -# @@||exashare.com/ads.html$subdocument (easylist.txt: 49777) -.exashare.com/ads\.html -# @@||eventhubs.com^*.$script (easylist.txt: 49776) -.eventhubs.com/.*\. -# @@||euroman.dk^$elemhide (easylist.txt: 49775) -.euroman.dk -# @@||eu5.org^*/advert.js (easylist.txt: 49774) -.eu5.org/.*/advert\.js -# @@||eskago.pl/html/js/advertisement.js (easylist.txt: 49773) -.eskago.pl/html/js/advertisement\.js -# @@||eskago.pl/html/js/adv.bbelements.js (easylist.txt: 49772) -.eskago.pl/html/js/adv\.bbelements\.js -# @@||eskago.pl/html/js/ads-banner.js (easylist.txt: 49771) -.eskago.pl/html/js/ads-banner\.js -# @@||eska.pl^*bbelements.js (easylist.txt: 49770) -.eska.pl/.*bbelements\.js -# @@||eosads.com/adver$script (easylist.txt: 49765) -.eosads.com/adver -# @@||elrellano.com/ad/ad.js (easylist.txt: 49763) -.elrellano.com/ad/ad\.js -# @@||elektrotanya.com/ads/$script,~third-party (easylist.txt: 49762) -.elektrotanya.com/ads/ -# @@||eclypsia.com^$script,~third-party (easylist.txt: 49759) -.eclypsia.com -# @@||ebkimg.com/banners/ (easylist.txt: 49758) -.ebkimg.com/banners/ -# @@||e24.no^$elemhide (easylist.txt: 49757) -.e24.no -# @@||dx-tv.com^$elemhide (easylist.txt: 49756) -.dx-tv.com -# @@||dvdfullfree.com^$elemhide (easylist.txt: 49755) -.dvdfullfree.com -# @@||dutplanet.net/ajax/reclamecheck.php?$xmlhttprequest (easylist.txt: 49754) -.dutplanet.net/ajax/reclamecheck\.php\? -# @@||drugs.com^$subdocument,~third-party (easylist.txt: 49753) -.drugs.com -# @@||dressuppink.com^*/ads.js (easylist.txt: 49751) -.dressuppink.com/.*/ads\.js -# @@||dressup.com^*/ads.js (easylist.txt: 49749) -.dressup.com/.*/ads\.js -# @@||dragoart.com^$elemhide (easylist.txt: 49748) -.dragoart.com -# @@||doodle.com/builtstatic/*/doodle/js/$script (easylist.txt: 49742) -.doodle.com/builtstatic/.*/doodle/js/ -# @@||dontdrinkandroot.net/js/adframe.js (easylist.txt: 49741) -.dontdrinkandroot.net/js/adframe\.js -# @@||domain.com/ads.html (easylist.txt: 49740) -.domain.com/ads\.html -# @@||dogefaucet.com^*/advertisement.js (easylist.txt: 49738) -.dogefaucet.com/.*/advertisement\.js -# @@||doge-faucet.tk/advertisement.js (easylist.txt: 49736) -.doge-faucet.tk/advertisement\.js -# @@||docpaste.com^$elemhide (easylist.txt: 49735) -.docpaste.com -# @@||dksoftwares4u.blogspot.co.uk^$elemhide (easylist.txt: 49732) -.dksoftwares4u.blogspot.co.uk -# @@||dizi-mag.com/ads/$subdocument (easylist.txt: 49730) -.dizi-mag.com/ads/ -# @@||dinozap.tv/adimages/ (easylist.txt: 49729) -.dinozap.tv/adimages/ -# @@||destinypublicevents.com/src/advertisement.js (easylist.txt: 49726) -.destinypublicevents.com/src/advertisement\.js -# @@||destinationamerica.com^$elemhide (easylist.txt: 49725) -.destinationamerica.com -# @@||desionlinetheater.com^$elemhide (easylist.txt: 49724) -.desionlinetheater.com -# @@||decomaniacos.es^*/advertisement.js (easylist.txt: 49720) -.decomaniacos.es/.*/advertisement\.js -# @@||debridx.com^$elemhide (easylist.txt: 49719) -.debridx.com -# @@||debridnet.com^$elemhide (easylist.txt: 49718) -.debridnet.com -# @@||debridit.com^$elemhide (easylist.txt: 49717) -.debridit.com -# @@||debrastagi.com^$elemhide (easylist.txt: 49716) -.debrastagi.com -# @@||dayt.se^$elemhide (easylist.txt: 49714) -.dayt.se -# @@||danydanielrt.com^$elemhide (easylist.txt: 49712) -.danydanielrt.com -# @@||d2anfhdgjxf8s1.cloudfront.net/ajs.php?adserver=$script (easylist.txt: 49709) -.d2anfhdgjxf8s1.cloudfront.net/ajs\.php\?adserver= -# @@||cyberdevilz.net^$elemhide (easylist.txt: 49708) -.cyberdevilz.net -# @@||cricket-365.tv^$elemhide (easylist.txt: 49706) -.cricket-365.tv -# @@||crazygallery.info/ads/$script (easylist.txt: 49705) -.crazygallery.info/ads/ -# @@||corepacks.com^$elemhide (easylist.txt: 49697) -.corepacks.com -# @@||coolgames.com^*/ads.js (easylist.txt: 49695) -.coolgames.com/.*/ads\.js -# @@||cookinggames.com^*/ads.js (easylist.txt: 49694) -.cookinggames.com/.*/ads\.js -# @@||computerworld.com/www/js/ads/gpt_includes.js (easylist.txt: 49692) -.computerworld.com/www/js/ads/gpt_includes\.js -# @@||compartiendofull.org^$elemhide (easylist.txt: 49691) -.compartiendofull.org -# @@||coinurl.com/get.php?id=18045 (easylist.txt: 49689) -.coinurl.com/get\.php\?id=18045 -# @@||coinracket.com^$elemhide (easylist.txt: 49688) -.coinracket.com -# @@||coincheckin.com/js/adframe.js (easylist.txt: 49687) -.coincheckin.com/js/adframe\.js -# @@||codingcrazy.com/demo/adframe.js (easylist.txt: 49686) -.codingcrazy.com/demo/adframe\.js -# @@||clubedohardware.com.br^$elemhide (easylist.txt: 49685) -.clubedohardware.com.br -# @@||cloudvidz.net^$elemhide (easylist.txt: 49684) -.cloudvidz.net -# @@||cloudtime.to/banner.php?$script (easylist.txt: 49683) -.cloudtime.to/banner\.php\? -# @@||cleodesktop.com^$elemhide (easylist.txt: 49678) -.cleodesktop.com -# @@||cityam.com^$generichide (easylist.txt: 49677) -.cityam.com -# @@||cinestrenostv.tv/reproductores/adblock.js (easylist.txt: 49676) -.cinestrenostv.tv/reproductores/adblock\.js -# @@||cinema2satu.net^$elemhide (easylist.txt: 49675) -.cinema2satu.net -# @@||chrissmoove.com^$elemhide (easylist.txt: 49672) -.chrissmoove.com -# @@||channel4.com/p/c4_live/VPAIDAdRenderer.swf$object-subrequest (easylist.txt: 49668) -.channel4.com/p/c4_live/VPAIDAdRenderer\.swf -# @@||channel4.com/p/c4_live/Video2AdRenderer.swf$object-subrequest (easylist.txt: 49667) -.channel4.com/p/c4_live/Video2AdRenderer\.swf -# @@||channel4.com/p/c4_live/UberlayAdRenderer.swf$object-subrequest (easylist.txt: 49666) -.channel4.com/p/c4_live/UberlayAdRenderer\.swf -# @@||channel4.com/p/c4_live/PauseAdExtension.swf$object-subrequest (easylist.txt: 49665) -.channel4.com/p/c4_live/PauseAdExtension\.swf -# @@||channel4.com/p/c4_live/ExternalHTMLAdRenderer.swf$object-subrequest (easylist.txt: 49664) -.channel4.com/p/c4_live/ExternalHTMLAdRenderer\.swf -# @@||channel4.com/ad/l/1?|$object-subrequest (easylist.txt: 49663) -.channel4.com/ad/l/1\?$ -# @@||celogeek.com/stylesheets/blogads.css (easylist.txt: 49660) -.celogeek.com/stylesheets/blogads\.css -# @@||cdnco.us^$script (easylist.txt: 49659) -.cdnco.us -# @@||cdn.eventosppv.me^$elemhide (easylist.txt: 49657) -.cdn.eventosppv.me -# @@||cdn-seekingalpha.com^*/ads.js (easylist.txt: 49655) -.cdn-seekingalpha.com/.*/ads\.js -# @@||cbs.com^$elemhide (easylist.txt: 49653) -.cbs.com -# @@||catchvideo.net/adframe.js (easylist.txt: 49652) -.catchvideo.net/adframe\.js -# @@||casadossegredos.tv/ads/ads_$subdocument (easylist.txt: 49650) -.casadossegredos.tv/ads/ads_ -# @@||captchme.net/js/advertisement.js (easylist.txt: 49649) -.captchme.net/js/advertisement\.js -# @@||captchme.net/js/advertisement-min.js (easylist.txt: 49648) -.captchme.net/js/advertisement-min\.js -# @@||calcularindemnizacion.es^$elemhide (easylist.txt: 49646) -.calcularindemnizacion.es -# @@||bywarrior.com^$elemhide (easylist.txt: 49645) -.bywarrior.com -# @@||bulletproofserving.com/scripts/ads.js (easylist.txt: 49643) -.bulletproofserving.com/scripts/ads\.js -# @@||budget101.com^$elemhide (easylist.txt: 49642) -.budget101.com -# @@||btspread.com/eroex.js (easylist.txt: 49641) -.btspread.com/eroex\.js -# @@||btava.com^$script (easylist.txt: 49640) -.btava.com -# @@||boxxod.net/advertisement.js (easylist.txt: 49638) -.boxxod.net/advertisement\.js -# @@||boincstats.com/js/adframe.js (easylist.txt: 49637) -.boincstats.com/js/adframe\.js -# @@||bitplay.ga^$elemhide (easylist.txt: 49634) -.bitplay.ga -# @@||bitcoiner.net/advertisement.js (easylist.txt: 49633) -.bitcoiner.net/advertisement\.js -# @@||bitcoin-free-faucet.eu^$elemhide (easylist.txt: 49632) -.bitcoin-free-faucet.eu -# @@||bitcoin-faucet.eu^$elemhide (easylist.txt: 49631) -.bitcoin-faucet.eu -# @@||bitcoin-cloud.eu^$elemhide (easylist.txt: 49630) -.bitcoin-cloud.eu -# @@||bitcoin-best-faucet.eu^$elemhide (easylist.txt: 49629) -.bitcoin-best-faucet.eu -# @@||bitcofree.com^$elemhide (easylist.txt: 49628) -.bitcofree.com -# @@||binbox.io^$elemhide (easylist.txt: 49627) -.binbox.io -# @@||binbox.io/adblock.js (easylist.txt: 49626) -.binbox.io/adblock\.js -# @@||binbox.io/ad/$subdocument (easylist.txt: 49625) -.binbox.io/ad/ -# @@||bilzonen.dk/scripts/ads.js (easylist.txt: 49624) -.bilzonen.dk/scripts/ads\.js -# @@||bicimotosargentina.com^$elemhide (easylist.txt: 49623) -.bicimotosargentina.com -# @@||bezaldfamily.net^$elemhide (easylist.txt: 49622) -.bezaldfamily.net -# @@||better-explorer.com^$elemhide (easylist.txt: 49621) -.better-explorer.com -# @@||bestream.tv/advert*.js (easylist.txt: 49620) -.bestream.tv/advert.*\.js -# @@||bestofmedia.com^*/advertisement.js (easylist.txt: 49619) -.bestofmedia.com/.*/advertisement\.js -# @@||best-free-faucet.eu^$elemhide (easylist.txt: 49618) -.best-free-faucet.eu -# @@||best-bitcoin-faucet.eu^$elemhide (easylist.txt: 49617) -.best-bitcoin-faucet.eu -# @@||beemp3s.org/adreactor/$script (easylist.txt: 49615) -.beemp3s.org/adreactor/ -# @@||beelink.in/advertisement.js (easylist.txt: 49614) -.beelink.in/advertisement\.js -# @@||bdrip.ws^$elemhide (easylist.txt: 49613) -.bdrip.ws -# @@||bdrip.ws/web_data/*/ad$image (easylist.txt: 49612) -.bdrip.ws/web_data/.*/ad -# @@||backin.net^$elemhide (easylist.txt: 49610) -.backin.net -# @@||backin.net/advertisement.js (easylist.txt: 49609) -.backin.net/advertisement\.js -# @@||avforums.com/*ad$script (easylist.txt: 49607) -.avforums.com/.*ad -# @@||autolikesgroups.com^$elemhide (easylist.txt: 49606) -.autolikesgroups.com -# @@||autolikergroup.com/advertisement.js (easylist.txt: 49605) -.autolikergroup.com/advertisement\.js -# @@||autogespot.*/JavaScript/ads.js? (easylist.txt: 49604) -.autogespot.*./(.*/)?JavaScript/ads\.js\? -# @@||auroravid.to/banner.php (easylist.txt: 49603) -.auroravid.to/banner\.php -# @@||auditude.com/player/js/lib/aud.html5player.js (easylist.txt: 49602) -.auditude.com/player/js/lib/aud\.html5player\.js -# @@||atresplayer.com/static/js/advertisement.js (easylist.txt: 49600) -.atresplayer.com/static/js/advertisement\.js -# @@||atresplayer.com/adsxml/$object-subrequest (easylist.txt: 49599) -.atresplayer.com/adsxml/ -# @@||atresmedia.com/adsxml/$object-subrequest (easylist.txt: 49598) -.atresmedia.com/adsxml/ -# @@||aseanlegacy.net^$elemhide (easylist.txt: 49597) -.aseanlegacy.net -# @@||aseanlegacy.net/images/ads.png (easylist.txt: 49596) -.aseanlegacy.net/images/ads\.png -# @@||aseanlegacy.net/assets/advertisement.js (easylist.txt: 49595) -.aseanlegacy.net/assets/advertisement\.js -# @@||aseanlegacy.net/ad*.js (easylist.txt: 49594) -.aseanlegacy.net/ad.*\.js -# @@||arto.com/includes/js/adtech.de/script.axd/adframe.js? (easylist.txt: 49593) -.arto.com/includes/js/adtech\.de/script\.axd/adframe\.js\? -# @@||ar51.eu/ad/advertisement.js (easylist.txt: 49592) -.ar51.eu/ad/advertisement\.js -# @@||appfull.net^$elemhide (easylist.txt: 49591) -.appfull.net -# @@||appdn.net^$elemhide (easylist.txt: 49590) -.appdn.net -# @@||apkone.net^$elemhide (easylist.txt: 49589) -.apkone.net -# @@||apkmirror.com/wp-content/themes/APKMirror/js/ads.js (easylist.txt: 49588) -.apkmirror.com/wp-content/themes/APKMirror/js/ads\.js -# @@||anti-adblock-scripts.googlecode.com/files/adscript.js (easylist.txt: 49587) -.anti-adblock-scripts.googlecode.com/files/adscript\.js -# @@||antena3.com/adsxml/$object-subrequest (easylist.txt: 49586) -.antena3.com/adsxml/ -# @@||anonytext.tk^$elemhide (easylist.txt: 49585) -.anonytext.tk -# @@||anizm.com^$elemhide (easylist.txt: 49584) -.anizm.com -# @@||anisearch.com^*/ads.js? (easylist.txt: 49583) -.anisearch.com/.*/ads\.js\? -# @@||animesubita.info^$elemhide (easylist.txt: 49582) -.animesubita.info -# @@||animesproject.com^*/player.php$elemhide (easylist.txt: 49581) -.animesproject.com/.*/player\.php -# @@||animesproject.com^*/fuckadblock.js (easylist.txt: 49580) -.animesproject.com/.*/fuckadblock\.js -# @@||animefushigi.com^$elemhide (easylist.txt: 49579) -.animefushigi.com -# @@||animecrave.com/_content/$script (easylist.txt: 49578) -.animecrave.com/_content/ -# @@||anime2enjoy.com^$elemhide (easylist.txt: 49577) -.anime2enjoy.com -# @@||animalplanet.com^$elemhide (easylist.txt: 49576) -.animalplanet.com -# @@||android-zone.org^$elemhide (easylist.txt: 49575) -.android-zone.org -# @@||ancensored.com/sites/all/modules/player/images/ad.jpg (easylist.txt: 49574) -.ancensored.com/sites/all/modules/player/images/ad\.jpg -# @@||amk.to/js/adcode.js? (easylist.txt: 49573) -.amk.to/js/adcode\.js\? -# @@||amigosdelamili.com^$elemhide (easylist.txt: 49572) -.amigosdelamili.com -# @@||amazonaws.com/ssbss.ss/$script (easylist.txt: 49570) -.amazonaws.com/ssbss\.ss/ -# @@||amazonaws.com/atzuma/ajs.php?adserver=$script (easylist.txt: 49569) -.amazonaws.com/atzuma/ajs\.php\?adserver= -# @@||altoque.com^$elemhide (easylist.txt: 49567) -.altoque.com -# @@||allkpop.com/ads.js (easylist.txt: 49566) -.allkpop.com/ads\.js -# @@||alcohoin-faucet.tk/advertisement.js (easylist.txt: 49563) -.alcohoin-faucet.tk/advertisement\.js -# @@||ahctv.com^$elemhide (easylist.txt: 49558) -.ahctv.com -# @@||agar.io^*/advertisement.js (easylist.txt: 49557) -.agar.io/.*/advertisement\.js -# @@||afterburnerleech.com/js/show_ads.js (easylist.txt: 49556) -.afterburnerleech.com/js/show_ads\.js -# @@||afreesms.com^$elemhide (easylist.txt: 49554) -.afreesms.com -# @@||afdah.tv^$script (easylist.txt: 49553) -.afdah.tv -# @@||afdah.com^$script (easylist.txt: 49552) -.afdah.com -# @@||afdah.co^$script (easylist.txt: 49551) -.afdah.co -# @@||adserver.liverc.com/getBannerVerify.js (easylist.txt: 49541) -.adserver.liverc.com/getBannerVerify\.js -# @@||ads.nipr.ac.jp^$~third-party (easylist.txt: 49530) -.ads.nipr.ac.jp -# @@||ads.clubedohardware.com.br/www/delivery/$script (easylist.txt: 49525) -.ads.clubedohardware.com.br/www/delivery/ -# @@||adf.ly^$generichide (easylist.txt: 49507) -.adf.ly -# @@||adexprt.com/cdn3/*&m=magnet$subdocument (easylist.txt: 49506) -.adexprt.com/cdn3/.*&m=magnet -# @@||adconscious.com/js/fuckadblock.js (easylist.txt: 49505) -.adconscious.com/js/fuckadblock\.js -# @@||ad.leadbolt.net/show_cu.js (easylist.txt: 49498) -.ad.leadbolt.net/show_cu\.js -# @@||ad.filmweb.pl^$script (easylist.txt: 49497) -.ad.filmweb.pl -# @@||9xbuddy.com/js/ads.js (easylist.txt: 49493) -.9xbuddy.com/js/ads\.js -# @@||9tutorials.com^$elemhide (easylist.txt: 49492) -.9tutorials.com -# @@||95.211.184.210/js/advertisement.js (easylist.txt: 49488) -.95.211.184.210/js/advertisement\.js -# @@||4sysops.com^*/adframe.js (easylist.txt: 49486) -.4sysops.com/.*/adframe\.js -# @@||4shared.com^$script,xmlhttprequest (easylist.txt: 49485) -.4shared.com -# @@||4fuckr.com^*/adframe.js (easylist.txt: 49484) -.4fuckr.com/.*/adframe\.js -# @@||360haven.com^$elemhide (easylist.txt: 49483) -.360haven.com -# @@||360haven.com/adframe.js (easylist.txt: 49482) -.360haven.com/adframe\.js -# @@||300mblink.com^$elemhide (easylist.txt: 49481) -.300mblink.com -# @@/wp-prevent-adblocker/*$script,~third-party (easylist.txt: 49453) -/(.*/)?wp-prevent-adblocker/.* -# @@/wp-content/plugins/wordpress-adblock-blocker/adframe.js$~third-party (easylist.txt: 49452) -/(.*/)?wp-content/plugins/wordpress-adblock-blocker/adframe\.js -# @@/wp-content/plugins/simple-adblock-notice/*$script,~third-party (easylist.txt: 49451) -/(.*/)?wp-content/plugins/simple-adblock-notice/.* -# @@/wp-content/plugins/blockalyzer-adblock-counter/*$image,script,~third-party (easylist.txt: 49450) -/(.*/)?wp-content/plugins/blockalyzer-adblock-counter/.* -# @@/wp-content/plugins/anti-block/js/advertisement.js$~third-party (easylist.txt: 49449) -/(.*/)?wp-content/plugins/anti-block/js/advertisement\.js -# @@/wp-content/plugins/adblock-notify-by-bweb/js/advertisement.js$~third-party (easylist.txt: 49448) -/(.*/)?wp-content/plugins/adblock-notify-by-bweb/js/advertisement\.js -# @@/blockalyzer-adblock-counter/js/advertisement.js$script,~third-party (easylist.txt: 49440) -/(.*/)?blockalyzer-adblock-counter/js/advertisement\.js -# @@/adBlockDetector/*$~third-party (easylist.txt: 49429) -/(.*/)?adBlockDetector/.* -# @@||zillow.com/ads/FlexAd.htm?did=$subdocument (easylist.txt: 49393) -.zillow.com/ads/FlexAd\.htm\?did= -# @@||ziehl-abegg.com/images/img_adverts/$~third-party (easylist.txt: 49392) -.ziehl-abegg.com/images/img_adverts/ -# @@||zeenews.india.com/ads/jw/player.swf$object (easylist.txt: 49391) -.zeenews.india.com/ads/jw/player\.swf -# @@||zedo.com/crossdomain.xml$object-subrequest (easylist.txt: 49388) -.zedo.com/crossdomain\.xml -# @@||zattoo.com/advertising/channelswitch/$subdocument (easylist.txt: 49386) -.zattoo.com/advertising/channelswitch/ -# @@||zattoo.com/?advideo/*;vidAS=PRE_ROLL;$object-subrequest (easylist.txt: 49385) -.zattoo.com/\?advideo/.*;vidAS=PRE_ROLL; -# @@||zap2it.com/ads/newsletter/$image,~third-party (easylist.txt: 49384) -.zap2it.com/ads/newsletter/ -# @@||yumenetworks.com/crossdomain.xml$object-subrequest (easylist.txt: 49382) -.yumenetworks.com/crossdomain\.xml -# @@||youtube.com^*_adsense_$xmlhttprequest (easylist.txt: 49375) -.youtube.com/.*_adsense_ -# @@||youtube.com/yt/css/www-advertise.css (easylist.txt: 49374) -.youtube.com/yt/css/www-advertise\.css -# @@||youtube.com/yt/advertise/medias/images/$image (easylist.txt: 49373) -.youtube.com/yt/advertise/medias/images/ -# @@||yokosonews.com/files/cache/ (easylist.txt: 49371) -.yokosonews.com/files/cache/ -# @@||ykhandler.com/adframe.js (easylist.txt: 49370) -.ykhandler.com/adframe\.js -# @@||yimg.com^*/java/promotions/js/ad_eo_1.1.js (easylist.txt: 49369) -.yimg.com/.*/java/promotions/js/ad_eo_1\.1\.js -# @@||yimg.com^*&yat/js/ads_ (easylist.txt: 49366) -.yimg.com/.*&yat/js/ads_ -# @@||yimg.com/zz/combo?*&*.js (easylist.txt: 49365) -.yimg.com/zz/combo\?.*&.*\.js -# @@||yellupload.com/yell/videoads/yellvideoplayer.swf? (easylist.txt: 49361) -.yellupload.com/yell/videoads/yellvideoplayer\.swf\? -# @@||yellupload.com/yell/videoads/*.flv| (easylist.txt: 49360) -.yellupload.com/yell/videoads/.*\.flv$ -# @@||yellowpages.com.mt/Images/Design/Buttons/advert.png (easylist.txt: 49359) -.yellowpages.com.mt/Images/Design/Buttons/advert\.png -# @@||yahoo.net/1/adnetwork/$object-subrequest (easylist.txt: 49356) -.yahoo.net/1/adnetwork/ -# @@||yahoo.com/combo?$stylesheet (easylist.txt: 49355) -.yahoo.com/combo\? -# @@||xbox.com/assets/ad/$image,~third-party (easylist.txt: 49352) -.xbox.com/assets/ad/ -# @@||www.networkadvertising.org/choices/|$document (easylist.txt: 49350) -.www.networkadvertising.org/choices/$ -# @@||www.google.com/ads/preferences/$image,script,subdocument (easylist.txt: 49349) -.www.google.com/ads/preferences/ -# @@||www.google.*/settings/u/0/ads/preferences/$~third-party,xmlhttprequest (easylist.txt: 49348) -.www.google.*./(.*/)?settings/u/0/ads/preferences/ -# @@||www.google.*/search?$subdocument (easylist.txt: 49347) -.www.google.*./(.*/)?search\? -# @@||www.google.*/aclk?*&adurl=$subdocument,~third-party (easylist.txt: 49346) -.www.google.*./(.*/)?aclk\?.*&adurl= -# @@||www.facebook.com/ad.*^ajaxpipe^$subdocument,~third-party (easylist.txt: 49345) -.www.facebook.com/ad\..*[^\w%.-]ajaxpipe[^\w%.-] -# @@||wrapper.teamxbox.com/a?size=headermainad (easylist.txt: 49343) -.wrapper.teamxbox.com/a\?size=headermainad -# @@||wpthemedetector.com/ad/$~third-party (easylist.txt: 49342) -.wpthemedetector.com/ad/ -# @@||wp.com/_static/*/criteo.js (easylist.txt: 49338) -.wp.com/_static/.*/criteo\.js -# @@||wortech.ac.uk/publishingimages/adverts/ (easylist.txt: 49337) -.wortech.ac.uk/publishingimages/adverts/ -# @@||worldstarhiphop.com^*/dj2.swf (easylist.txt: 49336) -.worldstarhiphop.com/.*/dj2\.swf -# @@||wisegeek.com/res/contentad/ (easylist.txt: 49335) -.wisegeek.com/res/contentad/ -# @@||wirefly.com/_images/ads/ (easylist.txt: 49334) -.wirefly.com/_images/ads/ -# @@||wired.com^*/cn-fe-ads/cn.dart.js (easylist.txt: 49333) -.wired.com/.*/cn-fe-ads/cn\.dart\.js -# @@||winnipegsun.com/assets/js/dfp.js? (easylist.txt: 49332) -.winnipegsun.com/assets/js/dfp\.js\? -# @@||williamsauction.com/Resources/images/ads/$~third-party (easylist.txt: 49331) -.williamsauction.com/Resources/images/ads/ -# @@||wikia.nocookie.net^*/images/$image (easylist.txt: 49330) -.wikia.nocookie.net/.*/images/ -# @@||wikia.com/__spotlights/spc.php?$xmlhttprequest (easylist.txt: 49329) -.wikia.com/__spotlights/spc\.php\? -# @@||widgetserver.com/syndication/get_widget.html?*&widget.adplacement=$subdocument (easylist.txt: 49328) -.widgetserver.com/syndication/get_widget\.html\?.*&widget\.adplacement= -# @@||widgets.cbslocal.com/player/embed?affiliate=$subdocument (easylist.txt: 49326) -.widgets.cbslocal.com/player/embed\?affiliate= -# @@||widget.slide.com^*/ads/*/preroll.swf (easylist.txt: 49325) -.widget.slide.com/.*/ads/.*/preroll\.swf -# @@||widget.breakingburner.com/ad/$subdocument (easylist.txt: 49324) -.widget.breakingburner.com/ad/ -# @@||whittakersworldwide.com/site-media/advertisements/ (easylist.txt: 49322) -.whittakersworldwide.com/site-media/advertisements/ -# @@||whitepages.com^*/google_adsense.js? (easylist.txt: 49321) -.whitepages.com/.*/google_adsense\.js\? -# @@||wellsfargo.com/img/ads/$~third-party (easylist.txt: 49320) -.wellsfargo.com/img/ads/ -# @@||wearetennis.com/pages/home/img/ad-$image (easylist.txt: 49317) -.wearetennis.com/pages/home/img/ad- -# @@||washingtonpost.com^*=/ad/audsci.js (easylist.txt: 49316) -.washingtonpost.com/.*=/ad/audsci\.js -# @@||washingtonpost.com/wpost2/css/combo?*/ads.css (easylist.txt: 49315) -.washingtonpost.com/wpost2/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wpost/css/combo?*/ads.css (easylist.txt: 49314) -.washingtonpost.com/wpost/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wp-srv/ad/wpni_generic_ad.js (easylist.txt: 49313) -.washingtonpost.com/wp-srv/ad/wpni_generic_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp_config.js (easylist.txt: 49312) -.washingtonpost.com/wp-srv/ad/wp_config\.js -# @@||washingtonpost.com/wp-srv/ad/wp_ad.js (easylist.txt: 49311) -.washingtonpost.com/wp-srv/ad/wp_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp.js (easylist.txt: 49310) -.washingtonpost.com/wp-srv/ad/wp\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks_config.js (easylist.txt: 49309) -.washingtonpost.com/wp-srv/ad/textlinks_config\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks.js (easylist.txt: 49308) -.washingtonpost.com/wp-srv/ad/textlinks\.js -# @@||washingtonpost.com/wp-srv/ad/textlink_driver.js (easylist.txt: 49307) -.washingtonpost.com/wp-srv/ad/textlink_driver\.js -# @@||washingtonpost.com/wp-srv/ad/generic_ad.js (easylist.txt: 49306) -.washingtonpost.com/wp-srv/ad/generic_ad\.js -# @@||washingtonpost.com/wp-adv/advertisers/russianow/ (easylist.txt: 49305) -.washingtonpost.com/wp-adv/advertisers/russianow/ -# @@||wappalyzer.com/sites/default/files/icons/$image (easylist.txt: 49304) -.wappalyzer.com/sites/default/files/icons/ -# @@||walmartmoneycard.com^*/shared/ad_rotater.swf (easylist.txt: 49303) -.walmartmoneycard.com/.*/shared/ad_rotater\.swf -# @@||wallpapersmania.com/ad/$image,~third-party (easylist.txt: 49302) -.wallpapersmania.com/ad/ -# @@||wahooads.com/Ads.nsf/$~third-party (easylist.txt: 49301) -.wahooads.com/Ads\.nsf/ -# @@||wahoha.com^$~third-party (easylist.txt: 49300) -.wahoha.com -# @@||vtstage.cbsinteractive.com/plugins/*_adplugin.swf (easylist.txt: 49297) -.vtstage.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vswebapp.com^$~third-party (easylist.txt: 49296) -.vswebapp.com -# @@||vombasavers.com^*.swf?clickTAG=$object,~third-party (easylist.txt: 49295) -.vombasavers.com/.*\.swf\?clickTAG= -# @@||vmagazine.com/web/css/ads.css (easylist.txt: 49294) -.vmagazine.com/web/css/ads\.css -# @@||vk.com/ads?act=$~third-party (easylist.txt: 49292) -.vk.com/ads\?act= -# @@||vizanime.com/ad/get_ads? (easylist.txt: 49291) -.vizanime.com/ad/get_ads\? -# @@||vitalitymall.co.za/images/adrotator/ (easylist.txt: 49290) -.vitalitymall.co.za/images/adrotator/ -# @@||vistek.ca/ads/ (easylist.txt: 49289) -.vistek.ca/ads/ -# @@||virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery.internads.js (easylist.txt: 49288) -.virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery\.internads\.js -# @@||vindicoasset.edgesuite.net/repository/campaigncreative/*/instreamad/$object-subrequest (easylist.txt: 49287) -.vindicoasset.edgesuite.net/repository/campaigncreative/.*/instreamad/ -# @@||villermen.com/minecraft/banner/banner.php$image (easylist.txt: 49286) -.villermen.com/minecraft/banner/banner\.php -# @@||vidtech.cbsinteractive.com/plugins/*_adplugin.swf (easylist.txt: 49285) -.vidtech.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vidspot.net/tmp/status.html?*upload=file$subdocument (easylist.txt: 49284) -.vidspot.net/tmp/status\.html\?.*upload=file -# @@||vidspot.net/cgi-bin/upload.cgi?upload_id=*&X-Progress-ID=*&js_on=*&utype=*&upload_type=$subdocument (easylist.txt: 49283) -.vidspot.net/cgi-bin/upload\.cgi\?upload_id=.*&X-Progress-ID=.*&js_on=.*&utype=.*&upload_type= -# @@||vidspot.net/builtin-$subdocument (easylist.txt: 49282) -.vidspot.net/builtin- -# @@||vidspot.net/blank.html|$subdocument (easylist.txt: 49281) -.vidspot.net/blank\.html$ -# @@||vidible.tv/stage/$media,object,other (easylist.txt: 49280) -.vidible.tv/stage/ -# @@||vidible.tv/prod/$media,object,other (easylist.txt: 49278) -.vidible.tv/prod/ -# @@||videosxml.mobileads.indiatimes.com^$object-subrequest (easylist.txt: 49277) -.videosxml.mobileads.indiatimes.com -# @@||video.nbcuni.com^*/inext_ad_engine/ad_engine_extension.swf (easylist.txt: 49273) -.video.nbcuni.com/.*/inext_ad_engine/ad_engine_extension\.swf -# @@||video.nbcuni.com^*/ad_engine_extension_nbc.swf (easylist.txt: 49272) -.video.nbcuni.com/.*/ad_engine_extension_nbc\.swf -# @@||video.economist.com/adfinder.jsp? (easylist.txt: 49271) -.video.economist.com/adfinder\.jsp\? -# @@||vidcoin.com/adserver/$subdocument,xmlhttprequest (easylist.txt: 49270) -.vidcoin.com/adserver/ -# @@||viamichelin.*/static/advert/sponsoring/itinerarypage/itinerarypage.js (easylist.txt: 49269) -.viamichelin.*./(.*/)?static/advert/sponsoring/itinerarypage/itinerarypage\.js -# @@||viamichelin.*/static/advert/afsquery/afsquery.js (easylist.txt: 49268) -.viamichelin.*./(.*/)?static/advert/afsquery/afsquery\.js -# @@||viamichelin.*/rentacar.js (easylist.txt: 49267) -.viamichelin.*./(.*/)?rentacar\.js -# @@||veetle.com/images/common/ads/ (easylist.txt: 49264) -.veetle.com/images/common/ads/ -# @@||vanityfair.com/ads/js/cn.dart.bun.min.js (easylist.txt: 49263) -.vanityfair.com/ads/js/cn\.dart\.bun\.min\.js -# @@||vancouversun.com/js/adsync/adsynclibrary.js (easylist.txt: 49262) -.vancouversun.com/js/adsync/adsynclibrary\.js -# @@||valueram.com/banners/ads/ (easylist.txt: 49261) -.valueram.com/banners/ads/ -# @@||vagazette.com/hive/images/adv_ (easylist.txt: 49260) -.vagazette.com/hive/images/adv_ -# @@||vad.go.com/dynamicvideoad?$object-subrequest (easylist.txt: 49259) -.vad.go.com/dynamicvideoad\? -# @@||vacationstarter.com/hive/images/adv_ (easylist.txt: 49258) -.vacationstarter.com/hive/images/adv_ -# @@||v.fwmrm.net/p/espn_live/$object-subrequest (easylist.txt: 49256) -.v.fwmrm.net/p/espn_live/ -# @@||v.fwmrm.net/crossdomain.xml$object-subrequest (easylist.txt: 49255) -.v.fwmrm.net/crossdomain\.xml -# @@||utdallas.edu^*/banner.js (easylist.txt: 49251) -.utdallas.edu/.*/banner\.js -# @@||utdallas.edu/maps/images/img/$image (easylist.txt: 49250) -.utdallas.edu/maps/images/img/ -# @@||utdallas.edu/locator/maps/$image (easylist.txt: 49249) -.utdallas.edu/locator/maps/ -# @@||utarget.co.uk/crossdomain.xml$object-subrequest (easylist.txt: 49248) -.utarget.co.uk/crossdomain\.xml -# @@||usps.com/adserver/ (easylist.txt: 49247) -.usps.com/adserver/ -# @@||usanetwork.com^*/usanetwork_ads.s_code.js? (easylist.txt: 49246) -.usanetwork.com/.*/usanetwork_ads\.s_code\.js\? -# @@||urbanog.com/banners/$image (easylist.txt: 49245) -.urbanog.com/banners/ -# @@||uploaded.net/affiliate/$~third-party,xmlhttprequest (easylist.txt: 49244) -.uploaded.net/affiliate/ -# @@||upload.wikimedia.org/wikipedia/ (easylist.txt: 49243) -.upload.wikimedia.org/wikipedia/ -# @@||upc-cablecom.ch^*.swf?clicktag=http$object (easylist.txt: 49242) -.upc-cablecom.ch/.*\.swf\?clicktag=http -# @@||undsports.com/ads2/$image (easylist.txt: 49241) -.undsports.com/ads2/ -# @@||ultrabrown.com/images/adheader.jpg (easylist.txt: 49240) -.ultrabrown.com/images/adheader\.jpg -# @@||ultimate-guitar.com/js/ug_ads.js (easylist.txt: 49239) -.ultimate-guitar.com/js/ug_ads\.js -# @@||ukbride.co.uk/css/*/adverts.css (easylist.txt: 49238) -.ukbride.co.uk/css/.*/adverts\.css -# @@||uillinois.edu/eas/ (easylist.txt: 49237) -.uillinois.edu/eas/ -# @@||ucaster.eu/static/scripts/adscript.js (easylist.txt: 49236) -.ucaster.eu/static/scripts/adscript\.js -# @@||twogag.com/comics/$image,~third-party (easylist.txt: 49234) -.twogag.com/comics/ -# @@||twitvid.com/mediaplayer_*.swf? (easylist.txt: 49233) -.twitvid.com/mediaplayer_.*\.swf\? -# @@||twinspires.com/php/$subdocument,~third-party (easylist.txt: 49232) -.twinspires.com/php/ -# @@||tvnz.co.nz/*/advertisement.js (easylist.txt: 49231) -.tvnz.co.nz/.*/advertisement\.js -# @@||tvgorge.com^*/adplayer.swf (easylist.txt: 49230) -.tvgorge.com/.*/adplayer\.swf -# @@||tv-kino.net/wp-content/themes/*/advertisement.js (easylist.txt: 49229) -.tv-kino.net/wp-content/themes/.*/advertisement\.js -# @@||tut.by/uppod/frameid406/ads1/ (easylist.txt: 49228) -.tut.by/uppod/frameid406/ads1/ -# @@||tudouui.com/bin/player2/*&adsourceid= (easylist.txt: 49221) -.tudouui.com/bin/player2/.*&adsourceid= -# @@||tubemogul.com/crossdomain.xml$object-subrequest (easylist.txt: 49220) -.tubemogul.com/crossdomain\.xml -# @@||tubemogul.com/bootloader/tubemogulflowplayer.swf$object-subrequest (easylist.txt: 49219) -.tubemogul.com/bootloader/tubemogulflowplayer\.swf -# @@||trutv.com/includes/banners/de/video/*.ad|$object-subrequest (easylist.txt: 49218) -.trutv.com/includes/banners/de/video/.*\.ad$ -# @@||trustedreviews.com^*/adtech.js (easylist.txt: 49217) -.trustedreviews.com/.*/adtech\.js -# @@||trulia.com/modules/ad_agents_$xmlhttprequest (easylist.txt: 49216) -.trulia.com/modules/ad_agents_ -# @@||trifort.org/ads/$~third-party (easylist.txt: 49215) -.trifort.org/ads/ -# @@||trialpay.com/js/advertiser.js (easylist.txt: 49214) -.trialpay.com/js/advertiser\.js -# @@||tremor.nuggad.net/crossdomain.xml$object-subrequest (easylist.txt: 49212) -.tremor.nuggad.net/crossdomain\.xml -# @@||travidia.com/ss-page/ (easylist.txt: 49211) -.travidia.com/ss-page/ -# @@||travidia.com/fsi/page.aspx?$subdocument (easylist.txt: 49210) -.travidia.com/fsi/page\.aspx\? -# @@||traumagame.com/trauma_data/ads/ad2.jpg (easylist.txt: 49206) -.traumagame.com/trauma_data/ads/ad2\.jpg -# @@||translate.google.com/translate/static/*-ads/ (easylist.txt: 49205) -.translate.google.com/translate/static/.*-ads/ -# @@||translate.google.*/translate_*&q=$~third-party,xmlhttprequest (easylist.txt: 49204) -.translate.google.*./(.*/)?translate_.*&q= -# @@||traktorpool.de^*/advert. (easylist.txt: 49203) -.traktorpool.de/.*/advert\. -# @@||traktorpool.de/scripts/advert/ (easylist.txt: 49202) -.traktorpool.de/scripts/advert/ -# @@||tradecarview.com/material/housead/$image (easylist.txt: 49199) -.tradecarview.com/material/housead/ -# @@||trade-a-plane.com/AdBox/js/jquery.TAP_AdBox.js (easylist.txt: 49198) -.trade-a-plane.com/AdBox/js/jquery\.TAP_AdBox\.js -# @@||toshiba.*^banner_id^$subdocument (easylist.txt: 49196) -.toshiba.*./(.*[^\w%.-])?banner_id[^\w%.-] -# @@||torontosun.com/assets/js/dfp.js? (easylist.txt: 49195) -.torontosun.com/assets/js/dfp\.js\? -# @@||topusajobs.com/banners/ (easylist.txt: 49194) -.topusajobs.com/banners/ -# @@||topgear.com^*/ads.min.js (easylist.txt: 49193) -.topgear.com/.*/ads\.min\.js -# @@||toongoggles.com/getads?$xmlhttprequest (easylist.txt: 49192) -.toongoggles.com/getads\? -# @@||toongames.com/advertising/toon-google-preloader.swf$object (easylist.txt: 49191) -.toongames.com/advertising/toon-google-preloader\.swf -# @@||tooltrucks.com/banners/$image,~third-party (easylist.txt: 49190) -.tooltrucks.com/banners/ -# @@||tooltrucks.com/ads/$image,~third-party (easylist.txt: 49189) -.tooltrucks.com/ads/ -# @@||tntexpress.com.au^*/marketing/banners/ (easylist.txt: 49186) -.tntexpress.com.au/.*/marketing/banners/ -# @@||tnol.com/adimages/digitaledition/$object-subrequest (easylist.txt: 49185) -.tnol.com/adimages/digitaledition/ -# @@||tm.tradetracker.net/tag?$script (easylist.txt: 49184) -.tm.tradetracker.net/tag\? -# @@||tkcarsites.com/soba/bannersservice (easylist.txt: 49183) -.tkcarsites.com/soba/bannersservice -# @@||tinysubversions.com/clickbait/adjs.json (easylist.txt: 49182) -.tinysubversions.com/clickbait/adjs\.json -# @@||tinbuadserv.com/v3/serve.php?$script (easylist.txt: 49181) -.tinbuadserv.com/v3/serve\.php\? -# @@||tinbuadserv.com/js/integrate/ads_common.js (easylist.txt: 49180) -.tinbuadserv.com/js/integrate/ads_common\.js -# @@||timesofmalta.com/videoads/*preroll.flv$object-subrequest (easylist.txt: 49179) -.timesofmalta.com/videoads/.*preroll\.flv -# @@||timeout.com/images/ads/weather/ (easylist.txt: 49178) -.timeout.com/images/ads/weather/ -# @@||timeinc.net^*/tii_ads.js (easylist.txt: 49177) -.timeinc.net/.*/tii_ads\.js -# @@||tiads.timeinc.net/ads/tgx.js (easylist.txt: 49173) -.tiads.timeinc.net/ads/tgx\.js -# @@||thunderheadeng.com/wp-content/uploads/*300x250 (easylist.txt: 49172) -.thunderheadeng.com/wp-content/uploads/.*300x250 -# @@||thrifty.co.uk/bannerads/ (easylist.txt: 49170) -.thrifty.co.uk/bannerads/ -# @@||thomsonlocal.com/js/adsense-min.js (easylist.txt: 49169) -.thomsonlocal.com/js/adsense-min\.js -# @@||thomann.de/thumb/*/pics/adv/adv_image_ (easylist.txt: 49168) -.thomann.de/thumb/.*/pics/adv/adv_image_ -# @@||theweathernetwork.com/tpl/web/adtech/$xmlhttprequest (easylist.txt: 49167) -.theweathernetwork.com/tpl/web/adtech/ -# @@||theweathernetwork.com/js/adrefresh.js (easylist.txt: 49166) -.theweathernetwork.com/js/adrefresh\.js -# @@||thetvdb.com/banners/ (easylist.txt: 49165) -.thetvdb.com/banners/ -# @@||theory-test.co.uk/css/ads.css (easylist.txt: 49162) -.theory-test.co.uk/css/ads\.css -# @@||thenewsroom.com^*/advertisement.xml$object-subrequest (easylist.txt: 49161) -.thenewsroom.com/.*/advertisement\.xml -# @@||thenewage.co.za/classifieds/images2/postad.gif (easylist.txt: 49160) -.thenewage.co.za/classifieds/images2/postad\.gif -# @@||theloop.com.au/js/simplejob_ad_content.js? (easylist.txt: 49158) -.theloop.com.au/js/simplejob_ad_content\.js\? -# @@||thekraftgroup.com/crossdomain.xml$object-subrequest (easylist.txt: 49157) -.thekraftgroup.com/crossdomain\.xml -# @@||thefrisky.com/js/adspaces.min.js (easylist.txt: 49156) -.thefrisky.com/js/adspaces\.min\.js -# @@||thefourthperiod.com/ads/tfplogo_ (easylist.txt: 49155) -.thefourthperiod.com/ads/tfplogo_ -# @@||theepochtimes.com^*/article-ads.js? (easylist.txt: 49154) -.theepochtimes.com/.*/article-ads\.js\? -# @@||theepochtimes.com/ads/videos-right.html?$subdocument (easylist.txt: 49153) -.theepochtimes.com/ads/videos-right\.html\? -# @@||theepochtimes.com/ads/videos-below.htm?$subdocument (easylist.txt: 49152) -.theepochtimes.com/ads/videos-below\.htm\? -# @@||theepochtimes.com/ads/video/inarticle-video.html$subdocument (easylist.txt: 49151) -.theepochtimes.com/ads/video/inarticle-video\.html -# @@||thedailygreen.com/ams/page-ads.js? (easylist.txt: 49149) -.thedailygreen.com/ams/page-ads\.js\? -# @@||theatlantic.com/widget/$xmlhttprequest (easylist.txt: 49148) -.theatlantic.com/widget/ -# @@||texasstudentmedia.com/advertise/ (easylist.txt: 49147) -.texasstudentmedia.com/advertise/ -# @@||tetrisfriends.com/ads/google_dfp_video_ad.html (easylist.txt: 49146) -.tetrisfriends.com/ads/google_dfp_video_ad\.html -# @@||terraristik.com^*/ad_pics/$~third-party (easylist.txt: 49145) -.terraristik.com/.*/ad_pics/ -# @@||terraristik.com^*&ad_type=$~third-party (easylist.txt: 49144) -.terraristik.com/.*&ad_type= -# @@||temple.edu/advertising/$~third-party (easylist.txt: 49143) -.temple.edu/advertising/ -# @@||telegraphcouk.skimlinks.com/api/telegraph.skimlinks.js (easylist.txt: 49142) -.telegraphcouk.skimlinks.com/api/telegraph\.skimlinks\.js -# @@||teknikor.com/content/wp-content/themes/*-adv.jpg (easylist.txt: 49141) -.teknikor.com/content/wp-content/themes/.*-adv\.jpg -# @@||tbns.com.au/shops/images/ads/$~third-party (easylist.txt: 49137) -.tbns.com.au/shops/images/ads/ -# @@||talkrtv.com/ad/channel.php?$subdocument (easylist.txt: 49134) -.talkrtv.com/ad/channel\.php\? -# @@||talkgold.com/bans/rss.png (easylist.txt: 49133) -.talkgold.com/bans/rss\.png -# @@||take40.com/common/javascript/ads.js (easylist.txt: 49132) -.take40.com/common/javascript/ads\.js -# @@||tacdn.com^*_popunder_$script,stylesheet (easylist.txt: 49130) -.tacdn.com/.*_popunder_ -# @@||syracuse.com/static/common/js/ads/ads.js (easylist.txt: 49129) -.syracuse.com/static/common/js/ads/ads\.js -# @@||syn.5min.com/handlers/SenseHandler.ashx?*&adUnit=$script (easylist.txt: 49127) -.syn.5min.com/handlers/SenseHandler\.ashx\?.*&adUnit= -# @@||swordfox.co.nz^*/advertising/$~third-party (easylist.txt: 49126) -.swordfox.co.nz/.*/advertising/ -# @@||support.dlink.com/Scripts/custom/pop.js (easylist.txt: 49124) -.support.dlink.com/Scripts/custom/pop\.js -# @@||supersonicads.com/delivery/singleBanner.php?*&bannerId$subdocument (easylist.txt: 49123) -.supersonicads.com/delivery/singleBanner\.php\?.*&bannerId -# @@||supersonicads.com/api/v1/trackCommission.php*password=$image (easylist.txt: 49122) -.supersonicads.com/api/v1/trackCommission\.php.*password= -# @@||supersonicads.com/api/rest/funds/*/advertisers/$~third-party (easylist.txt: 49121) -.supersonicads.com/api/rest/funds/.*/advertisers/ -# @@||superfundo.org/advertisement.js (easylist.txt: 49120) -.superfundo.org/advertisement\.js -# @@||supercartoons.net/ad-preroll.html (easylist.txt: 49119) -.supercartoons.net/ad-preroll\.html -# @@||summitracing.com/global/images/bannerads/ (easylist.txt: 49118) -.summitracing.com/global/images/bannerads/ -# @@||subscribe.teenvogue.com/ams/page-ads.js (easylist.txt: 49116) -.subscribe.teenvogue.com/ams/page-ads\.js -# @@||subscribe.newyorker.com/ams/page-ads.js (easylist.txt: 49115) -.subscribe.newyorker.com/ams/page-ads\.js -# @@||style.com/images/*.doubleclick$object (easylist.txt: 49114) -.style.com/images/.*\.doubleclick -# @@||style.com/flashxml/*.doubleclick$object (easylist.txt: 49113) -.style.com/flashxml/.*\.doubleclick -# @@||streamlive.to/ads/$object,script (easylist.txt: 49112) -.streamlive.to/ads/ -# @@||streaming.gmgradio.com/adverts/*.mp3$object-subrequest (easylist.txt: 49111) -.streaming.gmgradio.com/adverts/.*\.mp3 -# @@||stickam.com/css/ver1/asset/sharelayout2col_ad300x250.css (easylist.txt: 49110) -.stickam.com/css/ver1/asset/sharelayout2col_ad300x250\.css -# @@||stclassifieds.sg/postad/ (easylist.txt: 49109) -.stclassifieds.sg/postad/ -# @@||stclassifieds.sg/images/ads/$~third-party (easylist.txt: 49108) -.stclassifieds.sg/images/ads/ -# @@||static.cricinfo.com^*/ADVERTS/*/liveScores.swf$object (easylist.txt: 49106) -.static.cricinfo.com/.*/ADVERTS/.*/liveScores\.swf -# @@||static.ak.fbcdn.net^*/ads/$script (easylist.txt: 49104) -.static.ak.fbcdn.net/.*/ads/ -# @@||statedesign.com/advertisers/$image,~third-party (easylist.txt: 49102) -.statedesign.com/advertisers/ -# @@||state.co.us/caic/pub_bc_avo.php?zone_id=$subdocument (easylist.txt: 49101) -.state.co.us/caic/pub_bc_avo\.php\?zone_id= -# @@||startxchange.com/textad.php?$xmlhttprequest (easylist.txt: 49100) -.startxchange.com/textad\.php\? -# @@||st.com^*/banners.js (easylist.txt: 49099) -.st.com/.*/banners\.js -# @@||ssl-images-amazon.com^*/popover/popover-$script (easylist.txt: 49098) -.ssl-images-amazon.com/.*/popover/popover- -# @@||sprouts.com/ad/$image,subdocument (easylist.txt: 49095) -.sprouts.com/ad/ -# @@||sprint.com^*/adservice/$xmlhttprequest (easylist.txt: 49094) -.sprint.com/.*/adservice/ -# @@||springbokradio.com/sitebuilder/images/ads- (easylist.txt: 49093) -.springbokradio.com/sitebuilder/images/ads- -# @@||springbokradio.com/images/ads- (easylist.txt: 49092) -.springbokradio.com/images/ads- -# @@||springboardplatform.com/storage/lightbox_code/static/companion_ads.js (easylist.txt: 49091) -.springboardplatform.com/storage/lightbox_code/static/companion_ads\.js -# @@||spotxchange.com/crossdomain.xml$object-subrequest (easylist.txt: 49086) -.spotxchange.com/crossdomain\.xml -# @@||spotrails.com^*/flowplayeradplayerplugin.swf (easylist.txt: 49084) -.spotrails.com/.*/flowplayeradplayerplugin\.swf -# @@||spotrails.com/crossdomain.xml$object-subrequest (easylist.txt: 49083) -.spotrails.com/crossdomain\.xml -# @@||sploder.com/prerollad.swf?s=$object-subrequest (easylist.txt: 49080) -.sploder.com/prerollad\.swf\?s= -# @@||spendino.de/admanager/ (easylist.txt: 49079) -.spendino.de/admanager/ -# @@||spectrum.ieee.org/assets/js/masonry-ads-right.min.js (easylist.txt: 49078) -.spectrum.ieee.org/assets/js/masonry-ads-right\.min\.js -# @@||southwest.com^*/homepage/ads/ (easylist.txt: 49077) -.southwest.com/.*/homepage/ads/ -# @@||southwest.com/assets/images/ads/ad_select_flight_ (easylist.txt: 49076) -.southwest.com/assets/images/ads/ad_select_flight_ -# @@||sonypictures.com^*/admedia/ (easylist.txt: 49075) -.sonypictures.com/.*/admedia/ -# @@||sonypictures.com/global/images/ads/300x250/ad300x250.json$xmlhttprequest (easylist.txt: 49074) -.sonypictures.com/global/images/ads/300x250/ad300x250\.json -# @@||sonicstate.com/video/hd/hdconfig-geo.cfm?$object-subrequest (easylist.txt: 49073) -.sonicstate.com/video/hd/hdconfig-geo\.cfm\? -# @@||songza.com/static/*/songza/ads/iframe.js (easylist.txt: 49072) -.songza.com/static/.*/songza/ads/iframe\.js -# @@||songza.com/advertising/top/ (easylist.txt: 49071) -.songza.com/advertising/top/ -# @@||somewheresouth.net/banner/banner.php$image (easylist.txt: 49070) -.somewheresouth.net/banner/banner\.php -# @@||somethingsexyplanet.com/image/adzones/ (easylist.txt: 49069) -.somethingsexyplanet.com/image/adzones/ -# @@||softwarepromotions.com/images/google-adwords-professional.gif (easylist.txt: 49068) -.softwarepromotions.com/images/google-adwords-professional\.gif -# @@||softwarepromotions.com/adwords/$~third-party (easylist.txt: 49067) -.softwarepromotions.com/adwords/ -# @@||socialblogsitewebdesign.com^*/advertising_conversion_images/ (easylist.txt: 49066) -.socialblogsitewebdesign.com/.*/advertising_conversion_images/ -# @@||smmirror.com^*/getads.php (easylist.txt: 49065) -.smmirror.com/.*/getads\.php -# @@||smctemple.wpengine.com/advertising/$~third-party (easylist.txt: 49062) -.smctemple.wpengine.com/advertising/ -# @@||slowblog.com/ad.js (easylist.txt: 49058) -.slowblog.com/ad\.js -# @@||slotsheaven.com/banners/$~third-party (easylist.txt: 49057) -.slotsheaven.com/banners/ -# @@||skymediator.com/ads/*/skymediator.php?$subdocument (easylist.txt: 49055) -.skymediator.com/ads/.*/skymediator\.php\? -# @@||sjsuspartans.com/ads2/$image (easylist.txt: 49054) -.sjsuspartans.com/ads2/ -# @@||site-jump.com/banners/ (easylist.txt: 49053) -.site-jump.com/banners/ -# @@||sillyvamp.com/ads/Donate.png (easylist.txt: 49052) -.sillyvamp.com/ads/Donate\.png -# @@||silive.com/static/common/js/ads/ads.js (easylist.txt: 49051) -.silive.com/static/common/js/ads/ads\.js -# @@||sihanoukvilleonline.com/banners/sologo.png (easylist.txt: 49050) -.sihanoukvilleonline.com/banners/sologo\.png -# @@||signin.verizon.com^*/affiliate/$subdocument,xmlhttprequest (easylist.txt: 49049) -.signin.verizon.com/.*/affiliate/ -# @@||sify.com/news/postcomments.php?*468x60.html (easylist.txt: 49048) -.sify.com/news/postcomments\.php\?.*468x60\.html -# @@||siamautologistics.com/ads/$image,~third-party (easylist.txt: 49047) -.siamautologistics.com/ads/ -# @@||shelleytheatre.co.uk/filmimages/banners/160 (easylist.txt: 49045) -.shelleytheatre.co.uk/filmimages/banners/160 -# @@||shawfloors.com/adx/$image,~third-party (easylist.txt: 49044) -.shawfloors.com/adx/ -# @@||sharinspireds.co.nf/Images/Ads/$~third-party (easylist.txt: 49043) -.sharinspireds.co.nf/Images/Ads/ -# @@||share.pingdom.com/banners/$image (easylist.txt: 49041) -.share.pingdom.com/banners/ -# @@||shackvideo.com/playlist_xml.x? (easylist.txt: 49040) -.shackvideo.com/playlist_xml\.x\? -# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easylist.txt: 49038) -.sh.st/bundles/smeadvertisement/img/track\.gif\? -# @@||seventeen.com/ams/page-ads.js (easylist.txt: 49036) -.seventeen.com/ams/page-ads\.js -# @@||serviceexpress.net/js/pop.js (easylist.txt: 49034) -.serviceexpress.net/js/pop\.js -# @@||server.cpmstar.com/adviewas3.swf?contentspotid=$object-subrequest (easylist.txt: 49032) -.server.cpmstar.com/adviewas3\.swf\?contentspotid= -# @@||serve.vdopia.com/crossdomain.xml$object-subrequest (easylist.txt: 49029) -.serve.vdopia.com/crossdomain\.xml -# @@||selsin.net/imprint-$image (easylist.txt: 49028) -.selsin.net/imprint- -# @@||sekonda.co.uk/advert_images/ (easylist.txt: 49027) -.sekonda.co.uk/advert_images/ -# @@||securenetsystems.net/scripts/*/sdfy_scripts_advertising.js (easylist.txt: 49025) -.securenetsystems.net/scripts/.*/sdfy_scripts_advertising\.js -# @@||securenetsystems.net/advertising/ad_campaign_get.cfm?$xmlhttprequest (easylist.txt: 49024) -.securenetsystems.net/advertising/ad_campaign_get\.cfm\? -# @@||secondlife.com/assets/*_AD3.jpg (easylist.txt: 49023) -.secondlife.com/assets/.*_AD3\.jpg -# @@||sec-ads.bridgetrack.com/ads_img/ (easylist.txt: 49022) -.sec-ads.bridgetrack.com/ads_img/ -# @@||search.yahoo.com^$generichide (easylist.txt: 49021) -.search.yahoo.com -# @@||search.comcast.net/static.php?$stylesheet (easylist.txt: 49020) -.search.comcast.net/static\.php\? -# @@||sdltutorials.com/Data/Ads/AppStateBanner.jpg (easylist.txt: 49019) -.sdltutorials.com/Data/Ads/AppStateBanner\.jpg -# @@||sdelkino.com/images/ad/$image (easylist.txt: 49018) -.sdelkino.com/images/ad/ -# @@||sdcdn.com/cms/ads/piczo/$image (easylist.txt: 49017) -.sdcdn.com/cms/ads/piczo/ -# @@||scutt.eu/ads/$~third-party (easylist.txt: 49016) -.scutt.eu/ads/ -# @@||scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors.xml$object-subrequest (easylist.txt: 49015) -.scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors\.xml -# @@||scanscout.com/crossdomain.xml$object-subrequest (easylist.txt: 49009) -.scanscout.com/crossdomain\.xml -# @@||save.ca/img/ads/$~third-party (easylist.txt: 49007) -.save.ca/img/ads/ -# @@||sascdn.com^*/jwplayerAdPlugin.swf$object-subrequest (easylist.txt: 49006) -.sascdn.com/.*/jwplayerAdPlugin\.swf -# @@||sascdn.com^*/jwplayer-plugin.swf?$object-subrequest (easylist.txt: 49005) -.sascdn.com/.*/jwplayer-plugin\.swf\? -# @@||sascdn.com/crossdomain.xml$object-subrequest (easylist.txt: 49004) -.sascdn.com/crossdomain\.xml -# @@||salon.com/content/plugins/salon-ad-controller/ad-utilities.js (easylist.txt: 49003) -.salon.com/content/plugins/salon-ad-controller/ad-utilities\.js -# @@||salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery.jshowoff.min.js? (easylist.txt: 49002) -.salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery\.jshowoff\.min\.js\? -# @@||sales.liveperson.net/visitor/addons/deploy2.asp?*&d_id=adcenter&$script (easylist.txt: 49001) -.sales.liveperson.net/visitor/addons/deploy2\.asp\?.*&d_id=adcenter& -# @@||sal.co.th/ads/$image,~third-party (easylist.txt: 49000) -.sal.co.th/ads/ -# @@||sabotage-films.com/ads/$~third-party (easylist.txt: 48999) -.sabotage-films.com/ads/ -# @@||ryuutama.com/ads/ads.php?get=$xmlhttprequest (easylist.txt: 48995) -.ryuutama.com/ads/ads\.php\?get= -# @@||russellrooftiles.co.uk/images/rrt_envirotile_home_advert.png (easylist.txt: 48994) -.russellrooftiles.co.uk/images/rrt_envirotile_home_advert\.png -# @@||rthk.org.hk/assets/flash/rthk/*/ad_banner$object (easylist.txt: 48993) -.rthk.org.hk/assets/flash/rthk/.*/ad_banner -# @@||rthk.hk/assets/flash/rthk/*/ad_banner$object (easylist.txt: 48992) -.rthk.hk/assets/flash/rthk/.*/ad_banner -# @@||rsvlts.com/wp-content/uploads/*-advertisment- (easylist.txt: 48988) -.rsvlts.com/wp-content/uploads/.*-advertisment- -# @@||rotate.infowars.com/www/delivery/spcjs.php (easylist.txt: 48983) -.rotate.infowars.com/www/delivery/spcjs\.php -# @@||rotate.infowars.com/www/delivery/fl.js (easylist.txt: 48982) -.rotate.infowars.com/www/delivery/fl\.js -# @@||rosauers.com/locations/ads.html (easylist.txt: 48981) -.rosauers.com/locations/ads\.html -# @@||rmncdn.com/ads/mini-$image (easylist.txt: 48978) -.rmncdn.com/ads/mini- -# @@||rewaz.org/ads/adframe2.js (easylist.txt: 48977) -.rewaz.org/ads/adframe2\.js -# @@||revit.eu/static/uploads/images/themes/banners/small-banner-$object-subrequest (easylist.txt: 48973) -.revit.eu/static/uploads/images/themes/banners/small-banner- -# @@||replgroup.com/banners/$image,~third-party (easylist.txt: 48968) -.replgroup.com/banners/ -# @@||remo-xp.com/wp-content/themes/adsense-boqpod/style.css (easylist.txt: 48967) -.remo-xp.com/wp-content/themes/adsense-boqpod/style\.css -# @@||refline.ch^*/advertisement.css (easylist.txt: 48966) -.refline.ch/.*/advertisement\.css -# @@||redsharknews.com/components/com_adagency/includes/$script (easylist.txt: 48965) -.redsharknews.com/components/com_adagency/includes/ -# @@||redbookmag.com/ams/page-ads.js? (easylist.txt: 48964) -.redbookmag.com/ams/page-ads\.js\? -# @@||realvnc.com/assets/img/ad-bg.jpg (easylist.txt: 48963) -.realvnc.com/assets/img/ad-bg\.jpg -# @@||realmedia.channel4.com/realmedia/ads/adstream_sx.ads/channel4.newcu/$object-subrequest,~third-party (easylist.txt: 48962) -.realmedia.channel4.com/realmedia/ads/adstream_sx\.ads/channel4\.newcu/ -# @@||realbeauty.com/ams/page-ads.js? (easylist.txt: 48961) -.realbeauty.com/ams/page-ads\.js\? -# @@||readwrite.com/files/styles/$image (easylist.txt: 48960) -.readwrite.com/files/styles/ -# @@||rcards.net/wp-content/uploads/useful_banner_manager_banners/ (easylist.txt: 48957) -.rcards.net/wp-content/uploads/useful_banner_manager_banners/ -# @@||rcards.net/wp-content/plugins/useful-banner-manager/ (easylist.txt: 48956) -.rcards.net/wp-content/plugins/useful-banner-manager/ -# @@||rapoo.com/images/ad/$image,~third-party (easylist.txt: 48954) -.rapoo.com/images/ad/ -# @@||rainbowdressup.com/ads/adsnewvars.swf (easylist.txt: 48953) -.rainbowdressup.com/ads/adsnewvars\.swf -# @@||radiotimes.com/rt-service/resource/jspack? (easylist.txt: 48952) -.radiotimes.com/rt-service/resource/jspack\? -# @@||radioguide.fm/minify/?*/Advertising/webroot/css/advertising.css (easylist.txt: 48951) -.radioguide.fm/minify/\?.*/Advertising/webroot/css/advertising\.css -# @@||rad.org.uk/images/adverts/$image,~third-party (easylist.txt: 48950) -.rad.org.uk/images/adverts/ -# @@||r2games.com/bannerad/$image,~third-party (easylist.txt: 48945) -.r2games.com/bannerad/ -# @@||quit.org.au/images/images/ad/ (easylist.txt: 48943) -.quit.org.au/images/images/ad/ -# @@||q2servers.com/pop.js (easylist.txt: 48940) -.q2servers.com/pop\.js -# @@||puzzler.com/commercials/*.htm$subdocument (easylist.txt: 48939) -.puzzler.com/commercials/.*\.htm -# @@||pursuit.co.za/css/globalAd.css (easylist.txt: 48938) -.pursuit.co.za/css/globalAd\.css -# @@||pumpkinpatchkids.com/www/delivery/ajs.php?$script (easylist.txt: 48937) -.pumpkinpatchkids.com/www/delivery/ajs\.php\? -# @@||ptgrey.com/_PGR_Content/Advertising/$image,~third-party (easylist.txt: 48934) -.ptgrey.com/_PGR_Content/Advertising/ -# @@||pshared.5min.com/Scripts/ThumbSeed2.js?*&adUnit=$script (easylist.txt: 48933) -.pshared.5min.com/Scripts/ThumbSeed2\.js\?.*&adUnit= -# @@||proxyserver.asia/themes/advertising-$image,stylesheet (easylist.txt: 48932) -.proxyserver.asia/themes/advertising- -# @@||proprofs.com/quiz-school/js/modernizr_ads.js (easylist.txt: 48931) -.proprofs.com/quiz-school/js/modernizr_ads\.js -# @@||promophot.com/photo/ad/$image (easylist.txt: 48930) -.promophot.com/photo/ad/ -# @@||promo.campaigndog.com^$third-party (easylist.txt: 48926) -.promo.campaigndog.com -# @@||promo.acronis.com^*?base=www.acronis.$subdocument (easylist.txt: 48925) -.promo.acronis.com/.*\?base=www\.acronis\. -# @@||productioncars.com/pics/menu/ads2.gif (easylist.txt: 48924) -.productioncars.com/pics/menu/ads2\.gif -# @@||productioncars.com/pics/menu/ads.gif (easylist.txt: 48923) -.productioncars.com/pics/menu/ads\.gif -# @@||procato.com/_pub/advertisement.js (easylist.txt: 48922) -.procato.com/_pub/advertisement\.js -# @@||procato.com/_pub/ads.php?u=$xmlhttprequest (easylist.txt: 48921) -.procato.com/_pub/ads\.php\?u= -# @@||prism.opticsinfobase.org/Scripts/ADS/Details.js (easylist.txt: 48920) -.prism.opticsinfobase.org/Scripts/ADS/Details\.js -# @@||pressdisplay.com/advertising/showimage.aspx? (easylist.txt: 48919) -.pressdisplay.com/advertising/showimage\.aspx\? -# @@||powercolor.com/image/ad/$~third-party (easylist.txt: 48918) -.powercolor.com/image/ad/ -# @@||popcap.com/sites/all/modules/popcap/js/popcap_openx.js? (easylist.txt: 48915) -.popcap.com/sites/all/modules/popcap/js/popcap_openx\.js\? -# @@||popad.co^$~third-party (easylist.txt: 48914) -.popad.co -# @@||pop.advecs.com^$~third-party (easylist.txt: 48913) -.pop.advecs.com -# @@||politico.com/js/magazine/ads.js (easylist.txt: 48911) -.politico.com/js/magazine/ads\.js -# @@||plugcomputer.org^*/ad1.jpg (easylist.txt: 48909) -.plugcomputer.org/.*/ad1\.jpg -# @@||playintraffik.com/advertising/ (easylist.txt: 48908) -.playintraffik.com/advertising/ -# @@||player.vioapi.com/ads/flash/vioplayer.swf (easylist.txt: 48907) -.player.vioapi.com/ads/flash/vioplayer\.swf -# @@||player.streamtheworld.com/liveplayer.php?*adstype= (easylist.txt: 48904) -.player.streamtheworld.com/liveplayer\.php\?.*adstype= -# @@||player.onescreen.net/*/MediaPlayer.swf?ads=$object-subrequest (easylist.txt: 48903) -.player.onescreen.net/.*/MediaPlayer\.swf\?ads= -# @@||player.goviral-content.com/crossdomain.xml$object-subrequest (easylist.txt: 48902) -.player.goviral-content.com/crossdomain\.xml -# @@||player.animelicio.us/adimages/$subdocument (easylist.txt: 48897) -.player.animelicio.us/adimages/ -# @@||planetrecruit.com/ad/$image (easylist.txt: 48896) -.planetrecruit.com/ad/ -# @@||planetoddity.com/wp-content/*-ads-$image (easylist.txt: 48895) -.planetoddity.com/wp-content/.*-ads- -# @@||planetaxel.com^*.php?ad=$stylesheet (easylist.txt: 48894) -.planetaxel.com/.*\.php\?ad= -# @@||pitchfork.com/desktop/js/pitchfork/ads/interstitial.js (easylist.txt: 48893) -.pitchfork.com/desktop/js/pitchfork/ads/interstitial\.js -# @@||pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218.gif (easylist.txt: 48892) -.pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218\.gif -# @@||pinkbike.org^*.swf?ad=0&$object (easylist.txt: 48891) -.pinkbike.org/.*\.swf\?ad=0& -# @@||ping.indieclicktv.com/www/delivery/ajs.php?zoneid$object-subrequest (easylist.txt: 48890) -.ping.indieclicktv.com/www/delivery/ajs\.php\?zoneid -# @@||piercesnorthsidemarket.com/ads/$image (easylist.txt: 48889) -.piercesnorthsidemarket.com/ads/ -# @@||picplzthumbs.com/upload/img/ad/ (easylist.txt: 48888) -.picplzthumbs.com/upload/img/ad/ -# @@||photofunia.com/effects/$~third-party (easylist.txt: 48886) -.photofunia.com/effects/ -# @@||photobucket.com/albums/ad$image (easylist.txt: 48884) -.photobucket.com/albums/ad -# @@||photo.ekathimerini.com/ads/extra/$image,~third-party (easylist.txt: 48883) -.photo.ekathimerini.com/ads/extra/ -# @@||phonealchemist.com/api/affiliation/$~third-party (easylist.txt: 48882) -.phonealchemist.com/api/affiliation/ -# @@||phl.org/Advertising/$image,~third-party (easylist.txt: 48880) -.phl.org/Advertising/ -# @@||pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad.min.js$script (easylist.txt: 48879) -.pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad\.min\.js -# @@||pets4homes.co.uk^*/advert.css (easylist.txt: 48878) -.pets4homes.co.uk/.*/advert\.css -# @@||pets4homes.co.uk/*/advert.js (easylist.txt: 48877) -.pets4homes.co.uk/.*/advert\.js -# @@||petra-fischer.com/tl_files/pics/*/ADVERTISING/$~third-party (easylist.txt: 48876) -.petra-fischer.com/tl_files/pics/.*/ADVERTISING/ -# @@||petcarerx.com/banners/ (easylist.txt: 48875) -.petcarerx.com/banners/ -# @@||petapixel.com/ads/$~third-party (easylist.txt: 48874) -.petapixel.com/ads/ -# @@||perezhilton.com^*-without-ads-$object,object-subrequest,subdocument (easylist.txt: 48873) -.perezhilton.com/.*-without-ads- -# @@||perezhilton.com/included_ads/ (easylist.txt: 48872) -.perezhilton.com/included_ads/ -# @@||perbang.dk/_pub/advertisement.js? (easylist.txt: 48871) -.perbang.dk/_pub/advertisement\.js\? -# @@||perbang.dk/_pub/ads.php?u=$xmlhttprequest (easylist.txt: 48870) -.perbang.dk/_pub/ads\.php\?u= -# @@||pennlive.com/static/common/js/ads/ads.js (easylist.txt: 48869) -.pennlive.com/static/common/js/ads/ads\.js -# @@||pch.com^*/videoad.$stylesheet (easylist.txt: 48868) -.pch.com/.*/videoad\. -# @@||pch.com/iframe-ad/?adType=$subdocument (easylist.txt: 48867) -.pch.com/iframe-ad/\?adType= -# @@||pbs.org^*/sponsors/flvvideoplayer.swf (easylist.txt: 48866) -.pbs.org/.*/sponsors/flvvideoplayer\.swf -# @@||payload*.cargocollective.com^$image (easylist.txt: 48865) -.payload*./.*\.cargocollective\.com[^\w%.-] -.payload*.cargocollective.com -# @@||patient-education.com/banners/$~third-party (easylist.txt: 48863) -.patient-education.com/banners/ -# @@||partners.thefilter.com/crossdomain.xml$object-subrequest (easylist.txt: 48861) -.partners.thefilter.com/crossdomain\.xml -# @@||pantherssl.com/banners/ (easylist.txt: 48854) -.pantherssl.com/banners/ -# @@||pandasecurity.com/banners/$image,~third-party (easylist.txt: 48853) -.pandasecurity.com/banners/ -# @@||pagesinventory.com/_data/flags/ad.gif (easylist.txt: 48852) -.pagesinventory.com/_data/flags/ad\.gif -# @@||pagead2.googlesyndication.com/pagead/static?format=in_video_ads&$elemhide,subdocument (easylist.txt: 48851) -.pagead2.googlesyndication.com/pagead/static\?format=in_video_ads& -# @@||pacogames.com/ad/ima3_preloader_$object (easylist.txt: 48841) -.pacogames.com/ad/ima3_preloader_ -# @@||pachoumis.com/advertising-$~third-party (easylist.txt: 48840) -.pachoumis.com/advertising- -# @@||pachanyc.com/_images/advertise_submit.gif (easylist.txt: 48839) -.pachanyc.com/_images/advertise_submit\.gif -# @@||ozspeedtest.com/js/pop.js (easylist.txt: 48838) -.ozspeedtest.com/js/pop\.js -# @@||oxfordlearnersdictionaries.com/external/scripts/doubleclick.js (easylist.txt: 48837) -.oxfordlearnersdictionaries.com/external/scripts/doubleclick\.js -# @@||ox.popcap.com/delivery/afr.php?&zoneid=$subdocument,~third-party (easylist.txt: 48836) -.ox.popcap.com/delivery/afr\.php\?&zoneid= -# @@||ox-d.sbnation.com/w/1.0/jstag| (easylist.txt: 48834) -.ox-d.sbnation.com/w/1\.0/jstag$ -# @@||overture.london^$~third-party (easylist.txt: 48830) -.overture.london -# @@||ottawasun.com/assets/js/dfp.js? (easylist.txt: 48829) -.ottawasun.com/assets/js/dfp\.js\? -# @@||otakumode.com/shop/titleArea?*_promo_id=$xmlhttprequest (easylist.txt: 48827) -.otakumode.com/shop/titleArea\?.*_promo_id= -# @@||osdir.com/ml/dateindex*&num=$subdocument (easylist.txt: 48826) -.osdir.com/ml/dateindex.*&num= -# @@||oregonlive.com/static/common/js/ads/ads.js (easylist.txt: 48825) -.oregonlive.com/static/common/js/ads/ads\.js -# @@||opgevenisgeenoptie.nl^*/favicon_ad6.ico (easylist.txt: 48820) -.opgevenisgeenoptie.nl/.*/favicon_ad6\.ico -# @@||openx.nobelprize.org/openx/www/delivery/$script (easylist.txt: 48816) -.openx.nobelprize.org/openx/www/delivery/ -# @@||openload.io/deliverad/$xmlhttprequest (easylist.txt: 48813) -.openload.io/deliverad/ -# @@||onionstatic.com^*/videoads.js (easylist.txt: 48812) -.onionstatic.com/.*/videoads\.js -# @@||onetravel.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48811) -.onetravel.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||omnikool.discovery.com/realmedia/ads/adstream_mjx.ads/dsc.discovery.com/$script (easylist.txt: 48810) -.omnikool.discovery.com/realmedia/ads/adstream_mjx\.ads/dsc\.discovery\.com/ -# @@||omgubuntu.co.uk^*/banner.js (easylist.txt: 48809) -.omgubuntu.co.uk/.*/banner\.js -# @@||omgili.com/ads.search? (easylist.txt: 48808) -.omgili.com/ads\.search\? -# @@||oldergames.com/adlib/ (easylist.txt: 48807) -.oldergames.com/adlib/ -# @@||okta.com/js/app/sso/interstitial.js$~third-party (easylist.txt: 48806) -.okta.com/js/app/sso/interstitial\.js -# @@||ocp.com.com/adfunctions.js? (easylist.txt: 48804) -.ocp.com.com/adfunctions\.js\? -# @@||objects.tremormedia.com/embed/swf/admanager*.swf (easylist.txt: 48803) -.objects.tremormedia.com/embed/swf/admanager.*\.swf -# @@||oascentral.thepostgame.com/om/$script (easylist.txt: 48799) -.oascentral.thepostgame.com/om/ -# @@||oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx.ads$script (easylist.txt: 48798) -.oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx\.ads -# @@||oascentral.surfline.com/realmedia/ads/adstream_sx.ads/www.surfline.com/articles$object-subrequest (easylist.txt: 48797) -.oascentral.surfline.com/realmedia/ads/adstream_sx\.ads/www\.surfline\.com/articles -# @@||oascentral.surfline.com/crossdomain.xml$object-subrequest (easylist.txt: 48796) -.oascentral.surfline.com/crossdomain\.xml -# @@||oascentral.sumworld.com/crossdomain.xml$object-subrequest (easylist.txt: 48793) -.oascentral.sumworld.com/crossdomain\.xml -# @@||oascentral.post-gazette.com/realmedia/ads/$object-subrequest (easylist.txt: 48792) -.oascentral.post-gazette.com/realmedia/ads/ -# @@||oascentral.ibtimes.com/crossdomain.xml$object-subrequest (easylist.txt: 48791) -.oascentral.ibtimes.com/crossdomain\.xml -# @@||oas.theguardian.com^$xmlhttprequest (easylist.txt: 48787) -.oas.theguardian.com -# @@||oas.absoluteradio.co.uk^*/www.absoluteradio.co.uk/player/ (easylist.txt: 48785) -.oas.absoluteradio.co.uk/.*/www\.absoluteradio\.co\.uk/player/ -# @@||oas.absoluteradio.co.uk/realmedia/ads/$object-subrequest (easylist.txt: 48784) -.oas.absoluteradio.co.uk/realmedia/ads/ -# @@||nytimes.perfectmarket.com^$stylesheet (easylist.txt: 48783) -.nytimes.perfectmarket.com -# @@||nytimes.com/adx/images/ads/*_premium-crosswords_bg_600x329.gif (easylist.txt: 48782) -.nytimes.com/adx/images/ads/.*_premium-crosswords_bg_600x329\.gif -# @@||nytimes.com/adx/images/ads/*_buynow_btn_53x18.gif (easylist.txt: 48781) -.nytimes.com/adx/images/ads/.*_buynow_btn_53x18\.gif -# @@||nytimes.com/ads/interstitial/skip*.gif (easylist.txt: 48778) -.nytimes.com/ads/interstitial/skip.*\.gif -# @@||nsandi.com/files/asset/banner-ads/ (easylist.txt: 48773) -.nsandi.com/files/asset/banner-ads/ -# @@||nola.com/static/common/js/ads/ads.js (easylist.txt: 48771) -.nola.com/static/common/js/ads/ads\.js -# @@||nj.com/static/common/js/ads/ads.js (easylist.txt: 48770) -.nj.com/static/common/js/ads/ads\.js -# @@||nintandbox.net/images/*-Advertising_$image (easylist.txt: 48769) -.nintandbox.net/images/.*-Advertising_ -# @@||nickjr.com/global/scripts/overture/sponsored_links_lib.js (easylist.txt: 48768) -.nickjr.com/global/scripts/overture/sponsored_links_lib\.js -# @@||nickjr.com/assets/ad-entry/ (easylist.txt: 48767) -.nickjr.com/assets/ad-entry/ -# @@||nick.com/js/ads.jsp (easylist.txt: 48765) -.nick.com/js/ads\.jsp -# @@||nflcdn.com/static/*/global/ads.js (easylist.txt: 48761) -.nflcdn.com/static/.*/global/ads\.js -# @@||nfl.com^*/ads.js (easylist.txt: 48760) -.nfl.com/.*/ads\.js -# @@||nextmedia.com/admedia/$object-subrequest (easylist.txt: 48758) -.nextmedia.com/admedia/ -# @@||newzimbabwe.com/banners/350x350/ (easylist.txt: 48756) -.newzimbabwe.com/banners/350x350/ -# @@||newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn.dart.js (easylist.txt: 48755) -.newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn\.dart\.js -# @@||newsweek.com/ads/adscripts/prod/*_$script (easylist.txt: 48754) -.newsweek.com/ads/adscripts/prod/.*_ -# @@||newsarama.com/common/js/advertisements.js (easylist.txt: 48753) -.newsarama.com/common/js/advertisements\.js -# @@||news.nate.com/etc/adrectanglebanner? (easylist.txt: 48752) -.news.nate.com/etc/adrectanglebanner\? -# @@||newgrounds.com/ads/advertisement.js (easylist.txt: 48751) -.newgrounds.com/ads/advertisement\.js -# @@||newgrounds.com/ads/ad_medals.gif (easylist.txt: 48750) -.newgrounds.com/ads/ad_medals\.gif -# @@||networkworld.com/www/js/ads/gpt_includes.js? (easylist.txt: 48749) -.networkworld.com/www/js/ads/gpt_includes\.js\? -# @@||neodrive.co/cam/directrev.js? (easylist.txt: 48746) -.neodrive.co/cam/directrev\.js\? -# @@||neobux.com/v/?a=l&l=$document (easylist.txt: 48745) -.neobux.com/v/\?a=l&l= -# @@||nedbank.co.za/website/content/home/google_ad_Cut.jpg (easylist.txt: 48744) -.nedbank.co.za/website/content/home/google_ad_Cut\.jpg -# @@||ncregister.com/images/sized/images/ads/ (easylist.txt: 48743) -.ncregister.com/images/sized/images/ads/ -# @@||ncregister.com/images/ads/ (easylist.txt: 48742) -.ncregister.com/images/ads/ -# @@||nbc.com/collarity/ (easylist.txt: 48741) -.nbc.com/collarity/ -# @@||nature.com/advertising/$~third-party (easylist.txt: 48739) -.nature.com/advertising/ -# @@||nationmultimedia.com/new/js/doubleclick.js (easylist.txt: 48738) -.nationmultimedia.com/new/js/doubleclick\.js -# @@||nationalgeographic.com/channel/videos/satellite/*.swf?adsite= (easylist.txt: 48737) -.nationalgeographic.com/channel/videos/satellite/.*\.swf\?adsite= -# @@||nationalbusinessfurniture.com/product/advertising/$image (easylist.txt: 48736) -.nationalbusinessfurniture.com/product/advertising/ -# @@||napaonline.com/Content/script/jquery.lazyload-ad-$script (easylist.txt: 48735) -.napaonline.com/Content/script/jquery\.lazyload-ad- -# @@||myrecipes.com/static/advertising/ (easylist.txt: 48733) -.myrecipes.com/static/advertising/ -# @@||myprotein.com/Files/OpenX/$image,~third-party (easylist.txt: 48732) -.myprotein.com/Files/OpenX/ -# @@||mymemory.co.uk/images/adverts/$image,~third-party (easylist.txt: 48731) -.mymemory.co.uk/images/adverts/ -# @@||myhouseabroad.com/js/adview.js (easylist.txt: 48730) -.myhouseabroad.com/js/adview\.js -# @@||myhouseabroad.com/*/ads/ (easylist.txt: 48729) -.myhouseabroad.com/.*/ads/ -# @@||mycricket.com/openx/offers/$image (easylist.txt: 48728) -.mycricket.com/openx/offers/ -# @@||myadt.com/js-ext/smartbanner/ (easylist.txt: 48727) -.myadt.com/js-ext/smartbanner/ -# @@||mxtabs.net/ads/interstitial$subdocument (easylist.txt: 48726) -.mxtabs.net/ads/interstitial -# @@||mutualofomaha.com/images/ads/ (easylist.txt: 48724) -.mutualofomaha.com/images/ads/ -# @@||mussil.com/mussilcomfiles/commercials/*.jpg (easylist.txt: 48723) -.mussil.com/mussilcomfiles/commercials/.*\.jpg -# @@||music-clips.net/ads/list.txt?_=$xmlhttprequest (easylist.txt: 48720) -.music-clips.net/ads/list\.txt\?_= -# @@||mudah.my/css/mudah_adview_min.css (easylist.txt: 48719) -.mudah.my/css/mudah_adview_min\.css -# @@||muchmusic.com/includes/js/adzone.js (easylist.txt: 48718) -.muchmusic.com/includes/js/adzone\.js -# @@||msy.com.au/images/ADbanner/eletter/$~third-party (easylist.txt: 48717) -.msy.com.au/images/ADbanner/eletter/ -# @@||msnbcmedia.msn.com^*/sitemanagement/ads/*/blog_printbutton.png (easylist.txt: 48715) -.msnbcmedia.msn.com/.*/sitemanagement/ads/.*/blog_printbutton\.png -# @@||msi.com/pic/banner/ (easylist.txt: 48714) -.msi.com/pic/banner/ -# @@||msi.com/js/topad/topad.css (easylist.txt: 48713) -.msi.com/js/topad/topad\.css -# @@||mp32u.net/adframe.js (easylist.txt: 48711) -.mp32u.net/adframe\.js -# @@||movoto.com/LeaderboardAd.aspx?adSpotName=$subdocument (easylist.txt: 48710) -.movoto.com/LeaderboardAd\.aspx\?adSpotName= -# @@||motortrade.me/js/$~third-party (easylist.txt: 48709) -.motortrade.me/js/ -# @@||motortrade.me/advert/$~third-party (easylist.txt: 48708) -.motortrade.me/advert/ -# @@||monster.com/awm/*/ADVERTISING- (easylist.txt: 48706) -.monster.com/awm/.*/ADVERTISING- -# @@||moneybookers.com/ads/$~third-party (easylist.txt: 48705) -.moneybookers.com/ads/ -# @@||mofunzone.com/ads/ima3_preloader_*.swf$object (easylist.txt: 48704) -.mofunzone.com/ads/ima3_preloader_.*\.swf -# @@||mobinozer.com^*/gads.js (easylist.txt: 48699) -.mobinozer.com/.*/gads\.js -# @@||mobilefish.com/scripts/advertisement.js (easylist.txt: 48698) -.mobilefish.com/scripts/advertisement\.js -# @@||mlive.com/static/common/js/ads/ads.js (easylist.txt: 48696) -.mlive.com/static/common/js/ads/ads\.js -# @@||mlb.com/shared/components/gameday/v6/js/adproxy.js (easylist.txt: 48695) -.mlb.com/shared/components/gameday/v6/js/adproxy\.js -# @@||mlb.com/scripts/dc_ads.js (easylist.txt: 48694) -.mlb.com/scripts/dc_ads\.js -# @@||mircscripts.org/advertisements.js (easylist.txt: 48692) -.mircscripts.org/advertisements\.js -# @@||miniclipcdn.com/content/push-ads/ (easylist.txt: 48691) -.miniclipcdn.com/content/push-ads/ -# @@||miniclip.com/scripts/js.php? (easylist.txt: 48690) -.miniclip.com/scripts/js\.php\? -# @@||miller-mccune.com/wp-content/plugins/*/oiopub-direct/images/style/output.css (easylist.txt: 48689) -.miller-mccune.com/wp-content/plugins/.*/oiopub-direct/images/style/output\.css -# @@||militaryfleamarket.net/media/com_jomclassifieds/adverts/ (easylist.txt: 48688) -.militaryfleamarket.net/media/com_jomclassifieds/adverts/ -# @@||metalmusicradio.com^*/banner.php (easylist.txt: 48685) -.metalmusicradio.com/.*/banner\.php -# @@||metacafe.com/banner.php? (easylist.txt: 48684) -.metacafe.com/banner\.php\? -# @@||merkatia.com/adimages/$image (easylist.txt: 48683) -.merkatia.com/adimages/ -# @@||meritline.com/banners/$image,~third-party (easylist.txt: 48682) -.meritline.com/banners/ -# @@||medscapestatic.com/pi/scripts/ads/dfp/profads2.js (easylist.txt: 48680) -.medscapestatic.com/pi/scripts/ads/dfp/profads2\.js -# @@||medscape.com/html.ng/*slideshow (easylist.txt: 48679) -.medscape.com/html\.ng/.*slideshow -# @@||mediabistro.com^*/displayadleader.asp?$subdocument (easylist.txt: 48675) -.mediabistro.com/.*/displayadleader\.asp\? -# @@||media.washingtonpost.com/wp-srv/ad/tiffany_manager.js (easylist.txt: 48674) -.media.washingtonpost.com/wp-srv/ad/tiffany_manager\.js -# @@||media.washingtonpost.com/wp-srv/ad/photo-ad-config.jsonp (easylist.txt: 48673) -.media.washingtonpost.com/wp-srv/ad/photo-ad-config\.jsonp -# @@||media.washingtonpost.com/wp-srv/ad/ad_v2.js (easylist.txt: 48672) -.media.washingtonpost.com/wp-srv/ad/ad_v2\.js -# @@||media.styleblueprint.com/ad.php?$script,~third-party (easylist.txt: 48671) -.media.styleblueprint.com/ad\.php\? -# @@||media.expedia.com/*/ads/ (easylist.txt: 48666) -.media.expedia.com/.*/ads/ -# @@||media.cargocollective.com^$image (easylist.txt: 48665) -.media.cargocollective.com -# @@||media.avclub.com/onion/js/videoads.js$script (easylist.txt: 48664) -.media.avclub.com/onion/js/videoads\.js -# @@||mcpn.us/resources/images/adv/$~third-party (easylist.txt: 48662) -.mcpn.us/resources/images/adv/ -# @@||mcfc.co.uk/js/core/adtracking.js (easylist.txt: 48661) -.mcfc.co.uk/js/core/adtracking\.js -# @@||maxim.com/advert*/countdown/$script,stylesheet (easylist.txt: 48660) -.maxim.com/advert.*/countdown/ -# @@||masslive.com/static/common/js/ads/ads.js (easylist.txt: 48659) -.masslive.com/static/common/js/ads/ads\.js -# @@||marketwatch.com^$elemhide (easylist.txt: 48658) -.marketwatch.com -# @@||marketing.beatport.com.s3.amazonaws.com/html/*/Banner_Ads/header_$image (easylist.txt: 48657) -.marketing.beatport.com.s3.amazonaws.com/html/.*/Banner_Ads/header_ -# @@||marines.com/videos/commercials/$object-subrequest (easylist.txt: 48656) -.marines.com/videos/commercials/ -# @@||marieclaire.com/ams/page-ads.js? (easylist.txt: 48655) -.marieclaire.com/ams/page-ads\.js\? -# @@||marcs.com^*/AdViewer.js (easylist.txt: 48654) -.marcs.com/.*/AdViewer\.js -# @@||marcokrenn.com/public/images/pages/advertising/$~third-party (easylist.txt: 48653) -.marcokrenn.com/public/images/pages/advertising/ -# @@||marciglesias.com/publicidad/ (easylist.txt: 48652) -.marciglesias.com/publicidad/ -# @@||marca.com/deporte/css/*/publicidad.css (easylist.txt: 48651) -.marca.com/deporte/css/.*/publicidad\.css -# @@||maps.gstatic.com/maps-api-*/adsense.js (easylist.txt: 48650) -.maps.gstatic.com/maps-api-.*/adsense\.js -# @@||maps.googleapis.com/maps-api-*/adsense.js (easylist.txt: 48649) -.maps.googleapis.com/maps-api-.*/adsense\.js -# @@||maps.chitika.net^ (easylist.txt: 48648) -.maps.chitika.net -# @@||maps-static.chitika.net^ (easylist.txt: 48647) -.maps-static.chitika.net -# @@||mansioncasino.com/banners/$~third-party (easylist.txt: 48646) -.mansioncasino.com/banners/ -# @@||manoramaonline.com/advt/cricbuzz/ (easylist.txt: 48645) -.manoramaonline.com/advt/cricbuzz/ -# @@||manilatimes.net/images/banners/logo-mt.png (easylist.txt: 48644) -.manilatimes.net/images/banners/logo-mt\.png -# @@||mail.yahoo.com/neo/assets/swf/uploader.swf (easylist.txt: 48643) -.mail.yahoo.com/neo/assets/swf/uploader\.swf -# @@||mail.google.com^*/uploaderapi*.swf (easylist.txt: 48642) -.mail.google.com/.*/uploaderapi.*\.swf -# @@||mail.google.com^*&view=ad&$xmlhttprequest (easylist.txt: 48641) -.mail.google.com/.*&view=ad& -# @@||magicbricks.com/img/adbanner/ (easylist.txt: 48640) -.magicbricks.com/img/adbanner/ -# @@||mads.com.com/ads/common/faith/*.xml$object-subrequest (easylist.txt: 48638) -.mads.com.com/ads/common/faith/.*\.xml -# @@||mads.cbs.com/mac-ad?$object-subrequest (easylist.txt: 48637) -.mads.cbs.com/mac-ad\? -# @@||macworld.com/www/js/ads/jquery.lazyload-ad.js (easylist.txt: 48636) -.macworld.com/www/js/ads/jquery\.lazyload-ad\.js -# @@||mac-sports.com/ads2/508128.swf (easylist.txt: 48635) -.mac-sports.com/ads2/508128\.swf -# @@||lyngsat-logo.com/icon/flag/az/ad.gif (easylist.txt: 48634) -.lyngsat-logo.com/icon/flag/az/ad\.gif -# @@||luceosolutions.com/recruit/advert_details.php?id=$subdocument (easylist.txt: 48632) -.luceosolutions.com/recruit/advert_details\.php\?id= -# @@||ltassrv.com/crossdomain.xml$object-subrequest (easylist.txt: 48629) -.ltassrv.com/crossdomain\.xml -# @@||lovefilm.com/static/scripts/advertising/dart.overlay.js (easylist.txt: 48627) -.lovefilm.com/static/scripts/advertising/dart\.overlay\.js -# @@||lovefilm.com/ajax/widgets/advertising/$xmlhttprequest (easylist.txt: 48626) -.lovefilm.com/ajax/widgets/advertising/ -# @@||logmein.com/Serve.aspx?ZoneID=$script,~third-party (easylist.txt: 48622) -.logmein.com/Serve\.aspx\?ZoneID= -# @@||llnwd.net^*/js/3rdparty/swfobject$script (easylist.txt: 48621) -.llnwd.net/.*/js/3rdparty/swfobject -# @@||live365.com/web/components/ads/*.html? (easylist.txt: 48616) -.live365.com/web/components/ads/.*\.html\? -# @@||live365.com/scripts/liveads.js (easylist.txt: 48615) -.live365.com/scripts/liveads\.js -# @@||live365.com/mini/blank300x250.html (easylist.txt: 48614) -.live365.com/mini/blank300x250\.html -# @@||live-support.se^*/Admax/$~third-party (easylist.txt: 48611) -.live-support.se/.*/Admax/ -# @@||listings.brokersweb.com/JsonSearchSb.aspx?*&maxAds=$script (easylist.txt: 48610) -.listings.brokersweb.com/JsonSearchSb\.aspx\?.*&maxAds= -# @@||lipsum.com/images/banners/ (easylist.txt: 48609) -.lipsum.com/images/banners/ -# @@||linksave.in/img/usercp/ads.png (easylist.txt: 48605) -.linksave.in/img/usercp/ads\.png -# @@||linkbucks.com/tmpl/$image,stylesheet (easylist.txt: 48603) -.linkbucks.com/tmpl/ -# @@||limecellular.com/resources/images/adv/$~third-party (easylist.txt: 48602) -.limecellular.com/resources/images/adv/ -# @@||lightningcast.net/servlets/getplaylist?*&responsetype=asx&$object (easylist.txt: 48600) -.lightningcast.net/servlets/getplaylist\?.*&responsetype=asx& -# @@||libraryjournal.com/wp-content/plugins/wp-intern-ads/$script,stylesheet (easylist.txt: 48599) -.libraryjournal.com/wp-content/plugins/wp-intern-ads/ -# @@||lesacasino.com/banners/$~third-party (easylist.txt: 48598) -.lesacasino.com/banners/ -# @@||lemon-ads.com^$~document,~third-party (easylist.txt: 48597) -.lemon-ads.com -# @@||lelong.com.my/UserImages/Ads/$image,~third-party (easylist.txt: 48596) -.lelong.com.my/UserImages/Ads/ -# @@||lehighvalleylive.com/static/common/js/ads/ads.js (easylist.txt: 48595) -.lehighvalleylive.com/static/common/js/ads/ads\.js -# @@||larazon.es/larazon-theme/js/publicidad.js? (easylist.txt: 48591) -.larazon.es/larazon-theme/js/publicidad\.js\? -# @@||lanacion.com.ar/*/publicidad/ (easylist.txt: 48590) -.lanacion.com.ar/.*/publicidad/ -# @@||lads.myspace.com/videos/msvideoplayer.swf?$object,object-subrequest (easylist.txt: 48589) -.lads.myspace.com/videos/msvideoplayer\.swf\? -# @@||lacanadaonline.com/hive/images/adv_ (easylist.txt: 48588) -.lacanadaonline.com/hive/images/adv_ -# @@||l.yimg.com/zz/combo?*/advertising.$stylesheet (easylist.txt: 48587) -.l.yimg.com/zz/combo\?.*/advertising\. -# @@||l.yimg.com/*/adservice/ (easylist.txt: 48586) -.l.yimg.com/.*/adservice/ -# @@||ksl.com/resources/classifieds/graphics/ad_ (easylist.txt: 48585) -.ksl.com/resources/classifieds/graphics/ad_ -# @@||krispykreme.com/content/images/ads/ (easylist.txt: 48584) -.krispykreme.com/content/images/ads/ -# @@||kotak.com/banners/$image (easylist.txt: 48583) -.kotak.com/banners/ -# @@||koaa.com/videoplayer/iframe.cfm?*&hide_ads= (easylist.txt: 48581) -.koaa.com/videoplayer/iframe\.cfm\?.*&hide_ads= -# @@||kloubert.com/wp-content/uploads/*/Advertising_$image,~third-party (easylist.txt: 48580) -.kloubert.com/wp-content/uploads/.*/Advertising_ -# @@||kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_$object (easylist.txt: 48579) -.kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_ -# @@||kingofgames.net/gads/kingofgames.swf (easylist.txt: 48576) -.kingofgames.net/gads/kingofgames\.swf -# @@||king5.com/templates/belo_dart_iframed_ad?dartTag=LeaderTop&$subdocument (easylist.txt: 48575) -.king5.com/templates/belo_dart_iframed_ad\?dartTag=LeaderTop& -# @@||kidshealth.org/licensees/licensee1/js/gam.html (easylist.txt: 48574) -.kidshealth.org/licensees/licensee1/js/gam\.html -# @@||kcra.com^*/adpositionsizein-min.js (easylist.txt: 48572) -.kcra.com/.*/adpositionsizein-min\.js -# @@||kcna.kp/images/ads_arrow_ (easylist.txt: 48571) -.kcna.kp/images/ads_arrow_ -# @@||karolinashumilas.com/img/adv/ (easylist.txt: 48570) -.karolinashumilas.com/img/adv/ -# @@||kamernet.nl/Adverts/$~third-party (easylist.txt: 48569) -.kamernet.nl/Adverts/ -# @@||justin-klein.com/banners/ (easylist.txt: 48567) -.justin-klein.com/banners/ -# @@||jsstatic.com/_ads/ (easylist.txt: 48565) -.jsstatic.com/_ads/ -# @@||joyhubs.com/View/*/js/pop.js (easylist.txt: 48563) -.joyhubs.com/View/.*/js/pop\.js -# @@||jobstreet.com/_ads/ (easylist.txt: 48561) -.jobstreet.com/_ads/ -# @@||jobsearch.careerone.com.au^*/bannerad.asmx/ (easylist.txt: 48560) -.jobsearch.careerone.com.au/.*/bannerad\.asmx/ -# @@||jobs.wa.gov.au/images/advertimages/ (easylist.txt: 48559) -.jobs.wa.gov.au/images/advertimages/ -# @@||itweb.co.za/banners/en-cdt*.gif (easylist.txt: 48557) -.itweb.co.za/banners/en-cdt.*\.gif -# @@||itv.com^*/tvshows_adcall_08.js (easylist.txt: 48556) -.itv.com/.*/tvshows_adcall_08\.js -# @@||itv.com^*/flvplayer.swf?$object (easylist.txt: 48555) -.itv.com/.*/flvplayer\.swf\? -# @@||itv.com^*.adserver.js (easylist.txt: 48554) -.itv.com/.*\.adserver\.js -# @@||itv.com/itv/hserver/*/site=itv/$xmlhttprequest (easylist.txt: 48551) -.itv.com/itv/hserver/.*/site=itv/ -# @@||island.lk/userfiles/image/danweem/island.gif (easylist.txt: 48550) -.island.lk/userfiles/image/danweem/island\.gif -# @@||iolproperty.co.za/images/ad_banner.png (easylist.txt: 48546) -.iolproperty.co.za/images/ad_banner\.png -# @@||inviziads.com/crossdomain.xml$object-subrequest (easylist.txt: 48545) -.inviziads.com/crossdomain\.xml -# @@||investors.com/Scripts/AdScript.js? (easylist.txt: 48544) -.investors.com/Scripts/AdScript\.js\? -# @@||interadcorp.com/script/interad.$script,stylesheet (easylist.txt: 48543) -.interadcorp.com/script/interad\. -# @@||intellitxt.com/ast/js/nbcuni/$script (easylist.txt: 48540) -.intellitxt.com/ast/js/nbcuni/ -# @@||intellitext.co^$~third-party (easylist.txt: 48539) -.intellitext.co -# @@||intellicast.com/App_Scripts/ad.min.js (easylist.txt: 48538) -.intellicast.com/App_Scripts/ad\.min\.js -# @@||inspire.net.nz/adverts/$image (easylist.txt: 48537) -.inspire.net.nz/adverts/ -# @@||inserts2online.com/images/site/viewad.gif (easylist.txt: 48530) -.inserts2online.com/images/site/viewad\.gif -# @@||inserts2online.com/*.jsp?*&adid=$subdocument (easylist.txt: 48529) -.inserts2online.com/.*\.jsp\?.*&adid= -# @@||infoworld.com/www/js/ads/gpt_includes.js (easylist.txt: 48524) -.infoworld.com/www/js/ads/gpt_includes\.js -# @@||indiatimes.com/configspace/ads/$object,object-subrequest (easylist.txt: 48523) -.indiatimes.com/configspace/ads/ -# @@||indiaresults.com/advertisements/submit.png (easylist.txt: 48522) -.indiaresults.com/advertisements/submit\.png -# @@||incredibox.fr/js/advertise.js (easylist.txt: 48521) -.incredibox.fr/js/advertise\.js -# @@||incredibox.fr/image/advertise/ (easylist.txt: 48520) -.incredibox.fr/image/advertise/ -# @@||incredibox.fr/advertise/_liste.js (easylist.txt: 48519) -.incredibox.fr/advertise/_liste\.js -# @@||imobie.com/js/anytrans-adv.js (easylist.txt: 48515) -.imobie.com/js/anytrans-adv\.js -# @@||img.weather.weatherbug.com^*/stickers/$image,stylesheet (easylist.txt: 48513) -.img.weather.weatherbug.com/.*/stickers/ -# @@||img.travidia.com^$image (easylist.txt: 48512) -.img.travidia.com -# @@||img.thedailywtf.com/images/ads/ (easylist.txt: 48511) -.img.thedailywtf.com/images/ads/ -# @@||imasdk.googleapis.com/flash/sdkloader/adsapi_3.swf$object-subrequest (easylist.txt: 48504) -.imasdk.googleapis.com/flash/sdkloader/adsapi_3\.swf -# @@||imasdk.googleapis.com/flash/core/3.*/adsapi.swf$object-subrequest (easylist.txt: 48503) -.imasdk.googleapis.com/flash/core/3\..*/adsapi\.swf -# @@||images.nickjr.com/ads/promo/ (easylist.txt: 48499) -.images.nickjr.com/ads/promo/ -# @@||images.nationalgeographic.com/wpf/media-live/graphic/ (easylist.txt: 48498) -.images.nationalgeographic.com/wpf/media-live/graphic/ -# @@||images.mmorpg.com/scripts/advertisement.js (easylist.txt: 48497) -.images.mmorpg.com/scripts/advertisement\.js -# @@||images.frys.com/art/ads/js/$script,stylesheet (easylist.txt: 48496) -.images.frys.com/art/ads/js/ -# @@||images.frys.com/art/ads/images/$image,~third-party (easylist.txt: 48495) -.images.frys.com/art/ads/images/ -# @@||images.forbes.com/video/ads/blank_frame.flv$object-subrequest (easylist.txt: 48494) -.images.forbes.com/video/ads/blank_frame\.flv -# @@||images.dashtickets.co.nz/advertising/featured/$image (easylist.txt: 48493) -.images.dashtickets.co.nz/advertising/featured/ -# @@||ikea.com^*/img/ads/ (easylist.txt: 48489) -.ikea.com/.*/img/ads/ -# @@||ikea.com^*/img/ad_ (easylist.txt: 48488) -.ikea.com/.*/img/ad_ -# @@||iframe.ivillage.com/iframe_render? (easylist.txt: 48486) -.iframe.ivillage.com/iframe_render\? -# @@||ifeelgoood.com/tapcontent-*.swf?clicktag=$object (easylist.txt: 48485) -.ifeelgoood.com/tapcontent-.*\.swf\?clicktag= -# @@||identity-us.com/ads/ads.html (easylist.txt: 48484) -.identity-us.com/ads/ads\.html -# @@||icons.iconarchive.com/icons/$image (easylist.txt: 48483) -.icons.iconarchive.com/icons/ -# @@||icefilms.info/jquery.lazyload-ad-*-min.js (easylist.txt: 48482) -.icefilms.info/jquery\.lazyload-ad-.*-min\.js -# @@||ibnlive.com/videoads/*_ads_*.xml$object-subrequest (easylist.txt: 48480) -.ibnlive.com/videoads/.*_ads_.*\.xml -# @@||i.espn.co.uk/ads/gamemodule_$object (easylist.txt: 48479) -.i.espn.co.uk/ads/gamemodule_ -# @@||i.cdn.turner.com^*/adserviceadapter.swf (easylist.txt: 48477) -.i.cdn.turner.com/.*/adserviceadapter\.swf -# @@||huntington.com/Script/AdManager.js (easylist.txt: 48476) -.huntington.com/Script/AdManager\.js -# @@||hulu.com/published/*.mp4 (easylist.txt: 48474) -.hulu.com/published/.*\.mp4 -# @@||hulu.com/published/*.flv (easylist.txt: 48473) -.hulu.com/published/.*\.flv -# @@||hulkshare.com/js/adsmanager.js (easylist.txt: 48472) -.hulkshare.com/js/adsmanager\.js -# @@||huffingtonpost.com/images/ads/$~third-party (easylist.txt: 48470) -.huffingtonpost.com/images/ads/ -# @@||huffingtonpost.com/_uac/adpage.html (easylist.txt: 48469) -.huffingtonpost.com/_uac/adpage\.html -# @@||huffingtonpost.co.uk/_uac/adpage.html (easylist.txt: 48468) -.huffingtonpost.co.uk/_uac/adpage\.html -# @@||hp.com^*/scripts/ads/$~third-party (easylist.txt: 48467) -.hp.com/.*/scripts/ads/ -# @@||howcast.com/flash/assets/ads/liverail.swf (easylist.txt: 48466) -.howcast.com/flash/assets/ads/liverail\.swf -# @@||houstonpress.com/adindex/$xmlhttprequest (easylist.txt: 48465) -.houstonpress.com/adindex/ -# @@||housebeautiful.com/cm/shared/scripts/refreshads-*.js (easylist.txt: 48464) -.housebeautiful.com/cm/shared/scripts/refreshads-.*\.js -# @@||housebeautiful.com/ams/page-ads.js (easylist.txt: 48463) -.housebeautiful.com/ams/page-ads\.js -# @@||hotnewhiphop.com/web_root/images/ads/banner-*.png (easylist.txt: 48462) -.hotnewhiphop.com/web_root/images/ads/banner-.*\.png -# @@||homedepot.com^*/thdGoogleAdSense.js (easylist.txt: 48461) -.homedepot.com/.*/thdGoogleAdSense\.js -# @@||hologfx.com/banners/$image,~third-party (easylist.txt: 48460) -.hologfx.com/banners/ -# @@||historyextra.com^*_advertorial$stylesheet (easylist.txt: 48459) -.historyextra.com/.*_advertorial -# @@||hipsterhitler.com/wp-content/webcomic/$image (easylist.txt: 48458) -.hipsterhitler.com/wp-content/webcomic/ -# @@||hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement.jpg (easylist.txt: 48457) -.hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement\.jpg -# @@||hillvue.com/banners/$image,~third-party (easylist.txt: 48456) -.hillvue.com/banners/ -# @@||hentai-foundry.com/themes/default/images/buttons/add_comment_icon.png (easylist.txt: 48455) -.hentai-foundry.com/themes/default/images/buttons/add_comment_icon\.png -# @@||hellotv.in/livetv/advertisements.xml$object-subrequest (easylist.txt: 48454) -.hellotv.in/livetv/advertisements\.xml -# @@||hebdenbridge.co.uk/ads/images/smallads.png (easylist.txt: 48453) -.hebdenbridge.co.uk/ads/images/smallads\.png -# @@||healthline.com/v2/ad-mr2-iframe?useAdsHost=*&dfpAdSite= (easylist.txt: 48452) -.healthline.com/v2/ad-mr2-iframe\?useAdsHost=.*&dfpAdSite= -# @@||healthline.com/v2/ad-leaderboard-iframe?$subdocument (easylist.txt: 48451) -.healthline.com/v2/ad-leaderboard-iframe\? -# @@||healthline.com/resources/base/js/responsive-ads.js? (easylist.txt: 48450) -.healthline.com/resources/base/js/responsive-ads\.js\? -# @@||healthadnet.adprimemedia.com/vn/vna/data/ad.php$object-subrequest (easylist.txt: 48448) -.healthadnet.adprimemedia.com/vn/vna/data/ad\.php -# @@||hbindependent.com/hive/images/adv_ (easylist.txt: 48447) -.hbindependent.com/hive/images/adv_ -# @@||hawaii-scuba.com/ads_styles.css (easylist.txt: 48446) -.hawaii-scuba.com/ads_styles\.css -# @@||harmonsgrocery.com/ads/$image (easylist.txt: 48445) -.harmonsgrocery.com/ads/ -# @@||hallo.co.uk/advert/$~third-party (easylist.txt: 48444) -.hallo.co.uk/advert/ -# @@||hafeezcentre.pk^*/ads_images/$image,~third-party (easylist.txt: 48443) -.hafeezcentre.pk/.*/ads_images/ -# @@||gws.ign.com/ws/search?*&google_adpage=$script (easylist.txt: 48442) -.gws.ign.com/ws/search\?.*&google_adpage= -# @@||guysen.com/script/ads.js (easylist.txt: 48441) -.guysen.com/script/ads\.js -# @@||gumtree.com^*/postAd.js (easylist.txt: 48440) -.gumtree.com/.*/postAd\.js -# @@||gulflive.com/static/common/js/ads/ads.js (easylist.txt: 48439) -.gulflive.com/static/common/js/ads/ads\.js -# @@||guim.co.uk^*/styles/wide/google-ads.css (easylist.txt: 48438) -.guim.co.uk/.*/styles/wide/google-ads\.css -# @@||guardianapps.co.uk^*/advertisement-features$xmlhttprequest (easylist.txt: 48437) -.guardianapps.co.uk/.*/advertisement-features -# @@||guardian4.com/banners/$image,~third-party (easylist.txt: 48436) -.guardian4.com/banners/ -# @@||gotomeeting.com/images/ad/$image,stylesheet (easylist.txt: 48434) -.gotomeeting.com/images/ad/ -# @@||gotoassist.com/images/ad/ (easylist.txt: 48433) -.gotoassist.com/images/ad/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?format=728x90^$document,subdocument (easylist.txt: 48424) -.google.com/uds/modules/elements/newsshow/iframe\.html\?format=728x90[^\w%.-] -# @@||google.com/search?q=$xmlhttprequest (easylist.txt: 48419) -.google.com/search\?q= -# @@||google.com/_static/images/*/ads.png (easylist.txt: 48411) -.google.com/_static/images/.*/ads\.png -# @@||google.com/_/apps-static/*/socialads/$script,stylesheet (easylist.txt: 48410) -.google.com/_/apps-static/.*/socialads/ -# @@||google.*/webpagethumbnail?*&query=$script (easylist.txt: 48409) -.google.*./(.*/)?webpagethumbnail\?.*&query= -# @@||google.*/search?sclient=*&q=$xmlhttprequest (easylist.txt: 48408) -.google.*./(.*/)?search\?sclient=.*&q= -# @@||google.*/s?*&q=$xmlhttprequest (easylist.txt: 48407) -.google.*./(.*/)?s\?.*&q= -# @@||goodyhoo.com/banners/ (easylist.txt: 48406) -.goodyhoo.com/banners/ -# @@||goember.com/ad/*.xml?$xmlhttprequest (easylist.txt: 48405) -.goember.com/ad/.*\.xml\? -# @@||godtube.com/resource/mediaplayer/*&adzone=$object-subrequest (easylist.txt: 48404) -.godtube.com/resource/mediaplayer/.*&adzone= -# @@||godlessnightsfilm.co.uk/scripts/ad-gallery/ (easylist.txt: 48403) -.godlessnightsfilm.co.uk/scripts/ad-gallery/ -# @@||gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-*.swf$object (easylist.txt: 48401) -.gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-.*\.swf -# @@||gmfreeze.org/site_media//uploads/page_ad_images/$image (easylist.txt: 48399) -.gmfreeze.org/site_media//uploads/page_ad_images/ -# @@||globaltv.com/js/smdg_ads.js (easylist.txt: 48398) -.globaltv.com/js/smdg_ads\.js -# @@||glendalenewspress.com/hive/images/adv_ (easylist.txt: 48396) -.glendalenewspress.com/hive/images/adv_ -# @@||glamour.com/aspen/js/dartCall.js (easylist.txt: 48395) -.glamour.com/aspen/js/dartCall\.js -# @@||glamour.com/aspen/components/cn-fe-ads/js/cn.dart.js (easylist.txt: 48394) -.glamour.com/aspen/components/cn-fe-ads/js/cn\.dart\.js -# @@||gitorious.org/adv/$~third-party,xmlhttprequest (easylist.txt: 48393) -.gitorious.org/adv/ -# @@||girlsplay.com/banners/ima3_preloader_$object (easylist.txt: 48392) -.girlsplay.com/banners/ima3_preloader_ -# @@||getgamesgo.com/Banners/$image,~third-party (easylist.txt: 48388) -.getgamesgo.com/Banners/ -# @@||geektime.com/wp-content/uploads/*/Google-Adsense-$image,~third-party (easylist.txt: 48387) -.geektime.com/wp-content/uploads/.*/Google-Adsense- -# @@||gcultra.com/js/exit_popup.js (easylist.txt: 48386) -.gcultra.com/js/exit_popup\.js -# @@||garrysmod.org/ads/$image,script,stylesheet (easylist.txt: 48385) -.garrysmod.org/ads/ -# @@||garmin.com^*/Sponsors.js? (easylist.txt: 48384) -.garmin.com/.*/Sponsors\.js\? -# @@||gamesgames.com/vda/friendly-iframe.html?videoPreroll300x250$subdocument (easylist.txt: 48381) -.gamesgames.com/vda/friendly-iframe\.html\?videoPreroll300x250 -# @@||games.washingtonpost.com/games/$elemhide (easylist.txt: 48380) -.games.washingtonpost.com/games/ -# @@||games.cnn.com/ad/$object,object-subrequest,subdocument (easylist.txt: 48379) -.games.cnn.com/ad/ -# @@||gameitnow.com/ads/google_loader.swf$object (easylist.txt: 48378) -.gameitnow.com/ads/google_loader\.swf -# @@||gameitnow.com/ads/gameadvertentie.php?$subdocument (easylist.txt: 48377) -.gameitnow.com/ads/gameadvertentie\.php\? -# @@||gamehouse.com/adiframe/preroll-ad/$subdocument (easylist.txt: 48376) -.gamehouse.com/adiframe/preroll-ad/ -# @@||game.zylom.com^*/cm_loader.*.swf?$object (easylist.txt: 48375) -.game.zylom.com/.*/cm_loader\..*\.swf\? -# @@||game.zylom.com^*.swf?*&adURL=$object (easylist.txt: 48374) -.game.zylom.com/.*\.swf\?.*&adURL= -# @@||gactv.com^*/javascript/ad/coread/$script (easylist.txt: 48373) -.gactv.com/.*/javascript/ad/coread/ -# @@||g4tv.com/clientscriptoptimizer.ashx?*-ads.$script,stylesheet (easylist.txt: 48372) -.g4tv.com/clientscriptoptimizer\.ashx\?.*-ads\. -# @@||g.doubleclick.net/pagead/ads?ad_type=text_dynamicimage_flash^$object-subrequest (easylist.txt: 48371) -.g.doubleclick.net/pagead/ads\?ad_type=text_dynamicimage_flash[^\w%.-] -# @@||funiaste.net/obrazki/*&adtype= (easylist.txt: 48362) -.funiaste.net/obrazki/.*&adtype= -# @@||fs-freeware.net/images/jdownloads/downloadimages/banner_ads.png (easylist.txt: 48360) -.fs-freeware.net/images/jdownloads/downloadimages/banner_ads\.png -# @@||freeviewnz.tv^*/uploads/ads/ (easylist.txt: 48358) -.freeviewnz.tv/.*/uploads/ads/ -# @@||freeride.co.uk/img/admarket/$~third-party (easylist.txt: 48357) -.freeride.co.uk/img/admarket/ -# @@||freeonlinegames.com/advertising/google-loader.swf?$object (easylist.txt: 48356) -.freeonlinegames.com/advertising/google-loader\.swf\? -# @@||freeonlinegames.com/advertising/adaptv-as3.swf?$object (easylist.txt: 48355) -.freeonlinegames.com/advertising/adaptv-as3\.swf\? -# @@||freeads.in/freead.png (easylist.txt: 48354) -.freeads.in/freead\.png -# @@||freeads.in/classifieds/common/postad.css (easylist.txt: 48353) -.freeads.in/classifieds/common/postad\.css -# @@||forums.realgm.com/banners/ (easylist.txt: 48352) -.forums.realgm.com/banners/ -# @@||fortune.com/data/chartbeat/$xmlhttprequest (easylist.txt: 48351) -.fortune.com/data/chartbeat/ -# @@||forex.com/adx/$image (easylist.txt: 48350) -.forex.com/adx/ -# @@||folklands.com/health/advertise_with_us_files/$~third-party (easylist.txt: 48348) -.folklands.com/health/advertise_with_us_files/ -# @@||flysaa.com^*/jquery.adserver.js (easylist.txt: 48345) -.flysaa.com/.*/jquery\.adserver\.js -# @@||flyerservices.com/cached_banner_pages/*bannerid= (easylist.txt: 48344) -.flyerservices.com/cached_banner_pages/.*bannerid= -# @@||flossmanuals.net/site_static/xinha/plugins/DoubleClick/$~third-party (easylist.txt: 48343) -.flossmanuals.net/site_static/xinha/plugins/DoubleClick/ -# @@||flipboard.com/media/uploads/adv_$image,~third-party (easylist.txt: 48341) -.flipboard.com/media/uploads/adv_ -# @@||fixtracking.com/images/ad-$image,~third-party (easylist.txt: 48339) -.fixtracking.com/images/ad- -# @@||filestage.to/design/player/player.swf?*&popunder=$object,third-party (easylist.txt: 48338) -.filestage.to/design/player/player\.swf\?.*&popunder= -# @@||files.coloribus.com^$image,~third-party (easylist.txt: 48337) -.files.coloribus.com -# @@||fifa.com/flash/videoplayer/libs/advert_$object-subrequest (easylist.txt: 48336) -.fifa.com/flash/videoplayer/libs/advert_ -# @@||festina.com/txt/advertising.xml$object-subrequest (easylist.txt: 48334) -.festina.com/txt/advertising\.xml -# @@||feeds.videogamer.com^*/videoad.xml?$object-subrequest (easylist.txt: 48333) -.feeds.videogamer.com/.*/videoad\.xml\? -# @@||feedroom.speedera.net/static.feedroom.com/affiliate/ (easylist.txt: 48332) -.feedroom.speedera.net/static\.feedroom\.com/affiliate/ -# @@||fbcdn.net/rsrc.php/*-aD2.js$script (easylist.txt: 48330) -.fbcdn.net/rsrc\.php/.*-aD2\.js -# @@||farecompare.com^*/farecomp/ (easylist.txt: 48329) -.farecompare.com/.*/farecomp/ -# @@||faceinhole.com/adsense.swf$object-subrequest (easylist.txt: 48328) -.faceinhole.com/adsense\.swf -# @@||extras.chron.com/banners/*/social_icons/$image,subdocument (easylist.txt: 48325) -.extras.chron.com/banners/.*/social_icons/ -# @@||explosm.net/db/files/comics/$image (easylist.txt: 48324) -.explosm.net/db/files/comics/ -# @@||explosm.net/comics/$image (easylist.txt: 48323) -.explosm.net/comics/ -# @@||expedia.com/minify/ads-min-*.js? (easylist.txt: 48322) -.expedia.com/minify/ads-min-.*\.js\? -# @@||expedia.com/js.ng/*&PLACEMENT=CXHOMECORE_$script (easylist.txt: 48321) -.expedia.com/js\.ng/.*&PLACEMENT=CXHOMECORE_ -# @@||expedia.com/html.cms/TPID=*&ADSIZE=$subdocument (easylist.txt: 48320) -.expedia.com/html\.cms/TPID=.*&ADSIZE= -# @@||expedia.com/daily/common/msi.asp (easylist.txt: 48319) -.expedia.com/daily/common/msi\.asp -# @@||expedia.co.nz/html.cms/tpid=*&adsize= (easylist.txt: 48318) -.expedia.co.nz/html\.cms/tpid=.*&adsize= -# @@||ewallpapers.eu/ads/logo.jpg (easylist.txt: 48316) -.ewallpapers.eu/ads/logo\.jpg -# @@||eventim.de/obj/basic/ad2_obj/layout/ (easylist.txt: 48315) -.eventim.de/obj/basic/ad2_obj/layout/ -# @@||eventcinemas.co.nz^*_adhub_server_$script (easylist.txt: 48314) -.eventcinemas.co.nz/.*_adhub_server_ -# @@||evanscycles.com/ads/$image,~third-party (easylist.txt: 48313) -.evanscycles.com/ads/ -# @@||esquire.com/ams/page-ads.js?$script (easylist.txt: 48312) -.esquire.com/ams/page-ads\.js\? -# @@||espn.go.com^*/espn360/banner?$subdocument (easylist.txt: 48307) -.espn.go.com/.*/espn360/banner\? -# @@||espn.co.uk/ads/gamemodule_v0.2.swf$object (easylist.txt: 48306) -.espn.co.uk/ads/gamemodule_v0\.2\.swf -# @@||equippers.com/absolutebm.aspx?$script (easylist.txt: 48305) -.equippers.com/absolutebm\.aspx\? -# @@||equippers.com/abm.aspx?$script (easylist.txt: 48304) -.equippers.com/abm\.aspx\? -# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview.main.js? (easylist.txt: 48303) -.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview\.main\.js\? -# @@||epicgameads.com/crossdomain.xml$object-subrequest (easylist.txt: 48300) -.epicgameads.com/crossdomain\.xml -# @@||engrish.com/wp-content/uploads/*/advertisement-$image,~third-party (easylist.txt: 48299) -.engrish.com/wp-content/uploads/.*/advertisement- -# @@||englishanimes.com/wp-content/themes/englishanimes/js/pop.js (easylist.txt: 48298) -.englishanimes.com/wp-content/themes/englishanimes/js/pop\.js -# @@||engadget.com/_uac/adpage.html$subdocument (easylist.txt: 48296) -.engadget.com/_uac/adpage\.html -# @@||empireonline.com/images/image_index/300x250/ (easylist.txt: 48295) -.empireonline.com/images/image_index/300x250/ -# @@||emergencymedicalparamedic.com/wp-content/themes/AdSense/style.css (easylist.txt: 48294) -.emergencymedicalparamedic.com/wp-content/themes/AdSense/style\.css -# @@||emailbidding.com^*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 48293) -.emailbidding.com/.*/advertiser/ -# @@||eluxe.ca^*_doubleclick.js*.pagespeed.$script (easylist.txt: 48292) -.eluxe.ca/.*_doubleclick\.js.*\.pagespeed\. -# @@||elephantjournal.com/ad_art/ (easylist.txt: 48291) -.elephantjournal.com/ad_art/ -# @@||eightinc.com/admin/zone.php?zoneid=$xmlhttprequest (easylist.txt: 48290) -.eightinc.com/admin/zone\.php\?zoneid= -# @@||ehow.co.uk/frames/ad.html?$subdocument (easylist.txt: 48289) -.ehow.co.uk/frames/ad\.html\? -# @@||egotastic.us.intellitxt.com/intellitxt/front.asp (easylist.txt: 48288) -.egotastic.us.intellitxt.com/intellitxt/front\.asp -# @@||eeweb.com/comics/*_ads-$image (easylist.txt: 48287) -.eeweb.com/comics/.*_ads- -# @@||eduspec.science.ru.nl^*-images/ad- (easylist.txt: 48286) -.eduspec.science.ru.nl/.*-images/ad- -# @@||edmontonsun.com/assets/js/dfp.js? (easylist.txt: 48285) -.edmontonsun.com/assets/js/dfp\.js\? -# @@||edmontonjournal.com/js/adsync/adsynclibrary.js (easylist.txt: 48284) -.edmontonjournal.com/js/adsync/adsynclibrary\.js -# @@||edgar.pro-g.co.uk/data/*/videos/adverts/$object-subrequest (easylist.txt: 48281) -.edgar.pro-g.co.uk/data/.*/videos/adverts/ -# @@||economist.com.na^*/banners/cartoon_ (easylist.txt: 48280) -.economist.com.na/.*/banners/cartoon_ -# @@||eboundservices.com/iframe/newads/iframe.php?stream=$subdocument (easylist.txt: 48279) -.eboundservices.com/iframe/newads/iframe\.php\?stream= -# @@||ebayrtm.com/rtm?rtmcmd&a=json&cb=parent.$script (easylist.txt: 48278) -.ebayrtm.com/rtm\?rtmcmd&a=json&cb=parent\. -# @@||easyfundraising.org.uk/images/home/*-120x60.$image (easylist.txt: 48277) -.easyfundraising.org.uk/images/home/.*-120x60\. -# @@||earthtv.com/player_tmp/overlayad.js (easylist.txt: 48276) -.earthtv.com/player_tmp/overlayad\.js -# @@||earthtechling.com^*/imasters-wp-adserver-styles.css (easylist.txt: 48275) -.earthtechling.com/.*/imasters-wp-adserver-styles\.css -# @@||earthcam.com/swf/ads5.swf (easylist.txt: 48274) -.earthcam.com/swf/ads5\.swf -# @@||eagleboys.com.au/eagleboys/*/ads/$~third-party (easylist.txt: 48273) -.eagleboys.com.au/eagleboys/.*/ads/ -# @@||eafyfsuh.net/scripts/generated/key.js?t=$script (easylist.txt: 48272) -.eafyfsuh.net/scripts/generated/key\.js\?t= -# @@||eafyfsuh.net/intermission/loadTargetUrl?t=$xmlhttprequest (easylist.txt: 48271) -.eafyfsuh.net/intermission/loadTargetUrl\?t= -# @@||dyncdn.buzznet.com/catfiles/?f=dojo/*.googleadservices.$script (easylist.txt: 48270) -.dyncdn.buzznet.com/catfiles/\?f=dojo/.*\.googleadservices\. -# @@||dx.com/openx/$image,~third-party (easylist.txt: 48269) -.dx.com/openx/ -# @@||dwiextreme.com/banners/dwiextreme$image (easylist.txt: 48268) -.dwiextreme.com/banners/dwiextreme -# @@||dstw.adgear.com/crossdomain.xml$object-subrequest (easylist.txt: 48266) -.dstw.adgear.com/crossdomain\.xml -# @@||drupal.org^*/revealads.png (easylist.txt: 48265) -.drupal.org/.*/revealads\.png -# @@||drunkard.com/banners/modern-drunkard-book.jpg (easylist.txt: 48264) -.drunkard.com/banners/modern-drunkard-book\.jpg -# @@||drunkard.com/banners/drunkard-gear.jpg (easylist.txt: 48263) -.drunkard.com/banners/drunkard-gear\.jpg -# @@||drunkard.com/banners/drunk-korps-banner.jpg (easylist.txt: 48262) -.drunkard.com/banners/drunk-korps-banner\.jpg -# @@||dropzone.no/sap/its/gfx/top_ad_$image,~third-party (easylist.txt: 48261) -.dropzone.no/sap/its/gfx/top_ad_ -# @@||dragon-mania-legends-wiki.mobga.me^*_Advertisement_ (easylist.txt: 48256) -.dragon-mania-legends-wiki.mobga.me/.*_Advertisement_ -# @@||dragon-mania-legends-wiki.mobga.me^*_advertisement. (easylist.txt: 48255) -.dragon-mania-legends-wiki.mobga.me/.*_advertisement\. -# @@||downvids.net/ads.js (easylist.txt: 48254) -.downvids.net/ads\.js -# @@||dove.saymedia.com^$xmlhttprequest (easylist.txt: 48253) -.dove.saymedia.com -# @@||doubleclick.net^*/targeted.optimum/*;sz=968x286;$image,popup,script (easylist.txt: 48250) -.doubleclick.net/.*/targeted\.optimum/.*;sz=968x286; -# @@||doubleclick.net^*/adj/wwe.shows/ecw_ecwreplay;*;sz=624x325;$script (easylist.txt: 48246) -.doubleclick.net/.*/adj/wwe\.shows/ecw_ecwreplay;.*;sz=624x325; -# @@||doubleclick.net/pfadx/umg.*;sz=10x$script (easylist.txt: 48242) -.doubleclick.net/pfadx/umg\..*;sz=10x -# @@||doubleclick.net/N2605/adi/MiLB.com/scoreboard;*;sz=728x90;$subdocument (easylist.txt: 48237) -.doubleclick.net/N2605/adi/MiLB\.com/scoreboard;.*;sz=728x90; -# @@||doubleclick.net/adj/pong.all/*;dcopt=ist;$script (easylist.txt: 48231) -.doubleclick.net/adj/pong\.all/.*;dcopt=ist; -# @@||doubleclick.net/adj/nbcu.nbc/videoplayer-$script (easylist.txt: 48228) -.doubleclick.net/adj/nbcu\.nbc/videoplayer- -# @@||doubleclick.net/adj/imdb2.consumer.video/*;sz=320x240,$script (easylist.txt: 48226) -.doubleclick.net/adj/imdb2\.consumer\.video/.*;sz=320x240, -# @@||doubleclick.net/adj/ctv.muchmusicblog.com/$script (easylist.txt: 48224) -.doubleclick.net/adj/ctv\.muchmusicblog\.com/ -# @@||doubleclick.net/adi/amzn.*;ri=digital-music-track;$subdocument (easylist.txt: 48211) -.doubleclick.net/adi/amzn\..*;ri=digital-music-track; -# @@||doubleclick.net/ad/can/chow/$object-subrequest (easylist.txt: 48207) -.doubleclick.net/ad/can/chow/ -# @@||domandgeri.com/banners/$~third-party (easylist.txt: 48204) -.domandgeri.com/banners/ -# @@||dolphinimaging.com/banners/ (easylist.txt: 48203) -.dolphinimaging.com/banners/ -# @@||dolphinimaging.com/banners.js (easylist.txt: 48202) -.dolphinimaging.com/banners\.js -# @@||dolidoli.com/images/ads- (easylist.txt: 48200) -.dolidoli.com/images/ads- -# @@||doityourself.com^*/shared/ads.css$stylesheet (easylist.txt: 48199) -.doityourself.com/.*/shared/ads\.css -# @@||disruptorbeam.com/assets/uploaded/ads/$image,~third-party (easylist.txt: 48196) -.disruptorbeam.com/assets/uploaded/ads/ -# @@||disneyphotopass.com/adimages/ (easylist.txt: 48195) -.disneyphotopass.com/adimages/ -# @@||disney.go.com/dxd/data/ads/game_ad.xml?gameid=$object-subrequest (easylist.txt: 48194) -.disney.go.com/dxd/data/ads/game_ad\.xml\?gameid= -# @@||disney.com.au/global/swf/banner300x250.swf (easylist.txt: 48193) -.disney.com.au/global/swf/banner300x250\.swf -# @@||discovery.com/components/consolidate-static/?files=*/adsense- (easylist.txt: 48192) -.discovery.com/components/consolidate-static/\?files=.*/adsense- -# @@||directwonen.nl/adverts/$~third-party (easylist.txt: 48191) -.directwonen.nl/adverts/ -# @@||directtextbook.com^*.php?ad_ (easylist.txt: 48190) -.directtextbook.com/.*\.php\?ad_ -# @@||direct.fairfax.com.au/hserver/*/site=vid.*/adtype=embedded/$script (easylist.txt: 48188) -.direct.fairfax.com.au/hserver/.*/site=vid\..*/adtype=embedded/ -# @@||digsby.com/affiliate/banners/$image,~third-party (easylist.txt: 48187) -.digsby.com/affiliate/banners/ -# @@||digiads.com.au/images/shared/misc/ad-disclaimer.gif (easylist.txt: 48186) -.digiads.com.au/images/shared/misc/ad-disclaimer\.gif -# @@||digiads.com.au/css/24032006/adstyle.css (easylist.txt: 48185) -.digiads.com.au/css/24032006/adstyle\.css -# @@||deviantart.net/minish/advertising/downloadad_splash_close.png (easylist.txt: 48184) -.deviantart.net/minish/advertising/downloadad_splash_close\.png -# @@||design-essentials.net/affiliate/$script,subdocument (easylist.txt: 48182) -.design-essentials.net/affiliate/ -# @@||delvenetworks.com/player/*_ad_$subdocument (easylist.txt: 48180) -.delvenetworks.com/player/.*_ad_ -# @@||delish.com/cm/shared/scripts/refreshads-*.js (easylist.txt: 48178) -.delish.com/cm/shared/scripts/refreshads-.*\.js -# @@||deliciousdigital.com/data/our-work/advertising/ (easylist.txt: 48177) -.deliciousdigital.com/data/our-work/advertising/ -# @@||delicious.com^*/compose?url=$xmlhttprequest (easylist.txt: 48176) -.delicious.com/.*/compose\?url= -# @@||dealerimg.com/Ads/$image (easylist.txt: 48175) -.dealerimg.com/Ads/ -# @@||dc.tremormedia.com/crossdomain.xml$object-subrequest (easylist.txt: 48174) -.dc.tremormedia.com/crossdomain\.xml -# @@||dawanda.com^*/adcenter.js$~third-party (easylist.txt: 48173) -.dawanda.com/.*/adcenter\.js -# @@||dawanda.com^*/ad_center.css$~third-party (easylist.txt: 48172) -.dawanda.com/.*/ad_center\.css -# @@||davidsilverspares.co.uk/graphics/*_ad.gif$~third-party (easylist.txt: 48171) -.davidsilverspares.co.uk/graphics/.*_ad\.gif -# @@||davescomputertips.com/images/ads/paypal.png (easylist.txt: 48170) -.davescomputertips.com/images/ads/paypal\.png -# @@||dataknet.com/s.axd?$stylesheet (easylist.txt: 48169) -.dataknet.com/s\.axd\? -# @@||data.panachetech.com/crossdomain.xml$object-subrequest (easylist.txt: 48167) -.data.panachetech.com/crossdomain\.xml -# @@||dart.clearchannel.com/crossdomain.xml$object-subrequest (easylist.txt: 48166) -.dart.clearchannel.com/crossdomain\.xml -# @@||danielechevarria.com^*/advertising-$~third-party (easylist.txt: 48165) -.danielechevarria.com/.*/advertising- -# @@||dailypilot.com/hive/images/adv_ (easylist.txt: 48164) -.dailypilot.com/hive/images/adv_ -# @@||dailymotion.com/videowall/*&clickTAG=http (easylist.txt: 48163) -.dailymotion.com/videowall/.*&clickTAG=http -# @@||dailymail.co.uk^*/googleads--.js (easylist.txt: 48162) -.dailymail.co.uk/.*/googleads--\.js -# @@||dailyhiit.com/sites/*/ad-images/ (easylist.txt: 48161) -.dailyhiit.com/sites/.*/ad-images/ -# @@||dailycaller.com/wp-content/plugins/advertisements/$script (easylist.txt: 48160) -.dailycaller.com/wp-content/plugins/advertisements/ -# @@||d3con.org/data1/$image,~third-party (easylist.txt: 48156) -.d3con.org/data1/ -# @@||cydiaupdates.net/CydiaUpdates.com_600x80.png (easylist.txt: 48154) -.cydiaupdates.net/CydiaUpdates\.com_600x80\.png -# @@||cwtv.com^$elemhide (easylist.txt: 48153) -.cwtv.com -# @@||cvs.com/webcontent/images/weeklyad/adcontent/$~third-party (easylist.txt: 48152) -.cvs.com/webcontent/images/weeklyad/adcontent/ -# @@||cubeecraft.com/openx/$~third-party (easylist.txt: 48151) -.cubeecraft.com/openx/ -# @@||ctv.ca/players/mediaplayer/*/AdManager.js^ (easylist.txt: 48150) -.ctv.ca/players/mediaplayer/.*/AdManager\.js[^\w%.-] -# @@||css.wpdigital.net/wpost/css/combo?*/ads.css (easylist.txt: 48149) -.css.wpdigital.net/wpost/css/combo\?.*/ads\.css -# @@||csoonline.com/js/doubleclick_ads.js? (easylist.txt: 48148) -.csoonline.com/js/doubleclick_ads\.js\? -# @@||csmonitor.com/advertising/sharetools.php$subdocument (easylist.txt: 48147) -.csmonitor.com/advertising/sharetools\.php -# @@||csair.com/*/adpic.js (easylist.txt: 48146) -.csair.com/.*/adpic\.js -# @@||cricketcountry.com/js/ad-gallery.js$script (easylist.txt: 48145) -.cricketcountry.com/js/ad-gallery\.js -# @@||cricbuzz.com/includes/ads/schedule/$~third-party (easylist.txt: 48144) -.cricbuzz.com/includes/ads/schedule/ -# @@||cricbuzz.com/includes/ads/images/worldcup/more_arrow_$image (easylist.txt: 48143) -.cricbuzz.com/includes/ads/images/worldcup/more_arrow_ -# @@||cricbuzz.com/includes/ads/images/wct20/$image (easylist.txt: 48142) -.cricbuzz.com/includes/ads/images/wct20/ -# @@||cracker.com.au^*/cracker-classifieds-free-ads.$~document (easylist.txt: 48141) -.cracker.com.au/.*/cracker-classifieds-free-ads\. -# @@||countryliving.com/ams/page-ads.js (easylist.txt: 48140) -.countryliving.com/ams/page-ads\.js -# @@||cosmopolitan.com/cm/shared/scripts/refreshads-$script (easylist.txt: 48139) -.cosmopolitan.com/cm/shared/scripts/refreshads- -# @@||cosmopolitan.com/ams/page-ads.js (easylist.txt: 48138) -.cosmopolitan.com/ams/page-ads\.js -# @@||corporatehousingbyowner.com/js/ad-gallery.js (easylist.txt: 48137) -.corporatehousingbyowner.com/js/ad-gallery\.js -# @@||copesdistributing.com/images/adds/banner_$~third-party (easylist.txt: 48136) -.copesdistributing.com/images/adds/banner_ -# @@||content.hallmark.com/scripts/ecards/adspot.js (easylist.txt: 48135) -.content.hallmark.com/scripts/ecards/adspot\.js -# @@||content.datingfactory.com/promotools/$script (easylist.txt: 48134) -.content.datingfactory.com/promotools/ -# @@||contactmusic.com/advertpro/servlet/view/dynamic/$object-subrequest (easylist.txt: 48131) -.contactmusic.com/advertpro/servlet/view/dynamic/ -# @@||constructalia.com/banners/$image,~third-party (easylist.txt: 48130) -.constructalia.com/banners/ -# @@||connectingdirectories.com/advertisers/$~third-party,xmlhttprequest (easylist.txt: 48129) -.connectingdirectories.com/advertisers/ -# @@||comsec.com.au^*/homepage_banner_ad.gif (easylist.txt: 48127) -.comsec.com.au/.*/homepage_banner_ad\.gif -# @@||computerworld.com/resources/scripts/lib/doubleclick_ads.js$script (easylist.txt: 48126) -.computerworld.com/resources/scripts/lib/doubleclick_ads\.js -# @@||completemarkets.com/pictureHandler.ashx?adid=$image,~third-party (easylist.txt: 48125) -.completemarkets.com/pictureHandler\.ashx\?adid= -# @@||commarts.com/Images/missinganissue_ad.gif (easylist.txt: 48124) -.commarts.com/Images/missinganissue_ad\.gif -# @@||colorado.gov/airquality/psi/adv.png (easylist.txt: 48121) -.colorado.gov/airquality/psi/adv\.png -# @@||collective-media.net/crossdomain.xml$object-subrequest (easylist.txt: 48119) -.collective-media.net/crossdomain\.xml -# @@||coastlinepilot.com/hive/images/adv_ (easylist.txt: 48118) -.coastlinepilot.com/hive/images/adv_ -# @@||cnet.com/ad/ad-cookie/*?_=$xmlhttprequest (easylist.txt: 48117) -.cnet.com/ad/ad-cookie/.*\?_= -# @@||clustrmaps.com/images/clustrmaps-back-soon.jpg$third-party (easylist.txt: 48116) -.clustrmaps.com/images/clustrmaps-back-soon\.jpg -# @@||club777.com/banners/$~third-party (easylist.txt: 48115) -.club777.com/banners/ -# @@||clickbd.com^*/ads/$image,~third-party (easylist.txt: 48112) -.clickbd.com/.*/ads/ -# @@||cleveland.com/static/common/js/ads/ads.js (easylist.txt: 48111) -.cleveland.com/static/common/js/ads/ads\.js -# @@||classistatic.com^*/banner-ads/ (easylist.txt: 48110) -.classistatic.com/.*/banner-ads/ -# @@||classifieds.wsj.com/ad/$~third-party (easylist.txt: 48109) -.classifieds.wsj.com/ad/ -# @@||classifiedads.com/adbox.php$xmlhttprequest (easylist.txt: 48108) -.classifiedads.com/adbox\.php -# @@||cio.com/www/js/ads/gpt_includes.js (easylist.txt: 48107) -.cio.com/www/js/ads/gpt_includes\.js -# @@||christianhouseshare.com.au/images/publish_ad1.jpg (easylist.txt: 48106) -.christianhouseshare.com.au/images/publish_ad1\.jpg -# @@||chicavenue.com.au/assets/ads/$image,~third-party (easylist.txt: 48105) -.chicavenue.com.au/assets/ads/ -# @@||chibis.adotube.com/napp/$object,object-subrequest (easylist.txt: 48104) -.chibis.adotube.com/napp/ -# @@||chibis.adotube.com/appRuntime/swfobject/$script (easylist.txt: 48103) -.chibis.adotube.com/appRuntime/swfobject/ -# @@||chibis.adotube.com/appruntime/player/$object,object-subrequest (easylist.txt: 48102) -.chibis.adotube.com/appruntime/player/ -# @@||chemistwarehouse.com.au/images/AdImages/ (easylist.txt: 48101) -.chemistwarehouse.com.au/images/AdImages/ -# @@||checkm8.com/crossdomain.xml$object-subrequest (easylist.txt: 48100) -.checkm8.com/crossdomain\.xml -# @@||checkerdist.com/product-detail.cfm?*advert_id=$~third-party (easylist.txt: 48098) -.checkerdist.com/product-detail\.cfm\?.*advert_id= -# @@||cheapoair.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48097) -.cheapoair.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||cheapoair.ca/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48096) -.cheapoair.ca/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||chase.com^*/adserving/ (easylist.txt: 48095) -.chase.com/.*/adserving/ -# @@||chase.com/content/*/ads/$image,~third-party (easylist.txt: 48094) -.chase.com/content/.*/ads/ -# @@||channel4.com/media/scripts/oasconfig/siteads.js (easylist.txt: 48092) -.channel4.com/media/scripts/oasconfig/siteads\.js -# @@||cerebral.s4.bizhat.com/banners/$image,~third-party (easylist.txt: 48091) -.cerebral.s4.bizhat.com/banners/ -# @@||cellc.co.za/adserv/$image,object,script,~third-party (easylist.txt: 48090) -.cellc.co.za/adserv/ -# @@||cdn.turner.com^*/video/336x280_ad.gif (easylist.txt: 48088) -.cdn.turner.com/.*/video/336x280_ad\.gif -# @@||cdn.travidia.com/rop-sub/$image (easylist.txt: 48087) -.cdn.travidia.com/rop-sub/ -# @@||cdn.travidia.com/rop-ad/$image (easylist.txt: 48086) -.cdn.travidia.com/rop-ad/ -# @@||cdn.travidia.com/fsi-page/$image (easylist.txt: 48085) -.cdn.travidia.com/fsi-page/ -# @@||cdn.pch.com/spectrummedia/spectrum/adunit/ (easylist.txt: 48084) -.cdn.pch.com/spectrummedia/spectrum/adunit/ -# @@||cdn.ndtv.com/static/js/ads.js (easylist.txt: 48083) -.cdn.ndtv.com/static/js/ads\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/writecapture.js (easylist.txt: 48075) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/writecapture\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/swfobject.js (easylist.txt: 48074) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/swfobject\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jwplayerl.js (easylist.txt: 48073) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jwplayerl\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jquery.writecapture.js (easylist.txt: 48072) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jquery\.writecapture\.js -# @@||cbsistatic.com^*/sticky-ads.js? (easylist.txt: 48068) -.cbsistatic.com/.*/sticky-ads\.js\? -# @@||cbs.com/sitecommon/includes/cacheable/combine.php?*/adfunctions. (easylist.txt: 48065) -.cbs.com/sitecommon/includes/cacheable/combine\.php\?.*/adfunctions\. -# @@||cbc.ca/ads/*.php?$xmlhttprequest (easylist.txt: 48064) -.cbc.ca/ads/.*\.php\? -# @@||carzone.ie/es-ie/*advert$image,script,stylesheet (easylist.txt: 48062) -.carzone.ie/es-ie/.*advert -# @@||caranddriver.com/tools/iframe/?$subdocument (easylist.txt: 48061) -.caranddriver.com/tools/iframe/\? -# @@||caranddriver.com/assets/js/ads/ads-combined.min.js (easylist.txt: 48060) -.caranddriver.com/assets/js/ads/ads-combined\.min\.js -# @@||carambo.la^*/GetAds|$xmlhttprequest (easylist.txt: 48059) -.carambo.la/.*/GetAds$ -# @@||capitalone360.com/js/adwizard/adwizard_homepage.js? (easylist.txt: 48058) -.capitalone360.com/js/adwizard/adwizard_homepage\.js\? -# @@||candystand.com/assets/images/ads/$image (easylist.txt: 48057) -.candystand.com/assets/images/ads/ -# @@||canadianlisted.com/css/*/ad/index.css (easylist.txt: 48056) -.canadianlisted.com/css/.*/ad/index\.css -# @@||cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240.jpg (easylist.txt: 48054) -.cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240\.jpg -# @@||calgarysun.com/assets/js/dfp.js? (easylist.txt: 48053) -.calgarysun.com/assets/js/dfp\.js\? -# @@||cache.nymag.com/scripts/ad_manager.js (easylist.txt: 48052) -.cache.nymag.com/scripts/ad_manager\.js -# @@||bworldonline.com/adserver/ (easylist.txt: 48051) -.bworldonline.com/adserver/ -# @@||buyselltrade.ca/adimages/$image,~third-party (easylist.txt: 48050) -.buyselltrade.ca/adimages/ -# @@||buyforlessok.com/advertising/ (easylist.txt: 48049) -.buyforlessok.com/advertising/ -# @@||buyandsell.ie/images/ads/$~third-party (easylist.txt: 48048) -.buyandsell.ie/images/ads/ -# @@||buyandsell.ie/ads/$~third-party (easylist.txt: 48047) -.buyandsell.ie/ads/ -# @@||buyandsell.ie/ad/$~third-party (easylist.txt: 48046) -.buyandsell.ie/ad/ -# @@||buy.com/buy_assets/addeals/$~third-party (easylist.txt: 48045) -.buy.com/buy_assets/addeals/ -# @@||butlereagle.com/static/ads/ (easylist.txt: 48044) -.butlereagle.com/static/ads/ -# @@||business-supply.com/images/adrotator/ (easylist.txt: 48043) -.business-supply.com/images/adrotator/ -# @@||burfordadvertising.com/advertising/$~third-party (easylist.txt: 48042) -.burfordadvertising.com/advertising/ -# @@||burbankleader.com/hive/images/adv_ (easylist.txt: 48041) -.burbankleader.com/hive/images/adv_ -# @@||btrll.com/crossdomain.xml$object-subrequest (easylist.txt: 48039) -.btrll.com/crossdomain\.xml -# @@||bthomehub.home/images/adv_ (easylist.txt: 48038) -.bthomehub.home/images/adv_ -# @@||bsvideos.com/json/ad.php? (easylist.txt: 48037) -.bsvideos.com/json/ad\.php\? -# @@||brothersoft.com/gads/coop_show_download.php?soft_id=$script (easylist.txt: 48036) -.brothersoft.com/gads/coop_show_download\.php\?soft_id= -# @@||brocraft.net/js/banners.js (easylist.txt: 48035) -.brocraft.net/js/banners\.js -# @@||britishairways.com/cms/global/styles/*/openx.css (easylist.txt: 48034) -.britishairways.com/cms/global/styles/.*/openx\.css -# @@||britannica.com/resources/images/shared/ad-loading.gif (easylist.txt: 48033) -.britannica.com/resources/images/shared/ad-loading\.gif -# @@||brightcove.com^*bannerid$third-party (easylist.txt: 48032) -.brightcove.com/.*bannerid -# @@||brainient.com/crossdomain.xml$object-subrequest (easylist.txt: 48030) -.brainient.com/crossdomain\.xml -# @@||boxedlynch.com/advertising-gallery.html (easylist.txt: 48029) -.boxedlynch.com/advertising-gallery\.html -# @@||box10.com/advertising/*-preroll.swf (easylist.txt: 48028) -.box10.com/advertising/.*-preroll\.swf -# @@||boston.com/images/ads/yourtown_social_widget/$image (easylist.txt: 48027) -.boston.com/images/ads/yourtown_social_widget/ -# @@||bonappetit.com^*/cn.dart.js (easylist.txt: 48025) -.bonappetit.com/.*/cn\.dart\.js -# @@||bonappetit.com/ams/page-ads.js? (easylist.txt: 48024) -.bonappetit.com/ams/page-ads\.js\? -# @@||boats.com/ad/$~third-party,xmlhttprequest (easylist.txt: 48023) -.boats.com/ad/ -# @@||bnbfinder.com/adv_getCity.php?$xmlhttprequest (easylist.txt: 48022) -.bnbfinder.com/adv_getCity\.php\? -# @@||bluetree.co.uk/hji/advertising.$object-subrequest (easylist.txt: 48021) -.bluetree.co.uk/hji/advertising\. -# @@||bluetooth.com/banners/ (easylist.txt: 48020) -.bluetooth.com/banners/ -# @@||bloomberg.com/rapi/ads/js_config.js (easylist.txt: 48019) -.bloomberg.com/rapi/ads/js_config\.js -# @@||blastro.com/pl_ads.php?$object-subrequest (easylist.txt: 48018) -.blastro.com/pl_ads\.php\? -# @@||blackshoppingchannel.com^*/com_adagency/$~third-party (easylist.txt: 48017) -.blackshoppingchannel.com/.*/com_adagency/ -# @@||blackshoppingchannel.com^*/ad_agency/$~third-party (easylist.txt: 48016) -.blackshoppingchannel.com/.*/ad_agency/ -# @@||bing.net/images/thumbnail.aspx?q=$image (easylist.txt: 48015) -.bing.net/images/thumbnail\.aspx\?q= -# @@||bing.com/maps/Ads.ashx$xmlhttprequest (easylist.txt: 48014) -.bing.com/maps/Ads\.ashx -# @@||bing.com/images/async?q=$xmlhttprequest (easylist.txt: 48013) -.bing.com/images/async\?q= -# @@||bikeexchange.com.au/adverts/ (easylist.txt: 48012) -.bikeexchange.com.au/adverts/ -# @@||bigfishaudio.com/banners/$image (easylist.txt: 48011) -.bigfishaudio.com/banners/ -# @@||betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ (easylist.txt: 48009) -.betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ -# @@||betar.gov.bd/wp-content/plugins/useful-banner-manager/ (easylist.txt: 48008) -.betar.gov.bd/wp-content/plugins/useful-banner-manager/ -# @@||bellaliant.net^*/banners/ads/$image,~third-party (easylist.txt: 48007) -.bellaliant.net/.*/banners/ads/ -# @@||bebusiness.eu/js/adview.js (easylist.txt: 48006) -.bebusiness.eu/js/adview\.js -# @@||beatthebrochure.com/js/jquery.popunder.js (easylist.txt: 48005) -.beatthebrochure.com/js/jquery\.popunder\.js -# @@||barafranca.*/banner.php| (easylist.txt: 47995) -.barafranca.*./(.*/)?banner\.php$ -# @@||banners.wunderground.com^$image (easylist.txt: 47993) -.banners.wunderground.com -# @@||banners.goldbroker.com/widget/ (easylist.txt: 47992) -.banners.goldbroker.com/widget/ -# @@||banners.gametracker.rs^$image (easylist.txt: 47991) -.banners.gametracker.rs -# @@||bannerfans.com/banners/$image,~third-party (easylist.txt: 47989) -.bannerfans.com/banners/ -# @@||banner4five.com/banners/$~third-party (easylist.txt: 47988) -.banner4five.com/banners/ -# @@||bankofamerica.com^*?adx=$xmlhttprequest (easylist.txt: 47986) -.bankofamerica.com/.*\?adx= -# @@||bahtsold.com/assets/images/ads/no_img_main.png (easylist.txt: 47985) -.bahtsold.com/assets/images/ads/no_img_main\.png -# @@||bahtsold.com/assets/home/openx/Thailand/$image,~third-party (easylist.txt: 47984) -.bahtsold.com/assets/home/openx/Thailand/ -# @@||bafta.org/static/site/javascript/banners.js (easylist.txt: 47983) -.bafta.org/static/site/javascript/banners\.js -# @@||backpackinglight.com/backpackinglight/ads/banner-$~third-party (easylist.txt: 47982) -.backpackinglight.com/backpackinglight/ads/banner- -# @@||aviationexplorer.com/airline_aviation_ads/ (easylist.txt: 47979) -.aviationexplorer.com/airline_aviation_ads/ -# @@||aviationdocumentstorage.com/Av_Docs/CSS/ADS-1.css (easylist.txt: 47978) -.aviationdocumentstorage.com/Av_Docs/CSS/ADS-1\.css -# @@||aviationclassifieds.com/adimg/$image,~third-party (easylist.txt: 47977) -.aviationclassifieds.com/adimg/ -# @@||avclub.com/ads/av-video-ad/$xmlhttprequest (easylist.txt: 47976) -.avclub.com/ads/av-video-ad/ -# @@||autotrader.co.uk^*_adverts/$xmlhttprequest (easylist.txt: 47975) -.autotrader.co.uk/.*_adverts/ -# @@||autotrader.co.uk^*/advert/$~third-party,xmlhttprequest (easylist.txt: 47974) -.autotrader.co.uk/.*/advert/ -# @@||autotrader.co.uk/static/*/images/adv/icons.png (easylist.txt: 47973) -.autotrader.co.uk/static/.*/images/adv/icons\.png -# @@||autotrader.co.uk/advert/$xmlhttprequest (easylist.txt: 47972) -.autotrader.co.uk/advert/ -# @@||autogespot.info/upload/ads/$image (easylist.txt: 47971) -.autogespot.info/upload/ads/ -# @@||auditude.com^*/AuditudeAdUnit.swf$object-subrequest (easylist.txt: 47968) -.auditude.com/.*/AuditudeAdUnit\.swf -# @@||auditude.com/crossdomain.xml$object-subrequest (easylist.txt: 47967) -.auditude.com/crossdomain\.xml -# @@||auctionzip.com/cgi-bin/showimage.cgi? (easylist.txt: 47965) -.auctionzip.com/cgi-bin/showimage\.cgi\? -# @@||att.com/images/*/admanager/ (easylist.txt: 47963) -.att.com/images/.*/admanager/ -# @@||athena365.com/web/components/ads/rma.html (easylist.txt: 47962) -.athena365.com/web/components/ads/rma\.html -# @@||asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training.png (easylist.txt: 47961) -.asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training\.png -# @@||assiniboine.mb.ca/files/intrasite_ads/ (easylist.txt: 47958) -.assiniboine.mb.ca/files/intrasite_ads/ -# @@||asrock.com/images/ad-$~third-party (easylist.txt: 47956) -.asrock.com/images/ad- -# @@||asiasold.com/assets/home/openx/$image,~third-party (easylist.txt: 47955) -.asiasold.com/assets/home/openx/ -# @@||as.webmd.com/html.ng/transactionid=$object-subrequest,script,subdocument (easylist.txt: 47954) -.as.webmd.com/html\.ng/transactionid= -# @@||as.bankrate.com/RealMedia/ads/adstream_mjx.ads/$script,~third-party (easylist.txt: 47952) -.as.bankrate.com/RealMedia/ads/adstream_mjx\.ads/ -# @@||arti-mediagroup.com/flowplayer/amta_plugin.swf$object-subrequest (easylist.txt: 47951) -.arti-mediagroup.com/flowplayer/amta_plugin\.swf -# @@||arti-mediagroup.com/crossdomain.xml$object-subrequest (easylist.txt: 47950) -.arti-mediagroup.com/crossdomain\.xml -# @@||arthurbrokerage.com/Websites/arthur/templates/overture/ (easylist.txt: 47949) -.arthurbrokerage.com/Websites/arthur/templates/overture/ -# @@||armorgames.com^$elemhide (easylist.txt: 47948) -.armorgames.com -# @@||area51.stackexchange.com/ads/$image (easylist.txt: 47947) -.area51.stackexchange.com/ads/ -# @@||architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite.png (easylist.txt: 47946) -.architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite\.png -# @@||archiproducts.com/adv/ (easylist.txt: 47945) -.archiproducts.com/adv/ -# @@||archaeologydataservice.ac.uk/images/ads_$image (easylist.txt: 47944) -.archaeologydataservice.ac.uk/images/ads_ -# @@||apwg.org/images/sponsors/ (easylist.txt: 47943) -.apwg.org/images/sponsors/ -# @@||apps.digmyweb.com/ads?$xmlhttprequest (easylist.txt: 47942) -.apps.digmyweb.com/ads\? -# @@||applegate.co.uk/stats/recordclick.html?$xmlhttprequest (easylist.txt: 47941) -.applegate.co.uk/stats/recordclick\.html\? -# @@||apple.com^*/video-ad.html (easylist.txt: 47940) -.apple.com/.*/video-ad\.html -# @@||apple.com^*/includes/ads (easylist.txt: 47939) -.apple.com/.*/includes/ads -# @@||apple.com^*/ads/$object,object-subrequest,xmlhttprequest (easylist.txt: 47936) -.apple.com/.*/ads/ -# @@||apmex.com/resources/ads/ (easylist.txt: 47934) -.apmex.com/resources/ads/ -# @@||api.cirqle.nl^*&advertiserId=$script,xmlhttprequest (easylist.txt: 47929) -.api.cirqle.nl/.*&advertiserId= -# @@||aone-soft.com/style/images/ad*.jpg (easylist.txt: 47928) -.aone-soft.com/style/images/ad.*\.jpg -# @@||aolcdn.com/os_merge/?file=/aol/*.js&$script (easylist.txt: 47925) -.aolcdn.com/os_merge/\?file=/aol/.*\.js& -# @@||annfammed.org/adsystem/$image,~third-party (easylist.txt: 47922) -.annfammed.org/adsystem/ -# @@||andomediagroup.com/crossdomain.xml$object-subrequest (easylist.txt: 47921) -.andomediagroup.com/crossdomain\.xml -# @@||andohs.net/crossdomain.xml$object-subrequest (easylist.txt: 47920) -.andohs.net/crossdomain\.xml -# @@||andcorp.com.au^*.swf?clicktag= (easylist.txt: 47919) -.andcorp.com.au/.*\.swf\?clicktag= -# @@||ananzi.co.za/ads/$~third-party (easylist.txt: 47918) -.ananzi.co.za/ads/ -# @@||amwa.net/sites/default/files/styles/promotion_image/public/promotions/$~third-party (easylist.txt: 47917) -.amwa.net/sites/default/files/styles/promotion_image/public/promotions/ -# @@||amiblood.com/Images/ad.jpg (easylist.txt: 47916) -.amiblood.com/Images/ad\.jpg -# @@||amctv.com/commons/advertisement/js/AdFrame.js (easylist.txt: 47915) -.amctv.com/commons/advertisement/js/AdFrame\.js -# @@||amazon-adsystem.com/widgets/q?$image (easylist.txt: 47904) -.amazon-adsystem.com/widgets/q\? -# @@||alusa.org/store/modules/blockadvertising/$~third-party (easylist.txt: 47900) -.alusa.org/store/modules/blockadvertising/ -# @@||alphabaseinc.com/images/display_adz/$~third-party (easylist.txt: 47899) -.alphabaseinc.com/images/display_adz/ -# @@||allulook4.com/min/?$stylesheet (easylist.txt: 47898) -.allulook4.com/min/\? -# @@||alluc.ee/js/advertisement.js (easylist.txt: 47897) -.alluc.ee/js/advertisement\.js -# @@||allot.com/Banners/*.swf$object (easylist.txt: 47896) -.allot.com/Banners/.*\.swf -# @@||albumartexchange.com/gallery/images/public/ad/$image (easylist.txt: 47895) -.albumartexchange.com/gallery/images/public/ad/ -# @@||al.com/static/common/js/ads/ads.js (easylist.txt: 47894) -.al.com/static/common/js/ads/ads\.js -# @@||akamaihd.net/hads-*.mp4? (easylist.txt: 47892) -.akamaihd.net/hads-.*\.mp4\? -# @@||ajmadison.com/images/adverts/ (easylist.txt: 47887) -.ajmadison.com/images/adverts/ -# @@||aiwip.com/static/images/advertisers/$image,~third-party,xmlhttprequest (easylist.txt: 47886) -.aiwip.com/static/images/advertisers/ -# @@||aiwip.com/advertisers/$image,~third-party,xmlhttprequest (easylist.txt: 47885) -.aiwip.com/advertisers/ -# @@||airplaydirect.com/openx/www/images/$image (easylist.txt: 47884) -.airplaydirect.com/openx/www/images/ -# @@||airguns.net/classifieds/ad_images/ (easylist.txt: 47883) -.airguns.net/classifieds/ad_images/ -# @@||airguns.net/advertisement_images/ (easylist.txt: 47882) -.airguns.net/advertisement_images/ -# @@||airbaltic.com/banners/$~third-party (easylist.txt: 47881) -.airbaltic.com/banners/ -# @@||aimsworldrunning.org/images/AD_Box_$image,~third-party (easylist.txt: 47880) -.aimsworldrunning.org/images/AD_Box_ -# @@||africam.com/adimages/ (easylist.txt: 47879) -.africam.com/adimages/ -# @@||affiliates.unpakt.com/widget_loader/widget_loader.js (easylist.txt: 47877) -.affiliates.unpakt.com/widget_loader/widget_loader\.js -# @@||affiliates.unpakt.com/widget/$subdocument (easylist.txt: 47876) -.affiliates.unpakt.com/widget/ -# @@||affiliate.skiamade.com^$subdocument,third-party (easylist.txt: 47873) -.affiliate.skiamade.com -# @@||affiliate.kickapps.com/service/ (easylist.txt: 47872) -.affiliate.kickapps.com/service/ -# @@||affiliate.kickapps.com/crossdomain.xml$object-subrequest (easylist.txt: 47871) -.affiliate.kickapps.com/crossdomain\.xml -# @@||ae.amgdgt.com/crossdomain.xml$object-subrequest (easylist.txt: 47869) -.ae.amgdgt.com/crossdomain\.xml -# @@||adworks.com.co^$~third-party (easylist.txt: 47867) -.adworks.com.co -# @@||adweb.pl^$~third-party (easylist.txt: 47866) -.adweb.pl -# @@||adweb.cis.mcmaster.ca^$~third-party (easylist.txt: 47865) -.adweb.cis.mcmaster.ca -# @@||advweb.ua.cmu.edu^$~third-party (easylist.txt: 47864) -.advweb.ua.cmu.edu -# @@||advisory.mtanyct.info/outsideWidget/widget.html?*.adPlacement=$subdocument (easylist.txt: 47863) -.advisory.mtanyct.info/outsideWidget/widget\.html\?.*\.adPlacement= -# @@||adverts.cdn.tvcatchup.com^$object-subrequest (easylist.txt: 47862) -.adverts.cdn.tvcatchup.com -# @@||advertising.vrisko.gr^$~third-party (easylist.txt: 47860) -.advertising.vrisko.gr -# @@||advertising.utexas.edu^$~third-party (easylist.txt: 47859) -.advertising.utexas.edu -# @@||advertising.theigroup.co.uk^$~third-party (easylist.txt: 47858) -.advertising.theigroup.co.uk -# @@||advertising.scoop.co.nz^ (easylist.txt: 47857) -.advertising.scoop.co.nz -# @@||advertising.racingpost.com^$image,script,stylesheet,~third-party,xmlhttprequest (easylist.txt: 47856) -.advertising.racingpost.com -# @@||advertising.nzme.co.nz/media/$image,~third-party (easylist.txt: 47855) -.advertising.nzme.co.nz/media/ -# @@||advertising.autotrader.co.uk^$~third-party (easylist.txt: 47854) -.advertising.autotrader.co.uk -# @@||advertising.acne.se^$~third-party (easylist.txt: 47853) -.advertising.acne.se -# @@||advertiser.trialpay.com^$~third-party (easylist.txt: 47851) -.advertiser.trialpay.com -# @@||advertiser.seek.com.au^$~third-party (easylist.txt: 47850) -.advertiser.seek.com.au -# @@||advertiser.seek.co.nz^$~third-party (easylist.txt: 47849) -.advertiser.seek.co.nz -# @@||advertise.movem.co.uk^$~third-party (easylist.txt: 47848) -.advertise.movem.co.uk -# @@||advertise.azcentral.com^$~third-party (easylist.txt: 47846) -.advertise.azcentral.com -# @@||advantabankcorp.com/ADV/$~third-party (easylist.txt: 47845) -.advantabankcorp.com/ADV/ -# @@||adv.works^$~third-party (easylist.txt: 47844) -.adv.works -# @@||adv.li^$~third-party (easylist.txt: 47843) -.adv.li -# @@||adv.escreverdireito.com^$~third-party (easylist.txt: 47842) -.adv.escreverdireito.com -# @@||adv.erti.se^$~third-party (easylist.txt: 47841) -.adv.erti.se -# @@||adv.blogupp.com^ (easylist.txt: 47840) -.adv.blogupp.com -# @@||adv.*.przedsiebiorca.pl^$~third-party (easylist.txt: 47839) -.adv.*./.*\.przedsiebiorca\.pl[^\w%.-] -.adv.*.przedsiebiorca.pl -# @@||adultvideotorrents.com/assets/blockblock/advertisement.js (easylist.txt: 47838) -.adultvideotorrents.com/assets/blockblock/advertisement\.js -# @@||adtechus.com/crossdomain.xml$object-subrequest (easylist.txt: 47836) -.adtechus.com/crossdomain\.xml -# @@||adtech.de/?advideo/3.0/1215.1/3228528/*;vidas=pre_roll;$object-subrequest (easylist.txt: 47831) -.adtech.de/\?advideo/3\.0/1215\.1/3228528/.*;vidas=pre_roll; -# @@||adssecurity.com/app_themes/ads/images/ (easylist.txt: 47828) -.adssecurity.com/app_themes/ads/images/ -# @@||adsremote.scrippsnetworks.com/crossdomain.xml$object-subrequest (easylist.txt: 47825) -.adsremote.scrippsnetworks.com/crossdomain\.xml -# @@||adspot.lk^$~third-party (easylist.txt: 47824) -.adspot.lk -# @@||adsign.republika.pl^$~third-party (easylist.txt: 47821) -.adsign.republika.pl -# @@||adsign.no^$~third-party (easylist.txt: 47819) -.adsign.no -# @@||adshost1.com/crossdomain.xml$object-subrequest (easylist.txt: 47817) -.adshost1.com/crossdomain\.xml -# @@||adserver.yahoo.com/crossdomain.xml$object-subrequest (easylist.txt: 47815) -.adserver.yahoo.com/crossdomain\.xml -# @@||adserver.vidcoin.com^*/get_campaigns?$xmlhttprequest (easylist.txt: 47811) -.adserver.vidcoin.com/.*/get_campaigns\? -# @@||adserver.tvcatchup.com^$object-subrequest (easylist.txt: 47810) -.adserver.tvcatchup.com -# @@||adserver.bworldonline.com^ (easylist.txt: 47809) -.adserver.bworldonline.com -# @@||adserver.bigwigmedia.com/ingamead3.swf (easylist.txt: 47808) -.adserver.bigwigmedia.com/ingamead3\.swf -# @@||adseo.pl^$~third-party (easylist.txt: 47800) -.adseo.pl -# @@||adsbox.in^$~third-party (easylist.txt: 47799) -.adsbox.in -# @@||adsbox.com.sg^$~third-party (easylist.txt: 47798) -.adsbox.com.sg -# @@||ads1.msn.com/ads/pronws/$image (easylist.txt: 47796) -.ads1.msn.com/ads/pronws/ -# @@||ads.yimg.com^*videoadmodule*.swf (easylist.txt: 47793) -.ads.yimg.com/.*videoadmodule.*\.swf -# @@||ads.yimg.com^*/search/b/syc_logo_2.gif (easylist.txt: 47792) -.ads.yimg.com/.*/search/b/syc_logo_2\.gif -# @@||ads.yimg.com^*/any/yahoologo$image (easylist.txt: 47791) -.ads.yimg.com/.*/any/yahoologo -# @@||ads.yimg.com/ev/eu/any/vint/videointerstitial*.js (easylist.txt: 47789) -.ads.yimg.com/ev/eu/any/vint/videointerstitial.*\.js -# @@||ads.undertone.com/crossdomain.xml$object-subrequest (easylist.txt: 47787) -.ads.undertone.com/crossdomain\.xml -# @@||ads.trutv.com/html.ng/tile=*&site=trutv&tru_tv_pos=preroll&$object-subrequest (easylist.txt: 47785) -.ads.trutv.com/html\.ng/tile=.*&site=trutv&tru_tv_pos=preroll& -# @@||ads.trutv.com/crossdomain.xml$object-subrequest (easylist.txt: 47784) -.ads.trutv.com/crossdomain\.xml -# @@||ads.trackitdown.net/delivery/afr.php?zoneid=6&$subdocument,~third-party (easylist.txt: 47783) -.ads.trackitdown.net/delivery/afr\.php\?zoneid=6& -# @@||ads.sudpresse.be/adview.php?what=zone:$image (easylist.txt: 47781) -.ads.sudpresse.be/adview\.php\?what=zone: -# @@||ads.songs.pk/openx/www/delivery/ (easylist.txt: 47779) -.ads.songs.pk/openx/www/delivery/ -# @@||ads.socialtheater.com^$~third-party (easylist.txt: 47778) -.ads.socialtheater.com -# @@||ads.smartfeedads.com^$~third-party (easylist.txt: 47777) -.ads.smartfeedads.com -# @@||ads.seriouswheels.com^$~third-party (easylist.txt: 47775) -.ads.seriouswheels.com -# @@||ads.pinterest.com^$~third-party (easylist.txt: 47772) -.ads.pinterest.com -# @@||ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ (easylist.txt: 47771) -.ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ -# @@||ads.nyootv.com:8080/crossdomain.xml$object-subrequest (easylist.txt: 47770) -.ads.nyootv.com:8080/crossdomain\.xml -# @@||ads.nyootv.com/crossdomain.xml$object-subrequest (easylist.txt: 47769) -.ads.nyootv.com/crossdomain\.xml -# @@||ads.nationmedia.com/webfonts/$font (easylist.txt: 47768) -.ads.nationmedia.com/webfonts/ -# @@||ads.mycricket.com/www/delivery/ajs.php?zoneid=$script,~third-party (easylist.txt: 47767) -.ads.mycricket.com/www/delivery/ajs\.php\?zoneid= -# @@||ads.memo2.nl^ (easylist.txt: 47766) -.ads.memo2.nl -# @@||ads.mefeedia.com/flash/flowplayer.controls-3.0.2.min.js (easylist.txt: 47765) -.ads.mefeedia.com/flash/flowplayer\.controls-3\.0\.2\.min\.js -# @@||ads.mefeedia.com/flash/flowplayer-3.1.2.min.js (easylist.txt: 47764) -.ads.mefeedia.com/flash/flowplayer-3\.1\.2\.min\.js -# @@||ads.m1.com.sg^$~third-party (easylist.txt: 47763) -.ads.m1.com.sg -# @@||ads.intergi.com/crossdomain.xml$object-subrequest (easylist.txt: 47759) -.ads.intergi.com/crossdomain\.xml -# @@||ads.indeed.com^$~third-party (easylist.txt: 47757) -.ads.indeed.com -# @@||ads.healthline.com/v2/adajax?$subdocument (easylist.txt: 47756) -.ads.healthline.com/v2/adajax\? -# @@||ads.golfweek.com^$~third-party (easylist.txt: 47755) -.ads.golfweek.com -# @@||ads.globo.com^*/globovideo/player/ (easylist.txt: 47754) -.ads.globo.com/.*/globovideo/player/ -# @@||ads.fusac.fr^$~third-party (easylist.txt: 47753) -.ads.fusac.fr -# @@||ads.foxnews.com/js/omtr_code.js (easylist.txt: 47752) -.ads.foxnews.com/js/omtr_code\.js -# @@||ads.foxnews.com/js/adv2.js (easylist.txt: 47751) -.ads.foxnews.com/js/adv2\.js -# @@||ads.foxnews.com/js/ad.js (easylist.txt: 47750) -.ads.foxnews.com/js/ad\.js -# @@||ads.foxnews.com/api/*-slideshow-data.js? (easylist.txt: 47749) -.ads.foxnews.com/api/.*-slideshow-data\.js\? -# @@||ads.fox.com/fox/black_2sec_600.flv (easylist.txt: 47748) -.ads.fox.com/fox/black_2sec_600\.flv -# @@||ads.forbes.com/realmedia/ads/*@videopreroll$script (easylist.txt: 47747) -.ads.forbes.com/realmedia/ads/.*@videopreroll -# @@||ads.eu.com/ads-$~third-party (easylist.txt: 47745) -.ads.eu.com/ads- -# @@||ads.cnn.com/js.ng/*&cnn_intl_subsection=download$script (easylist.txt: 47743) -.ads.cnn.com/js\.ng/.*&cnn_intl_subsection=download -# @@||ads.caravansforsale.co.uk^$~third-party (easylist.txt: 47742) -.ads.caravansforsale.co.uk -# @@||ads.belointeractive.com/realmedia/ads/adstream_mjx.ads/www.kgw.com/video/$script (easylist.txt: 47739) -.ads.belointeractive.com/realmedia/ads/adstream_mjx\.ads/www\.kgw\.com/video/ -# @@||ads.badassembly.com^$~third-party (easylist.txt: 47738) -.ads.badassembly.com -# @@||ads.ahds.ac.uk^$~document (easylist.txt: 47736) -.ads.ahds.ac.uk -# @@||adphoto.eu^$~third-party (easylist.txt: 47732) -.adphoto.eu -# @@||adpages.com^$~third-party (easylist.txt: 47731) -.adpages.com -# @@||adotube.com/crossdomain.xml$object-subrequest (easylist.txt: 47730) -.adotube.com/crossdomain\.xml -# @@||adnews.pl^$~third-party (easylist.txt: 47728) -.adnews.pl -# @@||adnet.twitvid.com/crossdomain.xml$object-subrequest (easylist.txt: 47727) -.adnet.twitvid.com/crossdomain\.xml -# @@||adman.se^$~third-party (easylist.txt: 47723) -.adman.se -# @@||adlib.info^$~third-party (easylist.txt: 47717) -.adlib.info -# @@||adimages.go.com/crossdomain.xml$object-subrequest (easylist.txt: 47716) -.adimages.go.com/crossdomain\.xml -# @@||adhostingsolutions.com/crossdomain.xml$object-subrequest (easylist.txt: 47715) -.adhostingsolutions.com/crossdomain\.xml -# @@||adguard.com^$~third-party (easylist.txt: 47714) -.adguard.com -# @@||adflyer.co.uk/adverts/$image (easylist.txt: 47712) -.adflyer.co.uk/adverts/ -# @@||adf.ly/static/image/ad_top_bg.png (easylist.txt: 47710) -.adf.ly/static/image/ad_top_bg\.png -# @@||adf.ly/images/ad*.png (easylist.txt: 47709) -.adf.ly/images/ad.*\.png -# @@||adevents.com.au^$~third-party (easylist.txt: 47708) -.adevents.com.au -# @@||addictinggames.com^*/mtvi_ads_reporting.js (easylist.txt: 47707) -.addictinggames.com/.*/mtvi_ads_reporting\.js -# @@||adcode.mobi^$~third-party (easylist.txt: 47705) -.adcode.mobi -# @@||adcenter.nu^$~third-party (easylist.txt: 47704) -.adcenter.nu -# @@||adboost.io^$~third-party (easylist.txt: 47702) -.adboost.io -# @@||adbar.pp.ua^$~third-party (easylist.txt: 47700) -.adbar.pp.ua -# @@||adap.tv/redir/javascript/vpaid.js (easylist.txt: 47698) -.adap.tv/redir/javascript/vpaid\.js -# @@||adap.tv/redir/client/adplayer.swf$object-subrequest (easylist.txt: 47694) -.adap.tv/redir/client/adplayer\.swf -# @@||adap.tv/crossdomain.xml$object-subrequest (easylist.txt: 47693) -.adap.tv/crossdomain\.xml -# @@||adap.tv/control?$object-subrequest (easylist.txt: 47692) -.adap.tv/control\? -# @@||ad4.liverail.com/crossdomain.xml$object-subrequest (easylist.txt: 47686) -.ad4.liverail.com/crossdomain\.xml -# @@||ad3.eu^$~third-party (easylist.txt: 47681) -.ad3.eu -# @@||ad2.zophar.net/images/logo.jpg$image (easylist.txt: 47680) -.ad2.zophar.net/images/logo\.jpg -# @@||ad.smartclip.net/crossdomain.xml$object-subrequest (easylist.txt: 47678) -.ad.smartclip.net/crossdomain\.xml -# @@||ad.reebonz.com/www/ (easylist.txt: 47677) -.ad.reebonz.com/www/ -# @@||ad.doubleclick.net/pfadx/nbcu.nbc/rewind$object-subrequest (easylist.txt: 47675) -.ad.doubleclick.net/pfadx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/adx/nbcu.nbc/rewind$object-subrequest (easylist.txt: 47672) -.ad.doubleclick.net/adx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/ad/can/cbs/*;pausead=1;$object-subrequest (easylist.txt: 47668) -.ad.doubleclick.net/ad/can/cbs/.*;pausead=1; -# @@||ad.afy11.net/crossdomain.xml$object-subrequest (easylist.txt: 47666) -.ad.afy11.net/crossdomain\.xml -# @@||ad.adserve.com/crossdomain.xml$object-subrequest (easylist.txt: 47665) -.ad.adserve.com/crossdomain\.xml -# @@||ad.71i.de/global_js/magic/sevenload_magic.js$object-subrequest (easylist.txt: 47663) -.ad.71i.de/global_js/magic/sevenload_magic\.js -# @@||ad.71i.de/crossdomain.xml$object-subrequest (easylist.txt: 47662) -.ad.71i.de/crossdomain\.xml -# @@||activelydisengaged.com/wp-content/uploads/*/ad$image (easylist.txt: 47660) -.activelydisengaged.com/wp-content/uploads/.*/ad -# @@||abcnews.go.com/assets/static/ads/fwps.js (easylist.txt: 47658) -.abcnews.go.com/assets/static/ads/fwps\.js -# @@||abcnews.com/assets/static/ads/fwps.js (easylist.txt: 47657) -.abcnews.com/assets/static/ads/fwps\.js -# @@||abbyy.com/adx/$~third-party (easylist.txt: 47655) -.abbyy.com/adx/ -# @@||a.giantrealm.com/assets/vau/grplayer*.swf (easylist.txt: 47653) -.a.giantrealm.com/assets/vau/grplayer.*\.swf -# @@||9msn.com.au^*/ads/ninemsn.ads$script (easylist.txt: 47652) -.9msn.com.au/.*/ads/ninemsn\.ads -# @@||961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON.png (easylist.txt: 47649) -.961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON\.png -# @@||6waves.com/js/adshow.js (easylist.txt: 47648) -.6waves.com/js/adshow\.js -# @@||6waves.com/ads/720x300/ (easylist.txt: 47647) -.6waves.com/ads/720x300/ -# @@||53.com/resources/images/ad-rotator/ (easylist.txt: 47646) -.53.com/resources/images/ad-rotator/ -# @@||360gig.com/images/1_468x60.png (easylist.txt: 47644) -.360gig.com/images/1_468x60\.png -# @@||33universal.adprimemedia.com/vn/vna/data/ad.php?$object-subrequest (easylist.txt: 47643) -.33universal.adprimemedia.com/vn/vna/data/ad\.php\? -# @@||2mdn.net/instream/flash/*/adsapi.swf$object-subrequest (easylist.txt: 47637) -.2mdn.net/instream/flash/.*/adsapi\.swf -# @@||24ur.com/static/*/banners.js (easylist.txt: 47634) -.24ur.com/static/.*/banners\.js -# @@||24ur.com/adserver/adall. (easylist.txt: 47633) -.24ur.com/adserver/adall\. -# @@||247realmedia.com^*/farecomp/ (easylist.txt: 47632) -.247realmedia.com/.*/farecomp/ -# @@||192.168.*/images/adv_ (easylist.txt: 47627) -.192.168.*./(.*/)?images/adv_ -# @@||192.168.$xmlhttprequest (easylist.txt: 47626) -.192.168.*. -# @@/wp-content/plugins/bwp-minify/min/?f=$script,stylesheet,~third-party (easylist.txt: 47625) -/(.*/)?wp-content/plugins/bwp-minify/min/\?f= -# @@/wordpress/wp-admin/*/adrotate/*$~third-party (easylist.txt: 47624) -/(.*/)?wordpress/wp-admin/.*/adrotate/.* -# @@/wordpress/wp-admin/*-ads-manager/*$~third-party (easylist.txt: 47623) -/(.*/)?wordpress/wp-admin/.*-ads-manager/.* -# @@/advertising-glype/*$image,stylesheet (easylist.txt: 47617) -/(.*/)?advertising-glype/.* -# @@||ytimg.com/yts/jsbin/$script (easylist.txt: 35573) -.ytimg.com/yts/jsbin/ -# @@||youtube.com/player_api$script,third-party (easylist.txt: 35572) -.youtube.com/player_api -# @@||youtube.com/iframe_api$script,third-party (easylist.txt: 35571) -.youtube.com/iframe_api -# @@||widget.clipix.com^$script,third-party (easylist.txt: 35567) -.widget.clipix.com -# @@||vidible.tv/prod/$script,third-party (easylist.txt: 35566) -.vidible.tv/prod/ -# @@||ui.bamstatic.com^$script,third-party (easylist.txt: 35564) -.ui.bamstatic.com -# @@||twimg.com^$image,third-party (easylist.txt: 35562) -.twimg.com -# @@||thegatewaypundit.com/wp-includes/images/rss.png (easylist.txt: 35561) -.thegatewaypundit.com/wp-includes/images/rss\.png -# @@||thegatewaypundit.com/wp-content/uploads/submit_tip.png (easylist.txt: 35560) -.thegatewaypundit.com/wp-content/uploads/submit_tip\.png -# @@||static.cdn-ec.viddler.com^$script (easylist.txt: 35553) -.static.cdn-ec.viddler.com -# @@||providesupport.com^$script (easylist.txt: 35547) -.providesupport.com -# @@||playbuzz.com/widget/$script,third-party (easylist.txt: 35539) -.playbuzz.com/widget/ -# @@||platform.vine.co^$script (easylist.txt: 35538) -.platform.vine.co -# @@||p.jwpcdn.com^$script,third-party (easylist.txt: 35535) -.p.jwpcdn.com -# @@||netdna-cdn.com/wp-includes/js/$script,third-party (easylist.txt: 35533) -.netdna-cdn.com/wp-includes/js/ -# @@||my.hellobar.com^$script,third-party (easylist.txt: 35531) -.my.hellobar.com -# @@||lpsimage.newsinc.com/player/show/$script (easylist.txt: 35528) -.lpsimage.newsinc.com/player/show/ -# @@||lps.newsinc.com/player/show/$script (easylist.txt: 35527) -.lps.newsinc.com/player/show/ -# @@||loggly.cheatsheet.com/inputs/$image,~third-party (easylist.txt: 35526) -.loggly.cheatsheet.com/inputs/ -# @@||intensedebate.com/js/$script,third-party (easylist.txt: 35518) -.intensedebate.com/js/ -# @@||imgur.com/min/$script,third-party (easylist.txt: 35517) -.imgur.com/min/ -# @@||images.sportsworldnews.com^$image,third-party (easylist.txt: 35516) -.images.sportsworldnews.com -# @@||hwcdn.net/*.js?$script (easylist.txt: 35514) -.hwcdn.net/.*\.js\? -# @@||gstatic.com/trustedstores/$script (easylist.txt: 35513) -.gstatic.com/trustedstores/ -# @@||gravatar.com/avatar$image,third-party (easylist.txt: 35512) -.gravatar.com/avatar -# @@||googlecommerce.com^$script (easylist.txt: 35509) -.googlecommerce.com -# @@||google.com/recaptcha/$script (easylist.txt: 35507) -.google.com/recaptcha/ -# @@||google.com/jsapi$script,third-party (easylist.txt: 35506) -.google.com/jsapi -# @@||google.com/js/th/$script (easylist.txt: 35505) -.google.com/js/th/ -# @@||files.explosm.net/thumbs/$image (easylist.txt: 35501) -.files.explosm.net/thumbs/ -# @@||files.explosm.net/rcg/$image (easylist.txt: 35500) -.files.explosm.net/rcg/ -# @@||files.explosm.net/avatars/$image (easylist.txt: 35499) -.files.explosm.net/avatars/ -# @@||explosm.net/show/thumbnails/$image (easylist.txt: 35497) -.explosm.net/show/thumbnails/ -# @@||explosm.net/img/nav-button_random@2x.png| (easylist.txt: 35496) -.explosm.net/img/nav-button_random@2x\.png$ -# @@||explosm.net/img/nav-button_previous@2x.png| (easylist.txt: 35495) -.explosm.net/img/nav-button_previous@2x\.png$ -# @@||explosm.net/img/nav-button_next@2x.png| (easylist.txt: 35494) -.explosm.net/img/nav-button_next@2x\.png$ -# @@||explosm.net/img/nav-button_newest@2x.png| (easylist.txt: 35493) -.explosm.net/img/nav-button_newest@2x\.png$ -# @@||explosm.net/img/nav-button_first@2x.png| (easylist.txt: 35492) -.explosm.net/img/nav-button_first@2x\.png$ -# @@||explosm.net/img/logo.png (easylist.txt: 35491) -.explosm.net/img/logo\.png -# @@||explosm.net/favicons/favicon$image (easylist.txt: 35490) -.explosm.net/favicons/favicon -# @@||content-img.newsinc.com^$image,third-party (easylist.txt: 35483) -.content-img.newsinc.com -# @@||conservativevideos.com^$generichide (easylist.txt: 35481) -.conservativevideos.com -# @@||cheatsheet.com/wp-content/uploads/$image,~third-party (easylist.txt: 35475) -.cheatsheet.com/wp-content/uploads/ -# @@||cheatsheet.com/wp-content/themes/$image,~third-party (easylist.txt: 35474) -.cheatsheet.com/wp-content/themes/ -# @@||cdn.shopify.com^$script (easylist.txt: 35471) -.cdn.shopify.com -# @@||bigcommerce.com^$image,third-party (easylist.txt: 35468) -.bigcommerce.com -# @@||assets.newsinc.com^$image,third-party (easylist.txt: 35466) -.assets.newsinc.com -# @@||ajax.cloudflare.com/cdn-cgi/nexp/$script,third-party (easylist.txt: 35457) -.ajax.cloudflare.com/cdn-cgi/nexp/ -# @@/wp-content/plugins/akismet/*$script,~third-party (easylist.txt: 35454) -/(.*/)?wp-content/plugins/akismet/.* -# @@||speedtest.net/results.php$xmlhttprequest (easylist.txt: 35429) -.speedtest.net/results\.php -# @@||speedtest.net/javascript/swfobject.js (easylist.txt: 35428) -.speedtest.net/javascript/swfobject\.js -# @@||speedtest.net/javascript/speedtest-main.js?v= (easylist.txt: 35427) -.speedtest.net/javascript/speedtest-main\.js\?v= -# @@||speedtest.net/javascript/speedtest-main.js?p=*&r=*&q=*%3*&s=*%3*= (easylist.txt: 35426) -.speedtest.net/javascript/speedtest-main\.js\?p=.*&r=.*&q=.*%3.*&s=.*%3.*= -# @@||speedtest.net/javascript/jquery.ui*.js (easylist.txt: 35425) -.speedtest.net/javascript/jquery\.ui.*\.js -# @@||speedtest.net/javascript/jquery.tipTip.js (easylist.txt: 35424) -.speedtest.net/javascript/jquery\.tipTip\.js -# @@||speedtest.net/javascript/jquery.placeholder.min.js (easylist.txt: 35423) -.speedtest.net/javascript/jquery\.placeholder\.min\.js -# @@||speedtest.net/javascript/jquery-*.min.js (easylist.txt: 35422) -.speedtest.net/javascript/jquery-.*\.min\.js -# @@||speedtest.net/javascript/highcharts.js (easylist.txt: 35421) -.speedtest.net/javascript/highcharts\.js -# @@||speedtest.net/javascript/functions.js (easylist.txt: 35420) -.speedtest.net/javascript/functions\.js -# @@||speedtest.net/javascript/extMouseWheel.js (easylist.txt: 35419) -.speedtest.net/javascript/extMouseWheel\.js -# @@||exashare.com/player6/$script (easylist.txt: 35374) -.exashare.com/player6/ -# @@||exashare.com/js/$script (easylist.txt: 35373) -.exashare.com/js/ -# @@||exashare.com/ad.js (easylist.txt: 35372) -.exashare.com/ad\.js -#ab2p-unblock-dnt-R762 -{+client-header-tagger{ab2p-unblock-dnt-R762} \ +#ab2p-unblock-dnt-R189 +{+client-header-tagger{ab2p-unblock-dnt-R189} \ } -# @@.com/ad.$domain=0379home.com (easylistchina+easylist.txt: 9985) +# @@.com/ad.$domain=0379home.com (easylistchina.txt: 9971) /.*\.com/ad\. .*.com/ad\. -#ab2p-unblock-dnt-R763 -{+client-header-tagger{ab2p-unblock-dnt-R763} \ +#ab2p-unblock-dnt-R190 +{+client-header-tagger{ab2p-unblock-dnt-R190} \ } -# @@||10086.cn^*/ad$domain=10086.cn (easylistchina+easylist.txt: 10078) +# @@||10086.cn^*/ad$domain=10086.cn (easylistchina.txt: 10061) .10086.cn/.*/ad -# @@||10086.cn/service/$elemhide,domain=10086.cn (easylistchina+easylist.txt: 10077) -.10086.cn/service/ -#ab2p-unblock-dnt-R764 -{+client-header-tagger{ab2p-unblock-dnt-R764} \ +#ab2p-unblock-dnt-R191 +{+client-header-tagger{ab2p-unblock-dnt-R191} \ } -# @@/images/*/*.gif$domain=107.150.17.66|23.226.134.115|23.226.134.116|23.226.138.28|67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina+easylist.txt: 10041) -/(.*/)?images/.*/.*\.gif - -#ab2p-unblock-dnt-R765 -{+client-header-tagger{ab2p-unblock-dnt-R765} \ -} -# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina+easylist.txt: 10042) +# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina.txt: 10024) /(.*/)?images/ad -#ab2p-unblock-dnt-R766 -{+client-header-tagger{ab2p-unblock-dnt-R766} \ +#ab2p-unblock-dnt-R192 +{+client-header-tagger{ab2p-unblock-dnt-R192} \ } -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=120sports.com|africanindy.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|cbsnews.com|cwtv.com|deadspin.com|denofgeek.co|denofgeek.com|drupalcommerce.org|ew.com|forbes.com|foxnews.com|gawker.com|gizmodo.com|independent.co.uk|investopedia.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|latimes.com|lifehacker.com|m.tmz.com|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|merriam-webster.com|mlb.com|nauticexpo.com|nytimes.com|orbitz.com|sendtonews.com|thesimsresource.com|time.com|urbandictionary.com|vanityfair.com|video.foxbusiness.com|video.foxnews.com|vroomvroomvroom.com.au|weather.com|weddingspot.co.uk|wlj.net|zavvi.com|zdnet.com|zillow.com (easylistchina+easylist.txt: 59345) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=120sports.com|africanindy.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|cbsnews.com|cwtv.com|deadspin.com|denofgeek.co|denofgeek.com|drupalcommerce.org|ew.com|forbes.com|foxnews.com|gawker.com|gizmodo.com|independent.co.uk|investopedia.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|latimes.com|lifehacker.com|m.tmz.com|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|merriam-webster.com|mlb.com|nauticexpo.com|nytimes.com|orbitz.com|sendtonews.com|thesimsresource.com|time.com|urbandictionary.com|vanityfair.com|video.foxbusiness.com|video.foxnews.com|vroomvroomvroom.com.au|weather.com|weddingspot.co.uk|wlj.net|zavvi.com|zdnet.com|zillow.com (easylist.txt: 48860) -.partner.googleadservices.com/gpt/pubads_impl_ - -#ab2p-unblock-dnt-R767 -{+client-header-tagger{ab2p-unblock-dnt-R767} \ -} -# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina+easylist.txt: 10215) +# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina.txt: 10199) .cpro.baidustatic.com/cpro/ui/c\.js -#ab2p-unblock-dnt-R768 -{+client-header-tagger{ab2p-unblock-dnt-R768} \ +#ab2p-unblock-dnt-R193 +{+client-header-tagger{ab2p-unblock-dnt-R193} \ } -# @@/advertise.$domain=123.138.234.240 (easylistchina+easylist.txt: 10018) +# @@/advertise.$domain=123.138.234.240 (easylistchina.txt: 10002) /(.*/)?advertise\. advertise.*. -#ab2p-unblock-dnt-R769 -{+client-header-tagger{ab2p-unblock-dnt-R769} \ +#ab2p-unblock-dnt-R194 +{+client-header-tagger{ab2p-unblock-dnt-R194} \ } -# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina+easylist.txt: 10157) +# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina.txt: 10141) .adm.cnzz.net/js/abase\.js -# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina+easylist.txt: 10156) +# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina.txt: 10140) .adm.cnzz.net/appgcm\.php\?sid=244627& -#ab2p-unblock-dnt-R770 -{+client-header-tagger{ab2p-unblock-dnt-R770} \ +#ab2p-unblock-dnt-R195 +{+client-header-tagger{ab2p-unblock-dnt-R195} \ } -# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|mahua.com (easylistchina+easylist.txt: 10024) +# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|keenfine.com|mahua.com (easylistchina.txt: 10008) /(.*/)?adview_pic_ -#ab2p-unblock-dnt-R771 -{+client-header-tagger{ab2p-unblock-dnt-R771} \ +#ab2p-unblock-dnt-R196 +{+client-header-tagger{ab2p-unblock-dnt-R196} \ } -# @@?sid=ads$domain=126.com|mail.163.com (easylistchina+easylist.txt: 10066) +# @@?sid=ads$domain=126.com|mail.163.com (easylistchina.txt: 10048) /.*\?sid=ads -#ab2p-unblock-dnt-R772 -{+client-header-tagger{ab2p-unblock-dnt-R772} \ -} -# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina+easylist.txt: 10083) -.127.0.0.1/admin/admin_ad\.php\? - -#ab2p-unblock-dnt-R773 -{+client-header-tagger{ab2p-unblock-dnt-R773} \ -} -# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina+easylist.txt: 10033) -/(.*/)?css/ad\. -# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina+easylist.txt: 9993) -/(.*/)?168logo\.gif -168logo.gif*. - -#ab2p-unblock-dnt-R774 -{+client-header-tagger{ab2p-unblock-dnt-R774} \ -} -# @@/cms/ads/*$domain=17.com (easylistchina+easylist.txt: 10030) -/(.*/)?cms/ads/.* - -#ab2p-unblock-dnt-R775 -{+client-header-tagger{ab2p-unblock-dnt-R775} \ -} -# @@||adsocial.ru/app/$object,script,domain=178.63.99.21 (advblock.txt: 6969) -.adsocial.ru/app/ - -#ab2p-unblock-dnt-R776 -{+client-header-tagger{ab2p-unblock-dnt-R776} \ -} -# @@/ads/*$domain=189.cn (easylistchina+easylist.txt: 10009) -/(.*/)?ads/.* - -#ab2p-unblock-dnt-R777 -{+client-header-tagger{ab2p-unblock-dnt-R777} \ -} -# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina+easylist.txt: 10051) -/(.*/)?pop\.js$ -pop.js - -#ab2p-unblock-dnt-R778 -{+client-header-tagger{ab2p-unblock-dnt-R778} \ -} -# @@_ad.php?$domain=1obl.ru (advblock.txt: 7218) -/.*_ad\.php\? - -#ab2p-unblock-dnt-R779 -{+client-header-tagger{ab2p-unblock-dnt-R779} \ -} -# @@/common/cf/*$domain=1point3acres.com|66u.com|dataguru.cn|jiangsuphp.jd-app.com|launcher.lenovo.com|oneplusbbs.com|readboy.com|xda.cn (easylistchina+easylist.txt: 10032) -/(.*/)?common/cf/.* - -#ab2p-unblock-dnt-R24 -{+client-header-tagger{ab2p-unblock-dnt-R24} \ -} -# @@||static.1tv.ru^$script,domain=1tv.ru (advblock.txt: 7601) -.static.1tv.ru -# @@/adfox.$script,domain=1tv.ru (advblock.txt: 7524) -/(.*/)?adfox\. -adfox.*. -# @@||ads.adfox.ru/getid?$domain=1tv.ru (advblock.txt: 7237) -.ads.adfox.ru/getid\? - -#ab2p-unblock-dnt-R780 -{+client-header-tagger{ab2p-unblock-dnt-R780} \ -} -# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina+easylist.txt: 10040) -/(.*/)?ima/.*ad\. - -#ab2p-unblock-dnt-R781 -{+client-header-tagger{ab2p-unblock-dnt-R781} \ -} -# @@||krutilka.net^$domain=24smile.net (advblock.txt: 7322) -.krutilka.net - -#ab2p-unblock-dnt-R782 -{+client-header-tagger{ab2p-unblock-dnt-R782} \ -} -# @@||28.com/top_adv_$domain=28.com (easylistchina+easylist.txt: 10095) -.28.com/top_adv_ -# @@||28.com/adv_$domain=28.com (easylistchina+easylist.txt: 10094) -.28.com/adv_ - -#ab2p-unblock-dnt-R783 -{+client-header-tagger{ab2p-unblock-dnt-R783} \ -} -# @@_120x60.$image,domain=2dayshippingbymastercard.com|catalogfavoritesvip.com|chase.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 61303) -/.*_120x60\. -# @@_120x60.$image,domain=2dayshippingbymastercard.com|catalogfavoritesvip.com|chase.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 50818) -/.*_120x60\. - -#ab2p-unblock-dnt-R784 -{+client-header-tagger{ab2p-unblock-dnt-R784} \ -} -# @@||gde-luchshe.ru/widget/$domain=2ip.ru (advblock.txt: 7302) -.gde-luchshe.ru/widget/ - -#ab2p-unblock-dnt-R785 -{+client-header-tagger{ab2p-unblock-dnt-R785} \ -} -# @@||yule8.net^$script,domain=2mm.tv|2mmei.com (easylistchina+easylist.txt: 10441) -.yule8.net -# @@||rwjfs.com^$object,script,domain=2mm.tv|2mmei.com (easylistchina+easylist.txt: 10354) -.rwjfs.com - -#ab2p-unblock-dnt-R786 -{+client-header-tagger{ab2p-unblock-dnt-R786} \ -} -# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina+easylist.txt: 9982) -/.*&adurl=http:// - -#ab2p-unblock-dnt-R787 -{+client-header-tagger{ab2p-unblock-dnt-R787} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=360haven.com|9bis.net|9jumpin.com.au|9news.com.au|9tutorials.com|afreesms.com|atlanticcitywebcam.com|bbc.com|bicimotosargentina.com|bitcoiner.net|budget101.com|buickforums.com|bullywiihacks.com|carsfromitaly.info|codeasily.com|darkreloaded.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|everythingon.tv|fcportables.com|ffiles.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freecoins4.me|freewaregenius.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|gifmagic.com|hackintosh.zone|hostyd.com|ibmmainframeforum.com|ilix.in|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|litecoiner.net|livenewschat.eu|lordpyrak.net|lumload.com|mangacap.com|mangakaka.com|megaallday.com|misheel.net|modsaholic.com|morganhillwebcam.com|moviemistakes.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|newsok.com|ninjaraider.com|nonags.com|nornar.com|numberempire.com|nx8.com|nyharborwebcam.com|omegadrivers.net|photos.essence.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|readersdigest.com.au|seeingwithsound.com|simply-debrid.com|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|top100clans.com|trutower.com|tv-kino.net|upfordown.com|uploadlw.com|urlink.at|virginmedia.com|warp2search.net|washington.edu|winterrowd.com|wtf-teen.com|yellowbridge.com (easylistchina+easylist.txt: 60628) -.pagead2.googlesyndication.com/pagead/show_ads\.js -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=360haven.com|9bis.net|9jumpin.com.au|9news.com.au|9tutorials.com|afreesms.com|atlanticcitywebcam.com|bbc.com|bicimotosargentina.com|bitcoiner.net|budget101.com|buickforums.com|bullywiihacks.com|carsfromitaly.info|codeasily.com|darkreloaded.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|everythingon.tv|fcportables.com|ffiles.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freecoins4.me|freewaregenius.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|gifmagic.com|hackintosh.zone|hostyd.com|ibmmainframeforum.com|ilix.in|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|litecoiner.net|livenewschat.eu|lordpyrak.net|lumload.com|mangacap.com|mangakaka.com|megaallday.com|misheel.net|modsaholic.com|morganhillwebcam.com|moviemistakes.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|newsok.com|ninjaraider.com|nonags.com|nornar.com|numberempire.com|nx8.com|nyharborwebcam.com|omegadrivers.net|photos.essence.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|readersdigest.com.au|seeingwithsound.com|simply-debrid.com|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|top100clans.com|trutower.com|tv-kino.net|upfordown.com|uploadlw.com|urlink.at|virginmedia.com|warp2search.net|washington.edu|winterrowd.com|wtf-teen.com|yellowbridge.com (easylist.txt: 50143) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-dnt-R788 -{+client-header-tagger{ab2p-unblock-dnt-R788} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=360haven.com|9bis.net|9news.com.au|9tutorials.com|afreesms.com|altoque.com|androidrepublic.org|apkmirror.com|aseanlegacy.net|atlanticcitywebcam.com|better-explorer.com|bicimotosargentina.com|bitcofree.com|bitcoiner.net|bitcoinker.com|borfast.com|boxbit.co.in|budget101.com|buickforums.com|bullywiihacks.com|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|darkreloaded.com|debridit.com|debridnet.com|dev-metal.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|ezoden.com|fcportables.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freebitco.in|freecoins4.me|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|getdebrid.com|gnomio.com|hackintosh.zone|hostyd.com|hubturkey.net|ibmmainframeforum.com|ilix.in|incredibox.com|kadinlarkulubu.com|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|leecher.us|liberallogic101.com|litecoiner.net|livenewschat.eu|lomeutec.com|lordpyrak.net|mailbait.info|mangacap.com|mangahop.com|mangakaka.com|masfuertequeelhierro.com|megaleech.us|misheel.net|morganhillwebcam.com|moviemistakes.com|mpc-g.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|nornar.com|noticiasautomotivas.com.br|numberempire.com|nyharborwebcam.com|omegadrivers.net|play-old-pc-games.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|scriptnulled.eu|settlersonlinemaps.com|simply-debrid.com|sizedrive.com|slideplayer.com.br|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|trutower.com|unlocktheinbox.com|upfordown.com|uploadlw.com|urlink.at|wallpapersimages.co.uk|washington.edu|whatismyip.com|winterrowd.com|wrestlingtalk.org|xcl.com.br|yellowbridge.com|zeperfs.com (easylistchina+easylist.txt: 60624) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=360haven.com|9bis.net|9news.com.au|9tutorials.com|afreesms.com|altoque.com|androidrepublic.org|apkmirror.com|aseanlegacy.net|atlanticcitywebcam.com|better-explorer.com|bicimotosargentina.com|bitcofree.com|bitcoiner.net|bitcoinker.com|borfast.com|boxbit.co.in|budget101.com|buickforums.com|bullywiihacks.com|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|darkreloaded.com|debridit.com|debridnet.com|dev-metal.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|ezoden.com|fcportables.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freebitco.in|freecoins4.me|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|getdebrid.com|gnomio.com|hackintosh.zone|hostyd.com|hubturkey.net|ibmmainframeforum.com|ilix.in|incredibox.com|kadinlarkulubu.com|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|leecher.us|liberallogic101.com|litecoiner.net|livenewschat.eu|lomeutec.com|lordpyrak.net|mailbait.info|mangacap.com|mangahop.com|mangakaka.com|masfuertequeelhierro.com|megaleech.us|misheel.net|morganhillwebcam.com|moviemistakes.com|mpc-g.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|nornar.com|noticiasautomotivas.com.br|numberempire.com|nyharborwebcam.com|omegadrivers.net|play-old-pc-games.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|scriptnulled.eu|settlersonlinemaps.com|simply-debrid.com|sizedrive.com|slideplayer.com.br|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|trutower.com|unlocktheinbox.com|upfordown.com|uploadlw.com|urlink.at|wallpapersimages.co.uk|washington.edu|whatismyip.com|winterrowd.com|wrestlingtalk.org|xcl.com.br|yellowbridge.com|zeperfs.com (easylist.txt: 50139) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-dnt-R39 -{+client-header-tagger{ab2p-unblock-dnt-R39} \ -} -# @@||3dnews.ru/www/images/$image,domain=3dnews.ru (advblock.txt: 7543) -.3dnews.ru/www/images/ -# @@||3dnews.ru/www/delivery/ajs.*&slot=single&$script,domain=3dnews.ru (advblock.txt: 7542) -.3dnews.ru/www/delivery/ajs\..*&slot=single& -# @@/^https?://ad\.3dnews\.ru/[^/]*/ajs.php\?zoneid=/$script,domain=3dnews.ru (advblock.txt: 7523) -/(.*/)?[^\w%.-]https\?://ad\\\.3dnews\\\.ru/\[[^\w%.-]/\].*/ajs\.php\\\?zoneid=/ -/^https?://ad\.3dnews\.ru/[^/]*/ajs.php\?zoneid= - -#ab2p-unblock-dnt-R789 -{+client-header-tagger{ab2p-unblock-dnt-R789} \ -} -# @@||2mdn.net/instream/*/adsapi_$object-subrequest,domain=3news.co.nz|49ers.com|atlantafalcons.com|azcardinals.com|baltimoreravens.com|buccaneers.com|buffalobills.com|chargers.com|chicagobears.com|clevelandbrowns.com|colts.com|dallascowboys.com|denverbroncos.com|detroitlions.com|egirlgames.net|euronews.com|giants.com|globaltv.com|houstontexans.com|jaguars.com|kcchiefs.com|ktvu.com|miamidolphins.com|neworleanssaints.com|newyorkjets.com|packers.com|panthers.com|patriots.com|philadelphiaeagles.com|raiders.com|redskins.com|rte.ie|seahawks.com|steelers.com|stlouisrams.com|thecomedynetwork.ca|titansonline.com|vikings.com|wpcomwidgets.com (easylistchina+easylist.txt: 58121) -.2mdn.net/instream/.*/adsapi_ -# @@||2mdn.net/instream/*/adsapi_$object-subrequest,domain=3news.co.nz|49ers.com|atlantafalcons.com|azcardinals.com|baltimoreravens.com|buccaneers.com|buffalobills.com|chargers.com|chicagobears.com|clevelandbrowns.com|colts.com|dallascowboys.com|denverbroncos.com|detroitlions.com|egirlgames.net|euronews.com|giants.com|globaltv.com|houstontexans.com|jaguars.com|kcchiefs.com|ktvu.com|miamidolphins.com|neworleanssaints.com|newyorkjets.com|packers.com|panthers.com|patriots.com|philadelphiaeagles.com|raiders.com|redskins.com|rte.ie|seahawks.com|steelers.com|stlouisrams.com|thecomedynetwork.ca|titansonline.com|vikings.com|wpcomwidgets.com (easylist.txt: 47636) -.2mdn.net/instream/.*/adsapi_ - -#ab2p-unblock-dnt-R790 -{+client-header-tagger{ab2p-unblock-dnt-R790} \ -} -# @@/assets/adv/*$domain=4008927927.cn (easylistchina+easylist.txt: 10028) -/(.*/)?assets/adv/.* - -#ab2p-unblock-dnt-R791 -{+client-header-tagger{ab2p-unblock-dnt-R791} \ -} -# @@||4cdn.org/adv/$image,domain=4chan.org (easylistchina+easylist.txt: 58130) -.4cdn.org/adv/ -# @@||4cdn.org/adv/$image,domain=4chan.org (easylist.txt: 47645) -.4cdn.org/adv/ - -#ab2p-unblock-dnt-R792 -{+client-header-tagger{ab2p-unblock-dnt-R792} \ -} -# @@||img.livejasmin.com^$image,domain=4mycams.com (easylistchina+easylist.txt: 61444) -.img.livejasmin.com -# @@||img.livejasmin.com^$image,domain=4mycams.com (easylist.txt: 50959) -.img.livejasmin.com - -#ab2p-unblock-dnt-R793 -{+client-header-tagger{ab2p-unblock-dnt-R793} \ -} -# @@||adshost1.com/ova/*.xml$object-subrequest,domain=4shared.com (easylistchina+easylist.txt: 58303) -.adshost1.com/ova/.*\.xml -# @@||adshost1.com/ova/*.xml$object-subrequest,domain=4shared.com (easylist.txt: 47818) -.adshost1.com/ova/.*\.xml - -#ab2p-unblock-dnt-R794 -{+client-header-tagger{ab2p-unblock-dnt-R794} \ -} -# @@||5060.com^$elemhide,domain=5060.com (easylistchina+easylist.txt: 10104) -.5060.com - -#ab2p-unblock-dnt-R795 -{+client-header-tagger{ab2p-unblock-dnt-R795} \ -} -# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina+easylist.txt: 10214) -.cpro.baidu.com/cpro/ui/c\.js - -#ab2p-unblock-dnt-R796 -{+client-header-tagger{ab2p-unblock-dnt-R796} \ -} -# @@/images/ad/*$domain=5i5j.com|9588.com|diantai.ifeng.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|rapoo.cn|rapoo.nl|snh48.com|sozi.cn|tingbook.com (easylistchina+easylist.txt: 10043) -/(.*/)?images/ad/.* - -#ab2p-unblock-dnt-R797 -{+client-header-tagger{ab2p-unblock-dnt-R797} \ -} -# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina+easylist.txt: 10200) -.cbjs.baidu.com/js/o\.js - -#ab2p-unblock-dnt-R798 -{+client-header-tagger{ab2p-unblock-dnt-R798} \ -} -# @@||adm.fwmrm.net^*/LinkTag2.js$domain=6abc.com|7online.com|abc11.com|abc13.com|abc30.com|abc7.com|abc7chicago.com|abc7news.com|ahctv.com|animalplanet.com|destinationamerica.com|discovery.com|discoverylife.com|tlc.com (easylistchina+easylist.txt: 58205) -.adm.fwmrm.net/.*/LinkTag2\.js -# @@||adm.fwmrm.net^*/LinkTag2.js$domain=6abc.com|7online.com|abc11.com|abc13.com|abc30.com|abc7.com|abc7chicago.com|abc7news.com|ahctv.com|animalplanet.com|destinationamerica.com|discovery.com|discoverylife.com|tlc.com (easylist.txt: 47720) -.adm.fwmrm.net/.*/LinkTag2\.js - -#ab2p-unblock-dnt-R799 -{+client-header-tagger{ab2p-unblock-dnt-R799} \ -} -# @@/prepareCode?$script,domain=7days.ru|bigpicture.ru|iphones.ru|lenta.ru|rambler.ru|ria.ru|sovsport.md|sovsport.ru|sportbox.ru|sports.ru|tjournal.ru|vc.ru (advblock.txt: 7616) -/(.*/)?prepareCode\? - -#ab2p-unblock-dnt-R800 -{+client-header-tagger{ab2p-unblock-dnt-R800} \ -} -# @@/getCodeTest?$script,domain=7days.ru|bigpicture.ru|kakprosto.ru|lenta.ru|rambler.ru|ria.ru|rusplt.ru|sobesednik.ru|sovsport.md|sovsport.ru|sportbox.ru|sports.ru|tjournal.ru|vc.ru (advblock.txt: 7615) -/(.*/)?getCodeTest\? - -#ab2p-unblock-dnt-R801 -{+client-header-tagger{ab2p-unblock-dnt-R801} \ -} -# @@||an.yandex.ru/system/context.js$script,domain=7days.ru|sports.ru (advblock.txt: 7627) -.an.yandex.ru/system/context\.js -# @@||an.yandex.ru/resource/context_static_$script,domain=7days.ru|sports.ru (advblock.txt: 7626) -.an.yandex.ru/resource/context_static_ - -#ab2p-unblock-dnt-R802 -{+client-header-tagger{ab2p-unblock-dnt-R802} \ -} -# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina+easylist.txt: 10447) -/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ -/\.7k7k.com\/(?!(ad|load)) - -#ab2p-unblock-dnt-R803 -{+client-header-tagger{ab2p-unblock-dnt-R803} \ -} -# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina+easylist.txt: 9996) -/(.*/)?ad_file/.* - -#ab2p-unblock-dnt-R804 -{+client-header-tagger{ab2p-unblock-dnt-R804} \ -} -# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina+easylist.txt: 10297) -.l.qq.com/lview\? -# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina+easylist.txt: 10287) -.j.wit.qq.com/sc/crystal_ad\.js\? - -#ab2p-unblock-dnt-R805 -{+client-header-tagger{ab2p-unblock-dnt-R805} \ -} -# @@/ad_images/*$domain=88box.com (easylistchina+easylist.txt: 9997) -/(.*/)?ad_images/.* - -#ab2p-unblock-dnt-R806 -{+client-header-tagger{ab2p-unblock-dnt-R806} \ -} -# @@.com/ads/$domain=88boxjx.com (easylistchina+easylist.txt: 9987) -/.*\.com/ads/ -.*.com/ads/ - -#ab2p-unblock-dnt-R807 -{+client-header-tagger{ab2p-unblock-dnt-R807} \ -} -# @@/web/ads/*$domain=95516.com (easylistchina+easylist.txt: 10060) -/(.*/)?web/ads/.* - -#ab2p-unblock-dnt-R808 -{+client-header-tagger{ab2p-unblock-dnt-R808} \ -} -# @@||numbers.md/static/$script,domain=999.md (advblock.txt: 7351) -.numbers.md/static/ - -#ab2p-unblock-dnt-R809 -{+client-header-tagger{ab2p-unblock-dnt-R809} \ -} -# @@||visitweb.com^$script,domain=99px.ru (advblock.txt: 7606) -.visitweb.com -# @@||luxup.ru^$script,domain=99px.ru (advblock.txt: 7582) -.luxup.ru -# @@||gfhdkse.com^$script,domain=99px.ru (advblock.txt: 7569) -.gfhdkse.com - -#ab2p-unblock-dnt-R810 -{+client-header-tagger{ab2p-unblock-dnt-R810} \ -} -# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina+easylist.txt: 10336) -.pos.baidu.com/ecom\? - -#ab2p-unblock-dnt-R811 -{+client-header-tagger{ab2p-unblock-dnt-R811} \ -} -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=9jumpin.com.au|9news.com.au|bigbrother.com.au|ninemsn.com.au (easylistchina+easylist.txt: 58204) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=9jumpin.com.au|9news.com.au|bigbrother.com.au|ninemsn.com.au (easylist.txt: 47719) -.adm.fwmrm.net/.*/BrightcovePlugin\.js - -#ab2p-unblock-dnt-R812 -{+client-header-tagger{ab2p-unblock-dnt-R812} \ -} -# @@||static9.net.au^*/advert.js$domain=9news.com.au (easylistchina+easylist.txt: 60767) -.static9.net.au/.*/advert\.js -# @@||gscontxt.net/main/channels-jsonp.cgi?$domain=9news.com.au (easylistchina+easylist.txt: 60366) -.gscontxt.net/main/channels-jsonp\.cgi\? -# @@||9msn.com.au/Services/Service.axd?*=AdExpert&$script,domain=9news.com.au (easylistchina+easylist.txt: 59976) -.9msn.com.au/Services/Service\.axd\?.*=AdExpert& -# @@||static9.net.au^*/advert.js$domain=9news.com.au (easylist.txt: 50282) -.static9.net.au/.*/advert\.js -# @@||gscontxt.net/main/channels-jsonp.cgi?$domain=9news.com.au (easylist.txt: 49881) -.gscontxt.net/main/channels-jsonp\.cgi\? -# @@||9msn.com.au/Services/Service.axd?*=AdExpert&$script,domain=9news.com.au (easylist.txt: 49491) -.9msn.com.au/Services/Service\.axd\?.*=AdExpert& - -#ab2p-unblock-dnt-R813 -{+client-header-tagger{ab2p-unblock-dnt-R813} \ -} -# @@||adsign.republika.pl^$subdocument,domain=a-d-sign.pl (easylistchina+easylist.txt: 58305) -.adsign.republika.pl -# @@||adsign.republika.pl^$subdocument,domain=a-d-sign.pl (easylist.txt: 47820) -.adsign.republika.pl - -#ab2p-unblock-dnt-R61 -{+client-header-tagger{ab2p-unblock-dnt-R61} \ -} -# @@||abc.com/streaming/ads/preroll_$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 58141) -.abc.com/streaming/ads/preroll_ -# @@||abc.com/streaming/ads/preroll_$object-subrequest,domain=abc.go.com (easylist.txt: 47656) -.abc.com/streaming/ads/preroll_ - -#ab2p-unblock-dnt-R814 -{+client-header-tagger{ab2p-unblock-dnt-R814} \ -} -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=abc.go.com|abcfamily.go.com|abcnews.go.com|adultswim.com|cartoonnetwork.com|cc.com|channel5.com|cmt.com|colbertnation.com|comedycentral.com|eonline.com|espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|flexonline.com|gametrailers.com|ign.com|logotv.com|mlb.mlb.com|mtv.com|mtvnservices.com|muscleandfitness.com|nascar.com|nbc.com|nbcnews.com|nbcsports.com|nick.com|player.theplatform.com|simpsonsworld.com|sky.com|southpark.nl|southparkstudios.com|spike.com|teamcoco.com|teennick.com|thedailyshow.com|thingx.tv|tv3play.se|tvland.com|uverseonline.att.net|vevo.com|vh1.com|video.cnbc.com|vod.fxnetworks.com (easylistchina+easylist.txt: 59739) -.v.fwmrm.net/ad/p/1\? -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=abc.go.com|abcfamily.go.com|abcnews.go.com|adultswim.com|cartoonnetwork.com|cc.com|channel5.com|cmt.com|colbertnation.com|comedycentral.com|eonline.com|espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|flexonline.com|gametrailers.com|ign.com|logotv.com|mlb.mlb.com|mtv.com|mtvnservices.com|muscleandfitness.com|nascar.com|nbc.com|nbcnews.com|nbcsports.com|nick.com|player.theplatform.com|simpsonsworld.com|sky.com|southpark.nl|southparkstudios.com|spike.com|teamcoco.com|teennick.com|thedailyshow.com|thingx.tv|tv3play.se|tvland.com|uverseonline.att.net|vevo.com|vh1.com|video.cnbc.com|vod.fxnetworks.com (easylist.txt: 49254) -.v.fwmrm.net/ad/p/1\? - -#ab2p-unblock-dnt-R815 -{+client-header-tagger{ab2p-unblock-dnt-R815} \ -} -# @@/assets/ads/*$domain=abcphoto.com.ua (advblock.txt: 7196) -/(.*/)?assets/ads/.* - -#ab2p-unblock-dnt-R816 -{+client-header-tagger{ab2p-unblock-dnt-R816} \ -} -# @@||google.com/ads/search/module/ads/*/search.js$domain=about.com|armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|ehow.com|forbbbs.org|forbes.com|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|zoover.co.uk|zoover.com (easylistchina+easylist.txt: 58897) -.google.com/ads/search/module/ads/.*/search\.js -# @@||google.com/ads/search/module/ads/*/search.js$domain=about.com|armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|ehow.com|forbbbs.org|forbes.com|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|zoover.co.uk|zoover.com (easylist.txt: 48412) -.google.com/ads/search/module/ads/.*/search\.js - -#ab2p-unblock-dnt-R817 -{+client-header-tagger{ab2p-unblock-dnt-R817} \ -} -# @@||google.com/adsense/search/async-ads.js$domain=about.com|ehow.com (easylistchina+easylist.txt: 58900) -.google.com/adsense/search/async-ads\.js -# @@||google.com/adsense/search/async-ads.js$domain=about.com|ehow.com (easylist.txt: 48415) -.google.com/adsense/search/async-ads\.js - -#ab2p-unblock-dnt-R818 -{+client-header-tagger{ab2p-unblock-dnt-R818} \ -} -# @@||google.com/uds/afs?$document,subdocument,domain=about.com|ehow.com|livestrong.com (easylistchina+easylist.txt: 58906) -.google.com/uds/afs\? -# @@||google.com/uds/afs?$document,subdocument,domain=about.com|ehow.com|livestrong.com (easylist.txt: 48421) -.google.com/uds/afs\? - -#ab2p-unblock-dnt-R819 -{+client-header-tagger{ab2p-unblock-dnt-R819} \ -} -# @@||accelo.com^*/affiliation/$xmlhttprequest,domain=accelo.com (easylistchina+easylist.txt: 58144) -.accelo.com/.*/affiliation/ -# @@||accelo.com^*/affiliation/$xmlhttprequest,domain=accelo.com (easylist.txt: 47659) -.accelo.com/.*/affiliation/ - -#ab2p-unblock-dnt-R63 -{+client-header-tagger{ab2p-unblock-dnt-R63} \ -} -# @@||rackcdn.com/LN_AH_Sweep_300x250_$image,domain=accesshollywood.com (easylistchina+easylist.txt: 61364) -.rackcdn.com/LN_AH_Sweep_300x250_ -# @@||rackcdn.com/LN_AH_Sweep_300x250_$image,domain=accesshollywood.com (easylist.txt: 50879) -.rackcdn.com/LN_AH_Sweep_300x250_ - -#ab2p-unblock-dnt-R820 -{+client-header-tagger{ab2p-unblock-dnt-R820} \ -} -# @@||gstatic.com/images/icons/product/adsense_$image,domain=accounts.google.com (easylistchina+easylist.txt: 61174) -.gstatic.com/images/icons/product/adsense_ -# @@||gstatic.com/images/icons/product/adsense-$image,domain=accounts.google.com (easylistchina+easylist.txt: 61173) -.gstatic.com/images/icons/product/adsense- -# @@||gstatic.com/accounts/services/adwords/$image,domain=accounts.google.com (easylistchina+easylist.txt: 61172) -.gstatic.com/accounts/services/adwords/ -# @@||accounts.google.com/adwords/$domain=accounts.google.com (easylistchina+easylist.txt: 61163) -.accounts.google.com/adwords/ -# @@||gstatic.com/images/icons/product/adsense_$image,domain=accounts.google.com (easylist.txt: 50689) -.gstatic.com/images/icons/product/adsense_ -# @@||gstatic.com/images/icons/product/adsense-$image,domain=accounts.google.com (easylist.txt: 50688) -.gstatic.com/images/icons/product/adsense- -# @@||gstatic.com/accounts/services/adwords/$image,domain=accounts.google.com (easylist.txt: 50687) -.gstatic.com/accounts/services/adwords/ -# @@||accounts.google.com/adwords/$domain=accounts.google.com (easylist.txt: 50678) -.accounts.google.com/adwords/ - -#ab2p-unblock-dnt-R821 -{+client-header-tagger{ab2p-unblock-dnt-R821} \ -} -# @@||openx.infrontams.tv/www/$image,object,script,domain=acmilan.com (easylistchina+easylist.txt: 59300) -.openx.infrontams.tv/www/ -# @@||openx.infrontams.tv/www/$image,object,script,domain=acmilan.com (easylist.txt: 48815) -.openx.infrontams.tv/www/ - -#ab2p-unblock-dnt-R822 -{+client-header-tagger{ab2p-unblock-dnt-R822} \ -} -# @@||po.st^*/status?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46029) -.po.st/.*/status\? -# @@||po.st^*/counter?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46028) -.po.st/.*/counter\? -# @@||po.st/static/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46027) -.po.st/static/ -# @@||po.st/share/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46026) -.po.st/share/ -# @@||launch.newsinc.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46008) -.launch.newsinc.com -# @@||disquscdn.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45972) -.disquscdn.com -# @@||disqus.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45971) -.disqus.com -# @@||po.st^*/status?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35544) -.po.st/.*/status\? -# @@||po.st^*/counter?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35543) -.po.st/.*/counter\? -# @@||po.st/static/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35542) -.po.st/static/ -# @@||po.st/share/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35541) -.po.st/share/ -# @@||launch.newsinc.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35523) -.launch.newsinc.com -# @@||disquscdn.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35487) -.disquscdn.com -# @@||disqus.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35486) -.disqus.com - -#ab2p-unblock-dnt-R823 -{+client-header-tagger{ab2p-unblock-dnt-R823} \ -} -# @@||graph.facebook.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45996) -.graph.facebook.com -# @@||graph.facebook.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35511) -.graph.facebook.com - -#ab2p-unblock-dnt-R824 -{+client-header-tagger{ab2p-unblock-dnt-R824} \ -} -# @@||twitter.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46048) -.twitter.com -# @@||twitter.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35563) -.twitter.com - -#ab2p-unblock-dnt-R825 -{+client-header-tagger{ab2p-unblock-dnt-R825} \ -} -# @@||pinterest.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46021) -.pinterest.com -# @@||content-img-s.newsinc.com/jpg/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45967) -.content-img-s.newsinc.com/jpg/ -# @@||pinterest.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35536) -.pinterest.com -# @@||content-img-s.newsinc.com/jpg/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35482) -.content-img-s.newsinc.com/jpg/ - -#ab2p-unblock-dnt-R826 -{+client-header-tagger{ab2p-unblock-dnt-R826} \ -} -# @@||taboola.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46044) -.taboola.com -# @@||taboola.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35559) -.taboola.com - -#ab2p-unblock-dnt-R827 -{+client-header-tagger{ab2p-unblock-dnt-R827} \ -} -# @@||connect.facebook.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45964) -.connect.facebook.net -# @@||apis.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45950) -.apis.google.com -# @@||connect.facebook.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35479) -.connect.facebook.net -# @@||apis.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35465) -.apis.google.com - -#ab2p-unblock-dnt-R828 -{+client-header-tagger{ab2p-unblock-dnt-R828} \ -} -# @@||s7.addthis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46035) -.s7.addthis.com -# @@||s7.addthis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35550) -.s7.addthis.com - -#ab2p-unblock-dnt-R829 -{+client-header-tagger{ab2p-unblock-dnt-R829} \ -} -# @@||googleapis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45993) -.googleapis.com -# @@||connect.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45963) -.connect.facebook.com -# @@||code.jquery.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45962) -.code.jquery.com -# @@||googleapis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35508) -.googleapis.com -# @@||connect.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35478) -.connect.facebook.com -# @@||code.jquery.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35477) -.code.jquery.com - -#ab2p-unblock-dnt-R830 -{+client-header-tagger{ab2p-unblock-dnt-R830} \ -} -# @@||api.solvemedia.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45949) -.api.solvemedia.com -# @@||api-public.addthis.com/url/shares.json?$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45946) -.api-public.addthis.com/url/shares\.json\? -# @@||api.solvemedia.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35464) -.api.solvemedia.com -# @@||api-public.addthis.com/url/shares.json?$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35461) -.api-public.addthis.com/url/shares\.json\? - -#ab2p-unblock-dnt-R831 -{+client-header-tagger{ab2p-unblock-dnt-R831} \ -} -# @@||wp.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46055) -.wp.com/wp-content/ -# @@||wp.com/_static/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46054) -.wp.com/_static/ -# @@||use.typekit.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46050) -.use.typekit.net -# @@||syn.5min.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46042) -.syn.5min.com -# @@||s.gravatar.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46034) -.s.gravatar.com -# @@||r-login.wordpress.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46033) -.r-login.wordpress.com -# @@||playwire.com/bolt/$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46025) -.playwire.com/bolt/ -# @@||platform.instagram.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46022) -.platform.instagram.com -# @@||maxcdn.bootstrapcdn.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46015) -.maxcdn.bootstrapcdn.com -# @@||maps.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46014) -.maps.google.com -# @@||livefyre.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46010) -.livefyre.com -# @@||linkedin.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46009) -.linkedin.com -# @@||jwpsrv.com/player/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46005) -.jwpsrv.com/player/ -# @@||jwplatform.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46004) -.jwplatform.com -# @@||googletagservices.com/tag/js/gpt.js$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45995) -.googletagservices.com/tag/js/gpt\.js -# @@||gigya.com/js/gigya.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45989) -.gigya.com/js/gigya\. -# @@||gigya.com/comments.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45988) -.gigya.com/comments\. -# @@||fbstatic-a.akamaihd.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45983) -.fbstatic-a.akamaihd.net -# @@||embedly.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45973) -.embedly.com -# @@||cloudflare.com/ajax/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45961) -.cloudflare.com/ajax/ -# @@||cdnjs.cloudflare.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45958) -.cdnjs.cloudflare.com -# @@||api.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45947) -.api.facebook.com -# @@||ak.sail-horizon.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45943) -.ak.sail-horizon.com -# @@||wp.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35570) -.wp.com/wp-content/ -# @@||wp.com/_static/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35569) -.wp.com/_static/ -# @@||use.typekit.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35565) -.use.typekit.net -# @@||syn.5min.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35557) -.syn.5min.com -# @@||s.gravatar.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35549) -.s.gravatar.com -# @@||r-login.wordpress.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35548) -.r-login.wordpress.com -# @@||playwire.com/bolt/$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35540) -.playwire.com/bolt/ -# @@||platform.instagram.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35537) -.platform.instagram.com -# @@||maxcdn.bootstrapcdn.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35530) -.maxcdn.bootstrapcdn.com -# @@||maps.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35529) -.maps.google.com -# @@||livefyre.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35525) -.livefyre.com -# @@||linkedin.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35524) -.linkedin.com -# @@||jwpsrv.com/player/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35520) -.jwpsrv.com/player/ -# @@||jwplatform.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35519) -.jwplatform.com -# @@||googletagservices.com/tag/js/gpt.js$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35510) -.googletagservices.com/tag/js/gpt\.js -# @@||gigya.com/js/gigya.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35504) -.gigya.com/js/gigya\. -# @@||gigya.com/comments.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35503) -.gigya.com/comments\. -# @@||fbstatic-a.akamaihd.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35498) -.fbstatic-a.akamaihd.net -# @@||embedly.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35488) -.embedly.com -# @@||cloudflare.com/ajax/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35476) -.cloudflare.com/ajax/ -# @@||cdnjs.cloudflare.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35473) -.cdnjs.cloudflare.com -# @@||api.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35462) -.api.facebook.com -# @@||ak.sail-horizon.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35458) -.ak.sail-horizon.com - -#ab2p-unblock-dnt-R832 -{+client-header-tagger{ab2p-unblock-dnt-R832} \ -} -# @@||5min.com/Scripts/PlayerSeed.js?$domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45940) -.5min.com/Scripts/PlayerSeed\.js\? -# @@||5min.com/Scripts/PlayerSeed.js?$domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35455) -.5min.com/Scripts/PlayerSeed\.js\? - -#ab2p-unblock-dnt-R833 -{+client-header-tagger{ab2p-unblock-dnt-R833} \ -} -# @@||netdna-cdn.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|enstarz.com|explosm.net|flexonline.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46017) -.netdna-cdn.com/wp-content/ -# @@||netdna-cdn.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|enstarz.com|explosm.net|flexonline.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35532) -.netdna-cdn.com/wp-content/ - -#ab2p-unblock-dnt-R834 -{+client-header-tagger{ab2p-unblock-dnt-R834} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=activistpost.com|afreesms.com|androidrepublic.org|apkmirror.com|appraisersforum.com|aseanlegacy.net|better-explorer.com|bitcofree.com|bitcoinker.com|boxbit.co.in|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|debridit.com|debridnet.com|demo-uhd3d.com|dev-metal.com|ezoden.com|firstonetv.com|freebitco.in|freeprosurfer.com|getdebrid.com|gnomio.com|hackintosh.zone|hubturkey.net|i-stats.net|incredibox.com|kadinlarkulubu.com|leecher.us|liberallogic101.com|lomeutec.com|mangacap.com|mangahop.com|masfuertequeelhierro.com|megaleech.us|mpc-g.com|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|noticiasautomotivas.com.br|pattayaone.net|play-old-pc-games.com|sc2casts.com|scriptnulled.eu|settlersonlinemaps.com|shinobilifeonline.com|sizedrive.com|slideplayer.com.br|streaming-hub.com|unlockpwd.com|unlocktheinbox.com|uploadex.com|wallpapersimages.co.uk|wrestlingtalk.org|xcl.com.br|zeperfs.com (easylistchina+easylist.txt: 60625) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=activistpost.com|afreesms.com|androidrepublic.org|apkmirror.com|appraisersforum.com|aseanlegacy.net|better-explorer.com|bitcofree.com|bitcoinker.com|boxbit.co.in|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|debridit.com|debridnet.com|demo-uhd3d.com|dev-metal.com|ezoden.com|firstonetv.com|freebitco.in|freeprosurfer.com|getdebrid.com|gnomio.com|hackintosh.zone|hubturkey.net|i-stats.net|incredibox.com|kadinlarkulubu.com|leecher.us|liberallogic101.com|lomeutec.com|mangacap.com|mangahop.com|masfuertequeelhierro.com|megaleech.us|mpc-g.com|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|noticiasautomotivas.com.br|pattayaone.net|play-old-pc-games.com|sc2casts.com|scriptnulled.eu|settlersonlinemaps.com|shinobilifeonline.com|sizedrive.com|slideplayer.com.br|streaming-hub.com|unlockpwd.com|unlocktheinbox.com|uploadex.com|wallpapersimages.co.uk|wrestlingtalk.org|xcl.com.br|zeperfs.com (easylist.txt: 50140) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js - -#ab2p-unblock-dnt-R835 -{+client-header-tagger{ab2p-unblock-dnt-R835} \ -} -# @@||csi.gstatic.com^$image,third-party,domain=activistpost.com|aplus.com|bizpacreview.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|flexonline.com|hallels.com|hellou.co.uk|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|redmaryland.com|segmentnext.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|variety.com|weaponsmedia.com (easylistchina+easylist.txt: 45969) -.csi.gstatic.com -# @@||csi.gstatic.com^$image,third-party,domain=activistpost.com|aplus.com|bizpacreview.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|flexonline.com|hallels.com|hellou.co.uk|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|redmaryland.com|segmentnext.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|variety.com|weaponsmedia.com (easylist.txt: 35484) -.csi.gstatic.com - -#ab2p-unblock-dnt-R836 -{+client-header-tagger{ab2p-unblock-dnt-R836} \ -} -# @@||printfriendly.com^$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|weaponsmedia.com (easylistchina+easylist.txt: 46031) -.printfriendly.com -# @@||printfriendly.com^$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|weaponsmedia.com (easylist.txt: 35546) -.printfriendly.com - -#ab2p-unblock-dnt-R837 -{+client-header-tagger{ab2p-unblock-dnt-R837} \ -} -# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina+easylist.txt: 10132) -.ad.alimama.com - -#ab2p-unblock-dnt-R838 -{+client-header-tagger{ab2p-unblock-dnt-R838} \ -} -# @@||liverail.com^*/vpaid-player.swf?$object,domain=addictinggames.com|keygames.com|nglmedia.com|shockwave.com (easylistchina+easylist.txt: 59105) -.liverail.com/.*/vpaid-player\.swf\? -# @@||liverail.com^*/vpaid-player.swf?$object,domain=addictinggames.com|keygames.com|nglmedia.com|shockwave.com (easylist.txt: 48620) -.liverail.com/.*/vpaid-player\.swf\? - -#ab2p-unblock-dnt-R839 -{+client-header-tagger{ab2p-unblock-dnt-R839} \ -} -# @@||api.paymentwall.com^$domain=adguard.com (easylistchina+easylist.txt: 58416) -.api.paymentwall.com -# @@||api.paymentwall.com^$domain=adguard.com (easylist.txt: 47931) -.api.paymentwall.com - -#ab2p-unblock-dnt-R840 -{+client-header-tagger{ab2p-unblock-dnt-R840} \ -} -# @@||wp.com/adlib.info/$domain=adlib.info (easylistchina+easylist.txt: 59824) -.wp.com/adlib\.info/ -# @@||wp.com/adlib.info/$domain=adlib.info (easylist.txt: 49339) -.wp.com/adlib\.info/ - -#ab2p-unblock-dnt-R841 -{+client-header-tagger{ab2p-unblock-dnt-R841} \ -} -# @@/adline.$domain=adline.by|adline.kiev.ua|adline.reformal.ru (advblock.txt: 7185) -/(.*/)?adline\. -adline.*. - -#ab2p-unblock-dnt-R842 -{+client-header-tagger{ab2p-unblock-dnt-R842} \ -} -# @@||cooladata.com^$domain=adme.ru (advblock.txt: 7287) -.cooladata.com - -#ab2p-unblock-dnt-R843 -{+client-header-tagger{ab2p-unblock-dnt-R843} \ -} -# @@||adnet.mennonite.net^$domain=adnetonline.org (easylistchina+easylist.txt: 58211) -.adnet.mennonite.net -# @@||adnet.mennonite.net^$domain=adnetonline.org (easylist.txt: 47726) -.adnet.mennonite.net - -#ab2p-unblock-dnt-R844 -{+client-header-tagger{ab2p-unblock-dnt-R844} \ -} -# @@||adroll.com^$xmlhttprequest,domain=adroll.com (easylistchina+easylist.txt: 61245) -.adroll.com -# @@||adroll.com^$xmlhttprequest,domain=adroll.com (easylist.txt: 50760) -.adroll.com - -#ab2p-unblock-dnt-R845 -{+client-header-tagger{ab2p-unblock-dnt-R845} \ -} -# @@||ads.bridgetrack.com/ads_v2/script/btwrite.js$domain=ads.bridgetrack.com (easylistchina+easylist.txt: 58226) -.ads.bridgetrack.com/ads_v2/script/btwrite\.js -# @@||ads.bridgetrack.com/ads_v2/script/btwrite.js$domain=ads.bridgetrack.com (easylist.txt: 47741) -.ads.bridgetrack.com/ads_v2/script/btwrite\.js - -#ab2p-unblock-dnt-R846 -{+client-header-tagger{ab2p-unblock-dnt-R846} \ -} -# @@||ton.twimg.com^$domain=ads.twitter.com|analytics.twitter.com (easylistchina+easylist.txt: 61266) -.ton.twimg.com -# @@||ads.twitter.com^$domain=ads.twitter.com|analytics.twitter.com (easylistchina+easylist.txt: 61265) -.ads.twitter.com -# @@||ton.twimg.com^$domain=ads.twitter.com|analytics.twitter.com (easylist.txt: 50781) -.ton.twimg.com -# @@||ads.twitter.com^$domain=ads.twitter.com|analytics.twitter.com (easylist.txt: 50780) -.ads.twitter.com - -#ab2p-unblock-dnt-R847 -{+client-header-tagger{ab2p-unblock-dnt-R847} \ -} -# @@||adsbox.$domain=adsbox.com.ua|adsbox.ru (advblock.txt: 7242) -.adsbox.*. - -#ab2p-unblock-dnt-R848 -{+client-header-tagger{ab2p-unblock-dnt-R848} \ -} -# @@/adservice.$domain=adservice.kz (advblock.txt: 7189) -/(.*/)?adservice\. -adservice.*. - -#ab2p-unblock-dnt-R849 -{+client-header-tagger{ab2p-unblock-dnt-R849} \ -} -# @@||banners.one.com/bannere/$domain=adservicemedia.dk (easylistchina+easylist.txt: 61296) -.banners.one.com/bannere/ -# @@||ad-server.one.com/click?agency=adservice-$domain=adservicemedia.dk (easylistchina+easylist.txt: 61292) -.ad-server.one.com/click\?agency=adservice- -# @@||banners.one.com/bannere/$domain=adservicemedia.dk (easylist.txt: 50811) -.banners.one.com/bannere/ -# @@||ad-server.one.com/click?agency=adservice-$domain=adservicemedia.dk (easylist.txt: 50807) -.ad-server.one.com/click\?agency=adservice- - -#ab2p-unblock-dnt-R850 -{+client-header-tagger{ab2p-unblock-dnt-R850} \ -} -# @@/adstyle.$domain=adstyle.com.ua (advblock.txt: 7190) -/(.*/)?adstyle\. -adstyle.*. - -#ab2p-unblock-dnt-R75 -{+client-header-tagger{ab2p-unblock-dnt-R75} \ -} -# @@||37.1.207.27^$subdocument,domain=adultmult.tv (advblock.txt: 7541) -.37.1.207.27 -# @@||googleapis.com^$script,domain=adultmult.tv (advblock.txt: 7303) -.googleapis.com -# @@||adultmult.tv/style.css|$stylesheet,domain=adultmult.tv (advblock.txt: 7244) -.adultmult.tv/style\.css$ - -#ab2p-unblock-dnt-R851 -{+client-header-tagger{ab2p-unblock-dnt-R851} \ -} -# @@||fwmrm.net/p/*/admanager.js$domain=adultswim.com|animalist.com|revision3.com|testtube.com (easylistchina+easylist.txt: 60319) -.fwmrm.net/p/.*/admanager\.js -# @@||fwmrm.net/p/*/admanager.js$domain=adultswim.com|animalist.com|revision3.com|testtube.com (easylist.txt: 49834) -.fwmrm.net/p/.*/admanager\.js - -#ab2p-unblock-dnt-R852 -{+client-header-tagger{ab2p-unblock-dnt-R852} \ -} -# @@||turner.com^*/ads/freewheel/*/admanager.swf$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylistchina+easylist.txt: 59709) -.turner.com/.*/ads/freewheel/.*/admanager\.swf -# @@||turner.com^*/ads/freewheel/*/AdManager.js$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylistchina+easylist.txt: 59708) -.turner.com/.*/ads/freewheel/.*/AdManager\.js -# @@||turner.com^*/ads/freewheel/*/admanager.swf$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylist.txt: 49224) -.turner.com/.*/ads/freewheel/.*/admanager\.swf -# @@||turner.com^*/ads/freewheel/*/AdManager.js$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylist.txt: 49223) -.turner.com/.*/ads/freewheel/.*/AdManager\.js - -#ab2p-unblock-dnt-R853 -{+client-header-tagger{ab2p-unblock-dnt-R853} \ -} -# @@||adv.d3.ru^$domain=adv.d3.ru (advblock.txt: 7245) -.adv.d3.ru - -#ab2p-unblock-dnt-R854 -{+client-header-tagger{ab2p-unblock-dnt-R854} \ -} -# @@||adv.ramr.ru^$domain=adv.ramr.ru (advblock.txt: 7246) -.adv.ramr.ru - -#ab2p-unblock-dnt-R855 -{+client-header-tagger{ab2p-unblock-dnt-R855} \ -} -# @@||advertising.yandex.$domain=adv.ya.ru (advblock.txt: 7252) -.advertising.yandex.*. - -#ab2p-unblock-dnt-R856 -{+client-header-tagger{ab2p-unblock-dnt-R856} \ -} -# @@/advert-$domain=advert-control.ru|advert-empire.com|advert-line.ru|advert-technology.ru (advblock.txt: 7191) -/(.*/)?advert- -advert-*. - -#ab2p-unblock-dnt-R857 -{+client-header-tagger{ab2p-unblock-dnt-R857} \ -} -# @@||advertisers.io^$domain=advertisers.io (easylistchina+easylist.txt: 58337) -.advertisers.io -# @@||advertisers.io^$domain=advertisers.io (easylist.txt: 47852) -.advertisers.io - -#ab2p-unblock-dnt-R858 -{+client-header-tagger{ab2p-unblock-dnt-R858} \ -} -# @@||advertising.amazon.com^$domain=advertising.amazon.com (easylistchina+easylist.txt: 61287) -.advertising.amazon.com -# @@||advertising.amazon.com^$domain=advertising.amazon.com (easylist.txt: 50802) -.advertising.amazon.com - -#ab2p-unblock-dnt-R859 -{+client-header-tagger{ab2p-unblock-dnt-R859} \ -} -# @@||advertising.apple.com^$domain=advertising.apple.com (easylistchina+easylist.txt: 61217) -.advertising.apple.com -# @@||advertising.apple.com^$domain=advertising.apple.com (easylist.txt: 50732) -.advertising.apple.com - -#ab2p-unblock-dnt-R860 -{+client-header-tagger{ab2p-unblock-dnt-R860} \ -} -# @@||advertising.sanoma.be^$domain=advertising.sanoma.be (easylistchina+easylist.txt: 61243) -.advertising.sanoma.be -# @@||advertising.sanoma.be^$domain=advertising.sanoma.be (easylist.txt: 50758) -.advertising.sanoma.be - -#ab2p-unblock-dnt-R861 -{+client-header-tagger{ab2p-unblock-dnt-R861} \ -} -# @@||adview.ru^$domain=adview.ru (advblock.txt: 7254) -.adview.ru - -#ab2p-unblock-dnt-R862 -{+client-header-tagger{ab2p-unblock-dnt-R862} \ -} -# @@/adweb.$domain=adweb.by (advblock.txt: 7193) -/(.*/)?adweb\. -adweb.*. - -#ab2p-unblock-dnt-R863 -{+client-header-tagger{ab2p-unblock-dnt-R863} \ -} -# @@||google.com/tools/feedback/open.js?*^url=https://adwords.google.com/$script,domain=adwords.google.com (easylistchina+easylist.txt: 61171) -.google.com/tools/feedback/open\.js\?.*[^\w%.-]url=https://adwords\.google\.com/ -# @@||bpui0.google.com^$document,subdocument,domain=adwords.google.com (easylistchina+easylist.txt: 61168) -.bpui0.google.com -# @@||adwords.google.com^$domain=adwords.google.com (easylistchina+easylist.txt: 61166) -.adwords.google.com -# @@||accounts.google.com^$document,subdocument,domain=adwords.google.com (easylistchina+easylist.txt: 61164) -.accounts.google.com -# @@||google.com/tools/feedback/open.js?*^url=https://adwords.google.com/$script,domain=adwords.google.com (easylist.txt: 50686) -.google.com/tools/feedback/open\.js\?.*[^\w%.-]url=https://adwords\.google\.com/ -# @@||bpui0.google.com^$document,subdocument,domain=adwords.google.com (easylist.txt: 50683) -.bpui0.google.com -# @@||adwords.google.com^$domain=adwords.google.com (easylist.txt: 50681) -.adwords.google.com -# @@||accounts.google.com^$document,subdocument,domain=adwords.google.com (easylist.txt: 50679) -.accounts.google.com - -#ab2p-unblock-dnt-R864 -{+client-header-tagger{ab2p-unblock-dnt-R864} \ -} -# @@||5.189.144.107^$script,domain=afdah.tv (easylistchina+easylist.txt: 59972) -.5.189.144.107 -# @@||5.189.144.107^$script,domain=afdah.tv (easylist.txt: 49487) -.5.189.144.107 - -#ab2p-unblock-dnt-R865 -{+client-header-tagger{ab2p-unblock-dnt-R865} \ -} -# @@||ssl-images-amazon.com/images/$image,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylistchina+easylist.txt: 61258) -.ssl-images-amazon.com/images/ -# @@||amazon-adsystem.com/e/cm?$document,subdocument,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylistchina+easylist.txt: 61255) -.amazon-adsystem.com/e/cm\? -# @@||ssl-images-amazon.com/images/$image,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylist.txt: 50773) -.ssl-images-amazon.com/images/ -# @@||amazon-adsystem.com/e/cm?$document,subdocument,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylist.txt: 50770) -.amazon-adsystem.com/e/cm\? - -#ab2p-unblock-dnt-R866 -{+client-header-tagger{ab2p-unblock-dnt-R866} \ -} -# @@||amazon.com/home/ads/$document,subdocument,domain=affiliate-program.amazon.com (easylistchina+easylist.txt: 61257) -.amazon.com/home/ads/ -# @@||amazon-adsystem.com^$domain=affiliate-program.amazon.com (easylistchina+easylist.txt: 61256) -.amazon-adsystem.com -# @@||amazon.com/home/ads/$document,subdocument,domain=affiliate-program.amazon.com (easylist.txt: 50772) -.amazon.com/home/ads/ -# @@||amazon-adsystem.com^$domain=affiliate-program.amazon.com (easylist.txt: 50771) -.amazon-adsystem.com - -#ab2p-unblock-dnt-R867 -{+client-header-tagger{ab2p-unblock-dnt-R867} \ -} -# @@||affinitylive.com^*/affiliation/$xmlhttprequest,domain=affinitylive.com (easylistchina+easylist.txt: 58363) -.affinitylive.com/.*/affiliation/ -# @@||affinitylive.com^*/affiliation/$xmlhttprequest,domain=affinitylive.com (easylist.txt: 47878) -.affinitylive.com/.*/affiliation/ - -#ab2p-unblock-dnt-R868 -{+client-header-tagger{ab2p-unblock-dnt-R868} \ -} -# @@||yceml.net^$object,domain=affrity.com (easylistchina+easylist.txt: 59843) -.yceml.net -# @@||images-amazon.com^$domain=affrity.com (easylistchina+easylist.txt: 58977) -.images-amazon.com -# @@||go2cloud.org/aff_i?$image,domain=affrity.com (easylistchina+easylist.txt: 58887) -.go2cloud.org/aff_i\? -# @@||flipkart.com/affiliate/displayWidget?$subdocument,domain=affrity.com (easylistchina+easylist.txt: 58827) -.flipkart.com/affiliate/displayWidget\? -# @@||awltovhc.com^$object,domain=affrity.com (easylistchina+easylist.txt: 58466) -.awltovhc.com -# @@||amazon-adsystem.com^$domain=affrity.com (easylistchina+easylist.txt: 58393) -.amazon-adsystem.com -# @@||amazon-adsystem.com^$document,subdocument,domain=affrity.com (easylistchina+easylist.txt: 58392) -.amazon-adsystem.com -# @@||yceml.net^$object,domain=affrity.com (easylist.txt: 49358) -.yceml.net -# @@||images-amazon.com^$domain=affrity.com (easylist.txt: 48492) -.images-amazon.com -# @@||go2cloud.org/aff_i?$image,domain=affrity.com (easylist.txt: 48402) -.go2cloud.org/aff_i\? -# @@||flipkart.com/affiliate/displayWidget?$subdocument,domain=affrity.com (easylist.txt: 48342) -.flipkart.com/affiliate/displayWidget\? -# @@||awltovhc.com^$object,domain=affrity.com (easylist.txt: 47981) -.awltovhc.com -# @@||amazon-adsystem.com^$domain=affrity.com (easylist.txt: 47908) -.amazon-adsystem.com -# @@||amazon-adsystem.com^$document,subdocument,domain=affrity.com (easylist.txt: 47907) -.amazon-adsystem.com - -#ab2p-unblock-dnt-R869 -{+client-header-tagger{ab2p-unblock-dnt-R869} \ -} -# @@.com/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 58099) -/.*\.com/image-.*- -.*.com/image-.*- -# @@.com/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 47614) -/.*\.com/image-.*- -.*.com/image-.*- - -#ab2p-unblock-dnt-R870 -{+client-header-tagger{ab2p-unblock-dnt-R870} \ -} -# @@||yceml.net^$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59842) -.yceml.net -# @@||yceml.net^$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49357) -.yceml.net - -#ab2p-unblock-dnt-R871 -{+client-header-tagger{ab2p-unblock-dnt-R871} \ -} -# @@.net/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58101) -/.*\.net/image-.*- -.*.net/image-.*- -# @@.net/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47616) -/.*\.net/image-.*- -.*.net/image-.*- - -#ab2p-unblock-dnt-R872 -{+client-header-tagger{ab2p-unblock-dnt-R872} \ -} -# @@_300x250.$image,domain=affrity.com|lockd.co.uk (easylistchina+easylist.txt: 61305) -/.*_300x250\. -# @@_300x250.$image,domain=affrity.com|lockd.co.uk (easylist.txt: 50820) -/.*_300x250\. - -#ab2p-unblock-dnt-R873 -{+client-header-tagger{ab2p-unblock-dnt-R873} \ -} -# @@||afisha.ru/proxy/$domain=afisha.ru (advblock.txt: 7257) -.afisha.ru/proxy/ - -#ab2p-unblock-dnt-R874 -{+client-header-tagger{ab2p-unblock-dnt-R874} \ -} -# @@||adriver.ru/images/$script,domain=afisha.ru|aif.ru|eg.ru|ex.ua|forum.tatfish.com|grandars.ru|klops.ru|meta.ua|mobile-review.com|ozon.ru|thg.ru|vz.ru (advblock.txt: 7621) -.adriver.ru/images/ - -#ab2p-unblock-dnt-R875 -{+client-header-tagger{ab2p-unblock-dnt-R875} \ -} -# @@||adriver.ru/cgi-bin/erle.cgi?$script,domain=afisha.ru|aif.ru|ex.ua|fileplaneta.com|forum.tatfish.com|grandars.ru|klops.ru|meta.ua|oceanvideo.ru|ozon.ru|thg.ru|vz.ru (advblock.txt: 7618) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-unblock-dnt-R876 -{+client-header-tagger{ab2p-unblock-dnt-R876} \ -} -# @@||medrx.sensis.com.au/images/sensis/generic.js$domain=afl.com.au (easylistchina+easylist.txt: 59163) -.medrx.sensis.com.au/images/sensis/generic\.js -# @@||img.mediaplex.com^*_afl_bettingpage_$domain=afl.com.au (easylistchina+easylist.txt: 58994) -.img.mediaplex.com/.*_afl_bettingpage_ -# @@||adfarm.mediaplex.com^$domain=afl.com.au (easylistchina+easylist.txt: 58196) -.adfarm.mediaplex.com -# @@||medrx.sensis.com.au/images/sensis/generic.js$domain=afl.com.au (easylist.txt: 48678) -.medrx.sensis.com.au/images/sensis/generic\.js -# @@||img.mediaplex.com^*_afl_bettingpage_$domain=afl.com.au (easylist.txt: 48509) -.img.mediaplex.com/.*_afl_bettingpage_ -# @@||adfarm.mediaplex.com^$domain=afl.com.au (easylist.txt: 47711) -.adfarm.mediaplex.com - -#ab2p-unblock-dnt-R877 -{+client-header-tagger{ab2p-unblock-dnt-R877} \ -} -# @@||medrx.sensis.com.au/images/sensis/*/util.js$domain=afl.com.au|goal.com (easylistchina+easylist.txt: 59162) -.medrx.sensis.com.au/images/sensis/.*/util\.js -# @@||medrx.sensis.com.au/images/sensis/*/util.js$domain=afl.com.au|goal.com (easylist.txt: 48677) -.medrx.sensis.com.au/images/sensis/.*/util\.js - -#ab2p-unblock-dnt-R878 -{+client-header-tagger{ab2p-unblock-dnt-R878} \ -} -# @@||afreesms.com^$script,domain=afreesms.com (easylistchina+easylist.txt: 60040) -.afreesms.com -# @@||97.74.238.106^$domain=afreesms.com (easylistchina+easylist.txt: 59975) -.97.74.238.106 -# @@||afreesms.com^$script,domain=afreesms.com (easylist.txt: 49555) -.afreesms.com -# @@||97.74.238.106^$domain=afreesms.com (easylist.txt: 49490) -.97.74.238.106 - -#ab2p-unblock-dnt-R879 -{+client-header-tagger{ab2p-unblock-dnt-R879} \ -} -# @@||videoplaza.tv/proxy/distributor?$object-subrequest,domain=aftenposten.no|bt.no|ekstrabladet.dk|kuriren.nu|qbrick.com|svd.se (easylistchina+easylist.txt: 61146) -.videoplaza.tv/proxy/distributor\? -# @@||videoplaza.tv/proxy/distributor?$object-subrequest,domain=aftenposten.no|bt.no|ekstrabladet.dk|kuriren.nu|qbrick.com|svd.se (easylist.txt: 50661) -.videoplaza.tv/proxy/distributor\? - -#ab2p-unblock-dnt-R880 -{+client-header-tagger{ab2p-unblock-dnt-R880} \ -} -# @@||adserver.adtech.de/multiad/$script,domain=aftenposten.no|e24.no|hardware.no|vg.no (easylistchina+easylist.txt: 60025) -.adserver.adtech.de/multiad/ -# @@||adserver.adtech.de/multiad/$script,domain=aftenposten.no|e24.no|hardware.no|vg.no (easylist.txt: 49540) -.adserver.adtech.de/multiad/ - -#ab2p-unblock-dnt-R881 -{+client-header-tagger{ab2p-unblock-dnt-R881} \ -} -# @@/teasers/*$image,domain=aftershock.news|expertbank.com|hock5.ru|legionhardware.com|rw.by (advblock.txt: 7210) -/(.*/)?teasers/.* - -#ab2p-unblock-dnt-R882 -{+client-header-tagger{ab2p-unblock-dnt-R882} \ -} -# @@||advert.akado.ru/$domain=akado.ru (advblock.txt: 7248) -.advert.akado.ru - -#ab2p-unblock-dnt-R883 -{+client-header-tagger{ab2p-unblock-dnt-R883} \ -} -# @@/ai/adbanner/*$domain=akado.ru|megafon.ru (advblock.txt: 7195) -/(.*/)?ai/adbanner/.* - -#ab2p-unblock-dnt-R884 -{+client-header-tagger{ab2p-unblock-dnt-R884} \ -} -# @@||aka-cdn-ns.adtech.de/images/*.gif$image,domain=akam.no|amobil.no|gamer.no|hardware.no|teknofil.no (easylistchina+easylist.txt: 60047) -.aka-cdn-ns.adtech.de/images/.*\.gif -# @@||aka-cdn-ns.adtech.de/images/*.gif$image,domain=akam.no|amobil.no|gamer.no|hardware.no|teknofil.no (easylist.txt: 49562) -.aka-cdn-ns.adtech.de/images/.*\.gif - -#ab2p-unblock-dnt-R885 -{+client-header-tagger{ab2p-unblock-dnt-R885} \ -} -# @@||com/banners/$domain=akprior.com|eurobank-ua.com|maingear.com (advblock.txt: 7286) - -#ab2p-unblock-dnt-R886 -{+client-header-tagger{ab2p-unblock-dnt-R886} \ -} -# @@/files/banners/*$domain=aktiv48.ru|interzet.ru|pgpru.com (advblock.txt: 7200) -/(.*/)?files/banners/.* - -#ab2p-unblock-dnt-R887 -{+client-header-tagger{ab2p-unblock-dnt-R887} \ -} -# @@/adfox.$script,domain=alfabank.ru|megafon.ru|mirtesen.ru (advblock.txt: 7182) -/(.*/)?adfox\. -adfox.*. - -#ab2p-unblock-dnt-R888 -{+client-header-tagger{ab2p-unblock-dnt-R888} \ -} -# @@/adfox/*$image,object,domain=alfabank.ru|megafon.ru|sovsport.ru (advblock.txt: 7184) -/(.*/)?adfox/.* - -#ab2p-unblock-dnt-R889 -{+client-header-tagger{ab2p-unblock-dnt-R889} \ -} -# @@://ads.$domain=alfabank.ru|mts.ru (advblock.txt: 7216) -/.*://ads\. -ads.*. - -#ab2p-unblock-dnt-R890 -{+client-header-tagger{ab2p-unblock-dnt-R890} \ -} -# @@||recreativ.ru/rcode.$script,domain=all-episodes.com (advblock.txt: 7595) -.recreativ.ru/rcode\. - -#ab2p-unblock-dnt-R891 -{+client-header-tagger{ab2p-unblock-dnt-R891} \ -} -# @@/advertisment.js|$domain=allserial.tv|turbobitit.org|vidhost12.org (advblock.txt: 7532) -/(.*/)?advertisment\.js$ -advertisment.js - -#ab2p-unblock-dnt-R892 -{+client-header-tagger{ab2p-unblock-dnt-R892} \ -} -# @@||adman.gr/jwplayer.flash.swf$object,domain=alphatv.gr (easylistchina+easylist.txt: 60936) -.adman.gr/jwplayer\.flash\.swf -# @@||adman.gr/adman-video.js$domain=alphatv.gr (easylistchina+easylist.txt: 60935) -.adman.gr/adman-video\.js -# @@||adman.gr/jwplayer.flash.swf$object,domain=alphatv.gr (easylist.txt: 50451) -.adman.gr/jwplayer\.flash\.swf -# @@||adman.gr/adman-video.js$domain=alphatv.gr (easylist.txt: 50450) -.adman.gr/adman-video\.js - -#ab2p-unblock-dnt-R893 -{+client-header-tagger{ab2p-unblock-dnt-R893} \ -} -# @@||adv.alsscan.com^$image,stylesheet,domain=alscash.com (easylistchina+easylist.txt: 61429) -.adv.alsscan.com -# @@||adv.alsscan.com^$image,stylesheet,domain=alscash.com (easylist.txt: 50944) -.adv.alsscan.com - -#ab2p-unblock-dnt-R894 -{+client-header-tagger{ab2p-unblock-dnt-R894} \ -} -# @@/spcjs.php$script,domain=altapress.ru (advblock.txt: 7207) -/(.*/)?spcjs\.php -spcjs.php*. -# @@/delivery/fl.$script,domain=altapress.ru (advblock.txt: 7198) -/(.*/)?delivery/fl\. - -#ab2p-unblock-dnt-R895 -{+client-header-tagger{ab2p-unblock-dnt-R895} \ -} -# @@||kavanga.ru/exp?$script,domain=altapress.ru|artfile.ru|baskino.com|biysk24.ru|klops.ru|kulturologia.ru|lokomotiv.info|russianfood.com|topnews.ru|verstov.info (advblock.txt: 7629) -.kavanga.ru/exp\? - -#ab2p-unblock-dnt-R896 -{+client-header-tagger{ab2p-unblock-dnt-R896} \ -} -# @@||pagead2.googlesyndication.com/pagead/$script,domain=altoque.com (easylistchina+easylist.txt: 60621) -.pagead2.googlesyndication.com/pagead/ -# @@||pagead2.googlesyndication.com/pagead/$script,domain=altoque.com (easylist.txt: 50136) -.pagead2.googlesyndication.com/pagead/ - -#ab2p-unblock-dnt-R897 -{+client-header-tagger{ab2p-unblock-dnt-R897} \ -} -# @@||am.ru/shared/minify.php?$script,stylesheet,domain=am.ru (advblock.txt: 7260) -.am.ru/shared/minify\.php\? - -#ab2p-unblock-dnt-R898 -{+client-header-tagger{ab2p-unblock-dnt-R898} \ -} -# @@||widget.plugrush.com^$subdocument,domain=amateursexy.net (easylistchina+easylist.txt: 61468) -.widget.plugrush.com -# @@||widget.plugrush.com^$subdocument,domain=amateursexy.net (easylist.txt: 50983) -.widget.plugrush.com - -#ab2p-unblock-dnt-R899 -{+client-header-tagger{ab2p-unblock-dnt-R899} \ -} -# @@||ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylistchina+easylist.txt: 59582) -.ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylistchina+easylist.txt: 58976) -.images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/*/adsimages/$domain=amazon.com (easylistchina+easylist.txt: 58975) -.images-amazon.com/images/.*/adsimages/ -# @@||ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylist.txt: 49097) -.ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylist.txt: 48491) -.images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/*/adsimages/$domain=amazon.com (easylist.txt: 48490) -.images-amazon.com/images/.*/adsimages/ - -#ab2p-unblock-dnt-R900 -{+client-header-tagger{ab2p-unblock-dnt-R900} \ -} -# @@||googlesyndication.com/simgad/$image,domain=amctheatres.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|drupalcommerce.org|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|nedbank.co.za|orbitz.com|podomatic.com|weddingspot.co.uk|wlj.net|zavvi.com (easylistchina+easylist.txt: 58915) -.googlesyndication.com/simgad/ -# @@||googlesyndication.com/simgad/$image,domain=amctheatres.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|drupalcommerce.org|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|nedbank.co.za|orbitz.com|podomatic.com|weddingspot.co.uk|wlj.net|zavvi.com (easylist.txt: 48430) -.googlesyndication.com/simgad/ - -#ab2p-unblock-dnt-R901 -{+client-header-tagger{ab2p-unblock-dnt-R901} \ -} -# @@||partner.googleadservices.com/gampad/google_ads_gpt.js$domain=amctheatres.com|pitchfork.com|podomatic.com|virginaustralia.com (easylistchina+easylist.txt: 59342) -.partner.googleadservices.com/gampad/google_ads_gpt\.js -# @@||partner.googleadservices.com/gampad/google_ads_gpt.js$domain=amctheatres.com|pitchfork.com|podomatic.com|virginaustralia.com (easylist.txt: 48857) -.partner.googleadservices.com/gampad/google_ads_gpt\.js - -#ab2p-unblock-dnt-R902 -{+client-header-tagger{ab2p-unblock-dnt-R902} \ -} -# @@||ru/banners/$image,domain=amic.ru|animespirit.ru|citilink.ru|furfurmag.ru|killot.ru|onlime.ru|sobesednik.ru|toptracker.ru|webnames.ru|wildberries.ru|zalivalka.ru (advblock.txt: 7380) - -#ab2p-unblock-dnt-R903 -{+client-header-tagger{ab2p-unblock-dnt-R903} \ -} -# @@||ams.amazon.co.jp^$domain=ams.amazon.co.jp (easylistchina+easylist.txt: 61288) -.ams.amazon.co.jp -# @@||ams.amazon.co.jp^$domain=ams.amazon.co.jp (easylist.txt: 50803) -.ams.amazon.co.jp - -#ab2p-unblock-dnt-R904 -{+client-header-tagger{ab2p-unblock-dnt-R904} \ -} -# @@||ams.amazon.co.uk^$domain=ams.amazon.co.uk (easylistchina+easylist.txt: 61289) -.ams.amazon.co.uk -# @@||ams.amazon.co.uk^$domain=ams.amazon.co.uk (easylist.txt: 50804) -.ams.amazon.co.uk - -#ab2p-unblock-dnt-R905 -{+client-header-tagger{ab2p-unblock-dnt-R905} \ -} -# @@||ams.amazon.com^$domain=ams.amazon.com (easylistchina+easylist.txt: 61290) -.ams.amazon.com -# @@||ams.amazon.com^$domain=ams.amazon.com (easylist.txt: 50805) -.ams.amazon.com - -#ab2p-unblock-dnt-R906 -{+client-header-tagger{ab2p-unblock-dnt-R906} \ -} -# @@||mfcreative.com/lib/tgn/combo.ashx?$script,stylesheet,domain=ancestry.com|ancestry.com.au (easylistchina+easylist.txt: 59172) -.mfcreative.com/lib/tgn/combo\.ashx\? -# @@||mfcreative.com/lib/tgn/combo.ashx?$script,stylesheet,domain=ancestry.com|ancestry.com.au (easylist.txt: 48687) -.mfcreative.com/lib/tgn/combo\.ashx\? - -#ab2p-unblock-dnt-R907 -{+client-header-tagger{ab2p-unblock-dnt-R907} \ -} -# @@||delivery.anchorfree.us/player-multi.php?$subdocument,domain=anchorfree.us (easylistchina+easylist.txt: 58664) -.delivery.anchorfree.us/player-multi\.php\? -# @@||delivery.anchorfree.us/player-multi.php?$subdocument,domain=anchorfree.us (easylist.txt: 48179) -.delivery.anchorfree.us/player-multi\.php\? - -#ab2p-unblock-dnt-R908 -{+client-header-tagger{ab2p-unblock-dnt-R908} \ -} -# @@||objects.tremormedia.com/embed/swf/acudeoplayer.swf$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylistchina+easylist.txt: 59287) -.objects.tremormedia.com/embed/swf/acudeoplayer\.swf -# @@||objects.tremormedia.com/embed/js/$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylistchina+easylist.txt: 59285) -.objects.tremormedia.com/embed/js/ -# @@||objects.tremormedia.com/embed/swf/acudeoplayer.swf$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylist.txt: 48802) -.objects.tremormedia.com/embed/swf/acudeoplayer\.swf -# @@||objects.tremormedia.com/embed/js/$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylist.txt: 48800) -.objects.tremormedia.com/embed/js/ - -#ab2p-unblock-dnt-R909 -{+client-header-tagger{ab2p-unblock-dnt-R909} \ -} -# @@||ltassrv.com/yume/yume_$object-subrequest,domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylistchina+easylist.txt: 59116) -.ltassrv.com/yume/yume_ -# @@||ltassrv.com/yume.swf$domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylistchina+easylist.txt: 59115) -.ltassrv.com/yume\.swf -# @@||ltassrv.com/yume/yume_$object-subrequest,domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylist.txt: 48631) -.ltassrv.com/yume/yume_ -# @@||ltassrv.com/yume.swf$domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylist.txt: 48630) -.ltassrv.com/yume\.swf - -#ab2p-unblock-dnt-R910 -{+client-header-tagger{ab2p-unblock-dnt-R910} \ -} -# @@||chitika.net/getads.js$domain=anisearch.com (easylistchina+easylist.txt: 60156) -.chitika.net/getads\.js -# @@||chitika.net/getads.js$domain=anisearch.com (easylist.txt: 49671) -.chitika.net/getads\.js - -#ab2p-unblock-dnt-R93 -{+client-header-tagger{ab2p-unblock-dnt-R93} \ -} -# @@||anistar.ru/adv/$domain=anistar.ru (advblock.txt: 7560) -.anistar.ru/adv/ - -#ab2p-unblock-dnt-R911 -{+client-header-tagger{ab2p-unblock-dnt-R911} \ -} -# @@||game-advertising-online.com/index.php?section=serve&id=7740&subid=$subdocument,domain=anizm.com (easylistchina+easylist.txt: 60333) -.game-advertising-online.com/index\.php\?section=serve&id=7740&subid= -# @@||game-advertising-online.com/index.php?section=serve&id=7740&subid=$subdocument,domain=anizm.com (easylist.txt: 49848) -.game-advertising-online.com/index\.php\?section=serve&id=7740&subid= - -#ab2p-unblock-dnt-R912 -{+client-header-tagger{ab2p-unblock-dnt-R912} \ -} -# @@||adsonar.com/js/adsonar.js$domain=ansingstatejournal.com|app.com|battlecreekenquirer.com|clarionledger.com|coloradoan.com|dailyrecord.com|dailyworld.com|delmarvanow.com|freep.com|greatfallstribune.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|ithacajournal.com|jconline.com|livingstondaily.com|montgomeryadvertiser.com|mycentraljersey.com|news-press.com|pal-item.com|pnj.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|shreveporttimes.com|stargazette.com|tallahassee.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|thenewsstar.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com (easylistchina+easylist.txt: 58307) -.adsonar.com/js/adsonar\.js -# @@||adsonar.com/js/adsonar.js$domain=ansingstatejournal.com|app.com|battlecreekenquirer.com|clarionledger.com|coloradoan.com|dailyrecord.com|dailyworld.com|delmarvanow.com|freep.com|greatfallstribune.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|ithacajournal.com|jconline.com|livingstondaily.com|montgomeryadvertiser.com|mycentraljersey.com|news-press.com|pal-item.com|pnj.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|shreveporttimes.com|stargazette.com|tallahassee.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|thenewsstar.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com (easylist.txt: 47822) -.adsonar.com/js/adsonar\.js - -#ab2p-unblock-dnt-R913 -{+client-header-tagger{ab2p-unblock-dnt-R913} \ -} -# @@||smartadserver.com/call/pubx/*blq$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 61116) -.smartadserver.com/call/pubx/.*blq -# @@||smartadserver.com/call/pubj/*/S/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60748) -.smartadserver.com/call/pubj/.*/S/.*/\? -# @@||smartadserver.com/call/pubj/*/M/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60747) -.smartadserver.com/call/pubj/.*/M/.*/\? -# @@||ima3vpaid.appspot.com/crossdomain.xml$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60403) -.ima3vpaid.appspot.com/crossdomain\.xml -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60402) -.ima3vpaid.appspot.com/\?adTagUrl= -# @@||smartadserver.com/call/pubx/*blq$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50631) -.smartadserver.com/call/pubx/.*blq -# @@||smartadserver.com/call/pubj/*/S/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50263) -.smartadserver.com/call/pubj/.*/S/.*/\? -# @@||smartadserver.com/call/pubj/*/M/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50262) -.smartadserver.com/call/pubj/.*/M/.*/\? -# @@||ima3vpaid.appspot.com/crossdomain.xml$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 49918) -.ima3vpaid.appspot.com/crossdomain\.xml -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 49917) -.ima3vpaid.appspot.com/\?adTagUrl= - -#ab2p-unblock-dnt-R914 -{+client-header-tagger{ab2p-unblock-dnt-R914} \ -} -# @@||2mdn.net/instream/video/client.js$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com|majorleaguegaming.com (easylistchina+easylist.txt: 59965) -.2mdn.net/instream/video/client\.js -# @@||2mdn.net/instream/video/client.js$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com|majorleaguegaming.com (easylist.txt: 49480) -.2mdn.net/instream/video/client\.js - -#ab2p-unblock-dnt-R915 -{+client-header-tagger{ab2p-unblock-dnt-R915} \ -} -# @@||smartadserver.com/diff/*/show*.asp?*blq$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com|ondacero.es (easylistchina+easylist.txt: 61118) -.smartadserver.com/diff/.*/show.*\.asp\?.*blq -# @@||smartadserver.com/diff/*/show*.asp?*blq$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com|ondacero.es (easylist.txt: 50633) -.smartadserver.com/diff/.*/show.*\.asp\?.*blq - -#ab2p-unblock-dnt-R916 -{+client-header-tagger{ab2p-unblock-dnt-R916} \ -} -# @@||smartadserver.com/call/pubj/$object-subrequest,domain=antena3.com|europafm.com|ondacero.es|vertele.com (easylistchina+easylist.txt: 61114) -.smartadserver.com/call/pubj/ -# @@||smartadserver.com/call/pubj/$object-subrequest,domain=antena3.com|europafm.com|ondacero.es|vertele.com (easylist.txt: 50629) -.smartadserver.com/call/pubj/ - -#ab2p-unblock-dnt-R917 -{+client-header-tagger{ab2p-unblock-dnt-R917} \ -} -# @@||aolcdn.com^*/adhads.css$domain=aol.com (easylistchina+easylist.txt: 58411) -.aolcdn.com/.*/adhads\.css -# @@||aolcdn.com^*/adhads.css$domain=aol.com (easylist.txt: 47926) -.aolcdn.com/.*/adhads\.css - -#ab2p-unblock-dnt-R918 -{+client-header-tagger{ab2p-unblock-dnt-R918} \ -} -# @@||aolcdn.com^*/adsWrapper.$domain=aol.com|engadget.com|games.com|huffingtonpost.com|mapquest.com|stylelist.ca (easylistchina+easylist.txt: 58412) -.aolcdn.com/.*/adsWrapper\. -# @@||aolcdn.com^*/adsWrapper.$domain=aol.com|engadget.com|games.com|huffingtonpost.com|mapquest.com|stylelist.ca (easylist.txt: 47927) -.aolcdn.com/.*/adsWrapper\. - -#ab2p-unblock-dnt-R919 -{+client-header-tagger{ab2p-unblock-dnt-R919} \ -} -# @@||media.glnsrv.com/ads/$image,domain=aopschools.com (easylistchina+easylist.txt: 59152) -.media.glnsrv.com/ads/ -# @@||media.glnsrv.com/ads/$image,domain=aopschools.com (easylist.txt: 48667) -.media.glnsrv.com/ads/ - -#ab2p-unblock-dnt-R920 -{+client-header-tagger{ab2p-unblock-dnt-R920} \ -} -# @@||auditude.com/adserver?$object-subrequest,domain=ap.org|majorleaguegaming.com|newsinc.com (easylistchina+easylist.txt: 58451) -.auditude.com/adserver\? -# @@||auditude.com/adserver?$object-subrequest,domain=ap.org|majorleaguegaming.com|newsinc.com (easylist.txt: 47966) -.auditude.com/adserver\? - -#ab2p-unblock-dnt-R921 -{+client-header-tagger{ab2p-unblock-dnt-R921} \ -} -# @@||doubleclick.net/adi/apts.com/home;pos=$subdocument,domain=apartments.com (easylistchina+easylist.txt: 58697) -.doubleclick.net/adi/apts\.com/home;pos= -# @@||doubleclick.net/adi/apts.com/home;pos=$subdocument,domain=apartments.com (easylist.txt: 48212) -.doubleclick.net/adi/apts\.com/home;pos= - -#ab2p-unblock-dnt-R922 -{+client-header-tagger{ab2p-unblock-dnt-R922} \ -} -# @@||luxup.ru/crossdomain.xml|$domain=api.kinomoov.net (advblock.txt: 7327) -.luxup.ru/crossdomain\.xml$ - -#ab2p-unblock-dnt-R923 -{+client-header-tagger{ab2p-unblock-dnt-R923} \ -} -# @@||g.doubleclick.net/gampad/ads?$script,domain=app.com|argusleader.com|autoguide.com|battlecreekenquirer.com|baxterbulletin.com|beqala.com|boatshop24.com|bodas.com.mx|bodas.net|bucyrustelegraphforum.com|burlingtonfreepress.com|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|chillicothegazette.com|cincinnati.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|deadspin.com|defensenews.com|delawareonline.com|democratandchronicle.com|desmoinesregister.com|dnj.com|drupalcommerce.org|escapegames.com|fdlreporter.com|floridatoday.com|foxnews.com|freep.com|games.latimes.com|gawker.com|gizmodo.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|htrnews.com|indystar.com|investopedia.com|io9.com|ithacajournal.com|jacksonsun.com|jalopnik.com|jconline.com|jezebel.com|kotaku.com|lancastereaglegazette.com|lansingstatejournal.com|lifehacker.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|mariages.net|marionstar.com|marshfieldnewsherald.com|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|montgomeryadvertiser.com|motorcycle.com|mycentraljersey.com|mydesert.com|mysoju.com|nauticexpo.com|nedbank.co.za|nedbankgreen.co.za|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|nonags.com|orbitz.com|pal-item.com|podomatic.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thedailyjournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thesimsresource.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|ticketek.com.ar|urbandictionary.com|virginaustralia.com|visaliatimesdelta.com|volokh.com|vroomvroomvroom.com.au|wausaudailyherald.com|weddingspot.co.uk|wisconsinrapidstribune.com|wlj.net|zanesvilletimesrecorder.com|zavvi.com|zillow.com|zui.com (easylistchina+easylist.txt: 58851) -.g.doubleclick.net/gampad/ads\? -# @@||g.doubleclick.net/gampad/ads?$script,domain=app.com|argusleader.com|autoguide.com|battlecreekenquirer.com|baxterbulletin.com|beqala.com|boatshop24.com|bodas.com.mx|bodas.net|bucyrustelegraphforum.com|burlingtonfreepress.com|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|chillicothegazette.com|cincinnati.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|deadspin.com|defensenews.com|delawareonline.com|democratandchronicle.com|desmoinesregister.com|dnj.com|drupalcommerce.org|escapegames.com|fdlreporter.com|floridatoday.com|foxnews.com|freep.com|games.latimes.com|gawker.com|gizmodo.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|htrnews.com|indystar.com|investopedia.com|io9.com|ithacajournal.com|jacksonsun.com|jalopnik.com|jconline.com|jezebel.com|kotaku.com|lancastereaglegazette.com|lansingstatejournal.com|lifehacker.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|mariages.net|marionstar.com|marshfieldnewsherald.com|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|montgomeryadvertiser.com|motorcycle.com|mycentraljersey.com|mydesert.com|mysoju.com|nauticexpo.com|nedbank.co.za|nedbankgreen.co.za|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|nonags.com|orbitz.com|pal-item.com|podomatic.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thedailyjournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thesimsresource.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|ticketek.com.ar|urbandictionary.com|virginaustralia.com|visaliatimesdelta.com|volokh.com|vroomvroomvroom.com.au|wausaudailyherald.com|weddingspot.co.uk|wisconsinrapidstribune.com|wlj.net|zanesvilletimesrecorder.com|zavvi.com|zillow.com|zui.com (easylist.txt: 48366) -.g.doubleclick.net/gampad/ads\? - -#ab2p-unblock-dnt-R924 -{+client-header-tagger{ab2p-unblock-dnt-R924} \ -} -# @@||js.revsci.net/gateway/gw.js?$domain=app.com|argusleader.com|aviationweek.com|battlecreekenquirer.com|baxterbulletin.com|bucyrustelegraphforum.com|burlingtonfreepress.com|centralohio.com|chillicothegazette.com|cincinnati.com|citizen-times.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|delawareonline.com|delmarvanow.com|democratandchronicle.com|desmoinesregister.com|dnj.com|fdlreporter.com|foxsmallbusinesscenter.com|freep.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|honoluluadvertiser.com|htrnews.com|indystar.com|jacksonsun.com|jconline.com|lancastereaglegazette.com|lansingstatejournal.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|marionstar.com|marshfieldnewsherald.com|montgomeryadvertiser.com|mycentraljersey.com|mydesert.com|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|pal-item.com|pnj.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|theithacajournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com|wausaudailyherald.com|weather.com|wisconsinrapidstribune.com|zanesvilletimesrecorder.com (easylistchina+easylist.txt: 59049) -.js.revsci.net/gateway/gw\.js\? -# @@||js.revsci.net/gateway/gw.js?$domain=app.com|argusleader.com|aviationweek.com|battlecreekenquirer.com|baxterbulletin.com|bucyrustelegraphforum.com|burlingtonfreepress.com|centralohio.com|chillicothegazette.com|cincinnati.com|citizen-times.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|delawareonline.com|delmarvanow.com|democratandchronicle.com|desmoinesregister.com|dnj.com|fdlreporter.com|foxsmallbusinesscenter.com|freep.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|honoluluadvertiser.com|htrnews.com|indystar.com|jacksonsun.com|jconline.com|lancastereaglegazette.com|lansingstatejournal.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|marionstar.com|marshfieldnewsherald.com|montgomeryadvertiser.com|mycentraljersey.com|mydesert.com|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|pal-item.com|pnj.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|theithacajournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com|wausaudailyherald.com|weather.com|wisconsinrapidstribune.com|zanesvilletimesrecorder.com (easylist.txt: 48564) -.js.revsci.net/gateway/gw\.js\? - -#ab2p-unblock-dnt-R925 -{+client-header-tagger{ab2p-unblock-dnt-R925} \ -} -# @@||apple.com^*/images/ads_$image,domain=apple.com (easylistchina+easylist.txt: 58423) -.apple.com/.*/images/ads_ -# @@||apple.com^*/images/ad-$image,domain=apple.com (easylistchina+easylist.txt: 58422) -.apple.com/.*/images/ad- -# @@||apple.com^*/images/ads_$image,domain=apple.com (easylist.txt: 47938) -.apple.com/.*/images/ads_ -# @@||apple.com^*/images/ad-$image,domain=apple.com (easylist.txt: 47937) -.apple.com/.*/images/ad- - -#ab2p-unblock-dnt-R926 -{+client-header-tagger{ab2p-unblock-dnt-R926} \ -} -# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina+easylist.txt: 10127) -.ad-specs.guoshipartners.com/static/js/isip\.js - -#ab2p-unblock-dnt-R927 -{+client-header-tagger{ab2p-unblock-dnt-R927} \ -} -# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina+easylist.txt: 10282) -.inskinmedia.com/.*/js/base/api/ - -#ab2p-unblock-dnt-R928 -{+client-header-tagger{ab2p-unblock-dnt-R928} \ -} -# @@||apps.admob.com/admob/*.adsense.$script,domain=apps.admob.com (easylistchina+easylist.txt: 61167) -.apps.admob.com/admob/.*\.adsense\. -# @@||apps.admob.com/admob/*.adsense.$script,domain=apps.admob.com (easylist.txt: 50682) -.apps.admob.com/admob/.*\.adsense\. - -#ab2p-unblock-dnt-R929 -{+client-header-tagger{ab2p-unblock-dnt-R929} \ -} -# @@||picmonkey.com/facebook-canvas/?ads$domain=apps.facebook.com (easylistchina+easylist.txt: 59372) -.picmonkey.com/facebook-canvas/\?ads -# @@||picmonkey.com/facebook-canvas/?ads$domain=apps.facebook.com (easylist.txt: 48887) -.picmonkey.com/facebook-canvas/\?ads - -#ab2p-unblock-dnt-R930 -{+client-header-tagger{ab2p-unblock-dnt-R930} \ -} -# @@||medialand.ru^*/magna.js?$domain=argumenti.ru|autonews.ru|glav.su|kp.ru|sobesednik.ru (advblock.txt: 7635) -.medialand.ru/.*/magna\.js\? - -#ab2p-unblock-dnt-R931 -{+client-header-tagger{ab2p-unblock-dnt-R931} \ -} -# @@||adv.magna.ru/?id=$script,domain=argumenti.ru|glav.su|kp.ru|newstube.ru|sobesednik.ru|soccer.ru (advblock.txt: 7624) -.adv.magna.ru/\?id= - -#ab2p-unblock-dnt-R932 -{+client-header-tagger{ab2p-unblock-dnt-R932} \ -} -# @@||google.com/adsense/search/ads.js$domain=armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|forbbbs.org|forbes.com|gumtree.com.au|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|www.google.com|zoover.co.uk|zoover.com (easylistchina+easylist.txt: 58899) -.google.com/adsense/search/ads\.js -# @@||google.com/adsense/search/ads.js$domain=armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|forbbbs.org|forbes.com|gumtree.com.au|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|www.google.com|zoover.co.uk|zoover.com (easylist.txt: 48414) -.google.com/adsense/search/ads\.js - -#ab2p-unblock-dnt-R933 -{+client-header-tagger{ab2p-unblock-dnt-R933} \ -} -# @@||rcm.amazon.com/e/cm$domain=asianmommy.com|filmcrave.com (easylistchina+easylist.txt: 59444) -.rcm.amazon.com/e/cm -# @@||rcm.amazon.com/e/cm$domain=asianmommy.com|filmcrave.com (easylist.txt: 48959) -.rcm.amazon.com/e/cm - -#ab2p-unblock-dnt-R934 -{+client-header-tagger{ab2p-unblock-dnt-R934} \ -} -# @@||checkm8.com/adam/$script,domain=askqology.com (easylistchina+easylist.txt: 58584) -.checkm8.com/adam/ -# @@||checkm8.com/adam/$script,domain=askqology.com (easylist.txt: 48099) -.checkm8.com/adam/ - -#ab2p-unblock-dnt-R935 -{+client-header-tagger{ab2p-unblock-dnt-R935} \ -} -# @@||astromeridian.ru/assets/images/reklama/$image,domain=astromeridian.ru (advblock.txt: 7269) -.astromeridian.ru/assets/images/reklama/ - -#ab2p-unblock-dnt-R936 -{+client-header-tagger{ab2p-unblock-dnt-R936} \ -} -# @@||atlant-m.in.ua/uploads/banners/$domain=atlant-m.in.ua (advblock.txt: 7270) -.atlant-m.in.ua/uploads/banners/ - -#ab2p-unblock-dnt-R937 -{+client-header-tagger{ab2p-unblock-dnt-R937} \ -} -# @@/banman/*$script,domain=atlanticcitywebcam.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|keywestharborwebcam.com|morganhillwebcam.com|nyharborwebcam.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com (easylistchina+easylist.txt: 59923) -/(.*/)?banman/.* -# @@/banman/*$script,domain=atlanticcitywebcam.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|keywestharborwebcam.com|morganhillwebcam.com|nyharborwebcam.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com (easylist.txt: 49438) -/(.*/)?banman/.* - -#ab2p-unblock-dnt-R938 -{+client-header-tagger{ab2p-unblock-dnt-R938} \ -} -# @@/advert.$domain=audio-hi-fi.ru|electric-house.ru|stroi-help.ru (advblock.txt: 7192) -/(.*/)?advert\. -advert.*. - -#ab2p-unblock-dnt-R939 -{+client-header-tagger{ab2p-unblock-dnt-R939} \ -} -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=audiomack.com|cbc.ca|cnet.com|eboundservices.com|edmunds.com|gamejolt.com|globalnews.ca|live.geo.tv|news.sky.com|nfl.com|reuters.tv|rottentomatoes.com|softgames.de|thestreet.com|video.foxnews.com|waywire.com|wibbitz.com (easylistchina+easylist.txt: 58990) -.imasdk.googleapis.com/js/core/bridge.*\.html -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=audiomack.com|cbc.ca|cnet.com|eboundservices.com|edmunds.com|gamejolt.com|globalnews.ca|live.geo.tv|news.sky.com|nfl.com|reuters.tv|rottentomatoes.com|softgames.de|thestreet.com|video.foxnews.com|waywire.com|wibbitz.com (easylist.txt: 48505) -.imasdk.googleapis.com/js/core/bridge.*\.html - -#ab2p-unblock-dnt-R940 -{+client-header-tagger{ab2p-unblock-dnt-R940} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=audiomack.com|cbc.ca|cnet.com|gamejolt.com|news.sky.com|theverge.com|video.foxbusiness.com|video.foxnews.com (easylistchina+easylist.txt: 58991) -.imasdk.googleapis.com/js/sdkloader/ima3\.js -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=audiomack.com|cbc.ca|cnet.com|gamejolt.com|news.sky.com|theverge.com|video.foxbusiness.com|video.foxnews.com (easylist.txt: 48506) -.imasdk.googleapis.com/js/sdkloader/ima3\.js - -#ab2p-unblock-dnt-R941 -{+client-header-tagger{ab2p-unblock-dnt-R941} \ -} -# @@||adserver.netsprint.eu//widgets/widgets.js$domain=autocentrum.pl (easylistchina+easylist.txt: 60954) -# @@||adserver.netsprint.eu//widgets/widgets.js$domain=autocentrum.pl (easylist.txt: 50469) - -#ab2p-unblock-dnt-R942 -{+client-header-tagger{ab2p-unblock-dnt-R942} \ -} -# @@||partner.googleadservices.com/gampad/google_service.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|escapegames.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|motorcycle.com|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nx8.com|playedonline.com|playstationlifestyle.net|readersdigest.com.au|sulekha.com|ticketek.com.ar|volokh.com|yfrog.com (easylistchina+easylist.txt: 59343) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|escapegames.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|motorcycle.com|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nx8.com|playedonline.com|playstationlifestyle.net|readersdigest.com.au|sulekha.com|ticketek.com.ar|volokh.com|yfrog.com (easylist.txt: 48858) -.partner.googleadservices.com/gampad/google_service\.js - -#ab2p-unblock-dnt-R943 -{+client-header-tagger{ab2p-unblock-dnt-R943} \ -} -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nitrome.com|nx8.com|playedonline.com|sulekha.com|volokh.com|yfrog.com (easylistchina+easylist.txt: 59340) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nitrome.com|nx8.com|playedonline.com|sulekha.com|volokh.com|yfrog.com (easylist.txt: 48855) -.partner.googleadservices.com/gampad/google_ads\.js - -#ab2p-unblock-dnt-R944 -{+client-header-tagger{ab2p-unblock-dnt-R944} \ -} -# @@||medialand.ru/test?$script,domain=autonews.ru|qip.ru|rbc.ru (advblock.txt: 7632) -.medialand.ru/test\? - -#ab2p-unblock-dnt-R945 -{+client-header-tagger{ab2p-unblock-dnt-R945} \ -} -# @@||medialand.ru/code?*&oin=0&$script,domain=autonews.ru|qip.ru|rbc.ru|utro.ru (advblock.txt: 7630) -.medialand.ru/code\?.*&oin=0& - -#ab2p-unblock-dnt-R946 -{+client-header-tagger{ab2p-unblock-dnt-R946} \ -} -# @@||rbc.magna.ru/xml_out/?$domain=autonews.ru|utro.ru (advblock.txt: 7637) -.rbc.magna.ru/xml_out/\? - -#ab2p-unblock-dnt-R947 -{+client-header-tagger{ab2p-unblock-dnt-R947} \ -} -# @@||trader.ca/TraderMobileAPIBB.asmx/GetAds?$script,domain=autos.ca (easylistchina+easylist.txt: 59686) -.trader.ca/TraderMobileAPIBB\.asmx/GetAds\? -# @@||trader.ca/TraderMobileAPIBB.asmx/GetAds?$script,domain=autos.ca (easylist.txt: 49201) -.trader.ca/TraderMobileAPIBB\.asmx/GetAds\? - -#ab2p-unblock-dnt-R948 -{+client-header-tagger{ab2p-unblock-dnt-R948} \ -} -# @@||ads.yimg.com/a/$domain=autos.yahoo.com (easylistchina+easylist.txt: 58273) -.ads.yimg.com/a/ -# @@||ads.yimg.com/a/$domain=autos.yahoo.com (easylist.txt: 47788) -.ads.yimg.com/a/ - -#ab2p-unblock-dnt-R949 -{+client-header-tagger{ab2p-unblock-dnt-R949} \ -} -# @@||avamd.info^$script,domain=ava.md (advblock.txt: 682) -.avamd.info - -#ab2p-unblock-dnt-R950 -{+client-header-tagger{ab2p-unblock-dnt-R950} \ -} -# @@||static-avforums.com/*ad$script,domain=avforums.com (easylistchina+easylist.txt: 60766) -.static-avforums.com/.*ad -# @@||hcpc.co.uk/*ad$script,domain=avforums.com (easylistchina+easylist.txt: 60376) -.hcpc.co.uk/.*ad -# @@||static-avforums.com/*ad$script,domain=avforums.com (easylist.txt: 50281) -.static-avforums.com/.*ad -# @@||hcpc.co.uk/*ad$script,domain=avforums.com (easylist.txt: 49891) -.hcpc.co.uk/.*ad - -#ab2p-unblock-dnt-R951 -{+client-header-tagger{ab2p-unblock-dnt-R951} \ -} -# @@||b.inbox.lv^$image,script,domain=b.inbox.lv (advblock.txt: 7275) -.b.inbox.lv - -#ab2p-unblock-dnt-R952 -{+client-header-tagger{ab2p-unblock-dnt-R952} \ -} -# @@//promo.$popup,domain=bactistatin.com|gamexp.ru|iguides.ru|ingate.ru|yandex.ru (advblock.txt: 7181) -promo.*. - -#ab2p-unblock-dnt-R953 -{+client-header-tagger{ab2p-unblock-dnt-R953} \ -} -# @@||bubblesmedia.ru^$image,script,domain=baibako.tv (advblock.txt: 7284) -.bubblesmedia.ru - -#ab2p-unblock-dnt-R954 -{+client-header-tagger{ab2p-unblock-dnt-R954} \ -} -# @@||emediate.eu/eas?cu_key=*;ty=playlist;$object-subrequest,domain=bandit.se|lugnafavoriter.com|nrj.se|playradio.se|radio1.se|rixfm.com|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61013) -.emediate.eu/eas\?cu_key=.*;ty=playlist; -# @@||emediate.eu/eas?cu_key=*;ty=playlist;$object-subrequest,domain=bandit.se|lugnafavoriter.com|nrj.se|playradio.se|radio1.se|rixfm.com|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50528) -.emediate.eu/eas\?cu_key=.*;ty=playlist; - -#ab2p-unblock-dnt-R955 -{+client-header-tagger{ab2p-unblock-dnt-R955} \ -} -# @@||static*.banki.ru/upload/$image,domain=banki.ru (advblock.txt: 7398) -.static*./.*\.banki\.ru/upload/ -.static*.banki.ru/upload/ - -#ab2p-unblock-dnt-R956 -{+client-header-tagger{ab2p-unblock-dnt-R956} \ -} -# @@||bannerist.com/images/$image,domain=bannerist.com (easylistchina+easylist.txt: 58475) -.bannerist.com/images/ -# @@||bannerist.com/images/$image,domain=bannerist.com (easylist.txt: 47990) -.bannerist.com/images/ - -#ab2p-unblock-dnt-R957 -{+client-header-tagger{ab2p-unblock-dnt-R957} \ -} -# @@||bannersnack.net^$domain=bannersnack.com (easylistchina+easylist.txt: 58479) -.bannersnack.net -# @@||bannersnack.net^$domain=bannersnack.com (easylist.txt: 47994) -.bannersnack.net - -#ab2p-unblock-dnt-R958 -{+client-header-tagger{ab2p-unblock-dnt-R958} \ -} -# @@||imagesbn.com/resources?*/googlead.$stylesheet,domain=barnesandnoble.com (easylistchina+easylist.txt: 58987) -.imagesbn.com/resources\?.*/googlead\. -# @@||imagesbn.com/resources?*/googlead.$stylesheet,domain=barnesandnoble.com (easylist.txt: 48502) -.imagesbn.com/resources\?.*/googlead\. - -#ab2p-unblock-dnt-R959 -{+client-header-tagger{ab2p-unblock-dnt-R959} \ -} -# @@||barstoolsports.com^$script,domain=barstoolsports.com (easylistchina+easylist.txt: 60096) -.barstoolsports.com -# @@||barstoolsports.com^$script,domain=barstoolsports.com (easylist.txt: 49611) -.barstoolsports.com - -#ab2p-unblock-dnt-R960 -{+client-header-tagger{ab2p-unblock-dnt-R960} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=baseball-reference.com|basketball-reference.com|gamespot.com|hockey-reference.com|pro-football-reference.com|sitepoint.com|speedtest.net|sports-reference.com (easylistchina+easylist.txt: 60638) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=baseball-reference.com|basketball-reference.com|gamespot.com|hockey-reference.com|pro-football-reference.com|sitepoint.com|speedtest.net|sports-reference.com (easylist.txt: 50153) -.partner.googleadservices.com/gpt/pubads_impl_ - -#ab2p-unblock-dnt-R961 -{+client-header-tagger{ab2p-unblock-dnt-R961} \ -} -# @@||adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone?*=preroll/2Black|$subdocument,domain=baynews9.com|cfnews13.com (easylistchina+easylist.txt: 58346) -.adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone\?.*=preroll/2Black$ -# @@||adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone?*=preroll/2Black|$subdocument,domain=baynews9.com|cfnews13.com (easylist.txt: 47861) -.adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone\?.*=preroll/2Black$ - -#ab2p-unblock-dnt-R962 -{+client-header-tagger{ab2p-unblock-dnt-R962} \ -} -# @@||bbc.co.uk/modules/branding/css/$stylesheet,domain=bbc.co.uk (advblock.txt: 7277) -.bbc.co.uk/modules/branding/css/ - -#ab2p-unblock-dnt-R963 -{+client-header-tagger{ab2p-unblock-dnt-R963} \ -} -# @@||bbcimg.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58488) -.bbcimg.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/advert.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58487) -.bbcimg.co.uk/.*/advert\.js -# @@||bbci.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58485) -.bbci.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48003) -.bbcimg.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/advert.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48002) -.bbcimg.co.uk/.*/advert\.js -# @@||bbci.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48000) -.bbci.co.uk/.*/adverts\.js - -#ab2p-unblock-dnt-R964 -{+client-header-tagger{ab2p-unblock-dnt-R964} \ -} -# @@||doubleclick.net/adj/bbccom.live.site.auto/*^sz=1x1^$script,domain=bbc.com (easylistchina+easylist.txt: 58706) -.doubleclick.net/adj/bbccom\.live\.site\.auto/.*[^\w%.-]sz=1x1[^\w%.-] -# @@||bbcimg.co.uk^*/SmpAds.swf$object-subrequest,domain=bbc.com (easylistchina+easylist.txt: 58489) -.bbcimg.co.uk/.*/SmpAds\.swf -# @@||bbcimg.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58486) -.bbcimg.co.uk/.*/adsense_write\.js -# @@||bbci.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58484) -.bbci.co.uk/.*/adsense_write\.js -# @@||bbc.co.uk^*/adverts.js$domain=bbc.com (easylistchina+easylist.txt: 58483) -.bbc.co.uk/.*/adverts\.js -# @@||bbc.co.uk^*/advert.js$domain=bbc.com (easylistchina+easylist.txt: 58482) -.bbc.co.uk/.*/advert\.js -# @@||bbc.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58481) -.bbc.co.uk/.*/adsense_write\.js -# @@||doubleclick.net/adj/bbccom.live.site.auto/*^sz=1x1^$script,domain=bbc.com (easylist.txt: 48221) -.doubleclick.net/adj/bbccom\.live\.site\.auto/.*[^\w%.-]sz=1x1[^\w%.-] -# @@||bbcimg.co.uk^*/SmpAds.swf$object-subrequest,domain=bbc.com (easylist.txt: 48004) -.bbcimg.co.uk/.*/SmpAds\.swf -# @@||bbcimg.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 48001) -.bbcimg.co.uk/.*/adsense_write\.js -# @@||bbci.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 47999) -.bbci.co.uk/.*/adsense_write\.js -# @@||bbc.co.uk^*/adverts.js$domain=bbc.com (easylist.txt: 47998) -.bbc.co.uk/.*/adverts\.js -# @@||bbc.co.uk^*/advert.js$domain=bbc.com (easylist.txt: 47997) -.bbc.co.uk/.*/advert\.js -# @@||bbc.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 47996) -.bbc.co.uk/.*/adsense_write\.js - -#ab2p-unblock-dnt-R965 -{+client-header-tagger{ab2p-unblock-dnt-R965} \ -} -# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina+easylist.txt: 10438) -.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js - -#ab2p-unblock-dnt-R966 -{+client-header-tagger{ab2p-unblock-dnt-R966} \ -} -# @@||beeline.ru/media/banners/$domain=beeline.ru (advblock.txt: 7279) -.beeline.ru/media/banners/ -# @@||beeline.ru/ban/$domain=beeline.ru (advblock.txt: 7278) -.beeline.ru/ban/ - -#ab2p-unblock-dnt-R967 -{+client-header-tagger{ab2p-unblock-dnt-R967} \ -} -# @@||beliebershotel.com^$script,domain=beliebershotel.com (easylistchina+easylist.txt: 60101) -.beliebershotel.com -# @@||beliebershotel.com^$script,domain=beliebershotel.com (easylist.txt: 49616) -.beliebershotel.com - -#ab2p-unblock-dnt-R968 -{+client-header-tagger{ab2p-unblock-dnt-R968} \ -} -# @@||bestru.ru^*/advert_$domain=bestru.ru (advblock.txt: 7283) -.bestru.ru/.*/advert_ -# @@||bestru.ru*/advertisements/$domain=bestru.ru (advblock.txt: 7282) -.bestru.ru*./(.*/)?advertisements/ - -#ab2p-unblock-dnt-R969 -{+client-header-tagger{ab2p-unblock-dnt-R969} \ -} -# @@||akamai.net^*/ads/preroll_$object-subrequest,domain=bet.com (easylistchina+easylist.txt: 58374) -.akamai.net/.*/ads/preroll_ -# @@||akamai.net^*/ads/preroll_$object-subrequest,domain=bet.com (easylist.txt: 47889) -.akamai.net/.*/ads/preroll_ - -#ab2p-unblock-dnt-R970 -{+client-header-tagger{ab2p-unblock-dnt-R970} \ -} -# @@||bet365.com/home/?affiliate=$popup,domain=betbeaver.com|betwonga.com|betyper.com (easylistchina+easylist.txt: 61405) -.bet365.com/home/\?affiliate= -# @@||bet365.com/home/?affiliate=$popup,domain=betbeaver.com|betwonga.com|betyper.com (easylist.txt: 50920) -.bet365.com/home/\?affiliate= - -#ab2p-unblock-dnt-R971 -{+client-header-tagger{ab2p-unblock-dnt-R971} \ -} -# @@/redirect.aspx?pid=*&bid=$popup,domain=betbeaver.com|internetcasinot.com (easylistchina+easylist.txt: 61393) -/(.*/)?redirect\.aspx\?pid=.*&bid= -# @@/redirect.aspx?pid=*&bid=$popup,domain=betbeaver.com|internetcasinot.com (easylist.txt: 50908) -/(.*/)?redirect\.aspx\?pid=.*&bid= - -#ab2p-unblock-dnt-R972 -{+client-header-tagger{ab2p-unblock-dnt-R972} \ -} -# @@||mediaplex.com/ad/$domain=betfair.com (easylistchina+easylist.txt: 59161) -.mediaplex.com/ad/ -# @@||img-cdn.mediaplex.com^$image,domain=betfair.com (easylistchina+easylist.txt: 58992) -.img-cdn.mediaplex.com -# @@||dotomi.com/commonid/match?$script,domain=betfair.com (easylistchina+easylist.txt: 58690) -.dotomi.com/commonid/match\? -# @@||apmebf.com/ad/$domain=betfair.com (easylistchina+easylist.txt: 58417) -.apmebf.com/ad/ -# @@||mediaplex.com/ad/$domain=betfair.com (easylist.txt: 48676) -.mediaplex.com/ad/ -# @@||img-cdn.mediaplex.com^$image,domain=betfair.com (easylist.txt: 48507) -.img-cdn.mediaplex.com -# @@||dotomi.com/commonid/match?$script,domain=betfair.com (easylist.txt: 48205) -.dotomi.com/commonid/match\? -# @@||apmebf.com/ad/$domain=betfair.com (easylist.txt: 47932) -.apmebf.com/ad/ - -#ab2p-unblock-dnt-R973 -{+client-header-tagger{ab2p-unblock-dnt-R973} \ -} -# @@||adserving.unibet.com/redirect.aspx?pid=$popup,domain=betwonga.com (easylistchina+easylist.txt: 61402) -.adserving.unibet.com/redirect\.aspx\?pid= -# @@||adserving.unibet.com/redirect.aspx?pid=$popup,domain=betwonga.com (easylist.txt: 50917) -.adserving.unibet.com/redirect\.aspx\?pid= - -#ab2p-unblock-dnt-R974 -{+client-header-tagger{ab2p-unblock-dnt-R974} \ -} -# @@||adfarm.mediaplex.com/ad/ck/$popup,domain=betwonga.com|dealsplus.com|matched-bet.net|pcmag.com (easylistchina+easylist.txt: 61394) -.adfarm.mediaplex.com/ad/ck/ -# @@||adfarm.mediaplex.com/ad/ck/$popup,domain=betwonga.com|dealsplus.com|matched-bet.net|pcmag.com (easylist.txt: 50909) -.adfarm.mediaplex.com/ad/ck/ - -#ab2p-unblock-dnt-R975 -{+client-header-tagger{ab2p-unblock-dnt-R975} \ -} -# @@||ads.betfair.com/redirect.aspx?pid=$popup,domain=betwonga.com|matched-bet.net (easylistchina+easylist.txt: 61395) -.ads.betfair.com/redirect\.aspx\?pid= -# @@||ads.betfair.com/redirect.aspx?pid=$popup,domain=betwonga.com|matched-bet.net (easylist.txt: 50910) -.ads.betfair.com/redirect\.aspx\?pid= - -#ab2p-unblock-dnt-R976 -{+client-header-tagger{ab2p-unblock-dnt-R976} \ -} -# @@||wlmatchbook.eacdn.com/wlmatchbook/affimages/$image,domain=betyper.com (easylistchina+easylist.txt: 61150) -.wlmatchbook.eacdn.com/wlmatchbook/affimages/ -# @@||wl188bet.eacdn.com/wl188bet/affimages/$image,script,domain=betyper.com (easylistchina+easylist.txt: 61149) -.wl188bet.eacdn.com/wl188bet/affimages/ -# @@||wl188bet.adsrv.eacdn.com/S.ashx?btag=$script,domain=betyper.com (easylistchina+easylist.txt: 61148) -.wl188bet.adsrv.eacdn.com/S\.ashx\?btag= -# @@||partners.10bet.com/processing/impressions.asp?$image,domain=betyper.com (easylistchina+easylist.txt: 61083) -.partners.10bet.com/processing/impressions\.asp\? -# @@||imstore.bet365affiliates.com/AffiliateCreativeBanners/$image,domain=betyper.com (easylistchina+easylist.txt: 61044) -.imstore.bet365affiliates.com/AffiliateCreativeBanners/ -# @@||imstore.bet365affiliates.com/?AffiliateCode=$image,domain=betyper.com (easylistchina+easylist.txt: 61043) -.imstore.bet365affiliates.com/\?AffiliateCode= -# @@||amazonaws.com/affiliates/banners/logo/$image,domain=betyper.com (easylistchina+easylist.txt: 60976) -.amazonaws.com/affiliates/banners/logo/ -# @@||affiliate.matchbook.com/processing/impressions.asp?$image,domain=betyper.com (easylistchina+easylist.txt: 60968) -.affiliate.matchbook.com/processing/impressions\.asp\? -# @@||wlmatchbook.eacdn.com/wlmatchbook/affimages/$image,domain=betyper.com (easylist.txt: 50665) -.wlmatchbook.eacdn.com/wlmatchbook/affimages/ -# @@||wl188bet.eacdn.com/wl188bet/affimages/$image,script,domain=betyper.com (easylist.txt: 50664) -.wl188bet.eacdn.com/wl188bet/affimages/ -# @@||wl188bet.adsrv.eacdn.com/S.ashx?btag=$script,domain=betyper.com (easylist.txt: 50663) -.wl188bet.adsrv.eacdn.com/S\.ashx\?btag= -# @@||partners.10bet.com/processing/impressions.asp?$image,domain=betyper.com (easylist.txt: 50598) -.partners.10bet.com/processing/impressions\.asp\? -# @@||imstore.bet365affiliates.com/AffiliateCreativeBanners/$image,domain=betyper.com (easylist.txt: 50559) -.imstore.bet365affiliates.com/AffiliateCreativeBanners/ -# @@||imstore.bet365affiliates.com/?AffiliateCode=$image,domain=betyper.com (easylist.txt: 50558) -.imstore.bet365affiliates.com/\?AffiliateCode= -# @@||amazonaws.com/affiliates/banners/logo/$image,domain=betyper.com (easylist.txt: 50491) -.amazonaws.com/affiliates/banners/logo/ -# @@||affiliate.matchbook.com/processing/impressions.asp?$image,domain=betyper.com (easylist.txt: 50483) -.affiliate.matchbook.com/processing/impressions\.asp\? - -#ab2p-unblock-dnt-R977 -{+client-header-tagger{ab2p-unblock-dnt-R977} \ -} -# @@||smart.allocine.fr/def/def/xshowdef.asp$object-subrequest,domain=beyazperde.com (easylistchina+easylist.txt: 61113) -.smart.allocine.fr/def/def/xshowdef\.asp -# @@||smart.allocine.fr/def/def/xshowdef.asp$object-subrequest,domain=beyazperde.com (easylist.txt: 50628) -.smart.allocine.fr/def/def/xshowdef\.asp - -#ab2p-unblock-dnt-R978 -{+client-header-tagger{ab2p-unblock-dnt-R978} \ -} -# @@||bingads.microsoft.com/ApexContentHandler.ashx?$script,domain=bingads.microsoft.com (easylistchina+easylist.txt: 61229) -.bingads.microsoft.com/ApexContentHandler\.ashx\? -# @@||bingads.microsoft.com/ApexContentHandler.ashx?$script,domain=bingads.microsoft.com (easylist.txt: 50744) -.bingads.microsoft.com/ApexContentHandler\.ashx\? - -#ab2p-unblock-dnt-R979 -{+client-header-tagger{ab2p-unblock-dnt-R979} \ -} -# @@||adshost2.com/js/show_ads.js$domain=bitcoinker.com (easylistchina+easylist.txt: 60027) -.adshost2.com/js/show_ads\.js -# @@||adshost2.com/js/show_ads.js$domain=bitcoinker.com (easylist.txt: 49542) -.adshost2.com/js/show_ads\.js - -#ab2p-unblock-dnt-R980 -{+client-header-tagger{ab2p-unblock-dnt-R980} \ -} -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fgpt%2Fpubads_impl_$xmlhttprequest,domain=biznews.com (easylistchina+easylist.txt: 58103) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fgpt%2Fpubads_impl_ -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fgpt%2Fpubads_impl_$xmlhttprequest,domain=biznews.com (easylist.txt: 47618) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fgpt%2Fpubads_impl_ - -#ab2p-unblock-dnt-R981 -{+client-header-tagger{ab2p-unblock-dnt-R981} \ -} -# @@||ad4.liverail.com^*LR_VIDEO_ID=$object-subrequest,domain=bizu.tv (easylistchina+easylist.txt: 58174) -.ad4.liverail.com/.*LR_VIDEO_ID= -# @@||ad4.liverail.com^*LR_VIDEO_ID=$object-subrequest,domain=bizu.tv (easylist.txt: 47689) -.ad4.liverail.com/.*LR_VIDEO_ID= - -#ab2p-unblock-dnt-R982 -{+client-header-tagger{ab2p-unblock-dnt-R982} \ -} -# @@||ad4.liverail.com/|$object-subrequest,domain=bizu.tv|foxsports.com.au|majorleaguegaming.com|pbs.org|wikihow.com (easylistchina+easylist.txt: 58172) -.ad4.liverail.com/$ -# @@||ad4.liverail.com/|$object-subrequest,domain=bizu.tv|foxsports.com.au|majorleaguegaming.com|pbs.org|wikihow.com (easylist.txt: 47687) -.ad4.liverail.com/$ - -#ab2p-unblock-dnt-R983 -{+client-header-tagger{ab2p-unblock-dnt-R983} \ -} -# @@||svcs.ebay.com/services/search/FindingService/*affiliate.tracking$domain=bkshopper.com|geo-ship.com|testfreaks.co.uk|watchmydeals.com (easylistchina+easylist.txt: 59610) -.svcs.ebay.com/services/search/FindingService/.*affiliate\.tracking -# @@||svcs.ebay.com/services/search/FindingService/*affiliate.tracking$domain=bkshopper.com|geo-ship.com|testfreaks.co.uk|watchmydeals.com (easylist.txt: 49125) -.svcs.ebay.com/services/search/FindingService/.*affiliate\.tracking - -#ab2p-unblock-dnt-R984 -{+client-header-tagger{ab2p-unblock-dnt-R984} \ -} -# @@||music-tags.com/tagengine/www/delivery/spcjs.php$domain=blastro.com (easylistchina+easylist.txt: 59207) -.music-tags.com/tagengine/www/delivery/spcjs\.php -# @@||music-tags.com/tagengine/www/delivery/fl.js$domain=blastro.com (easylistchina+easylist.txt: 59206) -.music-tags.com/tagengine/www/delivery/fl\.js -# @@||music-tags.com/tagengine/www/delivery/spcjs.php$domain=blastro.com (easylist.txt: 48722) -.music-tags.com/tagengine/www/delivery/spcjs\.php -# @@||music-tags.com/tagengine/www/delivery/fl.js$domain=blastro.com (easylist.txt: 48721) -.music-tags.com/tagengine/www/delivery/fl\.js - -#ab2p-unblock-dnt-R985 -{+client-header-tagger{ab2p-unblock-dnt-R985} \ -} -# @@||adocean.pl/files/*.flv?$domain=blesk.cz|open.fm (easylistchina+easylist.txt: 60938) -.adocean.pl/files/.*\.flv\? -# @@||adocean.pl/files/*.flv?$domain=blesk.cz|open.fm (easylist.txt: 50453) -.adocean.pl/files/.*\.flv\? - -#ab2p-unblock-dnt-R986 -{+client-header-tagger{ab2p-unblock-dnt-R986} \ -} -# @@||adap.tv/redir/client/static/as3adplayer.swf$object-subrequest,domain=blogtalkradio.com|britannica.com|collegehumor.com|freeonlinegames.com|openfilmpod.com|stickam.com|talkingpointsmemo.com|thesource.com|wildearth.tv|wunderground.com (easylistchina+easylist.txt: 58180) -.adap.tv/redir/client/static/as3adplayer\.swf -# @@||adap.tv/redir/client/static/as3adplayer.swf$object-subrequest,domain=blogtalkradio.com|britannica.com|collegehumor.com|freeonlinegames.com|openfilmpod.com|stickam.com|talkingpointsmemo.com|thesource.com|wildearth.tv|wunderground.com (easylist.txt: 47695) -.adap.tv/redir/client/static/as3adplayer\.swf - -#ab2p-unblock-dnt-R987 -{+client-header-tagger{ab2p-unblock-dnt-R987} \ -} -# @@/advert.$script,domain=bluesystem.ru|kinozadrot.net|miuipro.ru|pesikot.org|polismed.ru|prisnilos.su|qrz.ru|tree.tv (advblock.txt: 7527) -/(.*/)?advert\. -advert.*. - -#ab2p-unblock-dnt-R988 -{+client-header-tagger{ab2p-unblock-dnt-R988} \ -} -# @@/teaser.$domain=bmw-motorrad.com|bmw-motorrad.ru (advblock.txt: 7208) -/(.*/)?teaser\. -teaser.*. - -#ab2p-unblock-dnt-R989 -{+client-header-tagger{ab2p-unblock-dnt-R989} \ -} -# @@||pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate.swf$object-subrequest,domain=bn0.com|ebog.com|gameark.com (easylistchina+easylist.txt: 59327) -.pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate\.swf -# @@||pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate.swf$object-subrequest,domain=bn0.com|ebog.com|gameark.com (easylist.txt: 48842) -.pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate\.swf - -#ab2p-unblock-dnt-R990 -{+client-header-tagger{ab2p-unblock-dnt-R990} \ -} -# @@||pagead2.googlesyndication.com/pagead/imgad?id=$object-subrequest,domain=bn0.com|ebog.com|gameark.com|yepi.com (easylistchina+easylist.txt: 59330) -.pagead2.googlesyndication.com/pagead/imgad\?id= -# @@||pagead2.googlesyndication.com/pagead/imgad?id=$object-subrequest,domain=bn0.com|ebog.com|gameark.com|yepi.com (easylist.txt: 48845) -.pagead2.googlesyndication.com/pagead/imgad\?id= - -#ab2p-unblock-dnt-R991 -{+client-header-tagger{ab2p-unblock-dnt-R991} \ -} -# @@||g.doubleclick.net/aclk?$popup,domain=bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|weddingspot.co.uk|zillow.com (easylistchina+easylist.txt: 61412) -.g.doubleclick.net/aclk\? -# @@||g.doubleclick.net/aclk?$popup,domain=bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|weddingspot.co.uk|zillow.com (easylist.txt: 50927) -.g.doubleclick.net/aclk\? - -#ab2p-unblock-dnt-R992 -{+client-header-tagger{ab2p-unblock-dnt-R992} \ -} -# @@||drizzle.monsoonads.com/ip.php$object-subrequest,domain=bollywoodhungama.com (easylistchina+easylist.txt: 58745) -.drizzle.monsoonads.com/ip\.php -# @@||drizzle.monsoonads.com/ip.php$object-subrequest,domain=bollywoodhungama.com (easylist.txt: 48260) -.drizzle.monsoonads.com/ip\.php - -#ab2p-unblock-dnt-R993 -{+client-header-tagger{ab2p-unblock-dnt-R993} \ -} -# @@||monsoonads.com:8080/monsoon1/monsoonservice?$object-subrequest,domain=bollywoodhungama.com|videos.mid-day.com (easylistchina+easylist.txt: 60543) -.monsoonads.com:8080/monsoon1/monsoonservice\? -# @@||monsoonads.com:8080/monsoon1/monsoonservice?$object-subrequest,domain=bollywoodhungama.com|videos.mid-day.com (easylist.txt: 50058) -.monsoonads.com:8080/monsoon1/monsoonservice\? - -#ab2p-unblock-dnt-R994 -{+client-header-tagger{ab2p-unblock-dnt-R994} \ -} -# @@||openload.io/assets/$script,domain=bombuj.sk (easylistchina+easylist.txt: 60605) -.openload.io/assets/ -# @@||openload.io/assets/$script,domain=bombuj.sk (easylist.txt: 50120) -.openload.io/assets/ - -#ab2p-unblock-dnt-R995 -{+client-header-tagger{ab2p-unblock-dnt-R995} \ -} -# @@/adbanner/*$image,domain=books.com.tw (easylistchina+easylist.txt: 9998) -/(.*/)?adbanner/.* - -#ab2p-unblock-dnt-R996 -{+client-header-tagger{ab2p-unblock-dnt-R996} \ -} -# @@||boracay.mobi/boracay/imageAds/$image,domain=boracay.tel (easylistchina+easylist.txt: 58511) -.boracay.mobi/boracay/imageAds/ -# @@||boracay.mobi/boracay/imageAds/$image,domain=boracay.tel (easylist.txt: 48026) -.boracay.mobi/boracay/imageAds/ - -#ab2p-unblock-dnt-R997 -{+client-header-tagger{ab2p-unblock-dnt-R997} \ -} -# @@||static.bored.com/advertising/top10/$image,domain=bored.com (easylistchina+easylist.txt: 59590) -.static.bored.com/advertising/top10/ -# @@||static.bored.com/advertising/top10/$image,domain=bored.com (easylist.txt: 49105) -.static.bored.com/advertising/top10/ - -#ab2p-unblock-dnt-R998 -{+client-header-tagger{ab2p-unblock-dnt-R998} \ -} -# @@||uuuploads.com/ads-on-buildings/$image,domain=boredpanda.com (easylistchina+easylist.txt: 59737) -.uuuploads.com/ads-on-buildings/ -# @@||uuuploads.com/ads-on-buildings/$image,domain=boredpanda.com (easylist.txt: 49252) -.uuuploads.com/ads-on-buildings/ - -#ab2p-unblock-dnt-R999 -{+client-header-tagger{ab2p-unblock-dnt-R999} \ -} -# @@||adap.tv/redir/client/swfloader.swf?$domain=box10.com|freeonlinegames.com|games.aarp.org|kizi.com|latimes.com|merriam-webster.com|puzzles.usatoday.com (easylistchina+easylist.txt: 58181) -.adap.tv/redir/client/swfloader\.swf\? -# @@||adap.tv/redir/client/swfloader.swf?$domain=box10.com|freeonlinegames.com|games.aarp.org|kizi.com|latimes.com|merriam-webster.com|puzzles.usatoday.com (easylist.txt: 47696) -.adap.tv/redir/client/swfloader\.swf\? - -#ab2p-unblock-dnt-R1000 -{+client-header-tagger{ab2p-unblock-dnt-R1000} \ -} -# @@||spotxchange.com/flash/adplayer.swf$domain=boxlive.tv|directon.tv|foxnews.ws|icastlive.tv|wii-cast.tv (easylistchina+easylist.txt: 59573) -.spotxchange.com/flash/adplayer\.swf -# @@||spotxchange.com/flash/adplayer.swf$domain=boxlive.tv|directon.tv|foxnews.ws|icastlive.tv|wii-cast.tv (easylist.txt: 49088) -.spotxchange.com/flash/adplayer\.swf - -#ab2p-unblock-dnt-R1001 -{+client-header-tagger{ab2p-unblock-dnt-R1001} \ -} -# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina+easylist.txt: 10110) -.58.com/ds/tgbrand/ - -#ab2p-unblock-dnt-R1002 -{+client-header-tagger{ab2p-unblock-dnt-R1002} \ -} -# @@||brandverity.com/reports/$document,domain=brandverity.com (easylistchina+easylist.txt: 58516) -.brandverity.com/reports/ -# @@||brandverity.com/reports/$document,domain=brandverity.com (easylist.txt: 48031) -.brandverity.com/reports/ - -#ab2p-unblock-dnt-R1003 -{+client-header-tagger{ab2p-unblock-dnt-R1003} \ -} -# @@||supportchat.contentabc.com^$popup,domain=brazzerssupport.com (easylistchina+easylist.txt: 61802) -.supportchat.contentabc.com -# @@||supportchat.contentabc.com^$popup,domain=brazzerssupport.com (easylist.txt: 51317) -.supportchat.contentabc.com - -#ab2p-unblock-dnt-R128 -{+client-header-tagger{ab2p-unblock-dnt-R128} \ -} -# @@/view_iframe/*$elemhide,domain=brb.to|cxz.to|fs.to (advblock.txt: 6659) -/(.*/)?view_iframe/.* - -#ab2p-unblock-dnt-R1004 -{+client-header-tagger{ab2p-unblock-dnt-R1004} \ -} -# @@||adbureau.net^*/images/adselector/$domain=brisbanetimes.com.au|smh.com.au|theage.com.au|watoday.com.au (easylistchina+easylist.txt: 58188) -.adbureau.net/.*/images/adselector/ -# @@||adbureau.net^*/images/adselector/$domain=brisbanetimes.com.au|smh.com.au|theage.com.au|watoday.com.au (easylist.txt: 47703) -.adbureau.net/.*/images/adselector/ - -#ab2p-unblock-dnt-R1005 -{+client-header-tagger{ab2p-unblock-dnt-R1005} \ -} -# @@||s0.2mdn.net^$domain=britishgas.co.uk|luxurylink.com (easylistchina+easylist.txt: 59482) -.s0.2mdn.net -# @@||s0.2mdn.net^$domain=britishgas.co.uk|luxurylink.com (easylist.txt: 48997) -.s0.2mdn.net - -#ab2p-unblock-dnt-R1006 -{+client-header-tagger{ab2p-unblock-dnt-R1006} \ -} -# @@||zemanta.com^$image,third-party,domain=bulletsfirst.net (easylistchina+easylist.txt: 46059) -.zemanta.com -# @@||zemanta.com^$image,third-party,domain=bulletsfirst.net (easylist.txt: 35574) -.zemanta.com - -#ab2p-unblock-dnt-R1007 -{+client-header-tagger{ab2p-unblock-dnt-R1007} \ -} -# @@||themoneyconverter.com/CurrencyConverter.aspx?*business-standard.com/ads/currency_converter_img.jpg$subdocument,domain=business-standard.com (easylistchina+easylist.txt: 59644) -.themoneyconverter.com/CurrencyConverter\.aspx\?.*business-standard\.com/ads/currency_converter_img\.jpg -# @@||themoneyconverter.com/CurrencyConverter.aspx?*business-standard.com/ads/currency_converter_img.jpg$subdocument,domain=business-standard.com (easylist.txt: 49159) -.themoneyconverter.com/CurrencyConverter\.aspx\?.*business-standard\.com/ads/currency_converter_img\.jpg - -#ab2p-unblock-dnt-R1008 -{+client-header-tagger{ab2p-unblock-dnt-R1008} \ -} -# @@||ad4.liverail.com/|$xmlhttprequest,domain=c.brightcove.com (easylistchina+easylist.txt: 58173) -.ad4.liverail.com/$ -# @@||ad4.liverail.com/|$xmlhttprequest,domain=c.brightcove.com (easylist.txt: 47688) -.ad4.liverail.com/$ - -#ab2p-unblock-dnt-R1009 -{+client-header-tagger{ab2p-unblock-dnt-R1009} \ -} -# @@||adserver.yahoo.com^*=weather&$domain=ca.weather.yahoo.com (easylistchina+easylist.txt: 58301) -.adserver.yahoo.com/.*=weather& -# @@||adserver.yahoo.com^*=weather&$domain=ca.weather.yahoo.com (easylist.txt: 47816) -.adserver.yahoo.com/.*=weather& - -#ab2p-unblock-dnt-R1010 -{+client-header-tagger{ab2p-unblock-dnt-R1010} \ -} -# @@||ipcamhost.net/flashads/*.swf$object-subrequest,domain=canadianrockies.org (easylistchina+easylist.txt: 59032) -.ipcamhost.net/flashads/.*\.swf -# @@||ipcamhost.net/flashads/*.swf$object-subrequest,domain=canadianrockies.org (easylist.txt: 48547) -.ipcamhost.net/flashads/.*\.swf - -#ab2p-unblock-dnt-R1011 -{+client-header-tagger{ab2p-unblock-dnt-R1011} \ -} -# @@||doubleclick.net/adj/pch.candystand/video;pos=box;sz=300x250;a=$script,domain=candystand.com (easylistchina+easylist.txt: 58715) -.doubleclick.net/adj/pch\.candystand/video;pos=box;sz=300x250;a= -# @@||doubleclick.net/adj/pch.candystand/video;pos=box;sz=300x250;a=$script,domain=candystand.com (easylist.txt: 48230) -.doubleclick.net/adj/pch\.candystand/video;pos=box;sz=300x250;a= - -#ab2p-unblock-dnt-R1012 -{+client-header-tagger{ab2p-unblock-dnt-R1012} \ -} -# @@||adfox.ru/crossdomain.xml$domain=carambatv.ru|life.ru|molodejj.tv|out.pladform.ru (advblock.txt: 7547) -.adfox.ru/crossdomain\.xml - -#ab2p-unblock-dnt-R1013 -{+client-header-tagger{ab2p-unblock-dnt-R1013} \ -} -# @@||leadback.advertising.com/adcedge/$domain=careerbuilder.com (easylistchina+easylist.txt: 59079) -.leadback.advertising.com/adcedge/ -# @@||leadback.advertising.com/adcedge/$domain=careerbuilder.com (easylist.txt: 48594) -.leadback.advertising.com/adcedge/ - -#ab2p-unblock-dnt-R1014 -{+client-header-tagger{ab2p-unblock-dnt-R1014} \ -} -# @@||ibsrv.net/ads/$domain=carsdirect.com (easylistchina+easylist.txt: 58966) -.ibsrv.net/ads/ -# @@||ibsrv.net/ads/$domain=carsdirect.com (easylist.txt: 48481) -.ibsrv.net/ads/ - -#ab2p-unblock-dnt-R1015 -{+client-header-tagger{ab2p-unblock-dnt-R1015} \ -} -# @@||ad.doubleclick.net/adj/*/cartalk.audio_player;$script,domain=cartalk.com (easylistchina+easylist.txt: 58155) -.ad.doubleclick.net/adj/.*/cartalk\.audio_player; -# @@||ad.doubleclick.net/adj/*/cartalk.audio_player;$script,domain=cartalk.com (easylist.txt: 47670) -.ad.doubleclick.net/adj/.*/cartalk\.audio_player; - -#ab2p-unblock-dnt-R1016 -{+client-header-tagger{ab2p-unblock-dnt-R1016} \ -} -# @@||adserver.adtech.de/addyn/3.0/755/$domain=cartoonnetwork.co.nz|cartoonnetworkasia.com|cartoonnetworkhq.com|manutd.com (easylistchina+easylist.txt: 58290) -.adserver.adtech.de/addyn/3\.0/755/ -# @@||adserver.adtech.de/addyn/3.0/755/$domain=cartoonnetwork.co.nz|cartoonnetworkasia.com|cartoonnetworkhq.com|manutd.com (easylist.txt: 47805) -.adserver.adtech.de/addyn/3\.0/755/ - -#ab2p-unblock-dnt-R1017 -{+client-header-tagger{ab2p-unblock-dnt-R1017} \ -} -# @@||turner.com^*/ads/freewheel/bundles/*/renderers.xml$object-subrequest,domain=cartoonnetwork.com|tnt.tv (easylistchina+easylist.txt: 59710) -.turner.com/.*/ads/freewheel/bundles/.*/renderers\.xml -# @@||turner.com^*/ads/freewheel/bundles/*/renderers.xml$object-subrequest,domain=cartoonnetwork.com|tnt.tv (easylist.txt: 49225) -.turner.com/.*/ads/freewheel/bundles/.*/renderers\.xml - -#ab2p-unblock-dnt-R1018 -{+client-header-tagger{ab2p-unblock-dnt-R1018} \ -} -# @@||adtech.de/apps/*.swf?targettag=$object,domain=cartoonnetworkasia.com (easylistchina+easylist.txt: 58317) -.adtech.de/apps/.*\.swf\?targettag= -# @@||adtech.de/apps/*.swf?targettag=$object,domain=cartoonnetworkasia.com (easylist.txt: 47832) -.adtech.de/apps/.*\.swf\?targettag= - -#ab2p-unblock-dnt-R1019 -{+client-header-tagger{ab2p-unblock-dnt-R1019} \ -} -# @@||ads.avazu.net^$subdocument,domain=casadossegredos.tv|xuuby.com (easylistchina+easylist.txt: 60009) -.ads.avazu.net -# @@||ads.avazu.net^$subdocument,domain=casadossegredos.tv|xuuby.com (easylist.txt: 49524) -.ads.avazu.net - -#ab2p-unblock-dnt-R1020 -{+client-header-tagger{ab2p-unblock-dnt-R1020} \ -} -# @@.com/banners/$image,domain=catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|sianevents.com|travelplus.com (easylistchina+easylist.txt: 58098) -/.*\.com/banners/ -.*.com/banners/ -# @@.com/banners/$image,domain=catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|sianevents.com|travelplus.com (easylist.txt: 47613) -/.*\.com/banners/ -.*.com/banners/ - -#ab2p-unblock-dnt-R1021 -{+client-header-tagger{ab2p-unblock-dnt-R1021} \ -} -# @@||linksynergy.com/fs/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59093) -.linksynergy.com/fs/banners/ -# @@||linksynergy.com/fs-bin/show?id=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59092) -.linksynergy.com/fs-bin/show\?id= -# @@||apmebf.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58418) -.apmebf.com -# @@.com/b/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58097) -/.*\.com/b/ -.*.com/b/ -# @@||linksynergy.com/fs/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48608) -.linksynergy.com/fs/banners/ -# @@||linksynergy.com/fs-bin/show?id=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48607) -.linksynergy.com/fs-bin/show\?id= -# @@||apmebf.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47933) -.apmebf.com -# @@.com/b/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47612) -/.*\.com/b/ -.*.com/b/ - -#ab2p-unblock-dnt-R1022 -{+client-header-tagger{ab2p-unblock-dnt-R1022} \ -} -# @@_120x60_$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 61304) -/.*_120x60_ -# @@_120x60_$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 50819) -/.*_120x60_ - -#ab2p-unblock-dnt-R1023 -{+client-header-tagger{ab2p-unblock-dnt-R1023} \ -} -# @@_120_60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61302) -/.*_120_60\. -# @@-120x60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61301) -/.*-120x60\. -.*-120x60.*. -# @@-120x60-$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61300) -/.*-120x60- -.*-120x60-*. -# @@||yoox.com/img//banner/affiliation/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59857) -.yoox.com/img//banner/affiliation/ -# @@||shopmanhattanite.com/affiliatebanners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59531) -.shopmanhattanite.com/affiliatebanners/ -# @@||shareasale.com/image/$domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59527) -.shareasale.com/image/ -# @@||rover.ebay.com^*&size=120x60&$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59470) -.rover.ebay.com/.*&size=120x60& -# @@||rogersmagazines.com/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59465) -.rogersmagazines.com/ads/ -# @@||pntrs.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59395) -.pntrs.com -# @@||paulfredrick.com/csimages/affiliate/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59349) -.paulfredrick.com/csimages/affiliate/banners/ -# @@||lovemybubbles.com/images/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59113) -.lovemybubbles.com/images/ads/ -# @@||linkshare.iregdev.com/images/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59091) -.linkshare.iregdev.com/images/ -# @@||linkconnector.com/traffic_record.php?lc=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59089) -.linkconnector.com/traffic_record\.php\?lc= -# @@||gan.doubleclick.net/gan_impression?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58867) -.gan.doubleclick.net/gan_impression\?lid= -# @@||doubleclick.net/ad/*.linkshare/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58691) -.doubleclick.net/ad/.*\.linkshare/ -# @@||cc-dt.com/link/tplimage?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58555) -.cc-dt.com/link/tplimage\?lid= -# @@||campingworld.com/images/AffiliateAds/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58540) -.campingworld.com/images/AffiliateAds/ -# @@||akamai.net^*/pics.drugstore.com/prodimg/promo/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58376) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# @@||affiliates.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58359) -.affiliates.*. -# @@||affiliate.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58355) -.affiliate.*. -# @@/display-ad/*$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58107) -/(.*/)?display-ad/.* -# @@_120_60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50817) -/.*_120_60\. -# @@-120x60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50816) -/.*-120x60\. -.*-120x60.*. -# @@-120x60-$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50815) -/.*-120x60- -.*-120x60-*. -# @@||yoox.com/img//banner/affiliation/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49372) -.yoox.com/img//banner/affiliation/ -# @@||shopmanhattanite.com/affiliatebanners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49046) -.shopmanhattanite.com/affiliatebanners/ -# @@||shareasale.com/image/$domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49042) -.shareasale.com/image/ -# @@||rover.ebay.com^*&size=120x60&$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48985) -.rover.ebay.com/.*&size=120x60& -# @@||rogersmagazines.com/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48980) -.rogersmagazines.com/ads/ -# @@||pntrs.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48910) -.pntrs.com -# @@||paulfredrick.com/csimages/affiliate/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48864) -.paulfredrick.com/csimages/affiliate/banners/ -# @@||lovemybubbles.com/images/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48628) -.lovemybubbles.com/images/ads/ -# @@||linkshare.iregdev.com/images/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48606) -.linkshare.iregdev.com/images/ -# @@||linkconnector.com/traffic_record.php?lc=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48604) -.linkconnector.com/traffic_record\.php\?lc= -# @@||gan.doubleclick.net/gan_impression?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48382) -.gan.doubleclick.net/gan_impression\?lid= -# @@||doubleclick.net/ad/*.linkshare/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48206) -.doubleclick.net/ad/.*\.linkshare/ -# @@||cc-dt.com/link/tplimage?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48070) -.cc-dt.com/link/tplimage\?lid= -# @@||campingworld.com/images/AffiliateAds/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48055) -.campingworld.com/images/AffiliateAds/ -# @@||akamai.net^*/pics.drugstore.com/prodimg/promo/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47891) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# @@||affiliates.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47874) -.affiliates.*. -# @@||affiliate.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47870) -.affiliate.*. -# @@/display-ad/*$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47622) -/(.*/)?display-ad/.* - -#ab2p-unblock-dnt-R1024 -{+client-header-tagger{ab2p-unblock-dnt-R1024} \ -} -# @@||theplatform.com/current/pdk/js/plugins/doubleclick.js$domain=cbc.ca (easylistchina+easylist.txt: 59648) -.theplatform.com/current/pdk/js/plugins/doubleclick\.js -# @@||2mdn.net/instream/video/client.js$domain=cbc.ca (easylistchina+easylist.txt: 58124) -.2mdn.net/instream/video/client\.js -# @@||theplatform.com/current/pdk/js/plugins/doubleclick.js$domain=cbc.ca (easylist.txt: 49163) -.theplatform.com/current/pdk/js/plugins/doubleclick\.js -# @@||2mdn.net/instream/video/client.js$domain=cbc.ca (easylist.txt: 47639) -.2mdn.net/instream/video/client\.js - -#ab2p-unblock-dnt-R137 -{+client-header-tagger{ab2p-unblock-dnt-R137} \ -} -# @@||ureoal.com^$script,domain=cbs.com (easylistchina+easylist.txt: 60849) -.ureoal.com -# @@||rackcdn.com^$image,object-subrequest,script,domain=cbs.com (easylistchina+easylist.txt: 60683) -.rackcdn.com -# @@||poreil.com^$domain=cbs.com (easylistchina+easylist.txt: 60659) -.poreil.com -# @@||g.doubleclick.net/gampad/ads?ad%5Frule=0&$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60324) -.g.doubleclick.net/gampad/ads\?ad%5Frule=0& -# @@||dialde.com^$domain=cbs.com (easylistchina+easylist.txt: 60212) -.dialde.com -# @@||alidw.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60050) -.alidw.net -# @@||alidv.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60049) -.alidv.net -# @@||aildu.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60046) -.aildu.net -# @@||ailde.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60045) -.ailde.net -# @@||aidinge.com^$image,domain=cbs.com (easylistchina+easylist.txt: 60044) -.aidinge.com -# @@||2mdn.net/instream/flash/v3/adsapi_$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59964) -.2mdn.net/instream/flash/v3/adsapi_ -# @@|http://l.$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59958) -l.*. -# @@|http://d.$script,domain=cbs.com (easylistchina+easylist.txt: 59957) -d.*. -# @@|http://*?_$image,domain=cbs.com (easylistchina+easylist.txt: 59956) -/.*\?_ -# @@|http://*/pubads.$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59955) -/(.*/)?pubads\. -# @@|http://*.xyz^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59954) -/.*\.xyz[^\w%.-] -.*.xyz -# @@|http://*.pw^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59952) -/.*\.pw[^\w%.-] -.*.pw -# @@|http://*.net^*.js|$third-party,domain=cbs.com (easylistchina+easylist.txt: 59951) -/.*\.net[^\w%.-].*\.js$ -.*.net/.*\.js$ -# @@|http://*.net^*.bmp|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59950) -/.*\.net[^\w%.-].*\.bmp$ -.*.net/.*\.bmp$ -# @@|http://*.js|$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59949) -/.*\.js$ -.*.js -# @@|http://*.jpg?$image,domain=cbs.com (easylistchina+easylist.txt: 59947) -/.*\.jpg\? -# @@|http://*.com^*.js|$third-party,domain=cbs.com (easylistchina+easylist.txt: 59946) -/.*\.com[^\w%.-].*\.js$ -.*.com/.*\.js$ -# @@|http://*.co^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59945) -/.*\.co[^\w%.-] -.*.co -# @@/searchad.$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59932) -/(.*/)?searchad\. -searchad.*. -# @@/pubads.png$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59931) -/(.*/)?pubads\.png -pubads.png*. -# @@/pubads.jpeg$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59930) -/(.*/)?pubads\.jpeg -pubads.jpeg*. -# @@/adFunctionsD-cbs.js$domain=cbs.com (easylistchina+easylist.txt: 59916) -/(.*/)?adFunctionsD-cbs\.js -adFunctionsD-cbs.js*. -# @@.streamads.js$third-party,domain=cbs.com (easylistchina+easylist.txt: 59910) -/.*\.streamads\.js -.*.streamads.js*. -# @@.png^$image,domain=cbs.com (easylistchina+easylist.txt: 59908) -/.*\.png[^\w%.-] -.*.png -# @@.mobi/$script,domain=cbs.com (easylistchina+easylist.txt: 59903) -/.*\.mobi/ -.*.mobi -# @@.link/$script,domain=cbs.com (easylistchina+easylist.txt: 59901) -/.*\.link/ -.*.link -# @@.jscript|$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59900) -/.*\.jscript$ -.*.jscript -# @@.jpg|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59899) -/.*\.jpg$ -.*.jpg -# @@.jpeg|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59896) -/.*\.jpeg$ -.*.jpeg -# @@.info^$image,script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59893) -/.*\.info[^\w%.-] -.*.info -# @@.gif|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59891) -/.*\.gif$ -.*.gif -# @@.click/$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59885) -/.*\.click/ -.*.click -# @@.bmp^$image,domain=cbs.com (easylistchina+easylist.txt: 59884) -/.*\.bmp[^\w%.-] -.*.bmp -# @@.audio/$script,domain=cbs.com (easylistchina+easylist.txt: 59883) -/.*\.audio/ -.*.audio -# @@||innovid.com^*/VPAIDEXIRollPackage.swf$domain=cbs.com (easylistchina+easylist.txt: 59013) -.innovid.com/.*/VPAIDEXIRollPackage\.swf -# @@||innovid.com/iroll/package/iab-vpaid-ex/$domain=cbs.com (easylistchina+easylist.txt: 59011) -.innovid.com/iroll/package/iab-vpaid-ex/ -# @@||ureoal.com^$script,domain=cbs.com (easylist.txt: 50364) -.ureoal.com -# @@||rackcdn.com^$image,object-subrequest,script,domain=cbs.com (easylist.txt: 50198) -.rackcdn.com -# @@||poreil.com^$domain=cbs.com (easylist.txt: 50174) -.poreil.com -# @@||g.doubleclick.net/gampad/ads?ad%5Frule=0&$object-subrequest,domain=cbs.com (easylist.txt: 49839) -.g.doubleclick.net/gampad/ads\?ad%5Frule=0& -# @@||dialde.com^$domain=cbs.com (easylist.txt: 49727) -.dialde.com -# @@||alidw.net^$object-subrequest,domain=cbs.com (easylist.txt: 49565) -.alidw.net -# @@||alidv.net^$object-subrequest,domain=cbs.com (easylist.txt: 49564) -.alidv.net -# @@||aildu.net^$object-subrequest,domain=cbs.com (easylist.txt: 49561) -.aildu.net -# @@||ailde.net^$object-subrequest,domain=cbs.com (easylist.txt: 49560) -.ailde.net -# @@||aidinge.com^$image,domain=cbs.com (easylist.txt: 49559) -.aidinge.com -# @@||2mdn.net/instream/flash/v3/adsapi_$object-subrequest,domain=cbs.com (easylist.txt: 49479) -.2mdn.net/instream/flash/v3/adsapi_ -# @@|http://l.$script,third-party,domain=cbs.com (easylist.txt: 49473) -l.*. -# @@|http://d.$script,domain=cbs.com (easylist.txt: 49472) -d.*. -# @@|http://*?_$image,domain=cbs.com (easylist.txt: 49471) -/.*\?_ -# @@|http://*/pubads.$object-subrequest,domain=cbs.com (easylist.txt: 49470) -/(.*/)?pubads\. -# @@|http://*.xyz^$script,third-party,domain=cbs.com (easylist.txt: 49469) -/.*\.xyz[^\w%.-] -.*.xyz -# @@|http://*.pw^$script,third-party,domain=cbs.com (easylist.txt: 49467) -/.*\.pw[^\w%.-] -.*.pw -# @@|http://*.net^*.js|$third-party,domain=cbs.com (easylist.txt: 49466) -/.*\.net[^\w%.-].*\.js$ -.*.net/.*\.js$ -# @@|http://*.net^*.bmp|$object-subrequest,domain=cbs.com (easylist.txt: 49465) -/.*\.net[^\w%.-].*\.bmp$ -.*.net/.*\.bmp$ -# @@|http://*.js|$script,third-party,domain=cbs.com (easylist.txt: 49464) -/.*\.js$ -.*.js -# @@|http://*.jpg?$image,domain=cbs.com (easylist.txt: 49462) -/.*\.jpg\? -# @@|http://*.com^*.js|$third-party,domain=cbs.com (easylist.txt: 49461) -/.*\.com[^\w%.-].*\.js$ -.*.com/.*\.js$ -# @@|http://*.co^$script,third-party,domain=cbs.com (easylist.txt: 49460) -/.*\.co[^\w%.-] -.*.co -# @@/searchad.$object-subrequest,domain=cbs.com (easylist.txt: 49447) -/(.*/)?searchad\. -searchad.*. -# @@/pubads.png$object-subrequest,domain=cbs.com (easylist.txt: 49446) -/(.*/)?pubads\.png -pubads.png*. -# @@/pubads.jpeg$object-subrequest,domain=cbs.com (easylist.txt: 49445) -/(.*/)?pubads\.jpeg -pubads.jpeg*. -# @@/adFunctionsD-cbs.js$domain=cbs.com (easylist.txt: 49431) -/(.*/)?adFunctionsD-cbs\.js -adFunctionsD-cbs.js*. -# @@.streamads.js$third-party,domain=cbs.com (easylist.txt: 49425) -/.*\.streamads\.js -.*.streamads.js*. -# @@.png^$image,domain=cbs.com (easylist.txt: 49423) -/.*\.png[^\w%.-] -.*.png -# @@.mobi/$script,domain=cbs.com (easylist.txt: 49418) -/.*\.mobi/ -.*.mobi -# @@.link/$script,domain=cbs.com (easylist.txt: 49416) -/.*\.link/ -.*.link -# @@.jscript|$script,third-party,domain=cbs.com (easylist.txt: 49415) -/.*\.jscript$ -.*.jscript -# @@.jpg|$object-subrequest,domain=cbs.com (easylist.txt: 49414) -/.*\.jpg$ -.*.jpg -# @@.jpeg|$object-subrequest,domain=cbs.com (easylist.txt: 49411) -/.*\.jpeg$ -.*.jpeg -# @@.info^$image,script,third-party,domain=cbs.com (easylist.txt: 49408) -/.*\.info[^\w%.-] -.*.info -# @@.gif|$object-subrequest,domain=cbs.com (easylist.txt: 49406) -/.*\.gif$ -.*.gif -# @@.click/$script,third-party,domain=cbs.com (easylist.txt: 49400) -/.*\.click/ -.*.click -# @@.bmp^$image,domain=cbs.com (easylist.txt: 49399) -/.*\.bmp[^\w%.-] -.*.bmp -# @@.audio/$script,domain=cbs.com (easylist.txt: 49398) -/.*\.audio/ -.*.audio -# @@||innovid.com^*/VPAIDEXIRollPackage.swf$domain=cbs.com (easylist.txt: 48528) -.innovid.com/.*/VPAIDEXIRollPackage\.swf -# @@||innovid.com/iroll/package/iab-vpaid-ex/$domain=cbs.com (easylist.txt: 48526) -.innovid.com/iroll/package/iab-vpaid-ex/ - -#ab2p-unblock-dnt-R1025 -{+client-header-tagger{ab2p-unblock-dnt-R1025} \ -} -# @@|https://$script,third-party,domain=cbs.com|eventhubs.com (easylistchina+easylist.txt: 59960) -# @@|https://$script,third-party,domain=cbs.com|eventhubs.com (easylist.txt: 49475) - -#ab2p-unblock-dnt-R1026 -{+client-header-tagger{ab2p-unblock-dnt-R1026} \ -} -# @@||g.doubleclick.net/|$object-subrequest,domain=cbs.com|planetfools.com|televisiondiv.ucoz.com (easylistchina+easylist.txt: 60329) -.g.doubleclick.net/$ -# @@||g.doubleclick.net/|$object-subrequest,domain=cbs.com|planetfools.com|televisiondiv.ucoz.com (easylist.txt: 49844) -.g.doubleclick.net/$ - -#ab2p-unblock-dnt-R1027 -{+client-header-tagger{ab2p-unblock-dnt-R1027} \ -} -# @@.javascript|$domain=cbsnews.com (easylistchina+easylist.txt: 59895) -/.*\.javascript$ -.*.javascript -# @@.javascript|$domain=cbsnews.com (easylist.txt: 49410) -/.*\.javascript$ -.*.javascript - -#ab2p-unblock-dnt-R1028 -{+client-header-tagger{ab2p-unblock-dnt-R1028} \ -} -# @@||i.com.com^*/adfunctionsd-*.js$domain=cbsnews.com|cbssports.com|cnettv.cnet.com|metacritic.com|tv.com|twitch.tv (easylistchina+easylist.txt: 58963) -.i.com.com/.*/adfunctionsd-.*\.js -# @@||i.com.com^*/adfunctionsd-*.js$domain=cbsnews.com|cbssports.com|cnettv.cnet.com|metacritic.com|tv.com|twitch.tv (easylist.txt: 48478) -.i.com.com/.*/adfunctionsd-.*\.js - -#ab2p-unblock-dnt-R1029 -{+client-header-tagger{ab2p-unblock-dnt-R1029} \ -} -# @@.javascript?$script,third-party,domain=cbsnews.com|colbertlateshow.com (easylistchina+easylist.txt: 59894) -/.*\.javascript\? -# @@.javascript?$script,third-party,domain=cbsnews.com|colbertlateshow.com (easylist.txt: 49409) -/.*\.javascript\? - -#ab2p-unblock-dnt-R1030 -{+client-header-tagger{ab2p-unblock-dnt-R1030} \ -} -# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina+easylist.txt: 10015) -/(.*/)?advert/.* - -#ab2p-unblock-dnt-R143 -{+client-header-tagger{ab2p-unblock-dnt-R143} \ -} -# @@||tidaltv.com/tpas*.aspx?*&rand=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60805) -.tidaltv.com/tpas.*\.aspx\?.*&rand=\[ -# @@||tidaltv.com/ILogger.aspx?*&adId=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60804) -.tidaltv.com/ILogger\.aspx\?.*&adId=\[ -# @@||innovid.com^*/VPAIDIRollPackage.swf$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60420) -.innovid.com/.*/VPAIDIRollPackage\.swf -# @@||innovid.com/iroll/config/*.xml?cb=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60419) -.innovid.com/iroll/config/.*\.xml\?cb=\[ -# @@||innovid.com/1x1.gif?$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60418) -.innovid.com/1x1\.gif\? -# @@||ad-emea.doubleclick.net/crossdomain.xml$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 59980) -.ad-emea.doubleclick.net/crossdomain\.xml -# @@||ad-emea.doubleclick.net/ad/*.CHANNEL41/*;sz=1x1;$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 59979) -.ad-emea.doubleclick.net/ad/.*\.CHANNEL41/.*;sz=1x1; -# @@||tidaltv.com/tpas*.aspx?*&rand=[$object-subrequest,domain=channel4.com (easylist.txt: 50320) -.tidaltv.com/tpas.*\.aspx\?.*&rand=\[ -# @@||tidaltv.com/ILogger.aspx?*&adId=[$object-subrequest,domain=channel4.com (easylist.txt: 50319) -.tidaltv.com/ILogger\.aspx\?.*&adId=\[ -# @@||innovid.com^*/VPAIDIRollPackage.swf$object-subrequest,domain=channel4.com (easylist.txt: 49935) -.innovid.com/.*/VPAIDIRollPackage\.swf -# @@||innovid.com/iroll/config/*.xml?cb=[$object-subrequest,domain=channel4.com (easylist.txt: 49934) -.innovid.com/iroll/config/.*\.xml\?cb=\[ -# @@||innovid.com/1x1.gif?$object-subrequest,domain=channel4.com (easylist.txt: 49933) -.innovid.com/1x1\.gif\? -# @@||ad-emea.doubleclick.net/crossdomain.xml$object-subrequest,domain=channel4.com (easylist.txt: 49495) -.ad-emea.doubleclick.net/crossdomain\.xml -# @@||ad-emea.doubleclick.net/ad/*.CHANNEL41/*;sz=1x1;$object-subrequest,domain=channel4.com (easylist.txt: 49494) -.ad-emea.doubleclick.net/ad/.*\.CHANNEL41/.*;sz=1x1; - -#ab2p-unblock-dnt-R1031 -{+client-header-tagger{ab2p-unblock-dnt-R1031} \ -} -# @@||auditude.com^*/auditudebrightcoveplugin.swf$object-subrequest,domain=channel5.com (easylistchina+easylist.txt: 58454) -.auditude.com/.*/auditudebrightcoveplugin\.swf -# @@||auditude.com^*/auditudebrightcoveplugin.swf$object-subrequest,domain=channel5.com (easylist.txt: 47969) -.auditude.com/.*/auditudebrightcoveplugin\.swf - -#ab2p-unblock-dnt-R1032 -{+client-header-tagger{ab2p-unblock-dnt-R1032} \ -} -# @@||brightcove.com^*/AdvertisingModule.swf$object-subrequest,domain=channel5.com|citytv.com|player.stv.tv|uktv.co.uk|wwe.com (easylistchina+easylist.txt: 60124) -.brightcove.com/.*/AdvertisingModule\.swf -# @@||brightcove.com^*/AdvertisingModule.swf$object-subrequest,domain=channel5.com|citytv.com|player.stv.tv|uktv.co.uk|wwe.com (easylist.txt: 49639) -.brightcove.com/.*/AdvertisingModule\.swf - -#ab2p-unblock-dnt-R1033 -{+client-header-tagger{ab2p-unblock-dnt-R1033} \ -} -# @@||charlieandmekids.com/www/delivery/$script,domain=charlieandmekids.co.nz|charlieandmekids.com.au (easylistchina+easylist.txt: 58578) -.charlieandmekids.com/www/delivery/ -# @@||charlieandmekids.com/www/delivery/$script,domain=charlieandmekids.co.nz|charlieandmekids.com.au (easylist.txt: 48093) -.charlieandmekids.com/www/delivery/ - -#ab2p-unblock-dnt-R1034 -{+client-header-tagger{ab2p-unblock-dnt-R1034} \ -} -# @@||rovicorp.com/advertising/*&appver=$xmlhttprequest,domain=charter.net (easylistchina+easylist.txt: 59471) -.rovicorp.com/advertising/.*&appver= -# @@||rovicorp.com/advertising/*&appver=$xmlhttprequest,domain=charter.net (easylist.txt: 48986) -.rovicorp.com/advertising/.*&appver= - -#ab2p-unblock-dnt-R1035 -{+client-header-tagger{ab2p-unblock-dnt-R1035} \ -} -# @@||revresda.com/js.ng/*&adsize=544x275&$script,domain=cheaptickets.com (easylistchina+easylist.txt: 59460) -.revresda.com/js\.ng/.*&adsize=544x275& -# @@||revresda.com/js.ng/*&adsize=544x275&$script,domain=cheaptickets.com (easylist.txt: 48975) -.revresda.com/js\.ng/.*&adsize=544x275& - -#ab2p-unblock-dnt-R1036 -{+client-header-tagger{ab2p-unblock-dnt-R1036} \ -} -# @@||revresda.com/event.ng/Type=click&$subdocument,domain=cheaptickets.com|orbitz.com (easylistchina+easylist.txt: 59459) -.revresda.com/event\.ng/Type=click& -# @@||revresda.com/event.ng/Type=click&$subdocument,domain=cheaptickets.com|orbitz.com (easylist.txt: 48974) -.revresda.com/event\.ng/Type=click& - -#ab2p-unblock-dnt-R1037 -{+client-header-tagger{ab2p-unblock-dnt-R1037} \ -} -# @@||odb.outbrain.com^$script,domain=cheatsheet.com (easylistchina+easylist.txt: 46019) -.odb.outbrain.com -# @@||b.grvcdn.com^$script,domain=cheatsheet.com (easylistchina+easylist.txt: 45952) -.b.grvcdn.com -# @@||odb.outbrain.com^$script,domain=cheatsheet.com (easylist.txt: 35534) -.odb.outbrain.com -# @@||b.grvcdn.com^$script,domain=cheatsheet.com (easylist.txt: 35467) -.b.grvcdn.com - -#ab2p-unblock-dnt-R1038 -{+client-header-tagger{ab2p-unblock-dnt-R1038} \ -} -# @@||widgets.outbrain.com/outbrain.js$domain=cheatsheet.com|supercheats.com (easylistchina+easylist.txt: 46053) -.widgets.outbrain.com/outbrain\.js -# @@||widgets.outbrain.com/outbrain.js$domain=cheatsheet.com|supercheats.com (easylist.txt: 35568) -.widgets.outbrain.com/outbrain\.js - -#ab2p-unblock-dnt-R146 -{+client-header-tagger{ab2p-unblock-dnt-R146} \ -} -# @@/sda/weixin$domain=chineseinla.com (easylistchina+easylist.txt: 10054) -/(.*/)?sda/weixin - -#ab2p-unblock-dnt-R1039 -{+client-header-tagger{ab2p-unblock-dnt-R1039} \ -} -# @@/adlogger_tracker.php$subdocument,domain=chrissmoove.com (easylistchina+easylist.txt: 59917) -/(.*/)?adlogger_tracker\.php -# @@/adlogger_tracker.php$subdocument,domain=chrissmoove.com (easylist.txt: 49432) -/(.*/)?adlogger_tracker\.php - -#ab2p-unblock-dnt-R1040 -{+client-header-tagger{ab2p-unblock-dnt-R1040} \ -} -# @@||media.salemwebnetwork.com/js/admanager/swfobject.js$domain=christianity.com (easylistchina+easylist.txt: 59155) -.media.salemwebnetwork.com/js/admanager/swfobject\.js -# @@||media.salemwebnetwork.com/js/admanager/swfobject.js$domain=christianity.com (easylist.txt: 48670) -.media.salemwebnetwork.com/js/admanager/swfobject\.js - -#ab2p-unblock-dnt-R1041 -{+client-header-tagger{ab2p-unblock-dnt-R1041} \ -} -# @@/adfile/*$domain=cidianwang.com (easylistchina+easylist.txt: 10001) -/(.*/)?adfile/.* - -#ab2p-unblock-dnt-R1042 -{+client-header-tagger{ab2p-unblock-dnt-R1042} \ -} -# @@||screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer.html?type=ADREQUEST&$xmlhttprequest,domain=cinemassacre.com (easylistchina+easylist.txt: 59498) -.screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer\.html\?type=ADREQUEST& -# @@||screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer.html?type=ADREQUEST&$xmlhttprequest,domain=cinemassacre.com (easylist.txt: 49013) -.screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer\.html\?type=ADREQUEST& - -#ab2p-unblock-dnt-R1043 -{+client-header-tagger{ab2p-unblock-dnt-R1043} \ -} -# @@||s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting.jpg$domain=circusstreet.com (easylistchina+easylist.txt: 59483) -.s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting\.jpg -# @@||s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting.jpg$domain=circusstreet.com (easylist.txt: 48998) -.s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting\.jpg - -#ab2p-unblock-dnt-R1044 -{+client-header-tagger{ab2p-unblock-dnt-R1044} \ -} -# @@||cloudfront.net/assets/ads_728x90-$script,domain=citationmachine.net (easylistchina+easylist.txt: 58599) -.cloudfront.net/assets/ads_728x90- -# @@||cloudfront.net/assets/ads_728x90-$script,domain=citationmachine.net (easylist.txt: 48114) -.cloudfront.net/assets/ads_728x90- - -#ab2p-unblock-dnt-R1045 -{+client-header-tagger{ab2p-unblock-dnt-R1045} \ -} -# @@/GFC/branding/*$domain=citi.com|citibank.com (advblock.txt: 7201) -/(.*/)?GFC/branding/.* - -#ab2p-unblock-dnt-R1046 -{+client-header-tagger{ab2p-unblock-dnt-R1046} \ -} -# @@||rezonence.com/Ads/*/AdCode.js$domain=cityam.com (easylistchina+easylist.txt: 60702) -.rezonence.com/Ads/.*/AdCode\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=cityam.com (easylistchina+easylist.txt: 60637) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=cityam.com (easylistchina+easylist.txt: 60636) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=cityam.com (easylistchina+easylist.txt: 60328) -.g.doubleclick.net/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/ads?*^$script,domain=cityam.com (easylistchina+easylist.txt: 60321) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-] -# @@||ads.pubmatic.com/AdServer/js/showad.js$domain=cityam.com (easylistchina+easylist.txt: 60016) -.ads.pubmatic.com/AdServer/js/showad\.js -# @@/adcode.js$domain=cityam.com (easylistchina+easylist.txt: 59915) -/(.*/)?adcode\.js -adcode.js*. -# @@||rezonence.com/Ads/*/AdCode.js$domain=cityam.com (easylist.txt: 50217) -.rezonence.com/Ads/.*/AdCode\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=cityam.com (easylist.txt: 50152) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=cityam.com (easylist.txt: 50151) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=cityam.com (easylist.txt: 49843) -.g.doubleclick.net/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/ads?*^$script,domain=cityam.com (easylist.txt: 49836) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-] -# @@||ads.pubmatic.com/AdServer/js/showad.js$domain=cityam.com (easylist.txt: 49531) -.ads.pubmatic.com/AdServer/js/showad\.js -# @@/adcode.js$domain=cityam.com (easylist.txt: 49430) -/(.*/)?adcode\.js -adcode.js*. - -#ab2p-unblock-dnt-R1047 -{+client-header-tagger{ab2p-unblock-dnt-R1047} \ -} -# @@||rogersdigitalmedia.com^*/rdm-ad-util.min.js$domain=citytv.com (easylistchina+easylist.txt: 59464) -.rogersdigitalmedia.com/.*/rdm-ad-util\.min\.js -# @@||rogersdigitalmedia.com^*/rdm-ad-util.min.js$domain=citytv.com (easylist.txt: 48979) -.rogersdigitalmedia.com/.*/rdm-ad-util\.min\.js - -#ab2p-unblock-dnt-R1048 -{+client-header-tagger{ab2p-unblock-dnt-R1048} \ -} -# @@||adscendmedia.com/gwjs.php?$script,domain=civilization5cheats.com|kzupload.com (easylistchina+easylist.txt: 60021) -.adscendmedia.com/gwjs\.php\? -# @@||adscendmedia.com/gwjs.php?$script,domain=civilization5cheats.com|kzupload.com (easylist.txt: 49536) -.adscendmedia.com/gwjs\.php\? - -#ab2p-unblock-dnt-R1049 -{+client-header-tagger{ab2p-unblock-dnt-R1049} \ -} -# @@||mns.com/ad/$domain=classifieds.nydailynews.com (easylistchina+easylist.txt: 59182) -.mns.com/ad/ -# @@||comboadmedia.adperfect.com^$domain=classifieds.nydailynews.com (easylistchina+easylist.txt: 58607) -.comboadmedia.adperfect.com -# @@||mns.com/ad/$domain=classifieds.nydailynews.com (easylist.txt: 48697) -.mns.com/ad/ -# @@||comboadmedia.adperfect.com^$domain=classifieds.nydailynews.com (easylist.txt: 48122) -.comboadmedia.adperfect.com - -#ab2p-unblock-dnt-R1050 -{+client-header-tagger{ab2p-unblock-dnt-R1050} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$domain=cleodesktop.com|mugiwaranofansub.blogspot.com.ar|musicacelestial.net (easylistchina+easylist.txt: 60626) -.pagead2.googlesyndication.com/pagead/js/google_top_exp\.js -# @@||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$domain=cleodesktop.com|mugiwaranofansub.blogspot.com.ar|musicacelestial.net (easylist.txt: 50141) -.pagead2.googlesyndication.com/pagead/js/google_top_exp\.js - -#ab2p-unblock-dnt-R1051 -{+client-header-tagger{ab2p-unblock-dnt-R1051} \ -} -# @@||openx.net/w/1.0/jstag$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60615) -.openx.net/w/1\.0/jstag -# @@||openx.net/w/1.0/acj?$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60614) -.openx.net/w/1\.0/acj\? -# @@||exponential.com/tags/ClubeDoHardwarecombr/ROS/tags.js$domain=clubedohardware.com.br (easylistchina+easylist.txt: 60264) -.exponential.com/tags/ClubeDoHardwarecombr/ROS/tags\.js -# @@||criteo.com/delivery/ajs.php?zoneid=$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60192) -.criteo.com/delivery/ajs\.php\?zoneid= -# @@||caspion.com/cas.js$domain=clubedohardware.com.br (easylistchina+easylist.txt: 60136) -.caspion.com/cas\.js -# @@||openx.net/w/1.0/jstag$script,domain=clubedohardware.com.br (easylist.txt: 50130) -.openx.net/w/1\.0/jstag -# @@||openx.net/w/1.0/acj?$script,domain=clubedohardware.com.br (easylist.txt: 50129) -.openx.net/w/1\.0/acj\? -# @@||exponential.com/tags/ClubeDoHardwarecombr/ROS/tags.js$domain=clubedohardware.com.br (easylist.txt: 49779) -.exponential.com/tags/ClubeDoHardwarecombr/ROS/tags\.js -# @@||criteo.com/delivery/ajs.php?zoneid=$script,domain=clubedohardware.com.br (easylist.txt: 49707) -.criteo.com/delivery/ajs\.php\?zoneid= -# @@||caspion.com/cas.js$domain=clubedohardware.com.br (easylist.txt: 49651) -.caspion.com/cas\.js - -#ab2p-unblock-dnt-R1052 -{+client-header-tagger{ab2p-unblock-dnt-R1052} \ -} -# @@||tribalfusion.com/j.ad?$script,domain=clubedohardware.com.br|yellowbridge.com (easylistchina+easylist.txt: 60815) -.tribalfusion.com/j\.ad\? -# @@||tribalfusion.com/displayAd.js?$domain=clubedohardware.com.br|yellowbridge.com (easylistchina+easylist.txt: 60814) -.tribalfusion.com/displayAd\.js\? -# @@||tribalfusion.com/j.ad?$script,domain=clubedohardware.com.br|yellowbridge.com (easylist.txt: 50330) -.tribalfusion.com/j\.ad\? -# @@||tribalfusion.com/displayAd.js?$domain=clubedohardware.com.br|yellowbridge.com (easylist.txt: 50329) -.tribalfusion.com/displayAd\.js\? - -#ab2p-unblock-dnt-R1053 -{+client-header-tagger{ab2p-unblock-dnt-R1053} \ -} -# @@||healthcare.gov/global/images/widgets/him/$domain=cms.gov (easylistchina+easylist.txt: 58934) -.healthcare.gov/global/images/widgets/him/ -# @@||healthcare.gov/global/images/widgets/him/$domain=cms.gov (easylist.txt: 48449) -.healthcare.gov/global/images/widgets/him/ - -#ab2p-unblock-dnt-R1054 -{+client-header-tagger{ab2p-unblock-dnt-R1054} \ -} -# @@||adm.fwmrm.net^*/videoadrenderer.$object-subrequest,domain=cnbc.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|go.com|nbc.com (easylistchina+easylist.txt: 58207) -.adm.fwmrm.net/.*/videoadrenderer\. -# @@||adm.fwmrm.net^*/videoadrenderer.$object-subrequest,domain=cnbc.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|go.com|nbc.com (easylist.txt: 47722) -.adm.fwmrm.net/.*/videoadrenderer\. - -#ab2p-unblock-dnt-R1055 -{+client-header-tagger{ab2p-unblock-dnt-R1055} \ -} -# @@||cbsistatic.com/fly/bundles/cnetjs/$script,domain=cnet.com (easylistchina+easylist.txt: 60139) -.cbsistatic.com/fly/bundles/cnetjs/ -# @@||cbsistatic.com^*/js/plugins/doubleclick.js$domain=cnet.com (easylistchina+easylist.txt: 58552) -.cbsistatic.com/.*/js/plugins/doubleclick\.js -# @@||cbsistatic.com/fly/bundles/cnetjs/$script,domain=cnet.com (easylist.txt: 49654) -.cbsistatic.com/fly/bundles/cnetjs/ -# @@||cbsistatic.com^*/js/plugins/doubleclick.js$domain=cnet.com (easylist.txt: 48067) -.cbsistatic.com/.*/js/plugins/doubleclick\.js - -#ab2p-unblock-dnt-R1056 -{+client-header-tagger{ab2p-unblock-dnt-R1056} \ -} -# @@||cbsistatic.com/cnwk.1d/ads/common/manta/adfunctions*.js$domain=cnettv.cnet.com (easylistchina+easylist.txt: 58551) -.cbsistatic.com/cnwk\.1d/ads/common/manta/adfunctions.*\.js -# @@||cbsistatic.com/cnwk.1d/ads/common/manta/adfunctions*.js$domain=cnettv.cnet.com (easylist.txt: 48066) -.cbsistatic.com/cnwk\.1d/ads/common/manta/adfunctions.*\.js - -#ab2p-unblock-dnt-R1057 -{+client-header-tagger{ab2p-unblock-dnt-R1057} \ -} -# @@||condenast.co.uk/scripts/cn-advert.js$domain=cntraveller.com (easylistchina+easylist.txt: 58613) -.condenast.co.uk/scripts/cn-advert\.js -# @@||condenast.co.uk/scripts/cn-advert.js$domain=cntraveller.com (easylist.txt: 48128) -.condenast.co.uk/scripts/cn-advert\.js - -#ab2p-unblock-dnt-R1058 -{+client-header-tagger{ab2p-unblock-dnt-R1058} \ -} -# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina+easylist.txt: 10331) -.pos.baidu.com/acom\?di= -# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina+easylist.txt: 10047) -/(.*/)?js/ad_test\.js - -#ab2p-unblock-dnt-R1059 -{+client-header-tagger{ab2p-unblock-dnt-R1059} \ -} -# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina+easylist.txt: 10199) -.cbjs.baidu.com/js/m\.js - -#ab2p-unblock-dnt-R1060 -{+client-header-tagger{ab2p-unblock-dnt-R1060} \ -} -# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina+easylist.txt: 10191) -.cb.baidu.com/ecom\? - -#ab2p-unblock-dnt-R1061 -{+client-header-tagger{ab2p-unblock-dnt-R1061} \ -} -# @@||promo2.tubemogul.com/lib/tubemoguldisplaylib.js$domain=comedy.com (easylistchina+easylist.txt: 59414) -.promo2.tubemogul.com/lib/tubemoguldisplaylib\.js -# @@||promo2.tubemogul.com/flash/youtube.swf$domain=comedy.com (easylistchina+easylist.txt: 59413) -.promo2.tubemogul.com/flash/youtube\.swf -# @@||promo2.tubemogul.com/adtags/slim_no_iframe.js$domain=comedy.com (easylistchina+easylist.txt: 59412) -.promo2.tubemogul.com/adtags/slim_no_iframe\.js -# @@||app.promo.tubemogul.com/feed/placement.html?id=$script,domain=comedy.com (easylistchina+easylist.txt: 58420) -.app.promo.tubemogul.com/feed/placement\.html\?id= -# @@||promo2.tubemogul.com/lib/tubemoguldisplaylib.js$domain=comedy.com (easylist.txt: 48929) -.promo2.tubemogul.com/lib/tubemoguldisplaylib\.js -# @@||promo2.tubemogul.com/flash/youtube.swf$domain=comedy.com (easylist.txt: 48928) -.promo2.tubemogul.com/flash/youtube\.swf -# @@||promo2.tubemogul.com/adtags/slim_no_iframe.js$domain=comedy.com (easylist.txt: 48927) -.promo2.tubemogul.com/adtags/slim_no_iframe\.js -# @@||app.promo.tubemogul.com/feed/placement.html?id=$script,domain=comedy.com (easylist.txt: 47935) -.app.promo.tubemogul.com/feed/placement\.html\?id= - -#ab2p-unblock-dnt-R1062 -{+client-header-tagger{ab2p-unblock-dnt-R1062} \ -} -# @@||gorillanation.com/storage/lightbox_code/static/companion_ads.js$domain=comingsoon.net|gamerevolution.com|sohh.com (easylistchina+easylist.txt: 58917) -.gorillanation.com/storage/lightbox_code/static/companion_ads\.js -# @@||gorillanation.com/storage/lightbox_code/static/companion_ads.js$domain=comingsoon.net|gamerevolution.com|sohh.com (easylist.txt: 48432) -.gorillanation.com/storage/lightbox_code/static/companion_ads\.js - -#ab2p-unblock-dnt-R1063 -{+client-header-tagger{ab2p-unblock-dnt-R1063} \ -} -# @@||pressdns.com/wp-content/$image,script,third-party,domain=conservativeintel.com (easylistchina+easylist.txt: 46030) -.pressdns.com/wp-content/ -# @@||conservativeintelcom.c.presscdn.com^$image,script,third-party,domain=conservativeintel.com (easylistchina+easylist.txt: 45965) -.conservativeintelcom.c.presscdn.com -# @@||pressdns.com/wp-content/$image,script,third-party,domain=conservativeintel.com (easylist.txt: 35545) -.pressdns.com/wp-content/ -# @@||conservativeintelcom.c.presscdn.com^$image,script,third-party,domain=conservativeintel.com (easylist.txt: 35480) -.conservativeintelcom.c.presscdn.com - -#ab2p-unblock-dnt-R1064 -{+client-header-tagger{ab2p-unblock-dnt-R1064} \ -} -# @@||yumenetworks.com/dynamic_preroll_playlist.vast2xml$domain=contv.com (easylistchina+easylist.txt: 59868) -.yumenetworks.com/dynamic_preroll_playlist\.vast2xml -# @@||yumenetworks.com/dynamic_preroll_playlist.vast2xml$domain=contv.com (easylist.txt: 49383) -.yumenetworks.com/dynamic_preroll_playlist\.vast2xml - -#ab2p-unblock-dnt-R1065 -{+client-header-tagger{ab2p-unblock-dnt-R1065} \ -} -# @@||doubleclick.net/ddm/clk/$popup,domain=couponcodeswap.com (easylistchina+easylist.txt: 61410) -.doubleclick.net/ddm/clk/ -# @@||doubleclick.net/ddm/clk/$popup,domain=couponcodeswap.com (easylist.txt: 50925) -.doubleclick.net/ddm/clk/ - -#ab2p-unblock-dnt-R1066 -{+client-header-tagger{ab2p-unblock-dnt-R1066} \ -} -# @@||ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid.swf?*&ad_type=$object-subrequest,domain=cricketcountry.com (easylistchina+easylist.txt: 59750) -.ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid\.swf\?.*&ad_type= -# @@||ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid.swf?*&ad_type=$object-subrequest,domain=cricketcountry.com (easylist.txt: 49265) -.ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid\.swf\?.*&ad_type= - -#ab2p-unblock-dnt-R1067 -{+client-header-tagger{ab2p-unblock-dnt-R1067} \ -} -# @@||serving-sys.com/SemiCachedScripts/$domain=cricketwireless.com (easylistchina+easylist.txt: 59520) -.serving-sys.com/SemiCachedScripts/ -# @@||serving-sys.com/SemiCachedScripts/$domain=cricketwireless.com (easylist.txt: 49035) -.serving-sys.com/SemiCachedScripts/ - -#ab2p-unblock-dnt-R1068 -{+client-header-tagger{ab2p-unblock-dnt-R1068} \ -} -# @@||adfox.ru^$image,popup,script,domain=ctc.ru|mts.ru|ozon.ru|tnt-online.ru|videomore.ru (advblock.txt: 7225) -.adfox.ru - -#ab2p-unblock-dnt-R1069 -{+client-header-tagger{ab2p-unblock-dnt-R1069} \ -} -# @@||smartadserver.com/call/pubj/*/8596/s/*/?$script,domain=cuantarazon.com|cuantocabron.com|vistoenfb.com (easylistchina+easylist.txt: 59544) -.smartadserver.com/call/pubj/.*/8596/s/.*/\? -# @@||smartadserver.com/call/pubj/*/8596/s/*/?$script,domain=cuantarazon.com|cuantocabron.com|vistoenfb.com (easylist.txt: 49059) -.smartadserver.com/call/pubj/.*/8596/s/.*/\? - -#ab2p-unblock-dnt-R1070 -{+client-header-tagger{ab2p-unblock-dnt-R1070} \ -} -# @@||openx.org/ck.php?$subdocument,domain=cubeecraft.com (easylistchina+easylist.txt: 59304) -.openx.org/ck\.php\? -# @@||openx.org/afr.php?$subdocument,domain=cubeecraft.com (easylistchina+easylist.txt: 59302) -.openx.org/afr\.php\? -# @@||openx.org/ck.php?$subdocument,domain=cubeecraft.com (easylist.txt: 48819) -.openx.org/ck\.php\? -# @@||openx.org/afr.php?$subdocument,domain=cubeecraft.com (easylist.txt: 48817) -.openx.org/afr\.php\? - -#ab2p-unblock-dnt-R1071 -{+client-header-tagger{ab2p-unblock-dnt-R1071} \ -} -# @@||g.doubleclick.net/gampad/ads?^*&sz=970x90%7C728x90^$xmlhttprequest,domain=cwtv.com (easylistchina+easylist.txt: 60323) -.g.doubleclick.net/gampad/ads\?[^\w%.-].*&sz=970x90%7C728x90[^\w%.-] -# @@||amazonaws.com/*.js$domain=cwtv.com (easylistchina+easylist.txt: 60053) -.amazonaws.com/.*\.js -# @@||ad.doubleclick.net/|$image,domain=cwtv.com (easylistchina+easylist.txt: 59981) -.ad.doubleclick.net/$ -# @@||g.doubleclick.net/gampad/ads?^*&sz=970x90%7C728x90^$xmlhttprequest,domain=cwtv.com (easylist.txt: 49838) -.g.doubleclick.net/gampad/ads\?[^\w%.-].*&sz=970x90%7C728x90[^\w%.-] -# @@||amazonaws.com/*.js$domain=cwtv.com (easylist.txt: 49568) -.amazonaws.com/.*\.js -# @@||ad.doubleclick.net/|$image,domain=cwtv.com (easylist.txt: 49496) -.ad.doubleclick.net/$ - -#ab2p-unblock-dnt-R1072 -{+client-header-tagger{ab2p-unblock-dnt-R1072} \ -} -# @@||resources.infolinks.com/js/infolinks_main.js$domain=cyberdevilz.net (easylistchina+easylist.txt: 60700) -.resources.infolinks.com/js/infolinks_main\.js -# @@||resources.infolinks.com/js/*/ice.js$domain=cyberdevilz.net (easylistchina+easylist.txt: 60699) -.resources.infolinks.com/js/.*/ice\.js -# @@||resources.infolinks.com/js/infolinks_main.js$domain=cyberdevilz.net (easylist.txt: 50215) -.resources.infolinks.com/js/infolinks_main\.js -# @@||resources.infolinks.com/js/*/ice.js$domain=cyberdevilz.net (easylist.txt: 50214) -.resources.infolinks.com/js/.*/ice\.js - -#ab2p-unblock-dnt-R1073 -{+client-header-tagger{ab2p-unblock-dnt-R1073} \ -} -# @@/adpic/*$domain=czsrc.com|nieyou.com|youlea.com (easylistchina+easylist.txt: 10008) -/(.*/)?adpic/.* - -#ab2p-unblock-dnt-R1074 -{+client-header-tagger{ab2p-unblock-dnt-R1074} \ -} -# @@||dirty.ru/static/i/adv/$image,domain=d3.ru|dirty.ru (advblock.txt: 7289) -.dirty.ru/static/i/adv/ - -#ab2p-unblock-dnt-R1075 -{+client-header-tagger{ab2p-unblock-dnt-R1075} \ -} -# @@||doubleclick.net^*;sz=*;ord=$image,script,domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 61006) -.doubleclick.net/.*;sz=.*;ord= -# @@||ad.doubleclick.net^*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 60927) -.ad.doubleclick.net/.*\.jpg$ -# @@||2mdn.net/viewad/*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 60926) -.2mdn.net/viewad/.*\.jpg$ -# @@||doubleclick.net^*;sz=*;ord=$image,script,domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50521) -.doubleclick.net/.*;sz=.*;ord= -# @@||ad.doubleclick.net^*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50442) -.ad.doubleclick.net/.*\.jpg$ -# @@||2mdn.net/viewad/*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50441) -.2mdn.net/viewad/.*\.jpg$ - -#ab2p-unblock-dnt-R1076 -{+client-header-tagger{ab2p-unblock-dnt-R1076} \ -} -# @@||dmstatic.com^*/adEntry.js$domain=daft.ie (easylistchina+easylist.txt: 58683) -.dmstatic.com/.*/adEntry\.js -# @@||dmstatic.com^*/adEntry.js$domain=daft.ie (easylist.txt: 48198) -.dmstatic.com/.*/adEntry\.js - -#ab2p-unblock-dnt-R1077 -{+client-header-tagger{ab2p-unblock-dnt-R1077} \ -} -# @@||newsinc.com/player/show/$domain=dailycaller.com|valuewalk.com (easylistchina+easylist.txt: 61261) -.newsinc.com/player/show/ -# @@||disqus.com/count-data.js$domain=dailycaller.com|valuewalk.com (easylistchina+easylist.txt: 61260) -.disqus.com/count-data\.js -# @@||newsinc.com/player/show/$domain=dailycaller.com|valuewalk.com (easylist.txt: 50776) -.newsinc.com/player/show/ -# @@||disqus.com/count-data.js$domain=dailycaller.com|valuewalk.com (easylist.txt: 50775) -.disqus.com/count-data\.js - -#ab2p-unblock-dnt-R1078 -{+client-header-tagger{ab2p-unblock-dnt-R1078} \ -} -# @@||img.revcontent.com^$domain=dailydot.com (easylistchina+easylist.txt: 58995) -.img.revcontent.com -# @@||img.revcontent.com^$domain=dailydot.com (easylist.txt: 48510) -.img.revcontent.com - -#ab2p-unblock-dnt-R1079 -{+client-header-tagger{ab2p-unblock-dnt-R1079} \ -} -# @@||yumenetworks.com/content/static/$domain=dailygames.com (easylistchina+easylist.txt: 59866) -.yumenetworks.com/content/static/ -# @@||yumenetworks.com/content/static/$domain=dailygames.com (easylist.txt: 49381) -.yumenetworks.com/content/static/ - -#ab2p-unblock-dnt-R1080 -{+client-header-tagger{ab2p-unblock-dnt-R1080} \ -} -# @@||dmgt.grapeshot.co.uk^$domain=dailymail.co.uk (easylistchina+easylist.txt: 58682) -.dmgt.grapeshot.co.uk -# @@||dmgt.grapeshot.co.uk^$domain=dailymail.co.uk (easylist.txt: 48197) -.dmgt.grapeshot.co.uk - -#ab2p-unblock-dnt-R166 -{+client-header-tagger{ab2p-unblock-dnt-R166} \ -} -# @@||api.dmcdn.net/pxl/advertisers/$domain=dailymotion.com (easylistchina+easylist.txt: 61284) -.api.dmcdn.net/pxl/advertisers/ -# @@||partners.thefilter.com/dailymotionservice/$image,object-subrequest,script,domain=dailymotion.com (easylistchina+easylist.txt: 59347) -.partners.thefilter.com/dailymotionservice/ -# @@||api.dmcdn.net/pxl/advertisers/$domain=dailymotion.com (easylist.txt: 50799) -.api.dmcdn.net/pxl/advertisers/ -# @@||partners.thefilter.com/dailymotionservice/$image,object-subrequest,script,domain=dailymotion.com (easylist.txt: 48862) -.partners.thefilter.com/dailymotionservice/ - -#ab2p-unblock-dnt-R1081 -{+client-header-tagger{ab2p-unblock-dnt-R1081} \ -} -# @@||web-jp.ad-v.jp/crossdomain.xml$domain=daisuki.net (easylistchina+easylist.txt: 59804) -.web-jp.ad-v.jp/crossdomain\.xml -# @@||web-jp.ad-v.jp/adam/inline?$object-subrequest,domain=daisuki.net (easylistchina+easylist.txt: 59803) -.web-jp.ad-v.jp/adam/inline\? -# @@||req.tidaltv.com^$object-subrequest,domain=daisuki.net (easylistchina+easylist.txt: 59454) -.req.tidaltv.com -# @@||web-jp.ad-v.jp/crossdomain.xml$domain=daisuki.net (easylist.txt: 49319) -.web-jp.ad-v.jp/crossdomain\.xml -# @@||web-jp.ad-v.jp/adam/inline?$object-subrequest,domain=daisuki.net (easylist.txt: 49318) -.web-jp.ad-v.jp/adam/inline\? -# @@||req.tidaltv.com^$object-subrequest,domain=daisuki.net (easylist.txt: 48969) -.req.tidaltv.com - -#ab2p-unblock-dnt-R1082 -{+client-header-tagger{ab2p-unblock-dnt-R1082} \ -} -# @@||dasolo.info^$script,domain=dasolo.info (easylistchina+easylist.txt: 60198) -.dasolo.info -# @@||dasolo.info^$script,domain=dasolo.info (easylist.txt: 49713) -.dasolo.info - -#ab2p-unblock-dnt-R1083 -{+client-header-tagger{ab2p-unblock-dnt-R1083} \ -} -# @@||au.adserver.yahoo.com/a?$subdocument,domain=dating.yahoo.com.au (easylistchina+easylist.txt: 58449) -.au.adserver.yahoo.com/a\? -# @@||au.adserver.yahoo.com/a?$subdocument,domain=dating.yahoo.com.au (easylist.txt: 47964) -.au.adserver.yahoo.com/a\? - -#ab2p-unblock-dnt-R1084 -{+client-header-tagger{ab2p-unblock-dnt-R1084} \ -} -# @@||integral-marketing.com/scripts/imads.js$domain=dayt.se (easylistchina+easylist.txt: 60424) -.integral-marketing.com/scripts/imads\.js -# @@||dayt.se^$script,domain=dayt.se (easylistchina+easylist.txt: 60200) -.dayt.se -# @@||ads.ad-center.com^$subdocument,domain=dayt.se (easylistchina+easylist.txt: 60007) -.ads.ad-center.com -# @@||ads.ad-center.com/smart_ad/display?ref=*&smart_ad_id=$subdocument,domain=dayt.se (easylistchina+easylist.txt: 60006) -.ads.ad-center.com/smart_ad/display\?ref=.*&smart_ad_id= -# @@||integral-marketing.com/scripts/imads.js$domain=dayt.se (easylist.txt: 49939) -.integral-marketing.com/scripts/imads\.js -# @@||dayt.se^$script,domain=dayt.se (easylist.txt: 49715) -.dayt.se -# @@||ads.ad-center.com^$subdocument,domain=dayt.se (easylist.txt: 49522) -.ads.ad-center.com -# @@||ads.ad-center.com/smart_ad/display?ref=*&smart_ad_id=$subdocument,domain=dayt.se (easylist.txt: 49521) -.ads.ad-center.com/smart_ad/display\?ref=.*&smart_ad_id= - -#ab2p-unblock-dnt-R1085 -{+client-header-tagger{ab2p-unblock-dnt-R1085} \ -} -# @@||amazon-adsystem.com/aax2/amzn_ads.js$domain=deadspin.com|foodnetwork.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com|weather.com (easylistchina+easylist.txt: 58386) -.amazon-adsystem.com/aax2/amzn_ads\.js -# @@||amazon-adsystem.com/aax2/amzn_ads.js$domain=deadspin.com|foodnetwork.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com|weather.com (easylist.txt: 47901) -.amazon-adsystem.com/aax2/amzn_ads\.js - -#ab2p-unblock-dnt-R1086 -{+client-header-tagger{ab2p-unblock-dnt-R1086} \ -} -# @@||stores-assets.stackcommerce.com^$script,domain=deals.segmentnext.com (easylistchina+easylist.txt: 46041) -.stores-assets.stackcommerce.com -# @@||stores-assets.stackcommerce.com^$script,domain=deals.segmentnext.com (easylist.txt: 35556) -.stores-assets.stackcommerce.com - -#ab2p-unblock-dnt-R1087 -{+client-header-tagger{ab2p-unblock-dnt-R1087} \ -} -# @@||tradedoubler.com/file/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59685) -.tradedoubler.com/file/ -# @@||nonstoppartner.net/a/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59257) -.nonstoppartner.net/a/ -# @@||imp*.tradedoubler.com/imp?type(img)$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59001) -.imp*./.*\.tradedoubler\.com/imp\?type\(img\) -.imp*.tradedoubler.com/imp\?type\(img\) -# @@||gopjn.com/b/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 58916) -.gopjn.com/b/ -# @@||awin1.com/cshow.php?s=$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 58465) -.awin1.com/cshow\.php\?s= -# @@||tradedoubler.com/file/$image,domain=deliverydeals.co.uk (easylist.txt: 49200) -.tradedoubler.com/file/ -# @@||nonstoppartner.net/a/$image,domain=deliverydeals.co.uk (easylist.txt: 48772) -.nonstoppartner.net/a/ -# @@||imp*.tradedoubler.com/imp?type(img)$image,domain=deliverydeals.co.uk (easylist.txt: 48516) -.imp*./.*\.tradedoubler\.com/imp\?type\(img\) -.imp*.tradedoubler.com/imp\?type\(img\) -# @@||gopjn.com/b/$image,domain=deliverydeals.co.uk (easylist.txt: 48431) -.gopjn.com/b/ -# @@||awin1.com/cshow.php?s=$image,domain=deliverydeals.co.uk (easylist.txt: 47980) -.awin1.com/cshow\.php\?s= - -#ab2p-unblock-dnt-R1088 -{+client-header-tagger{ab2p-unblock-dnt-R1088} \ -} -# @@||doublerecall.com/core.js.php?$script,domain=delo.si (easylistchina+easylist.txt: 61007) -.doublerecall.com/core\.js\.php\? -# @@||doublerecall.com/core.js.php?$script,domain=delo.si (easylist.txt: 50522) -.doublerecall.com/core\.js\.php\? - -#ab2p-unblock-dnt-R1089 -{+client-header-tagger{ab2p-unblock-dnt-R1089} \ -} -# @@||demonoid.ooo^$script,domain=demonoid.ooo (easylistchina+easylist.txt: 60206) -.demonoid.ooo -# @@||demonoid.ooo^$script,domain=demonoid.ooo (easylist.txt: 49721) -.demonoid.ooo - -#ab2p-unblock-dnt-R1090 -{+client-header-tagger{ab2p-unblock-dnt-R1090} \ -} -# @@||demonoid.ph^$script,domain=demonoid.ph (easylistchina+easylist.txt: 60207) -.demonoid.ph -# @@||demonoid.ph^$script,domain=demonoid.ph (easylist.txt: 49722) -.demonoid.ph - -#ab2p-unblock-dnt-R1091 -{+client-header-tagger{ab2p-unblock-dnt-R1091} \ -} -# @@||demonoid.pw^$script,domain=demonoid.pw (easylistchina+easylist.txt: 60208) -.demonoid.pw -# @@||demonoid.pw^$script,domain=demonoid.pw (easylist.txt: 49723) -.demonoid.pw - -#ab2p-unblock-dnt-R1092 -{+client-header-tagger{ab2p-unblock-dnt-R1092} \ -} -# @@||mediav.com^$domain=dev.360.cn (easylistchina+easylist.txt: 10303) -.mediav.com - -#ab2p-unblock-dnt-R1093 -{+client-header-tagger{ab2p-unblock-dnt-R1093} \ -} -# @@||deviantart.net/fs*/20*_by_$image,domain=deviantart.com (easylistchina+easylist.txt: 58668) -.deviantart.net/fs.*/20.*_by_ -# @@||da-ads.com/truex.html?$domain=deviantart.com (easylistchina+easylist.txt: 58644) -.da-ads.com/truex\.html\? -# @@||deviantart.net/fs*/20*_by_$image,domain=deviantart.com (easylist.txt: 48183) -.deviantart.net/fs.*/20.*_by_ -# @@||da-ads.com/truex.html?$domain=deviantart.com (easylist.txt: 48159) -.da-ads.com/truex\.html\? - -#ab2p-unblock-dnt-R1094 -{+client-header-tagger{ab2p-unblock-dnt-R1094} \ -} -# @@||oas.di.se^*/di.se/Lopet/*@$script,domain=di.se (easylistchina+easylist.txt: 61076) -.oas.di.se/.*/di\.se/Lopet/.*@ -# @@||oas.di.se/RealMedia/ads/Creatives/di.se/$object,script,domain=di.se (easylistchina+easylist.txt: 61075) -.oas.di.se/RealMedia/ads/Creatives/di\.se/ -# @@||oas.di.se^*/di.se/Lopet/*@$script,domain=di.se (easylist.txt: 50591) -.oas.di.se/.*/di\.se/Lopet/.*@ -# @@||oas.di.se/RealMedia/ads/Creatives/di.se/$object,script,domain=di.se (easylist.txt: 50590) -.oas.di.se/RealMedia/ads/Creatives/di\.se/ - -#ab2p-unblock-dnt-R1095 -{+client-header-tagger{ab2p-unblock-dnt-R1095} \ -} -# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina+easylist.txt: 10025) -/(.*/)?advs/.* - -#ab2p-unblock-dnt-R1096 -{+client-header-tagger{ab2p-unblock-dnt-R1096} \ -} -# @@||advertpay.net/code?$script,domain=dic.academic.ru (advblock.txt: 7625) -.advertpay.net/code\? - -#ab2p-unblock-dnt-R1097 -{+client-header-tagger{ab2p-unblock-dnt-R1097} \ -} -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection.swf?$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylistchina+easylist.txt: 59334) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection\.swf\? -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3.swf$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylistchina+easylist.txt: 59333) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3\.swf -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection.swf?$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylist.txt: 48849) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection\.swf\? -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3.swf$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylist.txt: 48848) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3\.swf - -#ab2p-unblock-dnt-R1098 -{+client-header-tagger{ab2p-unblock-dnt-R1098} \ -} -# @@||wp.com/digiday.com/wp-content/uploads/*/your-ad-here-banner.png?resize=$domain=digiday.com (easylistchina+easylist.txt: 59825) -.wp.com/digiday\.com/wp-content/uploads/.*/your-ad-here-banner\.png\?resize= -# @@||wp.com/digiday.com/wp-content/uploads/*/your-ad-here-banner.png?resize=$domain=digiday.com (easylist.txt: 49340) -.wp.com/digiday\.com/wp-content/uploads/.*/your-ad-here-banner\.png\?resize= - -#ab2p-unblock-dnt-R1099 -{+client-header-tagger{ab2p-unblock-dnt-R1099} \ -} -# @@||dpmate.com/exports/tour_20/$domain=digitalplayground.com (easylistchina+easylist.txt: 61435) -.dpmate.com/exports/tour_20/ -# @@||dpmate.com/exports/tour_20/$domain=digitalplayground.com (easylist.txt: 50950) -.dpmate.com/exports/tour_20/ - -#ab2p-unblock-dnt-R1100 -{+client-header-tagger{ab2p-unblock-dnt-R1100} \ -} -# @@||adserver.adtech.de/?adrawdata/3.0/$object-subrequest,domain=digitoday.fi|groovefm.fi|hs.fi|iltasanomat.fi|istv.fi|jimtv.fi|livtv.fi|loop.fi|metrohelsinki.fi|nelonen.fi|nyt.fi|radioaalto.fi|radiorock.fi|radiosuomipop.fi|ruokala.net|ruutu.fi (easylistchina+easylist.txt: 60023) -.adserver.adtech.de/\?adrawdata/3\.0/ -# @@||adserver.adtech.de/?adrawdata/3.0/$object-subrequest,domain=digitoday.fi|groovefm.fi|hs.fi|iltasanomat.fi|istv.fi|jimtv.fi|livtv.fi|loop.fi|metrohelsinki.fi|nelonen.fi|nyt.fi|radioaalto.fi|radiorock.fi|radiosuomipop.fi|ruokala.net|ruutu.fi (easylist.txt: 49538) -.adserver.adtech.de/\?adrawdata/3\.0/ - -#ab2p-unblock-dnt-R1101 -{+client-header-tagger{ab2p-unblock-dnt-R1101} \ -} -# @@||googleadservices.com/pagead/conversion_async.js$domain=dillards.com (easylistchina+easylist.txt: 58911) -.googleadservices.com/pagead/conversion_async\.js -# @@||googleadservices.com/pagead/conversion_async.js$domain=dillards.com (easylist.txt: 48426) -.googleadservices.com/pagead/conversion_async\.js - -#ab2p-unblock-dnt-R1102 -{+client-header-tagger{ab2p-unblock-dnt-R1102} \ -} -# @@||spotxchange.com/media/videos/flash/adplayer_$domain=directon.tv (easylistchina+easylist.txt: 59575) -.spotxchange.com/media/videos/flash/adplayer_ -# @@||spotxchange.com/media/videos/flash/adplayer_$domain=directon.tv (easylist.txt: 49090) -.spotxchange.com/media/videos/flash/adplayer_ - -#ab2p-unblock-dnt-R1103 -{+client-header-tagger{ab2p-unblock-dnt-R1103} \ -} -# @@||spotxchange.com/media/videos/flash/ad_player/$domain=directon.tv|games.yahoo.com|onescreen.net|wii-cast.tv (easylistchina+easylist.txt: 59574) -.spotxchange.com/media/videos/flash/ad_player/ -# @@||spotxchange.com/media/videos/flash/ad_player/$domain=directon.tv|games.yahoo.com|onescreen.net|wii-cast.tv (easylist.txt: 49089) -.spotxchange.com/media/videos/flash/ad_player/ - -#ab2p-unblock-dnt-R1104 -{+client-header-tagger{ab2p-unblock-dnt-R1104} \ -} -# @@||spotxchange.com/flash/ad.swf?$domain=directon.tv|wii-cast.tv (easylistchina+easylist.txt: 59572) -.spotxchange.com/flash/ad\.swf\? -# @@||spotxchange.com/flash/ad.swf?$domain=directon.tv|wii-cast.tv (easylist.txt: 49087) -.spotxchange.com/flash/ad\.swf\? - -#ab2p-unblock-dnt-R1105 -{+client-header-tagger{ab2p-unblock-dnt-R1105} \ -} -# @@||syndication.exoclick.com/ads.php?type=728x90&$script,domain=dirtstyle.tv (easylistchina+easylist.txt: 61776) -.syndication.exoclick.com/ads\.php\?type=728x90& -# @@||syndication.exoclick.com/ads.php?type=728x90&$script,domain=dirtstyle.tv (easylist.txt: 51291) -.syndication.exoclick.com/ads\.php\?type=728x90& - -#ab2p-unblock-dnt-R1106 -{+client-header-tagger{ab2p-unblock-dnt-R1106} \ -} -# @@.dirty.ru/static/$domain=dirty.ru (advblock.txt: 7522) -/.*\.dirty\.ru/static/ -.*.dirty.ru/static/ - -#ab2p-unblock-dnt-R1107 -{+client-header-tagger{ab2p-unblock-dnt-R1107} \ -} -# @@||oascentral.discovery.com/realmedia/ads/adstream_mjx.ads/$script,domain=discovery.com (easylistchina+easylist.txt: 59273) -.oascentral.discovery.com/realmedia/ads/adstream_mjx\.ads/ -# @@||oascentral.discovery.com/realmedia/ads/adstream_mjx.ads/$script,domain=discovery.com (easylist.txt: 48788) -.oascentral.discovery.com/realmedia/ads/adstream_mjx\.ads/ - -#ab2p-unblock-dnt-R1108 -{+client-header-tagger{ab2p-unblock-dnt-R1108} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina+easylist.txt: 10324) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-dnt-R1109 -{+client-header-tagger{ab2p-unblock-dnt-R1109} \ -} -# @@||analytics.disneyinternational.com/ads/tagsv2/video/$xmlhttprequest,domain=disney.no (easylistchina+easylist.txt: 60978) -.analytics.disneyinternational.com/ads/tagsv2/video/ -# @@||analytics.disneyinternational.com/ads/tagsv2/video/$xmlhttprequest,domain=disney.no (easylist.txt: 50493) -.analytics.disneyinternational.com/ads/tagsv2/video/ - -#ab2p-unblock-dnt-R1110 -{+client-header-tagger{ab2p-unblock-dnt-R1110} \ -} -# @@||a.disquscdn.com/next/embed/$script,domain=disqus.com (easylistchina+easylist.txt: 45835) -.a.disquscdn.com/next/embed/ -# @@||a.disquscdn.com/next/embed/$script,domain=disqus.com (easylist.txt: 35350) -.a.disquscdn.com/next/embed/ - -#ab2p-unblock-dnt-R1111 -{+client-header-tagger{ab2p-unblock-dnt-R1111} \ -} -# @@||winwords.adhood.com^$script,domain=dizi-mag.com (easylistchina+easylist.txt: 60898) -.winwords.adhood.com -# @@||dizicdn.com/i/ads/groupon.png$domain=dizi-mag.com (easylistchina+easylist.txt: 60216) -.dizicdn.com/i/ads/groupon\.png -# @@||ads.milliyet.cubecdn.net/winwords/adhood/winwords2.client.js$domain=dizi-mag.com (easylistchina+easylist.txt: 60014) -.ads.milliyet.cubecdn.net/winwords/adhood/winwords2\.client\.js -# @@||winwords.adhood.com^$script,domain=dizi-mag.com (easylist.txt: 50413) -.winwords.adhood.com -# @@||dizicdn.com/i/ads/groupon.png$domain=dizi-mag.com (easylist.txt: 49731) -.dizicdn.com/i/ads/groupon\.png -# @@||ads.milliyet.cubecdn.net/winwords/adhood/winwords2.client.js$domain=dizi-mag.com (easylist.txt: 49529) -.ads.milliyet.cubecdn.net/winwords/adhood/winwords2\.client\.js - -#ab2p-unblock-dnt-R1112 -{+client-header-tagger{ab2p-unblock-dnt-R1112} \ -} -# @@||dlh.net^$script,domain=dlh.net (easylistchina+easylist.txt: 60218) -.dlh.net -# @@||dlh.net^$script,domain=dlh.net (easylist.txt: 49733) -.dlh.net - -#ab2p-unblock-dnt-R1113 -{+client-header-tagger{ab2p-unblock-dnt-R1113} \ -} -# @@||dnswatch.info^$script,domain=dnswatch.info (easylistchina+easylist.txt: 60219) -.dnswatch.info -# @@||dnswatch.info^$script,domain=dnswatch.info (easylist.txt: 49734) -.dnswatch.info - -#ab2p-unblock-dnt-R1114 -{+client-header-tagger{ab2p-unblock-dnt-R1114} \ -} -# @@/adframe.$domain=dnvod.eu (easylistchina+easylist.txt: 10002) -/(.*/)?adframe\. -adframe.*. - -#ab2p-unblock-dnt-R1115 -{+client-header-tagger{ab2p-unblock-dnt-R1115} \ -} -# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina+easylist.txt: 10059) -/(.*/)?upload/ads/.*\.jpg - -#ab2p-unblock-dnt-R1116 -{+client-header-tagger{ab2p-unblock-dnt-R1116} \ -} -# @@||doubleclick.net/adi/sony.oz.opus/*;pos=bottom;$subdocument,domain=doctoroz.com (easylistchina+easylist.txt: 58703) -.doubleclick.net/adi/sony\.oz\.opus/.*;pos=bottom; -# @@||doubleclick.net/adi/sony.oz.opus/*;pos=bottom;$subdocument,domain=doctoroz.com (easylist.txt: 48218) -.doubleclick.net/adi/sony\.oz\.opus/.*;pos=bottom; - -#ab2p-unblock-dnt-R1117 -{+client-header-tagger{ab2p-unblock-dnt-R1117} \ -} -# @@||dogecoinpuddle.com^$script,domain=dogecoinpuddle.com (easylistchina+easylist.txt: 60222) -.dogecoinpuddle.com -# @@||dogecoinpuddle.com^$script,domain=dogecoinpuddle.com (easylist.txt: 49737) -.dogecoinpuddle.com - -#ab2p-unblock-dnt-R1118 -{+client-header-tagger{ab2p-unblock-dnt-R1118} \ -} -# @@||ertelecom.ru^*.swf?link1=$domain=domru.ru (advblock.txt: 7293) -.ertelecom.ru/.*\.swf\?link1= - -#ab2p-unblock-dnt-R1119 -{+client-header-tagger{ab2p-unblock-dnt-R1119} \ -} -# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina+easylist.txt: 10072) -/(.*/)?AD/ - -#ab2p-unblock-dnt-R1120 -{+client-header-tagger{ab2p-unblock-dnt-R1120} \ -} -# @@||2mdn.net^*/player.swf$domain=doubleclick.net (easylistchina+easylist.txt: 58127) -.2mdn.net/.*/player\.swf -# @@||2mdn.net^*/jwplayer.js$domain=doubleclick.net (easylistchina+easylist.txt: 58126) -.2mdn.net/.*/jwplayer\.js -# @@||2mdn.net^*/player.swf$domain=doubleclick.net (easylist.txt: 47642) -.2mdn.net/.*/player\.swf -# @@||2mdn.net^*/jwplayer.js$domain=doubleclick.net (easylist.txt: 47641) -.2mdn.net/.*/jwplayer\.js - -#ab2p-unblock-dnt-R1121 -{+client-header-tagger{ab2p-unblock-dnt-R1121} \ -} -# @@/advertisement.js$domain=dramacafe.in|ilive.to|mackolik.com|sahadan.com (easylistchina+easylist.txt: 59920) -/(.*/)?advertisement\.js -advertisement.js*. -# @@/advertisement.js$domain=dramacafe.in|ilive.to|mackolik.com|sahadan.com (easylist.txt: 49435) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-dnt-R1122 -{+client-header-tagger{ab2p-unblock-dnt-R1122} \ -} -# @@/crosdomain.xml$object-subrequest,domain=dramafever.com (easylistchina+easylist.txt: 59926) -/(.*/)?crosdomain\.xml -crosdomain.xml*. -# @@/crosdomain.xml$object-subrequest,domain=dramafever.com (easylist.txt: 49441) -/(.*/)?crosdomain\.xml -crosdomain.xml*. - -#ab2p-unblock-dnt-R1123 -{+client-header-tagger{ab2p-unblock-dnt-R1123} \ -} -# @@||auditude.com^*/auditudeosmfproxyplugin.swf$object-subrequest,domain=dramafever.com|majorleaguegaming.com (easylistchina+easylist.txt: 58455) -.auditude.com/.*/auditudeosmfproxyplugin\.swf -# @@||auditude.com^*/auditudeosmfproxyplugin.swf$object-subrequest,domain=dramafever.com|majorleaguegaming.com (easylist.txt: 47970) -.auditude.com/.*/auditudeosmfproxyplugin\.swf - -#ab2p-unblock-dnt-R1124 -{+client-header-tagger{ab2p-unblock-dnt-R1124} \ -} -# @@/crossdomain.xml$object-subrequest,domain=dramafever.com|vaughnlive.tv (easylistchina+easylist.txt: 59927) -/(.*/)?crossdomain\.xml -crossdomain.xml*. -# @@/crossdomain.xml$object-subrequest,domain=dramafever.com|vaughnlive.tv (easylist.txt: 49442) -/(.*/)?crossdomain\.xml -crossdomain.xml*. - -#ab2p-unblock-dnt-R1125 -{+client-header-tagger{ab2p-unblock-dnt-R1125} \ -} -# @@||dressupgal.com^$script,domain=dressupgal.com (easylistchina+easylist.txt: 60235) -.dressupgal.com -# @@||dressupgal.com^$script,domain=dressupgal.com (easylist.txt: 49750) -.dressupgal.com - -#ab2p-unblock-dnt-R1126 -{+client-header-tagger{ab2p-unblock-dnt-R1126} \ -} -# @@||g.doubleclick.net/gampad/ads?*^slotname=NormalLeaderboard^$script,domain=drivearabia.com (easylistchina+easylist.txt: 60322) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-]slotname=NormalLeaderboard[^\w%.-] -# @@||g.doubleclick.net/gampad/ads?*^slotname=NormalLeaderboard^$script,domain=drivearabia.com (easylist.txt: 49837) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-]slotname=NormalLeaderboard[^\w%.-] - -#ab2p-unblock-dnt-R1127 -{+client-header-tagger{ab2p-unblock-dnt-R1127} \ -} -# @@||dollarade.com/overlay_gateway.php?oid=$script,domain=dubs.me|filestore123.info|myfilestore.com|portable77download.blogspot.com|pspmaniaonline.com (easylistchina+easylist.txt: 60224) -.dollarade.com/overlay_gateway\.php\?oid= -# @@||dollarade.com/overlay_gateway.php?oid=$script,domain=dubs.me|filestore123.info|myfilestore.com|portable77download.blogspot.com|pspmaniaonline.com (easylist.txt: 49739) -.dollarade.com/overlay_gateway\.php\?oid= - -#ab2p-unblock-dnt-R1128 -{+client-header-tagger{ab2p-unblock-dnt-R1128} \ -} -# @@||topadvert.ru^$image,script,domain=dxdigitals.info (advblock.txt: 7411) -.topadvert.ru - -#ab2p-unblock-dnt-R1129 -{+client-header-tagger{ab2p-unblock-dnt-R1129} \ -} -# @@||sfdict.com/app/*/js/ghostwriter_adcall.js$domain=dynamo.dictionary.com (easylistchina+easylist.txt: 59522) -.sfdict.com/app/.*/js/ghostwriter_adcall\.js -# @@||sfdict.com/app/*/js/ghostwriter_adcall.js$domain=dynamo.dictionary.com (easylist.txt: 49037) -.sfdict.com/app/.*/js/ghostwriter_adcall\.js - -#ab2p-unblock-dnt-R1130 -{+client-header-tagger{ab2p-unblock-dnt-R1130} \ -} -# @@||ul.ehgt.org/ad/$image,domain=e-hentai.org|exhentai.org (easylistchina+easylist.txt: 61467) -.ul.ehgt.org/ad/ -# @@||ul.ehgt.org/ad/$image,domain=e-hentai.org|exhentai.org (easylist.txt: 50982) -.ul.ehgt.org/ad/ - -#ab2p-unblock-dnt-R1131 -{+client-header-tagger{ab2p-unblock-dnt-R1131} \ -} -# @@||adtechus.com/dt/common/DACMultiAdPlugin.js$domain=e24.no (easylistchina+easylist.txt: 60028) -.adtechus.com/dt/common/DACMultiAdPlugin\.js -# @@||adtechus.com/dt/common/DACMultiAdPlugin.js$domain=e24.no (easylist.txt: 49543) -.adtechus.com/dt/common/DACMultiAdPlugin\.js - -#ab2p-unblock-dnt-R1132 -{+client-header-tagger{ab2p-unblock-dnt-R1132} \ -} -# @@.net/director/?t=$subdocument,third-party,domain=eafyfsuh.net (easylistchina+easylist.txt: 58100) -/.*\.net/director/\?t= -.*.net/director/\?t= -# @@.net/director/?t=$subdocument,third-party,domain=eafyfsuh.net (easylist.txt: 47615) -/.*\.net/director/\?t= -.*.net/director/\?t= - -#ab2p-unblock-dnt-R1133 -{+client-header-tagger{ab2p-unblock-dnt-R1133} \ -} -# @@||easyads.eu^$domain=easyads.eu (easylistchina+easylist.txt: 61251) -.easyads.eu -# @@||easyads.eu^$domain=easyads.eu (easylist.txt: 50766) -.easyads.eu - -#ab2p-unblock-dnt-R1134 -{+client-header-tagger{ab2p-unblock-dnt-R1134} \ -} -# @@||adblockplus.org^$elemhide,domain=easylist.adblockplus.org|reports.adblockplus.org (easylistchina+easylist.txt: 58186) -.adblockplus.org -# @@||adblockplus.org^$elemhide,domain=easylist.adblockplus.org|reports.adblockplus.org (easylist.txt: 47701) -.adblockplus.org - -#ab2p-unblock-dnt-R1135 -{+client-header-tagger{ab2p-unblock-dnt-R1135} \ -} -# @@||ads.adaptv.advertising.com^$xmlhttprequest,domain=easyrecipesite.com (easylistchina+easylist.txt: 58220) -.ads.adaptv.advertising.com -# @@||ads.adaptv.advertising.com^$xmlhttprequest,domain=easyrecipesite.com (easylist.txt: 47735) -.ads.adaptv.advertising.com - -#ab2p-unblock-dnt-R1136 -{+client-header-tagger{ab2p-unblock-dnt-R1136} \ -} -# @@||doubleclick.net/adi/ebay.*/video;$subdocument,domain=ebay.com (easylistchina+easylist.txt: 58698) -.doubleclick.net/adi/ebay\..*/video; -# @@||doubleclick.net/adi/ebay.*/video;$subdocument,domain=ebay.com (easylist.txt: 48213) -.doubleclick.net/adi/ebay\..*/video; - -#ab2p-unblock-dnt-R1137 -{+client-header-tagger{ab2p-unblock-dnt-R1137} \ -} -# @@||g.doubleclick.net/pagead/ads?ad_type=image_text^$object-subrequest,domain=ebog.com|gameark.com (easylistchina+easylist.txt: 58855) -.g.doubleclick.net/pagead/ads\?ad_type=image_text[^\w%.-] -# @@||g.doubleclick.net/pagead/ads?ad_type=image_text^$object-subrequest,domain=ebog.com|gameark.com (easylist.txt: 48370) -.g.doubleclick.net/pagead/ads\?ad_type=image_text[^\w%.-] - -#ab2p-unblock-dnt-R1138 -{+client-header-tagger{ab2p-unblock-dnt-R1138} \ -} -# @@||adverts.eclypsia.com/www/images/*.jpg|$domain=eclypsia.com (easylistchina+easylist.txt: 60033) -.adverts.eclypsia.com/www/images/.*\.jpg$ -# @@||adverts.eclypsia.com/www/images/*.jpg|$domain=eclypsia.com (easylist.txt: 49548) -.adverts.eclypsia.com/www/images/.*\.jpg$ - -#ab2p-unblock-dnt-R1139 -{+client-header-tagger{ab2p-unblock-dnt-R1139} \ -} -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/$script,domain=economist.com|feedroom.com|stanford.edu (easylistchina+easylist.txt: 59274) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/ -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/$script,domain=economist.com|feedroom.com|stanford.edu (easylist.txt: 48789) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/ - -#ab2p-unblock-dnt-R1140 -{+client-header-tagger{ab2p-unblock-dnt-R1140} \ -} -# @@||adriver.ru/cgi-bin/erle.cgi?*&target=blank&tail$script,domain=eg.ru (advblock.txt: 7619) -.adriver.ru/cgi-bin/erle\.cgi\?.*&target=blank&tail - -#ab2p-unblock-dnt-R1141 -{+client-header-tagger{ab2p-unblock-dnt-R1141} \ -} -# @@||imgag.com^*/adaptvadplayer.swf$domain=egreetings.com (easylistchina+easylist.txt: 58999) -.imgag.com/.*/adaptvadplayer\.swf -# @@||imgag.com^*/adaptvadplayer.swf$domain=egreetings.com (easylist.txt: 48514) -.imgag.com/.*/adaptvadplayer\.swf - -#ab2p-unblock-dnt-R1142 -{+client-header-tagger{ab2p-unblock-dnt-R1142} \ -} -# @@||rc.hotkeys.com/interface/$domain=ehow.com (easylistchina+easylist.txt: 59440) -.rc.hotkeys.com/interface/ -# @@||rc.hotkeys.com/interface/$domain=ehow.com (easylist.txt: 48955) -.rc.hotkeys.com/interface/ - -#ab2p-unblock-dnt-R1143 -{+client-header-tagger{ab2p-unblock-dnt-R1143} \ -} -# @@||google.com/afs/ads?$document,subdocument,domain=ehow.com|livestrong.com (easylistchina+easylist.txt: 58901) -.google.com/afs/ads\? -# @@||google.com/afs/ads?$document,subdocument,domain=ehow.com|livestrong.com (easylist.txt: 48416) -.google.com/afs/ads\? - -#ab2p-unblock-dnt-R1144 -{+client-header-tagger{ab2p-unblock-dnt-R1144} \ -} -# @@||eioservices.marketingsolutions.yahoo.com^$domain=eio.manhattan.yahoo.com (easylistchina+easylist.txt: 61263) -.eioservices.marketingsolutions.yahoo.com -# @@||eioservices.marketingsolutions.yahoo.com^$domain=eio.manhattan.yahoo.com (easylist.txt: 50778) -.eioservices.marketingsolutions.yahoo.com - -#ab2p-unblock-dnt-R1145 -{+client-header-tagger{ab2p-unblock-dnt-R1145} \ -} -# @@||nuggad.net/rc?nuggn=$script,domain=ekstrabladet.dk (easylistchina+easylist.txt: 61074) -.nuggad.net/rc\?nuggn= -# @@||nuggad.net/rc?nuggn=$script,domain=ekstrabladet.dk (easylist.txt: 50589) -.nuggad.net/rc\?nuggn= - -#ab2p-unblock-dnt-R1146 -{+client-header-tagger{ab2p-unblock-dnt-R1146} \ -} -# @@||ads.us.e-planning.net^*&ma=*&vv=$object-subrequest,domain=elcomercio.pe (easylistchina+easylist.txt: 60953) -.ads.us.e-planning.net/.*&ma=.*&vv= -# @@||ads.us.e-planning.net^*&ma=*&vv=$object-subrequest,domain=elcomercio.pe (easylist.txt: 50468) -.ads.us.e-planning.net/.*&ma=.*&vv= - -#ab2p-unblock-dnt-R1147 -{+client-header-tagger{ab2p-unblock-dnt-R1147} \ -} -# @@||s1emagst.akamaized.net/openx/*.jpg$domain=emag.hu (easylistchina+easylist.txt: 61105) -.s1emagst.akamaized.net/openx/.*\.jpg -# @@||s1emagst.akamaized.net/openx/*.jpg$domain=emag.hu (easylist.txt: 50620) -.s1emagst.akamaized.net/openx/.*\.jpg - -#ab2p-unblock-dnt-R1148 -{+client-header-tagger{ab2p-unblock-dnt-R1148} \ -} -# @@||emagst.net/openx/$image,domain=emag.hu|emag.ro (easylistchina+easylist.txt: 61011) -.emagst.net/openx/ -# @@||emagst.net/openx/$image,domain=emag.hu|emag.ro (easylist.txt: 50526) -.emagst.net/openx/ - -#ab2p-unblock-dnt-R1149 -{+client-header-tagger{ab2p-unblock-dnt-R1149} \ -} -# @@||adfox.yandex.ru^$object-subrequest,domain=embed.life.ru (advblock.txt: 7551) -.adfox.yandex.ru - -#ab2p-unblock-dnt-R1150 -{+client-header-tagger{ab2p-unblock-dnt-R1150} \ -} -# @@||empik.ua/openx/www/delivery/ajs.php?$domain=empik.ua (advblock.txt: 7291) -.empik.ua/openx/www/delivery/ajs\.php\? - -#ab2p-unblock-dnt-R1151 -{+client-header-tagger{ab2p-unblock-dnt-R1151} \ -} -# @@||adsonar.com/js/aslJSON.js$domain=engadget.com (easylistchina+easylist.txt: 58308) -.adsonar.com/js/aslJSON\.js -# @@||adsonar.com/js/aslJSON.js$domain=engadget.com (easylist.txt: 47823) -.adsonar.com/js/aslJSON\.js - -#ab2p-unblock-dnt-R1152 -{+client-header-tagger{ab2p-unblock-dnt-R1152} \ -} -# @@||openx.ideastudios.ro^$script,domain=enjoydressup.com (easylistchina+easylist.txt: 59299) -.openx.ideastudios.ro -# @@||openx.ideastudios.ro^$script,domain=enjoydressup.com (easylist.txt: 48814) -.openx.ideastudios.ro - -#ab2p-unblock-dnt-R1153 -{+client-header-tagger{ab2p-unblock-dnt-R1153} \ -} -# @@||mythings.com/c.aspx?atok$domain=enter.ru (easylistchina+easylist.txt: 59219) -.mythings.com/c\.aspx\?atok -# @@||mythings.com/c.aspx?atok$domain=enter.ru (easylist.txt: 48734) -.mythings.com/c\.aspx\?atok - -#ab2p-unblock-dnt-R1154 -{+client-header-tagger{ab2p-unblock-dnt-R1154} \ -} -# @@||adserver.adtech.de/?adrawdata/3.0/$script,domain=entertainment.ie (easylistchina+easylist.txt: 60024) -.adserver.adtech.de/\?adrawdata/3\.0/ -# @@||adserver.adtech.de/?adrawdata/3.0/$script,domain=entertainment.ie (easylist.txt: 49539) -.adserver.adtech.de/\?adrawdata/3\.0/ - -#ab2p-unblock-dnt-R1155 -{+client-header-tagger{ab2p-unblock-dnt-R1155} \ -} -# @@||ads1.msn.com/library/dap.js$domain=entertainment.msn.co.nz|msn.foxsports.com (easylistchina+easylist.txt: 58282) -.ads1.msn.com/library/dap\.js -# @@||ads1.msn.com/library/dap.js$domain=entertainment.msn.co.nz|msn.foxsports.com (easylist.txt: 47797) -.ads1.msn.com/library/dap\.js - -#ab2p-unblock-dnt-R1156 -{+client-header-tagger{ab2p-unblock-dnt-R1156} \ -} -# @@||ad4game.com/www/delivery/video.php?zoneid=$script,domain=escapefan.com (easylistchina+easylist.txt: 58176) -.ad4game.com/www/delivery/video\.php\?zoneid= -# @@||ad4game.com/ima3_preloader_*.swf$object,domain=escapefan.com (easylistchina+easylist.txt: 58175) -.ad4game.com/ima3_preloader_.*\.swf -# @@||ad4game.com/www/delivery/video.php?zoneid=$script,domain=escapefan.com (easylist.txt: 47691) -.ad4game.com/www/delivery/video\.php\?zoneid= -# @@||ad4game.com/ima3_preloader_*.swf$object,domain=escapefan.com (easylist.txt: 47690) -.ad4game.com/ima3_preloader_.*\.swf - -#ab2p-unblock-dnt-R1157 -{+client-header-tagger{ab2p-unblock-dnt-R1157} \ -} -# @@||sascdn.com/video/$script,domain=eskago.pl (easylistchina+easylist.txt: 60717) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/$script,domain=eskago.pl (easylistchina+easylist.txt: 60716) -.sascdn.com/diff/video/ -# @@||sascdn.com/video/$script,domain=eskago.pl (easylist.txt: 50232) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/$script,domain=eskago.pl (easylist.txt: 50231) -.sascdn.com/diff/video/ - -#ab2p-unblock-dnt-R1158 -{+client-header-tagger{ab2p-unblock-dnt-R1158} \ -} -# @@||doubleclick.net/adx/es.esmas.videonot_embed/$script,domain=esmas.com (easylistchina+easylist.txt: 61005) -.doubleclick.net/adx/es\.esmas\.videonot_embed/ -# @@||doubleclick.net/adx/es.esmas.videonot_embed/$script,domain=esmas.com (easylist.txt: 50520) -.doubleclick.net/adx/es\.esmas\.videonot_embed/ - -#ab2p-unblock-dnt-R1159 -{+client-header-tagger{ab2p-unblock-dnt-R1159} \ -} -# @@||edgesuite.net/ads/$object-subrequest,domain=espn.go.com (easylistchina+easylist.txt: 60246) -.edgesuite.net/ads/ -# @@||espncdn.com/combiner/c?*/ads.css$domain=espn.go.com (easylistchina+easylist.txt: 58794) -.espncdn.com/combiner/c\?.*/ads\.css -# @@||espncdn.com/combiner/*/admgr.$script,domain=espn.go.com (easylistchina+easylist.txt: 58793) -.espncdn.com/combiner/.*/admgr\. -# @@||edgesuite.net/ads/$object-subrequest,domain=espn.go.com (easylist.txt: 49761) -.edgesuite.net/ads/ -# @@||espncdn.com/combiner/c?*/ads.css$domain=espn.go.com (easylist.txt: 48309) -.espncdn.com/combiner/c\?.*/ads\.css -# @@||espncdn.com/combiner/*/admgr.$script,domain=espn.go.com (easylist.txt: 48308) -.espncdn.com/combiner/.*/admgr\. - -#ab2p-unblock-dnt-R1160 -{+client-header-tagger{ab2p-unblock-dnt-R1160} \ -} -# @@||img.espngp.com/ads/$image,domain=espnf1.com (easylistchina+easylist.txt: 58993) -.img.espngp.com/ads/ -# @@||espngp.com/ads/*_sprite$domain=espnf1.com (easylistchina+easylist.txt: 58796) -.espngp.com/ads/.*_sprite -# @@||img.espngp.com/ads/$image,domain=espnf1.com (easylist.txt: 48508) -.img.espngp.com/ads/ -# @@||espngp.com/ads/*_sprite$domain=espnf1.com (easylist.txt: 48311) -.espngp.com/ads/.*_sprite - -#ab2p-unblock-dnt-R1161 -{+client-header-tagger{ab2p-unblock-dnt-R1161} \ -} -# @@||espncdn.com/combiner/c?*/advertising.$stylesheet,domain=espnfc.com (easylistchina+easylist.txt: 58795) -.espncdn.com/combiner/c\?.*/advertising\. -# @@||espncdn.com/combiner/c?*/advertising.$stylesheet,domain=espnfc.com (easylist.txt: 48310) -.espncdn.com/combiner/c\?.*/advertising\. - -#ab2p-unblock-dnt-R1162 -{+client-header-tagger{ab2p-unblock-dnt-R1162} \ -} -# @@||etsystatic.com^*_760x100.$domain=etsy.com (easylistchina+easylist.txt: 61329) -.etsystatic.com/.*_760x100\. -# @@||etsystatic.com^*_760x100.$domain=etsy.com (easylist.txt: 50844) -.etsystatic.com/.*_760x100\. - -#ab2p-unblock-dnt-R1163 -{+client-header-tagger{ab2p-unblock-dnt-R1163} \ -} -# @@||adwolf.ru^$image,script,domain=europaplus.ru|retrofm.ru (advblock.txt: 7255) -.adwolf.ru - -#ab2p-unblock-dnt-R1164 -{+client-header-tagger{ab2p-unblock-dnt-R1164} \ -} -# @@||imp*.tradedoubler.com/imp?type(js)$script,domain=europe-airports.com (easylistchina+easylist.txt: 59002) -.imp*./.*\.tradedoubler\.com/imp\?type\(js\) -.imp*.tradedoubler.com/imp\?type\(js\) -# @@||imp*.tradedoubler.com/imp?type(js)$script,domain=europe-airports.com (easylist.txt: 48517) -.imp*./.*\.tradedoubler\.com/imp\?type\(js\) -.imp*.tradedoubler.com/imp\?type\(js\) - -#ab2p-unblock-dnt-R1165 -{+client-header-tagger{ab2p-unblock-dnt-R1165} \ -} -# @@||adserver.adtech.de/?advideo/*;vidas=pre_roll^$object-subrequest,domain=eurovisionsports.tv|talksport.co.uk|wrc.com (easylistchina+easylist.txt: 58289) -.adserver.adtech.de/\?advideo/.*;vidas=pre_roll[^\w%.-] -# @@||adserver.adtech.de/?advideo/*;vidas=pre_roll^$object-subrequest,domain=eurovisionsports.tv|talksport.co.uk|wrc.com (easylist.txt: 47804) -.adserver.adtech.de/\?advideo/.*;vidas=pre_roll[^\w%.-] - -#ab2p-unblock-dnt-R1166 -{+client-header-tagger{ab2p-unblock-dnt-R1166} \ -} -# @@||yolohobo.us^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60914) -.yolohobo.us -# @@||rctrails.com^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60692) -.rctrails.com -# @@||infineoncorp.com^$domain=eventhubs.com (easylistchina+easylist.txt: 60416) -.infineoncorp.com -# @@||doubleclick.net/adj/gn.eventhubs.com/*;sz=728x90;$script,domain=eventhubs.com (easylistchina+easylist.txt: 60228) -.doubleclick.net/adj/gn\.eventhubs\.com/.*;sz=728x90; -# @@||dinglydangly.com^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60213) -.dinglydangly.com -# @@|http://$script,third-party,domain=eventhubs.com (easylistchina+easylist.txt: 59942) -# @@||yolohobo.us^$script,domain=eventhubs.com (easylist.txt: 50429) -.yolohobo.us -# @@||rctrails.com^$script,domain=eventhubs.com (easylist.txt: 50207) -.rctrails.com -# @@||infineoncorp.com^$domain=eventhubs.com (easylist.txt: 49931) -.infineoncorp.com -# @@||doubleclick.net/adj/gn.eventhubs.com/*;sz=728x90;$script,domain=eventhubs.com (easylist.txt: 49743) -.doubleclick.net/adj/gn\.eventhubs\.com/.*;sz=728x90; -# @@||dinglydangly.com^$script,domain=eventhubs.com (easylist.txt: 49728) -.dinglydangly.com -# @@|http://$script,third-party,domain=eventhubs.com (easylist.txt: 49457) - -#ab2p-unblock-dnt-R1167 -{+client-header-tagger{ab2p-unblock-dnt-R1167} \ -} -# @@||ads.lzjl.com/newserving/showad.php$domain=everythingon.tv (easylistchina+easylist.txt: 60013) -.ads.lzjl.com/newserving/showad\.php -# @@||ads.lzjl.com/newserving/showad.php$domain=everythingon.tv (easylist.txt: 49528) -.ads.lzjl.com/newserving/showad\.php - -#ab2p-unblock-dnt-R1168 -{+client-header-tagger{ab2p-unblock-dnt-R1168} \ -} -# @@/advertisement.js$domain=evrl.to|kinomoov.net|megogo.net|online.ua|only-paper.ru|raketa-tv.com|seriatv.ru|torrent-tv.ru|uakino.net|ualinux.com|褌械锌谢芯褉邪褋褔械褌.褉褎 (advblock.txt: 7530) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-dnt-R1169 -{+client-header-tagger{ab2p-unblock-dnt-R1169} \ -} -# @@||chitika.com^*/search-button.png?$domain=exashare.com (easylistchina+easylist.txt: 60154) -.chitika.com/.*/search-button\.png\? -# @@||chitika.com^*/search-button.png?$domain=exashare.com (easylist.txt: 49669) -.chitika.com/.*/search-button\.png\? - -#ab2p-unblock-dnt-R1170 -{+client-header-tagger{ab2p-unblock-dnt-R1170} \ -} -# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina+easylist.txt: 10202) -.cbjs.baidu.com - -#ab2p-unblock-dnt-R1171 -{+client-header-tagger{ab2p-unblock-dnt-R1171} \ -} -# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina+easylist.txt: 10192) -.cb.baidu.com/ecom\?di= - -#ab2p-unblock-dnt-R1172 -{+client-header-tagger{ab2p-unblock-dnt-R1172} \ -} -# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina+easylist.txt: 10399) -.ubmcmm.baidustatic.com - -#ab2p-unblock-dnt-R1173 -{+client-header-tagger{ab2p-unblock-dnt-R1173} \ -} -# @@/img/ad/*$domain=exp.qq.com (easylistchina+easylist.txt: 10044) -/(.*/)?img/ad/.* - -#ab2p-unblock-dnt-R1174 -{+client-header-tagger{ab2p-unblock-dnt-R1174} \ -} -# @@||ads.expedia.com/event.ng/type=click&$domain=expedia.com (easylistchina+easylist.txt: 58231) -.ads.expedia.com/event\.ng/type=click& -# @@||ads.expedia.com/event.ng/type=click&$domain=expedia.com (easylist.txt: 47746) -.ads.expedia.com/event\.ng/type=click& - -#ab2p-unblock-dnt-R1175 -{+client-header-tagger{ab2p-unblock-dnt-R1175} \ -} -# @@||expdash.adtlgc.com^$xmlhttprequest,domain=expressen.se (easylistchina+easylist.txt: 61019) -.expdash.adtlgc.com -# @@||expdash.adtlgc.com^$xmlhttprequest,domain=expressen.se (easylist.txt: 50534) -.expdash.adtlgc.com - -#ab2p-unblock-dnt-R1176 -{+client-header-tagger{ab2p-unblock-dnt-R1176} \ -} -# @@||poponclick.com/pp800x600.js?id=$domain=exrapidleech.info (easylistchina+easylist.txt: 60658) -.poponclick.com/pp800x600\.js\?id= -# @@||poponclick.com/pp800x600.js?id=$domain=exrapidleech.info (easylist.txt: 50173) -.poponclick.com/pp800x600\.js\?id= - #ab2p-unblock-dnt-R197 {+client-header-tagger{ab2p-unblock-dnt-R197} \ } -# @@||ziffprod.com/cse/$script,domain=extremetech.com (easylistchina+easylist.txt: 45852) -.ziffprod.com/cse/ -# @@||googletagservices.com/tag/js/gpt.js$domain=extremetech.com (easylistchina+easylist.txt: 45851) -.googletagservices.com/tag/js/gpt\.js -# @@||disquscdn.com^$script,domain=extremetech.com (easylistchina+easylist.txt: 45850) -.disquscdn.com -# @@||disqus.com^$script,domain=extremetech.com (easylistchina+easylist.txt: 45849) -.disqus.com -# @@||connect.facebook.net^$third-party,domain=extremetech.com (easylistchina+easylist.txt: 45848) -.connect.facebook.net -# @@||apis.google.com^$third-party,domain=extremetech.com (easylistchina+easylist.txt: 45847) -.apis.google.com -# @@||ziffprod.com/cse/$script,domain=extremetech.com (easylist.txt: 35367) -.ziffprod.com/cse/ -# @@||googletagservices.com/tag/js/gpt.js$domain=extremetech.com (easylist.txt: 35366) -.googletagservices.com/tag/js/gpt\.js -# @@||disquscdn.com^$script,domain=extremetech.com (easylist.txt: 35365) -.disquscdn.com -# @@||disqus.com^$script,domain=extremetech.com (easylist.txt: 35364) -.disqus.com -# @@||connect.facebook.net^$third-party,domain=extremetech.com (easylist.txt: 35363) -.connect.facebook.net -# @@||apis.google.com^$third-party,domain=extremetech.com (easylist.txt: 35362) -.apis.google.com +# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina.txt: 10066) +.127.0.0.1/admin/admin_ad\.php\? -#ab2p-unblock-dnt-R1177 -{+client-header-tagger{ab2p-unblock-dnt-R1177} \ +#ab2p-unblock-dnt-R198 +{+client-header-tagger{ab2p-unblock-dnt-R198} \ } -# @@||extremetubemate.com/?AFNO=$popup,domain=extremetube.com (easylistchina+easylist.txt: 61793) -.extremetubemate.com/\?AFNO= -# @@||extremetubefreehd.com^*.Extreme_HeaderTab&$popup,domain=extremetube.com (easylistchina+easylist.txt: 61792) -.extremetubefreehd.com/.*\.Extreme_HeaderTab& -# @@||extremetubemate.com/?AFNO=$popup,domain=extremetube.com (easylist.txt: 51308) -.extremetubemate.com/\?AFNO= -# @@||extremetubefreehd.com^*.Extreme_HeaderTab&$popup,domain=extremetube.com (easylist.txt: 51307) -.extremetubefreehd.com/.*\.Extreme_HeaderTab& +# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 10017) +/(.*/)?css/ad\. +# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 9978) +/(.*/)?168logo\.gif +168logo.gif*. -#ab2p-unblock-dnt-R1178 -{+client-header-tagger{ab2p-unblock-dnt-R1178} \ +#ab2p-unblock-dnt-R199 +{+client-header-tagger{ab2p-unblock-dnt-R199} \ } -# @@||as.sexad.net^*?p=*&v=$popup,domain=extremetube.com|keezmovies.com|pornhub.com|redtube.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61790) -.as.sexad.net/.*\?p=.*&v= -# @@||as.sexad.net^*?p=*&v=$popup,domain=extremetube.com|keezmovies.com|pornhub.com|redtube.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylist.txt: 51305) -.as.sexad.net/.*\?p=.*&v= +# @@/cms/ads/*$domain=17.com (easylistchina.txt: 10014) +/(.*/)?cms/ads/.* -#ab2p-unblock-dnt-R1179 -{+client-header-tagger{ab2p-unblock-dnt-R1179} \ +#ab2p-unblock-dnt-R200 +{+client-header-tagger{ab2p-unblock-dnt-R200} \ } -# @@||wmtrafficentry.com/cgi-bin/ewm.cgi/*_HeaderTab?$popup,domain=extremetube.com|spankwire.com (easylistchina+easylist.txt: 61806) -.wmtrafficentry.com/cgi-bin/ewm\.cgi/.*_HeaderTab\? -# @@||securejoinsite.com/loader.php?*_HeaderTab&$popup,domain=extremetube.com|spankwire.com (easylistchina+easylist.txt: 61799) -.securejoinsite.com/loader\.php\?.*_HeaderTab& -# @@||wmtrafficentry.com/cgi-bin/ewm.cgi/*_HeaderTab?$popup,domain=extremetube.com|spankwire.com (easylist.txt: 51321) -.wmtrafficentry.com/cgi-bin/ewm\.cgi/.*_HeaderTab\? -# @@||securejoinsite.com/loader.php?*_HeaderTab&$popup,domain=extremetube.com|spankwire.com (easylist.txt: 51314) -.securejoinsite.com/loader\.php\?.*_HeaderTab& +# @@/ads/*$domain=189.cn (easylistchina.txt: 9994) +/(.*/)?ads/.* -#ab2p-unblock-dnt-R1180 -{+client-header-tagger{ab2p-unblock-dnt-R1180} \ +#ab2p-unblock-dnt-R201 +{+client-header-tagger{ab2p-unblock-dnt-R201} \ } -# @@||ezone.com/banners/swfs/$object,domain=ezone.com (easylistchina+easylist.txt: 58811) -.ezone.com/banners/swfs/ -# @@||ezone.com/banners/swfs/$object,domain=ezone.com (easylist.txt: 48326) -.ezone.com/banners/swfs/ +# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina.txt: 10033) +/(.*/)?pop\.js$ +pop.js #ab2p-unblock-dnt-R202 {+client-header-tagger{ab2p-unblock-dnt-R202} \ } -# @@||fbexternal-a.akamaihd.net/safe_image.php?$image,domain=facebook.com (easylistchina+easylist.txt: 58816) -.fbexternal-a.akamaihd.net/safe_image\.php\? -# @@||affiliates.mozilla.org^$subdocument,domain=facebook.com (easylistchina+easylist.txt: 58360) -.affiliates.mozilla.org -# @@||fbexternal-a.akamaihd.net/safe_image.php?$image,domain=facebook.com (easylist.txt: 48331) -.fbexternal-a.akamaihd.net/safe_image\.php\? -# @@||affiliates.mozilla.org^$subdocument,domain=facebook.com (easylist.txt: 47875) -.affiliates.mozilla.org +# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina.txt: 10022) +/(.*/)?ima/.*ad\. -#ab2p-unblock-dnt-R1181 -{+client-header-tagger{ab2p-unblock-dnt-R1181} \ +#ab2p-unblock-dnt-R203 +{+client-header-tagger{ab2p-unblock-dnt-R203} \ } -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fpagead%2Fconversion.js$xmlhttprequest,domain=factom.org (easylistchina+easylist.txt: 58104) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fpagead%2Fconversion\.js -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fpagead%2Fconversion.js$xmlhttprequest,domain=factom.org (easylist.txt: 47619) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fpagead%2Fconversion\.js +# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina.txt: 9968) +/.*&adurl=http:// -#ab2p-unblock-dnt-R1182 -{+client-header-tagger{ab2p-unblock-dnt-R1182} \ +#ab2p-unblock-dnt-R204 +{+client-header-tagger{ab2p-unblock-dnt-R204} \ } -# @@||advertise.fairfaxmedia.com.au^$domain=fairfaxmedia.com.au|myfairfax.com.au (easylistchina+easylist.txt: 58332) -.advertise.fairfaxmedia.com.au -# @@||advertise.fairfaxmedia.com.au^$domain=fairfaxmedia.com.au|myfairfax.com.au (easylist.txt: 47847) -.advertise.fairfaxmedia.com.au +# @@/assets/adv/*$domain=4008927927.cn (easylistchina.txt: 10012) +/(.*/)?assets/adv/.* -#ab2p-unblock-dnt-R1183 -{+client-header-tagger{ab2p-unblock-dnt-R1183} \ +#ab2p-unblock-dnt-R205 +{+client-header-tagger{ab2p-unblock-dnt-R205} \ } -# @@||ads.ehealthcaresolutions.com/tag/$domain=familydoctor.org (easylistchina+easylist.txt: 58229) -.ads.ehealthcaresolutions.com/tag/ -# @@||ads.ehealthcaresolutions.com/tag/$domain=familydoctor.org (easylist.txt: 47744) -.ads.ehealthcaresolutions.com/tag/ +# @@||5060.com^$elemhide,domain=5060.com (easylistchina.txt: 10085) +.5060.com -#ab2p-unblock-dnt-R1184 -{+client-header-tagger{ab2p-unblock-dnt-R1184} \ +#ab2p-unblock-dnt-R206 +{+client-header-tagger{ab2p-unblock-dnt-R206} \ } -# @@||app.medyanetads.com/ad.js$domain=fanatik.com.tr (easylistchina+easylist.txt: 60981) -.app.medyanetads.com/ad\.js -# @@||app.medyanetads.com/ad.js$domain=fanatik.com.tr (easylist.txt: 50496) -.app.medyanetads.com/ad\.js +# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina.txt: 10198) +.cpro.baidu.com/cpro/ui/c\.js -#ab2p-unblock-dnt-R1185 -{+client-header-tagger{ab2p-unblock-dnt-R1185} \ +#ab2p-unblock-dnt-R207 +{+client-header-tagger{ab2p-unblock-dnt-R207} \ } -# @@||offerpalads.com^*/opmbanner.js$domain=farmville.com (easylistchina+easylist.txt: 59290) -.offerpalads.com/.*/opmbanner\.js -# @@||offerpalads.com^*/opmbanner.js$domain=farmville.com (easylist.txt: 48805) -.offerpalads.com/.*/opmbanner\.js +# @@||5i5j.*/images/ad$domain=5i5j.com (easylistchina.txt: 10093) +.5i5j.*./(.*/)?images/ad -#ab2p-unblock-dnt-R1186 -{+client-header-tagger{ab2p-unblock-dnt-R1186} \ +#ab2p-unblock-dnt-R208 +{+client-header-tagger{ab2p-unblock-dnt-R208} \ } -# @@||tvzavr.ru^*^autoplay=0$domain=fastpic.ru (advblock.txt: 7416) -.tvzavr.ru/.*[^\w%.-]autoplay=0 +# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina.txt: 10184) +.cbjs.baidu.com/js/o\.js -#ab2p-unblock-dnt-R1187 -{+client-header-tagger{ab2p-unblock-dnt-R1187} \ +#ab2p-unblock-dnt-R209 +{+client-header-tagger{ab2p-unblock-dnt-R209} \ } -# @@||epmads.com/js/show_ads_epmads.js$domain=fcportables.com (easylistchina+easylist.txt: 60254) -.epmads.com/js/show_ads_epmads\.js -# @@||epmads.com/ads?$subdocument,domain=fcportables.com (easylistchina+easylist.txt: 60253) -.epmads.com/ads\? -# @@||epmads.com/js/show_ads_epmads.js$domain=fcportables.com (easylist.txt: 49769) -.epmads.com/js/show_ads_epmads\.js -# @@||epmads.com/ads?$subdocument,domain=fcportables.com (easylist.txt: 49768) -.epmads.com/ads\? +# @@/common/cf/*$domain=66u.com|dataguru.cn|oneplusbbs.com|readboy.com (easylistchina.txt: 10016) +/(.*/)?common/cf/.* -#ab2p-unblock-dnt-R1188 -{+client-header-tagger{ab2p-unblock-dnt-R1188} \ +#ab2p-unblock-dnt-R210 +{+client-header-tagger{ab2p-unblock-dnt-R210} \ } -# @@||fest-ry.ru/*/images/ad$image,domain=fest-ry.ru (advblock.txt: 7298) -.fest-ry.ru/.*/images/ad +# @@/images/*/*.gif$domain=67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina.txt: 10023) +/(.*/)?images/.*/.*\.gif -#ab2p-unblock-dnt-R1189 -{+client-header-tagger{ab2p-unblock-dnt-R1189} \ +#ab2p-unblock-dnt-R211 +{+client-header-tagger{ab2p-unblock-dnt-R211} \ } -# @@/upload/bx/*$image,domain=ffan.ru|shop.kz|transbank.ru (advblock.txt: 7214) -/(.*/)?upload/bx/.* +# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina.txt: 10434) +/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ +/\.7k7k.com\/(?!(ad|load)) -#ab2p-unblock-dnt-R1190 -{+client-header-tagger{ab2p-unblock-dnt-R1190} \ +#ab2p-unblock-dnt-R212 +{+client-header-tagger{ab2p-unblock-dnt-R212} \ } -# @@||pagead2.googlesyndication.com/pagead/expansion_embed.js$domain=ffiles.com|full-ngage-games.blogspot.com|kingofgames.net|megaallday.com|ninjaraider.com|nonags.com|upfordown.com|wtf-teen.com (easylistchina+easylist.txt: 60622) -.pagead2.googlesyndication.com/pagead/expansion_embed\.js -# @@||pagead2.googlesyndication.com/pagead/expansion_embed.js$domain=ffiles.com|full-ngage-games.blogspot.com|kingofgames.net|megaallday.com|ninjaraider.com|nonags.com|upfordown.com|wtf-teen.com (easylist.txt: 50137) -.pagead2.googlesyndication.com/pagead/expansion_embed\.js +# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina.txt: 9981) +/(.*/)?ad_file/.* -#ab2p-unblock-dnt-R1191 -{+client-header-tagger{ab2p-unblock-dnt-R1191} \ +#ab2p-unblock-dnt-R213 +{+client-header-tagger{ab2p-unblock-dnt-R213} \ } -# @@||enrondev.net/ads/server/www/delivery/*&zoneid=1$subdocument,domain=filecore.co.nz (easylistchina+easylist.txt: 60249) -.enrondev.net/ads/server/www/delivery/.*&zoneid=1 -# @@||enrondev.net/ads/server/www/delivery/*&zoneid=1$subdocument,domain=filecore.co.nz (easylist.txt: 49764) -.enrondev.net/ads/server/www/delivery/.*&zoneid=1 +# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina.txt: 10287) +.l.qq.com/lview\? +# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina.txt: 10277) +.j.wit.qq.com/sc/crystal_ad\.js\? -#ab2p-unblock-dnt-R1192 -{+client-header-tagger{ab2p-unblock-dnt-R1192} \ +#ab2p-unblock-dnt-R214 +{+client-header-tagger{ab2p-unblock-dnt-R214} \ } -# @@||openx.net/w/$script,domain=fileover.net (easylistchina+easylist.txt: 60613) -.openx.net/w/ -# @@||ax-d.pixfuture.net/w/$script,domain=fileover.net (easylistchina+easylist.txt: 60093) -.ax-d.pixfuture.net/w/ -# @@||admeld.com/meld128.js$domain=fileover.net (easylistchina+easylist.txt: 59999) -.admeld.com/meld128\.js -# @@||admeld.com/ad/iframe/1122/pixfuture/300x250/$subdocument,domain=fileover.net (easylistchina+easylist.txt: 59998) -.admeld.com/ad/iframe/1122/pixfuture/300x250/ -# @@||openx.net/w/$script,domain=fileover.net (easylist.txt: 50128) -.openx.net/w/ -# @@||ax-d.pixfuture.net/w/$script,domain=fileover.net (easylist.txt: 49608) -.ax-d.pixfuture.net/w/ -# @@||admeld.com/meld128.js$domain=fileover.net (easylist.txt: 49514) -.admeld.com/meld128\.js -# @@||admeld.com/ad/iframe/1122/pixfuture/300x250/$subdocument,domain=fileover.net (easylist.txt: 49513) -.admeld.com/ad/iframe/1122/pixfuture/300x250/ +# @@/ad_images/*$domain=88box.com (easylistchina.txt: 9982) +/(.*/)?ad_images/.* -#ab2p-unblock-dnt-R1193 -{+client-header-tagger{ab2p-unblock-dnt-R1193} \ +#ab2p-unblock-dnt-R215 +{+client-header-tagger{ab2p-unblock-dnt-R215} \ } -# @@||pagead2.googlesyndication.com/simgad/25619783|$image,domain=filerev.cc (easylistchina+easylist.txt: 60632) -.pagead2.googlesyndication.com/simgad/25619783$ -# @@||calendrier.science^$script,domain=filerev.cc (easylistchina+easylist.txt: 60132) -.calendrier.science -# @@||pagead2.googlesyndication.com/simgad/25619783|$image,domain=filerev.cc (easylist.txt: 50147) -.pagead2.googlesyndication.com/simgad/25619783$ -# @@||calendrier.science^$script,domain=filerev.cc (easylist.txt: 49647) -.calendrier.science +# @@.com/ads/$domain=88boxjx.com (easylistchina.txt: 9973) +/.*\.com/ads/ +.*.com/ads/ + +#ab2p-unblock-dnt-R216 +{+client-header-tagger{ab2p-unblock-dnt-R216} \ +} +# @@/web/ads/*$domain=95516.com (easylistchina.txt: 10042) +/(.*/)?web/ads/.* #ab2p-unblock-dnt-R217 {+client-header-tagger{ab2p-unblock-dnt-R217} \ } -# @@||histats.com/*.js$domain=filmovizija.in (easylistchina+easylist.txt: 60381) -.histats.com/.*\.js -# @@||eosads.com/popunder.js$domain=filmovizija.in (easylistchina+easylist.txt: 60251) -.eosads.com/popunder\.js -# @@||adscale.de/getads.js$domain=filmovizija.in (easylistchina+easylist.txt: 60020) -.adscale.de/getads\.js -# @@||ads.exoclick.com/ads.js$domain=filmovizija.in (easylistchina+easylist.txt: 60011) -.ads.exoclick.com/ads\.js -# @@||188.165.28.32/advert*.js$domain=filmovizija.in (easylistchina+easylist.txt: 59962) -.188.165.28.32/advert.*\.js -# @@||176.31.95.144^$script,domain=filmovizija.in (easylistchina+easylist.txt: 59961) -.176.31.95.144 -# @@|http://*.*_$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 59944) -/.*\..*_ -.*.*./.*_ -# @@|http://*.*=$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 59943) -/.*\..*= -.*.*./.*= -# @@/advert*.js?$script,domain=filmovizija.in (easylistchina+easylist.txt: 59919) -/(.*/)?advert.*\.js\? -advert*./.*\.js\? -# @@||vk.com/share.php?$script,domain=filmovizija.in (easylistchina+easylist.txt: 45880) -.vk.com/share\.php\? -# @@||twitter.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45879) -.twitter.com -# @@||share.yandex.ru^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45878) -.share.yandex.ru -# @@||histats.com/stats/$script,domain=filmovizija.in (easylistchina+easylist.txt: 45877) -.histats.com/stats/ -# @@||feeds.delicious.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45876) -.feeds.delicious.com -# @@||facebook.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45875) -.facebook.com -# @@||api.pinterest.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45874) -.api.pinterest.com -# @@||histats.com/*.js$domain=filmovizija.in (easylist.txt: 49896) -.histats.com/.*\.js -# @@||eosads.com/popunder.js$domain=filmovizija.in (easylist.txt: 49766) -.eosads.com/popunder\.js -# @@||adscale.de/getads.js$domain=filmovizija.in (easylist.txt: 49535) -.adscale.de/getads\.js -# @@||ads.exoclick.com/ads.js$domain=filmovizija.in (easylist.txt: 49526) -.ads.exoclick.com/ads\.js -# @@||188.165.28.32/advert*.js$domain=filmovizija.in (easylist.txt: 49477) -.188.165.28.32/advert.*\.js -# @@||176.31.95.144^$script,domain=filmovizija.in (easylist.txt: 49476) -.176.31.95.144 -# @@|http://*.*_$script,third-party,domain=filmovizija.in (easylist.txt: 49459) -/.*\..*_ -.*.*./.*_ -# @@|http://*.*=$script,third-party,domain=filmovizija.in (easylist.txt: 49458) -/.*\..*= -.*.*./.*= -# @@/advert*.js?$script,domain=filmovizija.in (easylist.txt: 49434) -/(.*/)?advert.*\.js\? -advert*./.*\.js\? -# @@||vk.com/share.php?$script,domain=filmovizija.in (easylist.txt: 35395) -.vk.com/share\.php\? -# @@||twitter.com^$script,domain=filmovizija.in (easylist.txt: 35394) -.twitter.com -# @@||share.yandex.ru^$script,domain=filmovizija.in (easylist.txt: 35393) -.share.yandex.ru -# @@||histats.com/stats/$script,domain=filmovizija.in (easylist.txt: 35392) -.histats.com/stats/ -# @@||feeds.delicious.com^$script,domain=filmovizija.in (easylist.txt: 35391) -.feeds.delicious.com -# @@||facebook.com^$script,domain=filmovizija.in (easylist.txt: 35390) -.facebook.com -# @@||api.pinterest.com^$script,domain=filmovizija.in (easylist.txt: 35389) -.api.pinterest.com +# @@/images/ad/*$domain=9588.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|snh48.com|sozi.cn|tingbook.com (easylistchina.txt: 10025) +/(.*/)?images/ad/.* -#ab2p-unblock-dnt-R1194 -{+client-header-tagger{ab2p-unblock-dnt-R1194} \ +#ab2p-unblock-dnt-R218 +{+client-header-tagger{ab2p-unblock-dnt-R218} \ } -# @@||popads.net/pop.js$domain=filmovizija.in|go4up.com|hqq.tv|sizedrive.com (easylistchina+easylist.txt: 60657) -.popads.net/pop\.js -# @@||popads.net/pop.js$domain=filmovizija.in|go4up.com|hqq.tv|sizedrive.com (easylist.txt: 50172) -.popads.net/pop\.js +# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina.txt: 10326) +.pos.baidu.com/ecom\? -#ab2p-unblock-dnt-R1195 -{+client-header-tagger{ab2p-unblock-dnt-R1195} \ +#ab2p-unblock-dnt-R219 +{+client-header-tagger{ab2p-unblock-dnt-R219} \ } -# @@/banner.jpg?$image,domain=filmux.net (easylistchina+easylist.txt: 59924) -/(.*/)?banner\.jpg\? -# @@/banner.jpg?$image,domain=filmux.net (easylist.txt: 49439) -/(.*/)?banner\.jpg\? +# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina.txt: 10116) +.ad.alimama.com -#ab2p-unblock-dnt-R1196 -{+client-header-tagger{ab2p-unblock-dnt-R1196} \ +#ab2p-unblock-dnt-R220 +{+client-header-tagger{ab2p-unblock-dnt-R220} \ } -# @@||fwcdn.pl^$script,domain=filmweb.pl (easylistchina+easylist.txt: 60316) -.fwcdn.pl -# @@||fwcdn.pl^$script,domain=filmweb.pl (easylist.txt: 49831) -.fwcdn.pl - -#ab2p-unblock-dnt-R1197 -{+client-header-tagger{ab2p-unblock-dnt-R1197} \ -} -# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina+easylist.txt: 10371) -.sinaimg.cn/cj/deco/ - -#ab2p-unblock-dnt-R1198 -{+client-header-tagger{ab2p-unblock-dnt-R1198} \ -} -# @@||artxun.com^$domain=findart.com.cn (easylistchina+easylist.txt: 10174) -.artxun.com - -#ab2p-unblock-dnt-R1199 -{+client-header-tagger{ab2p-unblock-dnt-R1199} \ -} -# @@||pagead2.googlesyndication.com/pub-config/ca-pub-$script,domain=firstonetv.com (easylistchina+easylist.txt: 60630) -.pagead2.googlesyndication.com/pub-config/ca-pub- -# @@||firstonetv.com^$script,domain=firstonetv.com (easylistchina+easylist.txt: 60291) -.firstonetv.com -# @@||pagead2.googlesyndication.com/pub-config/ca-pub-$script,domain=firstonetv.com (easylist.txt: 50145) -.pagead2.googlesyndication.com/pub-config/ca-pub- -# @@||firstonetv.com^$script,domain=firstonetv.com (easylist.txt: 49806) -.firstonetv.com +# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina.txt: 10111) +.ad-specs.guoshipartners.com/static/js/isip\.js #ab2p-unblock-dnt-R221 {+client-header-tagger{ab2p-unblock-dnt-R221} \ } -# @@||adspynet.com/test?*&oin=0$script,domain=fishki.net (advblock.txt: 7623) -.adspynet.com/test\?.*&oin=0 -# @@||adspynet.com/code?*&oin=0&$script,domain=fishki.net (advblock.txt: 7622) -.adspynet.com/code\?.*&oin=0& +# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina.txt: 10272) +.inskinmedia.com/.*/js/base/api/ -#ab2p-unblock-dnt-R1200 -{+client-header-tagger{ab2p-unblock-dnt-R1200} \ +#ab2p-unblock-dnt-R222 +{+client-header-tagger{ab2p-unblock-dnt-R222} \ } -# @@||flumotion.com/play/player?*/300x250-$subdocument,domain=flaixfm.cat (easylistchina+easylist.txt: 61333) -.flumotion.com/play/player\?.*/300x250- -# @@||flumotion.com/play/player?*/300x250-$subdocument,domain=flaixfm.cat (easylist.txt: 50848) -.flumotion.com/play/player\?.*/300x250- +# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina.txt: 10426) +.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js -#ab2p-unblock-dnt-R1201 -{+client-header-tagger{ab2p-unblock-dnt-R1201} \ +#ab2p-unblock-dnt-R223 +{+client-header-tagger{ab2p-unblock-dnt-R223} \ } -# @@||flashgames247.com/advertising/ima-vast-preroll.swf$object,domain=flashgames247.com (easylistchina+easylist.txt: 58825) -.flashgames247.com/advertising/ima-vast-preroll\.swf -# @@||flashgames247.com/advertising/ima-vast-preroll.swf$object,domain=flashgames247.com (easylist.txt: 48340) -.flashgames247.com/advertising/ima-vast-preroll\.swf +# @@/adbanner/*$image,domain=books.com.tw (easylistchina.txt: 9983) +/(.*/)?adbanner/.* -#ab2p-unblock-dnt-R1202 -{+client-header-tagger{ab2p-unblock-dnt-R1202} \ +#ab2p-unblock-dnt-R224 +{+client-header-tagger{ab2p-unblock-dnt-R224} \ } -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoads.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylistchina+easylist.txt: 59332) -.pagead2.googlesyndication.com/pagead/scache/googlevideoads\.swf -# @@||pagead2.googlesyndication.com/pagead/googlevideoadslibrary.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylistchina+easylist.txt: 59328) -.pagead2.googlesyndication.com/pagead/googlevideoadslibrary\.swf -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoads.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylist.txt: 48847) -.pagead2.googlesyndication.com/pagead/scache/googlevideoads\.swf -# @@||pagead2.googlesyndication.com/pagead/googlevideoadslibrary.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylist.txt: 48843) -.pagead2.googlesyndication.com/pagead/googlevideoadslibrary\.swf +# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina.txt: 10091) +.58.com/ds/tgbrand/ -#ab2p-unblock-dnt-R1203 -{+client-header-tagger{ab2p-unblock-dnt-R1203} \ +#ab2p-unblock-dnt-R225 +{+client-header-tagger{ab2p-unblock-dnt-R225} \ } -# @@||ads.flipkart.com/delivery/ck.php?$popup,domain=flipkart.com (easylistchina+easylist.txt: 61396) -.ads.flipkart.com/delivery/ck\.php\? -# @@||ads.flipkart.com/delivery/ck.php?$popup,domain=flipkart.com (easylist.txt: 50911) -.ads.flipkart.com/delivery/ck\.php\? +# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina.txt: 10000) +/(.*/)?advert/.* -#ab2p-unblock-dnt-R1204 -{+client-header-tagger{ab2p-unblock-dnt-R1204} \ +#ab2p-unblock-dnt-R60 +{+client-header-tagger{ab2p-unblock-dnt-R60} \ } -# @@||e70123.com^$script,domain=flv.tv (easylistchina+easylist.txt: 10235) +# @@/sda/weixin$domain=chineseinla.com (easylistchina.txt: 10036) +/(.*/)?sda/weixin + +#ab2p-unblock-dnt-R226 +{+client-header-tagger{ab2p-unblock-dnt-R226} \ +} +# @@/adfile/*$domain=cidianwang.com (easylistchina.txt: 9986) +/(.*/)?adfile/.* + +#ab2p-unblock-dnt-R227 +{+client-header-tagger{ab2p-unblock-dnt-R227} \ +} +# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina.txt: 10321) +.pos.baidu.com/acom\?di= +# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina.txt: 10029) +/(.*/)?js/ad_test\.js + +#ab2p-unblock-dnt-R228 +{+client-header-tagger{ab2p-unblock-dnt-R228} \ +} +# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina.txt: 10183) +.cbjs.baidu.com/js/m\.js + +#ab2p-unblock-dnt-R229 +{+client-header-tagger{ab2p-unblock-dnt-R229} \ +} +# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina.txt: 10175) +.cb.baidu.com/ecom\? + +#ab2p-unblock-dnt-R230 +{+client-header-tagger{ab2p-unblock-dnt-R230} \ +} +# @@/adpic/*$domain=czsrc.com|nieyou.com (easylistchina.txt: 9993) +/(.*/)?adpic/.* + +#ab2p-unblock-dnt-R231 +{+client-header-tagger{ab2p-unblock-dnt-R231} \ +} +# @@||mediav.com^$domain=dev.360.cn (easylistchina.txt: 10293) +.mediav.com + +#ab2p-unblock-dnt-R232 +{+client-header-tagger{ab2p-unblock-dnt-R232} \ +} +# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina.txt: 10009) +/(.*/)?advs/.* + +#ab2p-unblock-dnt-R233 +{+client-header-tagger{ab2p-unblock-dnt-R233} \ +} +# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina.txt: 10314) +.pagead2.googlesyndication.com/pagead/show_ads\.js + +#ab2p-unblock-dnt-R234 +{+client-header-tagger{ab2p-unblock-dnt-R234} \ +} +# @@/adframe.$domain=dnvod.eu (easylistchina.txt: 9987) +/(.*/)?adframe\. +adframe.*. + +#ab2p-unblock-dnt-R235 +{+client-header-tagger{ab2p-unblock-dnt-R235} \ +} +# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina.txt: 10041) +/(.*/)?upload/ads/.*\.jpg + +#ab2p-unblock-dnt-R236 +{+client-header-tagger{ab2p-unblock-dnt-R236} \ +} +# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina.txt: 10054) +/(.*/)?AD/ + +#ab2p-unblock-dnt-R237 +{+client-header-tagger{ab2p-unblock-dnt-R237} \ +} +# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina.txt: 10186) +.cbjs.baidu.com + +#ab2p-unblock-dnt-R238 +{+client-header-tagger{ab2p-unblock-dnt-R238} \ +} +# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina.txt: 10176) +.cb.baidu.com/ecom\?di= + +#ab2p-unblock-dnt-R239 +{+client-header-tagger{ab2p-unblock-dnt-R239} \ +} +# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina.txt: 10387) +.ubmcmm.baidustatic.com + +#ab2p-unblock-dnt-R240 +{+client-header-tagger{ab2p-unblock-dnt-R240} \ +} +# @@/img/ad/*$domain=exp.qq.com (easylistchina.txt: 10026) +/(.*/)?img/ad/.* + +#ab2p-unblock-dnt-R241 +{+client-header-tagger{ab2p-unblock-dnt-R241} \ +} +# @@/advertisement.js$domain=fharr.com|gimhoy.com (easylistchina.txt: 10005) +/(.*/)?advertisement\.js +advertisement.js*. + +#ab2p-unblock-dnt-R242 +{+client-header-tagger{ab2p-unblock-dnt-R242} \ +} +# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina.txt: 10358) +.sinaimg.cn/cj/deco/ + +#ab2p-unblock-dnt-R243 +{+client-header-tagger{ab2p-unblock-dnt-R243} \ +} +# @@||artxun.com^$domain=findart.com.cn (easylistchina.txt: 10157) +.artxun.com + +#ab2p-unblock-dnt-R244 +{+client-header-tagger{ab2p-unblock-dnt-R244} \ +} +# @@||f70123.com^$script,domain=flv.tv (easylistchina.txt: 10233) +.f70123.com +# @@||e719.net^$script,domain=flv.tv (easylistchina.txt: 10222) +.e719.net +# @@||e70123.com^$script,domain=flv.tv (easylistchina.txt: 10221) .e70123.com -# @@||70e.com^$script,domain=flv.tv (easylistchina+easylist.txt: 10117) +# @@||e701.net^*=60&$subdocument,domain=flv.tv (easylistchina.txt: 10220) +.e701.net/.*=60& +# @@||e701.net^$script,domain=flv.tv (easylistchina.txt: 10219) +.e701.net +# @@||70e.com^$script,domain=flv.tv (easylistchina.txt: 10099) .70e.com -# @@=300&$subdocument,domain=flv.tv (easylistchina+easylist.txt: 10062) +# @@=300&$subdocument,domain=flv.tv (easylistchina.txt: 10044) /.*=300& -#ab2p-unblock-dnt-R1205 -{+client-header-tagger{ab2p-unblock-dnt-R1205} \ -} -# @@||fastclick.net/w/get.media?sid=58322&tp=5&$script,domain=flv2mp3.com (easylistchina+easylist.txt: 60270) -.fastclick.net/w/get\.media\?sid=58322&tp=5& -# @@||fastclick.net/w/get.media?sid=58322&tp=5&$script,domain=flv2mp3.com (easylist.txt: 49785) -.fastclick.net/w/get\.media\?sid=58322&tp=5& - -#ab2p-unblock-dnt-R1206 -{+client-header-tagger{ab2p-unblock-dnt-R1206} \ -} -# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina+easylist.txt: 10283) -.inte.sogou.com/ask\?id= -# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina+easylist.txt: 10277) -.images.sohu.com/cs/ - -#ab2p-unblock-dnt-R1207 -{+client-header-tagger{ab2p-unblock-dnt-R1207} \ -} -# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina+easylist.txt: 10284) -.itc.cn/public_photo/advert/ - -#ab2p-unblock-dnt-R1208 -{+client-header-tagger{ab2p-unblock-dnt-R1208} \ -} -# @@||adsremote.scrippsnetworks.com/js.ng/adtype=vsw$script,domain=food.com (easylistchina+easylist.txt: 58312) -.adsremote.scrippsnetworks.com/js\.ng/adtype=vsw -# @@||adsremote.scrippsnetworks.com/js.ng/adtype=vsw$script,domain=food.com (easylist.txt: 47827) -.adsremote.scrippsnetworks.com/js\.ng/adtype=vsw - -#ab2p-unblock-dnt-R1209 -{+client-header-tagger{ab2p-unblock-dnt-R1209} \ -} -# @@||adm.fwmrm.net^*/AdManager.js$domain=foodnetwork.com|msnbc.com|player.theplatform.com|sky.com (easylistchina+easylist.txt: 58203) -.adm.fwmrm.net/.*/AdManager\.js -# @@||adm.fwmrm.net^*/AdManager.js$domain=foodnetwork.com|msnbc.com|player.theplatform.com|sky.com (easylist.txt: 47718) -.adm.fwmrm.net/.*/AdManager\.js - -#ab2p-unblock-dnt-R1210 -{+client-header-tagger{ab2p-unblock-dnt-R1210} \ -} -# @@||foodzy.ru/i/b/$image,domain=foodzy.ru (advblock.txt: 7299) -.foodzy.ru/i/b/ - -#ab2p-unblock-dnt-R1211 -{+client-header-tagger{ab2p-unblock-dnt-R1211} \ -} -# @@||forbesimg.com/scripts/advertisement.js$domain=forbes.com (easylistchina+easylist.txt: 60300) -.forbesimg.com/scripts/advertisement\.js -# @@||rt.liftdna.com/forbes_welcome.js$domain=forbes.com (easylistchina+easylist.txt: 59474) -.rt.liftdna.com/forbes_welcome\.js -# @@||g.doubleclick.net/gampad/ads?*www.forbes.com%2Ffdc%2Fwelcome_mjx.shtml$script,domain=forbes.com (easylistchina+easylist.txt: 58852) -.g.doubleclick.net/gampad/ads\?.*www\.forbes\.com%2Ffdc%2Fwelcome_mjx\.shtml -# @@||forbesimg.com/assets/js/forbes/right_rail_sticky_ad.js$domain=forbes.com (easylistchina+easylist.txt: 58834) -.forbesimg.com/assets/js/forbes/right_rail_sticky_ad\.js -# @@||doubleclick.net^*/fdc.forbes/*;pos=thought;$script,domain=forbes.com (easylistchina+easylist.txt: 58732) -.doubleclick.net/.*/fdc\.forbes/.*;pos=thought; -# @@||ad.doubleclick.net/N7175/adj/fdc.forbes/welcome;id=fdc/welcome;pos=thoughtx;$script,domain=forbes.com (easylistchina+easylist.txt: 58159) -.ad.doubleclick.net/N7175/adj/fdc\.forbes/welcome;id=fdc/welcome;pos=thoughtx; -# @@||forbesimg.com/scripts/advertisement.js$domain=forbes.com (easylist.txt: 49815) -.forbesimg.com/scripts/advertisement\.js -# @@||rt.liftdna.com/forbes_welcome.js$domain=forbes.com (easylist.txt: 48989) -.rt.liftdna.com/forbes_welcome\.js -# @@||g.doubleclick.net/gampad/ads?*www.forbes.com%2Ffdc%2Fwelcome_mjx.shtml$script,domain=forbes.com (easylist.txt: 48367) -.g.doubleclick.net/gampad/ads\?.*www\.forbes\.com%2Ffdc%2Fwelcome_mjx\.shtml -# @@||forbesimg.com/assets/js/forbes/right_rail_sticky_ad.js$domain=forbes.com (easylist.txt: 48349) -.forbesimg.com/assets/js/forbes/right_rail_sticky_ad\.js -# @@||doubleclick.net^*/fdc.forbes/*;pos=thought;$script,domain=forbes.com (easylist.txt: 48247) -.doubleclick.net/.*/fdc\.forbes/.*;pos=thought; -# @@||ad.doubleclick.net/N7175/adj/fdc.forbes/welcome;id=fdc/welcome;pos=thoughtx;$script,domain=forbes.com (easylist.txt: 47674) -.ad.doubleclick.net/N7175/adj/fdc\.forbes/welcome;id=fdc/welcome;pos=thoughtx; - -#ab2p-unblock-dnt-R1212 -{+client-header-tagger{ab2p-unblock-dnt-R1212} \ -} -# @@||rt.liftdna.com/liftrtb2_2.js$domain=formspring.me (easylistchina+easylist.txt: 59476) -.rt.liftdna.com/liftrtb2_2\.js -# @@||rt.liftdna.com/fs.js$domain=formspring.me (easylistchina+easylist.txt: 59475) -.rt.liftdna.com/fs\.js -# @@||rt.liftdna.com/liftrtb2_2.js$domain=formspring.me (easylist.txt: 48991) -.rt.liftdna.com/liftrtb2_2\.js -# @@||rt.liftdna.com/fs.js$domain=formspring.me (easylist.txt: 48990) -.rt.liftdna.com/fs\.js - -#ab2p-unblock-dnt-R1213 -{+client-header-tagger{ab2p-unblock-dnt-R1213} \ -} -# @@||intellitxt.com/intellitxt/front.asp?ipid=$script,domain=forums.tweaktown.com (easylistchina+easylist.txt: 60425) -.intellitxt.com/intellitxt/front\.asp\?ipid= -# @@||intellitxt.com/intellitxt/front.asp?ipid=$script,domain=forums.tweaktown.com (easylist.txt: 49940) -.intellitxt.com/intellitxt/front\.asp\?ipid= - -#ab2p-unblock-dnt-R1214 -{+client-header-tagger{ab2p-unblock-dnt-R1214} \ -} -# @@||xboxlive.com/assets/*_banner_ad.$image,domain=forzamotorsport.net (easylistchina+easylist.txt: 59838) -.xboxlive.com/assets/.*_banner_ad\. -# @@||xboxlive.com/assets/*_banner_ad.$image,domain=forzamotorsport.net (easylist.txt: 49353) -.xboxlive.com/assets/.*_banner_ad\. - -#ab2p-unblock-dnt-R1215 -{+client-header-tagger{ab2p-unblock-dnt-R1215} \ -} -# @@||tapad.com/tapestry/tapestry-$script,domain=foxnews.com (easylistchina+easylist.txt: 59621) -.tapad.com/tapestry/tapestry- -# @@||tapad.com/tapestry/1?ta_partner_id=$script,domain=foxnews.com (easylistchina+easylist.txt: 59620) -.tapad.com/tapestry/1\?ta_partner_id= -# @@||fncstatic.com^*/fox411/fox-411-head-728x90.png$domain=foxnews.com (easylistchina+easylist.txt: 58832) -.fncstatic.com/.*/fox411/fox-411-head-728x90\.png -# @@||tapad.com/tapestry/tapestry-$script,domain=foxnews.com (easylist.txt: 49136) -.tapad.com/tapestry/tapestry- -# @@||tapad.com/tapestry/1?ta_partner_id=$script,domain=foxnews.com (easylist.txt: 49135) -.tapad.com/tapestry/1\?ta_partner_id= -# @@||fncstatic.com^*/fox411/fox-411-head-728x90.png$domain=foxnews.com (easylist.txt: 48347) -.fncstatic.com/.*/fox411/fox-411-head-728x90\.png - -#ab2p-unblock-dnt-R1216 -{+client-header-tagger{ab2p-unblock-dnt-R1216} \ -} -# @@||googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=free-send.ru|izzylaif.com|modfiles.ru|osettlers.com|trackitonline.ru (advblock.txt: 7571) -.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-dnt-R1217 -{+client-header-tagger{ab2p-unblock-dnt-R1217} \ -} -# @@||googlesyndication.com/pagead/js/adsbygoogle.js$domain=free-send.ru|modfiles.ru|osettlers.com (advblock.txt: 7572) -.googlesyndication.com/pagead/js/adsbygoogle\.js - -#ab2p-unblock-dnt-R1218 -{+client-header-tagger{ab2p-unblock-dnt-R1218} \ -} -# @@||cpalead.com/mygateway.php?pub=$script,domain=free-space.net|hxcmusic.com|hxcmusic.me|justfortrendygirls.com|mmusicz.com|receive-sms.com|runescapehack.net|spotifyripping.com|stumblehere.com|tvgorge.com|tvokay.com|videodownloadx.com|wtso.net (easylistchina+easylist.txt: 60184) -.cpalead.com/mygateway\.php\?pub= -# @@||cpalead.com/mygateway.php?pub=$script,domain=free-space.net|hxcmusic.com|hxcmusic.me|justfortrendygirls.com|mmusicz.com|receive-sms.com|runescapehack.net|spotifyripping.com|stumblehere.com|tvgorge.com|tvokay.com|videodownloadx.com|wtso.net (easylist.txt: 49699) -.cpalead.com/mygateway\.php\?pub= - -#ab2p-unblock-dnt-R1219 -{+client-header-tagger{ab2p-unblock-dnt-R1219} \ -} -# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina+easylist.txt: 10458) -/.*\.com%2Fanalytics\.js - -#ab2p-unblock-dnt-R1220 -{+client-header-tagger{ab2p-unblock-dnt-R1220} \ -} -# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina+easylist.txt: 10029) -/(.*/)?bag2\?r\[\]=.*&r\[\]= - -#ab2p-unblock-dnt-R1221 -{+client-header-tagger{ab2p-unblock-dnt-R1221} \ -} -# @@||urdupoint.googlecode.com/files/advertisement.js$domain=free.smsmarkaz.urdupoint.com (easylistchina+easylist.txt: 60847) -.urdupoint.googlecode.com/files/advertisement\.js -# @@||urdupoint.googlecode.com/files/advertisement.js$domain=free.smsmarkaz.urdupoint.com (easylist.txt: 50362) -.urdupoint.googlecode.com/files/advertisement\.js - -#ab2p-unblock-dnt-R1222 -{+client-header-tagger{ab2p-unblock-dnt-R1222} \ -} -# @@||googlecode.com^*/advertisement.js$domain=freeallmusic.net (easylistchina+easylist.txt: 60364) -.googlecode.com/.*/advertisement\.js -# @@||googlecode.com^*/advertisement.js$domain=freeallmusic.net (easylist.txt: 49879) -.googlecode.com/.*/advertisement\.js - -#ab2p-unblock-dnt-R1223 -{+client-header-tagger{ab2p-unblock-dnt-R1223} \ -} -# @@||cpalead.com/gwjs.php?pub=$script,domain=freebitcoinz.com|youserials.com (easylistchina+easylist.txt: 60183) -.cpalead.com/gwjs\.php\?pub= -# @@||cpalead.com/gwjs.php?pub=$script,domain=freebitcoinz.com|youserials.com (easylist.txt: 49698) -.cpalead.com/gwjs\.php\?pub= - -#ab2p-unblock-dnt-R1224 -{+client-header-tagger{ab2p-unblock-dnt-R1224} \ -} -# @@||f-cdn.com/build/js/ads/main.js?$domain=freelancer.com (easylistchina+easylist.txt: 58812) -.f-cdn.com/build/js/ads/main\.js\? -# @@||f-cdn.com/build/js/ads/main.js?$domain=freelancer.com (easylist.txt: 48327) -.f-cdn.com/build/js/ads/main\.js\? - -#ab2p-unblock-dnt-R1225 -{+client-header-tagger{ab2p-unblock-dnt-R1225} \ -} -# @@||ad.doubleclick.net/clk;*?https://dm.victoriassecret.com/product/$image,domain=freeshipping.com (easylistchina+easylist.txt: 58158) -.ad.doubleclick.net/clk;.*\?https://dm\.victoriassecret\.com/product/ -# @@||ad.doubleclick.net/clk;*?https://dm.victoriassecret.com/product/$image,domain=freeshipping.com (easylist.txt: 47673) -.ad.doubleclick.net/clk;.*\?https://dm\.victoriassecret\.com/product/ - -#ab2p-unblock-dnt-R1226 -{+client-header-tagger{ab2p-unblock-dnt-R1226} \ -} -# @@||epicgameads.com/games/mec_release_*.swf?$object-subrequest,domain=freewebarcade.com (easylistchina+easylist.txt: 58787) -.epicgameads.com/games/mec_release_.*\.swf\? -# @@||epicgameads.com/games/getSwfPath.php?$object-subrequest,domain=freewebarcade.com (easylistchina+easylist.txt: 58786) -.epicgameads.com/games/getSwfPath\.php\? -# @@||epicgameads.com/games/mec_release_*.swf?$object-subrequest,domain=freewebarcade.com (easylist.txt: 48302) -.epicgameads.com/games/mec_release_.*\.swf\? -# @@||epicgameads.com/games/getSwfPath.php?$object-subrequest,domain=freewebarcade.com (easylist.txt: 48301) -.epicgameads.com/games/getSwfPath\.php\? - -#ab2p-unblock-dnt-R1227 -{+client-header-tagger{ab2p-unblock-dnt-R1227} \ -} -# @@||freeworldgroup.com/googleloader/GoogleAds.swf?contentId=FWG_Game_PreLoader&$object,domain=freeworldgroup.com (easylistchina+easylist.txt: 58844) -.freeworldgroup.com/googleloader/GoogleAds\.swf\?contentId=FWG_Game_PreLoader& -# @@||freeworldgroup.com/googleloader/GoogleAds.swf?contentId=FWG_Game_PreLoader&$object,domain=freeworldgroup.com (easylist.txt: 48359) -.freeworldgroup.com/googleloader/GoogleAds\.swf\?contentId=FWG_Game_PreLoader& - -#ab2p-unblock-dnt-R1228 -{+client-header-tagger{ab2p-unblock-dnt-R1228} \ -} -# @@||fresh-book.ru/uploads/banners/$image,domain=fresh-book.ru (advblock.txt: 7300) -.fresh-book.ru/uploads/banners/ - -#ab2p-unblock-dnt-R1229 -{+client-header-tagger{ab2p-unblock-dnt-R1229} \ -} -# @@||dotua.org/js/ads.js|$script,domain=fs.to (advblock.txt: 7563) -.dotua.org/js/ads\.js$ - -#ab2p-unblock-dnt-R1230 -{+client-header-tagger{ab2p-unblock-dnt-R1230} \ -} -# @@||doubleclick.net^*/ftcom.*;sz=1x1;*;pos=refresh;$script,domain=ft.com (easylistchina+easylist.txt: 58733) -.doubleclick.net/.*/ftcom\..*;sz=1x1;.*;pos=refresh; -# @@||doubleclick.net^*/ftcom.*;sz=1x1;*;pos=refresh;$script,domain=ft.com (easylist.txt: 48248) -.doubleclick.net/.*/ftcom\..*;sz=1x1;.*;pos=refresh; - -#ab2p-unblock-dnt-R1231 -{+client-header-tagger{ab2p-unblock-dnt-R1231} \ -} -# @@.min.js$domain=ftlauderdalewebcam.com|nyharborwebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com (easylistchina+easylist.txt: 59902) -/.*\.min\.js -.*.min.js*. -# @@.min.js$domain=ftlauderdalewebcam.com|nyharborwebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com (easylist.txt: 49417) -/.*\.min\.js -.*.min.js*. - -#ab2p-unblock-dnt-R1232 -{+client-header-tagger{ab2p-unblock-dnt-R1232} \ -} -# @@||196.30.218.174/admentor/top_$subdocument,domain=fundsdata.co.za (easylistchina+easylist.txt: 58114) -.196.30.218.174/admentor/top_ -# @@||196.30.218.174/admentor/top_$subdocument,domain=fundsdata.co.za (easylist.txt: 47629) -.196.30.218.174/admentor/top_ - -#ab2p-unblock-dnt-R1233 -{+client-header-tagger{ab2p-unblock-dnt-R1233} \ -} -# @@||fod4.com^$image,domain=funnyordie.com (easylistchina+easylist.txt: 45987) -.fod4.com -# @@||fod4.com^$image,domain=funnyordie.com (easylist.txt: 35502) -.fod4.com - -#ab2p-unblock-dnt-R1234 -{+client-header-tagger{ab2p-unblock-dnt-R1234} \ -} -# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina+easylist.txt: 10355) -.s.lianmeng.360.cn -# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina+easylist.txt: 10300) -.lianmeng.360.cn/searchthrow/.*&w=960& - -#ab2p-unblock-dnt-R1235 -{+client-header-tagger{ab2p-unblock-dnt-R1235} \ -} -# @@||assoc-amazon.com^*/js/swfobject_$domain=gactv.com (easylistchina+easylist.txt: 58445) -.assoc-amazon.com/.*/js/swfobject_ -# @@||adsremote.scrippsnetworks.com/html.ng/adtype=*&playertype=$domain=gactv.com (easylistchina+easylist.txt: 58311) -.adsremote.scrippsnetworks.com/html\.ng/adtype=.*&playertype= -# @@||assoc-amazon.com^*/js/swfobject_$domain=gactv.com (easylist.txt: 47960) -.assoc-amazon.com/.*/js/swfobject_ -# @@||adsremote.scrippsnetworks.com/html.ng/adtype=*&playertype=$domain=gactv.com (easylist.txt: 47826) -.adsremote.scrippsnetworks.com/html\.ng/adtype=.*&playertype= - -#ab2p-unblock-dnt-R1236 -{+client-header-tagger{ab2p-unblock-dnt-R1236} \ -} -# @@||ghstatic.com/archives/*&adURL=$domain=game.zylom.com (easylistchina+easylist.txt: 58876) -.ghstatic.com/archives/.*&adURL= -# @@||ghstatic.com/archives/*&adURL=$domain=game.zylom.com (easylist.txt: 48391) -.ghstatic.com/archives/.*&adURL= - -#ab2p-unblock-dnt-R1237 -{+client-header-tagger{ab2p-unblock-dnt-R1237} \ -} -# @@||shacknews.com/advertising/preroll/$domain=gamefly.com (easylistchina+easylist.txt: 59524) -.shacknews.com/advertising/preroll/ -# @@||shacknews.com/advertising/preroll/$domain=gamefly.com (easylist.txt: 49039) -.shacknews.com/advertising/preroll/ - -#ab2p-unblock-dnt-R1238 -{+client-header-tagger{ab2p-unblock-dnt-R1238} \ -} -# @@||ad.ghfusion.com/constants.js$domain=gamehouse.com (easylistchina+easylist.txt: 58161) -.ad.ghfusion.com/constants\.js -# @@||ad.ghfusion.com/constants.js$domain=gamehouse.com (easylist.txt: 47676) -.ad.ghfusion.com/constants\.js - -#ab2p-unblock-dnt-R1239 -{+client-header-tagger{ab2p-unblock-dnt-R1239} \ -} -# @@||video.gamer-info.com^*.mp4$domain=gamer-info.com (advblock.txt: 7422) -.video.gamer-info.com/.*\.mp4 - -#ab2p-unblock-dnt-R1240 -{+client-header-tagger{ab2p-unblock-dnt-R1240} \ -} -# @@||games-tv.ru/openx/www/delivery/ajs.php?$script,domain=games-tv.ru (advblock.txt: 7301) -.games-tv.ru/openx/www/delivery/ajs\.php\? - -#ab2p-unblock-dnt-R1241 -{+client-header-tagger{ab2p-unblock-dnt-R1241} \ -} -# @@||ads.spilgames.com/ad/$script,domain=games.co.uk (easylistchina+easylist.txt: 58265) -.ads.spilgames.com/ad/ -# @@||ads.spilgames.com/ad/$script,domain=games.co.uk (easylist.txt: 47780) -.ads.spilgames.com/ad/ - -#ab2p-unblock-dnt-R1242 -{+client-header-tagger{ab2p-unblock-dnt-R1242} \ -} -# @@||sgc.io/advertisement.js$domain=games.softgames.de (easylistchina+easylist.txt: 60734) -.sgc.io/advertisement\.js -# @@||d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement-$script,domain=games.softgames.de (easylistchina+easylist.txt: 60195) -.d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement- -# @@||sgc.io/advertisement.js$domain=games.softgames.de (easylist.txt: 50249) -.sgc.io/advertisement\.js -# @@||d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement-$script,domain=games.softgames.de (easylist.txt: 49710) -.d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement- - -#ab2p-unblock-dnt-R1243 -{+client-header-tagger{ab2p-unblock-dnt-R1243} \ -} -# @@||yimg.com^*/adplugin_*.swf$object,domain=games.yahoo.com (easylistchina+easylist.txt: 59852) -.yimg.com/.*/adplugin_.*\.swf -# @@||yimg.com^*/adplugin_*.swf$object,domain=games.yahoo.com (easylist.txt: 49367) -.yimg.com/.*/adplugin_.*\.swf - -#ab2p-unblock-dnt-R1244 -{+client-header-tagger{ab2p-unblock-dnt-R1244} \ -} -# @@||spotxchange.com/ad_player/as3.swf$domain=games.yahoo.com|onescreen.net (easylistchina+easylist.txt: 59570) -.spotxchange.com/ad_player/as3\.swf -# @@||spotxchange.com/ad_player/as3.swf$domain=games.yahoo.com|onescreen.net (easylist.txt: 49085) -.spotxchange.com/ad_player/as3\.swf - -#ab2p-unblock-dnt-R1245 -{+client-header-tagger{ab2p-unblock-dnt-R1245} \ -} -# @@||mochiads.com/srv/*.swf?cxnid=$domain=gamesforwork.com (easylistchina+easylist.txt: 59187) -.mochiads.com/srv/.*\.swf\?cxnid= -# @@||mochiads.com/srv/*.swf?cachebust=$domain=gamesforwork.com (easylistchina+easylist.txt: 59186) -.mochiads.com/srv/.*\.swf\?cachebust= -# @@||mochiads.com/ctr/*.swf?$domain=gamesforwork.com (easylistchina+easylist.txt: 59185) -.mochiads.com/ctr/.*\.swf\? -# @@||keygamesnetwork.com/adserve/request/$object-subrequest,domain=gamesforwork.com (easylistchina+easylist.txt: 59058) -.keygamesnetwork.com/adserve/request/ -# @@||mochiads.com/srv/*.swf?cxnid=$domain=gamesforwork.com (easylist.txt: 48702) -.mochiads.com/srv/.*\.swf\?cxnid= -# @@||mochiads.com/srv/*.swf?cachebust=$domain=gamesforwork.com (easylist.txt: 48701) -.mochiads.com/srv/.*\.swf\?cachebust= -# @@||mochiads.com/ctr/*.swf?$domain=gamesforwork.com (easylist.txt: 48700) -.mochiads.com/ctr/.*\.swf\? -# @@||keygamesnetwork.com/adserve/request/$object-subrequest,domain=gamesforwork.com (easylist.txt: 48573) -.keygamesnetwork.com/adserve/request/ - -#ab2p-unblock-dnt-R1246 -{+client-header-tagger{ab2p-unblock-dnt-R1246} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_companion_ad.js$domain=gamespot.com (easylistchina+easylist.txt: 60629) -.pagead2.googlesyndication.com/pagead/show_companion_ad\.js -# @@||g.doubleclick.net/gampad/ads?gdfp_req=1&$script,domain=gamespot.com (easylistchina+easylist.txt: 60327) -.g.doubleclick.net/gampad/ads\?gdfp_req=1& -# @@||pagead2.googlesyndication.com/pagead/show_companion_ad.js$domain=gamespot.com (easylist.txt: 50144) -.pagead2.googlesyndication.com/pagead/show_companion_ad\.js -# @@||g.doubleclick.net/gampad/ads?gdfp_req=1&$script,domain=gamespot.com (easylist.txt: 49842) -.g.doubleclick.net/gampad/ads\?gdfp_req=1& - -#ab2p-unblock-dnt-R1247 -{+client-header-tagger{ab2p-unblock-dnt-R1247} \ -} -# @@||admin.brightcove.com/viewer/*/brightcovebootloader.swf?$object,domain=gamesradar.com (easylistchina+easylist.txt: 58210) -.admin.brightcove.com/viewer/.*/brightcovebootloader\.swf\? -# @@||admin.brightcove.com/viewer/*/brightcovebootloader.swf?$object,domain=gamesradar.com (easylist.txt: 47725) -.admin.brightcove.com/viewer/.*/brightcovebootloader\.swf\? - -#ab2p-unblock-dnt-R1248 -{+client-header-tagger{ab2p-unblock-dnt-R1248} \ -} -# @@/Advertisement.$domain=gametower.com.tw (easylistchina+easylist.txt: 10020) -/(.*/)?Advertisement\. -Advertisement.*. - -#ab2p-unblock-dnt-R1249 -{+client-header-tagger{ab2p-unblock-dnt-R1249} \ -} -# @@||gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/$image,domain=gaybeeg.info (easylistchina+easylist.txt: 61737) -.gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/ -# @@||gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/$image,domain=gaybeeg.info (easylist.txt: 51252) -.gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/ - #ab2p-unblock-dnt-R245 {+client-header-tagger{ab2p-unblock-dnt-R245} \ } -# @@||gelbooru.com//images/ad/$domain=gelbooru.com (easylistchina+easylist.txt: 61439) -# @@||gelbooru.com//images/ad/$domain=gelbooru.com (easylist.txt: 50954) +# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina.txt: 10273) +.inte.sogou.com/ask\?id= +# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina.txt: 10267) +.images.sohu.com/cs/ -#ab2p-unblock-dnt-R1250 -{+client-header-tagger{ab2p-unblock-dnt-R1250} \ +#ab2p-unblock-dnt-R246 +{+client-header-tagger{ab2p-unblock-dnt-R246} \ } -# @@||genvideos.com/js/show_ads.js$domain=genvideos.com (easylistchina+easylist.txt: 60346) -.genvideos.com/js/show_ads\.js -# @@||genvideos.com/js/show_ads.js$domain=genvideos.com (easylist.txt: 49861) -.genvideos.com/js/show_ads\.js +# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina.txt: 10274) +.itc.cn/public_photo/advert/ -#ab2p-unblock-dnt-R1251 -{+client-header-tagger{ab2p-unblock-dnt-R1251} \ +#ab2p-unblock-dnt-R247 +{+client-header-tagger{ab2p-unblock-dnt-R247} \ } -# @@||smartadserver.com/call/pubx/*/M/$object-subrequest,domain=get.x-link.pl (easylistchina+easylist.txt: 61115) -.smartadserver.com/call/pubx/.*/M/ -# @@||smartadserver.com/call/pubx/*/M/$object-subrequest,domain=get.x-link.pl (easylist.txt: 50630) -.smartadserver.com/call/pubx/.*/M/ - -#ab2p-unblock-dnt-R1252 -{+client-header-tagger{ab2p-unblock-dnt-R1252} \ -} -# @@||admitad.com/public/advertising_campaign/images/$domain=getcoupons.ru (advblock.txt: 7227) -.admitad.com/public/advertising_campaign/images/ - -#ab2p-unblock-dnt-R1253 -{+client-header-tagger{ab2p-unblock-dnt-R1253} \ -} -# @@||betteradvertising.com/logos/$image,domain=ghostery.com (easylistchina+easylist.txt: 58495) -.betteradvertising.com/logos/ -# @@||betteradvertising.com/logos/$image,domain=ghostery.com (easylist.txt: 48010) -.betteradvertising.com/logos/ - -#ab2p-unblock-dnt-R1254 -{+client-header-tagger{ab2p-unblock-dnt-R1254} \ -} -# @@||doubleclick.net/adj/gamesco.socialgaming/$script,domain=ghsrv.com (easylistchina+easylist.txt: 58710) -.doubleclick.net/adj/gamesco\.socialgaming/ -# @@||doubleclick.net/adj/gamesco.socialgaming/$script,domain=ghsrv.com (easylist.txt: 48225) -.doubleclick.net/adj/gamesco\.socialgaming/ - -#ab2p-unblock-dnt-R1255 -{+client-header-tagger{ab2p-unblock-dnt-R1255} \ -} -# @@/advertisement.js$domain=gimhoy.com (easylistchina+easylist.txt: 10021) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-dnt-R1256 -{+client-header-tagger{ab2p-unblock-dnt-R1256} \ -} -# @@||widgets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 59812) -.widgets.rewardstyle.com -# @@||images.rewardstyle.com/img?$image,domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 58985) -.images.rewardstyle.com/img\? -# @@||assets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 58442) -.assets.rewardstyle.com -# @@||widgets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylist.txt: 49327) -.widgets.rewardstyle.com -# @@||images.rewardstyle.com/img?$image,domain=glamour.com|itsjudytime.com (easylist.txt: 48500) -.images.rewardstyle.com/img\? -# @@||assets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylist.txt: 47957) -.assets.rewardstyle.com - -#ab2p-unblock-dnt-R1257 -{+client-header-tagger{ab2p-unblock-dnt-R1257} \ -} -# @@/cdn-cgi/pe/bag2?r[]=*juicyads.com$xmlhttprequest,domain=glamourbabe.eu (easylistchina+easylist.txt: 61423) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# @@/cdn-cgi/pe/bag2?r[]=*juicyads.com$xmlhttprequest,domain=glamourbabe.eu (easylist.txt: 50938) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com - -#ab2p-unblock-dnt-R1258 -{+client-header-tagger{ab2p-unblock-dnt-R1258} \ -} -# @@||doubleclick.net/ddm/clk/*://www.amazon.jobs/jobs/$subdocument,domain=glassdoor.com (easylistchina+easylist.txt: 58721) -.doubleclick.net/ddm/clk/.*://www\.amazon\.jobs/jobs/ -# @@||doubleclick.net/ddm/clk/*://www.amazon.jobs/jobs/$subdocument,domain=glassdoor.com (easylist.txt: 48236) -.doubleclick.net/ddm/clk/.*://www\.amazon\.jobs/jobs/ - -#ab2p-unblock-dnt-R1259 -{+client-header-tagger{ab2p-unblock-dnt-R1259} \ -} -# @@||smdg.ca/ads/banner/pen.png$domain=globalnews.ca (easylistchina+easylist.txt: 59548) -.smdg.ca/ads/banner/pen\.png -# @@||smdg.ca/ads/banner/pen.png$domain=globalnews.ca (easylist.txt: 49063) -.smdg.ca/ads/banner/pen\.png +# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina.txt: 10445) +/.*\.com%2Fanalytics\.js #ab2p-unblock-dnt-R248 {+client-header-tagger{ab2p-unblock-dnt-R248} \ } -# @@||dolimg.com^*/dxd_ad_code.swf$domain=go.com (easylistchina+easylist.txt: 58686) -.dolimg.com/.*/dxd_ad_code\.swf -# @@||adm.fwmrm.net^*/TremorAdRenderer.$object-subrequest,domain=go.com (easylistchina+easylist.txt: 58206) -.adm.fwmrm.net/.*/TremorAdRenderer\. -# @@||dolimg.com^*/dxd_ad_code.swf$domain=go.com (easylist.txt: 48201) -.dolimg.com/.*/dxd_ad_code\.swf -# @@||adm.fwmrm.net^*/TremorAdRenderer.$object-subrequest,domain=go.com (easylist.txt: 47721) -.adm.fwmrm.net/.*/TremorAdRenderer\. +# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina.txt: 10013) +/(.*/)?bag2\?r\[\]=.*&r\[\]= -#ab2p-unblock-dnt-R1260 -{+client-header-tagger{ab2p-unblock-dnt-R1260} \ +#ab2p-unblock-dnt-R249 +{+client-header-tagger{ab2p-unblock-dnt-R249} \ } -# @@||uakino.net^*/images/banner.gif|$image,domain=go.uakino.net (advblock.txt: 7604) -.uakino.net/.*/images/banner\.gif$ +# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina.txt: 10344) +.s.lianmeng.360.cn +# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina.txt: 10290) +.lianmeng.360.cn/searchthrow/.*&w=960& -#ab2p-unblock-dnt-R1261 -{+client-header-tagger{ab2p-unblock-dnt-R1261} \ +#ab2p-unblock-dnt-R250 +{+client-header-tagger{ab2p-unblock-dnt-R250} \ } -# @@||propellerads.com/ajs.php?zoneid=$domain=goclips.tv|letitbit.net (advblock.txt: 7370) -.propellerads.com/ajs\.php\?zoneid= +# @@/Advertisement.$domain=gametower.com.tw (easylistchina.txt: 10004) +/(.*/)?Advertisement\. +Advertisement.*. -#ab2p-unblock-dnt-R1262 -{+client-header-tagger{ab2p-unblock-dnt-R1262} \ +#ab2p-unblock-dnt-R251 +{+client-header-tagger{ab2p-unblock-dnt-R251} \ } -# @@||timeinc.net/golf/static/ads/iframe_ad_factory.js$domain=golf.com (easylistchina+easylist.txt: 59660) -.timeinc.net/golf/static/ads/iframe_ad_factory\.js -# @@||timeinc.net/golf/static/ads/iframe_ad_factory.js$domain=golf.com (easylist.txt: 49175) -.timeinc.net/golf/static/ads/iframe_ad_factory\.js - -#ab2p-unblock-dnt-R1263 -{+client-header-tagger{ab2p-unblock-dnt-R1263} \ -} -# @@|http://*/??$domain=gome.com.cn (easylistchina+easylist.txt: 10070) +# @@|http://*/??$domain=gome.com.cn (easylistchina.txt: 10052) /(.*/)?\?\? -#ab2p-unblock-dnt-R1264 -{+client-header-tagger{ab2p-unblock-dnt-R1264} \ +#ab2p-unblock-dnt-R252 +{+client-header-tagger{ab2p-unblock-dnt-R252} \ } -# @@||www.google.com/ads/admob/images/$image,domain=google.com (easylistchina+easylist.txt: 61186) -.www.google.com/ads/admob/images/ -# @@||www.google.com/ads/admob/images/$image,domain=google.com (easylist.txt: 50701) -.www.google.com/ads/admob/images/ - -#ab2p-unblock-dnt-R1265 -{+client-header-tagger{ab2p-unblock-dnt-R1265} \ -} -# @@||greasyfork.org/system/screenshots/screenshots/$domain=greasyfork.org (easylistchina+easylist.txt: 58920) -.greasyfork.org/system/screenshots/screenshots/ -# @@||greasyfork.org/system/screenshots/screenshots/$domain=greasyfork.org (easylist.txt: 48435) -.greasyfork.org/system/screenshots/screenshots/ - -#ab2p-unblock-dnt-R1266 -{+client-header-tagger{ab2p-unblock-dnt-R1266} \ -} -# @@||gannett.gcion.com/addyn/$script,domain=greenbaypressgazette.com|wcsh6.com (easylistchina+easylist.txt: 58868) -.gannett.gcion.com/addyn/ -# @@||gannett.gcion.com/addyn/$script,domain=greenbaypressgazette.com|wcsh6.com (easylist.txt: 48383) -.gannett.gcion.com/addyn/ - -#ab2p-unblock-dnt-R1267 -{+client-header-tagger{ab2p-unblock-dnt-R1267} \ -} -# @@/mod_jpayday/js/*$script,domain=gsmpro.com.pl|lechia.net (easylistchina+easylist.txt: 59928) -/(.*/)?mod_jpayday/js/.* -# @@/mod_jpayday/js/*$script,domain=gsmpro.com.pl|lechia.net (easylist.txt: 49443) -/(.*/)?mod_jpayday/js/.* - -#ab2p-unblock-dnt-R1268 -{+client-header-tagger{ab2p-unblock-dnt-R1268} \ -} -# @@||gt-advertise.ru^$domain=gt-advertise.ru (advblock.txt: 7306) -.gt-advertise.ru - -#ab2p-unblock-dnt-R1269 -{+client-header-tagger{ab2p-unblock-dnt-R1269} \ -} -# @@||google.com/uds/api/ads/$script,domain=guardian.co.uk (easylistchina+easylist.txt: 58907) -.google.com/uds/api/ads/ -# @@||google.com/uds/api/ads/$script,domain=guardian.co.uk (easylist.txt: 48422) -.google.com/uds/api/ads/ - -#ab2p-unblock-dnt-R1270 -{+client-header-tagger{ab2p-unblock-dnt-R1270} \ -} -# @@||google.com/uds/?file=ads&$script,domain=guardian.co.uk|landandfarm.com (easylistchina+easylist.txt: 58905) -.google.com/uds/\?file=ads& -# @@||google.com/uds/?file=ads&$script,domain=guardian.co.uk|landandfarm.com (easylist.txt: 48420) -.google.com/uds/\?file=ads& - -#ab2p-unblock-dnt-R1271 -{+client-header-tagger{ab2p-unblock-dnt-R1271} \ -} -# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina+easylist.txt: 10190) +# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina.txt: 10174) .cache.adm.cnzz.net -#ab2p-unblock-dnt-R1272 -{+client-header-tagger{ab2p-unblock-dnt-R1272} \ +#ab2p-unblock-dnt-R253 +{+client-header-tagger{ab2p-unblock-dnt-R253} \ } -# @@||impactradius.com/gen-ad-code/$domain=hackintosh.zone (easylistchina+easylist.txt: 60412) -.impactradius.com/gen-ad-code/ -# @@||impactradius.com/display-ad/$domain=hackintosh.zone (easylistchina+easylist.txt: 60411) -.impactradius.com/display-ad/ -# @@||impactradius.com/gen-ad-code/$domain=hackintosh.zone (easylist.txt: 49927) -.impactradius.com/gen-ad-code/ -# @@||impactradius.com/display-ad/$domain=hackintosh.zone (easylist.txt: 49926) -.impactradius.com/display-ad/ - -#ab2p-unblock-dnt-R1273 -{+client-header-tagger{ab2p-unblock-dnt-R1273} \ -} -# @@/flash/ad/*$domain=haitao.com (easylistchina+easylist.txt: 10037) +# @@/flash/ad/*$domain=haitao.com (easylistchina.txt: 10019) /(.*/)?flash/ad/.* -#ab2p-unblock-dnt-R1274 -{+client-header-tagger{ab2p-unblock-dnt-R1274} \ +#ab2p-unblock-dnt-R254 +{+client-header-tagger{ab2p-unblock-dnt-R254} \ } -# @@||hamalia.ua/tools/banner/site/banner.php?$domain=hamalia.ua (advblock.txt: 7307) -.hamalia.ua/tools/banner/site/banner\.php\? - -#ab2p-unblock-dnt-R1275 -{+client-header-tagger{ab2p-unblock-dnt-R1275} \ -} -# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina+easylist.txt: 9986) +# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina.txt: 9972) /.*\.com/ad/ .*.com/ad/ -#ab2p-unblock-dnt-R1276 -{+client-header-tagger{ab2p-unblock-dnt-R1276} \ +#ab2p-unblock-dnt-R255 +{+client-header-tagger{ab2p-unblock-dnt-R255} \ } -# @@||pagead2.googlesyndication.com/simgad/573912609820809|$image,domain=hardocp.com (easylistchina+easylist.txt: 60633) -.pagead2.googlesyndication.com/simgad/573912609820809$ -# @@||pagead2.googlesyndication.com/simgad/573912609820809|$image,domain=hardocp.com (easylist.txt: 50148) -.pagead2.googlesyndication.com/simgad/573912609820809$ - -#ab2p-unblock-dnt-R1277 -{+client-header-tagger{ab2p-unblock-dnt-R1277} \ -} -# @@||hawk.ru/media/banners/$domain=hawk.ru (advblock.txt: 7308) -.hawk.ru/media/banners/ - -#ab2p-unblock-dnt-R1278 -{+client-header-tagger{ab2p-unblock-dnt-R1278} \ -} -# @@||hcsibir.ru/uploads/advert/$image,domain=hcsibir.ru (advblock.txt: 7309) -.hcsibir.ru/uploads/advert/ - -#ab2p-unblock-dnt-R1279 -{+client-header-tagger{ab2p-unblock-dnt-R1279} \ -} -# @@/cdn-cgi/pe/bag2?r[]=*popads.net$xmlhttprequest,domain=hd-porn.me (easylistchina+easylist.txt: 61424) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# @@/cdn-cgi/pe/bag2?r[]=*ads.exoclick.com$xmlhttprequest,domain=hd-porn.me (easylistchina+easylist.txt: 61422) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# @@/cdn-cgi/pe/bag2?r[]=*popads.net$xmlhttprequest,domain=hd-porn.me (easylist.txt: 50939) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# @@/cdn-cgi/pe/bag2?r[]=*ads.exoclick.com$xmlhttprequest,domain=hd-porn.me (easylist.txt: 50937) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com - -#ab2p-unblock-dnt-R1280 -{+client-header-tagger{ab2p-unblock-dnt-R1280} \ -} -# @@||gmodules.com/ig/ifr?up_ad$domain=healthboards.com (easylistchina+easylist.txt: 58885) -.gmodules.com/ig/ifr\?up_ad -# @@||gmodules.com/ig/ifr?up_ad$domain=healthboards.com (easylist.txt: 48400) -.gmodules.com/ig/ifr\?up_ad - -#ab2p-unblock-dnt-R1281 -{+client-header-tagger{ab2p-unblock-dnt-R1281} \ -} -# @@||static.squarespace.com^$script,third-party,domain=heroichollywood.com (easylistchina+easylist.txt: 46040) -.static.squarespace.com -# @@||static.squarespace.com^$script,third-party,domain=heroichollywood.com (easylist.txt: 35555) -.static.squarespace.com - -#ab2p-unblock-dnt-R1282 -{+client-header-tagger{ab2p-unblock-dnt-R1282} \ -} -# @@||cdn.playwire.com^$script,third-party,domain=heroichollywood.com|supercheats.com (easylistchina+easylist.txt: 45955) -.cdn.playwire.com -# @@||cdn.playwire.com^$script,third-party,domain=heroichollywood.com|supercheats.com (easylist.txt: 35470) -.cdn.playwire.com - -#ab2p-unblock-dnt-R1283 -{+client-header-tagger{ab2p-unblock-dnt-R1283} \ -} -# @@/files/banner/*$domain=hgst.com|movie-pocket.com (advblock.txt: 7199) -/(.*/)?files/banner/.* - -#ab2p-unblock-dnt-R1284 -{+client-header-tagger{ab2p-unblock-dnt-R1284} \ -} -# @@||promo.cdn.homepornbay.com/key=*.mp4$object-subrequest,domain=hiddencamsvideo.com (easylistchina+easylist.txt: 61454) -.promo.cdn.homepornbay.com/key=.*\.mp4 -# @@||promo.cdn.homepornbay.com/key=*.mp4$object-subrequest,domain=hiddencamsvideo.com (easylist.txt: 50969) -.promo.cdn.homepornbay.com/key=.*\.mp4 - -#ab2p-unblock-dnt-R1285 -{+client-header-tagger{ab2p-unblock-dnt-R1285} \ -} -# @@||google.com/ads/$domain=hinduladies.com (easylistchina+easylist.txt: 61738) -.google.com/ads/ -# @@||google.com/ads/$domain=hinduladies.com (easylist.txt: 51253) -.google.com/ads/ - -#ab2p-unblock-dnt-R1286 -{+client-header-tagger{ab2p-unblock-dnt-R1286} \ -} -# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina+easylist.txt: 10482) +# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina.txt: 10470) .scorecardresearch.com/beacon\.js -#ab2p-unblock-dnt-R1287 -{+client-header-tagger{ab2p-unblock-dnt-R1287} \ +#ab2p-unblock-dnt-R256 +{+client-header-tagger{ab2p-unblock-dnt-R256} \ } -# @@||amazon-adsystem.com/widgets/q?*&ad_type=product_link&$subdocument,domain=hometheaterforum.com (easylistchina+easylist.txt: 58391) -.amazon-adsystem.com/widgets/q\?.*&ad_type=product_link& -# @@||amazon-adsystem.com/widgets/q?*&ad_type=product_link&$subdocument,domain=hometheaterforum.com (easylist.txt: 47906) -.amazon-adsystem.com/widgets/q\?.*&ad_type=product_link& - -#ab2p-unblock-dnt-R1288 -{+client-header-tagger{ab2p-unblock-dnt-R1288} \ -} -# @@||pop6.com/banners/$domain=horny.net|xmatch.com (easylistchina+easylist.txt: 61452) -.pop6.com/banners/ -# @@||pop6.com/banners/$domain=horny.net|xmatch.com (easylist.txt: 50967) -.pop6.com/banners/ - -#ab2p-unblock-dnt-R1289 -{+client-header-tagger{ab2p-unblock-dnt-R1289} \ -} -# @@||dstw.adgear.com/impressions/int/as=*.json?ag_r=$object-subrequest,domain=hot899.com|nj1015.com|streamtheworld.com|tsn.ca (easylistchina+easylist.txt: 58752) -.dstw.adgear.com/impressions/int/as=.*\.json\?ag_r= -# @@||dstw.adgear.com/impressions/int/as=*.json?ag_r=$object-subrequest,domain=hot899.com|nj1015.com|streamtheworld.com|tsn.ca (easylist.txt: 48267) -.dstw.adgear.com/impressions/int/as=.*\.json\?ag_r= - -#ab2p-unblock-dnt-R1290 -{+client-header-tagger{ab2p-unblock-dnt-R1290} \ -} -# @@||doubleclick.net/clk;$popup,domain=hotukdeals.com|jobamatic.com|play.google.com|santander.co.uk|techrepublic.com (easylistchina+easylist.txt: 61409) -.doubleclick.net/clk; -# @@||doubleclick.net/clk;$popup,domain=hotukdeals.com|jobamatic.com|play.google.com|santander.co.uk|techrepublic.com (easylist.txt: 50924) -.doubleclick.net/clk; - -#ab2p-unblock-dnt-R1291 -{+client-header-tagger{ab2p-unblock-dnt-R1291} \ -} -# @@||a.intentmedia.net/adServer/$script,domain=hotwire.com (easylistchina+easylist.txt: 58139) -.a.intentmedia.net/adServer/ -# @@||a.intentmedia.net/adServer/$script,domain=hotwire.com (easylist.txt: 47654) -.a.intentmedia.net/adServer/ - -#ab2p-unblock-dnt-R1292 -{+client-header-tagger{ab2p-unblock-dnt-R1292} \ -} -# @@/advertising/*$domain=houdask.com (easylistchina+easylist.txt: 10023) +# @@/advertising/*$domain=houdask.com (easylistchina.txt: 10007) /(.*/)?advertising/.* -#ab2p-unblock-dnt-R1293 -{+client-header-tagger{ab2p-unblock-dnt-R1293} \ +#ab2p-unblock-dnt-R257 +{+client-header-tagger{ab2p-unblock-dnt-R257} \ } -# @@||www8-hp.com^*/styles/ads/$domain=hp.com (easylistchina+easylist.txt: 59836) -.www8-hp.com/.*/styles/ads/ -# @@||www8-hp.com^*/styles/ads/$domain=hp.com (easylist.txt: 49351) -.www8-hp.com/.*/styles/ads/ - -#ab2p-unblock-dnt-R1294 -{+client-header-tagger{ab2p-unblock-dnt-R1294} \ -} -# @@||sms-mmm.com/script.php|$script,domain=hqq.tv (easylistchina+easylist.txt: 60751) -.sms-mmm.com/script\.php$ -# @@||sms-mmm.com/pads.js$domain=hqq.tv (easylistchina+easylist.txt: 60750) -.sms-mmm.com/pads\.js -# @@||google-it.info^$script,domain=hqq.tv (easylistchina+easylist.txt: 60361) -.google-it.info -# @@||sms-mmm.com/script.php|$script,domain=hqq.tv (easylist.txt: 50266) -.sms-mmm.com/script\.php$ -# @@||sms-mmm.com/pads.js$domain=hqq.tv (easylist.txt: 50265) -.sms-mmm.com/pads\.js -# @@||google-it.info^$script,domain=hqq.tv (easylist.txt: 49876) -.google-it.info - -#ab2p-unblock-dnt-R1295 -{+client-header-tagger{ab2p-unblock-dnt-R1295} \ -} -# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina+easylist.txt: 10064) +# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina.txt: 10046) /.*\?adType= -#ab2p-unblock-dnt-R1296 -{+client-header-tagger{ab2p-unblock-dnt-R1296} \ +#ab2p-unblock-dnt-R258 +{+client-header-tagger{ab2p-unblock-dnt-R258} \ } -# @@||aolcdn.com/ads/adsWrapperIntl.js$domain=huffingtonpost.co.uk (easylistchina+easylist.txt: 58409) -.aolcdn.com/ads/adsWrapperIntl\.js -# @@||aolcdn.com/ads/adsWrapperIntl.js$domain=huffingtonpost.co.uk (easylist.txt: 47924) -.aolcdn.com/ads/adsWrapperIntl\.js +# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina.txt: 10021) +/(.*/)?guanggao/.* -#ab2p-unblock-dnt-R1297 -{+client-header-tagger{ab2p-unblock-dnt-R1297} \ +#ab2p-unblock-dnt-R259 +{+client-header-tagger{ab2p-unblock-dnt-R259} \ } -# @@||huffpost.com/images/ads/$domain=huffingtonpost.com (easylistchina+easylist.txt: 58956) -.huffpost.com/images/ads/ -# @@||huffpost.com/images/ads/$domain=huffingtonpost.com (easylist.txt: 48471) -.huffpost.com/images/ads/ +# @@||a.alimama.cn/tkapi$domain=ieeee.com (easylistchina.txt: 10108) +.a.alimama.cn/tkapi -#ab2p-unblock-dnt-R1298 -{+client-header-tagger{ab2p-unblock-dnt-R1298} \ +#ab2p-unblock-dnt-R260 +{+client-header-tagger{ab2p-unblock-dnt-R260} \ } -# @@||innovid.com^$object-subrequest,domain=hulu.com (easylistchina+easylist.txt: 59012) -.innovid.com -# @@||innovid.com^$object-subrequest,domain=hulu.com (easylist.txt: 48527) -.innovid.com +# @@/Public/ad/*$domain=ihold.cc (easylistchina.txt: 10035) +/(.*/)?Public/ad/.* -#ab2p-unblock-dnt-R1299 -{+client-header-tagger{ab2p-unblock-dnt-R1299} \ +#ab2p-unblock-dnt-R261 +{+client-header-tagger{ab2p-unblock-dnt-R261} \ } -# @@||humana-medicare.com/ad/$~document,domain=humana-medicare.com (easylistchina+easylist.txt: 58960) -.humana-medicare.com/ad/ -# @@||humana-medicare.com/ad/$~document,domain=humana-medicare.com (easylist.txt: 48475) -.humana-medicare.com/ad/ +# @@||hm.baidu.com^$domain=ihome99.com (easylistchina.txt: 10464) +.hm.baidu.com -#ab2p-unblock-dnt-R1300 -{+client-header-tagger{ab2p-unblock-dnt-R1300} \ +#ab2p-unblock-dnt-R262 +{+client-header-tagger{ab2p-unblock-dnt-R262} \ } -# @@||lijit.com///www/delivery/fpi.js?*&width=728&height=90$script,domain=hypeseek.com (easylistchina+easylist.txt: 59086) -# @@||lijit.com///www/delivery/fpi.js?*&width=728&height=90$script,domain=hypeseek.com (easylist.txt: 48601) +# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina.txt: 9992) +/(.*/)?ADmediaJS/panda0305_1972_11454_12120_ -#ab2p-unblock-dnt-R1301 -{+client-header-tagger{ab2p-unblock-dnt-R1301} \ +#ab2p-unblock-dnt-R263 +{+client-header-tagger{ab2p-unblock-dnt-R263} \ } -# @@||i-makeawish.com^$script,domain=i-makeawish.com (easylistchina+easylist.txt: 60390) -.i-makeawish.com -# @@||i-makeawish.com^$script,domain=i-makeawish.com (easylist.txt: 49905) -.i-makeawish.com +# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina.txt: 10006) +/(.*/)?advertisement/.* + +#ab2p-unblock-dnt-R264 +{+client-header-tagger{ab2p-unblock-dnt-R264} \ +} +# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina.txt: 10113) +.ad.3.cn/ads/mgets\? + +#ab2p-unblock-dnt-R265 +{+client-header-tagger{ab2p-unblock-dnt-R265} \ +} +# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina.txt: 10114) +.ad.3.cn/flags/mgets\? +# @@||360buyimg.com/ads/$domain=jd.com (easylistchina.txt: 10083) +.360buyimg.com/ads/ +# @@||360buyimg.com/ad/$domain=jd.com (easylistchina.txt: 10082) +.360buyimg.com/ad/ +# @@&ad_width=810&$domain=jd.com (easylistchina.txt: 9966) +/.*&ad_width=810& +# @@&ad_width=590&$domain=jd.com (easylistchina.txt: 9965) +/.*&ad_width=590& + +#ab2p-unblock-dnt-R266 +{+client-header-tagger{ab2p-unblock-dnt-R266} \ +} +# @@|http:$image,script,domain=jjcast.com (easylistchina.txt: 10050) + +#ab2p-unblock-dnt-R267 +{+client-header-tagger{ab2p-unblock-dnt-R267} \ +} +# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina.txt: 10151) +.allyes.com.cn/player/AllyesAdPlayerV1\.swf\? + +#ab2p-unblock-dnt-R268 +{+client-header-tagger{ab2p-unblock-dnt-R268} \ +} +# @@||js.adm.cnzz.net^$domain=keenfine.com|xoyo.com (easylistchina.txt: 10282) +.js.adm.cnzz.net + +#ab2p-unblock-dnt-R269 +{+client-header-tagger{ab2p-unblock-dnt-R269} \ +} +# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina.txt: 10460) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R270 +{+client-header-tagger{ab2p-unblock-dnt-R270} \ +} +# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina.txt: 10283) +.kbcool.com/advpic/ + +#ab2p-unblock-dnt-R271 +{+client-header-tagger{ab2p-unblock-dnt-R271} \ +} +# @@/adimg/*$domain=laniqu.com|veryeast.cn (easylistchina.txt: 9990) +/(.*/)?adimg/.* + +#ab2p-unblock-dnt-R272 +{+client-header-tagger{ab2p-unblock-dnt-R272} \ +} +# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina.txt: 10313) +.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js + +#ab2p-unblock-dnt-R273 +{+client-header-tagger{ab2p-unblock-dnt-R273} \ +} +# @@/adsame.$domain=liba.com|libaclub.com (easylistchina.txt: 9995) +/(.*/)?adsame\. +adsame.*. + +#ab2p-unblock-dnt-R274 +{+client-header-tagger{ab2p-unblock-dnt-R274} \ +} +# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina.txt: 10369) +.stockstar.com/ad/ + +#ab2p-unblock-dnt-R275 +{+client-header-tagger{ab2p-unblock-dnt-R275} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina.txt: 10469) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-dnt-R276 +{+client-header-tagger{ab2p-unblock-dnt-R276} \ +} +# @@/adsbox.$domain=long7.qq.com (easylistchina.txt: 9996) +/(.*/)?adsbox\. +adsbox.*. + +#ab2p-unblock-dnt-R277 +{+client-header-tagger{ab2p-unblock-dnt-R277} \ +} +# @@||csbew.com^$domain=longbl.com (easylistchina.txt: 10202) +.csbew.com #ab2p-unblock-dnt-R278 {+client-header-tagger{ab2p-unblock-dnt-R278} \ } -# @@||zedo.com/bar/*/fnsr.vast?$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 59872) -.zedo.com/bar/.*/fnsr\.vast\? -# @@||jivox.com/jivox/serverAPIs/getCampaignById.php?$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 59043) -.jivox.com/jivox/serverAPIs/getCampaignById\.php\? -# @@||edgesuite.net/general/ibn/ads/*.flv$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 58768) -.edgesuite.net/general/ibn/ads/.*\.flv -# @@||zedo.com/bar/*/fnsr.vast?$object-subrequest,domain=ibnlive.in.com (easylist.txt: 49387) -.zedo.com/bar/.*/fnsr\.vast\? -# @@||jivox.com/jivox/serverAPIs/getCampaignById.php?$object-subrequest,domain=ibnlive.in.com (easylist.txt: 48558) -.jivox.com/jivox/serverAPIs/getCampaignById\.php\? -# @@||edgesuite.net/general/ibn/ads/*.flv$object-subrequest,domain=ibnlive.in.com (easylist.txt: 48283) -.edgesuite.net/general/ibn/ads/.*\.flv +# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina.txt: 9974) +/.*\.com/adv/ +.*.com/adv/ -#ab2p-unblock-dnt-R1302 -{+client-header-tagger{ab2p-unblock-dnt-R1302} \ +#ab2p-unblock-dnt-R279 +{+client-header-tagger{ab2p-unblock-dnt-R279} \ } -# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina+easylist.txt: 10039) -/(.*/)?guanggao/.* +# @@|http://*/ad$domain=meiziweibo.com (easylistchina.txt: 10053) +/(.*/)?ad -#ab2p-unblock-dnt-R1303 -{+client-header-tagger{ab2p-unblock-dnt-R1303} \ +#ab2p-unblock-dnt-R280 +{+client-header-tagger{ab2p-unblock-dnt-R280} \ } -# @@||bbelements.com/please/showit/*/?typkodu=$script,domain=idnes.cz|moviezone.cz (easylistchina+easylist.txt: 60990) -.bbelements.com/please/showit/.*/\?typkodu= -# @@||bbelements.com/please/showit/*/?typkodu=$script,domain=idnes.cz|moviezone.cz (easylist.txt: 50505) -.bbelements.com/please/showit/.*/\?typkodu= +# @@/AdShow/*$domain=mndxy.org (easylistchina.txt: 9999) +/(.*/)?AdShow/.* -#ab2p-unblock-dnt-R1304 -{+client-header-tagger{ab2p-unblock-dnt-R1304} \ +#ab2p-unblock-dnt-R281 +{+client-header-tagger{ab2p-unblock-dnt-R281} \ } -# @@||ifirstrowit.eu^$script,domain=ifirstrowit.eu (easylistchina+easylist.txt: 60396) -.ifirstrowit.eu -# @@||ifirstrowit.eu^$script,domain=ifirstrowit.eu (easylist.txt: 49911) -.ifirstrowit.eu +# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina.txt: 10124) +.ad.unimhk.com/show\.php\? -#ab2p-unblock-dnt-R1305 -{+client-header-tagger{ab2p-unblock-dnt-R1305} \ +#ab2p-unblock-dnt-R282 +{+client-header-tagger{ab2p-unblock-dnt-R282} \ } -# @@||ifirstrowus.eu^$script,domain=ifirstrowus.eu (easylistchina+easylist.txt: 60397) -.ifirstrowus.eu -# @@||ifirstrowus.eu^$script,domain=ifirstrowus.eu (easylist.txt: 49912) -.ifirstrowus.eu +# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina.txt: 10164) +.bdimg.com/advert/js/advert\.js -#ab2p-unblock-dnt-R1306 -{+client-header-tagger{ab2p-unblock-dnt-R1306} \ +#ab2p-unblock-dnt-R283 +{+client-header-tagger{ab2p-unblock-dnt-R283} \ } -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/drf?$script,domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58744) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/drf\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/advertisers?$script,domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58743) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/advertisers\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/adserver.js?$domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58742) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/adserver\.js\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/drf?$script,domain=igougo.com|travelocity.com (easylist.txt: 48259) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/drf\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/advertisers?$script,domain=igougo.com|travelocity.com (easylist.txt: 48258) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/advertisers\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/adserver.js?$domain=igougo.com|travelocity.com (easylist.txt: 48257) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/adserver\.js\? +# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina.txt: 10045) +/.*=mywebloadt1& -#ab2p-unblock-dnt-R1307 -{+client-header-tagger{ab2p-unblock-dnt-R1307} \ +#ab2p-unblock-dnt-R284 +{+client-header-tagger{ab2p-unblock-dnt-R284} \ } -# @@||igromania.ru/upload/iblock/*/baner_$image,domain=igromania.ru (advblock.txt: 7311) -.igromania.ru/upload/iblock/.*/baner_ -# @@||igromania.ru/bitrix/templates/igromania/js/openxtag.js?$domain=igromania.ru (advblock.txt: 7310) -.igromania.ru/bitrix/templates/igromania/js/openxtag\.js\? +# @@/urchin.js$domain=on.cc (easylistchina.txt: 10449) +/(.*/)?urchin\.js +urchin.js*. +# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina.txt: 10448) +/(.*/)?hitCount_ +# @@/hitCount.$script,domain=on.cc (easylistchina.txt: 10447) +/(.*/)?hitCount\. +hitCount.*. -#ab2p-unblock-dnt-R1308 -{+client-header-tagger{ab2p-unblock-dnt-R1308} \ +#ab2p-unblock-dnt-R285 +{+client-header-tagger{ab2p-unblock-dnt-R285} \ } -# @@/adriver.core.$script,domain=iguides.ru|tvigle.ru|wikimart.ru (advblock.txt: 7186) -/(.*/)?adriver\.core\. -adriver.core.*. +# @@/ADImages/*$domain=p9.com.tw (easylistchina.txt: 9989) +/(.*/)?ADImages/.* -#ab2p-unblock-dnt-R1309 -{+client-header-tagger{ab2p-unblock-dnt-R1309} \ +#ab2p-unblock-dnt-R286 +{+client-header-tagger{ab2p-unblock-dnt-R286} \ } -# @@/Public/ad/*$domain=ihold.cc (easylistchina+easylist.txt: 10053) -/(.*/)?Public/ad/.* - -#ab2p-unblock-dnt-R1310 -{+client-header-tagger{ab2p-unblock-dnt-R1310} \ -} -# @@||hm.baidu.com^$domain=ihome99.com (easylistchina+easylist.txt: 10476) -.hm.baidu.com - -#ab2p-unblock-dnt-R1311 -{+client-header-tagger{ab2p-unblock-dnt-R1311} \ -} -# @@||fasts.tv^$script,domain=ilive.to (easylistchina+easylist.txt: 60276) -.fasts.tv -# @@||concutao.tk^$script,domain=ilive.to (easylistchina+easylist.txt: 60178) -.concutao.tk -# @@|http://*.tk^$script,domain=ilive.to (easylistchina+easylist.txt: 59953) -/.*\.tk[^\w%.-] -.*.tk -# @@/advertisement2.js$domain=ilive.to (easylistchina+easylist.txt: 59921) -/(.*/)?advertisement2\.js -advertisement2.js*. -# @@||fasts.tv^$script,domain=ilive.to (easylist.txt: 49791) -.fasts.tv -# @@||concutao.tk^$script,domain=ilive.to (easylist.txt: 49693) -.concutao.tk -# @@|http://*.tk^$script,domain=ilive.to (easylist.txt: 49468) -/.*\.tk[^\w%.-] -.*.tk -# @@/advertisement2.js$domain=ilive.to (easylist.txt: 49436) -/(.*/)?advertisement2\.js -advertisement2.js*. - -#ab2p-unblock-dnt-R1312 -{+client-header-tagger{ab2p-unblock-dnt-R1312} \ -} -# @@||priva.us^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60671) -.priva.us -# @@||info.tm^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60417) -.info.tm -# @@||ilix.in^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60401) -.ilix.in -# @@||priva.us^$script,domain=ilix.in|priva.us (easylist.txt: 50186) -.priva.us -# @@||info.tm^$script,domain=ilix.in|priva.us (easylist.txt: 49932) -.info.tm -# @@||ilix.in^$script,domain=ilix.in|priva.us (easylist.txt: 49916) -.ilix.in - -#ab2p-unblock-dnt-R1313 -{+client-header-tagger{ab2p-unblock-dnt-R1313} \ -} -# @@||biz.tm^$script,domain=ilix.in|priva.us|urlink.at (easylistchina+easylist.txt: 60120) -.biz.tm -# @@||biz.tm^$script,domain=ilix.in|priva.us|urlink.at (easylist.txt: 49635) -.biz.tm - -#ab2p-unblock-dnt-R1314 -{+client-header-tagger{ab2p-unblock-dnt-R1314} \ -} -# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina+easylist.txt: 10007) -/(.*/)?ADmediaJS/panda0305_1972_11454_12120_ - -#ab2p-unblock-dnt-R1315 -{+client-header-tagger{ab2p-unblock-dnt-R1315} \ -} -# @@||viroll.com^$popup,domain=imagebam.com|imgbox.com (easylistchina+easylist.txt: 61420) -.viroll.com -# @@||viroll.com^$popup,domain=imagebam.com|imgbox.com (easylist.txt: 50935) -.viroll.com - -#ab2p-unblock-dnt-R1316 -{+client-header-tagger{ab2p-unblock-dnt-R1316} \ -} -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$xmlhttprequest,domain=imasdk.googleapis.com (easylistchina+easylist.txt: 58170) -.ad4.liverail.com/\?LR_PUBLISHER_ID= -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$xmlhttprequest,domain=imasdk.googleapis.com (easylist.txt: 47685) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-dnt-R1317 -{+client-header-tagger{ab2p-unblock-dnt-R1317} \ -} -# @@||media-imdb.com^*/js/ads.js$domain=imdb.com (easylistchina+easylist.txt: 59148) -.media-imdb.com/.*/js/ads\.js -# @@||media-imdb.com^*/js/ads.js$domain=imdb.com (easylist.txt: 48663) -.media-imdb.com/.*/js/ads\.js - -#ab2p-unblock-dnt-R1318 -{+client-header-tagger{ab2p-unblock-dnt-R1318} \ -} -# @@||exoclick.com/ads.php?*login$script,domain=imgserve.net|imgtiger.com (easylistchina+easylist.txt: 58802) -.exoclick.com/ads\.php\?.*login -# @@||exoclick.com/ads.php?*login$script,domain=imgserve.net|imgtiger.com (easylist.txt: 48317) -.exoclick.com/ads\.php\?.*login - -#ab2p-unblock-dnt-R1319 -{+client-header-tagger{ab2p-unblock-dnt-R1319} \ -} -# @@||imhonet.ru/js/templates/views/tiles/m-tiles.advert.$domain=imhonet.ru (advblock.txt: 7315) -.imhonet.ru/js/templates/views/tiles/m-tiles\.advert\. -# @@/img/banner/*$domain=imhonet.ru (advblock.txt: 7203) -/(.*/)?img/banner/.* - -#ab2p-unblock-dnt-R1320 -{+client-header-tagger{ab2p-unblock-dnt-R1320} \ -} -# @@||b.inbox.lv/xmlcache/tvnet/index.html?ts=$domain=inbox.lv (advblock.txt: 7274) -.b.inbox.lv/xmlcache/tvnet/index\.html\?ts= -# @@||b.inbox.lv/bxlib/css/$domain=inbox.lv (advblock.txt: 7273) -.b.inbox.lv/bxlib/css/ - -#ab2p-unblock-dnt-R1321 -{+client-header-tagger{ab2p-unblock-dnt-R1321} \ -} -# @@||amazonaws.com/adplayer/player/newas3player.swf?$object,domain=india.com (easylistchina+easylist.txt: 58396) -.amazonaws.com/adplayer/player/newas3player\.swf\? -# @@||amazonaws.com/adplayer/player/newas3player.swf?$object,domain=india.com (easylist.txt: 47911) -.amazonaws.com/adplayer/player/newas3player\.swf\? - -#ab2p-unblock-dnt-R1322 -{+client-header-tagger{ab2p-unblock-dnt-R1322} \ -} -# @@||player.ventunotech.com/VtnGoogleVpaidIMA_1.swf?$object-subrequest,domain=indianexpress.com|thehindu.com (easylistchina+easylist.txt: 59391) -.player.ventunotech.com/VtnGoogleVpaidIMA_1\.swf\? -# @@||player.ventunotech.com/VtnGoogleVpaidIMA_1.swf?$object-subrequest,domain=indianexpress.com|thehindu.com (easylist.txt: 48906) -.player.ventunotech.com/VtnGoogleVpaidIMA_1\.swf\? - -#ab2p-unblock-dnt-R1323 -{+client-header-tagger{ab2p-unblock-dnt-R1323} \ -} -# @@||tremormedia.com/acudeo/$script,domain=indiatimes.com (easylistchina+easylist.txt: 59698) -.tremormedia.com/acudeo/ -# @@||tremormedia.com/acudeo/$script,domain=indiatimes.com (easylist.txt: 49213) -.tremormedia.com/acudeo/ - -#ab2p-unblock-dnt-R1324 -{+client-header-tagger{ab2p-unblock-dnt-R1324} \ -} -# @@||serve.vdopia.com/js/vdo.js$domain=indiatvnews.com|intoday.in (easylistchina+easylist.txt: 59515) -.serve.vdopia.com/js/vdo\.js -# @@||serve.vdopia.com/js/vdo.js$domain=indiatvnews.com|intoday.in (easylist.txt: 49030) -.serve.vdopia.com/js/vdo\.js - -#ab2p-unblock-dnt-R1325 -{+client-header-tagger{ab2p-unblock-dnt-R1325} \ -} -# @@||cdn.vdopia.com^$object,object-subrequest,script,domain=indiatvnews.com|intoday.in|moneycontrol.com (easylistchina+easylist.txt: 58574) -.cdn.vdopia.com -# @@||cdn.vdopia.com^$object,object-subrequest,script,domain=indiatvnews.com|intoday.in|moneycontrol.com (easylist.txt: 48089) -.cdn.vdopia.com - -#ab2p-unblock-dnt-R1326 -{+client-header-tagger{ab2p-unblock-dnt-R1326} \ -} -# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina+easylist.txt: 10022) -/(.*/)?advertisement/.* - -#ab2p-unblock-dnt-R1327 -{+client-header-tagger{ab2p-unblock-dnt-R1327} \ -} -# @@||qnsr.com/cgi/r?$domain=insure.com (easylistchina+easylist.txt: 59426) -.qnsr.com/cgi/r\? -# @@||qnsr.com/cgi/r?$domain=insure.com (easylist.txt: 48941) -.qnsr.com/cgi/r\? - -#ab2p-unblock-dnt-R1328 -{+client-header-tagger{ab2p-unblock-dnt-R1328} \ -} -# @@||insys.pl/Scripts/InsysPlayer.*/adTest.png$domain=insys.pl (easylistchina+easylist.txt: 60423) -.insys.pl/Scripts/InsysPlayer\..*/adTest\.png -# @@||adview.pl/ad/GetReklamyMultimediaVast?dir=*&adType=PREROLL&$xmlhttprequest,domain=insys.pl (easylistchina+easylist.txt: 60034) -.adview.pl/ad/GetReklamyMultimediaVast\?dir=.*&adType=PREROLL& -# @@||insys.pl/Scripts/InsysPlayer.*/adTest.png$domain=insys.pl (easylist.txt: 49938) -.insys.pl/Scripts/InsysPlayer\..*/adTest\.png -# @@||adview.pl/ad/GetReklamyMultimediaVast?dir=*&adType=PREROLL&$xmlhttprequest,domain=insys.pl (easylist.txt: 49549) -.adview.pl/ad/GetReklamyMultimediaVast\?dir=.*&adType=PREROLL& - -#ab2p-unblock-dnt-R1329 -{+client-header-tagger{ab2p-unblock-dnt-R1329} \ -} -# @@||hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_$object,domain=interia.tv (easylistchina+easylist.txt: 61041) -.hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_ -# @@||hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_$object,domain=interia.tv (easylist.txt: 50556) -.hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_ - -#ab2p-unblock-dnt-R1330 -{+client-header-tagger{ab2p-unblock-dnt-R1330} \ -} -# @@||casino.com^*&affiliate=$popup,domain=internetcasinot.com (easylistchina+easylist.txt: 61406) -.casino.com/.*&affiliate= -# @@||casino.com^*&affiliate=$popup,domain=internetcasinot.com (easylist.txt: 50921) -.casino.com/.*&affiliate= - -#ab2p-unblock-dnt-R1331 -{+client-header-tagger{ab2p-unblock-dnt-R1331} \ -} -# @@||ip-address.org^$script,domain=ip-address.org (easylistchina+easylist.txt: 60431) -.ip-address.org -# @@||ip-address.org^$script,domain=ip-address.org (easylist.txt: 49946) -.ip-address.org - -#ab2p-unblock-dnt-R1332 -{+client-header-tagger{ab2p-unblock-dnt-R1332} \ -} -# @@||stat24.com/ad.xml?id=$object-subrequest,domain=ipla.tv (easylistchina+easylist.txt: 61125) -.stat24.com/ad\.xml\?id= -# @@||stat24.com/*/ad.xml?id=$object-subrequest,domain=ipla.tv (easylistchina+easylist.txt: 61124) -.stat24.com/.*/ad\.xml\?id= -# @@||stat24.com/ad.xml?id=$object-subrequest,domain=ipla.tv (easylist.txt: 50640) -.stat24.com/ad\.xml\?id= -# @@||stat24.com/*/ad.xml?id=$object-subrequest,domain=ipla.tv (easylist.txt: 50639) -.stat24.com/.*/ad\.xml\?id= - -#ab2p-unblock-dnt-R1333 -{+client-header-tagger{ab2p-unblock-dnt-R1333} \ -} -# @@||affiliate.fsas.eu^$subdocument,domain=iprima.cz (easylistchina+easylist.txt: 60967) -.affiliate.fsas.eu -# @@||affiliate.fsas.eu^$subdocument,domain=iprima.cz (easylist.txt: 50482) -.affiliate.fsas.eu - -#ab2p-unblock-dnt-R1334 -{+client-header-tagger{ab2p-unblock-dnt-R1334} \ -} -# @@||bw.pronto.ru/brick$script,domain=irr.ru (advblock.txt: 7628) -.bw.pronto.ru/brick -# @@||irr.ru/ajax/*/submission/get_cat$domain=irr.ru (advblock.txt: 7318) -.irr.ru/ajax/.*/submission/get_cat - -#ab2p-unblock-dnt-R1335 -{+client-header-tagger{ab2p-unblock-dnt-R1335} \ -} -# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina+easylist.txt: 10129) -.ad.3.cn/ads/mgets\? - -#ab2p-unblock-dnt-R1336 -{+client-header-tagger{ab2p-unblock-dnt-R1336} \ -} -# @@/adimg/*$domain=itools.cn|laniqu.com|tdx.com.cn|veryeast.cn (easylistchina+easylist.txt: 10005) -/(.*/)?adimg/.* - -#ab2p-unblock-dnt-R1337 -{+client-header-tagger{ab2p-unblock-dnt-R1337} \ -} -# @@||images.itreviews.com/*300x250_$domain=itreviews.com (easylistchina+easylist.txt: 61342) -.images.itreviews.com/.*300x250_ -# @@||images.itreviews.com/*300x250_$domain=itreviews.com (easylist.txt: 50857) -.images.itreviews.com/.*300x250_ - -#ab2p-unblock-dnt-R1338 -{+client-header-tagger{ab2p-unblock-dnt-R1338} \ -} -# @@||tom.itv.com/itv/tserver/size=$domain=itv.com (easylistchina+easylist.txt: 60810) -.tom.itv.com/itv/tserver/size= -# @@||tom.itv.com/crossdomain.xml$domain=itv.com (easylistchina+easylist.txt: 60809) -.tom.itv.com/crossdomain\.xml -# @@||flashtalking.com/spot/$image,domain=itv.com (easylistchina+easylist.txt: 60295) -.flashtalking.com/spot/ -# @@||itv.com/itv/lserver/jserver/area=*/pubtype=home/*showad=true/*/size=resptakeover/$script,domain=itv.com (easylistchina+easylist.txt: 59038) -.itv.com/itv/lserver/jserver/area=.*/pubtype=home/.*showad=true/.*/size=resptakeover/ -# @@||itv.com/itv/jserver/$script,domain=itv.com (easylistchina+easylist.txt: 59037) -.itv.com/itv/jserver/ -# @@||content.aimatch.com/swfobject.js$domain=itv.com (easylistchina+easylist.txt: 58618) -.content.aimatch.com/swfobject\.js -# @@||tom.itv.com/itv/tserver/size=$domain=itv.com (easylist.txt: 50325) -.tom.itv.com/itv/tserver/size= -# @@||tom.itv.com/crossdomain.xml$domain=itv.com (easylist.txt: 50324) -.tom.itv.com/crossdomain\.xml -# @@||flashtalking.com/spot/$image,domain=itv.com (easylist.txt: 49810) -.flashtalking.com/spot/ -# @@||itv.com/itv/lserver/jserver/area=*/pubtype=home/*showad=true/*/size=resptakeover/$script,domain=itv.com (easylist.txt: 48553) -.itv.com/itv/lserver/jserver/area=.*/pubtype=home/.*showad=true/.*/size=resptakeover/ -# @@||itv.com/itv/jserver/$script,domain=itv.com (easylist.txt: 48552) -.itv.com/itv/jserver/ -# @@||content.aimatch.com/swfobject.js$domain=itv.com (easylist.txt: 48133) -.content.aimatch.com/swfobject\.js - -#ab2p-unblock-dnt-R1339 -{+client-header-tagger{ab2p-unblock-dnt-R1339} \ -} -# @@||req.tidaltv.com/vmm.ashx?$object-subrequest,domain=itv.com|uktv.co.uk (easylistchina+easylist.txt: 60698) -.req.tidaltv.com/vmm\.ashx\? -# @@||req.tidaltv.com/vmm.ashx?$object-subrequest,domain=itv.com|uktv.co.uk (easylist.txt: 50213) -.req.tidaltv.com/vmm\.ashx\? +# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina.txt: 10027) +/(.*/)?img/ad_ #ab2p-unblock-dnt-R287 {+client-header-tagger{ab2p-unblock-dnt-R287} \ } -# @@||adriver.ru/cgi-bin/erle.cgi?*&sz=$object-subrequest,domain=ivi.ru (advblock.txt: 7232) -.adriver.ru/cgi-bin/erle\.cgi\?.*&sz= +# @@/store_ad/*$domain=pcstore.com.tw (easylistchina.txt: 10039) +/(.*/)?store_ad/.* -#ab2p-unblock-dnt-R1340 -{+client-header-tagger{ab2p-unblock-dnt-R1340} \ +#ab2p-unblock-dnt-R288 +{+client-header-tagger{ab2p-unblock-dnt-R288} \ } -# @@||example.com^$image,subdocument,domain=izzylaif.com (advblock.txt: 7564) -.example.com +# @@/advert_$domain=pisen.com.cn|wb.qq.com (easylistchina.txt: 10001) +/(.*/)?advert_ -#ab2p-unblock-dnt-R1341 -{+client-header-tagger{ab2p-unblock-dnt-R1341} \ +#ab2p-unblock-dnt-R289 +{+client-header-tagger{ab2p-unblock-dnt-R289} \ } -# @@||googlesyndication.com/pagead/show_ads.js$domain=izzylaif.com|trackitonline.ru (advblock.txt: 7573) -.googlesyndication.com/pagead/show_ads\.js +# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina.txt: 9998) +/(.*/)?adsense/.* -#ab2p-unblock-dnt-R1342 -{+client-header-tagger{ab2p-unblock-dnt-R1342} \ +#ab2p-unblock-dnt-R290 +{+client-header-tagger{ab2p-unblock-dnt-R290} \ } -# @@||ad.doubleclick.net/adi/*.JABONG.COM$document,subdocument,domain=jabong.com (easylistchina+easylist.txt: 58154) -.ad.doubleclick.net/adi/.*\.JABONG\.COM -# @@||ad.doubleclick.net/ad/*.JABONG.COM$image,domain=jabong.com (easylistchina+easylist.txt: 58152) -.ad.doubleclick.net/ad/.*\.JABONG\.COM -# @@||2mdn.net/viewad/*/B*_$image,domain=jabong.com (easylistchina+easylist.txt: 58125) -.2mdn.net/viewad/.*/B.*_ -# @@||ad.doubleclick.net/adi/*.JABONG.COM$document,subdocument,domain=jabong.com (easylist.txt: 47669) -.ad.doubleclick.net/adi/.*\.JABONG\.COM -# @@||ad.doubleclick.net/ad/*.JABONG.COM$image,domain=jabong.com (easylist.txt: 47667) -.ad.doubleclick.net/ad/.*\.JABONG\.COM -# @@||2mdn.net/viewad/*/B*_$image,domain=jabong.com (easylist.txt: 47640) -.2mdn.net/viewad/.*/B.*_ +# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina.txt: 10185) +.cbjs.baidu.com/js/s\.js -#ab2p-unblock-dnt-R1343 -{+client-header-tagger{ab2p-unblock-dnt-R1343} \ +#ab2p-unblock-dnt-R291 +{+client-header-tagger{ab2p-unblock-dnt-R291} \ } -# @@||impact-ad.jp/combo?$subdocument,domain=jalan.net (easylistchina+easylist.txt: 61042) -.impact-ad.jp/combo\? -# @@||impact-ad.jp/combo?$subdocument,domain=jalan.net (easylist.txt: 50557) -.impact-ad.jp/combo\? +# @@?bannerId=$domain=qbao.com (easylistchina.txt: 10047) +/.*\?bannerId= -#ab2p-unblock-dnt-R1344 -{+client-header-tagger{ab2p-unblock-dnt-R1344} \ +#ab2p-unblock-dnt-R292 +{+client-header-tagger{ab2p-unblock-dnt-R292} \ } -# @@||jamo.tv^$script,domain=jamo.tv (easylistchina+easylist.txt: 61745) -.jamo.tv -# @@||jamo.tv^$script,domain=jamo.tv (easylist.txt: 51260) -.jamo.tv +# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina.txt: 10475) +.tajs.qq.com/stats\? -#ab2p-unblock-dnt-R1345 -{+client-header-tagger{ab2p-unblock-dnt-R1345} \ +#ab2p-unblock-dnt-R293 +{+client-header-tagger{ab2p-unblock-dnt-R293} \ } -# @@||puhtml.com^*.js$domain=jav4.me (easylistchina+easylist.txt: 61773) -.puhtml.com/.*\.js -# @@||popads.net/pop.js$domain=jav4.me (easylistchina+easylist.txt: 61768) -.popads.net/pop\.js -# @@||juicyads.com/jac.js$domain=jav4.me (easylistchina+easylist.txt: 61755) -.juicyads.com/jac\.js -# @@||javfor.me/ads-1.html$subdocument,domain=jav4.me (easylistchina+easylist.txt: 61748) -.javfor.me/ads-1\.html -# @@||jav4.me^$script,domain=jav4.me (easylistchina+easylist.txt: 61746) -.jav4.me -# @@||puhtml.com^*.js$domain=jav4.me (easylist.txt: 51288) -.puhtml.com/.*\.js -# @@||popads.net/pop.js$domain=jav4.me (easylist.txt: 51283) -.popads.net/pop\.js -# @@||juicyads.com/jac.js$domain=jav4.me (easylist.txt: 51270) -.juicyads.com/jac\.js -# @@||javfor.me/ads-1.html$subdocument,domain=jav4.me (easylist.txt: 51263) -.javfor.me/ads-1\.html -# @@||jav4.me^$script,domain=jav4.me (easylist.txt: 51261) -.jav4.me +# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina.txt: 10145) +.ads.rakuya.com.tw -#ab2p-unblock-dnt-R1346 -{+client-header-tagger{ab2p-unblock-dnt-R1346} \ +#ab2p-unblock-dnt-R294 +{+client-header-tagger{ab2p-unblock-dnt-R294} \ } -# @@||javfee.com^$script,domain=javfee.com (easylistchina+easylist.txt: 61747) -.javfee.com -# @@||javfee.com^$script,domain=javfee.com (easylist.txt: 51262) -.javfee.com +# @@/pub/ad/*$domain=ruten.com.tw (easylistchina.txt: 10034) +/(.*/)?pub/ad/.* -#ab2p-unblock-dnt-R1347 -{+client-header-tagger{ab2p-unblock-dnt-R1347} \ +#ab2p-unblock-dnt-R295 +{+client-header-tagger{ab2p-unblock-dnt-R295} \ } -# @@||buysellads.com/ac/bsa.js$domain=jc-mp.com (easylistchina+easylist.txt: 60129) -.buysellads.com/ac/bsa\.js -# @@||buysellads.com/ac/bsa.js$domain=jc-mp.com (easylist.txt: 49644) -.buysellads.com/ac/bsa\.js +# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina.txt: 10051) +# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina.txt: 10038) +/(.*/)?show_ads_impl\.js +# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina.txt: 10020) +/(.*/)?g\.doubleclick\.net\.js\? +# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina.txt: 9997) +/(.*/)?adsbygoogle\. +adsbygoogle.*. +# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina.txt: 9991) +/(.*/)?adlogger_tracker\.php -#ab2p-unblock-dnt-R1348 -{+client-header-tagger{ab2p-unblock-dnt-R1348} \ +#ab2p-unblock-dnt-R296 +{+client-header-tagger{ab2p-unblock-dnt-R296} \ } -# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina+easylist.txt: 10130) -.ad.3.cn/flags/mgets\? -# @@||360buyimg.com/ads/$domain=jd.com (easylistchina+easylist.txt: 10102) -.360buyimg.com/ads/ -# @@||360buyimg.com/ad/$domain=jd.com (easylistchina+easylist.txt: 10101) -.360buyimg.com/ad/ -# @@&ad_width=810&$domain=jd.com (easylistchina+easylist.txt: 9980) -/.*&ad_width=810& -# @@&ad_width=590&$domain=jd.com (easylistchina+easylist.txt: 9979) -/.*&ad_width=590& +# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina.txt: 10003) +/(.*/)?advertise/.* -#ab2p-unblock-dnt-R1349 -{+client-header-tagger{ab2p-unblock-dnt-R1349} \ +#ab2p-unblock-dnt-R297 +{+client-header-tagger{ab2p-unblock-dnt-R297} \ } -# @@|http:$image,script,domain=jjcast.com (easylistchina+easylist.txt: 10068) +# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina.txt: 10472) +.sina.com.cn/iplookup/iplookup\.php\? -#ab2p-unblock-dnt-R1350 -{+client-header-tagger{ab2p-unblock-dnt-R1350} \ +#ab2p-unblock-dnt-R298 +{+client-header-tagger{ab2p-unblock-dnt-R298} \ } -# @@||jkhentai.tv^$script,domain=jkhentai.tv (easylistchina+easylist.txt: 61753) -.jkhentai.tv -# @@||jkhentai.tv^$script,domain=jkhentai.tv (easylist.txt: 51268) -.jkhentai.tv +# @@||gg.woniu.com^$domain=snail.com (easylistchina.txt: 10243) +.gg.woniu.com -#ab2p-unblock-dnt-R1351 -{+client-header-tagger{ab2p-unblock-dnt-R1351} \ +#ab2p-unblock-dnt-R299 +{+client-header-tagger{ab2p-unblock-dnt-R299} \ } -# @@||serving-sys.com/BurstingPipe/adServer.bs?$popup,domain=jobamatic.com (easylistchina+easylist.txt: 61415) -.serving-sys.com/BurstingPipe/adServer\.bs\? -# @@||serving-sys.com/BurstingPipe/adServer.bs?$popup,domain=jobamatic.com (easylist.txt: 50930) -.serving-sys.com/BurstingPipe/adServer\.bs\? +# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina.txt: 10462) +.googletagmanager.com/gtm\.js\? +# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina.txt: 10461) +.google-analytics.com/plugins/ua/linkid\.js -#ab2p-unblock-dnt-R1352 -{+client-header-tagger{ab2p-unblock-dnt-R1352} \ +#ab2p-unblock-dnt-R300 +{+client-header-tagger{ab2p-unblock-dnt-R300} \ } -# @@||joblib.ru/js/ads-$domain=joblib.ru (advblock.txt: 7319) -.joblib.ru/js/ads- +# @@||keyrun.cn^$script,domain=sx566.com (easylistchina.txt: 10284) +.keyrun.cn -#ab2p-unblock-dnt-R1353 -{+client-header-tagger{ab2p-unblock-dnt-R1353} \ +#ab2p-unblock-dnt-R301 +{+client-header-tagger{ab2p-unblock-dnt-R301} \ } -# @@||ads1.atpclick.com/atpClick.aspx?$image,script,domain=jobnet.co.il|jobs-israel.com (easylistchina+easylist.txt: 58279) -.ads1.atpclick.com/atpClick\.aspx\? -# @@||ads1.atpclick.com/atpClick.aspx?$image,script,domain=jobnet.co.il|jobs-israel.com (easylist.txt: 47794) -.ads1.atpclick.com/atpClick\.aspx\? +# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina.txt: 10372) +.szhr.com.cn -#ab2p-unblock-dnt-R1354 -{+client-header-tagger{ab2p-unblock-dnt-R1354} \ +#ab2p-unblock-dnt-R302 +{+client-header-tagger{ab2p-unblock-dnt-R302} \ } -# @@||cloudfront.net/_ads/$xmlhttprequest,domain=jobstreet.co.id|jobstreet.co.in|jobstreet.co.th|jobstreet.com|jobstreet.com.my|jobstreet.com.ph|jobstreet.com.sg|jobstreet.vn (easylistchina+easylist.txt: 58598) -.cloudfront.net/_ads/ -# @@||cloudfront.net/_ads/$xmlhttprequest,domain=jobstreet.co.id|jobstreet.co.in|jobstreet.co.th|jobstreet.com|jobstreet.com.my|jobstreet.com.ph|jobstreet.com.sg|jobstreet.vn (easylist.txt: 48113) -.cloudfront.net/_ads/ +# @@||alimama.com^$domain=tanx.com (easylistchina.txt: 10150) +.alimama.com +# @@/adx.$domain=tanx.com (easylistchina.txt: 10010) +/(.*/)?adx\. +adx.*. -#ab2p-unblock-dnt-R1355 -{+client-header-tagger{ab2p-unblock-dnt-R1355} \ +#ab2p-unblock-dnt-R303 +{+client-header-tagger{ab2p-unblock-dnt-R303} \ } -# @@||teasers.gs-media.de^$domain=joindota.com (advblock.txt: 7408) -.teasers.gs-media.de -# @@/teasers.$domain=joindota.com (advblock.txt: 7209) -/(.*/)?teasers\. -teasers.*. +# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10467) +.opehs.tanx.com/ex\? +# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10457) +.ecpm.tanx.com/ex\? -#ab2p-unblock-dnt-R1356 -{+client-header-tagger{ab2p-unblock-dnt-R1356} \ +#ab2p-unblock-dnt-R304 +{+client-header-tagger{ab2p-unblock-dnt-R304} \ } -# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina+easylist.txt: 10168) -.allyes.com.cn/player/AllyesAdPlayerV1\.swf\? +# @@||tdx.com.cn/images/*ad$domain=tdx.com.cn (easylistchina.txt: 10376) +.tdx.com.cn/images/.*ad -#ab2p-unblock-dnt-R1357 -{+client-header-tagger{ab2p-unblock-dnt-R1357} \ +#ab2p-unblock-dnt-R305 +{+client-header-tagger{ab2p-unblock-dnt-R305} \ } -# @@||kakprosto.ru/images/advertising/$domain=kakprosto.ru (advblock.txt: 7320) -.kakprosto.ru/images/advertising/ - -#ab2p-unblock-dnt-R1358 -{+client-header-tagger{ab2p-unblock-dnt-R1358} \ -} -# @@/prepareCode?*&dl=$script,domain=kakprosto.ru|rusplt.ru|sobesednik.ru (advblock.txt: 7617) -/(.*/)?prepareCode\?.*&dl= - -#ab2p-unblock-dnt-R1359 -{+client-header-tagger{ab2p-unblock-dnt-R1359} \ -} -# @@||amazon-adsystem.com/e/ir?$image,domain=kasi-time.com (easylistchina+easylist.txt: 60975) -.amazon-adsystem.com/e/ir\? -# @@||amazon-adsystem.com/e/ir?$image,domain=kasi-time.com (easylist.txt: 50490) -.amazon-adsystem.com/e/ir\? - -#ab2p-unblock-dnt-R1360 -{+client-header-tagger{ab2p-unblock-dnt-R1360} \ -} -# @@||phncdn.com/v2/js/adblockdetect.js$domain=keezmovies.com (easylistchina+easylist.txt: 61765) -.phncdn.com/v2/js/adblockdetect\.js -# @@||phncdn.com/v2/js/adblockdetect.js$domain=keezmovies.com (easylist.txt: 51280) -.phncdn.com/v2/js/adblockdetect\.js - -#ab2p-unblock-dnt-R1361 -{+client-header-tagger{ab2p-unblock-dnt-R1361} \ -} -# @@||liverail.com/js/LiveRail.Interstitial-$script,domain=keygames.com (easylistchina+easylist.txt: 59103) -.liverail.com/js/LiveRail\.Interstitial- -# @@||liverail.com/js/LiveRail.Interstitial-$script,domain=keygames.com (easylist.txt: 48618) -.liverail.com/js/LiveRail\.Interstitial- - -#ab2p-unblock-dnt-R1362 -{+client-header-tagger{ab2p-unblock-dnt-R1362} \ -} -# @@||pagead2.googlesyndication.com/pagead/imgad?$image,domain=kingofgames.net|nedbank.co.za|nedbankgreen.co.za|virginaustralia.com (easylistchina+easylist.txt: 59329) -.pagead2.googlesyndication.com/pagead/imgad\? -# @@||pagead2.googlesyndication.com/pagead/imgad?$image,domain=kingofgames.net|nedbank.co.za|nedbankgreen.co.za|virginaustralia.com (easylist.txt: 48844) -.pagead2.googlesyndication.com/pagead/imgad\? - -#ab2p-unblock-dnt-R1363 -{+client-header-tagger{ab2p-unblock-dnt-R1363} \ -} -# @@/ads.js|$script,domain=kinomoov.net|vgtimes.ru (advblock.txt: 7526) -/(.*/)?ads\.js$ -ads.js - -#ab2p-unblock-dnt-R1364 -{+client-header-tagger{ab2p-unblock-dnt-R1364} \ -} -# @@||awaps.yandex.ru^*_video_$script,domain=kinopoisk.ru (advblock.txt: 7272) -.awaps.yandex.ru/.*_video_ +# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina.txt: 10028) +/(.*/)?img_ad/.* #ab2p-unblock-dnt-R306 {+client-header-tagger{ab2p-unblock-dnt-R306} \ } -# @@||propellerads.com^*/adlogo/$domain=kissanime.com (easylistchina+easylist.txt: 61090) -.propellerads.com/.*/adlogo/ -# @@||sonobi.com/welcome/$image,domain=kissanime.com (easylistchina+easylist.txt: 60756) -.sonobi.com/welcome/ -# @@||rubiconproject.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60708) -.rubiconproject.com -# @@||propellerads.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60672) -.propellerads.com -# @@||mgid.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60523) -.mgid.com -# @@||mgid.com/k/i/kissanime.com.$script,domain=kissanime.com (easylistchina+easylist.txt: 60521) -.mgid.com/k/i/kissanime\.com\. -# @@||mgid.com/k/i/*.js?t=$script,domain=kissanime.com (easylistchina+easylist.txt: 60520) -.mgid.com/k/i/.*\.js\?t= -# @@||madadsmedia.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60483) -.madadsmedia.com -# @@||hornyspots.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60384) -.hornyspots.com -# @@||game-advertising-online.com/img/icon_stoplight.jpg?$domain=kissanime.com (easylistchina+easylist.txt: 60332) -.game-advertising-online.com/img/icon_stoplight\.jpg\? -# @@||epicgameads.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60252) -.epicgameads.com -# @@||dropboxusercontent.com/*ad$script,domain=kissanime.com (easylistchina+easylist.txt: 60237) -.dropboxusercontent.com/.*ad -# @@||cpxinteractive.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60189) -.cpxinteractive.com -# @@||cpmtree.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60188) -.cpmtree.com -# @@||cpmstar.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60187) -.cpmstar.com -# @@||cpmstar.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60186) -.cpmstar.com -# @@||cpalead.com^$domain=kissanime.com (easylistchina+easylist.txt: 60185) -.cpalead.com -# @@||core.adprotected.com^$subdocument,domain=kissanime.com (easylistchina+easylist.txt: 60181) -.core.adprotected.com -# @@||clickxchange.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60165) -.clickxchange.com -# @@||clicksor.net/images/$domain=kissanime.com (easylistchina+easylist.txt: 60164) -.clicksor.net/images/ -# @@||chitika.com^*/search-button.png?$image,domain=kissanime.com (easylistchina+easylist.txt: 60155) -.chitika.com/.*/search-button\.png\? -# @@||chango.com^*/jcrew.jpg?$image,domain=kissanime.com (easylistchina+easylist.txt: 60147) -.chango.com/.*/jcrew\.jpg\? -# @@||chango.com^*/adexchanger.png?$domain=kissanime.com (easylistchina+easylist.txt: 60146) -.chango.com/.*/adexchanger\.png\? -# @@||cdn.mgid.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60143) -.cdn.mgid.com -# @@||advertisegame.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60032) -.advertisegame.com -# @@||adnxs.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60003) -.adnxs.com -# @@||ad4game.com*/images/$image,domain=kissanime.com (easylistchina+easylist.txt: 59985) -.ad4game.com*./(.*/)?images/ -# @@|https://$script,domain=kissanime.com (easylistchina+easylist.txt: 59959) -# @@|http://*.js?_=$script,third-party,domain=kissanime.com (easylistchina+easylist.txt: 59948) -/.*\.js\?_= -# @@.gif^$image,third-party,domain=kissanime.com (easylistchina+easylist.txt: 59890) -/.*\.gif[^\w%.-] -.*.gif -# @@||propellerads.com^*/adlogo/$domain=kissanime.com (easylist.txt: 50605) -.propellerads.com/.*/adlogo/ -# @@||sonobi.com/welcome/$image,domain=kissanime.com (easylist.txt: 50271) -.sonobi.com/welcome/ -# @@||rubiconproject.com^$image,script,domain=kissanime.com (easylist.txt: 50223) -.rubiconproject.com -# @@||propellerads.com^$image,domain=kissanime.com (easylist.txt: 50187) -.propellerads.com -# @@||mgid.com^$image,domain=kissanime.com (easylist.txt: 50038) -.mgid.com -# @@||mgid.com/k/i/kissanime.com.$script,domain=kissanime.com (easylist.txt: 50036) -.mgid.com/k/i/kissanime\.com\. -# @@||mgid.com/k/i/*.js?t=$script,domain=kissanime.com (easylist.txt: 50035) -.mgid.com/k/i/.*\.js\?t= -# @@||madadsmedia.com^$image,script,domain=kissanime.com (easylist.txt: 49998) -.madadsmedia.com -# @@||hornyspots.com^$image,domain=kissanime.com (easylist.txt: 49899) -.hornyspots.com -# @@||game-advertising-online.com/img/icon_stoplight.jpg?$domain=kissanime.com (easylist.txt: 49847) -.game-advertising-online.com/img/icon_stoplight\.jpg\? -# @@||epicgameads.com^$image,script,domain=kissanime.com (easylist.txt: 49767) -.epicgameads.com -# @@||dropboxusercontent.com/*ad$script,domain=kissanime.com (easylist.txt: 49752) -.dropboxusercontent.com/.*ad -# @@||cpxinteractive.com^$script,domain=kissanime.com (easylist.txt: 49704) -.cpxinteractive.com -# @@||cpmtree.com^$script,domain=kissanime.com (easylist.txt: 49703) -.cpmtree.com -# @@||cpmstar.com^$script,domain=kissanime.com (easylist.txt: 49702) -.cpmstar.com -# @@||cpmstar.com^$image,domain=kissanime.com (easylist.txt: 49701) -.cpmstar.com -# @@||cpalead.com^$domain=kissanime.com (easylist.txt: 49700) -.cpalead.com -# @@||core.adprotected.com^$subdocument,domain=kissanime.com (easylist.txt: 49696) -.core.adprotected.com -# @@||clickxchange.com^$image,domain=kissanime.com (easylist.txt: 49680) -.clickxchange.com -# @@||clicksor.net/images/$domain=kissanime.com (easylist.txt: 49679) -.clicksor.net/images/ -# @@||chitika.com^*/search-button.png?$image,domain=kissanime.com (easylist.txt: 49670) -.chitika.com/.*/search-button\.png\? -# @@||chango.com^*/jcrew.jpg?$image,domain=kissanime.com (easylist.txt: 49662) -.chango.com/.*/jcrew\.jpg\? -# @@||chango.com^*/adexchanger.png?$domain=kissanime.com (easylist.txt: 49661) -.chango.com/.*/adexchanger\.png\? -# @@||cdn.mgid.com^$script,domain=kissanime.com (easylist.txt: 49658) -.cdn.mgid.com -# @@||advertisegame.com^$image,domain=kissanime.com (easylist.txt: 49547) -.advertisegame.com -# @@||adnxs.com^$script,domain=kissanime.com (easylist.txt: 49518) -.adnxs.com -# @@||ad4game.com*/images/$image,domain=kissanime.com (easylist.txt: 49500) -.ad4game.com*./(.*/)?images/ -# @@|https://$script,domain=kissanime.com (easylist.txt: 49474) -# @@|http://*.js?_=$script,third-party,domain=kissanime.com (easylist.txt: 49463) -/.*\.js\?_= -# @@.gif^$image,third-party,domain=kissanime.com (easylist.txt: 49405) -/.*\.gif[^\w%.-] -.*.gif - -#ab2p-unblock-dnt-R1365 -{+client-header-tagger{ab2p-unblock-dnt-R1365} \ -} -# @@||doublerecall.com/scripts/application.js$domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 60232) -.doublerecall.com/scripts/application\.js -# @@||adprotected.com/tags/$script,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 60005) -.adprotected.com/tags/ -# @@||ad4game.com/js/$script,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59986) -.ad4game.com/js/ -# @@.png^$image,third-party,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59909) -/.*\.png[^\w%.-] -.*.png -# @@.jpg^$image,third-party,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59898) -/.*\.jpg[^\w%.-] -.*.jpg -# @@||doublerecall.com/scripts/application.js$domain=kissanime.com|kisscartoon.me (easylist.txt: 49747) -.doublerecall.com/scripts/application\.js -# @@||adprotected.com/tags/$script,domain=kissanime.com|kisscartoon.me (easylist.txt: 49520) -.adprotected.com/tags/ -# @@||ad4game.com/js/$script,domain=kissanime.com|kisscartoon.me (easylist.txt: 49501) -.ad4game.com/js/ -# @@.png^$image,third-party,domain=kissanime.com|kisscartoon.me (easylist.txt: 49424) -/.*\.png[^\w%.-] -.*.png -# @@.jpg^$image,third-party,domain=kissanime.com|kisscartoon.me (easylist.txt: 49413) -/.*\.jpg[^\w%.-] -.*.jpg - -#ab2p-unblock-dnt-R1366 -{+client-header-tagger{ab2p-unblock-dnt-R1366} \ -} -# @@.to/ads/$domain=kissanime.to (easylistchina+easylist.txt: 59911) -/.*\.to/ads/ -.*.to/ads/ -# @@.to/ads/$domain=kissanime.to (easylist.txt: 49426) -/.*\.to/ads/ -.*.to/ads/ - -#ab2p-unblock-dnt-R1367 -{+client-header-tagger{ab2p-unblock-dnt-R1367} \ -} -# @@||tester.advertserve.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60792) -.tester.advertserve.com -# @@||mgid.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60524) -.mgid.com -# @@||cibleclick.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60159) -.cibleclick.com -# @@||adverticum.net/static/js/$domain=kisscartoon.me (easylistchina+easylist.txt: 60031) -.adverticum.net/static/js/ -# @@||adadvisor.net^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 59987) -.adadvisor.net -# @@?aid=$image,third-party,domain=kisscartoon.me (easylistchina+easylist.txt: 59940) -/.*\?aid= -# @@||tester.advertserve.com^$script,domain=kisscartoon.me (easylist.txt: 50307) -.tester.advertserve.com -# @@||mgid.com^$script,domain=kisscartoon.me (easylist.txt: 50039) -.mgid.com -# @@||cibleclick.com^$script,domain=kisscartoon.me (easylist.txt: 49674) -.cibleclick.com -# @@||adverticum.net/static/js/$domain=kisscartoon.me (easylist.txt: 49546) -.adverticum.net/static/js/ -# @@||adadvisor.net^$script,domain=kisscartoon.me (easylist.txt: 49502) -.adadvisor.net -# @@?aid=$image,third-party,domain=kisscartoon.me (easylist.txt: 49455) -/.*\?aid= - -#ab2p-unblock-dnt-R1368 -{+client-header-tagger{ab2p-unblock-dnt-R1368} \ -} -# @@/cgi-bin/banners/*$domain=km.ru (advblock.txt: 7197) -/(.*/)?cgi-bin/banners/.* - -#ab2p-unblock-dnt-R1369 -{+client-header-tagger{ab2p-unblock-dnt-R1369} \ -} -# @@||player.tritondigital.com^$domain=kmozart.com (easylistchina+easylist.txt: 59390) -.player.tritondigital.com -# @@||player.tritondigital.com^$domain=kmozart.com (easylist.txt: 48905) -.player.tritondigital.com - -#ab2p-unblock-dnt-R1370 -{+client-header-tagger{ab2p-unblock-dnt-R1370} \ -} -# @@||cas.clickability.com/cas/cas.js?r=$script,domain=kmvt.com (easylistchina+easylist.txt: 58548) -.cas.clickability.com/cas/cas\.js\?r= -# @@||cas.clickability.com/cas/cas.js?r=$script,domain=kmvt.com (easylist.txt: 48063) -.cas.clickability.com/cas/cas\.js\?r= - -#ab2p-unblock-dnt-R1371 -{+client-header-tagger{ab2p-unblock-dnt-R1371} \ -} -# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina+easylist.txt: 10472) -.google-analytics.com/analytics\.js - -#ab2p-unblock-dnt-R1372 -{+client-header-tagger{ab2p-unblock-dnt-R1372} \ -} -# @@||kongcdn.com/game_icons/*-300x250_$domain=kongregate.com (easylistchina+easylist.txt: 59067) -.kongcdn.com/game_icons/.*-300x250_ -# @@||ngads.com/gateway_$object-subrequest,domain=kongregate.com (advblock.txt: 7346) -.ngads.com/gateway_ -# @@||ngads.com/crossdomain.xml|$domain=kongregate.com (advblock.txt: 7345) -.ngads.com/crossdomain\.xml$ -# @@||kongcdn.com/game_icons/*-300x250_$domain=kongregate.com (easylist.txt: 48582) -.kongcdn.com/game_icons/.*-300x250_ - -#ab2p-unblock-dnt-R1373 -{+client-header-tagger{ab2p-unblock-dnt-R1373} \ -} -# @@||hostave4.net^*/video/$object-subrequest,domain=kporno.com (easylistchina+easylist.txt: 61442) -.hostave4.net/.*/video/ -# @@||hostave4.net^*/video/$object-subrequest,domain=kporno.com (easylist.txt: 50957) -.hostave4.net/.*/video/ - -#ab2p-unblock-dnt-R1374 -{+client-header-tagger{ab2p-unblock-dnt-R1374} \ -} -# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina+easylist.txt: 10293) -.kbcool.com/advpic/ - -#ab2p-unblock-dnt-R1375 -{+client-header-tagger{ab2p-unblock-dnt-R1375} \ -} -# @@||doubleclick.net^*/videoplayer*=worldnow$subdocument,domain=ktiv.com|wflx.com (easylistchina+easylist.txt: 58736) -.doubleclick.net/.*/videoplayer.*=worldnow -# @@||doubleclick.net^*/videoplayer*=worldnow$subdocument,domain=ktiv.com|wflx.com (easylist.txt: 48251) -.doubleclick.net/.*/videoplayer.*=worldnow - -#ab2p-unblock-dnt-R1376 -{+client-header-tagger{ab2p-unblock-dnt-R1376} \ -} -# @@||doubleclick.net/adj/kval/health;pos=gallerytop;sz=$script,domain=kval.com (easylistchina+easylist.txt: 58712) -.doubleclick.net/adj/kval/health;pos=gallerytop;sz= -# @@||doubleclick.net/adj/kval/health;pos=gallerytop;sz=$script,domain=kval.com (easylist.txt: 48227) -.doubleclick.net/adj/kval/health;pos=gallerytop;sz= - -#ab2p-unblock-dnt-R1377 -{+client-header-tagger{ab2p-unblock-dnt-R1377} \ -} -# @@||google.com/uds/api/ads/*/search.$script,domain=landandfarm.com|query.nytimes.com|trustedreviews.com|www.google.com (easylistchina+easylist.txt: 58908) -.google.com/uds/api/ads/.*/search\. -# @@||google.com/uds/api/ads/*/search.$script,domain=landandfarm.com|query.nytimes.com|trustedreviews.com|www.google.com (easylist.txt: 48423) -.google.com/uds/api/ads/.*/search\. - -#ab2p-unblock-dnt-R1378 -{+client-header-tagger{ab2p-unblock-dnt-R1378} \ -} -# @@||doubleclick.net/pfadx/*/cbs/$object-subrequest,domain=latimes.com (easylistchina+easylist.txt: 58725) -.doubleclick.net/pfadx/.*/cbs/ -# @@||doubleclick.net/pfadx/*/cbs/$object-subrequest,domain=latimes.com (easylist.txt: 48240) -.doubleclick.net/pfadx/.*/cbs/ - -#ab2p-unblock-dnt-R1379 -{+client-header-tagger{ab2p-unblock-dnt-R1379} \ -} -# @@||latinospost.com/widget_init.php$script,third-party,domain=latinopost.com (easylistchina+easylist.txt: 46007) -.latinospost.com/widget_init\.php -# @@||boomsbeat.com/widget_init.php$script,third-party,domain=latinopost.com (easylistchina+easylist.txt: 45954) -.boomsbeat.com/widget_init\.php -# @@||latinospost.com/widget_init.php$script,third-party,domain=latinopost.com (easylist.txt: 35522) -.latinospost.com/widget_init\.php -# @@||boomsbeat.com/widget_init.php$script,third-party,domain=latinopost.com (easylist.txt: 35469) -.boomsbeat.com/widget_init\.php - -#ab2p-unblock-dnt-R1380 -{+client-header-tagger{ab2p-unblock-dnt-R1380} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=lavozdegalicia.es (easylistchina+easylist.txt: 61082) +# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina.txt: 10315) .partner.googleadservices.com/gpt/pubads_impl_ -# @@||g.doubleclick.net/gampad/ads?*_Ligatus&$script,domain=lavozdegalicia.es (easylistchina+easylist.txt: 61032) -.g.doubleclick.net/gampad/ads\?.*_Ligatus& -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=lavozdegalicia.es (easylist.txt: 50597) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||g.doubleclick.net/gampad/ads?*_Ligatus&$script,domain=lavozdegalicia.es (easylist.txt: 50547) -.g.doubleclick.net/gampad/ads\?.*_Ligatus& +# @@||ads.$domain=tvb.com (easylistchina.txt: 10142) +.ads.*. -#ab2p-unblock-dnt-R1381 -{+client-header-tagger{ab2p-unblock-dnt-R1381} \ +#ab2p-unblock-dnt-R307 +{+client-header-tagger{ab2p-unblock-dnt-R307} \ } -# @@/tizer_$domain=led66.ru (advblock.txt: 7212) -/(.*/)?tizer_ +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=tw.autos.yahoo.com|tw.buy.yahoo.com (easylistchina.txt: 10459) +.geo.query.yahoo.com -#ab2p-unblock-dnt-R1382 -{+client-header-tagger{ab2p-unblock-dnt-R1382} \ +#ab2p-unblock-dnt-R308 +{+client-header-tagger{ab2p-unblock-dnt-R308} \ } -# @@||wixstatic.com/media/*_300_250_$image,domain=lenislens.com (easylistchina+easylist.txt: 61390) -.wixstatic.com/media/.*_300_250_ -# @@||wixstatic.com/media/*_300_250_$image,domain=lenislens.com (easylist.txt: 50905) -.wixstatic.com/media/.*_300_250_ +# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina.txt: 10385) +.tw.m.yimg.com/res/ads/ -#ab2p-unblock-dnt-R1383 -{+client-header-tagger{ab2p-unblock-dnt-R1383} \ +#ab2p-unblock-dnt-R309 +{+client-header-tagger{ab2p-unblock-dnt-R309} \ } -# @@.custom.min.js$script,domain=lenta.ru|news.rambler.ru (advblock.txt: 7178) -/.*\.custom\.min\.js -.*.custom.min.js*. +# @@||union.$domain=union.163.com (easylistchina.txt: 10390) +.union.*. -#ab2p-unblock-dnt-R1384 -{+client-header-tagger{ab2p-unblock-dnt-R1384} \ +#ab2p-unblock-dnt-R310 +{+client-header-tagger{ab2p-unblock-dnt-R310} \ } -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina+easylist.txt: 10323) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js +# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina.txt: 10362) +.sinaimg.cn/unipro/pub/suda_m_v629\.js -#ab2p-unblock-dnt-R1385 -{+client-header-tagger{ab2p-unblock-dnt-R1385} \ +#ab2p-unblock-dnt-R311 +{+client-header-tagger{ab2p-unblock-dnt-R311} \ } -# @@/adsame.$domain=liba.com|libaclub.com (easylistchina+easylist.txt: 10010) -/(.*/)?adsame\. -adsame.*. +# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina.txt: 10144) +.ads.myopen.vip.com -#ab2p-unblock-dnt-R1386 -{+client-header-tagger{ab2p-unblock-dnt-R1386} \ +#ab2p-unblock-dnt-R312 +{+client-header-tagger{ab2p-unblock-dnt-R312} \ } -# @@/getCodeTest?$object-subrequest,domain=life.ru|smotri.com|video.reset.ru (advblock.txt: 7538) -/(.*/)?getCodeTest\? -# @@/getCode?$object-subrequest,domain=life.ru|smotri.com|video.reset.ru (advblock.txt: 7537) -/(.*/)?getCode\? +# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina.txt: 10252) +.hd.duba.net/vip\.ijinshan\.com/repository/ad-images/ -#ab2p-unblock-dnt-R1387 -{+client-header-tagger{ab2p-unblock-dnt-R1387} \ +#ab2p-unblock-dnt-R313 +{+client-header-tagger{ab2p-unblock-dnt-R313} \ } -# @@||adgear.com^*/adgear.js$domain=lifemadedelicious.ca|tac.tv (easylistchina+easylist.txt: 58198) -.adgear.com/.*/adgear\.js -# @@||adgear.com^*/adgear.js$domain=lifemadedelicious.ca|tac.tv (easylist.txt: 47713) -.adgear.com/.*/adgear\.js +# @@/AdImage/*$domain=wacom.tw (easylistchina.txt: 9988) +/(.*/)?AdImage/.* -#ab2p-unblock-dnt-R1388 -{+client-header-tagger{ab2p-unblock-dnt-R1388} \ +#ab2p-unblock-dnt-R314 +{+client-header-tagger{ab2p-unblock-dnt-R314} \ } -# @@||sascdn.com/video/$object,script,domain=ligtv.com.tr (easylistchina+easylist.txt: 61108) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/current/libs/js/controller.js$domain=ligtv.com.tr (easylistchina+easylist.txt: 61107) -.sascdn.com/diff/video/current/libs/js/controller\.js -# @@||sascdn.com/video/$object,script,domain=ligtv.com.tr (easylist.txt: 50623) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/current/libs/js/controller.js$domain=ligtv.com.tr (easylist.txt: 50622) -.sascdn.com/diff/video/current/libs/js/controller\.js +# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina.txt: 10098) +.70e.com/js/2013_new\.js -#ab2p-unblock-dnt-R1389 -{+client-header-tagger{ab2p-unblock-dnt-R1389} \ +#ab2p-unblock-dnt-R315 +{+client-header-tagger{ab2p-unblock-dnt-R315} \ } -# @@||live.seenreport.com:82/media/js/fingerprint.js?$domain=live.geo.tv (easylistchina+easylist.txt: 59098) -.live.seenreport.com:82/media/js/fingerprint\.js\? -# @@||live.seenreport.com:82/media/js/ads_controller.js?$domain=live.geo.tv (easylistchina+easylist.txt: 59097) -.live.seenreport.com:82/media/js/ads_controller\.js\? -# @@||live.seenreport.com:82/media/js/fingerprint.js?$domain=live.geo.tv (easylist.txt: 48613) -.live.seenreport.com:82/media/js/fingerprint\.js\? -# @@||live.seenreport.com:82/media/js/ads_controller.js?$domain=live.geo.tv (easylist.txt: 48612) -.live.seenreport.com:82/media/js/ads_controller\.js\? +# @@/show_ad_$domain=wb.qq.com (easylistchina.txt: 10037) +/(.*/)?show_ad_ -#ab2p-unblock-dnt-R1390 -{+client-header-tagger{ab2p-unblock-dnt-R1390} \ +#ab2p-unblock-dnt-R316 +{+client-header-tagger{ab2p-unblock-dnt-R316} \ } -# @@||scity.tv/js/ads.js$domain=live.scity.tv (easylistchina+easylist.txt: 59495) -.scity.tv/js/ads\.js -# @@||scity.tv/js/ads.js$domain=live.scity.tv (easylist.txt: 49010) -.scity.tv/js/ads\.js +# @@/LoadAds.$domain=webcars.com.cn (easylistchina.txt: 10030) +/(.*/)?LoadAds\. +LoadAds.*. -#ab2p-unblock-dnt-R1391 -{+client-header-tagger{ab2p-unblock-dnt-R1391} \ +#ab2p-unblock-dnt-R317 +{+client-header-tagger{ab2p-unblock-dnt-R317} \ } -# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina+easylist.txt: 10382) -.stockstar.com/ad/ +# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina.txt: 10342) +.rm.sina.com.cn/minisite/ -#ab2p-unblock-dnt-R1392 -{+client-header-tagger{ab2p-unblock-dnt-R1392} \ +#ab2p-unblock-dnt-R318 +{+client-header-tagger{ab2p-unblock-dnt-R318} \ } -# @@||amazonaws.com/banners/$image,domain=livefromdarylshouse.com|pandasecurity.com (easylistchina+easylist.txt: 58397) -.amazonaws.com/banners/ -# @@||amazonaws.com/banners/$image,domain=livefromdarylshouse.com|pandasecurity.com (easylist.txt: 47912) -.amazonaws.com/banners/ +# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina.txt: 10473) +.sinajs.cn/open/analytics/js/suda\.js -#ab2p-unblock-dnt-R1393 -{+client-header-tagger{ab2p-unblock-dnt-R1393} \ +#ab2p-unblock-dnt-R319 +{+client-header-tagger{ab2p-unblock-dnt-R319} \ } -# @@||livejournal.com/js/??*?v=$script,domain=livejournal.com (advblock.txt: 7325) -.livejournal.com/js/\?\?.*\?v= +# @@||adsense.woso.cn^$domain=woso.cn (easylistchina.txt: 10146) +.adsense.woso.cn -#ab2p-unblock-dnt-R1394 -{+client-header-tagger{ab2p-unblock-dnt-R1394} \ +#ab2p-unblock-dnt-R320 +{+client-header-tagger{ab2p-unblock-dnt-R320} \ } -# @@||livelib.ru/img/skins/*/baner_$image,domain=livelib.ru (advblock.txt: 7326) -.livelib.ru/img/skins/.*/baner_ +# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina.txt: 10266) +.ifengimg.com/ifeng/sources/region_ +# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina.txt: 10265) +.ifengimg.com/ifeng/sources/inice_ -#ab2p-unblock-dnt-R1395 -{+client-header-tagger{ab2p-unblock-dnt-R1395} \ +#ab2p-unblock-dnt-R321 +{+client-header-tagger{ab2p-unblock-dnt-R321} \ } -# @@||scanscout.com/ads/$object-subrequest,domain=livestream.com (easylistchina+easylist.txt: 59493) -.scanscout.com/ads/ -# @@||adotube.com/adapters/as3overstream*.swf?$domain=livestream.com (easylistchina+easylist.txt: 58214) -.adotube.com/adapters/as3overstream.*\.swf\? -# @@||scanscout.com/ads/$object-subrequest,domain=livestream.com (easylist.txt: 49008) -.scanscout.com/ads/ -# @@||adotube.com/adapters/as3overstream*.swf?$domain=livestream.com (easylist.txt: 47729) -.adotube.com/adapters/as3overstream.*\.swf\? +# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina.txt: 10471) +.simba.taobao.com/\?name=tcmad& -#ab2p-unblock-dnt-R1396 -{+client-header-tagger{ab2p-unblock-dnt-R1396} \ +#ab2p-unblock-dnt-R322 +{+client-header-tagger{ab2p-unblock-dnt-R322} \ } -# @@||directorym.com/articles_media/$domain=localmarket.autismsupportnetwork.com (easylistchina+easylist.txt: 58674) -.directorym.com/articles_media/ -# @@||directorym.com/articles_media/$domain=localmarket.autismsupportnetwork.com (easylist.txt: 48189) -.directorym.com/articles_media/ +# @@&ad_type=$domain=x.jd.com (easylistchina.txt: 9964) +/.*&ad_type= -#ab2p-unblock-dnt-R1397 -{+client-header-tagger{ab2p-unblock-dnt-R1397} \ +#ab2p-unblock-dnt-R323 +{+client-header-tagger{ab2p-unblock-dnt-R323} \ } -# @@||transitcard.ru/resources/js/informer.js|$domain=locator.transitcard.ru (advblock.txt: 7412) -.transitcard.ru/resources/js/informer\.js$ +# @@/analytics.php?$domain=xcar.com.cn (easylistchina.txt: 10446) +/(.*/)?analytics\.php\? -#ab2p-unblock-dnt-R1398 -{+client-header-tagger{ab2p-unblock-dnt-R1398} \ +#ab2p-unblock-dnt-R324 +{+client-header-tagger{ab2p-unblock-dnt-R324} \ } -# @@||advertise.bingads.microsoft.com/Includes/$domain=login.live.com (easylistchina+easylist.txt: 61226) -.advertise.bingads.microsoft.com/Includes/ -# @@||advertise.bingads.microsoft.com/Includes/$domain=login.live.com (easylist.txt: 50741) -.advertise.bingads.microsoft.com/Includes/ - -#ab2p-unblock-dnt-R1399 -{+client-header-tagger{ab2p-unblock-dnt-R1399} \ -} -# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina+easylist.txt: 10481) -.pingjs.qq.com/ping_tcss_ied\.js - -#ab2p-unblock-dnt-R1400 -{+client-header-tagger{ab2p-unblock-dnt-R1400} \ -} -# @@/adsbox.$domain=long7.qq.com (easylistchina+easylist.txt: 10011) -/(.*/)?adsbox\. -adsbox.*. - -#ab2p-unblock-dnt-R1401 -{+client-header-tagger{ab2p-unblock-dnt-R1401} \ -} -# @@||csbew.com^$domain=longbl.com (easylistchina+easylist.txt: 10218) -.csbew.com - -#ab2p-unblock-dnt-R1402 -{+client-header-tagger{ab2p-unblock-dnt-R1402} \ -} -# @@||loot.com/content/css/combo/advert_$domain=loot.com (easylistchina+easylist.txt: 59110) -.loot.com/content/css/combo/advert_ -# @@||loot.com/content/css/combo/advert_$domain=loot.com (easylist.txt: 48625) -.loot.com/content/css/combo/advert_ - -#ab2p-unblock-dnt-R1403 -{+client-header-tagger{ab2p-unblock-dnt-R1403} \ -} -# @@||lostfilm.info^$script,domain=lostfilm.tv (advblock.txt: 691) -.lostfilm.info - -#ab2p-unblock-dnt-R1404 -{+client-header-tagger{ab2p-unblock-dnt-R1404} \ -} -# @@||ad.adorika.com/st?ad_type=ad&ad_size=728x90$script,domain=lshunter.tv (easylistchina+easylist.txt: 58149) -.ad.adorika.com/st\?ad_type=ad&ad_size=728x90 -# @@||ad.adorika.com/st?ad_type=ad&ad_size=728x90$script,domain=lshunter.tv (easylist.txt: 47664) -.ad.adorika.com/st\?ad_type=ad&ad_size=728x90 - -#ab2p-unblock-dnt-R1405 -{+client-header-tagger{ab2p-unblock-dnt-R1405} \ -} -# @@||d3iuob6xw3k667.cloudfront.net^*.com/ad/$xmlhttprequest,domain=lucidchart.com|lucidpress.com (easylistchina+easylist.txt: 58642) -.d3iuob6xw3k667.cloudfront.net/.*\.com/ad/ -# @@||d3iuob6xw3k667.cloudfront.net^*.com/ad/$xmlhttprequest,domain=lucidchart.com|lucidpress.com (easylist.txt: 48157) -.d3iuob6xw3k667.cloudfront.net/.*\.com/ad/ - -#ab2p-unblock-dnt-R1406 -{+client-header-tagger{ab2p-unblock-dnt-R1406} \ -} -# @@||adcreative.naver.com/ad3/js/min/da.m.min.js$domain=m.naver.com (easylistchina+easylist.txt: 58191) -.adcreative.naver.com/ad3/js/min/da\.m\.min\.js -# @@||adcreative.naver.com/ad3/js/min/da.m.min.js$domain=m.naver.com (easylist.txt: 47706) -.adcreative.naver.com/ad3/js/min/da\.m\.min\.js - -#ab2p-unblock-dnt-R1407 -{+client-header-tagger{ab2p-unblock-dnt-R1407} \ -} -# @@||kixer.com/ad/2?$xmlhttprequest,domain=m.tmz.com (easylistchina+easylist.txt: 59063) -.kixer.com/ad/2\? -# @@||kixer.com/ad/12?$xmlhttprequest,domain=m.tmz.com (easylistchina+easylist.txt: 59062) -.kixer.com/ad/12\? -# @@||kixer.com/ad/2?$xmlhttprequest,domain=m.tmz.com (easylist.txt: 48578) -.kixer.com/ad/2\? -# @@||kixer.com/ad/12?$xmlhttprequest,domain=m.tmz.com (easylist.txt: 48577) -.kixer.com/ad/12\? - -#ab2p-unblock-dnt-R1408 -{+client-header-tagger{ab2p-unblock-dnt-R1408} \ -} -# @@||mackolik.com^$script,domain=mackolik.com (easylistchina+easylist.txt: 60481) -.mackolik.com -# @@||mackolik.com^$script,domain=mackolik.com (easylist.txt: 49996) -.mackolik.com - -#ab2p-unblock-dnt-R1409 -{+client-header-tagger{ab2p-unblock-dnt-R1409} \ -} -# @@||medyanetads.com/ad.js$domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60511) -.medyanetads.com/ad\.js -# @@||admost.com/adx/js/admost.js$domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60002) -.admost.com/adx/js/admost\.js -# @@||admost.com/adx/get.ashx?$script,domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60001) -.admost.com/adx/get\.ashx\? -# @@||medyanetads.com/ad.js$domain=mackolik.com|sahadan.com (easylist.txt: 50026) -.medyanetads.com/ad\.js -# @@||admost.com/adx/js/admost.js$domain=mackolik.com|sahadan.com (easylist.txt: 49517) -.admost.com/adx/js/admost\.js -# @@||admost.com/adx/get.ashx?$script,domain=mackolik.com|sahadan.com (easylist.txt: 49516) -.admost.com/adx/get\.ashx\? - -#ab2p-unblock-dnt-R1410 -{+client-header-tagger{ab2p-unblock-dnt-R1410} \ -} -# @@||madyar.net/baners/$domain=madyar.net (advblock.txt: 7329) -.madyar.net/baners/ - -#ab2p-unblock-dnt-R1411 -{+client-header-tagger{ab2p-unblock-dnt-R1411} \ -} -# @@||google.com/ads/popudner/banner.jpg?$domain=magesy.be (easylistchina+easylist.txt: 60362) -.google.com/ads/popudner/banner\.jpg\? -# @@||popunder.ru/banners/$domain=magesy.be (easylistchina+easylist.txt: 59402) -.popunder.ru/banners/ -# @@||google.com/ads/popudner/banner.jpg?$domain=magesy.be (easylist.txt: 49877) -.google.com/ads/popudner/banner\.jpg\? -# @@||popunder.ru/banners/$domain=magesy.be (easylist.txt: 48917) -.popunder.ru/banners/ - -#ab2p-unblock-dnt-R1412 -{+client-header-tagger{ab2p-unblock-dnt-R1412} \ -} -# @@||g.doubleclick.net/gampad/ad?iu=*/Leaderboard&sz=728x90$image,domain=magicseaweed.com (easylistchina+easylist.txt: 60320) -.g.doubleclick.net/gampad/ad\?iu=.*/Leaderboard&sz=728x90 -# @@||g.doubleclick.net/gampad/ad?iu=*/Leaderboard&sz=728x90$image,domain=magicseaweed.com (easylist.txt: 49835) -.g.doubleclick.net/gampad/ad\?iu=.*/Leaderboard&sz=728x90 - -#ab2p-unblock-dnt-R1413 -{+client-header-tagger{ab2p-unblock-dnt-R1413} \ -} -# @@||msads.net/adbar/products/*/adbar.js$domain=mail.live.com (easylistchina+easylist.txt: 59197) -.msads.net/adbar/products/.*/adbar\.js -# @@||msads.net/adbar/products/*/adbar.js$domain=mail.live.com (easylist.txt: 48712) -.msads.net/adbar/products/.*/adbar\.js +# @@/addata.$domain=xdf.cn (easylistchina.txt: 9985) +/(.*/)?addata\. +addata.*. #ab2p-unblock-dnt-R325 {+client-header-tagger{ab2p-unblock-dnt-R325} \ } -# @@||imgsmail.ru^*/btn/adv/$domain=mail.ru (advblock.txt: 7314) -.imgsmail.ru/.*/btn/adv/ +# @@/adblock.js$domain=xingk.cc (easylistchina.txt: 9984) +/(.*/)?adblock\.js +adblock.js*. #ab2p-unblock-dnt-R326 {+client-header-tagger{ab2p-unblock-dnt-R326} \ } -# @@||adserver.yahoo.com/a?*=headr$script,domain=mail.yahoo.com (easylistchina+easylist.txt: 58299) -.adserver.yahoo.com/a\?.*=headr -# @@||adserver.yahoo.com/a?*=headr$script,domain=mail.yahoo.com (easylist.txt: 47814) -.adserver.yahoo.com/a\?.*=headr +# @@/PIC/AD/*$domain=ybjk.com (easylistchina.txt: 10032) +/(.*/)?PIC/AD/.* #ab2p-unblock-dnt-R327 {+client-header-tagger{ab2p-unblock-dnt-R327} \ } -# @@||sixpool.me^$image,domain=majorleaguegaming.com (easylistchina+easylist.txt: 60741) -.sixpool.me -# @@||pagead2.googlesyndication.com/pagead/js/lidar.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 60627) -.pagead2.googlesyndication.com/pagead/js/lidar\.js -# @@||fragflix.com^*.png?*=$image,domain=majorleaguegaming.com (easylistchina+easylist.txt: 60301) -.fragflix.com/.*\.png\?.*= -# @@||adzerk.net/ados.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 60035) -.adzerk.net/ados\.js -# @@.png?advertisement_$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59907) -/.*\.png\?advertisement_ -# @@.png?ad_banner=$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59906) -/.*\.png\?ad_banner= -# @@.gif?ad_banner=$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59889) -/.*\.gif\?ad_banner= -# @@||sixpool.me^$image,domain=majorleaguegaming.com (easylist.txt: 50256) -.sixpool.me -# @@||pagead2.googlesyndication.com/pagead/js/lidar.js$domain=majorleaguegaming.com (easylist.txt: 50142) -.pagead2.googlesyndication.com/pagead/js/lidar\.js -# @@||fragflix.com^*.png?*=$image,domain=majorleaguegaming.com (easylist.txt: 49816) -.fragflix.com/.*\.png\?.*= -# @@||adzerk.net/ados.js$domain=majorleaguegaming.com (easylist.txt: 49550) -.adzerk.net/ados\.js -# @@.png?advertisement_$domain=majorleaguegaming.com (easylist.txt: 49422) -/.*\.png\?advertisement_ -# @@.png?ad_banner=$domain=majorleaguegaming.com (easylist.txt: 49421) -/.*\.png\?ad_banner= -# @@.gif?ad_banner=$domain=majorleaguegaming.com (easylist.txt: 49404) -/.*\.gif\?ad_banner= - -#ab2p-unblock-dnt-R1414 -{+client-header-tagger{ab2p-unblock-dnt-R1414} \ -} -# @@||g.doubleclick.net/gampad/ads?$object-subrequest,domain=majorleaguegaming.com|nfl.com|player.rogersradio.ca|twitch.tv|viki.com|volarvideo.com|worldstarhiphop.com (easylistchina+easylist.txt: 58850) -.g.doubleclick.net/gampad/ads\? -# @@||g.doubleclick.net/gampad/ads?$object-subrequest,domain=majorleaguegaming.com|nfl.com|player.rogersradio.ca|twitch.tv|viki.com|volarvideo.com|worldstarhiphop.com (easylist.txt: 48365) -.g.doubleclick.net/gampad/ads\? - -#ab2p-unblock-dnt-R1415 -{+client-header-tagger{ab2p-unblock-dnt-R1415} \ -} -# @@||ad4.liverail.com/?compressed|$domain=majorleaguegaming.com|pbs.org|wikihow.com (easylistchina+easylist.txt: 58167) -.ad4.liverail.com/\?compressed$ -# @@||ad4.liverail.com/?compressed|$domain=majorleaguegaming.com|pbs.org|wikihow.com (easylist.txt: 47682) -.ad4.liverail.com/\?compressed$ - -#ab2p-unblock-dnt-R1416 -{+client-header-tagger{ab2p-unblock-dnt-R1416} \ -} -# @@||ads.rubiconproject.com/ad/$script,domain=manga2u.co|mangabird.com|memegenerator.net|onemanga.me|waoanime.tv (easylistchina+easylist.txt: 60018) -.ads.rubiconproject.com/ad/ -# @@||ads.rubiconproject.com/ad/$script,domain=manga2u.co|mangabird.com|memegenerator.net|onemanga.me|waoanime.tv (easylist.txt: 49533) -.ads.rubiconproject.com/ad/ - -#ab2p-unblock-dnt-R1417 -{+client-header-tagger{ab2p-unblock-dnt-R1417} \ -} -# @@||server.cpmstar.com/view.aspx?poolid=$domain=manga2u.co|newgrounds.com|xfire.com (easylistchina+easylist.txt: 59518) -.server.cpmstar.com/view\.aspx\?poolid= -# @@||server.cpmstar.com/view.aspx?poolid=$domain=manga2u.co|newgrounds.com|xfire.com (easylist.txt: 49033) -.server.cpmstar.com/view\.aspx\?poolid= - -#ab2p-unblock-dnt-R1418 -{+client-header-tagger{ab2p-unblock-dnt-R1418} \ -} -# @@||optimized-by.rubiconproject.com/a/$domain=manga2u.co|onemanga.me|pro-football-reference.com (easylistchina+easylist.txt: 60617) -.optimized-by.rubiconproject.com/a/ -# @@||optimized-by.rubiconproject.com/a/$domain=manga2u.co|onemanga.me|pro-football-reference.com (easylist.txt: 50132) -.optimized-by.rubiconproject.com/a/ - -#ab2p-unblock-dnt-R1419 -{+client-header-tagger{ab2p-unblock-dnt-R1419} \ -} -# @@||optimized-by.rubiconproject.com/a/*-2.html?$subdocument,domain=mangasky.co (easylistchina+easylist.txt: 60618) -.optimized-by.rubiconproject.com/a/.*-2\.html\? -# @@||ads.rubiconproject.com/ad/$domain=mangasky.co (easylistchina+easylist.txt: 60017) -.ads.rubiconproject.com/ad/ -# @@||optimized-by.rubiconproject.com/a/*-2.html?$subdocument,domain=mangasky.co (easylist.txt: 50133) -.optimized-by.rubiconproject.com/a/.*-2\.html\? -# @@||ads.rubiconproject.com/ad/$domain=mangasky.co (easylist.txt: 49532) -.ads.rubiconproject.com/ad/ - -#ab2p-unblock-dnt-R1420 -{+client-header-tagger{ab2p-unblock-dnt-R1420} \ -} -# @@||rsense-ad.realclick.co.kr/favicon.ico?id=$image,domain=mangaumaru.com (easylistchina+easylist.txt: 60705) -.rsense-ad.realclick.co.kr/favicon\.ico\?id= -# @@||rsense-ad.realclick.co.kr/favicon.ico?id=$image,domain=mangaumaru.com (easylist.txt: 50220) -.rsense-ad.realclick.co.kr/favicon\.ico\?id= - -#ab2p-unblock-dnt-R1421 -{+client-header-tagger{ab2p-unblock-dnt-R1421} \ -} -# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina+easylist.txt: 9988) -/.*\.com/adv/ -.*.com/adv/ - -#ab2p-unblock-dnt-R1422 -{+client-header-tagger{ab2p-unblock-dnt-R1422} \ -} -# @@||search.spotxchange.com/vast/$object-subrequest,domain=maniatv.com (easylistchina+easylist.txt: 60726) -.search.spotxchange.com/vast/ -# @@||search.spotxchange.com/vast/$object-subrequest,domain=maniatv.com (easylist.txt: 50241) -.search.spotxchange.com/vast/ - -#ab2p-unblock-dnt-R1423 -{+client-header-tagger{ab2p-unblock-dnt-R1423} \ -} -# @@||doubleclick.net/adj/oiq.man.$script,domain=manualsonline.com (easylistchina+easylist.txt: 58714) -.doubleclick.net/adj/oiq\.man\. -# @@||doubleclick.net/adj/oiq.man.$script,domain=manualsonline.com (easylist.txt: 48229) -.doubleclick.net/adj/oiq\.man\. - -#ab2p-unblock-dnt-R1424 -{+client-header-tagger{ab2p-unblock-dnt-R1424} \ -} -# @@||aka-cdn-ns.adtech.de/apps/$object-subrequest,domain=manutd.com (easylistchina+easylist.txt: 58373) -.aka-cdn-ns.adtech.de/apps/ -# @@||aka-cdn-ns.adtech.de/apps/$object-subrequest,domain=manutd.com (easylist.txt: 47888) -.aka-cdn-ns.adtech.de/apps/ - -#ab2p-unblock-dnt-R1425 -{+client-header-tagger{ab2p-unblock-dnt-R1425} \ -} -# @@||reklama.hiking.sk/openx_new/www/delivery/spcjs.php?id=*&target=_blank$script,domain=mapy.hiking.sk (easylistchina+easylist.txt: 61096) -.reklama.hiking.sk/openx_new/www/delivery/spcjs\.php\?id=.*&target=_blank -# @@||reklama.hiking.sk/openx_new/www/delivery/spcjs.php?id=*&target=_blank$script,domain=mapy.hiking.sk (easylist.txt: 50611) -.reklama.hiking.sk/openx_new/www/delivery/spcjs\.php\?id=.*&target=_blank - -#ab2p-unblock-dnt-R1426 -{+client-header-tagger{ab2p-unblock-dnt-R1426} \ -} -# @@||awaps.yandex.$domain=market.yandex.by|market.yandex.kz|market.yandex.ru|market.yandex.ua (advblock.txt: 7271) -.awaps.yandex.*. - -#ab2p-unblock-dnt-R1427 -{+client-header-tagger{ab2p-unblock-dnt-R1427} \ -} -# @@||wsj.net^*/images/adv-$image,domain=marketwatch.com (easylistchina+easylist.txt: 59829) -.wsj.net/.*/images/adv- -# @@||wsj.net^*/images/adv-$image,domain=marketwatch.com (easylist.txt: 49344) -.wsj.net/.*/images/adv- - -#ab2p-unblock-dnt-R1428 -{+client-header-tagger{ab2p-unblock-dnt-R1428} \ -} -# @@||v.fwmrm.net/*/AdManager.swf$domain=marthastewart.com|nbcsports.com (easylistchina+easylist.txt: 59738) -.v.fwmrm.net/.*/AdManager\.swf -# @@||v.fwmrm.net/*/AdManager.swf$domain=marthastewart.com|nbcsports.com (easylist.txt: 49253) -.v.fwmrm.net/.*/AdManager\.swf - -#ab2p-unblock-dnt-R1429 -{+client-header-tagger{ab2p-unblock-dnt-R1429} \ -} -# @@||player.grabnetworks.com^*/vox_300x250_inline.xml$domain=mavrixonline.com (easylistchina+easylist.txt: 61362) -.player.grabnetworks.com/.*/vox_300x250_inline\.xml -# @@||player.grabnetworks.com^*/vox_300x250_inline.xml$domain=mavrixonline.com (easylist.txt: 50877) -.player.grabnetworks.com/.*/vox_300x250_inline\.xml - -#ab2p-unblock-dnt-R1430 -{+client-header-tagger{ab2p-unblock-dnt-R1430} \ -} -# @@||nba.com/mobilevideo?*&ad_url=$script,domain=mavs.wpengine.netdna-cdn.com (easylistchina+easylist.txt: 59225) -.nba.com/mobilevideo\?.*&ad_url= -# @@||nba.com/mobilevideo?*&ad_url=$script,domain=mavs.wpengine.netdna-cdn.com (easylist.txt: 48740) -.nba.com/mobilevideo\?.*&ad_url= - -#ab2p-unblock-dnt-R1431 -{+client-header-tagger{ab2p-unblock-dnt-R1431} \ -} -# @@||maxigame.org^$script,domain=maxigame.org (easylistchina+easylist.txt: 60508) -.maxigame.org -# @@||maxigame.org^$script,domain=maxigame.org (easylist.txt: 50023) -.maxigame.org - -#ab2p-unblock-dnt-R1432 -{+client-header-tagger{ab2p-unblock-dnt-R1432} \ -} -# @@||go.padstm.com/?$script,domain=mediatechnologycenter.info (easylistchina+easylist.txt: 60355) -.go.padstm.com/\? -# @@||go.padstm.com/?$script,domain=mediatechnologycenter.info (easylist.txt: 49870) -.go.padstm.com/\? - -#ab2p-unblock-dnt-R1433 -{+client-header-tagger{ab2p-unblock-dnt-R1433} \ -} -# @@||as.medscape.com/html.ng/transactionid%$subdocument,domain=medscape.com (easylistchina+easylist.txt: 58438) -.as.medscape.com/html\.ng/transactionid% -# @@||as.medscape.com/html.ng/transactionid%$subdocument,domain=medscape.com (easylist.txt: 47953) -.as.medscape.com/html\.ng/transactionid% - -#ab2p-unblock-dnt-R334 -{+client-header-tagger{ab2p-unblock-dnt-R334} \ -} -# @@||adrcdn.com/ads/*/megogo.xml$object-subrequest,domain=megogo.net (advblock.txt: 7554) -.adrcdn.com/ads/.*/megogo\.xml -# @@||adfox.ru/*/getCode?$object-subrequest,domain=megogo.net (advblock.txt: 7546) -.adfox.ru/.*/getCode\? -# @@||adfox.ru/*/event?$object-subrequest,domain=megogo.net (advblock.txt: 7545) -.adfox.ru/.*/event\? - -#ab2p-unblock-dnt-R1434 -{+client-header-tagger{ab2p-unblock-dnt-R1434} \ -} -# @@/crossdomain.xml|$domain=megogo.net|smotri.com|video.reset.ru (advblock.txt: 7534) -/(.*/)?crossdomain\.xml$ -crossdomain.xml - -#ab2p-unblock-dnt-R1435 -{+client-header-tagger{ab2p-unblock-dnt-R1435} \ -} -# @@|http://*/ad$domain=meiziweibo.com (easylistchina+easylist.txt: 10071) -/(.*/)?ad - -#ab2p-unblock-dnt-R1436 -{+client-header-tagger{ab2p-unblock-dnt-R1436} \ -} -# @@||ads.intergi.com/adrawdata/*/ADTECH;$object-subrequest,domain=melting-mindz.com (easylistchina+easylist.txt: 58243) -.ads.intergi.com/adrawdata/.*/ADTECH; -# @@||ads.intergi.com/adrawdata/*/ADTECH;$object-subrequest,domain=melting-mindz.com (easylist.txt: 47758) -.ads.intergi.com/adrawdata/.*/ADTECH; - -#ab2p-unblock-dnt-R1437 -{+client-header-tagger{ab2p-unblock-dnt-R1437} \ -} -# @@||amazonaws.com^*/sponsorbanners/$image,domain=members.portalbuzz.com (easylistchina+easylist.txt: 58399) -.amazonaws.com/.*/sponsorbanners/ -# @@||amazonaws.com^*/sponsorbanners/$image,domain=members.portalbuzz.com (easylist.txt: 47914) -.amazonaws.com/.*/sponsorbanners/ - -#ab2p-unblock-dnt-R1438 -{+client-header-tagger{ab2p-unblock-dnt-R1438} \ -} -# @@||memecdn.com/advertising_$image,domain=memecenter.com (easylistchina+easylist.txt: 59166) -.memecdn.com/advertising_ -# @@||memecdn.com/advertising_$image,domain=memecenter.com (easylist.txt: 48681) -.memecdn.com/advertising_ - -#ab2p-unblock-dnt-R1439 -{+client-header-tagger{ab2p-unblock-dnt-R1439} \ -} -# @@||mlstatic.com^*/product_ads/$image,domain=mercadolibre.com.ve (easylistchina+easylist.txt: 61064) -.mlstatic.com/.*/product_ads/ -# @@||mlstatic.com^*/product_ads/$image,domain=mercadolibre.com.ve (easylist.txt: 50579) -.mlstatic.com/.*/product_ads/ - -#ab2p-unblock-dnt-R1440 -{+client-header-tagger{ab2p-unblock-dnt-R1440} \ -} -# @@||advertising.mercadolivre.com.br^$xmlhttprequest,domain=mercadolivre.com.br (easylistchina+easylist.txt: 60965) -.advertising.mercadolivre.com.br -# @@||advertising.mercadolivre.com.br^$xmlhttprequest,domain=mercadolivre.com.br (easylist.txt: 50480) -.advertising.mercadolivre.com.br - -#ab2p-unblock-dnt-R1441 -{+client-header-tagger{ab2p-unblock-dnt-R1441} \ -} -# @@||tcadops.ca/consumer/adtagtc_$script,domain=metro.ca (easylistchina+easylist.txt: 59623) -.tcadops.ca/consumer/adtagtc_ -# @@||tcadops.ca/consumer/adtagtc_$script,domain=metro.ca (easylist.txt: 49138) -.tcadops.ca/consumer/adtagtc_ - -#ab2p-unblock-dnt-R1442 -{+client-header-tagger{ab2p-unblock-dnt-R1442} \ -} -# @@||metvnetwork.s3.amazonaws.com^*-quiz-300x250-$image,domain=metv.com (easylistchina+easylist.txt: 61354) -.metvnetwork.s3.amazonaws.com/.*-quiz-300x250- -# @@||metvnetwork.s3.amazonaws.com^*-quiz-300x250-$image,domain=metv.com (easylist.txt: 50869) -.metvnetwork.s3.amazonaws.com/.*-quiz-300x250- - -#ab2p-unblock-dnt-R1443 -{+client-header-tagger{ab2p-unblock-dnt-R1443} \ -} -# @@||meviodisplayads.com/adholder.php$domain=mevio.com (easylistchina+easylist.txt: 59171) -.meviodisplayads.com/adholder\.php -# @@||meviodisplayads.com/adholder.php$domain=mevio.com (easylist.txt: 48686) -.meviodisplayads.com/adholder\.php - -#ab2p-unblock-dnt-R1444 -{+client-header-tagger{ab2p-unblock-dnt-R1444} \ -} -# @@||mgts.ru/upload/images/ban$domain=mgts.ru (advblock.txt: 7337) -.mgts.ru/upload/images/ban - -#ab2p-unblock-dnt-R1445 -{+client-header-tagger{ab2p-unblock-dnt-R1445} \ -} -# @@||rackcdn.com/banners/default_coupon_banner.png$domain=michaels.com (easylistchina+easylist.txt: 59432) -.rackcdn.com/banners/default_coupon_banner\.png -# @@||rackcdn.com/banners/default_coupon_banner.png$domain=michaels.com (easylist.txt: 48947) -.rackcdn.com/banners/default_coupon_banner\.png - -#ab2p-unblock-dnt-R1446 -{+client-header-tagger{ab2p-unblock-dnt-R1446} \ -} -# @@||mvapublicstorage.microsoft.com/banners/$domain=microsoftvirtualacademy.com (easylistchina+easylist.txt: 59210) -.mvapublicstorage.microsoft.com/banners/ -# @@||mvapublicstorage.microsoft.com/banners/$domain=microsoftvirtualacademy.com (easylist.txt: 48725) -.mvapublicstorage.microsoft.com/banners/ - -#ab2p-unblock-dnt-R1447 -{+client-header-tagger{ab2p-unblock-dnt-R1447} \ -} -# @@||doubleclick.net^*/adi/MiLB.com/standings^$subdocument,domain=milb.com (easylistchina+easylist.txt: 58730) -.doubleclick.net/.*/adi/MiLB\.com/standings[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/multimedia^$subdocument,domain=milb.com (easylistchina+easylist.txt: 58729) -.doubleclick.net/.*/adi/MiLB\.com/multimedia[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/standings^$subdocument,domain=milb.com (easylist.txt: 48245) -.doubleclick.net/.*/adi/MiLB\.com/standings[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/multimedia^$subdocument,domain=milb.com (easylist.txt: 48244) -.doubleclick.net/.*/adi/MiLB\.com/multimedia[^\w%.-] - -#ab2p-unblock-dnt-R1448 -{+client-header-tagger{ab2p-unblock-dnt-R1448} \ -} -# @@||ads.telecinco.es/RealMedia/ads/adstream_sx.ads/*@$object-subrequest,domain=mitele.es|telecinco.es (easylistchina+easylist.txt: 60951) -.ads.telecinco.es/RealMedia/ads/adstream_sx\.ads/.*@ -# @@||ads.telecinco.es/RealMedia/ads/adstream_sx.ads/*@$object-subrequest,domain=mitele.es|telecinco.es (easylist.txt: 50466) -.ads.telecinco.es/RealMedia/ads/adstream_sx\.ads/.*@ - -#ab2p-unblock-dnt-R1449 -{+client-header-tagger{ab2p-unblock-dnt-R1449} \ -} -# @@||azvideo.asia^$domain=miwed.ru (advblock.txt: 683) -.azvideo.asia - -#ab2p-unblock-dnt-R1450 -{+client-header-tagger{ab2p-unblock-dnt-R1450} \ -} -# @@||mlb.com/bundle?js=*/adproxy.$script,domain=mlb.com (easylistchina+easylist.txt: 59178) -.mlb.com/bundle\?js=.*/adproxy\. -# @@||doubleclick.net/adi/mlb.mlb/*^free_agent_tracker_12^$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58701) -.doubleclick.net/adi/mlb\.mlb/.*[^\w%.-]free_agent_tracker_12[^\w%.-] -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=free_agent_tracker_$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58700) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=free_agent_tracker_ -# @@||doubleclick.net/adi/*.mlb/scoreboard;pageid=scoreboard_ymd;sz=$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58695) -.doubleclick.net/adi/.*\.mlb/scoreboard;pageid=scoreboard_ymd;sz= -# @@||doubleclick.net/adi/*.mlb/photos;*;sz=300x250;$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58694) -.doubleclick.net/adi/.*\.mlb/photos;.*;sz=300x250; -# @@||mlb.com/bundle?js=*/adproxy.$script,domain=mlb.com (easylist.txt: 48693) -.mlb.com/bundle\?js=.*/adproxy\. -# @@||doubleclick.net/adi/mlb.mlb/*^free_agent_tracker_12^$subdocument,domain=mlb.com (easylist.txt: 48216) -.doubleclick.net/adi/mlb\.mlb/.*[^\w%.-]free_agent_tracker_12[^\w%.-] -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=free_agent_tracker_$subdocument,domain=mlb.com (easylist.txt: 48215) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=free_agent_tracker_ -# @@||doubleclick.net/adi/*.mlb/scoreboard;pageid=scoreboard_ymd;sz=$subdocument,domain=mlb.com (easylist.txt: 48210) -.doubleclick.net/adi/.*\.mlb/scoreboard;pageid=scoreboard_ymd;sz= -# @@||doubleclick.net/adi/*.mlb/photos;*;sz=300x250;$subdocument,domain=mlb.com (easylist.txt: 48209) -.doubleclick.net/adi/.*\.mlb/photos;.*;sz=300x250; - -#ab2p-unblock-dnt-R1451 -{+client-header-tagger{ab2p-unblock-dnt-R1451} \ -} -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=cutfour;sz=$subdocument,domain=mlb.mlb.com (easylistchina+easylist.txt: 58699) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=cutfour;sz= -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=cutfour;sz=$subdocument,domain=mlb.mlb.com (easylist.txt: 48214) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=cutfour;sz= - -#ab2p-unblock-dnt-R1452 -{+client-header-tagger{ab2p-unblock-dnt-R1452} \ -} -# @@||ads.undertone.com/*&zoneid=$domain=mlbtraderumors.com (easylistchina+easylist.txt: 58271) -.ads.undertone.com/.*&zoneid= -# @@||ads.undertone.com/*&zoneid=$domain=mlbtraderumors.com (easylist.txt: 47786) -.ads.undertone.com/.*&zoneid= - -#ab2p-unblock-dnt-R1453 -{+client-header-tagger{ab2p-unblock-dnt-R1453} \ -} -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/mlssoccer.com/$object-subrequest,domain=mlssoccer.com (easylistchina+easylist.txt: 59280) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/mlssoccer\.com/ -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/*video$domain=mlssoccer.com (easylistchina+easylist.txt: 59279) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/.*video -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/mlssoccer.com/$object-subrequest,domain=mlssoccer.com (easylist.txt: 48795) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/mlssoccer\.com/ -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/*video$domain=mlssoccer.com (easylist.txt: 48794) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/.*video - -#ab2p-unblock-dnt-R1454 -{+client-header-tagger{ab2p-unblock-dnt-R1454} \ -} -# @@||vcnt3rd.com/Scripts/adscript.js$domain=mma-core.com (easylistchina+easylist.txt: 60856) -.vcnt3rd.com/Scripts/adscript\.js -# @@||vcnt3rd.com/Scripts/adscript.js$domain=mma-core.com (easylist.txt: 50371) -.vcnt3rd.com/Scripts/adscript\.js - -#ab2p-unblock-dnt-R1455 -{+client-header-tagger{ab2p-unblock-dnt-R1455} \ -} -# @@||googlesyndication.com/pagead/show_ads.js$domain=mmoaddict.ru (advblock.txt: 7305) -.googlesyndication.com/pagead/show_ads\.js -# @@||googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=mmoaddict.ru (advblock.txt: 7304) -.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-dnt-R1456 -{+client-header-tagger{ab2p-unblock-dnt-R1456} \ -} -# @@/AdShow/*$domain=mndxy.org (easylistchina+easylist.txt: 10014) -/(.*/)?AdShow/.* - -#ab2p-unblock-dnt-R1457 -{+client-header-tagger{ab2p-unblock-dnt-R1457} \ -} -# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina+easylist.txt: 10140) -.ad.unimhk.com/show\.php\? - -#ab2p-unblock-dnt-R1458 -{+client-header-tagger{ab2p-unblock-dnt-R1458} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=mobinozer.com (easylistchina+easylist.txt: 60407) -.imasdk.googleapis.com/js/sdkloader/ima3\.js -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=mobinozer.com (easylistchina+easylist.txt: 60406) -.imasdk.googleapis.com/js/core/bridge.*\.html -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=mobinozer.com (easylist.txt: 49922) -.imasdk.googleapis.com/js/sdkloader/ima3\.js -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=mobinozer.com (easylist.txt: 49921) -.imasdk.googleapis.com/js/core/bridge.*\.html - -#ab2p-unblock-dnt-R1459 -{+client-header-tagger{ab2p-unblock-dnt-R1459} \ -} -# @@||mochiads.com/static/pub/swf/leaderboard.js$domain=mochigames.com (easylistchina+easylist.txt: 59188) -.mochiads.com/static/pub/swf/leaderboard\.js -# @@||mochiads.com/static/pub/swf/leaderboard.js$domain=mochigames.com (easylist.txt: 48703) -.mochiads.com/static/pub/swf/leaderboard\.js - -#ab2p-unblock-dnt-R1460 -{+client-header-tagger{ab2p-unblock-dnt-R1460} \ -} -# @@||liverail.com/?LR_$object-subrequest,domain=moevideo.net (advblock.txt: 7579) -.liverail.com/\?LR_ -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$domain=moevideo.net (advblock.txt: 7223) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-dnt-R1461 -{+client-header-tagger{ab2p-unblock-dnt-R1461} \ -} -# @@||propellerads.com/afu.php?zoneid=$subdocument,domain=moevideos.net (easylistchina+easylist.txt: 61089) -.propellerads.com/afu\.php\?zoneid= -# @@||am10.ru/letitbit.net_in.php$subdocument,domain=moevideos.net (easylistchina+easylist.txt: 60972) -.am10.ru/letitbit\.net_in\.php -# @@||propellerads.com/afu.php?zoneid=$subdocument,domain=moevideos.net (easylist.txt: 50604) -.propellerads.com/afu\.php\?zoneid= -# @@||am10.ru/letitbit.net_in.php$subdocument,domain=moevideos.net (easylist.txt: 50487) -.am10.ru/letitbit\.net_in\.php - -#ab2p-unblock-dnt-R1462 -{+client-header-tagger{ab2p-unblock-dnt-R1462} \ -} -# @@||monster.com/services/bannerad.asmx/getadsrc$xmlhttprequest,domain=monster.com (easylistchina+easylist.txt: 59192) -.monster.com/services/bannerad\.asmx/getadsrc -# @@||media.newjobs.com/ads/$image,object,domain=monster.com (easylistchina+easylist.txt: 59154) -.media.newjobs.com/ads/ -# @@||media.monster.com/ads/$image,domain=monster.com (easylistchina+easylist.txt: 59153) -.media.monster.com/ads/ -# @@||monster.com/services/bannerad.asmx/getadsrc$xmlhttprequest,domain=monster.com (easylist.txt: 48707) -.monster.com/services/bannerad\.asmx/getadsrc -# @@||media.newjobs.com/ads/$image,object,domain=monster.com (easylist.txt: 48669) -.media.newjobs.com/ads/ -# @@||media.monster.com/ads/$image,domain=monster.com (easylist.txt: 48668) -.media.monster.com/ads/ - -#ab2p-unblock-dnt-R343 -{+client-header-tagger{ab2p-unblock-dnt-R343} \ -} -# @@||moonwalk.cc^$script,domain=moonwalk.cc (advblock.txt: 7584) -.moonwalk.cc -# @@$image,domain=moonwalk.cc (advblock.txt: 7520) - - -#ab2p-unblock-dnt-R1463 -{+client-header-tagger{ab2p-unblock-dnt-R1463} \ -} -# @@||mstar.com/ads/$image,domain=morningstar.com (easylistchina+easylist.txt: 59201) -.mstar.com/ads/ -# @@||mstar.com/ads/$image,domain=morningstar.com (easylist.txt: 48716) -.mstar.com/ads/ - -#ab2p-unblock-dnt-R1464 -{+client-header-tagger{ab2p-unblock-dnt-R1464} \ -} -# @@||u.openx.net/v/1.0/sc?$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 59720) -.u.openx.net/v/1\.0/sc\? -# @@||ox-d.motogp.com/v/1.0/av?*auid=$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 59316) -.ox-d.motogp.com/v/1\.0/av\?.*auid= -# @@||adswizz.com/www/delivery/swfindex.php?reqtype=adssetup&$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 58315) -.adswizz.com/www/delivery/swfindex\.php\?reqtype=adssetup& -# @@||adswizz.com/www/components/$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 58314) -.adswizz.com/www/components/ -# @@||u.openx.net/v/1.0/sc?$object-subrequest,domain=motogp.com (easylist.txt: 49235) -.u.openx.net/v/1\.0/sc\? -# @@||ox-d.motogp.com/v/1.0/av?*auid=$object-subrequest,domain=motogp.com (easylist.txt: 48831) -.ox-d.motogp.com/v/1\.0/av\?.*auid= -# @@||adswizz.com/www/delivery/swfindex.php?reqtype=adssetup&$object-subrequest,domain=motogp.com (easylist.txt: 47830) -.adswizz.com/www/delivery/swfindex\.php\?reqtype=adssetup& -# @@||adswizz.com/www/components/$object-subrequest,domain=motogp.com (easylist.txt: 47829) -.adswizz.com/www/components/ - -#ab2p-unblock-dnt-R1465 -{+client-header-tagger{ab2p-unblock-dnt-R1465} \ -} -# @@||partner.googleadservices.com/gampad/google_ads2.js$domain=motorcycle.com|mysoju.com|nedbank.co.za (easylistchina+easylist.txt: 59341) -.partner.googleadservices.com/gampad/google_ads2\.js -# @@||partner.googleadservices.com/gampad/google_ads2.js$domain=motorcycle.com|mysoju.com|nedbank.co.za (easylist.txt: 48856) -.partner.googleadservices.com/gampad/google_ads2\.js - -#ab2p-unblock-dnt-R1466 -{+client-header-tagger{ab2p-unblock-dnt-R1466} \ -} -# @@||lbdevicons.brainient.com/flash/*/VPAIDWrapper.swf$object,domain=mousebreaker.com (easylistchina+easylist.txt: 59077) -.lbdevicons.brainient.com/flash/.*/VPAIDWrapper\.swf -# @@||inskinmedia.com^*/js/base/api/$domain=mousebreaker.com (easylistchina+easylist.txt: 59021) -.inskinmedia.com/.*/js/base/api/ -# @@||cdn.inskinmedia.com^*/ipcgame.js?$domain=mousebreaker.com (easylistchina+easylist.txt: 58566) -.cdn.inskinmedia.com/.*/ipcgame\.js\? -# @@||lbdevicons.brainient.com/flash/*/VPAIDWrapper.swf$object,domain=mousebreaker.com (easylist.txt: 48592) -.lbdevicons.brainient.com/flash/.*/VPAIDWrapper\.swf -# @@||inskinmedia.com^*/js/base/api/$domain=mousebreaker.com (easylist.txt: 48536) -.inskinmedia.com/.*/js/base/api/ -# @@||cdn.inskinmedia.com^*/ipcgame.js?$domain=mousebreaker.com (easylist.txt: 48081) -.cdn.inskinmedia.com/.*/ipcgame\.js\? - -#ab2p-unblock-dnt-R1467 -{+client-header-tagger{ab2p-unblock-dnt-R1467} \ -} -# @@||mgcashgate.com/cpalocker/$script,domain=movieleaks.co|videodepot.org (easylistchina+easylist.txt: 60519) -.mgcashgate.com/cpalocker/ -# @@||mgcashgate.com/cpalocker/$script,domain=movieleaks.co|videodepot.org (easylist.txt: 50034) -.mgcashgate.com/cpalocker/ - -#ab2p-unblock-dnt-R1468 -{+client-header-tagger{ab2p-unblock-dnt-R1468} \ -} -# @@||ads.yimg.com/la/adv/y/yahooxtra$image,domain=movies.yahoo.com (easylistchina+easylist.txt: 58275) -.ads.yimg.com/la/adv/y/yahooxtra -# @@||ads.yimg.com/la/adv/y/yahooxtra$image,domain=movies.yahoo.com (easylist.txt: 47790) -.ads.yimg.com/la/adv/y/yahooxtra - -#ab2p-unblock-dnt-R1469 -{+client-header-tagger{ab2p-unblock-dnt-R1469} \ -} -# @@||bbelements.com/bb/bb_one2n.js$domain=moviezone.cz (easylistchina+easylist.txt: 60989) -.bbelements.com/bb/bb_one2n\.js -# @@||bbelements.com/bb/bb_one2n.js$domain=moviezone.cz (easylist.txt: 50504) -.bbelements.com/bb/bb_one2n\.js - -#ab2p-unblock-dnt-R1470 -{+client-header-tagger{ab2p-unblock-dnt-R1470} \ -} -# @@||mozilla.org/img/covehead/plugincheck/*/728_90/loading.png$domain=mozilla.org (easylistchina+easylist.txt: 61356) -.mozilla.org/img/covehead/plugincheck/.*/728_90/loading\.png -# @@||mozilla.org/img/covehead/plugincheck/*/728_90/loading.png$domain=mozilla.org (easylist.txt: 50871) -.mozilla.org/img/covehead/plugincheck/.*/728_90/loading\.png - -#ab2p-unblock-dnt-R1471 -{+client-header-tagger{ab2p-unblock-dnt-R1471} \ -} -# @@||adserver.adreactor.com/js/libcode1_noajax.js$domain=mp3clan.audio|mp3clan.com (easylistchina+easylist.txt: 60022) -.adserver.adreactor.com/js/libcode1_noajax\.js -# @@||adserver.adreactor.com/js/libcode1_noajax.js$domain=mp3clan.audio|mp3clan.com (easylist.txt: 49537) -.adserver.adreactor.com/js/libcode1_noajax\.js - -#ab2p-unblock-dnt-R1472 -{+client-header-tagger{ab2p-unblock-dnt-R1472} \ -} -# @@||ads1.msads.net^*/dapmsn.js$domain=msn.com (easylistchina+easylist.txt: 58280) -.ads1.msads.net/.*/dapmsn\.js -# @@||rad.msn.com^$script,domain=msn.com (advblock.txt: 7371) -.rad.msn.com -# @@||msads.net^*/dapmsn.js^$domain=msn.com (advblock.txt: 7339) -.msads.net/.*/dapmsn\.js[^\w%.-] -# @@||adnxs.com/ttj?$script,domain=msn.com (advblock.txt: 7228) -.adnxs.com/ttj\? -# @@||ads1.msads.net^*/dapmsn.js$domain=msn.com (easylist.txt: 47795) -.ads1.msads.net/.*/dapmsn\.js - -#ab2p-unblock-dnt-R1473 -{+client-header-tagger{ab2p-unblock-dnt-R1473} \ -} -# @@||mts.ru/upload/images/*_baner.$domain=mts.ru (advblock.txt: 7340) -.mts.ru/upload/images/.*_baner\. -# @@||adcast.ru/mtsweb?$domain=mts.ru (advblock.txt: 7224) -.adcast.ru/mtsweb\? - -#ab2p-unblock-dnt-R1474 -{+client-header-tagger{ab2p-unblock-dnt-R1474} \ -} -# @@||googlesyndication.com/favicon.ico$domain=multiup.org (easylistchina+easylist.txt: 60365) -.googlesyndication.com/favicon\.ico -# @@||googlesyndication.com/favicon.ico$domain=multiup.org (easylist.txt: 49880) -.googlesyndication.com/favicon\.ico - -#ab2p-unblock-dnt-R1475 -{+client-header-tagger{ab2p-unblock-dnt-R1475} \ -} -# @@||yadayadayada.nl/banner/banner.php$image,domain=murf.nl|workhardclimbharder.nl (easylistchina+easylist.txt: 59839) -.yadayadayada.nl/banner/banner\.php -# @@||yadayadayada.nl/banner/banner.php$image,domain=murf.nl|workhardclimbharder.nl (easylist.txt: 49354) -.yadayadayada.nl/banner/banner\.php - -#ab2p-unblock-dnt-R1476 -{+client-header-tagger{ab2p-unblock-dnt-R1476} \ -} -# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina+easylist.txt: 10180) -.bdimg.com/advert/js/advert\.js - -#ab2p-unblock-dnt-R1477 -{+client-header-tagger{ab2p-unblock-dnt-R1477} \ -} -# @@||adwolf.ru^$script,subdocument,domain=muz.ru (advblock.txt: 7256) -.adwolf.ru - -#ab2p-unblock-dnt-R1478 -{+client-header-tagger{ab2p-unblock-dnt-R1478} \ -} -# @@/adwolf.js$domain=muz.ru|retrofm.ru (advblock.txt: 7194) -/(.*/)?adwolf\.js -adwolf.js*. - -#ab2p-unblock-dnt-R1479 -{+client-header-tagger{ab2p-unblock-dnt-R1479} \ -} -# @@||adap.tv/redir/client/swfloader.swf?$object,domain=my-magazine.me (easylistchina+easylist.txt: 60934) -.adap.tv/redir/client/swfloader\.swf\? -# @@||adap.tv/redir/client/swfloader.swf?$object,domain=my-magazine.me (easylist.txt: 50449) -.adap.tv/redir/client/swfloader\.swf\? - -#ab2p-unblock-dnt-R1480 -{+client-header-tagger{ab2p-unblock-dnt-R1480} \ -} -# @@||nytimes.com/adx/images/ADS$domain=myaccount.nytimes.com (easylistchina+easylist.txt: 59265) -.nytimes.com/adx/images/ADS -# @@||nytimes.com/adx/images/ADS$domain=myaccount.nytimes.com (easylist.txt: 48780) -.nytimes.com/adx/images/ADS - -#ab2p-unblock-dnt-R1481 -{+client-header-tagger{ab2p-unblock-dnt-R1481} \ -} -# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina+easylist.txt: 10063) -/.*=mywebloadt1& - -#ab2p-unblock-dnt-R1482 -{+client-header-tagger{ab2p-unblock-dnt-R1482} \ -} -# @@||nalog.ru/images/baner/$image,domain=nalog.ru (advblock.txt: 7344) -.nalog.ru/images/baner/ - -#ab2p-unblock-dnt-R1483 -{+client-header-tagger{ab2p-unblock-dnt-R1483} \ -} -# @@||stats.g.doubleclick.net/dc.js$domain=native-instruments.com|nest.com|theheldrich.com (easylistchina+easylist.txt: 59592) -.stats.g.doubleclick.net/dc\.js -# @@||stats.g.doubleclick.net/dc.js$domain=native-instruments.com|nest.com|theheldrich.com (easylist.txt: 49107) -.stats.g.doubleclick.net/dc\.js - -#ab2p-unblock-dnt-R1484 -{+client-header-tagger{ab2p-unblock-dnt-R1484} \ -} -# @@||turner.com^*/ads/freewheel/js/fwjslib_1.1.js$domain=nba.com (easylistchina+easylist.txt: 59711) -.turner.com/.*/ads/freewheel/js/fwjslib_1\.1\.js -# @@||turner.com^*/ads/freewheel/js/fwjslib_1.1.js$domain=nba.com (easylist.txt: 49226) -.turner.com/.*/ads/freewheel/js/fwjslib_1\.1\.js - -#ab2p-unblock-dnt-R1485 -{+client-header-tagger{ab2p-unblock-dnt-R1485} \ -} -# @@||player.theplatform.com^$subdocument,domain=nbc.com (easylistchina+easylist.txt: 61086) -.player.theplatform.com -# @@||player.theplatform.com^$subdocument,domain=nbc.com (easylist.txt: 50601) -.player.theplatform.com - -#ab2p-unblock-dnt-R1486 -{+client-header-tagger{ab2p-unblock-dnt-R1486} \ -} -# @@||g.doubleclick.net/aclk?$subdocument,domain=nedbank.co.za (easylistchina+easylist.txt: 58848) -.g.doubleclick.net/aclk\? -# @@||g.doubleclick.net/aclk?$subdocument,domain=nedbank.co.za (easylist.txt: 48363) -.g.doubleclick.net/aclk\? - -#ab2p-unblock-dnt-R1487 -{+client-header-tagger{ab2p-unblock-dnt-R1487} \ -} -# @@||g.doubleclick.net/gampad/google_ads.js$domain=nedbank.co.za|nitrome.com|ticketek.com.ar (easylistchina+easylist.txt: 58854) -.g.doubleclick.net/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=nedbank.co.za|nitrome.com|ticketek.com.ar (easylist.txt: 48369) -.g.doubleclick.net/gampad/google_ads\.js - -#ab2p-unblock-dnt-R1488 -{+client-header-tagger{ab2p-unblock-dnt-R1488} \ -} -# @@||phoenix.untd.com/OASX/$script,domain=netzero.net (easylistchina+easylist.txt: 59366) -.phoenix.untd.com/OASX/ -# @@||phoenix.untd.com/OASX/$script,domain=netzero.net (easylist.txt: 48881) -.phoenix.untd.com/OASX/ - -#ab2p-unblock-dnt-R358 -{+client-header-tagger{ab2p-unblock-dnt-R358} \ -} -# @@||ngads.com/*.js$script,domain=newgrounds.com (easylistchina+easylist.txt: 60578) -.ngads.com/.*\.js -# @@||ngads.com/getad.php?url=$object-subrequest,domain=newgrounds.com (easylistchina+easylist.txt: 59249) -.ngads.com/getad\.php\?url= -# @@||liverail.com^*/liverail_preroll.swf$object,domain=newgrounds.com (easylistchina+easylist.txt: 59104) -.liverail.com/.*/liverail_preroll\.swf -# @@||ngads.com/*.js$script,domain=newgrounds.com (easylist.txt: 50093) -.ngads.com/.*\.js -# @@||ngads.com/getad.php?url=$object-subrequest,domain=newgrounds.com (easylist.txt: 48764) -.ngads.com/getad\.php\?url= -# @@||liverail.com^*/liverail_preroll.swf$object,domain=newgrounds.com (easylist.txt: 48619) -.liverail.com/.*/liverail_preroll\.swf - -#ab2p-unblock-dnt-R1489 -{+client-header-tagger{ab2p-unblock-dnt-R1489} \ -} -# @@||nextag.com/buyer/dyad/$script,domain=nextag.com (easylistchina+easylist.txt: 59242) -.nextag.com/buyer/dyad/ -# @@||nextag.com/buyer/dyad/$script,domain=nextag.com (easylist.txt: 48757) -.nextag.com/buyer/dyad/ - -#ab2p-unblock-dnt-R1490 -{+client-header-tagger{ab2p-unblock-dnt-R1490} \ -} -# @@||video.appledaily.com.hk/admedia/$object-subrequest,domain=nextmedia.com (easylistchina+easylist.txt: 61144) -.video.appledaily.com.hk/admedia/ -# @@||video.appledaily.com.hk/admedia/$object-subrequest,domain=nextmedia.com (easylist.txt: 50659) -.video.appledaily.com.hk/admedia/ - -#ab2p-unblock-dnt-R1491 -{+client-header-tagger{ab2p-unblock-dnt-R1491} \ -} -# @@||nextmovie.com/plugins/mtvnimageresizer/actions/scale_image?$image,domain=nextmovie.com (easylistchina+easylist.txt: 59244) -.nextmovie.com/plugins/mtvnimageresizer/actions/scale_image\? -# @@||nextmovie.com/plugins/mtvnimageresizer/actions/scale_image?$image,domain=nextmovie.com (easylist.txt: 48759) -.nextmovie.com/plugins/mtvnimageresizer/actions/scale_image\? - -#ab2p-unblock-dnt-R1492 -{+client-header-tagger{ab2p-unblock-dnt-R1492} \ -} -# @@||smartclip.net/delivery/tag?$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 59545) -.smartclip.net/delivery/tag\? -# @@||objects.tremormedia.com/embed/sjs/$domain=nfl.com (easylistchina+easylist.txt: 59286) -.objects.tremormedia.com/embed/sjs/ -# @@||nflcdn.com^*/scripts/global/ads.js$domain=nfl.com (easylistchina+easylist.txt: 59248) -.nflcdn.com/.*/scripts/global/ads\.js -# @@||nflcdn.com^*/adplayer.js$domain=nfl.com (easylistchina+easylist.txt: 59247) -.nflcdn.com/.*/adplayer\.js -# @@||doubleclick.net^*/ad/nfl.*.smartclip/$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58728) -.doubleclick.net/.*/ad/nfl\..*\.smartclip/ -# @@||doubleclick.net/pfadx/nfl.*/html5;$xmlhttprequest,domain=nfl.com (easylistchina+easylist.txt: 58726) -.doubleclick.net/pfadx/nfl\..*/html5; -# @@||btrll.com/vast/$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58525) -.btrll.com/vast/ -# @@||ae.amgdgt.com/ads?t=$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58353) -.ae.amgdgt.com/ads\?t= -# @@||smartclip.net/delivery/tag?$object-subrequest,domain=nfl.com (easylist.txt: 49060) -.smartclip.net/delivery/tag\? -# @@||objects.tremormedia.com/embed/sjs/$domain=nfl.com (easylist.txt: 48801) -.objects.tremormedia.com/embed/sjs/ -# @@||nflcdn.com^*/scripts/global/ads.js$domain=nfl.com (easylist.txt: 48763) -.nflcdn.com/.*/scripts/global/ads\.js -# @@||nflcdn.com^*/adplayer.js$domain=nfl.com (easylist.txt: 48762) -.nflcdn.com/.*/adplayer\.js -# @@||doubleclick.net^*/ad/nfl.*.smartclip/$object-subrequest,domain=nfl.com (easylist.txt: 48243) -.doubleclick.net/.*/ad/nfl\..*\.smartclip/ -# @@||doubleclick.net/pfadx/nfl.*/html5;$xmlhttprequest,domain=nfl.com (easylist.txt: 48241) -.doubleclick.net/pfadx/nfl\..*/html5; -# @@||btrll.com/vast/$object-subrequest,domain=nfl.com (easylist.txt: 48040) -.btrll.com/vast/ -# @@||ae.amgdgt.com/ads?t=$object-subrequest,domain=nfl.com (easylist.txt: 47868) -.ae.amgdgt.com/ads\?t= - -#ab2p-unblock-dnt-R1493 -{+client-header-tagger{ab2p-unblock-dnt-R1493} \ -} -# @@||nic.ru/styles/advertising.css$domain=nic.ru (advblock.txt: 7347) -.nic.ru/styles/advertising\.css - -#ab2p-unblock-dnt-R1494 -{+client-header-tagger{ab2p-unblock-dnt-R1494} \ -} -# @@||nick.com/js/coda/nick/adrefresh.js$domain=nick.com (easylistchina+easylist.txt: 59251) -.nick.com/js/coda/nick/adrefresh\.js -# @@||nick.com/js/coda/nick/adrefresh.js$domain=nick.com (easylist.txt: 48766) -.nick.com/js/coda/nick/adrefresh\.js - -#ab2p-unblock-dnt-R1495 -{+client-header-tagger{ab2p-unblock-dnt-R1495} \ -} -# @@||rad.msn.com/ADSAdClient31.dll?GetAd=$xmlhttprequest,domain=ninemsn.com.au (easylistchina+easylist.txt: 59433) -.rad.msn.com/ADSAdClient31\.dll\?GetAd= -# @@||9msn.com.au/share/com/adtrack/adtrack.js$domain=ninemsn.com.au (easylistchina+easylist.txt: 58136) -.9msn.com.au/share/com/adtrack/adtrack\.js -# @@||9msn.com.au/Services/Service.axd?callback=ninemsn_ads_contextualTargeting_$script,domain=ninemsn.com.au (easylistchina+easylist.txt: 58135) -.9msn.com.au/Services/Service\.axd\?callback=ninemsn_ads_contextualTargeting_ -# @@||rad.msn.com/ADSAdClient31.dll?GetAd=$xmlhttprequest,domain=ninemsn.com.au (easylist.txt: 48948) -.rad.msn.com/ADSAdClient31\.dll\?GetAd= -# @@||9msn.com.au/share/com/adtrack/adtrack.js$domain=ninemsn.com.au (easylist.txt: 47651) -.9msn.com.au/share/com/adtrack/adtrack\.js -# @@||9msn.com.au/Services/Service.axd?callback=ninemsn_ads_contextualTargeting_$script,domain=ninemsn.com.au (easylist.txt: 47650) -.9msn.com.au/Services/Service\.axd\?callback=ninemsn_ads_contextualTargeting_ - -#ab2p-unblock-dnt-R1496 -{+client-header-tagger{ab2p-unblock-dnt-R1496} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=nlfreevpn.com|oldapps.com (easylistchina+easylist.txt: 59335) -.pagead2.googlesyndication.com/pagead/show_ads\.js -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=nlfreevpn.com|oldapps.com (easylist.txt: 48850) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-dnt-R1497 -{+client-header-tagger{ab2p-unblock-dnt-R1497} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=nlfreevpn.com|oldapps.com|pattayaone.net|unlockpwd.com|uploadex.com (easylistchina+easylist.txt: 59331) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=nlfreevpn.com|oldapps.com|pattayaone.net|unlockpwd.com|uploadex.com (easylist.txt: 48846) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-dnt-R1498 -{+client-header-tagger{ab2p-unblock-dnt-R1498} \ -} -# @@||wp.com/www.noobpreneur.com/wp-content/uploads/*-ad.jpg?resize=$domain=noobpreneur.com (easylistchina+easylist.txt: 59826) -.wp.com/www\.noobpreneur\.com/wp-content/uploads/.*-ad\.jpg\?resize= -# @@||wp.com/www.noobpreneur.com/wp-content/uploads/*-ad.jpg?resize=$domain=noobpreneur.com (easylist.txt: 49341) -.wp.com/www\.noobpreneur\.com/wp-content/uploads/.*-ad\.jpg\?resize= - -#ab2p-unblock-dnt-R1499 -{+client-header-tagger{ab2p-unblock-dnt-R1499} \ -} -# @@||emediate.se/eas?$domain=novatv.bg|tv2.dk|tv3.se|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61015) -.emediate.se/eas\? -# @@||emediate.se/eas?$domain=novatv.bg|tv2.dk|tv3.se|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50530) -.emediate.se/eas\? - -#ab2p-unblock-dnt-R1500 -{+client-header-tagger{ab2p-unblock-dnt-R1500} \ -} -# @@||googlesyndication.com/pagead/ads?$object-subrequest,domain=nx8.com (easylistchina+easylist.txt: 58913) -.googlesyndication.com/pagead/ads\? -# @@||googlesyndication.com/pagead/ads?$object-subrequest,domain=nx8.com (easylist.txt: 48428) -.googlesyndication.com/pagead/ads\? - -#ab2p-unblock-dnt-R1501 -{+client-header-tagger{ab2p-unblock-dnt-R1501} \ -} -# @@||nyctourist.com/www/delivery/spcjs.php?$script,domain=nyctourist.com (easylistchina+easylist.txt: 59259) -.nyctourist.com/www/delivery/spcjs\.php\? -# @@||ads.bizx.info/www/delivery/spc.php?zones$script,domain=nyctourist.com (easylistchina+easylist.txt: 58225) -.ads.bizx.info/www/delivery/spc\.php\?zones -# @@||nyctourist.com/www/delivery/spcjs.php?$script,domain=nyctourist.com (easylist.txt: 48774) -.nyctourist.com/www/delivery/spcjs\.php\? -# @@||ads.bizx.info/www/delivery/spc.php?zones$script,domain=nyctourist.com (easylist.txt: 47740) -.ads.bizx.info/www/delivery/spc\.php\?zones - -#ab2p-unblock-dnt-R1502 -{+client-header-tagger{ab2p-unblock-dnt-R1502} \ -} -# @@||nytimes.com/adx/bin/adx_remote.html?type=fastscript$script,xmlhttprequest,domain=nytimes.com (easylistchina+easylist.txt: 59264) -.nytimes.com/adx/bin/adx_remote\.html\?type=fastscript -# @@||nyt.com^*/dfp.js$domain=nytimes.com (easylistchina+easylist.txt: 59262) -.nyt.com/.*/dfp\.js -# @@||nyt.com^*/ad-view-manager.js$domain=nytimes.com (easylistchina+easylist.txt: 59261) -.nyt.com/.*/ad-view-manager\.js -# @@||nyt.com^*/ad-loader.js$domain=nytimes.com (easylistchina+easylist.txt: 59260) -.nyt.com/.*/ad-loader\.js -# @@||nytimes.com/adx/bin/adx_remote.html?type=fastscript$script,xmlhttprequest,domain=nytimes.com (easylist.txt: 48779) -.nytimes.com/adx/bin/adx_remote\.html\?type=fastscript -# @@||nyt.com^*/dfp.js$domain=nytimes.com (easylist.txt: 48777) -.nyt.com/.*/dfp\.js -# @@||nyt.com^*/ad-view-manager.js$domain=nytimes.com (easylist.txt: 48776) -.nyt.com/.*/ad-view-manager\.js -# @@||nyt.com^*/ad-loader.js$domain=nytimes.com (easylist.txt: 48775) -.nyt.com/.*/ad-loader\.js - -#ab2p-unblock-dnt-R1503 -{+client-header-tagger{ab2p-unblock-dnt-R1503} \ -} -# @@||nzd.co.nz^*/ads/webads$script,domain=nzdating.com (easylistchina+easylist.txt: 60592) -.nzd.co.nz/.*/ads/webads -# @@||nzd.co.nz^*/ads/webads$script,domain=nzdating.com (easylist.txt: 50107) -.nzd.co.nz/.*/ads/webads - -#ab2p-unblock-dnt-R1504 -{+client-header-tagger{ab2p-unblock-dnt-R1504} \ -} -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/brighthouse.com/$document,domain=oascentral.feedroom.com (easylistchina+easylist.txt: 59275) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/brighthouse\.com/ -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/brighthouse.com/$document,domain=oascentral.feedroom.com (easylist.txt: 48790) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/brighthouse\.com/ - -#ab2p-unblock-dnt-R1505 -{+client-header-tagger{ab2p-unblock-dnt-R1505} \ -} -# @@||glnimages.s3.amazonaws.com/odw/ad$image,domain=odysseyware.com (easylistchina+easylist.txt: 58882) -.glnimages.s3.amazonaws.com/odw/ad -# @@||glnimages.s3.amazonaws.com/odw/ad$image,domain=odysseyware.com (easylist.txt: 48397) -.glnimages.s3.amazonaws.com/odw/ad - -#ab2p-unblock-dnt-R1506 -{+client-header-tagger{ab2p-unblock-dnt-R1506} \ -} -# @@||gfsrv.net/ad/$domain=ogame.org|ogame.us (easylistchina+easylist.txt: 58875) -.gfsrv.net/ad/ -# @@||gfsrv.net/ad/$domain=ogame.org|ogame.us (easylist.txt: 48390) -.gfsrv.net/ad/ - -#ab2p-unblock-dnt-R1507 -{+client-header-tagger{ab2p-unblock-dnt-R1507} \ -} -# @@||exchange.buzzoola.com/video_event/*/ctor/0|$object-subrequest,domain=ok.ru (advblock.txt: 7297) -.exchange.buzzoola.com/video_event/.*/ctor/0$ -# @@||exchange.buzzoola.com/ul_cb/adv/$object-subrequest,domain=ok.ru (advblock.txt: 7296) -.exchange.buzzoola.com/ul_cb/adv/ -# @@||exchange.buzzoola.com/crossdomain.xml$domain=ok.ru (advblock.txt: 7295) -.exchange.buzzoola.com/crossdomain\.xml -# @@||exchange.buzzoola.com/adv/$object-subrequest,domain=ok.ru (advblock.txt: 7294) -.exchange.buzzoola.com/adv/ -# @@||mail.ru/adi/2247?$domain=ok.ru (advblock.txt: 6837) -.mail.ru/adi/2247\? -# @@||mail.ru/adi/2174?$domain=ok.ru (advblock.txt: 6836) -.mail.ru/adi/2174\? - -#ab2p-unblock-dnt-R1508 -{+client-header-tagger{ab2p-unblock-dnt-R1508} \ -} -# @@||ads.e-planning.net^*/preroll?$object-subrequest,domain=ole.com.ar (easylistchina+easylist.txt: 60943) -.ads.e-planning.net/.*/preroll\? -# @@||ads.e-planning.net^*/preroll?$object-subrequest,domain=ole.com.ar (easylist.txt: 50458) -.ads.e-planning.net/.*/preroll\? - -#ab2p-unblock-dnt-R1509 -{+client-header-tagger{ab2p-unblock-dnt-R1509} \ -} -# @@||olcdn.net/ads1.js$domain=olweb.tv (easylistchina+easylist.txt: 60593) -.olcdn.net/ads1\.js -# @@||olcdn.net/ads1.js$domain=olweb.tv (easylist.txt: 50108) -.olcdn.net/ads1\.js - -#ab2p-unblock-dnt-R1510 -{+client-header-tagger{ab2p-unblock-dnt-R1510} \ -} -# @@/urchin.js$domain=on.cc (easylistchina+easylist.txt: 10462) -/(.*/)?urchin\.js -urchin.js*. -# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina+easylist.txt: 10461) -/(.*/)?hitCount_ -# @@/hitCount.$script,domain=on.cc (easylistchina+easylist.txt: 10460) -/(.*/)?hitCount\. -hitCount.*. - -#ab2p-unblock-dnt-R1511 -{+client-header-tagger{ab2p-unblock-dnt-R1511} \ -} -# @@||adroll.com/j/roundtrip.js$domain=onehourtranslation.com (easylistchina+easylist.txt: 58218) -.adroll.com/j/roundtrip\.js -# @@||adroll.com/j/roundtrip.js$domain=onehourtranslation.com (easylist.txt: 47733) -.adroll.com/j/roundtrip\.js - -#ab2p-unblock-dnt-R1512 -{+client-header-tagger{ab2p-unblock-dnt-R1512} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=online-che.tv|online-domashniy.tv|online-match.tv|online-ntv.tv|online-perviy.tv|online-ren.tv|online-rossiya1.tv|online-rossiya24.tv|online-sts.tv|online-tnt.tv|online-tv3.tv|online-tvc.tv|online-u.tv|online-zvezda.tv (advblock.txt: 7313) -.imasdk.googleapis.com/js/sdkloader/ima3\.js - -#ab2p-unblock-dnt-R1513 -{+client-header-tagger{ab2p-unblock-dnt-R1513} \ -} -# @@||online.ua/adsence.js|$domain=online.ua (advblock.txt: 7589) -.online.ua/adsence\.js$ - -#ab2p-unblock-dnt-R1514 -{+client-header-tagger{ab2p-unblock-dnt-R1514} \ -} -# @@||otrkeyfinder.com/otr/frame*.php?ads=*&search=$subdocument,domain=onlinetvrecorder.com (easylistchina+easylist.txt: 59313) -.otrkeyfinder.com/otr/frame.*\.php\?ads=.*&search= -# @@||otrkeyfinder.com/otr/frame*.php?ads=*&search=$subdocument,domain=onlinetvrecorder.com (easylist.txt: 48828) -.otrkeyfinder.com/otr/frame.*\.php\?ads=.*&search= - -#ab2p-unblock-dnt-R1515 -{+client-header-tagger{ab2p-unblock-dnt-R1515} \ -} -# @@||smartadserver.com/config.js?nwid=$domain=onvasortir.com (easylistchina+easylist.txt: 60749) -.smartadserver.com/config\.js\?nwid= -# @@||sascdn.com/diff/js/smart.js$domain=onvasortir.com (easylistchina+easylist.txt: 60715) -.sascdn.com/diff/js/smart\.js -# @@||smartadserver.com/config.js?nwid=$domain=onvasortir.com (easylist.txt: 50264) -.smartadserver.com/config\.js\?nwid= -# @@||sascdn.com/diff/js/smart.js$domain=onvasortir.com (easylist.txt: 50230) -.sascdn.com/diff/js/smart\.js - -#ab2p-unblock-dnt-R1516 -{+client-header-tagger{ab2p-unblock-dnt-R1516} \ -} -# @@||adocean.pl^*/ad.js?id=$object-subrequest,domain=open.fm (easylistchina+easylist.txt: 60939) -.adocean.pl/.*/ad\.js\?id= -# @@||adocean.pl^*/ad.js?id=$object-subrequest,domain=open.fm (easylist.txt: 50454) -.adocean.pl/.*/ad\.js\?id= - -#ab2p-unblock-dnt-R1517 -{+client-header-tagger{ab2p-unblock-dnt-R1517} \ -} -# @@||openload.co^$xmlhttprequest,domain=openload.co (easylistchina+easylist.txt: 60604) -.openload.co -# @@/openload.co^$image,script,domain=openload.co (easylistchina+easylist.txt: 59929) -/(.*/)?openload\.co[^\w%.-] -openload.co -# @@/Ad2.js$script,domain=openload.co (easylistchina+easylist.txt: 59913) -/(.*/)?Ad2\.js -Ad2.js*. -# @@.css^$stylesheet,domain=openload.co (easylistchina+easylist.txt: 59886) -/.*\.css[^\w%.-] -.*.css -# @@||openload.co^$xmlhttprequest,domain=openload.co (easylist.txt: 50119) -.openload.co -# @@/openload.co^$image,script,domain=openload.co (easylist.txt: 49444) -/(.*/)?openload\.co[^\w%.-] -openload.co -# @@/Ad2.js$script,domain=openload.co (easylist.txt: 49428) -/(.*/)?Ad2\.js -Ad2.js*. -# @@.css^$stylesheet,domain=openload.co (easylist.txt: 49401) -/.*\.css[^\w%.-] -.*.css - -#ab2p-unblock-dnt-R1518 -{+client-header-tagger{ab2p-unblock-dnt-R1518} \ -} -# @@||openload.tv^$script,domain=openload.co|openload.io (easylistchina+easylist.txt: 60609) -.openload.tv -# @@||openload.tv^$script,domain=openload.co|openload.io (easylist.txt: 50124) -.openload.tv - -#ab2p-unblock-dnt-R1519 -{+client-header-tagger{ab2p-unblock-dnt-R1519} \ -} -# @@||openload.tv^$image,domain=openload.io (easylistchina+easylist.txt: 60608) -.openload.tv -# @@||openload.io^$image,script,stylesheet,subdocument,domain=openload.io (easylistchina+easylist.txt: 60607) -.openload.io -# @@||openload.tv^$image,domain=openload.io (easylist.txt: 50123) -.openload.tv -# @@||openload.io^$image,script,stylesheet,subdocument,domain=openload.io (easylist.txt: 50122) -.openload.io - -#ab2p-unblock-dnt-R1520 -{+client-header-tagger{ab2p-unblock-dnt-R1520} \ -} -# @@||netdna-cdn.com^*/OpenX/$domain=openx.com (easylistchina+easylist.txt: 61221) -.netdna-cdn.com/.*/OpenX/ -# @@||netdna-cdn.com^*/OpenX/$domain=openx.com (easylist.txt: 50736) -.netdna-cdn.com/.*/OpenX/ - -#ab2p-unblock-dnt-R1521 -{+client-header-tagger{ab2p-unblock-dnt-R1521} \ -} -# @@||revresda.com/js.ng/*&adsize=960x400&$script,domain=orbitz.com (easylistchina+easylist.txt: 59461) -.revresda.com/js\.ng/.*&adsize=960x400& -# @@||revresda.com/js.ng/*&adsize=960x400&$script,domain=orbitz.com (easylist.txt: 48976) -.revresda.com/js\.ng/.*&adsize=960x400& - -#ab2p-unblock-dnt-R1522 -{+client-header-tagger{ab2p-unblock-dnt-R1522} \ -} -# @@||longtailvideo.com/5/adtvideo/adtvideo.js$domain=ostrow24.tv (easylistchina+easylist.txt: 61058) -.longtailvideo.com/5/adtvideo/adtvideo\.js -# @@||longtailvideo.com/5/adtvideo/adtvideo.js$domain=ostrow24.tv (easylist.txt: 50573) -.longtailvideo.com/5/adtvideo/adtvideo\.js - -#ab2p-unblock-dnt-R1523 -{+client-header-tagger{ab2p-unblock-dnt-R1523} \ -} -# @@||longtailvideo.com/5/adttext/adttext.js$domain=ostrow24.tv|yuvutu.com (easylistchina+easylist.txt: 61057) -.longtailvideo.com/5/adttext/adttext\.js -# @@||longtailvideo.com/5/adttext/adttext.js$domain=ostrow24.tv|yuvutu.com (easylist.txt: 50572) -.longtailvideo.com/5/adttext/adttext\.js - -#ab2p-unblock-dnt-R1524 -{+client-header-tagger{ab2p-unblock-dnt-R1524} \ -} -# @@||pladform.ru/player/ads.js?$domain=out.pladform.ru (advblock.txt: 7358) -.pladform.ru/player/ads\.js\? - -#ab2p-unblock-dnt-R1525 -{+client-header-tagger{ab2p-unblock-dnt-R1525} \ -} -# @@||liverail.com^*/admanager.swf|$domain=own3d.tv (advblock.txt: 7580) -.liverail.com/.*/admanager\.swf$ - -#ab2p-unblock-dnt-R1526 -{+client-header-tagger{ab2p-unblock-dnt-R1526} \ -} -# @@||ozerskzone.ru/ads/$domain=ozerskzone.ru (advblock.txt: 7352) -.ozerskzone.ru/ads/ - -#ab2p-unblock-dnt-R1527 -{+client-header-tagger{ab2p-unblock-dnt-R1527} \ -} -# @@/ADImages/*$domain=p9.com.tw (easylistchina+easylist.txt: 10004) -/(.*/)?ADImages/.* - -#ab2p-unblock-dnt-R1528 -{+client-header-tagger{ab2p-unblock-dnt-R1528} \ -} -# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina+easylist.txt: 10045) -/(.*/)?img/ad_ - -#ab2p-unblock-dnt-R1529 -{+client-header-tagger{ab2p-unblock-dnt-R1529} \ -} -# @@||adtechus.com/images/*_503x720.gif$object-subrequest,domain=papeldigital.info (easylistchina+easylist.txt: 60959) -.adtechus.com/images/.*_503x720\.gif -# @@||adtechus.com/adxml|*|rettype=$object-subrequest,domain=papeldigital.info (easylistchina+easylist.txt: 60958) -.adtechus.com/adxml\|.*\|rettype= -# @@||adtechus.com/images/*_503x720.gif$object-subrequest,domain=papeldigital.info (easylist.txt: 50474) -.adtechus.com/images/.*_503x720\.gif -# @@||adtechus.com/adxml|*|rettype=$object-subrequest,domain=papeldigital.info (easylist.txt: 50473) -.adtechus.com/adxml\|.*\|rettype= - -#ab2p-unblock-dnt-R1530 -{+client-header-tagger{ab2p-unblock-dnt-R1530} \ -} -# @@||paste.org/style/adframe.js$domain=paste.org (advblock.txt: 7590) -.paste.org/style/adframe\.js - -#ab2p-unblock-dnt-R1531 -{+client-header-tagger{ab2p-unblock-dnt-R1531} \ -} -# @@||zillow.com/widgets/search/ZillowListingsWidget.htm?*&adsize=$subdocument,domain=patch.com (easylistchina+easylist.txt: 59879) -.zillow.com/widgets/search/ZillowListingsWidget\.htm\?.*&adsize= -# @@||zillow.com/widgets/search/ZillowListingsWidget.htm?*&adsize=$subdocument,domain=patch.com (easylist.txt: 49394) -.zillow.com/widgets/search/ZillowListingsWidget\.htm\?.*&adsize= - -#ab2p-unblock-dnt-R375 -{+client-header-tagger{ab2p-unblock-dnt-R375} \ -} -# @@||w.sharethis.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45843) -.w.sharethis.com -# @@||disquscdn.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45841) -.disquscdn.com -# @@||disqus.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45840) -.disqus.com -# @@||connect.facebook.net^$third-party,domain=patheos.com (easylistchina+easylist.txt: 45839) -.connect.facebook.net -# @@||w.sharethis.com^$script,domain=patheos.com (easylist.txt: 35358) -.w.sharethis.com -# @@||disquscdn.com^$script,domain=patheos.com (easylist.txt: 35356) -.disquscdn.com -# @@||disqus.com^$script,domain=patheos.com (easylist.txt: 35355) -.disqus.com -# @@||connect.facebook.net^$third-party,domain=patheos.com (easylist.txt: 35354) -.connect.facebook.net - -#ab2p-unblock-dnt-R1532 -{+client-header-tagger{ab2p-unblock-dnt-R1532} \ -} -# @@||pb.wtf^$script,domain=pb.wtf (advblock.txt: 7591) -.pb.wtf -# @@/adg/adliftQueue.js$script,domain=pb.wtf (advblock.txt: 7525) -/(.*/)?adg/adliftQueue\.js - -#ab2p-unblock-dnt-R1533 -{+client-header-tagger{ab2p-unblock-dnt-R1533} \ -} -# @@||pcgames-download.net^$script,domain=pcgames-download.net (easylistchina+easylist.txt: 60641) -.pcgames-download.net -# @@||pcgames-download.net^$script,domain=pcgames-download.net (easylist.txt: 50156) -.pcgames-download.net - -#ab2p-unblock-dnt-R1534 -{+client-header-tagger{ab2p-unblock-dnt-R1534} \ -} -# @@||sponsorselect.com/Direct/SponsorIndex.aspx$domain=pch.com (easylistchina+easylist.txt: 59567) -.sponsorselect.com/Direct/SponsorIndex\.aspx -# @@||sponsorselect.com/direct/preroll.aspx?$subdocument,domain=pch.com (easylistchina+easylist.txt: 59566) -.sponsorselect.com/direct/preroll\.aspx\? -# @@||optimatic.com^*/shell_$object,domain=pch.com (easylistchina+easylist.txt: 59309) -.optimatic.com/.*/shell_ -# @@||optimatic.com^*/shell.swf$object,domain=pch.com (easylistchina+easylist.txt: 59308) -.optimatic.com/.*/shell\.swf -# @@||optimatic.com/shell.js$domain=pch.com (easylistchina+easylist.txt: 59307) -.optimatic.com/shell\.js -# @@||optimatic.com/iframe.html$subdocument,domain=pch.com (easylistchina+easylist.txt: 59306) -.optimatic.com/iframe\.html -# @@||sponsorselect.com/Direct/SponsorIndex.aspx$domain=pch.com (easylist.txt: 49082) -.sponsorselect.com/Direct/SponsorIndex\.aspx -# @@||sponsorselect.com/direct/preroll.aspx?$subdocument,domain=pch.com (easylist.txt: 49081) -.sponsorselect.com/direct/preroll\.aspx\? -# @@||optimatic.com^*/shell_$object,domain=pch.com (easylist.txt: 48824) -.optimatic.com/.*/shell_ -# @@||optimatic.com^*/shell.swf$object,domain=pch.com (easylist.txt: 48823) -.optimatic.com/.*/shell\.swf -# @@||optimatic.com/shell.js$domain=pch.com (easylist.txt: 48822) -.optimatic.com/shell\.js -# @@||optimatic.com/iframe.html$subdocument,domain=pch.com (easylist.txt: 48821) -.optimatic.com/iframe\.html - -#ab2p-unblock-dnt-R1535 -{+client-header-tagger{ab2p-unblock-dnt-R1535} \ -} -# @@/store_ad/*$domain=pcstore.com.tw (easylistchina+easylist.txt: 10057) -/(.*/)?store_ad/.* - -#ab2p-unblock-dnt-R1536 -{+client-header-tagger{ab2p-unblock-dnt-R1536} \ -} -# @@||pdrs.dp.ua/images/rek/$domain=pdrs.dp.ua (advblock.txt: 7353) -.pdrs.dp.ua/images/rek/ - -#ab2p-unblock-dnt-R1537 -{+client-header-tagger{ab2p-unblock-dnt-R1537} \ -} -# @@||pagead2.googlesyndication.com/simgad/70436825|$image,domain=pencurimovie.pw (easylistchina+easylist.txt: 60634) -.pagead2.googlesyndication.com/simgad/70436825$ -# @@||compagnon.science^$script,domain=pencurimovie.pw (easylistchina+easylist.txt: 60175) -.compagnon.science -# @@||pagead2.googlesyndication.com/simgad/70436825|$image,domain=pencurimovie.pw (easylist.txt: 50149) -.pagead2.googlesyndication.com/simgad/70436825$ -# @@||compagnon.science^$script,domain=pencurimovie.pw (easylist.txt: 49690) -.compagnon.science - -#ab2p-unblock-dnt-R1538 -{+client-header-tagger{ab2p-unblock-dnt-R1538} \ -} -# @@||doubleclick.net/adj/cm.peo/*;cmpos=$script,domain=people.com (easylistchina+easylist.txt: 58707) -.doubleclick.net/adj/cm\.peo/.*;cmpos= -# @@||doubleclick.net/adj/cm.peo/*;cmpos=$script,domain=people.com (easylist.txt: 48222) -.doubleclick.net/adj/cm\.peo/.*;cmpos= - -#ab2p-unblock-dnt-R1539 -{+client-header-tagger{ab2p-unblock-dnt-R1539} \ -} -# @@||timeinc.net/people/static/i/advertising/getpeopleeverywhere-$image,domain=people.com|peoplestylewatch.com (easylistchina+easylist.txt: 59661) -.timeinc.net/people/static/i/advertising/getpeopleeverywhere- -# @@||timeinc.net/people/static/i/advertising/getpeopleeverywhere-$image,domain=people.com|peoplestylewatch.com (easylist.txt: 49176) -.timeinc.net/people/static/i/advertising/getpeopleeverywhere- - -#ab2p-unblock-dnt-R1540 -{+client-header-tagger{ab2p-unblock-dnt-R1540} \ -} -# @@||doubleclick.net/click%$popup,domain=people.com|time.com (easylistchina+easylist.txt: 61408) -.doubleclick.net/click% -# @@||doubleclick.net/click%$popup,domain=people.com|time.com (easylist.txt: 50923) -.doubleclick.net/click% - -#ab2p-unblock-dnt-R1541 -{+client-header-tagger{ab2p-unblock-dnt-R1541} \ -} -# @@||ru/banner/$domain=peretz.ru|rzd.ru|svyaznoy.ru|whiskas.ru (advblock.txt: 7379) - -#ab2p-unblock-dnt-R1542 -{+client-header-tagger{ab2p-unblock-dnt-R1542} \ -} -# @@||johnston.grapeshot.co.uk^$domain=peterboroughtoday.co.uk (easylistchina+easylist.txt: 59047) -.johnston.grapeshot.co.uk -# @@||johnston.grapeshot.co.uk^$domain=peterboroughtoday.co.uk (easylist.txt: 48562) -.johnston.grapeshot.co.uk - -#ab2p-unblock-dnt-R1543 -{+client-header-tagger{ab2p-unblock-dnt-R1543} \ -} -# @@||pgpru.com^*/files?get=$domain=pgpru.com (advblock.txt: 7355) -.pgpru.com/.*/files\?get= - -#ab2p-unblock-dnt-R379 -{+client-header-tagger{ab2p-unblock-dnt-R379} \ -} -# @@||photobucket.com/pbkt/hserver/$object-subrequest,domain=photobucket.com (easylistchina+easylist.txt: 59370) -.photobucket.com/pbkt/hserver/ -# @@||sharethis.com/button/$script,domain=photobucket.com (easylistchina+easylist.txt: 45895) -.sharethis.com/button/ -# @@||print.io^$domain=photobucket.com (easylistchina+easylist.txt: 45894) -.print.io -# @@||pbsrc.com^$image,script,domain=photobucket.com (easylistchina+easylist.txt: 45893) -.pbsrc.com -# @@||connect.facebook.net^$script,domain=photobucket.com (easylistchina+easylist.txt: 45892) -.connect.facebook.net -# @@||aviary.com^$image,script,domain=photobucket.com (easylistchina+easylist.txt: 45891) -.aviary.com -# @@||amazonaws.com^$script,domain=photobucket.com (easylistchina+easylist.txt: 45890) -.amazonaws.com -# @@||photobucket.com/pbkt/hserver/$object-subrequest,domain=photobucket.com (easylist.txt: 48885) -.photobucket.com/pbkt/hserver/ -# @@||sharethis.com/button/$script,domain=photobucket.com (easylist.txt: 35410) -.sharethis.com/button/ -# @@||print.io^$domain=photobucket.com (easylist.txt: 35409) -.print.io -# @@||pbsrc.com^$image,script,domain=photobucket.com (easylist.txt: 35408) -.pbsrc.com -# @@||connect.facebook.net^$script,domain=photobucket.com (easylist.txt: 35407) -.connect.facebook.net -# @@||aviary.com^$image,script,domain=photobucket.com (easylist.txt: 35406) -.aviary.com -# @@||amazonaws.com^$script,domain=photobucket.com (easylist.txt: 35405) -.amazonaws.com - -#ab2p-unblock-dnt-R1544 -{+client-header-tagger{ab2p-unblock-dnt-R1544} \ -} -# @@||photodoska.ru/content/dynamic/ads/$domain=photodoska.ru (advblock.txt: 7356) -.photodoska.ru/content/dynamic/ads/ - -#ab2p-unblock-dnt-R1545 -{+client-header-tagger{ab2p-unblock-dnt-R1545} \ -} -# @@||longtailvideo.com^*/gapro.js$domain=physorg.com (easylistchina+easylist.txt: 59109) -.longtailvideo.com/.*/gapro\.js -# @@||longtailvideo.com^*/gapro.js$domain=physorg.com (easylist.txt: 48624) -.longtailvideo.com/.*/gapro\.js - -#ab2p-unblock-dnt-R1546 -{+client-header-tagger{ab2p-unblock-dnt-R1546} \ -} -# @@/advertisement_$script,domain=pic4you.ru (advblock.txt: 7531) -/(.*/)?advertisement_ - -#ab2p-unblock-dnt-R382 -{+client-header-tagger{ab2p-unblock-dnt-R382} \ -} -# @@||picforall.ru/ads/banner.$image,domain=picforall.ru (advblock.txt: 7593) -.picforall.ru/ads/banner\. - -#ab2p-unblock-dnt-R1547 -{+client-header-tagger{ab2p-unblock-dnt-R1547} \ -} -# @@||ff.connextra.com^$domain=pinnaclesports.com (easylistchina+easylist.txt: 58820) -.ff.connextra.com -# @@||ff.connextra.com^$domain=pinnaclesports.com (easylist.txt: 48335) -.ff.connextra.com - -#ab2p-unblock-dnt-R1548 -{+client-header-tagger{ab2p-unblock-dnt-R1548} \ -} -# @@/Advert_$domain=pisen.com.cn (easylistchina+easylist.txt: 10016) -/(.*/)?Advert_ - -#ab2p-unblock-dnt-R1549 -{+client-header-tagger{ab2p-unblock-dnt-R1549} \ -} -# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina+easylist.txt: 10013) -/(.*/)?adsense/.* - -#ab2p-unblock-dnt-R1550 -{+client-header-tagger{ab2p-unblock-dnt-R1550} \ -} -# @@||videocore.tv^*/advert1.js$domain=piter.tv (advblock.txt: 7605) -.videocore.tv/.*/advert1\.js -# @@||static.videocore.tv^$script,domain=piter.tv (advblock.txt: 7602) -.static.videocore.tv -# @@/advert2.js|$script,domain=piter.tv (advblock.txt: 7528) -/(.*/)?advert2\.js$ -advert2.js - -#ab2p-unblock-dnt-R1551 -{+client-header-tagger{ab2p-unblock-dnt-R1551} \ -} -# @@||plan.ru/adserver/adframe.php?$subdocument,domain=plan.ru (advblock.txt: 7359) -.plan.ru/adserver/adframe\.php\? - -#ab2p-unblock-dnt-R1552 -{+client-header-tagger{ab2p-unblock-dnt-R1552} \ -} -# @@||adbooth.net/src/js/min/adbooth_ajax.js?*&width=300&height=250$domain=planetatvonlinehd.blogspot.com.ar (easylistchina+easylist.txt: 59989) -.adbooth.net/src/js/min/adbooth_ajax\.js\?.*&width=300&height=250 -# @@||adbooth.com/adserver/iframe.php?*&w=300&h=250&$subdocument,domain=planetatvonlinehd.blogspot.com.ar (easylistchina+easylist.txt: 59988) -.adbooth.com/adserver/iframe\.php\?.*&w=300&h=250& -# @@||adbooth.net/src/js/min/adbooth_ajax.js?*&width=300&height=250$domain=planetatvonlinehd.blogspot.com.ar (easylist.txt: 49504) -.adbooth.net/src/js/min/adbooth_ajax\.js\?.*&width=300&height=250 -# @@||adbooth.com/adserver/iframe.php?*&w=300&h=250&$subdocument,domain=planetatvonlinehd.blogspot.com.ar (easylist.txt: 49503) -.adbooth.com/adserver/iframe\.php\?.*&w=300&h=250& - -#ab2p-unblock-dnt-R1553 -{+client-header-tagger{ab2p-unblock-dnt-R1553} \ -} -# @@||edgekey.net^*/advertisement.js$domain=play.spotify.com (easylistchina+easylist.txt: 60245) -.edgekey.net/.*/advertisement\.js -# @@||edgekey.net^*/advertisement.js$domain=play.spotify.com (easylist.txt: 49760) -.edgekey.net/.*/advertisement\.js - -#ab2p-unblock-dnt-R1554 -{+client-header-tagger{ab2p-unblock-dnt-R1554} \ -} -# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina+easylist.txt: 10201) -.cbjs.baidu.com/js/s\.js - -#ab2p-unblock-dnt-R1555 -{+client-header-tagger{ab2p-unblock-dnt-R1555} \ -} -# @@||doubleclick.net^*/ndm.tcm/video;$script,domain=player.video.news.com.au (easylistchina+easylist.txt: 58734) -.doubleclick.net/.*/ndm\.tcm/video; -# @@||doubleclick.net^*/ndm.tcm/video;$script,domain=player.video.news.com.au (easylist.txt: 48249) -.doubleclick.net/.*/ndm\.tcm/video; - -#ab2p-unblock-dnt-R1556 -{+client-header-tagger{ab2p-unblock-dnt-R1556} \ -} -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$object-subrequest,domain=playreplay.net|vaughnlive.tv (easylistchina+easylist.txt: 58169) -.ad4.liverail.com/\?LR_PUBLISHER_ID= -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$object-subrequest,domain=playreplay.net|vaughnlive.tv (easylist.txt: 47684) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-dnt-R1557 -{+client-header-tagger{ab2p-unblock-dnt-R1557} \ -} -# @@||openx.org/avw.php?zoneid$image,domain=podomatic.com (easylistchina+easylist.txt: 59303) -.openx.org/avw\.php\?zoneid -# @@||openx.org/avw.php?zoneid$image,domain=podomatic.com (easylist.txt: 48818) -.openx.org/avw\.php\?zoneid - -#ab2p-unblock-dnt-R1558 -{+client-header-tagger{ab2p-unblock-dnt-R1558} \ -} -# @@||pubmatic.com/AdServer/UPug?$script,domain=politico.com (easylistchina+easylist.txt: 59421) -.pubmatic.com/AdServer/UPug\? -# @@||pubmatic.com/AdServer/js/universalpixel.js$domain=politico.com (easylistchina+easylist.txt: 59420) -.pubmatic.com/AdServer/js/universalpixel\.js -# @@||pubmatic.com/AdServer/UPug?$script,domain=politico.com (easylist.txt: 48936) -.pubmatic.com/AdServer/UPug\? -# @@||pubmatic.com/AdServer/js/universalpixel.js$domain=politico.com (easylist.txt: 48935) -.pubmatic.com/AdServer/js/universalpixel\.js - -#ab2p-unblock-dnt-R1559 -{+client-header-tagger{ab2p-unblock-dnt-R1559} \ -} -# @@||pollen.vc/views/ads.html$domain=pollen.vc (easylistchina+easylist.txt: 59397) -.pollen.vc/views/ads\.html -# @@||pollen.vc/views/ads.html$domain=pollen.vc (easylist.txt: 48912) -.pollen.vc/views/ads\.html - -#ab2p-unblock-dnt-R1560 -{+client-header-tagger{ab2p-unblock-dnt-R1560} \ -} -# @@||adv.adview.pl/ads/*.mp4$object-subrequest,domain=polskieradio.pl|radiozet.pl|spryciarze.pl|tvp.info (easylistchina+easylist.txt: 60960) -.adv.adview.pl/ads/.*\.mp4 -# @@||adv.adview.pl/ads/*.mp4$object-subrequest,domain=polskieradio.pl|radiozet.pl|spryciarze.pl|tvp.info (easylist.txt: 50475) -.adv.adview.pl/ads/.*\.mp4 - -#ab2p-unblock-dnt-R1561 -{+client-header-tagger{ab2p-unblock-dnt-R1561} \ -} -# @@||popularmechanics.com/ams/page-ads.js$domain=popularmechanics.com (easylistchina+easylist.txt: 59401) -.popularmechanics.com/ams/page-ads\.js -# @@||popularmechanics.com/ams/page-ads.js$domain=popularmechanics.com (easylist.txt: 48916) -.popularmechanics.com/ams/page-ads\.js - -#ab2p-unblock-dnt-R392 -{+client-header-tagger{ab2p-unblock-dnt-R392} \ -} -# @@||pornhublive.com/?AFNO=$popup,domain=pornhub.com (easylistchina+easylist.txt: 61795) -.pornhublive.com/\?AFNO= -# @@&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box$popup,domain=pornhub.com (easylistchina+easylist.txt: 61789) -/.*&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box -# @@||pornhublive.com/?AFNO=$popup,domain=pornhub.com (easylist.txt: 51310) -.pornhublive.com/\?AFNO= -# @@&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box$popup,domain=pornhub.com (easylist.txt: 51304) -/.*&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box - -#ab2p-unblock-dnt-R393 -{+client-header-tagger{ab2p-unblock-dnt-R393} \ -} -# @@||youporn.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61723) -.youporn.phncdn.com -# @@||static.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61700) -.static.tube8.phncdn.com -# @@||spankwire.phncdn.com^$image,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61699) -.spankwire.phncdn.com -# @@||s7.addthis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61698) -.s7.addthis.com -# @@||redtubefiles.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61697) -.redtubefiles.com -# @@||pornhub.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61666) -.pornhub.phncdn.com -# @@||platform.twitter.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61643) -.platform.twitter.com -# @@||platform.tumblr.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61642) -.platform.tumblr.com -# @@||keezmovies.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61484) -.keezmovies.phncdn.com -# @@||image.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61483) -.image.tube8.phncdn.com -# @@||extremetube.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61481) -.extremetube.phncdn.com -# @@||disquscdn.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61480) -.disquscdn.com/count\.js -# @@||disqus.com/embed.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61479) -.disqus.com/embed\.js -# @@||disqus.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61478) -.disqus.com/count\.js -# @@||connect.facebook.net^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61477) -.connect.facebook.net -# @@||apis.google.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61475) -.apis.google.com -# @@||ajax.googleapis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61473) -.ajax.googleapis.com -# @@||youporn.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51238) -.youporn.phncdn.com -# @@||static.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51215) -.static.tube8.phncdn.com -# @@||spankwire.phncdn.com^$image,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51214) -.spankwire.phncdn.com -# @@||s7.addthis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51213) -.s7.addthis.com -# @@||redtubefiles.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51212) -.redtubefiles.com -# @@||pornhub.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51181) -.pornhub.phncdn.com -# @@||platform.twitter.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51158) -.platform.twitter.com -# @@||platform.tumblr.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51157) -.platform.tumblr.com -# @@||keezmovies.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50999) -.keezmovies.phncdn.com -# @@||image.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50998) -.image.tube8.phncdn.com -# @@||extremetube.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50996) -.extremetube.phncdn.com -# @@||disquscdn.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50995) -.disquscdn.com/count\.js -# @@||disqus.com/embed.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50994) -.disqus.com/embed\.js -# @@||disqus.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50993) -.disqus.com/count\.js -# @@||connect.facebook.net^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50992) -.connect.facebook.net -# @@||apis.google.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50990) -.apis.google.com -# @@||ajax.googleapis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50988) -.ajax.googleapis.com - -#ab2p-unblock-dnt-R1562 -{+client-header-tagger{ab2p-unblock-dnt-R1562} \ -} -# @@||widget.uservoice.com^$script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61712) -.widget.uservoice.com -# @@||uvcdn.com^$image,script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61711) -.uvcdn.com -# @@||amazonaws.com/uploads.uservoice.com/$image,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61474) -.amazonaws.com/uploads\.uservoice\.com/ -# @@||widget.uservoice.com^$script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 51227) -.widget.uservoice.com -# @@||uvcdn.com^$image,script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 51226) -.uvcdn.com -# @@||amazonaws.com/uploads.uservoice.com/$image,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 50989) -.amazonaws.com/uploads\.uservoice\.com/ - -#ab2p-unblock-dnt-R1563 -{+client-header-tagger{ab2p-unblock-dnt-R1563} \ -} -# @@||porsche.com^*/teaser.js$domain=porsche.com (advblock.txt: 7362) -.porsche.com/.*/teaser\.js - -#ab2p-unblock-dnt-R1564 -{+client-header-tagger{ab2p-unblock-dnt-R1564} \ -} -# @@||powerwatch.pw/pop.js$domain=powerwatch.pw (easylistchina+easylist.txt: 60661) -.powerwatch.pw/pop\.js -# @@||powerwatch.pw/pop.js$domain=powerwatch.pw (easylist.txt: 50176) -.powerwatch.pw/pop\.js - -#ab2p-unblock-dnt-R1565 -{+client-header-tagger{ab2p-unblock-dnt-R1565} \ -} -# @@||praca.by/files/adv/index-logos/$domain=praca.by (advblock.txt: 7363) -.praca.by/files/adv/index-logos/ - -#ab2p-unblock-dnt-R1566 -{+client-header-tagger{ab2p-unblock-dnt-R1566} \ -} -# @@||anyvan.com/send-goods-api/$domain=preloved.co.uk (easylistchina+easylist.txt: 58408) -.anyvan.com/send-goods-api/ -# @@||anyvan.com/send-goods-api/$domain=preloved.co.uk (easylist.txt: 47923) -.anyvan.com/send-goods-api/ - -#ab2p-unblock-dnt-R1567 -{+client-header-tagger{ab2p-unblock-dnt-R1567} \ -} -# @@||oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx.ads/$image,domain=primerahora.com (easylistchina+easylist.txt: 61078) -.oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx\.ads/ -# @@||oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx.ads/$image,domain=primerahora.com (easylist.txt: 50593) -.oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx\.ads/ - -#ab2p-unblock-dnt-R1568 -{+client-header-tagger{ab2p-unblock-dnt-R1568} \ -} -# @@||ajax.googleapis.com/ajax/libs/jquery/$domain=primewire.ag (easylistchina+easylist.txt: 45884) -.ajax.googleapis.com/ajax/libs/jquery/ -# @@||ajax.googleapis.com/ajax/libs/jquery/$domain=primewire.ag (easylist.txt: 35399) -.ajax.googleapis.com/ajax/libs/jquery/ - -#ab2p-unblock-dnt-R400 -{+client-header-tagger{ab2p-unblock-dnt-R400} \ -} -# @@||s7.addthis.com^$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45886) -.s7.addthis.com -# @@||platform.twitter.com/widgets.js$script,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45885) -.platform.twitter.com/widgets\.js -# @@||s7.addthis.com^$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35401) -.s7.addthis.com -# @@||platform.twitter.com/widgets.js$script,domain=primewire.ag|primewire.in (easylist.txt: 35400) -.platform.twitter.com/widgets\.js - -#ab2p-unblock-dnt-R1569 -{+client-header-tagger{ab2p-unblock-dnt-R1569} \ -} -# @@||doubleclick.net/adj/profootballreference.fsv/$script,domain=pro-football-reference.com (easylistchina+easylist.txt: 58717) -.doubleclick.net/adj/profootballreference\.fsv/ -# @@||doubleclick.net/adj/profootballreference.fsv/$script,domain=pro-football-reference.com (easylist.txt: 48232) -.doubleclick.net/adj/profootballreference\.fsv/ - -#ab2p-unblock-dnt-R1570 -{+client-header-tagger{ab2p-unblock-dnt-R1570} \ -} -# @@||prodaj.pl/adv/$domain=prodaj.pl (advblock.txt: 7365) -.prodaj.pl/adv/ - -#ab2p-unblock-dnt-R402 -{+client-header-tagger{ab2p-unblock-dnt-R402} \ -} -# @@||yahooapis.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45870) -.yahooapis.com -# @@||s7.addthis.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45869) -.s7.addthis.com -# @@||platform.twitter.com/widgets.js$domain=promptfile.com (easylistchina+easylist.txt: 45868) -.platform.twitter.com/widgets\.js -# @@||netdna.bootstrapcdn.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45867) -.netdna.bootstrapcdn.com -# @@||connect.facebook.net^$script,domain=promptfile.com (easylistchina+easylist.txt: 45866) -.connect.facebook.net -# @@||ajax.googleapis.com/ajax/libs/$script,domain=promptfile.com (easylistchina+easylist.txt: 45865) -.ajax.googleapis.com/ajax/libs/ -# @@||addthis.com/url/shares.json$domain=promptfile.com (easylistchina+easylist.txt: 45864) -.addthis.com/url/shares\.json -# @@||yahooapis.com^$script,domain=promptfile.com (easylist.txt: 35385) -.yahooapis.com -# @@||s7.addthis.com^$script,domain=promptfile.com (easylist.txt: 35384) -.s7.addthis.com -# @@||platform.twitter.com/widgets.js$domain=promptfile.com (easylist.txt: 35383) -.platform.twitter.com/widgets\.js -# @@||netdna.bootstrapcdn.com^$script,domain=promptfile.com (easylist.txt: 35382) -.netdna.bootstrapcdn.com -# @@||connect.facebook.net^$script,domain=promptfile.com (easylist.txt: 35381) -.connect.facebook.net -# @@||ajax.googleapis.com/ajax/libs/$script,domain=promptfile.com (easylist.txt: 35380) -.ajax.googleapis.com/ajax/libs/ -# @@||addthis.com/url/shares.json$domain=promptfile.com (easylist.txt: 35379) -.addthis.com/url/shares\.json - -#ab2p-unblock-dnt-R1571 -{+client-header-tagger{ab2p-unblock-dnt-R1571} \ -} -# @@.xzn.ir/$script,third-party,domain=psarips.com (easylistchina+easylist.txt: 59912) -/.*\.xzn\.ir/ -.*.xzn.ir -# @@.xzn.ir/$script,third-party,domain=psarips.com (easylist.txt: 49427) -/.*\.xzn\.ir/ -.*.xzn.ir - -#ab2p-unblock-dnt-R1572 -{+client-header-tagger{ab2p-unblock-dnt-R1572} \ -} -# @@||publisher.adservice.com^$domain=publisher.adservice.com (easylistchina+easylist.txt: 61297) -.publisher.adservice.com -# @@||publisher.adservice.com^$domain=publisher.adservice.com (easylist.txt: 50812) -.publisher.adservice.com - -#ab2p-unblock-dnt-R1573 -{+client-header-tagger{ab2p-unblock-dnt-R1573} \ -} -# @@||banner.pumpkinpatchkids.com/www/delivery/$domain=pumpkinpatch.co.nz|pumpkinpatch.co.uk|pumpkinpatch.com|pumpkinpatch.com.au (easylistchina+easylist.txt: 58472) -.banner.pumpkinpatchkids.com/www/delivery/ -# @@||banner.pumpkinpatchkids.com/www/delivery/$domain=pumpkinpatch.co.nz|pumpkinpatch.co.uk|pumpkinpatch.com|pumpkinpatch.com.au (easylist.txt: 47987) -.banner.pumpkinpatchkids.com/www/delivery/ - -#ab2p-unblock-dnt-R403 -{+client-header-tagger{ab2p-unblock-dnt-R403} \ -} -# @@||thefile.me^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61419) -.thefile.me -# @@||streamin.to^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61418) -.streamin.to -# @@||sharesix.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61417) -.sharesix.com -# @@||sharerepo.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61416) -.sharerepo.com -# @@||nosvideo.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61414) -.nosvideo.com -# @@||cloudzilla.to^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61407) -.cloudzilla.to -# @@||bestreams.net^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61404) -.bestreams.net -# @@||thefile.me^$popup,domain=putlocker.is (easylist.txt: 50934) -.thefile.me -# @@||streamin.to^$popup,domain=putlocker.is (easylist.txt: 50933) -.streamin.to -# @@||sharesix.com^$popup,domain=putlocker.is (easylist.txt: 50932) -.sharesix.com -# @@||sharerepo.com^$popup,domain=putlocker.is (easylist.txt: 50931) -.sharerepo.com -# @@||nosvideo.com^$popup,domain=putlocker.is (easylist.txt: 50929) -.nosvideo.com -# @@||cloudzilla.to^$popup,domain=putlocker.is (easylist.txt: 50922) -.cloudzilla.to -# @@||bestreams.net^$popup,domain=putlocker.is (easylist.txt: 50919) -.bestreams.net - -#ab2p-unblock-dnt-R1574 -{+client-header-tagger{ab2p-unblock-dnt-R1574} \ -} -# @@?bannerId=$domain=qbao.com (easylistchina+easylist.txt: 10065) -/.*\?bannerId= - -#ab2p-unblock-dnt-R1575 -{+client-header-tagger{ab2p-unblock-dnt-R1575} \ -} -# @@||medialand.ru/t/$script,domain=qip.ru (advblock.txt: 7631) -.medialand.ru/t/ - -#ab2p-unblock-dnt-R1576 -{+client-header-tagger{ab2p-unblock-dnt-R1576} \ -} -# @@||qoinfaucet.com^$script,domain=qoinfaucet.com (easylistchina+easylist.txt: 60680) -.qoinfaucet.com -# @@||qoinfaucet.com^$script,domain=qoinfaucet.com (easylist.txt: 50195) -.qoinfaucet.com - -#ab2p-unblock-dnt-R1577 -{+client-header-tagger{ab2p-unblock-dnt-R1577} \ -} -# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina+easylist.txt: 10487) -.tajs.qq.com/stats\? - -#ab2p-unblock-dnt-R1578 -{+client-header-tagger{ab2p-unblock-dnt-R1578} \ -} -# @@||quantcast.com/advertise$domain=quantcast.com (easylistchina+easylist.txt: 61203) -.quantcast.com/advertise -# @@||quantcast.com/advertise$domain=quantcast.com (easylist.txt: 50718) -.quantcast.com/advertise - -#ab2p-unblock-dnt-R1579 -{+client-header-tagger{ab2p-unblock-dnt-R1579} \ -} -# @@||qzprod.files.wordpress.com^*?w=$domain=qz.com (easylistchina+easylist.txt: 59429) -.qzprod.files.wordpress.com/.*\?w= -# @@||ox-d.qz.com/w/1.0/jstag|$script,domain=qz.com (easylistchina+easylist.txt: 59317) -.ox-d.qz.com/w/1\.0/jstag$ -# @@||qzprod.files.wordpress.com^*?w=$domain=qz.com (easylist.txt: 48944) -.qzprod.files.wordpress.com/.*\?w= -# @@||ox-d.qz.com/w/1.0/jstag|$script,domain=qz.com (easylist.txt: 48832) -.ox-d.qz.com/w/1\.0/jstag$ - -#ab2p-unblock-dnt-R1580 -{+client-header-tagger{ab2p-unblock-dnt-R1580} \ -} -# @@||rackcdn.com/banners/$image,domain=rackspace.co.uk|rackspace.com.au (easylistchina+easylist.txt: 59431) -.rackcdn.com/banners/ -# @@||rackcdn.com/banners/$image,domain=rackspace.co.uk|rackspace.com.au (easylist.txt: 48946) -.rackcdn.com/banners/ - -#ab2p-unblock-dnt-R1581 -{+client-header-tagger{ab2p-unblock-dnt-R1581} \ -} -# @@||cbslocal.com/flash/videoads.*.swf$object,domain=radio.com (easylistchina+easylist.txt: 58554) -.cbslocal.com/flash/videoads\..*\.swf -# @@||cbslocal.com/flash/videoads.*.swf$object,domain=radio.com (easylist.txt: 48069) -.cbslocal.com/flash/videoads\..*\.swf - -#ab2p-unblock-dnt-R1582 -{+client-header-tagger{ab2p-unblock-dnt-R1582} \ -} -# @@||edge.andomedia.com^*/ando/files/$object-subrequest,domain=radiou.com (easylistchina+easylist.txt: 58767) -.edge.andomedia.com/.*/ando/files/ -# @@||edge.andomedia.com^*/ando/files/$object-subrequest,domain=radiou.com (easylist.txt: 48282) -.edge.andomedia.com/.*/ando/files/ - -#ab2p-unblock-dnt-R1583 -{+client-header-tagger{ab2p-unblock-dnt-R1583} \ -} -# @@/advertise.js|$domain=raketa-tv.com (advblock.txt: 7529) -/(.*/)?advertise\.js$ -advertise.js - -#ab2p-unblock-dnt-R1584 -{+client-header-tagger{ab2p-unblock-dnt-R1584} \ -} -# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina+easylist.txt: 10161) -.ads.rakuya.com.tw - -#ab2p-unblock-dnt-R1585 -{+client-header-tagger{ab2p-unblock-dnt-R1585} \ -} -# @@||rcm-images.amazon.com/images/$domain=rankbank.net (easylistchina+easylist.txt: 59443) -.rcm-images.amazon.com/images/ -# @@||rcm-images.amazon.com/images/$domain=rankbank.net (easylist.txt: 48958) -.rcm-images.amazon.com/images/ - -#ab2p-unblock-dnt-R1586 -{+client-header-tagger{ab2p-unblock-dnt-R1586} \ -} -# @@||ox-d.rantsports.com/w/1.0/jstag$script,domain=rantlifestyle.com (easylistchina+easylist.txt: 59318) -.ox-d.rantsports.com/w/1\.0/jstag -# @@||ox-d.rantsports.com/w/1.0/jstag$script,domain=rantlifestyle.com (easylist.txt: 48833) -.ox-d.rantsports.com/w/1\.0/jstag - -#ab2p-unblock-dnt-R1587 -{+client-header-tagger{ab2p-unblock-dnt-R1587} \ -} -# @@||medialand.ru^*/inline.js?$script,domain=rbc.ru (advblock.txt: 7634) -.medialand.ru/.*/inline\.js\? -# @@||medialand.ru^*/base.js?$script,domain=rbc.ru (advblock.txt: 7633) -.medialand.ru/.*/base\.js\? - -#ab2p-unblock-dnt-R1588 -{+client-header-tagger{ab2p-unblock-dnt-R1588} \ -} -# @@||syndication.twimg.com^$script,domain=redmaryland.com (easylistchina+easylist.txt: 46043) -.syndication.twimg.com -# @@||syndication.twimg.com^$script,domain=redmaryland.com (easylist.txt: 35558) -.syndication.twimg.com - -#ab2p-unblock-dnt-R1589 -{+client-header-tagger{ab2p-unblock-dnt-R1589} \ -} -# @@||redtubeplatinum.com/track/*/join?$popup,domain=redtube.com (easylistchina+easylist.txt: 61798) -.redtubeplatinum.com/track/.*/join\? -# @@||redtubeplatinum.com/signup/signup.php$popup,domain=redtube.com (easylistchina+easylist.txt: 61797) -.redtubeplatinum.com/signup/signup\.php -# @@||redtubelive.com/?AFNO=$popup,domain=redtube.com (easylistchina+easylist.txt: 61796) -.redtubelive.com/\?AFNO= -# @@||redtubeplatinum.com/track/*/join?$popup,domain=redtube.com (easylist.txt: 51313) -.redtubeplatinum.com/track/.*/join\? -# @@||redtubeplatinum.com/signup/signup.php$popup,domain=redtube.com (easylist.txt: 51312) -.redtubeplatinum.com/signup/signup\.php -# @@||redtubelive.com/?AFNO=$popup,domain=redtube.com (easylist.txt: 51311) -.redtubelive.com/\?AFNO= - -#ab2p-unblock-dnt-R1590 -{+client-header-tagger{ab2p-unblock-dnt-R1590} \ -} -# @@||d1sp6mwzi1jpx1.cloudfront.net^*/advertisement_min.js$domain=reelkandi.com (easylistchina+easylist.txt: 58640) -.d1sp6mwzi1jpx1.cloudfront.net/.*/advertisement_min\.js -# @@||d1sp6mwzi1jpx1.cloudfront.net^*/advertisement_min.js$domain=reelkandi.com (easylist.txt: 48155) -.d1sp6mwzi1jpx1.cloudfront.net/.*/advertisement_min\.js - -#ab2p-unblock-dnt-R1591 -{+client-header-tagger{ab2p-unblock-dnt-R1591} \ -} -# @@||ads.reempresa.org^$popup,domain=reempresa.org (easylistchina+easylist.txt: 61398) -.ads.reempresa.org -# @@||ads.reempresa.org^$domain=reempresa.org (easylistchina+easylist.txt: 58259) -.ads.reempresa.org -# @@||ads.reempresa.org^$popup,domain=reempresa.org (easylist.txt: 50913) -.ads.reempresa.org -# @@||ads.reempresa.org^$domain=reempresa.org (easylist.txt: 47774) -.ads.reempresa.org - -#ab2p-unblock-dnt-R1592 -{+client-header-tagger{ab2p-unblock-dnt-R1592} \ -} -# @@/reklama.$domain=reklama.com.ua|reklama.marat.ua|reklama.rambler.ru (advblock.txt: 7205) -/(.*/)?reklama\. -reklama.*. - -#ab2p-unblock-dnt-R1593 -{+client-header-tagger{ab2p-unblock-dnt-R1593} \ -} -# @@||remoteshaman.com/templates/*/ads.js|$domain=remoteshaman.com (advblock.txt: 7372) -.remoteshaman.com/templates/.*/ads\.js$ - -#ab2p-unblock-dnt-R1594 -{+client-header-tagger{ab2p-unblock-dnt-R1594} \ -} -# @@||renault.ru/_beta/banner_system/banner.php$domain=renault.ru (advblock.txt: 7373) -.renault.ru/_beta/banner_system/banner\.php - -#ab2p-unblock-dnt-R1595 -{+client-header-tagger{ab2p-unblock-dnt-R1595} \ -} -# @@||adserve.atedra.com/zones.php$xmlhttprequest,domain=repeatmyvids.com (easylistchina+easylist.txt: 58288) -.adserve.atedra.com/zones\.php -# @@||adserve.atedra.com/vast/wrap.php?$script,domain=repeatmyvids.com (easylistchina+easylist.txt: 58287) -.adserve.atedra.com/vast/wrap\.php\? -# @@||adserve.atedra.com/js/$script,domain=repeatmyvids.com (easylistchina+easylist.txt: 58286) -.adserve.atedra.com/js/ -# @@||adserve.atedra.com/zones.php$xmlhttprequest,domain=repeatmyvids.com (easylist.txt: 47803) -.adserve.atedra.com/zones\.php -# @@||adserve.atedra.com/vast/wrap.php?$script,domain=repeatmyvids.com (easylist.txt: 47802) -.adserve.atedra.com/vast/wrap\.php\? -# @@||adserve.atedra.com/js/$script,domain=repeatmyvids.com (easylist.txt: 47801) -.adserve.atedra.com/js/ - -#ab2p-unblock-dnt-R414 -{+client-header-tagger{ab2p-unblock-dnt-R414} \ -} -# @@||reuters.tv/syndicatedPlayerClient/js/advertisement.js$domain=reuters.com (easylistchina+easylist.txt: 59456) -.reuters.tv/syndicatedPlayerClient/js/advertisement\.js -# @@||reuters.tv/syndicatedPlayerChannel/$subdocument,domain=reuters.com (easylistchina+easylist.txt: 59455) -.reuters.tv/syndicatedPlayerChannel/ -# @@||doubleclick.net^*;type=BizDev_Article_RR1;$script,domain=reuters.com (easylistchina+easylist.txt: 58737) -.doubleclick.net/.*;type=BizDev_Article_RR1; -# @@||reuters.tv/syndicatedPlayerClient/js/advertisement.js$domain=reuters.com (easylist.txt: 48971) -.reuters.tv/syndicatedPlayerClient/js/advertisement\.js -# @@||reuters.tv/syndicatedPlayerChannel/$subdocument,domain=reuters.com (easylist.txt: 48970) -.reuters.tv/syndicatedPlayerChannel/ -# @@||doubleclick.net^*;type=BizDev_Article_RR1;$script,domain=reuters.com (easylist.txt: 48252) -.doubleclick.net/.*;type=BizDev_Article_RR1; - -#ab2p-unblock-dnt-R1596 -{+client-header-tagger{ab2p-unblock-dnt-R1596} \ -} -# @@/adfox.reload_code.$domain=rg.ru (advblock.txt: 7183) -/(.*/)?adfox\.reload_code\. - -#ab2p-unblock-dnt-R1597 -{+client-header-tagger{ab2p-unblock-dnt-R1597} \ -} -# @@||iplsc.com^*/inpl.box.ad.js$domain=rmf24.pl (easylistchina+easylist.txt: 61045) -.iplsc.com/.*/inpl\.box\.ad\.js -# @@||iplsc.com^*/inpl.box.ad.js$domain=rmf24.pl (easylist.txt: 50560) -.iplsc.com/.*/inpl\.box\.ad\.js - -#ab2p-unblock-dnt-R1598 -{+client-header-tagger{ab2p-unblock-dnt-R1598} \ -} -# @@||ad.doubleclick.net/adj/rstone.site/music/photos^$script,domain=rollingstone.com (easylistchina+easylist.txt: 58156) -.ad.doubleclick.net/adj/rstone\.site/music/photos[^\w%.-] -# @@||ad.doubleclick.net/adj/rstone.site/music/photos^$script,domain=rollingstone.com (easylist.txt: 47671) -.ad.doubleclick.net/adj/rstone\.site/music/photos[^\w%.-] - -#ab2p-unblock-dnt-R1599 -{+client-header-tagger{ab2p-unblock-dnt-R1599} \ -} -# @@||images*.roofandfloor.com^$image,domain=roofandfloor.com (easylistchina+easylist.txt: 61341) -.images*./.*\.roofandfloor\.com[^\w%.-] -.images*.roofandfloor.com -# @@||images*.roofandfloor.com^$image,domain=roofandfloor.com (easylist.txt: 50856) -.images*./.*\.roofandfloor\.com[^\w%.-] -.images*.roofandfloor.com - -#ab2p-unblock-dnt-R1600 -{+client-header-tagger{ab2p-unblock-dnt-R1600} \ -} -# @@||longtailvideo.com/flowplayer/ova-*.swf$domain=rosemaryconley.tv (easylistchina+easylist.txt: 59108) -.longtailvideo.com/flowplayer/ova-.*\.swf -# @@||longtailvideo.com/flowplayer/ova-*.swf$domain=rosemaryconley.tv (easylist.txt: 48623) -.longtailvideo.com/flowplayer/ova-.*\.swf - -#ab2p-unblock-dnt-R1601 -{+client-header-tagger{ab2p-unblock-dnt-R1601} \ -} -# @@||roshlam.ru/adverts/$xmlhttprequest,domain=roshlam.ru (advblock.txt: 7377) -.roshlam.ru/adverts/ - -#ab2p-unblock-dnt-R1602 -{+client-header-tagger{ab2p-unblock-dnt-R1602} \ -} -# @@/upload/banners/*$domain=rossa-m.ru|travelata.ru (advblock.txt: 7213) -/(.*/)?upload/banners/.* - -#ab2p-unblock-dnt-R1603 -{+client-header-tagger{ab2p-unblock-dnt-R1603} \ -} -# @@||rottentomatoescdn.com^*/SocialAds.js$domain=rottentomatoes.com (easylistchina+easylist.txt: 59469) -.rottentomatoescdn.com/.*/SocialAds\.js -# @@||rottentomatoescdn.com^*/SocialAds.js$domain=rottentomatoes.com (easylist.txt: 48984) -.rottentomatoescdn.com/.*/SocialAds\.js - -#ab2p-unblock-dnt-R1604 -{+client-header-tagger{ab2p-unblock-dnt-R1604} \ -} -# @@||zedo.com/jsc/c5/fhs.js$domain=rrstar.com (easylistchina+easylist.txt: 59874) -.zedo.com/jsc/c5/fhs\.js -# @@||zedo.com/jsc/c5/fhs.js$domain=rrstar.com (easylist.txt: 49389) -.zedo.com/jsc/c5/fhs\.js - -#ab2p-unblock-dnt-R1605 -{+client-header-tagger{ab2p-unblock-dnt-R1605} \ -} -# @@||g.doubleclick.net/gampad/ads?ad_rule=1&adk=*&ciu_szs=300x250&*&gdfp_req=1&*&output=xml_vast2&$object-subrequest,domain=rte.ie (easylistchina+easylist.txt: 60325) -.g.doubleclick.net/gampad/ads\?ad_rule=1&adk=.*&ciu_szs=300x250&.*&gdfp_req=1&.*&output=xml_vast2& -# @@||doubleclick.net/xbbe/creative/vast?$domain=rte.ie (easylistchina+easylist.txt: 60229) -.doubleclick.net/xbbe/creative/vast\? -# @@||g.doubleclick.net/gampad/ads?adk$domain=rte.ie (easylistchina+easylist.txt: 58853) -.g.doubleclick.net/gampad/ads\?adk -# @@||2mdn.net/crossdomain.xml$domain=rte.ie (easylistchina+easylist.txt: 58120) -.2mdn.net/crossdomain\.xml -# @@||g.doubleclick.net/gampad/ads?ad_rule=1&adk=*&ciu_szs=300x250&*&gdfp_req=1&*&output=xml_vast2&$object-subrequest,domain=rte.ie (easylist.txt: 49840) -.g.doubleclick.net/gampad/ads\?ad_rule=1&adk=.*&ciu_szs=300x250&.*&gdfp_req=1&.*&output=xml_vast2& -# @@||doubleclick.net/xbbe/creative/vast?$domain=rte.ie (easylist.txt: 49744) -.doubleclick.net/xbbe/creative/vast\? -# @@||g.doubleclick.net/gampad/ads?adk$domain=rte.ie (easylist.txt: 48368) -.g.doubleclick.net/gampad/ads\?adk -# @@||2mdn.net/crossdomain.xml$domain=rte.ie (easylist.txt: 47635) -.2mdn.net/crossdomain\.xml - -#ab2p-unblock-dnt-R1606 -{+client-header-tagger{ab2p-unblock-dnt-R1606} \ -} -# @@||newmedia.lu^*/adtech_video/*.xml$object-subrequest,domain=rtl.lu (easylistchina+easylist.txt: 61071) -.newmedia.lu/.*/adtech_video/.*\.xml -# @@||newmedia.lu^*/adtech_video/*.xml$object-subrequest,domain=rtl.lu (easylist.txt: 50586) -.newmedia.lu/.*/adtech_video/.*\.xml - -#ab2p-unblock-dnt-R1607 -{+client-header-tagger{ab2p-unblock-dnt-R1607} \ -} -# @@||rus-wars.*/img/$domain=rus-wars.com|rus-wars.ru (advblock.txt: 7382) -.rus-wars.*./(.*/)?img/ - -#ab2p-unblock-dnt-R1608 -{+client-header-tagger{ab2p-unblock-dnt-R1608} \ -} -# @@/pub/ad/*$domain=ruten.com.tw (easylistchina+easylist.txt: 10052) -/(.*/)?pub/ad/.* - -#ab2p-unblock-dnt-R1609 -{+client-header-tagger{ab2p-unblock-dnt-R1609} \ -} -# @@||advert.popunder.ru/banners/advert.php?type=banner_img|$image,subdocument,domain=rutracker.org.ua (advblock.txt: 7556) -.advert.popunder.ru/banners/advert\.php\?type=banner_img$ - -#ab2p-unblock-dnt-R418 -{+client-header-tagger{ab2p-unblock-dnt-R418} \ -} -# @@||rutracker.org/logo/$image,domain=rutracker.org (advblock.txt: 7385) -.rutracker.org/logo/ -# @@//195.82.146.52/logo/*$domain=rutracker.org (advblock.txt: 7180) -195.82.146.52/logo/.* - -#ab2p-unblock-dnt-R1610 -{+client-header-tagger{ab2p-unblock-dnt-R1610} \ -} -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=rutube.ru (advblock.txt: 7575) -.ima3vpaid.appspot.com/\?adTagUrl= -# @@||gpm-digital.com^*/getCode?$object-subrequest,domain=rutube.ru (advblock.txt: 7574) -.gpm-digital.com/.*/getCode\? -# @@||adfox.ru^*/getCodeTest?$object-subrequest,domain=rutube.ru (advblock.txt: 7550) -.adfox.ru/.*/getCodeTest\? -# @@||adfox.ru^*/getCode?$object-subrequest,domain=rutube.ru (advblock.txt: 7549) -.adfox.ru/.*/getCode\? -# @@||adfox.ru^*/event?$object-subrequest,domain=rutube.ru (advblock.txt: 7548) -.adfox.ru/.*/event\? -# @@||ad.mail.ru/vast/$object-subrequest,domain=rutube.ru (advblock.txt: 7544) -.ad.mail.ru/vast/ -# @@://adv.$script,domain=rutube.ru (advblock.txt: 7540) -/.*://adv\. -adv.*. -# @@/crossdomain.xml|$domain=rutube.ru (advblock.txt: 7535) -/(.*/)?crossdomain\.xml$ -crossdomain.xml - -#ab2p-unblock-dnt-R1611 -{+client-header-tagger{ab2p-unblock-dnt-R1611} \ -} -# @@-teasers-$domain=rw.by (advblock.txt: 7176) -/.*-teasers- -.*-teasers-*. - -#ab2p-unblock-dnt-R1612 -{+client-header-tagger{ab2p-unblock-dnt-R1612} \ -} -# @@||sahadan.com^$script,domain=sahadan.com (easylistchina+easylist.txt: 60711) -.sahadan.com -# @@||sahadan.com^$script,domain=sahadan.com (easylist.txt: 50226) -.sahadan.com - -#ab2p-unblock-dnt-R1613 -{+client-header-tagger{ab2p-unblock-dnt-R1613} \ -} -# @@/afr.php?$script,domain=sankakucomplex.com (easylistchina+easylist.txt: 59922) -/(.*/)?afr\.php\? -# @@||208.100.24.244^$script,domain=sankakucomplex.com (easylistchina+easylist.txt: 58115) -.208.100.24.244 -# @@/afr.php?$script,domain=sankakucomplex.com (easylist.txt: 49437) -/(.*/)?afr\.php\? -# @@||208.100.24.244^$script,domain=sankakucomplex.com (easylist.txt: 47630) -.208.100.24.244 - -#ab2p-unblock-dnt-R1614 -{+client-header-tagger{ab2p-unblock-dnt-R1614} \ -} -# @@||sarafannoeradio.org/images/stories/$domain=sarafannoeradio.org (advblock.txt: 7388) -.sarafannoeradio.org/images/stories/ - -#ab2p-unblock-dnt-R1615 -{+client-header-tagger{ab2p-unblock-dnt-R1615} \ -} -# @@||sc2casts.com^$script,domain=sc2casts.com (easylistchina+easylist.txt: 60720) -.sc2casts.com -# @@||sc2casts.com^$script,domain=sc2casts.com (easylist.txt: 50235) -.sc2casts.com - -#ab2p-unblock-dnt-R1616 -{+client-header-tagger{ab2p-unblock-dnt-R1616} \ -} -# @@||scooter-zip.ru/upload/imagelib/baners/$image,domain=scooter-zip.ru (advblock.txt: 7389) -.scooter-zip.ru/upload/imagelib/baners/ - -#ab2p-unblock-dnt-R1617 -{+client-header-tagger{ab2p-unblock-dnt-R1617} \ -} -# @@||admedia.wsod.com^$domain=scottrade.com (easylistchina+easylist.txt: 58209) -.admedia.wsod.com -# @@||ad.wsod.com^$domain=scottrade.com (easylistchina+easylist.txt: 58164) -.ad.wsod.com -# @@||admedia.wsod.com^$domain=scottrade.com (easylist.txt: 47724) -.admedia.wsod.com -# @@||ad.wsod.com^$domain=scottrade.com (easylist.txt: 47679) -.ad.wsod.com - -#ab2p-unblock-dnt-R1618 -{+client-header-tagger{ab2p-unblock-dnt-R1618} \ -} -# @@||screenshot.brandverity.com/cm/review/$document,domain=screenshot.brandverity.com (easylistchina+easylist.txt: 59497) -.screenshot.brandverity.com/cm/review/ -# @@||screenshot.brandverity.com/cm/detail/$document,domain=screenshot.brandverity.com (easylistchina+easylist.txt: 59496) -.screenshot.brandverity.com/cm/detail/ -# @@||screenshot.brandverity.com/cm/review/$document,domain=screenshot.brandverity.com (easylist.txt: 49012) -.screenshot.brandverity.com/cm/review/ -# @@||screenshot.brandverity.com/cm/detail/$document,domain=screenshot.brandverity.com (easylist.txt: 49011) -.screenshot.brandverity.com/cm/detail/ - -#ab2p-unblock-dnt-R1619 -{+client-header-tagger{ab2p-unblock-dnt-R1619} \ -} -# @@||scribdassets.com/aggregated/javascript/ads.js?$domain=scribd.com (easylistchina+easylist.txt: 59499) -.scribdassets.com/aggregated/javascript/ads\.js\? -# @@||scribdassets.com/aggregated/javascript/ads.js?$domain=scribd.com (easylist.txt: 49014) -.scribdassets.com/aggregated/javascript/ads\.js\? - -#ab2p-unblock-dnt-R1620 -{+client-header-tagger{ab2p-unblock-dnt-R1620} \ -} -# @@||thumbs.hexagram.com^$domain=scribol.com (easylistchina+easylist.txt: 59656) -.thumbs.hexagram.com -# @@||api.hexagram.com^$domain=scribol.com (easylistchina+easylist.txt: 58415) -.api.hexagram.com -# @@||thumbs.hexagram.com^$domain=scribol.com (easylist.txt: 49171) -.thumbs.hexagram.com -# @@||api.hexagram.com^$domain=scribol.com (easylist.txt: 47930) -.api.hexagram.com - -#ab2p-unblock-dnt-R1621 -{+client-header-tagger{ab2p-unblock-dnt-R1621} \ -} -# @@||annonser.dagbladet.no/EAS_tag.1.0.js$domain=se.no (easylistchina+easylist.txt: 60980) -.annonser.dagbladet.no/EAS_tag\.1\.0\.js -# @@||annonser.dagbladet.no/eas?$script,domain=se.no (easylistchina+easylist.txt: 60979) -.annonser.dagbladet.no/eas\? -# @@||annonser.dagbladet.no/EAS_tag.1.0.js$domain=se.no (easylist.txt: 50495) -.annonser.dagbladet.no/EAS_tag\.1\.0\.js -# @@||annonser.dagbladet.no/eas?$script,domain=se.no (easylist.txt: 50494) -.annonser.dagbladet.no/eas\? - -#ab2p-unblock-dnt-R1622 -{+client-header-tagger{ab2p-unblock-dnt-R1622} \ -} -# @@||google.com/adsense/$subdocument,domain=sedo.co.uk|sedo.com|sedo.jp|sedo.kr|sedo.pl (easylistchina+easylist.txt: 58898) -.google.com/adsense/ -# @@||google.com/adsense/$subdocument,domain=sedo.co.uk|sedo.com|sedo.jp|sedo.kr|sedo.pl (easylist.txt: 48413) -.google.com/adsense/ - -#ab2p-unblock-dnt-R1623 -{+client-header-tagger{ab2p-unblock-dnt-R1623} \ -} -# @@||sedo.com/ox/www/delivery/ajs.php$domain=sedo.com|sedo.de (easylistchina+easylist.txt: 59511) -.sedo.com/ox/www/delivery/ajs\.php -# @@||sedo.com/ox/www/delivery/ajs.php$domain=sedo.com|sedo.de (easylist.txt: 49026) -.sedo.com/ox/www/delivery/ajs\.php - -#ab2p-unblock-dnt-R1624 -{+client-header-tagger{ab2p-unblock-dnt-R1624} \ -} -# @@|http://$image,third-party,domain=seekingalpha.com (easylistchina+easylist.txt: 59941) -# @@|http://$image,third-party,domain=seekingalpha.com (easylist.txt: 49456) - -#ab2p-unblock-dnt-R1625 -{+client-header-tagger{ab2p-unblock-dnt-R1625} \ -} -# @@||sn00.net^$domain=selectornews.com (advblock.txt: 7394) -.sn00.net - -#ab2p-unblock-dnt-R1626 -{+client-header-tagger{ab2p-unblock-dnt-R1626} \ -} -# @@||ads.awadserver.com^$domain=sellallautos.com (easylistchina+easylist.txt: 58222) -.ads.awadserver.com -# @@||ads.awadserver.com^$domain=sellallautos.com (easylist.txt: 47737) -.ads.awadserver.com - -#ab2p-unblock-dnt-R1627 -{+client-header-tagger{ab2p-unblock-dnt-R1627} \ -} -# @@||sellua.info^*/ad/$domain=sellua.info (advblock.txt: 7390) -.sellua.info/.*/ad/ - -#ab2p-unblock-dnt-R1628 -{+client-header-tagger{ab2p-unblock-dnt-R1628} \ -} -# @@$image,domain=serpens.nl (advblock.txt: 7521) - - -#ab2p-unblock-dnt-R1629 -{+client-header-tagger{ab2p-unblock-dnt-R1629} \ -} -# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina+easylist.txt: 10069) -# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina+easylist.txt: 10056) -/(.*/)?show_ads_impl\.js -# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina+easylist.txt: 10038) -/(.*/)?g\.doubleclick\.net\.js\? -# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina+easylist.txt: 10012) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina+easylist.txt: 10006) -/(.*/)?adlogger_tracker\.php - -#ab2p-unblock-dnt-R1630 -{+client-header-tagger{ab2p-unblock-dnt-R1630} \ -} -# @@||static.adzerk.net/ados.js$domain=serverfault.com|stackoverflow.com (easylistchina+easylist.txt: 59588) -.static.adzerk.net/ados\.js -# @@||engine.adzerk.net/ados?$script,domain=serverfault.com|stackoverflow.com (easylistchina+easylist.txt: 58782) -.engine.adzerk.net/ados\? -# @@||static.adzerk.net/ados.js$domain=serverfault.com|stackoverflow.com (easylist.txt: 49103) -.static.adzerk.net/ados\.js -# @@||engine.adzerk.net/ados?$script,domain=serverfault.com|stackoverflow.com (easylist.txt: 48297) -.engine.adzerk.net/ados\? - -#ab2p-unblock-dnt-R1631 -{+client-header-tagger{ab2p-unblock-dnt-R1631} \ -} -# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina+easylist.txt: 10019) -/(.*/)?advertise/.* - -#ab2p-unblock-dnt-R1632 -{+client-header-tagger{ab2p-unblock-dnt-R1632} \ -} -# @@||google.com/recaptcha/$subdocument,domain=sh.st (easylistchina+easylist.txt: 58903) -.google.com/recaptcha/ -# @@||google.com/recaptcha/$subdocument,domain=sh.st (easylist.txt: 48418) -.google.com/recaptcha/ - -#ab2p-unblock-dnt-R1633 -{+client-header-tagger{ab2p-unblock-dnt-R1633} \ -} -# @@||196.30.218.174/admentor/sirius_sdo_top.htm$subdocument,domain=sharedata.co.za (easylistchina+easylist.txt: 58113) -.196.30.218.174/admentor/sirius_sdo_top\.htm -# @@||196.30.218.174/admentor/sirius_sdo_top.htm$subdocument,domain=sharedata.co.za (easylist.txt: 47628) -.196.30.218.174/admentor/sirius_sdo_top\.htm - -#ab2p-unblock-dnt-R1634 -{+client-header-tagger{ab2p-unblock-dnt-R1634} \ -} -# @@||platform.twitter.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45842) -.platform.twitter.com -# @@||assets.pinterest.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45838) -.assets.pinterest.com -# @@||apis.google.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45837) -.apis.google.com -# @@||ajax.googleapis.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45836) -.ajax.googleapis.com -# @@||platform.twitter.com^$domain=shop.patheos.com (easylist.txt: 35357) -.platform.twitter.com -# @@||assets.pinterest.com^$domain=shop.patheos.com (easylist.txt: 35353) -.assets.pinterest.com -# @@||apis.google.com^$domain=shop.patheos.com (easylist.txt: 35352) -.apis.google.com -# @@||ajax.googleapis.com^$domain=shop.patheos.com (easylist.txt: 35351) -.ajax.googleapis.com - -#ab2p-unblock-dnt-R1635 -{+client-header-tagger{ab2p-unblock-dnt-R1635} \ -} -# @@||getprice.com.au/images/$domain=shopping.ninemsn.com.au|shopping.yahoo.com.au (easylistchina+easylist.txt: 58874) -.getprice.com.au/images/ -# @@||getprice.com.au/images/$domain=shopping.ninemsn.com.au|shopping.yahoo.com.au (easylist.txt: 48389) -.getprice.com.au/images/ - -#ab2p-unblock-dnt-R1636 -{+client-header-tagger{ab2p-unblock-dnt-R1636} \ -} -# @@/tizer/*$domain=sibtravel42.ru|tutu.ru (advblock.txt: 7211) -/(.*/)?tizer/.* - -#ab2p-unblock-dnt-R1637 -{+client-header-tagger{ab2p-unblock-dnt-R1637} \ -} -# @@||amazonaws.com/bt-dashboard-logos/$domain=signal.co (easylistchina+easylist.txt: 58398) -.amazonaws.com/bt-dashboard-logos/ -# @@||amazonaws.com/bt-dashboard-logos/$domain=signal.co (easylist.txt: 47913) -.amazonaws.com/bt-dashboard-logos/ - -#ab2p-unblock-dnt-R1638 -{+client-header-tagger{ab2p-unblock-dnt-R1638} \ -} -# @@||ads.simplyhired.com^$domain=simply-partner.com|simplyhired.com (easylistchina+easylist.txt: 58261) -.ads.simplyhired.com -# @@||ads.simplyhired.com^$domain=simply-partner.com|simplyhired.com (easylist.txt: 47776) -.ads.simplyhired.com - -#ab2p-unblock-dnt-R1639 -{+client-header-tagger{ab2p-unblock-dnt-R1639} \ -} -# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina+easylist.txt: 10484) -.sina.com.cn/iplookup/iplookup\.php\? - -#ab2p-unblock-dnt-R1640 -{+client-header-tagger{ab2p-unblock-dnt-R1640} \ -} -# @@||siteads.com^$domain=siteads.com (easylistchina+easylist.txt: 61253) -.siteads.com -# @@||siteads.com^$domain=siteads.com (easylist.txt: 50768) -.siteads.com - -#ab2p-unblock-dnt-R1641 -{+client-header-tagger{ab2p-unblock-dnt-R1641} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/expansion_embed.js$domain=sizedrive.com|softpedia.com (easylistchina+easylist.txt: 60623) -.pagead2.googlesyndication.com/pagead/js/.*/expansion_embed\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/expansion_embed.js$domain=sizedrive.com|softpedia.com (easylist.txt: 50138) -.pagead2.googlesyndication.com/pagead/js/.*/expansion_embed\.js - -#ab2p-unblock-dnt-R1642 -{+client-header-tagger{ab2p-unblock-dnt-R1642} \ -} -# @@||akamaihd.net^*/advert/$object-subrequest,domain=skai.gr (easylistchina+easylist.txt: 60970) -.akamaihd.net/.*/advert/ -# @@||akamaihd.net^*/advert/$object-subrequest,domain=skai.gr (easylist.txt: 50485) -.akamaihd.net/.*/advert/ - -#ab2p-unblock-dnt-R1643 -{+client-header-tagger{ab2p-unblock-dnt-R1643} \ -} -# @@||skypeassets.com^*/advertise/$domain=skype.com (easylistchina+easylist.txt: 59541) -.skypeassets.com/.*/advertise/ -# @@||skypeassets.com^*/advertise/$domain=skype.com (easylist.txt: 49056) -.skypeassets.com/.*/advertise/ - -#ab2p-unblock-dnt-R1644 -{+client-header-tagger{ab2p-unblock-dnt-R1644} \ -} -# @@||player.cdn.targetspot.com/station/*/ts_config.xml$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59385) -.player.cdn.targetspot.com/station/.*/ts_config\.xml -# @@||player.cdn.targetspot.com/player/ts_as3.swf?$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59384) -.player.cdn.targetspot.com/player/ts_as3\.swf\? -# @@||player.cdn.targetspot.com/crossdomain.xml$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59383) -.player.cdn.targetspot.com/crossdomain\.xml -# @@||player.cdn.targetspot.com/station/*/ts_config.xml$object-subrequest,domain=slacker.com (easylist.txt: 48900) -.player.cdn.targetspot.com/station/.*/ts_config\.xml -# @@||player.cdn.targetspot.com/player/ts_as3.swf?$object-subrequest,domain=slacker.com (easylist.txt: 48899) -.player.cdn.targetspot.com/player/ts_as3\.swf\? -# @@||player.cdn.targetspot.com/crossdomain.xml$object-subrequest,domain=slacker.com (easylist.txt: 48898) -.player.cdn.targetspot.com/crossdomain\.xml - -#ab2p-unblock-dnt-R437 -{+client-header-tagger{ab2p-unblock-dnt-R437} \ -} -# @@||cloudfront.net/js/pubads_$script,domain=slader.com (easylistchina+easylist.txt: 60167) -.cloudfront.net/js/pubads_ -# @@||cloudfront.net/js/pubads_$script,domain=slader.com (easylist.txt: 49682) -.cloudfront.net/js/pubads_ - -#ab2p-unblock-dnt-R1645 -{+client-header-tagger{ab2p-unblock-dnt-R1645} \ -} -# @@||fsdn.com/sd/topics/advertising_64.png$domain=slashdot.org (easylistchina+easylist.txt: 58846) -.fsdn.com/sd/topics/advertising_64\.png -# @@||fsdn.com/sd/topics/advertising_64.png$domain=slashdot.org (easylist.txt: 48361) -.fsdn.com/sd/topics/advertising_64\.png - -#ab2p-unblock-dnt-R1646 -{+client-header-tagger{ab2p-unblock-dnt-R1646} \ -} -# @@||videoads.washingtonpost.com^$object-subrequest,domain=slatev.com (easylistchina+easylist.txt: 59761) -.videoads.washingtonpost.com -# @@||videoads.washingtonpost.com^$object-subrequest,domain=slatev.com (easylist.txt: 49276) -.videoads.washingtonpost.com - -#ab2p-unblock-dnt-R1647 -{+client-header-tagger{ab2p-unblock-dnt-R1647} \ -} -# @@||95.211.194.229^$script,domain=slickvid.com (easylistchina+easylist.txt: 59974) -.95.211.194.229 -# @@||95.211.194.229^$script,domain=slickvid.com (easylist.txt: 49489) -.95.211.194.229 - -#ab2p-unblock-dnt-R1648 -{+client-header-tagger{ab2p-unblock-dnt-R1648} \ -} -# @@||vidible.tv/prod/tags/$script,domain=smallscreennetwork.com (easylistchina+easylist.txt: 59764) -.vidible.tv/prod/tags/ -# @@||vidible.tv/prod/tags/$script,domain=smallscreennetwork.com (easylist.txt: 49279) -.vidible.tv/prod/tags/ - -#ab2p-unblock-dnt-R1649 -{+client-header-tagger{ab2p-unblock-dnt-R1649} \ -} -# @@||smartads.by^$domain=smartads.by (advblock.txt: 7393) -.smartads.by - -#ab2p-unblock-dnt-R1650 -{+client-header-tagger{ab2p-unblock-dnt-R1650} \ -} -# @@||smc.temple.edu/advertising/$domain=smctemple.wpengine.com (easylistchina+easylist.txt: 59546) -.smc.temple.edu/advertising/ -# @@||smc.temple.edu/advertising/$domain=smctemple.wpengine.com (easylist.txt: 49061) -.smc.temple.edu/advertising/ - -#ab2p-unblock-dnt-R1651 -{+client-header-tagger{ab2p-unblock-dnt-R1651} \ -} -# @@||smileonthetiles2.co.uk/openx/www/$image,script,subdocument,domain=smileonthetiles.com|smileonthetiles2.co.uk (easylistchina+easylist.txt: 59549) -.smileonthetiles2.co.uk/openx/www/ -# @@||smileonthetiles2.co.uk/openx/www/$image,script,subdocument,domain=smileonthetiles.com|smileonthetiles2.co.uk (easylist.txt: 49064) -.smileonthetiles2.co.uk/openx/www/ - -#ab2p-unblock-dnt-R1652 -{+client-header-tagger{ab2p-unblock-dnt-R1652} \ -} -# @@||pladform.ru/getVast?$object-subrequest,domain=smotri.com|video.reset.ru (advblock.txt: 7357) -.pladform.ru/getVast\? -# @@||medialand.ru/code?$domain=smotri.com|video.reset.ru (advblock.txt: 7333) -.medialand.ru/code\? -# @@||adrcdn.com/ads/*.xml|$object-subrequest,domain=smotri.com|video.reset.ru (advblock.txt: 7229) -.adrcdn.com/ads/.*\.xml$ - -#ab2p-unblock-dnt-R1653 -{+client-header-tagger{ab2p-unblock-dnt-R1653} \ -} -# @@||adtechus.com/?advideo/$domain=snagfilms.com (easylistchina+easylist.txt: 58319) -.adtechus.com/\?advideo/ -# @@||adtechus.com/?advideo/$domain=snagfilms.com (easylist.txt: 47834) -.adtechus.com/\?advideo/ - -#ab2p-unblock-dnt-R1654 -{+client-header-tagger{ab2p-unblock-dnt-R1654} \ -} -# @@||gg.woniu.com^$domain=snail.com (easylistchina+easylist.txt: 10254) -.gg.woniu.com - -#ab2p-unblock-dnt-R1655 -{+client-header-tagger{ab2p-unblock-dnt-R1655} \ -} -# @@||amazonaws.com^*/300x250_$image,domain=snapapp.com (easylistchina+easylist.txt: 61309) -.amazonaws.com/.*/300x250_ -# @@||amazonaws.com^*-300x250_$image,domain=snapapp.com (easylistchina+easylist.txt: 61308) -.amazonaws.com/.*-300x250_ -# @@||amazonaws.com^*/300x250_$image,domain=snapapp.com (easylist.txt: 50824) -.amazonaws.com/.*/300x250_ -# @@||amazonaws.com^*-300x250_$image,domain=snapapp.com (easylist.txt: 50823) -.amazonaws.com/.*-300x250_ - -#ab2p-unblock-dnt-R1656 -{+client-header-tagger{ab2p-unblock-dnt-R1656} \ -} -# @@||doubleclick.net/adi/sny.tv/media;$subdocument,domain=sny.tv (easylistchina+easylist.txt: 58702) -.doubleclick.net/adi/sny\.tv/media; -# @@||doubleclick.net/adi/sny.tv/media;$subdocument,domain=sny.tv (easylist.txt: 48217) -.doubleclick.net/adi/sny\.tv/media; - -#ab2p-unblock-dnt-R1657 -{+client-header-tagger{ab2p-unblock-dnt-R1657} \ -} -# @@||softportal.com/advert/ushki/$image,domain=softportal.com (advblock.txt: 7395) -.softportal.com/advert/ushki/ - -#ab2p-unblock-dnt-R1658 -{+client-header-tagger{ab2p-unblock-dnt-R1658} \ -} -# @@||assoc-amazon.com/widgets/$domain=sotumblry.com (easylistchina+easylist.txt: 58444) -.assoc-amazon.com/widgets/ -# @@||amazon.com/widgets/$domain=sotumblry.com (easylistchina+easylist.txt: 58395) -.amazon.com/widgets/ -# @@||assoc-amazon.com/widgets/$domain=sotumblry.com (easylist.txt: 47959) -.assoc-amazon.com/widgets/ -# @@||amazon.com/widgets/$domain=sotumblry.com (easylist.txt: 47910) -.amazon.com/widgets/ - -#ab2p-unblock-dnt-R1659 -{+client-header-tagger{ab2p-unblock-dnt-R1659} \ -} -# @@||data.panachetech.com/|$object-subrequest,domain=southpark.nl (easylistchina+easylist.txt: 58653) -.data.panachetech.com/$ -# @@||data.panachetech.com/|$object-subrequest,domain=southpark.nl (easylist.txt: 48168) -.data.panachetech.com/$ - -#ab2p-unblock-dnt-R1660 -{+client-header-tagger{ab2p-unblock-dnt-R1660} \ -} -# @@||spankwirefreehd.com^*.Spankwire_HeaderTab&$popup,domain=spankwire.com (easylistchina+easylist.txt: 61801) -.spankwirefreehd.com/.*\.Spankwire_HeaderTab& -# @@||spankwirecams.com/?AFNO=$popup,domain=spankwire.com (easylistchina+easylist.txt: 61800) -.spankwirecams.com/\?AFNO= -# @@||spankwirefreehd.com^*.Spankwire_HeaderTab&$popup,domain=spankwire.com (easylist.txt: 51316) -.spankwirefreehd.com/.*\.Spankwire_HeaderTab& -# @@||spankwirecams.com/?AFNO=$popup,domain=spankwire.com (easylist.txt: 51315) -.spankwirecams.com/\?AFNO= - -#ab2p-unblock-dnt-R447 -{+client-header-tagger{ab2p-unblock-dnt-R447} \ -} -# @@||doubleclick.net/ddm/ad/*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/$image,domain=speedtest.net (easylistchina+easylist.txt: 58720) -.doubleclick.net/ddm/ad/.*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/ -# @@||zdassets.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45917) -.zdassets.com -# @@||widget.uservoice.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45916) -.widget.uservoice.com -# @@||speedtest.zendesk.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45915) -.speedtest.zendesk.com -# @@||speedtest.net/globe_feed.php?$script,domain=speedtest.net (easylistchina+easylist.txt: 45903) -.speedtest.net/globe_feed\.php\? -# @@||google.com/coop/$script,domain=speedtest.net (easylistchina+easylist.txt: 45902) -.google.com/coop/ -# @@||beta.speedtest.net^$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45901) -.beta.speedtest.net -# @@||b.cdnst.net/dist/js/$script,domain=speedtest.net (easylistchina+easylist.txt: 45900) -.b.cdnst.net/dist/js/ -# @@||ads.ookla.com/www/test.js?$script,domain=speedtest.net (easylistchina+easylist.txt: 45899) -.ads.ookla.com/www/test\.js\? -# @@||doubleclick.net/ddm/ad/*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/$image,domain=speedtest.net (easylist.txt: 48235) -.doubleclick.net/ddm/ad/.*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/ -# @@||zdassets.com^$script,domain=speedtest.net (easylist.txt: 35432) -.zdassets.com -# @@||widget.uservoice.com^$script,domain=speedtest.net (easylist.txt: 35431) -.widget.uservoice.com -# @@||speedtest.zendesk.com^$script,domain=speedtest.net (easylist.txt: 35430) -.speedtest.zendesk.com -# @@||speedtest.net/globe_feed.php?$script,domain=speedtest.net (easylist.txt: 35418) -.speedtest.net/globe_feed\.php\? -# @@||google.com/coop/$script,domain=speedtest.net (easylist.txt: 35417) -.google.com/coop/ -# @@||beta.speedtest.net^$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35416) -.beta.speedtest.net -# @@||b.cdnst.net/dist/js/$script,domain=speedtest.net (easylist.txt: 35415) -.b.cdnst.net/dist/js/ -# @@||ads.ookla.com/www/test.js?$script,domain=speedtest.net (easylist.txt: 35414) -.ads.ookla.com/www/test\.js\? - -#ab2p-unblock-dnt-R1661 -{+client-header-tagger{ab2p-unblock-dnt-R1661} \ -} -# @@/ads/popudner/banner.jpg?$domain=spinandw.in (easylistchina+easylist.txt: 59918) -/(.*/)?ads/popudner/banner\.jpg\? -# @@/ads/popudner/banner.jpg?$domain=spinandw.in (easylist.txt: 49433) -/(.*/)?ads/popudner/banner\.jpg\? - -#ab2p-unblock-dnt-R1662 -{+client-header-tagger{ab2p-unblock-dnt-R1662} \ -} -# @@||spoilertv.com^$script,domain=spoilertv.com (easylistchina+easylist.txt: 60761) -.spoilertv.com -# @@||ads.intergi.com^$script,domain=spoilertv.com (easylistchina+easylist.txt: 60012) -.ads.intergi.com -# @@||spoilertv.com^$script,domain=spoilertv.com (easylist.txt: 50276) -.spoilertv.com -# @@||ads.intergi.com^$script,domain=spoilertv.com (easylist.txt: 49527) -.ads.intergi.com - -#ab2p-unblock-dnt-R1663 -{+client-header-tagger{ab2p-unblock-dnt-R1663} \ -} -# @@://ads.$popup,domain=sports.ru (advblock.txt: 7217) -/.*://ads\. -ads.*. - -#ab2p-unblock-dnt-R1664 -{+client-header-tagger{ab2p-unblock-dnt-R1664} \ -} -# @@||mgid.com/s/p/*.js?$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 60522) -.mgid.com/s/p/.*\.js\? -# @@||static.eplayer.performgroup.com^$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46039) -.static.eplayer.performgroup.com -# @@||smimg.net^$image,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46037) -.smimg.net -# @@||images.performgroup.com^$image,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46000) -.images.performgroup.com -# @@||d1naemzkka1n8z.cloudfront.net^$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 45970) -.d1naemzkka1n8z.cloudfront.net -# @@||addnow.com/widget/addnow.js$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 45941) -.addnow.com/widget/addnow\.js -# @@||mgid.com/s/p/*.js?$script,domain=sportsmole.co.uk (easylist.txt: 50037) -.mgid.com/s/p/.*\.js\? -# @@||static.eplayer.performgroup.com^$script,domain=sportsmole.co.uk (easylist.txt: 35554) -.static.eplayer.performgroup.com -# @@||smimg.net^$image,domain=sportsmole.co.uk (easylist.txt: 35552) -.smimg.net -# @@||images.performgroup.com^$image,domain=sportsmole.co.uk (easylist.txt: 35515) -.images.performgroup.com -# @@||d1naemzkka1n8z.cloudfront.net^$script,domain=sportsmole.co.uk (easylist.txt: 35485) -.d1naemzkka1n8z.cloudfront.net -# @@||addnow.com/widget/addnow.js$script,domain=sportsmole.co.uk (easylist.txt: 35456) -.addnow.com/widget/addnow\.js - -#ab2p-unblock-dnt-R1665 -{+client-header-tagger{ab2p-unblock-dnt-R1665} \ -} -# @@||video.unrulymedia.com^$script,subdocument,domain=springstreetads.com (easylistchina+easylist.txt: 60865) -.video.unrulymedia.com -# @@||video.unrulymedia.com^$script,subdocument,domain=springstreetads.com (easylist.txt: 50380) -.video.unrulymedia.com - -#ab2p-unblock-dnt-R1666 -{+client-header-tagger{ab2p-unblock-dnt-R1666} \ -} -# @@||googlesyndication.com/pagead/images/$domain=spruto.tv (advblock.txt: 7570) -.googlesyndication.com/pagead/images/ - -#ab2p-unblock-dnt-R1667 -{+client-header-tagger{ab2p-unblock-dnt-R1667} \ -} -# @@||staircase.pl/wp-content/*/adwords.jpg$domain=staircase.pl (easylistchina+easylist.txt: 61121) -.staircase.pl/wp-content/.*/adwords\.jpg -# @@||staircase.pl/wp-content/*/adwords.jpg$domain=staircase.pl (easylist.txt: 50636) -.staircase.pl/wp-content/.*/adwords\.jpg - -#ab2p-unblock-dnt-R1668 -{+client-header-tagger{ab2p-unblock-dnt-R1668} \ -} -# @@||zedo.com/swf/$domain=startv.in (easylistchina+easylist.txt: 59875) -.zedo.com/swf/ -# @@||zedo.com/swf/$domain=startv.in (easylist.txt: 49390) -.zedo.com/swf/ - -#ab2p-unblock-dnt-R1669 -{+client-header-tagger{ab2p-unblock-dnt-R1669} \ -} -# @@||adap.tv/redir/plugins/*/adotubeplugin.swf?$domain=stickam.com (easylistchina+easylist.txt: 58184) -.adap.tv/redir/plugins/.*/adotubeplugin\.swf\? -# @@||adap.tv/redir/plugins/*/adotubeplugin.swf?$domain=stickam.com (easylist.txt: 47699) -.adap.tv/redir/plugins/.*/adotubeplugin\.swf\? - -#ab2p-unblock-dnt-R451 -{+client-header-tagger{ab2p-unblock-dnt-R451} \ -} -# @@||stopgame.ru/www/images/$image,domain=stopgame.ru (advblock.txt: 7401) -.stopgame.ru/www/images/ -# @@||stopgame.ru/www/delivery/ck.php?$subdocument,domain=stopgame.ru (advblock.txt: 7400) -.stopgame.ru/www/delivery/ck\.php\? -# @@||stopgame.ru/www/delivery/afr.php?*&target=_top&$subdocument,domain=stopgame.ru (advblock.txt: 7399) -.stopgame.ru/www/delivery/afr\.php\?.*&target=_top& - -#ab2p-unblock-dnt-R1670 -{+client-header-tagger{ab2p-unblock-dnt-R1670} \ -} -# @@/fuckadblock.js$script,domain=stopgame.ru|xn--b1ajehof.xn--80asehdb|蟹胁芯薪泻懈.芯薪谢邪泄薪 (advblock.txt: 7536) -/(.*/)?fuckadblock\.js -fuckadblock.js*. - -#ab2p-unblock-dnt-R1671 -{+client-header-tagger{ab2p-unblock-dnt-R1671} \ -} -# @@||shopify.com^$image,third-party,domain=store.explosm.net (easylistchina+easylist.txt: 46036) -.shopify.com -# @@||shopify.com^$image,third-party,domain=store.explosm.net (easylist.txt: 35551) -.shopify.com - -#ab2p-unblock-dnt-R1672 -{+client-header-tagger{ab2p-unblock-dnt-R1672} \ -} -# @@/ads.js?callback$xmlhttprequest,domain=stream.1tv.ru (advblock.txt: 7187) -/(.*/)?ads\.js\?callback - -#ab2p-unblock-dnt-R1673 -{+client-header-tagger{ab2p-unblock-dnt-R1673} \ -} -# @@||track.adform.net/serving/scripts/trackpoint/$script,domain=strokekampanjen.se|tigerofsweden.com (easylistchina+easylist.txt: 59682) -.track.adform.net/serving/scripts/trackpoint/ -# @@||track.adform.net/serving/scripts/trackpoint/$script,domain=strokekampanjen.se|tigerofsweden.com (easylist.txt: 49197) -.track.adform.net/serving/scripts/trackpoint/ - -#ab2p-unblock-dnt-R1674 -{+client-header-tagger{ab2p-unblock-dnt-R1674} \ -} -# @@||pornomovies.com/js/1/ads-1.js$domain=submityourflicks.com (easylistchina+easylist.txt: 61771) -.pornomovies.com/js/1/ads-1\.js -# @@||pornomovies.com/js/1/ads-1.js$domain=submityourflicks.com (easylist.txt: 51286) -.pornomovies.com/js/1/ads-1\.js - -#ab2p-unblock-dnt-R1675 -{+client-header-tagger{ab2p-unblock-dnt-R1675} \ -} -# @@||ads.sudpresse.be^$popup,domain=sudinfo.be (easylistchina+easylist.txt: 61399) -.ads.sudpresse.be -# @@||ads.sudpresse.be^$popup,domain=sudinfo.be (easylist.txt: 50914) -.ads.sudpresse.be - -#ab2p-unblock-dnt-R1676 -{+client-header-tagger{ab2p-unblock-dnt-R1676} \ -} -# @@||sulekhalive.com/images/property/bannerads/$domain=sulekha.com (easylistchina+easylist.txt: 59602) -.sulekhalive.com/images/property/bannerads/ -# @@||sulekhalive.com/images/property/bannerads/$domain=sulekha.com (easylist.txt: 49117) -.sulekhalive.com/images/property/bannerads/ - -#ab2p-unblock-dnt-R1677 -{+client-header-tagger{ab2p-unblock-dnt-R1677} \ -} -# @@||sundaysportclassifieds.com/ads/$image,domain=sundaysportclassifieds.co.uk (easylistchina+easylist.txt: 61462) -.sundaysportclassifieds.com/ads/ -# @@||sundaysportclassifieds.com/ads/$image,domain=sundaysportclassifieds.co.uk (easylist.txt: 50977) -.sundaysportclassifieds.com/ads/ - -#ab2p-unblock-dnt-R1678 -{+client-header-tagger{ab2p-unblock-dnt-R1678} \ -} -# @@||cdn.supercheats.com^$script,domain=supercheats.com (easylistchina+easylist.txt: 45957) -.cdn.supercheats.com -# @@||cdn.supercheats.com^$script,domain=supercheats.com (easylist.txt: 35472) -.cdn.supercheats.com - -#ab2p-unblock-dnt-R1679 -{+client-header-tagger{ab2p-unblock-dnt-R1679} \ -} -# @@||superfilm.pl^$script,domain=superfilm.pl (easylistchina+easylist.txt: 60778) -.superfilm.pl -# @@||superfilm.pl^$script,domain=superfilm.pl (easylist.txt: 50293) -.superfilm.pl - -#ab2p-unblock-dnt-R1680 -{+client-header-tagger{ab2p-unblock-dnt-R1680} \ -} -# @@||ssacdn.com/banners/$domain=supersonicads.com (easylistchina+easylist.txt: 59581) -.ssacdn.com/banners/ -# @@||ssacdn.com/banners/$domain=supersonicads.com (easylist.txt: 49096) -.ssacdn.com/banners/ - -#ab2p-unblock-dnt-R1681 -{+client-header-tagger{ab2p-unblock-dnt-R1681} \ -} -# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina+easylist.txt: 10474) -.googletagmanager.com/gtm\.js\? -# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina+easylist.txt: 10473) -.google-analytics.com/plugins/ua/linkid\.js - -#ab2p-unblock-dnt-R1682 -{+client-header-tagger{ab2p-unblock-dnt-R1682} \ -} -# @@||adriver.ru/cgi-bin/click.cgi?$subdocument,domain=surfingbird.com|surfingbird.ru (advblock.txt: 7230) -.adriver.ru/cgi-bin/click\.cgi\? - -#ab2p-unblock-dnt-R1683 -{+client-header-tagger{ab2p-unblock-dnt-R1683} \ -} -# @@||cdn-surfline.com/ads/VolcomSurflinePlayerHo13.jpg$domain=surfline.com (easylistchina+easylist.txt: 60141) -.cdn-surfline.com/ads/VolcomSurflinePlayerHo13\.jpg -# @@||247realmedia.com/RealMedia/ads/Creatives/default/empty.gif$image,domain=surfline.com (easylistchina+easylist.txt: 59963) -.247realmedia.com/RealMedia/ads/Creatives/default/empty\.gif -# @@||cdn-surfline.com/ads/VolcomSurflinePlayerHo13.jpg$domain=surfline.com (easylist.txt: 49656) -.cdn-surfline.com/ads/VolcomSurflinePlayerHo13\.jpg -# @@||247realmedia.com/RealMedia/ads/Creatives/default/empty.gif$image,domain=surfline.com (easylist.txt: 49478) -.247realmedia.com/RealMedia/ads/Creatives/default/empty\.gif - -#ab2p-unblock-dnt-R1684 -{+client-header-tagger{ab2p-unblock-dnt-R1684} \ -} -# @@||swatch.com//images/*teaser$domain=swatch.com (advblock.txt: 7402) - -#ab2p-unblock-dnt-R1685 -{+client-header-tagger{ab2p-unblock-dnt-R1685} \ -} -# @@||keyrun.cn^$script,domain=sx566.com (easylistchina+easylist.txt: 10294) -.keyrun.cn - -#ab2p-unblock-dnt-R1686 -{+client-header-tagger{ab2p-unblock-dnt-R1686} \ -} -# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina+easylist.txt: 10385) -.szhr.com.cn - -#ab2p-unblock-dnt-R1687 -{+client-header-tagger{ab2p-unblock-dnt-R1687} \ -} -# @@||tableterra.ru/wp-content/uploads/*/*/*-*x*.$image,domain=tableterra.ru (advblock.txt: 7403) -.tableterra.ru/wp-content/uploads/.*/.*/.*-.*x.*\. - -#ab2p-unblock-dnt-R1688 -{+client-header-tagger{ab2p-unblock-dnt-R1688} \ -} -# @@||tagline.ru/img/favicons_top100_$image,domain=tagline.ru (advblock.txt: 7404) -.tagline.ru/img/favicons_top100_ - -#ab2p-unblock-dnt-R1689 -{+client-header-tagger{ab2p-unblock-dnt-R1689} \ -} -# @@||jtvnw.net/widgets/jtv_player.*&referer=http://talkrtv.com/ad/channel.php?$object,domain=talkrtv.com (easylistchina+easylist.txt: 59051) -.jtvnw.net/widgets/jtv_player\..*&referer=http://talkrtv\.com/ad/channel\.php\? -# @@||jtvnw.net/widgets/jtv_player.*&referer=http://talkrtv.com/ad/channel.php?$object,domain=talkrtv.com (easylist.txt: 48566) -.jtvnw.net/widgets/jtv_player\..*&referer=http://talkrtv\.com/ad/channel\.php\? - -#ab2p-unblock-dnt-R1690 -{+client-header-tagger{ab2p-unblock-dnt-R1690} \ -} -# @@||revealads.appspot.com/revealads2/radioplayer.js$domain=talksport.co.uk (easylistchina+easylist.txt: 59457) -.revealads.appspot.com/revealads2/radioplayer\.js -# @@||revealads.appspot.com/revealads2/radioplayer.js$domain=talksport.co.uk (easylist.txt: 48972) -.revealads.appspot.com/revealads2/radioplayer\.js - -#ab2p-unblock-dnt-R1691 -{+client-header-tagger{ab2p-unblock-dnt-R1691} \ -} -# @@||aka-cdn-ns.adtech.de^*.flv$domain=talksport.co.uk|tv3.ie (easylistchina+easylist.txt: 60969) -.aka-cdn-ns.adtech.de/.*\.flv -# @@||aka-cdn-ns.adtech.de^*.flv$domain=talksport.co.uk|tv3.ie (easylist.txt: 50484) -.aka-cdn-ns.adtech.de/.*\.flv - -#ab2p-unblock-dnt-R1692 -{+client-header-tagger{ab2p-unblock-dnt-R1692} \ -} -# @@||alimama.com^$domain=tanx.com (easylistchina+easylist.txt: 10167) -.alimama.com -# @@/adx.$domain=tanx.com (easylistchina+easylist.txt: 10026) -/(.*/)?adx\. -adx.*. - -#ab2p-unblock-dnt-R1693 -{+client-header-tagger{ab2p-unblock-dnt-R1693} \ -} -# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina+easylist.txt: 10479) -.opehs.tanx.com/ex\? -# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina+easylist.txt: 10470) -.ecpm.tanx.com/ex\? - -#ab2p-unblock-dnt-R1694 -{+client-header-tagger{ab2p-unblock-dnt-R1694} \ -} -# @@/index.php/adhandler/|$subdocument,domain=tapochek.net (advblock.txt: 7539) -/(.*/)?index\.php/adhandler/$ -/index.php/adhandler -index.php/adhandler/$ - -#ab2p-unblock-dnt-R1695 -{+client-header-tagger{ab2p-unblock-dnt-R1695} \ -} -# @@||target.122.2o7.net/b/ss/*_300x250_$image,domain=target.com (easylistchina+easylist.txt: 61371) -.target.122.2o7.net/b/ss/.*_300x250_ -# @@||target.122.2o7.net/b/ss/*_300x250_$image,domain=target.com (easylist.txt: 50886) -.target.122.2o7.net/b/ss/.*_300x250_ - -#ab2p-unblock-dnt-R1696 -{+client-header-tagger{ab2p-unblock-dnt-R1696} \ -} -# @@||tatler.ru/resize_*_320x250_$domain=tatler.ru (advblock.txt: 7405) -.tatler.ru/resize_.*_320x250_ - -#ab2p-unblock-dnt-R458 -{+client-header-tagger{ab2p-unblock-dnt-R458} \ -} -# @@||ads.tbs.com/html.ng/site=*600x400_$domain=tbs.com (easylistchina+easylist.txt: 58267) -.ads.tbs.com/html\.ng/site=.*600x400_ -# @@||ads.tbs.com/html.ng/site=*600x400_$domain=tbs.com (easylist.txt: 47782) -.ads.tbs.com/html\.ng/site=.*600x400_ - -#ab2p-unblock-dnt-R1697 -{+client-header-tagger{ab2p-unblock-dnt-R1697} \ -} -# @@||dailymotion.com/embed/video/$subdocument,domain=team-vitality.fr (easylistchina+easylist.txt: 60196) -.dailymotion.com/embed/video/ -# @@||dailymotion.com/embed/video/$subdocument,domain=team-vitality.fr (easylist.txt: 49711) -.dailymotion.com/embed/video/ - -#ab2p-unblock-dnt-R1698 -{+client-header-tagger{ab2p-unblock-dnt-R1698} \ -} -# @@||teamcococdn.com^*/AdManager_*.swf?$object-subrequest,domain=teamcoco.com (easylistchina+easylist.txt: 59625) -.teamcococdn.com/.*/AdManager_.*\.swf\? -# @@||teamcococdn.com^*/AdManager_*.swf?$object-subrequest,domain=teamcoco.com (easylist.txt: 49140) -.teamcococdn.com/.*/AdManager_.*\.swf\? - -#ab2p-unblock-dnt-R1699 -{+client-header-tagger{ab2p-unblock-dnt-R1699} \ -} -# @@||ign.com/js.ng/size=headermainad&site=teamxbox$script,domain=teamxbox.com (easylistchina+easylist.txt: 58972) -.ign.com/js\.ng/size=headermainad&site=teamxbox -# @@||ign.com/js.ng/size=headermainad&site=teamxbox$script,domain=teamxbox.com (easylist.txt: 48487) -.ign.com/js\.ng/size=headermainad&site=teamxbox - -#ab2p-unblock-dnt-R1700 -{+client-header-tagger{ab2p-unblock-dnt-R1700} \ -} -# @@||ads.tw.adsonar.com/adserving/getAdsAPI.jsp?callback=aslHandleAds*&c=aslHandleAds*&key=$script,domain=techcrunch.com (easylistchina+easylist.txt: 59881) -.ads.tw.adsonar.com/adserving/getAdsAPI\.jsp\?callback=aslHandleAds.*&c=aslHandleAds.*&key= -# @@||tctechcrunch2011.files.wordpress.com^$image,domain=techcrunch.com (easylistchina+easylist.txt: 59624) -.tctechcrunch2011.files.wordpress.com -# @@||ads.tw.adsonar.com/adserving/getAdsAPI.jsp?callback=aslHandleAds*&c=aslHandleAds*&key=$script,domain=techcrunch.com (easylist.txt: 49396) -.ads.tw.adsonar.com/adserving/getAdsAPI\.jsp\?callback=aslHandleAds.*&c=aslHandleAds.*&key= -# @@||tctechcrunch2011.files.wordpress.com^$image,domain=techcrunch.com (easylist.txt: 49139) -.tctechcrunch2011.files.wordpress.com - -#ab2p-unblock-dnt-R1701 -{+client-header-tagger{ab2p-unblock-dnt-R1701} \ -} -# @@||adserver.adtechus.com/addyn/$script,domain=teletoon.com (easylistchina+easylist.txt: 58291) -.adserver.adtechus.com/addyn/ -# @@||adserver.adtechus.com/addyn/$script,domain=teletoon.com (easylist.txt: 47806) -.adserver.adtechus.com/addyn/ - -#ab2p-unblock-dnt-R1702 -{+client-header-tagger{ab2p-unblock-dnt-R1702} \ -} -# @@||adtechus.com/apps/$image,domain=teletoon.com|walmart.ca (easylistchina+easylist.txt: 58320) -.adtechus.com/apps/ -# @@||adtechus.com/apps/$image,domain=teletoon.com|walmart.ca (easylist.txt: 47835) -.adtechus.com/apps/ - -#ab2p-unblock-dnt-R1703 -{+client-header-tagger{ab2p-unblock-dnt-R1703} \ -} -# @@||trrsf.com.br^*/admanager.js$domain=terra.com.br (easylistchina+easylist.txt: 61134) -.trrsf.com.br/.*/admanager\.js -# @@||trrsf.com.br^*/admanager.js$domain=terra.com.br (easylist.txt: 50649) -.trrsf.com.br/.*/admanager\.js - -#ab2p-unblock-dnt-R1704 -{+client-header-tagger{ab2p-unblock-dnt-R1704} \ -} -# @@||fwmrm.net/ad/g/1?prof=$script,domain=testtube.com (easylistchina+easylist.txt: 60318) -.fwmrm.net/ad/g/1\?prof= -# @@||fwmrm.net/ad/g/1?prof=$script,domain=testtube.com (easylist.txt: 49833) -.fwmrm.net/ad/g/1\?prof= - -#ab2p-unblock-dnt-R1705 -{+client-header-tagger{ab2p-unblock-dnt-R1705} \ -} -# @@||lamcdn.net/www.the-village.ru/gui/advert-$script,domain=the-village.ru (advblock.txt: 7578) -.lamcdn.net/www\.the-village\.ru/gui/advert- - -#ab2p-unblock-dnt-R1706 -{+client-header-tagger{ab2p-unblock-dnt-R1706} \ -} -# @@||fmpub.net/site/$domain=theawl.com (easylistchina+easylist.txt: 58831) -.fmpub.net/site/ -# @@||fmpub.net/site/$domain=theawl.com (easylist.txt: 48346) -.fmpub.net/site/ - -#ab2p-unblock-dnt-R464 -{+client-header-tagger{ab2p-unblock-dnt-R464} \ -} -# @@||kaltura.com^$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 46006) -.kaltura.com -# @@||api.iris.tv/watch?$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45948) -.api.iris.tv/watch\? -# @@||amazonaws.com/iris-player/iris.js$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45945) -.amazonaws.com/iris-player/iris\.js -# @@||amazonaws.com/cdn.jukeboxu.com/kaltura/kaltura_related.js$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45944) -.amazonaws.com/cdn\.jukeboxu\.com/kaltura/kaltura_related\.js -# @@||kaltura.com^$script,third-party,domain=thechive.com (easylist.txt: 35521) -.kaltura.com -# @@||api.iris.tv/watch?$script,third-party,domain=thechive.com (easylist.txt: 35463) -.api.iris.tv/watch\? -# @@||amazonaws.com/iris-player/iris.js$script,third-party,domain=thechive.com (easylist.txt: 35460) -.amazonaws.com/iris-player/iris\.js -# @@||amazonaws.com/cdn.jukeboxu.com/kaltura/kaltura_related.js$script,third-party,domain=thechive.com (easylist.txt: 35459) -.amazonaws.com/cdn\.jukeboxu\.com/kaltura/kaltura_related\.js - -#ab2p-unblock-dnt-R1707 -{+client-header-tagger{ab2p-unblock-dnt-R1707} \ -} -# @@||thedoujin.com/includes/ads/$subdocument,domain=thedoujin.com (easylistchina+easylist.txt: 59635) -.thedoujin.com/includes/ads/ -# @@||thedoujin.com/includes/ads/$subdocument,domain=thedoujin.com (easylist.txt: 49150) -.thedoujin.com/includes/ads/ - -#ab2p-unblock-dnt-R1708 -{+client-header-tagger{ab2p-unblock-dnt-R1708} \ -} -# @@||video.unrulymedia.com/wildfire_$script,domain=theemptynestexpress.com (easylistchina+easylist.txt: 59760) -.video.unrulymedia.com/wildfire_ -# @@||video.unrulymedia.com/iframe_$subdocument,domain=theemptynestexpress.com (easylistchina+easylist.txt: 59759) -.video.unrulymedia.com/iframe_ -# @@||video.unrulymedia.com/wildfire_$script,domain=theemptynestexpress.com (easylist.txt: 49275) -.video.unrulymedia.com/wildfire_ -# @@||video.unrulymedia.com/iframe_$subdocument,domain=theemptynestexpress.com (easylist.txt: 49274) -.video.unrulymedia.com/iframe_ - -#ab2p-unblock-dnt-R1709 -{+client-header-tagger{ab2p-unblock-dnt-R1709} \ -} -# @@||files.bannersnack.com/iframe/embed.html?$subdocument,domain=thegayuk.com (easylistchina+easylist.txt: 60284) -.files.bannersnack.com/iframe/embed\.html\? -# @@||files.bannersnack.com/iframe/embed.html?$subdocument,domain=thegayuk.com (easylist.txt: 49799) -.files.bannersnack.com/iframe/embed\.html\? - -#ab2p-unblock-dnt-R1710 -{+client-header-tagger{ab2p-unblock-dnt-R1710} \ -} -# @@||tnwcdn.com/wp-content/*/files/*/advertising.$image,domain=thenextweb.com (easylistchina+easylist.txt: 59673) -.tnwcdn.com/wp-content/.*/files/.*/advertising\. -# @@||tnwcdn.com/wp-content/*/files/*/advertising-$image,domain=thenextweb.com (easylistchina+easylist.txt: 59672) -.tnwcdn.com/wp-content/.*/files/.*/advertising- -# @@||tnwcdn.com/wp-content/*/files/*/advertising.$image,domain=thenextweb.com (easylist.txt: 49188) -.tnwcdn.com/wp-content/.*/files/.*/advertising\. -# @@||tnwcdn.com/wp-content/*/files/*/advertising-$image,domain=thenextweb.com (easylist.txt: 49187) -.tnwcdn.com/wp-content/.*/files/.*/advertising- - -#ab2p-unblock-dnt-R1711 -{+client-header-tagger{ab2p-unblock-dnt-R1711} \ -} -# @@||thesimsresource.com^$script,domain=thesimsresource.com (easylistchina+easylist.txt: 60799) -.thesimsresource.com -# @@||cloudfront.net/ads.js$domain=thesimsresource.com (easylistchina+easylist.txt: 60166) -.cloudfront.net/ads\.js -# @@||amazonaws.com^$script,domain=thesimsresource.com (easylistchina+easylist.txt: 60056) -.amazonaws.com -# @@||thesimsresource.com^$script,domain=thesimsresource.com (easylist.txt: 50314) -.thesimsresource.com -# @@||cloudfront.net/ads.js$domain=thesimsresource.com (easylist.txt: 49681) -.cloudfront.net/ads\.js -# @@||amazonaws.com^$script,domain=thesimsresource.com (easylist.txt: 49571) -.amazonaws.com - -#ab2p-unblock-dnt-R1712 -{+client-header-tagger{ab2p-unblock-dnt-R1712} \ -} -# @@||thestreet-static.com/video/js/companionAdFunc.js$domain=thestreet.com (easylistchina+easylist.txt: 59649) -.thestreet-static.com/video/js/companionAdFunc\.js -# @@||ads.pointroll.com/PortalServe/?pid=$xmlhttprequest,domain=thestreet.com (easylistchina+easylist.txt: 58258) -.ads.pointroll.com/PortalServe/\?pid= -# @@||thestreet-static.com/video/js/companionAdFunc.js$domain=thestreet.com (easylist.txt: 49164) -.thestreet-static.com/video/js/companionAdFunc\.js -# @@||ads.pointroll.com/PortalServe/?pid=$xmlhttprequest,domain=thestreet.com (easylist.txt: 47773) -.ads.pointroll.com/PortalServe/\?pid= - -#ab2p-unblock-dnt-R467 -{+client-header-tagger{ab2p-unblock-dnt-R467} \ -} -# @@||thisav.com/uploaded_banners/jw.swf$domain=thisav.com (easylistchina+easylist.txt: 61463) -.thisav.com/uploaded_banners/jw\.swf -# @@||thisav.com/uploaded_banners/jw.swf$domain=thisav.com (easylist.txt: 50978) -.thisav.com/uploaded_banners/jw\.swf - -#ab2p-unblock-dnt-R1713 -{+client-header-tagger{ab2p-unblock-dnt-R1713} \ -} -# @@||doubleclick.net/adj/cm.tim/*;cmpos=$script,domain=time.com (easylistchina+easylist.txt: 58708) -.doubleclick.net/adj/cm\.tim/.*;cmpos= -# @@||doubleclick.net/adj/cm.tim/*;cmpos=$script,domain=time.com (easylist.txt: 48223) -.doubleclick.net/adj/cm\.tim/.*;cmpos= - -#ab2p-unblock-dnt-R1714 -{+client-header-tagger{ab2p-unblock-dnt-R1714} \ -} -# @@||tjournal.ru/*/adfox.$script,domain=tjournal.ru (advblock.txt: 7409) -.tjournal.ru/.*/adfox\. -# @@||an.yandex.ru/meta/$script,domain=tjournal.ru (advblock.txt: 7263) -.an.yandex.ru/meta/ - -#ab2p-unblock-dnt-R1715 -{+client-header-tagger{ab2p-unblock-dnt-R1715} \ -} -# @@||an.yandex.ru/system/context.js$domain=tjournal.ru|tvigle.ru (advblock.txt: 7265) -.an.yandex.ru/system/context\.js -# @@||an.yandex.ru/resource/context_static_$script,domain=tjournal.ru|tvigle.ru (advblock.txt: 7264) -.an.yandex.ru/resource/context_static_ - -#ab2p-unblock-dnt-R1716 -{+client-header-tagger{ab2p-unblock-dnt-R1716} \ -} -# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina+easylist.txt: 10046) -/(.*/)?img_ad/.* - -#ab2p-unblock-dnt-R473 -{+client-header-tagger{ab2p-unblock-dnt-R473} \ -} -# @@||kaltura.com^*/doubleClickPlugin.swf$object-subrequest,domain=tmz.com (easylistchina+easylist.txt: 59053) -.kaltura.com/.*/doubleClickPlugin\.swf -# @@||kaltura.com^*/doubleClickPlugin.swf$object-subrequest,domain=tmz.com (easylist.txt: 48568) -.kaltura.com/.*/doubleClickPlugin\.swf - -#ab2p-unblock-dnt-R1717 -{+client-header-tagger{ab2p-unblock-dnt-R1717} \ -} -# @@||tnt-online.ru/*/adfox/$image,object,script,domain=tnt-online.ru (advblock.txt: 7410) -.tnt-online.ru/.*/adfox/ - -#ab2p-unblock-dnt-R1718 -{+client-header-tagger{ab2p-unblock-dnt-R1718} \ -} -# @@||turner.com^*/videoadrenderer.swf$domain=tntdrama.com (easylistchina+easylist.txt: 59712) -.turner.com/.*/videoadrenderer\.swf -# @@||turner.com^*/videoadrenderer.swf$domain=tntdrama.com (easylist.txt: 49227) -.turner.com/.*/videoadrenderer\.swf - -#ab2p-unblock-dnt-R1719 -{+client-header-tagger{ab2p-unblock-dnt-R1719} \ -} -# @@||servebom.com/tmnhead.js$domain=tomsguide.com|tomshardware.com|wonderhowto.com (easylistchina+easylist.txt: 59516) -.servebom.com/tmnhead\.js -# @@||servebom.com/tmnhead.js$domain=tomsguide.com|tomshardware.com|wonderhowto.com (easylist.txt: 49031) -.servebom.com/tmnhead\.js - -#ab2p-unblock-dnt-R1720 -{+client-header-tagger{ab2p-unblock-dnt-R1720} \ -} -# @@||tradedoubler.com/anet?type(iframe)loc($subdocument,domain=topzone.lt (easylistchina+easylist.txt: 60813) -.tradedoubler.com/anet\?type\(iframe\)loc\( -# @@||tradedoubler.com/anet?type(iframe)loc($subdocument,domain=topzone.lt (easylist.txt: 50328) -.tradedoubler.com/anet\?type\(iframe\)loc\( - -#ab2p-unblock-dnt-R1721 -{+client-header-tagger{ab2p-unblock-dnt-R1721} \ -} -# @@||marketgid.com^$domain=tovarro.com (advblock.txt: 7332) -.marketgid.com - -#ab2p-unblock-dnt-R1722 -{+client-header-tagger{ab2p-unblock-dnt-R1722} \ -} -# @@||alipromo.com/rotator/auto/$script,domain=trackitonline.ru (advblock.txt: 7557) -.alipromo.com/rotator/auto/ - -#ab2p-unblock-dnt-R1723 -{+client-header-tagger{ab2p-unblock-dnt-R1723} \ -} -# @@||adriver.ru/cgi-bin/rle.cgi?$domain=transaero.ru (advblock.txt: 7234) -.adriver.ru/cgi-bin/rle\.cgi\? - -#ab2p-unblock-dnt-R1724 -{+client-header-tagger{ab2p-unblock-dnt-R1724} \ -} -# @@||travelocity.com/js.ng/$script,domain=travelocity.com (easylistchina+easylist.txt: 59694) -.travelocity.com/js\.ng/ -# @@||travelocity.com/html.ng/*558x262$domain=travelocity.com (easylistchina+easylist.txt: 59693) -.travelocity.com/html\.ng/.*558x262 -# @@||travelocity.com/event.ng/*click$domain=travelocity.com (easylistchina+easylist.txt: 59692) -.travelocity.com/event\.ng/.*click -# @@||travelocity.com/js.ng/$script,domain=travelocity.com (easylist.txt: 49209) -.travelocity.com/js\.ng/ -# @@||travelocity.com/html.ng/*558x262$domain=travelocity.com (easylist.txt: 49208) -.travelocity.com/html\.ng/.*558x262 -# @@||travelocity.com/event.ng/*click$domain=travelocity.com (easylist.txt: 49207) -.travelocity.com/event\.ng/.*click - -#ab2p-unblock-dnt-R1725 -{+client-header-tagger{ab2p-unblock-dnt-R1725} \ -} -# @@||intentmedia.net/javascripts/$script,domain=travelzoo.com (easylistchina+easylist.txt: 59027) -.intentmedia.net/javascripts/ -# @@||intentmedia.net/adServer/$script,xmlhttprequest,domain=travelzoo.com (easylistchina+easylist.txt: 59026) -.intentmedia.net/adServer/ -# @@||cdn.intentmedia.net^$image,script,domain=travelzoo.com (easylistchina+easylist.txt: 58567) -.cdn.intentmedia.net -# @@||intentmedia.net/javascripts/$script,domain=travelzoo.com (easylist.txt: 48542) -.intentmedia.net/javascripts/ -# @@||intentmedia.net/adServer/$script,xmlhttprequest,domain=travelzoo.com (easylist.txt: 48541) -.intentmedia.net/adServer/ -# @@||cdn.intentmedia.net^$image,script,domain=travelzoo.com (easylist.txt: 48082) -.cdn.intentmedia.net - -#ab2p-unblock-dnt-R1726 -{+client-header-tagger{ab2p-unblock-dnt-R1726} \ -} -# @@||tree.tv/images/ads.jpg|$image,domain=tree.tv (advblock.txt: 7603) -.tree.tv/images/ads\.jpg$ -# @@||mxpopad.com^$script,domain=tree.tv (advblock.txt: 7587) -.mxpopad.com -# @@||mtrcss.com^$script,xmlhttprequest,domain=tree.tv (advblock.txt: 7586) -.mtrcss.com -# @@||admixer.net/scriptlib/$script,domain=tree.tv (advblock.txt: 7553) -.admixer.net/scriptlib/ -# @@||admixer.net/getresponse.js?$script,domain=tree.tv (advblock.txt: 7552) -.admixer.net/getresponse\.js\? - -#ab2p-unblock-dnt-R1727 -{+client-header-tagger{ab2p-unblock-dnt-R1727} \ -} -# @@||tripit.com/js/components/popover.js?$domain=tripit.com (advblock.txt: 7413) -.tripit.com/js/components/popover\.js\? - -#ab2p-unblock-dnt-R1728 -{+client-header-tagger{ab2p-unblock-dnt-R1728} \ -} -# @@||player.cdn.targetspot.com/ts_embed_functions_as3.php$domain=tritonmedia.com (easylistchina+easylist.txt: 59386) -.player.cdn.targetspot.com/ts_embed_functions_as3\.php -# @@||player.cdn.targetspot.com/ts_embed_functions_as3.php$domain=tritonmedia.com (easylist.txt: 48901) -.player.cdn.targetspot.com/ts_embed_functions_as3\.php - -#ab2p-unblock-dnt-R1729 -{+client-header-tagger{ab2p-unblock-dnt-R1729} \ -} -# @@||ipcdigital.co.uk^*/adtech.js$domain=trustedreviews.com (easylistchina+easylist.txt: 59034) -.ipcdigital.co.uk/.*/adtech\.js -# @@||ipcdigital.co.uk^*/adloader.js?$domain=trustedreviews.com (easylistchina+easylist.txt: 59033) -.ipcdigital.co.uk/.*/adloader\.js\? -# @@||ipcdigital.co.uk^*/adtech.js$domain=trustedreviews.com (easylist.txt: 48549) -.ipcdigital.co.uk/.*/adtech\.js -# @@||ipcdigital.co.uk^*/adloader.js?$domain=trustedreviews.com (easylist.txt: 48548) -.ipcdigital.co.uk/.*/adloader\.js\? - -#ab2p-unblock-dnt-R1730 -{+client-header-tagger{ab2p-unblock-dnt-R1730} \ -} -# @@||tube8live.com/?AFNO=$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61805) -.tube8live.com/\?AFNO= -# @@||t8premium.com/track/*/join?$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61804) -.t8premium.com/track/.*/join\? -# @@||t8premium.com/signup/signup.php?$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61803) -.t8premium.com/signup/signup\.php\? -# @@||contentabc.com/ads?spot_id=$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61791) -.contentabc.com/ads\?spot_id= -# @@||tube8live.com/?AFNO=$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51320) -.tube8live.com/\?AFNO= -# @@||t8premium.com/track/*/join?$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51319) -.t8premium.com/track/.*/join\? -# @@||t8premium.com/signup/signup.php?$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51318) -.t8premium.com/signup/signup\.php\? -# @@||contentabc.com/ads?spot_id=$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51306) -.contentabc.com/ads\?spot_id= - -#ab2p-unblock-dnt-R1731 -{+client-header-tagger{ab2p-unblock-dnt-R1731} \ -} -# @@||tmoncdn.com/scripts/advertisement.js$domain=tubemonsoon.com (easylistchina+easylist.txt: 61778) -.tmoncdn.com/scripts/advertisement\.js -# @@||tmoncdn.com/scripts/advertisement.js$domain=tubemonsoon.com (easylist.txt: 51293) -.tmoncdn.com/scripts/advertisement\.js - -#ab2p-unblock-dnt-R1732 -{+client-header-tagger{ab2p-unblock-dnt-R1732} \ -} -# @@||turbogenerator.info^$script,domain=turbogenerator.info (easylistchina+easylist.txt: 60817) -.turbogenerator.info -# @@||turbogenerator.info^$script,domain=turbogenerator.info (easylist.txt: 50332) -.turbogenerator.info - -#ab2p-unblock-dnt-R1733 -{+client-header-tagger{ab2p-unblock-dnt-R1733} \ -} -# @@||turbovideos.net^$script,domain=turbovideos.net (easylistchina+easylist.txt: 60818) -.turbovideos.net -# @@||turbovideos.net^$script,domain=turbovideos.net (easylist.txt: 50333) -.turbovideos.net - -#ab2p-unblock-dnt-R1734 -{+client-header-tagger{ab2p-unblock-dnt-R1734} \ -} -# @@||turkanime.tv/ads.html$subdocument,domain=turkanime.tv (easylistchina+easylist.txt: 60819) -.turkanime.tv/ads\.html -# @@||ads.ad4game.com/www/delivery/lg.php$subdocument,domain=turkanime.tv (easylistchina+easylist.txt: 60008) -.ads.ad4game.com/www/delivery/lg\.php -# @@||turkanime.tv/ads.html$subdocument,domain=turkanime.tv (easylist.txt: 50334) -.turkanime.tv/ads\.html -# @@||ads.ad4game.com/www/delivery/lg.php$subdocument,domain=turkanime.tv (easylist.txt: 49523) -.ads.ad4game.com/www/delivery/lg\.php - -#ab2p-unblock-dnt-R1735 -{+client-header-tagger{ab2p-unblock-dnt-R1735} \ -} -# @@||googlecode.com/files/google_ads.js$domain=turkdown.com (easylistchina+easylist.txt: 60363) -.googlecode.com/files/google_ads\.js -# @@||googlecode.com/files/google_ads.js$domain=turkdown.com (easylist.txt: 49878) -.googlecode.com/files/google_ads\.js - -#ab2p-unblock-dnt-R1736 -{+client-header-tagger{ab2p-unblock-dnt-R1736} \ -} -# @@||tut.by/*/ads1/*/params.php?uid=$object-subrequest,domain=tut.by (advblock.txt: 7414) -.tut.by/.*/ads1/.*/params\.php\?uid= - -#ab2p-unblock-dnt-R1737 -{+client-header-tagger{ab2p-unblock-dnt-R1737} \ -} -# @@||am15.net/bn$script,domain=tv-serial.org (advblock.txt: 7559) -.am15.net/bn -# @@||am10.ru/code.$domain=tv-serial.org (advblock.txt: 7558) -.am10.ru/code\. - -#ab2p-unblock-dnt-R1738 -{+client-header-tagger{ab2p-unblock-dnt-R1738} \ -} -# @@||mads.tv.com/mac-ad?META^$script,domain=tv.com (easylistchina+easylist.txt: 59124) -.mads.tv.com/mac-ad\?META[^\w%.-] -# @@||doubleclick.net/ad/can/tvcom/$object-subrequest,domain=tv.com (easylistchina+easylist.txt: 58693) -.doubleclick.net/ad/can/tvcom/ -# @@||mads.tv.com/mac-ad?META^$script,domain=tv.com (easylist.txt: 48639) -.mads.tv.com/mac-ad\?META[^\w%.-] -# @@||doubleclick.net/ad/can/tvcom/$object-subrequest,domain=tv.com (easylist.txt: 48208) -.doubleclick.net/ad/can/tvcom/ - -#ab2p-unblock-dnt-R1739 -{+client-header-tagger{ab2p-unblock-dnt-R1739} \ -} -# @@||v.fwmrm.net/|$object-subrequest,domain=tv10play.se|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 59742) -.v.fwmrm.net/$ -# @@||v.fwmrm.net/|$object-subrequest,domain=tv10play.se|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 49257) -.v.fwmrm.net/$ - -#ab2p-unblock-dnt-R1740 -{+client-header-tagger{ab2p-unblock-dnt-R1740} \ -} -# @@||feed.theplatform.com^*=adtech_$object-subrequest,domain=tv2.dk (easylistchina+easylist.txt: 61021) -.feed.theplatform.com/.*=adtech_ -# @@||adtech.de/?adrawdata/3.0/*;|$object-subrequest,domain=tv2.dk (easylistchina+easylist.txt: 60956) -.adtech.de/\?adrawdata/3\.0/.*;$ -# @@||feed.theplatform.com^*=adtech_$object-subrequest,domain=tv2.dk (easylist.txt: 50536) -.feed.theplatform.com/.*=adtech_ -# @@||adtech.de/?adrawdata/3.0/*;|$object-subrequest,domain=tv2.dk (easylist.txt: 50471) -.adtech.de/\?adrawdata/3\.0/.*;$ - -#ab2p-unblock-dnt-R1741 -{+client-header-tagger{ab2p-unblock-dnt-R1741} \ -} -# @@||emediate.se/eas_tag.1.0.js$domain=tv2.dk|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61016) -.emediate.se/eas_tag\.1\.0\.js -# @@||emediate.se/eas_tag.1.0.js$domain=tv2.dk|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50531) -.emediate.se/eas_tag\.1\.0\.js - -#ab2p-unblock-dnt-R1742 -{+client-header-tagger{ab2p-unblock-dnt-R1742} \ -} -# @@||adtech.panthercustomer.com^*.flv$domain=tv3.ie (easylistchina+easylist.txt: 60957) -.adtech.panthercustomer.com/.*\.flv -# @@||adtech.panthercustomer.com^*.flv$domain=tv3.ie (easylist.txt: 50472) -.adtech.panthercustomer.com/.*\.flv - -#ab2p-unblock-dnt-R1743 -{+client-header-tagger{ab2p-unblock-dnt-R1743} \ -} -# @@||adm.fwmrm.net/p/*/Video2AdRenderer.swf$object-subrequest,domain=tv3play.se|uktv.co.uk (easylistchina+easylist.txt: 59995) -.adm.fwmrm.net/p/.*/Video2AdRenderer\.swf -# @@||adm.fwmrm.net/p/*/Video2AdRenderer.swf$object-subrequest,domain=tv3play.se|uktv.co.uk (easylist.txt: 49510) -.adm.fwmrm.net/p/.*/Video2AdRenderer\.swf - -#ab2p-unblock-dnt-R483 -{+client-header-tagger{ab2p-unblock-dnt-R483} \ -} -# @@||videoplaza.tv/contrib/*/advertisement.js$domain=tv4play.se (easylistchina+easylist.txt: 60872) -.videoplaza.tv/contrib/.*/advertisement\.js -# @@||videoplaza.tv/contrib/*/advertisement.js$domain=tv4play.se (easylist.txt: 50387) -.videoplaza.tv/contrib/.*/advertisement\.js - -#ab2p-unblock-dnt-R1744 -{+client-header-tagger{ab2p-unblock-dnt-R1744} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina+easylist.txt: 10325) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||ads.$domain=tvb.com (easylistchina+easylist.txt: 10158) -.ads.*. - -#ab2p-unblock-dnt-R484 -{+client-header-tagger{ab2p-unblock-dnt-R484} \ -} -# @@||inskinad.com/isapadserver/ads.aspx?$script,domain=tvcatchup.com (easylistchina+easylist.txt: 59019) -.inskinad.com/isapadserver/ads\.aspx\? -# @@||inskin.vo.llnwd.net^*/preroll_$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 59018) -.inskin.vo.llnwd.net/.*/preroll_ -# @@||inskin.vo.llnwd.net^*/api/tvcatchup.js$domain=tvcatchup.com (easylistchina+easylist.txt: 59017) -.inskin.vo.llnwd.net/.*/api/tvcatchup\.js -# @@||inskin.vo.llnwd.net^*/api/tvcatchup-light.js$domain=tvcatchup.com (easylistchina+easylist.txt: 59016) -.inskin.vo.llnwd.net/.*/api/tvcatchup-light\.js -# @@||demo.inskinmedia.com^$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 58666) -.demo.inskinmedia.com -# @@||cdn.inskinmedia.com/isfe/4.1/swf/unitcontainer2.swf$domain=tvcatchup.com (easylistchina+easylist.txt: 58564) -.cdn.inskinmedia.com/isfe/4\.1/swf/unitcontainer2\.swf -# @@||cdn.inskinmedia.com/*inskinfiles/flvs/$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 58563) -.cdn.inskinmedia.com/.*inskinfiles/flvs/ -# @@||inskinad.com/isapadserver/ads.aspx?$script,domain=tvcatchup.com (easylist.txt: 48534) -.inskinad.com/isapadserver/ads\.aspx\? -# @@||inskin.vo.llnwd.net^*/preroll_$object-subrequest,domain=tvcatchup.com (easylist.txt: 48533) -.inskin.vo.llnwd.net/.*/preroll_ -# @@||inskin.vo.llnwd.net^*/api/tvcatchup.js$domain=tvcatchup.com (easylist.txt: 48532) -.inskin.vo.llnwd.net/.*/api/tvcatchup\.js -# @@||inskin.vo.llnwd.net^*/api/tvcatchup-light.js$domain=tvcatchup.com (easylist.txt: 48531) -.inskin.vo.llnwd.net/.*/api/tvcatchup-light\.js -# @@||demo.inskinmedia.com^$object-subrequest,domain=tvcatchup.com (easylist.txt: 48181) -.demo.inskinmedia.com -# @@||cdn.inskinmedia.com/isfe/4.1/swf/unitcontainer2.swf$domain=tvcatchup.com (easylist.txt: 48079) -.cdn.inskinmedia.com/isfe/4\.1/swf/unitcontainer2\.swf -# @@||cdn.inskinmedia.com/*inskinfiles/flvs/$object-subrequest,domain=tvcatchup.com (easylist.txt: 48078) -.cdn.inskinmedia.com/.*inskinfiles/flvs/ - -#ab2p-unblock-dnt-R1745 -{+client-header-tagger{ab2p-unblock-dnt-R1745} \ -} -# @@||content.reklamz.com/internethaber/SPOR_*.mp4$object-subrequest,domain=tvhaber.com (easylistchina+easylist.txt: 61000) -.content.reklamz.com/internethaber/SPOR_.*\.mp4 -# @@||content.reklamz.com/internethaber/SPOR_*.mp4$object-subrequest,domain=tvhaber.com (easylist.txt: 50515) -.content.reklamz.com/internethaber/SPOR_.*\.mp4 - -#ab2p-unblock-dnt-R1746 -{+client-header-tagger{ab2p-unblock-dnt-R1746} \ -} -# @@||adriver.ru/plugins/$script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7236) -.adriver.ru/plugins/ -# @@||adriver.ru/images/$image,script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7235) -.adriver.ru/images/ -# @@||adriver.ru/cgi-bin/merle.cgi?$script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7233) -.adriver.ru/cgi-bin/merle\.cgi\? - -#ab2p-unblock-dnt-R1747 -{+client-header-tagger{ab2p-unblock-dnt-R1747} \ -} -# @@||tvn.adocean.pl/files/js/ado.js$domain=tvn.pl|tvn24.pl (easylistchina+easylist.txt: 60830) -.tvn.adocean.pl/files/js/ado\.js -# @@||admin.brightcove.com^$object-subrequest,domain=tvn.pl|tvn24.pl (easylistchina+easylist.txt: 60000) -.admin.brightcove.com -# @@||tvn.adocean.pl/files/js/ado.js$domain=tvn.pl|tvn24.pl (easylist.txt: 50345) -.tvn.adocean.pl/files/js/ado\.js -# @@||admin.brightcove.com^$object-subrequest,domain=tvn.pl|tvn24.pl (easylist.txt: 49515) -.admin.brightcove.com - -#ab2p-unblock-dnt-R1748 -{+client-header-tagger{ab2p-unblock-dnt-R1748} \ -} -# @@||adocean.pl^*/ad.js?id=$script,domain=tvn24.pl (easylistchina+easylist.txt: 60004) -.adocean.pl/.*/ad\.js\?id= -# @@||adocean.pl^*/ad.js?id=$script,domain=tvn24.pl (easylist.txt: 49519) -.adocean.pl/.*/ad\.js\?id= - -#ab2p-unblock-dnt-R1749 -{+client-header-tagger{ab2p-unblock-dnt-R1749} \ -} -# @@||tvnet.lv/o/servlet/view/banner/javascript/media?$script,domain=tvnet.lv (advblock.txt: 7415) -.tvnet.lv/o/servlet/view/banner/javascript/media\? - -#ab2p-unblock-dnt-R1750 -{+client-header-tagger{ab2p-unblock-dnt-R1750} \ -} -# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina+easylist.txt: 10397) -.tw.m.yimg.com/res/ads/ - -#ab2p-unblock-dnt-R1751 -{+client-header-tagger{ab2p-unblock-dnt-R1751} \ -} -# @@||folue.info/needes.js$domain=twer.info (easylistchina+easylist.txt: 60298) -.folue.info/needes\.js -# @@||folue.info/needes.js$domain=twer.info (easylist.txt: 49813) -.folue.info/needes\.js - -#ab2p-unblock-dnt-R485 -{+client-header-tagger{ab2p-unblock-dnt-R485} \ -} -# @@||jtvnw.net/*/advertisement.js$domain=twitch.tv (easylistchina+easylist.txt: 60438) -.jtvnw.net/.*/advertisement\.js -# @@||jtvnw.net/*/advertisement.js$domain=twitch.tv (easylist.txt: 49953) -.jtvnw.net/.*/advertisement\.js - -#ab2p-unblock-dnt-R1752 -{+client-header-tagger{ab2p-unblock-dnt-R1752} \ -} -# @@||price.ru^$image,domain=tyndex.ru (advblock.txt: 7364) -.price.ru - -#ab2p-unblock-dnt-R1753 -{+client-header-tagger{ab2p-unblock-dnt-R1753} \ -} -# @@||ubi.com/resource/*/game/*_300x250_$image,domain=ubi.com (easylistchina+easylist.txt: 61376) -.ubi.com/resource/.*/game/.*_300x250_ -# @@||ubi.com/resource/*/game/*_300x250_$image,domain=ubi.com (easylist.txt: 50891) -.ubi.com/resource/.*/game/.*_300x250_ - -#ab2p-unblock-dnt-R1754 -{+client-header-tagger{ab2p-unblock-dnt-R1754} \ -} -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60855) -.v.fwmrm.net/ad/p/1\? -# @@||v.fwmrm.net/ad/p/1$xmlhttprequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60854) -.v.fwmrm.net/ad/p/1 -# @@||v.fwmrm.net/ad/g/1?$script,domain=uktv.co.uk (easylistchina+easylist.txt: 60853) -.v.fwmrm.net/ad/g/1\? -# @@||rtr.innovid.com^$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60706) -.rtr.innovid.com -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59997) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net/p/*/VPAIDAdRenderer.swf$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 59996) -.adm.fwmrm.net/p/.*/VPAIDAdRenderer\.swf -# @@||adm.fwmrm.net/p/*/LinkTag2.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59994) -.adm.fwmrm.net/p/.*/LinkTag2\.js -# @@||adm.fwmrm.net/p/*/AdManager.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59993) -.adm.fwmrm.net/p/.*/AdManager\.js -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=uktv.co.uk (easylist.txt: 50370) -.v.fwmrm.net/ad/p/1\? -# @@||v.fwmrm.net/ad/p/1$xmlhttprequest,domain=uktv.co.uk (easylist.txt: 50369) -.v.fwmrm.net/ad/p/1 -# @@||v.fwmrm.net/ad/g/1?$script,domain=uktv.co.uk (easylist.txt: 50368) -.v.fwmrm.net/ad/g/1\? -# @@||rtr.innovid.com^$object-subrequest,domain=uktv.co.uk (easylist.txt: 50221) -.rtr.innovid.com -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=uktv.co.uk (easylist.txt: 49512) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net/p/*/VPAIDAdRenderer.swf$object-subrequest,domain=uktv.co.uk (easylist.txt: 49511) -.adm.fwmrm.net/p/.*/VPAIDAdRenderer\.swf -# @@||adm.fwmrm.net/p/*/LinkTag2.js$domain=uktv.co.uk (easylist.txt: 49509) -.adm.fwmrm.net/p/.*/LinkTag2\.js -# @@||adm.fwmrm.net/p/*/AdManager.js$domain=uktv.co.uk (easylist.txt: 49508) -.adm.fwmrm.net/p/.*/AdManager\.js - -#ab2p-unblock-dnt-R1755 -{+client-header-tagger{ab2p-unblock-dnt-R1755} \ -} -# @@||akamai.net^*/i.mallnetworks.com/images/*120x60$domain=ultimaterewardsearn.chase.com (easylistchina+easylist.txt: 58375) -.akamai.net/.*/i\.mallnetworks\.com/images/.*120x60 -# @@||akamai.net^*/i.mallnetworks.com/images/*120x60$domain=ultimaterewardsearn.chase.com (easylist.txt: 47890) -.akamai.net/.*/i\.mallnetworks\.com/images/.*120x60 - -#ab2p-unblock-dnt-R1756 -{+client-header-tagger{ab2p-unblock-dnt-R1756} \ -} -# @@||embedperiscope.com/app/embed.js$domain=unilad.co.uk (easylistchina+easylist.txt: 45974) -.embedperiscope.com/app/embed\.js -# @@||embedperiscope.com/app/embed.js$domain=unilad.co.uk (easylist.txt: 35489) -.embedperiscope.com/app/embed\.js - -#ab2p-unblock-dnt-R1757 -{+client-header-tagger{ab2p-unblock-dnt-R1757} \ -} -# @@||union.$domain=union.163.com (easylistchina+easylist.txt: 10402) -.union.*. - -#ab2p-unblock-dnt-R1758 -{+client-header-tagger{ab2p-unblock-dnt-R1758} \ -} -# @@||pagead2.googlesyndication.com/simgad/$image,domain=uptobox.com (easylistchina+easylist.txt: 60631) -.pagead2.googlesyndication.com/simgad/ -# @@||chronophotographie.science^$script,domain=uptobox.com (easylistchina+easylist.txt: 60158) -.chronophotographie.science -# @@||aucun.science/bloggerex.js$domain=uptobox.com (easylistchina+easylist.txt: 60086) -.aucun.science/bloggerex\.js -# @@||pagead2.googlesyndication.com/simgad/$image,domain=uptobox.com (easylist.txt: 50146) -.pagead2.googlesyndication.com/simgad/ -# @@||chronophotographie.science^$script,domain=uptobox.com (easylist.txt: 49673) -.chronophotographie.science -# @@||aucun.science/bloggerex.js$domain=uptobox.com (easylist.txt: 49601) -.aucun.science/bloggerex\.js - -#ab2p-unblock-dnt-R1759 -{+client-header-tagger{ab2p-unblock-dnt-R1759} \ -} -# @@||premium.mbn.com.ua^$script,domain=ura-inform.com (advblock.txt: 7636) -.premium.mbn.com.ua - -#ab2p-unblock-dnt-R1760 -{+client-header-tagger{ab2p-unblock-dnt-R1760} \ -} -# @@||cdn.betrad.com/pub/icon1.png$domain=usanetwork.com (easylistchina+easylist.txt: 58556) -.cdn.betrad.com/pub/icon1\.png -# @@||cdn.betrad.com/pub/icon1.png$domain=usanetwork.com (easylist.txt: 48071) -.cdn.betrad.com/pub/icon1\.png - -#ab2p-unblock-dnt-R1761 -{+client-header-tagger{ab2p-unblock-dnt-R1761} \ -} -# @@||lduhtrp.net/image-$domain=uscbookstore.com (easylistchina+easylist.txt: 59078) -.lduhtrp.net/image- -# @@||lduhtrp.net/image-$domain=uscbookstore.com (easylist.txt: 48593) -.lduhtrp.net/image- - -#ab2p-unblock-dnt-R1762 -{+client-header-tagger{ab2p-unblock-dnt-R1762} \ -} -# @@||usynovite.ru/f/swf/banner_$domain=usynovite.ru (advblock.txt: 7418) -.usynovite.ru/f/swf/banner_ - -#ab2p-unblock-dnt-R1763 -{+client-header-tagger{ab2p-unblock-dnt-R1763} \ -} -# @@.com/ads?$domain=uzblog.com|uzlist.com (advblock.txt: 7177) -/.*\.com/ads\? -.*.com/ads\? - -#ab2p-unblock-dnt-R1764 -{+client-header-tagger{ab2p-unblock-dnt-R1764} \ -} -# @@||advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone?zid=$script,domain=uzmantv.com (easylistchina+easylist.txt: 60964) -.advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone\?zid= -# @@||advert.mgimg.com/servlet/view/$xmlhttprequest,domain=uzmantv.com (easylistchina+easylist.txt: 60963) -.advert.mgimg.com/servlet/view/ -# @@||advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone?zid=$script,domain=uzmantv.com (easylist.txt: 50479) -.advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone\?zid= -# @@||advert.mgimg.com/servlet/view/$xmlhttprequest,domain=uzmantv.com (easylist.txt: 50478) -.advert.mgimg.com/servlet/view/ - -#ab2p-unblock-dnt-R1765 -{+client-header-tagger{ab2p-unblock-dnt-R1765} \ -} -# @@||pubads.g.doubleclick.net/|$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60675) -.pubads.g.doubleclick.net/$ -# @@||doubleclickbygoogle.com^$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60231) -.doubleclickbygoogle.com -# @@||ads.tremorhub.com/ad/$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60019) -.ads.tremorhub.com/ad/ -# @@||pubads.g.doubleclick.net/|$object-subrequest,domain=vaughnlive.tv (easylist.txt: 50190) -.pubads.g.doubleclick.net/$ -# @@||doubleclickbygoogle.com^$object-subrequest,domain=vaughnlive.tv (easylist.txt: 49746) -.doubleclickbygoogle.com -# @@||ads.tremorhub.com/ad/$object-subrequest,domain=vaughnlive.tv (easylist.txt: 49534) -.ads.tremorhub.com/ad/ - -#ab2p-unblock-dnt-R1766 -{+client-header-tagger{ab2p-unblock-dnt-R1766} \ -} -# @@||vhobbies.com/admgr/*.aspx?ZoneID=$script,domain=vcoins.com (easylistchina+easylist.txt: 59751) -.vhobbies.com/admgr/.*\.aspx\?ZoneID= -# @@||vhobbies.com/admgr/*.aspx?ZoneID=$script,domain=vcoins.com (easylist.txt: 49266) -.vhobbies.com/admgr/.*\.aspx\?ZoneID= - -#ab2p-unblock-dnt-R1767 -{+client-header-tagger{ab2p-unblock-dnt-R1767} \ -} -# @@||vdmsti.ru/var/bansrc/$image,domain=vedomosti.ru (advblock.txt: 7419) -.vdmsti.ru/var/bansrc/ - -#ab2p-unblock-dnt-R1768 -{+client-header-tagger{ab2p-unblock-dnt-R1768} \ -} -# @@/reklama/*$domain=velochehol.com.ua|velosumka.com (advblock.txt: 7206) -/(.*/)?reklama/.* - -#ab2p-unblock-dnt-R1769 -{+client-header-tagger{ab2p-unblock-dnt-R1769} \ -} -# @@||veohb.net/js/advertisement.js$domain=veohb.net (easylistchina+easylist.txt: 60860) -.veohb.net/js/advertisement\.js -# @@||veohb.net/js/advertisement.js$domain=veohb.net (easylist.txt: 50375) -.veohb.net/js/advertisement\.js - -#ab2p-unblock-dnt-R1770 -{+client-header-tagger{ab2p-unblock-dnt-R1770} \ -} -# @@||fwmrm.net/ad/g/1?$xmlhttprequest,domain=vevo.com (easylistchina+easylist.txt: 60317) -.fwmrm.net/ad/g/1\? -# @@||fwmrm.net/ad/g/1?$xmlhttprequest,domain=vevo.com (easylist.txt: 49832) -.fwmrm.net/ad/g/1\? - -#ab2p-unblock-dnt-R1771 -{+client-header-tagger{ab2p-unblock-dnt-R1771} \ -} -# @@||adtechus.com/dt/common/postscribe.js$domain=vg.no (easylistchina+easylist.txt: 60029) -.adtechus.com/dt/common/postscribe\.js -# @@||adtechus.com/dt/common/postscribe.js$domain=vg.no (easylist.txt: 49544) -.adtechus.com/dt/common/postscribe\.js - -#ab2p-unblock-dnt-R1772 -{+client-header-tagger{ab2p-unblock-dnt-R1772} \ -} -# @@||ox.eurogamer.net/oa/delivery/ajs.php?$script,domain=vg247.com (easylistchina+easylist.txt: 59320) -.ox.eurogamer.net/oa/delivery/ajs\.php\? -# @@||ox.eurogamer.net/oa/delivery/ajs.php?$script,domain=vg247.com (easylist.txt: 48835) -.ox.eurogamer.net/oa/delivery/ajs\.php\? - -#ab2p-unblock-dnt-R1773 -{+client-header-tagger{ab2p-unblock-dnt-R1773} \ -} -# @@||ads.jetpackdigital.com^*/_uploads/$image,domain=vibe.com (easylistchina+easylist.txt: 58247) -.ads.jetpackdigital.com/.*/_uploads/ -# @@||ads.jetpackdigital.com/jquery.tools.min.js?$domain=vibe.com (easylistchina+easylist.txt: 58246) -.ads.jetpackdigital.com/jquery\.tools\.min\.js\? -# @@||ads.jetpackdigital.com.s3.amazonaws.com^$image,domain=vibe.com (easylistchina+easylist.txt: 58245) -.ads.jetpackdigital.com.s3.amazonaws.com -# @@||ads.jetpackdigital.com^*/_uploads/$image,domain=vibe.com (easylist.txt: 47762) -.ads.jetpackdigital.com/.*/_uploads/ -# @@||ads.jetpackdigital.com/jquery.tools.min.js?$domain=vibe.com (easylist.txt: 47761) -.ads.jetpackdigital.com/jquery\.tools\.min\.js\? -# @@||ads.jetpackdigital.com.s3.amazonaws.com^$image,domain=vibe.com (easylist.txt: 47760) -.ads.jetpackdigital.com.s3.amazonaws.com - -#ab2p-unblock-dnt-R1774 -{+client-header-tagger{ab2p-unblock-dnt-R1774} \ -} -# @@||amazonaws.com/content-images/article/*_120x60$domain=vice.com (easylistchina+easylist.txt: 61307) -.amazonaws.com/content-images/article/.*_120x60 -# @@||amazonaws.com/content-images/article/*_120x60$domain=vice.com (easylist.txt: 50822) -.amazonaws.com/content-images/article/.*_120x60 - -#ab2p-unblock-dnt-R1775 -{+client-header-tagger{ab2p-unblock-dnt-R1775} \ -} -# @@||turner.com/adultswim/big/promos/$media,domain=video.adultswim.com (easylistchina+easylist.txt: 59707) -.turner.com/adultswim/big/promos/ -# @@||turner.com/adultswim/big/promos/$media,domain=video.adultswim.com (easylist.txt: 49222) -.turner.com/adultswim/big/promos/ - -#ab2p-unblock-dnt-R1776 -{+client-header-tagger{ab2p-unblock-dnt-R1776} \ -} -# @@||lycos.com/catman/init.js$domain=video.lycos.com (easylistchina+easylist.txt: 59118) -.lycos.com/catman/init\.js -# @@||lycos.com/catman/init.js$domain=video.lycos.com (easylist.txt: 48633) -.lycos.com/catman/init\.js - -#ab2p-unblock-dnt-R1777 -{+client-header-tagger{ab2p-unblock-dnt-R1777} \ -} -# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina+easylist.txt: 10375) -.sinaimg.cn/unipro/pub/suda_m_v629\.js - -#ab2p-unblock-dnt-R1778 -{+client-header-tagger{ab2p-unblock-dnt-R1778} \ -} -# @@||comeadvertisewithus.com/ads/ads.js$domain=video2mp3.net (easylistchina+easylist.txt: 58608) -.comeadvertisewithus.com/ads/ads\.js -# @@||comeadvertisewithus.com/ads/ads.js$domain=video2mp3.net (easylist.txt: 48123) -.comeadvertisewithus.com/ads/ads\.js - -#ab2p-unblock-dnt-R1779 -{+client-header-tagger{ab2p-unblock-dnt-R1779} \ -} -# @@||begun.ru/vpaid_lib.swf|$domain=vidin.ru (advblock.txt: 7281) -.begun.ru/vpaid_lib\.swf$ -# @@||begun.ru/video.jsp?$domain=vidin.ru (advblock.txt: 7280) -.begun.ru/video\.jsp\? - -#ab2p-unblock-dnt-R1780 -{+client-header-tagger{ab2p-unblock-dnt-R1780} \ -} -# @@||googleapis.com/flash/*adsapi_*.swf$domain=viki.com|wwe.com (easylistchina+easylist.txt: 58912) -.googleapis.com/flash/.*adsapi_.*\.swf -# @@||googleapis.com/flash/*adsapi_*.swf$domain=viki.com|wwe.com (easylist.txt: 48427) -.googleapis.com/flash/.*adsapi_.*\.swf - -#ab2p-unblock-dnt-R1781 -{+client-header-tagger{ab2p-unblock-dnt-R1781} \ -} -# @@||g.doubleclick.net/gampad/ads?adk=*&ciu_szs&cmsid=$object-subrequest,domain=viki.mx (easylistchina+easylist.txt: 60326) -.g.doubleclick.net/gampad/ads\?adk=.*&ciu_szs&cmsid= -# @@||g.doubleclick.net/gampad/ads?adk=*&ciu_szs&cmsid=$object-subrequest,domain=viki.mx (easylist.txt: 49841) -.g.doubleclick.net/gampad/ads\?adk=.*&ciu_szs&cmsid= - -#ab2p-unblock-dnt-R1782 -{+client-header-tagger{ab2p-unblock-dnt-R1782} \ -} -# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina+easylist.txt: 10160) -.ads.myopen.vip.com - -#ab2p-unblock-dnt-R1783 -{+client-header-tagger{ab2p-unblock-dnt-R1783} \ -} -# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina+easylist.txt: 10262) -.hd.duba.net/vip\.ijinshan\.com/repository/ad-images/ - -#ab2p-unblock-dnt-R1784 -{+client-header-tagger{ab2p-unblock-dnt-R1784} \ -} -# @@||inskinmedia.com^*/api/brightcove3.js$domain=virginmedia.com (easylistchina+easylist.txt: 59020) -.inskinmedia.com/.*/api/brightcove3\.js -# @@||doubleclick.net/N6545/adj/*_music/video;$script,domain=virginmedia.com (easylistchina+easylist.txt: 58723) -.doubleclick.net/N6545/adj/.*_music/video; -# @@||cdn.inskinmedia.com^*/brightcove3.js$domain=virginmedia.com (easylistchina+easylist.txt: 58565) -.cdn.inskinmedia.com/.*/brightcove3\.js -# @@||inskinmedia.com^*/api/brightcove3.js$domain=virginmedia.com (easylist.txt: 48535) -.inskinmedia.com/.*/api/brightcove3\.js -# @@||doubleclick.net/N6545/adj/*_music/video;$script,domain=virginmedia.com (easylist.txt: 48238) -.doubleclick.net/N6545/adj/.*_music/video; -# @@||cdn.inskinmedia.com^*/brightcove3.js$domain=virginmedia.com (easylist.txt: 48080) -.cdn.inskinmedia.com/.*/brightcove3\.js - -#ab2p-unblock-dnt-R1785 -{+client-header-tagger{ab2p-unblock-dnt-R1785} \ -} -# @@||virpl.ru^*_advert.php$xmlhttprequest,domain=virpl.ru (advblock.txt: 7427) -.virpl.ru/.*_advert\.php - -#ab2p-unblock-dnt-R507 -{+client-header-tagger{ab2p-unblock-dnt-R507} \ -} -# @@/xbanner.js$subdocument,domain=vivo.sx (easylistchina+easylist.txt: 59939) -/(.*/)?xbanner\.js -xbanner.js*. -# @@/xbanner.js$subdocument,domain=vivo.sx (easylist.txt: 49454) -/(.*/)?xbanner\.js -xbanner.js*. - -#ab2p-unblock-dnt-R509 -{+client-header-tagger{ab2p-unblock-dnt-R509} \ -} -# @@||vk.me/images/ads_$domain=vk.com (easylistchina+easylist.txt: 61239) -.vk.me/images/ads_ -# @@||vk.me/css/al/ads.css$domain=vk.com (easylistchina+easylist.txt: 61238) -.vk.me/css/al/ads\.css -# @@||vk.com/js/al/ads.js?$domain=vk.com (easylistchina+easylist.txt: 61237) -.vk.com/js/al/ads\.js\? -# @@||vk.com/images/ads_$domain=vk.com (easylistchina+easylist.txt: 61236) -.vk.com/images/ads_ -# @@||vk.com/css/al/ads.css$domain=vk.com (easylistchina+easylist.txt: 61235) -.vk.com/css/al/ads\.css -# @@||vk.com/ads.php?$subdocument,domain=vk.com (easylistchina+easylist.txt: 61233) -.vk.com/ads\.php\? -# @@||vk.com/ads_rotate.php$domain=vk.com (easylistchina+easylist.txt: 59778) -.vk.com/ads_rotate\.php -# @@||rs.mail.ru/vp/adman2.swf$object-subrequest,domain=vk.com (easylistchina+easylist.txt: 59472) -.rs.mail.ru/vp/adman2\.swf -# @@||api.vigo.ru^*/network_status?$object-subrequest,domain=vk.com (advblock.txt: 7268) -.api.vigo.ru/.*/network_status\? -# @@||api.vigo.ru/crossdomain.xml|$domain=vk.com (advblock.txt: 7267) -.api.vigo.ru/crossdomain\.xml$ -# @@||vk.me/images/ads_$domain=vk.com (easylist.txt: 50754) -.vk.me/images/ads_ -# @@||vk.me/css/al/ads.css$domain=vk.com (easylist.txt: 50753) -.vk.me/css/al/ads\.css -# @@||vk.com/js/al/ads.js?$domain=vk.com (easylist.txt: 50752) -.vk.com/js/al/ads\.js\? -# @@||vk.com/images/ads_$domain=vk.com (easylist.txt: 50751) -.vk.com/images/ads_ -# @@||vk.com/css/al/ads.css$domain=vk.com (easylist.txt: 50750) -.vk.com/css/al/ads\.css -# @@||vk.com/ads.php?$subdocument,domain=vk.com (easylist.txt: 50748) -.vk.com/ads\.php\? -# @@||vk.com/ads_rotate.php$domain=vk.com (easylist.txt: 49293) -.vk.com/ads_rotate\.php -# @@||rs.mail.ru/vp/adman2.swf$object-subrequest,domain=vk.com (easylist.txt: 48987) -.rs.mail.ru/vp/adman2\.swf - -#ab2p-unblock-dnt-R1786 -{+client-header-tagger{ab2p-unblock-dnt-R1786} \ -} -# @@||vodyanoy.com.ua^*700_200.jpg|$domain=vodyanoy.com.ua (advblock.txt: 7428) -.vodyanoy.com.ua/.*700_200\.jpg$ - -#ab2p-unblock-dnt-R1787 -{+client-header-tagger{ab2p-unblock-dnt-R1787} \ -} -# @@||voenhronika.ru/banners/*.png|$domain=voenhronika.ru (advblock.txt: 7429) -.voenhronika.ru/banners/.*\.png$ - -#ab2p-unblock-dnt-R1788 -{+client-header-tagger{ab2p-unblock-dnt-R1788} \ -} -# @@||ad4.liverail.com/?LR_ORDER_ID=$object-subrequest,domain=volarvideo.com (easylistchina+easylist.txt: 58168) -.ad4.liverail.com/\?LR_ORDER_ID= -# @@||ad4.liverail.com/?LR_ORDER_ID=$object-subrequest,domain=volarvideo.com (easylist.txt: 47683) -.ad4.liverail.com/\?LR_ORDER_ID= - -#ab2p-unblock-dnt-R1789 -{+client-header-tagger{ab2p-unblock-dnt-R1789} \ -} -# @@||amazon-adsystem.com^$image,stylesheet,domain=voldingenglish.com (easylistchina+easylist.txt: 58394) -.amazon-adsystem.com -# @@||amazon-adsystem.com/widgets/q?$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58390) -.amazon-adsystem.com/widgets/q\? -# @@||amazon-adsystem.com/panda/$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58388) -.amazon-adsystem.com/panda/ -# @@||amazon-adsystem.com/js/$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58387) -.amazon-adsystem.com/js/ -# @@||amazon-adsystem.com^$image,stylesheet,domain=voldingenglish.com (easylist.txt: 47909) -.amazon-adsystem.com -# @@||amazon-adsystem.com/widgets/q?$script,domain=voldingenglish.com (easylist.txt: 47905) -.amazon-adsystem.com/widgets/q\? -# @@||amazon-adsystem.com/panda/$script,domain=voldingenglish.com (easylist.txt: 47903) -.amazon-adsystem.com/panda/ -# @@||amazon-adsystem.com/js/$script,domain=voldingenglish.com (easylist.txt: 47902) -.amazon-adsystem.com/js/ - -#ab2p-unblock-dnt-R1790 -{+client-header-tagger{ab2p-unblock-dnt-R1790} \ -} -# @@||doubleclick.net/ddm/trackclk/$popup,domain=vouchercodes.co.uk (easylistchina+easylist.txt: 61411) -.doubleclick.net/ddm/trackclk/ -# @@||doubleclick.net/ddm/trackclk/$popup,domain=vouchercodes.co.uk (easylist.txt: 50926) -.doubleclick.net/ddm/trackclk/ - -#ab2p-unblock-dnt-R1791 -{+client-header-tagger{ab2p-unblock-dnt-R1791} \ -} -# @@||googlesyndication.com/pagead/imgad?id=$image,domain=vroomvroomvroom.com.au (easylistchina+easylist.txt: 58914) -.googlesyndication.com/pagead/imgad\?id= -# @@||googlesyndication.com/pagead/imgad?id=$image,domain=vroomvroomvroom.com.au (easylist.txt: 48429) -.googlesyndication.com/pagead/imgad\?id= - -#ab2p-unblock-dnt-R1792 -{+client-header-tagger{ab2p-unblock-dnt-R1792} \ -} -# @@||vseplatezhi.ru/wp-content/uploads/*-120x60.$image,domain=vseplatezhi.ru (advblock.txt: 7431) -.vseplatezhi.ru/wp-content/uploads/.*-120x60\. - -#ab2p-unblock-dnt-R1793 -{+client-header-tagger{ab2p-unblock-dnt-R1793} \ -} -# @@||vshp2016.ru/upload/iblock/*_baner_$image,domain=vshp2016.ru (advblock.txt: 7432) -.vshp2016.ru/upload/iblock/.*_baner_ - -#ab2p-unblock-dnt-R1794 -{+client-header-tagger{ab2p-unblock-dnt-R1794} \ -} -# @@||st.vtomske.ru/js/adv$script,domain=vtomske.ru (advblock.txt: 7396) -.st.vtomske.ru/js/adv - -#ab2p-unblock-dnt-R1795 -{+client-header-tagger{ab2p-unblock-dnt-R1795} \ -} -# @@||ads.vyborg-press.ru^$domain=vyborg-press.ru (advblock.txt: 7241) -.ads.vyborg-press.ru - -#ab2p-unblock-dnt-R511 -{+client-header-tagger{ab2p-unblock-dnt-R511} \ -} -# @@||adriver.ru/extender.js|$script,domain=vz.ru (advblock.txt: 7620) -.adriver.ru/extender\.js$ -# @@||russia.ru/reklama/32x32.flv?link1=$object-subrequest,domain=vz.ru (advblock.txt: 7384) -.russia.ru/reklama/32x32\.flv\?link1= - -#ab2p-unblock-dnt-R1796 -{+client-header-tagger{ab2p-unblock-dnt-R1796} \ -} -# @@/AdImage/*$domain=wacom.tw (easylistchina+easylist.txt: 10003) -/(.*/)?AdImage/.* - -#ab2p-unblock-dnt-R1797 -{+client-header-tagger{ab2p-unblock-dnt-R1797} \ -} -# @@||247realmedia.com/RealMedia/ads/adstream_sx.ads/wm-desktop/home/$xmlhttprequest,domain=walmart.com.br (easylistchina+easylist.txt: 60925) -.247realmedia.com/RealMedia/ads/adstream_sx\.ads/wm-desktop/home/ -# @@||247realmedia.com/RealMedia/ads/adstream_sx.ads/wm-desktop/home/$xmlhttprequest,domain=walmart.com.br (easylist.txt: 50440) -.247realmedia.com/RealMedia/ads/adstream_sx\.ads/wm-desktop/home/ - -#ab2p-unblock-dnt-R1798 -{+client-header-tagger{ab2p-unblock-dnt-R1798} \ -} -# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina+easylist.txt: 10116) -.70e.com/js/2013_new\.js - -#ab2p-unblock-dnt-R513 -{+client-header-tagger{ab2p-unblock-dnt-R513} \ -} -# @@||twt-static.washtimes.com/js/disqus.js$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45922) -.twt-static.washtimes.com/js/disqus\.js -# @@||twt-static.washtimes.com/js/base_global.$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45921) -.twt-static.washtimes.com/js/base_global\. -# @@||twt-static.washtimes.com/js/disqus.js$script,domain=washingtontimes.com (easylist.txt: 35437) -.twt-static.washtimes.com/js/disqus\.js -# @@||twt-static.washtimes.com/js/base_global.$script,domain=washingtontimes.com (easylist.txt: 35436) -.twt-static.washtimes.com/js/base_global\. - -#ab2p-unblock-dnt-R1799 -{+client-header-tagger{ab2p-unblock-dnt-R1799} \ -} -# @@||ad.yieldmanager.com/imp^$script,domain=watchseries-online.eu (easylistchina+easylist.txt: 59984) -.ad.yieldmanager.com/imp[^\w%.-] -# @@||ad.yieldmanager.com/imp^$script,domain=watchseries-online.eu (easylist.txt: 49499) -.ad.yieldmanager.com/imp[^\w%.-] - -#ab2p-unblock-dnt-R1800 -{+client-header-tagger{ab2p-unblock-dnt-R1800} \ -} -# @@/show_ad_$domain=wb.qq.com (easylistchina+easylist.txt: 10055) -/(.*/)?show_ad_ -# @@/advert_$domain=wb.qq.com (easylistchina+easylist.txt: 10017) -/(.*/)?advert_ - -#ab2p-unblock-dnt-R1801 -{+client-header-tagger{ab2p-unblock-dnt-R1801} \ -} -# @@||imagehost123.com^*_300x250_$image,domain=wealthymen.com (easylistchina+easylist.txt: 61340) -.imagehost123.com/.*_300x250_ -# @@||imagehost123.com^*_300x250_$image,domain=wealthymen.com (easylist.txt: 50855) -.imagehost123.com/.*_300x250_ - -#ab2p-unblock-dnt-R1802 -{+client-header-tagger{ab2p-unblock-dnt-R1802} \ -} -# @@||imwx.com/js/adstwo/adcontroller.js$domain=weather.com (easylistchina+easylist.txt: 59003) -.imwx.com/js/adstwo/adcontroller\.js -# @@||imwx.com/js/adstwo/adcontroller.js$domain=weather.com (easylist.txt: 48518) -.imwx.com/js/adstwo/adcontroller\.js - -#ab2p-unblock-dnt-R1803 -{+client-header-tagger{ab2p-unblock-dnt-R1803} \ -} -# @@/webadvert.$domain=webadvert.ru (advblock.txt: 7215) -/(.*/)?webadvert\. -webadvert.*. - -#ab2p-unblock-dnt-R1804 -{+client-header-tagger{ab2p-unblock-dnt-R1804} \ -} -# @@/LoadAds.$domain=webcars.com.cn (easylistchina+easylist.txt: 10048) -/(.*/)?LoadAds\. -LoadAds.*. - -#ab2p-unblock-dnt-R1805 -{+client-header-tagger{ab2p-unblock-dnt-R1805} \ -} -# @@||netupd8.com/webupd8/*/advertisement.js$domain=webupd8.org (easylistchina+easylist.txt: 59233) -.netupd8.com/webupd8/.*/advertisement\.js -# @@||netupd8.com/webupd8/*/adsense.js$domain=webupd8.org (easylistchina+easylist.txt: 59232) -.netupd8.com/webupd8/.*/adsense\.js -# @@||netupd8.com/webupd8/*/advertisement.js$domain=webupd8.org (easylist.txt: 48748) -.netupd8.com/webupd8/.*/advertisement\.js -# @@||netupd8.com/webupd8/*/adsense.js$domain=webupd8.org (easylist.txt: 48747) -.netupd8.com/webupd8/.*/adsense\.js - -#ab2p-unblock-dnt-R1806 -{+client-header-tagger{ab2p-unblock-dnt-R1806} \ -} -# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina+easylist.txt: 10352) -.rm.sina.com.cn/minisite/ - -#ab2p-unblock-dnt-R1807 -{+client-header-tagger{ab2p-unblock-dnt-R1807} \ -} -# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina+easylist.txt: 10485) -.sinajs.cn/open/analytics/js/suda\.js - -#ab2p-unblock-dnt-R1808 -{+client-header-tagger{ab2p-unblock-dnt-R1808} \ -} -# @@||adtechus.com/dt/common/DAC.js$domain=wetpaint.com (easylistchina+easylist.txt: 58322) -.adtechus.com/dt/common/DAC\.js -# @@||adtechus.com/dt/common/DAC.js$domain=wetpaint.com (easylist.txt: 47837) -.adtechus.com/dt/common/DAC\.js - -#ab2p-unblock-dnt-R1809 -{+client-header-tagger{ab2p-unblock-dnt-R1809} \ -} -# @@||google.com^*/show_afs_ads.js$domain=whitepages.com (easylistchina+easylist.txt: 58910) -.google.com/.*/show_afs_ads\.js -# @@||google.com^*/show_afs_ads.js$domain=whitepages.com (easylist.txt: 48425) -.google.com/.*/show_afs_ads\.js - -#ab2p-unblock-dnt-R1810 -{+client-header-tagger{ab2p-unblock-dnt-R1810} \ -} -# @@||whstatic.com/images/thumb/*-Popup-Ads-$image,domain=wikihow.com (easylistchina+easylist.txt: 59808) -.whstatic.com/images/thumb/.*-Popup-Ads- -# @@||whstatic.com/images/thumb/*-Popup-Ads-$image,domain=wikihow.com (easylist.txt: 49323) -.whstatic.com/images/thumb/.*-Popup-Ads- - -#ab2p-unblock-dnt-R1811 -{+client-header-tagger{ab2p-unblock-dnt-R1811} \ -} -# @@||revive.wikimart.ru^$domain=wikimart.ru (advblock.txt: 7374) -.revive.wikimart.ru -# @@||adriver.ru/cgi-bin/erle.cgi?$script,domain=wikimart.ru (advblock.txt: 7231) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-unblock-dnt-R1812 -{+client-header-tagger{ab2p-unblock-dnt-R1812} \ -} -# @@||ads.williamhillcasino.com/redirect.aspx?*=internal&$popup,domain=williamhillcasino.com (easylistchina+easylist.txt: 61401) -.ads.williamhillcasino.com/redirect\.aspx\?.*=internal& -# @@||ads.williamhillcasino.com/redirect.aspx?*=internal&$popup,domain=williamhillcasino.com (easylist.txt: 50916) -.ads.williamhillcasino.com/redirect\.aspx\?.*=internal& - -#ab2p-unblock-dnt-R1813 -{+client-header-tagger{ab2p-unblock-dnt-R1813} \ -} -# @@/adsense/*$domain=winxclub.com (advblock.txt: 7188) -/(.*/)?adsense/.* - -#ab2p-unblock-dnt-R1814 -{+client-header-tagger{ab2p-unblock-dnt-R1814} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=wired.com (easylistchina+easylist.txt: 59344) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||doubleclick.net/adj/wiredcom.dart/*;sz=300x250;*;kw=top;$script,domain=wired.com (easylistchina+easylist.txt: 58718) -.doubleclick.net/adj/wiredcom\.dart/.*;sz=300x250;.*;kw=top; -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=wired.com (easylist.txt: 48859) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||doubleclick.net/adj/wiredcom.dart/*;sz=300x250;*;kw=top;$script,domain=wired.com (easylist.txt: 48233) -.doubleclick.net/adj/wiredcom\.dart/.*;sz=300x250;.*;kw=top; - -#ab2p-unblock-dnt-R1815 -{+client-header-tagger{ab2p-unblock-dnt-R1815} \ -} -# @@||ad.103092804.com/st?ad_type=$subdocument,domain=wizard.mediacoderhq.com (easylistchina+easylist.txt: 58146) -.ad.103092804.com/st\?ad_type= -# @@||ad.103092804.com/st?ad_type=$subdocument,domain=wizard.mediacoderhq.com (easylist.txt: 47661) -.ad.103092804.com/st\?ad_type= - -#ab2p-unblock-dnt-R1816 -{+client-header-tagger{ab2p-unblock-dnt-R1816} \ -} -# @@||content.ad/images/$image,domain=wmpoweruser.com (easylistchina+easylist.txt: 58617) -.content.ad/images/ -# @@||content.ad/images/$image,domain=wmpoweruser.com (easylist.txt: 48132) -.content.ad/images/ - -#ab2p-unblock-dnt-R1817 -{+client-header-tagger{ab2p-unblock-dnt-R1817} \ -} -# @@||w.org/plugins/adsense-plugin/screenshot-$image,domain=wordpress.org (easylistchina+easylist.txt: 59784) -.w.org/plugins/adsense-plugin/screenshot- -# @@||w.org/adsense-plugin/assets/banner-$image,domain=wordpress.org (easylistchina+easylist.txt: 59783) -.w.org/adsense-plugin/assets/banner- -# @@||w.org/plugins/adsense-plugin/screenshot-$image,domain=wordpress.org (easylist.txt: 49299) -.w.org/plugins/adsense-plugin/screenshot- -# @@||w.org/adsense-plugin/assets/banner-$image,domain=wordpress.org (easylist.txt: 49298) -.w.org/adsense-plugin/assets/banner- - -#ab2p-unblock-dnt-R1818 -{+client-header-tagger{ab2p-unblock-dnt-R1818} \ -} -# @@||adsense.woso.cn^$domain=woso.cn (easylistchina+easylist.txt: 10162) -.adsense.woso.cn - -#ab2p-unblock-dnt-R1819 -{+client-header-tagger{ab2p-unblock-dnt-R1819} \ -} -# @@||d3pkae9owd2lcf.cloudfront.net/mb102.js$domain=wowhead.com (easylistchina+easylist.txt: 58643) -.d3pkae9owd2lcf.cloudfront.net/mb102\.js -# @@||d3pkae9owd2lcf.cloudfront.net/mb102.js$domain=wowhead.com (easylist.txt: 48158) -.d3pkae9owd2lcf.cloudfront.net/mb102\.js - -#ab2p-unblock-dnt-R1820 -{+client-header-tagger{ab2p-unblock-dnt-R1820} \ -} -# @@||rek.www.wp.pl/vad.xml?$xmlhttprequest,domain=wp.tv (easylistchina+easylist.txt: 60696) -.rek.www.wp.pl/vad\.xml\? -# @@||rek.www.wp.pl/pliki/$script,domain=wp.tv (easylistchina+easylist.txt: 60695) -.rek.www.wp.pl/pliki/ -# @@||adv.wp.pl/RM/Box/*.mp4$object-subrequest,domain=wp.tv (easylistchina+easylist.txt: 60030) -.adv.wp.pl/RM/Box/.*\.mp4 -# @@||rek.www.wp.pl/vad.xml?$xmlhttprequest,domain=wp.tv (easylist.txt: 50211) -.rek.www.wp.pl/vad\.xml\? -# @@||rek.www.wp.pl/pliki/$script,domain=wp.tv (easylist.txt: 50210) -.rek.www.wp.pl/pliki/ -# @@||adv.wp.pl/RM/Box/*.mp4$object-subrequest,domain=wp.tv (easylist.txt: 49545) -.adv.wp.pl/RM/Box/.*\.mp4 - -#ab2p-unblock-dnt-R1821 -{+client-header-tagger{ab2p-unblock-dnt-R1821} \ -} -# @@||collective-media.net/pfadx/wtv.wrc/$object-subrequest,domain=wrc.com (easylistchina+easylist.txt: 58605) -.collective-media.net/pfadx/wtv\.wrc/ -# @@||collective-media.net/pfadx/wtv.wrc/$object-subrequest,domain=wrc.com (easylist.txt: 48120) -.collective-media.net/pfadx/wtv\.wrc/ - -#ab2p-unblock-dnt-R1822 -{+client-header-tagger{ab2p-unblock-dnt-R1822} \ -} -# @@||ads.adap.tv/applist|$object-subrequest,domain=wunderground.com (easylistchina+easylist.txt: 58219) -.ads.adap.tv/applist$ -# @@||ads.adap.tv/applist|$object-subrequest,domain=wunderground.com (easylist.txt: 47734) -.ads.adap.tv/applist$ - -#ab2p-unblock-dnt-R1823 -{+client-header-tagger{ab2p-unblock-dnt-R1823} \ -} -# @@||www.facebook.com/ajax/ads/$xmlhttprequest,domain=www.facebook.com (easylistchina+easylist.txt: 61160) -.www.facebook.com/ajax/ads/ -# @@||www.facebook.com/ajax/ads/$xmlhttprequest,domain=www.facebook.com (easylist.txt: 50675) -.www.facebook.com/ajax/ads/ - -#ab2p-unblock-dnt-R1824 -{+client-header-tagger{ab2p-unblock-dnt-R1824} \ -} -# @@||www.google.com/images/icons/*/adsense_$image,domain=www.google.com (easylistchina+easylist.txt: 61192) -.www.google.com/images/icons/.*/adsense_ -# @@||www.google.com/doubleclick/$domain=www.google.com (easylistchina+easylist.txt: 61190) -.www.google.com/doubleclick/ -# @@||www.google.com/analytics/web/$xmlhttprequest,domain=www.google.com (easylistchina+easylist.txt: 61189) -.www.google.com/analytics/web/ -# @@||www.google.com/ads/js/$script,domain=www.google.com (easylistchina+easylist.txt: 61187) -.www.google.com/ads/js/ -# @@||ads.google.com/jsapi$script,domain=www.google.com (easylistchina+easylist.txt: 61165) -.ads.google.com/jsapi -# @@||google.com/doubleclick/studio/swiffy/$domain=www.google.com (easylistchina+easylist.txt: 58902) -.google.com/doubleclick/studio/swiffy/ -# @@||www.google.com/images/icons/*/adsense_$image,domain=www.google.com (easylist.txt: 50707) -.www.google.com/images/icons/.*/adsense_ -# @@||www.google.com/doubleclick/$domain=www.google.com (easylist.txt: 50705) -.www.google.com/doubleclick/ -# @@||www.google.com/analytics/web/$xmlhttprequest,domain=www.google.com (easylist.txt: 50704) -.www.google.com/analytics/web/ -# @@||www.google.com/ads/js/$script,domain=www.google.com (easylist.txt: 50702) -.www.google.com/ads/js/ -# @@||ads.google.com/jsapi$script,domain=www.google.com (easylist.txt: 50680) -.ads.google.com/jsapi -# @@||google.com/doubleclick/studio/swiffy/$domain=www.google.com (easylist.txt: 48417) -.google.com/doubleclick/studio/swiffy/ - -#ab2p-unblock-dnt-R1825 -{+client-header-tagger{ab2p-unblock-dnt-R1825} \ -} -# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina+easylist.txt: 10276) -.ifengimg.com/ifeng/sources/region_ -# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina+easylist.txt: 10275) -.ifengimg.com/ifeng/sources/inice_ - -#ab2p-unblock-dnt-R1826 -{+client-header-tagger{ab2p-unblock-dnt-R1826} \ -} -# @@||rad.msn.com/ADSAdClient31.dll?GetSAd=$script,domain=www.msn.com (easylistchina+easylist.txt: 59434) -.rad.msn.com/ADSAdClient31\.dll\?GetSAd= -# @@||rad.msn.com/ADSAdClient31.dll?GetSAd=$script,domain=www.msn.com (easylist.txt: 48949) -.rad.msn.com/ADSAdClient31\.dll\?GetSAd= - -#ab2p-unblock-dnt-R1827 -{+client-header-tagger{ab2p-unblock-dnt-R1827} \ -} -# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina+easylist.txt: 10483) -.simba.taobao.com/\?name=tcmad& - -#ab2p-unblock-dnt-R1828 -{+client-header-tagger{ab2p-unblock-dnt-R1828} \ -} -# @@&ad_type=$domain=x.jd.com (easylistchina+easylist.txt: 9978) -/.*&ad_type= - -#ab2p-unblock-dnt-R1829 -{+client-header-tagger{ab2p-unblock-dnt-R1829} \ -} -# @@/analytics.php?$domain=xcar.com.cn (easylistchina+easylist.txt: 10459) -/(.*/)?analytics\.php\? - -#ab2p-unblock-dnt-R1830 -{+client-header-tagger{ab2p-unblock-dnt-R1830} \ -} -# @@/addata.$domain=xdf.cn (easylistchina+easylist.txt: 10000) -/(.*/)?addata\. -addata.*. - -#ab2p-unblock-dnt-R1831 -{+client-header-tagger{ab2p-unblock-dnt-R1831} \ -} -# @@||cdn.cpmstar.com/cached/swf/preplay.swf$object,domain=xfire.com (easylistchina+easylist.txt: 58562) -.cdn.cpmstar.com/cached/swf/preplay\.swf -# @@||cdn.cpmstar.com/cached/js/$script,domain=xfire.com (easylistchina+easylist.txt: 58561) -.cdn.cpmstar.com/cached/js/ -# @@||cdn.cpmstar.com/cached/swf/preplay.swf$object,domain=xfire.com (easylist.txt: 48077) -.cdn.cpmstar.com/cached/swf/preplay\.swf -# @@||cdn.cpmstar.com/cached/js/$script,domain=xfire.com (easylist.txt: 48076) -.cdn.cpmstar.com/cached/js/ - -#ab2p-unblock-dnt-R1832 -{+client-header-tagger{ab2p-unblock-dnt-R1832} \ -} -# @@/adblock.js$domain=xingk.cc (easylistchina+easylist.txt: 9999) -/(.*/)?adblock\.js -adblock.js*. - -#ab2p-unblock-dnt-R1833 -{+client-header-tagger{ab2p-unblock-dnt-R1833} \ -} -# @@/images/ads/*$domain=xn--80aqkgfb3b1a0a.xn--p1ai|锌褘褕屑邪懈薪褎芯.褉褎 (advblock.txt: 7202) -/(.*/)?images/ads/.* - -#ab2p-unblock-dnt-R1834 -{+client-header-tagger{ab2p-unblock-dnt-R1834} \ -} -# @@||js.adm.cnzz.net^$domain=xoyo.com (easylistchina+easylist.txt: 10292) -.js.adm.cnzz.net - -#ab2p-unblock-dnt-R1835 -{+client-header-tagger{ab2p-unblock-dnt-R1835} \ -} -# @@||adserver.bigwigmedia.com/adfetch2.php?$object-subrequest,domain=y8.com (easylistchina+easylist.txt: 58292) -.adserver.bigwigmedia.com/adfetch2\.php\? -# @@||adserver.bigwigmedia.com/adfetch2.php?$object-subrequest,domain=y8.com (easylist.txt: 47807) -.adserver.bigwigmedia.com/adfetch2\.php\? - -#ab2p-unblock-dnt-R1836 -{+client-header-tagger{ab2p-unblock-dnt-R1836} \ -} -# @@||yaberemenna.info/openx/www/delivery/ajs.php?zoneid=7&$domain=yaberemenna.info (advblock.txt: 7435) -.yaberemenna.info/openx/www/delivery/ajs\.php\?zoneid=7& -# @@||yaberemenna.info/openx/www/delivery/ai.php?filename=$domain=yaberemenna.info (advblock.txt: 7434) -.yaberemenna.info/openx/www/delivery/ai\.php\?filename= - -#ab2p-unblock-dnt-R1837 -{+client-header-tagger{ab2p-unblock-dnt-R1837} \ -} -# @@||yimg.jp/images/listing/tool/yads/yjaxc-stream-ex.js$domain=yahoo.co.jp (easylistchina+easylist.txt: 61153) -.yimg.jp/images/listing/tool/yads/yjaxc-stream-ex\.js -# @@||yimg.jp/images/listing/tool/yads/yjaxc-stream-ex.js$domain=yahoo.co.jp (easylist.txt: 50668) -.yimg.jp/images/listing/tool/yads/yjaxc-stream-ex\.js - -#ab2p-unblock-dnt-R534 -{+client-header-tagger{ab2p-unblock-dnt-R534} \ -} -# @@||yimg.com^*/ads-min.css$domain=yahoo.com (easylistchina+easylist.txt: 59853) -.yimg.com/.*/ads-min\.css -# @@||yimg.com/rq/darla/*/g-r-min.js$domain=yahoo.com (easylistchina+easylist.txt: 59849) -.yimg.com/rq/darla/.*/g-r-min\.js -# @@||yimg.com/p/combo?$stylesheet,domain=yahoo.com (easylistchina+easylist.txt: 59848) -.yimg.com/p/combo\? -# @@||yimg.com/ks/plugin/adplugin.swf?$domain=yahoo.com (easylistchina+easylist.txt: 59847) -.yimg.com/ks/plugin/adplugin\.swf\? -# @@||query.vap.yahoo.net/nicobarMan/ads/acctid=$object-subrequest,domain=yahoo.com (easylistchina+easylist.txt: 59427) -.query.vap.yahoo.net/nicobarMan/ads/acctid= -# @@||adserver.yahoo.com/a?*&l=VID&$xmlhttprequest,domain=yahoo.com (easylistchina+easylist.txt: 58298) -.adserver.yahoo.com/a\?.*&l=VID& -# @@||adserver.yahoo.com/a?*&l=head&$script,domain=yahoo.com (easylistchina+easylist.txt: 58297) -.adserver.yahoo.com/a\?.*&l=head& -# @@||yimg.com^*/ads-min.css$domain=yahoo.com (easylist.txt: 49368) -.yimg.com/.*/ads-min\.css -# @@||yimg.com/rq/darla/*/g-r-min.js$domain=yahoo.com (easylist.txt: 49364) -.yimg.com/rq/darla/.*/g-r-min\.js -# @@||yimg.com/p/combo?$stylesheet,domain=yahoo.com (easylist.txt: 49363) -.yimg.com/p/combo\? -# @@||yimg.com/ks/plugin/adplugin.swf?$domain=yahoo.com (easylist.txt: 49362) -.yimg.com/ks/plugin/adplugin\.swf\? -# @@||query.vap.yahoo.net/nicobarMan/ads/acctid=$object-subrequest,domain=yahoo.com (easylist.txt: 48942) -.query.vap.yahoo.net/nicobarMan/ads/acctid= -# @@||adserver.yahoo.com/a?*&l=VID&$xmlhttprequest,domain=yahoo.com (easylist.txt: 47813) -.adserver.yahoo.com/a\?.*&l=VID& -# @@||adserver.yahoo.com/a?*&l=head&$script,domain=yahoo.com (easylist.txt: 47812) -.adserver.yahoo.com/a\?.*&l=head& - -#ab2p-unblock-dnt-R1838 -{+client-header-tagger{ab2p-unblock-dnt-R1838} \ -} -# @@||images.vantage-media.net^$domain=yahoo.net (easylistchina+easylist.txt: 58986) -.images.vantage-media.net -# @@||images.vantage-media.net^$domain=yahoo.net (easylist.txt: 48501) -.images.vantage-media.net - -#ab2p-unblock-dnt-R1839 -{+client-header-tagger{ab2p-unblock-dnt-R1839} \ -} -# @@/PIC/AD/*$domain=ybjk.com (easylistchina+easylist.txt: 10050) -/(.*/)?PIC/AD/.* - -#ab2p-unblock-dnt-R1840 -{+client-header-tagger{ab2p-unblock-dnt-R1840} \ -} -# @@||exponential.com^*/tags.js$domain=yellowbridge.com (easylistchina+easylist.txt: 60265) -.exponential.com/.*/tags\.js -# @@||exponential.com^*/tags.js$domain=yellowbridge.com (easylist.txt: 49780) -.exponential.com/.*/tags\.js - -#ab2p-unblock-dnt-R1841 -{+client-header-tagger{ab2p-unblock-dnt-R1841} \ -} -# @@||adap.tv/redir/javascript/adaptvAdPlayer.js$domain=yepi.com (easylistchina+easylist.txt: 58182) -.adap.tv/redir/javascript/adaptvAdPlayer\.js -# @@||adap.tv/redir/javascript/adaptvAdPlayer.js$domain=yepi.com (easylist.txt: 47697) -.adap.tv/redir/javascript/adaptvAdPlayer\.js - -#ab2p-unblock-dnt-R1842 -{+client-header-tagger{ab2p-unblock-dnt-R1842} \ -} -# @@||doubleclick.net/adi/yesnetwork.com/media;$subdocument,domain=yesnetwork.com (easylistchina+easylist.txt: 58704) -.doubleclick.net/adi/yesnetwork\.com/media; -# @@||doubleclick.net/adi/yesnetwork.com/media;$subdocument,domain=yesnetwork.com (easylist.txt: 48219) -.doubleclick.net/adi/yesnetwork\.com/media; - -#ab2p-unblock-dnt-R1843 -{+client-header-tagger{ab2p-unblock-dnt-R1843} \ -} -# @@||syndication.streamads.yahoo.com/na_stream_brewer/brew/*?cid=*&url=*&pvid=*&callback=$script,domain=yimg.com (easylistchina+easylist.txt: 59613) -.syndication.streamads.yahoo.com/na_stream_brewer/brew/.*\?cid=.*&url=.*&pvid=.*&callback= -# @@||syndication.streamads.yahoo.com/na_stream_brewer/brew/*?cid=*&url=*&pvid=*&callback=$script,domain=yimg.com (easylist.txt: 49128) -.syndication.streamads.yahoo.com/na_stream_brewer/brew/.*\?cid=.*&url=.*&pvid=.*&callback= - -#ab2p-unblock-dnt-R1844 -{+client-header-tagger{ab2p-unblock-dnt-R1844} \ -} -# @@||doubleclick.net/adj/yorkshire.jp/main-section;*;sz=120x600,160x600$script,domain=yorkshirepost.co.uk (easylistchina+easylist.txt: 58719) -.doubleclick.net/adj/yorkshire\.jp/main-section;.*;sz=120x600,160x600 -# @@||doubleclick.net/adj/yorkshire.jp/main-section;*;sz=120x600,160x600$script,domain=yorkshirepost.co.uk (easylist.txt: 48234) -.doubleclick.net/adj/yorkshire\.jp/main-section;.*;sz=120x600,160x600 - -#ab2p-unblock-dnt-R1845 -{+client-header-tagger{ab2p-unblock-dnt-R1845} \ -} -# @@||youjizz.com/videos/embed/$subdocument,domain=youjizz.com (easylistchina+easylist.txt: 61471) -.youjizz.com/videos/embed/ -# @@||as.sexad.net/as/r?d=preroll-mov-$object-subrequest,domain=youjizz.com (easylistchina+easylist.txt: 61430) -.as.sexad.net/as/r\?d=preroll-mov- -# @@||youjizz.com/videos/embed/$subdocument,domain=youjizz.com (easylist.txt: 50986) -.youjizz.com/videos/embed/ -# @@||as.sexad.net/as/r?d=preroll-mov-$object-subrequest,domain=youjizz.com (easylist.txt: 50945) -.as.sexad.net/as/r\?d=preroll-mov- - -#ab2p-unblock-dnt-R1846 -{+client-header-tagger{ab2p-unblock-dnt-R1846} \ -} -# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina+easylist.txt: 10124) +# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina.txt: 10107) .a.ads.cn.miaozhen.com -#ab2p-unblock-dnt-R1847 -{+client-header-tagger{ab2p-unblock-dnt-R1847} \ +#ab2p-unblock-dnt-R328 +{+client-header-tagger{ab2p-unblock-dnt-R328} \ } -# @@/cdn-cgi/pe/bag2?r*pagead2.googlesyndication.com%2Fpub-config$domain=youngcons.com (easylistchina+easylist.txt: 58106) -/(.*/)?cdn-cgi/pe/bag2\?r.*pagead2\.googlesyndication\.com%2Fpub-config -# @@/cdn-cgi/pe/bag2?r*googlesyndication.com%2Fpagead%2Fshow_ads.js$domain=youngcons.com (easylistchina+easylist.txt: 58105) -/(.*/)?cdn-cgi/pe/bag2\?r.*googlesyndication\.com%2Fpagead%2Fshow_ads\.js -# @@/cdn-cgi/pe/bag2?r*pagead2.googlesyndication.com%2Fpub-config$domain=youngcons.com (easylist.txt: 47621) -/(.*/)?cdn-cgi/pe/bag2\?r.*pagead2\.googlesyndication\.com%2Fpub-config -# @@/cdn-cgi/pe/bag2?r*googlesyndication.com%2Fpagead%2Fshow_ads.js$domain=youngcons.com (easylist.txt: 47620) -/(.*/)?cdn-cgi/pe/bag2\?r.*googlesyndication\.com%2Fpagead%2Fshow_ads\.js - -#ab2p-unblock-dnt-R539 -{+client-header-tagger{ab2p-unblock-dnt-R539} \ -} -# @@||ytimg.com^*/channels4_banner_hd.jpg?$domain=youtube.com (easylistchina+easylist.txt: 59864) -.ytimg.com/.*/channels4_banner_hd\.jpg\? -# @@||ytimg.com^*/channels4_banner.jpg?$domain=youtube.com (easylistchina+easylist.txt: 59863) -.ytimg.com/.*/channels4_banner\.jpg\? -# @@||ytimg.com/yts/img/channels/*_banner-*.png$domain=youtube.com (easylistchina+easylist.txt: 59862) -.ytimg.com/yts/img/channels/.*_banner-.*\.png -# @@||ytimg.com/yts/img/channels/*_banner-*.jpg$domain=youtube.com (easylistchina+easylist.txt: 59861) -.ytimg.com/yts/img/channels/.*_banner-.*\.jpg -# @@||s.ytimg.com/yts/swfbin/player-*/watch_as3.swf$object,domain=youtube.com (easylistchina+easylist.txt: 59481) -.s.ytimg.com/yts/swfbin/player-.*/watch_as3\.swf -# @@||ytimg.com^*/channels4_banner_hd.jpg?$domain=youtube.com (easylist.txt: 49379) -.ytimg.com/.*/channels4_banner_hd\.jpg\? -# @@||ytimg.com^*/channels4_banner.jpg?$domain=youtube.com (easylist.txt: 49378) -.ytimg.com/.*/channels4_banner\.jpg\? -# @@||ytimg.com/yts/img/channels/*_banner-*.png$domain=youtube.com (easylist.txt: 49377) -.ytimg.com/yts/img/channels/.*_banner-.*\.png -# @@||ytimg.com/yts/img/channels/*_banner-*.jpg$domain=youtube.com (easylist.txt: 49376) -.ytimg.com/yts/img/channels/.*_banner-.*\.jpg -# @@||s.ytimg.com/yts/swfbin/player-*/watch_as3.swf$object,domain=youtube.com (easylist.txt: 48996) -.s.ytimg.com/yts/swfbin/player-.*/watch_as3\.swf - -#ab2p-unblock-dnt-R540 -{+client-header-tagger{ab2p-unblock-dnt-R540} \ -} -# @@||folue.info/player/*.js|$domain=youwatch.org (easylistchina+easylist.txt: 60299) -.folue.info/player/.*\.js$ -# @@||plugins.longtailvideo.com^$script,domain=youwatch.org (easylistchina+easylist.txt: 45860) -.plugins.longtailvideo.com -# @@||ajax.googleapis.com/ajax/libs/$script,domain=youwatch.org (easylistchina+easylist.txt: 45856) -.ajax.googleapis.com/ajax/libs/ -# @@||folue.info/player/*.js|$domain=youwatch.org (easylist.txt: 49814) -.folue.info/player/.*\.js$ -# @@||plugins.longtailvideo.com^$script,domain=youwatch.org (easylist.txt: 35375) -.plugins.longtailvideo.com -# @@||ajax.googleapis.com/ajax/libs/$script,domain=youwatch.org (easylist.txt: 35371) -.ajax.googleapis.com/ajax/libs/ - -#ab2p-unblock-dnt-R1848 -{+client-header-tagger{ab2p-unblock-dnt-R1848} \ -} -# @@/webThunderDetect.$domain=ypan.cc (easylistchina+easylist.txt: 10061) +# @@/webThunderDetect.$domain=ypan.cc (easylistchina.txt: 10043) /(.*/)?webThunderDetect\. webThunderDetect.*. -#ab2p-unblock-dnt-R1849 -{+client-header-tagger{ab2p-unblock-dnt-R1849} \ +#ab2p-unblock-dnt-R329 +{+client-header-tagger{ab2p-unblock-dnt-R329} \ } -# @@||yttalk.com/threads/*/add-reply$domain=yttalk.com (easylistchina+easylist.txt: 59865) -.yttalk.com/threads/.*/add-reply -# @@||yttalk.com/threads/*/add-reply$domain=yttalk.com (easylist.txt: 49380) -.yttalk.com/threads/.*/add-reply - -#ab2p-unblock-dnt-R1850 -{+client-header-tagger{ab2p-unblock-dnt-R1850} \ -} -# @@||lp.longtailvideo.com^*/adttext/adttext.js$domain=yuvutu.com (easylistchina+easylist.txt: 61446) -.lp.longtailvideo.com/.*/adttext/adttext\.js -# @@||lp.longtailvideo.com^*/adttext/adttext.js$domain=yuvutu.com (easylist.txt: 50961) -.lp.longtailvideo.com/.*/adttext/adttext\.js - -#ab2p-unblock-dnt-R1851 -{+client-header-tagger{ab2p-unblock-dnt-R1851} \ -} -# @@/media/banners/*$domain=zakaz.ua|zapals.com (advblock.txt: 7204) -/(.*/)?media/banners/.* - -#ab2p-unblock-dnt-R1852 -{+client-header-tagger{ab2p-unblock-dnt-R1852} \ -} -# @@||promo.leadia.ru^$domain=zakonrf.info (advblock.txt: 7368) -.promo.leadia.ru - -#ab2p-unblock-dnt-R1853 -{+client-header-tagger{ab2p-unblock-dnt-R1853} \ -} -# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina+easylist.txt: 10134) +# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina.txt: 10118) .ad.doubleclick.net/ddm/adi/.*\.ZALORA\.COM\.HK -#ab2p-unblock-dnt-R1854 -{+client-header-tagger{ab2p-unblock-dnt-R1854} \ -} -# @@||zarplata.ru^*/bfile.ashx?placeid=2&$domain=zarplata.ru (advblock.txt: 7440) -.zarplata.ru/.*/bfile\.ashx\?placeid=2& - -#ab2p-unblock-dnt-R544 -{+client-header-tagger{ab2p-unblock-dnt-R544} \ -} -# @@||doubleclick.net^*/adx/zattoo/video_*;cue=pre;$object-subrequest,domain=zattoo.com (easylistchina+easylist.txt: 60230) -.doubleclick.net/.*/adx/zattoo/video_.*;cue=pre; -# @@||doubleclick.net^*/adx/zattoo/video_*;cue=pre;$object-subrequest,domain=zattoo.com (easylist.txt: 49745) -.doubleclick.net/.*/adx/zattoo/video_.*;cue=pre; - -#ab2p-unblock-dnt-R1855 -{+client-header-tagger{ab2p-unblock-dnt-R1855} \ -} -# @@||zeperfs.com^$script,domain=zeperfs.com (easylistchina+easylist.txt: 60920) -.zeperfs.com -# @@||zeperfs.com^$script,domain=zeperfs.com (easylist.txt: 50435) -.zeperfs.com - -#ab2p-unblock-dnt-R1856 -{+client-header-tagger{ab2p-unblock-dnt-R1856} \ -} -# @@||zerozero.pt/script/$script,domain=zerozero.pt (easylistchina+easylist.txt: 60921) -.zerozero.pt/script/ -# @@||zerozero.pt/script/$script,domain=zerozero.pt (easylist.txt: 50436) -.zerozero.pt/script/ - -#ab2p-unblock-dnt-R1857 -{+client-header-tagger{ab2p-unblock-dnt-R1857} \ -} -# @@||tags.bkrtx.com/js/bk-coretag.js$domain=zillow.com (easylistchina+easylist.txt: 59616) -.tags.bkrtx.com/js/bk-coretag\.js -# @@||doubleclick.net/N6619/adj/zillow.hdp/$script,domain=zillow.com (easylistchina+easylist.txt: 58724) -.doubleclick.net/N6619/adj/zillow\.hdp/ -# @@||doubleclick.net/adi/zillow.hdp/$subdocument,domain=zillow.com (easylistchina+easylist.txt: 58705) -.doubleclick.net/adi/zillow\.hdp/ -# @@||tags.bkrtx.com/js/bk-coretag.js$domain=zillow.com (easylist.txt: 49131) -.tags.bkrtx.com/js/bk-coretag\.js -# @@||doubleclick.net/N6619/adj/zillow.hdp/$script,domain=zillow.com (easylist.txt: 48239) -.doubleclick.net/N6619/adj/zillow\.hdp/ -# @@||doubleclick.net/adi/zillow.hdp/$subdocument,domain=zillow.com (easylist.txt: 48220) -.doubleclick.net/adi/zillow\.hdp/ - -#ab2p-unblock-dnt-R1858 -{+client-header-tagger{ab2p-unblock-dnt-R1858} \ -} -# @@||akamaihd.net^*/videoAd.js$domain=zynga.com (easylistchina+easylist.txt: 58378) -.akamaihd.net/.*/videoAd\.js -# @@||akamaihd.net^*/videoAd.js$domain=zynga.com (easylist.txt: 47893) -.akamaihd.net/.*/videoAd\.js - -#ab2p-unblock-dnt-R1859 -{+client-header-tagger{ab2p-unblock-dnt-R1859} \ -} -# @@||泻褍褌褟褌邪.褉褎/media/adv/$image,domain=泻褍褌褟褌邪.褉褎 (advblock.txt: 7441) -.泻褍褌褟褌邪.褉褎/media/adv/ - -#ab2p-unblock-dnt-nR-Rn1860 -{+client-header-tagger{ab2p-unblock-dnt-Rn1860} \ +#ab2p-unblock-dnt-nR-Rn187 +{+client-header-tagger{ab2p-unblock-dnt-Rn187} \ +client-header-tagger{ab2p-unblock-dnt-nR} \ } -# @@||liverail.com/js/LiveRail.AdManager$script,domain=~bluray-disc.de (easylistchina+easylist.txt: 59102) -.liverail.com/js/LiveRail\.AdManager -# @@||liverail.com/js/LiveRail.AdManager$script,domain=~bluray-disc.de (easylist.txt: 48617) -.liverail.com/js/LiveRail\.AdManager - -#ab2p-unblock-dnt-nR-Rn1861 -{+client-header-tagger{ab2p-unblock-dnt-Rn1861} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||tidaltv.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylistchina+easylist.txt: 59659) -.tidaltv.com/crossdomain\.xml -# @@||innovid.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylistchina+easylist.txt: 59010) -.innovid.com/crossdomain\.xml -# @@||tidaltv.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylist.txt: 49174) -.tidaltv.com/crossdomain\.xml -# @@||innovid.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylist.txt: 48525) -.innovid.com/crossdomain\.xml - -#ab2p-unblock-dnt-nR-Rn1862 -{+client-header-tagger{ab2p-unblock-dnt-Rn1862} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||videonow.ru^*/ad_holder.$domain=~cybergame.tv (advblock.txt: 7426) -.videonow.ru/.*/ad_holder\. - -#ab2p-unblock-dnt-nR-Rn1863 -{+client-header-tagger{ab2p-unblock-dnt-Rn1863} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||g.doubleclick.net/crossdomain.xml$object-subrequest,domain=~filmon.tv|~newgrounds.com (easylistchina+easylist.txt: 58849) -.g.doubleclick.net/crossdomain\.xml -# @@||g.doubleclick.net/crossdomain.xml$object-subrequest,domain=~filmon.tv|~newgrounds.com (easylist.txt: 48364) -.g.doubleclick.net/crossdomain\.xml - -#ab2p-unblock-dnt-nR-Rn641 -{+client-header-tagger{ab2p-unblock-dnt-Rn641} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||209.222.8.217/crossdomain.xml$object-subrequest,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 58116) -.209.222.8.217/crossdomain\.xml -# @@||209.222.8.217/crossdomain.xml$object-subrequest,domain=~p2p.adserver.ip (easylist.txt: 47631) -.209.222.8.217/crossdomain\.xml - -#ab2p-unblock-dnt-nR-Rn1864 -{+client-header-tagger{ab2p-unblock-dnt-Rn1864} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||adocean.pl/crossdomain.xml$object-subrequest,domain=~patrz.pl (easylistchina+easylist.txt: 60937) -.adocean.pl/crossdomain\.xml -# @@||adocean.pl/crossdomain.xml$object-subrequest,domain=~patrz.pl (easylist.txt: 50452) -.adocean.pl/crossdomain\.xml - -#ab2p-unblock-dnt-nR-Rn1865 -{+client-header-tagger{ab2p-unblock-dnt-Rn1865} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina+easylist.txt: 10432) +# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina.txt: 10420) .yimg.com/zz/combo\?.*&.*\.css -#ab2p-unblock-dnt-nR-Rn761 -{+client-header-tagger{ab2p-unblock-dnt-Rn761} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||adocean.pl^*^aocodetype=$object-subrequest,domain=~superfilm.pl (easylistchina+easylist.txt: 60940) -.adocean.pl/.*[^\w%.-]aocodetype= -# @@||2mdn.net/instream/html5/ima3.js$domain=~superfilm.pl (easylistchina+easylist.txt: 58123) -.2mdn.net/instream/html5/ima3\.js -# @@||adocean.pl^*^aocodetype=$object-subrequest,domain=~superfilm.pl (easylist.txt: 50455) -.adocean.pl/.*[^\w%.-]aocodetype= -# @@||2mdn.net/instream/html5/ima3.js$domain=~superfilm.pl (easylist.txt: 47638) -.2mdn.net/instream/html5/ima3\.js - -#ab2p-unblock-dnt-nR-Rn1866 -{+client-header-tagger{ab2p-unblock-dnt-Rn1866} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||oas.bigflix.com/realmedia/ads/$object-subrequest,domain=~tamilflix.net (easylistchina+easylist.txt: 59271) -.oas.bigflix.com/realmedia/ads/ -# @@||oas.bigflix.com/realmedia/ads/$object-subrequest,domain=~tamilflix.net (easylist.txt: 48786) -.oas.bigflix.com/realmedia/ads/ - -#ab2p-unblock-dnt-nR-Rn1867 -{+client-header-tagger{ab2p-unblock-dnt-Rn1867} \ - +client-header-tagger{ab2p-unblock-dnt-nR} \ -} -# @@||adtech.de/crossdomain.xml$object-subrequest,domain=~zattoo.com (easylistchina+easylist.txt: 58318) -.adtech.de/crossdomain\.xml -# @@||adtech.de/crossdomain.xml$object-subrequest,domain=~zattoo.com (easylist.txt: 47833) -.adtech.de/crossdomain\.xml - #ab2p-unblock-elem {-filter{ab2p-elemhide-filter} \ } TAG:^ab2p-unblock-elem$ -# @@||imagebam.com/image/$popup (easylistchina+easylist.txt: 61794) -.imagebam.com/image/ -# @@||ads.b10f.jp/flv/$~third-party (easylistchina+easylist.txt: 61787) -.ads.b10f.jp/flv/ -# @@||youfreeporntube.com^$generichide (easylistchina+easylist.txt: 61784) -.youfreeporntube.com -# @@||xibitnet.com/check/advertisements.js (easylistchina+easylist.txt: 61782) -.xibitnet.com/check/advertisements\.js -# @@||xibitnet.com/check/advertisement.js (easylistchina+easylist.txt: 61781) -.xibitnet.com/check/advertisement\.js -# @@||tube8.com/js/advertisement.js (easylistchina+easylist.txt: 61780) -.tube8.com/js/advertisement\.js -# @@||trafficjunky.net/js/ad*.js (easylistchina+easylist.txt: 61779) -.trafficjunky.net/js/ad.*\.js -# @@||submityourflicks.com/player/player-ads.swf$object (easylistchina+easylist.txt: 61775) -.submityourflicks.com/player/player-ads\.swf -# @@||sexvidx.tv/js/eroex.js (easylistchina+easylist.txt: 61774) -.sexvidx.tv/js/eroex\.js -# @@||pornfun.com/js/ads.js (easylistchina+easylist.txt: 61770) -.pornfun.com/js/ads\.js -# @@||porndoo.com/showads.js (easylistchina+easylist.txt: 61769) -.porndoo.com/showads\.js -# @@||phncdn.com^*/fuckadblock.js (easylistchina+easylist.txt: 61767) -.phncdn.com/.*/fuckadblock\.js -# @@||phncdn.com^*/ads.js (easylistchina+easylist.txt: 61766) -.phncdn.com/.*/ads\.js -# @@||phncdn.com/js/advertisement.js (easylistchina+easylist.txt: 61764) -.phncdn.com/js/advertisement\.js -# @@||openload.io/Ads.png (easylistchina+easylist.txt: 61762) -.openload.io/Ads\.png -# @@||ooporn.com/ads.js (easylistchina+easylist.txt: 61761) -.ooporn.com/ads\.js -# @@||nightchan.com/advertisement.js (easylistchina+easylist.txt: 61760) -.nightchan.com/advertisement\.js -# @@||n4mo.org/wp-content/*/ads/ (easylistchina+easylist.txt: 61758) -.n4mo.org/wp-content/.*/ads/ -# @@||mongoporn.com^*/adframe/$subdocument (easylistchina+easylist.txt: 61757) -.mongoporn.com/.*/adframe/ -# @@||jporn4u.com/js/ads.js (easylistchina+easylist.txt: 61754) -.jporn4u.com/js/ads\.js -# @@||javpee.com/eroex.js (easylistchina+easylist.txt: 61751) -.javpee.com/eroex\.js -# @@||javhub.net^$script,~third-party (easylistchina+easylist.txt: 61750) -.javhub.net -# @@||imgadult.com/js/advertisement.js (easylistchina+easylist.txt: 61743) -.imgadult.com/js/advertisement\.js -# @@||hentaimoe.com/js/advertisement.js (easylistchina+easylist.txt: 61742) -.hentaimoe.com/js/advertisement\.js -# @@||hentaihaven.org^*/fuckadblock.js (easylistchina+easylist.txt: 61741) -.hentaihaven.org/.*/fuckadblock\.js -# @@||fuqer.com^*/advertisement.js (easylistchina+easylist.txt: 61736) -.fuqer.com/.*/advertisement\.js -# @@||desihoes.com/advertisement.js (easylistchina+easylist.txt: 61734) -.desihoes.com/advertisement\.js -# @@||adultadworld.com/adhandler/$subdocument (easylistchina+easylist.txt: 61733) -.adultadworld.com/adhandler/ -# @@||ad.thisav.com/player/swfobject.js (easylistchina+easylist.txt: 61732) -.ad.thisav.com/player/swfobject\.js -# @@||25643e662a2.com/ad*.js (easylistchina+easylist.txt: 61731) -.25643e662a2.com/ad.*\.js -# @@||209.58.131.22^*/advertisement.js (easylistchina+easylist.txt: 61730) -.209.58.131.22/.*/advertisement\.js -# @@||1986a44b12e.com/googlead.js (easylistchina+easylist.txt: 61729) -.1986a44b12e.com/googlead\.js -# @@||1986a44b12e.com/Ad*.js (easylistchina+easylist.txt: 61728) -.1986a44b12e.com/Ad.*\.js -# @@||youporngay.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61724) -.youporngay.com/_Incapsula_Resource\? -# @@||youporn.com/watch_postroll/$xmlhttprequest (easylistchina+easylist.txt: 61722) -.youporn.com/watch_postroll/ -# @@||youporn.com/watch/$xmlhttprequest (easylistchina+easylist.txt: 61721) -.youporn.com/watch/ -# @@||youporn.com/subscriptions/$xmlhttprequest (easylistchina+easylist.txt: 61720) -.youporn.com/subscriptions/ -# @@||youporn.com/searchapi/$xmlhttprequest (easylistchina+easylist.txt: 61719) -.youporn.com/searchapi/ -# @@||youporn.com/notifications/$xmlhttprequest (easylistchina+easylist.txt: 61718) -.youporn.com/notifications/ -# @@||youporn.com/mycollections.json$xmlhttprequest (easylistchina+easylist.txt: 61717) -.youporn.com/mycollections\.json -# @@||youporn.com/esi_home/$xmlhttprequest (easylistchina+easylist.txt: 61716) -.youporn.com/esi_home/ -# @@||youporn.com/change/$xmlhttprequest (easylistchina+easylist.txt: 61715) -.youporn.com/change/ -# @@||youporn.com/ajax/$xmlhttprequest (easylistchina+easylist.txt: 61714) -.youporn.com/ajax/ -# @@||youporn.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61713) -.youporn.com/_Incapsula_Resource\? -# @@||upload.tube8.com^$script,xmlhttprequest (easylistchina+easylist.txt: 61710) -.upload.tube8.com -# @@||tube8.fr/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61709) -.tube8.fr/_Incapsula_Resource\? -# @@||tube8.es/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61708) -.tube8.es/_Incapsula_Resource\? -# @@||tube8.com/images/$image (easylistchina+easylist.txt: 61707) -.tube8.com/images/ -# @@||tube8.com/favicon.ico (easylistchina+easylist.txt: 61706) -.tube8.com/favicon\.ico -# @@||tube8.com/embed/$subdocument,~third-party (easylistchina+easylist.txt: 61705) -.tube8.com/embed/ -# @@||tube8.com/ajax2/$xmlhttprequest (easylistchina+easylist.txt: 61704) -.tube8.com/ajax2/ -# @@||tube8.com/ajax/$xmlhttprequest (easylistchina+easylist.txt: 61703) -.tube8.com/ajax/ -# @@||tube8.com/ajax-$xmlhttprequest (easylistchina+easylist.txt: 61702) -.tube8.com/ajax- -# @@||tube8.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61701) -.tube8.com/_Incapsula_Resource\? -# @@||redtube.com/watched/$xmlhttprequest (easylistchina+easylist.txt: 61696) -.redtube.com/watched/ -# @@||redtube.com/videodetails/$xmlhttprequest (easylistchina+easylist.txt: 61695) -.redtube.com/videodetails/ -# @@||redtube.com/upload/$xmlhttprequest (easylistchina+easylist.txt: 61694) -.redtube.com/upload/ -# @@||redtube.com/tags-stars/$xmlhttprequest (easylistchina+easylist.txt: 61693) -.redtube.com/tags-stars/ -# @@||redtube.com/tags-stars$xmlhttprequest (easylistchina+easylist.txt: 61692) -.redtube.com/tags-stars -# @@||redtube.com/subscribe/$xmlhttprequest (easylistchina+easylist.txt: 61691) -.redtube.com/subscribe/ -# @@||redtube.com/starsuggestion/$xmlhttprequest (easylistchina+easylist.txt: 61690) -.redtube.com/starsuggestion/ -# @@||redtube.com/searchsuggest?$xmlhttprequest (easylistchina+easylist.txt: 61689) -.redtube.com/searchsuggest\? -# @@||redtube.com/relatedvideos/$xmlhttprequest (easylistchina+easylist.txt: 61688) -.redtube.com/relatedvideos/ -# @@||redtube.com/recommended/$xmlhttprequest (easylistchina+easylist.txt: 61687) -.redtube.com/recommended/ -# @@||redtube.com/rate$xmlhttprequest (easylistchina+easylist.txt: 61686) -.redtube.com/rate -# @@||redtube.com/panel/$xmlhttprequest (easylistchina+easylist.txt: 61685) -.redtube.com/panel/ -# @@||redtube.com/notifications/$xmlhttprequest (easylistchina+easylist.txt: 61684) -.redtube.com/notifications/ -# @@||redtube.com/message/$xmlhttprequest (easylistchina+easylist.txt: 61683) -.redtube.com/message/ -# @@||redtube.com/logout$xmlhttprequest (easylistchina+easylist.txt: 61682) -.redtube.com/logout -# @@||redtube.com/language-star-suggestion/$xmlhttprequest (easylistchina+easylist.txt: 61681) -.redtube.com/language-star-suggestion/ -# @@||redtube.com/js/jquery/$xmlhttprequest (easylistchina+easylist.txt: 61680) -.redtube.com/js/jquery/ -# @@||redtube.com/htmllogin| (easylistchina+easylist.txt: 61679) -.redtube.com/htmllogin$ -# @@||redtube.com/gallery/$xmlhttprequest (easylistchina+easylist.txt: 61678) -.redtube.com/gallery/ -# @@||redtube.com/embed/$xmlhttprequest (easylistchina+easylist.txt: 61677) -.redtube.com/embed/ -# @@||redtube.com/comments/$xmlhttprequest (easylistchina+easylist.txt: 61676) -.redtube.com/comments/ -# @@||redtube.com/blockuser/$xmlhttprequest (easylistchina+easylist.txt: 61675) -.redtube.com/blockuser/ -# @@||redtube.com/bid/$subdocument (easylistchina+easylist.txt: 61674) -.redtube.com/bid/ -# @@||redtube.com/advancedsearch$xmlhttprequest (easylistchina+easylist.txt: 61673) -.redtube.com/advancedsearch -# @@||redtube.com/addfriend/$xmlhttprequest (easylistchina+easylist.txt: 61672) -.redtube.com/addfriend/ -# @@||redtube.com/addfavorite/$xmlhttprequest (easylistchina+easylist.txt: 61671) -.redtube.com/addfavorite/ -# @@||redtube.com/_thumbs/$image (easylistchina+easylist.txt: 61670) -.redtube.com/_thumbs/ -# @@||redtube.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61669) -.redtube.com/_Incapsula_Resource\? -# @@||redtube.com.br/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61668) -.redtube.com.br/_Incapsula_Resource\? -# @@||pornhubcommunity.com/cdn_files/images/$image (easylistchina+easylist.txt: 61667) -.pornhubcommunity.com/cdn_files/images/ -# @@||pornhub.com/videouploading3/$xmlhttprequest (easylistchina+easylist.txt: 61665) -.pornhub.com/videouploading3/ -# @@||pornhub.com/video/$xmlhttprequest (easylistchina+easylist.txt: 61664) -.pornhub.com/video/ -# @@||pornhub.com/users/$xmlhttprequest (easylistchina+easylist.txt: 61663) -.pornhub.com/users/ -# @@||pornhub.com/user/$xmlhttprequest (easylistchina+easylist.txt: 61662) -.pornhub.com/user/ -# @@||pornhub.com/uploading/$xmlhttprequest (easylistchina+easylist.txt: 61661) -.pornhub.com/uploading/ -# @@||pornhub.com/upload/$xmlhttprequest (easylistchina+easylist.txt: 61660) -.pornhub.com/upload/ -# @@||pornhub.com/svvt/add?$xmlhttprequest (easylistchina+easylist.txt: 61659) -.pornhub.com/svvt/add\? -# @@||pornhub.com/stream/$xmlhttprequest (easylistchina+easylist.txt: 61658) -.pornhub.com/stream/ -# @@||pornhub.com/premium/$xmlhttprequest (easylistchina+easylist.txt: 61657) -.pornhub.com/premium/ -# @@||pornhub.com/pornstars/$xmlhttprequest (easylistchina+easylist.txt: 61656) -.pornhub.com/pornstars/ -# @@||pornhub.com/pornstar/$xmlhttprequest (easylistchina+easylist.txt: 61655) -.pornhub.com/pornstar/ -# @@||pornhub.com/playlist_json/$xmlhttprequest (easylistchina+easylist.txt: 61654) -.pornhub.com/playlist_json/ -# @@||pornhub.com/oauth2/authorize?$popup (easylistchina+easylist.txt: 61653) -.pornhub.com/oauth2/authorize\? -# @@||pornhub.com/insights/$image,xmlhttprequest (easylistchina+easylist.txt: 61652) -.pornhub.com/insights/ -# @@||pornhub.com/gif/$xmlhttprequest (easylistchina+easylist.txt: 61651) -.pornhub.com/gif/ -# @@||pornhub.com/front/$xmlhttprequest (easylistchina+easylist.txt: 61650) -.pornhub.com/front/ -# @@||pornhub.com/comment/$xmlhttprequest (easylistchina+easylist.txt: 61649) -.pornhub.com/comment/ -# @@||pornhub.com/chat/$xmlhttprequest (easylistchina+easylist.txt: 61648) -.pornhub.com/chat/ -# @@||pornhub.com/channel/$xmlhttprequest (easylistchina+easylist.txt: 61647) -.pornhub.com/channel/ -# @@||pornhub.com/album_upload$xmlhttprequest (easylistchina+easylist.txt: 61646) -.pornhub.com/album_upload -# @@||pornhub.com/album/$xmlhttprequest (easylistchina+easylist.txt: 61645) -.pornhub.com/album/ -# @@||pornhub.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61644) -.pornhub.com/_Incapsula_Resource\? -# @@||phncdn.com^*/html5Uploader/$script (easylistchina+easylist.txt: 61641) -.phncdn.com/.*/html5Uploader/ -# @@||phncdn.com/zeroclipboard-$script (easylistchina+easylist.txt: 61640) -.phncdn.com/zeroclipboard- -# @@||phncdn.com/www-static/js/vtablet/video/$script (easylistchina+easylist.txt: 61639) -.phncdn.com/www-static/js/vtablet/video/ -# @@||phncdn.com/www-static/js/vtablet/template-$script (easylistchina+easylist.txt: 61638) -.phncdn.com/www-static/js/vtablet/template- -# @@||phncdn.com/www-static/js/vtablet/pcFunctions.js$script (easylistchina+easylist.txt: 61637) -.phncdn.com/www-static/js/vtablet/pcFunctions\.js -# @@||phncdn.com/www-static/js/vtablet/main.js$script (easylistchina+easylist.txt: 61636) -.phncdn.com/www-static/js/vtablet/main\.js -# @@||phncdn.com/www-static/js/vtablet/legacy.js$script (easylistchina+easylist.txt: 61635) -.phncdn.com/www-static/js/vtablet/legacy\.js -# @@||phncdn.com/www-static/js/vtablet/iscroll-lite.$script (easylistchina+easylist.txt: 61634) -.phncdn.com/www-static/js/vtablet/iscroll-lite\. -# @@||phncdn.com/www-static/js/vtablet/hammer.min.js$script (easylistchina+easylist.txt: 61633) -.phncdn.com/www-static/js/vtablet/hammer\.min\.js -# @@||phncdn.com/www-static/js/vtablet/front/$script (easylistchina+easylist.txt: 61632) -.phncdn.com/www-static/js/vtablet/front/ -# @@||phncdn.com/www-static/js/vtablet/fakeworker-$script (easylistchina+easylist.txt: 61631) -.phncdn.com/www-static/js/vtablet/fakeworker- -# @@||phncdn.com/www-static/js/vmobile/widget-$script (easylistchina+easylist.txt: 61630) -.phncdn.com/www-static/js/vmobile/widget- -# @@||phncdn.com/www-static/js/vmobile/video-search.js$script (easylistchina+easylist.txt: 61629) -.phncdn.com/www-static/js/vmobile/video-search\.js -# @@||phncdn.com/www-static/js/vmobile/utils.js$script (easylistchina+easylist.txt: 61628) -.phncdn.com/www-static/js/vmobile/utils\.js -# @@||phncdn.com/www-static/js/vmobile/stream.js$script (easylistchina+easylist.txt: 61627) -.phncdn.com/www-static/js/vmobile/stream\.js -# @@||phncdn.com/www-static/js/vmobile/stream-$script (easylistchina+easylist.txt: 61626) -.phncdn.com/www-static/js/vmobile/stream- -# @@||phncdn.com/www-static/js/vmobile/show.js$script (easylistchina+easylist.txt: 61625) -.phncdn.com/www-static/js/vmobile/show\.js -# @@||phncdn.com/www-static/js/vmobile/profile.js$script (easylistchina+easylist.txt: 61624) -.phncdn.com/www-static/js/vmobile/profile\.js -# @@||phncdn.com/www-static/js/vmobile/preHeadJs.$script (easylistchina+easylist.txt: 61623) -.phncdn.com/www-static/js/vmobile/preHeadJs\. -# @@||phncdn.com/www-static/js/vmobile/phub.js$script (easylistchina+easylist.txt: 61622) -.phncdn.com/www-static/js/vmobile/phub\.js -# @@||phncdn.com/www-static/js/vmobile/photo.js$script (easylistchina+easylist.txt: 61621) -.phncdn.com/www-static/js/vmobile/photo\.js -# @@||phncdn.com/www-static/js/vmobile/notifications.js$script (easylistchina+easylist.txt: 61620) -.phncdn.com/www-static/js/vmobile/notifications\.js -# @@||phncdn.com/www-static/js/vmobile/login.js$script (easylistchina+easylist.txt: 61619) -.phncdn.com/www-static/js/vmobile/login\.js -# @@||phncdn.com/www-static/js/vmobile/html5-canvas.js$script (easylistchina+easylist.txt: 61618) -.phncdn.com/www-static/js/vmobile/html5-canvas\.js -# @@||phncdn.com/www-static/js/vmobile/head.js$script (easylistchina+easylist.txt: 61617) -.phncdn.com/www-static/js/vmobile/head\.js -# @@||phncdn.com/www-static/js/vmobile/footer.js$script (easylistchina+easylist.txt: 61616) -.phncdn.com/www-static/js/vmobile/footer\.js -# @@||phncdn.com/www-static/js/vmobile/feed-comments.js$script (easylistchina+easylist.txt: 61615) -.phncdn.com/www-static/js/vmobile/feed-comments\.js -# @@||phncdn.com/www-static/js/vmobile/comments.js$script (easylistchina+easylist.txt: 61614) -.phncdn.com/www-static/js/vmobile/comments\.js -# @@||phncdn.com/www-static/js/vmobile/autocomplete-$script (easylistchina+easylist.txt: 61613) -.phncdn.com/www-static/js/vmobile/autocomplete- -# @@||phncdn.com/www-static/js/vmobile/application.js$script (easylistchina+easylist.txt: 61612) -.phncdn.com/www-static/js/vmobile/application\.js -# @@||phncdn.com/www-static/js/vmobile/album.js$script (easylistchina+easylist.txt: 61611) -.phncdn.com/www-static/js/vmobile/album\.js -# @@||phncdn.com/www-static/js/video-$script (easylistchina+easylist.txt: 61610) -.phncdn.com/www-static/js/video- -# @@||phncdn.com/www-static/js/tag-$script (easylistchina+easylist.txt: 61609) -.phncdn.com/www-static/js/tag- -# @@||phncdn.com/www-static/js/suggest-$script (easylistchina+easylist.txt: 61608) -.phncdn.com/www-static/js/suggest- -# @@||phncdn.com/www-static/js/signin.js$script (easylistchina+easylist.txt: 61607) -.phncdn.com/www-static/js/signin\.js -# @@||phncdn.com/www-static/js/show_image.js?$script (easylistchina+easylist.txt: 61606) -.phncdn.com/www-static/js/show_image\.js\? -# @@||phncdn.com/www-static/js/quality-$script (easylistchina+easylist.txt: 61605) -.phncdn.com/www-static/js/quality- -# @@||phncdn.com/www-static/js/promo-banner.js$script (easylistchina+easylist.txt: 61604) -.phncdn.com/www-static/js/promo-banner\.js -# @@||phncdn.com/www-static/js/profile/$script (easylistchina+easylist.txt: 61603) -.phncdn.com/www-static/js/profile/ -# @@||phncdn.com/www-static/js/premium/$script (easylistchina+easylist.txt: 61602) -.phncdn.com/www-static/js/premium/ -# @@||phncdn.com/www-static/js/pornstars.js?$script (easylistchina+easylist.txt: 61601) -.phncdn.com/www-static/js/pornstars\.js\? -# @@||phncdn.com/www-static/js/playlist/$script (easylistchina+easylist.txt: 61600) -.phncdn.com/www-static/js/playlist/ -# @@||phncdn.com/www-static/js/phub.$script (easylistchina+easylist.txt: 61599) -.phncdn.com/www-static/js/phub\. -# @@||phncdn.com/www-static/js/ph-networkbar.js$script (easylistchina+easylist.txt: 61598) -.phncdn.com/www-static/js/ph-networkbar\.js -# @@||phncdn.com/www-static/js/ph-footer.js$script (easylistchina+easylist.txt: 61597) -.phncdn.com/www-static/js/ph-footer\.js -# @@||phncdn.com/www-static/js/mg_flipbook-$script (easylistchina+easylist.txt: 61596) -.phncdn.com/www-static/js/mg_flipbook- -# @@||phncdn.com/www-static/js/mg-utils.js$script (easylistchina+easylist.txt: 61595) -.phncdn.com/www-static/js/mg-utils\.js -# @@||phncdn.com/www-static/js/mg-modal.js$script (easylistchina+easylist.txt: 61594) -.phncdn.com/www-static/js/mg-modal\.js -# @@||phncdn.com/www-static/js/lib/$script (easylistchina+easylist.txt: 61593) -.phncdn.com/www-static/js/lib/ -# @@||phncdn.com/www-static/js/html5Player/$script (easylistchina+easylist.txt: 61592) -.phncdn.com/www-static/js/html5Player/ -# @@||phncdn.com/www-static/js/header.js$script (easylistchina+easylist.txt: 61591) -.phncdn.com/www-static/js/header\.js -# @@||phncdn.com/www-static/js/header-menu.js?$script (easylistchina+easylist.txt: 61590) -.phncdn.com/www-static/js/header-menu\.js\? -# @@||phncdn.com/www-static/js/gif-$script (easylistchina+easylist.txt: 61589) -.phncdn.com/www-static/js/gif- -# @@||phncdn.com/www-static/js/front-login.js$script (easylistchina+easylist.txt: 61588) -.phncdn.com/www-static/js/front-login\.js -# @@||phncdn.com/www-static/js/front-index.js?$script (easylistchina+easylist.txt: 61587) -.phncdn.com/www-static/js/front-index\.js\? -# @@||phncdn.com/www-static/js/footer.js$script (easylistchina+easylist.txt: 61586) -.phncdn.com/www-static/js/footer\.js -# @@||phncdn.com/www-static/js/create-account.js?$script (easylistchina+easylist.txt: 61585) -.phncdn.com/www-static/js/create-account\.js\? -# @@||phncdn.com/www-static/*/widgets-$script (easylistchina+easylist.txt: 61584) -.phncdn.com/www-static/.*/widgets- -# @@||phncdn.com/www-static/*/jquery.$script (easylistchina+easylist.txt: 61583) -.phncdn.com/www-static/.*/jquery\. -# @@||phncdn.com/www-static/*/gif-view.js$script (easylistchina+easylist.txt: 61582) -.phncdn.com/www-static/.*/gif-view\.js -# @@||phncdn.com/www-static/*/gif-view-functions.js$script (easylistchina+easylist.txt: 61581) -.phncdn.com/www-static/.*/gif-view-functions\.js -# @@||phncdn.com/www-static/*/autocomplete.$script (easylistchina+easylist.txt: 61580) -.phncdn.com/www-static/.*/autocomplete\. -# @@||phncdn.com/underscore-$script (easylistchina+easylist.txt: 61579) -.phncdn.com/underscore- -# @@||phncdn.com/tubes-$script (easylistchina+easylist.txt: 61578) -.phncdn.com/tubes- -# @@||phncdn.com/timings-$script (easylistchina+easylist.txt: 61577) -.phncdn.com/timings- -# @@||phncdn.com/swfobject-$script (easylistchina+easylist.txt: 61576) -.phncdn.com/swfobject- -# @@||phncdn.com/pagespeed.js$script (easylistchina+easylist.txt: 61575) -.phncdn.com/pagespeed\.js -# @@||phncdn.com/networkbar-$script (easylistchina+easylist.txt: 61574) -.phncdn.com/networkbar- -# @@||phncdn.com/modernizr-$script (easylistchina+easylist.txt: 61573) -.phncdn.com/modernizr- -# @@||phncdn.com/js/xp_bubble/$script (easylistchina+easylist.txt: 61572) -.phncdn.com/js/xp_bubble/ -# @@||phncdn.com/js/votingSystem/$script (easylistchina+easylist.txt: 61571) -.phncdn.com/js/votingSystem/ -# @@||phncdn.com/js/videos_setUp-min.js?$script (easylistchina+easylist.txt: 61570) -.phncdn.com/js/videos_setUp-min\.js\? -# @@||phncdn.com/js/videoPlayer/$script (easylistchina+easylist.txt: 61569) -.phncdn.com/js/videoPlayer/ -# @@||phncdn.com/js/videoDetection.js?$script (easylistchina+easylist.txt: 61568) -.phncdn.com/js/videoDetection\.js\? -# @@||phncdn.com/js/video_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61567) -.phncdn.com/js/video_setUp_tablet-min\.js -# @@||phncdn.com/js/video_setUp-min.js$script (easylistchina+easylist.txt: 61566) -.phncdn.com/js/video_setUp-min\.js -# @@||phncdn.com/js/userVideos_setUp-min.js?$script (easylistchina+easylist.txt: 61565) -.phncdn.com/js/userVideos_setUp-min\.js\? -# @@||phncdn.com/js/userSettings_setUp-min.js?$script (easylistchina+easylist.txt: 61564) -.phncdn.com/js/userSettings_setUp-min\.js\? -# @@||phncdn.com/js/userMiniProfile/$script (easylistchina+easylist.txt: 61563) -.phncdn.com/js/userMiniProfile/ -# @@||phncdn.com/js/userInc-min.js$script (easylistchina+easylist.txt: 61562) -.phncdn.com/js/userInc-min\.js -# @@||phncdn.com/js/userFollowing_setUp-min.js?$script (easylistchina+easylist.txt: 61561) -.phncdn.com/js/userFollowing_setUp-min\.js\? -# @@||phncdn.com/js/userFollowers_setUp-min.js?$script (easylistchina+easylist.txt: 61560) -.phncdn.com/js/userFollowers_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites_setUp-min.js?$script (easylistchina+easylist.txt: 61559) -.phncdn.com/js/userFavorites_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites-$script (easylistchina+easylist.txt: 61558) -.phncdn.com/js/userFavorites- -# @@||phncdn.com/js/userDashboard_setUp-min.js?$script (easylistchina+easylist.txt: 61557) -.phncdn.com/js/userDashboard_setUp-min\.js\? -# @@||phncdn.com/js/userComments_setUp-min.js?$script (easylistchina+easylist.txt: 61556) -.phncdn.com/js/userComments_setUp-min\.js\? -# @@||phncdn.com/js/userComments-min.js$script (easylistchina+easylist.txt: 61555) -.phncdn.com/js/userComments-min\.js -# @@||phncdn.com/js/userAchievements_setUp-min.js?$script (easylistchina+easylist.txt: 61554) -.phncdn.com/js/userAchievements_setUp-min\.js\? -# @@||phncdn.com/js/user_post_comment_form/$script (easylistchina+easylist.txt: 61553) -.phncdn.com/js/user_post_comment_form/ -# @@||phncdn.com/js/user_favorites/$script (easylistchina+easylist.txt: 61552) -.phncdn.com/js/user_favorites/ -# @@||phncdn.com/js/user_dashboard/$script (easylistchina+easylist.txt: 61551) -.phncdn.com/js/user_dashboard/ -# @@||phncdn.com/js/user_comments/$script (easylistchina+easylist.txt: 61550) -.phncdn.com/js/user_comments/ -# @@||phncdn.com/js/uploaded_video_thumbnail_select/$script (easylistchina+easylist.txt: 61549) -.phncdn.com/js/uploaded_video_thumbnail_select/ -# @@||phncdn.com/js/underPlayer/$script (easylistchina+easylist.txt: 61548) -.phncdn.com/js/underPlayer/ -# @@||phncdn.com/js/translatorWatchPageController-min.js$script (easylistchina+easylist.txt: 61547) -.phncdn.com/js/translatorWatchPageController-min\.js -# @@||phncdn.com/js/translator/$script (easylistchina+easylist.txt: 61546) -.phncdn.com/js/translator/ -# @@||phncdn.com/js/translator-min.js$script (easylistchina+easylist.txt: 61545) -.phncdn.com/js/translator-min\.js -# @@||phncdn.com/js/tagStar/$script (easylistchina+easylist.txt: 61544) -.phncdn.com/js/tagStar/ -# @@||phncdn.com/js/site-main.$script (easylistchina+easylist.txt: 61543) -.phncdn.com/js/site-main\. -# @@||phncdn.com/js/signin-min.js$script (easylistchina+easylist.txt: 61542) -.phncdn.com/js/signin-min\.js -# @@||phncdn.com/js/showMenu/$script (easylistchina+easylist.txt: 61541) -.phncdn.com/js/showMenu/ -# @@||phncdn.com/js/share_video_block/$script (easylistchina+easylist.txt: 61540) -.phncdn.com/js/share_video_block/ -# @@||phncdn.com/js/segment_changer/$script (easylistchina+easylist.txt: 61539) -.phncdn.com/js/segment_changer/ -# @@||phncdn.com/js/searchbar_show/$script (easylistchina+easylist.txt: 61538) -.phncdn.com/js/searchbar_show/ -# @@||phncdn.com/js/searchbar/$script (easylistchina+easylist.txt: 61537) -.phncdn.com/js/searchbar/ -# @@||phncdn.com/js/search_setUp-min.js$script (easylistchina+easylist.txt: 61536) -.phncdn.com/js/search_setUp-min\.js -# @@||phncdn.com/js/report_video_form/$script (easylistchina+easylist.txt: 61535) -.phncdn.com/js/report_video_form/ -# @@||phncdn.com/js/relatedVideos/$script (easylistchina+easylist.txt: 61534) -.phncdn.com/js/relatedVideos/ -# @@||phncdn.com/js/popUnder/exclusions-min.js$script (easylistchina+easylist.txt: 61533) -.phncdn.com/js/popUnder/exclusions-min\.js -# @@||phncdn.com/js/ourfriends-min.js$script (easylistchina+easylist.txt: 61532) -.phncdn.com/js/ourfriends-min\.js -# @@||phncdn.com/js/nextBtn/$script (easylistchina+easylist.txt: 61531) -.phncdn.com/js/nextBtn/ -# @@||phncdn.com/js/needLogin/$script (easylistchina+easylist.txt: 61530) -.phncdn.com/js/needLogin/ -# @@||phncdn.com/js/mg_modal/$script (easylistchina+easylist.txt: 61529) -.phncdn.com/js/mg_modal/ -# @@||phncdn.com/js/menu_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61528) -.phncdn.com/js/menu_setUp_tablet-min\.js -# @@||phncdn.com/js/m_tubes/MG_autocomplete.js$script (easylistchina+easylist.txt: 61527) -.phncdn.com/js/m_tubes/MG_autocomplete\.js -# @@||phncdn.com/js/login_form/$script (easylistchina+easylist.txt: 61526) -.phncdn.com/js/login_form/ -# @@||phncdn.com/js/libs/ProfileCommentsAction-min.js$script (easylistchina+easylist.txt: 61525) -.phncdn.com/js/libs/ProfileCommentsAction-min\.js -# @@||phncdn.com/js/levelUp/$script (easylistchina+easylist.txt: 61524) -.phncdn.com/js/levelUp/ -# @@||phncdn.com/js/language_$script (easylistchina+easylist.txt: 61523) -.phncdn.com/js/language_ -# @@||phncdn.com/js/karmaInfo/$script (easylistchina+easylist.txt: 61522) -.phncdn.com/js/karmaInfo/ -# @@||phncdn.com/js/jquery.$script (easylistchina+easylist.txt: 61521) -.phncdn.com/js/jquery\. -# @@||phncdn.com/js/jqbrowser-compressed.js$script (easylistchina+easylist.txt: 61520) -.phncdn.com/js/jqbrowser-compressed\.js -# @@||phncdn.com/js/is_online/$script (easylistchina+easylist.txt: 61519) -.phncdn.com/js/is_online/ -# @@||phncdn.com/js/ipad/$script (easylistchina+easylist.txt: 61518) -.phncdn.com/js/ipad/ -# @@||phncdn.com/js/infinite.$script (easylistchina+easylist.txt: 61517) -.phncdn.com/js/infinite\. -# @@||phncdn.com/js/html5player.js?$script (easylistchina+easylist.txt: 61516) -.phncdn.com/js/html5player\.js\? -# @@||phncdn.com/js/home_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61515) -.phncdn.com/js/home_setUp_tablet-min\.js -# @@||phncdn.com/js/home_setUp-min.js$script (easylistchina+easylist.txt: 61514) -.phncdn.com/js/home_setUp-min\.js -# @@||phncdn.com/js/general_tablet-min.js$script (easylistchina+easylist.txt: 61513) -.phncdn.com/js/general_tablet-min\.js -# @@||phncdn.com/js/general-min.js$script (easylistchina+easylist.txt: 61512) -.phncdn.com/js/general-min\.js -# @@||phncdn.com/js/follow_button/$script (easylistchina+easylist.txt: 61511) -.phncdn.com/js/follow_button/ -# @@||phncdn.com/js/flipbook/$script (easylistchina+easylist.txt: 61510) -.phncdn.com/js/flipbook/ -# @@||phncdn.com/js/filters_menu/$script (easylistchina+easylist.txt: 61509) -.phncdn.com/js/filters_menu/ -# @@||phncdn.com/js/fav_like_user_feed/$script (easylistchina+easylist.txt: 61508) -.phncdn.com/js/fav_like_user_feed/ -# @@||phncdn.com/js/et.ready.$script (easylistchina+easylist.txt: 61507) -.phncdn.com/js/et\.ready\. -# @@||phncdn.com/js/editUserDropDown/$script (easylistchina+easylist.txt: 61506) -.phncdn.com/js/editUserDropDown/ -# @@||phncdn.com/js/deleteVideo/$script (easylistchina+easylist.txt: 61505) -.phncdn.com/js/deleteVideo/ -# @@||phncdn.com/js/deleteComment/$script (easylistchina+easylist.txt: 61504) -.phncdn.com/js/deleteComment/ -# @@||phncdn.com/js/cover_tutorial/$script (easylistchina+easylist.txt: 61503) -.phncdn.com/js/cover_tutorial/ -# @@||phncdn.com/js/common_jq-min.js$script (easylistchina+easylist.txt: 61502) -.phncdn.com/js/common_jq-min\.js -# @@||phncdn.com/js/comments/$script (easylistchina+easylist.txt: 61501) -.phncdn.com/js/comments/ -# @@||phncdn.com/js/categorylist_setUp-min.js?$script (easylistchina+easylist.txt: 61500) -.phncdn.com/js/categorylist_setUp-min\.js\? -# @@||phncdn.com/js/carousellite.$script (easylistchina+easylist.txt: 61499) -.phncdn.com/js/carousellite\. -# @@||phncdn.com/js/browser-$script (easylistchina+easylist.txt: 61498) -.phncdn.com/js/browser- -# @@||phncdn.com/js/badgeSelector/$script (easylistchina+easylist.txt: 61497) -.phncdn.com/js/badgeSelector/ -# @@||phncdn.com/js/avatar_$script (easylistchina+easylist.txt: 61496) -.phncdn.com/js/avatar_ -# @@||phncdn.com/js/ad_form_header/ad_form_header-min.js?$script (easylistchina+easylist.txt: 61495) -.phncdn.com/js/ad_form_header/ad_form_header-min\.js\? -# @@||phncdn.com/js/achievement-$script (easylistchina+easylist.txt: 61494) -.phncdn.com/js/achievement- -# @@||phncdn.com/js/*_disclaimer/*_disclaimer_controller-min.js?$script (easylistchina+easylist.txt: 61493) -.phncdn.com/js/.*_disclaimer/.*_disclaimer_controller-min\.js\? -# @@||phncdn.com/js/*_disclaimer/*_disclaimer-min.js?$script (easylistchina+easylist.txt: 61492) -.phncdn.com/js/.*_disclaimer/.*_disclaimer-min\.js\? -# @@||phncdn.com/jquery/$script (easylistchina+easylist.txt: 61491) -.phncdn.com/jquery/ -# @@||phncdn.com/jquery-$script (easylistchina+easylist.txt: 61490) -.phncdn.com/jquery- -# @@||phncdn.com/html5shiv-$script (easylistchina+easylist.txt: 61489) -.phncdn.com/html5shiv- -# @@||phncdn.com/html5player/$script (easylistchina+easylist.txt: 61488) -.phncdn.com/html5player/ -# @@||phncdn.com/head/$script (easylistchina+easylist.txt: 61487) -.phncdn.com/head/ -# @@||phncdn.com/cb/bundles/$script (easylistchina+easylist.txt: 61486) -.phncdn.com/cb/bundles/ -# @@||phncdn.com/cb/assets/$script (easylistchina+easylist.txt: 61485) -.phncdn.com/cb/assets/ -# @@||google.com/recaptcha/$image (easylistchina+easylist.txt: 61482) -.google.com/recaptcha/ -# @@||blog.tube8.com/wp-content/$image,script (easylistchina+easylist.txt: 61476) -.blog.tube8.com/wp-content/ -# @@||xxxporntalk.com/images/xxxpt-chrome.jpg (easylistchina+easylist.txt: 61470) -.xxxporntalk.com/images/xxxpt-chrome\.jpg -# @@||xhcdn.com/images/flag/AD.gif (easylistchina+easylist.txt: 61469) -.xhcdn.com/images/flag/AD\.gif -# @@||tracking.hornymatches.com/track?type=unsubscribe&enid=$subdocument,third-party (easylistchina+easylist.txt: 61466) -.tracking.hornymatches.com/track\?type=unsubscribe&enid= -# @@||tnaflix.com/ad/$object-subrequest (easylistchina+easylist.txt: 61465) -.tnaflix.com/ad/ -# @@||tjoob.com/go.php?ad=$script,~third-party (easylistchina+easylist.txt: 61464) -.tjoob.com/go\.php\?ad= -# @@||sundaysportclassifieds.co.uk/ads/$image,~third-party (easylistchina+easylist.txt: 61461) -.sundaysportclassifieds.co.uk/ads/ -# @@||store.adam4adam.com/images/affbanners/$~third-party (easylistchina+easylist.txt: 61460) -.store.adam4adam.com/images/affbanners/ -# @@||store.adam4adam.com/affimages/$~third-party (easylistchina+easylist.txt: 61459) -.store.adam4adam.com/affimages/ -# @@||starcelebs.com/logos/logo10.jpg (easylistchina+easylist.txt: 61458) -.starcelebs.com/logos/logo10\.jpg -# @@||skimtube.com/advertisements.php? (easylistchina+easylist.txt: 61457) -.skimtube.com/advertisements\.php\? -# @@||sextoyfun.com/control/aff_banners/$~third-party (easylistchina+easylist.txt: 61456) -.sextoyfun.com/control/aff_banners/ -# @@||sextoyfun.com/admin/aff_files/BannerManager/$~third-party (easylistchina+easylist.txt: 61455) -.sextoyfun.com/admin/aff_files/BannerManager/ -# @@||pornteengirl.com/temporaire/image.php?*/virtuagirl/$image (easylistchina+easylist.txt: 61453) -.pornteengirl.com/temporaire/image\.php\?.*/virtuagirl/ -# @@||panicporn.com/Bannerads/player/player_flv_multi.swf$object (easylistchina+easylist.txt: 61451) -.panicporn.com/Bannerads/player/player_flv_multi\.swf -# @@||nonktube.com/img/adyea.jpg (easylistchina+easylist.txt: 61450) -.nonktube.com/img/adyea\.jpg -# @@||mrstiff.com/view/textad/$xmlhttprequest (easylistchina+easylist.txt: 61449) -.mrstiff.com/view/textad/ -# @@||manhuntshop.com/images/affbanners/$~third-party (easylistchina+easylist.txt: 61448) -.manhuntshop.com/images/affbanners/ -# @@||manhuntshop.com/affimages/$~third-party (easylistchina+easylist.txt: 61447) -.manhuntshop.com/affimages/ -# @@||kuntfutube.com/go.php?ad= (easylistchina+easylist.txt: 61445) -.kuntfutube.com/go\.php\?ad= -# @@||hostedadsp.realitykings.com/hosted/flash/rk_player_1.5_300x250.swf$object (easylistchina+easylist.txt: 61443) -.hostedadsp.realitykings.com/hosted/flash/rk_player_1\.5_300x250\.swf -# @@||graphics.pop6.com/javascript/live_cd/$script (easylistchina+easylist.txt: 61441) -.graphics.pop6.com/javascript/live_cd/ -# @@||graphics.pop6.com/javascript/live/$script (easylistchina+easylist.txt: 61440) -.graphics.pop6.com/javascript/live/ -# @@||gaynetwork.co.uk/Images/ads/bg/$image,~third-party (easylistchina+easylist.txt: 61438) -.gaynetwork.co.uk/Images/ads/bg/ -# @@||fucktube.com/work/videoad.php? (easylistchina+easylist.txt: 61437) -.fucktube.com/work/videoad\.php\? -# @@||eskimotube.com/advertisements.php?$script (easylistchina+easylist.txt: 61436) -.eskimotube.com/advertisements\.php\? -# @@||cam4.*/ads/directory/$xmlhttprequest (easylistchina+easylist.txt: 61434) -.cam4.*./(.*/)?ads/directory/ -# @@||burningcamel.com/ads/banner.jpg (easylistchina+easylist.txt: 61433) -.burningcamel.com/ads/banner\.jpg -# @@||boyzshop.com/images/affbanners/$image,~third-party (easylistchina+easylist.txt: 61432) -.boyzshop.com/images/affbanners/ -# @@||boyzshop.com/affimages/$~third-party (easylistchina+easylist.txt: 61431) -.boyzshop.com/affimages/ -# @@||ads.ultimatesurrender.com^$image,~third-party (easylistchina+easylist.txt: 61428) -.ads.ultimatesurrender.com -# @@||ads.fuckingmachines.com^$image,~third-party (easylistchina+easylist.txt: 61427) -.ads.fuckingmachines.com -# @@||ad.thisav.com/player/jw.swf (easylistchina+easylist.txt: 61426) -.ad.thisav.com/player/jw\.swf -# @@||ad.thisav.com/player/config.xml$object-subrequest (easylistchina+easylist.txt: 61425) -.ad.thisav.com/player/config\.xml -# @@||gsmarena.com/adclick.php?bannerid=$popup (easylistchina+easylist.txt: 61413) -.gsmarena.com/adclick\.php\?bannerid= -# @@||adv.blogupp.com^$popup (easylistchina+easylist.txt: 61403) -.adv.blogupp.com -# @@||ads.twitter.com^$popup,~third-party (easylistchina+easylist.txt: 61400) -.ads.twitter.com -# @@||ads.pinterest.com^$popup,~third-party (easylistchina+easylist.txt: 61397) -.ads.pinterest.com -# @@||zorza-polarna.pl/environment/cache/images/300_250_ (easylistchina+easylist.txt: 61391) -.zorza-polarna.pl/environment/cache/images/300_250_ -# @@||weatherbug.com/style/stickers/*_728x90.css (easylistchina+easylist.txt: 61389) -.weatherbug.com/style/stickers/.*_728x90\.css -# @@||weatherbug.com/images/stickers/*/728x90/ (easylistchina+easylist.txt: 61388) -.weatherbug.com/images/stickers/.*/728x90/ -# @@||weatherbug.com/desktop-weather/*=728x90& (easylistchina+easylist.txt: 61387) -.weatherbug.com/desktop-weather/.*=728x90& -# @@||weather.craven.net.au/weather/products/300x250.asp?$image (easylistchina+easylist.txt: 61386) -.weather.craven.net.au/weather/products/300x250\.asp\? -# @@||w3easy.org/templates/*_120x60_ (easylistchina+easylist.txt: 61385) -.w3easy.org/templates/.*_120x60_ -# @@||w3easy.org/templates/*_120x60. (easylistchina+easylist.txt: 61384) -.w3easy.org/templates/.*_120x60\. -# @@||vortex.accuweather.com^*_300x250_bg.jpg (easylistchina+easylist.txt: 61383) -.vortex.accuweather.com/.*_300x250_bg\.jpg -# @@||vortex.accuweather.com^*_160x600_bg.jpg (easylistchina+easylist.txt: 61382) -.vortex.accuweather.com/.*_160x600_bg\.jpg -# @@||vortex.accuweather.com^*_120x60_bg.jpg (easylistchina+easylist.txt: 61381) -.vortex.accuweather.com/.*_120x60_bg\.jpg -# @@||viamichelin.*&size=728x90,$subdocument (easylistchina+easylist.txt: 61380) -.viamichelin.*./.*&size=728x90, -# @@||usopen.org/images/pics/misc/*.300x250.jpg (easylistchina+easylist.txt: 61379) -.usopen.org/images/pics/misc/.*\.300x250\.jpg -# @@||usanetwork.com/sites/usanetwork/*300x250 (easylistchina+easylist.txt: 61378) -.usanetwork.com/sites/usanetwork/.*300x250 -# @@||union.edu/media/galleryPics/400x250/$~third-party (easylistchina+easylist.txt: 61377) -.union.edu/media/galleryPics/400x250/ -# @@||turner.com/v5cache/TCM/Images/*_120x60_ (easylistchina+easylist.txt: 61375) -.turner.com/v5cache/TCM/Images/.*_120x60_ -# @@||turner.com/v5cache/TCM/images/*_120x60. (easylistchina+easylist.txt: 61374) -.turner.com/v5cache/TCM/images/.*_120x60\. -# @@||tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/*_120_60.jpg (easylistchina+easylist.txt: 61373) -.tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/.*_120_60\.jpg -# @@||techpakistani.com/wp-content/uploads/*-300x100.$image (easylistchina+easylist.txt: 61372) -.techpakistani.com/wp-content/uploads/.*-300x100\. -# @@||swansuk.co.uk^*/300x250/$image,~third-party (easylistchina+easylist.txt: 61370) -.swansuk.co.uk/.*/300x250/ -# @@||stickam.com/wb/www/category/300x250/$image (easylistchina+easylist.txt: 61369) -.stickam.com/wb/www/category/300x250/ -# @@||static-origin.openedition.org^*-120x240.jpg (easylistchina+easylist.txt: 61368) -.static-origin.openedition.org/.*-120x240\.jpg -# @@||russia-direct.org/custom_ajax/widget?*=300x250&$script (easylistchina+easylist.txt: 61367) -.russia-direct.org/custom_ajax/widget\?.*=300x250& -# @@||roofandfloor.com/listing_$image,~third-party (easylistchina+easylist.txt: 61366) -.roofandfloor.com/listing_ -# @@||rehabs.com^*/xicons_social_sprite_400x60.png (easylistchina+easylist.txt: 61365) -.rehabs.com/.*/xicons_social_sprite_400x60\.png -# @@||quisqualis.com/QBanner_760x100.jpg (easylistchina+easylist.txt: 61363) -.quisqualis.com/QBanner_760x100\.jpg -# @@||opposingviews.com^*/300x250/ (easylistchina+easylist.txt: 61361) -.opposingviews.com/.*/300x250/ -# @@||onescreen.net/os/static/widgets/*300x250 (easylistchina+easylist.txt: 61360) -.onescreen.net/os/static/widgets/.*300x250 -# @@||nationalgeographic.com/exposure/content/*300x250 (easylistchina+easylist.txt: 61359) -.nationalgeographic.com/exposure/content/.*300x250 -# @@||mxtoolbox.com/Public/images/banners/Mx-Pro-160x600.jpg (easylistchina+easylist.txt: 61358) -.mxtoolbox.com/Public/images/banners/Mx-Pro-160x600\.jpg -# @@||msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/$image (easylistchina+easylist.txt: 61357) -.msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/ -# @@||motherboard.tv/content-images/*_120x60. (easylistchina+easylist.txt: 61355) -.motherboard.tv/content-images/.*_120x60\. -# @@||metrics.target.com/b/ss/*_300x250_$image (easylistchina+easylist.txt: 61353) -.metrics.target.com/b/ss/.*_300x250_ -# @@||marketing.beatport.com.s3.amazonaws.com^*/728x90_ (easylistchina+easylist.txt: 61352) -.marketing.beatport.com.s3.amazonaws.com/.*/728x90_ -# @@||maps.googleapis.com/maps/api/*=300x250& (easylistchina+easylist.txt: 61351) -.maps.googleapis.com/maps/api/.*=300x250& -# @@||maps.google.*/staticmap*^size=300x250^$image (easylistchina+easylist.txt: 61350) -.maps.google.*./(.*/)?staticmap.*[^\w%.-]size=300x250[^\w%.-] -# @@||la-finca-distribution.de/wp-content/uploads/*-120x240.$image (easylistchina+easylist.txt: 61349) -.la-finca-distribution.de/wp-content/uploads/.*-120x240\. -# @@||komikslandia.pl/environment/cache/images/300_250_ (easylistchina+easylist.txt: 61348) -.komikslandia.pl/environment/cache/images/300_250_ -# @@||imperialwonderservices.ie/images/banner/*-468x60.$~third-party (easylistchina+easylist.txt: 61347) -.imperialwonderservices.ie/images/banner/.*-468x60\. -# @@||imdb.com/images/*doubleclick/*320x240 (easylistchina+easylist.txt: 61346) -.imdb.com/images/.*doubleclick/.*320x240 -# @@||imdb.com/images/*doubleclick/*300x250 (easylistchina+easylist.txt: 61345) -.imdb.com/images/.*doubleclick/.*300x250 -# @@||imawow.weather.com/web/wow/$image (easylistchina+easylist.txt: 61344) -.imawow.weather.com/web/wow/ -# @@||images.outbrain.com/imageserver/*-120x60.$image (easylistchina+easylist.txt: 61343) -.images.outbrain.com/imageserver/.*-120x60\. -# @@||hortifor.com/images/*120x60$~third-party (easylistchina+easylist.txt: 61339) -.hortifor.com/images/.*120x60 -# @@||heathceramics.com/media/300x250/$image,~third-party (easylistchina+easylist.txt: 61338) -.heathceramics.com/media/300x250/ -# @@||harpers.co.uk/pictures/300x250/ (easylistchina+easylist.txt: 61337) -.harpers.co.uk/pictures/300x250/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?*=300x250& (easylistchina+easylist.txt: 61336) -.google.com/uds/modules/elements/newsshow/iframe\.html\?.*=300x250& -# @@||freetvhub.com/ad1_300x250.html (easylistchina+easylist.txt: 61335) -.freetvhub.com/ad1_300x250\.html -# @@||framestr.com^*/300x250/$image,~third-party (easylistchina+easylist.txt: 61334) -.framestr.com/.*/300x250/ -# @@||firestormgames.co.uk/image/*-120x60. (easylistchina+easylist.txt: 61332) -.firestormgames.co.uk/image/.*-120x60\. -# @@||findafranchise.com/_img/*_120x60.$image (easylistchina+easylist.txt: 61331) -.findafranchise.com/_img/.*_120x60\. -# @@||film.com/plugins/*-300x250 (easylistchina+easylist.txt: 61330) -.film.com/plugins/.*-300x250 -# @@||efvi.eu/badge/*-120x60.png (easylistchina+easylist.txt: 61328) -.efvi.eu/badge/.*-120x60\.png -# @@||educationpost.com.hk^*/300x250/$image (easylistchina+easylist.txt: 61327) -.educationpost.com.hk/.*/300x250/ -# @@||disney.com.au/global/swf/banner160x600.swf (easylistchina+easylist.txt: 61326) -.disney.com.au/global/swf/banner160x600\.swf -# @@||disney.com.au/global/swf/*728x90.swf (easylistchina+easylist.txt: 61325) -.disney.com.au/global/swf/.*728x90\.swf -# @@||discovery.com^*/ratio-size/pixel-ratio/300x250.png (easylistchina+easylist.txt: 61324) -.discovery.com/.*/ratio-size/pixel-ratio/300x250\.png -# @@||dawn.com/wp-content/uploads/*_300x250.jpg (easylistchina+easylist.txt: 61323) -.dawn.com/wp-content/uploads/.*_300x250\.jpg -# @@||cubeecraft.com/images/home/features/300x250/$image,~third-party (easylistchina+easylist.txt: 61322) -.cubeecraft.com/images/home/features/300x250/ -# @@||crowdignite.com/img/upload/*300x250 (easylistchina+easylist.txt: 61321) -.crowdignite.com/img/upload/.*300x250 -# @@||consumerist-com.wpengine.netdna-cdn.com/assets/*300x250 (easylistchina+easylist.txt: 61320) -.consumerist-com.wpengine.netdna-cdn.com/assets/.*300x250 -# @@||cinemanow.com/images/banners/300x250/ (easylistchina+easylist.txt: 61319) -.cinemanow.com/images/banners/300x250/ -# @@||canada.com/news/*-300-250.gif (easylistchina+easylist.txt: 61318) -.canada.com/news/.*-300-250\.gif -# @@||bizquest.com^*_img/_franchise/*_120x60.$image (easylistchina+easylist.txt: 61317) -.bizquest.com/.*_img/_franchise/.*_120x60\. -# @@||bettermarks.com/media$~third-party (easylistchina+easylist.txt: 61316) -.bettermarks.com/media -# @@||assets2.plinxmedia.net^*_300x250. (easylistchina+easylist.txt: 61315) -.assets2.plinxmedia.net/.*_300x250\. -# @@||assets1.plinxmedia.net^*_300x250. (easylistchina+easylist.txt: 61314) -.assets1.plinxmedia.net/.*_300x250\. -# @@||assets.vice.com^*_120x60.jpg (easylistchina+easylist.txt: 61313) -.assets.vice.com/.*_120x60\.jpg -# @@||artserieshotels.com.au/images/*_460_60. (easylistchina+easylist.txt: 61312) -.artserieshotels.com.au/images/.*_460_60\. -# @@||arnhemland-safaris.com/images/*_480_80_ (easylistchina+easylist.txt: 61311) -.arnhemland-safaris.com/images/.*_480_80_ -# @@||anitasrecipes.com/Content/Images/*160x500$image (easylistchina+easylist.txt: 61310) -.anitasrecipes.com/Content/Images/.*160x500 -# @@||ajax.googleapis.com/ajax/services/search/news?*-728x90&$script (easylistchina+easylist.txt: 61306) -.ajax.googleapis.com/ajax/services/search/news\?.*-728x90& -# @@||adservicemedia.dk/images/$~third-party (easylistchina+easylist.txt: 61294) -.adservicemedia.dk/images/ -# @@||adservice.com/wp-content/themes/adservice/$~third-party (easylistchina+easylist.txt: 61293) -.adservice.com/wp-content/themes/adservice/ -# @@||dailymotion.com/advertise/$xmlhttprequest (easylistchina+easylist.txt: 61285) -.dailymotion.com/advertise/ -# @@||gameloft.com/advertising-$~third-party (easylistchina+easylist.txt: 61282) -.gameloft.com/advertising- -# @@||adsbox.io^$~third-party (easylistchina+easylist.txt: 61280) -.adsbox.io -# @@||revealads.com^$~third-party (easylistchina+easylist.txt: 61278) -.revealads.com -# @@||integralplatform.com/static/js/Advertiser/$~third-party (easylistchina+easylist.txt: 61276) -.integralplatform.com/static/js/Advertiser/ -# @@||ads.acesse.com^$~third-party (easylistchina+easylist.txt: 61274) -.ads.acesse.com -# @@||advertise.ru^$~third-party (easylistchina+easylist.txt: 61271) -.advertise.ru -# @@||ads.stumbleupon.com^$~third-party (easylistchina+easylist.txt: 61269) -.ads.stumbleupon.com -# @@||ads.stumbleupon.com^$popup (easylistchina+easylist.txt: 61268) -.ads.stumbleupon.com -# @@||teliad.*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 61249) -.teliad.*./(.*/)?advertiser/ -# @@||seedingup.*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 61248) -.seedingup.*./(.*/)?advertiser/ -# @@||advertise.mxit.com^$~third-party (easylistchina+easylist.txt: 61241) -.advertise.mxit.com -# @@||vk.com/ads?act=payments&type$script,stylesheet (easylistchina+easylist.txt: 61234) -.vk.com/ads\?act=payments&type -# @@||paymentgate.ru/payment/*_Advert/ (easylistchina+easylist.txt: 61231) -.paymentgate.ru/payment/.*_Advert/ -# @@||advertising.microsoft.com^$~third-party (easylistchina+easylist.txt: 61228) -.advertising.microsoft.com -# @@||advertise.bingads.microsoft.com/wwimages/search/global/$image (easylistchina+easylist.txt: 61227) -.advertise.bingads.microsoft.com/wwimages/search/global/ -# @@||authentication-api.skimlinks.com^ (easylistchina+easylist.txt: 61224) -.authentication-api.skimlinks.com -# @@||api-merchants.skimlinks.com^ (easylistchina+easylist.txt: 61223) -.api-merchants.skimlinks.com -# @@||adhese.com^$~third-party (easylistchina+easylist.txt: 61219) -.adhese.com -# @@||adfox.ru^$~third-party (easylistchina+easylist.txt: 61215) -.adfox.ru -# @@||healthyadvertising.es^$~third-party (easylistchina+easylist.txt: 61213) -.healthyadvertising.es -# @@||fullad.com.br^$~third-party (easylistchina+easylist.txt: 61211) -.fullad.com.br -# @@||dashboard.tovarro.com^$~third-party (easylistchina+easylist.txt: 61209) -.dashboard.tovarro.com -# @@||dashboard.mgid.com^$~third-party (easylistchina+easylist.txt: 61208) -.dashboard.mgid.com -# @@||dashboard.marketgid.com^$~third-party (easylistchina+easylist.txt: 61207) -.dashboard.marketgid.com -# @@||dashboard.lentainform.com^$~third-party (easylistchina+easylist.txt: 61206) -.dashboard.lentainform.com -# @@||dashboard.idealmedia.com^$~third-party (easylistchina+easylist.txt: 61205) -.dashboard.idealmedia.com -# @@||www.advertising.com^$~third-party (easylistchina+easylist.txt: 61200) -.www.advertising.com -# @@||adcenter.mobicow.com^$~third-party (easylistchina+easylist.txt: 61198) -.adcenter.mobicow.com -# @@||www.google.com/images/icons/product/adsense-$image (easylistchina+easylist.txt: 61194) -.www.google.com/images/icons/product/adsense- -# @@||www.google.com/images/icons/feature/adsense_$image (easylistchina+easylist.txt: 61193) -.www.google.com/images/icons/feature/adsense_ -# @@||www.google.com/doubleclick/images/favicon.ico (easylistchina+easylist.txt: 61191) -.www.google.com/doubleclick/images/favicon\.ico -# @@||www.google.*/adwords/$~third-party (easylistchina+easylist.txt: 61185) -.www.google.*./(.*/)?adwords/ -# @@||www.google.*/adsense/$~third-party (easylistchina+easylist.txt: 61184) -.www.google.*./(.*/)?adsense/ -# @@||www.google.*/ads/start/$~third-party (easylistchina+easylist.txt: 61183) -.www.google.*./(.*/)?ads/start/ -# @@||www.google.*/ads/js/$~third-party (easylistchina+easylist.txt: 61182) -.www.google.*./(.*/)?ads/js/ -# @@||www.google.*/ads/images/ (easylistchina+easylist.txt: 61181) -.www.google.*./(.*/)?ads/images/ -# @@||www.google.*/ads/css/$~third-party (easylistchina+easylist.txt: 61180) -.www.google.*./(.*/)?ads/css/ -# @@||www.google.*/ads/*/images/ (easylistchina+easylist.txt: 61179) -.www.google.*./(.*/)?ads/.*/images/ -# @@||www.google.*/adometry/$~third-party (easylistchina+easylist.txt: 61178) -.www.google.*./(.*/)?adometry/ -# @@||www.google.*/adometry.$~third-party (easylistchina+easylist.txt: 61177) -.www.google.*./(.*/)?adometry\. -# @@||support.google.com/adwords/$~third-party (easylistchina+easylist.txt: 61176) -.support.google.com/adwords/ -# @@||support.google.com/adsense/$~third-party (easylistchina+easylist.txt: 61175) -.support.google.com/adsense/ -# @@||google.com/payments/*/adwords.$document,subdocument (easylistchina+easylist.txt: 61170) -.google.com/payments/.*/adwords\. -# @@||google.com/help/hc/images/adwords/$image,~third-party (easylistchina+easylist.txt: 61169) -.google.com/help/hc/images/adwords/ -# @@||accounts.google.com/accounts/adwords/$image,~third-party (easylistchina+easylist.txt: 61162) -.accounts.google.com/accounts/adwords/ -# @@||adwolf.eu^$~third-party (easylistchina+easylist.txt: 61157) -.adwolf.eu -# @@||ziarelive.ro/assets/js/advertisement.js (easylistchina+easylist.txt: 61154) -.ziarelive.ro/assets/js/advertisement\.js -# @@||yapo.cl/js/viewad.js? (easylistchina+easylist.txt: 61152) -.yapo.cl/js/viewad\.js\? -# @@||xe.gr/property/recent_ads?$xmlhttprequest (easylistchina+easylist.txt: 61151) -.xe.gr/property/recent_ads\? -# @@||vinden.se/ads/$~third-party (easylistchina+easylist.txt: 61147) -.vinden.se/ads/ -# @@||videonuz.ensonhaber.com/player/hdflvplayer/xml/ads.xml?$object-subrequest (easylistchina+easylist.txt: 61145) -.videonuz.ensonhaber.com/player/hdflvplayer/xml/ads\.xml\? -# @@||velasridaura.com/modules/*/advertising_custom.$image,~third-party (easylistchina+easylist.txt: 61143) -.velasridaura.com/modules/.*/advertising_custom\. -# @@||vedomosti.ru/assets/vendors/adriver.media-$script (easylistchina+easylist.txt: 61142) -.vedomosti.ru/assets/vendors/adriver\.media- -# @@||varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel.js (easylistchina+easylist.txt: 61141) -.varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel\.js -# @@||uol.com.br/html.ng/*&affiliate=$object-subrequest (easylistchina+easylist.txt: 61140) -.uol.com.br/html\.ng/.*&affiliate= -# @@||tvn.adocean.pl^$object-subrequest (easylistchina+easylist.txt: 61139) -.tvn.adocean.pl -# @@||tv2.dk/mpx/player.php/adtech_$subdocument (easylistchina+easylist.txt: 61138) -.tv2.dk/mpx/player\.php/adtech_ -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.php (easylistchina+easylist.txt: 61137) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.php -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.js (easylistchina+easylist.txt: 61136) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.js -# @@||trrsf.com^*/admanager.js (easylistchina+easylist.txt: 61135) -.trrsf.com/.*/admanager\.js -# @@||trrsf.com.br/playerttv/$xmlhttprequest (easylistchina+easylist.txt: 61133) -.trrsf.com.br/playerttv/ -# @@||tn.com.ar^*/vivo/300/publicidad.html$subdocument (easylistchina+easylist.txt: 61132) -.tn.com.ar/.*/vivo/300/publicidad\.html -# @@||thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend.js (easylistchina+easylist.txt: 61131) -.thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend\.js -# @@||terra.com.br^*/admanager.html$subdocument (easylistchina+easylist.txt: 61130) -.terra.com.br/.*/admanager\.html -# @@||terra.cl^*/admanager.html$subdocument (easylistchina+easylist.txt: 61129) -.terra.cl/.*/admanager\.html -# @@||ta3.com/advert-async-system/$xmlhttprequest (easylistchina+easylist.txt: 61128) -.ta3.com/advert-async-system/ -# @@||submarino.com.br/openx/www/delivery/ (easylistchina+easylist.txt: 61127) -.submarino.com.br/openx/www/delivery/ -# @@||style.seznam.cz/ad/im.js (easylistchina+easylist.txt: 61126) -.style.seznam.cz/ad/im\.js -# @@||start.no/includes/js/adCode.js (easylistchina+easylist.txt: 61123) -.start.no/includes/js/adCode\.js -# @@||start.no/advertpro/servlet/view/text/html/zone?zid=$script (easylistchina+easylist.txt: 61122) -.start.no/advertpro/servlet/view/text/html/zone\?zid= -# @@||soov.ee/js/newad.js (easylistchina+easylist.txt: 61120) -.soov.ee/js/newad\.js -# @@||sms.cz/bannery/$object-subrequest,~third-party (easylistchina+easylist.txt: 61119) -.sms.cz/bannery/ -# @@||smartadserver.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61117) -.smartadserver.com/crossdomain\.xml -# @@||smart.allocine.fr/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61112) -.smart.allocine.fr/crossdomain\.xml -# @@||skai.gr/advert/*.flv$object-subrequest (easylistchina+easylist.txt: 61111) -.skai.gr/advert/.*\.flv -# @@||sigmalive.com/assets/js/jquery.openxtag.js (easylistchina+easylist.txt: 61110) -.sigmalive.com/assets/js/jquery\.openxtag\.js -# @@||segundamano.mx/api/*/ads/$~third-party (easylistchina+easylist.txt: 61109) -.segundamano.mx/api/.*/ads/ -# @@||sanook.com/php/get_ads.php?vast_linear=$xmlhttprequest (easylistchina+easylist.txt: 61106) -.sanook.com/php/get_ads\.php\?vast_linear= -# @@||s-nk.pl/img/ads/icons_pack (easylistchina+easylist.txt: 61104) -.s-nk.pl/img/ads/icons_pack -# @@||run.admost.com/adx/js/admost.js? (easylistchina+easylist.txt: 61103) -.run.admost.com/adx/js/admost\.js\? -# @@||run.admost.com/adx/get.ashx?z=*&accptck=true&nojs=1 (easylistchina+easylist.txt: 61102) -.run.admost.com/adx/get\.ashx\?z=.*&accptck=true&nojs=1 -# @@||rtl.lu/ipljs/adtech_async.js (easylistchina+easylist.txt: 61101) -.rtl.lu/ipljs/adtech_async\.js -# @@||rocking.gr/js/jquery.dfp.min.js (easylistchina+easylist.txt: 61100) -.rocking.gr/js/jquery\.dfp\.min\.js -# @@||ring.bg/adserver/adall.php?*&video_on_page=1 (easylistchina+easylist.txt: 61099) -.ring.bg/adserver/adall\.php\?.*&video_on_page=1 -# @@||rentalsystems.com/advert_price_imbed.asp?$subdocument (easylistchina+easylist.txt: 61098) -.rentalsystems.com/advert_price_imbed\.asp\? -# @@||reklama5.mk^$~third-party (easylistchina+easylist.txt: 61097) -.reklama5.mk -# @@||quebarato.com.br/css/static/ad_search.css (easylistchina+easylist.txt: 61095) -.quebarato.com.br/css/static/ad_search\.css -# @@||quebarato.com.br/css/static/ad_detail.css (easylistchina+easylist.txt: 61094) -.quebarato.com.br/css/static/ad_detail\.css -# @@||ptcliente.pt/App_Themes/Default/Img/ad_$image (easylistchina+easylist.txt: 61093) -.ptcliente.pt/App_Themes/Default/Img/ad_ -# @@||ptchan.net/imagens/banner.php (easylistchina+easylist.txt: 61092) -.ptchan.net/imagens/banner\.php -# @@||psoe.es/Areas/Affiliation/ (easylistchina+easylist.txt: 61091) -.psoe.es/Areas/Affiliation/ -# @@||prohardver.hu/js/common/forms_$script (easylistchina+easylist.txt: 61088) -.prohardver.hu/js/common/forms_ -# @@||polovniautomobili.com/images/ad-$~third-party (easylistchina+easylist.txt: 61087) -.polovniautomobili.com/images/ad- -# @@||player.terra.com^*&adunit=$script (easylistchina+easylist.txt: 61085) -.player.terra.com/.*&adunit= -# @@||peoplegreece.com/assets/js/adtech_res.js (easylistchina+easylist.txt: 61084) -.peoplegreece.com/assets/js/adtech_res\.js -# @@||openx.zomoto.nl/live/www/delivery/spcjs.php?id= (easylistchina+easylist.txt: 61081) -.openx.zomoto.nl/live/www/delivery/spcjs\.php\?id= -# @@||openx.zomoto.nl/live/www/delivery/fl.js (easylistchina+easylist.txt: 61080) -.openx.zomoto.nl/live/www/delivery/fl\.js -# @@||openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null.jpg (easylistchina+easylist.txt: 61079) -.openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null\.jpg -# @@||oas.dn.se/adstream_mjx.ads/dn.se/nyheter/ettan/*@$script (easylistchina+easylist.txt: 61077) -.oas.dn.se/adstream_mjx\.ads/dn\.se/nyheter/ettan/.*@ -# @@||nordjyske.dk/scripts/ads/StoryAds.js (easylistchina+easylist.txt: 61073) -.nordjyske.dk/scripts/ads/StoryAds\.js -# @@||niedziela.nl/adverts/$image,~third-party (easylistchina+easylist.txt: 61072) -.niedziela.nl/adverts/ -# @@||mynet.com/nocache/adocean.js? (easylistchina+easylist.txt: 61070) -.mynet.com/nocache/adocean\.js\? -# @@||mynet.com.tr/nocache/adocean.js? (easylistchina+easylist.txt: 61069) -.mynet.com.tr/nocache/adocean\.js\? -# @@||moviezone.cz/swf/ad-player/$object,object-subrequest (easylistchina+easylist.txt: 61068) -.moviezone.cz/swf/ad-player/ -# @@||moviezone.cz//moviezone/reklama/$object-subrequest (easylistchina+easylist.txt: 61067) -# @@||mmgastro.pl/js/reklama/$~third-party (easylistchina+easylist.txt: 61066) -.mmgastro.pl/js/reklama/ -# @@||mmgastro.pl/img/reklama/$image,~third-party (easylistchina+easylist.txt: 61065) -.mmgastro.pl/img/reklama/ -# @@||mjhobbymassan.se/r/annonser/$image,~third-party (easylistchina+easylist.txt: 61063) -.mjhobbymassan.se/r/annonser/ -# @@||minuripsmed.ee/templates/*/images/advert.gif (easylistchina+easylist.txt: 61062) -.minuripsmed.ee/templates/.*/images/advert\.gif -# @@||megatv.com^*/adverts.asp?$object-subrequest (easylistchina+easylist.txt: 61061) -.megatv.com/.*/adverts\.asp\? -# @@||mail.bg/mail/index/getads/$xmlhttprequest (easylistchina+easylist.txt: 61060) -.mail.bg/mail/index/getads/ -# @@||lrytas.lt/ads/video_feed.js (easylistchina+easylist.txt: 61059) -.lrytas.lt/ads/video_feed\.js -# @@||laredoute.*/scripts/combinejs.ashx?*/affiliation/$script (easylistchina+easylist.txt: 61056) -.laredoute.*./(.*/)?scripts/combinejs\.ashx\?.*/affiliation/ -# @@||krotoszyn.pl/uploads/pub/ads_files/$image,~third-party (easylistchina+easylist.txt: 61055) -.krotoszyn.pl/uploads/pub/ads_files/ -# @@||kopavogur.is/umsoknarvefur/advertisement.aspx$subdocument (easylistchina+easylist.txt: 61054) -.kopavogur.is/umsoknarvefur/advertisement\.aspx -# @@||kompas.com^*/supersized.*.min_ads.js? (easylistchina+easylist.txt: 61053) -.kompas.com/.*/supersized\..*\.min_ads\.js\? -# @@||kanalfrederikshavn.dk^*/jquery.openx.js? (easylistchina+easylist.txt: 61052) -.kanalfrederikshavn.dk/.*/jquery\.openx\.js\? -# @@||joemonster.org^*_reklama_$image (easylistchina+easylist.txt: 61051) -.joemonster.org/.*_reklama_ -# @@||jesper.nu/javascript/libs/videoads.js (easylistchina+easylist.txt: 61050) -.jesper.nu/javascript/libs/videoads\.js -# @@||izigo.pt^*/adsearch? (easylistchina+easylist.txt: 61049) -.izigo.pt/.*/adsearch\? -# @@||izigo.pt/AdPictures/ (easylistchina+easylist.txt: 61048) -.izigo.pt/AdPictures/ -# @@||islafenice.net^*/adsense.js (easylistchina+easylist.txt: 61047) -.islafenice.net/.*/adsense\.js -# @@||isanook.com/vi/0/js/ads-$script (easylistchina+easylist.txt: 61046) -.isanook.com/vi/0/js/ads- -# @@||hry.cz/ad/adcode.js (easylistchina+easylist.txt: 61040) -.hry.cz/ad/adcode\.js -# @@||honfoglalo.hu/aagetad.php?$subdocument (easylistchina+easylist.txt: 61039) -.honfoglalo.hu/aagetad\.php\? -# @@||homad.eu^$~third-party (easylistchina+easylist.txt: 61038) -.homad.eu -# @@||hizlial.com/banners/$~third-party (easylistchina+easylist.txt: 61037) -.hizlial.com/banners/ -# @@||happymtb.org/annonser/$~third-party (easylistchina+easylist.txt: 61036) -.happymtb.org/annonser/ -# @@||haberler.com/video-haber/adsense_news_politics.swf?$object (easylistchina+easylist.txt: 61035) -.haberler.com/video-haber/adsense_news_politics\.swf\? -# @@||guloggratis.dk/modules/$script,~third-party,xmlhttprequest (easylistchina+easylist.txt: 61034) -.guloggratis.dk/modules/ -# @@||gov.in/pdf/ADVERTISEMENT/$~third-party (easylistchina+easylist.txt: 61033) -.gov.in/pdf/ADVERTISEMENT/ -# @@||freeride.se/img/admarket/$~third-party (easylistchina+easylist.txt: 61031) -.freeride.se/img/admarket/ -# @@||fotosioon.com/wp-content/*/images/advert.gif (easylistchina+easylist.txt: 61030) -.fotosioon.com/wp-content/.*/images/advert\.gif -# @@||fotolog.com/styles/flags/ad.gif (easylistchina+easylist.txt: 61029) -.fotolog.com/styles/flags/ad\.gif -# @@||fotojorgen.no/images/*/webadverts/ (easylistchina+easylist.txt: 61028) -.fotojorgen.no/images/.*/webadverts/ -# @@||forads.pl^$~third-party (easylistchina+easylist.txt: 61027) -.forads.pl -# @@||flashgames247.com/advertising/preroll/google-fg247-preloader.swf$object (easylistchina+easylist.txt: 61026) -.flashgames247.com/advertising/preroll/google-fg247-preloader\.swf -# @@||filmon.com/ad/affiliateimages/banner-250x350.png (easylistchina+easylist.txt: 61025) -.filmon.com/ad/affiliateimages/banner-250x350\.png -# @@||felcia.co.uk/js/ads_common.js (easylistchina+easylist.txt: 61024) -.felcia.co.uk/js/ads_common\.js -# @@||felcia.co.uk/css/advert-view.css (easylistchina+easylist.txt: 61023) -.felcia.co.uk/css/advert-view\.css -# @@||felcia.co.uk/css/ads-common.css (easylistchina+easylist.txt: 61022) -.felcia.co.uk/css/ads-common\.css -# @@||fajerwerkilider.pl/environment/cache/images/300_250_productGfx_$image (easylistchina+easylist.txt: 61020) -.fajerwerkilider.pl/environment/cache/images/300_250_productGfx_ -# @@||ettevotja.ee/templates/*/images/advert.gif (easylistchina+easylist.txt: 61018) -.ettevotja.ee/templates/.*/images/advert\.gif -# @@||epaper.andhrajyothy.com/js/newads.js (easylistchina+easylist.txt: 61017) -.epaper.andhrajyothy.com/js/newads\.js -# @@||emediate.se/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61014) -.emediate.se/crossdomain\.xml -# @@||emediate.eu/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61012) -.emediate.eu/crossdomain\.xml -# @@||emag.hu/site_ajax_ads?id=$xmlhttprequest (easylistchina+easylist.txt: 61010) -.emag.hu/site_ajax_ads\?id= -# @@||ehowenespanol.com/frames/ad.html?$subdocument (easylistchina+easylist.txt: 61009) -.ehowenespanol.com/frames/ad\.html\? -# @@||ehow.com.br/frames/ad.html?$subdocument (easylistchina+easylist.txt: 61008) -.ehow.com.br/frames/ad\.html\? -# @@||doladowania.pl/pp/$script (easylistchina+easylist.txt: 61004) -.doladowania.pl/pp/ -# @@||di.se^*/advertisement.js (easylistchina+easylist.txt: 61003) -.di.se/.*/advertisement\.js -# @@||di.se^$generichide (easylistchina+easylist.txt: 61002) -.di.se -# @@||custojusto.pt/user/myads/ (easylistchina+easylist.txt: 61001) -.custojusto.pt/user/myads/ -# @@||catmusica.cat/paudio/getads.jsp?$xmlhttprequest (easylistchina+easylist.txt: 60999) -.catmusica.cat/paudio/getads\.jsp\? -# @@||carfinder.gr/api/ads/$xmlhttprequest (easylistchina+easylist.txt: 60998) -.carfinder.gr/api/ads/ -# @@||bomnegocio.com/css/ad_insert.css (easylistchina+easylist.txt: 60997) -.bomnegocio.com/css/ad_insert\.css -# @@||bolha.com/css/ad.css? (easylistchina+easylist.txt: 60996) -.bolha.com/css/ad\.css\? -# @@||bnrs.ilm.ee/www/delivery/fl.js (easylistchina+easylist.txt: 60995) -.bnrs.ilm.ee/www/delivery/fl\.js -# @@||bn.uol.com.br/html.ng/$object-subrequest (easylistchina+easylist.txt: 60994) -.bn.uol.com.br/html\.ng/ -# @@||bmwoglasnik.si/images/ads/ (easylistchina+easylist.txt: 60993) -.bmwoglasnik.si/images/ads/ -# @@||blocket.se^*/newad.js (easylistchina+easylist.txt: 60992) -.blocket.se/.*/newad\.js -# @@||biancolavoro.euspert.com/js/ad.js (easylistchina+easylist.txt: 60991) -.biancolavoro.euspert.com/js/ad\.js -# @@||banki.ru/bitrix/*/advertising.block/$stylesheet (easylistchina+easylist.txt: 60988) -.banki.ru/bitrix/.*/advertising\.block/ -# @@||bancodevenezuela.com/imagenes/publicidad/$~third-party (easylistchina+easylist.txt: 60987) -.bancodevenezuela.com/imagenes/publicidad/ -# @@||bancainternet.com.ar/eBanking/images/*-PUBLICIDAD. (easylistchina+easylist.txt: 60986) -.bancainternet.com.ar/eBanking/images/.*-PUBLICIDAD\. -# @@||autotube.cz/ui/player/ad.php?id=$object-subrequest (easylistchina+easylist.txt: 60985) -.autotube.cz/ui/player/ad\.php\?id= -# @@||autoscout24.*/all.js.aspx?m=css&*=/stylesheets/adbanner.css (easylistchina+easylist.txt: 60984) -.autoscout24.*./(.*/)?all\.js\.aspx\?m=css&.*=/stylesheets/adbanner\.css -# @@||atresplayer.com/static/imgs/no_ads.jpg$object-subrequest (easylistchina+easylist.txt: 60983) -.atresplayer.com/static/imgs/no_ads\.jpg -# @@||applevideo.edgesuite.net/admedia/$object-subrequest (easylistchina+easylist.txt: 60982) -.applevideo.edgesuite.net/admedia/ -# @@||americateve.com/mediaplayer_ads/new_config_openx.xml$xmlhttprequest (easylistchina+easylist.txt: 60977) -.americateve.com/mediaplayer_ads/new_config_openx\.xml -# @@||amarillas.cl/js/advertise/$script (easylistchina+easylist.txt: 60974) -.amarillas.cl/js/advertise/ -# @@||amarillas.cl/advertise.do?$xmlhttprequest (easylistchina+easylist.txt: 60973) -.amarillas.cl/advertise\.do\? -# @@||alio.lt/public/advertisement/texttoimage.html?$image (easylistchina+easylist.txt: 60971) -.alio.lt/public/advertisement/texttoimage\.html\? -# @@||advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page.gif (easylistchina+easylist.txt: 60966) -.advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page\.gif -# @@||advert.ee^$~third-party (easylistchina+easylist.txt: 60962) -.advert.ee -# @@||adv.pt^$~third-party (easylistchina+easylist.txt: 60961) -.adv.pt -# @@||adsystem.pl^$~third-party (easylistchina+easylist.txt: 60955) -.adsystem.pl -# @@||ads.us.e-planning.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60952) -.ads.us.e-planning.net/crossdomain\.xml -# @@||ads.telecinco.es/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60950) -.ads.telecinco.es/crossdomain\.xml -# @@||ads.postimees.ee/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60949) -.ads.postimees.ee/crossdomain\.xml -# @@||ads.peteava.ro/www/serve_ads/serve2.php?campaign=$object-subrequest (easylistchina+easylist.txt: 60948) -.ads.peteava.ro/www/serve_ads/serve2\.php\?campaign= -# @@||ads.peteava.ro/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60947) -.ads.peteava.ro/crossdomain\.xml -# @@||ads.nicovideo.jp/assets/js/ads-*.js (easylistchina+easylist.txt: 60946) -.ads.nicovideo.jp/assets/js/ads-.*\.js -# @@||ads.hosting.vcmedia.vn/jinfo.ashx?$object-subrequest (easylistchina+easylist.txt: 60945) -.ads.hosting.vcmedia.vn/jinfo\.ashx\? -# @@||ads.hosting.vcmedia.vn/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60944) -.ads.hosting.vcmedia.vn/crossdomain\.xml -# @@||ads.cvut.cz^$~third-party (easylistchina+easylist.txt: 60942) -.ads.cvut.cz -# @@||adpriv.nikkei.com/bservers/AAMALL/*/acc_random=$script (easylistchina+easylist.txt: 60941) -.adpriv.nikkei.com/bservers/AAMALL/.*/acc_random= -# @@||ad3.l3go.com.br^$~third-party (easylistchina+easylist.txt: 60933) -.ad3.l3go.com.br -# @@||ad.nl/ad/css/$~third-party (easylistchina+easylist.txt: 60932) -.ad.nl/ad/css/ -# @@||ad.e-kolay.net/mnetorfad.js (easylistchina+easylist.txt: 60931) -.ad.e-kolay.net/mnetorfad\.js -# @@||ad.e-kolay.net/Medyanet.js (easylistchina+easylist.txt: 60930) -.ad.e-kolay.net/Medyanet\.js -# @@||ad.e-kolay.net/jquery-*-Medyanet.min.js (easylistchina+easylist.txt: 60929) -.ad.e-kolay.net/jquery-.*-Medyanet\.min\.js -# @@||ad.e-kolay.net/ad.js (easylistchina+easylist.txt: 60928) -.ad.e-kolay.net/ad\.js -# @@||zoomin.tv/adhandler/amalia.adm?$object-subrequest (easylistchina+easylist.txt: 60923) -.zoomin.tv/adhandler/amalia\.adm\? -# @@||zman.com/adv/ova/overlay.xml (easylistchina+easylist.txt: 60922) -.zman.com/adv/ova/overlay\.xml -# @@||zattoo.com/ads/cs?$xmlhttprequest (easylistchina+easylist.txt: 60919) -.zattoo.com/ads/cs\? -# @@||ytconv.net/*google_ads.js (easylistchina+easylist.txt: 60918) -.ytconv.net/.*google_ads\.js -# @@||youwatch.org/adframe.js (easylistchina+easylist.txt: 60915) -.youwatch.org/adframe\.js -# @@||yellowbridge.com^*/advertisement.js (easylistchina+easylist.txt: 60913) -.yellowbridge.com/.*/advertisement\.js -# @@||yellowbridge.com/ad/show_ads.js (easylistchina+easylist.txt: 60911) -.yellowbridge.com/ad/show_ads\.js -# @@||yasni.*/adframe.js (easylistchina+easylist.txt: 60910) -.yasni.*./(.*/)?adframe\.js -# @@||xooimg.com/magesy/js-cdn/adblock.js (easylistchina+easylist.txt: 60908) -.xooimg.com/magesy/js-cdn/adblock\.js -# @@||writing.com^$script (easylistchina+easylist.txt: 60904) -.writing.com -# @@||world-of-hentai.to/advertisement.js (easylistchina+easylist.txt: 60899) -.world-of-hentai.to/advertisement\.js -# @@||windows7themes.net/wp-content/advert.js (easylistchina+easylist.txt: 60897) -.windows7themes.net/wp-content/advert\.js -# @@||wholecloud.net/banner.php?$script (easylistchina+easylist.txt: 60895) -.wholecloud.net/banner\.php\? -# @@||weshare.me/fuckadblock.js (easylistchina+easylist.txt: 60892) -.weshare.me/fuckadblock\.js -# @@||welovebtc.com/show_ads.js (easylistchina+easylist.txt: 60891) -.welovebtc.com/show_ads\.js -# @@||webtv.rs/media/blic/advertisement.jpg (easylistchina+easylist.txt: 60890) -.webtv.rs/media/blic/advertisement\.jpg -# @@||webfirstrow.eu^*/advertisement.js (easylistchina+easylist.txt: 60888) -.webfirstrow.eu/.*/advertisement\.js -# @@||webfirstrow.eu/advertisement.js (easylistchina+easylist.txt: 60887) -.webfirstrow.eu/advertisement\.js -# @@||weather.com^*/advertisement.js (easylistchina+easylist.txt: 60886) -.weather.com/.*/advertisement\.js -# @@||watchcartoononline.com/advertisement.js (easylistchina+easylist.txt: 60885) -.watchcartoononline.com/advertisement\.js -# @@||wanamlite.com/images/ad/$image (easylistchina+easylist.txt: 60884) -.wanamlite.com/images/ad/ -# @@||wallpapermania.eu/assets/js/advertisement.js (easylistchina+easylist.txt: 60882) -.wallpapermania.eu/assets/js/advertisement\.js -# @@||vodu.ch^$script (easylistchina+easylist.txt: 60881) -.vodu.ch -# @@||virtualpets.com^*/ads.js (easylistchina+easylist.txt: 60879) -.virtualpets.com/.*/ads\.js -# @@||vipleague.se/js/ads.js (easylistchina+easylist.txt: 60878) -.vipleague.se/js/ads\.js -# @@||vipbox.tv/js/ads.js (easylistchina+easylist.txt: 60877) -.vipbox.tv/js/ads\.js -# @@||viki.com/*.js$script (easylistchina+easylist.txt: 60876) -.viki.com/.*\.js -# @@||vietvbb.vn/up/clientscript/google_ads.js (easylistchina+easylist.txt: 60875) -.vietvbb.vn/up/clientscript/google_ads\.js -# @@||vidup.me/js/$script (easylistchina+easylist.txt: 60874) -.vidup.me/js/ -# @@||videoweed.es/banner.php?$script (easylistchina+easylist.txt: 60873) -.videoweed.es/banner\.php\? -# @@||videomega.tv^*/ad.php?id=$subdocument (easylistchina+easylist.txt: 60871) -.videomega.tv/.*/ad\.php\?id= -# @@||videomega.tv^$stylesheet (easylistchina+easylist.txt: 60870) -.videomega.tv -# @@||videomega.tv^$script (easylistchina+easylist.txt: 60869) -.videomega.tv -# @@||videomega.tv/pub/interstitial.css (easylistchina+easylist.txt: 60867) -.videomega.tv/pub/interstitial\.css -# @@||videocelebrities.eu^*/adframe/ (easylistchina+easylist.txt: 60866) -.videocelebrities.eu/.*/adframe/ -# @@||vgunetwork.com/public/js/*/advertisement.js (easylistchina+easylist.txt: 60864) -.vgunetwork.com/public/js/.*/advertisement\.js -# @@||verticalscope.com/js/advert.js (easylistchina+easylist.txt: 60863) -.verticalscope.com/js/advert\.js -# @@||veedi.com^*/ADS.js (easylistchina+easylist.txt: 60857) -.veedi.com/.*/ADS\.js -# @@||usaupload.net/ads.js (easylistchina+easylist.txt: 60852) -.usaupload.net/ads\.js -# @@||urlgalleries.net^*/adhandler/$subdocument (easylistchina+easylist.txt: 60851) -.urlgalleries.net/.*/adhandler/ -# @@||urdupoint.com/js/advertisement.js (easylistchina+easylist.txt: 60846) -.urdupoint.com/js/advertisement\.js -# @@||urbeez.com/adver$script (easylistchina+easylist.txt: 60845) -.urbeez.com/adver -# @@||upshare.org/advertisement.js (easylistchina+easylist.txt: 60843) -.upshare.org/advertisement\.js -# @@||uploadlw.com/getbanner.cfm?$script (easylistchina+easylist.txt: 60841) -.uploadlw.com/getbanner\.cfm\? -# @@||uploadex.com/fuckadblock.js (easylistchina+easylist.txt: 60839) -.uploadex.com/fuckadblock\.js -# @@||up-flow.org/advertisement.js (easylistchina+easylist.txt: 60838) -.up-flow.org/advertisement\.js -# @@||uktv.co.uk/static/js/ads.js (easylistchina+easylist.txt: 60835) -.uktv.co.uk/static/js/ads\.js -# @@||ucoz.com/ads/banner.jpg?$image (easylistchina+easylist.txt: 60834) -.ucoz.com/ads/banner\.jpg\? -# @@||twitch.tv/ads/ads.js (easylistchina+easylist.txt: 60833) -.twitch.tv/ads/ads\.js -# @@||tvpelis.net^*/advertisement2.js (easylistchina+easylist.txt: 60831) -.tvpelis.net/.*/advertisement2\.js -# @@||tvdez.com/ads/ads_$subdocument (easylistchina+easylist.txt: 60828) -.tvdez.com/ads/ads_ -# @@||tv3.co.nz/Portals/*/advertisement.js (easylistchina+easylist.txt: 60827) -.tv3.co.nz/Portals/.*/advertisement\.js -# @@||tutvgratis.tv^*/fuckadblock.js (easylistchina+easylist.txt: 60824) -.tutvgratis.tv/.*/fuckadblock\.js -# @@||turkdown.com^$script (easylistchina+easylist.txt: 60821) -.turkdown.com -# @@||tpmrpg.net/adframe.js (easylistchina+easylist.txt: 60811) -.tpmrpg.net/adframe\.js -# @@||tklist.net/tklist/*ad$image (easylistchina+easylist.txt: 60806) -.tklist.net/tklist/.*ad -# @@||theweatherspace.com^*/advertisement.js (easylistchina+easylist.txt: 60803) -.theweatherspace.com/.*/advertisement\.js -# @@||thevideos.tv/js/ads.js (easylistchina+easylist.txt: 60801) -.thevideos.tv/js/ads\.js -# @@||thesominaltv.com/advertisement.js (easylistchina+easylist.txt: 60800) -.thesominaltv.com/advertisement\.js -# @@||thesilverforum.com/public/js/jsLoader.js?adType=$script (easylistchina+easylist.txt: 60797) -.thesilverforum.com/public/js/jsLoader\.js\?adType= -# @@||thememypc.com/wp-content/*/ads/$image (easylistchina+easylist.txt: 60795) -.thememypc.com/wp-content/.*/ads/ -# @@||thelordofstreaming.it/wp-content/uploads/*/ad_$image (easylistchina+easylist.txt: 60793) -.thelordofstreaming.it/wp-content/uploads/.*/ad_ -# @@||televall.com.mx/fuckadblock.js (easylistchina+easylist.txt: 60790) -.televall.com.mx/fuckadblock\.js -# @@||telemetryverification.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60789) -.telemetryverification.net/crossdomain\.xml -# @@||teknogods.com/advert.js (easylistchina+easylist.txt: 60788) -.teknogods.com/advert\.js -# @@||techweekeurope.co.uk^*/advertising.js (easylistchina+easylist.txt: 60785) -.techweekeurope.co.uk/.*/advertising\.js -# @@||team-vitality.fr/assets/images/advert.png (easylistchina+easylist.txt: 60783) -.team-vitality.fr/assets/images/advert\.png -# @@||talksport.com/sites/default/files/ben/advert.js (easylistchina+easylist.txt: 60781) -.talksport.com/sites/default/files/ben/advert\.js -# @@||supergames.com^*/ads.js (easylistchina+easylist.txt: 60779) -.supergames.com/.*/ads\.js -# @@||superfilm.pl/advertisement.js (easylistchina+easylist.txt: 60777) -.superfilm.pl/advertisement\.js -# @@||streamlive.to^*/ad/$image (easylistchina+easylist.txt: 60775) -.streamlive.to/.*/ad/ -# @@||streamlive.to/js/ads.js (easylistchina+easylist.txt: 60774) -.streamlive.to/js/ads\.js -# @@||streamin.to/adblock/advert.js (easylistchina+easylist.txt: 60772) -.streamin.to/adblock/advert\.js -# @@||streamcloud.eu^$xmlhttprequest (easylistchina+easylist.txt: 60771) -.streamcloud.eu -# @@||stickgames.com^*/ads.js (easylistchina+easylist.txt: 60768) -.stickgames.com/.*/ads\.js -# @@||startribune.com^$generichide (easylistchina+easylist.txt: 60765) -.startribune.com -# @@||stackexchange.com/affiliate/ (easylistchina+easylist.txt: 60764) -.stackexchange.com/affiliate/ -# @@||srnet.eu^$script (easylistchina+easylist.txt: 60763) -.srnet.eu -# @@||springstreetads.com/scripts/advertising.js (easylistchina+easylist.txt: 60762) -.springstreetads.com/scripts/advertising\.js -# @@||speedpremium.info^$script (easylistchina+easylist.txt: 60760) -.speedpremium.info -# @@||spaste.com^$script (easylistchina+easylist.txt: 60759) -.spaste.com -# @@||sparkylinux.org/images/ad/$image (easylistchina+easylist.txt: 60758) -.sparkylinux.org/images/ad/ -# @@||sounddrain.net^*/advertisement.js (easylistchina+easylist.txt: 60757) -.sounddrain.net/.*/advertisement\.js -# @@||sominaltvfilms.com/wp-content/*/adbanner/$image (easylistchina+easylist.txt: 60754) -.sominaltvfilms.com/wp-content/.*/adbanner/ -# @@||sockshare.com/js/$script (easylistchina+easylist.txt: 60752) -.sockshare.com/js/ -# @@||skidrowcrack.com/advertisement.js (easylistchina+easylist.txt: 60744) -.skidrowcrack.com/advertisement\.js -# @@||sizedrive.com/js/fuckadblock.js (easylistchina+easylist.txt: 60742) -.sizedrive.com/js/fuckadblock\.js -# @@||sitepoint.com^*/ad-server.js (easylistchina+easylist.txt: 60740) -.sitepoint.com/.*/ad-server\.js -# @@||siamfishing.com^*/advert.js (easylistchina+easylist.txt: 60739) -.siamfishing.com/.*/advert\.js -# @@||showsport-tv.com/adv*.js (easylistchina+easylist.txt: 60737) -.showsport-tv.com/adv.*\.js -# @@||shimory.com/js/show_ads.js (easylistchina+easylist.txt: 60736) -.shimory.com/js/show_ads\.js -# @@||sheepskinproxy.com/js/advertisement.js (easylistchina+easylist.txt: 60735) -.sheepskinproxy.com/js/advertisement\.js -# @@||series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/$script (easylistchina+easylist.txt: 60732) -.series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/ -# @@||senmanga.com/advertisement.js (easylistchina+easylist.txt: 60731) -.senmanga.com/advertisement\.js -# @@||seekingalpha.com^$script (easylistchina+easylist.txt: 60730) -.seekingalpha.com -# @@||securenetsystems.net^*/ads.js (easylistchina+easylist.txt: 60727) -.securenetsystems.net/.*/ads\.js -# @@||scoutingbook.com/js/adsense.js (easylistchina+easylist.txt: 60724) -.scoutingbook.com/js/adsense\.js -# @@||scan-manga.com/ads/banner.jpg$image (easylistchina+easylist.txt: 60722) -.scan-manga.com/ads/banner\.jpg -# @@||scan-manga.com/ads.html (easylistchina+easylist.txt: 60721) -.scan-manga.com/ads\.html -# @@||sawlive.tv/adscript.js (easylistchina+easylist.txt: 60719) -.sawlive.tv/adscript\.js -# @@||savevideo.me/images/banner_ads.gif (easylistchina+easylist.txt: 60718) -.savevideo.me/images/banner_ads\.gif -# @@||sankakustatic.com^$script (easylistchina+easylist.txt: 60714) -.sankakustatic.com -# @@||sankakucomplex.com^$script (easylistchina+easylist.txt: 60713) -.sankakucomplex.com -# @@||saikoanimes.net^*/advertisement.js (easylistchina+easylist.txt: 60712) -.saikoanimes.net/.*/advertisement\.js -# @@||saavn.com/ads/search_config_ad.php?$subdocument (easylistchina+easylist.txt: 60710) -.saavn.com/ads/search_config_ad\.php\? -# @@||runners.es^*/advertisement.js (easylistchina+easylist.txt: 60709) -.runners.es/.*/advertisement\.js -# @@||rincondelvago.com^*_adsense.js (easylistchina+easylist.txt: 60703) -.rincondelvago.com/.*_adsense\.js -# @@||revclouds.com^$generichide (easylistchina+easylist.txt: 60701) -.revclouds.com -# @@||redtube.com*/adframe.js (easylistchina+easylist.txt: 60694) -.redtube.com*./(.*/)?adframe\.js -# @@||ratebeer.com/javascript/advertisement.js (easylistchina+easylist.txt: 60691) -.ratebeer.com/javascript/advertisement\.js -# @@||rapidmoviez.com/files/php/mgid-ad$subdocument (easylistchina+easylist.txt: 60690) -.rapidmoviez.com/files/php/mgid-ad -# @@||rapidmoviez.com/ad$image,subdocument (easylistchina+easylist.txt: 60689) -.rapidmoviez.com/ad -# @@||rapid8.com^$script (easylistchina+easylist.txt: 60688) -.rapid8.com -# @@||radioio.com^*/adframe.js (easylistchina+easylist.txt: 60687) -.radioio.com/.*/adframe\.js -# @@||radioaficion.com/HamNews/*/ad$image (easylistchina+easylist.txt: 60685) -.radioaficion.com/HamNews/.*/ad -# @@||radar-toulouse.fr/advertisement.js (easylistchina+easylist.txt: 60684) -.radar-toulouse.fr/advertisement\.js -# @@||racedepartment.com^*/advertisement.js (easylistchina+easylist.txt: 60682) -.racedepartment.com/.*/advertisement\.js -# @@||qrrro.com^*/adhandler/ (easylistchina+easylist.txt: 60681) -.qrrro.com/.*/adhandler/ -# @@||puromarketing.com/js/advertisement.js (easylistchina+easylist.txt: 60677) -.puromarketing.com/js/advertisement\.js -# @@||pubdirecte.com^*/advertisement.js (easylistchina+easylist.txt: 60676) -.pubdirecte.com/.*/advertisement\.js -# @@||psarips.com^$script (easylistchina+easylist.txt: 60674) -.psarips.com -# @@||protect-url.net^$script,~third-party (easylistchina+easylist.txt: 60673) -.protect-url.net -# @@||primewire.ag/js/advertisement.js (easylistchina+easylist.txt: 60670) -.primewire.ag/js/advertisement\.js -# @@||primeshare.tv^*/advertisement.js (easylistchina+easylist.txt: 60669) -.primeshare.tv/.*/advertisement\.js -# @@||primeshare.tv^*/adframe.js (easylistchina+easylist.txt: 60668) -.primeshare.tv/.*/adframe\.js -# @@||premiumleecher.com/inc/adsense.js (easylistchina+easylist.txt: 60666) -.premiumleecher.com/inc/adsense\.js -# @@||premiumleecher.com/inc/adframe.js (easylistchina+easylist.txt: 60665) -.premiumleecher.com/inc/adframe\.js -# @@||playindiafilms.com/advertisement.js (easylistchina+easylist.txt: 60655) -.playindiafilms.com/advertisement\.js -# @@||playhd.eu/advertisement.js (easylistchina+easylist.txt: 60654) -.playhd.eu/advertisement\.js -# @@||player.utv.ie/assets/js/adframe.js (easylistchina+easylist.txt: 60653) -.player.utv.ie/assets/js/adframe\.js -# @@||player.foxfdm.com^*/playback.js$xmlhttprequest (easylistchina+easylist.txt: 60652) -.player.foxfdm.com/.*/playback\.js -# @@||pipocas.tv/js/advertisement.js (easylistchina+easylist.txt: 60649) -.pipocas.tv/js/advertisement\.js -# @@||photofacefun.com^*/adblock.js (easylistchina+easylist.txt: 60646) -.photofacefun.com/.*/adblock\.js -# @@||phoronix.com/advertisement.js (easylistchina+easylist.txt: 60645) -.phoronix.com/advertisement\.js -# @@||perkuinternete.lt/modules/mod_jpayday/js/advertisement.js (easylistchina+easylist.txt: 60643) -.perkuinternete.lt/modules/mod_jpayday/js/advertisement\.js -# @@||paste.org/style/adframe.js (easylistchina+easylist.txt: 60639) -.paste.org/style/adframe\.js -# @@||pandora.com/static/ads/ (easylistchina+easylist.txt: 60635) -.pandora.com/static/ads/ -# @@||overclock3d.net/js/advert.js (easylistchina+easylist.txt: 60620) -.overclock3d.net/js/advert\.js -# @@||openx.gamereactor.dk/multi.php?$script (easylistchina+easylist.txt: 60612) -.openx.gamereactor.dk/multi\.php\? -# @@||openspeedtest.com/advertisement.js (easylistchina+easylist.txt: 60611) -.openspeedtest.com/advertisement\.js -# @@||openrunner.com/js/advertisement.js (easylistchina+easylist.txt: 60610) -.openrunner.com/js/advertisement\.js -# @@||onvasortir.com/advert$script (easylistchina+easylist.txt: 60602) -.onvasortir.com/advert -# @@||onrpg.com/advertisement.js (easylistchina+easylist.txt: 60601) -.onrpg.com/advertisement\.js -# @@||onlinevideoconverter.com^*ad*.js (easylistchina+easylist.txt: 60600) -.onlinevideoconverter.com/.*ad.*\.js -# @@||oneplay.tv/embed/js/fuckadblock.js (easylistchina+easylist.txt: 60595) -.oneplay.tv/embed/js/fuckadblock\.js -# @@||nzbstars.com*/advertisement.js (easylistchina+easylist.txt: 60591) -.nzbstars.com*./(.*/)?advertisement\.js -# @@||nowvideo.to/banner.php?$script (easylistchina+easylist.txt: 60590) -.nowvideo.to/banner\.php\? -# @@||nowvideo.sx/banner.php?$script (easylistchina+easylist.txt: 60589) -.nowvideo.sx/banner\.php\? -# @@||nowvideo.li/banner.php?$script (easylistchina+easylist.txt: 60588) -.nowvideo.li/banner\.php\? -# @@||nowdownload.to/banner.php?$script (easylistchina+easylist.txt: 60587) -.nowdownload.to/banner\.php\? -# @@||novamov.com/banner.php?$script (easylistchina+easylist.txt: 60586) -.novamov.com/banner\.php\? -# @@||nosteam.ro^*/advertisement.js (easylistchina+easylist.txt: 60584) -.nosteam.ro/.*/advertisement\.js -# @@||nosteam.ro/advertisement.js (easylistchina+easylist.txt: 60583) -.nosteam.ro/advertisement\.js -# @@||nonags.com^*/ad$image (easylistchina+easylist.txt: 60581) -.nonags.com/.*/ad -# @@||nextthreedays.com/Include/Javascript/AdFunctions.js (easylistchina+easylist.txt: 60577) -.nextthreedays.com/Include/Javascript/AdFunctions\.js -# @@||next-episode.net^$script (easylistchina+easylist.txt: 60576) -.next-episode.net -# @@||nettavisen.no^*/advertisement.js (easylistchina+easylist.txt: 60573) -.nettavisen.no/.*/advertisement\.js -# @@||needrom.com/advert1.js (easylistchina+easylist.txt: 60572) -.needrom.com/advert1\.js -# @@||ndtv.com/static/js/advertisement.js (easylistchina+easylist.txt: 60571) -.ndtv.com/static/js/advertisement\.js -# @@||myiplayer.com/ad*.js (easylistchina+easylist.txt: 60564) -.myiplayer.com/ad.*\.js -# @@||myfreeforum.org/advertisement.js (easylistchina+easylist.txt: 60563) -.myfreeforum.org/advertisement\.js -# @@||myfineforum.org/advertisement.js (easylistchina+easylist.txt: 60562) -.myfineforum.org/advertisement\.js -# @@||mybannermaker.com/banner.php$~third-party (easylistchina+easylist.txt: 60561) -.mybannermaker.com/banner\.php -# @@||mwfiles.net/advertisement.js (easylistchina+easylist.txt: 60560) -.mwfiles.net/advertisement\.js -# @@||multiup.org/img/theme/*?$image (easylistchina+easylist.txt: 60556) -.multiup.org/img/theme/.*\? -# @@||mrtzcmp3.net/advertisement.js (easylistchina+easylist.txt: 60554) -.mrtzcmp3.net/advertisement\.js -# @@||mp3clan.com^*/advertisement.js (easylistchina+easylist.txt: 60549) -.mp3clan.com/.*/advertisement\.js -# @@||mousebreaker.com/scripts/ads.js (easylistchina+easylist.txt: 60545) -.mousebreaker.com/scripts/ads\.js -# @@||moon-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60544) -.moon-faucet.tk/advertisement\.js -# @@||monsoonads.com:8080/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60542) -.monsoonads.com:8080/crossdomain\.xml -# @@||monsoonads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60541) -.monsoonads.com/crossdomain\.xml -# @@||monova.unblocked.la^$generichide (easylistchina+easylist.txt: 60540) -.monova.unblocked.la -# @@||monova.unblocked.la/js/adframe.js (easylistchina+easylist.txt: 60539) -.monova.unblocked.la/js/adframe\.js -# @@||monova.org^$generichide (easylistchina+easylist.txt: 60538) -.monova.org -# @@||monova.org/js/adframe.js (easylistchina+easylist.txt: 60537) -.monova.org/js/adframe\.js -# @@||moneyinpjs.com/advertisement.js (easylistchina+easylist.txt: 60536) -.moneyinpjs.com/advertisement\.js -# @@||moje-dzialdowo.pl/images/*.swf|$object (easylistchina+easylist.txt: 60535) -.moje-dzialdowo.pl/images/.*\.swf$ -# @@||moje-dzialdowo.pl/delivery/ajs.php?zoneid=$script (easylistchina+easylist.txt: 60534) -.moje-dzialdowo.pl/delivery/ajs\.php\?zoneid= -# @@||mobinozer.com^*/advert.js (easylistchina+easylist.txt: 60533) -.mobinozer.com/.*/advert\.js -# @@||mmatko.com/images/ad/$image (easylistchina+easylist.txt: 60532) -.mmatko.com/images/ad/ -# @@||mma-core.com/Scripts/adscript.js (easylistchina+easylist.txt: 60531) -.mma-core.com/Scripts/adscript\.js -# @@||mix.dj^*/advertisement.js (easylistchina+easylist.txt: 60530) -.mix.dj/.*/advertisement\.js -# @@||mix.dj/jscripts/jquery/mdj_adverts.js (easylistchina+easylist.txt: 60529) -.mix.dj/jscripts/jquery/mdj_adverts\.js -# @@||miniclipcdn.com/js/advertisement.js (easylistchina+easylist.txt: 60527) -.miniclipcdn.com/js/advertisement\.js -# @@||mgcash.com/common/adblock.js (easylistchina+easylist.txt: 60518) -.mgcash.com/common/adblock\.js -# @@||megawypas.pl/includes/adframe.js (easylistchina+easylist.txt: 60517) -.megawypas.pl/includes/adframe\.js -# @@||megavideodownloader.com/adframe.js (easylistchina+easylist.txt: 60516) -.megavideodownloader.com/adframe\.js -# @@||megahd.me^*/advertisement.js (easylistchina+easylist.txt: 60515) -.megahd.me/.*/advertisement\.js -# @@||megadown.us/advertisement.js (easylistchina+easylist.txt: 60514) -.megadown.us/advertisement\.js -# @@||maxcheaters.com/public/js/jsLoader.js (easylistchina+easylist.txt: 60506) -.maxcheaters.com/public/js/jsLoader\.js -# @@||marketmilitia.org/advertisement.js (easylistchina+easylist.txt: 60500) -.marketmilitia.org/advertisement\.js -# @@||mangakaka.com^*/advertiser.js (easylistchina+easylist.txt: 60499) -.mangakaka.com/.*/advertiser\.js -# @@||mangakaka.com/ad/$subdocument (easylistchina+easylist.txt: 60498) -.mangakaka.com/ad/ -# @@||mangahost.com/ads.js? (easylistchina+easylist.txt: 60497) -.mangahost.com/ads\.js\? -# @@||mangahop.com^$generichide (easylistchina+easylist.txt: 60496) -.mangahop.com -# @@||mangabird.me/sites/default/files/manga/*/advertise-$image (easylistchina+easylist.txt: 60495) -.mangabird.me/sites/default/files/manga/.*/advertise- -# @@||mangabird.com/sites/all/themes/zen/js/advertiser.js (easylistchina+easylist.txt: 60493) -.mangabird.com/sites/all/themes/zen/js/advertiser\.js -# @@||manga2u.co/css/advertiser.js (easylistchina+easylist.txt: 60492) -.manga2u.co/css/advertiser\.js -# @@||mamahd.com/advertisement.js (easylistchina+easylist.txt: 60490) -.mamahd.com/advertisement\.js -# @@||makemehost.com/js/ads.js (easylistchina+easylist.txt: 60489) -.makemehost.com/js/ads\.js -# @@||majorleaguegaming.com^*.png?*=$image (easylistchina+easylist.txt: 60488) -.majorleaguegaming.com/.*\.png\?.*= -# @@||majorleaguegaming.com/live/assets/advertisement-*.js (easylistchina+easylist.txt: 60486) -.majorleaguegaming.com/live/assets/advertisement-.*\.js -# @@||magesy.be/advertisement.js (easylistchina+easylist.txt: 60484) -.magesy.be/advertisement\.js -# @@||macobserver.com/js/adlink.js (easylistchina+easylist.txt: 60482) -.macobserver.com/js/adlink\.js -# @@||lpmanager.com^*/fuckadblock.js (easylistchina+easylist.txt: 60477) -.lpmanager.com/.*/fuckadblock\.js -# @@||lpg-forum.pl/advertise.js (easylistchina+easylist.txt: 60476) -.lpg-forum.pl/advertise\.js -# @@||litecoiner.net/advertisement.js (easylistchina+easylist.txt: 60472) -.litecoiner.net/advertisement\.js -# @@||litecoin-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60471) -.litecoin-faucet.tk/advertisement\.js -# @@||liquidcompass.net/js/advertisement.js (easylistchina+easylist.txt: 60470) -.liquidcompass.net/js/advertisement\.js -# @@||lilfile.com/js/advertise.js (easylistchina+easylist.txt: 60465) -.lilfile.com/js/advertise\.js -# @@||lilfile.com/js/advertise-2.js (easylistchina+easylist.txt: 60464) -.lilfile.com/js/advertise-2\.js -# @@||lifehacker.com.au^*/ads.js (easylistchina+easylist.txt: 60463) -.lifehacker.com.au/.*/ads\.js -# @@||liberallogic101.com/show_ads.js (easylistchina+easylist.txt: 60462) -.liberallogic101.com/show_ads\.js -# @@||leecher.us/assets/img/*/ads/$image (easylistchina+easylist.txt: 60458) -.leecher.us/assets/img/.*/ads/ -# @@||leaguesecretary.com/advertisement.js (easylistchina+easylist.txt: 60457) -.leaguesecretary.com/advertisement\.js -# @@||lasprovincias.es^*/adframe.js (easylistchina+easylist.txt: 60455) -.lasprovincias.es/.*/adframe\.js -# @@||lasexta.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60454) -.lasexta.com/adsxml/ -# @@||kotaku.com.au^*/ads.js (easylistchina+easylist.txt: 60450) -.kotaku.com.au/.*/ads\.js -# @@||koparos.info/ads.php (easylistchina+easylist.txt: 60448) -.koparos.info/ads\.php -# @@||kisscartoon.me/Ads/$subdocument (easylistchina+easylist.txt: 60447) -.kisscartoon.me/Ads/ -# @@||kissanime.com/ads/$image,subdocument (easylistchina+easylist.txt: 60446) -.kissanime.com/ads/ -# @@||kenkenpuzzle.com/assets/ads-$script (easylistchina+easylist.txt: 60445) -.kenkenpuzzle.com/assets/ads- -# @@||kdliker.com/js/advert.js (easylistchina+easylist.txt: 60444) -.kdliker.com/js/advert\.js -# @@||katsomo.fi^*/advertisement.js (easylistchina+easylist.txt: 60443) -.katsomo.fi/.*/advertisement\.js -# @@||katsomo.fi^*/advert.js (easylistchina+easylist.txt: 60442) -.katsomo.fi/.*/advert\.js -# @@||juzupload.com/advert*.js (easylistchina+easylist.txt: 60441) -.juzupload.com/advert.*\.js -# @@||junksport.com/watch/advertisement.js (easylistchina+easylist.txt: 60440) -.junksport.com/watch/advertisement\.js -# @@||juba-get.com^*/advertisement.js (easylistchina+easylist.txt: 60439) -.juba-get.com/.*/advertisement\.js -# @@||jkanime.net^*/advertisement2.js (easylistchina+easylist.txt: 60437) -.jkanime.net/.*/advertisement2\.js -# @@||jkanime.net/assets/js/advertisement.js (easylistchina+easylist.txt: 60436) -.jkanime.net/assets/js/advertisement\.js -# @@||jevvi.es/adblock/$image (easylistchina+easylist.txt: 60434) -.jevvi.es/adblock/ -# @@||iriptv.com/player/ads.js (easylistchina+easylist.txt: 60433) -.iriptv.com/player/ads\.js -# @@||investopedia.com^*/adverts.js (easylistchina+easylist.txt: 60430) -.investopedia.com/.*/adverts\.js -# @@||investopedia.com^*/advertisement.js (easylistchina+easylist.txt: 60429) -.investopedia.com/.*/advertisement\.js -# @@||investopedia.com/public/js/ads.js (easylistchina+easylist.txt: 60427) -.investopedia.com/public/js/ads\.js -# @@||investigationdiscovery.com/shared/ad-enablers/ (easylistchina+easylist.txt: 60426) -.investigationdiscovery.com/shared/ad-enablers/ -# @@||install.wtf/advertisement/advertisement.js (easylistchina+easylist.txt: 60422) -.install.wtf/advertisement/advertisement\.js -# @@||inskinmedia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60421) -.inskinmedia.com/crossdomain\.xml -# @@||incredibox.com/js/fuckadblock.js (easylistchina+easylist.txt: 60414) -.incredibox.com/js/fuckadblock\.js -# @@||incredibox.com/js/advertisement.js (easylistchina+easylist.txt: 60413) -.incredibox.com/js/advertisement\.js -# @@||imgsure.com/ads/banner.jpg? (easylistchina+easylist.txt: 60410) -.imgsure.com/ads/banner\.jpg\? -# @@||imgleech.com/ads/banner.jpg? (easylistchina+easylist.txt: 60409) -.imgleech.com/ads/banner\.jpg\? -# @@||imageontime.com/ads/banner.jpg? (easylistchina+easylist.txt: 60404) -.imageontime.com/ads/banner\.jpg\? -# @@||ilive.to/js/advert*.js (easylistchina+easylist.txt: 60399) -.ilive.to/js/advert.*\.js -# @@||iguide.to/js/advertisement.js (easylistchina+easylist.txt: 60398) -.iguide.to/js/advertisement\.js -# @@||ifirstrow.eu^$script (easylistchina+easylist.txt: 60395) -.ifirstrow.eu -# @@||i-stream.pl^*/advertisement.js (easylistchina+easylist.txt: 60391) -.i-stream.pl/.*/advertisement\.js -# @@||hqpdb.com/ads/banner.jpg? (easylistchina+easylist.txt: 60387) -.hqpdb.com/ads/banner\.jpg\? -# @@||hpfanficarchive.com^*/advertisement.js (easylistchina+easylist.txt: 60386) -.hpfanficarchive.com/.*/advertisement\.js -# @@||hexawebhosting.com/adcode.js (easylistchina+easylist.txt: 60380) -.hexawebhosting.com/adcode\.js -# @@||hentai-foundry.com^*/ads.js (easylistchina+easylist.txt: 60379) -.hentai-foundry.com/.*/ads\.js -# @@||hdmovie14.net/js/ad*.js (easylistchina+easylist.txt: 60378) -.hdmovie14.net/js/ad.*\.js -# @@||hdfree.tv/live/ad.php (easylistchina+easylist.txt: 60377) -.hdfree.tv/live/ad\.php -# @@||hardware.no^$script (easylistchina+easylist.txt: 60374) -.hardware.no -# @@||hardware.no/artikler/$image,~third-party (easylistchina+easylist.txt: 60373) -.hardware.no/artikler/ -# @@||hardware.no/ads/$image (easylistchina+easylist.txt: 60372) -.hardware.no/ads/ -# @@||hallpass.com^*/ads.js (easylistchina+easylist.txt: 60371) -.hallpass.com/.*/ads\.js -# @@||hackintosh.zone/adblock/advertisement.js (easylistchina+easylist.txt: 60369) -.hackintosh.zone/adblock/advertisement\.js -# @@||hackers.co.id/adframe/adframe.js (easylistchina+easylist.txt: 60368) -.hackers.co.id/adframe/adframe\.js -# @@||guygames.com^*/ads.js (easylistchina+easylist.txt: 60367) -.guygames.com/.*/ads\.js -# @@||gofirstrow.eu^*/advertisement.js (easylistchina+easylist.txt: 60359) -.gofirstrow.eu/.*/advertisement\.js -# @@||gofirstrow.eu/advertisement.js (easylistchina+easylist.txt: 60358) -.gofirstrow.eu/advertisement\.js -# @@||go4up.com/advertisement.js (easylistchina+easylist.txt: 60356) -.go4up.com/advertisement\.js -# @@||gizmodo.com.au^*/ads.js (easylistchina+easylist.txt: 60354) -.gizmodo.com.au/.*/ads\.js -# @@||girlsocool.com^*/ads.js (easylistchina+easylist.txt: 60353) -.girlsocool.com/.*/ads\.js -# @@||girlsaskguys.com^*/js/ads. (easylistchina+easylist.txt: 60352) -.girlsaskguys.com/.*/js/ads\. -# @@||girlgames.com^*/ads.js (easylistchina+easylist.txt: 60351) -.girlgames.com/.*/ads\.js -# @@||getdebrid.com/advertisement.js (easylistchina+easylist.txt: 60349) -.getdebrid.com/advertisement\.js -# @@||gdataonline.com/exp/textad.js (easylistchina+easylist.txt: 60345) -.gdataonline.com/exp/textad\.js -# @@||gamespot.com/js/ads.js (easylistchina+easylist.txt: 60344) -.gamespot.com/js/ads\.js -# @@||gameslivetv.com/js/advertisement.js (easylistchina+easylist.txt: 60343) -.gameslivetv.com/js/advertisement\.js -# @@||gameshark.com/images/ads/ (easylistchina+easylist.txt: 60342) -.gameshark.com/images/ads/ -# @@||games.washingtonpost.com/Scripts/$script (easylistchina+easylist.txt: 60341) -.games.washingtonpost.com/Scripts/ -# @@||games.latimes.com/Scripts/advert.js (easylistchina+easylist.txt: 60340) -.games.latimes.com/Scripts/advert\.js -# @@||gamersconnexion.com/js/advert.js (easylistchina+easylist.txt: 60339) -.gamersconnexion.com/js/advert\.js -# @@||gamereactor.net/advertisement.js (easylistchina+easylist.txt: 60338) -.gamereactor.net/advertisement\.js -# @@||gamereactor.$script,~third-party (easylistchina+easylist.txt: 60337) -.gamereactor.*. -# @@||gamecopyworld.eu/games/$script (easylistchina+easylist.txt: 60335) -.gamecopyworld.eu/games/ -# @@||gamecopyworld.com/games/$script (easylistchina+easylist.txt: 60334) -.gamecopyworld.com/games/ -# @@||gallerynova.se^*/advertisement.js (easylistchina+easylist.txt: 60331) -.gallerynova.se/.*/advertisement\.js -# @@||gallery.aethereality.net/advertisement.js (easylistchina+easylist.txt: 60330) -.gallery.aethereality.net/advertisement\.js -# @@||funniermoments.com^$stylesheet (easylistchina+easylist.txt: 60315) -.funniermoments.com -# @@||funniermoments.com/adframe.js (easylistchina+easylist.txt: 60313) -.funniermoments.com/adframe\.js -# @@||freshdown.net/templates/Blaster/img/*/ads/$image (easylistchina+easylist.txt: 60311) -.freshdown.net/templates/Blaster/img/.*/ads/ -# @@||freesportsbet.com/js/advertisement.js (easylistchina+easylist.txt: 60310) -.freesportsbet.com/js/advertisement\.js -# @@||freegamehosting.nl/js/advertisement.js (easylistchina+easylist.txt: 60308) -.freegamehosting.nl/js/advertisement\.js -# @@||freegamehosting.nl/advertisement.js (easylistchina+easylist.txt: 60307) -.freegamehosting.nl/advertisement\.js -# @@||freebitcoin.wmat.pl^*/advertisement.js (easylistchina+easylist.txt: 60306) -.freebitcoin.wmat.pl/.*/advertisement\.js -# @@||freebitco.in^$script (easylistchina+easylist.txt: 60305) -.freebitco.in -# @@||fm.tuba.pl/tuba3/_js/advert.js (easylistchina+easylist.txt: 60297) -.fm.tuba.pl/tuba3/_js/advert\.js -# @@||fitshr.net^$script,stylesheet (easylistchina+easylist.txt: 60294) -.fitshr.net -# @@||firstrow*.eu^$script (easylistchina+easylist.txt: 60292) -.firstrow*./.*\.eu[^\w%.-] -.firstrow*.eu -# @@||firstonetv.com/ads_advertisement.js (easylistchina+easylist.txt: 60290) -.firstonetv.com/ads_advertisement\.js -# @@||filmweb.pl/adbanner/$script (easylistchina+easylist.txt: 60289) -.filmweb.pl/adbanner/ -# @@||filmux.net/ads/banner.jpg? (easylistchina+easylist.txt: 60287) -.filmux.net/ads/banner\.jpg\? -# @@||filmovizija.in^$script,~third-party,xmlhttprequest (easylistchina+easylist.txt: 60286) -.filmovizija.in -# @@||filmovisaprevodom.net/advertisement.js (easylistchina+easylist.txt: 60285) -.filmovisaprevodom.net/advertisement\.js -# @@||fileice.net/js/advertisement.js (easylistchina+easylist.txt: 60282) -.fileice.net/js/advertisement\.js -# @@||filecom.net/advertisement.js (easylistchina+easylist.txt: 60281) -.filecom.net/advertisement\.js -# @@||fhsload.hopto.org^$script,~third-party (easylistchina+easylist.txt: 60280) -.fhsload.hopto.org -# @@||fhscheck.zapto.org^$script,~third-party (easylistchina+easylist.txt: 60279) -.fhscheck.zapto.org -# @@||ffiles.com/images/mmfiles_ (easylistchina+easylist.txt: 60278) -.ffiles.com/images/mmfiles_ -# @@||fastcompany.com/js/advertisement.js (easylistchina+easylist.txt: 60275) -.fastcompany.com/js/advertisement\.js -# @@||fastcolabs.com/js/advertisement.js (easylistchina+easylist.txt: 60274) -.fastcolabs.com/js/advertisement\.js -# @@||fastcoexist.com/js/advertisement.js (easylistchina+easylist.txt: 60273) -.fastcoexist.com/js/advertisement\.js -# @@||fastcodesign.com/js/advertisement.js (easylistchina+easylist.txt: 60272) -.fastcodesign.com/js/advertisement\.js -# @@||fastcocreate.com/js/advertisement.js (easylistchina+easylist.txt: 60271) -.fastcocreate.com/js/advertisement\.js -# @@||ezcast.tv/static/scripts/adscript.js (easylistchina+easylist.txt: 60269) -.ezcast.tv/static/scripts/adscript\.js -# @@||exsite.pl^*/advert.js (easylistchina+easylist.txt: 60268) -.exsite.pl/.*/advert\.js -# @@||exrapidleech.info/templates/$image (easylistchina+easylist.txt: 60266) -.exrapidleech.info/templates/ -# @@||exoclick.com/wp-content/$image,third-party (easylistchina+easylist.txt: 60263) -.exoclick.com/wp-content/ -# @@||exashare.com/ads.html$subdocument (easylistchina+easylist.txt: 60262) -.exashare.com/ads\.html -# @@||eventhubs.com^*.$script (easylistchina+easylist.txt: 60261) -.eventhubs.com/.*\. -# @@||eu5.org^*/advert.js (easylistchina+easylist.txt: 60259) -.eu5.org/.*/advert\.js -# @@||eskago.pl/html/js/advertisement.js (easylistchina+easylist.txt: 60258) -.eskago.pl/html/js/advertisement\.js -# @@||eskago.pl/html/js/adv.bbelements.js (easylistchina+easylist.txt: 60257) -.eskago.pl/html/js/adv\.bbelements\.js -# @@||eskago.pl/html/js/ads-banner.js (easylistchina+easylist.txt: 60256) -.eskago.pl/html/js/ads-banner\.js -# @@||eska.pl^*bbelements.js (easylistchina+easylist.txt: 60255) -.eska.pl/.*bbelements\.js -# @@||eosads.com/adver$script (easylistchina+easylist.txt: 60250) -.eosads.com/adver -# @@||elrellano.com/ad/ad.js (easylistchina+easylist.txt: 60248) -.elrellano.com/ad/ad\.js -# @@||elektrotanya.com/ads/$script,~third-party (easylistchina+easylist.txt: 60247) -.elektrotanya.com/ads/ -# @@||eclypsia.com^$script,~third-party (easylistchina+easylist.txt: 60244) -.eclypsia.com -# @@||ebkimg.com/banners/ (easylistchina+easylist.txt: 60243) -.ebkimg.com/banners/ -# @@||dutplanet.net/ajax/reclamecheck.php?$xmlhttprequest (easylistchina+easylist.txt: 60239) -.dutplanet.net/ajax/reclamecheck\.php\? -# @@||drugs.com^$subdocument,~third-party (easylistchina+easylist.txt: 60238) -.drugs.com -# @@||dressuppink.com^*/ads.js (easylistchina+easylist.txt: 60236) -.dressuppink.com/.*/ads\.js -# @@||dressup.com^*/ads.js (easylistchina+easylist.txt: 60234) -.dressup.com/.*/ads\.js -# @@||doodle.com/builtstatic/*/doodle/js/$script (easylistchina+easylist.txt: 60227) -.doodle.com/builtstatic/.*/doodle/js/ -# @@||dontdrinkandroot.net/js/adframe.js (easylistchina+easylist.txt: 60226) -.dontdrinkandroot.net/js/adframe\.js -# @@||domain.com/ads.html (easylistchina+easylist.txt: 60225) -.domain.com/ads\.html -# @@||dogefaucet.com^*/advertisement.js (easylistchina+easylist.txt: 60223) -.dogefaucet.com/.*/advertisement\.js -# @@||doge-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60221) -.doge-faucet.tk/advertisement\.js -# @@||dizi-mag.com/ads/$subdocument (easylistchina+easylist.txt: 60215) -.dizi-mag.com/ads/ -# @@||dinozap.tv/adimages/ (easylistchina+easylist.txt: 60214) -.dinozap.tv/adimages/ -# @@||destinypublicevents.com/src/advertisement.js (easylistchina+easylist.txt: 60211) -.destinypublicevents.com/src/advertisement\.js -# @@||decomaniacos.es^*/advertisement.js (easylistchina+easylist.txt: 60205) -.decomaniacos.es/.*/advertisement\.js -# @@||d2anfhdgjxf8s1.cloudfront.net/ajs.php?adserver=$script (easylistchina+easylist.txt: 60194) -.d2anfhdgjxf8s1.cloudfront.net/ajs\.php\?adserver= -# @@||crazygallery.info/ads/$script (easylistchina+easylist.txt: 60190) -.crazygallery.info/ads/ -# @@||coolgames.com^*/ads.js (easylistchina+easylist.txt: 60180) -.coolgames.com/.*/ads\.js -# @@||cookinggames.com^*/ads.js (easylistchina+easylist.txt: 60179) -.cookinggames.com/.*/ads\.js -# @@||computerworld.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 60177) -.computerworld.com/www/js/ads/gpt_includes\.js -# @@||coinurl.com/get.php?id=18045 (easylistchina+easylist.txt: 60174) -.coinurl.com/get\.php\?id=18045 -# @@||coincheckin.com/js/adframe.js (easylistchina+easylist.txt: 60172) -.coincheckin.com/js/adframe\.js -# @@||codingcrazy.com/demo/adframe.js (easylistchina+easylist.txt: 60171) -.codingcrazy.com/demo/adframe\.js -# @@||cloudtime.to/banner.php?$script (easylistchina+easylist.txt: 60168) -.cloudtime.to/banner\.php\? -# @@||cityam.com^$generichide (easylistchina+easylist.txt: 60162) -.cityam.com -# @@||cinestrenostv.tv/reproductores/adblock.js (easylistchina+easylist.txt: 60161) -.cinestrenostv.tv/reproductores/adblock\.js -# @@||channel4.com/p/c4_live/VPAIDAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60153) -.channel4.com/p/c4_live/VPAIDAdRenderer\.swf -# @@||channel4.com/p/c4_live/Video2AdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60152) -.channel4.com/p/c4_live/Video2AdRenderer\.swf -# @@||channel4.com/p/c4_live/UberlayAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60151) -.channel4.com/p/c4_live/UberlayAdRenderer\.swf -# @@||channel4.com/p/c4_live/PauseAdExtension.swf$object-subrequest (easylistchina+easylist.txt: 60150) -.channel4.com/p/c4_live/PauseAdExtension\.swf -# @@||channel4.com/p/c4_live/ExternalHTMLAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60149) -.channel4.com/p/c4_live/ExternalHTMLAdRenderer\.swf -# @@||channel4.com/ad/l/1?|$object-subrequest (easylistchina+easylist.txt: 60148) -.channel4.com/ad/l/1\?$ -# @@||celogeek.com/stylesheets/blogads.css (easylistchina+easylist.txt: 60145) -.celogeek.com/stylesheets/blogads\.css -# @@||cdnco.us^$script (easylistchina+easylist.txt: 60144) -.cdnco.us -# @@||cdn-seekingalpha.com^*/ads.js (easylistchina+easylist.txt: 60140) -.cdn-seekingalpha.com/.*/ads\.js -# @@||catchvideo.net/adframe.js (easylistchina+easylist.txt: 60137) -.catchvideo.net/adframe\.js -# @@||casadossegredos.tv/ads/ads_$subdocument (easylistchina+easylist.txt: 60135) -.casadossegredos.tv/ads/ads_ -# @@||captchme.net/js/advertisement.js (easylistchina+easylist.txt: 60134) -.captchme.net/js/advertisement\.js -# @@||captchme.net/js/advertisement-min.js (easylistchina+easylist.txt: 60133) -.captchme.net/js/advertisement-min\.js -# @@||bulletproofserving.com/scripts/ads.js (easylistchina+easylist.txt: 60128) -.bulletproofserving.com/scripts/ads\.js -# @@||btspread.com/eroex.js (easylistchina+easylist.txt: 60126) -.btspread.com/eroex\.js -# @@||btava.com^$script (easylistchina+easylist.txt: 60125) -.btava.com -# @@||boxxod.net/advertisement.js (easylistchina+easylist.txt: 60123) -.boxxod.net/advertisement\.js -# @@||boincstats.com/js/adframe.js (easylistchina+easylist.txt: 60122) -.boincstats.com/js/adframe\.js -# @@||bitcoiner.net/advertisement.js (easylistchina+easylist.txt: 60118) -.bitcoiner.net/advertisement\.js -# @@||binbox.io/adblock.js (easylistchina+easylist.txt: 60111) -.binbox.io/adblock\.js -# @@||binbox.io/ad/$subdocument (easylistchina+easylist.txt: 60110) -.binbox.io/ad/ -# @@||bilzonen.dk/scripts/ads.js (easylistchina+easylist.txt: 60109) -.bilzonen.dk/scripts/ads\.js -# @@||bestream.tv/advert*.js (easylistchina+easylist.txt: 60105) -.bestream.tv/advert.*\.js -# @@||bestofmedia.com^*/advertisement.js (easylistchina+easylist.txt: 60104) -.bestofmedia.com/.*/advertisement\.js -# @@||beemp3s.org/adreactor/$script (easylistchina+easylist.txt: 60100) -.beemp3s.org/adreactor/ -# @@||beelink.in/advertisement.js (easylistchina+easylist.txt: 60099) -.beelink.in/advertisement\.js -# @@||bdrip.ws/web_data/*/ad$image (easylistchina+easylist.txt: 60097) -.bdrip.ws/web_data/.*/ad -# @@||backin.net/advertisement.js (easylistchina+easylist.txt: 60094) -.backin.net/advertisement\.js -# @@||avforums.com/*ad$script (easylistchina+easylist.txt: 60092) -.avforums.com/.*ad -# @@||autolikergroup.com/advertisement.js (easylistchina+easylist.txt: 60090) -.autolikergroup.com/advertisement\.js -# @@||autogespot.*/JavaScript/ads.js? (easylistchina+easylist.txt: 60089) -.autogespot.*./(.*/)?JavaScript/ads\.js\? -# @@||auroravid.to/banner.php (easylistchina+easylist.txt: 60088) -.auroravid.to/banner\.php -# @@||auditude.com/player/js/lib/aud.html5player.js (easylistchina+easylist.txt: 60087) -.auditude.com/player/js/lib/aud\.html5player\.js -# @@||atresplayer.com/static/js/advertisement.js (easylistchina+easylist.txt: 60085) -.atresplayer.com/static/js/advertisement\.js -# @@||atresplayer.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60084) -.atresplayer.com/adsxml/ -# @@||atresmedia.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60083) -.atresmedia.com/adsxml/ -# @@||aseanlegacy.net/images/ads.png (easylistchina+easylist.txt: 60081) -.aseanlegacy.net/images/ads\.png -# @@||aseanlegacy.net/assets/advertisement.js (easylistchina+easylist.txt: 60080) -.aseanlegacy.net/assets/advertisement\.js -# @@||aseanlegacy.net/ad*.js (easylistchina+easylist.txt: 60079) -.aseanlegacy.net/ad.*\.js -# @@||arto.com/includes/js/adtech.de/script.axd/adframe.js? (easylistchina+easylist.txt: 60078) -.arto.com/includes/js/adtech\.de/script\.axd/adframe\.js\? -# @@||ar51.eu/ad/advertisement.js (easylistchina+easylist.txt: 60077) -.ar51.eu/ad/advertisement\.js -# @@||apkmirror.com/wp-content/themes/APKMirror/js/ads.js (easylistchina+easylist.txt: 60073) -.apkmirror.com/wp-content/themes/APKMirror/js/ads\.js -# @@||anti-adblock-scripts.googlecode.com/files/adscript.js (easylistchina+easylist.txt: 60072) -.anti-adblock-scripts.googlecode.com/files/adscript\.js -# @@||antena3.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60071) -.antena3.com/adsxml/ -# @@||anisearch.com^*/ads.js? (easylistchina+easylist.txt: 60068) -.anisearch.com/.*/ads\.js\? -# @@||animesproject.com^*/fuckadblock.js (easylistchina+easylist.txt: 60065) -.animesproject.com/.*/fuckadblock\.js -# @@||animecrave.com/_content/$script (easylistchina+easylist.txt: 60063) -.animecrave.com/_content/ -# @@||ancensored.com/sites/all/modules/player/images/ad.jpg (easylistchina+easylist.txt: 60059) -.ancensored.com/sites/all/modules/player/images/ad\.jpg -# @@||amk.to/js/adcode.js? (easylistchina+easylist.txt: 60058) -.amk.to/js/adcode\.js\? -# @@||amazonaws.com/ssbss.ss/$script (easylistchina+easylist.txt: 60055) -.amazonaws.com/ssbss\.ss/ -# @@||amazonaws.com/atzuma/ajs.php?adserver=$script (easylistchina+easylist.txt: 60054) -.amazonaws.com/atzuma/ajs\.php\?adserver= -# @@||allkpop.com/ads.js (easylistchina+easylist.txt: 60051) -.allkpop.com/ads\.js -# @@||alcohoin-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60048) -.alcohoin-faucet.tk/advertisement\.js -# @@||agar.io^*/advertisement.js (easylistchina+easylist.txt: 60042) -.agar.io/.*/advertisement\.js -# @@||afterburnerleech.com/js/show_ads.js (easylistchina+easylist.txt: 60041) -.afterburnerleech.com/js/show_ads\.js -# @@||afdah.tv^$script (easylistchina+easylist.txt: 60038) -.afdah.tv -# @@||afdah.com^$script (easylistchina+easylist.txt: 60037) -.afdah.com -# @@||afdah.co^$script (easylistchina+easylist.txt: 60036) -.afdah.co -# @@||adserver.liverc.com/getBannerVerify.js (easylistchina+easylist.txt: 60026) -.adserver.liverc.com/getBannerVerify\.js -# @@||ads.nipr.ac.jp^$~third-party (easylistchina+easylist.txt: 60015) -.ads.nipr.ac.jp -# @@||ads.clubedohardware.com.br/www/delivery/$script (easylistchina+easylist.txt: 60010) -.ads.clubedohardware.com.br/www/delivery/ -# @@||adf.ly^$generichide (easylistchina+easylist.txt: 59992) -.adf.ly -# @@||adexprt.com/cdn3/*&m=magnet$subdocument (easylistchina+easylist.txt: 59991) -.adexprt.com/cdn3/.*&m=magnet -# @@||adconscious.com/js/fuckadblock.js (easylistchina+easylist.txt: 59990) -.adconscious.com/js/fuckadblock\.js -# @@||ad.leadbolt.net/show_cu.js (easylistchina+easylist.txt: 59983) -.ad.leadbolt.net/show_cu\.js -# @@||ad.filmweb.pl^$script (easylistchina+easylist.txt: 59982) -.ad.filmweb.pl -# @@||9xbuddy.com/js/ads.js (easylistchina+easylist.txt: 59978) -.9xbuddy.com/js/ads\.js -# @@||95.211.184.210/js/advertisement.js (easylistchina+easylist.txt: 59973) -.95.211.184.210/js/advertisement\.js -# @@||4sysops.com^*/adframe.js (easylistchina+easylist.txt: 59971) -.4sysops.com/.*/adframe\.js -# @@||4shared.com^$script,xmlhttprequest (easylistchina+easylist.txt: 59970) -.4shared.com -# @@||4fuckr.com^*/adframe.js (easylistchina+easylist.txt: 59969) -.4fuckr.com/.*/adframe\.js -# @@||360haven.com/adframe.js (easylistchina+easylist.txt: 59967) -.360haven.com/adframe\.js -# @@/wp-prevent-adblocker/*$script,~third-party (easylistchina+easylist.txt: 59938) -/(.*/)?wp-prevent-adblocker/.* -# @@/wp-content/plugins/wordpress-adblock-blocker/adframe.js$~third-party (easylistchina+easylist.txt: 59937) -/(.*/)?wp-content/plugins/wordpress-adblock-blocker/adframe\.js -# @@/wp-content/plugins/simple-adblock-notice/*$script,~third-party (easylistchina+easylist.txt: 59936) -/(.*/)?wp-content/plugins/simple-adblock-notice/.* -# @@/wp-content/plugins/blockalyzer-adblock-counter/*$image,script,~third-party (easylistchina+easylist.txt: 59935) -/(.*/)?wp-content/plugins/blockalyzer-adblock-counter/.* -# @@/wp-content/plugins/anti-block/js/advertisement.js$~third-party (easylistchina+easylist.txt: 59934) -/(.*/)?wp-content/plugins/anti-block/js/advertisement\.js -# @@/wp-content/plugins/adblock-notify-by-bweb/js/advertisement.js$~third-party (easylistchina+easylist.txt: 59933) -/(.*/)?wp-content/plugins/adblock-notify-by-bweb/js/advertisement\.js -# @@/blockalyzer-adblock-counter/js/advertisement.js$script,~third-party (easylistchina+easylist.txt: 59925) -/(.*/)?blockalyzer-adblock-counter/js/advertisement\.js -# @@/adBlockDetector/*$~third-party (easylistchina+easylist.txt: 59914) -/(.*/)?adBlockDetector/.* -# @@||zillow.com/ads/FlexAd.htm?did=$subdocument (easylistchina+easylist.txt: 59878) -.zillow.com/ads/FlexAd\.htm\?did= -# @@||ziehl-abegg.com/images/img_adverts/$~third-party (easylistchina+easylist.txt: 59877) -.ziehl-abegg.com/images/img_adverts/ -# @@||zeenews.india.com/ads/jw/player.swf$object (easylistchina+easylist.txt: 59876) -.zeenews.india.com/ads/jw/player\.swf -# @@||zedo.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59873) -.zedo.com/crossdomain\.xml -# @@||zattoo.com/advertising/channelswitch/$subdocument (easylistchina+easylist.txt: 59871) -.zattoo.com/advertising/channelswitch/ -# @@||zattoo.com/?advideo/*;vidAS=PRE_ROLL;$object-subrequest (easylistchina+easylist.txt: 59870) -.zattoo.com/\?advideo/.*;vidAS=PRE_ROLL; -# @@||zap2it.com/ads/newsletter/$image,~third-party (easylistchina+easylist.txt: 59869) -.zap2it.com/ads/newsletter/ -# @@||yumenetworks.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59867) -.yumenetworks.com/crossdomain\.xml -# @@||youtube.com^*_adsense_$xmlhttprequest (easylistchina+easylist.txt: 59860) -.youtube.com/.*_adsense_ -# @@||youtube.com/yt/css/www-advertise.css (easylistchina+easylist.txt: 59859) -.youtube.com/yt/css/www-advertise\.css -# @@||youtube.com/yt/advertise/medias/images/$image (easylistchina+easylist.txt: 59858) -.youtube.com/yt/advertise/medias/images/ -# @@||yokosonews.com/files/cache/ (easylistchina+easylist.txt: 59856) -.yokosonews.com/files/cache/ -# @@||ykhandler.com/adframe.js (easylistchina+easylist.txt: 59855) -.ykhandler.com/adframe\.js -# @@||yimg.com^*/java/promotions/js/ad_eo_1.1.js (easylistchina+easylist.txt: 59854) -.yimg.com/.*/java/promotions/js/ad_eo_1\.1\.js -# @@||yimg.com^*&yat/js/ads_ (easylistchina+easylist.txt: 59851) -.yimg.com/.*&yat/js/ads_ -# @@||yimg.com/zz/combo?*&*.js (easylistchina+easylist.txt: 59850) -.yimg.com/zz/combo\?.*&.*\.js -# @@||yellupload.com/yell/videoads/yellvideoplayer.swf? (easylistchina+easylist.txt: 59846) -.yellupload.com/yell/videoads/yellvideoplayer\.swf\? -# @@||yellupload.com/yell/videoads/*.flv| (easylistchina+easylist.txt: 59845) -.yellupload.com/yell/videoads/.*\.flv$ -# @@||yellowpages.com.mt/Images/Design/Buttons/advert.png (easylistchina+easylist.txt: 59844) -.yellowpages.com.mt/Images/Design/Buttons/advert\.png -# @@||yahoo.net/1/adnetwork/$object-subrequest (easylistchina+easylist.txt: 59841) -.yahoo.net/1/adnetwork/ -# @@||yahoo.com/combo?$stylesheet (easylistchina+easylist.txt: 59840) -.yahoo.com/combo\? -# @@||xbox.com/assets/ad/$image,~third-party (easylistchina+easylist.txt: 59837) -.xbox.com/assets/ad/ -# @@||www.networkadvertising.org/choices/|$document (easylistchina+easylist.txt: 59835) -.www.networkadvertising.org/choices/$ -# @@||www.google.com/ads/preferences/$image,script,subdocument (easylistchina+easylist.txt: 59834) -.www.google.com/ads/preferences/ -# @@||www.google.*/settings/u/0/ads/preferences/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59833) -.www.google.*./(.*/)?settings/u/0/ads/preferences/ -# @@||www.google.*/search?$subdocument (easylistchina+easylist.txt: 59832) -.www.google.*./(.*/)?search\? -# @@||www.google.*/aclk?*&adurl=$subdocument,~third-party (easylistchina+easylist.txt: 59831) -.www.google.*./(.*/)?aclk\?.*&adurl= -# @@||www.facebook.com/ad.*^ajaxpipe^$subdocument,~third-party (easylistchina+easylist.txt: 59830) -.www.facebook.com/ad\..*[^\w%.-]ajaxpipe[^\w%.-] -# @@||wrapper.teamxbox.com/a?size=headermainad (easylistchina+easylist.txt: 59828) -.wrapper.teamxbox.com/a\?size=headermainad -# @@||wpthemedetector.com/ad/$~third-party (easylistchina+easylist.txt: 59827) -.wpthemedetector.com/ad/ -# @@||wp.com/_static/*/criteo.js (easylistchina+easylist.txt: 59823) -.wp.com/_static/.*/criteo\.js -# @@||wortech.ac.uk/publishingimages/adverts/ (easylistchina+easylist.txt: 59822) -.wortech.ac.uk/publishingimages/adverts/ -# @@||worldstarhiphop.com^*/dj2.swf (easylistchina+easylist.txt: 59821) -.worldstarhiphop.com/.*/dj2\.swf -# @@||wisegeek.com/res/contentad/ (easylistchina+easylist.txt: 59820) -.wisegeek.com/res/contentad/ -# @@||wirefly.com/_images/ads/ (easylistchina+easylist.txt: 59819) -.wirefly.com/_images/ads/ -# @@||wired.com^*/cn-fe-ads/cn.dart.js (easylistchina+easylist.txt: 59818) -.wired.com/.*/cn-fe-ads/cn\.dart\.js -# @@||winnipegsun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59817) -.winnipegsun.com/assets/js/dfp\.js\? -# @@||williamsauction.com/Resources/images/ads/$~third-party (easylistchina+easylist.txt: 59816) -.williamsauction.com/Resources/images/ads/ -# @@||wikia.nocookie.net^*/images/$image (easylistchina+easylist.txt: 59815) -.wikia.nocookie.net/.*/images/ -# @@||wikia.com/__spotlights/spc.php?$xmlhttprequest (easylistchina+easylist.txt: 59814) -.wikia.com/__spotlights/spc\.php\? -# @@||widgetserver.com/syndication/get_widget.html?*&widget.adplacement=$subdocument (easylistchina+easylist.txt: 59813) -.widgetserver.com/syndication/get_widget\.html\?.*&widget\.adplacement= -# @@||widgets.cbslocal.com/player/embed?affiliate=$subdocument (easylistchina+easylist.txt: 59811) -.widgets.cbslocal.com/player/embed\?affiliate= -# @@||widget.slide.com^*/ads/*/preroll.swf (easylistchina+easylist.txt: 59810) -.widget.slide.com/.*/ads/.*/preroll\.swf -# @@||widget.breakingburner.com/ad/$subdocument (easylistchina+easylist.txt: 59809) -.widget.breakingburner.com/ad/ -# @@||whittakersworldwide.com/site-media/advertisements/ (easylistchina+easylist.txt: 59807) -.whittakersworldwide.com/site-media/advertisements/ -# @@||whitepages.com^*/google_adsense.js? (easylistchina+easylist.txt: 59806) -.whitepages.com/.*/google_adsense\.js\? -# @@||wellsfargo.com/img/ads/$~third-party (easylistchina+easylist.txt: 59805) -.wellsfargo.com/img/ads/ -# @@||wearetennis.com/pages/home/img/ad-$image (easylistchina+easylist.txt: 59802) -.wearetennis.com/pages/home/img/ad- -# @@||washingtonpost.com^*=/ad/audsci.js (easylistchina+easylist.txt: 59801) -.washingtonpost.com/.*=/ad/audsci\.js -# @@||washingtonpost.com/wpost2/css/combo?*/ads.css (easylistchina+easylist.txt: 59800) -.washingtonpost.com/wpost2/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wpost/css/combo?*/ads.css (easylistchina+easylist.txt: 59799) -.washingtonpost.com/wpost/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wp-srv/ad/wpni_generic_ad.js (easylistchina+easylist.txt: 59798) -.washingtonpost.com/wp-srv/ad/wpni_generic_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp_config.js (easylistchina+easylist.txt: 59797) -.washingtonpost.com/wp-srv/ad/wp_config\.js -# @@||washingtonpost.com/wp-srv/ad/wp_ad.js (easylistchina+easylist.txt: 59796) -.washingtonpost.com/wp-srv/ad/wp_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp.js (easylistchina+easylist.txt: 59795) -.washingtonpost.com/wp-srv/ad/wp\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks_config.js (easylistchina+easylist.txt: 59794) -.washingtonpost.com/wp-srv/ad/textlinks_config\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks.js (easylistchina+easylist.txt: 59793) -.washingtonpost.com/wp-srv/ad/textlinks\.js -# @@||washingtonpost.com/wp-srv/ad/textlink_driver.js (easylistchina+easylist.txt: 59792) -.washingtonpost.com/wp-srv/ad/textlink_driver\.js -# @@||washingtonpost.com/wp-srv/ad/generic_ad.js (easylistchina+easylist.txt: 59791) -.washingtonpost.com/wp-srv/ad/generic_ad\.js -# @@||washingtonpost.com/wp-adv/advertisers/russianow/ (easylistchina+easylist.txt: 59790) -.washingtonpost.com/wp-adv/advertisers/russianow/ -# @@||wappalyzer.com/sites/default/files/icons/$image (easylistchina+easylist.txt: 59789) -.wappalyzer.com/sites/default/files/icons/ -# @@||walmartmoneycard.com^*/shared/ad_rotater.swf (easylistchina+easylist.txt: 59788) -.walmartmoneycard.com/.*/shared/ad_rotater\.swf -# @@||wallpapersmania.com/ad/$image,~third-party (easylistchina+easylist.txt: 59787) -.wallpapersmania.com/ad/ -# @@||wahooads.com/Ads.nsf/$~third-party (easylistchina+easylist.txt: 59786) -.wahooads.com/Ads\.nsf/ -# @@||wahoha.com^$~third-party (easylistchina+easylist.txt: 59785) -.wahoha.com -# @@||vtstage.cbsinteractive.com/plugins/*_adplugin.swf (easylistchina+easylist.txt: 59782) -.vtstage.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vswebapp.com^$~third-party (easylistchina+easylist.txt: 59781) -.vswebapp.com -# @@||vombasavers.com^*.swf?clickTAG=$object,~third-party (easylistchina+easylist.txt: 59780) -.vombasavers.com/.*\.swf\?clickTAG= -# @@||vmagazine.com/web/css/ads.css (easylistchina+easylist.txt: 59779) -.vmagazine.com/web/css/ads\.css -# @@||vk.com/ads?act=$~third-party (easylistchina+easylist.txt: 59777) -.vk.com/ads\?act= -# @@||vizanime.com/ad/get_ads? (easylistchina+easylist.txt: 59776) -.vizanime.com/ad/get_ads\? -# @@||vitalitymall.co.za/images/adrotator/ (easylistchina+easylist.txt: 59775) -.vitalitymall.co.za/images/adrotator/ -# @@||vistek.ca/ads/ (easylistchina+easylist.txt: 59774) -.vistek.ca/ads/ -# @@||virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery.internads.js (easylistchina+easylist.txt: 59773) -.virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery\.internads\.js -# @@||vindicoasset.edgesuite.net/repository/campaigncreative/*/instreamad/$object-subrequest (easylistchina+easylist.txt: 59772) -.vindicoasset.edgesuite.net/repository/campaigncreative/.*/instreamad/ -# @@||villermen.com/minecraft/banner/banner.php$image (easylistchina+easylist.txt: 59771) -.villermen.com/minecraft/banner/banner\.php -# @@||vidtech.cbsinteractive.com/plugins/*_adplugin.swf (easylistchina+easylist.txt: 59770) -.vidtech.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vidspot.net/tmp/status.html?*upload=file$subdocument (easylistchina+easylist.txt: 59769) -.vidspot.net/tmp/status\.html\?.*upload=file -# @@||vidspot.net/cgi-bin/upload.cgi?upload_id=*&X-Progress-ID=*&js_on=*&utype=*&upload_type=$subdocument (easylistchina+easylist.txt: 59768) -.vidspot.net/cgi-bin/upload\.cgi\?upload_id=.*&X-Progress-ID=.*&js_on=.*&utype=.*&upload_type= -# @@||vidspot.net/builtin-$subdocument (easylistchina+easylist.txt: 59767) -.vidspot.net/builtin- -# @@||vidspot.net/blank.html|$subdocument (easylistchina+easylist.txt: 59766) -.vidspot.net/blank\.html$ -# @@||vidible.tv/stage/$media,object,other (easylistchina+easylist.txt: 59765) -.vidible.tv/stage/ -# @@||vidible.tv/prod/$media,object,other (easylistchina+easylist.txt: 59763) -.vidible.tv/prod/ -# @@||videosxml.mobileads.indiatimes.com^$object-subrequest (easylistchina+easylist.txt: 59762) -.videosxml.mobileads.indiatimes.com -# @@||video.nbcuni.com^*/inext_ad_engine/ad_engine_extension.swf (easylistchina+easylist.txt: 59758) -.video.nbcuni.com/.*/inext_ad_engine/ad_engine_extension\.swf -# @@||video.nbcuni.com^*/ad_engine_extension_nbc.swf (easylistchina+easylist.txt: 59757) -.video.nbcuni.com/.*/ad_engine_extension_nbc\.swf -# @@||video.economist.com/adfinder.jsp? (easylistchina+easylist.txt: 59756) -.video.economist.com/adfinder\.jsp\? -# @@||vidcoin.com/adserver/$subdocument,xmlhttprequest (easylistchina+easylist.txt: 59755) -.vidcoin.com/adserver/ -# @@||viamichelin.*/static/advert/sponsoring/itinerarypage/itinerarypage.js (easylistchina+easylist.txt: 59754) -.viamichelin.*./(.*/)?static/advert/sponsoring/itinerarypage/itinerarypage\.js -# @@||viamichelin.*/static/advert/afsquery/afsquery.js (easylistchina+easylist.txt: 59753) -.viamichelin.*./(.*/)?static/advert/afsquery/afsquery\.js -# @@||viamichelin.*/rentacar.js (easylistchina+easylist.txt: 59752) -.viamichelin.*./(.*/)?rentacar\.js -# @@||veetle.com/images/common/ads/ (easylistchina+easylist.txt: 59749) -.veetle.com/images/common/ads/ -# @@||vanityfair.com/ads/js/cn.dart.bun.min.js (easylistchina+easylist.txt: 59748) -.vanityfair.com/ads/js/cn\.dart\.bun\.min\.js -# @@||vancouversun.com/js/adsync/adsynclibrary.js (easylistchina+easylist.txt: 59747) -.vancouversun.com/js/adsync/adsynclibrary\.js -# @@||valueram.com/banners/ads/ (easylistchina+easylist.txt: 59746) -.valueram.com/banners/ads/ -# @@||vagazette.com/hive/images/adv_ (easylistchina+easylist.txt: 59745) -.vagazette.com/hive/images/adv_ -# @@||vad.go.com/dynamicvideoad?$object-subrequest (easylistchina+easylist.txt: 59744) -.vad.go.com/dynamicvideoad\? -# @@||vacationstarter.com/hive/images/adv_ (easylistchina+easylist.txt: 59743) -.vacationstarter.com/hive/images/adv_ -# @@||v.fwmrm.net/p/espn_live/$object-subrequest (easylistchina+easylist.txt: 59741) -.v.fwmrm.net/p/espn_live/ -# @@||v.fwmrm.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59740) -.v.fwmrm.net/crossdomain\.xml -# @@||utdallas.edu^*/banner.js (easylistchina+easylist.txt: 59736) -.utdallas.edu/.*/banner\.js -# @@||utdallas.edu/maps/images/img/$image (easylistchina+easylist.txt: 59735) -.utdallas.edu/maps/images/img/ -# @@||utdallas.edu/locator/maps/$image (easylistchina+easylist.txt: 59734) -.utdallas.edu/locator/maps/ -# @@||utarget.co.uk/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59733) -.utarget.co.uk/crossdomain\.xml -# @@||usps.com/adserver/ (easylistchina+easylist.txt: 59732) -.usps.com/adserver/ -# @@||usanetwork.com^*/usanetwork_ads.s_code.js? (easylistchina+easylist.txt: 59731) -.usanetwork.com/.*/usanetwork_ads\.s_code\.js\? -# @@||urbanog.com/banners/$image (easylistchina+easylist.txt: 59730) -.urbanog.com/banners/ -# @@||uploaded.net/affiliate/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59729) -.uploaded.net/affiliate/ -# @@||upload.wikimedia.org/wikipedia/ (easylistchina+easylist.txt: 59728) -.upload.wikimedia.org/wikipedia/ -# @@||upc-cablecom.ch^*.swf?clicktag=http$object (easylistchina+easylist.txt: 59727) -.upc-cablecom.ch/.*\.swf\?clicktag=http -# @@||undsports.com/ads2/$image (easylistchina+easylist.txt: 59726) -.undsports.com/ads2/ -# @@||ultrabrown.com/images/adheader.jpg (easylistchina+easylist.txt: 59725) -.ultrabrown.com/images/adheader\.jpg -# @@||ultimate-guitar.com/js/ug_ads.js (easylistchina+easylist.txt: 59724) -.ultimate-guitar.com/js/ug_ads\.js -# @@||ukbride.co.uk/css/*/adverts.css (easylistchina+easylist.txt: 59723) -.ukbride.co.uk/css/.*/adverts\.css -# @@||uillinois.edu/eas/ (easylistchina+easylist.txt: 59722) -.uillinois.edu/eas/ -# @@||ucaster.eu/static/scripts/adscript.js (easylistchina+easylist.txt: 59721) -.ucaster.eu/static/scripts/adscript\.js -# @@||twogag.com/comics/$image,~third-party (easylistchina+easylist.txt: 59719) -.twogag.com/comics/ -# @@||twitvid.com/mediaplayer_*.swf? (easylistchina+easylist.txt: 59718) -.twitvid.com/mediaplayer_.*\.swf\? -# @@||twinspires.com/php/$subdocument,~third-party (easylistchina+easylist.txt: 59717) -.twinspires.com/php/ -# @@||tvnz.co.nz/*/advertisement.js (easylistchina+easylist.txt: 59716) -.tvnz.co.nz/.*/advertisement\.js -# @@||tvgorge.com^*/adplayer.swf (easylistchina+easylist.txt: 59715) -.tvgorge.com/.*/adplayer\.swf -# @@||tv-kino.net/wp-content/themes/*/advertisement.js (easylistchina+easylist.txt: 59714) -.tv-kino.net/wp-content/themes/.*/advertisement\.js -# @@||tut.by/uppod/frameid406/ads1/ (easylistchina+easylist.txt: 59713) -.tut.by/uppod/frameid406/ads1/ -# @@||tudouui.com/bin/player2/*&adsourceid= (easylistchina+easylist.txt: 59706) -.tudouui.com/bin/player2/.*&adsourceid= -# @@||tubemogul.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59705) -.tubemogul.com/crossdomain\.xml -# @@||tubemogul.com/bootloader/tubemogulflowplayer.swf$object-subrequest (easylistchina+easylist.txt: 59704) -.tubemogul.com/bootloader/tubemogulflowplayer\.swf -# @@||trutv.com/includes/banners/de/video/*.ad|$object-subrequest (easylistchina+easylist.txt: 59703) -.trutv.com/includes/banners/de/video/.*\.ad$ -# @@||trustedreviews.com^*/adtech.js (easylistchina+easylist.txt: 59702) -.trustedreviews.com/.*/adtech\.js -# @@||trulia.com/modules/ad_agents_$xmlhttprequest (easylistchina+easylist.txt: 59701) -.trulia.com/modules/ad_agents_ -# @@||trifort.org/ads/$~third-party (easylistchina+easylist.txt: 59700) -.trifort.org/ads/ -# @@||trialpay.com/js/advertiser.js (easylistchina+easylist.txt: 59699) -.trialpay.com/js/advertiser\.js -# @@||tremor.nuggad.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59697) -.tremor.nuggad.net/crossdomain\.xml -# @@||travidia.com/ss-page/ (easylistchina+easylist.txt: 59696) -.travidia.com/ss-page/ -# @@||travidia.com/fsi/page.aspx?$subdocument (easylistchina+easylist.txt: 59695) -.travidia.com/fsi/page\.aspx\? -# @@||traumagame.com/trauma_data/ads/ad2.jpg (easylistchina+easylist.txt: 59691) -.traumagame.com/trauma_data/ads/ad2\.jpg -# @@||translate.google.com/translate/static/*-ads/ (easylistchina+easylist.txt: 59690) -.translate.google.com/translate/static/.*-ads/ -# @@||translate.google.*/translate_*&q=$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59689) -.translate.google.*./(.*/)?translate_.*&q= -# @@||traktorpool.de^*/advert. (easylistchina+easylist.txt: 59688) -.traktorpool.de/.*/advert\. -# @@||traktorpool.de/scripts/advert/ (easylistchina+easylist.txt: 59687) -.traktorpool.de/scripts/advert/ -# @@||tradecarview.com/material/housead/$image (easylistchina+easylist.txt: 59684) -.tradecarview.com/material/housead/ -# @@||trade-a-plane.com/AdBox/js/jquery.TAP_AdBox.js (easylistchina+easylist.txt: 59683) -.trade-a-plane.com/AdBox/js/jquery\.TAP_AdBox\.js -# @@||toshiba.*^banner_id^$subdocument (easylistchina+easylist.txt: 59681) -.toshiba.*./(.*[^\w%.-])?banner_id[^\w%.-] -# @@||torontosun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59680) -.torontosun.com/assets/js/dfp\.js\? -# @@||topusajobs.com/banners/ (easylistchina+easylist.txt: 59679) -.topusajobs.com/banners/ -# @@||topgear.com^*/ads.min.js (easylistchina+easylist.txt: 59678) -.topgear.com/.*/ads\.min\.js -# @@||toongoggles.com/getads?$xmlhttprequest (easylistchina+easylist.txt: 59677) -.toongoggles.com/getads\? -# @@||toongames.com/advertising/toon-google-preloader.swf$object (easylistchina+easylist.txt: 59676) -.toongames.com/advertising/toon-google-preloader\.swf -# @@||tooltrucks.com/banners/$image,~third-party (easylistchina+easylist.txt: 59675) -.tooltrucks.com/banners/ -# @@||tooltrucks.com/ads/$image,~third-party (easylistchina+easylist.txt: 59674) -.tooltrucks.com/ads/ -# @@||tntexpress.com.au^*/marketing/banners/ (easylistchina+easylist.txt: 59671) -.tntexpress.com.au/.*/marketing/banners/ -# @@||tnol.com/adimages/digitaledition/$object-subrequest (easylistchina+easylist.txt: 59670) -.tnol.com/adimages/digitaledition/ -# @@||tm.tradetracker.net/tag?$script (easylistchina+easylist.txt: 59669) -.tm.tradetracker.net/tag\? -# @@||tkcarsites.com/soba/bannersservice (easylistchina+easylist.txt: 59668) -.tkcarsites.com/soba/bannersservice -# @@||tinysubversions.com/clickbait/adjs.json (easylistchina+easylist.txt: 59667) -.tinysubversions.com/clickbait/adjs\.json -# @@||tinbuadserv.com/v3/serve.php?$script (easylistchina+easylist.txt: 59666) -.tinbuadserv.com/v3/serve\.php\? -# @@||tinbuadserv.com/js/integrate/ads_common.js (easylistchina+easylist.txt: 59665) -.tinbuadserv.com/js/integrate/ads_common\.js -# @@||timesofmalta.com/videoads/*preroll.flv$object-subrequest (easylistchina+easylist.txt: 59664) -.timesofmalta.com/videoads/.*preroll\.flv -# @@||timeout.com/images/ads/weather/ (easylistchina+easylist.txt: 59663) -.timeout.com/images/ads/weather/ -# @@||timeinc.net^*/tii_ads.js (easylistchina+easylist.txt: 59662) -.timeinc.net/.*/tii_ads\.js -# @@||tiads.timeinc.net/ads/tgx.js (easylistchina+easylist.txt: 59658) -.tiads.timeinc.net/ads/tgx\.js -# @@||thunderheadeng.com/wp-content/uploads/*300x250 (easylistchina+easylist.txt: 59657) -.thunderheadeng.com/wp-content/uploads/.*300x250 -# @@||thrifty.co.uk/bannerads/ (easylistchina+easylist.txt: 59655) -.thrifty.co.uk/bannerads/ -# @@||thomsonlocal.com/js/adsense-min.js (easylistchina+easylist.txt: 59654) -.thomsonlocal.com/js/adsense-min\.js -# @@||thomann.de/thumb/*/pics/adv/adv_image_ (easylistchina+easylist.txt: 59653) -.thomann.de/thumb/.*/pics/adv/adv_image_ -# @@||theweathernetwork.com/tpl/web/adtech/$xmlhttprequest (easylistchina+easylist.txt: 59652) -.theweathernetwork.com/tpl/web/adtech/ -# @@||theweathernetwork.com/js/adrefresh.js (easylistchina+easylist.txt: 59651) -.theweathernetwork.com/js/adrefresh\.js -# @@||thetvdb.com/banners/ (easylistchina+easylist.txt: 59650) -.thetvdb.com/banners/ -# @@||theory-test.co.uk/css/ads.css (easylistchina+easylist.txt: 59647) -.theory-test.co.uk/css/ads\.css -# @@||thenewsroom.com^*/advertisement.xml$object-subrequest (easylistchina+easylist.txt: 59646) -.thenewsroom.com/.*/advertisement\.xml -# @@||thenewage.co.za/classifieds/images2/postad.gif (easylistchina+easylist.txt: 59645) -.thenewage.co.za/classifieds/images2/postad\.gif -# @@||theloop.com.au/js/simplejob_ad_content.js? (easylistchina+easylist.txt: 59643) -.theloop.com.au/js/simplejob_ad_content\.js\? -# @@||thekraftgroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59642) -.thekraftgroup.com/crossdomain\.xml -# @@||thefrisky.com/js/adspaces.min.js (easylistchina+easylist.txt: 59641) -.thefrisky.com/js/adspaces\.min\.js -# @@||thefourthperiod.com/ads/tfplogo_ (easylistchina+easylist.txt: 59640) -.thefourthperiod.com/ads/tfplogo_ -# @@||theepochtimes.com^*/article-ads.js? (easylistchina+easylist.txt: 59639) -.theepochtimes.com/.*/article-ads\.js\? -# @@||theepochtimes.com/ads/videos-right.html?$subdocument (easylistchina+easylist.txt: 59638) -.theepochtimes.com/ads/videos-right\.html\? -# @@||theepochtimes.com/ads/videos-below.htm?$subdocument (easylistchina+easylist.txt: 59637) -.theepochtimes.com/ads/videos-below\.htm\? -# @@||theepochtimes.com/ads/video/inarticle-video.html$subdocument (easylistchina+easylist.txt: 59636) -.theepochtimes.com/ads/video/inarticle-video\.html -# @@||thedailygreen.com/ams/page-ads.js? (easylistchina+easylist.txt: 59634) -.thedailygreen.com/ams/page-ads\.js\? -# @@||theatlantic.com/widget/$xmlhttprequest (easylistchina+easylist.txt: 59633) -.theatlantic.com/widget/ -# @@||texasstudentmedia.com/advertise/ (easylistchina+easylist.txt: 59632) -.texasstudentmedia.com/advertise/ -# @@||tetrisfriends.com/ads/google_dfp_video_ad.html (easylistchina+easylist.txt: 59631) -.tetrisfriends.com/ads/google_dfp_video_ad\.html -# @@||terraristik.com^*/ad_pics/$~third-party (easylistchina+easylist.txt: 59630) -.terraristik.com/.*/ad_pics/ -# @@||terraristik.com^*&ad_type=$~third-party (easylistchina+easylist.txt: 59629) -.terraristik.com/.*&ad_type= -# @@||temple.edu/advertising/$~third-party (easylistchina+easylist.txt: 59628) -.temple.edu/advertising/ -# @@||telegraphcouk.skimlinks.com/api/telegraph.skimlinks.js (easylistchina+easylist.txt: 59627) -.telegraphcouk.skimlinks.com/api/telegraph\.skimlinks\.js -# @@||teknikor.com/content/wp-content/themes/*-adv.jpg (easylistchina+easylist.txt: 59626) -.teknikor.com/content/wp-content/themes/.*-adv\.jpg -# @@||tbns.com.au/shops/images/ads/$~third-party (easylistchina+easylist.txt: 59622) -.tbns.com.au/shops/images/ads/ -# @@||talkrtv.com/ad/channel.php?$subdocument (easylistchina+easylist.txt: 59619) -.talkrtv.com/ad/channel\.php\? -# @@||talkgold.com/bans/rss.png (easylistchina+easylist.txt: 59618) -.talkgold.com/bans/rss\.png -# @@||take40.com/common/javascript/ads.js (easylistchina+easylist.txt: 59617) -.take40.com/common/javascript/ads\.js -# @@||tacdn.com^*_popunder_$script,stylesheet (easylistchina+easylist.txt: 59615) -.tacdn.com/.*_popunder_ -# @@||syracuse.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59614) -.syracuse.com/static/common/js/ads/ads\.js -# @@||syn.5min.com/handlers/SenseHandler.ashx?*&adUnit=$script (easylistchina+easylist.txt: 59612) -.syn.5min.com/handlers/SenseHandler\.ashx\?.*&adUnit= -# @@||swordfox.co.nz^*/advertising/$~third-party (easylistchina+easylist.txt: 59611) -.swordfox.co.nz/.*/advertising/ -# @@||support.dlink.com/Scripts/custom/pop.js (easylistchina+easylist.txt: 59609) -.support.dlink.com/Scripts/custom/pop\.js -# @@||supersonicads.com/delivery/singleBanner.php?*&bannerId$subdocument (easylistchina+easylist.txt: 59608) -.supersonicads.com/delivery/singleBanner\.php\?.*&bannerId -# @@||supersonicads.com/api/v1/trackCommission.php*password=$image (easylistchina+easylist.txt: 59607) -.supersonicads.com/api/v1/trackCommission\.php.*password= -# @@||supersonicads.com/api/rest/funds/*/advertisers/$~third-party (easylistchina+easylist.txt: 59606) -.supersonicads.com/api/rest/funds/.*/advertisers/ -# @@||superfundo.org/advertisement.js (easylistchina+easylist.txt: 59605) -.superfundo.org/advertisement\.js -# @@||supercartoons.net/ad-preroll.html (easylistchina+easylist.txt: 59604) -.supercartoons.net/ad-preroll\.html -# @@||summitracing.com/global/images/bannerads/ (easylistchina+easylist.txt: 59603) -.summitracing.com/global/images/bannerads/ -# @@||subscribe.teenvogue.com/ams/page-ads.js (easylistchina+easylist.txt: 59601) -.subscribe.teenvogue.com/ams/page-ads\.js -# @@||subscribe.newyorker.com/ams/page-ads.js (easylistchina+easylist.txt: 59600) -.subscribe.newyorker.com/ams/page-ads\.js -# @@||style.com/images/*.doubleclick$object (easylistchina+easylist.txt: 59599) -.style.com/images/.*\.doubleclick -# @@||style.com/flashxml/*.doubleclick$object (easylistchina+easylist.txt: 59598) -.style.com/flashxml/.*\.doubleclick -# @@||streamlive.to/ads/$object,script (easylistchina+easylist.txt: 59597) -.streamlive.to/ads/ -# @@||streaming.gmgradio.com/adverts/*.mp3$object-subrequest (easylistchina+easylist.txt: 59596) -.streaming.gmgradio.com/adverts/.*\.mp3 -# @@||stickam.com/css/ver1/asset/sharelayout2col_ad300x250.css (easylistchina+easylist.txt: 59595) -.stickam.com/css/ver1/asset/sharelayout2col_ad300x250\.css -# @@||stclassifieds.sg/postad/ (easylistchina+easylist.txt: 59594) -.stclassifieds.sg/postad/ -# @@||stclassifieds.sg/images/ads/$~third-party (easylistchina+easylist.txt: 59593) -.stclassifieds.sg/images/ads/ -# @@||static.cricinfo.com^*/ADVERTS/*/liveScores.swf$object (easylistchina+easylist.txt: 59591) -.static.cricinfo.com/.*/ADVERTS/.*/liveScores\.swf -# @@||static.ak.fbcdn.net^*/ads/$script (easylistchina+easylist.txt: 59589) -.static.ak.fbcdn.net/.*/ads/ -# @@||statedesign.com/advertisers/$image,~third-party (easylistchina+easylist.txt: 59587) -.statedesign.com/advertisers/ -# @@||state.co.us/caic/pub_bc_avo.php?zone_id=$subdocument (easylistchina+easylist.txt: 59586) -.state.co.us/caic/pub_bc_avo\.php\?zone_id= -# @@||startxchange.com/textad.php?$xmlhttprequest (easylistchina+easylist.txt: 59585) -.startxchange.com/textad\.php\? -# @@||st.com^*/banners.js (easylistchina+easylist.txt: 59584) -.st.com/.*/banners\.js -# @@||ssl-images-amazon.com^*/popover/popover-$script (easylistchina+easylist.txt: 59583) -.ssl-images-amazon.com/.*/popover/popover- -# @@||sprouts.com/ad/$image,subdocument (easylistchina+easylist.txt: 59580) -.sprouts.com/ad/ -# @@||sprint.com^*/adservice/$xmlhttprequest (easylistchina+easylist.txt: 59579) -.sprint.com/.*/adservice/ -# @@||springbokradio.com/sitebuilder/images/ads- (easylistchina+easylist.txt: 59578) -.springbokradio.com/sitebuilder/images/ads- -# @@||springbokradio.com/images/ads- (easylistchina+easylist.txt: 59577) -.springbokradio.com/images/ads- -# @@||springboardplatform.com/storage/lightbox_code/static/companion_ads.js (easylistchina+easylist.txt: 59576) -.springboardplatform.com/storage/lightbox_code/static/companion_ads\.js -# @@||spotxchange.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59571) -.spotxchange.com/crossdomain\.xml -# @@||spotrails.com^*/flowplayeradplayerplugin.swf (easylistchina+easylist.txt: 59569) -.spotrails.com/.*/flowplayeradplayerplugin\.swf -# @@||spotrails.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59568) -.spotrails.com/crossdomain\.xml -# @@||sploder.com/prerollad.swf?s=$object-subrequest (easylistchina+easylist.txt: 59565) -.sploder.com/prerollad\.swf\?s= -# @@||spendino.de/admanager/ (easylistchina+easylist.txt: 59564) -.spendino.de/admanager/ -# @@||spectrum.ieee.org/assets/js/masonry-ads-right.min.js (easylistchina+easylist.txt: 59563) -.spectrum.ieee.org/assets/js/masonry-ads-right\.min\.js -# @@||southwest.com^*/homepage/ads/ (easylistchina+easylist.txt: 59562) -.southwest.com/.*/homepage/ads/ -# @@||southwest.com/assets/images/ads/ad_select_flight_ (easylistchina+easylist.txt: 59561) -.southwest.com/assets/images/ads/ad_select_flight_ -# @@||sonypictures.com^*/admedia/ (easylistchina+easylist.txt: 59560) -.sonypictures.com/.*/admedia/ -# @@||sonypictures.com/global/images/ads/300x250/ad300x250.json$xmlhttprequest (easylistchina+easylist.txt: 59559) -.sonypictures.com/global/images/ads/300x250/ad300x250\.json -# @@||sonicstate.com/video/hd/hdconfig-geo.cfm?$object-subrequest (easylistchina+easylist.txt: 59558) -.sonicstate.com/video/hd/hdconfig-geo\.cfm\? -# @@||songza.com/static/*/songza/ads/iframe.js (easylistchina+easylist.txt: 59557) -.songza.com/static/.*/songza/ads/iframe\.js -# @@||songza.com/advertising/top/ (easylistchina+easylist.txt: 59556) -.songza.com/advertising/top/ -# @@||somewheresouth.net/banner/banner.php$image (easylistchina+easylist.txt: 59555) -.somewheresouth.net/banner/banner\.php -# @@||somethingsexyplanet.com/image/adzones/ (easylistchina+easylist.txt: 59554) -.somethingsexyplanet.com/image/adzones/ -# @@||softwarepromotions.com/images/google-adwords-professional.gif (easylistchina+easylist.txt: 59553) -.softwarepromotions.com/images/google-adwords-professional\.gif -# @@||softwarepromotions.com/adwords/$~third-party (easylistchina+easylist.txt: 59552) -.softwarepromotions.com/adwords/ -# @@||socialblogsitewebdesign.com^*/advertising_conversion_images/ (easylistchina+easylist.txt: 59551) -.socialblogsitewebdesign.com/.*/advertising_conversion_images/ -# @@||smmirror.com^*/getads.php (easylistchina+easylist.txt: 59550) -.smmirror.com/.*/getads\.php -# @@||smctemple.wpengine.com/advertising/$~third-party (easylistchina+easylist.txt: 59547) -.smctemple.wpengine.com/advertising/ -# @@||slowblog.com/ad.js (easylistchina+easylist.txt: 59543) -.slowblog.com/ad\.js -# @@||slotsheaven.com/banners/$~third-party (easylistchina+easylist.txt: 59542) -.slotsheaven.com/banners/ -# @@||skymediator.com/ads/*/skymediator.php?$subdocument (easylistchina+easylist.txt: 59540) -.skymediator.com/ads/.*/skymediator\.php\? -# @@||sjsuspartans.com/ads2/$image (easylistchina+easylist.txt: 59539) -.sjsuspartans.com/ads2/ -# @@||site-jump.com/banners/ (easylistchina+easylist.txt: 59538) -.site-jump.com/banners/ -# @@||sillyvamp.com/ads/Donate.png (easylistchina+easylist.txt: 59537) -.sillyvamp.com/ads/Donate\.png -# @@||silive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59536) -.silive.com/static/common/js/ads/ads\.js -# @@||sihanoukvilleonline.com/banners/sologo.png (easylistchina+easylist.txt: 59535) -.sihanoukvilleonline.com/banners/sologo\.png -# @@||signin.verizon.com^*/affiliate/$subdocument,xmlhttprequest (easylistchina+easylist.txt: 59534) -.signin.verizon.com/.*/affiliate/ -# @@||sify.com/news/postcomments.php?*468x60.html (easylistchina+easylist.txt: 59533) -.sify.com/news/postcomments\.php\?.*468x60\.html -# @@||siamautologistics.com/ads/$image,~third-party (easylistchina+easylist.txt: 59532) -.siamautologistics.com/ads/ -# @@||shelleytheatre.co.uk/filmimages/banners/160 (easylistchina+easylist.txt: 59530) -.shelleytheatre.co.uk/filmimages/banners/160 -# @@||shawfloors.com/adx/$image,~third-party (easylistchina+easylist.txt: 59529) -.shawfloors.com/adx/ -# @@||sharinspireds.co.nf/Images/Ads/$~third-party (easylistchina+easylist.txt: 59528) -.sharinspireds.co.nf/Images/Ads/ -# @@||share.pingdom.com/banners/$image (easylistchina+easylist.txt: 59526) -.share.pingdom.com/banners/ -# @@||shackvideo.com/playlist_xml.x? (easylistchina+easylist.txt: 59525) -.shackvideo.com/playlist_xml\.x\? -# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easylistchina+easylist.txt: 59523) -.sh.st/bundles/smeadvertisement/img/track\.gif\? -# @@||seventeen.com/ams/page-ads.js (easylistchina+easylist.txt: 59521) -.seventeen.com/ams/page-ads\.js -# @@||serviceexpress.net/js/pop.js (easylistchina+easylist.txt: 59519) -.serviceexpress.net/js/pop\.js -# @@||server.cpmstar.com/adviewas3.swf?contentspotid=$object-subrequest (easylistchina+easylist.txt: 59517) -.server.cpmstar.com/adviewas3\.swf\?contentspotid= -# @@||serve.vdopia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59514) -.serve.vdopia.com/crossdomain\.xml -# @@||selsin.net/imprint-$image (easylistchina+easylist.txt: 59513) -.selsin.net/imprint- -# @@||sekonda.co.uk/advert_images/ (easylistchina+easylist.txt: 59512) -.sekonda.co.uk/advert_images/ -# @@||securenetsystems.net/scripts/*/sdfy_scripts_advertising.js (easylistchina+easylist.txt: 59510) -.securenetsystems.net/scripts/.*/sdfy_scripts_advertising\.js -# @@||securenetsystems.net/advertising/ad_campaign_get.cfm?$xmlhttprequest (easylistchina+easylist.txt: 59509) -.securenetsystems.net/advertising/ad_campaign_get\.cfm\? -# @@||secondlife.com/assets/*_AD3.jpg (easylistchina+easylist.txt: 59508) -.secondlife.com/assets/.*_AD3\.jpg -# @@||sec-ads.bridgetrack.com/ads_img/ (easylistchina+easylist.txt: 59507) -.sec-ads.bridgetrack.com/ads_img/ -# @@||search.yahoo.com^$generichide (easylistchina+easylist.txt: 59506) -.search.yahoo.com -# @@||search.comcast.net/static.php?$stylesheet (easylistchina+easylist.txt: 59505) -.search.comcast.net/static\.php\? -# @@||sdltutorials.com/Data/Ads/AppStateBanner.jpg (easylistchina+easylist.txt: 59504) -.sdltutorials.com/Data/Ads/AppStateBanner\.jpg -# @@||sdelkino.com/images/ad/$image (easylistchina+easylist.txt: 59503) -.sdelkino.com/images/ad/ -# @@||sdcdn.com/cms/ads/piczo/$image (easylistchina+easylist.txt: 59502) -.sdcdn.com/cms/ads/piczo/ -# @@||scutt.eu/ads/$~third-party (easylistchina+easylist.txt: 59501) -.scutt.eu/ads/ -# @@||scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors.xml$object-subrequest (easylistchina+easylist.txt: 59500) -.scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors\.xml -# @@||scanscout.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59494) -.scanscout.com/crossdomain\.xml -# @@||save.ca/img/ads/$~third-party (easylistchina+easylist.txt: 59492) -.save.ca/img/ads/ -# @@||sascdn.com^*/jwplayerAdPlugin.swf$object-subrequest (easylistchina+easylist.txt: 59491) -.sascdn.com/.*/jwplayerAdPlugin\.swf -# @@||sascdn.com^*/jwplayer-plugin.swf?$object-subrequest (easylistchina+easylist.txt: 59490) -.sascdn.com/.*/jwplayer-plugin\.swf\? -# @@||sascdn.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59489) -.sascdn.com/crossdomain\.xml -# @@||salon.com/content/plugins/salon-ad-controller/ad-utilities.js (easylistchina+easylist.txt: 59488) -.salon.com/content/plugins/salon-ad-controller/ad-utilities\.js -# @@||salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery.jshowoff.min.js? (easylistchina+easylist.txt: 59487) -.salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery\.jshowoff\.min\.js\? -# @@||sales.liveperson.net/visitor/addons/deploy2.asp?*&d_id=adcenter&$script (easylistchina+easylist.txt: 59486) -.sales.liveperson.net/visitor/addons/deploy2\.asp\?.*&d_id=adcenter& -# @@||sal.co.th/ads/$image,~third-party (easylistchina+easylist.txt: 59485) -.sal.co.th/ads/ -# @@||sabotage-films.com/ads/$~third-party (easylistchina+easylist.txt: 59484) -.sabotage-films.com/ads/ -# @@||ryuutama.com/ads/ads.php?get=$xmlhttprequest (easylistchina+easylist.txt: 59480) -.ryuutama.com/ads/ads\.php\?get= -# @@||russellrooftiles.co.uk/images/rrt_envirotile_home_advert.png (easylistchina+easylist.txt: 59479) -.russellrooftiles.co.uk/images/rrt_envirotile_home_advert\.png -# @@||rthk.org.hk/assets/flash/rthk/*/ad_banner$object (easylistchina+easylist.txt: 59478) -.rthk.org.hk/assets/flash/rthk/.*/ad_banner -# @@||rthk.hk/assets/flash/rthk/*/ad_banner$object (easylistchina+easylist.txt: 59477) -.rthk.hk/assets/flash/rthk/.*/ad_banner -# @@||rsvlts.com/wp-content/uploads/*-advertisment- (easylistchina+easylist.txt: 59473) -.rsvlts.com/wp-content/uploads/.*-advertisment- -# @@||rotate.infowars.com/www/delivery/spcjs.php (easylistchina+easylist.txt: 59468) -.rotate.infowars.com/www/delivery/spcjs\.php -# @@||rotate.infowars.com/www/delivery/fl.js (easylistchina+easylist.txt: 59467) -.rotate.infowars.com/www/delivery/fl\.js -# @@||rosauers.com/locations/ads.html (easylistchina+easylist.txt: 59466) -.rosauers.com/locations/ads\.html -# @@||rmncdn.com/ads/mini-$image (easylistchina+easylist.txt: 59463) -.rmncdn.com/ads/mini- -# @@||rewaz.org/ads/adframe2.js (easylistchina+easylist.txt: 59462) -.rewaz.org/ads/adframe2\.js -# @@||revit.eu/static/uploads/images/themes/banners/small-banner-$object-subrequest (easylistchina+easylist.txt: 59458) -.revit.eu/static/uploads/images/themes/banners/small-banner- -# @@||replgroup.com/banners/$image,~third-party (easylistchina+easylist.txt: 59453) -.replgroup.com/banners/ -# @@||remo-xp.com/wp-content/themes/adsense-boqpod/style.css (easylistchina+easylist.txt: 59452) -.remo-xp.com/wp-content/themes/adsense-boqpod/style\.css -# @@||refline.ch^*/advertisement.css (easylistchina+easylist.txt: 59451) -.refline.ch/.*/advertisement\.css -# @@||redsharknews.com/components/com_adagency/includes/$script (easylistchina+easylist.txt: 59450) -.redsharknews.com/components/com_adagency/includes/ -# @@||redbookmag.com/ams/page-ads.js? (easylistchina+easylist.txt: 59449) -.redbookmag.com/ams/page-ads\.js\? -# @@||realvnc.com/assets/img/ad-bg.jpg (easylistchina+easylist.txt: 59448) -.realvnc.com/assets/img/ad-bg\.jpg -# @@||realmedia.channel4.com/realmedia/ads/adstream_sx.ads/channel4.newcu/$object-subrequest,~third-party (easylistchina+easylist.txt: 59447) -.realmedia.channel4.com/realmedia/ads/adstream_sx\.ads/channel4\.newcu/ -# @@||realbeauty.com/ams/page-ads.js? (easylistchina+easylist.txt: 59446) -.realbeauty.com/ams/page-ads\.js\? -# @@||readwrite.com/files/styles/$image (easylistchina+easylist.txt: 59445) -.readwrite.com/files/styles/ -# @@||rcards.net/wp-content/uploads/useful_banner_manager_banners/ (easylistchina+easylist.txt: 59442) -.rcards.net/wp-content/uploads/useful_banner_manager_banners/ -# @@||rcards.net/wp-content/plugins/useful-banner-manager/ (easylistchina+easylist.txt: 59441) -.rcards.net/wp-content/plugins/useful-banner-manager/ -# @@||rapoo.com/images/ad/$image,~third-party (easylistchina+easylist.txt: 59439) -.rapoo.com/images/ad/ -# @@||rainbowdressup.com/ads/adsnewvars.swf (easylistchina+easylist.txt: 59438) -.rainbowdressup.com/ads/adsnewvars\.swf -# @@||radiotimes.com/rt-service/resource/jspack? (easylistchina+easylist.txt: 59437) -.radiotimes.com/rt-service/resource/jspack\? -# @@||radioguide.fm/minify/?*/Advertising/webroot/css/advertising.css (easylistchina+easylist.txt: 59436) -.radioguide.fm/minify/\?.*/Advertising/webroot/css/advertising\.css -# @@||rad.org.uk/images/adverts/$image,~third-party (easylistchina+easylist.txt: 59435) -.rad.org.uk/images/adverts/ -# @@||r2games.com/bannerad/$image,~third-party (easylistchina+easylist.txt: 59430) -.r2games.com/bannerad/ -# @@||quit.org.au/images/images/ad/ (easylistchina+easylist.txt: 59428) -.quit.org.au/images/images/ad/ -# @@||q2servers.com/pop.js (easylistchina+easylist.txt: 59425) -.q2servers.com/pop\.js -# @@||puzzler.com/commercials/*.htm$subdocument (easylistchina+easylist.txt: 59424) -.puzzler.com/commercials/.*\.htm -# @@||pursuit.co.za/css/globalAd.css (easylistchina+easylist.txt: 59423) -.pursuit.co.za/css/globalAd\.css -# @@||pumpkinpatchkids.com/www/delivery/ajs.php?$script (easylistchina+easylist.txt: 59422) -.pumpkinpatchkids.com/www/delivery/ajs\.php\? -# @@||ptgrey.com/_PGR_Content/Advertising/$image,~third-party (easylistchina+easylist.txt: 59419) -.ptgrey.com/_PGR_Content/Advertising/ -# @@||pshared.5min.com/Scripts/ThumbSeed2.js?*&adUnit=$script (easylistchina+easylist.txt: 59418) -.pshared.5min.com/Scripts/ThumbSeed2\.js\?.*&adUnit= -# @@||proxyserver.asia/themes/advertising-$image,stylesheet (easylistchina+easylist.txt: 59417) -.proxyserver.asia/themes/advertising- -# @@||proprofs.com/quiz-school/js/modernizr_ads.js (easylistchina+easylist.txt: 59416) -.proprofs.com/quiz-school/js/modernizr_ads\.js -# @@||promophot.com/photo/ad/$image (easylistchina+easylist.txt: 59415) -.promophot.com/photo/ad/ -# @@||promo.campaigndog.com^$third-party (easylistchina+easylist.txt: 59411) -.promo.campaigndog.com -# @@||promo.acronis.com^*?base=www.acronis.$subdocument (easylistchina+easylist.txt: 59410) -.promo.acronis.com/.*\?base=www\.acronis\. -# @@||productioncars.com/pics/menu/ads2.gif (easylistchina+easylist.txt: 59409) -.productioncars.com/pics/menu/ads2\.gif -# @@||productioncars.com/pics/menu/ads.gif (easylistchina+easylist.txt: 59408) -.productioncars.com/pics/menu/ads\.gif -# @@||procato.com/_pub/advertisement.js (easylistchina+easylist.txt: 59407) -.procato.com/_pub/advertisement\.js -# @@||procato.com/_pub/ads.php?u=$xmlhttprequest (easylistchina+easylist.txt: 59406) -.procato.com/_pub/ads\.php\?u= -# @@||prism.opticsinfobase.org/Scripts/ADS/Details.js (easylistchina+easylist.txt: 59405) -.prism.opticsinfobase.org/Scripts/ADS/Details\.js -# @@||pressdisplay.com/advertising/showimage.aspx? (easylistchina+easylist.txt: 59404) -.pressdisplay.com/advertising/showimage\.aspx\? -# @@||powercolor.com/image/ad/$~third-party (easylistchina+easylist.txt: 59403) -.powercolor.com/image/ad/ -# @@||popcap.com/sites/all/modules/popcap/js/popcap_openx.js? (easylistchina+easylist.txt: 59400) -.popcap.com/sites/all/modules/popcap/js/popcap_openx\.js\? -# @@||popad.co^$~third-party (easylistchina+easylist.txt: 59399) -.popad.co -# @@||pop.advecs.com^$~third-party (easylistchina+easylist.txt: 59398) -.pop.advecs.com -# @@||politico.com/js/magazine/ads.js (easylistchina+easylist.txt: 59396) -.politico.com/js/magazine/ads\.js -# @@||plugcomputer.org^*/ad1.jpg (easylistchina+easylist.txt: 59394) -.plugcomputer.org/.*/ad1\.jpg -# @@||playintraffik.com/advertising/ (easylistchina+easylist.txt: 59393) -.playintraffik.com/advertising/ -# @@||player.vioapi.com/ads/flash/vioplayer.swf (easylistchina+easylist.txt: 59392) -.player.vioapi.com/ads/flash/vioplayer\.swf -# @@||player.streamtheworld.com/liveplayer.php?*adstype= (easylistchina+easylist.txt: 59389) -.player.streamtheworld.com/liveplayer\.php\?.*adstype= -# @@||player.onescreen.net/*/MediaPlayer.swf?ads=$object-subrequest (easylistchina+easylist.txt: 59388) -.player.onescreen.net/.*/MediaPlayer\.swf\?ads= -# @@||player.goviral-content.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59387) -.player.goviral-content.com/crossdomain\.xml -# @@||player.animelicio.us/adimages/$subdocument (easylistchina+easylist.txt: 59382) -.player.animelicio.us/adimages/ -# @@||planetrecruit.com/ad/$image (easylistchina+easylist.txt: 59381) -.planetrecruit.com/ad/ -# @@||planetoddity.com/wp-content/*-ads-$image (easylistchina+easylist.txt: 59380) -.planetoddity.com/wp-content/.*-ads- -# @@||planetaxel.com^*.php?ad=$stylesheet (easylistchina+easylist.txt: 59379) -.planetaxel.com/.*\.php\?ad= -# @@||pitchfork.com/desktop/js/pitchfork/ads/interstitial.js (easylistchina+easylist.txt: 59378) -.pitchfork.com/desktop/js/pitchfork/ads/interstitial\.js -# @@||pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218.gif (easylistchina+easylist.txt: 59377) -.pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218\.gif -# @@||pinkbike.org^*.swf?ad=0&$object (easylistchina+easylist.txt: 59376) -.pinkbike.org/.*\.swf\?ad=0& -# @@||ping.indieclicktv.com/www/delivery/ajs.php?zoneid$object-subrequest (easylistchina+easylist.txt: 59375) -.ping.indieclicktv.com/www/delivery/ajs\.php\?zoneid -# @@||piercesnorthsidemarket.com/ads/$image (easylistchina+easylist.txt: 59374) -.piercesnorthsidemarket.com/ads/ -# @@||picplzthumbs.com/upload/img/ad/ (easylistchina+easylist.txt: 59373) -.picplzthumbs.com/upload/img/ad/ -# @@||photofunia.com/effects/$~third-party (easylistchina+easylist.txt: 59371) -.photofunia.com/effects/ -# @@||photobucket.com/albums/ad$image (easylistchina+easylist.txt: 59369) -.photobucket.com/albums/ad -# @@||photo.ekathimerini.com/ads/extra/$image,~third-party (easylistchina+easylist.txt: 59368) -.photo.ekathimerini.com/ads/extra/ -# @@||phonealchemist.com/api/affiliation/$~third-party (easylistchina+easylist.txt: 59367) -.phonealchemist.com/api/affiliation/ -# @@||phl.org/Advertising/$image,~third-party (easylistchina+easylist.txt: 59365) -.phl.org/Advertising/ -# @@||pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad.min.js$script (easylistchina+easylist.txt: 59364) -.pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad\.min\.js -# @@||pets4homes.co.uk^*/advert.css (easylistchina+easylist.txt: 59363) -.pets4homes.co.uk/.*/advert\.css -# @@||pets4homes.co.uk/*/advert.js (easylistchina+easylist.txt: 59362) -.pets4homes.co.uk/.*/advert\.js -# @@||petra-fischer.com/tl_files/pics/*/ADVERTISING/$~third-party (easylistchina+easylist.txt: 59361) -.petra-fischer.com/tl_files/pics/.*/ADVERTISING/ -# @@||petcarerx.com/banners/ (easylistchina+easylist.txt: 59360) -.petcarerx.com/banners/ -# @@||petapixel.com/ads/$~third-party (easylistchina+easylist.txt: 59359) -.petapixel.com/ads/ -# @@||perezhilton.com^*-without-ads-$object,object-subrequest,subdocument (easylistchina+easylist.txt: 59358) -.perezhilton.com/.*-without-ads- -# @@||perezhilton.com/included_ads/ (easylistchina+easylist.txt: 59357) -.perezhilton.com/included_ads/ -# @@||perbang.dk/_pub/advertisement.js? (easylistchina+easylist.txt: 59356) -.perbang.dk/_pub/advertisement\.js\? -# @@||perbang.dk/_pub/ads.php?u=$xmlhttprequest (easylistchina+easylist.txt: 59355) -.perbang.dk/_pub/ads\.php\?u= -# @@||pennlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59354) -.pennlive.com/static/common/js/ads/ads\.js -# @@||pch.com^*/videoad.$stylesheet (easylistchina+easylist.txt: 59353) -.pch.com/.*/videoad\. -# @@||pch.com/iframe-ad/?adType=$subdocument (easylistchina+easylist.txt: 59352) -.pch.com/iframe-ad/\?adType= -# @@||pbs.org^*/sponsors/flvvideoplayer.swf (easylistchina+easylist.txt: 59351) -.pbs.org/.*/sponsors/flvvideoplayer\.swf -# @@||payload*.cargocollective.com^$image (easylistchina+easylist.txt: 59350) -.payload*./.*\.cargocollective\.com[^\w%.-] -.payload*.cargocollective.com -# @@||patient-education.com/banners/$~third-party (easylistchina+easylist.txt: 59348) -.patient-education.com/banners/ -# @@||partners.thefilter.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59346) -.partners.thefilter.com/crossdomain\.xml -# @@||pantherssl.com/banners/ (easylistchina+easylist.txt: 59339) -.pantherssl.com/banners/ -# @@||pandasecurity.com/banners/$image,~third-party (easylistchina+easylist.txt: 59338) -.pandasecurity.com/banners/ -# @@||pagesinventory.com/_data/flags/ad.gif (easylistchina+easylist.txt: 59337) -.pagesinventory.com/_data/flags/ad\.gif -# @@||pacogames.com/ad/ima3_preloader_$object (easylistchina+easylist.txt: 59326) -.pacogames.com/ad/ima3_preloader_ -# @@||pachoumis.com/advertising-$~third-party (easylistchina+easylist.txt: 59325) -.pachoumis.com/advertising- -# @@||pachanyc.com/_images/advertise_submit.gif (easylistchina+easylist.txt: 59324) -.pachanyc.com/_images/advertise_submit\.gif -# @@||ozspeedtest.com/js/pop.js (easylistchina+easylist.txt: 59323) -.ozspeedtest.com/js/pop\.js -# @@||oxfordlearnersdictionaries.com/external/scripts/doubleclick.js (easylistchina+easylist.txt: 59322) -.oxfordlearnersdictionaries.com/external/scripts/doubleclick\.js -# @@||ox.popcap.com/delivery/afr.php?&zoneid=$subdocument,~third-party (easylistchina+easylist.txt: 59321) -.ox.popcap.com/delivery/afr\.php\?&zoneid= -# @@||ox-d.sbnation.com/w/1.0/jstag| (easylistchina+easylist.txt: 59319) -.ox-d.sbnation.com/w/1\.0/jstag$ -# @@||overture.london^$~third-party (easylistchina+easylist.txt: 59315) -.overture.london -# @@||ottawasun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59314) -.ottawasun.com/assets/js/dfp\.js\? -# @@||otakumode.com/shop/titleArea?*_promo_id=$xmlhttprequest (easylistchina+easylist.txt: 59312) -.otakumode.com/shop/titleArea\?.*_promo_id= -# @@||osdir.com/ml/dateindex*&num=$subdocument (easylistchina+easylist.txt: 59311) -.osdir.com/ml/dateindex.*&num= -# @@||oregonlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59310) -.oregonlive.com/static/common/js/ads/ads\.js -# @@||opgevenisgeenoptie.nl^*/favicon_ad6.ico (easylistchina+easylist.txt: 59305) -.opgevenisgeenoptie.nl/.*/favicon_ad6\.ico -# @@||openx.nobelprize.org/openx/www/delivery/$script (easylistchina+easylist.txt: 59301) -.openx.nobelprize.org/openx/www/delivery/ -# @@||openload.io/deliverad/$xmlhttprequest (easylistchina+easylist.txt: 59298) -.openload.io/deliverad/ -# @@||onionstatic.com^*/videoads.js (easylistchina+easylist.txt: 59297) -.onionstatic.com/.*/videoads\.js -# @@||onetravel.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 59296) -.onetravel.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||omnikool.discovery.com/realmedia/ads/adstream_mjx.ads/dsc.discovery.com/$script (easylistchina+easylist.txt: 59295) -.omnikool.discovery.com/realmedia/ads/adstream_mjx\.ads/dsc\.discovery\.com/ -# @@||omgubuntu.co.uk^*/banner.js (easylistchina+easylist.txt: 59294) -.omgubuntu.co.uk/.*/banner\.js -# @@||omgili.com/ads.search? (easylistchina+easylist.txt: 59293) -.omgili.com/ads\.search\? -# @@||oldergames.com/adlib/ (easylistchina+easylist.txt: 59292) -.oldergames.com/adlib/ -# @@||okta.com/js/app/sso/interstitial.js$~third-party (easylistchina+easylist.txt: 59291) -.okta.com/js/app/sso/interstitial\.js -# @@||ocp.com.com/adfunctions.js? (easylistchina+easylist.txt: 59289) -.ocp.com.com/adfunctions\.js\? -# @@||objects.tremormedia.com/embed/swf/admanager*.swf (easylistchina+easylist.txt: 59288) -.objects.tremormedia.com/embed/swf/admanager.*\.swf -# @@||oascentral.thepostgame.com/om/$script (easylistchina+easylist.txt: 59284) -.oascentral.thepostgame.com/om/ -# @@||oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx.ads$script (easylistchina+easylist.txt: 59283) -.oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx\.ads -# @@||oascentral.surfline.com/realmedia/ads/adstream_sx.ads/www.surfline.com/articles$object-subrequest (easylistchina+easylist.txt: 59282) -.oascentral.surfline.com/realmedia/ads/adstream_sx\.ads/www\.surfline\.com/articles -# @@||oascentral.surfline.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59281) -.oascentral.surfline.com/crossdomain\.xml -# @@||oascentral.sumworld.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59278) -.oascentral.sumworld.com/crossdomain\.xml -# @@||oascentral.post-gazette.com/realmedia/ads/$object-subrequest (easylistchina+easylist.txt: 59277) -.oascentral.post-gazette.com/realmedia/ads/ -# @@||oascentral.ibtimes.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59276) -.oascentral.ibtimes.com/crossdomain\.xml -# @@||oas.theguardian.com^$xmlhttprequest (easylistchina+easylist.txt: 59272) -.oas.theguardian.com -# @@||oas.absoluteradio.co.uk^*/www.absoluteradio.co.uk/player/ (easylistchina+easylist.txt: 59270) -.oas.absoluteradio.co.uk/.*/www\.absoluteradio\.co\.uk/player/ -# @@||oas.absoluteradio.co.uk/realmedia/ads/$object-subrequest (easylistchina+easylist.txt: 59269) -.oas.absoluteradio.co.uk/realmedia/ads/ -# @@||nytimes.perfectmarket.com^$stylesheet (easylistchina+easylist.txt: 59268) -.nytimes.perfectmarket.com -# @@||nytimes.com/adx/images/ads/*_premium-crosswords_bg_600x329.gif (easylistchina+easylist.txt: 59267) -.nytimes.com/adx/images/ads/.*_premium-crosswords_bg_600x329\.gif -# @@||nytimes.com/adx/images/ads/*_buynow_btn_53x18.gif (easylistchina+easylist.txt: 59266) -.nytimes.com/adx/images/ads/.*_buynow_btn_53x18\.gif -# @@||nytimes.com/ads/interstitial/skip*.gif (easylistchina+easylist.txt: 59263) -.nytimes.com/ads/interstitial/skip.*\.gif -# @@||nsandi.com/files/asset/banner-ads/ (easylistchina+easylist.txt: 59258) -.nsandi.com/files/asset/banner-ads/ -# @@||nola.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59256) -.nola.com/static/common/js/ads/ads\.js -# @@||nj.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59255) -.nj.com/static/common/js/ads/ads\.js -# @@||nintandbox.net/images/*-Advertising_$image (easylistchina+easylist.txt: 59254) -.nintandbox.net/images/.*-Advertising_ -# @@||nickjr.com/global/scripts/overture/sponsored_links_lib.js (easylistchina+easylist.txt: 59253) -.nickjr.com/global/scripts/overture/sponsored_links_lib\.js -# @@||nickjr.com/assets/ad-entry/ (easylistchina+easylist.txt: 59252) -.nickjr.com/assets/ad-entry/ -# @@||nick.com/js/ads.jsp (easylistchina+easylist.txt: 59250) -.nick.com/js/ads\.jsp -# @@||nflcdn.com/static/*/global/ads.js (easylistchina+easylist.txt: 59246) -.nflcdn.com/static/.*/global/ads\.js -# @@||nfl.com^*/ads.js (easylistchina+easylist.txt: 59245) -.nfl.com/.*/ads\.js -# @@||nextmedia.com/admedia/$object-subrequest (easylistchina+easylist.txt: 59243) -.nextmedia.com/admedia/ -# @@||newzimbabwe.com/banners/350x350/ (easylistchina+easylist.txt: 59241) -.newzimbabwe.com/banners/350x350/ -# @@||newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn.dart.js (easylistchina+easylist.txt: 59240) -.newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn\.dart\.js -# @@||newsweek.com/ads/adscripts/prod/*_$script (easylistchina+easylist.txt: 59239) -.newsweek.com/ads/adscripts/prod/.*_ -# @@||newsarama.com/common/js/advertisements.js (easylistchina+easylist.txt: 59238) -.newsarama.com/common/js/advertisements\.js -# @@||news.nate.com/etc/adrectanglebanner? (easylistchina+easylist.txt: 59237) -.news.nate.com/etc/adrectanglebanner\? -# @@||newgrounds.com/ads/advertisement.js (easylistchina+easylist.txt: 59236) -.newgrounds.com/ads/advertisement\.js -# @@||newgrounds.com/ads/ad_medals.gif (easylistchina+easylist.txt: 59235) -.newgrounds.com/ads/ad_medals\.gif -# @@||networkworld.com/www/js/ads/gpt_includes.js? (easylistchina+easylist.txt: 59234) -.networkworld.com/www/js/ads/gpt_includes\.js\? -# @@||neodrive.co/cam/directrev.js? (easylistchina+easylist.txt: 59231) -.neodrive.co/cam/directrev\.js\? -# @@||neobux.com/v/?a=l&l=$document (easylistchina+easylist.txt: 59230) -.neobux.com/v/\?a=l&l= -# @@||nedbank.co.za/website/content/home/google_ad_Cut.jpg (easylistchina+easylist.txt: 59229) -.nedbank.co.za/website/content/home/google_ad_Cut\.jpg -# @@||ncregister.com/images/sized/images/ads/ (easylistchina+easylist.txt: 59228) -.ncregister.com/images/sized/images/ads/ -# @@||ncregister.com/images/ads/ (easylistchina+easylist.txt: 59227) -.ncregister.com/images/ads/ -# @@||nbc.com/collarity/ (easylistchina+easylist.txt: 59226) -.nbc.com/collarity/ -# @@||nature.com/advertising/$~third-party (easylistchina+easylist.txt: 59224) -.nature.com/advertising/ -# @@||nationmultimedia.com/new/js/doubleclick.js (easylistchina+easylist.txt: 59223) -.nationmultimedia.com/new/js/doubleclick\.js -# @@||nationalgeographic.com/channel/videos/satellite/*.swf?adsite= (easylistchina+easylist.txt: 59222) -.nationalgeographic.com/channel/videos/satellite/.*\.swf\?adsite= -# @@||nationalbusinessfurniture.com/product/advertising/$image (easylistchina+easylist.txt: 59221) -.nationalbusinessfurniture.com/product/advertising/ -# @@||napaonline.com/Content/script/jquery.lazyload-ad-$script (easylistchina+easylist.txt: 59220) -.napaonline.com/Content/script/jquery\.lazyload-ad- -# @@||myrecipes.com/static/advertising/ (easylistchina+easylist.txt: 59218) -.myrecipes.com/static/advertising/ -# @@||myprotein.com/Files/OpenX/$image,~third-party (easylistchina+easylist.txt: 59217) -.myprotein.com/Files/OpenX/ -# @@||mymemory.co.uk/images/adverts/$image,~third-party (easylistchina+easylist.txt: 59216) -.mymemory.co.uk/images/adverts/ -# @@||myhouseabroad.com/js/adview.js (easylistchina+easylist.txt: 59215) -.myhouseabroad.com/js/adview\.js -# @@||myhouseabroad.com/*/ads/ (easylistchina+easylist.txt: 59214) -.myhouseabroad.com/.*/ads/ -# @@||mycricket.com/openx/offers/$image (easylistchina+easylist.txt: 59213) -.mycricket.com/openx/offers/ -# @@||myadt.com/js-ext/smartbanner/ (easylistchina+easylist.txt: 59212) -.myadt.com/js-ext/smartbanner/ -# @@||mxtabs.net/ads/interstitial$subdocument (easylistchina+easylist.txt: 59211) -.mxtabs.net/ads/interstitial -# @@||mutualofomaha.com/images/ads/ (easylistchina+easylist.txt: 59209) -.mutualofomaha.com/images/ads/ -# @@||mussil.com/mussilcomfiles/commercials/*.jpg (easylistchina+easylist.txt: 59208) -.mussil.com/mussilcomfiles/commercials/.*\.jpg -# @@||music-clips.net/ads/list.txt?_=$xmlhttprequest (easylistchina+easylist.txt: 59205) -.music-clips.net/ads/list\.txt\?_= -# @@||mudah.my/css/mudah_adview_min.css (easylistchina+easylist.txt: 59204) -.mudah.my/css/mudah_adview_min\.css -# @@||muchmusic.com/includes/js/adzone.js (easylistchina+easylist.txt: 59203) -.muchmusic.com/includes/js/adzone\.js -# @@||msy.com.au/images/ADbanner/eletter/$~third-party (easylistchina+easylist.txt: 59202) -.msy.com.au/images/ADbanner/eletter/ -# @@||msnbcmedia.msn.com^*/sitemanagement/ads/*/blog_printbutton.png (easylistchina+easylist.txt: 59200) -.msnbcmedia.msn.com/.*/sitemanagement/ads/.*/blog_printbutton\.png -# @@||msi.com/pic/banner/ (easylistchina+easylist.txt: 59199) -.msi.com/pic/banner/ -# @@||msi.com/js/topad/topad.css (easylistchina+easylist.txt: 59198) -.msi.com/js/topad/topad\.css -# @@||mp32u.net/adframe.js (easylistchina+easylist.txt: 59196) -.mp32u.net/adframe\.js -# @@||movoto.com/LeaderboardAd.aspx?adSpotName=$subdocument (easylistchina+easylist.txt: 59195) -.movoto.com/LeaderboardAd\.aspx\?adSpotName= -# @@||motortrade.me/js/$~third-party (easylistchina+easylist.txt: 59194) -.motortrade.me/js/ -# @@||motortrade.me/advert/$~third-party (easylistchina+easylist.txt: 59193) -.motortrade.me/advert/ -# @@||monster.com/awm/*/ADVERTISING- (easylistchina+easylist.txt: 59191) -.monster.com/awm/.*/ADVERTISING- -# @@||moneybookers.com/ads/$~third-party (easylistchina+easylist.txt: 59190) -.moneybookers.com/ads/ -# @@||mofunzone.com/ads/ima3_preloader_*.swf$object (easylistchina+easylist.txt: 59189) -.mofunzone.com/ads/ima3_preloader_.*\.swf -# @@||mobinozer.com^*/gads.js (easylistchina+easylist.txt: 59184) -.mobinozer.com/.*/gads\.js -# @@||mobilefish.com/scripts/advertisement.js (easylistchina+easylist.txt: 59183) -.mobilefish.com/scripts/advertisement\.js -# @@||mlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59181) -.mlive.com/static/common/js/ads/ads\.js -# @@||mlb.com/shared/components/gameday/v6/js/adproxy.js (easylistchina+easylist.txt: 59180) -.mlb.com/shared/components/gameday/v6/js/adproxy\.js -# @@||mlb.com/scripts/dc_ads.js (easylistchina+easylist.txt: 59179) -.mlb.com/scripts/dc_ads\.js -# @@||mircscripts.org/advertisements.js (easylistchina+easylist.txt: 59177) -.mircscripts.org/advertisements\.js -# @@||miniclipcdn.com/content/push-ads/ (easylistchina+easylist.txt: 59176) -.miniclipcdn.com/content/push-ads/ -# @@||miniclip.com/scripts/js.php? (easylistchina+easylist.txt: 59175) -.miniclip.com/scripts/js\.php\? -# @@||miller-mccune.com/wp-content/plugins/*/oiopub-direct/images/style/output.css (easylistchina+easylist.txt: 59174) -.miller-mccune.com/wp-content/plugins/.*/oiopub-direct/images/style/output\.css -# @@||militaryfleamarket.net/media/com_jomclassifieds/adverts/ (easylistchina+easylist.txt: 59173) -.militaryfleamarket.net/media/com_jomclassifieds/adverts/ -# @@||metalmusicradio.com^*/banner.php (easylistchina+easylist.txt: 59170) -.metalmusicradio.com/.*/banner\.php -# @@||metacafe.com/banner.php? (easylistchina+easylist.txt: 59169) -.metacafe.com/banner\.php\? -# @@||merkatia.com/adimages/$image (easylistchina+easylist.txt: 59168) -.merkatia.com/adimages/ -# @@||meritline.com/banners/$image,~third-party (easylistchina+easylist.txt: 59167) -.meritline.com/banners/ -# @@||medscapestatic.com/pi/scripts/ads/dfp/profads2.js (easylistchina+easylist.txt: 59165) -.medscapestatic.com/pi/scripts/ads/dfp/profads2\.js -# @@||medscape.com/html.ng/*slideshow (easylistchina+easylist.txt: 59164) -.medscape.com/html\.ng/.*slideshow -# @@||mediabistro.com^*/displayadleader.asp?$subdocument (easylistchina+easylist.txt: 59160) -.mediabistro.com/.*/displayadleader\.asp\? -# @@||media.washingtonpost.com/wp-srv/ad/tiffany_manager.js (easylistchina+easylist.txt: 59159) -.media.washingtonpost.com/wp-srv/ad/tiffany_manager\.js -# @@||media.washingtonpost.com/wp-srv/ad/photo-ad-config.jsonp (easylistchina+easylist.txt: 59158) -.media.washingtonpost.com/wp-srv/ad/photo-ad-config\.jsonp -# @@||media.washingtonpost.com/wp-srv/ad/ad_v2.js (easylistchina+easylist.txt: 59157) -.media.washingtonpost.com/wp-srv/ad/ad_v2\.js -# @@||media.styleblueprint.com/ad.php?$script,~third-party (easylistchina+easylist.txt: 59156) -.media.styleblueprint.com/ad\.php\? -# @@||media.expedia.com/*/ads/ (easylistchina+easylist.txt: 59151) -.media.expedia.com/.*/ads/ -# @@||media.cargocollective.com^$image (easylistchina+easylist.txt: 59150) -.media.cargocollective.com -# @@||media.avclub.com/onion/js/videoads.js$script (easylistchina+easylist.txt: 59149) -.media.avclub.com/onion/js/videoads\.js -# @@||mcpn.us/resources/images/adv/$~third-party (easylistchina+easylist.txt: 59147) -.mcpn.us/resources/images/adv/ -# @@||mcfc.co.uk/js/core/adtracking.js (easylistchina+easylist.txt: 59146) -.mcfc.co.uk/js/core/adtracking\.js -# @@||maxim.com/advert*/countdown/$script,stylesheet (easylistchina+easylist.txt: 59145) -.maxim.com/advert.*/countdown/ -# @@||masslive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59144) -.masslive.com/static/common/js/ads/ads\.js -# @@||marketing.beatport.com.s3.amazonaws.com/html/*/Banner_Ads/header_$image (easylistchina+easylist.txt: 59142) -.marketing.beatport.com.s3.amazonaws.com/html/.*/Banner_Ads/header_ -# @@||marines.com/videos/commercials/$object-subrequest (easylistchina+easylist.txt: 59141) -.marines.com/videos/commercials/ -# @@||marieclaire.com/ams/page-ads.js? (easylistchina+easylist.txt: 59140) -.marieclaire.com/ams/page-ads\.js\? -# @@||marcs.com^*/AdViewer.js (easylistchina+easylist.txt: 59139) -.marcs.com/.*/AdViewer\.js -# @@||marcokrenn.com/public/images/pages/advertising/$~third-party (easylistchina+easylist.txt: 59138) -.marcokrenn.com/public/images/pages/advertising/ -# @@||marciglesias.com/publicidad/ (easylistchina+easylist.txt: 59137) -.marciglesias.com/publicidad/ -# @@||marca.com/deporte/css/*/publicidad.css (easylistchina+easylist.txt: 59136) -.marca.com/deporte/css/.*/publicidad\.css -# @@||maps.gstatic.com/maps-api-*/adsense.js (easylistchina+easylist.txt: 59135) -.maps.gstatic.com/maps-api-.*/adsense\.js -# @@||maps.googleapis.com/maps-api-*/adsense.js (easylistchina+easylist.txt: 59134) -.maps.googleapis.com/maps-api-.*/adsense\.js -# @@||maps.chitika.net^ (easylistchina+easylist.txt: 59133) -.maps.chitika.net -# @@||maps-static.chitika.net^ (easylistchina+easylist.txt: 59132) -.maps-static.chitika.net -# @@||mansioncasino.com/banners/$~third-party (easylistchina+easylist.txt: 59131) -.mansioncasino.com/banners/ -# @@||manoramaonline.com/advt/cricbuzz/ (easylistchina+easylist.txt: 59130) -.manoramaonline.com/advt/cricbuzz/ -# @@||manilatimes.net/images/banners/logo-mt.png (easylistchina+easylist.txt: 59129) -.manilatimes.net/images/banners/logo-mt\.png -# @@||mail.yahoo.com/neo/assets/swf/uploader.swf (easylistchina+easylist.txt: 59128) -.mail.yahoo.com/neo/assets/swf/uploader\.swf -# @@||mail.google.com^*/uploaderapi*.swf (easylistchina+easylist.txt: 59127) -.mail.google.com/.*/uploaderapi.*\.swf -# @@||mail.google.com^*&view=ad&$xmlhttprequest (easylistchina+easylist.txt: 59126) -.mail.google.com/.*&view=ad& -# @@||magicbricks.com/img/adbanner/ (easylistchina+easylist.txt: 59125) -.magicbricks.com/img/adbanner/ -# @@||mads.com.com/ads/common/faith/*.xml$object-subrequest (easylistchina+easylist.txt: 59123) -.mads.com.com/ads/common/faith/.*\.xml -# @@||mads.cbs.com/mac-ad?$object-subrequest (easylistchina+easylist.txt: 59122) -.mads.cbs.com/mac-ad\? -# @@||macworld.com/www/js/ads/jquery.lazyload-ad.js (easylistchina+easylist.txt: 59121) -.macworld.com/www/js/ads/jquery\.lazyload-ad\.js -# @@||mac-sports.com/ads2/508128.swf (easylistchina+easylist.txt: 59120) -.mac-sports.com/ads2/508128\.swf -# @@||lyngsat-logo.com/icon/flag/az/ad.gif (easylistchina+easylist.txt: 59119) -.lyngsat-logo.com/icon/flag/az/ad\.gif -# @@||luceosolutions.com/recruit/advert_details.php?id=$subdocument (easylistchina+easylist.txt: 59117) -.luceosolutions.com/recruit/advert_details\.php\?id= -# @@||ltassrv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59114) -.ltassrv.com/crossdomain\.xml -# @@||lovefilm.com/static/scripts/advertising/dart.overlay.js (easylistchina+easylist.txt: 59112) -.lovefilm.com/static/scripts/advertising/dart\.overlay\.js -# @@||lovefilm.com/ajax/widgets/advertising/$xmlhttprequest (easylistchina+easylist.txt: 59111) -.lovefilm.com/ajax/widgets/advertising/ -# @@||logmein.com/Serve.aspx?ZoneID=$script,~third-party (easylistchina+easylist.txt: 59107) -.logmein.com/Serve\.aspx\?ZoneID= -# @@||llnwd.net^*/js/3rdparty/swfobject$script (easylistchina+easylist.txt: 59106) -.llnwd.net/.*/js/3rdparty/swfobject -# @@||live365.com/web/components/ads/*.html? (easylistchina+easylist.txt: 59101) -.live365.com/web/components/ads/.*\.html\? -# @@||live365.com/scripts/liveads.js (easylistchina+easylist.txt: 59100) -.live365.com/scripts/liveads\.js -# @@||live365.com/mini/blank300x250.html (easylistchina+easylist.txt: 59099) -.live365.com/mini/blank300x250\.html -# @@||live-support.se^*/Admax/$~third-party (easylistchina+easylist.txt: 59096) -.live-support.se/.*/Admax/ -# @@||listings.brokersweb.com/JsonSearchSb.aspx?*&maxAds=$script (easylistchina+easylist.txt: 59095) -.listings.brokersweb.com/JsonSearchSb\.aspx\?.*&maxAds= -# @@||lipsum.com/images/banners/ (easylistchina+easylist.txt: 59094) -.lipsum.com/images/banners/ -# @@||linksave.in/img/usercp/ads.png (easylistchina+easylist.txt: 59090) -.linksave.in/img/usercp/ads\.png -# @@||linkbucks.com/tmpl/$image,stylesheet (easylistchina+easylist.txt: 59088) -.linkbucks.com/tmpl/ -# @@||limecellular.com/resources/images/adv/$~third-party (easylistchina+easylist.txt: 59087) -.limecellular.com/resources/images/adv/ -# @@||lightningcast.net/servlets/getplaylist?*&responsetype=asx&$object (easylistchina+easylist.txt: 59085) -.lightningcast.net/servlets/getplaylist\?.*&responsetype=asx& -# @@||libraryjournal.com/wp-content/plugins/wp-intern-ads/$script,stylesheet (easylistchina+easylist.txt: 59084) -.libraryjournal.com/wp-content/plugins/wp-intern-ads/ -# @@||lesacasino.com/banners/$~third-party (easylistchina+easylist.txt: 59083) -.lesacasino.com/banners/ -# @@||lemon-ads.com^$~document,~third-party (easylistchina+easylist.txt: 59082) -.lemon-ads.com -# @@||lelong.com.my/UserImages/Ads/$image,~third-party (easylistchina+easylist.txt: 59081) -.lelong.com.my/UserImages/Ads/ -# @@||lehighvalleylive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59080) -.lehighvalleylive.com/static/common/js/ads/ads\.js -# @@||larazon.es/larazon-theme/js/publicidad.js? (easylistchina+easylist.txt: 59076) -.larazon.es/larazon-theme/js/publicidad\.js\? -# @@||lanacion.com.ar/*/publicidad/ (easylistchina+easylist.txt: 59075) -.lanacion.com.ar/.*/publicidad/ -# @@||lads.myspace.com/videos/msvideoplayer.swf?$object,object-subrequest (easylistchina+easylist.txt: 59074) -.lads.myspace.com/videos/msvideoplayer\.swf\? -# @@||lacanadaonline.com/hive/images/adv_ (easylistchina+easylist.txt: 59073) -.lacanadaonline.com/hive/images/adv_ -# @@||l.yimg.com/zz/combo?*/advertising.$stylesheet (easylistchina+easylist.txt: 59072) -.l.yimg.com/zz/combo\?.*/advertising\. -# @@||l.yimg.com/*/adservice/ (easylistchina+easylist.txt: 59071) -.l.yimg.com/.*/adservice/ -# @@||ksl.com/resources/classifieds/graphics/ad_ (easylistchina+easylist.txt: 59070) -.ksl.com/resources/classifieds/graphics/ad_ -# @@||krispykreme.com/content/images/ads/ (easylistchina+easylist.txt: 59069) -.krispykreme.com/content/images/ads/ -# @@||kotak.com/banners/$image (easylistchina+easylist.txt: 59068) -.kotak.com/banners/ -# @@||koaa.com/videoplayer/iframe.cfm?*&hide_ads= (easylistchina+easylist.txt: 59066) -.koaa.com/videoplayer/iframe\.cfm\?.*&hide_ads= -# @@||kloubert.com/wp-content/uploads/*/Advertising_$image,~third-party (easylistchina+easylist.txt: 59065) -.kloubert.com/wp-content/uploads/.*/Advertising_ -# @@||kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_$object (easylistchina+easylist.txt: 59064) -.kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_ -# @@||kingofgames.net/gads/kingofgames.swf (easylistchina+easylist.txt: 59061) -.kingofgames.net/gads/kingofgames\.swf -# @@||king5.com/templates/belo_dart_iframed_ad?dartTag=LeaderTop&$subdocument (easylistchina+easylist.txt: 59060) -.king5.com/templates/belo_dart_iframed_ad\?dartTag=LeaderTop& -# @@||kidshealth.org/licensees/licensee1/js/gam.html (easylistchina+easylist.txt: 59059) -.kidshealth.org/licensees/licensee1/js/gam\.html -# @@||kcra.com^*/adpositionsizein-min.js (easylistchina+easylist.txt: 59057) -.kcra.com/.*/adpositionsizein-min\.js -# @@||kcna.kp/images/ads_arrow_ (easylistchina+easylist.txt: 59056) -.kcna.kp/images/ads_arrow_ -# @@||karolinashumilas.com/img/adv/ (easylistchina+easylist.txt: 59055) -.karolinashumilas.com/img/adv/ -# @@||kamernet.nl/Adverts/$~third-party (easylistchina+easylist.txt: 59054) -.kamernet.nl/Adverts/ -# @@||justin-klein.com/banners/ (easylistchina+easylist.txt: 59052) -.justin-klein.com/banners/ -# @@||jsstatic.com/_ads/ (easylistchina+easylist.txt: 59050) -.jsstatic.com/_ads/ -# @@||joyhubs.com/View/*/js/pop.js (easylistchina+easylist.txt: 59048) -.joyhubs.com/View/.*/js/pop\.js -# @@||jobstreet.com/_ads/ (easylistchina+easylist.txt: 59046) -.jobstreet.com/_ads/ -# @@||jobsearch.careerone.com.au^*/bannerad.asmx/ (easylistchina+easylist.txt: 59045) -.jobsearch.careerone.com.au/.*/bannerad\.asmx/ -# @@||jobs.wa.gov.au/images/advertimages/ (easylistchina+easylist.txt: 59044) -.jobs.wa.gov.au/images/advertimages/ -# @@||itweb.co.za/banners/en-cdt*.gif (easylistchina+easylist.txt: 59042) -.itweb.co.za/banners/en-cdt.*\.gif -# @@||itv.com^*/tvshows_adcall_08.js (easylistchina+easylist.txt: 59041) -.itv.com/.*/tvshows_adcall_08\.js -# @@||itv.com^*/flvplayer.swf?$object (easylistchina+easylist.txt: 59040) -.itv.com/.*/flvplayer\.swf\? -# @@||itv.com^*.adserver.js (easylistchina+easylist.txt: 59039) -.itv.com/.*\.adserver\.js -# @@||itv.com/itv/hserver/*/site=itv/$xmlhttprequest (easylistchina+easylist.txt: 59036) -.itv.com/itv/hserver/.*/site=itv/ -# @@||island.lk/userfiles/image/danweem/island.gif (easylistchina+easylist.txt: 59035) -.island.lk/userfiles/image/danweem/island\.gif -# @@||iolproperty.co.za/images/ad_banner.png (easylistchina+easylist.txt: 59031) -.iolproperty.co.za/images/ad_banner\.png -# @@||inviziads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59030) -.inviziads.com/crossdomain\.xml -# @@||investors.com/Scripts/AdScript.js? (easylistchina+easylist.txt: 59029) -.investors.com/Scripts/AdScript\.js\? -# @@||interadcorp.com/script/interad.$script,stylesheet (easylistchina+easylist.txt: 59028) -.interadcorp.com/script/interad\. -# @@||intellitxt.com/ast/js/nbcuni/$script (easylistchina+easylist.txt: 59025) -.intellitxt.com/ast/js/nbcuni/ -# @@||intellitext.co^$~third-party (easylistchina+easylist.txt: 59024) -.intellitext.co -# @@||intellicast.com/App_Scripts/ad.min.js (easylistchina+easylist.txt: 59023) -.intellicast.com/App_Scripts/ad\.min\.js -# @@||inspire.net.nz/adverts/$image (easylistchina+easylist.txt: 59022) -.inspire.net.nz/adverts/ -# @@||inserts2online.com/images/site/viewad.gif (easylistchina+easylist.txt: 59015) -.inserts2online.com/images/site/viewad\.gif -# @@||inserts2online.com/*.jsp?*&adid=$subdocument (easylistchina+easylist.txt: 59014) -.inserts2online.com/.*\.jsp\?.*&adid= -# @@||infoworld.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 59009) -.infoworld.com/www/js/ads/gpt_includes\.js -# @@||indiatimes.com/configspace/ads/$object,object-subrequest (easylistchina+easylist.txt: 59008) -.indiatimes.com/configspace/ads/ -# @@||indiaresults.com/advertisements/submit.png (easylistchina+easylist.txt: 59007) -.indiaresults.com/advertisements/submit\.png -# @@||incredibox.fr/js/advertise.js (easylistchina+easylist.txt: 59006) -.incredibox.fr/js/advertise\.js -# @@||incredibox.fr/image/advertise/ (easylistchina+easylist.txt: 59005) -.incredibox.fr/image/advertise/ -# @@||incredibox.fr/advertise/_liste.js (easylistchina+easylist.txt: 59004) -.incredibox.fr/advertise/_liste\.js -# @@||imobie.com/js/anytrans-adv.js (easylistchina+easylist.txt: 59000) -.imobie.com/js/anytrans-adv\.js -# @@||img.weather.weatherbug.com^*/stickers/$image,stylesheet (easylistchina+easylist.txt: 58998) -.img.weather.weatherbug.com/.*/stickers/ -# @@||img.travidia.com^$image (easylistchina+easylist.txt: 58997) -.img.travidia.com -# @@||img.thedailywtf.com/images/ads/ (easylistchina+easylist.txt: 58996) -.img.thedailywtf.com/images/ads/ -# @@||imasdk.googleapis.com/flash/sdkloader/adsapi_3.swf$object-subrequest (easylistchina+easylist.txt: 58989) -.imasdk.googleapis.com/flash/sdkloader/adsapi_3\.swf -# @@||imasdk.googleapis.com/flash/core/3.*/adsapi.swf$object-subrequest (easylistchina+easylist.txt: 58988) -.imasdk.googleapis.com/flash/core/3\..*/adsapi\.swf -# @@||images.nickjr.com/ads/promo/ (easylistchina+easylist.txt: 58984) -.images.nickjr.com/ads/promo/ -# @@||images.nationalgeographic.com/wpf/media-live/graphic/ (easylistchina+easylist.txt: 58983) -.images.nationalgeographic.com/wpf/media-live/graphic/ -# @@||images.mmorpg.com/scripts/advertisement.js (easylistchina+easylist.txt: 58982) -.images.mmorpg.com/scripts/advertisement\.js -# @@||images.frys.com/art/ads/js/$script,stylesheet (easylistchina+easylist.txt: 58981) -.images.frys.com/art/ads/js/ -# @@||images.frys.com/art/ads/images/$image,~third-party (easylistchina+easylist.txt: 58980) -.images.frys.com/art/ads/images/ -# @@||images.forbes.com/video/ads/blank_frame.flv$object-subrequest (easylistchina+easylist.txt: 58979) -.images.forbes.com/video/ads/blank_frame\.flv -# @@||images.dashtickets.co.nz/advertising/featured/$image (easylistchina+easylist.txt: 58978) -.images.dashtickets.co.nz/advertising/featured/ -# @@||ikea.com^*/img/ads/ (easylistchina+easylist.txt: 58974) -.ikea.com/.*/img/ads/ -# @@||ikea.com^*/img/ad_ (easylistchina+easylist.txt: 58973) -.ikea.com/.*/img/ad_ -# @@||iframe.ivillage.com/iframe_render? (easylistchina+easylist.txt: 58971) -.iframe.ivillage.com/iframe_render\? -# @@||ifeelgoood.com/tapcontent-*.swf?clicktag=$object (easylistchina+easylist.txt: 58970) -.ifeelgoood.com/tapcontent-.*\.swf\?clicktag= -# @@||identity-us.com/ads/ads.html (easylistchina+easylist.txt: 58969) -.identity-us.com/ads/ads\.html -# @@||icons.iconarchive.com/icons/$image (easylistchina+easylist.txt: 58968) -.icons.iconarchive.com/icons/ -# @@||icefilms.info/jquery.lazyload-ad-*-min.js (easylistchina+easylist.txt: 58967) -.icefilms.info/jquery\.lazyload-ad-.*-min\.js -# @@||ibnlive.com/videoads/*_ads_*.xml$object-subrequest (easylistchina+easylist.txt: 58965) -.ibnlive.com/videoads/.*_ads_.*\.xml -# @@||i.espn.co.uk/ads/gamemodule_$object (easylistchina+easylist.txt: 58964) -.i.espn.co.uk/ads/gamemodule_ -# @@||i.cdn.turner.com^*/adserviceadapter.swf (easylistchina+easylist.txt: 58962) -.i.cdn.turner.com/.*/adserviceadapter\.swf -# @@||huntington.com/Script/AdManager.js (easylistchina+easylist.txt: 58961) -.huntington.com/Script/AdManager\.js -# @@||hulu.com/published/*.mp4 (easylistchina+easylist.txt: 58959) -.hulu.com/published/.*\.mp4 -# @@||hulu.com/published/*.flv (easylistchina+easylist.txt: 58958) -.hulu.com/published/.*\.flv -# @@||hulkshare.com/js/adsmanager.js (easylistchina+easylist.txt: 58957) -.hulkshare.com/js/adsmanager\.js -# @@||huffingtonpost.com/images/ads/$~third-party (easylistchina+easylist.txt: 58955) -.huffingtonpost.com/images/ads/ -# @@||huffingtonpost.com/_uac/adpage.html (easylistchina+easylist.txt: 58954) -.huffingtonpost.com/_uac/adpage\.html -# @@||huffingtonpost.co.uk/_uac/adpage.html (easylistchina+easylist.txt: 58953) -.huffingtonpost.co.uk/_uac/adpage\.html -# @@||hp.com^*/scripts/ads/$~third-party (easylistchina+easylist.txt: 58952) -.hp.com/.*/scripts/ads/ -# @@||howcast.com/flash/assets/ads/liverail.swf (easylistchina+easylist.txt: 58951) -.howcast.com/flash/assets/ads/liverail\.swf -# @@||houstonpress.com/adindex/$xmlhttprequest (easylistchina+easylist.txt: 58950) -.houstonpress.com/adindex/ -# @@||housebeautiful.com/cm/shared/scripts/refreshads-*.js (easylistchina+easylist.txt: 58949) -.housebeautiful.com/cm/shared/scripts/refreshads-.*\.js -# @@||housebeautiful.com/ams/page-ads.js (easylistchina+easylist.txt: 58948) -.housebeautiful.com/ams/page-ads\.js -# @@||hotnewhiphop.com/web_root/images/ads/banner-*.png (easylistchina+easylist.txt: 58947) -.hotnewhiphop.com/web_root/images/ads/banner-.*\.png -# @@||homedepot.com^*/thdGoogleAdSense.js (easylistchina+easylist.txt: 58946) -.homedepot.com/.*/thdGoogleAdSense\.js -# @@||hologfx.com/banners/$image,~third-party (easylistchina+easylist.txt: 58945) -.hologfx.com/banners/ -# @@||historyextra.com^*_advertorial$stylesheet (easylistchina+easylist.txt: 58944) -.historyextra.com/.*_advertorial -# @@||hipsterhitler.com/wp-content/webcomic/$image (easylistchina+easylist.txt: 58943) -.hipsterhitler.com/wp-content/webcomic/ -# @@||hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement.jpg (easylistchina+easylist.txt: 58942) -.hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement\.jpg -# @@||hillvue.com/banners/$image,~third-party (easylistchina+easylist.txt: 58941) -.hillvue.com/banners/ -# @@||hentai-foundry.com/themes/default/images/buttons/add_comment_icon.png (easylistchina+easylist.txt: 58940) -.hentai-foundry.com/themes/default/images/buttons/add_comment_icon\.png -# @@||hellotv.in/livetv/advertisements.xml$object-subrequest (easylistchina+easylist.txt: 58939) -.hellotv.in/livetv/advertisements\.xml -# @@||hebdenbridge.co.uk/ads/images/smallads.png (easylistchina+easylist.txt: 58938) -.hebdenbridge.co.uk/ads/images/smallads\.png -# @@||healthline.com/v2/ad-mr2-iframe?useAdsHost=*&dfpAdSite= (easylistchina+easylist.txt: 58937) -.healthline.com/v2/ad-mr2-iframe\?useAdsHost=.*&dfpAdSite= -# @@||healthline.com/v2/ad-leaderboard-iframe?$subdocument (easylistchina+easylist.txt: 58936) -.healthline.com/v2/ad-leaderboard-iframe\? -# @@||healthline.com/resources/base/js/responsive-ads.js? (easylistchina+easylist.txt: 58935) -.healthline.com/resources/base/js/responsive-ads\.js\? -# @@||healthadnet.adprimemedia.com/vn/vna/data/ad.php$object-subrequest (easylistchina+easylist.txt: 58933) -.healthadnet.adprimemedia.com/vn/vna/data/ad\.php -# @@||hbindependent.com/hive/images/adv_ (easylistchina+easylist.txt: 58932) -.hbindependent.com/hive/images/adv_ -# @@||hawaii-scuba.com/ads_styles.css (easylistchina+easylist.txt: 58931) -.hawaii-scuba.com/ads_styles\.css -# @@||harmonsgrocery.com/ads/$image (easylistchina+easylist.txt: 58930) -.harmonsgrocery.com/ads/ -# @@||hallo.co.uk/advert/$~third-party (easylistchina+easylist.txt: 58929) -.hallo.co.uk/advert/ -# @@||hafeezcentre.pk^*/ads_images/$image,~third-party (easylistchina+easylist.txt: 58928) -.hafeezcentre.pk/.*/ads_images/ -# @@||gws.ign.com/ws/search?*&google_adpage=$script (easylistchina+easylist.txt: 58927) -.gws.ign.com/ws/search\?.*&google_adpage= -# @@||guysen.com/script/ads.js (easylistchina+easylist.txt: 58926) -.guysen.com/script/ads\.js -# @@||gumtree.com^*/postAd.js (easylistchina+easylist.txt: 58925) -.gumtree.com/.*/postAd\.js -# @@||gulflive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58924) -.gulflive.com/static/common/js/ads/ads\.js -# @@||guim.co.uk^*/styles/wide/google-ads.css (easylistchina+easylist.txt: 58923) -.guim.co.uk/.*/styles/wide/google-ads\.css -# @@||guardianapps.co.uk^*/advertisement-features$xmlhttprequest (easylistchina+easylist.txt: 58922) -.guardianapps.co.uk/.*/advertisement-features -# @@||guardian4.com/banners/$image,~third-party (easylistchina+easylist.txt: 58921) -.guardian4.com/banners/ -# @@||gotomeeting.com/images/ad/$image,stylesheet (easylistchina+easylist.txt: 58919) -.gotomeeting.com/images/ad/ -# @@||gotoassist.com/images/ad/ (easylistchina+easylist.txt: 58918) -.gotoassist.com/images/ad/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?format=728x90^$document,subdocument (easylistchina+easylist.txt: 58909) -.google.com/uds/modules/elements/newsshow/iframe\.html\?format=728x90[^\w%.-] -# @@||google.com/search?q=$xmlhttprequest (easylistchina+easylist.txt: 58904) -.google.com/search\?q= -# @@||google.com/_static/images/*/ads.png (easylistchina+easylist.txt: 58896) -.google.com/_static/images/.*/ads\.png -# @@||google.com/_/apps-static/*/socialads/$script,stylesheet (easylistchina+easylist.txt: 58895) -.google.com/_/apps-static/.*/socialads/ -# @@||google.*/webpagethumbnail?*&query=$script (easylistchina+easylist.txt: 58894) -.google.*./(.*/)?webpagethumbnail\?.*&query= -# @@||google.*/search?sclient=*&q=$xmlhttprequest (easylistchina+easylist.txt: 58893) -.google.*./(.*/)?search\?sclient=.*&q= -# @@||google.*/s?*&q=$xmlhttprequest (easylistchina+easylist.txt: 58892) -.google.*./(.*/)?s\?.*&q= -# @@||goodyhoo.com/banners/ (easylistchina+easylist.txt: 58891) -.goodyhoo.com/banners/ -# @@||goember.com/ad/*.xml?$xmlhttprequest (easylistchina+easylist.txt: 58890) -.goember.com/ad/.*\.xml\? -# @@||godtube.com/resource/mediaplayer/*&adzone=$object-subrequest (easylistchina+easylist.txt: 58889) -.godtube.com/resource/mediaplayer/.*&adzone= -# @@||godlessnightsfilm.co.uk/scripts/ad-gallery/ (easylistchina+easylist.txt: 58888) -.godlessnightsfilm.co.uk/scripts/ad-gallery/ -# @@||gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-*.swf$object (easylistchina+easylist.txt: 58886) -.gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-.*\.swf -# @@||gmfreeze.org/site_media//uploads/page_ad_images/$image (easylistchina+easylist.txt: 58884) -.gmfreeze.org/site_media//uploads/page_ad_images/ -# @@||globaltv.com/js/smdg_ads.js (easylistchina+easylist.txt: 58883) -.globaltv.com/js/smdg_ads\.js -# @@||glendalenewspress.com/hive/images/adv_ (easylistchina+easylist.txt: 58881) -.glendalenewspress.com/hive/images/adv_ -# @@||glamour.com/aspen/js/dartCall.js (easylistchina+easylist.txt: 58880) -.glamour.com/aspen/js/dartCall\.js -# @@||glamour.com/aspen/components/cn-fe-ads/js/cn.dart.js (easylistchina+easylist.txt: 58879) -.glamour.com/aspen/components/cn-fe-ads/js/cn\.dart\.js -# @@||gitorious.org/adv/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58878) -.gitorious.org/adv/ -# @@||girlsplay.com/banners/ima3_preloader_$object (easylistchina+easylist.txt: 58877) -.girlsplay.com/banners/ima3_preloader_ -# @@||getgamesgo.com/Banners/$image,~third-party (easylistchina+easylist.txt: 58873) -.getgamesgo.com/Banners/ -# @@||geektime.com/wp-content/uploads/*/Google-Adsense-$image,~third-party (easylistchina+easylist.txt: 58872) -.geektime.com/wp-content/uploads/.*/Google-Adsense- -# @@||gcultra.com/js/exit_popup.js (easylistchina+easylist.txt: 58871) -.gcultra.com/js/exit_popup\.js -# @@||garrysmod.org/ads/$image,script,stylesheet (easylistchina+easylist.txt: 58870) -.garrysmod.org/ads/ -# @@||garmin.com^*/Sponsors.js? (easylistchina+easylist.txt: 58869) -.garmin.com/.*/Sponsors\.js\? -# @@||gamesgames.com/vda/friendly-iframe.html?videoPreroll300x250$subdocument (easylistchina+easylist.txt: 58866) -.gamesgames.com/vda/friendly-iframe\.html\?videoPreroll300x250 -# @@||games.cnn.com/ad/$object,object-subrequest,subdocument (easylistchina+easylist.txt: 58864) -.games.cnn.com/ad/ -# @@||gameitnow.com/ads/google_loader.swf$object (easylistchina+easylist.txt: 58863) -.gameitnow.com/ads/google_loader\.swf -# @@||gameitnow.com/ads/gameadvertentie.php?$subdocument (easylistchina+easylist.txt: 58862) -.gameitnow.com/ads/gameadvertentie\.php\? -# @@||gamehouse.com/adiframe/preroll-ad/$subdocument (easylistchina+easylist.txt: 58861) -.gamehouse.com/adiframe/preroll-ad/ -# @@||game.zylom.com^*/cm_loader.*.swf?$object (easylistchina+easylist.txt: 58860) -.game.zylom.com/.*/cm_loader\..*\.swf\? -# @@||game.zylom.com^*.swf?*&adURL=$object (easylistchina+easylist.txt: 58859) -.game.zylom.com/.*\.swf\?.*&adURL= -# @@||gactv.com^*/javascript/ad/coread/$script (easylistchina+easylist.txt: 58858) -.gactv.com/.*/javascript/ad/coread/ -# @@||g4tv.com/clientscriptoptimizer.ashx?*-ads.$script,stylesheet (easylistchina+easylist.txt: 58857) -.g4tv.com/clientscriptoptimizer\.ashx\?.*-ads\. -# @@||g.doubleclick.net/pagead/ads?ad_type=text_dynamicimage_flash^$object-subrequest (easylistchina+easylist.txt: 58856) -.g.doubleclick.net/pagead/ads\?ad_type=text_dynamicimage_flash[^\w%.-] -# @@||funiaste.net/obrazki/*&adtype= (easylistchina+easylist.txt: 58847) -.funiaste.net/obrazki/.*&adtype= -# @@||fs-freeware.net/images/jdownloads/downloadimages/banner_ads.png (easylistchina+easylist.txt: 58845) -.fs-freeware.net/images/jdownloads/downloadimages/banner_ads\.png -# @@||freeviewnz.tv^*/uploads/ads/ (easylistchina+easylist.txt: 58843) -.freeviewnz.tv/.*/uploads/ads/ -# @@||freeride.co.uk/img/admarket/$~third-party (easylistchina+easylist.txt: 58842) -.freeride.co.uk/img/admarket/ -# @@||freeonlinegames.com/advertising/google-loader.swf?$object (easylistchina+easylist.txt: 58841) -.freeonlinegames.com/advertising/google-loader\.swf\? -# @@||freeonlinegames.com/advertising/adaptv-as3.swf?$object (easylistchina+easylist.txt: 58840) -.freeonlinegames.com/advertising/adaptv-as3\.swf\? -# @@||freeads.in/freead.png (easylistchina+easylist.txt: 58839) -.freeads.in/freead\.png -# @@||freeads.in/classifieds/common/postad.css (easylistchina+easylist.txt: 58838) -.freeads.in/classifieds/common/postad\.css -# @@||forums.realgm.com/banners/ (easylistchina+easylist.txt: 58837) -.forums.realgm.com/banners/ -# @@||fortune.com/data/chartbeat/$xmlhttprequest (easylistchina+easylist.txt: 58836) -.fortune.com/data/chartbeat/ -# @@||forex.com/adx/$image (easylistchina+easylist.txt: 58835) -.forex.com/adx/ -# @@||folklands.com/health/advertise_with_us_files/$~third-party (easylistchina+easylist.txt: 58833) -.folklands.com/health/advertise_with_us_files/ -# @@||flysaa.com^*/jquery.adserver.js (easylistchina+easylist.txt: 58830) -.flysaa.com/.*/jquery\.adserver\.js -# @@||flyerservices.com/cached_banner_pages/*bannerid= (easylistchina+easylist.txt: 58829) -.flyerservices.com/cached_banner_pages/.*bannerid= -# @@||flossmanuals.net/site_static/xinha/plugins/DoubleClick/$~third-party (easylistchina+easylist.txt: 58828) -.flossmanuals.net/site_static/xinha/plugins/DoubleClick/ -# @@||flipboard.com/media/uploads/adv_$image,~third-party (easylistchina+easylist.txt: 58826) -.flipboard.com/media/uploads/adv_ -# @@||fixtracking.com/images/ad-$image,~third-party (easylistchina+easylist.txt: 58824) -.fixtracking.com/images/ad- -# @@||filestage.to/design/player/player.swf?*&popunder=$object,third-party (easylistchina+easylist.txt: 58823) -.filestage.to/design/player/player\.swf\?.*&popunder= -# @@||files.coloribus.com^$image,~third-party (easylistchina+easylist.txt: 58822) -.files.coloribus.com -# @@||fifa.com/flash/videoplayer/libs/advert_$object-subrequest (easylistchina+easylist.txt: 58821) -.fifa.com/flash/videoplayer/libs/advert_ -# @@||festina.com/txt/advertising.xml$object-subrequest (easylistchina+easylist.txt: 58819) -.festina.com/txt/advertising\.xml -# @@||feeds.videogamer.com^*/videoad.xml?$object-subrequest (easylistchina+easylist.txt: 58818) -.feeds.videogamer.com/.*/videoad\.xml\? -# @@||feedroom.speedera.net/static.feedroom.com/affiliate/ (easylistchina+easylist.txt: 58817) -.feedroom.speedera.net/static\.feedroom\.com/affiliate/ -# @@||fbcdn.net/rsrc.php/*-aD2.js$script (easylistchina+easylist.txt: 58815) -.fbcdn.net/rsrc\.php/.*-aD2\.js -# @@||farecompare.com^*/farecomp/ (easylistchina+easylist.txt: 58814) -.farecompare.com/.*/farecomp/ -# @@||faceinhole.com/adsense.swf$object-subrequest (easylistchina+easylist.txt: 58813) -.faceinhole.com/adsense\.swf -# @@||extras.chron.com/banners/*/social_icons/$image,subdocument (easylistchina+easylist.txt: 58810) -.extras.chron.com/banners/.*/social_icons/ -# @@||explosm.net/db/files/comics/$image (easylistchina+easylist.txt: 58809) -.explosm.net/db/files/comics/ -# @@||explosm.net/comics/$image (easylistchina+easylist.txt: 58808) -.explosm.net/comics/ -# @@||expedia.com/minify/ads-min-*.js? (easylistchina+easylist.txt: 58807) -.expedia.com/minify/ads-min-.*\.js\? -# @@||expedia.com/js.ng/*&PLACEMENT=CXHOMECORE_$script (easylistchina+easylist.txt: 58806) -.expedia.com/js\.ng/.*&PLACEMENT=CXHOMECORE_ -# @@||expedia.com/html.cms/TPID=*&ADSIZE=$subdocument (easylistchina+easylist.txt: 58805) -.expedia.com/html\.cms/TPID=.*&ADSIZE= -# @@||expedia.com/daily/common/msi.asp (easylistchina+easylist.txt: 58804) -.expedia.com/daily/common/msi\.asp -# @@||expedia.co.nz/html.cms/tpid=*&adsize= (easylistchina+easylist.txt: 58803) -.expedia.co.nz/html\.cms/tpid=.*&adsize= -# @@||ewallpapers.eu/ads/logo.jpg (easylistchina+easylist.txt: 58801) -.ewallpapers.eu/ads/logo\.jpg -# @@||eventim.de/obj/basic/ad2_obj/layout/ (easylistchina+easylist.txt: 58800) -.eventim.de/obj/basic/ad2_obj/layout/ -# @@||eventcinemas.co.nz^*_adhub_server_$script (easylistchina+easylist.txt: 58799) -.eventcinemas.co.nz/.*_adhub_server_ -# @@||evanscycles.com/ads/$image,~third-party (easylistchina+easylist.txt: 58798) -.evanscycles.com/ads/ -# @@||esquire.com/ams/page-ads.js?$script (easylistchina+easylist.txt: 58797) -.esquire.com/ams/page-ads\.js\? -# @@||espn.go.com^*/espn360/banner?$subdocument (easylistchina+easylist.txt: 58792) -.espn.go.com/.*/espn360/banner\? -# @@||espn.co.uk/ads/gamemodule_v0.2.swf$object (easylistchina+easylist.txt: 58791) -.espn.co.uk/ads/gamemodule_v0\.2\.swf -# @@||equippers.com/absolutebm.aspx?$script (easylistchina+easylist.txt: 58790) -.equippers.com/absolutebm\.aspx\? -# @@||equippers.com/abm.aspx?$script (easylistchina+easylist.txt: 58789) -.equippers.com/abm\.aspx\? -# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview.main.js? (easylistchina+easylist.txt: 58788) -.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview\.main\.js\? -# @@||epicgameads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58785) -.epicgameads.com/crossdomain\.xml -# @@||engrish.com/wp-content/uploads/*/advertisement-$image,~third-party (easylistchina+easylist.txt: 58784) -.engrish.com/wp-content/uploads/.*/advertisement- -# @@||englishanimes.com/wp-content/themes/englishanimes/js/pop.js (easylistchina+easylist.txt: 58783) -.englishanimes.com/wp-content/themes/englishanimes/js/pop\.js -# @@||engadget.com/_uac/adpage.html$subdocument (easylistchina+easylist.txt: 58781) -.engadget.com/_uac/adpage\.html -# @@||empireonline.com/images/image_index/300x250/ (easylistchina+easylist.txt: 58780) -.empireonline.com/images/image_index/300x250/ -# @@||emergencymedicalparamedic.com/wp-content/themes/AdSense/style.css (easylistchina+easylist.txt: 58779) -.emergencymedicalparamedic.com/wp-content/themes/AdSense/style\.css -# @@||emailbidding.com^*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58778) -.emailbidding.com/.*/advertiser/ -# @@||eluxe.ca^*_doubleclick.js*.pagespeed.$script (easylistchina+easylist.txt: 58777) -.eluxe.ca/.*_doubleclick\.js.*\.pagespeed\. -# @@||elephantjournal.com/ad_art/ (easylistchina+easylist.txt: 58776) -.elephantjournal.com/ad_art/ -# @@||eightinc.com/admin/zone.php?zoneid=$xmlhttprequest (easylistchina+easylist.txt: 58775) -.eightinc.com/admin/zone\.php\?zoneid= -# @@||ehow.co.uk/frames/ad.html?$subdocument (easylistchina+easylist.txt: 58774) -.ehow.co.uk/frames/ad\.html\? -# @@||egotastic.us.intellitxt.com/intellitxt/front.asp (easylistchina+easylist.txt: 58773) -.egotastic.us.intellitxt.com/intellitxt/front\.asp -# @@||eeweb.com/comics/*_ads-$image (easylistchina+easylist.txt: 58772) -.eeweb.com/comics/.*_ads- -# @@||eduspec.science.ru.nl^*-images/ad- (easylistchina+easylist.txt: 58771) -.eduspec.science.ru.nl/.*-images/ad- -# @@||edmontonsun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 58770) -.edmontonsun.com/assets/js/dfp\.js\? -# @@||edmontonjournal.com/js/adsync/adsynclibrary.js (easylistchina+easylist.txt: 58769) -.edmontonjournal.com/js/adsync/adsynclibrary\.js -# @@||edgar.pro-g.co.uk/data/*/videos/adverts/$object-subrequest (easylistchina+easylist.txt: 58766) -.edgar.pro-g.co.uk/data/.*/videos/adverts/ -# @@||economist.com.na^*/banners/cartoon_ (easylistchina+easylist.txt: 58765) -.economist.com.na/.*/banners/cartoon_ -# @@||eboundservices.com/iframe/newads/iframe.php?stream=$subdocument (easylistchina+easylist.txt: 58764) -.eboundservices.com/iframe/newads/iframe\.php\?stream= -# @@||ebayrtm.com/rtm?rtmcmd&a=json&cb=parent.$script (easylistchina+easylist.txt: 58763) -.ebayrtm.com/rtm\?rtmcmd&a=json&cb=parent\. -# @@||easyfundraising.org.uk/images/home/*-120x60.$image (easylistchina+easylist.txt: 58762) -.easyfundraising.org.uk/images/home/.*-120x60\. -# @@||earthtv.com/player_tmp/overlayad.js (easylistchina+easylist.txt: 58761) -.earthtv.com/player_tmp/overlayad\.js -# @@||earthtechling.com^*/imasters-wp-adserver-styles.css (easylistchina+easylist.txt: 58760) -.earthtechling.com/.*/imasters-wp-adserver-styles\.css -# @@||earthcam.com/swf/ads5.swf (easylistchina+easylist.txt: 58759) -.earthcam.com/swf/ads5\.swf -# @@||eagleboys.com.au/eagleboys/*/ads/$~third-party (easylistchina+easylist.txt: 58758) -.eagleboys.com.au/eagleboys/.*/ads/ -# @@||eafyfsuh.net/scripts/generated/key.js?t=$script (easylistchina+easylist.txt: 58757) -.eafyfsuh.net/scripts/generated/key\.js\?t= -# @@||eafyfsuh.net/intermission/loadTargetUrl?t=$xmlhttprequest (easylistchina+easylist.txt: 58756) -.eafyfsuh.net/intermission/loadTargetUrl\?t= -# @@||dyncdn.buzznet.com/catfiles/?f=dojo/*.googleadservices.$script (easylistchina+easylist.txt: 58755) -.dyncdn.buzznet.com/catfiles/\?f=dojo/.*\.googleadservices\. -# @@||dx.com/openx/$image,~third-party (easylistchina+easylist.txt: 58754) -.dx.com/openx/ -# @@||dwiextreme.com/banners/dwiextreme$image (easylistchina+easylist.txt: 58753) -.dwiextreme.com/banners/dwiextreme -# @@||dstw.adgear.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58751) -.dstw.adgear.com/crossdomain\.xml -# @@||drupal.org^*/revealads.png (easylistchina+easylist.txt: 58750) -.drupal.org/.*/revealads\.png -# @@||drunkard.com/banners/modern-drunkard-book.jpg (easylistchina+easylist.txt: 58749) -.drunkard.com/banners/modern-drunkard-book\.jpg -# @@||drunkard.com/banners/drunkard-gear.jpg (easylistchina+easylist.txt: 58748) -.drunkard.com/banners/drunkard-gear\.jpg -# @@||drunkard.com/banners/drunk-korps-banner.jpg (easylistchina+easylist.txt: 58747) -.drunkard.com/banners/drunk-korps-banner\.jpg -# @@||dropzone.no/sap/its/gfx/top_ad_$image,~third-party (easylistchina+easylist.txt: 58746) -.dropzone.no/sap/its/gfx/top_ad_ -# @@||dragon-mania-legends-wiki.mobga.me^*_Advertisement_ (easylistchina+easylist.txt: 58741) -.dragon-mania-legends-wiki.mobga.me/.*_Advertisement_ -# @@||dragon-mania-legends-wiki.mobga.me^*_advertisement. (easylistchina+easylist.txt: 58740) -.dragon-mania-legends-wiki.mobga.me/.*_advertisement\. -# @@||downvids.net/ads.js (easylistchina+easylist.txt: 58739) -.downvids.net/ads\.js -# @@||dove.saymedia.com^$xmlhttprequest (easylistchina+easylist.txt: 58738) -.dove.saymedia.com -# @@||doubleclick.net^*/targeted.optimum/*;sz=968x286;$image,popup,script (easylistchina+easylist.txt: 58735) -.doubleclick.net/.*/targeted\.optimum/.*;sz=968x286; -# @@||doubleclick.net^*/adj/wwe.shows/ecw_ecwreplay;*;sz=624x325;$script (easylistchina+easylist.txt: 58731) -.doubleclick.net/.*/adj/wwe\.shows/ecw_ecwreplay;.*;sz=624x325; -# @@||doubleclick.net/pfadx/umg.*;sz=10x$script (easylistchina+easylist.txt: 58727) -.doubleclick.net/pfadx/umg\..*;sz=10x -# @@||doubleclick.net/N2605/adi/MiLB.com/scoreboard;*;sz=728x90;$subdocument (easylistchina+easylist.txt: 58722) -.doubleclick.net/N2605/adi/MiLB\.com/scoreboard;.*;sz=728x90; -# @@||doubleclick.net/adj/pong.all/*;dcopt=ist;$script (easylistchina+easylist.txt: 58716) -.doubleclick.net/adj/pong\.all/.*;dcopt=ist; -# @@||doubleclick.net/adj/nbcu.nbc/videoplayer-$script (easylistchina+easylist.txt: 58713) -.doubleclick.net/adj/nbcu\.nbc/videoplayer- -# @@||doubleclick.net/adj/imdb2.consumer.video/*;sz=320x240,$script (easylistchina+easylist.txt: 58711) -.doubleclick.net/adj/imdb2\.consumer\.video/.*;sz=320x240, -# @@||doubleclick.net/adj/ctv.muchmusicblog.com/$script (easylistchina+easylist.txt: 58709) -.doubleclick.net/adj/ctv\.muchmusicblog\.com/ -# @@||doubleclick.net/adi/amzn.*;ri=digital-music-track;$subdocument (easylistchina+easylist.txt: 58696) -.doubleclick.net/adi/amzn\..*;ri=digital-music-track; -# @@||doubleclick.net/ad/can/chow/$object-subrequest (easylistchina+easylist.txt: 58692) -.doubleclick.net/ad/can/chow/ -# @@||domandgeri.com/banners/$~third-party (easylistchina+easylist.txt: 58689) -.domandgeri.com/banners/ -# @@||dolphinimaging.com/banners/ (easylistchina+easylist.txt: 58688) -.dolphinimaging.com/banners/ -# @@||dolphinimaging.com/banners.js (easylistchina+easylist.txt: 58687) -.dolphinimaging.com/banners\.js -# @@||dolidoli.com/images/ads- (easylistchina+easylist.txt: 58685) -.dolidoli.com/images/ads- -# @@||doityourself.com^*/shared/ads.css$stylesheet (easylistchina+easylist.txt: 58684) -.doityourself.com/.*/shared/ads\.css -# @@||disruptorbeam.com/assets/uploaded/ads/$image,~third-party (easylistchina+easylist.txt: 58681) -.disruptorbeam.com/assets/uploaded/ads/ -# @@||disneyphotopass.com/adimages/ (easylistchina+easylist.txt: 58680) -.disneyphotopass.com/adimages/ -# @@||disney.go.com/dxd/data/ads/game_ad.xml?gameid=$object-subrequest (easylistchina+easylist.txt: 58679) -.disney.go.com/dxd/data/ads/game_ad\.xml\?gameid= -# @@||disney.com.au/global/swf/banner300x250.swf (easylistchina+easylist.txt: 58678) -.disney.com.au/global/swf/banner300x250\.swf -# @@||discovery.com/components/consolidate-static/?files=*/adsense- (easylistchina+easylist.txt: 58677) -.discovery.com/components/consolidate-static/\?files=.*/adsense- -# @@||directwonen.nl/adverts/$~third-party (easylistchina+easylist.txt: 58676) -.directwonen.nl/adverts/ -# @@||directtextbook.com^*.php?ad_ (easylistchina+easylist.txt: 58675) -.directtextbook.com/.*\.php\?ad_ -# @@||direct.fairfax.com.au/hserver/*/site=vid.*/adtype=embedded/$script (easylistchina+easylist.txt: 58673) -.direct.fairfax.com.au/hserver/.*/site=vid\..*/adtype=embedded/ -# @@||digsby.com/affiliate/banners/$image,~third-party (easylistchina+easylist.txt: 58672) -.digsby.com/affiliate/banners/ -# @@||digiads.com.au/images/shared/misc/ad-disclaimer.gif (easylistchina+easylist.txt: 58671) -.digiads.com.au/images/shared/misc/ad-disclaimer\.gif -# @@||digiads.com.au/css/24032006/adstyle.css (easylistchina+easylist.txt: 58670) -.digiads.com.au/css/24032006/adstyle\.css -# @@||deviantart.net/minish/advertising/downloadad_splash_close.png (easylistchina+easylist.txt: 58669) -.deviantart.net/minish/advertising/downloadad_splash_close\.png -# @@||design-essentials.net/affiliate/$script,subdocument (easylistchina+easylist.txt: 58667) -.design-essentials.net/affiliate/ -# @@||delvenetworks.com/player/*_ad_$subdocument (easylistchina+easylist.txt: 58665) -.delvenetworks.com/player/.*_ad_ -# @@||delish.com/cm/shared/scripts/refreshads-*.js (easylistchina+easylist.txt: 58663) -.delish.com/cm/shared/scripts/refreshads-.*\.js -# @@||deliciousdigital.com/data/our-work/advertising/ (easylistchina+easylist.txt: 58662) -.deliciousdigital.com/data/our-work/advertising/ -# @@||delicious.com^*/compose?url=$xmlhttprequest (easylistchina+easylist.txt: 58661) -.delicious.com/.*/compose\?url= -# @@||dealerimg.com/Ads/$image (easylistchina+easylist.txt: 58660) -.dealerimg.com/Ads/ -# @@||dc.tremormedia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58659) -.dc.tremormedia.com/crossdomain\.xml -# @@||dawanda.com^*/adcenter.js$~third-party (easylistchina+easylist.txt: 58658) -.dawanda.com/.*/adcenter\.js -# @@||dawanda.com^*/ad_center.css$~third-party (easylistchina+easylist.txt: 58657) -.dawanda.com/.*/ad_center\.css -# @@||davidsilverspares.co.uk/graphics/*_ad.gif$~third-party (easylistchina+easylist.txt: 58656) -.davidsilverspares.co.uk/graphics/.*_ad\.gif -# @@||davescomputertips.com/images/ads/paypal.png (easylistchina+easylist.txt: 58655) -.davescomputertips.com/images/ads/paypal\.png -# @@||dataknet.com/s.axd?$stylesheet (easylistchina+easylist.txt: 58654) -.dataknet.com/s\.axd\? -# @@||data.panachetech.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58652) -.data.panachetech.com/crossdomain\.xml -# @@||dart.clearchannel.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58651) -.dart.clearchannel.com/crossdomain\.xml -# @@||danielechevarria.com^*/advertising-$~third-party (easylistchina+easylist.txt: 58650) -.danielechevarria.com/.*/advertising- -# @@||dailypilot.com/hive/images/adv_ (easylistchina+easylist.txt: 58649) -.dailypilot.com/hive/images/adv_ -# @@||dailymotion.com/videowall/*&clickTAG=http (easylistchina+easylist.txt: 58648) -.dailymotion.com/videowall/.*&clickTAG=http -# @@||dailymail.co.uk^*/googleads--.js (easylistchina+easylist.txt: 58647) -.dailymail.co.uk/.*/googleads--\.js -# @@||dailyhiit.com/sites/*/ad-images/ (easylistchina+easylist.txt: 58646) -.dailyhiit.com/sites/.*/ad-images/ -# @@||dailycaller.com/wp-content/plugins/advertisements/$script (easylistchina+easylist.txt: 58645) -.dailycaller.com/wp-content/plugins/advertisements/ -# @@||d3con.org/data1/$image,~third-party (easylistchina+easylist.txt: 58641) -.d3con.org/data1/ -# @@||cydiaupdates.net/CydiaUpdates.com_600x80.png (easylistchina+easylist.txt: 58639) -.cydiaupdates.net/CydiaUpdates\.com_600x80\.png -# @@||cvs.com/webcontent/images/weeklyad/adcontent/$~third-party (easylistchina+easylist.txt: 58637) -.cvs.com/webcontent/images/weeklyad/adcontent/ -# @@||cubeecraft.com/openx/$~third-party (easylistchina+easylist.txt: 58636) -.cubeecraft.com/openx/ -# @@||ctv.ca/players/mediaplayer/*/AdManager.js^ (easylistchina+easylist.txt: 58635) -.ctv.ca/players/mediaplayer/.*/AdManager\.js[^\w%.-] -# @@||css.wpdigital.net/wpost/css/combo?*/ads.css (easylistchina+easylist.txt: 58634) -.css.wpdigital.net/wpost/css/combo\?.*/ads\.css -# @@||csoonline.com/js/doubleclick_ads.js? (easylistchina+easylist.txt: 58633) -.csoonline.com/js/doubleclick_ads\.js\? -# @@||csmonitor.com/advertising/sharetools.php$subdocument (easylistchina+easylist.txt: 58632) -.csmonitor.com/advertising/sharetools\.php -# @@||csair.com/*/adpic.js (easylistchina+easylist.txt: 58631) -.csair.com/.*/adpic\.js -# @@||cricketcountry.com/js/ad-gallery.js$script (easylistchina+easylist.txt: 58630) -.cricketcountry.com/js/ad-gallery\.js -# @@||cricbuzz.com/includes/ads/schedule/$~third-party (easylistchina+easylist.txt: 58629) -.cricbuzz.com/includes/ads/schedule/ -# @@||cricbuzz.com/includes/ads/images/worldcup/more_arrow_$image (easylistchina+easylist.txt: 58628) -.cricbuzz.com/includes/ads/images/worldcup/more_arrow_ -# @@||cricbuzz.com/includes/ads/images/wct20/$image (easylistchina+easylist.txt: 58627) -.cricbuzz.com/includes/ads/images/wct20/ -# @@||cracker.com.au^*/cracker-classifieds-free-ads.$~document (easylistchina+easylist.txt: 58626) -.cracker.com.au/.*/cracker-classifieds-free-ads\. -# @@||countryliving.com/ams/page-ads.js (easylistchina+easylist.txt: 58625) -.countryliving.com/ams/page-ads\.js -# @@||cosmopolitan.com/cm/shared/scripts/refreshads-$script (easylistchina+easylist.txt: 58624) -.cosmopolitan.com/cm/shared/scripts/refreshads- -# @@||cosmopolitan.com/ams/page-ads.js (easylistchina+easylist.txt: 58623) -.cosmopolitan.com/ams/page-ads\.js -# @@||corporatehousingbyowner.com/js/ad-gallery.js (easylistchina+easylist.txt: 58622) -.corporatehousingbyowner.com/js/ad-gallery\.js -# @@||copesdistributing.com/images/adds/banner_$~third-party (easylistchina+easylist.txt: 58621) -.copesdistributing.com/images/adds/banner_ -# @@||content.hallmark.com/scripts/ecards/adspot.js (easylistchina+easylist.txt: 58620) -.content.hallmark.com/scripts/ecards/adspot\.js -# @@||content.datingfactory.com/promotools/$script (easylistchina+easylist.txt: 58619) -.content.datingfactory.com/promotools/ -# @@||contactmusic.com/advertpro/servlet/view/dynamic/$object-subrequest (easylistchina+easylist.txt: 58616) -.contactmusic.com/advertpro/servlet/view/dynamic/ -# @@||constructalia.com/banners/$image,~third-party (easylistchina+easylist.txt: 58615) -.constructalia.com/banners/ -# @@||connectingdirectories.com/advertisers/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58614) -.connectingdirectories.com/advertisers/ -# @@||comsec.com.au^*/homepage_banner_ad.gif (easylistchina+easylist.txt: 58612) -.comsec.com.au/.*/homepage_banner_ad\.gif -# @@||computerworld.com/resources/scripts/lib/doubleclick_ads.js$script (easylistchina+easylist.txt: 58611) -.computerworld.com/resources/scripts/lib/doubleclick_ads\.js -# @@||completemarkets.com/pictureHandler.ashx?adid=$image,~third-party (easylistchina+easylist.txt: 58610) -.completemarkets.com/pictureHandler\.ashx\?adid= -# @@||commarts.com/Images/missinganissue_ad.gif (easylistchina+easylist.txt: 58609) -.commarts.com/Images/missinganissue_ad\.gif -# @@||colorado.gov/airquality/psi/adv.png (easylistchina+easylist.txt: 58606) -.colorado.gov/airquality/psi/adv\.png -# @@||collective-media.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58604) -.collective-media.net/crossdomain\.xml -# @@||coastlinepilot.com/hive/images/adv_ (easylistchina+easylist.txt: 58603) -.coastlinepilot.com/hive/images/adv_ -# @@||cnet.com/ad/ad-cookie/*?_=$xmlhttprequest (easylistchina+easylist.txt: 58602) -.cnet.com/ad/ad-cookie/.*\?_= -# @@||clustrmaps.com/images/clustrmaps-back-soon.jpg$third-party (easylistchina+easylist.txt: 58601) -.clustrmaps.com/images/clustrmaps-back-soon\.jpg -# @@||club777.com/banners/$~third-party (easylistchina+easylist.txt: 58600) -.club777.com/banners/ -# @@||clickbd.com^*/ads/$image,~third-party (easylistchina+easylist.txt: 58597) -.clickbd.com/.*/ads/ -# @@||cleveland.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58596) -.cleveland.com/static/common/js/ads/ads\.js -# @@||classistatic.com^*/banner-ads/ (easylistchina+easylist.txt: 58595) -.classistatic.com/.*/banner-ads/ -# @@||classifieds.wsj.com/ad/$~third-party (easylistchina+easylist.txt: 58594) -.classifieds.wsj.com/ad/ -# @@||classifiedads.com/adbox.php$xmlhttprequest (easylistchina+easylist.txt: 58593) -.classifiedads.com/adbox\.php -# @@||cio.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 58592) -.cio.com/www/js/ads/gpt_includes\.js -# @@||christianhouseshare.com.au/images/publish_ad1.jpg (easylistchina+easylist.txt: 58591) -.christianhouseshare.com.au/images/publish_ad1\.jpg -# @@||chicavenue.com.au/assets/ads/$image,~third-party (easylistchina+easylist.txt: 58590) -.chicavenue.com.au/assets/ads/ -# @@||chibis.adotube.com/napp/$object,object-subrequest (easylistchina+easylist.txt: 58589) -.chibis.adotube.com/napp/ -# @@||chibis.adotube.com/appRuntime/swfobject/$script (easylistchina+easylist.txt: 58588) -.chibis.adotube.com/appRuntime/swfobject/ -# @@||chibis.adotube.com/appruntime/player/$object,object-subrequest (easylistchina+easylist.txt: 58587) -.chibis.adotube.com/appruntime/player/ -# @@||chemistwarehouse.com.au/images/AdImages/ (easylistchina+easylist.txt: 58586) -.chemistwarehouse.com.au/images/AdImages/ -# @@||checkm8.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58585) -.checkm8.com/crossdomain\.xml -# @@||checkerdist.com/product-detail.cfm?*advert_id=$~third-party (easylistchina+easylist.txt: 58583) -.checkerdist.com/product-detail\.cfm\?.*advert_id= -# @@||cheapoair.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 58582) -.cheapoair.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||cheapoair.ca/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 58581) -.cheapoair.ca/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||chase.com^*/adserving/ (easylistchina+easylist.txt: 58580) -.chase.com/.*/adserving/ -# @@||chase.com/content/*/ads/$image,~third-party (easylistchina+easylist.txt: 58579) -.chase.com/content/.*/ads/ -# @@||channel4.com/media/scripts/oasconfig/siteads.js (easylistchina+easylist.txt: 58577) -.channel4.com/media/scripts/oasconfig/siteads\.js -# @@||cerebral.s4.bizhat.com/banners/$image,~third-party (easylistchina+easylist.txt: 58576) -.cerebral.s4.bizhat.com/banners/ -# @@||cellc.co.za/adserv/$image,object,script,~third-party (easylistchina+easylist.txt: 58575) -.cellc.co.za/adserv/ -# @@||cdn.turner.com^*/video/336x280_ad.gif (easylistchina+easylist.txt: 58573) -.cdn.turner.com/.*/video/336x280_ad\.gif -# @@||cdn.travidia.com/rop-sub/$image (easylistchina+easylist.txt: 58572) -.cdn.travidia.com/rop-sub/ -# @@||cdn.travidia.com/rop-ad/$image (easylistchina+easylist.txt: 58571) -.cdn.travidia.com/rop-ad/ -# @@||cdn.travidia.com/fsi-page/$image (easylistchina+easylist.txt: 58570) -.cdn.travidia.com/fsi-page/ -# @@||cdn.pch.com/spectrummedia/spectrum/adunit/ (easylistchina+easylist.txt: 58569) -.cdn.pch.com/spectrummedia/spectrum/adunit/ -# @@||cdn.ndtv.com/static/js/ads.js (easylistchina+easylist.txt: 58568) -.cdn.ndtv.com/static/js/ads\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/writecapture.js (easylistchina+easylist.txt: 58560) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/writecapture\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/swfobject.js (easylistchina+easylist.txt: 58559) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/swfobject\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jwplayerl.js (easylistchina+easylist.txt: 58558) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jwplayerl\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jquery.writecapture.js (easylistchina+easylist.txt: 58557) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jquery\.writecapture\.js -# @@||cbsistatic.com^*/sticky-ads.js? (easylistchina+easylist.txt: 58553) -.cbsistatic.com/.*/sticky-ads\.js\? -# @@||cbs.com/sitecommon/includes/cacheable/combine.php?*/adfunctions. (easylistchina+easylist.txt: 58550) -.cbs.com/sitecommon/includes/cacheable/combine\.php\?.*/adfunctions\. -# @@||cbc.ca/ads/*.php?$xmlhttprequest (easylistchina+easylist.txt: 58549) -.cbc.ca/ads/.*\.php\? -# @@||carzone.ie/es-ie/*advert$image,script,stylesheet (easylistchina+easylist.txt: 58547) -.carzone.ie/es-ie/.*advert -# @@||caranddriver.com/tools/iframe/?$subdocument (easylistchina+easylist.txt: 58546) -.caranddriver.com/tools/iframe/\? -# @@||caranddriver.com/assets/js/ads/ads-combined.min.js (easylistchina+easylist.txt: 58545) -.caranddriver.com/assets/js/ads/ads-combined\.min\.js -# @@||carambo.la^*/GetAds|$xmlhttprequest (easylistchina+easylist.txt: 58544) -.carambo.la/.*/GetAds$ -# @@||capitalone360.com/js/adwizard/adwizard_homepage.js? (easylistchina+easylist.txt: 58543) -.capitalone360.com/js/adwizard/adwizard_homepage\.js\? -# @@||candystand.com/assets/images/ads/$image (easylistchina+easylist.txt: 58542) -.candystand.com/assets/images/ads/ -# @@||canadianlisted.com/css/*/ad/index.css (easylistchina+easylist.txt: 58541) -.canadianlisted.com/css/.*/ad/index\.css -# @@||cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240.jpg (easylistchina+easylist.txt: 58539) -.cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240\.jpg -# @@||calgarysun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 58538) -.calgarysun.com/assets/js/dfp\.js\? -# @@||cache.nymag.com/scripts/ad_manager.js (easylistchina+easylist.txt: 58537) -.cache.nymag.com/scripts/ad_manager\.js -# @@||bworldonline.com/adserver/ (easylistchina+easylist.txt: 58536) -.bworldonline.com/adserver/ -# @@||buyselltrade.ca/adimages/$image,~third-party (easylistchina+easylist.txt: 58535) -.buyselltrade.ca/adimages/ -# @@||buyforlessok.com/advertising/ (easylistchina+easylist.txt: 58534) -.buyforlessok.com/advertising/ -# @@||buyandsell.ie/images/ads/$~third-party (easylistchina+easylist.txt: 58533) -.buyandsell.ie/images/ads/ -# @@||buyandsell.ie/ads/$~third-party (easylistchina+easylist.txt: 58532) -.buyandsell.ie/ads/ -# @@||buyandsell.ie/ad/$~third-party (easylistchina+easylist.txt: 58531) -.buyandsell.ie/ad/ -# @@||buy.com/buy_assets/addeals/$~third-party (easylistchina+easylist.txt: 58530) -.buy.com/buy_assets/addeals/ -# @@||butlereagle.com/static/ads/ (easylistchina+easylist.txt: 58529) -.butlereagle.com/static/ads/ -# @@||business-supply.com/images/adrotator/ (easylistchina+easylist.txt: 58528) -.business-supply.com/images/adrotator/ -# @@||burfordadvertising.com/advertising/$~third-party (easylistchina+easylist.txt: 58527) -.burfordadvertising.com/advertising/ -# @@||burbankleader.com/hive/images/adv_ (easylistchina+easylist.txt: 58526) -.burbankleader.com/hive/images/adv_ -# @@||btrll.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58524) -.btrll.com/crossdomain\.xml -# @@||bthomehub.home/images/adv_ (easylistchina+easylist.txt: 58523) -.bthomehub.home/images/adv_ -# @@||bsvideos.com/json/ad.php? (easylistchina+easylist.txt: 58522) -.bsvideos.com/json/ad\.php\? -# @@||brothersoft.com/gads/coop_show_download.php?soft_id=$script (easylistchina+easylist.txt: 58521) -.brothersoft.com/gads/coop_show_download\.php\?soft_id= -# @@||brocraft.net/js/banners.js (easylistchina+easylist.txt: 58520) -.brocraft.net/js/banners\.js -# @@||britishairways.com/cms/global/styles/*/openx.css (easylistchina+easylist.txt: 58519) -.britishairways.com/cms/global/styles/.*/openx\.css -# @@||britannica.com/resources/images/shared/ad-loading.gif (easylistchina+easylist.txt: 58518) -.britannica.com/resources/images/shared/ad-loading\.gif -# @@||brightcove.com^*bannerid$third-party (easylistchina+easylist.txt: 58517) -.brightcove.com/.*bannerid -# @@||brainient.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58515) -.brainient.com/crossdomain\.xml -# @@||boxedlynch.com/advertising-gallery.html (easylistchina+easylist.txt: 58514) -.boxedlynch.com/advertising-gallery\.html -# @@||box10.com/advertising/*-preroll.swf (easylistchina+easylist.txt: 58513) -.box10.com/advertising/.*-preroll\.swf -# @@||boston.com/images/ads/yourtown_social_widget/$image (easylistchina+easylist.txt: 58512) -.boston.com/images/ads/yourtown_social_widget/ -# @@||bonappetit.com^*/cn.dart.js (easylistchina+easylist.txt: 58510) -.bonappetit.com/.*/cn\.dart\.js -# @@||bonappetit.com/ams/page-ads.js? (easylistchina+easylist.txt: 58509) -.bonappetit.com/ams/page-ads\.js\? -# @@||boats.com/ad/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58508) -.boats.com/ad/ -# @@||bnbfinder.com/adv_getCity.php?$xmlhttprequest (easylistchina+easylist.txt: 58507) -.bnbfinder.com/adv_getCity\.php\? -# @@||bluetree.co.uk/hji/advertising.$object-subrequest (easylistchina+easylist.txt: 58506) -.bluetree.co.uk/hji/advertising\. -# @@||bluetooth.com/banners/ (easylistchina+easylist.txt: 58505) -.bluetooth.com/banners/ -# @@||bloomberg.com/rapi/ads/js_config.js (easylistchina+easylist.txt: 58504) -.bloomberg.com/rapi/ads/js_config\.js -# @@||blastro.com/pl_ads.php?$object-subrequest (easylistchina+easylist.txt: 58503) -.blastro.com/pl_ads\.php\? -# @@||blackshoppingchannel.com^*/com_adagency/$~third-party (easylistchina+easylist.txt: 58502) -.blackshoppingchannel.com/.*/com_adagency/ -# @@||blackshoppingchannel.com^*/ad_agency/$~third-party (easylistchina+easylist.txt: 58501) -.blackshoppingchannel.com/.*/ad_agency/ -# @@||bing.net/images/thumbnail.aspx?q=$image (easylistchina+easylist.txt: 58500) -.bing.net/images/thumbnail\.aspx\?q= -# @@||bing.com/maps/Ads.ashx$xmlhttprequest (easylistchina+easylist.txt: 58499) -.bing.com/maps/Ads\.ashx -# @@||bing.com/images/async?q=$xmlhttprequest (easylistchina+easylist.txt: 58498) -.bing.com/images/async\?q= -# @@||bikeexchange.com.au/adverts/ (easylistchina+easylist.txt: 58497) -.bikeexchange.com.au/adverts/ -# @@||bigfishaudio.com/banners/$image (easylistchina+easylist.txt: 58496) -.bigfishaudio.com/banners/ -# @@||betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ (easylistchina+easylist.txt: 58494) -.betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ -# @@||betar.gov.bd/wp-content/plugins/useful-banner-manager/ (easylistchina+easylist.txt: 58493) -.betar.gov.bd/wp-content/plugins/useful-banner-manager/ -# @@||bellaliant.net^*/banners/ads/$image,~third-party (easylistchina+easylist.txt: 58492) -.bellaliant.net/.*/banners/ads/ -# @@||bebusiness.eu/js/adview.js (easylistchina+easylist.txt: 58491) -.bebusiness.eu/js/adview\.js -# @@||beatthebrochure.com/js/jquery.popunder.js (easylistchina+easylist.txt: 58490) -.beatthebrochure.com/js/jquery\.popunder\.js -# @@||barafranca.*/banner.php| (easylistchina+easylist.txt: 58480) -.barafranca.*./(.*/)?banner\.php$ -# @@||banners.wunderground.com^$image (easylistchina+easylist.txt: 58478) -.banners.wunderground.com -# @@||banners.goldbroker.com/widget/ (easylistchina+easylist.txt: 58477) -.banners.goldbroker.com/widget/ -# @@||banners.gametracker.rs^$image (easylistchina+easylist.txt: 58476) -.banners.gametracker.rs -# @@||bannerfans.com/banners/$image,~third-party (easylistchina+easylist.txt: 58474) -.bannerfans.com/banners/ -# @@||banner4five.com/banners/$~third-party (easylistchina+easylist.txt: 58473) -.banner4five.com/banners/ -# @@||bankofamerica.com^*?adx=$xmlhttprequest (easylistchina+easylist.txt: 58471) -.bankofamerica.com/.*\?adx= -# @@||bahtsold.com/assets/images/ads/no_img_main.png (easylistchina+easylist.txt: 58470) -.bahtsold.com/assets/images/ads/no_img_main\.png -# @@||bahtsold.com/assets/home/openx/Thailand/$image,~third-party (easylistchina+easylist.txt: 58469) -.bahtsold.com/assets/home/openx/Thailand/ -# @@||bafta.org/static/site/javascript/banners.js (easylistchina+easylist.txt: 58468) -.bafta.org/static/site/javascript/banners\.js -# @@||backpackinglight.com/backpackinglight/ads/banner-$~third-party (easylistchina+easylist.txt: 58467) -.backpackinglight.com/backpackinglight/ads/banner- -# @@||aviationexplorer.com/airline_aviation_ads/ (easylistchina+easylist.txt: 58464) -.aviationexplorer.com/airline_aviation_ads/ -# @@||aviationdocumentstorage.com/Av_Docs/CSS/ADS-1.css (easylistchina+easylist.txt: 58463) -.aviationdocumentstorage.com/Av_Docs/CSS/ADS-1\.css -# @@||aviationclassifieds.com/adimg/$image,~third-party (easylistchina+easylist.txt: 58462) -.aviationclassifieds.com/adimg/ -# @@||avclub.com/ads/av-video-ad/$xmlhttprequest (easylistchina+easylist.txt: 58461) -.avclub.com/ads/av-video-ad/ -# @@||autotrader.co.uk^*_adverts/$xmlhttprequest (easylistchina+easylist.txt: 58460) -.autotrader.co.uk/.*_adverts/ -# @@||autotrader.co.uk^*/advert/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58459) -.autotrader.co.uk/.*/advert/ -# @@||autotrader.co.uk/static/*/images/adv/icons.png (easylistchina+easylist.txt: 58458) -.autotrader.co.uk/static/.*/images/adv/icons\.png -# @@||autotrader.co.uk/advert/$xmlhttprequest (easylistchina+easylist.txt: 58457) -.autotrader.co.uk/advert/ -# @@||autogespot.info/upload/ads/$image (easylistchina+easylist.txt: 58456) -.autogespot.info/upload/ads/ -# @@||auditude.com^*/AuditudeAdUnit.swf$object-subrequest (easylistchina+easylist.txt: 58453) -.auditude.com/.*/AuditudeAdUnit\.swf -# @@||auditude.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58452) -.auditude.com/crossdomain\.xml -# @@||auctionzip.com/cgi-bin/showimage.cgi? (easylistchina+easylist.txt: 58450) -.auctionzip.com/cgi-bin/showimage\.cgi\? -# @@||att.com/images/*/admanager/ (easylistchina+easylist.txt: 58448) -.att.com/images/.*/admanager/ -# @@||athena365.com/web/components/ads/rma.html (easylistchina+easylist.txt: 58447) -.athena365.com/web/components/ads/rma\.html -# @@||asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training.png (easylistchina+easylist.txt: 58446) -.asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training\.png -# @@||assiniboine.mb.ca/files/intrasite_ads/ (easylistchina+easylist.txt: 58443) -.assiniboine.mb.ca/files/intrasite_ads/ -# @@||asrock.com/images/ad-$~third-party (easylistchina+easylist.txt: 58441) -.asrock.com/images/ad- -# @@||asiasold.com/assets/home/openx/$image,~third-party (easylistchina+easylist.txt: 58440) -.asiasold.com/assets/home/openx/ -# @@||as.webmd.com/html.ng/transactionid=$object-subrequest,script,subdocument (easylistchina+easylist.txt: 58439) -.as.webmd.com/html\.ng/transactionid= -# @@||as.bankrate.com/RealMedia/ads/adstream_mjx.ads/$script,~third-party (easylistchina+easylist.txt: 58437) -.as.bankrate.com/RealMedia/ads/adstream_mjx\.ads/ -# @@||arti-mediagroup.com/flowplayer/amta_plugin.swf$object-subrequest (easylistchina+easylist.txt: 58436) -.arti-mediagroup.com/flowplayer/amta_plugin\.swf -# @@||arti-mediagroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58435) -.arti-mediagroup.com/crossdomain\.xml -# @@||arthurbrokerage.com/Websites/arthur/templates/overture/ (easylistchina+easylist.txt: 58434) -.arthurbrokerage.com/Websites/arthur/templates/overture/ -# @@||area51.stackexchange.com/ads/$image (easylistchina+easylist.txt: 58432) -.area51.stackexchange.com/ads/ -# @@||architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite.png (easylistchina+easylist.txt: 58431) -.architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite\.png -# @@||archiproducts.com/adv/ (easylistchina+easylist.txt: 58430) -.archiproducts.com/adv/ -# @@||archaeologydataservice.ac.uk/images/ads_$image (easylistchina+easylist.txt: 58429) -.archaeologydataservice.ac.uk/images/ads_ -# @@||apwg.org/images/sponsors/ (easylistchina+easylist.txt: 58428) -.apwg.org/images/sponsors/ -# @@||apps.digmyweb.com/ads?$xmlhttprequest (easylistchina+easylist.txt: 58427) -.apps.digmyweb.com/ads\? -# @@||applegate.co.uk/stats/recordclick.html?$xmlhttprequest (easylistchina+easylist.txt: 58426) -.applegate.co.uk/stats/recordclick\.html\? -# @@||apple.com^*/video-ad.html (easylistchina+easylist.txt: 58425) -.apple.com/.*/video-ad\.html -# @@||apple.com^*/includes/ads (easylistchina+easylist.txt: 58424) -.apple.com/.*/includes/ads -# @@||apple.com^*/ads/$object,object-subrequest,xmlhttprequest (easylistchina+easylist.txt: 58421) -.apple.com/.*/ads/ -# @@||apmex.com/resources/ads/ (easylistchina+easylist.txt: 58419) -.apmex.com/resources/ads/ -# @@||api.cirqle.nl^*&advertiserId=$script,xmlhttprequest (easylistchina+easylist.txt: 58414) -.api.cirqle.nl/.*&advertiserId= -# @@||aone-soft.com/style/images/ad*.jpg (easylistchina+easylist.txt: 58413) -.aone-soft.com/style/images/ad.*\.jpg -# @@||aolcdn.com/os_merge/?file=/aol/*.js&$script (easylistchina+easylist.txt: 58410) -.aolcdn.com/os_merge/\?file=/aol/.*\.js& -# @@||annfammed.org/adsystem/$image,~third-party (easylistchina+easylist.txt: 58407) -.annfammed.org/adsystem/ -# @@||andomediagroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58406) -.andomediagroup.com/crossdomain\.xml -# @@||andohs.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58405) -.andohs.net/crossdomain\.xml -# @@||andcorp.com.au^*.swf?clicktag= (easylistchina+easylist.txt: 58404) -.andcorp.com.au/.*\.swf\?clicktag= -# @@||ananzi.co.za/ads/$~third-party (easylistchina+easylist.txt: 58403) -.ananzi.co.za/ads/ -# @@||amwa.net/sites/default/files/styles/promotion_image/public/promotions/$~third-party (easylistchina+easylist.txt: 58402) -.amwa.net/sites/default/files/styles/promotion_image/public/promotions/ -# @@||amiblood.com/Images/ad.jpg (easylistchina+easylist.txt: 58401) -.amiblood.com/Images/ad\.jpg -# @@||amctv.com/commons/advertisement/js/AdFrame.js (easylistchina+easylist.txt: 58400) -.amctv.com/commons/advertisement/js/AdFrame\.js -# @@||amazon-adsystem.com/widgets/q?$image (easylistchina+easylist.txt: 58389) -.amazon-adsystem.com/widgets/q\? -# @@||alusa.org/store/modules/blockadvertising/$~third-party (easylistchina+easylist.txt: 58385) -.alusa.org/store/modules/blockadvertising/ -# @@||alphabaseinc.com/images/display_adz/$~third-party (easylistchina+easylist.txt: 58384) -.alphabaseinc.com/images/display_adz/ -# @@||allulook4.com/min/?$stylesheet (easylistchina+easylist.txt: 58383) -.allulook4.com/min/\? -# @@||alluc.ee/js/advertisement.js (easylistchina+easylist.txt: 58382) -.alluc.ee/js/advertisement\.js -# @@||allot.com/Banners/*.swf$object (easylistchina+easylist.txt: 58381) -.allot.com/Banners/.*\.swf -# @@||albumartexchange.com/gallery/images/public/ad/$image (easylistchina+easylist.txt: 58380) -.albumartexchange.com/gallery/images/public/ad/ -# @@||al.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58379) -.al.com/static/common/js/ads/ads\.js -# @@||akamaihd.net/hads-*.mp4? (easylistchina+easylist.txt: 58377) -.akamaihd.net/hads-.*\.mp4\? -# @@||ajmadison.com/images/adverts/ (easylistchina+easylist.txt: 58372) -.ajmadison.com/images/adverts/ -# @@||aiwip.com/static/images/advertisers/$image,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58371) -.aiwip.com/static/images/advertisers/ -# @@||aiwip.com/advertisers/$image,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58370) -.aiwip.com/advertisers/ -# @@||airplaydirect.com/openx/www/images/$image (easylistchina+easylist.txt: 58369) -.airplaydirect.com/openx/www/images/ -# @@||airguns.net/classifieds/ad_images/ (easylistchina+easylist.txt: 58368) -.airguns.net/classifieds/ad_images/ -# @@||airguns.net/advertisement_images/ (easylistchina+easylist.txt: 58367) -.airguns.net/advertisement_images/ -# @@||airbaltic.com/banners/$~third-party (easylistchina+easylist.txt: 58366) -.airbaltic.com/banners/ -# @@||aimsworldrunning.org/images/AD_Box_$image,~third-party (easylistchina+easylist.txt: 58365) -.aimsworldrunning.org/images/AD_Box_ -# @@||africam.com/adimages/ (easylistchina+easylist.txt: 58364) -.africam.com/adimages/ -# @@||affiliates.unpakt.com/widget_loader/widget_loader.js (easylistchina+easylist.txt: 58362) -.affiliates.unpakt.com/widget_loader/widget_loader\.js -# @@||affiliates.unpakt.com/widget/$subdocument (easylistchina+easylist.txt: 58361) -.affiliates.unpakt.com/widget/ -# @@||affiliate.skiamade.com^$subdocument,third-party (easylistchina+easylist.txt: 58358) -.affiliate.skiamade.com -# @@||affiliate.kickapps.com/service/ (easylistchina+easylist.txt: 58357) -.affiliate.kickapps.com/service/ -# @@||affiliate.kickapps.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58356) -.affiliate.kickapps.com/crossdomain\.xml -# @@||ae.amgdgt.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58354) -.ae.amgdgt.com/crossdomain\.xml -# @@||adworks.com.co^$~third-party (easylistchina+easylist.txt: 58352) -.adworks.com.co -# @@||adweb.pl^$~third-party (easylistchina+easylist.txt: 58351) -.adweb.pl -# @@||adweb.cis.mcmaster.ca^$~third-party (easylistchina+easylist.txt: 58350) -.adweb.cis.mcmaster.ca -# @@||advweb.ua.cmu.edu^$~third-party (easylistchina+easylist.txt: 58349) -.advweb.ua.cmu.edu -# @@||advisory.mtanyct.info/outsideWidget/widget.html?*.adPlacement=$subdocument (easylistchina+easylist.txt: 58348) -.advisory.mtanyct.info/outsideWidget/widget\.html\?.*\.adPlacement= -# @@||adverts.cdn.tvcatchup.com^$object-subrequest (easylistchina+easylist.txt: 58347) -.adverts.cdn.tvcatchup.com -# @@||advertising.vrisko.gr^$~third-party (easylistchina+easylist.txt: 58345) -.advertising.vrisko.gr -# @@||advertising.utexas.edu^$~third-party (easylistchina+easylist.txt: 58344) -.advertising.utexas.edu -# @@||advertising.theigroup.co.uk^$~third-party (easylistchina+easylist.txt: 58343) -.advertising.theigroup.co.uk -# @@||advertising.scoop.co.nz^ (easylistchina+easylist.txt: 58342) -.advertising.scoop.co.nz -# @@||advertising.racingpost.com^$image,script,stylesheet,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58341) -.advertising.racingpost.com -# @@||advertising.nzme.co.nz/media/$image,~third-party (easylistchina+easylist.txt: 58340) -.advertising.nzme.co.nz/media/ -# @@||advertising.autotrader.co.uk^$~third-party (easylistchina+easylist.txt: 58339) -.advertising.autotrader.co.uk -# @@||advertising.acne.se^$~third-party (easylistchina+easylist.txt: 58338) -.advertising.acne.se -# @@||advertiser.trialpay.com^$~third-party (easylistchina+easylist.txt: 58336) -.advertiser.trialpay.com -# @@||advertiser.seek.com.au^$~third-party (easylistchina+easylist.txt: 58335) -.advertiser.seek.com.au -# @@||advertiser.seek.co.nz^$~third-party (easylistchina+easylist.txt: 58334) -.advertiser.seek.co.nz -# @@||advertise.movem.co.uk^$~third-party (easylistchina+easylist.txt: 58333) -.advertise.movem.co.uk -# @@||advertise.azcentral.com^$~third-party (easylistchina+easylist.txt: 58331) -.advertise.azcentral.com -# @@||advantabankcorp.com/ADV/$~third-party (easylistchina+easylist.txt: 58330) -.advantabankcorp.com/ADV/ -# @@||adv.works^$~third-party (easylistchina+easylist.txt: 58329) -.adv.works -# @@||adv.li^$~third-party (easylistchina+easylist.txt: 58328) -.adv.li -# @@||adv.escreverdireito.com^$~third-party (easylistchina+easylist.txt: 58327) -.adv.escreverdireito.com -# @@||adv.erti.se^$~third-party (easylistchina+easylist.txt: 58326) -.adv.erti.se -# @@||adv.blogupp.com^ (easylistchina+easylist.txt: 58325) -.adv.blogupp.com -# @@||adv.*.przedsiebiorca.pl^$~third-party (easylistchina+easylist.txt: 58324) -.adv.*./.*\.przedsiebiorca\.pl[^\w%.-] -.adv.*.przedsiebiorca.pl -# @@||adultvideotorrents.com/assets/blockblock/advertisement.js (easylistchina+easylist.txt: 58323) -.adultvideotorrents.com/assets/blockblock/advertisement\.js -# @@||adtechus.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58321) -.adtechus.com/crossdomain\.xml -# @@||adtech.de/?advideo/3.0/1215.1/3228528/*;vidas=pre_roll;$object-subrequest (easylistchina+easylist.txt: 58316) -.adtech.de/\?advideo/3\.0/1215\.1/3228528/.*;vidas=pre_roll; -# @@||adssecurity.com/app_themes/ads/images/ (easylistchina+easylist.txt: 58313) -.adssecurity.com/app_themes/ads/images/ -# @@||adsremote.scrippsnetworks.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58310) -.adsremote.scrippsnetworks.com/crossdomain\.xml -# @@||adspot.lk^$~third-party (easylistchina+easylist.txt: 58309) -.adspot.lk -# @@||adsign.republika.pl^$~third-party (easylistchina+easylist.txt: 58306) -.adsign.republika.pl -# @@||adsign.no^$~third-party (easylistchina+easylist.txt: 58304) -.adsign.no -# @@||adshost1.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58302) -.adshost1.com/crossdomain\.xml -# @@||adserver.yahoo.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58300) -.adserver.yahoo.com/crossdomain\.xml -# @@||adserver.vidcoin.com^*/get_campaigns?$xmlhttprequest (easylistchina+easylist.txt: 58296) -.adserver.vidcoin.com/.*/get_campaigns\? -# @@||adserver.tvcatchup.com^$object-subrequest (easylistchina+easylist.txt: 58295) -.adserver.tvcatchup.com -# @@||adserver.bworldonline.com^ (easylistchina+easylist.txt: 58294) -.adserver.bworldonline.com -# @@||adserver.bigwigmedia.com/ingamead3.swf (easylistchina+easylist.txt: 58293) -.adserver.bigwigmedia.com/ingamead3\.swf -# @@||adseo.pl^$~third-party (easylistchina+easylist.txt: 58285) -.adseo.pl -# @@||adsbox.in^$~third-party (easylistchina+easylist.txt: 58284) -.adsbox.in -# @@||adsbox.com.sg^$~third-party (easylistchina+easylist.txt: 58283) -.adsbox.com.sg -# @@||ads1.msn.com/ads/pronws/$image (easylistchina+easylist.txt: 58281) -.ads1.msn.com/ads/pronws/ -# @@||ads.yimg.com^*videoadmodule*.swf (easylistchina+easylist.txt: 58278) -.ads.yimg.com/.*videoadmodule.*\.swf -# @@||ads.yimg.com^*/search/b/syc_logo_2.gif (easylistchina+easylist.txt: 58277) -.ads.yimg.com/.*/search/b/syc_logo_2\.gif -# @@||ads.yimg.com^*/any/yahoologo$image (easylistchina+easylist.txt: 58276) -.ads.yimg.com/.*/any/yahoologo -# @@||ads.yimg.com/ev/eu/any/vint/videointerstitial*.js (easylistchina+easylist.txt: 58274) -.ads.yimg.com/ev/eu/any/vint/videointerstitial.*\.js -# @@||ads.undertone.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58272) -.ads.undertone.com/crossdomain\.xml -# @@||ads.trutv.com/html.ng/tile=*&site=trutv&tru_tv_pos=preroll&$object-subrequest (easylistchina+easylist.txt: 58270) -.ads.trutv.com/html\.ng/tile=.*&site=trutv&tru_tv_pos=preroll& -# @@||ads.trutv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58269) -.ads.trutv.com/crossdomain\.xml -# @@||ads.trackitdown.net/delivery/afr.php?zoneid=6&$subdocument,~third-party (easylistchina+easylist.txt: 58268) -.ads.trackitdown.net/delivery/afr\.php\?zoneid=6& -# @@||ads.sudpresse.be/adview.php?what=zone:$image (easylistchina+easylist.txt: 58266) -.ads.sudpresse.be/adview\.php\?what=zone: -# @@||ads.songs.pk/openx/www/delivery/ (easylistchina+easylist.txt: 58264) -.ads.songs.pk/openx/www/delivery/ -# @@||ads.socialtheater.com^$~third-party (easylistchina+easylist.txt: 58263) -.ads.socialtheater.com -# @@||ads.smartfeedads.com^$~third-party (easylistchina+easylist.txt: 58262) -.ads.smartfeedads.com -# @@||ads.seriouswheels.com^$~third-party (easylistchina+easylist.txt: 58260) -.ads.seriouswheels.com -# @@||ads.pinterest.com^$~third-party (easylistchina+easylist.txt: 58257) -.ads.pinterest.com -# @@||ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ (easylistchina+easylist.txt: 58256) -.ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ -# @@||ads.nyootv.com:8080/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58255) -.ads.nyootv.com:8080/crossdomain\.xml -# @@||ads.nyootv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58254) -.ads.nyootv.com/crossdomain\.xml -# @@||ads.nationmedia.com/webfonts/$font (easylistchina+easylist.txt: 58253) -.ads.nationmedia.com/webfonts/ -# @@||ads.mycricket.com/www/delivery/ajs.php?zoneid=$script,~third-party (easylistchina+easylist.txt: 58252) -.ads.mycricket.com/www/delivery/ajs\.php\?zoneid= -# @@||ads.memo2.nl^ (easylistchina+easylist.txt: 58251) -.ads.memo2.nl -# @@||ads.mefeedia.com/flash/flowplayer.controls-3.0.2.min.js (easylistchina+easylist.txt: 58250) -.ads.mefeedia.com/flash/flowplayer\.controls-3\.0\.2\.min\.js -# @@||ads.mefeedia.com/flash/flowplayer-3.1.2.min.js (easylistchina+easylist.txt: 58249) -.ads.mefeedia.com/flash/flowplayer-3\.1\.2\.min\.js -# @@||ads.m1.com.sg^$~third-party (easylistchina+easylist.txt: 58248) -.ads.m1.com.sg -# @@||ads.intergi.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58244) -.ads.intergi.com/crossdomain\.xml -# @@||ads.indeed.com^$~third-party (easylistchina+easylist.txt: 58242) -.ads.indeed.com -# @@||ads.healthline.com/v2/adajax?$subdocument (easylistchina+easylist.txt: 58241) -.ads.healthline.com/v2/adajax\? -# @@||ads.golfweek.com^$~third-party (easylistchina+easylist.txt: 58240) -.ads.golfweek.com -# @@||ads.globo.com^*/globovideo/player/ (easylistchina+easylist.txt: 58239) -.ads.globo.com/.*/globovideo/player/ -# @@||ads.fusac.fr^$~third-party (easylistchina+easylist.txt: 58238) -.ads.fusac.fr -# @@||ads.foxnews.com/js/omtr_code.js (easylistchina+easylist.txt: 58237) -.ads.foxnews.com/js/omtr_code\.js -# @@||ads.foxnews.com/js/adv2.js (easylistchina+easylist.txt: 58236) -.ads.foxnews.com/js/adv2\.js -# @@||ads.foxnews.com/js/ad.js (easylistchina+easylist.txt: 58235) -.ads.foxnews.com/js/ad\.js -# @@||ads.foxnews.com/api/*-slideshow-data.js? (easylistchina+easylist.txt: 58234) -.ads.foxnews.com/api/.*-slideshow-data\.js\? -# @@||ads.fox.com/fox/black_2sec_600.flv (easylistchina+easylist.txt: 58233) -.ads.fox.com/fox/black_2sec_600\.flv -# @@||ads.forbes.com/realmedia/ads/*@videopreroll$script (easylistchina+easylist.txt: 58232) -.ads.forbes.com/realmedia/ads/.*@videopreroll -# @@||ads.eu.com/ads-$~third-party (easylistchina+easylist.txt: 58230) -.ads.eu.com/ads- -# @@||ads.cnn.com/js.ng/*&cnn_intl_subsection=download$script (easylistchina+easylist.txt: 58228) -.ads.cnn.com/js\.ng/.*&cnn_intl_subsection=download -# @@||ads.caravansforsale.co.uk^$~third-party (easylistchina+easylist.txt: 58227) -.ads.caravansforsale.co.uk -# @@||ads.belointeractive.com/realmedia/ads/adstream_mjx.ads/www.kgw.com/video/$script (easylistchina+easylist.txt: 58224) -.ads.belointeractive.com/realmedia/ads/adstream_mjx\.ads/www\.kgw\.com/video/ -# @@||ads.badassembly.com^$~third-party (easylistchina+easylist.txt: 58223) -.ads.badassembly.com -# @@||ads.ahds.ac.uk^$~document (easylistchina+easylist.txt: 58221) -.ads.ahds.ac.uk -# @@||adphoto.eu^$~third-party (easylistchina+easylist.txt: 58217) -.adphoto.eu -# @@||adpages.com^$~third-party (easylistchina+easylist.txt: 58216) -.adpages.com -# @@||adotube.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58215) -.adotube.com/crossdomain\.xml -# @@||adnews.pl^$~third-party (easylistchina+easylist.txt: 58213) -.adnews.pl -# @@||adnet.twitvid.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58212) -.adnet.twitvid.com/crossdomain\.xml -# @@||adman.se^$~third-party (easylistchina+easylist.txt: 58208) -.adman.se -# @@||adlib.info^$~third-party (easylistchina+easylist.txt: 58202) -.adlib.info -# @@||adimages.go.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58201) -.adimages.go.com/crossdomain\.xml -# @@||adhostingsolutions.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58200) -.adhostingsolutions.com/crossdomain\.xml -# @@||adguard.com^$~third-party (easylistchina+easylist.txt: 58199) -.adguard.com -# @@||adflyer.co.uk/adverts/$image (easylistchina+easylist.txt: 58197) -.adflyer.co.uk/adverts/ -# @@||adf.ly/static/image/ad_top_bg.png (easylistchina+easylist.txt: 58195) -.adf.ly/static/image/ad_top_bg\.png -# @@||adf.ly/images/ad*.png (easylistchina+easylist.txt: 58194) -.adf.ly/images/ad.*\.png -# @@||adevents.com.au^$~third-party (easylistchina+easylist.txt: 58193) -.adevents.com.au -# @@||addictinggames.com^*/mtvi_ads_reporting.js (easylistchina+easylist.txt: 58192) -.addictinggames.com/.*/mtvi_ads_reporting\.js -# @@||adcode.mobi^$~third-party (easylistchina+easylist.txt: 58190) -.adcode.mobi -# @@||adcenter.nu^$~third-party (easylistchina+easylist.txt: 58189) -.adcenter.nu -# @@||adboost.io^$~third-party (easylistchina+easylist.txt: 58187) -.adboost.io -# @@||adbar.pp.ua^$~third-party (easylistchina+easylist.txt: 58185) -.adbar.pp.ua -# @@||adap.tv/redir/javascript/vpaid.js (easylistchina+easylist.txt: 58183) -.adap.tv/redir/javascript/vpaid\.js -# @@||adap.tv/redir/client/adplayer.swf$object-subrequest (easylistchina+easylist.txt: 58179) -.adap.tv/redir/client/adplayer\.swf -# @@||adap.tv/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58178) -.adap.tv/crossdomain\.xml -# @@||adap.tv/control?$object-subrequest (easylistchina+easylist.txt: 58177) -.adap.tv/control\? -# @@||ad4.liverail.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58171) -.ad4.liverail.com/crossdomain\.xml -# @@||ad3.eu^$~third-party (easylistchina+easylist.txt: 58166) -.ad3.eu -# @@||ad2.zophar.net/images/logo.jpg$image (easylistchina+easylist.txt: 58165) -.ad2.zophar.net/images/logo\.jpg -# @@||ad.smartclip.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58163) -.ad.smartclip.net/crossdomain\.xml -# @@||ad.reebonz.com/www/ (easylistchina+easylist.txt: 58162) -.ad.reebonz.com/www/ -# @@||ad.doubleclick.net/pfadx/nbcu.nbc/rewind$object-subrequest (easylistchina+easylist.txt: 58160) -.ad.doubleclick.net/pfadx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/adx/nbcu.nbc/rewind$object-subrequest (easylistchina+easylist.txt: 58157) -.ad.doubleclick.net/adx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/ad/can/cbs/*;pausead=1;$object-subrequest (easylistchina+easylist.txt: 58153) -.ad.doubleclick.net/ad/can/cbs/.*;pausead=1; -# @@||ad.afy11.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58151) -.ad.afy11.net/crossdomain\.xml -# @@||ad.adserve.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58150) -.ad.adserve.com/crossdomain\.xml -# @@||ad.71i.de/global_js/magic/sevenload_magic.js$object-subrequest (easylistchina+easylist.txt: 58148) -.ad.71i.de/global_js/magic/sevenload_magic\.js -# @@||ad.71i.de/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58147) -.ad.71i.de/crossdomain\.xml -# @@||activelydisengaged.com/wp-content/uploads/*/ad$image (easylistchina+easylist.txt: 58145) -.activelydisengaged.com/wp-content/uploads/.*/ad -# @@||abcnews.go.com/assets/static/ads/fwps.js (easylistchina+easylist.txt: 58143) -.abcnews.go.com/assets/static/ads/fwps\.js -# @@||abcnews.com/assets/static/ads/fwps.js (easylistchina+easylist.txt: 58142) -.abcnews.com/assets/static/ads/fwps\.js -# @@||abbyy.com/adx/$~third-party (easylistchina+easylist.txt: 58140) -.abbyy.com/adx/ -# @@||a.giantrealm.com/assets/vau/grplayer*.swf (easylistchina+easylist.txt: 58138) -.a.giantrealm.com/assets/vau/grplayer.*\.swf -# @@||9msn.com.au^*/ads/ninemsn.ads$script (easylistchina+easylist.txt: 58137) -.9msn.com.au/.*/ads/ninemsn\.ads -# @@||961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON.png (easylistchina+easylist.txt: 58134) -.961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON\.png -# @@||6waves.com/js/adshow.js (easylistchina+easylist.txt: 58133) -.6waves.com/js/adshow\.js -# @@||6waves.com/ads/720x300/ (easylistchina+easylist.txt: 58132) -.6waves.com/ads/720x300/ -# @@||53.com/resources/images/ad-rotator/ (easylistchina+easylist.txt: 58131) -.53.com/resources/images/ad-rotator/ -# @@||360gig.com/images/1_468x60.png (easylistchina+easylist.txt: 58129) -.360gig.com/images/1_468x60\.png -# @@||33universal.adprimemedia.com/vn/vna/data/ad.php?$object-subrequest (easylistchina+easylist.txt: 58128) -.33universal.adprimemedia.com/vn/vna/data/ad\.php\? -# @@||2mdn.net/instream/flash/*/adsapi.swf$object-subrequest (easylistchina+easylist.txt: 58122) -.2mdn.net/instream/flash/.*/adsapi\.swf -# @@||24ur.com/static/*/banners.js (easylistchina+easylist.txt: 58119) -.24ur.com/static/.*/banners\.js -# @@||24ur.com/adserver/adall. (easylistchina+easylist.txt: 58118) -.24ur.com/adserver/adall\. -# @@||247realmedia.com^*/farecomp/ (easylistchina+easylist.txt: 58117) -.247realmedia.com/.*/farecomp/ -# @@||192.168.*/images/adv_ (easylistchina+easylist.txt: 58112) -.192.168.*./(.*/)?images/adv_ -# @@||192.168.$xmlhttprequest (easylistchina+easylist.txt: 58111) -.192.168.*. -# @@/wp-content/plugins/bwp-minify/min/?f=$script,stylesheet,~third-party (easylistchina+easylist.txt: 58110) -/(.*/)?wp-content/plugins/bwp-minify/min/\?f= -# @@/wordpress/wp-admin/*/adrotate/*$~third-party (easylistchina+easylist.txt: 58109) -/(.*/)?wordpress/wp-admin/.*/adrotate/.* -# @@/wordpress/wp-admin/*-ads-manager/*$~third-party (easylistchina+easylist.txt: 58108) -/(.*/)?wordpress/wp-admin/.*-ads-manager/.* -# @@/advertising-glype/*$image,stylesheet (easylistchina+easylist.txt: 58102) -/(.*/)?advertising-glype/.* -# @@||ytimg.com/yts/jsbin/$script (easylistchina+easylist.txt: 46058) -.ytimg.com/yts/jsbin/ -# @@||youtube.com/player_api$script,third-party (easylistchina+easylist.txt: 46057) -.youtube.com/player_api -# @@||youtube.com/iframe_api$script,third-party (easylistchina+easylist.txt: 46056) -.youtube.com/iframe_api -# @@||widget.clipix.com^$script,third-party (easylistchina+easylist.txt: 46052) -.widget.clipix.com -# @@||vidible.tv/prod/$script,third-party (easylistchina+easylist.txt: 46051) -.vidible.tv/prod/ -# @@||ui.bamstatic.com^$script,third-party (easylistchina+easylist.txt: 46049) -.ui.bamstatic.com -# @@||twimg.com^$image,third-party (easylistchina+easylist.txt: 46047) -.twimg.com -# @@||thegatewaypundit.com/wp-includes/images/rss.png (easylistchina+easylist.txt: 46046) -.thegatewaypundit.com/wp-includes/images/rss\.png -# @@||thegatewaypundit.com/wp-content/uploads/submit_tip.png (easylistchina+easylist.txt: 46045) -.thegatewaypundit.com/wp-content/uploads/submit_tip\.png -# @@||static.cdn-ec.viddler.com^$script (easylistchina+easylist.txt: 46038) -.static.cdn-ec.viddler.com -# @@||providesupport.com^$script (easylistchina+easylist.txt: 46032) -.providesupport.com -# @@||playbuzz.com/widget/$script,third-party (easylistchina+easylist.txt: 46024) -.playbuzz.com/widget/ -# @@||platform.vine.co^$script (easylistchina+easylist.txt: 46023) -.platform.vine.co -# @@||p.jwpcdn.com^$script,third-party (easylistchina+easylist.txt: 46020) -.p.jwpcdn.com -# @@||netdna-cdn.com/wp-includes/js/$script,third-party (easylistchina+easylist.txt: 46018) -.netdna-cdn.com/wp-includes/js/ -# @@||my.hellobar.com^$script,third-party (easylistchina+easylist.txt: 46016) -.my.hellobar.com -# @@||lpsimage.newsinc.com/player/show/$script (easylistchina+easylist.txt: 46013) -.lpsimage.newsinc.com/player/show/ -# @@||lps.newsinc.com/player/show/$script (easylistchina+easylist.txt: 46012) -.lps.newsinc.com/player/show/ -# @@||loggly.cheatsheet.com/inputs/$image,~third-party (easylistchina+easylist.txt: 46011) -.loggly.cheatsheet.com/inputs/ -# @@||intensedebate.com/js/$script,third-party (easylistchina+easylist.txt: 46003) -.intensedebate.com/js/ -# @@||imgur.com/min/$script,third-party (easylistchina+easylist.txt: 46002) -.imgur.com/min/ -# @@||images.sportsworldnews.com^$image,third-party (easylistchina+easylist.txt: 46001) -.images.sportsworldnews.com -# @@||hwcdn.net/*.js?$script (easylistchina+easylist.txt: 45999) -.hwcdn.net/.*\.js\? -# @@||gstatic.com/trustedstores/$script (easylistchina+easylist.txt: 45998) -.gstatic.com/trustedstores/ -# @@||gravatar.com/avatar$image,third-party (easylistchina+easylist.txt: 45997) -.gravatar.com/avatar -# @@||googlecommerce.com^$script (easylistchina+easylist.txt: 45994) -.googlecommerce.com -# @@||google.com/recaptcha/$script (easylistchina+easylist.txt: 45992) -.google.com/recaptcha/ -# @@||google.com/jsapi$script,third-party (easylistchina+easylist.txt: 45991) -.google.com/jsapi -# @@||google.com/js/th/$script (easylistchina+easylist.txt: 45990) -.google.com/js/th/ -# @@||files.explosm.net/thumbs/$image (easylistchina+easylist.txt: 45986) -.files.explosm.net/thumbs/ -# @@||files.explosm.net/rcg/$image (easylistchina+easylist.txt: 45985) -.files.explosm.net/rcg/ -# @@||files.explosm.net/avatars/$image (easylistchina+easylist.txt: 45984) -.files.explosm.net/avatars/ -# @@||explosm.net/show/thumbnails/$image (easylistchina+easylist.txt: 45982) -.explosm.net/show/thumbnails/ -# @@||explosm.net/img/nav-button_random@2x.png| (easylistchina+easylist.txt: 45981) -.explosm.net/img/nav-button_random@2x\.png$ -# @@||explosm.net/img/nav-button_previous@2x.png| (easylistchina+easylist.txt: 45980) -.explosm.net/img/nav-button_previous@2x\.png$ -# @@||explosm.net/img/nav-button_next@2x.png| (easylistchina+easylist.txt: 45979) -.explosm.net/img/nav-button_next@2x\.png$ -# @@||explosm.net/img/nav-button_newest@2x.png| (easylistchina+easylist.txt: 45978) -.explosm.net/img/nav-button_newest@2x\.png$ -# @@||explosm.net/img/nav-button_first@2x.png| (easylistchina+easylist.txt: 45977) -.explosm.net/img/nav-button_first@2x\.png$ -# @@||explosm.net/img/logo.png (easylistchina+easylist.txt: 45976) -.explosm.net/img/logo\.png -# @@||explosm.net/favicons/favicon$image (easylistchina+easylist.txt: 45975) -.explosm.net/favicons/favicon -# @@||content-img.newsinc.com^$image,third-party (easylistchina+easylist.txt: 45968) -.content-img.newsinc.com -# @@||conservativevideos.com^$generichide (easylistchina+easylist.txt: 45966) -.conservativevideos.com -# @@||cheatsheet.com/wp-content/uploads/$image,~third-party (easylistchina+easylist.txt: 45960) -.cheatsheet.com/wp-content/uploads/ -# @@||cheatsheet.com/wp-content/themes/$image,~third-party (easylistchina+easylist.txt: 45959) -.cheatsheet.com/wp-content/themes/ -# @@||cdn.shopify.com^$script (easylistchina+easylist.txt: 45956) -.cdn.shopify.com -# @@||bigcommerce.com^$image,third-party (easylistchina+easylist.txt: 45953) -.bigcommerce.com -# @@||assets.newsinc.com^$image,third-party (easylistchina+easylist.txt: 45951) -.assets.newsinc.com -# @@||ajax.cloudflare.com/cdn-cgi/nexp/$script,third-party (easylistchina+easylist.txt: 45942) -.ajax.cloudflare.com/cdn-cgi/nexp/ -# @@/wp-content/plugins/akismet/*$script,~third-party (easylistchina+easylist.txt: 45939) -/(.*/)?wp-content/plugins/akismet/.* -# @@||speedtest.net/results.php$xmlhttprequest (easylistchina+easylist.txt: 45914) -.speedtest.net/results\.php -# @@||speedtest.net/javascript/swfobject.js (easylistchina+easylist.txt: 45913) -.speedtest.net/javascript/swfobject\.js -# @@||speedtest.net/javascript/speedtest-main.js?v= (easylistchina+easylist.txt: 45912) -.speedtest.net/javascript/speedtest-main\.js\?v= -# @@||speedtest.net/javascript/speedtest-main.js?p=*&r=*&q=*%3*&s=*%3*= (easylistchina+easylist.txt: 45911) -.speedtest.net/javascript/speedtest-main\.js\?p=.*&r=.*&q=.*%3.*&s=.*%3.*= -# @@||speedtest.net/javascript/jquery.ui*.js (easylistchina+easylist.txt: 45910) -.speedtest.net/javascript/jquery\.ui.*\.js -# @@||speedtest.net/javascript/jquery.tipTip.js (easylistchina+easylist.txt: 45909) -.speedtest.net/javascript/jquery\.tipTip\.js -# @@||speedtest.net/javascript/jquery.placeholder.min.js (easylistchina+easylist.txt: 45908) -.speedtest.net/javascript/jquery\.placeholder\.min\.js -# @@||speedtest.net/javascript/jquery-*.min.js (easylistchina+easylist.txt: 45907) -.speedtest.net/javascript/jquery-.*\.min\.js -# @@||speedtest.net/javascript/highcharts.js (easylistchina+easylist.txt: 45906) -.speedtest.net/javascript/highcharts\.js -# @@||speedtest.net/javascript/functions.js (easylistchina+easylist.txt: 45905) -.speedtest.net/javascript/functions\.js -# @@||speedtest.net/javascript/extMouseWheel.js (easylistchina+easylist.txt: 45904) -.speedtest.net/javascript/extMouseWheel\.js -# @@||exashare.com/player6/$script (easylistchina+easylist.txt: 45859) -.exashare.com/player6/ -# @@||exashare.com/js/$script (easylistchina+easylist.txt: 45858) -.exashare.com/js/ -# @@||exashare.com/ad.js (easylistchina+easylist.txt: 45857) -.exashare.com/ad\.js -# @@||tmall.com/add? (easylistchina+easylist.txt: 10489) +# @@||tmall.com/add? (easylistchina.txt: 10477) .tmall.com/add\? -# @@||tbcdn.cn^*/click_track.js (easylistchina+easylist.txt: 10488) +# @@||tbcdn.cn^*/click_track.js (easylistchina.txt: 10476) .tbcdn.cn/.*/click_track\.js -# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina+easylist.txt: 10486) +# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina.txt: 10474) .stjscn.s-msn.com/portal/hp/2011/udctrack\. -# @@||pingjs.qq.com/ping.js (easylistchina+easylist.txt: 10480) +# @@||pingjs.qq.com/ping.js (easylistchina.txt: 10468) .pingjs.qq.com/ping\.js -# @@||msn.wrating.com/a1.js (easylistchina+easylist.txt: 10478) +# @@||msn.wrating.com/a1.js (easylistchina.txt: 10466) .msn.wrating.com/a1\.js -# @@||jd.com/setCookie? (easylistchina+easylist.txt: 10477) +# @@||jd.com/setCookie? (easylistchina.txt: 10465) .jd.com/setCookie\? -# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina+easylist.txt: 10475) +# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina.txt: 10463) .guahao.cn/common/js/plugins/fingerprint\.js -# @@||g.alicdn.com^*/banner_ad_ (easylistchina+easylist.txt: 10471) +# @@||g.alicdn.com^*/banner_ad_ (easylistchina.txt: 10458) .g.alicdn.com/.*/banner_ad_ -# @@||count.video.sina.com.cn^*?video_ids= (easylistchina+easylist.txt: 10469) +# @@||count.video.sina.com.cn^*?video_ids= (easylistchina.txt: 10456) .count.video.sina.com.cn/.*\?video_ids= -# @@||bagehd.com/iplookup. (easylistchina+easylist.txt: 10468) +# @@||bagehd.com/iplookup. (easylistchina.txt: 10455) .bagehd.com/iplookup\. -# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina+easylist.txt: 10467) +# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina.txt: 10454) .autohome.com.cn/javascript/fingerprint\.js -# @@||analytics.163.com/ntes.js (easylistchina+easylist.txt: 10466) +# @@||analytics.163.com/ntes.js (easylistchina.txt: 10453) .analytics.163.com/ntes\.js -# @@||alicdn.com^*/click_track.js (easylistchina+easylist.txt: 10465) +# @@||alicdn.com^*/click_track.js (easylistchina.txt: 10452) .alicdn.com/.*/click_track\.js -# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina+easylist.txt: 10464) +# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina.txt: 10451) .aixifan.com/dotnet/20130418/script/fingerprint\. -# @@||7m.cn/v2/js/analyse.js (easylistchina+easylist.txt: 10463) +# @@||7m.cn/v2/js/analyse.js (easylistchina.txt: 10450) .7m.cn/v2/js/analyse\.js -# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina+easylist.txt: 10456) +# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina.txt: 10443) .xnimg.cn/.*/nx/ugc/share/js/hotlist\.js -# @@||zhibowu.com/ad2.htm (easylistchina+easylist.txt: 10444) +# @@||zhibowu.com/ad2.htm (easylistchina.txt: 10431) .zhibowu.com/ad2\.htm -# @@||zhaopin.cn^*/adbox_ (easylistchina+easylist.txt: 10443) +# @@||zhaopin.cn^*/adbox_ (easylistchina.txt: 10430) .zhaopin.cn/.*/adbox_ -# @@||zhaopin.cn/js/app/popShow. (easylistchina+easylist.txt: 10442) +# @@||zhaopin.cn/js/app/popShow. (easylistchina.txt: 10429) .zhaopin.cn/js/app/popShow\. -# @@||youku.com^*^showAd (easylistchina+easylist.txt: 10440) +# @@||youku.com^*^showAd (easylistchina.txt: 10428) .youku.com/.*[^\w%.-]showAd -# @@||youku.com^*^adshow (easylistchina+easylist.txt: 10439) +# @@||youku.com^*^adshow (easylistchina.txt: 10427) .youku.com/.*[^\w%.-]adshow -# @@||yiqifa.com/ad_images/$~third-party (easylistchina+easylist.txt: 10437) +# @@||yiqifa.com/ad_images/$~third-party (easylistchina.txt: 10425) .yiqifa.com/ad_images/ -# @@||yinfu.cc/sid/function (easylistchina+easylist.txt: 10436) +# @@||yinfu.cc/sid/function (easylistchina.txt: 10424) .yinfu.cc/sid/function -# @@||yinfu.cc/sid/*play (easylistchina+easylist.txt: 10435) +# @@||yinfu.cc/sid/*play (easylistchina.txt: 10423) .yinfu.cc/sid/.*play -# @@||yimuhe.com/n_js/advertiser.js (easylistchina+easylist.txt: 10434) +# @@||yimuhe.com/n_js/advertiser.js (easylistchina.txt: 10422) .yimuhe.com/n_js/advertiser\.js -# @@||yimg.jp/combo?*/ad/ (easylistchina+easylist.txt: 10433) +# @@||yimg.jp/combo?*/ad/ (easylistchina.txt: 10421) .yimg.jp/combo\?.*/ad/ -# @@||ydxxt.com/ad/ (easylistchina+easylist.txt: 10431) +# @@||ydxxt.com/ad/ (easylistchina.txt: 10419) .ydxxt.com/ad/ -# @@||yawin.cn/ad/$object-subrequest (easylistchina+easylist.txt: 10430) +# @@||yawin.cn/ad/$object-subrequest (easylistchina.txt: 10418) .yawin.cn/ad/ -# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina+easylist.txt: 10429) +# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10417) .xunleipu.com/a-d-j-s/a-d-7\.js -# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina+easylist.txt: 10428) +# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10416) .xunleihao.com/a-d-j-s/a-d-7\.js -# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina+easylist.txt: 10427) +# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina.txt: 10415) .xnimg.cn/n/apps/profile/modules/tuiguang/ -# @@||xintaoke.com/images/gg/*.jpg (easylistchina+easylist.txt: 10426) +# @@||xintaoke.com/images/gg/*.jpg (easylistchina.txt: 10414) .xintaoke.com/images/gg/.*\.jpg -# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina+easylist.txt: 10425) +# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina.txt: 10413) .xinhuanet.com/2014/imgad/FS_2014weixin\.jpg -# @@||wubisheng.cn/style/pagead2.js (easylistchina+easylist.txt: 10424) +# @@||wubisheng.cn/style/pagead2.js (easylistchina.txt: 10412) .wubisheng.cn/style/pagead2\.js -# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina+easylist.txt: 10423) +# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina.txt: 10411) .wubisheng.cn/style/adsbygoogle\.js -# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina+easylist.txt: 10422) +# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina.txt: 10410) .woxiu.com/xapi/offsite_swf_more\.php\?.*&type= -# @@||wowsai.com/data/files/ad/ (easylistchina+easylist.txt: 10421) +# @@||wowsai.com/data/files/ad/ (easylistchina.txt: 10409) .wowsai.com/data/files/ad/ -# @@||wishdown.com/images/logo.gif (easylistchina+easylist.txt: 10420) +# @@||wishdown.com/images/logo.gif (easylistchina.txt: 10408) .wishdown.com/images/logo\.gif -# @@||win007.com/images/ad/qiu (easylistchina+easylist.txt: 10419) +# @@||win007.com/images/ad/qiu (easylistchina.txt: 10407) .win007.com/images/ad/qiu -# @@||win007.com/image/75338867887z.gif (easylistchina+easylist.txt: 10418) +# @@||win007.com/image/75338867887z.gif (easylistchina.txt: 10406) .win007.com/image/75338867887z\.gif -# @@||wholehk.com/madads728.htm (easylistchina+easylist.txt: 10417) +# @@||wholehk.com/madads728.htm (easylistchina.txt: 10405) .wholehk.com/madads728\.htm -# @@||wholehk.com/adsbygoogle.js (easylistchina+easylist.txt: 10416) +# @@||wholehk.com/adsbygoogle.js (easylistchina.txt: 10404) .wholehk.com/adsbygoogle\.js -# @@||wfcmw.cn^*.radio. (easylistchina+easylist.txt: 10415) +# @@||wfcmw.cn^*.radio. (easylistchina.txt: 10403) .wfcmw.cn/.*\.radio\. -# @@||weibo.com/api/weipan/getAds (easylistchina+easylist.txt: 10414) +# @@||weibo.com/api/weipan/getAds (easylistchina.txt: 10402) .weibo.com/api/weipan/getAds -# @@||webcrow.jp/adjs/ncskt.js (easylistchina+easylist.txt: 10413) +# @@||webcrow.jp/adjs/ncskt.js (easylistchina.txt: 10401) .webcrow.jp/adjs/ncskt\.js -# @@||veimg.cn/AdsShow/ (easylistchina+easylist.txt: 10412) +# @@||veimg.cn/AdsShow/ (easylistchina.txt: 10400) .veimg.cn/AdsShow/ -# @@||v1.cn/player/cloud/cloud_player (easylistchina+easylist.txt: 10411) +# @@||v1.cn/player/cloud/cloud_player (easylistchina.txt: 10399) .v1.cn/player/cloud/cloud_player -# @@||v.rbc.cn/ad/ (easylistchina+easylist.txt: 10410) +# @@||v.rbc.cn/ad/ (easylistchina.txt: 10398) .v.rbc.cn/ad/ -# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina+easylist.txt: 10409) +# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina.txt: 10397) .up2stream.com/vjs/plugin/css/ads\.css -# @@||union.m.jd.com/click/ (easylistchina+easylist.txt: 10408) +# @@||union.m.jd.com/click/ (easylistchina.txt: 10396) .union.m.jd.com/click/ -# @@||union.easypass.cn/block/ (easylistchina+easylist.txt: 10407) +# @@||union.easypass.cn/block/ (easylistchina.txt: 10395) .union.easypass.cn/block/ -# @@||union.click.jd.com^ (easylistchina+easylist.txt: 10406) +# @@||union.click.jd.com^ (easylistchina.txt: 10394) .union.click.jd.com -# @@||union.bokecc.com/servlet/getvideofile? (easylistchina+easylist.txt: 10405) +# @@||union.bokecc.com/servlet/getvideofile? (easylistchina.txt: 10393) .union.bokecc.com/servlet/getvideofile\? -# @@||union.bokecc.com/player? (easylistchina+easylist.txt: 10404) +# @@||union.bokecc.com/player? (easylistchina.txt: 10392) .union.bokecc.com/player\? -# @@||union.bokecc.com/flash/$object (easylistchina+easylist.txt: 10403) +# @@||union.bokecc.com/flash/$object (easylistchina.txt: 10391) .union.bokecc.com/flash/ -# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina+easylist.txt: 10401) +# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina.txt: 10389) .ujinbi.com/UpLoadFile/guanggao/ -# @@||ujinbi.com/AD/ (easylistchina+easylist.txt: 10400) +# @@||ujinbi.com/AD/ (easylistchina.txt: 10388) .ujinbi.com/AD/ -# @@||u9pan.com/images/ads/ (easylistchina+easylist.txt: 10398) +# @@||u9pan.com/images/ads/ (easylistchina.txt: 10386) .u9pan.com/images/ads/ -# @@||tt1069.com/advert.js (easylistchina+easylist.txt: 10396) +# @@||tt1069.com/advert.js (easylistchina.txt: 10384) .tt1069.com/advert\.js -# @@||toy9090.com^*/NR.gif (easylistchina+easylist.txt: 10395) +# @@||toy9090.com^*/NR.gif (easylistchina.txt: 10383) .toy9090.com/.*/NR\.gif -# @@||toy9090.com^*/NL.gif (easylistchina+easylist.txt: 10394) +# @@||toy9090.com^*/NL.gif (easylistchina.txt: 10382) .toy9090.com/.*/NL\.gif -# @@||totheglory.im/pic/ttg_logo (easylistchina+easylist.txt: 10393) +# @@||totheglory.im/pic/ttg_logo (easylistchina.txt: 10381) .totheglory.im/pic/ttg_logo -# @@||tompda.com/images/pix.swf (easylistchina+easylist.txt: 10392) +# @@||tompda.com/images/pix.swf (easylistchina.txt: 10380) .tompda.com/images/pix\.swf -# @@||tmall.com/go/*/banner.php (easylistchina+easylist.txt: 10391) +# @@||tmall.com/go/*/banner.php (easylistchina.txt: 10379) .tmall.com/go/.*/banner\.php -# @@||tenpay.com^*?ADTAG= (easylistchina+easylist.txt: 10390) +# @@||tenpay.com^*?ADTAG= (easylistchina.txt: 10378) .tenpay.com/.*\?ADTAG= -# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina+easylist.txt: 10389) +# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina.txt: 10377) .tenpay.com/v2\.0/main/creditcard/portal_rpm_apply\.shtml -# @@||taobao.com^*&adgroupid= (easylistchina+easylist.txt: 10388) +# @@||taobao.com^*&adgroupid= (easylistchina.txt: 10375) .taobao.com/.*&adgroupid= -# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina+easylist.txt: 10387) +# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina.txt: 10374) .taobao.com/go/app/tmall/login-api\.php\? -# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina+easylist.txt: 10386) +# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina.txt: 10373) .tansuo.cntv.cn/.*/tansuo_Advertise\.js -# @@||sx566.com/templates/default/images/ad (easylistchina+easylist.txt: 10384) +# @@||sx566.com/templates/default/images/ad (easylistchina.txt: 10371) .sx566.com/templates/default/images/ad -# @@||sudupan.com^*/*.gif (easylistchina+easylist.txt: 10383) +# @@||sudupan.com^*/*.gif (easylistchina.txt: 10370) .sudupan.com/.*/.*\.gif -# @@||static.hdslb.com/ad-images/$image (easylistchina+easylist.txt: 10381) +# @@||static.hdslb.com/ad-images/$image (easylistchina.txt: 10368) .static.hdslb.com/ad-images/ -# @@||static.atm.youku.com^*.swf (easylistchina+easylist.txt: 10380) +# @@||static.atm.youku.com^*.swf (easylistchina.txt: 10367) .static.atm.youku.com/.*\.swf -# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina+easylist.txt: 10379) +# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina.txt: 10366) .spbonow.com/UploadFiles/201505/2015051853456325\.gif -# @@||spbonow.com/images/ads/logo.gif (easylistchina+easylist.txt: 10378) +# @@||spbonow.com/images/ads/logo.gif (easylistchina.txt: 10365) .spbonow.com/images/ads/logo\.gif -# @@||sjsmitaa.org/bin/showads. (easylistchina+easylist.txt: 10377) +# @@||sjsmitaa.org/bin/showads. (easylistchina.txt: 10364) .sjsmitaa.org/bin/showads\. -# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina+easylist.txt: 10376) +# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina.txt: 10363) .sinaimg.cn/.*/deco/.*/sinaObj\.js -# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina+easylist.txt: 10374) +# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina.txt: 10361) .sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra\.gif -# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina+easylist.txt: 10373) +# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina.txt: 10360) .sinaimg.cn/dy/deco/.*/js/require\.js -# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina+easylist.txt: 10372) +# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina.txt: 10359) .sinaimg.cn/dy/deco/.*/js/base\.js -# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina+easylist.txt: 10370) +# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina.txt: 10357) .sinaimg.cn/ad/adimage/50x50_ -# @@||sina.com.hk^*_ads.cgi (easylistchina+easylist.txt: 10369) +# @@||sina.com.hk^*_ads.cgi (easylistchina.txt: 10356) .sina.com.hk/.*_ads\.cgi -# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina+easylist.txt: 10368) +# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina.txt: 10355) .sina.com.cn/litong/zhitou/pic/close- -# @@||simba.taobao.com/?name=mcad$script (easylistchina+easylist.txt: 10367) +# @@||simba.taobao.com/?name=mcad$script (easylistchina.txt: 10354) .simba.taobao.com/\?name=mcad -# @@||share.dmhy.*/generate-captcha? (easylistchina+easylist.txt: 10366) +# @@||share.dmhy.*/generate-captcha? (easylistchina.txt: 10353) .share.dmhy.*./(.*/)?generate-captcha\? -# @@||sf-express.com/.galleries/advertisement/ (easylistchina+easylist.txt: 10365) +# @@||sf-express.com/.galleries/advertisement/ (easylistchina.txt: 10352) .sf-express.com/\.galleries/advertisement/ -# @@||selfimg.com.cn/?? (easylistchina+easylist.txt: 10361) +# @@||selfimg.com.cn/?? (easylistchina.txt: 10350) .selfimg.com.cn/\?\? -# @@||sdc.pingan.com^$~image (easylistchina+easylist.txt: 10360) +# @@||sdc.pingan.com^$~image (easylistchina.txt: 10349) .sdc.pingan.com -# @@||sc.jb51.net/adimg/*.jpg (easylistchina+easylist.txt: 10359) +# @@||sc.jb51.net/adimg/*.jpg (easylistchina.txt: 10348) .sc.jb51.net/adimg/.*\.jpg -# @@||sakai.club/advertisement.js (easylistchina+easylist.txt: 10358) +# @@||sakai.club/advertisement.js (easylistchina.txt: 10347) .sakai.club/advertisement\.js -# @@||sakai-hk.com/advertisement.js (easylistchina+easylist.txt: 10357) +# @@||sakai-hk.com/advertisement.js (easylistchina.txt: 10346) .sakai-hk.com/advertisement\.js -# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina+easylist.txt: 10356) +# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina.txt: 10345) .saibeinews.com/index\.php\?m=poster&c=index&a=show_poster&id=2 -# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina+easylist.txt: 10353) +# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina.txt: 10343) .ruten.com.tw/js/jquery\.ruten\.supertop_ad\.js -# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina+easylist.txt: 10351) +# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina.txt: 10341) .regapi.37.com/api/p_register\.php\?login_account= -# @@||ref.so/templates/ref/short_show/adview_ (easylistchina+easylist.txt: 10350) +# @@||ref.so/templates/ref/short_show/adview_ (easylistchina.txt: 10340) .ref.so/templates/ref/short_show/adview_ -# @@||rakuya.com.tw^*/common_ad. (easylistchina+easylist.txt: 10349) +# @@||rakuya.com.tw^*/common_ad. (easylistchina.txt: 10339) .rakuya.com.tw/.*/common_ad\. -# @@||quwenjiemi.com/105.js? (easylistchina+easylist.txt: 10348) +# @@||quwenjiemi.com/105.js? (easylistchina.txt: 10338) .quwenjiemi.com/105\.js\? -# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina+easylist.txt: 10347) +# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina.txt: 10337) .qqread.com/swf/qqread_rollpic\.swf -# @@||qq.com^*?ADTAG= (easylistchina+easylist.txt: 10346) +# @@||qq.com^*?ADTAG= (easylistchina.txt: 10336) .qq.com/.*\?ADTAG= -# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina+easylist.txt: 10345) +# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina.txt: 10335) .qq.com/server/website/CommWebGameSelect_ad\.js -# @@||qq.com/bossweb/jifen/ (easylistchina+easylist.txt: 10344) +# @@||qq.com/bossweb/jifen/ (easylistchina.txt: 10334) .qq.com/bossweb/jifen/ -# @@||qiyipic.com/common/fix/pub_images/ (easylistchina+easylist.txt: 10343) +# @@||qiyipic.com/common/fix/pub_images/ (easylistchina.txt: 10333) .qiyipic.com/common/fix/pub_images/ -# @@||qingdaoport.net/adv/random.jsp (easylistchina+easylist.txt: 10342) +# @@||qingdaoport.net/adv/random.jsp (easylistchina.txt: 10332) .qingdaoport.net/adv/random\.jsp -# @@||qingcheng.com^*/ad (easylistchina+easylist.txt: 10341) +# @@||qingcheng.com^*/ad (easylistchina.txt: 10331) .qingcheng.com/.*/ad -# @@||qikuyou.com/images/js/adv.js (easylistchina+easylist.txt: 10340) +# @@||qikuyou.com/images/js/adv.js (easylistchina.txt: 10330) .qikuyou.com/images/js/adv\.js -# @@||qidian.com/ploy/20*.swf (easylistchina+easylist.txt: 10339) +# @@||qidian.com/ploy/20*.swf (easylistchina.txt: 10329) .qidian.com/ploy/20.*\.swf -# @@||pub.alimama.com/common/adzone/ (easylistchina+easylist.txt: 10338) +# @@||pub.alimama.com/common/adzone/ (easylistchina.txt: 10328) .pub.alimama.com/common/adzone/ -# @@||ps123.net/MyFile/toptxt.js (easylistchina+easylist.txt: 10337) +# @@||ps123.net/MyFile/toptxt.js (easylistchina.txt: 10327) .ps123.net/MyFile/toptxt\.js -# @@||pos.baidu.com/acom?di=u1840644& (easylistchina+easylist.txt: 10335) +# @@||pos.baidu.com/acom?di=u1840644& (easylistchina.txt: 10325) .pos.baidu.com/acom\?di=u1840644& -# @@||pos.baidu.com/acom?di=u1705639& (easylistchina+easylist.txt: 10334) +# @@||pos.baidu.com/acom?di=u1705639& (easylistchina.txt: 10324) .pos.baidu.com/acom\?di=u1705639& -# @@||pos.baidu.com/acom?di=u1671167& (easylistchina+easylist.txt: 10333) +# @@||pos.baidu.com/acom?di=u1671167& (easylistchina.txt: 10323) .pos.baidu.com/acom\?di=u1671167& -# @@||pos.baidu.com/acom?di=u1460926& (easylistchina+easylist.txt: 10332) +# @@||pos.baidu.com/acom?di=u1460926& (easylistchina.txt: 10322) .pos.baidu.com/acom\?di=u1460926& -# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina+easylist.txt: 10330) +# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina.txt: 10320) .pmm.people.com.cn/main/s\?user=people\|homepage\|2013juxing -# @@||piccool.com/2home/phpAdsNew/ (easylistchina+easylist.txt: 10329) +# @@||piccool.com/2home/phpAdsNew/ (easylistchina.txt: 10319) .piccool.com/2home/phpAdsNew/ -# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina+easylist.txt: 10328) +# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina.txt: 10318) .pic.zol-img.com.cn/2009/pix_index\.swf -# @@||photo.erji.com/tb/*.gif (easylistchina+easylist.txt: 10327) +# @@||photo.erji.com/tb/*.gif (easylistchina.txt: 10317) .photo.erji.com/tb/.*\.gif -# @@||pep.com.cn/rjs/guanggao/ (easylistchina+easylist.txt: 10326) +# @@||pep.com.cn/rjs/guanggao/ (easylistchina.txt: 10316) .pep.com.cn/rjs/guanggao/ -# @@||ouyaoxiazai.com/shouyead.js (easylistchina+easylist.txt: 10322) +# @@||ouyaoxiazai.com/shouyead.js (easylistchina.txt: 10312) .ouyaoxiazai.com/shouyead\.js -# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina+easylist.txt: 10321) +# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina.txt: 10311) .ooomm.com/ad/Whoyao_logo114\.png -# @@||ooomm.com/ad/icon/ (easylistchina+easylist.txt: 10320) +# @@||ooomm.com/ad/icon/ (easylistchina.txt: 10310) .ooomm.com/ad/icon/ -# @@||online.unionpay.com/ads/$script (easylistchina+easylist.txt: 10319) +# @@||online.unionpay.com/ads/$script (easylistchina.txt: 10309) .online.unionpay.com/ads/ -# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina+easylist.txt: 10318) +# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina.txt: 10308) .omusic.com.tw/backend/uploadpic/adindex/ -# @@||newxing.com/a_d/downAddress.js (easylistchina+easylist.txt: 10317) +# @@||newxing.com/a_d/downAddress.js (easylistchina.txt: 10307) .newxing.com/a_d/downAddress\.js -# @@||news.u17i.com/advert/ (easylistchina+easylist.txt: 10316) +# @@||news.u17i.com/advert/ (easylistchina.txt: 10306) .news.u17i.com/advert/ -# @@||new7574.u.qiniudn.com^*^ad (easylistchina+easylist.txt: 10315) +# @@||new7574.u.qiniudn.com^*^ad (easylistchina.txt: 10305) .new7574.u.qiniudn.com/.*[^\w%.-]ad -# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina+easylist.txt: 10314) +# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina.txt: 10304) .netded.com/plus/ad_js\.php\?aid=3$ -# @@||naruto.hk/ad/uy.js (easylistchina+easylist.txt: 10313) +# @@||naruto.hk/ad/uy.js (easylistchina.txt: 10303) .naruto.hk/ad/uy\.js -# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina+easylist.txt: 10312) +# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina.txt: 10302) .mymusic.net.tw/js/ad/index_1\.js -# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina+easylist.txt: 10311) +# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina.txt: 10301) .muzhiwan.com/forum\.php\?.*=300x250& -# @@||mnighthk.net/template/*/ad (easylistchina+easylist.txt: 10308) +# @@||mnighthk.net/template/*/ad (easylistchina.txt: 10298) .mnighthk.net/template/.*/ad -# @@||mm.maxthon.cn/ad/ (easylistchina+easylist.txt: 10307) +# @@||mm.maxthon.cn/ad/ (easylistchina.txt: 10297) .mm.maxthon.cn/ad/ -# @@||miaozhen.com^*/m.suning. (easylistchina+easylist.txt: 10306) +# @@||miaozhen.com^*/m.suning. (easylistchina.txt: 10296) .miaozhen.com/.*/m\.suning\. -# @@||meizu.com/fileserver/ad/img/ (easylistchina+easylist.txt: 10305) +# @@||meizu.com/fileserver/ad/img/ (easylistchina.txt: 10295) .meizu.com/fileserver/ad/img/ -# @@||ltxhcz.com/skin/default/images/ (easylistchina+easylist.txt: 10302) +# @@||ltxhcz.com/skin/default/images/ (easylistchina.txt: 10292) .ltxhcz.com/skin/default/images/ -# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina+easylist.txt: 10301) +# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina.txt: 10291) .life.tenpay.com/res/ad/cellphone/js/down_for_app\.js -# @@||letvcloud.com^*&showAd= (easylistchina+easylist.txt: 10299) +# @@||letvcloud.com^*&showAd= (easylistchina.txt: 10289) .letvcloud.com/.*&showAd= -# @@||letv.com*/tuiguang/$subdocument (easylistchina+easylist.txt: 10298) +# @@||letv.com*/tuiguang/$subdocument (easylistchina.txt: 10288) .letv.com*./(.*/)?tuiguang/ -# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina+easylist.txt: 10296) +# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina.txt: 10286) .l.qq.com/livemsg\?ty=web&ad_type= -# @@||kukuplay.com/upload/*.*.swf (easylistchina+easylist.txt: 10295) +# @@||kukuplay.com/upload/*.*.swf (easylistchina.txt: 10285) .kukuplay.com/upload/.*\..*\.swf -# @@||joy.cn/service.php?*&showad= (easylistchina+easylist.txt: 10291) +# @@||joy.cn/service.php?*&showad= (easylistchina.txt: 10281) .joy.cn/service\.php\?.*&showad= -# @@||jjjgame.com/plus/ad_ (easylistchina+easylist.txt: 10290) +# @@||jjjgame.com/plus/ad_ (easylistchina.txt: 10280) .jjjgame.com/plus/ad_ -# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina+easylist.txt: 10289) +# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina.txt: 10279) .jj.5ccc.net/scripts/new/pagetop\.js -# @@||jinhongweiqi.com/ad/update/ (easylistchina+easylist.txt: 10288) +# @@||jinhongweiqi.com/ad/update/ (easylistchina.txt: 10278) .jinhongweiqi.com/ad/update/ -# @@||itjsb.com/bg.gif (easylistchina+easylist.txt: 10286) +# @@||itjsb.com/bg.gif (easylistchina.txt: 10276) .itjsb.com/bg\.gif -# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina+easylist.txt: 10285) +# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina.txt: 10275) .itiexue.net/js/tiexue/statistic/wwwindex/ -# @@||indeep.com.tw^*/Showad. (easylistchina+easylist.txt: 10281) +# @@||indeep.com.tw^*/Showad. (easylistchina.txt: 10271) .indeep.com.tw/.*/Showad\. -# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina+easylist.txt: 10280) +# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina.txt: 10270) .indeep.com.tw/Images/Upload/AdPic/ -# @@||indeep.com.tw/images/ad.swf? (easylistchina+easylist.txt: 10279) +# @@||indeep.com.tw/images/ad.swf? (easylistchina.txt: 10269) .indeep.com.tw/images/ad\.swf\? -# @@||img.ybbbs.com/2014/*app (easylistchina+easylist.txt: 10278) +# @@||img.ybbbs.com/2014/*app (easylistchina.txt: 10268) .img.ybbbs.com/2014/.*app -# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina+easylist.txt: 10274) +# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina.txt: 10264) .icbc.com.cn/Portal_Resources/Common/AdRes/ -# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina+easylist.txt: 10273) +# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina.txt: 10263) .icbc.com.cn/Portal_Resources/Common/AdCss/ -# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina+easylist.txt: 10272) +# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina.txt: 10262) .icbc.com.cn/ICBC_ADJS/ -# @@||icbc.com.cn/icbc/include/AD_ (easylistchina+easylist.txt: 10271) +# @@||icbc.com.cn/icbc/include/AD_ (easylistchina.txt: 10261) .icbc.com.cn/icbc/include/AD_ -# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina+easylist.txt: 10269) +# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina.txt: 10259) .i3.sinaimg.cn/video/deco/2013/0325/js/ -# @@||hunantv.com/FrameWork/AFP/skin_ (easylistchina+easylist.txt: 10268) -.hunantv.com/FrameWork/AFP/skin_ -# @@||huelead.com/images/*ad (easylistchina+easylist.txt: 10267) +# @@||hunantv.com/FrameWork/AFP/ (easylistchina.txt: 10258) +.hunantv.com/FrameWork/AFP/ +# @@||huelead.com/images/*ad (easylistchina.txt: 10257) .huelead.com/images/.*ad -# @@||hkjc.com/banners/ (easylistchina+easylist.txt: 10266) +# @@||hkjc.com/banners/ (easylistchina.txt: 10256) .hkjc.com/banners/ -# @@||hhtt.cn/web.php/ad/show (easylistchina+easylist.txt: 10265) +# @@||hhtt.cn/web.php/ad/show (easylistchina.txt: 10255) .hhtt.cn/web\.php/ad/show -# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina+easylist.txt: 10264) +# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina.txt: 10254) .hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg\.js -# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina+easylist.txt: 10263) +# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina.txt: 10253) .heikexs.com/wp-content/themes/Duoxs.*/js/user\.js -# @@||guancha.cn/ad/m_ (easylistchina+easylist.txt: 10261) +# @@||guancha.cn/ad/m_ (easylistchina.txt: 10251) .guancha.cn/ad/m_ -# @@||gqzzw.com*/adview_ (easylistchina+easylist.txt: 10260) +# @@||gqzzw.com*/adview_ (easylistchina.txt: 10250) .gqzzw.com*./(.*/)?adview_ -# @@||gqdzs.com*/adview_ (easylistchina+easylist.txt: 10259) +# @@||gqdzs.com*/adview_ (easylistchina.txt: 10249) .gqdzs.com*./(.*/)?adview_ -# @@||gpsdlm.com/images/ad. (easylistchina+easylist.txt: 10258) +# @@||gpsdlm.com/images/ad. (easylistchina.txt: 10248) .gpsdlm.com/images/ad\. -# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina+easylist.txt: 10257) +# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina.txt: 10247) .gov.cn/scripts/Comm/AdRotator\.js -# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina+easylist.txt: 10256) +# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina.txt: 10246) .go.goyeah.com/adpolestar/ -# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina+easylist.txt: 10255) +# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina.txt: 10245) .gg1z.com/statics/gg/greendown/logo\.gif -# @@||gg.img123456.com^ (easylistchina+easylist.txt: 10253) +# @@||gg.yxdown.com/count/countzt.js (easylistchina.txt: 10244) +.gg.yxdown.com/count/countzt\.js +# @@||gg.img123456.com^ (easylistchina.txt: 10242) .gg.img123456.com -# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina+easylist.txt: 10252) +# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina.txt: 10241) .ganji.com/findjob/send_resume\..*&ad_type= -# @@||gamersky.com^*/dhgame_ (easylistchina+easylist.txt: 10251) +# @@||gamersky.com^*/dhgame_ (easylistchina.txt: 10240) .gamersky.com/.*/dhgame_ -# @@||game.sina.com.tw/game_data/advertise/ (easylistchina+easylist.txt: 10250) +# @@||game.sina.com.tw/game_data/advertise/ (easylistchina.txt: 10239) .game.sina.com.tw/game_data/advertise/ -# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina+easylist.txt: 10249) +# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina.txt: 10238) .g.tbcdn.cn/tb/mercury/.*/ads/index\. -# @@||g.alicdn.com/??*/criteo (easylistchina+easylist.txt: 10248) +# @@||g.alicdn.com/??*/criteo (easylistchina.txt: 10237) .g.alicdn.com/\?\?.*/criteo -# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina+easylist.txt: 10247) +# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina.txt: 10236) .g.163.com/jr\?site=netease&affiliate=freemail -# @@||forum.51nb.com/images/*/ (easylistchina+easylist.txt: 10246) +# @@||forum.51nb.com/images/*/ (easylistchina.txt: 10235) .forum.51nb.com/images/.*/ -# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina+easylist.txt: 10245) +# @@||fharr.com^$generichide (easylistchina.txt: 10234) +.fharr.com +# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina.txt: 10232) .esquirehk.com/action/adtag/\(type\)/googletag/\(method\)/async -# @@||emome.net/files/advertising/ (easylistchina+easylist.txt: 10244) +# @@||emome.net/files/advertising/ (easylistchina.txt: 10231) .emome.net/files/advertising/ -# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina+easylist.txt: 10243) +# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina.txt: 10230) .eiv.baidu.com/hmt/icon/21\.gif -# @@||edgesuite.net^*/ad.css? (easylistchina+easylist.txt: 10242) +# @@||edgesuite.net^*/ad.css? (easylistchina.txt: 10229) .edgesuite.net/.*/ad\.css\? -# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina+easylist.txt: 10241) +# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina.txt: 10228) .eden.org.tw/themes/liger/images/banner_ -# @@||eden.org.tw*/script/ad_banner/ (easylistchina+easylist.txt: 10240) +# @@||eden.org.tw*/script/ad_banner/ (easylistchina.txt: 10227) .eden.org.tw*./(.*/)?script/ad_banner/ -# @@||ecma.bdimg.com/holmes/*.svg (easylistchina+easylist.txt: 10239) +# @@||ecma.bdimg.com/holmes/*.svg (easylistchina.txt: 10226) .ecma.bdimg.com/holmes/.*\.svg -# @@||ecitic.com/eshop/advertise/ (easylistchina+easylist.txt: 10238) +# @@||ecitic.com/eshop/advertise/ (easylistchina.txt: 10225) .ecitic.com/eshop/advertise/ -# @@||ecitic.com/ads_ (easylistchina+easylist.txt: 10237) +# @@||ecitic.com/ads_ (easylistchina.txt: 10224) .ecitic.com/ads_ -# @@||ebiotrade.com/jslibrary/js44.js (easylistchina+easylist.txt: 10236) +# @@||ebiotrade.com/jslibrary/js44.js (easylistchina.txt: 10223) .ebiotrade.com/jslibrary/js44\.js -# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina+easylist.txt: 10234) +# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina.txt: 10218) .e.cn.miaozhen.com/r/k=.*=http -# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina+easylist.txt: 10233) +# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina.txt: 10217) .dzwww.com/ad/jsfiles/fillCon\.js -# @@||dvs.china.com/crossdomain.xml (easylistchina+easylist.txt: 10232) +# @@||dvs.china.com/crossdomain.xml (easylistchina.txt: 10216) .dvs.china.com/crossdomain\.xml -# @@||dvs.china.com/adv1.xml (easylistchina+easylist.txt: 10231) +# @@||dvs.china.com/adv1.xml (easylistchina.txt: 10215) .dvs.china.com/adv1\.xml -# @@||dvbcn.com/caches/poster_js/23.js (easylistchina+easylist.txt: 10230) +# @@||dvbcn.com/caches/poster_js/23.js (easylistchina.txt: 10214) .dvbcn.com/caches/poster_js/23\.js -# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina+easylist.txt: 10229) +# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina.txt: 10213) .dushiwenxue.com/add/article/pagetop\.js -# @@||duba.net/common/cf/common_6545_icon. (easylistchina+easylist.txt: 10228) +# @@||duba.net/common/cf/common_6545_icon. (easylistchina.txt: 10212) .duba.net/common/cf/common_6545_icon\. -# @@||downbank.cn/s1/yl.js (easylistchina+easylist.txt: 10227) +# @@||downbank.cn/s1/yl.js (easylistchina.txt: 10211) .downbank.cn/s1/yl\.js -# @@||down.cc/down/js/ad.js (easylistchina+easylist.txt: 10226) +# @@||down.cc/down/js/ad.js (easylistchina.txt: 10210) .down.cc/down/js/ad\.js -# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina+easylist.txt: 10225) +# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina.txt: 10209) .do189.com/zb_users/theme/duoyi/style/images/text_bg\.gif -# @@||dnvod.eu/ads/$object-subrequest (easylistchina+easylist.txt: 10224) +# @@||dnvod.eu/ads/$object-subrequest (easylistchina.txt: 10208) .dnvod.eu/ads/ -# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina+easylist.txt: 10223) +# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina.txt: 10207) .disney.com.tw/tv/global/swf/banner728x90\.swf -# @@||dilidili.com/js/week.js (easylistchina+easylist.txt: 10222) +# @@||dilidili.com/js/week.js (easylistchina.txt: 10206) .dilidili.com/js/week\.js -# @@||daoju.qq.com/time/*/js/ad/ (easylistchina+easylist.txt: 10221) +# @@||daoju.qq.com/time/*/js/ad/ (easylistchina.txt: 10205) .daoju.qq.com/time/.*/js/ad/ -# @@||damai.cn^*/TopAd/ (easylistchina+easylist.txt: 10220) +# @@||damai.cn^*/TopAd/ (easylistchina.txt: 10204) .damai.cn/.*/TopAd/ -# @@||cztv.com/player/*.swf?ad= (easylistchina+easylist.txt: 10219) +# @@||cztv.com/player/*.swf?ad= (easylistchina.txt: 10203) .cztv.com/player/.*\.swf\?ad= -# @@||csbew.com/FrameWork/AFP/ASP_ (easylistchina+easylist.txt: 10217) -.csbew.com/FrameWork/AFP/ASP_ -# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina+easylist.txt: 10216) +# @@||csbew.com/FrameWork/AFP/ (easylistchina.txt: 10201) +.csbew.com/FrameWork/AFP/ +# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina.txt: 10200) .cq.qq.com/js/cody/.*scroll_ad\.js -# @@||costco.com.tw/jsps/website/*AD (easylistchina+easylist.txt: 10213) +# @@||costco.com.tw/jsps/website/*AD (easylistchina.txt: 10197) .costco.com.tw/jsps/website/.*AD -# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina+easylist.txt: 10212) +# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina.txt: 10196) .content.s8bbs.com/ad/bbs/.*\.jpg -# @@||cntv.cn^*_ad.js (easylistchina+easylist.txt: 10211) +# @@||cntv.cn^*_ad.js (easylistchina.txt: 10195) .cntv.cn/.*_ad\.js -# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina+easylist.txt: 10210) +# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina.txt: 10194) .cnsofas.com/loldytt/js/jquery\.js -# @@||cnr.cn/gg/ (easylistchina+easylist.txt: 10209) +# @@||cnr.cn/gg/ (easylistchina.txt: 10193) .cnr.cn/gg/ -# @@||cmbchina.com/ads/ (easylistchina+easylist.txt: 10208) +# @@||cmbchina.com/ads/ (easylistchina.txt: 10192) .cmbchina.com/ads/ -# @@||click.union.vip.com^ (easylistchina+easylist.txt: 10207) +# @@||click.union.vip.com^ (easylistchina.txt: 10191) .click.union.vip.com -# @@||click.union.jd.com^ (easylistchina+easylist.txt: 10206) +# @@||click.union.jd.com^ (easylistchina.txt: 10190) .click.union.jd.com -# @@||citysbs.com^*/swfupload/ (easylistchina+easylist.txt: 10205) +# @@||citysbs.com^*/swfupload/ (easylistchina.txt: 10189) .citysbs.com/.*/swfupload/ -# @@||chinahr.com/images/phpads/ (easylistchina+easylist.txt: 10204) +# @@||chinahr.com/images/phpads/ (easylistchina.txt: 10188) .chinahr.com/images/phpads/ -# @@||cdn.wdlm.cn^*/ (easylistchina+easylist.txt: 10203) +# @@||cdn.wdlm.cn^*/ (easylistchina.txt: 10187) .cdn.wdlm.cn/.*/ -# @@||cb.baidu.com/ecom?di=943217& (easylistchina+easylist.txt: 10198) +# @@||cb.baidu.com/ecom?di=943217& (easylistchina.txt: 10182) .cb.baidu.com/ecom\?di=943217& -# @@||cb.baidu.com/ecom?di=893557& (easylistchina+easylist.txt: 10197) +# @@||cb.baidu.com/ecom?di=893557& (easylistchina.txt: 10181) .cb.baidu.com/ecom\?di=893557& -# @@||cb.baidu.com/ecom?di=817641& (easylistchina+easylist.txt: 10196) +# @@||cb.baidu.com/ecom?di=817641& (easylistchina.txt: 10180) .cb.baidu.com/ecom\?di=817641& -# @@||cb.baidu.com/ecom?di=654997& (easylistchina+easylist.txt: 10195) +# @@||cb.baidu.com/ecom?di=654997& (easylistchina.txt: 10179) .cb.baidu.com/ecom\?di=654997& -# @@||cb.baidu.com/ecom?di=373107& (easylistchina+easylist.txt: 10194) +# @@||cb.baidu.com/ecom?di=373107& (easylistchina.txt: 10178) .cb.baidu.com/ecom\?di=373107& -# @@||cb.baidu.com/ecom?di=106878& (easylistchina+easylist.txt: 10193) +# @@||cb.baidu.com/ecom?di=106878& (easylistchina.txt: 10177) .cb.baidu.com/ecom\?di=106878& -# @@||buy.ccb.com/public/js/ad.js (easylistchina+easylist.txt: 10189) +# @@||buy.ccb.com/public/js/ad.js (easylistchina.txt: 10173) .buy.ccb.com/public/js/ad\.js -# @@||briian.com/advert. (easylistchina+easylist.txt: 10188) +# @@||briian.com/advert. (easylistchina.txt: 10172) .briian.com/advert\. -# @@||blimage.com/picserver/ggpic/ (easylistchina+easylist.txt: 10187) +# @@||blimage.com/picserver/ggpic/ (easylistchina.txt: 10171) .blimage.com/picserver/ggpic/ -# @@||biz.gexing.com/bottom_ (easylistchina+easylist.txt: 10185) +# @@||biz.gexing.com/bottom_ (easylistchina.txt: 10169) .biz.gexing.com/bottom_ -# @@||biquge5.com/jquery/biquge.js (easylistchina+easylist.txt: 10184) +# @@||biquge5.com/jquery/biquge.js (easylistchina.txt: 10168) .biquge5.com/jquery/biquge\.js -# @@||beanfun.com/ADClient/ (easylistchina+easylist.txt: 10182) +# @@||beanfun.com/ADClient/ (easylistchina.txt: 10166) .beanfun.com/ADClient/ -# @@||bdstatic.com/??*, (easylistchina+easylist.txt: 10181) +# @@||bdstatic.com/??*, (easylistchina.txt: 10165) .bdstatic.com/\?\?.*, -# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina+easylist.txt: 10179) +# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina.txt: 10163) .bbs.yantuchina.com/gg/tmp/hong\.gif -# @@||banma.com/statics/js/?? (easylistchina+easylist.txt: 10178) +# @@||banma.com/statics/js/?? (easylistchina.txt: 10162) .banma.com/statics/js/\?\? -# @@||atm.youku.com/cast/getFlvUrl. (easylistchina+easylist.txt: 10177) +# @@||bahamut.com.tw/JS/ad/mobileBigBanner.js (easylistchina.txt: 10161) +.bahamut.com.tw/JS/ad/mobileBigBanner\.js +# @@||atm.youku.com/cast/getFlvUrl. (easylistchina.txt: 10160) .atm.youku.com/cast/getFlvUrl\. -# @@||astyle.alicdn.com/?? (easylistchina+easylist.txt: 10176) +# @@||astyle.alicdn.com/?? (easylistchina.txt: 10159) .astyle.alicdn.com/\?\? -# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina+easylist.txt: 10175) +# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina.txt: 10158) .aspjzy.com/jsweb/js/hotsearch\.js -# @@||aqy103.com/js/aqy/main.js (easylistchina+easylist.txt: 10173) +# @@||aqy103.com/js/aqy/main.js (easylistchina.txt: 10156) .aqy103.com/js/aqy/main\.js -# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina+easylist.txt: 10172) +# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina.txt: 10155) .appledaily.com.hk/admedia/ -# @@||appbyme.com^*/Advertisement.css (easylistchina+easylist.txt: 10171) +# @@||appbyme.com^*/Advertisement.css (easylistchina.txt: 10154) .appbyme.com/.*/Advertisement\.css -# @@||appbyme.com/adclient/ (easylistchina+easylist.txt: 10170) +# @@||appbyme.com/adclient/ (easylistchina.txt: 10153) .appbyme.com/adclient/ -# @@||angpic.3g.net.cn/ai/*/ (easylistchina+easylist.txt: 10169) +# @@||angpic.3g.net.cn/ai/*/ (easylistchina.txt: 10152) .angpic.3g.net.cn/ai/.*/ -# @@||airenti.xyz/*/$script (easylistchina+easylist.txt: 10166) -.airenti.xyz/.*/ -# @@||airenti.co/*/$script (easylistchina+easylist.txt: 10165) -.airenti.co/.*/ -# @@||advertise.shijue.cvidea.cn^ (easylistchina+easylist.txt: 10164) +# @@||airenti.in/*/$script (easylistchina.txt: 10149) +.airenti.in/.*/ +# @@||advertise.shijue.cvidea.cn^ (easylistchina.txt: 10148) .advertise.shijue.cvidea.cn -# @@||advert.kf5.com^ (easylistchina+easylist.txt: 10163) +# @@||advert.kf5.com^ (easylistchina.txt: 10147) .advert.kf5.com -# @@||ads.i8.com.cn/hd/dzs/ (easylistchina+easylist.txt: 10159) +# @@||ads.i8.com.cn/hd/dzs/ (easylistchina.txt: 10143) .ads.i8.com.cn/hd/dzs/ -# @@||adjs.8591.com.tw^$script (easylistchina+easylist.txt: 10155) +# @@||adjs.8591.com.tw^$script (easylistchina.txt: 10139) .adjs.8591.com.tw -# @@||addon.discuz.com/resource/*/ad (easylistchina+easylist.txt: 10154) +# @@||addon.discuz.com/resource/*/ad (easylistchina.txt: 10138) .addon.discuz.com/resource/.*/ad -# @@||adcdn.pingan.com^ (easylistchina+easylist.txt: 10153) +# @@||adcdn.pingan.com^ (easylistchina.txt: 10137) .adcdn.pingan.com -# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina+easylist.txt: 10152) +# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina.txt: 10136) .ad1.nownews.com/ads\.php\?ownerid=1335 -# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina+easylist.txt: 10151) +# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina.txt: 10135) .ad1.nownews.com/ads\.php\?ownerid=1334 -# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina+easylist.txt: 10150) +# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina.txt: 10134) .ad1.nownews.com/ads\.php\?ownerid=1333 -# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina+easylist.txt: 10149) +# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina.txt: 10133) .ad1.nownews.com/ads\.php\?ownerid=1332 -# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina+easylist.txt: 10148) +# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina.txt: 10132) .ad1.nownews.com/ads\.php\?ownerid=1331 -# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina+easylist.txt: 10147) +# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina.txt: 10131) .ad1.nownews.com/ads\.php\?ownerid=1325 -# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina+easylist.txt: 10146) +# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina.txt: 10130) .ad1.nownews.com/ads\.php\?ownerid=1324 -# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina+easylist.txt: 10145) +# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina.txt: 10129) .ad1.nownews.com/ads\.php\?ownerid=1323 -# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina+easylist.txt: 10144) +# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina.txt: 10128) .ad1.nownews.com/ads\.php\?ownerid=1322 -# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina+easylist.txt: 10143) +# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina.txt: 10127) .ad1.nownews.com/ads\.php\?ownerid=1321 -# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina+easylist.txt: 10142) +# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina.txt: 10126) .ad1.nownews.com/ads\.php\?ownerid=1294 -# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina+easylist.txt: 10141) +# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina.txt: 10125) .ad1.nownews.com/.*\.php\?ownerid=1355 -# @@||ad.thsi.cn/siteHome/ (easylistchina+easylist.txt: 10139) +# @@||ad.thsi.cn/siteHome/ (easylistchina.txt: 10123) .ad.thsi.cn/siteHome/ -# @@||ad.qyer.com^ (easylistchina+easylist.txt: 10138) +# @@||ad.qyer.com^ (easylistchina.txt: 10122) .ad.qyer.com -# @@||ad.ourgame.com^ (easylistchina+easylist.txt: 10137) +# @@||ad.ourgame.com^ (easylistchina.txt: 10121) .ad.ourgame.com -# @@||ad.kazakinfo.com^ (easylistchina+easylist.txt: 10136) +# @@||ad.kazakinfo.com^ (easylistchina.txt: 10120) .ad.kazakinfo.com -# @@||ad.jz123.cn^ (easylistchina+easylist.txt: 10135) +# @@||ad.jz123.cn^ (easylistchina.txt: 10119) .ad.jz123.cn -# @@||ad.damai.cn^ (easylistchina+easylist.txt: 10133) +# @@||ad.damai.cn^ (easylistchina.txt: 10117) .ad.damai.cn -# @@||ad.abchina.com^ (easylistchina+easylist.txt: 10131) +# @@||ad.abchina.com^ (easylistchina.txt: 10115) .ad.abchina.com -# @@||ad.10010.com^ (easylistchina+easylist.txt: 10128) +# @@||ad.10010.com^ (easylistchina.txt: 10112) .ad.10010.com -# @@||abchina.com^*/images/ad. (easylistchina+easylist.txt: 10126) +# @@||abchina.com^*/images/ad. (easylistchina.txt: 10110) .abchina.com/.*/images/ad\. -# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina+easylist.txt: 10125) +# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina.txt: 10109) .a.banggo.com/Ad/getAdPosList\.shtml -# @@||95599.cn^*/images/ad. (easylistchina+easylist.txt: 10123) +# @@||99ting.cn/image/ding.gif (easylistchina.txt: 10106) +.99ting.cn/image/ding\.gif +# @@||95599.cn^*/images/ad. (easylistchina.txt: 10105) .95599.cn/.*/images/ad\. -# @@||8591.com.tw^*/buyAd.css (easylistchina+easylist.txt: 10122) +# @@||8591.com.tw^*/buyAd.css (easylistchina.txt: 10104) .8591.com.tw/.*/buyAd\.css -# @@||7vk.com/detail/shehuipinlun.js (easylistchina+easylist.txt: 10121) +# @@||7vk.com/detail/shehuipinlun.js (easylistchina.txt: 10103) .7vk.com/detail/shehuipinlun\.js -# @@||7s8.net/image/ads/ (easylistchina+easylist.txt: 10120) +# @@||7s8.net/image/ads/ (easylistchina.txt: 10102) .7s8.net/image/ads/ -# @@||77119.com/js/fenxiang.js (easylistchina+easylist.txt: 10119) +# @@||77119.com/js/fenxiang.js (easylistchina.txt: 10101) .77119.com/js/fenxiang\.js -# @@||75.125.41.29:8080/*/ (easylistchina+easylist.txt: 10118) +# @@||75.125.41.29:8080/*/ (easylistchina.txt: 10100) .75.125.41.29:8080/.*/ -# @@||70.86.24.120:8060/*/ (easylistchina+easylist.txt: 10115) +# @@||70.86.24.120:8060/*/ (easylistchina.txt: 10097) .70.86.24.120:8060/.*/ -# @@||61ef.cn/upfiles/gg/ (easylistchina+easylist.txt: 10114) +# @@||61ef.cn/upfiles/gg/ (easylistchina.txt: 10096) .61ef.cn/upfiles/gg/ -# @@||61.164.108.184/tb/*.gif (easylistchina+easylist.txt: 10113) +# @@||61.164.108.184/tb/*.gif (easylistchina.txt: 10095) .61.164.108.184/tb/.*\.gif -# @@||61.164.108.104:4275/*/*.gif (easylistchina+easylist.txt: 10112) +# @@||61.164.108.104:4275/*/*.gif (easylistchina.txt: 10094) .61.164.108.104:4275/.*/.*\.gif -# @@||58cdn.com.cn/tuiguang/center/ (easylistchina+easylist.txt: 10111) +# @@||58cdn.com.cn/tuiguang/center/ (easylistchina.txt: 10092) .58cdn.com.cn/tuiguang/center/ -# @@||58.com/adJump?adType= (easylistchina+easylist.txt: 10109) +# @@||58.com/adJump?adType= (easylistchina.txt: 10090) .58.com/adJump\?adType= -# @@||52zy.com/gg/ (easylistchina+easylist.txt: 10108) +# @@||52zy.com/gg/ (easylistchina.txt: 10089) .52zy.com/gg/ -# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina+easylist.txt: 10107) +# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina.txt: 10088) .52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b\.png -# @@||51img1.com/??*/adsys. (easylistchina+easylist.txt: 10106) +# @@||51img1.com/??*/adsys. (easylistchina.txt: 10087) .51img1.com/\?\?.*/adsys\. -# @@||51hanhua.com/2013/brtxt.js (easylistchina+easylist.txt: 10105) +# @@||51hanhua.com/2013/brtxt.js (easylistchina.txt: 10086) .51hanhua.com/2013/brtxt\.js -# @@||360buyimg.com^*?? (easylistchina+easylist.txt: 10103) +# @@||360buyimg.com^*?? (easylistchina.txt: 10084) .360buyimg.com/.*\?\? -# @@||3399.com/DataTransfer/Advertisement/ (easylistchina+easylist.txt: 10100) +# @@||3399.com/DataTransfer/Advertisement/ (easylistchina.txt: 10081) .3399.com/DataTransfer/Advertisement/ -# @@||33.autohome.com.cn/njs/newget.js (easylistchina+easylist.txt: 10099) +# @@||33.autohome.com.cn/njs/newget.js (easylistchina.txt: 10080) .33.autohome.com.cn/njs/newget\.js -# @@||33.autohome.com.cn/njs/10055.js (easylistchina+easylist.txt: 10098) +# @@||33.autohome.com.cn/njs/10055.js (easylistchina.txt: 10079) .33.autohome.com.cn/njs/10055\.js -# @@||2kandy.com^$generichide (easylistchina+easylist.txt: 10097) +# @@||2kandy.com^$generichide (easylistchina.txt: 10078) .2kandy.com -# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina+easylist.txt: 10096) +# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina.txt: 10077) .2kandy.com/source/plugin/fieah_blockadblock/ -# @@||221.7.250.35/caches/poster_js/21.js (easylistchina+easylist.txt: 10093) +# @@||221.7.250.35/caches/poster_js/21.js (easylistchina.txt: 10076) .221.7.250.35/caches/poster_js/21\.js -# @@||218.65.30.232:88/day_ (easylistchina+easylist.txt: 10092) -.218.65.30.232:88/day_ -# @@||192.168.*/advertising_$stylesheet (easylistchina+easylist.txt: 10091) +# @@||192.168.*/advertising_$stylesheet (easylistchina.txt: 10075) .192.168.*./(.*/)?advertising_ -# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina+easylist.txt: 10089) +# @@||189.cn^$generichide (easylistchina.txt: 10073) +.189.cn +# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina.txt: 10072) .189.cn/activity/adzh2015/js/ad\.js -# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina+easylist.txt: 10088) +# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina.txt: 10071) .17kk.cc/scriptAD/other/new_manhua\.html -# @@||177mh.com/img_v1/bbad.gif (easylistchina+easylist.txt: 10087) +# @@||177mh.com/img_v1/bbad.gif (easylistchina.txt: 10070) .177mh.com/img_v1/bbad\.gif -# @@||17173.com/x/flash800500.js (easylistchina+easylist.txt: 10086) +# @@||17173.com/x/flash800500.js (easylistchina.txt: 10069) .17173.com/x/flash800500\.js -# @@||16888.com/dist/js/?? (easylistchina+easylist.txt: 10085) +# @@||16888.com/dist/js/?? (easylistchina.txt: 10068) .16888.com/dist/js/\?\? -# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina+easylist.txt: 10084) +# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina.txt: 10067) .131js.131.com/home/resouces/js/index_20120420\.js -# @@||123dhang.com/supo/advertisement.js (easylistchina+easylist.txt: 10082) +# @@||123dhang.com/supo/advertisement.js (easylistchina.txt: 10065) .123dhang.com/supo/advertisement\.js -# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina+easylist.txt: 10081) +# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina.txt: 10064) .12306.cn/otn/resources/images/pic/new-ad -# @@||113.com.tw/www/image/index-ad.png (easylistchina+easylist.txt: 10080) +# @@||113.com.tw/www/image/index-ad.png (easylistchina.txt: 10063) .113.com.tw/www/image/index-ad\.png -# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina+easylist.txt: 10079) +# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina.txt: 10062) .107.182.131.103/cache/\?q=/images/.*/ -# @@||10010.com^*/ad/ (easylistchina+easylist.txt: 10076) +# @@||10086.cn^$generichide (easylistchina.txt: 10060) +.10086.cn +# @@||10010.com^*/ad/ (easylistchina.txt: 10059) .10010.com/.*/ad/ -# @@||10010.com^*/ad. (easylistchina+easylist.txt: 10075) +# @@||10010.com^*/ad. (easylistchina.txt: 10058) .10010.com/.*/ad\. -# @@||060s.com/images_ad/*.png (easylistchina+easylist.txt: 10074) +# @@||060s.com/images_ad/*.png (easylistchina.txt: 10057) .060s.com/images_ad/.*\.png -# @@|http://*/gg/*.css (easylistchina+easylist.txt: 10073) +# @@|http://tieba.baidu.com/|$genericblock (easylistchina.txt: 10056) +tieba.baidu.com/$ +# @@|http://*/gg/*.css (easylistchina.txt: 10055) /(.*/)?gg/.*\.css -# @@u-ads.adap.tv*youku.com (easylistchina+easylist.txt: 10067) +# @@u-ads.adap.tv*youku.com (easylistchina.txt: 10049) /.*u-ads\.adap\.tv.*youku\.com .*u-ads.adap.tv*./.*youku\.com .*u-ads.adap.tv*youku.com*. -# @@/ttkdweb/page/js/ad.js (easylistchina+easylist.txt: 10058) +# @@/ttkdweb/page/js/ad.js (easylistchina.txt: 10040) /(.*/)?ttkdweb/page/js/ad\.js -# @@/page/adv.html?advId=$subdocument (easylistchina+easylist.txt: 10049) +# @@/page/adv.html?advId=$subdocument (easylistchina.txt: 10031) /(.*/)?page/adv\.html\?advId= -# @@/dy_44jjss/zytop1.js (easylistchina+easylist.txt: 10036) -/(.*/)?dy_44jjss/zytop1\.js -# @@/dy_44jjss/topbu.js (easylistchina+easylist.txt: 10035) -/(.*/)?dy_44jjss/topbu\.js -# @@/data/attachment/*_300_250_ (easylistchina+easylist.txt: 10034) +# @@/data/attachment/*_300_250_ (easylistchina.txt: 10018) /(.*/)?data/attachment/.*_300_250_ -# @@/cntv_Advertise.js (easylistchina+easylist.txt: 10031) +# @@/cntv_Advertise.js (easylistchina.txt: 10015) /(.*/)?cntv_Advertise\.js -# @@/appledaily/homead/*_ad_logo. (easylistchina+easylist.txt: 10027) +# @@/appledaily/homead/*_ad_logo. (easylistchina.txt: 10011) /(.*/)?appledaily/homead/.*_ad_logo\. -# @@/32666/images/ad (easylistchina+easylist.txt: 9995) +# @@/32666/images/ad (easylistchina.txt: 9980) /(.*/)?32666/images/ad -# @@/2kuai/images/ad (easylistchina+easylist.txt: 9994) +# @@/2kuai/images/ad (easylistchina.txt: 9979) /(.*/)?2kuai/images/ad -# @@.tudouui.com^*&adSourceId= (easylistchina+easylist.txt: 9992) +# @@.tudouui.com^*&adSourceId= (easylistchina.txt: 9977) /.*\.tudouui\.com[^\w%.-].*&adSourceId= .*.tudouui.com/.*&adSourceId= -# @@.s1979.com/ad/ad*.mp4 (easylistchina+easylist.txt: 9991) +# @@.s1979.com/ad/ad*.mp4 (easylistchina.txt: 9976) /.*\.s1979\.com/ad/ad.*\.mp4 .*.s1979.com/ad/ad.*\.mp4 -# @@.jstv.com/c/gg/ (easylistchina+easylist.txt: 9990) +# @@.jstv.com/c/gg/ (easylistchina.txt: 9975) /.*\.jstv\.com/c/gg/ .*.jstv.com/c/gg/ -# @@.cntv.cn/adplayer/ (easylistchina+easylist.txt: 9984) +# @@.cntv.cn/adplayer/ (easylistchina.txt: 9970) /.*\.cntv\.cn/adplayer/ .*.cntv.cn/adplayer/ -# @@.beautifulphoto.net/ads/music (easylistchina+easylist.txt: 9983) +# @@.beautifulphoto.net/ads/music (easylistchina.txt: 9969) /.*\.beautifulphoto\.net/ads/music .*.beautifulphoto.net/ads/music -# @@&adf=dalian_300x250_ (easylistchina+easylist.txt: 9981) +# @@&adf=dalian_300x250_ (easylistchina.txt: 9967) /.*&adf=dalian_300x250_ -# @@||union.bokecc.com/crossdomain.xml (easylistchina+easylist.txt: 24) +# @@||union.bokecc.com/crossdomain.xml (easylistchina.txt: 21) .union.bokecc.com/crossdomain\.xml -# @@||poster.weather.com.cn/p_files/base/$image (easylistchina+easylist.txt: 23) +# @@||poster.weather.com.cn/p_files/base/$image (easylistchina.txt: 20) .poster.weather.com.cn/p_files/base/ -# @@||hichannel.hinet.net^$object-subrequest (easylistchina+easylist.txt: 22) +# @@||hichannel.hinet.net^$object-subrequest (easylistchina.txt: 19) .hichannel.hinet.net -# @@||vse.kz/public/js/jsLoader.js?adkey= (advblock.txt: 7607) -.vse.kz/public/js/jsLoader\.js\?adkey= -# @@||sports.ru^*/adfox.$image,xmlhttprequest (advblock.txt: 7600) -.sports.ru/.*/adfox\. -# @@||smexo.tv^$genericblock,generichide (advblock.txt: 7599) -.smexo.tv -# @@||rutube.ru/dbg/player_stat?$object-subrequest (advblock.txt: 7598) -.rutube.ru/dbg/player_stat\? -# @@||ria.ru^$generichide (advblock.txt: 7597) -.ria.ru -# @@||remoteshaman.com/templates/remotehelp/js/ads.js| (advblock.txt: 7596) -.remoteshaman.com/templates/remotehelp/js/ads\.js$ -# @@||planetaua.net^$generichide (advblock.txt: 7594) -.planetaua.net -# @@||kinomania.kz^$generichide (advblock.txt: 7577) -.kinomania.kz -# @@||fileplaneta.com^$generichide (advblock.txt: 7565) -.fileplaneta.com -# @@||cnews.ru^$generichide (advblock.txt: 7562) -.cnews.ru -# @@||anistar.ru^$generichide (advblock.txt: 7561) -.anistar.ru -# @@||adultmult.tv^$genericblock,generichide (advblock.txt: 7555) -.adultmult.tv -# @@/banner.jpg?ad_height=300&adzone=100&adserver=1&adType=32|$image (advblock.txt: 7533) -/(.*/)?banner\.jpg\?ad_height=300&adzone=100&adserver=1&adType=32$ -# @@||yastatic.net/market-export/*/adv/advert.js| (advblock.txt: 7439) -.yastatic.net/market-export/.*/adv/advert\.js$ -# @@||yandex.st/swf/ad-sdk-module/1_0/info?nc= (advblock.txt: 7438) -.yandex.st/swf/ad-sdk-module/1_0/info\?nc= -# @@||yandex.st/swf/ad-sdk-module/1_0/*/ad-sdk-module.swf?partnerid=139995 (advblock.txt: 7437) -.yandex.st/swf/ad-sdk-module/1_0/.*/ad-sdk-module\.swf\?partnerid=139995 -# @@||yandex.ru/metrika/informer.js (advblock.txt: 7436) -.yandex.ru/metrika/informer\.js -# @@||x-soft.tomsk.ru/dsa/kompstar/jcarousel.js (advblock.txt: 7433) -.x-soft.tomsk.ru/dsa/kompstar/jcarousel\.js -# @@||volnorez.com^*/liveplayer.swf?url= (advblock.txt: 7430) -.volnorez.com/.*/liveplayer\.swf\?url= -# @@||videocore.tv^*/pladform_pitertv.swf|$object-subrequest (advblock.txt: 7425) -.videocore.tv/.*/pladform_pitertv\.swf$ -# @@||videocore.tv/jscript/$script (advblock.txt: 7424) -.videocore.tv/jscript/ -# @@||video.videonow.ru/crossdomain.xml (advblock.txt: 7423) -.video.videonow.ru/crossdomain\.xml -# @@||video.begun.ru/flowplayer_begun_lib.swf| (advblock.txt: 7421) -.video.begun.ru/flowplayer_begun_lib\.swf$ -# @@||video.*.user.madbanner.ru^$object-subrequest (advblock.txt: 7420) -.video.*./.*\.user\.madbanner\.ru[^\w%.-] -.video.*.user.madbanner.ru -# @@||ukrainianiphone.com/baners/r/$~third-party (advblock.txt: 7417) -.ukrainianiphone.com/baners/r/ -# @@||teachvideo.ru/www/delivery/$~third-party (advblock.txt: 7407) -.teachvideo.ru/www/delivery/ -# @@||teachvideo.ru/advert/$~third-party (advblock.txt: 7406) -.teachvideo.ru/advert/ -# @@||statcounter.com/counter/counter.js$~third-party (advblock.txt: 7397) -.statcounter.com/counter/counter\.js -# @@||sims3club.ru/images/bn/$~third-party (advblock.txt: 7392) -.sims3club.ru/images/bn/ -# @@||semrush.com/m/scripts/reports/backlinks.$~third-party (advblock.txt: 7391) -.semrush.com/m/scripts/reports/backlinks\. -# @@||s5o.ru/common/css/teaser.css? (advblock.txt: 7387) -.s5o.ru/common/css/teaser\.css\? -# @@||s.click.aliexpress.com^$popup (advblock.txt: 7386) -.s.click.aliexpress.com -# @@||ruspor.ru^$~third-party (advblock.txt: 7383) -.ruspor.ru -# @@||rublacklist.net/media/*/RKS-banner-$image (advblock.txt: 7381) -.rublacklist.net/media/.*/RKS-banner- -# @@||rostcars.ru/css/advertisement.css$~third-party (advblock.txt: 7378) -.rostcars.ru/css/advertisement\.css -# @@||rock-online.ru/thema/rock/images/baner_$~third-party (advblock.txt: 7376) -.rock-online.ru/thema/rock/images/baner_ -# @@||rf-mods.ru/uploads/banners/ (advblock.txt: 7375) -.rf-mods.ru/uploads/banners/ -# @@||promo.static.gamexp.ru^ (advblock.txt: 7369) -.promo.static.gamexp.ru -# @@||promo.gamble2fun.com^$subdocument (advblock.txt: 7367) -.promo.gamble2fun.com -# @@||prokazan.ru/sites/default/files/imagecache/tizer_$~third-party (advblock.txt: 7366) -.prokazan.ru/sites/default/files/imagecache/tizer_ -# @@||plektan.com/ad/$image (advblock.txt: 7361) -.plektan.com/ad/ -# @@||play.aniland.org^*.swf$object (advblock.txt: 7360) -.play.aniland.org/.*\.swf -# @@||peakdesign.ru^*/300_250_ (advblock.txt: 7354) -.peakdesign.ru/.*/300_250_ -# @@||nude-moon.com/cdn-cgi/pe/bag2?r[]=http%3A%2F%2Fnude-moon. (advblock.txt: 7350) -.nude-moon.com/cdn-cgi/pe/bag2\?r\[\]=http%3A%2F%2Fnude-moon\. -# @@||now.ru/www/delivery/fc.php? (advblock.txt: 7349) -.now.ru/www/delivery/fc\.php\? -# @@||noteru.com/photo/*/tizer/$image (advblock.txt: 7348) -.noteru.com/photo/.*/tizer/ -# @@||myradio24.com/informer.php (advblock.txt: 7343) -.myradio24.com/informer\.php -# @@||myband.info/advert/$~third-party (advblock.txt: 7342) -.myband.info/advert/ -# @@||my.south.rt.ru^$document (advblock.txt: 7341) -.my.south.rt.ru -# @@||mmi.bemobile.ua/lib/lib.js (advblock.txt: 7338) -.mmi.bemobile.ua/lib/lib\.js -# @@||megogo.net^$generichide (advblock.txt: 7336) -.megogo.net -# @@||mediatoday.ru/storage/JWPlayerVideoClickPlugin$object-subrequest (advblock.txt: 7335) -.mediatoday.ru/storage/JWPlayerVideoClickPlugin -# @@||mediatoday.ru/crossdomain.xml| (advblock.txt: 7334) -.mediatoday.ru/crossdomain\.xml$ -# @@||maritimebank.com/All/Images/Banner.gif (advblock.txt: 7331) -.maritimebank.com/All/Images/Banner\.gif -# @@||map.cn.ua/media/*/tur/ (advblock.txt: 7330) -.map.cn.ua/media/.*/tur/ -# @@||mads.su^$~third-party (advblock.txt: 7328) -.mads.su -# @@||liveangarsk.ru/files/k/k-nikita.gif (advblock.txt: 7324) -.liveangarsk.ru/files/k/k-nikita\.gif -# @@||lifenews.ru^$generichide (advblock.txt: 7323) -.lifenews.ru -# @@||kino-dom.org^$generichide (advblock.txt: 7321) -.kino-dom.org -# @@||instreamvideo.ru/storage/InstreamVideoPlugin$object-subrequest (advblock.txt: 7317) -.instreamvideo.ru/storage/InstreamVideoPlugin -# @@||instreamvideo.ru/crossdomain.xml| (advblock.txt: 7316) -.instreamvideo.ru/crossdomain\.xml$ -# @@||iledebeaute.ru^$genericblock,generichide (advblock.txt: 7312) -.iledebeaute.ru -# @@||enaza.ru/assets/img/$image (advblock.txt: 7292) -.enaza.ru/assets/img/ -# @@||efxi.ru/files/banner.gif| (advblock.txt: 7290) -.efxi.ru/files/banner\.gif$ -# @@||darkteam.net/advertisement.js (advblock.txt: 7288) -.darkteam.net/advertisement\.js -# @@||changecopyright.ru/bannersout/ (advblock.txt: 7285) -.changecopyright.ru/bannersout/ -# @@||an.yandex.ru/vcset/139995?*&client_type=flash (advblock.txt: 7266) -.an.yandex.ru/vcset/139995\?.*&client_type=flash -# @@||an.yandex.ru/crossdomain.xml (advblock.txt: 7262) -.an.yandex.ru/crossdomain\.xml -# @@||amazonaws.com/c.swf?path=http (advblock.txt: 7261) -.amazonaws.com/c\.swf\?path=http -# @@||alluregame.ru/Content/*/Advert$~third-party (advblock.txt: 7259) -.alluregame.ru/Content/.*/Advert -# @@||alfabank.ru/*/baner_$~third-party (advblock.txt: 7258) -.alfabank.ru/.*/baner_ -# @@||advertising.yandex.$~third-party (advblock.txt: 7253) -.advertising.yandex.*. -# @@||advert.starlightmedia.ua/ua/index/get-advert (advblock.txt: 7251) -.advert.starlightmedia.ua/ua/index/get-advert -# @@||advert.starlightmedia.ua/crossdomain.xml (advblock.txt: 7250) -.advert.starlightmedia.ua/crossdomain\.xml -# @@||advert.kp.ru^$~object,~third-party (advblock.txt: 7249) -.advert.kp.ru -# @@||adv.ru^$popup (advblock.txt: 7247) -.adv.ru -# @@||adsgame.pro^$~third-party (advblock.txt: 7243) -.adsgame.pro -# @@||ads.tomtel.ru/adjs.$script (advblock.txt: 7240) -.ads.tomtel.ru/adjs\. -# @@||ads.su^$~third-party (advblock.txt: 7239) -.ads.su -# @@||ads.rb.ru/video_banner.php$object-subrequest (advblock.txt: 7238) -.ads.rb.ru/video_banner\.php -# @@||adman.com^$~third-party (advblock.txt: 7226) -.adman.com -# @@||900.md/ads/js/$~third-party (advblock.txt: 7222) -.900.md/ads/js/ -# @@||900.md/ads/images/$~third-party (advblock.txt: 7221) -.900.md/ads/images/ -# @@||7771000.ru/images/*/baners/$~third-party (advblock.txt: 7220) -.7771000.ru/images/.*/baners/ -# @@||2gis.ru^$generichide (advblock.txt: 7219) -.2gis.ru -# @@.soundcloud.com/player.swf?url= (advblock.txt: 7179) -/.*\.soundcloud\.com/player\.swf\?url= -.*.soundcloud.com/player\.swf\?url= -# @@||adsvk.com/scripts/advertise_$~third-party (advblock.txt: 6972) -.adsvk.com/scripts/advertise_ -# @@||adsvk.com/images/advertising/$~third-party (advblock.txt: 6971) -.adsvk.com/images/advertising/ -# @@||vk.com/ads*.php?__query=$~third-party (advblock.txt: 6967) -.vk.com/ads.*\.php\?__query= -# @@||wowroad.info^$third-party,script (advblock.txt: 697) -.wowroad.info -# @@||wikiroutes.info^$third-party,script (advblock.txt: 696) -.wikiroutes.info -# @@||stells.info^$third-party,script (advblock.txt: 695) -.stells.info -# @@||static.kinoafisha.info^$third-party,script (advblock.txt: 694) -.static.kinoafisha.info -# @@||oplata.info^$third-party,script (advblock.txt: 693) -.oplata.info -# @@||nyan.pw^$third-party,script (advblock.txt: 692) -.nyan.pw -# @@||kuda-edu.info^$third-party,script (advblock.txt: 690) -.kuda-edu.info -# @@||infoclub.info^$third-party,script (advblock.txt: 689) -.infoclub.info -# @@||gowebinar.info^$third-party,script (advblock.txt: 688) -.gowebinar.info -# @@||ctpe.info^$third-party,script (advblock.txt: 687) -.ctpe.info -# @@||blockchain.info^$third-party,script (advblock.txt: 686) -.blockchain.info -# @@||bitrix.info^$third-party,script (advblock.txt: 685) -.bitrix.info -# @@||bdodb.info^$third-party,script (advblock.txt: 684) -.bdodb.info -# @@||autogespot.info^$third-party,script (advblock.txt: 681) -.autogespot.info -# @@||imagebam.com/image/$popup (easylist.txt: 51309) -.imagebam.com/image/ -# @@||ads.b10f.jp/flv/$~third-party (easylist.txt: 51302) -.ads.b10f.jp/flv/ -# @@||youfreeporntube.com^$generichide (easylist.txt: 51299) -.youfreeporntube.com -# @@||xibitnet.com/check/advertisements.js (easylist.txt: 51297) -.xibitnet.com/check/advertisements\.js -# @@||xibitnet.com/check/advertisement.js (easylist.txt: 51296) -.xibitnet.com/check/advertisement\.js -# @@||tube8.com/js/advertisement.js (easylist.txt: 51295) -.tube8.com/js/advertisement\.js -# @@||trafficjunky.net/js/ad*.js (easylist.txt: 51294) -.trafficjunky.net/js/ad.*\.js -# @@||submityourflicks.com/player/player-ads.swf$object (easylist.txt: 51290) -.submityourflicks.com/player/player-ads\.swf -# @@||sexvidx.tv/js/eroex.js (easylist.txt: 51289) -.sexvidx.tv/js/eroex\.js -# @@||pornfun.com/js/ads.js (easylist.txt: 51285) -.pornfun.com/js/ads\.js -# @@||porndoo.com/showads.js (easylist.txt: 51284) -.porndoo.com/showads\.js -# @@||phncdn.com^*/fuckadblock.js (easylist.txt: 51282) -.phncdn.com/.*/fuckadblock\.js -# @@||phncdn.com^*/ads.js (easylist.txt: 51281) -.phncdn.com/.*/ads\.js -# @@||phncdn.com/js/advertisement.js (easylist.txt: 51279) -.phncdn.com/js/advertisement\.js -# @@||openload.io/Ads.png (easylist.txt: 51277) -.openload.io/Ads\.png -# @@||ooporn.com/ads.js (easylist.txt: 51276) -.ooporn.com/ads\.js -# @@||nightchan.com/advertisement.js (easylist.txt: 51275) -.nightchan.com/advertisement\.js -# @@||n4mo.org/wp-content/*/ads/ (easylist.txt: 51273) -.n4mo.org/wp-content/.*/ads/ -# @@||mongoporn.com^*/adframe/$subdocument (easylist.txt: 51272) -.mongoporn.com/.*/adframe/ -# @@||jporn4u.com/js/ads.js (easylist.txt: 51269) -.jporn4u.com/js/ads\.js -# @@||javpee.com/eroex.js (easylist.txt: 51266) -.javpee.com/eroex\.js -# @@||javhub.net^$script,~third-party (easylist.txt: 51265) -.javhub.net -# @@||imgadult.com/js/advertisement.js (easylist.txt: 51258) -.imgadult.com/js/advertisement\.js -# @@||hentaimoe.com/js/advertisement.js (easylist.txt: 51257) -.hentaimoe.com/js/advertisement\.js -# @@||hentaihaven.org^*/fuckadblock.js (easylist.txt: 51256) -.hentaihaven.org/.*/fuckadblock\.js -# @@||fuqer.com^*/advertisement.js (easylist.txt: 51251) -.fuqer.com/.*/advertisement\.js -# @@||desihoes.com/advertisement.js (easylist.txt: 51249) -.desihoes.com/advertisement\.js -# @@||adultadworld.com/adhandler/$subdocument (easylist.txt: 51248) -.adultadworld.com/adhandler/ -# @@||ad.thisav.com/player/swfobject.js (easylist.txt: 51247) -.ad.thisav.com/player/swfobject\.js -# @@||25643e662a2.com/ad*.js (easylist.txt: 51246) -.25643e662a2.com/ad.*\.js -# @@||209.58.131.22^*/advertisement.js (easylist.txt: 51245) -.209.58.131.22/.*/advertisement\.js -# @@||1986a44b12e.com/googlead.js (easylist.txt: 51244) -.1986a44b12e.com/googlead\.js -# @@||1986a44b12e.com/Ad*.js (easylist.txt: 51243) -.1986a44b12e.com/Ad.*\.js -# @@||youporngay.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51239) -.youporngay.com/_Incapsula_Resource\? -# @@||youporn.com/watch_postroll/$xmlhttprequest (easylist.txt: 51237) -.youporn.com/watch_postroll/ -# @@||youporn.com/watch/$xmlhttprequest (easylist.txt: 51236) -.youporn.com/watch/ -# @@||youporn.com/subscriptions/$xmlhttprequest (easylist.txt: 51235) -.youporn.com/subscriptions/ -# @@||youporn.com/searchapi/$xmlhttprequest (easylist.txt: 51234) -.youporn.com/searchapi/ -# @@||youporn.com/notifications/$xmlhttprequest (easylist.txt: 51233) -.youporn.com/notifications/ -# @@||youporn.com/mycollections.json$xmlhttprequest (easylist.txt: 51232) -.youporn.com/mycollections\.json -# @@||youporn.com/esi_home/$xmlhttprequest (easylist.txt: 51231) -.youporn.com/esi_home/ -# @@||youporn.com/change/$xmlhttprequest (easylist.txt: 51230) -.youporn.com/change/ -# @@||youporn.com/ajax/$xmlhttprequest (easylist.txt: 51229) -.youporn.com/ajax/ -# @@||youporn.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51228) -.youporn.com/_Incapsula_Resource\? -# @@||upload.tube8.com^$script,xmlhttprequest (easylist.txt: 51225) -.upload.tube8.com -# @@||tube8.fr/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51224) -.tube8.fr/_Incapsula_Resource\? -# @@||tube8.es/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51223) -.tube8.es/_Incapsula_Resource\? -# @@||tube8.com/images/$image (easylist.txt: 51222) -.tube8.com/images/ -# @@||tube8.com/favicon.ico (easylist.txt: 51221) -.tube8.com/favicon\.ico -# @@||tube8.com/embed/$subdocument,~third-party (easylist.txt: 51220) -.tube8.com/embed/ -# @@||tube8.com/ajax2/$xmlhttprequest (easylist.txt: 51219) -.tube8.com/ajax2/ -# @@||tube8.com/ajax/$xmlhttprequest (easylist.txt: 51218) -.tube8.com/ajax/ -# @@||tube8.com/ajax-$xmlhttprequest (easylist.txt: 51217) -.tube8.com/ajax- -# @@||tube8.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51216) -.tube8.com/_Incapsula_Resource\? -# @@||redtube.com/watched/$xmlhttprequest (easylist.txt: 51211) -.redtube.com/watched/ -# @@||redtube.com/videodetails/$xmlhttprequest (easylist.txt: 51210) -.redtube.com/videodetails/ -# @@||redtube.com/upload/$xmlhttprequest (easylist.txt: 51209) -.redtube.com/upload/ -# @@||redtube.com/tags-stars/$xmlhttprequest (easylist.txt: 51208) -.redtube.com/tags-stars/ -# @@||redtube.com/tags-stars$xmlhttprequest (easylist.txt: 51207) -.redtube.com/tags-stars -# @@||redtube.com/subscribe/$xmlhttprequest (easylist.txt: 51206) -.redtube.com/subscribe/ -# @@||redtube.com/starsuggestion/$xmlhttprequest (easylist.txt: 51205) -.redtube.com/starsuggestion/ -# @@||redtube.com/searchsuggest?$xmlhttprequest (easylist.txt: 51204) -.redtube.com/searchsuggest\? -# @@||redtube.com/relatedvideos/$xmlhttprequest (easylist.txt: 51203) -.redtube.com/relatedvideos/ -# @@||redtube.com/recommended/$xmlhttprequest (easylist.txt: 51202) -.redtube.com/recommended/ -# @@||redtube.com/rate$xmlhttprequest (easylist.txt: 51201) -.redtube.com/rate -# @@||redtube.com/panel/$xmlhttprequest (easylist.txt: 51200) -.redtube.com/panel/ -# @@||redtube.com/notifications/$xmlhttprequest (easylist.txt: 51199) -.redtube.com/notifications/ -# @@||redtube.com/message/$xmlhttprequest (easylist.txt: 51198) -.redtube.com/message/ -# @@||redtube.com/logout$xmlhttprequest (easylist.txt: 51197) -.redtube.com/logout -# @@||redtube.com/language-star-suggestion/$xmlhttprequest (easylist.txt: 51196) -.redtube.com/language-star-suggestion/ -# @@||redtube.com/js/jquery/$xmlhttprequest (easylist.txt: 51195) -.redtube.com/js/jquery/ -# @@||redtube.com/htmllogin| (easylist.txt: 51194) -.redtube.com/htmllogin$ -# @@||redtube.com/gallery/$xmlhttprequest (easylist.txt: 51193) -.redtube.com/gallery/ -# @@||redtube.com/embed/$xmlhttprequest (easylist.txt: 51192) -.redtube.com/embed/ -# @@||redtube.com/comments/$xmlhttprequest (easylist.txt: 51191) -.redtube.com/comments/ -# @@||redtube.com/blockuser/$xmlhttprequest (easylist.txt: 51190) -.redtube.com/blockuser/ -# @@||redtube.com/bid/$subdocument (easylist.txt: 51189) -.redtube.com/bid/ -# @@||redtube.com/advancedsearch$xmlhttprequest (easylist.txt: 51188) -.redtube.com/advancedsearch -# @@||redtube.com/addfriend/$xmlhttprequest (easylist.txt: 51187) -.redtube.com/addfriend/ -# @@||redtube.com/addfavorite/$xmlhttprequest (easylist.txt: 51186) -.redtube.com/addfavorite/ -# @@||redtube.com/_thumbs/$image (easylist.txt: 51185) -.redtube.com/_thumbs/ -# @@||redtube.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51184) -.redtube.com/_Incapsula_Resource\? -# @@||redtube.com.br/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51183) -.redtube.com.br/_Incapsula_Resource\? -# @@||pornhubcommunity.com/cdn_files/images/$image (easylist.txt: 51182) -.pornhubcommunity.com/cdn_files/images/ -# @@||pornhub.com/videouploading3/$xmlhttprequest (easylist.txt: 51180) -.pornhub.com/videouploading3/ -# @@||pornhub.com/video/$xmlhttprequest (easylist.txt: 51179) -.pornhub.com/video/ -# @@||pornhub.com/users/$xmlhttprequest (easylist.txt: 51178) -.pornhub.com/users/ -# @@||pornhub.com/user/$xmlhttprequest (easylist.txt: 51177) -.pornhub.com/user/ -# @@||pornhub.com/uploading/$xmlhttprequest (easylist.txt: 51176) -.pornhub.com/uploading/ -# @@||pornhub.com/upload/$xmlhttprequest (easylist.txt: 51175) -.pornhub.com/upload/ -# @@||pornhub.com/svvt/add?$xmlhttprequest (easylist.txt: 51174) -.pornhub.com/svvt/add\? -# @@||pornhub.com/stream/$xmlhttprequest (easylist.txt: 51173) -.pornhub.com/stream/ -# @@||pornhub.com/premium/$xmlhttprequest (easylist.txt: 51172) -.pornhub.com/premium/ -# @@||pornhub.com/pornstars/$xmlhttprequest (easylist.txt: 51171) -.pornhub.com/pornstars/ -# @@||pornhub.com/pornstar/$xmlhttprequest (easylist.txt: 51170) -.pornhub.com/pornstar/ -# @@||pornhub.com/playlist_json/$xmlhttprequest (easylist.txt: 51169) -.pornhub.com/playlist_json/ -# @@||pornhub.com/oauth2/authorize?$popup (easylist.txt: 51168) -.pornhub.com/oauth2/authorize\? -# @@||pornhub.com/insights/$image,xmlhttprequest (easylist.txt: 51167) -.pornhub.com/insights/ -# @@||pornhub.com/gif/$xmlhttprequest (easylist.txt: 51166) -.pornhub.com/gif/ -# @@||pornhub.com/front/$xmlhttprequest (easylist.txt: 51165) -.pornhub.com/front/ -# @@||pornhub.com/comment/$xmlhttprequest (easylist.txt: 51164) -.pornhub.com/comment/ -# @@||pornhub.com/chat/$xmlhttprequest (easylist.txt: 51163) -.pornhub.com/chat/ -# @@||pornhub.com/channel/$xmlhttprequest (easylist.txt: 51162) -.pornhub.com/channel/ -# @@||pornhub.com/album_upload$xmlhttprequest (easylist.txt: 51161) -.pornhub.com/album_upload -# @@||pornhub.com/album/$xmlhttprequest (easylist.txt: 51160) -.pornhub.com/album/ -# @@||pornhub.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51159) -.pornhub.com/_Incapsula_Resource\? -# @@||phncdn.com^*/html5Uploader/$script (easylist.txt: 51156) -.phncdn.com/.*/html5Uploader/ -# @@||phncdn.com/zeroclipboard-$script (easylist.txt: 51155) -.phncdn.com/zeroclipboard- -# @@||phncdn.com/www-static/js/vtablet/video/$script (easylist.txt: 51154) -.phncdn.com/www-static/js/vtablet/video/ -# @@||phncdn.com/www-static/js/vtablet/template-$script (easylist.txt: 51153) -.phncdn.com/www-static/js/vtablet/template- -# @@||phncdn.com/www-static/js/vtablet/pcFunctions.js$script (easylist.txt: 51152) -.phncdn.com/www-static/js/vtablet/pcFunctions\.js -# @@||phncdn.com/www-static/js/vtablet/main.js$script (easylist.txt: 51151) -.phncdn.com/www-static/js/vtablet/main\.js -# @@||phncdn.com/www-static/js/vtablet/legacy.js$script (easylist.txt: 51150) -.phncdn.com/www-static/js/vtablet/legacy\.js -# @@||phncdn.com/www-static/js/vtablet/iscroll-lite.$script (easylist.txt: 51149) -.phncdn.com/www-static/js/vtablet/iscroll-lite\. -# @@||phncdn.com/www-static/js/vtablet/hammer.min.js$script (easylist.txt: 51148) -.phncdn.com/www-static/js/vtablet/hammer\.min\.js -# @@||phncdn.com/www-static/js/vtablet/front/$script (easylist.txt: 51147) -.phncdn.com/www-static/js/vtablet/front/ -# @@||phncdn.com/www-static/js/vtablet/fakeworker-$script (easylist.txt: 51146) -.phncdn.com/www-static/js/vtablet/fakeworker- -# @@||phncdn.com/www-static/js/vmobile/widget-$script (easylist.txt: 51145) -.phncdn.com/www-static/js/vmobile/widget- -# @@||phncdn.com/www-static/js/vmobile/video-search.js$script (easylist.txt: 51144) -.phncdn.com/www-static/js/vmobile/video-search\.js -# @@||phncdn.com/www-static/js/vmobile/utils.js$script (easylist.txt: 51143) -.phncdn.com/www-static/js/vmobile/utils\.js -# @@||phncdn.com/www-static/js/vmobile/stream.js$script (easylist.txt: 51142) -.phncdn.com/www-static/js/vmobile/stream\.js -# @@||phncdn.com/www-static/js/vmobile/stream-$script (easylist.txt: 51141) -.phncdn.com/www-static/js/vmobile/stream- -# @@||phncdn.com/www-static/js/vmobile/show.js$script (easylist.txt: 51140) -.phncdn.com/www-static/js/vmobile/show\.js -# @@||phncdn.com/www-static/js/vmobile/profile.js$script (easylist.txt: 51139) -.phncdn.com/www-static/js/vmobile/profile\.js -# @@||phncdn.com/www-static/js/vmobile/preHeadJs.$script (easylist.txt: 51138) -.phncdn.com/www-static/js/vmobile/preHeadJs\. -# @@||phncdn.com/www-static/js/vmobile/phub.js$script (easylist.txt: 51137) -.phncdn.com/www-static/js/vmobile/phub\.js -# @@||phncdn.com/www-static/js/vmobile/photo.js$script (easylist.txt: 51136) -.phncdn.com/www-static/js/vmobile/photo\.js -# @@||phncdn.com/www-static/js/vmobile/notifications.js$script (easylist.txt: 51135) -.phncdn.com/www-static/js/vmobile/notifications\.js -# @@||phncdn.com/www-static/js/vmobile/login.js$script (easylist.txt: 51134) -.phncdn.com/www-static/js/vmobile/login\.js -# @@||phncdn.com/www-static/js/vmobile/html5-canvas.js$script (easylist.txt: 51133) -.phncdn.com/www-static/js/vmobile/html5-canvas\.js -# @@||phncdn.com/www-static/js/vmobile/head.js$script (easylist.txt: 51132) -.phncdn.com/www-static/js/vmobile/head\.js -# @@||phncdn.com/www-static/js/vmobile/footer.js$script (easylist.txt: 51131) -.phncdn.com/www-static/js/vmobile/footer\.js -# @@||phncdn.com/www-static/js/vmobile/feed-comments.js$script (easylist.txt: 51130) -.phncdn.com/www-static/js/vmobile/feed-comments\.js -# @@||phncdn.com/www-static/js/vmobile/comments.js$script (easylist.txt: 51129) -.phncdn.com/www-static/js/vmobile/comments\.js -# @@||phncdn.com/www-static/js/vmobile/autocomplete-$script (easylist.txt: 51128) -.phncdn.com/www-static/js/vmobile/autocomplete- -# @@||phncdn.com/www-static/js/vmobile/application.js$script (easylist.txt: 51127) -.phncdn.com/www-static/js/vmobile/application\.js -# @@||phncdn.com/www-static/js/vmobile/album.js$script (easylist.txt: 51126) -.phncdn.com/www-static/js/vmobile/album\.js -# @@||phncdn.com/www-static/js/video-$script (easylist.txt: 51125) -.phncdn.com/www-static/js/video- -# @@||phncdn.com/www-static/js/tag-$script (easylist.txt: 51124) -.phncdn.com/www-static/js/tag- -# @@||phncdn.com/www-static/js/suggest-$script (easylist.txt: 51123) -.phncdn.com/www-static/js/suggest- -# @@||phncdn.com/www-static/js/signin.js$script (easylist.txt: 51122) -.phncdn.com/www-static/js/signin\.js -# @@||phncdn.com/www-static/js/show_image.js?$script (easylist.txt: 51121) -.phncdn.com/www-static/js/show_image\.js\? -# @@||phncdn.com/www-static/js/quality-$script (easylist.txt: 51120) -.phncdn.com/www-static/js/quality- -# @@||phncdn.com/www-static/js/promo-banner.js$script (easylist.txt: 51119) -.phncdn.com/www-static/js/promo-banner\.js -# @@||phncdn.com/www-static/js/profile/$script (easylist.txt: 51118) -.phncdn.com/www-static/js/profile/ -# @@||phncdn.com/www-static/js/premium/$script (easylist.txt: 51117) -.phncdn.com/www-static/js/premium/ -# @@||phncdn.com/www-static/js/pornstars.js?$script (easylist.txt: 51116) -.phncdn.com/www-static/js/pornstars\.js\? -# @@||phncdn.com/www-static/js/playlist/$script (easylist.txt: 51115) -.phncdn.com/www-static/js/playlist/ -# @@||phncdn.com/www-static/js/phub.$script (easylist.txt: 51114) -.phncdn.com/www-static/js/phub\. -# @@||phncdn.com/www-static/js/ph-networkbar.js$script (easylist.txt: 51113) -.phncdn.com/www-static/js/ph-networkbar\.js -# @@||phncdn.com/www-static/js/ph-footer.js$script (easylist.txt: 51112) -.phncdn.com/www-static/js/ph-footer\.js -# @@||phncdn.com/www-static/js/mg_flipbook-$script (easylist.txt: 51111) -.phncdn.com/www-static/js/mg_flipbook- -# @@||phncdn.com/www-static/js/mg-utils.js$script (easylist.txt: 51110) -.phncdn.com/www-static/js/mg-utils\.js -# @@||phncdn.com/www-static/js/mg-modal.js$script (easylist.txt: 51109) -.phncdn.com/www-static/js/mg-modal\.js -# @@||phncdn.com/www-static/js/lib/$script (easylist.txt: 51108) -.phncdn.com/www-static/js/lib/ -# @@||phncdn.com/www-static/js/html5Player/$script (easylist.txt: 51107) -.phncdn.com/www-static/js/html5Player/ -# @@||phncdn.com/www-static/js/header.js$script (easylist.txt: 51106) -.phncdn.com/www-static/js/header\.js -# @@||phncdn.com/www-static/js/header-menu.js?$script (easylist.txt: 51105) -.phncdn.com/www-static/js/header-menu\.js\? -# @@||phncdn.com/www-static/js/gif-$script (easylist.txt: 51104) -.phncdn.com/www-static/js/gif- -# @@||phncdn.com/www-static/js/front-login.js$script (easylist.txt: 51103) -.phncdn.com/www-static/js/front-login\.js -# @@||phncdn.com/www-static/js/front-index.js?$script (easylist.txt: 51102) -.phncdn.com/www-static/js/front-index\.js\? -# @@||phncdn.com/www-static/js/footer.js$script (easylist.txt: 51101) -.phncdn.com/www-static/js/footer\.js -# @@||phncdn.com/www-static/js/create-account.js?$script (easylist.txt: 51100) -.phncdn.com/www-static/js/create-account\.js\? -# @@||phncdn.com/www-static/*/widgets-$script (easylist.txt: 51099) -.phncdn.com/www-static/.*/widgets- -# @@||phncdn.com/www-static/*/jquery.$script (easylist.txt: 51098) -.phncdn.com/www-static/.*/jquery\. -# @@||phncdn.com/www-static/*/gif-view.js$script (easylist.txt: 51097) -.phncdn.com/www-static/.*/gif-view\.js -# @@||phncdn.com/www-static/*/gif-view-functions.js$script (easylist.txt: 51096) -.phncdn.com/www-static/.*/gif-view-functions\.js -# @@||phncdn.com/www-static/*/autocomplete.$script (easylist.txt: 51095) -.phncdn.com/www-static/.*/autocomplete\. -# @@||phncdn.com/underscore-$script (easylist.txt: 51094) -.phncdn.com/underscore- -# @@||phncdn.com/tubes-$script (easylist.txt: 51093) -.phncdn.com/tubes- -# @@||phncdn.com/timings-$script (easylist.txt: 51092) -.phncdn.com/timings- -# @@||phncdn.com/swfobject-$script (easylist.txt: 51091) -.phncdn.com/swfobject- -# @@||phncdn.com/pagespeed.js$script (easylist.txt: 51090) -.phncdn.com/pagespeed\.js -# @@||phncdn.com/networkbar-$script (easylist.txt: 51089) -.phncdn.com/networkbar- -# @@||phncdn.com/modernizr-$script (easylist.txt: 51088) -.phncdn.com/modernizr- -# @@||phncdn.com/js/xp_bubble/$script (easylist.txt: 51087) -.phncdn.com/js/xp_bubble/ -# @@||phncdn.com/js/votingSystem/$script (easylist.txt: 51086) -.phncdn.com/js/votingSystem/ -# @@||phncdn.com/js/videos_setUp-min.js?$script (easylist.txt: 51085) -.phncdn.com/js/videos_setUp-min\.js\? -# @@||phncdn.com/js/videoPlayer/$script (easylist.txt: 51084) -.phncdn.com/js/videoPlayer/ -# @@||phncdn.com/js/videoDetection.js?$script (easylist.txt: 51083) -.phncdn.com/js/videoDetection\.js\? -# @@||phncdn.com/js/video_setUp_tablet-min.js$script (easylist.txt: 51082) -.phncdn.com/js/video_setUp_tablet-min\.js -# @@||phncdn.com/js/video_setUp-min.js$script (easylist.txt: 51081) -.phncdn.com/js/video_setUp-min\.js -# @@||phncdn.com/js/userVideos_setUp-min.js?$script (easylist.txt: 51080) -.phncdn.com/js/userVideos_setUp-min\.js\? -# @@||phncdn.com/js/userSettings_setUp-min.js?$script (easylist.txt: 51079) -.phncdn.com/js/userSettings_setUp-min\.js\? -# @@||phncdn.com/js/userMiniProfile/$script (easylist.txt: 51078) -.phncdn.com/js/userMiniProfile/ -# @@||phncdn.com/js/userInc-min.js$script (easylist.txt: 51077) -.phncdn.com/js/userInc-min\.js -# @@||phncdn.com/js/userFollowing_setUp-min.js?$script (easylist.txt: 51076) -.phncdn.com/js/userFollowing_setUp-min\.js\? -# @@||phncdn.com/js/userFollowers_setUp-min.js?$script (easylist.txt: 51075) -.phncdn.com/js/userFollowers_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites_setUp-min.js?$script (easylist.txt: 51074) -.phncdn.com/js/userFavorites_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites-$script (easylist.txt: 51073) -.phncdn.com/js/userFavorites- -# @@||phncdn.com/js/userDashboard_setUp-min.js?$script (easylist.txt: 51072) -.phncdn.com/js/userDashboard_setUp-min\.js\? -# @@||phncdn.com/js/userComments_setUp-min.js?$script (easylist.txt: 51071) -.phncdn.com/js/userComments_setUp-min\.js\? -# @@||phncdn.com/js/userComments-min.js$script (easylist.txt: 51070) -.phncdn.com/js/userComments-min\.js -# @@||phncdn.com/js/userAchievements_setUp-min.js?$script (easylist.txt: 51069) -.phncdn.com/js/userAchievements_setUp-min\.js\? -# @@||phncdn.com/js/user_post_comment_form/$script (easylist.txt: 51068) -.phncdn.com/js/user_post_comment_form/ -# @@||phncdn.com/js/user_favorites/$script (easylist.txt: 51067) -.phncdn.com/js/user_favorites/ -# @@||phncdn.com/js/user_dashboard/$script (easylist.txt: 51066) -.phncdn.com/js/user_dashboard/ -# @@||phncdn.com/js/user_comments/$script (easylist.txt: 51065) -.phncdn.com/js/user_comments/ -# @@||phncdn.com/js/uploaded_video_thumbnail_select/$script (easylist.txt: 51064) -.phncdn.com/js/uploaded_video_thumbnail_select/ -# @@||phncdn.com/js/underPlayer/$script (easylist.txt: 51063) -.phncdn.com/js/underPlayer/ -# @@||phncdn.com/js/translatorWatchPageController-min.js$script (easylist.txt: 51062) -.phncdn.com/js/translatorWatchPageController-min\.js -# @@||phncdn.com/js/translator/$script (easylist.txt: 51061) -.phncdn.com/js/translator/ -# @@||phncdn.com/js/translator-min.js$script (easylist.txt: 51060) -.phncdn.com/js/translator-min\.js -# @@||phncdn.com/js/tagStar/$script (easylist.txt: 51059) -.phncdn.com/js/tagStar/ -# @@||phncdn.com/js/site-main.$script (easylist.txt: 51058) -.phncdn.com/js/site-main\. -# @@||phncdn.com/js/signin-min.js$script (easylist.txt: 51057) -.phncdn.com/js/signin-min\.js -# @@||phncdn.com/js/showMenu/$script (easylist.txt: 51056) -.phncdn.com/js/showMenu/ -# @@||phncdn.com/js/share_video_block/$script (easylist.txt: 51055) -.phncdn.com/js/share_video_block/ -# @@||phncdn.com/js/segment_changer/$script (easylist.txt: 51054) -.phncdn.com/js/segment_changer/ -# @@||phncdn.com/js/searchbar_show/$script (easylist.txt: 51053) -.phncdn.com/js/searchbar_show/ -# @@||phncdn.com/js/searchbar/$script (easylist.txt: 51052) -.phncdn.com/js/searchbar/ -# @@||phncdn.com/js/search_setUp-min.js$script (easylist.txt: 51051) -.phncdn.com/js/search_setUp-min\.js -# @@||phncdn.com/js/report_video_form/$script (easylist.txt: 51050) -.phncdn.com/js/report_video_form/ -# @@||phncdn.com/js/relatedVideos/$script (easylist.txt: 51049) -.phncdn.com/js/relatedVideos/ -# @@||phncdn.com/js/popUnder/exclusions-min.js$script (easylist.txt: 51048) -.phncdn.com/js/popUnder/exclusions-min\.js -# @@||phncdn.com/js/ourfriends-min.js$script (easylist.txt: 51047) -.phncdn.com/js/ourfriends-min\.js -# @@||phncdn.com/js/nextBtn/$script (easylist.txt: 51046) -.phncdn.com/js/nextBtn/ -# @@||phncdn.com/js/needLogin/$script (easylist.txt: 51045) -.phncdn.com/js/needLogin/ -# @@||phncdn.com/js/mg_modal/$script (easylist.txt: 51044) -.phncdn.com/js/mg_modal/ -# @@||phncdn.com/js/menu_setUp_tablet-min.js$script (easylist.txt: 51043) -.phncdn.com/js/menu_setUp_tablet-min\.js -# @@||phncdn.com/js/m_tubes/MG_autocomplete.js$script (easylist.txt: 51042) -.phncdn.com/js/m_tubes/MG_autocomplete\.js -# @@||phncdn.com/js/login_form/$script (easylist.txt: 51041) -.phncdn.com/js/login_form/ -# @@||phncdn.com/js/libs/ProfileCommentsAction-min.js$script (easylist.txt: 51040) -.phncdn.com/js/libs/ProfileCommentsAction-min\.js -# @@||phncdn.com/js/levelUp/$script (easylist.txt: 51039) -.phncdn.com/js/levelUp/ -# @@||phncdn.com/js/language_$script (easylist.txt: 51038) -.phncdn.com/js/language_ -# @@||phncdn.com/js/karmaInfo/$script (easylist.txt: 51037) -.phncdn.com/js/karmaInfo/ -# @@||phncdn.com/js/jquery.$script (easylist.txt: 51036) -.phncdn.com/js/jquery\. -# @@||phncdn.com/js/jqbrowser-compressed.js$script (easylist.txt: 51035) -.phncdn.com/js/jqbrowser-compressed\.js -# @@||phncdn.com/js/is_online/$script (easylist.txt: 51034) -.phncdn.com/js/is_online/ -# @@||phncdn.com/js/ipad/$script (easylist.txt: 51033) -.phncdn.com/js/ipad/ -# @@||phncdn.com/js/infinite.$script (easylist.txt: 51032) -.phncdn.com/js/infinite\. -# @@||phncdn.com/js/html5player.js?$script (easylist.txt: 51031) -.phncdn.com/js/html5player\.js\? -# @@||phncdn.com/js/home_setUp_tablet-min.js$script (easylist.txt: 51030) -.phncdn.com/js/home_setUp_tablet-min\.js -# @@||phncdn.com/js/home_setUp-min.js$script (easylist.txt: 51029) -.phncdn.com/js/home_setUp-min\.js -# @@||phncdn.com/js/general_tablet-min.js$script (easylist.txt: 51028) -.phncdn.com/js/general_tablet-min\.js -# @@||phncdn.com/js/general-min.js$script (easylist.txt: 51027) -.phncdn.com/js/general-min\.js -# @@||phncdn.com/js/follow_button/$script (easylist.txt: 51026) -.phncdn.com/js/follow_button/ -# @@||phncdn.com/js/flipbook/$script (easylist.txt: 51025) -.phncdn.com/js/flipbook/ -# @@||phncdn.com/js/filters_menu/$script (easylist.txt: 51024) -.phncdn.com/js/filters_menu/ -# @@||phncdn.com/js/fav_like_user_feed/$script (easylist.txt: 51023) -.phncdn.com/js/fav_like_user_feed/ -# @@||phncdn.com/js/et.ready.$script (easylist.txt: 51022) -.phncdn.com/js/et\.ready\. -# @@||phncdn.com/js/editUserDropDown/$script (easylist.txt: 51021) -.phncdn.com/js/editUserDropDown/ -# @@||phncdn.com/js/deleteVideo/$script (easylist.txt: 51020) -.phncdn.com/js/deleteVideo/ -# @@||phncdn.com/js/deleteComment/$script (easylist.txt: 51019) -.phncdn.com/js/deleteComment/ -# @@||phncdn.com/js/cover_tutorial/$script (easylist.txt: 51018) -.phncdn.com/js/cover_tutorial/ -# @@||phncdn.com/js/common_jq-min.js$script (easylist.txt: 51017) -.phncdn.com/js/common_jq-min\.js -# @@||phncdn.com/js/comments/$script (easylist.txt: 51016) -.phncdn.com/js/comments/ -# @@||phncdn.com/js/categorylist_setUp-min.js?$script (easylist.txt: 51015) -.phncdn.com/js/categorylist_setUp-min\.js\? -# @@||phncdn.com/js/carousellite.$script (easylist.txt: 51014) -.phncdn.com/js/carousellite\. -# @@||phncdn.com/js/browser-$script (easylist.txt: 51013) -.phncdn.com/js/browser- -# @@||phncdn.com/js/badgeSelector/$script (easylist.txt: 51012) -.phncdn.com/js/badgeSelector/ -# @@||phncdn.com/js/avatar_$script (easylist.txt: 51011) -.phncdn.com/js/avatar_ -# @@||phncdn.com/js/ad_form_header/ad_form_header-min.js?$script (easylist.txt: 51010) -.phncdn.com/js/ad_form_header/ad_form_header-min\.js\? -# @@||phncdn.com/js/achievement-$script (easylist.txt: 51009) -.phncdn.com/js/achievement- -# @@||phncdn.com/js/*_disclaimer/*_disclaimer_controller-min.js?$script (easylist.txt: 51008) -.phncdn.com/js/.*_disclaimer/.*_disclaimer_controller-min\.js\? -# @@||phncdn.com/js/*_disclaimer/*_disclaimer-min.js?$script (easylist.txt: 51007) -.phncdn.com/js/.*_disclaimer/.*_disclaimer-min\.js\? -# @@||phncdn.com/jquery/$script (easylist.txt: 51006) -.phncdn.com/jquery/ -# @@||phncdn.com/jquery-$script (easylist.txt: 51005) -.phncdn.com/jquery- -# @@||phncdn.com/html5shiv-$script (easylist.txt: 51004) -.phncdn.com/html5shiv- -# @@||phncdn.com/html5player/$script (easylist.txt: 51003) -.phncdn.com/html5player/ -# @@||phncdn.com/head/$script (easylist.txt: 51002) -.phncdn.com/head/ -# @@||phncdn.com/cb/bundles/$script (easylist.txt: 51001) -.phncdn.com/cb/bundles/ -# @@||phncdn.com/cb/assets/$script (easylist.txt: 51000) -.phncdn.com/cb/assets/ -# @@||google.com/recaptcha/$image (easylist.txt: 50997) -.google.com/recaptcha/ -# @@||blog.tube8.com/wp-content/$image,script (easylist.txt: 50991) -.blog.tube8.com/wp-content/ -# @@||xxxporntalk.com/images/xxxpt-chrome.jpg (easylist.txt: 50985) -.xxxporntalk.com/images/xxxpt-chrome\.jpg -# @@||xhcdn.com/images/flag/AD.gif (easylist.txt: 50984) -.xhcdn.com/images/flag/AD\.gif -# @@||tracking.hornymatches.com/track?type=unsubscribe&enid=$subdocument,third-party (easylist.txt: 50981) -.tracking.hornymatches.com/track\?type=unsubscribe&enid= -# @@||tnaflix.com/ad/$object-subrequest (easylist.txt: 50980) -.tnaflix.com/ad/ -# @@||tjoob.com/go.php?ad=$script,~third-party (easylist.txt: 50979) -.tjoob.com/go\.php\?ad= -# @@||sundaysportclassifieds.co.uk/ads/$image,~third-party (easylist.txt: 50976) -.sundaysportclassifieds.co.uk/ads/ -# @@||store.adam4adam.com/images/affbanners/$~third-party (easylist.txt: 50975) -.store.adam4adam.com/images/affbanners/ -# @@||store.adam4adam.com/affimages/$~third-party (easylist.txt: 50974) -.store.adam4adam.com/affimages/ -# @@||starcelebs.com/logos/logo10.jpg (easylist.txt: 50973) -.starcelebs.com/logos/logo10\.jpg -# @@||skimtube.com/advertisements.php? (easylist.txt: 50972) -.skimtube.com/advertisements\.php\? -# @@||sextoyfun.com/control/aff_banners/$~third-party (easylist.txt: 50971) -.sextoyfun.com/control/aff_banners/ -# @@||sextoyfun.com/admin/aff_files/BannerManager/$~third-party (easylist.txt: 50970) -.sextoyfun.com/admin/aff_files/BannerManager/ -# @@||pornteengirl.com/temporaire/image.php?*/virtuagirl/$image (easylist.txt: 50968) -.pornteengirl.com/temporaire/image\.php\?.*/virtuagirl/ -# @@||panicporn.com/Bannerads/player/player_flv_multi.swf$object (easylist.txt: 50966) -.panicporn.com/Bannerads/player/player_flv_multi\.swf -# @@||nonktube.com/img/adyea.jpg (easylist.txt: 50965) -.nonktube.com/img/adyea\.jpg -# @@||mrstiff.com/view/textad/$xmlhttprequest (easylist.txt: 50964) -.mrstiff.com/view/textad/ -# @@||manhuntshop.com/images/affbanners/$~third-party (easylist.txt: 50963) -.manhuntshop.com/images/affbanners/ -# @@||manhuntshop.com/affimages/$~third-party (easylist.txt: 50962) -.manhuntshop.com/affimages/ -# @@||kuntfutube.com/go.php?ad= (easylist.txt: 50960) -.kuntfutube.com/go\.php\?ad= -# @@||hostedadsp.realitykings.com/hosted/flash/rk_player_1.5_300x250.swf$object (easylist.txt: 50958) -.hostedadsp.realitykings.com/hosted/flash/rk_player_1\.5_300x250\.swf -# @@||graphics.pop6.com/javascript/live_cd/$script (easylist.txt: 50956) -.graphics.pop6.com/javascript/live_cd/ -# @@||graphics.pop6.com/javascript/live/$script (easylist.txt: 50955) -.graphics.pop6.com/javascript/live/ -# @@||gaynetwork.co.uk/Images/ads/bg/$image,~third-party (easylist.txt: 50953) -.gaynetwork.co.uk/Images/ads/bg/ -# @@||fucktube.com/work/videoad.php? (easylist.txt: 50952) -.fucktube.com/work/videoad\.php\? -# @@||eskimotube.com/advertisements.php?$script (easylist.txt: 50951) -.eskimotube.com/advertisements\.php\? -# @@||cam4.*/ads/directory/$xmlhttprequest (easylist.txt: 50949) -.cam4.*./(.*/)?ads/directory/ -# @@||burningcamel.com/ads/banner.jpg (easylist.txt: 50948) -.burningcamel.com/ads/banner\.jpg -# @@||boyzshop.com/images/affbanners/$image,~third-party (easylist.txt: 50947) -.boyzshop.com/images/affbanners/ -# @@||boyzshop.com/affimages/$~third-party (easylist.txt: 50946) -.boyzshop.com/affimages/ -# @@||ads.ultimatesurrender.com^$image,~third-party (easylist.txt: 50943) -.ads.ultimatesurrender.com -# @@||ads.fuckingmachines.com^$image,~third-party (easylist.txt: 50942) -.ads.fuckingmachines.com -# @@||ad.thisav.com/player/jw.swf (easylist.txt: 50941) -.ad.thisav.com/player/jw\.swf -# @@||ad.thisav.com/player/config.xml$object-subrequest (easylist.txt: 50940) -.ad.thisav.com/player/config\.xml -# @@||gsmarena.com/adclick.php?bannerid=$popup (easylist.txt: 50928) -.gsmarena.com/adclick\.php\?bannerid= -# @@||adv.blogupp.com^$popup (easylist.txt: 50918) -.adv.blogupp.com -# @@||ads.twitter.com^$popup,~third-party (easylist.txt: 50915) -.ads.twitter.com -# @@||ads.pinterest.com^$popup,~third-party (easylist.txt: 50912) -.ads.pinterest.com -# @@||zorza-polarna.pl/environment/cache/images/300_250_ (easylist.txt: 50906) -.zorza-polarna.pl/environment/cache/images/300_250_ -# @@||weatherbug.com/style/stickers/*_728x90.css (easylist.txt: 50904) -.weatherbug.com/style/stickers/.*_728x90\.css -# @@||weatherbug.com/images/stickers/*/728x90/ (easylist.txt: 50903) -.weatherbug.com/images/stickers/.*/728x90/ -# @@||weatherbug.com/desktop-weather/*=728x90& (easylist.txt: 50902) -.weatherbug.com/desktop-weather/.*=728x90& -# @@||weather.craven.net.au/weather/products/300x250.asp?$image (easylist.txt: 50901) -.weather.craven.net.au/weather/products/300x250\.asp\? -# @@||w3easy.org/templates/*_120x60_ (easylist.txt: 50900) -.w3easy.org/templates/.*_120x60_ -# @@||w3easy.org/templates/*_120x60. (easylist.txt: 50899) -.w3easy.org/templates/.*_120x60\. -# @@||vortex.accuweather.com^*_300x250_bg.jpg (easylist.txt: 50898) -.vortex.accuweather.com/.*_300x250_bg\.jpg -# @@||vortex.accuweather.com^*_160x600_bg.jpg (easylist.txt: 50897) -.vortex.accuweather.com/.*_160x600_bg\.jpg -# @@||vortex.accuweather.com^*_120x60_bg.jpg (easylist.txt: 50896) -.vortex.accuweather.com/.*_120x60_bg\.jpg -# @@||viamichelin.*&size=728x90,$subdocument (easylist.txt: 50895) -.viamichelin.*./.*&size=728x90, -# @@||usopen.org/images/pics/misc/*.300x250.jpg (easylist.txt: 50894) -.usopen.org/images/pics/misc/.*\.300x250\.jpg -# @@||usanetwork.com/sites/usanetwork/*300x250 (easylist.txt: 50893) -.usanetwork.com/sites/usanetwork/.*300x250 -# @@||union.edu/media/galleryPics/400x250/$~third-party (easylist.txt: 50892) -.union.edu/media/galleryPics/400x250/ -# @@||turner.com/v5cache/TCM/Images/*_120x60_ (easylist.txt: 50890) -.turner.com/v5cache/TCM/Images/.*_120x60_ -# @@||turner.com/v5cache/TCM/images/*_120x60. (easylist.txt: 50889) -.turner.com/v5cache/TCM/images/.*_120x60\. -# @@||tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/*_120_60.jpg (easylist.txt: 50888) -.tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/.*_120_60\.jpg -# @@||techpakistani.com/wp-content/uploads/*-300x100.$image (easylist.txt: 50887) -.techpakistani.com/wp-content/uploads/.*-300x100\. -# @@||swansuk.co.uk^*/300x250/$image,~third-party (easylist.txt: 50885) -.swansuk.co.uk/.*/300x250/ -# @@||stickam.com/wb/www/category/300x250/$image (easylist.txt: 50884) -.stickam.com/wb/www/category/300x250/ -# @@||static-origin.openedition.org^*-120x240.jpg (easylist.txt: 50883) -.static-origin.openedition.org/.*-120x240\.jpg -# @@||russia-direct.org/custom_ajax/widget?*=300x250&$script (easylist.txt: 50882) -.russia-direct.org/custom_ajax/widget\?.*=300x250& -# @@||roofandfloor.com/listing_$image,~third-party (easylist.txt: 50881) -.roofandfloor.com/listing_ -# @@||rehabs.com^*/xicons_social_sprite_400x60.png (easylist.txt: 50880) -.rehabs.com/.*/xicons_social_sprite_400x60\.png -# @@||quisqualis.com/QBanner_760x100.jpg (easylist.txt: 50878) -.quisqualis.com/QBanner_760x100\.jpg -# @@||opposingviews.com^*/300x250/ (easylist.txt: 50876) -.opposingviews.com/.*/300x250/ -# @@||onescreen.net/os/static/widgets/*300x250 (easylist.txt: 50875) -.onescreen.net/os/static/widgets/.*300x250 -# @@||nationalgeographic.com/exposure/content/*300x250 (easylist.txt: 50874) -.nationalgeographic.com/exposure/content/.*300x250 -# @@||mxtoolbox.com/Public/images/banners/Mx-Pro-160x600.jpg (easylist.txt: 50873) -.mxtoolbox.com/Public/images/banners/Mx-Pro-160x600\.jpg -# @@||msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/$image (easylist.txt: 50872) -.msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/ -# @@||motherboard.tv/content-images/*_120x60. (easylist.txt: 50870) -.motherboard.tv/content-images/.*_120x60\. -# @@||metrics.target.com/b/ss/*_300x250_$image (easylist.txt: 50868) -.metrics.target.com/b/ss/.*_300x250_ -# @@||marketing.beatport.com.s3.amazonaws.com^*/728x90_ (easylist.txt: 50867) -.marketing.beatport.com.s3.amazonaws.com/.*/728x90_ -# @@||maps.googleapis.com/maps/api/*=300x250& (easylist.txt: 50866) -.maps.googleapis.com/maps/api/.*=300x250& -# @@||maps.google.*/staticmap*^size=300x250^$image (easylist.txt: 50865) -.maps.google.*./(.*/)?staticmap.*[^\w%.-]size=300x250[^\w%.-] -# @@||la-finca-distribution.de/wp-content/uploads/*-120x240.$image (easylist.txt: 50864) -.la-finca-distribution.de/wp-content/uploads/.*-120x240\. -# @@||komikslandia.pl/environment/cache/images/300_250_ (easylist.txt: 50863) -.komikslandia.pl/environment/cache/images/300_250_ -# @@||imperialwonderservices.ie/images/banner/*-468x60.$~third-party (easylist.txt: 50862) -.imperialwonderservices.ie/images/banner/.*-468x60\. -# @@||imdb.com/images/*doubleclick/*320x240 (easylist.txt: 50861) -.imdb.com/images/.*doubleclick/.*320x240 -# @@||imdb.com/images/*doubleclick/*300x250 (easylist.txt: 50860) -.imdb.com/images/.*doubleclick/.*300x250 -# @@||imawow.weather.com/web/wow/$image (easylist.txt: 50859) -.imawow.weather.com/web/wow/ -# @@||images.outbrain.com/imageserver/*-120x60.$image (easylist.txt: 50858) -.images.outbrain.com/imageserver/.*-120x60\. -# @@||hortifor.com/images/*120x60$~third-party (easylist.txt: 50854) -.hortifor.com/images/.*120x60 -# @@||heathceramics.com/media/300x250/$image,~third-party (easylist.txt: 50853) -.heathceramics.com/media/300x250/ -# @@||harpers.co.uk/pictures/300x250/ (easylist.txt: 50852) -.harpers.co.uk/pictures/300x250/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?*=300x250& (easylist.txt: 50851) -.google.com/uds/modules/elements/newsshow/iframe\.html\?.*=300x250& -# @@||freetvhub.com/ad1_300x250.html (easylist.txt: 50850) -.freetvhub.com/ad1_300x250\.html -# @@||framestr.com^*/300x250/$image,~third-party (easylist.txt: 50849) -.framestr.com/.*/300x250/ -# @@||firestormgames.co.uk/image/*-120x60. (easylist.txt: 50847) -.firestormgames.co.uk/image/.*-120x60\. -# @@||findafranchise.com/_img/*_120x60.$image (easylist.txt: 50846) -.findafranchise.com/_img/.*_120x60\. -# @@||film.com/plugins/*-300x250 (easylist.txt: 50845) -.film.com/plugins/.*-300x250 -# @@||efvi.eu/badge/*-120x60.png (easylist.txt: 50843) -.efvi.eu/badge/.*-120x60\.png -# @@||educationpost.com.hk^*/300x250/$image (easylist.txt: 50842) -.educationpost.com.hk/.*/300x250/ -# @@||disney.com.au/global/swf/banner160x600.swf (easylist.txt: 50841) -.disney.com.au/global/swf/banner160x600\.swf -# @@||disney.com.au/global/swf/*728x90.swf (easylist.txt: 50840) -.disney.com.au/global/swf/.*728x90\.swf -# @@||discovery.com^*/ratio-size/pixel-ratio/300x250.png (easylist.txt: 50839) -.discovery.com/.*/ratio-size/pixel-ratio/300x250\.png -# @@||dawn.com/wp-content/uploads/*_300x250.jpg (easylist.txt: 50838) -.dawn.com/wp-content/uploads/.*_300x250\.jpg -# @@||cubeecraft.com/images/home/features/300x250/$image,~third-party (easylist.txt: 50837) -.cubeecraft.com/images/home/features/300x250/ -# @@||crowdignite.com/img/upload/*300x250 (easylist.txt: 50836) -.crowdignite.com/img/upload/.*300x250 -# @@||consumerist-com.wpengine.netdna-cdn.com/assets/*300x250 (easylist.txt: 50835) -.consumerist-com.wpengine.netdna-cdn.com/assets/.*300x250 -# @@||cinemanow.com/images/banners/300x250/ (easylist.txt: 50834) -.cinemanow.com/images/banners/300x250/ -# @@||canada.com/news/*-300-250.gif (easylist.txt: 50833) -.canada.com/news/.*-300-250\.gif -# @@||bizquest.com^*_img/_franchise/*_120x60.$image (easylist.txt: 50832) -.bizquest.com/.*_img/_franchise/.*_120x60\. -# @@||bettermarks.com/media$~third-party (easylist.txt: 50831) -.bettermarks.com/media -# @@||assets2.plinxmedia.net^*_300x250. (easylist.txt: 50830) -.assets2.plinxmedia.net/.*_300x250\. -# @@||assets1.plinxmedia.net^*_300x250. (easylist.txt: 50829) -.assets1.plinxmedia.net/.*_300x250\. -# @@||assets.vice.com^*_120x60.jpg (easylist.txt: 50828) -.assets.vice.com/.*_120x60\.jpg -# @@||artserieshotels.com.au/images/*_460_60. (easylist.txt: 50827) -.artserieshotels.com.au/images/.*_460_60\. -# @@||arnhemland-safaris.com/images/*_480_80_ (easylist.txt: 50826) -.arnhemland-safaris.com/images/.*_480_80_ -# @@||anitasrecipes.com/Content/Images/*160x500$image (easylist.txt: 50825) -.anitasrecipes.com/Content/Images/.*160x500 -# @@||ajax.googleapis.com/ajax/services/search/news?*-728x90&$script (easylist.txt: 50821) -.ajax.googleapis.com/ajax/services/search/news\?.*-728x90& -# @@||adservicemedia.dk/images/$~third-party (easylist.txt: 50809) -.adservicemedia.dk/images/ -# @@||adservice.com/wp-content/themes/adservice/$~third-party (easylist.txt: 50808) -.adservice.com/wp-content/themes/adservice/ -# @@||dailymotion.com/advertise/$xmlhttprequest (easylist.txt: 50800) -.dailymotion.com/advertise/ -# @@||gameloft.com/advertising-$~third-party (easylist.txt: 50797) -.gameloft.com/advertising- -# @@||adsbox.io^$~third-party (easylist.txt: 50795) -.adsbox.io -# @@||revealads.com^$~third-party (easylist.txt: 50793) -.revealads.com -# @@||integralplatform.com/static/js/Advertiser/$~third-party (easylist.txt: 50791) -.integralplatform.com/static/js/Advertiser/ -# @@||ads.acesse.com^$~third-party (easylist.txt: 50789) -.ads.acesse.com -# @@||advertise.ru^$~third-party (easylist.txt: 50786) -.advertise.ru -# @@||ads.stumbleupon.com^$~third-party (easylist.txt: 50784) -.ads.stumbleupon.com -# @@||ads.stumbleupon.com^$popup (easylist.txt: 50783) -.ads.stumbleupon.com -# @@||teliad.*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 50764) -.teliad.*./(.*/)?advertiser/ -# @@||seedingup.*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 50763) -.seedingup.*./(.*/)?advertiser/ -# @@||advertise.mxit.com^$~third-party (easylist.txt: 50756) -.advertise.mxit.com -# @@||vk.com/ads?act=payments&type$script,stylesheet (easylist.txt: 50749) -.vk.com/ads\?act=payments&type -# @@||paymentgate.ru/payment/*_Advert/ (easylist.txt: 50746) -.paymentgate.ru/payment/.*_Advert/ -# @@||advertising.microsoft.com^$~third-party (easylist.txt: 50743) -.advertising.microsoft.com -# @@||advertise.bingads.microsoft.com/wwimages/search/global/$image (easylist.txt: 50742) -.advertise.bingads.microsoft.com/wwimages/search/global/ -# @@||authentication-api.skimlinks.com^ (easylist.txt: 50739) -.authentication-api.skimlinks.com -# @@||api-merchants.skimlinks.com^ (easylist.txt: 50738) -.api-merchants.skimlinks.com -# @@||adhese.com^$~third-party (easylist.txt: 50734) -.adhese.com -# @@||adfox.ru^$~third-party (easylist.txt: 50730) -.adfox.ru -# @@||healthyadvertising.es^$~third-party (easylist.txt: 50728) -.healthyadvertising.es -# @@||fullad.com.br^$~third-party (easylist.txt: 50726) -.fullad.com.br -# @@||dashboard.tovarro.com^$~third-party (easylist.txt: 50724) -.dashboard.tovarro.com -# @@||dashboard.mgid.com^$~third-party (easylist.txt: 50723) -.dashboard.mgid.com -# @@||dashboard.marketgid.com^$~third-party (easylist.txt: 50722) -.dashboard.marketgid.com -# @@||dashboard.lentainform.com^$~third-party (easylist.txt: 50721) -.dashboard.lentainform.com -# @@||dashboard.idealmedia.com^$~third-party (easylist.txt: 50720) -.dashboard.idealmedia.com -# @@||www.advertising.com^$~third-party (easylist.txt: 50715) -.www.advertising.com -# @@||adcenter.mobicow.com^$~third-party (easylist.txt: 50713) -.adcenter.mobicow.com -# @@||www.google.com/images/icons/product/adsense-$image (easylist.txt: 50709) -.www.google.com/images/icons/product/adsense- -# @@||www.google.com/images/icons/feature/adsense_$image (easylist.txt: 50708) -.www.google.com/images/icons/feature/adsense_ -# @@||www.google.com/doubleclick/images/favicon.ico (easylist.txt: 50706) -.www.google.com/doubleclick/images/favicon\.ico -# @@||www.google.*/adwords/$~third-party (easylist.txt: 50700) -.www.google.*./(.*/)?adwords/ -# @@||www.google.*/adsense/$~third-party (easylist.txt: 50699) -.www.google.*./(.*/)?adsense/ -# @@||www.google.*/ads/start/$~third-party (easylist.txt: 50698) -.www.google.*./(.*/)?ads/start/ -# @@||www.google.*/ads/js/$~third-party (easylist.txt: 50697) -.www.google.*./(.*/)?ads/js/ -# @@||www.google.*/ads/images/ (easylist.txt: 50696) -.www.google.*./(.*/)?ads/images/ -# @@||www.google.*/ads/css/$~third-party (easylist.txt: 50695) -.www.google.*./(.*/)?ads/css/ -# @@||www.google.*/ads/*/images/ (easylist.txt: 50694) -.www.google.*./(.*/)?ads/.*/images/ -# @@||www.google.*/adometry/$~third-party (easylist.txt: 50693) -.www.google.*./(.*/)?adometry/ -# @@||www.google.*/adometry.$~third-party (easylist.txt: 50692) -.www.google.*./(.*/)?adometry\. -# @@||support.google.com/adwords/$~third-party (easylist.txt: 50691) -.support.google.com/adwords/ -# @@||support.google.com/adsense/$~third-party (easylist.txt: 50690) -.support.google.com/adsense/ -# @@||google.com/payments/*/adwords.$document,subdocument (easylist.txt: 50685) -.google.com/payments/.*/adwords\. -# @@||google.com/help/hc/images/adwords/$image,~third-party (easylist.txt: 50684) -.google.com/help/hc/images/adwords/ -# @@||accounts.google.com/accounts/adwords/$image,~third-party (easylist.txt: 50677) -.accounts.google.com/accounts/adwords/ -# @@||adwolf.eu^$~third-party (easylist.txt: 50672) -.adwolf.eu -# @@||ziarelive.ro/assets/js/advertisement.js (easylist.txt: 50669) -.ziarelive.ro/assets/js/advertisement\.js -# @@||yapo.cl/js/viewad.js? (easylist.txt: 50667) -.yapo.cl/js/viewad\.js\? -# @@||xe.gr/property/recent_ads?$xmlhttprequest (easylist.txt: 50666) -.xe.gr/property/recent_ads\? -# @@||vinden.se/ads/$~third-party (easylist.txt: 50662) -.vinden.se/ads/ -# @@||videonuz.ensonhaber.com/player/hdflvplayer/xml/ads.xml?$object-subrequest (easylist.txt: 50660) -.videonuz.ensonhaber.com/player/hdflvplayer/xml/ads\.xml\? -# @@||velasridaura.com/modules/*/advertising_custom.$image,~third-party (easylist.txt: 50658) -.velasridaura.com/modules/.*/advertising_custom\. -# @@||vedomosti.ru/assets/vendors/adriver.media-$script (easylist.txt: 50657) -.vedomosti.ru/assets/vendors/adriver\.media- -# @@||varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel.js (easylist.txt: 50656) -.varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel\.js -# @@||uol.com.br/html.ng/*&affiliate=$object-subrequest (easylist.txt: 50655) -.uol.com.br/html\.ng/.*&affiliate= -# @@||tvn.adocean.pl^$object-subrequest (easylist.txt: 50654) -.tvn.adocean.pl -# @@||tv2.dk/mpx/player.php/adtech_$subdocument (easylist.txt: 50653) -.tv2.dk/mpx/player\.php/adtech_ -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.php (easylist.txt: 50652) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.php -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.js (easylist.txt: 50651) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.js -# @@||trrsf.com^*/admanager.js (easylist.txt: 50650) -.trrsf.com/.*/admanager\.js -# @@||trrsf.com.br/playerttv/$xmlhttprequest (easylist.txt: 50648) -.trrsf.com.br/playerttv/ -# @@||tn.com.ar^*/vivo/300/publicidad.html$subdocument (easylist.txt: 50647) -.tn.com.ar/.*/vivo/300/publicidad\.html -# @@||thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend.js (easylist.txt: 50646) -.thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend\.js -# @@||terra.com.br^*/admanager.html$subdocument (easylist.txt: 50645) -.terra.com.br/.*/admanager\.html -# @@||terra.cl^*/admanager.html$subdocument (easylist.txt: 50644) -.terra.cl/.*/admanager\.html -# @@||ta3.com/advert-async-system/$xmlhttprequest (easylist.txt: 50643) -.ta3.com/advert-async-system/ -# @@||submarino.com.br/openx/www/delivery/ (easylist.txt: 50642) -.submarino.com.br/openx/www/delivery/ -# @@||style.seznam.cz/ad/im.js (easylist.txt: 50641) -.style.seznam.cz/ad/im\.js -# @@||start.no/includes/js/adCode.js (easylist.txt: 50638) -.start.no/includes/js/adCode\.js -# @@||start.no/advertpro/servlet/view/text/html/zone?zid=$script (easylist.txt: 50637) -.start.no/advertpro/servlet/view/text/html/zone\?zid= -# @@||soov.ee/js/newad.js (easylist.txt: 50635) -.soov.ee/js/newad\.js -# @@||sms.cz/bannery/$object-subrequest,~third-party (easylist.txt: 50634) -.sms.cz/bannery/ -# @@||smartadserver.com/crossdomain.xml$object-subrequest (easylist.txt: 50632) -.smartadserver.com/crossdomain\.xml -# @@||smart.allocine.fr/crossdomain.xml$object-subrequest (easylist.txt: 50627) -.smart.allocine.fr/crossdomain\.xml -# @@||skai.gr/advert/*.flv$object-subrequest (easylist.txt: 50626) -.skai.gr/advert/.*\.flv -# @@||sigmalive.com/assets/js/jquery.openxtag.js (easylist.txt: 50625) -.sigmalive.com/assets/js/jquery\.openxtag\.js -# @@||segundamano.mx/api/*/ads/$~third-party (easylist.txt: 50624) -.segundamano.mx/api/.*/ads/ -# @@||sanook.com/php/get_ads.php?vast_linear=$xmlhttprequest (easylist.txt: 50621) -.sanook.com/php/get_ads\.php\?vast_linear= -# @@||s-nk.pl/img/ads/icons_pack (easylist.txt: 50619) -.s-nk.pl/img/ads/icons_pack -# @@||run.admost.com/adx/js/admost.js? (easylist.txt: 50618) -.run.admost.com/adx/js/admost\.js\? -# @@||run.admost.com/adx/get.ashx?z=*&accptck=true&nojs=1 (easylist.txt: 50617) -.run.admost.com/adx/get\.ashx\?z=.*&accptck=true&nojs=1 -# @@||rtl.lu/ipljs/adtech_async.js (easylist.txt: 50616) -.rtl.lu/ipljs/adtech_async\.js -# @@||rocking.gr/js/jquery.dfp.min.js (easylist.txt: 50615) -.rocking.gr/js/jquery\.dfp\.min\.js -# @@||ring.bg/adserver/adall.php?*&video_on_page=1 (easylist.txt: 50614) -.ring.bg/adserver/adall\.php\?.*&video_on_page=1 -# @@||rentalsystems.com/advert_price_imbed.asp?$subdocument (easylist.txt: 50613) -.rentalsystems.com/advert_price_imbed\.asp\? -# @@||reklama5.mk^$~third-party (easylist.txt: 50612) -.reklama5.mk -# @@||quebarato.com.br/css/static/ad_search.css (easylist.txt: 50610) -.quebarato.com.br/css/static/ad_search\.css -# @@||quebarato.com.br/css/static/ad_detail.css (easylist.txt: 50609) -.quebarato.com.br/css/static/ad_detail\.css -# @@||ptcliente.pt/App_Themes/Default/Img/ad_$image (easylist.txt: 50608) -.ptcliente.pt/App_Themes/Default/Img/ad_ -# @@||ptchan.net/imagens/banner.php (easylist.txt: 50607) -.ptchan.net/imagens/banner\.php -# @@||psoe.es/Areas/Affiliation/ (easylist.txt: 50606) -.psoe.es/Areas/Affiliation/ -# @@||prohardver.hu/js/common/forms_$script (easylist.txt: 50603) -.prohardver.hu/js/common/forms_ -# @@||polovniautomobili.com/images/ad-$~third-party (easylist.txt: 50602) -.polovniautomobili.com/images/ad- -# @@||player.terra.com^*&adunit=$script (easylist.txt: 50600) -.player.terra.com/.*&adunit= -# @@||peoplegreece.com/assets/js/adtech_res.js (easylist.txt: 50599) -.peoplegreece.com/assets/js/adtech_res\.js -# @@||openx.zomoto.nl/live/www/delivery/spcjs.php?id= (easylist.txt: 50596) -.openx.zomoto.nl/live/www/delivery/spcjs\.php\?id= -# @@||openx.zomoto.nl/live/www/delivery/fl.js (easylist.txt: 50595) -.openx.zomoto.nl/live/www/delivery/fl\.js -# @@||openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null.jpg (easylist.txt: 50594) -.openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null\.jpg -# @@||oas.dn.se/adstream_mjx.ads/dn.se/nyheter/ettan/*@$script (easylist.txt: 50592) -.oas.dn.se/adstream_mjx\.ads/dn\.se/nyheter/ettan/.*@ -# @@||nordjyske.dk/scripts/ads/StoryAds.js (easylist.txt: 50588) -.nordjyske.dk/scripts/ads/StoryAds\.js -# @@||niedziela.nl/adverts/$image,~third-party (easylist.txt: 50587) -.niedziela.nl/adverts/ -# @@||mynet.com/nocache/adocean.js? (easylist.txt: 50585) -.mynet.com/nocache/adocean\.js\? -# @@||mynet.com.tr/nocache/adocean.js? (easylist.txt: 50584) -.mynet.com.tr/nocache/adocean\.js\? -# @@||moviezone.cz/swf/ad-player/$object,object-subrequest (easylist.txt: 50583) -.moviezone.cz/swf/ad-player/ -# @@||moviezone.cz//moviezone/reklama/$object-subrequest (easylist.txt: 50582) -# @@||mmgastro.pl/js/reklama/$~third-party (easylist.txt: 50581) -.mmgastro.pl/js/reklama/ -# @@||mmgastro.pl/img/reklama/$image,~third-party (easylist.txt: 50580) -.mmgastro.pl/img/reklama/ -# @@||mjhobbymassan.se/r/annonser/$image,~third-party (easylist.txt: 50578) -.mjhobbymassan.se/r/annonser/ -# @@||minuripsmed.ee/templates/*/images/advert.gif (easylist.txt: 50577) -.minuripsmed.ee/templates/.*/images/advert\.gif -# @@||megatv.com^*/adverts.asp?$object-subrequest (easylist.txt: 50576) -.megatv.com/.*/adverts\.asp\? -# @@||mail.bg/mail/index/getads/$xmlhttprequest (easylist.txt: 50575) -.mail.bg/mail/index/getads/ -# @@||lrytas.lt/ads/video_feed.js (easylist.txt: 50574) -.lrytas.lt/ads/video_feed\.js -# @@||laredoute.*/scripts/combinejs.ashx?*/affiliation/$script (easylist.txt: 50571) -.laredoute.*./(.*/)?scripts/combinejs\.ashx\?.*/affiliation/ -# @@||krotoszyn.pl/uploads/pub/ads_files/$image,~third-party (easylist.txt: 50570) -.krotoszyn.pl/uploads/pub/ads_files/ -# @@||kopavogur.is/umsoknarvefur/advertisement.aspx$subdocument (easylist.txt: 50569) -.kopavogur.is/umsoknarvefur/advertisement\.aspx -# @@||kompas.com^*/supersized.*.min_ads.js? (easylist.txt: 50568) -.kompas.com/.*/supersized\..*\.min_ads\.js\? -# @@||kanalfrederikshavn.dk^*/jquery.openx.js? (easylist.txt: 50567) -.kanalfrederikshavn.dk/.*/jquery\.openx\.js\? -# @@||joemonster.org^*_reklama_$image (easylist.txt: 50566) -.joemonster.org/.*_reklama_ -# @@||jesper.nu/javascript/libs/videoads.js (easylist.txt: 50565) -.jesper.nu/javascript/libs/videoads\.js -# @@||izigo.pt^*/adsearch? (easylist.txt: 50564) -.izigo.pt/.*/adsearch\? -# @@||izigo.pt/AdPictures/ (easylist.txt: 50563) -.izigo.pt/AdPictures/ -# @@||islafenice.net^*/adsense.js (easylist.txt: 50562) -.islafenice.net/.*/adsense\.js -# @@||isanook.com/vi/0/js/ads-$script (easylist.txt: 50561) -.isanook.com/vi/0/js/ads- -# @@||hry.cz/ad/adcode.js (easylist.txt: 50555) -.hry.cz/ad/adcode\.js -# @@||honfoglalo.hu/aagetad.php?$subdocument (easylist.txt: 50554) -.honfoglalo.hu/aagetad\.php\? -# @@||homad.eu^$~third-party (easylist.txt: 50553) -.homad.eu -# @@||hizlial.com/banners/$~third-party (easylist.txt: 50552) -.hizlial.com/banners/ -# @@||happymtb.org/annonser/$~third-party (easylist.txt: 50551) -.happymtb.org/annonser/ -# @@||haberler.com/video-haber/adsense_news_politics.swf?$object (easylist.txt: 50550) -.haberler.com/video-haber/adsense_news_politics\.swf\? -# @@||guloggratis.dk/modules/$script,~third-party,xmlhttprequest (easylist.txt: 50549) -.guloggratis.dk/modules/ -# @@||gov.in/pdf/ADVERTISEMENT/$~third-party (easylist.txt: 50548) -.gov.in/pdf/ADVERTISEMENT/ -# @@||freeride.se/img/admarket/$~third-party (easylist.txt: 50546) -.freeride.se/img/admarket/ -# @@||fotosioon.com/wp-content/*/images/advert.gif (easylist.txt: 50545) -.fotosioon.com/wp-content/.*/images/advert\.gif -# @@||fotolog.com/styles/flags/ad.gif (easylist.txt: 50544) -.fotolog.com/styles/flags/ad\.gif -# @@||fotojorgen.no/images/*/webadverts/ (easylist.txt: 50543) -.fotojorgen.no/images/.*/webadverts/ -# @@||forads.pl^$~third-party (easylist.txt: 50542) -.forads.pl -# @@||flashgames247.com/advertising/preroll/google-fg247-preloader.swf$object (easylist.txt: 50541) -.flashgames247.com/advertising/preroll/google-fg247-preloader\.swf -# @@||filmon.com/ad/affiliateimages/banner-250x350.png (easylist.txt: 50540) -.filmon.com/ad/affiliateimages/banner-250x350\.png -# @@||felcia.co.uk/js/ads_common.js (easylist.txt: 50539) -.felcia.co.uk/js/ads_common\.js -# @@||felcia.co.uk/css/advert-view.css (easylist.txt: 50538) -.felcia.co.uk/css/advert-view\.css -# @@||felcia.co.uk/css/ads-common.css (easylist.txt: 50537) -.felcia.co.uk/css/ads-common\.css -# @@||fajerwerkilider.pl/environment/cache/images/300_250_productGfx_$image (easylist.txt: 50535) -.fajerwerkilider.pl/environment/cache/images/300_250_productGfx_ -# @@||ettevotja.ee/templates/*/images/advert.gif (easylist.txt: 50533) -.ettevotja.ee/templates/.*/images/advert\.gif -# @@||epaper.andhrajyothy.com/js/newads.js (easylist.txt: 50532) -.epaper.andhrajyothy.com/js/newads\.js -# @@||emediate.se/crossdomain.xml$object-subrequest (easylist.txt: 50529) -.emediate.se/crossdomain\.xml -# @@||emediate.eu/crossdomain.xml$object-subrequest (easylist.txt: 50527) -.emediate.eu/crossdomain\.xml -# @@||emag.hu/site_ajax_ads?id=$xmlhttprequest (easylist.txt: 50525) -.emag.hu/site_ajax_ads\?id= -# @@||ehowenespanol.com/frames/ad.html?$subdocument (easylist.txt: 50524) -.ehowenespanol.com/frames/ad\.html\? -# @@||ehow.com.br/frames/ad.html?$subdocument (easylist.txt: 50523) -.ehow.com.br/frames/ad\.html\? -# @@||doladowania.pl/pp/$script (easylist.txt: 50519) -.doladowania.pl/pp/ -# @@||di.se^*/advertisement.js (easylist.txt: 50518) -.di.se/.*/advertisement\.js -# @@||di.se^$generichide (easylist.txt: 50517) -.di.se -# @@||custojusto.pt/user/myads/ (easylist.txt: 50516) -.custojusto.pt/user/myads/ -# @@||catmusica.cat/paudio/getads.jsp?$xmlhttprequest (easylist.txt: 50514) -.catmusica.cat/paudio/getads\.jsp\? -# @@||carfinder.gr/api/ads/$xmlhttprequest (easylist.txt: 50513) -.carfinder.gr/api/ads/ -# @@||bomnegocio.com/css/ad_insert.css (easylist.txt: 50512) -.bomnegocio.com/css/ad_insert\.css -# @@||bolha.com/css/ad.css? (easylist.txt: 50511) -.bolha.com/css/ad\.css\? -# @@||bnrs.ilm.ee/www/delivery/fl.js (easylist.txt: 50510) -.bnrs.ilm.ee/www/delivery/fl\.js -# @@||bn.uol.com.br/html.ng/$object-subrequest (easylist.txt: 50509) -.bn.uol.com.br/html\.ng/ -# @@||bmwoglasnik.si/images/ads/ (easylist.txt: 50508) -.bmwoglasnik.si/images/ads/ -# @@||blocket.se^*/newad.js (easylist.txt: 50507) -.blocket.se/.*/newad\.js -# @@||biancolavoro.euspert.com/js/ad.js (easylist.txt: 50506) -.biancolavoro.euspert.com/js/ad\.js -# @@||banki.ru/bitrix/*/advertising.block/$stylesheet (easylist.txt: 50503) -.banki.ru/bitrix/.*/advertising\.block/ -# @@||bancodevenezuela.com/imagenes/publicidad/$~third-party (easylist.txt: 50502) -.bancodevenezuela.com/imagenes/publicidad/ -# @@||bancainternet.com.ar/eBanking/images/*-PUBLICIDAD. (easylist.txt: 50501) -.bancainternet.com.ar/eBanking/images/.*-PUBLICIDAD\. -# @@||autotube.cz/ui/player/ad.php?id=$object-subrequest (easylist.txt: 50500) -.autotube.cz/ui/player/ad\.php\?id= -# @@||autoscout24.*/all.js.aspx?m=css&*=/stylesheets/adbanner.css (easylist.txt: 50499) -.autoscout24.*./(.*/)?all\.js\.aspx\?m=css&.*=/stylesheets/adbanner\.css -# @@||atresplayer.com/static/imgs/no_ads.jpg$object-subrequest (easylist.txt: 50498) -.atresplayer.com/static/imgs/no_ads\.jpg -# @@||applevideo.edgesuite.net/admedia/$object-subrequest (easylist.txt: 50497) -.applevideo.edgesuite.net/admedia/ -# @@||americateve.com/mediaplayer_ads/new_config_openx.xml$xmlhttprequest (easylist.txt: 50492) -.americateve.com/mediaplayer_ads/new_config_openx\.xml -# @@||amarillas.cl/js/advertise/$script (easylist.txt: 50489) -.amarillas.cl/js/advertise/ -# @@||amarillas.cl/advertise.do?$xmlhttprequest (easylist.txt: 50488) -.amarillas.cl/advertise\.do\? -# @@||alio.lt/public/advertisement/texttoimage.html?$image (easylist.txt: 50486) -.alio.lt/public/advertisement/texttoimage\.html\? -# @@||advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page.gif (easylist.txt: 50481) -.advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page\.gif -# @@||advert.ee^$~third-party (easylist.txt: 50477) -.advert.ee -# @@||adv.pt^$~third-party (easylist.txt: 50476) -.adv.pt -# @@||adsystem.pl^$~third-party (easylist.txt: 50470) -.adsystem.pl -# @@||ads.us.e-planning.net/crossdomain.xml$object-subrequest (easylist.txt: 50467) -.ads.us.e-planning.net/crossdomain\.xml -# @@||ads.telecinco.es/crossdomain.xml$object-subrequest (easylist.txt: 50465) -.ads.telecinco.es/crossdomain\.xml -# @@||ads.postimees.ee/crossdomain.xml$object-subrequest (easylist.txt: 50464) -.ads.postimees.ee/crossdomain\.xml -# @@||ads.peteava.ro/www/serve_ads/serve2.php?campaign=$object-subrequest (easylist.txt: 50463) -.ads.peteava.ro/www/serve_ads/serve2\.php\?campaign= -# @@||ads.peteava.ro/crossdomain.xml$object-subrequest (easylist.txt: 50462) -.ads.peteava.ro/crossdomain\.xml -# @@||ads.nicovideo.jp/assets/js/ads-*.js (easylist.txt: 50461) -.ads.nicovideo.jp/assets/js/ads-.*\.js -# @@||ads.hosting.vcmedia.vn/jinfo.ashx?$object-subrequest (easylist.txt: 50460) -.ads.hosting.vcmedia.vn/jinfo\.ashx\? -# @@||ads.hosting.vcmedia.vn/crossdomain.xml$object-subrequest (easylist.txt: 50459) -.ads.hosting.vcmedia.vn/crossdomain\.xml -# @@||ads.cvut.cz^$~third-party (easylist.txt: 50457) -.ads.cvut.cz -# @@||adpriv.nikkei.com/bservers/AAMALL/*/acc_random=$script (easylist.txt: 50456) -.adpriv.nikkei.com/bservers/AAMALL/.*/acc_random= -# @@||ad3.l3go.com.br^$~third-party (easylist.txt: 50448) -.ad3.l3go.com.br -# @@||ad.nl/ad/css/$~third-party (easylist.txt: 50447) -.ad.nl/ad/css/ -# @@||ad.e-kolay.net/mnetorfad.js (easylist.txt: 50446) -.ad.e-kolay.net/mnetorfad\.js -# @@||ad.e-kolay.net/Medyanet.js (easylist.txt: 50445) -.ad.e-kolay.net/Medyanet\.js -# @@||ad.e-kolay.net/jquery-*-Medyanet.min.js (easylist.txt: 50444) -.ad.e-kolay.net/jquery-.*-Medyanet\.min\.js -# @@||ad.e-kolay.net/ad.js (easylist.txt: 50443) -.ad.e-kolay.net/ad\.js -# @@||zoomin.tv/adhandler/amalia.adm?$object-subrequest (easylist.txt: 50438) -.zoomin.tv/adhandler/amalia\.adm\? -# @@||zman.com/adv/ova/overlay.xml (easylist.txt: 50437) -.zman.com/adv/ova/overlay\.xml -# @@||zattoo.com/ads/cs?$xmlhttprequest (easylist.txt: 50434) -.zattoo.com/ads/cs\? -# @@||ytconv.net/*google_ads.js (easylist.txt: 50433) -.ytconv.net/.*google_ads\.js -# @@||youwatch.org/adframe.js (easylist.txt: 50430) -.youwatch.org/adframe\.js -# @@||yellowbridge.com^*/advertisement.js (easylist.txt: 50428) -.yellowbridge.com/.*/advertisement\.js -# @@||yellowbridge.com/ad/show_ads.js (easylist.txt: 50426) -.yellowbridge.com/ad/show_ads\.js -# @@||yasni.*/adframe.js (easylist.txt: 50425) -.yasni.*./(.*/)?adframe\.js -# @@||xooimg.com/magesy/js-cdn/adblock.js (easylist.txt: 50423) -.xooimg.com/magesy/js-cdn/adblock\.js -# @@||writing.com^$script (easylist.txt: 50419) -.writing.com -# @@||world-of-hentai.to/advertisement.js (easylist.txt: 50414) -.world-of-hentai.to/advertisement\.js -# @@||windows7themes.net/wp-content/advert.js (easylist.txt: 50412) -.windows7themes.net/wp-content/advert\.js -# @@||wholecloud.net/banner.php?$script (easylist.txt: 50410) -.wholecloud.net/banner\.php\? -# @@||weshare.me/fuckadblock.js (easylist.txt: 50407) -.weshare.me/fuckadblock\.js -# @@||welovebtc.com/show_ads.js (easylist.txt: 50406) -.welovebtc.com/show_ads\.js -# @@||webtv.rs/media/blic/advertisement.jpg (easylist.txt: 50405) -.webtv.rs/media/blic/advertisement\.jpg -# @@||webfirstrow.eu^*/advertisement.js (easylist.txt: 50403) -.webfirstrow.eu/.*/advertisement\.js -# @@||webfirstrow.eu/advertisement.js (easylist.txt: 50402) -.webfirstrow.eu/advertisement\.js -# @@||weather.com^*/advertisement.js (easylist.txt: 50401) -.weather.com/.*/advertisement\.js -# @@||watchcartoononline.com/advertisement.js (easylist.txt: 50400) -.watchcartoononline.com/advertisement\.js -# @@||wanamlite.com/images/ad/$image (easylist.txt: 50399) -.wanamlite.com/images/ad/ -# @@||wallpapermania.eu/assets/js/advertisement.js (easylist.txt: 50397) -.wallpapermania.eu/assets/js/advertisement\.js -# @@||vodu.ch^$script (easylist.txt: 50396) -.vodu.ch -# @@||virtualpets.com^*/ads.js (easylist.txt: 50394) -.virtualpets.com/.*/ads\.js -# @@||vipleague.se/js/ads.js (easylist.txt: 50393) -.vipleague.se/js/ads\.js -# @@||vipbox.tv/js/ads.js (easylist.txt: 50392) -.vipbox.tv/js/ads\.js -# @@||viki.com/*.js$script (easylist.txt: 50391) -.viki.com/.*\.js -# @@||vietvbb.vn/up/clientscript/google_ads.js (easylist.txt: 50390) -.vietvbb.vn/up/clientscript/google_ads\.js -# @@||vidup.me/js/$script (easylist.txt: 50389) -.vidup.me/js/ -# @@||videoweed.es/banner.php?$script (easylist.txt: 50388) -.videoweed.es/banner\.php\? -# @@||videomega.tv^*/ad.php?id=$subdocument (easylist.txt: 50386) -.videomega.tv/.*/ad\.php\?id= -# @@||videomega.tv^$stylesheet (easylist.txt: 50385) -.videomega.tv -# @@||videomega.tv^$script (easylist.txt: 50384) -.videomega.tv -# @@||videomega.tv/pub/interstitial.css (easylist.txt: 50382) -.videomega.tv/pub/interstitial\.css -# @@||videocelebrities.eu^*/adframe/ (easylist.txt: 50381) -.videocelebrities.eu/.*/adframe/ -# @@||vgunetwork.com/public/js/*/advertisement.js (easylist.txt: 50379) -.vgunetwork.com/public/js/.*/advertisement\.js -# @@||verticalscope.com/js/advert.js (easylist.txt: 50378) -.verticalscope.com/js/advert\.js -# @@||veedi.com^*/ADS.js (easylist.txt: 50372) -.veedi.com/.*/ADS\.js -# @@||usaupload.net/ads.js (easylist.txt: 50367) -.usaupload.net/ads\.js -# @@||urlgalleries.net^*/adhandler/$subdocument (easylist.txt: 50366) -.urlgalleries.net/.*/adhandler/ -# @@||urdupoint.com/js/advertisement.js (easylist.txt: 50361) -.urdupoint.com/js/advertisement\.js -# @@||urbeez.com/adver$script (easylist.txt: 50360) -.urbeez.com/adver -# @@||upshare.org/advertisement.js (easylist.txt: 50358) -.upshare.org/advertisement\.js -# @@||uploadlw.com/getbanner.cfm?$script (easylist.txt: 50356) -.uploadlw.com/getbanner\.cfm\? -# @@||uploadex.com/fuckadblock.js (easylist.txt: 50354) -.uploadex.com/fuckadblock\.js -# @@||up-flow.org/advertisement.js (easylist.txt: 50353) -.up-flow.org/advertisement\.js -# @@||uktv.co.uk/static/js/ads.js (easylist.txt: 50350) -.uktv.co.uk/static/js/ads\.js -# @@||ucoz.com/ads/banner.jpg?$image (easylist.txt: 50349) -.ucoz.com/ads/banner\.jpg\? -# @@||twitch.tv/ads/ads.js (easylist.txt: 50348) -.twitch.tv/ads/ads\.js -# @@||tvpelis.net^*/advertisement2.js (easylist.txt: 50346) -.tvpelis.net/.*/advertisement2\.js -# @@||tvdez.com/ads/ads_$subdocument (easylist.txt: 50343) -.tvdez.com/ads/ads_ -# @@||tv3.co.nz/Portals/*/advertisement.js (easylist.txt: 50342) -.tv3.co.nz/Portals/.*/advertisement\.js -# @@||tutvgratis.tv^*/fuckadblock.js (easylist.txt: 50339) -.tutvgratis.tv/.*/fuckadblock\.js -# @@||turkdown.com^$script (easylist.txt: 50336) -.turkdown.com -# @@||tpmrpg.net/adframe.js (easylist.txt: 50326) -.tpmrpg.net/adframe\.js -# @@||tklist.net/tklist/*ad$image (easylist.txt: 50321) -.tklist.net/tklist/.*ad -# @@||theweatherspace.com^*/advertisement.js (easylist.txt: 50318) -.theweatherspace.com/.*/advertisement\.js -# @@||thevideos.tv/js/ads.js (easylist.txt: 50316) -.thevideos.tv/js/ads\.js -# @@||thesominaltv.com/advertisement.js (easylist.txt: 50315) -.thesominaltv.com/advertisement\.js -# @@||thesilverforum.com/public/js/jsLoader.js?adType=$script (easylist.txt: 50312) -.thesilverforum.com/public/js/jsLoader\.js\?adType= -# @@||thememypc.com/wp-content/*/ads/$image (easylist.txt: 50310) -.thememypc.com/wp-content/.*/ads/ -# @@||thelordofstreaming.it/wp-content/uploads/*/ad_$image (easylist.txt: 50308) -.thelordofstreaming.it/wp-content/uploads/.*/ad_ -# @@||televall.com.mx/fuckadblock.js (easylist.txt: 50305) -.televall.com.mx/fuckadblock\.js -# @@||telemetryverification.net/crossdomain.xml$object-subrequest (easylist.txt: 50304) -.telemetryverification.net/crossdomain\.xml -# @@||teknogods.com/advert.js (easylist.txt: 50303) -.teknogods.com/advert\.js -# @@||techweekeurope.co.uk^*/advertising.js (easylist.txt: 50300) -.techweekeurope.co.uk/.*/advertising\.js -# @@||team-vitality.fr/assets/images/advert.png (easylist.txt: 50298) -.team-vitality.fr/assets/images/advert\.png -# @@||talksport.com/sites/default/files/ben/advert.js (easylist.txt: 50296) -.talksport.com/sites/default/files/ben/advert\.js -# @@||supergames.com^*/ads.js (easylist.txt: 50294) -.supergames.com/.*/ads\.js -# @@||superfilm.pl/advertisement.js (easylist.txt: 50292) -.superfilm.pl/advertisement\.js -# @@||streamlive.to^*/ad/$image (easylist.txt: 50290) -.streamlive.to/.*/ad/ -# @@||streamlive.to/js/ads.js (easylist.txt: 50289) -.streamlive.to/js/ads\.js -# @@||streamin.to/adblock/advert.js (easylist.txt: 50287) -.streamin.to/adblock/advert\.js -# @@||streamcloud.eu^$xmlhttprequest (easylist.txt: 50286) -.streamcloud.eu -# @@||stickgames.com^*/ads.js (easylist.txt: 50283) -.stickgames.com/.*/ads\.js -# @@||startribune.com^$generichide (easylist.txt: 50280) -.startribune.com -# @@||stackexchange.com/affiliate/ (easylist.txt: 50279) -.stackexchange.com/affiliate/ -# @@||srnet.eu^$script (easylist.txt: 50278) -.srnet.eu -# @@||springstreetads.com/scripts/advertising.js (easylist.txt: 50277) -.springstreetads.com/scripts/advertising\.js -# @@||speedpremium.info^$script (easylist.txt: 50275) -.speedpremium.info -# @@||spaste.com^$script (easylist.txt: 50274) -.spaste.com -# @@||sparkylinux.org/images/ad/$image (easylist.txt: 50273) -.sparkylinux.org/images/ad/ -# @@||sounddrain.net^*/advertisement.js (easylist.txt: 50272) -.sounddrain.net/.*/advertisement\.js -# @@||sominaltvfilms.com/wp-content/*/adbanner/$image (easylist.txt: 50269) -.sominaltvfilms.com/wp-content/.*/adbanner/ -# @@||sockshare.com/js/$script (easylist.txt: 50267) -.sockshare.com/js/ -# @@||skidrowcrack.com/advertisement.js (easylist.txt: 50259) -.skidrowcrack.com/advertisement\.js -# @@||sizedrive.com/js/fuckadblock.js (easylist.txt: 50257) -.sizedrive.com/js/fuckadblock\.js -# @@||sitepoint.com^*/ad-server.js (easylist.txt: 50255) -.sitepoint.com/.*/ad-server\.js -# @@||siamfishing.com^*/advert.js (easylist.txt: 50254) -.siamfishing.com/.*/advert\.js -# @@||showsport-tv.com/adv*.js (easylist.txt: 50252) -.showsport-tv.com/adv.*\.js -# @@||shimory.com/js/show_ads.js (easylist.txt: 50251) -.shimory.com/js/show_ads\.js -# @@||sheepskinproxy.com/js/advertisement.js (easylist.txt: 50250) -.sheepskinproxy.com/js/advertisement\.js -# @@||series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/$script (easylist.txt: 50247) -.series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/ -# @@||senmanga.com/advertisement.js (easylist.txt: 50246) -.senmanga.com/advertisement\.js -# @@||seekingalpha.com^$script (easylist.txt: 50245) -.seekingalpha.com -# @@||securenetsystems.net^*/ads.js (easylist.txt: 50242) -.securenetsystems.net/.*/ads\.js -# @@||scoutingbook.com/js/adsense.js (easylist.txt: 50239) -.scoutingbook.com/js/adsense\.js -# @@||scan-manga.com/ads/banner.jpg$image (easylist.txt: 50237) -.scan-manga.com/ads/banner\.jpg -# @@||scan-manga.com/ads.html (easylist.txt: 50236) -.scan-manga.com/ads\.html -# @@||sawlive.tv/adscript.js (easylist.txt: 50234) -.sawlive.tv/adscript\.js -# @@||savevideo.me/images/banner_ads.gif (easylist.txt: 50233) -.savevideo.me/images/banner_ads\.gif -# @@||sankakustatic.com^$script (easylist.txt: 50229) -.sankakustatic.com -# @@||sankakucomplex.com^$script (easylist.txt: 50228) -.sankakucomplex.com -# @@||saikoanimes.net^*/advertisement.js (easylist.txt: 50227) -.saikoanimes.net/.*/advertisement\.js -# @@||saavn.com/ads/search_config_ad.php?$subdocument (easylist.txt: 50225) -.saavn.com/ads/search_config_ad\.php\? -# @@||runners.es^*/advertisement.js (easylist.txt: 50224) -.runners.es/.*/advertisement\.js -# @@||rincondelvago.com^*_adsense.js (easylist.txt: 50218) -.rincondelvago.com/.*_adsense\.js -# @@||revclouds.com^$generichide (easylist.txt: 50216) -.revclouds.com -# @@||redtube.com*/adframe.js (easylist.txt: 50209) -.redtube.com*./(.*/)?adframe\.js -# @@||ratebeer.com/javascript/advertisement.js (easylist.txt: 50206) -.ratebeer.com/javascript/advertisement\.js -# @@||rapidmoviez.com/files/php/mgid-ad$subdocument (easylist.txt: 50205) -.rapidmoviez.com/files/php/mgid-ad -# @@||rapidmoviez.com/ad$image,subdocument (easylist.txt: 50204) -.rapidmoviez.com/ad -# @@||rapid8.com^$script (easylist.txt: 50203) -.rapid8.com -# @@||radioio.com^*/adframe.js (easylist.txt: 50202) -.radioio.com/.*/adframe\.js -# @@||radioaficion.com/HamNews/*/ad$image (easylist.txt: 50200) -.radioaficion.com/HamNews/.*/ad -# @@||radar-toulouse.fr/advertisement.js (easylist.txt: 50199) -.radar-toulouse.fr/advertisement\.js -# @@||racedepartment.com^*/advertisement.js (easylist.txt: 50197) -.racedepartment.com/.*/advertisement\.js -# @@||qrrro.com^*/adhandler/ (easylist.txt: 50196) -.qrrro.com/.*/adhandler/ -# @@||puromarketing.com/js/advertisement.js (easylist.txt: 50192) -.puromarketing.com/js/advertisement\.js -# @@||pubdirecte.com^*/advertisement.js (easylist.txt: 50191) -.pubdirecte.com/.*/advertisement\.js -# @@||psarips.com^$script (easylist.txt: 50189) -.psarips.com -# @@||protect-url.net^$script,~third-party (easylist.txt: 50188) -.protect-url.net -# @@||primewire.ag/js/advertisement.js (easylist.txt: 50185) -.primewire.ag/js/advertisement\.js -# @@||primeshare.tv^*/advertisement.js (easylist.txt: 50184) -.primeshare.tv/.*/advertisement\.js -# @@||primeshare.tv^*/adframe.js (easylist.txt: 50183) -.primeshare.tv/.*/adframe\.js -# @@||premiumleecher.com/inc/adsense.js (easylist.txt: 50181) -.premiumleecher.com/inc/adsense\.js -# @@||premiumleecher.com/inc/adframe.js (easylist.txt: 50180) -.premiumleecher.com/inc/adframe\.js -# @@||playindiafilms.com/advertisement.js (easylist.txt: 50170) -.playindiafilms.com/advertisement\.js -# @@||playhd.eu/advertisement.js (easylist.txt: 50169) -.playhd.eu/advertisement\.js -# @@||player.utv.ie/assets/js/adframe.js (easylist.txt: 50168) -.player.utv.ie/assets/js/adframe\.js -# @@||player.foxfdm.com^*/playback.js$xmlhttprequest (easylist.txt: 50167) -.player.foxfdm.com/.*/playback\.js -# @@||pipocas.tv/js/advertisement.js (easylist.txt: 50164) -.pipocas.tv/js/advertisement\.js -# @@||photofacefun.com^*/adblock.js (easylist.txt: 50161) -.photofacefun.com/.*/adblock\.js -# @@||phoronix.com/advertisement.js (easylist.txt: 50160) -.phoronix.com/advertisement\.js -# @@||perkuinternete.lt/modules/mod_jpayday/js/advertisement.js (easylist.txt: 50158) -.perkuinternete.lt/modules/mod_jpayday/js/advertisement\.js -# @@||paste.org/style/adframe.js (easylist.txt: 50154) -.paste.org/style/adframe\.js -# @@||pandora.com/static/ads/ (easylist.txt: 50150) -.pandora.com/static/ads/ -# @@||overclock3d.net/js/advert.js (easylist.txt: 50135) -.overclock3d.net/js/advert\.js -# @@||openx.gamereactor.dk/multi.php?$script (easylist.txt: 50127) -.openx.gamereactor.dk/multi\.php\? -# @@||openspeedtest.com/advertisement.js (easylist.txt: 50126) -.openspeedtest.com/advertisement\.js -# @@||openrunner.com/js/advertisement.js (easylist.txt: 50125) -.openrunner.com/js/advertisement\.js -# @@||onvasortir.com/advert$script (easylist.txt: 50117) -.onvasortir.com/advert -# @@||onrpg.com/advertisement.js (easylist.txt: 50116) -.onrpg.com/advertisement\.js -# @@||onlinevideoconverter.com^*ad*.js (easylist.txt: 50115) -.onlinevideoconverter.com/.*ad.*\.js -# @@||oneplay.tv/embed/js/fuckadblock.js (easylist.txt: 50110) -.oneplay.tv/embed/js/fuckadblock\.js -# @@||nzbstars.com*/advertisement.js (easylist.txt: 50106) -.nzbstars.com*./(.*/)?advertisement\.js -# @@||nowvideo.to/banner.php?$script (easylist.txt: 50105) -.nowvideo.to/banner\.php\? -# @@||nowvideo.sx/banner.php?$script (easylist.txt: 50104) -.nowvideo.sx/banner\.php\? -# @@||nowvideo.li/banner.php?$script (easylist.txt: 50103) -.nowvideo.li/banner\.php\? -# @@||nowdownload.to/banner.php?$script (easylist.txt: 50102) -.nowdownload.to/banner\.php\? -# @@||novamov.com/banner.php?$script (easylist.txt: 50101) -.novamov.com/banner\.php\? -# @@||nosteam.ro^*/advertisement.js (easylist.txt: 50099) -.nosteam.ro/.*/advertisement\.js -# @@||nosteam.ro/advertisement.js (easylist.txt: 50098) -.nosteam.ro/advertisement\.js -# @@||nonags.com^*/ad$image (easylist.txt: 50096) -.nonags.com/.*/ad -# @@||nextthreedays.com/Include/Javascript/AdFunctions.js (easylist.txt: 50092) -.nextthreedays.com/Include/Javascript/AdFunctions\.js -# @@||next-episode.net^$script (easylist.txt: 50091) -.next-episode.net -# @@||nettavisen.no^*/advertisement.js (easylist.txt: 50088) -.nettavisen.no/.*/advertisement\.js -# @@||needrom.com/advert1.js (easylist.txt: 50087) -.needrom.com/advert1\.js -# @@||ndtv.com/static/js/advertisement.js (easylist.txt: 50086) -.ndtv.com/static/js/advertisement\.js -# @@||myiplayer.com/ad*.js (easylist.txt: 50079) -.myiplayer.com/ad.*\.js -# @@||myfreeforum.org/advertisement.js (easylist.txt: 50078) -.myfreeforum.org/advertisement\.js -# @@||myfineforum.org/advertisement.js (easylist.txt: 50077) -.myfineforum.org/advertisement\.js -# @@||mybannermaker.com/banner.php$~third-party (easylist.txt: 50076) -.mybannermaker.com/banner\.php -# @@||mwfiles.net/advertisement.js (easylist.txt: 50075) -.mwfiles.net/advertisement\.js -# @@||multiup.org/img/theme/*?$image (easylist.txt: 50071) -.multiup.org/img/theme/.*\? -# @@||mrtzcmp3.net/advertisement.js (easylist.txt: 50069) -.mrtzcmp3.net/advertisement\.js -# @@||mp3clan.com^*/advertisement.js (easylist.txt: 50064) -.mp3clan.com/.*/advertisement\.js -# @@||mousebreaker.com/scripts/ads.js (easylist.txt: 50060) -.mousebreaker.com/scripts/ads\.js -# @@||moon-faucet.tk/advertisement.js (easylist.txt: 50059) -.moon-faucet.tk/advertisement\.js -# @@||monsoonads.com:8080/crossdomain.xml$object-subrequest (easylist.txt: 50057) -.monsoonads.com:8080/crossdomain\.xml -# @@||monsoonads.com/crossdomain.xml$object-subrequest (easylist.txt: 50056) -.monsoonads.com/crossdomain\.xml -# @@||monova.unblocked.la^$generichide (easylist.txt: 50055) -.monova.unblocked.la -# @@||monova.unblocked.la/js/adframe.js (easylist.txt: 50054) -.monova.unblocked.la/js/adframe\.js -# @@||monova.org^$generichide (easylist.txt: 50053) -.monova.org -# @@||monova.org/js/adframe.js (easylist.txt: 50052) -.monova.org/js/adframe\.js -# @@||moneyinpjs.com/advertisement.js (easylist.txt: 50051) -.moneyinpjs.com/advertisement\.js -# @@||moje-dzialdowo.pl/images/*.swf|$object (easylist.txt: 50050) -.moje-dzialdowo.pl/images/.*\.swf$ -# @@||moje-dzialdowo.pl/delivery/ajs.php?zoneid=$script (easylist.txt: 50049) -.moje-dzialdowo.pl/delivery/ajs\.php\?zoneid= -# @@||mobinozer.com^*/advert.js (easylist.txt: 50048) -.mobinozer.com/.*/advert\.js -# @@||mmatko.com/images/ad/$image (easylist.txt: 50047) -.mmatko.com/images/ad/ -# @@||mma-core.com/Scripts/adscript.js (easylist.txt: 50046) -.mma-core.com/Scripts/adscript\.js -# @@||mix.dj^*/advertisement.js (easylist.txt: 50045) -.mix.dj/.*/advertisement\.js -# @@||mix.dj/jscripts/jquery/mdj_adverts.js (easylist.txt: 50044) -.mix.dj/jscripts/jquery/mdj_adverts\.js -# @@||miniclipcdn.com/js/advertisement.js (easylist.txt: 50042) -.miniclipcdn.com/js/advertisement\.js -# @@||mgcash.com/common/adblock.js (easylist.txt: 50033) -.mgcash.com/common/adblock\.js -# @@||megawypas.pl/includes/adframe.js (easylist.txt: 50032) -.megawypas.pl/includes/adframe\.js -# @@||megavideodownloader.com/adframe.js (easylist.txt: 50031) -.megavideodownloader.com/adframe\.js -# @@||megahd.me^*/advertisement.js (easylist.txt: 50030) -.megahd.me/.*/advertisement\.js -# @@||megadown.us/advertisement.js (easylist.txt: 50029) -.megadown.us/advertisement\.js -# @@||maxcheaters.com/public/js/jsLoader.js (easylist.txt: 50021) -.maxcheaters.com/public/js/jsLoader\.js -# @@||marketmilitia.org/advertisement.js (easylist.txt: 50015) -.marketmilitia.org/advertisement\.js -# @@||mangakaka.com^*/advertiser.js (easylist.txt: 50014) -.mangakaka.com/.*/advertiser\.js -# @@||mangakaka.com/ad/$subdocument (easylist.txt: 50013) -.mangakaka.com/ad/ -# @@||mangahost.com/ads.js? (easylist.txt: 50012) -.mangahost.com/ads\.js\? -# @@||mangahop.com^$generichide (easylist.txt: 50011) -.mangahop.com -# @@||mangabird.me/sites/default/files/manga/*/advertise-$image (easylist.txt: 50010) -.mangabird.me/sites/default/files/manga/.*/advertise- -# @@||mangabird.com/sites/all/themes/zen/js/advertiser.js (easylist.txt: 50008) -.mangabird.com/sites/all/themes/zen/js/advertiser\.js -# @@||manga2u.co/css/advertiser.js (easylist.txt: 50007) -.manga2u.co/css/advertiser\.js -# @@||mamahd.com/advertisement.js (easylist.txt: 50005) -.mamahd.com/advertisement\.js -# @@||makemehost.com/js/ads.js (easylist.txt: 50004) -.makemehost.com/js/ads\.js -# @@||majorleaguegaming.com^*.png?*=$image (easylist.txt: 50003) -.majorleaguegaming.com/.*\.png\?.*= -# @@||majorleaguegaming.com/live/assets/advertisement-*.js (easylist.txt: 50001) -.majorleaguegaming.com/live/assets/advertisement-.*\.js -# @@||magesy.be/advertisement.js (easylist.txt: 49999) -.magesy.be/advertisement\.js -# @@||macobserver.com/js/adlink.js (easylist.txt: 49997) -.macobserver.com/js/adlink\.js -# @@||lpmanager.com^*/fuckadblock.js (easylist.txt: 49992) -.lpmanager.com/.*/fuckadblock\.js -# @@||lpg-forum.pl/advertise.js (easylist.txt: 49991) -.lpg-forum.pl/advertise\.js -# @@||litecoiner.net/advertisement.js (easylist.txt: 49987) -.litecoiner.net/advertisement\.js -# @@||litecoin-faucet.tk/advertisement.js (easylist.txt: 49986) -.litecoin-faucet.tk/advertisement\.js -# @@||liquidcompass.net/js/advertisement.js (easylist.txt: 49985) -.liquidcompass.net/js/advertisement\.js -# @@||lilfile.com/js/advertise.js (easylist.txt: 49980) -.lilfile.com/js/advertise\.js -# @@||lilfile.com/js/advertise-2.js (easylist.txt: 49979) -.lilfile.com/js/advertise-2\.js -# @@||lifehacker.com.au^*/ads.js (easylist.txt: 49978) -.lifehacker.com.au/.*/ads\.js -# @@||liberallogic101.com/show_ads.js (easylist.txt: 49977) -.liberallogic101.com/show_ads\.js -# @@||leecher.us/assets/img/*/ads/$image (easylist.txt: 49973) -.leecher.us/assets/img/.*/ads/ -# @@||leaguesecretary.com/advertisement.js (easylist.txt: 49972) -.leaguesecretary.com/advertisement\.js -# @@||lasprovincias.es^*/adframe.js (easylist.txt: 49970) -.lasprovincias.es/.*/adframe\.js -# @@||lasexta.com/adsxml/$object-subrequest (easylist.txt: 49969) -.lasexta.com/adsxml/ -# @@||kotaku.com.au^*/ads.js (easylist.txt: 49965) -.kotaku.com.au/.*/ads\.js -# @@||koparos.info/ads.php (easylist.txt: 49963) -.koparos.info/ads\.php -# @@||kisscartoon.me/Ads/$subdocument (easylist.txt: 49962) -.kisscartoon.me/Ads/ -# @@||kissanime.com/ads/$image,subdocument (easylist.txt: 49961) -.kissanime.com/ads/ -# @@||kenkenpuzzle.com/assets/ads-$script (easylist.txt: 49960) -.kenkenpuzzle.com/assets/ads- -# @@||kdliker.com/js/advert.js (easylist.txt: 49959) -.kdliker.com/js/advert\.js -# @@||katsomo.fi^*/advertisement.js (easylist.txt: 49958) -.katsomo.fi/.*/advertisement\.js -# @@||katsomo.fi^*/advert.js (easylist.txt: 49957) -.katsomo.fi/.*/advert\.js -# @@||juzupload.com/advert*.js (easylist.txt: 49956) -.juzupload.com/advert.*\.js -# @@||junksport.com/watch/advertisement.js (easylist.txt: 49955) -.junksport.com/watch/advertisement\.js -# @@||juba-get.com^*/advertisement.js (easylist.txt: 49954) -.juba-get.com/.*/advertisement\.js -# @@||jkanime.net^*/advertisement2.js (easylist.txt: 49952) -.jkanime.net/.*/advertisement2\.js -# @@||jkanime.net/assets/js/advertisement.js (easylist.txt: 49951) -.jkanime.net/assets/js/advertisement\.js -# @@||jevvi.es/adblock/$image (easylist.txt: 49949) -.jevvi.es/adblock/ -# @@||iriptv.com/player/ads.js (easylist.txt: 49948) -.iriptv.com/player/ads\.js -# @@||investopedia.com^*/adverts.js (easylist.txt: 49945) -.investopedia.com/.*/adverts\.js -# @@||investopedia.com^*/advertisement.js (easylist.txt: 49944) -.investopedia.com/.*/advertisement\.js -# @@||investopedia.com/public/js/ads.js (easylist.txt: 49942) -.investopedia.com/public/js/ads\.js -# @@||investigationdiscovery.com/shared/ad-enablers/ (easylist.txt: 49941) -.investigationdiscovery.com/shared/ad-enablers/ -# @@||install.wtf/advertisement/advertisement.js (easylist.txt: 49937) -.install.wtf/advertisement/advertisement\.js -# @@||inskinmedia.com/crossdomain.xml$object-subrequest (easylist.txt: 49936) -.inskinmedia.com/crossdomain\.xml -# @@||incredibox.com/js/fuckadblock.js (easylist.txt: 49929) -.incredibox.com/js/fuckadblock\.js -# @@||incredibox.com/js/advertisement.js (easylist.txt: 49928) -.incredibox.com/js/advertisement\.js -# @@||imgsure.com/ads/banner.jpg? (easylist.txt: 49925) -.imgsure.com/ads/banner\.jpg\? -# @@||imgleech.com/ads/banner.jpg? (easylist.txt: 49924) -.imgleech.com/ads/banner\.jpg\? -# @@||imageontime.com/ads/banner.jpg? (easylist.txt: 49919) -.imageontime.com/ads/banner\.jpg\? -# @@||ilive.to/js/advert*.js (easylist.txt: 49914) -.ilive.to/js/advert.*\.js -# @@||iguide.to/js/advertisement.js (easylist.txt: 49913) -.iguide.to/js/advertisement\.js -# @@||ifirstrow.eu^$script (easylist.txt: 49910) -.ifirstrow.eu -# @@||i-stream.pl^*/advertisement.js (easylist.txt: 49906) -.i-stream.pl/.*/advertisement\.js -# @@||hqpdb.com/ads/banner.jpg? (easylist.txt: 49902) -.hqpdb.com/ads/banner\.jpg\? -# @@||hpfanficarchive.com^*/advertisement.js (easylist.txt: 49901) -.hpfanficarchive.com/.*/advertisement\.js -# @@||hexawebhosting.com/adcode.js (easylist.txt: 49895) -.hexawebhosting.com/adcode\.js -# @@||hentai-foundry.com^*/ads.js (easylist.txt: 49894) -.hentai-foundry.com/.*/ads\.js -# @@||hdmovie14.net/js/ad*.js (easylist.txt: 49893) -.hdmovie14.net/js/ad.*\.js -# @@||hdfree.tv/live/ad.php (easylist.txt: 49892) -.hdfree.tv/live/ad\.php -# @@||hardware.no^$script (easylist.txt: 49889) -.hardware.no -# @@||hardware.no/artikler/$image,~third-party (easylist.txt: 49888) -.hardware.no/artikler/ -# @@||hardware.no/ads/$image (easylist.txt: 49887) -.hardware.no/ads/ -# @@||hallpass.com^*/ads.js (easylist.txt: 49886) -.hallpass.com/.*/ads\.js -# @@||hackintosh.zone/adblock/advertisement.js (easylist.txt: 49884) -.hackintosh.zone/adblock/advertisement\.js -# @@||hackers.co.id/adframe/adframe.js (easylist.txt: 49883) -.hackers.co.id/adframe/adframe\.js -# @@||guygames.com^*/ads.js (easylist.txt: 49882) -.guygames.com/.*/ads\.js -# @@||gofirstrow.eu^*/advertisement.js (easylist.txt: 49874) -.gofirstrow.eu/.*/advertisement\.js -# @@||gofirstrow.eu/advertisement.js (easylist.txt: 49873) -.gofirstrow.eu/advertisement\.js -# @@||go4up.com/advertisement.js (easylist.txt: 49871) -.go4up.com/advertisement\.js -# @@||gizmodo.com.au^*/ads.js (easylist.txt: 49869) -.gizmodo.com.au/.*/ads\.js -# @@||girlsocool.com^*/ads.js (easylist.txt: 49868) -.girlsocool.com/.*/ads\.js -# @@||girlsaskguys.com^*/js/ads. (easylist.txt: 49867) -.girlsaskguys.com/.*/js/ads\. -# @@||girlgames.com^*/ads.js (easylist.txt: 49866) -.girlgames.com/.*/ads\.js -# @@||getdebrid.com/advertisement.js (easylist.txt: 49864) -.getdebrid.com/advertisement\.js -# @@||gdataonline.com/exp/textad.js (easylist.txt: 49860) -.gdataonline.com/exp/textad\.js -# @@||gamespot.com/js/ads.js (easylist.txt: 49859) -.gamespot.com/js/ads\.js -# @@||gameslivetv.com/js/advertisement.js (easylist.txt: 49858) -.gameslivetv.com/js/advertisement\.js -# @@||gameshark.com/images/ads/ (easylist.txt: 49857) -.gameshark.com/images/ads/ -# @@||games.washingtonpost.com/Scripts/$script (easylist.txt: 49856) -.games.washingtonpost.com/Scripts/ -# @@||games.latimes.com/Scripts/advert.js (easylist.txt: 49855) -.games.latimes.com/Scripts/advert\.js -# @@||gamersconnexion.com/js/advert.js (easylist.txt: 49854) -.gamersconnexion.com/js/advert\.js -# @@||gamereactor.net/advertisement.js (easylist.txt: 49853) -.gamereactor.net/advertisement\.js -# @@||gamereactor.$script,~third-party (easylist.txt: 49852) -.gamereactor.*. -# @@||gamecopyworld.eu/games/$script (easylist.txt: 49850) -.gamecopyworld.eu/games/ -# @@||gamecopyworld.com/games/$script (easylist.txt: 49849) -.gamecopyworld.com/games/ -# @@||gallerynova.se^*/advertisement.js (easylist.txt: 49846) -.gallerynova.se/.*/advertisement\.js -# @@||gallery.aethereality.net/advertisement.js (easylist.txt: 49845) -.gallery.aethereality.net/advertisement\.js -# @@||funniermoments.com^$stylesheet (easylist.txt: 49830) -.funniermoments.com -# @@||funniermoments.com/adframe.js (easylist.txt: 49828) -.funniermoments.com/adframe\.js -# @@||freshdown.net/templates/Blaster/img/*/ads/$image (easylist.txt: 49826) -.freshdown.net/templates/Blaster/img/.*/ads/ -# @@||freesportsbet.com/js/advertisement.js (easylist.txt: 49825) -.freesportsbet.com/js/advertisement\.js -# @@||freegamehosting.nl/js/advertisement.js (easylist.txt: 49823) -.freegamehosting.nl/js/advertisement\.js -# @@||freegamehosting.nl/advertisement.js (easylist.txt: 49822) -.freegamehosting.nl/advertisement\.js -# @@||freebitcoin.wmat.pl^*/advertisement.js (easylist.txt: 49821) -.freebitcoin.wmat.pl/.*/advertisement\.js -# @@||freebitco.in^$script (easylist.txt: 49820) -.freebitco.in -# @@||fm.tuba.pl/tuba3/_js/advert.js (easylist.txt: 49812) -.fm.tuba.pl/tuba3/_js/advert\.js -# @@||fitshr.net^$script,stylesheet (easylist.txt: 49809) -.fitshr.net -# @@||firstrow*.eu^$script (easylist.txt: 49807) -.firstrow*./.*\.eu[^\w%.-] -.firstrow*.eu -# @@||firstonetv.com/ads_advertisement.js (easylist.txt: 49805) -.firstonetv.com/ads_advertisement\.js -# @@||filmweb.pl/adbanner/$script (easylist.txt: 49804) -.filmweb.pl/adbanner/ -# @@||filmux.net/ads/banner.jpg? (easylist.txt: 49802) -.filmux.net/ads/banner\.jpg\? -# @@||filmovizija.in^$script,~third-party,xmlhttprequest (easylist.txt: 49801) -.filmovizija.in -# @@||filmovisaprevodom.net/advertisement.js (easylist.txt: 49800) -.filmovisaprevodom.net/advertisement\.js -# @@||fileice.net/js/advertisement.js (easylist.txt: 49797) -.fileice.net/js/advertisement\.js -# @@||filecom.net/advertisement.js (easylist.txt: 49796) -.filecom.net/advertisement\.js -# @@||fhsload.hopto.org^$script,~third-party (easylist.txt: 49795) -.fhsload.hopto.org -# @@||fhscheck.zapto.org^$script,~third-party (easylist.txt: 49794) -.fhscheck.zapto.org -# @@||ffiles.com/images/mmfiles_ (easylist.txt: 49793) -.ffiles.com/images/mmfiles_ -# @@||fastcompany.com/js/advertisement.js (easylist.txt: 49790) -.fastcompany.com/js/advertisement\.js -# @@||fastcolabs.com/js/advertisement.js (easylist.txt: 49789) -.fastcolabs.com/js/advertisement\.js -# @@||fastcoexist.com/js/advertisement.js (easylist.txt: 49788) -.fastcoexist.com/js/advertisement\.js -# @@||fastcodesign.com/js/advertisement.js (easylist.txt: 49787) -.fastcodesign.com/js/advertisement\.js -# @@||fastcocreate.com/js/advertisement.js (easylist.txt: 49786) -.fastcocreate.com/js/advertisement\.js -# @@||ezcast.tv/static/scripts/adscript.js (easylist.txt: 49784) -.ezcast.tv/static/scripts/adscript\.js -# @@||exsite.pl^*/advert.js (easylist.txt: 49783) -.exsite.pl/.*/advert\.js -# @@||exrapidleech.info/templates/$image (easylist.txt: 49781) -.exrapidleech.info/templates/ -# @@||exoclick.com/wp-content/$image,third-party (easylist.txt: 49778) -.exoclick.com/wp-content/ -# @@||exashare.com/ads.html$subdocument (easylist.txt: 49777) -.exashare.com/ads\.html -# @@||eventhubs.com^*.$script (easylist.txt: 49776) -.eventhubs.com/.*\. -# @@||eu5.org^*/advert.js (easylist.txt: 49774) -.eu5.org/.*/advert\.js -# @@||eskago.pl/html/js/advertisement.js (easylist.txt: 49773) -.eskago.pl/html/js/advertisement\.js -# @@||eskago.pl/html/js/adv.bbelements.js (easylist.txt: 49772) -.eskago.pl/html/js/adv\.bbelements\.js -# @@||eskago.pl/html/js/ads-banner.js (easylist.txt: 49771) -.eskago.pl/html/js/ads-banner\.js -# @@||eska.pl^*bbelements.js (easylist.txt: 49770) -.eska.pl/.*bbelements\.js -# @@||eosads.com/adver$script (easylist.txt: 49765) -.eosads.com/adver -# @@||elrellano.com/ad/ad.js (easylist.txt: 49763) -.elrellano.com/ad/ad\.js -# @@||elektrotanya.com/ads/$script,~third-party (easylist.txt: 49762) -.elektrotanya.com/ads/ -# @@||eclypsia.com^$script,~third-party (easylist.txt: 49759) -.eclypsia.com -# @@||ebkimg.com/banners/ (easylist.txt: 49758) -.ebkimg.com/banners/ -# @@||dutplanet.net/ajax/reclamecheck.php?$xmlhttprequest (easylist.txt: 49754) -.dutplanet.net/ajax/reclamecheck\.php\? -# @@||drugs.com^$subdocument,~third-party (easylist.txt: 49753) -.drugs.com -# @@||dressuppink.com^*/ads.js (easylist.txt: 49751) -.dressuppink.com/.*/ads\.js -# @@||dressup.com^*/ads.js (easylist.txt: 49749) -.dressup.com/.*/ads\.js -# @@||doodle.com/builtstatic/*/doodle/js/$script (easylist.txt: 49742) -.doodle.com/builtstatic/.*/doodle/js/ -# @@||dontdrinkandroot.net/js/adframe.js (easylist.txt: 49741) -.dontdrinkandroot.net/js/adframe\.js -# @@||domain.com/ads.html (easylist.txt: 49740) -.domain.com/ads\.html -# @@||dogefaucet.com^*/advertisement.js (easylist.txt: 49738) -.dogefaucet.com/.*/advertisement\.js -# @@||doge-faucet.tk/advertisement.js (easylist.txt: 49736) -.doge-faucet.tk/advertisement\.js -# @@||dizi-mag.com/ads/$subdocument (easylist.txt: 49730) -.dizi-mag.com/ads/ -# @@||dinozap.tv/adimages/ (easylist.txt: 49729) -.dinozap.tv/adimages/ -# @@||destinypublicevents.com/src/advertisement.js (easylist.txt: 49726) -.destinypublicevents.com/src/advertisement\.js -# @@||decomaniacos.es^*/advertisement.js (easylist.txt: 49720) -.decomaniacos.es/.*/advertisement\.js -# @@||d2anfhdgjxf8s1.cloudfront.net/ajs.php?adserver=$script (easylist.txt: 49709) -.d2anfhdgjxf8s1.cloudfront.net/ajs\.php\?adserver= -# @@||crazygallery.info/ads/$script (easylist.txt: 49705) -.crazygallery.info/ads/ -# @@||coolgames.com^*/ads.js (easylist.txt: 49695) -.coolgames.com/.*/ads\.js -# @@||cookinggames.com^*/ads.js (easylist.txt: 49694) -.cookinggames.com/.*/ads\.js -# @@||computerworld.com/www/js/ads/gpt_includes.js (easylist.txt: 49692) -.computerworld.com/www/js/ads/gpt_includes\.js -# @@||coinurl.com/get.php?id=18045 (easylist.txt: 49689) -.coinurl.com/get\.php\?id=18045 -# @@||coincheckin.com/js/adframe.js (easylist.txt: 49687) -.coincheckin.com/js/adframe\.js -# @@||codingcrazy.com/demo/adframe.js (easylist.txt: 49686) -.codingcrazy.com/demo/adframe\.js -# @@||cloudtime.to/banner.php?$script (easylist.txt: 49683) -.cloudtime.to/banner\.php\? -# @@||cityam.com^$generichide (easylist.txt: 49677) -.cityam.com -# @@||cinestrenostv.tv/reproductores/adblock.js (easylist.txt: 49676) -.cinestrenostv.tv/reproductores/adblock\.js -# @@||channel4.com/p/c4_live/VPAIDAdRenderer.swf$object-subrequest (easylist.txt: 49668) -.channel4.com/p/c4_live/VPAIDAdRenderer\.swf -# @@||channel4.com/p/c4_live/Video2AdRenderer.swf$object-subrequest (easylist.txt: 49667) -.channel4.com/p/c4_live/Video2AdRenderer\.swf -# @@||channel4.com/p/c4_live/UberlayAdRenderer.swf$object-subrequest (easylist.txt: 49666) -.channel4.com/p/c4_live/UberlayAdRenderer\.swf -# @@||channel4.com/p/c4_live/PauseAdExtension.swf$object-subrequest (easylist.txt: 49665) -.channel4.com/p/c4_live/PauseAdExtension\.swf -# @@||channel4.com/p/c4_live/ExternalHTMLAdRenderer.swf$object-subrequest (easylist.txt: 49664) -.channel4.com/p/c4_live/ExternalHTMLAdRenderer\.swf -# @@||channel4.com/ad/l/1?|$object-subrequest (easylist.txt: 49663) -.channel4.com/ad/l/1\?$ -# @@||celogeek.com/stylesheets/blogads.css (easylist.txt: 49660) -.celogeek.com/stylesheets/blogads\.css -# @@||cdnco.us^$script (easylist.txt: 49659) -.cdnco.us -# @@||cdn-seekingalpha.com^*/ads.js (easylist.txt: 49655) -.cdn-seekingalpha.com/.*/ads\.js -# @@||catchvideo.net/adframe.js (easylist.txt: 49652) -.catchvideo.net/adframe\.js -# @@||casadossegredos.tv/ads/ads_$subdocument (easylist.txt: 49650) -.casadossegredos.tv/ads/ads_ -# @@||captchme.net/js/advertisement.js (easylist.txt: 49649) -.captchme.net/js/advertisement\.js -# @@||captchme.net/js/advertisement-min.js (easylist.txt: 49648) -.captchme.net/js/advertisement-min\.js -# @@||bulletproofserving.com/scripts/ads.js (easylist.txt: 49643) -.bulletproofserving.com/scripts/ads\.js -# @@||btspread.com/eroex.js (easylist.txt: 49641) -.btspread.com/eroex\.js -# @@||btava.com^$script (easylist.txt: 49640) -.btava.com -# @@||boxxod.net/advertisement.js (easylist.txt: 49638) -.boxxod.net/advertisement\.js -# @@||boincstats.com/js/adframe.js (easylist.txt: 49637) -.boincstats.com/js/adframe\.js -# @@||bitcoiner.net/advertisement.js (easylist.txt: 49633) -.bitcoiner.net/advertisement\.js -# @@||binbox.io/adblock.js (easylist.txt: 49626) -.binbox.io/adblock\.js -# @@||binbox.io/ad/$subdocument (easylist.txt: 49625) -.binbox.io/ad/ -# @@||bilzonen.dk/scripts/ads.js (easylist.txt: 49624) -.bilzonen.dk/scripts/ads\.js -# @@||bestream.tv/advert*.js (easylist.txt: 49620) -.bestream.tv/advert.*\.js -# @@||bestofmedia.com^*/advertisement.js (easylist.txt: 49619) -.bestofmedia.com/.*/advertisement\.js -# @@||beemp3s.org/adreactor/$script (easylist.txt: 49615) -.beemp3s.org/adreactor/ -# @@||beelink.in/advertisement.js (easylist.txt: 49614) -.beelink.in/advertisement\.js -# @@||bdrip.ws/web_data/*/ad$image (easylist.txt: 49612) -.bdrip.ws/web_data/.*/ad -# @@||backin.net/advertisement.js (easylist.txt: 49609) -.backin.net/advertisement\.js -# @@||avforums.com/*ad$script (easylist.txt: 49607) -.avforums.com/.*ad -# @@||autolikergroup.com/advertisement.js (easylist.txt: 49605) -.autolikergroup.com/advertisement\.js -# @@||autogespot.*/JavaScript/ads.js? (easylist.txt: 49604) -.autogespot.*./(.*/)?JavaScript/ads\.js\? -# @@||auroravid.to/banner.php (easylist.txt: 49603) -.auroravid.to/banner\.php -# @@||auditude.com/player/js/lib/aud.html5player.js (easylist.txt: 49602) -.auditude.com/player/js/lib/aud\.html5player\.js -# @@||atresplayer.com/static/js/advertisement.js (easylist.txt: 49600) -.atresplayer.com/static/js/advertisement\.js -# @@||atresplayer.com/adsxml/$object-subrequest (easylist.txt: 49599) -.atresplayer.com/adsxml/ -# @@||atresmedia.com/adsxml/$object-subrequest (easylist.txt: 49598) -.atresmedia.com/adsxml/ -# @@||aseanlegacy.net/images/ads.png (easylist.txt: 49596) -.aseanlegacy.net/images/ads\.png -# @@||aseanlegacy.net/assets/advertisement.js (easylist.txt: 49595) -.aseanlegacy.net/assets/advertisement\.js -# @@||aseanlegacy.net/ad*.js (easylist.txt: 49594) -.aseanlegacy.net/ad.*\.js -# @@||arto.com/includes/js/adtech.de/script.axd/adframe.js? (easylist.txt: 49593) -.arto.com/includes/js/adtech\.de/script\.axd/adframe\.js\? -# @@||ar51.eu/ad/advertisement.js (easylist.txt: 49592) -.ar51.eu/ad/advertisement\.js -# @@||apkmirror.com/wp-content/themes/APKMirror/js/ads.js (easylist.txt: 49588) -.apkmirror.com/wp-content/themes/APKMirror/js/ads\.js -# @@||anti-adblock-scripts.googlecode.com/files/adscript.js (easylist.txt: 49587) -.anti-adblock-scripts.googlecode.com/files/adscript\.js -# @@||antena3.com/adsxml/$object-subrequest (easylist.txt: 49586) -.antena3.com/adsxml/ -# @@||anisearch.com^*/ads.js? (easylist.txt: 49583) -.anisearch.com/.*/ads\.js\? -# @@||animesproject.com^*/fuckadblock.js (easylist.txt: 49580) -.animesproject.com/.*/fuckadblock\.js -# @@||animecrave.com/_content/$script (easylist.txt: 49578) -.animecrave.com/_content/ -# @@||ancensored.com/sites/all/modules/player/images/ad.jpg (easylist.txt: 49574) -.ancensored.com/sites/all/modules/player/images/ad\.jpg -# @@||amk.to/js/adcode.js? (easylist.txt: 49573) -.amk.to/js/adcode\.js\? -# @@||amazonaws.com/ssbss.ss/$script (easylist.txt: 49570) -.amazonaws.com/ssbss\.ss/ -# @@||amazonaws.com/atzuma/ajs.php?adserver=$script (easylist.txt: 49569) -.amazonaws.com/atzuma/ajs\.php\?adserver= -# @@||allkpop.com/ads.js (easylist.txt: 49566) -.allkpop.com/ads\.js -# @@||alcohoin-faucet.tk/advertisement.js (easylist.txt: 49563) -.alcohoin-faucet.tk/advertisement\.js -# @@||agar.io^*/advertisement.js (easylist.txt: 49557) -.agar.io/.*/advertisement\.js -# @@||afterburnerleech.com/js/show_ads.js (easylist.txt: 49556) -.afterburnerleech.com/js/show_ads\.js -# @@||afdah.tv^$script (easylist.txt: 49553) -.afdah.tv -# @@||afdah.com^$script (easylist.txt: 49552) -.afdah.com -# @@||afdah.co^$script (easylist.txt: 49551) -.afdah.co -# @@||adserver.liverc.com/getBannerVerify.js (easylist.txt: 49541) -.adserver.liverc.com/getBannerVerify\.js -# @@||ads.nipr.ac.jp^$~third-party (easylist.txt: 49530) -.ads.nipr.ac.jp -# @@||ads.clubedohardware.com.br/www/delivery/$script (easylist.txt: 49525) -.ads.clubedohardware.com.br/www/delivery/ -# @@||adf.ly^$generichide (easylist.txt: 49507) -.adf.ly -# @@||adexprt.com/cdn3/*&m=magnet$subdocument (easylist.txt: 49506) -.adexprt.com/cdn3/.*&m=magnet -# @@||adconscious.com/js/fuckadblock.js (easylist.txt: 49505) -.adconscious.com/js/fuckadblock\.js -# @@||ad.leadbolt.net/show_cu.js (easylist.txt: 49498) -.ad.leadbolt.net/show_cu\.js -# @@||ad.filmweb.pl^$script (easylist.txt: 49497) -.ad.filmweb.pl -# @@||9xbuddy.com/js/ads.js (easylist.txt: 49493) -.9xbuddy.com/js/ads\.js -# @@||95.211.184.210/js/advertisement.js (easylist.txt: 49488) -.95.211.184.210/js/advertisement\.js -# @@||4sysops.com^*/adframe.js (easylist.txt: 49486) -.4sysops.com/.*/adframe\.js -# @@||4shared.com^$script,xmlhttprequest (easylist.txt: 49485) -.4shared.com -# @@||4fuckr.com^*/adframe.js (easylist.txt: 49484) -.4fuckr.com/.*/adframe\.js -# @@||360haven.com/adframe.js (easylist.txt: 49482) -.360haven.com/adframe\.js -# @@/wp-prevent-adblocker/*$script,~third-party (easylist.txt: 49453) -/(.*/)?wp-prevent-adblocker/.* -# @@/wp-content/plugins/wordpress-adblock-blocker/adframe.js$~third-party (easylist.txt: 49452) -/(.*/)?wp-content/plugins/wordpress-adblock-blocker/adframe\.js -# @@/wp-content/plugins/simple-adblock-notice/*$script,~third-party (easylist.txt: 49451) -/(.*/)?wp-content/plugins/simple-adblock-notice/.* -# @@/wp-content/plugins/blockalyzer-adblock-counter/*$image,script,~third-party (easylist.txt: 49450) -/(.*/)?wp-content/plugins/blockalyzer-adblock-counter/.* -# @@/wp-content/plugins/anti-block/js/advertisement.js$~third-party (easylist.txt: 49449) -/(.*/)?wp-content/plugins/anti-block/js/advertisement\.js -# @@/wp-content/plugins/adblock-notify-by-bweb/js/advertisement.js$~third-party (easylist.txt: 49448) -/(.*/)?wp-content/plugins/adblock-notify-by-bweb/js/advertisement\.js -# @@/blockalyzer-adblock-counter/js/advertisement.js$script,~third-party (easylist.txt: 49440) -/(.*/)?blockalyzer-adblock-counter/js/advertisement\.js -# @@/adBlockDetector/*$~third-party (easylist.txt: 49429) -/(.*/)?adBlockDetector/.* -# @@||zillow.com/ads/FlexAd.htm?did=$subdocument (easylist.txt: 49393) -.zillow.com/ads/FlexAd\.htm\?did= -# @@||ziehl-abegg.com/images/img_adverts/$~third-party (easylist.txt: 49392) -.ziehl-abegg.com/images/img_adverts/ -# @@||zeenews.india.com/ads/jw/player.swf$object (easylist.txt: 49391) -.zeenews.india.com/ads/jw/player\.swf -# @@||zedo.com/crossdomain.xml$object-subrequest (easylist.txt: 49388) -.zedo.com/crossdomain\.xml -# @@||zattoo.com/advertising/channelswitch/$subdocument (easylist.txt: 49386) -.zattoo.com/advertising/channelswitch/ -# @@||zattoo.com/?advideo/*;vidAS=PRE_ROLL;$object-subrequest (easylist.txt: 49385) -.zattoo.com/\?advideo/.*;vidAS=PRE_ROLL; -# @@||zap2it.com/ads/newsletter/$image,~third-party (easylist.txt: 49384) -.zap2it.com/ads/newsletter/ -# @@||yumenetworks.com/crossdomain.xml$object-subrequest (easylist.txt: 49382) -.yumenetworks.com/crossdomain\.xml -# @@||youtube.com^*_adsense_$xmlhttprequest (easylist.txt: 49375) -.youtube.com/.*_adsense_ -# @@||youtube.com/yt/css/www-advertise.css (easylist.txt: 49374) -.youtube.com/yt/css/www-advertise\.css -# @@||youtube.com/yt/advertise/medias/images/$image (easylist.txt: 49373) -.youtube.com/yt/advertise/medias/images/ -# @@||yokosonews.com/files/cache/ (easylist.txt: 49371) -.yokosonews.com/files/cache/ -# @@||ykhandler.com/adframe.js (easylist.txt: 49370) -.ykhandler.com/adframe\.js -# @@||yimg.com^*/java/promotions/js/ad_eo_1.1.js (easylist.txt: 49369) -.yimg.com/.*/java/promotions/js/ad_eo_1\.1\.js -# @@||yimg.com^*&yat/js/ads_ (easylist.txt: 49366) -.yimg.com/.*&yat/js/ads_ -# @@||yimg.com/zz/combo?*&*.js (easylist.txt: 49365) -.yimg.com/zz/combo\?.*&.*\.js -# @@||yellupload.com/yell/videoads/yellvideoplayer.swf? (easylist.txt: 49361) -.yellupload.com/yell/videoads/yellvideoplayer\.swf\? -# @@||yellupload.com/yell/videoads/*.flv| (easylist.txt: 49360) -.yellupload.com/yell/videoads/.*\.flv$ -# @@||yellowpages.com.mt/Images/Design/Buttons/advert.png (easylist.txt: 49359) -.yellowpages.com.mt/Images/Design/Buttons/advert\.png -# @@||yahoo.net/1/adnetwork/$object-subrequest (easylist.txt: 49356) -.yahoo.net/1/adnetwork/ -# @@||yahoo.com/combo?$stylesheet (easylist.txt: 49355) -.yahoo.com/combo\? -# @@||xbox.com/assets/ad/$image,~third-party (easylist.txt: 49352) -.xbox.com/assets/ad/ -# @@||www.networkadvertising.org/choices/|$document (easylist.txt: 49350) -.www.networkadvertising.org/choices/$ -# @@||www.google.com/ads/preferences/$image,script,subdocument (easylist.txt: 49349) -.www.google.com/ads/preferences/ -# @@||www.google.*/settings/u/0/ads/preferences/$~third-party,xmlhttprequest (easylist.txt: 49348) -.www.google.*./(.*/)?settings/u/0/ads/preferences/ -# @@||www.google.*/search?$subdocument (easylist.txt: 49347) -.www.google.*./(.*/)?search\? -# @@||www.google.*/aclk?*&adurl=$subdocument,~third-party (easylist.txt: 49346) -.www.google.*./(.*/)?aclk\?.*&adurl= -# @@||www.facebook.com/ad.*^ajaxpipe^$subdocument,~third-party (easylist.txt: 49345) -.www.facebook.com/ad\..*[^\w%.-]ajaxpipe[^\w%.-] -# @@||wrapper.teamxbox.com/a?size=headermainad (easylist.txt: 49343) -.wrapper.teamxbox.com/a\?size=headermainad -# @@||wpthemedetector.com/ad/$~third-party (easylist.txt: 49342) -.wpthemedetector.com/ad/ -# @@||wp.com/_static/*/criteo.js (easylist.txt: 49338) -.wp.com/_static/.*/criteo\.js -# @@||wortech.ac.uk/publishingimages/adverts/ (easylist.txt: 49337) -.wortech.ac.uk/publishingimages/adverts/ -# @@||worldstarhiphop.com^*/dj2.swf (easylist.txt: 49336) -.worldstarhiphop.com/.*/dj2\.swf -# @@||wisegeek.com/res/contentad/ (easylist.txt: 49335) -.wisegeek.com/res/contentad/ -# @@||wirefly.com/_images/ads/ (easylist.txt: 49334) -.wirefly.com/_images/ads/ -# @@||wired.com^*/cn-fe-ads/cn.dart.js (easylist.txt: 49333) -.wired.com/.*/cn-fe-ads/cn\.dart\.js -# @@||winnipegsun.com/assets/js/dfp.js? (easylist.txt: 49332) -.winnipegsun.com/assets/js/dfp\.js\? -# @@||williamsauction.com/Resources/images/ads/$~third-party (easylist.txt: 49331) -.williamsauction.com/Resources/images/ads/ -# @@||wikia.nocookie.net^*/images/$image (easylist.txt: 49330) -.wikia.nocookie.net/.*/images/ -# @@||wikia.com/__spotlights/spc.php?$xmlhttprequest (easylist.txt: 49329) -.wikia.com/__spotlights/spc\.php\? -# @@||widgetserver.com/syndication/get_widget.html?*&widget.adplacement=$subdocument (easylist.txt: 49328) -.widgetserver.com/syndication/get_widget\.html\?.*&widget\.adplacement= -# @@||widgets.cbslocal.com/player/embed?affiliate=$subdocument (easylist.txt: 49326) -.widgets.cbslocal.com/player/embed\?affiliate= -# @@||widget.slide.com^*/ads/*/preroll.swf (easylist.txt: 49325) -.widget.slide.com/.*/ads/.*/preroll\.swf -# @@||widget.breakingburner.com/ad/$subdocument (easylist.txt: 49324) -.widget.breakingburner.com/ad/ -# @@||whittakersworldwide.com/site-media/advertisements/ (easylist.txt: 49322) -.whittakersworldwide.com/site-media/advertisements/ -# @@||whitepages.com^*/google_adsense.js? (easylist.txt: 49321) -.whitepages.com/.*/google_adsense\.js\? -# @@||wellsfargo.com/img/ads/$~third-party (easylist.txt: 49320) -.wellsfargo.com/img/ads/ -# @@||wearetennis.com/pages/home/img/ad-$image (easylist.txt: 49317) -.wearetennis.com/pages/home/img/ad- -# @@||washingtonpost.com^*=/ad/audsci.js (easylist.txt: 49316) -.washingtonpost.com/.*=/ad/audsci\.js -# @@||washingtonpost.com/wpost2/css/combo?*/ads.css (easylist.txt: 49315) -.washingtonpost.com/wpost2/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wpost/css/combo?*/ads.css (easylist.txt: 49314) -.washingtonpost.com/wpost/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wp-srv/ad/wpni_generic_ad.js (easylist.txt: 49313) -.washingtonpost.com/wp-srv/ad/wpni_generic_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp_config.js (easylist.txt: 49312) -.washingtonpost.com/wp-srv/ad/wp_config\.js -# @@||washingtonpost.com/wp-srv/ad/wp_ad.js (easylist.txt: 49311) -.washingtonpost.com/wp-srv/ad/wp_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp.js (easylist.txt: 49310) -.washingtonpost.com/wp-srv/ad/wp\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks_config.js (easylist.txt: 49309) -.washingtonpost.com/wp-srv/ad/textlinks_config\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks.js (easylist.txt: 49308) -.washingtonpost.com/wp-srv/ad/textlinks\.js -# @@||washingtonpost.com/wp-srv/ad/textlink_driver.js (easylist.txt: 49307) -.washingtonpost.com/wp-srv/ad/textlink_driver\.js -# @@||washingtonpost.com/wp-srv/ad/generic_ad.js (easylist.txt: 49306) -.washingtonpost.com/wp-srv/ad/generic_ad\.js -# @@||washingtonpost.com/wp-adv/advertisers/russianow/ (easylist.txt: 49305) -.washingtonpost.com/wp-adv/advertisers/russianow/ -# @@||wappalyzer.com/sites/default/files/icons/$image (easylist.txt: 49304) -.wappalyzer.com/sites/default/files/icons/ -# @@||walmartmoneycard.com^*/shared/ad_rotater.swf (easylist.txt: 49303) -.walmartmoneycard.com/.*/shared/ad_rotater\.swf -# @@||wallpapersmania.com/ad/$image,~third-party (easylist.txt: 49302) -.wallpapersmania.com/ad/ -# @@||wahooads.com/Ads.nsf/$~third-party (easylist.txt: 49301) -.wahooads.com/Ads\.nsf/ -# @@||wahoha.com^$~third-party (easylist.txt: 49300) -.wahoha.com -# @@||vtstage.cbsinteractive.com/plugins/*_adplugin.swf (easylist.txt: 49297) -.vtstage.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vswebapp.com^$~third-party (easylist.txt: 49296) -.vswebapp.com -# @@||vombasavers.com^*.swf?clickTAG=$object,~third-party (easylist.txt: 49295) -.vombasavers.com/.*\.swf\?clickTAG= -# @@||vmagazine.com/web/css/ads.css (easylist.txt: 49294) -.vmagazine.com/web/css/ads\.css -# @@||vk.com/ads?act=$~third-party (easylist.txt: 49292) -.vk.com/ads\?act= -# @@||vizanime.com/ad/get_ads? (easylist.txt: 49291) -.vizanime.com/ad/get_ads\? -# @@||vitalitymall.co.za/images/adrotator/ (easylist.txt: 49290) -.vitalitymall.co.za/images/adrotator/ -# @@||vistek.ca/ads/ (easylist.txt: 49289) -.vistek.ca/ads/ -# @@||virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery.internads.js (easylist.txt: 49288) -.virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery\.internads\.js -# @@||vindicoasset.edgesuite.net/repository/campaigncreative/*/instreamad/$object-subrequest (easylist.txt: 49287) -.vindicoasset.edgesuite.net/repository/campaigncreative/.*/instreamad/ -# @@||villermen.com/minecraft/banner/banner.php$image (easylist.txt: 49286) -.villermen.com/minecraft/banner/banner\.php -# @@||vidtech.cbsinteractive.com/plugins/*_adplugin.swf (easylist.txt: 49285) -.vidtech.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vidspot.net/tmp/status.html?*upload=file$subdocument (easylist.txt: 49284) -.vidspot.net/tmp/status\.html\?.*upload=file -# @@||vidspot.net/cgi-bin/upload.cgi?upload_id=*&X-Progress-ID=*&js_on=*&utype=*&upload_type=$subdocument (easylist.txt: 49283) -.vidspot.net/cgi-bin/upload\.cgi\?upload_id=.*&X-Progress-ID=.*&js_on=.*&utype=.*&upload_type= -# @@||vidspot.net/builtin-$subdocument (easylist.txt: 49282) -.vidspot.net/builtin- -# @@||vidspot.net/blank.html|$subdocument (easylist.txt: 49281) -.vidspot.net/blank\.html$ -# @@||vidible.tv/stage/$media,object,other (easylist.txt: 49280) -.vidible.tv/stage/ -# @@||vidible.tv/prod/$media,object,other (easylist.txt: 49278) -.vidible.tv/prod/ -# @@||videosxml.mobileads.indiatimes.com^$object-subrequest (easylist.txt: 49277) -.videosxml.mobileads.indiatimes.com -# @@||video.nbcuni.com^*/inext_ad_engine/ad_engine_extension.swf (easylist.txt: 49273) -.video.nbcuni.com/.*/inext_ad_engine/ad_engine_extension\.swf -# @@||video.nbcuni.com^*/ad_engine_extension_nbc.swf (easylist.txt: 49272) -.video.nbcuni.com/.*/ad_engine_extension_nbc\.swf -# @@||video.economist.com/adfinder.jsp? (easylist.txt: 49271) -.video.economist.com/adfinder\.jsp\? -# @@||vidcoin.com/adserver/$subdocument,xmlhttprequest (easylist.txt: 49270) -.vidcoin.com/adserver/ -# @@||viamichelin.*/static/advert/sponsoring/itinerarypage/itinerarypage.js (easylist.txt: 49269) -.viamichelin.*./(.*/)?static/advert/sponsoring/itinerarypage/itinerarypage\.js -# @@||viamichelin.*/static/advert/afsquery/afsquery.js (easylist.txt: 49268) -.viamichelin.*./(.*/)?static/advert/afsquery/afsquery\.js -# @@||viamichelin.*/rentacar.js (easylist.txt: 49267) -.viamichelin.*./(.*/)?rentacar\.js -# @@||veetle.com/images/common/ads/ (easylist.txt: 49264) -.veetle.com/images/common/ads/ -# @@||vanityfair.com/ads/js/cn.dart.bun.min.js (easylist.txt: 49263) -.vanityfair.com/ads/js/cn\.dart\.bun\.min\.js -# @@||vancouversun.com/js/adsync/adsynclibrary.js (easylist.txt: 49262) -.vancouversun.com/js/adsync/adsynclibrary\.js -# @@||valueram.com/banners/ads/ (easylist.txt: 49261) -.valueram.com/banners/ads/ -# @@||vagazette.com/hive/images/adv_ (easylist.txt: 49260) -.vagazette.com/hive/images/adv_ -# @@||vad.go.com/dynamicvideoad?$object-subrequest (easylist.txt: 49259) -.vad.go.com/dynamicvideoad\? -# @@||vacationstarter.com/hive/images/adv_ (easylist.txt: 49258) -.vacationstarter.com/hive/images/adv_ -# @@||v.fwmrm.net/p/espn_live/$object-subrequest (easylist.txt: 49256) -.v.fwmrm.net/p/espn_live/ -# @@||v.fwmrm.net/crossdomain.xml$object-subrequest (easylist.txt: 49255) -.v.fwmrm.net/crossdomain\.xml -# @@||utdallas.edu^*/banner.js (easylist.txt: 49251) -.utdallas.edu/.*/banner\.js -# @@||utdallas.edu/maps/images/img/$image (easylist.txt: 49250) -.utdallas.edu/maps/images/img/ -# @@||utdallas.edu/locator/maps/$image (easylist.txt: 49249) -.utdallas.edu/locator/maps/ -# @@||utarget.co.uk/crossdomain.xml$object-subrequest (easylist.txt: 49248) -.utarget.co.uk/crossdomain\.xml -# @@||usps.com/adserver/ (easylist.txt: 49247) -.usps.com/adserver/ -# @@||usanetwork.com^*/usanetwork_ads.s_code.js? (easylist.txt: 49246) -.usanetwork.com/.*/usanetwork_ads\.s_code\.js\? -# @@||urbanog.com/banners/$image (easylist.txt: 49245) -.urbanog.com/banners/ -# @@||uploaded.net/affiliate/$~third-party,xmlhttprequest (easylist.txt: 49244) -.uploaded.net/affiliate/ -# @@||upload.wikimedia.org/wikipedia/ (easylist.txt: 49243) -.upload.wikimedia.org/wikipedia/ -# @@||upc-cablecom.ch^*.swf?clicktag=http$object (easylist.txt: 49242) -.upc-cablecom.ch/.*\.swf\?clicktag=http -# @@||undsports.com/ads2/$image (easylist.txt: 49241) -.undsports.com/ads2/ -# @@||ultrabrown.com/images/adheader.jpg (easylist.txt: 49240) -.ultrabrown.com/images/adheader\.jpg -# @@||ultimate-guitar.com/js/ug_ads.js (easylist.txt: 49239) -.ultimate-guitar.com/js/ug_ads\.js -# @@||ukbride.co.uk/css/*/adverts.css (easylist.txt: 49238) -.ukbride.co.uk/css/.*/adverts\.css -# @@||uillinois.edu/eas/ (easylist.txt: 49237) -.uillinois.edu/eas/ -# @@||ucaster.eu/static/scripts/adscript.js (easylist.txt: 49236) -.ucaster.eu/static/scripts/adscript\.js -# @@||twogag.com/comics/$image,~third-party (easylist.txt: 49234) -.twogag.com/comics/ -# @@||twitvid.com/mediaplayer_*.swf? (easylist.txt: 49233) -.twitvid.com/mediaplayer_.*\.swf\? -# @@||twinspires.com/php/$subdocument,~third-party (easylist.txt: 49232) -.twinspires.com/php/ -# @@||tvnz.co.nz/*/advertisement.js (easylist.txt: 49231) -.tvnz.co.nz/.*/advertisement\.js -# @@||tvgorge.com^*/adplayer.swf (easylist.txt: 49230) -.tvgorge.com/.*/adplayer\.swf -# @@||tv-kino.net/wp-content/themes/*/advertisement.js (easylist.txt: 49229) -.tv-kino.net/wp-content/themes/.*/advertisement\.js -# @@||tut.by/uppod/frameid406/ads1/ (easylist.txt: 49228) -.tut.by/uppod/frameid406/ads1/ -# @@||tudouui.com/bin/player2/*&adsourceid= (easylist.txt: 49221) -.tudouui.com/bin/player2/.*&adsourceid= -# @@||tubemogul.com/crossdomain.xml$object-subrequest (easylist.txt: 49220) -.tubemogul.com/crossdomain\.xml -# @@||tubemogul.com/bootloader/tubemogulflowplayer.swf$object-subrequest (easylist.txt: 49219) -.tubemogul.com/bootloader/tubemogulflowplayer\.swf -# @@||trutv.com/includes/banners/de/video/*.ad|$object-subrequest (easylist.txt: 49218) -.trutv.com/includes/banners/de/video/.*\.ad$ -# @@||trustedreviews.com^*/adtech.js (easylist.txt: 49217) -.trustedreviews.com/.*/adtech\.js -# @@||trulia.com/modules/ad_agents_$xmlhttprequest (easylist.txt: 49216) -.trulia.com/modules/ad_agents_ -# @@||trifort.org/ads/$~third-party (easylist.txt: 49215) -.trifort.org/ads/ -# @@||trialpay.com/js/advertiser.js (easylist.txt: 49214) -.trialpay.com/js/advertiser\.js -# @@||tremor.nuggad.net/crossdomain.xml$object-subrequest (easylist.txt: 49212) -.tremor.nuggad.net/crossdomain\.xml -# @@||travidia.com/ss-page/ (easylist.txt: 49211) -.travidia.com/ss-page/ -# @@||travidia.com/fsi/page.aspx?$subdocument (easylist.txt: 49210) -.travidia.com/fsi/page\.aspx\? -# @@||traumagame.com/trauma_data/ads/ad2.jpg (easylist.txt: 49206) -.traumagame.com/trauma_data/ads/ad2\.jpg -# @@||translate.google.com/translate/static/*-ads/ (easylist.txt: 49205) -.translate.google.com/translate/static/.*-ads/ -# @@||translate.google.*/translate_*&q=$~third-party,xmlhttprequest (easylist.txt: 49204) -.translate.google.*./(.*/)?translate_.*&q= -# @@||traktorpool.de^*/advert. (easylist.txt: 49203) -.traktorpool.de/.*/advert\. -# @@||traktorpool.de/scripts/advert/ (easylist.txt: 49202) -.traktorpool.de/scripts/advert/ -# @@||tradecarview.com/material/housead/$image (easylist.txt: 49199) -.tradecarview.com/material/housead/ -# @@||trade-a-plane.com/AdBox/js/jquery.TAP_AdBox.js (easylist.txt: 49198) -.trade-a-plane.com/AdBox/js/jquery\.TAP_AdBox\.js -# @@||toshiba.*^banner_id^$subdocument (easylist.txt: 49196) -.toshiba.*./(.*[^\w%.-])?banner_id[^\w%.-] -# @@||torontosun.com/assets/js/dfp.js? (easylist.txt: 49195) -.torontosun.com/assets/js/dfp\.js\? -# @@||topusajobs.com/banners/ (easylist.txt: 49194) -.topusajobs.com/banners/ -# @@||topgear.com^*/ads.min.js (easylist.txt: 49193) -.topgear.com/.*/ads\.min\.js -# @@||toongoggles.com/getads?$xmlhttprequest (easylist.txt: 49192) -.toongoggles.com/getads\? -# @@||toongames.com/advertising/toon-google-preloader.swf$object (easylist.txt: 49191) -.toongames.com/advertising/toon-google-preloader\.swf -# @@||tooltrucks.com/banners/$image,~third-party (easylist.txt: 49190) -.tooltrucks.com/banners/ -# @@||tooltrucks.com/ads/$image,~third-party (easylist.txt: 49189) -.tooltrucks.com/ads/ -# @@||tntexpress.com.au^*/marketing/banners/ (easylist.txt: 49186) -.tntexpress.com.au/.*/marketing/banners/ -# @@||tnol.com/adimages/digitaledition/$object-subrequest (easylist.txt: 49185) -.tnol.com/adimages/digitaledition/ -# @@||tm.tradetracker.net/tag?$script (easylist.txt: 49184) -.tm.tradetracker.net/tag\? -# @@||tkcarsites.com/soba/bannersservice (easylist.txt: 49183) -.tkcarsites.com/soba/bannersservice -# @@||tinysubversions.com/clickbait/adjs.json (easylist.txt: 49182) -.tinysubversions.com/clickbait/adjs\.json -# @@||tinbuadserv.com/v3/serve.php?$script (easylist.txt: 49181) -.tinbuadserv.com/v3/serve\.php\? -# @@||tinbuadserv.com/js/integrate/ads_common.js (easylist.txt: 49180) -.tinbuadserv.com/js/integrate/ads_common\.js -# @@||timesofmalta.com/videoads/*preroll.flv$object-subrequest (easylist.txt: 49179) -.timesofmalta.com/videoads/.*preroll\.flv -# @@||timeout.com/images/ads/weather/ (easylist.txt: 49178) -.timeout.com/images/ads/weather/ -# @@||timeinc.net^*/tii_ads.js (easylist.txt: 49177) -.timeinc.net/.*/tii_ads\.js -# @@||tiads.timeinc.net/ads/tgx.js (easylist.txt: 49173) -.tiads.timeinc.net/ads/tgx\.js -# @@||thunderheadeng.com/wp-content/uploads/*300x250 (easylist.txt: 49172) -.thunderheadeng.com/wp-content/uploads/.*300x250 -# @@||thrifty.co.uk/bannerads/ (easylist.txt: 49170) -.thrifty.co.uk/bannerads/ -# @@||thomsonlocal.com/js/adsense-min.js (easylist.txt: 49169) -.thomsonlocal.com/js/adsense-min\.js -# @@||thomann.de/thumb/*/pics/adv/adv_image_ (easylist.txt: 49168) -.thomann.de/thumb/.*/pics/adv/adv_image_ -# @@||theweathernetwork.com/tpl/web/adtech/$xmlhttprequest (easylist.txt: 49167) -.theweathernetwork.com/tpl/web/adtech/ -# @@||theweathernetwork.com/js/adrefresh.js (easylist.txt: 49166) -.theweathernetwork.com/js/adrefresh\.js -# @@||thetvdb.com/banners/ (easylist.txt: 49165) -.thetvdb.com/banners/ -# @@||theory-test.co.uk/css/ads.css (easylist.txt: 49162) -.theory-test.co.uk/css/ads\.css -# @@||thenewsroom.com^*/advertisement.xml$object-subrequest (easylist.txt: 49161) -.thenewsroom.com/.*/advertisement\.xml -# @@||thenewage.co.za/classifieds/images2/postad.gif (easylist.txt: 49160) -.thenewage.co.za/classifieds/images2/postad\.gif -# @@||theloop.com.au/js/simplejob_ad_content.js? (easylist.txt: 49158) -.theloop.com.au/js/simplejob_ad_content\.js\? -# @@||thekraftgroup.com/crossdomain.xml$object-subrequest (easylist.txt: 49157) -.thekraftgroup.com/crossdomain\.xml -# @@||thefrisky.com/js/adspaces.min.js (easylist.txt: 49156) -.thefrisky.com/js/adspaces\.min\.js -# @@||thefourthperiod.com/ads/tfplogo_ (easylist.txt: 49155) -.thefourthperiod.com/ads/tfplogo_ -# @@||theepochtimes.com^*/article-ads.js? (easylist.txt: 49154) -.theepochtimes.com/.*/article-ads\.js\? -# @@||theepochtimes.com/ads/videos-right.html?$subdocument (easylist.txt: 49153) -.theepochtimes.com/ads/videos-right\.html\? -# @@||theepochtimes.com/ads/videos-below.htm?$subdocument (easylist.txt: 49152) -.theepochtimes.com/ads/videos-below\.htm\? -# @@||theepochtimes.com/ads/video/inarticle-video.html$subdocument (easylist.txt: 49151) -.theepochtimes.com/ads/video/inarticle-video\.html -# @@||thedailygreen.com/ams/page-ads.js? (easylist.txt: 49149) -.thedailygreen.com/ams/page-ads\.js\? -# @@||theatlantic.com/widget/$xmlhttprequest (easylist.txt: 49148) -.theatlantic.com/widget/ -# @@||texasstudentmedia.com/advertise/ (easylist.txt: 49147) -.texasstudentmedia.com/advertise/ -# @@||tetrisfriends.com/ads/google_dfp_video_ad.html (easylist.txt: 49146) -.tetrisfriends.com/ads/google_dfp_video_ad\.html -# @@||terraristik.com^*/ad_pics/$~third-party (easylist.txt: 49145) -.terraristik.com/.*/ad_pics/ -# @@||terraristik.com^*&ad_type=$~third-party (easylist.txt: 49144) -.terraristik.com/.*&ad_type= -# @@||temple.edu/advertising/$~third-party (easylist.txt: 49143) -.temple.edu/advertising/ -# @@||telegraphcouk.skimlinks.com/api/telegraph.skimlinks.js (easylist.txt: 49142) -.telegraphcouk.skimlinks.com/api/telegraph\.skimlinks\.js -# @@||teknikor.com/content/wp-content/themes/*-adv.jpg (easylist.txt: 49141) -.teknikor.com/content/wp-content/themes/.*-adv\.jpg -# @@||tbns.com.au/shops/images/ads/$~third-party (easylist.txt: 49137) -.tbns.com.au/shops/images/ads/ -# @@||talkrtv.com/ad/channel.php?$subdocument (easylist.txt: 49134) -.talkrtv.com/ad/channel\.php\? -# @@||talkgold.com/bans/rss.png (easylist.txt: 49133) -.talkgold.com/bans/rss\.png -# @@||take40.com/common/javascript/ads.js (easylist.txt: 49132) -.take40.com/common/javascript/ads\.js -# @@||tacdn.com^*_popunder_$script,stylesheet (easylist.txt: 49130) -.tacdn.com/.*_popunder_ -# @@||syracuse.com/static/common/js/ads/ads.js (easylist.txt: 49129) -.syracuse.com/static/common/js/ads/ads\.js -# @@||syn.5min.com/handlers/SenseHandler.ashx?*&adUnit=$script (easylist.txt: 49127) -.syn.5min.com/handlers/SenseHandler\.ashx\?.*&adUnit= -# @@||swordfox.co.nz^*/advertising/$~third-party (easylist.txt: 49126) -.swordfox.co.nz/.*/advertising/ -# @@||support.dlink.com/Scripts/custom/pop.js (easylist.txt: 49124) -.support.dlink.com/Scripts/custom/pop\.js -# @@||supersonicads.com/delivery/singleBanner.php?*&bannerId$subdocument (easylist.txt: 49123) -.supersonicads.com/delivery/singleBanner\.php\?.*&bannerId -# @@||supersonicads.com/api/v1/trackCommission.php*password=$image (easylist.txt: 49122) -.supersonicads.com/api/v1/trackCommission\.php.*password= -# @@||supersonicads.com/api/rest/funds/*/advertisers/$~third-party (easylist.txt: 49121) -.supersonicads.com/api/rest/funds/.*/advertisers/ -# @@||superfundo.org/advertisement.js (easylist.txt: 49120) -.superfundo.org/advertisement\.js -# @@||supercartoons.net/ad-preroll.html (easylist.txt: 49119) -.supercartoons.net/ad-preroll\.html -# @@||summitracing.com/global/images/bannerads/ (easylist.txt: 49118) -.summitracing.com/global/images/bannerads/ -# @@||subscribe.teenvogue.com/ams/page-ads.js (easylist.txt: 49116) -.subscribe.teenvogue.com/ams/page-ads\.js -# @@||subscribe.newyorker.com/ams/page-ads.js (easylist.txt: 49115) -.subscribe.newyorker.com/ams/page-ads\.js -# @@||style.com/images/*.doubleclick$object (easylist.txt: 49114) -.style.com/images/.*\.doubleclick -# @@||style.com/flashxml/*.doubleclick$object (easylist.txt: 49113) -.style.com/flashxml/.*\.doubleclick -# @@||streamlive.to/ads/$object,script (easylist.txt: 49112) -.streamlive.to/ads/ -# @@||streaming.gmgradio.com/adverts/*.mp3$object-subrequest (easylist.txt: 49111) -.streaming.gmgradio.com/adverts/.*\.mp3 -# @@||stickam.com/css/ver1/asset/sharelayout2col_ad300x250.css (easylist.txt: 49110) -.stickam.com/css/ver1/asset/sharelayout2col_ad300x250\.css -# @@||stclassifieds.sg/postad/ (easylist.txt: 49109) -.stclassifieds.sg/postad/ -# @@||stclassifieds.sg/images/ads/$~third-party (easylist.txt: 49108) -.stclassifieds.sg/images/ads/ -# @@||static.cricinfo.com^*/ADVERTS/*/liveScores.swf$object (easylist.txt: 49106) -.static.cricinfo.com/.*/ADVERTS/.*/liveScores\.swf -# @@||static.ak.fbcdn.net^*/ads/$script (easylist.txt: 49104) -.static.ak.fbcdn.net/.*/ads/ -# @@||statedesign.com/advertisers/$image,~third-party (easylist.txt: 49102) -.statedesign.com/advertisers/ -# @@||state.co.us/caic/pub_bc_avo.php?zone_id=$subdocument (easylist.txt: 49101) -.state.co.us/caic/pub_bc_avo\.php\?zone_id= -# @@||startxchange.com/textad.php?$xmlhttprequest (easylist.txt: 49100) -.startxchange.com/textad\.php\? -# @@||st.com^*/banners.js (easylist.txt: 49099) -.st.com/.*/banners\.js -# @@||ssl-images-amazon.com^*/popover/popover-$script (easylist.txt: 49098) -.ssl-images-amazon.com/.*/popover/popover- -# @@||sprouts.com/ad/$image,subdocument (easylist.txt: 49095) -.sprouts.com/ad/ -# @@||sprint.com^*/adservice/$xmlhttprequest (easylist.txt: 49094) -.sprint.com/.*/adservice/ -# @@||springbokradio.com/sitebuilder/images/ads- (easylist.txt: 49093) -.springbokradio.com/sitebuilder/images/ads- -# @@||springbokradio.com/images/ads- (easylist.txt: 49092) -.springbokradio.com/images/ads- -# @@||springboardplatform.com/storage/lightbox_code/static/companion_ads.js (easylist.txt: 49091) -.springboardplatform.com/storage/lightbox_code/static/companion_ads\.js -# @@||spotxchange.com/crossdomain.xml$object-subrequest (easylist.txt: 49086) -.spotxchange.com/crossdomain\.xml -# @@||spotrails.com^*/flowplayeradplayerplugin.swf (easylist.txt: 49084) -.spotrails.com/.*/flowplayeradplayerplugin\.swf -# @@||spotrails.com/crossdomain.xml$object-subrequest (easylist.txt: 49083) -.spotrails.com/crossdomain\.xml -# @@||sploder.com/prerollad.swf?s=$object-subrequest (easylist.txt: 49080) -.sploder.com/prerollad\.swf\?s= -# @@||spendino.de/admanager/ (easylist.txt: 49079) -.spendino.de/admanager/ -# @@||spectrum.ieee.org/assets/js/masonry-ads-right.min.js (easylist.txt: 49078) -.spectrum.ieee.org/assets/js/masonry-ads-right\.min\.js -# @@||southwest.com^*/homepage/ads/ (easylist.txt: 49077) -.southwest.com/.*/homepage/ads/ -# @@||southwest.com/assets/images/ads/ad_select_flight_ (easylist.txt: 49076) -.southwest.com/assets/images/ads/ad_select_flight_ -# @@||sonypictures.com^*/admedia/ (easylist.txt: 49075) -.sonypictures.com/.*/admedia/ -# @@||sonypictures.com/global/images/ads/300x250/ad300x250.json$xmlhttprequest (easylist.txt: 49074) -.sonypictures.com/global/images/ads/300x250/ad300x250\.json -# @@||sonicstate.com/video/hd/hdconfig-geo.cfm?$object-subrequest (easylist.txt: 49073) -.sonicstate.com/video/hd/hdconfig-geo\.cfm\? -# @@||songza.com/static/*/songza/ads/iframe.js (easylist.txt: 49072) -.songza.com/static/.*/songza/ads/iframe\.js -# @@||songza.com/advertising/top/ (easylist.txt: 49071) -.songza.com/advertising/top/ -# @@||somewheresouth.net/banner/banner.php$image (easylist.txt: 49070) -.somewheresouth.net/banner/banner\.php -# @@||somethingsexyplanet.com/image/adzones/ (easylist.txt: 49069) -.somethingsexyplanet.com/image/adzones/ -# @@||softwarepromotions.com/images/google-adwords-professional.gif (easylist.txt: 49068) -.softwarepromotions.com/images/google-adwords-professional\.gif -# @@||softwarepromotions.com/adwords/$~third-party (easylist.txt: 49067) -.softwarepromotions.com/adwords/ -# @@||socialblogsitewebdesign.com^*/advertising_conversion_images/ (easylist.txt: 49066) -.socialblogsitewebdesign.com/.*/advertising_conversion_images/ -# @@||smmirror.com^*/getads.php (easylist.txt: 49065) -.smmirror.com/.*/getads\.php -# @@||smctemple.wpengine.com/advertising/$~third-party (easylist.txt: 49062) -.smctemple.wpengine.com/advertising/ -# @@||slowblog.com/ad.js (easylist.txt: 49058) -.slowblog.com/ad\.js -# @@||slotsheaven.com/banners/$~third-party (easylist.txt: 49057) -.slotsheaven.com/banners/ -# @@||skymediator.com/ads/*/skymediator.php?$subdocument (easylist.txt: 49055) -.skymediator.com/ads/.*/skymediator\.php\? -# @@||sjsuspartans.com/ads2/$image (easylist.txt: 49054) -.sjsuspartans.com/ads2/ -# @@||site-jump.com/banners/ (easylist.txt: 49053) -.site-jump.com/banners/ -# @@||sillyvamp.com/ads/Donate.png (easylist.txt: 49052) -.sillyvamp.com/ads/Donate\.png -# @@||silive.com/static/common/js/ads/ads.js (easylist.txt: 49051) -.silive.com/static/common/js/ads/ads\.js -# @@||sihanoukvilleonline.com/banners/sologo.png (easylist.txt: 49050) -.sihanoukvilleonline.com/banners/sologo\.png -# @@||signin.verizon.com^*/affiliate/$subdocument,xmlhttprequest (easylist.txt: 49049) -.signin.verizon.com/.*/affiliate/ -# @@||sify.com/news/postcomments.php?*468x60.html (easylist.txt: 49048) -.sify.com/news/postcomments\.php\?.*468x60\.html -# @@||siamautologistics.com/ads/$image,~third-party (easylist.txt: 49047) -.siamautologistics.com/ads/ -# @@||shelleytheatre.co.uk/filmimages/banners/160 (easylist.txt: 49045) -.shelleytheatre.co.uk/filmimages/banners/160 -# @@||shawfloors.com/adx/$image,~third-party (easylist.txt: 49044) -.shawfloors.com/adx/ -# @@||sharinspireds.co.nf/Images/Ads/$~third-party (easylist.txt: 49043) -.sharinspireds.co.nf/Images/Ads/ -# @@||share.pingdom.com/banners/$image (easylist.txt: 49041) -.share.pingdom.com/banners/ -# @@||shackvideo.com/playlist_xml.x? (easylist.txt: 49040) -.shackvideo.com/playlist_xml\.x\? -# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easylist.txt: 49038) -.sh.st/bundles/smeadvertisement/img/track\.gif\? -# @@||seventeen.com/ams/page-ads.js (easylist.txt: 49036) -.seventeen.com/ams/page-ads\.js -# @@||serviceexpress.net/js/pop.js (easylist.txt: 49034) -.serviceexpress.net/js/pop\.js -# @@||server.cpmstar.com/adviewas3.swf?contentspotid=$object-subrequest (easylist.txt: 49032) -.server.cpmstar.com/adviewas3\.swf\?contentspotid= -# @@||serve.vdopia.com/crossdomain.xml$object-subrequest (easylist.txt: 49029) -.serve.vdopia.com/crossdomain\.xml -# @@||selsin.net/imprint-$image (easylist.txt: 49028) -.selsin.net/imprint- -# @@||sekonda.co.uk/advert_images/ (easylist.txt: 49027) -.sekonda.co.uk/advert_images/ -# @@||securenetsystems.net/scripts/*/sdfy_scripts_advertising.js (easylist.txt: 49025) -.securenetsystems.net/scripts/.*/sdfy_scripts_advertising\.js -# @@||securenetsystems.net/advertising/ad_campaign_get.cfm?$xmlhttprequest (easylist.txt: 49024) -.securenetsystems.net/advertising/ad_campaign_get\.cfm\? -# @@||secondlife.com/assets/*_AD3.jpg (easylist.txt: 49023) -.secondlife.com/assets/.*_AD3\.jpg -# @@||sec-ads.bridgetrack.com/ads_img/ (easylist.txt: 49022) -.sec-ads.bridgetrack.com/ads_img/ -# @@||search.yahoo.com^$generichide (easylist.txt: 49021) -.search.yahoo.com -# @@||search.comcast.net/static.php?$stylesheet (easylist.txt: 49020) -.search.comcast.net/static\.php\? -# @@||sdltutorials.com/Data/Ads/AppStateBanner.jpg (easylist.txt: 49019) -.sdltutorials.com/Data/Ads/AppStateBanner\.jpg -# @@||sdelkino.com/images/ad/$image (easylist.txt: 49018) -.sdelkino.com/images/ad/ -# @@||sdcdn.com/cms/ads/piczo/$image (easylist.txt: 49017) -.sdcdn.com/cms/ads/piczo/ -# @@||scutt.eu/ads/$~third-party (easylist.txt: 49016) -.scutt.eu/ads/ -# @@||scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors.xml$object-subrequest (easylist.txt: 49015) -.scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors\.xml -# @@||scanscout.com/crossdomain.xml$object-subrequest (easylist.txt: 49009) -.scanscout.com/crossdomain\.xml -# @@||save.ca/img/ads/$~third-party (easylist.txt: 49007) -.save.ca/img/ads/ -# @@||sascdn.com^*/jwplayerAdPlugin.swf$object-subrequest (easylist.txt: 49006) -.sascdn.com/.*/jwplayerAdPlugin\.swf -# @@||sascdn.com^*/jwplayer-plugin.swf?$object-subrequest (easylist.txt: 49005) -.sascdn.com/.*/jwplayer-plugin\.swf\? -# @@||sascdn.com/crossdomain.xml$object-subrequest (easylist.txt: 49004) -.sascdn.com/crossdomain\.xml -# @@||salon.com/content/plugins/salon-ad-controller/ad-utilities.js (easylist.txt: 49003) -.salon.com/content/plugins/salon-ad-controller/ad-utilities\.js -# @@||salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery.jshowoff.min.js? (easylist.txt: 49002) -.salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery\.jshowoff\.min\.js\? -# @@||sales.liveperson.net/visitor/addons/deploy2.asp?*&d_id=adcenter&$script (easylist.txt: 49001) -.sales.liveperson.net/visitor/addons/deploy2\.asp\?.*&d_id=adcenter& -# @@||sal.co.th/ads/$image,~third-party (easylist.txt: 49000) -.sal.co.th/ads/ -# @@||sabotage-films.com/ads/$~third-party (easylist.txt: 48999) -.sabotage-films.com/ads/ -# @@||ryuutama.com/ads/ads.php?get=$xmlhttprequest (easylist.txt: 48995) -.ryuutama.com/ads/ads\.php\?get= -# @@||russellrooftiles.co.uk/images/rrt_envirotile_home_advert.png (easylist.txt: 48994) -.russellrooftiles.co.uk/images/rrt_envirotile_home_advert\.png -# @@||rthk.org.hk/assets/flash/rthk/*/ad_banner$object (easylist.txt: 48993) -.rthk.org.hk/assets/flash/rthk/.*/ad_banner -# @@||rthk.hk/assets/flash/rthk/*/ad_banner$object (easylist.txt: 48992) -.rthk.hk/assets/flash/rthk/.*/ad_banner -# @@||rsvlts.com/wp-content/uploads/*-advertisment- (easylist.txt: 48988) -.rsvlts.com/wp-content/uploads/.*-advertisment- -# @@||rotate.infowars.com/www/delivery/spcjs.php (easylist.txt: 48983) -.rotate.infowars.com/www/delivery/spcjs\.php -# @@||rotate.infowars.com/www/delivery/fl.js (easylist.txt: 48982) -.rotate.infowars.com/www/delivery/fl\.js -# @@||rosauers.com/locations/ads.html (easylist.txt: 48981) -.rosauers.com/locations/ads\.html -# @@||rmncdn.com/ads/mini-$image (easylist.txt: 48978) -.rmncdn.com/ads/mini- -# @@||rewaz.org/ads/adframe2.js (easylist.txt: 48977) -.rewaz.org/ads/adframe2\.js -# @@||revit.eu/static/uploads/images/themes/banners/small-banner-$object-subrequest (easylist.txt: 48973) -.revit.eu/static/uploads/images/themes/banners/small-banner- -# @@||replgroup.com/banners/$image,~third-party (easylist.txt: 48968) -.replgroup.com/banners/ -# @@||remo-xp.com/wp-content/themes/adsense-boqpod/style.css (easylist.txt: 48967) -.remo-xp.com/wp-content/themes/adsense-boqpod/style\.css -# @@||refline.ch^*/advertisement.css (easylist.txt: 48966) -.refline.ch/.*/advertisement\.css -# @@||redsharknews.com/components/com_adagency/includes/$script (easylist.txt: 48965) -.redsharknews.com/components/com_adagency/includes/ -# @@||redbookmag.com/ams/page-ads.js? (easylist.txt: 48964) -.redbookmag.com/ams/page-ads\.js\? -# @@||realvnc.com/assets/img/ad-bg.jpg (easylist.txt: 48963) -.realvnc.com/assets/img/ad-bg\.jpg -# @@||realmedia.channel4.com/realmedia/ads/adstream_sx.ads/channel4.newcu/$object-subrequest,~third-party (easylist.txt: 48962) -.realmedia.channel4.com/realmedia/ads/adstream_sx\.ads/channel4\.newcu/ -# @@||realbeauty.com/ams/page-ads.js? (easylist.txt: 48961) -.realbeauty.com/ams/page-ads\.js\? -# @@||readwrite.com/files/styles/$image (easylist.txt: 48960) -.readwrite.com/files/styles/ -# @@||rcards.net/wp-content/uploads/useful_banner_manager_banners/ (easylist.txt: 48957) -.rcards.net/wp-content/uploads/useful_banner_manager_banners/ -# @@||rcards.net/wp-content/plugins/useful-banner-manager/ (easylist.txt: 48956) -.rcards.net/wp-content/plugins/useful-banner-manager/ -# @@||rapoo.com/images/ad/$image,~third-party (easylist.txt: 48954) -.rapoo.com/images/ad/ -# @@||rainbowdressup.com/ads/adsnewvars.swf (easylist.txt: 48953) -.rainbowdressup.com/ads/adsnewvars\.swf -# @@||radiotimes.com/rt-service/resource/jspack? (easylist.txt: 48952) -.radiotimes.com/rt-service/resource/jspack\? -# @@||radioguide.fm/minify/?*/Advertising/webroot/css/advertising.css (easylist.txt: 48951) -.radioguide.fm/minify/\?.*/Advertising/webroot/css/advertising\.css -# @@||rad.org.uk/images/adverts/$image,~third-party (easylist.txt: 48950) -.rad.org.uk/images/adverts/ -# @@||r2games.com/bannerad/$image,~third-party (easylist.txt: 48945) -.r2games.com/bannerad/ -# @@||quit.org.au/images/images/ad/ (easylist.txt: 48943) -.quit.org.au/images/images/ad/ -# @@||q2servers.com/pop.js (easylist.txt: 48940) -.q2servers.com/pop\.js -# @@||puzzler.com/commercials/*.htm$subdocument (easylist.txt: 48939) -.puzzler.com/commercials/.*\.htm -# @@||pursuit.co.za/css/globalAd.css (easylist.txt: 48938) -.pursuit.co.za/css/globalAd\.css -# @@||pumpkinpatchkids.com/www/delivery/ajs.php?$script (easylist.txt: 48937) -.pumpkinpatchkids.com/www/delivery/ajs\.php\? -# @@||ptgrey.com/_PGR_Content/Advertising/$image,~third-party (easylist.txt: 48934) -.ptgrey.com/_PGR_Content/Advertising/ -# @@||pshared.5min.com/Scripts/ThumbSeed2.js?*&adUnit=$script (easylist.txt: 48933) -.pshared.5min.com/Scripts/ThumbSeed2\.js\?.*&adUnit= -# @@||proxyserver.asia/themes/advertising-$image,stylesheet (easylist.txt: 48932) -.proxyserver.asia/themes/advertising- -# @@||proprofs.com/quiz-school/js/modernizr_ads.js (easylist.txt: 48931) -.proprofs.com/quiz-school/js/modernizr_ads\.js -# @@||promophot.com/photo/ad/$image (easylist.txt: 48930) -.promophot.com/photo/ad/ -# @@||promo.campaigndog.com^$third-party (easylist.txt: 48926) -.promo.campaigndog.com -# @@||promo.acronis.com^*?base=www.acronis.$subdocument (easylist.txt: 48925) -.promo.acronis.com/.*\?base=www\.acronis\. -# @@||productioncars.com/pics/menu/ads2.gif (easylist.txt: 48924) -.productioncars.com/pics/menu/ads2\.gif -# @@||productioncars.com/pics/menu/ads.gif (easylist.txt: 48923) -.productioncars.com/pics/menu/ads\.gif -# @@||procato.com/_pub/advertisement.js (easylist.txt: 48922) -.procato.com/_pub/advertisement\.js -# @@||procato.com/_pub/ads.php?u=$xmlhttprequest (easylist.txt: 48921) -.procato.com/_pub/ads\.php\?u= -# @@||prism.opticsinfobase.org/Scripts/ADS/Details.js (easylist.txt: 48920) -.prism.opticsinfobase.org/Scripts/ADS/Details\.js -# @@||pressdisplay.com/advertising/showimage.aspx? (easylist.txt: 48919) -.pressdisplay.com/advertising/showimage\.aspx\? -# @@||powercolor.com/image/ad/$~third-party (easylist.txt: 48918) -.powercolor.com/image/ad/ -# @@||popcap.com/sites/all/modules/popcap/js/popcap_openx.js? (easylist.txt: 48915) -.popcap.com/sites/all/modules/popcap/js/popcap_openx\.js\? -# @@||popad.co^$~third-party (easylist.txt: 48914) -.popad.co -# @@||pop.advecs.com^$~third-party (easylist.txt: 48913) -.pop.advecs.com -# @@||politico.com/js/magazine/ads.js (easylist.txt: 48911) -.politico.com/js/magazine/ads\.js -# @@||plugcomputer.org^*/ad1.jpg (easylist.txt: 48909) -.plugcomputer.org/.*/ad1\.jpg -# @@||playintraffik.com/advertising/ (easylist.txt: 48908) -.playintraffik.com/advertising/ -# @@||player.vioapi.com/ads/flash/vioplayer.swf (easylist.txt: 48907) -.player.vioapi.com/ads/flash/vioplayer\.swf -# @@||player.streamtheworld.com/liveplayer.php?*adstype= (easylist.txt: 48904) -.player.streamtheworld.com/liveplayer\.php\?.*adstype= -# @@||player.onescreen.net/*/MediaPlayer.swf?ads=$object-subrequest (easylist.txt: 48903) -.player.onescreen.net/.*/MediaPlayer\.swf\?ads= -# @@||player.goviral-content.com/crossdomain.xml$object-subrequest (easylist.txt: 48902) -.player.goviral-content.com/crossdomain\.xml -# @@||player.animelicio.us/adimages/$subdocument (easylist.txt: 48897) -.player.animelicio.us/adimages/ -# @@||planetrecruit.com/ad/$image (easylist.txt: 48896) -.planetrecruit.com/ad/ -# @@||planetoddity.com/wp-content/*-ads-$image (easylist.txt: 48895) -.planetoddity.com/wp-content/.*-ads- -# @@||planetaxel.com^*.php?ad=$stylesheet (easylist.txt: 48894) -.planetaxel.com/.*\.php\?ad= -# @@||pitchfork.com/desktop/js/pitchfork/ads/interstitial.js (easylist.txt: 48893) -.pitchfork.com/desktop/js/pitchfork/ads/interstitial\.js -# @@||pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218.gif (easylist.txt: 48892) -.pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218\.gif -# @@||pinkbike.org^*.swf?ad=0&$object (easylist.txt: 48891) -.pinkbike.org/.*\.swf\?ad=0& -# @@||ping.indieclicktv.com/www/delivery/ajs.php?zoneid$object-subrequest (easylist.txt: 48890) -.ping.indieclicktv.com/www/delivery/ajs\.php\?zoneid -# @@||piercesnorthsidemarket.com/ads/$image (easylist.txt: 48889) -.piercesnorthsidemarket.com/ads/ -# @@||picplzthumbs.com/upload/img/ad/ (easylist.txt: 48888) -.picplzthumbs.com/upload/img/ad/ -# @@||photofunia.com/effects/$~third-party (easylist.txt: 48886) -.photofunia.com/effects/ -# @@||photobucket.com/albums/ad$image (easylist.txt: 48884) -.photobucket.com/albums/ad -# @@||photo.ekathimerini.com/ads/extra/$image,~third-party (easylist.txt: 48883) -.photo.ekathimerini.com/ads/extra/ -# @@||phonealchemist.com/api/affiliation/$~third-party (easylist.txt: 48882) -.phonealchemist.com/api/affiliation/ -# @@||phl.org/Advertising/$image,~third-party (easylist.txt: 48880) -.phl.org/Advertising/ -# @@||pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad.min.js$script (easylist.txt: 48879) -.pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad\.min\.js -# @@||pets4homes.co.uk^*/advert.css (easylist.txt: 48878) -.pets4homes.co.uk/.*/advert\.css -# @@||pets4homes.co.uk/*/advert.js (easylist.txt: 48877) -.pets4homes.co.uk/.*/advert\.js -# @@||petra-fischer.com/tl_files/pics/*/ADVERTISING/$~third-party (easylist.txt: 48876) -.petra-fischer.com/tl_files/pics/.*/ADVERTISING/ -# @@||petcarerx.com/banners/ (easylist.txt: 48875) -.petcarerx.com/banners/ -# @@||petapixel.com/ads/$~third-party (easylist.txt: 48874) -.petapixel.com/ads/ -# @@||perezhilton.com^*-without-ads-$object,object-subrequest,subdocument (easylist.txt: 48873) -.perezhilton.com/.*-without-ads- -# @@||perezhilton.com/included_ads/ (easylist.txt: 48872) -.perezhilton.com/included_ads/ -# @@||perbang.dk/_pub/advertisement.js? (easylist.txt: 48871) -.perbang.dk/_pub/advertisement\.js\? -# @@||perbang.dk/_pub/ads.php?u=$xmlhttprequest (easylist.txt: 48870) -.perbang.dk/_pub/ads\.php\?u= -# @@||pennlive.com/static/common/js/ads/ads.js (easylist.txt: 48869) -.pennlive.com/static/common/js/ads/ads\.js -# @@||pch.com^*/videoad.$stylesheet (easylist.txt: 48868) -.pch.com/.*/videoad\. -# @@||pch.com/iframe-ad/?adType=$subdocument (easylist.txt: 48867) -.pch.com/iframe-ad/\?adType= -# @@||pbs.org^*/sponsors/flvvideoplayer.swf (easylist.txt: 48866) -.pbs.org/.*/sponsors/flvvideoplayer\.swf -# @@||payload*.cargocollective.com^$image (easylist.txt: 48865) -.payload*./.*\.cargocollective\.com[^\w%.-] -.payload*.cargocollective.com -# @@||patient-education.com/banners/$~third-party (easylist.txt: 48863) -.patient-education.com/banners/ -# @@||partners.thefilter.com/crossdomain.xml$object-subrequest (easylist.txt: 48861) -.partners.thefilter.com/crossdomain\.xml -# @@||pantherssl.com/banners/ (easylist.txt: 48854) -.pantherssl.com/banners/ -# @@||pandasecurity.com/banners/$image,~third-party (easylist.txt: 48853) -.pandasecurity.com/banners/ -# @@||pagesinventory.com/_data/flags/ad.gif (easylist.txt: 48852) -.pagesinventory.com/_data/flags/ad\.gif -# @@||pacogames.com/ad/ima3_preloader_$object (easylist.txt: 48841) -.pacogames.com/ad/ima3_preloader_ -# @@||pachoumis.com/advertising-$~third-party (easylist.txt: 48840) -.pachoumis.com/advertising- -# @@||pachanyc.com/_images/advertise_submit.gif (easylist.txt: 48839) -.pachanyc.com/_images/advertise_submit\.gif -# @@||ozspeedtest.com/js/pop.js (easylist.txt: 48838) -.ozspeedtest.com/js/pop\.js -# @@||oxfordlearnersdictionaries.com/external/scripts/doubleclick.js (easylist.txt: 48837) -.oxfordlearnersdictionaries.com/external/scripts/doubleclick\.js -# @@||ox.popcap.com/delivery/afr.php?&zoneid=$subdocument,~third-party (easylist.txt: 48836) -.ox.popcap.com/delivery/afr\.php\?&zoneid= -# @@||ox-d.sbnation.com/w/1.0/jstag| (easylist.txt: 48834) -.ox-d.sbnation.com/w/1\.0/jstag$ -# @@||overture.london^$~third-party (easylist.txt: 48830) -.overture.london -# @@||ottawasun.com/assets/js/dfp.js? (easylist.txt: 48829) -.ottawasun.com/assets/js/dfp\.js\? -# @@||otakumode.com/shop/titleArea?*_promo_id=$xmlhttprequest (easylist.txt: 48827) -.otakumode.com/shop/titleArea\?.*_promo_id= -# @@||osdir.com/ml/dateindex*&num=$subdocument (easylist.txt: 48826) -.osdir.com/ml/dateindex.*&num= -# @@||oregonlive.com/static/common/js/ads/ads.js (easylist.txt: 48825) -.oregonlive.com/static/common/js/ads/ads\.js -# @@||opgevenisgeenoptie.nl^*/favicon_ad6.ico (easylist.txt: 48820) -.opgevenisgeenoptie.nl/.*/favicon_ad6\.ico -# @@||openx.nobelprize.org/openx/www/delivery/$script (easylist.txt: 48816) -.openx.nobelprize.org/openx/www/delivery/ -# @@||openload.io/deliverad/$xmlhttprequest (easylist.txt: 48813) -.openload.io/deliverad/ -# @@||onionstatic.com^*/videoads.js (easylist.txt: 48812) -.onionstatic.com/.*/videoads\.js -# @@||onetravel.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48811) -.onetravel.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||omnikool.discovery.com/realmedia/ads/adstream_mjx.ads/dsc.discovery.com/$script (easylist.txt: 48810) -.omnikool.discovery.com/realmedia/ads/adstream_mjx\.ads/dsc\.discovery\.com/ -# @@||omgubuntu.co.uk^*/banner.js (easylist.txt: 48809) -.omgubuntu.co.uk/.*/banner\.js -# @@||omgili.com/ads.search? (easylist.txt: 48808) -.omgili.com/ads\.search\? -# @@||oldergames.com/adlib/ (easylist.txt: 48807) -.oldergames.com/adlib/ -# @@||okta.com/js/app/sso/interstitial.js$~third-party (easylist.txt: 48806) -.okta.com/js/app/sso/interstitial\.js -# @@||ocp.com.com/adfunctions.js? (easylist.txt: 48804) -.ocp.com.com/adfunctions\.js\? -# @@||objects.tremormedia.com/embed/swf/admanager*.swf (easylist.txt: 48803) -.objects.tremormedia.com/embed/swf/admanager.*\.swf -# @@||oascentral.thepostgame.com/om/$script (easylist.txt: 48799) -.oascentral.thepostgame.com/om/ -# @@||oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx.ads$script (easylist.txt: 48798) -.oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx\.ads -# @@||oascentral.surfline.com/realmedia/ads/adstream_sx.ads/www.surfline.com/articles$object-subrequest (easylist.txt: 48797) -.oascentral.surfline.com/realmedia/ads/adstream_sx\.ads/www\.surfline\.com/articles -# @@||oascentral.surfline.com/crossdomain.xml$object-subrequest (easylist.txt: 48796) -.oascentral.surfline.com/crossdomain\.xml -# @@||oascentral.sumworld.com/crossdomain.xml$object-subrequest (easylist.txt: 48793) -.oascentral.sumworld.com/crossdomain\.xml -# @@||oascentral.post-gazette.com/realmedia/ads/$object-subrequest (easylist.txt: 48792) -.oascentral.post-gazette.com/realmedia/ads/ -# @@||oascentral.ibtimes.com/crossdomain.xml$object-subrequest (easylist.txt: 48791) -.oascentral.ibtimes.com/crossdomain\.xml -# @@||oas.theguardian.com^$xmlhttprequest (easylist.txt: 48787) -.oas.theguardian.com -# @@||oas.absoluteradio.co.uk^*/www.absoluteradio.co.uk/player/ (easylist.txt: 48785) -.oas.absoluteradio.co.uk/.*/www\.absoluteradio\.co\.uk/player/ -# @@||oas.absoluteradio.co.uk/realmedia/ads/$object-subrequest (easylist.txt: 48784) -.oas.absoluteradio.co.uk/realmedia/ads/ -# @@||nytimes.perfectmarket.com^$stylesheet (easylist.txt: 48783) -.nytimes.perfectmarket.com -# @@||nytimes.com/adx/images/ads/*_premium-crosswords_bg_600x329.gif (easylist.txt: 48782) -.nytimes.com/adx/images/ads/.*_premium-crosswords_bg_600x329\.gif -# @@||nytimes.com/adx/images/ads/*_buynow_btn_53x18.gif (easylist.txt: 48781) -.nytimes.com/adx/images/ads/.*_buynow_btn_53x18\.gif -# @@||nytimes.com/ads/interstitial/skip*.gif (easylist.txt: 48778) -.nytimes.com/ads/interstitial/skip.*\.gif -# @@||nsandi.com/files/asset/banner-ads/ (easylist.txt: 48773) -.nsandi.com/files/asset/banner-ads/ -# @@||nola.com/static/common/js/ads/ads.js (easylist.txt: 48771) -.nola.com/static/common/js/ads/ads\.js -# @@||nj.com/static/common/js/ads/ads.js (easylist.txt: 48770) -.nj.com/static/common/js/ads/ads\.js -# @@||nintandbox.net/images/*-Advertising_$image (easylist.txt: 48769) -.nintandbox.net/images/.*-Advertising_ -# @@||nickjr.com/global/scripts/overture/sponsored_links_lib.js (easylist.txt: 48768) -.nickjr.com/global/scripts/overture/sponsored_links_lib\.js -# @@||nickjr.com/assets/ad-entry/ (easylist.txt: 48767) -.nickjr.com/assets/ad-entry/ -# @@||nick.com/js/ads.jsp (easylist.txt: 48765) -.nick.com/js/ads\.jsp -# @@||nflcdn.com/static/*/global/ads.js (easylist.txt: 48761) -.nflcdn.com/static/.*/global/ads\.js -# @@||nfl.com^*/ads.js (easylist.txt: 48760) -.nfl.com/.*/ads\.js -# @@||nextmedia.com/admedia/$object-subrequest (easylist.txt: 48758) -.nextmedia.com/admedia/ -# @@||newzimbabwe.com/banners/350x350/ (easylist.txt: 48756) -.newzimbabwe.com/banners/350x350/ -# @@||newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn.dart.js (easylist.txt: 48755) -.newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn\.dart\.js -# @@||newsweek.com/ads/adscripts/prod/*_$script (easylist.txt: 48754) -.newsweek.com/ads/adscripts/prod/.*_ -# @@||newsarama.com/common/js/advertisements.js (easylist.txt: 48753) -.newsarama.com/common/js/advertisements\.js -# @@||news.nate.com/etc/adrectanglebanner? (easylist.txt: 48752) -.news.nate.com/etc/adrectanglebanner\? -# @@||newgrounds.com/ads/advertisement.js (easylist.txt: 48751) -.newgrounds.com/ads/advertisement\.js -# @@||newgrounds.com/ads/ad_medals.gif (easylist.txt: 48750) -.newgrounds.com/ads/ad_medals\.gif -# @@||networkworld.com/www/js/ads/gpt_includes.js? (easylist.txt: 48749) -.networkworld.com/www/js/ads/gpt_includes\.js\? -# @@||neodrive.co/cam/directrev.js? (easylist.txt: 48746) -.neodrive.co/cam/directrev\.js\? -# @@||neobux.com/v/?a=l&l=$document (easylist.txt: 48745) -.neobux.com/v/\?a=l&l= -# @@||nedbank.co.za/website/content/home/google_ad_Cut.jpg (easylist.txt: 48744) -.nedbank.co.za/website/content/home/google_ad_Cut\.jpg -# @@||ncregister.com/images/sized/images/ads/ (easylist.txt: 48743) -.ncregister.com/images/sized/images/ads/ -# @@||ncregister.com/images/ads/ (easylist.txt: 48742) -.ncregister.com/images/ads/ -# @@||nbc.com/collarity/ (easylist.txt: 48741) -.nbc.com/collarity/ -# @@||nature.com/advertising/$~third-party (easylist.txt: 48739) -.nature.com/advertising/ -# @@||nationmultimedia.com/new/js/doubleclick.js (easylist.txt: 48738) -.nationmultimedia.com/new/js/doubleclick\.js -# @@||nationalgeographic.com/channel/videos/satellite/*.swf?adsite= (easylist.txt: 48737) -.nationalgeographic.com/channel/videos/satellite/.*\.swf\?adsite= -# @@||nationalbusinessfurniture.com/product/advertising/$image (easylist.txt: 48736) -.nationalbusinessfurniture.com/product/advertising/ -# @@||napaonline.com/Content/script/jquery.lazyload-ad-$script (easylist.txt: 48735) -.napaonline.com/Content/script/jquery\.lazyload-ad- -# @@||myrecipes.com/static/advertising/ (easylist.txt: 48733) -.myrecipes.com/static/advertising/ -# @@||myprotein.com/Files/OpenX/$image,~third-party (easylist.txt: 48732) -.myprotein.com/Files/OpenX/ -# @@||mymemory.co.uk/images/adverts/$image,~third-party (easylist.txt: 48731) -.mymemory.co.uk/images/adverts/ -# @@||myhouseabroad.com/js/adview.js (easylist.txt: 48730) -.myhouseabroad.com/js/adview\.js -# @@||myhouseabroad.com/*/ads/ (easylist.txt: 48729) -.myhouseabroad.com/.*/ads/ -# @@||mycricket.com/openx/offers/$image (easylist.txt: 48728) -.mycricket.com/openx/offers/ -# @@||myadt.com/js-ext/smartbanner/ (easylist.txt: 48727) -.myadt.com/js-ext/smartbanner/ -# @@||mxtabs.net/ads/interstitial$subdocument (easylist.txt: 48726) -.mxtabs.net/ads/interstitial -# @@||mutualofomaha.com/images/ads/ (easylist.txt: 48724) -.mutualofomaha.com/images/ads/ -# @@||mussil.com/mussilcomfiles/commercials/*.jpg (easylist.txt: 48723) -.mussil.com/mussilcomfiles/commercials/.*\.jpg -# @@||music-clips.net/ads/list.txt?_=$xmlhttprequest (easylist.txt: 48720) -.music-clips.net/ads/list\.txt\?_= -# @@||mudah.my/css/mudah_adview_min.css (easylist.txt: 48719) -.mudah.my/css/mudah_adview_min\.css -# @@||muchmusic.com/includes/js/adzone.js (easylist.txt: 48718) -.muchmusic.com/includes/js/adzone\.js -# @@||msy.com.au/images/ADbanner/eletter/$~third-party (easylist.txt: 48717) -.msy.com.au/images/ADbanner/eletter/ -# @@||msnbcmedia.msn.com^*/sitemanagement/ads/*/blog_printbutton.png (easylist.txt: 48715) -.msnbcmedia.msn.com/.*/sitemanagement/ads/.*/blog_printbutton\.png -# @@||msi.com/pic/banner/ (easylist.txt: 48714) -.msi.com/pic/banner/ -# @@||msi.com/js/topad/topad.css (easylist.txt: 48713) -.msi.com/js/topad/topad\.css -# @@||mp32u.net/adframe.js (easylist.txt: 48711) -.mp32u.net/adframe\.js -# @@||movoto.com/LeaderboardAd.aspx?adSpotName=$subdocument (easylist.txt: 48710) -.movoto.com/LeaderboardAd\.aspx\?adSpotName= -# @@||motortrade.me/js/$~third-party (easylist.txt: 48709) -.motortrade.me/js/ -# @@||motortrade.me/advert/$~third-party (easylist.txt: 48708) -.motortrade.me/advert/ -# @@||monster.com/awm/*/ADVERTISING- (easylist.txt: 48706) -.monster.com/awm/.*/ADVERTISING- -# @@||moneybookers.com/ads/$~third-party (easylist.txt: 48705) -.moneybookers.com/ads/ -# @@||mofunzone.com/ads/ima3_preloader_*.swf$object (easylist.txt: 48704) -.mofunzone.com/ads/ima3_preloader_.*\.swf -# @@||mobinozer.com^*/gads.js (easylist.txt: 48699) -.mobinozer.com/.*/gads\.js -# @@||mobilefish.com/scripts/advertisement.js (easylist.txt: 48698) -.mobilefish.com/scripts/advertisement\.js -# @@||mlive.com/static/common/js/ads/ads.js (easylist.txt: 48696) -.mlive.com/static/common/js/ads/ads\.js -# @@||mlb.com/shared/components/gameday/v6/js/adproxy.js (easylist.txt: 48695) -.mlb.com/shared/components/gameday/v6/js/adproxy\.js -# @@||mlb.com/scripts/dc_ads.js (easylist.txt: 48694) -.mlb.com/scripts/dc_ads\.js -# @@||mircscripts.org/advertisements.js (easylist.txt: 48692) -.mircscripts.org/advertisements\.js -# @@||miniclipcdn.com/content/push-ads/ (easylist.txt: 48691) -.miniclipcdn.com/content/push-ads/ -# @@||miniclip.com/scripts/js.php? (easylist.txt: 48690) -.miniclip.com/scripts/js\.php\? -# @@||miller-mccune.com/wp-content/plugins/*/oiopub-direct/images/style/output.css (easylist.txt: 48689) -.miller-mccune.com/wp-content/plugins/.*/oiopub-direct/images/style/output\.css -# @@||militaryfleamarket.net/media/com_jomclassifieds/adverts/ (easylist.txt: 48688) -.militaryfleamarket.net/media/com_jomclassifieds/adverts/ -# @@||metalmusicradio.com^*/banner.php (easylist.txt: 48685) -.metalmusicradio.com/.*/banner\.php -# @@||metacafe.com/banner.php? (easylist.txt: 48684) -.metacafe.com/banner\.php\? -# @@||merkatia.com/adimages/$image (easylist.txt: 48683) -.merkatia.com/adimages/ -# @@||meritline.com/banners/$image,~third-party (easylist.txt: 48682) -.meritline.com/banners/ -# @@||medscapestatic.com/pi/scripts/ads/dfp/profads2.js (easylist.txt: 48680) -.medscapestatic.com/pi/scripts/ads/dfp/profads2\.js -# @@||medscape.com/html.ng/*slideshow (easylist.txt: 48679) -.medscape.com/html\.ng/.*slideshow -# @@||mediabistro.com^*/displayadleader.asp?$subdocument (easylist.txt: 48675) -.mediabistro.com/.*/displayadleader\.asp\? -# @@||media.washingtonpost.com/wp-srv/ad/tiffany_manager.js (easylist.txt: 48674) -.media.washingtonpost.com/wp-srv/ad/tiffany_manager\.js -# @@||media.washingtonpost.com/wp-srv/ad/photo-ad-config.jsonp (easylist.txt: 48673) -.media.washingtonpost.com/wp-srv/ad/photo-ad-config\.jsonp -# @@||media.washingtonpost.com/wp-srv/ad/ad_v2.js (easylist.txt: 48672) -.media.washingtonpost.com/wp-srv/ad/ad_v2\.js -# @@||media.styleblueprint.com/ad.php?$script,~third-party (easylist.txt: 48671) -.media.styleblueprint.com/ad\.php\? -# @@||media.expedia.com/*/ads/ (easylist.txt: 48666) -.media.expedia.com/.*/ads/ -# @@||media.cargocollective.com^$image (easylist.txt: 48665) -.media.cargocollective.com -# @@||media.avclub.com/onion/js/videoads.js$script (easylist.txt: 48664) -.media.avclub.com/onion/js/videoads\.js -# @@||mcpn.us/resources/images/adv/$~third-party (easylist.txt: 48662) -.mcpn.us/resources/images/adv/ -# @@||mcfc.co.uk/js/core/adtracking.js (easylist.txt: 48661) -.mcfc.co.uk/js/core/adtracking\.js -# @@||maxim.com/advert*/countdown/$script,stylesheet (easylist.txt: 48660) -.maxim.com/advert.*/countdown/ -# @@||masslive.com/static/common/js/ads/ads.js (easylist.txt: 48659) -.masslive.com/static/common/js/ads/ads\.js -# @@||marketing.beatport.com.s3.amazonaws.com/html/*/Banner_Ads/header_$image (easylist.txt: 48657) -.marketing.beatport.com.s3.amazonaws.com/html/.*/Banner_Ads/header_ -# @@||marines.com/videos/commercials/$object-subrequest (easylist.txt: 48656) -.marines.com/videos/commercials/ -# @@||marieclaire.com/ams/page-ads.js? (easylist.txt: 48655) -.marieclaire.com/ams/page-ads\.js\? -# @@||marcs.com^*/AdViewer.js (easylist.txt: 48654) -.marcs.com/.*/AdViewer\.js -# @@||marcokrenn.com/public/images/pages/advertising/$~third-party (easylist.txt: 48653) -.marcokrenn.com/public/images/pages/advertising/ -# @@||marciglesias.com/publicidad/ (easylist.txt: 48652) -.marciglesias.com/publicidad/ -# @@||marca.com/deporte/css/*/publicidad.css (easylist.txt: 48651) -.marca.com/deporte/css/.*/publicidad\.css -# @@||maps.gstatic.com/maps-api-*/adsense.js (easylist.txt: 48650) -.maps.gstatic.com/maps-api-.*/adsense\.js -# @@||maps.googleapis.com/maps-api-*/adsense.js (easylist.txt: 48649) -.maps.googleapis.com/maps-api-.*/adsense\.js -# @@||maps.chitika.net^ (easylist.txt: 48648) -.maps.chitika.net -# @@||maps-static.chitika.net^ (easylist.txt: 48647) -.maps-static.chitika.net -# @@||mansioncasino.com/banners/$~third-party (easylist.txt: 48646) -.mansioncasino.com/banners/ -# @@||manoramaonline.com/advt/cricbuzz/ (easylist.txt: 48645) -.manoramaonline.com/advt/cricbuzz/ -# @@||manilatimes.net/images/banners/logo-mt.png (easylist.txt: 48644) -.manilatimes.net/images/banners/logo-mt\.png -# @@||mail.yahoo.com/neo/assets/swf/uploader.swf (easylist.txt: 48643) -.mail.yahoo.com/neo/assets/swf/uploader\.swf -# @@||mail.google.com^*/uploaderapi*.swf (easylist.txt: 48642) -.mail.google.com/.*/uploaderapi.*\.swf -# @@||mail.google.com^*&view=ad&$xmlhttprequest (easylist.txt: 48641) -.mail.google.com/.*&view=ad& -# @@||magicbricks.com/img/adbanner/ (easylist.txt: 48640) -.magicbricks.com/img/adbanner/ -# @@||mads.com.com/ads/common/faith/*.xml$object-subrequest (easylist.txt: 48638) -.mads.com.com/ads/common/faith/.*\.xml -# @@||mads.cbs.com/mac-ad?$object-subrequest (easylist.txt: 48637) -.mads.cbs.com/mac-ad\? -# @@||macworld.com/www/js/ads/jquery.lazyload-ad.js (easylist.txt: 48636) -.macworld.com/www/js/ads/jquery\.lazyload-ad\.js -# @@||mac-sports.com/ads2/508128.swf (easylist.txt: 48635) -.mac-sports.com/ads2/508128\.swf -# @@||lyngsat-logo.com/icon/flag/az/ad.gif (easylist.txt: 48634) -.lyngsat-logo.com/icon/flag/az/ad\.gif -# @@||luceosolutions.com/recruit/advert_details.php?id=$subdocument (easylist.txt: 48632) -.luceosolutions.com/recruit/advert_details\.php\?id= -# @@||ltassrv.com/crossdomain.xml$object-subrequest (easylist.txt: 48629) -.ltassrv.com/crossdomain\.xml -# @@||lovefilm.com/static/scripts/advertising/dart.overlay.js (easylist.txt: 48627) -.lovefilm.com/static/scripts/advertising/dart\.overlay\.js -# @@||lovefilm.com/ajax/widgets/advertising/$xmlhttprequest (easylist.txt: 48626) -.lovefilm.com/ajax/widgets/advertising/ -# @@||logmein.com/Serve.aspx?ZoneID=$script,~third-party (easylist.txt: 48622) -.logmein.com/Serve\.aspx\?ZoneID= -# @@||llnwd.net^*/js/3rdparty/swfobject$script (easylist.txt: 48621) -.llnwd.net/.*/js/3rdparty/swfobject -# @@||live365.com/web/components/ads/*.html? (easylist.txt: 48616) -.live365.com/web/components/ads/.*\.html\? -# @@||live365.com/scripts/liveads.js (easylist.txt: 48615) -.live365.com/scripts/liveads\.js -# @@||live365.com/mini/blank300x250.html (easylist.txt: 48614) -.live365.com/mini/blank300x250\.html -# @@||live-support.se^*/Admax/$~third-party (easylist.txt: 48611) -.live-support.se/.*/Admax/ -# @@||listings.brokersweb.com/JsonSearchSb.aspx?*&maxAds=$script (easylist.txt: 48610) -.listings.brokersweb.com/JsonSearchSb\.aspx\?.*&maxAds= -# @@||lipsum.com/images/banners/ (easylist.txt: 48609) -.lipsum.com/images/banners/ -# @@||linksave.in/img/usercp/ads.png (easylist.txt: 48605) -.linksave.in/img/usercp/ads\.png -# @@||linkbucks.com/tmpl/$image,stylesheet (easylist.txt: 48603) -.linkbucks.com/tmpl/ -# @@||limecellular.com/resources/images/adv/$~third-party (easylist.txt: 48602) -.limecellular.com/resources/images/adv/ -# @@||lightningcast.net/servlets/getplaylist?*&responsetype=asx&$object (easylist.txt: 48600) -.lightningcast.net/servlets/getplaylist\?.*&responsetype=asx& -# @@||libraryjournal.com/wp-content/plugins/wp-intern-ads/$script,stylesheet (easylist.txt: 48599) -.libraryjournal.com/wp-content/plugins/wp-intern-ads/ -# @@||lesacasino.com/banners/$~third-party (easylist.txt: 48598) -.lesacasino.com/banners/ -# @@||lemon-ads.com^$~document,~third-party (easylist.txt: 48597) -.lemon-ads.com -# @@||lelong.com.my/UserImages/Ads/$image,~third-party (easylist.txt: 48596) -.lelong.com.my/UserImages/Ads/ -# @@||lehighvalleylive.com/static/common/js/ads/ads.js (easylist.txt: 48595) -.lehighvalleylive.com/static/common/js/ads/ads\.js -# @@||larazon.es/larazon-theme/js/publicidad.js? (easylist.txt: 48591) -.larazon.es/larazon-theme/js/publicidad\.js\? -# @@||lanacion.com.ar/*/publicidad/ (easylist.txt: 48590) -.lanacion.com.ar/.*/publicidad/ -# @@||lads.myspace.com/videos/msvideoplayer.swf?$object,object-subrequest (easylist.txt: 48589) -.lads.myspace.com/videos/msvideoplayer\.swf\? -# @@||lacanadaonline.com/hive/images/adv_ (easylist.txt: 48588) -.lacanadaonline.com/hive/images/adv_ -# @@||l.yimg.com/zz/combo?*/advertising.$stylesheet (easylist.txt: 48587) -.l.yimg.com/zz/combo\?.*/advertising\. -# @@||l.yimg.com/*/adservice/ (easylist.txt: 48586) -.l.yimg.com/.*/adservice/ -# @@||ksl.com/resources/classifieds/graphics/ad_ (easylist.txt: 48585) -.ksl.com/resources/classifieds/graphics/ad_ -# @@||krispykreme.com/content/images/ads/ (easylist.txt: 48584) -.krispykreme.com/content/images/ads/ -# @@||kotak.com/banners/$image (easylist.txt: 48583) -.kotak.com/banners/ -# @@||koaa.com/videoplayer/iframe.cfm?*&hide_ads= (easylist.txt: 48581) -.koaa.com/videoplayer/iframe\.cfm\?.*&hide_ads= -# @@||kloubert.com/wp-content/uploads/*/Advertising_$image,~third-party (easylist.txt: 48580) -.kloubert.com/wp-content/uploads/.*/Advertising_ -# @@||kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_$object (easylist.txt: 48579) -.kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_ -# @@||kingofgames.net/gads/kingofgames.swf (easylist.txt: 48576) -.kingofgames.net/gads/kingofgames\.swf -# @@||king5.com/templates/belo_dart_iframed_ad?dartTag=LeaderTop&$subdocument (easylist.txt: 48575) -.king5.com/templates/belo_dart_iframed_ad\?dartTag=LeaderTop& -# @@||kidshealth.org/licensees/licensee1/js/gam.html (easylist.txt: 48574) -.kidshealth.org/licensees/licensee1/js/gam\.html -# @@||kcra.com^*/adpositionsizein-min.js (easylist.txt: 48572) -.kcra.com/.*/adpositionsizein-min\.js -# @@||kcna.kp/images/ads_arrow_ (easylist.txt: 48571) -.kcna.kp/images/ads_arrow_ -# @@||karolinashumilas.com/img/adv/ (easylist.txt: 48570) -.karolinashumilas.com/img/adv/ -# @@||kamernet.nl/Adverts/$~third-party (easylist.txt: 48569) -.kamernet.nl/Adverts/ -# @@||justin-klein.com/banners/ (easylist.txt: 48567) -.justin-klein.com/banners/ -# @@||jsstatic.com/_ads/ (easylist.txt: 48565) -.jsstatic.com/_ads/ -# @@||joyhubs.com/View/*/js/pop.js (easylist.txt: 48563) -.joyhubs.com/View/.*/js/pop\.js -# @@||jobstreet.com/_ads/ (easylist.txt: 48561) -.jobstreet.com/_ads/ -# @@||jobsearch.careerone.com.au^*/bannerad.asmx/ (easylist.txt: 48560) -.jobsearch.careerone.com.au/.*/bannerad\.asmx/ -# @@||jobs.wa.gov.au/images/advertimages/ (easylist.txt: 48559) -.jobs.wa.gov.au/images/advertimages/ -# @@||itweb.co.za/banners/en-cdt*.gif (easylist.txt: 48557) -.itweb.co.za/banners/en-cdt.*\.gif -# @@||itv.com^*/tvshows_adcall_08.js (easylist.txt: 48556) -.itv.com/.*/tvshows_adcall_08\.js -# @@||itv.com^*/flvplayer.swf?$object (easylist.txt: 48555) -.itv.com/.*/flvplayer\.swf\? -# @@||itv.com^*.adserver.js (easylist.txt: 48554) -.itv.com/.*\.adserver\.js -# @@||itv.com/itv/hserver/*/site=itv/$xmlhttprequest (easylist.txt: 48551) -.itv.com/itv/hserver/.*/site=itv/ -# @@||island.lk/userfiles/image/danweem/island.gif (easylist.txt: 48550) -.island.lk/userfiles/image/danweem/island\.gif -# @@||iolproperty.co.za/images/ad_banner.png (easylist.txt: 48546) -.iolproperty.co.za/images/ad_banner\.png -# @@||inviziads.com/crossdomain.xml$object-subrequest (easylist.txt: 48545) -.inviziads.com/crossdomain\.xml -# @@||investors.com/Scripts/AdScript.js? (easylist.txt: 48544) -.investors.com/Scripts/AdScript\.js\? -# @@||interadcorp.com/script/interad.$script,stylesheet (easylist.txt: 48543) -.interadcorp.com/script/interad\. -# @@||intellitxt.com/ast/js/nbcuni/$script (easylist.txt: 48540) -.intellitxt.com/ast/js/nbcuni/ -# @@||intellitext.co^$~third-party (easylist.txt: 48539) -.intellitext.co -# @@||intellicast.com/App_Scripts/ad.min.js (easylist.txt: 48538) -.intellicast.com/App_Scripts/ad\.min\.js -# @@||inspire.net.nz/adverts/$image (easylist.txt: 48537) -.inspire.net.nz/adverts/ -# @@||inserts2online.com/images/site/viewad.gif (easylist.txt: 48530) -.inserts2online.com/images/site/viewad\.gif -# @@||inserts2online.com/*.jsp?*&adid=$subdocument (easylist.txt: 48529) -.inserts2online.com/.*\.jsp\?.*&adid= -# @@||infoworld.com/www/js/ads/gpt_includes.js (easylist.txt: 48524) -.infoworld.com/www/js/ads/gpt_includes\.js -# @@||indiatimes.com/configspace/ads/$object,object-subrequest (easylist.txt: 48523) -.indiatimes.com/configspace/ads/ -# @@||indiaresults.com/advertisements/submit.png (easylist.txt: 48522) -.indiaresults.com/advertisements/submit\.png -# @@||incredibox.fr/js/advertise.js (easylist.txt: 48521) -.incredibox.fr/js/advertise\.js -# @@||incredibox.fr/image/advertise/ (easylist.txt: 48520) -.incredibox.fr/image/advertise/ -# @@||incredibox.fr/advertise/_liste.js (easylist.txt: 48519) -.incredibox.fr/advertise/_liste\.js -# @@||imobie.com/js/anytrans-adv.js (easylist.txt: 48515) -.imobie.com/js/anytrans-adv\.js -# @@||img.weather.weatherbug.com^*/stickers/$image,stylesheet (easylist.txt: 48513) -.img.weather.weatherbug.com/.*/stickers/ -# @@||img.travidia.com^$image (easylist.txt: 48512) -.img.travidia.com -# @@||img.thedailywtf.com/images/ads/ (easylist.txt: 48511) -.img.thedailywtf.com/images/ads/ -# @@||imasdk.googleapis.com/flash/sdkloader/adsapi_3.swf$object-subrequest (easylist.txt: 48504) -.imasdk.googleapis.com/flash/sdkloader/adsapi_3\.swf -# @@||imasdk.googleapis.com/flash/core/3.*/adsapi.swf$object-subrequest (easylist.txt: 48503) -.imasdk.googleapis.com/flash/core/3\..*/adsapi\.swf -# @@||images.nickjr.com/ads/promo/ (easylist.txt: 48499) -.images.nickjr.com/ads/promo/ -# @@||images.nationalgeographic.com/wpf/media-live/graphic/ (easylist.txt: 48498) -.images.nationalgeographic.com/wpf/media-live/graphic/ -# @@||images.mmorpg.com/scripts/advertisement.js (easylist.txt: 48497) -.images.mmorpg.com/scripts/advertisement\.js -# @@||images.frys.com/art/ads/js/$script,stylesheet (easylist.txt: 48496) -.images.frys.com/art/ads/js/ -# @@||images.frys.com/art/ads/images/$image,~third-party (easylist.txt: 48495) -.images.frys.com/art/ads/images/ -# @@||images.forbes.com/video/ads/blank_frame.flv$object-subrequest (easylist.txt: 48494) -.images.forbes.com/video/ads/blank_frame\.flv -# @@||images.dashtickets.co.nz/advertising/featured/$image (easylist.txt: 48493) -.images.dashtickets.co.nz/advertising/featured/ -# @@||ikea.com^*/img/ads/ (easylist.txt: 48489) -.ikea.com/.*/img/ads/ -# @@||ikea.com^*/img/ad_ (easylist.txt: 48488) -.ikea.com/.*/img/ad_ -# @@||iframe.ivillage.com/iframe_render? (easylist.txt: 48486) -.iframe.ivillage.com/iframe_render\? -# @@||ifeelgoood.com/tapcontent-*.swf?clicktag=$object (easylist.txt: 48485) -.ifeelgoood.com/tapcontent-.*\.swf\?clicktag= -# @@||identity-us.com/ads/ads.html (easylist.txt: 48484) -.identity-us.com/ads/ads\.html -# @@||icons.iconarchive.com/icons/$image (easylist.txt: 48483) -.icons.iconarchive.com/icons/ -# @@||icefilms.info/jquery.lazyload-ad-*-min.js (easylist.txt: 48482) -.icefilms.info/jquery\.lazyload-ad-.*-min\.js -# @@||ibnlive.com/videoads/*_ads_*.xml$object-subrequest (easylist.txt: 48480) -.ibnlive.com/videoads/.*_ads_.*\.xml -# @@||i.espn.co.uk/ads/gamemodule_$object (easylist.txt: 48479) -.i.espn.co.uk/ads/gamemodule_ -# @@||i.cdn.turner.com^*/adserviceadapter.swf (easylist.txt: 48477) -.i.cdn.turner.com/.*/adserviceadapter\.swf -# @@||huntington.com/Script/AdManager.js (easylist.txt: 48476) -.huntington.com/Script/AdManager\.js -# @@||hulu.com/published/*.mp4 (easylist.txt: 48474) -.hulu.com/published/.*\.mp4 -# @@||hulu.com/published/*.flv (easylist.txt: 48473) -.hulu.com/published/.*\.flv -# @@||hulkshare.com/js/adsmanager.js (easylist.txt: 48472) -.hulkshare.com/js/adsmanager\.js -# @@||huffingtonpost.com/images/ads/$~third-party (easylist.txt: 48470) -.huffingtonpost.com/images/ads/ -# @@||huffingtonpost.com/_uac/adpage.html (easylist.txt: 48469) -.huffingtonpost.com/_uac/adpage\.html -# @@||huffingtonpost.co.uk/_uac/adpage.html (easylist.txt: 48468) -.huffingtonpost.co.uk/_uac/adpage\.html -# @@||hp.com^*/scripts/ads/$~third-party (easylist.txt: 48467) -.hp.com/.*/scripts/ads/ -# @@||howcast.com/flash/assets/ads/liverail.swf (easylist.txt: 48466) -.howcast.com/flash/assets/ads/liverail\.swf -# @@||houstonpress.com/adindex/$xmlhttprequest (easylist.txt: 48465) -.houstonpress.com/adindex/ -# @@||housebeautiful.com/cm/shared/scripts/refreshads-*.js (easylist.txt: 48464) -.housebeautiful.com/cm/shared/scripts/refreshads-.*\.js -# @@||housebeautiful.com/ams/page-ads.js (easylist.txt: 48463) -.housebeautiful.com/ams/page-ads\.js -# @@||hotnewhiphop.com/web_root/images/ads/banner-*.png (easylist.txt: 48462) -.hotnewhiphop.com/web_root/images/ads/banner-.*\.png -# @@||homedepot.com^*/thdGoogleAdSense.js (easylist.txt: 48461) -.homedepot.com/.*/thdGoogleAdSense\.js -# @@||hologfx.com/banners/$image,~third-party (easylist.txt: 48460) -.hologfx.com/banners/ -# @@||historyextra.com^*_advertorial$stylesheet (easylist.txt: 48459) -.historyextra.com/.*_advertorial -# @@||hipsterhitler.com/wp-content/webcomic/$image (easylist.txt: 48458) -.hipsterhitler.com/wp-content/webcomic/ -# @@||hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement.jpg (easylist.txt: 48457) -.hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement\.jpg -# @@||hillvue.com/banners/$image,~third-party (easylist.txt: 48456) -.hillvue.com/banners/ -# @@||hentai-foundry.com/themes/default/images/buttons/add_comment_icon.png (easylist.txt: 48455) -.hentai-foundry.com/themes/default/images/buttons/add_comment_icon\.png -# @@||hellotv.in/livetv/advertisements.xml$object-subrequest (easylist.txt: 48454) -.hellotv.in/livetv/advertisements\.xml -# @@||hebdenbridge.co.uk/ads/images/smallads.png (easylist.txt: 48453) -.hebdenbridge.co.uk/ads/images/smallads\.png -# @@||healthline.com/v2/ad-mr2-iframe?useAdsHost=*&dfpAdSite= (easylist.txt: 48452) -.healthline.com/v2/ad-mr2-iframe\?useAdsHost=.*&dfpAdSite= -# @@||healthline.com/v2/ad-leaderboard-iframe?$subdocument (easylist.txt: 48451) -.healthline.com/v2/ad-leaderboard-iframe\? -# @@||healthline.com/resources/base/js/responsive-ads.js? (easylist.txt: 48450) -.healthline.com/resources/base/js/responsive-ads\.js\? -# @@||healthadnet.adprimemedia.com/vn/vna/data/ad.php$object-subrequest (easylist.txt: 48448) -.healthadnet.adprimemedia.com/vn/vna/data/ad\.php -# @@||hbindependent.com/hive/images/adv_ (easylist.txt: 48447) -.hbindependent.com/hive/images/adv_ -# @@||hawaii-scuba.com/ads_styles.css (easylist.txt: 48446) -.hawaii-scuba.com/ads_styles\.css -# @@||harmonsgrocery.com/ads/$image (easylist.txt: 48445) -.harmonsgrocery.com/ads/ -# @@||hallo.co.uk/advert/$~third-party (easylist.txt: 48444) -.hallo.co.uk/advert/ -# @@||hafeezcentre.pk^*/ads_images/$image,~third-party (easylist.txt: 48443) -.hafeezcentre.pk/.*/ads_images/ -# @@||gws.ign.com/ws/search?*&google_adpage=$script (easylist.txt: 48442) -.gws.ign.com/ws/search\?.*&google_adpage= -# @@||guysen.com/script/ads.js (easylist.txt: 48441) -.guysen.com/script/ads\.js -# @@||gumtree.com^*/postAd.js (easylist.txt: 48440) -.gumtree.com/.*/postAd\.js -# @@||gulflive.com/static/common/js/ads/ads.js (easylist.txt: 48439) -.gulflive.com/static/common/js/ads/ads\.js -# @@||guim.co.uk^*/styles/wide/google-ads.css (easylist.txt: 48438) -.guim.co.uk/.*/styles/wide/google-ads\.css -# @@||guardianapps.co.uk^*/advertisement-features$xmlhttprequest (easylist.txt: 48437) -.guardianapps.co.uk/.*/advertisement-features -# @@||guardian4.com/banners/$image,~third-party (easylist.txt: 48436) -.guardian4.com/banners/ -# @@||gotomeeting.com/images/ad/$image,stylesheet (easylist.txt: 48434) -.gotomeeting.com/images/ad/ -# @@||gotoassist.com/images/ad/ (easylist.txt: 48433) -.gotoassist.com/images/ad/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?format=728x90^$document,subdocument (easylist.txt: 48424) -.google.com/uds/modules/elements/newsshow/iframe\.html\?format=728x90[^\w%.-] -# @@||google.com/search?q=$xmlhttprequest (easylist.txt: 48419) -.google.com/search\?q= -# @@||google.com/_static/images/*/ads.png (easylist.txt: 48411) -.google.com/_static/images/.*/ads\.png -# @@||google.com/_/apps-static/*/socialads/$script,stylesheet (easylist.txt: 48410) -.google.com/_/apps-static/.*/socialads/ -# @@||google.*/webpagethumbnail?*&query=$script (easylist.txt: 48409) -.google.*./(.*/)?webpagethumbnail\?.*&query= -# @@||google.*/search?sclient=*&q=$xmlhttprequest (easylist.txt: 48408) -.google.*./(.*/)?search\?sclient=.*&q= -# @@||google.*/s?*&q=$xmlhttprequest (easylist.txt: 48407) -.google.*./(.*/)?s\?.*&q= -# @@||goodyhoo.com/banners/ (easylist.txt: 48406) -.goodyhoo.com/banners/ -# @@||goember.com/ad/*.xml?$xmlhttprequest (easylist.txt: 48405) -.goember.com/ad/.*\.xml\? -# @@||godtube.com/resource/mediaplayer/*&adzone=$object-subrequest (easylist.txt: 48404) -.godtube.com/resource/mediaplayer/.*&adzone= -# @@||godlessnightsfilm.co.uk/scripts/ad-gallery/ (easylist.txt: 48403) -.godlessnightsfilm.co.uk/scripts/ad-gallery/ -# @@||gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-*.swf$object (easylist.txt: 48401) -.gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-.*\.swf -# @@||gmfreeze.org/site_media//uploads/page_ad_images/$image (easylist.txt: 48399) -.gmfreeze.org/site_media//uploads/page_ad_images/ -# @@||globaltv.com/js/smdg_ads.js (easylist.txt: 48398) -.globaltv.com/js/smdg_ads\.js -# @@||glendalenewspress.com/hive/images/adv_ (easylist.txt: 48396) -.glendalenewspress.com/hive/images/adv_ -# @@||glamour.com/aspen/js/dartCall.js (easylist.txt: 48395) -.glamour.com/aspen/js/dartCall\.js -# @@||glamour.com/aspen/components/cn-fe-ads/js/cn.dart.js (easylist.txt: 48394) -.glamour.com/aspen/components/cn-fe-ads/js/cn\.dart\.js -# @@||gitorious.org/adv/$~third-party,xmlhttprequest (easylist.txt: 48393) -.gitorious.org/adv/ -# @@||girlsplay.com/banners/ima3_preloader_$object (easylist.txt: 48392) -.girlsplay.com/banners/ima3_preloader_ -# @@||getgamesgo.com/Banners/$image,~third-party (easylist.txt: 48388) -.getgamesgo.com/Banners/ -# @@||geektime.com/wp-content/uploads/*/Google-Adsense-$image,~third-party (easylist.txt: 48387) -.geektime.com/wp-content/uploads/.*/Google-Adsense- -# @@||gcultra.com/js/exit_popup.js (easylist.txt: 48386) -.gcultra.com/js/exit_popup\.js -# @@||garrysmod.org/ads/$image,script,stylesheet (easylist.txt: 48385) -.garrysmod.org/ads/ -# @@||garmin.com^*/Sponsors.js? (easylist.txt: 48384) -.garmin.com/.*/Sponsors\.js\? -# @@||gamesgames.com/vda/friendly-iframe.html?videoPreroll300x250$subdocument (easylist.txt: 48381) -.gamesgames.com/vda/friendly-iframe\.html\?videoPreroll300x250 -# @@||games.cnn.com/ad/$object,object-subrequest,subdocument (easylist.txt: 48379) -.games.cnn.com/ad/ -# @@||gameitnow.com/ads/google_loader.swf$object (easylist.txt: 48378) -.gameitnow.com/ads/google_loader\.swf -# @@||gameitnow.com/ads/gameadvertentie.php?$subdocument (easylist.txt: 48377) -.gameitnow.com/ads/gameadvertentie\.php\? -# @@||gamehouse.com/adiframe/preroll-ad/$subdocument (easylist.txt: 48376) -.gamehouse.com/adiframe/preroll-ad/ -# @@||game.zylom.com^*/cm_loader.*.swf?$object (easylist.txt: 48375) -.game.zylom.com/.*/cm_loader\..*\.swf\? -# @@||game.zylom.com^*.swf?*&adURL=$object (easylist.txt: 48374) -.game.zylom.com/.*\.swf\?.*&adURL= -# @@||gactv.com^*/javascript/ad/coread/$script (easylist.txt: 48373) -.gactv.com/.*/javascript/ad/coread/ -# @@||g4tv.com/clientscriptoptimizer.ashx?*-ads.$script,stylesheet (easylist.txt: 48372) -.g4tv.com/clientscriptoptimizer\.ashx\?.*-ads\. -# @@||g.doubleclick.net/pagead/ads?ad_type=text_dynamicimage_flash^$object-subrequest (easylist.txt: 48371) -.g.doubleclick.net/pagead/ads\?ad_type=text_dynamicimage_flash[^\w%.-] -# @@||funiaste.net/obrazki/*&adtype= (easylist.txt: 48362) -.funiaste.net/obrazki/.*&adtype= -# @@||fs-freeware.net/images/jdownloads/downloadimages/banner_ads.png (easylist.txt: 48360) -.fs-freeware.net/images/jdownloads/downloadimages/banner_ads\.png -# @@||freeviewnz.tv^*/uploads/ads/ (easylist.txt: 48358) -.freeviewnz.tv/.*/uploads/ads/ -# @@||freeride.co.uk/img/admarket/$~third-party (easylist.txt: 48357) -.freeride.co.uk/img/admarket/ -# @@||freeonlinegames.com/advertising/google-loader.swf?$object (easylist.txt: 48356) -.freeonlinegames.com/advertising/google-loader\.swf\? -# @@||freeonlinegames.com/advertising/adaptv-as3.swf?$object (easylist.txt: 48355) -.freeonlinegames.com/advertising/adaptv-as3\.swf\? -# @@||freeads.in/freead.png (easylist.txt: 48354) -.freeads.in/freead\.png -# @@||freeads.in/classifieds/common/postad.css (easylist.txt: 48353) -.freeads.in/classifieds/common/postad\.css -# @@||forums.realgm.com/banners/ (easylist.txt: 48352) -.forums.realgm.com/banners/ -# @@||fortune.com/data/chartbeat/$xmlhttprequest (easylist.txt: 48351) -.fortune.com/data/chartbeat/ -# @@||forex.com/adx/$image (easylist.txt: 48350) -.forex.com/adx/ -# @@||folklands.com/health/advertise_with_us_files/$~third-party (easylist.txt: 48348) -.folklands.com/health/advertise_with_us_files/ -# @@||flysaa.com^*/jquery.adserver.js (easylist.txt: 48345) -.flysaa.com/.*/jquery\.adserver\.js -# @@||flyerservices.com/cached_banner_pages/*bannerid= (easylist.txt: 48344) -.flyerservices.com/cached_banner_pages/.*bannerid= -# @@||flossmanuals.net/site_static/xinha/plugins/DoubleClick/$~third-party (easylist.txt: 48343) -.flossmanuals.net/site_static/xinha/plugins/DoubleClick/ -# @@||flipboard.com/media/uploads/adv_$image,~third-party (easylist.txt: 48341) -.flipboard.com/media/uploads/adv_ -# @@||fixtracking.com/images/ad-$image,~third-party (easylist.txt: 48339) -.fixtracking.com/images/ad- -# @@||filestage.to/design/player/player.swf?*&popunder=$object,third-party (easylist.txt: 48338) -.filestage.to/design/player/player\.swf\?.*&popunder= -# @@||files.coloribus.com^$image,~third-party (easylist.txt: 48337) -.files.coloribus.com -# @@||fifa.com/flash/videoplayer/libs/advert_$object-subrequest (easylist.txt: 48336) -.fifa.com/flash/videoplayer/libs/advert_ -# @@||festina.com/txt/advertising.xml$object-subrequest (easylist.txt: 48334) -.festina.com/txt/advertising\.xml -# @@||feeds.videogamer.com^*/videoad.xml?$object-subrequest (easylist.txt: 48333) -.feeds.videogamer.com/.*/videoad\.xml\? -# @@||feedroom.speedera.net/static.feedroom.com/affiliate/ (easylist.txt: 48332) -.feedroom.speedera.net/static\.feedroom\.com/affiliate/ -# @@||fbcdn.net/rsrc.php/*-aD2.js$script (easylist.txt: 48330) -.fbcdn.net/rsrc\.php/.*-aD2\.js -# @@||farecompare.com^*/farecomp/ (easylist.txt: 48329) -.farecompare.com/.*/farecomp/ -# @@||faceinhole.com/adsense.swf$object-subrequest (easylist.txt: 48328) -.faceinhole.com/adsense\.swf -# @@||extras.chron.com/banners/*/social_icons/$image,subdocument (easylist.txt: 48325) -.extras.chron.com/banners/.*/social_icons/ -# @@||explosm.net/db/files/comics/$image (easylist.txt: 48324) -.explosm.net/db/files/comics/ -# @@||explosm.net/comics/$image (easylist.txt: 48323) -.explosm.net/comics/ -# @@||expedia.com/minify/ads-min-*.js? (easylist.txt: 48322) -.expedia.com/minify/ads-min-.*\.js\? -# @@||expedia.com/js.ng/*&PLACEMENT=CXHOMECORE_$script (easylist.txt: 48321) -.expedia.com/js\.ng/.*&PLACEMENT=CXHOMECORE_ -# @@||expedia.com/html.cms/TPID=*&ADSIZE=$subdocument (easylist.txt: 48320) -.expedia.com/html\.cms/TPID=.*&ADSIZE= -# @@||expedia.com/daily/common/msi.asp (easylist.txt: 48319) -.expedia.com/daily/common/msi\.asp -# @@||expedia.co.nz/html.cms/tpid=*&adsize= (easylist.txt: 48318) -.expedia.co.nz/html\.cms/tpid=.*&adsize= -# @@||ewallpapers.eu/ads/logo.jpg (easylist.txt: 48316) -.ewallpapers.eu/ads/logo\.jpg -# @@||eventim.de/obj/basic/ad2_obj/layout/ (easylist.txt: 48315) -.eventim.de/obj/basic/ad2_obj/layout/ -# @@||eventcinemas.co.nz^*_adhub_server_$script (easylist.txt: 48314) -.eventcinemas.co.nz/.*_adhub_server_ -# @@||evanscycles.com/ads/$image,~third-party (easylist.txt: 48313) -.evanscycles.com/ads/ -# @@||esquire.com/ams/page-ads.js?$script (easylist.txt: 48312) -.esquire.com/ams/page-ads\.js\? -# @@||espn.go.com^*/espn360/banner?$subdocument (easylist.txt: 48307) -.espn.go.com/.*/espn360/banner\? -# @@||espn.co.uk/ads/gamemodule_v0.2.swf$object (easylist.txt: 48306) -.espn.co.uk/ads/gamemodule_v0\.2\.swf -# @@||equippers.com/absolutebm.aspx?$script (easylist.txt: 48305) -.equippers.com/absolutebm\.aspx\? -# @@||equippers.com/abm.aspx?$script (easylist.txt: 48304) -.equippers.com/abm\.aspx\? -# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview.main.js? (easylist.txt: 48303) -.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview\.main\.js\? -# @@||epicgameads.com/crossdomain.xml$object-subrequest (easylist.txt: 48300) -.epicgameads.com/crossdomain\.xml -# @@||engrish.com/wp-content/uploads/*/advertisement-$image,~third-party (easylist.txt: 48299) -.engrish.com/wp-content/uploads/.*/advertisement- -# @@||englishanimes.com/wp-content/themes/englishanimes/js/pop.js (easylist.txt: 48298) -.englishanimes.com/wp-content/themes/englishanimes/js/pop\.js -# @@||engadget.com/_uac/adpage.html$subdocument (easylist.txt: 48296) -.engadget.com/_uac/adpage\.html -# @@||empireonline.com/images/image_index/300x250/ (easylist.txt: 48295) -.empireonline.com/images/image_index/300x250/ -# @@||emergencymedicalparamedic.com/wp-content/themes/AdSense/style.css (easylist.txt: 48294) -.emergencymedicalparamedic.com/wp-content/themes/AdSense/style\.css -# @@||emailbidding.com^*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 48293) -.emailbidding.com/.*/advertiser/ -# @@||eluxe.ca^*_doubleclick.js*.pagespeed.$script (easylist.txt: 48292) -.eluxe.ca/.*_doubleclick\.js.*\.pagespeed\. -# @@||elephantjournal.com/ad_art/ (easylist.txt: 48291) -.elephantjournal.com/ad_art/ -# @@||eightinc.com/admin/zone.php?zoneid=$xmlhttprequest (easylist.txt: 48290) -.eightinc.com/admin/zone\.php\?zoneid= -# @@||ehow.co.uk/frames/ad.html?$subdocument (easylist.txt: 48289) -.ehow.co.uk/frames/ad\.html\? -# @@||egotastic.us.intellitxt.com/intellitxt/front.asp (easylist.txt: 48288) -.egotastic.us.intellitxt.com/intellitxt/front\.asp -# @@||eeweb.com/comics/*_ads-$image (easylist.txt: 48287) -.eeweb.com/comics/.*_ads- -# @@||eduspec.science.ru.nl^*-images/ad- (easylist.txt: 48286) -.eduspec.science.ru.nl/.*-images/ad- -# @@||edmontonsun.com/assets/js/dfp.js? (easylist.txt: 48285) -.edmontonsun.com/assets/js/dfp\.js\? -# @@||edmontonjournal.com/js/adsync/adsynclibrary.js (easylist.txt: 48284) -.edmontonjournal.com/js/adsync/adsynclibrary\.js -# @@||edgar.pro-g.co.uk/data/*/videos/adverts/$object-subrequest (easylist.txt: 48281) -.edgar.pro-g.co.uk/data/.*/videos/adverts/ -# @@||economist.com.na^*/banners/cartoon_ (easylist.txt: 48280) -.economist.com.na/.*/banners/cartoon_ -# @@||eboundservices.com/iframe/newads/iframe.php?stream=$subdocument (easylist.txt: 48279) -.eboundservices.com/iframe/newads/iframe\.php\?stream= -# @@||ebayrtm.com/rtm?rtmcmd&a=json&cb=parent.$script (easylist.txt: 48278) -.ebayrtm.com/rtm\?rtmcmd&a=json&cb=parent\. -# @@||easyfundraising.org.uk/images/home/*-120x60.$image (easylist.txt: 48277) -.easyfundraising.org.uk/images/home/.*-120x60\. -# @@||earthtv.com/player_tmp/overlayad.js (easylist.txt: 48276) -.earthtv.com/player_tmp/overlayad\.js -# @@||earthtechling.com^*/imasters-wp-adserver-styles.css (easylist.txt: 48275) -.earthtechling.com/.*/imasters-wp-adserver-styles\.css -# @@||earthcam.com/swf/ads5.swf (easylist.txt: 48274) -.earthcam.com/swf/ads5\.swf -# @@||eagleboys.com.au/eagleboys/*/ads/$~third-party (easylist.txt: 48273) -.eagleboys.com.au/eagleboys/.*/ads/ -# @@||eafyfsuh.net/scripts/generated/key.js?t=$script (easylist.txt: 48272) -.eafyfsuh.net/scripts/generated/key\.js\?t= -# @@||eafyfsuh.net/intermission/loadTargetUrl?t=$xmlhttprequest (easylist.txt: 48271) -.eafyfsuh.net/intermission/loadTargetUrl\?t= -# @@||dyncdn.buzznet.com/catfiles/?f=dojo/*.googleadservices.$script (easylist.txt: 48270) -.dyncdn.buzznet.com/catfiles/\?f=dojo/.*\.googleadservices\. -# @@||dx.com/openx/$image,~third-party (easylist.txt: 48269) -.dx.com/openx/ -# @@||dwiextreme.com/banners/dwiextreme$image (easylist.txt: 48268) -.dwiextreme.com/banners/dwiextreme -# @@||dstw.adgear.com/crossdomain.xml$object-subrequest (easylist.txt: 48266) -.dstw.adgear.com/crossdomain\.xml -# @@||drupal.org^*/revealads.png (easylist.txt: 48265) -.drupal.org/.*/revealads\.png -# @@||drunkard.com/banners/modern-drunkard-book.jpg (easylist.txt: 48264) -.drunkard.com/banners/modern-drunkard-book\.jpg -# @@||drunkard.com/banners/drunkard-gear.jpg (easylist.txt: 48263) -.drunkard.com/banners/drunkard-gear\.jpg -# @@||drunkard.com/banners/drunk-korps-banner.jpg (easylist.txt: 48262) -.drunkard.com/banners/drunk-korps-banner\.jpg -# @@||dropzone.no/sap/its/gfx/top_ad_$image,~third-party (easylist.txt: 48261) -.dropzone.no/sap/its/gfx/top_ad_ -# @@||dragon-mania-legends-wiki.mobga.me^*_Advertisement_ (easylist.txt: 48256) -.dragon-mania-legends-wiki.mobga.me/.*_Advertisement_ -# @@||dragon-mania-legends-wiki.mobga.me^*_advertisement. (easylist.txt: 48255) -.dragon-mania-legends-wiki.mobga.me/.*_advertisement\. -# @@||downvids.net/ads.js (easylist.txt: 48254) -.downvids.net/ads\.js -# @@||dove.saymedia.com^$xmlhttprequest (easylist.txt: 48253) -.dove.saymedia.com -# @@||doubleclick.net^*/targeted.optimum/*;sz=968x286;$image,popup,script (easylist.txt: 48250) -.doubleclick.net/.*/targeted\.optimum/.*;sz=968x286; -# @@||doubleclick.net^*/adj/wwe.shows/ecw_ecwreplay;*;sz=624x325;$script (easylist.txt: 48246) -.doubleclick.net/.*/adj/wwe\.shows/ecw_ecwreplay;.*;sz=624x325; -# @@||doubleclick.net/pfadx/umg.*;sz=10x$script (easylist.txt: 48242) -.doubleclick.net/pfadx/umg\..*;sz=10x -# @@||doubleclick.net/N2605/adi/MiLB.com/scoreboard;*;sz=728x90;$subdocument (easylist.txt: 48237) -.doubleclick.net/N2605/adi/MiLB\.com/scoreboard;.*;sz=728x90; -# @@||doubleclick.net/adj/pong.all/*;dcopt=ist;$script (easylist.txt: 48231) -.doubleclick.net/adj/pong\.all/.*;dcopt=ist; -# @@||doubleclick.net/adj/nbcu.nbc/videoplayer-$script (easylist.txt: 48228) -.doubleclick.net/adj/nbcu\.nbc/videoplayer- -# @@||doubleclick.net/adj/imdb2.consumer.video/*;sz=320x240,$script (easylist.txt: 48226) -.doubleclick.net/adj/imdb2\.consumer\.video/.*;sz=320x240, -# @@||doubleclick.net/adj/ctv.muchmusicblog.com/$script (easylist.txt: 48224) -.doubleclick.net/adj/ctv\.muchmusicblog\.com/ -# @@||doubleclick.net/adi/amzn.*;ri=digital-music-track;$subdocument (easylist.txt: 48211) -.doubleclick.net/adi/amzn\..*;ri=digital-music-track; -# @@||doubleclick.net/ad/can/chow/$object-subrequest (easylist.txt: 48207) -.doubleclick.net/ad/can/chow/ -# @@||domandgeri.com/banners/$~third-party (easylist.txt: 48204) -.domandgeri.com/banners/ -# @@||dolphinimaging.com/banners/ (easylist.txt: 48203) -.dolphinimaging.com/banners/ -# @@||dolphinimaging.com/banners.js (easylist.txt: 48202) -.dolphinimaging.com/banners\.js -# @@||dolidoli.com/images/ads- (easylist.txt: 48200) -.dolidoli.com/images/ads- -# @@||doityourself.com^*/shared/ads.css$stylesheet (easylist.txt: 48199) -.doityourself.com/.*/shared/ads\.css -# @@||disruptorbeam.com/assets/uploaded/ads/$image,~third-party (easylist.txt: 48196) -.disruptorbeam.com/assets/uploaded/ads/ -# @@||disneyphotopass.com/adimages/ (easylist.txt: 48195) -.disneyphotopass.com/adimages/ -# @@||disney.go.com/dxd/data/ads/game_ad.xml?gameid=$object-subrequest (easylist.txt: 48194) -.disney.go.com/dxd/data/ads/game_ad\.xml\?gameid= -# @@||disney.com.au/global/swf/banner300x250.swf (easylist.txt: 48193) -.disney.com.au/global/swf/banner300x250\.swf -# @@||discovery.com/components/consolidate-static/?files=*/adsense- (easylist.txt: 48192) -.discovery.com/components/consolidate-static/\?files=.*/adsense- -# @@||directwonen.nl/adverts/$~third-party (easylist.txt: 48191) -.directwonen.nl/adverts/ -# @@||directtextbook.com^*.php?ad_ (easylist.txt: 48190) -.directtextbook.com/.*\.php\?ad_ -# @@||direct.fairfax.com.au/hserver/*/site=vid.*/adtype=embedded/$script (easylist.txt: 48188) -.direct.fairfax.com.au/hserver/.*/site=vid\..*/adtype=embedded/ -# @@||digsby.com/affiliate/banners/$image,~third-party (easylist.txt: 48187) -.digsby.com/affiliate/banners/ -# @@||digiads.com.au/images/shared/misc/ad-disclaimer.gif (easylist.txt: 48186) -.digiads.com.au/images/shared/misc/ad-disclaimer\.gif -# @@||digiads.com.au/css/24032006/adstyle.css (easylist.txt: 48185) -.digiads.com.au/css/24032006/adstyle\.css -# @@||deviantart.net/minish/advertising/downloadad_splash_close.png (easylist.txt: 48184) -.deviantart.net/minish/advertising/downloadad_splash_close\.png -# @@||design-essentials.net/affiliate/$script,subdocument (easylist.txt: 48182) -.design-essentials.net/affiliate/ -# @@||delvenetworks.com/player/*_ad_$subdocument (easylist.txt: 48180) -.delvenetworks.com/player/.*_ad_ -# @@||delish.com/cm/shared/scripts/refreshads-*.js (easylist.txt: 48178) -.delish.com/cm/shared/scripts/refreshads-.*\.js -# @@||deliciousdigital.com/data/our-work/advertising/ (easylist.txt: 48177) -.deliciousdigital.com/data/our-work/advertising/ -# @@||delicious.com^*/compose?url=$xmlhttprequest (easylist.txt: 48176) -.delicious.com/.*/compose\?url= -# @@||dealerimg.com/Ads/$image (easylist.txt: 48175) -.dealerimg.com/Ads/ -# @@||dc.tremormedia.com/crossdomain.xml$object-subrequest (easylist.txt: 48174) -.dc.tremormedia.com/crossdomain\.xml -# @@||dawanda.com^*/adcenter.js$~third-party (easylist.txt: 48173) -.dawanda.com/.*/adcenter\.js -# @@||dawanda.com^*/ad_center.css$~third-party (easylist.txt: 48172) -.dawanda.com/.*/ad_center\.css -# @@||davidsilverspares.co.uk/graphics/*_ad.gif$~third-party (easylist.txt: 48171) -.davidsilverspares.co.uk/graphics/.*_ad\.gif -# @@||davescomputertips.com/images/ads/paypal.png (easylist.txt: 48170) -.davescomputertips.com/images/ads/paypal\.png -# @@||dataknet.com/s.axd?$stylesheet (easylist.txt: 48169) -.dataknet.com/s\.axd\? -# @@||data.panachetech.com/crossdomain.xml$object-subrequest (easylist.txt: 48167) -.data.panachetech.com/crossdomain\.xml -# @@||dart.clearchannel.com/crossdomain.xml$object-subrequest (easylist.txt: 48166) -.dart.clearchannel.com/crossdomain\.xml -# @@||danielechevarria.com^*/advertising-$~third-party (easylist.txt: 48165) -.danielechevarria.com/.*/advertising- -# @@||dailypilot.com/hive/images/adv_ (easylist.txt: 48164) -.dailypilot.com/hive/images/adv_ -# @@||dailymotion.com/videowall/*&clickTAG=http (easylist.txt: 48163) -.dailymotion.com/videowall/.*&clickTAG=http -# @@||dailymail.co.uk^*/googleads--.js (easylist.txt: 48162) -.dailymail.co.uk/.*/googleads--\.js -# @@||dailyhiit.com/sites/*/ad-images/ (easylist.txt: 48161) -.dailyhiit.com/sites/.*/ad-images/ -# @@||dailycaller.com/wp-content/plugins/advertisements/$script (easylist.txt: 48160) -.dailycaller.com/wp-content/plugins/advertisements/ -# @@||d3con.org/data1/$image,~third-party (easylist.txt: 48156) -.d3con.org/data1/ -# @@||cydiaupdates.net/CydiaUpdates.com_600x80.png (easylist.txt: 48154) -.cydiaupdates.net/CydiaUpdates\.com_600x80\.png -# @@||cvs.com/webcontent/images/weeklyad/adcontent/$~third-party (easylist.txt: 48152) -.cvs.com/webcontent/images/weeklyad/adcontent/ -# @@||cubeecraft.com/openx/$~third-party (easylist.txt: 48151) -.cubeecraft.com/openx/ -# @@||ctv.ca/players/mediaplayer/*/AdManager.js^ (easylist.txt: 48150) -.ctv.ca/players/mediaplayer/.*/AdManager\.js[^\w%.-] -# @@||css.wpdigital.net/wpost/css/combo?*/ads.css (easylist.txt: 48149) -.css.wpdigital.net/wpost/css/combo\?.*/ads\.css -# @@||csoonline.com/js/doubleclick_ads.js? (easylist.txt: 48148) -.csoonline.com/js/doubleclick_ads\.js\? -# @@||csmonitor.com/advertising/sharetools.php$subdocument (easylist.txt: 48147) -.csmonitor.com/advertising/sharetools\.php -# @@||csair.com/*/adpic.js (easylist.txt: 48146) -.csair.com/.*/adpic\.js -# @@||cricketcountry.com/js/ad-gallery.js$script (easylist.txt: 48145) -.cricketcountry.com/js/ad-gallery\.js -# @@||cricbuzz.com/includes/ads/schedule/$~third-party (easylist.txt: 48144) -.cricbuzz.com/includes/ads/schedule/ -# @@||cricbuzz.com/includes/ads/images/worldcup/more_arrow_$image (easylist.txt: 48143) -.cricbuzz.com/includes/ads/images/worldcup/more_arrow_ -# @@||cricbuzz.com/includes/ads/images/wct20/$image (easylist.txt: 48142) -.cricbuzz.com/includes/ads/images/wct20/ -# @@||cracker.com.au^*/cracker-classifieds-free-ads.$~document (easylist.txt: 48141) -.cracker.com.au/.*/cracker-classifieds-free-ads\. -# @@||countryliving.com/ams/page-ads.js (easylist.txt: 48140) -.countryliving.com/ams/page-ads\.js -# @@||cosmopolitan.com/cm/shared/scripts/refreshads-$script (easylist.txt: 48139) -.cosmopolitan.com/cm/shared/scripts/refreshads- -# @@||cosmopolitan.com/ams/page-ads.js (easylist.txt: 48138) -.cosmopolitan.com/ams/page-ads\.js -# @@||corporatehousingbyowner.com/js/ad-gallery.js (easylist.txt: 48137) -.corporatehousingbyowner.com/js/ad-gallery\.js -# @@||copesdistributing.com/images/adds/banner_$~third-party (easylist.txt: 48136) -.copesdistributing.com/images/adds/banner_ -# @@||content.hallmark.com/scripts/ecards/adspot.js (easylist.txt: 48135) -.content.hallmark.com/scripts/ecards/adspot\.js -# @@||content.datingfactory.com/promotools/$script (easylist.txt: 48134) -.content.datingfactory.com/promotools/ -# @@||contactmusic.com/advertpro/servlet/view/dynamic/$object-subrequest (easylist.txt: 48131) -.contactmusic.com/advertpro/servlet/view/dynamic/ -# @@||constructalia.com/banners/$image,~third-party (easylist.txt: 48130) -.constructalia.com/banners/ -# @@||connectingdirectories.com/advertisers/$~third-party,xmlhttprequest (easylist.txt: 48129) -.connectingdirectories.com/advertisers/ -# @@||comsec.com.au^*/homepage_banner_ad.gif (easylist.txt: 48127) -.comsec.com.au/.*/homepage_banner_ad\.gif -# @@||computerworld.com/resources/scripts/lib/doubleclick_ads.js$script (easylist.txt: 48126) -.computerworld.com/resources/scripts/lib/doubleclick_ads\.js -# @@||completemarkets.com/pictureHandler.ashx?adid=$image,~third-party (easylist.txt: 48125) -.completemarkets.com/pictureHandler\.ashx\?adid= -# @@||commarts.com/Images/missinganissue_ad.gif (easylist.txt: 48124) -.commarts.com/Images/missinganissue_ad\.gif -# @@||colorado.gov/airquality/psi/adv.png (easylist.txt: 48121) -.colorado.gov/airquality/psi/adv\.png -# @@||collective-media.net/crossdomain.xml$object-subrequest (easylist.txt: 48119) -.collective-media.net/crossdomain\.xml -# @@||coastlinepilot.com/hive/images/adv_ (easylist.txt: 48118) -.coastlinepilot.com/hive/images/adv_ -# @@||cnet.com/ad/ad-cookie/*?_=$xmlhttprequest (easylist.txt: 48117) -.cnet.com/ad/ad-cookie/.*\?_= -# @@||clustrmaps.com/images/clustrmaps-back-soon.jpg$third-party (easylist.txt: 48116) -.clustrmaps.com/images/clustrmaps-back-soon\.jpg -# @@||club777.com/banners/$~third-party (easylist.txt: 48115) -.club777.com/banners/ -# @@||clickbd.com^*/ads/$image,~third-party (easylist.txt: 48112) -.clickbd.com/.*/ads/ -# @@||cleveland.com/static/common/js/ads/ads.js (easylist.txt: 48111) -.cleveland.com/static/common/js/ads/ads\.js -# @@||classistatic.com^*/banner-ads/ (easylist.txt: 48110) -.classistatic.com/.*/banner-ads/ -# @@||classifieds.wsj.com/ad/$~third-party (easylist.txt: 48109) -.classifieds.wsj.com/ad/ -# @@||classifiedads.com/adbox.php$xmlhttprequest (easylist.txt: 48108) -.classifiedads.com/adbox\.php -# @@||cio.com/www/js/ads/gpt_includes.js (easylist.txt: 48107) -.cio.com/www/js/ads/gpt_includes\.js -# @@||christianhouseshare.com.au/images/publish_ad1.jpg (easylist.txt: 48106) -.christianhouseshare.com.au/images/publish_ad1\.jpg -# @@||chicavenue.com.au/assets/ads/$image,~third-party (easylist.txt: 48105) -.chicavenue.com.au/assets/ads/ -# @@||chibis.adotube.com/napp/$object,object-subrequest (easylist.txt: 48104) -.chibis.adotube.com/napp/ -# @@||chibis.adotube.com/appRuntime/swfobject/$script (easylist.txt: 48103) -.chibis.adotube.com/appRuntime/swfobject/ -# @@||chibis.adotube.com/appruntime/player/$object,object-subrequest (easylist.txt: 48102) -.chibis.adotube.com/appruntime/player/ -# @@||chemistwarehouse.com.au/images/AdImages/ (easylist.txt: 48101) -.chemistwarehouse.com.au/images/AdImages/ -# @@||checkm8.com/crossdomain.xml$object-subrequest (easylist.txt: 48100) -.checkm8.com/crossdomain\.xml -# @@||checkerdist.com/product-detail.cfm?*advert_id=$~third-party (easylist.txt: 48098) -.checkerdist.com/product-detail\.cfm\?.*advert_id= -# @@||cheapoair.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48097) -.cheapoair.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||cheapoair.ca/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48096) -.cheapoair.ca/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||chase.com^*/adserving/ (easylist.txt: 48095) -.chase.com/.*/adserving/ -# @@||chase.com/content/*/ads/$image,~third-party (easylist.txt: 48094) -.chase.com/content/.*/ads/ -# @@||channel4.com/media/scripts/oasconfig/siteads.js (easylist.txt: 48092) -.channel4.com/media/scripts/oasconfig/siteads\.js -# @@||cerebral.s4.bizhat.com/banners/$image,~third-party (easylist.txt: 48091) -.cerebral.s4.bizhat.com/banners/ -# @@||cellc.co.za/adserv/$image,object,script,~third-party (easylist.txt: 48090) -.cellc.co.za/adserv/ -# @@||cdn.turner.com^*/video/336x280_ad.gif (easylist.txt: 48088) -.cdn.turner.com/.*/video/336x280_ad\.gif -# @@||cdn.travidia.com/rop-sub/$image (easylist.txt: 48087) -.cdn.travidia.com/rop-sub/ -# @@||cdn.travidia.com/rop-ad/$image (easylist.txt: 48086) -.cdn.travidia.com/rop-ad/ -# @@||cdn.travidia.com/fsi-page/$image (easylist.txt: 48085) -.cdn.travidia.com/fsi-page/ -# @@||cdn.pch.com/spectrummedia/spectrum/adunit/ (easylist.txt: 48084) -.cdn.pch.com/spectrummedia/spectrum/adunit/ -# @@||cdn.ndtv.com/static/js/ads.js (easylist.txt: 48083) -.cdn.ndtv.com/static/js/ads\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/writecapture.js (easylist.txt: 48075) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/writecapture\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/swfobject.js (easylist.txt: 48074) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/swfobject\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jwplayerl.js (easylist.txt: 48073) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jwplayerl\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jquery.writecapture.js (easylist.txt: 48072) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jquery\.writecapture\.js -# @@||cbsistatic.com^*/sticky-ads.js? (easylist.txt: 48068) -.cbsistatic.com/.*/sticky-ads\.js\? -# @@||cbs.com/sitecommon/includes/cacheable/combine.php?*/adfunctions. (easylist.txt: 48065) -.cbs.com/sitecommon/includes/cacheable/combine\.php\?.*/adfunctions\. -# @@||cbc.ca/ads/*.php?$xmlhttprequest (easylist.txt: 48064) -.cbc.ca/ads/.*\.php\? -# @@||carzone.ie/es-ie/*advert$image,script,stylesheet (easylist.txt: 48062) -.carzone.ie/es-ie/.*advert -# @@||caranddriver.com/tools/iframe/?$subdocument (easylist.txt: 48061) -.caranddriver.com/tools/iframe/\? -# @@||caranddriver.com/assets/js/ads/ads-combined.min.js (easylist.txt: 48060) -.caranddriver.com/assets/js/ads/ads-combined\.min\.js -# @@||carambo.la^*/GetAds|$xmlhttprequest (easylist.txt: 48059) -.carambo.la/.*/GetAds$ -# @@||capitalone360.com/js/adwizard/adwizard_homepage.js? (easylist.txt: 48058) -.capitalone360.com/js/adwizard/adwizard_homepage\.js\? -# @@||candystand.com/assets/images/ads/$image (easylist.txt: 48057) -.candystand.com/assets/images/ads/ -# @@||canadianlisted.com/css/*/ad/index.css (easylist.txt: 48056) -.canadianlisted.com/css/.*/ad/index\.css -# @@||cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240.jpg (easylist.txt: 48054) -.cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240\.jpg -# @@||calgarysun.com/assets/js/dfp.js? (easylist.txt: 48053) -.calgarysun.com/assets/js/dfp\.js\? -# @@||cache.nymag.com/scripts/ad_manager.js (easylist.txt: 48052) -.cache.nymag.com/scripts/ad_manager\.js -# @@||bworldonline.com/adserver/ (easylist.txt: 48051) -.bworldonline.com/adserver/ -# @@||buyselltrade.ca/adimages/$image,~third-party (easylist.txt: 48050) -.buyselltrade.ca/adimages/ -# @@||buyforlessok.com/advertising/ (easylist.txt: 48049) -.buyforlessok.com/advertising/ -# @@||buyandsell.ie/images/ads/$~third-party (easylist.txt: 48048) -.buyandsell.ie/images/ads/ -# @@||buyandsell.ie/ads/$~third-party (easylist.txt: 48047) -.buyandsell.ie/ads/ -# @@||buyandsell.ie/ad/$~third-party (easylist.txt: 48046) -.buyandsell.ie/ad/ -# @@||buy.com/buy_assets/addeals/$~third-party (easylist.txt: 48045) -.buy.com/buy_assets/addeals/ -# @@||butlereagle.com/static/ads/ (easylist.txt: 48044) -.butlereagle.com/static/ads/ -# @@||business-supply.com/images/adrotator/ (easylist.txt: 48043) -.business-supply.com/images/adrotator/ -# @@||burfordadvertising.com/advertising/$~third-party (easylist.txt: 48042) -.burfordadvertising.com/advertising/ -# @@||burbankleader.com/hive/images/adv_ (easylist.txt: 48041) -.burbankleader.com/hive/images/adv_ -# @@||btrll.com/crossdomain.xml$object-subrequest (easylist.txt: 48039) -.btrll.com/crossdomain\.xml -# @@||bthomehub.home/images/adv_ (easylist.txt: 48038) -.bthomehub.home/images/adv_ -# @@||bsvideos.com/json/ad.php? (easylist.txt: 48037) -.bsvideos.com/json/ad\.php\? -# @@||brothersoft.com/gads/coop_show_download.php?soft_id=$script (easylist.txt: 48036) -.brothersoft.com/gads/coop_show_download\.php\?soft_id= -# @@||brocraft.net/js/banners.js (easylist.txt: 48035) -.brocraft.net/js/banners\.js -# @@||britishairways.com/cms/global/styles/*/openx.css (easylist.txt: 48034) -.britishairways.com/cms/global/styles/.*/openx\.css -# @@||britannica.com/resources/images/shared/ad-loading.gif (easylist.txt: 48033) -.britannica.com/resources/images/shared/ad-loading\.gif -# @@||brightcove.com^*bannerid$third-party (easylist.txt: 48032) -.brightcove.com/.*bannerid -# @@||brainient.com/crossdomain.xml$object-subrequest (easylist.txt: 48030) -.brainient.com/crossdomain\.xml -# @@||boxedlynch.com/advertising-gallery.html (easylist.txt: 48029) -.boxedlynch.com/advertising-gallery\.html -# @@||box10.com/advertising/*-preroll.swf (easylist.txt: 48028) -.box10.com/advertising/.*-preroll\.swf -# @@||boston.com/images/ads/yourtown_social_widget/$image (easylist.txt: 48027) -.boston.com/images/ads/yourtown_social_widget/ -# @@||bonappetit.com^*/cn.dart.js (easylist.txt: 48025) -.bonappetit.com/.*/cn\.dart\.js -# @@||bonappetit.com/ams/page-ads.js? (easylist.txt: 48024) -.bonappetit.com/ams/page-ads\.js\? -# @@||boats.com/ad/$~third-party,xmlhttprequest (easylist.txt: 48023) -.boats.com/ad/ -# @@||bnbfinder.com/adv_getCity.php?$xmlhttprequest (easylist.txt: 48022) -.bnbfinder.com/adv_getCity\.php\? -# @@||bluetree.co.uk/hji/advertising.$object-subrequest (easylist.txt: 48021) -.bluetree.co.uk/hji/advertising\. -# @@||bluetooth.com/banners/ (easylist.txt: 48020) -.bluetooth.com/banners/ -# @@||bloomberg.com/rapi/ads/js_config.js (easylist.txt: 48019) -.bloomberg.com/rapi/ads/js_config\.js -# @@||blastro.com/pl_ads.php?$object-subrequest (easylist.txt: 48018) -.blastro.com/pl_ads\.php\? -# @@||blackshoppingchannel.com^*/com_adagency/$~third-party (easylist.txt: 48017) -.blackshoppingchannel.com/.*/com_adagency/ -# @@||blackshoppingchannel.com^*/ad_agency/$~third-party (easylist.txt: 48016) -.blackshoppingchannel.com/.*/ad_agency/ -# @@||bing.net/images/thumbnail.aspx?q=$image (easylist.txt: 48015) -.bing.net/images/thumbnail\.aspx\?q= -# @@||bing.com/maps/Ads.ashx$xmlhttprequest (easylist.txt: 48014) -.bing.com/maps/Ads\.ashx -# @@||bing.com/images/async?q=$xmlhttprequest (easylist.txt: 48013) -.bing.com/images/async\?q= -# @@||bikeexchange.com.au/adverts/ (easylist.txt: 48012) -.bikeexchange.com.au/adverts/ -# @@||bigfishaudio.com/banners/$image (easylist.txt: 48011) -.bigfishaudio.com/banners/ -# @@||betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ (easylist.txt: 48009) -.betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ -# @@||betar.gov.bd/wp-content/plugins/useful-banner-manager/ (easylist.txt: 48008) -.betar.gov.bd/wp-content/plugins/useful-banner-manager/ -# @@||bellaliant.net^*/banners/ads/$image,~third-party (easylist.txt: 48007) -.bellaliant.net/.*/banners/ads/ -# @@||bebusiness.eu/js/adview.js (easylist.txt: 48006) -.bebusiness.eu/js/adview\.js -# @@||beatthebrochure.com/js/jquery.popunder.js (easylist.txt: 48005) -.beatthebrochure.com/js/jquery\.popunder\.js -# @@||barafranca.*/banner.php| (easylist.txt: 47995) -.barafranca.*./(.*/)?banner\.php$ -# @@||banners.wunderground.com^$image (easylist.txt: 47993) -.banners.wunderground.com -# @@||banners.goldbroker.com/widget/ (easylist.txt: 47992) -.banners.goldbroker.com/widget/ -# @@||banners.gametracker.rs^$image (easylist.txt: 47991) -.banners.gametracker.rs -# @@||bannerfans.com/banners/$image,~third-party (easylist.txt: 47989) -.bannerfans.com/banners/ -# @@||banner4five.com/banners/$~third-party (easylist.txt: 47988) -.banner4five.com/banners/ -# @@||bankofamerica.com^*?adx=$xmlhttprequest (easylist.txt: 47986) -.bankofamerica.com/.*\?adx= -# @@||bahtsold.com/assets/images/ads/no_img_main.png (easylist.txt: 47985) -.bahtsold.com/assets/images/ads/no_img_main\.png -# @@||bahtsold.com/assets/home/openx/Thailand/$image,~third-party (easylist.txt: 47984) -.bahtsold.com/assets/home/openx/Thailand/ -# @@||bafta.org/static/site/javascript/banners.js (easylist.txt: 47983) -.bafta.org/static/site/javascript/banners\.js -# @@||backpackinglight.com/backpackinglight/ads/banner-$~third-party (easylist.txt: 47982) -.backpackinglight.com/backpackinglight/ads/banner- -# @@||aviationexplorer.com/airline_aviation_ads/ (easylist.txt: 47979) -.aviationexplorer.com/airline_aviation_ads/ -# @@||aviationdocumentstorage.com/Av_Docs/CSS/ADS-1.css (easylist.txt: 47978) -.aviationdocumentstorage.com/Av_Docs/CSS/ADS-1\.css -# @@||aviationclassifieds.com/adimg/$image,~third-party (easylist.txt: 47977) -.aviationclassifieds.com/adimg/ -# @@||avclub.com/ads/av-video-ad/$xmlhttprequest (easylist.txt: 47976) -.avclub.com/ads/av-video-ad/ -# @@||autotrader.co.uk^*_adverts/$xmlhttprequest (easylist.txt: 47975) -.autotrader.co.uk/.*_adverts/ -# @@||autotrader.co.uk^*/advert/$~third-party,xmlhttprequest (easylist.txt: 47974) -.autotrader.co.uk/.*/advert/ -# @@||autotrader.co.uk/static/*/images/adv/icons.png (easylist.txt: 47973) -.autotrader.co.uk/static/.*/images/adv/icons\.png -# @@||autotrader.co.uk/advert/$xmlhttprequest (easylist.txt: 47972) -.autotrader.co.uk/advert/ -# @@||autogespot.info/upload/ads/$image (easylist.txt: 47971) -.autogespot.info/upload/ads/ -# @@||auditude.com^*/AuditudeAdUnit.swf$object-subrequest (easylist.txt: 47968) -.auditude.com/.*/AuditudeAdUnit\.swf -# @@||auditude.com/crossdomain.xml$object-subrequest (easylist.txt: 47967) -.auditude.com/crossdomain\.xml -# @@||auctionzip.com/cgi-bin/showimage.cgi? (easylist.txt: 47965) -.auctionzip.com/cgi-bin/showimage\.cgi\? -# @@||att.com/images/*/admanager/ (easylist.txt: 47963) -.att.com/images/.*/admanager/ -# @@||athena365.com/web/components/ads/rma.html (easylist.txt: 47962) -.athena365.com/web/components/ads/rma\.html -# @@||asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training.png (easylist.txt: 47961) -.asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training\.png -# @@||assiniboine.mb.ca/files/intrasite_ads/ (easylist.txt: 47958) -.assiniboine.mb.ca/files/intrasite_ads/ -# @@||asrock.com/images/ad-$~third-party (easylist.txt: 47956) -.asrock.com/images/ad- -# @@||asiasold.com/assets/home/openx/$image,~third-party (easylist.txt: 47955) -.asiasold.com/assets/home/openx/ -# @@||as.webmd.com/html.ng/transactionid=$object-subrequest,script,subdocument (easylist.txt: 47954) -.as.webmd.com/html\.ng/transactionid= -# @@||as.bankrate.com/RealMedia/ads/adstream_mjx.ads/$script,~third-party (easylist.txt: 47952) -.as.bankrate.com/RealMedia/ads/adstream_mjx\.ads/ -# @@||arti-mediagroup.com/flowplayer/amta_plugin.swf$object-subrequest (easylist.txt: 47951) -.arti-mediagroup.com/flowplayer/amta_plugin\.swf -# @@||arti-mediagroup.com/crossdomain.xml$object-subrequest (easylist.txt: 47950) -.arti-mediagroup.com/crossdomain\.xml -# @@||arthurbrokerage.com/Websites/arthur/templates/overture/ (easylist.txt: 47949) -.arthurbrokerage.com/Websites/arthur/templates/overture/ -# @@||area51.stackexchange.com/ads/$image (easylist.txt: 47947) -.area51.stackexchange.com/ads/ -# @@||architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite.png (easylist.txt: 47946) -.architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite\.png -# @@||archiproducts.com/adv/ (easylist.txt: 47945) -.archiproducts.com/adv/ -# @@||archaeologydataservice.ac.uk/images/ads_$image (easylist.txt: 47944) -.archaeologydataservice.ac.uk/images/ads_ -# @@||apwg.org/images/sponsors/ (easylist.txt: 47943) -.apwg.org/images/sponsors/ -# @@||apps.digmyweb.com/ads?$xmlhttprequest (easylist.txt: 47942) -.apps.digmyweb.com/ads\? -# @@||applegate.co.uk/stats/recordclick.html?$xmlhttprequest (easylist.txt: 47941) -.applegate.co.uk/stats/recordclick\.html\? -# @@||apple.com^*/video-ad.html (easylist.txt: 47940) -.apple.com/.*/video-ad\.html -# @@||apple.com^*/includes/ads (easylist.txt: 47939) -.apple.com/.*/includes/ads -# @@||apple.com^*/ads/$object,object-subrequest,xmlhttprequest (easylist.txt: 47936) -.apple.com/.*/ads/ -# @@||apmex.com/resources/ads/ (easylist.txt: 47934) -.apmex.com/resources/ads/ -# @@||api.cirqle.nl^*&advertiserId=$script,xmlhttprequest (easylist.txt: 47929) -.api.cirqle.nl/.*&advertiserId= -# @@||aone-soft.com/style/images/ad*.jpg (easylist.txt: 47928) -.aone-soft.com/style/images/ad.*\.jpg -# @@||aolcdn.com/os_merge/?file=/aol/*.js&$script (easylist.txt: 47925) -.aolcdn.com/os_merge/\?file=/aol/.*\.js& -# @@||annfammed.org/adsystem/$image,~third-party (easylist.txt: 47922) -.annfammed.org/adsystem/ -# @@||andomediagroup.com/crossdomain.xml$object-subrequest (easylist.txt: 47921) -.andomediagroup.com/crossdomain\.xml -# @@||andohs.net/crossdomain.xml$object-subrequest (easylist.txt: 47920) -.andohs.net/crossdomain\.xml -# @@||andcorp.com.au^*.swf?clicktag= (easylist.txt: 47919) -.andcorp.com.au/.*\.swf\?clicktag= -# @@||ananzi.co.za/ads/$~third-party (easylist.txt: 47918) -.ananzi.co.za/ads/ -# @@||amwa.net/sites/default/files/styles/promotion_image/public/promotions/$~third-party (easylist.txt: 47917) -.amwa.net/sites/default/files/styles/promotion_image/public/promotions/ -# @@||amiblood.com/Images/ad.jpg (easylist.txt: 47916) -.amiblood.com/Images/ad\.jpg -# @@||amctv.com/commons/advertisement/js/AdFrame.js (easylist.txt: 47915) -.amctv.com/commons/advertisement/js/AdFrame\.js -# @@||amazon-adsystem.com/widgets/q?$image (easylist.txt: 47904) -.amazon-adsystem.com/widgets/q\? -# @@||alusa.org/store/modules/blockadvertising/$~third-party (easylist.txt: 47900) -.alusa.org/store/modules/blockadvertising/ -# @@||alphabaseinc.com/images/display_adz/$~third-party (easylist.txt: 47899) -.alphabaseinc.com/images/display_adz/ -# @@||allulook4.com/min/?$stylesheet (easylist.txt: 47898) -.allulook4.com/min/\? -# @@||alluc.ee/js/advertisement.js (easylist.txt: 47897) -.alluc.ee/js/advertisement\.js -# @@||allot.com/Banners/*.swf$object (easylist.txt: 47896) -.allot.com/Banners/.*\.swf -# @@||albumartexchange.com/gallery/images/public/ad/$image (easylist.txt: 47895) -.albumartexchange.com/gallery/images/public/ad/ -# @@||al.com/static/common/js/ads/ads.js (easylist.txt: 47894) -.al.com/static/common/js/ads/ads\.js -# @@||akamaihd.net/hads-*.mp4? (easylist.txt: 47892) -.akamaihd.net/hads-.*\.mp4\? -# @@||ajmadison.com/images/adverts/ (easylist.txt: 47887) -.ajmadison.com/images/adverts/ -# @@||aiwip.com/static/images/advertisers/$image,~third-party,xmlhttprequest (easylist.txt: 47886) -.aiwip.com/static/images/advertisers/ -# @@||aiwip.com/advertisers/$image,~third-party,xmlhttprequest (easylist.txt: 47885) -.aiwip.com/advertisers/ -# @@||airplaydirect.com/openx/www/images/$image (easylist.txt: 47884) -.airplaydirect.com/openx/www/images/ -# @@||airguns.net/classifieds/ad_images/ (easylist.txt: 47883) -.airguns.net/classifieds/ad_images/ -# @@||airguns.net/advertisement_images/ (easylist.txt: 47882) -.airguns.net/advertisement_images/ -# @@||airbaltic.com/banners/$~third-party (easylist.txt: 47881) -.airbaltic.com/banners/ -# @@||aimsworldrunning.org/images/AD_Box_$image,~third-party (easylist.txt: 47880) -.aimsworldrunning.org/images/AD_Box_ -# @@||africam.com/adimages/ (easylist.txt: 47879) -.africam.com/adimages/ -# @@||affiliates.unpakt.com/widget_loader/widget_loader.js (easylist.txt: 47877) -.affiliates.unpakt.com/widget_loader/widget_loader\.js -# @@||affiliates.unpakt.com/widget/$subdocument (easylist.txt: 47876) -.affiliates.unpakt.com/widget/ -# @@||affiliate.skiamade.com^$subdocument,third-party (easylist.txt: 47873) -.affiliate.skiamade.com -# @@||affiliate.kickapps.com/service/ (easylist.txt: 47872) -.affiliate.kickapps.com/service/ -# @@||affiliate.kickapps.com/crossdomain.xml$object-subrequest (easylist.txt: 47871) -.affiliate.kickapps.com/crossdomain\.xml -# @@||ae.amgdgt.com/crossdomain.xml$object-subrequest (easylist.txt: 47869) -.ae.amgdgt.com/crossdomain\.xml -# @@||adworks.com.co^$~third-party (easylist.txt: 47867) -.adworks.com.co -# @@||adweb.pl^$~third-party (easylist.txt: 47866) -.adweb.pl -# @@||adweb.cis.mcmaster.ca^$~third-party (easylist.txt: 47865) -.adweb.cis.mcmaster.ca -# @@||advweb.ua.cmu.edu^$~third-party (easylist.txt: 47864) -.advweb.ua.cmu.edu -# @@||advisory.mtanyct.info/outsideWidget/widget.html?*.adPlacement=$subdocument (easylist.txt: 47863) -.advisory.mtanyct.info/outsideWidget/widget\.html\?.*\.adPlacement= -# @@||adverts.cdn.tvcatchup.com^$object-subrequest (easylist.txt: 47862) -.adverts.cdn.tvcatchup.com -# @@||advertising.vrisko.gr^$~third-party (easylist.txt: 47860) -.advertising.vrisko.gr -# @@||advertising.utexas.edu^$~third-party (easylist.txt: 47859) -.advertising.utexas.edu -# @@||advertising.theigroup.co.uk^$~third-party (easylist.txt: 47858) -.advertising.theigroup.co.uk -# @@||advertising.scoop.co.nz^ (easylist.txt: 47857) -.advertising.scoop.co.nz -# @@||advertising.racingpost.com^$image,script,stylesheet,~third-party,xmlhttprequest (easylist.txt: 47856) -.advertising.racingpost.com -# @@||advertising.nzme.co.nz/media/$image,~third-party (easylist.txt: 47855) -.advertising.nzme.co.nz/media/ -# @@||advertising.autotrader.co.uk^$~third-party (easylist.txt: 47854) -.advertising.autotrader.co.uk -# @@||advertising.acne.se^$~third-party (easylist.txt: 47853) -.advertising.acne.se -# @@||advertiser.trialpay.com^$~third-party (easylist.txt: 47851) -.advertiser.trialpay.com -# @@||advertiser.seek.com.au^$~third-party (easylist.txt: 47850) -.advertiser.seek.com.au -# @@||advertiser.seek.co.nz^$~third-party (easylist.txt: 47849) -.advertiser.seek.co.nz -# @@||advertise.movem.co.uk^$~third-party (easylist.txt: 47848) -.advertise.movem.co.uk -# @@||advertise.azcentral.com^$~third-party (easylist.txt: 47846) -.advertise.azcentral.com -# @@||advantabankcorp.com/ADV/$~third-party (easylist.txt: 47845) -.advantabankcorp.com/ADV/ -# @@||adv.works^$~third-party (easylist.txt: 47844) -.adv.works -# @@||adv.li^$~third-party (easylist.txt: 47843) -.adv.li -# @@||adv.escreverdireito.com^$~third-party (easylist.txt: 47842) -.adv.escreverdireito.com -# @@||adv.erti.se^$~third-party (easylist.txt: 47841) -.adv.erti.se -# @@||adv.blogupp.com^ (easylist.txt: 47840) -.adv.blogupp.com -# @@||adv.*.przedsiebiorca.pl^$~third-party (easylist.txt: 47839) -.adv.*./.*\.przedsiebiorca\.pl[^\w%.-] -.adv.*.przedsiebiorca.pl -# @@||adultvideotorrents.com/assets/blockblock/advertisement.js (easylist.txt: 47838) -.adultvideotorrents.com/assets/blockblock/advertisement\.js -# @@||adtechus.com/crossdomain.xml$object-subrequest (easylist.txt: 47836) -.adtechus.com/crossdomain\.xml -# @@||adtech.de/?advideo/3.0/1215.1/3228528/*;vidas=pre_roll;$object-subrequest (easylist.txt: 47831) -.adtech.de/\?advideo/3\.0/1215\.1/3228528/.*;vidas=pre_roll; -# @@||adssecurity.com/app_themes/ads/images/ (easylist.txt: 47828) -.adssecurity.com/app_themes/ads/images/ -# @@||adsremote.scrippsnetworks.com/crossdomain.xml$object-subrequest (easylist.txt: 47825) -.adsremote.scrippsnetworks.com/crossdomain\.xml -# @@||adspot.lk^$~third-party (easylist.txt: 47824) -.adspot.lk -# @@||adsign.republika.pl^$~third-party (easylist.txt: 47821) -.adsign.republika.pl -# @@||adsign.no^$~third-party (easylist.txt: 47819) -.adsign.no -# @@||adshost1.com/crossdomain.xml$object-subrequest (easylist.txt: 47817) -.adshost1.com/crossdomain\.xml -# @@||adserver.yahoo.com/crossdomain.xml$object-subrequest (easylist.txt: 47815) -.adserver.yahoo.com/crossdomain\.xml -# @@||adserver.vidcoin.com^*/get_campaigns?$xmlhttprequest (easylist.txt: 47811) -.adserver.vidcoin.com/.*/get_campaigns\? -# @@||adserver.tvcatchup.com^$object-subrequest (easylist.txt: 47810) -.adserver.tvcatchup.com -# @@||adserver.bworldonline.com^ (easylist.txt: 47809) -.adserver.bworldonline.com -# @@||adserver.bigwigmedia.com/ingamead3.swf (easylist.txt: 47808) -.adserver.bigwigmedia.com/ingamead3\.swf -# @@||adseo.pl^$~third-party (easylist.txt: 47800) -.adseo.pl -# @@||adsbox.in^$~third-party (easylist.txt: 47799) -.adsbox.in -# @@||adsbox.com.sg^$~third-party (easylist.txt: 47798) -.adsbox.com.sg -# @@||ads1.msn.com/ads/pronws/$image (easylist.txt: 47796) -.ads1.msn.com/ads/pronws/ -# @@||ads.yimg.com^*videoadmodule*.swf (easylist.txt: 47793) -.ads.yimg.com/.*videoadmodule.*\.swf -# @@||ads.yimg.com^*/search/b/syc_logo_2.gif (easylist.txt: 47792) -.ads.yimg.com/.*/search/b/syc_logo_2\.gif -# @@||ads.yimg.com^*/any/yahoologo$image (easylist.txt: 47791) -.ads.yimg.com/.*/any/yahoologo -# @@||ads.yimg.com/ev/eu/any/vint/videointerstitial*.js (easylist.txt: 47789) -.ads.yimg.com/ev/eu/any/vint/videointerstitial.*\.js -# @@||ads.undertone.com/crossdomain.xml$object-subrequest (easylist.txt: 47787) -.ads.undertone.com/crossdomain\.xml -# @@||ads.trutv.com/html.ng/tile=*&site=trutv&tru_tv_pos=preroll&$object-subrequest (easylist.txt: 47785) -.ads.trutv.com/html\.ng/tile=.*&site=trutv&tru_tv_pos=preroll& -# @@||ads.trutv.com/crossdomain.xml$object-subrequest (easylist.txt: 47784) -.ads.trutv.com/crossdomain\.xml -# @@||ads.trackitdown.net/delivery/afr.php?zoneid=6&$subdocument,~third-party (easylist.txt: 47783) -.ads.trackitdown.net/delivery/afr\.php\?zoneid=6& -# @@||ads.sudpresse.be/adview.php?what=zone:$image (easylist.txt: 47781) -.ads.sudpresse.be/adview\.php\?what=zone: -# @@||ads.songs.pk/openx/www/delivery/ (easylist.txt: 47779) -.ads.songs.pk/openx/www/delivery/ -# @@||ads.socialtheater.com^$~third-party (easylist.txt: 47778) -.ads.socialtheater.com -# @@||ads.smartfeedads.com^$~third-party (easylist.txt: 47777) -.ads.smartfeedads.com -# @@||ads.seriouswheels.com^$~third-party (easylist.txt: 47775) -.ads.seriouswheels.com -# @@||ads.pinterest.com^$~third-party (easylist.txt: 47772) -.ads.pinterest.com -# @@||ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ (easylist.txt: 47771) -.ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ -# @@||ads.nyootv.com:8080/crossdomain.xml$object-subrequest (easylist.txt: 47770) -.ads.nyootv.com:8080/crossdomain\.xml -# @@||ads.nyootv.com/crossdomain.xml$object-subrequest (easylist.txt: 47769) -.ads.nyootv.com/crossdomain\.xml -# @@||ads.nationmedia.com/webfonts/$font (easylist.txt: 47768) -.ads.nationmedia.com/webfonts/ -# @@||ads.mycricket.com/www/delivery/ajs.php?zoneid=$script,~third-party (easylist.txt: 47767) -.ads.mycricket.com/www/delivery/ajs\.php\?zoneid= -# @@||ads.memo2.nl^ (easylist.txt: 47766) -.ads.memo2.nl -# @@||ads.mefeedia.com/flash/flowplayer.controls-3.0.2.min.js (easylist.txt: 47765) -.ads.mefeedia.com/flash/flowplayer\.controls-3\.0\.2\.min\.js -# @@||ads.mefeedia.com/flash/flowplayer-3.1.2.min.js (easylist.txt: 47764) -.ads.mefeedia.com/flash/flowplayer-3\.1\.2\.min\.js -# @@||ads.m1.com.sg^$~third-party (easylist.txt: 47763) -.ads.m1.com.sg -# @@||ads.intergi.com/crossdomain.xml$object-subrequest (easylist.txt: 47759) -.ads.intergi.com/crossdomain\.xml -# @@||ads.indeed.com^$~third-party (easylist.txt: 47757) -.ads.indeed.com -# @@||ads.healthline.com/v2/adajax?$subdocument (easylist.txt: 47756) -.ads.healthline.com/v2/adajax\? -# @@||ads.golfweek.com^$~third-party (easylist.txt: 47755) -.ads.golfweek.com -# @@||ads.globo.com^*/globovideo/player/ (easylist.txt: 47754) -.ads.globo.com/.*/globovideo/player/ -# @@||ads.fusac.fr^$~third-party (easylist.txt: 47753) -.ads.fusac.fr -# @@||ads.foxnews.com/js/omtr_code.js (easylist.txt: 47752) -.ads.foxnews.com/js/omtr_code\.js -# @@||ads.foxnews.com/js/adv2.js (easylist.txt: 47751) -.ads.foxnews.com/js/adv2\.js -# @@||ads.foxnews.com/js/ad.js (easylist.txt: 47750) -.ads.foxnews.com/js/ad\.js -# @@||ads.foxnews.com/api/*-slideshow-data.js? (easylist.txt: 47749) -.ads.foxnews.com/api/.*-slideshow-data\.js\? -# @@||ads.fox.com/fox/black_2sec_600.flv (easylist.txt: 47748) -.ads.fox.com/fox/black_2sec_600\.flv -# @@||ads.forbes.com/realmedia/ads/*@videopreroll$script (easylist.txt: 47747) -.ads.forbes.com/realmedia/ads/.*@videopreroll -# @@||ads.eu.com/ads-$~third-party (easylist.txt: 47745) -.ads.eu.com/ads- -# @@||ads.cnn.com/js.ng/*&cnn_intl_subsection=download$script (easylist.txt: 47743) -.ads.cnn.com/js\.ng/.*&cnn_intl_subsection=download -# @@||ads.caravansforsale.co.uk^$~third-party (easylist.txt: 47742) -.ads.caravansforsale.co.uk -# @@||ads.belointeractive.com/realmedia/ads/adstream_mjx.ads/www.kgw.com/video/$script (easylist.txt: 47739) -.ads.belointeractive.com/realmedia/ads/adstream_mjx\.ads/www\.kgw\.com/video/ -# @@||ads.badassembly.com^$~third-party (easylist.txt: 47738) -.ads.badassembly.com -# @@||ads.ahds.ac.uk^$~document (easylist.txt: 47736) -.ads.ahds.ac.uk -# @@||adphoto.eu^$~third-party (easylist.txt: 47732) -.adphoto.eu -# @@||adpages.com^$~third-party (easylist.txt: 47731) -.adpages.com -# @@||adotube.com/crossdomain.xml$object-subrequest (easylist.txt: 47730) -.adotube.com/crossdomain\.xml -# @@||adnews.pl^$~third-party (easylist.txt: 47728) -.adnews.pl -# @@||adnet.twitvid.com/crossdomain.xml$object-subrequest (easylist.txt: 47727) -.adnet.twitvid.com/crossdomain\.xml -# @@||adman.se^$~third-party (easylist.txt: 47723) -.adman.se -# @@||adlib.info^$~third-party (easylist.txt: 47717) -.adlib.info -# @@||adimages.go.com/crossdomain.xml$object-subrequest (easylist.txt: 47716) -.adimages.go.com/crossdomain\.xml -# @@||adhostingsolutions.com/crossdomain.xml$object-subrequest (easylist.txt: 47715) -.adhostingsolutions.com/crossdomain\.xml -# @@||adguard.com^$~third-party (easylist.txt: 47714) -.adguard.com -# @@||adflyer.co.uk/adverts/$image (easylist.txt: 47712) -.adflyer.co.uk/adverts/ -# @@||adf.ly/static/image/ad_top_bg.png (easylist.txt: 47710) -.adf.ly/static/image/ad_top_bg\.png -# @@||adf.ly/images/ad*.png (easylist.txt: 47709) -.adf.ly/images/ad.*\.png -# @@||adevents.com.au^$~third-party (easylist.txt: 47708) -.adevents.com.au -# @@||addictinggames.com^*/mtvi_ads_reporting.js (easylist.txt: 47707) -.addictinggames.com/.*/mtvi_ads_reporting\.js -# @@||adcode.mobi^$~third-party (easylist.txt: 47705) -.adcode.mobi -# @@||adcenter.nu^$~third-party (easylist.txt: 47704) -.adcenter.nu -# @@||adboost.io^$~third-party (easylist.txt: 47702) -.adboost.io -# @@||adbar.pp.ua^$~third-party (easylist.txt: 47700) -.adbar.pp.ua -# @@||adap.tv/redir/javascript/vpaid.js (easylist.txt: 47698) -.adap.tv/redir/javascript/vpaid\.js -# @@||adap.tv/redir/client/adplayer.swf$object-subrequest (easylist.txt: 47694) -.adap.tv/redir/client/adplayer\.swf -# @@||adap.tv/crossdomain.xml$object-subrequest (easylist.txt: 47693) -.adap.tv/crossdomain\.xml -# @@||adap.tv/control?$object-subrequest (easylist.txt: 47692) -.adap.tv/control\? -# @@||ad4.liverail.com/crossdomain.xml$object-subrequest (easylist.txt: 47686) -.ad4.liverail.com/crossdomain\.xml -# @@||ad3.eu^$~third-party (easylist.txt: 47681) -.ad3.eu -# @@||ad2.zophar.net/images/logo.jpg$image (easylist.txt: 47680) -.ad2.zophar.net/images/logo\.jpg -# @@||ad.smartclip.net/crossdomain.xml$object-subrequest (easylist.txt: 47678) -.ad.smartclip.net/crossdomain\.xml -# @@||ad.reebonz.com/www/ (easylist.txt: 47677) -.ad.reebonz.com/www/ -# @@||ad.doubleclick.net/pfadx/nbcu.nbc/rewind$object-subrequest (easylist.txt: 47675) -.ad.doubleclick.net/pfadx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/adx/nbcu.nbc/rewind$object-subrequest (easylist.txt: 47672) -.ad.doubleclick.net/adx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/ad/can/cbs/*;pausead=1;$object-subrequest (easylist.txt: 47668) -.ad.doubleclick.net/ad/can/cbs/.*;pausead=1; -# @@||ad.afy11.net/crossdomain.xml$object-subrequest (easylist.txt: 47666) -.ad.afy11.net/crossdomain\.xml -# @@||ad.adserve.com/crossdomain.xml$object-subrequest (easylist.txt: 47665) -.ad.adserve.com/crossdomain\.xml -# @@||ad.71i.de/global_js/magic/sevenload_magic.js$object-subrequest (easylist.txt: 47663) -.ad.71i.de/global_js/magic/sevenload_magic\.js -# @@||ad.71i.de/crossdomain.xml$object-subrequest (easylist.txt: 47662) -.ad.71i.de/crossdomain\.xml -# @@||activelydisengaged.com/wp-content/uploads/*/ad$image (easylist.txt: 47660) -.activelydisengaged.com/wp-content/uploads/.*/ad -# @@||abcnews.go.com/assets/static/ads/fwps.js (easylist.txt: 47658) -.abcnews.go.com/assets/static/ads/fwps\.js -# @@||abcnews.com/assets/static/ads/fwps.js (easylist.txt: 47657) -.abcnews.com/assets/static/ads/fwps\.js -# @@||abbyy.com/adx/$~third-party (easylist.txt: 47655) -.abbyy.com/adx/ -# @@||a.giantrealm.com/assets/vau/grplayer*.swf (easylist.txt: 47653) -.a.giantrealm.com/assets/vau/grplayer.*\.swf -# @@||9msn.com.au^*/ads/ninemsn.ads$script (easylist.txt: 47652) -.9msn.com.au/.*/ads/ninemsn\.ads -# @@||961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON.png (easylist.txt: 47649) -.961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON\.png -# @@||6waves.com/js/adshow.js (easylist.txt: 47648) -.6waves.com/js/adshow\.js -# @@||6waves.com/ads/720x300/ (easylist.txt: 47647) -.6waves.com/ads/720x300/ -# @@||53.com/resources/images/ad-rotator/ (easylist.txt: 47646) -.53.com/resources/images/ad-rotator/ -# @@||360gig.com/images/1_468x60.png (easylist.txt: 47644) -.360gig.com/images/1_468x60\.png -# @@||33universal.adprimemedia.com/vn/vna/data/ad.php?$object-subrequest (easylist.txt: 47643) -.33universal.adprimemedia.com/vn/vna/data/ad\.php\? -# @@||2mdn.net/instream/flash/*/adsapi.swf$object-subrequest (easylist.txt: 47637) -.2mdn.net/instream/flash/.*/adsapi\.swf -# @@||24ur.com/static/*/banners.js (easylist.txt: 47634) -.24ur.com/static/.*/banners\.js -# @@||24ur.com/adserver/adall. (easylist.txt: 47633) -.24ur.com/adserver/adall\. -# @@||247realmedia.com^*/farecomp/ (easylist.txt: 47632) -.247realmedia.com/.*/farecomp/ -# @@||192.168.*/images/adv_ (easylist.txt: 47627) -.192.168.*./(.*/)?images/adv_ -# @@||192.168.$xmlhttprequest (easylist.txt: 47626) -.192.168.*. -# @@/wp-content/plugins/bwp-minify/min/?f=$script,stylesheet,~third-party (easylist.txt: 47625) -/(.*/)?wp-content/plugins/bwp-minify/min/\?f= -# @@/wordpress/wp-admin/*/adrotate/*$~third-party (easylist.txt: 47624) -/(.*/)?wordpress/wp-admin/.*/adrotate/.* -# @@/wordpress/wp-admin/*-ads-manager/*$~third-party (easylist.txt: 47623) -/(.*/)?wordpress/wp-admin/.*-ads-manager/.* -# @@/advertising-glype/*$image,stylesheet (easylist.txt: 47617) -/(.*/)?advertising-glype/.* -# @@||ytimg.com/yts/jsbin/$script (easylist.txt: 35573) -.ytimg.com/yts/jsbin/ -# @@||youtube.com/player_api$script,third-party (easylist.txt: 35572) -.youtube.com/player_api -# @@||youtube.com/iframe_api$script,third-party (easylist.txt: 35571) -.youtube.com/iframe_api -# @@||widget.clipix.com^$script,third-party (easylist.txt: 35567) -.widget.clipix.com -# @@||vidible.tv/prod/$script,third-party (easylist.txt: 35566) -.vidible.tv/prod/ -# @@||ui.bamstatic.com^$script,third-party (easylist.txt: 35564) -.ui.bamstatic.com -# @@||twimg.com^$image,third-party (easylist.txt: 35562) -.twimg.com -# @@||thegatewaypundit.com/wp-includes/images/rss.png (easylist.txt: 35561) -.thegatewaypundit.com/wp-includes/images/rss\.png -# @@||thegatewaypundit.com/wp-content/uploads/submit_tip.png (easylist.txt: 35560) -.thegatewaypundit.com/wp-content/uploads/submit_tip\.png -# @@||static.cdn-ec.viddler.com^$script (easylist.txt: 35553) -.static.cdn-ec.viddler.com -# @@||providesupport.com^$script (easylist.txt: 35547) -.providesupport.com -# @@||playbuzz.com/widget/$script,third-party (easylist.txt: 35539) -.playbuzz.com/widget/ -# @@||platform.vine.co^$script (easylist.txt: 35538) -.platform.vine.co -# @@||p.jwpcdn.com^$script,third-party (easylist.txt: 35535) -.p.jwpcdn.com -# @@||netdna-cdn.com/wp-includes/js/$script,third-party (easylist.txt: 35533) -.netdna-cdn.com/wp-includes/js/ -# @@||my.hellobar.com^$script,third-party (easylist.txt: 35531) -.my.hellobar.com -# @@||lpsimage.newsinc.com/player/show/$script (easylist.txt: 35528) -.lpsimage.newsinc.com/player/show/ -# @@||lps.newsinc.com/player/show/$script (easylist.txt: 35527) -.lps.newsinc.com/player/show/ -# @@||loggly.cheatsheet.com/inputs/$image,~third-party (easylist.txt: 35526) -.loggly.cheatsheet.com/inputs/ -# @@||intensedebate.com/js/$script,third-party (easylist.txt: 35518) -.intensedebate.com/js/ -# @@||imgur.com/min/$script,third-party (easylist.txt: 35517) -.imgur.com/min/ -# @@||images.sportsworldnews.com^$image,third-party (easylist.txt: 35516) -.images.sportsworldnews.com -# @@||hwcdn.net/*.js?$script (easylist.txt: 35514) -.hwcdn.net/.*\.js\? -# @@||gstatic.com/trustedstores/$script (easylist.txt: 35513) -.gstatic.com/trustedstores/ -# @@||gravatar.com/avatar$image,third-party (easylist.txt: 35512) -.gravatar.com/avatar -# @@||googlecommerce.com^$script (easylist.txt: 35509) -.googlecommerce.com -# @@||google.com/recaptcha/$script (easylist.txt: 35507) -.google.com/recaptcha/ -# @@||google.com/jsapi$script,third-party (easylist.txt: 35506) -.google.com/jsapi -# @@||google.com/js/th/$script (easylist.txt: 35505) -.google.com/js/th/ -# @@||files.explosm.net/thumbs/$image (easylist.txt: 35501) -.files.explosm.net/thumbs/ -# @@||files.explosm.net/rcg/$image (easylist.txt: 35500) -.files.explosm.net/rcg/ -# @@||files.explosm.net/avatars/$image (easylist.txt: 35499) -.files.explosm.net/avatars/ -# @@||explosm.net/show/thumbnails/$image (easylist.txt: 35497) -.explosm.net/show/thumbnails/ -# @@||explosm.net/img/nav-button_random@2x.png| (easylist.txt: 35496) -.explosm.net/img/nav-button_random@2x\.png$ -# @@||explosm.net/img/nav-button_previous@2x.png| (easylist.txt: 35495) -.explosm.net/img/nav-button_previous@2x\.png$ -# @@||explosm.net/img/nav-button_next@2x.png| (easylist.txt: 35494) -.explosm.net/img/nav-button_next@2x\.png$ -# @@||explosm.net/img/nav-button_newest@2x.png| (easylist.txt: 35493) -.explosm.net/img/nav-button_newest@2x\.png$ -# @@||explosm.net/img/nav-button_first@2x.png| (easylist.txt: 35492) -.explosm.net/img/nav-button_first@2x\.png$ -# @@||explosm.net/img/logo.png (easylist.txt: 35491) -.explosm.net/img/logo\.png -# @@||explosm.net/favicons/favicon$image (easylist.txt: 35490) -.explosm.net/favicons/favicon -# @@||content-img.newsinc.com^$image,third-party (easylist.txt: 35483) -.content-img.newsinc.com -# @@||conservativevideos.com^$generichide (easylist.txt: 35481) -.conservativevideos.com -# @@||cheatsheet.com/wp-content/uploads/$image,~third-party (easylist.txt: 35475) -.cheatsheet.com/wp-content/uploads/ -# @@||cheatsheet.com/wp-content/themes/$image,~third-party (easylist.txt: 35474) -.cheatsheet.com/wp-content/themes/ -# @@||cdn.shopify.com^$script (easylist.txt: 35471) -.cdn.shopify.com -# @@||bigcommerce.com^$image,third-party (easylist.txt: 35468) -.bigcommerce.com -# @@||assets.newsinc.com^$image,third-party (easylist.txt: 35466) -.assets.newsinc.com -# @@||ajax.cloudflare.com/cdn-cgi/nexp/$script,third-party (easylist.txt: 35457) -.ajax.cloudflare.com/cdn-cgi/nexp/ -# @@/wp-content/plugins/akismet/*$script,~third-party (easylist.txt: 35454) -/(.*/)?wp-content/plugins/akismet/.* -# @@||speedtest.net/results.php$xmlhttprequest (easylist.txt: 35429) -.speedtest.net/results\.php -# @@||speedtest.net/javascript/swfobject.js (easylist.txt: 35428) -.speedtest.net/javascript/swfobject\.js -# @@||speedtest.net/javascript/speedtest-main.js?v= (easylist.txt: 35427) -.speedtest.net/javascript/speedtest-main\.js\?v= -# @@||speedtest.net/javascript/speedtest-main.js?p=*&r=*&q=*%3*&s=*%3*= (easylist.txt: 35426) -.speedtest.net/javascript/speedtest-main\.js\?p=.*&r=.*&q=.*%3.*&s=.*%3.*= -# @@||speedtest.net/javascript/jquery.ui*.js (easylist.txt: 35425) -.speedtest.net/javascript/jquery\.ui.*\.js -# @@||speedtest.net/javascript/jquery.tipTip.js (easylist.txt: 35424) -.speedtest.net/javascript/jquery\.tipTip\.js -# @@||speedtest.net/javascript/jquery.placeholder.min.js (easylist.txt: 35423) -.speedtest.net/javascript/jquery\.placeholder\.min\.js -# @@||speedtest.net/javascript/jquery-*.min.js (easylist.txt: 35422) -.speedtest.net/javascript/jquery-.*\.min\.js -# @@||speedtest.net/javascript/highcharts.js (easylist.txt: 35421) -.speedtest.net/javascript/highcharts\.js -# @@||speedtest.net/javascript/functions.js (easylist.txt: 35420) -.speedtest.net/javascript/functions\.js -# @@||speedtest.net/javascript/extMouseWheel.js (easylist.txt: 35419) -.speedtest.net/javascript/extMouseWheel\.js -# @@||exashare.com/player6/$script (easylist.txt: 35374) -.exashare.com/player6/ -# @@||exashare.com/js/$script (easylist.txt: 35373) -.exashare.com/js/ -# @@||exashare.com/ad.js (easylist.txt: 35372) -.exashare.com/ad\.js -#ab2p-unblock-elem-R762 -{+client-header-tagger{ab2p-unblock-elem-R762} \ +#ab2p-unblock-elem-R189 +{+client-header-tagger{ab2p-unblock-elem-R189} \ } -# @@.com/ad.$domain=0379home.com (easylistchina+easylist.txt: 9985) +# @@.com/ad.$domain=0379home.com (easylistchina.txt: 9971) /.*\.com/ad\. .*.com/ad\. -#ab2p-unblock-elem-R763 -{+client-header-tagger{ab2p-unblock-elem-R763} \ +#ab2p-unblock-elem-R190 +{+client-header-tagger{ab2p-unblock-elem-R190} \ } -# @@||10086.cn^*/ad$domain=10086.cn (easylistchina+easylist.txt: 10078) +# @@||10086.cn^*/ad$domain=10086.cn (easylistchina.txt: 10061) .10086.cn/.*/ad -#ab2p-unblock-elem-R764 -{+client-header-tagger{ab2p-unblock-elem-R764} \ +#ab2p-unblock-elem-R191 +{+client-header-tagger{ab2p-unblock-elem-R191} \ } -# @@/images/*/*.gif$domain=107.150.17.66|23.226.134.115|23.226.134.116|23.226.138.28|67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina+easylist.txt: 10041) -/(.*/)?images/.*/.*\.gif - -#ab2p-unblock-elem-R765 -{+client-header-tagger{ab2p-unblock-elem-R765} \ -} -# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina+easylist.txt: 10042) +# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina.txt: 10024) /(.*/)?images/ad -#ab2p-unblock-elem-R766 -{+client-header-tagger{ab2p-unblock-elem-R766} \ +#ab2p-unblock-elem-R192 +{+client-header-tagger{ab2p-unblock-elem-R192} \ } -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=120sports.com|africanindy.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|cbsnews.com|cwtv.com|deadspin.com|denofgeek.co|denofgeek.com|drupalcommerce.org|ew.com|forbes.com|foxnews.com|gawker.com|gizmodo.com|independent.co.uk|investopedia.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|latimes.com|lifehacker.com|m.tmz.com|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|merriam-webster.com|mlb.com|nauticexpo.com|nytimes.com|orbitz.com|sendtonews.com|thesimsresource.com|time.com|urbandictionary.com|vanityfair.com|video.foxbusiness.com|video.foxnews.com|vroomvroomvroom.com.au|weather.com|weddingspot.co.uk|wlj.net|zavvi.com|zdnet.com|zillow.com (easylistchina+easylist.txt: 59345) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=120sports.com|africanindy.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|cbsnews.com|cwtv.com|deadspin.com|denofgeek.co|denofgeek.com|drupalcommerce.org|ew.com|forbes.com|foxnews.com|gawker.com|gizmodo.com|independent.co.uk|investopedia.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|latimes.com|lifehacker.com|m.tmz.com|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|merriam-webster.com|mlb.com|nauticexpo.com|nytimes.com|orbitz.com|sendtonews.com|thesimsresource.com|time.com|urbandictionary.com|vanityfair.com|video.foxbusiness.com|video.foxnews.com|vroomvroomvroom.com.au|weather.com|weddingspot.co.uk|wlj.net|zavvi.com|zdnet.com|zillow.com (easylist.txt: 48860) -.partner.googleadservices.com/gpt/pubads_impl_ - -#ab2p-unblock-elem-R767 -{+client-header-tagger{ab2p-unblock-elem-R767} \ -} -# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina+easylist.txt: 10215) +# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina.txt: 10199) .cpro.baidustatic.com/cpro/ui/c\.js -#ab2p-unblock-elem-R768 -{+client-header-tagger{ab2p-unblock-elem-R768} \ +#ab2p-unblock-elem-R193 +{+client-header-tagger{ab2p-unblock-elem-R193} \ } -# @@/advertise.$domain=123.138.234.240 (easylistchina+easylist.txt: 10018) +# @@/advertise.$domain=123.138.234.240 (easylistchina.txt: 10002) /(.*/)?advertise\. advertise.*. -#ab2p-unblock-elem-R769 -{+client-header-tagger{ab2p-unblock-elem-R769} \ +#ab2p-unblock-elem-R194 +{+client-header-tagger{ab2p-unblock-elem-R194} \ } -# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina+easylist.txt: 10157) +# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina.txt: 10141) .adm.cnzz.net/js/abase\.js -# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina+easylist.txt: 10156) +# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina.txt: 10140) .adm.cnzz.net/appgcm\.php\?sid=244627& -#ab2p-unblock-elem-R770 -{+client-header-tagger{ab2p-unblock-elem-R770} \ +#ab2p-unblock-elem-R195 +{+client-header-tagger{ab2p-unblock-elem-R195} \ } -# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|mahua.com (easylistchina+easylist.txt: 10024) +# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|keenfine.com|mahua.com (easylistchina.txt: 10008) /(.*/)?adview_pic_ -#ab2p-unblock-elem-R771 -{+client-header-tagger{ab2p-unblock-elem-R771} \ +#ab2p-unblock-elem-R196 +{+client-header-tagger{ab2p-unblock-elem-R196} \ } -# @@?sid=ads$domain=126.com|mail.163.com (easylistchina+easylist.txt: 10066) +# @@?sid=ads$domain=126.com|mail.163.com (easylistchina.txt: 10048) /.*\?sid=ads -#ab2p-unblock-elem-R772 -{+client-header-tagger{ab2p-unblock-elem-R772} \ -} -# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina+easylist.txt: 10083) -.127.0.0.1/admin/admin_ad\.php\? - -#ab2p-unblock-elem-R773 -{+client-header-tagger{ab2p-unblock-elem-R773} \ -} -# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina+easylist.txt: 10033) -/(.*/)?css/ad\. -# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina+easylist.txt: 9993) -/(.*/)?168logo\.gif -168logo.gif*. - -#ab2p-unblock-elem-R774 -{+client-header-tagger{ab2p-unblock-elem-R774} \ -} -# @@/cms/ads/*$domain=17.com (easylistchina+easylist.txt: 10030) -/(.*/)?cms/ads/.* - -#ab2p-unblock-elem-R775 -{+client-header-tagger{ab2p-unblock-elem-R775} \ -} -# @@||adsocial.ru/app/$object,script,domain=178.63.99.21 (advblock.txt: 6969) -.adsocial.ru/app/ - -#ab2p-unblock-elem-R776 -{+client-header-tagger{ab2p-unblock-elem-R776} \ -} -# @@/ads/*$domain=189.cn (easylistchina+easylist.txt: 10009) -/(.*/)?ads/.* - -#ab2p-unblock-elem-R777 -{+client-header-tagger{ab2p-unblock-elem-R777} \ -} -# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina+easylist.txt: 10051) -/(.*/)?pop\.js$ -pop.js - -#ab2p-unblock-elem-R778 -{+client-header-tagger{ab2p-unblock-elem-R778} \ -} -# @@_ad.php?$domain=1obl.ru (advblock.txt: 7218) -/.*_ad\.php\? - -#ab2p-unblock-elem-R779 -{+client-header-tagger{ab2p-unblock-elem-R779} \ -} -# @@/common/cf/*$domain=1point3acres.com|66u.com|dataguru.cn|jiangsuphp.jd-app.com|launcher.lenovo.com|oneplusbbs.com|readboy.com|xda.cn (easylistchina+easylist.txt: 10032) -/(.*/)?common/cf/.* - -#ab2p-unblock-elem-R24 -{+client-header-tagger{ab2p-unblock-elem-R24} \ -} -# @@||static.1tv.ru^$script,domain=1tv.ru (advblock.txt: 7601) -.static.1tv.ru -# @@/adfox.$script,domain=1tv.ru (advblock.txt: 7524) -/(.*/)?adfox\. -adfox.*. -# @@||ads.adfox.ru/getid?$domain=1tv.ru (advblock.txt: 7237) -.ads.adfox.ru/getid\? - -#ab2p-unblock-elem-R780 -{+client-header-tagger{ab2p-unblock-elem-R780} \ -} -# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina+easylist.txt: 10040) -/(.*/)?ima/.*ad\. - -#ab2p-unblock-elem-R781 -{+client-header-tagger{ab2p-unblock-elem-R781} \ -} -# @@||krutilka.net^$domain=24smile.net (advblock.txt: 7322) -.krutilka.net - -#ab2p-unblock-elem-R782 -{+client-header-tagger{ab2p-unblock-elem-R782} \ -} -# @@||28.com/top_adv_$domain=28.com (easylistchina+easylist.txt: 10095) -.28.com/top_adv_ -# @@||28.com/adv_$domain=28.com (easylistchina+easylist.txt: 10094) -.28.com/adv_ - -#ab2p-unblock-elem-R783 -{+client-header-tagger{ab2p-unblock-elem-R783} \ -} -# @@_120x60.$image,domain=2dayshippingbymastercard.com|catalogfavoritesvip.com|chase.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 61303) -/.*_120x60\. -# @@_120x60.$image,domain=2dayshippingbymastercard.com|catalogfavoritesvip.com|chase.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 50818) -/.*_120x60\. - -#ab2p-unblock-elem-R784 -{+client-header-tagger{ab2p-unblock-elem-R784} \ -} -# @@||gde-luchshe.ru/widget/$domain=2ip.ru (advblock.txt: 7302) -.gde-luchshe.ru/widget/ - -#ab2p-unblock-elem-R785 -{+client-header-tagger{ab2p-unblock-elem-R785} \ -} -# @@||yule8.net^$script,domain=2mm.tv|2mmei.com (easylistchina+easylist.txt: 10441) -.yule8.net -# @@||rwjfs.com^$object,script,domain=2mm.tv|2mmei.com (easylistchina+easylist.txt: 10354) -.rwjfs.com - -#ab2p-unblock-elem-R786 -{+client-header-tagger{ab2p-unblock-elem-R786} \ -} -# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina+easylist.txt: 9982) -/.*&adurl=http:// - -#ab2p-unblock-elem-R787 -{+client-header-tagger{ab2p-unblock-elem-R787} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=360haven.com|9bis.net|9jumpin.com.au|9news.com.au|9tutorials.com|afreesms.com|atlanticcitywebcam.com|bbc.com|bicimotosargentina.com|bitcoiner.net|budget101.com|buickforums.com|bullywiihacks.com|carsfromitaly.info|codeasily.com|darkreloaded.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|everythingon.tv|fcportables.com|ffiles.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freecoins4.me|freewaregenius.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|gifmagic.com|hackintosh.zone|hostyd.com|ibmmainframeforum.com|ilix.in|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|litecoiner.net|livenewschat.eu|lordpyrak.net|lumload.com|mangacap.com|mangakaka.com|megaallday.com|misheel.net|modsaholic.com|morganhillwebcam.com|moviemistakes.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|newsok.com|ninjaraider.com|nonags.com|nornar.com|numberempire.com|nx8.com|nyharborwebcam.com|omegadrivers.net|photos.essence.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|readersdigest.com.au|seeingwithsound.com|simply-debrid.com|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|top100clans.com|trutower.com|tv-kino.net|upfordown.com|uploadlw.com|urlink.at|virginmedia.com|warp2search.net|washington.edu|winterrowd.com|wtf-teen.com|yellowbridge.com (easylistchina+easylist.txt: 60628) -.pagead2.googlesyndication.com/pagead/show_ads\.js -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=360haven.com|9bis.net|9jumpin.com.au|9news.com.au|9tutorials.com|afreesms.com|atlanticcitywebcam.com|bbc.com|bicimotosargentina.com|bitcoiner.net|budget101.com|buickforums.com|bullywiihacks.com|carsfromitaly.info|codeasily.com|darkreloaded.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|everythingon.tv|fcportables.com|ffiles.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freecoins4.me|freewaregenius.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|gifmagic.com|hackintosh.zone|hostyd.com|ibmmainframeforum.com|ilix.in|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|litecoiner.net|livenewschat.eu|lordpyrak.net|lumload.com|mangacap.com|mangakaka.com|megaallday.com|misheel.net|modsaholic.com|morganhillwebcam.com|moviemistakes.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|newsok.com|ninjaraider.com|nonags.com|nornar.com|numberempire.com|nx8.com|nyharborwebcam.com|omegadrivers.net|photos.essence.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|readersdigest.com.au|seeingwithsound.com|simply-debrid.com|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|top100clans.com|trutower.com|tv-kino.net|upfordown.com|uploadlw.com|urlink.at|virginmedia.com|warp2search.net|washington.edu|winterrowd.com|wtf-teen.com|yellowbridge.com (easylist.txt: 50143) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-elem-R788 -{+client-header-tagger{ab2p-unblock-elem-R788} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=360haven.com|9bis.net|9news.com.au|9tutorials.com|afreesms.com|altoque.com|androidrepublic.org|apkmirror.com|aseanlegacy.net|atlanticcitywebcam.com|better-explorer.com|bicimotosargentina.com|bitcofree.com|bitcoiner.net|bitcoinker.com|borfast.com|boxbit.co.in|budget101.com|buickforums.com|bullywiihacks.com|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|darkreloaded.com|debridit.com|debridnet.com|dev-metal.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|ezoden.com|fcportables.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freebitco.in|freecoins4.me|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|getdebrid.com|gnomio.com|hackintosh.zone|hostyd.com|hubturkey.net|ibmmainframeforum.com|ilix.in|incredibox.com|kadinlarkulubu.com|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|leecher.us|liberallogic101.com|litecoiner.net|livenewschat.eu|lomeutec.com|lordpyrak.net|mailbait.info|mangacap.com|mangahop.com|mangakaka.com|masfuertequeelhierro.com|megaleech.us|misheel.net|morganhillwebcam.com|moviemistakes.com|mpc-g.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|nornar.com|noticiasautomotivas.com.br|numberempire.com|nyharborwebcam.com|omegadrivers.net|play-old-pc-games.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|scriptnulled.eu|settlersonlinemaps.com|simply-debrid.com|sizedrive.com|slideplayer.com.br|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|trutower.com|unlocktheinbox.com|upfordown.com|uploadlw.com|urlink.at|wallpapersimages.co.uk|washington.edu|whatismyip.com|winterrowd.com|wrestlingtalk.org|xcl.com.br|yellowbridge.com|zeperfs.com (easylistchina+easylist.txt: 60624) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=360haven.com|9bis.net|9news.com.au|9tutorials.com|afreesms.com|altoque.com|androidrepublic.org|apkmirror.com|aseanlegacy.net|atlanticcitywebcam.com|better-explorer.com|bicimotosargentina.com|bitcofree.com|bitcoiner.net|bitcoinker.com|borfast.com|boxbit.co.in|budget101.com|buickforums.com|bullywiihacks.com|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|darkreloaded.com|debridit.com|debridnet.com|dev-metal.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|ezoden.com|fcportables.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freebitco.in|freecoins4.me|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|getdebrid.com|gnomio.com|hackintosh.zone|hostyd.com|hubturkey.net|ibmmainframeforum.com|ilix.in|incredibox.com|kadinlarkulubu.com|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|leecher.us|liberallogic101.com|litecoiner.net|livenewschat.eu|lomeutec.com|lordpyrak.net|mailbait.info|mangacap.com|mangahop.com|mangakaka.com|masfuertequeelhierro.com|megaleech.us|misheel.net|morganhillwebcam.com|moviemistakes.com|mpc-g.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|nornar.com|noticiasautomotivas.com.br|numberempire.com|nyharborwebcam.com|omegadrivers.net|play-old-pc-games.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|scriptnulled.eu|settlersonlinemaps.com|simply-debrid.com|sizedrive.com|slideplayer.com.br|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|trutower.com|unlocktheinbox.com|upfordown.com|uploadlw.com|urlink.at|wallpapersimages.co.uk|washington.edu|whatismyip.com|winterrowd.com|wrestlingtalk.org|xcl.com.br|yellowbridge.com|zeperfs.com (easylist.txt: 50139) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-elem-R39 -{+client-header-tagger{ab2p-unblock-elem-R39} \ -} -# @@||3dnews.ru/www/images/$image,domain=3dnews.ru (advblock.txt: 7543) -.3dnews.ru/www/images/ -# @@||3dnews.ru/www/delivery/ajs.*&slot=single&$script,domain=3dnews.ru (advblock.txt: 7542) -.3dnews.ru/www/delivery/ajs\..*&slot=single& -# @@/^https?://ad\.3dnews\.ru/[^/]*/ajs.php\?zoneid=/$script,domain=3dnews.ru (advblock.txt: 7523) -/(.*/)?[^\w%.-]https\?://ad\\\.3dnews\\\.ru/\[[^\w%.-]/\].*/ajs\.php\\\?zoneid=/ -/^https?://ad\.3dnews\.ru/[^/]*/ajs.php\?zoneid= - -#ab2p-unblock-elem-R789 -{+client-header-tagger{ab2p-unblock-elem-R789} \ -} -# @@||2mdn.net/instream/*/adsapi_$object-subrequest,domain=3news.co.nz|49ers.com|atlantafalcons.com|azcardinals.com|baltimoreravens.com|buccaneers.com|buffalobills.com|chargers.com|chicagobears.com|clevelandbrowns.com|colts.com|dallascowboys.com|denverbroncos.com|detroitlions.com|egirlgames.net|euronews.com|giants.com|globaltv.com|houstontexans.com|jaguars.com|kcchiefs.com|ktvu.com|miamidolphins.com|neworleanssaints.com|newyorkjets.com|packers.com|panthers.com|patriots.com|philadelphiaeagles.com|raiders.com|redskins.com|rte.ie|seahawks.com|steelers.com|stlouisrams.com|thecomedynetwork.ca|titansonline.com|vikings.com|wpcomwidgets.com (easylistchina+easylist.txt: 58121) -.2mdn.net/instream/.*/adsapi_ -# @@||2mdn.net/instream/*/adsapi_$object-subrequest,domain=3news.co.nz|49ers.com|atlantafalcons.com|azcardinals.com|baltimoreravens.com|buccaneers.com|buffalobills.com|chargers.com|chicagobears.com|clevelandbrowns.com|colts.com|dallascowboys.com|denverbroncos.com|detroitlions.com|egirlgames.net|euronews.com|giants.com|globaltv.com|houstontexans.com|jaguars.com|kcchiefs.com|ktvu.com|miamidolphins.com|neworleanssaints.com|newyorkjets.com|packers.com|panthers.com|patriots.com|philadelphiaeagles.com|raiders.com|redskins.com|rte.ie|seahawks.com|steelers.com|stlouisrams.com|thecomedynetwork.ca|titansonline.com|vikings.com|wpcomwidgets.com (easylist.txt: 47636) -.2mdn.net/instream/.*/adsapi_ - -#ab2p-unblock-elem-R790 -{+client-header-tagger{ab2p-unblock-elem-R790} \ -} -# @@/assets/adv/*$domain=4008927927.cn (easylistchina+easylist.txt: 10028) -/(.*/)?assets/adv/.* - -#ab2p-unblock-elem-R791 -{+client-header-tagger{ab2p-unblock-elem-R791} \ -} -# @@||4cdn.org/adv/$image,domain=4chan.org (easylistchina+easylist.txt: 58130) -.4cdn.org/adv/ -# @@||4cdn.org/adv/$image,domain=4chan.org (easylist.txt: 47645) -.4cdn.org/adv/ - -#ab2p-unblock-elem-R792 -{+client-header-tagger{ab2p-unblock-elem-R792} \ -} -# @@||img.livejasmin.com^$image,domain=4mycams.com (easylistchina+easylist.txt: 61444) -.img.livejasmin.com -# @@||img.livejasmin.com^$image,domain=4mycams.com (easylist.txt: 50959) -.img.livejasmin.com - -#ab2p-unblock-elem-R793 -{+client-header-tagger{ab2p-unblock-elem-R793} \ -} -# @@||adshost1.com/ova/*.xml$object-subrequest,domain=4shared.com (easylistchina+easylist.txt: 58303) -.adshost1.com/ova/.*\.xml -# @@||adshost1.com/ova/*.xml$object-subrequest,domain=4shared.com (easylist.txt: 47818) -.adshost1.com/ova/.*\.xml - -#ab2p-unblock-elem-R795 -{+client-header-tagger{ab2p-unblock-elem-R795} \ -} -# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina+easylist.txt: 10214) -.cpro.baidu.com/cpro/ui/c\.js - -#ab2p-unblock-elem-R796 -{+client-header-tagger{ab2p-unblock-elem-R796} \ -} -# @@/images/ad/*$domain=5i5j.com|9588.com|diantai.ifeng.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|rapoo.cn|rapoo.nl|snh48.com|sozi.cn|tingbook.com (easylistchina+easylist.txt: 10043) -/(.*/)?images/ad/.* - -#ab2p-unblock-elem-R797 -{+client-header-tagger{ab2p-unblock-elem-R797} \ -} -# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina+easylist.txt: 10200) -.cbjs.baidu.com/js/o\.js - -#ab2p-unblock-elem-R798 -{+client-header-tagger{ab2p-unblock-elem-R798} \ -} -# @@||adm.fwmrm.net^*/LinkTag2.js$domain=6abc.com|7online.com|abc11.com|abc13.com|abc30.com|abc7.com|abc7chicago.com|abc7news.com|ahctv.com|animalplanet.com|destinationamerica.com|discovery.com|discoverylife.com|tlc.com (easylistchina+easylist.txt: 58205) -.adm.fwmrm.net/.*/LinkTag2\.js -# @@||adm.fwmrm.net^*/LinkTag2.js$domain=6abc.com|7online.com|abc11.com|abc13.com|abc30.com|abc7.com|abc7chicago.com|abc7news.com|ahctv.com|animalplanet.com|destinationamerica.com|discovery.com|discoverylife.com|tlc.com (easylist.txt: 47720) -.adm.fwmrm.net/.*/LinkTag2\.js - -#ab2p-unblock-elem-R799 -{+client-header-tagger{ab2p-unblock-elem-R799} \ -} -# @@/prepareCode?$script,domain=7days.ru|bigpicture.ru|iphones.ru|lenta.ru|rambler.ru|ria.ru|sovsport.md|sovsport.ru|sportbox.ru|sports.ru|tjournal.ru|vc.ru (advblock.txt: 7616) -/(.*/)?prepareCode\? - -#ab2p-unblock-elem-R800 -{+client-header-tagger{ab2p-unblock-elem-R800} \ -} -# @@/getCodeTest?$script,domain=7days.ru|bigpicture.ru|kakprosto.ru|lenta.ru|rambler.ru|ria.ru|rusplt.ru|sobesednik.ru|sovsport.md|sovsport.ru|sportbox.ru|sports.ru|tjournal.ru|vc.ru (advblock.txt: 7615) -/(.*/)?getCodeTest\? - -#ab2p-unblock-elem-R801 -{+client-header-tagger{ab2p-unblock-elem-R801} \ -} -# @@||an.yandex.ru/system/context.js$script,domain=7days.ru|sports.ru (advblock.txt: 7627) -.an.yandex.ru/system/context\.js -# @@||an.yandex.ru/resource/context_static_$script,domain=7days.ru|sports.ru (advblock.txt: 7626) -.an.yandex.ru/resource/context_static_ - -#ab2p-unblock-elem-R802 -{+client-header-tagger{ab2p-unblock-elem-R802} \ -} -# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina+easylist.txt: 10447) -/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ -/\.7k7k.com\/(?!(ad|load)) - -#ab2p-unblock-elem-R803 -{+client-header-tagger{ab2p-unblock-elem-R803} \ -} -# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina+easylist.txt: 9996) -/(.*/)?ad_file/.* - -#ab2p-unblock-elem-R804 -{+client-header-tagger{ab2p-unblock-elem-R804} \ -} -# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina+easylist.txt: 10297) -.l.qq.com/lview\? -# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina+easylist.txt: 10287) -.j.wit.qq.com/sc/crystal_ad\.js\? - -#ab2p-unblock-elem-R805 -{+client-header-tagger{ab2p-unblock-elem-R805} \ -} -# @@/ad_images/*$domain=88box.com (easylistchina+easylist.txt: 9997) -/(.*/)?ad_images/.* - -#ab2p-unblock-elem-R806 -{+client-header-tagger{ab2p-unblock-elem-R806} \ -} -# @@.com/ads/$domain=88boxjx.com (easylistchina+easylist.txt: 9987) -/.*\.com/ads/ -.*.com/ads/ - -#ab2p-unblock-elem-R807 -{+client-header-tagger{ab2p-unblock-elem-R807} \ -} -# @@/web/ads/*$domain=95516.com (easylistchina+easylist.txt: 10060) -/(.*/)?web/ads/.* - -#ab2p-unblock-elem-R808 -{+client-header-tagger{ab2p-unblock-elem-R808} \ -} -# @@||numbers.md/static/$script,domain=999.md (advblock.txt: 7351) -.numbers.md/static/ - -#ab2p-unblock-elem-R809 -{+client-header-tagger{ab2p-unblock-elem-R809} \ -} -# @@||visitweb.com^$script,domain=99px.ru (advblock.txt: 7606) -.visitweb.com -# @@||luxup.ru^$script,domain=99px.ru (advblock.txt: 7582) -.luxup.ru -# @@||gfhdkse.com^$script,domain=99px.ru (advblock.txt: 7569) -.gfhdkse.com - -#ab2p-unblock-elem-R810 -{+client-header-tagger{ab2p-unblock-elem-R810} \ -} -# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina+easylist.txt: 10336) -.pos.baidu.com/ecom\? - -#ab2p-unblock-elem-R811 -{+client-header-tagger{ab2p-unblock-elem-R811} \ -} -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=9jumpin.com.au|9news.com.au|bigbrother.com.au|ninemsn.com.au (easylistchina+easylist.txt: 58204) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=9jumpin.com.au|9news.com.au|bigbrother.com.au|ninemsn.com.au (easylist.txt: 47719) -.adm.fwmrm.net/.*/BrightcovePlugin\.js - -#ab2p-unblock-elem-R812 -{+client-header-tagger{ab2p-unblock-elem-R812} \ -} -# @@||static9.net.au^*/advert.js$domain=9news.com.au (easylistchina+easylist.txt: 60767) -.static9.net.au/.*/advert\.js -# @@||gscontxt.net/main/channels-jsonp.cgi?$domain=9news.com.au (easylistchina+easylist.txt: 60366) -.gscontxt.net/main/channels-jsonp\.cgi\? -# @@||9msn.com.au/Services/Service.axd?*=AdExpert&$script,domain=9news.com.au (easylistchina+easylist.txt: 59976) -.9msn.com.au/Services/Service\.axd\?.*=AdExpert& -# @@||static9.net.au^*/advert.js$domain=9news.com.au (easylist.txt: 50282) -.static9.net.au/.*/advert\.js -# @@||gscontxt.net/main/channels-jsonp.cgi?$domain=9news.com.au (easylist.txt: 49881) -.gscontxt.net/main/channels-jsonp\.cgi\? -# @@||9msn.com.au/Services/Service.axd?*=AdExpert&$script,domain=9news.com.au (easylist.txt: 49491) -.9msn.com.au/Services/Service\.axd\?.*=AdExpert& - -#ab2p-unblock-elem-R813 -{+client-header-tagger{ab2p-unblock-elem-R813} \ -} -# @@||adsign.republika.pl^$subdocument,domain=a-d-sign.pl (easylistchina+easylist.txt: 58305) -.adsign.republika.pl -# @@||adsign.republika.pl^$subdocument,domain=a-d-sign.pl (easylist.txt: 47820) -.adsign.republika.pl - -#ab2p-unblock-elem-R61 -{+client-header-tagger{ab2p-unblock-elem-R61} \ -} -# @@||abc.com/streaming/ads/preroll_$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 58141) -.abc.com/streaming/ads/preroll_ -# @@||abc.com/streaming/ads/preroll_$object-subrequest,domain=abc.go.com (easylist.txt: 47656) -.abc.com/streaming/ads/preroll_ - -#ab2p-unblock-elem-R814 -{+client-header-tagger{ab2p-unblock-elem-R814} \ -} -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=abc.go.com|abcfamily.go.com|abcnews.go.com|adultswim.com|cartoonnetwork.com|cc.com|channel5.com|cmt.com|colbertnation.com|comedycentral.com|eonline.com|espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|flexonline.com|gametrailers.com|ign.com|logotv.com|mlb.mlb.com|mtv.com|mtvnservices.com|muscleandfitness.com|nascar.com|nbc.com|nbcnews.com|nbcsports.com|nick.com|player.theplatform.com|simpsonsworld.com|sky.com|southpark.nl|southparkstudios.com|spike.com|teamcoco.com|teennick.com|thedailyshow.com|thingx.tv|tv3play.se|tvland.com|uverseonline.att.net|vevo.com|vh1.com|video.cnbc.com|vod.fxnetworks.com (easylistchina+easylist.txt: 59739) -.v.fwmrm.net/ad/p/1\? -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=abc.go.com|abcfamily.go.com|abcnews.go.com|adultswim.com|cartoonnetwork.com|cc.com|channel5.com|cmt.com|colbertnation.com|comedycentral.com|eonline.com|espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|flexonline.com|gametrailers.com|ign.com|logotv.com|mlb.mlb.com|mtv.com|mtvnservices.com|muscleandfitness.com|nascar.com|nbc.com|nbcnews.com|nbcsports.com|nick.com|player.theplatform.com|simpsonsworld.com|sky.com|southpark.nl|southparkstudios.com|spike.com|teamcoco.com|teennick.com|thedailyshow.com|thingx.tv|tv3play.se|tvland.com|uverseonline.att.net|vevo.com|vh1.com|video.cnbc.com|vod.fxnetworks.com (easylist.txt: 49254) -.v.fwmrm.net/ad/p/1\? - -#ab2p-unblock-elem-R815 -{+client-header-tagger{ab2p-unblock-elem-R815} \ -} -# @@/assets/ads/*$domain=abcphoto.com.ua (advblock.txt: 7196) -/(.*/)?assets/ads/.* - -#ab2p-unblock-elem-R816 -{+client-header-tagger{ab2p-unblock-elem-R816} \ -} -# @@||google.com/ads/search/module/ads/*/search.js$domain=about.com|armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|ehow.com|forbbbs.org|forbes.com|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|zoover.co.uk|zoover.com (easylistchina+easylist.txt: 58897) -.google.com/ads/search/module/ads/.*/search\.js -# @@||google.com/ads/search/module/ads/*/search.js$domain=about.com|armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|ehow.com|forbbbs.org|forbes.com|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|zoover.co.uk|zoover.com (easylist.txt: 48412) -.google.com/ads/search/module/ads/.*/search\.js - -#ab2p-unblock-elem-R817 -{+client-header-tagger{ab2p-unblock-elem-R817} \ -} -# @@||google.com/adsense/search/async-ads.js$domain=about.com|ehow.com (easylistchina+easylist.txt: 58900) -.google.com/adsense/search/async-ads\.js -# @@||google.com/adsense/search/async-ads.js$domain=about.com|ehow.com (easylist.txt: 48415) -.google.com/adsense/search/async-ads\.js - -#ab2p-unblock-elem-R818 -{+client-header-tagger{ab2p-unblock-elem-R818} \ -} -# @@||google.com/uds/afs?$document,subdocument,domain=about.com|ehow.com|livestrong.com (easylistchina+easylist.txt: 58906) -.google.com/uds/afs\? -# @@||google.com/uds/afs?$document,subdocument,domain=about.com|ehow.com|livestrong.com (easylist.txt: 48421) -.google.com/uds/afs\? - -#ab2p-unblock-elem-R819 -{+client-header-tagger{ab2p-unblock-elem-R819} \ -} -# @@||accelo.com^*/affiliation/$xmlhttprequest,domain=accelo.com (easylistchina+easylist.txt: 58144) -.accelo.com/.*/affiliation/ -# @@||accelo.com^*/affiliation/$xmlhttprequest,domain=accelo.com (easylist.txt: 47659) -.accelo.com/.*/affiliation/ - -#ab2p-unblock-elem-R63 -{+client-header-tagger{ab2p-unblock-elem-R63} \ -} -# @@||rackcdn.com/LN_AH_Sweep_300x250_$image,domain=accesshollywood.com (easylistchina+easylist.txt: 61364) -.rackcdn.com/LN_AH_Sweep_300x250_ -# @@||rackcdn.com/LN_AH_Sweep_300x250_$image,domain=accesshollywood.com (easylist.txt: 50879) -.rackcdn.com/LN_AH_Sweep_300x250_ - -#ab2p-unblock-elem-R820 -{+client-header-tagger{ab2p-unblock-elem-R820} \ -} -# @@||gstatic.com/images/icons/product/adsense_$image,domain=accounts.google.com (easylistchina+easylist.txt: 61174) -.gstatic.com/images/icons/product/adsense_ -# @@||gstatic.com/images/icons/product/adsense-$image,domain=accounts.google.com (easylistchina+easylist.txt: 61173) -.gstatic.com/images/icons/product/adsense- -# @@||gstatic.com/accounts/services/adwords/$image,domain=accounts.google.com (easylistchina+easylist.txt: 61172) -.gstatic.com/accounts/services/adwords/ -# @@||accounts.google.com/adwords/$domain=accounts.google.com (easylistchina+easylist.txt: 61163) -.accounts.google.com/adwords/ -# @@||gstatic.com/images/icons/product/adsense_$image,domain=accounts.google.com (easylist.txt: 50689) -.gstatic.com/images/icons/product/adsense_ -# @@||gstatic.com/images/icons/product/adsense-$image,domain=accounts.google.com (easylist.txt: 50688) -.gstatic.com/images/icons/product/adsense- -# @@||gstatic.com/accounts/services/adwords/$image,domain=accounts.google.com (easylist.txt: 50687) -.gstatic.com/accounts/services/adwords/ -# @@||accounts.google.com/adwords/$domain=accounts.google.com (easylist.txt: 50678) -.accounts.google.com/adwords/ - -#ab2p-unblock-elem-R821 -{+client-header-tagger{ab2p-unblock-elem-R821} \ -} -# @@||openx.infrontams.tv/www/$image,object,script,domain=acmilan.com (easylistchina+easylist.txt: 59300) -.openx.infrontams.tv/www/ -# @@||openx.infrontams.tv/www/$image,object,script,domain=acmilan.com (easylist.txt: 48815) -.openx.infrontams.tv/www/ - -#ab2p-unblock-elem-R822 -{+client-header-tagger{ab2p-unblock-elem-R822} \ -} -# @@||po.st^*/status?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46029) -.po.st/.*/status\? -# @@||po.st^*/counter?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46028) -.po.st/.*/counter\? -# @@||po.st/static/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46027) -.po.st/static/ -# @@||po.st/share/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46026) -.po.st/share/ -# @@||launch.newsinc.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46008) -.launch.newsinc.com -# @@||disquscdn.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45972) -.disquscdn.com -# @@||disqus.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45971) -.disqus.com -# @@||po.st^*/status?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35544) -.po.st/.*/status\? -# @@||po.st^*/counter?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35543) -.po.st/.*/counter\? -# @@||po.st/static/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35542) -.po.st/static/ -# @@||po.st/share/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35541) -.po.st/share/ -# @@||launch.newsinc.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35523) -.launch.newsinc.com -# @@||disquscdn.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35487) -.disquscdn.com -# @@||disqus.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35486) -.disqus.com - -#ab2p-unblock-elem-R823 -{+client-header-tagger{ab2p-unblock-elem-R823} \ -} -# @@||graph.facebook.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45996) -.graph.facebook.com -# @@||graph.facebook.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35511) -.graph.facebook.com - -#ab2p-unblock-elem-R824 -{+client-header-tagger{ab2p-unblock-elem-R824} \ -} -# @@||twitter.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46048) -.twitter.com -# @@||twitter.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35563) -.twitter.com - -#ab2p-unblock-elem-R825 -{+client-header-tagger{ab2p-unblock-elem-R825} \ -} -# @@||pinterest.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46021) -.pinterest.com -# @@||content-img-s.newsinc.com/jpg/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45967) -.content-img-s.newsinc.com/jpg/ -# @@||pinterest.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35536) -.pinterest.com -# @@||content-img-s.newsinc.com/jpg/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35482) -.content-img-s.newsinc.com/jpg/ - -#ab2p-unblock-elem-R826 -{+client-header-tagger{ab2p-unblock-elem-R826} \ -} -# @@||taboola.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46044) -.taboola.com -# @@||taboola.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35559) -.taboola.com - -#ab2p-unblock-elem-R827 -{+client-header-tagger{ab2p-unblock-elem-R827} \ -} -# @@||connect.facebook.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45964) -.connect.facebook.net -# @@||apis.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45950) -.apis.google.com -# @@||connect.facebook.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35479) -.connect.facebook.net -# @@||apis.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35465) -.apis.google.com - -#ab2p-unblock-elem-R828 -{+client-header-tagger{ab2p-unblock-elem-R828} \ -} -# @@||s7.addthis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46035) -.s7.addthis.com -# @@||s7.addthis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35550) -.s7.addthis.com - -#ab2p-unblock-elem-R829 -{+client-header-tagger{ab2p-unblock-elem-R829} \ -} -# @@||googleapis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45993) -.googleapis.com -# @@||connect.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45963) -.connect.facebook.com -# @@||code.jquery.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45962) -.code.jquery.com -# @@||googleapis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35508) -.googleapis.com -# @@||connect.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35478) -.connect.facebook.com -# @@||code.jquery.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35477) -.code.jquery.com - -#ab2p-unblock-elem-R830 -{+client-header-tagger{ab2p-unblock-elem-R830} \ -} -# @@||api.solvemedia.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45949) -.api.solvemedia.com -# @@||api-public.addthis.com/url/shares.json?$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45946) -.api-public.addthis.com/url/shares\.json\? -# @@||api.solvemedia.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35464) -.api.solvemedia.com -# @@||api-public.addthis.com/url/shares.json?$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35461) -.api-public.addthis.com/url/shares\.json\? - -#ab2p-unblock-elem-R831 -{+client-header-tagger{ab2p-unblock-elem-R831} \ -} -# @@||wp.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46055) -.wp.com/wp-content/ -# @@||wp.com/_static/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46054) -.wp.com/_static/ -# @@||use.typekit.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46050) -.use.typekit.net -# @@||syn.5min.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46042) -.syn.5min.com -# @@||s.gravatar.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46034) -.s.gravatar.com -# @@||r-login.wordpress.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46033) -.r-login.wordpress.com -# @@||playwire.com/bolt/$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46025) -.playwire.com/bolt/ -# @@||platform.instagram.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46022) -.platform.instagram.com -# @@||maxcdn.bootstrapcdn.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46015) -.maxcdn.bootstrapcdn.com -# @@||maps.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46014) -.maps.google.com -# @@||livefyre.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46010) -.livefyre.com -# @@||linkedin.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46009) -.linkedin.com -# @@||jwpsrv.com/player/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46005) -.jwpsrv.com/player/ -# @@||jwplatform.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46004) -.jwplatform.com -# @@||googletagservices.com/tag/js/gpt.js$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45995) -.googletagservices.com/tag/js/gpt\.js -# @@||gigya.com/js/gigya.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45989) -.gigya.com/js/gigya\. -# @@||gigya.com/comments.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45988) -.gigya.com/comments\. -# @@||fbstatic-a.akamaihd.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45983) -.fbstatic-a.akamaihd.net -# @@||embedly.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45973) -.embedly.com -# @@||cloudflare.com/ajax/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45961) -.cloudflare.com/ajax/ -# @@||cdnjs.cloudflare.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45958) -.cdnjs.cloudflare.com -# @@||api.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45947) -.api.facebook.com -# @@||ak.sail-horizon.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45943) -.ak.sail-horizon.com -# @@||wp.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35570) -.wp.com/wp-content/ -# @@||wp.com/_static/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35569) -.wp.com/_static/ -# @@||use.typekit.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35565) -.use.typekit.net -# @@||syn.5min.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35557) -.syn.5min.com -# @@||s.gravatar.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35549) -.s.gravatar.com -# @@||r-login.wordpress.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35548) -.r-login.wordpress.com -# @@||playwire.com/bolt/$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35540) -.playwire.com/bolt/ -# @@||platform.instagram.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35537) -.platform.instagram.com -# @@||maxcdn.bootstrapcdn.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35530) -.maxcdn.bootstrapcdn.com -# @@||maps.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35529) -.maps.google.com -# @@||livefyre.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35525) -.livefyre.com -# @@||linkedin.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35524) -.linkedin.com -# @@||jwpsrv.com/player/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35520) -.jwpsrv.com/player/ -# @@||jwplatform.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35519) -.jwplatform.com -# @@||googletagservices.com/tag/js/gpt.js$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35510) -.googletagservices.com/tag/js/gpt\.js -# @@||gigya.com/js/gigya.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35504) -.gigya.com/js/gigya\. -# @@||gigya.com/comments.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35503) -.gigya.com/comments\. -# @@||fbstatic-a.akamaihd.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35498) -.fbstatic-a.akamaihd.net -# @@||embedly.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35488) -.embedly.com -# @@||cloudflare.com/ajax/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35476) -.cloudflare.com/ajax/ -# @@||cdnjs.cloudflare.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35473) -.cdnjs.cloudflare.com -# @@||api.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35462) -.api.facebook.com -# @@||ak.sail-horizon.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35458) -.ak.sail-horizon.com - -#ab2p-unblock-elem-R832 -{+client-header-tagger{ab2p-unblock-elem-R832} \ -} -# @@||5min.com/Scripts/PlayerSeed.js?$domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45940) -.5min.com/Scripts/PlayerSeed\.js\? -# @@||5min.com/Scripts/PlayerSeed.js?$domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35455) -.5min.com/Scripts/PlayerSeed\.js\? - -#ab2p-unblock-elem-R833 -{+client-header-tagger{ab2p-unblock-elem-R833} \ -} -# @@||netdna-cdn.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|enstarz.com|explosm.net|flexonline.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46017) -.netdna-cdn.com/wp-content/ -# @@||netdna-cdn.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|enstarz.com|explosm.net|flexonline.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35532) -.netdna-cdn.com/wp-content/ - -#ab2p-unblock-elem-R834 -{+client-header-tagger{ab2p-unblock-elem-R834} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=activistpost.com|afreesms.com|androidrepublic.org|apkmirror.com|appraisersforum.com|aseanlegacy.net|better-explorer.com|bitcofree.com|bitcoinker.com|boxbit.co.in|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|debridit.com|debridnet.com|demo-uhd3d.com|dev-metal.com|ezoden.com|firstonetv.com|freebitco.in|freeprosurfer.com|getdebrid.com|gnomio.com|hackintosh.zone|hubturkey.net|i-stats.net|incredibox.com|kadinlarkulubu.com|leecher.us|liberallogic101.com|lomeutec.com|mangacap.com|mangahop.com|masfuertequeelhierro.com|megaleech.us|mpc-g.com|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|noticiasautomotivas.com.br|pattayaone.net|play-old-pc-games.com|sc2casts.com|scriptnulled.eu|settlersonlinemaps.com|shinobilifeonline.com|sizedrive.com|slideplayer.com.br|streaming-hub.com|unlockpwd.com|unlocktheinbox.com|uploadex.com|wallpapersimages.co.uk|wrestlingtalk.org|xcl.com.br|zeperfs.com (easylistchina+easylist.txt: 60625) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=activistpost.com|afreesms.com|androidrepublic.org|apkmirror.com|appraisersforum.com|aseanlegacy.net|better-explorer.com|bitcofree.com|bitcoinker.com|boxbit.co.in|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|debridit.com|debridnet.com|demo-uhd3d.com|dev-metal.com|ezoden.com|firstonetv.com|freebitco.in|freeprosurfer.com|getdebrid.com|gnomio.com|hackintosh.zone|hubturkey.net|i-stats.net|incredibox.com|kadinlarkulubu.com|leecher.us|liberallogic101.com|lomeutec.com|mangacap.com|mangahop.com|masfuertequeelhierro.com|megaleech.us|mpc-g.com|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|noticiasautomotivas.com.br|pattayaone.net|play-old-pc-games.com|sc2casts.com|scriptnulled.eu|settlersonlinemaps.com|shinobilifeonline.com|sizedrive.com|slideplayer.com.br|streaming-hub.com|unlockpwd.com|unlocktheinbox.com|uploadex.com|wallpapersimages.co.uk|wrestlingtalk.org|xcl.com.br|zeperfs.com (easylist.txt: 50140) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js - -#ab2p-unblock-elem-R835 -{+client-header-tagger{ab2p-unblock-elem-R835} \ -} -# @@||csi.gstatic.com^$image,third-party,domain=activistpost.com|aplus.com|bizpacreview.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|flexonline.com|hallels.com|hellou.co.uk|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|redmaryland.com|segmentnext.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|variety.com|weaponsmedia.com (easylistchina+easylist.txt: 45969) -.csi.gstatic.com -# @@||csi.gstatic.com^$image,third-party,domain=activistpost.com|aplus.com|bizpacreview.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|flexonline.com|hallels.com|hellou.co.uk|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|redmaryland.com|segmentnext.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|variety.com|weaponsmedia.com (easylist.txt: 35484) -.csi.gstatic.com - -#ab2p-unblock-elem-R836 -{+client-header-tagger{ab2p-unblock-elem-R836} \ -} -# @@||printfriendly.com^$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|weaponsmedia.com (easylistchina+easylist.txt: 46031) -.printfriendly.com -# @@||printfriendly.com^$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|weaponsmedia.com (easylist.txt: 35546) -.printfriendly.com - -#ab2p-unblock-elem-R837 -{+client-header-tagger{ab2p-unblock-elem-R837} \ -} -# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina+easylist.txt: 10132) -.ad.alimama.com - -#ab2p-unblock-elem-R838 -{+client-header-tagger{ab2p-unblock-elem-R838} \ -} -# @@||liverail.com^*/vpaid-player.swf?$object,domain=addictinggames.com|keygames.com|nglmedia.com|shockwave.com (easylistchina+easylist.txt: 59105) -.liverail.com/.*/vpaid-player\.swf\? -# @@||liverail.com^*/vpaid-player.swf?$object,domain=addictinggames.com|keygames.com|nglmedia.com|shockwave.com (easylist.txt: 48620) -.liverail.com/.*/vpaid-player\.swf\? - -#ab2p-unblock-elem-R839 -{+client-header-tagger{ab2p-unblock-elem-R839} \ -} -# @@||api.paymentwall.com^$domain=adguard.com (easylistchina+easylist.txt: 58416) -.api.paymentwall.com -# @@||api.paymentwall.com^$domain=adguard.com (easylist.txt: 47931) -.api.paymentwall.com - -#ab2p-unblock-elem-R840 -{+client-header-tagger{ab2p-unblock-elem-R840} \ -} -# @@||wp.com/adlib.info/$domain=adlib.info (easylistchina+easylist.txt: 59824) -.wp.com/adlib\.info/ -# @@||wp.com/adlib.info/$domain=adlib.info (easylist.txt: 49339) -.wp.com/adlib\.info/ - -#ab2p-unblock-elem-R841 -{+client-header-tagger{ab2p-unblock-elem-R841} \ -} -# @@/adline.$domain=adline.by|adline.kiev.ua|adline.reformal.ru (advblock.txt: 7185) -/(.*/)?adline\. -adline.*. - -#ab2p-unblock-elem-R842 -{+client-header-tagger{ab2p-unblock-elem-R842} \ -} -# @@||cooladata.com^$domain=adme.ru (advblock.txt: 7287) -.cooladata.com - -#ab2p-unblock-elem-R843 -{+client-header-tagger{ab2p-unblock-elem-R843} \ -} -# @@||adnet.mennonite.net^$domain=adnetonline.org (easylistchina+easylist.txt: 58211) -.adnet.mennonite.net -# @@||adnet.mennonite.net^$domain=adnetonline.org (easylist.txt: 47726) -.adnet.mennonite.net - -#ab2p-unblock-elem-R844 -{+client-header-tagger{ab2p-unblock-elem-R844} \ -} -# @@||adroll.com^$xmlhttprequest,domain=adroll.com (easylistchina+easylist.txt: 61245) -.adroll.com -# @@||adroll.com^$xmlhttprequest,domain=adroll.com (easylist.txt: 50760) -.adroll.com - -#ab2p-unblock-elem-R845 -{+client-header-tagger{ab2p-unblock-elem-R845} \ -} -# @@||ads.bridgetrack.com/ads_v2/script/btwrite.js$domain=ads.bridgetrack.com (easylistchina+easylist.txt: 58226) -.ads.bridgetrack.com/ads_v2/script/btwrite\.js -# @@||ads.bridgetrack.com/ads_v2/script/btwrite.js$domain=ads.bridgetrack.com (easylist.txt: 47741) -.ads.bridgetrack.com/ads_v2/script/btwrite\.js - -#ab2p-unblock-elem-R846 -{+client-header-tagger{ab2p-unblock-elem-R846} \ -} -# @@||ton.twimg.com^$domain=ads.twitter.com|analytics.twitter.com (easylistchina+easylist.txt: 61266) -.ton.twimg.com -# @@||ads.twitter.com^$domain=ads.twitter.com|analytics.twitter.com (easylistchina+easylist.txt: 61265) -.ads.twitter.com -# @@||ton.twimg.com^$domain=ads.twitter.com|analytics.twitter.com (easylist.txt: 50781) -.ton.twimg.com -# @@||ads.twitter.com^$domain=ads.twitter.com|analytics.twitter.com (easylist.txt: 50780) -.ads.twitter.com - -#ab2p-unblock-elem-R847 -{+client-header-tagger{ab2p-unblock-elem-R847} \ -} -# @@||adsbox.$domain=adsbox.com.ua|adsbox.ru (advblock.txt: 7242) -.adsbox.*. - -#ab2p-unblock-elem-R848 -{+client-header-tagger{ab2p-unblock-elem-R848} \ -} -# @@/adservice.$domain=adservice.kz (advblock.txt: 7189) -/(.*/)?adservice\. -adservice.*. - -#ab2p-unblock-elem-R849 -{+client-header-tagger{ab2p-unblock-elem-R849} \ -} -# @@||banners.one.com/bannere/$domain=adservicemedia.dk (easylistchina+easylist.txt: 61296) -.banners.one.com/bannere/ -# @@||ad-server.one.com/click?agency=adservice-$domain=adservicemedia.dk (easylistchina+easylist.txt: 61292) -.ad-server.one.com/click\?agency=adservice- -# @@||banners.one.com/bannere/$domain=adservicemedia.dk (easylist.txt: 50811) -.banners.one.com/bannere/ -# @@||ad-server.one.com/click?agency=adservice-$domain=adservicemedia.dk (easylist.txt: 50807) -.ad-server.one.com/click\?agency=adservice- - -#ab2p-unblock-elem-R850 -{+client-header-tagger{ab2p-unblock-elem-R850} \ -} -# @@/adstyle.$domain=adstyle.com.ua (advblock.txt: 7190) -/(.*/)?adstyle\. -adstyle.*. - -#ab2p-unblock-elem-R75 -{+client-header-tagger{ab2p-unblock-elem-R75} \ -} -# @@||37.1.207.27^$subdocument,domain=adultmult.tv (advblock.txt: 7541) -.37.1.207.27 -# @@||googleapis.com^$script,domain=adultmult.tv (advblock.txt: 7303) -.googleapis.com -# @@||adultmult.tv/style.css|$stylesheet,domain=adultmult.tv (advblock.txt: 7244) -.adultmult.tv/style\.css$ - -#ab2p-unblock-elem-R851 -{+client-header-tagger{ab2p-unblock-elem-R851} \ -} -# @@||fwmrm.net/p/*/admanager.js$domain=adultswim.com|animalist.com|revision3.com|testtube.com (easylistchina+easylist.txt: 60319) -.fwmrm.net/p/.*/admanager\.js -# @@||fwmrm.net/p/*/admanager.js$domain=adultswim.com|animalist.com|revision3.com|testtube.com (easylist.txt: 49834) -.fwmrm.net/p/.*/admanager\.js - -#ab2p-unblock-elem-R852 -{+client-header-tagger{ab2p-unblock-elem-R852} \ -} -# @@||turner.com^*/ads/freewheel/*/admanager.swf$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylistchina+easylist.txt: 59709) -.turner.com/.*/ads/freewheel/.*/admanager\.swf -# @@||turner.com^*/ads/freewheel/*/AdManager.js$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylistchina+easylist.txt: 59708) -.turner.com/.*/ads/freewheel/.*/AdManager\.js -# @@||turner.com^*/ads/freewheel/*/admanager.swf$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylist.txt: 49224) -.turner.com/.*/ads/freewheel/.*/admanager\.swf -# @@||turner.com^*/ads/freewheel/*/AdManager.js$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylist.txt: 49223) -.turner.com/.*/ads/freewheel/.*/AdManager\.js - -#ab2p-unblock-elem-R853 -{+client-header-tagger{ab2p-unblock-elem-R853} \ -} -# @@||adv.d3.ru^$domain=adv.d3.ru (advblock.txt: 7245) -.adv.d3.ru - -#ab2p-unblock-elem-R854 -{+client-header-tagger{ab2p-unblock-elem-R854} \ -} -# @@||adv.ramr.ru^$domain=adv.ramr.ru (advblock.txt: 7246) -.adv.ramr.ru - -#ab2p-unblock-elem-R855 -{+client-header-tagger{ab2p-unblock-elem-R855} \ -} -# @@||advertising.yandex.$domain=adv.ya.ru (advblock.txt: 7252) -.advertising.yandex.*. - -#ab2p-unblock-elem-R856 -{+client-header-tagger{ab2p-unblock-elem-R856} \ -} -# @@/advert-$domain=advert-control.ru|advert-empire.com|advert-line.ru|advert-technology.ru (advblock.txt: 7191) -/(.*/)?advert- -advert-*. - -#ab2p-unblock-elem-R857 -{+client-header-tagger{ab2p-unblock-elem-R857} \ -} -# @@||advertisers.io^$domain=advertisers.io (easylistchina+easylist.txt: 58337) -.advertisers.io -# @@||advertisers.io^$domain=advertisers.io (easylist.txt: 47852) -.advertisers.io - -#ab2p-unblock-elem-R858 -{+client-header-tagger{ab2p-unblock-elem-R858} \ -} -# @@||advertising.amazon.com^$domain=advertising.amazon.com (easylistchina+easylist.txt: 61287) -.advertising.amazon.com -# @@||advertising.amazon.com^$domain=advertising.amazon.com (easylist.txt: 50802) -.advertising.amazon.com - -#ab2p-unblock-elem-R859 -{+client-header-tagger{ab2p-unblock-elem-R859} \ -} -# @@||advertising.apple.com^$domain=advertising.apple.com (easylistchina+easylist.txt: 61217) -.advertising.apple.com -# @@||advertising.apple.com^$domain=advertising.apple.com (easylist.txt: 50732) -.advertising.apple.com - -#ab2p-unblock-elem-R860 -{+client-header-tagger{ab2p-unblock-elem-R860} \ -} -# @@||advertising.sanoma.be^$domain=advertising.sanoma.be (easylistchina+easylist.txt: 61243) -.advertising.sanoma.be -# @@||advertising.sanoma.be^$domain=advertising.sanoma.be (easylist.txt: 50758) -.advertising.sanoma.be - -#ab2p-unblock-elem-R861 -{+client-header-tagger{ab2p-unblock-elem-R861} \ -} -# @@||adview.ru^$domain=adview.ru (advblock.txt: 7254) -.adview.ru - -#ab2p-unblock-elem-R862 -{+client-header-tagger{ab2p-unblock-elem-R862} \ -} -# @@/adweb.$domain=adweb.by (advblock.txt: 7193) -/(.*/)?adweb\. -adweb.*. - -#ab2p-unblock-elem-R863 -{+client-header-tagger{ab2p-unblock-elem-R863} \ -} -# @@||google.com/tools/feedback/open.js?*^url=https://adwords.google.com/$script,domain=adwords.google.com (easylistchina+easylist.txt: 61171) -.google.com/tools/feedback/open\.js\?.*[^\w%.-]url=https://adwords\.google\.com/ -# @@||bpui0.google.com^$document,subdocument,domain=adwords.google.com (easylistchina+easylist.txt: 61168) -.bpui0.google.com -# @@||adwords.google.com^$domain=adwords.google.com (easylistchina+easylist.txt: 61166) -.adwords.google.com -# @@||accounts.google.com^$document,subdocument,domain=adwords.google.com (easylistchina+easylist.txt: 61164) -.accounts.google.com -# @@||google.com/tools/feedback/open.js?*^url=https://adwords.google.com/$script,domain=adwords.google.com (easylist.txt: 50686) -.google.com/tools/feedback/open\.js\?.*[^\w%.-]url=https://adwords\.google\.com/ -# @@||bpui0.google.com^$document,subdocument,domain=adwords.google.com (easylist.txt: 50683) -.bpui0.google.com -# @@||adwords.google.com^$domain=adwords.google.com (easylist.txt: 50681) -.adwords.google.com -# @@||accounts.google.com^$document,subdocument,domain=adwords.google.com (easylist.txt: 50679) -.accounts.google.com - -#ab2p-unblock-elem-R864 -{+client-header-tagger{ab2p-unblock-elem-R864} \ -} -# @@||5.189.144.107^$script,domain=afdah.tv (easylistchina+easylist.txt: 59972) -.5.189.144.107 -# @@||5.189.144.107^$script,domain=afdah.tv (easylist.txt: 49487) -.5.189.144.107 - -#ab2p-unblock-elem-R865 -{+client-header-tagger{ab2p-unblock-elem-R865} \ -} -# @@||ssl-images-amazon.com/images/$image,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylistchina+easylist.txt: 61258) -.ssl-images-amazon.com/images/ -# @@||amazon-adsystem.com/e/cm?$document,subdocument,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylistchina+easylist.txt: 61255) -.amazon-adsystem.com/e/cm\? -# @@||ssl-images-amazon.com/images/$image,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylist.txt: 50773) -.ssl-images-amazon.com/images/ -# @@||amazon-adsystem.com/e/cm?$document,subdocument,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylist.txt: 50770) -.amazon-adsystem.com/e/cm\? - -#ab2p-unblock-elem-R866 -{+client-header-tagger{ab2p-unblock-elem-R866} \ -} -# @@||amazon.com/home/ads/$document,subdocument,domain=affiliate-program.amazon.com (easylistchina+easylist.txt: 61257) -.amazon.com/home/ads/ -# @@||amazon-adsystem.com^$domain=affiliate-program.amazon.com (easylistchina+easylist.txt: 61256) -.amazon-adsystem.com -# @@||amazon.com/home/ads/$document,subdocument,domain=affiliate-program.amazon.com (easylist.txt: 50772) -.amazon.com/home/ads/ -# @@||amazon-adsystem.com^$domain=affiliate-program.amazon.com (easylist.txt: 50771) -.amazon-adsystem.com - -#ab2p-unblock-elem-R867 -{+client-header-tagger{ab2p-unblock-elem-R867} \ -} -# @@||affinitylive.com^*/affiliation/$xmlhttprequest,domain=affinitylive.com (easylistchina+easylist.txt: 58363) -.affinitylive.com/.*/affiliation/ -# @@||affinitylive.com^*/affiliation/$xmlhttprequest,domain=affinitylive.com (easylist.txt: 47878) -.affinitylive.com/.*/affiliation/ - -#ab2p-unblock-elem-R868 -{+client-header-tagger{ab2p-unblock-elem-R868} \ -} -# @@||yceml.net^$object,domain=affrity.com (easylistchina+easylist.txt: 59843) -.yceml.net -# @@||images-amazon.com^$domain=affrity.com (easylistchina+easylist.txt: 58977) -.images-amazon.com -# @@||go2cloud.org/aff_i?$image,domain=affrity.com (easylistchina+easylist.txt: 58887) -.go2cloud.org/aff_i\? -# @@||flipkart.com/affiliate/displayWidget?$subdocument,domain=affrity.com (easylistchina+easylist.txt: 58827) -.flipkart.com/affiliate/displayWidget\? -# @@||awltovhc.com^$object,domain=affrity.com (easylistchina+easylist.txt: 58466) -.awltovhc.com -# @@||amazon-adsystem.com^$domain=affrity.com (easylistchina+easylist.txt: 58393) -.amazon-adsystem.com -# @@||amazon-adsystem.com^$document,subdocument,domain=affrity.com (easylistchina+easylist.txt: 58392) -.amazon-adsystem.com -# @@||yceml.net^$object,domain=affrity.com (easylist.txt: 49358) -.yceml.net -# @@||images-amazon.com^$domain=affrity.com (easylist.txt: 48492) -.images-amazon.com -# @@||go2cloud.org/aff_i?$image,domain=affrity.com (easylist.txt: 48402) -.go2cloud.org/aff_i\? -# @@||flipkart.com/affiliate/displayWidget?$subdocument,domain=affrity.com (easylist.txt: 48342) -.flipkart.com/affiliate/displayWidget\? -# @@||awltovhc.com^$object,domain=affrity.com (easylist.txt: 47981) -.awltovhc.com -# @@||amazon-adsystem.com^$domain=affrity.com (easylist.txt: 47908) -.amazon-adsystem.com -# @@||amazon-adsystem.com^$document,subdocument,domain=affrity.com (easylist.txt: 47907) -.amazon-adsystem.com - -#ab2p-unblock-elem-R869 -{+client-header-tagger{ab2p-unblock-elem-R869} \ -} -# @@.com/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 58099) -/.*\.com/image-.*- -.*.com/image-.*- -# @@.com/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 47614) -/.*\.com/image-.*- -.*.com/image-.*- - -#ab2p-unblock-elem-R870 -{+client-header-tagger{ab2p-unblock-elem-R870} \ -} -# @@||yceml.net^$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59842) -.yceml.net -# @@||yceml.net^$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49357) -.yceml.net - -#ab2p-unblock-elem-R871 -{+client-header-tagger{ab2p-unblock-elem-R871} \ -} -# @@.net/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58101) -/.*\.net/image-.*- -.*.net/image-.*- -# @@.net/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47616) -/.*\.net/image-.*- -.*.net/image-.*- - -#ab2p-unblock-elem-R872 -{+client-header-tagger{ab2p-unblock-elem-R872} \ -} -# @@_300x250.$image,domain=affrity.com|lockd.co.uk (easylistchina+easylist.txt: 61305) -/.*_300x250\. -# @@_300x250.$image,domain=affrity.com|lockd.co.uk (easylist.txt: 50820) -/.*_300x250\. - -#ab2p-unblock-elem-R873 -{+client-header-tagger{ab2p-unblock-elem-R873} \ -} -# @@||afisha.ru/proxy/$domain=afisha.ru (advblock.txt: 7257) -.afisha.ru/proxy/ - -#ab2p-unblock-elem-R874 -{+client-header-tagger{ab2p-unblock-elem-R874} \ -} -# @@||adriver.ru/images/$script,domain=afisha.ru|aif.ru|eg.ru|ex.ua|forum.tatfish.com|grandars.ru|klops.ru|meta.ua|mobile-review.com|ozon.ru|thg.ru|vz.ru (advblock.txt: 7621) -.adriver.ru/images/ - -#ab2p-unblock-elem-R875 -{+client-header-tagger{ab2p-unblock-elem-R875} \ -} -# @@||adriver.ru/cgi-bin/erle.cgi?$script,domain=afisha.ru|aif.ru|ex.ua|fileplaneta.com|forum.tatfish.com|grandars.ru|klops.ru|meta.ua|oceanvideo.ru|ozon.ru|thg.ru|vz.ru (advblock.txt: 7618) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-unblock-elem-R876 -{+client-header-tagger{ab2p-unblock-elem-R876} \ -} -# @@||medrx.sensis.com.au/images/sensis/generic.js$domain=afl.com.au (easylistchina+easylist.txt: 59163) -.medrx.sensis.com.au/images/sensis/generic\.js -# @@||img.mediaplex.com^*_afl_bettingpage_$domain=afl.com.au (easylistchina+easylist.txt: 58994) -.img.mediaplex.com/.*_afl_bettingpage_ -# @@||adfarm.mediaplex.com^$domain=afl.com.au (easylistchina+easylist.txt: 58196) -.adfarm.mediaplex.com -# @@||medrx.sensis.com.au/images/sensis/generic.js$domain=afl.com.au (easylist.txt: 48678) -.medrx.sensis.com.au/images/sensis/generic\.js -# @@||img.mediaplex.com^*_afl_bettingpage_$domain=afl.com.au (easylist.txt: 48509) -.img.mediaplex.com/.*_afl_bettingpage_ -# @@||adfarm.mediaplex.com^$domain=afl.com.au (easylist.txt: 47711) -.adfarm.mediaplex.com - -#ab2p-unblock-elem-R877 -{+client-header-tagger{ab2p-unblock-elem-R877} \ -} -# @@||medrx.sensis.com.au/images/sensis/*/util.js$domain=afl.com.au|goal.com (easylistchina+easylist.txt: 59162) -.medrx.sensis.com.au/images/sensis/.*/util\.js -# @@||medrx.sensis.com.au/images/sensis/*/util.js$domain=afl.com.au|goal.com (easylist.txt: 48677) -.medrx.sensis.com.au/images/sensis/.*/util\.js - -#ab2p-unblock-elem-R878 -{+client-header-tagger{ab2p-unblock-elem-R878} \ -} -# @@||afreesms.com^$script,domain=afreesms.com (easylistchina+easylist.txt: 60040) -.afreesms.com -# @@||97.74.238.106^$domain=afreesms.com (easylistchina+easylist.txt: 59975) -.97.74.238.106 -# @@||afreesms.com^$script,domain=afreesms.com (easylist.txt: 49555) -.afreesms.com -# @@||97.74.238.106^$domain=afreesms.com (easylist.txt: 49490) -.97.74.238.106 - -#ab2p-unblock-elem-R879 -{+client-header-tagger{ab2p-unblock-elem-R879} \ -} -# @@||videoplaza.tv/proxy/distributor?$object-subrequest,domain=aftenposten.no|bt.no|ekstrabladet.dk|kuriren.nu|qbrick.com|svd.se (easylistchina+easylist.txt: 61146) -.videoplaza.tv/proxy/distributor\? -# @@||videoplaza.tv/proxy/distributor?$object-subrequest,domain=aftenposten.no|bt.no|ekstrabladet.dk|kuriren.nu|qbrick.com|svd.se (easylist.txt: 50661) -.videoplaza.tv/proxy/distributor\? - -#ab2p-unblock-elem-R880 -{+client-header-tagger{ab2p-unblock-elem-R880} \ -} -# @@||adserver.adtech.de/multiad/$script,domain=aftenposten.no|e24.no|hardware.no|vg.no (easylistchina+easylist.txt: 60025) -.adserver.adtech.de/multiad/ -# @@||adserver.adtech.de/multiad/$script,domain=aftenposten.no|e24.no|hardware.no|vg.no (easylist.txt: 49540) -.adserver.adtech.de/multiad/ - -#ab2p-unblock-elem-R881 -{+client-header-tagger{ab2p-unblock-elem-R881} \ -} -# @@/teasers/*$image,domain=aftershock.news|expertbank.com|hock5.ru|legionhardware.com|rw.by (advblock.txt: 7210) -/(.*/)?teasers/.* - -#ab2p-unblock-elem-R882 -{+client-header-tagger{ab2p-unblock-elem-R882} \ -} -# @@||advert.akado.ru/$domain=akado.ru (advblock.txt: 7248) -.advert.akado.ru - -#ab2p-unblock-elem-R883 -{+client-header-tagger{ab2p-unblock-elem-R883} \ -} -# @@/ai/adbanner/*$domain=akado.ru|megafon.ru (advblock.txt: 7195) -/(.*/)?ai/adbanner/.* - -#ab2p-unblock-elem-R884 -{+client-header-tagger{ab2p-unblock-elem-R884} \ -} -# @@||aka-cdn-ns.adtech.de/images/*.gif$image,domain=akam.no|amobil.no|gamer.no|hardware.no|teknofil.no (easylistchina+easylist.txt: 60047) -.aka-cdn-ns.adtech.de/images/.*\.gif -# @@||aka-cdn-ns.adtech.de/images/*.gif$image,domain=akam.no|amobil.no|gamer.no|hardware.no|teknofil.no (easylist.txt: 49562) -.aka-cdn-ns.adtech.de/images/.*\.gif - -#ab2p-unblock-elem-R885 -{+client-header-tagger{ab2p-unblock-elem-R885} \ -} -# @@||com/banners/$domain=akprior.com|eurobank-ua.com|maingear.com (advblock.txt: 7286) - -#ab2p-unblock-elem-R886 -{+client-header-tagger{ab2p-unblock-elem-R886} \ -} -# @@/files/banners/*$domain=aktiv48.ru|interzet.ru|pgpru.com (advblock.txt: 7200) -/(.*/)?files/banners/.* - -#ab2p-unblock-elem-R887 -{+client-header-tagger{ab2p-unblock-elem-R887} \ -} -# @@/adfox.$script,domain=alfabank.ru|megafon.ru|mirtesen.ru (advblock.txt: 7182) -/(.*/)?adfox\. -adfox.*. - -#ab2p-unblock-elem-R888 -{+client-header-tagger{ab2p-unblock-elem-R888} \ -} -# @@/adfox/*$image,object,domain=alfabank.ru|megafon.ru|sovsport.ru (advblock.txt: 7184) -/(.*/)?adfox/.* - -#ab2p-unblock-elem-R889 -{+client-header-tagger{ab2p-unblock-elem-R889} \ -} -# @@://ads.$domain=alfabank.ru|mts.ru (advblock.txt: 7216) -/.*://ads\. -ads.*. - -#ab2p-unblock-elem-R890 -{+client-header-tagger{ab2p-unblock-elem-R890} \ -} -# @@||recreativ.ru/rcode.$script,domain=all-episodes.com (advblock.txt: 7595) -.recreativ.ru/rcode\. - -#ab2p-unblock-elem-R891 -{+client-header-tagger{ab2p-unblock-elem-R891} \ -} -# @@/advertisment.js|$domain=allserial.tv|turbobitit.org|vidhost12.org (advblock.txt: 7532) -/(.*/)?advertisment\.js$ -advertisment.js - -#ab2p-unblock-elem-R892 -{+client-header-tagger{ab2p-unblock-elem-R892} \ -} -# @@||adman.gr/jwplayer.flash.swf$object,domain=alphatv.gr (easylistchina+easylist.txt: 60936) -.adman.gr/jwplayer\.flash\.swf -# @@||adman.gr/adman-video.js$domain=alphatv.gr (easylistchina+easylist.txt: 60935) -.adman.gr/adman-video\.js -# @@||adman.gr/jwplayer.flash.swf$object,domain=alphatv.gr (easylist.txt: 50451) -.adman.gr/jwplayer\.flash\.swf -# @@||adman.gr/adman-video.js$domain=alphatv.gr (easylist.txt: 50450) -.adman.gr/adman-video\.js - -#ab2p-unblock-elem-R893 -{+client-header-tagger{ab2p-unblock-elem-R893} \ -} -# @@||adv.alsscan.com^$image,stylesheet,domain=alscash.com (easylistchina+easylist.txt: 61429) -.adv.alsscan.com -# @@||adv.alsscan.com^$image,stylesheet,domain=alscash.com (easylist.txt: 50944) -.adv.alsscan.com - -#ab2p-unblock-elem-R894 -{+client-header-tagger{ab2p-unblock-elem-R894} \ -} -# @@/spcjs.php$script,domain=altapress.ru (advblock.txt: 7207) -/(.*/)?spcjs\.php -spcjs.php*. -# @@/delivery/fl.$script,domain=altapress.ru (advblock.txt: 7198) -/(.*/)?delivery/fl\. - -#ab2p-unblock-elem-R895 -{+client-header-tagger{ab2p-unblock-elem-R895} \ -} -# @@||kavanga.ru/exp?$script,domain=altapress.ru|artfile.ru|baskino.com|biysk24.ru|klops.ru|kulturologia.ru|lokomotiv.info|russianfood.com|topnews.ru|verstov.info (advblock.txt: 7629) -.kavanga.ru/exp\? - -#ab2p-unblock-elem-R896 -{+client-header-tagger{ab2p-unblock-elem-R896} \ -} -# @@||pagead2.googlesyndication.com/pagead/$script,domain=altoque.com (easylistchina+easylist.txt: 60621) -.pagead2.googlesyndication.com/pagead/ -# @@||pagead2.googlesyndication.com/pagead/$script,domain=altoque.com (easylist.txt: 50136) -.pagead2.googlesyndication.com/pagead/ - -#ab2p-unblock-elem-R897 -{+client-header-tagger{ab2p-unblock-elem-R897} \ -} -# @@||am.ru/shared/minify.php?$script,stylesheet,domain=am.ru (advblock.txt: 7260) -.am.ru/shared/minify\.php\? - -#ab2p-unblock-elem-R898 -{+client-header-tagger{ab2p-unblock-elem-R898} \ -} -# @@||widget.plugrush.com^$subdocument,domain=amateursexy.net (easylistchina+easylist.txt: 61468) -.widget.plugrush.com -# @@||widget.plugrush.com^$subdocument,domain=amateursexy.net (easylist.txt: 50983) -.widget.plugrush.com - -#ab2p-unblock-elem-R899 -{+client-header-tagger{ab2p-unblock-elem-R899} \ -} -# @@||ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylistchina+easylist.txt: 59582) -.ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylistchina+easylist.txt: 58976) -.images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/*/adsimages/$domain=amazon.com (easylistchina+easylist.txt: 58975) -.images-amazon.com/images/.*/adsimages/ -# @@||ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylist.txt: 49097) -.ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylist.txt: 48491) -.images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/*/adsimages/$domain=amazon.com (easylist.txt: 48490) -.images-amazon.com/images/.*/adsimages/ - -#ab2p-unblock-elem-R900 -{+client-header-tagger{ab2p-unblock-elem-R900} \ -} -# @@||googlesyndication.com/simgad/$image,domain=amctheatres.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|drupalcommerce.org|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|nedbank.co.za|orbitz.com|podomatic.com|weddingspot.co.uk|wlj.net|zavvi.com (easylistchina+easylist.txt: 58915) -.googlesyndication.com/simgad/ -# @@||googlesyndication.com/simgad/$image,domain=amctheatres.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|drupalcommerce.org|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|nedbank.co.za|orbitz.com|podomatic.com|weddingspot.co.uk|wlj.net|zavvi.com (easylist.txt: 48430) -.googlesyndication.com/simgad/ - -#ab2p-unblock-elem-R901 -{+client-header-tagger{ab2p-unblock-elem-R901} \ -} -# @@||partner.googleadservices.com/gampad/google_ads_gpt.js$domain=amctheatres.com|pitchfork.com|podomatic.com|virginaustralia.com (easylistchina+easylist.txt: 59342) -.partner.googleadservices.com/gampad/google_ads_gpt\.js -# @@||partner.googleadservices.com/gampad/google_ads_gpt.js$domain=amctheatres.com|pitchfork.com|podomatic.com|virginaustralia.com (easylist.txt: 48857) -.partner.googleadservices.com/gampad/google_ads_gpt\.js - -#ab2p-unblock-elem-R902 -{+client-header-tagger{ab2p-unblock-elem-R902} \ -} -# @@||ru/banners/$image,domain=amic.ru|animespirit.ru|citilink.ru|furfurmag.ru|killot.ru|onlime.ru|sobesednik.ru|toptracker.ru|webnames.ru|wildberries.ru|zalivalka.ru (advblock.txt: 7380) - -#ab2p-unblock-elem-R903 -{+client-header-tagger{ab2p-unblock-elem-R903} \ -} -# @@||ams.amazon.co.jp^$domain=ams.amazon.co.jp (easylistchina+easylist.txt: 61288) -.ams.amazon.co.jp -# @@||ams.amazon.co.jp^$domain=ams.amazon.co.jp (easylist.txt: 50803) -.ams.amazon.co.jp - -#ab2p-unblock-elem-R904 -{+client-header-tagger{ab2p-unblock-elem-R904} \ -} -# @@||ams.amazon.co.uk^$domain=ams.amazon.co.uk (easylistchina+easylist.txt: 61289) -.ams.amazon.co.uk -# @@||ams.amazon.co.uk^$domain=ams.amazon.co.uk (easylist.txt: 50804) -.ams.amazon.co.uk - -#ab2p-unblock-elem-R905 -{+client-header-tagger{ab2p-unblock-elem-R905} \ -} -# @@||ams.amazon.com^$domain=ams.amazon.com (easylistchina+easylist.txt: 61290) -.ams.amazon.com -# @@||ams.amazon.com^$domain=ams.amazon.com (easylist.txt: 50805) -.ams.amazon.com - -#ab2p-unblock-elem-R906 -{+client-header-tagger{ab2p-unblock-elem-R906} \ -} -# @@||mfcreative.com/lib/tgn/combo.ashx?$script,stylesheet,domain=ancestry.com|ancestry.com.au (easylistchina+easylist.txt: 59172) -.mfcreative.com/lib/tgn/combo\.ashx\? -# @@||mfcreative.com/lib/tgn/combo.ashx?$script,stylesheet,domain=ancestry.com|ancestry.com.au (easylist.txt: 48687) -.mfcreative.com/lib/tgn/combo\.ashx\? - -#ab2p-unblock-elem-R907 -{+client-header-tagger{ab2p-unblock-elem-R907} \ -} -# @@||delivery.anchorfree.us/player-multi.php?$subdocument,domain=anchorfree.us (easylistchina+easylist.txt: 58664) -.delivery.anchorfree.us/player-multi\.php\? -# @@||delivery.anchorfree.us/player-multi.php?$subdocument,domain=anchorfree.us (easylist.txt: 48179) -.delivery.anchorfree.us/player-multi\.php\? - -#ab2p-unblock-elem-R908 -{+client-header-tagger{ab2p-unblock-elem-R908} \ -} -# @@||objects.tremormedia.com/embed/swf/acudeoplayer.swf$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylistchina+easylist.txt: 59287) -.objects.tremormedia.com/embed/swf/acudeoplayer\.swf -# @@||objects.tremormedia.com/embed/js/$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylistchina+easylist.txt: 59285) -.objects.tremormedia.com/embed/js/ -# @@||objects.tremormedia.com/embed/swf/acudeoplayer.swf$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylist.txt: 48802) -.objects.tremormedia.com/embed/swf/acudeoplayer\.swf -# @@||objects.tremormedia.com/embed/js/$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylist.txt: 48800) -.objects.tremormedia.com/embed/js/ - -#ab2p-unblock-elem-R909 -{+client-header-tagger{ab2p-unblock-elem-R909} \ -} -# @@||ltassrv.com/yume/yume_$object-subrequest,domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylistchina+easylist.txt: 59116) -.ltassrv.com/yume/yume_ -# @@||ltassrv.com/yume.swf$domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylistchina+easylist.txt: 59115) -.ltassrv.com/yume\.swf -# @@||ltassrv.com/yume/yume_$object-subrequest,domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylist.txt: 48631) -.ltassrv.com/yume/yume_ -# @@||ltassrv.com/yume.swf$domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylist.txt: 48630) -.ltassrv.com/yume\.swf - -#ab2p-unblock-elem-R910 -{+client-header-tagger{ab2p-unblock-elem-R910} \ -} -# @@||chitika.net/getads.js$domain=anisearch.com (easylistchina+easylist.txt: 60156) -.chitika.net/getads\.js -# @@||chitika.net/getads.js$domain=anisearch.com (easylist.txt: 49671) -.chitika.net/getads\.js - -#ab2p-unblock-elem-R93 -{+client-header-tagger{ab2p-unblock-elem-R93} \ -} -# @@||anistar.ru/adv/$domain=anistar.ru (advblock.txt: 7560) -.anistar.ru/adv/ - -#ab2p-unblock-elem-R911 -{+client-header-tagger{ab2p-unblock-elem-R911} \ -} -# @@||game-advertising-online.com/index.php?section=serve&id=7740&subid=$subdocument,domain=anizm.com (easylistchina+easylist.txt: 60333) -.game-advertising-online.com/index\.php\?section=serve&id=7740&subid= -# @@||game-advertising-online.com/index.php?section=serve&id=7740&subid=$subdocument,domain=anizm.com (easylist.txt: 49848) -.game-advertising-online.com/index\.php\?section=serve&id=7740&subid= - -#ab2p-unblock-elem-R912 -{+client-header-tagger{ab2p-unblock-elem-R912} \ -} -# @@||adsonar.com/js/adsonar.js$domain=ansingstatejournal.com|app.com|battlecreekenquirer.com|clarionledger.com|coloradoan.com|dailyrecord.com|dailyworld.com|delmarvanow.com|freep.com|greatfallstribune.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|ithacajournal.com|jconline.com|livingstondaily.com|montgomeryadvertiser.com|mycentraljersey.com|news-press.com|pal-item.com|pnj.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|shreveporttimes.com|stargazette.com|tallahassee.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|thenewsstar.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com (easylistchina+easylist.txt: 58307) -.adsonar.com/js/adsonar\.js -# @@||adsonar.com/js/adsonar.js$domain=ansingstatejournal.com|app.com|battlecreekenquirer.com|clarionledger.com|coloradoan.com|dailyrecord.com|dailyworld.com|delmarvanow.com|freep.com|greatfallstribune.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|ithacajournal.com|jconline.com|livingstondaily.com|montgomeryadvertiser.com|mycentraljersey.com|news-press.com|pal-item.com|pnj.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|shreveporttimes.com|stargazette.com|tallahassee.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|thenewsstar.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com (easylist.txt: 47822) -.adsonar.com/js/adsonar\.js - -#ab2p-unblock-elem-R913 -{+client-header-tagger{ab2p-unblock-elem-R913} \ -} -# @@||smartadserver.com/call/pubx/*blq$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 61116) -.smartadserver.com/call/pubx/.*blq -# @@||smartadserver.com/call/pubj/*/S/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60748) -.smartadserver.com/call/pubj/.*/S/.*/\? -# @@||smartadserver.com/call/pubj/*/M/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60747) -.smartadserver.com/call/pubj/.*/M/.*/\? -# @@||ima3vpaid.appspot.com/crossdomain.xml$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60403) -.ima3vpaid.appspot.com/crossdomain\.xml -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60402) -.ima3vpaid.appspot.com/\?adTagUrl= -# @@||smartadserver.com/call/pubx/*blq$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50631) -.smartadserver.com/call/pubx/.*blq -# @@||smartadserver.com/call/pubj/*/S/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50263) -.smartadserver.com/call/pubj/.*/S/.*/\? -# @@||smartadserver.com/call/pubj/*/M/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50262) -.smartadserver.com/call/pubj/.*/M/.*/\? -# @@||ima3vpaid.appspot.com/crossdomain.xml$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 49918) -.ima3vpaid.appspot.com/crossdomain\.xml -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 49917) -.ima3vpaid.appspot.com/\?adTagUrl= - -#ab2p-unblock-elem-R914 -{+client-header-tagger{ab2p-unblock-elem-R914} \ -} -# @@||2mdn.net/instream/video/client.js$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com|majorleaguegaming.com (easylistchina+easylist.txt: 59965) -.2mdn.net/instream/video/client\.js -# @@||2mdn.net/instream/video/client.js$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com|majorleaguegaming.com (easylist.txt: 49480) -.2mdn.net/instream/video/client\.js - -#ab2p-unblock-elem-R915 -{+client-header-tagger{ab2p-unblock-elem-R915} \ -} -# @@||smartadserver.com/diff/*/show*.asp?*blq$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com|ondacero.es (easylistchina+easylist.txt: 61118) -.smartadserver.com/diff/.*/show.*\.asp\?.*blq -# @@||smartadserver.com/diff/*/show*.asp?*blq$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com|ondacero.es (easylist.txt: 50633) -.smartadserver.com/diff/.*/show.*\.asp\?.*blq - -#ab2p-unblock-elem-R916 -{+client-header-tagger{ab2p-unblock-elem-R916} \ -} -# @@||smartadserver.com/call/pubj/$object-subrequest,domain=antena3.com|europafm.com|ondacero.es|vertele.com (easylistchina+easylist.txt: 61114) -.smartadserver.com/call/pubj/ -# @@||smartadserver.com/call/pubj/$object-subrequest,domain=antena3.com|europafm.com|ondacero.es|vertele.com (easylist.txt: 50629) -.smartadserver.com/call/pubj/ - -#ab2p-unblock-elem-R917 -{+client-header-tagger{ab2p-unblock-elem-R917} \ -} -# @@||aolcdn.com^*/adhads.css$domain=aol.com (easylistchina+easylist.txt: 58411) -.aolcdn.com/.*/adhads\.css -# @@||aolcdn.com^*/adhads.css$domain=aol.com (easylist.txt: 47926) -.aolcdn.com/.*/adhads\.css - -#ab2p-unblock-elem-R918 -{+client-header-tagger{ab2p-unblock-elem-R918} \ -} -# @@||aolcdn.com^*/adsWrapper.$domain=aol.com|engadget.com|games.com|huffingtonpost.com|mapquest.com|stylelist.ca (easylistchina+easylist.txt: 58412) -.aolcdn.com/.*/adsWrapper\. -# @@||aolcdn.com^*/adsWrapper.$domain=aol.com|engadget.com|games.com|huffingtonpost.com|mapquest.com|stylelist.ca (easylist.txt: 47927) -.aolcdn.com/.*/adsWrapper\. - -#ab2p-unblock-elem-R919 -{+client-header-tagger{ab2p-unblock-elem-R919} \ -} -# @@||media.glnsrv.com/ads/$image,domain=aopschools.com (easylistchina+easylist.txt: 59152) -.media.glnsrv.com/ads/ -# @@||media.glnsrv.com/ads/$image,domain=aopschools.com (easylist.txt: 48667) -.media.glnsrv.com/ads/ - -#ab2p-unblock-elem-R920 -{+client-header-tagger{ab2p-unblock-elem-R920} \ -} -# @@||auditude.com/adserver?$object-subrequest,domain=ap.org|majorleaguegaming.com|newsinc.com (easylistchina+easylist.txt: 58451) -.auditude.com/adserver\? -# @@||auditude.com/adserver?$object-subrequest,domain=ap.org|majorleaguegaming.com|newsinc.com (easylist.txt: 47966) -.auditude.com/adserver\? - -#ab2p-unblock-elem-R921 -{+client-header-tagger{ab2p-unblock-elem-R921} \ -} -# @@||doubleclick.net/adi/apts.com/home;pos=$subdocument,domain=apartments.com (easylistchina+easylist.txt: 58697) -.doubleclick.net/adi/apts\.com/home;pos= -# @@||doubleclick.net/adi/apts.com/home;pos=$subdocument,domain=apartments.com (easylist.txt: 48212) -.doubleclick.net/adi/apts\.com/home;pos= - -#ab2p-unblock-elem-R922 -{+client-header-tagger{ab2p-unblock-elem-R922} \ -} -# @@||luxup.ru/crossdomain.xml|$domain=api.kinomoov.net (advblock.txt: 7327) -.luxup.ru/crossdomain\.xml$ - -#ab2p-unblock-elem-R923 -{+client-header-tagger{ab2p-unblock-elem-R923} \ -} -# @@||g.doubleclick.net/gampad/ads?$script,domain=app.com|argusleader.com|autoguide.com|battlecreekenquirer.com|baxterbulletin.com|beqala.com|boatshop24.com|bodas.com.mx|bodas.net|bucyrustelegraphforum.com|burlingtonfreepress.com|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|chillicothegazette.com|cincinnati.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|deadspin.com|defensenews.com|delawareonline.com|democratandchronicle.com|desmoinesregister.com|dnj.com|drupalcommerce.org|escapegames.com|fdlreporter.com|floridatoday.com|foxnews.com|freep.com|games.latimes.com|gawker.com|gizmodo.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|htrnews.com|indystar.com|investopedia.com|io9.com|ithacajournal.com|jacksonsun.com|jalopnik.com|jconline.com|jezebel.com|kotaku.com|lancastereaglegazette.com|lansingstatejournal.com|lifehacker.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|mariages.net|marionstar.com|marshfieldnewsherald.com|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|montgomeryadvertiser.com|motorcycle.com|mycentraljersey.com|mydesert.com|mysoju.com|nauticexpo.com|nedbank.co.za|nedbankgreen.co.za|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|nonags.com|orbitz.com|pal-item.com|podomatic.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thedailyjournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thesimsresource.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|ticketek.com.ar|urbandictionary.com|virginaustralia.com|visaliatimesdelta.com|volokh.com|vroomvroomvroom.com.au|wausaudailyherald.com|weddingspot.co.uk|wisconsinrapidstribune.com|wlj.net|zanesvilletimesrecorder.com|zavvi.com|zillow.com|zui.com (easylistchina+easylist.txt: 58851) -.g.doubleclick.net/gampad/ads\? -# @@||g.doubleclick.net/gampad/ads?$script,domain=app.com|argusleader.com|autoguide.com|battlecreekenquirer.com|baxterbulletin.com|beqala.com|boatshop24.com|bodas.com.mx|bodas.net|bucyrustelegraphforum.com|burlingtonfreepress.com|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|chillicothegazette.com|cincinnati.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|deadspin.com|defensenews.com|delawareonline.com|democratandchronicle.com|desmoinesregister.com|dnj.com|drupalcommerce.org|escapegames.com|fdlreporter.com|floridatoday.com|foxnews.com|freep.com|games.latimes.com|gawker.com|gizmodo.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|htrnews.com|indystar.com|investopedia.com|io9.com|ithacajournal.com|jacksonsun.com|jalopnik.com|jconline.com|jezebel.com|kotaku.com|lancastereaglegazette.com|lansingstatejournal.com|lifehacker.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|mariages.net|marionstar.com|marshfieldnewsherald.com|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|montgomeryadvertiser.com|motorcycle.com|mycentraljersey.com|mydesert.com|mysoju.com|nauticexpo.com|nedbank.co.za|nedbankgreen.co.za|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|nonags.com|orbitz.com|pal-item.com|podomatic.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thedailyjournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thesimsresource.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|ticketek.com.ar|urbandictionary.com|virginaustralia.com|visaliatimesdelta.com|volokh.com|vroomvroomvroom.com.au|wausaudailyherald.com|weddingspot.co.uk|wisconsinrapidstribune.com|wlj.net|zanesvilletimesrecorder.com|zavvi.com|zillow.com|zui.com (easylist.txt: 48366) -.g.doubleclick.net/gampad/ads\? - -#ab2p-unblock-elem-R924 -{+client-header-tagger{ab2p-unblock-elem-R924} \ -} -# @@||js.revsci.net/gateway/gw.js?$domain=app.com|argusleader.com|aviationweek.com|battlecreekenquirer.com|baxterbulletin.com|bucyrustelegraphforum.com|burlingtonfreepress.com|centralohio.com|chillicothegazette.com|cincinnati.com|citizen-times.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|delawareonline.com|delmarvanow.com|democratandchronicle.com|desmoinesregister.com|dnj.com|fdlreporter.com|foxsmallbusinesscenter.com|freep.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|honoluluadvertiser.com|htrnews.com|indystar.com|jacksonsun.com|jconline.com|lancastereaglegazette.com|lansingstatejournal.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|marionstar.com|marshfieldnewsherald.com|montgomeryadvertiser.com|mycentraljersey.com|mydesert.com|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|pal-item.com|pnj.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|theithacajournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com|wausaudailyherald.com|weather.com|wisconsinrapidstribune.com|zanesvilletimesrecorder.com (easylistchina+easylist.txt: 59049) -.js.revsci.net/gateway/gw\.js\? -# @@||js.revsci.net/gateway/gw.js?$domain=app.com|argusleader.com|aviationweek.com|battlecreekenquirer.com|baxterbulletin.com|bucyrustelegraphforum.com|burlingtonfreepress.com|centralohio.com|chillicothegazette.com|cincinnati.com|citizen-times.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|delawareonline.com|delmarvanow.com|democratandchronicle.com|desmoinesregister.com|dnj.com|fdlreporter.com|foxsmallbusinesscenter.com|freep.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|honoluluadvertiser.com|htrnews.com|indystar.com|jacksonsun.com|jconline.com|lancastereaglegazette.com|lansingstatejournal.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|marionstar.com|marshfieldnewsherald.com|montgomeryadvertiser.com|mycentraljersey.com|mydesert.com|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|pal-item.com|pnj.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|theithacajournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com|wausaudailyherald.com|weather.com|wisconsinrapidstribune.com|zanesvilletimesrecorder.com (easylist.txt: 48564) -.js.revsci.net/gateway/gw\.js\? - -#ab2p-unblock-elem-R925 -{+client-header-tagger{ab2p-unblock-elem-R925} \ -} -# @@||apple.com^*/images/ads_$image,domain=apple.com (easylistchina+easylist.txt: 58423) -.apple.com/.*/images/ads_ -# @@||apple.com^*/images/ad-$image,domain=apple.com (easylistchina+easylist.txt: 58422) -.apple.com/.*/images/ad- -# @@||apple.com^*/images/ads_$image,domain=apple.com (easylist.txt: 47938) -.apple.com/.*/images/ads_ -# @@||apple.com^*/images/ad-$image,domain=apple.com (easylist.txt: 47937) -.apple.com/.*/images/ad- - -#ab2p-unblock-elem-R926 -{+client-header-tagger{ab2p-unblock-elem-R926} \ -} -# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina+easylist.txt: 10127) -.ad-specs.guoshipartners.com/static/js/isip\.js - -#ab2p-unblock-elem-R927 -{+client-header-tagger{ab2p-unblock-elem-R927} \ -} -# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina+easylist.txt: 10282) -.inskinmedia.com/.*/js/base/api/ - -#ab2p-unblock-elem-R928 -{+client-header-tagger{ab2p-unblock-elem-R928} \ -} -# @@||apps.admob.com/admob/*.adsense.$script,domain=apps.admob.com (easylistchina+easylist.txt: 61167) -.apps.admob.com/admob/.*\.adsense\. -# @@||apps.admob.com/admob/*.adsense.$script,domain=apps.admob.com (easylist.txt: 50682) -.apps.admob.com/admob/.*\.adsense\. - -#ab2p-unblock-elem-R929 -{+client-header-tagger{ab2p-unblock-elem-R929} \ -} -# @@||picmonkey.com/facebook-canvas/?ads$domain=apps.facebook.com (easylistchina+easylist.txt: 59372) -.picmonkey.com/facebook-canvas/\?ads -# @@||picmonkey.com/facebook-canvas/?ads$domain=apps.facebook.com (easylist.txt: 48887) -.picmonkey.com/facebook-canvas/\?ads - -#ab2p-unblock-elem-R930 -{+client-header-tagger{ab2p-unblock-elem-R930} \ -} -# @@||medialand.ru^*/magna.js?$domain=argumenti.ru|autonews.ru|glav.su|kp.ru|sobesednik.ru (advblock.txt: 7635) -.medialand.ru/.*/magna\.js\? - -#ab2p-unblock-elem-R931 -{+client-header-tagger{ab2p-unblock-elem-R931} \ -} -# @@||adv.magna.ru/?id=$script,domain=argumenti.ru|glav.su|kp.ru|newstube.ru|sobesednik.ru|soccer.ru (advblock.txt: 7624) -.adv.magna.ru/\?id= - -#ab2p-unblock-elem-R932 -{+client-header-tagger{ab2p-unblock-elem-R932} \ -} -# @@||google.com/adsense/search/ads.js$domain=armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|forbbbs.org|forbes.com|gumtree.com.au|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|www.google.com|zoover.co.uk|zoover.com (easylistchina+easylist.txt: 58899) -.google.com/adsense/search/ads\.js -# @@||google.com/adsense/search/ads.js$domain=armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|forbbbs.org|forbes.com|gumtree.com.au|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|www.google.com|zoover.co.uk|zoover.com (easylist.txt: 48414) -.google.com/adsense/search/ads\.js - -#ab2p-unblock-elem-R933 -{+client-header-tagger{ab2p-unblock-elem-R933} \ -} -# @@||rcm.amazon.com/e/cm$domain=asianmommy.com|filmcrave.com (easylistchina+easylist.txt: 59444) -.rcm.amazon.com/e/cm -# @@||rcm.amazon.com/e/cm$domain=asianmommy.com|filmcrave.com (easylist.txt: 48959) -.rcm.amazon.com/e/cm - -#ab2p-unblock-elem-R934 -{+client-header-tagger{ab2p-unblock-elem-R934} \ -} -# @@||checkm8.com/adam/$script,domain=askqology.com (easylistchina+easylist.txt: 58584) -.checkm8.com/adam/ -# @@||checkm8.com/adam/$script,domain=askqology.com (easylist.txt: 48099) -.checkm8.com/adam/ - -#ab2p-unblock-elem-R935 -{+client-header-tagger{ab2p-unblock-elem-R935} \ -} -# @@||astromeridian.ru/assets/images/reklama/$image,domain=astromeridian.ru (advblock.txt: 7269) -.astromeridian.ru/assets/images/reklama/ - -#ab2p-unblock-elem-R936 -{+client-header-tagger{ab2p-unblock-elem-R936} \ -} -# @@||atlant-m.in.ua/uploads/banners/$domain=atlant-m.in.ua (advblock.txt: 7270) -.atlant-m.in.ua/uploads/banners/ - -#ab2p-unblock-elem-R937 -{+client-header-tagger{ab2p-unblock-elem-R937} \ -} -# @@/banman/*$script,domain=atlanticcitywebcam.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|keywestharborwebcam.com|morganhillwebcam.com|nyharborwebcam.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com (easylistchina+easylist.txt: 59923) -/(.*/)?banman/.* -# @@/banman/*$script,domain=atlanticcitywebcam.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|keywestharborwebcam.com|morganhillwebcam.com|nyharborwebcam.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com (easylist.txt: 49438) -/(.*/)?banman/.* - -#ab2p-unblock-elem-R938 -{+client-header-tagger{ab2p-unblock-elem-R938} \ -} -# @@/advert.$domain=audio-hi-fi.ru|electric-house.ru|stroi-help.ru (advblock.txt: 7192) -/(.*/)?advert\. -advert.*. - -#ab2p-unblock-elem-R939 -{+client-header-tagger{ab2p-unblock-elem-R939} \ -} -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=audiomack.com|cbc.ca|cnet.com|eboundservices.com|edmunds.com|gamejolt.com|globalnews.ca|live.geo.tv|news.sky.com|nfl.com|reuters.tv|rottentomatoes.com|softgames.de|thestreet.com|video.foxnews.com|waywire.com|wibbitz.com (easylistchina+easylist.txt: 58990) -.imasdk.googleapis.com/js/core/bridge.*\.html -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=audiomack.com|cbc.ca|cnet.com|eboundservices.com|edmunds.com|gamejolt.com|globalnews.ca|live.geo.tv|news.sky.com|nfl.com|reuters.tv|rottentomatoes.com|softgames.de|thestreet.com|video.foxnews.com|waywire.com|wibbitz.com (easylist.txt: 48505) -.imasdk.googleapis.com/js/core/bridge.*\.html - -#ab2p-unblock-elem-R940 -{+client-header-tagger{ab2p-unblock-elem-R940} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=audiomack.com|cbc.ca|cnet.com|gamejolt.com|news.sky.com|theverge.com|video.foxbusiness.com|video.foxnews.com (easylistchina+easylist.txt: 58991) -.imasdk.googleapis.com/js/sdkloader/ima3\.js -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=audiomack.com|cbc.ca|cnet.com|gamejolt.com|news.sky.com|theverge.com|video.foxbusiness.com|video.foxnews.com (easylist.txt: 48506) -.imasdk.googleapis.com/js/sdkloader/ima3\.js - -#ab2p-unblock-elem-R941 -{+client-header-tagger{ab2p-unblock-elem-R941} \ -} -# @@||adserver.netsprint.eu//widgets/widgets.js$domain=autocentrum.pl (easylistchina+easylist.txt: 60954) -# @@||adserver.netsprint.eu//widgets/widgets.js$domain=autocentrum.pl (easylist.txt: 50469) - -#ab2p-unblock-elem-R942 -{+client-header-tagger{ab2p-unblock-elem-R942} \ -} -# @@||partner.googleadservices.com/gampad/google_service.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|escapegames.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|motorcycle.com|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nx8.com|playedonline.com|playstationlifestyle.net|readersdigest.com.au|sulekha.com|ticketek.com.ar|volokh.com|yfrog.com (easylistchina+easylist.txt: 59343) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|escapegames.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|motorcycle.com|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nx8.com|playedonline.com|playstationlifestyle.net|readersdigest.com.au|sulekha.com|ticketek.com.ar|volokh.com|yfrog.com (easylist.txt: 48858) -.partner.googleadservices.com/gampad/google_service\.js - -#ab2p-unblock-elem-R943 -{+client-header-tagger{ab2p-unblock-elem-R943} \ -} -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nitrome.com|nx8.com|playedonline.com|sulekha.com|volokh.com|yfrog.com (easylistchina+easylist.txt: 59340) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nitrome.com|nx8.com|playedonline.com|sulekha.com|volokh.com|yfrog.com (easylist.txt: 48855) -.partner.googleadservices.com/gampad/google_ads\.js - -#ab2p-unblock-elem-R944 -{+client-header-tagger{ab2p-unblock-elem-R944} \ -} -# @@||medialand.ru/test?$script,domain=autonews.ru|qip.ru|rbc.ru (advblock.txt: 7632) -.medialand.ru/test\? - -#ab2p-unblock-elem-R945 -{+client-header-tagger{ab2p-unblock-elem-R945} \ -} -# @@||medialand.ru/code?*&oin=0&$script,domain=autonews.ru|qip.ru|rbc.ru|utro.ru (advblock.txt: 7630) -.medialand.ru/code\?.*&oin=0& - -#ab2p-unblock-elem-R946 -{+client-header-tagger{ab2p-unblock-elem-R946} \ -} -# @@||rbc.magna.ru/xml_out/?$domain=autonews.ru|utro.ru (advblock.txt: 7637) -.rbc.magna.ru/xml_out/\? - -#ab2p-unblock-elem-R947 -{+client-header-tagger{ab2p-unblock-elem-R947} \ -} -# @@||trader.ca/TraderMobileAPIBB.asmx/GetAds?$script,domain=autos.ca (easylistchina+easylist.txt: 59686) -.trader.ca/TraderMobileAPIBB\.asmx/GetAds\? -# @@||trader.ca/TraderMobileAPIBB.asmx/GetAds?$script,domain=autos.ca (easylist.txt: 49201) -.trader.ca/TraderMobileAPIBB\.asmx/GetAds\? - -#ab2p-unblock-elem-R948 -{+client-header-tagger{ab2p-unblock-elem-R948} \ -} -# @@||ads.yimg.com/a/$domain=autos.yahoo.com (easylistchina+easylist.txt: 58273) -.ads.yimg.com/a/ -# @@||ads.yimg.com/a/$domain=autos.yahoo.com (easylist.txt: 47788) -.ads.yimg.com/a/ - -#ab2p-unblock-elem-R949 -{+client-header-tagger{ab2p-unblock-elem-R949} \ -} -# @@||avamd.info^$script,domain=ava.md (advblock.txt: 682) -.avamd.info - -#ab2p-unblock-elem-R950 -{+client-header-tagger{ab2p-unblock-elem-R950} \ -} -# @@||static-avforums.com/*ad$script,domain=avforums.com (easylistchina+easylist.txt: 60766) -.static-avforums.com/.*ad -# @@||hcpc.co.uk/*ad$script,domain=avforums.com (easylistchina+easylist.txt: 60376) -.hcpc.co.uk/.*ad -# @@||static-avforums.com/*ad$script,domain=avforums.com (easylist.txt: 50281) -.static-avforums.com/.*ad -# @@||hcpc.co.uk/*ad$script,domain=avforums.com (easylist.txt: 49891) -.hcpc.co.uk/.*ad - -#ab2p-unblock-elem-R951 -{+client-header-tagger{ab2p-unblock-elem-R951} \ -} -# @@||b.inbox.lv^$image,script,domain=b.inbox.lv (advblock.txt: 7275) -.b.inbox.lv - -#ab2p-unblock-elem-R952 -{+client-header-tagger{ab2p-unblock-elem-R952} \ -} -# @@//promo.$popup,domain=bactistatin.com|gamexp.ru|iguides.ru|ingate.ru|yandex.ru (advblock.txt: 7181) -promo.*. - -#ab2p-unblock-elem-R953 -{+client-header-tagger{ab2p-unblock-elem-R953} \ -} -# @@||bubblesmedia.ru^$image,script,domain=baibako.tv (advblock.txt: 7284) -.bubblesmedia.ru - -#ab2p-unblock-elem-R954 -{+client-header-tagger{ab2p-unblock-elem-R954} \ -} -# @@||emediate.eu/eas?cu_key=*;ty=playlist;$object-subrequest,domain=bandit.se|lugnafavoriter.com|nrj.se|playradio.se|radio1.se|rixfm.com|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61013) -.emediate.eu/eas\?cu_key=.*;ty=playlist; -# @@||emediate.eu/eas?cu_key=*;ty=playlist;$object-subrequest,domain=bandit.se|lugnafavoriter.com|nrj.se|playradio.se|radio1.se|rixfm.com|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50528) -.emediate.eu/eas\?cu_key=.*;ty=playlist; - -#ab2p-unblock-elem-R955 -{+client-header-tagger{ab2p-unblock-elem-R955} \ -} -# @@||static*.banki.ru/upload/$image,domain=banki.ru (advblock.txt: 7398) -.static*./.*\.banki\.ru/upload/ -.static*.banki.ru/upload/ - -#ab2p-unblock-elem-R956 -{+client-header-tagger{ab2p-unblock-elem-R956} \ -} -# @@||bannerist.com/images/$image,domain=bannerist.com (easylistchina+easylist.txt: 58475) -.bannerist.com/images/ -# @@||bannerist.com/images/$image,domain=bannerist.com (easylist.txt: 47990) -.bannerist.com/images/ - -#ab2p-unblock-elem-R957 -{+client-header-tagger{ab2p-unblock-elem-R957} \ -} -# @@||bannersnack.net^$domain=bannersnack.com (easylistchina+easylist.txt: 58479) -.bannersnack.net -# @@||bannersnack.net^$domain=bannersnack.com (easylist.txt: 47994) -.bannersnack.net - -#ab2p-unblock-elem-R958 -{+client-header-tagger{ab2p-unblock-elem-R958} \ -} -# @@||imagesbn.com/resources?*/googlead.$stylesheet,domain=barnesandnoble.com (easylistchina+easylist.txt: 58987) -.imagesbn.com/resources\?.*/googlead\. -# @@||imagesbn.com/resources?*/googlead.$stylesheet,domain=barnesandnoble.com (easylist.txt: 48502) -.imagesbn.com/resources\?.*/googlead\. - -#ab2p-unblock-elem-R959 -{+client-header-tagger{ab2p-unblock-elem-R959} \ -} -# @@||barstoolsports.com^$script,domain=barstoolsports.com (easylistchina+easylist.txt: 60096) -.barstoolsports.com -# @@||barstoolsports.com^$script,domain=barstoolsports.com (easylist.txt: 49611) -.barstoolsports.com - -#ab2p-unblock-elem-R960 -{+client-header-tagger{ab2p-unblock-elem-R960} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=baseball-reference.com|basketball-reference.com|gamespot.com|hockey-reference.com|pro-football-reference.com|sitepoint.com|speedtest.net|sports-reference.com (easylistchina+easylist.txt: 60638) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=baseball-reference.com|basketball-reference.com|gamespot.com|hockey-reference.com|pro-football-reference.com|sitepoint.com|speedtest.net|sports-reference.com (easylist.txt: 50153) -.partner.googleadservices.com/gpt/pubads_impl_ - -#ab2p-unblock-elem-R961 -{+client-header-tagger{ab2p-unblock-elem-R961} \ -} -# @@||adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone?*=preroll/2Black|$subdocument,domain=baynews9.com|cfnews13.com (easylistchina+easylist.txt: 58346) -.adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone\?.*=preroll/2Black$ -# @@||adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone?*=preroll/2Black|$subdocument,domain=baynews9.com|cfnews13.com (easylist.txt: 47861) -.adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone\?.*=preroll/2Black$ - -#ab2p-unblock-elem-R962 -{+client-header-tagger{ab2p-unblock-elem-R962} \ -} -# @@||bbc.co.uk/modules/branding/css/$stylesheet,domain=bbc.co.uk (advblock.txt: 7277) -.bbc.co.uk/modules/branding/css/ - -#ab2p-unblock-elem-R963 -{+client-header-tagger{ab2p-unblock-elem-R963} \ -} -# @@||bbcimg.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58488) -.bbcimg.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/advert.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58487) -.bbcimg.co.uk/.*/advert\.js -# @@||bbci.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58485) -.bbci.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48003) -.bbcimg.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/advert.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48002) -.bbcimg.co.uk/.*/advert\.js -# @@||bbci.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48000) -.bbci.co.uk/.*/adverts\.js - -#ab2p-unblock-elem-R964 -{+client-header-tagger{ab2p-unblock-elem-R964} \ -} -# @@||doubleclick.net/adj/bbccom.live.site.auto/*^sz=1x1^$script,domain=bbc.com (easylistchina+easylist.txt: 58706) -.doubleclick.net/adj/bbccom\.live\.site\.auto/.*[^\w%.-]sz=1x1[^\w%.-] -# @@||bbcimg.co.uk^*/SmpAds.swf$object-subrequest,domain=bbc.com (easylistchina+easylist.txt: 58489) -.bbcimg.co.uk/.*/SmpAds\.swf -# @@||bbcimg.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58486) -.bbcimg.co.uk/.*/adsense_write\.js -# @@||bbci.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58484) -.bbci.co.uk/.*/adsense_write\.js -# @@||bbc.co.uk^*/adverts.js$domain=bbc.com (easylistchina+easylist.txt: 58483) -.bbc.co.uk/.*/adverts\.js -# @@||bbc.co.uk^*/advert.js$domain=bbc.com (easylistchina+easylist.txt: 58482) -.bbc.co.uk/.*/advert\.js -# @@||bbc.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58481) -.bbc.co.uk/.*/adsense_write\.js -# @@||doubleclick.net/adj/bbccom.live.site.auto/*^sz=1x1^$script,domain=bbc.com (easylist.txt: 48221) -.doubleclick.net/adj/bbccom\.live\.site\.auto/.*[^\w%.-]sz=1x1[^\w%.-] -# @@||bbcimg.co.uk^*/SmpAds.swf$object-subrequest,domain=bbc.com (easylist.txt: 48004) -.bbcimg.co.uk/.*/SmpAds\.swf -# @@||bbcimg.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 48001) -.bbcimg.co.uk/.*/adsense_write\.js -# @@||bbci.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 47999) -.bbci.co.uk/.*/adsense_write\.js -# @@||bbc.co.uk^*/adverts.js$domain=bbc.com (easylist.txt: 47998) -.bbc.co.uk/.*/adverts\.js -# @@||bbc.co.uk^*/advert.js$domain=bbc.com (easylist.txt: 47997) -.bbc.co.uk/.*/advert\.js -# @@||bbc.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 47996) -.bbc.co.uk/.*/adsense_write\.js - -#ab2p-unblock-elem-R965 -{+client-header-tagger{ab2p-unblock-elem-R965} \ -} -# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina+easylist.txt: 10438) -.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js - -#ab2p-unblock-elem-R966 -{+client-header-tagger{ab2p-unblock-elem-R966} \ -} -# @@||beeline.ru/media/banners/$domain=beeline.ru (advblock.txt: 7279) -.beeline.ru/media/banners/ -# @@||beeline.ru/ban/$domain=beeline.ru (advblock.txt: 7278) -.beeline.ru/ban/ - -#ab2p-unblock-elem-R967 -{+client-header-tagger{ab2p-unblock-elem-R967} \ -} -# @@||beliebershotel.com^$script,domain=beliebershotel.com (easylistchina+easylist.txt: 60101) -.beliebershotel.com -# @@||beliebershotel.com^$script,domain=beliebershotel.com (easylist.txt: 49616) -.beliebershotel.com - -#ab2p-unblock-elem-R968 -{+client-header-tagger{ab2p-unblock-elem-R968} \ -} -# @@||bestru.ru^*/advert_$domain=bestru.ru (advblock.txt: 7283) -.bestru.ru/.*/advert_ -# @@||bestru.ru*/advertisements/$domain=bestru.ru (advblock.txt: 7282) -.bestru.ru*./(.*/)?advertisements/ - -#ab2p-unblock-elem-R969 -{+client-header-tagger{ab2p-unblock-elem-R969} \ -} -# @@||akamai.net^*/ads/preroll_$object-subrequest,domain=bet.com (easylistchina+easylist.txt: 58374) -.akamai.net/.*/ads/preroll_ -# @@||akamai.net^*/ads/preroll_$object-subrequest,domain=bet.com (easylist.txt: 47889) -.akamai.net/.*/ads/preroll_ - -#ab2p-unblock-elem-R970 -{+client-header-tagger{ab2p-unblock-elem-R970} \ -} -# @@||bet365.com/home/?affiliate=$popup,domain=betbeaver.com|betwonga.com|betyper.com (easylistchina+easylist.txt: 61405) -.bet365.com/home/\?affiliate= -# @@||bet365.com/home/?affiliate=$popup,domain=betbeaver.com|betwonga.com|betyper.com (easylist.txt: 50920) -.bet365.com/home/\?affiliate= - -#ab2p-unblock-elem-R971 -{+client-header-tagger{ab2p-unblock-elem-R971} \ -} -# @@/redirect.aspx?pid=*&bid=$popup,domain=betbeaver.com|internetcasinot.com (easylistchina+easylist.txt: 61393) -/(.*/)?redirect\.aspx\?pid=.*&bid= -# @@/redirect.aspx?pid=*&bid=$popup,domain=betbeaver.com|internetcasinot.com (easylist.txt: 50908) -/(.*/)?redirect\.aspx\?pid=.*&bid= - -#ab2p-unblock-elem-R972 -{+client-header-tagger{ab2p-unblock-elem-R972} \ -} -# @@||mediaplex.com/ad/$domain=betfair.com (easylistchina+easylist.txt: 59161) -.mediaplex.com/ad/ -# @@||img-cdn.mediaplex.com^$image,domain=betfair.com (easylistchina+easylist.txt: 58992) -.img-cdn.mediaplex.com -# @@||dotomi.com/commonid/match?$script,domain=betfair.com (easylistchina+easylist.txt: 58690) -.dotomi.com/commonid/match\? -# @@||apmebf.com/ad/$domain=betfair.com (easylistchina+easylist.txt: 58417) -.apmebf.com/ad/ -# @@||mediaplex.com/ad/$domain=betfair.com (easylist.txt: 48676) -.mediaplex.com/ad/ -# @@||img-cdn.mediaplex.com^$image,domain=betfair.com (easylist.txt: 48507) -.img-cdn.mediaplex.com -# @@||dotomi.com/commonid/match?$script,domain=betfair.com (easylist.txt: 48205) -.dotomi.com/commonid/match\? -# @@||apmebf.com/ad/$domain=betfair.com (easylist.txt: 47932) -.apmebf.com/ad/ - -#ab2p-unblock-elem-R973 -{+client-header-tagger{ab2p-unblock-elem-R973} \ -} -# @@||adserving.unibet.com/redirect.aspx?pid=$popup,domain=betwonga.com (easylistchina+easylist.txt: 61402) -.adserving.unibet.com/redirect\.aspx\?pid= -# @@||adserving.unibet.com/redirect.aspx?pid=$popup,domain=betwonga.com (easylist.txt: 50917) -.adserving.unibet.com/redirect\.aspx\?pid= - -#ab2p-unblock-elem-R974 -{+client-header-tagger{ab2p-unblock-elem-R974} \ -} -# @@||adfarm.mediaplex.com/ad/ck/$popup,domain=betwonga.com|dealsplus.com|matched-bet.net|pcmag.com (easylistchina+easylist.txt: 61394) -.adfarm.mediaplex.com/ad/ck/ -# @@||adfarm.mediaplex.com/ad/ck/$popup,domain=betwonga.com|dealsplus.com|matched-bet.net|pcmag.com (easylist.txt: 50909) -.adfarm.mediaplex.com/ad/ck/ - -#ab2p-unblock-elem-R975 -{+client-header-tagger{ab2p-unblock-elem-R975} \ -} -# @@||ads.betfair.com/redirect.aspx?pid=$popup,domain=betwonga.com|matched-bet.net (easylistchina+easylist.txt: 61395) -.ads.betfair.com/redirect\.aspx\?pid= -# @@||ads.betfair.com/redirect.aspx?pid=$popup,domain=betwonga.com|matched-bet.net (easylist.txt: 50910) -.ads.betfair.com/redirect\.aspx\?pid= - -#ab2p-unblock-elem-R976 -{+client-header-tagger{ab2p-unblock-elem-R976} \ -} -# @@||wlmatchbook.eacdn.com/wlmatchbook/affimages/$image,domain=betyper.com (easylistchina+easylist.txt: 61150) -.wlmatchbook.eacdn.com/wlmatchbook/affimages/ -# @@||wl188bet.eacdn.com/wl188bet/affimages/$image,script,domain=betyper.com (easylistchina+easylist.txt: 61149) -.wl188bet.eacdn.com/wl188bet/affimages/ -# @@||wl188bet.adsrv.eacdn.com/S.ashx?btag=$script,domain=betyper.com (easylistchina+easylist.txt: 61148) -.wl188bet.adsrv.eacdn.com/S\.ashx\?btag= -# @@||partners.10bet.com/processing/impressions.asp?$image,domain=betyper.com (easylistchina+easylist.txt: 61083) -.partners.10bet.com/processing/impressions\.asp\? -# @@||imstore.bet365affiliates.com/AffiliateCreativeBanners/$image,domain=betyper.com (easylistchina+easylist.txt: 61044) -.imstore.bet365affiliates.com/AffiliateCreativeBanners/ -# @@||imstore.bet365affiliates.com/?AffiliateCode=$image,domain=betyper.com (easylistchina+easylist.txt: 61043) -.imstore.bet365affiliates.com/\?AffiliateCode= -# @@||amazonaws.com/affiliates/banners/logo/$image,domain=betyper.com (easylistchina+easylist.txt: 60976) -.amazonaws.com/affiliates/banners/logo/ -# @@||affiliate.matchbook.com/processing/impressions.asp?$image,domain=betyper.com (easylistchina+easylist.txt: 60968) -.affiliate.matchbook.com/processing/impressions\.asp\? -# @@||wlmatchbook.eacdn.com/wlmatchbook/affimages/$image,domain=betyper.com (easylist.txt: 50665) -.wlmatchbook.eacdn.com/wlmatchbook/affimages/ -# @@||wl188bet.eacdn.com/wl188bet/affimages/$image,script,domain=betyper.com (easylist.txt: 50664) -.wl188bet.eacdn.com/wl188bet/affimages/ -# @@||wl188bet.adsrv.eacdn.com/S.ashx?btag=$script,domain=betyper.com (easylist.txt: 50663) -.wl188bet.adsrv.eacdn.com/S\.ashx\?btag= -# @@||partners.10bet.com/processing/impressions.asp?$image,domain=betyper.com (easylist.txt: 50598) -.partners.10bet.com/processing/impressions\.asp\? -# @@||imstore.bet365affiliates.com/AffiliateCreativeBanners/$image,domain=betyper.com (easylist.txt: 50559) -.imstore.bet365affiliates.com/AffiliateCreativeBanners/ -# @@||imstore.bet365affiliates.com/?AffiliateCode=$image,domain=betyper.com (easylist.txt: 50558) -.imstore.bet365affiliates.com/\?AffiliateCode= -# @@||amazonaws.com/affiliates/banners/logo/$image,domain=betyper.com (easylist.txt: 50491) -.amazonaws.com/affiliates/banners/logo/ -# @@||affiliate.matchbook.com/processing/impressions.asp?$image,domain=betyper.com (easylist.txt: 50483) -.affiliate.matchbook.com/processing/impressions\.asp\? - -#ab2p-unblock-elem-R977 -{+client-header-tagger{ab2p-unblock-elem-R977} \ -} -# @@||smart.allocine.fr/def/def/xshowdef.asp$object-subrequest,domain=beyazperde.com (easylistchina+easylist.txt: 61113) -.smart.allocine.fr/def/def/xshowdef\.asp -# @@||smart.allocine.fr/def/def/xshowdef.asp$object-subrequest,domain=beyazperde.com (easylist.txt: 50628) -.smart.allocine.fr/def/def/xshowdef\.asp - -#ab2p-unblock-elem-R978 -{+client-header-tagger{ab2p-unblock-elem-R978} \ -} -# @@||bingads.microsoft.com/ApexContentHandler.ashx?$script,domain=bingads.microsoft.com (easylistchina+easylist.txt: 61229) -.bingads.microsoft.com/ApexContentHandler\.ashx\? -# @@||bingads.microsoft.com/ApexContentHandler.ashx?$script,domain=bingads.microsoft.com (easylist.txt: 50744) -.bingads.microsoft.com/ApexContentHandler\.ashx\? - -#ab2p-unblock-elem-R979 -{+client-header-tagger{ab2p-unblock-elem-R979} \ -} -# @@||adshost2.com/js/show_ads.js$domain=bitcoinker.com (easylistchina+easylist.txt: 60027) -.adshost2.com/js/show_ads\.js -# @@||adshost2.com/js/show_ads.js$domain=bitcoinker.com (easylist.txt: 49542) -.adshost2.com/js/show_ads\.js - -#ab2p-unblock-elem-R980 -{+client-header-tagger{ab2p-unblock-elem-R980} \ -} -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fgpt%2Fpubads_impl_$xmlhttprequest,domain=biznews.com (easylistchina+easylist.txt: 58103) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fgpt%2Fpubads_impl_ -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fgpt%2Fpubads_impl_$xmlhttprequest,domain=biznews.com (easylist.txt: 47618) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fgpt%2Fpubads_impl_ - -#ab2p-unblock-elem-R981 -{+client-header-tagger{ab2p-unblock-elem-R981} \ -} -# @@||ad4.liverail.com^*LR_VIDEO_ID=$object-subrequest,domain=bizu.tv (easylistchina+easylist.txt: 58174) -.ad4.liverail.com/.*LR_VIDEO_ID= -# @@||ad4.liverail.com^*LR_VIDEO_ID=$object-subrequest,domain=bizu.tv (easylist.txt: 47689) -.ad4.liverail.com/.*LR_VIDEO_ID= - -#ab2p-unblock-elem-R982 -{+client-header-tagger{ab2p-unblock-elem-R982} \ -} -# @@||ad4.liverail.com/|$object-subrequest,domain=bizu.tv|foxsports.com.au|majorleaguegaming.com|pbs.org|wikihow.com (easylistchina+easylist.txt: 58172) -.ad4.liverail.com/$ -# @@||ad4.liverail.com/|$object-subrequest,domain=bizu.tv|foxsports.com.au|majorleaguegaming.com|pbs.org|wikihow.com (easylist.txt: 47687) -.ad4.liverail.com/$ - -#ab2p-unblock-elem-R983 -{+client-header-tagger{ab2p-unblock-elem-R983} \ -} -# @@||svcs.ebay.com/services/search/FindingService/*affiliate.tracking$domain=bkshopper.com|geo-ship.com|testfreaks.co.uk|watchmydeals.com (easylistchina+easylist.txt: 59610) -.svcs.ebay.com/services/search/FindingService/.*affiliate\.tracking -# @@||svcs.ebay.com/services/search/FindingService/*affiliate.tracking$domain=bkshopper.com|geo-ship.com|testfreaks.co.uk|watchmydeals.com (easylist.txt: 49125) -.svcs.ebay.com/services/search/FindingService/.*affiliate\.tracking - -#ab2p-unblock-elem-R984 -{+client-header-tagger{ab2p-unblock-elem-R984} \ -} -# @@||music-tags.com/tagengine/www/delivery/spcjs.php$domain=blastro.com (easylistchina+easylist.txt: 59207) -.music-tags.com/tagengine/www/delivery/spcjs\.php -# @@||music-tags.com/tagengine/www/delivery/fl.js$domain=blastro.com (easylistchina+easylist.txt: 59206) -.music-tags.com/tagengine/www/delivery/fl\.js -# @@||music-tags.com/tagengine/www/delivery/spcjs.php$domain=blastro.com (easylist.txt: 48722) -.music-tags.com/tagengine/www/delivery/spcjs\.php -# @@||music-tags.com/tagengine/www/delivery/fl.js$domain=blastro.com (easylist.txt: 48721) -.music-tags.com/tagengine/www/delivery/fl\.js - -#ab2p-unblock-elem-R985 -{+client-header-tagger{ab2p-unblock-elem-R985} \ -} -# @@||adocean.pl/files/*.flv?$domain=blesk.cz|open.fm (easylistchina+easylist.txt: 60938) -.adocean.pl/files/.*\.flv\? -# @@||adocean.pl/files/*.flv?$domain=blesk.cz|open.fm (easylist.txt: 50453) -.adocean.pl/files/.*\.flv\? - -#ab2p-unblock-elem-R986 -{+client-header-tagger{ab2p-unblock-elem-R986} \ -} -# @@||adap.tv/redir/client/static/as3adplayer.swf$object-subrequest,domain=blogtalkradio.com|britannica.com|collegehumor.com|freeonlinegames.com|openfilmpod.com|stickam.com|talkingpointsmemo.com|thesource.com|wildearth.tv|wunderground.com (easylistchina+easylist.txt: 58180) -.adap.tv/redir/client/static/as3adplayer\.swf -# @@||adap.tv/redir/client/static/as3adplayer.swf$object-subrequest,domain=blogtalkradio.com|britannica.com|collegehumor.com|freeonlinegames.com|openfilmpod.com|stickam.com|talkingpointsmemo.com|thesource.com|wildearth.tv|wunderground.com (easylist.txt: 47695) -.adap.tv/redir/client/static/as3adplayer\.swf - -#ab2p-unblock-elem-R987 -{+client-header-tagger{ab2p-unblock-elem-R987} \ -} -# @@/advert.$script,domain=bluesystem.ru|kinozadrot.net|miuipro.ru|pesikot.org|polismed.ru|prisnilos.su|qrz.ru|tree.tv (advblock.txt: 7527) -/(.*/)?advert\. -advert.*. - -#ab2p-unblock-elem-R988 -{+client-header-tagger{ab2p-unblock-elem-R988} \ -} -# @@/teaser.$domain=bmw-motorrad.com|bmw-motorrad.ru (advblock.txt: 7208) -/(.*/)?teaser\. -teaser.*. - -#ab2p-unblock-elem-R989 -{+client-header-tagger{ab2p-unblock-elem-R989} \ -} -# @@||pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate.swf$object-subrequest,domain=bn0.com|ebog.com|gameark.com (easylistchina+easylist.txt: 59327) -.pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate\.swf -# @@||pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate.swf$object-subrequest,domain=bn0.com|ebog.com|gameark.com (easylist.txt: 48842) -.pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate\.swf - -#ab2p-unblock-elem-R990 -{+client-header-tagger{ab2p-unblock-elem-R990} \ -} -# @@||pagead2.googlesyndication.com/pagead/imgad?id=$object-subrequest,domain=bn0.com|ebog.com|gameark.com|yepi.com (easylistchina+easylist.txt: 59330) -.pagead2.googlesyndication.com/pagead/imgad\?id= -# @@||pagead2.googlesyndication.com/pagead/imgad?id=$object-subrequest,domain=bn0.com|ebog.com|gameark.com|yepi.com (easylist.txt: 48845) -.pagead2.googlesyndication.com/pagead/imgad\?id= - -#ab2p-unblock-elem-R991 -{+client-header-tagger{ab2p-unblock-elem-R991} \ -} -# @@||g.doubleclick.net/aclk?$popup,domain=bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|weddingspot.co.uk|zillow.com (easylistchina+easylist.txt: 61412) -.g.doubleclick.net/aclk\? -# @@||g.doubleclick.net/aclk?$popup,domain=bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|weddingspot.co.uk|zillow.com (easylist.txt: 50927) -.g.doubleclick.net/aclk\? - -#ab2p-unblock-elem-R992 -{+client-header-tagger{ab2p-unblock-elem-R992} \ -} -# @@||drizzle.monsoonads.com/ip.php$object-subrequest,domain=bollywoodhungama.com (easylistchina+easylist.txt: 58745) -.drizzle.monsoonads.com/ip\.php -# @@||drizzle.monsoonads.com/ip.php$object-subrequest,domain=bollywoodhungama.com (easylist.txt: 48260) -.drizzle.monsoonads.com/ip\.php - -#ab2p-unblock-elem-R993 -{+client-header-tagger{ab2p-unblock-elem-R993} \ -} -# @@||monsoonads.com:8080/monsoon1/monsoonservice?$object-subrequest,domain=bollywoodhungama.com|videos.mid-day.com (easylistchina+easylist.txt: 60543) -.monsoonads.com:8080/monsoon1/monsoonservice\? -# @@||monsoonads.com:8080/monsoon1/monsoonservice?$object-subrequest,domain=bollywoodhungama.com|videos.mid-day.com (easylist.txt: 50058) -.monsoonads.com:8080/monsoon1/monsoonservice\? - -#ab2p-unblock-elem-R994 -{+client-header-tagger{ab2p-unblock-elem-R994} \ -} -# @@||openload.io/assets/$script,domain=bombuj.sk (easylistchina+easylist.txt: 60605) -.openload.io/assets/ -# @@||openload.io/assets/$script,domain=bombuj.sk (easylist.txt: 50120) -.openload.io/assets/ - -#ab2p-unblock-elem-R995 -{+client-header-tagger{ab2p-unblock-elem-R995} \ -} -# @@/adbanner/*$image,domain=books.com.tw (easylistchina+easylist.txt: 9998) -/(.*/)?adbanner/.* - -#ab2p-unblock-elem-R996 -{+client-header-tagger{ab2p-unblock-elem-R996} \ -} -# @@||boracay.mobi/boracay/imageAds/$image,domain=boracay.tel (easylistchina+easylist.txt: 58511) -.boracay.mobi/boracay/imageAds/ -# @@||boracay.mobi/boracay/imageAds/$image,domain=boracay.tel (easylist.txt: 48026) -.boracay.mobi/boracay/imageAds/ - -#ab2p-unblock-elem-R997 -{+client-header-tagger{ab2p-unblock-elem-R997} \ -} -# @@||static.bored.com/advertising/top10/$image,domain=bored.com (easylistchina+easylist.txt: 59590) -.static.bored.com/advertising/top10/ -# @@||static.bored.com/advertising/top10/$image,domain=bored.com (easylist.txt: 49105) -.static.bored.com/advertising/top10/ - -#ab2p-unblock-elem-R998 -{+client-header-tagger{ab2p-unblock-elem-R998} \ -} -# @@||uuuploads.com/ads-on-buildings/$image,domain=boredpanda.com (easylistchina+easylist.txt: 59737) -.uuuploads.com/ads-on-buildings/ -# @@||uuuploads.com/ads-on-buildings/$image,domain=boredpanda.com (easylist.txt: 49252) -.uuuploads.com/ads-on-buildings/ - -#ab2p-unblock-elem-R999 -{+client-header-tagger{ab2p-unblock-elem-R999} \ -} -# @@||adap.tv/redir/client/swfloader.swf?$domain=box10.com|freeonlinegames.com|games.aarp.org|kizi.com|latimes.com|merriam-webster.com|puzzles.usatoday.com (easylistchina+easylist.txt: 58181) -.adap.tv/redir/client/swfloader\.swf\? -# @@||adap.tv/redir/client/swfloader.swf?$domain=box10.com|freeonlinegames.com|games.aarp.org|kizi.com|latimes.com|merriam-webster.com|puzzles.usatoday.com (easylist.txt: 47696) -.adap.tv/redir/client/swfloader\.swf\? - -#ab2p-unblock-elem-R1000 -{+client-header-tagger{ab2p-unblock-elem-R1000} \ -} -# @@||spotxchange.com/flash/adplayer.swf$domain=boxlive.tv|directon.tv|foxnews.ws|icastlive.tv|wii-cast.tv (easylistchina+easylist.txt: 59573) -.spotxchange.com/flash/adplayer\.swf -# @@||spotxchange.com/flash/adplayer.swf$domain=boxlive.tv|directon.tv|foxnews.ws|icastlive.tv|wii-cast.tv (easylist.txt: 49088) -.spotxchange.com/flash/adplayer\.swf - -#ab2p-unblock-elem-R1001 -{+client-header-tagger{ab2p-unblock-elem-R1001} \ -} -# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina+easylist.txt: 10110) -.58.com/ds/tgbrand/ - -#ab2p-unblock-elem-R1002 -{+client-header-tagger{ab2p-unblock-elem-R1002} \ -} -# @@||brandverity.com/reports/$document,domain=brandverity.com (easylistchina+easylist.txt: 58516) -.brandverity.com/reports/ -# @@||brandverity.com/reports/$document,domain=brandverity.com (easylist.txt: 48031) -.brandverity.com/reports/ - -#ab2p-unblock-elem-R1003 -{+client-header-tagger{ab2p-unblock-elem-R1003} \ -} -# @@||supportchat.contentabc.com^$popup,domain=brazzerssupport.com (easylistchina+easylist.txt: 61802) -.supportchat.contentabc.com -# @@||supportchat.contentabc.com^$popup,domain=brazzerssupport.com (easylist.txt: 51317) -.supportchat.contentabc.com - -#ab2p-unblock-elem-R1004 -{+client-header-tagger{ab2p-unblock-elem-R1004} \ -} -# @@||adbureau.net^*/images/adselector/$domain=brisbanetimes.com.au|smh.com.au|theage.com.au|watoday.com.au (easylistchina+easylist.txt: 58188) -.adbureau.net/.*/images/adselector/ -# @@||adbureau.net^*/images/adselector/$domain=brisbanetimes.com.au|smh.com.au|theage.com.au|watoday.com.au (easylist.txt: 47703) -.adbureau.net/.*/images/adselector/ - -#ab2p-unblock-elem-R1005 -{+client-header-tagger{ab2p-unblock-elem-R1005} \ -} -# @@||s0.2mdn.net^$domain=britishgas.co.uk|luxurylink.com (easylistchina+easylist.txt: 59482) -.s0.2mdn.net -# @@||s0.2mdn.net^$domain=britishgas.co.uk|luxurylink.com (easylist.txt: 48997) -.s0.2mdn.net - -#ab2p-unblock-elem-R1006 -{+client-header-tagger{ab2p-unblock-elem-R1006} \ -} -# @@||zemanta.com^$image,third-party,domain=bulletsfirst.net (easylistchina+easylist.txt: 46059) -.zemanta.com -# @@||zemanta.com^$image,third-party,domain=bulletsfirst.net (easylist.txt: 35574) -.zemanta.com - -#ab2p-unblock-elem-R1007 -{+client-header-tagger{ab2p-unblock-elem-R1007} \ -} -# @@||themoneyconverter.com/CurrencyConverter.aspx?*business-standard.com/ads/currency_converter_img.jpg$subdocument,domain=business-standard.com (easylistchina+easylist.txt: 59644) -.themoneyconverter.com/CurrencyConverter\.aspx\?.*business-standard\.com/ads/currency_converter_img\.jpg -# @@||themoneyconverter.com/CurrencyConverter.aspx?*business-standard.com/ads/currency_converter_img.jpg$subdocument,domain=business-standard.com (easylist.txt: 49159) -.themoneyconverter.com/CurrencyConverter\.aspx\?.*business-standard\.com/ads/currency_converter_img\.jpg - -#ab2p-unblock-elem-R1008 -{+client-header-tagger{ab2p-unblock-elem-R1008} \ -} -# @@||ad4.liverail.com/|$xmlhttprequest,domain=c.brightcove.com (easylistchina+easylist.txt: 58173) -.ad4.liverail.com/$ -# @@||ad4.liverail.com/|$xmlhttprequest,domain=c.brightcove.com (easylist.txt: 47688) -.ad4.liverail.com/$ - -#ab2p-unblock-elem-R1009 -{+client-header-tagger{ab2p-unblock-elem-R1009} \ -} -# @@||adserver.yahoo.com^*=weather&$domain=ca.weather.yahoo.com (easylistchina+easylist.txt: 58301) -.adserver.yahoo.com/.*=weather& -# @@||adserver.yahoo.com^*=weather&$domain=ca.weather.yahoo.com (easylist.txt: 47816) -.adserver.yahoo.com/.*=weather& - -#ab2p-unblock-elem-R1010 -{+client-header-tagger{ab2p-unblock-elem-R1010} \ -} -# @@||ipcamhost.net/flashads/*.swf$object-subrequest,domain=canadianrockies.org (easylistchina+easylist.txt: 59032) -.ipcamhost.net/flashads/.*\.swf -# @@||ipcamhost.net/flashads/*.swf$object-subrequest,domain=canadianrockies.org (easylist.txt: 48547) -.ipcamhost.net/flashads/.*\.swf - -#ab2p-unblock-elem-R1011 -{+client-header-tagger{ab2p-unblock-elem-R1011} \ -} -# @@||doubleclick.net/adj/pch.candystand/video;pos=box;sz=300x250;a=$script,domain=candystand.com (easylistchina+easylist.txt: 58715) -.doubleclick.net/adj/pch\.candystand/video;pos=box;sz=300x250;a= -# @@||doubleclick.net/adj/pch.candystand/video;pos=box;sz=300x250;a=$script,domain=candystand.com (easylist.txt: 48230) -.doubleclick.net/adj/pch\.candystand/video;pos=box;sz=300x250;a= - -#ab2p-unblock-elem-R1012 -{+client-header-tagger{ab2p-unblock-elem-R1012} \ -} -# @@||adfox.ru/crossdomain.xml$domain=carambatv.ru|life.ru|molodejj.tv|out.pladform.ru (advblock.txt: 7547) -.adfox.ru/crossdomain\.xml - -#ab2p-unblock-elem-R1013 -{+client-header-tagger{ab2p-unblock-elem-R1013} \ -} -# @@||leadback.advertising.com/adcedge/$domain=careerbuilder.com (easylistchina+easylist.txt: 59079) -.leadback.advertising.com/adcedge/ -# @@||leadback.advertising.com/adcedge/$domain=careerbuilder.com (easylist.txt: 48594) -.leadback.advertising.com/adcedge/ - -#ab2p-unblock-elem-R1014 -{+client-header-tagger{ab2p-unblock-elem-R1014} \ -} -# @@||ibsrv.net/ads/$domain=carsdirect.com (easylistchina+easylist.txt: 58966) -.ibsrv.net/ads/ -# @@||ibsrv.net/ads/$domain=carsdirect.com (easylist.txt: 48481) -.ibsrv.net/ads/ - -#ab2p-unblock-elem-R1015 -{+client-header-tagger{ab2p-unblock-elem-R1015} \ -} -# @@||ad.doubleclick.net/adj/*/cartalk.audio_player;$script,domain=cartalk.com (easylistchina+easylist.txt: 58155) -.ad.doubleclick.net/adj/.*/cartalk\.audio_player; -# @@||ad.doubleclick.net/adj/*/cartalk.audio_player;$script,domain=cartalk.com (easylist.txt: 47670) -.ad.doubleclick.net/adj/.*/cartalk\.audio_player; - -#ab2p-unblock-elem-R1016 -{+client-header-tagger{ab2p-unblock-elem-R1016} \ -} -# @@||adserver.adtech.de/addyn/3.0/755/$domain=cartoonnetwork.co.nz|cartoonnetworkasia.com|cartoonnetworkhq.com|manutd.com (easylistchina+easylist.txt: 58290) -.adserver.adtech.de/addyn/3\.0/755/ -# @@||adserver.adtech.de/addyn/3.0/755/$domain=cartoonnetwork.co.nz|cartoonnetworkasia.com|cartoonnetworkhq.com|manutd.com (easylist.txt: 47805) -.adserver.adtech.de/addyn/3\.0/755/ - -#ab2p-unblock-elem-R1017 -{+client-header-tagger{ab2p-unblock-elem-R1017} \ -} -# @@||turner.com^*/ads/freewheel/bundles/*/renderers.xml$object-subrequest,domain=cartoonnetwork.com|tnt.tv (easylistchina+easylist.txt: 59710) -.turner.com/.*/ads/freewheel/bundles/.*/renderers\.xml -# @@||turner.com^*/ads/freewheel/bundles/*/renderers.xml$object-subrequest,domain=cartoonnetwork.com|tnt.tv (easylist.txt: 49225) -.turner.com/.*/ads/freewheel/bundles/.*/renderers\.xml - -#ab2p-unblock-elem-R1018 -{+client-header-tagger{ab2p-unblock-elem-R1018} \ -} -# @@||adtech.de/apps/*.swf?targettag=$object,domain=cartoonnetworkasia.com (easylistchina+easylist.txt: 58317) -.adtech.de/apps/.*\.swf\?targettag= -# @@||adtech.de/apps/*.swf?targettag=$object,domain=cartoonnetworkasia.com (easylist.txt: 47832) -.adtech.de/apps/.*\.swf\?targettag= - -#ab2p-unblock-elem-R1019 -{+client-header-tagger{ab2p-unblock-elem-R1019} \ -} -# @@||ads.avazu.net^$subdocument,domain=casadossegredos.tv|xuuby.com (easylistchina+easylist.txt: 60009) -.ads.avazu.net -# @@||ads.avazu.net^$subdocument,domain=casadossegredos.tv|xuuby.com (easylist.txt: 49524) -.ads.avazu.net - -#ab2p-unblock-elem-R1020 -{+client-header-tagger{ab2p-unblock-elem-R1020} \ -} -# @@.com/banners/$image,domain=catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|sianevents.com|travelplus.com (easylistchina+easylist.txt: 58098) -/.*\.com/banners/ -.*.com/banners/ -# @@.com/banners/$image,domain=catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|sianevents.com|travelplus.com (easylist.txt: 47613) -/.*\.com/banners/ -.*.com/banners/ - -#ab2p-unblock-elem-R1021 -{+client-header-tagger{ab2p-unblock-elem-R1021} \ -} -# @@||linksynergy.com/fs/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59093) -.linksynergy.com/fs/banners/ -# @@||linksynergy.com/fs-bin/show?id=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59092) -.linksynergy.com/fs-bin/show\?id= -# @@||apmebf.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58418) -.apmebf.com -# @@.com/b/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58097) -/.*\.com/b/ -.*.com/b/ -# @@||linksynergy.com/fs/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48608) -.linksynergy.com/fs/banners/ -# @@||linksynergy.com/fs-bin/show?id=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48607) -.linksynergy.com/fs-bin/show\?id= -# @@||apmebf.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47933) -.apmebf.com -# @@.com/b/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47612) -/.*\.com/b/ -.*.com/b/ - -#ab2p-unblock-elem-R1022 -{+client-header-tagger{ab2p-unblock-elem-R1022} \ -} -# @@_120x60_$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 61304) -/.*_120x60_ -# @@_120x60_$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 50819) -/.*_120x60_ - -#ab2p-unblock-elem-R1023 -{+client-header-tagger{ab2p-unblock-elem-R1023} \ -} -# @@_120_60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61302) -/.*_120_60\. -# @@-120x60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61301) -/.*-120x60\. -.*-120x60.*. -# @@-120x60-$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61300) -/.*-120x60- -.*-120x60-*. -# @@||yoox.com/img//banner/affiliation/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59857) -.yoox.com/img//banner/affiliation/ -# @@||shopmanhattanite.com/affiliatebanners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59531) -.shopmanhattanite.com/affiliatebanners/ -# @@||shareasale.com/image/$domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59527) -.shareasale.com/image/ -# @@||rover.ebay.com^*&size=120x60&$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59470) -.rover.ebay.com/.*&size=120x60& -# @@||rogersmagazines.com/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59465) -.rogersmagazines.com/ads/ -# @@||pntrs.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59395) -.pntrs.com -# @@||paulfredrick.com/csimages/affiliate/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59349) -.paulfredrick.com/csimages/affiliate/banners/ -# @@||lovemybubbles.com/images/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59113) -.lovemybubbles.com/images/ads/ -# @@||linkshare.iregdev.com/images/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59091) -.linkshare.iregdev.com/images/ -# @@||linkconnector.com/traffic_record.php?lc=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59089) -.linkconnector.com/traffic_record\.php\?lc= -# @@||gan.doubleclick.net/gan_impression?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58867) -.gan.doubleclick.net/gan_impression\?lid= -# @@||doubleclick.net/ad/*.linkshare/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58691) -.doubleclick.net/ad/.*\.linkshare/ -# @@||cc-dt.com/link/tplimage?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58555) -.cc-dt.com/link/tplimage\?lid= -# @@||campingworld.com/images/AffiliateAds/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58540) -.campingworld.com/images/AffiliateAds/ -# @@||akamai.net^*/pics.drugstore.com/prodimg/promo/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58376) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# @@||affiliates.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58359) -.affiliates.*. -# @@||affiliate.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58355) -.affiliate.*. -# @@/display-ad/*$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58107) -/(.*/)?display-ad/.* -# @@_120_60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50817) -/.*_120_60\. -# @@-120x60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50816) -/.*-120x60\. -.*-120x60.*. -# @@-120x60-$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50815) -/.*-120x60- -.*-120x60-*. -# @@||yoox.com/img//banner/affiliation/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49372) -.yoox.com/img//banner/affiliation/ -# @@||shopmanhattanite.com/affiliatebanners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49046) -.shopmanhattanite.com/affiliatebanners/ -# @@||shareasale.com/image/$domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49042) -.shareasale.com/image/ -# @@||rover.ebay.com^*&size=120x60&$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48985) -.rover.ebay.com/.*&size=120x60& -# @@||rogersmagazines.com/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48980) -.rogersmagazines.com/ads/ -# @@||pntrs.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48910) -.pntrs.com -# @@||paulfredrick.com/csimages/affiliate/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48864) -.paulfredrick.com/csimages/affiliate/banners/ -# @@||lovemybubbles.com/images/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48628) -.lovemybubbles.com/images/ads/ -# @@||linkshare.iregdev.com/images/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48606) -.linkshare.iregdev.com/images/ -# @@||linkconnector.com/traffic_record.php?lc=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48604) -.linkconnector.com/traffic_record\.php\?lc= -# @@||gan.doubleclick.net/gan_impression?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48382) -.gan.doubleclick.net/gan_impression\?lid= -# @@||doubleclick.net/ad/*.linkshare/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48206) -.doubleclick.net/ad/.*\.linkshare/ -# @@||cc-dt.com/link/tplimage?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48070) -.cc-dt.com/link/tplimage\?lid= -# @@||campingworld.com/images/AffiliateAds/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48055) -.campingworld.com/images/AffiliateAds/ -# @@||akamai.net^*/pics.drugstore.com/prodimg/promo/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47891) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# @@||affiliates.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47874) -.affiliates.*. -# @@||affiliate.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47870) -.affiliate.*. -# @@/display-ad/*$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47622) -/(.*/)?display-ad/.* - -#ab2p-unblock-elem-R1024 -{+client-header-tagger{ab2p-unblock-elem-R1024} \ -} -# @@||theplatform.com/current/pdk/js/plugins/doubleclick.js$domain=cbc.ca (easylistchina+easylist.txt: 59648) -.theplatform.com/current/pdk/js/plugins/doubleclick\.js -# @@||2mdn.net/instream/video/client.js$domain=cbc.ca (easylistchina+easylist.txt: 58124) -.2mdn.net/instream/video/client\.js -# @@||theplatform.com/current/pdk/js/plugins/doubleclick.js$domain=cbc.ca (easylist.txt: 49163) -.theplatform.com/current/pdk/js/plugins/doubleclick\.js -# @@||2mdn.net/instream/video/client.js$domain=cbc.ca (easylist.txt: 47639) -.2mdn.net/instream/video/client\.js - -#ab2p-unblock-elem-R137 -{+client-header-tagger{ab2p-unblock-elem-R137} \ -} -# @@||ureoal.com^$script,domain=cbs.com (easylistchina+easylist.txt: 60849) -.ureoal.com -# @@||rackcdn.com^$image,object-subrequest,script,domain=cbs.com (easylistchina+easylist.txt: 60683) -.rackcdn.com -# @@||poreil.com^$domain=cbs.com (easylistchina+easylist.txt: 60659) -.poreil.com -# @@||g.doubleclick.net/gampad/ads?ad%5Frule=0&$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60324) -.g.doubleclick.net/gampad/ads\?ad%5Frule=0& -# @@||dialde.com^$domain=cbs.com (easylistchina+easylist.txt: 60212) -.dialde.com -# @@||alidw.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60050) -.alidw.net -# @@||alidv.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60049) -.alidv.net -# @@||aildu.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60046) -.aildu.net -# @@||ailde.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60045) -.ailde.net -# @@||aidinge.com^$image,domain=cbs.com (easylistchina+easylist.txt: 60044) -.aidinge.com -# @@||2mdn.net/instream/flash/v3/adsapi_$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59964) -.2mdn.net/instream/flash/v3/adsapi_ -# @@|http://l.$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59958) -l.*. -# @@|http://d.$script,domain=cbs.com (easylistchina+easylist.txt: 59957) -d.*. -# @@|http://*?_$image,domain=cbs.com (easylistchina+easylist.txt: 59956) -/.*\?_ -# @@|http://*/pubads.$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59955) -/(.*/)?pubads\. -# @@|http://*.xyz^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59954) -/.*\.xyz[^\w%.-] -.*.xyz -# @@|http://*.pw^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59952) -/.*\.pw[^\w%.-] -.*.pw -# @@|http://*.net^*.js|$third-party,domain=cbs.com (easylistchina+easylist.txt: 59951) -/.*\.net[^\w%.-].*\.js$ -.*.net/.*\.js$ -# @@|http://*.net^*.bmp|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59950) -/.*\.net[^\w%.-].*\.bmp$ -.*.net/.*\.bmp$ -# @@|http://*.js|$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59949) -/.*\.js$ -.*.js -# @@|http://*.jpg?$image,domain=cbs.com (easylistchina+easylist.txt: 59947) -/.*\.jpg\? -# @@|http://*.com^*.js|$third-party,domain=cbs.com (easylistchina+easylist.txt: 59946) -/.*\.com[^\w%.-].*\.js$ -.*.com/.*\.js$ -# @@|http://*.co^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59945) -/.*\.co[^\w%.-] -.*.co -# @@/searchad.$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59932) -/(.*/)?searchad\. -searchad.*. -# @@/pubads.png$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59931) -/(.*/)?pubads\.png -pubads.png*. -# @@/pubads.jpeg$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59930) -/(.*/)?pubads\.jpeg -pubads.jpeg*. -# @@/adFunctionsD-cbs.js$domain=cbs.com (easylistchina+easylist.txt: 59916) -/(.*/)?adFunctionsD-cbs\.js -adFunctionsD-cbs.js*. -# @@.streamads.js$third-party,domain=cbs.com (easylistchina+easylist.txt: 59910) -/.*\.streamads\.js -.*.streamads.js*. -# @@.png^$image,domain=cbs.com (easylistchina+easylist.txt: 59908) -/.*\.png[^\w%.-] -.*.png -# @@.mobi/$script,domain=cbs.com (easylistchina+easylist.txt: 59903) -/.*\.mobi/ -.*.mobi -# @@.link/$script,domain=cbs.com (easylistchina+easylist.txt: 59901) -/.*\.link/ -.*.link -# @@.jscript|$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59900) -/.*\.jscript$ -.*.jscript -# @@.jpg|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59899) -/.*\.jpg$ -.*.jpg -# @@.jpeg|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59896) -/.*\.jpeg$ -.*.jpeg -# @@.info^$image,script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59893) -/.*\.info[^\w%.-] -.*.info -# @@.gif|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59891) -/.*\.gif$ -.*.gif -# @@.click/$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59885) -/.*\.click/ -.*.click -# @@.bmp^$image,domain=cbs.com (easylistchina+easylist.txt: 59884) -/.*\.bmp[^\w%.-] -.*.bmp -# @@.audio/$script,domain=cbs.com (easylistchina+easylist.txt: 59883) -/.*\.audio/ -.*.audio -# @@||innovid.com^*/VPAIDEXIRollPackage.swf$domain=cbs.com (easylistchina+easylist.txt: 59013) -.innovid.com/.*/VPAIDEXIRollPackage\.swf -# @@||innovid.com/iroll/package/iab-vpaid-ex/$domain=cbs.com (easylistchina+easylist.txt: 59011) -.innovid.com/iroll/package/iab-vpaid-ex/ -# @@||ureoal.com^$script,domain=cbs.com (easylist.txt: 50364) -.ureoal.com -# @@||rackcdn.com^$image,object-subrequest,script,domain=cbs.com (easylist.txt: 50198) -.rackcdn.com -# @@||poreil.com^$domain=cbs.com (easylist.txt: 50174) -.poreil.com -# @@||g.doubleclick.net/gampad/ads?ad%5Frule=0&$object-subrequest,domain=cbs.com (easylist.txt: 49839) -.g.doubleclick.net/gampad/ads\?ad%5Frule=0& -# @@||dialde.com^$domain=cbs.com (easylist.txt: 49727) -.dialde.com -# @@||alidw.net^$object-subrequest,domain=cbs.com (easylist.txt: 49565) -.alidw.net -# @@||alidv.net^$object-subrequest,domain=cbs.com (easylist.txt: 49564) -.alidv.net -# @@||aildu.net^$object-subrequest,domain=cbs.com (easylist.txt: 49561) -.aildu.net -# @@||ailde.net^$object-subrequest,domain=cbs.com (easylist.txt: 49560) -.ailde.net -# @@||aidinge.com^$image,domain=cbs.com (easylist.txt: 49559) -.aidinge.com -# @@||2mdn.net/instream/flash/v3/adsapi_$object-subrequest,domain=cbs.com (easylist.txt: 49479) -.2mdn.net/instream/flash/v3/adsapi_ -# @@|http://l.$script,third-party,domain=cbs.com (easylist.txt: 49473) -l.*. -# @@|http://d.$script,domain=cbs.com (easylist.txt: 49472) -d.*. -# @@|http://*?_$image,domain=cbs.com (easylist.txt: 49471) -/.*\?_ -# @@|http://*/pubads.$object-subrequest,domain=cbs.com (easylist.txt: 49470) -/(.*/)?pubads\. -# @@|http://*.xyz^$script,third-party,domain=cbs.com (easylist.txt: 49469) -/.*\.xyz[^\w%.-] -.*.xyz -# @@|http://*.pw^$script,third-party,domain=cbs.com (easylist.txt: 49467) -/.*\.pw[^\w%.-] -.*.pw -# @@|http://*.net^*.js|$third-party,domain=cbs.com (easylist.txt: 49466) -/.*\.net[^\w%.-].*\.js$ -.*.net/.*\.js$ -# @@|http://*.net^*.bmp|$object-subrequest,domain=cbs.com (easylist.txt: 49465) -/.*\.net[^\w%.-].*\.bmp$ -.*.net/.*\.bmp$ -# @@|http://*.js|$script,third-party,domain=cbs.com (easylist.txt: 49464) -/.*\.js$ -.*.js -# @@|http://*.jpg?$image,domain=cbs.com (easylist.txt: 49462) -/.*\.jpg\? -# @@|http://*.com^*.js|$third-party,domain=cbs.com (easylist.txt: 49461) -/.*\.com[^\w%.-].*\.js$ -.*.com/.*\.js$ -# @@|http://*.co^$script,third-party,domain=cbs.com (easylist.txt: 49460) -/.*\.co[^\w%.-] -.*.co -# @@/searchad.$object-subrequest,domain=cbs.com (easylist.txt: 49447) -/(.*/)?searchad\. -searchad.*. -# @@/pubads.png$object-subrequest,domain=cbs.com (easylist.txt: 49446) -/(.*/)?pubads\.png -pubads.png*. -# @@/pubads.jpeg$object-subrequest,domain=cbs.com (easylist.txt: 49445) -/(.*/)?pubads\.jpeg -pubads.jpeg*. -# @@/adFunctionsD-cbs.js$domain=cbs.com (easylist.txt: 49431) -/(.*/)?adFunctionsD-cbs\.js -adFunctionsD-cbs.js*. -# @@.streamads.js$third-party,domain=cbs.com (easylist.txt: 49425) -/.*\.streamads\.js -.*.streamads.js*. -# @@.png^$image,domain=cbs.com (easylist.txt: 49423) -/.*\.png[^\w%.-] -.*.png -# @@.mobi/$script,domain=cbs.com (easylist.txt: 49418) -/.*\.mobi/ -.*.mobi -# @@.link/$script,domain=cbs.com (easylist.txt: 49416) -/.*\.link/ -.*.link -# @@.jscript|$script,third-party,domain=cbs.com (easylist.txt: 49415) -/.*\.jscript$ -.*.jscript -# @@.jpg|$object-subrequest,domain=cbs.com (easylist.txt: 49414) -/.*\.jpg$ -.*.jpg -# @@.jpeg|$object-subrequest,domain=cbs.com (easylist.txt: 49411) -/.*\.jpeg$ -.*.jpeg -# @@.info^$image,script,third-party,domain=cbs.com (easylist.txt: 49408) -/.*\.info[^\w%.-] -.*.info -# @@.gif|$object-subrequest,domain=cbs.com (easylist.txt: 49406) -/.*\.gif$ -.*.gif -# @@.click/$script,third-party,domain=cbs.com (easylist.txt: 49400) -/.*\.click/ -.*.click -# @@.bmp^$image,domain=cbs.com (easylist.txt: 49399) -/.*\.bmp[^\w%.-] -.*.bmp -# @@.audio/$script,domain=cbs.com (easylist.txt: 49398) -/.*\.audio/ -.*.audio -# @@||innovid.com^*/VPAIDEXIRollPackage.swf$domain=cbs.com (easylist.txt: 48528) -.innovid.com/.*/VPAIDEXIRollPackage\.swf -# @@||innovid.com/iroll/package/iab-vpaid-ex/$domain=cbs.com (easylist.txt: 48526) -.innovid.com/iroll/package/iab-vpaid-ex/ - -#ab2p-unblock-elem-R1025 -{+client-header-tagger{ab2p-unblock-elem-R1025} \ -} -# @@|https://$script,third-party,domain=cbs.com|eventhubs.com (easylistchina+easylist.txt: 59960) -# @@|https://$script,third-party,domain=cbs.com|eventhubs.com (easylist.txt: 49475) - -#ab2p-unblock-elem-R1026 -{+client-header-tagger{ab2p-unblock-elem-R1026} \ -} -# @@||g.doubleclick.net/|$object-subrequest,domain=cbs.com|planetfools.com|televisiondiv.ucoz.com (easylistchina+easylist.txt: 60329) -.g.doubleclick.net/$ -# @@||g.doubleclick.net/|$object-subrequest,domain=cbs.com|planetfools.com|televisiondiv.ucoz.com (easylist.txt: 49844) -.g.doubleclick.net/$ - -#ab2p-unblock-elem-R1027 -{+client-header-tagger{ab2p-unblock-elem-R1027} \ -} -# @@.javascript|$domain=cbsnews.com (easylistchina+easylist.txt: 59895) -/.*\.javascript$ -.*.javascript -# @@.javascript|$domain=cbsnews.com (easylist.txt: 49410) -/.*\.javascript$ -.*.javascript - -#ab2p-unblock-elem-R1028 -{+client-header-tagger{ab2p-unblock-elem-R1028} \ -} -# @@||i.com.com^*/adfunctionsd-*.js$domain=cbsnews.com|cbssports.com|cnettv.cnet.com|metacritic.com|tv.com|twitch.tv (easylistchina+easylist.txt: 58963) -.i.com.com/.*/adfunctionsd-.*\.js -# @@||i.com.com^*/adfunctionsd-*.js$domain=cbsnews.com|cbssports.com|cnettv.cnet.com|metacritic.com|tv.com|twitch.tv (easylist.txt: 48478) -.i.com.com/.*/adfunctionsd-.*\.js - -#ab2p-unblock-elem-R1029 -{+client-header-tagger{ab2p-unblock-elem-R1029} \ -} -# @@.javascript?$script,third-party,domain=cbsnews.com|colbertlateshow.com (easylistchina+easylist.txt: 59894) -/.*\.javascript\? -# @@.javascript?$script,third-party,domain=cbsnews.com|colbertlateshow.com (easylist.txt: 49409) -/.*\.javascript\? - -#ab2p-unblock-elem-R1030 -{+client-header-tagger{ab2p-unblock-elem-R1030} \ -} -# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina+easylist.txt: 10015) -/(.*/)?advert/.* - -#ab2p-unblock-elem-R143 -{+client-header-tagger{ab2p-unblock-elem-R143} \ -} -# @@||tidaltv.com/tpas*.aspx?*&rand=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60805) -.tidaltv.com/tpas.*\.aspx\?.*&rand=\[ -# @@||tidaltv.com/ILogger.aspx?*&adId=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60804) -.tidaltv.com/ILogger\.aspx\?.*&adId=\[ -# @@||innovid.com^*/VPAIDIRollPackage.swf$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60420) -.innovid.com/.*/VPAIDIRollPackage\.swf -# @@||innovid.com/iroll/config/*.xml?cb=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60419) -.innovid.com/iroll/config/.*\.xml\?cb=\[ -# @@||innovid.com/1x1.gif?$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60418) -.innovid.com/1x1\.gif\? -# @@||ad-emea.doubleclick.net/crossdomain.xml$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 59980) -.ad-emea.doubleclick.net/crossdomain\.xml -# @@||ad-emea.doubleclick.net/ad/*.CHANNEL41/*;sz=1x1;$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 59979) -.ad-emea.doubleclick.net/ad/.*\.CHANNEL41/.*;sz=1x1; -# @@||tidaltv.com/tpas*.aspx?*&rand=[$object-subrequest,domain=channel4.com (easylist.txt: 50320) -.tidaltv.com/tpas.*\.aspx\?.*&rand=\[ -# @@||tidaltv.com/ILogger.aspx?*&adId=[$object-subrequest,domain=channel4.com (easylist.txt: 50319) -.tidaltv.com/ILogger\.aspx\?.*&adId=\[ -# @@||innovid.com^*/VPAIDIRollPackage.swf$object-subrequest,domain=channel4.com (easylist.txt: 49935) -.innovid.com/.*/VPAIDIRollPackage\.swf -# @@||innovid.com/iroll/config/*.xml?cb=[$object-subrequest,domain=channel4.com (easylist.txt: 49934) -.innovid.com/iroll/config/.*\.xml\?cb=\[ -# @@||innovid.com/1x1.gif?$object-subrequest,domain=channel4.com (easylist.txt: 49933) -.innovid.com/1x1\.gif\? -# @@||ad-emea.doubleclick.net/crossdomain.xml$object-subrequest,domain=channel4.com (easylist.txt: 49495) -.ad-emea.doubleclick.net/crossdomain\.xml -# @@||ad-emea.doubleclick.net/ad/*.CHANNEL41/*;sz=1x1;$object-subrequest,domain=channel4.com (easylist.txt: 49494) -.ad-emea.doubleclick.net/ad/.*\.CHANNEL41/.*;sz=1x1; - -#ab2p-unblock-elem-R1031 -{+client-header-tagger{ab2p-unblock-elem-R1031} \ -} -# @@||auditude.com^*/auditudebrightcoveplugin.swf$object-subrequest,domain=channel5.com (easylistchina+easylist.txt: 58454) -.auditude.com/.*/auditudebrightcoveplugin\.swf -# @@||auditude.com^*/auditudebrightcoveplugin.swf$object-subrequest,domain=channel5.com (easylist.txt: 47969) -.auditude.com/.*/auditudebrightcoveplugin\.swf - -#ab2p-unblock-elem-R1032 -{+client-header-tagger{ab2p-unblock-elem-R1032} \ -} -# @@||brightcove.com^*/AdvertisingModule.swf$object-subrequest,domain=channel5.com|citytv.com|player.stv.tv|uktv.co.uk|wwe.com (easylistchina+easylist.txt: 60124) -.brightcove.com/.*/AdvertisingModule\.swf -# @@||brightcove.com^*/AdvertisingModule.swf$object-subrequest,domain=channel5.com|citytv.com|player.stv.tv|uktv.co.uk|wwe.com (easylist.txt: 49639) -.brightcove.com/.*/AdvertisingModule\.swf - -#ab2p-unblock-elem-R1033 -{+client-header-tagger{ab2p-unblock-elem-R1033} \ -} -# @@||charlieandmekids.com/www/delivery/$script,domain=charlieandmekids.co.nz|charlieandmekids.com.au (easylistchina+easylist.txt: 58578) -.charlieandmekids.com/www/delivery/ -# @@||charlieandmekids.com/www/delivery/$script,domain=charlieandmekids.co.nz|charlieandmekids.com.au (easylist.txt: 48093) -.charlieandmekids.com/www/delivery/ - -#ab2p-unblock-elem-R1034 -{+client-header-tagger{ab2p-unblock-elem-R1034} \ -} -# @@||rovicorp.com/advertising/*&appver=$xmlhttprequest,domain=charter.net (easylistchina+easylist.txt: 59471) -.rovicorp.com/advertising/.*&appver= -# @@||rovicorp.com/advertising/*&appver=$xmlhttprequest,domain=charter.net (easylist.txt: 48986) -.rovicorp.com/advertising/.*&appver= - -#ab2p-unblock-elem-R1035 -{+client-header-tagger{ab2p-unblock-elem-R1035} \ -} -# @@||revresda.com/js.ng/*&adsize=544x275&$script,domain=cheaptickets.com (easylistchina+easylist.txt: 59460) -.revresda.com/js\.ng/.*&adsize=544x275& -# @@||revresda.com/js.ng/*&adsize=544x275&$script,domain=cheaptickets.com (easylist.txt: 48975) -.revresda.com/js\.ng/.*&adsize=544x275& - -#ab2p-unblock-elem-R1036 -{+client-header-tagger{ab2p-unblock-elem-R1036} \ -} -# @@||revresda.com/event.ng/Type=click&$subdocument,domain=cheaptickets.com|orbitz.com (easylistchina+easylist.txt: 59459) -.revresda.com/event\.ng/Type=click& -# @@||revresda.com/event.ng/Type=click&$subdocument,domain=cheaptickets.com|orbitz.com (easylist.txt: 48974) -.revresda.com/event\.ng/Type=click& - -#ab2p-unblock-elem-R1037 -{+client-header-tagger{ab2p-unblock-elem-R1037} \ -} -# @@||odb.outbrain.com^$script,domain=cheatsheet.com (easylistchina+easylist.txt: 46019) -.odb.outbrain.com -# @@||b.grvcdn.com^$script,domain=cheatsheet.com (easylistchina+easylist.txt: 45952) -.b.grvcdn.com -# @@||odb.outbrain.com^$script,domain=cheatsheet.com (easylist.txt: 35534) -.odb.outbrain.com -# @@||b.grvcdn.com^$script,domain=cheatsheet.com (easylist.txt: 35467) -.b.grvcdn.com - -#ab2p-unblock-elem-R1038 -{+client-header-tagger{ab2p-unblock-elem-R1038} \ -} -# @@||widgets.outbrain.com/outbrain.js$domain=cheatsheet.com|supercheats.com (easylistchina+easylist.txt: 46053) -.widgets.outbrain.com/outbrain\.js -# @@||widgets.outbrain.com/outbrain.js$domain=cheatsheet.com|supercheats.com (easylist.txt: 35568) -.widgets.outbrain.com/outbrain\.js - -#ab2p-unblock-elem-R146 -{+client-header-tagger{ab2p-unblock-elem-R146} \ -} -# @@/sda/weixin$domain=chineseinla.com (easylistchina+easylist.txt: 10054) -/(.*/)?sda/weixin - -#ab2p-unblock-elem-R1039 -{+client-header-tagger{ab2p-unblock-elem-R1039} \ -} -# @@/adlogger_tracker.php$subdocument,domain=chrissmoove.com (easylistchina+easylist.txt: 59917) -/(.*/)?adlogger_tracker\.php -# @@/adlogger_tracker.php$subdocument,domain=chrissmoove.com (easylist.txt: 49432) -/(.*/)?adlogger_tracker\.php - -#ab2p-unblock-elem-R1040 -{+client-header-tagger{ab2p-unblock-elem-R1040} \ -} -# @@||media.salemwebnetwork.com/js/admanager/swfobject.js$domain=christianity.com (easylistchina+easylist.txt: 59155) -.media.salemwebnetwork.com/js/admanager/swfobject\.js -# @@||media.salemwebnetwork.com/js/admanager/swfobject.js$domain=christianity.com (easylist.txt: 48670) -.media.salemwebnetwork.com/js/admanager/swfobject\.js - -#ab2p-unblock-elem-R1041 -{+client-header-tagger{ab2p-unblock-elem-R1041} \ -} -# @@/adfile/*$domain=cidianwang.com (easylistchina+easylist.txt: 10001) -/(.*/)?adfile/.* - -#ab2p-unblock-elem-R1042 -{+client-header-tagger{ab2p-unblock-elem-R1042} \ -} -# @@||screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer.html?type=ADREQUEST&$xmlhttprequest,domain=cinemassacre.com (easylistchina+easylist.txt: 59498) -.screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer\.html\?type=ADREQUEST& -# @@||screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer.html?type=ADREQUEST&$xmlhttprequest,domain=cinemassacre.com (easylist.txt: 49013) -.screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer\.html\?type=ADREQUEST& - -#ab2p-unblock-elem-R1043 -{+client-header-tagger{ab2p-unblock-elem-R1043} \ -} -# @@||s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting.jpg$domain=circusstreet.com (easylistchina+easylist.txt: 59483) -.s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting\.jpg -# @@||s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting.jpg$domain=circusstreet.com (easylist.txt: 48998) -.s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting\.jpg - -#ab2p-unblock-elem-R1044 -{+client-header-tagger{ab2p-unblock-elem-R1044} \ -} -# @@||cloudfront.net/assets/ads_728x90-$script,domain=citationmachine.net (easylistchina+easylist.txt: 58599) -.cloudfront.net/assets/ads_728x90- -# @@||cloudfront.net/assets/ads_728x90-$script,domain=citationmachine.net (easylist.txt: 48114) -.cloudfront.net/assets/ads_728x90- - -#ab2p-unblock-elem-R1045 -{+client-header-tagger{ab2p-unblock-elem-R1045} \ -} -# @@/GFC/branding/*$domain=citi.com|citibank.com (advblock.txt: 7201) -/(.*/)?GFC/branding/.* - -#ab2p-unblock-elem-R1046 -{+client-header-tagger{ab2p-unblock-elem-R1046} \ -} -# @@||rezonence.com/Ads/*/AdCode.js$domain=cityam.com (easylistchina+easylist.txt: 60702) -.rezonence.com/Ads/.*/AdCode\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=cityam.com (easylistchina+easylist.txt: 60637) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=cityam.com (easylistchina+easylist.txt: 60636) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=cityam.com (easylistchina+easylist.txt: 60328) -.g.doubleclick.net/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/ads?*^$script,domain=cityam.com (easylistchina+easylist.txt: 60321) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-] -# @@||ads.pubmatic.com/AdServer/js/showad.js$domain=cityam.com (easylistchina+easylist.txt: 60016) -.ads.pubmatic.com/AdServer/js/showad\.js -# @@/adcode.js$domain=cityam.com (easylistchina+easylist.txt: 59915) -/(.*/)?adcode\.js -adcode.js*. -# @@||rezonence.com/Ads/*/AdCode.js$domain=cityam.com (easylist.txt: 50217) -.rezonence.com/Ads/.*/AdCode\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=cityam.com (easylist.txt: 50152) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=cityam.com (easylist.txt: 50151) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=cityam.com (easylist.txt: 49843) -.g.doubleclick.net/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/ads?*^$script,domain=cityam.com (easylist.txt: 49836) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-] -# @@||ads.pubmatic.com/AdServer/js/showad.js$domain=cityam.com (easylist.txt: 49531) -.ads.pubmatic.com/AdServer/js/showad\.js -# @@/adcode.js$domain=cityam.com (easylist.txt: 49430) -/(.*/)?adcode\.js -adcode.js*. - -#ab2p-unblock-elem-R1047 -{+client-header-tagger{ab2p-unblock-elem-R1047} \ -} -# @@||rogersdigitalmedia.com^*/rdm-ad-util.min.js$domain=citytv.com (easylistchina+easylist.txt: 59464) -.rogersdigitalmedia.com/.*/rdm-ad-util\.min\.js -# @@||rogersdigitalmedia.com^*/rdm-ad-util.min.js$domain=citytv.com (easylist.txt: 48979) -.rogersdigitalmedia.com/.*/rdm-ad-util\.min\.js - -#ab2p-unblock-elem-R1048 -{+client-header-tagger{ab2p-unblock-elem-R1048} \ -} -# @@||adscendmedia.com/gwjs.php?$script,domain=civilization5cheats.com|kzupload.com (easylistchina+easylist.txt: 60021) -.adscendmedia.com/gwjs\.php\? -# @@||adscendmedia.com/gwjs.php?$script,domain=civilization5cheats.com|kzupload.com (easylist.txt: 49536) -.adscendmedia.com/gwjs\.php\? - -#ab2p-unblock-elem-R1049 -{+client-header-tagger{ab2p-unblock-elem-R1049} \ -} -# @@||mns.com/ad/$domain=classifieds.nydailynews.com (easylistchina+easylist.txt: 59182) -.mns.com/ad/ -# @@||comboadmedia.adperfect.com^$domain=classifieds.nydailynews.com (easylistchina+easylist.txt: 58607) -.comboadmedia.adperfect.com -# @@||mns.com/ad/$domain=classifieds.nydailynews.com (easylist.txt: 48697) -.mns.com/ad/ -# @@||comboadmedia.adperfect.com^$domain=classifieds.nydailynews.com (easylist.txt: 48122) -.comboadmedia.adperfect.com - -#ab2p-unblock-elem-R1050 -{+client-header-tagger{ab2p-unblock-elem-R1050} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$domain=cleodesktop.com|mugiwaranofansub.blogspot.com.ar|musicacelestial.net (easylistchina+easylist.txt: 60626) -.pagead2.googlesyndication.com/pagead/js/google_top_exp\.js -# @@||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$domain=cleodesktop.com|mugiwaranofansub.blogspot.com.ar|musicacelestial.net (easylist.txt: 50141) -.pagead2.googlesyndication.com/pagead/js/google_top_exp\.js - -#ab2p-unblock-elem-R1051 -{+client-header-tagger{ab2p-unblock-elem-R1051} \ -} -# @@||openx.net/w/1.0/jstag$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60615) -.openx.net/w/1\.0/jstag -# @@||openx.net/w/1.0/acj?$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60614) -.openx.net/w/1\.0/acj\? -# @@||exponential.com/tags/ClubeDoHardwarecombr/ROS/tags.js$domain=clubedohardware.com.br (easylistchina+easylist.txt: 60264) -.exponential.com/tags/ClubeDoHardwarecombr/ROS/tags\.js -# @@||criteo.com/delivery/ajs.php?zoneid=$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60192) -.criteo.com/delivery/ajs\.php\?zoneid= -# @@||caspion.com/cas.js$domain=clubedohardware.com.br (easylistchina+easylist.txt: 60136) -.caspion.com/cas\.js -# @@||openx.net/w/1.0/jstag$script,domain=clubedohardware.com.br (easylist.txt: 50130) -.openx.net/w/1\.0/jstag -# @@||openx.net/w/1.0/acj?$script,domain=clubedohardware.com.br (easylist.txt: 50129) -.openx.net/w/1\.0/acj\? -# @@||exponential.com/tags/ClubeDoHardwarecombr/ROS/tags.js$domain=clubedohardware.com.br (easylist.txt: 49779) -.exponential.com/tags/ClubeDoHardwarecombr/ROS/tags\.js -# @@||criteo.com/delivery/ajs.php?zoneid=$script,domain=clubedohardware.com.br (easylist.txt: 49707) -.criteo.com/delivery/ajs\.php\?zoneid= -# @@||caspion.com/cas.js$domain=clubedohardware.com.br (easylist.txt: 49651) -.caspion.com/cas\.js - -#ab2p-unblock-elem-R1052 -{+client-header-tagger{ab2p-unblock-elem-R1052} \ -} -# @@||tribalfusion.com/j.ad?$script,domain=clubedohardware.com.br|yellowbridge.com (easylistchina+easylist.txt: 60815) -.tribalfusion.com/j\.ad\? -# @@||tribalfusion.com/displayAd.js?$domain=clubedohardware.com.br|yellowbridge.com (easylistchina+easylist.txt: 60814) -.tribalfusion.com/displayAd\.js\? -# @@||tribalfusion.com/j.ad?$script,domain=clubedohardware.com.br|yellowbridge.com (easylist.txt: 50330) -.tribalfusion.com/j\.ad\? -# @@||tribalfusion.com/displayAd.js?$domain=clubedohardware.com.br|yellowbridge.com (easylist.txt: 50329) -.tribalfusion.com/displayAd\.js\? - -#ab2p-unblock-elem-R1053 -{+client-header-tagger{ab2p-unblock-elem-R1053} \ -} -# @@||healthcare.gov/global/images/widgets/him/$domain=cms.gov (easylistchina+easylist.txt: 58934) -.healthcare.gov/global/images/widgets/him/ -# @@||healthcare.gov/global/images/widgets/him/$domain=cms.gov (easylist.txt: 48449) -.healthcare.gov/global/images/widgets/him/ - -#ab2p-unblock-elem-R1054 -{+client-header-tagger{ab2p-unblock-elem-R1054} \ -} -# @@||adm.fwmrm.net^*/videoadrenderer.$object-subrequest,domain=cnbc.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|go.com|nbc.com (easylistchina+easylist.txt: 58207) -.adm.fwmrm.net/.*/videoadrenderer\. -# @@||adm.fwmrm.net^*/videoadrenderer.$object-subrequest,domain=cnbc.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|go.com|nbc.com (easylist.txt: 47722) -.adm.fwmrm.net/.*/videoadrenderer\. - -#ab2p-unblock-elem-R1055 -{+client-header-tagger{ab2p-unblock-elem-R1055} \ -} -# @@||cbsistatic.com/fly/bundles/cnetjs/$script,domain=cnet.com (easylistchina+easylist.txt: 60139) -.cbsistatic.com/fly/bundles/cnetjs/ -# @@||cbsistatic.com^*/js/plugins/doubleclick.js$domain=cnet.com (easylistchina+easylist.txt: 58552) -.cbsistatic.com/.*/js/plugins/doubleclick\.js -# @@||cbsistatic.com/fly/bundles/cnetjs/$script,domain=cnet.com (easylist.txt: 49654) -.cbsistatic.com/fly/bundles/cnetjs/ -# @@||cbsistatic.com^*/js/plugins/doubleclick.js$domain=cnet.com (easylist.txt: 48067) -.cbsistatic.com/.*/js/plugins/doubleclick\.js - -#ab2p-unblock-elem-R1056 -{+client-header-tagger{ab2p-unblock-elem-R1056} \ -} -# @@||cbsistatic.com/cnwk.1d/ads/common/manta/adfunctions*.js$domain=cnettv.cnet.com (easylistchina+easylist.txt: 58551) -.cbsistatic.com/cnwk\.1d/ads/common/manta/adfunctions.*\.js -# @@||cbsistatic.com/cnwk.1d/ads/common/manta/adfunctions*.js$domain=cnettv.cnet.com (easylist.txt: 48066) -.cbsistatic.com/cnwk\.1d/ads/common/manta/adfunctions.*\.js - -#ab2p-unblock-elem-R1057 -{+client-header-tagger{ab2p-unblock-elem-R1057} \ -} -# @@||condenast.co.uk/scripts/cn-advert.js$domain=cntraveller.com (easylistchina+easylist.txt: 58613) -.condenast.co.uk/scripts/cn-advert\.js -# @@||condenast.co.uk/scripts/cn-advert.js$domain=cntraveller.com (easylist.txt: 48128) -.condenast.co.uk/scripts/cn-advert\.js - -#ab2p-unblock-elem-R1058 -{+client-header-tagger{ab2p-unblock-elem-R1058} \ -} -# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina+easylist.txt: 10331) -.pos.baidu.com/acom\?di= -# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina+easylist.txt: 10047) -/(.*/)?js/ad_test\.js - -#ab2p-unblock-elem-R1059 -{+client-header-tagger{ab2p-unblock-elem-R1059} \ -} -# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina+easylist.txt: 10199) -.cbjs.baidu.com/js/m\.js - -#ab2p-unblock-elem-R1060 -{+client-header-tagger{ab2p-unblock-elem-R1060} \ -} -# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina+easylist.txt: 10191) -.cb.baidu.com/ecom\? - -#ab2p-unblock-elem-R1061 -{+client-header-tagger{ab2p-unblock-elem-R1061} \ -} -# @@||promo2.tubemogul.com/lib/tubemoguldisplaylib.js$domain=comedy.com (easylistchina+easylist.txt: 59414) -.promo2.tubemogul.com/lib/tubemoguldisplaylib\.js -# @@||promo2.tubemogul.com/flash/youtube.swf$domain=comedy.com (easylistchina+easylist.txt: 59413) -.promo2.tubemogul.com/flash/youtube\.swf -# @@||promo2.tubemogul.com/adtags/slim_no_iframe.js$domain=comedy.com (easylistchina+easylist.txt: 59412) -.promo2.tubemogul.com/adtags/slim_no_iframe\.js -# @@||app.promo.tubemogul.com/feed/placement.html?id=$script,domain=comedy.com (easylistchina+easylist.txt: 58420) -.app.promo.tubemogul.com/feed/placement\.html\?id= -# @@||promo2.tubemogul.com/lib/tubemoguldisplaylib.js$domain=comedy.com (easylist.txt: 48929) -.promo2.tubemogul.com/lib/tubemoguldisplaylib\.js -# @@||promo2.tubemogul.com/flash/youtube.swf$domain=comedy.com (easylist.txt: 48928) -.promo2.tubemogul.com/flash/youtube\.swf -# @@||promo2.tubemogul.com/adtags/slim_no_iframe.js$domain=comedy.com (easylist.txt: 48927) -.promo2.tubemogul.com/adtags/slim_no_iframe\.js -# @@||app.promo.tubemogul.com/feed/placement.html?id=$script,domain=comedy.com (easylist.txt: 47935) -.app.promo.tubemogul.com/feed/placement\.html\?id= - -#ab2p-unblock-elem-R1062 -{+client-header-tagger{ab2p-unblock-elem-R1062} \ -} -# @@||gorillanation.com/storage/lightbox_code/static/companion_ads.js$domain=comingsoon.net|gamerevolution.com|sohh.com (easylistchina+easylist.txt: 58917) -.gorillanation.com/storage/lightbox_code/static/companion_ads\.js -# @@||gorillanation.com/storage/lightbox_code/static/companion_ads.js$domain=comingsoon.net|gamerevolution.com|sohh.com (easylist.txt: 48432) -.gorillanation.com/storage/lightbox_code/static/companion_ads\.js - -#ab2p-unblock-elem-R1063 -{+client-header-tagger{ab2p-unblock-elem-R1063} \ -} -# @@||pressdns.com/wp-content/$image,script,third-party,domain=conservativeintel.com (easylistchina+easylist.txt: 46030) -.pressdns.com/wp-content/ -# @@||conservativeintelcom.c.presscdn.com^$image,script,third-party,domain=conservativeintel.com (easylistchina+easylist.txt: 45965) -.conservativeintelcom.c.presscdn.com -# @@||pressdns.com/wp-content/$image,script,third-party,domain=conservativeintel.com (easylist.txt: 35545) -.pressdns.com/wp-content/ -# @@||conservativeintelcom.c.presscdn.com^$image,script,third-party,domain=conservativeintel.com (easylist.txt: 35480) -.conservativeintelcom.c.presscdn.com - -#ab2p-unblock-elem-R1064 -{+client-header-tagger{ab2p-unblock-elem-R1064} \ -} -# @@||yumenetworks.com/dynamic_preroll_playlist.vast2xml$domain=contv.com (easylistchina+easylist.txt: 59868) -.yumenetworks.com/dynamic_preroll_playlist\.vast2xml -# @@||yumenetworks.com/dynamic_preroll_playlist.vast2xml$domain=contv.com (easylist.txt: 49383) -.yumenetworks.com/dynamic_preroll_playlist\.vast2xml - -#ab2p-unblock-elem-R1065 -{+client-header-tagger{ab2p-unblock-elem-R1065} \ -} -# @@||doubleclick.net/ddm/clk/$popup,domain=couponcodeswap.com (easylistchina+easylist.txt: 61410) -.doubleclick.net/ddm/clk/ -# @@||doubleclick.net/ddm/clk/$popup,domain=couponcodeswap.com (easylist.txt: 50925) -.doubleclick.net/ddm/clk/ - -#ab2p-unblock-elem-R1066 -{+client-header-tagger{ab2p-unblock-elem-R1066} \ -} -# @@||ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid.swf?*&ad_type=$object-subrequest,domain=cricketcountry.com (easylistchina+easylist.txt: 59750) -.ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid\.swf\?.*&ad_type= -# @@||ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid.swf?*&ad_type=$object-subrequest,domain=cricketcountry.com (easylist.txt: 49265) -.ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid\.swf\?.*&ad_type= - -#ab2p-unblock-elem-R1067 -{+client-header-tagger{ab2p-unblock-elem-R1067} \ -} -# @@||serving-sys.com/SemiCachedScripts/$domain=cricketwireless.com (easylistchina+easylist.txt: 59520) -.serving-sys.com/SemiCachedScripts/ -# @@||serving-sys.com/SemiCachedScripts/$domain=cricketwireless.com (easylist.txt: 49035) -.serving-sys.com/SemiCachedScripts/ - -#ab2p-unblock-elem-R1068 -{+client-header-tagger{ab2p-unblock-elem-R1068} \ -} -# @@||adfox.ru^$image,popup,script,domain=ctc.ru|mts.ru|ozon.ru|tnt-online.ru|videomore.ru (advblock.txt: 7225) -.adfox.ru - -#ab2p-unblock-elem-R1069 -{+client-header-tagger{ab2p-unblock-elem-R1069} \ -} -# @@||smartadserver.com/call/pubj/*/8596/s/*/?$script,domain=cuantarazon.com|cuantocabron.com|vistoenfb.com (easylistchina+easylist.txt: 59544) -.smartadserver.com/call/pubj/.*/8596/s/.*/\? -# @@||smartadserver.com/call/pubj/*/8596/s/*/?$script,domain=cuantarazon.com|cuantocabron.com|vistoenfb.com (easylist.txt: 49059) -.smartadserver.com/call/pubj/.*/8596/s/.*/\? - -#ab2p-unblock-elem-R1070 -{+client-header-tagger{ab2p-unblock-elem-R1070} \ -} -# @@||openx.org/ck.php?$subdocument,domain=cubeecraft.com (easylistchina+easylist.txt: 59304) -.openx.org/ck\.php\? -# @@||openx.org/afr.php?$subdocument,domain=cubeecraft.com (easylistchina+easylist.txt: 59302) -.openx.org/afr\.php\? -# @@||openx.org/ck.php?$subdocument,domain=cubeecraft.com (easylist.txt: 48819) -.openx.org/ck\.php\? -# @@||openx.org/afr.php?$subdocument,domain=cubeecraft.com (easylist.txt: 48817) -.openx.org/afr\.php\? - -#ab2p-unblock-elem-R1071 -{+client-header-tagger{ab2p-unblock-elem-R1071} \ -} -# @@||g.doubleclick.net/gampad/ads?^*&sz=970x90%7C728x90^$xmlhttprequest,domain=cwtv.com (easylistchina+easylist.txt: 60323) -.g.doubleclick.net/gampad/ads\?[^\w%.-].*&sz=970x90%7C728x90[^\w%.-] -# @@||amazonaws.com/*.js$domain=cwtv.com (easylistchina+easylist.txt: 60053) -.amazonaws.com/.*\.js -# @@||ad.doubleclick.net/|$image,domain=cwtv.com (easylistchina+easylist.txt: 59981) -.ad.doubleclick.net/$ -# @@||g.doubleclick.net/gampad/ads?^*&sz=970x90%7C728x90^$xmlhttprequest,domain=cwtv.com (easylist.txt: 49838) -.g.doubleclick.net/gampad/ads\?[^\w%.-].*&sz=970x90%7C728x90[^\w%.-] -# @@||amazonaws.com/*.js$domain=cwtv.com (easylist.txt: 49568) -.amazonaws.com/.*\.js -# @@||ad.doubleclick.net/|$image,domain=cwtv.com (easylist.txt: 49496) -.ad.doubleclick.net/$ - -#ab2p-unblock-elem-R1072 -{+client-header-tagger{ab2p-unblock-elem-R1072} \ -} -# @@||resources.infolinks.com/js/infolinks_main.js$domain=cyberdevilz.net (easylistchina+easylist.txt: 60700) -.resources.infolinks.com/js/infolinks_main\.js -# @@||resources.infolinks.com/js/*/ice.js$domain=cyberdevilz.net (easylistchina+easylist.txt: 60699) -.resources.infolinks.com/js/.*/ice\.js -# @@||resources.infolinks.com/js/infolinks_main.js$domain=cyberdevilz.net (easylist.txt: 50215) -.resources.infolinks.com/js/infolinks_main\.js -# @@||resources.infolinks.com/js/*/ice.js$domain=cyberdevilz.net (easylist.txt: 50214) -.resources.infolinks.com/js/.*/ice\.js - -#ab2p-unblock-elem-R1073 -{+client-header-tagger{ab2p-unblock-elem-R1073} \ -} -# @@/adpic/*$domain=czsrc.com|nieyou.com|youlea.com (easylistchina+easylist.txt: 10008) -/(.*/)?adpic/.* - -#ab2p-unblock-elem-R1074 -{+client-header-tagger{ab2p-unblock-elem-R1074} \ -} -# @@||dirty.ru/static/i/adv/$image,domain=d3.ru|dirty.ru (advblock.txt: 7289) -.dirty.ru/static/i/adv/ - -#ab2p-unblock-elem-R1075 -{+client-header-tagger{ab2p-unblock-elem-R1075} \ -} -# @@||doubleclick.net^*;sz=*;ord=$image,script,domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 61006) -.doubleclick.net/.*;sz=.*;ord= -# @@||ad.doubleclick.net^*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 60927) -.ad.doubleclick.net/.*\.jpg$ -# @@||2mdn.net/viewad/*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 60926) -.2mdn.net/viewad/.*\.jpg$ -# @@||doubleclick.net^*;sz=*;ord=$image,script,domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50521) -.doubleclick.net/.*;sz=.*;ord= -# @@||ad.doubleclick.net^*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50442) -.ad.doubleclick.net/.*\.jpg$ -# @@||2mdn.net/viewad/*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50441) -.2mdn.net/viewad/.*\.jpg$ - -#ab2p-unblock-elem-R1076 -{+client-header-tagger{ab2p-unblock-elem-R1076} \ -} -# @@||dmstatic.com^*/adEntry.js$domain=daft.ie (easylistchina+easylist.txt: 58683) -.dmstatic.com/.*/adEntry\.js -# @@||dmstatic.com^*/adEntry.js$domain=daft.ie (easylist.txt: 48198) -.dmstatic.com/.*/adEntry\.js - -#ab2p-unblock-elem-R1077 -{+client-header-tagger{ab2p-unblock-elem-R1077} \ -} -# @@||newsinc.com/player/show/$domain=dailycaller.com|valuewalk.com (easylistchina+easylist.txt: 61261) -.newsinc.com/player/show/ -# @@||disqus.com/count-data.js$domain=dailycaller.com|valuewalk.com (easylistchina+easylist.txt: 61260) -.disqus.com/count-data\.js -# @@||newsinc.com/player/show/$domain=dailycaller.com|valuewalk.com (easylist.txt: 50776) -.newsinc.com/player/show/ -# @@||disqus.com/count-data.js$domain=dailycaller.com|valuewalk.com (easylist.txt: 50775) -.disqus.com/count-data\.js - -#ab2p-unblock-elem-R1078 -{+client-header-tagger{ab2p-unblock-elem-R1078} \ -} -# @@||img.revcontent.com^$domain=dailydot.com (easylistchina+easylist.txt: 58995) -.img.revcontent.com -# @@||img.revcontent.com^$domain=dailydot.com (easylist.txt: 48510) -.img.revcontent.com - -#ab2p-unblock-elem-R1079 -{+client-header-tagger{ab2p-unblock-elem-R1079} \ -} -# @@||yumenetworks.com/content/static/$domain=dailygames.com (easylistchina+easylist.txt: 59866) -.yumenetworks.com/content/static/ -# @@||yumenetworks.com/content/static/$domain=dailygames.com (easylist.txt: 49381) -.yumenetworks.com/content/static/ - -#ab2p-unblock-elem-R1080 -{+client-header-tagger{ab2p-unblock-elem-R1080} \ -} -# @@||dmgt.grapeshot.co.uk^$domain=dailymail.co.uk (easylistchina+easylist.txt: 58682) -.dmgt.grapeshot.co.uk -# @@||dmgt.grapeshot.co.uk^$domain=dailymail.co.uk (easylist.txt: 48197) -.dmgt.grapeshot.co.uk - -#ab2p-unblock-elem-R166 -{+client-header-tagger{ab2p-unblock-elem-R166} \ -} -# @@||api.dmcdn.net/pxl/advertisers/$domain=dailymotion.com (easylistchina+easylist.txt: 61284) -.api.dmcdn.net/pxl/advertisers/ -# @@||partners.thefilter.com/dailymotionservice/$image,object-subrequest,script,domain=dailymotion.com (easylistchina+easylist.txt: 59347) -.partners.thefilter.com/dailymotionservice/ -# @@||api.dmcdn.net/pxl/advertisers/$domain=dailymotion.com (easylist.txt: 50799) -.api.dmcdn.net/pxl/advertisers/ -# @@||partners.thefilter.com/dailymotionservice/$image,object-subrequest,script,domain=dailymotion.com (easylist.txt: 48862) -.partners.thefilter.com/dailymotionservice/ - -#ab2p-unblock-elem-R1081 -{+client-header-tagger{ab2p-unblock-elem-R1081} \ -} -# @@||web-jp.ad-v.jp/crossdomain.xml$domain=daisuki.net (easylistchina+easylist.txt: 59804) -.web-jp.ad-v.jp/crossdomain\.xml -# @@||web-jp.ad-v.jp/adam/inline?$object-subrequest,domain=daisuki.net (easylistchina+easylist.txt: 59803) -.web-jp.ad-v.jp/adam/inline\? -# @@||req.tidaltv.com^$object-subrequest,domain=daisuki.net (easylistchina+easylist.txt: 59454) -.req.tidaltv.com -# @@||web-jp.ad-v.jp/crossdomain.xml$domain=daisuki.net (easylist.txt: 49319) -.web-jp.ad-v.jp/crossdomain\.xml -# @@||web-jp.ad-v.jp/adam/inline?$object-subrequest,domain=daisuki.net (easylist.txt: 49318) -.web-jp.ad-v.jp/adam/inline\? -# @@||req.tidaltv.com^$object-subrequest,domain=daisuki.net (easylist.txt: 48969) -.req.tidaltv.com - -#ab2p-unblock-elem-R1082 -{+client-header-tagger{ab2p-unblock-elem-R1082} \ -} -# @@||dasolo.info^$script,domain=dasolo.info (easylistchina+easylist.txt: 60198) -.dasolo.info -# @@||dasolo.info^$script,domain=dasolo.info (easylist.txt: 49713) -.dasolo.info - -#ab2p-unblock-elem-R1083 -{+client-header-tagger{ab2p-unblock-elem-R1083} \ -} -# @@||au.adserver.yahoo.com/a?$subdocument,domain=dating.yahoo.com.au (easylistchina+easylist.txt: 58449) -.au.adserver.yahoo.com/a\? -# @@||au.adserver.yahoo.com/a?$subdocument,domain=dating.yahoo.com.au (easylist.txt: 47964) -.au.adserver.yahoo.com/a\? - -#ab2p-unblock-elem-R1084 -{+client-header-tagger{ab2p-unblock-elem-R1084} \ -} -# @@||integral-marketing.com/scripts/imads.js$domain=dayt.se (easylistchina+easylist.txt: 60424) -.integral-marketing.com/scripts/imads\.js -# @@||dayt.se^$script,domain=dayt.se (easylistchina+easylist.txt: 60200) -.dayt.se -# @@||ads.ad-center.com^$subdocument,domain=dayt.se (easylistchina+easylist.txt: 60007) -.ads.ad-center.com -# @@||ads.ad-center.com/smart_ad/display?ref=*&smart_ad_id=$subdocument,domain=dayt.se (easylistchina+easylist.txt: 60006) -.ads.ad-center.com/smart_ad/display\?ref=.*&smart_ad_id= -# @@||integral-marketing.com/scripts/imads.js$domain=dayt.se (easylist.txt: 49939) -.integral-marketing.com/scripts/imads\.js -# @@||dayt.se^$script,domain=dayt.se (easylist.txt: 49715) -.dayt.se -# @@||ads.ad-center.com^$subdocument,domain=dayt.se (easylist.txt: 49522) -.ads.ad-center.com -# @@||ads.ad-center.com/smart_ad/display?ref=*&smart_ad_id=$subdocument,domain=dayt.se (easylist.txt: 49521) -.ads.ad-center.com/smart_ad/display\?ref=.*&smart_ad_id= - -#ab2p-unblock-elem-R1085 -{+client-header-tagger{ab2p-unblock-elem-R1085} \ -} -# @@||amazon-adsystem.com/aax2/amzn_ads.js$domain=deadspin.com|foodnetwork.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com|weather.com (easylistchina+easylist.txt: 58386) -.amazon-adsystem.com/aax2/amzn_ads\.js -# @@||amazon-adsystem.com/aax2/amzn_ads.js$domain=deadspin.com|foodnetwork.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com|weather.com (easylist.txt: 47901) -.amazon-adsystem.com/aax2/amzn_ads\.js - -#ab2p-unblock-elem-R1086 -{+client-header-tagger{ab2p-unblock-elem-R1086} \ -} -# @@||stores-assets.stackcommerce.com^$script,domain=deals.segmentnext.com (easylistchina+easylist.txt: 46041) -.stores-assets.stackcommerce.com -# @@||stores-assets.stackcommerce.com^$script,domain=deals.segmentnext.com (easylist.txt: 35556) -.stores-assets.stackcommerce.com - -#ab2p-unblock-elem-R1087 -{+client-header-tagger{ab2p-unblock-elem-R1087} \ -} -# @@||tradedoubler.com/file/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59685) -.tradedoubler.com/file/ -# @@||nonstoppartner.net/a/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59257) -.nonstoppartner.net/a/ -# @@||imp*.tradedoubler.com/imp?type(img)$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59001) -.imp*./.*\.tradedoubler\.com/imp\?type\(img\) -.imp*.tradedoubler.com/imp\?type\(img\) -# @@||gopjn.com/b/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 58916) -.gopjn.com/b/ -# @@||awin1.com/cshow.php?s=$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 58465) -.awin1.com/cshow\.php\?s= -# @@||tradedoubler.com/file/$image,domain=deliverydeals.co.uk (easylist.txt: 49200) -.tradedoubler.com/file/ -# @@||nonstoppartner.net/a/$image,domain=deliverydeals.co.uk (easylist.txt: 48772) -.nonstoppartner.net/a/ -# @@||imp*.tradedoubler.com/imp?type(img)$image,domain=deliverydeals.co.uk (easylist.txt: 48516) -.imp*./.*\.tradedoubler\.com/imp\?type\(img\) -.imp*.tradedoubler.com/imp\?type\(img\) -# @@||gopjn.com/b/$image,domain=deliverydeals.co.uk (easylist.txt: 48431) -.gopjn.com/b/ -# @@||awin1.com/cshow.php?s=$image,domain=deliverydeals.co.uk (easylist.txt: 47980) -.awin1.com/cshow\.php\?s= - -#ab2p-unblock-elem-R1088 -{+client-header-tagger{ab2p-unblock-elem-R1088} \ -} -# @@||doublerecall.com/core.js.php?$script,domain=delo.si (easylistchina+easylist.txt: 61007) -.doublerecall.com/core\.js\.php\? -# @@||doublerecall.com/core.js.php?$script,domain=delo.si (easylist.txt: 50522) -.doublerecall.com/core\.js\.php\? - -#ab2p-unblock-elem-R1089 -{+client-header-tagger{ab2p-unblock-elem-R1089} \ -} -# @@||demonoid.ooo^$script,domain=demonoid.ooo (easylistchina+easylist.txt: 60206) -.demonoid.ooo -# @@||demonoid.ooo^$script,domain=demonoid.ooo (easylist.txt: 49721) -.demonoid.ooo - -#ab2p-unblock-elem-R1090 -{+client-header-tagger{ab2p-unblock-elem-R1090} \ -} -# @@||demonoid.ph^$script,domain=demonoid.ph (easylistchina+easylist.txt: 60207) -.demonoid.ph -# @@||demonoid.ph^$script,domain=demonoid.ph (easylist.txt: 49722) -.demonoid.ph - -#ab2p-unblock-elem-R1091 -{+client-header-tagger{ab2p-unblock-elem-R1091} \ -} -# @@||demonoid.pw^$script,domain=demonoid.pw (easylistchina+easylist.txt: 60208) -.demonoid.pw -# @@||demonoid.pw^$script,domain=demonoid.pw (easylist.txt: 49723) -.demonoid.pw - -#ab2p-unblock-elem-R1092 -{+client-header-tagger{ab2p-unblock-elem-R1092} \ -} -# @@||mediav.com^$domain=dev.360.cn (easylistchina+easylist.txt: 10303) -.mediav.com - -#ab2p-unblock-elem-R1093 -{+client-header-tagger{ab2p-unblock-elem-R1093} \ -} -# @@||deviantart.net/fs*/20*_by_$image,domain=deviantart.com (easylistchina+easylist.txt: 58668) -.deviantart.net/fs.*/20.*_by_ -# @@||da-ads.com/truex.html?$domain=deviantart.com (easylistchina+easylist.txt: 58644) -.da-ads.com/truex\.html\? -# @@||deviantart.net/fs*/20*_by_$image,domain=deviantart.com (easylist.txt: 48183) -.deviantart.net/fs.*/20.*_by_ -# @@||da-ads.com/truex.html?$domain=deviantart.com (easylist.txt: 48159) -.da-ads.com/truex\.html\? - -#ab2p-unblock-elem-R1094 -{+client-header-tagger{ab2p-unblock-elem-R1094} \ -} -# @@||oas.di.se^*/di.se/Lopet/*@$script,domain=di.se (easylistchina+easylist.txt: 61076) -.oas.di.se/.*/di\.se/Lopet/.*@ -# @@||oas.di.se/RealMedia/ads/Creatives/di.se/$object,script,domain=di.se (easylistchina+easylist.txt: 61075) -.oas.di.se/RealMedia/ads/Creatives/di\.se/ -# @@||oas.di.se^*/di.se/Lopet/*@$script,domain=di.se (easylist.txt: 50591) -.oas.di.se/.*/di\.se/Lopet/.*@ -# @@||oas.di.se/RealMedia/ads/Creatives/di.se/$object,script,domain=di.se (easylist.txt: 50590) -.oas.di.se/RealMedia/ads/Creatives/di\.se/ - -#ab2p-unblock-elem-R1095 -{+client-header-tagger{ab2p-unblock-elem-R1095} \ -} -# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina+easylist.txt: 10025) -/(.*/)?advs/.* - -#ab2p-unblock-elem-R1096 -{+client-header-tagger{ab2p-unblock-elem-R1096} \ -} -# @@||advertpay.net/code?$script,domain=dic.academic.ru (advblock.txt: 7625) -.advertpay.net/code\? - -#ab2p-unblock-elem-R1097 -{+client-header-tagger{ab2p-unblock-elem-R1097} \ -} -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection.swf?$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylistchina+easylist.txt: 59334) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection\.swf\? -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3.swf$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylistchina+easylist.txt: 59333) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3\.swf -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection.swf?$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylist.txt: 48849) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection\.swf\? -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3.swf$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylist.txt: 48848) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3\.swf - -#ab2p-unblock-elem-R1098 -{+client-header-tagger{ab2p-unblock-elem-R1098} \ -} -# @@||wp.com/digiday.com/wp-content/uploads/*/your-ad-here-banner.png?resize=$domain=digiday.com (easylistchina+easylist.txt: 59825) -.wp.com/digiday\.com/wp-content/uploads/.*/your-ad-here-banner\.png\?resize= -# @@||wp.com/digiday.com/wp-content/uploads/*/your-ad-here-banner.png?resize=$domain=digiday.com (easylist.txt: 49340) -.wp.com/digiday\.com/wp-content/uploads/.*/your-ad-here-banner\.png\?resize= - -#ab2p-unblock-elem-R1099 -{+client-header-tagger{ab2p-unblock-elem-R1099} \ -} -# @@||dpmate.com/exports/tour_20/$domain=digitalplayground.com (easylistchina+easylist.txt: 61435) -.dpmate.com/exports/tour_20/ -# @@||dpmate.com/exports/tour_20/$domain=digitalplayground.com (easylist.txt: 50950) -.dpmate.com/exports/tour_20/ - -#ab2p-unblock-elem-R1100 -{+client-header-tagger{ab2p-unblock-elem-R1100} \ -} -# @@||adserver.adtech.de/?adrawdata/3.0/$object-subrequest,domain=digitoday.fi|groovefm.fi|hs.fi|iltasanomat.fi|istv.fi|jimtv.fi|livtv.fi|loop.fi|metrohelsinki.fi|nelonen.fi|nyt.fi|radioaalto.fi|radiorock.fi|radiosuomipop.fi|ruokala.net|ruutu.fi (easylistchina+easylist.txt: 60023) -.adserver.adtech.de/\?adrawdata/3\.0/ -# @@||adserver.adtech.de/?adrawdata/3.0/$object-subrequest,domain=digitoday.fi|groovefm.fi|hs.fi|iltasanomat.fi|istv.fi|jimtv.fi|livtv.fi|loop.fi|metrohelsinki.fi|nelonen.fi|nyt.fi|radioaalto.fi|radiorock.fi|radiosuomipop.fi|ruokala.net|ruutu.fi (easylist.txt: 49538) -.adserver.adtech.de/\?adrawdata/3\.0/ - -#ab2p-unblock-elem-R1101 -{+client-header-tagger{ab2p-unblock-elem-R1101} \ -} -# @@||googleadservices.com/pagead/conversion_async.js$domain=dillards.com (easylistchina+easylist.txt: 58911) -.googleadservices.com/pagead/conversion_async\.js -# @@||googleadservices.com/pagead/conversion_async.js$domain=dillards.com (easylist.txt: 48426) -.googleadservices.com/pagead/conversion_async\.js - -#ab2p-unblock-elem-R1102 -{+client-header-tagger{ab2p-unblock-elem-R1102} \ -} -# @@||spotxchange.com/media/videos/flash/adplayer_$domain=directon.tv (easylistchina+easylist.txt: 59575) -.spotxchange.com/media/videos/flash/adplayer_ -# @@||spotxchange.com/media/videos/flash/adplayer_$domain=directon.tv (easylist.txt: 49090) -.spotxchange.com/media/videos/flash/adplayer_ - -#ab2p-unblock-elem-R1103 -{+client-header-tagger{ab2p-unblock-elem-R1103} \ -} -# @@||spotxchange.com/media/videos/flash/ad_player/$domain=directon.tv|games.yahoo.com|onescreen.net|wii-cast.tv (easylistchina+easylist.txt: 59574) -.spotxchange.com/media/videos/flash/ad_player/ -# @@||spotxchange.com/media/videos/flash/ad_player/$domain=directon.tv|games.yahoo.com|onescreen.net|wii-cast.tv (easylist.txt: 49089) -.spotxchange.com/media/videos/flash/ad_player/ - -#ab2p-unblock-elem-R1104 -{+client-header-tagger{ab2p-unblock-elem-R1104} \ -} -# @@||spotxchange.com/flash/ad.swf?$domain=directon.tv|wii-cast.tv (easylistchina+easylist.txt: 59572) -.spotxchange.com/flash/ad\.swf\? -# @@||spotxchange.com/flash/ad.swf?$domain=directon.tv|wii-cast.tv (easylist.txt: 49087) -.spotxchange.com/flash/ad\.swf\? - -#ab2p-unblock-elem-R1105 -{+client-header-tagger{ab2p-unblock-elem-R1105} \ -} -# @@||syndication.exoclick.com/ads.php?type=728x90&$script,domain=dirtstyle.tv (easylistchina+easylist.txt: 61776) -.syndication.exoclick.com/ads\.php\?type=728x90& -# @@||syndication.exoclick.com/ads.php?type=728x90&$script,domain=dirtstyle.tv (easylist.txt: 51291) -.syndication.exoclick.com/ads\.php\?type=728x90& - -#ab2p-unblock-elem-R1106 -{+client-header-tagger{ab2p-unblock-elem-R1106} \ -} -# @@.dirty.ru/static/$domain=dirty.ru (advblock.txt: 7522) -/.*\.dirty\.ru/static/ -.*.dirty.ru/static/ - -#ab2p-unblock-elem-R1107 -{+client-header-tagger{ab2p-unblock-elem-R1107} \ -} -# @@||oascentral.discovery.com/realmedia/ads/adstream_mjx.ads/$script,domain=discovery.com (easylistchina+easylist.txt: 59273) -.oascentral.discovery.com/realmedia/ads/adstream_mjx\.ads/ -# @@||oascentral.discovery.com/realmedia/ads/adstream_mjx.ads/$script,domain=discovery.com (easylist.txt: 48788) -.oascentral.discovery.com/realmedia/ads/adstream_mjx\.ads/ - -#ab2p-unblock-elem-R1108 -{+client-header-tagger{ab2p-unblock-elem-R1108} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina+easylist.txt: 10324) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-elem-R1109 -{+client-header-tagger{ab2p-unblock-elem-R1109} \ -} -# @@||analytics.disneyinternational.com/ads/tagsv2/video/$xmlhttprequest,domain=disney.no (easylistchina+easylist.txt: 60978) -.analytics.disneyinternational.com/ads/tagsv2/video/ -# @@||analytics.disneyinternational.com/ads/tagsv2/video/$xmlhttprequest,domain=disney.no (easylist.txt: 50493) -.analytics.disneyinternational.com/ads/tagsv2/video/ - -#ab2p-unblock-elem-R1110 -{+client-header-tagger{ab2p-unblock-elem-R1110} \ -} -# @@||a.disquscdn.com/next/embed/$script,domain=disqus.com (easylistchina+easylist.txt: 45835) -.a.disquscdn.com/next/embed/ -# @@||a.disquscdn.com/next/embed/$script,domain=disqus.com (easylist.txt: 35350) -.a.disquscdn.com/next/embed/ - -#ab2p-unblock-elem-R1111 -{+client-header-tagger{ab2p-unblock-elem-R1111} \ -} -# @@||winwords.adhood.com^$script,domain=dizi-mag.com (easylistchina+easylist.txt: 60898) -.winwords.adhood.com -# @@||dizicdn.com/i/ads/groupon.png$domain=dizi-mag.com (easylistchina+easylist.txt: 60216) -.dizicdn.com/i/ads/groupon\.png -# @@||ads.milliyet.cubecdn.net/winwords/adhood/winwords2.client.js$domain=dizi-mag.com (easylistchina+easylist.txt: 60014) -.ads.milliyet.cubecdn.net/winwords/adhood/winwords2\.client\.js -# @@||winwords.adhood.com^$script,domain=dizi-mag.com (easylist.txt: 50413) -.winwords.adhood.com -# @@||dizicdn.com/i/ads/groupon.png$domain=dizi-mag.com (easylist.txt: 49731) -.dizicdn.com/i/ads/groupon\.png -# @@||ads.milliyet.cubecdn.net/winwords/adhood/winwords2.client.js$domain=dizi-mag.com (easylist.txt: 49529) -.ads.milliyet.cubecdn.net/winwords/adhood/winwords2\.client\.js - -#ab2p-unblock-elem-R1112 -{+client-header-tagger{ab2p-unblock-elem-R1112} \ -} -# @@||dlh.net^$script,domain=dlh.net (easylistchina+easylist.txt: 60218) -.dlh.net -# @@||dlh.net^$script,domain=dlh.net (easylist.txt: 49733) -.dlh.net - -#ab2p-unblock-elem-R1113 -{+client-header-tagger{ab2p-unblock-elem-R1113} \ -} -# @@||dnswatch.info^$script,domain=dnswatch.info (easylistchina+easylist.txt: 60219) -.dnswatch.info -# @@||dnswatch.info^$script,domain=dnswatch.info (easylist.txt: 49734) -.dnswatch.info - -#ab2p-unblock-elem-R1114 -{+client-header-tagger{ab2p-unblock-elem-R1114} \ -} -# @@/adframe.$domain=dnvod.eu (easylistchina+easylist.txt: 10002) -/(.*/)?adframe\. -adframe.*. - -#ab2p-unblock-elem-R1115 -{+client-header-tagger{ab2p-unblock-elem-R1115} \ -} -# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina+easylist.txt: 10059) -/(.*/)?upload/ads/.*\.jpg - -#ab2p-unblock-elem-R1116 -{+client-header-tagger{ab2p-unblock-elem-R1116} \ -} -# @@||doubleclick.net/adi/sony.oz.opus/*;pos=bottom;$subdocument,domain=doctoroz.com (easylistchina+easylist.txt: 58703) -.doubleclick.net/adi/sony\.oz\.opus/.*;pos=bottom; -# @@||doubleclick.net/adi/sony.oz.opus/*;pos=bottom;$subdocument,domain=doctoroz.com (easylist.txt: 48218) -.doubleclick.net/adi/sony\.oz\.opus/.*;pos=bottom; - -#ab2p-unblock-elem-R1117 -{+client-header-tagger{ab2p-unblock-elem-R1117} \ -} -# @@||dogecoinpuddle.com^$script,domain=dogecoinpuddle.com (easylistchina+easylist.txt: 60222) -.dogecoinpuddle.com -# @@||dogecoinpuddle.com^$script,domain=dogecoinpuddle.com (easylist.txt: 49737) -.dogecoinpuddle.com - -#ab2p-unblock-elem-R1118 -{+client-header-tagger{ab2p-unblock-elem-R1118} \ -} -# @@||ertelecom.ru^*.swf?link1=$domain=domru.ru (advblock.txt: 7293) -.ertelecom.ru/.*\.swf\?link1= - -#ab2p-unblock-elem-R1119 -{+client-header-tagger{ab2p-unblock-elem-R1119} \ -} -# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina+easylist.txt: 10072) -/(.*/)?AD/ - -#ab2p-unblock-elem-R1120 -{+client-header-tagger{ab2p-unblock-elem-R1120} \ -} -# @@||2mdn.net^*/player.swf$domain=doubleclick.net (easylistchina+easylist.txt: 58127) -.2mdn.net/.*/player\.swf -# @@||2mdn.net^*/jwplayer.js$domain=doubleclick.net (easylistchina+easylist.txt: 58126) -.2mdn.net/.*/jwplayer\.js -# @@||2mdn.net^*/player.swf$domain=doubleclick.net (easylist.txt: 47642) -.2mdn.net/.*/player\.swf -# @@||2mdn.net^*/jwplayer.js$domain=doubleclick.net (easylist.txt: 47641) -.2mdn.net/.*/jwplayer\.js - -#ab2p-unblock-elem-R1121 -{+client-header-tagger{ab2p-unblock-elem-R1121} \ -} -# @@/advertisement.js$domain=dramacafe.in|ilive.to|mackolik.com|sahadan.com (easylistchina+easylist.txt: 59920) -/(.*/)?advertisement\.js -advertisement.js*. -# @@/advertisement.js$domain=dramacafe.in|ilive.to|mackolik.com|sahadan.com (easylist.txt: 49435) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-elem-R1122 -{+client-header-tagger{ab2p-unblock-elem-R1122} \ -} -# @@/crosdomain.xml$object-subrequest,domain=dramafever.com (easylistchina+easylist.txt: 59926) -/(.*/)?crosdomain\.xml -crosdomain.xml*. -# @@/crosdomain.xml$object-subrequest,domain=dramafever.com (easylist.txt: 49441) -/(.*/)?crosdomain\.xml -crosdomain.xml*. - -#ab2p-unblock-elem-R1123 -{+client-header-tagger{ab2p-unblock-elem-R1123} \ -} -# @@||auditude.com^*/auditudeosmfproxyplugin.swf$object-subrequest,domain=dramafever.com|majorleaguegaming.com (easylistchina+easylist.txt: 58455) -.auditude.com/.*/auditudeosmfproxyplugin\.swf -# @@||auditude.com^*/auditudeosmfproxyplugin.swf$object-subrequest,domain=dramafever.com|majorleaguegaming.com (easylist.txt: 47970) -.auditude.com/.*/auditudeosmfproxyplugin\.swf - -#ab2p-unblock-elem-R1124 -{+client-header-tagger{ab2p-unblock-elem-R1124} \ -} -# @@/crossdomain.xml$object-subrequest,domain=dramafever.com|vaughnlive.tv (easylistchina+easylist.txt: 59927) -/(.*/)?crossdomain\.xml -crossdomain.xml*. -# @@/crossdomain.xml$object-subrequest,domain=dramafever.com|vaughnlive.tv (easylist.txt: 49442) -/(.*/)?crossdomain\.xml -crossdomain.xml*. - -#ab2p-unblock-elem-R1125 -{+client-header-tagger{ab2p-unblock-elem-R1125} \ -} -# @@||dressupgal.com^$script,domain=dressupgal.com (easylistchina+easylist.txt: 60235) -.dressupgal.com -# @@||dressupgal.com^$script,domain=dressupgal.com (easylist.txt: 49750) -.dressupgal.com - -#ab2p-unblock-elem-R1126 -{+client-header-tagger{ab2p-unblock-elem-R1126} \ -} -# @@||g.doubleclick.net/gampad/ads?*^slotname=NormalLeaderboard^$script,domain=drivearabia.com (easylistchina+easylist.txt: 60322) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-]slotname=NormalLeaderboard[^\w%.-] -# @@||g.doubleclick.net/gampad/ads?*^slotname=NormalLeaderboard^$script,domain=drivearabia.com (easylist.txt: 49837) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-]slotname=NormalLeaderboard[^\w%.-] - -#ab2p-unblock-elem-R1127 -{+client-header-tagger{ab2p-unblock-elem-R1127} \ -} -# @@||dollarade.com/overlay_gateway.php?oid=$script,domain=dubs.me|filestore123.info|myfilestore.com|portable77download.blogspot.com|pspmaniaonline.com (easylistchina+easylist.txt: 60224) -.dollarade.com/overlay_gateway\.php\?oid= -# @@||dollarade.com/overlay_gateway.php?oid=$script,domain=dubs.me|filestore123.info|myfilestore.com|portable77download.blogspot.com|pspmaniaonline.com (easylist.txt: 49739) -.dollarade.com/overlay_gateway\.php\?oid= - -#ab2p-unblock-elem-R1128 -{+client-header-tagger{ab2p-unblock-elem-R1128} \ -} -# @@||topadvert.ru^$image,script,domain=dxdigitals.info (advblock.txt: 7411) -.topadvert.ru - -#ab2p-unblock-elem-R1129 -{+client-header-tagger{ab2p-unblock-elem-R1129} \ -} -# @@||sfdict.com/app/*/js/ghostwriter_adcall.js$domain=dynamo.dictionary.com (easylistchina+easylist.txt: 59522) -.sfdict.com/app/.*/js/ghostwriter_adcall\.js -# @@||sfdict.com/app/*/js/ghostwriter_adcall.js$domain=dynamo.dictionary.com (easylist.txt: 49037) -.sfdict.com/app/.*/js/ghostwriter_adcall\.js - -#ab2p-unblock-elem-R1130 -{+client-header-tagger{ab2p-unblock-elem-R1130} \ -} -# @@||ul.ehgt.org/ad/$image,domain=e-hentai.org|exhentai.org (easylistchina+easylist.txt: 61467) -.ul.ehgt.org/ad/ -# @@||ul.ehgt.org/ad/$image,domain=e-hentai.org|exhentai.org (easylist.txt: 50982) -.ul.ehgt.org/ad/ - -#ab2p-unblock-elem-R1131 -{+client-header-tagger{ab2p-unblock-elem-R1131} \ -} -# @@||adtechus.com/dt/common/DACMultiAdPlugin.js$domain=e24.no (easylistchina+easylist.txt: 60028) -.adtechus.com/dt/common/DACMultiAdPlugin\.js -# @@||adtechus.com/dt/common/DACMultiAdPlugin.js$domain=e24.no (easylist.txt: 49543) -.adtechus.com/dt/common/DACMultiAdPlugin\.js - -#ab2p-unblock-elem-R1132 -{+client-header-tagger{ab2p-unblock-elem-R1132} \ -} -# @@.net/director/?t=$subdocument,third-party,domain=eafyfsuh.net (easylistchina+easylist.txt: 58100) -/.*\.net/director/\?t= -.*.net/director/\?t= -# @@.net/director/?t=$subdocument,third-party,domain=eafyfsuh.net (easylist.txt: 47615) -/.*\.net/director/\?t= -.*.net/director/\?t= - -#ab2p-unblock-elem-R1133 -{+client-header-tagger{ab2p-unblock-elem-R1133} \ -} -# @@||easyads.eu^$domain=easyads.eu (easylistchina+easylist.txt: 61251) -.easyads.eu -# @@||easyads.eu^$domain=easyads.eu (easylist.txt: 50766) -.easyads.eu - -#ab2p-unblock-elem-R1135 -{+client-header-tagger{ab2p-unblock-elem-R1135} \ -} -# @@||ads.adaptv.advertising.com^$xmlhttprequest,domain=easyrecipesite.com (easylistchina+easylist.txt: 58220) -.ads.adaptv.advertising.com -# @@||ads.adaptv.advertising.com^$xmlhttprequest,domain=easyrecipesite.com (easylist.txt: 47735) -.ads.adaptv.advertising.com - -#ab2p-unblock-elem-R1136 -{+client-header-tagger{ab2p-unblock-elem-R1136} \ -} -# @@||doubleclick.net/adi/ebay.*/video;$subdocument,domain=ebay.com (easylistchina+easylist.txt: 58698) -.doubleclick.net/adi/ebay\..*/video; -# @@||doubleclick.net/adi/ebay.*/video;$subdocument,domain=ebay.com (easylist.txt: 48213) -.doubleclick.net/adi/ebay\..*/video; - -#ab2p-unblock-elem-R1137 -{+client-header-tagger{ab2p-unblock-elem-R1137} \ -} -# @@||g.doubleclick.net/pagead/ads?ad_type=image_text^$object-subrequest,domain=ebog.com|gameark.com (easylistchina+easylist.txt: 58855) -.g.doubleclick.net/pagead/ads\?ad_type=image_text[^\w%.-] -# @@||g.doubleclick.net/pagead/ads?ad_type=image_text^$object-subrequest,domain=ebog.com|gameark.com (easylist.txt: 48370) -.g.doubleclick.net/pagead/ads\?ad_type=image_text[^\w%.-] - -#ab2p-unblock-elem-R1138 -{+client-header-tagger{ab2p-unblock-elem-R1138} \ -} -# @@||adverts.eclypsia.com/www/images/*.jpg|$domain=eclypsia.com (easylistchina+easylist.txt: 60033) -.adverts.eclypsia.com/www/images/.*\.jpg$ -# @@||adverts.eclypsia.com/www/images/*.jpg|$domain=eclypsia.com (easylist.txt: 49548) -.adverts.eclypsia.com/www/images/.*\.jpg$ - -#ab2p-unblock-elem-R1139 -{+client-header-tagger{ab2p-unblock-elem-R1139} \ -} -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/$script,domain=economist.com|feedroom.com|stanford.edu (easylistchina+easylist.txt: 59274) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/ -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/$script,domain=economist.com|feedroom.com|stanford.edu (easylist.txt: 48789) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/ - -#ab2p-unblock-elem-R1140 -{+client-header-tagger{ab2p-unblock-elem-R1140} \ -} -# @@||adriver.ru/cgi-bin/erle.cgi?*&target=blank&tail$script,domain=eg.ru (advblock.txt: 7619) -.adriver.ru/cgi-bin/erle\.cgi\?.*&target=blank&tail - -#ab2p-unblock-elem-R1141 -{+client-header-tagger{ab2p-unblock-elem-R1141} \ -} -# @@||imgag.com^*/adaptvadplayer.swf$domain=egreetings.com (easylistchina+easylist.txt: 58999) -.imgag.com/.*/adaptvadplayer\.swf -# @@||imgag.com^*/adaptvadplayer.swf$domain=egreetings.com (easylist.txt: 48514) -.imgag.com/.*/adaptvadplayer\.swf - -#ab2p-unblock-elem-R1142 -{+client-header-tagger{ab2p-unblock-elem-R1142} \ -} -# @@||rc.hotkeys.com/interface/$domain=ehow.com (easylistchina+easylist.txt: 59440) -.rc.hotkeys.com/interface/ -# @@||rc.hotkeys.com/interface/$domain=ehow.com (easylist.txt: 48955) -.rc.hotkeys.com/interface/ - -#ab2p-unblock-elem-R1143 -{+client-header-tagger{ab2p-unblock-elem-R1143} \ -} -# @@||google.com/afs/ads?$document,subdocument,domain=ehow.com|livestrong.com (easylistchina+easylist.txt: 58901) -.google.com/afs/ads\? -# @@||google.com/afs/ads?$document,subdocument,domain=ehow.com|livestrong.com (easylist.txt: 48416) -.google.com/afs/ads\? - -#ab2p-unblock-elem-R1144 -{+client-header-tagger{ab2p-unblock-elem-R1144} \ -} -# @@||eioservices.marketingsolutions.yahoo.com^$domain=eio.manhattan.yahoo.com (easylistchina+easylist.txt: 61263) -.eioservices.marketingsolutions.yahoo.com -# @@||eioservices.marketingsolutions.yahoo.com^$domain=eio.manhattan.yahoo.com (easylist.txt: 50778) -.eioservices.marketingsolutions.yahoo.com - -#ab2p-unblock-elem-R1145 -{+client-header-tagger{ab2p-unblock-elem-R1145} \ -} -# @@||nuggad.net/rc?nuggn=$script,domain=ekstrabladet.dk (easylistchina+easylist.txt: 61074) -.nuggad.net/rc\?nuggn= -# @@||nuggad.net/rc?nuggn=$script,domain=ekstrabladet.dk (easylist.txt: 50589) -.nuggad.net/rc\?nuggn= - -#ab2p-unblock-elem-R1146 -{+client-header-tagger{ab2p-unblock-elem-R1146} \ -} -# @@||ads.us.e-planning.net^*&ma=*&vv=$object-subrequest,domain=elcomercio.pe (easylistchina+easylist.txt: 60953) -.ads.us.e-planning.net/.*&ma=.*&vv= -# @@||ads.us.e-planning.net^*&ma=*&vv=$object-subrequest,domain=elcomercio.pe (easylist.txt: 50468) -.ads.us.e-planning.net/.*&ma=.*&vv= - -#ab2p-unblock-elem-R1147 -{+client-header-tagger{ab2p-unblock-elem-R1147} \ -} -# @@||s1emagst.akamaized.net/openx/*.jpg$domain=emag.hu (easylistchina+easylist.txt: 61105) -.s1emagst.akamaized.net/openx/.*\.jpg -# @@||s1emagst.akamaized.net/openx/*.jpg$domain=emag.hu (easylist.txt: 50620) -.s1emagst.akamaized.net/openx/.*\.jpg - -#ab2p-unblock-elem-R1148 -{+client-header-tagger{ab2p-unblock-elem-R1148} \ -} -# @@||emagst.net/openx/$image,domain=emag.hu|emag.ro (easylistchina+easylist.txt: 61011) -.emagst.net/openx/ -# @@||emagst.net/openx/$image,domain=emag.hu|emag.ro (easylist.txt: 50526) -.emagst.net/openx/ - -#ab2p-unblock-elem-R1149 -{+client-header-tagger{ab2p-unblock-elem-R1149} \ -} -# @@||adfox.yandex.ru^$object-subrequest,domain=embed.life.ru (advblock.txt: 7551) -.adfox.yandex.ru - -#ab2p-unblock-elem-R1150 -{+client-header-tagger{ab2p-unblock-elem-R1150} \ -} -# @@||empik.ua/openx/www/delivery/ajs.php?$domain=empik.ua (advblock.txt: 7291) -.empik.ua/openx/www/delivery/ajs\.php\? - -#ab2p-unblock-elem-R1151 -{+client-header-tagger{ab2p-unblock-elem-R1151} \ -} -# @@||adsonar.com/js/aslJSON.js$domain=engadget.com (easylistchina+easylist.txt: 58308) -.adsonar.com/js/aslJSON\.js -# @@||adsonar.com/js/aslJSON.js$domain=engadget.com (easylist.txt: 47823) -.adsonar.com/js/aslJSON\.js - -#ab2p-unblock-elem-R1152 -{+client-header-tagger{ab2p-unblock-elem-R1152} \ -} -# @@||openx.ideastudios.ro^$script,domain=enjoydressup.com (easylistchina+easylist.txt: 59299) -.openx.ideastudios.ro -# @@||openx.ideastudios.ro^$script,domain=enjoydressup.com (easylist.txt: 48814) -.openx.ideastudios.ro - -#ab2p-unblock-elem-R1153 -{+client-header-tagger{ab2p-unblock-elem-R1153} \ -} -# @@||mythings.com/c.aspx?atok$domain=enter.ru (easylistchina+easylist.txt: 59219) -.mythings.com/c\.aspx\?atok -# @@||mythings.com/c.aspx?atok$domain=enter.ru (easylist.txt: 48734) -.mythings.com/c\.aspx\?atok - -#ab2p-unblock-elem-R1154 -{+client-header-tagger{ab2p-unblock-elem-R1154} \ -} -# @@||adserver.adtech.de/?adrawdata/3.0/$script,domain=entertainment.ie (easylistchina+easylist.txt: 60024) -.adserver.adtech.de/\?adrawdata/3\.0/ -# @@||adserver.adtech.de/?adrawdata/3.0/$script,domain=entertainment.ie (easylist.txt: 49539) -.adserver.adtech.de/\?adrawdata/3\.0/ - -#ab2p-unblock-elem-R1155 -{+client-header-tagger{ab2p-unblock-elem-R1155} \ -} -# @@||ads1.msn.com/library/dap.js$domain=entertainment.msn.co.nz|msn.foxsports.com (easylistchina+easylist.txt: 58282) -.ads1.msn.com/library/dap\.js -# @@||ads1.msn.com/library/dap.js$domain=entertainment.msn.co.nz|msn.foxsports.com (easylist.txt: 47797) -.ads1.msn.com/library/dap\.js - -#ab2p-unblock-elem-R1156 -{+client-header-tagger{ab2p-unblock-elem-R1156} \ -} -# @@||ad4game.com/www/delivery/video.php?zoneid=$script,domain=escapefan.com (easylistchina+easylist.txt: 58176) -.ad4game.com/www/delivery/video\.php\?zoneid= -# @@||ad4game.com/ima3_preloader_*.swf$object,domain=escapefan.com (easylistchina+easylist.txt: 58175) -.ad4game.com/ima3_preloader_.*\.swf -# @@||ad4game.com/www/delivery/video.php?zoneid=$script,domain=escapefan.com (easylist.txt: 47691) -.ad4game.com/www/delivery/video\.php\?zoneid= -# @@||ad4game.com/ima3_preloader_*.swf$object,domain=escapefan.com (easylist.txt: 47690) -.ad4game.com/ima3_preloader_.*\.swf - -#ab2p-unblock-elem-R1157 -{+client-header-tagger{ab2p-unblock-elem-R1157} \ -} -# @@||sascdn.com/video/$script,domain=eskago.pl (easylistchina+easylist.txt: 60717) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/$script,domain=eskago.pl (easylistchina+easylist.txt: 60716) -.sascdn.com/diff/video/ -# @@||sascdn.com/video/$script,domain=eskago.pl (easylist.txt: 50232) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/$script,domain=eskago.pl (easylist.txt: 50231) -.sascdn.com/diff/video/ - -#ab2p-unblock-elem-R1158 -{+client-header-tagger{ab2p-unblock-elem-R1158} \ -} -# @@||doubleclick.net/adx/es.esmas.videonot_embed/$script,domain=esmas.com (easylistchina+easylist.txt: 61005) -.doubleclick.net/adx/es\.esmas\.videonot_embed/ -# @@||doubleclick.net/adx/es.esmas.videonot_embed/$script,domain=esmas.com (easylist.txt: 50520) -.doubleclick.net/adx/es\.esmas\.videonot_embed/ - -#ab2p-unblock-elem-R1159 -{+client-header-tagger{ab2p-unblock-elem-R1159} \ -} -# @@||edgesuite.net/ads/$object-subrequest,domain=espn.go.com (easylistchina+easylist.txt: 60246) -.edgesuite.net/ads/ -# @@||espncdn.com/combiner/c?*/ads.css$domain=espn.go.com (easylistchina+easylist.txt: 58794) -.espncdn.com/combiner/c\?.*/ads\.css -# @@||espncdn.com/combiner/*/admgr.$script,domain=espn.go.com (easylistchina+easylist.txt: 58793) -.espncdn.com/combiner/.*/admgr\. -# @@||edgesuite.net/ads/$object-subrequest,domain=espn.go.com (easylist.txt: 49761) -.edgesuite.net/ads/ -# @@||espncdn.com/combiner/c?*/ads.css$domain=espn.go.com (easylist.txt: 48309) -.espncdn.com/combiner/c\?.*/ads\.css -# @@||espncdn.com/combiner/*/admgr.$script,domain=espn.go.com (easylist.txt: 48308) -.espncdn.com/combiner/.*/admgr\. - -#ab2p-unblock-elem-R1160 -{+client-header-tagger{ab2p-unblock-elem-R1160} \ -} -# @@||img.espngp.com/ads/$image,domain=espnf1.com (easylistchina+easylist.txt: 58993) -.img.espngp.com/ads/ -# @@||espngp.com/ads/*_sprite$domain=espnf1.com (easylistchina+easylist.txt: 58796) -.espngp.com/ads/.*_sprite -# @@||img.espngp.com/ads/$image,domain=espnf1.com (easylist.txt: 48508) -.img.espngp.com/ads/ -# @@||espngp.com/ads/*_sprite$domain=espnf1.com (easylist.txt: 48311) -.espngp.com/ads/.*_sprite - -#ab2p-unblock-elem-R1161 -{+client-header-tagger{ab2p-unblock-elem-R1161} \ -} -# @@||espncdn.com/combiner/c?*/advertising.$stylesheet,domain=espnfc.com (easylistchina+easylist.txt: 58795) -.espncdn.com/combiner/c\?.*/advertising\. -# @@||espncdn.com/combiner/c?*/advertising.$stylesheet,domain=espnfc.com (easylist.txt: 48310) -.espncdn.com/combiner/c\?.*/advertising\. - -#ab2p-unblock-elem-R1162 -{+client-header-tagger{ab2p-unblock-elem-R1162} \ -} -# @@||etsystatic.com^*_760x100.$domain=etsy.com (easylistchina+easylist.txt: 61329) -.etsystatic.com/.*_760x100\. -# @@||etsystatic.com^*_760x100.$domain=etsy.com (easylist.txt: 50844) -.etsystatic.com/.*_760x100\. - -#ab2p-unblock-elem-R1163 -{+client-header-tagger{ab2p-unblock-elem-R1163} \ -} -# @@||adwolf.ru^$image,script,domain=europaplus.ru|retrofm.ru (advblock.txt: 7255) -.adwolf.ru - -#ab2p-unblock-elem-R1164 -{+client-header-tagger{ab2p-unblock-elem-R1164} \ -} -# @@||imp*.tradedoubler.com/imp?type(js)$script,domain=europe-airports.com (easylistchina+easylist.txt: 59002) -.imp*./.*\.tradedoubler\.com/imp\?type\(js\) -.imp*.tradedoubler.com/imp\?type\(js\) -# @@||imp*.tradedoubler.com/imp?type(js)$script,domain=europe-airports.com (easylist.txt: 48517) -.imp*./.*\.tradedoubler\.com/imp\?type\(js\) -.imp*.tradedoubler.com/imp\?type\(js\) - -#ab2p-unblock-elem-R1165 -{+client-header-tagger{ab2p-unblock-elem-R1165} \ -} -# @@||adserver.adtech.de/?advideo/*;vidas=pre_roll^$object-subrequest,domain=eurovisionsports.tv|talksport.co.uk|wrc.com (easylistchina+easylist.txt: 58289) -.adserver.adtech.de/\?advideo/.*;vidas=pre_roll[^\w%.-] -# @@||adserver.adtech.de/?advideo/*;vidas=pre_roll^$object-subrequest,domain=eurovisionsports.tv|talksport.co.uk|wrc.com (easylist.txt: 47804) -.adserver.adtech.de/\?advideo/.*;vidas=pre_roll[^\w%.-] - -#ab2p-unblock-elem-R1166 -{+client-header-tagger{ab2p-unblock-elem-R1166} \ -} -# @@||yolohobo.us^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60914) -.yolohobo.us -# @@||rctrails.com^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60692) -.rctrails.com -# @@||infineoncorp.com^$domain=eventhubs.com (easylistchina+easylist.txt: 60416) -.infineoncorp.com -# @@||doubleclick.net/adj/gn.eventhubs.com/*;sz=728x90;$script,domain=eventhubs.com (easylistchina+easylist.txt: 60228) -.doubleclick.net/adj/gn\.eventhubs\.com/.*;sz=728x90; -# @@||dinglydangly.com^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60213) -.dinglydangly.com -# @@|http://$script,third-party,domain=eventhubs.com (easylistchina+easylist.txt: 59942) -# @@||yolohobo.us^$script,domain=eventhubs.com (easylist.txt: 50429) -.yolohobo.us -# @@||rctrails.com^$script,domain=eventhubs.com (easylist.txt: 50207) -.rctrails.com -# @@||infineoncorp.com^$domain=eventhubs.com (easylist.txt: 49931) -.infineoncorp.com -# @@||doubleclick.net/adj/gn.eventhubs.com/*;sz=728x90;$script,domain=eventhubs.com (easylist.txt: 49743) -.doubleclick.net/adj/gn\.eventhubs\.com/.*;sz=728x90; -# @@||dinglydangly.com^$script,domain=eventhubs.com (easylist.txt: 49728) -.dinglydangly.com -# @@|http://$script,third-party,domain=eventhubs.com (easylist.txt: 49457) - -#ab2p-unblock-elem-R1167 -{+client-header-tagger{ab2p-unblock-elem-R1167} \ -} -# @@||ads.lzjl.com/newserving/showad.php$domain=everythingon.tv (easylistchina+easylist.txt: 60013) -.ads.lzjl.com/newserving/showad\.php -# @@||ads.lzjl.com/newserving/showad.php$domain=everythingon.tv (easylist.txt: 49528) -.ads.lzjl.com/newserving/showad\.php - -#ab2p-unblock-elem-R1168 -{+client-header-tagger{ab2p-unblock-elem-R1168} \ -} -# @@/advertisement.js$domain=evrl.to|kinomoov.net|megogo.net|online.ua|only-paper.ru|raketa-tv.com|seriatv.ru|torrent-tv.ru|uakino.net|ualinux.com|褌械锌谢芯褉邪褋褔械褌.褉褎 (advblock.txt: 7530) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-elem-R1169 -{+client-header-tagger{ab2p-unblock-elem-R1169} \ -} -# @@||chitika.com^*/search-button.png?$domain=exashare.com (easylistchina+easylist.txt: 60154) -.chitika.com/.*/search-button\.png\? -# @@||chitika.com^*/search-button.png?$domain=exashare.com (easylist.txt: 49669) -.chitika.com/.*/search-button\.png\? - -#ab2p-unblock-elem-R1170 -{+client-header-tagger{ab2p-unblock-elem-R1170} \ -} -# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina+easylist.txt: 10202) -.cbjs.baidu.com - -#ab2p-unblock-elem-R1171 -{+client-header-tagger{ab2p-unblock-elem-R1171} \ -} -# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina+easylist.txt: 10192) -.cb.baidu.com/ecom\?di= - -#ab2p-unblock-elem-R1172 -{+client-header-tagger{ab2p-unblock-elem-R1172} \ -} -# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina+easylist.txt: 10399) -.ubmcmm.baidustatic.com - -#ab2p-unblock-elem-R1173 -{+client-header-tagger{ab2p-unblock-elem-R1173} \ -} -# @@/img/ad/*$domain=exp.qq.com (easylistchina+easylist.txt: 10044) -/(.*/)?img/ad/.* - -#ab2p-unblock-elem-R1174 -{+client-header-tagger{ab2p-unblock-elem-R1174} \ -} -# @@||ads.expedia.com/event.ng/type=click&$domain=expedia.com (easylistchina+easylist.txt: 58231) -.ads.expedia.com/event\.ng/type=click& -# @@||ads.expedia.com/event.ng/type=click&$domain=expedia.com (easylist.txt: 47746) -.ads.expedia.com/event\.ng/type=click& - -#ab2p-unblock-elem-R1175 -{+client-header-tagger{ab2p-unblock-elem-R1175} \ -} -# @@||expdash.adtlgc.com^$xmlhttprequest,domain=expressen.se (easylistchina+easylist.txt: 61019) -.expdash.adtlgc.com -# @@||expdash.adtlgc.com^$xmlhttprequest,domain=expressen.se (easylist.txt: 50534) -.expdash.adtlgc.com - -#ab2p-unblock-elem-R1176 -{+client-header-tagger{ab2p-unblock-elem-R1176} \ -} -# @@||poponclick.com/pp800x600.js?id=$domain=exrapidleech.info (easylistchina+easylist.txt: 60658) -.poponclick.com/pp800x600\.js\?id= -# @@||poponclick.com/pp800x600.js?id=$domain=exrapidleech.info (easylist.txt: 50173) -.poponclick.com/pp800x600\.js\?id= - #ab2p-unblock-elem-R197 {+client-header-tagger{ab2p-unblock-elem-R197} \ } -# @@||ziffprod.com/cse/$script,domain=extremetech.com (easylistchina+easylist.txt: 45852) -.ziffprod.com/cse/ -# @@||googletagservices.com/tag/js/gpt.js$domain=extremetech.com (easylistchina+easylist.txt: 45851) -.googletagservices.com/tag/js/gpt\.js -# @@||disquscdn.com^$script,domain=extremetech.com (easylistchina+easylist.txt: 45850) -.disquscdn.com -# @@||disqus.com^$script,domain=extremetech.com (easylistchina+easylist.txt: 45849) -.disqus.com -# @@||connect.facebook.net^$third-party,domain=extremetech.com (easylistchina+easylist.txt: 45848) -.connect.facebook.net -# @@||apis.google.com^$third-party,domain=extremetech.com (easylistchina+easylist.txt: 45847) -.apis.google.com -# @@||ziffprod.com/cse/$script,domain=extremetech.com (easylist.txt: 35367) -.ziffprod.com/cse/ -# @@||googletagservices.com/tag/js/gpt.js$domain=extremetech.com (easylist.txt: 35366) -.googletagservices.com/tag/js/gpt\.js -# @@||disquscdn.com^$script,domain=extremetech.com (easylist.txt: 35365) -.disquscdn.com -# @@||disqus.com^$script,domain=extremetech.com (easylist.txt: 35364) -.disqus.com -# @@||connect.facebook.net^$third-party,domain=extremetech.com (easylist.txt: 35363) -.connect.facebook.net -# @@||apis.google.com^$third-party,domain=extremetech.com (easylist.txt: 35362) -.apis.google.com +# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina.txt: 10066) +.127.0.0.1/admin/admin_ad\.php\? -#ab2p-unblock-elem-R1177 -{+client-header-tagger{ab2p-unblock-elem-R1177} \ +#ab2p-unblock-elem-R198 +{+client-header-tagger{ab2p-unblock-elem-R198} \ } -# @@||extremetubemate.com/?AFNO=$popup,domain=extremetube.com (easylistchina+easylist.txt: 61793) -.extremetubemate.com/\?AFNO= -# @@||extremetubefreehd.com^*.Extreme_HeaderTab&$popup,domain=extremetube.com (easylistchina+easylist.txt: 61792) -.extremetubefreehd.com/.*\.Extreme_HeaderTab& -# @@||extremetubemate.com/?AFNO=$popup,domain=extremetube.com (easylist.txt: 51308) -.extremetubemate.com/\?AFNO= -# @@||extremetubefreehd.com^*.Extreme_HeaderTab&$popup,domain=extremetube.com (easylist.txt: 51307) -.extremetubefreehd.com/.*\.Extreme_HeaderTab& +# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 10017) +/(.*/)?css/ad\. +# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 9978) +/(.*/)?168logo\.gif +168logo.gif*. -#ab2p-unblock-elem-R1178 -{+client-header-tagger{ab2p-unblock-elem-R1178} \ +#ab2p-unblock-elem-R199 +{+client-header-tagger{ab2p-unblock-elem-R199} \ } -# @@||as.sexad.net^*?p=*&v=$popup,domain=extremetube.com|keezmovies.com|pornhub.com|redtube.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61790) -.as.sexad.net/.*\?p=.*&v= -# @@||as.sexad.net^*?p=*&v=$popup,domain=extremetube.com|keezmovies.com|pornhub.com|redtube.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylist.txt: 51305) -.as.sexad.net/.*\?p=.*&v= +# @@/cms/ads/*$domain=17.com (easylistchina.txt: 10014) +/(.*/)?cms/ads/.* -#ab2p-unblock-elem-R1179 -{+client-header-tagger{ab2p-unblock-elem-R1179} \ +#ab2p-unblock-elem-R200 +{+client-header-tagger{ab2p-unblock-elem-R200} \ } -# @@||wmtrafficentry.com/cgi-bin/ewm.cgi/*_HeaderTab?$popup,domain=extremetube.com|spankwire.com (easylistchina+easylist.txt: 61806) -.wmtrafficentry.com/cgi-bin/ewm\.cgi/.*_HeaderTab\? -# @@||securejoinsite.com/loader.php?*_HeaderTab&$popup,domain=extremetube.com|spankwire.com (easylistchina+easylist.txt: 61799) -.securejoinsite.com/loader\.php\?.*_HeaderTab& -# @@||wmtrafficentry.com/cgi-bin/ewm.cgi/*_HeaderTab?$popup,domain=extremetube.com|spankwire.com (easylist.txt: 51321) -.wmtrafficentry.com/cgi-bin/ewm\.cgi/.*_HeaderTab\? -# @@||securejoinsite.com/loader.php?*_HeaderTab&$popup,domain=extremetube.com|spankwire.com (easylist.txt: 51314) -.securejoinsite.com/loader\.php\?.*_HeaderTab& +# @@/ads/*$domain=189.cn (easylistchina.txt: 9994) +/(.*/)?ads/.* -#ab2p-unblock-elem-R1180 -{+client-header-tagger{ab2p-unblock-elem-R1180} \ +#ab2p-unblock-elem-R201 +{+client-header-tagger{ab2p-unblock-elem-R201} \ } -# @@||ezone.com/banners/swfs/$object,domain=ezone.com (easylistchina+easylist.txt: 58811) -.ezone.com/banners/swfs/ -# @@||ezone.com/banners/swfs/$object,domain=ezone.com (easylist.txt: 48326) -.ezone.com/banners/swfs/ +# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina.txt: 10033) +/(.*/)?pop\.js$ +pop.js #ab2p-unblock-elem-R202 {+client-header-tagger{ab2p-unblock-elem-R202} \ } -# @@||fbexternal-a.akamaihd.net/safe_image.php?$image,domain=facebook.com (easylistchina+easylist.txt: 58816) -.fbexternal-a.akamaihd.net/safe_image\.php\? -# @@||affiliates.mozilla.org^$subdocument,domain=facebook.com (easylistchina+easylist.txt: 58360) -.affiliates.mozilla.org -# @@||fbexternal-a.akamaihd.net/safe_image.php?$image,domain=facebook.com (easylist.txt: 48331) -.fbexternal-a.akamaihd.net/safe_image\.php\? -# @@||affiliates.mozilla.org^$subdocument,domain=facebook.com (easylist.txt: 47875) -.affiliates.mozilla.org +# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina.txt: 10022) +/(.*/)?ima/.*ad\. -#ab2p-unblock-elem-R1181 -{+client-header-tagger{ab2p-unblock-elem-R1181} \ +#ab2p-unblock-elem-R203 +{+client-header-tagger{ab2p-unblock-elem-R203} \ } -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fpagead%2Fconversion.js$xmlhttprequest,domain=factom.org (easylistchina+easylist.txt: 58104) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fpagead%2Fconversion\.js -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fpagead%2Fconversion.js$xmlhttprequest,domain=factom.org (easylist.txt: 47619) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fpagead%2Fconversion\.js +# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina.txt: 9968) +/.*&adurl=http:// -#ab2p-unblock-elem-R1182 -{+client-header-tagger{ab2p-unblock-elem-R1182} \ +#ab2p-unblock-elem-R204 +{+client-header-tagger{ab2p-unblock-elem-R204} \ } -# @@||advertise.fairfaxmedia.com.au^$domain=fairfaxmedia.com.au|myfairfax.com.au (easylistchina+easylist.txt: 58332) -.advertise.fairfaxmedia.com.au -# @@||advertise.fairfaxmedia.com.au^$domain=fairfaxmedia.com.au|myfairfax.com.au (easylist.txt: 47847) -.advertise.fairfaxmedia.com.au +# @@/assets/adv/*$domain=4008927927.cn (easylistchina.txt: 10012) +/(.*/)?assets/adv/.* -#ab2p-unblock-elem-R1183 -{+client-header-tagger{ab2p-unblock-elem-R1183} \ +#ab2p-unblock-elem-R206 +{+client-header-tagger{ab2p-unblock-elem-R206} \ } -# @@||ads.ehealthcaresolutions.com/tag/$domain=familydoctor.org (easylistchina+easylist.txt: 58229) -.ads.ehealthcaresolutions.com/tag/ -# @@||ads.ehealthcaresolutions.com/tag/$domain=familydoctor.org (easylist.txt: 47744) -.ads.ehealthcaresolutions.com/tag/ +# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina.txt: 10198) +.cpro.baidu.com/cpro/ui/c\.js -#ab2p-unblock-elem-R1184 -{+client-header-tagger{ab2p-unblock-elem-R1184} \ +#ab2p-unblock-elem-R207 +{+client-header-tagger{ab2p-unblock-elem-R207} \ } -# @@||app.medyanetads.com/ad.js$domain=fanatik.com.tr (easylistchina+easylist.txt: 60981) -.app.medyanetads.com/ad\.js -# @@||app.medyanetads.com/ad.js$domain=fanatik.com.tr (easylist.txt: 50496) -.app.medyanetads.com/ad\.js +# @@||5i5j.*/images/ad$domain=5i5j.com (easylistchina.txt: 10093) +.5i5j.*./(.*/)?images/ad -#ab2p-unblock-elem-R1185 -{+client-header-tagger{ab2p-unblock-elem-R1185} \ +#ab2p-unblock-elem-R208 +{+client-header-tagger{ab2p-unblock-elem-R208} \ } -# @@||offerpalads.com^*/opmbanner.js$domain=farmville.com (easylistchina+easylist.txt: 59290) -.offerpalads.com/.*/opmbanner\.js -# @@||offerpalads.com^*/opmbanner.js$domain=farmville.com (easylist.txt: 48805) -.offerpalads.com/.*/opmbanner\.js +# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina.txt: 10184) +.cbjs.baidu.com/js/o\.js -#ab2p-unblock-elem-R1186 -{+client-header-tagger{ab2p-unblock-elem-R1186} \ +#ab2p-unblock-elem-R209 +{+client-header-tagger{ab2p-unblock-elem-R209} \ } -# @@||tvzavr.ru^*^autoplay=0$domain=fastpic.ru (advblock.txt: 7416) -.tvzavr.ru/.*[^\w%.-]autoplay=0 +# @@/common/cf/*$domain=66u.com|dataguru.cn|oneplusbbs.com|readboy.com (easylistchina.txt: 10016) +/(.*/)?common/cf/.* -#ab2p-unblock-elem-R1187 -{+client-header-tagger{ab2p-unblock-elem-R1187} \ +#ab2p-unblock-elem-R210 +{+client-header-tagger{ab2p-unblock-elem-R210} \ } -# @@||epmads.com/js/show_ads_epmads.js$domain=fcportables.com (easylistchina+easylist.txt: 60254) -.epmads.com/js/show_ads_epmads\.js -# @@||epmads.com/ads?$subdocument,domain=fcportables.com (easylistchina+easylist.txt: 60253) -.epmads.com/ads\? -# @@||epmads.com/js/show_ads_epmads.js$domain=fcportables.com (easylist.txt: 49769) -.epmads.com/js/show_ads_epmads\.js -# @@||epmads.com/ads?$subdocument,domain=fcportables.com (easylist.txt: 49768) -.epmads.com/ads\? +# @@/images/*/*.gif$domain=67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina.txt: 10023) +/(.*/)?images/.*/.*\.gif -#ab2p-unblock-elem-R1188 -{+client-header-tagger{ab2p-unblock-elem-R1188} \ +#ab2p-unblock-elem-R211 +{+client-header-tagger{ab2p-unblock-elem-R211} \ } -# @@||fest-ry.ru/*/images/ad$image,domain=fest-ry.ru (advblock.txt: 7298) -.fest-ry.ru/.*/images/ad +# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina.txt: 10434) +/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ +/\.7k7k.com\/(?!(ad|load)) -#ab2p-unblock-elem-R1189 -{+client-header-tagger{ab2p-unblock-elem-R1189} \ +#ab2p-unblock-elem-R212 +{+client-header-tagger{ab2p-unblock-elem-R212} \ } -# @@/upload/bx/*$image,domain=ffan.ru|shop.kz|transbank.ru (advblock.txt: 7214) -/(.*/)?upload/bx/.* +# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina.txt: 9981) +/(.*/)?ad_file/.* -#ab2p-unblock-elem-R1190 -{+client-header-tagger{ab2p-unblock-elem-R1190} \ +#ab2p-unblock-elem-R213 +{+client-header-tagger{ab2p-unblock-elem-R213} \ } -# @@||pagead2.googlesyndication.com/pagead/expansion_embed.js$domain=ffiles.com|full-ngage-games.blogspot.com|kingofgames.net|megaallday.com|ninjaraider.com|nonags.com|upfordown.com|wtf-teen.com (easylistchina+easylist.txt: 60622) -.pagead2.googlesyndication.com/pagead/expansion_embed\.js -# @@||pagead2.googlesyndication.com/pagead/expansion_embed.js$domain=ffiles.com|full-ngage-games.blogspot.com|kingofgames.net|megaallday.com|ninjaraider.com|nonags.com|upfordown.com|wtf-teen.com (easylist.txt: 50137) -.pagead2.googlesyndication.com/pagead/expansion_embed\.js +# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina.txt: 10287) +.l.qq.com/lview\? +# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina.txt: 10277) +.j.wit.qq.com/sc/crystal_ad\.js\? -#ab2p-unblock-elem-R1191 -{+client-header-tagger{ab2p-unblock-elem-R1191} \ +#ab2p-unblock-elem-R214 +{+client-header-tagger{ab2p-unblock-elem-R214} \ } -# @@||enrondev.net/ads/server/www/delivery/*&zoneid=1$subdocument,domain=filecore.co.nz (easylistchina+easylist.txt: 60249) -.enrondev.net/ads/server/www/delivery/.*&zoneid=1 -# @@||enrondev.net/ads/server/www/delivery/*&zoneid=1$subdocument,domain=filecore.co.nz (easylist.txt: 49764) -.enrondev.net/ads/server/www/delivery/.*&zoneid=1 +# @@/ad_images/*$domain=88box.com (easylistchina.txt: 9982) +/(.*/)?ad_images/.* -#ab2p-unblock-elem-R1192 -{+client-header-tagger{ab2p-unblock-elem-R1192} \ +#ab2p-unblock-elem-R215 +{+client-header-tagger{ab2p-unblock-elem-R215} \ } -# @@||openx.net/w/$script,domain=fileover.net (easylistchina+easylist.txt: 60613) -.openx.net/w/ -# @@||ax-d.pixfuture.net/w/$script,domain=fileover.net (easylistchina+easylist.txt: 60093) -.ax-d.pixfuture.net/w/ -# @@||admeld.com/meld128.js$domain=fileover.net (easylistchina+easylist.txt: 59999) -.admeld.com/meld128\.js -# @@||admeld.com/ad/iframe/1122/pixfuture/300x250/$subdocument,domain=fileover.net (easylistchina+easylist.txt: 59998) -.admeld.com/ad/iframe/1122/pixfuture/300x250/ -# @@||openx.net/w/$script,domain=fileover.net (easylist.txt: 50128) -.openx.net/w/ -# @@||ax-d.pixfuture.net/w/$script,domain=fileover.net (easylist.txt: 49608) -.ax-d.pixfuture.net/w/ -# @@||admeld.com/meld128.js$domain=fileover.net (easylist.txt: 49514) -.admeld.com/meld128\.js -# @@||admeld.com/ad/iframe/1122/pixfuture/300x250/$subdocument,domain=fileover.net (easylist.txt: 49513) -.admeld.com/ad/iframe/1122/pixfuture/300x250/ +# @@.com/ads/$domain=88boxjx.com (easylistchina.txt: 9973) +/.*\.com/ads/ +.*.com/ads/ -#ab2p-unblock-elem-R1193 -{+client-header-tagger{ab2p-unblock-elem-R1193} \ +#ab2p-unblock-elem-R216 +{+client-header-tagger{ab2p-unblock-elem-R216} \ } -# @@||pagead2.googlesyndication.com/simgad/25619783|$image,domain=filerev.cc (easylistchina+easylist.txt: 60632) -.pagead2.googlesyndication.com/simgad/25619783$ -# @@||calendrier.science^$script,domain=filerev.cc (easylistchina+easylist.txt: 60132) -.calendrier.science -# @@||pagead2.googlesyndication.com/simgad/25619783|$image,domain=filerev.cc (easylist.txt: 50147) -.pagead2.googlesyndication.com/simgad/25619783$ -# @@||calendrier.science^$script,domain=filerev.cc (easylist.txt: 49647) -.calendrier.science +# @@/web/ads/*$domain=95516.com (easylistchina.txt: 10042) +/(.*/)?web/ads/.* #ab2p-unblock-elem-R217 {+client-header-tagger{ab2p-unblock-elem-R217} \ } -# @@||histats.com/*.js$domain=filmovizija.in (easylistchina+easylist.txt: 60381) -.histats.com/.*\.js -# @@||eosads.com/popunder.js$domain=filmovizija.in (easylistchina+easylist.txt: 60251) -.eosads.com/popunder\.js -# @@||adscale.de/getads.js$domain=filmovizija.in (easylistchina+easylist.txt: 60020) -.adscale.de/getads\.js -# @@||ads.exoclick.com/ads.js$domain=filmovizija.in (easylistchina+easylist.txt: 60011) -.ads.exoclick.com/ads\.js -# @@||188.165.28.32/advert*.js$domain=filmovizija.in (easylistchina+easylist.txt: 59962) -.188.165.28.32/advert.*\.js -# @@||176.31.95.144^$script,domain=filmovizija.in (easylistchina+easylist.txt: 59961) -.176.31.95.144 -# @@|http://*.*_$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 59944) -/.*\..*_ -.*.*./.*_ -# @@|http://*.*=$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 59943) -/.*\..*= -.*.*./.*= -# @@/advert*.js?$script,domain=filmovizija.in (easylistchina+easylist.txt: 59919) -/(.*/)?advert.*\.js\? -advert*./.*\.js\? -# @@||vk.com/share.php?$script,domain=filmovizija.in (easylistchina+easylist.txt: 45880) -.vk.com/share\.php\? -# @@||twitter.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45879) -.twitter.com -# @@||share.yandex.ru^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45878) -.share.yandex.ru -# @@||histats.com/stats/$script,domain=filmovizija.in (easylistchina+easylist.txt: 45877) -.histats.com/stats/ -# @@||feeds.delicious.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45876) -.feeds.delicious.com -# @@||facebook.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45875) -.facebook.com -# @@||api.pinterest.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45874) -.api.pinterest.com -# @@||histats.com/*.js$domain=filmovizija.in (easylist.txt: 49896) -.histats.com/.*\.js -# @@||eosads.com/popunder.js$domain=filmovizija.in (easylist.txt: 49766) -.eosads.com/popunder\.js -# @@||adscale.de/getads.js$domain=filmovizija.in (easylist.txt: 49535) -.adscale.de/getads\.js -# @@||ads.exoclick.com/ads.js$domain=filmovizija.in (easylist.txt: 49526) -.ads.exoclick.com/ads\.js -# @@||188.165.28.32/advert*.js$domain=filmovizija.in (easylist.txt: 49477) -.188.165.28.32/advert.*\.js -# @@||176.31.95.144^$script,domain=filmovizija.in (easylist.txt: 49476) -.176.31.95.144 -# @@|http://*.*_$script,third-party,domain=filmovizija.in (easylist.txt: 49459) -/.*\..*_ -.*.*./.*_ -# @@|http://*.*=$script,third-party,domain=filmovizija.in (easylist.txt: 49458) -/.*\..*= -.*.*./.*= -# @@/advert*.js?$script,domain=filmovizija.in (easylist.txt: 49434) -/(.*/)?advert.*\.js\? -advert*./.*\.js\? -# @@||vk.com/share.php?$script,domain=filmovizija.in (easylist.txt: 35395) -.vk.com/share\.php\? -# @@||twitter.com^$script,domain=filmovizija.in (easylist.txt: 35394) -.twitter.com -# @@||share.yandex.ru^$script,domain=filmovizija.in (easylist.txt: 35393) -.share.yandex.ru -# @@||histats.com/stats/$script,domain=filmovizija.in (easylist.txt: 35392) -.histats.com/stats/ -# @@||feeds.delicious.com^$script,domain=filmovizija.in (easylist.txt: 35391) -.feeds.delicious.com -# @@||facebook.com^$script,domain=filmovizija.in (easylist.txt: 35390) -.facebook.com -# @@||api.pinterest.com^$script,domain=filmovizija.in (easylist.txt: 35389) -.api.pinterest.com +# @@/images/ad/*$domain=9588.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|snh48.com|sozi.cn|tingbook.com (easylistchina.txt: 10025) +/(.*/)?images/ad/.* -#ab2p-unblock-elem-R1194 -{+client-header-tagger{ab2p-unblock-elem-R1194} \ +#ab2p-unblock-elem-R218 +{+client-header-tagger{ab2p-unblock-elem-R218} \ } -# @@||popads.net/pop.js$domain=filmovizija.in|go4up.com|hqq.tv|sizedrive.com (easylistchina+easylist.txt: 60657) -.popads.net/pop\.js -# @@||popads.net/pop.js$domain=filmovizija.in|go4up.com|hqq.tv|sizedrive.com (easylist.txt: 50172) -.popads.net/pop\.js +# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina.txt: 10326) +.pos.baidu.com/ecom\? -#ab2p-unblock-elem-R1195 -{+client-header-tagger{ab2p-unblock-elem-R1195} \ +#ab2p-unblock-elem-R219 +{+client-header-tagger{ab2p-unblock-elem-R219} \ } -# @@/banner.jpg?$image,domain=filmux.net (easylistchina+easylist.txt: 59924) -/(.*/)?banner\.jpg\? -# @@/banner.jpg?$image,domain=filmux.net (easylist.txt: 49439) -/(.*/)?banner\.jpg\? +# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina.txt: 10116) +.ad.alimama.com -#ab2p-unblock-elem-R1196 -{+client-header-tagger{ab2p-unblock-elem-R1196} \ +#ab2p-unblock-elem-R220 +{+client-header-tagger{ab2p-unblock-elem-R220} \ } -# @@||fwcdn.pl^$script,domain=filmweb.pl (easylistchina+easylist.txt: 60316) -.fwcdn.pl -# @@||fwcdn.pl^$script,domain=filmweb.pl (easylist.txt: 49831) -.fwcdn.pl - -#ab2p-unblock-elem-R1197 -{+client-header-tagger{ab2p-unblock-elem-R1197} \ -} -# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina+easylist.txt: 10371) -.sinaimg.cn/cj/deco/ - -#ab2p-unblock-elem-R1198 -{+client-header-tagger{ab2p-unblock-elem-R1198} \ -} -# @@||artxun.com^$domain=findart.com.cn (easylistchina+easylist.txt: 10174) -.artxun.com - -#ab2p-unblock-elem-R1199 -{+client-header-tagger{ab2p-unblock-elem-R1199} \ -} -# @@||pagead2.googlesyndication.com/pub-config/ca-pub-$script,domain=firstonetv.com (easylistchina+easylist.txt: 60630) -.pagead2.googlesyndication.com/pub-config/ca-pub- -# @@||firstonetv.com^$script,domain=firstonetv.com (easylistchina+easylist.txt: 60291) -.firstonetv.com -# @@||pagead2.googlesyndication.com/pub-config/ca-pub-$script,domain=firstonetv.com (easylist.txt: 50145) -.pagead2.googlesyndication.com/pub-config/ca-pub- -# @@||firstonetv.com^$script,domain=firstonetv.com (easylist.txt: 49806) -.firstonetv.com +# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina.txt: 10111) +.ad-specs.guoshipartners.com/static/js/isip\.js #ab2p-unblock-elem-R221 {+client-header-tagger{ab2p-unblock-elem-R221} \ } -# @@||adspynet.com/test?*&oin=0$script,domain=fishki.net (advblock.txt: 7623) -.adspynet.com/test\?.*&oin=0 -# @@||adspynet.com/code?*&oin=0&$script,domain=fishki.net (advblock.txt: 7622) -.adspynet.com/code\?.*&oin=0& +# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina.txt: 10272) +.inskinmedia.com/.*/js/base/api/ -#ab2p-unblock-elem-R1200 -{+client-header-tagger{ab2p-unblock-elem-R1200} \ +#ab2p-unblock-elem-R222 +{+client-header-tagger{ab2p-unblock-elem-R222} \ } -# @@||flumotion.com/play/player?*/300x250-$subdocument,domain=flaixfm.cat (easylistchina+easylist.txt: 61333) -.flumotion.com/play/player\?.*/300x250- -# @@||flumotion.com/play/player?*/300x250-$subdocument,domain=flaixfm.cat (easylist.txt: 50848) -.flumotion.com/play/player\?.*/300x250- +# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina.txt: 10426) +.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js -#ab2p-unblock-elem-R1201 -{+client-header-tagger{ab2p-unblock-elem-R1201} \ +#ab2p-unblock-elem-R223 +{+client-header-tagger{ab2p-unblock-elem-R223} \ } -# @@||flashgames247.com/advertising/ima-vast-preroll.swf$object,domain=flashgames247.com (easylistchina+easylist.txt: 58825) -.flashgames247.com/advertising/ima-vast-preroll\.swf -# @@||flashgames247.com/advertising/ima-vast-preroll.swf$object,domain=flashgames247.com (easylist.txt: 48340) -.flashgames247.com/advertising/ima-vast-preroll\.swf +# @@/adbanner/*$image,domain=books.com.tw (easylistchina.txt: 9983) +/(.*/)?adbanner/.* -#ab2p-unblock-elem-R1202 -{+client-header-tagger{ab2p-unblock-elem-R1202} \ +#ab2p-unblock-elem-R224 +{+client-header-tagger{ab2p-unblock-elem-R224} \ } -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoads.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylistchina+easylist.txt: 59332) -.pagead2.googlesyndication.com/pagead/scache/googlevideoads\.swf -# @@||pagead2.googlesyndication.com/pagead/googlevideoadslibrary.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylistchina+easylist.txt: 59328) -.pagead2.googlesyndication.com/pagead/googlevideoadslibrary\.swf -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoads.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylist.txt: 48847) -.pagead2.googlesyndication.com/pagead/scache/googlevideoads\.swf -# @@||pagead2.googlesyndication.com/pagead/googlevideoadslibrary.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylist.txt: 48843) -.pagead2.googlesyndication.com/pagead/googlevideoadslibrary\.swf +# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina.txt: 10091) +.58.com/ds/tgbrand/ -#ab2p-unblock-elem-R1203 -{+client-header-tagger{ab2p-unblock-elem-R1203} \ +#ab2p-unblock-elem-R225 +{+client-header-tagger{ab2p-unblock-elem-R225} \ } -# @@||ads.flipkart.com/delivery/ck.php?$popup,domain=flipkart.com (easylistchina+easylist.txt: 61396) -.ads.flipkart.com/delivery/ck\.php\? -# @@||ads.flipkart.com/delivery/ck.php?$popup,domain=flipkart.com (easylist.txt: 50911) -.ads.flipkart.com/delivery/ck\.php\? +# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina.txt: 10000) +/(.*/)?advert/.* -#ab2p-unblock-elem-R1204 -{+client-header-tagger{ab2p-unblock-elem-R1204} \ +#ab2p-unblock-elem-R60 +{+client-header-tagger{ab2p-unblock-elem-R60} \ } -# @@||e70123.com^$script,domain=flv.tv (easylistchina+easylist.txt: 10235) +# @@/sda/weixin$domain=chineseinla.com (easylistchina.txt: 10036) +/(.*/)?sda/weixin + +#ab2p-unblock-elem-R226 +{+client-header-tagger{ab2p-unblock-elem-R226} \ +} +# @@/adfile/*$domain=cidianwang.com (easylistchina.txt: 9986) +/(.*/)?adfile/.* + +#ab2p-unblock-elem-R227 +{+client-header-tagger{ab2p-unblock-elem-R227} \ +} +# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina.txt: 10321) +.pos.baidu.com/acom\?di= +# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina.txt: 10029) +/(.*/)?js/ad_test\.js + +#ab2p-unblock-elem-R228 +{+client-header-tagger{ab2p-unblock-elem-R228} \ +} +# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina.txt: 10183) +.cbjs.baidu.com/js/m\.js + +#ab2p-unblock-elem-R229 +{+client-header-tagger{ab2p-unblock-elem-R229} \ +} +# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina.txt: 10175) +.cb.baidu.com/ecom\? + +#ab2p-unblock-elem-R230 +{+client-header-tagger{ab2p-unblock-elem-R230} \ +} +# @@/adpic/*$domain=czsrc.com|nieyou.com (easylistchina.txt: 9993) +/(.*/)?adpic/.* + +#ab2p-unblock-elem-R231 +{+client-header-tagger{ab2p-unblock-elem-R231} \ +} +# @@||mediav.com^$domain=dev.360.cn (easylistchina.txt: 10293) +.mediav.com + +#ab2p-unblock-elem-R232 +{+client-header-tagger{ab2p-unblock-elem-R232} \ +} +# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina.txt: 10009) +/(.*/)?advs/.* + +#ab2p-unblock-elem-R233 +{+client-header-tagger{ab2p-unblock-elem-R233} \ +} +# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina.txt: 10314) +.pagead2.googlesyndication.com/pagead/show_ads\.js + +#ab2p-unblock-elem-R234 +{+client-header-tagger{ab2p-unblock-elem-R234} \ +} +# @@/adframe.$domain=dnvod.eu (easylistchina.txt: 9987) +/(.*/)?adframe\. +adframe.*. + +#ab2p-unblock-elem-R235 +{+client-header-tagger{ab2p-unblock-elem-R235} \ +} +# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina.txt: 10041) +/(.*/)?upload/ads/.*\.jpg + +#ab2p-unblock-elem-R236 +{+client-header-tagger{ab2p-unblock-elem-R236} \ +} +# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina.txt: 10054) +/(.*/)?AD/ + +#ab2p-unblock-elem-R237 +{+client-header-tagger{ab2p-unblock-elem-R237} \ +} +# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina.txt: 10186) +.cbjs.baidu.com + +#ab2p-unblock-elem-R238 +{+client-header-tagger{ab2p-unblock-elem-R238} \ +} +# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina.txt: 10176) +.cb.baidu.com/ecom\?di= + +#ab2p-unblock-elem-R239 +{+client-header-tagger{ab2p-unblock-elem-R239} \ +} +# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina.txt: 10387) +.ubmcmm.baidustatic.com + +#ab2p-unblock-elem-R240 +{+client-header-tagger{ab2p-unblock-elem-R240} \ +} +# @@/img/ad/*$domain=exp.qq.com (easylistchina.txt: 10026) +/(.*/)?img/ad/.* + +#ab2p-unblock-elem-R241 +{+client-header-tagger{ab2p-unblock-elem-R241} \ +} +# @@/advertisement.js$domain=fharr.com|gimhoy.com (easylistchina.txt: 10005) +/(.*/)?advertisement\.js +advertisement.js*. + +#ab2p-unblock-elem-R242 +{+client-header-tagger{ab2p-unblock-elem-R242} \ +} +# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina.txt: 10358) +.sinaimg.cn/cj/deco/ + +#ab2p-unblock-elem-R243 +{+client-header-tagger{ab2p-unblock-elem-R243} \ +} +# @@||artxun.com^$domain=findart.com.cn (easylistchina.txt: 10157) +.artxun.com + +#ab2p-unblock-elem-R244 +{+client-header-tagger{ab2p-unblock-elem-R244} \ +} +# @@||f70123.com^$script,domain=flv.tv (easylistchina.txt: 10233) +.f70123.com +# @@||e719.net^$script,domain=flv.tv (easylistchina.txt: 10222) +.e719.net +# @@||e70123.com^$script,domain=flv.tv (easylistchina.txt: 10221) .e70123.com -# @@||70e.com^$script,domain=flv.tv (easylistchina+easylist.txt: 10117) +# @@||e701.net^*=60&$subdocument,domain=flv.tv (easylistchina.txt: 10220) +.e701.net/.*=60& +# @@||e701.net^$script,domain=flv.tv (easylistchina.txt: 10219) +.e701.net +# @@||70e.com^$script,domain=flv.tv (easylistchina.txt: 10099) .70e.com -# @@=300&$subdocument,domain=flv.tv (easylistchina+easylist.txt: 10062) +# @@=300&$subdocument,domain=flv.tv (easylistchina.txt: 10044) /.*=300& -#ab2p-unblock-elem-R1205 -{+client-header-tagger{ab2p-unblock-elem-R1205} \ -} -# @@||fastclick.net/w/get.media?sid=58322&tp=5&$script,domain=flv2mp3.com (easylistchina+easylist.txt: 60270) -.fastclick.net/w/get\.media\?sid=58322&tp=5& -# @@||fastclick.net/w/get.media?sid=58322&tp=5&$script,domain=flv2mp3.com (easylist.txt: 49785) -.fastclick.net/w/get\.media\?sid=58322&tp=5& - -#ab2p-unblock-elem-R1206 -{+client-header-tagger{ab2p-unblock-elem-R1206} \ -} -# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina+easylist.txt: 10283) -.inte.sogou.com/ask\?id= -# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina+easylist.txt: 10277) -.images.sohu.com/cs/ - -#ab2p-unblock-elem-R1207 -{+client-header-tagger{ab2p-unblock-elem-R1207} \ -} -# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina+easylist.txt: 10284) -.itc.cn/public_photo/advert/ - -#ab2p-unblock-elem-R1208 -{+client-header-tagger{ab2p-unblock-elem-R1208} \ -} -# @@||adsremote.scrippsnetworks.com/js.ng/adtype=vsw$script,domain=food.com (easylistchina+easylist.txt: 58312) -.adsremote.scrippsnetworks.com/js\.ng/adtype=vsw -# @@||adsremote.scrippsnetworks.com/js.ng/adtype=vsw$script,domain=food.com (easylist.txt: 47827) -.adsremote.scrippsnetworks.com/js\.ng/adtype=vsw - -#ab2p-unblock-elem-R1209 -{+client-header-tagger{ab2p-unblock-elem-R1209} \ -} -# @@||adm.fwmrm.net^*/AdManager.js$domain=foodnetwork.com|msnbc.com|player.theplatform.com|sky.com (easylistchina+easylist.txt: 58203) -.adm.fwmrm.net/.*/AdManager\.js -# @@||adm.fwmrm.net^*/AdManager.js$domain=foodnetwork.com|msnbc.com|player.theplatform.com|sky.com (easylist.txt: 47718) -.adm.fwmrm.net/.*/AdManager\.js - -#ab2p-unblock-elem-R1210 -{+client-header-tagger{ab2p-unblock-elem-R1210} \ -} -# @@||foodzy.ru/i/b/$image,domain=foodzy.ru (advblock.txt: 7299) -.foodzy.ru/i/b/ - -#ab2p-unblock-elem-R1211 -{+client-header-tagger{ab2p-unblock-elem-R1211} \ -} -# @@||forbesimg.com/scripts/advertisement.js$domain=forbes.com (easylistchina+easylist.txt: 60300) -.forbesimg.com/scripts/advertisement\.js -# @@||rt.liftdna.com/forbes_welcome.js$domain=forbes.com (easylistchina+easylist.txt: 59474) -.rt.liftdna.com/forbes_welcome\.js -# @@||g.doubleclick.net/gampad/ads?*www.forbes.com%2Ffdc%2Fwelcome_mjx.shtml$script,domain=forbes.com (easylistchina+easylist.txt: 58852) -.g.doubleclick.net/gampad/ads\?.*www\.forbes\.com%2Ffdc%2Fwelcome_mjx\.shtml -# @@||forbesimg.com/assets/js/forbes/right_rail_sticky_ad.js$domain=forbes.com (easylistchina+easylist.txt: 58834) -.forbesimg.com/assets/js/forbes/right_rail_sticky_ad\.js -# @@||doubleclick.net^*/fdc.forbes/*;pos=thought;$script,domain=forbes.com (easylistchina+easylist.txt: 58732) -.doubleclick.net/.*/fdc\.forbes/.*;pos=thought; -# @@||ad.doubleclick.net/N7175/adj/fdc.forbes/welcome;id=fdc/welcome;pos=thoughtx;$script,domain=forbes.com (easylistchina+easylist.txt: 58159) -.ad.doubleclick.net/N7175/adj/fdc\.forbes/welcome;id=fdc/welcome;pos=thoughtx; -# @@||forbesimg.com/scripts/advertisement.js$domain=forbes.com (easylist.txt: 49815) -.forbesimg.com/scripts/advertisement\.js -# @@||rt.liftdna.com/forbes_welcome.js$domain=forbes.com (easylist.txt: 48989) -.rt.liftdna.com/forbes_welcome\.js -# @@||g.doubleclick.net/gampad/ads?*www.forbes.com%2Ffdc%2Fwelcome_mjx.shtml$script,domain=forbes.com (easylist.txt: 48367) -.g.doubleclick.net/gampad/ads\?.*www\.forbes\.com%2Ffdc%2Fwelcome_mjx\.shtml -# @@||forbesimg.com/assets/js/forbes/right_rail_sticky_ad.js$domain=forbes.com (easylist.txt: 48349) -.forbesimg.com/assets/js/forbes/right_rail_sticky_ad\.js -# @@||doubleclick.net^*/fdc.forbes/*;pos=thought;$script,domain=forbes.com (easylist.txt: 48247) -.doubleclick.net/.*/fdc\.forbes/.*;pos=thought; -# @@||ad.doubleclick.net/N7175/adj/fdc.forbes/welcome;id=fdc/welcome;pos=thoughtx;$script,domain=forbes.com (easylist.txt: 47674) -.ad.doubleclick.net/N7175/adj/fdc\.forbes/welcome;id=fdc/welcome;pos=thoughtx; - -#ab2p-unblock-elem-R1212 -{+client-header-tagger{ab2p-unblock-elem-R1212} \ -} -# @@||rt.liftdna.com/liftrtb2_2.js$domain=formspring.me (easylistchina+easylist.txt: 59476) -.rt.liftdna.com/liftrtb2_2\.js -# @@||rt.liftdna.com/fs.js$domain=formspring.me (easylistchina+easylist.txt: 59475) -.rt.liftdna.com/fs\.js -# @@||rt.liftdna.com/liftrtb2_2.js$domain=formspring.me (easylist.txt: 48991) -.rt.liftdna.com/liftrtb2_2\.js -# @@||rt.liftdna.com/fs.js$domain=formspring.me (easylist.txt: 48990) -.rt.liftdna.com/fs\.js - -#ab2p-unblock-elem-R1213 -{+client-header-tagger{ab2p-unblock-elem-R1213} \ -} -# @@||intellitxt.com/intellitxt/front.asp?ipid=$script,domain=forums.tweaktown.com (easylistchina+easylist.txt: 60425) -.intellitxt.com/intellitxt/front\.asp\?ipid= -# @@||intellitxt.com/intellitxt/front.asp?ipid=$script,domain=forums.tweaktown.com (easylist.txt: 49940) -.intellitxt.com/intellitxt/front\.asp\?ipid= - -#ab2p-unblock-elem-R1214 -{+client-header-tagger{ab2p-unblock-elem-R1214} \ -} -# @@||xboxlive.com/assets/*_banner_ad.$image,domain=forzamotorsport.net (easylistchina+easylist.txt: 59838) -.xboxlive.com/assets/.*_banner_ad\. -# @@||xboxlive.com/assets/*_banner_ad.$image,domain=forzamotorsport.net (easylist.txt: 49353) -.xboxlive.com/assets/.*_banner_ad\. - -#ab2p-unblock-elem-R1215 -{+client-header-tagger{ab2p-unblock-elem-R1215} \ -} -# @@||tapad.com/tapestry/tapestry-$script,domain=foxnews.com (easylistchina+easylist.txt: 59621) -.tapad.com/tapestry/tapestry- -# @@||tapad.com/tapestry/1?ta_partner_id=$script,domain=foxnews.com (easylistchina+easylist.txt: 59620) -.tapad.com/tapestry/1\?ta_partner_id= -# @@||fncstatic.com^*/fox411/fox-411-head-728x90.png$domain=foxnews.com (easylistchina+easylist.txt: 58832) -.fncstatic.com/.*/fox411/fox-411-head-728x90\.png -# @@||tapad.com/tapestry/tapestry-$script,domain=foxnews.com (easylist.txt: 49136) -.tapad.com/tapestry/tapestry- -# @@||tapad.com/tapestry/1?ta_partner_id=$script,domain=foxnews.com (easylist.txt: 49135) -.tapad.com/tapestry/1\?ta_partner_id= -# @@||fncstatic.com^*/fox411/fox-411-head-728x90.png$domain=foxnews.com (easylist.txt: 48347) -.fncstatic.com/.*/fox411/fox-411-head-728x90\.png - -#ab2p-unblock-elem-R1216 -{+client-header-tagger{ab2p-unblock-elem-R1216} \ -} -# @@||googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=free-send.ru|izzylaif.com|modfiles.ru|osettlers.com|trackitonline.ru (advblock.txt: 7571) -.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-elem-R1217 -{+client-header-tagger{ab2p-unblock-elem-R1217} \ -} -# @@||googlesyndication.com/pagead/js/adsbygoogle.js$domain=free-send.ru|modfiles.ru|osettlers.com (advblock.txt: 7572) -.googlesyndication.com/pagead/js/adsbygoogle\.js - -#ab2p-unblock-elem-R1218 -{+client-header-tagger{ab2p-unblock-elem-R1218} \ -} -# @@||cpalead.com/mygateway.php?pub=$script,domain=free-space.net|hxcmusic.com|hxcmusic.me|justfortrendygirls.com|mmusicz.com|receive-sms.com|runescapehack.net|spotifyripping.com|stumblehere.com|tvgorge.com|tvokay.com|videodownloadx.com|wtso.net (easylistchina+easylist.txt: 60184) -.cpalead.com/mygateway\.php\?pub= -# @@||cpalead.com/mygateway.php?pub=$script,domain=free-space.net|hxcmusic.com|hxcmusic.me|justfortrendygirls.com|mmusicz.com|receive-sms.com|runescapehack.net|spotifyripping.com|stumblehere.com|tvgorge.com|tvokay.com|videodownloadx.com|wtso.net (easylist.txt: 49699) -.cpalead.com/mygateway\.php\?pub= - -#ab2p-unblock-elem-R1219 -{+client-header-tagger{ab2p-unblock-elem-R1219} \ -} -# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina+easylist.txt: 10458) -/.*\.com%2Fanalytics\.js - -#ab2p-unblock-elem-R1220 -{+client-header-tagger{ab2p-unblock-elem-R1220} \ -} -# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina+easylist.txt: 10029) -/(.*/)?bag2\?r\[\]=.*&r\[\]= - -#ab2p-unblock-elem-R1221 -{+client-header-tagger{ab2p-unblock-elem-R1221} \ -} -# @@||urdupoint.googlecode.com/files/advertisement.js$domain=free.smsmarkaz.urdupoint.com (easylistchina+easylist.txt: 60847) -.urdupoint.googlecode.com/files/advertisement\.js -# @@||urdupoint.googlecode.com/files/advertisement.js$domain=free.smsmarkaz.urdupoint.com (easylist.txt: 50362) -.urdupoint.googlecode.com/files/advertisement\.js - -#ab2p-unblock-elem-R1222 -{+client-header-tagger{ab2p-unblock-elem-R1222} \ -} -# @@||googlecode.com^*/advertisement.js$domain=freeallmusic.net (easylistchina+easylist.txt: 60364) -.googlecode.com/.*/advertisement\.js -# @@||googlecode.com^*/advertisement.js$domain=freeallmusic.net (easylist.txt: 49879) -.googlecode.com/.*/advertisement\.js - -#ab2p-unblock-elem-R1223 -{+client-header-tagger{ab2p-unblock-elem-R1223} \ -} -# @@||cpalead.com/gwjs.php?pub=$script,domain=freebitcoinz.com|youserials.com (easylistchina+easylist.txt: 60183) -.cpalead.com/gwjs\.php\?pub= -# @@||cpalead.com/gwjs.php?pub=$script,domain=freebitcoinz.com|youserials.com (easylist.txt: 49698) -.cpalead.com/gwjs\.php\?pub= - -#ab2p-unblock-elem-R1224 -{+client-header-tagger{ab2p-unblock-elem-R1224} \ -} -# @@||f-cdn.com/build/js/ads/main.js?$domain=freelancer.com (easylistchina+easylist.txt: 58812) -.f-cdn.com/build/js/ads/main\.js\? -# @@||f-cdn.com/build/js/ads/main.js?$domain=freelancer.com (easylist.txt: 48327) -.f-cdn.com/build/js/ads/main\.js\? - -#ab2p-unblock-elem-R1225 -{+client-header-tagger{ab2p-unblock-elem-R1225} \ -} -# @@||ad.doubleclick.net/clk;*?https://dm.victoriassecret.com/product/$image,domain=freeshipping.com (easylistchina+easylist.txt: 58158) -.ad.doubleclick.net/clk;.*\?https://dm\.victoriassecret\.com/product/ -# @@||ad.doubleclick.net/clk;*?https://dm.victoriassecret.com/product/$image,domain=freeshipping.com (easylist.txt: 47673) -.ad.doubleclick.net/clk;.*\?https://dm\.victoriassecret\.com/product/ - -#ab2p-unblock-elem-R1226 -{+client-header-tagger{ab2p-unblock-elem-R1226} \ -} -# @@||epicgameads.com/games/mec_release_*.swf?$object-subrequest,domain=freewebarcade.com (easylistchina+easylist.txt: 58787) -.epicgameads.com/games/mec_release_.*\.swf\? -# @@||epicgameads.com/games/getSwfPath.php?$object-subrequest,domain=freewebarcade.com (easylistchina+easylist.txt: 58786) -.epicgameads.com/games/getSwfPath\.php\? -# @@||epicgameads.com/games/mec_release_*.swf?$object-subrequest,domain=freewebarcade.com (easylist.txt: 48302) -.epicgameads.com/games/mec_release_.*\.swf\? -# @@||epicgameads.com/games/getSwfPath.php?$object-subrequest,domain=freewebarcade.com (easylist.txt: 48301) -.epicgameads.com/games/getSwfPath\.php\? - -#ab2p-unblock-elem-R1227 -{+client-header-tagger{ab2p-unblock-elem-R1227} \ -} -# @@||freeworldgroup.com/googleloader/GoogleAds.swf?contentId=FWG_Game_PreLoader&$object,domain=freeworldgroup.com (easylistchina+easylist.txt: 58844) -.freeworldgroup.com/googleloader/GoogleAds\.swf\?contentId=FWG_Game_PreLoader& -# @@||freeworldgroup.com/googleloader/GoogleAds.swf?contentId=FWG_Game_PreLoader&$object,domain=freeworldgroup.com (easylist.txt: 48359) -.freeworldgroup.com/googleloader/GoogleAds\.swf\?contentId=FWG_Game_PreLoader& - -#ab2p-unblock-elem-R1228 -{+client-header-tagger{ab2p-unblock-elem-R1228} \ -} -# @@||fresh-book.ru/uploads/banners/$image,domain=fresh-book.ru (advblock.txt: 7300) -.fresh-book.ru/uploads/banners/ - -#ab2p-unblock-elem-R1229 -{+client-header-tagger{ab2p-unblock-elem-R1229} \ -} -# @@||dotua.org/js/ads.js|$script,domain=fs.to (advblock.txt: 7563) -.dotua.org/js/ads\.js$ - -#ab2p-unblock-elem-R1230 -{+client-header-tagger{ab2p-unblock-elem-R1230} \ -} -# @@||doubleclick.net^*/ftcom.*;sz=1x1;*;pos=refresh;$script,domain=ft.com (easylistchina+easylist.txt: 58733) -.doubleclick.net/.*/ftcom\..*;sz=1x1;.*;pos=refresh; -# @@||doubleclick.net^*/ftcom.*;sz=1x1;*;pos=refresh;$script,domain=ft.com (easylist.txt: 48248) -.doubleclick.net/.*/ftcom\..*;sz=1x1;.*;pos=refresh; - -#ab2p-unblock-elem-R1231 -{+client-header-tagger{ab2p-unblock-elem-R1231} \ -} -# @@.min.js$domain=ftlauderdalewebcam.com|nyharborwebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com (easylistchina+easylist.txt: 59902) -/.*\.min\.js -.*.min.js*. -# @@.min.js$domain=ftlauderdalewebcam.com|nyharborwebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com (easylist.txt: 49417) -/.*\.min\.js -.*.min.js*. - -#ab2p-unblock-elem-R1232 -{+client-header-tagger{ab2p-unblock-elem-R1232} \ -} -# @@||196.30.218.174/admentor/top_$subdocument,domain=fundsdata.co.za (easylistchina+easylist.txt: 58114) -.196.30.218.174/admentor/top_ -# @@||196.30.218.174/admentor/top_$subdocument,domain=fundsdata.co.za (easylist.txt: 47629) -.196.30.218.174/admentor/top_ - -#ab2p-unblock-elem-R1233 -{+client-header-tagger{ab2p-unblock-elem-R1233} \ -} -# @@||fod4.com^$image,domain=funnyordie.com (easylistchina+easylist.txt: 45987) -.fod4.com -# @@||fod4.com^$image,domain=funnyordie.com (easylist.txt: 35502) -.fod4.com - -#ab2p-unblock-elem-R1234 -{+client-header-tagger{ab2p-unblock-elem-R1234} \ -} -# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina+easylist.txt: 10355) -.s.lianmeng.360.cn -# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina+easylist.txt: 10300) -.lianmeng.360.cn/searchthrow/.*&w=960& - -#ab2p-unblock-elem-R1235 -{+client-header-tagger{ab2p-unblock-elem-R1235} \ -} -# @@||assoc-amazon.com^*/js/swfobject_$domain=gactv.com (easylistchina+easylist.txt: 58445) -.assoc-amazon.com/.*/js/swfobject_ -# @@||adsremote.scrippsnetworks.com/html.ng/adtype=*&playertype=$domain=gactv.com (easylistchina+easylist.txt: 58311) -.adsremote.scrippsnetworks.com/html\.ng/adtype=.*&playertype= -# @@||assoc-amazon.com^*/js/swfobject_$domain=gactv.com (easylist.txt: 47960) -.assoc-amazon.com/.*/js/swfobject_ -# @@||adsremote.scrippsnetworks.com/html.ng/adtype=*&playertype=$domain=gactv.com (easylist.txt: 47826) -.adsremote.scrippsnetworks.com/html\.ng/adtype=.*&playertype= - -#ab2p-unblock-elem-R1236 -{+client-header-tagger{ab2p-unblock-elem-R1236} \ -} -# @@||ghstatic.com/archives/*&adURL=$domain=game.zylom.com (easylistchina+easylist.txt: 58876) -.ghstatic.com/archives/.*&adURL= -# @@||ghstatic.com/archives/*&adURL=$domain=game.zylom.com (easylist.txt: 48391) -.ghstatic.com/archives/.*&adURL= - -#ab2p-unblock-elem-R1237 -{+client-header-tagger{ab2p-unblock-elem-R1237} \ -} -# @@||shacknews.com/advertising/preroll/$domain=gamefly.com (easylistchina+easylist.txt: 59524) -.shacknews.com/advertising/preroll/ -# @@||shacknews.com/advertising/preroll/$domain=gamefly.com (easylist.txt: 49039) -.shacknews.com/advertising/preroll/ - -#ab2p-unblock-elem-R1238 -{+client-header-tagger{ab2p-unblock-elem-R1238} \ -} -# @@||ad.ghfusion.com/constants.js$domain=gamehouse.com (easylistchina+easylist.txt: 58161) -.ad.ghfusion.com/constants\.js -# @@||ad.ghfusion.com/constants.js$domain=gamehouse.com (easylist.txt: 47676) -.ad.ghfusion.com/constants\.js - -#ab2p-unblock-elem-R1239 -{+client-header-tagger{ab2p-unblock-elem-R1239} \ -} -# @@||video.gamer-info.com^*.mp4$domain=gamer-info.com (advblock.txt: 7422) -.video.gamer-info.com/.*\.mp4 - -#ab2p-unblock-elem-R1240 -{+client-header-tagger{ab2p-unblock-elem-R1240} \ -} -# @@||games-tv.ru/openx/www/delivery/ajs.php?$script,domain=games-tv.ru (advblock.txt: 7301) -.games-tv.ru/openx/www/delivery/ajs\.php\? - -#ab2p-unblock-elem-R1241 -{+client-header-tagger{ab2p-unblock-elem-R1241} \ -} -# @@||ads.spilgames.com/ad/$script,domain=games.co.uk (easylistchina+easylist.txt: 58265) -.ads.spilgames.com/ad/ -# @@||ads.spilgames.com/ad/$script,domain=games.co.uk (easylist.txt: 47780) -.ads.spilgames.com/ad/ - -#ab2p-unblock-elem-R1242 -{+client-header-tagger{ab2p-unblock-elem-R1242} \ -} -# @@||sgc.io/advertisement.js$domain=games.softgames.de (easylistchina+easylist.txt: 60734) -.sgc.io/advertisement\.js -# @@||d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement-$script,domain=games.softgames.de (easylistchina+easylist.txt: 60195) -.d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement- -# @@||sgc.io/advertisement.js$domain=games.softgames.de (easylist.txt: 50249) -.sgc.io/advertisement\.js -# @@||d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement-$script,domain=games.softgames.de (easylist.txt: 49710) -.d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement- - -#ab2p-unblock-elem-R1243 -{+client-header-tagger{ab2p-unblock-elem-R1243} \ -} -# @@||yimg.com^*/adplugin_*.swf$object,domain=games.yahoo.com (easylistchina+easylist.txt: 59852) -.yimg.com/.*/adplugin_.*\.swf -# @@||yimg.com^*/adplugin_*.swf$object,domain=games.yahoo.com (easylist.txt: 49367) -.yimg.com/.*/adplugin_.*\.swf - -#ab2p-unblock-elem-R1244 -{+client-header-tagger{ab2p-unblock-elem-R1244} \ -} -# @@||spotxchange.com/ad_player/as3.swf$domain=games.yahoo.com|onescreen.net (easylistchina+easylist.txt: 59570) -.spotxchange.com/ad_player/as3\.swf -# @@||spotxchange.com/ad_player/as3.swf$domain=games.yahoo.com|onescreen.net (easylist.txt: 49085) -.spotxchange.com/ad_player/as3\.swf - -#ab2p-unblock-elem-R1245 -{+client-header-tagger{ab2p-unblock-elem-R1245} \ -} -# @@||mochiads.com/srv/*.swf?cxnid=$domain=gamesforwork.com (easylistchina+easylist.txt: 59187) -.mochiads.com/srv/.*\.swf\?cxnid= -# @@||mochiads.com/srv/*.swf?cachebust=$domain=gamesforwork.com (easylistchina+easylist.txt: 59186) -.mochiads.com/srv/.*\.swf\?cachebust= -# @@||mochiads.com/ctr/*.swf?$domain=gamesforwork.com (easylistchina+easylist.txt: 59185) -.mochiads.com/ctr/.*\.swf\? -# @@||keygamesnetwork.com/adserve/request/$object-subrequest,domain=gamesforwork.com (easylistchina+easylist.txt: 59058) -.keygamesnetwork.com/adserve/request/ -# @@||mochiads.com/srv/*.swf?cxnid=$domain=gamesforwork.com (easylist.txt: 48702) -.mochiads.com/srv/.*\.swf\?cxnid= -# @@||mochiads.com/srv/*.swf?cachebust=$domain=gamesforwork.com (easylist.txt: 48701) -.mochiads.com/srv/.*\.swf\?cachebust= -# @@||mochiads.com/ctr/*.swf?$domain=gamesforwork.com (easylist.txt: 48700) -.mochiads.com/ctr/.*\.swf\? -# @@||keygamesnetwork.com/adserve/request/$object-subrequest,domain=gamesforwork.com (easylist.txt: 48573) -.keygamesnetwork.com/adserve/request/ - -#ab2p-unblock-elem-R1246 -{+client-header-tagger{ab2p-unblock-elem-R1246} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_companion_ad.js$domain=gamespot.com (easylistchina+easylist.txt: 60629) -.pagead2.googlesyndication.com/pagead/show_companion_ad\.js -# @@||g.doubleclick.net/gampad/ads?gdfp_req=1&$script,domain=gamespot.com (easylistchina+easylist.txt: 60327) -.g.doubleclick.net/gampad/ads\?gdfp_req=1& -# @@||pagead2.googlesyndication.com/pagead/show_companion_ad.js$domain=gamespot.com (easylist.txt: 50144) -.pagead2.googlesyndication.com/pagead/show_companion_ad\.js -# @@||g.doubleclick.net/gampad/ads?gdfp_req=1&$script,domain=gamespot.com (easylist.txt: 49842) -.g.doubleclick.net/gampad/ads\?gdfp_req=1& - -#ab2p-unblock-elem-R1247 -{+client-header-tagger{ab2p-unblock-elem-R1247} \ -} -# @@||admin.brightcove.com/viewer/*/brightcovebootloader.swf?$object,domain=gamesradar.com (easylistchina+easylist.txt: 58210) -.admin.brightcove.com/viewer/.*/brightcovebootloader\.swf\? -# @@||admin.brightcove.com/viewer/*/brightcovebootloader.swf?$object,domain=gamesradar.com (easylist.txt: 47725) -.admin.brightcove.com/viewer/.*/brightcovebootloader\.swf\? - -#ab2p-unblock-elem-R1248 -{+client-header-tagger{ab2p-unblock-elem-R1248} \ -} -# @@/Advertisement.$domain=gametower.com.tw (easylistchina+easylist.txt: 10020) -/(.*/)?Advertisement\. -Advertisement.*. - -#ab2p-unblock-elem-R1249 -{+client-header-tagger{ab2p-unblock-elem-R1249} \ -} -# @@||gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/$image,domain=gaybeeg.info (easylistchina+easylist.txt: 61737) -.gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/ -# @@||gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/$image,domain=gaybeeg.info (easylist.txt: 51252) -.gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/ - #ab2p-unblock-elem-R245 {+client-header-tagger{ab2p-unblock-elem-R245} \ } -# @@||gelbooru.com//images/ad/$domain=gelbooru.com (easylistchina+easylist.txt: 61439) -# @@||gelbooru.com//images/ad/$domain=gelbooru.com (easylist.txt: 50954) +# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina.txt: 10273) +.inte.sogou.com/ask\?id= +# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina.txt: 10267) +.images.sohu.com/cs/ -#ab2p-unblock-elem-R1250 -{+client-header-tagger{ab2p-unblock-elem-R1250} \ +#ab2p-unblock-elem-R246 +{+client-header-tagger{ab2p-unblock-elem-R246} \ } -# @@||genvideos.com/js/show_ads.js$domain=genvideos.com (easylistchina+easylist.txt: 60346) -.genvideos.com/js/show_ads\.js -# @@||genvideos.com/js/show_ads.js$domain=genvideos.com (easylist.txt: 49861) -.genvideos.com/js/show_ads\.js +# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina.txt: 10274) +.itc.cn/public_photo/advert/ -#ab2p-unblock-elem-R1251 -{+client-header-tagger{ab2p-unblock-elem-R1251} \ +#ab2p-unblock-elem-R247 +{+client-header-tagger{ab2p-unblock-elem-R247} \ } -# @@||smartadserver.com/call/pubx/*/M/$object-subrequest,domain=get.x-link.pl (easylistchina+easylist.txt: 61115) -.smartadserver.com/call/pubx/.*/M/ -# @@||smartadserver.com/call/pubx/*/M/$object-subrequest,domain=get.x-link.pl (easylist.txt: 50630) -.smartadserver.com/call/pubx/.*/M/ - -#ab2p-unblock-elem-R1252 -{+client-header-tagger{ab2p-unblock-elem-R1252} \ -} -# @@||admitad.com/public/advertising_campaign/images/$domain=getcoupons.ru (advblock.txt: 7227) -.admitad.com/public/advertising_campaign/images/ - -#ab2p-unblock-elem-R1253 -{+client-header-tagger{ab2p-unblock-elem-R1253} \ -} -# @@||betteradvertising.com/logos/$image,domain=ghostery.com (easylistchina+easylist.txt: 58495) -.betteradvertising.com/logos/ -# @@||betteradvertising.com/logos/$image,domain=ghostery.com (easylist.txt: 48010) -.betteradvertising.com/logos/ - -#ab2p-unblock-elem-R1254 -{+client-header-tagger{ab2p-unblock-elem-R1254} \ -} -# @@||doubleclick.net/adj/gamesco.socialgaming/$script,domain=ghsrv.com (easylistchina+easylist.txt: 58710) -.doubleclick.net/adj/gamesco\.socialgaming/ -# @@||doubleclick.net/adj/gamesco.socialgaming/$script,domain=ghsrv.com (easylist.txt: 48225) -.doubleclick.net/adj/gamesco\.socialgaming/ - -#ab2p-unblock-elem-R1255 -{+client-header-tagger{ab2p-unblock-elem-R1255} \ -} -# @@/advertisement.js$domain=gimhoy.com (easylistchina+easylist.txt: 10021) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-elem-R1256 -{+client-header-tagger{ab2p-unblock-elem-R1256} \ -} -# @@||widgets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 59812) -.widgets.rewardstyle.com -# @@||images.rewardstyle.com/img?$image,domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 58985) -.images.rewardstyle.com/img\? -# @@||assets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 58442) -.assets.rewardstyle.com -# @@||widgets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylist.txt: 49327) -.widgets.rewardstyle.com -# @@||images.rewardstyle.com/img?$image,domain=glamour.com|itsjudytime.com (easylist.txt: 48500) -.images.rewardstyle.com/img\? -# @@||assets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylist.txt: 47957) -.assets.rewardstyle.com - -#ab2p-unblock-elem-R1257 -{+client-header-tagger{ab2p-unblock-elem-R1257} \ -} -# @@/cdn-cgi/pe/bag2?r[]=*juicyads.com$xmlhttprequest,domain=glamourbabe.eu (easylistchina+easylist.txt: 61423) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# @@/cdn-cgi/pe/bag2?r[]=*juicyads.com$xmlhttprequest,domain=glamourbabe.eu (easylist.txt: 50938) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com - -#ab2p-unblock-elem-R1258 -{+client-header-tagger{ab2p-unblock-elem-R1258} \ -} -# @@||doubleclick.net/ddm/clk/*://www.amazon.jobs/jobs/$subdocument,domain=glassdoor.com (easylistchina+easylist.txt: 58721) -.doubleclick.net/ddm/clk/.*://www\.amazon\.jobs/jobs/ -# @@||doubleclick.net/ddm/clk/*://www.amazon.jobs/jobs/$subdocument,domain=glassdoor.com (easylist.txt: 48236) -.doubleclick.net/ddm/clk/.*://www\.amazon\.jobs/jobs/ - -#ab2p-unblock-elem-R1259 -{+client-header-tagger{ab2p-unblock-elem-R1259} \ -} -# @@||smdg.ca/ads/banner/pen.png$domain=globalnews.ca (easylistchina+easylist.txt: 59548) -.smdg.ca/ads/banner/pen\.png -# @@||smdg.ca/ads/banner/pen.png$domain=globalnews.ca (easylist.txt: 49063) -.smdg.ca/ads/banner/pen\.png +# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina.txt: 10445) +/.*\.com%2Fanalytics\.js #ab2p-unblock-elem-R248 {+client-header-tagger{ab2p-unblock-elem-R248} \ } -# @@||dolimg.com^*/dxd_ad_code.swf$domain=go.com (easylistchina+easylist.txt: 58686) -.dolimg.com/.*/dxd_ad_code\.swf -# @@||adm.fwmrm.net^*/TremorAdRenderer.$object-subrequest,domain=go.com (easylistchina+easylist.txt: 58206) -.adm.fwmrm.net/.*/TremorAdRenderer\. -# @@||dolimg.com^*/dxd_ad_code.swf$domain=go.com (easylist.txt: 48201) -.dolimg.com/.*/dxd_ad_code\.swf -# @@||adm.fwmrm.net^*/TremorAdRenderer.$object-subrequest,domain=go.com (easylist.txt: 47721) -.adm.fwmrm.net/.*/TremorAdRenderer\. +# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina.txt: 10013) +/(.*/)?bag2\?r\[\]=.*&r\[\]= -#ab2p-unblock-elem-R1260 -{+client-header-tagger{ab2p-unblock-elem-R1260} \ +#ab2p-unblock-elem-R249 +{+client-header-tagger{ab2p-unblock-elem-R249} \ } -# @@||uakino.net^*/images/banner.gif|$image,domain=go.uakino.net (advblock.txt: 7604) -.uakino.net/.*/images/banner\.gif$ +# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina.txt: 10344) +.s.lianmeng.360.cn +# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina.txt: 10290) +.lianmeng.360.cn/searchthrow/.*&w=960& -#ab2p-unblock-elem-R1261 -{+client-header-tagger{ab2p-unblock-elem-R1261} \ +#ab2p-unblock-elem-R250 +{+client-header-tagger{ab2p-unblock-elem-R250} \ } -# @@||propellerads.com/ajs.php?zoneid=$domain=goclips.tv|letitbit.net (advblock.txt: 7370) -.propellerads.com/ajs\.php\?zoneid= +# @@/Advertisement.$domain=gametower.com.tw (easylistchina.txt: 10004) +/(.*/)?Advertisement\. +Advertisement.*. -#ab2p-unblock-elem-R1262 -{+client-header-tagger{ab2p-unblock-elem-R1262} \ +#ab2p-unblock-elem-R251 +{+client-header-tagger{ab2p-unblock-elem-R251} \ } -# @@||timeinc.net/golf/static/ads/iframe_ad_factory.js$domain=golf.com (easylistchina+easylist.txt: 59660) -.timeinc.net/golf/static/ads/iframe_ad_factory\.js -# @@||timeinc.net/golf/static/ads/iframe_ad_factory.js$domain=golf.com (easylist.txt: 49175) -.timeinc.net/golf/static/ads/iframe_ad_factory\.js - -#ab2p-unblock-elem-R1263 -{+client-header-tagger{ab2p-unblock-elem-R1263} \ -} -# @@|http://*/??$domain=gome.com.cn (easylistchina+easylist.txt: 10070) +# @@|http://*/??$domain=gome.com.cn (easylistchina.txt: 10052) /(.*/)?\?\? -#ab2p-unblock-elem-R1264 -{+client-header-tagger{ab2p-unblock-elem-R1264} \ +#ab2p-unblock-elem-R252 +{+client-header-tagger{ab2p-unblock-elem-R252} \ } -# @@||www.google.com/ads/admob/images/$image,domain=google.com (easylistchina+easylist.txt: 61186) -.www.google.com/ads/admob/images/ -# @@||www.google.com/ads/admob/images/$image,domain=google.com (easylist.txt: 50701) -.www.google.com/ads/admob/images/ - -#ab2p-unblock-elem-R1265 -{+client-header-tagger{ab2p-unblock-elem-R1265} \ -} -# @@||greasyfork.org/system/screenshots/screenshots/$domain=greasyfork.org (easylistchina+easylist.txt: 58920) -.greasyfork.org/system/screenshots/screenshots/ -# @@||greasyfork.org/system/screenshots/screenshots/$domain=greasyfork.org (easylist.txt: 48435) -.greasyfork.org/system/screenshots/screenshots/ - -#ab2p-unblock-elem-R1266 -{+client-header-tagger{ab2p-unblock-elem-R1266} \ -} -# @@||gannett.gcion.com/addyn/$script,domain=greenbaypressgazette.com|wcsh6.com (easylistchina+easylist.txt: 58868) -.gannett.gcion.com/addyn/ -# @@||gannett.gcion.com/addyn/$script,domain=greenbaypressgazette.com|wcsh6.com (easylist.txt: 48383) -.gannett.gcion.com/addyn/ - -#ab2p-unblock-elem-R1267 -{+client-header-tagger{ab2p-unblock-elem-R1267} \ -} -# @@/mod_jpayday/js/*$script,domain=gsmpro.com.pl|lechia.net (easylistchina+easylist.txt: 59928) -/(.*/)?mod_jpayday/js/.* -# @@/mod_jpayday/js/*$script,domain=gsmpro.com.pl|lechia.net (easylist.txt: 49443) -/(.*/)?mod_jpayday/js/.* - -#ab2p-unblock-elem-R1268 -{+client-header-tagger{ab2p-unblock-elem-R1268} \ -} -# @@||gt-advertise.ru^$domain=gt-advertise.ru (advblock.txt: 7306) -.gt-advertise.ru - -#ab2p-unblock-elem-R1269 -{+client-header-tagger{ab2p-unblock-elem-R1269} \ -} -# @@||google.com/uds/api/ads/$script,domain=guardian.co.uk (easylistchina+easylist.txt: 58907) -.google.com/uds/api/ads/ -# @@||google.com/uds/api/ads/$script,domain=guardian.co.uk (easylist.txt: 48422) -.google.com/uds/api/ads/ - -#ab2p-unblock-elem-R1270 -{+client-header-tagger{ab2p-unblock-elem-R1270} \ -} -# @@||google.com/uds/?file=ads&$script,domain=guardian.co.uk|landandfarm.com (easylistchina+easylist.txt: 58905) -.google.com/uds/\?file=ads& -# @@||google.com/uds/?file=ads&$script,domain=guardian.co.uk|landandfarm.com (easylist.txt: 48420) -.google.com/uds/\?file=ads& - -#ab2p-unblock-elem-R1271 -{+client-header-tagger{ab2p-unblock-elem-R1271} \ -} -# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina+easylist.txt: 10190) +# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina.txt: 10174) .cache.adm.cnzz.net -#ab2p-unblock-elem-R1272 -{+client-header-tagger{ab2p-unblock-elem-R1272} \ +#ab2p-unblock-elem-R253 +{+client-header-tagger{ab2p-unblock-elem-R253} \ } -# @@||impactradius.com/gen-ad-code/$domain=hackintosh.zone (easylistchina+easylist.txt: 60412) -.impactradius.com/gen-ad-code/ -# @@||impactradius.com/display-ad/$domain=hackintosh.zone (easylistchina+easylist.txt: 60411) -.impactradius.com/display-ad/ -# @@||impactradius.com/gen-ad-code/$domain=hackintosh.zone (easylist.txt: 49927) -.impactradius.com/gen-ad-code/ -# @@||impactradius.com/display-ad/$domain=hackintosh.zone (easylist.txt: 49926) -.impactradius.com/display-ad/ - -#ab2p-unblock-elem-R1273 -{+client-header-tagger{ab2p-unblock-elem-R1273} \ -} -# @@/flash/ad/*$domain=haitao.com (easylistchina+easylist.txt: 10037) +# @@/flash/ad/*$domain=haitao.com (easylistchina.txt: 10019) /(.*/)?flash/ad/.* -#ab2p-unblock-elem-R1274 -{+client-header-tagger{ab2p-unblock-elem-R1274} \ +#ab2p-unblock-elem-R254 +{+client-header-tagger{ab2p-unblock-elem-R254} \ } -# @@||hamalia.ua/tools/banner/site/banner.php?$domain=hamalia.ua (advblock.txt: 7307) -.hamalia.ua/tools/banner/site/banner\.php\? - -#ab2p-unblock-elem-R1275 -{+client-header-tagger{ab2p-unblock-elem-R1275} \ -} -# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina+easylist.txt: 9986) +# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina.txt: 9972) /.*\.com/ad/ .*.com/ad/ -#ab2p-unblock-elem-R1276 -{+client-header-tagger{ab2p-unblock-elem-R1276} \ +#ab2p-unblock-elem-R255 +{+client-header-tagger{ab2p-unblock-elem-R255} \ } -# @@||pagead2.googlesyndication.com/simgad/573912609820809|$image,domain=hardocp.com (easylistchina+easylist.txt: 60633) -.pagead2.googlesyndication.com/simgad/573912609820809$ -# @@||pagead2.googlesyndication.com/simgad/573912609820809|$image,domain=hardocp.com (easylist.txt: 50148) -.pagead2.googlesyndication.com/simgad/573912609820809$ - -#ab2p-unblock-elem-R1277 -{+client-header-tagger{ab2p-unblock-elem-R1277} \ -} -# @@||hawk.ru/media/banners/$domain=hawk.ru (advblock.txt: 7308) -.hawk.ru/media/banners/ - -#ab2p-unblock-elem-R1278 -{+client-header-tagger{ab2p-unblock-elem-R1278} \ -} -# @@||hcsibir.ru/uploads/advert/$image,domain=hcsibir.ru (advblock.txt: 7309) -.hcsibir.ru/uploads/advert/ - -#ab2p-unblock-elem-R1279 -{+client-header-tagger{ab2p-unblock-elem-R1279} \ -} -# @@/cdn-cgi/pe/bag2?r[]=*popads.net$xmlhttprequest,domain=hd-porn.me (easylistchina+easylist.txt: 61424) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# @@/cdn-cgi/pe/bag2?r[]=*ads.exoclick.com$xmlhttprequest,domain=hd-porn.me (easylistchina+easylist.txt: 61422) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# @@/cdn-cgi/pe/bag2?r[]=*popads.net$xmlhttprequest,domain=hd-porn.me (easylist.txt: 50939) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# @@/cdn-cgi/pe/bag2?r[]=*ads.exoclick.com$xmlhttprequest,domain=hd-porn.me (easylist.txt: 50937) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com - -#ab2p-unblock-elem-R1280 -{+client-header-tagger{ab2p-unblock-elem-R1280} \ -} -# @@||gmodules.com/ig/ifr?up_ad$domain=healthboards.com (easylistchina+easylist.txt: 58885) -.gmodules.com/ig/ifr\?up_ad -# @@||gmodules.com/ig/ifr?up_ad$domain=healthboards.com (easylist.txt: 48400) -.gmodules.com/ig/ifr\?up_ad - -#ab2p-unblock-elem-R1281 -{+client-header-tagger{ab2p-unblock-elem-R1281} \ -} -# @@||static.squarespace.com^$script,third-party,domain=heroichollywood.com (easylistchina+easylist.txt: 46040) -.static.squarespace.com -# @@||static.squarespace.com^$script,third-party,domain=heroichollywood.com (easylist.txt: 35555) -.static.squarespace.com - -#ab2p-unblock-elem-R1282 -{+client-header-tagger{ab2p-unblock-elem-R1282} \ -} -# @@||cdn.playwire.com^$script,third-party,domain=heroichollywood.com|supercheats.com (easylistchina+easylist.txt: 45955) -.cdn.playwire.com -# @@||cdn.playwire.com^$script,third-party,domain=heroichollywood.com|supercheats.com (easylist.txt: 35470) -.cdn.playwire.com - -#ab2p-unblock-elem-R1283 -{+client-header-tagger{ab2p-unblock-elem-R1283} \ -} -# @@/files/banner/*$domain=hgst.com|movie-pocket.com (advblock.txt: 7199) -/(.*/)?files/banner/.* - -#ab2p-unblock-elem-R1284 -{+client-header-tagger{ab2p-unblock-elem-R1284} \ -} -# @@||promo.cdn.homepornbay.com/key=*.mp4$object-subrequest,domain=hiddencamsvideo.com (easylistchina+easylist.txt: 61454) -.promo.cdn.homepornbay.com/key=.*\.mp4 -# @@||promo.cdn.homepornbay.com/key=*.mp4$object-subrequest,domain=hiddencamsvideo.com (easylist.txt: 50969) -.promo.cdn.homepornbay.com/key=.*\.mp4 - -#ab2p-unblock-elem-R1285 -{+client-header-tagger{ab2p-unblock-elem-R1285} \ -} -# @@||google.com/ads/$domain=hinduladies.com (easylistchina+easylist.txt: 61738) -.google.com/ads/ -# @@||google.com/ads/$domain=hinduladies.com (easylist.txt: 51253) -.google.com/ads/ - -#ab2p-unblock-elem-R1286 -{+client-header-tagger{ab2p-unblock-elem-R1286} \ -} -# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina+easylist.txt: 10482) +# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina.txt: 10470) .scorecardresearch.com/beacon\.js -#ab2p-unblock-elem-R1287 -{+client-header-tagger{ab2p-unblock-elem-R1287} \ +#ab2p-unblock-elem-R256 +{+client-header-tagger{ab2p-unblock-elem-R256} \ } -# @@||amazon-adsystem.com/widgets/q?*&ad_type=product_link&$subdocument,domain=hometheaterforum.com (easylistchina+easylist.txt: 58391) -.amazon-adsystem.com/widgets/q\?.*&ad_type=product_link& -# @@||amazon-adsystem.com/widgets/q?*&ad_type=product_link&$subdocument,domain=hometheaterforum.com (easylist.txt: 47906) -.amazon-adsystem.com/widgets/q\?.*&ad_type=product_link& - -#ab2p-unblock-elem-R1288 -{+client-header-tagger{ab2p-unblock-elem-R1288} \ -} -# @@||pop6.com/banners/$domain=horny.net|xmatch.com (easylistchina+easylist.txt: 61452) -.pop6.com/banners/ -# @@||pop6.com/banners/$domain=horny.net|xmatch.com (easylist.txt: 50967) -.pop6.com/banners/ - -#ab2p-unblock-elem-R1289 -{+client-header-tagger{ab2p-unblock-elem-R1289} \ -} -# @@||dstw.adgear.com/impressions/int/as=*.json?ag_r=$object-subrequest,domain=hot899.com|nj1015.com|streamtheworld.com|tsn.ca (easylistchina+easylist.txt: 58752) -.dstw.adgear.com/impressions/int/as=.*\.json\?ag_r= -# @@||dstw.adgear.com/impressions/int/as=*.json?ag_r=$object-subrequest,domain=hot899.com|nj1015.com|streamtheworld.com|tsn.ca (easylist.txt: 48267) -.dstw.adgear.com/impressions/int/as=.*\.json\?ag_r= - -#ab2p-unblock-elem-R1290 -{+client-header-tagger{ab2p-unblock-elem-R1290} \ -} -# @@||doubleclick.net/clk;$popup,domain=hotukdeals.com|jobamatic.com|play.google.com|santander.co.uk|techrepublic.com (easylistchina+easylist.txt: 61409) -.doubleclick.net/clk; -# @@||doubleclick.net/clk;$popup,domain=hotukdeals.com|jobamatic.com|play.google.com|santander.co.uk|techrepublic.com (easylist.txt: 50924) -.doubleclick.net/clk; - -#ab2p-unblock-elem-R1291 -{+client-header-tagger{ab2p-unblock-elem-R1291} \ -} -# @@||a.intentmedia.net/adServer/$script,domain=hotwire.com (easylistchina+easylist.txt: 58139) -.a.intentmedia.net/adServer/ -# @@||a.intentmedia.net/adServer/$script,domain=hotwire.com (easylist.txt: 47654) -.a.intentmedia.net/adServer/ - -#ab2p-unblock-elem-R1292 -{+client-header-tagger{ab2p-unblock-elem-R1292} \ -} -# @@/advertising/*$domain=houdask.com (easylistchina+easylist.txt: 10023) +# @@/advertising/*$domain=houdask.com (easylistchina.txt: 10007) /(.*/)?advertising/.* -#ab2p-unblock-elem-R1293 -{+client-header-tagger{ab2p-unblock-elem-R1293} \ +#ab2p-unblock-elem-R257 +{+client-header-tagger{ab2p-unblock-elem-R257} \ } -# @@||www8-hp.com^*/styles/ads/$domain=hp.com (easylistchina+easylist.txt: 59836) -.www8-hp.com/.*/styles/ads/ -# @@||www8-hp.com^*/styles/ads/$domain=hp.com (easylist.txt: 49351) -.www8-hp.com/.*/styles/ads/ - -#ab2p-unblock-elem-R1294 -{+client-header-tagger{ab2p-unblock-elem-R1294} \ -} -# @@||sms-mmm.com/script.php|$script,domain=hqq.tv (easylistchina+easylist.txt: 60751) -.sms-mmm.com/script\.php$ -# @@||sms-mmm.com/pads.js$domain=hqq.tv (easylistchina+easylist.txt: 60750) -.sms-mmm.com/pads\.js -# @@||google-it.info^$script,domain=hqq.tv (easylistchina+easylist.txt: 60361) -.google-it.info -# @@||sms-mmm.com/script.php|$script,domain=hqq.tv (easylist.txt: 50266) -.sms-mmm.com/script\.php$ -# @@||sms-mmm.com/pads.js$domain=hqq.tv (easylist.txt: 50265) -.sms-mmm.com/pads\.js -# @@||google-it.info^$script,domain=hqq.tv (easylist.txt: 49876) -.google-it.info - -#ab2p-unblock-elem-R1295 -{+client-header-tagger{ab2p-unblock-elem-R1295} \ -} -# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina+easylist.txt: 10064) +# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina.txt: 10046) /.*\?adType= -#ab2p-unblock-elem-R1296 -{+client-header-tagger{ab2p-unblock-elem-R1296} \ +#ab2p-unblock-elem-R258 +{+client-header-tagger{ab2p-unblock-elem-R258} \ } -# @@||aolcdn.com/ads/adsWrapperIntl.js$domain=huffingtonpost.co.uk (easylistchina+easylist.txt: 58409) -.aolcdn.com/ads/adsWrapperIntl\.js -# @@||aolcdn.com/ads/adsWrapperIntl.js$domain=huffingtonpost.co.uk (easylist.txt: 47924) -.aolcdn.com/ads/adsWrapperIntl\.js +# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina.txt: 10021) +/(.*/)?guanggao/.* -#ab2p-unblock-elem-R1297 -{+client-header-tagger{ab2p-unblock-elem-R1297} \ +#ab2p-unblock-elem-R259 +{+client-header-tagger{ab2p-unblock-elem-R259} \ } -# @@||huffpost.com/images/ads/$domain=huffingtonpost.com (easylistchina+easylist.txt: 58956) -.huffpost.com/images/ads/ -# @@||huffpost.com/images/ads/$domain=huffingtonpost.com (easylist.txt: 48471) -.huffpost.com/images/ads/ +# @@||a.alimama.cn/tkapi$domain=ieeee.com (easylistchina.txt: 10108) +.a.alimama.cn/tkapi -#ab2p-unblock-elem-R1298 -{+client-header-tagger{ab2p-unblock-elem-R1298} \ +#ab2p-unblock-elem-R260 +{+client-header-tagger{ab2p-unblock-elem-R260} \ } -# @@||innovid.com^$object-subrequest,domain=hulu.com (easylistchina+easylist.txt: 59012) -.innovid.com -# @@||innovid.com^$object-subrequest,domain=hulu.com (easylist.txt: 48527) -.innovid.com +# @@/Public/ad/*$domain=ihold.cc (easylistchina.txt: 10035) +/(.*/)?Public/ad/.* -#ab2p-unblock-elem-R1299 -{+client-header-tagger{ab2p-unblock-elem-R1299} \ +#ab2p-unblock-elem-R261 +{+client-header-tagger{ab2p-unblock-elem-R261} \ } -# @@||humana-medicare.com/ad/$~document,domain=humana-medicare.com (easylistchina+easylist.txt: 58960) -.humana-medicare.com/ad/ -# @@||humana-medicare.com/ad/$~document,domain=humana-medicare.com (easylist.txt: 48475) -.humana-medicare.com/ad/ +# @@||hm.baidu.com^$domain=ihome99.com (easylistchina.txt: 10464) +.hm.baidu.com -#ab2p-unblock-elem-R1300 -{+client-header-tagger{ab2p-unblock-elem-R1300} \ +#ab2p-unblock-elem-R262 +{+client-header-tagger{ab2p-unblock-elem-R262} \ } -# @@||lijit.com///www/delivery/fpi.js?*&width=728&height=90$script,domain=hypeseek.com (easylistchina+easylist.txt: 59086) -# @@||lijit.com///www/delivery/fpi.js?*&width=728&height=90$script,domain=hypeseek.com (easylist.txt: 48601) +# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina.txt: 9992) +/(.*/)?ADmediaJS/panda0305_1972_11454_12120_ -#ab2p-unblock-elem-R1301 -{+client-header-tagger{ab2p-unblock-elem-R1301} \ +#ab2p-unblock-elem-R263 +{+client-header-tagger{ab2p-unblock-elem-R263} \ } -# @@||i-makeawish.com^$script,domain=i-makeawish.com (easylistchina+easylist.txt: 60390) -.i-makeawish.com -# @@||i-makeawish.com^$script,domain=i-makeawish.com (easylist.txt: 49905) -.i-makeawish.com +# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina.txt: 10006) +/(.*/)?advertisement/.* + +#ab2p-unblock-elem-R264 +{+client-header-tagger{ab2p-unblock-elem-R264} \ +} +# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina.txt: 10113) +.ad.3.cn/ads/mgets\? + +#ab2p-unblock-elem-R265 +{+client-header-tagger{ab2p-unblock-elem-R265} \ +} +# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina.txt: 10114) +.ad.3.cn/flags/mgets\? +# @@||360buyimg.com/ads/$domain=jd.com (easylistchina.txt: 10083) +.360buyimg.com/ads/ +# @@||360buyimg.com/ad/$domain=jd.com (easylistchina.txt: 10082) +.360buyimg.com/ad/ +# @@&ad_width=810&$domain=jd.com (easylistchina.txt: 9966) +/.*&ad_width=810& +# @@&ad_width=590&$domain=jd.com (easylistchina.txt: 9965) +/.*&ad_width=590& + +#ab2p-unblock-elem-R266 +{+client-header-tagger{ab2p-unblock-elem-R266} \ +} +# @@|http:$image,script,domain=jjcast.com (easylistchina.txt: 10050) + +#ab2p-unblock-elem-R267 +{+client-header-tagger{ab2p-unblock-elem-R267} \ +} +# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina.txt: 10151) +.allyes.com.cn/player/AllyesAdPlayerV1\.swf\? + +#ab2p-unblock-elem-R268 +{+client-header-tagger{ab2p-unblock-elem-R268} \ +} +# @@||js.adm.cnzz.net^$domain=keenfine.com|xoyo.com (easylistchina.txt: 10282) +.js.adm.cnzz.net + +#ab2p-unblock-elem-R269 +{+client-header-tagger{ab2p-unblock-elem-R269} \ +} +# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina.txt: 10460) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R270 +{+client-header-tagger{ab2p-unblock-elem-R270} \ +} +# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina.txt: 10283) +.kbcool.com/advpic/ + +#ab2p-unblock-elem-R271 +{+client-header-tagger{ab2p-unblock-elem-R271} \ +} +# @@/adimg/*$domain=laniqu.com|veryeast.cn (easylistchina.txt: 9990) +/(.*/)?adimg/.* + +#ab2p-unblock-elem-R272 +{+client-header-tagger{ab2p-unblock-elem-R272} \ +} +# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina.txt: 10313) +.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js + +#ab2p-unblock-elem-R273 +{+client-header-tagger{ab2p-unblock-elem-R273} \ +} +# @@/adsame.$domain=liba.com|libaclub.com (easylistchina.txt: 9995) +/(.*/)?adsame\. +adsame.*. + +#ab2p-unblock-elem-R274 +{+client-header-tagger{ab2p-unblock-elem-R274} \ +} +# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina.txt: 10369) +.stockstar.com/ad/ + +#ab2p-unblock-elem-R275 +{+client-header-tagger{ab2p-unblock-elem-R275} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina.txt: 10469) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-elem-R276 +{+client-header-tagger{ab2p-unblock-elem-R276} \ +} +# @@/adsbox.$domain=long7.qq.com (easylistchina.txt: 9996) +/(.*/)?adsbox\. +adsbox.*. + +#ab2p-unblock-elem-R277 +{+client-header-tagger{ab2p-unblock-elem-R277} \ +} +# @@||csbew.com^$domain=longbl.com (easylistchina.txt: 10202) +.csbew.com #ab2p-unblock-elem-R278 {+client-header-tagger{ab2p-unblock-elem-R278} \ } -# @@||zedo.com/bar/*/fnsr.vast?$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 59872) -.zedo.com/bar/.*/fnsr\.vast\? -# @@||jivox.com/jivox/serverAPIs/getCampaignById.php?$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 59043) -.jivox.com/jivox/serverAPIs/getCampaignById\.php\? -# @@||edgesuite.net/general/ibn/ads/*.flv$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 58768) -.edgesuite.net/general/ibn/ads/.*\.flv -# @@||zedo.com/bar/*/fnsr.vast?$object-subrequest,domain=ibnlive.in.com (easylist.txt: 49387) -.zedo.com/bar/.*/fnsr\.vast\? -# @@||jivox.com/jivox/serverAPIs/getCampaignById.php?$object-subrequest,domain=ibnlive.in.com (easylist.txt: 48558) -.jivox.com/jivox/serverAPIs/getCampaignById\.php\? -# @@||edgesuite.net/general/ibn/ads/*.flv$object-subrequest,domain=ibnlive.in.com (easylist.txt: 48283) -.edgesuite.net/general/ibn/ads/.*\.flv +# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina.txt: 9974) +/.*\.com/adv/ +.*.com/adv/ -#ab2p-unblock-elem-R1302 -{+client-header-tagger{ab2p-unblock-elem-R1302} \ +#ab2p-unblock-elem-R279 +{+client-header-tagger{ab2p-unblock-elem-R279} \ } -# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina+easylist.txt: 10039) -/(.*/)?guanggao/.* +# @@|http://*/ad$domain=meiziweibo.com (easylistchina.txt: 10053) +/(.*/)?ad -#ab2p-unblock-elem-R1303 -{+client-header-tagger{ab2p-unblock-elem-R1303} \ +#ab2p-unblock-elem-R280 +{+client-header-tagger{ab2p-unblock-elem-R280} \ } -# @@||bbelements.com/please/showit/*/?typkodu=$script,domain=idnes.cz|moviezone.cz (easylistchina+easylist.txt: 60990) -.bbelements.com/please/showit/.*/\?typkodu= -# @@||bbelements.com/please/showit/*/?typkodu=$script,domain=idnes.cz|moviezone.cz (easylist.txt: 50505) -.bbelements.com/please/showit/.*/\?typkodu= +# @@/AdShow/*$domain=mndxy.org (easylistchina.txt: 9999) +/(.*/)?AdShow/.* -#ab2p-unblock-elem-R1304 -{+client-header-tagger{ab2p-unblock-elem-R1304} \ +#ab2p-unblock-elem-R281 +{+client-header-tagger{ab2p-unblock-elem-R281} \ } -# @@||ifirstrowit.eu^$script,domain=ifirstrowit.eu (easylistchina+easylist.txt: 60396) -.ifirstrowit.eu -# @@||ifirstrowit.eu^$script,domain=ifirstrowit.eu (easylist.txt: 49911) -.ifirstrowit.eu +# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina.txt: 10124) +.ad.unimhk.com/show\.php\? -#ab2p-unblock-elem-R1305 -{+client-header-tagger{ab2p-unblock-elem-R1305} \ +#ab2p-unblock-elem-R282 +{+client-header-tagger{ab2p-unblock-elem-R282} \ } -# @@||ifirstrowus.eu^$script,domain=ifirstrowus.eu (easylistchina+easylist.txt: 60397) -.ifirstrowus.eu -# @@||ifirstrowus.eu^$script,domain=ifirstrowus.eu (easylist.txt: 49912) -.ifirstrowus.eu +# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina.txt: 10164) +.bdimg.com/advert/js/advert\.js -#ab2p-unblock-elem-R1306 -{+client-header-tagger{ab2p-unblock-elem-R1306} \ +#ab2p-unblock-elem-R283 +{+client-header-tagger{ab2p-unblock-elem-R283} \ } -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/drf?$script,domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58744) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/drf\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/advertisers?$script,domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58743) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/advertisers\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/adserver.js?$domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58742) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/adserver\.js\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/drf?$script,domain=igougo.com|travelocity.com (easylist.txt: 48259) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/drf\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/advertisers?$script,domain=igougo.com|travelocity.com (easylist.txt: 48258) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/advertisers\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/adserver.js?$domain=igougo.com|travelocity.com (easylist.txt: 48257) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/adserver\.js\? +# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina.txt: 10045) +/.*=mywebloadt1& -#ab2p-unblock-elem-R1307 -{+client-header-tagger{ab2p-unblock-elem-R1307} \ +#ab2p-unblock-elem-R284 +{+client-header-tagger{ab2p-unblock-elem-R284} \ } -# @@||igromania.ru/upload/iblock/*/baner_$image,domain=igromania.ru (advblock.txt: 7311) -.igromania.ru/upload/iblock/.*/baner_ -# @@||igromania.ru/bitrix/templates/igromania/js/openxtag.js?$domain=igromania.ru (advblock.txt: 7310) -.igromania.ru/bitrix/templates/igromania/js/openxtag\.js\? +# @@/urchin.js$domain=on.cc (easylistchina.txt: 10449) +/(.*/)?urchin\.js +urchin.js*. +# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina.txt: 10448) +/(.*/)?hitCount_ +# @@/hitCount.$script,domain=on.cc (easylistchina.txt: 10447) +/(.*/)?hitCount\. +hitCount.*. -#ab2p-unblock-elem-R1308 -{+client-header-tagger{ab2p-unblock-elem-R1308} \ +#ab2p-unblock-elem-R285 +{+client-header-tagger{ab2p-unblock-elem-R285} \ } -# @@/adriver.core.$script,domain=iguides.ru|tvigle.ru|wikimart.ru (advblock.txt: 7186) -/(.*/)?adriver\.core\. -adriver.core.*. +# @@/ADImages/*$domain=p9.com.tw (easylistchina.txt: 9989) +/(.*/)?ADImages/.* -#ab2p-unblock-elem-R1309 -{+client-header-tagger{ab2p-unblock-elem-R1309} \ +#ab2p-unblock-elem-R286 +{+client-header-tagger{ab2p-unblock-elem-R286} \ } -# @@/Public/ad/*$domain=ihold.cc (easylistchina+easylist.txt: 10053) -/(.*/)?Public/ad/.* - -#ab2p-unblock-elem-R1310 -{+client-header-tagger{ab2p-unblock-elem-R1310} \ -} -# @@||hm.baidu.com^$domain=ihome99.com (easylistchina+easylist.txt: 10476) -.hm.baidu.com - -#ab2p-unblock-elem-R1311 -{+client-header-tagger{ab2p-unblock-elem-R1311} \ -} -# @@||fasts.tv^$script,domain=ilive.to (easylistchina+easylist.txt: 60276) -.fasts.tv -# @@||concutao.tk^$script,domain=ilive.to (easylistchina+easylist.txt: 60178) -.concutao.tk -# @@|http://*.tk^$script,domain=ilive.to (easylistchina+easylist.txt: 59953) -/.*\.tk[^\w%.-] -.*.tk -# @@/advertisement2.js$domain=ilive.to (easylistchina+easylist.txt: 59921) -/(.*/)?advertisement2\.js -advertisement2.js*. -# @@||fasts.tv^$script,domain=ilive.to (easylist.txt: 49791) -.fasts.tv -# @@||concutao.tk^$script,domain=ilive.to (easylist.txt: 49693) -.concutao.tk -# @@|http://*.tk^$script,domain=ilive.to (easylist.txt: 49468) -/.*\.tk[^\w%.-] -.*.tk -# @@/advertisement2.js$domain=ilive.to (easylist.txt: 49436) -/(.*/)?advertisement2\.js -advertisement2.js*. - -#ab2p-unblock-elem-R1312 -{+client-header-tagger{ab2p-unblock-elem-R1312} \ -} -# @@||priva.us^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60671) -.priva.us -# @@||info.tm^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60417) -.info.tm -# @@||ilix.in^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60401) -.ilix.in -# @@||priva.us^$script,domain=ilix.in|priva.us (easylist.txt: 50186) -.priva.us -# @@||info.tm^$script,domain=ilix.in|priva.us (easylist.txt: 49932) -.info.tm -# @@||ilix.in^$script,domain=ilix.in|priva.us (easylist.txt: 49916) -.ilix.in - -#ab2p-unblock-elem-R1313 -{+client-header-tagger{ab2p-unblock-elem-R1313} \ -} -# @@||biz.tm^$script,domain=ilix.in|priva.us|urlink.at (easylistchina+easylist.txt: 60120) -.biz.tm -# @@||biz.tm^$script,domain=ilix.in|priva.us|urlink.at (easylist.txt: 49635) -.biz.tm - -#ab2p-unblock-elem-R1314 -{+client-header-tagger{ab2p-unblock-elem-R1314} \ -} -# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina+easylist.txt: 10007) -/(.*/)?ADmediaJS/panda0305_1972_11454_12120_ - -#ab2p-unblock-elem-R1315 -{+client-header-tagger{ab2p-unblock-elem-R1315} \ -} -# @@||viroll.com^$popup,domain=imagebam.com|imgbox.com (easylistchina+easylist.txt: 61420) -.viroll.com -# @@||viroll.com^$popup,domain=imagebam.com|imgbox.com (easylist.txt: 50935) -.viroll.com - -#ab2p-unblock-elem-R1316 -{+client-header-tagger{ab2p-unblock-elem-R1316} \ -} -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$xmlhttprequest,domain=imasdk.googleapis.com (easylistchina+easylist.txt: 58170) -.ad4.liverail.com/\?LR_PUBLISHER_ID= -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$xmlhttprequest,domain=imasdk.googleapis.com (easylist.txt: 47685) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-elem-R1317 -{+client-header-tagger{ab2p-unblock-elem-R1317} \ -} -# @@||media-imdb.com^*/js/ads.js$domain=imdb.com (easylistchina+easylist.txt: 59148) -.media-imdb.com/.*/js/ads\.js -# @@||media-imdb.com^*/js/ads.js$domain=imdb.com (easylist.txt: 48663) -.media-imdb.com/.*/js/ads\.js - -#ab2p-unblock-elem-R1318 -{+client-header-tagger{ab2p-unblock-elem-R1318} \ -} -# @@||exoclick.com/ads.php?*login$script,domain=imgserve.net|imgtiger.com (easylistchina+easylist.txt: 58802) -.exoclick.com/ads\.php\?.*login -# @@||exoclick.com/ads.php?*login$script,domain=imgserve.net|imgtiger.com (easylist.txt: 48317) -.exoclick.com/ads\.php\?.*login - -#ab2p-unblock-elem-R1319 -{+client-header-tagger{ab2p-unblock-elem-R1319} \ -} -# @@||imhonet.ru/js/templates/views/tiles/m-tiles.advert.$domain=imhonet.ru (advblock.txt: 7315) -.imhonet.ru/js/templates/views/tiles/m-tiles\.advert\. -# @@/img/banner/*$domain=imhonet.ru (advblock.txt: 7203) -/(.*/)?img/banner/.* - -#ab2p-unblock-elem-R1320 -{+client-header-tagger{ab2p-unblock-elem-R1320} \ -} -# @@||b.inbox.lv/xmlcache/tvnet/index.html?ts=$domain=inbox.lv (advblock.txt: 7274) -.b.inbox.lv/xmlcache/tvnet/index\.html\?ts= -# @@||b.inbox.lv/bxlib/css/$domain=inbox.lv (advblock.txt: 7273) -.b.inbox.lv/bxlib/css/ - -#ab2p-unblock-elem-R1321 -{+client-header-tagger{ab2p-unblock-elem-R1321} \ -} -# @@||amazonaws.com/adplayer/player/newas3player.swf?$object,domain=india.com (easylistchina+easylist.txt: 58396) -.amazonaws.com/adplayer/player/newas3player\.swf\? -# @@||amazonaws.com/adplayer/player/newas3player.swf?$object,domain=india.com (easylist.txt: 47911) -.amazonaws.com/adplayer/player/newas3player\.swf\? - -#ab2p-unblock-elem-R1322 -{+client-header-tagger{ab2p-unblock-elem-R1322} \ -} -# @@||player.ventunotech.com/VtnGoogleVpaidIMA_1.swf?$object-subrequest,domain=indianexpress.com|thehindu.com (easylistchina+easylist.txt: 59391) -.player.ventunotech.com/VtnGoogleVpaidIMA_1\.swf\? -# @@||player.ventunotech.com/VtnGoogleVpaidIMA_1.swf?$object-subrequest,domain=indianexpress.com|thehindu.com (easylist.txt: 48906) -.player.ventunotech.com/VtnGoogleVpaidIMA_1\.swf\? - -#ab2p-unblock-elem-R1323 -{+client-header-tagger{ab2p-unblock-elem-R1323} \ -} -# @@||tremormedia.com/acudeo/$script,domain=indiatimes.com (easylistchina+easylist.txt: 59698) -.tremormedia.com/acudeo/ -# @@||tremormedia.com/acudeo/$script,domain=indiatimes.com (easylist.txt: 49213) -.tremormedia.com/acudeo/ - -#ab2p-unblock-elem-R1324 -{+client-header-tagger{ab2p-unblock-elem-R1324} \ -} -# @@||serve.vdopia.com/js/vdo.js$domain=indiatvnews.com|intoday.in (easylistchina+easylist.txt: 59515) -.serve.vdopia.com/js/vdo\.js -# @@||serve.vdopia.com/js/vdo.js$domain=indiatvnews.com|intoday.in (easylist.txt: 49030) -.serve.vdopia.com/js/vdo\.js - -#ab2p-unblock-elem-R1325 -{+client-header-tagger{ab2p-unblock-elem-R1325} \ -} -# @@||cdn.vdopia.com^$object,object-subrequest,script,domain=indiatvnews.com|intoday.in|moneycontrol.com (easylistchina+easylist.txt: 58574) -.cdn.vdopia.com -# @@||cdn.vdopia.com^$object,object-subrequest,script,domain=indiatvnews.com|intoday.in|moneycontrol.com (easylist.txt: 48089) -.cdn.vdopia.com - -#ab2p-unblock-elem-R1326 -{+client-header-tagger{ab2p-unblock-elem-R1326} \ -} -# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina+easylist.txt: 10022) -/(.*/)?advertisement/.* - -#ab2p-unblock-elem-R1327 -{+client-header-tagger{ab2p-unblock-elem-R1327} \ -} -# @@||qnsr.com/cgi/r?$domain=insure.com (easylistchina+easylist.txt: 59426) -.qnsr.com/cgi/r\? -# @@||qnsr.com/cgi/r?$domain=insure.com (easylist.txt: 48941) -.qnsr.com/cgi/r\? - -#ab2p-unblock-elem-R1328 -{+client-header-tagger{ab2p-unblock-elem-R1328} \ -} -# @@||insys.pl/Scripts/InsysPlayer.*/adTest.png$domain=insys.pl (easylistchina+easylist.txt: 60423) -.insys.pl/Scripts/InsysPlayer\..*/adTest\.png -# @@||adview.pl/ad/GetReklamyMultimediaVast?dir=*&adType=PREROLL&$xmlhttprequest,domain=insys.pl (easylistchina+easylist.txt: 60034) -.adview.pl/ad/GetReklamyMultimediaVast\?dir=.*&adType=PREROLL& -# @@||insys.pl/Scripts/InsysPlayer.*/adTest.png$domain=insys.pl (easylist.txt: 49938) -.insys.pl/Scripts/InsysPlayer\..*/adTest\.png -# @@||adview.pl/ad/GetReklamyMultimediaVast?dir=*&adType=PREROLL&$xmlhttprequest,domain=insys.pl (easylist.txt: 49549) -.adview.pl/ad/GetReklamyMultimediaVast\?dir=.*&adType=PREROLL& - -#ab2p-unblock-elem-R1329 -{+client-header-tagger{ab2p-unblock-elem-R1329} \ -} -# @@||hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_$object,domain=interia.tv (easylistchina+easylist.txt: 61041) -.hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_ -# @@||hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_$object,domain=interia.tv (easylist.txt: 50556) -.hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_ - -#ab2p-unblock-elem-R1330 -{+client-header-tagger{ab2p-unblock-elem-R1330} \ -} -# @@||casino.com^*&affiliate=$popup,domain=internetcasinot.com (easylistchina+easylist.txt: 61406) -.casino.com/.*&affiliate= -# @@||casino.com^*&affiliate=$popup,domain=internetcasinot.com (easylist.txt: 50921) -.casino.com/.*&affiliate= - -#ab2p-unblock-elem-R1331 -{+client-header-tagger{ab2p-unblock-elem-R1331} \ -} -# @@||ip-address.org^$script,domain=ip-address.org (easylistchina+easylist.txt: 60431) -.ip-address.org -# @@||ip-address.org^$script,domain=ip-address.org (easylist.txt: 49946) -.ip-address.org - -#ab2p-unblock-elem-R1332 -{+client-header-tagger{ab2p-unblock-elem-R1332} \ -} -# @@||stat24.com/ad.xml?id=$object-subrequest,domain=ipla.tv (easylistchina+easylist.txt: 61125) -.stat24.com/ad\.xml\?id= -# @@||stat24.com/*/ad.xml?id=$object-subrequest,domain=ipla.tv (easylistchina+easylist.txt: 61124) -.stat24.com/.*/ad\.xml\?id= -# @@||stat24.com/ad.xml?id=$object-subrequest,domain=ipla.tv (easylist.txt: 50640) -.stat24.com/ad\.xml\?id= -# @@||stat24.com/*/ad.xml?id=$object-subrequest,domain=ipla.tv (easylist.txt: 50639) -.stat24.com/.*/ad\.xml\?id= - -#ab2p-unblock-elem-R1333 -{+client-header-tagger{ab2p-unblock-elem-R1333} \ -} -# @@||affiliate.fsas.eu^$subdocument,domain=iprima.cz (easylistchina+easylist.txt: 60967) -.affiliate.fsas.eu -# @@||affiliate.fsas.eu^$subdocument,domain=iprima.cz (easylist.txt: 50482) -.affiliate.fsas.eu - -#ab2p-unblock-elem-R1334 -{+client-header-tagger{ab2p-unblock-elem-R1334} \ -} -# @@||bw.pronto.ru/brick$script,domain=irr.ru (advblock.txt: 7628) -.bw.pronto.ru/brick -# @@||irr.ru/ajax/*/submission/get_cat$domain=irr.ru (advblock.txt: 7318) -.irr.ru/ajax/.*/submission/get_cat - -#ab2p-unblock-elem-R1335 -{+client-header-tagger{ab2p-unblock-elem-R1335} \ -} -# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina+easylist.txt: 10129) -.ad.3.cn/ads/mgets\? - -#ab2p-unblock-elem-R1336 -{+client-header-tagger{ab2p-unblock-elem-R1336} \ -} -# @@/adimg/*$domain=itools.cn|laniqu.com|tdx.com.cn|veryeast.cn (easylistchina+easylist.txt: 10005) -/(.*/)?adimg/.* - -#ab2p-unblock-elem-R1337 -{+client-header-tagger{ab2p-unblock-elem-R1337} \ -} -# @@||images.itreviews.com/*300x250_$domain=itreviews.com (easylistchina+easylist.txt: 61342) -.images.itreviews.com/.*300x250_ -# @@||images.itreviews.com/*300x250_$domain=itreviews.com (easylist.txt: 50857) -.images.itreviews.com/.*300x250_ - -#ab2p-unblock-elem-R1338 -{+client-header-tagger{ab2p-unblock-elem-R1338} \ -} -# @@||tom.itv.com/itv/tserver/size=$domain=itv.com (easylistchina+easylist.txt: 60810) -.tom.itv.com/itv/tserver/size= -# @@||tom.itv.com/crossdomain.xml$domain=itv.com (easylistchina+easylist.txt: 60809) -.tom.itv.com/crossdomain\.xml -# @@||flashtalking.com/spot/$image,domain=itv.com (easylistchina+easylist.txt: 60295) -.flashtalking.com/spot/ -# @@||itv.com/itv/lserver/jserver/area=*/pubtype=home/*showad=true/*/size=resptakeover/$script,domain=itv.com (easylistchina+easylist.txt: 59038) -.itv.com/itv/lserver/jserver/area=.*/pubtype=home/.*showad=true/.*/size=resptakeover/ -# @@||itv.com/itv/jserver/$script,domain=itv.com (easylistchina+easylist.txt: 59037) -.itv.com/itv/jserver/ -# @@||content.aimatch.com/swfobject.js$domain=itv.com (easylistchina+easylist.txt: 58618) -.content.aimatch.com/swfobject\.js -# @@||tom.itv.com/itv/tserver/size=$domain=itv.com (easylist.txt: 50325) -.tom.itv.com/itv/tserver/size= -# @@||tom.itv.com/crossdomain.xml$domain=itv.com (easylist.txt: 50324) -.tom.itv.com/crossdomain\.xml -# @@||flashtalking.com/spot/$image,domain=itv.com (easylist.txt: 49810) -.flashtalking.com/spot/ -# @@||itv.com/itv/lserver/jserver/area=*/pubtype=home/*showad=true/*/size=resptakeover/$script,domain=itv.com (easylist.txt: 48553) -.itv.com/itv/lserver/jserver/area=.*/pubtype=home/.*showad=true/.*/size=resptakeover/ -# @@||itv.com/itv/jserver/$script,domain=itv.com (easylist.txt: 48552) -.itv.com/itv/jserver/ -# @@||content.aimatch.com/swfobject.js$domain=itv.com (easylist.txt: 48133) -.content.aimatch.com/swfobject\.js - -#ab2p-unblock-elem-R1339 -{+client-header-tagger{ab2p-unblock-elem-R1339} \ -} -# @@||req.tidaltv.com/vmm.ashx?$object-subrequest,domain=itv.com|uktv.co.uk (easylistchina+easylist.txt: 60698) -.req.tidaltv.com/vmm\.ashx\? -# @@||req.tidaltv.com/vmm.ashx?$object-subrequest,domain=itv.com|uktv.co.uk (easylist.txt: 50213) -.req.tidaltv.com/vmm\.ashx\? +# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina.txt: 10027) +/(.*/)?img/ad_ #ab2p-unblock-elem-R287 {+client-header-tagger{ab2p-unblock-elem-R287} \ } -# @@||adriver.ru/cgi-bin/erle.cgi?*&sz=$object-subrequest,domain=ivi.ru (advblock.txt: 7232) -.adriver.ru/cgi-bin/erle\.cgi\?.*&sz= +# @@/store_ad/*$domain=pcstore.com.tw (easylistchina.txt: 10039) +/(.*/)?store_ad/.* -#ab2p-unblock-elem-R1340 -{+client-header-tagger{ab2p-unblock-elem-R1340} \ +#ab2p-unblock-elem-R288 +{+client-header-tagger{ab2p-unblock-elem-R288} \ } -# @@||example.com^$image,subdocument,domain=izzylaif.com (advblock.txt: 7564) -.example.com +# @@/advert_$domain=pisen.com.cn|wb.qq.com (easylistchina.txt: 10001) +/(.*/)?advert_ -#ab2p-unblock-elem-R1341 -{+client-header-tagger{ab2p-unblock-elem-R1341} \ +#ab2p-unblock-elem-R289 +{+client-header-tagger{ab2p-unblock-elem-R289} \ } -# @@||googlesyndication.com/pagead/show_ads.js$domain=izzylaif.com|trackitonline.ru (advblock.txt: 7573) -.googlesyndication.com/pagead/show_ads\.js +# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina.txt: 9998) +/(.*/)?adsense/.* -#ab2p-unblock-elem-R1342 -{+client-header-tagger{ab2p-unblock-elem-R1342} \ +#ab2p-unblock-elem-R290 +{+client-header-tagger{ab2p-unblock-elem-R290} \ } -# @@||ad.doubleclick.net/adi/*.JABONG.COM$document,subdocument,domain=jabong.com (easylistchina+easylist.txt: 58154) -.ad.doubleclick.net/adi/.*\.JABONG\.COM -# @@||ad.doubleclick.net/ad/*.JABONG.COM$image,domain=jabong.com (easylistchina+easylist.txt: 58152) -.ad.doubleclick.net/ad/.*\.JABONG\.COM -# @@||2mdn.net/viewad/*/B*_$image,domain=jabong.com (easylistchina+easylist.txt: 58125) -.2mdn.net/viewad/.*/B.*_ -# @@||ad.doubleclick.net/adi/*.JABONG.COM$document,subdocument,domain=jabong.com (easylist.txt: 47669) -.ad.doubleclick.net/adi/.*\.JABONG\.COM -# @@||ad.doubleclick.net/ad/*.JABONG.COM$image,domain=jabong.com (easylist.txt: 47667) -.ad.doubleclick.net/ad/.*\.JABONG\.COM -# @@||2mdn.net/viewad/*/B*_$image,domain=jabong.com (easylist.txt: 47640) -.2mdn.net/viewad/.*/B.*_ +# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina.txt: 10185) +.cbjs.baidu.com/js/s\.js -#ab2p-unblock-elem-R1343 -{+client-header-tagger{ab2p-unblock-elem-R1343} \ +#ab2p-unblock-elem-R291 +{+client-header-tagger{ab2p-unblock-elem-R291} \ } -# @@||impact-ad.jp/combo?$subdocument,domain=jalan.net (easylistchina+easylist.txt: 61042) -.impact-ad.jp/combo\? -# @@||impact-ad.jp/combo?$subdocument,domain=jalan.net (easylist.txt: 50557) -.impact-ad.jp/combo\? +# @@?bannerId=$domain=qbao.com (easylistchina.txt: 10047) +/.*\?bannerId= -#ab2p-unblock-elem-R1344 -{+client-header-tagger{ab2p-unblock-elem-R1344} \ +#ab2p-unblock-elem-R292 +{+client-header-tagger{ab2p-unblock-elem-R292} \ } -# @@||jamo.tv^$script,domain=jamo.tv (easylistchina+easylist.txt: 61745) -.jamo.tv -# @@||jamo.tv^$script,domain=jamo.tv (easylist.txt: 51260) -.jamo.tv +# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina.txt: 10475) +.tajs.qq.com/stats\? -#ab2p-unblock-elem-R1345 -{+client-header-tagger{ab2p-unblock-elem-R1345} \ +#ab2p-unblock-elem-R293 +{+client-header-tagger{ab2p-unblock-elem-R293} \ } -# @@||puhtml.com^*.js$domain=jav4.me (easylistchina+easylist.txt: 61773) -.puhtml.com/.*\.js -# @@||popads.net/pop.js$domain=jav4.me (easylistchina+easylist.txt: 61768) -.popads.net/pop\.js -# @@||juicyads.com/jac.js$domain=jav4.me (easylistchina+easylist.txt: 61755) -.juicyads.com/jac\.js -# @@||javfor.me/ads-1.html$subdocument,domain=jav4.me (easylistchina+easylist.txt: 61748) -.javfor.me/ads-1\.html -# @@||jav4.me^$script,domain=jav4.me (easylistchina+easylist.txt: 61746) -.jav4.me -# @@||puhtml.com^*.js$domain=jav4.me (easylist.txt: 51288) -.puhtml.com/.*\.js -# @@||popads.net/pop.js$domain=jav4.me (easylist.txt: 51283) -.popads.net/pop\.js -# @@||juicyads.com/jac.js$domain=jav4.me (easylist.txt: 51270) -.juicyads.com/jac\.js -# @@||javfor.me/ads-1.html$subdocument,domain=jav4.me (easylist.txt: 51263) -.javfor.me/ads-1\.html -# @@||jav4.me^$script,domain=jav4.me (easylist.txt: 51261) -.jav4.me +# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina.txt: 10145) +.ads.rakuya.com.tw -#ab2p-unblock-elem-R1346 -{+client-header-tagger{ab2p-unblock-elem-R1346} \ +#ab2p-unblock-elem-R294 +{+client-header-tagger{ab2p-unblock-elem-R294} \ } -# @@||javfee.com^$script,domain=javfee.com (easylistchina+easylist.txt: 61747) -.javfee.com -# @@||javfee.com^$script,domain=javfee.com (easylist.txt: 51262) -.javfee.com +# @@/pub/ad/*$domain=ruten.com.tw (easylistchina.txt: 10034) +/(.*/)?pub/ad/.* -#ab2p-unblock-elem-R1347 -{+client-header-tagger{ab2p-unblock-elem-R1347} \ +#ab2p-unblock-elem-R295 +{+client-header-tagger{ab2p-unblock-elem-R295} \ } -# @@||buysellads.com/ac/bsa.js$domain=jc-mp.com (easylistchina+easylist.txt: 60129) -.buysellads.com/ac/bsa\.js -# @@||buysellads.com/ac/bsa.js$domain=jc-mp.com (easylist.txt: 49644) -.buysellads.com/ac/bsa\.js +# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina.txt: 10051) +# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina.txt: 10038) +/(.*/)?show_ads_impl\.js +# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina.txt: 10020) +/(.*/)?g\.doubleclick\.net\.js\? +# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina.txt: 9997) +/(.*/)?adsbygoogle\. +adsbygoogle.*. +# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina.txt: 9991) +/(.*/)?adlogger_tracker\.php -#ab2p-unblock-elem-R1348 -{+client-header-tagger{ab2p-unblock-elem-R1348} \ +#ab2p-unblock-elem-R296 +{+client-header-tagger{ab2p-unblock-elem-R296} \ } -# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina+easylist.txt: 10130) -.ad.3.cn/flags/mgets\? -# @@||360buyimg.com/ads/$domain=jd.com (easylistchina+easylist.txt: 10102) -.360buyimg.com/ads/ -# @@||360buyimg.com/ad/$domain=jd.com (easylistchina+easylist.txt: 10101) -.360buyimg.com/ad/ -# @@&ad_width=810&$domain=jd.com (easylistchina+easylist.txt: 9980) -/.*&ad_width=810& -# @@&ad_width=590&$domain=jd.com (easylistchina+easylist.txt: 9979) -/.*&ad_width=590& +# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina.txt: 10003) +/(.*/)?advertise/.* -#ab2p-unblock-elem-R1349 -{+client-header-tagger{ab2p-unblock-elem-R1349} \ +#ab2p-unblock-elem-R297 +{+client-header-tagger{ab2p-unblock-elem-R297} \ } -# @@|http:$image,script,domain=jjcast.com (easylistchina+easylist.txt: 10068) +# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina.txt: 10472) +.sina.com.cn/iplookup/iplookup\.php\? -#ab2p-unblock-elem-R1350 -{+client-header-tagger{ab2p-unblock-elem-R1350} \ +#ab2p-unblock-elem-R298 +{+client-header-tagger{ab2p-unblock-elem-R298} \ } -# @@||jkhentai.tv^$script,domain=jkhentai.tv (easylistchina+easylist.txt: 61753) -.jkhentai.tv -# @@||jkhentai.tv^$script,domain=jkhentai.tv (easylist.txt: 51268) -.jkhentai.tv +# @@||gg.woniu.com^$domain=snail.com (easylistchina.txt: 10243) +.gg.woniu.com -#ab2p-unblock-elem-R1351 -{+client-header-tagger{ab2p-unblock-elem-R1351} \ +#ab2p-unblock-elem-R299 +{+client-header-tagger{ab2p-unblock-elem-R299} \ } -# @@||serving-sys.com/BurstingPipe/adServer.bs?$popup,domain=jobamatic.com (easylistchina+easylist.txt: 61415) -.serving-sys.com/BurstingPipe/adServer\.bs\? -# @@||serving-sys.com/BurstingPipe/adServer.bs?$popup,domain=jobamatic.com (easylist.txt: 50930) -.serving-sys.com/BurstingPipe/adServer\.bs\? +# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina.txt: 10462) +.googletagmanager.com/gtm\.js\? +# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina.txt: 10461) +.google-analytics.com/plugins/ua/linkid\.js -#ab2p-unblock-elem-R1352 -{+client-header-tagger{ab2p-unblock-elem-R1352} \ +#ab2p-unblock-elem-R300 +{+client-header-tagger{ab2p-unblock-elem-R300} \ } -# @@||joblib.ru/js/ads-$domain=joblib.ru (advblock.txt: 7319) -.joblib.ru/js/ads- +# @@||keyrun.cn^$script,domain=sx566.com (easylistchina.txt: 10284) +.keyrun.cn -#ab2p-unblock-elem-R1353 -{+client-header-tagger{ab2p-unblock-elem-R1353} \ +#ab2p-unblock-elem-R301 +{+client-header-tagger{ab2p-unblock-elem-R301} \ } -# @@||ads1.atpclick.com/atpClick.aspx?$image,script,domain=jobnet.co.il|jobs-israel.com (easylistchina+easylist.txt: 58279) -.ads1.atpclick.com/atpClick\.aspx\? -# @@||ads1.atpclick.com/atpClick.aspx?$image,script,domain=jobnet.co.il|jobs-israel.com (easylist.txt: 47794) -.ads1.atpclick.com/atpClick\.aspx\? +# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina.txt: 10372) +.szhr.com.cn -#ab2p-unblock-elem-R1354 -{+client-header-tagger{ab2p-unblock-elem-R1354} \ +#ab2p-unblock-elem-R302 +{+client-header-tagger{ab2p-unblock-elem-R302} \ } -# @@||cloudfront.net/_ads/$xmlhttprequest,domain=jobstreet.co.id|jobstreet.co.in|jobstreet.co.th|jobstreet.com|jobstreet.com.my|jobstreet.com.ph|jobstreet.com.sg|jobstreet.vn (easylistchina+easylist.txt: 58598) -.cloudfront.net/_ads/ -# @@||cloudfront.net/_ads/$xmlhttprequest,domain=jobstreet.co.id|jobstreet.co.in|jobstreet.co.th|jobstreet.com|jobstreet.com.my|jobstreet.com.ph|jobstreet.com.sg|jobstreet.vn (easylist.txt: 48113) -.cloudfront.net/_ads/ +# @@||alimama.com^$domain=tanx.com (easylistchina.txt: 10150) +.alimama.com +# @@/adx.$domain=tanx.com (easylistchina.txt: 10010) +/(.*/)?adx\. +adx.*. -#ab2p-unblock-elem-R1355 -{+client-header-tagger{ab2p-unblock-elem-R1355} \ +#ab2p-unblock-elem-R303 +{+client-header-tagger{ab2p-unblock-elem-R303} \ } -# @@||teasers.gs-media.de^$domain=joindota.com (advblock.txt: 7408) -.teasers.gs-media.de -# @@/teasers.$domain=joindota.com (advblock.txt: 7209) -/(.*/)?teasers\. -teasers.*. +# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10467) +.opehs.tanx.com/ex\? +# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10457) +.ecpm.tanx.com/ex\? -#ab2p-unblock-elem-R1356 -{+client-header-tagger{ab2p-unblock-elem-R1356} \ +#ab2p-unblock-elem-R304 +{+client-header-tagger{ab2p-unblock-elem-R304} \ } -# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina+easylist.txt: 10168) -.allyes.com.cn/player/AllyesAdPlayerV1\.swf\? +# @@||tdx.com.cn/images/*ad$domain=tdx.com.cn (easylistchina.txt: 10376) +.tdx.com.cn/images/.*ad -#ab2p-unblock-elem-R1357 -{+client-header-tagger{ab2p-unblock-elem-R1357} \ +#ab2p-unblock-elem-R305 +{+client-header-tagger{ab2p-unblock-elem-R305} \ } -# @@||kakprosto.ru/images/advertising/$domain=kakprosto.ru (advblock.txt: 7320) -.kakprosto.ru/images/advertising/ - -#ab2p-unblock-elem-R1358 -{+client-header-tagger{ab2p-unblock-elem-R1358} \ -} -# @@/prepareCode?*&dl=$script,domain=kakprosto.ru|rusplt.ru|sobesednik.ru (advblock.txt: 7617) -/(.*/)?prepareCode\?.*&dl= - -#ab2p-unblock-elem-R1359 -{+client-header-tagger{ab2p-unblock-elem-R1359} \ -} -# @@||amazon-adsystem.com/e/ir?$image,domain=kasi-time.com (easylistchina+easylist.txt: 60975) -.amazon-adsystem.com/e/ir\? -# @@||amazon-adsystem.com/e/ir?$image,domain=kasi-time.com (easylist.txt: 50490) -.amazon-adsystem.com/e/ir\? - -#ab2p-unblock-elem-R1360 -{+client-header-tagger{ab2p-unblock-elem-R1360} \ -} -# @@||phncdn.com/v2/js/adblockdetect.js$domain=keezmovies.com (easylistchina+easylist.txt: 61765) -.phncdn.com/v2/js/adblockdetect\.js -# @@||phncdn.com/v2/js/adblockdetect.js$domain=keezmovies.com (easylist.txt: 51280) -.phncdn.com/v2/js/adblockdetect\.js - -#ab2p-unblock-elem-R1361 -{+client-header-tagger{ab2p-unblock-elem-R1361} \ -} -# @@||liverail.com/js/LiveRail.Interstitial-$script,domain=keygames.com (easylistchina+easylist.txt: 59103) -.liverail.com/js/LiveRail\.Interstitial- -# @@||liverail.com/js/LiveRail.Interstitial-$script,domain=keygames.com (easylist.txt: 48618) -.liverail.com/js/LiveRail\.Interstitial- - -#ab2p-unblock-elem-R1362 -{+client-header-tagger{ab2p-unblock-elem-R1362} \ -} -# @@||pagead2.googlesyndication.com/pagead/imgad?$image,domain=kingofgames.net|nedbank.co.za|nedbankgreen.co.za|virginaustralia.com (easylistchina+easylist.txt: 59329) -.pagead2.googlesyndication.com/pagead/imgad\? -# @@||pagead2.googlesyndication.com/pagead/imgad?$image,domain=kingofgames.net|nedbank.co.za|nedbankgreen.co.za|virginaustralia.com (easylist.txt: 48844) -.pagead2.googlesyndication.com/pagead/imgad\? - -#ab2p-unblock-elem-R1363 -{+client-header-tagger{ab2p-unblock-elem-R1363} \ -} -# @@/ads.js|$script,domain=kinomoov.net|vgtimes.ru (advblock.txt: 7526) -/(.*/)?ads\.js$ -ads.js - -#ab2p-unblock-elem-R1364 -{+client-header-tagger{ab2p-unblock-elem-R1364} \ -} -# @@||awaps.yandex.ru^*_video_$script,domain=kinopoisk.ru (advblock.txt: 7272) -.awaps.yandex.ru/.*_video_ +# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina.txt: 10028) +/(.*/)?img_ad/.* #ab2p-unblock-elem-R306 {+client-header-tagger{ab2p-unblock-elem-R306} \ } -# @@||propellerads.com^*/adlogo/$domain=kissanime.com (easylistchina+easylist.txt: 61090) -.propellerads.com/.*/adlogo/ -# @@||sonobi.com/welcome/$image,domain=kissanime.com (easylistchina+easylist.txt: 60756) -.sonobi.com/welcome/ -# @@||rubiconproject.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60708) -.rubiconproject.com -# @@||propellerads.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60672) -.propellerads.com -# @@||mgid.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60523) -.mgid.com -# @@||mgid.com/k/i/kissanime.com.$script,domain=kissanime.com (easylistchina+easylist.txt: 60521) -.mgid.com/k/i/kissanime\.com\. -# @@||mgid.com/k/i/*.js?t=$script,domain=kissanime.com (easylistchina+easylist.txt: 60520) -.mgid.com/k/i/.*\.js\?t= -# @@||madadsmedia.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60483) -.madadsmedia.com -# @@||hornyspots.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60384) -.hornyspots.com -# @@||game-advertising-online.com/img/icon_stoplight.jpg?$domain=kissanime.com (easylistchina+easylist.txt: 60332) -.game-advertising-online.com/img/icon_stoplight\.jpg\? -# @@||epicgameads.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60252) -.epicgameads.com -# @@||dropboxusercontent.com/*ad$script,domain=kissanime.com (easylistchina+easylist.txt: 60237) -.dropboxusercontent.com/.*ad -# @@||cpxinteractive.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60189) -.cpxinteractive.com -# @@||cpmtree.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60188) -.cpmtree.com -# @@||cpmstar.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60187) -.cpmstar.com -# @@||cpmstar.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60186) -.cpmstar.com -# @@||cpalead.com^$domain=kissanime.com (easylistchina+easylist.txt: 60185) -.cpalead.com -# @@||core.adprotected.com^$subdocument,domain=kissanime.com (easylistchina+easylist.txt: 60181) -.core.adprotected.com -# @@||clickxchange.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60165) -.clickxchange.com -# @@||clicksor.net/images/$domain=kissanime.com (easylistchina+easylist.txt: 60164) -.clicksor.net/images/ -# @@||chitika.com^*/search-button.png?$image,domain=kissanime.com (easylistchina+easylist.txt: 60155) -.chitika.com/.*/search-button\.png\? -# @@||chango.com^*/jcrew.jpg?$image,domain=kissanime.com (easylistchina+easylist.txt: 60147) -.chango.com/.*/jcrew\.jpg\? -# @@||chango.com^*/adexchanger.png?$domain=kissanime.com (easylistchina+easylist.txt: 60146) -.chango.com/.*/adexchanger\.png\? -# @@||cdn.mgid.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60143) -.cdn.mgid.com -# @@||advertisegame.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60032) -.advertisegame.com -# @@||adnxs.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60003) -.adnxs.com -# @@||ad4game.com*/images/$image,domain=kissanime.com (easylistchina+easylist.txt: 59985) -.ad4game.com*./(.*/)?images/ -# @@|https://$script,domain=kissanime.com (easylistchina+easylist.txt: 59959) -# @@|http://*.js?_=$script,third-party,domain=kissanime.com (easylistchina+easylist.txt: 59948) -/.*\.js\?_= -# @@.gif^$image,third-party,domain=kissanime.com (easylistchina+easylist.txt: 59890) -/.*\.gif[^\w%.-] -.*.gif -# @@||propellerads.com^*/adlogo/$domain=kissanime.com (easylist.txt: 50605) -.propellerads.com/.*/adlogo/ -# @@||sonobi.com/welcome/$image,domain=kissanime.com (easylist.txt: 50271) -.sonobi.com/welcome/ -# @@||rubiconproject.com^$image,script,domain=kissanime.com (easylist.txt: 50223) -.rubiconproject.com -# @@||propellerads.com^$image,domain=kissanime.com (easylist.txt: 50187) -.propellerads.com -# @@||mgid.com^$image,domain=kissanime.com (easylist.txt: 50038) -.mgid.com -# @@||mgid.com/k/i/kissanime.com.$script,domain=kissanime.com (easylist.txt: 50036) -.mgid.com/k/i/kissanime\.com\. -# @@||mgid.com/k/i/*.js?t=$script,domain=kissanime.com (easylist.txt: 50035) -.mgid.com/k/i/.*\.js\?t= -# @@||madadsmedia.com^$image,script,domain=kissanime.com (easylist.txt: 49998) -.madadsmedia.com -# @@||hornyspots.com^$image,domain=kissanime.com (easylist.txt: 49899) -.hornyspots.com -# @@||game-advertising-online.com/img/icon_stoplight.jpg?$domain=kissanime.com (easylist.txt: 49847) -.game-advertising-online.com/img/icon_stoplight\.jpg\? -# @@||epicgameads.com^$image,script,domain=kissanime.com (easylist.txt: 49767) -.epicgameads.com -# @@||dropboxusercontent.com/*ad$script,domain=kissanime.com (easylist.txt: 49752) -.dropboxusercontent.com/.*ad -# @@||cpxinteractive.com^$script,domain=kissanime.com (easylist.txt: 49704) -.cpxinteractive.com -# @@||cpmtree.com^$script,domain=kissanime.com (easylist.txt: 49703) -.cpmtree.com -# @@||cpmstar.com^$script,domain=kissanime.com (easylist.txt: 49702) -.cpmstar.com -# @@||cpmstar.com^$image,domain=kissanime.com (easylist.txt: 49701) -.cpmstar.com -# @@||cpalead.com^$domain=kissanime.com (easylist.txt: 49700) -.cpalead.com -# @@||core.adprotected.com^$subdocument,domain=kissanime.com (easylist.txt: 49696) -.core.adprotected.com -# @@||clickxchange.com^$image,domain=kissanime.com (easylist.txt: 49680) -.clickxchange.com -# @@||clicksor.net/images/$domain=kissanime.com (easylist.txt: 49679) -.clicksor.net/images/ -# @@||chitika.com^*/search-button.png?$image,domain=kissanime.com (easylist.txt: 49670) -.chitika.com/.*/search-button\.png\? -# @@||chango.com^*/jcrew.jpg?$image,domain=kissanime.com (easylist.txt: 49662) -.chango.com/.*/jcrew\.jpg\? -# @@||chango.com^*/adexchanger.png?$domain=kissanime.com (easylist.txt: 49661) -.chango.com/.*/adexchanger\.png\? -# @@||cdn.mgid.com^$script,domain=kissanime.com (easylist.txt: 49658) -.cdn.mgid.com -# @@||advertisegame.com^$image,domain=kissanime.com (easylist.txt: 49547) -.advertisegame.com -# @@||adnxs.com^$script,domain=kissanime.com (easylist.txt: 49518) -.adnxs.com -# @@||ad4game.com*/images/$image,domain=kissanime.com (easylist.txt: 49500) -.ad4game.com*./(.*/)?images/ -# @@|https://$script,domain=kissanime.com (easylist.txt: 49474) -# @@|http://*.js?_=$script,third-party,domain=kissanime.com (easylist.txt: 49463) -/.*\.js\?_= -# @@.gif^$image,third-party,domain=kissanime.com (easylist.txt: 49405) -/.*\.gif[^\w%.-] -.*.gif - -#ab2p-unblock-elem-R1365 -{+client-header-tagger{ab2p-unblock-elem-R1365} \ -} -# @@||doublerecall.com/scripts/application.js$domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 60232) -.doublerecall.com/scripts/application\.js -# @@||adprotected.com/tags/$script,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 60005) -.adprotected.com/tags/ -# @@||ad4game.com/js/$script,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59986) -.ad4game.com/js/ -# @@.png^$image,third-party,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59909) -/.*\.png[^\w%.-] -.*.png -# @@.jpg^$image,third-party,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59898) -/.*\.jpg[^\w%.-] -.*.jpg -# @@||doublerecall.com/scripts/application.js$domain=kissanime.com|kisscartoon.me (easylist.txt: 49747) -.doublerecall.com/scripts/application\.js -# @@||adprotected.com/tags/$script,domain=kissanime.com|kisscartoon.me (easylist.txt: 49520) -.adprotected.com/tags/ -# @@||ad4game.com/js/$script,domain=kissanime.com|kisscartoon.me (easylist.txt: 49501) -.ad4game.com/js/ -# @@.png^$image,third-party,domain=kissanime.com|kisscartoon.me (easylist.txt: 49424) -/.*\.png[^\w%.-] -.*.png -# @@.jpg^$image,third-party,domain=kissanime.com|kisscartoon.me (easylist.txt: 49413) -/.*\.jpg[^\w%.-] -.*.jpg - -#ab2p-unblock-elem-R1366 -{+client-header-tagger{ab2p-unblock-elem-R1366} \ -} -# @@.to/ads/$domain=kissanime.to (easylistchina+easylist.txt: 59911) -/.*\.to/ads/ -.*.to/ads/ -# @@.to/ads/$domain=kissanime.to (easylist.txt: 49426) -/.*\.to/ads/ -.*.to/ads/ - -#ab2p-unblock-elem-R1367 -{+client-header-tagger{ab2p-unblock-elem-R1367} \ -} -# @@||tester.advertserve.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60792) -.tester.advertserve.com -# @@||mgid.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60524) -.mgid.com -# @@||cibleclick.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60159) -.cibleclick.com -# @@||adverticum.net/static/js/$domain=kisscartoon.me (easylistchina+easylist.txt: 60031) -.adverticum.net/static/js/ -# @@||adadvisor.net^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 59987) -.adadvisor.net -# @@?aid=$image,third-party,domain=kisscartoon.me (easylistchina+easylist.txt: 59940) -/.*\?aid= -# @@||tester.advertserve.com^$script,domain=kisscartoon.me (easylist.txt: 50307) -.tester.advertserve.com -# @@||mgid.com^$script,domain=kisscartoon.me (easylist.txt: 50039) -.mgid.com -# @@||cibleclick.com^$script,domain=kisscartoon.me (easylist.txt: 49674) -.cibleclick.com -# @@||adverticum.net/static/js/$domain=kisscartoon.me (easylist.txt: 49546) -.adverticum.net/static/js/ -# @@||adadvisor.net^$script,domain=kisscartoon.me (easylist.txt: 49502) -.adadvisor.net -# @@?aid=$image,third-party,domain=kisscartoon.me (easylist.txt: 49455) -/.*\?aid= - -#ab2p-unblock-elem-R1368 -{+client-header-tagger{ab2p-unblock-elem-R1368} \ -} -# @@/cgi-bin/banners/*$domain=km.ru (advblock.txt: 7197) -/(.*/)?cgi-bin/banners/.* - -#ab2p-unblock-elem-R1369 -{+client-header-tagger{ab2p-unblock-elem-R1369} \ -} -# @@||player.tritondigital.com^$domain=kmozart.com (easylistchina+easylist.txt: 59390) -.player.tritondigital.com -# @@||player.tritondigital.com^$domain=kmozart.com (easylist.txt: 48905) -.player.tritondigital.com - -#ab2p-unblock-elem-R1370 -{+client-header-tagger{ab2p-unblock-elem-R1370} \ -} -# @@||cas.clickability.com/cas/cas.js?r=$script,domain=kmvt.com (easylistchina+easylist.txt: 58548) -.cas.clickability.com/cas/cas\.js\?r= -# @@||cas.clickability.com/cas/cas.js?r=$script,domain=kmvt.com (easylist.txt: 48063) -.cas.clickability.com/cas/cas\.js\?r= - -#ab2p-unblock-elem-R1371 -{+client-header-tagger{ab2p-unblock-elem-R1371} \ -} -# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina+easylist.txt: 10472) -.google-analytics.com/analytics\.js - -#ab2p-unblock-elem-R1372 -{+client-header-tagger{ab2p-unblock-elem-R1372} \ -} -# @@||kongcdn.com/game_icons/*-300x250_$domain=kongregate.com (easylistchina+easylist.txt: 59067) -.kongcdn.com/game_icons/.*-300x250_ -# @@||ngads.com/gateway_$object-subrequest,domain=kongregate.com (advblock.txt: 7346) -.ngads.com/gateway_ -# @@||ngads.com/crossdomain.xml|$domain=kongregate.com (advblock.txt: 7345) -.ngads.com/crossdomain\.xml$ -# @@||kongcdn.com/game_icons/*-300x250_$domain=kongregate.com (easylist.txt: 48582) -.kongcdn.com/game_icons/.*-300x250_ - -#ab2p-unblock-elem-R1373 -{+client-header-tagger{ab2p-unblock-elem-R1373} \ -} -# @@||hostave4.net^*/video/$object-subrequest,domain=kporno.com (easylistchina+easylist.txt: 61442) -.hostave4.net/.*/video/ -# @@||hostave4.net^*/video/$object-subrequest,domain=kporno.com (easylist.txt: 50957) -.hostave4.net/.*/video/ - -#ab2p-unblock-elem-R1374 -{+client-header-tagger{ab2p-unblock-elem-R1374} \ -} -# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina+easylist.txt: 10293) -.kbcool.com/advpic/ - -#ab2p-unblock-elem-R1375 -{+client-header-tagger{ab2p-unblock-elem-R1375} \ -} -# @@||doubleclick.net^*/videoplayer*=worldnow$subdocument,domain=ktiv.com|wflx.com (easylistchina+easylist.txt: 58736) -.doubleclick.net/.*/videoplayer.*=worldnow -# @@||doubleclick.net^*/videoplayer*=worldnow$subdocument,domain=ktiv.com|wflx.com (easylist.txt: 48251) -.doubleclick.net/.*/videoplayer.*=worldnow - -#ab2p-unblock-elem-R1376 -{+client-header-tagger{ab2p-unblock-elem-R1376} \ -} -# @@||doubleclick.net/adj/kval/health;pos=gallerytop;sz=$script,domain=kval.com (easylistchina+easylist.txt: 58712) -.doubleclick.net/adj/kval/health;pos=gallerytop;sz= -# @@||doubleclick.net/adj/kval/health;pos=gallerytop;sz=$script,domain=kval.com (easylist.txt: 48227) -.doubleclick.net/adj/kval/health;pos=gallerytop;sz= - -#ab2p-unblock-elem-R1377 -{+client-header-tagger{ab2p-unblock-elem-R1377} \ -} -# @@||google.com/uds/api/ads/*/search.$script,domain=landandfarm.com|query.nytimes.com|trustedreviews.com|www.google.com (easylistchina+easylist.txt: 58908) -.google.com/uds/api/ads/.*/search\. -# @@||google.com/uds/api/ads/*/search.$script,domain=landandfarm.com|query.nytimes.com|trustedreviews.com|www.google.com (easylist.txt: 48423) -.google.com/uds/api/ads/.*/search\. - -#ab2p-unblock-elem-R1378 -{+client-header-tagger{ab2p-unblock-elem-R1378} \ -} -# @@||doubleclick.net/pfadx/*/cbs/$object-subrequest,domain=latimes.com (easylistchina+easylist.txt: 58725) -.doubleclick.net/pfadx/.*/cbs/ -# @@||doubleclick.net/pfadx/*/cbs/$object-subrequest,domain=latimes.com (easylist.txt: 48240) -.doubleclick.net/pfadx/.*/cbs/ - -#ab2p-unblock-elem-R1379 -{+client-header-tagger{ab2p-unblock-elem-R1379} \ -} -# @@||latinospost.com/widget_init.php$script,third-party,domain=latinopost.com (easylistchina+easylist.txt: 46007) -.latinospost.com/widget_init\.php -# @@||boomsbeat.com/widget_init.php$script,third-party,domain=latinopost.com (easylistchina+easylist.txt: 45954) -.boomsbeat.com/widget_init\.php -# @@||latinospost.com/widget_init.php$script,third-party,domain=latinopost.com (easylist.txt: 35522) -.latinospost.com/widget_init\.php -# @@||boomsbeat.com/widget_init.php$script,third-party,domain=latinopost.com (easylist.txt: 35469) -.boomsbeat.com/widget_init\.php - -#ab2p-unblock-elem-R1380 -{+client-header-tagger{ab2p-unblock-elem-R1380} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=lavozdegalicia.es (easylistchina+easylist.txt: 61082) +# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina.txt: 10315) .partner.googleadservices.com/gpt/pubads_impl_ -# @@||g.doubleclick.net/gampad/ads?*_Ligatus&$script,domain=lavozdegalicia.es (easylistchina+easylist.txt: 61032) -.g.doubleclick.net/gampad/ads\?.*_Ligatus& -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=lavozdegalicia.es (easylist.txt: 50597) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||g.doubleclick.net/gampad/ads?*_Ligatus&$script,domain=lavozdegalicia.es (easylist.txt: 50547) -.g.doubleclick.net/gampad/ads\?.*_Ligatus& +# @@||ads.$domain=tvb.com (easylistchina.txt: 10142) +.ads.*. -#ab2p-unblock-elem-R1381 -{+client-header-tagger{ab2p-unblock-elem-R1381} \ +#ab2p-unblock-elem-R307 +{+client-header-tagger{ab2p-unblock-elem-R307} \ } -# @@/tizer_$domain=led66.ru (advblock.txt: 7212) -/(.*/)?tizer_ +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=tw.autos.yahoo.com|tw.buy.yahoo.com (easylistchina.txt: 10459) +.geo.query.yahoo.com -#ab2p-unblock-elem-R1382 -{+client-header-tagger{ab2p-unblock-elem-R1382} \ +#ab2p-unblock-elem-R308 +{+client-header-tagger{ab2p-unblock-elem-R308} \ } -# @@||wixstatic.com/media/*_300_250_$image,domain=lenislens.com (easylistchina+easylist.txt: 61390) -.wixstatic.com/media/.*_300_250_ -# @@||wixstatic.com/media/*_300_250_$image,domain=lenislens.com (easylist.txt: 50905) -.wixstatic.com/media/.*_300_250_ +# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina.txt: 10385) +.tw.m.yimg.com/res/ads/ -#ab2p-unblock-elem-R1383 -{+client-header-tagger{ab2p-unblock-elem-R1383} \ +#ab2p-unblock-elem-R309 +{+client-header-tagger{ab2p-unblock-elem-R309} \ } -# @@.custom.min.js$script,domain=lenta.ru|news.rambler.ru (advblock.txt: 7178) -/.*\.custom\.min\.js -.*.custom.min.js*. +# @@||union.$domain=union.163.com (easylistchina.txt: 10390) +.union.*. -#ab2p-unblock-elem-R1384 -{+client-header-tagger{ab2p-unblock-elem-R1384} \ +#ab2p-unblock-elem-R310 +{+client-header-tagger{ab2p-unblock-elem-R310} \ } -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina+easylist.txt: 10323) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js +# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina.txt: 10362) +.sinaimg.cn/unipro/pub/suda_m_v629\.js -#ab2p-unblock-elem-R1385 -{+client-header-tagger{ab2p-unblock-elem-R1385} \ +#ab2p-unblock-elem-R311 +{+client-header-tagger{ab2p-unblock-elem-R311} \ } -# @@/adsame.$domain=liba.com|libaclub.com (easylistchina+easylist.txt: 10010) -/(.*/)?adsame\. -adsame.*. +# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina.txt: 10144) +.ads.myopen.vip.com -#ab2p-unblock-elem-R1386 -{+client-header-tagger{ab2p-unblock-elem-R1386} \ +#ab2p-unblock-elem-R312 +{+client-header-tagger{ab2p-unblock-elem-R312} \ } -# @@/getCodeTest?$object-subrequest,domain=life.ru|smotri.com|video.reset.ru (advblock.txt: 7538) -/(.*/)?getCodeTest\? -# @@/getCode?$object-subrequest,domain=life.ru|smotri.com|video.reset.ru (advblock.txt: 7537) -/(.*/)?getCode\? +# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina.txt: 10252) +.hd.duba.net/vip\.ijinshan\.com/repository/ad-images/ -#ab2p-unblock-elem-R1387 -{+client-header-tagger{ab2p-unblock-elem-R1387} \ +#ab2p-unblock-elem-R313 +{+client-header-tagger{ab2p-unblock-elem-R313} \ } -# @@||adgear.com^*/adgear.js$domain=lifemadedelicious.ca|tac.tv (easylistchina+easylist.txt: 58198) -.adgear.com/.*/adgear\.js -# @@||adgear.com^*/adgear.js$domain=lifemadedelicious.ca|tac.tv (easylist.txt: 47713) -.adgear.com/.*/adgear\.js +# @@/AdImage/*$domain=wacom.tw (easylistchina.txt: 9988) +/(.*/)?AdImage/.* -#ab2p-unblock-elem-R1388 -{+client-header-tagger{ab2p-unblock-elem-R1388} \ +#ab2p-unblock-elem-R314 +{+client-header-tagger{ab2p-unblock-elem-R314} \ } -# @@||sascdn.com/video/$object,script,domain=ligtv.com.tr (easylistchina+easylist.txt: 61108) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/current/libs/js/controller.js$domain=ligtv.com.tr (easylistchina+easylist.txt: 61107) -.sascdn.com/diff/video/current/libs/js/controller\.js -# @@||sascdn.com/video/$object,script,domain=ligtv.com.tr (easylist.txt: 50623) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/current/libs/js/controller.js$domain=ligtv.com.tr (easylist.txt: 50622) -.sascdn.com/diff/video/current/libs/js/controller\.js +# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina.txt: 10098) +.70e.com/js/2013_new\.js -#ab2p-unblock-elem-R1389 -{+client-header-tagger{ab2p-unblock-elem-R1389} \ +#ab2p-unblock-elem-R315 +{+client-header-tagger{ab2p-unblock-elem-R315} \ } -# @@||live.seenreport.com:82/media/js/fingerprint.js?$domain=live.geo.tv (easylistchina+easylist.txt: 59098) -.live.seenreport.com:82/media/js/fingerprint\.js\? -# @@||live.seenreport.com:82/media/js/ads_controller.js?$domain=live.geo.tv (easylistchina+easylist.txt: 59097) -.live.seenreport.com:82/media/js/ads_controller\.js\? -# @@||live.seenreport.com:82/media/js/fingerprint.js?$domain=live.geo.tv (easylist.txt: 48613) -.live.seenreport.com:82/media/js/fingerprint\.js\? -# @@||live.seenreport.com:82/media/js/ads_controller.js?$domain=live.geo.tv (easylist.txt: 48612) -.live.seenreport.com:82/media/js/ads_controller\.js\? +# @@/show_ad_$domain=wb.qq.com (easylistchina.txt: 10037) +/(.*/)?show_ad_ -#ab2p-unblock-elem-R1390 -{+client-header-tagger{ab2p-unblock-elem-R1390} \ +#ab2p-unblock-elem-R316 +{+client-header-tagger{ab2p-unblock-elem-R316} \ } -# @@||scity.tv/js/ads.js$domain=live.scity.tv (easylistchina+easylist.txt: 59495) -.scity.tv/js/ads\.js -# @@||scity.tv/js/ads.js$domain=live.scity.tv (easylist.txt: 49010) -.scity.tv/js/ads\.js +# @@/LoadAds.$domain=webcars.com.cn (easylistchina.txt: 10030) +/(.*/)?LoadAds\. +LoadAds.*. -#ab2p-unblock-elem-R1391 -{+client-header-tagger{ab2p-unblock-elem-R1391} \ +#ab2p-unblock-elem-R317 +{+client-header-tagger{ab2p-unblock-elem-R317} \ } -# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina+easylist.txt: 10382) -.stockstar.com/ad/ +# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina.txt: 10342) +.rm.sina.com.cn/minisite/ -#ab2p-unblock-elem-R1392 -{+client-header-tagger{ab2p-unblock-elem-R1392} \ +#ab2p-unblock-elem-R318 +{+client-header-tagger{ab2p-unblock-elem-R318} \ } -# @@||amazonaws.com/banners/$image,domain=livefromdarylshouse.com|pandasecurity.com (easylistchina+easylist.txt: 58397) -.amazonaws.com/banners/ -# @@||amazonaws.com/banners/$image,domain=livefromdarylshouse.com|pandasecurity.com (easylist.txt: 47912) -.amazonaws.com/banners/ +# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina.txt: 10473) +.sinajs.cn/open/analytics/js/suda\.js -#ab2p-unblock-elem-R1393 -{+client-header-tagger{ab2p-unblock-elem-R1393} \ +#ab2p-unblock-elem-R319 +{+client-header-tagger{ab2p-unblock-elem-R319} \ } -# @@||livejournal.com/js/??*?v=$script,domain=livejournal.com (advblock.txt: 7325) -.livejournal.com/js/\?\?.*\?v= +# @@||adsense.woso.cn^$domain=woso.cn (easylistchina.txt: 10146) +.adsense.woso.cn -#ab2p-unblock-elem-R1394 -{+client-header-tagger{ab2p-unblock-elem-R1394} \ +#ab2p-unblock-elem-R320 +{+client-header-tagger{ab2p-unblock-elem-R320} \ } -# @@||livelib.ru/img/skins/*/baner_$image,domain=livelib.ru (advblock.txt: 7326) -.livelib.ru/img/skins/.*/baner_ +# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina.txt: 10266) +.ifengimg.com/ifeng/sources/region_ +# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina.txt: 10265) +.ifengimg.com/ifeng/sources/inice_ -#ab2p-unblock-elem-R1395 -{+client-header-tagger{ab2p-unblock-elem-R1395} \ +#ab2p-unblock-elem-R321 +{+client-header-tagger{ab2p-unblock-elem-R321} \ } -# @@||scanscout.com/ads/$object-subrequest,domain=livestream.com (easylistchina+easylist.txt: 59493) -.scanscout.com/ads/ -# @@||adotube.com/adapters/as3overstream*.swf?$domain=livestream.com (easylistchina+easylist.txt: 58214) -.adotube.com/adapters/as3overstream.*\.swf\? -# @@||scanscout.com/ads/$object-subrequest,domain=livestream.com (easylist.txt: 49008) -.scanscout.com/ads/ -# @@||adotube.com/adapters/as3overstream*.swf?$domain=livestream.com (easylist.txt: 47729) -.adotube.com/adapters/as3overstream.*\.swf\? +# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina.txt: 10471) +.simba.taobao.com/\?name=tcmad& -#ab2p-unblock-elem-R1396 -{+client-header-tagger{ab2p-unblock-elem-R1396} \ +#ab2p-unblock-elem-R322 +{+client-header-tagger{ab2p-unblock-elem-R322} \ } -# @@||directorym.com/articles_media/$domain=localmarket.autismsupportnetwork.com (easylistchina+easylist.txt: 58674) -.directorym.com/articles_media/ -# @@||directorym.com/articles_media/$domain=localmarket.autismsupportnetwork.com (easylist.txt: 48189) -.directorym.com/articles_media/ +# @@&ad_type=$domain=x.jd.com (easylistchina.txt: 9964) +/.*&ad_type= -#ab2p-unblock-elem-R1397 -{+client-header-tagger{ab2p-unblock-elem-R1397} \ +#ab2p-unblock-elem-R323 +{+client-header-tagger{ab2p-unblock-elem-R323} \ } -# @@||transitcard.ru/resources/js/informer.js|$domain=locator.transitcard.ru (advblock.txt: 7412) -.transitcard.ru/resources/js/informer\.js$ +# @@/analytics.php?$domain=xcar.com.cn (easylistchina.txt: 10446) +/(.*/)?analytics\.php\? -#ab2p-unblock-elem-R1398 -{+client-header-tagger{ab2p-unblock-elem-R1398} \ +#ab2p-unblock-elem-R324 +{+client-header-tagger{ab2p-unblock-elem-R324} \ } -# @@||advertise.bingads.microsoft.com/Includes/$domain=login.live.com (easylistchina+easylist.txt: 61226) -.advertise.bingads.microsoft.com/Includes/ -# @@||advertise.bingads.microsoft.com/Includes/$domain=login.live.com (easylist.txt: 50741) -.advertise.bingads.microsoft.com/Includes/ - -#ab2p-unblock-elem-R1399 -{+client-header-tagger{ab2p-unblock-elem-R1399} \ -} -# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina+easylist.txt: 10481) -.pingjs.qq.com/ping_tcss_ied\.js - -#ab2p-unblock-elem-R1400 -{+client-header-tagger{ab2p-unblock-elem-R1400} \ -} -# @@/adsbox.$domain=long7.qq.com (easylistchina+easylist.txt: 10011) -/(.*/)?adsbox\. -adsbox.*. - -#ab2p-unblock-elem-R1401 -{+client-header-tagger{ab2p-unblock-elem-R1401} \ -} -# @@||csbew.com^$domain=longbl.com (easylistchina+easylist.txt: 10218) -.csbew.com - -#ab2p-unblock-elem-R1402 -{+client-header-tagger{ab2p-unblock-elem-R1402} \ -} -# @@||loot.com/content/css/combo/advert_$domain=loot.com (easylistchina+easylist.txt: 59110) -.loot.com/content/css/combo/advert_ -# @@||loot.com/content/css/combo/advert_$domain=loot.com (easylist.txt: 48625) -.loot.com/content/css/combo/advert_ - -#ab2p-unblock-elem-R1403 -{+client-header-tagger{ab2p-unblock-elem-R1403} \ -} -# @@||lostfilm.info^$script,domain=lostfilm.tv (advblock.txt: 691) -.lostfilm.info - -#ab2p-unblock-elem-R1404 -{+client-header-tagger{ab2p-unblock-elem-R1404} \ -} -# @@||ad.adorika.com/st?ad_type=ad&ad_size=728x90$script,domain=lshunter.tv (easylistchina+easylist.txt: 58149) -.ad.adorika.com/st\?ad_type=ad&ad_size=728x90 -# @@||ad.adorika.com/st?ad_type=ad&ad_size=728x90$script,domain=lshunter.tv (easylist.txt: 47664) -.ad.adorika.com/st\?ad_type=ad&ad_size=728x90 - -#ab2p-unblock-elem-R1405 -{+client-header-tagger{ab2p-unblock-elem-R1405} \ -} -# @@||d3iuob6xw3k667.cloudfront.net^*.com/ad/$xmlhttprequest,domain=lucidchart.com|lucidpress.com (easylistchina+easylist.txt: 58642) -.d3iuob6xw3k667.cloudfront.net/.*\.com/ad/ -# @@||d3iuob6xw3k667.cloudfront.net^*.com/ad/$xmlhttprequest,domain=lucidchart.com|lucidpress.com (easylist.txt: 48157) -.d3iuob6xw3k667.cloudfront.net/.*\.com/ad/ - -#ab2p-unblock-elem-R1406 -{+client-header-tagger{ab2p-unblock-elem-R1406} \ -} -# @@||adcreative.naver.com/ad3/js/min/da.m.min.js$domain=m.naver.com (easylistchina+easylist.txt: 58191) -.adcreative.naver.com/ad3/js/min/da\.m\.min\.js -# @@||adcreative.naver.com/ad3/js/min/da.m.min.js$domain=m.naver.com (easylist.txt: 47706) -.adcreative.naver.com/ad3/js/min/da\.m\.min\.js - -#ab2p-unblock-elem-R1407 -{+client-header-tagger{ab2p-unblock-elem-R1407} \ -} -# @@||kixer.com/ad/2?$xmlhttprequest,domain=m.tmz.com (easylistchina+easylist.txt: 59063) -.kixer.com/ad/2\? -# @@||kixer.com/ad/12?$xmlhttprequest,domain=m.tmz.com (easylistchina+easylist.txt: 59062) -.kixer.com/ad/12\? -# @@||kixer.com/ad/2?$xmlhttprequest,domain=m.tmz.com (easylist.txt: 48578) -.kixer.com/ad/2\? -# @@||kixer.com/ad/12?$xmlhttprequest,domain=m.tmz.com (easylist.txt: 48577) -.kixer.com/ad/12\? - -#ab2p-unblock-elem-R1408 -{+client-header-tagger{ab2p-unblock-elem-R1408} \ -} -# @@||mackolik.com^$script,domain=mackolik.com (easylistchina+easylist.txt: 60481) -.mackolik.com -# @@||mackolik.com^$script,domain=mackolik.com (easylist.txt: 49996) -.mackolik.com - -#ab2p-unblock-elem-R1409 -{+client-header-tagger{ab2p-unblock-elem-R1409} \ -} -# @@||medyanetads.com/ad.js$domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60511) -.medyanetads.com/ad\.js -# @@||admost.com/adx/js/admost.js$domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60002) -.admost.com/adx/js/admost\.js -# @@||admost.com/adx/get.ashx?$script,domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60001) -.admost.com/adx/get\.ashx\? -# @@||medyanetads.com/ad.js$domain=mackolik.com|sahadan.com (easylist.txt: 50026) -.medyanetads.com/ad\.js -# @@||admost.com/adx/js/admost.js$domain=mackolik.com|sahadan.com (easylist.txt: 49517) -.admost.com/adx/js/admost\.js -# @@||admost.com/adx/get.ashx?$script,domain=mackolik.com|sahadan.com (easylist.txt: 49516) -.admost.com/adx/get\.ashx\? - -#ab2p-unblock-elem-R1410 -{+client-header-tagger{ab2p-unblock-elem-R1410} \ -} -# @@||madyar.net/baners/$domain=madyar.net (advblock.txt: 7329) -.madyar.net/baners/ - -#ab2p-unblock-elem-R1411 -{+client-header-tagger{ab2p-unblock-elem-R1411} \ -} -# @@||google.com/ads/popudner/banner.jpg?$domain=magesy.be (easylistchina+easylist.txt: 60362) -.google.com/ads/popudner/banner\.jpg\? -# @@||popunder.ru/banners/$domain=magesy.be (easylistchina+easylist.txt: 59402) -.popunder.ru/banners/ -# @@||google.com/ads/popudner/banner.jpg?$domain=magesy.be (easylist.txt: 49877) -.google.com/ads/popudner/banner\.jpg\? -# @@||popunder.ru/banners/$domain=magesy.be (easylist.txt: 48917) -.popunder.ru/banners/ - -#ab2p-unblock-elem-R1412 -{+client-header-tagger{ab2p-unblock-elem-R1412} \ -} -# @@||g.doubleclick.net/gampad/ad?iu=*/Leaderboard&sz=728x90$image,domain=magicseaweed.com (easylistchina+easylist.txt: 60320) -.g.doubleclick.net/gampad/ad\?iu=.*/Leaderboard&sz=728x90 -# @@||g.doubleclick.net/gampad/ad?iu=*/Leaderboard&sz=728x90$image,domain=magicseaweed.com (easylist.txt: 49835) -.g.doubleclick.net/gampad/ad\?iu=.*/Leaderboard&sz=728x90 - -#ab2p-unblock-elem-R1413 -{+client-header-tagger{ab2p-unblock-elem-R1413} \ -} -# @@||msads.net/adbar/products/*/adbar.js$domain=mail.live.com (easylistchina+easylist.txt: 59197) -.msads.net/adbar/products/.*/adbar\.js -# @@||msads.net/adbar/products/*/adbar.js$domain=mail.live.com (easylist.txt: 48712) -.msads.net/adbar/products/.*/adbar\.js +# @@/addata.$domain=xdf.cn (easylistchina.txt: 9985) +/(.*/)?addata\. +addata.*. #ab2p-unblock-elem-R325 {+client-header-tagger{ab2p-unblock-elem-R325} \ } -# @@||imgsmail.ru^*/btn/adv/$domain=mail.ru (advblock.txt: 7314) -.imgsmail.ru/.*/btn/adv/ +# @@/adblock.js$domain=xingk.cc (easylistchina.txt: 9984) +/(.*/)?adblock\.js +adblock.js*. #ab2p-unblock-elem-R326 {+client-header-tagger{ab2p-unblock-elem-R326} \ } -# @@||adserver.yahoo.com/a?*=headr$script,domain=mail.yahoo.com (easylistchina+easylist.txt: 58299) -.adserver.yahoo.com/a\?.*=headr -# @@||adserver.yahoo.com/a?*=headr$script,domain=mail.yahoo.com (easylist.txt: 47814) -.adserver.yahoo.com/a\?.*=headr +# @@/PIC/AD/*$domain=ybjk.com (easylistchina.txt: 10032) +/(.*/)?PIC/AD/.* #ab2p-unblock-elem-R327 {+client-header-tagger{ab2p-unblock-elem-R327} \ } -# @@||sixpool.me^$image,domain=majorleaguegaming.com (easylistchina+easylist.txt: 60741) -.sixpool.me -# @@||pagead2.googlesyndication.com/pagead/js/lidar.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 60627) -.pagead2.googlesyndication.com/pagead/js/lidar\.js -# @@||fragflix.com^*.png?*=$image,domain=majorleaguegaming.com (easylistchina+easylist.txt: 60301) -.fragflix.com/.*\.png\?.*= -# @@||adzerk.net/ados.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 60035) -.adzerk.net/ados\.js -# @@.png?advertisement_$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59907) -/.*\.png\?advertisement_ -# @@.png?ad_banner=$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59906) -/.*\.png\?ad_banner= -# @@.gif?ad_banner=$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59889) -/.*\.gif\?ad_banner= -# @@||sixpool.me^$image,domain=majorleaguegaming.com (easylist.txt: 50256) -.sixpool.me -# @@||pagead2.googlesyndication.com/pagead/js/lidar.js$domain=majorleaguegaming.com (easylist.txt: 50142) -.pagead2.googlesyndication.com/pagead/js/lidar\.js -# @@||fragflix.com^*.png?*=$image,domain=majorleaguegaming.com (easylist.txt: 49816) -.fragflix.com/.*\.png\?.*= -# @@||adzerk.net/ados.js$domain=majorleaguegaming.com (easylist.txt: 49550) -.adzerk.net/ados\.js -# @@.png?advertisement_$domain=majorleaguegaming.com (easylist.txt: 49422) -/.*\.png\?advertisement_ -# @@.png?ad_banner=$domain=majorleaguegaming.com (easylist.txt: 49421) -/.*\.png\?ad_banner= -# @@.gif?ad_banner=$domain=majorleaguegaming.com (easylist.txt: 49404) -/.*\.gif\?ad_banner= - -#ab2p-unblock-elem-R1414 -{+client-header-tagger{ab2p-unblock-elem-R1414} \ -} -# @@||g.doubleclick.net/gampad/ads?$object-subrequest,domain=majorleaguegaming.com|nfl.com|player.rogersradio.ca|twitch.tv|viki.com|volarvideo.com|worldstarhiphop.com (easylistchina+easylist.txt: 58850) -.g.doubleclick.net/gampad/ads\? -# @@||g.doubleclick.net/gampad/ads?$object-subrequest,domain=majorleaguegaming.com|nfl.com|player.rogersradio.ca|twitch.tv|viki.com|volarvideo.com|worldstarhiphop.com (easylist.txt: 48365) -.g.doubleclick.net/gampad/ads\? - -#ab2p-unblock-elem-R1415 -{+client-header-tagger{ab2p-unblock-elem-R1415} \ -} -# @@||ad4.liverail.com/?compressed|$domain=majorleaguegaming.com|pbs.org|wikihow.com (easylistchina+easylist.txt: 58167) -.ad4.liverail.com/\?compressed$ -# @@||ad4.liverail.com/?compressed|$domain=majorleaguegaming.com|pbs.org|wikihow.com (easylist.txt: 47682) -.ad4.liverail.com/\?compressed$ - -#ab2p-unblock-elem-R1416 -{+client-header-tagger{ab2p-unblock-elem-R1416} \ -} -# @@||ads.rubiconproject.com/ad/$script,domain=manga2u.co|mangabird.com|memegenerator.net|onemanga.me|waoanime.tv (easylistchina+easylist.txt: 60018) -.ads.rubiconproject.com/ad/ -# @@||ads.rubiconproject.com/ad/$script,domain=manga2u.co|mangabird.com|memegenerator.net|onemanga.me|waoanime.tv (easylist.txt: 49533) -.ads.rubiconproject.com/ad/ - -#ab2p-unblock-elem-R1417 -{+client-header-tagger{ab2p-unblock-elem-R1417} \ -} -# @@||server.cpmstar.com/view.aspx?poolid=$domain=manga2u.co|newgrounds.com|xfire.com (easylistchina+easylist.txt: 59518) -.server.cpmstar.com/view\.aspx\?poolid= -# @@||server.cpmstar.com/view.aspx?poolid=$domain=manga2u.co|newgrounds.com|xfire.com (easylist.txt: 49033) -.server.cpmstar.com/view\.aspx\?poolid= - -#ab2p-unblock-elem-R1418 -{+client-header-tagger{ab2p-unblock-elem-R1418} \ -} -# @@||optimized-by.rubiconproject.com/a/$domain=manga2u.co|onemanga.me|pro-football-reference.com (easylistchina+easylist.txt: 60617) -.optimized-by.rubiconproject.com/a/ -# @@||optimized-by.rubiconproject.com/a/$domain=manga2u.co|onemanga.me|pro-football-reference.com (easylist.txt: 50132) -.optimized-by.rubiconproject.com/a/ - -#ab2p-unblock-elem-R1419 -{+client-header-tagger{ab2p-unblock-elem-R1419} \ -} -# @@||optimized-by.rubiconproject.com/a/*-2.html?$subdocument,domain=mangasky.co (easylistchina+easylist.txt: 60618) -.optimized-by.rubiconproject.com/a/.*-2\.html\? -# @@||ads.rubiconproject.com/ad/$domain=mangasky.co (easylistchina+easylist.txt: 60017) -.ads.rubiconproject.com/ad/ -# @@||optimized-by.rubiconproject.com/a/*-2.html?$subdocument,domain=mangasky.co (easylist.txt: 50133) -.optimized-by.rubiconproject.com/a/.*-2\.html\? -# @@||ads.rubiconproject.com/ad/$domain=mangasky.co (easylist.txt: 49532) -.ads.rubiconproject.com/ad/ - -#ab2p-unblock-elem-R1420 -{+client-header-tagger{ab2p-unblock-elem-R1420} \ -} -# @@||rsense-ad.realclick.co.kr/favicon.ico?id=$image,domain=mangaumaru.com (easylistchina+easylist.txt: 60705) -.rsense-ad.realclick.co.kr/favicon\.ico\?id= -# @@||rsense-ad.realclick.co.kr/favicon.ico?id=$image,domain=mangaumaru.com (easylist.txt: 50220) -.rsense-ad.realclick.co.kr/favicon\.ico\?id= - -#ab2p-unblock-elem-R1421 -{+client-header-tagger{ab2p-unblock-elem-R1421} \ -} -# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina+easylist.txt: 9988) -/.*\.com/adv/ -.*.com/adv/ - -#ab2p-unblock-elem-R1422 -{+client-header-tagger{ab2p-unblock-elem-R1422} \ -} -# @@||search.spotxchange.com/vast/$object-subrequest,domain=maniatv.com (easylistchina+easylist.txt: 60726) -.search.spotxchange.com/vast/ -# @@||search.spotxchange.com/vast/$object-subrequest,domain=maniatv.com (easylist.txt: 50241) -.search.spotxchange.com/vast/ - -#ab2p-unblock-elem-R1423 -{+client-header-tagger{ab2p-unblock-elem-R1423} \ -} -# @@||doubleclick.net/adj/oiq.man.$script,domain=manualsonline.com (easylistchina+easylist.txt: 58714) -.doubleclick.net/adj/oiq\.man\. -# @@||doubleclick.net/adj/oiq.man.$script,domain=manualsonline.com (easylist.txt: 48229) -.doubleclick.net/adj/oiq\.man\. - -#ab2p-unblock-elem-R1424 -{+client-header-tagger{ab2p-unblock-elem-R1424} \ -} -# @@||aka-cdn-ns.adtech.de/apps/$object-subrequest,domain=manutd.com (easylistchina+easylist.txt: 58373) -.aka-cdn-ns.adtech.de/apps/ -# @@||aka-cdn-ns.adtech.de/apps/$object-subrequest,domain=manutd.com (easylist.txt: 47888) -.aka-cdn-ns.adtech.de/apps/ - -#ab2p-unblock-elem-R1425 -{+client-header-tagger{ab2p-unblock-elem-R1425} \ -} -# @@||reklama.hiking.sk/openx_new/www/delivery/spcjs.php?id=*&target=_blank$script,domain=mapy.hiking.sk (easylistchina+easylist.txt: 61096) -.reklama.hiking.sk/openx_new/www/delivery/spcjs\.php\?id=.*&target=_blank -# @@||reklama.hiking.sk/openx_new/www/delivery/spcjs.php?id=*&target=_blank$script,domain=mapy.hiking.sk (easylist.txt: 50611) -.reklama.hiking.sk/openx_new/www/delivery/spcjs\.php\?id=.*&target=_blank - -#ab2p-unblock-elem-R1426 -{+client-header-tagger{ab2p-unblock-elem-R1426} \ -} -# @@||awaps.yandex.$domain=market.yandex.by|market.yandex.kz|market.yandex.ru|market.yandex.ua (advblock.txt: 7271) -.awaps.yandex.*. - -#ab2p-unblock-elem-R1427 -{+client-header-tagger{ab2p-unblock-elem-R1427} \ -} -# @@||wsj.net^*/images/adv-$image,domain=marketwatch.com (easylistchina+easylist.txt: 59829) -.wsj.net/.*/images/adv- -# @@||wsj.net^*/images/adv-$image,domain=marketwatch.com (easylist.txt: 49344) -.wsj.net/.*/images/adv- - -#ab2p-unblock-elem-R1428 -{+client-header-tagger{ab2p-unblock-elem-R1428} \ -} -# @@||v.fwmrm.net/*/AdManager.swf$domain=marthastewart.com|nbcsports.com (easylistchina+easylist.txt: 59738) -.v.fwmrm.net/.*/AdManager\.swf -# @@||v.fwmrm.net/*/AdManager.swf$domain=marthastewart.com|nbcsports.com (easylist.txt: 49253) -.v.fwmrm.net/.*/AdManager\.swf - -#ab2p-unblock-elem-R1429 -{+client-header-tagger{ab2p-unblock-elem-R1429} \ -} -# @@||player.grabnetworks.com^*/vox_300x250_inline.xml$domain=mavrixonline.com (easylistchina+easylist.txt: 61362) -.player.grabnetworks.com/.*/vox_300x250_inline\.xml -# @@||player.grabnetworks.com^*/vox_300x250_inline.xml$domain=mavrixonline.com (easylist.txt: 50877) -.player.grabnetworks.com/.*/vox_300x250_inline\.xml - -#ab2p-unblock-elem-R1430 -{+client-header-tagger{ab2p-unblock-elem-R1430} \ -} -# @@||nba.com/mobilevideo?*&ad_url=$script,domain=mavs.wpengine.netdna-cdn.com (easylistchina+easylist.txt: 59225) -.nba.com/mobilevideo\?.*&ad_url= -# @@||nba.com/mobilevideo?*&ad_url=$script,domain=mavs.wpengine.netdna-cdn.com (easylist.txt: 48740) -.nba.com/mobilevideo\?.*&ad_url= - -#ab2p-unblock-elem-R1431 -{+client-header-tagger{ab2p-unblock-elem-R1431} \ -} -# @@||maxigame.org^$script,domain=maxigame.org (easylistchina+easylist.txt: 60508) -.maxigame.org -# @@||maxigame.org^$script,domain=maxigame.org (easylist.txt: 50023) -.maxigame.org - -#ab2p-unblock-elem-R1432 -{+client-header-tagger{ab2p-unblock-elem-R1432} \ -} -# @@||go.padstm.com/?$script,domain=mediatechnologycenter.info (easylistchina+easylist.txt: 60355) -.go.padstm.com/\? -# @@||go.padstm.com/?$script,domain=mediatechnologycenter.info (easylist.txt: 49870) -.go.padstm.com/\? - -#ab2p-unblock-elem-R1433 -{+client-header-tagger{ab2p-unblock-elem-R1433} \ -} -# @@||as.medscape.com/html.ng/transactionid%$subdocument,domain=medscape.com (easylistchina+easylist.txt: 58438) -.as.medscape.com/html\.ng/transactionid% -# @@||as.medscape.com/html.ng/transactionid%$subdocument,domain=medscape.com (easylist.txt: 47953) -.as.medscape.com/html\.ng/transactionid% - -#ab2p-unblock-elem-R334 -{+client-header-tagger{ab2p-unblock-elem-R334} \ -} -# @@||adrcdn.com/ads/*/megogo.xml$object-subrequest,domain=megogo.net (advblock.txt: 7554) -.adrcdn.com/ads/.*/megogo\.xml -# @@||adfox.ru/*/getCode?$object-subrequest,domain=megogo.net (advblock.txt: 7546) -.adfox.ru/.*/getCode\? -# @@||adfox.ru/*/event?$object-subrequest,domain=megogo.net (advblock.txt: 7545) -.adfox.ru/.*/event\? - -#ab2p-unblock-elem-R1434 -{+client-header-tagger{ab2p-unblock-elem-R1434} \ -} -# @@/crossdomain.xml|$domain=megogo.net|smotri.com|video.reset.ru (advblock.txt: 7534) -/(.*/)?crossdomain\.xml$ -crossdomain.xml - -#ab2p-unblock-elem-R1435 -{+client-header-tagger{ab2p-unblock-elem-R1435} \ -} -# @@|http://*/ad$domain=meiziweibo.com (easylistchina+easylist.txt: 10071) -/(.*/)?ad - -#ab2p-unblock-elem-R1436 -{+client-header-tagger{ab2p-unblock-elem-R1436} \ -} -# @@||ads.intergi.com/adrawdata/*/ADTECH;$object-subrequest,domain=melting-mindz.com (easylistchina+easylist.txt: 58243) -.ads.intergi.com/adrawdata/.*/ADTECH; -# @@||ads.intergi.com/adrawdata/*/ADTECH;$object-subrequest,domain=melting-mindz.com (easylist.txt: 47758) -.ads.intergi.com/adrawdata/.*/ADTECH; - -#ab2p-unblock-elem-R1437 -{+client-header-tagger{ab2p-unblock-elem-R1437} \ -} -# @@||amazonaws.com^*/sponsorbanners/$image,domain=members.portalbuzz.com (easylistchina+easylist.txt: 58399) -.amazonaws.com/.*/sponsorbanners/ -# @@||amazonaws.com^*/sponsorbanners/$image,domain=members.portalbuzz.com (easylist.txt: 47914) -.amazonaws.com/.*/sponsorbanners/ - -#ab2p-unblock-elem-R1438 -{+client-header-tagger{ab2p-unblock-elem-R1438} \ -} -# @@||memecdn.com/advertising_$image,domain=memecenter.com (easylistchina+easylist.txt: 59166) -.memecdn.com/advertising_ -# @@||memecdn.com/advertising_$image,domain=memecenter.com (easylist.txt: 48681) -.memecdn.com/advertising_ - -#ab2p-unblock-elem-R1439 -{+client-header-tagger{ab2p-unblock-elem-R1439} \ -} -# @@||mlstatic.com^*/product_ads/$image,domain=mercadolibre.com.ve (easylistchina+easylist.txt: 61064) -.mlstatic.com/.*/product_ads/ -# @@||mlstatic.com^*/product_ads/$image,domain=mercadolibre.com.ve (easylist.txt: 50579) -.mlstatic.com/.*/product_ads/ - -#ab2p-unblock-elem-R1440 -{+client-header-tagger{ab2p-unblock-elem-R1440} \ -} -# @@||advertising.mercadolivre.com.br^$xmlhttprequest,domain=mercadolivre.com.br (easylistchina+easylist.txt: 60965) -.advertising.mercadolivre.com.br -# @@||advertising.mercadolivre.com.br^$xmlhttprequest,domain=mercadolivre.com.br (easylist.txt: 50480) -.advertising.mercadolivre.com.br - -#ab2p-unblock-elem-R1441 -{+client-header-tagger{ab2p-unblock-elem-R1441} \ -} -# @@||tcadops.ca/consumer/adtagtc_$script,domain=metro.ca (easylistchina+easylist.txt: 59623) -.tcadops.ca/consumer/adtagtc_ -# @@||tcadops.ca/consumer/adtagtc_$script,domain=metro.ca (easylist.txt: 49138) -.tcadops.ca/consumer/adtagtc_ - -#ab2p-unblock-elem-R1442 -{+client-header-tagger{ab2p-unblock-elem-R1442} \ -} -# @@||metvnetwork.s3.amazonaws.com^*-quiz-300x250-$image,domain=metv.com (easylistchina+easylist.txt: 61354) -.metvnetwork.s3.amazonaws.com/.*-quiz-300x250- -# @@||metvnetwork.s3.amazonaws.com^*-quiz-300x250-$image,domain=metv.com (easylist.txt: 50869) -.metvnetwork.s3.amazonaws.com/.*-quiz-300x250- - -#ab2p-unblock-elem-R1443 -{+client-header-tagger{ab2p-unblock-elem-R1443} \ -} -# @@||meviodisplayads.com/adholder.php$domain=mevio.com (easylistchina+easylist.txt: 59171) -.meviodisplayads.com/adholder\.php -# @@||meviodisplayads.com/adholder.php$domain=mevio.com (easylist.txt: 48686) -.meviodisplayads.com/adholder\.php - -#ab2p-unblock-elem-R1444 -{+client-header-tagger{ab2p-unblock-elem-R1444} \ -} -# @@||mgts.ru/upload/images/ban$domain=mgts.ru (advblock.txt: 7337) -.mgts.ru/upload/images/ban - -#ab2p-unblock-elem-R1445 -{+client-header-tagger{ab2p-unblock-elem-R1445} \ -} -# @@||rackcdn.com/banners/default_coupon_banner.png$domain=michaels.com (easylistchina+easylist.txt: 59432) -.rackcdn.com/banners/default_coupon_banner\.png -# @@||rackcdn.com/banners/default_coupon_banner.png$domain=michaels.com (easylist.txt: 48947) -.rackcdn.com/banners/default_coupon_banner\.png - -#ab2p-unblock-elem-R1446 -{+client-header-tagger{ab2p-unblock-elem-R1446} \ -} -# @@||mvapublicstorage.microsoft.com/banners/$domain=microsoftvirtualacademy.com (easylistchina+easylist.txt: 59210) -.mvapublicstorage.microsoft.com/banners/ -# @@||mvapublicstorage.microsoft.com/banners/$domain=microsoftvirtualacademy.com (easylist.txt: 48725) -.mvapublicstorage.microsoft.com/banners/ - -#ab2p-unblock-elem-R1447 -{+client-header-tagger{ab2p-unblock-elem-R1447} \ -} -# @@||doubleclick.net^*/adi/MiLB.com/standings^$subdocument,domain=milb.com (easylistchina+easylist.txt: 58730) -.doubleclick.net/.*/adi/MiLB\.com/standings[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/multimedia^$subdocument,domain=milb.com (easylistchina+easylist.txt: 58729) -.doubleclick.net/.*/adi/MiLB\.com/multimedia[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/standings^$subdocument,domain=milb.com (easylist.txt: 48245) -.doubleclick.net/.*/adi/MiLB\.com/standings[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/multimedia^$subdocument,domain=milb.com (easylist.txt: 48244) -.doubleclick.net/.*/adi/MiLB\.com/multimedia[^\w%.-] - -#ab2p-unblock-elem-R1448 -{+client-header-tagger{ab2p-unblock-elem-R1448} \ -} -# @@||ads.telecinco.es/RealMedia/ads/adstream_sx.ads/*@$object-subrequest,domain=mitele.es|telecinco.es (easylistchina+easylist.txt: 60951) -.ads.telecinco.es/RealMedia/ads/adstream_sx\.ads/.*@ -# @@||ads.telecinco.es/RealMedia/ads/adstream_sx.ads/*@$object-subrequest,domain=mitele.es|telecinco.es (easylist.txt: 50466) -.ads.telecinco.es/RealMedia/ads/adstream_sx\.ads/.*@ - -#ab2p-unblock-elem-R1449 -{+client-header-tagger{ab2p-unblock-elem-R1449} \ -} -# @@||azvideo.asia^$domain=miwed.ru (advblock.txt: 683) -.azvideo.asia - -#ab2p-unblock-elem-R1450 -{+client-header-tagger{ab2p-unblock-elem-R1450} \ -} -# @@||mlb.com/bundle?js=*/adproxy.$script,domain=mlb.com (easylistchina+easylist.txt: 59178) -.mlb.com/bundle\?js=.*/adproxy\. -# @@||doubleclick.net/adi/mlb.mlb/*^free_agent_tracker_12^$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58701) -.doubleclick.net/adi/mlb\.mlb/.*[^\w%.-]free_agent_tracker_12[^\w%.-] -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=free_agent_tracker_$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58700) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=free_agent_tracker_ -# @@||doubleclick.net/adi/*.mlb/scoreboard;pageid=scoreboard_ymd;sz=$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58695) -.doubleclick.net/adi/.*\.mlb/scoreboard;pageid=scoreboard_ymd;sz= -# @@||doubleclick.net/adi/*.mlb/photos;*;sz=300x250;$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58694) -.doubleclick.net/adi/.*\.mlb/photos;.*;sz=300x250; -# @@||mlb.com/bundle?js=*/adproxy.$script,domain=mlb.com (easylist.txt: 48693) -.mlb.com/bundle\?js=.*/adproxy\. -# @@||doubleclick.net/adi/mlb.mlb/*^free_agent_tracker_12^$subdocument,domain=mlb.com (easylist.txt: 48216) -.doubleclick.net/adi/mlb\.mlb/.*[^\w%.-]free_agent_tracker_12[^\w%.-] -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=free_agent_tracker_$subdocument,domain=mlb.com (easylist.txt: 48215) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=free_agent_tracker_ -# @@||doubleclick.net/adi/*.mlb/scoreboard;pageid=scoreboard_ymd;sz=$subdocument,domain=mlb.com (easylist.txt: 48210) -.doubleclick.net/adi/.*\.mlb/scoreboard;pageid=scoreboard_ymd;sz= -# @@||doubleclick.net/adi/*.mlb/photos;*;sz=300x250;$subdocument,domain=mlb.com (easylist.txt: 48209) -.doubleclick.net/adi/.*\.mlb/photos;.*;sz=300x250; - -#ab2p-unblock-elem-R1451 -{+client-header-tagger{ab2p-unblock-elem-R1451} \ -} -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=cutfour;sz=$subdocument,domain=mlb.mlb.com (easylistchina+easylist.txt: 58699) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=cutfour;sz= -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=cutfour;sz=$subdocument,domain=mlb.mlb.com (easylist.txt: 48214) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=cutfour;sz= - -#ab2p-unblock-elem-R1452 -{+client-header-tagger{ab2p-unblock-elem-R1452} \ -} -# @@||ads.undertone.com/*&zoneid=$domain=mlbtraderumors.com (easylistchina+easylist.txt: 58271) -.ads.undertone.com/.*&zoneid= -# @@||ads.undertone.com/*&zoneid=$domain=mlbtraderumors.com (easylist.txt: 47786) -.ads.undertone.com/.*&zoneid= - -#ab2p-unblock-elem-R1453 -{+client-header-tagger{ab2p-unblock-elem-R1453} \ -} -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/mlssoccer.com/$object-subrequest,domain=mlssoccer.com (easylistchina+easylist.txt: 59280) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/mlssoccer\.com/ -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/*video$domain=mlssoccer.com (easylistchina+easylist.txt: 59279) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/.*video -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/mlssoccer.com/$object-subrequest,domain=mlssoccer.com (easylist.txt: 48795) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/mlssoccer\.com/ -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/*video$domain=mlssoccer.com (easylist.txt: 48794) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/.*video - -#ab2p-unblock-elem-R1454 -{+client-header-tagger{ab2p-unblock-elem-R1454} \ -} -# @@||vcnt3rd.com/Scripts/adscript.js$domain=mma-core.com (easylistchina+easylist.txt: 60856) -.vcnt3rd.com/Scripts/adscript\.js -# @@||vcnt3rd.com/Scripts/adscript.js$domain=mma-core.com (easylist.txt: 50371) -.vcnt3rd.com/Scripts/adscript\.js - -#ab2p-unblock-elem-R1455 -{+client-header-tagger{ab2p-unblock-elem-R1455} \ -} -# @@||googlesyndication.com/pagead/show_ads.js$domain=mmoaddict.ru (advblock.txt: 7305) -.googlesyndication.com/pagead/show_ads\.js -# @@||googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=mmoaddict.ru (advblock.txt: 7304) -.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-elem-R1456 -{+client-header-tagger{ab2p-unblock-elem-R1456} \ -} -# @@/AdShow/*$domain=mndxy.org (easylistchina+easylist.txt: 10014) -/(.*/)?AdShow/.* - -#ab2p-unblock-elem-R1457 -{+client-header-tagger{ab2p-unblock-elem-R1457} \ -} -# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina+easylist.txt: 10140) -.ad.unimhk.com/show\.php\? - -#ab2p-unblock-elem-R1458 -{+client-header-tagger{ab2p-unblock-elem-R1458} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=mobinozer.com (easylistchina+easylist.txt: 60407) -.imasdk.googleapis.com/js/sdkloader/ima3\.js -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=mobinozer.com (easylistchina+easylist.txt: 60406) -.imasdk.googleapis.com/js/core/bridge.*\.html -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=mobinozer.com (easylist.txt: 49922) -.imasdk.googleapis.com/js/sdkloader/ima3\.js -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=mobinozer.com (easylist.txt: 49921) -.imasdk.googleapis.com/js/core/bridge.*\.html - -#ab2p-unblock-elem-R1459 -{+client-header-tagger{ab2p-unblock-elem-R1459} \ -} -# @@||mochiads.com/static/pub/swf/leaderboard.js$domain=mochigames.com (easylistchina+easylist.txt: 59188) -.mochiads.com/static/pub/swf/leaderboard\.js -# @@||mochiads.com/static/pub/swf/leaderboard.js$domain=mochigames.com (easylist.txt: 48703) -.mochiads.com/static/pub/swf/leaderboard\.js - -#ab2p-unblock-elem-R1460 -{+client-header-tagger{ab2p-unblock-elem-R1460} \ -} -# @@||liverail.com/?LR_$object-subrequest,domain=moevideo.net (advblock.txt: 7579) -.liverail.com/\?LR_ -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$domain=moevideo.net (advblock.txt: 7223) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-elem-R1461 -{+client-header-tagger{ab2p-unblock-elem-R1461} \ -} -# @@||propellerads.com/afu.php?zoneid=$subdocument,domain=moevideos.net (easylistchina+easylist.txt: 61089) -.propellerads.com/afu\.php\?zoneid= -# @@||am10.ru/letitbit.net_in.php$subdocument,domain=moevideos.net (easylistchina+easylist.txt: 60972) -.am10.ru/letitbit\.net_in\.php -# @@||propellerads.com/afu.php?zoneid=$subdocument,domain=moevideos.net (easylist.txt: 50604) -.propellerads.com/afu\.php\?zoneid= -# @@||am10.ru/letitbit.net_in.php$subdocument,domain=moevideos.net (easylist.txt: 50487) -.am10.ru/letitbit\.net_in\.php - -#ab2p-unblock-elem-R1462 -{+client-header-tagger{ab2p-unblock-elem-R1462} \ -} -# @@||monster.com/services/bannerad.asmx/getadsrc$xmlhttprequest,domain=monster.com (easylistchina+easylist.txt: 59192) -.monster.com/services/bannerad\.asmx/getadsrc -# @@||media.newjobs.com/ads/$image,object,domain=monster.com (easylistchina+easylist.txt: 59154) -.media.newjobs.com/ads/ -# @@||media.monster.com/ads/$image,domain=monster.com (easylistchina+easylist.txt: 59153) -.media.monster.com/ads/ -# @@||monster.com/services/bannerad.asmx/getadsrc$xmlhttprequest,domain=monster.com (easylist.txt: 48707) -.monster.com/services/bannerad\.asmx/getadsrc -# @@||media.newjobs.com/ads/$image,object,domain=monster.com (easylist.txt: 48669) -.media.newjobs.com/ads/ -# @@||media.monster.com/ads/$image,domain=monster.com (easylist.txt: 48668) -.media.monster.com/ads/ - -#ab2p-unblock-elem-R343 -{+client-header-tagger{ab2p-unblock-elem-R343} \ -} -# @@||moonwalk.cc^$script,domain=moonwalk.cc (advblock.txt: 7584) -.moonwalk.cc -# @@$image,domain=moonwalk.cc (advblock.txt: 7520) - - -#ab2p-unblock-elem-R1463 -{+client-header-tagger{ab2p-unblock-elem-R1463} \ -} -# @@||mstar.com/ads/$image,domain=morningstar.com (easylistchina+easylist.txt: 59201) -.mstar.com/ads/ -# @@||mstar.com/ads/$image,domain=morningstar.com (easylist.txt: 48716) -.mstar.com/ads/ - -#ab2p-unblock-elem-R1464 -{+client-header-tagger{ab2p-unblock-elem-R1464} \ -} -# @@||u.openx.net/v/1.0/sc?$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 59720) -.u.openx.net/v/1\.0/sc\? -# @@||ox-d.motogp.com/v/1.0/av?*auid=$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 59316) -.ox-d.motogp.com/v/1\.0/av\?.*auid= -# @@||adswizz.com/www/delivery/swfindex.php?reqtype=adssetup&$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 58315) -.adswizz.com/www/delivery/swfindex\.php\?reqtype=adssetup& -# @@||adswizz.com/www/components/$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 58314) -.adswizz.com/www/components/ -# @@||u.openx.net/v/1.0/sc?$object-subrequest,domain=motogp.com (easylist.txt: 49235) -.u.openx.net/v/1\.0/sc\? -# @@||ox-d.motogp.com/v/1.0/av?*auid=$object-subrequest,domain=motogp.com (easylist.txt: 48831) -.ox-d.motogp.com/v/1\.0/av\?.*auid= -# @@||adswizz.com/www/delivery/swfindex.php?reqtype=adssetup&$object-subrequest,domain=motogp.com (easylist.txt: 47830) -.adswizz.com/www/delivery/swfindex\.php\?reqtype=adssetup& -# @@||adswizz.com/www/components/$object-subrequest,domain=motogp.com (easylist.txt: 47829) -.adswizz.com/www/components/ - -#ab2p-unblock-elem-R1465 -{+client-header-tagger{ab2p-unblock-elem-R1465} \ -} -# @@||partner.googleadservices.com/gampad/google_ads2.js$domain=motorcycle.com|mysoju.com|nedbank.co.za (easylistchina+easylist.txt: 59341) -.partner.googleadservices.com/gampad/google_ads2\.js -# @@||partner.googleadservices.com/gampad/google_ads2.js$domain=motorcycle.com|mysoju.com|nedbank.co.za (easylist.txt: 48856) -.partner.googleadservices.com/gampad/google_ads2\.js - -#ab2p-unblock-elem-R1466 -{+client-header-tagger{ab2p-unblock-elem-R1466} \ -} -# @@||lbdevicons.brainient.com/flash/*/VPAIDWrapper.swf$object,domain=mousebreaker.com (easylistchina+easylist.txt: 59077) -.lbdevicons.brainient.com/flash/.*/VPAIDWrapper\.swf -# @@||inskinmedia.com^*/js/base/api/$domain=mousebreaker.com (easylistchina+easylist.txt: 59021) -.inskinmedia.com/.*/js/base/api/ -# @@||cdn.inskinmedia.com^*/ipcgame.js?$domain=mousebreaker.com (easylistchina+easylist.txt: 58566) -.cdn.inskinmedia.com/.*/ipcgame\.js\? -# @@||lbdevicons.brainient.com/flash/*/VPAIDWrapper.swf$object,domain=mousebreaker.com (easylist.txt: 48592) -.lbdevicons.brainient.com/flash/.*/VPAIDWrapper\.swf -# @@||inskinmedia.com^*/js/base/api/$domain=mousebreaker.com (easylist.txt: 48536) -.inskinmedia.com/.*/js/base/api/ -# @@||cdn.inskinmedia.com^*/ipcgame.js?$domain=mousebreaker.com (easylist.txt: 48081) -.cdn.inskinmedia.com/.*/ipcgame\.js\? - -#ab2p-unblock-elem-R1467 -{+client-header-tagger{ab2p-unblock-elem-R1467} \ -} -# @@||mgcashgate.com/cpalocker/$script,domain=movieleaks.co|videodepot.org (easylistchina+easylist.txt: 60519) -.mgcashgate.com/cpalocker/ -# @@||mgcashgate.com/cpalocker/$script,domain=movieleaks.co|videodepot.org (easylist.txt: 50034) -.mgcashgate.com/cpalocker/ - -#ab2p-unblock-elem-R1468 -{+client-header-tagger{ab2p-unblock-elem-R1468} \ -} -# @@||ads.yimg.com/la/adv/y/yahooxtra$image,domain=movies.yahoo.com (easylistchina+easylist.txt: 58275) -.ads.yimg.com/la/adv/y/yahooxtra -# @@||ads.yimg.com/la/adv/y/yahooxtra$image,domain=movies.yahoo.com (easylist.txt: 47790) -.ads.yimg.com/la/adv/y/yahooxtra - -#ab2p-unblock-elem-R1469 -{+client-header-tagger{ab2p-unblock-elem-R1469} \ -} -# @@||bbelements.com/bb/bb_one2n.js$domain=moviezone.cz (easylistchina+easylist.txt: 60989) -.bbelements.com/bb/bb_one2n\.js -# @@||bbelements.com/bb/bb_one2n.js$domain=moviezone.cz (easylist.txt: 50504) -.bbelements.com/bb/bb_one2n\.js - -#ab2p-unblock-elem-R1470 -{+client-header-tagger{ab2p-unblock-elem-R1470} \ -} -# @@||mozilla.org/img/covehead/plugincheck/*/728_90/loading.png$domain=mozilla.org (easylistchina+easylist.txt: 61356) -.mozilla.org/img/covehead/plugincheck/.*/728_90/loading\.png -# @@||mozilla.org/img/covehead/plugincheck/*/728_90/loading.png$domain=mozilla.org (easylist.txt: 50871) -.mozilla.org/img/covehead/plugincheck/.*/728_90/loading\.png - -#ab2p-unblock-elem-R1471 -{+client-header-tagger{ab2p-unblock-elem-R1471} \ -} -# @@||adserver.adreactor.com/js/libcode1_noajax.js$domain=mp3clan.audio|mp3clan.com (easylistchina+easylist.txt: 60022) -.adserver.adreactor.com/js/libcode1_noajax\.js -# @@||adserver.adreactor.com/js/libcode1_noajax.js$domain=mp3clan.audio|mp3clan.com (easylist.txt: 49537) -.adserver.adreactor.com/js/libcode1_noajax\.js - -#ab2p-unblock-elem-R1472 -{+client-header-tagger{ab2p-unblock-elem-R1472} \ -} -# @@||ads1.msads.net^*/dapmsn.js$domain=msn.com (easylistchina+easylist.txt: 58280) -.ads1.msads.net/.*/dapmsn\.js -# @@||rad.msn.com^$script,domain=msn.com (advblock.txt: 7371) -.rad.msn.com -# @@||msads.net^*/dapmsn.js^$domain=msn.com (advblock.txt: 7339) -.msads.net/.*/dapmsn\.js[^\w%.-] -# @@||adnxs.com/ttj?$script,domain=msn.com (advblock.txt: 7228) -.adnxs.com/ttj\? -# @@||ads1.msads.net^*/dapmsn.js$domain=msn.com (easylist.txt: 47795) -.ads1.msads.net/.*/dapmsn\.js - -#ab2p-unblock-elem-R1473 -{+client-header-tagger{ab2p-unblock-elem-R1473} \ -} -# @@||mts.ru/upload/images/*_baner.$domain=mts.ru (advblock.txt: 7340) -.mts.ru/upload/images/.*_baner\. -# @@||adcast.ru/mtsweb?$domain=mts.ru (advblock.txt: 7224) -.adcast.ru/mtsweb\? - -#ab2p-unblock-elem-R1474 -{+client-header-tagger{ab2p-unblock-elem-R1474} \ -} -# @@||googlesyndication.com/favicon.ico$domain=multiup.org (easylistchina+easylist.txt: 60365) -.googlesyndication.com/favicon\.ico -# @@||googlesyndication.com/favicon.ico$domain=multiup.org (easylist.txt: 49880) -.googlesyndication.com/favicon\.ico - -#ab2p-unblock-elem-R1475 -{+client-header-tagger{ab2p-unblock-elem-R1475} \ -} -# @@||yadayadayada.nl/banner/banner.php$image,domain=murf.nl|workhardclimbharder.nl (easylistchina+easylist.txt: 59839) -.yadayadayada.nl/banner/banner\.php -# @@||yadayadayada.nl/banner/banner.php$image,domain=murf.nl|workhardclimbharder.nl (easylist.txt: 49354) -.yadayadayada.nl/banner/banner\.php - -#ab2p-unblock-elem-R1476 -{+client-header-tagger{ab2p-unblock-elem-R1476} \ -} -# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina+easylist.txt: 10180) -.bdimg.com/advert/js/advert\.js - -#ab2p-unblock-elem-R1477 -{+client-header-tagger{ab2p-unblock-elem-R1477} \ -} -# @@||adwolf.ru^$script,subdocument,domain=muz.ru (advblock.txt: 7256) -.adwolf.ru - -#ab2p-unblock-elem-R1478 -{+client-header-tagger{ab2p-unblock-elem-R1478} \ -} -# @@/adwolf.js$domain=muz.ru|retrofm.ru (advblock.txt: 7194) -/(.*/)?adwolf\.js -adwolf.js*. - -#ab2p-unblock-elem-R1479 -{+client-header-tagger{ab2p-unblock-elem-R1479} \ -} -# @@||adap.tv/redir/client/swfloader.swf?$object,domain=my-magazine.me (easylistchina+easylist.txt: 60934) -.adap.tv/redir/client/swfloader\.swf\? -# @@||adap.tv/redir/client/swfloader.swf?$object,domain=my-magazine.me (easylist.txt: 50449) -.adap.tv/redir/client/swfloader\.swf\? - -#ab2p-unblock-elem-R1480 -{+client-header-tagger{ab2p-unblock-elem-R1480} \ -} -# @@||nytimes.com/adx/images/ADS$domain=myaccount.nytimes.com (easylistchina+easylist.txt: 59265) -.nytimes.com/adx/images/ADS -# @@||nytimes.com/adx/images/ADS$domain=myaccount.nytimes.com (easylist.txt: 48780) -.nytimes.com/adx/images/ADS - -#ab2p-unblock-elem-R1481 -{+client-header-tagger{ab2p-unblock-elem-R1481} \ -} -# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina+easylist.txt: 10063) -/.*=mywebloadt1& - -#ab2p-unblock-elem-R1482 -{+client-header-tagger{ab2p-unblock-elem-R1482} \ -} -# @@||nalog.ru/images/baner/$image,domain=nalog.ru (advblock.txt: 7344) -.nalog.ru/images/baner/ - -#ab2p-unblock-elem-R1483 -{+client-header-tagger{ab2p-unblock-elem-R1483} \ -} -# @@||stats.g.doubleclick.net/dc.js$domain=native-instruments.com|nest.com|theheldrich.com (easylistchina+easylist.txt: 59592) -.stats.g.doubleclick.net/dc\.js -# @@||stats.g.doubleclick.net/dc.js$domain=native-instruments.com|nest.com|theheldrich.com (easylist.txt: 49107) -.stats.g.doubleclick.net/dc\.js - -#ab2p-unblock-elem-R1484 -{+client-header-tagger{ab2p-unblock-elem-R1484} \ -} -# @@||turner.com^*/ads/freewheel/js/fwjslib_1.1.js$domain=nba.com (easylistchina+easylist.txt: 59711) -.turner.com/.*/ads/freewheel/js/fwjslib_1\.1\.js -# @@||turner.com^*/ads/freewheel/js/fwjslib_1.1.js$domain=nba.com (easylist.txt: 49226) -.turner.com/.*/ads/freewheel/js/fwjslib_1\.1\.js - -#ab2p-unblock-elem-R1485 -{+client-header-tagger{ab2p-unblock-elem-R1485} \ -} -# @@||player.theplatform.com^$subdocument,domain=nbc.com (easylistchina+easylist.txt: 61086) -.player.theplatform.com -# @@||player.theplatform.com^$subdocument,domain=nbc.com (easylist.txt: 50601) -.player.theplatform.com - -#ab2p-unblock-elem-R1486 -{+client-header-tagger{ab2p-unblock-elem-R1486} \ -} -# @@||g.doubleclick.net/aclk?$subdocument,domain=nedbank.co.za (easylistchina+easylist.txt: 58848) -.g.doubleclick.net/aclk\? -# @@||g.doubleclick.net/aclk?$subdocument,domain=nedbank.co.za (easylist.txt: 48363) -.g.doubleclick.net/aclk\? - -#ab2p-unblock-elem-R1487 -{+client-header-tagger{ab2p-unblock-elem-R1487} \ -} -# @@||g.doubleclick.net/gampad/google_ads.js$domain=nedbank.co.za|nitrome.com|ticketek.com.ar (easylistchina+easylist.txt: 58854) -.g.doubleclick.net/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=nedbank.co.za|nitrome.com|ticketek.com.ar (easylist.txt: 48369) -.g.doubleclick.net/gampad/google_ads\.js - -#ab2p-unblock-elem-R1488 -{+client-header-tagger{ab2p-unblock-elem-R1488} \ -} -# @@||phoenix.untd.com/OASX/$script,domain=netzero.net (easylistchina+easylist.txt: 59366) -.phoenix.untd.com/OASX/ -# @@||phoenix.untd.com/OASX/$script,domain=netzero.net (easylist.txt: 48881) -.phoenix.untd.com/OASX/ - -#ab2p-unblock-elem-R358 -{+client-header-tagger{ab2p-unblock-elem-R358} \ -} -# @@||ngads.com/*.js$script,domain=newgrounds.com (easylistchina+easylist.txt: 60578) -.ngads.com/.*\.js -# @@||ngads.com/getad.php?url=$object-subrequest,domain=newgrounds.com (easylistchina+easylist.txt: 59249) -.ngads.com/getad\.php\?url= -# @@||liverail.com^*/liverail_preroll.swf$object,domain=newgrounds.com (easylistchina+easylist.txt: 59104) -.liverail.com/.*/liverail_preroll\.swf -# @@||ngads.com/*.js$script,domain=newgrounds.com (easylist.txt: 50093) -.ngads.com/.*\.js -# @@||ngads.com/getad.php?url=$object-subrequest,domain=newgrounds.com (easylist.txt: 48764) -.ngads.com/getad\.php\?url= -# @@||liverail.com^*/liverail_preroll.swf$object,domain=newgrounds.com (easylist.txt: 48619) -.liverail.com/.*/liverail_preroll\.swf - -#ab2p-unblock-elem-R1489 -{+client-header-tagger{ab2p-unblock-elem-R1489} \ -} -# @@||nextag.com/buyer/dyad/$script,domain=nextag.com (easylistchina+easylist.txt: 59242) -.nextag.com/buyer/dyad/ -# @@||nextag.com/buyer/dyad/$script,domain=nextag.com (easylist.txt: 48757) -.nextag.com/buyer/dyad/ - -#ab2p-unblock-elem-R1490 -{+client-header-tagger{ab2p-unblock-elem-R1490} \ -} -# @@||video.appledaily.com.hk/admedia/$object-subrequest,domain=nextmedia.com (easylistchina+easylist.txt: 61144) -.video.appledaily.com.hk/admedia/ -# @@||video.appledaily.com.hk/admedia/$object-subrequest,domain=nextmedia.com (easylist.txt: 50659) -.video.appledaily.com.hk/admedia/ - -#ab2p-unblock-elem-R1491 -{+client-header-tagger{ab2p-unblock-elem-R1491} \ -} -# @@||nextmovie.com/plugins/mtvnimageresizer/actions/scale_image?$image,domain=nextmovie.com (easylistchina+easylist.txt: 59244) -.nextmovie.com/plugins/mtvnimageresizer/actions/scale_image\? -# @@||nextmovie.com/plugins/mtvnimageresizer/actions/scale_image?$image,domain=nextmovie.com (easylist.txt: 48759) -.nextmovie.com/plugins/mtvnimageresizer/actions/scale_image\? - -#ab2p-unblock-elem-R1492 -{+client-header-tagger{ab2p-unblock-elem-R1492} \ -} -# @@||smartclip.net/delivery/tag?$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 59545) -.smartclip.net/delivery/tag\? -# @@||objects.tremormedia.com/embed/sjs/$domain=nfl.com (easylistchina+easylist.txt: 59286) -.objects.tremormedia.com/embed/sjs/ -# @@||nflcdn.com^*/scripts/global/ads.js$domain=nfl.com (easylistchina+easylist.txt: 59248) -.nflcdn.com/.*/scripts/global/ads\.js -# @@||nflcdn.com^*/adplayer.js$domain=nfl.com (easylistchina+easylist.txt: 59247) -.nflcdn.com/.*/adplayer\.js -# @@||doubleclick.net^*/ad/nfl.*.smartclip/$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58728) -.doubleclick.net/.*/ad/nfl\..*\.smartclip/ -# @@||doubleclick.net/pfadx/nfl.*/html5;$xmlhttprequest,domain=nfl.com (easylistchina+easylist.txt: 58726) -.doubleclick.net/pfadx/nfl\..*/html5; -# @@||btrll.com/vast/$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58525) -.btrll.com/vast/ -# @@||ae.amgdgt.com/ads?t=$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58353) -.ae.amgdgt.com/ads\?t= -# @@||smartclip.net/delivery/tag?$object-subrequest,domain=nfl.com (easylist.txt: 49060) -.smartclip.net/delivery/tag\? -# @@||objects.tremormedia.com/embed/sjs/$domain=nfl.com (easylist.txt: 48801) -.objects.tremormedia.com/embed/sjs/ -# @@||nflcdn.com^*/scripts/global/ads.js$domain=nfl.com (easylist.txt: 48763) -.nflcdn.com/.*/scripts/global/ads\.js -# @@||nflcdn.com^*/adplayer.js$domain=nfl.com (easylist.txt: 48762) -.nflcdn.com/.*/adplayer\.js -# @@||doubleclick.net^*/ad/nfl.*.smartclip/$object-subrequest,domain=nfl.com (easylist.txt: 48243) -.doubleclick.net/.*/ad/nfl\..*\.smartclip/ -# @@||doubleclick.net/pfadx/nfl.*/html5;$xmlhttprequest,domain=nfl.com (easylist.txt: 48241) -.doubleclick.net/pfadx/nfl\..*/html5; -# @@||btrll.com/vast/$object-subrequest,domain=nfl.com (easylist.txt: 48040) -.btrll.com/vast/ -# @@||ae.amgdgt.com/ads?t=$object-subrequest,domain=nfl.com (easylist.txt: 47868) -.ae.amgdgt.com/ads\?t= - -#ab2p-unblock-elem-R1493 -{+client-header-tagger{ab2p-unblock-elem-R1493} \ -} -# @@||nic.ru/styles/advertising.css$domain=nic.ru (advblock.txt: 7347) -.nic.ru/styles/advertising\.css - -#ab2p-unblock-elem-R1494 -{+client-header-tagger{ab2p-unblock-elem-R1494} \ -} -# @@||nick.com/js/coda/nick/adrefresh.js$domain=nick.com (easylistchina+easylist.txt: 59251) -.nick.com/js/coda/nick/adrefresh\.js -# @@||nick.com/js/coda/nick/adrefresh.js$domain=nick.com (easylist.txt: 48766) -.nick.com/js/coda/nick/adrefresh\.js - -#ab2p-unblock-elem-R1495 -{+client-header-tagger{ab2p-unblock-elem-R1495} \ -} -# @@||rad.msn.com/ADSAdClient31.dll?GetAd=$xmlhttprequest,domain=ninemsn.com.au (easylistchina+easylist.txt: 59433) -.rad.msn.com/ADSAdClient31\.dll\?GetAd= -# @@||9msn.com.au/share/com/adtrack/adtrack.js$domain=ninemsn.com.au (easylistchina+easylist.txt: 58136) -.9msn.com.au/share/com/adtrack/adtrack\.js -# @@||9msn.com.au/Services/Service.axd?callback=ninemsn_ads_contextualTargeting_$script,domain=ninemsn.com.au (easylistchina+easylist.txt: 58135) -.9msn.com.au/Services/Service\.axd\?callback=ninemsn_ads_contextualTargeting_ -# @@||rad.msn.com/ADSAdClient31.dll?GetAd=$xmlhttprequest,domain=ninemsn.com.au (easylist.txt: 48948) -.rad.msn.com/ADSAdClient31\.dll\?GetAd= -# @@||9msn.com.au/share/com/adtrack/adtrack.js$domain=ninemsn.com.au (easylist.txt: 47651) -.9msn.com.au/share/com/adtrack/adtrack\.js -# @@||9msn.com.au/Services/Service.axd?callback=ninemsn_ads_contextualTargeting_$script,domain=ninemsn.com.au (easylist.txt: 47650) -.9msn.com.au/Services/Service\.axd\?callback=ninemsn_ads_contextualTargeting_ - -#ab2p-unblock-elem-R1496 -{+client-header-tagger{ab2p-unblock-elem-R1496} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=nlfreevpn.com|oldapps.com (easylistchina+easylist.txt: 59335) -.pagead2.googlesyndication.com/pagead/show_ads\.js -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=nlfreevpn.com|oldapps.com (easylist.txt: 48850) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-elem-R1497 -{+client-header-tagger{ab2p-unblock-elem-R1497} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=nlfreevpn.com|oldapps.com|pattayaone.net|unlockpwd.com|uploadex.com (easylistchina+easylist.txt: 59331) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=nlfreevpn.com|oldapps.com|pattayaone.net|unlockpwd.com|uploadex.com (easylist.txt: 48846) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-elem-R1498 -{+client-header-tagger{ab2p-unblock-elem-R1498} \ -} -# @@||wp.com/www.noobpreneur.com/wp-content/uploads/*-ad.jpg?resize=$domain=noobpreneur.com (easylistchina+easylist.txt: 59826) -.wp.com/www\.noobpreneur\.com/wp-content/uploads/.*-ad\.jpg\?resize= -# @@||wp.com/www.noobpreneur.com/wp-content/uploads/*-ad.jpg?resize=$domain=noobpreneur.com (easylist.txt: 49341) -.wp.com/www\.noobpreneur\.com/wp-content/uploads/.*-ad\.jpg\?resize= - -#ab2p-unblock-elem-R1499 -{+client-header-tagger{ab2p-unblock-elem-R1499} \ -} -# @@||emediate.se/eas?$domain=novatv.bg|tv2.dk|tv3.se|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61015) -.emediate.se/eas\? -# @@||emediate.se/eas?$domain=novatv.bg|tv2.dk|tv3.se|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50530) -.emediate.se/eas\? - -#ab2p-unblock-elem-R1500 -{+client-header-tagger{ab2p-unblock-elem-R1500} \ -} -# @@||googlesyndication.com/pagead/ads?$object-subrequest,domain=nx8.com (easylistchina+easylist.txt: 58913) -.googlesyndication.com/pagead/ads\? -# @@||googlesyndication.com/pagead/ads?$object-subrequest,domain=nx8.com (easylist.txt: 48428) -.googlesyndication.com/pagead/ads\? - -#ab2p-unblock-elem-R1501 -{+client-header-tagger{ab2p-unblock-elem-R1501} \ -} -# @@||nyctourist.com/www/delivery/spcjs.php?$script,domain=nyctourist.com (easylistchina+easylist.txt: 59259) -.nyctourist.com/www/delivery/spcjs\.php\? -# @@||ads.bizx.info/www/delivery/spc.php?zones$script,domain=nyctourist.com (easylistchina+easylist.txt: 58225) -.ads.bizx.info/www/delivery/spc\.php\?zones -# @@||nyctourist.com/www/delivery/spcjs.php?$script,domain=nyctourist.com (easylist.txt: 48774) -.nyctourist.com/www/delivery/spcjs\.php\? -# @@||ads.bizx.info/www/delivery/spc.php?zones$script,domain=nyctourist.com (easylist.txt: 47740) -.ads.bizx.info/www/delivery/spc\.php\?zones - -#ab2p-unblock-elem-R1502 -{+client-header-tagger{ab2p-unblock-elem-R1502} \ -} -# @@||nytimes.com/adx/bin/adx_remote.html?type=fastscript$script,xmlhttprequest,domain=nytimes.com (easylistchina+easylist.txt: 59264) -.nytimes.com/adx/bin/adx_remote\.html\?type=fastscript -# @@||nyt.com^*/dfp.js$domain=nytimes.com (easylistchina+easylist.txt: 59262) -.nyt.com/.*/dfp\.js -# @@||nyt.com^*/ad-view-manager.js$domain=nytimes.com (easylistchina+easylist.txt: 59261) -.nyt.com/.*/ad-view-manager\.js -# @@||nyt.com^*/ad-loader.js$domain=nytimes.com (easylistchina+easylist.txt: 59260) -.nyt.com/.*/ad-loader\.js -# @@||nytimes.com/adx/bin/adx_remote.html?type=fastscript$script,xmlhttprequest,domain=nytimes.com (easylist.txt: 48779) -.nytimes.com/adx/bin/adx_remote\.html\?type=fastscript -# @@||nyt.com^*/dfp.js$domain=nytimes.com (easylist.txt: 48777) -.nyt.com/.*/dfp\.js -# @@||nyt.com^*/ad-view-manager.js$domain=nytimes.com (easylist.txt: 48776) -.nyt.com/.*/ad-view-manager\.js -# @@||nyt.com^*/ad-loader.js$domain=nytimes.com (easylist.txt: 48775) -.nyt.com/.*/ad-loader\.js - -#ab2p-unblock-elem-R1503 -{+client-header-tagger{ab2p-unblock-elem-R1503} \ -} -# @@||nzd.co.nz^*/ads/webads$script,domain=nzdating.com (easylistchina+easylist.txt: 60592) -.nzd.co.nz/.*/ads/webads -# @@||nzd.co.nz^*/ads/webads$script,domain=nzdating.com (easylist.txt: 50107) -.nzd.co.nz/.*/ads/webads - -#ab2p-unblock-elem-R1504 -{+client-header-tagger{ab2p-unblock-elem-R1504} \ -} -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/brighthouse.com/$document,domain=oascentral.feedroom.com (easylistchina+easylist.txt: 59275) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/brighthouse\.com/ -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/brighthouse.com/$document,domain=oascentral.feedroom.com (easylist.txt: 48790) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/brighthouse\.com/ - -#ab2p-unblock-elem-R1505 -{+client-header-tagger{ab2p-unblock-elem-R1505} \ -} -# @@||glnimages.s3.amazonaws.com/odw/ad$image,domain=odysseyware.com (easylistchina+easylist.txt: 58882) -.glnimages.s3.amazonaws.com/odw/ad -# @@||glnimages.s3.amazonaws.com/odw/ad$image,domain=odysseyware.com (easylist.txt: 48397) -.glnimages.s3.amazonaws.com/odw/ad - -#ab2p-unblock-elem-R1506 -{+client-header-tagger{ab2p-unblock-elem-R1506} \ -} -# @@||gfsrv.net/ad/$domain=ogame.org|ogame.us (easylistchina+easylist.txt: 58875) -.gfsrv.net/ad/ -# @@||gfsrv.net/ad/$domain=ogame.org|ogame.us (easylist.txt: 48390) -.gfsrv.net/ad/ - -#ab2p-unblock-elem-R1507 -{+client-header-tagger{ab2p-unblock-elem-R1507} \ -} -# @@||exchange.buzzoola.com/video_event/*/ctor/0|$object-subrequest,domain=ok.ru (advblock.txt: 7297) -.exchange.buzzoola.com/video_event/.*/ctor/0$ -# @@||exchange.buzzoola.com/ul_cb/adv/$object-subrequest,domain=ok.ru (advblock.txt: 7296) -.exchange.buzzoola.com/ul_cb/adv/ -# @@||exchange.buzzoola.com/crossdomain.xml$domain=ok.ru (advblock.txt: 7295) -.exchange.buzzoola.com/crossdomain\.xml -# @@||exchange.buzzoola.com/adv/$object-subrequest,domain=ok.ru (advblock.txt: 7294) -.exchange.buzzoola.com/adv/ -# @@||mail.ru/adi/2247?$domain=ok.ru (advblock.txt: 6837) -.mail.ru/adi/2247\? -# @@||mail.ru/adi/2174?$domain=ok.ru (advblock.txt: 6836) -.mail.ru/adi/2174\? - -#ab2p-unblock-elem-R1508 -{+client-header-tagger{ab2p-unblock-elem-R1508} \ -} -# @@||ads.e-planning.net^*/preroll?$object-subrequest,domain=ole.com.ar (easylistchina+easylist.txt: 60943) -.ads.e-planning.net/.*/preroll\? -# @@||ads.e-planning.net^*/preroll?$object-subrequest,domain=ole.com.ar (easylist.txt: 50458) -.ads.e-planning.net/.*/preroll\? - -#ab2p-unblock-elem-R1509 -{+client-header-tagger{ab2p-unblock-elem-R1509} \ -} -# @@||olcdn.net/ads1.js$domain=olweb.tv (easylistchina+easylist.txt: 60593) -.olcdn.net/ads1\.js -# @@||olcdn.net/ads1.js$domain=olweb.tv (easylist.txt: 50108) -.olcdn.net/ads1\.js - -#ab2p-unblock-elem-R1510 -{+client-header-tagger{ab2p-unblock-elem-R1510} \ -} -# @@/urchin.js$domain=on.cc (easylistchina+easylist.txt: 10462) -/(.*/)?urchin\.js -urchin.js*. -# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina+easylist.txt: 10461) -/(.*/)?hitCount_ -# @@/hitCount.$script,domain=on.cc (easylistchina+easylist.txt: 10460) -/(.*/)?hitCount\. -hitCount.*. - -#ab2p-unblock-elem-R1511 -{+client-header-tagger{ab2p-unblock-elem-R1511} \ -} -# @@||adroll.com/j/roundtrip.js$domain=onehourtranslation.com (easylistchina+easylist.txt: 58218) -.adroll.com/j/roundtrip\.js -# @@||adroll.com/j/roundtrip.js$domain=onehourtranslation.com (easylist.txt: 47733) -.adroll.com/j/roundtrip\.js - -#ab2p-unblock-elem-R1512 -{+client-header-tagger{ab2p-unblock-elem-R1512} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=online-che.tv|online-domashniy.tv|online-match.tv|online-ntv.tv|online-perviy.tv|online-ren.tv|online-rossiya1.tv|online-rossiya24.tv|online-sts.tv|online-tnt.tv|online-tv3.tv|online-tvc.tv|online-u.tv|online-zvezda.tv (advblock.txt: 7313) -.imasdk.googleapis.com/js/sdkloader/ima3\.js - -#ab2p-unblock-elem-R1513 -{+client-header-tagger{ab2p-unblock-elem-R1513} \ -} -# @@||online.ua/adsence.js|$domain=online.ua (advblock.txt: 7589) -.online.ua/adsence\.js$ - -#ab2p-unblock-elem-R1514 -{+client-header-tagger{ab2p-unblock-elem-R1514} \ -} -# @@||otrkeyfinder.com/otr/frame*.php?ads=*&search=$subdocument,domain=onlinetvrecorder.com (easylistchina+easylist.txt: 59313) -.otrkeyfinder.com/otr/frame.*\.php\?ads=.*&search= -# @@||otrkeyfinder.com/otr/frame*.php?ads=*&search=$subdocument,domain=onlinetvrecorder.com (easylist.txt: 48828) -.otrkeyfinder.com/otr/frame.*\.php\?ads=.*&search= - -#ab2p-unblock-elem-R1515 -{+client-header-tagger{ab2p-unblock-elem-R1515} \ -} -# @@||smartadserver.com/config.js?nwid=$domain=onvasortir.com (easylistchina+easylist.txt: 60749) -.smartadserver.com/config\.js\?nwid= -# @@||sascdn.com/diff/js/smart.js$domain=onvasortir.com (easylistchina+easylist.txt: 60715) -.sascdn.com/diff/js/smart\.js -# @@||smartadserver.com/config.js?nwid=$domain=onvasortir.com (easylist.txt: 50264) -.smartadserver.com/config\.js\?nwid= -# @@||sascdn.com/diff/js/smart.js$domain=onvasortir.com (easylist.txt: 50230) -.sascdn.com/diff/js/smart\.js - -#ab2p-unblock-elem-R1516 -{+client-header-tagger{ab2p-unblock-elem-R1516} \ -} -# @@||adocean.pl^*/ad.js?id=$object-subrequest,domain=open.fm (easylistchina+easylist.txt: 60939) -.adocean.pl/.*/ad\.js\?id= -# @@||adocean.pl^*/ad.js?id=$object-subrequest,domain=open.fm (easylist.txt: 50454) -.adocean.pl/.*/ad\.js\?id= - -#ab2p-unblock-elem-R1517 -{+client-header-tagger{ab2p-unblock-elem-R1517} \ -} -# @@||openload.co^$xmlhttprequest,domain=openload.co (easylistchina+easylist.txt: 60604) -.openload.co -# @@/openload.co^$image,script,domain=openload.co (easylistchina+easylist.txt: 59929) -/(.*/)?openload\.co[^\w%.-] -openload.co -# @@/Ad2.js$script,domain=openload.co (easylistchina+easylist.txt: 59913) -/(.*/)?Ad2\.js -Ad2.js*. -# @@.css^$stylesheet,domain=openload.co (easylistchina+easylist.txt: 59886) -/.*\.css[^\w%.-] -.*.css -# @@||openload.co^$xmlhttprequest,domain=openload.co (easylist.txt: 50119) -.openload.co -# @@/openload.co^$image,script,domain=openload.co (easylist.txt: 49444) -/(.*/)?openload\.co[^\w%.-] -openload.co -# @@/Ad2.js$script,domain=openload.co (easylist.txt: 49428) -/(.*/)?Ad2\.js -Ad2.js*. -# @@.css^$stylesheet,domain=openload.co (easylist.txt: 49401) -/.*\.css[^\w%.-] -.*.css - -#ab2p-unblock-elem-R1518 -{+client-header-tagger{ab2p-unblock-elem-R1518} \ -} -# @@||openload.tv^$script,domain=openload.co|openload.io (easylistchina+easylist.txt: 60609) -.openload.tv -# @@||openload.tv^$script,domain=openload.co|openload.io (easylist.txt: 50124) -.openload.tv - -#ab2p-unblock-elem-R1519 -{+client-header-tagger{ab2p-unblock-elem-R1519} \ -} -# @@||openload.tv^$image,domain=openload.io (easylistchina+easylist.txt: 60608) -.openload.tv -# @@||openload.io^$image,script,stylesheet,subdocument,domain=openload.io (easylistchina+easylist.txt: 60607) -.openload.io -# @@||openload.tv^$image,domain=openload.io (easylist.txt: 50123) -.openload.tv -# @@||openload.io^$image,script,stylesheet,subdocument,domain=openload.io (easylist.txt: 50122) -.openload.io - -#ab2p-unblock-elem-R1520 -{+client-header-tagger{ab2p-unblock-elem-R1520} \ -} -# @@||netdna-cdn.com^*/OpenX/$domain=openx.com (easylistchina+easylist.txt: 61221) -.netdna-cdn.com/.*/OpenX/ -# @@||netdna-cdn.com^*/OpenX/$domain=openx.com (easylist.txt: 50736) -.netdna-cdn.com/.*/OpenX/ - -#ab2p-unblock-elem-R1521 -{+client-header-tagger{ab2p-unblock-elem-R1521} \ -} -# @@||revresda.com/js.ng/*&adsize=960x400&$script,domain=orbitz.com (easylistchina+easylist.txt: 59461) -.revresda.com/js\.ng/.*&adsize=960x400& -# @@||revresda.com/js.ng/*&adsize=960x400&$script,domain=orbitz.com (easylist.txt: 48976) -.revresda.com/js\.ng/.*&adsize=960x400& - -#ab2p-unblock-elem-R1522 -{+client-header-tagger{ab2p-unblock-elem-R1522} \ -} -# @@||longtailvideo.com/5/adtvideo/adtvideo.js$domain=ostrow24.tv (easylistchina+easylist.txt: 61058) -.longtailvideo.com/5/adtvideo/adtvideo\.js -# @@||longtailvideo.com/5/adtvideo/adtvideo.js$domain=ostrow24.tv (easylist.txt: 50573) -.longtailvideo.com/5/adtvideo/adtvideo\.js - -#ab2p-unblock-elem-R1523 -{+client-header-tagger{ab2p-unblock-elem-R1523} \ -} -# @@||longtailvideo.com/5/adttext/adttext.js$domain=ostrow24.tv|yuvutu.com (easylistchina+easylist.txt: 61057) -.longtailvideo.com/5/adttext/adttext\.js -# @@||longtailvideo.com/5/adttext/adttext.js$domain=ostrow24.tv|yuvutu.com (easylist.txt: 50572) -.longtailvideo.com/5/adttext/adttext\.js - -#ab2p-unblock-elem-R1524 -{+client-header-tagger{ab2p-unblock-elem-R1524} \ -} -# @@||pladform.ru/player/ads.js?$domain=out.pladform.ru (advblock.txt: 7358) -.pladform.ru/player/ads\.js\? - -#ab2p-unblock-elem-R1525 -{+client-header-tagger{ab2p-unblock-elem-R1525} \ -} -# @@||liverail.com^*/admanager.swf|$domain=own3d.tv (advblock.txt: 7580) -.liverail.com/.*/admanager\.swf$ - -#ab2p-unblock-elem-R1526 -{+client-header-tagger{ab2p-unblock-elem-R1526} \ -} -# @@||ozerskzone.ru/ads/$domain=ozerskzone.ru (advblock.txt: 7352) -.ozerskzone.ru/ads/ - -#ab2p-unblock-elem-R1527 -{+client-header-tagger{ab2p-unblock-elem-R1527} \ -} -# @@/ADImages/*$domain=p9.com.tw (easylistchina+easylist.txt: 10004) -/(.*/)?ADImages/.* - -#ab2p-unblock-elem-R1528 -{+client-header-tagger{ab2p-unblock-elem-R1528} \ -} -# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina+easylist.txt: 10045) -/(.*/)?img/ad_ - -#ab2p-unblock-elem-R1529 -{+client-header-tagger{ab2p-unblock-elem-R1529} \ -} -# @@||adtechus.com/images/*_503x720.gif$object-subrequest,domain=papeldigital.info (easylistchina+easylist.txt: 60959) -.adtechus.com/images/.*_503x720\.gif -# @@||adtechus.com/adxml|*|rettype=$object-subrequest,domain=papeldigital.info (easylistchina+easylist.txt: 60958) -.adtechus.com/adxml\|.*\|rettype= -# @@||adtechus.com/images/*_503x720.gif$object-subrequest,domain=papeldigital.info (easylist.txt: 50474) -.adtechus.com/images/.*_503x720\.gif -# @@||adtechus.com/adxml|*|rettype=$object-subrequest,domain=papeldigital.info (easylist.txt: 50473) -.adtechus.com/adxml\|.*\|rettype= - -#ab2p-unblock-elem-R1530 -{+client-header-tagger{ab2p-unblock-elem-R1530} \ -} -# @@||paste.org/style/adframe.js$domain=paste.org (advblock.txt: 7590) -.paste.org/style/adframe\.js - -#ab2p-unblock-elem-R1531 -{+client-header-tagger{ab2p-unblock-elem-R1531} \ -} -# @@||zillow.com/widgets/search/ZillowListingsWidget.htm?*&adsize=$subdocument,domain=patch.com (easylistchina+easylist.txt: 59879) -.zillow.com/widgets/search/ZillowListingsWidget\.htm\?.*&adsize= -# @@||zillow.com/widgets/search/ZillowListingsWidget.htm?*&adsize=$subdocument,domain=patch.com (easylist.txt: 49394) -.zillow.com/widgets/search/ZillowListingsWidget\.htm\?.*&adsize= - -#ab2p-unblock-elem-R375 -{+client-header-tagger{ab2p-unblock-elem-R375} \ -} -# @@||w.sharethis.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45843) -.w.sharethis.com -# @@||disquscdn.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45841) -.disquscdn.com -# @@||disqus.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45840) -.disqus.com -# @@||connect.facebook.net^$third-party,domain=patheos.com (easylistchina+easylist.txt: 45839) -.connect.facebook.net -# @@||w.sharethis.com^$script,domain=patheos.com (easylist.txt: 35358) -.w.sharethis.com -# @@||disquscdn.com^$script,domain=patheos.com (easylist.txt: 35356) -.disquscdn.com -# @@||disqus.com^$script,domain=patheos.com (easylist.txt: 35355) -.disqus.com -# @@||connect.facebook.net^$third-party,domain=patheos.com (easylist.txt: 35354) -.connect.facebook.net - -#ab2p-unblock-elem-R1532 -{+client-header-tagger{ab2p-unblock-elem-R1532} \ -} -# @@||pb.wtf^$script,domain=pb.wtf (advblock.txt: 7591) -.pb.wtf -# @@/adg/adliftQueue.js$script,domain=pb.wtf (advblock.txt: 7525) -/(.*/)?adg/adliftQueue\.js - -#ab2p-unblock-elem-R1533 -{+client-header-tagger{ab2p-unblock-elem-R1533} \ -} -# @@||pcgames-download.net^$script,domain=pcgames-download.net (easylistchina+easylist.txt: 60641) -.pcgames-download.net -# @@||pcgames-download.net^$script,domain=pcgames-download.net (easylist.txt: 50156) -.pcgames-download.net - -#ab2p-unblock-elem-R1534 -{+client-header-tagger{ab2p-unblock-elem-R1534} \ -} -# @@||sponsorselect.com/Direct/SponsorIndex.aspx$domain=pch.com (easylistchina+easylist.txt: 59567) -.sponsorselect.com/Direct/SponsorIndex\.aspx -# @@||sponsorselect.com/direct/preroll.aspx?$subdocument,domain=pch.com (easylistchina+easylist.txt: 59566) -.sponsorselect.com/direct/preroll\.aspx\? -# @@||optimatic.com^*/shell_$object,domain=pch.com (easylistchina+easylist.txt: 59309) -.optimatic.com/.*/shell_ -# @@||optimatic.com^*/shell.swf$object,domain=pch.com (easylistchina+easylist.txt: 59308) -.optimatic.com/.*/shell\.swf -# @@||optimatic.com/shell.js$domain=pch.com (easylistchina+easylist.txt: 59307) -.optimatic.com/shell\.js -# @@||optimatic.com/iframe.html$subdocument,domain=pch.com (easylistchina+easylist.txt: 59306) -.optimatic.com/iframe\.html -# @@||sponsorselect.com/Direct/SponsorIndex.aspx$domain=pch.com (easylist.txt: 49082) -.sponsorselect.com/Direct/SponsorIndex\.aspx -# @@||sponsorselect.com/direct/preroll.aspx?$subdocument,domain=pch.com (easylist.txt: 49081) -.sponsorselect.com/direct/preroll\.aspx\? -# @@||optimatic.com^*/shell_$object,domain=pch.com (easylist.txt: 48824) -.optimatic.com/.*/shell_ -# @@||optimatic.com^*/shell.swf$object,domain=pch.com (easylist.txt: 48823) -.optimatic.com/.*/shell\.swf -# @@||optimatic.com/shell.js$domain=pch.com (easylist.txt: 48822) -.optimatic.com/shell\.js -# @@||optimatic.com/iframe.html$subdocument,domain=pch.com (easylist.txt: 48821) -.optimatic.com/iframe\.html - -#ab2p-unblock-elem-R1535 -{+client-header-tagger{ab2p-unblock-elem-R1535} \ -} -# @@/store_ad/*$domain=pcstore.com.tw (easylistchina+easylist.txt: 10057) -/(.*/)?store_ad/.* - -#ab2p-unblock-elem-R1536 -{+client-header-tagger{ab2p-unblock-elem-R1536} \ -} -# @@||pdrs.dp.ua/images/rek/$domain=pdrs.dp.ua (advblock.txt: 7353) -.pdrs.dp.ua/images/rek/ - -#ab2p-unblock-elem-R1537 -{+client-header-tagger{ab2p-unblock-elem-R1537} \ -} -# @@||pagead2.googlesyndication.com/simgad/70436825|$image,domain=pencurimovie.pw (easylistchina+easylist.txt: 60634) -.pagead2.googlesyndication.com/simgad/70436825$ -# @@||compagnon.science^$script,domain=pencurimovie.pw (easylistchina+easylist.txt: 60175) -.compagnon.science -# @@||pagead2.googlesyndication.com/simgad/70436825|$image,domain=pencurimovie.pw (easylist.txt: 50149) -.pagead2.googlesyndication.com/simgad/70436825$ -# @@||compagnon.science^$script,domain=pencurimovie.pw (easylist.txt: 49690) -.compagnon.science - -#ab2p-unblock-elem-R1538 -{+client-header-tagger{ab2p-unblock-elem-R1538} \ -} -# @@||doubleclick.net/adj/cm.peo/*;cmpos=$script,domain=people.com (easylistchina+easylist.txt: 58707) -.doubleclick.net/adj/cm\.peo/.*;cmpos= -# @@||doubleclick.net/adj/cm.peo/*;cmpos=$script,domain=people.com (easylist.txt: 48222) -.doubleclick.net/adj/cm\.peo/.*;cmpos= - -#ab2p-unblock-elem-R1539 -{+client-header-tagger{ab2p-unblock-elem-R1539} \ -} -# @@||timeinc.net/people/static/i/advertising/getpeopleeverywhere-$image,domain=people.com|peoplestylewatch.com (easylistchina+easylist.txt: 59661) -.timeinc.net/people/static/i/advertising/getpeopleeverywhere- -# @@||timeinc.net/people/static/i/advertising/getpeopleeverywhere-$image,domain=people.com|peoplestylewatch.com (easylist.txt: 49176) -.timeinc.net/people/static/i/advertising/getpeopleeverywhere- - -#ab2p-unblock-elem-R1540 -{+client-header-tagger{ab2p-unblock-elem-R1540} \ -} -# @@||doubleclick.net/click%$popup,domain=people.com|time.com (easylistchina+easylist.txt: 61408) -.doubleclick.net/click% -# @@||doubleclick.net/click%$popup,domain=people.com|time.com (easylist.txt: 50923) -.doubleclick.net/click% - -#ab2p-unblock-elem-R1541 -{+client-header-tagger{ab2p-unblock-elem-R1541} \ -} -# @@||ru/banner/$domain=peretz.ru|rzd.ru|svyaznoy.ru|whiskas.ru (advblock.txt: 7379) - -#ab2p-unblock-elem-R1542 -{+client-header-tagger{ab2p-unblock-elem-R1542} \ -} -# @@||johnston.grapeshot.co.uk^$domain=peterboroughtoday.co.uk (easylistchina+easylist.txt: 59047) -.johnston.grapeshot.co.uk -# @@||johnston.grapeshot.co.uk^$domain=peterboroughtoday.co.uk (easylist.txt: 48562) -.johnston.grapeshot.co.uk - -#ab2p-unblock-elem-R1543 -{+client-header-tagger{ab2p-unblock-elem-R1543} \ -} -# @@||pgpru.com^*/files?get=$domain=pgpru.com (advblock.txt: 7355) -.pgpru.com/.*/files\?get= - -#ab2p-unblock-elem-R379 -{+client-header-tagger{ab2p-unblock-elem-R379} \ -} -# @@||photobucket.com/pbkt/hserver/$object-subrequest,domain=photobucket.com (easylistchina+easylist.txt: 59370) -.photobucket.com/pbkt/hserver/ -# @@||sharethis.com/button/$script,domain=photobucket.com (easylistchina+easylist.txt: 45895) -.sharethis.com/button/ -# @@||print.io^$domain=photobucket.com (easylistchina+easylist.txt: 45894) -.print.io -# @@||pbsrc.com^$image,script,domain=photobucket.com (easylistchina+easylist.txt: 45893) -.pbsrc.com -# @@||connect.facebook.net^$script,domain=photobucket.com (easylistchina+easylist.txt: 45892) -.connect.facebook.net -# @@||aviary.com^$image,script,domain=photobucket.com (easylistchina+easylist.txt: 45891) -.aviary.com -# @@||amazonaws.com^$script,domain=photobucket.com (easylistchina+easylist.txt: 45890) -.amazonaws.com -# @@||photobucket.com/pbkt/hserver/$object-subrequest,domain=photobucket.com (easylist.txt: 48885) -.photobucket.com/pbkt/hserver/ -# @@||sharethis.com/button/$script,domain=photobucket.com (easylist.txt: 35410) -.sharethis.com/button/ -# @@||print.io^$domain=photobucket.com (easylist.txt: 35409) -.print.io -# @@||pbsrc.com^$image,script,domain=photobucket.com (easylist.txt: 35408) -.pbsrc.com -# @@||connect.facebook.net^$script,domain=photobucket.com (easylist.txt: 35407) -.connect.facebook.net -# @@||aviary.com^$image,script,domain=photobucket.com (easylist.txt: 35406) -.aviary.com -# @@||amazonaws.com^$script,domain=photobucket.com (easylist.txt: 35405) -.amazonaws.com - -#ab2p-unblock-elem-R1544 -{+client-header-tagger{ab2p-unblock-elem-R1544} \ -} -# @@||photodoska.ru/content/dynamic/ads/$domain=photodoska.ru (advblock.txt: 7356) -.photodoska.ru/content/dynamic/ads/ - -#ab2p-unblock-elem-R1545 -{+client-header-tagger{ab2p-unblock-elem-R1545} \ -} -# @@||longtailvideo.com^*/gapro.js$domain=physorg.com (easylistchina+easylist.txt: 59109) -.longtailvideo.com/.*/gapro\.js -# @@||longtailvideo.com^*/gapro.js$domain=physorg.com (easylist.txt: 48624) -.longtailvideo.com/.*/gapro\.js - -#ab2p-unblock-elem-R1546 -{+client-header-tagger{ab2p-unblock-elem-R1546} \ -} -# @@/advertisement_$script,domain=pic4you.ru (advblock.txt: 7531) -/(.*/)?advertisement_ - -#ab2p-unblock-elem-R382 -{+client-header-tagger{ab2p-unblock-elem-R382} \ -} -# @@||picforall.ru/ads/banner.$image,domain=picforall.ru (advblock.txt: 7593) -.picforall.ru/ads/banner\. - -#ab2p-unblock-elem-R1547 -{+client-header-tagger{ab2p-unblock-elem-R1547} \ -} -# @@||ff.connextra.com^$domain=pinnaclesports.com (easylistchina+easylist.txt: 58820) -.ff.connextra.com -# @@||ff.connextra.com^$domain=pinnaclesports.com (easylist.txt: 48335) -.ff.connextra.com - -#ab2p-unblock-elem-R1548 -{+client-header-tagger{ab2p-unblock-elem-R1548} \ -} -# @@/Advert_$domain=pisen.com.cn (easylistchina+easylist.txt: 10016) -/(.*/)?Advert_ - -#ab2p-unblock-elem-R1549 -{+client-header-tagger{ab2p-unblock-elem-R1549} \ -} -# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina+easylist.txt: 10013) -/(.*/)?adsense/.* - -#ab2p-unblock-elem-R1550 -{+client-header-tagger{ab2p-unblock-elem-R1550} \ -} -# @@||videocore.tv^*/advert1.js$domain=piter.tv (advblock.txt: 7605) -.videocore.tv/.*/advert1\.js -# @@||static.videocore.tv^$script,domain=piter.tv (advblock.txt: 7602) -.static.videocore.tv -# @@/advert2.js|$script,domain=piter.tv (advblock.txt: 7528) -/(.*/)?advert2\.js$ -advert2.js - -#ab2p-unblock-elem-R1551 -{+client-header-tagger{ab2p-unblock-elem-R1551} \ -} -# @@||plan.ru/adserver/adframe.php?$subdocument,domain=plan.ru (advblock.txt: 7359) -.plan.ru/adserver/adframe\.php\? - -#ab2p-unblock-elem-R1552 -{+client-header-tagger{ab2p-unblock-elem-R1552} \ -} -# @@||adbooth.net/src/js/min/adbooth_ajax.js?*&width=300&height=250$domain=planetatvonlinehd.blogspot.com.ar (easylistchina+easylist.txt: 59989) -.adbooth.net/src/js/min/adbooth_ajax\.js\?.*&width=300&height=250 -# @@||adbooth.com/adserver/iframe.php?*&w=300&h=250&$subdocument,domain=planetatvonlinehd.blogspot.com.ar (easylistchina+easylist.txt: 59988) -.adbooth.com/adserver/iframe\.php\?.*&w=300&h=250& -# @@||adbooth.net/src/js/min/adbooth_ajax.js?*&width=300&height=250$domain=planetatvonlinehd.blogspot.com.ar (easylist.txt: 49504) -.adbooth.net/src/js/min/adbooth_ajax\.js\?.*&width=300&height=250 -# @@||adbooth.com/adserver/iframe.php?*&w=300&h=250&$subdocument,domain=planetatvonlinehd.blogspot.com.ar (easylist.txt: 49503) -.adbooth.com/adserver/iframe\.php\?.*&w=300&h=250& - -#ab2p-unblock-elem-R1553 -{+client-header-tagger{ab2p-unblock-elem-R1553} \ -} -# @@||edgekey.net^*/advertisement.js$domain=play.spotify.com (easylistchina+easylist.txt: 60245) -.edgekey.net/.*/advertisement\.js -# @@||edgekey.net^*/advertisement.js$domain=play.spotify.com (easylist.txt: 49760) -.edgekey.net/.*/advertisement\.js - -#ab2p-unblock-elem-R1554 -{+client-header-tagger{ab2p-unblock-elem-R1554} \ -} -# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina+easylist.txt: 10201) -.cbjs.baidu.com/js/s\.js - -#ab2p-unblock-elem-R1555 -{+client-header-tagger{ab2p-unblock-elem-R1555} \ -} -# @@||doubleclick.net^*/ndm.tcm/video;$script,domain=player.video.news.com.au (easylistchina+easylist.txt: 58734) -.doubleclick.net/.*/ndm\.tcm/video; -# @@||doubleclick.net^*/ndm.tcm/video;$script,domain=player.video.news.com.au (easylist.txt: 48249) -.doubleclick.net/.*/ndm\.tcm/video; - -#ab2p-unblock-elem-R1556 -{+client-header-tagger{ab2p-unblock-elem-R1556} \ -} -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$object-subrequest,domain=playreplay.net|vaughnlive.tv (easylistchina+easylist.txt: 58169) -.ad4.liverail.com/\?LR_PUBLISHER_ID= -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$object-subrequest,domain=playreplay.net|vaughnlive.tv (easylist.txt: 47684) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-elem-R1557 -{+client-header-tagger{ab2p-unblock-elem-R1557} \ -} -# @@||openx.org/avw.php?zoneid$image,domain=podomatic.com (easylistchina+easylist.txt: 59303) -.openx.org/avw\.php\?zoneid -# @@||openx.org/avw.php?zoneid$image,domain=podomatic.com (easylist.txt: 48818) -.openx.org/avw\.php\?zoneid - -#ab2p-unblock-elem-R1558 -{+client-header-tagger{ab2p-unblock-elem-R1558} \ -} -# @@||pubmatic.com/AdServer/UPug?$script,domain=politico.com (easylistchina+easylist.txt: 59421) -.pubmatic.com/AdServer/UPug\? -# @@||pubmatic.com/AdServer/js/universalpixel.js$domain=politico.com (easylistchina+easylist.txt: 59420) -.pubmatic.com/AdServer/js/universalpixel\.js -# @@||pubmatic.com/AdServer/UPug?$script,domain=politico.com (easylist.txt: 48936) -.pubmatic.com/AdServer/UPug\? -# @@||pubmatic.com/AdServer/js/universalpixel.js$domain=politico.com (easylist.txt: 48935) -.pubmatic.com/AdServer/js/universalpixel\.js - -#ab2p-unblock-elem-R1559 -{+client-header-tagger{ab2p-unblock-elem-R1559} \ -} -# @@||pollen.vc/views/ads.html$domain=pollen.vc (easylistchina+easylist.txt: 59397) -.pollen.vc/views/ads\.html -# @@||pollen.vc/views/ads.html$domain=pollen.vc (easylist.txt: 48912) -.pollen.vc/views/ads\.html - -#ab2p-unblock-elem-R1560 -{+client-header-tagger{ab2p-unblock-elem-R1560} \ -} -# @@||adv.adview.pl/ads/*.mp4$object-subrequest,domain=polskieradio.pl|radiozet.pl|spryciarze.pl|tvp.info (easylistchina+easylist.txt: 60960) -.adv.adview.pl/ads/.*\.mp4 -# @@||adv.adview.pl/ads/*.mp4$object-subrequest,domain=polskieradio.pl|radiozet.pl|spryciarze.pl|tvp.info (easylist.txt: 50475) -.adv.adview.pl/ads/.*\.mp4 - -#ab2p-unblock-elem-R1561 -{+client-header-tagger{ab2p-unblock-elem-R1561} \ -} -# @@||popularmechanics.com/ams/page-ads.js$domain=popularmechanics.com (easylistchina+easylist.txt: 59401) -.popularmechanics.com/ams/page-ads\.js -# @@||popularmechanics.com/ams/page-ads.js$domain=popularmechanics.com (easylist.txt: 48916) -.popularmechanics.com/ams/page-ads\.js - -#ab2p-unblock-elem-R392 -{+client-header-tagger{ab2p-unblock-elem-R392} \ -} -# @@||pornhublive.com/?AFNO=$popup,domain=pornhub.com (easylistchina+easylist.txt: 61795) -.pornhublive.com/\?AFNO= -# @@&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box$popup,domain=pornhub.com (easylistchina+easylist.txt: 61789) -/.*&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box -# @@||pornhublive.com/?AFNO=$popup,domain=pornhub.com (easylist.txt: 51310) -.pornhublive.com/\?AFNO= -# @@&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box$popup,domain=pornhub.com (easylist.txt: 51304) -/.*&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box - -#ab2p-unblock-elem-R393 -{+client-header-tagger{ab2p-unblock-elem-R393} \ -} -# @@||youporn.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61723) -.youporn.phncdn.com -# @@||static.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61700) -.static.tube8.phncdn.com -# @@||spankwire.phncdn.com^$image,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61699) -.spankwire.phncdn.com -# @@||s7.addthis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61698) -.s7.addthis.com -# @@||redtubefiles.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61697) -.redtubefiles.com -# @@||pornhub.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61666) -.pornhub.phncdn.com -# @@||platform.twitter.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61643) -.platform.twitter.com -# @@||platform.tumblr.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61642) -.platform.tumblr.com -# @@||keezmovies.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61484) -.keezmovies.phncdn.com -# @@||image.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61483) -.image.tube8.phncdn.com -# @@||extremetube.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61481) -.extremetube.phncdn.com -# @@||disquscdn.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61480) -.disquscdn.com/count\.js -# @@||disqus.com/embed.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61479) -.disqus.com/embed\.js -# @@||disqus.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61478) -.disqus.com/count\.js -# @@||connect.facebook.net^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61477) -.connect.facebook.net -# @@||apis.google.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61475) -.apis.google.com -# @@||ajax.googleapis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61473) -.ajax.googleapis.com -# @@||youporn.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51238) -.youporn.phncdn.com -# @@||static.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51215) -.static.tube8.phncdn.com -# @@||spankwire.phncdn.com^$image,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51214) -.spankwire.phncdn.com -# @@||s7.addthis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51213) -.s7.addthis.com -# @@||redtubefiles.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51212) -.redtubefiles.com -# @@||pornhub.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51181) -.pornhub.phncdn.com -# @@||platform.twitter.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51158) -.platform.twitter.com -# @@||platform.tumblr.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51157) -.platform.tumblr.com -# @@||keezmovies.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50999) -.keezmovies.phncdn.com -# @@||image.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50998) -.image.tube8.phncdn.com -# @@||extremetube.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50996) -.extremetube.phncdn.com -# @@||disquscdn.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50995) -.disquscdn.com/count\.js -# @@||disqus.com/embed.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50994) -.disqus.com/embed\.js -# @@||disqus.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50993) -.disqus.com/count\.js -# @@||connect.facebook.net^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50992) -.connect.facebook.net -# @@||apis.google.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50990) -.apis.google.com -# @@||ajax.googleapis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50988) -.ajax.googleapis.com - -#ab2p-unblock-elem-R1562 -{+client-header-tagger{ab2p-unblock-elem-R1562} \ -} -# @@||widget.uservoice.com^$script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61712) -.widget.uservoice.com -# @@||uvcdn.com^$image,script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61711) -.uvcdn.com -# @@||amazonaws.com/uploads.uservoice.com/$image,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61474) -.amazonaws.com/uploads\.uservoice\.com/ -# @@||widget.uservoice.com^$script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 51227) -.widget.uservoice.com -# @@||uvcdn.com^$image,script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 51226) -.uvcdn.com -# @@||amazonaws.com/uploads.uservoice.com/$image,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 50989) -.amazonaws.com/uploads\.uservoice\.com/ - -#ab2p-unblock-elem-R1563 -{+client-header-tagger{ab2p-unblock-elem-R1563} \ -} -# @@||porsche.com^*/teaser.js$domain=porsche.com (advblock.txt: 7362) -.porsche.com/.*/teaser\.js - -#ab2p-unblock-elem-R1564 -{+client-header-tagger{ab2p-unblock-elem-R1564} \ -} -# @@||powerwatch.pw/pop.js$domain=powerwatch.pw (easylistchina+easylist.txt: 60661) -.powerwatch.pw/pop\.js -# @@||powerwatch.pw/pop.js$domain=powerwatch.pw (easylist.txt: 50176) -.powerwatch.pw/pop\.js - -#ab2p-unblock-elem-R1565 -{+client-header-tagger{ab2p-unblock-elem-R1565} \ -} -# @@||praca.by/files/adv/index-logos/$domain=praca.by (advblock.txt: 7363) -.praca.by/files/adv/index-logos/ - -#ab2p-unblock-elem-R1566 -{+client-header-tagger{ab2p-unblock-elem-R1566} \ -} -# @@||anyvan.com/send-goods-api/$domain=preloved.co.uk (easylistchina+easylist.txt: 58408) -.anyvan.com/send-goods-api/ -# @@||anyvan.com/send-goods-api/$domain=preloved.co.uk (easylist.txt: 47923) -.anyvan.com/send-goods-api/ - -#ab2p-unblock-elem-R1567 -{+client-header-tagger{ab2p-unblock-elem-R1567} \ -} -# @@||oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx.ads/$image,domain=primerahora.com (easylistchina+easylist.txt: 61078) -.oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx\.ads/ -# @@||oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx.ads/$image,domain=primerahora.com (easylist.txt: 50593) -.oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx\.ads/ - -#ab2p-unblock-elem-R1568 -{+client-header-tagger{ab2p-unblock-elem-R1568} \ -} -# @@||ajax.googleapis.com/ajax/libs/jquery/$domain=primewire.ag (easylistchina+easylist.txt: 45884) -.ajax.googleapis.com/ajax/libs/jquery/ -# @@||ajax.googleapis.com/ajax/libs/jquery/$domain=primewire.ag (easylist.txt: 35399) -.ajax.googleapis.com/ajax/libs/jquery/ - -#ab2p-unblock-elem-R400 -{+client-header-tagger{ab2p-unblock-elem-R400} \ -} -# @@||s7.addthis.com^$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45886) -.s7.addthis.com -# @@||platform.twitter.com/widgets.js$script,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45885) -.platform.twitter.com/widgets\.js -# @@||s7.addthis.com^$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35401) -.s7.addthis.com -# @@||platform.twitter.com/widgets.js$script,domain=primewire.ag|primewire.in (easylist.txt: 35400) -.platform.twitter.com/widgets\.js - -#ab2p-unblock-elem-R1569 -{+client-header-tagger{ab2p-unblock-elem-R1569} \ -} -# @@||doubleclick.net/adj/profootballreference.fsv/$script,domain=pro-football-reference.com (easylistchina+easylist.txt: 58717) -.doubleclick.net/adj/profootballreference\.fsv/ -# @@||doubleclick.net/adj/profootballreference.fsv/$script,domain=pro-football-reference.com (easylist.txt: 48232) -.doubleclick.net/adj/profootballreference\.fsv/ - -#ab2p-unblock-elem-R1570 -{+client-header-tagger{ab2p-unblock-elem-R1570} \ -} -# @@||prodaj.pl/adv/$domain=prodaj.pl (advblock.txt: 7365) -.prodaj.pl/adv/ - -#ab2p-unblock-elem-R402 -{+client-header-tagger{ab2p-unblock-elem-R402} \ -} -# @@||yahooapis.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45870) -.yahooapis.com -# @@||s7.addthis.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45869) -.s7.addthis.com -# @@||platform.twitter.com/widgets.js$domain=promptfile.com (easylistchina+easylist.txt: 45868) -.platform.twitter.com/widgets\.js -# @@||netdna.bootstrapcdn.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45867) -.netdna.bootstrapcdn.com -# @@||connect.facebook.net^$script,domain=promptfile.com (easylistchina+easylist.txt: 45866) -.connect.facebook.net -# @@||ajax.googleapis.com/ajax/libs/$script,domain=promptfile.com (easylistchina+easylist.txt: 45865) -.ajax.googleapis.com/ajax/libs/ -# @@||addthis.com/url/shares.json$domain=promptfile.com (easylistchina+easylist.txt: 45864) -.addthis.com/url/shares\.json -# @@||yahooapis.com^$script,domain=promptfile.com (easylist.txt: 35385) -.yahooapis.com -# @@||s7.addthis.com^$script,domain=promptfile.com (easylist.txt: 35384) -.s7.addthis.com -# @@||platform.twitter.com/widgets.js$domain=promptfile.com (easylist.txt: 35383) -.platform.twitter.com/widgets\.js -# @@||netdna.bootstrapcdn.com^$script,domain=promptfile.com (easylist.txt: 35382) -.netdna.bootstrapcdn.com -# @@||connect.facebook.net^$script,domain=promptfile.com (easylist.txt: 35381) -.connect.facebook.net -# @@||ajax.googleapis.com/ajax/libs/$script,domain=promptfile.com (easylist.txt: 35380) -.ajax.googleapis.com/ajax/libs/ -# @@||addthis.com/url/shares.json$domain=promptfile.com (easylist.txt: 35379) -.addthis.com/url/shares\.json - -#ab2p-unblock-elem-R1571 -{+client-header-tagger{ab2p-unblock-elem-R1571} \ -} -# @@.xzn.ir/$script,third-party,domain=psarips.com (easylistchina+easylist.txt: 59912) -/.*\.xzn\.ir/ -.*.xzn.ir -# @@.xzn.ir/$script,third-party,domain=psarips.com (easylist.txt: 49427) -/.*\.xzn\.ir/ -.*.xzn.ir - -#ab2p-unblock-elem-R1572 -{+client-header-tagger{ab2p-unblock-elem-R1572} \ -} -# @@||publisher.adservice.com^$domain=publisher.adservice.com (easylistchina+easylist.txt: 61297) -.publisher.adservice.com -# @@||publisher.adservice.com^$domain=publisher.adservice.com (easylist.txt: 50812) -.publisher.adservice.com - -#ab2p-unblock-elem-R1573 -{+client-header-tagger{ab2p-unblock-elem-R1573} \ -} -# @@||banner.pumpkinpatchkids.com/www/delivery/$domain=pumpkinpatch.co.nz|pumpkinpatch.co.uk|pumpkinpatch.com|pumpkinpatch.com.au (easylistchina+easylist.txt: 58472) -.banner.pumpkinpatchkids.com/www/delivery/ -# @@||banner.pumpkinpatchkids.com/www/delivery/$domain=pumpkinpatch.co.nz|pumpkinpatch.co.uk|pumpkinpatch.com|pumpkinpatch.com.au (easylist.txt: 47987) -.banner.pumpkinpatchkids.com/www/delivery/ - -#ab2p-unblock-elem-R403 -{+client-header-tagger{ab2p-unblock-elem-R403} \ -} -# @@||thefile.me^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61419) -.thefile.me -# @@||streamin.to^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61418) -.streamin.to -# @@||sharesix.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61417) -.sharesix.com -# @@||sharerepo.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61416) -.sharerepo.com -# @@||nosvideo.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61414) -.nosvideo.com -# @@||cloudzilla.to^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61407) -.cloudzilla.to -# @@||bestreams.net^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61404) -.bestreams.net -# @@||thefile.me^$popup,domain=putlocker.is (easylist.txt: 50934) -.thefile.me -# @@||streamin.to^$popup,domain=putlocker.is (easylist.txt: 50933) -.streamin.to -# @@||sharesix.com^$popup,domain=putlocker.is (easylist.txt: 50932) -.sharesix.com -# @@||sharerepo.com^$popup,domain=putlocker.is (easylist.txt: 50931) -.sharerepo.com -# @@||nosvideo.com^$popup,domain=putlocker.is (easylist.txt: 50929) -.nosvideo.com -# @@||cloudzilla.to^$popup,domain=putlocker.is (easylist.txt: 50922) -.cloudzilla.to -# @@||bestreams.net^$popup,domain=putlocker.is (easylist.txt: 50919) -.bestreams.net - -#ab2p-unblock-elem-R1574 -{+client-header-tagger{ab2p-unblock-elem-R1574} \ -} -# @@?bannerId=$domain=qbao.com (easylistchina+easylist.txt: 10065) -/.*\?bannerId= - -#ab2p-unblock-elem-R1575 -{+client-header-tagger{ab2p-unblock-elem-R1575} \ -} -# @@||medialand.ru/t/$script,domain=qip.ru (advblock.txt: 7631) -.medialand.ru/t/ - -#ab2p-unblock-elem-R1576 -{+client-header-tagger{ab2p-unblock-elem-R1576} \ -} -# @@||qoinfaucet.com^$script,domain=qoinfaucet.com (easylistchina+easylist.txt: 60680) -.qoinfaucet.com -# @@||qoinfaucet.com^$script,domain=qoinfaucet.com (easylist.txt: 50195) -.qoinfaucet.com - -#ab2p-unblock-elem-R1577 -{+client-header-tagger{ab2p-unblock-elem-R1577} \ -} -# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina+easylist.txt: 10487) -.tajs.qq.com/stats\? - -#ab2p-unblock-elem-R1578 -{+client-header-tagger{ab2p-unblock-elem-R1578} \ -} -# @@||quantcast.com/advertise$domain=quantcast.com (easylistchina+easylist.txt: 61203) -.quantcast.com/advertise -# @@||quantcast.com/advertise$domain=quantcast.com (easylist.txt: 50718) -.quantcast.com/advertise - -#ab2p-unblock-elem-R1579 -{+client-header-tagger{ab2p-unblock-elem-R1579} \ -} -# @@||qzprod.files.wordpress.com^*?w=$domain=qz.com (easylistchina+easylist.txt: 59429) -.qzprod.files.wordpress.com/.*\?w= -# @@||ox-d.qz.com/w/1.0/jstag|$script,domain=qz.com (easylistchina+easylist.txt: 59317) -.ox-d.qz.com/w/1\.0/jstag$ -# @@||qzprod.files.wordpress.com^*?w=$domain=qz.com (easylist.txt: 48944) -.qzprod.files.wordpress.com/.*\?w= -# @@||ox-d.qz.com/w/1.0/jstag|$script,domain=qz.com (easylist.txt: 48832) -.ox-d.qz.com/w/1\.0/jstag$ - -#ab2p-unblock-elem-R1580 -{+client-header-tagger{ab2p-unblock-elem-R1580} \ -} -# @@||rackcdn.com/banners/$image,domain=rackspace.co.uk|rackspace.com.au (easylistchina+easylist.txt: 59431) -.rackcdn.com/banners/ -# @@||rackcdn.com/banners/$image,domain=rackspace.co.uk|rackspace.com.au (easylist.txt: 48946) -.rackcdn.com/banners/ - -#ab2p-unblock-elem-R1581 -{+client-header-tagger{ab2p-unblock-elem-R1581} \ -} -# @@||cbslocal.com/flash/videoads.*.swf$object,domain=radio.com (easylistchina+easylist.txt: 58554) -.cbslocal.com/flash/videoads\..*\.swf -# @@||cbslocal.com/flash/videoads.*.swf$object,domain=radio.com (easylist.txt: 48069) -.cbslocal.com/flash/videoads\..*\.swf - -#ab2p-unblock-elem-R1582 -{+client-header-tagger{ab2p-unblock-elem-R1582} \ -} -# @@||edge.andomedia.com^*/ando/files/$object-subrequest,domain=radiou.com (easylistchina+easylist.txt: 58767) -.edge.andomedia.com/.*/ando/files/ -# @@||edge.andomedia.com^*/ando/files/$object-subrequest,domain=radiou.com (easylist.txt: 48282) -.edge.andomedia.com/.*/ando/files/ - -#ab2p-unblock-elem-R1583 -{+client-header-tagger{ab2p-unblock-elem-R1583} \ -} -# @@/advertise.js|$domain=raketa-tv.com (advblock.txt: 7529) -/(.*/)?advertise\.js$ -advertise.js - -#ab2p-unblock-elem-R1584 -{+client-header-tagger{ab2p-unblock-elem-R1584} \ -} -# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina+easylist.txt: 10161) -.ads.rakuya.com.tw - -#ab2p-unblock-elem-R1585 -{+client-header-tagger{ab2p-unblock-elem-R1585} \ -} -# @@||rcm-images.amazon.com/images/$domain=rankbank.net (easylistchina+easylist.txt: 59443) -.rcm-images.amazon.com/images/ -# @@||rcm-images.amazon.com/images/$domain=rankbank.net (easylist.txt: 48958) -.rcm-images.amazon.com/images/ - -#ab2p-unblock-elem-R1586 -{+client-header-tagger{ab2p-unblock-elem-R1586} \ -} -# @@||ox-d.rantsports.com/w/1.0/jstag$script,domain=rantlifestyle.com (easylistchina+easylist.txt: 59318) -.ox-d.rantsports.com/w/1\.0/jstag -# @@||ox-d.rantsports.com/w/1.0/jstag$script,domain=rantlifestyle.com (easylist.txt: 48833) -.ox-d.rantsports.com/w/1\.0/jstag - -#ab2p-unblock-elem-R1587 -{+client-header-tagger{ab2p-unblock-elem-R1587} \ -} -# @@||medialand.ru^*/inline.js?$script,domain=rbc.ru (advblock.txt: 7634) -.medialand.ru/.*/inline\.js\? -# @@||medialand.ru^*/base.js?$script,domain=rbc.ru (advblock.txt: 7633) -.medialand.ru/.*/base\.js\? - -#ab2p-unblock-elem-R1588 -{+client-header-tagger{ab2p-unblock-elem-R1588} \ -} -# @@||syndication.twimg.com^$script,domain=redmaryland.com (easylistchina+easylist.txt: 46043) -.syndication.twimg.com -# @@||syndication.twimg.com^$script,domain=redmaryland.com (easylist.txt: 35558) -.syndication.twimg.com - -#ab2p-unblock-elem-R1589 -{+client-header-tagger{ab2p-unblock-elem-R1589} \ -} -# @@||redtubeplatinum.com/track/*/join?$popup,domain=redtube.com (easylistchina+easylist.txt: 61798) -.redtubeplatinum.com/track/.*/join\? -# @@||redtubeplatinum.com/signup/signup.php$popup,domain=redtube.com (easylistchina+easylist.txt: 61797) -.redtubeplatinum.com/signup/signup\.php -# @@||redtubelive.com/?AFNO=$popup,domain=redtube.com (easylistchina+easylist.txt: 61796) -.redtubelive.com/\?AFNO= -# @@||redtubeplatinum.com/track/*/join?$popup,domain=redtube.com (easylist.txt: 51313) -.redtubeplatinum.com/track/.*/join\? -# @@||redtubeplatinum.com/signup/signup.php$popup,domain=redtube.com (easylist.txt: 51312) -.redtubeplatinum.com/signup/signup\.php -# @@||redtubelive.com/?AFNO=$popup,domain=redtube.com (easylist.txt: 51311) -.redtubelive.com/\?AFNO= - -#ab2p-unblock-elem-R1590 -{+client-header-tagger{ab2p-unblock-elem-R1590} \ -} -# @@||d1sp6mwzi1jpx1.cloudfront.net^*/advertisement_min.js$domain=reelkandi.com (easylistchina+easylist.txt: 58640) -.d1sp6mwzi1jpx1.cloudfront.net/.*/advertisement_min\.js -# @@||d1sp6mwzi1jpx1.cloudfront.net^*/advertisement_min.js$domain=reelkandi.com (easylist.txt: 48155) -.d1sp6mwzi1jpx1.cloudfront.net/.*/advertisement_min\.js - -#ab2p-unblock-elem-R1591 -{+client-header-tagger{ab2p-unblock-elem-R1591} \ -} -# @@||ads.reempresa.org^$popup,domain=reempresa.org (easylistchina+easylist.txt: 61398) -.ads.reempresa.org -# @@||ads.reempresa.org^$domain=reempresa.org (easylistchina+easylist.txt: 58259) -.ads.reempresa.org -# @@||ads.reempresa.org^$popup,domain=reempresa.org (easylist.txt: 50913) -.ads.reempresa.org -# @@||ads.reempresa.org^$domain=reempresa.org (easylist.txt: 47774) -.ads.reempresa.org - -#ab2p-unblock-elem-R1592 -{+client-header-tagger{ab2p-unblock-elem-R1592} \ -} -# @@/reklama.$domain=reklama.com.ua|reklama.marat.ua|reklama.rambler.ru (advblock.txt: 7205) -/(.*/)?reklama\. -reklama.*. - -#ab2p-unblock-elem-R1593 -{+client-header-tagger{ab2p-unblock-elem-R1593} \ -} -# @@||remoteshaman.com/templates/*/ads.js|$domain=remoteshaman.com (advblock.txt: 7372) -.remoteshaman.com/templates/.*/ads\.js$ - -#ab2p-unblock-elem-R1594 -{+client-header-tagger{ab2p-unblock-elem-R1594} \ -} -# @@||renault.ru/_beta/banner_system/banner.php$domain=renault.ru (advblock.txt: 7373) -.renault.ru/_beta/banner_system/banner\.php - -#ab2p-unblock-elem-R1595 -{+client-header-tagger{ab2p-unblock-elem-R1595} \ -} -# @@||adserve.atedra.com/zones.php$xmlhttprequest,domain=repeatmyvids.com (easylistchina+easylist.txt: 58288) -.adserve.atedra.com/zones\.php -# @@||adserve.atedra.com/vast/wrap.php?$script,domain=repeatmyvids.com (easylistchina+easylist.txt: 58287) -.adserve.atedra.com/vast/wrap\.php\? -# @@||adserve.atedra.com/js/$script,domain=repeatmyvids.com (easylistchina+easylist.txt: 58286) -.adserve.atedra.com/js/ -# @@||adserve.atedra.com/zones.php$xmlhttprequest,domain=repeatmyvids.com (easylist.txt: 47803) -.adserve.atedra.com/zones\.php -# @@||adserve.atedra.com/vast/wrap.php?$script,domain=repeatmyvids.com (easylist.txt: 47802) -.adserve.atedra.com/vast/wrap\.php\? -# @@||adserve.atedra.com/js/$script,domain=repeatmyvids.com (easylist.txt: 47801) -.adserve.atedra.com/js/ - -#ab2p-unblock-elem-R414 -{+client-header-tagger{ab2p-unblock-elem-R414} \ -} -# @@||reuters.tv/syndicatedPlayerClient/js/advertisement.js$domain=reuters.com (easylistchina+easylist.txt: 59456) -.reuters.tv/syndicatedPlayerClient/js/advertisement\.js -# @@||reuters.tv/syndicatedPlayerChannel/$subdocument,domain=reuters.com (easylistchina+easylist.txt: 59455) -.reuters.tv/syndicatedPlayerChannel/ -# @@||doubleclick.net^*;type=BizDev_Article_RR1;$script,domain=reuters.com (easylistchina+easylist.txt: 58737) -.doubleclick.net/.*;type=BizDev_Article_RR1; -# @@||reuters.tv/syndicatedPlayerClient/js/advertisement.js$domain=reuters.com (easylist.txt: 48971) -.reuters.tv/syndicatedPlayerClient/js/advertisement\.js -# @@||reuters.tv/syndicatedPlayerChannel/$subdocument,domain=reuters.com (easylist.txt: 48970) -.reuters.tv/syndicatedPlayerChannel/ -# @@||doubleclick.net^*;type=BizDev_Article_RR1;$script,domain=reuters.com (easylist.txt: 48252) -.doubleclick.net/.*;type=BizDev_Article_RR1; - -#ab2p-unblock-elem-R1596 -{+client-header-tagger{ab2p-unblock-elem-R1596} \ -} -# @@/adfox.reload_code.$domain=rg.ru (advblock.txt: 7183) -/(.*/)?adfox\.reload_code\. - -#ab2p-unblock-elem-R1597 -{+client-header-tagger{ab2p-unblock-elem-R1597} \ -} -# @@||iplsc.com^*/inpl.box.ad.js$domain=rmf24.pl (easylistchina+easylist.txt: 61045) -.iplsc.com/.*/inpl\.box\.ad\.js -# @@||iplsc.com^*/inpl.box.ad.js$domain=rmf24.pl (easylist.txt: 50560) -.iplsc.com/.*/inpl\.box\.ad\.js - -#ab2p-unblock-elem-R1598 -{+client-header-tagger{ab2p-unblock-elem-R1598} \ -} -# @@||ad.doubleclick.net/adj/rstone.site/music/photos^$script,domain=rollingstone.com (easylistchina+easylist.txt: 58156) -.ad.doubleclick.net/adj/rstone\.site/music/photos[^\w%.-] -# @@||ad.doubleclick.net/adj/rstone.site/music/photos^$script,domain=rollingstone.com (easylist.txt: 47671) -.ad.doubleclick.net/adj/rstone\.site/music/photos[^\w%.-] - -#ab2p-unblock-elem-R1599 -{+client-header-tagger{ab2p-unblock-elem-R1599} \ -} -# @@||images*.roofandfloor.com^$image,domain=roofandfloor.com (easylistchina+easylist.txt: 61341) -.images*./.*\.roofandfloor\.com[^\w%.-] -.images*.roofandfloor.com -# @@||images*.roofandfloor.com^$image,domain=roofandfloor.com (easylist.txt: 50856) -.images*./.*\.roofandfloor\.com[^\w%.-] -.images*.roofandfloor.com - -#ab2p-unblock-elem-R1600 -{+client-header-tagger{ab2p-unblock-elem-R1600} \ -} -# @@||longtailvideo.com/flowplayer/ova-*.swf$domain=rosemaryconley.tv (easylistchina+easylist.txt: 59108) -.longtailvideo.com/flowplayer/ova-.*\.swf -# @@||longtailvideo.com/flowplayer/ova-*.swf$domain=rosemaryconley.tv (easylist.txt: 48623) -.longtailvideo.com/flowplayer/ova-.*\.swf - -#ab2p-unblock-elem-R1601 -{+client-header-tagger{ab2p-unblock-elem-R1601} \ -} -# @@||roshlam.ru/adverts/$xmlhttprequest,domain=roshlam.ru (advblock.txt: 7377) -.roshlam.ru/adverts/ - -#ab2p-unblock-elem-R1602 -{+client-header-tagger{ab2p-unblock-elem-R1602} \ -} -# @@/upload/banners/*$domain=rossa-m.ru|travelata.ru (advblock.txt: 7213) -/(.*/)?upload/banners/.* - -#ab2p-unblock-elem-R1603 -{+client-header-tagger{ab2p-unblock-elem-R1603} \ -} -# @@||rottentomatoescdn.com^*/SocialAds.js$domain=rottentomatoes.com (easylistchina+easylist.txt: 59469) -.rottentomatoescdn.com/.*/SocialAds\.js -# @@||rottentomatoescdn.com^*/SocialAds.js$domain=rottentomatoes.com (easylist.txt: 48984) -.rottentomatoescdn.com/.*/SocialAds\.js - -#ab2p-unblock-elem-R1604 -{+client-header-tagger{ab2p-unblock-elem-R1604} \ -} -# @@||zedo.com/jsc/c5/fhs.js$domain=rrstar.com (easylistchina+easylist.txt: 59874) -.zedo.com/jsc/c5/fhs\.js -# @@||zedo.com/jsc/c5/fhs.js$domain=rrstar.com (easylist.txt: 49389) -.zedo.com/jsc/c5/fhs\.js - -#ab2p-unblock-elem-R1605 -{+client-header-tagger{ab2p-unblock-elem-R1605} \ -} -# @@||g.doubleclick.net/gampad/ads?ad_rule=1&adk=*&ciu_szs=300x250&*&gdfp_req=1&*&output=xml_vast2&$object-subrequest,domain=rte.ie (easylistchina+easylist.txt: 60325) -.g.doubleclick.net/gampad/ads\?ad_rule=1&adk=.*&ciu_szs=300x250&.*&gdfp_req=1&.*&output=xml_vast2& -# @@||doubleclick.net/xbbe/creative/vast?$domain=rte.ie (easylistchina+easylist.txt: 60229) -.doubleclick.net/xbbe/creative/vast\? -# @@||g.doubleclick.net/gampad/ads?adk$domain=rte.ie (easylistchina+easylist.txt: 58853) -.g.doubleclick.net/gampad/ads\?adk -# @@||2mdn.net/crossdomain.xml$domain=rte.ie (easylistchina+easylist.txt: 58120) -.2mdn.net/crossdomain\.xml -# @@||g.doubleclick.net/gampad/ads?ad_rule=1&adk=*&ciu_szs=300x250&*&gdfp_req=1&*&output=xml_vast2&$object-subrequest,domain=rte.ie (easylist.txt: 49840) -.g.doubleclick.net/gampad/ads\?ad_rule=1&adk=.*&ciu_szs=300x250&.*&gdfp_req=1&.*&output=xml_vast2& -# @@||doubleclick.net/xbbe/creative/vast?$domain=rte.ie (easylist.txt: 49744) -.doubleclick.net/xbbe/creative/vast\? -# @@||g.doubleclick.net/gampad/ads?adk$domain=rte.ie (easylist.txt: 48368) -.g.doubleclick.net/gampad/ads\?adk -# @@||2mdn.net/crossdomain.xml$domain=rte.ie (easylist.txt: 47635) -.2mdn.net/crossdomain\.xml - -#ab2p-unblock-elem-R1606 -{+client-header-tagger{ab2p-unblock-elem-R1606} \ -} -# @@||newmedia.lu^*/adtech_video/*.xml$object-subrequest,domain=rtl.lu (easylistchina+easylist.txt: 61071) -.newmedia.lu/.*/adtech_video/.*\.xml -# @@||newmedia.lu^*/adtech_video/*.xml$object-subrequest,domain=rtl.lu (easylist.txt: 50586) -.newmedia.lu/.*/adtech_video/.*\.xml - -#ab2p-unblock-elem-R1607 -{+client-header-tagger{ab2p-unblock-elem-R1607} \ -} -# @@||rus-wars.*/img/$domain=rus-wars.com|rus-wars.ru (advblock.txt: 7382) -.rus-wars.*./(.*/)?img/ - -#ab2p-unblock-elem-R1608 -{+client-header-tagger{ab2p-unblock-elem-R1608} \ -} -# @@/pub/ad/*$domain=ruten.com.tw (easylistchina+easylist.txt: 10052) -/(.*/)?pub/ad/.* - -#ab2p-unblock-elem-R1609 -{+client-header-tagger{ab2p-unblock-elem-R1609} \ -} -# @@||advert.popunder.ru/banners/advert.php?type=banner_img|$image,subdocument,domain=rutracker.org.ua (advblock.txt: 7556) -.advert.popunder.ru/banners/advert\.php\?type=banner_img$ - -#ab2p-unblock-elem-R418 -{+client-header-tagger{ab2p-unblock-elem-R418} \ -} -# @@||rutracker.org/logo/$image,domain=rutracker.org (advblock.txt: 7385) -.rutracker.org/logo/ -# @@//195.82.146.52/logo/*$domain=rutracker.org (advblock.txt: 7180) -195.82.146.52/logo/.* - -#ab2p-unblock-elem-R1610 -{+client-header-tagger{ab2p-unblock-elem-R1610} \ -} -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=rutube.ru (advblock.txt: 7575) -.ima3vpaid.appspot.com/\?adTagUrl= -# @@||gpm-digital.com^*/getCode?$object-subrequest,domain=rutube.ru (advblock.txt: 7574) -.gpm-digital.com/.*/getCode\? -# @@||adfox.ru^*/getCodeTest?$object-subrequest,domain=rutube.ru (advblock.txt: 7550) -.adfox.ru/.*/getCodeTest\? -# @@||adfox.ru^*/getCode?$object-subrequest,domain=rutube.ru (advblock.txt: 7549) -.adfox.ru/.*/getCode\? -# @@||adfox.ru^*/event?$object-subrequest,domain=rutube.ru (advblock.txt: 7548) -.adfox.ru/.*/event\? -# @@||ad.mail.ru/vast/$object-subrequest,domain=rutube.ru (advblock.txt: 7544) -.ad.mail.ru/vast/ -# @@://adv.$script,domain=rutube.ru (advblock.txt: 7540) -/.*://adv\. -adv.*. -# @@/crossdomain.xml|$domain=rutube.ru (advblock.txt: 7535) -/(.*/)?crossdomain\.xml$ -crossdomain.xml - -#ab2p-unblock-elem-R1611 -{+client-header-tagger{ab2p-unblock-elem-R1611} \ -} -# @@-teasers-$domain=rw.by (advblock.txt: 7176) -/.*-teasers- -.*-teasers-*. - -#ab2p-unblock-elem-R1612 -{+client-header-tagger{ab2p-unblock-elem-R1612} \ -} -# @@||sahadan.com^$script,domain=sahadan.com (easylistchina+easylist.txt: 60711) -.sahadan.com -# @@||sahadan.com^$script,domain=sahadan.com (easylist.txt: 50226) -.sahadan.com - -#ab2p-unblock-elem-R1613 -{+client-header-tagger{ab2p-unblock-elem-R1613} \ -} -# @@/afr.php?$script,domain=sankakucomplex.com (easylistchina+easylist.txt: 59922) -/(.*/)?afr\.php\? -# @@||208.100.24.244^$script,domain=sankakucomplex.com (easylistchina+easylist.txt: 58115) -.208.100.24.244 -# @@/afr.php?$script,domain=sankakucomplex.com (easylist.txt: 49437) -/(.*/)?afr\.php\? -# @@||208.100.24.244^$script,domain=sankakucomplex.com (easylist.txt: 47630) -.208.100.24.244 - -#ab2p-unblock-elem-R1614 -{+client-header-tagger{ab2p-unblock-elem-R1614} \ -} -# @@||sarafannoeradio.org/images/stories/$domain=sarafannoeradio.org (advblock.txt: 7388) -.sarafannoeradio.org/images/stories/ - -#ab2p-unblock-elem-R1615 -{+client-header-tagger{ab2p-unblock-elem-R1615} \ -} -# @@||sc2casts.com^$script,domain=sc2casts.com (easylistchina+easylist.txt: 60720) -.sc2casts.com -# @@||sc2casts.com^$script,domain=sc2casts.com (easylist.txt: 50235) -.sc2casts.com - -#ab2p-unblock-elem-R1616 -{+client-header-tagger{ab2p-unblock-elem-R1616} \ -} -# @@||scooter-zip.ru/upload/imagelib/baners/$image,domain=scooter-zip.ru (advblock.txt: 7389) -.scooter-zip.ru/upload/imagelib/baners/ - -#ab2p-unblock-elem-R1617 -{+client-header-tagger{ab2p-unblock-elem-R1617} \ -} -# @@||admedia.wsod.com^$domain=scottrade.com (easylistchina+easylist.txt: 58209) -.admedia.wsod.com -# @@||ad.wsod.com^$domain=scottrade.com (easylistchina+easylist.txt: 58164) -.ad.wsod.com -# @@||admedia.wsod.com^$domain=scottrade.com (easylist.txt: 47724) -.admedia.wsod.com -# @@||ad.wsod.com^$domain=scottrade.com (easylist.txt: 47679) -.ad.wsod.com - -#ab2p-unblock-elem-R1618 -{+client-header-tagger{ab2p-unblock-elem-R1618} \ -} -# @@||screenshot.brandverity.com/cm/review/$document,domain=screenshot.brandverity.com (easylistchina+easylist.txt: 59497) -.screenshot.brandverity.com/cm/review/ -# @@||screenshot.brandverity.com/cm/detail/$document,domain=screenshot.brandverity.com (easylistchina+easylist.txt: 59496) -.screenshot.brandverity.com/cm/detail/ -# @@||screenshot.brandverity.com/cm/review/$document,domain=screenshot.brandverity.com (easylist.txt: 49012) -.screenshot.brandverity.com/cm/review/ -# @@||screenshot.brandverity.com/cm/detail/$document,domain=screenshot.brandverity.com (easylist.txt: 49011) -.screenshot.brandverity.com/cm/detail/ - -#ab2p-unblock-elem-R1619 -{+client-header-tagger{ab2p-unblock-elem-R1619} \ -} -# @@||scribdassets.com/aggregated/javascript/ads.js?$domain=scribd.com (easylistchina+easylist.txt: 59499) -.scribdassets.com/aggregated/javascript/ads\.js\? -# @@||scribdassets.com/aggregated/javascript/ads.js?$domain=scribd.com (easylist.txt: 49014) -.scribdassets.com/aggregated/javascript/ads\.js\? - -#ab2p-unblock-elem-R1620 -{+client-header-tagger{ab2p-unblock-elem-R1620} \ -} -# @@||thumbs.hexagram.com^$domain=scribol.com (easylistchina+easylist.txt: 59656) -.thumbs.hexagram.com -# @@||api.hexagram.com^$domain=scribol.com (easylistchina+easylist.txt: 58415) -.api.hexagram.com -# @@||thumbs.hexagram.com^$domain=scribol.com (easylist.txt: 49171) -.thumbs.hexagram.com -# @@||api.hexagram.com^$domain=scribol.com (easylist.txt: 47930) -.api.hexagram.com - -#ab2p-unblock-elem-R1621 -{+client-header-tagger{ab2p-unblock-elem-R1621} \ -} -# @@||annonser.dagbladet.no/EAS_tag.1.0.js$domain=se.no (easylistchina+easylist.txt: 60980) -.annonser.dagbladet.no/EAS_tag\.1\.0\.js -# @@||annonser.dagbladet.no/eas?$script,domain=se.no (easylistchina+easylist.txt: 60979) -.annonser.dagbladet.no/eas\? -# @@||annonser.dagbladet.no/EAS_tag.1.0.js$domain=se.no (easylist.txt: 50495) -.annonser.dagbladet.no/EAS_tag\.1\.0\.js -# @@||annonser.dagbladet.no/eas?$script,domain=se.no (easylist.txt: 50494) -.annonser.dagbladet.no/eas\? - -#ab2p-unblock-elem-R1622 -{+client-header-tagger{ab2p-unblock-elem-R1622} \ -} -# @@||google.com/adsense/$subdocument,domain=sedo.co.uk|sedo.com|sedo.jp|sedo.kr|sedo.pl (easylistchina+easylist.txt: 58898) -.google.com/adsense/ -# @@||google.com/adsense/$subdocument,domain=sedo.co.uk|sedo.com|sedo.jp|sedo.kr|sedo.pl (easylist.txt: 48413) -.google.com/adsense/ - -#ab2p-unblock-elem-R1623 -{+client-header-tagger{ab2p-unblock-elem-R1623} \ -} -# @@||sedo.com/ox/www/delivery/ajs.php$domain=sedo.com|sedo.de (easylistchina+easylist.txt: 59511) -.sedo.com/ox/www/delivery/ajs\.php -# @@||sedo.com/ox/www/delivery/ajs.php$domain=sedo.com|sedo.de (easylist.txt: 49026) -.sedo.com/ox/www/delivery/ajs\.php - -#ab2p-unblock-elem-R1624 -{+client-header-tagger{ab2p-unblock-elem-R1624} \ -} -# @@|http://$image,third-party,domain=seekingalpha.com (easylistchina+easylist.txt: 59941) -# @@|http://$image,third-party,domain=seekingalpha.com (easylist.txt: 49456) - -#ab2p-unblock-elem-R1625 -{+client-header-tagger{ab2p-unblock-elem-R1625} \ -} -# @@||sn00.net^$domain=selectornews.com (advblock.txt: 7394) -.sn00.net - -#ab2p-unblock-elem-R1626 -{+client-header-tagger{ab2p-unblock-elem-R1626} \ -} -# @@||ads.awadserver.com^$domain=sellallautos.com (easylistchina+easylist.txt: 58222) -.ads.awadserver.com -# @@||ads.awadserver.com^$domain=sellallautos.com (easylist.txt: 47737) -.ads.awadserver.com - -#ab2p-unblock-elem-R1627 -{+client-header-tagger{ab2p-unblock-elem-R1627} \ -} -# @@||sellua.info^*/ad/$domain=sellua.info (advblock.txt: 7390) -.sellua.info/.*/ad/ - -#ab2p-unblock-elem-R1628 -{+client-header-tagger{ab2p-unblock-elem-R1628} \ -} -# @@$image,domain=serpens.nl (advblock.txt: 7521) - - -#ab2p-unblock-elem-R1629 -{+client-header-tagger{ab2p-unblock-elem-R1629} \ -} -# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina+easylist.txt: 10069) -# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina+easylist.txt: 10056) -/(.*/)?show_ads_impl\.js -# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina+easylist.txt: 10038) -/(.*/)?g\.doubleclick\.net\.js\? -# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina+easylist.txt: 10012) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina+easylist.txt: 10006) -/(.*/)?adlogger_tracker\.php - -#ab2p-unblock-elem-R1630 -{+client-header-tagger{ab2p-unblock-elem-R1630} \ -} -# @@||static.adzerk.net/ados.js$domain=serverfault.com|stackoverflow.com (easylistchina+easylist.txt: 59588) -.static.adzerk.net/ados\.js -# @@||engine.adzerk.net/ados?$script,domain=serverfault.com|stackoverflow.com (easylistchina+easylist.txt: 58782) -.engine.adzerk.net/ados\? -# @@||static.adzerk.net/ados.js$domain=serverfault.com|stackoverflow.com (easylist.txt: 49103) -.static.adzerk.net/ados\.js -# @@||engine.adzerk.net/ados?$script,domain=serverfault.com|stackoverflow.com (easylist.txt: 48297) -.engine.adzerk.net/ados\? - -#ab2p-unblock-elem-R1631 -{+client-header-tagger{ab2p-unblock-elem-R1631} \ -} -# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina+easylist.txt: 10019) -/(.*/)?advertise/.* - -#ab2p-unblock-elem-R1632 -{+client-header-tagger{ab2p-unblock-elem-R1632} \ -} -# @@||google.com/recaptcha/$subdocument,domain=sh.st (easylistchina+easylist.txt: 58903) -.google.com/recaptcha/ -# @@||google.com/recaptcha/$subdocument,domain=sh.st (easylist.txt: 48418) -.google.com/recaptcha/ - -#ab2p-unblock-elem-R1633 -{+client-header-tagger{ab2p-unblock-elem-R1633} \ -} -# @@||196.30.218.174/admentor/sirius_sdo_top.htm$subdocument,domain=sharedata.co.za (easylistchina+easylist.txt: 58113) -.196.30.218.174/admentor/sirius_sdo_top\.htm -# @@||196.30.218.174/admentor/sirius_sdo_top.htm$subdocument,domain=sharedata.co.za (easylist.txt: 47628) -.196.30.218.174/admentor/sirius_sdo_top\.htm - -#ab2p-unblock-elem-R1634 -{+client-header-tagger{ab2p-unblock-elem-R1634} \ -} -# @@||platform.twitter.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45842) -.platform.twitter.com -# @@||assets.pinterest.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45838) -.assets.pinterest.com -# @@||apis.google.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45837) -.apis.google.com -# @@||ajax.googleapis.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45836) -.ajax.googleapis.com -# @@||platform.twitter.com^$domain=shop.patheos.com (easylist.txt: 35357) -.platform.twitter.com -# @@||assets.pinterest.com^$domain=shop.patheos.com (easylist.txt: 35353) -.assets.pinterest.com -# @@||apis.google.com^$domain=shop.patheos.com (easylist.txt: 35352) -.apis.google.com -# @@||ajax.googleapis.com^$domain=shop.patheos.com (easylist.txt: 35351) -.ajax.googleapis.com - -#ab2p-unblock-elem-R1635 -{+client-header-tagger{ab2p-unblock-elem-R1635} \ -} -# @@||getprice.com.au/images/$domain=shopping.ninemsn.com.au|shopping.yahoo.com.au (easylistchina+easylist.txt: 58874) -.getprice.com.au/images/ -# @@||getprice.com.au/images/$domain=shopping.ninemsn.com.au|shopping.yahoo.com.au (easylist.txt: 48389) -.getprice.com.au/images/ - -#ab2p-unblock-elem-R1636 -{+client-header-tagger{ab2p-unblock-elem-R1636} \ -} -# @@/tizer/*$domain=sibtravel42.ru|tutu.ru (advblock.txt: 7211) -/(.*/)?tizer/.* - -#ab2p-unblock-elem-R1637 -{+client-header-tagger{ab2p-unblock-elem-R1637} \ -} -# @@||amazonaws.com/bt-dashboard-logos/$domain=signal.co (easylistchina+easylist.txt: 58398) -.amazonaws.com/bt-dashboard-logos/ -# @@||amazonaws.com/bt-dashboard-logos/$domain=signal.co (easylist.txt: 47913) -.amazonaws.com/bt-dashboard-logos/ - -#ab2p-unblock-elem-R1638 -{+client-header-tagger{ab2p-unblock-elem-R1638} \ -} -# @@||ads.simplyhired.com^$domain=simply-partner.com|simplyhired.com (easylistchina+easylist.txt: 58261) -.ads.simplyhired.com -# @@||ads.simplyhired.com^$domain=simply-partner.com|simplyhired.com (easylist.txt: 47776) -.ads.simplyhired.com - -#ab2p-unblock-elem-R1639 -{+client-header-tagger{ab2p-unblock-elem-R1639} \ -} -# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina+easylist.txt: 10484) -.sina.com.cn/iplookup/iplookup\.php\? - -#ab2p-unblock-elem-R1640 -{+client-header-tagger{ab2p-unblock-elem-R1640} \ -} -# @@||siteads.com^$domain=siteads.com (easylistchina+easylist.txt: 61253) -.siteads.com -# @@||siteads.com^$domain=siteads.com (easylist.txt: 50768) -.siteads.com - -#ab2p-unblock-elem-R1641 -{+client-header-tagger{ab2p-unblock-elem-R1641} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/expansion_embed.js$domain=sizedrive.com|softpedia.com (easylistchina+easylist.txt: 60623) -.pagead2.googlesyndication.com/pagead/js/.*/expansion_embed\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/expansion_embed.js$domain=sizedrive.com|softpedia.com (easylist.txt: 50138) -.pagead2.googlesyndication.com/pagead/js/.*/expansion_embed\.js - -#ab2p-unblock-elem-R1642 -{+client-header-tagger{ab2p-unblock-elem-R1642} \ -} -# @@||akamaihd.net^*/advert/$object-subrequest,domain=skai.gr (easylistchina+easylist.txt: 60970) -.akamaihd.net/.*/advert/ -# @@||akamaihd.net^*/advert/$object-subrequest,domain=skai.gr (easylist.txt: 50485) -.akamaihd.net/.*/advert/ - -#ab2p-unblock-elem-R1643 -{+client-header-tagger{ab2p-unblock-elem-R1643} \ -} -# @@||skypeassets.com^*/advertise/$domain=skype.com (easylistchina+easylist.txt: 59541) -.skypeassets.com/.*/advertise/ -# @@||skypeassets.com^*/advertise/$domain=skype.com (easylist.txt: 49056) -.skypeassets.com/.*/advertise/ - -#ab2p-unblock-elem-R1644 -{+client-header-tagger{ab2p-unblock-elem-R1644} \ -} -# @@||player.cdn.targetspot.com/station/*/ts_config.xml$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59385) -.player.cdn.targetspot.com/station/.*/ts_config\.xml -# @@||player.cdn.targetspot.com/player/ts_as3.swf?$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59384) -.player.cdn.targetspot.com/player/ts_as3\.swf\? -# @@||player.cdn.targetspot.com/crossdomain.xml$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59383) -.player.cdn.targetspot.com/crossdomain\.xml -# @@||player.cdn.targetspot.com/station/*/ts_config.xml$object-subrequest,domain=slacker.com (easylist.txt: 48900) -.player.cdn.targetspot.com/station/.*/ts_config\.xml -# @@||player.cdn.targetspot.com/player/ts_as3.swf?$object-subrequest,domain=slacker.com (easylist.txt: 48899) -.player.cdn.targetspot.com/player/ts_as3\.swf\? -# @@||player.cdn.targetspot.com/crossdomain.xml$object-subrequest,domain=slacker.com (easylist.txt: 48898) -.player.cdn.targetspot.com/crossdomain\.xml - -#ab2p-unblock-elem-R437 -{+client-header-tagger{ab2p-unblock-elem-R437} \ -} -# @@||cloudfront.net/js/pubads_$script,domain=slader.com (easylistchina+easylist.txt: 60167) -.cloudfront.net/js/pubads_ -# @@||cloudfront.net/js/pubads_$script,domain=slader.com (easylist.txt: 49682) -.cloudfront.net/js/pubads_ - -#ab2p-unblock-elem-R1645 -{+client-header-tagger{ab2p-unblock-elem-R1645} \ -} -# @@||fsdn.com/sd/topics/advertising_64.png$domain=slashdot.org (easylistchina+easylist.txt: 58846) -.fsdn.com/sd/topics/advertising_64\.png -# @@||fsdn.com/sd/topics/advertising_64.png$domain=slashdot.org (easylist.txt: 48361) -.fsdn.com/sd/topics/advertising_64\.png - -#ab2p-unblock-elem-R1646 -{+client-header-tagger{ab2p-unblock-elem-R1646} \ -} -# @@||videoads.washingtonpost.com^$object-subrequest,domain=slatev.com (easylistchina+easylist.txt: 59761) -.videoads.washingtonpost.com -# @@||videoads.washingtonpost.com^$object-subrequest,domain=slatev.com (easylist.txt: 49276) -.videoads.washingtonpost.com - -#ab2p-unblock-elem-R1647 -{+client-header-tagger{ab2p-unblock-elem-R1647} \ -} -# @@||95.211.194.229^$script,domain=slickvid.com (easylistchina+easylist.txt: 59974) -.95.211.194.229 -# @@||95.211.194.229^$script,domain=slickvid.com (easylist.txt: 49489) -.95.211.194.229 - -#ab2p-unblock-elem-R1648 -{+client-header-tagger{ab2p-unblock-elem-R1648} \ -} -# @@||vidible.tv/prod/tags/$script,domain=smallscreennetwork.com (easylistchina+easylist.txt: 59764) -.vidible.tv/prod/tags/ -# @@||vidible.tv/prod/tags/$script,domain=smallscreennetwork.com (easylist.txt: 49279) -.vidible.tv/prod/tags/ - -#ab2p-unblock-elem-R1649 -{+client-header-tagger{ab2p-unblock-elem-R1649} \ -} -# @@||smartads.by^$domain=smartads.by (advblock.txt: 7393) -.smartads.by - -#ab2p-unblock-elem-R1650 -{+client-header-tagger{ab2p-unblock-elem-R1650} \ -} -# @@||smc.temple.edu/advertising/$domain=smctemple.wpengine.com (easylistchina+easylist.txt: 59546) -.smc.temple.edu/advertising/ -# @@||smc.temple.edu/advertising/$domain=smctemple.wpengine.com (easylist.txt: 49061) -.smc.temple.edu/advertising/ - -#ab2p-unblock-elem-R1651 -{+client-header-tagger{ab2p-unblock-elem-R1651} \ -} -# @@||smileonthetiles2.co.uk/openx/www/$image,script,subdocument,domain=smileonthetiles.com|smileonthetiles2.co.uk (easylistchina+easylist.txt: 59549) -.smileonthetiles2.co.uk/openx/www/ -# @@||smileonthetiles2.co.uk/openx/www/$image,script,subdocument,domain=smileonthetiles.com|smileonthetiles2.co.uk (easylist.txt: 49064) -.smileonthetiles2.co.uk/openx/www/ - -#ab2p-unblock-elem-R1652 -{+client-header-tagger{ab2p-unblock-elem-R1652} \ -} -# @@||pladform.ru/getVast?$object-subrequest,domain=smotri.com|video.reset.ru (advblock.txt: 7357) -.pladform.ru/getVast\? -# @@||medialand.ru/code?$domain=smotri.com|video.reset.ru (advblock.txt: 7333) -.medialand.ru/code\? -# @@||adrcdn.com/ads/*.xml|$object-subrequest,domain=smotri.com|video.reset.ru (advblock.txt: 7229) -.adrcdn.com/ads/.*\.xml$ - -#ab2p-unblock-elem-R1653 -{+client-header-tagger{ab2p-unblock-elem-R1653} \ -} -# @@||adtechus.com/?advideo/$domain=snagfilms.com (easylistchina+easylist.txt: 58319) -.adtechus.com/\?advideo/ -# @@||adtechus.com/?advideo/$domain=snagfilms.com (easylist.txt: 47834) -.adtechus.com/\?advideo/ - -#ab2p-unblock-elem-R1654 -{+client-header-tagger{ab2p-unblock-elem-R1654} \ -} -# @@||gg.woniu.com^$domain=snail.com (easylistchina+easylist.txt: 10254) -.gg.woniu.com - -#ab2p-unblock-elem-R1655 -{+client-header-tagger{ab2p-unblock-elem-R1655} \ -} -# @@||amazonaws.com^*/300x250_$image,domain=snapapp.com (easylistchina+easylist.txt: 61309) -.amazonaws.com/.*/300x250_ -# @@||amazonaws.com^*-300x250_$image,domain=snapapp.com (easylistchina+easylist.txt: 61308) -.amazonaws.com/.*-300x250_ -# @@||amazonaws.com^*/300x250_$image,domain=snapapp.com (easylist.txt: 50824) -.amazonaws.com/.*/300x250_ -# @@||amazonaws.com^*-300x250_$image,domain=snapapp.com (easylist.txt: 50823) -.amazonaws.com/.*-300x250_ - -#ab2p-unblock-elem-R1656 -{+client-header-tagger{ab2p-unblock-elem-R1656} \ -} -# @@||doubleclick.net/adi/sny.tv/media;$subdocument,domain=sny.tv (easylistchina+easylist.txt: 58702) -.doubleclick.net/adi/sny\.tv/media; -# @@||doubleclick.net/adi/sny.tv/media;$subdocument,domain=sny.tv (easylist.txt: 48217) -.doubleclick.net/adi/sny\.tv/media; - -#ab2p-unblock-elem-R1657 -{+client-header-tagger{ab2p-unblock-elem-R1657} \ -} -# @@||softportal.com/advert/ushki/$image,domain=softportal.com (advblock.txt: 7395) -.softportal.com/advert/ushki/ - -#ab2p-unblock-elem-R1658 -{+client-header-tagger{ab2p-unblock-elem-R1658} \ -} -# @@||assoc-amazon.com/widgets/$domain=sotumblry.com (easylistchina+easylist.txt: 58444) -.assoc-amazon.com/widgets/ -# @@||amazon.com/widgets/$domain=sotumblry.com (easylistchina+easylist.txt: 58395) -.amazon.com/widgets/ -# @@||assoc-amazon.com/widgets/$domain=sotumblry.com (easylist.txt: 47959) -.assoc-amazon.com/widgets/ -# @@||amazon.com/widgets/$domain=sotumblry.com (easylist.txt: 47910) -.amazon.com/widgets/ - -#ab2p-unblock-elem-R1659 -{+client-header-tagger{ab2p-unblock-elem-R1659} \ -} -# @@||data.panachetech.com/|$object-subrequest,domain=southpark.nl (easylistchina+easylist.txt: 58653) -.data.panachetech.com/$ -# @@||data.panachetech.com/|$object-subrequest,domain=southpark.nl (easylist.txt: 48168) -.data.panachetech.com/$ - -#ab2p-unblock-elem-R1660 -{+client-header-tagger{ab2p-unblock-elem-R1660} \ -} -# @@||spankwirefreehd.com^*.Spankwire_HeaderTab&$popup,domain=spankwire.com (easylistchina+easylist.txt: 61801) -.spankwirefreehd.com/.*\.Spankwire_HeaderTab& -# @@||spankwirecams.com/?AFNO=$popup,domain=spankwire.com (easylistchina+easylist.txt: 61800) -.spankwirecams.com/\?AFNO= -# @@||spankwirefreehd.com^*.Spankwire_HeaderTab&$popup,domain=spankwire.com (easylist.txt: 51316) -.spankwirefreehd.com/.*\.Spankwire_HeaderTab& -# @@||spankwirecams.com/?AFNO=$popup,domain=spankwire.com (easylist.txt: 51315) -.spankwirecams.com/\?AFNO= - -#ab2p-unblock-elem-R447 -{+client-header-tagger{ab2p-unblock-elem-R447} \ -} -# @@||doubleclick.net/ddm/ad/*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/$image,domain=speedtest.net (easylistchina+easylist.txt: 58720) -.doubleclick.net/ddm/ad/.*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/ -# @@||zdassets.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45917) -.zdassets.com -# @@||widget.uservoice.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45916) -.widget.uservoice.com -# @@||speedtest.zendesk.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45915) -.speedtest.zendesk.com -# @@||speedtest.net/globe_feed.php?$script,domain=speedtest.net (easylistchina+easylist.txt: 45903) -.speedtest.net/globe_feed\.php\? -# @@||google.com/coop/$script,domain=speedtest.net (easylistchina+easylist.txt: 45902) -.google.com/coop/ -# @@||beta.speedtest.net^$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45901) -.beta.speedtest.net -# @@||b.cdnst.net/dist/js/$script,domain=speedtest.net (easylistchina+easylist.txt: 45900) -.b.cdnst.net/dist/js/ -# @@||ads.ookla.com/www/test.js?$script,domain=speedtest.net (easylistchina+easylist.txt: 45899) -.ads.ookla.com/www/test\.js\? -# @@||doubleclick.net/ddm/ad/*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/$image,domain=speedtest.net (easylist.txt: 48235) -.doubleclick.net/ddm/ad/.*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/ -# @@||zdassets.com^$script,domain=speedtest.net (easylist.txt: 35432) -.zdassets.com -# @@||widget.uservoice.com^$script,domain=speedtest.net (easylist.txt: 35431) -.widget.uservoice.com -# @@||speedtest.zendesk.com^$script,domain=speedtest.net (easylist.txt: 35430) -.speedtest.zendesk.com -# @@||speedtest.net/globe_feed.php?$script,domain=speedtest.net (easylist.txt: 35418) -.speedtest.net/globe_feed\.php\? -# @@||google.com/coop/$script,domain=speedtest.net (easylist.txt: 35417) -.google.com/coop/ -# @@||beta.speedtest.net^$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35416) -.beta.speedtest.net -# @@||b.cdnst.net/dist/js/$script,domain=speedtest.net (easylist.txt: 35415) -.b.cdnst.net/dist/js/ -# @@||ads.ookla.com/www/test.js?$script,domain=speedtest.net (easylist.txt: 35414) -.ads.ookla.com/www/test\.js\? - -#ab2p-unblock-elem-R1661 -{+client-header-tagger{ab2p-unblock-elem-R1661} \ -} -# @@/ads/popudner/banner.jpg?$domain=spinandw.in (easylistchina+easylist.txt: 59918) -/(.*/)?ads/popudner/banner\.jpg\? -# @@/ads/popudner/banner.jpg?$domain=spinandw.in (easylist.txt: 49433) -/(.*/)?ads/popudner/banner\.jpg\? - -#ab2p-unblock-elem-R1662 -{+client-header-tagger{ab2p-unblock-elem-R1662} \ -} -# @@||spoilertv.com^$script,domain=spoilertv.com (easylistchina+easylist.txt: 60761) -.spoilertv.com -# @@||ads.intergi.com^$script,domain=spoilertv.com (easylistchina+easylist.txt: 60012) -.ads.intergi.com -# @@||spoilertv.com^$script,domain=spoilertv.com (easylist.txt: 50276) -.spoilertv.com -# @@||ads.intergi.com^$script,domain=spoilertv.com (easylist.txt: 49527) -.ads.intergi.com - -#ab2p-unblock-elem-R1663 -{+client-header-tagger{ab2p-unblock-elem-R1663} \ -} -# @@://ads.$popup,domain=sports.ru (advblock.txt: 7217) -/.*://ads\. -ads.*. - -#ab2p-unblock-elem-R1664 -{+client-header-tagger{ab2p-unblock-elem-R1664} \ -} -# @@||mgid.com/s/p/*.js?$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 60522) -.mgid.com/s/p/.*\.js\? -# @@||static.eplayer.performgroup.com^$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46039) -.static.eplayer.performgroup.com -# @@||smimg.net^$image,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46037) -.smimg.net -# @@||images.performgroup.com^$image,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46000) -.images.performgroup.com -# @@||d1naemzkka1n8z.cloudfront.net^$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 45970) -.d1naemzkka1n8z.cloudfront.net -# @@||addnow.com/widget/addnow.js$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 45941) -.addnow.com/widget/addnow\.js -# @@||mgid.com/s/p/*.js?$script,domain=sportsmole.co.uk (easylist.txt: 50037) -.mgid.com/s/p/.*\.js\? -# @@||static.eplayer.performgroup.com^$script,domain=sportsmole.co.uk (easylist.txt: 35554) -.static.eplayer.performgroup.com -# @@||smimg.net^$image,domain=sportsmole.co.uk (easylist.txt: 35552) -.smimg.net -# @@||images.performgroup.com^$image,domain=sportsmole.co.uk (easylist.txt: 35515) -.images.performgroup.com -# @@||d1naemzkka1n8z.cloudfront.net^$script,domain=sportsmole.co.uk (easylist.txt: 35485) -.d1naemzkka1n8z.cloudfront.net -# @@||addnow.com/widget/addnow.js$script,domain=sportsmole.co.uk (easylist.txt: 35456) -.addnow.com/widget/addnow\.js - -#ab2p-unblock-elem-R1665 -{+client-header-tagger{ab2p-unblock-elem-R1665} \ -} -# @@||video.unrulymedia.com^$script,subdocument,domain=springstreetads.com (easylistchina+easylist.txt: 60865) -.video.unrulymedia.com -# @@||video.unrulymedia.com^$script,subdocument,domain=springstreetads.com (easylist.txt: 50380) -.video.unrulymedia.com - -#ab2p-unblock-elem-R1666 -{+client-header-tagger{ab2p-unblock-elem-R1666} \ -} -# @@||googlesyndication.com/pagead/images/$domain=spruto.tv (advblock.txt: 7570) -.googlesyndication.com/pagead/images/ - -#ab2p-unblock-elem-R1667 -{+client-header-tagger{ab2p-unblock-elem-R1667} \ -} -# @@||staircase.pl/wp-content/*/adwords.jpg$domain=staircase.pl (easylistchina+easylist.txt: 61121) -.staircase.pl/wp-content/.*/adwords\.jpg -# @@||staircase.pl/wp-content/*/adwords.jpg$domain=staircase.pl (easylist.txt: 50636) -.staircase.pl/wp-content/.*/adwords\.jpg - -#ab2p-unblock-elem-R1668 -{+client-header-tagger{ab2p-unblock-elem-R1668} \ -} -# @@||zedo.com/swf/$domain=startv.in (easylistchina+easylist.txt: 59875) -.zedo.com/swf/ -# @@||zedo.com/swf/$domain=startv.in (easylist.txt: 49390) -.zedo.com/swf/ - -#ab2p-unblock-elem-R1669 -{+client-header-tagger{ab2p-unblock-elem-R1669} \ -} -# @@||adap.tv/redir/plugins/*/adotubeplugin.swf?$domain=stickam.com (easylistchina+easylist.txt: 58184) -.adap.tv/redir/plugins/.*/adotubeplugin\.swf\? -# @@||adap.tv/redir/plugins/*/adotubeplugin.swf?$domain=stickam.com (easylist.txt: 47699) -.adap.tv/redir/plugins/.*/adotubeplugin\.swf\? - -#ab2p-unblock-elem-R451 -{+client-header-tagger{ab2p-unblock-elem-R451} \ -} -# @@||stopgame.ru/www/images/$image,domain=stopgame.ru (advblock.txt: 7401) -.stopgame.ru/www/images/ -# @@||stopgame.ru/www/delivery/ck.php?$subdocument,domain=stopgame.ru (advblock.txt: 7400) -.stopgame.ru/www/delivery/ck\.php\? -# @@||stopgame.ru/www/delivery/afr.php?*&target=_top&$subdocument,domain=stopgame.ru (advblock.txt: 7399) -.stopgame.ru/www/delivery/afr\.php\?.*&target=_top& - -#ab2p-unblock-elem-R1670 -{+client-header-tagger{ab2p-unblock-elem-R1670} \ -} -# @@/fuckadblock.js$script,domain=stopgame.ru|xn--b1ajehof.xn--80asehdb|蟹胁芯薪泻懈.芯薪谢邪泄薪 (advblock.txt: 7536) -/(.*/)?fuckadblock\.js -fuckadblock.js*. - -#ab2p-unblock-elem-R1671 -{+client-header-tagger{ab2p-unblock-elem-R1671} \ -} -# @@||shopify.com^$image,third-party,domain=store.explosm.net (easylistchina+easylist.txt: 46036) -.shopify.com -# @@||shopify.com^$image,third-party,domain=store.explosm.net (easylist.txt: 35551) -.shopify.com - -#ab2p-unblock-elem-R1672 -{+client-header-tagger{ab2p-unblock-elem-R1672} \ -} -# @@/ads.js?callback$xmlhttprequest,domain=stream.1tv.ru (advblock.txt: 7187) -/(.*/)?ads\.js\?callback - -#ab2p-unblock-elem-R1673 -{+client-header-tagger{ab2p-unblock-elem-R1673} \ -} -# @@||track.adform.net/serving/scripts/trackpoint/$script,domain=strokekampanjen.se|tigerofsweden.com (easylistchina+easylist.txt: 59682) -.track.adform.net/serving/scripts/trackpoint/ -# @@||track.adform.net/serving/scripts/trackpoint/$script,domain=strokekampanjen.se|tigerofsweden.com (easylist.txt: 49197) -.track.adform.net/serving/scripts/trackpoint/ - -#ab2p-unblock-elem-R1674 -{+client-header-tagger{ab2p-unblock-elem-R1674} \ -} -# @@||pornomovies.com/js/1/ads-1.js$domain=submityourflicks.com (easylistchina+easylist.txt: 61771) -.pornomovies.com/js/1/ads-1\.js -# @@||pornomovies.com/js/1/ads-1.js$domain=submityourflicks.com (easylist.txt: 51286) -.pornomovies.com/js/1/ads-1\.js - -#ab2p-unblock-elem-R1675 -{+client-header-tagger{ab2p-unblock-elem-R1675} \ -} -# @@||ads.sudpresse.be^$popup,domain=sudinfo.be (easylistchina+easylist.txt: 61399) -.ads.sudpresse.be -# @@||ads.sudpresse.be^$popup,domain=sudinfo.be (easylist.txt: 50914) -.ads.sudpresse.be - -#ab2p-unblock-elem-R1676 -{+client-header-tagger{ab2p-unblock-elem-R1676} \ -} -# @@||sulekhalive.com/images/property/bannerads/$domain=sulekha.com (easylistchina+easylist.txt: 59602) -.sulekhalive.com/images/property/bannerads/ -# @@||sulekhalive.com/images/property/bannerads/$domain=sulekha.com (easylist.txt: 49117) -.sulekhalive.com/images/property/bannerads/ - -#ab2p-unblock-elem-R1677 -{+client-header-tagger{ab2p-unblock-elem-R1677} \ -} -# @@||sundaysportclassifieds.com/ads/$image,domain=sundaysportclassifieds.co.uk (easylistchina+easylist.txt: 61462) -.sundaysportclassifieds.com/ads/ -# @@||sundaysportclassifieds.com/ads/$image,domain=sundaysportclassifieds.co.uk (easylist.txt: 50977) -.sundaysportclassifieds.com/ads/ - -#ab2p-unblock-elem-R1678 -{+client-header-tagger{ab2p-unblock-elem-R1678} \ -} -# @@||cdn.supercheats.com^$script,domain=supercheats.com (easylistchina+easylist.txt: 45957) -.cdn.supercheats.com -# @@||cdn.supercheats.com^$script,domain=supercheats.com (easylist.txt: 35472) -.cdn.supercheats.com - -#ab2p-unblock-elem-R1679 -{+client-header-tagger{ab2p-unblock-elem-R1679} \ -} -# @@||superfilm.pl^$script,domain=superfilm.pl (easylistchina+easylist.txt: 60778) -.superfilm.pl -# @@||superfilm.pl^$script,domain=superfilm.pl (easylist.txt: 50293) -.superfilm.pl - -#ab2p-unblock-elem-R1680 -{+client-header-tagger{ab2p-unblock-elem-R1680} \ -} -# @@||ssacdn.com/banners/$domain=supersonicads.com (easylistchina+easylist.txt: 59581) -.ssacdn.com/banners/ -# @@||ssacdn.com/banners/$domain=supersonicads.com (easylist.txt: 49096) -.ssacdn.com/banners/ - -#ab2p-unblock-elem-R1681 -{+client-header-tagger{ab2p-unblock-elem-R1681} \ -} -# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina+easylist.txt: 10474) -.googletagmanager.com/gtm\.js\? -# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina+easylist.txt: 10473) -.google-analytics.com/plugins/ua/linkid\.js - -#ab2p-unblock-elem-R1682 -{+client-header-tagger{ab2p-unblock-elem-R1682} \ -} -# @@||adriver.ru/cgi-bin/click.cgi?$subdocument,domain=surfingbird.com|surfingbird.ru (advblock.txt: 7230) -.adriver.ru/cgi-bin/click\.cgi\? - -#ab2p-unblock-elem-R1683 -{+client-header-tagger{ab2p-unblock-elem-R1683} \ -} -# @@||cdn-surfline.com/ads/VolcomSurflinePlayerHo13.jpg$domain=surfline.com (easylistchina+easylist.txt: 60141) -.cdn-surfline.com/ads/VolcomSurflinePlayerHo13\.jpg -# @@||247realmedia.com/RealMedia/ads/Creatives/default/empty.gif$image,domain=surfline.com (easylistchina+easylist.txt: 59963) -.247realmedia.com/RealMedia/ads/Creatives/default/empty\.gif -# @@||cdn-surfline.com/ads/VolcomSurflinePlayerHo13.jpg$domain=surfline.com (easylist.txt: 49656) -.cdn-surfline.com/ads/VolcomSurflinePlayerHo13\.jpg -# @@||247realmedia.com/RealMedia/ads/Creatives/default/empty.gif$image,domain=surfline.com (easylist.txt: 49478) -.247realmedia.com/RealMedia/ads/Creatives/default/empty\.gif - -#ab2p-unblock-elem-R1684 -{+client-header-tagger{ab2p-unblock-elem-R1684} \ -} -# @@||swatch.com//images/*teaser$domain=swatch.com (advblock.txt: 7402) - -#ab2p-unblock-elem-R1685 -{+client-header-tagger{ab2p-unblock-elem-R1685} \ -} -# @@||keyrun.cn^$script,domain=sx566.com (easylistchina+easylist.txt: 10294) -.keyrun.cn - -#ab2p-unblock-elem-R1686 -{+client-header-tagger{ab2p-unblock-elem-R1686} \ -} -# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina+easylist.txt: 10385) -.szhr.com.cn - -#ab2p-unblock-elem-R1687 -{+client-header-tagger{ab2p-unblock-elem-R1687} \ -} -# @@||tableterra.ru/wp-content/uploads/*/*/*-*x*.$image,domain=tableterra.ru (advblock.txt: 7403) -.tableterra.ru/wp-content/uploads/.*/.*/.*-.*x.*\. - -#ab2p-unblock-elem-R1688 -{+client-header-tagger{ab2p-unblock-elem-R1688} \ -} -# @@||tagline.ru/img/favicons_top100_$image,domain=tagline.ru (advblock.txt: 7404) -.tagline.ru/img/favicons_top100_ - -#ab2p-unblock-elem-R1689 -{+client-header-tagger{ab2p-unblock-elem-R1689} \ -} -# @@||jtvnw.net/widgets/jtv_player.*&referer=http://talkrtv.com/ad/channel.php?$object,domain=talkrtv.com (easylistchina+easylist.txt: 59051) -.jtvnw.net/widgets/jtv_player\..*&referer=http://talkrtv\.com/ad/channel\.php\? -# @@||jtvnw.net/widgets/jtv_player.*&referer=http://talkrtv.com/ad/channel.php?$object,domain=talkrtv.com (easylist.txt: 48566) -.jtvnw.net/widgets/jtv_player\..*&referer=http://talkrtv\.com/ad/channel\.php\? - -#ab2p-unblock-elem-R1690 -{+client-header-tagger{ab2p-unblock-elem-R1690} \ -} -# @@||revealads.appspot.com/revealads2/radioplayer.js$domain=talksport.co.uk (easylistchina+easylist.txt: 59457) -.revealads.appspot.com/revealads2/radioplayer\.js -# @@||revealads.appspot.com/revealads2/radioplayer.js$domain=talksport.co.uk (easylist.txt: 48972) -.revealads.appspot.com/revealads2/radioplayer\.js - -#ab2p-unblock-elem-R1691 -{+client-header-tagger{ab2p-unblock-elem-R1691} \ -} -# @@||aka-cdn-ns.adtech.de^*.flv$domain=talksport.co.uk|tv3.ie (easylistchina+easylist.txt: 60969) -.aka-cdn-ns.adtech.de/.*\.flv -# @@||aka-cdn-ns.adtech.de^*.flv$domain=talksport.co.uk|tv3.ie (easylist.txt: 50484) -.aka-cdn-ns.adtech.de/.*\.flv - -#ab2p-unblock-elem-R1692 -{+client-header-tagger{ab2p-unblock-elem-R1692} \ -} -# @@||alimama.com^$domain=tanx.com (easylistchina+easylist.txt: 10167) -.alimama.com -# @@/adx.$domain=tanx.com (easylistchina+easylist.txt: 10026) -/(.*/)?adx\. -adx.*. - -#ab2p-unblock-elem-R1693 -{+client-header-tagger{ab2p-unblock-elem-R1693} \ -} -# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina+easylist.txt: 10479) -.opehs.tanx.com/ex\? -# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina+easylist.txt: 10470) -.ecpm.tanx.com/ex\? - -#ab2p-unblock-elem-R1694 -{+client-header-tagger{ab2p-unblock-elem-R1694} \ -} -# @@/index.php/adhandler/|$subdocument,domain=tapochek.net (advblock.txt: 7539) -/(.*/)?index\.php/adhandler/$ -/index.php/adhandler -index.php/adhandler/$ - -#ab2p-unblock-elem-R1695 -{+client-header-tagger{ab2p-unblock-elem-R1695} \ -} -# @@||target.122.2o7.net/b/ss/*_300x250_$image,domain=target.com (easylistchina+easylist.txt: 61371) -.target.122.2o7.net/b/ss/.*_300x250_ -# @@||target.122.2o7.net/b/ss/*_300x250_$image,domain=target.com (easylist.txt: 50886) -.target.122.2o7.net/b/ss/.*_300x250_ - -#ab2p-unblock-elem-R1696 -{+client-header-tagger{ab2p-unblock-elem-R1696} \ -} -# @@||tatler.ru/resize_*_320x250_$domain=tatler.ru (advblock.txt: 7405) -.tatler.ru/resize_.*_320x250_ - -#ab2p-unblock-elem-R458 -{+client-header-tagger{ab2p-unblock-elem-R458} \ -} -# @@||ads.tbs.com/html.ng/site=*600x400_$domain=tbs.com (easylistchina+easylist.txt: 58267) -.ads.tbs.com/html\.ng/site=.*600x400_ -# @@||ads.tbs.com/html.ng/site=*600x400_$domain=tbs.com (easylist.txt: 47782) -.ads.tbs.com/html\.ng/site=.*600x400_ - -#ab2p-unblock-elem-R1697 -{+client-header-tagger{ab2p-unblock-elem-R1697} \ -} -# @@||dailymotion.com/embed/video/$subdocument,domain=team-vitality.fr (easylistchina+easylist.txt: 60196) -.dailymotion.com/embed/video/ -# @@||dailymotion.com/embed/video/$subdocument,domain=team-vitality.fr (easylist.txt: 49711) -.dailymotion.com/embed/video/ - -#ab2p-unblock-elem-R1698 -{+client-header-tagger{ab2p-unblock-elem-R1698} \ -} -# @@||teamcococdn.com^*/AdManager_*.swf?$object-subrequest,domain=teamcoco.com (easylistchina+easylist.txt: 59625) -.teamcococdn.com/.*/AdManager_.*\.swf\? -# @@||teamcococdn.com^*/AdManager_*.swf?$object-subrequest,domain=teamcoco.com (easylist.txt: 49140) -.teamcococdn.com/.*/AdManager_.*\.swf\? - -#ab2p-unblock-elem-R1699 -{+client-header-tagger{ab2p-unblock-elem-R1699} \ -} -# @@||ign.com/js.ng/size=headermainad&site=teamxbox$script,domain=teamxbox.com (easylistchina+easylist.txt: 58972) -.ign.com/js\.ng/size=headermainad&site=teamxbox -# @@||ign.com/js.ng/size=headermainad&site=teamxbox$script,domain=teamxbox.com (easylist.txt: 48487) -.ign.com/js\.ng/size=headermainad&site=teamxbox - -#ab2p-unblock-elem-R1700 -{+client-header-tagger{ab2p-unblock-elem-R1700} \ -} -# @@||ads.tw.adsonar.com/adserving/getAdsAPI.jsp?callback=aslHandleAds*&c=aslHandleAds*&key=$script,domain=techcrunch.com (easylistchina+easylist.txt: 59881) -.ads.tw.adsonar.com/adserving/getAdsAPI\.jsp\?callback=aslHandleAds.*&c=aslHandleAds.*&key= -# @@||tctechcrunch2011.files.wordpress.com^$image,domain=techcrunch.com (easylistchina+easylist.txt: 59624) -.tctechcrunch2011.files.wordpress.com -# @@||ads.tw.adsonar.com/adserving/getAdsAPI.jsp?callback=aslHandleAds*&c=aslHandleAds*&key=$script,domain=techcrunch.com (easylist.txt: 49396) -.ads.tw.adsonar.com/adserving/getAdsAPI\.jsp\?callback=aslHandleAds.*&c=aslHandleAds.*&key= -# @@||tctechcrunch2011.files.wordpress.com^$image,domain=techcrunch.com (easylist.txt: 49139) -.tctechcrunch2011.files.wordpress.com - -#ab2p-unblock-elem-R1701 -{+client-header-tagger{ab2p-unblock-elem-R1701} \ -} -# @@||adserver.adtechus.com/addyn/$script,domain=teletoon.com (easylistchina+easylist.txt: 58291) -.adserver.adtechus.com/addyn/ -# @@||adserver.adtechus.com/addyn/$script,domain=teletoon.com (easylist.txt: 47806) -.adserver.adtechus.com/addyn/ - -#ab2p-unblock-elem-R1702 -{+client-header-tagger{ab2p-unblock-elem-R1702} \ -} -# @@||adtechus.com/apps/$image,domain=teletoon.com|walmart.ca (easylistchina+easylist.txt: 58320) -.adtechus.com/apps/ -# @@||adtechus.com/apps/$image,domain=teletoon.com|walmart.ca (easylist.txt: 47835) -.adtechus.com/apps/ - -#ab2p-unblock-elem-R1703 -{+client-header-tagger{ab2p-unblock-elem-R1703} \ -} -# @@||trrsf.com.br^*/admanager.js$domain=terra.com.br (easylistchina+easylist.txt: 61134) -.trrsf.com.br/.*/admanager\.js -# @@||trrsf.com.br^*/admanager.js$domain=terra.com.br (easylist.txt: 50649) -.trrsf.com.br/.*/admanager\.js - -#ab2p-unblock-elem-R1704 -{+client-header-tagger{ab2p-unblock-elem-R1704} \ -} -# @@||fwmrm.net/ad/g/1?prof=$script,domain=testtube.com (easylistchina+easylist.txt: 60318) -.fwmrm.net/ad/g/1\?prof= -# @@||fwmrm.net/ad/g/1?prof=$script,domain=testtube.com (easylist.txt: 49833) -.fwmrm.net/ad/g/1\?prof= - -#ab2p-unblock-elem-R1705 -{+client-header-tagger{ab2p-unblock-elem-R1705} \ -} -# @@||lamcdn.net/www.the-village.ru/gui/advert-$script,domain=the-village.ru (advblock.txt: 7578) -.lamcdn.net/www\.the-village\.ru/gui/advert- - -#ab2p-unblock-elem-R1706 -{+client-header-tagger{ab2p-unblock-elem-R1706} \ -} -# @@||fmpub.net/site/$domain=theawl.com (easylistchina+easylist.txt: 58831) -.fmpub.net/site/ -# @@||fmpub.net/site/$domain=theawl.com (easylist.txt: 48346) -.fmpub.net/site/ - -#ab2p-unblock-elem-R464 -{+client-header-tagger{ab2p-unblock-elem-R464} \ -} -# @@||kaltura.com^$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 46006) -.kaltura.com -# @@||api.iris.tv/watch?$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45948) -.api.iris.tv/watch\? -# @@||amazonaws.com/iris-player/iris.js$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45945) -.amazonaws.com/iris-player/iris\.js -# @@||amazonaws.com/cdn.jukeboxu.com/kaltura/kaltura_related.js$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45944) -.amazonaws.com/cdn\.jukeboxu\.com/kaltura/kaltura_related\.js -# @@||kaltura.com^$script,third-party,domain=thechive.com (easylist.txt: 35521) -.kaltura.com -# @@||api.iris.tv/watch?$script,third-party,domain=thechive.com (easylist.txt: 35463) -.api.iris.tv/watch\? -# @@||amazonaws.com/iris-player/iris.js$script,third-party,domain=thechive.com (easylist.txt: 35460) -.amazonaws.com/iris-player/iris\.js -# @@||amazonaws.com/cdn.jukeboxu.com/kaltura/kaltura_related.js$script,third-party,domain=thechive.com (easylist.txt: 35459) -.amazonaws.com/cdn\.jukeboxu\.com/kaltura/kaltura_related\.js - -#ab2p-unblock-elem-R1707 -{+client-header-tagger{ab2p-unblock-elem-R1707} \ -} -# @@||thedoujin.com/includes/ads/$subdocument,domain=thedoujin.com (easylistchina+easylist.txt: 59635) -.thedoujin.com/includes/ads/ -# @@||thedoujin.com/includes/ads/$subdocument,domain=thedoujin.com (easylist.txt: 49150) -.thedoujin.com/includes/ads/ - -#ab2p-unblock-elem-R1708 -{+client-header-tagger{ab2p-unblock-elem-R1708} \ -} -# @@||video.unrulymedia.com/wildfire_$script,domain=theemptynestexpress.com (easylistchina+easylist.txt: 59760) -.video.unrulymedia.com/wildfire_ -# @@||video.unrulymedia.com/iframe_$subdocument,domain=theemptynestexpress.com (easylistchina+easylist.txt: 59759) -.video.unrulymedia.com/iframe_ -# @@||video.unrulymedia.com/wildfire_$script,domain=theemptynestexpress.com (easylist.txt: 49275) -.video.unrulymedia.com/wildfire_ -# @@||video.unrulymedia.com/iframe_$subdocument,domain=theemptynestexpress.com (easylist.txt: 49274) -.video.unrulymedia.com/iframe_ - -#ab2p-unblock-elem-R1709 -{+client-header-tagger{ab2p-unblock-elem-R1709} \ -} -# @@||files.bannersnack.com/iframe/embed.html?$subdocument,domain=thegayuk.com (easylistchina+easylist.txt: 60284) -.files.bannersnack.com/iframe/embed\.html\? -# @@||files.bannersnack.com/iframe/embed.html?$subdocument,domain=thegayuk.com (easylist.txt: 49799) -.files.bannersnack.com/iframe/embed\.html\? - -#ab2p-unblock-elem-R1710 -{+client-header-tagger{ab2p-unblock-elem-R1710} \ -} -# @@||tnwcdn.com/wp-content/*/files/*/advertising.$image,domain=thenextweb.com (easylistchina+easylist.txt: 59673) -.tnwcdn.com/wp-content/.*/files/.*/advertising\. -# @@||tnwcdn.com/wp-content/*/files/*/advertising-$image,domain=thenextweb.com (easylistchina+easylist.txt: 59672) -.tnwcdn.com/wp-content/.*/files/.*/advertising- -# @@||tnwcdn.com/wp-content/*/files/*/advertising.$image,domain=thenextweb.com (easylist.txt: 49188) -.tnwcdn.com/wp-content/.*/files/.*/advertising\. -# @@||tnwcdn.com/wp-content/*/files/*/advertising-$image,domain=thenextweb.com (easylist.txt: 49187) -.tnwcdn.com/wp-content/.*/files/.*/advertising- - -#ab2p-unblock-elem-R1711 -{+client-header-tagger{ab2p-unblock-elem-R1711} \ -} -# @@||thesimsresource.com^$script,domain=thesimsresource.com (easylistchina+easylist.txt: 60799) -.thesimsresource.com -# @@||cloudfront.net/ads.js$domain=thesimsresource.com (easylistchina+easylist.txt: 60166) -.cloudfront.net/ads\.js -# @@||amazonaws.com^$script,domain=thesimsresource.com (easylistchina+easylist.txt: 60056) -.amazonaws.com -# @@||thesimsresource.com^$script,domain=thesimsresource.com (easylist.txt: 50314) -.thesimsresource.com -# @@||cloudfront.net/ads.js$domain=thesimsresource.com (easylist.txt: 49681) -.cloudfront.net/ads\.js -# @@||amazonaws.com^$script,domain=thesimsresource.com (easylist.txt: 49571) -.amazonaws.com - -#ab2p-unblock-elem-R1712 -{+client-header-tagger{ab2p-unblock-elem-R1712} \ -} -# @@||thestreet-static.com/video/js/companionAdFunc.js$domain=thestreet.com (easylistchina+easylist.txt: 59649) -.thestreet-static.com/video/js/companionAdFunc\.js -# @@||ads.pointroll.com/PortalServe/?pid=$xmlhttprequest,domain=thestreet.com (easylistchina+easylist.txt: 58258) -.ads.pointroll.com/PortalServe/\?pid= -# @@||thestreet-static.com/video/js/companionAdFunc.js$domain=thestreet.com (easylist.txt: 49164) -.thestreet-static.com/video/js/companionAdFunc\.js -# @@||ads.pointroll.com/PortalServe/?pid=$xmlhttprequest,domain=thestreet.com (easylist.txt: 47773) -.ads.pointroll.com/PortalServe/\?pid= - -#ab2p-unblock-elem-R467 -{+client-header-tagger{ab2p-unblock-elem-R467} \ -} -# @@||thisav.com/uploaded_banners/jw.swf$domain=thisav.com (easylistchina+easylist.txt: 61463) -.thisav.com/uploaded_banners/jw\.swf -# @@||thisav.com/uploaded_banners/jw.swf$domain=thisav.com (easylist.txt: 50978) -.thisav.com/uploaded_banners/jw\.swf - -#ab2p-unblock-elem-R1713 -{+client-header-tagger{ab2p-unblock-elem-R1713} \ -} -# @@||doubleclick.net/adj/cm.tim/*;cmpos=$script,domain=time.com (easylistchina+easylist.txt: 58708) -.doubleclick.net/adj/cm\.tim/.*;cmpos= -# @@||doubleclick.net/adj/cm.tim/*;cmpos=$script,domain=time.com (easylist.txt: 48223) -.doubleclick.net/adj/cm\.tim/.*;cmpos= - -#ab2p-unblock-elem-R1714 -{+client-header-tagger{ab2p-unblock-elem-R1714} \ -} -# @@||tjournal.ru/*/adfox.$script,domain=tjournal.ru (advblock.txt: 7409) -.tjournal.ru/.*/adfox\. -# @@||an.yandex.ru/meta/$script,domain=tjournal.ru (advblock.txt: 7263) -.an.yandex.ru/meta/ - -#ab2p-unblock-elem-R1715 -{+client-header-tagger{ab2p-unblock-elem-R1715} \ -} -# @@||an.yandex.ru/system/context.js$domain=tjournal.ru|tvigle.ru (advblock.txt: 7265) -.an.yandex.ru/system/context\.js -# @@||an.yandex.ru/resource/context_static_$script,domain=tjournal.ru|tvigle.ru (advblock.txt: 7264) -.an.yandex.ru/resource/context_static_ - -#ab2p-unblock-elem-R1716 -{+client-header-tagger{ab2p-unblock-elem-R1716} \ -} -# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina+easylist.txt: 10046) -/(.*/)?img_ad/.* - -#ab2p-unblock-elem-R473 -{+client-header-tagger{ab2p-unblock-elem-R473} \ -} -# @@||kaltura.com^*/doubleClickPlugin.swf$object-subrequest,domain=tmz.com (easylistchina+easylist.txt: 59053) -.kaltura.com/.*/doubleClickPlugin\.swf -# @@||kaltura.com^*/doubleClickPlugin.swf$object-subrequest,domain=tmz.com (easylist.txt: 48568) -.kaltura.com/.*/doubleClickPlugin\.swf - -#ab2p-unblock-elem-R1717 -{+client-header-tagger{ab2p-unblock-elem-R1717} \ -} -# @@||tnt-online.ru/*/adfox/$image,object,script,domain=tnt-online.ru (advblock.txt: 7410) -.tnt-online.ru/.*/adfox/ - -#ab2p-unblock-elem-R1718 -{+client-header-tagger{ab2p-unblock-elem-R1718} \ -} -# @@||turner.com^*/videoadrenderer.swf$domain=tntdrama.com (easylistchina+easylist.txt: 59712) -.turner.com/.*/videoadrenderer\.swf -# @@||turner.com^*/videoadrenderer.swf$domain=tntdrama.com (easylist.txt: 49227) -.turner.com/.*/videoadrenderer\.swf - -#ab2p-unblock-elem-R1719 -{+client-header-tagger{ab2p-unblock-elem-R1719} \ -} -# @@||servebom.com/tmnhead.js$domain=tomsguide.com|tomshardware.com|wonderhowto.com (easylistchina+easylist.txt: 59516) -.servebom.com/tmnhead\.js -# @@||servebom.com/tmnhead.js$domain=tomsguide.com|tomshardware.com|wonderhowto.com (easylist.txt: 49031) -.servebom.com/tmnhead\.js - -#ab2p-unblock-elem-R1720 -{+client-header-tagger{ab2p-unblock-elem-R1720} \ -} -# @@||tradedoubler.com/anet?type(iframe)loc($subdocument,domain=topzone.lt (easylistchina+easylist.txt: 60813) -.tradedoubler.com/anet\?type\(iframe\)loc\( -# @@||tradedoubler.com/anet?type(iframe)loc($subdocument,domain=topzone.lt (easylist.txt: 50328) -.tradedoubler.com/anet\?type\(iframe\)loc\( - -#ab2p-unblock-elem-R1721 -{+client-header-tagger{ab2p-unblock-elem-R1721} \ -} -# @@||marketgid.com^$domain=tovarro.com (advblock.txt: 7332) -.marketgid.com - -#ab2p-unblock-elem-R1722 -{+client-header-tagger{ab2p-unblock-elem-R1722} \ -} -# @@||alipromo.com/rotator/auto/$script,domain=trackitonline.ru (advblock.txt: 7557) -.alipromo.com/rotator/auto/ - -#ab2p-unblock-elem-R1723 -{+client-header-tagger{ab2p-unblock-elem-R1723} \ -} -# @@||adriver.ru/cgi-bin/rle.cgi?$domain=transaero.ru (advblock.txt: 7234) -.adriver.ru/cgi-bin/rle\.cgi\? - -#ab2p-unblock-elem-R1724 -{+client-header-tagger{ab2p-unblock-elem-R1724} \ -} -# @@||travelocity.com/js.ng/$script,domain=travelocity.com (easylistchina+easylist.txt: 59694) -.travelocity.com/js\.ng/ -# @@||travelocity.com/html.ng/*558x262$domain=travelocity.com (easylistchina+easylist.txt: 59693) -.travelocity.com/html\.ng/.*558x262 -# @@||travelocity.com/event.ng/*click$domain=travelocity.com (easylistchina+easylist.txt: 59692) -.travelocity.com/event\.ng/.*click -# @@||travelocity.com/js.ng/$script,domain=travelocity.com (easylist.txt: 49209) -.travelocity.com/js\.ng/ -# @@||travelocity.com/html.ng/*558x262$domain=travelocity.com (easylist.txt: 49208) -.travelocity.com/html\.ng/.*558x262 -# @@||travelocity.com/event.ng/*click$domain=travelocity.com (easylist.txt: 49207) -.travelocity.com/event\.ng/.*click - -#ab2p-unblock-elem-R1725 -{+client-header-tagger{ab2p-unblock-elem-R1725} \ -} -# @@||intentmedia.net/javascripts/$script,domain=travelzoo.com (easylistchina+easylist.txt: 59027) -.intentmedia.net/javascripts/ -# @@||intentmedia.net/adServer/$script,xmlhttprequest,domain=travelzoo.com (easylistchina+easylist.txt: 59026) -.intentmedia.net/adServer/ -# @@||cdn.intentmedia.net^$image,script,domain=travelzoo.com (easylistchina+easylist.txt: 58567) -.cdn.intentmedia.net -# @@||intentmedia.net/javascripts/$script,domain=travelzoo.com (easylist.txt: 48542) -.intentmedia.net/javascripts/ -# @@||intentmedia.net/adServer/$script,xmlhttprequest,domain=travelzoo.com (easylist.txt: 48541) -.intentmedia.net/adServer/ -# @@||cdn.intentmedia.net^$image,script,domain=travelzoo.com (easylist.txt: 48082) -.cdn.intentmedia.net - -#ab2p-unblock-elem-R1726 -{+client-header-tagger{ab2p-unblock-elem-R1726} \ -} -# @@||tree.tv/images/ads.jpg|$image,domain=tree.tv (advblock.txt: 7603) -.tree.tv/images/ads\.jpg$ -# @@||mxpopad.com^$script,domain=tree.tv (advblock.txt: 7587) -.mxpopad.com -# @@||mtrcss.com^$script,xmlhttprequest,domain=tree.tv (advblock.txt: 7586) -.mtrcss.com -# @@||admixer.net/scriptlib/$script,domain=tree.tv (advblock.txt: 7553) -.admixer.net/scriptlib/ -# @@||admixer.net/getresponse.js?$script,domain=tree.tv (advblock.txt: 7552) -.admixer.net/getresponse\.js\? - -#ab2p-unblock-elem-R1727 -{+client-header-tagger{ab2p-unblock-elem-R1727} \ -} -# @@||tripit.com/js/components/popover.js?$domain=tripit.com (advblock.txt: 7413) -.tripit.com/js/components/popover\.js\? - -#ab2p-unblock-elem-R1728 -{+client-header-tagger{ab2p-unblock-elem-R1728} \ -} -# @@||player.cdn.targetspot.com/ts_embed_functions_as3.php$domain=tritonmedia.com (easylistchina+easylist.txt: 59386) -.player.cdn.targetspot.com/ts_embed_functions_as3\.php -# @@||player.cdn.targetspot.com/ts_embed_functions_as3.php$domain=tritonmedia.com (easylist.txt: 48901) -.player.cdn.targetspot.com/ts_embed_functions_as3\.php - -#ab2p-unblock-elem-R1729 -{+client-header-tagger{ab2p-unblock-elem-R1729} \ -} -# @@||ipcdigital.co.uk^*/adtech.js$domain=trustedreviews.com (easylistchina+easylist.txt: 59034) -.ipcdigital.co.uk/.*/adtech\.js -# @@||ipcdigital.co.uk^*/adloader.js?$domain=trustedreviews.com (easylistchina+easylist.txt: 59033) -.ipcdigital.co.uk/.*/adloader\.js\? -# @@||ipcdigital.co.uk^*/adtech.js$domain=trustedreviews.com (easylist.txt: 48549) -.ipcdigital.co.uk/.*/adtech\.js -# @@||ipcdigital.co.uk^*/adloader.js?$domain=trustedreviews.com (easylist.txt: 48548) -.ipcdigital.co.uk/.*/adloader\.js\? - -#ab2p-unblock-elem-R1730 -{+client-header-tagger{ab2p-unblock-elem-R1730} \ -} -# @@||tube8live.com/?AFNO=$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61805) -.tube8live.com/\?AFNO= -# @@||t8premium.com/track/*/join?$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61804) -.t8premium.com/track/.*/join\? -# @@||t8premium.com/signup/signup.php?$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61803) -.t8premium.com/signup/signup\.php\? -# @@||contentabc.com/ads?spot_id=$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61791) -.contentabc.com/ads\?spot_id= -# @@||tube8live.com/?AFNO=$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51320) -.tube8live.com/\?AFNO= -# @@||t8premium.com/track/*/join?$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51319) -.t8premium.com/track/.*/join\? -# @@||t8premium.com/signup/signup.php?$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51318) -.t8premium.com/signup/signup\.php\? -# @@||contentabc.com/ads?spot_id=$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51306) -.contentabc.com/ads\?spot_id= - -#ab2p-unblock-elem-R1731 -{+client-header-tagger{ab2p-unblock-elem-R1731} \ -} -# @@||tmoncdn.com/scripts/advertisement.js$domain=tubemonsoon.com (easylistchina+easylist.txt: 61778) -.tmoncdn.com/scripts/advertisement\.js -# @@||tmoncdn.com/scripts/advertisement.js$domain=tubemonsoon.com (easylist.txt: 51293) -.tmoncdn.com/scripts/advertisement\.js - -#ab2p-unblock-elem-R1732 -{+client-header-tagger{ab2p-unblock-elem-R1732} \ -} -# @@||turbogenerator.info^$script,domain=turbogenerator.info (easylistchina+easylist.txt: 60817) -.turbogenerator.info -# @@||turbogenerator.info^$script,domain=turbogenerator.info (easylist.txt: 50332) -.turbogenerator.info - -#ab2p-unblock-elem-R1733 -{+client-header-tagger{ab2p-unblock-elem-R1733} \ -} -# @@||turbovideos.net^$script,domain=turbovideos.net (easylistchina+easylist.txt: 60818) -.turbovideos.net -# @@||turbovideos.net^$script,domain=turbovideos.net (easylist.txt: 50333) -.turbovideos.net - -#ab2p-unblock-elem-R1734 -{+client-header-tagger{ab2p-unblock-elem-R1734} \ -} -# @@||turkanime.tv/ads.html$subdocument,domain=turkanime.tv (easylistchina+easylist.txt: 60819) -.turkanime.tv/ads\.html -# @@||ads.ad4game.com/www/delivery/lg.php$subdocument,domain=turkanime.tv (easylistchina+easylist.txt: 60008) -.ads.ad4game.com/www/delivery/lg\.php -# @@||turkanime.tv/ads.html$subdocument,domain=turkanime.tv (easylist.txt: 50334) -.turkanime.tv/ads\.html -# @@||ads.ad4game.com/www/delivery/lg.php$subdocument,domain=turkanime.tv (easylist.txt: 49523) -.ads.ad4game.com/www/delivery/lg\.php - -#ab2p-unblock-elem-R1735 -{+client-header-tagger{ab2p-unblock-elem-R1735} \ -} -# @@||googlecode.com/files/google_ads.js$domain=turkdown.com (easylistchina+easylist.txt: 60363) -.googlecode.com/files/google_ads\.js -# @@||googlecode.com/files/google_ads.js$domain=turkdown.com (easylist.txt: 49878) -.googlecode.com/files/google_ads\.js - -#ab2p-unblock-elem-R1736 -{+client-header-tagger{ab2p-unblock-elem-R1736} \ -} -# @@||tut.by/*/ads1/*/params.php?uid=$object-subrequest,domain=tut.by (advblock.txt: 7414) -.tut.by/.*/ads1/.*/params\.php\?uid= - -#ab2p-unblock-elem-R1737 -{+client-header-tagger{ab2p-unblock-elem-R1737} \ -} -# @@||am15.net/bn$script,domain=tv-serial.org (advblock.txt: 7559) -.am15.net/bn -# @@||am10.ru/code.$domain=tv-serial.org (advblock.txt: 7558) -.am10.ru/code\. - -#ab2p-unblock-elem-R1738 -{+client-header-tagger{ab2p-unblock-elem-R1738} \ -} -# @@||mads.tv.com/mac-ad?META^$script,domain=tv.com (easylistchina+easylist.txt: 59124) -.mads.tv.com/mac-ad\?META[^\w%.-] -# @@||doubleclick.net/ad/can/tvcom/$object-subrequest,domain=tv.com (easylistchina+easylist.txt: 58693) -.doubleclick.net/ad/can/tvcom/ -# @@||mads.tv.com/mac-ad?META^$script,domain=tv.com (easylist.txt: 48639) -.mads.tv.com/mac-ad\?META[^\w%.-] -# @@||doubleclick.net/ad/can/tvcom/$object-subrequest,domain=tv.com (easylist.txt: 48208) -.doubleclick.net/ad/can/tvcom/ - -#ab2p-unblock-elem-R1739 -{+client-header-tagger{ab2p-unblock-elem-R1739} \ -} -# @@||v.fwmrm.net/|$object-subrequest,domain=tv10play.se|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 59742) -.v.fwmrm.net/$ -# @@||v.fwmrm.net/|$object-subrequest,domain=tv10play.se|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 49257) -.v.fwmrm.net/$ - -#ab2p-unblock-elem-R1740 -{+client-header-tagger{ab2p-unblock-elem-R1740} \ -} -# @@||feed.theplatform.com^*=adtech_$object-subrequest,domain=tv2.dk (easylistchina+easylist.txt: 61021) -.feed.theplatform.com/.*=adtech_ -# @@||adtech.de/?adrawdata/3.0/*;|$object-subrequest,domain=tv2.dk (easylistchina+easylist.txt: 60956) -.adtech.de/\?adrawdata/3\.0/.*;$ -# @@||feed.theplatform.com^*=adtech_$object-subrequest,domain=tv2.dk (easylist.txt: 50536) -.feed.theplatform.com/.*=adtech_ -# @@||adtech.de/?adrawdata/3.0/*;|$object-subrequest,domain=tv2.dk (easylist.txt: 50471) -.adtech.de/\?adrawdata/3\.0/.*;$ - -#ab2p-unblock-elem-R1741 -{+client-header-tagger{ab2p-unblock-elem-R1741} \ -} -# @@||emediate.se/eas_tag.1.0.js$domain=tv2.dk|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61016) -.emediate.se/eas_tag\.1\.0\.js -# @@||emediate.se/eas_tag.1.0.js$domain=tv2.dk|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50531) -.emediate.se/eas_tag\.1\.0\.js - -#ab2p-unblock-elem-R1742 -{+client-header-tagger{ab2p-unblock-elem-R1742} \ -} -# @@||adtech.panthercustomer.com^*.flv$domain=tv3.ie (easylistchina+easylist.txt: 60957) -.adtech.panthercustomer.com/.*\.flv -# @@||adtech.panthercustomer.com^*.flv$domain=tv3.ie (easylist.txt: 50472) -.adtech.panthercustomer.com/.*\.flv - -#ab2p-unblock-elem-R1743 -{+client-header-tagger{ab2p-unblock-elem-R1743} \ -} -# @@||adm.fwmrm.net/p/*/Video2AdRenderer.swf$object-subrequest,domain=tv3play.se|uktv.co.uk (easylistchina+easylist.txt: 59995) -.adm.fwmrm.net/p/.*/Video2AdRenderer\.swf -# @@||adm.fwmrm.net/p/*/Video2AdRenderer.swf$object-subrequest,domain=tv3play.se|uktv.co.uk (easylist.txt: 49510) -.adm.fwmrm.net/p/.*/Video2AdRenderer\.swf - -#ab2p-unblock-elem-R483 -{+client-header-tagger{ab2p-unblock-elem-R483} \ -} -# @@||videoplaza.tv/contrib/*/advertisement.js$domain=tv4play.se (easylistchina+easylist.txt: 60872) -.videoplaza.tv/contrib/.*/advertisement\.js -# @@||videoplaza.tv/contrib/*/advertisement.js$domain=tv4play.se (easylist.txt: 50387) -.videoplaza.tv/contrib/.*/advertisement\.js - -#ab2p-unblock-elem-R1744 -{+client-header-tagger{ab2p-unblock-elem-R1744} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina+easylist.txt: 10325) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||ads.$domain=tvb.com (easylistchina+easylist.txt: 10158) -.ads.*. - -#ab2p-unblock-elem-R484 -{+client-header-tagger{ab2p-unblock-elem-R484} \ -} -# @@||inskinad.com/isapadserver/ads.aspx?$script,domain=tvcatchup.com (easylistchina+easylist.txt: 59019) -.inskinad.com/isapadserver/ads\.aspx\? -# @@||inskin.vo.llnwd.net^*/preroll_$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 59018) -.inskin.vo.llnwd.net/.*/preroll_ -# @@||inskin.vo.llnwd.net^*/api/tvcatchup.js$domain=tvcatchup.com (easylistchina+easylist.txt: 59017) -.inskin.vo.llnwd.net/.*/api/tvcatchup\.js -# @@||inskin.vo.llnwd.net^*/api/tvcatchup-light.js$domain=tvcatchup.com (easylistchina+easylist.txt: 59016) -.inskin.vo.llnwd.net/.*/api/tvcatchup-light\.js -# @@||demo.inskinmedia.com^$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 58666) -.demo.inskinmedia.com -# @@||cdn.inskinmedia.com/isfe/4.1/swf/unitcontainer2.swf$domain=tvcatchup.com (easylistchina+easylist.txt: 58564) -.cdn.inskinmedia.com/isfe/4\.1/swf/unitcontainer2\.swf -# @@||cdn.inskinmedia.com/*inskinfiles/flvs/$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 58563) -.cdn.inskinmedia.com/.*inskinfiles/flvs/ -# @@||inskinad.com/isapadserver/ads.aspx?$script,domain=tvcatchup.com (easylist.txt: 48534) -.inskinad.com/isapadserver/ads\.aspx\? -# @@||inskin.vo.llnwd.net^*/preroll_$object-subrequest,domain=tvcatchup.com (easylist.txt: 48533) -.inskin.vo.llnwd.net/.*/preroll_ -# @@||inskin.vo.llnwd.net^*/api/tvcatchup.js$domain=tvcatchup.com (easylist.txt: 48532) -.inskin.vo.llnwd.net/.*/api/tvcatchup\.js -# @@||inskin.vo.llnwd.net^*/api/tvcatchup-light.js$domain=tvcatchup.com (easylist.txt: 48531) -.inskin.vo.llnwd.net/.*/api/tvcatchup-light\.js -# @@||demo.inskinmedia.com^$object-subrequest,domain=tvcatchup.com (easylist.txt: 48181) -.demo.inskinmedia.com -# @@||cdn.inskinmedia.com/isfe/4.1/swf/unitcontainer2.swf$domain=tvcatchup.com (easylist.txt: 48079) -.cdn.inskinmedia.com/isfe/4\.1/swf/unitcontainer2\.swf -# @@||cdn.inskinmedia.com/*inskinfiles/flvs/$object-subrequest,domain=tvcatchup.com (easylist.txt: 48078) -.cdn.inskinmedia.com/.*inskinfiles/flvs/ - -#ab2p-unblock-elem-R1745 -{+client-header-tagger{ab2p-unblock-elem-R1745} \ -} -# @@||content.reklamz.com/internethaber/SPOR_*.mp4$object-subrequest,domain=tvhaber.com (easylistchina+easylist.txt: 61000) -.content.reklamz.com/internethaber/SPOR_.*\.mp4 -# @@||content.reklamz.com/internethaber/SPOR_*.mp4$object-subrequest,domain=tvhaber.com (easylist.txt: 50515) -.content.reklamz.com/internethaber/SPOR_.*\.mp4 - -#ab2p-unblock-elem-R1746 -{+client-header-tagger{ab2p-unblock-elem-R1746} \ -} -# @@||adriver.ru/plugins/$script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7236) -.adriver.ru/plugins/ -# @@||adriver.ru/images/$image,script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7235) -.adriver.ru/images/ -# @@||adriver.ru/cgi-bin/merle.cgi?$script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7233) -.adriver.ru/cgi-bin/merle\.cgi\? - -#ab2p-unblock-elem-R1747 -{+client-header-tagger{ab2p-unblock-elem-R1747} \ -} -# @@||tvn.adocean.pl/files/js/ado.js$domain=tvn.pl|tvn24.pl (easylistchina+easylist.txt: 60830) -.tvn.adocean.pl/files/js/ado\.js -# @@||admin.brightcove.com^$object-subrequest,domain=tvn.pl|tvn24.pl (easylistchina+easylist.txt: 60000) -.admin.brightcove.com -# @@||tvn.adocean.pl/files/js/ado.js$domain=tvn.pl|tvn24.pl (easylist.txt: 50345) -.tvn.adocean.pl/files/js/ado\.js -# @@||admin.brightcove.com^$object-subrequest,domain=tvn.pl|tvn24.pl (easylist.txt: 49515) -.admin.brightcove.com - -#ab2p-unblock-elem-R1748 -{+client-header-tagger{ab2p-unblock-elem-R1748} \ -} -# @@||adocean.pl^*/ad.js?id=$script,domain=tvn24.pl (easylistchina+easylist.txt: 60004) -.adocean.pl/.*/ad\.js\?id= -# @@||adocean.pl^*/ad.js?id=$script,domain=tvn24.pl (easylist.txt: 49519) -.adocean.pl/.*/ad\.js\?id= - -#ab2p-unblock-elem-R1749 -{+client-header-tagger{ab2p-unblock-elem-R1749} \ -} -# @@||tvnet.lv/o/servlet/view/banner/javascript/media?$script,domain=tvnet.lv (advblock.txt: 7415) -.tvnet.lv/o/servlet/view/banner/javascript/media\? - -#ab2p-unblock-elem-R1750 -{+client-header-tagger{ab2p-unblock-elem-R1750} \ -} -# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina+easylist.txt: 10397) -.tw.m.yimg.com/res/ads/ - -#ab2p-unblock-elem-R1751 -{+client-header-tagger{ab2p-unblock-elem-R1751} \ -} -# @@||folue.info/needes.js$domain=twer.info (easylistchina+easylist.txt: 60298) -.folue.info/needes\.js -# @@||folue.info/needes.js$domain=twer.info (easylist.txt: 49813) -.folue.info/needes\.js - -#ab2p-unblock-elem-R485 -{+client-header-tagger{ab2p-unblock-elem-R485} \ -} -# @@||jtvnw.net/*/advertisement.js$domain=twitch.tv (easylistchina+easylist.txt: 60438) -.jtvnw.net/.*/advertisement\.js -# @@||jtvnw.net/*/advertisement.js$domain=twitch.tv (easylist.txt: 49953) -.jtvnw.net/.*/advertisement\.js - -#ab2p-unblock-elem-R1752 -{+client-header-tagger{ab2p-unblock-elem-R1752} \ -} -# @@||price.ru^$image,domain=tyndex.ru (advblock.txt: 7364) -.price.ru - -#ab2p-unblock-elem-R1753 -{+client-header-tagger{ab2p-unblock-elem-R1753} \ -} -# @@||ubi.com/resource/*/game/*_300x250_$image,domain=ubi.com (easylistchina+easylist.txt: 61376) -.ubi.com/resource/.*/game/.*_300x250_ -# @@||ubi.com/resource/*/game/*_300x250_$image,domain=ubi.com (easylist.txt: 50891) -.ubi.com/resource/.*/game/.*_300x250_ - -#ab2p-unblock-elem-R1754 -{+client-header-tagger{ab2p-unblock-elem-R1754} \ -} -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60855) -.v.fwmrm.net/ad/p/1\? -# @@||v.fwmrm.net/ad/p/1$xmlhttprequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60854) -.v.fwmrm.net/ad/p/1 -# @@||v.fwmrm.net/ad/g/1?$script,domain=uktv.co.uk (easylistchina+easylist.txt: 60853) -.v.fwmrm.net/ad/g/1\? -# @@||rtr.innovid.com^$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60706) -.rtr.innovid.com -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59997) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net/p/*/VPAIDAdRenderer.swf$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 59996) -.adm.fwmrm.net/p/.*/VPAIDAdRenderer\.swf -# @@||adm.fwmrm.net/p/*/LinkTag2.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59994) -.adm.fwmrm.net/p/.*/LinkTag2\.js -# @@||adm.fwmrm.net/p/*/AdManager.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59993) -.adm.fwmrm.net/p/.*/AdManager\.js -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=uktv.co.uk (easylist.txt: 50370) -.v.fwmrm.net/ad/p/1\? -# @@||v.fwmrm.net/ad/p/1$xmlhttprequest,domain=uktv.co.uk (easylist.txt: 50369) -.v.fwmrm.net/ad/p/1 -# @@||v.fwmrm.net/ad/g/1?$script,domain=uktv.co.uk (easylist.txt: 50368) -.v.fwmrm.net/ad/g/1\? -# @@||rtr.innovid.com^$object-subrequest,domain=uktv.co.uk (easylist.txt: 50221) -.rtr.innovid.com -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=uktv.co.uk (easylist.txt: 49512) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net/p/*/VPAIDAdRenderer.swf$object-subrequest,domain=uktv.co.uk (easylist.txt: 49511) -.adm.fwmrm.net/p/.*/VPAIDAdRenderer\.swf -# @@||adm.fwmrm.net/p/*/LinkTag2.js$domain=uktv.co.uk (easylist.txt: 49509) -.adm.fwmrm.net/p/.*/LinkTag2\.js -# @@||adm.fwmrm.net/p/*/AdManager.js$domain=uktv.co.uk (easylist.txt: 49508) -.adm.fwmrm.net/p/.*/AdManager\.js - -#ab2p-unblock-elem-R1755 -{+client-header-tagger{ab2p-unblock-elem-R1755} \ -} -# @@||akamai.net^*/i.mallnetworks.com/images/*120x60$domain=ultimaterewardsearn.chase.com (easylistchina+easylist.txt: 58375) -.akamai.net/.*/i\.mallnetworks\.com/images/.*120x60 -# @@||akamai.net^*/i.mallnetworks.com/images/*120x60$domain=ultimaterewardsearn.chase.com (easylist.txt: 47890) -.akamai.net/.*/i\.mallnetworks\.com/images/.*120x60 - -#ab2p-unblock-elem-R1756 -{+client-header-tagger{ab2p-unblock-elem-R1756} \ -} -# @@||embedperiscope.com/app/embed.js$domain=unilad.co.uk (easylistchina+easylist.txt: 45974) -.embedperiscope.com/app/embed\.js -# @@||embedperiscope.com/app/embed.js$domain=unilad.co.uk (easylist.txt: 35489) -.embedperiscope.com/app/embed\.js - -#ab2p-unblock-elem-R1757 -{+client-header-tagger{ab2p-unblock-elem-R1757} \ -} -# @@||union.$domain=union.163.com (easylistchina+easylist.txt: 10402) -.union.*. - -#ab2p-unblock-elem-R1758 -{+client-header-tagger{ab2p-unblock-elem-R1758} \ -} -# @@||pagead2.googlesyndication.com/simgad/$image,domain=uptobox.com (easylistchina+easylist.txt: 60631) -.pagead2.googlesyndication.com/simgad/ -# @@||chronophotographie.science^$script,domain=uptobox.com (easylistchina+easylist.txt: 60158) -.chronophotographie.science -# @@||aucun.science/bloggerex.js$domain=uptobox.com (easylistchina+easylist.txt: 60086) -.aucun.science/bloggerex\.js -# @@||pagead2.googlesyndication.com/simgad/$image,domain=uptobox.com (easylist.txt: 50146) -.pagead2.googlesyndication.com/simgad/ -# @@||chronophotographie.science^$script,domain=uptobox.com (easylist.txt: 49673) -.chronophotographie.science -# @@||aucun.science/bloggerex.js$domain=uptobox.com (easylist.txt: 49601) -.aucun.science/bloggerex\.js - -#ab2p-unblock-elem-R1759 -{+client-header-tagger{ab2p-unblock-elem-R1759} \ -} -# @@||premium.mbn.com.ua^$script,domain=ura-inform.com (advblock.txt: 7636) -.premium.mbn.com.ua - -#ab2p-unblock-elem-R1760 -{+client-header-tagger{ab2p-unblock-elem-R1760} \ -} -# @@||cdn.betrad.com/pub/icon1.png$domain=usanetwork.com (easylistchina+easylist.txt: 58556) -.cdn.betrad.com/pub/icon1\.png -# @@||cdn.betrad.com/pub/icon1.png$domain=usanetwork.com (easylist.txt: 48071) -.cdn.betrad.com/pub/icon1\.png - -#ab2p-unblock-elem-R1761 -{+client-header-tagger{ab2p-unblock-elem-R1761} \ -} -# @@||lduhtrp.net/image-$domain=uscbookstore.com (easylistchina+easylist.txt: 59078) -.lduhtrp.net/image- -# @@||lduhtrp.net/image-$domain=uscbookstore.com (easylist.txt: 48593) -.lduhtrp.net/image- - -#ab2p-unblock-elem-R1762 -{+client-header-tagger{ab2p-unblock-elem-R1762} \ -} -# @@||usynovite.ru/f/swf/banner_$domain=usynovite.ru (advblock.txt: 7418) -.usynovite.ru/f/swf/banner_ - -#ab2p-unblock-elem-R1763 -{+client-header-tagger{ab2p-unblock-elem-R1763} \ -} -# @@.com/ads?$domain=uzblog.com|uzlist.com (advblock.txt: 7177) -/.*\.com/ads\? -.*.com/ads\? - -#ab2p-unblock-elem-R1764 -{+client-header-tagger{ab2p-unblock-elem-R1764} \ -} -# @@||advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone?zid=$script,domain=uzmantv.com (easylistchina+easylist.txt: 60964) -.advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone\?zid= -# @@||advert.mgimg.com/servlet/view/$xmlhttprequest,domain=uzmantv.com (easylistchina+easylist.txt: 60963) -.advert.mgimg.com/servlet/view/ -# @@||advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone?zid=$script,domain=uzmantv.com (easylist.txt: 50479) -.advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone\?zid= -# @@||advert.mgimg.com/servlet/view/$xmlhttprequest,domain=uzmantv.com (easylist.txt: 50478) -.advert.mgimg.com/servlet/view/ - -#ab2p-unblock-elem-R1765 -{+client-header-tagger{ab2p-unblock-elem-R1765} \ -} -# @@||pubads.g.doubleclick.net/|$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60675) -.pubads.g.doubleclick.net/$ -# @@||doubleclickbygoogle.com^$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60231) -.doubleclickbygoogle.com -# @@||ads.tremorhub.com/ad/$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60019) -.ads.tremorhub.com/ad/ -# @@||pubads.g.doubleclick.net/|$object-subrequest,domain=vaughnlive.tv (easylist.txt: 50190) -.pubads.g.doubleclick.net/$ -# @@||doubleclickbygoogle.com^$object-subrequest,domain=vaughnlive.tv (easylist.txt: 49746) -.doubleclickbygoogle.com -# @@||ads.tremorhub.com/ad/$object-subrequest,domain=vaughnlive.tv (easylist.txt: 49534) -.ads.tremorhub.com/ad/ - -#ab2p-unblock-elem-R1766 -{+client-header-tagger{ab2p-unblock-elem-R1766} \ -} -# @@||vhobbies.com/admgr/*.aspx?ZoneID=$script,domain=vcoins.com (easylistchina+easylist.txt: 59751) -.vhobbies.com/admgr/.*\.aspx\?ZoneID= -# @@||vhobbies.com/admgr/*.aspx?ZoneID=$script,domain=vcoins.com (easylist.txt: 49266) -.vhobbies.com/admgr/.*\.aspx\?ZoneID= - -#ab2p-unblock-elem-R1767 -{+client-header-tagger{ab2p-unblock-elem-R1767} \ -} -# @@||vdmsti.ru/var/bansrc/$image,domain=vedomosti.ru (advblock.txt: 7419) -.vdmsti.ru/var/bansrc/ - -#ab2p-unblock-elem-R1768 -{+client-header-tagger{ab2p-unblock-elem-R1768} \ -} -# @@/reklama/*$domain=velochehol.com.ua|velosumka.com (advblock.txt: 7206) -/(.*/)?reklama/.* - -#ab2p-unblock-elem-R1769 -{+client-header-tagger{ab2p-unblock-elem-R1769} \ -} -# @@||veohb.net/js/advertisement.js$domain=veohb.net (easylistchina+easylist.txt: 60860) -.veohb.net/js/advertisement\.js -# @@||veohb.net/js/advertisement.js$domain=veohb.net (easylist.txt: 50375) -.veohb.net/js/advertisement\.js - -#ab2p-unblock-elem-R1770 -{+client-header-tagger{ab2p-unblock-elem-R1770} \ -} -# @@||fwmrm.net/ad/g/1?$xmlhttprequest,domain=vevo.com (easylistchina+easylist.txt: 60317) -.fwmrm.net/ad/g/1\? -# @@||fwmrm.net/ad/g/1?$xmlhttprequest,domain=vevo.com (easylist.txt: 49832) -.fwmrm.net/ad/g/1\? - -#ab2p-unblock-elem-R1771 -{+client-header-tagger{ab2p-unblock-elem-R1771} \ -} -# @@||adtechus.com/dt/common/postscribe.js$domain=vg.no (easylistchina+easylist.txt: 60029) -.adtechus.com/dt/common/postscribe\.js -# @@||adtechus.com/dt/common/postscribe.js$domain=vg.no (easylist.txt: 49544) -.adtechus.com/dt/common/postscribe\.js - -#ab2p-unblock-elem-R1772 -{+client-header-tagger{ab2p-unblock-elem-R1772} \ -} -# @@||ox.eurogamer.net/oa/delivery/ajs.php?$script,domain=vg247.com (easylistchina+easylist.txt: 59320) -.ox.eurogamer.net/oa/delivery/ajs\.php\? -# @@||ox.eurogamer.net/oa/delivery/ajs.php?$script,domain=vg247.com (easylist.txt: 48835) -.ox.eurogamer.net/oa/delivery/ajs\.php\? - -#ab2p-unblock-elem-R1773 -{+client-header-tagger{ab2p-unblock-elem-R1773} \ -} -# @@||ads.jetpackdigital.com^*/_uploads/$image,domain=vibe.com (easylistchina+easylist.txt: 58247) -.ads.jetpackdigital.com/.*/_uploads/ -# @@||ads.jetpackdigital.com/jquery.tools.min.js?$domain=vibe.com (easylistchina+easylist.txt: 58246) -.ads.jetpackdigital.com/jquery\.tools\.min\.js\? -# @@||ads.jetpackdigital.com.s3.amazonaws.com^$image,domain=vibe.com (easylistchina+easylist.txt: 58245) -.ads.jetpackdigital.com.s3.amazonaws.com -# @@||ads.jetpackdigital.com^*/_uploads/$image,domain=vibe.com (easylist.txt: 47762) -.ads.jetpackdigital.com/.*/_uploads/ -# @@||ads.jetpackdigital.com/jquery.tools.min.js?$domain=vibe.com (easylist.txt: 47761) -.ads.jetpackdigital.com/jquery\.tools\.min\.js\? -# @@||ads.jetpackdigital.com.s3.amazonaws.com^$image,domain=vibe.com (easylist.txt: 47760) -.ads.jetpackdigital.com.s3.amazonaws.com - -#ab2p-unblock-elem-R1774 -{+client-header-tagger{ab2p-unblock-elem-R1774} \ -} -# @@||amazonaws.com/content-images/article/*_120x60$domain=vice.com (easylistchina+easylist.txt: 61307) -.amazonaws.com/content-images/article/.*_120x60 -# @@||amazonaws.com/content-images/article/*_120x60$domain=vice.com (easylist.txt: 50822) -.amazonaws.com/content-images/article/.*_120x60 - -#ab2p-unblock-elem-R1775 -{+client-header-tagger{ab2p-unblock-elem-R1775} \ -} -# @@||turner.com/adultswim/big/promos/$media,domain=video.adultswim.com (easylistchina+easylist.txt: 59707) -.turner.com/adultswim/big/promos/ -# @@||turner.com/adultswim/big/promos/$media,domain=video.adultswim.com (easylist.txt: 49222) -.turner.com/adultswim/big/promos/ - -#ab2p-unblock-elem-R1776 -{+client-header-tagger{ab2p-unblock-elem-R1776} \ -} -# @@||lycos.com/catman/init.js$domain=video.lycos.com (easylistchina+easylist.txt: 59118) -.lycos.com/catman/init\.js -# @@||lycos.com/catman/init.js$domain=video.lycos.com (easylist.txt: 48633) -.lycos.com/catman/init\.js - -#ab2p-unblock-elem-R1777 -{+client-header-tagger{ab2p-unblock-elem-R1777} \ -} -# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina+easylist.txt: 10375) -.sinaimg.cn/unipro/pub/suda_m_v629\.js - -#ab2p-unblock-elem-R1778 -{+client-header-tagger{ab2p-unblock-elem-R1778} \ -} -# @@||comeadvertisewithus.com/ads/ads.js$domain=video2mp3.net (easylistchina+easylist.txt: 58608) -.comeadvertisewithus.com/ads/ads\.js -# @@||comeadvertisewithus.com/ads/ads.js$domain=video2mp3.net (easylist.txt: 48123) -.comeadvertisewithus.com/ads/ads\.js - -#ab2p-unblock-elem-R1779 -{+client-header-tagger{ab2p-unblock-elem-R1779} \ -} -# @@||begun.ru/vpaid_lib.swf|$domain=vidin.ru (advblock.txt: 7281) -.begun.ru/vpaid_lib\.swf$ -# @@||begun.ru/video.jsp?$domain=vidin.ru (advblock.txt: 7280) -.begun.ru/video\.jsp\? - -#ab2p-unblock-elem-R1780 -{+client-header-tagger{ab2p-unblock-elem-R1780} \ -} -# @@||googleapis.com/flash/*adsapi_*.swf$domain=viki.com|wwe.com (easylistchina+easylist.txt: 58912) -.googleapis.com/flash/.*adsapi_.*\.swf -# @@||googleapis.com/flash/*adsapi_*.swf$domain=viki.com|wwe.com (easylist.txt: 48427) -.googleapis.com/flash/.*adsapi_.*\.swf - -#ab2p-unblock-elem-R1781 -{+client-header-tagger{ab2p-unblock-elem-R1781} \ -} -# @@||g.doubleclick.net/gampad/ads?adk=*&ciu_szs&cmsid=$object-subrequest,domain=viki.mx (easylistchina+easylist.txt: 60326) -.g.doubleclick.net/gampad/ads\?adk=.*&ciu_szs&cmsid= -# @@||g.doubleclick.net/gampad/ads?adk=*&ciu_szs&cmsid=$object-subrequest,domain=viki.mx (easylist.txt: 49841) -.g.doubleclick.net/gampad/ads\?adk=.*&ciu_szs&cmsid= - -#ab2p-unblock-elem-R1782 -{+client-header-tagger{ab2p-unblock-elem-R1782} \ -} -# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina+easylist.txt: 10160) -.ads.myopen.vip.com - -#ab2p-unblock-elem-R1783 -{+client-header-tagger{ab2p-unblock-elem-R1783} \ -} -# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina+easylist.txt: 10262) -.hd.duba.net/vip\.ijinshan\.com/repository/ad-images/ - -#ab2p-unblock-elem-R1784 -{+client-header-tagger{ab2p-unblock-elem-R1784} \ -} -# @@||inskinmedia.com^*/api/brightcove3.js$domain=virginmedia.com (easylistchina+easylist.txt: 59020) -.inskinmedia.com/.*/api/brightcove3\.js -# @@||doubleclick.net/N6545/adj/*_music/video;$script,domain=virginmedia.com (easylistchina+easylist.txt: 58723) -.doubleclick.net/N6545/adj/.*_music/video; -# @@||cdn.inskinmedia.com^*/brightcove3.js$domain=virginmedia.com (easylistchina+easylist.txt: 58565) -.cdn.inskinmedia.com/.*/brightcove3\.js -# @@||inskinmedia.com^*/api/brightcove3.js$domain=virginmedia.com (easylist.txt: 48535) -.inskinmedia.com/.*/api/brightcove3\.js -# @@||doubleclick.net/N6545/adj/*_music/video;$script,domain=virginmedia.com (easylist.txt: 48238) -.doubleclick.net/N6545/adj/.*_music/video; -# @@||cdn.inskinmedia.com^*/brightcove3.js$domain=virginmedia.com (easylist.txt: 48080) -.cdn.inskinmedia.com/.*/brightcove3\.js - -#ab2p-unblock-elem-R1785 -{+client-header-tagger{ab2p-unblock-elem-R1785} \ -} -# @@||virpl.ru^*_advert.php$xmlhttprequest,domain=virpl.ru (advblock.txt: 7427) -.virpl.ru/.*_advert\.php - -#ab2p-unblock-elem-R507 -{+client-header-tagger{ab2p-unblock-elem-R507} \ -} -# @@/xbanner.js$subdocument,domain=vivo.sx (easylistchina+easylist.txt: 59939) -/(.*/)?xbanner\.js -xbanner.js*. -# @@/xbanner.js$subdocument,domain=vivo.sx (easylist.txt: 49454) -/(.*/)?xbanner\.js -xbanner.js*. - -#ab2p-unblock-elem-R509 -{+client-header-tagger{ab2p-unblock-elem-R509} \ -} -# @@||vk.me/images/ads_$domain=vk.com (easylistchina+easylist.txt: 61239) -.vk.me/images/ads_ -# @@||vk.me/css/al/ads.css$domain=vk.com (easylistchina+easylist.txt: 61238) -.vk.me/css/al/ads\.css -# @@||vk.com/js/al/ads.js?$domain=vk.com (easylistchina+easylist.txt: 61237) -.vk.com/js/al/ads\.js\? -# @@||vk.com/images/ads_$domain=vk.com (easylistchina+easylist.txt: 61236) -.vk.com/images/ads_ -# @@||vk.com/css/al/ads.css$domain=vk.com (easylistchina+easylist.txt: 61235) -.vk.com/css/al/ads\.css -# @@||vk.com/ads.php?$subdocument,domain=vk.com (easylistchina+easylist.txt: 61233) -.vk.com/ads\.php\? -# @@||vk.com/ads_rotate.php$domain=vk.com (easylistchina+easylist.txt: 59778) -.vk.com/ads_rotate\.php -# @@||rs.mail.ru/vp/adman2.swf$object-subrequest,domain=vk.com (easylistchina+easylist.txt: 59472) -.rs.mail.ru/vp/adman2\.swf -# @@||api.vigo.ru^*/network_status?$object-subrequest,domain=vk.com (advblock.txt: 7268) -.api.vigo.ru/.*/network_status\? -# @@||api.vigo.ru/crossdomain.xml|$domain=vk.com (advblock.txt: 7267) -.api.vigo.ru/crossdomain\.xml$ -# @@||vk.me/images/ads_$domain=vk.com (easylist.txt: 50754) -.vk.me/images/ads_ -# @@||vk.me/css/al/ads.css$domain=vk.com (easylist.txt: 50753) -.vk.me/css/al/ads\.css -# @@||vk.com/js/al/ads.js?$domain=vk.com (easylist.txt: 50752) -.vk.com/js/al/ads\.js\? -# @@||vk.com/images/ads_$domain=vk.com (easylist.txt: 50751) -.vk.com/images/ads_ -# @@||vk.com/css/al/ads.css$domain=vk.com (easylist.txt: 50750) -.vk.com/css/al/ads\.css -# @@||vk.com/ads.php?$subdocument,domain=vk.com (easylist.txt: 50748) -.vk.com/ads\.php\? -# @@||vk.com/ads_rotate.php$domain=vk.com (easylist.txt: 49293) -.vk.com/ads_rotate\.php -# @@||rs.mail.ru/vp/adman2.swf$object-subrequest,domain=vk.com (easylist.txt: 48987) -.rs.mail.ru/vp/adman2\.swf - -#ab2p-unblock-elem-R1786 -{+client-header-tagger{ab2p-unblock-elem-R1786} \ -} -# @@||vodyanoy.com.ua^*700_200.jpg|$domain=vodyanoy.com.ua (advblock.txt: 7428) -.vodyanoy.com.ua/.*700_200\.jpg$ - -#ab2p-unblock-elem-R1787 -{+client-header-tagger{ab2p-unblock-elem-R1787} \ -} -# @@||voenhronika.ru/banners/*.png|$domain=voenhronika.ru (advblock.txt: 7429) -.voenhronika.ru/banners/.*\.png$ - -#ab2p-unblock-elem-R1788 -{+client-header-tagger{ab2p-unblock-elem-R1788} \ -} -# @@||ad4.liverail.com/?LR_ORDER_ID=$object-subrequest,domain=volarvideo.com (easylistchina+easylist.txt: 58168) -.ad4.liverail.com/\?LR_ORDER_ID= -# @@||ad4.liverail.com/?LR_ORDER_ID=$object-subrequest,domain=volarvideo.com (easylist.txt: 47683) -.ad4.liverail.com/\?LR_ORDER_ID= - -#ab2p-unblock-elem-R1789 -{+client-header-tagger{ab2p-unblock-elem-R1789} \ -} -# @@||amazon-adsystem.com^$image,stylesheet,domain=voldingenglish.com (easylistchina+easylist.txt: 58394) -.amazon-adsystem.com -# @@||amazon-adsystem.com/widgets/q?$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58390) -.amazon-adsystem.com/widgets/q\? -# @@||amazon-adsystem.com/panda/$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58388) -.amazon-adsystem.com/panda/ -# @@||amazon-adsystem.com/js/$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58387) -.amazon-adsystem.com/js/ -# @@||amazon-adsystem.com^$image,stylesheet,domain=voldingenglish.com (easylist.txt: 47909) -.amazon-adsystem.com -# @@||amazon-adsystem.com/widgets/q?$script,domain=voldingenglish.com (easylist.txt: 47905) -.amazon-adsystem.com/widgets/q\? -# @@||amazon-adsystem.com/panda/$script,domain=voldingenglish.com (easylist.txt: 47903) -.amazon-adsystem.com/panda/ -# @@||amazon-adsystem.com/js/$script,domain=voldingenglish.com (easylist.txt: 47902) -.amazon-adsystem.com/js/ - -#ab2p-unblock-elem-R1790 -{+client-header-tagger{ab2p-unblock-elem-R1790} \ -} -# @@||doubleclick.net/ddm/trackclk/$popup,domain=vouchercodes.co.uk (easylistchina+easylist.txt: 61411) -.doubleclick.net/ddm/trackclk/ -# @@||doubleclick.net/ddm/trackclk/$popup,domain=vouchercodes.co.uk (easylist.txt: 50926) -.doubleclick.net/ddm/trackclk/ - -#ab2p-unblock-elem-R1791 -{+client-header-tagger{ab2p-unblock-elem-R1791} \ -} -# @@||googlesyndication.com/pagead/imgad?id=$image,domain=vroomvroomvroom.com.au (easylistchina+easylist.txt: 58914) -.googlesyndication.com/pagead/imgad\?id= -# @@||googlesyndication.com/pagead/imgad?id=$image,domain=vroomvroomvroom.com.au (easylist.txt: 48429) -.googlesyndication.com/pagead/imgad\?id= - -#ab2p-unblock-elem-R1792 -{+client-header-tagger{ab2p-unblock-elem-R1792} \ -} -# @@||vseplatezhi.ru/wp-content/uploads/*-120x60.$image,domain=vseplatezhi.ru (advblock.txt: 7431) -.vseplatezhi.ru/wp-content/uploads/.*-120x60\. - -#ab2p-unblock-elem-R1793 -{+client-header-tagger{ab2p-unblock-elem-R1793} \ -} -# @@||vshp2016.ru/upload/iblock/*_baner_$image,domain=vshp2016.ru (advblock.txt: 7432) -.vshp2016.ru/upload/iblock/.*_baner_ - -#ab2p-unblock-elem-R1794 -{+client-header-tagger{ab2p-unblock-elem-R1794} \ -} -# @@||st.vtomske.ru/js/adv$script,domain=vtomske.ru (advblock.txt: 7396) -.st.vtomske.ru/js/adv - -#ab2p-unblock-elem-R1795 -{+client-header-tagger{ab2p-unblock-elem-R1795} \ -} -# @@||ads.vyborg-press.ru^$domain=vyborg-press.ru (advblock.txt: 7241) -.ads.vyborg-press.ru - -#ab2p-unblock-elem-R511 -{+client-header-tagger{ab2p-unblock-elem-R511} \ -} -# @@||adriver.ru/extender.js|$script,domain=vz.ru (advblock.txt: 7620) -.adriver.ru/extender\.js$ -# @@||russia.ru/reklama/32x32.flv?link1=$object-subrequest,domain=vz.ru (advblock.txt: 7384) -.russia.ru/reklama/32x32\.flv\?link1= - -#ab2p-unblock-elem-R1796 -{+client-header-tagger{ab2p-unblock-elem-R1796} \ -} -# @@/AdImage/*$domain=wacom.tw (easylistchina+easylist.txt: 10003) -/(.*/)?AdImage/.* - -#ab2p-unblock-elem-R1797 -{+client-header-tagger{ab2p-unblock-elem-R1797} \ -} -# @@||247realmedia.com/RealMedia/ads/adstream_sx.ads/wm-desktop/home/$xmlhttprequest,domain=walmart.com.br (easylistchina+easylist.txt: 60925) -.247realmedia.com/RealMedia/ads/adstream_sx\.ads/wm-desktop/home/ -# @@||247realmedia.com/RealMedia/ads/adstream_sx.ads/wm-desktop/home/$xmlhttprequest,domain=walmart.com.br (easylist.txt: 50440) -.247realmedia.com/RealMedia/ads/adstream_sx\.ads/wm-desktop/home/ - -#ab2p-unblock-elem-R1798 -{+client-header-tagger{ab2p-unblock-elem-R1798} \ -} -# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina+easylist.txt: 10116) -.70e.com/js/2013_new\.js - -#ab2p-unblock-elem-R513 -{+client-header-tagger{ab2p-unblock-elem-R513} \ -} -# @@||twt-static.washtimes.com/js/disqus.js$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45922) -.twt-static.washtimes.com/js/disqus\.js -# @@||twt-static.washtimes.com/js/base_global.$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45921) -.twt-static.washtimes.com/js/base_global\. -# @@||twt-static.washtimes.com/js/disqus.js$script,domain=washingtontimes.com (easylist.txt: 35437) -.twt-static.washtimes.com/js/disqus\.js -# @@||twt-static.washtimes.com/js/base_global.$script,domain=washingtontimes.com (easylist.txt: 35436) -.twt-static.washtimes.com/js/base_global\. - -#ab2p-unblock-elem-R1799 -{+client-header-tagger{ab2p-unblock-elem-R1799} \ -} -# @@||ad.yieldmanager.com/imp^$script,domain=watchseries-online.eu (easylistchina+easylist.txt: 59984) -.ad.yieldmanager.com/imp[^\w%.-] -# @@||ad.yieldmanager.com/imp^$script,domain=watchseries-online.eu (easylist.txt: 49499) -.ad.yieldmanager.com/imp[^\w%.-] - -#ab2p-unblock-elem-R1800 -{+client-header-tagger{ab2p-unblock-elem-R1800} \ -} -# @@/show_ad_$domain=wb.qq.com (easylistchina+easylist.txt: 10055) -/(.*/)?show_ad_ -# @@/advert_$domain=wb.qq.com (easylistchina+easylist.txt: 10017) -/(.*/)?advert_ - -#ab2p-unblock-elem-R1801 -{+client-header-tagger{ab2p-unblock-elem-R1801} \ -} -# @@||imagehost123.com^*_300x250_$image,domain=wealthymen.com (easylistchina+easylist.txt: 61340) -.imagehost123.com/.*_300x250_ -# @@||imagehost123.com^*_300x250_$image,domain=wealthymen.com (easylist.txt: 50855) -.imagehost123.com/.*_300x250_ - -#ab2p-unblock-elem-R1802 -{+client-header-tagger{ab2p-unblock-elem-R1802} \ -} -# @@||imwx.com/js/adstwo/adcontroller.js$domain=weather.com (easylistchina+easylist.txt: 59003) -.imwx.com/js/adstwo/adcontroller\.js -# @@||imwx.com/js/adstwo/adcontroller.js$domain=weather.com (easylist.txt: 48518) -.imwx.com/js/adstwo/adcontroller\.js - -#ab2p-unblock-elem-R1803 -{+client-header-tagger{ab2p-unblock-elem-R1803} \ -} -# @@/webadvert.$domain=webadvert.ru (advblock.txt: 7215) -/(.*/)?webadvert\. -webadvert.*. - -#ab2p-unblock-elem-R1804 -{+client-header-tagger{ab2p-unblock-elem-R1804} \ -} -# @@/LoadAds.$domain=webcars.com.cn (easylistchina+easylist.txt: 10048) -/(.*/)?LoadAds\. -LoadAds.*. - -#ab2p-unblock-elem-R1805 -{+client-header-tagger{ab2p-unblock-elem-R1805} \ -} -# @@||netupd8.com/webupd8/*/advertisement.js$domain=webupd8.org (easylistchina+easylist.txt: 59233) -.netupd8.com/webupd8/.*/advertisement\.js -# @@||netupd8.com/webupd8/*/adsense.js$domain=webupd8.org (easylistchina+easylist.txt: 59232) -.netupd8.com/webupd8/.*/adsense\.js -# @@||netupd8.com/webupd8/*/advertisement.js$domain=webupd8.org (easylist.txt: 48748) -.netupd8.com/webupd8/.*/advertisement\.js -# @@||netupd8.com/webupd8/*/adsense.js$domain=webupd8.org (easylist.txt: 48747) -.netupd8.com/webupd8/.*/adsense\.js - -#ab2p-unblock-elem-R1806 -{+client-header-tagger{ab2p-unblock-elem-R1806} \ -} -# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina+easylist.txt: 10352) -.rm.sina.com.cn/minisite/ - -#ab2p-unblock-elem-R1807 -{+client-header-tagger{ab2p-unblock-elem-R1807} \ -} -# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina+easylist.txt: 10485) -.sinajs.cn/open/analytics/js/suda\.js - -#ab2p-unblock-elem-R1808 -{+client-header-tagger{ab2p-unblock-elem-R1808} \ -} -# @@||adtechus.com/dt/common/DAC.js$domain=wetpaint.com (easylistchina+easylist.txt: 58322) -.adtechus.com/dt/common/DAC\.js -# @@||adtechus.com/dt/common/DAC.js$domain=wetpaint.com (easylist.txt: 47837) -.adtechus.com/dt/common/DAC\.js - -#ab2p-unblock-elem-R1809 -{+client-header-tagger{ab2p-unblock-elem-R1809} \ -} -# @@||google.com^*/show_afs_ads.js$domain=whitepages.com (easylistchina+easylist.txt: 58910) -.google.com/.*/show_afs_ads\.js -# @@||google.com^*/show_afs_ads.js$domain=whitepages.com (easylist.txt: 48425) -.google.com/.*/show_afs_ads\.js - -#ab2p-unblock-elem-R1810 -{+client-header-tagger{ab2p-unblock-elem-R1810} \ -} -# @@||whstatic.com/images/thumb/*-Popup-Ads-$image,domain=wikihow.com (easylistchina+easylist.txt: 59808) -.whstatic.com/images/thumb/.*-Popup-Ads- -# @@||whstatic.com/images/thumb/*-Popup-Ads-$image,domain=wikihow.com (easylist.txt: 49323) -.whstatic.com/images/thumb/.*-Popup-Ads- - -#ab2p-unblock-elem-R1811 -{+client-header-tagger{ab2p-unblock-elem-R1811} \ -} -# @@||revive.wikimart.ru^$domain=wikimart.ru (advblock.txt: 7374) -.revive.wikimart.ru -# @@||adriver.ru/cgi-bin/erle.cgi?$script,domain=wikimart.ru (advblock.txt: 7231) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-unblock-elem-R1812 -{+client-header-tagger{ab2p-unblock-elem-R1812} \ -} -# @@||ads.williamhillcasino.com/redirect.aspx?*=internal&$popup,domain=williamhillcasino.com (easylistchina+easylist.txt: 61401) -.ads.williamhillcasino.com/redirect\.aspx\?.*=internal& -# @@||ads.williamhillcasino.com/redirect.aspx?*=internal&$popup,domain=williamhillcasino.com (easylist.txt: 50916) -.ads.williamhillcasino.com/redirect\.aspx\?.*=internal& - -#ab2p-unblock-elem-R1813 -{+client-header-tagger{ab2p-unblock-elem-R1813} \ -} -# @@/adsense/*$domain=winxclub.com (advblock.txt: 7188) -/(.*/)?adsense/.* - -#ab2p-unblock-elem-R1814 -{+client-header-tagger{ab2p-unblock-elem-R1814} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=wired.com (easylistchina+easylist.txt: 59344) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||doubleclick.net/adj/wiredcom.dart/*;sz=300x250;*;kw=top;$script,domain=wired.com (easylistchina+easylist.txt: 58718) -.doubleclick.net/adj/wiredcom\.dart/.*;sz=300x250;.*;kw=top; -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=wired.com (easylist.txt: 48859) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||doubleclick.net/adj/wiredcom.dart/*;sz=300x250;*;kw=top;$script,domain=wired.com (easylist.txt: 48233) -.doubleclick.net/adj/wiredcom\.dart/.*;sz=300x250;.*;kw=top; - -#ab2p-unblock-elem-R1815 -{+client-header-tagger{ab2p-unblock-elem-R1815} \ -} -# @@||ad.103092804.com/st?ad_type=$subdocument,domain=wizard.mediacoderhq.com (easylistchina+easylist.txt: 58146) -.ad.103092804.com/st\?ad_type= -# @@||ad.103092804.com/st?ad_type=$subdocument,domain=wizard.mediacoderhq.com (easylist.txt: 47661) -.ad.103092804.com/st\?ad_type= - -#ab2p-unblock-elem-R1816 -{+client-header-tagger{ab2p-unblock-elem-R1816} \ -} -# @@||content.ad/images/$image,domain=wmpoweruser.com (easylistchina+easylist.txt: 58617) -.content.ad/images/ -# @@||content.ad/images/$image,domain=wmpoweruser.com (easylist.txt: 48132) -.content.ad/images/ - -#ab2p-unblock-elem-R1817 -{+client-header-tagger{ab2p-unblock-elem-R1817} \ -} -# @@||w.org/plugins/adsense-plugin/screenshot-$image,domain=wordpress.org (easylistchina+easylist.txt: 59784) -.w.org/plugins/adsense-plugin/screenshot- -# @@||w.org/adsense-plugin/assets/banner-$image,domain=wordpress.org (easylistchina+easylist.txt: 59783) -.w.org/adsense-plugin/assets/banner- -# @@||w.org/plugins/adsense-plugin/screenshot-$image,domain=wordpress.org (easylist.txt: 49299) -.w.org/plugins/adsense-plugin/screenshot- -# @@||w.org/adsense-plugin/assets/banner-$image,domain=wordpress.org (easylist.txt: 49298) -.w.org/adsense-plugin/assets/banner- - -#ab2p-unblock-elem-R1818 -{+client-header-tagger{ab2p-unblock-elem-R1818} \ -} -# @@||adsense.woso.cn^$domain=woso.cn (easylistchina+easylist.txt: 10162) -.adsense.woso.cn - -#ab2p-unblock-elem-R1819 -{+client-header-tagger{ab2p-unblock-elem-R1819} \ -} -# @@||d3pkae9owd2lcf.cloudfront.net/mb102.js$domain=wowhead.com (easylistchina+easylist.txt: 58643) -.d3pkae9owd2lcf.cloudfront.net/mb102\.js -# @@||d3pkae9owd2lcf.cloudfront.net/mb102.js$domain=wowhead.com (easylist.txt: 48158) -.d3pkae9owd2lcf.cloudfront.net/mb102\.js - -#ab2p-unblock-elem-R1820 -{+client-header-tagger{ab2p-unblock-elem-R1820} \ -} -# @@||rek.www.wp.pl/vad.xml?$xmlhttprequest,domain=wp.tv (easylistchina+easylist.txt: 60696) -.rek.www.wp.pl/vad\.xml\? -# @@||rek.www.wp.pl/pliki/$script,domain=wp.tv (easylistchina+easylist.txt: 60695) -.rek.www.wp.pl/pliki/ -# @@||adv.wp.pl/RM/Box/*.mp4$object-subrequest,domain=wp.tv (easylistchina+easylist.txt: 60030) -.adv.wp.pl/RM/Box/.*\.mp4 -# @@||rek.www.wp.pl/vad.xml?$xmlhttprequest,domain=wp.tv (easylist.txt: 50211) -.rek.www.wp.pl/vad\.xml\? -# @@||rek.www.wp.pl/pliki/$script,domain=wp.tv (easylist.txt: 50210) -.rek.www.wp.pl/pliki/ -# @@||adv.wp.pl/RM/Box/*.mp4$object-subrequest,domain=wp.tv (easylist.txt: 49545) -.adv.wp.pl/RM/Box/.*\.mp4 - -#ab2p-unblock-elem-R1821 -{+client-header-tagger{ab2p-unblock-elem-R1821} \ -} -# @@||collective-media.net/pfadx/wtv.wrc/$object-subrequest,domain=wrc.com (easylistchina+easylist.txt: 58605) -.collective-media.net/pfadx/wtv\.wrc/ -# @@||collective-media.net/pfadx/wtv.wrc/$object-subrequest,domain=wrc.com (easylist.txt: 48120) -.collective-media.net/pfadx/wtv\.wrc/ - -#ab2p-unblock-elem-R1822 -{+client-header-tagger{ab2p-unblock-elem-R1822} \ -} -# @@||ads.adap.tv/applist|$object-subrequest,domain=wunderground.com (easylistchina+easylist.txt: 58219) -.ads.adap.tv/applist$ -# @@||ads.adap.tv/applist|$object-subrequest,domain=wunderground.com (easylist.txt: 47734) -.ads.adap.tv/applist$ - -#ab2p-unblock-elem-R1823 -{+client-header-tagger{ab2p-unblock-elem-R1823} \ -} -# @@||www.facebook.com/ajax/ads/$xmlhttprequest,domain=www.facebook.com (easylistchina+easylist.txt: 61160) -.www.facebook.com/ajax/ads/ -# @@||www.facebook.com/ajax/ads/$xmlhttprequest,domain=www.facebook.com (easylist.txt: 50675) -.www.facebook.com/ajax/ads/ - -#ab2p-unblock-elem-R1824 -{+client-header-tagger{ab2p-unblock-elem-R1824} \ -} -# @@||www.google.com/images/icons/*/adsense_$image,domain=www.google.com (easylistchina+easylist.txt: 61192) -.www.google.com/images/icons/.*/adsense_ -# @@||www.google.com/doubleclick/$domain=www.google.com (easylistchina+easylist.txt: 61190) -.www.google.com/doubleclick/ -# @@||www.google.com/analytics/web/$xmlhttprequest,domain=www.google.com (easylistchina+easylist.txt: 61189) -.www.google.com/analytics/web/ -# @@||www.google.com/ads/js/$script,domain=www.google.com (easylistchina+easylist.txt: 61187) -.www.google.com/ads/js/ -# @@||ads.google.com/jsapi$script,domain=www.google.com (easylistchina+easylist.txt: 61165) -.ads.google.com/jsapi -# @@||google.com/doubleclick/studio/swiffy/$domain=www.google.com (easylistchina+easylist.txt: 58902) -.google.com/doubleclick/studio/swiffy/ -# @@||www.google.com/images/icons/*/adsense_$image,domain=www.google.com (easylist.txt: 50707) -.www.google.com/images/icons/.*/adsense_ -# @@||www.google.com/doubleclick/$domain=www.google.com (easylist.txt: 50705) -.www.google.com/doubleclick/ -# @@||www.google.com/analytics/web/$xmlhttprequest,domain=www.google.com (easylist.txt: 50704) -.www.google.com/analytics/web/ -# @@||www.google.com/ads/js/$script,domain=www.google.com (easylist.txt: 50702) -.www.google.com/ads/js/ -# @@||ads.google.com/jsapi$script,domain=www.google.com (easylist.txt: 50680) -.ads.google.com/jsapi -# @@||google.com/doubleclick/studio/swiffy/$domain=www.google.com (easylist.txt: 48417) -.google.com/doubleclick/studio/swiffy/ - -#ab2p-unblock-elem-R1825 -{+client-header-tagger{ab2p-unblock-elem-R1825} \ -} -# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina+easylist.txt: 10276) -.ifengimg.com/ifeng/sources/region_ -# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina+easylist.txt: 10275) -.ifengimg.com/ifeng/sources/inice_ - -#ab2p-unblock-elem-R1826 -{+client-header-tagger{ab2p-unblock-elem-R1826} \ -} -# @@||rad.msn.com/ADSAdClient31.dll?GetSAd=$script,domain=www.msn.com (easylistchina+easylist.txt: 59434) -.rad.msn.com/ADSAdClient31\.dll\?GetSAd= -# @@||rad.msn.com/ADSAdClient31.dll?GetSAd=$script,domain=www.msn.com (easylist.txt: 48949) -.rad.msn.com/ADSAdClient31\.dll\?GetSAd= - -#ab2p-unblock-elem-R1827 -{+client-header-tagger{ab2p-unblock-elem-R1827} \ -} -# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina+easylist.txt: 10483) -.simba.taobao.com/\?name=tcmad& - -#ab2p-unblock-elem-R1828 -{+client-header-tagger{ab2p-unblock-elem-R1828} \ -} -# @@&ad_type=$domain=x.jd.com (easylistchina+easylist.txt: 9978) -/.*&ad_type= - -#ab2p-unblock-elem-R1829 -{+client-header-tagger{ab2p-unblock-elem-R1829} \ -} -# @@/analytics.php?$domain=xcar.com.cn (easylistchina+easylist.txt: 10459) -/(.*/)?analytics\.php\? - -#ab2p-unblock-elem-R1830 -{+client-header-tagger{ab2p-unblock-elem-R1830} \ -} -# @@/addata.$domain=xdf.cn (easylistchina+easylist.txt: 10000) -/(.*/)?addata\. -addata.*. - -#ab2p-unblock-elem-R1831 -{+client-header-tagger{ab2p-unblock-elem-R1831} \ -} -# @@||cdn.cpmstar.com/cached/swf/preplay.swf$object,domain=xfire.com (easylistchina+easylist.txt: 58562) -.cdn.cpmstar.com/cached/swf/preplay\.swf -# @@||cdn.cpmstar.com/cached/js/$script,domain=xfire.com (easylistchina+easylist.txt: 58561) -.cdn.cpmstar.com/cached/js/ -# @@||cdn.cpmstar.com/cached/swf/preplay.swf$object,domain=xfire.com (easylist.txt: 48077) -.cdn.cpmstar.com/cached/swf/preplay\.swf -# @@||cdn.cpmstar.com/cached/js/$script,domain=xfire.com (easylist.txt: 48076) -.cdn.cpmstar.com/cached/js/ - -#ab2p-unblock-elem-R1832 -{+client-header-tagger{ab2p-unblock-elem-R1832} \ -} -# @@/adblock.js$domain=xingk.cc (easylistchina+easylist.txt: 9999) -/(.*/)?adblock\.js -adblock.js*. - -#ab2p-unblock-elem-R1833 -{+client-header-tagger{ab2p-unblock-elem-R1833} \ -} -# @@/images/ads/*$domain=xn--80aqkgfb3b1a0a.xn--p1ai|锌褘褕屑邪懈薪褎芯.褉褎 (advblock.txt: 7202) -/(.*/)?images/ads/.* - -#ab2p-unblock-elem-R1834 -{+client-header-tagger{ab2p-unblock-elem-R1834} \ -} -# @@||js.adm.cnzz.net^$domain=xoyo.com (easylistchina+easylist.txt: 10292) -.js.adm.cnzz.net - -#ab2p-unblock-elem-R1835 -{+client-header-tagger{ab2p-unblock-elem-R1835} \ -} -# @@||adserver.bigwigmedia.com/adfetch2.php?$object-subrequest,domain=y8.com (easylistchina+easylist.txt: 58292) -.adserver.bigwigmedia.com/adfetch2\.php\? -# @@||adserver.bigwigmedia.com/adfetch2.php?$object-subrequest,domain=y8.com (easylist.txt: 47807) -.adserver.bigwigmedia.com/adfetch2\.php\? - -#ab2p-unblock-elem-R1836 -{+client-header-tagger{ab2p-unblock-elem-R1836} \ -} -# @@||yaberemenna.info/openx/www/delivery/ajs.php?zoneid=7&$domain=yaberemenna.info (advblock.txt: 7435) -.yaberemenna.info/openx/www/delivery/ajs\.php\?zoneid=7& -# @@||yaberemenna.info/openx/www/delivery/ai.php?filename=$domain=yaberemenna.info (advblock.txt: 7434) -.yaberemenna.info/openx/www/delivery/ai\.php\?filename= - -#ab2p-unblock-elem-R1837 -{+client-header-tagger{ab2p-unblock-elem-R1837} \ -} -# @@||yimg.jp/images/listing/tool/yads/yjaxc-stream-ex.js$domain=yahoo.co.jp (easylistchina+easylist.txt: 61153) -.yimg.jp/images/listing/tool/yads/yjaxc-stream-ex\.js -# @@||yimg.jp/images/listing/tool/yads/yjaxc-stream-ex.js$domain=yahoo.co.jp (easylist.txt: 50668) -.yimg.jp/images/listing/tool/yads/yjaxc-stream-ex\.js - -#ab2p-unblock-elem-R534 -{+client-header-tagger{ab2p-unblock-elem-R534} \ -} -# @@||yimg.com^*/ads-min.css$domain=yahoo.com (easylistchina+easylist.txt: 59853) -.yimg.com/.*/ads-min\.css -# @@||yimg.com/rq/darla/*/g-r-min.js$domain=yahoo.com (easylistchina+easylist.txt: 59849) -.yimg.com/rq/darla/.*/g-r-min\.js -# @@||yimg.com/p/combo?$stylesheet,domain=yahoo.com (easylistchina+easylist.txt: 59848) -.yimg.com/p/combo\? -# @@||yimg.com/ks/plugin/adplugin.swf?$domain=yahoo.com (easylistchina+easylist.txt: 59847) -.yimg.com/ks/plugin/adplugin\.swf\? -# @@||query.vap.yahoo.net/nicobarMan/ads/acctid=$object-subrequest,domain=yahoo.com (easylistchina+easylist.txt: 59427) -.query.vap.yahoo.net/nicobarMan/ads/acctid= -# @@||adserver.yahoo.com/a?*&l=VID&$xmlhttprequest,domain=yahoo.com (easylistchina+easylist.txt: 58298) -.adserver.yahoo.com/a\?.*&l=VID& -# @@||adserver.yahoo.com/a?*&l=head&$script,domain=yahoo.com (easylistchina+easylist.txt: 58297) -.adserver.yahoo.com/a\?.*&l=head& -# @@||yimg.com^*/ads-min.css$domain=yahoo.com (easylist.txt: 49368) -.yimg.com/.*/ads-min\.css -# @@||yimg.com/rq/darla/*/g-r-min.js$domain=yahoo.com (easylist.txt: 49364) -.yimg.com/rq/darla/.*/g-r-min\.js -# @@||yimg.com/p/combo?$stylesheet,domain=yahoo.com (easylist.txt: 49363) -.yimg.com/p/combo\? -# @@||yimg.com/ks/plugin/adplugin.swf?$domain=yahoo.com (easylist.txt: 49362) -.yimg.com/ks/plugin/adplugin\.swf\? -# @@||query.vap.yahoo.net/nicobarMan/ads/acctid=$object-subrequest,domain=yahoo.com (easylist.txt: 48942) -.query.vap.yahoo.net/nicobarMan/ads/acctid= -# @@||adserver.yahoo.com/a?*&l=VID&$xmlhttprequest,domain=yahoo.com (easylist.txt: 47813) -.adserver.yahoo.com/a\?.*&l=VID& -# @@||adserver.yahoo.com/a?*&l=head&$script,domain=yahoo.com (easylist.txt: 47812) -.adserver.yahoo.com/a\?.*&l=head& - -#ab2p-unblock-elem-R1838 -{+client-header-tagger{ab2p-unblock-elem-R1838} \ -} -# @@||images.vantage-media.net^$domain=yahoo.net (easylistchina+easylist.txt: 58986) -.images.vantage-media.net -# @@||images.vantage-media.net^$domain=yahoo.net (easylist.txt: 48501) -.images.vantage-media.net - -#ab2p-unblock-elem-R1839 -{+client-header-tagger{ab2p-unblock-elem-R1839} \ -} -# @@/PIC/AD/*$domain=ybjk.com (easylistchina+easylist.txt: 10050) -/(.*/)?PIC/AD/.* - -#ab2p-unblock-elem-R1840 -{+client-header-tagger{ab2p-unblock-elem-R1840} \ -} -# @@||exponential.com^*/tags.js$domain=yellowbridge.com (easylistchina+easylist.txt: 60265) -.exponential.com/.*/tags\.js -# @@||exponential.com^*/tags.js$domain=yellowbridge.com (easylist.txt: 49780) -.exponential.com/.*/tags\.js - -#ab2p-unblock-elem-R1841 -{+client-header-tagger{ab2p-unblock-elem-R1841} \ -} -# @@||adap.tv/redir/javascript/adaptvAdPlayer.js$domain=yepi.com (easylistchina+easylist.txt: 58182) -.adap.tv/redir/javascript/adaptvAdPlayer\.js -# @@||adap.tv/redir/javascript/adaptvAdPlayer.js$domain=yepi.com (easylist.txt: 47697) -.adap.tv/redir/javascript/adaptvAdPlayer\.js - -#ab2p-unblock-elem-R1842 -{+client-header-tagger{ab2p-unblock-elem-R1842} \ -} -# @@||doubleclick.net/adi/yesnetwork.com/media;$subdocument,domain=yesnetwork.com (easylistchina+easylist.txt: 58704) -.doubleclick.net/adi/yesnetwork\.com/media; -# @@||doubleclick.net/adi/yesnetwork.com/media;$subdocument,domain=yesnetwork.com (easylist.txt: 48219) -.doubleclick.net/adi/yesnetwork\.com/media; - -#ab2p-unblock-elem-R1843 -{+client-header-tagger{ab2p-unblock-elem-R1843} \ -} -# @@||syndication.streamads.yahoo.com/na_stream_brewer/brew/*?cid=*&url=*&pvid=*&callback=$script,domain=yimg.com (easylistchina+easylist.txt: 59613) -.syndication.streamads.yahoo.com/na_stream_brewer/brew/.*\?cid=.*&url=.*&pvid=.*&callback= -# @@||syndication.streamads.yahoo.com/na_stream_brewer/brew/*?cid=*&url=*&pvid=*&callback=$script,domain=yimg.com (easylist.txt: 49128) -.syndication.streamads.yahoo.com/na_stream_brewer/brew/.*\?cid=.*&url=.*&pvid=.*&callback= - -#ab2p-unblock-elem-R1844 -{+client-header-tagger{ab2p-unblock-elem-R1844} \ -} -# @@||doubleclick.net/adj/yorkshire.jp/main-section;*;sz=120x600,160x600$script,domain=yorkshirepost.co.uk (easylistchina+easylist.txt: 58719) -.doubleclick.net/adj/yorkshire\.jp/main-section;.*;sz=120x600,160x600 -# @@||doubleclick.net/adj/yorkshire.jp/main-section;*;sz=120x600,160x600$script,domain=yorkshirepost.co.uk (easylist.txt: 48234) -.doubleclick.net/adj/yorkshire\.jp/main-section;.*;sz=120x600,160x600 - -#ab2p-unblock-elem-R1845 -{+client-header-tagger{ab2p-unblock-elem-R1845} \ -} -# @@||youjizz.com/videos/embed/$subdocument,domain=youjizz.com (easylistchina+easylist.txt: 61471) -.youjizz.com/videos/embed/ -# @@||as.sexad.net/as/r?d=preroll-mov-$object-subrequest,domain=youjizz.com (easylistchina+easylist.txt: 61430) -.as.sexad.net/as/r\?d=preroll-mov- -# @@||youjizz.com/videos/embed/$subdocument,domain=youjizz.com (easylist.txt: 50986) -.youjizz.com/videos/embed/ -# @@||as.sexad.net/as/r?d=preroll-mov-$object-subrequest,domain=youjizz.com (easylist.txt: 50945) -.as.sexad.net/as/r\?d=preroll-mov- - -#ab2p-unblock-elem-R1846 -{+client-header-tagger{ab2p-unblock-elem-R1846} \ -} -# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina+easylist.txt: 10124) +# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina.txt: 10107) .a.ads.cn.miaozhen.com -#ab2p-unblock-elem-R1847 -{+client-header-tagger{ab2p-unblock-elem-R1847} \ +#ab2p-unblock-elem-R328 +{+client-header-tagger{ab2p-unblock-elem-R328} \ } -# @@/cdn-cgi/pe/bag2?r*pagead2.googlesyndication.com%2Fpub-config$domain=youngcons.com (easylistchina+easylist.txt: 58106) -/(.*/)?cdn-cgi/pe/bag2\?r.*pagead2\.googlesyndication\.com%2Fpub-config -# @@/cdn-cgi/pe/bag2?r*googlesyndication.com%2Fpagead%2Fshow_ads.js$domain=youngcons.com (easylistchina+easylist.txt: 58105) -/(.*/)?cdn-cgi/pe/bag2\?r.*googlesyndication\.com%2Fpagead%2Fshow_ads\.js -# @@/cdn-cgi/pe/bag2?r*pagead2.googlesyndication.com%2Fpub-config$domain=youngcons.com (easylist.txt: 47621) -/(.*/)?cdn-cgi/pe/bag2\?r.*pagead2\.googlesyndication\.com%2Fpub-config -# @@/cdn-cgi/pe/bag2?r*googlesyndication.com%2Fpagead%2Fshow_ads.js$domain=youngcons.com (easylist.txt: 47620) -/(.*/)?cdn-cgi/pe/bag2\?r.*googlesyndication\.com%2Fpagead%2Fshow_ads\.js - -#ab2p-unblock-elem-R539 -{+client-header-tagger{ab2p-unblock-elem-R539} \ -} -# @@||ytimg.com^*/channels4_banner_hd.jpg?$domain=youtube.com (easylistchina+easylist.txt: 59864) -.ytimg.com/.*/channels4_banner_hd\.jpg\? -# @@||ytimg.com^*/channels4_banner.jpg?$domain=youtube.com (easylistchina+easylist.txt: 59863) -.ytimg.com/.*/channels4_banner\.jpg\? -# @@||ytimg.com/yts/img/channels/*_banner-*.png$domain=youtube.com (easylistchina+easylist.txt: 59862) -.ytimg.com/yts/img/channels/.*_banner-.*\.png -# @@||ytimg.com/yts/img/channels/*_banner-*.jpg$domain=youtube.com (easylistchina+easylist.txt: 59861) -.ytimg.com/yts/img/channels/.*_banner-.*\.jpg -# @@||s.ytimg.com/yts/swfbin/player-*/watch_as3.swf$object,domain=youtube.com (easylistchina+easylist.txt: 59481) -.s.ytimg.com/yts/swfbin/player-.*/watch_as3\.swf -# @@||ytimg.com^*/channels4_banner_hd.jpg?$domain=youtube.com (easylist.txt: 49379) -.ytimg.com/.*/channels4_banner_hd\.jpg\? -# @@||ytimg.com^*/channels4_banner.jpg?$domain=youtube.com (easylist.txt: 49378) -.ytimg.com/.*/channels4_banner\.jpg\? -# @@||ytimg.com/yts/img/channels/*_banner-*.png$domain=youtube.com (easylist.txt: 49377) -.ytimg.com/yts/img/channels/.*_banner-.*\.png -# @@||ytimg.com/yts/img/channels/*_banner-*.jpg$domain=youtube.com (easylist.txt: 49376) -.ytimg.com/yts/img/channels/.*_banner-.*\.jpg -# @@||s.ytimg.com/yts/swfbin/player-*/watch_as3.swf$object,domain=youtube.com (easylist.txt: 48996) -.s.ytimg.com/yts/swfbin/player-.*/watch_as3\.swf - -#ab2p-unblock-elem-R540 -{+client-header-tagger{ab2p-unblock-elem-R540} \ -} -# @@||folue.info/player/*.js|$domain=youwatch.org (easylistchina+easylist.txt: 60299) -.folue.info/player/.*\.js$ -# @@||plugins.longtailvideo.com^$script,domain=youwatch.org (easylistchina+easylist.txt: 45860) -.plugins.longtailvideo.com -# @@||ajax.googleapis.com/ajax/libs/$script,domain=youwatch.org (easylistchina+easylist.txt: 45856) -.ajax.googleapis.com/ajax/libs/ -# @@||folue.info/player/*.js|$domain=youwatch.org (easylist.txt: 49814) -.folue.info/player/.*\.js$ -# @@||plugins.longtailvideo.com^$script,domain=youwatch.org (easylist.txt: 35375) -.plugins.longtailvideo.com -# @@||ajax.googleapis.com/ajax/libs/$script,domain=youwatch.org (easylist.txt: 35371) -.ajax.googleapis.com/ajax/libs/ - -#ab2p-unblock-elem-R1848 -{+client-header-tagger{ab2p-unblock-elem-R1848} \ -} -# @@/webThunderDetect.$domain=ypan.cc (easylistchina+easylist.txt: 10061) +# @@/webThunderDetect.$domain=ypan.cc (easylistchina.txt: 10043) /(.*/)?webThunderDetect\. webThunderDetect.*. -#ab2p-unblock-elem-R1849 -{+client-header-tagger{ab2p-unblock-elem-R1849} \ +#ab2p-unblock-elem-R329 +{+client-header-tagger{ab2p-unblock-elem-R329} \ } -# @@||yttalk.com/threads/*/add-reply$domain=yttalk.com (easylistchina+easylist.txt: 59865) -.yttalk.com/threads/.*/add-reply -# @@||yttalk.com/threads/*/add-reply$domain=yttalk.com (easylist.txt: 49380) -.yttalk.com/threads/.*/add-reply - -#ab2p-unblock-elem-R1850 -{+client-header-tagger{ab2p-unblock-elem-R1850} \ -} -# @@||lp.longtailvideo.com^*/adttext/adttext.js$domain=yuvutu.com (easylistchina+easylist.txt: 61446) -.lp.longtailvideo.com/.*/adttext/adttext\.js -# @@||lp.longtailvideo.com^*/adttext/adttext.js$domain=yuvutu.com (easylist.txt: 50961) -.lp.longtailvideo.com/.*/adttext/adttext\.js - -#ab2p-unblock-elem-R1851 -{+client-header-tagger{ab2p-unblock-elem-R1851} \ -} -# @@/media/banners/*$domain=zakaz.ua|zapals.com (advblock.txt: 7204) -/(.*/)?media/banners/.* - -#ab2p-unblock-elem-R1852 -{+client-header-tagger{ab2p-unblock-elem-R1852} \ -} -# @@||promo.leadia.ru^$domain=zakonrf.info (advblock.txt: 7368) -.promo.leadia.ru - -#ab2p-unblock-elem-R1853 -{+client-header-tagger{ab2p-unblock-elem-R1853} \ -} -# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina+easylist.txt: 10134) +# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina.txt: 10118) .ad.doubleclick.net/ddm/adi/.*\.ZALORA\.COM\.HK -#ab2p-unblock-elem-R1854 -{+client-header-tagger{ab2p-unblock-elem-R1854} \ -} -# @@||zarplata.ru^*/bfile.ashx?placeid=2&$domain=zarplata.ru (advblock.txt: 7440) -.zarplata.ru/.*/bfile\.ashx\?placeid=2& - -#ab2p-unblock-elem-R544 -{+client-header-tagger{ab2p-unblock-elem-R544} \ -} -# @@||doubleclick.net^*/adx/zattoo/video_*;cue=pre;$object-subrequest,domain=zattoo.com (easylistchina+easylist.txt: 60230) -.doubleclick.net/.*/adx/zattoo/video_.*;cue=pre; -# @@||doubleclick.net^*/adx/zattoo/video_*;cue=pre;$object-subrequest,domain=zattoo.com (easylist.txt: 49745) -.doubleclick.net/.*/adx/zattoo/video_.*;cue=pre; - -#ab2p-unblock-elem-R1855 -{+client-header-tagger{ab2p-unblock-elem-R1855} \ -} -# @@||zeperfs.com^$script,domain=zeperfs.com (easylistchina+easylist.txt: 60920) -.zeperfs.com -# @@||zeperfs.com^$script,domain=zeperfs.com (easylist.txt: 50435) -.zeperfs.com - -#ab2p-unblock-elem-R1856 -{+client-header-tagger{ab2p-unblock-elem-R1856} \ -} -# @@||zerozero.pt/script/$script,domain=zerozero.pt (easylistchina+easylist.txt: 60921) -.zerozero.pt/script/ -# @@||zerozero.pt/script/$script,domain=zerozero.pt (easylist.txt: 50436) -.zerozero.pt/script/ - -#ab2p-unblock-elem-R1857 -{+client-header-tagger{ab2p-unblock-elem-R1857} \ -} -# @@||tags.bkrtx.com/js/bk-coretag.js$domain=zillow.com (easylistchina+easylist.txt: 59616) -.tags.bkrtx.com/js/bk-coretag\.js -# @@||doubleclick.net/N6619/adj/zillow.hdp/$script,domain=zillow.com (easylistchina+easylist.txt: 58724) -.doubleclick.net/N6619/adj/zillow\.hdp/ -# @@||doubleclick.net/adi/zillow.hdp/$subdocument,domain=zillow.com (easylistchina+easylist.txt: 58705) -.doubleclick.net/adi/zillow\.hdp/ -# @@||tags.bkrtx.com/js/bk-coretag.js$domain=zillow.com (easylist.txt: 49131) -.tags.bkrtx.com/js/bk-coretag\.js -# @@||doubleclick.net/N6619/adj/zillow.hdp/$script,domain=zillow.com (easylist.txt: 48239) -.doubleclick.net/N6619/adj/zillow\.hdp/ -# @@||doubleclick.net/adi/zillow.hdp/$subdocument,domain=zillow.com (easylist.txt: 48220) -.doubleclick.net/adi/zillow\.hdp/ - -#ab2p-unblock-elem-R1858 -{+client-header-tagger{ab2p-unblock-elem-R1858} \ -} -# @@||akamaihd.net^*/videoAd.js$domain=zynga.com (easylistchina+easylist.txt: 58378) -.akamaihd.net/.*/videoAd\.js -# @@||akamaihd.net^*/videoAd.js$domain=zynga.com (easylist.txt: 47893) -.akamaihd.net/.*/videoAd\.js - -#ab2p-unblock-elem-R1859 -{+client-header-tagger{ab2p-unblock-elem-R1859} \ -} -# @@||泻褍褌褟褌邪.褉褎/media/adv/$image,domain=泻褍褌褟褌邪.褉褎 (advblock.txt: 7441) -.泻褍褌褟褌邪.褉褎/media/adv/ - -#ab2p-unblock-elem-nR-Rn1860 -{+client-header-tagger{ab2p-unblock-elem-Rn1860} \ +#ab2p-unblock-elem-nR-Rn187 +{+client-header-tagger{ab2p-unblock-elem-Rn187} \ +client-header-tagger{ab2p-unblock-elem-nR} \ } -# @@||liverail.com/js/LiveRail.AdManager$script,domain=~bluray-disc.de (easylistchina+easylist.txt: 59102) -.liverail.com/js/LiveRail\.AdManager -# @@||liverail.com/js/LiveRail.AdManager$script,domain=~bluray-disc.de (easylist.txt: 48617) -.liverail.com/js/LiveRail\.AdManager - -#ab2p-unblock-elem-nR-Rn1861 -{+client-header-tagger{ab2p-unblock-elem-Rn1861} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||tidaltv.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylistchina+easylist.txt: 59659) -.tidaltv.com/crossdomain\.xml -# @@||innovid.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylistchina+easylist.txt: 59010) -.innovid.com/crossdomain\.xml -# @@||tidaltv.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylist.txt: 49174) -.tidaltv.com/crossdomain\.xml -# @@||innovid.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylist.txt: 48525) -.innovid.com/crossdomain\.xml - -#ab2p-unblock-elem-nR-Rn1862 -{+client-header-tagger{ab2p-unblock-elem-Rn1862} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||videonow.ru^*/ad_holder.$domain=~cybergame.tv (advblock.txt: 7426) -.videonow.ru/.*/ad_holder\. - -#ab2p-unblock-elem-nR-Rn1863 -{+client-header-tagger{ab2p-unblock-elem-Rn1863} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||g.doubleclick.net/crossdomain.xml$object-subrequest,domain=~filmon.tv|~newgrounds.com (easylistchina+easylist.txt: 58849) -.g.doubleclick.net/crossdomain\.xml -# @@||g.doubleclick.net/crossdomain.xml$object-subrequest,domain=~filmon.tv|~newgrounds.com (easylist.txt: 48364) -.g.doubleclick.net/crossdomain\.xml - -#ab2p-unblock-elem-nR-Rn641 -{+client-header-tagger{ab2p-unblock-elem-Rn641} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||209.222.8.217/crossdomain.xml$object-subrequest,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 58116) -.209.222.8.217/crossdomain\.xml -# @@||209.222.8.217/crossdomain.xml$object-subrequest,domain=~p2p.adserver.ip (easylist.txt: 47631) -.209.222.8.217/crossdomain\.xml - -#ab2p-unblock-elem-nR-Rn1864 -{+client-header-tagger{ab2p-unblock-elem-Rn1864} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||adocean.pl/crossdomain.xml$object-subrequest,domain=~patrz.pl (easylistchina+easylist.txt: 60937) -.adocean.pl/crossdomain\.xml -# @@||adocean.pl/crossdomain.xml$object-subrequest,domain=~patrz.pl (easylist.txt: 50452) -.adocean.pl/crossdomain\.xml - -#ab2p-unblock-elem-nR-Rn1865 -{+client-header-tagger{ab2p-unblock-elem-Rn1865} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina+easylist.txt: 10432) +# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina.txt: 10420) .yimg.com/zz/combo\?.*&.*\.css -#ab2p-unblock-elem-nR-Rn761 -{+client-header-tagger{ab2p-unblock-elem-Rn761} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||adocean.pl^*^aocodetype=$object-subrequest,domain=~superfilm.pl (easylistchina+easylist.txt: 60940) -.adocean.pl/.*[^\w%.-]aocodetype= -# @@||2mdn.net/instream/html5/ima3.js$domain=~superfilm.pl (easylistchina+easylist.txt: 58123) -.2mdn.net/instream/html5/ima3\.js -# @@||adocean.pl^*^aocodetype=$object-subrequest,domain=~superfilm.pl (easylist.txt: 50455) -.adocean.pl/.*[^\w%.-]aocodetype= -# @@||2mdn.net/instream/html5/ima3.js$domain=~superfilm.pl (easylist.txt: 47638) -.2mdn.net/instream/html5/ima3\.js - -#ab2p-unblock-elem-nR-Rn1866 -{+client-header-tagger{ab2p-unblock-elem-Rn1866} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||oas.bigflix.com/realmedia/ads/$object-subrequest,domain=~tamilflix.net (easylistchina+easylist.txt: 59271) -.oas.bigflix.com/realmedia/ads/ -# @@||oas.bigflix.com/realmedia/ads/$object-subrequest,domain=~tamilflix.net (easylist.txt: 48786) -.oas.bigflix.com/realmedia/ads/ - -#ab2p-unblock-elem-nR-Rn1867 -{+client-header-tagger{ab2p-unblock-elem-Rn1867} \ - +client-header-tagger{ab2p-unblock-elem-nR} \ -} -# @@||adtech.de/crossdomain.xml$object-subrequest,domain=~zattoo.com (easylistchina+easylist.txt: 58318) -.adtech.de/crossdomain\.xml -# @@||adtech.de/crossdomain.xml$object-subrequest,domain=~zattoo.com (easylist.txt: 47833) -.adtech.de/crossdomain\.xml - #ab2p-unblock-request {-block \ -server-header-tagger{ab2p-block-s} \ @@ -364271,8629 +37265,686 @@ webThunderDetect.*. +client-header-tagger{ab2b-unblock-u} \ } TAG:^ab2p-unblock-request$ -# @@||imagebam.com/image/$popup (easylistchina+easylist.txt: 61794) -.imagebam.com/image/ -# @@||youngmodelsclub.net^$elemhide (easylistchina+easylist.txt: 61785) -.youngmodelsclub.net -# @@||youfreeporntube.com^$generichide (easylistchina+easylist.txt: 61784) -.youfreeporntube.com -# @@||you-fap.com^$elemhide (easylistchina+easylist.txt: 61783) -.you-fap.com -# @@||xibitnet.com/check/advertisements.js (easylistchina+easylist.txt: 61782) -.xibitnet.com/check/advertisements\.js -# @@||xibitnet.com/check/advertisement.js (easylistchina+easylist.txt: 61781) -.xibitnet.com/check/advertisement\.js -# @@||tube8.com/js/advertisement.js (easylistchina+easylist.txt: 61780) -.tube8.com/js/advertisement\.js -# @@||trafficjunky.net/js/ad*.js (easylistchina+easylist.txt: 61779) -.trafficjunky.net/js/ad.*\.js -# @@||thisav.com^$elemhide (easylistchina+easylist.txt: 61777) -.thisav.com -# @@||sexvidx.tv/js/eroex.js (easylistchina+easylist.txt: 61774) -.sexvidx.tv/js/eroex\.js -# @@||pornve.com^$elemhide (easylistchina+easylist.txt: 61772) -.pornve.com -# @@||pornfun.com/js/ads.js (easylistchina+easylist.txt: 61770) -.pornfun.com/js/ads\.js -# @@||porndoo.com/showads.js (easylistchina+easylist.txt: 61769) -.porndoo.com/showads\.js -# @@||phncdn.com^*/fuckadblock.js (easylistchina+easylist.txt: 61767) -.phncdn.com/.*/fuckadblock\.js -# @@||phncdn.com^*/ads.js (easylistchina+easylist.txt: 61766) -.phncdn.com/.*/ads\.js -# @@||phncdn.com/js/advertisement.js (easylistchina+easylist.txt: 61764) -.phncdn.com/js/advertisement\.js -# @@||palaotog.net^$elemhide (easylistchina+easylist.txt: 61763) -.palaotog.net -# @@||openload.io/Ads.png (easylistchina+easylist.txt: 61762) -.openload.io/Ads\.png -# @@||ooporn.com/ads.js (easylistchina+easylist.txt: 61761) -.ooporn.com/ads\.js -# @@||nightchan.com/advertisement.js (easylistchina+easylist.txt: 61760) -.nightchan.com/advertisement\.js -# @@||n4mo.org^$elemhide (easylistchina+easylist.txt: 61759) -.n4mo.org -# @@||n4mo.org/wp-content/*/ads/ (easylistchina+easylist.txt: 61758) -.n4mo.org/wp-content/.*/ads/ -# @@||lfporn.com^$elemhide (easylistchina+easylist.txt: 61756) -.lfporn.com -# @@||jporn4u.com/js/ads.js (easylistchina+easylist.txt: 61754) -.jporn4u.com/js/ads\.js -# @@||javstar.net^$elemhide (easylistchina+easylist.txt: 61752) -.javstar.net -# @@||javpee.com/eroex.js (easylistchina+easylist.txt: 61751) -.javpee.com/eroex\.js -# @@||javhub.net^$elemhide (easylistchina+easylist.txt: 61749) -.javhub.net -# @@||indiangilma.com^$elemhide (easylistchina+easylist.txt: 61744) -.indiangilma.com -# @@||imgadult.com/js/advertisement.js (easylistchina+easylist.txt: 61743) -.imgadult.com/js/advertisement\.js -# @@||hentaimoe.com/js/advertisement.js (easylistchina+easylist.txt: 61742) -.hentaimoe.com/js/advertisement\.js -# @@||hentaihaven.org^*/fuckadblock.js (easylistchina+easylist.txt: 61741) -.hentaihaven.org/.*/fuckadblock\.js -# @@||hentaienespa帽ol.net^$elemhide (easylistchina+easylist.txt: 61740) -.hentaienespa帽ol.net -# @@||hellojav.com^$elemhide (easylistchina+easylist.txt: 61739) -.hellojav.com -# @@||fuqer.com^*/advertisement.js (easylistchina+easylist.txt: 61736) -.fuqer.com/.*/advertisement\.js -# @@||fapxl.com^$elemhide (easylistchina+easylist.txt: 61735) -.fapxl.com -# @@||desihoes.com/advertisement.js (easylistchina+easylist.txt: 61734) -.desihoes.com/advertisement\.js -# @@||ad.thisav.com/player/swfobject.js (easylistchina+easylist.txt: 61732) -.ad.thisav.com/player/swfobject\.js -# @@||25643e662a2.com/ad*.js (easylistchina+easylist.txt: 61731) -.25643e662a2.com/ad.*\.js -# @@||209.58.131.22^*/advertisement.js (easylistchina+easylist.txt: 61730) -.209.58.131.22/.*/advertisement\.js -# @@||1986a44b12e.com/googlead.js (easylistchina+easylist.txt: 61729) -.1986a44b12e.com/googlead\.js -# @@||1986a44b12e.com/Ad*.js (easylistchina+easylist.txt: 61728) -.1986a44b12e.com/Ad.*\.js -# @@||tube8.com/favicon.ico (easylistchina+easylist.txt: 61706) -.tube8.com/favicon\.ico -# @@||redtube.com/htmllogin| (easylistchina+easylist.txt: 61679) -.redtube.com/htmllogin$ -# @@||pornhub.com/oauth2/authorize?$popup (easylistchina+easylist.txt: 61653) -.pornhub.com/oauth2/authorize\? -# @@||xxxporntalk.com/images/xxxpt-chrome.jpg (easylistchina+easylist.txt: 61470) -.xxxporntalk.com/images/xxxpt-chrome\.jpg -# @@||xhcdn.com/images/flag/AD.gif (easylistchina+easylist.txt: 61469) -.xhcdn.com/images/flag/AD\.gif -# @@||starcelebs.com/logos/logo10.jpg (easylistchina+easylist.txt: 61458) -.starcelebs.com/logos/logo10\.jpg -# @@||skimtube.com/advertisements.php? (easylistchina+easylist.txt: 61457) -.skimtube.com/advertisements\.php\? -# @@||nonktube.com/img/adyea.jpg (easylistchina+easylist.txt: 61450) -.nonktube.com/img/adyea\.jpg -# @@||kuntfutube.com/go.php?ad= (easylistchina+easylist.txt: 61445) -.kuntfutube.com/go\.php\?ad= -# @@||fucktube.com/work/videoad.php? (easylistchina+easylist.txt: 61437) -.fucktube.com/work/videoad\.php\? -# @@||burningcamel.com/ads/banner.jpg (easylistchina+easylist.txt: 61433) -.burningcamel.com/ads/banner\.jpg -# @@||ad.thisav.com/player/jw.swf (easylistchina+easylist.txt: 61426) -.ad.thisav.com/player/jw\.swf -# @@||gsmarena.com/adclick.php?bannerid=$popup (easylistchina+easylist.txt: 61413) -.gsmarena.com/adclick\.php\?bannerid= -# @@||adv.blogupp.com^$popup (easylistchina+easylist.txt: 61403) -.adv.blogupp.com -# @@||zorza-polarna.pl/environment/cache/images/300_250_ (easylistchina+easylist.txt: 61391) -.zorza-polarna.pl/environment/cache/images/300_250_ -# @@||weatherbug.com/style/stickers/*_728x90.css (easylistchina+easylist.txt: 61389) -.weatherbug.com/style/stickers/.*_728x90\.css -# @@||weatherbug.com/images/stickers/*/728x90/ (easylistchina+easylist.txt: 61388) -.weatherbug.com/images/stickers/.*/728x90/ -# @@||weatherbug.com/desktop-weather/*=728x90& (easylistchina+easylist.txt: 61387) -.weatherbug.com/desktop-weather/.*=728x90& -# @@||w3easy.org/templates/*_120x60_ (easylistchina+easylist.txt: 61385) -.w3easy.org/templates/.*_120x60_ -# @@||w3easy.org/templates/*_120x60. (easylistchina+easylist.txt: 61384) -.w3easy.org/templates/.*_120x60\. -# @@||vortex.accuweather.com^*_300x250_bg.jpg (easylistchina+easylist.txt: 61383) -.vortex.accuweather.com/.*_300x250_bg\.jpg -# @@||vortex.accuweather.com^*_160x600_bg.jpg (easylistchina+easylist.txt: 61382) -.vortex.accuweather.com/.*_160x600_bg\.jpg -# @@||vortex.accuweather.com^*_120x60_bg.jpg (easylistchina+easylist.txt: 61381) -.vortex.accuweather.com/.*_120x60_bg\.jpg -# @@||usopen.org/images/pics/misc/*.300x250.jpg (easylistchina+easylist.txt: 61379) -.usopen.org/images/pics/misc/.*\.300x250\.jpg -# @@||usanetwork.com/sites/usanetwork/*300x250 (easylistchina+easylist.txt: 61378) -.usanetwork.com/sites/usanetwork/.*300x250 -# @@||turner.com/v5cache/TCM/Images/*_120x60_ (easylistchina+easylist.txt: 61375) -.turner.com/v5cache/TCM/Images/.*_120x60_ -# @@||turner.com/v5cache/TCM/images/*_120x60. (easylistchina+easylist.txt: 61374) -.turner.com/v5cache/TCM/images/.*_120x60\. -# @@||tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/*_120_60.jpg (easylistchina+easylist.txt: 61373) -.tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/.*_120_60\.jpg -# @@||static-origin.openedition.org^*-120x240.jpg (easylistchina+easylist.txt: 61368) -.static-origin.openedition.org/.*-120x240\.jpg -# @@||rehabs.com^*/xicons_social_sprite_400x60.png (easylistchina+easylist.txt: 61365) -.rehabs.com/.*/xicons_social_sprite_400x60\.png -# @@||quisqualis.com/QBanner_760x100.jpg (easylistchina+easylist.txt: 61363) -.quisqualis.com/QBanner_760x100\.jpg -# @@||opposingviews.com^*/300x250/ (easylistchina+easylist.txt: 61361) -.opposingviews.com/.*/300x250/ -# @@||onescreen.net/os/static/widgets/*300x250 (easylistchina+easylist.txt: 61360) -.onescreen.net/os/static/widgets/.*300x250 -# @@||nationalgeographic.com/exposure/content/*300x250 (easylistchina+easylist.txt: 61359) -.nationalgeographic.com/exposure/content/.*300x250 -# @@||mxtoolbox.com/Public/images/banners/Mx-Pro-160x600.jpg (easylistchina+easylist.txt: 61358) -.mxtoolbox.com/Public/images/banners/Mx-Pro-160x600\.jpg -# @@||motherboard.tv/content-images/*_120x60. (easylistchina+easylist.txt: 61355) -.motherboard.tv/content-images/.*_120x60\. -# @@||marketing.beatport.com.s3.amazonaws.com^*/728x90_ (easylistchina+easylist.txt: 61352) -.marketing.beatport.com.s3.amazonaws.com/.*/728x90_ -# @@||maps.googleapis.com/maps/api/*=300x250& (easylistchina+easylist.txt: 61351) -.maps.googleapis.com/maps/api/.*=300x250& -# @@||komikslandia.pl/environment/cache/images/300_250_ (easylistchina+easylist.txt: 61348) -.komikslandia.pl/environment/cache/images/300_250_ -# @@||imdb.com/images/*doubleclick/*320x240 (easylistchina+easylist.txt: 61346) -.imdb.com/images/.*doubleclick/.*320x240 -# @@||imdb.com/images/*doubleclick/*300x250 (easylistchina+easylist.txt: 61345) -.imdb.com/images/.*doubleclick/.*300x250 -# @@||harpers.co.uk/pictures/300x250/ (easylistchina+easylist.txt: 61337) -.harpers.co.uk/pictures/300x250/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?*=300x250& (easylistchina+easylist.txt: 61336) -.google.com/uds/modules/elements/newsshow/iframe\.html\?.*=300x250& -# @@||freetvhub.com/ad1_300x250.html (easylistchina+easylist.txt: 61335) -.freetvhub.com/ad1_300x250\.html -# @@||firestormgames.co.uk/image/*-120x60. (easylistchina+easylist.txt: 61332) -.firestormgames.co.uk/image/.*-120x60\. -# @@||film.com/plugins/*-300x250 (easylistchina+easylist.txt: 61330) -.film.com/plugins/.*-300x250 -# @@||efvi.eu/badge/*-120x60.png (easylistchina+easylist.txt: 61328) -.efvi.eu/badge/.*-120x60\.png -# @@||disney.com.au/global/swf/banner160x600.swf (easylistchina+easylist.txt: 61326) -.disney.com.au/global/swf/banner160x600\.swf -# @@||disney.com.au/global/swf/*728x90.swf (easylistchina+easylist.txt: 61325) -.disney.com.au/global/swf/.*728x90\.swf -# @@||discovery.com^*/ratio-size/pixel-ratio/300x250.png (easylistchina+easylist.txt: 61324) -.discovery.com/.*/ratio-size/pixel-ratio/300x250\.png -# @@||dawn.com/wp-content/uploads/*_300x250.jpg (easylistchina+easylist.txt: 61323) -.dawn.com/wp-content/uploads/.*_300x250\.jpg -# @@||crowdignite.com/img/upload/*300x250 (easylistchina+easylist.txt: 61321) -.crowdignite.com/img/upload/.*300x250 -# @@||consumerist-com.wpengine.netdna-cdn.com/assets/*300x250 (easylistchina+easylist.txt: 61320) -.consumerist-com.wpengine.netdna-cdn.com/assets/.*300x250 -# @@||cinemanow.com/images/banners/300x250/ (easylistchina+easylist.txt: 61319) -.cinemanow.com/images/banners/300x250/ -# @@||canada.com/news/*-300-250.gif (easylistchina+easylist.txt: 61318) -.canada.com/news/.*-300-250\.gif -# @@||assets2.plinxmedia.net^*_300x250. (easylistchina+easylist.txt: 61315) -.assets2.plinxmedia.net/.*_300x250\. -# @@||assets1.plinxmedia.net^*_300x250. (easylistchina+easylist.txt: 61314) -.assets1.plinxmedia.net/.*_300x250\. -# @@||assets.vice.com^*_120x60.jpg (easylistchina+easylist.txt: 61313) -.assets.vice.com/.*_120x60\.jpg -# @@||artserieshotels.com.au/images/*_460_60. (easylistchina+easylist.txt: 61312) -.artserieshotels.com.au/images/.*_460_60\. -# @@||arnhemland-safaris.com/images/*_480_80_ (easylistchina+easylist.txt: 61311) -.arnhemland-safaris.com/images/.*_480_80_ -# @@||publisher.adservice.com^$elemhide (easylistchina+easylist.txt: 61298) -.publisher.adservice.com -# @@||adservicemedia.dk^$elemhide (easylistchina+easylist.txt: 61295) -.adservicemedia.dk -# @@||ads.acesse.com^$elemhide (easylistchina+easylist.txt: 61273) -.ads.acesse.com -# @@||ads.stumbleupon.com^$popup (easylistchina+easylist.txt: 61268) -.ads.stumbleupon.com -# @@||app.adroll.com^$elemhide (easylistchina+easylist.txt: 61246) -.app.adroll.com -# @@||vk.com/ads$elemhide (easylistchina+easylist.txt: 61232) -.vk.com/ads -# @@||paymentgate.ru/payment/*_Advert/ (easylistchina+easylist.txt: 61231) -.paymentgate.ru/payment/.*_Advert/ -# @@||authentication-api.skimlinks.com^ (easylistchina+easylist.txt: 61224) -.authentication-api.skimlinks.com -# @@||api-merchants.skimlinks.com^ (easylistchina+easylist.txt: 61223) -.api-merchants.skimlinks.com -# @@||www.google.com/doubleclick/images/favicon.ico (easylistchina+easylist.txt: 61191) -.www.google.com/doubleclick/images/favicon\.ico -# @@||www.google.com/adwords/$elemhide (easylistchina+easylist.txt: 61188) -.www.google.com/adwords/ -# @@||www.google.*/ads/images/ (easylistchina+easylist.txt: 61181) -.www.google.*./(.*/)?ads/images/ -# @@||www.google.*/ads/*/images/ (easylistchina+easylist.txt: 61179) -.www.google.*./(.*/)?ads/.*/images/ -# @@||www.facebook.com/ads/$elemhide (easylistchina+easylist.txt: 61159) -.www.facebook.com/ads/ -# @@||ziarelive.ro/assets/js/advertisement.js (easylistchina+easylist.txt: 61154) -.ziarelive.ro/assets/js/advertisement\.js -# @@||yapo.cl/js/viewad.js? (easylistchina+easylist.txt: 61152) -.yapo.cl/js/viewad\.js\? -# @@||varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel.js (easylistchina+easylist.txt: 61141) -.varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel\.js -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.php (easylistchina+easylist.txt: 61137) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.php -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.js (easylistchina+easylist.txt: 61136) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.js -# @@||trrsf.com^*/admanager.js (easylistchina+easylist.txt: 61135) -.trrsf.com/.*/admanager\.js -# @@||thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend.js (easylistchina+easylist.txt: 61131) -.thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend\.js -# @@||submarino.com.br/openx/www/delivery/ (easylistchina+easylist.txt: 61127) -.submarino.com.br/openx/www/delivery/ -# @@||style.seznam.cz/ad/im.js (easylistchina+easylist.txt: 61126) -.style.seznam.cz/ad/im\.js -# @@||start.no/includes/js/adCode.js (easylistchina+easylist.txt: 61123) -.start.no/includes/js/adCode\.js -# @@||soov.ee/js/newad.js (easylistchina+easylist.txt: 61120) -.soov.ee/js/newad\.js -# @@||sigmalive.com/assets/js/jquery.openxtag.js (easylistchina+easylist.txt: 61110) -.sigmalive.com/assets/js/jquery\.openxtag\.js -# @@||s-nk.pl/img/ads/icons_pack (easylistchina+easylist.txt: 61104) -.s-nk.pl/img/ads/icons_pack -# @@||run.admost.com/adx/js/admost.js? (easylistchina+easylist.txt: 61103) -.run.admost.com/adx/js/admost\.js\? -# @@||run.admost.com/adx/get.ashx?z=*&accptck=true&nojs=1 (easylistchina+easylist.txt: 61102) -.run.admost.com/adx/get\.ashx\?z=.*&accptck=true&nojs=1 -# @@||rtl.lu/ipljs/adtech_async.js (easylistchina+easylist.txt: 61101) -.rtl.lu/ipljs/adtech_async\.js -# @@||rocking.gr/js/jquery.dfp.min.js (easylistchina+easylist.txt: 61100) -.rocking.gr/js/jquery\.dfp\.min\.js -# @@||ring.bg/adserver/adall.php?*&video_on_page=1 (easylistchina+easylist.txt: 61099) -.ring.bg/adserver/adall\.php\?.*&video_on_page=1 -# @@||quebarato.com.br/css/static/ad_search.css (easylistchina+easylist.txt: 61095) -.quebarato.com.br/css/static/ad_search\.css -# @@||quebarato.com.br/css/static/ad_detail.css (easylistchina+easylist.txt: 61094) -.quebarato.com.br/css/static/ad_detail\.css -# @@||ptchan.net/imagens/banner.php (easylistchina+easylist.txt: 61092) -.ptchan.net/imagens/banner\.php -# @@||psoe.es/Areas/Affiliation/ (easylistchina+easylist.txt: 61091) -.psoe.es/Areas/Affiliation/ -# @@||peoplegreece.com/assets/js/adtech_res.js (easylistchina+easylist.txt: 61084) -.peoplegreece.com/assets/js/adtech_res\.js -# @@||openx.zomoto.nl/live/www/delivery/spcjs.php?id= (easylistchina+easylist.txt: 61081) -.openx.zomoto.nl/live/www/delivery/spcjs\.php\?id= -# @@||openx.zomoto.nl/live/www/delivery/fl.js (easylistchina+easylist.txt: 61080) -.openx.zomoto.nl/live/www/delivery/fl\.js -# @@||openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null.jpg (easylistchina+easylist.txt: 61079) -.openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null\.jpg -# @@||nordjyske.dk/scripts/ads/StoryAds.js (easylistchina+easylist.txt: 61073) -.nordjyske.dk/scripts/ads/StoryAds\.js -# @@||mynet.com/nocache/adocean.js? (easylistchina+easylist.txt: 61070) -.mynet.com/nocache/adocean\.js\? -# @@||mynet.com.tr/nocache/adocean.js? (easylistchina+easylist.txt: 61069) -.mynet.com.tr/nocache/adocean\.js\? -# @@||minuripsmed.ee/templates/*/images/advert.gif (easylistchina+easylist.txt: 61062) -.minuripsmed.ee/templates/.*/images/advert\.gif -# @@||lrytas.lt/ads/video_feed.js (easylistchina+easylist.txt: 61059) -.lrytas.lt/ads/video_feed\.js -# @@||kompas.com^*/supersized.*.min_ads.js? (easylistchina+easylist.txt: 61053) -.kompas.com/.*/supersized\..*\.min_ads\.js\? -# @@||kanalfrederikshavn.dk^*/jquery.openx.js? (easylistchina+easylist.txt: 61052) -.kanalfrederikshavn.dk/.*/jquery\.openx\.js\? -# @@||jesper.nu/javascript/libs/videoads.js (easylistchina+easylist.txt: 61050) -.jesper.nu/javascript/libs/videoads\.js -# @@||izigo.pt^*/adsearch? (easylistchina+easylist.txt: 61049) -.izigo.pt/.*/adsearch\? -# @@||izigo.pt/AdPictures/ (easylistchina+easylist.txt: 61048) -.izigo.pt/AdPictures/ -# @@||islafenice.net^*/adsense.js (easylistchina+easylist.txt: 61047) -.islafenice.net/.*/adsense\.js -# @@||hry.cz/ad/adcode.js (easylistchina+easylist.txt: 61040) -.hry.cz/ad/adcode\.js -# @@||fotosioon.com/wp-content/*/images/advert.gif (easylistchina+easylist.txt: 61030) -.fotosioon.com/wp-content/.*/images/advert\.gif -# @@||fotolog.com/styles/flags/ad.gif (easylistchina+easylist.txt: 61029) -.fotolog.com/styles/flags/ad\.gif -# @@||fotojorgen.no/images/*/webadverts/ (easylistchina+easylist.txt: 61028) -.fotojorgen.no/images/.*/webadverts/ -# @@||filmon.com/ad/affiliateimages/banner-250x350.png (easylistchina+easylist.txt: 61025) -.filmon.com/ad/affiliateimages/banner-250x350\.png -# @@||felcia.co.uk/js/ads_common.js (easylistchina+easylist.txt: 61024) -.felcia.co.uk/js/ads_common\.js -# @@||felcia.co.uk/css/advert-view.css (easylistchina+easylist.txt: 61023) -.felcia.co.uk/css/advert-view\.css -# @@||felcia.co.uk/css/ads-common.css (easylistchina+easylist.txt: 61022) -.felcia.co.uk/css/ads-common\.css -# @@||ettevotja.ee/templates/*/images/advert.gif (easylistchina+easylist.txt: 61018) -.ettevotja.ee/templates/.*/images/advert\.gif -# @@||epaper.andhrajyothy.com/js/newads.js (easylistchina+easylist.txt: 61017) -.epaper.andhrajyothy.com/js/newads\.js -# @@||di.se^*/advertisement.js (easylistchina+easylist.txt: 61003) -.di.se/.*/advertisement\.js -# @@||di.se^$generichide (easylistchina+easylist.txt: 61002) -.di.se -# @@||custojusto.pt/user/myads/ (easylistchina+easylist.txt: 61001) -.custojusto.pt/user/myads/ -# @@||bomnegocio.com/css/ad_insert.css (easylistchina+easylist.txt: 60997) -.bomnegocio.com/css/ad_insert\.css -# @@||bolha.com/css/ad.css? (easylistchina+easylist.txt: 60996) -.bolha.com/css/ad\.css\? -# @@||bnrs.ilm.ee/www/delivery/fl.js (easylistchina+easylist.txt: 60995) -.bnrs.ilm.ee/www/delivery/fl\.js -# @@||bmwoglasnik.si/images/ads/ (easylistchina+easylist.txt: 60993) -.bmwoglasnik.si/images/ads/ -# @@||blocket.se^*/newad.js (easylistchina+easylist.txt: 60992) -.blocket.se/.*/newad\.js -# @@||biancolavoro.euspert.com/js/ad.js (easylistchina+easylist.txt: 60991) -.biancolavoro.euspert.com/js/ad\.js -# @@||bancainternet.com.ar/eBanking/images/*-PUBLICIDAD. (easylistchina+easylist.txt: 60986) -.bancainternet.com.ar/eBanking/images/.*-PUBLICIDAD\. -# @@||autoscout24.*/all.js.aspx?m=css&*=/stylesheets/adbanner.css (easylistchina+easylist.txt: 60984) -.autoscout24.*./(.*/)?all\.js\.aspx\?m=css&.*=/stylesheets/adbanner\.css -# @@||advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page.gif (easylistchina+easylist.txt: 60966) -.advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page\.gif -# @@||ads.nicovideo.jp/assets/js/ads-*.js (easylistchina+easylist.txt: 60946) -.ads.nicovideo.jp/assets/js/ads-.*\.js -# @@||ad.e-kolay.net/mnetorfad.js (easylistchina+easylist.txt: 60931) -.ad.e-kolay.net/mnetorfad\.js -# @@||ad.e-kolay.net/Medyanet.js (easylistchina+easylist.txt: 60930) -.ad.e-kolay.net/Medyanet\.js -# @@||ad.e-kolay.net/jquery-*-Medyanet.min.js (easylistchina+easylist.txt: 60929) -.ad.e-kolay.net/jquery-.*-Medyanet\.min\.js -# @@||ad.e-kolay.net/ad.js (easylistchina+easylist.txt: 60928) -.ad.e-kolay.net/ad\.js -# @@||zman.com/adv/ova/overlay.xml (easylistchina+easylist.txt: 60922) -.zman.com/adv/ova/overlay\.xml -# @@||ytconv.net/*google_ads.js (easylistchina+easylist.txt: 60918) -.ytconv.net/.*google_ads\.js -# @@||youwatch.org^$elemhide (easylistchina+easylist.txt: 60916) -.youwatch.org -# @@||youwatch.org/adframe.js (easylistchina+easylist.txt: 60915) -.youwatch.org/adframe\.js -# @@||yellowbridge.com^*/advertisement.js (easylistchina+easylist.txt: 60913) -.yellowbridge.com/.*/advertisement\.js -# @@||yellowbridge.com^$elemhide (easylistchina+easylist.txt: 60912) -.yellowbridge.com -# @@||yellowbridge.com/ad/show_ads.js (easylistchina+easylist.txt: 60911) -.yellowbridge.com/ad/show_ads\.js -# @@||yasni.*/adframe.js (easylistchina+easylist.txt: 60910) -.yasni.*./(.*/)?adframe\.js -# @@||xup.in^$elemhide (easylistchina+easylist.txt: 60909) -.xup.in -# @@||xooimg.com/magesy/js-cdn/adblock.js (easylistchina+easylist.txt: 60908) -.xooimg.com/magesy/js-cdn/adblock\.js -# @@||xlocker.net^$elemhide (easylistchina+easylist.txt: 60907) -.xlocker.net -# @@||www.vg.no^$elemhide (easylistchina+easylist.txt: 60906) -.www.vg.no -# @@||wwe2day.tv^$elemhide (easylistchina+easylist.txt: 60905) -.wwe2day.tv -# @@||wrestlingtalk.org^$elemhide (easylistchina+easylist.txt: 60903) -.wrestlingtalk.org -# @@||wowhq.eu^$elemhide (easylistchina+easylist.txt: 60902) -.wowhq.eu -# @@||wowebook.org^$elemhide (easylistchina+easylist.txt: 60901) -.wowebook.org -# @@||worldofapk.tk^$elemhide (easylistchina+easylist.txt: 60900) -.worldofapk.tk -# @@||world-of-hentai.to/advertisement.js (easylistchina+easylist.txt: 60899) -.world-of-hentai.to/advertisement\.js -# @@||windows7themes.net/wp-content/advert.js (easylistchina+easylist.txt: 60897) -.windows7themes.net/wp-content/advert\.js -# @@||win-free-bitcoins.eu^$elemhide (easylistchina+easylist.txt: 60896) -.win-free-bitcoins.eu -# @@||whatsapprb.blogspot.com^$elemhide (easylistchina+easylist.txt: 60894) -.whatsapprb.blogspot.com -# @@||weshare.me^$elemhide (easylistchina+easylist.txt: 60893) -.weshare.me -# @@||weshare.me/fuckadblock.js (easylistchina+easylist.txt: 60892) -.weshare.me/fuckadblock\.js -# @@||welovebtc.com/show_ads.js (easylistchina+easylist.txt: 60891) -.welovebtc.com/show_ads\.js -# @@||webtv.rs/media/blic/advertisement.jpg (easylistchina+easylist.txt: 60890) -.webtv.rs/media/blic/advertisement\.jpg -# @@||webtoolhub.com^$elemhide (easylistchina+easylist.txt: 60889) -.webtoolhub.com -# @@||webfirstrow.eu^*/advertisement.js (easylistchina+easylist.txt: 60888) -.webfirstrow.eu/.*/advertisement\.js -# @@||webfirstrow.eu/advertisement.js (easylistchina+easylist.txt: 60887) -.webfirstrow.eu/advertisement\.js -# @@||weather.com^*/advertisement.js (easylistchina+easylist.txt: 60886) -.weather.com/.*/advertisement\.js -# @@||watchcartoononline.com/advertisement.js (easylistchina+easylist.txt: 60885) -.watchcartoononline.com/advertisement\.js -# @@||wallpapersimages.co.uk^$elemhide (easylistchina+easylist.txt: 60883) -.wallpapersimages.co.uk -# @@||wallpapermania.eu/assets/js/advertisement.js (easylistchina+easylist.txt: 60882) -.wallpapermania.eu/assets/js/advertisement\.js -# @@||vivotvhd.com^$elemhide (easylistchina+easylist.txt: 60880) -.vivotvhd.com -# @@||virtualpets.com^*/ads.js (easylistchina+easylist.txt: 60879) -.virtualpets.com/.*/ads\.js -# @@||vipleague.se/js/ads.js (easylistchina+easylist.txt: 60878) -.vipleague.se/js/ads\.js -# @@||vipbox.tv/js/ads.js (easylistchina+easylist.txt: 60877) -.vipbox.tv/js/ads\.js -# @@||vietvbb.vn/up/clientscript/google_ads.js (easylistchina+easylist.txt: 60875) -.vietvbb.vn/up/clientscript/google_ads\.js -# @@||videomega.tv^$elemhide (easylistchina+easylist.txt: 60868) -.videomega.tv -# @@||videomega.tv/pub/interstitial.css (easylistchina+easylist.txt: 60867) -.videomega.tv/pub/interstitial\.css -# @@||videocelebrities.eu^*/adframe/ (easylistchina+easylist.txt: 60866) -.videocelebrities.eu/.*/adframe/ -# @@||vgunetwork.com/public/js/*/advertisement.js (easylistchina+easylist.txt: 60864) -.vgunetwork.com/public/js/.*/advertisement\.js -# @@||verticalscope.com/js/advert.js (easylistchina+easylist.txt: 60863) -.verticalscope.com/js/advert\.js -# @@||vercanalestv.com^$elemhide (easylistchina+easylist.txt: 60862) -.vercanalestv.com -# @@||ver-flv.com^$elemhide (easylistchina+easylist.txt: 60861) -.ver-flv.com -# @@||vencko.net^$elemhide (easylistchina+easylist.txt: 60859) -.vencko.net -# @@||velocity.com^$elemhide (easylistchina+easylist.txt: 60858) -.velocity.com -# @@||veedi.com^*/ADS.js (easylistchina+easylist.txt: 60857) -.veedi.com/.*/ADS\.js -# @@||usaupload.net/ads.js (easylistchina+easylist.txt: 60852) -.usaupload.net/ads\.js -# @@||url4u.org^$elemhide (easylistchina+easylist.txt: 60850) -.url4u.org -# @@||urduustaad.com^$elemhide (easylistchina+easylist.txt: 60848) -.urduustaad.com -# @@||urdupoint.com/js/advertisement.js (easylistchina+easylist.txt: 60846) -.urdupoint.com/js/advertisement\.js -# @@||uptobox.com^$elemhide (easylistchina+easylist.txt: 60844) -.uptobox.com -# @@||upshare.org/advertisement.js (easylistchina+easylist.txt: 60843) -.upshare.org/advertisement\.js -# @@||uploadlw.com^$elemhide (easylistchina+easylist.txt: 60842) -.uploadlw.com -# @@||uploadex.com^$elemhide (easylistchina+easylist.txt: 60840) -.uploadex.com -# @@||uploadex.com/fuckadblock.js (easylistchina+easylist.txt: 60839) -.uploadex.com/fuckadblock\.js -# @@||up-flow.org/advertisement.js (easylistchina+easylist.txt: 60838) -.up-flow.org/advertisement\.js -# @@||unlockpwd.com^$elemhide (easylistchina+easylist.txt: 60837) -.unlockpwd.com -# @@||ulto.ga^$elemhide (easylistchina+easylist.txt: 60836) -.ulto.ga -# @@||uktv.co.uk/static/js/ads.js (easylistchina+easylist.txt: 60835) -.uktv.co.uk/static/js/ads\.js -# @@||twitch.tv/ads/ads.js (easylistchina+easylist.txt: 60833) -.twitch.tv/ads/ads\.js -# @@||tvrex.altervista.org^$elemhide (easylistchina+easylist.txt: 60832) -.tvrex.altervista.org -# @@||tvpelis.net^*/advertisement2.js (easylistchina+easylist.txt: 60831) -.tvpelis.net/.*/advertisement2\.js -# @@||tvenvivocrackmastersamm.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60829) -.tvenvivocrackmastersamm.blogspot.com.ar -# @@||tv3.co.nz/Portals/*/advertisement.js (easylistchina+easylist.txt: 60827) -.tv3.co.nz/Portals/.*/advertisement\.js -# @@||tv-porinternet.com.mx^$elemhide (easylistchina+easylist.txt: 60826) -.tv-porinternet.com.mx -# @@||tv-msn.com^$elemhide (easylistchina+easylist.txt: 60825) -.tv-msn.com -# @@||tutvgratis.tv^*/fuckadblock.js (easylistchina+easylist.txt: 60824) -.tutvgratis.tv/.*/fuckadblock\.js -# @@||tusmangas.net^$elemhide (easylistchina+easylist.txt: 60823) -.tusmangas.net -# @@||turktorrent.cc^$elemhide (easylistchina+easylist.txt: 60822) -.turktorrent.cc -# @@||turkdown.com^$elemhide (easylistchina+easylist.txt: 60820) -.turkdown.com -# @@||trizone91.com^$elemhide (easylistchina+easylist.txt: 60816) -.trizone91.com -# @@||trackitonline.ru^$elemhide (easylistchina+easylist.txt: 60812) -.trackitonline.ru -# @@||tpmrpg.net/adframe.js (easylistchina+easylist.txt: 60811) -.tpmrpg.net/adframe\.js -# @@||tlc.com^$elemhide (easylistchina+easylist.txt: 60808) -.tlc.com -# @@||tklist.net^$elemhide (easylistchina+easylist.txt: 60807) -.tklist.net -# @@||theweatherspace.com^*/advertisement.js (easylistchina+easylist.txt: 60803) -.theweatherspace.com/.*/advertisement\.js -# @@||thewatchseries.biz^$elemhide (easylistchina+easylist.txt: 60802) -.thewatchseries.biz -# @@||thevideos.tv/js/ads.js (easylistchina+easylist.txt: 60801) -.thevideos.tv/js/ads\.js -# @@||thesominaltv.com/advertisement.js (easylistchina+easylist.txt: 60800) -.thesominaltv.com/advertisement\.js -# @@||thesimsresource.com/downloads/download/itemId/$elemhide (easylistchina+easylist.txt: 60798) -.thesimsresource.com/downloads/download/itemId/ -# @@||thememypc.com^$elemhide (easylistchina+easylist.txt: 60796) -.thememypc.com -# @@||thelordofstreaming.it^$elemhide (easylistchina+easylist.txt: 60794) -.thelordofstreaming.it -# @@||television-envivo.com^$elemhide (easylistchina+easylist.txt: 60791) -.television-envivo.com -# @@||televall.com.mx/fuckadblock.js (easylistchina+easylist.txt: 60790) -.televall.com.mx/fuckadblock\.js -# @@||teknogods.com/advert.js (easylistchina+easylist.txt: 60788) -.teknogods.com/advert\.js -# @@||teenidols4you.com^$elemhide (easylistchina+easylist.txt: 60786) -.teenidols4you.com -# @@||techweekeurope.co.uk^*/advertising.js (easylistchina+easylist.txt: 60785) -.techweekeurope.co.uk/.*/advertising\.js -# @@||techingspot.blogspot.in^$elemhide (easylistchina+easylist.txt: 60784) -.techingspot.blogspot.in -# @@||team-vitality.fr/assets/images/advert.png (easylistchina+easylist.txt: 60783) -.team-vitality.fr/assets/images/advert\.png -# @@||tamercome.blogspot.co.uk^$elemhide (easylistchina+easylist.txt: 60782) -.tamercome.blogspot.co.uk -# @@||talksport.com/sites/default/files/ben/advert.js (easylistchina+easylist.txt: 60781) -.talksport.com/sites/default/files/ben/advert\.js -# @@||superplatyna.com^$elemhide (easylistchina+easylist.txt: 60780) -.superplatyna.com -# @@||supergames.com^*/ads.js (easylistchina+easylist.txt: 60779) -.supergames.com/.*/ads\.js -# @@||superfilm.pl/advertisement.js (easylistchina+easylist.txt: 60777) -.superfilm.pl/advertisement\.js -# @@||superanimes.com^$elemhide (easylistchina+easylist.txt: 60776) -.superanimes.com -# @@||streamlive.to/js/ads.js (easylistchina+easylist.txt: 60774) -.streamlive.to/js/ads\.js -# @@||streaming-hub.com^$elemhide (easylistchina+easylist.txt: 60773) -.streaming-hub.com -# @@||streamin.to/adblock/advert.js (easylistchina+easylist.txt: 60772) -.streamin.to/adblock/advert\.js -# @@||stream4free.eu^$elemhide (easylistchina+easylist.txt: 60770) -.stream4free.eu -# @@||stream2watch.me^$elemhide (easylistchina+easylist.txt: 60769) -.stream2watch.me -# @@||stickgames.com^*/ads.js (easylistchina+easylist.txt: 60768) -.stickgames.com/.*/ads\.js -# @@||startribune.com^$generichide (easylistchina+easylist.txt: 60765) -.startribune.com -# @@||stackexchange.com/affiliate/ (easylistchina+easylist.txt: 60764) -.stackexchange.com/affiliate/ -# @@||springstreetads.com/scripts/advertising.js (easylistchina+easylist.txt: 60762) -.springstreetads.com/scripts/advertising\.js -# @@||sounddrain.net^*/advertisement.js (easylistchina+easylist.txt: 60757) -.sounddrain.net/.*/advertisement\.js -# @@||sominaltvfilms.com^$elemhide (easylistchina+easylist.txt: 60755) -.sominaltvfilms.com -# @@||software4all-now.blogspot.co.uk^$elemhide (easylistchina+easylist.txt: 60753) -.software4all-now.blogspot.co.uk -# @@||slader.com^$elemhide (easylistchina+easylist.txt: 60746) -.slader.com -# @@||skidrowcrack.com^$elemhide (easylistchina+easylist.txt: 60745) -.skidrowcrack.com -# @@||skidrowcrack.com/advertisement.js (easylistchina+easylist.txt: 60744) -.skidrowcrack.com/advertisement\.js -# @@||sizedrive.com^$elemhide (easylistchina+easylist.txt: 60743) -.sizedrive.com -# @@||sizedrive.com/js/fuckadblock.js (easylistchina+easylist.txt: 60742) -.sizedrive.com/js/fuckadblock\.js -# @@||sitepoint.com^*/ad-server.js (easylistchina+easylist.txt: 60740) -.sitepoint.com/.*/ad-server\.js -# @@||siamfishing.com^*/advert.js (easylistchina+easylist.txt: 60739) -.siamfishing.com/.*/advert\.js -# @@||showsport-tv.com^$elemhide (easylistchina+easylist.txt: 60738) -.showsport-tv.com -# @@||showsport-tv.com/adv*.js (easylistchina+easylist.txt: 60737) -.showsport-tv.com/adv.*\.js -# @@||shimory.com/js/show_ads.js (easylistchina+easylist.txt: 60736) -.shimory.com/js/show_ads\.js -# @@||sheepskinproxy.com/js/advertisement.js (easylistchina+easylist.txt: 60735) -.sheepskinproxy.com/js/advertisement\.js -# @@||seriesbang.net^$elemhide (easylistchina+easylist.txt: 60733) -.seriesbang.net -# @@||senmanga.com/advertisement.js (easylistchina+easylist.txt: 60731) -.senmanga.com/advertisement\.js -# @@||secureupload.eu^$elemhide (easylistchina+easylist.txt: 60728) -.secureupload.eu -# @@||securenetsystems.net^*/ads.js (easylistchina+easylist.txt: 60727) -.securenetsystems.net/.*/ads\.js -# @@||scriptnulled.eu^$elemhide (easylistchina+easylist.txt: 60725) -.scriptnulled.eu -# @@||scoutingbook.com/js/adsense.js (easylistchina+easylist.txt: 60724) -.scoutingbook.com/js/adsense\.js -# @@||sciencechannel.com^$elemhide (easylistchina+easylist.txt: 60723) -.sciencechannel.com -# @@||scan-manga.com/ads.html (easylistchina+easylist.txt: 60721) -.scan-manga.com/ads\.html -# @@||sawlive.tv/adscript.js (easylistchina+easylist.txt: 60719) -.sawlive.tv/adscript\.js -# @@||savevideo.me/images/banner_ads.gif (easylistchina+easylist.txt: 60718) -.savevideo.me/images/banner_ads\.gif -# @@||saikoanimes.net^*/advertisement.js (easylistchina+easylist.txt: 60712) -.saikoanimes.net/.*/advertisement\.js -# @@||runners.es^*/advertisement.js (easylistchina+easylist.txt: 60709) -.runners.es/.*/advertisement\.js -# @@||rtube.de^$elemhide (easylistchina+easylist.txt: 60707) -.rtube.de -# @@||rojadirecta.me^$elemhide (easylistchina+easylist.txt: 60704) -.rojadirecta.me -# @@||rincondelvago.com^*_adsense.js (easylistchina+easylist.txt: 60703) -.rincondelvago.com/.*_adsense\.js -# @@||revclouds.com^$generichide (easylistchina+easylist.txt: 60701) -.revclouds.com -# @@||remo-xp.com^$elemhide (easylistchina+easylist.txt: 60697) -.remo-xp.com -# @@||redtube.com*/adframe.js (easylistchina+easylist.txt: 60694) -.redtube.com*./(.*/)?adframe\.js -# @@||realidadscans.org^$elemhide (easylistchina+easylist.txt: 60693) -.realidadscans.org -# @@||ratebeer.com/javascript/advertisement.js (easylistchina+easylist.txt: 60691) -.ratebeer.com/javascript/advertisement\.js -# @@||radioio.com^*/adframe.js (easylistchina+easylist.txt: 60687) -.radioio.com/.*/adframe\.js -# @@||radioaficion.com^$elemhide (easylistchina+easylist.txt: 60686) -.radioaficion.com -# @@||radar-toulouse.fr/advertisement.js (easylistchina+easylist.txt: 60684) -.radar-toulouse.fr/advertisement\.js -# @@||racedepartment.com^*/advertisement.js (easylistchina+easylist.txt: 60682) -.racedepartment.com/.*/advertisement\.js -# @@||qrrro.com^*/adhandler/ (easylistchina+easylist.txt: 60681) -.qrrro.com/.*/adhandler/ -# @@||pxstream.tv^$elemhide (easylistchina+easylist.txt: 60679) -.pxstream.tv -# @@||puromarketing.com^$elemhide (easylistchina+easylist.txt: 60678) -.puromarketing.com -# @@||puromarketing.com/js/advertisement.js (easylistchina+easylist.txt: 60677) -.puromarketing.com/js/advertisement\.js -# @@||pubdirecte.com^*/advertisement.js (easylistchina+easylist.txt: 60676) -.pubdirecte.com/.*/advertisement\.js -# @@||primewire.ag/js/advertisement.js (easylistchina+easylist.txt: 60670) -.primewire.ag/js/advertisement\.js -# @@||primeshare.tv^*/advertisement.js (easylistchina+easylist.txt: 60669) -.primeshare.tv/.*/advertisement\.js -# @@||primeshare.tv^*/adframe.js (easylistchina+easylist.txt: 60668) -.primeshare.tv/.*/adframe\.js -# @@||premiumleecher.com^$elemhide (easylistchina+easylist.txt: 60667) -.premiumleecher.com -# @@||premiumleecher.com/inc/adsense.js (easylistchina+easylist.txt: 60666) -.premiumleecher.com/inc/adsense\.js -# @@||premiumleecher.com/inc/adframe.js (easylistchina+easylist.txt: 60665) -.premiumleecher.com/inc/adframe\.js -# @@||premiumgeneratorlink.com^$elemhide (easylistchina+easylist.txt: 60664) -.premiumgeneratorlink.com -# @@||premium4.us^$elemhide (easylistchina+easylist.txt: 60663) -.premium4.us -# @@||prad.de/en/$elemhide (easylistchina+easylist.txt: 60662) -.prad.de/en/ -# @@||portalzuca.com^$elemhide (easylistchina+easylist.txt: 60660) -.portalzuca.com -# @@||pocosmegashdd.com^$elemhide (easylistchina+easylist.txt: 60656) -.pocosmegashdd.com -# @@||playindiafilms.com/advertisement.js (easylistchina+easylist.txt: 60655) -.playindiafilms.com/advertisement\.js -# @@||playhd.eu/advertisement.js (easylistchina+easylist.txt: 60654) -.playhd.eu/advertisement\.js -# @@||player.utv.ie/assets/js/adframe.js (easylistchina+easylist.txt: 60653) -.player.utv.ie/assets/js/adframe\.js -# @@||play-old-pc-games.com^$elemhide (easylistchina+easylist.txt: 60651) -.play-old-pc-games.com -# @@||pirlotv.tv^$elemhide (easylistchina+easylist.txt: 60650) -.pirlotv.tv -# @@||pipocas.tv/js/advertisement.js (easylistchina+easylist.txt: 60649) -.pipocas.tv/js/advertisement\.js -# @@||picu.pk^$elemhide (easylistchina+easylist.txt: 60648) -.picu.pk -# @@||picload.org^$elemhide (easylistchina+easylist.txt: 60647) -.picload.org -# @@||photofacefun.com^*/adblock.js (easylistchina+easylist.txt: 60646) -.photofacefun.com/.*/adblock\.js -# @@||phoronix.com/advertisement.js (easylistchina+easylist.txt: 60645) -.phoronix.com/advertisement\.js -# @@||pes-patch.com^$elemhide (easylistchina+easylist.txt: 60644) -.pes-patch.com -# @@||perkuinternete.lt/modules/mod_jpayday/js/advertisement.js (easylistchina+easylist.txt: 60643) -.perkuinternete.lt/modules/mod_jpayday/js/advertisement\.js -# @@||peliculas.online-latino.com^$elemhide (easylistchina+easylist.txt: 60642) -.peliculas.online-latino.com -# @@||pcgames-download.net^$elemhide (easylistchina+easylist.txt: 60640) -.pcgames-download.net -# @@||paste.org/style/adframe.js (easylistchina+easylist.txt: 60639) -.paste.org/style/adframe\.js -# @@||pandora.com/static/ads/ (easylistchina+easylist.txt: 60635) -.pandora.com/static/ads/ -# @@||overclock3d.net/js/advert.js (easylistchina+easylist.txt: 60620) -.overclock3d.net/js/advert\.js -# @@||osdarlings.com^$elemhide (easylistchina+easylist.txt: 60619) -.osdarlings.com -# @@||oploverz.net^$elemhide (easylistchina+easylist.txt: 60616) -.oploverz.net -# @@||openspeedtest.com/advertisement.js (easylistchina+easylist.txt: 60611) -.openspeedtest.com/advertisement\.js -# @@||openrunner.com/js/advertisement.js (easylistchina+easylist.txt: 60610) -.openrunner.com/js/advertisement\.js -# @@||openload.io^$elemhide (easylistchina+easylist.txt: 60606) -.openload.io -# @@||openload.co^$elemhide (easylistchina+easylist.txt: 60603) -.openload.co -# @@||onrpg.com/advertisement.js (easylistchina+easylist.txt: 60601) -.onrpg.com/advertisement\.js -# @@||onlinevideoconverter.com^*ad*.js (easylistchina+easylist.txt: 60600) -.onlinevideoconverter.com/.*ad.*\.js -# @@||onlinemoviewatchs.com^$elemhide (easylistchina+easylist.txt: 60599) -.onlinemoviewatchs.com -# @@||onlinemoviewatchfree.com^$elemhide (easylistchina+easylist.txt: 60598) -.onlinemoviewatchfree.com -# @@||onlinemoviesfreee.com^$elemhide (easylistchina+easylist.txt: 60597) -.onlinemoviesfreee.com -# @@||oneplay.tv^$elemhide (easylistchina+easylist.txt: 60596) -.oneplay.tv -# @@||oneplay.tv/embed/js/fuckadblock.js (easylistchina+easylist.txt: 60595) -.oneplay.tv/embed/js/fuckadblock\.js -# @@||omaredomex.org^$elemhide (easylistchina+easylist.txt: 60594) -.omaredomex.org -# @@||nzbstars.com*/advertisement.js (easylistchina+easylist.txt: 60591) -.nzbstars.com*./(.*/)?advertisement\.js -# @@||noticiasautomotivas.com.br^$elemhide (easylistchina+easylist.txt: 60585) -.noticiasautomotivas.com.br -# @@||nosteam.ro^*/advertisement.js (easylistchina+easylist.txt: 60584) -.nosteam.ro/.*/advertisement\.js -# @@||nosteam.ro/advertisement.js (easylistchina+easylist.txt: 60583) -.nosteam.ro/advertisement\.js -# @@||nornar.com^$elemhide (easylistchina+easylist.txt: 60582) -.nornar.com -# @@||nonags.com^$elemhide (easylistchina+easylist.txt: 60580) -.nonags.com -# @@||nicoblog-games.com^$elemhide (easylistchina+easylist.txt: 60579) -.nicoblog-games.com -# @@||nextthreedays.com/Include/Javascript/AdFunctions.js (easylistchina+easylist.txt: 60577) -.nextthreedays.com/Include/Javascript/AdFunctions\.js -# @@||newxxxvideosupdate.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60575) -.newxxxvideosupdate.blogspot.com.ar -# @@||newmusicforpeople.org^$elemhide (easylistchina+easylist.txt: 60574) -.newmusicforpeople.org -# @@||nettavisen.no^*/advertisement.js (easylistchina+easylist.txt: 60573) -.nettavisen.no/.*/advertisement\.js -# @@||needrom.com/advert1.js (easylistchina+easylist.txt: 60572) -.needrom.com/advert1\.js -# @@||ndtv.com/static/js/advertisement.js (easylistchina+easylist.txt: 60571) -.ndtv.com/static/js/advertisement\.js -# @@||nbahd.com^$elemhide (easylistchina+easylist.txt: 60570) -.nbahd.com -# @@||narkive.com^$elemhide (easylistchina+easylist.txt: 60569) -.narkive.com -# @@||mypapercraft.net^$elemhide (easylistchina+easylist.txt: 60567) -.mypapercraft.net -# @@||myksn.net^$elemhide (easylistchina+easylist.txt: 60566) -.myksn.net -# @@||myiplayer.com^$elemhide (easylistchina+easylist.txt: 60565) -.myiplayer.com -# @@||myiplayer.com/ad*.js (easylistchina+easylist.txt: 60564) -.myiplayer.com/ad.*\.js -# @@||myfreeforum.org/advertisement.js (easylistchina+easylist.txt: 60563) -.myfreeforum.org/advertisement\.js -# @@||myfineforum.org/advertisement.js (easylistchina+easylist.txt: 60562) -.myfineforum.org/advertisement\.js -# @@||mwfiles.net/advertisement.js (easylistchina+easylist.txt: 60560) -.mwfiles.net/advertisement\.js -# @@||musicacelestial.net^$elemhide (easylistchina+easylist.txt: 60559) -.musicacelestial.net -# @@||mundoprogramas.net^$elemhide (easylistchina+easylist.txt: 60558) -.mundoprogramas.net -# @@||multiup.org^$elemhide (easylistchina+easylist.txt: 60557) -.multiup.org -# @@||mugiwaranofansub.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60555) -.mugiwaranofansub.blogspot.com.ar -# @@||mrtzcmp3.net/advertisement.js (easylistchina+easylist.txt: 60554) -.mrtzcmp3.net/advertisement\.js -# @@||mrjuegosdroid.co.vu^$elemhide (easylistchina+easylist.txt: 60553) -.mrjuegosdroid.co.vu -# @@||mpc-g.com^$elemhide (easylistchina+easylist.txt: 60552) -.mpc-g.com -# @@||mp3skull.la^$elemhide (easylistchina+easylist.txt: 60551) -.mp3skull.la -# @@||mp3clan.net^$elemhide (easylistchina+easylist.txt: 60550) -.mp3clan.net -# @@||mp3clan.com^*/advertisement.js (easylistchina+easylist.txt: 60549) -.mp3clan.com/.*/advertisement\.js -# @@||mp3clan.com^$elemhide (easylistchina+easylist.txt: 60548) -.mp3clan.com -# @@||mp3clan.audio^$elemhide (easylistchina+easylist.txt: 60547) -.mp3clan.audio -# @@||movie1k.net^$elemhide (easylistchina+easylist.txt: 60546) -.movie1k.net -# @@||mousebreaker.com/scripts/ads.js (easylistchina+easylist.txt: 60545) -.mousebreaker.com/scripts/ads\.js -# @@||moon-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60544) -.moon-faucet.tk/advertisement\.js -# @@||monova.unblocked.la^$generichide (easylistchina+easylist.txt: 60540) -.monova.unblocked.la -# @@||monova.unblocked.la/js/adframe.js (easylistchina+easylist.txt: 60539) -.monova.unblocked.la/js/adframe\.js -# @@||monova.org^$generichide (easylistchina+easylist.txt: 60538) -.monova.org -# @@||monova.org/js/adframe.js (easylistchina+easylist.txt: 60537) -.monova.org/js/adframe\.js -# @@||moneyinpjs.com/advertisement.js (easylistchina+easylist.txt: 60536) -.moneyinpjs.com/advertisement\.js -# @@||mobinozer.com^*/advert.js (easylistchina+easylist.txt: 60533) -.mobinozer.com/.*/advert\.js -# @@||mma-core.com/Scripts/adscript.js (easylistchina+easylist.txt: 60531) -.mma-core.com/Scripts/adscript\.js -# @@||mix.dj^*/advertisement.js (easylistchina+easylist.txt: 60530) -.mix.dj/.*/advertisement\.js -# @@||mix.dj/jscripts/jquery/mdj_adverts.js (easylistchina+easylist.txt: 60529) -.mix.dj/jscripts/jquery/mdj_adverts\.js -# @@||mintmovies.net^$elemhide (easylistchina+easylist.txt: 60528) -.mintmovies.net -# @@||miniclipcdn.com/js/advertisement.js (easylistchina+easylist.txt: 60527) -.miniclipcdn.com/js/advertisement\.js -# @@||minecraft-forum.net^$elemhide (easylistchina+easylist.txt: 60526) -.minecraft-forum.net -# @@||mimaletamusical.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60525) -.mimaletamusical.blogspot.com.ar -# @@||mgcash.com/common/adblock.js (easylistchina+easylist.txt: 60518) -.mgcash.com/common/adblock\.js -# @@||megawypas.pl/includes/adframe.js (easylistchina+easylist.txt: 60517) -.megawypas.pl/includes/adframe\.js -# @@||megavideodownloader.com/adframe.js (easylistchina+easylist.txt: 60516) -.megavideodownloader.com/adframe\.js -# @@||megahd.me^*/advertisement.js (easylistchina+easylist.txt: 60515) -.megahd.me/.*/advertisement\.js -# @@||megadown.us/advertisement.js (easylistchina+easylist.txt: 60514) -.megadown.us/advertisement\.js -# @@||megacineonline.net^$elemhide (easylistchina+easylist.txt: 60513) -.megacineonline.net -# @@||megacineonline.biz^$elemhide (easylistchina+easylist.txt: 60512) -.megacineonline.biz -# @@||mediaplaybox.com^$elemhide (easylistchina+easylist.txt: 60510) -.mediaplaybox.com -# @@||maxedtech.com^$elemhide (easylistchina+easylist.txt: 60507) -.maxedtech.com -# @@||maxcheaters.com/public/js/jsLoader.js (easylistchina+easylist.txt: 60506) -.maxcheaters.com/public/js/jsLoader\.js -# @@||max-deportv.net^$elemhide (easylistchina+easylist.txt: 60505) -.max-deportv.net -# @@||max-deportv.info^$elemhide (easylistchina+easylist.txt: 60504) -.max-deportv.info -# @@||mastertoons.com^$elemhide (easylistchina+easylist.txt: 60503) -.mastertoons.com -# @@||masfuertequeelhierro.com^$elemhide (easylistchina+easylist.txt: 60502) -.masfuertequeelhierro.com -# @@||marketmilitia.org^$elemhide (easylistchina+easylist.txt: 60501) -.marketmilitia.org -# @@||marketmilitia.org/advertisement.js (easylistchina+easylist.txt: 60500) -.marketmilitia.org/advertisement\.js -# @@||mangakaka.com^*/advertiser.js (easylistchina+easylist.txt: 60499) -.mangakaka.com/.*/advertiser\.js -# @@||mangahost.com/ads.js? (easylistchina+easylist.txt: 60497) -.mangahost.com/ads\.js\? -# @@||mangahop.com^$generichide (easylistchina+easylist.txt: 60496) -.mangahop.com -# @@||mangabird.com^$elemhide (easylistchina+easylist.txt: 60494) -.mangabird.com -# @@||mangabird.com/sites/all/themes/zen/js/advertiser.js (easylistchina+easylist.txt: 60493) -.mangabird.com/sites/all/themes/zen/js/advertiser\.js -# @@||manga2u.co/css/advertiser.js (easylistchina+easylist.txt: 60492) -.manga2u.co/css/advertiser\.js -# @@||mamahd.com^$elemhide (easylistchina+easylist.txt: 60491) -.mamahd.com -# @@||mamahd.com/advertisement.js (easylistchina+easylist.txt: 60490) -.mamahd.com/advertisement\.js -# @@||makemehost.com/js/ads.js (easylistchina+easylist.txt: 60489) -.makemehost.com/js/ads\.js -# @@||majorleaguegaming.com^$elemhide (easylistchina+easylist.txt: 60487) -.majorleaguegaming.com -# @@||majorleaguegaming.com/live/assets/advertisement-*.js (easylistchina+easylist.txt: 60486) -.majorleaguegaming.com/live/assets/advertisement-.*\.js -# @@||magesy.be^$elemhide (easylistchina+easylist.txt: 60485) -.magesy.be -# @@||magesy.be/advertisement.js (easylistchina+easylist.txt: 60484) -.magesy.be/advertisement\.js -# @@||macobserver.com/js/adlink.js (easylistchina+easylist.txt: 60482) -.macobserver.com/js/adlink\.js -# @@||mac2sell.net^$elemhide (easylistchina+easylist.txt: 60480) -.mac2sell.net -# @@||maamp3.com^$elemhide (easylistchina+easylist.txt: 60479) -.maamp3.com -# @@||lumload.com^$elemhide (easylistchina+easylist.txt: 60478) -.lumload.com -# @@||lpmanager.com^*/fuckadblock.js (easylistchina+easylist.txt: 60477) -.lpmanager.com/.*/fuckadblock\.js -# @@||lpg-forum.pl/advertise.js (easylistchina+easylist.txt: 60476) -.lpg-forum.pl/advertise\.js -# @@||lordpyrak.net^$elemhide (easylistchina+easylist.txt: 60475) -.lordpyrak.net -# @@||lomeutec.com^$elemhide (easylistchina+easylist.txt: 60474) -.lomeutec.com -# @@||livrosdoexilado.org^$elemhide (easylistchina+easylist.txt: 60473) -.livrosdoexilado.org -# @@||litecoiner.net/advertisement.js (easylistchina+easylist.txt: 60472) -.litecoiner.net/advertisement\.js -# @@||litecoin-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60471) -.litecoin-faucet.tk/advertisement\.js -# @@||liquidcompass.net/js/advertisement.js (easylistchina+easylist.txt: 60470) -.liquidcompass.net/js/advertisement\.js -# @@||linkshrink.net^$elemhide (easylistchina+easylist.txt: 60469) -.linkshrink.net -# @@||linkcrypt.ws^$elemhide (easylistchina+easylist.txt: 60468) -.linkcrypt.ws -# @@||link.tl^$elemhide (easylistchina+easylist.txt: 60466) -.link.tl -# @@||lilfile.com/js/advertise.js (easylistchina+easylist.txt: 60465) -.lilfile.com/js/advertise\.js -# @@||lilfile.com/js/advertise-2.js (easylistchina+easylist.txt: 60464) -.lilfile.com/js/advertise-2\.js -# @@||lifehacker.com.au^*/ads.js (easylistchina+easylist.txt: 60463) -.lifehacker.com.au/.*/ads\.js -# @@||liberallogic101.com/show_ads.js (easylistchina+easylist.txt: 60462) -.liberallogic101.com/show_ads\.js -# @@||legionprogramas.org^$elemhide (easylistchina+easylist.txt: 60461) -.legionprogramas.org -# @@||legionpeliculas.org^$elemhide (easylistchina+easylist.txt: 60460) -.legionpeliculas.org -# @@||leecher.us^$elemhide (easylistchina+easylist.txt: 60459) -.leecher.us -# @@||leaguesecretary.com/advertisement.js (easylistchina+easylist.txt: 60457) -.leaguesecretary.com/advertisement\.js -# @@||lasprovincias.es^*/adframe.js (easylistchina+easylist.txt: 60455) -.lasprovincias.es/.*/adframe\.js -# @@||lag10.net^$elemhide (easylistchina+easylist.txt: 60453) -.lag10.net -# @@||kwikupload.com^$elemhide (easylistchina+easylist.txt: 60452) -.kwikupload.com -# @@||kshowes.net^$elemhide (easylistchina+easylist.txt: 60451) -.kshowes.net -# @@||kotaku.com.au^*/ads.js (easylistchina+easylist.txt: 60450) -.kotaku.com.au/.*/ads\.js -# @@||koparos.info^$elemhide (easylistchina+easylist.txt: 60449) -.koparos.info -# @@||koparos.info/ads.php (easylistchina+easylist.txt: 60448) -.koparos.info/ads\.php -# @@||kdliker.com/js/advert.js (easylistchina+easylist.txt: 60444) -.kdliker.com/js/advert\.js -# @@||katsomo.fi^*/advertisement.js (easylistchina+easylist.txt: 60443) -.katsomo.fi/.*/advertisement\.js -# @@||katsomo.fi^*/advert.js (easylistchina+easylist.txt: 60442) -.katsomo.fi/.*/advert\.js -# @@||juzupload.com/advert*.js (easylistchina+easylist.txt: 60441) -.juzupload.com/advert.*\.js -# @@||junksport.com/watch/advertisement.js (easylistchina+easylist.txt: 60440) -.junksport.com/watch/advertisement\.js -# @@||juba-get.com^*/advertisement.js (easylistchina+easylist.txt: 60439) -.juba-get.com/.*/advertisement\.js -# @@||jkanime.net^*/advertisement2.js (easylistchina+easylist.txt: 60437) -.jkanime.net/.*/advertisement2\.js -# @@||jkanime.net/assets/js/advertisement.js (easylistchina+easylist.txt: 60436) -.jkanime.net/assets/js/advertisement\.js -# @@||jjcast.com^$elemhide (easylistchina+easylist.txt: 60435) -.jjcast.com -# @@||iriptv.com/player/ads.js (easylistchina+easylist.txt: 60433) -.iriptv.com/player/ads\.js -# @@||iptvlinks.com^$elemhide (easylistchina+easylist.txt: 60432) -.iptvlinks.com -# @@||investopedia.com^*/adverts.js (easylistchina+easylist.txt: 60430) -.investopedia.com/.*/adverts\.js -# @@||investopedia.com^*/advertisement.js (easylistchina+easylist.txt: 60429) -.investopedia.com/.*/advertisement\.js -# @@||investopedia.com^$elemhide (easylistchina+easylist.txt: 60428) -.investopedia.com -# @@||investopedia.com/public/js/ads.js (easylistchina+easylist.txt: 60427) -.investopedia.com/public/js/ads\.js -# @@||investigationdiscovery.com/shared/ad-enablers/ (easylistchina+easylist.txt: 60426) -.investigationdiscovery.com/shared/ad-enablers/ -# @@||install.wtf/advertisement/advertisement.js (easylistchina+easylist.txt: 60422) -.install.wtf/advertisement/advertisement\.js -# @@||incredibox.com^$elemhide (easylistchina+easylist.txt: 60415) -.incredibox.com -# @@||incredibox.com/js/fuckadblock.js (easylistchina+easylist.txt: 60414) -.incredibox.com/js/fuckadblock\.js -# @@||incredibox.com/js/advertisement.js (easylistchina+easylist.txt: 60413) -.incredibox.com/js/advertisement\.js -# @@||imgsure.com/ads/banner.jpg? (easylistchina+easylist.txt: 60410) -.imgsure.com/ads/banner\.jpg\? -# @@||imgleech.com/ads/banner.jpg? (easylistchina+easylist.txt: 60409) -.imgleech.com/ads/banner\.jpg\? -# @@||imgclick.net^$elemhide (easylistchina+easylist.txt: 60408) -.imgclick.net -# @@||images.bangtidy.net^$elemhide (easylistchina+easylist.txt: 60405) -.images.bangtidy.net -# @@||imageontime.com/ads/banner.jpg? (easylistchina+easylist.txt: 60404) -.imageontime.com/ads/banner\.jpg\? -# @@||ilive.to^$elemhide (easylistchina+easylist.txt: 60400) -.ilive.to -# @@||ilive.to/js/advert*.js (easylistchina+easylist.txt: 60399) -.ilive.to/js/advert.*\.js -# @@||iguide.to/js/advertisement.js (easylistchina+easylist.txt: 60398) -.iguide.to/js/advertisement\.js -# @@||idevnote.com^$elemhide (easylistchina+easylist.txt: 60394) -.idevnote.com -# @@||ibmmainframeforum.com^$elemhide (easylistchina+easylist.txt: 60393) -.ibmmainframeforum.com -# @@||i-stream.pl^*/advertisement.js (easylistchina+easylist.txt: 60391) -.i-stream.pl/.*/advertisement\.js -# @@||hubturkey.net^$elemhide (easylistchina+easylist.txt: 60389) -.hubturkey.net -# @@||hqq.tv^$elemhide (easylistchina+easylist.txt: 60388) -.hqq.tv -# @@||hqpdb.com/ads/banner.jpg? (easylistchina+easylist.txt: 60387) -.hqpdb.com/ads/banner\.jpg\? -# @@||hpfanficarchive.com^*/advertisement.js (easylistchina+easylist.txt: 60386) -.hpfanficarchive.com/.*/advertisement\.js -# @@||hostyd.com^$elemhide (easylistchina+easylist.txt: 60385) -.hostyd.com -# @@||hogarutil.com^$elemhide (easylistchina+easylist.txt: 60383) -.hogarutil.com -# @@||hitcric.info^$elemhide (easylistchina+easylist.txt: 60382) -.hitcric.info -# @@||hexawebhosting.com/adcode.js (easylistchina+easylist.txt: 60380) -.hexawebhosting.com/adcode\.js -# @@||hentai-foundry.com^*/ads.js (easylistchina+easylist.txt: 60379) -.hentai-foundry.com/.*/ads\.js -# @@||hdmovie14.net/js/ad*.js (easylistchina+easylist.txt: 60378) -.hdmovie14.net/js/ad.*\.js -# @@||hdfree.tv/live/ad.php (easylistchina+easylist.txt: 60377) -.hdfree.tv/live/ad\.php -# @@||haxlog.com^$elemhide (easylistchina+easylist.txt: 60375) -.haxlog.com -# @@||hallpass.com^*/ads.js (easylistchina+easylist.txt: 60371) -.hallpass.com/.*/ads\.js -# @@||hackintosh.zone^$elemhide (easylistchina+easylist.txt: 60370) -.hackintosh.zone -# @@||hackintosh.zone/adblock/advertisement.js (easylistchina+easylist.txt: 60369) -.hackintosh.zone/adblock/advertisement\.js -# @@||hackers.co.id/adframe/adframe.js (easylistchina+easylist.txt: 60368) -.hackers.co.id/adframe/adframe\.js -# @@||guygames.com^*/ads.js (easylistchina+easylist.txt: 60367) -.guygames.com/.*/ads\.js -# @@||goldsday.com^$elemhide (easylistchina+easylist.txt: 60360) -.goldsday.com -# @@||gofirstrow.eu^*/advertisement.js (easylistchina+easylist.txt: 60359) -.gofirstrow.eu/.*/advertisement\.js -# @@||gofirstrow.eu/advertisement.js (easylistchina+easylist.txt: 60358) -.gofirstrow.eu/advertisement\.js -# @@||go4up.com^$elemhide (easylistchina+easylist.txt: 60357) -.go4up.com -# @@||go4up.com/advertisement.js (easylistchina+easylist.txt: 60356) -.go4up.com/advertisement\.js -# @@||gizmodo.com.au^*/ads.js (easylistchina+easylist.txt: 60354) -.gizmodo.com.au/.*/ads\.js -# @@||girlsocool.com^*/ads.js (easylistchina+easylist.txt: 60353) -.girlsocool.com/.*/ads\.js -# @@||girlsaskguys.com^*/js/ads. (easylistchina+easylist.txt: 60352) -.girlsaskguys.com/.*/js/ads\. -# @@||girlgames.com^*/ads.js (easylistchina+easylist.txt: 60351) -.girlgames.com/.*/ads\.js -# @@||getdebrid.com^$elemhide (easylistchina+easylist.txt: 60350) -.getdebrid.com -# @@||getdebrid.com/advertisement.js (easylistchina+easylist.txt: 60349) -.getdebrid.com/advertisement\.js -# @@||get-free-bitcoin.eu^$elemhide (easylistchina+easylist.txt: 60348) -.get-free-bitcoin.eu -# @@||get-bitcoins-free.eu^$elemhide (easylistchina+easylist.txt: 60347) -.get-bitcoins-free.eu -# @@||gdataonline.com/exp/textad.js (easylistchina+easylist.txt: 60345) -.gdataonline.com/exp/textad\.js -# @@||gamespot.com/js/ads.js (easylistchina+easylist.txt: 60344) -.gamespot.com/js/ads\.js -# @@||gameslivetv.com/js/advertisement.js (easylistchina+easylist.txt: 60343) -.gameslivetv.com/js/advertisement\.js -# @@||gameshark.com/images/ads/ (easylistchina+easylist.txt: 60342) -.gameshark.com/images/ads/ -# @@||games.latimes.com/Scripts/advert.js (easylistchina+easylist.txt: 60340) -.games.latimes.com/Scripts/advert\.js -# @@||gamersconnexion.com/js/advert.js (easylistchina+easylist.txt: 60339) -.gamersconnexion.com/js/advert\.js -# @@||gamereactor.net/advertisement.js (easylistchina+easylist.txt: 60338) -.gamereactor.net/advertisement\.js -# @@||gameopc.blogspot.com.ar^$elemhide (easylistchina+easylist.txt: 60336) -.gameopc.blogspot.com.ar -# @@||gallerynova.se^*/advertisement.js (easylistchina+easylist.txt: 60331) -.gallerynova.se/.*/advertisement\.js -# @@||gallery.aethereality.net/advertisement.js (easylistchina+easylist.txt: 60330) -.gallery.aethereality.net/advertisement\.js -# @@||funniermoments.com^$elemhide (easylistchina+easylist.txt: 60314) -.funniermoments.com -# @@||funniermoments.com/adframe.js (easylistchina+easylist.txt: 60313) -.funniermoments.com/adframe\.js -# @@||freshdown.net^$elemhide (easylistchina+easylist.txt: 60312) -.freshdown.net -# @@||freesportsbet.com/js/advertisement.js (easylistchina+easylist.txt: 60310) -.freesportsbet.com/js/advertisement\.js -# @@||freeprosurfer.com^$elemhide (easylistchina+easylist.txt: 60309) -.freeprosurfer.com -# @@||freegamehosting.nl/js/advertisement.js (easylistchina+easylist.txt: 60308) -.freegamehosting.nl/js/advertisement\.js -# @@||freegamehosting.nl/advertisement.js (easylistchina+easylist.txt: 60307) -.freegamehosting.nl/advertisement\.js -# @@||freebitcoin.wmat.pl^*/advertisement.js (easylistchina+easylist.txt: 60306) -.freebitcoin.wmat.pl/.*/advertisement\.js -# @@||free.smsmarkaz.urdupoint.com^$elemhide (easylistchina+easylist.txt: 60303) -.free.smsmarkaz.urdupoint.com -# @@||free-bitcoin-faucet.eu^$elemhide (easylistchina+easylist.txt: 60302) -.free-bitcoin-faucet.eu -# @@||fm.tuba.pl/tuba3/_js/advert.js (easylistchina+easylist.txt: 60297) -.fm.tuba.pl/tuba3/_js/advert\.js -# @@||flvto.biz^$elemhide (easylistchina+easylist.txt: 60296) -.flvto.biz -# @@||firsttube.co^$elemhide (easylistchina+easylist.txt: 60293) -.firsttube.co -# @@||firstonetv.com/ads_advertisement.js (easylistchina+easylist.txt: 60290) -.firstonetv.com/ads_advertisement\.js -# @@||filmux.org^$elemhide (easylistchina+easylist.txt: 60288) -.filmux.org -# @@||filmux.net/ads/banner.jpg? (easylistchina+easylist.txt: 60287) -.filmux.net/ads/banner\.jpg\? -# @@||filmovisaprevodom.net/advertisement.js (easylistchina+easylist.txt: 60285) -.filmovisaprevodom.net/advertisement\.js -# @@||filerev.cc^$elemhide (easylistchina+easylist.txt: 60283) -.filerev.cc -# @@||fileice.net/js/advertisement.js (easylistchina+easylist.txt: 60282) -.fileice.net/js/advertisement\.js -# @@||filecom.net/advertisement.js (easylistchina+easylist.txt: 60281) -.filecom.net/advertisement\.js -# @@||ffiles.com/images/mmfiles_ (easylistchina+easylist.txt: 60278) -.ffiles.com/images/mmfiles_ -# @@||fcportables.com^$elemhide (easylistchina+easylist.txt: 60277) -.fcportables.com -# @@||fastcompany.com/js/advertisement.js (easylistchina+easylist.txt: 60275) -.fastcompany.com/js/advertisement\.js -# @@||fastcolabs.com/js/advertisement.js (easylistchina+easylist.txt: 60274) -.fastcolabs.com/js/advertisement\.js -# @@||fastcoexist.com/js/advertisement.js (easylistchina+easylist.txt: 60273) -.fastcoexist.com/js/advertisement\.js -# @@||fastcodesign.com/js/advertisement.js (easylistchina+easylist.txt: 60272) -.fastcodesign.com/js/advertisement\.js -# @@||fastcocreate.com/js/advertisement.js (easylistchina+easylist.txt: 60271) -.fastcocreate.com/js/advertisement\.js -# @@||ezcast.tv/static/scripts/adscript.js (easylistchina+easylist.txt: 60269) -.ezcast.tv/static/scripts/adscript\.js -# @@||exsite.pl^*/advert.js (easylistchina+easylist.txt: 60268) -.exsite.pl/.*/advert\.js -# @@||euroman.dk^$elemhide (easylistchina+easylist.txt: 60260) -.euroman.dk -# @@||eu5.org^*/advert.js (easylistchina+easylist.txt: 60259) -.eu5.org/.*/advert\.js -# @@||eskago.pl/html/js/advertisement.js (easylistchina+easylist.txt: 60258) -.eskago.pl/html/js/advertisement\.js -# @@||eskago.pl/html/js/adv.bbelements.js (easylistchina+easylist.txt: 60257) -.eskago.pl/html/js/adv\.bbelements\.js -# @@||eskago.pl/html/js/ads-banner.js (easylistchina+easylist.txt: 60256) -.eskago.pl/html/js/ads-banner\.js -# @@||eska.pl^*bbelements.js (easylistchina+easylist.txt: 60255) -.eska.pl/.*bbelements\.js -# @@||elrellano.com/ad/ad.js (easylistchina+easylist.txt: 60248) -.elrellano.com/ad/ad\.js -# @@||ebkimg.com/banners/ (easylistchina+easylist.txt: 60243) -.ebkimg.com/banners/ -# @@||e24.no^$elemhide (easylistchina+easylist.txt: 60242) -.e24.no -# @@||dx-tv.com^$elemhide (easylistchina+easylist.txt: 60241) -.dx-tv.com -# @@||dvdfullfree.com^$elemhide (easylistchina+easylist.txt: 60240) -.dvdfullfree.com -# @@||dressuppink.com^*/ads.js (easylistchina+easylist.txt: 60236) -.dressuppink.com/.*/ads\.js -# @@||dressup.com^*/ads.js (easylistchina+easylist.txt: 60234) -.dressup.com/.*/ads\.js -# @@||dragoart.com^$elemhide (easylistchina+easylist.txt: 60233) -.dragoart.com -# @@||dontdrinkandroot.net/js/adframe.js (easylistchina+easylist.txt: 60226) -.dontdrinkandroot.net/js/adframe\.js -# @@||domain.com/ads.html (easylistchina+easylist.txt: 60225) -.domain.com/ads\.html -# @@||dogefaucet.com^*/advertisement.js (easylistchina+easylist.txt: 60223) -.dogefaucet.com/.*/advertisement\.js -# @@||doge-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60221) -.doge-faucet.tk/advertisement\.js -# @@||docpaste.com^$elemhide (easylistchina+easylist.txt: 60220) -.docpaste.com -# @@||dksoftwares4u.blogspot.co.uk^$elemhide (easylistchina+easylist.txt: 60217) -.dksoftwares4u.blogspot.co.uk -# @@||dinozap.tv/adimages/ (easylistchina+easylist.txt: 60214) -.dinozap.tv/adimages/ -# @@||destinypublicevents.com/src/advertisement.js (easylistchina+easylist.txt: 60211) -.destinypublicevents.com/src/advertisement\.js -# @@||destinationamerica.com^$elemhide (easylistchina+easylist.txt: 60210) -.destinationamerica.com -# @@||desionlinetheater.com^$elemhide (easylistchina+easylist.txt: 60209) -.desionlinetheater.com -# @@||decomaniacos.es^*/advertisement.js (easylistchina+easylist.txt: 60205) -.decomaniacos.es/.*/advertisement\.js -# @@||debridx.com^$elemhide (easylistchina+easylist.txt: 60204) -.debridx.com -# @@||debridnet.com^$elemhide (easylistchina+easylist.txt: 60203) -.debridnet.com -# @@||debridit.com^$elemhide (easylistchina+easylist.txt: 60202) -.debridit.com -# @@||debrastagi.com^$elemhide (easylistchina+easylist.txt: 60201) -.debrastagi.com -# @@||dayt.se^$elemhide (easylistchina+easylist.txt: 60199) -.dayt.se -# @@||danydanielrt.com^$elemhide (easylistchina+easylist.txt: 60197) -.danydanielrt.com -# @@||cyberdevilz.net^$elemhide (easylistchina+easylist.txt: 60193) -.cyberdevilz.net -# @@||cricket-365.tv^$elemhide (easylistchina+easylist.txt: 60191) -.cricket-365.tv -# @@||corepacks.com^$elemhide (easylistchina+easylist.txt: 60182) -.corepacks.com -# @@||coolgames.com^*/ads.js (easylistchina+easylist.txt: 60180) -.coolgames.com/.*/ads\.js -# @@||cookinggames.com^*/ads.js (easylistchina+easylist.txt: 60179) -.cookinggames.com/.*/ads\.js -# @@||computerworld.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 60177) -.computerworld.com/www/js/ads/gpt_includes\.js -# @@||compartiendofull.org^$elemhide (easylistchina+easylist.txt: 60176) -.compartiendofull.org -# @@||coinurl.com/get.php?id=18045 (easylistchina+easylist.txt: 60174) -.coinurl.com/get\.php\?id=18045 -# @@||coinracket.com^$elemhide (easylistchina+easylist.txt: 60173) -.coinracket.com -# @@||coincheckin.com/js/adframe.js (easylistchina+easylist.txt: 60172) -.coincheckin.com/js/adframe\.js -# @@||codingcrazy.com/demo/adframe.js (easylistchina+easylist.txt: 60171) -.codingcrazy.com/demo/adframe\.js -# @@||clubedohardware.com.br^$elemhide (easylistchina+easylist.txt: 60170) -.clubedohardware.com.br -# @@||cloudvidz.net^$elemhide (easylistchina+easylist.txt: 60169) -.cloudvidz.net -# @@||cleodesktop.com^$elemhide (easylistchina+easylist.txt: 60163) -.cleodesktop.com -# @@||cityam.com^$generichide (easylistchina+easylist.txt: 60162) -.cityam.com -# @@||cinestrenostv.tv/reproductores/adblock.js (easylistchina+easylist.txt: 60161) -.cinestrenostv.tv/reproductores/adblock\.js -# @@||cinema2satu.net^$elemhide (easylistchina+easylist.txt: 60160) -.cinema2satu.net -# @@||chrissmoove.com^$elemhide (easylistchina+easylist.txt: 60157) -.chrissmoove.com -# @@||celogeek.com/stylesheets/blogads.css (easylistchina+easylist.txt: 60145) -.celogeek.com/stylesheets/blogads\.css -# @@||cdn.eventosppv.me^$elemhide (easylistchina+easylist.txt: 60142) -.cdn.eventosppv.me -# @@||cdn-seekingalpha.com^*/ads.js (easylistchina+easylist.txt: 60140) -.cdn-seekingalpha.com/.*/ads\.js -# @@||cbs.com^$elemhide (easylistchina+easylist.txt: 60138) -.cbs.com -# @@||catchvideo.net/adframe.js (easylistchina+easylist.txt: 60137) -.catchvideo.net/adframe\.js -# @@||captchme.net/js/advertisement.js (easylistchina+easylist.txt: 60134) -.captchme.net/js/advertisement\.js -# @@||captchme.net/js/advertisement-min.js (easylistchina+easylist.txt: 60133) -.captchme.net/js/advertisement-min\.js -# @@||calcularindemnizacion.es^$elemhide (easylistchina+easylist.txt: 60131) -.calcularindemnizacion.es -# @@||bywarrior.com^$elemhide (easylistchina+easylist.txt: 60130) -.bywarrior.com -# @@||bulletproofserving.com/scripts/ads.js (easylistchina+easylist.txt: 60128) -.bulletproofserving.com/scripts/ads\.js -# @@||budget101.com^$elemhide (easylistchina+easylist.txt: 60127) -.budget101.com -# @@||btspread.com/eroex.js (easylistchina+easylist.txt: 60126) -.btspread.com/eroex\.js -# @@||boxxod.net/advertisement.js (easylistchina+easylist.txt: 60123) -.boxxod.net/advertisement\.js -# @@||boincstats.com/js/adframe.js (easylistchina+easylist.txt: 60122) -.boincstats.com/js/adframe\.js -# @@||bitplay.ga^$elemhide (easylistchina+easylist.txt: 60119) -.bitplay.ga -# @@||bitcoiner.net/advertisement.js (easylistchina+easylist.txt: 60118) -.bitcoiner.net/advertisement\.js -# @@||bitcoin-free-faucet.eu^$elemhide (easylistchina+easylist.txt: 60117) -.bitcoin-free-faucet.eu -# @@||bitcoin-faucet.eu^$elemhide (easylistchina+easylist.txt: 60116) -.bitcoin-faucet.eu -# @@||bitcoin-cloud.eu^$elemhide (easylistchina+easylist.txt: 60115) -.bitcoin-cloud.eu -# @@||bitcoin-best-faucet.eu^$elemhide (easylistchina+easylist.txt: 60114) -.bitcoin-best-faucet.eu -# @@||bitcofree.com^$elemhide (easylistchina+easylist.txt: 60113) -.bitcofree.com -# @@||binbox.io^$elemhide (easylistchina+easylist.txt: 60112) -.binbox.io -# @@||binbox.io/adblock.js (easylistchina+easylist.txt: 60111) -.binbox.io/adblock\.js -# @@||bilzonen.dk/scripts/ads.js (easylistchina+easylist.txt: 60109) -.bilzonen.dk/scripts/ads\.js -# @@||bicimotosargentina.com^$elemhide (easylistchina+easylist.txt: 60108) -.bicimotosargentina.com -# @@||bezaldfamily.net^$elemhide (easylistchina+easylist.txt: 60107) -.bezaldfamily.net -# @@||better-explorer.com^$elemhide (easylistchina+easylist.txt: 60106) -.better-explorer.com -# @@||bestream.tv/advert*.js (easylistchina+easylist.txt: 60105) -.bestream.tv/advert.*\.js -# @@||bestofmedia.com^*/advertisement.js (easylistchina+easylist.txt: 60104) -.bestofmedia.com/.*/advertisement\.js -# @@||best-free-faucet.eu^$elemhide (easylistchina+easylist.txt: 60103) -.best-free-faucet.eu -# @@||best-bitcoin-faucet.eu^$elemhide (easylistchina+easylist.txt: 60102) -.best-bitcoin-faucet.eu -# @@||beelink.in/advertisement.js (easylistchina+easylist.txt: 60099) -.beelink.in/advertisement\.js -# @@||bdrip.ws^$elemhide (easylistchina+easylist.txt: 60098) -.bdrip.ws -# @@||backin.net^$elemhide (easylistchina+easylist.txt: 60095) -.backin.net -# @@||backin.net/advertisement.js (easylistchina+easylist.txt: 60094) -.backin.net/advertisement\.js -# @@||autolikesgroups.com^$elemhide (easylistchina+easylist.txt: 60091) -.autolikesgroups.com -# @@||autolikergroup.com/advertisement.js (easylistchina+easylist.txt: 60090) -.autolikergroup.com/advertisement\.js -# @@||autogespot.*/JavaScript/ads.js? (easylistchina+easylist.txt: 60089) -.autogespot.*./(.*/)?JavaScript/ads\.js\? -# @@||auroravid.to/banner.php (easylistchina+easylist.txt: 60088) -.auroravid.to/banner\.php -# @@||auditude.com/player/js/lib/aud.html5player.js (easylistchina+easylist.txt: 60087) -.auditude.com/player/js/lib/aud\.html5player\.js -# @@||atresplayer.com/static/js/advertisement.js (easylistchina+easylist.txt: 60085) -.atresplayer.com/static/js/advertisement\.js -# @@||aseanlegacy.net^$elemhide (easylistchina+easylist.txt: 60082) -.aseanlegacy.net -# @@||aseanlegacy.net/images/ads.png (easylistchina+easylist.txt: 60081) -.aseanlegacy.net/images/ads\.png -# @@||aseanlegacy.net/assets/advertisement.js (easylistchina+easylist.txt: 60080) -.aseanlegacy.net/assets/advertisement\.js -# @@||aseanlegacy.net/ad*.js (easylistchina+easylist.txt: 60079) -.aseanlegacy.net/ad.*\.js -# @@||arto.com/includes/js/adtech.de/script.axd/adframe.js? (easylistchina+easylist.txt: 60078) -.arto.com/includes/js/adtech\.de/script\.axd/adframe\.js\? -# @@||ar51.eu/ad/advertisement.js (easylistchina+easylist.txt: 60077) -.ar51.eu/ad/advertisement\.js -# @@||appfull.net^$elemhide (easylistchina+easylist.txt: 60076) -.appfull.net -# @@||appdn.net^$elemhide (easylistchina+easylist.txt: 60075) -.appdn.net -# @@||apkone.net^$elemhide (easylistchina+easylist.txt: 60074) -.apkone.net -# @@||apkmirror.com/wp-content/themes/APKMirror/js/ads.js (easylistchina+easylist.txt: 60073) -.apkmirror.com/wp-content/themes/APKMirror/js/ads\.js -# @@||anti-adblock-scripts.googlecode.com/files/adscript.js (easylistchina+easylist.txt: 60072) -.anti-adblock-scripts.googlecode.com/files/adscript\.js -# @@||anonytext.tk^$elemhide (easylistchina+easylist.txt: 60070) -.anonytext.tk -# @@||anizm.com^$elemhide (easylistchina+easylist.txt: 60069) -.anizm.com -# @@||anisearch.com^*/ads.js? (easylistchina+easylist.txt: 60068) -.anisearch.com/.*/ads\.js\? -# @@||animesubita.info^$elemhide (easylistchina+easylist.txt: 60067) -.animesubita.info -# @@||animesproject.com^*/player.php$elemhide (easylistchina+easylist.txt: 60066) -.animesproject.com/.*/player\.php -# @@||animesproject.com^*/fuckadblock.js (easylistchina+easylist.txt: 60065) -.animesproject.com/.*/fuckadblock\.js -# @@||animefushigi.com^$elemhide (easylistchina+easylist.txt: 60064) -.animefushigi.com -# @@||anime2enjoy.com^$elemhide (easylistchina+easylist.txt: 60062) -.anime2enjoy.com -# @@||animalplanet.com^$elemhide (easylistchina+easylist.txt: 60061) -.animalplanet.com -# @@||android-zone.org^$elemhide (easylistchina+easylist.txt: 60060) -.android-zone.org -# @@||ancensored.com/sites/all/modules/player/images/ad.jpg (easylistchina+easylist.txt: 60059) -.ancensored.com/sites/all/modules/player/images/ad\.jpg -# @@||amk.to/js/adcode.js? (easylistchina+easylist.txt: 60058) -.amk.to/js/adcode\.js\? -# @@||amigosdelamili.com^$elemhide (easylistchina+easylist.txt: 60057) -.amigosdelamili.com -# @@||altoque.com^$elemhide (easylistchina+easylist.txt: 60052) -.altoque.com -# @@||allkpop.com/ads.js (easylistchina+easylist.txt: 60051) -.allkpop.com/ads\.js -# @@||alcohoin-faucet.tk/advertisement.js (easylistchina+easylist.txt: 60048) -.alcohoin-faucet.tk/advertisement\.js -# @@||ahctv.com^$elemhide (easylistchina+easylist.txt: 60043) -.ahctv.com -# @@||agar.io^*/advertisement.js (easylistchina+easylist.txt: 60042) -.agar.io/.*/advertisement\.js -# @@||afterburnerleech.com/js/show_ads.js (easylistchina+easylist.txt: 60041) -.afterburnerleech.com/js/show_ads\.js -# @@||afreesms.com^$elemhide (easylistchina+easylist.txt: 60039) -.afreesms.com -# @@||adserver.liverc.com/getBannerVerify.js (easylistchina+easylist.txt: 60026) -.adserver.liverc.com/getBannerVerify\.js -# @@||adf.ly^$generichide (easylistchina+easylist.txt: 59992) -.adf.ly -# @@||adconscious.com/js/fuckadblock.js (easylistchina+easylist.txt: 59990) -.adconscious.com/js/fuckadblock\.js -# @@||ad.leadbolt.net/show_cu.js (easylistchina+easylist.txt: 59983) -.ad.leadbolt.net/show_cu\.js -# @@||9xbuddy.com/js/ads.js (easylistchina+easylist.txt: 59978) -.9xbuddy.com/js/ads\.js -# @@||9tutorials.com^$elemhide (easylistchina+easylist.txt: 59977) -.9tutorials.com -# @@||95.211.184.210/js/advertisement.js (easylistchina+easylist.txt: 59973) -.95.211.184.210/js/advertisement\.js -# @@||4sysops.com^*/adframe.js (easylistchina+easylist.txt: 59971) -.4sysops.com/.*/adframe\.js -# @@||4fuckr.com^*/adframe.js (easylistchina+easylist.txt: 59969) -.4fuckr.com/.*/adframe\.js -# @@||360haven.com^$elemhide (easylistchina+easylist.txt: 59968) -.360haven.com -# @@||360haven.com/adframe.js (easylistchina+easylist.txt: 59967) -.360haven.com/adframe\.js -# @@||300mblink.com^$elemhide (easylistchina+easylist.txt: 59966) -.300mblink.com -# @@||youtube.com/yt/css/www-advertise.css (easylistchina+easylist.txt: 59859) -.youtube.com/yt/css/www-advertise\.css -# @@||yokosonews.com/files/cache/ (easylistchina+easylist.txt: 59856) -.yokosonews.com/files/cache/ -# @@||ykhandler.com/adframe.js (easylistchina+easylist.txt: 59855) -.ykhandler.com/adframe\.js -# @@||yimg.com^*/java/promotions/js/ad_eo_1.1.js (easylistchina+easylist.txt: 59854) -.yimg.com/.*/java/promotions/js/ad_eo_1\.1\.js -# @@||yimg.com^*&yat/js/ads_ (easylistchina+easylist.txt: 59851) -.yimg.com/.*&yat/js/ads_ -# @@||yimg.com/zz/combo?*&*.js (easylistchina+easylist.txt: 59850) -.yimg.com/zz/combo\?.*&.*\.js -# @@||yellupload.com/yell/videoads/yellvideoplayer.swf? (easylistchina+easylist.txt: 59846) -.yellupload.com/yell/videoads/yellvideoplayer\.swf\? -# @@||yellupload.com/yell/videoads/*.flv| (easylistchina+easylist.txt: 59845) -.yellupload.com/yell/videoads/.*\.flv$ -# @@||yellowpages.com.mt/Images/Design/Buttons/advert.png (easylistchina+easylist.txt: 59844) -.yellowpages.com.mt/Images/Design/Buttons/advert\.png -# @@||wrapper.teamxbox.com/a?size=headermainad (easylistchina+easylist.txt: 59828) -.wrapper.teamxbox.com/a\?size=headermainad -# @@||wp.com/_static/*/criteo.js (easylistchina+easylist.txt: 59823) -.wp.com/_static/.*/criteo\.js -# @@||wortech.ac.uk/publishingimages/adverts/ (easylistchina+easylist.txt: 59822) -.wortech.ac.uk/publishingimages/adverts/ -# @@||worldstarhiphop.com^*/dj2.swf (easylistchina+easylist.txt: 59821) -.worldstarhiphop.com/.*/dj2\.swf -# @@||wisegeek.com/res/contentad/ (easylistchina+easylist.txt: 59820) -.wisegeek.com/res/contentad/ -# @@||wirefly.com/_images/ads/ (easylistchina+easylist.txt: 59819) -.wirefly.com/_images/ads/ -# @@||wired.com^*/cn-fe-ads/cn.dart.js (easylistchina+easylist.txt: 59818) -.wired.com/.*/cn-fe-ads/cn\.dart\.js -# @@||winnipegsun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59817) -.winnipegsun.com/assets/js/dfp\.js\? -# @@||widget.slide.com^*/ads/*/preroll.swf (easylistchina+easylist.txt: 59810) -.widget.slide.com/.*/ads/.*/preroll\.swf -# @@||whittakersworldwide.com/site-media/advertisements/ (easylistchina+easylist.txt: 59807) -.whittakersworldwide.com/site-media/advertisements/ -# @@||whitepages.com^*/google_adsense.js? (easylistchina+easylist.txt: 59806) -.whitepages.com/.*/google_adsense\.js\? -# @@||washingtonpost.com^*=/ad/audsci.js (easylistchina+easylist.txt: 59801) -.washingtonpost.com/.*=/ad/audsci\.js -# @@||washingtonpost.com/wpost2/css/combo?*/ads.css (easylistchina+easylist.txt: 59800) -.washingtonpost.com/wpost2/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wpost/css/combo?*/ads.css (easylistchina+easylist.txt: 59799) -.washingtonpost.com/wpost/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wp-srv/ad/wpni_generic_ad.js (easylistchina+easylist.txt: 59798) -.washingtonpost.com/wp-srv/ad/wpni_generic_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp_config.js (easylistchina+easylist.txt: 59797) -.washingtonpost.com/wp-srv/ad/wp_config\.js -# @@||washingtonpost.com/wp-srv/ad/wp_ad.js (easylistchina+easylist.txt: 59796) -.washingtonpost.com/wp-srv/ad/wp_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp.js (easylistchina+easylist.txt: 59795) -.washingtonpost.com/wp-srv/ad/wp\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks_config.js (easylistchina+easylist.txt: 59794) -.washingtonpost.com/wp-srv/ad/textlinks_config\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks.js (easylistchina+easylist.txt: 59793) -.washingtonpost.com/wp-srv/ad/textlinks\.js -# @@||washingtonpost.com/wp-srv/ad/textlink_driver.js (easylistchina+easylist.txt: 59792) -.washingtonpost.com/wp-srv/ad/textlink_driver\.js -# @@||washingtonpost.com/wp-srv/ad/generic_ad.js (easylistchina+easylist.txt: 59791) -.washingtonpost.com/wp-srv/ad/generic_ad\.js -# @@||washingtonpost.com/wp-adv/advertisers/russianow/ (easylistchina+easylist.txt: 59790) -.washingtonpost.com/wp-adv/advertisers/russianow/ -# @@||walmartmoneycard.com^*/shared/ad_rotater.swf (easylistchina+easylist.txt: 59788) -.walmartmoneycard.com/.*/shared/ad_rotater\.swf -# @@||vtstage.cbsinteractive.com/plugins/*_adplugin.swf (easylistchina+easylist.txt: 59782) -.vtstage.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vmagazine.com/web/css/ads.css (easylistchina+easylist.txt: 59779) -.vmagazine.com/web/css/ads\.css -# @@||vizanime.com/ad/get_ads? (easylistchina+easylist.txt: 59776) -.vizanime.com/ad/get_ads\? -# @@||vitalitymall.co.za/images/adrotator/ (easylistchina+easylist.txt: 59775) -.vitalitymall.co.za/images/adrotator/ -# @@||vistek.ca/ads/ (easylistchina+easylist.txt: 59774) -.vistek.ca/ads/ -# @@||virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery.internads.js (easylistchina+easylist.txt: 59773) -.virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery\.internads\.js -# @@||vidtech.cbsinteractive.com/plugins/*_adplugin.swf (easylistchina+easylist.txt: 59770) -.vidtech.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||video.nbcuni.com^*/inext_ad_engine/ad_engine_extension.swf (easylistchina+easylist.txt: 59758) -.video.nbcuni.com/.*/inext_ad_engine/ad_engine_extension\.swf -# @@||video.nbcuni.com^*/ad_engine_extension_nbc.swf (easylistchina+easylist.txt: 59757) -.video.nbcuni.com/.*/ad_engine_extension_nbc\.swf -# @@||video.economist.com/adfinder.jsp? (easylistchina+easylist.txt: 59756) -.video.economist.com/adfinder\.jsp\? -# @@||viamichelin.*/static/advert/sponsoring/itinerarypage/itinerarypage.js (easylistchina+easylist.txt: 59754) -.viamichelin.*./(.*/)?static/advert/sponsoring/itinerarypage/itinerarypage\.js -# @@||viamichelin.*/static/advert/afsquery/afsquery.js (easylistchina+easylist.txt: 59753) -.viamichelin.*./(.*/)?static/advert/afsquery/afsquery\.js -# @@||viamichelin.*/rentacar.js (easylistchina+easylist.txt: 59752) -.viamichelin.*./(.*/)?rentacar\.js -# @@||veetle.com/images/common/ads/ (easylistchina+easylist.txt: 59749) -.veetle.com/images/common/ads/ -# @@||vanityfair.com/ads/js/cn.dart.bun.min.js (easylistchina+easylist.txt: 59748) -.vanityfair.com/ads/js/cn\.dart\.bun\.min\.js -# @@||vancouversun.com/js/adsync/adsynclibrary.js (easylistchina+easylist.txt: 59747) -.vancouversun.com/js/adsync/adsynclibrary\.js -# @@||valueram.com/banners/ads/ (easylistchina+easylist.txt: 59746) -.valueram.com/banners/ads/ -# @@||vagazette.com/hive/images/adv_ (easylistchina+easylist.txt: 59745) -.vagazette.com/hive/images/adv_ -# @@||vacationstarter.com/hive/images/adv_ (easylistchina+easylist.txt: 59743) -.vacationstarter.com/hive/images/adv_ -# @@||utdallas.edu^*/banner.js (easylistchina+easylist.txt: 59736) -.utdallas.edu/.*/banner\.js -# @@||usps.com/adserver/ (easylistchina+easylist.txt: 59732) -.usps.com/adserver/ -# @@||usanetwork.com^*/usanetwork_ads.s_code.js? (easylistchina+easylist.txt: 59731) -.usanetwork.com/.*/usanetwork_ads\.s_code\.js\? -# @@||upload.wikimedia.org/wikipedia/ (easylistchina+easylist.txt: 59728) -.upload.wikimedia.org/wikipedia/ -# @@||ultrabrown.com/images/adheader.jpg (easylistchina+easylist.txt: 59725) -.ultrabrown.com/images/adheader\.jpg -# @@||ultimate-guitar.com/js/ug_ads.js (easylistchina+easylist.txt: 59724) -.ultimate-guitar.com/js/ug_ads\.js -# @@||ukbride.co.uk/css/*/adverts.css (easylistchina+easylist.txt: 59723) -.ukbride.co.uk/css/.*/adverts\.css -# @@||uillinois.edu/eas/ (easylistchina+easylist.txt: 59722) -.uillinois.edu/eas/ -# @@||ucaster.eu/static/scripts/adscript.js (easylistchina+easylist.txt: 59721) -.ucaster.eu/static/scripts/adscript\.js -# @@||twitvid.com/mediaplayer_*.swf? (easylistchina+easylist.txt: 59718) -.twitvid.com/mediaplayer_.*\.swf\? -# @@||tvnz.co.nz/*/advertisement.js (easylistchina+easylist.txt: 59716) -.tvnz.co.nz/.*/advertisement\.js -# @@||tvgorge.com^*/adplayer.swf (easylistchina+easylist.txt: 59715) -.tvgorge.com/.*/adplayer\.swf -# @@||tv-kino.net/wp-content/themes/*/advertisement.js (easylistchina+easylist.txt: 59714) -.tv-kino.net/wp-content/themes/.*/advertisement\.js -# @@||tut.by/uppod/frameid406/ads1/ (easylistchina+easylist.txt: 59713) -.tut.by/uppod/frameid406/ads1/ -# @@||tudouui.com/bin/player2/*&adsourceid= (easylistchina+easylist.txt: 59706) -.tudouui.com/bin/player2/.*&adsourceid= -# @@||trustedreviews.com^*/adtech.js (easylistchina+easylist.txt: 59702) -.trustedreviews.com/.*/adtech\.js -# @@||trialpay.com/js/advertiser.js (easylistchina+easylist.txt: 59699) -.trialpay.com/js/advertiser\.js -# @@||travidia.com/ss-page/ (easylistchina+easylist.txt: 59696) -.travidia.com/ss-page/ -# @@||traumagame.com/trauma_data/ads/ad2.jpg (easylistchina+easylist.txt: 59691) -.traumagame.com/trauma_data/ads/ad2\.jpg -# @@||translate.google.com/translate/static/*-ads/ (easylistchina+easylist.txt: 59690) -.translate.google.com/translate/static/.*-ads/ -# @@||traktorpool.de^*/advert. (easylistchina+easylist.txt: 59688) -.traktorpool.de/.*/advert\. -# @@||traktorpool.de/scripts/advert/ (easylistchina+easylist.txt: 59687) -.traktorpool.de/scripts/advert/ -# @@||trade-a-plane.com/AdBox/js/jquery.TAP_AdBox.js (easylistchina+easylist.txt: 59683) -.trade-a-plane.com/AdBox/js/jquery\.TAP_AdBox\.js -# @@||torontosun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59680) -.torontosun.com/assets/js/dfp\.js\? -# @@||topusajobs.com/banners/ (easylistchina+easylist.txt: 59679) -.topusajobs.com/banners/ -# @@||topgear.com^*/ads.min.js (easylistchina+easylist.txt: 59678) -.topgear.com/.*/ads\.min\.js -# @@||tntexpress.com.au^*/marketing/banners/ (easylistchina+easylist.txt: 59671) -.tntexpress.com.au/.*/marketing/banners/ -# @@||tkcarsites.com/soba/bannersservice (easylistchina+easylist.txt: 59668) -.tkcarsites.com/soba/bannersservice -# @@||tinysubversions.com/clickbait/adjs.json (easylistchina+easylist.txt: 59667) -.tinysubversions.com/clickbait/adjs\.json -# @@||tinbuadserv.com/js/integrate/ads_common.js (easylistchina+easylist.txt: 59665) -.tinbuadserv.com/js/integrate/ads_common\.js -# @@||timeout.com/images/ads/weather/ (easylistchina+easylist.txt: 59663) -.timeout.com/images/ads/weather/ -# @@||timeinc.net^*/tii_ads.js (easylistchina+easylist.txt: 59662) -.timeinc.net/.*/tii_ads\.js -# @@||tiads.timeinc.net/ads/tgx.js (easylistchina+easylist.txt: 59658) -.tiads.timeinc.net/ads/tgx\.js -# @@||thunderheadeng.com/wp-content/uploads/*300x250 (easylistchina+easylist.txt: 59657) -.thunderheadeng.com/wp-content/uploads/.*300x250 -# @@||thrifty.co.uk/bannerads/ (easylistchina+easylist.txt: 59655) -.thrifty.co.uk/bannerads/ -# @@||thomsonlocal.com/js/adsense-min.js (easylistchina+easylist.txt: 59654) -.thomsonlocal.com/js/adsense-min\.js -# @@||thomann.de/thumb/*/pics/adv/adv_image_ (easylistchina+easylist.txt: 59653) -.thomann.de/thumb/.*/pics/adv/adv_image_ -# @@||theweathernetwork.com/js/adrefresh.js (easylistchina+easylist.txt: 59651) -.theweathernetwork.com/js/adrefresh\.js -# @@||thetvdb.com/banners/ (easylistchina+easylist.txt: 59650) -.thetvdb.com/banners/ -# @@||theory-test.co.uk/css/ads.css (easylistchina+easylist.txt: 59647) -.theory-test.co.uk/css/ads\.css -# @@||thenewage.co.za/classifieds/images2/postad.gif (easylistchina+easylist.txt: 59645) -.thenewage.co.za/classifieds/images2/postad\.gif -# @@||theloop.com.au/js/simplejob_ad_content.js? (easylistchina+easylist.txt: 59643) -.theloop.com.au/js/simplejob_ad_content\.js\? -# @@||thefrisky.com/js/adspaces.min.js (easylistchina+easylist.txt: 59641) -.thefrisky.com/js/adspaces\.min\.js -# @@||thefourthperiod.com/ads/tfplogo_ (easylistchina+easylist.txt: 59640) -.thefourthperiod.com/ads/tfplogo_ -# @@||theepochtimes.com^*/article-ads.js? (easylistchina+easylist.txt: 59639) -.theepochtimes.com/.*/article-ads\.js\? -# @@||thedailygreen.com/ams/page-ads.js? (easylistchina+easylist.txt: 59634) -.thedailygreen.com/ams/page-ads\.js\? -# @@||texasstudentmedia.com/advertise/ (easylistchina+easylist.txt: 59632) -.texasstudentmedia.com/advertise/ -# @@||tetrisfriends.com/ads/google_dfp_video_ad.html (easylistchina+easylist.txt: 59631) -.tetrisfriends.com/ads/google_dfp_video_ad\.html -# @@||telegraphcouk.skimlinks.com/api/telegraph.skimlinks.js (easylistchina+easylist.txt: 59627) -.telegraphcouk.skimlinks.com/api/telegraph\.skimlinks\.js -# @@||teknikor.com/content/wp-content/themes/*-adv.jpg (easylistchina+easylist.txt: 59626) -.teknikor.com/content/wp-content/themes/.*-adv\.jpg -# @@||talkgold.com/bans/rss.png (easylistchina+easylist.txt: 59618) -.talkgold.com/bans/rss\.png -# @@||take40.com/common/javascript/ads.js (easylistchina+easylist.txt: 59617) -.take40.com/common/javascript/ads\.js -# @@||syracuse.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59614) -.syracuse.com/static/common/js/ads/ads\.js -# @@||support.dlink.com/Scripts/custom/pop.js (easylistchina+easylist.txt: 59609) -.support.dlink.com/Scripts/custom/pop\.js -# @@||superfundo.org/advertisement.js (easylistchina+easylist.txt: 59605) -.superfundo.org/advertisement\.js -# @@||supercartoons.net/ad-preroll.html (easylistchina+easylist.txt: 59604) -.supercartoons.net/ad-preroll\.html -# @@||summitracing.com/global/images/bannerads/ (easylistchina+easylist.txt: 59603) -.summitracing.com/global/images/bannerads/ -# @@||subscribe.teenvogue.com/ams/page-ads.js (easylistchina+easylist.txt: 59601) -.subscribe.teenvogue.com/ams/page-ads\.js -# @@||subscribe.newyorker.com/ams/page-ads.js (easylistchina+easylist.txt: 59600) -.subscribe.newyorker.com/ams/page-ads\.js -# @@||stickam.com/css/ver1/asset/sharelayout2col_ad300x250.css (easylistchina+easylist.txt: 59595) -.stickam.com/css/ver1/asset/sharelayout2col_ad300x250\.css -# @@||stclassifieds.sg/postad/ (easylistchina+easylist.txt: 59594) -.stclassifieds.sg/postad/ -# @@||st.com^*/banners.js (easylistchina+easylist.txt: 59584) -.st.com/.*/banners\.js -# @@||springbokradio.com/sitebuilder/images/ads- (easylistchina+easylist.txt: 59578) -.springbokradio.com/sitebuilder/images/ads- -# @@||springbokradio.com/images/ads- (easylistchina+easylist.txt: 59577) -.springbokradio.com/images/ads- -# @@||springboardplatform.com/storage/lightbox_code/static/companion_ads.js (easylistchina+easylist.txt: 59576) -.springboardplatform.com/storage/lightbox_code/static/companion_ads\.js -# @@||spotrails.com^*/flowplayeradplayerplugin.swf (easylistchina+easylist.txt: 59569) -.spotrails.com/.*/flowplayeradplayerplugin\.swf -# @@||spendino.de/admanager/ (easylistchina+easylist.txt: 59564) -.spendino.de/admanager/ -# @@||spectrum.ieee.org/assets/js/masonry-ads-right.min.js (easylistchina+easylist.txt: 59563) -.spectrum.ieee.org/assets/js/masonry-ads-right\.min\.js -# @@||southwest.com^*/homepage/ads/ (easylistchina+easylist.txt: 59562) -.southwest.com/.*/homepage/ads/ -# @@||southwest.com/assets/images/ads/ad_select_flight_ (easylistchina+easylist.txt: 59561) -.southwest.com/assets/images/ads/ad_select_flight_ -# @@||sonypictures.com^*/admedia/ (easylistchina+easylist.txt: 59560) -.sonypictures.com/.*/admedia/ -# @@||songza.com/static/*/songza/ads/iframe.js (easylistchina+easylist.txt: 59557) -.songza.com/static/.*/songza/ads/iframe\.js -# @@||songza.com/advertising/top/ (easylistchina+easylist.txt: 59556) -.songza.com/advertising/top/ -# @@||somethingsexyplanet.com/image/adzones/ (easylistchina+easylist.txt: 59554) -.somethingsexyplanet.com/image/adzones/ -# @@||softwarepromotions.com/images/google-adwords-professional.gif (easylistchina+easylist.txt: 59553) -.softwarepromotions.com/images/google-adwords-professional\.gif -# @@||socialblogsitewebdesign.com^*/advertising_conversion_images/ (easylistchina+easylist.txt: 59551) -.socialblogsitewebdesign.com/.*/advertising_conversion_images/ -# @@||smmirror.com^*/getads.php (easylistchina+easylist.txt: 59550) -.smmirror.com/.*/getads\.php -# @@||slowblog.com/ad.js (easylistchina+easylist.txt: 59543) -.slowblog.com/ad\.js -# @@||site-jump.com/banners/ (easylistchina+easylist.txt: 59538) -.site-jump.com/banners/ -# @@||sillyvamp.com/ads/Donate.png (easylistchina+easylist.txt: 59537) -.sillyvamp.com/ads/Donate\.png -# @@||silive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59536) -.silive.com/static/common/js/ads/ads\.js -# @@||sihanoukvilleonline.com/banners/sologo.png (easylistchina+easylist.txt: 59535) -.sihanoukvilleonline.com/banners/sologo\.png -# @@||sify.com/news/postcomments.php?*468x60.html (easylistchina+easylist.txt: 59533) -.sify.com/news/postcomments\.php\?.*468x60\.html -# @@||shelleytheatre.co.uk/filmimages/banners/160 (easylistchina+easylist.txt: 59530) -.shelleytheatre.co.uk/filmimages/banners/160 -# @@||shackvideo.com/playlist_xml.x? (easylistchina+easylist.txt: 59525) -.shackvideo.com/playlist_xml\.x\? -# @@||seventeen.com/ams/page-ads.js (easylistchina+easylist.txt: 59521) -.seventeen.com/ams/page-ads\.js -# @@||serviceexpress.net/js/pop.js (easylistchina+easylist.txt: 59519) -.serviceexpress.net/js/pop\.js -# @@||sekonda.co.uk/advert_images/ (easylistchina+easylist.txt: 59512) -.sekonda.co.uk/advert_images/ -# @@||securenetsystems.net/scripts/*/sdfy_scripts_advertising.js (easylistchina+easylist.txt: 59510) -.securenetsystems.net/scripts/.*/sdfy_scripts_advertising\.js -# @@||secondlife.com/assets/*_AD3.jpg (easylistchina+easylist.txt: 59508) -.secondlife.com/assets/.*_AD3\.jpg -# @@||sec-ads.bridgetrack.com/ads_img/ (easylistchina+easylist.txt: 59507) -.sec-ads.bridgetrack.com/ads_img/ -# @@||search.yahoo.com^$generichide (easylistchina+easylist.txt: 59506) -.search.yahoo.com -# @@||sdltutorials.com/Data/Ads/AppStateBanner.jpg (easylistchina+easylist.txt: 59504) -.sdltutorials.com/Data/Ads/AppStateBanner\.jpg -# @@||salon.com/content/plugins/salon-ad-controller/ad-utilities.js (easylistchina+easylist.txt: 59488) -.salon.com/content/plugins/salon-ad-controller/ad-utilities\.js -# @@||salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery.jshowoff.min.js? (easylistchina+easylist.txt: 59487) -.salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery\.jshowoff\.min\.js\? -# @@||russellrooftiles.co.uk/images/rrt_envirotile_home_advert.png (easylistchina+easylist.txt: 59479) -.russellrooftiles.co.uk/images/rrt_envirotile_home_advert\.png -# @@||rsvlts.com/wp-content/uploads/*-advertisment- (easylistchina+easylist.txt: 59473) -.rsvlts.com/wp-content/uploads/.*-advertisment- -# @@||rotate.infowars.com/www/delivery/spcjs.php (easylistchina+easylist.txt: 59468) -.rotate.infowars.com/www/delivery/spcjs\.php -# @@||rotate.infowars.com/www/delivery/fl.js (easylistchina+easylist.txt: 59467) -.rotate.infowars.com/www/delivery/fl\.js -# @@||rosauers.com/locations/ads.html (easylistchina+easylist.txt: 59466) -.rosauers.com/locations/ads\.html -# @@||rewaz.org/ads/adframe2.js (easylistchina+easylist.txt: 59462) -.rewaz.org/ads/adframe2\.js -# @@||remo-xp.com/wp-content/themes/adsense-boqpod/style.css (easylistchina+easylist.txt: 59452) -.remo-xp.com/wp-content/themes/adsense-boqpod/style\.css -# @@||refline.ch^*/advertisement.css (easylistchina+easylist.txt: 59451) -.refline.ch/.*/advertisement\.css -# @@||redbookmag.com/ams/page-ads.js? (easylistchina+easylist.txt: 59449) -.redbookmag.com/ams/page-ads\.js\? -# @@||realvnc.com/assets/img/ad-bg.jpg (easylistchina+easylist.txt: 59448) -.realvnc.com/assets/img/ad-bg\.jpg -# @@||realbeauty.com/ams/page-ads.js? (easylistchina+easylist.txt: 59446) -.realbeauty.com/ams/page-ads\.js\? -# @@||rcards.net/wp-content/uploads/useful_banner_manager_banners/ (easylistchina+easylist.txt: 59442) -.rcards.net/wp-content/uploads/useful_banner_manager_banners/ -# @@||rcards.net/wp-content/plugins/useful-banner-manager/ (easylistchina+easylist.txt: 59441) -.rcards.net/wp-content/plugins/useful-banner-manager/ -# @@||rainbowdressup.com/ads/adsnewvars.swf (easylistchina+easylist.txt: 59438) -.rainbowdressup.com/ads/adsnewvars\.swf -# @@||radiotimes.com/rt-service/resource/jspack? (easylistchina+easylist.txt: 59437) -.radiotimes.com/rt-service/resource/jspack\? -# @@||radioguide.fm/minify/?*/Advertising/webroot/css/advertising.css (easylistchina+easylist.txt: 59436) -.radioguide.fm/minify/\?.*/Advertising/webroot/css/advertising\.css -# @@||quit.org.au/images/images/ad/ (easylistchina+easylist.txt: 59428) -.quit.org.au/images/images/ad/ -# @@||q2servers.com/pop.js (easylistchina+easylist.txt: 59425) -.q2servers.com/pop\.js -# @@||pursuit.co.za/css/globalAd.css (easylistchina+easylist.txt: 59423) -.pursuit.co.za/css/globalAd\.css -# @@||proprofs.com/quiz-school/js/modernizr_ads.js (easylistchina+easylist.txt: 59416) -.proprofs.com/quiz-school/js/modernizr_ads\.js -# @@||productioncars.com/pics/menu/ads2.gif (easylistchina+easylist.txt: 59409) -.productioncars.com/pics/menu/ads2\.gif -# @@||productioncars.com/pics/menu/ads.gif (easylistchina+easylist.txt: 59408) -.productioncars.com/pics/menu/ads\.gif -# @@||procato.com/_pub/advertisement.js (easylistchina+easylist.txt: 59407) -.procato.com/_pub/advertisement\.js -# @@||prism.opticsinfobase.org/Scripts/ADS/Details.js (easylistchina+easylist.txt: 59405) -.prism.opticsinfobase.org/Scripts/ADS/Details\.js -# @@||pressdisplay.com/advertising/showimage.aspx? (easylistchina+easylist.txt: 59404) -.pressdisplay.com/advertising/showimage\.aspx\? -# @@||popcap.com/sites/all/modules/popcap/js/popcap_openx.js? (easylistchina+easylist.txt: 59400) -.popcap.com/sites/all/modules/popcap/js/popcap_openx\.js\? -# @@||politico.com/js/magazine/ads.js (easylistchina+easylist.txt: 59396) -.politico.com/js/magazine/ads\.js -# @@||plugcomputer.org^*/ad1.jpg (easylistchina+easylist.txt: 59394) -.plugcomputer.org/.*/ad1\.jpg -# @@||playintraffik.com/advertising/ (easylistchina+easylist.txt: 59393) -.playintraffik.com/advertising/ -# @@||player.vioapi.com/ads/flash/vioplayer.swf (easylistchina+easylist.txt: 59392) -.player.vioapi.com/ads/flash/vioplayer\.swf -# @@||player.streamtheworld.com/liveplayer.php?*adstype= (easylistchina+easylist.txt: 59389) -.player.streamtheworld.com/liveplayer\.php\?.*adstype= -# @@||pitchfork.com/desktop/js/pitchfork/ads/interstitial.js (easylistchina+easylist.txt: 59378) -.pitchfork.com/desktop/js/pitchfork/ads/interstitial\.js -# @@||pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218.gif (easylistchina+easylist.txt: 59377) -.pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218\.gif -# @@||picplzthumbs.com/upload/img/ad/ (easylistchina+easylist.txt: 59373) -.picplzthumbs.com/upload/img/ad/ -# @@||pets4homes.co.uk^*/advert.css (easylistchina+easylist.txt: 59363) -.pets4homes.co.uk/.*/advert\.css -# @@||pets4homes.co.uk/*/advert.js (easylistchina+easylist.txt: 59362) -.pets4homes.co.uk/.*/advert\.js -# @@||petcarerx.com/banners/ (easylistchina+easylist.txt: 59360) -.petcarerx.com/banners/ -# @@||perezhilton.com/included_ads/ (easylistchina+easylist.txt: 59357) -.perezhilton.com/included_ads/ -# @@||perbang.dk/_pub/advertisement.js? (easylistchina+easylist.txt: 59356) -.perbang.dk/_pub/advertisement\.js\? -# @@||pennlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59354) -.pennlive.com/static/common/js/ads/ads\.js -# @@||pbs.org^*/sponsors/flvvideoplayer.swf (easylistchina+easylist.txt: 59351) -.pbs.org/.*/sponsors/flvvideoplayer\.swf -# @@||pantherssl.com/banners/ (easylistchina+easylist.txt: 59339) -.pantherssl.com/banners/ -# @@||pagesinventory.com/_data/flags/ad.gif (easylistchina+easylist.txt: 59337) -.pagesinventory.com/_data/flags/ad\.gif -# @@||pachanyc.com/_images/advertise_submit.gif (easylistchina+easylist.txt: 59324) -.pachanyc.com/_images/advertise_submit\.gif -# @@||ozspeedtest.com/js/pop.js (easylistchina+easylist.txt: 59323) -.ozspeedtest.com/js/pop\.js -# @@||oxfordlearnersdictionaries.com/external/scripts/doubleclick.js (easylistchina+easylist.txt: 59322) -.oxfordlearnersdictionaries.com/external/scripts/doubleclick\.js -# @@||ox-d.sbnation.com/w/1.0/jstag| (easylistchina+easylist.txt: 59319) -.ox-d.sbnation.com/w/1\.0/jstag$ -# @@||ottawasun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 59314) -.ottawasun.com/assets/js/dfp\.js\? -# @@||oregonlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59310) -.oregonlive.com/static/common/js/ads/ads\.js -# @@||opgevenisgeenoptie.nl^*/favicon_ad6.ico (easylistchina+easylist.txt: 59305) -.opgevenisgeenoptie.nl/.*/favicon_ad6\.ico -# @@||onionstatic.com^*/videoads.js (easylistchina+easylist.txt: 59297) -.onionstatic.com/.*/videoads\.js -# @@||omgubuntu.co.uk^*/banner.js (easylistchina+easylist.txt: 59294) -.omgubuntu.co.uk/.*/banner\.js -# @@||omgili.com/ads.search? (easylistchina+easylist.txt: 59293) -.omgili.com/ads\.search\? -# @@||oldergames.com/adlib/ (easylistchina+easylist.txt: 59292) -.oldergames.com/adlib/ -# @@||ocp.com.com/adfunctions.js? (easylistchina+easylist.txt: 59289) -.ocp.com.com/adfunctions\.js\? -# @@||objects.tremormedia.com/embed/swf/admanager*.swf (easylistchina+easylist.txt: 59288) -.objects.tremormedia.com/embed/swf/admanager.*\.swf -# @@||oas.absoluteradio.co.uk^*/www.absoluteradio.co.uk/player/ (easylistchina+easylist.txt: 59270) -.oas.absoluteradio.co.uk/.*/www\.absoluteradio\.co\.uk/player/ -# @@||nytimes.com/adx/images/ads/*_premium-crosswords_bg_600x329.gif (easylistchina+easylist.txt: 59267) -.nytimes.com/adx/images/ads/.*_premium-crosswords_bg_600x329\.gif -# @@||nytimes.com/adx/images/ads/*_buynow_btn_53x18.gif (easylistchina+easylist.txt: 59266) -.nytimes.com/adx/images/ads/.*_buynow_btn_53x18\.gif -# @@||nytimes.com/ads/interstitial/skip*.gif (easylistchina+easylist.txt: 59263) -.nytimes.com/ads/interstitial/skip.*\.gif -# @@||nsandi.com/files/asset/banner-ads/ (easylistchina+easylist.txt: 59258) -.nsandi.com/files/asset/banner-ads/ -# @@||nola.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59256) -.nola.com/static/common/js/ads/ads\.js -# @@||nj.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59255) -.nj.com/static/common/js/ads/ads\.js -# @@||nickjr.com/global/scripts/overture/sponsored_links_lib.js (easylistchina+easylist.txt: 59253) -.nickjr.com/global/scripts/overture/sponsored_links_lib\.js -# @@||nickjr.com/assets/ad-entry/ (easylistchina+easylist.txt: 59252) -.nickjr.com/assets/ad-entry/ -# @@||nick.com/js/ads.jsp (easylistchina+easylist.txt: 59250) -.nick.com/js/ads\.jsp -# @@||nflcdn.com/static/*/global/ads.js (easylistchina+easylist.txt: 59246) -.nflcdn.com/static/.*/global/ads\.js -# @@||nfl.com^*/ads.js (easylistchina+easylist.txt: 59245) -.nfl.com/.*/ads\.js -# @@||newzimbabwe.com/banners/350x350/ (easylistchina+easylist.txt: 59241) -.newzimbabwe.com/banners/350x350/ -# @@||newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn.dart.js (easylistchina+easylist.txt: 59240) -.newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn\.dart\.js -# @@||newsarama.com/common/js/advertisements.js (easylistchina+easylist.txt: 59238) -.newsarama.com/common/js/advertisements\.js -# @@||news.nate.com/etc/adrectanglebanner? (easylistchina+easylist.txt: 59237) -.news.nate.com/etc/adrectanglebanner\? -# @@||newgrounds.com/ads/advertisement.js (easylistchina+easylist.txt: 59236) -.newgrounds.com/ads/advertisement\.js -# @@||newgrounds.com/ads/ad_medals.gif (easylistchina+easylist.txt: 59235) -.newgrounds.com/ads/ad_medals\.gif -# @@||networkworld.com/www/js/ads/gpt_includes.js? (easylistchina+easylist.txt: 59234) -.networkworld.com/www/js/ads/gpt_includes\.js\? -# @@||neodrive.co/cam/directrev.js? (easylistchina+easylist.txt: 59231) -.neodrive.co/cam/directrev\.js\? -# @@||nedbank.co.za/website/content/home/google_ad_Cut.jpg (easylistchina+easylist.txt: 59229) -.nedbank.co.za/website/content/home/google_ad_Cut\.jpg -# @@||ncregister.com/images/sized/images/ads/ (easylistchina+easylist.txt: 59228) -.ncregister.com/images/sized/images/ads/ -# @@||ncregister.com/images/ads/ (easylistchina+easylist.txt: 59227) -.ncregister.com/images/ads/ -# @@||nbc.com/collarity/ (easylistchina+easylist.txt: 59226) -.nbc.com/collarity/ -# @@||nationmultimedia.com/new/js/doubleclick.js (easylistchina+easylist.txt: 59223) -.nationmultimedia.com/new/js/doubleclick\.js -# @@||nationalgeographic.com/channel/videos/satellite/*.swf?adsite= (easylistchina+easylist.txt: 59222) -.nationalgeographic.com/channel/videos/satellite/.*\.swf\?adsite= -# @@||myrecipes.com/static/advertising/ (easylistchina+easylist.txt: 59218) -.myrecipes.com/static/advertising/ -# @@||myhouseabroad.com/js/adview.js (easylistchina+easylist.txt: 59215) -.myhouseabroad.com/js/adview\.js -# @@||myhouseabroad.com/*/ads/ (easylistchina+easylist.txt: 59214) -.myhouseabroad.com/.*/ads/ -# @@||myadt.com/js-ext/smartbanner/ (easylistchina+easylist.txt: 59212) -.myadt.com/js-ext/smartbanner/ -# @@||mutualofomaha.com/images/ads/ (easylistchina+easylist.txt: 59209) -.mutualofomaha.com/images/ads/ -# @@||mussil.com/mussilcomfiles/commercials/*.jpg (easylistchina+easylist.txt: 59208) -.mussil.com/mussilcomfiles/commercials/.*\.jpg -# @@||mudah.my/css/mudah_adview_min.css (easylistchina+easylist.txt: 59204) -.mudah.my/css/mudah_adview_min\.css -# @@||muchmusic.com/includes/js/adzone.js (easylistchina+easylist.txt: 59203) -.muchmusic.com/includes/js/adzone\.js -# @@||msnbcmedia.msn.com^*/sitemanagement/ads/*/blog_printbutton.png (easylistchina+easylist.txt: 59200) -.msnbcmedia.msn.com/.*/sitemanagement/ads/.*/blog_printbutton\.png -# @@||msi.com/pic/banner/ (easylistchina+easylist.txt: 59199) -.msi.com/pic/banner/ -# @@||msi.com/js/topad/topad.css (easylistchina+easylist.txt: 59198) -.msi.com/js/topad/topad\.css -# @@||mp32u.net/adframe.js (easylistchina+easylist.txt: 59196) -.mp32u.net/adframe\.js -# @@||monster.com/awm/*/ADVERTISING- (easylistchina+easylist.txt: 59191) -.monster.com/awm/.*/ADVERTISING- -# @@||mobinozer.com^*/gads.js (easylistchina+easylist.txt: 59184) -.mobinozer.com/.*/gads\.js -# @@||mobilefish.com/scripts/advertisement.js (easylistchina+easylist.txt: 59183) -.mobilefish.com/scripts/advertisement\.js -# @@||mlive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59181) -.mlive.com/static/common/js/ads/ads\.js -# @@||mlb.com/shared/components/gameday/v6/js/adproxy.js (easylistchina+easylist.txt: 59180) -.mlb.com/shared/components/gameday/v6/js/adproxy\.js -# @@||mlb.com/scripts/dc_ads.js (easylistchina+easylist.txt: 59179) -.mlb.com/scripts/dc_ads\.js -# @@||mircscripts.org/advertisements.js (easylistchina+easylist.txt: 59177) -.mircscripts.org/advertisements\.js -# @@||miniclipcdn.com/content/push-ads/ (easylistchina+easylist.txt: 59176) -.miniclipcdn.com/content/push-ads/ -# @@||miniclip.com/scripts/js.php? (easylistchina+easylist.txt: 59175) -.miniclip.com/scripts/js\.php\? -# @@||miller-mccune.com/wp-content/plugins/*/oiopub-direct/images/style/output.css (easylistchina+easylist.txt: 59174) -.miller-mccune.com/wp-content/plugins/.*/oiopub-direct/images/style/output\.css -# @@||militaryfleamarket.net/media/com_jomclassifieds/adverts/ (easylistchina+easylist.txt: 59173) -.militaryfleamarket.net/media/com_jomclassifieds/adverts/ -# @@||metalmusicradio.com^*/banner.php (easylistchina+easylist.txt: 59170) -.metalmusicradio.com/.*/banner\.php -# @@||metacafe.com/banner.php? (easylistchina+easylist.txt: 59169) -.metacafe.com/banner\.php\? -# @@||medscapestatic.com/pi/scripts/ads/dfp/profads2.js (easylistchina+easylist.txt: 59165) -.medscapestatic.com/pi/scripts/ads/dfp/profads2\.js -# @@||medscape.com/html.ng/*slideshow (easylistchina+easylist.txt: 59164) -.medscape.com/html\.ng/.*slideshow -# @@||media.washingtonpost.com/wp-srv/ad/tiffany_manager.js (easylistchina+easylist.txt: 59159) -.media.washingtonpost.com/wp-srv/ad/tiffany_manager\.js -# @@||media.washingtonpost.com/wp-srv/ad/photo-ad-config.jsonp (easylistchina+easylist.txt: 59158) -.media.washingtonpost.com/wp-srv/ad/photo-ad-config\.jsonp -# @@||media.washingtonpost.com/wp-srv/ad/ad_v2.js (easylistchina+easylist.txt: 59157) -.media.washingtonpost.com/wp-srv/ad/ad_v2\.js -# @@||media.expedia.com/*/ads/ (easylistchina+easylist.txt: 59151) -.media.expedia.com/.*/ads/ -# @@||mcfc.co.uk/js/core/adtracking.js (easylistchina+easylist.txt: 59146) -.mcfc.co.uk/js/core/adtracking\.js -# @@||masslive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59144) -.masslive.com/static/common/js/ads/ads\.js -# @@||marketwatch.com^$elemhide (easylistchina+easylist.txt: 59143) -.marketwatch.com -# @@||marieclaire.com/ams/page-ads.js? (easylistchina+easylist.txt: 59140) -.marieclaire.com/ams/page-ads\.js\? -# @@||marcs.com^*/AdViewer.js (easylistchina+easylist.txt: 59139) -.marcs.com/.*/AdViewer\.js -# @@||marciglesias.com/publicidad/ (easylistchina+easylist.txt: 59137) -.marciglesias.com/publicidad/ -# @@||marca.com/deporte/css/*/publicidad.css (easylistchina+easylist.txt: 59136) -.marca.com/deporte/css/.*/publicidad\.css -# @@||maps.gstatic.com/maps-api-*/adsense.js (easylistchina+easylist.txt: 59135) -.maps.gstatic.com/maps-api-.*/adsense\.js -# @@||maps.googleapis.com/maps-api-*/adsense.js (easylistchina+easylist.txt: 59134) -.maps.googleapis.com/maps-api-.*/adsense\.js -# @@||maps.chitika.net^ (easylistchina+easylist.txt: 59133) -.maps.chitika.net -# @@||maps-static.chitika.net^ (easylistchina+easylist.txt: 59132) -.maps-static.chitika.net -# @@||manoramaonline.com/advt/cricbuzz/ (easylistchina+easylist.txt: 59130) -.manoramaonline.com/advt/cricbuzz/ -# @@||manilatimes.net/images/banners/logo-mt.png (easylistchina+easylist.txt: 59129) -.manilatimes.net/images/banners/logo-mt\.png -# @@||mail.yahoo.com/neo/assets/swf/uploader.swf (easylistchina+easylist.txt: 59128) -.mail.yahoo.com/neo/assets/swf/uploader\.swf -# @@||mail.google.com^*/uploaderapi*.swf (easylistchina+easylist.txt: 59127) -.mail.google.com/.*/uploaderapi.*\.swf -# @@||magicbricks.com/img/adbanner/ (easylistchina+easylist.txt: 59125) -.magicbricks.com/img/adbanner/ -# @@||macworld.com/www/js/ads/jquery.lazyload-ad.js (easylistchina+easylist.txt: 59121) -.macworld.com/www/js/ads/jquery\.lazyload-ad\.js -# @@||mac-sports.com/ads2/508128.swf (easylistchina+easylist.txt: 59120) -.mac-sports.com/ads2/508128\.swf -# @@||lyngsat-logo.com/icon/flag/az/ad.gif (easylistchina+easylist.txt: 59119) -.lyngsat-logo.com/icon/flag/az/ad\.gif -# @@||lovefilm.com/static/scripts/advertising/dart.overlay.js (easylistchina+easylist.txt: 59112) -.lovefilm.com/static/scripts/advertising/dart\.overlay\.js -# @@||live365.com/web/components/ads/*.html? (easylistchina+easylist.txt: 59101) -.live365.com/web/components/ads/.*\.html\? -# @@||live365.com/scripts/liveads.js (easylistchina+easylist.txt: 59100) -.live365.com/scripts/liveads\.js -# @@||live365.com/mini/blank300x250.html (easylistchina+easylist.txt: 59099) -.live365.com/mini/blank300x250\.html -# @@||lipsum.com/images/banners/ (easylistchina+easylist.txt: 59094) -.lipsum.com/images/banners/ -# @@||linksave.in/img/usercp/ads.png (easylistchina+easylist.txt: 59090) -.linksave.in/img/usercp/ads\.png -# @@||lehighvalleylive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 59080) -.lehighvalleylive.com/static/common/js/ads/ads\.js -# @@||larazon.es/larazon-theme/js/publicidad.js? (easylistchina+easylist.txt: 59076) -.larazon.es/larazon-theme/js/publicidad\.js\? -# @@||lanacion.com.ar/*/publicidad/ (easylistchina+easylist.txt: 59075) -.lanacion.com.ar/.*/publicidad/ -# @@||lacanadaonline.com/hive/images/adv_ (easylistchina+easylist.txt: 59073) -.lacanadaonline.com/hive/images/adv_ -# @@||l.yimg.com/*/adservice/ (easylistchina+easylist.txt: 59071) -.l.yimg.com/.*/adservice/ -# @@||ksl.com/resources/classifieds/graphics/ad_ (easylistchina+easylist.txt: 59070) -.ksl.com/resources/classifieds/graphics/ad_ -# @@||krispykreme.com/content/images/ads/ (easylistchina+easylist.txt: 59069) -.krispykreme.com/content/images/ads/ -# @@||koaa.com/videoplayer/iframe.cfm?*&hide_ads= (easylistchina+easylist.txt: 59066) -.koaa.com/videoplayer/iframe\.cfm\?.*&hide_ads= -# @@||kingofgames.net/gads/kingofgames.swf (easylistchina+easylist.txt: 59061) -.kingofgames.net/gads/kingofgames\.swf -# @@||kidshealth.org/licensees/licensee1/js/gam.html (easylistchina+easylist.txt: 59059) -.kidshealth.org/licensees/licensee1/js/gam\.html -# @@||kcra.com^*/adpositionsizein-min.js (easylistchina+easylist.txt: 59057) -.kcra.com/.*/adpositionsizein-min\.js -# @@||kcna.kp/images/ads_arrow_ (easylistchina+easylist.txt: 59056) -.kcna.kp/images/ads_arrow_ -# @@||karolinashumilas.com/img/adv/ (easylistchina+easylist.txt: 59055) -.karolinashumilas.com/img/adv/ -# @@||justin-klein.com/banners/ (easylistchina+easylist.txt: 59052) -.justin-klein.com/banners/ -# @@||jsstatic.com/_ads/ (easylistchina+easylist.txt: 59050) -.jsstatic.com/_ads/ -# @@||joyhubs.com/View/*/js/pop.js (easylistchina+easylist.txt: 59048) -.joyhubs.com/View/.*/js/pop\.js -# @@||jobstreet.com/_ads/ (easylistchina+easylist.txt: 59046) -.jobstreet.com/_ads/ -# @@||jobsearch.careerone.com.au^*/bannerad.asmx/ (easylistchina+easylist.txt: 59045) -.jobsearch.careerone.com.au/.*/bannerad\.asmx/ -# @@||jobs.wa.gov.au/images/advertimages/ (easylistchina+easylist.txt: 59044) -.jobs.wa.gov.au/images/advertimages/ -# @@||itweb.co.za/banners/en-cdt*.gif (easylistchina+easylist.txt: 59042) -.itweb.co.za/banners/en-cdt.*\.gif -# @@||itv.com^*/tvshows_adcall_08.js (easylistchina+easylist.txt: 59041) -.itv.com/.*/tvshows_adcall_08\.js -# @@||itv.com^*.adserver.js (easylistchina+easylist.txt: 59039) -.itv.com/.*\.adserver\.js -# @@||island.lk/userfiles/image/danweem/island.gif (easylistchina+easylist.txt: 59035) -.island.lk/userfiles/image/danweem/island\.gif -# @@||iolproperty.co.za/images/ad_banner.png (easylistchina+easylist.txt: 59031) -.iolproperty.co.za/images/ad_banner\.png -# @@||investors.com/Scripts/AdScript.js? (easylistchina+easylist.txt: 59029) -.investors.com/Scripts/AdScript\.js\? -# @@||intellicast.com/App_Scripts/ad.min.js (easylistchina+easylist.txt: 59023) -.intellicast.com/App_Scripts/ad\.min\.js -# @@||inserts2online.com/images/site/viewad.gif (easylistchina+easylist.txt: 59015) -.inserts2online.com/images/site/viewad\.gif -# @@||infoworld.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 59009) -.infoworld.com/www/js/ads/gpt_includes\.js -# @@||indiaresults.com/advertisements/submit.png (easylistchina+easylist.txt: 59007) -.indiaresults.com/advertisements/submit\.png -# @@||incredibox.fr/js/advertise.js (easylistchina+easylist.txt: 59006) -.incredibox.fr/js/advertise\.js -# @@||incredibox.fr/image/advertise/ (easylistchina+easylist.txt: 59005) -.incredibox.fr/image/advertise/ -# @@||incredibox.fr/advertise/_liste.js (easylistchina+easylist.txt: 59004) -.incredibox.fr/advertise/_liste\.js -# @@||imobie.com/js/anytrans-adv.js (easylistchina+easylist.txt: 59000) -.imobie.com/js/anytrans-adv\.js -# @@||img.thedailywtf.com/images/ads/ (easylistchina+easylist.txt: 58996) -.img.thedailywtf.com/images/ads/ -# @@||images.nickjr.com/ads/promo/ (easylistchina+easylist.txt: 58984) -.images.nickjr.com/ads/promo/ -# @@||images.nationalgeographic.com/wpf/media-live/graphic/ (easylistchina+easylist.txt: 58983) -.images.nationalgeographic.com/wpf/media-live/graphic/ -# @@||images.mmorpg.com/scripts/advertisement.js (easylistchina+easylist.txt: 58982) -.images.mmorpg.com/scripts/advertisement\.js -# @@||ikea.com^*/img/ads/ (easylistchina+easylist.txt: 58974) -.ikea.com/.*/img/ads/ -# @@||ikea.com^*/img/ad_ (easylistchina+easylist.txt: 58973) -.ikea.com/.*/img/ad_ -# @@||iframe.ivillage.com/iframe_render? (easylistchina+easylist.txt: 58971) -.iframe.ivillage.com/iframe_render\? -# @@||identity-us.com/ads/ads.html (easylistchina+easylist.txt: 58969) -.identity-us.com/ads/ads\.html -# @@||icefilms.info/jquery.lazyload-ad-*-min.js (easylistchina+easylist.txt: 58967) -.icefilms.info/jquery\.lazyload-ad-.*-min\.js -# @@||i.cdn.turner.com^*/adserviceadapter.swf (easylistchina+easylist.txt: 58962) -.i.cdn.turner.com/.*/adserviceadapter\.swf -# @@||huntington.com/Script/AdManager.js (easylistchina+easylist.txt: 58961) -.huntington.com/Script/AdManager\.js -# @@||hulu.com/published/*.mp4 (easylistchina+easylist.txt: 58959) -.hulu.com/published/.*\.mp4 -# @@||hulu.com/published/*.flv (easylistchina+easylist.txt: 58958) -.hulu.com/published/.*\.flv -# @@||hulkshare.com/js/adsmanager.js (easylistchina+easylist.txt: 58957) -.hulkshare.com/js/adsmanager\.js -# @@||huffingtonpost.com/_uac/adpage.html (easylistchina+easylist.txt: 58954) -.huffingtonpost.com/_uac/adpage\.html -# @@||huffingtonpost.co.uk/_uac/adpage.html (easylistchina+easylist.txt: 58953) -.huffingtonpost.co.uk/_uac/adpage\.html -# @@||howcast.com/flash/assets/ads/liverail.swf (easylistchina+easylist.txt: 58951) -.howcast.com/flash/assets/ads/liverail\.swf -# @@||housebeautiful.com/cm/shared/scripts/refreshads-*.js (easylistchina+easylist.txt: 58949) -.housebeautiful.com/cm/shared/scripts/refreshads-.*\.js -# @@||housebeautiful.com/ams/page-ads.js (easylistchina+easylist.txt: 58948) -.housebeautiful.com/ams/page-ads\.js -# @@||hotnewhiphop.com/web_root/images/ads/banner-*.png (easylistchina+easylist.txt: 58947) -.hotnewhiphop.com/web_root/images/ads/banner-.*\.png -# @@||homedepot.com^*/thdGoogleAdSense.js (easylistchina+easylist.txt: 58946) -.homedepot.com/.*/thdGoogleAdSense\.js -# @@||hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement.jpg (easylistchina+easylist.txt: 58942) -.hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement\.jpg -# @@||hentai-foundry.com/themes/default/images/buttons/add_comment_icon.png (easylistchina+easylist.txt: 58940) -.hentai-foundry.com/themes/default/images/buttons/add_comment_icon\.png -# @@||hebdenbridge.co.uk/ads/images/smallads.png (easylistchina+easylist.txt: 58938) -.hebdenbridge.co.uk/ads/images/smallads\.png -# @@||healthline.com/v2/ad-mr2-iframe?useAdsHost=*&dfpAdSite= (easylistchina+easylist.txt: 58937) -.healthline.com/v2/ad-mr2-iframe\?useAdsHost=.*&dfpAdSite= -# @@||healthline.com/resources/base/js/responsive-ads.js? (easylistchina+easylist.txt: 58935) -.healthline.com/resources/base/js/responsive-ads\.js\? -# @@||hbindependent.com/hive/images/adv_ (easylistchina+easylist.txt: 58932) -.hbindependent.com/hive/images/adv_ -# @@||hawaii-scuba.com/ads_styles.css (easylistchina+easylist.txt: 58931) -.hawaii-scuba.com/ads_styles\.css -# @@||guysen.com/script/ads.js (easylistchina+easylist.txt: 58926) -.guysen.com/script/ads\.js -# @@||gumtree.com^*/postAd.js (easylistchina+easylist.txt: 58925) -.gumtree.com/.*/postAd\.js -# @@||gulflive.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58924) -.gulflive.com/static/common/js/ads/ads\.js -# @@||guim.co.uk^*/styles/wide/google-ads.css (easylistchina+easylist.txt: 58923) -.guim.co.uk/.*/styles/wide/google-ads\.css -# @@||gotoassist.com/images/ad/ (easylistchina+easylist.txt: 58918) -.gotoassist.com/images/ad/ -# @@||google.com/_static/images/*/ads.png (easylistchina+easylist.txt: 58896) -.google.com/_static/images/.*/ads\.png -# @@||goodyhoo.com/banners/ (easylistchina+easylist.txt: 58891) -.goodyhoo.com/banners/ -# @@||godlessnightsfilm.co.uk/scripts/ad-gallery/ (easylistchina+easylist.txt: 58888) -.godlessnightsfilm.co.uk/scripts/ad-gallery/ -# @@||globaltv.com/js/smdg_ads.js (easylistchina+easylist.txt: 58883) -.globaltv.com/js/smdg_ads\.js -# @@||glendalenewspress.com/hive/images/adv_ (easylistchina+easylist.txt: 58881) -.glendalenewspress.com/hive/images/adv_ -# @@||glamour.com/aspen/js/dartCall.js (easylistchina+easylist.txt: 58880) -.glamour.com/aspen/js/dartCall\.js -# @@||glamour.com/aspen/components/cn-fe-ads/js/cn.dart.js (easylistchina+easylist.txt: 58879) -.glamour.com/aspen/components/cn-fe-ads/js/cn\.dart\.js -# @@||gcultra.com/js/exit_popup.js (easylistchina+easylist.txt: 58871) -.gcultra.com/js/exit_popup\.js -# @@||garmin.com^*/Sponsors.js? (easylistchina+easylist.txt: 58869) -.garmin.com/.*/Sponsors\.js\? -# @@||games.washingtonpost.com/games/$elemhide (easylistchina+easylist.txt: 58865) -.games.washingtonpost.com/games/ -# @@||funiaste.net/obrazki/*&adtype= (easylistchina+easylist.txt: 58847) -.funiaste.net/obrazki/.*&adtype= -# @@||fs-freeware.net/images/jdownloads/downloadimages/banner_ads.png (easylistchina+easylist.txt: 58845) -.fs-freeware.net/images/jdownloads/downloadimages/banner_ads\.png -# @@||freeviewnz.tv^*/uploads/ads/ (easylistchina+easylist.txt: 58843) -.freeviewnz.tv/.*/uploads/ads/ -# @@||freeads.in/freead.png (easylistchina+easylist.txt: 58839) -.freeads.in/freead\.png -# @@||freeads.in/classifieds/common/postad.css (easylistchina+easylist.txt: 58838) -.freeads.in/classifieds/common/postad\.css -# @@||forums.realgm.com/banners/ (easylistchina+easylist.txt: 58837) -.forums.realgm.com/banners/ -# @@||flysaa.com^*/jquery.adserver.js (easylistchina+easylist.txt: 58830) -.flysaa.com/.*/jquery\.adserver\.js -# @@||flyerservices.com/cached_banner_pages/*bannerid= (easylistchina+easylist.txt: 58829) -.flyerservices.com/cached_banner_pages/.*bannerid= -# @@||feedroom.speedera.net/static.feedroom.com/affiliate/ (easylistchina+easylist.txt: 58817) -.feedroom.speedera.net/static\.feedroom\.com/affiliate/ -# @@||farecompare.com^*/farecomp/ (easylistchina+easylist.txt: 58814) -.farecompare.com/.*/farecomp/ -# @@||expedia.com/minify/ads-min-*.js? (easylistchina+easylist.txt: 58807) -.expedia.com/minify/ads-min-.*\.js\? -# @@||expedia.com/daily/common/msi.asp (easylistchina+easylist.txt: 58804) -.expedia.com/daily/common/msi\.asp -# @@||expedia.co.nz/html.cms/tpid=*&adsize= (easylistchina+easylist.txt: 58803) -.expedia.co.nz/html\.cms/tpid=.*&adsize= -# @@||ewallpapers.eu/ads/logo.jpg (easylistchina+easylist.txt: 58801) -.ewallpapers.eu/ads/logo\.jpg -# @@||eventim.de/obj/basic/ad2_obj/layout/ (easylistchina+easylist.txt: 58800) -.eventim.de/obj/basic/ad2_obj/layout/ -# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview.main.js? (easylistchina+easylist.txt: 58788) -.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview\.main\.js\? -# @@||englishanimes.com/wp-content/themes/englishanimes/js/pop.js (easylistchina+easylist.txt: 58783) -.englishanimes.com/wp-content/themes/englishanimes/js/pop\.js -# @@||empireonline.com/images/image_index/300x250/ (easylistchina+easylist.txt: 58780) -.empireonline.com/images/image_index/300x250/ -# @@||emergencymedicalparamedic.com/wp-content/themes/AdSense/style.css (easylistchina+easylist.txt: 58779) -.emergencymedicalparamedic.com/wp-content/themes/AdSense/style\.css -# @@||elephantjournal.com/ad_art/ (easylistchina+easylist.txt: 58776) -.elephantjournal.com/ad_art/ -# @@||egotastic.us.intellitxt.com/intellitxt/front.asp (easylistchina+easylist.txt: 58773) -.egotastic.us.intellitxt.com/intellitxt/front\.asp -# @@||eduspec.science.ru.nl^*-images/ad- (easylistchina+easylist.txt: 58771) -.eduspec.science.ru.nl/.*-images/ad- -# @@||edmontonsun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 58770) -.edmontonsun.com/assets/js/dfp\.js\? -# @@||edmontonjournal.com/js/adsync/adsynclibrary.js (easylistchina+easylist.txt: 58769) -.edmontonjournal.com/js/adsync/adsynclibrary\.js -# @@||economist.com.na^*/banners/cartoon_ (easylistchina+easylist.txt: 58765) -.economist.com.na/.*/banners/cartoon_ -# @@||earthtv.com/player_tmp/overlayad.js (easylistchina+easylist.txt: 58761) -.earthtv.com/player_tmp/overlayad\.js -# @@||earthtechling.com^*/imasters-wp-adserver-styles.css (easylistchina+easylist.txt: 58760) -.earthtechling.com/.*/imasters-wp-adserver-styles\.css -# @@||earthcam.com/swf/ads5.swf (easylistchina+easylist.txt: 58759) -.earthcam.com/swf/ads5\.swf -# @@||drupal.org^*/revealads.png (easylistchina+easylist.txt: 58750) -.drupal.org/.*/revealads\.png -# @@||drunkard.com/banners/modern-drunkard-book.jpg (easylistchina+easylist.txt: 58749) -.drunkard.com/banners/modern-drunkard-book\.jpg -# @@||drunkard.com/banners/drunkard-gear.jpg (easylistchina+easylist.txt: 58748) -.drunkard.com/banners/drunkard-gear\.jpg -# @@||drunkard.com/banners/drunk-korps-banner.jpg (easylistchina+easylist.txt: 58747) -.drunkard.com/banners/drunk-korps-banner\.jpg -# @@||dragon-mania-legends-wiki.mobga.me^*_Advertisement_ (easylistchina+easylist.txt: 58741) -.dragon-mania-legends-wiki.mobga.me/.*_Advertisement_ -# @@||dragon-mania-legends-wiki.mobga.me^*_advertisement. (easylistchina+easylist.txt: 58740) -.dragon-mania-legends-wiki.mobga.me/.*_advertisement\. -# @@||downvids.net/ads.js (easylistchina+easylist.txt: 58739) -.downvids.net/ads\.js -# @@||dolphinimaging.com/banners/ (easylistchina+easylist.txt: 58688) -.dolphinimaging.com/banners/ -# @@||dolphinimaging.com/banners.js (easylistchina+easylist.txt: 58687) -.dolphinimaging.com/banners\.js -# @@||dolidoli.com/images/ads- (easylistchina+easylist.txt: 58685) -.dolidoli.com/images/ads- -# @@||disneyphotopass.com/adimages/ (easylistchina+easylist.txt: 58680) -.disneyphotopass.com/adimages/ -# @@||disney.com.au/global/swf/banner300x250.swf (easylistchina+easylist.txt: 58678) -.disney.com.au/global/swf/banner300x250\.swf -# @@||discovery.com/components/consolidate-static/?files=*/adsense- (easylistchina+easylist.txt: 58677) -.discovery.com/components/consolidate-static/\?files=.*/adsense- -# @@||directtextbook.com^*.php?ad_ (easylistchina+easylist.txt: 58675) -.directtextbook.com/.*\.php\?ad_ -# @@||digiads.com.au/images/shared/misc/ad-disclaimer.gif (easylistchina+easylist.txt: 58671) -.digiads.com.au/images/shared/misc/ad-disclaimer\.gif -# @@||digiads.com.au/css/24032006/adstyle.css (easylistchina+easylist.txt: 58670) -.digiads.com.au/css/24032006/adstyle\.css -# @@||deviantart.net/minish/advertising/downloadad_splash_close.png (easylistchina+easylist.txt: 58669) -.deviantart.net/minish/advertising/downloadad_splash_close\.png -# @@||delish.com/cm/shared/scripts/refreshads-*.js (easylistchina+easylist.txt: 58663) -.delish.com/cm/shared/scripts/refreshads-.*\.js -# @@||deliciousdigital.com/data/our-work/advertising/ (easylistchina+easylist.txt: 58662) -.deliciousdigital.com/data/our-work/advertising/ -# @@||davescomputertips.com/images/ads/paypal.png (easylistchina+easylist.txt: 58655) -.davescomputertips.com/images/ads/paypal\.png -# @@||dailypilot.com/hive/images/adv_ (easylistchina+easylist.txt: 58649) -.dailypilot.com/hive/images/adv_ -# @@||dailymotion.com/videowall/*&clickTAG=http (easylistchina+easylist.txt: 58648) -.dailymotion.com/videowall/.*&clickTAG=http -# @@||dailymail.co.uk^*/googleads--.js (easylistchina+easylist.txt: 58647) -.dailymail.co.uk/.*/googleads--\.js -# @@||dailyhiit.com/sites/*/ad-images/ (easylistchina+easylist.txt: 58646) -.dailyhiit.com/sites/.*/ad-images/ -# @@||cydiaupdates.net/CydiaUpdates.com_600x80.png (easylistchina+easylist.txt: 58639) -.cydiaupdates.net/CydiaUpdates\.com_600x80\.png -# @@||cwtv.com^$elemhide (easylistchina+easylist.txt: 58638) -.cwtv.com -# @@||ctv.ca/players/mediaplayer/*/AdManager.js^ (easylistchina+easylist.txt: 58635) -.ctv.ca/players/mediaplayer/.*/AdManager\.js[^\w%.-] -# @@||css.wpdigital.net/wpost/css/combo?*/ads.css (easylistchina+easylist.txt: 58634) -.css.wpdigital.net/wpost/css/combo\?.*/ads\.css -# @@||csoonline.com/js/doubleclick_ads.js? (easylistchina+easylist.txt: 58633) -.csoonline.com/js/doubleclick_ads\.js\? -# @@||csair.com/*/adpic.js (easylistchina+easylist.txt: 58631) -.csair.com/.*/adpic\.js -# @@||countryliving.com/ams/page-ads.js (easylistchina+easylist.txt: 58625) -.countryliving.com/ams/page-ads\.js -# @@||cosmopolitan.com/ams/page-ads.js (easylistchina+easylist.txt: 58623) -.cosmopolitan.com/ams/page-ads\.js -# @@||corporatehousingbyowner.com/js/ad-gallery.js (easylistchina+easylist.txt: 58622) -.corporatehousingbyowner.com/js/ad-gallery\.js -# @@||content.hallmark.com/scripts/ecards/adspot.js (easylistchina+easylist.txt: 58620) -.content.hallmark.com/scripts/ecards/adspot\.js -# @@||comsec.com.au^*/homepage_banner_ad.gif (easylistchina+easylist.txt: 58612) -.comsec.com.au/.*/homepage_banner_ad\.gif -# @@||commarts.com/Images/missinganissue_ad.gif (easylistchina+easylist.txt: 58609) -.commarts.com/Images/missinganissue_ad\.gif -# @@||colorado.gov/airquality/psi/adv.png (easylistchina+easylist.txt: 58606) -.colorado.gov/airquality/psi/adv\.png -# @@||coastlinepilot.com/hive/images/adv_ (easylistchina+easylist.txt: 58603) -.coastlinepilot.com/hive/images/adv_ -# @@||cleveland.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58596) -.cleveland.com/static/common/js/ads/ads\.js -# @@||classistatic.com^*/banner-ads/ (easylistchina+easylist.txt: 58595) -.classistatic.com/.*/banner-ads/ -# @@||cio.com/www/js/ads/gpt_includes.js (easylistchina+easylist.txt: 58592) -.cio.com/www/js/ads/gpt_includes\.js -# @@||christianhouseshare.com.au/images/publish_ad1.jpg (easylistchina+easylist.txt: 58591) -.christianhouseshare.com.au/images/publish_ad1\.jpg -# @@||chemistwarehouse.com.au/images/AdImages/ (easylistchina+easylist.txt: 58586) -.chemistwarehouse.com.au/images/AdImages/ -# @@||chase.com^*/adserving/ (easylistchina+easylist.txt: 58580) -.chase.com/.*/adserving/ -# @@||channel4.com/media/scripts/oasconfig/siteads.js (easylistchina+easylist.txt: 58577) -.channel4.com/media/scripts/oasconfig/siteads\.js -# @@||cdn.turner.com^*/video/336x280_ad.gif (easylistchina+easylist.txt: 58573) -.cdn.turner.com/.*/video/336x280_ad\.gif -# @@||cdn.pch.com/spectrummedia/spectrum/adunit/ (easylistchina+easylist.txt: 58569) -.cdn.pch.com/spectrummedia/spectrum/adunit/ -# @@||cdn.ndtv.com/static/js/ads.js (easylistchina+easylist.txt: 58568) -.cdn.ndtv.com/static/js/ads\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/writecapture.js (easylistchina+easylist.txt: 58560) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/writecapture\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/swfobject.js (easylistchina+easylist.txt: 58559) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/swfobject\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jwplayerl.js (easylistchina+easylist.txt: 58558) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jwplayerl\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jquery.writecapture.js (easylistchina+easylist.txt: 58557) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jquery\.writecapture\.js -# @@||cbsistatic.com^*/sticky-ads.js? (easylistchina+easylist.txt: 58553) -.cbsistatic.com/.*/sticky-ads\.js\? -# @@||cbs.com/sitecommon/includes/cacheable/combine.php?*/adfunctions. (easylistchina+easylist.txt: 58550) -.cbs.com/sitecommon/includes/cacheable/combine\.php\?.*/adfunctions\. -# @@||caranddriver.com/assets/js/ads/ads-combined.min.js (easylistchina+easylist.txt: 58545) -.caranddriver.com/assets/js/ads/ads-combined\.min\.js -# @@||capitalone360.com/js/adwizard/adwizard_homepage.js? (easylistchina+easylist.txt: 58543) -.capitalone360.com/js/adwizard/adwizard_homepage\.js\? -# @@||canadianlisted.com/css/*/ad/index.css (easylistchina+easylist.txt: 58541) -.canadianlisted.com/css/.*/ad/index\.css -# @@||cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240.jpg (easylistchina+easylist.txt: 58539) -.cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240\.jpg -# @@||calgarysun.com/assets/js/dfp.js? (easylistchina+easylist.txt: 58538) -.calgarysun.com/assets/js/dfp\.js\? -# @@||cache.nymag.com/scripts/ad_manager.js (easylistchina+easylist.txt: 58537) -.cache.nymag.com/scripts/ad_manager\.js -# @@||bworldonline.com/adserver/ (easylistchina+easylist.txt: 58536) -.bworldonline.com/adserver/ -# @@||buyforlessok.com/advertising/ (easylistchina+easylist.txt: 58534) -.buyforlessok.com/advertising/ -# @@||butlereagle.com/static/ads/ (easylistchina+easylist.txt: 58529) -.butlereagle.com/static/ads/ -# @@||business-supply.com/images/adrotator/ (easylistchina+easylist.txt: 58528) -.business-supply.com/images/adrotator/ -# @@||burbankleader.com/hive/images/adv_ (easylistchina+easylist.txt: 58526) -.burbankleader.com/hive/images/adv_ -# @@||bthomehub.home/images/adv_ (easylistchina+easylist.txt: 58523) -.bthomehub.home/images/adv_ -# @@||bsvideos.com/json/ad.php? (easylistchina+easylist.txt: 58522) -.bsvideos.com/json/ad\.php\? -# @@||brocraft.net/js/banners.js (easylistchina+easylist.txt: 58520) -.brocraft.net/js/banners\.js -# @@||britishairways.com/cms/global/styles/*/openx.css (easylistchina+easylist.txt: 58519) -.britishairways.com/cms/global/styles/.*/openx\.css -# @@||britannica.com/resources/images/shared/ad-loading.gif (easylistchina+easylist.txt: 58518) -.britannica.com/resources/images/shared/ad-loading\.gif -# @@||boxedlynch.com/advertising-gallery.html (easylistchina+easylist.txt: 58514) -.boxedlynch.com/advertising-gallery\.html -# @@||box10.com/advertising/*-preroll.swf (easylistchina+easylist.txt: 58513) -.box10.com/advertising/.*-preroll\.swf -# @@||bonappetit.com^*/cn.dart.js (easylistchina+easylist.txt: 58510) -.bonappetit.com/.*/cn\.dart\.js -# @@||bonappetit.com/ams/page-ads.js? (easylistchina+easylist.txt: 58509) -.bonappetit.com/ams/page-ads\.js\? -# @@||bluetooth.com/banners/ (easylistchina+easylist.txt: 58505) -.bluetooth.com/banners/ -# @@||bloomberg.com/rapi/ads/js_config.js (easylistchina+easylist.txt: 58504) -.bloomberg.com/rapi/ads/js_config\.js -# @@||bikeexchange.com.au/adverts/ (easylistchina+easylist.txt: 58497) -.bikeexchange.com.au/adverts/ -# @@||betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ (easylistchina+easylist.txt: 58494) -.betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ -# @@||betar.gov.bd/wp-content/plugins/useful-banner-manager/ (easylistchina+easylist.txt: 58493) -.betar.gov.bd/wp-content/plugins/useful-banner-manager/ -# @@||bebusiness.eu/js/adview.js (easylistchina+easylist.txt: 58491) -.bebusiness.eu/js/adview\.js -# @@||beatthebrochure.com/js/jquery.popunder.js (easylistchina+easylist.txt: 58490) -.beatthebrochure.com/js/jquery\.popunder\.js -# @@||barafranca.*/banner.php| (easylistchina+easylist.txt: 58480) -.barafranca.*./(.*/)?banner\.php$ -# @@||banners.goldbroker.com/widget/ (easylistchina+easylist.txt: 58477) -.banners.goldbroker.com/widget/ -# @@||bahtsold.com/assets/images/ads/no_img_main.png (easylistchina+easylist.txt: 58470) -.bahtsold.com/assets/images/ads/no_img_main\.png -# @@||bafta.org/static/site/javascript/banners.js (easylistchina+easylist.txt: 58468) -.bafta.org/static/site/javascript/banners\.js -# @@||aviationexplorer.com/airline_aviation_ads/ (easylistchina+easylist.txt: 58464) -.aviationexplorer.com/airline_aviation_ads/ -# @@||aviationdocumentstorage.com/Av_Docs/CSS/ADS-1.css (easylistchina+easylist.txt: 58463) -.aviationdocumentstorage.com/Av_Docs/CSS/ADS-1\.css -# @@||autotrader.co.uk/static/*/images/adv/icons.png (easylistchina+easylist.txt: 58458) -.autotrader.co.uk/static/.*/images/adv/icons\.png -# @@||auctionzip.com/cgi-bin/showimage.cgi? (easylistchina+easylist.txt: 58450) -.auctionzip.com/cgi-bin/showimage\.cgi\? -# @@||att.com/images/*/admanager/ (easylistchina+easylist.txt: 58448) -.att.com/images/.*/admanager/ -# @@||athena365.com/web/components/ads/rma.html (easylistchina+easylist.txt: 58447) -.athena365.com/web/components/ads/rma\.html -# @@||asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training.png (easylistchina+easylist.txt: 58446) -.asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training\.png -# @@||assiniboine.mb.ca/files/intrasite_ads/ (easylistchina+easylist.txt: 58443) -.assiniboine.mb.ca/files/intrasite_ads/ -# @@||arthurbrokerage.com/Websites/arthur/templates/overture/ (easylistchina+easylist.txt: 58434) -.arthurbrokerage.com/Websites/arthur/templates/overture/ -# @@||armorgames.com^$elemhide (easylistchina+easylist.txt: 58433) -.armorgames.com -# @@||architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite.png (easylistchina+easylist.txt: 58431) -.architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite\.png -# @@||archiproducts.com/adv/ (easylistchina+easylist.txt: 58430) -.archiproducts.com/adv/ -# @@||apwg.org/images/sponsors/ (easylistchina+easylist.txt: 58428) -.apwg.org/images/sponsors/ -# @@||apple.com^*/video-ad.html (easylistchina+easylist.txt: 58425) -.apple.com/.*/video-ad\.html -# @@||apple.com^*/includes/ads (easylistchina+easylist.txt: 58424) -.apple.com/.*/includes/ads -# @@||apmex.com/resources/ads/ (easylistchina+easylist.txt: 58419) -.apmex.com/resources/ads/ -# @@||aone-soft.com/style/images/ad*.jpg (easylistchina+easylist.txt: 58413) -.aone-soft.com/style/images/ad.*\.jpg -# @@||andcorp.com.au^*.swf?clicktag= (easylistchina+easylist.txt: 58404) -.andcorp.com.au/.*\.swf\?clicktag= -# @@||amiblood.com/Images/ad.jpg (easylistchina+easylist.txt: 58401) -.amiblood.com/Images/ad\.jpg -# @@||amctv.com/commons/advertisement/js/AdFrame.js (easylistchina+easylist.txt: 58400) -.amctv.com/commons/advertisement/js/AdFrame\.js -# @@||alluc.ee/js/advertisement.js (easylistchina+easylist.txt: 58382) -.alluc.ee/js/advertisement\.js -# @@||al.com/static/common/js/ads/ads.js (easylistchina+easylist.txt: 58379) -.al.com/static/common/js/ads/ads\.js -# @@||akamaihd.net/hads-*.mp4? (easylistchina+easylist.txt: 58377) -.akamaihd.net/hads-.*\.mp4\? -# @@||ajmadison.com/images/adverts/ (easylistchina+easylist.txt: 58372) -.ajmadison.com/images/adverts/ -# @@||airguns.net/classifieds/ad_images/ (easylistchina+easylist.txt: 58368) -.airguns.net/classifieds/ad_images/ -# @@||airguns.net/advertisement_images/ (easylistchina+easylist.txt: 58367) -.airguns.net/advertisement_images/ -# @@||africam.com/adimages/ (easylistchina+easylist.txt: 58364) -.africam.com/adimages/ -# @@||affiliates.unpakt.com/widget_loader/widget_loader.js (easylistchina+easylist.txt: 58362) -.affiliates.unpakt.com/widget_loader/widget_loader\.js -# @@||affiliate.kickapps.com/service/ (easylistchina+easylist.txt: 58357) -.affiliate.kickapps.com/service/ -# @@||advertising.scoop.co.nz^ (easylistchina+easylist.txt: 58342) -.advertising.scoop.co.nz -# @@||adv.blogupp.com^ (easylistchina+easylist.txt: 58325) -.adv.blogupp.com -# @@||adultvideotorrents.com/assets/blockblock/advertisement.js (easylistchina+easylist.txt: 58323) -.adultvideotorrents.com/assets/blockblock/advertisement\.js -# @@||adssecurity.com/app_themes/ads/images/ (easylistchina+easylist.txt: 58313) -.adssecurity.com/app_themes/ads/images/ -# @@||adserver.bworldonline.com^ (easylistchina+easylist.txt: 58294) -.adserver.bworldonline.com -# @@||adserver.bigwigmedia.com/ingamead3.swf (easylistchina+easylist.txt: 58293) -.adserver.bigwigmedia.com/ingamead3\.swf -# @@||ads.yimg.com^*videoadmodule*.swf (easylistchina+easylist.txt: 58278) -.ads.yimg.com/.*videoadmodule.*\.swf -# @@||ads.yimg.com^*/search/b/syc_logo_2.gif (easylistchina+easylist.txt: 58277) -.ads.yimg.com/.*/search/b/syc_logo_2\.gif -# @@||ads.yimg.com/ev/eu/any/vint/videointerstitial*.js (easylistchina+easylist.txt: 58274) -.ads.yimg.com/ev/eu/any/vint/videointerstitial.*\.js -# @@||ads.songs.pk/openx/www/delivery/ (easylistchina+easylist.txt: 58264) -.ads.songs.pk/openx/www/delivery/ -# @@||ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ (easylistchina+easylist.txt: 58256) -.ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ -# @@||ads.nationmedia.com/webfonts/$font (easylistchina+easylist.txt: 58253) -.ads.nationmedia.com/webfonts/ -# @@||ads.memo2.nl^ (easylistchina+easylist.txt: 58251) -.ads.memo2.nl -# @@||ads.mefeedia.com/flash/flowplayer.controls-3.0.2.min.js (easylistchina+easylist.txt: 58250) -.ads.mefeedia.com/flash/flowplayer\.controls-3\.0\.2\.min\.js -# @@||ads.mefeedia.com/flash/flowplayer-3.1.2.min.js (easylistchina+easylist.txt: 58249) -.ads.mefeedia.com/flash/flowplayer-3\.1\.2\.min\.js -# @@||ads.globo.com^*/globovideo/player/ (easylistchina+easylist.txt: 58239) -.ads.globo.com/.*/globovideo/player/ -# @@||ads.foxnews.com/js/omtr_code.js (easylistchina+easylist.txt: 58237) -.ads.foxnews.com/js/omtr_code\.js -# @@||ads.foxnews.com/js/adv2.js (easylistchina+easylist.txt: 58236) -.ads.foxnews.com/js/adv2\.js -# @@||ads.foxnews.com/js/ad.js (easylistchina+easylist.txt: 58235) -.ads.foxnews.com/js/ad\.js -# @@||ads.foxnews.com/api/*-slideshow-data.js? (easylistchina+easylist.txt: 58234) -.ads.foxnews.com/api/.*-slideshow-data\.js\? -# @@||ads.fox.com/fox/black_2sec_600.flv (easylistchina+easylist.txt: 58233) -.ads.fox.com/fox/black_2sec_600\.flv -# @@||adf.ly/static/image/ad_top_bg.png (easylistchina+easylist.txt: 58195) -.adf.ly/static/image/ad_top_bg\.png -# @@||adf.ly/images/ad*.png (easylistchina+easylist.txt: 58194) -.adf.ly/images/ad.*\.png -# @@||addictinggames.com^*/mtvi_ads_reporting.js (easylistchina+easylist.txt: 58192) -.addictinggames.com/.*/mtvi_ads_reporting\.js -# @@||adap.tv/redir/javascript/vpaid.js (easylistchina+easylist.txt: 58183) -.adap.tv/redir/javascript/vpaid\.js -# @@||ad.reebonz.com/www/ (easylistchina+easylist.txt: 58162) -.ad.reebonz.com/www/ -# @@||abcnews.go.com/assets/static/ads/fwps.js (easylistchina+easylist.txt: 58143) -.abcnews.go.com/assets/static/ads/fwps\.js -# @@||abcnews.com/assets/static/ads/fwps.js (easylistchina+easylist.txt: 58142) -.abcnews.com/assets/static/ads/fwps\.js -# @@||a.giantrealm.com/assets/vau/grplayer*.swf (easylistchina+easylist.txt: 58138) -.a.giantrealm.com/assets/vau/grplayer.*\.swf -# @@||961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON.png (easylistchina+easylist.txt: 58134) -.961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON\.png -# @@||6waves.com/js/adshow.js (easylistchina+easylist.txt: 58133) -.6waves.com/js/adshow\.js -# @@||6waves.com/ads/720x300/ (easylistchina+easylist.txt: 58132) -.6waves.com/ads/720x300/ -# @@||53.com/resources/images/ad-rotator/ (easylistchina+easylist.txt: 58131) -.53.com/resources/images/ad-rotator/ -# @@||360gig.com/images/1_468x60.png (easylistchina+easylist.txt: 58129) -.360gig.com/images/1_468x60\.png -# @@||24ur.com/static/*/banners.js (easylistchina+easylist.txt: 58119) -.24ur.com/static/.*/banners\.js -# @@||24ur.com/adserver/adall. (easylistchina+easylist.txt: 58118) -.24ur.com/adserver/adall\. -# @@||247realmedia.com^*/farecomp/ (easylistchina+easylist.txt: 58117) -.247realmedia.com/.*/farecomp/ -# @@||192.168.*/images/adv_ (easylistchina+easylist.txt: 58112) -.192.168.*./(.*/)?images/adv_ -# @@||thegatewaypundit.com/wp-includes/images/rss.png (easylistchina+easylist.txt: 46046) -.thegatewaypundit.com/wp-includes/images/rss\.png -# @@||thegatewaypundit.com/wp-content/uploads/submit_tip.png (easylistchina+easylist.txt: 46045) -.thegatewaypundit.com/wp-content/uploads/submit_tip\.png -# @@||explosm.net/img/nav-button_random@2x.png| (easylistchina+easylist.txt: 45981) -.explosm.net/img/nav-button_random@2x\.png$ -# @@||explosm.net/img/nav-button_previous@2x.png| (easylistchina+easylist.txt: 45980) -.explosm.net/img/nav-button_previous@2x\.png$ -# @@||explosm.net/img/nav-button_next@2x.png| (easylistchina+easylist.txt: 45979) -.explosm.net/img/nav-button_next@2x\.png$ -# @@||explosm.net/img/nav-button_newest@2x.png| (easylistchina+easylist.txt: 45978) -.explosm.net/img/nav-button_newest@2x\.png$ -# @@||explosm.net/img/nav-button_first@2x.png| (easylistchina+easylist.txt: 45977) -.explosm.net/img/nav-button_first@2x\.png$ -# @@||explosm.net/img/logo.png (easylistchina+easylist.txt: 45976) -.explosm.net/img/logo\.png -# @@||conservativevideos.com^$generichide (easylistchina+easylist.txt: 45966) -.conservativevideos.com -# @@||speedtest.net/javascript/swfobject.js (easylistchina+easylist.txt: 45913) -.speedtest.net/javascript/swfobject\.js -# @@||speedtest.net/javascript/speedtest-main.js?v= (easylistchina+easylist.txt: 45912) -.speedtest.net/javascript/speedtest-main\.js\?v= -# @@||speedtest.net/javascript/speedtest-main.js?p=*&r=*&q=*%3*&s=*%3*= (easylistchina+easylist.txt: 45911) -.speedtest.net/javascript/speedtest-main\.js\?p=.*&r=.*&q=.*%3.*&s=.*%3.*= -# @@||speedtest.net/javascript/jquery.ui*.js (easylistchina+easylist.txt: 45910) -.speedtest.net/javascript/jquery\.ui.*\.js -# @@||speedtest.net/javascript/jquery.tipTip.js (easylistchina+easylist.txt: 45909) -.speedtest.net/javascript/jquery\.tipTip\.js -# @@||speedtest.net/javascript/jquery.placeholder.min.js (easylistchina+easylist.txt: 45908) -.speedtest.net/javascript/jquery\.placeholder\.min\.js -# @@||speedtest.net/javascript/jquery-*.min.js (easylistchina+easylist.txt: 45907) -.speedtest.net/javascript/jquery-.*\.min\.js -# @@||speedtest.net/javascript/highcharts.js (easylistchina+easylist.txt: 45906) -.speedtest.net/javascript/highcharts\.js -# @@||speedtest.net/javascript/functions.js (easylistchina+easylist.txt: 45905) -.speedtest.net/javascript/functions\.js -# @@||speedtest.net/javascript/extMouseWheel.js (easylistchina+easylist.txt: 45904) -.speedtest.net/javascript/extMouseWheel\.js -# @@||exashare.com/ad.js (easylistchina+easylist.txt: 45857) -.exashare.com/ad\.js -# @@||tmall.com/add? (easylistchina+easylist.txt: 10489) +# @@||tmall.com/add? (easylistchina.txt: 10477) .tmall.com/add\? -# @@||tbcdn.cn^*/click_track.js (easylistchina+easylist.txt: 10488) +# @@||tbcdn.cn^*/click_track.js (easylistchina.txt: 10476) .tbcdn.cn/.*/click_track\.js -# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina+easylist.txt: 10486) +# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina.txt: 10474) .stjscn.s-msn.com/portal/hp/2011/udctrack\. -# @@||pingjs.qq.com/ping.js (easylistchina+easylist.txt: 10480) +# @@||pingjs.qq.com/ping.js (easylistchina.txt: 10468) .pingjs.qq.com/ping\.js -# @@||msn.wrating.com/a1.js (easylistchina+easylist.txt: 10478) +# @@||msn.wrating.com/a1.js (easylistchina.txt: 10466) .msn.wrating.com/a1\.js -# @@||jd.com/setCookie? (easylistchina+easylist.txt: 10477) +# @@||jd.com/setCookie? (easylistchina.txt: 10465) .jd.com/setCookie\? -# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina+easylist.txt: 10475) +# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina.txt: 10463) .guahao.cn/common/js/plugins/fingerprint\.js -# @@||g.alicdn.com^*/banner_ad_ (easylistchina+easylist.txt: 10471) +# @@||g.alicdn.com^*/banner_ad_ (easylistchina.txt: 10458) .g.alicdn.com/.*/banner_ad_ -# @@||count.video.sina.com.cn^*?video_ids= (easylistchina+easylist.txt: 10469) +# @@||count.video.sina.com.cn^*?video_ids= (easylistchina.txt: 10456) .count.video.sina.com.cn/.*\?video_ids= -# @@||bagehd.com/iplookup. (easylistchina+easylist.txt: 10468) +# @@||bagehd.com/iplookup. (easylistchina.txt: 10455) .bagehd.com/iplookup\. -# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina+easylist.txt: 10467) +# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina.txt: 10454) .autohome.com.cn/javascript/fingerprint\.js -# @@||analytics.163.com/ntes.js (easylistchina+easylist.txt: 10466) +# @@||analytics.163.com/ntes.js (easylistchina.txt: 10453) .analytics.163.com/ntes\.js -# @@||alicdn.com^*/click_track.js (easylistchina+easylist.txt: 10465) +# @@||alicdn.com^*/click_track.js (easylistchina.txt: 10452) .alicdn.com/.*/click_track\.js -# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina+easylist.txt: 10464) +# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina.txt: 10451) .aixifan.com/dotnet/20130418/script/fingerprint\. -# @@||7m.cn/v2/js/analyse.js (easylistchina+easylist.txt: 10463) +# @@||7m.cn/v2/js/analyse.js (easylistchina.txt: 10450) .7m.cn/v2/js/analyse\.js -# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina+easylist.txt: 10456) +# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina.txt: 10443) .xnimg.cn/.*/nx/ugc/share/js/hotlist\.js -# @@||zjol.com.cn^*/index.jsp?newsid=$elemhide (easylistchina+easylist.txt: 10445) +# @@||zjol.com.cn^*/index.jsp?newsid=$elemhide (easylistchina.txt: 10432) .zjol.com.cn/.*/index\.jsp\?newsid= -# @@||zhibowu.com/ad2.htm (easylistchina+easylist.txt: 10444) +# @@||zhibowu.com/ad2.htm (easylistchina.txt: 10431) .zhibowu.com/ad2\.htm -# @@||zhaopin.cn^*/adbox_ (easylistchina+easylist.txt: 10443) +# @@||zhaopin.cn^*/adbox_ (easylistchina.txt: 10430) .zhaopin.cn/.*/adbox_ -# @@||zhaopin.cn/js/app/popShow. (easylistchina+easylist.txt: 10442) +# @@||zhaopin.cn/js/app/popShow. (easylistchina.txt: 10429) .zhaopin.cn/js/app/popShow\. -# @@||youku.com^*^showAd (easylistchina+easylist.txt: 10440) +# @@||youku.com^*^showAd (easylistchina.txt: 10428) .youku.com/.*[^\w%.-]showAd -# @@||youku.com^*^adshow (easylistchina+easylist.txt: 10439) +# @@||youku.com^*^adshow (easylistchina.txt: 10427) .youku.com/.*[^\w%.-]adshow -# @@||yinfu.cc/sid/function (easylistchina+easylist.txt: 10436) +# @@||yinfu.cc/sid/function (easylistchina.txt: 10424) .yinfu.cc/sid/function -# @@||yinfu.cc/sid/*play (easylistchina+easylist.txt: 10435) +# @@||yinfu.cc/sid/*play (easylistchina.txt: 10423) .yinfu.cc/sid/.*play -# @@||yimuhe.com/n_js/advertiser.js (easylistchina+easylist.txt: 10434) +# @@||yimuhe.com/n_js/advertiser.js (easylistchina.txt: 10422) .yimuhe.com/n_js/advertiser\.js -# @@||yimg.jp/combo?*/ad/ (easylistchina+easylist.txt: 10433) +# @@||yimg.jp/combo?*/ad/ (easylistchina.txt: 10421) .yimg.jp/combo\?.*/ad/ -# @@||ydxxt.com/ad/ (easylistchina+easylist.txt: 10431) +# @@||ydxxt.com/ad/ (easylistchina.txt: 10419) .ydxxt.com/ad/ -# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina+easylist.txt: 10429) +# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10417) .xunleipu.com/a-d-j-s/a-d-7\.js -# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina+easylist.txt: 10428) +# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10416) .xunleihao.com/a-d-j-s/a-d-7\.js -# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina+easylist.txt: 10427) +# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina.txt: 10415) .xnimg.cn/n/apps/profile/modules/tuiguang/ -# @@||xintaoke.com/images/gg/*.jpg (easylistchina+easylist.txt: 10426) +# @@||xintaoke.com/images/gg/*.jpg (easylistchina.txt: 10414) .xintaoke.com/images/gg/.*\.jpg -# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina+easylist.txt: 10425) +# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina.txt: 10413) .xinhuanet.com/2014/imgad/FS_2014weixin\.jpg -# @@||wubisheng.cn/style/pagead2.js (easylistchina+easylist.txt: 10424) +# @@||wubisheng.cn/style/pagead2.js (easylistchina.txt: 10412) .wubisheng.cn/style/pagead2\.js -# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina+easylist.txt: 10423) +# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina.txt: 10411) .wubisheng.cn/style/adsbygoogle\.js -# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina+easylist.txt: 10422) +# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina.txt: 10410) .woxiu.com/xapi/offsite_swf_more\.php\?.*&type= -# @@||wowsai.com/data/files/ad/ (easylistchina+easylist.txt: 10421) +# @@||wowsai.com/data/files/ad/ (easylistchina.txt: 10409) .wowsai.com/data/files/ad/ -# @@||wishdown.com/images/logo.gif (easylistchina+easylist.txt: 10420) +# @@||wishdown.com/images/logo.gif (easylistchina.txt: 10408) .wishdown.com/images/logo\.gif -# @@||win007.com/images/ad/qiu (easylistchina+easylist.txt: 10419) +# @@||win007.com/images/ad/qiu (easylistchina.txt: 10407) .win007.com/images/ad/qiu -# @@||win007.com/image/75338867887z.gif (easylistchina+easylist.txt: 10418) +# @@||win007.com/image/75338867887z.gif (easylistchina.txt: 10406) .win007.com/image/75338867887z\.gif -# @@||wholehk.com/madads728.htm (easylistchina+easylist.txt: 10417) +# @@||wholehk.com/madads728.htm (easylistchina.txt: 10405) .wholehk.com/madads728\.htm -# @@||wholehk.com/adsbygoogle.js (easylistchina+easylist.txt: 10416) +# @@||wholehk.com/adsbygoogle.js (easylistchina.txt: 10404) .wholehk.com/adsbygoogle\.js -# @@||wfcmw.cn^*.radio. (easylistchina+easylist.txt: 10415) +# @@||wfcmw.cn^*.radio. (easylistchina.txt: 10403) .wfcmw.cn/.*\.radio\. -# @@||weibo.com/api/weipan/getAds (easylistchina+easylist.txt: 10414) +# @@||weibo.com/api/weipan/getAds (easylistchina.txt: 10402) .weibo.com/api/weipan/getAds -# @@||webcrow.jp/adjs/ncskt.js (easylistchina+easylist.txt: 10413) +# @@||webcrow.jp/adjs/ncskt.js (easylistchina.txt: 10401) .webcrow.jp/adjs/ncskt\.js -# @@||veimg.cn/AdsShow/ (easylistchina+easylist.txt: 10412) +# @@||veimg.cn/AdsShow/ (easylistchina.txt: 10400) .veimg.cn/AdsShow/ -# @@||v1.cn/player/cloud/cloud_player (easylistchina+easylist.txt: 10411) +# @@||v1.cn/player/cloud/cloud_player (easylistchina.txt: 10399) .v1.cn/player/cloud/cloud_player -# @@||v.rbc.cn/ad/ (easylistchina+easylist.txt: 10410) +# @@||v.rbc.cn/ad/ (easylistchina.txt: 10398) .v.rbc.cn/ad/ -# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina+easylist.txt: 10409) +# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina.txt: 10397) .up2stream.com/vjs/plugin/css/ads\.css -# @@||union.m.jd.com/click/ (easylistchina+easylist.txt: 10408) +# @@||union.m.jd.com/click/ (easylistchina.txt: 10396) .union.m.jd.com/click/ -# @@||union.easypass.cn/block/ (easylistchina+easylist.txt: 10407) +# @@||union.easypass.cn/block/ (easylistchina.txt: 10395) .union.easypass.cn/block/ -# @@||union.click.jd.com^ (easylistchina+easylist.txt: 10406) +# @@||union.click.jd.com^ (easylistchina.txt: 10394) .union.click.jd.com -# @@||union.bokecc.com/servlet/getvideofile? (easylistchina+easylist.txt: 10405) +# @@||union.bokecc.com/servlet/getvideofile? (easylistchina.txt: 10393) .union.bokecc.com/servlet/getvideofile\? -# @@||union.bokecc.com/player? (easylistchina+easylist.txt: 10404) +# @@||union.bokecc.com/player? (easylistchina.txt: 10392) .union.bokecc.com/player\? -# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina+easylist.txt: 10401) +# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina.txt: 10389) .ujinbi.com/UpLoadFile/guanggao/ -# @@||ujinbi.com/AD/ (easylistchina+easylist.txt: 10400) +# @@||ujinbi.com/AD/ (easylistchina.txt: 10388) .ujinbi.com/AD/ -# @@||u9pan.com/images/ads/ (easylistchina+easylist.txt: 10398) +# @@||u9pan.com/images/ads/ (easylistchina.txt: 10386) .u9pan.com/images/ads/ -# @@||tt1069.com/advert.js (easylistchina+easylist.txt: 10396) +# @@||tt1069.com/advert.js (easylistchina.txt: 10384) .tt1069.com/advert\.js -# @@||toy9090.com^*/NR.gif (easylistchina+easylist.txt: 10395) +# @@||toy9090.com^*/NR.gif (easylistchina.txt: 10383) .toy9090.com/.*/NR\.gif -# @@||toy9090.com^*/NL.gif (easylistchina+easylist.txt: 10394) +# @@||toy9090.com^*/NL.gif (easylistchina.txt: 10382) .toy9090.com/.*/NL\.gif -# @@||totheglory.im/pic/ttg_logo (easylistchina+easylist.txt: 10393) +# @@||totheglory.im/pic/ttg_logo (easylistchina.txt: 10381) .totheglory.im/pic/ttg_logo -# @@||tompda.com/images/pix.swf (easylistchina+easylist.txt: 10392) +# @@||tompda.com/images/pix.swf (easylistchina.txt: 10380) .tompda.com/images/pix\.swf -# @@||tmall.com/go/*/banner.php (easylistchina+easylist.txt: 10391) +# @@||tmall.com/go/*/banner.php (easylistchina.txt: 10379) .tmall.com/go/.*/banner\.php -# @@||tenpay.com^*?ADTAG= (easylistchina+easylist.txt: 10390) +# @@||tenpay.com^*?ADTAG= (easylistchina.txt: 10378) .tenpay.com/.*\?ADTAG= -# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina+easylist.txt: 10389) +# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina.txt: 10377) .tenpay.com/v2\.0/main/creditcard/portal_rpm_apply\.shtml -# @@||taobao.com^*&adgroupid= (easylistchina+easylist.txt: 10388) +# @@||taobao.com^*&adgroupid= (easylistchina.txt: 10375) .taobao.com/.*&adgroupid= -# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina+easylist.txt: 10387) +# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina.txt: 10374) .taobao.com/go/app/tmall/login-api\.php\? -# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina+easylist.txt: 10386) +# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina.txt: 10373) .tansuo.cntv.cn/.*/tansuo_Advertise\.js -# @@||sx566.com/templates/default/images/ad (easylistchina+easylist.txt: 10384) +# @@||sx566.com/templates/default/images/ad (easylistchina.txt: 10371) .sx566.com/templates/default/images/ad -# @@||sudupan.com^*/*.gif (easylistchina+easylist.txt: 10383) +# @@||sudupan.com^*/*.gif (easylistchina.txt: 10370) .sudupan.com/.*/.*\.gif -# @@||static.atm.youku.com^*.swf (easylistchina+easylist.txt: 10380) +# @@||static.atm.youku.com^*.swf (easylistchina.txt: 10367) .static.atm.youku.com/.*\.swf -# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina+easylist.txt: 10379) +# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina.txt: 10366) .spbonow.com/UploadFiles/201505/2015051853456325\.gif -# @@||spbonow.com/images/ads/logo.gif (easylistchina+easylist.txt: 10378) +# @@||spbonow.com/images/ads/logo.gif (easylistchina.txt: 10365) .spbonow.com/images/ads/logo\.gif -# @@||sjsmitaa.org/bin/showads. (easylistchina+easylist.txt: 10377) +# @@||sjsmitaa.org/bin/showads. (easylistchina.txt: 10364) .sjsmitaa.org/bin/showads\. -# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina+easylist.txt: 10376) +# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina.txt: 10363) .sinaimg.cn/.*/deco/.*/sinaObj\.js -# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina+easylist.txt: 10374) +# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina.txt: 10361) .sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra\.gif -# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina+easylist.txt: 10373) +# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina.txt: 10360) .sinaimg.cn/dy/deco/.*/js/require\.js -# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina+easylist.txt: 10372) +# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina.txt: 10359) .sinaimg.cn/dy/deco/.*/js/base\.js -# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina+easylist.txt: 10370) +# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina.txt: 10357) .sinaimg.cn/ad/adimage/50x50_ -# @@||sina.com.hk^*_ads.cgi (easylistchina+easylist.txt: 10369) +# @@||sina.com.hk^*_ads.cgi (easylistchina.txt: 10356) .sina.com.hk/.*_ads\.cgi -# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina+easylist.txt: 10368) +# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina.txt: 10355) .sina.com.cn/litong/zhitou/pic/close- -# @@||share.dmhy.*/generate-captcha? (easylistchina+easylist.txt: 10366) +# @@||share.dmhy.*/generate-captcha? (easylistchina.txt: 10353) .share.dmhy.*./(.*/)?generate-captcha\? -# @@||sf-express.com/.galleries/advertisement/ (easylistchina+easylist.txt: 10365) +# @@||sf-express.com/.galleries/advertisement/ (easylistchina.txt: 10352) .sf-express.com/\.galleries/advertisement/ -# @@||sex169.org^$elemhide (easylistchina+easylist.txt: 10364) -.sex169.org -# @@||sex169.info^$elemhide (easylistchina+easylist.txt: 10363) -.sex169.info -# @@||serve.netsh.org^$elemhide (easylistchina+easylist.txt: 10362) +# @@||serve.netsh.org^$elemhide (easylistchina.txt: 10351) .serve.netsh.org -# @@||selfimg.com.cn/?? (easylistchina+easylist.txt: 10361) +# @@||selfimg.com.cn/?? (easylistchina.txt: 10350) .selfimg.com.cn/\?\? -# @@||sc.jb51.net/adimg/*.jpg (easylistchina+easylist.txt: 10359) +# @@||sc.jb51.net/adimg/*.jpg (easylistchina.txt: 10348) .sc.jb51.net/adimg/.*\.jpg -# @@||sakai.club/advertisement.js (easylistchina+easylist.txt: 10358) +# @@||sakai.club/advertisement.js (easylistchina.txt: 10347) .sakai.club/advertisement\.js -# @@||sakai-hk.com/advertisement.js (easylistchina+easylist.txt: 10357) +# @@||sakai-hk.com/advertisement.js (easylistchina.txt: 10346) .sakai-hk.com/advertisement\.js -# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina+easylist.txt: 10356) +# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina.txt: 10345) .saibeinews.com/index\.php\?m=poster&c=index&a=show_poster&id=2 -# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina+easylist.txt: 10353) +# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina.txt: 10343) .ruten.com.tw/js/jquery\.ruten\.supertop_ad\.js -# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina+easylist.txt: 10351) +# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina.txt: 10341) .regapi.37.com/api/p_register\.php\?login_account= -# @@||ref.so/templates/ref/short_show/adview_ (easylistchina+easylist.txt: 10350) +# @@||ref.so/templates/ref/short_show/adview_ (easylistchina.txt: 10340) .ref.so/templates/ref/short_show/adview_ -# @@||rakuya.com.tw^*/common_ad. (easylistchina+easylist.txt: 10349) +# @@||rakuya.com.tw^*/common_ad. (easylistchina.txt: 10339) .rakuya.com.tw/.*/common_ad\. -# @@||quwenjiemi.com/105.js? (easylistchina+easylist.txt: 10348) +# @@||quwenjiemi.com/105.js? (easylistchina.txt: 10338) .quwenjiemi.com/105\.js\? -# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina+easylist.txt: 10347) +# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina.txt: 10337) .qqread.com/swf/qqread_rollpic\.swf -# @@||qq.com^*?ADTAG= (easylistchina+easylist.txt: 10346) +# @@||qq.com^*?ADTAG= (easylistchina.txt: 10336) .qq.com/.*\?ADTAG= -# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina+easylist.txt: 10345) +# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina.txt: 10335) .qq.com/server/website/CommWebGameSelect_ad\.js -# @@||qq.com/bossweb/jifen/ (easylistchina+easylist.txt: 10344) +# @@||qq.com/bossweb/jifen/ (easylistchina.txt: 10334) .qq.com/bossweb/jifen/ -# @@||qiyipic.com/common/fix/pub_images/ (easylistchina+easylist.txt: 10343) +# @@||qiyipic.com/common/fix/pub_images/ (easylistchina.txt: 10333) .qiyipic.com/common/fix/pub_images/ -# @@||qingdaoport.net/adv/random.jsp (easylistchina+easylist.txt: 10342) +# @@||qingdaoport.net/adv/random.jsp (easylistchina.txt: 10332) .qingdaoport.net/adv/random\.jsp -# @@||qingcheng.com^*/ad (easylistchina+easylist.txt: 10341) +# @@||qingcheng.com^*/ad (easylistchina.txt: 10331) .qingcheng.com/.*/ad -# @@||qikuyou.com/images/js/adv.js (easylistchina+easylist.txt: 10340) +# @@||qikuyou.com/images/js/adv.js (easylistchina.txt: 10330) .qikuyou.com/images/js/adv\.js -# @@||qidian.com/ploy/20*.swf (easylistchina+easylist.txt: 10339) +# @@||qidian.com/ploy/20*.swf (easylistchina.txt: 10329) .qidian.com/ploy/20.*\.swf -# @@||pub.alimama.com/common/adzone/ (easylistchina+easylist.txt: 10338) +# @@||pub.alimama.com/common/adzone/ (easylistchina.txt: 10328) .pub.alimama.com/common/adzone/ -# @@||ps123.net/MyFile/toptxt.js (easylistchina+easylist.txt: 10337) +# @@||ps123.net/MyFile/toptxt.js (easylistchina.txt: 10327) .ps123.net/MyFile/toptxt\.js -# @@||pos.baidu.com/acom?di=u1840644& (easylistchina+easylist.txt: 10335) +# @@||pos.baidu.com/acom?di=u1840644& (easylistchina.txt: 10325) .pos.baidu.com/acom\?di=u1840644& -# @@||pos.baidu.com/acom?di=u1705639& (easylistchina+easylist.txt: 10334) +# @@||pos.baidu.com/acom?di=u1705639& (easylistchina.txt: 10324) .pos.baidu.com/acom\?di=u1705639& -# @@||pos.baidu.com/acom?di=u1671167& (easylistchina+easylist.txt: 10333) +# @@||pos.baidu.com/acom?di=u1671167& (easylistchina.txt: 10323) .pos.baidu.com/acom\?di=u1671167& -# @@||pos.baidu.com/acom?di=u1460926& (easylistchina+easylist.txt: 10332) +# @@||pos.baidu.com/acom?di=u1460926& (easylistchina.txt: 10322) .pos.baidu.com/acom\?di=u1460926& -# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina+easylist.txt: 10330) +# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina.txt: 10320) .pmm.people.com.cn/main/s\?user=people\|homepage\|2013juxing -# @@||piccool.com/2home/phpAdsNew/ (easylistchina+easylist.txt: 10329) +# @@||piccool.com/2home/phpAdsNew/ (easylistchina.txt: 10319) .piccool.com/2home/phpAdsNew/ -# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina+easylist.txt: 10328) +# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina.txt: 10318) .pic.zol-img.com.cn/2009/pix_index\.swf -# @@||photo.erji.com/tb/*.gif (easylistchina+easylist.txt: 10327) +# @@||photo.erji.com/tb/*.gif (easylistchina.txt: 10317) .photo.erji.com/tb/.*\.gif -# @@||pep.com.cn/rjs/guanggao/ (easylistchina+easylist.txt: 10326) +# @@||pep.com.cn/rjs/guanggao/ (easylistchina.txt: 10316) .pep.com.cn/rjs/guanggao/ -# @@||ouyaoxiazai.com/shouyead.js (easylistchina+easylist.txt: 10322) +# @@||ouyaoxiazai.com/shouyead.js (easylistchina.txt: 10312) .ouyaoxiazai.com/shouyead\.js -# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina+easylist.txt: 10321) +# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina.txt: 10311) .ooomm.com/ad/Whoyao_logo114\.png -# @@||ooomm.com/ad/icon/ (easylistchina+easylist.txt: 10320) +# @@||ooomm.com/ad/icon/ (easylistchina.txt: 10310) .ooomm.com/ad/icon/ -# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina+easylist.txt: 10318) +# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina.txt: 10308) .omusic.com.tw/backend/uploadpic/adindex/ -# @@||newxing.com/a_d/downAddress.js (easylistchina+easylist.txt: 10317) +# @@||newxing.com/a_d/downAddress.js (easylistchina.txt: 10307) .newxing.com/a_d/downAddress\.js -# @@||news.u17i.com/advert/ (easylistchina+easylist.txt: 10316) +# @@||news.u17i.com/advert/ (easylistchina.txt: 10306) .news.u17i.com/advert/ -# @@||new7574.u.qiniudn.com^*^ad (easylistchina+easylist.txt: 10315) +# @@||new7574.u.qiniudn.com^*^ad (easylistchina.txt: 10305) .new7574.u.qiniudn.com/.*[^\w%.-]ad -# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina+easylist.txt: 10314) +# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina.txt: 10304) .netded.com/plus/ad_js\.php\?aid=3$ -# @@||naruto.hk/ad/uy.js (easylistchina+easylist.txt: 10313) +# @@||naruto.hk/ad/uy.js (easylistchina.txt: 10303) .naruto.hk/ad/uy\.js -# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina+easylist.txt: 10312) +# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina.txt: 10302) .mymusic.net.tw/js/ad/index_1\.js -# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina+easylist.txt: 10311) +# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina.txt: 10301) .muzhiwan.com/forum\.php\?.*=300x250& -# @@||monnsutogatya.com^$elemhide (easylistchina+easylist.txt: 10310) +# @@||monnsutogatya.com^$elemhide (easylistchina.txt: 10300) .monnsutogatya.com -# @@||mnighthk.net^$elemhide (easylistchina+easylist.txt: 10309) +# @@||mnighthk.net^$elemhide (easylistchina.txt: 10299) .mnighthk.net -# @@||mnighthk.net/template/*/ad (easylistchina+easylist.txt: 10308) +# @@||mnighthk.net/template/*/ad (easylistchina.txt: 10298) .mnighthk.net/template/.*/ad -# @@||mm.maxthon.cn/ad/ (easylistchina+easylist.txt: 10307) +# @@||mm.maxthon.cn/ad/ (easylistchina.txt: 10297) .mm.maxthon.cn/ad/ -# @@||miaozhen.com^*/m.suning. (easylistchina+easylist.txt: 10306) +# @@||miaozhen.com^*/m.suning. (easylistchina.txt: 10296) .miaozhen.com/.*/m\.suning\. -# @@||meizu.com/fileserver/ad/img/ (easylistchina+easylist.txt: 10305) +# @@||meizu.com/fileserver/ad/img/ (easylistchina.txt: 10295) .meizu.com/fileserver/ad/img/ -# @@||meiziweibo.com^$elemhide (easylistchina+easylist.txt: 10304) +# @@||meiziweibo.com^$elemhide (easylistchina.txt: 10294) .meiziweibo.com -# @@||ltxhcz.com/skin/default/images/ (easylistchina+easylist.txt: 10302) +# @@||ltxhcz.com/skin/default/images/ (easylistchina.txt: 10292) .ltxhcz.com/skin/default/images/ -# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina+easylist.txt: 10301) +# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina.txt: 10291) .life.tenpay.com/res/ad/cellphone/js/down_for_app\.js -# @@||letvcloud.com^*&showAd= (easylistchina+easylist.txt: 10299) +# @@||letvcloud.com^*&showAd= (easylistchina.txt: 10289) .letvcloud.com/.*&showAd= -# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina+easylist.txt: 10296) +# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina.txt: 10286) .l.qq.com/livemsg\?ty=web&ad_type= -# @@||kukuplay.com/upload/*.*.swf (easylistchina+easylist.txt: 10295) +# @@||kukuplay.com/upload/*.*.swf (easylistchina.txt: 10285) .kukuplay.com/upload/.*\..*\.swf -# @@||joy.cn/service.php?*&showad= (easylistchina+easylist.txt: 10291) +# @@||joy.cn/service.php?*&showad= (easylistchina.txt: 10281) .joy.cn/service\.php\?.*&showad= -# @@||jjjgame.com/plus/ad_ (easylistchina+easylist.txt: 10290) +# @@||jjjgame.com/plus/ad_ (easylistchina.txt: 10280) .jjjgame.com/plus/ad_ -# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina+easylist.txt: 10289) +# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina.txt: 10279) .jj.5ccc.net/scripts/new/pagetop\.js -# @@||jinhongweiqi.com/ad/update/ (easylistchina+easylist.txt: 10288) +# @@||jinhongweiqi.com/ad/update/ (easylistchina.txt: 10278) .jinhongweiqi.com/ad/update/ -# @@||itjsb.com/bg.gif (easylistchina+easylist.txt: 10286) +# @@||itjsb.com/bg.gif (easylistchina.txt: 10276) .itjsb.com/bg\.gif -# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina+easylist.txt: 10285) +# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina.txt: 10275) .itiexue.net/js/tiexue/statistic/wwwindex/ -# @@||indeep.com.tw^*/Showad. (easylistchina+easylist.txt: 10281) +# @@||indeep.com.tw^*/Showad. (easylistchina.txt: 10271) .indeep.com.tw/.*/Showad\. -# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina+easylist.txt: 10280) +# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina.txt: 10270) .indeep.com.tw/Images/Upload/AdPic/ -# @@||indeep.com.tw/images/ad.swf? (easylistchina+easylist.txt: 10279) +# @@||indeep.com.tw/images/ad.swf? (easylistchina.txt: 10269) .indeep.com.tw/images/ad\.swf\? -# @@||img.ybbbs.com/2014/*app (easylistchina+easylist.txt: 10278) +# @@||img.ybbbs.com/2014/*app (easylistchina.txt: 10268) .img.ybbbs.com/2014/.*app -# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina+easylist.txt: 10274) +# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina.txt: 10264) .icbc.com.cn/Portal_Resources/Common/AdRes/ -# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina+easylist.txt: 10273) +# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina.txt: 10263) .icbc.com.cn/Portal_Resources/Common/AdCss/ -# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina+easylist.txt: 10272) +# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina.txt: 10262) .icbc.com.cn/ICBC_ADJS/ -# @@||icbc.com.cn/icbc/include/AD_ (easylistchina+easylist.txt: 10271) +# @@||icbc.com.cn/icbc/include/AD_ (easylistchina.txt: 10261) .icbc.com.cn/icbc/include/AD_ -# @@||ibf.tw^$elemhide (easylistchina+easylist.txt: 10270) +# @@||ibf.tw^$elemhide (easylistchina.txt: 10260) .ibf.tw -# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina+easylist.txt: 10269) +# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina.txt: 10259) .i3.sinaimg.cn/video/deco/2013/0325/js/ -# @@||hunantv.com/FrameWork/AFP/skin_ (easylistchina+easylist.txt: 10268) -.hunantv.com/FrameWork/AFP/skin_ -# @@||huelead.com/images/*ad (easylistchina+easylist.txt: 10267) +# @@||hunantv.com/FrameWork/AFP/ (easylistchina.txt: 10258) +.hunantv.com/FrameWork/AFP/ +# @@||huelead.com/images/*ad (easylistchina.txt: 10257) .huelead.com/images/.*ad -# @@||hkjc.com/banners/ (easylistchina+easylist.txt: 10266) +# @@||hkjc.com/banners/ (easylistchina.txt: 10256) .hkjc.com/banners/ -# @@||hhtt.cn/web.php/ad/show (easylistchina+easylist.txt: 10265) +# @@||hhtt.cn/web.php/ad/show (easylistchina.txt: 10255) .hhtt.cn/web\.php/ad/show -# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina+easylist.txt: 10264) +# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina.txt: 10254) .hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg\.js -# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina+easylist.txt: 10263) +# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina.txt: 10253) .heikexs.com/wp-content/themes/Duoxs.*/js/user\.js -# @@||guancha.cn/ad/m_ (easylistchina+easylist.txt: 10261) +# @@||guancha.cn/ad/m_ (easylistchina.txt: 10251) .guancha.cn/ad/m_ -# @@||gqzzw.com*/adview_ (easylistchina+easylist.txt: 10260) +# @@||gqzzw.com*/adview_ (easylistchina.txt: 10250) .gqzzw.com*./(.*/)?adview_ -# @@||gqdzs.com*/adview_ (easylistchina+easylist.txt: 10259) +# @@||gqdzs.com*/adview_ (easylistchina.txt: 10249) .gqdzs.com*./(.*/)?adview_ -# @@||gpsdlm.com/images/ad. (easylistchina+easylist.txt: 10258) +# @@||gpsdlm.com/images/ad. (easylistchina.txt: 10248) .gpsdlm.com/images/ad\. -# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina+easylist.txt: 10257) +# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina.txt: 10247) .gov.cn/scripts/Comm/AdRotator\.js -# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina+easylist.txt: 10255) +# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina.txt: 10245) .gg1z.com/statics/gg/greendown/logo\.gif -# @@||gg.img123456.com^ (easylistchina+easylist.txt: 10253) +# @@||gg.yxdown.com/count/countzt.js (easylistchina.txt: 10244) +.gg.yxdown.com/count/countzt\.js +# @@||gg.img123456.com^ (easylistchina.txt: 10242) .gg.img123456.com -# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina+easylist.txt: 10252) +# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina.txt: 10241) .ganji.com/findjob/send_resume\..*&ad_type= -# @@||gamersky.com^*/dhgame_ (easylistchina+easylist.txt: 10251) +# @@||gamersky.com^*/dhgame_ (easylistchina.txt: 10240) .gamersky.com/.*/dhgame_ -# @@||game.sina.com.tw/game_data/advertise/ (easylistchina+easylist.txt: 10250) +# @@||game.sina.com.tw/game_data/advertise/ (easylistchina.txt: 10239) .game.sina.com.tw/game_data/advertise/ -# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina+easylist.txt: 10249) +# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina.txt: 10238) .g.tbcdn.cn/tb/mercury/.*/ads/index\. -# @@||g.alicdn.com/??*/criteo (easylistchina+easylist.txt: 10248) +# @@||g.alicdn.com/??*/criteo (easylistchina.txt: 10237) .g.alicdn.com/\?\?.*/criteo -# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina+easylist.txt: 10247) +# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina.txt: 10236) .g.163.com/jr\?site=netease&affiliate=freemail -# @@||forum.51nb.com/images/*/ (easylistchina+easylist.txt: 10246) +# @@||forum.51nb.com/images/*/ (easylistchina.txt: 10235) .forum.51nb.com/images/.*/ -# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina+easylist.txt: 10245) +# @@||fharr.com^$generichide (easylistchina.txt: 10234) +.fharr.com +# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina.txt: 10232) .esquirehk.com/action/adtag/\(type\)/googletag/\(method\)/async -# @@||emome.net/files/advertising/ (easylistchina+easylist.txt: 10244) +# @@||emome.net/files/advertising/ (easylistchina.txt: 10231) .emome.net/files/advertising/ -# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina+easylist.txt: 10243) +# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina.txt: 10230) .eiv.baidu.com/hmt/icon/21\.gif -# @@||edgesuite.net^*/ad.css? (easylistchina+easylist.txt: 10242) +# @@||edgesuite.net^*/ad.css? (easylistchina.txt: 10229) .edgesuite.net/.*/ad\.css\? -# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina+easylist.txt: 10241) +# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina.txt: 10228) .eden.org.tw/themes/liger/images/banner_ -# @@||eden.org.tw*/script/ad_banner/ (easylistchina+easylist.txt: 10240) +# @@||eden.org.tw*/script/ad_banner/ (easylistchina.txt: 10227) .eden.org.tw*./(.*/)?script/ad_banner/ -# @@||ecma.bdimg.com/holmes/*.svg (easylistchina+easylist.txt: 10239) +# @@||ecma.bdimg.com/holmes/*.svg (easylistchina.txt: 10226) .ecma.bdimg.com/holmes/.*\.svg -# @@||ecitic.com/eshop/advertise/ (easylistchina+easylist.txt: 10238) +# @@||ecitic.com/eshop/advertise/ (easylistchina.txt: 10225) .ecitic.com/eshop/advertise/ -# @@||ecitic.com/ads_ (easylistchina+easylist.txt: 10237) +# @@||ecitic.com/ads_ (easylistchina.txt: 10224) .ecitic.com/ads_ -# @@||ebiotrade.com/jslibrary/js44.js (easylistchina+easylist.txt: 10236) +# @@||ebiotrade.com/jslibrary/js44.js (easylistchina.txt: 10223) .ebiotrade.com/jslibrary/js44\.js -# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina+easylist.txt: 10234) +# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina.txt: 10218) .e.cn.miaozhen.com/r/k=.*=http -# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina+easylist.txt: 10233) +# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina.txt: 10217) .dzwww.com/ad/jsfiles/fillCon\.js -# @@||dvs.china.com/crossdomain.xml (easylistchina+easylist.txt: 10232) +# @@||dvs.china.com/crossdomain.xml (easylistchina.txt: 10216) .dvs.china.com/crossdomain\.xml -# @@||dvs.china.com/adv1.xml (easylistchina+easylist.txt: 10231) +# @@||dvs.china.com/adv1.xml (easylistchina.txt: 10215) .dvs.china.com/adv1\.xml -# @@||dvbcn.com/caches/poster_js/23.js (easylistchina+easylist.txt: 10230) +# @@||dvbcn.com/caches/poster_js/23.js (easylistchina.txt: 10214) .dvbcn.com/caches/poster_js/23\.js -# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina+easylist.txt: 10229) +# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina.txt: 10213) .dushiwenxue.com/add/article/pagetop\.js -# @@||duba.net/common/cf/common_6545_icon. (easylistchina+easylist.txt: 10228) +# @@||duba.net/common/cf/common_6545_icon. (easylistchina.txt: 10212) .duba.net/common/cf/common_6545_icon\. -# @@||downbank.cn/s1/yl.js (easylistchina+easylist.txt: 10227) +# @@||downbank.cn/s1/yl.js (easylistchina.txt: 10211) .downbank.cn/s1/yl\.js -# @@||down.cc/down/js/ad.js (easylistchina+easylist.txt: 10226) +# @@||down.cc/down/js/ad.js (easylistchina.txt: 10210) .down.cc/down/js/ad\.js -# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina+easylist.txt: 10225) +# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina.txt: 10209) .do189.com/zb_users/theme/duoyi/style/images/text_bg\.gif -# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina+easylist.txt: 10223) +# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina.txt: 10207) .disney.com.tw/tv/global/swf/banner728x90\.swf -# @@||dilidili.com/js/week.js (easylistchina+easylist.txt: 10222) +# @@||dilidili.com/js/week.js (easylistchina.txt: 10206) .dilidili.com/js/week\.js -# @@||daoju.qq.com/time/*/js/ad/ (easylistchina+easylist.txt: 10221) +# @@||daoju.qq.com/time/*/js/ad/ (easylistchina.txt: 10205) .daoju.qq.com/time/.*/js/ad/ -# @@||damai.cn^*/TopAd/ (easylistchina+easylist.txt: 10220) +# @@||damai.cn^*/TopAd/ (easylistchina.txt: 10204) .damai.cn/.*/TopAd/ -# @@||cztv.com/player/*.swf?ad= (easylistchina+easylist.txt: 10219) +# @@||cztv.com/player/*.swf?ad= (easylistchina.txt: 10203) .cztv.com/player/.*\.swf\?ad= -# @@||csbew.com/FrameWork/AFP/ASP_ (easylistchina+easylist.txt: 10217) -.csbew.com/FrameWork/AFP/ASP_ -# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina+easylist.txt: 10216) +# @@||csbew.com/FrameWork/AFP/ (easylistchina.txt: 10201) +.csbew.com/FrameWork/AFP/ +# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina.txt: 10200) .cq.qq.com/js/cody/.*scroll_ad\.js -# @@||costco.com.tw/jsps/website/*AD (easylistchina+easylist.txt: 10213) +# @@||costco.com.tw/jsps/website/*AD (easylistchina.txt: 10197) .costco.com.tw/jsps/website/.*AD -# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina+easylist.txt: 10212) +# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina.txt: 10196) .content.s8bbs.com/ad/bbs/.*\.jpg -# @@||cntv.cn^*_ad.js (easylistchina+easylist.txt: 10211) +# @@||cntv.cn^*_ad.js (easylistchina.txt: 10195) .cntv.cn/.*_ad\.js -# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina+easylist.txt: 10210) +# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina.txt: 10194) .cnsofas.com/loldytt/js/jquery\.js -# @@||cnr.cn/gg/ (easylistchina+easylist.txt: 10209) +# @@||cnr.cn/gg/ (easylistchina.txt: 10193) .cnr.cn/gg/ -# @@||cmbchina.com/ads/ (easylistchina+easylist.txt: 10208) +# @@||cmbchina.com/ads/ (easylistchina.txt: 10192) .cmbchina.com/ads/ -# @@||click.union.vip.com^ (easylistchina+easylist.txt: 10207) +# @@||click.union.vip.com^ (easylistchina.txt: 10191) .click.union.vip.com -# @@||click.union.jd.com^ (easylistchina+easylist.txt: 10206) +# @@||click.union.jd.com^ (easylistchina.txt: 10190) .click.union.jd.com -# @@||citysbs.com^*/swfupload/ (easylistchina+easylist.txt: 10205) +# @@||citysbs.com^*/swfupload/ (easylistchina.txt: 10189) .citysbs.com/.*/swfupload/ -# @@||chinahr.com/images/phpads/ (easylistchina+easylist.txt: 10204) +# @@||chinahr.com/images/phpads/ (easylistchina.txt: 10188) .chinahr.com/images/phpads/ -# @@||cdn.wdlm.cn^*/ (easylistchina+easylist.txt: 10203) +# @@||cdn.wdlm.cn^*/ (easylistchina.txt: 10187) .cdn.wdlm.cn/.*/ -# @@||cb.baidu.com/ecom?di=943217& (easylistchina+easylist.txt: 10198) +# @@||cb.baidu.com/ecom?di=943217& (easylistchina.txt: 10182) .cb.baidu.com/ecom\?di=943217& -# @@||cb.baidu.com/ecom?di=893557& (easylistchina+easylist.txt: 10197) +# @@||cb.baidu.com/ecom?di=893557& (easylistchina.txt: 10181) .cb.baidu.com/ecom\?di=893557& -# @@||cb.baidu.com/ecom?di=817641& (easylistchina+easylist.txt: 10196) +# @@||cb.baidu.com/ecom?di=817641& (easylistchina.txt: 10180) .cb.baidu.com/ecom\?di=817641& -# @@||cb.baidu.com/ecom?di=654997& (easylistchina+easylist.txt: 10195) +# @@||cb.baidu.com/ecom?di=654997& (easylistchina.txt: 10179) .cb.baidu.com/ecom\?di=654997& -# @@||cb.baidu.com/ecom?di=373107& (easylistchina+easylist.txt: 10194) +# @@||cb.baidu.com/ecom?di=373107& (easylistchina.txt: 10178) .cb.baidu.com/ecom\?di=373107& -# @@||cb.baidu.com/ecom?di=106878& (easylistchina+easylist.txt: 10193) +# @@||cb.baidu.com/ecom?di=106878& (easylistchina.txt: 10177) .cb.baidu.com/ecom\?di=106878& -# @@||buy.ccb.com/public/js/ad.js (easylistchina+easylist.txt: 10189) +# @@||buy.ccb.com/public/js/ad.js (easylistchina.txt: 10173) .buy.ccb.com/public/js/ad\.js -# @@||briian.com/advert. (easylistchina+easylist.txt: 10188) +# @@||briian.com/advert. (easylistchina.txt: 10172) .briian.com/advert\. -# @@||blimage.com/picserver/ggpic/ (easylistchina+easylist.txt: 10187) +# @@||blimage.com/picserver/ggpic/ (easylistchina.txt: 10171) .blimage.com/picserver/ggpic/ -# @@||blemall.com^$elemhide (easylistchina+easylist.txt: 10186) +# @@||blemall.com^$elemhide (easylistchina.txt: 10170) .blemall.com -# @@||biz.gexing.com/bottom_ (easylistchina+easylist.txt: 10185) +# @@||biz.gexing.com/bottom_ (easylistchina.txt: 10169) .biz.gexing.com/bottom_ -# @@||biquge5.com/jquery/biquge.js (easylistchina+easylist.txt: 10184) +# @@||biquge5.com/jquery/biquge.js (easylistchina.txt: 10168) .biquge5.com/jquery/biquge\.js -# @@||bingfeng.tw^$elemhide (easylistchina+easylist.txt: 10183) +# @@||bingfeng.tw^$elemhide (easylistchina.txt: 10167) .bingfeng.tw -# @@||beanfun.com/ADClient/ (easylistchina+easylist.txt: 10182) +# @@||beanfun.com/ADClient/ (easylistchina.txt: 10166) .beanfun.com/ADClient/ -# @@||bdstatic.com/??*, (easylistchina+easylist.txt: 10181) +# @@||bdstatic.com/??*, (easylistchina.txt: 10165) .bdstatic.com/\?\?.*, -# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina+easylist.txt: 10179) +# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina.txt: 10163) .bbs.yantuchina.com/gg/tmp/hong\.gif -# @@||banma.com/statics/js/?? (easylistchina+easylist.txt: 10178) +# @@||banma.com/statics/js/?? (easylistchina.txt: 10162) .banma.com/statics/js/\?\? -# @@||atm.youku.com/cast/getFlvUrl. (easylistchina+easylist.txt: 10177) +# @@||bahamut.com.tw/JS/ad/mobileBigBanner.js (easylistchina.txt: 10161) +.bahamut.com.tw/JS/ad/mobileBigBanner\.js +# @@||atm.youku.com/cast/getFlvUrl. (easylistchina.txt: 10160) .atm.youku.com/cast/getFlvUrl\. -# @@||astyle.alicdn.com/?? (easylistchina+easylist.txt: 10176) +# @@||astyle.alicdn.com/?? (easylistchina.txt: 10159) .astyle.alicdn.com/\?\? -# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina+easylist.txt: 10175) +# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina.txt: 10158) .aspjzy.com/jsweb/js/hotsearch\.js -# @@||aqy103.com/js/aqy/main.js (easylistchina+easylist.txt: 10173) +# @@||aqy103.com/js/aqy/main.js (easylistchina.txt: 10156) .aqy103.com/js/aqy/main\.js -# @@||appbyme.com^*/Advertisement.css (easylistchina+easylist.txt: 10171) +# @@||appbyme.com^*/Advertisement.css (easylistchina.txt: 10154) .appbyme.com/.*/Advertisement\.css -# @@||appbyme.com/adclient/ (easylistchina+easylist.txt: 10170) +# @@||appbyme.com/adclient/ (easylistchina.txt: 10153) .appbyme.com/adclient/ -# @@||angpic.3g.net.cn/ai/*/ (easylistchina+easylist.txt: 10169) +# @@||angpic.3g.net.cn/ai/*/ (easylistchina.txt: 10152) .angpic.3g.net.cn/ai/.*/ -# @@||advertise.shijue.cvidea.cn^ (easylistchina+easylist.txt: 10164) +# @@||advertise.shijue.cvidea.cn^ (easylistchina.txt: 10148) .advertise.shijue.cvidea.cn -# @@||advert.kf5.com^ (easylistchina+easylist.txt: 10163) +# @@||advert.kf5.com^ (easylistchina.txt: 10147) .advert.kf5.com -# @@||ads.i8.com.cn/hd/dzs/ (easylistchina+easylist.txt: 10159) +# @@||ads.i8.com.cn/hd/dzs/ (easylistchina.txt: 10143) .ads.i8.com.cn/hd/dzs/ -# @@||addon.discuz.com/resource/*/ad (easylistchina+easylist.txt: 10154) +# @@||addon.discuz.com/resource/*/ad (easylistchina.txt: 10138) .addon.discuz.com/resource/.*/ad -# @@||adcdn.pingan.com^ (easylistchina+easylist.txt: 10153) +# @@||adcdn.pingan.com^ (easylistchina.txt: 10137) .adcdn.pingan.com -# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina+easylist.txt: 10152) +# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina.txt: 10136) .ad1.nownews.com/ads\.php\?ownerid=1335 -# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina+easylist.txt: 10151) +# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina.txt: 10135) .ad1.nownews.com/ads\.php\?ownerid=1334 -# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina+easylist.txt: 10150) +# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina.txt: 10134) .ad1.nownews.com/ads\.php\?ownerid=1333 -# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina+easylist.txt: 10149) +# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina.txt: 10133) .ad1.nownews.com/ads\.php\?ownerid=1332 -# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina+easylist.txt: 10148) +# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina.txt: 10132) .ad1.nownews.com/ads\.php\?ownerid=1331 -# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina+easylist.txt: 10147) +# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina.txt: 10131) .ad1.nownews.com/ads\.php\?ownerid=1325 -# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina+easylist.txt: 10146) +# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina.txt: 10130) .ad1.nownews.com/ads\.php\?ownerid=1324 -# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina+easylist.txt: 10145) +# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina.txt: 10129) .ad1.nownews.com/ads\.php\?ownerid=1323 -# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina+easylist.txt: 10144) +# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina.txt: 10128) .ad1.nownews.com/ads\.php\?ownerid=1322 -# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina+easylist.txt: 10143) +# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina.txt: 10127) .ad1.nownews.com/ads\.php\?ownerid=1321 -# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina+easylist.txt: 10142) +# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina.txt: 10126) .ad1.nownews.com/ads\.php\?ownerid=1294 -# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina+easylist.txt: 10141) +# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina.txt: 10125) .ad1.nownews.com/.*\.php\?ownerid=1355 -# @@||ad.thsi.cn/siteHome/ (easylistchina+easylist.txt: 10139) +# @@||ad.thsi.cn/siteHome/ (easylistchina.txt: 10123) .ad.thsi.cn/siteHome/ -# @@||ad.qyer.com^ (easylistchina+easylist.txt: 10138) +# @@||ad.qyer.com^ (easylistchina.txt: 10122) .ad.qyer.com -# @@||ad.ourgame.com^ (easylistchina+easylist.txt: 10137) +# @@||ad.ourgame.com^ (easylistchina.txt: 10121) .ad.ourgame.com -# @@||ad.kazakinfo.com^ (easylistchina+easylist.txt: 10136) +# @@||ad.kazakinfo.com^ (easylistchina.txt: 10120) .ad.kazakinfo.com -# @@||ad.jz123.cn^ (easylistchina+easylist.txt: 10135) +# @@||ad.jz123.cn^ (easylistchina.txt: 10119) .ad.jz123.cn -# @@||ad.damai.cn^ (easylistchina+easylist.txt: 10133) +# @@||ad.damai.cn^ (easylistchina.txt: 10117) .ad.damai.cn -# @@||ad.abchina.com^ (easylistchina+easylist.txt: 10131) +# @@||ad.abchina.com^ (easylistchina.txt: 10115) .ad.abchina.com -# @@||ad.10010.com^ (easylistchina+easylist.txt: 10128) +# @@||ad.10010.com^ (easylistchina.txt: 10112) .ad.10010.com -# @@||abchina.com^*/images/ad. (easylistchina+easylist.txt: 10126) +# @@||abchina.com^*/images/ad. (easylistchina.txt: 10110) .abchina.com/.*/images/ad\. -# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina+easylist.txt: 10125) +# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina.txt: 10109) .a.banggo.com/Ad/getAdPosList\.shtml -# @@||95599.cn^*/images/ad. (easylistchina+easylist.txt: 10123) +# @@||99ting.cn/image/ding.gif (easylistchina.txt: 10106) +.99ting.cn/image/ding\.gif +# @@||95599.cn^*/images/ad. (easylistchina.txt: 10105) .95599.cn/.*/images/ad\. -# @@||8591.com.tw^*/buyAd.css (easylistchina+easylist.txt: 10122) +# @@||8591.com.tw^*/buyAd.css (easylistchina.txt: 10104) .8591.com.tw/.*/buyAd\.css -# @@||7vk.com/detail/shehuipinlun.js (easylistchina+easylist.txt: 10121) +# @@||7vk.com/detail/shehuipinlun.js (easylistchina.txt: 10103) .7vk.com/detail/shehuipinlun\.js -# @@||7s8.net/image/ads/ (easylistchina+easylist.txt: 10120) +# @@||7s8.net/image/ads/ (easylistchina.txt: 10102) .7s8.net/image/ads/ -# @@||77119.com/js/fenxiang.js (easylistchina+easylist.txt: 10119) +# @@||77119.com/js/fenxiang.js (easylistchina.txt: 10101) .77119.com/js/fenxiang\.js -# @@||75.125.41.29:8080/*/ (easylistchina+easylist.txt: 10118) +# @@||75.125.41.29:8080/*/ (easylistchina.txt: 10100) .75.125.41.29:8080/.*/ -# @@||70.86.24.120:8060/*/ (easylistchina+easylist.txt: 10115) +# @@||70.86.24.120:8060/*/ (easylistchina.txt: 10097) .70.86.24.120:8060/.*/ -# @@||61ef.cn/upfiles/gg/ (easylistchina+easylist.txt: 10114) +# @@||61ef.cn/upfiles/gg/ (easylistchina.txt: 10096) .61ef.cn/upfiles/gg/ -# @@||61.164.108.184/tb/*.gif (easylistchina+easylist.txt: 10113) +# @@||61.164.108.184/tb/*.gif (easylistchina.txt: 10095) .61.164.108.184/tb/.*\.gif -# @@||61.164.108.104:4275/*/*.gif (easylistchina+easylist.txt: 10112) +# @@||61.164.108.104:4275/*/*.gif (easylistchina.txt: 10094) .61.164.108.104:4275/.*/.*\.gif -# @@||58cdn.com.cn/tuiguang/center/ (easylistchina+easylist.txt: 10111) +# @@||58cdn.com.cn/tuiguang/center/ (easylistchina.txt: 10092) .58cdn.com.cn/tuiguang/center/ -# @@||58.com/adJump?adType= (easylistchina+easylist.txt: 10109) +# @@||58.com/adJump?adType= (easylistchina.txt: 10090) .58.com/adJump\?adType= -# @@||52zy.com/gg/ (easylistchina+easylist.txt: 10108) +# @@||52zy.com/gg/ (easylistchina.txt: 10089) .52zy.com/gg/ -# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina+easylist.txt: 10107) +# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina.txt: 10088) .52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b\.png -# @@||51img1.com/??*/adsys. (easylistchina+easylist.txt: 10106) +# @@||51img1.com/??*/adsys. (easylistchina.txt: 10087) .51img1.com/\?\?.*/adsys\. -# @@||51hanhua.com/2013/brtxt.js (easylistchina+easylist.txt: 10105) +# @@||51hanhua.com/2013/brtxt.js (easylistchina.txt: 10086) .51hanhua.com/2013/brtxt\.js -# @@||360buyimg.com^*?? (easylistchina+easylist.txt: 10103) +# @@||360buyimg.com^*?? (easylistchina.txt: 10084) .360buyimg.com/.*\?\? -# @@||3399.com/DataTransfer/Advertisement/ (easylistchina+easylist.txt: 10100) +# @@||3399.com/DataTransfer/Advertisement/ (easylistchina.txt: 10081) .3399.com/DataTransfer/Advertisement/ -# @@||33.autohome.com.cn/njs/newget.js (easylistchina+easylist.txt: 10099) +# @@||33.autohome.com.cn/njs/newget.js (easylistchina.txt: 10080) .33.autohome.com.cn/njs/newget\.js -# @@||33.autohome.com.cn/njs/10055.js (easylistchina+easylist.txt: 10098) +# @@||33.autohome.com.cn/njs/10055.js (easylistchina.txt: 10079) .33.autohome.com.cn/njs/10055\.js -# @@||2kandy.com^$generichide (easylistchina+easylist.txt: 10097) +# @@||2kandy.com^$generichide (easylistchina.txt: 10078) .2kandy.com -# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina+easylist.txt: 10096) +# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina.txt: 10077) .2kandy.com/source/plugin/fieah_blockadblock/ -# @@||221.7.250.35/caches/poster_js/21.js (easylistchina+easylist.txt: 10093) +# @@||221.7.250.35/caches/poster_js/21.js (easylistchina.txt: 10076) .221.7.250.35/caches/poster_js/21\.js -# @@||218.65.30.232:88/day_ (easylistchina+easylist.txt: 10092) -.218.65.30.232:88/day_ -# @@||192.168.*.1/userRpm/Index.$elemhide (easylistchina+easylist.txt: 10090) +# @@||192.168.*.1/userRpm/Index.$elemhide (easylistchina.txt: 10074) .192.168.*./.*\.1/userRpm/Index\. .192.168.*.1/userRpm/Index\. -# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina+easylist.txt: 10089) +# @@||189.cn^$generichide (easylistchina.txt: 10073) +.189.cn +# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina.txt: 10072) .189.cn/activity/adzh2015/js/ad\.js -# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina+easylist.txt: 10088) +# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina.txt: 10071) .17kk.cc/scriptAD/other/new_manhua\.html -# @@||177mh.com/img_v1/bbad.gif (easylistchina+easylist.txt: 10087) +# @@||177mh.com/img_v1/bbad.gif (easylistchina.txt: 10070) .177mh.com/img_v1/bbad\.gif -# @@||17173.com/x/flash800500.js (easylistchina+easylist.txt: 10086) +# @@||17173.com/x/flash800500.js (easylistchina.txt: 10069) .17173.com/x/flash800500\.js -# @@||16888.com/dist/js/?? (easylistchina+easylist.txt: 10085) +# @@||16888.com/dist/js/?? (easylistchina.txt: 10068) .16888.com/dist/js/\?\? -# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina+easylist.txt: 10084) +# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina.txt: 10067) .131js.131.com/home/resouces/js/index_20120420\.js -# @@||123dhang.com/supo/advertisement.js (easylistchina+easylist.txt: 10082) +# @@||123dhang.com/supo/advertisement.js (easylistchina.txt: 10065) .123dhang.com/supo/advertisement\.js -# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina+easylist.txt: 10081) +# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina.txt: 10064) .12306.cn/otn/resources/images/pic/new-ad -# @@||113.com.tw/www/image/index-ad.png (easylistchina+easylist.txt: 10080) +# @@||113.com.tw/www/image/index-ad.png (easylistchina.txt: 10063) .113.com.tw/www/image/index-ad\.png -# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina+easylist.txt: 10079) +# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina.txt: 10062) .107.182.131.103/cache/\?q=/images/.*/ -# @@||10010.com^*/ad/ (easylistchina+easylist.txt: 10076) +# @@||10086.cn^$generichide (easylistchina.txt: 10060) +.10086.cn +# @@||10010.com^*/ad/ (easylistchina.txt: 10059) .10010.com/.*/ad/ -# @@||10010.com^*/ad. (easylistchina+easylist.txt: 10075) +# @@||10010.com^*/ad. (easylistchina.txt: 10058) .10010.com/.*/ad\. -# @@||060s.com/images_ad/*.png (easylistchina+easylist.txt: 10074) +# @@||060s.com/images_ad/*.png (easylistchina.txt: 10057) .060s.com/images_ad/.*\.png -# @@|http://*/gg/*.css (easylistchina+easylist.txt: 10073) +# @@|http://tieba.baidu.com/|$genericblock (easylistchina.txt: 10056) +tieba.baidu.com/$ +# @@|http://*/gg/*.css (easylistchina.txt: 10055) /(.*/)?gg/.*\.css -# @@u-ads.adap.tv*youku.com (easylistchina+easylist.txt: 10067) +# @@u-ads.adap.tv*youku.com (easylistchina.txt: 10049) /.*u-ads\.adap\.tv.*youku\.com .*u-ads.adap.tv*./.*youku\.com .*u-ads.adap.tv*youku.com*. -# @@/ttkdweb/page/js/ad.js (easylistchina+easylist.txt: 10058) +# @@/ttkdweb/page/js/ad.js (easylistchina.txt: 10040) /(.*/)?ttkdweb/page/js/ad\.js -# @@/dy_44jjss/zytop1.js (easylistchina+easylist.txt: 10036) -/(.*/)?dy_44jjss/zytop1\.js -# @@/dy_44jjss/topbu.js (easylistchina+easylist.txt: 10035) -/(.*/)?dy_44jjss/topbu\.js -# @@/data/attachment/*_300_250_ (easylistchina+easylist.txt: 10034) +# @@/data/attachment/*_300_250_ (easylistchina.txt: 10018) /(.*/)?data/attachment/.*_300_250_ -# @@/cntv_Advertise.js (easylistchina+easylist.txt: 10031) +# @@/cntv_Advertise.js (easylistchina.txt: 10015) /(.*/)?cntv_Advertise\.js -# @@/appledaily/homead/*_ad_logo. (easylistchina+easylist.txt: 10027) +# @@/appledaily/homead/*_ad_logo. (easylistchina.txt: 10011) /(.*/)?appledaily/homead/.*_ad_logo\. -# @@/32666/images/ad (easylistchina+easylist.txt: 9995) +# @@/32666/images/ad (easylistchina.txt: 9980) /(.*/)?32666/images/ad -# @@/2kuai/images/ad (easylistchina+easylist.txt: 9994) +# @@/2kuai/images/ad (easylistchina.txt: 9979) /(.*/)?2kuai/images/ad -# @@.tudouui.com^*&adSourceId= (easylistchina+easylist.txt: 9992) +# @@.tudouui.com^*&adSourceId= (easylistchina.txt: 9977) /.*\.tudouui\.com[^\w%.-].*&adSourceId= .*.tudouui.com/.*&adSourceId= -# @@.s1979.com/ad/ad*.mp4 (easylistchina+easylist.txt: 9991) +# @@.s1979.com/ad/ad*.mp4 (easylistchina.txt: 9976) /.*\.s1979\.com/ad/ad.*\.mp4 .*.s1979.com/ad/ad.*\.mp4 -# @@.jstv.com/c/gg/ (easylistchina+easylist.txt: 9990) +# @@.jstv.com/c/gg/ (easylistchina.txt: 9975) /.*\.jstv\.com/c/gg/ .*.jstv.com/c/gg/ -# @@.cntv.cn/adplayer/ (easylistchina+easylist.txt: 9984) +# @@.cntv.cn/adplayer/ (easylistchina.txt: 9970) /.*\.cntv\.cn/adplayer/ .*.cntv.cn/adplayer/ -# @@.beautifulphoto.net/ads/music (easylistchina+easylist.txt: 9983) +# @@.beautifulphoto.net/ads/music (easylistchina.txt: 9969) /.*\.beautifulphoto\.net/ads/music .*.beautifulphoto.net/ads/music -# @@&adf=dalian_300x250_ (easylistchina+easylist.txt: 9981) +# @@&adf=dalian_300x250_ (easylistchina.txt: 9967) /.*&adf=dalian_300x250_ -# @@||union.bokecc.com/crossdomain.xml (easylistchina+easylist.txt: 24) +# @@||union.bokecc.com/crossdomain.xml (easylistchina.txt: 21) .union.bokecc.com/crossdomain\.xml -# @@||vse.kz/public/js/jsLoader.js?adkey= (advblock.txt: 7607) -.vse.kz/public/js/jsLoader\.js\?adkey= -# @@||smexo.tv^$genericblock,generichide (advblock.txt: 7599) -.smexo.tv -# @@||ria.ru^$generichide (advblock.txt: 7597) -.ria.ru -# @@||remoteshaman.com/templates/remotehelp/js/ads.js| (advblock.txt: 7596) -.remoteshaman.com/templates/remotehelp/js/ads\.js$ -# @@||planetaua.net^$generichide (advblock.txt: 7594) -.planetaua.net -# @@||photolessons.org^$elemhide (advblock.txt: 7592) -.photolessons.org -# @@||olegon.ru^$elemhide (advblock.txt: 7588) -.olegon.ru -# @@||moviki.ru/embed/$elemhide (advblock.txt: 7585) -.moviki.ru/embed/ -# @@||moonwalk.cc^$elemhide (advblock.txt: 7583) -.moonwalk.cc -# @@||lostfilmonline.tv^$elemhide (advblock.txt: 7581) -.lostfilmonline.tv -# @@||kinomania.kz^$generichide (advblock.txt: 7577) -.kinomania.kz -# @@||ivbt.ru^$elemhide (advblock.txt: 7576) -.ivbt.ru -# @@||free-send.ru^$elemhide (advblock.txt: 7568) -.free-send.ru -# @@||forum.zarulem.ws^$elemhide (advblock.txt: 7567) -.forum.zarulem.ws -# @@||forum.na-svyazi.ru^$elemhide (advblock.txt: 7566) -.forum.na-svyazi.ru -# @@||fileplaneta.com^$generichide (advblock.txt: 7565) -.fileplaneta.com -# @@||cnews.ru^$generichide (advblock.txt: 7562) -.cnews.ru -# @@||anistar.ru^$generichide (advblock.txt: 7561) -.anistar.ru -# @@||adultmult.tv^$genericblock,generichide (advblock.txt: 7555) -.adultmult.tv -# @@||yastatic.net/market-export/*/adv/advert.js| (advblock.txt: 7439) -.yastatic.net/market-export/.*/adv/advert\.js$ -# @@||yandex.st/swf/ad-sdk-module/1_0/info?nc= (advblock.txt: 7438) -.yandex.st/swf/ad-sdk-module/1_0/info\?nc= -# @@||yandex.st/swf/ad-sdk-module/1_0/*/ad-sdk-module.swf?partnerid=139995 (advblock.txt: 7437) -.yandex.st/swf/ad-sdk-module/1_0/.*/ad-sdk-module\.swf\?partnerid=139995 -# @@||yandex.ru/metrika/informer.js (advblock.txt: 7436) -.yandex.ru/metrika/informer\.js -# @@||x-soft.tomsk.ru/dsa/kompstar/jcarousel.js (advblock.txt: 7433) -.x-soft.tomsk.ru/dsa/kompstar/jcarousel\.js -# @@||volnorez.com^*/liveplayer.swf?url= (advblock.txt: 7430) -.volnorez.com/.*/liveplayer\.swf\?url= -# @@||video.videonow.ru/crossdomain.xml (advblock.txt: 7423) -.video.videonow.ru/crossdomain\.xml -# @@||video.begun.ru/flowplayer_begun_lib.swf| (advblock.txt: 7421) -.video.begun.ru/flowplayer_begun_lib\.swf$ -# @@||s5o.ru/common/css/teaser.css? (advblock.txt: 7387) -.s5o.ru/common/css/teaser\.css\? -# @@||s.click.aliexpress.com^$popup (advblock.txt: 7386) -.s.click.aliexpress.com -# @@||rf-mods.ru/uploads/banners/ (advblock.txt: 7375) -.rf-mods.ru/uploads/banners/ -# @@||promo.static.gamexp.ru^ (advblock.txt: 7369) -.promo.static.gamexp.ru -# @@||peakdesign.ru^*/300_250_ (advblock.txt: 7354) -.peakdesign.ru/.*/300_250_ -# @@||nude-moon.com/cdn-cgi/pe/bag2?r[]=http%3A%2F%2Fnude-moon. (advblock.txt: 7350) -.nude-moon.com/cdn-cgi/pe/bag2\?r\[\]=http%3A%2F%2Fnude-moon\. -# @@||now.ru/www/delivery/fc.php? (advblock.txt: 7349) -.now.ru/www/delivery/fc\.php\? -# @@||myradio24.com/informer.php (advblock.txt: 7343) -.myradio24.com/informer\.php -# @@||mmi.bemobile.ua/lib/lib.js (advblock.txt: 7338) -.mmi.bemobile.ua/lib/lib\.js -# @@||megogo.net^$generichide (advblock.txt: 7336) -.megogo.net -# @@||mediatoday.ru/crossdomain.xml| (advblock.txt: 7334) -.mediatoday.ru/crossdomain\.xml$ -# @@||maritimebank.com/All/Images/Banner.gif (advblock.txt: 7331) -.maritimebank.com/All/Images/Banner\.gif -# @@||map.cn.ua/media/*/tur/ (advblock.txt: 7330) -.map.cn.ua/media/.*/tur/ -# @@||liveangarsk.ru/files/k/k-nikita.gif (advblock.txt: 7324) -.liveangarsk.ru/files/k/k-nikita\.gif -# @@||lifenews.ru^$generichide (advblock.txt: 7323) -.lifenews.ru -# @@||kino-dom.org^$generichide (advblock.txt: 7321) -.kino-dom.org -# @@||instreamvideo.ru/crossdomain.xml| (advblock.txt: 7316) -.instreamvideo.ru/crossdomain\.xml$ -# @@||iledebeaute.ru^$genericblock,generichide (advblock.txt: 7312) -.iledebeaute.ru -# @@||efxi.ru/files/banner.gif| (advblock.txt: 7290) -.efxi.ru/files/banner\.gif$ -# @@||darkteam.net/advertisement.js (advblock.txt: 7288) -.darkteam.net/advertisement\.js -# @@||changecopyright.ru/bannersout/ (advblock.txt: 7285) -.changecopyright.ru/bannersout/ -# @@||bash.im/webmaster|$elemhide (advblock.txt: 7276) -.bash.im/webmaster$ -# @@||an.yandex.ru/vcset/139995?*&client_type=flash (advblock.txt: 7266) -.an.yandex.ru/vcset/139995\?.*&client_type=flash -# @@||an.yandex.ru/crossdomain.xml (advblock.txt: 7262) -.an.yandex.ru/crossdomain\.xml -# @@||amazonaws.com/c.swf?path=http (advblock.txt: 7261) -.amazonaws.com/c\.swf\?path=http -# @@||advert.starlightmedia.ua/ua/index/get-advert (advblock.txt: 7251) -.advert.starlightmedia.ua/ua/index/get-advert -# @@||advert.starlightmedia.ua/crossdomain.xml (advblock.txt: 7250) -.advert.starlightmedia.ua/crossdomain\.xml -# @@||adv.ru^$popup (advblock.txt: 7247) -.adv.ru -# @@||2gis.ru^$generichide (advblock.txt: 7219) -.2gis.ru -# @@.soundcloud.com/player.swf?url= (advblock.txt: 7179) -/.*\.soundcloud\.com/player\.swf\?url= -.*.soundcloud.com/player\.swf\?url= -# @@||imagebam.com/image/$popup (easylist.txt: 51309) -.imagebam.com/image/ -# @@||youngmodelsclub.net^$elemhide (easylist.txt: 51300) -.youngmodelsclub.net -# @@||youfreeporntube.com^$generichide (easylist.txt: 51299) -.youfreeporntube.com -# @@||you-fap.com^$elemhide (easylist.txt: 51298) -.you-fap.com -# @@||xibitnet.com/check/advertisements.js (easylist.txt: 51297) -.xibitnet.com/check/advertisements\.js -# @@||xibitnet.com/check/advertisement.js (easylist.txt: 51296) -.xibitnet.com/check/advertisement\.js -# @@||tube8.com/js/advertisement.js (easylist.txt: 51295) -.tube8.com/js/advertisement\.js -# @@||trafficjunky.net/js/ad*.js (easylist.txt: 51294) -.trafficjunky.net/js/ad.*\.js -# @@||thisav.com^$elemhide (easylist.txt: 51292) -.thisav.com -# @@||sexvidx.tv/js/eroex.js (easylist.txt: 51289) -.sexvidx.tv/js/eroex\.js -# @@||pornve.com^$elemhide (easylist.txt: 51287) -.pornve.com -# @@||pornfun.com/js/ads.js (easylist.txt: 51285) -.pornfun.com/js/ads\.js -# @@||porndoo.com/showads.js (easylist.txt: 51284) -.porndoo.com/showads\.js -# @@||phncdn.com^*/fuckadblock.js (easylist.txt: 51282) -.phncdn.com/.*/fuckadblock\.js -# @@||phncdn.com^*/ads.js (easylist.txt: 51281) -.phncdn.com/.*/ads\.js -# @@||phncdn.com/js/advertisement.js (easylist.txt: 51279) -.phncdn.com/js/advertisement\.js -# @@||palaotog.net^$elemhide (easylist.txt: 51278) -.palaotog.net -# @@||openload.io/Ads.png (easylist.txt: 51277) -.openload.io/Ads\.png -# @@||ooporn.com/ads.js (easylist.txt: 51276) -.ooporn.com/ads\.js -# @@||nightchan.com/advertisement.js (easylist.txt: 51275) -.nightchan.com/advertisement\.js -# @@||n4mo.org^$elemhide (easylist.txt: 51274) -.n4mo.org -# @@||n4mo.org/wp-content/*/ads/ (easylist.txt: 51273) -.n4mo.org/wp-content/.*/ads/ -# @@||lfporn.com^$elemhide (easylist.txt: 51271) -.lfporn.com -# @@||jporn4u.com/js/ads.js (easylist.txt: 51269) -.jporn4u.com/js/ads\.js -# @@||javstar.net^$elemhide (easylist.txt: 51267) -.javstar.net -# @@||javpee.com/eroex.js (easylist.txt: 51266) -.javpee.com/eroex\.js -# @@||javhub.net^$elemhide (easylist.txt: 51264) -.javhub.net -# @@||indiangilma.com^$elemhide (easylist.txt: 51259) -.indiangilma.com -# @@||imgadult.com/js/advertisement.js (easylist.txt: 51258) -.imgadult.com/js/advertisement\.js -# @@||hentaimoe.com/js/advertisement.js (easylist.txt: 51257) -.hentaimoe.com/js/advertisement\.js -# @@||hentaihaven.org^*/fuckadblock.js (easylist.txt: 51256) -.hentaihaven.org/.*/fuckadblock\.js -# @@||hentaienespa帽ol.net^$elemhide (easylist.txt: 51255) -.hentaienespa帽ol.net -# @@||hellojav.com^$elemhide (easylist.txt: 51254) -.hellojav.com -# @@||fuqer.com^*/advertisement.js (easylist.txt: 51251) -.fuqer.com/.*/advertisement\.js -# @@||fapxl.com^$elemhide (easylist.txt: 51250) -.fapxl.com -# @@||desihoes.com/advertisement.js (easylist.txt: 51249) -.desihoes.com/advertisement\.js -# @@||ad.thisav.com/player/swfobject.js (easylist.txt: 51247) -.ad.thisav.com/player/swfobject\.js -# @@||25643e662a2.com/ad*.js (easylist.txt: 51246) -.25643e662a2.com/ad.*\.js -# @@||209.58.131.22^*/advertisement.js (easylist.txt: 51245) -.209.58.131.22/.*/advertisement\.js -# @@||1986a44b12e.com/googlead.js (easylist.txt: 51244) -.1986a44b12e.com/googlead\.js -# @@||1986a44b12e.com/Ad*.js (easylist.txt: 51243) -.1986a44b12e.com/Ad.*\.js -# @@||tube8.com/favicon.ico (easylist.txt: 51221) -.tube8.com/favicon\.ico -# @@||redtube.com/htmllogin| (easylist.txt: 51194) -.redtube.com/htmllogin$ -# @@||pornhub.com/oauth2/authorize?$popup (easylist.txt: 51168) -.pornhub.com/oauth2/authorize\? -# @@||xxxporntalk.com/images/xxxpt-chrome.jpg (easylist.txt: 50985) -.xxxporntalk.com/images/xxxpt-chrome\.jpg -# @@||xhcdn.com/images/flag/AD.gif (easylist.txt: 50984) -.xhcdn.com/images/flag/AD\.gif -# @@||starcelebs.com/logos/logo10.jpg (easylist.txt: 50973) -.starcelebs.com/logos/logo10\.jpg -# @@||skimtube.com/advertisements.php? (easylist.txt: 50972) -.skimtube.com/advertisements\.php\? -# @@||nonktube.com/img/adyea.jpg (easylist.txt: 50965) -.nonktube.com/img/adyea\.jpg -# @@||kuntfutube.com/go.php?ad= (easylist.txt: 50960) -.kuntfutube.com/go\.php\?ad= -# @@||fucktube.com/work/videoad.php? (easylist.txt: 50952) -.fucktube.com/work/videoad\.php\? -# @@||burningcamel.com/ads/banner.jpg (easylist.txt: 50948) -.burningcamel.com/ads/banner\.jpg -# @@||ad.thisav.com/player/jw.swf (easylist.txt: 50941) -.ad.thisav.com/player/jw\.swf -# @@||gsmarena.com/adclick.php?bannerid=$popup (easylist.txt: 50928) -.gsmarena.com/adclick\.php\?bannerid= -# @@||adv.blogupp.com^$popup (easylist.txt: 50918) -.adv.blogupp.com -# @@||zorza-polarna.pl/environment/cache/images/300_250_ (easylist.txt: 50906) -.zorza-polarna.pl/environment/cache/images/300_250_ -# @@||weatherbug.com/style/stickers/*_728x90.css (easylist.txt: 50904) -.weatherbug.com/style/stickers/.*_728x90\.css -# @@||weatherbug.com/images/stickers/*/728x90/ (easylist.txt: 50903) -.weatherbug.com/images/stickers/.*/728x90/ -# @@||weatherbug.com/desktop-weather/*=728x90& (easylist.txt: 50902) -.weatherbug.com/desktop-weather/.*=728x90& -# @@||w3easy.org/templates/*_120x60_ (easylist.txt: 50900) -.w3easy.org/templates/.*_120x60_ -# @@||w3easy.org/templates/*_120x60. (easylist.txt: 50899) -.w3easy.org/templates/.*_120x60\. -# @@||vortex.accuweather.com^*_300x250_bg.jpg (easylist.txt: 50898) -.vortex.accuweather.com/.*_300x250_bg\.jpg -# @@||vortex.accuweather.com^*_160x600_bg.jpg (easylist.txt: 50897) -.vortex.accuweather.com/.*_160x600_bg\.jpg -# @@||vortex.accuweather.com^*_120x60_bg.jpg (easylist.txt: 50896) -.vortex.accuweather.com/.*_120x60_bg\.jpg -# @@||usopen.org/images/pics/misc/*.300x250.jpg (easylist.txt: 50894) -.usopen.org/images/pics/misc/.*\.300x250\.jpg -# @@||usanetwork.com/sites/usanetwork/*300x250 (easylist.txt: 50893) -.usanetwork.com/sites/usanetwork/.*300x250 -# @@||turner.com/v5cache/TCM/Images/*_120x60_ (easylist.txt: 50890) -.turner.com/v5cache/TCM/Images/.*_120x60_ -# @@||turner.com/v5cache/TCM/images/*_120x60. (easylist.txt: 50889) -.turner.com/v5cache/TCM/images/.*_120x60\. -# @@||tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/*_120_60.jpg (easylist.txt: 50888) -.tribune.com.ng/news2013/cache/mod_yt_k2megaslider/images/.*_120_60\.jpg -# @@||static-origin.openedition.org^*-120x240.jpg (easylist.txt: 50883) -.static-origin.openedition.org/.*-120x240\.jpg -# @@||rehabs.com^*/xicons_social_sprite_400x60.png (easylist.txt: 50880) -.rehabs.com/.*/xicons_social_sprite_400x60\.png -# @@||quisqualis.com/QBanner_760x100.jpg (easylist.txt: 50878) -.quisqualis.com/QBanner_760x100\.jpg -# @@||opposingviews.com^*/300x250/ (easylist.txt: 50876) -.opposingviews.com/.*/300x250/ -# @@||onescreen.net/os/static/widgets/*300x250 (easylist.txt: 50875) -.onescreen.net/os/static/widgets/.*300x250 -# @@||nationalgeographic.com/exposure/content/*300x250 (easylist.txt: 50874) -.nationalgeographic.com/exposure/content/.*300x250 -# @@||mxtoolbox.com/Public/images/banners/Mx-Pro-160x600.jpg (easylist.txt: 50873) -.mxtoolbox.com/Public/images/banners/Mx-Pro-160x600\.jpg -# @@||motherboard.tv/content-images/*_120x60. (easylist.txt: 50870) -.motherboard.tv/content-images/.*_120x60\. -# @@||marketing.beatport.com.s3.amazonaws.com^*/728x90_ (easylist.txt: 50867) -.marketing.beatport.com.s3.amazonaws.com/.*/728x90_ -# @@||maps.googleapis.com/maps/api/*=300x250& (easylist.txt: 50866) -.maps.googleapis.com/maps/api/.*=300x250& -# @@||komikslandia.pl/environment/cache/images/300_250_ (easylist.txt: 50863) -.komikslandia.pl/environment/cache/images/300_250_ -# @@||imdb.com/images/*doubleclick/*320x240 (easylist.txt: 50861) -.imdb.com/images/.*doubleclick/.*320x240 -# @@||imdb.com/images/*doubleclick/*300x250 (easylist.txt: 50860) -.imdb.com/images/.*doubleclick/.*300x250 -# @@||harpers.co.uk/pictures/300x250/ (easylist.txt: 50852) -.harpers.co.uk/pictures/300x250/ -# @@||google.com/uds/modules/elements/newsshow/iframe.html?*=300x250& (easylist.txt: 50851) -.google.com/uds/modules/elements/newsshow/iframe\.html\?.*=300x250& -# @@||freetvhub.com/ad1_300x250.html (easylist.txt: 50850) -.freetvhub.com/ad1_300x250\.html -# @@||firestormgames.co.uk/image/*-120x60. (easylist.txt: 50847) -.firestormgames.co.uk/image/.*-120x60\. -# @@||film.com/plugins/*-300x250 (easylist.txt: 50845) -.film.com/plugins/.*-300x250 -# @@||efvi.eu/badge/*-120x60.png (easylist.txt: 50843) -.efvi.eu/badge/.*-120x60\.png -# @@||disney.com.au/global/swf/banner160x600.swf (easylist.txt: 50841) -.disney.com.au/global/swf/banner160x600\.swf -# @@||disney.com.au/global/swf/*728x90.swf (easylist.txt: 50840) -.disney.com.au/global/swf/.*728x90\.swf -# @@||discovery.com^*/ratio-size/pixel-ratio/300x250.png (easylist.txt: 50839) -.discovery.com/.*/ratio-size/pixel-ratio/300x250\.png -# @@||dawn.com/wp-content/uploads/*_300x250.jpg (easylist.txt: 50838) -.dawn.com/wp-content/uploads/.*_300x250\.jpg -# @@||crowdignite.com/img/upload/*300x250 (easylist.txt: 50836) -.crowdignite.com/img/upload/.*300x250 -# @@||consumerist-com.wpengine.netdna-cdn.com/assets/*300x250 (easylist.txt: 50835) -.consumerist-com.wpengine.netdna-cdn.com/assets/.*300x250 -# @@||cinemanow.com/images/banners/300x250/ (easylist.txt: 50834) -.cinemanow.com/images/banners/300x250/ -# @@||canada.com/news/*-300-250.gif (easylist.txt: 50833) -.canada.com/news/.*-300-250\.gif -# @@||assets2.plinxmedia.net^*_300x250. (easylist.txt: 50830) -.assets2.plinxmedia.net/.*_300x250\. -# @@||assets1.plinxmedia.net^*_300x250. (easylist.txt: 50829) -.assets1.plinxmedia.net/.*_300x250\. -# @@||assets.vice.com^*_120x60.jpg (easylist.txt: 50828) -.assets.vice.com/.*_120x60\.jpg -# @@||artserieshotels.com.au/images/*_460_60. (easylist.txt: 50827) -.artserieshotels.com.au/images/.*_460_60\. -# @@||arnhemland-safaris.com/images/*_480_80_ (easylist.txt: 50826) -.arnhemland-safaris.com/images/.*_480_80_ -# @@||publisher.adservice.com^$elemhide (easylist.txt: 50813) -.publisher.adservice.com -# @@||adservicemedia.dk^$elemhide (easylist.txt: 50810) -.adservicemedia.dk -# @@||ads.acesse.com^$elemhide (easylist.txt: 50788) -.ads.acesse.com -# @@||ads.stumbleupon.com^$popup (easylist.txt: 50783) -.ads.stumbleupon.com -# @@||app.adroll.com^$elemhide (easylist.txt: 50761) -.app.adroll.com -# @@||vk.com/ads$elemhide (easylist.txt: 50747) -.vk.com/ads -# @@||paymentgate.ru/payment/*_Advert/ (easylist.txt: 50746) -.paymentgate.ru/payment/.*_Advert/ -# @@||authentication-api.skimlinks.com^ (easylist.txt: 50739) -.authentication-api.skimlinks.com -# @@||api-merchants.skimlinks.com^ (easylist.txt: 50738) -.api-merchants.skimlinks.com -# @@||www.google.com/doubleclick/images/favicon.ico (easylist.txt: 50706) -.www.google.com/doubleclick/images/favicon\.ico -# @@||www.google.com/adwords/$elemhide (easylist.txt: 50703) -.www.google.com/adwords/ -# @@||www.google.*/ads/images/ (easylist.txt: 50696) -.www.google.*./(.*/)?ads/images/ -# @@||www.google.*/ads/*/images/ (easylist.txt: 50694) -.www.google.*./(.*/)?ads/.*/images/ -# @@||www.facebook.com/ads/$elemhide (easylist.txt: 50674) -.www.facebook.com/ads/ -# @@||ziarelive.ro/assets/js/advertisement.js (easylist.txt: 50669) -.ziarelive.ro/assets/js/advertisement\.js -# @@||yapo.cl/js/viewad.js? (easylist.txt: 50667) -.yapo.cl/js/viewad\.js\? -# @@||varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel.js (easylist.txt: 50656) -.varno-zavarovanje.com/system/modules/cp_pagepeel/html/peel\.js -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.php (easylist.txt: 50652) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.php -# @@||tugaleaks.com^*/wp-super-popup-pro/sppro.js (easylist.txt: 50651) -.tugaleaks.com/.*/wp-super-popup-pro/sppro\.js -# @@||trrsf.com^*/admanager.js (easylist.txt: 50650) -.trrsf.com/.*/admanager\.js -# @@||thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend.js (easylist.txt: 50646) -.thewineplace.es/wp-content/plugins/m-wp-popup/js/wpp-popup-frontend\.js -# @@||submarino.com.br/openx/www/delivery/ (easylist.txt: 50642) -.submarino.com.br/openx/www/delivery/ -# @@||style.seznam.cz/ad/im.js (easylist.txt: 50641) -.style.seznam.cz/ad/im\.js -# @@||start.no/includes/js/adCode.js (easylist.txt: 50638) -.start.no/includes/js/adCode\.js -# @@||soov.ee/js/newad.js (easylist.txt: 50635) -.soov.ee/js/newad\.js -# @@||sigmalive.com/assets/js/jquery.openxtag.js (easylist.txt: 50625) -.sigmalive.com/assets/js/jquery\.openxtag\.js -# @@||s-nk.pl/img/ads/icons_pack (easylist.txt: 50619) -.s-nk.pl/img/ads/icons_pack -# @@||run.admost.com/adx/js/admost.js? (easylist.txt: 50618) -.run.admost.com/adx/js/admost\.js\? -# @@||run.admost.com/adx/get.ashx?z=*&accptck=true&nojs=1 (easylist.txt: 50617) -.run.admost.com/adx/get\.ashx\?z=.*&accptck=true&nojs=1 -# @@||rtl.lu/ipljs/adtech_async.js (easylist.txt: 50616) -.rtl.lu/ipljs/adtech_async\.js -# @@||rocking.gr/js/jquery.dfp.min.js (easylist.txt: 50615) -.rocking.gr/js/jquery\.dfp\.min\.js -# @@||ring.bg/adserver/adall.php?*&video_on_page=1 (easylist.txt: 50614) -.ring.bg/adserver/adall\.php\?.*&video_on_page=1 -# @@||quebarato.com.br/css/static/ad_search.css (easylist.txt: 50610) -.quebarato.com.br/css/static/ad_search\.css -# @@||quebarato.com.br/css/static/ad_detail.css (easylist.txt: 50609) -.quebarato.com.br/css/static/ad_detail\.css -# @@||ptchan.net/imagens/banner.php (easylist.txt: 50607) -.ptchan.net/imagens/banner\.php -# @@||psoe.es/Areas/Affiliation/ (easylist.txt: 50606) -.psoe.es/Areas/Affiliation/ -# @@||peoplegreece.com/assets/js/adtech_res.js (easylist.txt: 50599) -.peoplegreece.com/assets/js/adtech_res\.js -# @@||openx.zomoto.nl/live/www/delivery/spcjs.php?id= (easylist.txt: 50596) -.openx.zomoto.nl/live/www/delivery/spcjs\.php\?id= -# @@||openx.zomoto.nl/live/www/delivery/fl.js (easylist.txt: 50595) -.openx.zomoto.nl/live/www/delivery/fl\.js -# @@||openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null.jpg (easylist.txt: 50594) -.openimage.interpark.com/_nip_ui/category_shopping/shopping_morningcoffee/leftbanner/null\.jpg -# @@||nordjyske.dk/scripts/ads/StoryAds.js (easylist.txt: 50588) -.nordjyske.dk/scripts/ads/StoryAds\.js -# @@||mynet.com/nocache/adocean.js? (easylist.txt: 50585) -.mynet.com/nocache/adocean\.js\? -# @@||mynet.com.tr/nocache/adocean.js? (easylist.txt: 50584) -.mynet.com.tr/nocache/adocean\.js\? -# @@||minuripsmed.ee/templates/*/images/advert.gif (easylist.txt: 50577) -.minuripsmed.ee/templates/.*/images/advert\.gif -# @@||lrytas.lt/ads/video_feed.js (easylist.txt: 50574) -.lrytas.lt/ads/video_feed\.js -# @@||kompas.com^*/supersized.*.min_ads.js? (easylist.txt: 50568) -.kompas.com/.*/supersized\..*\.min_ads\.js\? -# @@||kanalfrederikshavn.dk^*/jquery.openx.js? (easylist.txt: 50567) -.kanalfrederikshavn.dk/.*/jquery\.openx\.js\? -# @@||jesper.nu/javascript/libs/videoads.js (easylist.txt: 50565) -.jesper.nu/javascript/libs/videoads\.js -# @@||izigo.pt^*/adsearch? (easylist.txt: 50564) -.izigo.pt/.*/adsearch\? -# @@||izigo.pt/AdPictures/ (easylist.txt: 50563) -.izigo.pt/AdPictures/ -# @@||islafenice.net^*/adsense.js (easylist.txt: 50562) -.islafenice.net/.*/adsense\.js -# @@||hry.cz/ad/adcode.js (easylist.txt: 50555) -.hry.cz/ad/adcode\.js -# @@||fotosioon.com/wp-content/*/images/advert.gif (easylist.txt: 50545) -.fotosioon.com/wp-content/.*/images/advert\.gif -# @@||fotolog.com/styles/flags/ad.gif (easylist.txt: 50544) -.fotolog.com/styles/flags/ad\.gif -# @@||fotojorgen.no/images/*/webadverts/ (easylist.txt: 50543) -.fotojorgen.no/images/.*/webadverts/ -# @@||filmon.com/ad/affiliateimages/banner-250x350.png (easylist.txt: 50540) -.filmon.com/ad/affiliateimages/banner-250x350\.png -# @@||felcia.co.uk/js/ads_common.js (easylist.txt: 50539) -.felcia.co.uk/js/ads_common\.js -# @@||felcia.co.uk/css/advert-view.css (easylist.txt: 50538) -.felcia.co.uk/css/advert-view\.css -# @@||felcia.co.uk/css/ads-common.css (easylist.txt: 50537) -.felcia.co.uk/css/ads-common\.css -# @@||ettevotja.ee/templates/*/images/advert.gif (easylist.txt: 50533) -.ettevotja.ee/templates/.*/images/advert\.gif -# @@||epaper.andhrajyothy.com/js/newads.js (easylist.txt: 50532) -.epaper.andhrajyothy.com/js/newads\.js -# @@||di.se^*/advertisement.js (easylist.txt: 50518) -.di.se/.*/advertisement\.js -# @@||di.se^$generichide (easylist.txt: 50517) -.di.se -# @@||custojusto.pt/user/myads/ (easylist.txt: 50516) -.custojusto.pt/user/myads/ -# @@||bomnegocio.com/css/ad_insert.css (easylist.txt: 50512) -.bomnegocio.com/css/ad_insert\.css -# @@||bolha.com/css/ad.css? (easylist.txt: 50511) -.bolha.com/css/ad\.css\? -# @@||bnrs.ilm.ee/www/delivery/fl.js (easylist.txt: 50510) -.bnrs.ilm.ee/www/delivery/fl\.js -# @@||bmwoglasnik.si/images/ads/ (easylist.txt: 50508) -.bmwoglasnik.si/images/ads/ -# @@||blocket.se^*/newad.js (easylist.txt: 50507) -.blocket.se/.*/newad\.js -# @@||biancolavoro.euspert.com/js/ad.js (easylist.txt: 50506) -.biancolavoro.euspert.com/js/ad\.js -# @@||bancainternet.com.ar/eBanking/images/*-PUBLICIDAD. (easylist.txt: 50501) -.bancainternet.com.ar/eBanking/images/.*-PUBLICIDAD\. -# @@||autoscout24.*/all.js.aspx?m=css&*=/stylesheets/adbanner.css (easylist.txt: 50499) -.autoscout24.*./(.*/)?all\.js\.aspx\?m=css&.*=/stylesheets/adbanner\.css -# @@||advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page.gif (easylist.txt: 50481) -.advertising.sun-sentinel.com/el-sentinel/elsentinel-landing-page\.gif -# @@||ads.nicovideo.jp/assets/js/ads-*.js (easylist.txt: 50461) -.ads.nicovideo.jp/assets/js/ads-.*\.js -# @@||ad.e-kolay.net/mnetorfad.js (easylist.txt: 50446) -.ad.e-kolay.net/mnetorfad\.js -# @@||ad.e-kolay.net/Medyanet.js (easylist.txt: 50445) -.ad.e-kolay.net/Medyanet\.js -# @@||ad.e-kolay.net/jquery-*-Medyanet.min.js (easylist.txt: 50444) -.ad.e-kolay.net/jquery-.*-Medyanet\.min\.js -# @@||ad.e-kolay.net/ad.js (easylist.txt: 50443) -.ad.e-kolay.net/ad\.js -# @@||zman.com/adv/ova/overlay.xml (easylist.txt: 50437) -.zman.com/adv/ova/overlay\.xml -# @@||ytconv.net/*google_ads.js (easylist.txt: 50433) -.ytconv.net/.*google_ads\.js -# @@||youwatch.org^$elemhide (easylist.txt: 50431) -.youwatch.org -# @@||youwatch.org/adframe.js (easylist.txt: 50430) -.youwatch.org/adframe\.js -# @@||yellowbridge.com^*/advertisement.js (easylist.txt: 50428) -.yellowbridge.com/.*/advertisement\.js -# @@||yellowbridge.com^$elemhide (easylist.txt: 50427) -.yellowbridge.com -# @@||yellowbridge.com/ad/show_ads.js (easylist.txt: 50426) -.yellowbridge.com/ad/show_ads\.js -# @@||yasni.*/adframe.js (easylist.txt: 50425) -.yasni.*./(.*/)?adframe\.js -# @@||xup.in^$elemhide (easylist.txt: 50424) -.xup.in -# @@||xooimg.com/magesy/js-cdn/adblock.js (easylist.txt: 50423) -.xooimg.com/magesy/js-cdn/adblock\.js -# @@||xlocker.net^$elemhide (easylist.txt: 50422) -.xlocker.net -# @@||www.vg.no^$elemhide (easylist.txt: 50421) -.www.vg.no -# @@||wwe2day.tv^$elemhide (easylist.txt: 50420) -.wwe2day.tv -# @@||wrestlingtalk.org^$elemhide (easylist.txt: 50418) -.wrestlingtalk.org -# @@||wowhq.eu^$elemhide (easylist.txt: 50417) -.wowhq.eu -# @@||wowebook.org^$elemhide (easylist.txt: 50416) -.wowebook.org -# @@||worldofapk.tk^$elemhide (easylist.txt: 50415) -.worldofapk.tk -# @@||world-of-hentai.to/advertisement.js (easylist.txt: 50414) -.world-of-hentai.to/advertisement\.js -# @@||windows7themes.net/wp-content/advert.js (easylist.txt: 50412) -.windows7themes.net/wp-content/advert\.js -# @@||win-free-bitcoins.eu^$elemhide (easylist.txt: 50411) -.win-free-bitcoins.eu -# @@||whatsapprb.blogspot.com^$elemhide (easylist.txt: 50409) -.whatsapprb.blogspot.com -# @@||weshare.me^$elemhide (easylist.txt: 50408) -.weshare.me -# @@||weshare.me/fuckadblock.js (easylist.txt: 50407) -.weshare.me/fuckadblock\.js -# @@||welovebtc.com/show_ads.js (easylist.txt: 50406) -.welovebtc.com/show_ads\.js -# @@||webtv.rs/media/blic/advertisement.jpg (easylist.txt: 50405) -.webtv.rs/media/blic/advertisement\.jpg -# @@||webtoolhub.com^$elemhide (easylist.txt: 50404) -.webtoolhub.com -# @@||webfirstrow.eu^*/advertisement.js (easylist.txt: 50403) -.webfirstrow.eu/.*/advertisement\.js -# @@||webfirstrow.eu/advertisement.js (easylist.txt: 50402) -.webfirstrow.eu/advertisement\.js -# @@||weather.com^*/advertisement.js (easylist.txt: 50401) -.weather.com/.*/advertisement\.js -# @@||watchcartoononline.com/advertisement.js (easylist.txt: 50400) -.watchcartoononline.com/advertisement\.js -# @@||wallpapersimages.co.uk^$elemhide (easylist.txt: 50398) -.wallpapersimages.co.uk -# @@||wallpapermania.eu/assets/js/advertisement.js (easylist.txt: 50397) -.wallpapermania.eu/assets/js/advertisement\.js -# @@||vivotvhd.com^$elemhide (easylist.txt: 50395) -.vivotvhd.com -# @@||virtualpets.com^*/ads.js (easylist.txt: 50394) -.virtualpets.com/.*/ads\.js -# @@||vipleague.se/js/ads.js (easylist.txt: 50393) -.vipleague.se/js/ads\.js -# @@||vipbox.tv/js/ads.js (easylist.txt: 50392) -.vipbox.tv/js/ads\.js -# @@||vietvbb.vn/up/clientscript/google_ads.js (easylist.txt: 50390) -.vietvbb.vn/up/clientscript/google_ads\.js -# @@||videomega.tv^$elemhide (easylist.txt: 50383) -.videomega.tv -# @@||videomega.tv/pub/interstitial.css (easylist.txt: 50382) -.videomega.tv/pub/interstitial\.css -# @@||videocelebrities.eu^*/adframe/ (easylist.txt: 50381) -.videocelebrities.eu/.*/adframe/ -# @@||vgunetwork.com/public/js/*/advertisement.js (easylist.txt: 50379) -.vgunetwork.com/public/js/.*/advertisement\.js -# @@||verticalscope.com/js/advert.js (easylist.txt: 50378) -.verticalscope.com/js/advert\.js -# @@||vercanalestv.com^$elemhide (easylist.txt: 50377) -.vercanalestv.com -# @@||ver-flv.com^$elemhide (easylist.txt: 50376) -.ver-flv.com -# @@||vencko.net^$elemhide (easylist.txt: 50374) -.vencko.net -# @@||velocity.com^$elemhide (easylist.txt: 50373) -.velocity.com -# @@||veedi.com^*/ADS.js (easylist.txt: 50372) -.veedi.com/.*/ADS\.js -# @@||usaupload.net/ads.js (easylist.txt: 50367) -.usaupload.net/ads\.js -# @@||url4u.org^$elemhide (easylist.txt: 50365) -.url4u.org -# @@||urduustaad.com^$elemhide (easylist.txt: 50363) -.urduustaad.com -# @@||urdupoint.com/js/advertisement.js (easylist.txt: 50361) -.urdupoint.com/js/advertisement\.js -# @@||uptobox.com^$elemhide (easylist.txt: 50359) -.uptobox.com -# @@||upshare.org/advertisement.js (easylist.txt: 50358) -.upshare.org/advertisement\.js -# @@||uploadlw.com^$elemhide (easylist.txt: 50357) -.uploadlw.com -# @@||uploadex.com^$elemhide (easylist.txt: 50355) -.uploadex.com -# @@||uploadex.com/fuckadblock.js (easylist.txt: 50354) -.uploadex.com/fuckadblock\.js -# @@||up-flow.org/advertisement.js (easylist.txt: 50353) -.up-flow.org/advertisement\.js -# @@||unlockpwd.com^$elemhide (easylist.txt: 50352) -.unlockpwd.com -# @@||ulto.ga^$elemhide (easylist.txt: 50351) -.ulto.ga -# @@||uktv.co.uk/static/js/ads.js (easylist.txt: 50350) -.uktv.co.uk/static/js/ads\.js -# @@||twitch.tv/ads/ads.js (easylist.txt: 50348) -.twitch.tv/ads/ads\.js -# @@||tvrex.altervista.org^$elemhide (easylist.txt: 50347) -.tvrex.altervista.org -# @@||tvpelis.net^*/advertisement2.js (easylist.txt: 50346) -.tvpelis.net/.*/advertisement2\.js -# @@||tvenvivocrackmastersamm.blogspot.com.ar^$elemhide (easylist.txt: 50344) -.tvenvivocrackmastersamm.blogspot.com.ar -# @@||tv3.co.nz/Portals/*/advertisement.js (easylist.txt: 50342) -.tv3.co.nz/Portals/.*/advertisement\.js -# @@||tv-porinternet.com.mx^$elemhide (easylist.txt: 50341) -.tv-porinternet.com.mx -# @@||tv-msn.com^$elemhide (easylist.txt: 50340) -.tv-msn.com -# @@||tutvgratis.tv^*/fuckadblock.js (easylist.txt: 50339) -.tutvgratis.tv/.*/fuckadblock\.js -# @@||tusmangas.net^$elemhide (easylist.txt: 50338) -.tusmangas.net -# @@||turktorrent.cc^$elemhide (easylist.txt: 50337) -.turktorrent.cc -# @@||turkdown.com^$elemhide (easylist.txt: 50335) -.turkdown.com -# @@||trizone91.com^$elemhide (easylist.txt: 50331) -.trizone91.com -# @@||trackitonline.ru^$elemhide (easylist.txt: 50327) -.trackitonline.ru -# @@||tpmrpg.net/adframe.js (easylist.txt: 50326) -.tpmrpg.net/adframe\.js -# @@||tlc.com^$elemhide (easylist.txt: 50323) -.tlc.com -# @@||tklist.net^$elemhide (easylist.txt: 50322) -.tklist.net -# @@||theweatherspace.com^*/advertisement.js (easylist.txt: 50318) -.theweatherspace.com/.*/advertisement\.js -# @@||thewatchseries.biz^$elemhide (easylist.txt: 50317) -.thewatchseries.biz -# @@||thevideos.tv/js/ads.js (easylist.txt: 50316) -.thevideos.tv/js/ads\.js -# @@||thesominaltv.com/advertisement.js (easylist.txt: 50315) -.thesominaltv.com/advertisement\.js -# @@||thesimsresource.com/downloads/download/itemId/$elemhide (easylist.txt: 50313) -.thesimsresource.com/downloads/download/itemId/ -# @@||thememypc.com^$elemhide (easylist.txt: 50311) -.thememypc.com -# @@||thelordofstreaming.it^$elemhide (easylist.txt: 50309) -.thelordofstreaming.it -# @@||television-envivo.com^$elemhide (easylist.txt: 50306) -.television-envivo.com -# @@||televall.com.mx/fuckadblock.js (easylist.txt: 50305) -.televall.com.mx/fuckadblock\.js -# @@||teknogods.com/advert.js (easylist.txt: 50303) -.teknogods.com/advert\.js -# @@||teenidols4you.com^$elemhide (easylist.txt: 50301) -.teenidols4you.com -# @@||techweekeurope.co.uk^*/advertising.js (easylist.txt: 50300) -.techweekeurope.co.uk/.*/advertising\.js -# @@||techingspot.blogspot.in^$elemhide (easylist.txt: 50299) -.techingspot.blogspot.in -# @@||team-vitality.fr/assets/images/advert.png (easylist.txt: 50298) -.team-vitality.fr/assets/images/advert\.png -# @@||tamercome.blogspot.co.uk^$elemhide (easylist.txt: 50297) -.tamercome.blogspot.co.uk -# @@||talksport.com/sites/default/files/ben/advert.js (easylist.txt: 50296) -.talksport.com/sites/default/files/ben/advert\.js -# @@||superplatyna.com^$elemhide (easylist.txt: 50295) -.superplatyna.com -# @@||supergames.com^*/ads.js (easylist.txt: 50294) -.supergames.com/.*/ads\.js -# @@||superfilm.pl/advertisement.js (easylist.txt: 50292) -.superfilm.pl/advertisement\.js -# @@||superanimes.com^$elemhide (easylist.txt: 50291) -.superanimes.com -# @@||streamlive.to/js/ads.js (easylist.txt: 50289) -.streamlive.to/js/ads\.js -# @@||streaming-hub.com^$elemhide (easylist.txt: 50288) -.streaming-hub.com -# @@||streamin.to/adblock/advert.js (easylist.txt: 50287) -.streamin.to/adblock/advert\.js -# @@||stream4free.eu^$elemhide (easylist.txt: 50285) -.stream4free.eu -# @@||stream2watch.me^$elemhide (easylist.txt: 50284) -.stream2watch.me -# @@||stickgames.com^*/ads.js (easylist.txt: 50283) -.stickgames.com/.*/ads\.js -# @@||startribune.com^$generichide (easylist.txt: 50280) -.startribune.com -# @@||stackexchange.com/affiliate/ (easylist.txt: 50279) -.stackexchange.com/affiliate/ -# @@||springstreetads.com/scripts/advertising.js (easylist.txt: 50277) -.springstreetads.com/scripts/advertising\.js -# @@||sounddrain.net^*/advertisement.js (easylist.txt: 50272) -.sounddrain.net/.*/advertisement\.js -# @@||sominaltvfilms.com^$elemhide (easylist.txt: 50270) -.sominaltvfilms.com -# @@||software4all-now.blogspot.co.uk^$elemhide (easylist.txt: 50268) -.software4all-now.blogspot.co.uk -# @@||slader.com^$elemhide (easylist.txt: 50261) -.slader.com -# @@||skidrowcrack.com^$elemhide (easylist.txt: 50260) -.skidrowcrack.com -# @@||skidrowcrack.com/advertisement.js (easylist.txt: 50259) -.skidrowcrack.com/advertisement\.js -# @@||sizedrive.com^$elemhide (easylist.txt: 50258) -.sizedrive.com -# @@||sizedrive.com/js/fuckadblock.js (easylist.txt: 50257) -.sizedrive.com/js/fuckadblock\.js -# @@||sitepoint.com^*/ad-server.js (easylist.txt: 50255) -.sitepoint.com/.*/ad-server\.js -# @@||siamfishing.com^*/advert.js (easylist.txt: 50254) -.siamfishing.com/.*/advert\.js -# @@||showsport-tv.com^$elemhide (easylist.txt: 50253) -.showsport-tv.com -# @@||showsport-tv.com/adv*.js (easylist.txt: 50252) -.showsport-tv.com/adv.*\.js -# @@||shimory.com/js/show_ads.js (easylist.txt: 50251) -.shimory.com/js/show_ads\.js -# @@||sheepskinproxy.com/js/advertisement.js (easylist.txt: 50250) -.sheepskinproxy.com/js/advertisement\.js -# @@||seriesbang.net^$elemhide (easylist.txt: 50248) -.seriesbang.net -# @@||senmanga.com/advertisement.js (easylist.txt: 50246) -.senmanga.com/advertisement\.js -# @@||secureupload.eu^$elemhide (easylist.txt: 50243) -.secureupload.eu -# @@||securenetsystems.net^*/ads.js (easylist.txt: 50242) -.securenetsystems.net/.*/ads\.js -# @@||scriptnulled.eu^$elemhide (easylist.txt: 50240) -.scriptnulled.eu -# @@||scoutingbook.com/js/adsense.js (easylist.txt: 50239) -.scoutingbook.com/js/adsense\.js -# @@||sciencechannel.com^$elemhide (easylist.txt: 50238) -.sciencechannel.com -# @@||scan-manga.com/ads.html (easylist.txt: 50236) -.scan-manga.com/ads\.html -# @@||sawlive.tv/adscript.js (easylist.txt: 50234) -.sawlive.tv/adscript\.js -# @@||savevideo.me/images/banner_ads.gif (easylist.txt: 50233) -.savevideo.me/images/banner_ads\.gif -# @@||saikoanimes.net^*/advertisement.js (easylist.txt: 50227) -.saikoanimes.net/.*/advertisement\.js -# @@||runners.es^*/advertisement.js (easylist.txt: 50224) -.runners.es/.*/advertisement\.js -# @@||rtube.de^$elemhide (easylist.txt: 50222) -.rtube.de -# @@||rojadirecta.me^$elemhide (easylist.txt: 50219) -.rojadirecta.me -# @@||rincondelvago.com^*_adsense.js (easylist.txt: 50218) -.rincondelvago.com/.*_adsense\.js -# @@||revclouds.com^$generichide (easylist.txt: 50216) -.revclouds.com -# @@||remo-xp.com^$elemhide (easylist.txt: 50212) -.remo-xp.com -# @@||redtube.com*/adframe.js (easylist.txt: 50209) -.redtube.com*./(.*/)?adframe\.js -# @@||realidadscans.org^$elemhide (easylist.txt: 50208) -.realidadscans.org -# @@||ratebeer.com/javascript/advertisement.js (easylist.txt: 50206) -.ratebeer.com/javascript/advertisement\.js -# @@||radioio.com^*/adframe.js (easylist.txt: 50202) -.radioio.com/.*/adframe\.js -# @@||radioaficion.com^$elemhide (easylist.txt: 50201) -.radioaficion.com -# @@||radar-toulouse.fr/advertisement.js (easylist.txt: 50199) -.radar-toulouse.fr/advertisement\.js -# @@||racedepartment.com^*/advertisement.js (easylist.txt: 50197) -.racedepartment.com/.*/advertisement\.js -# @@||qrrro.com^*/adhandler/ (easylist.txt: 50196) -.qrrro.com/.*/adhandler/ -# @@||pxstream.tv^$elemhide (easylist.txt: 50194) -.pxstream.tv -# @@||puromarketing.com^$elemhide (easylist.txt: 50193) -.puromarketing.com -# @@||puromarketing.com/js/advertisement.js (easylist.txt: 50192) -.puromarketing.com/js/advertisement\.js -# @@||pubdirecte.com^*/advertisement.js (easylist.txt: 50191) -.pubdirecte.com/.*/advertisement\.js -# @@||primewire.ag/js/advertisement.js (easylist.txt: 50185) -.primewire.ag/js/advertisement\.js -# @@||primeshare.tv^*/advertisement.js (easylist.txt: 50184) -.primeshare.tv/.*/advertisement\.js -# @@||primeshare.tv^*/adframe.js (easylist.txt: 50183) -.primeshare.tv/.*/adframe\.js -# @@||premiumleecher.com^$elemhide (easylist.txt: 50182) -.premiumleecher.com -# @@||premiumleecher.com/inc/adsense.js (easylist.txt: 50181) -.premiumleecher.com/inc/adsense\.js -# @@||premiumleecher.com/inc/adframe.js (easylist.txt: 50180) -.premiumleecher.com/inc/adframe\.js -# @@||premiumgeneratorlink.com^$elemhide (easylist.txt: 50179) -.premiumgeneratorlink.com -# @@||premium4.us^$elemhide (easylist.txt: 50178) -.premium4.us -# @@||prad.de/en/$elemhide (easylist.txt: 50177) -.prad.de/en/ -# @@||portalzuca.com^$elemhide (easylist.txt: 50175) -.portalzuca.com -# @@||pocosmegashdd.com^$elemhide (easylist.txt: 50171) -.pocosmegashdd.com -# @@||playindiafilms.com/advertisement.js (easylist.txt: 50170) -.playindiafilms.com/advertisement\.js -# @@||playhd.eu/advertisement.js (easylist.txt: 50169) -.playhd.eu/advertisement\.js -# @@||player.utv.ie/assets/js/adframe.js (easylist.txt: 50168) -.player.utv.ie/assets/js/adframe\.js -# @@||play-old-pc-games.com^$elemhide (easylist.txt: 50166) -.play-old-pc-games.com -# @@||pirlotv.tv^$elemhide (easylist.txt: 50165) -.pirlotv.tv -# @@||pipocas.tv/js/advertisement.js (easylist.txt: 50164) -.pipocas.tv/js/advertisement\.js -# @@||picu.pk^$elemhide (easylist.txt: 50163) -.picu.pk -# @@||picload.org^$elemhide (easylist.txt: 50162) -.picload.org -# @@||photofacefun.com^*/adblock.js (easylist.txt: 50161) -.photofacefun.com/.*/adblock\.js -# @@||phoronix.com/advertisement.js (easylist.txt: 50160) -.phoronix.com/advertisement\.js -# @@||pes-patch.com^$elemhide (easylist.txt: 50159) -.pes-patch.com -# @@||perkuinternete.lt/modules/mod_jpayday/js/advertisement.js (easylist.txt: 50158) -.perkuinternete.lt/modules/mod_jpayday/js/advertisement\.js -# @@||peliculas.online-latino.com^$elemhide (easylist.txt: 50157) -.peliculas.online-latino.com -# @@||pcgames-download.net^$elemhide (easylist.txt: 50155) -.pcgames-download.net -# @@||paste.org/style/adframe.js (easylist.txt: 50154) -.paste.org/style/adframe\.js -# @@||pandora.com/static/ads/ (easylist.txt: 50150) -.pandora.com/static/ads/ -# @@||overclock3d.net/js/advert.js (easylist.txt: 50135) -.overclock3d.net/js/advert\.js -# @@||osdarlings.com^$elemhide (easylist.txt: 50134) -.osdarlings.com -# @@||oploverz.net^$elemhide (easylist.txt: 50131) -.oploverz.net -# @@||openspeedtest.com/advertisement.js (easylist.txt: 50126) -.openspeedtest.com/advertisement\.js -# @@||openrunner.com/js/advertisement.js (easylist.txt: 50125) -.openrunner.com/js/advertisement\.js -# @@||openload.io^$elemhide (easylist.txt: 50121) -.openload.io -# @@||openload.co^$elemhide (easylist.txt: 50118) -.openload.co -# @@||onrpg.com/advertisement.js (easylist.txt: 50116) -.onrpg.com/advertisement\.js -# @@||onlinevideoconverter.com^*ad*.js (easylist.txt: 50115) -.onlinevideoconverter.com/.*ad.*\.js -# @@||onlinemoviewatchs.com^$elemhide (easylist.txt: 50114) -.onlinemoviewatchs.com -# @@||onlinemoviewatchfree.com^$elemhide (easylist.txt: 50113) -.onlinemoviewatchfree.com -# @@||onlinemoviesfreee.com^$elemhide (easylist.txt: 50112) -.onlinemoviesfreee.com -# @@||oneplay.tv^$elemhide (easylist.txt: 50111) -.oneplay.tv -# @@||oneplay.tv/embed/js/fuckadblock.js (easylist.txt: 50110) -.oneplay.tv/embed/js/fuckadblock\.js -# @@||omaredomex.org^$elemhide (easylist.txt: 50109) -.omaredomex.org -# @@||nzbstars.com*/advertisement.js (easylist.txt: 50106) -.nzbstars.com*./(.*/)?advertisement\.js -# @@||noticiasautomotivas.com.br^$elemhide (easylist.txt: 50100) -.noticiasautomotivas.com.br -# @@||nosteam.ro^*/advertisement.js (easylist.txt: 50099) -.nosteam.ro/.*/advertisement\.js -# @@||nosteam.ro/advertisement.js (easylist.txt: 50098) -.nosteam.ro/advertisement\.js -# @@||nornar.com^$elemhide (easylist.txt: 50097) -.nornar.com -# @@||nonags.com^$elemhide (easylist.txt: 50095) -.nonags.com -# @@||nicoblog-games.com^$elemhide (easylist.txt: 50094) -.nicoblog-games.com -# @@||nextthreedays.com/Include/Javascript/AdFunctions.js (easylist.txt: 50092) -.nextthreedays.com/Include/Javascript/AdFunctions\.js -# @@||newxxxvideosupdate.blogspot.com.ar^$elemhide (easylist.txt: 50090) -.newxxxvideosupdate.blogspot.com.ar -# @@||newmusicforpeople.org^$elemhide (easylist.txt: 50089) -.newmusicforpeople.org -# @@||nettavisen.no^*/advertisement.js (easylist.txt: 50088) -.nettavisen.no/.*/advertisement\.js -# @@||needrom.com/advert1.js (easylist.txt: 50087) -.needrom.com/advert1\.js -# @@||ndtv.com/static/js/advertisement.js (easylist.txt: 50086) -.ndtv.com/static/js/advertisement\.js -# @@||nbahd.com^$elemhide (easylist.txt: 50085) -.nbahd.com -# @@||narkive.com^$elemhide (easylist.txt: 50084) -.narkive.com -# @@||mypapercraft.net^$elemhide (easylist.txt: 50082) -.mypapercraft.net -# @@||myksn.net^$elemhide (easylist.txt: 50081) -.myksn.net -# @@||myiplayer.com^$elemhide (easylist.txt: 50080) -.myiplayer.com -# @@||myiplayer.com/ad*.js (easylist.txt: 50079) -.myiplayer.com/ad.*\.js -# @@||myfreeforum.org/advertisement.js (easylist.txt: 50078) -.myfreeforum.org/advertisement\.js -# @@||myfineforum.org/advertisement.js (easylist.txt: 50077) -.myfineforum.org/advertisement\.js -# @@||mwfiles.net/advertisement.js (easylist.txt: 50075) -.mwfiles.net/advertisement\.js -# @@||musicacelestial.net^$elemhide (easylist.txt: 50074) -.musicacelestial.net -# @@||mundoprogramas.net^$elemhide (easylist.txt: 50073) -.mundoprogramas.net -# @@||multiup.org^$elemhide (easylist.txt: 50072) -.multiup.org -# @@||mugiwaranofansub.blogspot.com.ar^$elemhide (easylist.txt: 50070) -.mugiwaranofansub.blogspot.com.ar -# @@||mrtzcmp3.net/advertisement.js (easylist.txt: 50069) -.mrtzcmp3.net/advertisement\.js -# @@||mrjuegosdroid.co.vu^$elemhide (easylist.txt: 50068) -.mrjuegosdroid.co.vu -# @@||mpc-g.com^$elemhide (easylist.txt: 50067) -.mpc-g.com -# @@||mp3skull.la^$elemhide (easylist.txt: 50066) -.mp3skull.la -# @@||mp3clan.net^$elemhide (easylist.txt: 50065) -.mp3clan.net -# @@||mp3clan.com^*/advertisement.js (easylist.txt: 50064) -.mp3clan.com/.*/advertisement\.js -# @@||mp3clan.com^$elemhide (easylist.txt: 50063) -.mp3clan.com -# @@||mp3clan.audio^$elemhide (easylist.txt: 50062) -.mp3clan.audio -# @@||movie1k.net^$elemhide (easylist.txt: 50061) -.movie1k.net -# @@||mousebreaker.com/scripts/ads.js (easylist.txt: 50060) -.mousebreaker.com/scripts/ads\.js -# @@||moon-faucet.tk/advertisement.js (easylist.txt: 50059) -.moon-faucet.tk/advertisement\.js -# @@||monova.unblocked.la^$generichide (easylist.txt: 50055) -.monova.unblocked.la -# @@||monova.unblocked.la/js/adframe.js (easylist.txt: 50054) -.monova.unblocked.la/js/adframe\.js -# @@||monova.org^$generichide (easylist.txt: 50053) -.monova.org -# @@||monova.org/js/adframe.js (easylist.txt: 50052) -.monova.org/js/adframe\.js -# @@||moneyinpjs.com/advertisement.js (easylist.txt: 50051) -.moneyinpjs.com/advertisement\.js -# @@||mobinozer.com^*/advert.js (easylist.txt: 50048) -.mobinozer.com/.*/advert\.js -# @@||mma-core.com/Scripts/adscript.js (easylist.txt: 50046) -.mma-core.com/Scripts/adscript\.js -# @@||mix.dj^*/advertisement.js (easylist.txt: 50045) -.mix.dj/.*/advertisement\.js -# @@||mix.dj/jscripts/jquery/mdj_adverts.js (easylist.txt: 50044) -.mix.dj/jscripts/jquery/mdj_adverts\.js -# @@||mintmovies.net^$elemhide (easylist.txt: 50043) -.mintmovies.net -# @@||miniclipcdn.com/js/advertisement.js (easylist.txt: 50042) -.miniclipcdn.com/js/advertisement\.js -# @@||minecraft-forum.net^$elemhide (easylist.txt: 50041) -.minecraft-forum.net -# @@||mimaletamusical.blogspot.com.ar^$elemhide (easylist.txt: 50040) -.mimaletamusical.blogspot.com.ar -# @@||mgcash.com/common/adblock.js (easylist.txt: 50033) -.mgcash.com/common/adblock\.js -# @@||megawypas.pl/includes/adframe.js (easylist.txt: 50032) -.megawypas.pl/includes/adframe\.js -# @@||megavideodownloader.com/adframe.js (easylist.txt: 50031) -.megavideodownloader.com/adframe\.js -# @@||megahd.me^*/advertisement.js (easylist.txt: 50030) -.megahd.me/.*/advertisement\.js -# @@||megadown.us/advertisement.js (easylist.txt: 50029) -.megadown.us/advertisement\.js -# @@||megacineonline.net^$elemhide (easylist.txt: 50028) -.megacineonline.net -# @@||megacineonline.biz^$elemhide (easylist.txt: 50027) -.megacineonline.biz -# @@||mediaplaybox.com^$elemhide (easylist.txt: 50025) -.mediaplaybox.com -# @@||maxedtech.com^$elemhide (easylist.txt: 50022) -.maxedtech.com -# @@||maxcheaters.com/public/js/jsLoader.js (easylist.txt: 50021) -.maxcheaters.com/public/js/jsLoader\.js -# @@||max-deportv.net^$elemhide (easylist.txt: 50020) -.max-deportv.net -# @@||max-deportv.info^$elemhide (easylist.txt: 50019) -.max-deportv.info -# @@||mastertoons.com^$elemhide (easylist.txt: 50018) -.mastertoons.com -# @@||masfuertequeelhierro.com^$elemhide (easylist.txt: 50017) -.masfuertequeelhierro.com -# @@||marketmilitia.org^$elemhide (easylist.txt: 50016) -.marketmilitia.org -# @@||marketmilitia.org/advertisement.js (easylist.txt: 50015) -.marketmilitia.org/advertisement\.js -# @@||mangakaka.com^*/advertiser.js (easylist.txt: 50014) -.mangakaka.com/.*/advertiser\.js -# @@||mangahost.com/ads.js? (easylist.txt: 50012) -.mangahost.com/ads\.js\? -# @@||mangahop.com^$generichide (easylist.txt: 50011) -.mangahop.com -# @@||mangabird.com^$elemhide (easylist.txt: 50009) -.mangabird.com -# @@||mangabird.com/sites/all/themes/zen/js/advertiser.js (easylist.txt: 50008) -.mangabird.com/sites/all/themes/zen/js/advertiser\.js -# @@||manga2u.co/css/advertiser.js (easylist.txt: 50007) -.manga2u.co/css/advertiser\.js -# @@||mamahd.com^$elemhide (easylist.txt: 50006) -.mamahd.com -# @@||mamahd.com/advertisement.js (easylist.txt: 50005) -.mamahd.com/advertisement\.js -# @@||makemehost.com/js/ads.js (easylist.txt: 50004) -.makemehost.com/js/ads\.js -# @@||majorleaguegaming.com^$elemhide (easylist.txt: 50002) -.majorleaguegaming.com -# @@||majorleaguegaming.com/live/assets/advertisement-*.js (easylist.txt: 50001) -.majorleaguegaming.com/live/assets/advertisement-.*\.js -# @@||magesy.be^$elemhide (easylist.txt: 50000) -.magesy.be -# @@||magesy.be/advertisement.js (easylist.txt: 49999) -.magesy.be/advertisement\.js -# @@||macobserver.com/js/adlink.js (easylist.txt: 49997) -.macobserver.com/js/adlink\.js -# @@||mac2sell.net^$elemhide (easylist.txt: 49995) -.mac2sell.net -# @@||maamp3.com^$elemhide (easylist.txt: 49994) -.maamp3.com -# @@||lumload.com^$elemhide (easylist.txt: 49993) -.lumload.com -# @@||lpmanager.com^*/fuckadblock.js (easylist.txt: 49992) -.lpmanager.com/.*/fuckadblock\.js -# @@||lpg-forum.pl/advertise.js (easylist.txt: 49991) -.lpg-forum.pl/advertise\.js -# @@||lordpyrak.net^$elemhide (easylist.txt: 49990) -.lordpyrak.net -# @@||lomeutec.com^$elemhide (easylist.txt: 49989) -.lomeutec.com -# @@||livrosdoexilado.org^$elemhide (easylist.txt: 49988) -.livrosdoexilado.org -# @@||litecoiner.net/advertisement.js (easylist.txt: 49987) -.litecoiner.net/advertisement\.js -# @@||litecoin-faucet.tk/advertisement.js (easylist.txt: 49986) -.litecoin-faucet.tk/advertisement\.js -# @@||liquidcompass.net/js/advertisement.js (easylist.txt: 49985) -.liquidcompass.net/js/advertisement\.js -# @@||linkshrink.net^$elemhide (easylist.txt: 49984) -.linkshrink.net -# @@||linkcrypt.ws^$elemhide (easylist.txt: 49983) -.linkcrypt.ws -# @@||link.tl^$elemhide (easylist.txt: 49981) -.link.tl -# @@||lilfile.com/js/advertise.js (easylist.txt: 49980) -.lilfile.com/js/advertise\.js -# @@||lilfile.com/js/advertise-2.js (easylist.txt: 49979) -.lilfile.com/js/advertise-2\.js -# @@||lifehacker.com.au^*/ads.js (easylist.txt: 49978) -.lifehacker.com.au/.*/ads\.js -# @@||liberallogic101.com/show_ads.js (easylist.txt: 49977) -.liberallogic101.com/show_ads\.js -# @@||legionprogramas.org^$elemhide (easylist.txt: 49976) -.legionprogramas.org -# @@||legionpeliculas.org^$elemhide (easylist.txt: 49975) -.legionpeliculas.org -# @@||leecher.us^$elemhide (easylist.txt: 49974) -.leecher.us -# @@||leaguesecretary.com/advertisement.js (easylist.txt: 49972) -.leaguesecretary.com/advertisement\.js -# @@||lasprovincias.es^*/adframe.js (easylist.txt: 49970) -.lasprovincias.es/.*/adframe\.js -# @@||lag10.net^$elemhide (easylist.txt: 49968) -.lag10.net -# @@||kwikupload.com^$elemhide (easylist.txt: 49967) -.kwikupload.com -# @@||kshowes.net^$elemhide (easylist.txt: 49966) -.kshowes.net -# @@||kotaku.com.au^*/ads.js (easylist.txt: 49965) -.kotaku.com.au/.*/ads\.js -# @@||koparos.info^$elemhide (easylist.txt: 49964) -.koparos.info -# @@||koparos.info/ads.php (easylist.txt: 49963) -.koparos.info/ads\.php -# @@||kdliker.com/js/advert.js (easylist.txt: 49959) -.kdliker.com/js/advert\.js -# @@||katsomo.fi^*/advertisement.js (easylist.txt: 49958) -.katsomo.fi/.*/advertisement\.js -# @@||katsomo.fi^*/advert.js (easylist.txt: 49957) -.katsomo.fi/.*/advert\.js -# @@||juzupload.com/advert*.js (easylist.txt: 49956) -.juzupload.com/advert.*\.js -# @@||junksport.com/watch/advertisement.js (easylist.txt: 49955) -.junksport.com/watch/advertisement\.js -# @@||juba-get.com^*/advertisement.js (easylist.txt: 49954) -.juba-get.com/.*/advertisement\.js -# @@||jkanime.net^*/advertisement2.js (easylist.txt: 49952) -.jkanime.net/.*/advertisement2\.js -# @@||jkanime.net/assets/js/advertisement.js (easylist.txt: 49951) -.jkanime.net/assets/js/advertisement\.js -# @@||jjcast.com^$elemhide (easylist.txt: 49950) -.jjcast.com -# @@||iriptv.com/player/ads.js (easylist.txt: 49948) -.iriptv.com/player/ads\.js -# @@||iptvlinks.com^$elemhide (easylist.txt: 49947) -.iptvlinks.com -# @@||investopedia.com^*/adverts.js (easylist.txt: 49945) -.investopedia.com/.*/adverts\.js -# @@||investopedia.com^*/advertisement.js (easylist.txt: 49944) -.investopedia.com/.*/advertisement\.js -# @@||investopedia.com^$elemhide (easylist.txt: 49943) -.investopedia.com -# @@||investopedia.com/public/js/ads.js (easylist.txt: 49942) -.investopedia.com/public/js/ads\.js -# @@||investigationdiscovery.com/shared/ad-enablers/ (easylist.txt: 49941) -.investigationdiscovery.com/shared/ad-enablers/ -# @@||install.wtf/advertisement/advertisement.js (easylist.txt: 49937) -.install.wtf/advertisement/advertisement\.js -# @@||incredibox.com^$elemhide (easylist.txt: 49930) -.incredibox.com -# @@||incredibox.com/js/fuckadblock.js (easylist.txt: 49929) -.incredibox.com/js/fuckadblock\.js -# @@||incredibox.com/js/advertisement.js (easylist.txt: 49928) -.incredibox.com/js/advertisement\.js -# @@||imgsure.com/ads/banner.jpg? (easylist.txt: 49925) -.imgsure.com/ads/banner\.jpg\? -# @@||imgleech.com/ads/banner.jpg? (easylist.txt: 49924) -.imgleech.com/ads/banner\.jpg\? -# @@||imgclick.net^$elemhide (easylist.txt: 49923) -.imgclick.net -# @@||images.bangtidy.net^$elemhide (easylist.txt: 49920) -.images.bangtidy.net -# @@||imageontime.com/ads/banner.jpg? (easylist.txt: 49919) -.imageontime.com/ads/banner\.jpg\? -# @@||ilive.to^$elemhide (easylist.txt: 49915) -.ilive.to -# @@||ilive.to/js/advert*.js (easylist.txt: 49914) -.ilive.to/js/advert.*\.js -# @@||iguide.to/js/advertisement.js (easylist.txt: 49913) -.iguide.to/js/advertisement\.js -# @@||idevnote.com^$elemhide (easylist.txt: 49909) -.idevnote.com -# @@||ibmmainframeforum.com^$elemhide (easylist.txt: 49908) -.ibmmainframeforum.com -# @@||i-stream.pl^*/advertisement.js (easylist.txt: 49906) -.i-stream.pl/.*/advertisement\.js -# @@||hubturkey.net^$elemhide (easylist.txt: 49904) -.hubturkey.net -# @@||hqq.tv^$elemhide (easylist.txt: 49903) -.hqq.tv -# @@||hqpdb.com/ads/banner.jpg? (easylist.txt: 49902) -.hqpdb.com/ads/banner\.jpg\? -# @@||hpfanficarchive.com^*/advertisement.js (easylist.txt: 49901) -.hpfanficarchive.com/.*/advertisement\.js -# @@||hostyd.com^$elemhide (easylist.txt: 49900) -.hostyd.com -# @@||hogarutil.com^$elemhide (easylist.txt: 49898) -.hogarutil.com -# @@||hitcric.info^$elemhide (easylist.txt: 49897) -.hitcric.info -# @@||hexawebhosting.com/adcode.js (easylist.txt: 49895) -.hexawebhosting.com/adcode\.js -# @@||hentai-foundry.com^*/ads.js (easylist.txt: 49894) -.hentai-foundry.com/.*/ads\.js -# @@||hdmovie14.net/js/ad*.js (easylist.txt: 49893) -.hdmovie14.net/js/ad.*\.js -# @@||hdfree.tv/live/ad.php (easylist.txt: 49892) -.hdfree.tv/live/ad\.php -# @@||haxlog.com^$elemhide (easylist.txt: 49890) -.haxlog.com -# @@||hallpass.com^*/ads.js (easylist.txt: 49886) -.hallpass.com/.*/ads\.js -# @@||hackintosh.zone^$elemhide (easylist.txt: 49885) -.hackintosh.zone -# @@||hackintosh.zone/adblock/advertisement.js (easylist.txt: 49884) -.hackintosh.zone/adblock/advertisement\.js -# @@||hackers.co.id/adframe/adframe.js (easylist.txt: 49883) -.hackers.co.id/adframe/adframe\.js -# @@||guygames.com^*/ads.js (easylist.txt: 49882) -.guygames.com/.*/ads\.js -# @@||goldsday.com^$elemhide (easylist.txt: 49875) -.goldsday.com -# @@||gofirstrow.eu^*/advertisement.js (easylist.txt: 49874) -.gofirstrow.eu/.*/advertisement\.js -# @@||gofirstrow.eu/advertisement.js (easylist.txt: 49873) -.gofirstrow.eu/advertisement\.js -# @@||go4up.com^$elemhide (easylist.txt: 49872) -.go4up.com -# @@||go4up.com/advertisement.js (easylist.txt: 49871) -.go4up.com/advertisement\.js -# @@||gizmodo.com.au^*/ads.js (easylist.txt: 49869) -.gizmodo.com.au/.*/ads\.js -# @@||girlsocool.com^*/ads.js (easylist.txt: 49868) -.girlsocool.com/.*/ads\.js -# @@||girlsaskguys.com^*/js/ads. (easylist.txt: 49867) -.girlsaskguys.com/.*/js/ads\. -# @@||girlgames.com^*/ads.js (easylist.txt: 49866) -.girlgames.com/.*/ads\.js -# @@||getdebrid.com^$elemhide (easylist.txt: 49865) -.getdebrid.com -# @@||getdebrid.com/advertisement.js (easylist.txt: 49864) -.getdebrid.com/advertisement\.js -# @@||get-free-bitcoin.eu^$elemhide (easylist.txt: 49863) -.get-free-bitcoin.eu -# @@||get-bitcoins-free.eu^$elemhide (easylist.txt: 49862) -.get-bitcoins-free.eu -# @@||gdataonline.com/exp/textad.js (easylist.txt: 49860) -.gdataonline.com/exp/textad\.js -# @@||gamespot.com/js/ads.js (easylist.txt: 49859) -.gamespot.com/js/ads\.js -# @@||gameslivetv.com/js/advertisement.js (easylist.txt: 49858) -.gameslivetv.com/js/advertisement\.js -# @@||gameshark.com/images/ads/ (easylist.txt: 49857) -.gameshark.com/images/ads/ -# @@||games.latimes.com/Scripts/advert.js (easylist.txt: 49855) -.games.latimes.com/Scripts/advert\.js -# @@||gamersconnexion.com/js/advert.js (easylist.txt: 49854) -.gamersconnexion.com/js/advert\.js -# @@||gamereactor.net/advertisement.js (easylist.txt: 49853) -.gamereactor.net/advertisement\.js -# @@||gameopc.blogspot.com.ar^$elemhide (easylist.txt: 49851) -.gameopc.blogspot.com.ar -# @@||gallerynova.se^*/advertisement.js (easylist.txt: 49846) -.gallerynova.se/.*/advertisement\.js -# @@||gallery.aethereality.net/advertisement.js (easylist.txt: 49845) -.gallery.aethereality.net/advertisement\.js -# @@||funniermoments.com^$elemhide (easylist.txt: 49829) -.funniermoments.com -# @@||funniermoments.com/adframe.js (easylist.txt: 49828) -.funniermoments.com/adframe\.js -# @@||freshdown.net^$elemhide (easylist.txt: 49827) -.freshdown.net -# @@||freesportsbet.com/js/advertisement.js (easylist.txt: 49825) -.freesportsbet.com/js/advertisement\.js -# @@||freeprosurfer.com^$elemhide (easylist.txt: 49824) -.freeprosurfer.com -# @@||freegamehosting.nl/js/advertisement.js (easylist.txt: 49823) -.freegamehosting.nl/js/advertisement\.js -# @@||freegamehosting.nl/advertisement.js (easylist.txt: 49822) -.freegamehosting.nl/advertisement\.js -# @@||freebitcoin.wmat.pl^*/advertisement.js (easylist.txt: 49821) -.freebitcoin.wmat.pl/.*/advertisement\.js -# @@||free.smsmarkaz.urdupoint.com^$elemhide (easylist.txt: 49818) -.free.smsmarkaz.urdupoint.com -# @@||free-bitcoin-faucet.eu^$elemhide (easylist.txt: 49817) -.free-bitcoin-faucet.eu -# @@||fm.tuba.pl/tuba3/_js/advert.js (easylist.txt: 49812) -.fm.tuba.pl/tuba3/_js/advert\.js -# @@||flvto.biz^$elemhide (easylist.txt: 49811) -.flvto.biz -# @@||firsttube.co^$elemhide (easylist.txt: 49808) -.firsttube.co -# @@||firstonetv.com/ads_advertisement.js (easylist.txt: 49805) -.firstonetv.com/ads_advertisement\.js -# @@||filmux.org^$elemhide (easylist.txt: 49803) -.filmux.org -# @@||filmux.net/ads/banner.jpg? (easylist.txt: 49802) -.filmux.net/ads/banner\.jpg\? -# @@||filmovisaprevodom.net/advertisement.js (easylist.txt: 49800) -.filmovisaprevodom.net/advertisement\.js -# @@||filerev.cc^$elemhide (easylist.txt: 49798) -.filerev.cc -# @@||fileice.net/js/advertisement.js (easylist.txt: 49797) -.fileice.net/js/advertisement\.js -# @@||filecom.net/advertisement.js (easylist.txt: 49796) -.filecom.net/advertisement\.js -# @@||ffiles.com/images/mmfiles_ (easylist.txt: 49793) -.ffiles.com/images/mmfiles_ -# @@||fcportables.com^$elemhide (easylist.txt: 49792) -.fcportables.com -# @@||fastcompany.com/js/advertisement.js (easylist.txt: 49790) -.fastcompany.com/js/advertisement\.js -# @@||fastcolabs.com/js/advertisement.js (easylist.txt: 49789) -.fastcolabs.com/js/advertisement\.js -# @@||fastcoexist.com/js/advertisement.js (easylist.txt: 49788) -.fastcoexist.com/js/advertisement\.js -# @@||fastcodesign.com/js/advertisement.js (easylist.txt: 49787) -.fastcodesign.com/js/advertisement\.js -# @@||fastcocreate.com/js/advertisement.js (easylist.txt: 49786) -.fastcocreate.com/js/advertisement\.js -# @@||ezcast.tv/static/scripts/adscript.js (easylist.txt: 49784) -.ezcast.tv/static/scripts/adscript\.js -# @@||exsite.pl^*/advert.js (easylist.txt: 49783) -.exsite.pl/.*/advert\.js -# @@||euroman.dk^$elemhide (easylist.txt: 49775) -.euroman.dk -# @@||eu5.org^*/advert.js (easylist.txt: 49774) -.eu5.org/.*/advert\.js -# @@||eskago.pl/html/js/advertisement.js (easylist.txt: 49773) -.eskago.pl/html/js/advertisement\.js -# @@||eskago.pl/html/js/adv.bbelements.js (easylist.txt: 49772) -.eskago.pl/html/js/adv\.bbelements\.js -# @@||eskago.pl/html/js/ads-banner.js (easylist.txt: 49771) -.eskago.pl/html/js/ads-banner\.js -# @@||eska.pl^*bbelements.js (easylist.txt: 49770) -.eska.pl/.*bbelements\.js -# @@||elrellano.com/ad/ad.js (easylist.txt: 49763) -.elrellano.com/ad/ad\.js -# @@||ebkimg.com/banners/ (easylist.txt: 49758) -.ebkimg.com/banners/ -# @@||e24.no^$elemhide (easylist.txt: 49757) -.e24.no -# @@||dx-tv.com^$elemhide (easylist.txt: 49756) -.dx-tv.com -# @@||dvdfullfree.com^$elemhide (easylist.txt: 49755) -.dvdfullfree.com -# @@||dressuppink.com^*/ads.js (easylist.txt: 49751) -.dressuppink.com/.*/ads\.js -# @@||dressup.com^*/ads.js (easylist.txt: 49749) -.dressup.com/.*/ads\.js -# @@||dragoart.com^$elemhide (easylist.txt: 49748) -.dragoart.com -# @@||dontdrinkandroot.net/js/adframe.js (easylist.txt: 49741) -.dontdrinkandroot.net/js/adframe\.js -# @@||domain.com/ads.html (easylist.txt: 49740) -.domain.com/ads\.html -# @@||dogefaucet.com^*/advertisement.js (easylist.txt: 49738) -.dogefaucet.com/.*/advertisement\.js -# @@||doge-faucet.tk/advertisement.js (easylist.txt: 49736) -.doge-faucet.tk/advertisement\.js -# @@||docpaste.com^$elemhide (easylist.txt: 49735) -.docpaste.com -# @@||dksoftwares4u.blogspot.co.uk^$elemhide (easylist.txt: 49732) -.dksoftwares4u.blogspot.co.uk -# @@||dinozap.tv/adimages/ (easylist.txt: 49729) -.dinozap.tv/adimages/ -# @@||destinypublicevents.com/src/advertisement.js (easylist.txt: 49726) -.destinypublicevents.com/src/advertisement\.js -# @@||destinationamerica.com^$elemhide (easylist.txt: 49725) -.destinationamerica.com -# @@||desionlinetheater.com^$elemhide (easylist.txt: 49724) -.desionlinetheater.com -# @@||decomaniacos.es^*/advertisement.js (easylist.txt: 49720) -.decomaniacos.es/.*/advertisement\.js -# @@||debridx.com^$elemhide (easylist.txt: 49719) -.debridx.com -# @@||debridnet.com^$elemhide (easylist.txt: 49718) -.debridnet.com -# @@||debridit.com^$elemhide (easylist.txt: 49717) -.debridit.com -# @@||debrastagi.com^$elemhide (easylist.txt: 49716) -.debrastagi.com -# @@||dayt.se^$elemhide (easylist.txt: 49714) -.dayt.se -# @@||danydanielrt.com^$elemhide (easylist.txt: 49712) -.danydanielrt.com -# @@||cyberdevilz.net^$elemhide (easylist.txt: 49708) -.cyberdevilz.net -# @@||cricket-365.tv^$elemhide (easylist.txt: 49706) -.cricket-365.tv -# @@||corepacks.com^$elemhide (easylist.txt: 49697) -.corepacks.com -# @@||coolgames.com^*/ads.js (easylist.txt: 49695) -.coolgames.com/.*/ads\.js -# @@||cookinggames.com^*/ads.js (easylist.txt: 49694) -.cookinggames.com/.*/ads\.js -# @@||computerworld.com/www/js/ads/gpt_includes.js (easylist.txt: 49692) -.computerworld.com/www/js/ads/gpt_includes\.js -# @@||compartiendofull.org^$elemhide (easylist.txt: 49691) -.compartiendofull.org -# @@||coinurl.com/get.php?id=18045 (easylist.txt: 49689) -.coinurl.com/get\.php\?id=18045 -# @@||coinracket.com^$elemhide (easylist.txt: 49688) -.coinracket.com -# @@||coincheckin.com/js/adframe.js (easylist.txt: 49687) -.coincheckin.com/js/adframe\.js -# @@||codingcrazy.com/demo/adframe.js (easylist.txt: 49686) -.codingcrazy.com/demo/adframe\.js -# @@||clubedohardware.com.br^$elemhide (easylist.txt: 49685) -.clubedohardware.com.br -# @@||cloudvidz.net^$elemhide (easylist.txt: 49684) -.cloudvidz.net -# @@||cleodesktop.com^$elemhide (easylist.txt: 49678) -.cleodesktop.com -# @@||cityam.com^$generichide (easylist.txt: 49677) -.cityam.com -# @@||cinestrenostv.tv/reproductores/adblock.js (easylist.txt: 49676) -.cinestrenostv.tv/reproductores/adblock\.js -# @@||cinema2satu.net^$elemhide (easylist.txt: 49675) -.cinema2satu.net -# @@||chrissmoove.com^$elemhide (easylist.txt: 49672) -.chrissmoove.com -# @@||celogeek.com/stylesheets/blogads.css (easylist.txt: 49660) -.celogeek.com/stylesheets/blogads\.css -# @@||cdn.eventosppv.me^$elemhide (easylist.txt: 49657) -.cdn.eventosppv.me -# @@||cdn-seekingalpha.com^*/ads.js (easylist.txt: 49655) -.cdn-seekingalpha.com/.*/ads\.js -# @@||cbs.com^$elemhide (easylist.txt: 49653) -.cbs.com -# @@||catchvideo.net/adframe.js (easylist.txt: 49652) -.catchvideo.net/adframe\.js -# @@||captchme.net/js/advertisement.js (easylist.txt: 49649) -.captchme.net/js/advertisement\.js -# @@||captchme.net/js/advertisement-min.js (easylist.txt: 49648) -.captchme.net/js/advertisement-min\.js -# @@||calcularindemnizacion.es^$elemhide (easylist.txt: 49646) -.calcularindemnizacion.es -# @@||bywarrior.com^$elemhide (easylist.txt: 49645) -.bywarrior.com -# @@||bulletproofserving.com/scripts/ads.js (easylist.txt: 49643) -.bulletproofserving.com/scripts/ads\.js -# @@||budget101.com^$elemhide (easylist.txt: 49642) -.budget101.com -# @@||btspread.com/eroex.js (easylist.txt: 49641) -.btspread.com/eroex\.js -# @@||boxxod.net/advertisement.js (easylist.txt: 49638) -.boxxod.net/advertisement\.js -# @@||boincstats.com/js/adframe.js (easylist.txt: 49637) -.boincstats.com/js/adframe\.js -# @@||bitplay.ga^$elemhide (easylist.txt: 49634) -.bitplay.ga -# @@||bitcoiner.net/advertisement.js (easylist.txt: 49633) -.bitcoiner.net/advertisement\.js -# @@||bitcoin-free-faucet.eu^$elemhide (easylist.txt: 49632) -.bitcoin-free-faucet.eu -# @@||bitcoin-faucet.eu^$elemhide (easylist.txt: 49631) -.bitcoin-faucet.eu -# @@||bitcoin-cloud.eu^$elemhide (easylist.txt: 49630) -.bitcoin-cloud.eu -# @@||bitcoin-best-faucet.eu^$elemhide (easylist.txt: 49629) -.bitcoin-best-faucet.eu -# @@||bitcofree.com^$elemhide (easylist.txt: 49628) -.bitcofree.com -# @@||binbox.io^$elemhide (easylist.txt: 49627) -.binbox.io -# @@||binbox.io/adblock.js (easylist.txt: 49626) -.binbox.io/adblock\.js -# @@||bilzonen.dk/scripts/ads.js (easylist.txt: 49624) -.bilzonen.dk/scripts/ads\.js -# @@||bicimotosargentina.com^$elemhide (easylist.txt: 49623) -.bicimotosargentina.com -# @@||bezaldfamily.net^$elemhide (easylist.txt: 49622) -.bezaldfamily.net -# @@||better-explorer.com^$elemhide (easylist.txt: 49621) -.better-explorer.com -# @@||bestream.tv/advert*.js (easylist.txt: 49620) -.bestream.tv/advert.*\.js -# @@||bestofmedia.com^*/advertisement.js (easylist.txt: 49619) -.bestofmedia.com/.*/advertisement\.js -# @@||best-free-faucet.eu^$elemhide (easylist.txt: 49618) -.best-free-faucet.eu -# @@||best-bitcoin-faucet.eu^$elemhide (easylist.txt: 49617) -.best-bitcoin-faucet.eu -# @@||beelink.in/advertisement.js (easylist.txt: 49614) -.beelink.in/advertisement\.js -# @@||bdrip.ws^$elemhide (easylist.txt: 49613) -.bdrip.ws -# @@||backin.net^$elemhide (easylist.txt: 49610) -.backin.net -# @@||backin.net/advertisement.js (easylist.txt: 49609) -.backin.net/advertisement\.js -# @@||autolikesgroups.com^$elemhide (easylist.txt: 49606) -.autolikesgroups.com -# @@||autolikergroup.com/advertisement.js (easylist.txt: 49605) -.autolikergroup.com/advertisement\.js -# @@||autogespot.*/JavaScript/ads.js? (easylist.txt: 49604) -.autogespot.*./(.*/)?JavaScript/ads\.js\? -# @@||auroravid.to/banner.php (easylist.txt: 49603) -.auroravid.to/banner\.php -# @@||auditude.com/player/js/lib/aud.html5player.js (easylist.txt: 49602) -.auditude.com/player/js/lib/aud\.html5player\.js -# @@||atresplayer.com/static/js/advertisement.js (easylist.txt: 49600) -.atresplayer.com/static/js/advertisement\.js -# @@||aseanlegacy.net^$elemhide (easylist.txt: 49597) -.aseanlegacy.net -# @@||aseanlegacy.net/images/ads.png (easylist.txt: 49596) -.aseanlegacy.net/images/ads\.png -# @@||aseanlegacy.net/assets/advertisement.js (easylist.txt: 49595) -.aseanlegacy.net/assets/advertisement\.js -# @@||aseanlegacy.net/ad*.js (easylist.txt: 49594) -.aseanlegacy.net/ad.*\.js -# @@||arto.com/includes/js/adtech.de/script.axd/adframe.js? (easylist.txt: 49593) -.arto.com/includes/js/adtech\.de/script\.axd/adframe\.js\? -# @@||ar51.eu/ad/advertisement.js (easylist.txt: 49592) -.ar51.eu/ad/advertisement\.js -# @@||appfull.net^$elemhide (easylist.txt: 49591) -.appfull.net -# @@||appdn.net^$elemhide (easylist.txt: 49590) -.appdn.net -# @@||apkone.net^$elemhide (easylist.txt: 49589) -.apkone.net -# @@||apkmirror.com/wp-content/themes/APKMirror/js/ads.js (easylist.txt: 49588) -.apkmirror.com/wp-content/themes/APKMirror/js/ads\.js -# @@||anti-adblock-scripts.googlecode.com/files/adscript.js (easylist.txt: 49587) -.anti-adblock-scripts.googlecode.com/files/adscript\.js -# @@||anonytext.tk^$elemhide (easylist.txt: 49585) -.anonytext.tk -# @@||anizm.com^$elemhide (easylist.txt: 49584) -.anizm.com -# @@||anisearch.com^*/ads.js? (easylist.txt: 49583) -.anisearch.com/.*/ads\.js\? -# @@||animesubita.info^$elemhide (easylist.txt: 49582) -.animesubita.info -# @@||animesproject.com^*/player.php$elemhide (easylist.txt: 49581) -.animesproject.com/.*/player\.php -# @@||animesproject.com^*/fuckadblock.js (easylist.txt: 49580) -.animesproject.com/.*/fuckadblock\.js -# @@||animefushigi.com^$elemhide (easylist.txt: 49579) -.animefushigi.com -# @@||anime2enjoy.com^$elemhide (easylist.txt: 49577) -.anime2enjoy.com -# @@||animalplanet.com^$elemhide (easylist.txt: 49576) -.animalplanet.com -# @@||android-zone.org^$elemhide (easylist.txt: 49575) -.android-zone.org -# @@||ancensored.com/sites/all/modules/player/images/ad.jpg (easylist.txt: 49574) -.ancensored.com/sites/all/modules/player/images/ad\.jpg -# @@||amk.to/js/adcode.js? (easylist.txt: 49573) -.amk.to/js/adcode\.js\? -# @@||amigosdelamili.com^$elemhide (easylist.txt: 49572) -.amigosdelamili.com -# @@||altoque.com^$elemhide (easylist.txt: 49567) -.altoque.com -# @@||allkpop.com/ads.js (easylist.txt: 49566) -.allkpop.com/ads\.js -# @@||alcohoin-faucet.tk/advertisement.js (easylist.txt: 49563) -.alcohoin-faucet.tk/advertisement\.js -# @@||ahctv.com^$elemhide (easylist.txt: 49558) -.ahctv.com -# @@||agar.io^*/advertisement.js (easylist.txt: 49557) -.agar.io/.*/advertisement\.js -# @@||afterburnerleech.com/js/show_ads.js (easylist.txt: 49556) -.afterburnerleech.com/js/show_ads\.js -# @@||afreesms.com^$elemhide (easylist.txt: 49554) -.afreesms.com -# @@||adserver.liverc.com/getBannerVerify.js (easylist.txt: 49541) -.adserver.liverc.com/getBannerVerify\.js -# @@||adf.ly^$generichide (easylist.txt: 49507) -.adf.ly -# @@||adconscious.com/js/fuckadblock.js (easylist.txt: 49505) -.adconscious.com/js/fuckadblock\.js -# @@||ad.leadbolt.net/show_cu.js (easylist.txt: 49498) -.ad.leadbolt.net/show_cu\.js -# @@||9xbuddy.com/js/ads.js (easylist.txt: 49493) -.9xbuddy.com/js/ads\.js -# @@||9tutorials.com^$elemhide (easylist.txt: 49492) -.9tutorials.com -# @@||95.211.184.210/js/advertisement.js (easylist.txt: 49488) -.95.211.184.210/js/advertisement\.js -# @@||4sysops.com^*/adframe.js (easylist.txt: 49486) -.4sysops.com/.*/adframe\.js -# @@||4fuckr.com^*/adframe.js (easylist.txt: 49484) -.4fuckr.com/.*/adframe\.js -# @@||360haven.com^$elemhide (easylist.txt: 49483) -.360haven.com -# @@||360haven.com/adframe.js (easylist.txt: 49482) -.360haven.com/adframe\.js -# @@||300mblink.com^$elemhide (easylist.txt: 49481) -.300mblink.com -# @@||youtube.com/yt/css/www-advertise.css (easylist.txt: 49374) -.youtube.com/yt/css/www-advertise\.css -# @@||yokosonews.com/files/cache/ (easylist.txt: 49371) -.yokosonews.com/files/cache/ -# @@||ykhandler.com/adframe.js (easylist.txt: 49370) -.ykhandler.com/adframe\.js -# @@||yimg.com^*/java/promotions/js/ad_eo_1.1.js (easylist.txt: 49369) -.yimg.com/.*/java/promotions/js/ad_eo_1\.1\.js -# @@||yimg.com^*&yat/js/ads_ (easylist.txt: 49366) -.yimg.com/.*&yat/js/ads_ -# @@||yimg.com/zz/combo?*&*.js (easylist.txt: 49365) -.yimg.com/zz/combo\?.*&.*\.js -# @@||yellupload.com/yell/videoads/yellvideoplayer.swf? (easylist.txt: 49361) -.yellupload.com/yell/videoads/yellvideoplayer\.swf\? -# @@||yellupload.com/yell/videoads/*.flv| (easylist.txt: 49360) -.yellupload.com/yell/videoads/.*\.flv$ -# @@||yellowpages.com.mt/Images/Design/Buttons/advert.png (easylist.txt: 49359) -.yellowpages.com.mt/Images/Design/Buttons/advert\.png -# @@||wrapper.teamxbox.com/a?size=headermainad (easylist.txt: 49343) -.wrapper.teamxbox.com/a\?size=headermainad -# @@||wp.com/_static/*/criteo.js (easylist.txt: 49338) -.wp.com/_static/.*/criteo\.js -# @@||wortech.ac.uk/publishingimages/adverts/ (easylist.txt: 49337) -.wortech.ac.uk/publishingimages/adverts/ -# @@||worldstarhiphop.com^*/dj2.swf (easylist.txt: 49336) -.worldstarhiphop.com/.*/dj2\.swf -# @@||wisegeek.com/res/contentad/ (easylist.txt: 49335) -.wisegeek.com/res/contentad/ -# @@||wirefly.com/_images/ads/ (easylist.txt: 49334) -.wirefly.com/_images/ads/ -# @@||wired.com^*/cn-fe-ads/cn.dart.js (easylist.txt: 49333) -.wired.com/.*/cn-fe-ads/cn\.dart\.js -# @@||winnipegsun.com/assets/js/dfp.js? (easylist.txt: 49332) -.winnipegsun.com/assets/js/dfp\.js\? -# @@||widget.slide.com^*/ads/*/preroll.swf (easylist.txt: 49325) -.widget.slide.com/.*/ads/.*/preroll\.swf -# @@||whittakersworldwide.com/site-media/advertisements/ (easylist.txt: 49322) -.whittakersworldwide.com/site-media/advertisements/ -# @@||whitepages.com^*/google_adsense.js? (easylist.txt: 49321) -.whitepages.com/.*/google_adsense\.js\? -# @@||washingtonpost.com^*=/ad/audsci.js (easylist.txt: 49316) -.washingtonpost.com/.*=/ad/audsci\.js -# @@||washingtonpost.com/wpost2/css/combo?*/ads.css (easylist.txt: 49315) -.washingtonpost.com/wpost2/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wpost/css/combo?*/ads.css (easylist.txt: 49314) -.washingtonpost.com/wpost/css/combo\?.*/ads\.css -# @@||washingtonpost.com/wp-srv/ad/wpni_generic_ad.js (easylist.txt: 49313) -.washingtonpost.com/wp-srv/ad/wpni_generic_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp_config.js (easylist.txt: 49312) -.washingtonpost.com/wp-srv/ad/wp_config\.js -# @@||washingtonpost.com/wp-srv/ad/wp_ad.js (easylist.txt: 49311) -.washingtonpost.com/wp-srv/ad/wp_ad\.js -# @@||washingtonpost.com/wp-srv/ad/wp.js (easylist.txt: 49310) -.washingtonpost.com/wp-srv/ad/wp\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks_config.js (easylist.txt: 49309) -.washingtonpost.com/wp-srv/ad/textlinks_config\.js -# @@||washingtonpost.com/wp-srv/ad/textlinks.js (easylist.txt: 49308) -.washingtonpost.com/wp-srv/ad/textlinks\.js -# @@||washingtonpost.com/wp-srv/ad/textlink_driver.js (easylist.txt: 49307) -.washingtonpost.com/wp-srv/ad/textlink_driver\.js -# @@||washingtonpost.com/wp-srv/ad/generic_ad.js (easylist.txt: 49306) -.washingtonpost.com/wp-srv/ad/generic_ad\.js -# @@||washingtonpost.com/wp-adv/advertisers/russianow/ (easylist.txt: 49305) -.washingtonpost.com/wp-adv/advertisers/russianow/ -# @@||walmartmoneycard.com^*/shared/ad_rotater.swf (easylist.txt: 49303) -.walmartmoneycard.com/.*/shared/ad_rotater\.swf -# @@||vtstage.cbsinteractive.com/plugins/*_adplugin.swf (easylist.txt: 49297) -.vtstage.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||vmagazine.com/web/css/ads.css (easylist.txt: 49294) -.vmagazine.com/web/css/ads\.css -# @@||vizanime.com/ad/get_ads? (easylist.txt: 49291) -.vizanime.com/ad/get_ads\? -# @@||vitalitymall.co.za/images/adrotator/ (easylist.txt: 49290) -.vitalitymall.co.za/images/adrotator/ -# @@||vistek.ca/ads/ (easylist.txt: 49289) -.vistek.ca/ads/ -# @@||virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery.internads.js (easylist.txt: 49288) -.virginradiodubai.com/wp-content/plugins/wp-intern-ads/jquery\.internads\.js -# @@||vidtech.cbsinteractive.com/plugins/*_adplugin.swf (easylist.txt: 49285) -.vidtech.cbsinteractive.com/plugins/.*_adplugin\.swf -# @@||video.nbcuni.com^*/inext_ad_engine/ad_engine_extension.swf (easylist.txt: 49273) -.video.nbcuni.com/.*/inext_ad_engine/ad_engine_extension\.swf -# @@||video.nbcuni.com^*/ad_engine_extension_nbc.swf (easylist.txt: 49272) -.video.nbcuni.com/.*/ad_engine_extension_nbc\.swf -# @@||video.economist.com/adfinder.jsp? (easylist.txt: 49271) -.video.economist.com/adfinder\.jsp\? -# @@||viamichelin.*/static/advert/sponsoring/itinerarypage/itinerarypage.js (easylist.txt: 49269) -.viamichelin.*./(.*/)?static/advert/sponsoring/itinerarypage/itinerarypage\.js -# @@||viamichelin.*/static/advert/afsquery/afsquery.js (easylist.txt: 49268) -.viamichelin.*./(.*/)?static/advert/afsquery/afsquery\.js -# @@||viamichelin.*/rentacar.js (easylist.txt: 49267) -.viamichelin.*./(.*/)?rentacar\.js -# @@||veetle.com/images/common/ads/ (easylist.txt: 49264) -.veetle.com/images/common/ads/ -# @@||vanityfair.com/ads/js/cn.dart.bun.min.js (easylist.txt: 49263) -.vanityfair.com/ads/js/cn\.dart\.bun\.min\.js -# @@||vancouversun.com/js/adsync/adsynclibrary.js (easylist.txt: 49262) -.vancouversun.com/js/adsync/adsynclibrary\.js -# @@||valueram.com/banners/ads/ (easylist.txt: 49261) -.valueram.com/banners/ads/ -# @@||vagazette.com/hive/images/adv_ (easylist.txt: 49260) -.vagazette.com/hive/images/adv_ -# @@||vacationstarter.com/hive/images/adv_ (easylist.txt: 49258) -.vacationstarter.com/hive/images/adv_ -# @@||utdallas.edu^*/banner.js (easylist.txt: 49251) -.utdallas.edu/.*/banner\.js -# @@||usps.com/adserver/ (easylist.txt: 49247) -.usps.com/adserver/ -# @@||usanetwork.com^*/usanetwork_ads.s_code.js? (easylist.txt: 49246) -.usanetwork.com/.*/usanetwork_ads\.s_code\.js\? -# @@||upload.wikimedia.org/wikipedia/ (easylist.txt: 49243) -.upload.wikimedia.org/wikipedia/ -# @@||ultrabrown.com/images/adheader.jpg (easylist.txt: 49240) -.ultrabrown.com/images/adheader\.jpg -# @@||ultimate-guitar.com/js/ug_ads.js (easylist.txt: 49239) -.ultimate-guitar.com/js/ug_ads\.js -# @@||ukbride.co.uk/css/*/adverts.css (easylist.txt: 49238) -.ukbride.co.uk/css/.*/adverts\.css -# @@||uillinois.edu/eas/ (easylist.txt: 49237) -.uillinois.edu/eas/ -# @@||ucaster.eu/static/scripts/adscript.js (easylist.txt: 49236) -.ucaster.eu/static/scripts/adscript\.js -# @@||twitvid.com/mediaplayer_*.swf? (easylist.txt: 49233) -.twitvid.com/mediaplayer_.*\.swf\? -# @@||tvnz.co.nz/*/advertisement.js (easylist.txt: 49231) -.tvnz.co.nz/.*/advertisement\.js -# @@||tvgorge.com^*/adplayer.swf (easylist.txt: 49230) -.tvgorge.com/.*/adplayer\.swf -# @@||tv-kino.net/wp-content/themes/*/advertisement.js (easylist.txt: 49229) -.tv-kino.net/wp-content/themes/.*/advertisement\.js -# @@||tut.by/uppod/frameid406/ads1/ (easylist.txt: 49228) -.tut.by/uppod/frameid406/ads1/ -# @@||tudouui.com/bin/player2/*&adsourceid= (easylist.txt: 49221) -.tudouui.com/bin/player2/.*&adsourceid= -# @@||trustedreviews.com^*/adtech.js (easylist.txt: 49217) -.trustedreviews.com/.*/adtech\.js -# @@||trialpay.com/js/advertiser.js (easylist.txt: 49214) -.trialpay.com/js/advertiser\.js -# @@||travidia.com/ss-page/ (easylist.txt: 49211) -.travidia.com/ss-page/ -# @@||traumagame.com/trauma_data/ads/ad2.jpg (easylist.txt: 49206) -.traumagame.com/trauma_data/ads/ad2\.jpg -# @@||translate.google.com/translate/static/*-ads/ (easylist.txt: 49205) -.translate.google.com/translate/static/.*-ads/ -# @@||traktorpool.de^*/advert. (easylist.txt: 49203) -.traktorpool.de/.*/advert\. -# @@||traktorpool.de/scripts/advert/ (easylist.txt: 49202) -.traktorpool.de/scripts/advert/ -# @@||trade-a-plane.com/AdBox/js/jquery.TAP_AdBox.js (easylist.txt: 49198) -.trade-a-plane.com/AdBox/js/jquery\.TAP_AdBox\.js -# @@||torontosun.com/assets/js/dfp.js? (easylist.txt: 49195) -.torontosun.com/assets/js/dfp\.js\? -# @@||topusajobs.com/banners/ (easylist.txt: 49194) -.topusajobs.com/banners/ -# @@||topgear.com^*/ads.min.js (easylist.txt: 49193) -.topgear.com/.*/ads\.min\.js -# @@||tntexpress.com.au^*/marketing/banners/ (easylist.txt: 49186) -.tntexpress.com.au/.*/marketing/banners/ -# @@||tkcarsites.com/soba/bannersservice (easylist.txt: 49183) -.tkcarsites.com/soba/bannersservice -# @@||tinysubversions.com/clickbait/adjs.json (easylist.txt: 49182) -.tinysubversions.com/clickbait/adjs\.json -# @@||tinbuadserv.com/js/integrate/ads_common.js (easylist.txt: 49180) -.tinbuadserv.com/js/integrate/ads_common\.js -# @@||timeout.com/images/ads/weather/ (easylist.txt: 49178) -.timeout.com/images/ads/weather/ -# @@||timeinc.net^*/tii_ads.js (easylist.txt: 49177) -.timeinc.net/.*/tii_ads\.js -# @@||tiads.timeinc.net/ads/tgx.js (easylist.txt: 49173) -.tiads.timeinc.net/ads/tgx\.js -# @@||thunderheadeng.com/wp-content/uploads/*300x250 (easylist.txt: 49172) -.thunderheadeng.com/wp-content/uploads/.*300x250 -# @@||thrifty.co.uk/bannerads/ (easylist.txt: 49170) -.thrifty.co.uk/bannerads/ -# @@||thomsonlocal.com/js/adsense-min.js (easylist.txt: 49169) -.thomsonlocal.com/js/adsense-min\.js -# @@||thomann.de/thumb/*/pics/adv/adv_image_ (easylist.txt: 49168) -.thomann.de/thumb/.*/pics/adv/adv_image_ -# @@||theweathernetwork.com/js/adrefresh.js (easylist.txt: 49166) -.theweathernetwork.com/js/adrefresh\.js -# @@||thetvdb.com/banners/ (easylist.txt: 49165) -.thetvdb.com/banners/ -# @@||theory-test.co.uk/css/ads.css (easylist.txt: 49162) -.theory-test.co.uk/css/ads\.css -# @@||thenewage.co.za/classifieds/images2/postad.gif (easylist.txt: 49160) -.thenewage.co.za/classifieds/images2/postad\.gif -# @@||theloop.com.au/js/simplejob_ad_content.js? (easylist.txt: 49158) -.theloop.com.au/js/simplejob_ad_content\.js\? -# @@||thefrisky.com/js/adspaces.min.js (easylist.txt: 49156) -.thefrisky.com/js/adspaces\.min\.js -# @@||thefourthperiod.com/ads/tfplogo_ (easylist.txt: 49155) -.thefourthperiod.com/ads/tfplogo_ -# @@||theepochtimes.com^*/article-ads.js? (easylist.txt: 49154) -.theepochtimes.com/.*/article-ads\.js\? -# @@||thedailygreen.com/ams/page-ads.js? (easylist.txt: 49149) -.thedailygreen.com/ams/page-ads\.js\? -# @@||texasstudentmedia.com/advertise/ (easylist.txt: 49147) -.texasstudentmedia.com/advertise/ -# @@||tetrisfriends.com/ads/google_dfp_video_ad.html (easylist.txt: 49146) -.tetrisfriends.com/ads/google_dfp_video_ad\.html -# @@||telegraphcouk.skimlinks.com/api/telegraph.skimlinks.js (easylist.txt: 49142) -.telegraphcouk.skimlinks.com/api/telegraph\.skimlinks\.js -# @@||teknikor.com/content/wp-content/themes/*-adv.jpg (easylist.txt: 49141) -.teknikor.com/content/wp-content/themes/.*-adv\.jpg -# @@||talkgold.com/bans/rss.png (easylist.txt: 49133) -.talkgold.com/bans/rss\.png -# @@||take40.com/common/javascript/ads.js (easylist.txt: 49132) -.take40.com/common/javascript/ads\.js -# @@||syracuse.com/static/common/js/ads/ads.js (easylist.txt: 49129) -.syracuse.com/static/common/js/ads/ads\.js -# @@||support.dlink.com/Scripts/custom/pop.js (easylist.txt: 49124) -.support.dlink.com/Scripts/custom/pop\.js -# @@||superfundo.org/advertisement.js (easylist.txt: 49120) -.superfundo.org/advertisement\.js -# @@||supercartoons.net/ad-preroll.html (easylist.txt: 49119) -.supercartoons.net/ad-preroll\.html -# @@||summitracing.com/global/images/bannerads/ (easylist.txt: 49118) -.summitracing.com/global/images/bannerads/ -# @@||subscribe.teenvogue.com/ams/page-ads.js (easylist.txt: 49116) -.subscribe.teenvogue.com/ams/page-ads\.js -# @@||subscribe.newyorker.com/ams/page-ads.js (easylist.txt: 49115) -.subscribe.newyorker.com/ams/page-ads\.js -# @@||stickam.com/css/ver1/asset/sharelayout2col_ad300x250.css (easylist.txt: 49110) -.stickam.com/css/ver1/asset/sharelayout2col_ad300x250\.css -# @@||stclassifieds.sg/postad/ (easylist.txt: 49109) -.stclassifieds.sg/postad/ -# @@||st.com^*/banners.js (easylist.txt: 49099) -.st.com/.*/banners\.js -# @@||springbokradio.com/sitebuilder/images/ads- (easylist.txt: 49093) -.springbokradio.com/sitebuilder/images/ads- -# @@||springbokradio.com/images/ads- (easylist.txt: 49092) -.springbokradio.com/images/ads- -# @@||springboardplatform.com/storage/lightbox_code/static/companion_ads.js (easylist.txt: 49091) -.springboardplatform.com/storage/lightbox_code/static/companion_ads\.js -# @@||spotrails.com^*/flowplayeradplayerplugin.swf (easylist.txt: 49084) -.spotrails.com/.*/flowplayeradplayerplugin\.swf -# @@||spendino.de/admanager/ (easylist.txt: 49079) -.spendino.de/admanager/ -# @@||spectrum.ieee.org/assets/js/masonry-ads-right.min.js (easylist.txt: 49078) -.spectrum.ieee.org/assets/js/masonry-ads-right\.min\.js -# @@||southwest.com^*/homepage/ads/ (easylist.txt: 49077) -.southwest.com/.*/homepage/ads/ -# @@||southwest.com/assets/images/ads/ad_select_flight_ (easylist.txt: 49076) -.southwest.com/assets/images/ads/ad_select_flight_ -# @@||sonypictures.com^*/admedia/ (easylist.txt: 49075) -.sonypictures.com/.*/admedia/ -# @@||songza.com/static/*/songza/ads/iframe.js (easylist.txt: 49072) -.songza.com/static/.*/songza/ads/iframe\.js -# @@||songza.com/advertising/top/ (easylist.txt: 49071) -.songza.com/advertising/top/ -# @@||somethingsexyplanet.com/image/adzones/ (easylist.txt: 49069) -.somethingsexyplanet.com/image/adzones/ -# @@||softwarepromotions.com/images/google-adwords-professional.gif (easylist.txt: 49068) -.softwarepromotions.com/images/google-adwords-professional\.gif -# @@||socialblogsitewebdesign.com^*/advertising_conversion_images/ (easylist.txt: 49066) -.socialblogsitewebdesign.com/.*/advertising_conversion_images/ -# @@||smmirror.com^*/getads.php (easylist.txt: 49065) -.smmirror.com/.*/getads\.php -# @@||slowblog.com/ad.js (easylist.txt: 49058) -.slowblog.com/ad\.js -# @@||site-jump.com/banners/ (easylist.txt: 49053) -.site-jump.com/banners/ -# @@||sillyvamp.com/ads/Donate.png (easylist.txt: 49052) -.sillyvamp.com/ads/Donate\.png -# @@||silive.com/static/common/js/ads/ads.js (easylist.txt: 49051) -.silive.com/static/common/js/ads/ads\.js -# @@||sihanoukvilleonline.com/banners/sologo.png (easylist.txt: 49050) -.sihanoukvilleonline.com/banners/sologo\.png -# @@||sify.com/news/postcomments.php?*468x60.html (easylist.txt: 49048) -.sify.com/news/postcomments\.php\?.*468x60\.html -# @@||shelleytheatre.co.uk/filmimages/banners/160 (easylist.txt: 49045) -.shelleytheatre.co.uk/filmimages/banners/160 -# @@||shackvideo.com/playlist_xml.x? (easylist.txt: 49040) -.shackvideo.com/playlist_xml\.x\? -# @@||seventeen.com/ams/page-ads.js (easylist.txt: 49036) -.seventeen.com/ams/page-ads\.js -# @@||serviceexpress.net/js/pop.js (easylist.txt: 49034) -.serviceexpress.net/js/pop\.js -# @@||sekonda.co.uk/advert_images/ (easylist.txt: 49027) -.sekonda.co.uk/advert_images/ -# @@||securenetsystems.net/scripts/*/sdfy_scripts_advertising.js (easylist.txt: 49025) -.securenetsystems.net/scripts/.*/sdfy_scripts_advertising\.js -# @@||secondlife.com/assets/*_AD3.jpg (easylist.txt: 49023) -.secondlife.com/assets/.*_AD3\.jpg -# @@||sec-ads.bridgetrack.com/ads_img/ (easylist.txt: 49022) -.sec-ads.bridgetrack.com/ads_img/ -# @@||search.yahoo.com^$generichide (easylist.txt: 49021) -.search.yahoo.com -# @@||sdltutorials.com/Data/Ads/AppStateBanner.jpg (easylist.txt: 49019) -.sdltutorials.com/Data/Ads/AppStateBanner\.jpg -# @@||salon.com/content/plugins/salon-ad-controller/ad-utilities.js (easylist.txt: 49003) -.salon.com/content/plugins/salon-ad-controller/ad-utilities\.js -# @@||salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery.jshowoff.min.js? (easylist.txt: 49002) -.salfordonline.com/wp-content/plugins/wp_pro_ad_system/templates/js/jquery\.jshowoff\.min\.js\? -# @@||russellrooftiles.co.uk/images/rrt_envirotile_home_advert.png (easylist.txt: 48994) -.russellrooftiles.co.uk/images/rrt_envirotile_home_advert\.png -# @@||rsvlts.com/wp-content/uploads/*-advertisment- (easylist.txt: 48988) -.rsvlts.com/wp-content/uploads/.*-advertisment- -# @@||rotate.infowars.com/www/delivery/spcjs.php (easylist.txt: 48983) -.rotate.infowars.com/www/delivery/spcjs\.php -# @@||rotate.infowars.com/www/delivery/fl.js (easylist.txt: 48982) -.rotate.infowars.com/www/delivery/fl\.js -# @@||rosauers.com/locations/ads.html (easylist.txt: 48981) -.rosauers.com/locations/ads\.html -# @@||rewaz.org/ads/adframe2.js (easylist.txt: 48977) -.rewaz.org/ads/adframe2\.js -# @@||remo-xp.com/wp-content/themes/adsense-boqpod/style.css (easylist.txt: 48967) -.remo-xp.com/wp-content/themes/adsense-boqpod/style\.css -# @@||refline.ch^*/advertisement.css (easylist.txt: 48966) -.refline.ch/.*/advertisement\.css -# @@||redbookmag.com/ams/page-ads.js? (easylist.txt: 48964) -.redbookmag.com/ams/page-ads\.js\? -# @@||realvnc.com/assets/img/ad-bg.jpg (easylist.txt: 48963) -.realvnc.com/assets/img/ad-bg\.jpg -# @@||realbeauty.com/ams/page-ads.js? (easylist.txt: 48961) -.realbeauty.com/ams/page-ads\.js\? -# @@||rcards.net/wp-content/uploads/useful_banner_manager_banners/ (easylist.txt: 48957) -.rcards.net/wp-content/uploads/useful_banner_manager_banners/ -# @@||rcards.net/wp-content/plugins/useful-banner-manager/ (easylist.txt: 48956) -.rcards.net/wp-content/plugins/useful-banner-manager/ -# @@||rainbowdressup.com/ads/adsnewvars.swf (easylist.txt: 48953) -.rainbowdressup.com/ads/adsnewvars\.swf -# @@||radiotimes.com/rt-service/resource/jspack? (easylist.txt: 48952) -.radiotimes.com/rt-service/resource/jspack\? -# @@||radioguide.fm/minify/?*/Advertising/webroot/css/advertising.css (easylist.txt: 48951) -.radioguide.fm/minify/\?.*/Advertising/webroot/css/advertising\.css -# @@||quit.org.au/images/images/ad/ (easylist.txt: 48943) -.quit.org.au/images/images/ad/ -# @@||q2servers.com/pop.js (easylist.txt: 48940) -.q2servers.com/pop\.js -# @@||pursuit.co.za/css/globalAd.css (easylist.txt: 48938) -.pursuit.co.za/css/globalAd\.css -# @@||proprofs.com/quiz-school/js/modernizr_ads.js (easylist.txt: 48931) -.proprofs.com/quiz-school/js/modernizr_ads\.js -# @@||productioncars.com/pics/menu/ads2.gif (easylist.txt: 48924) -.productioncars.com/pics/menu/ads2\.gif -# @@||productioncars.com/pics/menu/ads.gif (easylist.txt: 48923) -.productioncars.com/pics/menu/ads\.gif -# @@||procato.com/_pub/advertisement.js (easylist.txt: 48922) -.procato.com/_pub/advertisement\.js -# @@||prism.opticsinfobase.org/Scripts/ADS/Details.js (easylist.txt: 48920) -.prism.opticsinfobase.org/Scripts/ADS/Details\.js -# @@||pressdisplay.com/advertising/showimage.aspx? (easylist.txt: 48919) -.pressdisplay.com/advertising/showimage\.aspx\? -# @@||popcap.com/sites/all/modules/popcap/js/popcap_openx.js? (easylist.txt: 48915) -.popcap.com/sites/all/modules/popcap/js/popcap_openx\.js\? -# @@||politico.com/js/magazine/ads.js (easylist.txt: 48911) -.politico.com/js/magazine/ads\.js -# @@||plugcomputer.org^*/ad1.jpg (easylist.txt: 48909) -.plugcomputer.org/.*/ad1\.jpg -# @@||playintraffik.com/advertising/ (easylist.txt: 48908) -.playintraffik.com/advertising/ -# @@||player.vioapi.com/ads/flash/vioplayer.swf (easylist.txt: 48907) -.player.vioapi.com/ads/flash/vioplayer\.swf -# @@||player.streamtheworld.com/liveplayer.php?*adstype= (easylist.txt: 48904) -.player.streamtheworld.com/liveplayer\.php\?.*adstype= -# @@||pitchfork.com/desktop/js/pitchfork/ads/interstitial.js (easylist.txt: 48893) -.pitchfork.com/desktop/js/pitchfork/ads/interstitial\.js -# @@||pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218.gif (easylist.txt: 48892) -.pioneerfcu.org/assets/images/bannerads/pfcu-system-upgrade-banner-02-180x218\.gif -# @@||picplzthumbs.com/upload/img/ad/ (easylist.txt: 48888) -.picplzthumbs.com/upload/img/ad/ -# @@||pets4homes.co.uk^*/advert.css (easylist.txt: 48878) -.pets4homes.co.uk/.*/advert\.css -# @@||pets4homes.co.uk/*/advert.js (easylist.txt: 48877) -.pets4homes.co.uk/.*/advert\.js -# @@||petcarerx.com/banners/ (easylist.txt: 48875) -.petcarerx.com/banners/ -# @@||perezhilton.com/included_ads/ (easylist.txt: 48872) -.perezhilton.com/included_ads/ -# @@||perbang.dk/_pub/advertisement.js? (easylist.txt: 48871) -.perbang.dk/_pub/advertisement\.js\? -# @@||pennlive.com/static/common/js/ads/ads.js (easylist.txt: 48869) -.pennlive.com/static/common/js/ads/ads\.js -# @@||pbs.org^*/sponsors/flvvideoplayer.swf (easylist.txt: 48866) -.pbs.org/.*/sponsors/flvvideoplayer\.swf -# @@||pantherssl.com/banners/ (easylist.txt: 48854) -.pantherssl.com/banners/ -# @@||pagesinventory.com/_data/flags/ad.gif (easylist.txt: 48852) -.pagesinventory.com/_data/flags/ad\.gif -# @@||pachanyc.com/_images/advertise_submit.gif (easylist.txt: 48839) -.pachanyc.com/_images/advertise_submit\.gif -# @@||ozspeedtest.com/js/pop.js (easylist.txt: 48838) -.ozspeedtest.com/js/pop\.js -# @@||oxfordlearnersdictionaries.com/external/scripts/doubleclick.js (easylist.txt: 48837) -.oxfordlearnersdictionaries.com/external/scripts/doubleclick\.js -# @@||ox-d.sbnation.com/w/1.0/jstag| (easylist.txt: 48834) -.ox-d.sbnation.com/w/1\.0/jstag$ -# @@||ottawasun.com/assets/js/dfp.js? (easylist.txt: 48829) -.ottawasun.com/assets/js/dfp\.js\? -# @@||oregonlive.com/static/common/js/ads/ads.js (easylist.txt: 48825) -.oregonlive.com/static/common/js/ads/ads\.js -# @@||opgevenisgeenoptie.nl^*/favicon_ad6.ico (easylist.txt: 48820) -.opgevenisgeenoptie.nl/.*/favicon_ad6\.ico -# @@||onionstatic.com^*/videoads.js (easylist.txt: 48812) -.onionstatic.com/.*/videoads\.js -# @@||omgubuntu.co.uk^*/banner.js (easylist.txt: 48809) -.omgubuntu.co.uk/.*/banner\.js -# @@||omgili.com/ads.search? (easylist.txt: 48808) -.omgili.com/ads\.search\? -# @@||oldergames.com/adlib/ (easylist.txt: 48807) -.oldergames.com/adlib/ -# @@||ocp.com.com/adfunctions.js? (easylist.txt: 48804) -.ocp.com.com/adfunctions\.js\? -# @@||objects.tremormedia.com/embed/swf/admanager*.swf (easylist.txt: 48803) -.objects.tremormedia.com/embed/swf/admanager.*\.swf -# @@||oas.absoluteradio.co.uk^*/www.absoluteradio.co.uk/player/ (easylist.txt: 48785) -.oas.absoluteradio.co.uk/.*/www\.absoluteradio\.co\.uk/player/ -# @@||nytimes.com/adx/images/ads/*_premium-crosswords_bg_600x329.gif (easylist.txt: 48782) -.nytimes.com/adx/images/ads/.*_premium-crosswords_bg_600x329\.gif -# @@||nytimes.com/adx/images/ads/*_buynow_btn_53x18.gif (easylist.txt: 48781) -.nytimes.com/adx/images/ads/.*_buynow_btn_53x18\.gif -# @@||nytimes.com/ads/interstitial/skip*.gif (easylist.txt: 48778) -.nytimes.com/ads/interstitial/skip.*\.gif -# @@||nsandi.com/files/asset/banner-ads/ (easylist.txt: 48773) -.nsandi.com/files/asset/banner-ads/ -# @@||nola.com/static/common/js/ads/ads.js (easylist.txt: 48771) -.nola.com/static/common/js/ads/ads\.js -# @@||nj.com/static/common/js/ads/ads.js (easylist.txt: 48770) -.nj.com/static/common/js/ads/ads\.js -# @@||nickjr.com/global/scripts/overture/sponsored_links_lib.js (easylist.txt: 48768) -.nickjr.com/global/scripts/overture/sponsored_links_lib\.js -# @@||nickjr.com/assets/ad-entry/ (easylist.txt: 48767) -.nickjr.com/assets/ad-entry/ -# @@||nick.com/js/ads.jsp (easylist.txt: 48765) -.nick.com/js/ads\.jsp -# @@||nflcdn.com/static/*/global/ads.js (easylist.txt: 48761) -.nflcdn.com/static/.*/global/ads\.js -# @@||nfl.com^*/ads.js (easylist.txt: 48760) -.nfl.com/.*/ads\.js -# @@||newzimbabwe.com/banners/350x350/ (easylist.txt: 48756) -.newzimbabwe.com/banners/350x350/ -# @@||newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn.dart.js (easylist.txt: 48755) -.newyorker.com/wp-content/assets/js/vendors/cn-fe-ads/cn\.dart\.js -# @@||newsarama.com/common/js/advertisements.js (easylist.txt: 48753) -.newsarama.com/common/js/advertisements\.js -# @@||news.nate.com/etc/adrectanglebanner? (easylist.txt: 48752) -.news.nate.com/etc/adrectanglebanner\? -# @@||newgrounds.com/ads/advertisement.js (easylist.txt: 48751) -.newgrounds.com/ads/advertisement\.js -# @@||newgrounds.com/ads/ad_medals.gif (easylist.txt: 48750) -.newgrounds.com/ads/ad_medals\.gif -# @@||networkworld.com/www/js/ads/gpt_includes.js? (easylist.txt: 48749) -.networkworld.com/www/js/ads/gpt_includes\.js\? -# @@||neodrive.co/cam/directrev.js? (easylist.txt: 48746) -.neodrive.co/cam/directrev\.js\? -# @@||nedbank.co.za/website/content/home/google_ad_Cut.jpg (easylist.txt: 48744) -.nedbank.co.za/website/content/home/google_ad_Cut\.jpg -# @@||ncregister.com/images/sized/images/ads/ (easylist.txt: 48743) -.ncregister.com/images/sized/images/ads/ -# @@||ncregister.com/images/ads/ (easylist.txt: 48742) -.ncregister.com/images/ads/ -# @@||nbc.com/collarity/ (easylist.txt: 48741) -.nbc.com/collarity/ -# @@||nationmultimedia.com/new/js/doubleclick.js (easylist.txt: 48738) -.nationmultimedia.com/new/js/doubleclick\.js -# @@||nationalgeographic.com/channel/videos/satellite/*.swf?adsite= (easylist.txt: 48737) -.nationalgeographic.com/channel/videos/satellite/.*\.swf\?adsite= -# @@||myrecipes.com/static/advertising/ (easylist.txt: 48733) -.myrecipes.com/static/advertising/ -# @@||myhouseabroad.com/js/adview.js (easylist.txt: 48730) -.myhouseabroad.com/js/adview\.js -# @@||myhouseabroad.com/*/ads/ (easylist.txt: 48729) -.myhouseabroad.com/.*/ads/ -# @@||myadt.com/js-ext/smartbanner/ (easylist.txt: 48727) -.myadt.com/js-ext/smartbanner/ -# @@||mutualofomaha.com/images/ads/ (easylist.txt: 48724) -.mutualofomaha.com/images/ads/ -# @@||mussil.com/mussilcomfiles/commercials/*.jpg (easylist.txt: 48723) -.mussil.com/mussilcomfiles/commercials/.*\.jpg -# @@||mudah.my/css/mudah_adview_min.css (easylist.txt: 48719) -.mudah.my/css/mudah_adview_min\.css -# @@||muchmusic.com/includes/js/adzone.js (easylist.txt: 48718) -.muchmusic.com/includes/js/adzone\.js -# @@||msnbcmedia.msn.com^*/sitemanagement/ads/*/blog_printbutton.png (easylist.txt: 48715) -.msnbcmedia.msn.com/.*/sitemanagement/ads/.*/blog_printbutton\.png -# @@||msi.com/pic/banner/ (easylist.txt: 48714) -.msi.com/pic/banner/ -# @@||msi.com/js/topad/topad.css (easylist.txt: 48713) -.msi.com/js/topad/topad\.css -# @@||mp32u.net/adframe.js (easylist.txt: 48711) -.mp32u.net/adframe\.js -# @@||monster.com/awm/*/ADVERTISING- (easylist.txt: 48706) -.monster.com/awm/.*/ADVERTISING- -# @@||mobinozer.com^*/gads.js (easylist.txt: 48699) -.mobinozer.com/.*/gads\.js -# @@||mobilefish.com/scripts/advertisement.js (easylist.txt: 48698) -.mobilefish.com/scripts/advertisement\.js -# @@||mlive.com/static/common/js/ads/ads.js (easylist.txt: 48696) -.mlive.com/static/common/js/ads/ads\.js -# @@||mlb.com/shared/components/gameday/v6/js/adproxy.js (easylist.txt: 48695) -.mlb.com/shared/components/gameday/v6/js/adproxy\.js -# @@||mlb.com/scripts/dc_ads.js (easylist.txt: 48694) -.mlb.com/scripts/dc_ads\.js -# @@||mircscripts.org/advertisements.js (easylist.txt: 48692) -.mircscripts.org/advertisements\.js -# @@||miniclipcdn.com/content/push-ads/ (easylist.txt: 48691) -.miniclipcdn.com/content/push-ads/ -# @@||miniclip.com/scripts/js.php? (easylist.txt: 48690) -.miniclip.com/scripts/js\.php\? -# @@||miller-mccune.com/wp-content/plugins/*/oiopub-direct/images/style/output.css (easylist.txt: 48689) -.miller-mccune.com/wp-content/plugins/.*/oiopub-direct/images/style/output\.css -# @@||militaryfleamarket.net/media/com_jomclassifieds/adverts/ (easylist.txt: 48688) -.militaryfleamarket.net/media/com_jomclassifieds/adverts/ -# @@||metalmusicradio.com^*/banner.php (easylist.txt: 48685) -.metalmusicradio.com/.*/banner\.php -# @@||metacafe.com/banner.php? (easylist.txt: 48684) -.metacafe.com/banner\.php\? -# @@||medscapestatic.com/pi/scripts/ads/dfp/profads2.js (easylist.txt: 48680) -.medscapestatic.com/pi/scripts/ads/dfp/profads2\.js -# @@||medscape.com/html.ng/*slideshow (easylist.txt: 48679) -.medscape.com/html\.ng/.*slideshow -# @@||media.washingtonpost.com/wp-srv/ad/tiffany_manager.js (easylist.txt: 48674) -.media.washingtonpost.com/wp-srv/ad/tiffany_manager\.js -# @@||media.washingtonpost.com/wp-srv/ad/photo-ad-config.jsonp (easylist.txt: 48673) -.media.washingtonpost.com/wp-srv/ad/photo-ad-config\.jsonp -# @@||media.washingtonpost.com/wp-srv/ad/ad_v2.js (easylist.txt: 48672) -.media.washingtonpost.com/wp-srv/ad/ad_v2\.js -# @@||media.expedia.com/*/ads/ (easylist.txt: 48666) -.media.expedia.com/.*/ads/ -# @@||mcfc.co.uk/js/core/adtracking.js (easylist.txt: 48661) -.mcfc.co.uk/js/core/adtracking\.js -# @@||masslive.com/static/common/js/ads/ads.js (easylist.txt: 48659) -.masslive.com/static/common/js/ads/ads\.js -# @@||marketwatch.com^$elemhide (easylist.txt: 48658) -.marketwatch.com -# @@||marieclaire.com/ams/page-ads.js? (easylist.txt: 48655) -.marieclaire.com/ams/page-ads\.js\? -# @@||marcs.com^*/AdViewer.js (easylist.txt: 48654) -.marcs.com/.*/AdViewer\.js -# @@||marciglesias.com/publicidad/ (easylist.txt: 48652) -.marciglesias.com/publicidad/ -# @@||marca.com/deporte/css/*/publicidad.css (easylist.txt: 48651) -.marca.com/deporte/css/.*/publicidad\.css -# @@||maps.gstatic.com/maps-api-*/adsense.js (easylist.txt: 48650) -.maps.gstatic.com/maps-api-.*/adsense\.js -# @@||maps.googleapis.com/maps-api-*/adsense.js (easylist.txt: 48649) -.maps.googleapis.com/maps-api-.*/adsense\.js -# @@||maps.chitika.net^ (easylist.txt: 48648) -.maps.chitika.net -# @@||maps-static.chitika.net^ (easylist.txt: 48647) -.maps-static.chitika.net -# @@||manoramaonline.com/advt/cricbuzz/ (easylist.txt: 48645) -.manoramaonline.com/advt/cricbuzz/ -# @@||manilatimes.net/images/banners/logo-mt.png (easylist.txt: 48644) -.manilatimes.net/images/banners/logo-mt\.png -# @@||mail.yahoo.com/neo/assets/swf/uploader.swf (easylist.txt: 48643) -.mail.yahoo.com/neo/assets/swf/uploader\.swf -# @@||mail.google.com^*/uploaderapi*.swf (easylist.txt: 48642) -.mail.google.com/.*/uploaderapi.*\.swf -# @@||magicbricks.com/img/adbanner/ (easylist.txt: 48640) -.magicbricks.com/img/adbanner/ -# @@||macworld.com/www/js/ads/jquery.lazyload-ad.js (easylist.txt: 48636) -.macworld.com/www/js/ads/jquery\.lazyload-ad\.js -# @@||mac-sports.com/ads2/508128.swf (easylist.txt: 48635) -.mac-sports.com/ads2/508128\.swf -# @@||lyngsat-logo.com/icon/flag/az/ad.gif (easylist.txt: 48634) -.lyngsat-logo.com/icon/flag/az/ad\.gif -# @@||lovefilm.com/static/scripts/advertising/dart.overlay.js (easylist.txt: 48627) -.lovefilm.com/static/scripts/advertising/dart\.overlay\.js -# @@||live365.com/web/components/ads/*.html? (easylist.txt: 48616) -.live365.com/web/components/ads/.*\.html\? -# @@||live365.com/scripts/liveads.js (easylist.txt: 48615) -.live365.com/scripts/liveads\.js -# @@||live365.com/mini/blank300x250.html (easylist.txt: 48614) -.live365.com/mini/blank300x250\.html -# @@||lipsum.com/images/banners/ (easylist.txt: 48609) -.lipsum.com/images/banners/ -# @@||linksave.in/img/usercp/ads.png (easylist.txt: 48605) -.linksave.in/img/usercp/ads\.png -# @@||lehighvalleylive.com/static/common/js/ads/ads.js (easylist.txt: 48595) -.lehighvalleylive.com/static/common/js/ads/ads\.js -# @@||larazon.es/larazon-theme/js/publicidad.js? (easylist.txt: 48591) -.larazon.es/larazon-theme/js/publicidad\.js\? -# @@||lanacion.com.ar/*/publicidad/ (easylist.txt: 48590) -.lanacion.com.ar/.*/publicidad/ -# @@||lacanadaonline.com/hive/images/adv_ (easylist.txt: 48588) -.lacanadaonline.com/hive/images/adv_ -# @@||l.yimg.com/*/adservice/ (easylist.txt: 48586) -.l.yimg.com/.*/adservice/ -# @@||ksl.com/resources/classifieds/graphics/ad_ (easylist.txt: 48585) -.ksl.com/resources/classifieds/graphics/ad_ -# @@||krispykreme.com/content/images/ads/ (easylist.txt: 48584) -.krispykreme.com/content/images/ads/ -# @@||koaa.com/videoplayer/iframe.cfm?*&hide_ads= (easylist.txt: 48581) -.koaa.com/videoplayer/iframe\.cfm\?.*&hide_ads= -# @@||kingofgames.net/gads/kingofgames.swf (easylist.txt: 48576) -.kingofgames.net/gads/kingofgames\.swf -# @@||kidshealth.org/licensees/licensee1/js/gam.html (easylist.txt: 48574) -.kidshealth.org/licensees/licensee1/js/gam\.html -# @@||kcra.com^*/adpositionsizein-min.js (easylist.txt: 48572) -.kcra.com/.*/adpositionsizein-min\.js -# @@||kcna.kp/images/ads_arrow_ (easylist.txt: 48571) -.kcna.kp/images/ads_arrow_ -# @@||karolinashumilas.com/img/adv/ (easylist.txt: 48570) -.karolinashumilas.com/img/adv/ -# @@||justin-klein.com/banners/ (easylist.txt: 48567) -.justin-klein.com/banners/ -# @@||jsstatic.com/_ads/ (easylist.txt: 48565) -.jsstatic.com/_ads/ -# @@||joyhubs.com/View/*/js/pop.js (easylist.txt: 48563) -.joyhubs.com/View/.*/js/pop\.js -# @@||jobstreet.com/_ads/ (easylist.txt: 48561) -.jobstreet.com/_ads/ -# @@||jobsearch.careerone.com.au^*/bannerad.asmx/ (easylist.txt: 48560) -.jobsearch.careerone.com.au/.*/bannerad\.asmx/ -# @@||jobs.wa.gov.au/images/advertimages/ (easylist.txt: 48559) -.jobs.wa.gov.au/images/advertimages/ -# @@||itweb.co.za/banners/en-cdt*.gif (easylist.txt: 48557) -.itweb.co.za/banners/en-cdt.*\.gif -# @@||itv.com^*/tvshows_adcall_08.js (easylist.txt: 48556) -.itv.com/.*/tvshows_adcall_08\.js -# @@||itv.com^*.adserver.js (easylist.txt: 48554) -.itv.com/.*\.adserver\.js -# @@||island.lk/userfiles/image/danweem/island.gif (easylist.txt: 48550) -.island.lk/userfiles/image/danweem/island\.gif -# @@||iolproperty.co.za/images/ad_banner.png (easylist.txt: 48546) -.iolproperty.co.za/images/ad_banner\.png -# @@||investors.com/Scripts/AdScript.js? (easylist.txt: 48544) -.investors.com/Scripts/AdScript\.js\? -# @@||intellicast.com/App_Scripts/ad.min.js (easylist.txt: 48538) -.intellicast.com/App_Scripts/ad\.min\.js -# @@||inserts2online.com/images/site/viewad.gif (easylist.txt: 48530) -.inserts2online.com/images/site/viewad\.gif -# @@||infoworld.com/www/js/ads/gpt_includes.js (easylist.txt: 48524) -.infoworld.com/www/js/ads/gpt_includes\.js -# @@||indiaresults.com/advertisements/submit.png (easylist.txt: 48522) -.indiaresults.com/advertisements/submit\.png -# @@||incredibox.fr/js/advertise.js (easylist.txt: 48521) -.incredibox.fr/js/advertise\.js -# @@||incredibox.fr/image/advertise/ (easylist.txt: 48520) -.incredibox.fr/image/advertise/ -# @@||incredibox.fr/advertise/_liste.js (easylist.txt: 48519) -.incredibox.fr/advertise/_liste\.js -# @@||imobie.com/js/anytrans-adv.js (easylist.txt: 48515) -.imobie.com/js/anytrans-adv\.js -# @@||img.thedailywtf.com/images/ads/ (easylist.txt: 48511) -.img.thedailywtf.com/images/ads/ -# @@||images.nickjr.com/ads/promo/ (easylist.txt: 48499) -.images.nickjr.com/ads/promo/ -# @@||images.nationalgeographic.com/wpf/media-live/graphic/ (easylist.txt: 48498) -.images.nationalgeographic.com/wpf/media-live/graphic/ -# @@||images.mmorpg.com/scripts/advertisement.js (easylist.txt: 48497) -.images.mmorpg.com/scripts/advertisement\.js -# @@||ikea.com^*/img/ads/ (easylist.txt: 48489) -.ikea.com/.*/img/ads/ -# @@||ikea.com^*/img/ad_ (easylist.txt: 48488) -.ikea.com/.*/img/ad_ -# @@||iframe.ivillage.com/iframe_render? (easylist.txt: 48486) -.iframe.ivillage.com/iframe_render\? -# @@||identity-us.com/ads/ads.html (easylist.txt: 48484) -.identity-us.com/ads/ads\.html -# @@||icefilms.info/jquery.lazyload-ad-*-min.js (easylist.txt: 48482) -.icefilms.info/jquery\.lazyload-ad-.*-min\.js -# @@||i.cdn.turner.com^*/adserviceadapter.swf (easylist.txt: 48477) -.i.cdn.turner.com/.*/adserviceadapter\.swf -# @@||huntington.com/Script/AdManager.js (easylist.txt: 48476) -.huntington.com/Script/AdManager\.js -# @@||hulu.com/published/*.mp4 (easylist.txt: 48474) -.hulu.com/published/.*\.mp4 -# @@||hulu.com/published/*.flv (easylist.txt: 48473) -.hulu.com/published/.*\.flv -# @@||hulkshare.com/js/adsmanager.js (easylist.txt: 48472) -.hulkshare.com/js/adsmanager\.js -# @@||huffingtonpost.com/_uac/adpage.html (easylist.txt: 48469) -.huffingtonpost.com/_uac/adpage\.html -# @@||huffingtonpost.co.uk/_uac/adpage.html (easylist.txt: 48468) -.huffingtonpost.co.uk/_uac/adpage\.html -# @@||howcast.com/flash/assets/ads/liverail.swf (easylist.txt: 48466) -.howcast.com/flash/assets/ads/liverail\.swf -# @@||housebeautiful.com/cm/shared/scripts/refreshads-*.js (easylist.txt: 48464) -.housebeautiful.com/cm/shared/scripts/refreshads-.*\.js -# @@||housebeautiful.com/ams/page-ads.js (easylist.txt: 48463) -.housebeautiful.com/ams/page-ads\.js -# @@||hotnewhiphop.com/web_root/images/ads/banner-*.png (easylist.txt: 48462) -.hotnewhiphop.com/web_root/images/ads/banner-.*\.png -# @@||homedepot.com^*/thdGoogleAdSense.js (easylist.txt: 48461) -.homedepot.com/.*/thdGoogleAdSense\.js -# @@||hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement.jpg (easylist.txt: 48457) -.hipsterhitler.com/hhcomic/wp-content/uploads/2011/10/20_advertisement\.jpg -# @@||hentai-foundry.com/themes/default/images/buttons/add_comment_icon.png (easylist.txt: 48455) -.hentai-foundry.com/themes/default/images/buttons/add_comment_icon\.png -# @@||hebdenbridge.co.uk/ads/images/smallads.png (easylist.txt: 48453) -.hebdenbridge.co.uk/ads/images/smallads\.png -# @@||healthline.com/v2/ad-mr2-iframe?useAdsHost=*&dfpAdSite= (easylist.txt: 48452) -.healthline.com/v2/ad-mr2-iframe\?useAdsHost=.*&dfpAdSite= -# @@||healthline.com/resources/base/js/responsive-ads.js? (easylist.txt: 48450) -.healthline.com/resources/base/js/responsive-ads\.js\? -# @@||hbindependent.com/hive/images/adv_ (easylist.txt: 48447) -.hbindependent.com/hive/images/adv_ -# @@||hawaii-scuba.com/ads_styles.css (easylist.txt: 48446) -.hawaii-scuba.com/ads_styles\.css -# @@||guysen.com/script/ads.js (easylist.txt: 48441) -.guysen.com/script/ads\.js -# @@||gumtree.com^*/postAd.js (easylist.txt: 48440) -.gumtree.com/.*/postAd\.js -# @@||gulflive.com/static/common/js/ads/ads.js (easylist.txt: 48439) -.gulflive.com/static/common/js/ads/ads\.js -# @@||guim.co.uk^*/styles/wide/google-ads.css (easylist.txt: 48438) -.guim.co.uk/.*/styles/wide/google-ads\.css -# @@||gotoassist.com/images/ad/ (easylist.txt: 48433) -.gotoassist.com/images/ad/ -# @@||google.com/_static/images/*/ads.png (easylist.txt: 48411) -.google.com/_static/images/.*/ads\.png -# @@||goodyhoo.com/banners/ (easylist.txt: 48406) -.goodyhoo.com/banners/ -# @@||godlessnightsfilm.co.uk/scripts/ad-gallery/ (easylist.txt: 48403) -.godlessnightsfilm.co.uk/scripts/ad-gallery/ -# @@||globaltv.com/js/smdg_ads.js (easylist.txt: 48398) -.globaltv.com/js/smdg_ads\.js -# @@||glendalenewspress.com/hive/images/adv_ (easylist.txt: 48396) -.glendalenewspress.com/hive/images/adv_ -# @@||glamour.com/aspen/js/dartCall.js (easylist.txt: 48395) -.glamour.com/aspen/js/dartCall\.js -# @@||glamour.com/aspen/components/cn-fe-ads/js/cn.dart.js (easylist.txt: 48394) -.glamour.com/aspen/components/cn-fe-ads/js/cn\.dart\.js -# @@||gcultra.com/js/exit_popup.js (easylist.txt: 48386) -.gcultra.com/js/exit_popup\.js -# @@||garmin.com^*/Sponsors.js? (easylist.txt: 48384) -.garmin.com/.*/Sponsors\.js\? -# @@||games.washingtonpost.com/games/$elemhide (easylist.txt: 48380) -.games.washingtonpost.com/games/ -# @@||funiaste.net/obrazki/*&adtype= (easylist.txt: 48362) -.funiaste.net/obrazki/.*&adtype= -# @@||fs-freeware.net/images/jdownloads/downloadimages/banner_ads.png (easylist.txt: 48360) -.fs-freeware.net/images/jdownloads/downloadimages/banner_ads\.png -# @@||freeviewnz.tv^*/uploads/ads/ (easylist.txt: 48358) -.freeviewnz.tv/.*/uploads/ads/ -# @@||freeads.in/freead.png (easylist.txt: 48354) -.freeads.in/freead\.png -# @@||freeads.in/classifieds/common/postad.css (easylist.txt: 48353) -.freeads.in/classifieds/common/postad\.css -# @@||forums.realgm.com/banners/ (easylist.txt: 48352) -.forums.realgm.com/banners/ -# @@||flysaa.com^*/jquery.adserver.js (easylist.txt: 48345) -.flysaa.com/.*/jquery\.adserver\.js -# @@||flyerservices.com/cached_banner_pages/*bannerid= (easylist.txt: 48344) -.flyerservices.com/cached_banner_pages/.*bannerid= -# @@||feedroom.speedera.net/static.feedroom.com/affiliate/ (easylist.txt: 48332) -.feedroom.speedera.net/static\.feedroom\.com/affiliate/ -# @@||farecompare.com^*/farecomp/ (easylist.txt: 48329) -.farecompare.com/.*/farecomp/ -# @@||expedia.com/minify/ads-min-*.js? (easylist.txt: 48322) -.expedia.com/minify/ads-min-.*\.js\? -# @@||expedia.com/daily/common/msi.asp (easylist.txt: 48319) -.expedia.com/daily/common/msi\.asp -# @@||expedia.co.nz/html.cms/tpid=*&adsize= (easylist.txt: 48318) -.expedia.co.nz/html\.cms/tpid=.*&adsize= -# @@||ewallpapers.eu/ads/logo.jpg (easylist.txt: 48316) -.ewallpapers.eu/ads/logo\.jpg -# @@||eventim.de/obj/basic/ad2_obj/layout/ (easylist.txt: 48315) -.eventim.de/obj/basic/ad2_obj/layout/ -# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview.main.js? (easylist.txt: 48303) -.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/modules/bannerview/bannerview\.main\.js\? -# @@||englishanimes.com/wp-content/themes/englishanimes/js/pop.js (easylist.txt: 48298) -.englishanimes.com/wp-content/themes/englishanimes/js/pop\.js -# @@||empireonline.com/images/image_index/300x250/ (easylist.txt: 48295) -.empireonline.com/images/image_index/300x250/ -# @@||emergencymedicalparamedic.com/wp-content/themes/AdSense/style.css (easylist.txt: 48294) -.emergencymedicalparamedic.com/wp-content/themes/AdSense/style\.css -# @@||elephantjournal.com/ad_art/ (easylist.txt: 48291) -.elephantjournal.com/ad_art/ -# @@||egotastic.us.intellitxt.com/intellitxt/front.asp (easylist.txt: 48288) -.egotastic.us.intellitxt.com/intellitxt/front\.asp -# @@||eduspec.science.ru.nl^*-images/ad- (easylist.txt: 48286) -.eduspec.science.ru.nl/.*-images/ad- -# @@||edmontonsun.com/assets/js/dfp.js? (easylist.txt: 48285) -.edmontonsun.com/assets/js/dfp\.js\? -# @@||edmontonjournal.com/js/adsync/adsynclibrary.js (easylist.txt: 48284) -.edmontonjournal.com/js/adsync/adsynclibrary\.js -# @@||economist.com.na^*/banners/cartoon_ (easylist.txt: 48280) -.economist.com.na/.*/banners/cartoon_ -# @@||earthtv.com/player_tmp/overlayad.js (easylist.txt: 48276) -.earthtv.com/player_tmp/overlayad\.js -# @@||earthtechling.com^*/imasters-wp-adserver-styles.css (easylist.txt: 48275) -.earthtechling.com/.*/imasters-wp-adserver-styles\.css -# @@||earthcam.com/swf/ads5.swf (easylist.txt: 48274) -.earthcam.com/swf/ads5\.swf -# @@||drupal.org^*/revealads.png (easylist.txt: 48265) -.drupal.org/.*/revealads\.png -# @@||drunkard.com/banners/modern-drunkard-book.jpg (easylist.txt: 48264) -.drunkard.com/banners/modern-drunkard-book\.jpg -# @@||drunkard.com/banners/drunkard-gear.jpg (easylist.txt: 48263) -.drunkard.com/banners/drunkard-gear\.jpg -# @@||drunkard.com/banners/drunk-korps-banner.jpg (easylist.txt: 48262) -.drunkard.com/banners/drunk-korps-banner\.jpg -# @@||dragon-mania-legends-wiki.mobga.me^*_Advertisement_ (easylist.txt: 48256) -.dragon-mania-legends-wiki.mobga.me/.*_Advertisement_ -# @@||dragon-mania-legends-wiki.mobga.me^*_advertisement. (easylist.txt: 48255) -.dragon-mania-legends-wiki.mobga.me/.*_advertisement\. -# @@||downvids.net/ads.js (easylist.txt: 48254) -.downvids.net/ads\.js -# @@||dolphinimaging.com/banners/ (easylist.txt: 48203) -.dolphinimaging.com/banners/ -# @@||dolphinimaging.com/banners.js (easylist.txt: 48202) -.dolphinimaging.com/banners\.js -# @@||dolidoli.com/images/ads- (easylist.txt: 48200) -.dolidoli.com/images/ads- -# @@||disneyphotopass.com/adimages/ (easylist.txt: 48195) -.disneyphotopass.com/adimages/ -# @@||disney.com.au/global/swf/banner300x250.swf (easylist.txt: 48193) -.disney.com.au/global/swf/banner300x250\.swf -# @@||discovery.com/components/consolidate-static/?files=*/adsense- (easylist.txt: 48192) -.discovery.com/components/consolidate-static/\?files=.*/adsense- -# @@||directtextbook.com^*.php?ad_ (easylist.txt: 48190) -.directtextbook.com/.*\.php\?ad_ -# @@||digiads.com.au/images/shared/misc/ad-disclaimer.gif (easylist.txt: 48186) -.digiads.com.au/images/shared/misc/ad-disclaimer\.gif -# @@||digiads.com.au/css/24032006/adstyle.css (easylist.txt: 48185) -.digiads.com.au/css/24032006/adstyle\.css -# @@||deviantart.net/minish/advertising/downloadad_splash_close.png (easylist.txt: 48184) -.deviantart.net/minish/advertising/downloadad_splash_close\.png -# @@||delish.com/cm/shared/scripts/refreshads-*.js (easylist.txt: 48178) -.delish.com/cm/shared/scripts/refreshads-.*\.js -# @@||deliciousdigital.com/data/our-work/advertising/ (easylist.txt: 48177) -.deliciousdigital.com/data/our-work/advertising/ -# @@||davescomputertips.com/images/ads/paypal.png (easylist.txt: 48170) -.davescomputertips.com/images/ads/paypal\.png -# @@||dailypilot.com/hive/images/adv_ (easylist.txt: 48164) -.dailypilot.com/hive/images/adv_ -# @@||dailymotion.com/videowall/*&clickTAG=http (easylist.txt: 48163) -.dailymotion.com/videowall/.*&clickTAG=http -# @@||dailymail.co.uk^*/googleads--.js (easylist.txt: 48162) -.dailymail.co.uk/.*/googleads--\.js -# @@||dailyhiit.com/sites/*/ad-images/ (easylist.txt: 48161) -.dailyhiit.com/sites/.*/ad-images/ -# @@||cydiaupdates.net/CydiaUpdates.com_600x80.png (easylist.txt: 48154) -.cydiaupdates.net/CydiaUpdates\.com_600x80\.png -# @@||cwtv.com^$elemhide (easylist.txt: 48153) -.cwtv.com -# @@||ctv.ca/players/mediaplayer/*/AdManager.js^ (easylist.txt: 48150) -.ctv.ca/players/mediaplayer/.*/AdManager\.js[^\w%.-] -# @@||css.wpdigital.net/wpost/css/combo?*/ads.css (easylist.txt: 48149) -.css.wpdigital.net/wpost/css/combo\?.*/ads\.css -# @@||csoonline.com/js/doubleclick_ads.js? (easylist.txt: 48148) -.csoonline.com/js/doubleclick_ads\.js\? -# @@||csair.com/*/adpic.js (easylist.txt: 48146) -.csair.com/.*/adpic\.js -# @@||countryliving.com/ams/page-ads.js (easylist.txt: 48140) -.countryliving.com/ams/page-ads\.js -# @@||cosmopolitan.com/ams/page-ads.js (easylist.txt: 48138) -.cosmopolitan.com/ams/page-ads\.js -# @@||corporatehousingbyowner.com/js/ad-gallery.js (easylist.txt: 48137) -.corporatehousingbyowner.com/js/ad-gallery\.js -# @@||content.hallmark.com/scripts/ecards/adspot.js (easylist.txt: 48135) -.content.hallmark.com/scripts/ecards/adspot\.js -# @@||comsec.com.au^*/homepage_banner_ad.gif (easylist.txt: 48127) -.comsec.com.au/.*/homepage_banner_ad\.gif -# @@||commarts.com/Images/missinganissue_ad.gif (easylist.txt: 48124) -.commarts.com/Images/missinganissue_ad\.gif -# @@||colorado.gov/airquality/psi/adv.png (easylist.txt: 48121) -.colorado.gov/airquality/psi/adv\.png -# @@||coastlinepilot.com/hive/images/adv_ (easylist.txt: 48118) -.coastlinepilot.com/hive/images/adv_ -# @@||cleveland.com/static/common/js/ads/ads.js (easylist.txt: 48111) -.cleveland.com/static/common/js/ads/ads\.js -# @@||classistatic.com^*/banner-ads/ (easylist.txt: 48110) -.classistatic.com/.*/banner-ads/ -# @@||cio.com/www/js/ads/gpt_includes.js (easylist.txt: 48107) -.cio.com/www/js/ads/gpt_includes\.js -# @@||christianhouseshare.com.au/images/publish_ad1.jpg (easylist.txt: 48106) -.christianhouseshare.com.au/images/publish_ad1\.jpg -# @@||chemistwarehouse.com.au/images/AdImages/ (easylist.txt: 48101) -.chemistwarehouse.com.au/images/AdImages/ -# @@||chase.com^*/adserving/ (easylist.txt: 48095) -.chase.com/.*/adserving/ -# @@||channel4.com/media/scripts/oasconfig/siteads.js (easylist.txt: 48092) -.channel4.com/media/scripts/oasconfig/siteads\.js -# @@||cdn.turner.com^*/video/336x280_ad.gif (easylist.txt: 48088) -.cdn.turner.com/.*/video/336x280_ad\.gif -# @@||cdn.pch.com/spectrummedia/spectrum/adunit/ (easylist.txt: 48084) -.cdn.pch.com/spectrummedia/spectrum/adunit/ -# @@||cdn.ndtv.com/static/js/ads.js (easylist.txt: 48083) -.cdn.ndtv.com/static/js/ads\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/writecapture.js (easylist.txt: 48075) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/writecapture\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/swfobject.js (easylist.txt: 48074) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/swfobject\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jwplayerl.js (easylist.txt: 48073) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jwplayerl\.js -# @@||cdn.complexmedianetwork.com/cdn/agenda.complex.com/js/jquery.writecapture.js (easylist.txt: 48072) -.cdn.complexmedianetwork.com/cdn/agenda\.complex\.com/js/jquery\.writecapture\.js -# @@||cbsistatic.com^*/sticky-ads.js? (easylist.txt: 48068) -.cbsistatic.com/.*/sticky-ads\.js\? -# @@||cbs.com/sitecommon/includes/cacheable/combine.php?*/adfunctions. (easylist.txt: 48065) -.cbs.com/sitecommon/includes/cacheable/combine\.php\?.*/adfunctions\. -# @@||caranddriver.com/assets/js/ads/ads-combined.min.js (easylist.txt: 48060) -.caranddriver.com/assets/js/ads/ads-combined\.min\.js -# @@||capitalone360.com/js/adwizard/adwizard_homepage.js? (easylist.txt: 48058) -.capitalone360.com/js/adwizard/adwizard_homepage\.js\? -# @@||canadianlisted.com/css/*/ad/index.css (easylist.txt: 48056) -.canadianlisted.com/css/.*/ad/index\.css -# @@||cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240.jpg (easylist.txt: 48054) -.cameralabs.com/PG_library/Regional/US/Love_a_Coffee_120x240\.jpg -# @@||calgarysun.com/assets/js/dfp.js? (easylist.txt: 48053) -.calgarysun.com/assets/js/dfp\.js\? -# @@||cache.nymag.com/scripts/ad_manager.js (easylist.txt: 48052) -.cache.nymag.com/scripts/ad_manager\.js -# @@||bworldonline.com/adserver/ (easylist.txt: 48051) -.bworldonline.com/adserver/ -# @@||buyforlessok.com/advertising/ (easylist.txt: 48049) -.buyforlessok.com/advertising/ -# @@||butlereagle.com/static/ads/ (easylist.txt: 48044) -.butlereagle.com/static/ads/ -# @@||business-supply.com/images/adrotator/ (easylist.txt: 48043) -.business-supply.com/images/adrotator/ -# @@||burbankleader.com/hive/images/adv_ (easylist.txt: 48041) -.burbankleader.com/hive/images/adv_ -# @@||bthomehub.home/images/adv_ (easylist.txt: 48038) -.bthomehub.home/images/adv_ -# @@||bsvideos.com/json/ad.php? (easylist.txt: 48037) -.bsvideos.com/json/ad\.php\? -# @@||brocraft.net/js/banners.js (easylist.txt: 48035) -.brocraft.net/js/banners\.js -# @@||britishairways.com/cms/global/styles/*/openx.css (easylist.txt: 48034) -.britishairways.com/cms/global/styles/.*/openx\.css -# @@||britannica.com/resources/images/shared/ad-loading.gif (easylist.txt: 48033) -.britannica.com/resources/images/shared/ad-loading\.gif -# @@||boxedlynch.com/advertising-gallery.html (easylist.txt: 48029) -.boxedlynch.com/advertising-gallery\.html -# @@||box10.com/advertising/*-preroll.swf (easylist.txt: 48028) -.box10.com/advertising/.*-preroll\.swf -# @@||bonappetit.com^*/cn.dart.js (easylist.txt: 48025) -.bonappetit.com/.*/cn\.dart\.js -# @@||bonappetit.com/ams/page-ads.js? (easylist.txt: 48024) -.bonappetit.com/ams/page-ads\.js\? -# @@||bluetooth.com/banners/ (easylist.txt: 48020) -.bluetooth.com/banners/ -# @@||bloomberg.com/rapi/ads/js_config.js (easylist.txt: 48019) -.bloomberg.com/rapi/ads/js_config\.js -# @@||bikeexchange.com.au/adverts/ (easylist.txt: 48012) -.bikeexchange.com.au/adverts/ -# @@||betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ (easylist.txt: 48009) -.betar.gov.bd/wp-content/uploads/useful_banner_manager_banners/ -# @@||betar.gov.bd/wp-content/plugins/useful-banner-manager/ (easylist.txt: 48008) -.betar.gov.bd/wp-content/plugins/useful-banner-manager/ -# @@||bebusiness.eu/js/adview.js (easylist.txt: 48006) -.bebusiness.eu/js/adview\.js -# @@||beatthebrochure.com/js/jquery.popunder.js (easylist.txt: 48005) -.beatthebrochure.com/js/jquery\.popunder\.js -# @@||barafranca.*/banner.php| (easylist.txt: 47995) -.barafranca.*./(.*/)?banner\.php$ -# @@||banners.goldbroker.com/widget/ (easylist.txt: 47992) -.banners.goldbroker.com/widget/ -# @@||bahtsold.com/assets/images/ads/no_img_main.png (easylist.txt: 47985) -.bahtsold.com/assets/images/ads/no_img_main\.png -# @@||bafta.org/static/site/javascript/banners.js (easylist.txt: 47983) -.bafta.org/static/site/javascript/banners\.js -# @@||aviationexplorer.com/airline_aviation_ads/ (easylist.txt: 47979) -.aviationexplorer.com/airline_aviation_ads/ -# @@||aviationdocumentstorage.com/Av_Docs/CSS/ADS-1.css (easylist.txt: 47978) -.aviationdocumentstorage.com/Av_Docs/CSS/ADS-1\.css -# @@||autotrader.co.uk/static/*/images/adv/icons.png (easylist.txt: 47973) -.autotrader.co.uk/static/.*/images/adv/icons\.png -# @@||auctionzip.com/cgi-bin/showimage.cgi? (easylist.txt: 47965) -.auctionzip.com/cgi-bin/showimage\.cgi\? -# @@||att.com/images/*/admanager/ (easylist.txt: 47963) -.att.com/images/.*/admanager/ -# @@||athena365.com/web/components/ads/rma.html (easylist.txt: 47962) -.athena365.com/web/components/ads/rma\.html -# @@||asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training.png (easylist.txt: 47961) -.asterisk.org/sites/asterisk/files/mce_files/graphics/ads/ad-training\.png -# @@||assiniboine.mb.ca/files/intrasite_ads/ (easylist.txt: 47958) -.assiniboine.mb.ca/files/intrasite_ads/ -# @@||arthurbrokerage.com/Websites/arthur/templates/overture/ (easylist.txt: 47949) -.arthurbrokerage.com/Websites/arthur/templates/overture/ -# @@||armorgames.com^$elemhide (easylist.txt: 47948) -.armorgames.com -# @@||architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite.png (easylist.txt: 47946) -.architecturaldigest.com/etc/designs/ad/images/shell/ad-sprite\.png -# @@||archiproducts.com/adv/ (easylist.txt: 47945) -.archiproducts.com/adv/ -# @@||apwg.org/images/sponsors/ (easylist.txt: 47943) -.apwg.org/images/sponsors/ -# @@||apple.com^*/video-ad.html (easylist.txt: 47940) -.apple.com/.*/video-ad\.html -# @@||apple.com^*/includes/ads (easylist.txt: 47939) -.apple.com/.*/includes/ads -# @@||apmex.com/resources/ads/ (easylist.txt: 47934) -.apmex.com/resources/ads/ -# @@||aone-soft.com/style/images/ad*.jpg (easylist.txt: 47928) -.aone-soft.com/style/images/ad.*\.jpg -# @@||andcorp.com.au^*.swf?clicktag= (easylist.txt: 47919) -.andcorp.com.au/.*\.swf\?clicktag= -# @@||amiblood.com/Images/ad.jpg (easylist.txt: 47916) -.amiblood.com/Images/ad\.jpg -# @@||amctv.com/commons/advertisement/js/AdFrame.js (easylist.txt: 47915) -.amctv.com/commons/advertisement/js/AdFrame\.js -# @@||alluc.ee/js/advertisement.js (easylist.txt: 47897) -.alluc.ee/js/advertisement\.js -# @@||al.com/static/common/js/ads/ads.js (easylist.txt: 47894) -.al.com/static/common/js/ads/ads\.js -# @@||akamaihd.net/hads-*.mp4? (easylist.txt: 47892) -.akamaihd.net/hads-.*\.mp4\? -# @@||ajmadison.com/images/adverts/ (easylist.txt: 47887) -.ajmadison.com/images/adverts/ -# @@||airguns.net/classifieds/ad_images/ (easylist.txt: 47883) -.airguns.net/classifieds/ad_images/ -# @@||airguns.net/advertisement_images/ (easylist.txt: 47882) -.airguns.net/advertisement_images/ -# @@||africam.com/adimages/ (easylist.txt: 47879) -.africam.com/adimages/ -# @@||affiliates.unpakt.com/widget_loader/widget_loader.js (easylist.txt: 47877) -.affiliates.unpakt.com/widget_loader/widget_loader\.js -# @@||affiliate.kickapps.com/service/ (easylist.txt: 47872) -.affiliate.kickapps.com/service/ -# @@||advertising.scoop.co.nz^ (easylist.txt: 47857) -.advertising.scoop.co.nz -# @@||adv.blogupp.com^ (easylist.txt: 47840) -.adv.blogupp.com -# @@||adultvideotorrents.com/assets/blockblock/advertisement.js (easylist.txt: 47838) -.adultvideotorrents.com/assets/blockblock/advertisement\.js -# @@||adssecurity.com/app_themes/ads/images/ (easylist.txt: 47828) -.adssecurity.com/app_themes/ads/images/ -# @@||adserver.bworldonline.com^ (easylist.txt: 47809) -.adserver.bworldonline.com -# @@||adserver.bigwigmedia.com/ingamead3.swf (easylist.txt: 47808) -.adserver.bigwigmedia.com/ingamead3\.swf -# @@||ads.yimg.com^*videoadmodule*.swf (easylist.txt: 47793) -.ads.yimg.com/.*videoadmodule.*\.swf -# @@||ads.yimg.com^*/search/b/syc_logo_2.gif (easylist.txt: 47792) -.ads.yimg.com/.*/search/b/syc_logo_2\.gif -# @@||ads.yimg.com/ev/eu/any/vint/videointerstitial*.js (easylist.txt: 47789) -.ads.yimg.com/ev/eu/any/vint/videointerstitial.*\.js -# @@||ads.songs.pk/openx/www/delivery/ (easylist.txt: 47779) -.ads.songs.pk/openx/www/delivery/ -# @@||ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ (easylist.txt: 47771) -.ads.pandora.tv/netinsight/text/pandora_global/channel/icf@ -# @@||ads.nationmedia.com/webfonts/$font (easylist.txt: 47768) -.ads.nationmedia.com/webfonts/ -# @@||ads.memo2.nl^ (easylist.txt: 47766) -.ads.memo2.nl -# @@||ads.mefeedia.com/flash/flowplayer.controls-3.0.2.min.js (easylist.txt: 47765) -.ads.mefeedia.com/flash/flowplayer\.controls-3\.0\.2\.min\.js -# @@||ads.mefeedia.com/flash/flowplayer-3.1.2.min.js (easylist.txt: 47764) -.ads.mefeedia.com/flash/flowplayer-3\.1\.2\.min\.js -# @@||ads.globo.com^*/globovideo/player/ (easylist.txt: 47754) -.ads.globo.com/.*/globovideo/player/ -# @@||ads.foxnews.com/js/omtr_code.js (easylist.txt: 47752) -.ads.foxnews.com/js/omtr_code\.js -# @@||ads.foxnews.com/js/adv2.js (easylist.txt: 47751) -.ads.foxnews.com/js/adv2\.js -# @@||ads.foxnews.com/js/ad.js (easylist.txt: 47750) -.ads.foxnews.com/js/ad\.js -# @@||ads.foxnews.com/api/*-slideshow-data.js? (easylist.txt: 47749) -.ads.foxnews.com/api/.*-slideshow-data\.js\? -# @@||ads.fox.com/fox/black_2sec_600.flv (easylist.txt: 47748) -.ads.fox.com/fox/black_2sec_600\.flv -# @@||adf.ly/static/image/ad_top_bg.png (easylist.txt: 47710) -.adf.ly/static/image/ad_top_bg\.png -# @@||adf.ly/images/ad*.png (easylist.txt: 47709) -.adf.ly/images/ad.*\.png -# @@||addictinggames.com^*/mtvi_ads_reporting.js (easylist.txt: 47707) -.addictinggames.com/.*/mtvi_ads_reporting\.js -# @@||adap.tv/redir/javascript/vpaid.js (easylist.txt: 47698) -.adap.tv/redir/javascript/vpaid\.js -# @@||ad.reebonz.com/www/ (easylist.txt: 47677) -.ad.reebonz.com/www/ -# @@||abcnews.go.com/assets/static/ads/fwps.js (easylist.txt: 47658) -.abcnews.go.com/assets/static/ads/fwps\.js -# @@||abcnews.com/assets/static/ads/fwps.js (easylist.txt: 47657) -.abcnews.com/assets/static/ads/fwps\.js -# @@||a.giantrealm.com/assets/vau/grplayer*.swf (easylist.txt: 47653) -.a.giantrealm.com/assets/vau/grplayer.*\.swf -# @@||961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON.png (easylist.txt: 47649) -.961bobfm.com/Pics/Ad%20Images/LISTEN_LIVE_BUTTON\.png -# @@||6waves.com/js/adshow.js (easylist.txt: 47648) -.6waves.com/js/adshow\.js -# @@||6waves.com/ads/720x300/ (easylist.txt: 47647) -.6waves.com/ads/720x300/ -# @@||53.com/resources/images/ad-rotator/ (easylist.txt: 47646) -.53.com/resources/images/ad-rotator/ -# @@||360gig.com/images/1_468x60.png (easylist.txt: 47644) -.360gig.com/images/1_468x60\.png -# @@||24ur.com/static/*/banners.js (easylist.txt: 47634) -.24ur.com/static/.*/banners\.js -# @@||24ur.com/adserver/adall. (easylist.txt: 47633) -.24ur.com/adserver/adall\. -# @@||247realmedia.com^*/farecomp/ (easylist.txt: 47632) -.247realmedia.com/.*/farecomp/ -# @@||192.168.*/images/adv_ (easylist.txt: 47627) -.192.168.*./(.*/)?images/adv_ -# @@||thegatewaypundit.com/wp-includes/images/rss.png (easylist.txt: 35561) -.thegatewaypundit.com/wp-includes/images/rss\.png -# @@||thegatewaypundit.com/wp-content/uploads/submit_tip.png (easylist.txt: 35560) -.thegatewaypundit.com/wp-content/uploads/submit_tip\.png -# @@||explosm.net/img/nav-button_random@2x.png| (easylist.txt: 35496) -.explosm.net/img/nav-button_random@2x\.png$ -# @@||explosm.net/img/nav-button_previous@2x.png| (easylist.txt: 35495) -.explosm.net/img/nav-button_previous@2x\.png$ -# @@||explosm.net/img/nav-button_next@2x.png| (easylist.txt: 35494) -.explosm.net/img/nav-button_next@2x\.png$ -# @@||explosm.net/img/nav-button_newest@2x.png| (easylist.txt: 35493) -.explosm.net/img/nav-button_newest@2x\.png$ -# @@||explosm.net/img/nav-button_first@2x.png| (easylist.txt: 35492) -.explosm.net/img/nav-button_first@2x\.png$ -# @@||explosm.net/img/logo.png (easylist.txt: 35491) -.explosm.net/img/logo\.png -# @@||conservativevideos.com^$generichide (easylist.txt: 35481) -.conservativevideos.com -# @@||speedtest.net/javascript/swfobject.js (easylist.txt: 35428) -.speedtest.net/javascript/swfobject\.js -# @@||speedtest.net/javascript/speedtest-main.js?v= (easylist.txt: 35427) -.speedtest.net/javascript/speedtest-main\.js\?v= -# @@||speedtest.net/javascript/speedtest-main.js?p=*&r=*&q=*%3*&s=*%3*= (easylist.txt: 35426) -.speedtest.net/javascript/speedtest-main\.js\?p=.*&r=.*&q=.*%3.*&s=.*%3.*= -# @@||speedtest.net/javascript/jquery.ui*.js (easylist.txt: 35425) -.speedtest.net/javascript/jquery\.ui.*\.js -# @@||speedtest.net/javascript/jquery.tipTip.js (easylist.txt: 35424) -.speedtest.net/javascript/jquery\.tipTip\.js -# @@||speedtest.net/javascript/jquery.placeholder.min.js (easylist.txt: 35423) -.speedtest.net/javascript/jquery\.placeholder\.min\.js -# @@||speedtest.net/javascript/jquery-*.min.js (easylist.txt: 35422) -.speedtest.net/javascript/jquery-.*\.min\.js -# @@||speedtest.net/javascript/highcharts.js (easylist.txt: 35421) -.speedtest.net/javascript/highcharts\.js -# @@||speedtest.net/javascript/functions.js (easylist.txt: 35420) -.speedtest.net/javascript/functions\.js -# @@||speedtest.net/javascript/extMouseWheel.js (easylist.txt: 35419) -.speedtest.net/javascript/extMouseWheel\.js -# @@||exashare.com/ad.js (easylist.txt: 35372) -.exashare.com/ad\.js - -#ab2p-unblock-request-Aaijov-Caijov -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaijov} \ - +server-header-tagger{ab2p-unblock-request-Caijov} \ -} -TAG:^ab2p-unblock-request-Aaijov-Caijov$ - -#ab2p-unblock-request-Aaijov-Caijov-when-R137 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaijov-Caijov-when-R137} \ -} -# @@||rackcdn.com^$image,object-subrequest,script,domain=cbs.com (easylistchina+easylist.txt: 60683) -.rackcdn.com -# @@||rackcdn.com^$image,object-subrequest,script,domain=cbs.com (easylist.txt: 50198) -.rackcdn.com - -#ab2p-unblock-request-Aaijov-Caijov-when-R166 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaijov-Caijov-when-R166} \ -} -# @@||partners.thefilter.com/dailymotionservice/$image,object-subrequest,script,domain=dailymotion.com (easylistchina+easylist.txt: 59347) -.partners.thefilter.com/dailymotionservice/ -# @@||partners.thefilter.com/dailymotionservice/$image,object-subrequest,script,domain=dailymotion.com (easylist.txt: 48862) -.partners.thefilter.com/dailymotionservice/ - -#ab2p-unblock-request-Aaijsv-Caijsv -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaijsv} \ - +server-header-tagger{ab2p-unblock-request-Caijsv} \ -} -TAG:^ab2p-unblock-request-Aaijsv-Caijsv$ - -#ab2p-unblock-request-Aaijsv-Caijsv-when-R821 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaijsv-Caijsv-when-R821} \ -} -# @@||openx.infrontams.tv/www/$image,object,script,domain=acmilan.com (easylistchina+easylist.txt: 59300) -.openx.infrontams.tv/www/ -# @@||openx.infrontams.tv/www/$image,object,script,domain=acmilan.com (easylist.txt: 48815) -.openx.infrontams.tv/www/ - -#ab2p-unblock-request-Aaijsv-Caijsv-when-R1717 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaijsv-Caijsv-when-R1717} \ -} -# @@||tnt-online.ru/*/adfox/$image,object,script,domain=tnt-online.ru (advblock.txt: 7410) -.tnt-online.ru/.*/adfox/ - -#ab2p-unblock-request-Aaijsv-Caijsv-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaijsv-Caijsv-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Aaijsv-Caijsv-when-nR} \ -} -# @@||cellc.co.za/adserv/$image,object,script,~third-party (easylistchina+easylist.txt: 58575) -.cellc.co.za/adserv/ -# @@||cellc.co.za/adserv/$image,object,script,~third-party (easylist.txt: 48090) -.cellc.co.za/adserv/ - -#ab2p-unblock-request-Aaiov-Caiov -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaiov} \ - +server-header-tagger{ab2p-unblock-request-Caiov} \ -} -TAG:^ab2p-unblock-request-Aaiov-Caiov$ - -#ab2p-unblock-request-Aaiov-Caiov-when-R393 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaiov-Caiov-when-R393} \ -} -# @@||youporn.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61723) -.youporn.phncdn.com -# @@||static.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61700) -.static.tube8.phncdn.com -# @@||redtubefiles.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61697) -.redtubefiles.com -# @@||pornhub.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61666) -.pornhub.phncdn.com -# @@||keezmovies.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61484) -.keezmovies.phncdn.com -# @@||image.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61483) -.image.tube8.phncdn.com -# @@||extremetube.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61481) -.extremetube.phncdn.com -# @@||youporn.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51238) -.youporn.phncdn.com -# @@||static.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51215) -.static.tube8.phncdn.com -# @@||redtubefiles.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51212) -.redtubefiles.com -# @@||pornhub.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51181) -.pornhub.phncdn.com -# @@||keezmovies.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50999) -.keezmovies.phncdn.com -# @@||image.tube8.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50998) -.image.tube8.phncdn.com -# @@||extremetube.phncdn.com^$image,object-subrequest,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50996) -.extremetube.phncdn.com - -#ab2p-unblock-request-Aaisv-Caisv -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaisv} \ - +server-header-tagger{ab2p-unblock-request-Caisv} \ -} -TAG:^ab2p-unblock-request-Aaisv-Caisv$ - -#ab2p-unblock-request-Aaisv-Caisv-when-R888 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaisv-Caisv-when-R888} \ -} -# @@/adfox/*$image,object,domain=alfabank.ru|megafon.ru|sovsport.ru (advblock.txt: 7184) -/(.*/)?adfox/.* - -#ab2p-unblock-request-Aaisv-Caisv-when-R1462 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaisv-Caisv-when-R1462} \ -} -# @@||media.newjobs.com/ads/$image,object,domain=monster.com (easylistchina+easylist.txt: 59154) -.media.newjobs.com/ads/ -# @@||media.newjobs.com/ads/$image,object,domain=monster.com (easylist.txt: 48669) -.media.newjobs.com/ads/ - -#ab2p-unblock-request-Aajosv-Cajosv -{-block \ - +client-header-tagger{ab2p-unblock-request-Aajosv} \ - +server-header-tagger{ab2p-unblock-request-Cajosv} \ -} -TAG:^ab2p-unblock-request-Aajosv-Cajosv$ - -#ab2p-unblock-request-Aajosv-Cajosv-when-R1325 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aajosv-Cajosv-when-R1325} \ -} -# @@||cdn.vdopia.com^$object,object-subrequest,script,domain=indiatvnews.com|intoday.in|moneycontrol.com (easylistchina+easylist.txt: 58574) -.cdn.vdopia.com -# @@||cdn.vdopia.com^$object,object-subrequest,script,domain=indiatvnews.com|intoday.in|moneycontrol.com (easylist.txt: 48089) -.cdn.vdopia.com - -#ab2p-unblock-request-Aajov-Cajov -{-block \ - +client-header-tagger{ab2p-unblock-request-Aajov} \ - +server-header-tagger{ab2p-unblock-request-Cajov} \ -} -# @@||as.webmd.com/html.ng/transactionid=$object-subrequest,script,subdocument (easylistchina+easylist.txt: 58439) -.as.webmd.com/html\.ng/transactionid= -# @@||as.webmd.com/html.ng/transactionid=$object-subrequest,script,subdocument (easylist.txt: 47954) -.as.webmd.com/html\.ng/transactionid= - -#ab2p-unblock-request-Aajsv-Cajsv -{-block \ - +client-header-tagger{ab2p-unblock-request-Aajsv} \ - +server-header-tagger{ab2p-unblock-request-Cajsv} \ -} -TAG:^ab2p-unblock-request-Aajsv-Cajsv$ -# @@||streamlive.to/ads/$object,script (easylistchina+easylist.txt: 59597) -.streamlive.to/ads/ -# @@||streamlive.to/ads/$object,script (easylist.txt: 49112) -.streamlive.to/ads/ - -#ab2p-unblock-request-Aajsv-Cajsv-when-R775 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aajsv-Cajsv-when-R775} \ -} -# @@||adsocial.ru/app/$object,script,domain=178.63.99.21 (advblock.txt: 6969) -.adsocial.ru/app/ - -#ab2p-unblock-request-Aajsv-Cajsv-when-R785 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aajsv-Cajsv-when-R785} \ -} -# @@||rwjfs.com^$object,script,domain=2mm.tv|2mmei.com (easylistchina+easylist.txt: 10354) -.rwjfs.com - -#ab2p-unblock-request-Aajsv-Cajsv-when-R1094 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aajsv-Cajsv-when-R1094} \ -} -# @@||oas.di.se/RealMedia/ads/Creatives/di.se/$object,script,domain=di.se (easylistchina+easylist.txt: 61075) -.oas.di.se/RealMedia/ads/Creatives/di\.se/ -# @@||oas.di.se/RealMedia/ads/Creatives/di.se/$object,script,domain=di.se (easylist.txt: 50590) -.oas.di.se/RealMedia/ads/Creatives/di\.se/ - -#ab2p-unblock-request-Aajsv-Cajsv-when-R1388 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aajsv-Cajsv-when-R1388} \ -} -# @@||sascdn.com/video/$object,script,domain=ligtv.com.tr (easylistchina+easylist.txt: 61108) -.sascdn.com/video/ -# @@||sascdn.com/video/$object,script,domain=ligtv.com.tr (easylist.txt: 50623) -.sascdn.com/video/ - -#ab2p-unblock-request-Aaosv-Caosv -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaosv} \ - +server-header-tagger{ab2p-unblock-request-Caosv} \ -} -# @@||moviezone.cz/swf/ad-player/$object,object-subrequest (easylistchina+easylist.txt: 61068) -.moviezone.cz/swf/ad-player/ -# @@||perezhilton.com^*-without-ads-$object,object-subrequest,subdocument (easylistchina+easylist.txt: 59358) -.perezhilton.com/.*-without-ads- -# @@||lads.myspace.com/videos/msvideoplayer.swf?$object,object-subrequest (easylistchina+easylist.txt: 59074) -.lads.myspace.com/videos/msvideoplayer\.swf\? -# @@||indiatimes.com/configspace/ads/$object,object-subrequest (easylistchina+easylist.txt: 59008) -.indiatimes.com/configspace/ads/ -# @@||games.cnn.com/ad/$object,object-subrequest,subdocument (easylistchina+easylist.txt: 58864) -.games.cnn.com/ad/ -# @@||chibis.adotube.com/napp/$object,object-subrequest (easylistchina+easylist.txt: 58589) -.chibis.adotube.com/napp/ -# @@||chibis.adotube.com/appruntime/player/$object,object-subrequest (easylistchina+easylist.txt: 58587) -.chibis.adotube.com/appruntime/player/ -# @@||moviezone.cz/swf/ad-player/$object,object-subrequest (easylist.txt: 50583) -.moviezone.cz/swf/ad-player/ -# @@||perezhilton.com^*-without-ads-$object,object-subrequest,subdocument (easylist.txt: 48873) -.perezhilton.com/.*-without-ads- -# @@||lads.myspace.com/videos/msvideoplayer.swf?$object,object-subrequest (easylist.txt: 48589) -.lads.myspace.com/videos/msvideoplayer\.swf\? -# @@||indiatimes.com/configspace/ads/$object,object-subrequest (easylist.txt: 48523) -.indiatimes.com/configspace/ads/ -# @@||games.cnn.com/ad/$object,object-subrequest,subdocument (easylist.txt: 48379) -.games.cnn.com/ad/ -# @@||chibis.adotube.com/napp/$object,object-subrequest (easylist.txt: 48104) -.chibis.adotube.com/napp/ -# @@||chibis.adotube.com/appruntime/player/$object,object-subrequest (easylist.txt: 48102) -.chibis.adotube.com/appruntime/player/ - -#ab2p-unblock-request-Aaosv-Caosv-Xx -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaosv} \ - +server-header-tagger{ab2p-unblock-request-Caosv} \ - +client-header-tagger{ab2p-unblock-request-Xx} \ -} -# @@||apple.com^*/ads/$object,object-subrequest,xmlhttprequest (easylistchina+easylist.txt: 58421) -.apple.com/.*/ads/ -# @@||apple.com^*/ads/$object,object-subrequest,xmlhttprequest (easylist.txt: 47936) -.apple.com/.*/ads/ #ab2p-unblock-request-Aaov-Caov {-block \ +client-header-tagger{ab2p-unblock-request-Aaov} \ +server-header-tagger{ab2p-unblock-request-Caov} \ } -TAG:^ab2p-unblock-request-Aaov-Caov$ -# @@||tnaflix.com/ad/$object-subrequest (easylistchina+easylist.txt: 61465) -.tnaflix.com/ad/ -# @@||ad.thisav.com/player/config.xml$object-subrequest (easylistchina+easylist.txt: 61425) -.ad.thisav.com/player/config\.xml -# @@||videonuz.ensonhaber.com/player/hdflvplayer/xml/ads.xml?$object-subrequest (easylistchina+easylist.txt: 61145) -.videonuz.ensonhaber.com/player/hdflvplayer/xml/ads\.xml\? -# @@||uol.com.br/html.ng/*&affiliate=$object-subrequest (easylistchina+easylist.txt: 61140) -.uol.com.br/html\.ng/.*&affiliate= -# @@||tvn.adocean.pl^$object-subrequest (easylistchina+easylist.txt: 61139) -.tvn.adocean.pl -# @@||smartadserver.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61117) -.smartadserver.com/crossdomain\.xml -# @@||smart.allocine.fr/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61112) -.smart.allocine.fr/crossdomain\.xml -# @@||skai.gr/advert/*.flv$object-subrequest (easylistchina+easylist.txt: 61111) -.skai.gr/advert/.*\.flv -# @@||moviezone.cz//moviezone/reklama/$object-subrequest (easylistchina+easylist.txt: 61067) -# @@||megatv.com^*/adverts.asp?$object-subrequest (easylistchina+easylist.txt: 61061) -.megatv.com/.*/adverts\.asp\? -# @@||emediate.se/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61014) -.emediate.se/crossdomain\.xml -# @@||emediate.eu/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 61012) -.emediate.eu/crossdomain\.xml -# @@||bn.uol.com.br/html.ng/$object-subrequest (easylistchina+easylist.txt: 60994) -.bn.uol.com.br/html\.ng/ -# @@||autotube.cz/ui/player/ad.php?id=$object-subrequest (easylistchina+easylist.txt: 60985) -.autotube.cz/ui/player/ad\.php\?id= -# @@||atresplayer.com/static/imgs/no_ads.jpg$object-subrequest (easylistchina+easylist.txt: 60983) -.atresplayer.com/static/imgs/no_ads\.jpg -# @@||applevideo.edgesuite.net/admedia/$object-subrequest (easylistchina+easylist.txt: 60982) -.applevideo.edgesuite.net/admedia/ -# @@||ads.us.e-planning.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60952) -.ads.us.e-planning.net/crossdomain\.xml -# @@||ads.telecinco.es/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60950) -.ads.telecinco.es/crossdomain\.xml -# @@||ads.postimees.ee/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60949) -.ads.postimees.ee/crossdomain\.xml -# @@||ads.peteava.ro/www/serve_ads/serve2.php?campaign=$object-subrequest (easylistchina+easylist.txt: 60948) -.ads.peteava.ro/www/serve_ads/serve2\.php\?campaign= -# @@||ads.peteava.ro/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60947) -.ads.peteava.ro/crossdomain\.xml -# @@||ads.hosting.vcmedia.vn/jinfo.ashx?$object-subrequest (easylistchina+easylist.txt: 60945) -.ads.hosting.vcmedia.vn/jinfo\.ashx\? -# @@||ads.hosting.vcmedia.vn/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60944) -.ads.hosting.vcmedia.vn/crossdomain\.xml -# @@||zoomin.tv/adhandler/amalia.adm?$object-subrequest (easylistchina+easylist.txt: 60923) -.zoomin.tv/adhandler/amalia\.adm\? -# @@||telemetryverification.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60789) -.telemetryverification.net/crossdomain\.xml -# @@||monsoonads.com:8080/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60542) -.monsoonads.com:8080/crossdomain\.xml -# @@||monsoonads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60541) -.monsoonads.com/crossdomain\.xml -# @@||lasexta.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60454) -.lasexta.com/adsxml/ -# @@||inskinmedia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 60421) -.inskinmedia.com/crossdomain\.xml -# @@||channel4.com/p/c4_live/VPAIDAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60153) -.channel4.com/p/c4_live/VPAIDAdRenderer\.swf -# @@||channel4.com/p/c4_live/Video2AdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60152) -.channel4.com/p/c4_live/Video2AdRenderer\.swf -# @@||channel4.com/p/c4_live/UberlayAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60151) -.channel4.com/p/c4_live/UberlayAdRenderer\.swf -# @@||channel4.com/p/c4_live/PauseAdExtension.swf$object-subrequest (easylistchina+easylist.txt: 60150) -.channel4.com/p/c4_live/PauseAdExtension\.swf -# @@||channel4.com/p/c4_live/ExternalHTMLAdRenderer.swf$object-subrequest (easylistchina+easylist.txt: 60149) -.channel4.com/p/c4_live/ExternalHTMLAdRenderer\.swf -# @@||channel4.com/ad/l/1?|$object-subrequest (easylistchina+easylist.txt: 60148) -.channel4.com/ad/l/1\?$ -# @@||atresplayer.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60084) -.atresplayer.com/adsxml/ -# @@||atresmedia.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60083) -.atresmedia.com/adsxml/ -# @@||antena3.com/adsxml/$object-subrequest (easylistchina+easylist.txt: 60071) -.antena3.com/adsxml/ -# @@||zedo.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59873) -.zedo.com/crossdomain\.xml -# @@||zattoo.com/?advideo/*;vidAS=PRE_ROLL;$object-subrequest (easylistchina+easylist.txt: 59870) -.zattoo.com/\?advideo/.*;vidAS=PRE_ROLL; -# @@||yumenetworks.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59867) -.yumenetworks.com/crossdomain\.xml -# @@||yahoo.net/1/adnetwork/$object-subrequest (easylistchina+easylist.txt: 59841) -.yahoo.net/1/adnetwork/ -# @@||vindicoasset.edgesuite.net/repository/campaigncreative/*/instreamad/$object-subrequest (easylistchina+easylist.txt: 59772) -.vindicoasset.edgesuite.net/repository/campaigncreative/.*/instreamad/ -# @@||videosxml.mobileads.indiatimes.com^$object-subrequest (easylistchina+easylist.txt: 59762) -.videosxml.mobileads.indiatimes.com -# @@||vad.go.com/dynamicvideoad?$object-subrequest (easylistchina+easylist.txt: 59744) -.vad.go.com/dynamicvideoad\? -# @@||v.fwmrm.net/p/espn_live/$object-subrequest (easylistchina+easylist.txt: 59741) -.v.fwmrm.net/p/espn_live/ -# @@||v.fwmrm.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59740) -.v.fwmrm.net/crossdomain\.xml -# @@||utarget.co.uk/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59733) -.utarget.co.uk/crossdomain\.xml -# @@||tubemogul.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59705) -.tubemogul.com/crossdomain\.xml -# @@||tubemogul.com/bootloader/tubemogulflowplayer.swf$object-subrequest (easylistchina+easylist.txt: 59704) -.tubemogul.com/bootloader/tubemogulflowplayer\.swf -# @@||trutv.com/includes/banners/de/video/*.ad|$object-subrequest (easylistchina+easylist.txt: 59703) -.trutv.com/includes/banners/de/video/.*\.ad$ -# @@||tremor.nuggad.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59697) -.tremor.nuggad.net/crossdomain\.xml -# @@||tnol.com/adimages/digitaledition/$object-subrequest (easylistchina+easylist.txt: 59670) -.tnol.com/adimages/digitaledition/ -# @@||timesofmalta.com/videoads/*preroll.flv$object-subrequest (easylistchina+easylist.txt: 59664) -.timesofmalta.com/videoads/.*preroll\.flv -# @@||thenewsroom.com^*/advertisement.xml$object-subrequest (easylistchina+easylist.txt: 59646) -.thenewsroom.com/.*/advertisement\.xml -# @@||thekraftgroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59642) -.thekraftgroup.com/crossdomain\.xml -# @@||streaming.gmgradio.com/adverts/*.mp3$object-subrequest (easylistchina+easylist.txt: 59596) -.streaming.gmgradio.com/adverts/.*\.mp3 -# @@||spotxchange.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59571) -.spotxchange.com/crossdomain\.xml -# @@||spotrails.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59568) -.spotrails.com/crossdomain\.xml -# @@||sploder.com/prerollad.swf?s=$object-subrequest (easylistchina+easylist.txt: 59565) -.sploder.com/prerollad\.swf\?s= -# @@||sonicstate.com/video/hd/hdconfig-geo.cfm?$object-subrequest (easylistchina+easylist.txt: 59558) -.sonicstate.com/video/hd/hdconfig-geo\.cfm\? -# @@||server.cpmstar.com/adviewas3.swf?contentspotid=$object-subrequest (easylistchina+easylist.txt: 59517) -.server.cpmstar.com/adviewas3\.swf\?contentspotid= -# @@||serve.vdopia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59514) -.serve.vdopia.com/crossdomain\.xml -# @@||scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors.xml$object-subrequest (easylistchina+easylist.txt: 59500) -.scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors\.xml -# @@||scanscout.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59494) -.scanscout.com/crossdomain\.xml -# @@||sascdn.com^*/jwplayerAdPlugin.swf$object-subrequest (easylistchina+easylist.txt: 59491) -.sascdn.com/.*/jwplayerAdPlugin\.swf -# @@||sascdn.com^*/jwplayer-plugin.swf?$object-subrequest (easylistchina+easylist.txt: 59490) -.sascdn.com/.*/jwplayer-plugin\.swf\? -# @@||sascdn.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59489) -.sascdn.com/crossdomain\.xml -# @@||revit.eu/static/uploads/images/themes/banners/small-banner-$object-subrequest (easylistchina+easylist.txt: 59458) -.revit.eu/static/uploads/images/themes/banners/small-banner- -# @@||player.onescreen.net/*/MediaPlayer.swf?ads=$object-subrequest (easylistchina+easylist.txt: 59388) -.player.onescreen.net/.*/MediaPlayer\.swf\?ads= -# @@||player.goviral-content.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59387) -.player.goviral-content.com/crossdomain\.xml -# @@||ping.indieclicktv.com/www/delivery/ajs.php?zoneid$object-subrequest (easylistchina+easylist.txt: 59375) -.ping.indieclicktv.com/www/delivery/ajs\.php\?zoneid -# @@||partners.thefilter.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59346) -.partners.thefilter.com/crossdomain\.xml -# @@||oascentral.surfline.com/realmedia/ads/adstream_sx.ads/www.surfline.com/articles$object-subrequest (easylistchina+easylist.txt: 59282) -.oascentral.surfline.com/realmedia/ads/adstream_sx\.ads/www\.surfline\.com/articles -# @@||oascentral.surfline.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59281) -.oascentral.surfline.com/crossdomain\.xml -# @@||oascentral.sumworld.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59278) -.oascentral.sumworld.com/crossdomain\.xml -# @@||oascentral.post-gazette.com/realmedia/ads/$object-subrequest (easylistchina+easylist.txt: 59277) -.oascentral.post-gazette.com/realmedia/ads/ -# @@||oascentral.ibtimes.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59276) -.oascentral.ibtimes.com/crossdomain\.xml -# @@||oas.absoluteradio.co.uk/realmedia/ads/$object-subrequest (easylistchina+easylist.txt: 59269) -.oas.absoluteradio.co.uk/realmedia/ads/ -# @@||nextmedia.com/admedia/$object-subrequest (easylistchina+easylist.txt: 59243) -.nextmedia.com/admedia/ -# @@||marines.com/videos/commercials/$object-subrequest (easylistchina+easylist.txt: 59141) -.marines.com/videos/commercials/ -# @@||mads.com.com/ads/common/faith/*.xml$object-subrequest (easylistchina+easylist.txt: 59123) -.mads.com.com/ads/common/faith/.*\.xml -# @@||mads.cbs.com/mac-ad?$object-subrequest (easylistchina+easylist.txt: 59122) -.mads.cbs.com/mac-ad\? -# @@||ltassrv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59114) -.ltassrv.com/crossdomain\.xml -# @@||inviziads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 59030) -.inviziads.com/crossdomain\.xml -# @@||imasdk.googleapis.com/flash/sdkloader/adsapi_3.swf$object-subrequest (easylistchina+easylist.txt: 58989) -.imasdk.googleapis.com/flash/sdkloader/adsapi_3\.swf -# @@||imasdk.googleapis.com/flash/core/3.*/adsapi.swf$object-subrequest (easylistchina+easylist.txt: 58988) -.imasdk.googleapis.com/flash/core/3\..*/adsapi\.swf -# @@||images.forbes.com/video/ads/blank_frame.flv$object-subrequest (easylistchina+easylist.txt: 58979) -.images.forbes.com/video/ads/blank_frame\.flv -# @@||ibnlive.com/videoads/*_ads_*.xml$object-subrequest (easylistchina+easylist.txt: 58965) -.ibnlive.com/videoads/.*_ads_.*\.xml -# @@||hellotv.in/livetv/advertisements.xml$object-subrequest (easylistchina+easylist.txt: 58939) -.hellotv.in/livetv/advertisements\.xml -# @@||healthadnet.adprimemedia.com/vn/vna/data/ad.php$object-subrequest (easylistchina+easylist.txt: 58933) -.healthadnet.adprimemedia.com/vn/vna/data/ad\.php -# @@||godtube.com/resource/mediaplayer/*&adzone=$object-subrequest (easylistchina+easylist.txt: 58889) -.godtube.com/resource/mediaplayer/.*&adzone= -# @@||g.doubleclick.net/pagead/ads?ad_type=text_dynamicimage_flash^$object-subrequest (easylistchina+easylist.txt: 58856) -.g.doubleclick.net/pagead/ads\?ad_type=text_dynamicimage_flash[^\w%.-] -# @@||fifa.com/flash/videoplayer/libs/advert_$object-subrequest (easylistchina+easylist.txt: 58821) -.fifa.com/flash/videoplayer/libs/advert_ -# @@||festina.com/txt/advertising.xml$object-subrequest (easylistchina+easylist.txt: 58819) -.festina.com/txt/advertising\.xml -# @@||feeds.videogamer.com^*/videoad.xml?$object-subrequest (easylistchina+easylist.txt: 58818) -.feeds.videogamer.com/.*/videoad\.xml\? -# @@||faceinhole.com/adsense.swf$object-subrequest (easylistchina+easylist.txt: 58813) -.faceinhole.com/adsense\.swf -# @@||epicgameads.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58785) -.epicgameads.com/crossdomain\.xml -# @@||edgar.pro-g.co.uk/data/*/videos/adverts/$object-subrequest (easylistchina+easylist.txt: 58766) -.edgar.pro-g.co.uk/data/.*/videos/adverts/ -# @@||dstw.adgear.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58751) -.dstw.adgear.com/crossdomain\.xml -# @@||doubleclick.net/ad/can/chow/$object-subrequest (easylistchina+easylist.txt: 58692) -.doubleclick.net/ad/can/chow/ -# @@||disney.go.com/dxd/data/ads/game_ad.xml?gameid=$object-subrequest (easylistchina+easylist.txt: 58679) -.disney.go.com/dxd/data/ads/game_ad\.xml\?gameid= -# @@||dc.tremormedia.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58659) -.dc.tremormedia.com/crossdomain\.xml -# @@||data.panachetech.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58652) -.data.panachetech.com/crossdomain\.xml -# @@||dart.clearchannel.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58651) -.dart.clearchannel.com/crossdomain\.xml -# @@||contactmusic.com/advertpro/servlet/view/dynamic/$object-subrequest (easylistchina+easylist.txt: 58616) -.contactmusic.com/advertpro/servlet/view/dynamic/ -# @@||collective-media.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58604) -.collective-media.net/crossdomain\.xml -# @@||checkm8.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58585) -.checkm8.com/crossdomain\.xml -# @@||btrll.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58524) -.btrll.com/crossdomain\.xml -# @@||brainient.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58515) -.brainient.com/crossdomain\.xml -# @@||bluetree.co.uk/hji/advertising.$object-subrequest (easylistchina+easylist.txt: 58506) -.bluetree.co.uk/hji/advertising\. -# @@||blastro.com/pl_ads.php?$object-subrequest (easylistchina+easylist.txt: 58503) -.blastro.com/pl_ads\.php\? -# @@||auditude.com^*/AuditudeAdUnit.swf$object-subrequest (easylistchina+easylist.txt: 58453) -.auditude.com/.*/AuditudeAdUnit\.swf -# @@||auditude.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58452) -.auditude.com/crossdomain\.xml -# @@||arti-mediagroup.com/flowplayer/amta_plugin.swf$object-subrequest (easylistchina+easylist.txt: 58436) -.arti-mediagroup.com/flowplayer/amta_plugin\.swf -# @@||arti-mediagroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58435) -.arti-mediagroup.com/crossdomain\.xml -# @@||andomediagroup.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58406) -.andomediagroup.com/crossdomain\.xml -# @@||andohs.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58405) -.andohs.net/crossdomain\.xml -# @@||affiliate.kickapps.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58356) -.affiliate.kickapps.com/crossdomain\.xml -# @@||ae.amgdgt.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58354) -.ae.amgdgt.com/crossdomain\.xml -# @@||adverts.cdn.tvcatchup.com^$object-subrequest (easylistchina+easylist.txt: 58347) -.adverts.cdn.tvcatchup.com -# @@||adtechus.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58321) -.adtechus.com/crossdomain\.xml -# @@||adtech.de/?advideo/3.0/1215.1/3228528/*;vidas=pre_roll;$object-subrequest (easylistchina+easylist.txt: 58316) -.adtech.de/\?advideo/3\.0/1215\.1/3228528/.*;vidas=pre_roll; -# @@||adsremote.scrippsnetworks.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58310) -.adsremote.scrippsnetworks.com/crossdomain\.xml -# @@||adshost1.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58302) -.adshost1.com/crossdomain\.xml -# @@||adserver.yahoo.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58300) -.adserver.yahoo.com/crossdomain\.xml -# @@||adserver.tvcatchup.com^$object-subrequest (easylistchina+easylist.txt: 58295) -.adserver.tvcatchup.com -# @@||ads.undertone.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58272) -.ads.undertone.com/crossdomain\.xml -# @@||ads.trutv.com/html.ng/tile=*&site=trutv&tru_tv_pos=preroll&$object-subrequest (easylistchina+easylist.txt: 58270) -.ads.trutv.com/html\.ng/tile=.*&site=trutv&tru_tv_pos=preroll& -# @@||ads.trutv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58269) -.ads.trutv.com/crossdomain\.xml -# @@||ads.nyootv.com:8080/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58255) -.ads.nyootv.com:8080/crossdomain\.xml -# @@||ads.nyootv.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58254) -.ads.nyootv.com/crossdomain\.xml -# @@||ads.intergi.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58244) -.ads.intergi.com/crossdomain\.xml -# @@||adotube.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58215) -.adotube.com/crossdomain\.xml -# @@||adnet.twitvid.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58212) -.adnet.twitvid.com/crossdomain\.xml -# @@||adimages.go.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58201) -.adimages.go.com/crossdomain\.xml -# @@||adhostingsolutions.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58200) -.adhostingsolutions.com/crossdomain\.xml -# @@||adap.tv/redir/client/adplayer.swf$object-subrequest (easylistchina+easylist.txt: 58179) -.adap.tv/redir/client/adplayer\.swf -# @@||adap.tv/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58178) -.adap.tv/crossdomain\.xml -# @@||adap.tv/control?$object-subrequest (easylistchina+easylist.txt: 58177) -.adap.tv/control\? -# @@||ad4.liverail.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58171) -.ad4.liverail.com/crossdomain\.xml -# @@||ad.smartclip.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58163) -.ad.smartclip.net/crossdomain\.xml -# @@||ad.doubleclick.net/pfadx/nbcu.nbc/rewind$object-subrequest (easylistchina+easylist.txt: 58160) -.ad.doubleclick.net/pfadx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/adx/nbcu.nbc/rewind$object-subrequest (easylistchina+easylist.txt: 58157) -.ad.doubleclick.net/adx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/ad/can/cbs/*;pausead=1;$object-subrequest (easylistchina+easylist.txt: 58153) -.ad.doubleclick.net/ad/can/cbs/.*;pausead=1; -# @@||ad.afy11.net/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58151) -.ad.afy11.net/crossdomain\.xml -# @@||ad.adserve.com/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58150) -.ad.adserve.com/crossdomain\.xml -# @@||ad.71i.de/global_js/magic/sevenload_magic.js$object-subrequest (easylistchina+easylist.txt: 58148) -.ad.71i.de/global_js/magic/sevenload_magic\.js -# @@||ad.71i.de/crossdomain.xml$object-subrequest (easylistchina+easylist.txt: 58147) -.ad.71i.de/crossdomain\.xml -# @@||33universal.adprimemedia.com/vn/vna/data/ad.php?$object-subrequest (easylistchina+easylist.txt: 58128) -.33universal.adprimemedia.com/vn/vna/data/ad\.php\? -# @@||2mdn.net/instream/flash/*/adsapi.swf$object-subrequest (easylistchina+easylist.txt: 58122) -.2mdn.net/instream/flash/.*/adsapi\.swf -# @@||yawin.cn/ad/$object-subrequest (easylistchina+easylist.txt: 10430) +# @@||yawin.cn/ad/$object-subrequest (easylistchina.txt: 10418) .yawin.cn/ad/ -# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina+easylist.txt: 10256) +# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina.txt: 10246) .go.goyeah.com/adpolestar/ -# @@||dnvod.eu/ads/$object-subrequest (easylistchina+easylist.txt: 10224) +# @@||dnvod.eu/ads/$object-subrequest (easylistchina.txt: 10208) .dnvod.eu/ads/ -# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina+easylist.txt: 10172) +# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina.txt: 10155) .appledaily.com.hk/admedia/ -# @@||hichannel.hinet.net^$object-subrequest (easylistchina+easylist.txt: 22) +# @@||hichannel.hinet.net^$object-subrequest (easylistchina.txt: 19) .hichannel.hinet.net -# @@||rutube.ru/dbg/player_stat?$object-subrequest (advblock.txt: 7598) -.rutube.ru/dbg/player_stat\? -# @@||videocore.tv^*/pladform_pitertv.swf|$object-subrequest (advblock.txt: 7425) -.videocore.tv/.*/pladform_pitertv\.swf$ -# @@||video.*.user.madbanner.ru^$object-subrequest (advblock.txt: 7420) -.video.*./.*\.user\.madbanner\.ru[^\w%.-] -.video.*.user.madbanner.ru -# @@||mediatoday.ru/storage/JWPlayerVideoClickPlugin$object-subrequest (advblock.txt: 7335) -.mediatoday.ru/storage/JWPlayerVideoClickPlugin -# @@||instreamvideo.ru/storage/InstreamVideoPlugin$object-subrequest (advblock.txt: 7317) -.instreamvideo.ru/storage/InstreamVideoPlugin -# @@||ads.rb.ru/video_banner.php$object-subrequest (advblock.txt: 7238) -.ads.rb.ru/video_banner\.php -# @@||tnaflix.com/ad/$object-subrequest (easylist.txt: 50980) -.tnaflix.com/ad/ -# @@||ad.thisav.com/player/config.xml$object-subrequest (easylist.txt: 50940) -.ad.thisav.com/player/config\.xml -# @@||videonuz.ensonhaber.com/player/hdflvplayer/xml/ads.xml?$object-subrequest (easylist.txt: 50660) -.videonuz.ensonhaber.com/player/hdflvplayer/xml/ads\.xml\? -# @@||uol.com.br/html.ng/*&affiliate=$object-subrequest (easylist.txt: 50655) -.uol.com.br/html\.ng/.*&affiliate= -# @@||tvn.adocean.pl^$object-subrequest (easylist.txt: 50654) -.tvn.adocean.pl -# @@||smartadserver.com/crossdomain.xml$object-subrequest (easylist.txt: 50632) -.smartadserver.com/crossdomain\.xml -# @@||smart.allocine.fr/crossdomain.xml$object-subrequest (easylist.txt: 50627) -.smart.allocine.fr/crossdomain\.xml -# @@||skai.gr/advert/*.flv$object-subrequest (easylist.txt: 50626) -.skai.gr/advert/.*\.flv -# @@||moviezone.cz//moviezone/reklama/$object-subrequest (easylist.txt: 50582) -# @@||megatv.com^*/adverts.asp?$object-subrequest (easylist.txt: 50576) -.megatv.com/.*/adverts\.asp\? -# @@||emediate.se/crossdomain.xml$object-subrequest (easylist.txt: 50529) -.emediate.se/crossdomain\.xml -# @@||emediate.eu/crossdomain.xml$object-subrequest (easylist.txt: 50527) -.emediate.eu/crossdomain\.xml -# @@||bn.uol.com.br/html.ng/$object-subrequest (easylist.txt: 50509) -.bn.uol.com.br/html\.ng/ -# @@||autotube.cz/ui/player/ad.php?id=$object-subrequest (easylist.txt: 50500) -.autotube.cz/ui/player/ad\.php\?id= -# @@||atresplayer.com/static/imgs/no_ads.jpg$object-subrequest (easylist.txt: 50498) -.atresplayer.com/static/imgs/no_ads\.jpg -# @@||applevideo.edgesuite.net/admedia/$object-subrequest (easylist.txt: 50497) -.applevideo.edgesuite.net/admedia/ -# @@||ads.us.e-planning.net/crossdomain.xml$object-subrequest (easylist.txt: 50467) -.ads.us.e-planning.net/crossdomain\.xml -# @@||ads.telecinco.es/crossdomain.xml$object-subrequest (easylist.txt: 50465) -.ads.telecinco.es/crossdomain\.xml -# @@||ads.postimees.ee/crossdomain.xml$object-subrequest (easylist.txt: 50464) -.ads.postimees.ee/crossdomain\.xml -# @@||ads.peteava.ro/www/serve_ads/serve2.php?campaign=$object-subrequest (easylist.txt: 50463) -.ads.peteava.ro/www/serve_ads/serve2\.php\?campaign= -# @@||ads.peteava.ro/crossdomain.xml$object-subrequest (easylist.txt: 50462) -.ads.peteava.ro/crossdomain\.xml -# @@||ads.hosting.vcmedia.vn/jinfo.ashx?$object-subrequest (easylist.txt: 50460) -.ads.hosting.vcmedia.vn/jinfo\.ashx\? -# @@||ads.hosting.vcmedia.vn/crossdomain.xml$object-subrequest (easylist.txt: 50459) -.ads.hosting.vcmedia.vn/crossdomain\.xml -# @@||zoomin.tv/adhandler/amalia.adm?$object-subrequest (easylist.txt: 50438) -.zoomin.tv/adhandler/amalia\.adm\? -# @@||telemetryverification.net/crossdomain.xml$object-subrequest (easylist.txt: 50304) -.telemetryverification.net/crossdomain\.xml -# @@||monsoonads.com:8080/crossdomain.xml$object-subrequest (easylist.txt: 50057) -.monsoonads.com:8080/crossdomain\.xml -# @@||monsoonads.com/crossdomain.xml$object-subrequest (easylist.txt: 50056) -.monsoonads.com/crossdomain\.xml -# @@||lasexta.com/adsxml/$object-subrequest (easylist.txt: 49969) -.lasexta.com/adsxml/ -# @@||inskinmedia.com/crossdomain.xml$object-subrequest (easylist.txt: 49936) -.inskinmedia.com/crossdomain\.xml -# @@||channel4.com/p/c4_live/VPAIDAdRenderer.swf$object-subrequest (easylist.txt: 49668) -.channel4.com/p/c4_live/VPAIDAdRenderer\.swf -# @@||channel4.com/p/c4_live/Video2AdRenderer.swf$object-subrequest (easylist.txt: 49667) -.channel4.com/p/c4_live/Video2AdRenderer\.swf -# @@||channel4.com/p/c4_live/UberlayAdRenderer.swf$object-subrequest (easylist.txt: 49666) -.channel4.com/p/c4_live/UberlayAdRenderer\.swf -# @@||channel4.com/p/c4_live/PauseAdExtension.swf$object-subrequest (easylist.txt: 49665) -.channel4.com/p/c4_live/PauseAdExtension\.swf -# @@||channel4.com/p/c4_live/ExternalHTMLAdRenderer.swf$object-subrequest (easylist.txt: 49664) -.channel4.com/p/c4_live/ExternalHTMLAdRenderer\.swf -# @@||channel4.com/ad/l/1?|$object-subrequest (easylist.txt: 49663) -.channel4.com/ad/l/1\?$ -# @@||atresplayer.com/adsxml/$object-subrequest (easylist.txt: 49599) -.atresplayer.com/adsxml/ -# @@||atresmedia.com/adsxml/$object-subrequest (easylist.txt: 49598) -.atresmedia.com/adsxml/ -# @@||antena3.com/adsxml/$object-subrequest (easylist.txt: 49586) -.antena3.com/adsxml/ -# @@||zedo.com/crossdomain.xml$object-subrequest (easylist.txt: 49388) -.zedo.com/crossdomain\.xml -# @@||zattoo.com/?advideo/*;vidAS=PRE_ROLL;$object-subrequest (easylist.txt: 49385) -.zattoo.com/\?advideo/.*;vidAS=PRE_ROLL; -# @@||yumenetworks.com/crossdomain.xml$object-subrequest (easylist.txt: 49382) -.yumenetworks.com/crossdomain\.xml -# @@||yahoo.net/1/adnetwork/$object-subrequest (easylist.txt: 49356) -.yahoo.net/1/adnetwork/ -# @@||vindicoasset.edgesuite.net/repository/campaigncreative/*/instreamad/$object-subrequest (easylist.txt: 49287) -.vindicoasset.edgesuite.net/repository/campaigncreative/.*/instreamad/ -# @@||videosxml.mobileads.indiatimes.com^$object-subrequest (easylist.txt: 49277) -.videosxml.mobileads.indiatimes.com -# @@||vad.go.com/dynamicvideoad?$object-subrequest (easylist.txt: 49259) -.vad.go.com/dynamicvideoad\? -# @@||v.fwmrm.net/p/espn_live/$object-subrequest (easylist.txt: 49256) -.v.fwmrm.net/p/espn_live/ -# @@||v.fwmrm.net/crossdomain.xml$object-subrequest (easylist.txt: 49255) -.v.fwmrm.net/crossdomain\.xml -# @@||utarget.co.uk/crossdomain.xml$object-subrequest (easylist.txt: 49248) -.utarget.co.uk/crossdomain\.xml -# @@||tubemogul.com/crossdomain.xml$object-subrequest (easylist.txt: 49220) -.tubemogul.com/crossdomain\.xml -# @@||tubemogul.com/bootloader/tubemogulflowplayer.swf$object-subrequest (easylist.txt: 49219) -.tubemogul.com/bootloader/tubemogulflowplayer\.swf -# @@||trutv.com/includes/banners/de/video/*.ad|$object-subrequest (easylist.txt: 49218) -.trutv.com/includes/banners/de/video/.*\.ad$ -# @@||tremor.nuggad.net/crossdomain.xml$object-subrequest (easylist.txt: 49212) -.tremor.nuggad.net/crossdomain\.xml -# @@||tnol.com/adimages/digitaledition/$object-subrequest (easylist.txt: 49185) -.tnol.com/adimages/digitaledition/ -# @@||timesofmalta.com/videoads/*preroll.flv$object-subrequest (easylist.txt: 49179) -.timesofmalta.com/videoads/.*preroll\.flv -# @@||thenewsroom.com^*/advertisement.xml$object-subrequest (easylist.txt: 49161) -.thenewsroom.com/.*/advertisement\.xml -# @@||thekraftgroup.com/crossdomain.xml$object-subrequest (easylist.txt: 49157) -.thekraftgroup.com/crossdomain\.xml -# @@||streaming.gmgradio.com/adverts/*.mp3$object-subrequest (easylist.txt: 49111) -.streaming.gmgradio.com/adverts/.*\.mp3 -# @@||spotxchange.com/crossdomain.xml$object-subrequest (easylist.txt: 49086) -.spotxchange.com/crossdomain\.xml -# @@||spotrails.com/crossdomain.xml$object-subrequest (easylist.txt: 49083) -.spotrails.com/crossdomain\.xml -# @@||sploder.com/prerollad.swf?s=$object-subrequest (easylist.txt: 49080) -.sploder.com/prerollad\.swf\?s= -# @@||sonicstate.com/video/hd/hdconfig-geo.cfm?$object-subrequest (easylist.txt: 49073) -.sonicstate.com/video/hd/hdconfig-geo\.cfm\? -# @@||server.cpmstar.com/adviewas3.swf?contentspotid=$object-subrequest (easylist.txt: 49032) -.server.cpmstar.com/adviewas3\.swf\?contentspotid= -# @@||serve.vdopia.com/crossdomain.xml$object-subrequest (easylist.txt: 49029) -.serve.vdopia.com/crossdomain\.xml -# @@||scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors.xml$object-subrequest (easylist.txt: 49015) -.scrippsnetworks.com/common/adimages/networkads/video_ad_vendor_list/approved_vendors\.xml -# @@||scanscout.com/crossdomain.xml$object-subrequest (easylist.txt: 49009) -.scanscout.com/crossdomain\.xml -# @@||sascdn.com^*/jwplayerAdPlugin.swf$object-subrequest (easylist.txt: 49006) -.sascdn.com/.*/jwplayerAdPlugin\.swf -# @@||sascdn.com^*/jwplayer-plugin.swf?$object-subrequest (easylist.txt: 49005) -.sascdn.com/.*/jwplayer-plugin\.swf\? -# @@||sascdn.com/crossdomain.xml$object-subrequest (easylist.txt: 49004) -.sascdn.com/crossdomain\.xml -# @@||revit.eu/static/uploads/images/themes/banners/small-banner-$object-subrequest (easylist.txt: 48973) -.revit.eu/static/uploads/images/themes/banners/small-banner- -# @@||player.onescreen.net/*/MediaPlayer.swf?ads=$object-subrequest (easylist.txt: 48903) -.player.onescreen.net/.*/MediaPlayer\.swf\?ads= -# @@||player.goviral-content.com/crossdomain.xml$object-subrequest (easylist.txt: 48902) -.player.goviral-content.com/crossdomain\.xml -# @@||ping.indieclicktv.com/www/delivery/ajs.php?zoneid$object-subrequest (easylist.txt: 48890) -.ping.indieclicktv.com/www/delivery/ajs\.php\?zoneid -# @@||partners.thefilter.com/crossdomain.xml$object-subrequest (easylist.txt: 48861) -.partners.thefilter.com/crossdomain\.xml -# @@||oascentral.surfline.com/realmedia/ads/adstream_sx.ads/www.surfline.com/articles$object-subrequest (easylist.txt: 48797) -.oascentral.surfline.com/realmedia/ads/adstream_sx\.ads/www\.surfline\.com/articles -# @@||oascentral.surfline.com/crossdomain.xml$object-subrequest (easylist.txt: 48796) -.oascentral.surfline.com/crossdomain\.xml -# @@||oascentral.sumworld.com/crossdomain.xml$object-subrequest (easylist.txt: 48793) -.oascentral.sumworld.com/crossdomain\.xml -# @@||oascentral.post-gazette.com/realmedia/ads/$object-subrequest (easylist.txt: 48792) -.oascentral.post-gazette.com/realmedia/ads/ -# @@||oascentral.ibtimes.com/crossdomain.xml$object-subrequest (easylist.txt: 48791) -.oascentral.ibtimes.com/crossdomain\.xml -# @@||oas.absoluteradio.co.uk/realmedia/ads/$object-subrequest (easylist.txt: 48784) -.oas.absoluteradio.co.uk/realmedia/ads/ -# @@||nextmedia.com/admedia/$object-subrequest (easylist.txt: 48758) -.nextmedia.com/admedia/ -# @@||marines.com/videos/commercials/$object-subrequest (easylist.txt: 48656) -.marines.com/videos/commercials/ -# @@||mads.com.com/ads/common/faith/*.xml$object-subrequest (easylist.txt: 48638) -.mads.com.com/ads/common/faith/.*\.xml -# @@||mads.cbs.com/mac-ad?$object-subrequest (easylist.txt: 48637) -.mads.cbs.com/mac-ad\? -# @@||ltassrv.com/crossdomain.xml$object-subrequest (easylist.txt: 48629) -.ltassrv.com/crossdomain\.xml -# @@||inviziads.com/crossdomain.xml$object-subrequest (easylist.txt: 48545) -.inviziads.com/crossdomain\.xml -# @@||imasdk.googleapis.com/flash/sdkloader/adsapi_3.swf$object-subrequest (easylist.txt: 48504) -.imasdk.googleapis.com/flash/sdkloader/adsapi_3\.swf -# @@||imasdk.googleapis.com/flash/core/3.*/adsapi.swf$object-subrequest (easylist.txt: 48503) -.imasdk.googleapis.com/flash/core/3\..*/adsapi\.swf -# @@||images.forbes.com/video/ads/blank_frame.flv$object-subrequest (easylist.txt: 48494) -.images.forbes.com/video/ads/blank_frame\.flv -# @@||ibnlive.com/videoads/*_ads_*.xml$object-subrequest (easylist.txt: 48480) -.ibnlive.com/videoads/.*_ads_.*\.xml -# @@||hellotv.in/livetv/advertisements.xml$object-subrequest (easylist.txt: 48454) -.hellotv.in/livetv/advertisements\.xml -# @@||healthadnet.adprimemedia.com/vn/vna/data/ad.php$object-subrequest (easylist.txt: 48448) -.healthadnet.adprimemedia.com/vn/vna/data/ad\.php -# @@||godtube.com/resource/mediaplayer/*&adzone=$object-subrequest (easylist.txt: 48404) -.godtube.com/resource/mediaplayer/.*&adzone= -# @@||g.doubleclick.net/pagead/ads?ad_type=text_dynamicimage_flash^$object-subrequest (easylist.txt: 48371) -.g.doubleclick.net/pagead/ads\?ad_type=text_dynamicimage_flash[^\w%.-] -# @@||fifa.com/flash/videoplayer/libs/advert_$object-subrequest (easylist.txt: 48336) -.fifa.com/flash/videoplayer/libs/advert_ -# @@||festina.com/txt/advertising.xml$object-subrequest (easylist.txt: 48334) -.festina.com/txt/advertising\.xml -# @@||feeds.videogamer.com^*/videoad.xml?$object-subrequest (easylist.txt: 48333) -.feeds.videogamer.com/.*/videoad\.xml\? -# @@||faceinhole.com/adsense.swf$object-subrequest (easylist.txt: 48328) -.faceinhole.com/adsense\.swf -# @@||epicgameads.com/crossdomain.xml$object-subrequest (easylist.txt: 48300) -.epicgameads.com/crossdomain\.xml -# @@||edgar.pro-g.co.uk/data/*/videos/adverts/$object-subrequest (easylist.txt: 48281) -.edgar.pro-g.co.uk/data/.*/videos/adverts/ -# @@||dstw.adgear.com/crossdomain.xml$object-subrequest (easylist.txt: 48266) -.dstw.adgear.com/crossdomain\.xml -# @@||doubleclick.net/ad/can/chow/$object-subrequest (easylist.txt: 48207) -.doubleclick.net/ad/can/chow/ -# @@||disney.go.com/dxd/data/ads/game_ad.xml?gameid=$object-subrequest (easylist.txt: 48194) -.disney.go.com/dxd/data/ads/game_ad\.xml\?gameid= -# @@||dc.tremormedia.com/crossdomain.xml$object-subrequest (easylist.txt: 48174) -.dc.tremormedia.com/crossdomain\.xml -# @@||data.panachetech.com/crossdomain.xml$object-subrequest (easylist.txt: 48167) -.data.panachetech.com/crossdomain\.xml -# @@||dart.clearchannel.com/crossdomain.xml$object-subrequest (easylist.txt: 48166) -.dart.clearchannel.com/crossdomain\.xml -# @@||contactmusic.com/advertpro/servlet/view/dynamic/$object-subrequest (easylist.txt: 48131) -.contactmusic.com/advertpro/servlet/view/dynamic/ -# @@||collective-media.net/crossdomain.xml$object-subrequest (easylist.txt: 48119) -.collective-media.net/crossdomain\.xml -# @@||checkm8.com/crossdomain.xml$object-subrequest (easylist.txt: 48100) -.checkm8.com/crossdomain\.xml -# @@||btrll.com/crossdomain.xml$object-subrequest (easylist.txt: 48039) -.btrll.com/crossdomain\.xml -# @@||brainient.com/crossdomain.xml$object-subrequest (easylist.txt: 48030) -.brainient.com/crossdomain\.xml -# @@||bluetree.co.uk/hji/advertising.$object-subrequest (easylist.txt: 48021) -.bluetree.co.uk/hji/advertising\. -# @@||blastro.com/pl_ads.php?$object-subrequest (easylist.txt: 48018) -.blastro.com/pl_ads\.php\? -# @@||auditude.com^*/AuditudeAdUnit.swf$object-subrequest (easylist.txt: 47968) -.auditude.com/.*/AuditudeAdUnit\.swf -# @@||auditude.com/crossdomain.xml$object-subrequest (easylist.txt: 47967) -.auditude.com/crossdomain\.xml -# @@||arti-mediagroup.com/flowplayer/amta_plugin.swf$object-subrequest (easylist.txt: 47951) -.arti-mediagroup.com/flowplayer/amta_plugin\.swf -# @@||arti-mediagroup.com/crossdomain.xml$object-subrequest (easylist.txt: 47950) -.arti-mediagroup.com/crossdomain\.xml -# @@||andomediagroup.com/crossdomain.xml$object-subrequest (easylist.txt: 47921) -.andomediagroup.com/crossdomain\.xml -# @@||andohs.net/crossdomain.xml$object-subrequest (easylist.txt: 47920) -.andohs.net/crossdomain\.xml -# @@||affiliate.kickapps.com/crossdomain.xml$object-subrequest (easylist.txt: 47871) -.affiliate.kickapps.com/crossdomain\.xml -# @@||ae.amgdgt.com/crossdomain.xml$object-subrequest (easylist.txt: 47869) -.ae.amgdgt.com/crossdomain\.xml -# @@||adverts.cdn.tvcatchup.com^$object-subrequest (easylist.txt: 47862) -.adverts.cdn.tvcatchup.com -# @@||adtechus.com/crossdomain.xml$object-subrequest (easylist.txt: 47836) -.adtechus.com/crossdomain\.xml -# @@||adtech.de/?advideo/3.0/1215.1/3228528/*;vidas=pre_roll;$object-subrequest (easylist.txt: 47831) -.adtech.de/\?advideo/3\.0/1215\.1/3228528/.*;vidas=pre_roll; -# @@||adsremote.scrippsnetworks.com/crossdomain.xml$object-subrequest (easylist.txt: 47825) -.adsremote.scrippsnetworks.com/crossdomain\.xml -# @@||adshost1.com/crossdomain.xml$object-subrequest (easylist.txt: 47817) -.adshost1.com/crossdomain\.xml -# @@||adserver.yahoo.com/crossdomain.xml$object-subrequest (easylist.txt: 47815) -.adserver.yahoo.com/crossdomain\.xml -# @@||adserver.tvcatchup.com^$object-subrequest (easylist.txt: 47810) -.adserver.tvcatchup.com -# @@||ads.undertone.com/crossdomain.xml$object-subrequest (easylist.txt: 47787) -.ads.undertone.com/crossdomain\.xml -# @@||ads.trutv.com/html.ng/tile=*&site=trutv&tru_tv_pos=preroll&$object-subrequest (easylist.txt: 47785) -.ads.trutv.com/html\.ng/tile=.*&site=trutv&tru_tv_pos=preroll& -# @@||ads.trutv.com/crossdomain.xml$object-subrequest (easylist.txt: 47784) -.ads.trutv.com/crossdomain\.xml -# @@||ads.nyootv.com:8080/crossdomain.xml$object-subrequest (easylist.txt: 47770) -.ads.nyootv.com:8080/crossdomain\.xml -# @@||ads.nyootv.com/crossdomain.xml$object-subrequest (easylist.txt: 47769) -.ads.nyootv.com/crossdomain\.xml -# @@||ads.intergi.com/crossdomain.xml$object-subrequest (easylist.txt: 47759) -.ads.intergi.com/crossdomain\.xml -# @@||adotube.com/crossdomain.xml$object-subrequest (easylist.txt: 47730) -.adotube.com/crossdomain\.xml -# @@||adnet.twitvid.com/crossdomain.xml$object-subrequest (easylist.txt: 47727) -.adnet.twitvid.com/crossdomain\.xml -# @@||adimages.go.com/crossdomain.xml$object-subrequest (easylist.txt: 47716) -.adimages.go.com/crossdomain\.xml -# @@||adhostingsolutions.com/crossdomain.xml$object-subrequest (easylist.txt: 47715) -.adhostingsolutions.com/crossdomain\.xml -# @@||adap.tv/redir/client/adplayer.swf$object-subrequest (easylist.txt: 47694) -.adap.tv/redir/client/adplayer\.swf -# @@||adap.tv/crossdomain.xml$object-subrequest (easylist.txt: 47693) -.adap.tv/crossdomain\.xml -# @@||adap.tv/control?$object-subrequest (easylist.txt: 47692) -.adap.tv/control\? -# @@||ad4.liverail.com/crossdomain.xml$object-subrequest (easylist.txt: 47686) -.ad4.liverail.com/crossdomain\.xml -# @@||ad.smartclip.net/crossdomain.xml$object-subrequest (easylist.txt: 47678) -.ad.smartclip.net/crossdomain\.xml -# @@||ad.doubleclick.net/pfadx/nbcu.nbc/rewind$object-subrequest (easylist.txt: 47675) -.ad.doubleclick.net/pfadx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/adx/nbcu.nbc/rewind$object-subrequest (easylist.txt: 47672) -.ad.doubleclick.net/adx/nbcu\.nbc/rewind -# @@||ad.doubleclick.net/ad/can/cbs/*;pausead=1;$object-subrequest (easylist.txt: 47668) -.ad.doubleclick.net/ad/can/cbs/.*;pausead=1; -# @@||ad.afy11.net/crossdomain.xml$object-subrequest (easylist.txt: 47666) -.ad.afy11.net/crossdomain\.xml -# @@||ad.adserve.com/crossdomain.xml$object-subrequest (easylist.txt: 47665) -.ad.adserve.com/crossdomain\.xml -# @@||ad.71i.de/global_js/magic/sevenload_magic.js$object-subrequest (easylist.txt: 47663) -.ad.71i.de/global_js/magic/sevenload_magic\.js -# @@||ad.71i.de/crossdomain.xml$object-subrequest (easylist.txt: 47662) -.ad.71i.de/crossdomain\.xml -# @@||33universal.adprimemedia.com/vn/vna/data/ad.php?$object-subrequest (easylist.txt: 47643) -.33universal.adprimemedia.com/vn/vna/data/ad\.php\? -# @@||2mdn.net/instream/flash/*/adsapi.swf$object-subrequest (easylist.txt: 47637) -.2mdn.net/instream/flash/.*/adsapi\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R789 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R789} \ -} -# @@||2mdn.net/instream/*/adsapi_$object-subrequest,domain=3news.co.nz|49ers.com|atlantafalcons.com|azcardinals.com|baltimoreravens.com|buccaneers.com|buffalobills.com|chargers.com|chicagobears.com|clevelandbrowns.com|colts.com|dallascowboys.com|denverbroncos.com|detroitlions.com|egirlgames.net|euronews.com|giants.com|globaltv.com|houstontexans.com|jaguars.com|kcchiefs.com|ktvu.com|miamidolphins.com|neworleanssaints.com|newyorkjets.com|packers.com|panthers.com|patriots.com|philadelphiaeagles.com|raiders.com|redskins.com|rte.ie|seahawks.com|steelers.com|stlouisrams.com|thecomedynetwork.ca|titansonline.com|vikings.com|wpcomwidgets.com (easylistchina+easylist.txt: 58121) -.2mdn.net/instream/.*/adsapi_ -# @@||2mdn.net/instream/*/adsapi_$object-subrequest,domain=3news.co.nz|49ers.com|atlantafalcons.com|azcardinals.com|baltimoreravens.com|buccaneers.com|buffalobills.com|chargers.com|chicagobears.com|clevelandbrowns.com|colts.com|dallascowboys.com|denverbroncos.com|detroitlions.com|egirlgames.net|euronews.com|giants.com|globaltv.com|houstontexans.com|jaguars.com|kcchiefs.com|ktvu.com|miamidolphins.com|neworleanssaints.com|newyorkjets.com|packers.com|panthers.com|patriots.com|philadelphiaeagles.com|raiders.com|redskins.com|rte.ie|seahawks.com|steelers.com|stlouisrams.com|thecomedynetwork.ca|titansonline.com|vikings.com|wpcomwidgets.com (easylist.txt: 47636) -.2mdn.net/instream/.*/adsapi_ - -#ab2p-unblock-request-Aaov-Caov-when-R793 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R793} \ -} -# @@||adshost1.com/ova/*.xml$object-subrequest,domain=4shared.com (easylistchina+easylist.txt: 58303) -.adshost1.com/ova/.*\.xml -# @@||adshost1.com/ova/*.xml$object-subrequest,domain=4shared.com (easylist.txt: 47818) -.adshost1.com/ova/.*\.xml - -#ab2p-unblock-request-Aaov-Caov-when-R61 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R61} \ -} -# @@||abc.com/streaming/ads/preroll_$object-subrequest,domain=abc.go.com (easylistchina+easylist.txt: 58141) -.abc.com/streaming/ads/preroll_ -# @@||abc.com/streaming/ads/preroll_$object-subrequest,domain=abc.go.com (easylist.txt: 47656) -.abc.com/streaming/ads/preroll_ - -#ab2p-unblock-request-Aaov-Caov-when-R814 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R814} \ -} -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=abc.go.com|abcfamily.go.com|abcnews.go.com|adultswim.com|cartoonnetwork.com|cc.com|channel5.com|cmt.com|colbertnation.com|comedycentral.com|eonline.com|espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|flexonline.com|gametrailers.com|ign.com|logotv.com|mlb.mlb.com|mtv.com|mtvnservices.com|muscleandfitness.com|nascar.com|nbc.com|nbcnews.com|nbcsports.com|nick.com|player.theplatform.com|simpsonsworld.com|sky.com|southpark.nl|southparkstudios.com|spike.com|teamcoco.com|teennick.com|thedailyshow.com|thingx.tv|tv3play.se|tvland.com|uverseonline.att.net|vevo.com|vh1.com|video.cnbc.com|vod.fxnetworks.com (easylistchina+easylist.txt: 59739) -.v.fwmrm.net/ad/p/1\? -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=abc.go.com|abcfamily.go.com|abcnews.go.com|adultswim.com|cartoonnetwork.com|cc.com|channel5.com|cmt.com|colbertnation.com|comedycentral.com|eonline.com|espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|flexonline.com|gametrailers.com|ign.com|logotv.com|mlb.mlb.com|mtv.com|mtvnservices.com|muscleandfitness.com|nascar.com|nbc.com|nbcnews.com|nbcsports.com|nick.com|player.theplatform.com|simpsonsworld.com|sky.com|southpark.nl|southparkstudios.com|spike.com|teamcoco.com|teennick.com|thedailyshow.com|thingx.tv|tv3play.se|tvland.com|uverseonline.att.net|vevo.com|vh1.com|video.cnbc.com|vod.fxnetworks.com (easylist.txt: 49254) -.v.fwmrm.net/ad/p/1\? - -#ab2p-unblock-request-Aaov-Caov-when-R879 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R879} \ -} -# @@||videoplaza.tv/proxy/distributor?$object-subrequest,domain=aftenposten.no|bt.no|ekstrabladet.dk|kuriren.nu|qbrick.com|svd.se (easylistchina+easylist.txt: 61146) -.videoplaza.tv/proxy/distributor\? -# @@||videoplaza.tv/proxy/distributor?$object-subrequest,domain=aftenposten.no|bt.no|ekstrabladet.dk|kuriren.nu|qbrick.com|svd.se (easylist.txt: 50661) -.videoplaza.tv/proxy/distributor\? - -#ab2p-unblock-request-Aaov-Caov-when-R909 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R909} \ -} -# @@||ltassrv.com/yume/yume_$object-subrequest,domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylistchina+easylist.txt: 59116) -.ltassrv.com/yume/yume_ -# @@||ltassrv.com/yume/yume_$object-subrequest,domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylist.txt: 48631) -.ltassrv.com/yume/yume_ - -#ab2p-unblock-request-Aaov-Caov-when-R913 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R913} \ -} -# @@||smartadserver.com/call/pubx/*blq$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 61116) -.smartadserver.com/call/pubx/.*blq -# @@||ima3vpaid.appspot.com/crossdomain.xml$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60403) -.ima3vpaid.appspot.com/crossdomain\.xml -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60402) -.ima3vpaid.appspot.com/\?adTagUrl= -# @@||smartadserver.com/call/pubx/*blq$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50631) -.smartadserver.com/call/pubx/.*blq -# @@||ima3vpaid.appspot.com/crossdomain.xml$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 49918) -.ima3vpaid.appspot.com/crossdomain\.xml -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 49917) -.ima3vpaid.appspot.com/\?adTagUrl= - -#ab2p-unblock-request-Aaov-Caov-when-R915 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R915} \ -} -# @@||smartadserver.com/diff/*/show*.asp?*blq$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com|ondacero.es (easylistchina+easylist.txt: 61118) -.smartadserver.com/diff/.*/show.*\.asp\?.*blq -# @@||smartadserver.com/diff/*/show*.asp?*blq$object-subrequest,domain=antena3.com|atresplayer.com|lasexta.com|ondacero.es (easylist.txt: 50633) -.smartadserver.com/diff/.*/show.*\.asp\?.*blq - -#ab2p-unblock-request-Aaov-Caov-when-R916 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R916} \ -} -# @@||smartadserver.com/call/pubj/$object-subrequest,domain=antena3.com|europafm.com|ondacero.es|vertele.com (easylistchina+easylist.txt: 61114) -.smartadserver.com/call/pubj/ -# @@||smartadserver.com/call/pubj/$object-subrequest,domain=antena3.com|europafm.com|ondacero.es|vertele.com (easylist.txt: 50629) -.smartadserver.com/call/pubj/ - -#ab2p-unblock-request-Aaov-Caov-when-R920 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R920} \ -} -# @@||auditude.com/adserver?$object-subrequest,domain=ap.org|majorleaguegaming.com|newsinc.com (easylistchina+easylist.txt: 58451) -.auditude.com/adserver\? -# @@||auditude.com/adserver?$object-subrequest,domain=ap.org|majorleaguegaming.com|newsinc.com (easylist.txt: 47966) -.auditude.com/adserver\? - -#ab2p-unblock-request-Aaov-Caov-when-R954 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R954} \ -} -# @@||emediate.eu/eas?cu_key=*;ty=playlist;$object-subrequest,domain=bandit.se|lugnafavoriter.com|nrj.se|playradio.se|radio1.se|rixfm.com|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61013) -.emediate.eu/eas\?cu_key=.*;ty=playlist; -# @@||emediate.eu/eas?cu_key=*;ty=playlist;$object-subrequest,domain=bandit.se|lugnafavoriter.com|nrj.se|playradio.se|radio1.se|rixfm.com|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50528) -.emediate.eu/eas\?cu_key=.*;ty=playlist; - -#ab2p-unblock-request-Aaov-Caov-when-R964 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R964} \ -} -# @@||bbcimg.co.uk^*/SmpAds.swf$object-subrequest,domain=bbc.com (easylistchina+easylist.txt: 58489) -.bbcimg.co.uk/.*/SmpAds\.swf -# @@||bbcimg.co.uk^*/SmpAds.swf$object-subrequest,domain=bbc.com (easylist.txt: 48004) -.bbcimg.co.uk/.*/SmpAds\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R969 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R969} \ -} -# @@||akamai.net^*/ads/preroll_$object-subrequest,domain=bet.com (easylistchina+easylist.txt: 58374) -.akamai.net/.*/ads/preroll_ -# @@||akamai.net^*/ads/preroll_$object-subrequest,domain=bet.com (easylist.txt: 47889) -.akamai.net/.*/ads/preroll_ - -#ab2p-unblock-request-Aaov-Caov-when-R977 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R977} \ -} -# @@||smart.allocine.fr/def/def/xshowdef.asp$object-subrequest,domain=beyazperde.com (easylistchina+easylist.txt: 61113) -.smart.allocine.fr/def/def/xshowdef\.asp -# @@||smart.allocine.fr/def/def/xshowdef.asp$object-subrequest,domain=beyazperde.com (easylist.txt: 50628) -.smart.allocine.fr/def/def/xshowdef\.asp - -#ab2p-unblock-request-Aaov-Caov-when-R981 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R981} \ -} -# @@||ad4.liverail.com^*LR_VIDEO_ID=$object-subrequest,domain=bizu.tv (easylistchina+easylist.txt: 58174) -.ad4.liverail.com/.*LR_VIDEO_ID= -# @@||ad4.liverail.com^*LR_VIDEO_ID=$object-subrequest,domain=bizu.tv (easylist.txt: 47689) -.ad4.liverail.com/.*LR_VIDEO_ID= - -#ab2p-unblock-request-Aaov-Caov-when-R982 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R982} \ -} -# @@||ad4.liverail.com/|$object-subrequest,domain=bizu.tv|foxsports.com.au|majorleaguegaming.com|pbs.org|wikihow.com (easylistchina+easylist.txt: 58172) -.ad4.liverail.com/$ -# @@||ad4.liverail.com/|$object-subrequest,domain=bizu.tv|foxsports.com.au|majorleaguegaming.com|pbs.org|wikihow.com (easylist.txt: 47687) -.ad4.liverail.com/$ - -#ab2p-unblock-request-Aaov-Caov-when-R986 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R986} \ -} -# @@||adap.tv/redir/client/static/as3adplayer.swf$object-subrequest,domain=blogtalkradio.com|britannica.com|collegehumor.com|freeonlinegames.com|openfilmpod.com|stickam.com|talkingpointsmemo.com|thesource.com|wildearth.tv|wunderground.com (easylistchina+easylist.txt: 58180) -.adap.tv/redir/client/static/as3adplayer\.swf -# @@||adap.tv/redir/client/static/as3adplayer.swf$object-subrequest,domain=blogtalkradio.com|britannica.com|collegehumor.com|freeonlinegames.com|openfilmpod.com|stickam.com|talkingpointsmemo.com|thesource.com|wildearth.tv|wunderground.com (easylist.txt: 47695) -.adap.tv/redir/client/static/as3adplayer\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R989 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R989} \ -} -# @@||pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate.swf$object-subrequest,domain=bn0.com|ebog.com|gameark.com (easylistchina+easylist.txt: 59327) -.pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate\.swf -# @@||pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate.swf$object-subrequest,domain=bn0.com|ebog.com|gameark.com (easylist.txt: 48842) -.pagead2.googlesyndication.com/pagead/gadgets/overlay/overlaytemplate\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R990 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R990} \ -} -# @@||pagead2.googlesyndication.com/pagead/imgad?id=$object-subrequest,domain=bn0.com|ebog.com|gameark.com|yepi.com (easylistchina+easylist.txt: 59330) -.pagead2.googlesyndication.com/pagead/imgad\?id= -# @@||pagead2.googlesyndication.com/pagead/imgad?id=$object-subrequest,domain=bn0.com|ebog.com|gameark.com|yepi.com (easylist.txt: 48845) -.pagead2.googlesyndication.com/pagead/imgad\?id= - -#ab2p-unblock-request-Aaov-Caov-when-R992 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R992} \ -} -# @@||drizzle.monsoonads.com/ip.php$object-subrequest,domain=bollywoodhungama.com (easylistchina+easylist.txt: 58745) -.drizzle.monsoonads.com/ip\.php -# @@||drizzle.monsoonads.com/ip.php$object-subrequest,domain=bollywoodhungama.com (easylist.txt: 48260) -.drizzle.monsoonads.com/ip\.php - -#ab2p-unblock-request-Aaov-Caov-when-R993 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R993} \ -} -# @@||monsoonads.com:8080/monsoon1/monsoonservice?$object-subrequest,domain=bollywoodhungama.com|videos.mid-day.com (easylistchina+easylist.txt: 60543) -.monsoonads.com:8080/monsoon1/monsoonservice\? -# @@||monsoonads.com:8080/monsoon1/monsoonservice?$object-subrequest,domain=bollywoodhungama.com|videos.mid-day.com (easylist.txt: 50058) -.monsoonads.com:8080/monsoon1/monsoonservice\? - -#ab2p-unblock-request-Aaov-Caov-when-R1010 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1010} \ -} -# @@||ipcamhost.net/flashads/*.swf$object-subrequest,domain=canadianrockies.org (easylistchina+easylist.txt: 59032) -.ipcamhost.net/flashads/.*\.swf -# @@||ipcamhost.net/flashads/*.swf$object-subrequest,domain=canadianrockies.org (easylist.txt: 48547) -.ipcamhost.net/flashads/.*\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1017 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1017} \ -} -# @@||turner.com^*/ads/freewheel/bundles/*/renderers.xml$object-subrequest,domain=cartoonnetwork.com|tnt.tv (easylistchina+easylist.txt: 59710) -.turner.com/.*/ads/freewheel/bundles/.*/renderers\.xml -# @@||turner.com^*/ads/freewheel/bundles/*/renderers.xml$object-subrequest,domain=cartoonnetwork.com|tnt.tv (easylist.txt: 49225) -.turner.com/.*/ads/freewheel/bundles/.*/renderers\.xml - -#ab2p-unblock-request-Aaov-Caov-when-R137 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R137} \ -} -# @@||g.doubleclick.net/gampad/ads?ad%5Frule=0&$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60324) -.g.doubleclick.net/gampad/ads\?ad%5Frule=0& -# @@||alidw.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60050) -.alidw.net -# @@||alidv.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60049) -.alidv.net -# @@||aildu.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60046) -.aildu.net -# @@||ailde.net^$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 60045) -.ailde.net -# @@||2mdn.net/instream/flash/v3/adsapi_$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59964) -.2mdn.net/instream/flash/v3/adsapi_ -# @@|http://*/pubads.$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59955) -/(.*/)?pubads\. -# @@|http://*.net^*.bmp|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59950) -/.*\.net[^\w%.-].*\.bmp$ -.*.net/.*\.bmp$ -# @@/searchad.$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59932) -/(.*/)?searchad\. -searchad.*. -# @@/pubads.png$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59931) -/(.*/)?pubads\.png -pubads.png*. -# @@/pubads.jpeg$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59930) -/(.*/)?pubads\.jpeg -pubads.jpeg*. -# @@.jpg|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59899) -/.*\.jpg$ -.*.jpg -# @@.jpeg|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59896) -/.*\.jpeg$ -.*.jpeg -# @@.gif|$object-subrequest,domain=cbs.com (easylistchina+easylist.txt: 59891) -/.*\.gif$ -.*.gif -# @@||g.doubleclick.net/gampad/ads?ad%5Frule=0&$object-subrequest,domain=cbs.com (easylist.txt: 49839) -.g.doubleclick.net/gampad/ads\?ad%5Frule=0& -# @@||alidw.net^$object-subrequest,domain=cbs.com (easylist.txt: 49565) -.alidw.net -# @@||alidv.net^$object-subrequest,domain=cbs.com (easylist.txt: 49564) -.alidv.net -# @@||aildu.net^$object-subrequest,domain=cbs.com (easylist.txt: 49561) -.aildu.net -# @@||ailde.net^$object-subrequest,domain=cbs.com (easylist.txt: 49560) -.ailde.net -# @@||2mdn.net/instream/flash/v3/adsapi_$object-subrequest,domain=cbs.com (easylist.txt: 49479) -.2mdn.net/instream/flash/v3/adsapi_ -# @@|http://*/pubads.$object-subrequest,domain=cbs.com (easylist.txt: 49470) -/(.*/)?pubads\. -# @@|http://*.net^*.bmp|$object-subrequest,domain=cbs.com (easylist.txt: 49465) -/.*\.net[^\w%.-].*\.bmp$ -.*.net/.*\.bmp$ -# @@/searchad.$object-subrequest,domain=cbs.com (easylist.txt: 49447) -/(.*/)?searchad\. -searchad.*. -# @@/pubads.png$object-subrequest,domain=cbs.com (easylist.txt: 49446) -/(.*/)?pubads\.png -pubads.png*. -# @@/pubads.jpeg$object-subrequest,domain=cbs.com (easylist.txt: 49445) -/(.*/)?pubads\.jpeg -pubads.jpeg*. -# @@.jpg|$object-subrequest,domain=cbs.com (easylist.txt: 49414) -/.*\.jpg$ -.*.jpg -# @@.jpeg|$object-subrequest,domain=cbs.com (easylist.txt: 49411) -/.*\.jpeg$ -.*.jpeg -# @@.gif|$object-subrequest,domain=cbs.com (easylist.txt: 49406) -/.*\.gif$ -.*.gif - -#ab2p-unblock-request-Aaov-Caov-when-R1026 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1026} \ -} -# @@||g.doubleclick.net/|$object-subrequest,domain=cbs.com|planetfools.com|televisiondiv.ucoz.com (easylistchina+easylist.txt: 60329) -.g.doubleclick.net/$ -# @@||g.doubleclick.net/|$object-subrequest,domain=cbs.com|planetfools.com|televisiondiv.ucoz.com (easylist.txt: 49844) -.g.doubleclick.net/$ - -#ab2p-unblock-request-Aaov-Caov-when-R143 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R143} \ -} -# @@||tidaltv.com/tpas*.aspx?*&rand=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60805) -.tidaltv.com/tpas.*\.aspx\?.*&rand=\[ -# @@||tidaltv.com/ILogger.aspx?*&adId=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60804) -.tidaltv.com/ILogger\.aspx\?.*&adId=\[ -# @@||innovid.com^*/VPAIDIRollPackage.swf$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60420) -.innovid.com/.*/VPAIDIRollPackage\.swf -# @@||innovid.com/iroll/config/*.xml?cb=[$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60419) -.innovid.com/iroll/config/.*\.xml\?cb=\[ -# @@||innovid.com/1x1.gif?$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 60418) -.innovid.com/1x1\.gif\? -# @@||ad-emea.doubleclick.net/crossdomain.xml$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 59980) -.ad-emea.doubleclick.net/crossdomain\.xml -# @@||ad-emea.doubleclick.net/ad/*.CHANNEL41/*;sz=1x1;$object-subrequest,domain=channel4.com (easylistchina+easylist.txt: 59979) -.ad-emea.doubleclick.net/ad/.*\.CHANNEL41/.*;sz=1x1; -# @@||tidaltv.com/tpas*.aspx?*&rand=[$object-subrequest,domain=channel4.com (easylist.txt: 50320) -.tidaltv.com/tpas.*\.aspx\?.*&rand=\[ -# @@||tidaltv.com/ILogger.aspx?*&adId=[$object-subrequest,domain=channel4.com (easylist.txt: 50319) -.tidaltv.com/ILogger\.aspx\?.*&adId=\[ -# @@||innovid.com^*/VPAIDIRollPackage.swf$object-subrequest,domain=channel4.com (easylist.txt: 49935) -.innovid.com/.*/VPAIDIRollPackage\.swf -# @@||innovid.com/iroll/config/*.xml?cb=[$object-subrequest,domain=channel4.com (easylist.txt: 49934) -.innovid.com/iroll/config/.*\.xml\?cb=\[ -# @@||innovid.com/1x1.gif?$object-subrequest,domain=channel4.com (easylist.txt: 49933) -.innovid.com/1x1\.gif\? -# @@||ad-emea.doubleclick.net/crossdomain.xml$object-subrequest,domain=channel4.com (easylist.txt: 49495) -.ad-emea.doubleclick.net/crossdomain\.xml -# @@||ad-emea.doubleclick.net/ad/*.CHANNEL41/*;sz=1x1;$object-subrequest,domain=channel4.com (easylist.txt: 49494) -.ad-emea.doubleclick.net/ad/.*\.CHANNEL41/.*;sz=1x1; - -#ab2p-unblock-request-Aaov-Caov-when-R1031 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1031} \ -} -# @@||auditude.com^*/auditudebrightcoveplugin.swf$object-subrequest,domain=channel5.com (easylistchina+easylist.txt: 58454) -.auditude.com/.*/auditudebrightcoveplugin\.swf -# @@||auditude.com^*/auditudebrightcoveplugin.swf$object-subrequest,domain=channel5.com (easylist.txt: 47969) -.auditude.com/.*/auditudebrightcoveplugin\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1032 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1032} \ -} -# @@||brightcove.com^*/AdvertisingModule.swf$object-subrequest,domain=channel5.com|citytv.com|player.stv.tv|uktv.co.uk|wwe.com (easylistchina+easylist.txt: 60124) -.brightcove.com/.*/AdvertisingModule\.swf -# @@||brightcove.com^*/AdvertisingModule.swf$object-subrequest,domain=channel5.com|citytv.com|player.stv.tv|uktv.co.uk|wwe.com (easylist.txt: 49639) -.brightcove.com/.*/AdvertisingModule\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1054 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1054} \ -} -# @@||adm.fwmrm.net^*/videoadrenderer.$object-subrequest,domain=cnbc.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|go.com|nbc.com (easylistchina+easylist.txt: 58207) -.adm.fwmrm.net/.*/videoadrenderer\. -# @@||adm.fwmrm.net^*/videoadrenderer.$object-subrequest,domain=cnbc.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com|go.com|nbc.com (easylist.txt: 47722) -.adm.fwmrm.net/.*/videoadrenderer\. - -#ab2p-unblock-request-Aaov-Caov-when-R1066 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1066} \ -} -# @@||ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid.swf?*&ad_type=$object-subrequest,domain=cricketcountry.com (easylistchina+easylist.txt: 59750) -.ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid\.swf\?.*&ad_type= -# @@||ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid.swf?*&ad_type=$object-subrequest,domain=cricketcountry.com (easylist.txt: 49265) -.ventunotech.akamai-http.edgesuite.net/VtnGoogleVpaid\.swf\?.*&ad_type= - -#ab2p-unblock-request-Aaov-Caov-when-R1081 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1081} \ -} -# @@||web-jp.ad-v.jp/adam/inline?$object-subrequest,domain=daisuki.net (easylistchina+easylist.txt: 59803) -.web-jp.ad-v.jp/adam/inline\? -# @@||req.tidaltv.com^$object-subrequest,domain=daisuki.net (easylistchina+easylist.txt: 59454) -.req.tidaltv.com -# @@||web-jp.ad-v.jp/adam/inline?$object-subrequest,domain=daisuki.net (easylist.txt: 49318) -.web-jp.ad-v.jp/adam/inline\? -# @@||req.tidaltv.com^$object-subrequest,domain=daisuki.net (easylist.txt: 48969) -.req.tidaltv.com - -#ab2p-unblock-request-Aaov-Caov-when-R1097 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1097} \ -} -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection.swf?$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylistchina+easylist.txt: 59334) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection\.swf\? -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3.swf$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylistchina+easylist.txt: 59333) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3\.swf -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection.swf?$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylist.txt: 48849) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibrarylocalconnection\.swf\? -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3.swf$object-subrequest,domain=didigames.com|nitrome.com|nx8.com|oyunlar1.com (easylist.txt: 48848) -.pagead2.googlesyndication.com/pagead/scache/googlevideoadslibraryas3\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1100 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1100} \ -} -# @@||adserver.adtech.de/?adrawdata/3.0/$object-subrequest,domain=digitoday.fi|groovefm.fi|hs.fi|iltasanomat.fi|istv.fi|jimtv.fi|livtv.fi|loop.fi|metrohelsinki.fi|nelonen.fi|nyt.fi|radioaalto.fi|radiorock.fi|radiosuomipop.fi|ruokala.net|ruutu.fi (easylistchina+easylist.txt: 60023) -.adserver.adtech.de/\?adrawdata/3\.0/ -# @@||adserver.adtech.de/?adrawdata/3.0/$object-subrequest,domain=digitoday.fi|groovefm.fi|hs.fi|iltasanomat.fi|istv.fi|jimtv.fi|livtv.fi|loop.fi|metrohelsinki.fi|nelonen.fi|nyt.fi|radioaalto.fi|radiorock.fi|radiosuomipop.fi|ruokala.net|ruutu.fi (easylist.txt: 49538) -.adserver.adtech.de/\?adrawdata/3\.0/ - -#ab2p-unblock-request-Aaov-Caov-when-R1122 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1122} \ -} -# @@/crosdomain.xml$object-subrequest,domain=dramafever.com (easylistchina+easylist.txt: 59926) -/(.*/)?crosdomain\.xml -crosdomain.xml*. -# @@/crosdomain.xml$object-subrequest,domain=dramafever.com (easylist.txt: 49441) -/(.*/)?crosdomain\.xml -crosdomain.xml*. - -#ab2p-unblock-request-Aaov-Caov-when-R1123 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1123} \ -} -# @@||auditude.com^*/auditudeosmfproxyplugin.swf$object-subrequest,domain=dramafever.com|majorleaguegaming.com (easylistchina+easylist.txt: 58455) -.auditude.com/.*/auditudeosmfproxyplugin\.swf -# @@||auditude.com^*/auditudeosmfproxyplugin.swf$object-subrequest,domain=dramafever.com|majorleaguegaming.com (easylist.txt: 47970) -.auditude.com/.*/auditudeosmfproxyplugin\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1124 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1124} \ -} -# @@/crossdomain.xml$object-subrequest,domain=dramafever.com|vaughnlive.tv (easylistchina+easylist.txt: 59927) -/(.*/)?crossdomain\.xml -crossdomain.xml*. -# @@/crossdomain.xml$object-subrequest,domain=dramafever.com|vaughnlive.tv (easylist.txt: 49442) -/(.*/)?crossdomain\.xml -crossdomain.xml*. - -#ab2p-unblock-request-Aaov-Caov-when-R1137 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1137} \ -} -# @@||g.doubleclick.net/pagead/ads?ad_type=image_text^$object-subrequest,domain=ebog.com|gameark.com (easylistchina+easylist.txt: 58855) -.g.doubleclick.net/pagead/ads\?ad_type=image_text[^\w%.-] -# @@||g.doubleclick.net/pagead/ads?ad_type=image_text^$object-subrequest,domain=ebog.com|gameark.com (easylist.txt: 48370) -.g.doubleclick.net/pagead/ads\?ad_type=image_text[^\w%.-] - -#ab2p-unblock-request-Aaov-Caov-when-R1146 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1146} \ -} -# @@||ads.us.e-planning.net^*&ma=*&vv=$object-subrequest,domain=elcomercio.pe (easylistchina+easylist.txt: 60953) -.ads.us.e-planning.net/.*&ma=.*&vv= -# @@||ads.us.e-planning.net^*&ma=*&vv=$object-subrequest,domain=elcomercio.pe (easylist.txt: 50468) -.ads.us.e-planning.net/.*&ma=.*&vv= - -#ab2p-unblock-request-Aaov-Caov-when-R1149 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1149} \ -} -# @@||adfox.yandex.ru^$object-subrequest,domain=embed.life.ru (advblock.txt: 7551) -.adfox.yandex.ru - -#ab2p-unblock-request-Aaov-Caov-when-R1159 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1159} \ -} -# @@||edgesuite.net/ads/$object-subrequest,domain=espn.go.com (easylistchina+easylist.txt: 60246) -.edgesuite.net/ads/ -# @@||edgesuite.net/ads/$object-subrequest,domain=espn.go.com (easylist.txt: 49761) -.edgesuite.net/ads/ - -#ab2p-unblock-request-Aaov-Caov-when-R1165 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1165} \ -} -# @@||adserver.adtech.de/?advideo/*;vidas=pre_roll^$object-subrequest,domain=eurovisionsports.tv|talksport.co.uk|wrc.com (easylistchina+easylist.txt: 58289) -.adserver.adtech.de/\?advideo/.*;vidas=pre_roll[^\w%.-] -# @@||adserver.adtech.de/?advideo/*;vidas=pre_roll^$object-subrequest,domain=eurovisionsports.tv|talksport.co.uk|wrc.com (easylist.txt: 47804) -.adserver.adtech.de/\?advideo/.*;vidas=pre_roll[^\w%.-] - -#ab2p-unblock-request-Aaov-Caov-when-R1202 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1202} \ -} -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoads.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylistchina+easylist.txt: 59332) -.pagead2.googlesyndication.com/pagead/scache/googlevideoads\.swf -# @@||pagead2.googlesyndication.com/pagead/googlevideoadslibrary.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylistchina+easylist.txt: 59328) -.pagead2.googlesyndication.com/pagead/googlevideoadslibrary\.swf -# @@||pagead2.googlesyndication.com/pagead/scache/googlevideoads.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylist.txt: 48847) -.pagead2.googlesyndication.com/pagead/scache/googlevideoads\.swf -# @@||pagead2.googlesyndication.com/pagead/googlevideoadslibrary.swf$object-subrequest,domain=flashgames247.com|freeonlinegames.com|gameitnow.com|play181.com|toongames.com (easylist.txt: 48843) -.pagead2.googlesyndication.com/pagead/googlevideoadslibrary\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1226 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1226} \ -} -# @@||epicgameads.com/games/mec_release_*.swf?$object-subrequest,domain=freewebarcade.com (easylistchina+easylist.txt: 58787) -.epicgameads.com/games/mec_release_.*\.swf\? -# @@||epicgameads.com/games/getSwfPath.php?$object-subrequest,domain=freewebarcade.com (easylistchina+easylist.txt: 58786) -.epicgameads.com/games/getSwfPath\.php\? -# @@||epicgameads.com/games/mec_release_*.swf?$object-subrequest,domain=freewebarcade.com (easylist.txt: 48302) -.epicgameads.com/games/mec_release_.*\.swf\? -# @@||epicgameads.com/games/getSwfPath.php?$object-subrequest,domain=freewebarcade.com (easylist.txt: 48301) -.epicgameads.com/games/getSwfPath\.php\? - -#ab2p-unblock-request-Aaov-Caov-when-R1245 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1245} \ -} -# @@||keygamesnetwork.com/adserve/request/$object-subrequest,domain=gamesforwork.com (easylistchina+easylist.txt: 59058) -.keygamesnetwork.com/adserve/request/ -# @@||keygamesnetwork.com/adserve/request/$object-subrequest,domain=gamesforwork.com (easylist.txt: 48573) -.keygamesnetwork.com/adserve/request/ - -#ab2p-unblock-request-Aaov-Caov-when-R1251 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1251} \ -} -# @@||smartadserver.com/call/pubx/*/M/$object-subrequest,domain=get.x-link.pl (easylistchina+easylist.txt: 61115) -.smartadserver.com/call/pubx/.*/M/ -# @@||smartadserver.com/call/pubx/*/M/$object-subrequest,domain=get.x-link.pl (easylist.txt: 50630) -.smartadserver.com/call/pubx/.*/M/ - -#ab2p-unblock-request-Aaov-Caov-when-R248 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R248} \ -} -# @@||adm.fwmrm.net^*/TremorAdRenderer.$object-subrequest,domain=go.com (easylistchina+easylist.txt: 58206) -.adm.fwmrm.net/.*/TremorAdRenderer\. -# @@||adm.fwmrm.net^*/TremorAdRenderer.$object-subrequest,domain=go.com (easylist.txt: 47721) -.adm.fwmrm.net/.*/TremorAdRenderer\. - -#ab2p-unblock-request-Aaov-Caov-when-R1284 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1284} \ -} -# @@||promo.cdn.homepornbay.com/key=*.mp4$object-subrequest,domain=hiddencamsvideo.com (easylistchina+easylist.txt: 61454) -.promo.cdn.homepornbay.com/key=.*\.mp4 -# @@||promo.cdn.homepornbay.com/key=*.mp4$object-subrequest,domain=hiddencamsvideo.com (easylist.txt: 50969) -.promo.cdn.homepornbay.com/key=.*\.mp4 - -#ab2p-unblock-request-Aaov-Caov-when-R1289 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1289} \ -} -# @@||dstw.adgear.com/impressions/int/as=*.json?ag_r=$object-subrequest,domain=hot899.com|nj1015.com|streamtheworld.com|tsn.ca (easylistchina+easylist.txt: 58752) -.dstw.adgear.com/impressions/int/as=.*\.json\?ag_r= -# @@||dstw.adgear.com/impressions/int/as=*.json?ag_r=$object-subrequest,domain=hot899.com|nj1015.com|streamtheworld.com|tsn.ca (easylist.txt: 48267) -.dstw.adgear.com/impressions/int/as=.*\.json\?ag_r= - -#ab2p-unblock-request-Aaov-Caov-when-R1298 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1298} \ -} -# @@||innovid.com^$object-subrequest,domain=hulu.com (easylistchina+easylist.txt: 59012) -.innovid.com -# @@||innovid.com^$object-subrequest,domain=hulu.com (easylist.txt: 48527) -.innovid.com - -#ab2p-unblock-request-Aaov-Caov-when-R278 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R278} \ -} -# @@||zedo.com/bar/*/fnsr.vast?$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 59872) -.zedo.com/bar/.*/fnsr\.vast\? -# @@||jivox.com/jivox/serverAPIs/getCampaignById.php?$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 59043) -.jivox.com/jivox/serverAPIs/getCampaignById\.php\? -# @@||edgesuite.net/general/ibn/ads/*.flv$object-subrequest,domain=ibnlive.in.com (easylistchina+easylist.txt: 58768) -.edgesuite.net/general/ibn/ads/.*\.flv -# @@||zedo.com/bar/*/fnsr.vast?$object-subrequest,domain=ibnlive.in.com (easylist.txt: 49387) -.zedo.com/bar/.*/fnsr\.vast\? -# @@||jivox.com/jivox/serverAPIs/getCampaignById.php?$object-subrequest,domain=ibnlive.in.com (easylist.txt: 48558) -.jivox.com/jivox/serverAPIs/getCampaignById\.php\? -# @@||edgesuite.net/general/ibn/ads/*.flv$object-subrequest,domain=ibnlive.in.com (easylist.txt: 48283) -.edgesuite.net/general/ibn/ads/.*\.flv - -#ab2p-unblock-request-Aaov-Caov-when-R1322 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1322} \ -} -# @@||player.ventunotech.com/VtnGoogleVpaidIMA_1.swf?$object-subrequest,domain=indianexpress.com|thehindu.com (easylistchina+easylist.txt: 59391) -.player.ventunotech.com/VtnGoogleVpaidIMA_1\.swf\? -# @@||player.ventunotech.com/VtnGoogleVpaidIMA_1.swf?$object-subrequest,domain=indianexpress.com|thehindu.com (easylist.txt: 48906) -.player.ventunotech.com/VtnGoogleVpaidIMA_1\.swf\? - -#ab2p-unblock-request-Aaov-Caov-when-R1332 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1332} \ -} -# @@||stat24.com/ad.xml?id=$object-subrequest,domain=ipla.tv (easylistchina+easylist.txt: 61125) -.stat24.com/ad\.xml\?id= -# @@||stat24.com/*/ad.xml?id=$object-subrequest,domain=ipla.tv (easylistchina+easylist.txt: 61124) -.stat24.com/.*/ad\.xml\?id= -# @@||stat24.com/ad.xml?id=$object-subrequest,domain=ipla.tv (easylist.txt: 50640) -.stat24.com/ad\.xml\?id= -# @@||stat24.com/*/ad.xml?id=$object-subrequest,domain=ipla.tv (easylist.txt: 50639) -.stat24.com/.*/ad\.xml\?id= - -#ab2p-unblock-request-Aaov-Caov-when-R1339 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1339} \ -} -# @@||req.tidaltv.com/vmm.ashx?$object-subrequest,domain=itv.com|uktv.co.uk (easylistchina+easylist.txt: 60698) -.req.tidaltv.com/vmm\.ashx\? -# @@||req.tidaltv.com/vmm.ashx?$object-subrequest,domain=itv.com|uktv.co.uk (easylist.txt: 50213) -.req.tidaltv.com/vmm\.ashx\? - -#ab2p-unblock-request-Aaov-Caov-when-R287 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R287} \ -} -# @@||adriver.ru/cgi-bin/erle.cgi?*&sz=$object-subrequest,domain=ivi.ru (advblock.txt: 7232) -.adriver.ru/cgi-bin/erle\.cgi\?.*&sz= - -#ab2p-unblock-request-Aaov-Caov-when-R1372 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1372} \ -} -# @@||ngads.com/gateway_$object-subrequest,domain=kongregate.com (advblock.txt: 7346) -.ngads.com/gateway_ - -#ab2p-unblock-request-Aaov-Caov-when-R1373 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1373} \ -} -# @@||hostave4.net^*/video/$object-subrequest,domain=kporno.com (easylistchina+easylist.txt: 61442) -.hostave4.net/.*/video/ -# @@||hostave4.net^*/video/$object-subrequest,domain=kporno.com (easylist.txt: 50957) -.hostave4.net/.*/video/ - -#ab2p-unblock-request-Aaov-Caov-when-R1378 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1378} \ -} -# @@||doubleclick.net/pfadx/*/cbs/$object-subrequest,domain=latimes.com (easylistchina+easylist.txt: 58725) -.doubleclick.net/pfadx/.*/cbs/ -# @@||doubleclick.net/pfadx/*/cbs/$object-subrequest,domain=latimes.com (easylist.txt: 48240) -.doubleclick.net/pfadx/.*/cbs/ - -#ab2p-unblock-request-Aaov-Caov-when-R1386 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1386} \ -} -# @@/getCodeTest?$object-subrequest,domain=life.ru|smotri.com|video.reset.ru (advblock.txt: 7538) -/(.*/)?getCodeTest\? -# @@/getCode?$object-subrequest,domain=life.ru|smotri.com|video.reset.ru (advblock.txt: 7537) -/(.*/)?getCode\? - -#ab2p-unblock-request-Aaov-Caov-when-R1395 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1395} \ -} -# @@||scanscout.com/ads/$object-subrequest,domain=livestream.com (easylistchina+easylist.txt: 59493) -.scanscout.com/ads/ -# @@||scanscout.com/ads/$object-subrequest,domain=livestream.com (easylist.txt: 49008) -.scanscout.com/ads/ - -#ab2p-unblock-request-Aaov-Caov-when-R1414 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1414} \ -} -# @@||g.doubleclick.net/gampad/ads?$object-subrequest,domain=majorleaguegaming.com|nfl.com|player.rogersradio.ca|twitch.tv|viki.com|volarvideo.com|worldstarhiphop.com (easylistchina+easylist.txt: 58850) -.g.doubleclick.net/gampad/ads\? -# @@||g.doubleclick.net/gampad/ads?$object-subrequest,domain=majorleaguegaming.com|nfl.com|player.rogersradio.ca|twitch.tv|viki.com|volarvideo.com|worldstarhiphop.com (easylist.txt: 48365) -.g.doubleclick.net/gampad/ads\? - -#ab2p-unblock-request-Aaov-Caov-when-R1422 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1422} \ -} -# @@||search.spotxchange.com/vast/$object-subrequest,domain=maniatv.com (easylistchina+easylist.txt: 60726) -.search.spotxchange.com/vast/ -# @@||search.spotxchange.com/vast/$object-subrequest,domain=maniatv.com (easylist.txt: 50241) -.search.spotxchange.com/vast/ - -#ab2p-unblock-request-Aaov-Caov-when-R1424 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1424} \ -} -# @@||aka-cdn-ns.adtech.de/apps/$object-subrequest,domain=manutd.com (easylistchina+easylist.txt: 58373) -.aka-cdn-ns.adtech.de/apps/ -# @@||aka-cdn-ns.adtech.de/apps/$object-subrequest,domain=manutd.com (easylist.txt: 47888) -.aka-cdn-ns.adtech.de/apps/ - -#ab2p-unblock-request-Aaov-Caov-when-R334 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R334} \ -} -# @@||adrcdn.com/ads/*/megogo.xml$object-subrequest,domain=megogo.net (advblock.txt: 7554) -.adrcdn.com/ads/.*/megogo\.xml -# @@||adfox.ru/*/getCode?$object-subrequest,domain=megogo.net (advblock.txt: 7546) -.adfox.ru/.*/getCode\? -# @@||adfox.ru/*/event?$object-subrequest,domain=megogo.net (advblock.txt: 7545) -.adfox.ru/.*/event\? - -#ab2p-unblock-request-Aaov-Caov-when-R1436 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1436} \ -} -# @@||ads.intergi.com/adrawdata/*/ADTECH;$object-subrequest,domain=melting-mindz.com (easylistchina+easylist.txt: 58243) -.ads.intergi.com/adrawdata/.*/ADTECH; -# @@||ads.intergi.com/adrawdata/*/ADTECH;$object-subrequest,domain=melting-mindz.com (easylist.txt: 47758) -.ads.intergi.com/adrawdata/.*/ADTECH; - -#ab2p-unblock-request-Aaov-Caov-when-R1448 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1448} \ -} -# @@||ads.telecinco.es/RealMedia/ads/adstream_sx.ads/*@$object-subrequest,domain=mitele.es|telecinco.es (easylistchina+easylist.txt: 60951) -.ads.telecinco.es/RealMedia/ads/adstream_sx\.ads/.*@ -# @@||ads.telecinco.es/RealMedia/ads/adstream_sx.ads/*@$object-subrequest,domain=mitele.es|telecinco.es (easylist.txt: 50466) -.ads.telecinco.es/RealMedia/ads/adstream_sx\.ads/.*@ - -#ab2p-unblock-request-Aaov-Caov-when-R1453 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1453} \ -} -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/mlssoccer.com/$object-subrequest,domain=mlssoccer.com (easylistchina+easylist.txt: 59280) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/mlssoccer\.com/ -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/mlssoccer.com/$object-subrequest,domain=mlssoccer.com (easylist.txt: 48795) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/mlssoccer\.com/ - -#ab2p-unblock-request-Aaov-Caov-when-R1460 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1460} \ -} -# @@||liverail.com/?LR_$object-subrequest,domain=moevideo.net (advblock.txt: 7579) -.liverail.com/\?LR_ - -#ab2p-unblock-request-Aaov-Caov-when-R1464 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1464} \ -} -# @@||u.openx.net/v/1.0/sc?$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 59720) -.u.openx.net/v/1\.0/sc\? -# @@||ox-d.motogp.com/v/1.0/av?*auid=$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 59316) -.ox-d.motogp.com/v/1\.0/av\?.*auid= -# @@||adswizz.com/www/delivery/swfindex.php?reqtype=adssetup&$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 58315) -.adswizz.com/www/delivery/swfindex\.php\?reqtype=adssetup& -# @@||adswizz.com/www/components/$object-subrequest,domain=motogp.com (easylistchina+easylist.txt: 58314) -.adswizz.com/www/components/ -# @@||u.openx.net/v/1.0/sc?$object-subrequest,domain=motogp.com (easylist.txt: 49235) -.u.openx.net/v/1\.0/sc\? -# @@||ox-d.motogp.com/v/1.0/av?*auid=$object-subrequest,domain=motogp.com (easylist.txt: 48831) -.ox-d.motogp.com/v/1\.0/av\?.*auid= -# @@||adswizz.com/www/delivery/swfindex.php?reqtype=adssetup&$object-subrequest,domain=motogp.com (easylist.txt: 47830) -.adswizz.com/www/delivery/swfindex\.php\?reqtype=adssetup& -# @@||adswizz.com/www/components/$object-subrequest,domain=motogp.com (easylist.txt: 47829) -.adswizz.com/www/components/ - -#ab2p-unblock-request-Aaov-Caov-when-R358 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R358} \ -} -# @@||ngads.com/getad.php?url=$object-subrequest,domain=newgrounds.com (easylistchina+easylist.txt: 59249) -.ngads.com/getad\.php\?url= -# @@||ngads.com/getad.php?url=$object-subrequest,domain=newgrounds.com (easylist.txt: 48764) -.ngads.com/getad\.php\?url= - -#ab2p-unblock-request-Aaov-Caov-when-R1490 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1490} \ -} -# @@||video.appledaily.com.hk/admedia/$object-subrequest,domain=nextmedia.com (easylistchina+easylist.txt: 61144) -.video.appledaily.com.hk/admedia/ -# @@||video.appledaily.com.hk/admedia/$object-subrequest,domain=nextmedia.com (easylist.txt: 50659) -.video.appledaily.com.hk/admedia/ - -#ab2p-unblock-request-Aaov-Caov-when-R1492 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1492} \ -} -# @@||smartclip.net/delivery/tag?$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 59545) -.smartclip.net/delivery/tag\? -# @@||doubleclick.net^*/ad/nfl.*.smartclip/$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58728) -.doubleclick.net/.*/ad/nfl\..*\.smartclip/ -# @@||btrll.com/vast/$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58525) -.btrll.com/vast/ -# @@||ae.amgdgt.com/ads?t=$object-subrequest,domain=nfl.com (easylistchina+easylist.txt: 58353) -.ae.amgdgt.com/ads\?t= -# @@||smartclip.net/delivery/tag?$object-subrequest,domain=nfl.com (easylist.txt: 49060) -.smartclip.net/delivery/tag\? -# @@||doubleclick.net^*/ad/nfl.*.smartclip/$object-subrequest,domain=nfl.com (easylist.txt: 48243) -.doubleclick.net/.*/ad/nfl\..*\.smartclip/ -# @@||btrll.com/vast/$object-subrequest,domain=nfl.com (easylist.txt: 48040) -.btrll.com/vast/ -# @@||ae.amgdgt.com/ads?t=$object-subrequest,domain=nfl.com (easylist.txt: 47868) -.ae.amgdgt.com/ads\?t= - -#ab2p-unblock-request-Aaov-Caov-when-R1500 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1500} \ -} -# @@||googlesyndication.com/pagead/ads?$object-subrequest,domain=nx8.com (easylistchina+easylist.txt: 58913) -.googlesyndication.com/pagead/ads\? -# @@||googlesyndication.com/pagead/ads?$object-subrequest,domain=nx8.com (easylist.txt: 48428) -.googlesyndication.com/pagead/ads\? - -#ab2p-unblock-request-Aaov-Caov-when-R1507 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1507} \ -} -# @@||exchange.buzzoola.com/video_event/*/ctor/0|$object-subrequest,domain=ok.ru (advblock.txt: 7297) -.exchange.buzzoola.com/video_event/.*/ctor/0$ -# @@||exchange.buzzoola.com/ul_cb/adv/$object-subrequest,domain=ok.ru (advblock.txt: 7296) -.exchange.buzzoola.com/ul_cb/adv/ -# @@||exchange.buzzoola.com/adv/$object-subrequest,domain=ok.ru (advblock.txt: 7294) -.exchange.buzzoola.com/adv/ - -#ab2p-unblock-request-Aaov-Caov-when-R1508 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1508} \ -} -# @@||ads.e-planning.net^*/preroll?$object-subrequest,domain=ole.com.ar (easylistchina+easylist.txt: 60943) -.ads.e-planning.net/.*/preroll\? -# @@||ads.e-planning.net^*/preroll?$object-subrequest,domain=ole.com.ar (easylist.txt: 50458) -.ads.e-planning.net/.*/preroll\? - -#ab2p-unblock-request-Aaov-Caov-when-R1516 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1516} \ -} -# @@||adocean.pl^*/ad.js?id=$object-subrequest,domain=open.fm (easylistchina+easylist.txt: 60939) -.adocean.pl/.*/ad\.js\?id= -# @@||adocean.pl^*/ad.js?id=$object-subrequest,domain=open.fm (easylist.txt: 50454) -.adocean.pl/.*/ad\.js\?id= - -#ab2p-unblock-request-Aaov-Caov-when-R1529 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1529} \ -} -# @@||adtechus.com/images/*_503x720.gif$object-subrequest,domain=papeldigital.info (easylistchina+easylist.txt: 60959) -.adtechus.com/images/.*_503x720\.gif -# @@||adtechus.com/adxml|*|rettype=$object-subrequest,domain=papeldigital.info (easylistchina+easylist.txt: 60958) -.adtechus.com/adxml\|.*\|rettype= -# @@||adtechus.com/images/*_503x720.gif$object-subrequest,domain=papeldigital.info (easylist.txt: 50474) -.adtechus.com/images/.*_503x720\.gif -# @@||adtechus.com/adxml|*|rettype=$object-subrequest,domain=papeldigital.info (easylist.txt: 50473) -.adtechus.com/adxml\|.*\|rettype= - -#ab2p-unblock-request-Aaov-Caov-when-R379 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R379} \ -} -# @@||photobucket.com/pbkt/hserver/$object-subrequest,domain=photobucket.com (easylistchina+easylist.txt: 59370) -.photobucket.com/pbkt/hserver/ -# @@||photobucket.com/pbkt/hserver/$object-subrequest,domain=photobucket.com (easylist.txt: 48885) -.photobucket.com/pbkt/hserver/ - -#ab2p-unblock-request-Aaov-Caov-when-R1556 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1556} \ -} -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$object-subrequest,domain=playreplay.net|vaughnlive.tv (easylistchina+easylist.txt: 58169) -.ad4.liverail.com/\?LR_PUBLISHER_ID= -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$object-subrequest,domain=playreplay.net|vaughnlive.tv (easylist.txt: 47684) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-request-Aaov-Caov-when-R1560 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1560} \ -} -# @@||adv.adview.pl/ads/*.mp4$object-subrequest,domain=polskieradio.pl|radiozet.pl|spryciarze.pl|tvp.info (easylistchina+easylist.txt: 60960) -.adv.adview.pl/ads/.*\.mp4 -# @@||adv.adview.pl/ads/*.mp4$object-subrequest,domain=polskieradio.pl|radiozet.pl|spryciarze.pl|tvp.info (easylist.txt: 50475) -.adv.adview.pl/ads/.*\.mp4 - -#ab2p-unblock-request-Aaov-Caov-when-R1582 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1582} \ -} -# @@||edge.andomedia.com^*/ando/files/$object-subrequest,domain=radiou.com (easylistchina+easylist.txt: 58767) -.edge.andomedia.com/.*/ando/files/ -# @@||edge.andomedia.com^*/ando/files/$object-subrequest,domain=radiou.com (easylist.txt: 48282) -.edge.andomedia.com/.*/ando/files/ - -#ab2p-unblock-request-Aaov-Caov-when-R1605 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1605} \ -} -# @@||g.doubleclick.net/gampad/ads?ad_rule=1&adk=*&ciu_szs=300x250&*&gdfp_req=1&*&output=xml_vast2&$object-subrequest,domain=rte.ie (easylistchina+easylist.txt: 60325) -.g.doubleclick.net/gampad/ads\?ad_rule=1&adk=.*&ciu_szs=300x250&.*&gdfp_req=1&.*&output=xml_vast2& -# @@||g.doubleclick.net/gampad/ads?ad_rule=1&adk=*&ciu_szs=300x250&*&gdfp_req=1&*&output=xml_vast2&$object-subrequest,domain=rte.ie (easylist.txt: 49840) -.g.doubleclick.net/gampad/ads\?ad_rule=1&adk=.*&ciu_szs=300x250&.*&gdfp_req=1&.*&output=xml_vast2& - -#ab2p-unblock-request-Aaov-Caov-when-R1606 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1606} \ -} -# @@||newmedia.lu^*/adtech_video/*.xml$object-subrequest,domain=rtl.lu (easylistchina+easylist.txt: 61071) -.newmedia.lu/.*/adtech_video/.*\.xml -# @@||newmedia.lu^*/adtech_video/*.xml$object-subrequest,domain=rtl.lu (easylist.txt: 50586) -.newmedia.lu/.*/adtech_video/.*\.xml - -#ab2p-unblock-request-Aaov-Caov-when-R1610 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1610} \ -} -# @@||ima3vpaid.appspot.com/?adTagUrl=$object-subrequest,domain=rutube.ru (advblock.txt: 7575) -.ima3vpaid.appspot.com/\?adTagUrl= -# @@||gpm-digital.com^*/getCode?$object-subrequest,domain=rutube.ru (advblock.txt: 7574) -.gpm-digital.com/.*/getCode\? -# @@||adfox.ru^*/getCodeTest?$object-subrequest,domain=rutube.ru (advblock.txt: 7550) -.adfox.ru/.*/getCodeTest\? -# @@||adfox.ru^*/getCode?$object-subrequest,domain=rutube.ru (advblock.txt: 7549) -.adfox.ru/.*/getCode\? -# @@||adfox.ru^*/event?$object-subrequest,domain=rutube.ru (advblock.txt: 7548) -.adfox.ru/.*/event\? -# @@||ad.mail.ru/vast/$object-subrequest,domain=rutube.ru (advblock.txt: 7544) -.ad.mail.ru/vast/ - -#ab2p-unblock-request-Aaov-Caov-when-R1642 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1642} \ -} -# @@||akamaihd.net^*/advert/$object-subrequest,domain=skai.gr (easylistchina+easylist.txt: 60970) -.akamaihd.net/.*/advert/ -# @@||akamaihd.net^*/advert/$object-subrequest,domain=skai.gr (easylist.txt: 50485) -.akamaihd.net/.*/advert/ - -#ab2p-unblock-request-Aaov-Caov-when-R1644 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1644} \ -} -# @@||player.cdn.targetspot.com/station/*/ts_config.xml$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59385) -.player.cdn.targetspot.com/station/.*/ts_config\.xml -# @@||player.cdn.targetspot.com/player/ts_as3.swf?$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59384) -.player.cdn.targetspot.com/player/ts_as3\.swf\? -# @@||player.cdn.targetspot.com/crossdomain.xml$object-subrequest,domain=slacker.com (easylistchina+easylist.txt: 59383) -.player.cdn.targetspot.com/crossdomain\.xml -# @@||player.cdn.targetspot.com/station/*/ts_config.xml$object-subrequest,domain=slacker.com (easylist.txt: 48900) -.player.cdn.targetspot.com/station/.*/ts_config\.xml -# @@||player.cdn.targetspot.com/player/ts_as3.swf?$object-subrequest,domain=slacker.com (easylist.txt: 48899) -.player.cdn.targetspot.com/player/ts_as3\.swf\? -# @@||player.cdn.targetspot.com/crossdomain.xml$object-subrequest,domain=slacker.com (easylist.txt: 48898) -.player.cdn.targetspot.com/crossdomain\.xml - -#ab2p-unblock-request-Aaov-Caov-when-R1646 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1646} \ -} -# @@||videoads.washingtonpost.com^$object-subrequest,domain=slatev.com (easylistchina+easylist.txt: 59761) -.videoads.washingtonpost.com -# @@||videoads.washingtonpost.com^$object-subrequest,domain=slatev.com (easylist.txt: 49276) -.videoads.washingtonpost.com - -#ab2p-unblock-request-Aaov-Caov-when-R1652 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1652} \ -} -# @@||pladform.ru/getVast?$object-subrequest,domain=smotri.com|video.reset.ru (advblock.txt: 7357) -.pladform.ru/getVast\? -# @@||adrcdn.com/ads/*.xml|$object-subrequest,domain=smotri.com|video.reset.ru (advblock.txt: 7229) -.adrcdn.com/ads/.*\.xml$ - -#ab2p-unblock-request-Aaov-Caov-when-R1659 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1659} \ -} -# @@||data.panachetech.com/|$object-subrequest,domain=southpark.nl (easylistchina+easylist.txt: 58653) -.data.panachetech.com/$ -# @@||data.panachetech.com/|$object-subrequest,domain=southpark.nl (easylist.txt: 48168) -.data.panachetech.com/$ - -#ab2p-unblock-request-Aaov-Caov-when-R1698 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1698} \ -} -# @@||teamcococdn.com^*/AdManager_*.swf?$object-subrequest,domain=teamcoco.com (easylistchina+easylist.txt: 59625) -.teamcococdn.com/.*/AdManager_.*\.swf\? -# @@||teamcococdn.com^*/AdManager_*.swf?$object-subrequest,domain=teamcoco.com (easylist.txt: 49140) -.teamcococdn.com/.*/AdManager_.*\.swf\? - -#ab2p-unblock-request-Aaov-Caov-when-R473 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R473} \ -} -# @@||kaltura.com^*/doubleClickPlugin.swf$object-subrequest,domain=tmz.com (easylistchina+easylist.txt: 59053) -.kaltura.com/.*/doubleClickPlugin\.swf -# @@||kaltura.com^*/doubleClickPlugin.swf$object-subrequest,domain=tmz.com (easylist.txt: 48568) -.kaltura.com/.*/doubleClickPlugin\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1736 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1736} \ -} -# @@||tut.by/*/ads1/*/params.php?uid=$object-subrequest,domain=tut.by (advblock.txt: 7414) -.tut.by/.*/ads1/.*/params\.php\?uid= - -#ab2p-unblock-request-Aaov-Caov-when-R1738 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1738} \ -} -# @@||doubleclick.net/ad/can/tvcom/$object-subrequest,domain=tv.com (easylistchina+easylist.txt: 58693) -.doubleclick.net/ad/can/tvcom/ -# @@||doubleclick.net/ad/can/tvcom/$object-subrequest,domain=tv.com (easylist.txt: 48208) -.doubleclick.net/ad/can/tvcom/ - -#ab2p-unblock-request-Aaov-Caov-when-R1739 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1739} \ -} -# @@||v.fwmrm.net/|$object-subrequest,domain=tv10play.se|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 59742) -.v.fwmrm.net/$ -# @@||v.fwmrm.net/|$object-subrequest,domain=tv10play.se|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 49257) -.v.fwmrm.net/$ - -#ab2p-unblock-request-Aaov-Caov-when-R1740 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1740} \ -} -# @@||feed.theplatform.com^*=adtech_$object-subrequest,domain=tv2.dk (easylistchina+easylist.txt: 61021) -.feed.theplatform.com/.*=adtech_ -# @@||adtech.de/?adrawdata/3.0/*;|$object-subrequest,domain=tv2.dk (easylistchina+easylist.txt: 60956) -.adtech.de/\?adrawdata/3\.0/.*;$ -# @@||feed.theplatform.com^*=adtech_$object-subrequest,domain=tv2.dk (easylist.txt: 50536) -.feed.theplatform.com/.*=adtech_ -# @@||adtech.de/?adrawdata/3.0/*;|$object-subrequest,domain=tv2.dk (easylist.txt: 50471) -.adtech.de/\?adrawdata/3\.0/.*;$ - -#ab2p-unblock-request-Aaov-Caov-when-R1743 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1743} \ -} -# @@||adm.fwmrm.net/p/*/Video2AdRenderer.swf$object-subrequest,domain=tv3play.se|uktv.co.uk (easylistchina+easylist.txt: 59995) -.adm.fwmrm.net/p/.*/Video2AdRenderer\.swf -# @@||adm.fwmrm.net/p/*/Video2AdRenderer.swf$object-subrequest,domain=tv3play.se|uktv.co.uk (easylist.txt: 49510) -.adm.fwmrm.net/p/.*/Video2AdRenderer\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R484 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R484} \ -} -# @@||inskin.vo.llnwd.net^*/preroll_$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 59018) -.inskin.vo.llnwd.net/.*/preroll_ -# @@||demo.inskinmedia.com^$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 58666) -.demo.inskinmedia.com -# @@||cdn.inskinmedia.com/*inskinfiles/flvs/$object-subrequest,domain=tvcatchup.com (easylistchina+easylist.txt: 58563) -.cdn.inskinmedia.com/.*inskinfiles/flvs/ -# @@||inskin.vo.llnwd.net^*/preroll_$object-subrequest,domain=tvcatchup.com (easylist.txt: 48533) -.inskin.vo.llnwd.net/.*/preroll_ -# @@||demo.inskinmedia.com^$object-subrequest,domain=tvcatchup.com (easylist.txt: 48181) -.demo.inskinmedia.com -# @@||cdn.inskinmedia.com/*inskinfiles/flvs/$object-subrequest,domain=tvcatchup.com (easylist.txt: 48078) -.cdn.inskinmedia.com/.*inskinfiles/flvs/ - -#ab2p-unblock-request-Aaov-Caov-when-R1745 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1745} \ -} -# @@||content.reklamz.com/internethaber/SPOR_*.mp4$object-subrequest,domain=tvhaber.com (easylistchina+easylist.txt: 61000) -.content.reklamz.com/internethaber/SPOR_.*\.mp4 -# @@||content.reklamz.com/internethaber/SPOR_*.mp4$object-subrequest,domain=tvhaber.com (easylist.txt: 50515) -.content.reklamz.com/internethaber/SPOR_.*\.mp4 - -#ab2p-unblock-request-Aaov-Caov-when-R1747 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1747} \ -} -# @@||admin.brightcove.com^$object-subrequest,domain=tvn.pl|tvn24.pl (easylistchina+easylist.txt: 60000) -.admin.brightcove.com -# @@||admin.brightcove.com^$object-subrequest,domain=tvn.pl|tvn24.pl (easylist.txt: 49515) -.admin.brightcove.com - -#ab2p-unblock-request-Aaov-Caov-when-R1754 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1754} \ -} -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60855) -.v.fwmrm.net/ad/p/1\? -# @@||rtr.innovid.com^$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60706) -.rtr.innovid.com -# @@||adm.fwmrm.net/p/*/VPAIDAdRenderer.swf$object-subrequest,domain=uktv.co.uk (easylistchina+easylist.txt: 59996) -.adm.fwmrm.net/p/.*/VPAIDAdRenderer\.swf -# @@||v.fwmrm.net/ad/p/1?$object-subrequest,domain=uktv.co.uk (easylist.txt: 50370) -.v.fwmrm.net/ad/p/1\? -# @@||rtr.innovid.com^$object-subrequest,domain=uktv.co.uk (easylist.txt: 50221) -.rtr.innovid.com -# @@||adm.fwmrm.net/p/*/VPAIDAdRenderer.swf$object-subrequest,domain=uktv.co.uk (easylist.txt: 49511) -.adm.fwmrm.net/p/.*/VPAIDAdRenderer\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1765 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1765} \ -} -# @@||pubads.g.doubleclick.net/|$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60675) -.pubads.g.doubleclick.net/$ -# @@||doubleclickbygoogle.com^$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60231) -.doubleclickbygoogle.com -# @@||ads.tremorhub.com/ad/$object-subrequest,domain=vaughnlive.tv (easylistchina+easylist.txt: 60019) -.ads.tremorhub.com/ad/ -# @@||pubads.g.doubleclick.net/|$object-subrequest,domain=vaughnlive.tv (easylist.txt: 50190) -.pubads.g.doubleclick.net/$ -# @@||doubleclickbygoogle.com^$object-subrequest,domain=vaughnlive.tv (easylist.txt: 49746) -.doubleclickbygoogle.com -# @@||ads.tremorhub.com/ad/$object-subrequest,domain=vaughnlive.tv (easylist.txt: 49534) -.ads.tremorhub.com/ad/ - -#ab2p-unblock-request-Aaov-Caov-when-R1781 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1781} \ -} -# @@||g.doubleclick.net/gampad/ads?adk=*&ciu_szs&cmsid=$object-subrequest,domain=viki.mx (easylistchina+easylist.txt: 60326) -.g.doubleclick.net/gampad/ads\?adk=.*&ciu_szs&cmsid= -# @@||g.doubleclick.net/gampad/ads?adk=*&ciu_szs&cmsid=$object-subrequest,domain=viki.mx (easylist.txt: 49841) -.g.doubleclick.net/gampad/ads\?adk=.*&ciu_szs&cmsid= - -#ab2p-unblock-request-Aaov-Caov-when-R509 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R509} \ -} -# @@||rs.mail.ru/vp/adman2.swf$object-subrequest,domain=vk.com (easylistchina+easylist.txt: 59472) -.rs.mail.ru/vp/adman2\.swf -# @@||api.vigo.ru^*/network_status?$object-subrequest,domain=vk.com (advblock.txt: 7268) -.api.vigo.ru/.*/network_status\? -# @@||rs.mail.ru/vp/adman2.swf$object-subrequest,domain=vk.com (easylist.txt: 48987) -.rs.mail.ru/vp/adman2\.swf - -#ab2p-unblock-request-Aaov-Caov-when-R1788 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1788} \ -} -# @@||ad4.liverail.com/?LR_ORDER_ID=$object-subrequest,domain=volarvideo.com (easylistchina+easylist.txt: 58168) -.ad4.liverail.com/\?LR_ORDER_ID= -# @@||ad4.liverail.com/?LR_ORDER_ID=$object-subrequest,domain=volarvideo.com (easylist.txt: 47683) -.ad4.liverail.com/\?LR_ORDER_ID= - -#ab2p-unblock-request-Aaov-Caov-when-R511 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R511} \ -} -# @@||russia.ru/reklama/32x32.flv?link1=$object-subrequest,domain=vz.ru (advblock.txt: 7384) -.russia.ru/reklama/32x32\.flv\?link1= - -#ab2p-unblock-request-Aaov-Caov-when-R1820 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1820} \ -} -# @@||adv.wp.pl/RM/Box/*.mp4$object-subrequest,domain=wp.tv (easylistchina+easylist.txt: 60030) -.adv.wp.pl/RM/Box/.*\.mp4 -# @@||adv.wp.pl/RM/Box/*.mp4$object-subrequest,domain=wp.tv (easylist.txt: 49545) -.adv.wp.pl/RM/Box/.*\.mp4 - -#ab2p-unblock-request-Aaov-Caov-when-R1821 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1821} \ -} -# @@||collective-media.net/pfadx/wtv.wrc/$object-subrequest,domain=wrc.com (easylistchina+easylist.txt: 58605) -.collective-media.net/pfadx/wtv\.wrc/ -# @@||collective-media.net/pfadx/wtv.wrc/$object-subrequest,domain=wrc.com (easylist.txt: 48120) -.collective-media.net/pfadx/wtv\.wrc/ - -#ab2p-unblock-request-Aaov-Caov-when-R1822 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1822} \ -} -# @@||ads.adap.tv/applist|$object-subrequest,domain=wunderground.com (easylistchina+easylist.txt: 58219) -.ads.adap.tv/applist$ -# @@||ads.adap.tv/applist|$object-subrequest,domain=wunderground.com (easylist.txt: 47734) -.ads.adap.tv/applist$ - -#ab2p-unblock-request-Aaov-Caov-when-R1835 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1835} \ -} -# @@||adserver.bigwigmedia.com/adfetch2.php?$object-subrequest,domain=y8.com (easylistchina+easylist.txt: 58292) -.adserver.bigwigmedia.com/adfetch2\.php\? -# @@||adserver.bigwigmedia.com/adfetch2.php?$object-subrequest,domain=y8.com (easylist.txt: 47807) -.adserver.bigwigmedia.com/adfetch2\.php\? - -#ab2p-unblock-request-Aaov-Caov-when-R534 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R534} \ -} -# @@||query.vap.yahoo.net/nicobarMan/ads/acctid=$object-subrequest,domain=yahoo.com (easylistchina+easylist.txt: 59427) -.query.vap.yahoo.net/nicobarMan/ads/acctid= -# @@||query.vap.yahoo.net/nicobarMan/ads/acctid=$object-subrequest,domain=yahoo.com (easylist.txt: 48942) -.query.vap.yahoo.net/nicobarMan/ads/acctid= - -#ab2p-unblock-request-Aaov-Caov-when-R1845 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R1845} \ -} -# @@||as.sexad.net/as/r?d=preroll-mov-$object-subrequest,domain=youjizz.com (easylistchina+easylist.txt: 61430) -.as.sexad.net/as/r\?d=preroll-mov- -# @@||as.sexad.net/as/r?d=preroll-mov-$object-subrequest,domain=youjizz.com (easylist.txt: 50945) -.as.sexad.net/as/r\?d=preroll-mov- - -#ab2p-unblock-request-Aaov-Caov-when-R544 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R544} \ -} -# @@||doubleclick.net^*/adx/zattoo/video_*;cue=pre;$object-subrequest,domain=zattoo.com (easylistchina+easylist.txt: 60230) -.doubleclick.net/.*/adx/zattoo/video_.*;cue=pre; -# @@||doubleclick.net^*/adx/zattoo/video_*;cue=pre;$object-subrequest,domain=zattoo.com (easylist.txt: 49745) -.doubleclick.net/.*/adx/zattoo/video_.*;cue=pre; - -#ab2p-unblock-request-Aaov-Caov-when-nR-Rn1861 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-Rn1861} \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -# @@||tidaltv.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylistchina+easylist.txt: 59659) -.tidaltv.com/crossdomain\.xml -# @@||innovid.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylistchina+easylist.txt: 59010) -.innovid.com/crossdomain\.xml -# @@||tidaltv.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylist.txt: 49174) -.tidaltv.com/crossdomain\.xml -# @@||innovid.com/crossdomain.xml$object-subrequest,domain=~channel4.com (easylist.txt: 48525) -.innovid.com/crossdomain\.xml - -#ab2p-unblock-request-Aaov-Caov-when-nR-Rn1863 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-Rn1863} \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -# @@||g.doubleclick.net/crossdomain.xml$object-subrequest,domain=~filmon.tv|~newgrounds.com (easylistchina+easylist.txt: 58849) -.g.doubleclick.net/crossdomain\.xml -# @@||g.doubleclick.net/crossdomain.xml$object-subrequest,domain=~filmon.tv|~newgrounds.com (easylist.txt: 48364) -.g.doubleclick.net/crossdomain\.xml - -#ab2p-unblock-request-Aaov-Caov-when-nR-Rn641 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-Rn641} \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -# @@||209.222.8.217/crossdomain.xml$object-subrequest,domain=~p2p.adserver.ip (easylistchina+easylist.txt: 58116) -.209.222.8.217/crossdomain\.xml -# @@||209.222.8.217/crossdomain.xml$object-subrequest,domain=~p2p.adserver.ip (easylist.txt: 47631) -.209.222.8.217/crossdomain\.xml - -#ab2p-unblock-request-Aaov-Caov-when-nR-Rn1864 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-Rn1864} \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -# @@||adocean.pl/crossdomain.xml$object-subrequest,domain=~patrz.pl (easylistchina+easylist.txt: 60937) -.adocean.pl/crossdomain\.xml -# @@||adocean.pl/crossdomain.xml$object-subrequest,domain=~patrz.pl (easylist.txt: 50452) -.adocean.pl/crossdomain\.xml - -#ab2p-unblock-request-Aaov-Caov-when-nR-Rn761 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-Rn761} \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -# @@||adocean.pl^*^aocodetype=$object-subrequest,domain=~superfilm.pl (easylistchina+easylist.txt: 60940) -.adocean.pl/.*[^\w%.-]aocodetype= -# @@||adocean.pl^*^aocodetype=$object-subrequest,domain=~superfilm.pl (easylist.txt: 50455) -.adocean.pl/.*[^\w%.-]aocodetype= - -#ab2p-unblock-request-Aaov-Caov-when-nR-Rn1866 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-Rn1866} \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -# @@||oas.bigflix.com/realmedia/ads/$object-subrequest,domain=~tamilflix.net (easylistchina+easylist.txt: 59271) -.oas.bigflix.com/realmedia/ads/ -# @@||oas.bigflix.com/realmedia/ads/$object-subrequest,domain=~tamilflix.net (easylist.txt: 48786) -.oas.bigflix.com/realmedia/ads/ - -#ab2p-unblock-request-Aaov-Caov-when-nR-Rn1867 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-Rn1867} \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -# @@||adtech.de/crossdomain.xml$object-subrequest,domain=~zattoo.com (easylistchina+easylist.txt: 58318) -.adtech.de/crossdomain\.xml -# @@||adtech.de/crossdomain.xml$object-subrequest,domain=~zattoo.com (easylist.txt: 47833) -.adtech.de/crossdomain\.xml - -#ab2p-unblock-request-Aaov-Caov-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-nR} \ -} -# @@||sms.cz/bannery/$object-subrequest,~third-party (easylistchina+easylist.txt: 61119) -.sms.cz/bannery/ -# @@||realmedia.channel4.com/realmedia/ads/adstream_sx.ads/channel4.newcu/$object-subrequest,~third-party (easylistchina+easylist.txt: 59447) -.realmedia.channel4.com/realmedia/ads/adstream_sx\.ads/channel4\.newcu/ -# @@||sms.cz/bannery/$object-subrequest,~third-party (easylist.txt: 50634) -.sms.cz/bannery/ -# @@||realmedia.channel4.com/realmedia/ads/adstream_sx.ads/channel4.newcu/$object-subrequest,~third-party (easylist.txt: 48962) -.realmedia.channel4.com/realmedia/ads/adstream_sx\.ads/channel4\.newcu/ #ab2p-unblock-request-Aasv-Casv {-block \ +client-header-tagger{ab2p-unblock-request-Aasv} \ +server-header-tagger{ab2p-unblock-request-Casv} \ } -TAG:^ab2p-unblock-request-Aasv-Casv$ -# @@||submityourflicks.com/player/player-ads.swf$object (easylistchina+easylist.txt: 61775) -.submityourflicks.com/player/player-ads\.swf -# @@||panicporn.com/Bannerads/player/player_flv_multi.swf$object (easylistchina+easylist.txt: 61451) -.panicporn.com/Bannerads/player/player_flv_multi\.swf -# @@||hostedadsp.realitykings.com/hosted/flash/rk_player_1.5_300x250.swf$object (easylistchina+easylist.txt: 61443) -.hostedadsp.realitykings.com/hosted/flash/rk_player_1\.5_300x250\.swf -# @@||haberler.com/video-haber/adsense_news_politics.swf?$object (easylistchina+easylist.txt: 61035) -.haberler.com/video-haber/adsense_news_politics\.swf\? -# @@||flashgames247.com/advertising/preroll/google-fg247-preloader.swf$object (easylistchina+easylist.txt: 61026) -.flashgames247.com/advertising/preroll/google-fg247-preloader\.swf -# @@||moje-dzialdowo.pl/images/*.swf|$object (easylistchina+easylist.txt: 60535) -.moje-dzialdowo.pl/images/.*\.swf$ -# @@||zeenews.india.com/ads/jw/player.swf$object (easylistchina+easylist.txt: 59876) -.zeenews.india.com/ads/jw/player\.swf -# @@||upc-cablecom.ch^*.swf?clicktag=http$object (easylistchina+easylist.txt: 59727) -.upc-cablecom.ch/.*\.swf\?clicktag=http -# @@||toongames.com/advertising/toon-google-preloader.swf$object (easylistchina+easylist.txt: 59676) -.toongames.com/advertising/toon-google-preloader\.swf -# @@||style.com/images/*.doubleclick$object (easylistchina+easylist.txt: 59599) -.style.com/images/.*\.doubleclick -# @@||style.com/flashxml/*.doubleclick$object (easylistchina+easylist.txt: 59598) -.style.com/flashxml/.*\.doubleclick -# @@||static.cricinfo.com^*/ADVERTS/*/liveScores.swf$object (easylistchina+easylist.txt: 59591) -.static.cricinfo.com/.*/ADVERTS/.*/liveScores\.swf -# @@||rthk.org.hk/assets/flash/rthk/*/ad_banner$object (easylistchina+easylist.txt: 59478) -.rthk.org.hk/assets/flash/rthk/.*/ad_banner -# @@||rthk.hk/assets/flash/rthk/*/ad_banner$object (easylistchina+easylist.txt: 59477) -.rthk.hk/assets/flash/rthk/.*/ad_banner -# @@||pinkbike.org^*.swf?ad=0&$object (easylistchina+easylist.txt: 59376) -.pinkbike.org/.*\.swf\?ad=0& -# @@||pacogames.com/ad/ima3_preloader_$object (easylistchina+easylist.txt: 59326) -.pacogames.com/ad/ima3_preloader_ -# @@||mofunzone.com/ads/ima3_preloader_*.swf$object (easylistchina+easylist.txt: 59189) -.mofunzone.com/ads/ima3_preloader_.*\.swf -# @@||lightningcast.net/servlets/getplaylist?*&responsetype=asx&$object (easylistchina+easylist.txt: 59085) -.lightningcast.net/servlets/getplaylist\?.*&responsetype=asx& -# @@||kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_$object (easylistchina+easylist.txt: 59064) -.kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_ -# @@||itv.com^*/flvplayer.swf?$object (easylistchina+easylist.txt: 59040) -.itv.com/.*/flvplayer\.swf\? -# @@||ifeelgoood.com/tapcontent-*.swf?clicktag=$object (easylistchina+easylist.txt: 58970) -.ifeelgoood.com/tapcontent-.*\.swf\?clicktag= -# @@||i.espn.co.uk/ads/gamemodule_$object (easylistchina+easylist.txt: 58964) -.i.espn.co.uk/ads/gamemodule_ -# @@||gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-*.swf$object (easylistchina+easylist.txt: 58886) -.gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-.*\.swf -# @@||girlsplay.com/banners/ima3_preloader_$object (easylistchina+easylist.txt: 58877) -.girlsplay.com/banners/ima3_preloader_ -# @@||gameitnow.com/ads/google_loader.swf$object (easylistchina+easylist.txt: 58863) -.gameitnow.com/ads/google_loader\.swf -# @@||game.zylom.com^*/cm_loader.*.swf?$object (easylistchina+easylist.txt: 58860) -.game.zylom.com/.*/cm_loader\..*\.swf\? -# @@||game.zylom.com^*.swf?*&adURL=$object (easylistchina+easylist.txt: 58859) -.game.zylom.com/.*\.swf\?.*&adURL= -# @@||freeonlinegames.com/advertising/google-loader.swf?$object (easylistchina+easylist.txt: 58841) -.freeonlinegames.com/advertising/google-loader\.swf\? -# @@||freeonlinegames.com/advertising/adaptv-as3.swf?$object (easylistchina+easylist.txt: 58840) -.freeonlinegames.com/advertising/adaptv-as3\.swf\? -# @@||espn.co.uk/ads/gamemodule_v0.2.swf$object (easylistchina+easylist.txt: 58791) -.espn.co.uk/ads/gamemodule_v0\.2\.swf -# @@||allot.com/Banners/*.swf$object (easylistchina+easylist.txt: 58381) -.allot.com/Banners/.*\.swf -# @@||union.bokecc.com/flash/$object (easylistchina+easylist.txt: 10403) +# @@||union.bokecc.com/flash/$object (easylistchina.txt: 10391) .union.bokecc.com/flash/ -# @@||play.aniland.org^*.swf$object (advblock.txt: 7360) -.play.aniland.org/.*\.swf -# @@||submityourflicks.com/player/player-ads.swf$object (easylist.txt: 51290) -.submityourflicks.com/player/player-ads\.swf -# @@||panicporn.com/Bannerads/player/player_flv_multi.swf$object (easylist.txt: 50966) -.panicporn.com/Bannerads/player/player_flv_multi\.swf -# @@||hostedadsp.realitykings.com/hosted/flash/rk_player_1.5_300x250.swf$object (easylist.txt: 50958) -.hostedadsp.realitykings.com/hosted/flash/rk_player_1\.5_300x250\.swf -# @@||haberler.com/video-haber/adsense_news_politics.swf?$object (easylist.txt: 50550) -.haberler.com/video-haber/adsense_news_politics\.swf\? -# @@||flashgames247.com/advertising/preroll/google-fg247-preloader.swf$object (easylist.txt: 50541) -.flashgames247.com/advertising/preroll/google-fg247-preloader\.swf -# @@||moje-dzialdowo.pl/images/*.swf|$object (easylist.txt: 50050) -.moje-dzialdowo.pl/images/.*\.swf$ -# @@||zeenews.india.com/ads/jw/player.swf$object (easylist.txt: 49391) -.zeenews.india.com/ads/jw/player\.swf -# @@||upc-cablecom.ch^*.swf?clicktag=http$object (easylist.txt: 49242) -.upc-cablecom.ch/.*\.swf\?clicktag=http -# @@||toongames.com/advertising/toon-google-preloader.swf$object (easylist.txt: 49191) -.toongames.com/advertising/toon-google-preloader\.swf -# @@||style.com/images/*.doubleclick$object (easylist.txt: 49114) -.style.com/images/.*\.doubleclick -# @@||style.com/flashxml/*.doubleclick$object (easylist.txt: 49113) -.style.com/flashxml/.*\.doubleclick -# @@||static.cricinfo.com^*/ADVERTS/*/liveScores.swf$object (easylist.txt: 49106) -.static.cricinfo.com/.*/ADVERTS/.*/liveScores\.swf -# @@||rthk.org.hk/assets/flash/rthk/*/ad_banner$object (easylist.txt: 48993) -.rthk.org.hk/assets/flash/rthk/.*/ad_banner -# @@||rthk.hk/assets/flash/rthk/*/ad_banner$object (easylist.txt: 48992) -.rthk.hk/assets/flash/rthk/.*/ad_banner -# @@||pinkbike.org^*.swf?ad=0&$object (easylist.txt: 48891) -.pinkbike.org/.*\.swf\?ad=0& -# @@||pacogames.com/ad/ima3_preloader_$object (easylist.txt: 48841) -.pacogames.com/ad/ima3_preloader_ -# @@||mofunzone.com/ads/ima3_preloader_*.swf$object (easylist.txt: 48704) -.mofunzone.com/ads/ima3_preloader_.*\.swf -# @@||lightningcast.net/servlets/getplaylist?*&responsetype=asx&$object (easylist.txt: 48600) -.lightningcast.net/servlets/getplaylist\?.*&responsetype=asx& -# @@||kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_$object (easylist.txt: 48579) -.kiz10.com/template/publicidad/ficha/ads_preloadgame/ima3_preloader_ -# @@||itv.com^*/flvplayer.swf?$object (easylist.txt: 48555) -.itv.com/.*/flvplayer\.swf\? -# @@||ifeelgoood.com/tapcontent-*.swf?clicktag=$object (easylist.txt: 48485) -.ifeelgoood.com/tapcontent-.*\.swf\?clicktag= -# @@||i.espn.co.uk/ads/gamemodule_$object (easylist.txt: 48479) -.i.espn.co.uk/ads/gamemodule_ -# @@||gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-*.swf$object (easylist.txt: 48401) -.gmx.com/images/outsource/application/mailclient/mailcom/resource/mailclient/flash/multiselection_upload/multiselectionupload-.*\.swf -# @@||girlsplay.com/banners/ima3_preloader_$object (easylist.txt: 48392) -.girlsplay.com/banners/ima3_preloader_ -# @@||gameitnow.com/ads/google_loader.swf$object (easylist.txt: 48378) -.gameitnow.com/ads/google_loader\.swf -# @@||game.zylom.com^*/cm_loader.*.swf?$object (easylist.txt: 48375) -.game.zylom.com/.*/cm_loader\..*\.swf\? -# @@||game.zylom.com^*.swf?*&adURL=$object (easylist.txt: 48374) -.game.zylom.com/.*\.swf\?.*&adURL= -# @@||freeonlinegames.com/advertising/google-loader.swf?$object (easylist.txt: 48356) -.freeonlinegames.com/advertising/google-loader\.swf\? -# @@||freeonlinegames.com/advertising/adaptv-as3.swf?$object (easylist.txt: 48355) -.freeonlinegames.com/advertising/adaptv-as3\.swf\? -# @@||espn.co.uk/ads/gamemodule_v0.2.swf$object (easylist.txt: 48306) -.espn.co.uk/ads/gamemodule_v0\.2\.swf -# @@||allot.com/Banners/*.swf$object (easylist.txt: 47896) -.allot.com/Banners/.*\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R838 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R838} \ -} -# @@||liverail.com^*/vpaid-player.swf?$object,domain=addictinggames.com|keygames.com|nglmedia.com|shockwave.com (easylistchina+easylist.txt: 59105) -.liverail.com/.*/vpaid-player\.swf\? -# @@||liverail.com^*/vpaid-player.swf?$object,domain=addictinggames.com|keygames.com|nglmedia.com|shockwave.com (easylist.txt: 48620) -.liverail.com/.*/vpaid-player\.swf\? - -#ab2p-unblock-request-Aasv-Casv-when-R868 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R868} \ -} -# @@||yceml.net^$object,domain=affrity.com (easylistchina+easylist.txt: 59843) -.yceml.net -# @@||awltovhc.com^$object,domain=affrity.com (easylistchina+easylist.txt: 58466) -.awltovhc.com -# @@||yceml.net^$object,domain=affrity.com (easylist.txt: 49358) -.yceml.net -# @@||awltovhc.com^$object,domain=affrity.com (easylist.txt: 47981) -.awltovhc.com - -#ab2p-unblock-request-Aasv-Casv-when-R892 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R892} \ -} -# @@||adman.gr/jwplayer.flash.swf$object,domain=alphatv.gr (easylistchina+easylist.txt: 60936) -.adman.gr/jwplayer\.flash\.swf -# @@||adman.gr/jwplayer.flash.swf$object,domain=alphatv.gr (easylist.txt: 50451) -.adman.gr/jwplayer\.flash\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R1018 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1018} \ -} -# @@||adtech.de/apps/*.swf?targettag=$object,domain=cartoonnetworkasia.com (easylistchina+easylist.txt: 58317) -.adtech.de/apps/.*\.swf\?targettag= -# @@||adtech.de/apps/*.swf?targettag=$object,domain=cartoonnetworkasia.com (easylist.txt: 47832) -.adtech.de/apps/.*\.swf\?targettag= - -#ab2p-unblock-request-Aasv-Casv-when-R1156 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1156} \ -} -# @@||ad4game.com/ima3_preloader_*.swf$object,domain=escapefan.com (easylistchina+easylist.txt: 58175) -.ad4game.com/ima3_preloader_.*\.swf -# @@||ad4game.com/ima3_preloader_*.swf$object,domain=escapefan.com (easylist.txt: 47690) -.ad4game.com/ima3_preloader_.*\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R1180 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1180} \ -} -# @@||ezone.com/banners/swfs/$object,domain=ezone.com (easylistchina+easylist.txt: 58811) -.ezone.com/banners/swfs/ -# @@||ezone.com/banners/swfs/$object,domain=ezone.com (easylist.txt: 48326) -.ezone.com/banners/swfs/ - -#ab2p-unblock-request-Aasv-Casv-when-R1201 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1201} \ -} -# @@||flashgames247.com/advertising/ima-vast-preroll.swf$object,domain=flashgames247.com (easylistchina+easylist.txt: 58825) -.flashgames247.com/advertising/ima-vast-preroll\.swf -# @@||flashgames247.com/advertising/ima-vast-preroll.swf$object,domain=flashgames247.com (easylist.txt: 48340) -.flashgames247.com/advertising/ima-vast-preroll\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R1227 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1227} \ -} -# @@||freeworldgroup.com/googleloader/GoogleAds.swf?contentId=FWG_Game_PreLoader&$object,domain=freeworldgroup.com (easylistchina+easylist.txt: 58844) -.freeworldgroup.com/googleloader/GoogleAds\.swf\?contentId=FWG_Game_PreLoader& -# @@||freeworldgroup.com/googleloader/GoogleAds.swf?contentId=FWG_Game_PreLoader&$object,domain=freeworldgroup.com (easylist.txt: 48359) -.freeworldgroup.com/googleloader/GoogleAds\.swf\?contentId=FWG_Game_PreLoader& - -#ab2p-unblock-request-Aasv-Casv-when-R1243 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1243} \ -} -# @@||yimg.com^*/adplugin_*.swf$object,domain=games.yahoo.com (easylistchina+easylist.txt: 59852) -.yimg.com/.*/adplugin_.*\.swf -# @@||yimg.com^*/adplugin_*.swf$object,domain=games.yahoo.com (easylist.txt: 49367) -.yimg.com/.*/adplugin_.*\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R1247 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1247} \ -} -# @@||admin.brightcove.com/viewer/*/brightcovebootloader.swf?$object,domain=gamesradar.com (easylistchina+easylist.txt: 58210) -.admin.brightcove.com/viewer/.*/brightcovebootloader\.swf\? -# @@||admin.brightcove.com/viewer/*/brightcovebootloader.swf?$object,domain=gamesradar.com (easylist.txt: 47725) -.admin.brightcove.com/viewer/.*/brightcovebootloader\.swf\? - -#ab2p-unblock-request-Aasv-Casv-when-R1321 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1321} \ -} -# @@||amazonaws.com/adplayer/player/newas3player.swf?$object,domain=india.com (easylistchina+easylist.txt: 58396) -.amazonaws.com/adplayer/player/newas3player\.swf\? -# @@||amazonaws.com/adplayer/player/newas3player.swf?$object,domain=india.com (easylist.txt: 47911) -.amazonaws.com/adplayer/player/newas3player\.swf\? - -#ab2p-unblock-request-Aasv-Casv-when-R1329 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1329} \ -} -# @@||hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_$object,domain=interia.tv (easylistchina+easylist.txt: 61041) -.hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_ -# @@||hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_$object,domain=interia.tv (easylist.txt: 50556) -.hub.com.pl/reklama_video/instream_ebmed/vStitial_inttv_ - -#ab2p-unblock-request-Aasv-Casv-when-R1466 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1466} \ -} -# @@||lbdevicons.brainient.com/flash/*/VPAIDWrapper.swf$object,domain=mousebreaker.com (easylistchina+easylist.txt: 59077) -.lbdevicons.brainient.com/flash/.*/VPAIDWrapper\.swf -# @@||lbdevicons.brainient.com/flash/*/VPAIDWrapper.swf$object,domain=mousebreaker.com (easylist.txt: 48592) -.lbdevicons.brainient.com/flash/.*/VPAIDWrapper\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R1479 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1479} \ -} -# @@||adap.tv/redir/client/swfloader.swf?$object,domain=my-magazine.me (easylistchina+easylist.txt: 60934) -.adap.tv/redir/client/swfloader\.swf\? -# @@||adap.tv/redir/client/swfloader.swf?$object,domain=my-magazine.me (easylist.txt: 50449) -.adap.tv/redir/client/swfloader\.swf\? - -#ab2p-unblock-request-Aasv-Casv-when-R358 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R358} \ -} -# @@||liverail.com^*/liverail_preroll.swf$object,domain=newgrounds.com (easylistchina+easylist.txt: 59104) -.liverail.com/.*/liverail_preroll\.swf -# @@||liverail.com^*/liverail_preroll.swf$object,domain=newgrounds.com (easylist.txt: 48619) -.liverail.com/.*/liverail_preroll\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R1534 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1534} \ -} -# @@||optimatic.com^*/shell_$object,domain=pch.com (easylistchina+easylist.txt: 59309) -.optimatic.com/.*/shell_ -# @@||optimatic.com^*/shell.swf$object,domain=pch.com (easylistchina+easylist.txt: 59308) -.optimatic.com/.*/shell\.swf -# @@||optimatic.com^*/shell_$object,domain=pch.com (easylist.txt: 48824) -.optimatic.com/.*/shell_ -# @@||optimatic.com^*/shell.swf$object,domain=pch.com (easylist.txt: 48823) -.optimatic.com/.*/shell\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R1581 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1581} \ -} -# @@||cbslocal.com/flash/videoads.*.swf$object,domain=radio.com (easylistchina+easylist.txt: 58554) -.cbslocal.com/flash/videoads\..*\.swf -# @@||cbslocal.com/flash/videoads.*.swf$object,domain=radio.com (easylist.txt: 48069) -.cbslocal.com/flash/videoads\..*\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R1689 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1689} \ -} -# @@||jtvnw.net/widgets/jtv_player.*&referer=http://talkrtv.com/ad/channel.php?$object,domain=talkrtv.com (easylistchina+easylist.txt: 59051) -.jtvnw.net/widgets/jtv_player\..*&referer=http://talkrtv\.com/ad/channel\.php\? -# @@||jtvnw.net/widgets/jtv_player.*&referer=http://talkrtv.com/ad/channel.php?$object,domain=talkrtv.com (easylist.txt: 48566) -.jtvnw.net/widgets/jtv_player\..*&referer=http://talkrtv\.com/ad/channel\.php\? - -#ab2p-unblock-request-Aasv-Casv-when-R1831 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R1831} \ -} -# @@||cdn.cpmstar.com/cached/swf/preplay.swf$object,domain=xfire.com (easylistchina+easylist.txt: 58562) -.cdn.cpmstar.com/cached/swf/preplay\.swf -# @@||cdn.cpmstar.com/cached/swf/preplay.swf$object,domain=xfire.com (easylist.txt: 48077) -.cdn.cpmstar.com/cached/swf/preplay\.swf - -#ab2p-unblock-request-Aasv-Casv-when-R539 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R539} \ -} -# @@||s.ytimg.com/yts/swfbin/player-*/watch_as3.swf$object,domain=youtube.com (easylistchina+easylist.txt: 59481) -.s.ytimg.com/yts/swfbin/player-.*/watch_as3\.swf -# @@||s.ytimg.com/yts/swfbin/player-*/watch_as3.swf$object,domain=youtube.com (easylist.txt: 48996) -.s.ytimg.com/yts/swfbin/player-.*/watch_as3\.swf - -#ab2p-unblock-request-Aasv-Casv-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-nR} \ -} -# @@||vombasavers.com^*.swf?clickTAG=$object,~third-party (easylistchina+easylist.txt: 59780) -.vombasavers.com/.*\.swf\?clickTAG= -# @@||vombasavers.com^*.swf?clickTAG=$object,~third-party (easylist.txt: 49295) -.vombasavers.com/.*\.swf\?clickTAG= - -#ab2p-unblock-request-Aasv-Casv-when-nR-Rt -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-Rt} \ - +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-nR} \ -} -# @@||filestage.to/design/player/player.swf?*&popunder=$object,third-party (easylistchina+easylist.txt: 58823) -.filestage.to/design/player/player\.swf\?.*&popunder= -# @@||filestage.to/design/player/player.swf?*&popunder=$object,third-party (easylist.txt: 48338) -.filestage.to/design/player/player\.swf\?.*&popunder= - -#ab2p-unblock-request-Aasvnachijmov-Casvnachijmov -{-block \ - +client-header-tagger{ab2p-unblock-request-Aasvnachijmov} \ - +server-header-tagger{ab2p-unblock-request-Casvnachijmov} \ -} -# @@||vidible.tv/stage/$media,object,other (easylistchina+easylist.txt: 59765) -.vidible.tv/stage/ -# @@||vidible.tv/prod/$media,object,other (easylistchina+easylist.txt: 59763) -.vidible.tv/prod/ -# @@||vidible.tv/stage/$media,object,other (easylist.txt: 49280) -.vidible.tv/stage/ -# @@||vidible.tv/prod/$media,object,other (easylist.txt: 49278) -.vidible.tv/prod/ #ab2p-unblock-request-Ac-Cc {-block \ +client-header-tagger{ab2p-unblock-request-Ac} \ +server-header-tagger{ab2p-unblock-request-Cc} \ } -TAG:^ab2p-unblock-request-Ac-Cc$ -# @@||banki.ru/bitrix/*/advertising.block/$stylesheet (easylistchina+easylist.txt: 60988) -.banki.ru/bitrix/.*/advertising\.block/ -# @@||videomega.tv^$stylesheet (easylistchina+easylist.txt: 60870) -.videomega.tv -# @@||funniermoments.com^$stylesheet (easylistchina+easylist.txt: 60315) -.funniermoments.com -# @@||yahoo.com/combo?$stylesheet (easylistchina+easylist.txt: 59840) -.yahoo.com/combo\? -# @@||search.comcast.net/static.php?$stylesheet (easylistchina+easylist.txt: 59505) -.search.comcast.net/static\.php\? -# @@||planetaxel.com^*.php?ad=$stylesheet (easylistchina+easylist.txt: 59379) -.planetaxel.com/.*\.php\?ad= -# @@||pch.com^*/videoad.$stylesheet (easylistchina+easylist.txt: 59353) -.pch.com/.*/videoad\. -# @@||nytimes.perfectmarket.com^$stylesheet (easylistchina+easylist.txt: 59268) -.nytimes.perfectmarket.com -# @@||l.yimg.com/zz/combo?*/advertising.$stylesheet (easylistchina+easylist.txt: 59072) -.l.yimg.com/zz/combo\?.*/advertising\. -# @@||historyextra.com^*_advertorial$stylesheet (easylistchina+easylist.txt: 58944) -.historyextra.com/.*_advertorial -# @@||doityourself.com^*/shared/ads.css$stylesheet (easylistchina+easylist.txt: 58684) -.doityourself.com/.*/shared/ads\.css -# @@||dataknet.com/s.axd?$stylesheet (easylistchina+easylist.txt: 58654) -.dataknet.com/s\.axd\? -# @@||allulook4.com/min/?$stylesheet (easylistchina+easylist.txt: 58383) -.allulook4.com/min/\? -# @@||192.168.*/advertising_$stylesheet (easylistchina+easylist.txt: 10091) +# @@||192.168.*/advertising_$stylesheet (easylistchina.txt: 10075) .192.168.*./(.*/)?advertising_ -# @@||banki.ru/bitrix/*/advertising.block/$stylesheet (easylist.txt: 50503) -.banki.ru/bitrix/.*/advertising\.block/ -# @@||videomega.tv^$stylesheet (easylist.txt: 50385) -.videomega.tv -# @@||funniermoments.com^$stylesheet (easylist.txt: 49830) -.funniermoments.com -# @@||yahoo.com/combo?$stylesheet (easylist.txt: 49355) -.yahoo.com/combo\? -# @@||search.comcast.net/static.php?$stylesheet (easylist.txt: 49020) -.search.comcast.net/static\.php\? -# @@||planetaxel.com^*.php?ad=$stylesheet (easylist.txt: 48894) -.planetaxel.com/.*\.php\?ad= -# @@||pch.com^*/videoad.$stylesheet (easylist.txt: 48868) -.pch.com/.*/videoad\. -# @@||nytimes.perfectmarket.com^$stylesheet (easylist.txt: 48783) -.nytimes.perfectmarket.com -# @@||l.yimg.com/zz/combo?*/advertising.$stylesheet (easylist.txt: 48587) -.l.yimg.com/zz/combo\?.*/advertising\. -# @@||historyextra.com^*_advertorial$stylesheet (easylist.txt: 48459) -.historyextra.com/.*_advertorial -# @@||doityourself.com^*/shared/ads.css$stylesheet (easylist.txt: 48199) -.doityourself.com/.*/shared/ads\.css -# @@||dataknet.com/s.axd?$stylesheet (easylist.txt: 48169) -.dataknet.com/s\.axd\? -# @@||allulook4.com/min/?$stylesheet (easylist.txt: 47898) -.allulook4.com/min/\? - -#ab2p-unblock-request-Ac-Cc-when-R75 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ac-Cc-when-R75} \ -} -# @@||adultmult.tv/style.css|$stylesheet,domain=adultmult.tv (advblock.txt: 7244) -.adultmult.tv/style\.css$ - -#ab2p-unblock-request-Ac-Cc-when-R958 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ac-Cc-when-R958} \ -} -# @@||imagesbn.com/resources?*/googlead.$stylesheet,domain=barnesandnoble.com (easylistchina+easylist.txt: 58987) -.imagesbn.com/resources\?.*/googlead\. -# @@||imagesbn.com/resources?*/googlead.$stylesheet,domain=barnesandnoble.com (easylist.txt: 48502) -.imagesbn.com/resources\?.*/googlead\. - -#ab2p-unblock-request-Ac-Cc-when-R962 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ac-Cc-when-R962} \ -} -# @@||bbc.co.uk/modules/branding/css/$stylesheet,domain=bbc.co.uk (advblock.txt: 7277) -.bbc.co.uk/modules/branding/css/ - -#ab2p-unblock-request-Ac-Cc-when-R1161 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ac-Cc-when-R1161} \ -} -# @@||espncdn.com/combiner/c?*/advertising.$stylesheet,domain=espnfc.com (easylistchina+easylist.txt: 58795) -.espncdn.com/combiner/c\?.*/advertising\. -# @@||espncdn.com/combiner/c?*/advertising.$stylesheet,domain=espnfc.com (easylist.txt: 48310) -.espncdn.com/combiner/c\?.*/advertising\. - -#ab2p-unblock-request-Ac-Cc-when-R1517 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ac-Cc-when-R1517} \ -} -# @@.css^$stylesheet,domain=openload.co (easylistchina+easylist.txt: 59886) -/.*\.css[^\w%.-] -.*.css -# @@.css^$stylesheet,domain=openload.co (easylist.txt: 49401) -/.*\.css[^\w%.-] -.*.css - -#ab2p-unblock-request-Ac-Cc-when-R534 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ac-Cc-when-R534} \ -} -# @@||yimg.com/p/combo?$stylesheet,domain=yahoo.com (easylistchina+easylist.txt: 59848) -.yimg.com/p/combo\? -# @@||yimg.com/p/combo?$stylesheet,domain=yahoo.com (easylist.txt: 49363) -.yimg.com/p/combo\? - -#ab2p-unblock-request-Aci-Cci -{-block \ - +client-header-tagger{ab2p-unblock-request-Aci} \ - +server-header-tagger{ab2p-unblock-request-Cci} \ -} -TAG:^ab2p-unblock-request-Aci-Cci$ -# @@||proxyserver.asia/themes/advertising-$image,stylesheet (easylistchina+easylist.txt: 59417) -.proxyserver.asia/themes/advertising- -# @@||linkbucks.com/tmpl/$image,stylesheet (easylistchina+easylist.txt: 59088) -.linkbucks.com/tmpl/ -# @@||img.weather.weatherbug.com^*/stickers/$image,stylesheet (easylistchina+easylist.txt: 58998) -.img.weather.weatherbug.com/.*/stickers/ -# @@||gotomeeting.com/images/ad/$image,stylesheet (easylistchina+easylist.txt: 58919) -.gotomeeting.com/images/ad/ -# @@/advertising-glype/*$image,stylesheet (easylistchina+easylist.txt: 58102) -/(.*/)?advertising-glype/.* -# @@||proxyserver.asia/themes/advertising-$image,stylesheet (easylist.txt: 48932) -.proxyserver.asia/themes/advertising- -# @@||linkbucks.com/tmpl/$image,stylesheet (easylist.txt: 48603) -.linkbucks.com/tmpl/ -# @@||img.weather.weatherbug.com^*/stickers/$image,stylesheet (easylist.txt: 48513) -.img.weather.weatherbug.com/.*/stickers/ -# @@||gotomeeting.com/images/ad/$image,stylesheet (easylist.txt: 48434) -.gotomeeting.com/images/ad/ -# @@/advertising-glype/*$image,stylesheet (easylist.txt: 47617) -/(.*/)?advertising-glype/.* - -#ab2p-unblock-request-Aci-Cci-when-R893 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aci-Cci-when-R893} \ -} -# @@||adv.alsscan.com^$image,stylesheet,domain=alscash.com (easylistchina+easylist.txt: 61429) -.adv.alsscan.com -# @@||adv.alsscan.com^$image,stylesheet,domain=alscash.com (easylist.txt: 50944) -.adv.alsscan.com - -#ab2p-unblock-request-Aci-Cci-when-R1789 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aci-Cci-when-R1789} \ -} -# @@||amazon-adsystem.com^$image,stylesheet,domain=voldingenglish.com (easylistchina+easylist.txt: 58394) -.amazon-adsystem.com -# @@||amazon-adsystem.com^$image,stylesheet,domain=voldingenglish.com (easylist.txt: 47909) -.amazon-adsystem.com - -#ab2p-unblock-request-Acij-Ccij -{-block \ - +client-header-tagger{ab2p-unblock-request-Acij} \ - +server-header-tagger{ab2p-unblock-request-Ccij} \ -} -TAG:^ab2p-unblock-request-Acij-Ccij$ -# @@||garrysmod.org/ads/$image,script,stylesheet (easylistchina+easylist.txt: 58870) -.garrysmod.org/ads/ -# @@||carzone.ie/es-ie/*advert$image,script,stylesheet (easylistchina+easylist.txt: 58547) -.carzone.ie/es-ie/.*advert -# @@||garrysmod.org/ads/$image,script,stylesheet (easylist.txt: 48385) -.garrysmod.org/ads/ -# @@||carzone.ie/es-ie/*advert$image,script,stylesheet (easylist.txt: 48062) -.carzone.ie/es-ie/.*advert - -#ab2p-unblock-request-Acij-Ccij-Xx -{-block \ - +client-header-tagger{ab2p-unblock-request-Acij} \ - +server-header-tagger{ab2p-unblock-request-Ccij} \ - +client-header-tagger{ab2p-unblock-request-Xx} \ -} -TAG:^ab2p-unblock-request-Acij-Ccij-Xx$ - -#ab2p-unblock-request-Acij-Ccij-Xx-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Acij-Ccij-Xx-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Acij-Ccij-Xx-when-nR} \ -} -# @@||advertising.racingpost.com^$image,script,stylesheet,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58341) -.advertising.racingpost.com -# @@||advertising.racingpost.com^$image,script,stylesheet,~third-party,xmlhttprequest (easylist.txt: 47856) -.advertising.racingpost.com - -#ab2p-unblock-request-Acij-Ccij-when-R1519 -{-block \ - +client-header-tagger{ab2p-unblock-request-Acij-Ccij-when-R1519} \ -} -# @@||openload.io^$image,script,stylesheet,subdocument,domain=openload.io (easylistchina+easylist.txt: 60607) -.openload.io -# @@||openload.io^$image,script,stylesheet,subdocument,domain=openload.io (easylist.txt: 50122) -.openload.io - -#ab2p-unblock-request-Acj-Ccj -{-block \ - +client-header-tagger{ab2p-unblock-request-Acj} \ - +server-header-tagger{ab2p-unblock-request-Ccj} \ -} -TAG:^ab2p-unblock-request-Acj-Ccj$ -# @@||vk.com/ads?act=payments&type$script,stylesheet (easylistchina+easylist.txt: 61234) -.vk.com/ads\?act=payments&type -# @@||fitshr.net^$script,stylesheet (easylistchina+easylist.txt: 60294) -.fitshr.net -# @@||tacdn.com^*_popunder_$script,stylesheet (easylistchina+easylist.txt: 59615) -.tacdn.com/.*_popunder_ -# @@||maxim.com/advert*/countdown/$script,stylesheet (easylistchina+easylist.txt: 59145) -.maxim.com/advert.*/countdown/ -# @@||libraryjournal.com/wp-content/plugins/wp-intern-ads/$script,stylesheet (easylistchina+easylist.txt: 59084) -.libraryjournal.com/wp-content/plugins/wp-intern-ads/ -# @@||interadcorp.com/script/interad.$script,stylesheet (easylistchina+easylist.txt: 59028) -.interadcorp.com/script/interad\. -# @@||images.frys.com/art/ads/js/$script,stylesheet (easylistchina+easylist.txt: 58981) -.images.frys.com/art/ads/js/ -# @@||google.com/_/apps-static/*/socialads/$script,stylesheet (easylistchina+easylist.txt: 58895) -.google.com/_/apps-static/.*/socialads/ -# @@||g4tv.com/clientscriptoptimizer.ashx?*-ads.$script,stylesheet (easylistchina+easylist.txt: 58857) -.g4tv.com/clientscriptoptimizer\.ashx\?.*-ads\. -# @@||vk.com/ads?act=payments&type$script,stylesheet (easylist.txt: 50749) -.vk.com/ads\?act=payments&type -# @@||fitshr.net^$script,stylesheet (easylist.txt: 49809) -.fitshr.net -# @@||tacdn.com^*_popunder_$script,stylesheet (easylist.txt: 49130) -.tacdn.com/.*_popunder_ -# @@||maxim.com/advert*/countdown/$script,stylesheet (easylist.txt: 48660) -.maxim.com/advert.*/countdown/ -# @@||libraryjournal.com/wp-content/plugins/wp-intern-ads/$script,stylesheet (easylist.txt: 48599) -.libraryjournal.com/wp-content/plugins/wp-intern-ads/ -# @@||interadcorp.com/script/interad.$script,stylesheet (easylist.txt: 48543) -.interadcorp.com/script/interad\. -# @@||images.frys.com/art/ads/js/$script,stylesheet (easylist.txt: 48496) -.images.frys.com/art/ads/js/ -# @@||google.com/_/apps-static/*/socialads/$script,stylesheet (easylist.txt: 48410) -.google.com/_/apps-static/.*/socialads/ -# @@||g4tv.com/clientscriptoptimizer.ashx?*-ads.$script,stylesheet (easylist.txt: 48372) -.g4tv.com/clientscriptoptimizer\.ashx\?.*-ads\. - -#ab2p-unblock-request-Acj-Ccj-when-R897 -{-block \ - +client-header-tagger{ab2p-unblock-request-Acj-Ccj-when-R897} \ -} -# @@||am.ru/shared/minify.php?$script,stylesheet,domain=am.ru (advblock.txt: 7260) -.am.ru/shared/minify\.php\? - -#ab2p-unblock-request-Acj-Ccj-when-R906 -{-block \ - +client-header-tagger{ab2p-unblock-request-Acj-Ccj-when-R906} \ -} -# @@||mfcreative.com/lib/tgn/combo.ashx?$script,stylesheet,domain=ancestry.com|ancestry.com.au (easylistchina+easylist.txt: 59172) -.mfcreative.com/lib/tgn/combo\.ashx\? -# @@||mfcreative.com/lib/tgn/combo.ashx?$script,stylesheet,domain=ancestry.com|ancestry.com.au (easylist.txt: 48687) -.mfcreative.com/lib/tgn/combo\.ashx\? - -#ab2p-unblock-request-Acj-Ccj-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Acj-Ccj-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Acj-Ccj-when-nR} \ -} -# @@/wp-content/plugins/bwp-minify/min/?f=$script,stylesheet,~third-party (easylistchina+easylist.txt: 58110) -/(.*/)?wp-content/plugins/bwp-minify/min/\?f= -# @@/wp-content/plugins/bwp-minify/min/?f=$script,stylesheet,~third-party (easylist.txt: 47625) -/(.*/)?wp-content/plugins/bwp-minify/min/\?f= #ab2p-unblock-request-Ahm-Chm {-block \ @@ -372901,142 +37952,26 @@ TAG:^ab2p-unblock-request-Acj-Ccj$ +server-header-tagger{ab2p-unblock-request-Chm} \ } TAG:^ab2p-unblock-request-Ahm-Chm$ -# @@||google.com/payments/*/adwords.$document,subdocument (easylistchina+easylist.txt: 61170) -.google.com/payments/.*/adwords\. -# @@||www.networkadvertising.org/choices/|$document (easylistchina+easylist.txt: 59835) -.www.networkadvertising.org/choices/$ -# @@||neobux.com/v/?a=l&l=$document (easylistchina+easylist.txt: 59230) -.neobux.com/v/\?a=l&l= -# @@||google.com/uds/modules/elements/newsshow/iframe.html?format=728x90^$document,subdocument (easylistchina+easylist.txt: 58909) -.google.com/uds/modules/elements/newsshow/iframe\.html\?format=728x90[^\w%.-] -# @@||my.south.rt.ru^$document (advblock.txt: 7341) -.my.south.rt.ru -# @@||google.com/payments/*/adwords.$document,subdocument (easylist.txt: 50685) -.google.com/payments/.*/adwords\. -# @@||www.networkadvertising.org/choices/|$document (easylist.txt: 49350) -.www.networkadvertising.org/choices/$ -# @@||neobux.com/v/?a=l&l=$document (easylist.txt: 48745) -.neobux.com/v/\?a=l&l= -# @@||google.com/uds/modules/elements/newsshow/iframe.html?format=728x90^$document,subdocument (easylist.txt: 48424) -.google.com/uds/modules/elements/newsshow/iframe\.html\?format=728x90[^\w%.-] -#ab2p-unblock-request-Ahm-Chm-when-R818 +#ab2p-unblock-request-Ahm-Chm-when-R219 {-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R818} \ + +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R219} \ } -# @@||google.com/uds/afs?$document,subdocument,domain=about.com|ehow.com|livestrong.com (easylistchina+easylist.txt: 58906) -.google.com/uds/afs\? -# @@||google.com/uds/afs?$document,subdocument,domain=about.com|ehow.com|livestrong.com (easylist.txt: 48421) -.google.com/uds/afs\? - -#ab2p-unblock-request-Ahm-Chm-when-R837 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R837} \ -} -# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina+easylist.txt: 10132) +# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina.txt: 10116) .ad.alimama.com -#ab2p-unblock-request-Ahm-Chm-when-R863 +#ab2p-unblock-request-Ahm-Chm-when-R301 {-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R863} \ + +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R301} \ } -# @@||bpui0.google.com^$document,subdocument,domain=adwords.google.com (easylistchina+easylist.txt: 61168) -.bpui0.google.com -# @@||accounts.google.com^$document,subdocument,domain=adwords.google.com (easylistchina+easylist.txt: 61164) -.accounts.google.com -# @@||bpui0.google.com^$document,subdocument,domain=adwords.google.com (easylist.txt: 50683) -.bpui0.google.com -# @@||accounts.google.com^$document,subdocument,domain=adwords.google.com (easylist.txt: 50679) -.accounts.google.com - -#ab2p-unblock-request-Ahm-Chm-when-R865 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R865} \ -} -# @@||amazon-adsystem.com/e/cm?$document,subdocument,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylistchina+easylist.txt: 61255) -.amazon-adsystem.com/e/cm\? -# @@||amazon-adsystem.com/e/cm?$document,subdocument,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylist.txt: 50770) -.amazon-adsystem.com/e/cm\? - -#ab2p-unblock-request-Ahm-Chm-when-R866 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R866} \ -} -# @@||amazon.com/home/ads/$document,subdocument,domain=affiliate-program.amazon.com (easylistchina+easylist.txt: 61257) -.amazon.com/home/ads/ -# @@||amazon.com/home/ads/$document,subdocument,domain=affiliate-program.amazon.com (easylist.txt: 50772) -.amazon.com/home/ads/ - -#ab2p-unblock-request-Ahm-Chm-when-R868 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R868} \ -} -# @@||amazon-adsystem.com^$document,subdocument,domain=affrity.com (easylistchina+easylist.txt: 58392) -.amazon-adsystem.com -# @@||amazon-adsystem.com^$document,subdocument,domain=affrity.com (easylist.txt: 47907) -.amazon-adsystem.com - -#ab2p-unblock-request-Ahm-Chm-when-R1002 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R1002} \ -} -# @@||brandverity.com/reports/$document,domain=brandverity.com (easylistchina+easylist.txt: 58516) -.brandverity.com/reports/ -# @@||brandverity.com/reports/$document,domain=brandverity.com (easylist.txt: 48031) -.brandverity.com/reports/ - -#ab2p-unblock-request-Ahm-Chm-when-R1143 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R1143} \ -} -# @@||google.com/afs/ads?$document,subdocument,domain=ehow.com|livestrong.com (easylistchina+easylist.txt: 58901) -.google.com/afs/ads\? -# @@||google.com/afs/ads?$document,subdocument,domain=ehow.com|livestrong.com (easylist.txt: 48416) -.google.com/afs/ads\? - -#ab2p-unblock-request-Ahm-Chm-when-R1342 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R1342} \ -} -# @@||ad.doubleclick.net/adi/*.JABONG.COM$document,subdocument,domain=jabong.com (easylistchina+easylist.txt: 58154) -.ad.doubleclick.net/adi/.*\.JABONG\.COM -# @@||ad.doubleclick.net/adi/*.JABONG.COM$document,subdocument,domain=jabong.com (easylist.txt: 47669) -.ad.doubleclick.net/adi/.*\.JABONG\.COM - -#ab2p-unblock-request-Ahm-Chm-when-R1504 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R1504} \ -} -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/brighthouse.com/$document,domain=oascentral.feedroom.com (easylistchina+easylist.txt: 59275) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/brighthouse\.com/ -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/brighthouse.com/$document,domain=oascentral.feedroom.com (easylist.txt: 48790) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/brighthouse\.com/ - -#ab2p-unblock-request-Ahm-Chm-when-R1618 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R1618} \ -} -# @@||screenshot.brandverity.com/cm/review/$document,domain=screenshot.brandverity.com (easylistchina+easylist.txt: 59497) -.screenshot.brandverity.com/cm/review/ -# @@||screenshot.brandverity.com/cm/detail/$document,domain=screenshot.brandverity.com (easylistchina+easylist.txt: 59496) -.screenshot.brandverity.com/cm/detail/ -# @@||screenshot.brandverity.com/cm/review/$document,domain=screenshot.brandverity.com (easylist.txt: 49012) -.screenshot.brandverity.com/cm/review/ -# @@||screenshot.brandverity.com/cm/detail/$document,domain=screenshot.brandverity.com (easylist.txt: 49011) -.screenshot.brandverity.com/cm/detail/ - -#ab2p-unblock-request-Ahm-Chm-when-R1686 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R1686} \ -} -# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina+easylist.txt: 10385) +# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina.txt: 10372) .szhr.com.cn -#ab2p-unblock-request-Ahm-Chm-when-R1853 +#ab2p-unblock-request-Ahm-Chm-when-R329 {-block \ - +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R1853} \ + +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R329} \ } -# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina+easylist.txt: 10134) +# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina.txt: 10118) .ad.doubleclick.net/ddm/adi/.*\.ZALORA\.COM\.HK #ab2p-unblock-request-Ai-Ci @@ -373045,2568 +37980,37 @@ TAG:^ab2p-unblock-request-Ahm-Chm$ +server-header-tagger{ab2p-unblock-request-Ci} \ } TAG:^ab2p-unblock-request-Ai-Ci$ -# @@||tube8.com/images/$image (easylistchina+easylist.txt: 61707) -.tube8.com/images/ -# @@||redtube.com/_thumbs/$image (easylistchina+easylist.txt: 61670) -.redtube.com/_thumbs/ -# @@||pornhubcommunity.com/cdn_files/images/$image (easylistchina+easylist.txt: 61667) -.pornhubcommunity.com/cdn_files/images/ -# @@||google.com/recaptcha/$image (easylistchina+easylist.txt: 61482) -.google.com/recaptcha/ -# @@||pornteengirl.com/temporaire/image.php?*/virtuagirl/$image (easylistchina+easylist.txt: 61453) -.pornteengirl.com/temporaire/image\.php\?.*/virtuagirl/ -# @@||weather.craven.net.au/weather/products/300x250.asp?$image (easylistchina+easylist.txt: 61386) -.weather.craven.net.au/weather/products/300x250\.asp\? -# @@||techpakistani.com/wp-content/uploads/*-300x100.$image (easylistchina+easylist.txt: 61372) -.techpakistani.com/wp-content/uploads/.*-300x100\. -# @@||stickam.com/wb/www/category/300x250/$image (easylistchina+easylist.txt: 61369) -.stickam.com/wb/www/category/300x250/ -# @@||msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/$image (easylistchina+easylist.txt: 61357) -.msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/ -# @@||metrics.target.com/b/ss/*_300x250_$image (easylistchina+easylist.txt: 61353) -.metrics.target.com/b/ss/.*_300x250_ -# @@||maps.google.*/staticmap*^size=300x250^$image (easylistchina+easylist.txt: 61350) -.maps.google.*./(.*/)?staticmap.*[^\w%.-]size=300x250[^\w%.-] -# @@||la-finca-distribution.de/wp-content/uploads/*-120x240.$image (easylistchina+easylist.txt: 61349) -.la-finca-distribution.de/wp-content/uploads/.*-120x240\. -# @@||imawow.weather.com/web/wow/$image (easylistchina+easylist.txt: 61344) -.imawow.weather.com/web/wow/ -# @@||images.outbrain.com/imageserver/*-120x60.$image (easylistchina+easylist.txt: 61343) -.images.outbrain.com/imageserver/.*-120x60\. -# @@||findafranchise.com/_img/*_120x60.$image (easylistchina+easylist.txt: 61331) -.findafranchise.com/_img/.*_120x60\. -# @@||educationpost.com.hk^*/300x250/$image (easylistchina+easylist.txt: 61327) -.educationpost.com.hk/.*/300x250/ -# @@||bizquest.com^*_img/_franchise/*_120x60.$image (easylistchina+easylist.txt: 61317) -.bizquest.com/.*_img/_franchise/.*_120x60\. -# @@||anitasrecipes.com/Content/Images/*160x500$image (easylistchina+easylist.txt: 61310) -.anitasrecipes.com/Content/Images/.*160x500 -# @@||advertise.bingads.microsoft.com/wwimages/search/global/$image (easylistchina+easylist.txt: 61227) -.advertise.bingads.microsoft.com/wwimages/search/global/ -# @@||www.google.com/images/icons/product/adsense-$image (easylistchina+easylist.txt: 61194) -.www.google.com/images/icons/product/adsense- -# @@||www.google.com/images/icons/feature/adsense_$image (easylistchina+easylist.txt: 61193) -.www.google.com/images/icons/feature/adsense_ -# @@||ptcliente.pt/App_Themes/Default/Img/ad_$image (easylistchina+easylist.txt: 61093) -.ptcliente.pt/App_Themes/Default/Img/ad_ -# @@||joemonster.org^*_reklama_$image (easylistchina+easylist.txt: 61051) -.joemonster.org/.*_reklama_ -# @@||fajerwerkilider.pl/environment/cache/images/300_250_productGfx_$image (easylistchina+easylist.txt: 61020) -.fajerwerkilider.pl/environment/cache/images/300_250_productGfx_ -# @@||alio.lt/public/advertisement/texttoimage.html?$image (easylistchina+easylist.txt: 60971) -.alio.lt/public/advertisement/texttoimage\.html\? -# @@||wanamlite.com/images/ad/$image (easylistchina+easylist.txt: 60884) -.wanamlite.com/images/ad/ -# @@||ucoz.com/ads/banner.jpg?$image (easylistchina+easylist.txt: 60834) -.ucoz.com/ads/banner\.jpg\? -# @@||tklist.net/tklist/*ad$image (easylistchina+easylist.txt: 60806) -.tklist.net/tklist/.*ad -# @@||thememypc.com/wp-content/*/ads/$image (easylistchina+easylist.txt: 60795) -.thememypc.com/wp-content/.*/ads/ -# @@||thelordofstreaming.it/wp-content/uploads/*/ad_$image (easylistchina+easylist.txt: 60793) -.thelordofstreaming.it/wp-content/uploads/.*/ad_ -# @@||streamlive.to^*/ad/$image (easylistchina+easylist.txt: 60775) -.streamlive.to/.*/ad/ -# @@||sparkylinux.org/images/ad/$image (easylistchina+easylist.txt: 60758) -.sparkylinux.org/images/ad/ -# @@||sominaltvfilms.com/wp-content/*/adbanner/$image (easylistchina+easylist.txt: 60754) -.sominaltvfilms.com/wp-content/.*/adbanner/ -# @@||scan-manga.com/ads/banner.jpg$image (easylistchina+easylist.txt: 60722) -.scan-manga.com/ads/banner\.jpg -# @@||rapidmoviez.com/ad$image,subdocument (easylistchina+easylist.txt: 60689) -.rapidmoviez.com/ad -# @@||radioaficion.com/HamNews/*/ad$image (easylistchina+easylist.txt: 60685) -.radioaficion.com/HamNews/.*/ad -# @@||nonags.com^*/ad$image (easylistchina+easylist.txt: 60581) -.nonags.com/.*/ad -# @@||multiup.org/img/theme/*?$image (easylistchina+easylist.txt: 60556) -.multiup.org/img/theme/.*\? -# @@||mmatko.com/images/ad/$image (easylistchina+easylist.txt: 60532) -.mmatko.com/images/ad/ -# @@||mangabird.me/sites/default/files/manga/*/advertise-$image (easylistchina+easylist.txt: 60495) -.mangabird.me/sites/default/files/manga/.*/advertise- -# @@||majorleaguegaming.com^*.png?*=$image (easylistchina+easylist.txt: 60488) -.majorleaguegaming.com/.*\.png\?.*= -# @@||leecher.us/assets/img/*/ads/$image (easylistchina+easylist.txt: 60458) -.leecher.us/assets/img/.*/ads/ -# @@||kissanime.com/ads/$image,subdocument (easylistchina+easylist.txt: 60446) -.kissanime.com/ads/ -# @@||jevvi.es/adblock/$image (easylistchina+easylist.txt: 60434) -.jevvi.es/adblock/ -# @@||hardware.no/ads/$image (easylistchina+easylist.txt: 60372) -.hardware.no/ads/ -# @@||freshdown.net/templates/Blaster/img/*/ads/$image (easylistchina+easylist.txt: 60311) -.freshdown.net/templates/Blaster/img/.*/ads/ -# @@||exrapidleech.info/templates/$image (easylistchina+easylist.txt: 60266) -.exrapidleech.info/templates/ -# @@||bdrip.ws/web_data/*/ad$image (easylistchina+easylist.txt: 60097) -.bdrip.ws/web_data/.*/ad -# @@||youtube.com/yt/advertise/medias/images/$image (easylistchina+easylist.txt: 59858) -.youtube.com/yt/advertise/medias/images/ -# @@||wikia.nocookie.net^*/images/$image (easylistchina+easylist.txt: 59815) -.wikia.nocookie.net/.*/images/ -# @@||wearetennis.com/pages/home/img/ad-$image (easylistchina+easylist.txt: 59802) -.wearetennis.com/pages/home/img/ad- -# @@||wappalyzer.com/sites/default/files/icons/$image (easylistchina+easylist.txt: 59789) -.wappalyzer.com/sites/default/files/icons/ -# @@||villermen.com/minecraft/banner/banner.php$image (easylistchina+easylist.txt: 59771) -.villermen.com/minecraft/banner/banner\.php -# @@||utdallas.edu/maps/images/img/$image (easylistchina+easylist.txt: 59735) -.utdallas.edu/maps/images/img/ -# @@||utdallas.edu/locator/maps/$image (easylistchina+easylist.txt: 59734) -.utdallas.edu/locator/maps/ -# @@||urbanog.com/banners/$image (easylistchina+easylist.txt: 59730) -.urbanog.com/banners/ -# @@||undsports.com/ads2/$image (easylistchina+easylist.txt: 59726) -.undsports.com/ads2/ -# @@||tradecarview.com/material/housead/$image (easylistchina+easylist.txt: 59684) -.tradecarview.com/material/housead/ -# @@||supersonicads.com/api/v1/trackCommission.php*password=$image (easylistchina+easylist.txt: 59607) -.supersonicads.com/api/v1/trackCommission\.php.*password= -# @@||sprouts.com/ad/$image,subdocument (easylistchina+easylist.txt: 59580) -.sprouts.com/ad/ -# @@||somewheresouth.net/banner/banner.php$image (easylistchina+easylist.txt: 59555) -.somewheresouth.net/banner/banner\.php -# @@||sjsuspartans.com/ads2/$image (easylistchina+easylist.txt: 59539) -.sjsuspartans.com/ads2/ -# @@||share.pingdom.com/banners/$image (easylistchina+easylist.txt: 59526) -.share.pingdom.com/banners/ -# @@||selsin.net/imprint-$image (easylistchina+easylist.txt: 59513) -.selsin.net/imprint- -# @@||sdelkino.com/images/ad/$image (easylistchina+easylist.txt: 59503) -.sdelkino.com/images/ad/ -# @@||sdcdn.com/cms/ads/piczo/$image (easylistchina+easylist.txt: 59502) -.sdcdn.com/cms/ads/piczo/ -# @@||rmncdn.com/ads/mini-$image (easylistchina+easylist.txt: 59463) -.rmncdn.com/ads/mini- -# @@||readwrite.com/files/styles/$image (easylistchina+easylist.txt: 59445) -.readwrite.com/files/styles/ -# @@||promophot.com/photo/ad/$image (easylistchina+easylist.txt: 59415) -.promophot.com/photo/ad/ -# @@||planetrecruit.com/ad/$image (easylistchina+easylist.txt: 59381) -.planetrecruit.com/ad/ -# @@||planetoddity.com/wp-content/*-ads-$image (easylistchina+easylist.txt: 59380) -.planetoddity.com/wp-content/.*-ads- -# @@||piercesnorthsidemarket.com/ads/$image (easylistchina+easylist.txt: 59374) -.piercesnorthsidemarket.com/ads/ -# @@||photobucket.com/albums/ad$image (easylistchina+easylist.txt: 59369) -.photobucket.com/albums/ad -# @@||payload*.cargocollective.com^$image (easylistchina+easylist.txt: 59350) -.payload*./.*\.cargocollective\.com[^\w%.-] -.payload*.cargocollective.com -# @@||nintandbox.net/images/*-Advertising_$image (easylistchina+easylist.txt: 59254) -.nintandbox.net/images/.*-Advertising_ -# @@||nationalbusinessfurniture.com/product/advertising/$image (easylistchina+easylist.txt: 59221) -.nationalbusinessfurniture.com/product/advertising/ -# @@||mycricket.com/openx/offers/$image (easylistchina+easylist.txt: 59213) -.mycricket.com/openx/offers/ -# @@||merkatia.com/adimages/$image (easylistchina+easylist.txt: 59168) -.merkatia.com/adimages/ -# @@||media.cargocollective.com^$image (easylistchina+easylist.txt: 59150) -.media.cargocollective.com -# @@||marketing.beatport.com.s3.amazonaws.com/html/*/Banner_Ads/header_$image (easylistchina+easylist.txt: 59142) -.marketing.beatport.com.s3.amazonaws.com/html/.*/Banner_Ads/header_ -# @@||kotak.com/banners/$image (easylistchina+easylist.txt: 59068) -.kotak.com/banners/ -# @@||inspire.net.nz/adverts/$image (easylistchina+easylist.txt: 59022) -.inspire.net.nz/adverts/ -# @@||img.travidia.com^$image (easylistchina+easylist.txt: 58997) -.img.travidia.com -# @@||images.dashtickets.co.nz/advertising/featured/$image (easylistchina+easylist.txt: 58978) -.images.dashtickets.co.nz/advertising/featured/ -# @@||icons.iconarchive.com/icons/$image (easylistchina+easylist.txt: 58968) -.icons.iconarchive.com/icons/ -# @@||hipsterhitler.com/wp-content/webcomic/$image (easylistchina+easylist.txt: 58943) -.hipsterhitler.com/wp-content/webcomic/ -# @@||harmonsgrocery.com/ads/$image (easylistchina+easylist.txt: 58930) -.harmonsgrocery.com/ads/ -# @@||gmfreeze.org/site_media//uploads/page_ad_images/$image (easylistchina+easylist.txt: 58884) -.gmfreeze.org/site_media//uploads/page_ad_images/ -# @@||forex.com/adx/$image (easylistchina+easylist.txt: 58835) -.forex.com/adx/ -# @@||extras.chron.com/banners/*/social_icons/$image,subdocument (easylistchina+easylist.txt: 58810) -.extras.chron.com/banners/.*/social_icons/ -# @@||explosm.net/db/files/comics/$image (easylistchina+easylist.txt: 58809) -.explosm.net/db/files/comics/ -# @@||explosm.net/comics/$image (easylistchina+easylist.txt: 58808) -.explosm.net/comics/ -# @@||eeweb.com/comics/*_ads-$image (easylistchina+easylist.txt: 58772) -.eeweb.com/comics/.*_ads- -# @@||easyfundraising.org.uk/images/home/*-120x60.$image (easylistchina+easylist.txt: 58762) -.easyfundraising.org.uk/images/home/.*-120x60\. -# @@||dwiextreme.com/banners/dwiextreme$image (easylistchina+easylist.txt: 58753) -.dwiextreme.com/banners/dwiextreme -# @@||dealerimg.com/Ads/$image (easylistchina+easylist.txt: 58660) -.dealerimg.com/Ads/ -# @@||cricbuzz.com/includes/ads/images/worldcup/more_arrow_$image (easylistchina+easylist.txt: 58628) -.cricbuzz.com/includes/ads/images/worldcup/more_arrow_ -# @@||cricbuzz.com/includes/ads/images/wct20/$image (easylistchina+easylist.txt: 58627) -.cricbuzz.com/includes/ads/images/wct20/ -# @@||cdn.travidia.com/rop-sub/$image (easylistchina+easylist.txt: 58572) -.cdn.travidia.com/rop-sub/ -# @@||cdn.travidia.com/rop-ad/$image (easylistchina+easylist.txt: 58571) -.cdn.travidia.com/rop-ad/ -# @@||cdn.travidia.com/fsi-page/$image (easylistchina+easylist.txt: 58570) -.cdn.travidia.com/fsi-page/ -# @@||candystand.com/assets/images/ads/$image (easylistchina+easylist.txt: 58542) -.candystand.com/assets/images/ads/ -# @@||boston.com/images/ads/yourtown_social_widget/$image (easylistchina+easylist.txt: 58512) -.boston.com/images/ads/yourtown_social_widget/ -# @@||bing.net/images/thumbnail.aspx?q=$image (easylistchina+easylist.txt: 58500) -.bing.net/images/thumbnail\.aspx\?q= -# @@||bigfishaudio.com/banners/$image (easylistchina+easylist.txt: 58496) -.bigfishaudio.com/banners/ -# @@||banners.wunderground.com^$image (easylistchina+easylist.txt: 58478) -.banners.wunderground.com -# @@||banners.gametracker.rs^$image (easylistchina+easylist.txt: 58476) -.banners.gametracker.rs -# @@||autogespot.info/upload/ads/$image (easylistchina+easylist.txt: 58456) -.autogespot.info/upload/ads/ -# @@||area51.stackexchange.com/ads/$image (easylistchina+easylist.txt: 58432) -.area51.stackexchange.com/ads/ -# @@||archaeologydataservice.ac.uk/images/ads_$image (easylistchina+easylist.txt: 58429) -.archaeologydataservice.ac.uk/images/ads_ -# @@||amazon-adsystem.com/widgets/q?$image (easylistchina+easylist.txt: 58389) -.amazon-adsystem.com/widgets/q\? -# @@||albumartexchange.com/gallery/images/public/ad/$image (easylistchina+easylist.txt: 58380) -.albumartexchange.com/gallery/images/public/ad/ -# @@||airplaydirect.com/openx/www/images/$image (easylistchina+easylist.txt: 58369) -.airplaydirect.com/openx/www/images/ -# @@||ads1.msn.com/ads/pronws/$image (easylistchina+easylist.txt: 58281) -.ads1.msn.com/ads/pronws/ -# @@||ads.yimg.com^*/any/yahoologo$image (easylistchina+easylist.txt: 58276) -.ads.yimg.com/.*/any/yahoologo -# @@||ads.sudpresse.be/adview.php?what=zone:$image (easylistchina+easylist.txt: 58266) -.ads.sudpresse.be/adview\.php\?what=zone: -# @@||adflyer.co.uk/adverts/$image (easylistchina+easylist.txt: 58197) -.adflyer.co.uk/adverts/ -# @@||ad2.zophar.net/images/logo.jpg$image (easylistchina+easylist.txt: 58165) -.ad2.zophar.net/images/logo\.jpg -# @@||activelydisengaged.com/wp-content/uploads/*/ad$image (easylistchina+easylist.txt: 58145) -.activelydisengaged.com/wp-content/uploads/.*/ad -# @@||files.explosm.net/thumbs/$image (easylistchina+easylist.txt: 45986) -.files.explosm.net/thumbs/ -# @@||files.explosm.net/rcg/$image (easylistchina+easylist.txt: 45985) -.files.explosm.net/rcg/ -# @@||files.explosm.net/avatars/$image (easylistchina+easylist.txt: 45984) -.files.explosm.net/avatars/ -# @@||explosm.net/show/thumbnails/$image (easylistchina+easylist.txt: 45982) -.explosm.net/show/thumbnails/ -# @@||explosm.net/favicons/favicon$image (easylistchina+easylist.txt: 45975) -.explosm.net/favicons/favicon -# @@||static.hdslb.com/ad-images/$image (easylistchina+easylist.txt: 10381) +# @@||static.hdslb.com/ad-images/$image (easylistchina.txt: 10368) .static.hdslb.com/ad-images/ -# @@||poster.weather.com.cn/p_files/base/$image (easylistchina+easylist.txt: 23) +# @@||poster.weather.com.cn/p_files/base/$image (easylistchina.txt: 20) .poster.weather.com.cn/p_files/base/ -# @@/banner.jpg?ad_height=300&adzone=100&adserver=1&adType=32|$image (advblock.txt: 7533) -/(.*/)?banner\.jpg\?ad_height=300&adzone=100&adserver=1&adType=32$ -# @@||rublacklist.net/media/*/RKS-banner-$image (advblock.txt: 7381) -.rublacklist.net/media/.*/RKS-banner- -# @@||plektan.com/ad/$image (advblock.txt: 7361) -.plektan.com/ad/ -# @@||noteru.com/photo/*/tizer/$image (advblock.txt: 7348) -.noteru.com/photo/.*/tizer/ -# @@||enaza.ru/assets/img/$image (advblock.txt: 7292) -.enaza.ru/assets/img/ -# @@||tube8.com/images/$image (easylist.txt: 51222) -.tube8.com/images/ -# @@||redtube.com/_thumbs/$image (easylist.txt: 51185) -.redtube.com/_thumbs/ -# @@||pornhubcommunity.com/cdn_files/images/$image (easylist.txt: 51182) -.pornhubcommunity.com/cdn_files/images/ -# @@||google.com/recaptcha/$image (easylist.txt: 50997) -.google.com/recaptcha/ -# @@||pornteengirl.com/temporaire/image.php?*/virtuagirl/$image (easylist.txt: 50968) -.pornteengirl.com/temporaire/image\.php\?.*/virtuagirl/ -# @@||weather.craven.net.au/weather/products/300x250.asp?$image (easylist.txt: 50901) -.weather.craven.net.au/weather/products/300x250\.asp\? -# @@||techpakistani.com/wp-content/uploads/*-300x100.$image (easylist.txt: 50887) -.techpakistani.com/wp-content/uploads/.*-300x100\. -# @@||stickam.com/wb/www/category/300x250/$image (easylist.txt: 50884) -.stickam.com/wb/www/category/300x250/ -# @@||msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/$image (easylist.txt: 50872) -.msecnd.net/socialfactoryimagesresized/mediaspotlight/2/300x250/ -# @@||metrics.target.com/b/ss/*_300x250_$image (easylist.txt: 50868) -.metrics.target.com/b/ss/.*_300x250_ -# @@||maps.google.*/staticmap*^size=300x250^$image (easylist.txt: 50865) -.maps.google.*./(.*/)?staticmap.*[^\w%.-]size=300x250[^\w%.-] -# @@||la-finca-distribution.de/wp-content/uploads/*-120x240.$image (easylist.txt: 50864) -.la-finca-distribution.de/wp-content/uploads/.*-120x240\. -# @@||imawow.weather.com/web/wow/$image (easylist.txt: 50859) -.imawow.weather.com/web/wow/ -# @@||images.outbrain.com/imageserver/*-120x60.$image (easylist.txt: 50858) -.images.outbrain.com/imageserver/.*-120x60\. -# @@||findafranchise.com/_img/*_120x60.$image (easylist.txt: 50846) -.findafranchise.com/_img/.*_120x60\. -# @@||educationpost.com.hk^*/300x250/$image (easylist.txt: 50842) -.educationpost.com.hk/.*/300x250/ -# @@||bizquest.com^*_img/_franchise/*_120x60.$image (easylist.txt: 50832) -.bizquest.com/.*_img/_franchise/.*_120x60\. -# @@||anitasrecipes.com/Content/Images/*160x500$image (easylist.txt: 50825) -.anitasrecipes.com/Content/Images/.*160x500 -# @@||advertise.bingads.microsoft.com/wwimages/search/global/$image (easylist.txt: 50742) -.advertise.bingads.microsoft.com/wwimages/search/global/ -# @@||www.google.com/images/icons/product/adsense-$image (easylist.txt: 50709) -.www.google.com/images/icons/product/adsense- -# @@||www.google.com/images/icons/feature/adsense_$image (easylist.txt: 50708) -.www.google.com/images/icons/feature/adsense_ -# @@||ptcliente.pt/App_Themes/Default/Img/ad_$image (easylist.txt: 50608) -.ptcliente.pt/App_Themes/Default/Img/ad_ -# @@||joemonster.org^*_reklama_$image (easylist.txt: 50566) -.joemonster.org/.*_reklama_ -# @@||fajerwerkilider.pl/environment/cache/images/300_250_productGfx_$image (easylist.txt: 50535) -.fajerwerkilider.pl/environment/cache/images/300_250_productGfx_ -# @@||alio.lt/public/advertisement/texttoimage.html?$image (easylist.txt: 50486) -.alio.lt/public/advertisement/texttoimage\.html\? -# @@||wanamlite.com/images/ad/$image (easylist.txt: 50399) -.wanamlite.com/images/ad/ -# @@||ucoz.com/ads/banner.jpg?$image (easylist.txt: 50349) -.ucoz.com/ads/banner\.jpg\? -# @@||tklist.net/tklist/*ad$image (easylist.txt: 50321) -.tklist.net/tklist/.*ad -# @@||thememypc.com/wp-content/*/ads/$image (easylist.txt: 50310) -.thememypc.com/wp-content/.*/ads/ -# @@||thelordofstreaming.it/wp-content/uploads/*/ad_$image (easylist.txt: 50308) -.thelordofstreaming.it/wp-content/uploads/.*/ad_ -# @@||streamlive.to^*/ad/$image (easylist.txt: 50290) -.streamlive.to/.*/ad/ -# @@||sparkylinux.org/images/ad/$image (easylist.txt: 50273) -.sparkylinux.org/images/ad/ -# @@||sominaltvfilms.com/wp-content/*/adbanner/$image (easylist.txt: 50269) -.sominaltvfilms.com/wp-content/.*/adbanner/ -# @@||scan-manga.com/ads/banner.jpg$image (easylist.txt: 50237) -.scan-manga.com/ads/banner\.jpg -# @@||rapidmoviez.com/ad$image,subdocument (easylist.txt: 50204) -.rapidmoviez.com/ad -# @@||radioaficion.com/HamNews/*/ad$image (easylist.txt: 50200) -.radioaficion.com/HamNews/.*/ad -# @@||nonags.com^*/ad$image (easylist.txt: 50096) -.nonags.com/.*/ad -# @@||multiup.org/img/theme/*?$image (easylist.txt: 50071) -.multiup.org/img/theme/.*\? -# @@||mmatko.com/images/ad/$image (easylist.txt: 50047) -.mmatko.com/images/ad/ -# @@||mangabird.me/sites/default/files/manga/*/advertise-$image (easylist.txt: 50010) -.mangabird.me/sites/default/files/manga/.*/advertise- -# @@||majorleaguegaming.com^*.png?*=$image (easylist.txt: 50003) -.majorleaguegaming.com/.*\.png\?.*= -# @@||leecher.us/assets/img/*/ads/$image (easylist.txt: 49973) -.leecher.us/assets/img/.*/ads/ -# @@||kissanime.com/ads/$image,subdocument (easylist.txt: 49961) -.kissanime.com/ads/ -# @@||jevvi.es/adblock/$image (easylist.txt: 49949) -.jevvi.es/adblock/ -# @@||hardware.no/ads/$image (easylist.txt: 49887) -.hardware.no/ads/ -# @@||freshdown.net/templates/Blaster/img/*/ads/$image (easylist.txt: 49826) -.freshdown.net/templates/Blaster/img/.*/ads/ -# @@||exrapidleech.info/templates/$image (easylist.txt: 49781) -.exrapidleech.info/templates/ -# @@||bdrip.ws/web_data/*/ad$image (easylist.txt: 49612) -.bdrip.ws/web_data/.*/ad -# @@||youtube.com/yt/advertise/medias/images/$image (easylist.txt: 49373) -.youtube.com/yt/advertise/medias/images/ -# @@||wikia.nocookie.net^*/images/$image (easylist.txt: 49330) -.wikia.nocookie.net/.*/images/ -# @@||wearetennis.com/pages/home/img/ad-$image (easylist.txt: 49317) -.wearetennis.com/pages/home/img/ad- -# @@||wappalyzer.com/sites/default/files/icons/$image (easylist.txt: 49304) -.wappalyzer.com/sites/default/files/icons/ -# @@||villermen.com/minecraft/banner/banner.php$image (easylist.txt: 49286) -.villermen.com/minecraft/banner/banner\.php -# @@||utdallas.edu/maps/images/img/$image (easylist.txt: 49250) -.utdallas.edu/maps/images/img/ -# @@||utdallas.edu/locator/maps/$image (easylist.txt: 49249) -.utdallas.edu/locator/maps/ -# @@||urbanog.com/banners/$image (easylist.txt: 49245) -.urbanog.com/banners/ -# @@||undsports.com/ads2/$image (easylist.txt: 49241) -.undsports.com/ads2/ -# @@||tradecarview.com/material/housead/$image (easylist.txt: 49199) -.tradecarview.com/material/housead/ -# @@||supersonicads.com/api/v1/trackCommission.php*password=$image (easylist.txt: 49122) -.supersonicads.com/api/v1/trackCommission\.php.*password= -# @@||sprouts.com/ad/$image,subdocument (easylist.txt: 49095) -.sprouts.com/ad/ -# @@||somewheresouth.net/banner/banner.php$image (easylist.txt: 49070) -.somewheresouth.net/banner/banner\.php -# @@||sjsuspartans.com/ads2/$image (easylist.txt: 49054) -.sjsuspartans.com/ads2/ -# @@||share.pingdom.com/banners/$image (easylist.txt: 49041) -.share.pingdom.com/banners/ -# @@||selsin.net/imprint-$image (easylist.txt: 49028) -.selsin.net/imprint- -# @@||sdelkino.com/images/ad/$image (easylist.txt: 49018) -.sdelkino.com/images/ad/ -# @@||sdcdn.com/cms/ads/piczo/$image (easylist.txt: 49017) -.sdcdn.com/cms/ads/piczo/ -# @@||rmncdn.com/ads/mini-$image (easylist.txt: 48978) -.rmncdn.com/ads/mini- -# @@||readwrite.com/files/styles/$image (easylist.txt: 48960) -.readwrite.com/files/styles/ -# @@||promophot.com/photo/ad/$image (easylist.txt: 48930) -.promophot.com/photo/ad/ -# @@||planetrecruit.com/ad/$image (easylist.txt: 48896) -.planetrecruit.com/ad/ -# @@||planetoddity.com/wp-content/*-ads-$image (easylist.txt: 48895) -.planetoddity.com/wp-content/.*-ads- -# @@||piercesnorthsidemarket.com/ads/$image (easylist.txt: 48889) -.piercesnorthsidemarket.com/ads/ -# @@||photobucket.com/albums/ad$image (easylist.txt: 48884) -.photobucket.com/albums/ad -# @@||payload*.cargocollective.com^$image (easylist.txt: 48865) -.payload*./.*\.cargocollective\.com[^\w%.-] -.payload*.cargocollective.com -# @@||nintandbox.net/images/*-Advertising_$image (easylist.txt: 48769) -.nintandbox.net/images/.*-Advertising_ -# @@||nationalbusinessfurniture.com/product/advertising/$image (easylist.txt: 48736) -.nationalbusinessfurniture.com/product/advertising/ -# @@||mycricket.com/openx/offers/$image (easylist.txt: 48728) -.mycricket.com/openx/offers/ -# @@||merkatia.com/adimages/$image (easylist.txt: 48683) -.merkatia.com/adimages/ -# @@||media.cargocollective.com^$image (easylist.txt: 48665) -.media.cargocollective.com -# @@||marketing.beatport.com.s3.amazonaws.com/html/*/Banner_Ads/header_$image (easylist.txt: 48657) -.marketing.beatport.com.s3.amazonaws.com/html/.*/Banner_Ads/header_ -# @@||kotak.com/banners/$image (easylist.txt: 48583) -.kotak.com/banners/ -# @@||inspire.net.nz/adverts/$image (easylist.txt: 48537) -.inspire.net.nz/adverts/ -# @@||img.travidia.com^$image (easylist.txt: 48512) -.img.travidia.com -# @@||images.dashtickets.co.nz/advertising/featured/$image (easylist.txt: 48493) -.images.dashtickets.co.nz/advertising/featured/ -# @@||icons.iconarchive.com/icons/$image (easylist.txt: 48483) -.icons.iconarchive.com/icons/ -# @@||hipsterhitler.com/wp-content/webcomic/$image (easylist.txt: 48458) -.hipsterhitler.com/wp-content/webcomic/ -# @@||harmonsgrocery.com/ads/$image (easylist.txt: 48445) -.harmonsgrocery.com/ads/ -# @@||gmfreeze.org/site_media//uploads/page_ad_images/$image (easylist.txt: 48399) -.gmfreeze.org/site_media//uploads/page_ad_images/ -# @@||forex.com/adx/$image (easylist.txt: 48350) -.forex.com/adx/ -# @@||extras.chron.com/banners/*/social_icons/$image,subdocument (easylist.txt: 48325) -.extras.chron.com/banners/.*/social_icons/ -# @@||explosm.net/db/files/comics/$image (easylist.txt: 48324) -.explosm.net/db/files/comics/ -# @@||explosm.net/comics/$image (easylist.txt: 48323) -.explosm.net/comics/ -# @@||eeweb.com/comics/*_ads-$image (easylist.txt: 48287) -.eeweb.com/comics/.*_ads- -# @@||easyfundraising.org.uk/images/home/*-120x60.$image (easylist.txt: 48277) -.easyfundraising.org.uk/images/home/.*-120x60\. -# @@||dwiextreme.com/banners/dwiextreme$image (easylist.txt: 48268) -.dwiextreme.com/banners/dwiextreme -# @@||dealerimg.com/Ads/$image (easylist.txt: 48175) -.dealerimg.com/Ads/ -# @@||cricbuzz.com/includes/ads/images/worldcup/more_arrow_$image (easylist.txt: 48143) -.cricbuzz.com/includes/ads/images/worldcup/more_arrow_ -# @@||cricbuzz.com/includes/ads/images/wct20/$image (easylist.txt: 48142) -.cricbuzz.com/includes/ads/images/wct20/ -# @@||cdn.travidia.com/rop-sub/$image (easylist.txt: 48087) -.cdn.travidia.com/rop-sub/ -# @@||cdn.travidia.com/rop-ad/$image (easylist.txt: 48086) -.cdn.travidia.com/rop-ad/ -# @@||cdn.travidia.com/fsi-page/$image (easylist.txt: 48085) -.cdn.travidia.com/fsi-page/ -# @@||candystand.com/assets/images/ads/$image (easylist.txt: 48057) -.candystand.com/assets/images/ads/ -# @@||boston.com/images/ads/yourtown_social_widget/$image (easylist.txt: 48027) -.boston.com/images/ads/yourtown_social_widget/ -# @@||bing.net/images/thumbnail.aspx?q=$image (easylist.txt: 48015) -.bing.net/images/thumbnail\.aspx\?q= -# @@||bigfishaudio.com/banners/$image (easylist.txt: 48011) -.bigfishaudio.com/banners/ -# @@||banners.wunderground.com^$image (easylist.txt: 47993) -.banners.wunderground.com -# @@||banners.gametracker.rs^$image (easylist.txt: 47991) -.banners.gametracker.rs -# @@||autogespot.info/upload/ads/$image (easylist.txt: 47971) -.autogespot.info/upload/ads/ -# @@||area51.stackexchange.com/ads/$image (easylist.txt: 47947) -.area51.stackexchange.com/ads/ -# @@||archaeologydataservice.ac.uk/images/ads_$image (easylist.txt: 47944) -.archaeologydataservice.ac.uk/images/ads_ -# @@||amazon-adsystem.com/widgets/q?$image (easylist.txt: 47904) -.amazon-adsystem.com/widgets/q\? -# @@||albumartexchange.com/gallery/images/public/ad/$image (easylist.txt: 47895) -.albumartexchange.com/gallery/images/public/ad/ -# @@||airplaydirect.com/openx/www/images/$image (easylist.txt: 47884) -.airplaydirect.com/openx/www/images/ -# @@||ads1.msn.com/ads/pronws/$image (easylist.txt: 47796) -.ads1.msn.com/ads/pronws/ -# @@||ads.yimg.com^*/any/yahoologo$image (easylist.txt: 47791) -.ads.yimg.com/.*/any/yahoologo -# @@||ads.sudpresse.be/adview.php?what=zone:$image (easylist.txt: 47781) -.ads.sudpresse.be/adview\.php\?what=zone: -# @@||adflyer.co.uk/adverts/$image (easylist.txt: 47712) -.adflyer.co.uk/adverts/ -# @@||ad2.zophar.net/images/logo.jpg$image (easylist.txt: 47680) -.ad2.zophar.net/images/logo\.jpg -# @@||activelydisengaged.com/wp-content/uploads/*/ad$image (easylist.txt: 47660) -.activelydisengaged.com/wp-content/uploads/.*/ad -# @@||files.explosm.net/thumbs/$image (easylist.txt: 35501) -.files.explosm.net/thumbs/ -# @@||files.explosm.net/rcg/$image (easylist.txt: 35500) -.files.explosm.net/rcg/ -# @@||files.explosm.net/avatars/$image (easylist.txt: 35499) -.files.explosm.net/avatars/ -# @@||explosm.net/show/thumbnails/$image (easylist.txt: 35497) -.explosm.net/show/thumbnails/ -# @@||explosm.net/favicons/favicon$image (easylist.txt: 35490) -.explosm.net/favicons/favicon -#ab2p-unblock-request-Ai-Ci-Xx +#ab2p-unblock-request-Ai-Ci-when-R223 {-block \ - +client-header-tagger{ab2p-unblock-request-Ai} \ - +server-header-tagger{ab2p-unblock-request-Ci} \ - +client-header-tagger{ab2p-unblock-request-Xx} \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R223} \ } -TAG:^ab2p-unblock-request-Ai-Ci-Xx$ -# @@||youporngay.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61724) -.youporngay.com/_Incapsula_Resource\? -# @@||youporn.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61713) -.youporn.com/_Incapsula_Resource\? -# @@||tube8.fr/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61709) -.tube8.fr/_Incapsula_Resource\? -# @@||tube8.es/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61708) -.tube8.es/_Incapsula_Resource\? -# @@||tube8.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61701) -.tube8.com/_Incapsula_Resource\? -# @@||redtube.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61669) -.redtube.com/_Incapsula_Resource\? -# @@||redtube.com.br/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61668) -.redtube.com.br/_Incapsula_Resource\? -# @@||pornhub.com/insights/$image,xmlhttprequest (easylistchina+easylist.txt: 61652) -.pornhub.com/insights/ -# @@||pornhub.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61644) -.pornhub.com/_Incapsula_Resource\? -# @@||sports.ru^*/adfox.$image,xmlhttprequest (advblock.txt: 7600) -.sports.ru/.*/adfox\. -# @@||youporngay.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51239) -.youporngay.com/_Incapsula_Resource\? -# @@||youporn.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51228) -.youporn.com/_Incapsula_Resource\? -# @@||tube8.fr/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51224) -.tube8.fr/_Incapsula_Resource\? -# @@||tube8.es/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51223) -.tube8.es/_Incapsula_Resource\? -# @@||tube8.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51216) -.tube8.com/_Incapsula_Resource\? -# @@||redtube.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51184) -.redtube.com/_Incapsula_Resource\? -# @@||redtube.com.br/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51183) -.redtube.com.br/_Incapsula_Resource\? -# @@||pornhub.com/insights/$image,xmlhttprequest (easylist.txt: 51167) -.pornhub.com/insights/ -# @@||pornhub.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51159) -.pornhub.com/_Incapsula_Resource\? - -#ab2p-unblock-request-Ai-Ci-Xx-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-Xx-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-Xx-when-nR} \ -} -# @@||aiwip.com/static/images/advertisers/$image,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58371) -.aiwip.com/static/images/advertisers/ -# @@||aiwip.com/advertisers/$image,~third-party,xmlhttprequest (easylistchina+easylist.txt: 58370) -.aiwip.com/advertisers/ -# @@||aiwip.com/static/images/advertisers/$image,~third-party,xmlhttprequest (easylist.txt: 47886) -.aiwip.com/static/images/advertisers/ -# @@||aiwip.com/advertisers/$image,~third-party,xmlhttprequest (easylist.txt: 47885) -.aiwip.com/advertisers/ - -#ab2p-unblock-request-Ai-Ci-when-R783 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R783} \ -} -# @@_120x60.$image,domain=2dayshippingbymastercard.com|catalogfavoritesvip.com|chase.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 61303) -/.*_120x60\. -# @@_120x60.$image,domain=2dayshippingbymastercard.com|catalogfavoritesvip.com|chase.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 50818) -/.*_120x60\. - -#ab2p-unblock-request-Ai-Ci-when-R39 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R39} \ -} -# @@||3dnews.ru/www/images/$image,domain=3dnews.ru (advblock.txt: 7543) -.3dnews.ru/www/images/ - -#ab2p-unblock-request-Ai-Ci-when-R791 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R791} \ -} -# @@||4cdn.org/adv/$image,domain=4chan.org (easylistchina+easylist.txt: 58130) -.4cdn.org/adv/ -# @@||4cdn.org/adv/$image,domain=4chan.org (easylist.txt: 47645) -.4cdn.org/adv/ - -#ab2p-unblock-request-Ai-Ci-when-R792 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R792} \ -} -# @@||img.livejasmin.com^$image,domain=4mycams.com (easylistchina+easylist.txt: 61444) -.img.livejasmin.com -# @@||img.livejasmin.com^$image,domain=4mycams.com (easylist.txt: 50959) -.img.livejasmin.com - -#ab2p-unblock-request-Ai-Ci-when-R63 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R63} \ -} -# @@||rackcdn.com/LN_AH_Sweep_300x250_$image,domain=accesshollywood.com (easylistchina+easylist.txt: 61364) -.rackcdn.com/LN_AH_Sweep_300x250_ -# @@||rackcdn.com/LN_AH_Sweep_300x250_$image,domain=accesshollywood.com (easylist.txt: 50879) -.rackcdn.com/LN_AH_Sweep_300x250_ - -#ab2p-unblock-request-Ai-Ci-when-R820 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R820} \ -} -# @@||gstatic.com/images/icons/product/adsense_$image,domain=accounts.google.com (easylistchina+easylist.txt: 61174) -.gstatic.com/images/icons/product/adsense_ -# @@||gstatic.com/images/icons/product/adsense-$image,domain=accounts.google.com (easylistchina+easylist.txt: 61173) -.gstatic.com/images/icons/product/adsense- -# @@||gstatic.com/accounts/services/adwords/$image,domain=accounts.google.com (easylistchina+easylist.txt: 61172) -.gstatic.com/accounts/services/adwords/ -# @@||gstatic.com/images/icons/product/adsense_$image,domain=accounts.google.com (easylist.txt: 50689) -.gstatic.com/images/icons/product/adsense_ -# @@||gstatic.com/images/icons/product/adsense-$image,domain=accounts.google.com (easylist.txt: 50688) -.gstatic.com/images/icons/product/adsense- -# @@||gstatic.com/accounts/services/adwords/$image,domain=accounts.google.com (easylist.txt: 50687) -.gstatic.com/accounts/services/adwords/ - -#ab2p-unblock-request-Ai-Ci-when-R1868t -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1868t} \ -} -# @@||csi.gstatic.com^$image,third-party,domain=activistpost.com|aplus.com|bizpacreview.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|flexonline.com|hallels.com|hellou.co.uk|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|redmaryland.com|segmentnext.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|variety.com|weaponsmedia.com (easylistchina+easylist.txt: 45969) -.csi.gstatic.com -# @@||csi.gstatic.com^$image,third-party,domain=activistpost.com|aplus.com|bizpacreview.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|flexonline.com|hallels.com|hellou.co.uk|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|redmaryland.com|segmentnext.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|variety.com|weaponsmedia.com (easylist.txt: 35484) -.csi.gstatic.com - -#ab2p-unblock-request-Ai-Ci-when-R1869t -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1869t} \ -} -# @@||printfriendly.com^$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|weaponsmedia.com (easylistchina+easylist.txt: 46031) -.printfriendly.com -# @@||printfriendly.com^$image,third-party,domain=activistpost.com|breathecast.com|bulletsfirst.net|cheatsheet.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|conservativebyte.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|drhotze.com|enstarz.com|hallels.com|hngn.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|libertyunyielding.com|mobilelikez.com|mstarz.com|musictimes.com|natureworldnews.com|newser.com|oddee.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|redmaryland.com|shark-tank.com|stevedeace.com|techtimes.com|thechive.com|themattwalshblog.com|unilad.co.uk|weaponsmedia.com (easylist.txt: 35546) -.printfriendly.com - -#ab2p-unblock-request-Ai-Ci-when-R865 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R865} \ -} -# @@||ssl-images-amazon.com/images/$image,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylistchina+easylist.txt: 61258) -.ssl-images-amazon.com/images/ -# @@||ssl-images-amazon.com/images/$image,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylist.txt: 50773) -.ssl-images-amazon.com/images/ - -#ab2p-unblock-request-Ai-Ci-when-R868 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R868} \ -} -# @@||go2cloud.org/aff_i?$image,domain=affrity.com (easylistchina+easylist.txt: 58887) -.go2cloud.org/aff_i\? -# @@||go2cloud.org/aff_i?$image,domain=affrity.com (easylist.txt: 48402) -.go2cloud.org/aff_i\? - -#ab2p-unblock-request-Ai-Ci-when-R869 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R869} \ -} -# @@.com/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 58099) -/.*\.com/image-.*- -.*.com/image-.*- -# @@.com/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 47614) -/.*\.com/image-.*- -.*.com/image-.*- - -#ab2p-unblock-request-Ai-Ci-when-R870 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R870} \ -} -# @@||yceml.net^$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59842) -.yceml.net -# @@||yceml.net^$image,domain=affrity.com|catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49357) -.yceml.net - -#ab2p-unblock-request-Ai-Ci-when-R871 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R871} \ -} -# @@.net/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58101) -/.*\.net/image-.*- -.*.net/image-.*- -# @@.net/image-*-$image,domain=affrity.com|catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47616) -/.*\.net/image-.*- -.*.net/image-.*- - -#ab2p-unblock-request-Ai-Ci-when-R872 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R872} \ -} -# @@_300x250.$image,domain=affrity.com|lockd.co.uk (easylistchina+easylist.txt: 61305) -/.*_300x250\. -# @@_300x250.$image,domain=affrity.com|lockd.co.uk (easylist.txt: 50820) -/.*_300x250\. - -#ab2p-unblock-request-Ai-Ci-when-R881 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R881} \ -} -# @@/teasers/*$image,domain=aftershock.news|expertbank.com|hock5.ru|legionhardware.com|rw.by (advblock.txt: 7210) -/(.*/)?teasers/.* - -#ab2p-unblock-request-Ai-Ci-when-R884 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R884} \ -} -# @@||aka-cdn-ns.adtech.de/images/*.gif$image,domain=akam.no|amobil.no|gamer.no|hardware.no|teknofil.no (easylistchina+easylist.txt: 60047) -.aka-cdn-ns.adtech.de/images/.*\.gif -# @@||aka-cdn-ns.adtech.de/images/*.gif$image,domain=akam.no|amobil.no|gamer.no|hardware.no|teknofil.no (easylist.txt: 49562) -.aka-cdn-ns.adtech.de/images/.*\.gif - -#ab2p-unblock-request-Ai-Ci-when-R899 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R899} \ -} -# @@||ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylistchina+easylist.txt: 59582) -.ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylistchina+easylist.txt: 58976) -.images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylist.txt: 49097) -.ssl-images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ -# @@||images-amazon.com/images/G/01/traffic/s9m/images/sweeps/$image,domain=amazon.com (easylist.txt: 48491) -.images-amazon.com/images/G/01/traffic/s9m/images/sweeps/ - -#ab2p-unblock-request-Ai-Ci-when-R900 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R900} \ -} -# @@||googlesyndication.com/simgad/$image,domain=amctheatres.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|drupalcommerce.org|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|nedbank.co.za|orbitz.com|podomatic.com|weddingspot.co.uk|wlj.net|zavvi.com (easylistchina+easylist.txt: 58915) -.googlesyndication.com/simgad/ -# @@||googlesyndication.com/simgad/$image,domain=amctheatres.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|drupalcommerce.org|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|nedbank.co.za|orbitz.com|podomatic.com|weddingspot.co.uk|wlj.net|zavvi.com (easylist.txt: 48430) -.googlesyndication.com/simgad/ - -#ab2p-unblock-request-Ai-Ci-when-R902 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R902} \ -} -# @@||ru/banners/$image,domain=amic.ru|animespirit.ru|citilink.ru|furfurmag.ru|killot.ru|onlime.ru|sobesednik.ru|toptracker.ru|webnames.ru|wildberries.ru|zalivalka.ru (advblock.txt: 7380) - -#ab2p-unblock-request-Ai-Ci-when-R919 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R919} \ -} -# @@||media.glnsrv.com/ads/$image,domain=aopschools.com (easylistchina+easylist.txt: 59152) -.media.glnsrv.com/ads/ -# @@||media.glnsrv.com/ads/$image,domain=aopschools.com (easylist.txt: 48667) -.media.glnsrv.com/ads/ - -#ab2p-unblock-request-Ai-Ci-when-R925 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R925} \ -} -# @@||apple.com^*/images/ads_$image,domain=apple.com (easylistchina+easylist.txt: 58423) -.apple.com/.*/images/ads_ -# @@||apple.com^*/images/ad-$image,domain=apple.com (easylistchina+easylist.txt: 58422) -.apple.com/.*/images/ad- -# @@||apple.com^*/images/ads_$image,domain=apple.com (easylist.txt: 47938) -.apple.com/.*/images/ads_ -# @@||apple.com^*/images/ad-$image,domain=apple.com (easylist.txt: 47937) -.apple.com/.*/images/ad- - -#ab2p-unblock-request-Ai-Ci-when-R935 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R935} \ -} -# @@||astromeridian.ru/assets/images/reklama/$image,domain=astromeridian.ru (advblock.txt: 7269) -.astromeridian.ru/assets/images/reklama/ - -#ab2p-unblock-request-Ai-Ci-when-R955 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R955} \ -} -# @@||static*.banki.ru/upload/$image,domain=banki.ru (advblock.txt: 7398) -.static*./.*\.banki\.ru/upload/ -.static*.banki.ru/upload/ - -#ab2p-unblock-request-Ai-Ci-when-R956 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R956} \ -} -# @@||bannerist.com/images/$image,domain=bannerist.com (easylistchina+easylist.txt: 58475) -.bannerist.com/images/ -# @@||bannerist.com/images/$image,domain=bannerist.com (easylist.txt: 47990) -.bannerist.com/images/ - -#ab2p-unblock-request-Ai-Ci-when-R972 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R972} \ -} -# @@||img-cdn.mediaplex.com^$image,domain=betfair.com (easylistchina+easylist.txt: 58992) -.img-cdn.mediaplex.com -# @@||img-cdn.mediaplex.com^$image,domain=betfair.com (easylist.txt: 48507) -.img-cdn.mediaplex.com - -#ab2p-unblock-request-Ai-Ci-when-R976 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R976} \ -} -# @@||wlmatchbook.eacdn.com/wlmatchbook/affimages/$image,domain=betyper.com (easylistchina+easylist.txt: 61150) -.wlmatchbook.eacdn.com/wlmatchbook/affimages/ -# @@||partners.10bet.com/processing/impressions.asp?$image,domain=betyper.com (easylistchina+easylist.txt: 61083) -.partners.10bet.com/processing/impressions\.asp\? -# @@||imstore.bet365affiliates.com/AffiliateCreativeBanners/$image,domain=betyper.com (easylistchina+easylist.txt: 61044) -.imstore.bet365affiliates.com/AffiliateCreativeBanners/ -# @@||imstore.bet365affiliates.com/?AffiliateCode=$image,domain=betyper.com (easylistchina+easylist.txt: 61043) -.imstore.bet365affiliates.com/\?AffiliateCode= -# @@||amazonaws.com/affiliates/banners/logo/$image,domain=betyper.com (easylistchina+easylist.txt: 60976) -.amazonaws.com/affiliates/banners/logo/ -# @@||affiliate.matchbook.com/processing/impressions.asp?$image,domain=betyper.com (easylistchina+easylist.txt: 60968) -.affiliate.matchbook.com/processing/impressions\.asp\? -# @@||wlmatchbook.eacdn.com/wlmatchbook/affimages/$image,domain=betyper.com (easylist.txt: 50665) -.wlmatchbook.eacdn.com/wlmatchbook/affimages/ -# @@||partners.10bet.com/processing/impressions.asp?$image,domain=betyper.com (easylist.txt: 50598) -.partners.10bet.com/processing/impressions\.asp\? -# @@||imstore.bet365affiliates.com/AffiliateCreativeBanners/$image,domain=betyper.com (easylist.txt: 50559) -.imstore.bet365affiliates.com/AffiliateCreativeBanners/ -# @@||imstore.bet365affiliates.com/?AffiliateCode=$image,domain=betyper.com (easylist.txt: 50558) -.imstore.bet365affiliates.com/\?AffiliateCode= -# @@||amazonaws.com/affiliates/banners/logo/$image,domain=betyper.com (easylist.txt: 50491) -.amazonaws.com/affiliates/banners/logo/ -# @@||affiliate.matchbook.com/processing/impressions.asp?$image,domain=betyper.com (easylist.txt: 50483) -.affiliate.matchbook.com/processing/impressions\.asp\? - -#ab2p-unblock-request-Ai-Ci-when-R995 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R995} \ -} -# @@/adbanner/*$image,domain=books.com.tw (easylistchina+easylist.txt: 9998) +# @@/adbanner/*$image,domain=books.com.tw (easylistchina.txt: 9983) /(.*/)?adbanner/.* -#ab2p-unblock-request-Ai-Ci-when-R996 +#ab2p-unblock-request-Ai-Ci-when-R312 {-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R996} \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R312} \ } -# @@||boracay.mobi/boracay/imageAds/$image,domain=boracay.tel (easylistchina+easylist.txt: 58511) -.boracay.mobi/boracay/imageAds/ -# @@||boracay.mobi/boracay/imageAds/$image,domain=boracay.tel (easylist.txt: 48026) -.boracay.mobi/boracay/imageAds/ - -#ab2p-unblock-request-Ai-Ci-when-R997 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R997} \ -} -# @@||static.bored.com/advertising/top10/$image,domain=bored.com (easylistchina+easylist.txt: 59590) -.static.bored.com/advertising/top10/ -# @@||static.bored.com/advertising/top10/$image,domain=bored.com (easylist.txt: 49105) -.static.bored.com/advertising/top10/ - -#ab2p-unblock-request-Ai-Ci-when-R998 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R998} \ -} -# @@||uuuploads.com/ads-on-buildings/$image,domain=boredpanda.com (easylistchina+easylist.txt: 59737) -.uuuploads.com/ads-on-buildings/ -# @@||uuuploads.com/ads-on-buildings/$image,domain=boredpanda.com (easylist.txt: 49252) -.uuuploads.com/ads-on-buildings/ - -#ab2p-unblock-request-Ai-Ci-when-R1870t -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1870t} \ -} -# @@||zemanta.com^$image,third-party,domain=bulletsfirst.net (easylistchina+easylist.txt: 46059) -.zemanta.com -# @@||zemanta.com^$image,third-party,domain=bulletsfirst.net (easylist.txt: 35574) -.zemanta.com - -#ab2p-unblock-request-Ai-Ci-when-R1020 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1020} \ -} -# @@.com/banners/$image,domain=catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|sianevents.com|travelplus.com (easylistchina+easylist.txt: 58098) -/.*\.com/banners/ -.*.com/banners/ -# @@.com/banners/$image,domain=catalogfavoritesvip.com|deliverydeals.co.uk|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|sianevents.com|travelplus.com (easylist.txt: 47613) -/.*\.com/banners/ -.*.com/banners/ - -#ab2p-unblock-request-Ai-Ci-when-R1021 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1021} \ -} -# @@||linksynergy.com/fs/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59093) -.linksynergy.com/fs/banners/ -# @@||linksynergy.com/fs-bin/show?id=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59092) -.linksynergy.com/fs-bin/show\?id= -# @@||apmebf.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58418) -.apmebf.com -# @@.com/b/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58097) -/.*\.com/b/ -.*.com/b/ -# @@||linksynergy.com/fs/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48608) -.linksynergy.com/fs/banners/ -# @@||linksynergy.com/fs-bin/show?id=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48607) -.linksynergy.com/fs-bin/show\?id= -# @@||apmebf.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47933) -.apmebf.com -# @@.com/b/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47612) -/.*\.com/b/ -.*.com/b/ - -#ab2p-unblock-request-Ai-Ci-when-R1022 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1022} \ -} -# @@_120x60_$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylistchina+easylist.txt: 61304) -/.*_120x60_ -# @@_120x60_$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|theperfectsaver.com|travelplus.com (easylist.txt: 50819) -/.*_120x60_ - -#ab2p-unblock-request-Ai-Ci-when-R1023 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1023} \ -} -# @@_120_60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61302) -/.*_120_60\. -# @@-120x60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61301) -/.*-120x60\. -.*-120x60.*. -# @@-120x60-$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 61300) -/.*-120x60- -.*-120x60-*. -# @@||yoox.com/img//banner/affiliation/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59857) -.yoox.com/img//banner/affiliation/ -# @@||shopmanhattanite.com/affiliatebanners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59531) -.shopmanhattanite.com/affiliatebanners/ -# @@||rover.ebay.com^*&size=120x60&$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59470) -.rover.ebay.com/.*&size=120x60& -# @@||rogersmagazines.com/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59465) -.rogersmagazines.com/ads/ -# @@||pntrs.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59395) -.pntrs.com -# @@||paulfredrick.com/csimages/affiliate/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59349) -.paulfredrick.com/csimages/affiliate/banners/ -# @@||lovemybubbles.com/images/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59113) -.lovemybubbles.com/images/ads/ -# @@||linkshare.iregdev.com/images/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59091) -.linkshare.iregdev.com/images/ -# @@||linkconnector.com/traffic_record.php?lc=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59089) -.linkconnector.com/traffic_record\.php\?lc= -# @@||gan.doubleclick.net/gan_impression?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58867) -.gan.doubleclick.net/gan_impression\?lid= -# @@||doubleclick.net/ad/*.linkshare/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58691) -.doubleclick.net/ad/.*\.linkshare/ -# @@||cc-dt.com/link/tplimage?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58555) -.cc-dt.com/link/tplimage\?lid= -# @@||campingworld.com/images/AffiliateAds/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58540) -.campingworld.com/images/AffiliateAds/ -# @@||akamai.net^*/pics.drugstore.com/prodimg/promo/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58376) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# @@||affiliates.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58359) -.affiliates.*. -# @@||affiliate.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58355) -.affiliate.*. -# @@/display-ad/*$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 58107) -/(.*/)?display-ad/.* -# @@_120_60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50817) -/.*_120_60\. -# @@-120x60.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50816) -/.*-120x60\. -.*-120x60.*. -# @@-120x60-$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 50815) -/.*-120x60- -.*-120x60-*. -# @@||yoox.com/img//banner/affiliation/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49372) -.yoox.com/img//banner/affiliation/ -# @@||shopmanhattanite.com/affiliatebanners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49046) -.shopmanhattanite.com/affiliatebanners/ -# @@||rover.ebay.com^*&size=120x60&$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48985) -.rover.ebay.com/.*&size=120x60& -# @@||rogersmagazines.com/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48980) -.rogersmagazines.com/ads/ -# @@||pntrs.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48910) -.pntrs.com -# @@||paulfredrick.com/csimages/affiliate/banners/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48864) -.paulfredrick.com/csimages/affiliate/banners/ -# @@||lovemybubbles.com/images/ads/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48628) -.lovemybubbles.com/images/ads/ -# @@||linkshare.iregdev.com/images/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48606) -.linkshare.iregdev.com/images/ -# @@||linkconnector.com/traffic_record.php?lc=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48604) -.linkconnector.com/traffic_record\.php\?lc= -# @@||gan.doubleclick.net/gan_impression?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48382) -.gan.doubleclick.net/gan_impression\?lid= -# @@||doubleclick.net/ad/*.linkshare/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48206) -.doubleclick.net/ad/.*\.linkshare/ -# @@||cc-dt.com/link/tplimage?lid=$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48070) -.cc-dt.com/link/tplimage\?lid= -# @@||campingworld.com/images/AffiliateAds/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 48055) -.campingworld.com/images/AffiliateAds/ -# @@||akamai.net^*/pics.drugstore.com/prodimg/promo/$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47891) -.akamai.net/.*/pics\.drugstore\.com/prodimg/promo/ -# @@||affiliates.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47874) -.affiliates.*. -# @@||affiliate.$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47870) -.affiliate.*. -# @@/display-ad/*$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 47622) -/(.*/)?display-ad/.* - -#ab2p-unblock-request-Ai-Ci-when-R137 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R137} \ -} -# @@||aidinge.com^$image,domain=cbs.com (easylistchina+easylist.txt: 60044) -.aidinge.com -# @@|http://*?_$image,domain=cbs.com (easylistchina+easylist.txt: 59956) -/.*\?_ -# @@|http://*.jpg?$image,domain=cbs.com (easylistchina+easylist.txt: 59947) -/.*\.jpg\? -# @@.png^$image,domain=cbs.com (easylistchina+easylist.txt: 59908) -/.*\.png[^\w%.-] -.*.png -# @@.bmp^$image,domain=cbs.com (easylistchina+easylist.txt: 59884) -/.*\.bmp[^\w%.-] -.*.bmp -# @@||aidinge.com^$image,domain=cbs.com (easylist.txt: 49559) -.aidinge.com -# @@|http://*?_$image,domain=cbs.com (easylist.txt: 49471) -/.*\?_ -# @@|http://*.jpg?$image,domain=cbs.com (easylist.txt: 49462) -/.*\.jpg\? -# @@.png^$image,domain=cbs.com (easylist.txt: 49423) -/.*\.png[^\w%.-] -.*.png -# @@.bmp^$image,domain=cbs.com (easylist.txt: 49399) -/.*\.bmp[^\w%.-] -.*.bmp - -#ab2p-unblock-request-Ai-Ci-when-R1071 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1071} \ -} -# @@||ad.doubleclick.net/|$image,domain=cwtv.com (easylistchina+easylist.txt: 59981) -.ad.doubleclick.net/$ -# @@||ad.doubleclick.net/|$image,domain=cwtv.com (easylist.txt: 49496) -.ad.doubleclick.net/$ - -#ab2p-unblock-request-Ai-Ci-when-R1074 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1074} \ -} -# @@||dirty.ru/static/i/adv/$image,domain=d3.ru|dirty.ru (advblock.txt: 7289) -.dirty.ru/static/i/adv/ - -#ab2p-unblock-request-Ai-Ci-when-R1087 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1087} \ -} -# @@||tradedoubler.com/file/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59685) -.tradedoubler.com/file/ -# @@||nonstoppartner.net/a/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59257) -.nonstoppartner.net/a/ -# @@||imp*.tradedoubler.com/imp?type(img)$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 59001) -.imp*./.*\.tradedoubler\.com/imp\?type\(img\) -.imp*.tradedoubler.com/imp\?type\(img\) -# @@||gopjn.com/b/$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 58916) -.gopjn.com/b/ -# @@||awin1.com/cshow.php?s=$image,domain=deliverydeals.co.uk (easylistchina+easylist.txt: 58465) -.awin1.com/cshow\.php\?s= -# @@||tradedoubler.com/file/$image,domain=deliverydeals.co.uk (easylist.txt: 49200) -.tradedoubler.com/file/ -# @@||nonstoppartner.net/a/$image,domain=deliverydeals.co.uk (easylist.txt: 48772) -.nonstoppartner.net/a/ -# @@||imp*.tradedoubler.com/imp?type(img)$image,domain=deliverydeals.co.uk (easylist.txt: 48516) -.imp*./.*\.tradedoubler\.com/imp\?type\(img\) -.imp*.tradedoubler.com/imp\?type\(img\) -# @@||gopjn.com/b/$image,domain=deliverydeals.co.uk (easylist.txt: 48431) -.gopjn.com/b/ -# @@||awin1.com/cshow.php?s=$image,domain=deliverydeals.co.uk (easylist.txt: 47980) -.awin1.com/cshow\.php\?s= - -#ab2p-unblock-request-Ai-Ci-when-R1093 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1093} \ -} -# @@||deviantart.net/fs*/20*_by_$image,domain=deviantart.com (easylistchina+easylist.txt: 58668) -.deviantart.net/fs.*/20.*_by_ -# @@||deviantart.net/fs*/20*_by_$image,domain=deviantart.com (easylist.txt: 48183) -.deviantart.net/fs.*/20.*_by_ - -#ab2p-unblock-request-Ai-Ci-when-R1130 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1130} \ -} -# @@||ul.ehgt.org/ad/$image,domain=e-hentai.org|exhentai.org (easylistchina+easylist.txt: 61467) -.ul.ehgt.org/ad/ -# @@||ul.ehgt.org/ad/$image,domain=e-hentai.org|exhentai.org (easylist.txt: 50982) -.ul.ehgt.org/ad/ - -#ab2p-unblock-request-Ai-Ci-when-R1148 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1148} \ -} -# @@||emagst.net/openx/$image,domain=emag.hu|emag.ro (easylistchina+easylist.txt: 61011) -.emagst.net/openx/ -# @@||emagst.net/openx/$image,domain=emag.hu|emag.ro (easylist.txt: 50526) -.emagst.net/openx/ - -#ab2p-unblock-request-Ai-Ci-when-R1160 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1160} \ -} -# @@||img.espngp.com/ads/$image,domain=espnf1.com (easylistchina+easylist.txt: 58993) -.img.espngp.com/ads/ -# @@||img.espngp.com/ads/$image,domain=espnf1.com (easylist.txt: 48508) -.img.espngp.com/ads/ - -#ab2p-unblock-request-Ai-Ci-when-R202 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R202} \ -} -# @@||fbexternal-a.akamaihd.net/safe_image.php?$image,domain=facebook.com (easylistchina+easylist.txt: 58816) -.fbexternal-a.akamaihd.net/safe_image\.php\? -# @@||fbexternal-a.akamaihd.net/safe_image.php?$image,domain=facebook.com (easylist.txt: 48331) -.fbexternal-a.akamaihd.net/safe_image\.php\? - -#ab2p-unblock-request-Ai-Ci-when-R1188 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1188} \ -} -# @@||fest-ry.ru/*/images/ad$image,domain=fest-ry.ru (advblock.txt: 7298) -.fest-ry.ru/.*/images/ad - -#ab2p-unblock-request-Ai-Ci-when-R1189 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1189} \ -} -# @@/upload/bx/*$image,domain=ffan.ru|shop.kz|transbank.ru (advblock.txt: 7214) -/(.*/)?upload/bx/.* - -#ab2p-unblock-request-Ai-Ci-when-R1193 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1193} \ -} -# @@||pagead2.googlesyndication.com/simgad/25619783|$image,domain=filerev.cc (easylistchina+easylist.txt: 60632) -.pagead2.googlesyndication.com/simgad/25619783$ -# @@||pagead2.googlesyndication.com/simgad/25619783|$image,domain=filerev.cc (easylist.txt: 50147) -.pagead2.googlesyndication.com/simgad/25619783$ - -#ab2p-unblock-request-Ai-Ci-when-R1195 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1195} \ -} -# @@/banner.jpg?$image,domain=filmux.net (easylistchina+easylist.txt: 59924) -/(.*/)?banner\.jpg\? -# @@/banner.jpg?$image,domain=filmux.net (easylist.txt: 49439) -/(.*/)?banner\.jpg\? - -#ab2p-unblock-request-Ai-Ci-when-R1210 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1210} \ -} -# @@||foodzy.ru/i/b/$image,domain=foodzy.ru (advblock.txt: 7299) -.foodzy.ru/i/b/ - -#ab2p-unblock-request-Ai-Ci-when-R1214 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1214} \ -} -# @@||xboxlive.com/assets/*_banner_ad.$image,domain=forzamotorsport.net (easylistchina+easylist.txt: 59838) -.xboxlive.com/assets/.*_banner_ad\. -# @@||xboxlive.com/assets/*_banner_ad.$image,domain=forzamotorsport.net (easylist.txt: 49353) -.xboxlive.com/assets/.*_banner_ad\. - -#ab2p-unblock-request-Ai-Ci-when-R1225 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1225} \ -} -# @@||ad.doubleclick.net/clk;*?https://dm.victoriassecret.com/product/$image,domain=freeshipping.com (easylistchina+easylist.txt: 58158) -.ad.doubleclick.net/clk;.*\?https://dm\.victoriassecret\.com/product/ -# @@||ad.doubleclick.net/clk;*?https://dm.victoriassecret.com/product/$image,domain=freeshipping.com (easylist.txt: 47673) -.ad.doubleclick.net/clk;.*\?https://dm\.victoriassecret\.com/product/ - -#ab2p-unblock-request-Ai-Ci-when-R1228 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1228} \ -} -# @@||fresh-book.ru/uploads/banners/$image,domain=fresh-book.ru (advblock.txt: 7300) -.fresh-book.ru/uploads/banners/ - -#ab2p-unblock-request-Ai-Ci-when-R1233 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1233} \ -} -# @@||fod4.com^$image,domain=funnyordie.com (easylistchina+easylist.txt: 45987) -.fod4.com -# @@||fod4.com^$image,domain=funnyordie.com (easylist.txt: 35502) -.fod4.com - -#ab2p-unblock-request-Ai-Ci-when-R1249 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1249} \ -} -# @@||gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/$image,domain=gaybeeg.info (easylistchina+easylist.txt: 61737) -.gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/ -# @@||gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/$image,domain=gaybeeg.info (easylist.txt: 51252) -.gaybeeg.info/wp-content/plugins/blockalyzer-adblock-counter/ - -#ab2p-unblock-request-Ai-Ci-when-R1253 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1253} \ -} -# @@||betteradvertising.com/logos/$image,domain=ghostery.com (easylistchina+easylist.txt: 58495) -.betteradvertising.com/logos/ -# @@||betteradvertising.com/logos/$image,domain=ghostery.com (easylist.txt: 48010) -.betteradvertising.com/logos/ - -#ab2p-unblock-request-Ai-Ci-when-R1256 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1256} \ -} -# @@||images.rewardstyle.com/img?$image,domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 58985) -.images.rewardstyle.com/img\? -# @@||images.rewardstyle.com/img?$image,domain=glamour.com|itsjudytime.com (easylist.txt: 48500) -.images.rewardstyle.com/img\? - -#ab2p-unblock-request-Ai-Ci-when-R1260 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1260} \ -} -# @@||uakino.net^*/images/banner.gif|$image,domain=go.uakino.net (advblock.txt: 7604) -.uakino.net/.*/images/banner\.gif$ - -#ab2p-unblock-request-Ai-Ci-when-R1264 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1264} \ -} -# @@||www.google.com/ads/admob/images/$image,domain=google.com (easylistchina+easylist.txt: 61186) -.www.google.com/ads/admob/images/ -# @@||www.google.com/ads/admob/images/$image,domain=google.com (easylist.txt: 50701) -.www.google.com/ads/admob/images/ - -#ab2p-unblock-request-Ai-Ci-when-R1276 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1276} \ -} -# @@||pagead2.googlesyndication.com/simgad/573912609820809|$image,domain=hardocp.com (easylistchina+easylist.txt: 60633) -.pagead2.googlesyndication.com/simgad/573912609820809$ -# @@||pagead2.googlesyndication.com/simgad/573912609820809|$image,domain=hardocp.com (easylist.txt: 50148) -.pagead2.googlesyndication.com/simgad/573912609820809$ - -#ab2p-unblock-request-Ai-Ci-when-R1278 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1278} \ -} -# @@||hcsibir.ru/uploads/advert/$image,domain=hcsibir.ru (advblock.txt: 7309) -.hcsibir.ru/uploads/advert/ - -#ab2p-unblock-request-Ai-Ci-when-R1307 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1307} \ -} -# @@||igromania.ru/upload/iblock/*/baner_$image,domain=igromania.ru (advblock.txt: 7311) -.igromania.ru/upload/iblock/.*/baner_ - -#ab2p-unblock-request-Ai-Ci-when-R1338 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1338} \ -} -# @@||flashtalking.com/spot/$image,domain=itv.com (easylistchina+easylist.txt: 60295) -.flashtalking.com/spot/ -# @@||flashtalking.com/spot/$image,domain=itv.com (easylist.txt: 49810) -.flashtalking.com/spot/ - -#ab2p-unblock-request-Ai-Ci-when-R1340 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1340} \ -} -# @@||example.com^$image,subdocument,domain=izzylaif.com (advblock.txt: 7564) -.example.com - -#ab2p-unblock-request-Ai-Ci-when-R1342 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1342} \ -} -# @@||ad.doubleclick.net/ad/*.JABONG.COM$image,domain=jabong.com (easylistchina+easylist.txt: 58152) -.ad.doubleclick.net/ad/.*\.JABONG\.COM -# @@||2mdn.net/viewad/*/B*_$image,domain=jabong.com (easylistchina+easylist.txt: 58125) -.2mdn.net/viewad/.*/B.*_ -# @@||ad.doubleclick.net/ad/*.JABONG.COM$image,domain=jabong.com (easylist.txt: 47667) -.ad.doubleclick.net/ad/.*\.JABONG\.COM -# @@||2mdn.net/viewad/*/B*_$image,domain=jabong.com (easylist.txt: 47640) -.2mdn.net/viewad/.*/B.*_ - -#ab2p-unblock-request-Ai-Ci-when-R1359 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1359} \ -} -# @@||amazon-adsystem.com/e/ir?$image,domain=kasi-time.com (easylistchina+easylist.txt: 60975) -.amazon-adsystem.com/e/ir\? -# @@||amazon-adsystem.com/e/ir?$image,domain=kasi-time.com (easylist.txt: 50490) -.amazon-adsystem.com/e/ir\? - -#ab2p-unblock-request-Ai-Ci-when-R1362 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1362} \ -} -# @@||pagead2.googlesyndication.com/pagead/imgad?$image,domain=kingofgames.net|nedbank.co.za|nedbankgreen.co.za|virginaustralia.com (easylistchina+easylist.txt: 59329) -.pagead2.googlesyndication.com/pagead/imgad\? -# @@||pagead2.googlesyndication.com/pagead/imgad?$image,domain=kingofgames.net|nedbank.co.za|nedbankgreen.co.za|virginaustralia.com (easylist.txt: 48844) -.pagead2.googlesyndication.com/pagead/imgad\? - -#ab2p-unblock-request-Ai-Ci-when-R306 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R306} \ -} -# @@||sonobi.com/welcome/$image,domain=kissanime.com (easylistchina+easylist.txt: 60756) -.sonobi.com/welcome/ -# @@||propellerads.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60672) -.propellerads.com -# @@||mgid.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60523) -.mgid.com -# @@||hornyspots.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60384) -.hornyspots.com -# @@||cpmstar.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60186) -.cpmstar.com -# @@||clickxchange.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60165) -.clickxchange.com -# @@||chitika.com^*/search-button.png?$image,domain=kissanime.com (easylistchina+easylist.txt: 60155) -.chitika.com/.*/search-button\.png\? -# @@||chango.com^*/jcrew.jpg?$image,domain=kissanime.com (easylistchina+easylist.txt: 60147) -.chango.com/.*/jcrew\.jpg\? -# @@||advertisegame.com^$image,domain=kissanime.com (easylistchina+easylist.txt: 60032) -.advertisegame.com -# @@||ad4game.com*/images/$image,domain=kissanime.com (easylistchina+easylist.txt: 59985) -.ad4game.com*./(.*/)?images/ -# @@||sonobi.com/welcome/$image,domain=kissanime.com (easylist.txt: 50271) -.sonobi.com/welcome/ -# @@||propellerads.com^$image,domain=kissanime.com (easylist.txt: 50187) -.propellerads.com -# @@||mgid.com^$image,domain=kissanime.com (easylist.txt: 50038) -.mgid.com -# @@||hornyspots.com^$image,domain=kissanime.com (easylist.txt: 49899) -.hornyspots.com -# @@||cpmstar.com^$image,domain=kissanime.com (easylist.txt: 49701) -.cpmstar.com -# @@||clickxchange.com^$image,domain=kissanime.com (easylist.txt: 49680) -.clickxchange.com -# @@||chitika.com^*/search-button.png?$image,domain=kissanime.com (easylist.txt: 49670) -.chitika.com/.*/search-button\.png\? -# @@||chango.com^*/jcrew.jpg?$image,domain=kissanime.com (easylist.txt: 49662) -.chango.com/.*/jcrew\.jpg\? -# @@||advertisegame.com^$image,domain=kissanime.com (easylist.txt: 49547) -.advertisegame.com -# @@||ad4game.com*/images/$image,domain=kissanime.com (easylist.txt: 49500) -.ad4game.com*./(.*/)?images/ - -#ab2p-unblock-request-Ai-Ci-when-R1871t -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1871t} \ -} -# @@.png^$image,third-party,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59909) -/.*\.png[^\w%.-] -.*.png -# @@.jpg^$image,third-party,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59898) -/.*\.jpg[^\w%.-] -.*.jpg -# @@.png^$image,third-party,domain=kissanime.com|kisscartoon.me (easylist.txt: 49424) -/.*\.png[^\w%.-] -.*.png -# @@.jpg^$image,third-party,domain=kissanime.com|kisscartoon.me (easylist.txt: 49413) -/.*\.jpg[^\w%.-] -.*.jpg - -#ab2p-unblock-request-Ai-Ci-when-R711t -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R711t} \ -} -# @@.gif^$image,third-party,domain=kissanime.com (easylistchina+easylist.txt: 59890) -/.*\.gif[^\w%.-] -.*.gif -# @@.gif^$image,third-party,domain=kissanime.com (easylist.txt: 49405) -/.*\.gif[^\w%.-] -.*.gif - -#ab2p-unblock-request-Ai-Ci-when-R1872t -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1872t} \ -} -# @@?aid=$image,third-party,domain=kisscartoon.me (easylistchina+easylist.txt: 59940) -/.*\?aid= -# @@?aid=$image,third-party,domain=kisscartoon.me (easylist.txt: 49455) -/.*\?aid= - -#ab2p-unblock-request-Ai-Ci-when-R1382 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1382} \ -} -# @@||wixstatic.com/media/*_300_250_$image,domain=lenislens.com (easylistchina+easylist.txt: 61390) -.wixstatic.com/media/.*_300_250_ -# @@||wixstatic.com/media/*_300_250_$image,domain=lenislens.com (easylist.txt: 50905) -.wixstatic.com/media/.*_300_250_ - -#ab2p-unblock-request-Ai-Ci-when-R1392 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1392} \ -} -# @@||amazonaws.com/banners/$image,domain=livefromdarylshouse.com|pandasecurity.com (easylistchina+easylist.txt: 58397) -.amazonaws.com/banners/ -# @@||amazonaws.com/banners/$image,domain=livefromdarylshouse.com|pandasecurity.com (easylist.txt: 47912) -.amazonaws.com/banners/ - -#ab2p-unblock-request-Ai-Ci-when-R1394 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1394} \ -} -# @@||livelib.ru/img/skins/*/baner_$image,domain=livelib.ru (advblock.txt: 7326) -.livelib.ru/img/skins/.*/baner_ - -#ab2p-unblock-request-Ai-Ci-when-R1412 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1412} \ -} -# @@||g.doubleclick.net/gampad/ad?iu=*/Leaderboard&sz=728x90$image,domain=magicseaweed.com (easylistchina+easylist.txt: 60320) -.g.doubleclick.net/gampad/ad\?iu=.*/Leaderboard&sz=728x90 -# @@||g.doubleclick.net/gampad/ad?iu=*/Leaderboard&sz=728x90$image,domain=magicseaweed.com (easylist.txt: 49835) -.g.doubleclick.net/gampad/ad\?iu=.*/Leaderboard&sz=728x90 - -#ab2p-unblock-request-Ai-Ci-when-R327 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R327} \ -} -# @@||sixpool.me^$image,domain=majorleaguegaming.com (easylistchina+easylist.txt: 60741) -.sixpool.me -# @@||fragflix.com^*.png?*=$image,domain=majorleaguegaming.com (easylistchina+easylist.txt: 60301) -.fragflix.com/.*\.png\?.*= -# @@||sixpool.me^$image,domain=majorleaguegaming.com (easylist.txt: 50256) -.sixpool.me -# @@||fragflix.com^*.png?*=$image,domain=majorleaguegaming.com (easylist.txt: 49816) -.fragflix.com/.*\.png\?.*= - -#ab2p-unblock-request-Ai-Ci-when-R1420 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1420} \ -} -# @@||rsense-ad.realclick.co.kr/favicon.ico?id=$image,domain=mangaumaru.com (easylistchina+easylist.txt: 60705) -.rsense-ad.realclick.co.kr/favicon\.ico\?id= -# @@||rsense-ad.realclick.co.kr/favicon.ico?id=$image,domain=mangaumaru.com (easylist.txt: 50220) -.rsense-ad.realclick.co.kr/favicon\.ico\?id= - -#ab2p-unblock-request-Ai-Ci-when-R1427 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1427} \ -} -# @@||wsj.net^*/images/adv-$image,domain=marketwatch.com (easylistchina+easylist.txt: 59829) -.wsj.net/.*/images/adv- -# @@||wsj.net^*/images/adv-$image,domain=marketwatch.com (easylist.txt: 49344) -.wsj.net/.*/images/adv- - -#ab2p-unblock-request-Ai-Ci-when-R1437 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1437} \ -} -# @@||amazonaws.com^*/sponsorbanners/$image,domain=members.portalbuzz.com (easylistchina+easylist.txt: 58399) -.amazonaws.com/.*/sponsorbanners/ -# @@||amazonaws.com^*/sponsorbanners/$image,domain=members.portalbuzz.com (easylist.txt: 47914) -.amazonaws.com/.*/sponsorbanners/ - -#ab2p-unblock-request-Ai-Ci-when-R1438 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1438} \ -} -# @@||memecdn.com/advertising_$image,domain=memecenter.com (easylistchina+easylist.txt: 59166) -.memecdn.com/advertising_ -# @@||memecdn.com/advertising_$image,domain=memecenter.com (easylist.txt: 48681) -.memecdn.com/advertising_ - -#ab2p-unblock-request-Ai-Ci-when-R1439 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1439} \ -} -# @@||mlstatic.com^*/product_ads/$image,domain=mercadolibre.com.ve (easylistchina+easylist.txt: 61064) -.mlstatic.com/.*/product_ads/ -# @@||mlstatic.com^*/product_ads/$image,domain=mercadolibre.com.ve (easylist.txt: 50579) -.mlstatic.com/.*/product_ads/ - -#ab2p-unblock-request-Ai-Ci-when-R1442 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1442} \ -} -# @@||metvnetwork.s3.amazonaws.com^*-quiz-300x250-$image,domain=metv.com (easylistchina+easylist.txt: 61354) -.metvnetwork.s3.amazonaws.com/.*-quiz-300x250- -# @@||metvnetwork.s3.amazonaws.com^*-quiz-300x250-$image,domain=metv.com (easylist.txt: 50869) -.metvnetwork.s3.amazonaws.com/.*-quiz-300x250- - -#ab2p-unblock-request-Ai-Ci-when-R1462 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1462} \ -} -# @@||media.monster.com/ads/$image,domain=monster.com (easylistchina+easylist.txt: 59153) -.media.monster.com/ads/ -# @@||media.monster.com/ads/$image,domain=monster.com (easylist.txt: 48668) -.media.monster.com/ads/ - -#ab2p-unblock-request-Ai-Ci-when-R343 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R343} \ -} -# @@$image,domain=moonwalk.cc (advblock.txt: 7520) - - -#ab2p-unblock-request-Ai-Ci-when-R1463 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1463} \ -} -# @@||mstar.com/ads/$image,domain=morningstar.com (easylistchina+easylist.txt: 59201) -.mstar.com/ads/ -# @@||mstar.com/ads/$image,domain=morningstar.com (easylist.txt: 48716) -.mstar.com/ads/ - -#ab2p-unblock-request-Ai-Ci-when-R1468 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1468} \ -} -# @@||ads.yimg.com/la/adv/y/yahooxtra$image,domain=movies.yahoo.com (easylistchina+easylist.txt: 58275) -.ads.yimg.com/la/adv/y/yahooxtra -# @@||ads.yimg.com/la/adv/y/yahooxtra$image,domain=movies.yahoo.com (easylist.txt: 47790) -.ads.yimg.com/la/adv/y/yahooxtra - -#ab2p-unblock-request-Ai-Ci-when-R1475 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1475} \ -} -# @@||yadayadayada.nl/banner/banner.php$image,domain=murf.nl|workhardclimbharder.nl (easylistchina+easylist.txt: 59839) -.yadayadayada.nl/banner/banner\.php -# @@||yadayadayada.nl/banner/banner.php$image,domain=murf.nl|workhardclimbharder.nl (easylist.txt: 49354) -.yadayadayada.nl/banner/banner\.php - -#ab2p-unblock-request-Ai-Ci-when-R1482 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1482} \ -} -# @@||nalog.ru/images/baner/$image,domain=nalog.ru (advblock.txt: 7344) -.nalog.ru/images/baner/ - -#ab2p-unblock-request-Ai-Ci-when-R1491 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1491} \ -} -# @@||nextmovie.com/plugins/mtvnimageresizer/actions/scale_image?$image,domain=nextmovie.com (easylistchina+easylist.txt: 59244) -.nextmovie.com/plugins/mtvnimageresizer/actions/scale_image\? -# @@||nextmovie.com/plugins/mtvnimageresizer/actions/scale_image?$image,domain=nextmovie.com (easylist.txt: 48759) -.nextmovie.com/plugins/mtvnimageresizer/actions/scale_image\? - -#ab2p-unblock-request-Ai-Ci-when-R1505 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1505} \ -} -# @@||glnimages.s3.amazonaws.com/odw/ad$image,domain=odysseyware.com (easylistchina+easylist.txt: 58882) -.glnimages.s3.amazonaws.com/odw/ad -# @@||glnimages.s3.amazonaws.com/odw/ad$image,domain=odysseyware.com (easylist.txt: 48397) -.glnimages.s3.amazonaws.com/odw/ad - -#ab2p-unblock-request-Ai-Ci-when-R1519 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1519} \ -} -# @@||openload.tv^$image,domain=openload.io (easylistchina+easylist.txt: 60608) -.openload.tv -# @@||openload.tv^$image,domain=openload.io (easylist.txt: 50123) -.openload.tv - -#ab2p-unblock-request-Ai-Ci-when-R1537 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1537} \ -} -# @@||pagead2.googlesyndication.com/simgad/70436825|$image,domain=pencurimovie.pw (easylistchina+easylist.txt: 60634) -.pagead2.googlesyndication.com/simgad/70436825$ -# @@||pagead2.googlesyndication.com/simgad/70436825|$image,domain=pencurimovie.pw (easylist.txt: 50149) -.pagead2.googlesyndication.com/simgad/70436825$ - -#ab2p-unblock-request-Ai-Ci-when-R1539 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1539} \ -} -# @@||timeinc.net/people/static/i/advertising/getpeopleeverywhere-$image,domain=people.com|peoplestylewatch.com (easylistchina+easylist.txt: 59661) -.timeinc.net/people/static/i/advertising/getpeopleeverywhere- -# @@||timeinc.net/people/static/i/advertising/getpeopleeverywhere-$image,domain=people.com|peoplestylewatch.com (easylist.txt: 49176) -.timeinc.net/people/static/i/advertising/getpeopleeverywhere- - -#ab2p-unblock-request-Ai-Ci-when-R382 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R382} \ -} -# @@||picforall.ru/ads/banner.$image,domain=picforall.ru (advblock.txt: 7593) -.picforall.ru/ads/banner\. - -#ab2p-unblock-request-Ai-Ci-when-R1557 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1557} \ -} -# @@||openx.org/avw.php?zoneid$image,domain=podomatic.com (easylistchina+easylist.txt: 59303) -.openx.org/avw\.php\?zoneid -# @@||openx.org/avw.php?zoneid$image,domain=podomatic.com (easylist.txt: 48818) -.openx.org/avw\.php\?zoneid - -#ab2p-unblock-request-Ai-Ci-when-R393 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R393} \ -} -# @@||spankwire.phncdn.com^$image,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61699) -.spankwire.phncdn.com -# @@||spankwire.phncdn.com^$image,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51214) -.spankwire.phncdn.com - -#ab2p-unblock-request-Ai-Ci-when-R1562 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1562} \ -} -# @@||amazonaws.com/uploads.uservoice.com/$image,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61474) -.amazonaws.com/uploads\.uservoice\.com/ -# @@||amazonaws.com/uploads.uservoice.com/$image,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 50989) -.amazonaws.com/uploads\.uservoice\.com/ - -#ab2p-unblock-request-Ai-Ci-when-R1567 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1567} \ -} -# @@||oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx.ads/$image,domain=primerahora.com (easylistchina+easylist.txt: 61078) -.oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx\.ads/ -# @@||oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx.ads/$image,domain=primerahora.com (easylist.txt: 50593) -.oascentral.gfradnetwork.net/RealMedia/ads/adstream_nx\.ads/ - -#ab2p-unblock-request-Ai-Ci-when-R1580 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1580} \ -} -# @@||rackcdn.com/banners/$image,domain=rackspace.co.uk|rackspace.com.au (easylistchina+easylist.txt: 59431) -.rackcdn.com/banners/ -# @@||rackcdn.com/banners/$image,domain=rackspace.co.uk|rackspace.com.au (easylist.txt: 48946) -.rackcdn.com/banners/ - -#ab2p-unblock-request-Ai-Ci-when-R1599 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1599} \ -} -# @@||images*.roofandfloor.com^$image,domain=roofandfloor.com (easylistchina+easylist.txt: 61341) -.images*./.*\.roofandfloor\.com[^\w%.-] -.images*.roofandfloor.com -# @@||images*.roofandfloor.com^$image,domain=roofandfloor.com (easylist.txt: 50856) -.images*./.*\.roofandfloor\.com[^\w%.-] -.images*.roofandfloor.com - -#ab2p-unblock-request-Ai-Ci-when-R1609 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1609} \ -} -# @@||advert.popunder.ru/banners/advert.php?type=banner_img|$image,subdocument,domain=rutracker.org.ua (advblock.txt: 7556) -.advert.popunder.ru/banners/advert\.php\?type=banner_img$ - -#ab2p-unblock-request-Ai-Ci-when-R418 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R418} \ -} -# @@||rutracker.org/logo/$image,domain=rutracker.org (advblock.txt: 7385) -.rutracker.org/logo/ - -#ab2p-unblock-request-Ai-Ci-when-R1616 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1616} \ -} -# @@||scooter-zip.ru/upload/imagelib/baners/$image,domain=scooter-zip.ru (advblock.txt: 7389) -.scooter-zip.ru/upload/imagelib/baners/ - -#ab2p-unblock-request-Ai-Ci-when-R1873t -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1873t} \ -} -# @@|http://$image,third-party,domain=seekingalpha.com (easylistchina+easylist.txt: 59941) -# @@|http://$image,third-party,domain=seekingalpha.com (easylist.txt: 49456) - -#ab2p-unblock-request-Ai-Ci-when-R1628 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1628} \ -} -# @@$image,domain=serpens.nl (advblock.txt: 7521) - - -#ab2p-unblock-request-Ai-Ci-when-R1655 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1655} \ -} -# @@||amazonaws.com^*/300x250_$image,domain=snapapp.com (easylistchina+easylist.txt: 61309) -.amazonaws.com/.*/300x250_ -# @@||amazonaws.com^*-300x250_$image,domain=snapapp.com (easylistchina+easylist.txt: 61308) -.amazonaws.com/.*-300x250_ -# @@||amazonaws.com^*/300x250_$image,domain=snapapp.com (easylist.txt: 50824) -.amazonaws.com/.*/300x250_ -# @@||amazonaws.com^*-300x250_$image,domain=snapapp.com (easylist.txt: 50823) -.amazonaws.com/.*-300x250_ - -#ab2p-unblock-request-Ai-Ci-when-R1657 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1657} \ -} -# @@||softportal.com/advert/ushki/$image,domain=softportal.com (advblock.txt: 7395) -.softportal.com/advert/ushki/ - -#ab2p-unblock-request-Ai-Ci-when-R447 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R447} \ -} -# @@||doubleclick.net/ddm/ad/*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/$image,domain=speedtest.net (easylistchina+easylist.txt: 58720) -.doubleclick.net/ddm/ad/.*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/ -# @@||doubleclick.net/ddm/ad/*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/$image,domain=speedtest.net (easylist.txt: 48235) -.doubleclick.net/ddm/ad/.*;sz=160x600;mtfIFPath=rich_media_gallery_public/doubleclick/ - -#ab2p-unblock-request-Ai-Ci-when-R1664 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1664} \ -} -# @@||smimg.net^$image,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46037) -.smimg.net -# @@||images.performgroup.com^$image,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46000) -.images.performgroup.com -# @@||smimg.net^$image,domain=sportsmole.co.uk (easylist.txt: 35552) -.smimg.net -# @@||images.performgroup.com^$image,domain=sportsmole.co.uk (easylist.txt: 35515) -.images.performgroup.com - -#ab2p-unblock-request-Ai-Ci-when-R451 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R451} \ -} -# @@||stopgame.ru/www/images/$image,domain=stopgame.ru (advblock.txt: 7401) -.stopgame.ru/www/images/ - -#ab2p-unblock-request-Ai-Ci-when-R1874t -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1874t} \ -} -# @@||shopify.com^$image,third-party,domain=store.explosm.net (easylistchina+easylist.txt: 46036) -.shopify.com -# @@||shopify.com^$image,third-party,domain=store.explosm.net (easylist.txt: 35551) -.shopify.com - -#ab2p-unblock-request-Ai-Ci-when-R1677 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1677} \ -} -# @@||sundaysportclassifieds.com/ads/$image,domain=sundaysportclassifieds.co.uk (easylistchina+easylist.txt: 61462) -.sundaysportclassifieds.com/ads/ -# @@||sundaysportclassifieds.com/ads/$image,domain=sundaysportclassifieds.co.uk (easylist.txt: 50977) -.sundaysportclassifieds.com/ads/ - -#ab2p-unblock-request-Ai-Ci-when-R1683 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1683} \ -} -# @@||247realmedia.com/RealMedia/ads/Creatives/default/empty.gif$image,domain=surfline.com (easylistchina+easylist.txt: 59963) -.247realmedia.com/RealMedia/ads/Creatives/default/empty\.gif -# @@||247realmedia.com/RealMedia/ads/Creatives/default/empty.gif$image,domain=surfline.com (easylist.txt: 49478) -.247realmedia.com/RealMedia/ads/Creatives/default/empty\.gif - -#ab2p-unblock-request-Ai-Ci-when-R1687 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1687} \ -} -# @@||tableterra.ru/wp-content/uploads/*/*/*-*x*.$image,domain=tableterra.ru (advblock.txt: 7403) -.tableterra.ru/wp-content/uploads/.*/.*/.*-.*x.*\. - -#ab2p-unblock-request-Ai-Ci-when-R1688 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1688} \ -} -# @@||tagline.ru/img/favicons_top100_$image,domain=tagline.ru (advblock.txt: 7404) -.tagline.ru/img/favicons_top100_ - -#ab2p-unblock-request-Ai-Ci-when-R1695 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1695} \ -} -# @@||target.122.2o7.net/b/ss/*_300x250_$image,domain=target.com (easylistchina+easylist.txt: 61371) -.target.122.2o7.net/b/ss/.*_300x250_ -# @@||target.122.2o7.net/b/ss/*_300x250_$image,domain=target.com (easylist.txt: 50886) -.target.122.2o7.net/b/ss/.*_300x250_ - -#ab2p-unblock-request-Ai-Ci-when-R1700 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1700} \ -} -# @@||tctechcrunch2011.files.wordpress.com^$image,domain=techcrunch.com (easylistchina+easylist.txt: 59624) -.tctechcrunch2011.files.wordpress.com -# @@||tctechcrunch2011.files.wordpress.com^$image,domain=techcrunch.com (easylist.txt: 49139) -.tctechcrunch2011.files.wordpress.com - -#ab2p-unblock-request-Ai-Ci-when-R1702 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1702} \ -} -# @@||adtechus.com/apps/$image,domain=teletoon.com|walmart.ca (easylistchina+easylist.txt: 58320) -.adtechus.com/apps/ -# @@||adtechus.com/apps/$image,domain=teletoon.com|walmart.ca (easylist.txt: 47835) -.adtechus.com/apps/ - -#ab2p-unblock-request-Ai-Ci-when-R1710 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1710} \ -} -# @@||tnwcdn.com/wp-content/*/files/*/advertising.$image,domain=thenextweb.com (easylistchina+easylist.txt: 59673) -.tnwcdn.com/wp-content/.*/files/.*/advertising\. -# @@||tnwcdn.com/wp-content/*/files/*/advertising-$image,domain=thenextweb.com (easylistchina+easylist.txt: 59672) -.tnwcdn.com/wp-content/.*/files/.*/advertising- -# @@||tnwcdn.com/wp-content/*/files/*/advertising.$image,domain=thenextweb.com (easylist.txt: 49188) -.tnwcdn.com/wp-content/.*/files/.*/advertising\. -# @@||tnwcdn.com/wp-content/*/files/*/advertising-$image,domain=thenextweb.com (easylist.txt: 49187) -.tnwcdn.com/wp-content/.*/files/.*/advertising- - -#ab2p-unblock-request-Ai-Ci-when-R1726 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1726} \ -} -# @@||tree.tv/images/ads.jpg|$image,domain=tree.tv (advblock.txt: 7603) -.tree.tv/images/ads\.jpg$ - -#ab2p-unblock-request-Ai-Ci-when-R1752 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1752} \ -} -# @@||price.ru^$image,domain=tyndex.ru (advblock.txt: 7364) -.price.ru - -#ab2p-unblock-request-Ai-Ci-when-R1753 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1753} \ -} -# @@||ubi.com/resource/*/game/*_300x250_$image,domain=ubi.com (easylistchina+easylist.txt: 61376) -.ubi.com/resource/.*/game/.*_300x250_ -# @@||ubi.com/resource/*/game/*_300x250_$image,domain=ubi.com (easylist.txt: 50891) -.ubi.com/resource/.*/game/.*_300x250_ - -#ab2p-unblock-request-Ai-Ci-when-R1758 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1758} \ -} -# @@||pagead2.googlesyndication.com/simgad/$image,domain=uptobox.com (easylistchina+easylist.txt: 60631) -.pagead2.googlesyndication.com/simgad/ -# @@||pagead2.googlesyndication.com/simgad/$image,domain=uptobox.com (easylist.txt: 50146) -.pagead2.googlesyndication.com/simgad/ - -#ab2p-unblock-request-Ai-Ci-when-R1767 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1767} \ -} -# @@||vdmsti.ru/var/bansrc/$image,domain=vedomosti.ru (advblock.txt: 7419) -.vdmsti.ru/var/bansrc/ - -#ab2p-unblock-request-Ai-Ci-when-R1773 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1773} \ -} -# @@||ads.jetpackdigital.com^*/_uploads/$image,domain=vibe.com (easylistchina+easylist.txt: 58247) -.ads.jetpackdigital.com/.*/_uploads/ -# @@||ads.jetpackdigital.com.s3.amazonaws.com^$image,domain=vibe.com (easylistchina+easylist.txt: 58245) -.ads.jetpackdigital.com.s3.amazonaws.com -# @@||ads.jetpackdigital.com^*/_uploads/$image,domain=vibe.com (easylist.txt: 47762) -.ads.jetpackdigital.com/.*/_uploads/ -# @@||ads.jetpackdigital.com.s3.amazonaws.com^$image,domain=vibe.com (easylist.txt: 47760) -.ads.jetpackdigital.com.s3.amazonaws.com - -#ab2p-unblock-request-Ai-Ci-when-R1783 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1783} \ -} -# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina+easylist.txt: 10262) +# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina.txt: 10252) .hd.duba.net/vip\.ijinshan\.com/repository/ad-images/ -#ab2p-unblock-request-Ai-Ci-when-R1791 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1791} \ -} -# @@||googlesyndication.com/pagead/imgad?id=$image,domain=vroomvroomvroom.com.au (easylistchina+easylist.txt: 58914) -.googlesyndication.com/pagead/imgad\?id= -# @@||googlesyndication.com/pagead/imgad?id=$image,domain=vroomvroomvroom.com.au (easylist.txt: 48429) -.googlesyndication.com/pagead/imgad\?id= - -#ab2p-unblock-request-Ai-Ci-when-R1792 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1792} \ -} -# @@||vseplatezhi.ru/wp-content/uploads/*-120x60.$image,domain=vseplatezhi.ru (advblock.txt: 7431) -.vseplatezhi.ru/wp-content/uploads/.*-120x60\. - -#ab2p-unblock-request-Ai-Ci-when-R1793 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1793} \ -} -# @@||vshp2016.ru/upload/iblock/*_baner_$image,domain=vshp2016.ru (advblock.txt: 7432) -.vshp2016.ru/upload/iblock/.*_baner_ - -#ab2p-unblock-request-Ai-Ci-when-R1801 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1801} \ -} -# @@||imagehost123.com^*_300x250_$image,domain=wealthymen.com (easylistchina+easylist.txt: 61340) -.imagehost123.com/.*_300x250_ -# @@||imagehost123.com^*_300x250_$image,domain=wealthymen.com (easylist.txt: 50855) -.imagehost123.com/.*_300x250_ - -#ab2p-unblock-request-Ai-Ci-when-R1810 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1810} \ -} -# @@||whstatic.com/images/thumb/*-Popup-Ads-$image,domain=wikihow.com (easylistchina+easylist.txt: 59808) -.whstatic.com/images/thumb/.*-Popup-Ads- -# @@||whstatic.com/images/thumb/*-Popup-Ads-$image,domain=wikihow.com (easylist.txt: 49323) -.whstatic.com/images/thumb/.*-Popup-Ads- - -#ab2p-unblock-request-Ai-Ci-when-R1816 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1816} \ -} -# @@||content.ad/images/$image,domain=wmpoweruser.com (easylistchina+easylist.txt: 58617) -.content.ad/images/ -# @@||content.ad/images/$image,domain=wmpoweruser.com (easylist.txt: 48132) -.content.ad/images/ - -#ab2p-unblock-request-Ai-Ci-when-R1817 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1817} \ -} -# @@||w.org/plugins/adsense-plugin/screenshot-$image,domain=wordpress.org (easylistchina+easylist.txt: 59784) -.w.org/plugins/adsense-plugin/screenshot- -# @@||w.org/adsense-plugin/assets/banner-$image,domain=wordpress.org (easylistchina+easylist.txt: 59783) -.w.org/adsense-plugin/assets/banner- -# @@||w.org/plugins/adsense-plugin/screenshot-$image,domain=wordpress.org (easylist.txt: 49299) -.w.org/plugins/adsense-plugin/screenshot- -# @@||w.org/adsense-plugin/assets/banner-$image,domain=wordpress.org (easylist.txt: 49298) -.w.org/adsense-plugin/assets/banner- - -#ab2p-unblock-request-Ai-Ci-when-R1824 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1824} \ -} -# @@||www.google.com/images/icons/*/adsense_$image,domain=www.google.com (easylistchina+easylist.txt: 61192) -.www.google.com/images/icons/.*/adsense_ -# @@||www.google.com/images/icons/*/adsense_$image,domain=www.google.com (easylist.txt: 50707) -.www.google.com/images/icons/.*/adsense_ - -#ab2p-unblock-request-Ai-Ci-when-R1859 -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R1859} \ -} -# @@||泻褍褌褟褌邪.褉褎/media/adv/$image,domain=泻褍褌褟褌邪.褉褎 (advblock.txt: 7441) -.泻褍褌褟褌邪.褉褎/media/adv/ - -#ab2p-unblock-request-Ai-Ci-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-nR} \ -} -# @@||sundaysportclassifieds.co.uk/ads/$image,~third-party (easylistchina+easylist.txt: 61461) -.sundaysportclassifieds.co.uk/ads/ -# @@||gaynetwork.co.uk/Images/ads/bg/$image,~third-party (easylistchina+easylist.txt: 61438) -.gaynetwork.co.uk/Images/ads/bg/ -# @@||boyzshop.com/images/affbanners/$image,~third-party (easylistchina+easylist.txt: 61432) -.boyzshop.com/images/affbanners/ -# @@||ads.ultimatesurrender.com^$image,~third-party (easylistchina+easylist.txt: 61428) -.ads.ultimatesurrender.com -# @@||ads.fuckingmachines.com^$image,~third-party (easylistchina+easylist.txt: 61427) -.ads.fuckingmachines.com -# @@||swansuk.co.uk^*/300x250/$image,~third-party (easylistchina+easylist.txt: 61370) -.swansuk.co.uk/.*/300x250/ -# @@||roofandfloor.com/listing_$image,~third-party (easylistchina+easylist.txt: 61366) -.roofandfloor.com/listing_ -# @@||heathceramics.com/media/300x250/$image,~third-party (easylistchina+easylist.txt: 61338) -.heathceramics.com/media/300x250/ -# @@||framestr.com^*/300x250/$image,~third-party (easylistchina+easylist.txt: 61334) -.framestr.com/.*/300x250/ -# @@||cubeecraft.com/images/home/features/300x250/$image,~third-party (easylistchina+easylist.txt: 61322) -.cubeecraft.com/images/home/features/300x250/ -# @@||google.com/help/hc/images/adwords/$image,~third-party (easylistchina+easylist.txt: 61169) -.google.com/help/hc/images/adwords/ -# @@||accounts.google.com/accounts/adwords/$image,~third-party (easylistchina+easylist.txt: 61162) -.accounts.google.com/accounts/adwords/ -# @@||velasridaura.com/modules/*/advertising_custom.$image,~third-party (easylistchina+easylist.txt: 61143) -.velasridaura.com/modules/.*/advertising_custom\. -# @@||niedziela.nl/adverts/$image,~third-party (easylistchina+easylist.txt: 61072) -.niedziela.nl/adverts/ -# @@||mmgastro.pl/img/reklama/$image,~third-party (easylistchina+easylist.txt: 61065) -.mmgastro.pl/img/reklama/ -# @@||mjhobbymassan.se/r/annonser/$image,~third-party (easylistchina+easylist.txt: 61063) -.mjhobbymassan.se/r/annonser/ -# @@||krotoszyn.pl/uploads/pub/ads_files/$image,~third-party (easylistchina+easylist.txt: 61055) -.krotoszyn.pl/uploads/pub/ads_files/ -# @@||hardware.no/artikler/$image,~third-party (easylistchina+easylist.txt: 60373) -.hardware.no/artikler/ -# @@||zap2it.com/ads/newsletter/$image,~third-party (easylistchina+easylist.txt: 59869) -.zap2it.com/ads/newsletter/ -# @@||xbox.com/assets/ad/$image,~third-party (easylistchina+easylist.txt: 59837) -.xbox.com/assets/ad/ -# @@||wallpapersmania.com/ad/$image,~third-party (easylistchina+easylist.txt: 59787) -.wallpapersmania.com/ad/ -# @@||twogag.com/comics/$image,~third-party (easylistchina+easylist.txt: 59719) -.twogag.com/comics/ -# @@||tooltrucks.com/banners/$image,~third-party (easylistchina+easylist.txt: 59675) -.tooltrucks.com/banners/ -# @@||tooltrucks.com/ads/$image,~third-party (easylistchina+easylist.txt: 59674) -.tooltrucks.com/ads/ -# @@||statedesign.com/advertisers/$image,~third-party (easylistchina+easylist.txt: 59587) -.statedesign.com/advertisers/ -# @@||siamautologistics.com/ads/$image,~third-party (easylistchina+easylist.txt: 59532) -.siamautologistics.com/ads/ -# @@||shawfloors.com/adx/$image,~third-party (easylistchina+easylist.txt: 59529) -.shawfloors.com/adx/ -# @@||sal.co.th/ads/$image,~third-party (easylistchina+easylist.txt: 59485) -.sal.co.th/ads/ -# @@||replgroup.com/banners/$image,~third-party (easylistchina+easylist.txt: 59453) -.replgroup.com/banners/ -# @@||rapoo.com/images/ad/$image,~third-party (easylistchina+easylist.txt: 59439) -.rapoo.com/images/ad/ -# @@||rad.org.uk/images/adverts/$image,~third-party (easylistchina+easylist.txt: 59435) -.rad.org.uk/images/adverts/ -# @@||r2games.com/bannerad/$image,~third-party (easylistchina+easylist.txt: 59430) -.r2games.com/bannerad/ -# @@||ptgrey.com/_PGR_Content/Advertising/$image,~third-party (easylistchina+easylist.txt: 59419) -.ptgrey.com/_PGR_Content/Advertising/ -# @@||photo.ekathimerini.com/ads/extra/$image,~third-party (easylistchina+easylist.txt: 59368) -.photo.ekathimerini.com/ads/extra/ -# @@||phl.org/Advertising/$image,~third-party (easylistchina+easylist.txt: 59365) -.phl.org/Advertising/ -# @@||pandasecurity.com/banners/$image,~third-party (easylistchina+easylist.txt: 59338) -.pandasecurity.com/banners/ -# @@||myprotein.com/Files/OpenX/$image,~third-party (easylistchina+easylist.txt: 59217) -.myprotein.com/Files/OpenX/ -# @@||mymemory.co.uk/images/adverts/$image,~third-party (easylistchina+easylist.txt: 59216) -.mymemory.co.uk/images/adverts/ -# @@||meritline.com/banners/$image,~third-party (easylistchina+easylist.txt: 59167) -.meritline.com/banners/ -# @@||lelong.com.my/UserImages/Ads/$image,~third-party (easylistchina+easylist.txt: 59081) -.lelong.com.my/UserImages/Ads/ -# @@||kloubert.com/wp-content/uploads/*/Advertising_$image,~third-party (easylistchina+easylist.txt: 59065) -.kloubert.com/wp-content/uploads/.*/Advertising_ -# @@||images.frys.com/art/ads/images/$image,~third-party (easylistchina+easylist.txt: 58980) -.images.frys.com/art/ads/images/ -# @@||hologfx.com/banners/$image,~third-party (easylistchina+easylist.txt: 58945) -.hologfx.com/banners/ -# @@||hillvue.com/banners/$image,~third-party (easylistchina+easylist.txt: 58941) -.hillvue.com/banners/ -# @@||hafeezcentre.pk^*/ads_images/$image,~third-party (easylistchina+easylist.txt: 58928) -.hafeezcentre.pk/.*/ads_images/ -# @@||guardian4.com/banners/$image,~third-party (easylistchina+easylist.txt: 58921) -.guardian4.com/banners/ -# @@||getgamesgo.com/Banners/$image,~third-party (easylistchina+easylist.txt: 58873) -.getgamesgo.com/Banners/ -# @@||geektime.com/wp-content/uploads/*/Google-Adsense-$image,~third-party (easylistchina+easylist.txt: 58872) -.geektime.com/wp-content/uploads/.*/Google-Adsense- -# @@||flipboard.com/media/uploads/adv_$image,~third-party (easylistchina+easylist.txt: 58826) -.flipboard.com/media/uploads/adv_ -# @@||fixtracking.com/images/ad-$image,~third-party (easylistchina+easylist.txt: 58824) -.fixtracking.com/images/ad- -# @@||files.coloribus.com^$image,~third-party (easylistchina+easylist.txt: 58822) -.files.coloribus.com -# @@||evanscycles.com/ads/$image,~third-party (easylistchina+easylist.txt: 58798) -.evanscycles.com/ads/ -# @@||engrish.com/wp-content/uploads/*/advertisement-$image,~third-party (easylistchina+easylist.txt: 58784) -.engrish.com/wp-content/uploads/.*/advertisement- -# @@||dx.com/openx/$image,~third-party (easylistchina+easylist.txt: 58754) -.dx.com/openx/ -# @@||dropzone.no/sap/its/gfx/top_ad_$image,~third-party (easylistchina+easylist.txt: 58746) -.dropzone.no/sap/its/gfx/top_ad_ -# @@||disruptorbeam.com/assets/uploaded/ads/$image,~third-party (easylistchina+easylist.txt: 58681) -.disruptorbeam.com/assets/uploaded/ads/ -# @@||digsby.com/affiliate/banners/$image,~third-party (easylistchina+easylist.txt: 58672) -.digsby.com/affiliate/banners/ -# @@||d3con.org/data1/$image,~third-party (easylistchina+easylist.txt: 58641) -.d3con.org/data1/ -# @@||constructalia.com/banners/$image,~third-party (easylistchina+easylist.txt: 58615) -.constructalia.com/banners/ -# @@||completemarkets.com/pictureHandler.ashx?adid=$image,~third-party (easylistchina+easylist.txt: 58610) -.completemarkets.com/pictureHandler\.ashx\?adid= -# @@||clickbd.com^*/ads/$image,~third-party (easylistchina+easylist.txt: 58597) -.clickbd.com/.*/ads/ -# @@||chicavenue.com.au/assets/ads/$image,~third-party (easylistchina+easylist.txt: 58590) -.chicavenue.com.au/assets/ads/ -# @@||chase.com/content/*/ads/$image,~third-party (easylistchina+easylist.txt: 58579) -.chase.com/content/.*/ads/ -# @@||cerebral.s4.bizhat.com/banners/$image,~third-party (easylistchina+easylist.txt: 58576) -.cerebral.s4.bizhat.com/banners/ -# @@||buyselltrade.ca/adimages/$image,~third-party (easylistchina+easylist.txt: 58535) -.buyselltrade.ca/adimages/ -# @@||bellaliant.net^*/banners/ads/$image,~third-party (easylistchina+easylist.txt: 58492) -.bellaliant.net/.*/banners/ads/ -# @@||bannerfans.com/banners/$image,~third-party (easylistchina+easylist.txt: 58474) -.bannerfans.com/banners/ -# @@||bahtsold.com/assets/home/openx/Thailand/$image,~third-party (easylistchina+easylist.txt: 58469) -.bahtsold.com/assets/home/openx/Thailand/ -# @@||aviationclassifieds.com/adimg/$image,~third-party (easylistchina+easylist.txt: 58462) -.aviationclassifieds.com/adimg/ -# @@||asiasold.com/assets/home/openx/$image,~third-party (easylistchina+easylist.txt: 58440) -.asiasold.com/assets/home/openx/ -# @@||annfammed.org/adsystem/$image,~third-party (easylistchina+easylist.txt: 58407) -.annfammed.org/adsystem/ -# @@||aimsworldrunning.org/images/AD_Box_$image,~third-party (easylistchina+easylist.txt: 58365) -.aimsworldrunning.org/images/AD_Box_ -# @@||advertising.nzme.co.nz/media/$image,~third-party (easylistchina+easylist.txt: 58340) -.advertising.nzme.co.nz/media/ -# @@||loggly.cheatsheet.com/inputs/$image,~third-party (easylistchina+easylist.txt: 46011) -.loggly.cheatsheet.com/inputs/ -# @@||cheatsheet.com/wp-content/uploads/$image,~third-party (easylistchina+easylist.txt: 45960) -.cheatsheet.com/wp-content/uploads/ -# @@||cheatsheet.com/wp-content/themes/$image,~third-party (easylistchina+easylist.txt: 45959) -.cheatsheet.com/wp-content/themes/ -# @@||sundaysportclassifieds.co.uk/ads/$image,~third-party (easylist.txt: 50976) -.sundaysportclassifieds.co.uk/ads/ -# @@||gaynetwork.co.uk/Images/ads/bg/$image,~third-party (easylist.txt: 50953) -.gaynetwork.co.uk/Images/ads/bg/ -# @@||boyzshop.com/images/affbanners/$image,~third-party (easylist.txt: 50947) -.boyzshop.com/images/affbanners/ -# @@||ads.ultimatesurrender.com^$image,~third-party (easylist.txt: 50943) -.ads.ultimatesurrender.com -# @@||ads.fuckingmachines.com^$image,~third-party (easylist.txt: 50942) -.ads.fuckingmachines.com -# @@||swansuk.co.uk^*/300x250/$image,~third-party (easylist.txt: 50885) -.swansuk.co.uk/.*/300x250/ -# @@||roofandfloor.com/listing_$image,~third-party (easylist.txt: 50881) -.roofandfloor.com/listing_ -# @@||heathceramics.com/media/300x250/$image,~third-party (easylist.txt: 50853) -.heathceramics.com/media/300x250/ -# @@||framestr.com^*/300x250/$image,~third-party (easylist.txt: 50849) -.framestr.com/.*/300x250/ -# @@||cubeecraft.com/images/home/features/300x250/$image,~third-party (easylist.txt: 50837) -.cubeecraft.com/images/home/features/300x250/ -# @@||google.com/help/hc/images/adwords/$image,~third-party (easylist.txt: 50684) -.google.com/help/hc/images/adwords/ -# @@||accounts.google.com/accounts/adwords/$image,~third-party (easylist.txt: 50677) -.accounts.google.com/accounts/adwords/ -# @@||velasridaura.com/modules/*/advertising_custom.$image,~third-party (easylist.txt: 50658) -.velasridaura.com/modules/.*/advertising_custom\. -# @@||niedziela.nl/adverts/$image,~third-party (easylist.txt: 50587) -.niedziela.nl/adverts/ -# @@||mmgastro.pl/img/reklama/$image,~third-party (easylist.txt: 50580) -.mmgastro.pl/img/reklama/ -# @@||mjhobbymassan.se/r/annonser/$image,~third-party (easylist.txt: 50578) -.mjhobbymassan.se/r/annonser/ -# @@||krotoszyn.pl/uploads/pub/ads_files/$image,~third-party (easylist.txt: 50570) -.krotoszyn.pl/uploads/pub/ads_files/ -# @@||hardware.no/artikler/$image,~third-party (easylist.txt: 49888) -.hardware.no/artikler/ -# @@||zap2it.com/ads/newsletter/$image,~third-party (easylist.txt: 49384) -.zap2it.com/ads/newsletter/ -# @@||xbox.com/assets/ad/$image,~third-party (easylist.txt: 49352) -.xbox.com/assets/ad/ -# @@||wallpapersmania.com/ad/$image,~third-party (easylist.txt: 49302) -.wallpapersmania.com/ad/ -# @@||twogag.com/comics/$image,~third-party (easylist.txt: 49234) -.twogag.com/comics/ -# @@||tooltrucks.com/banners/$image,~third-party (easylist.txt: 49190) -.tooltrucks.com/banners/ -# @@||tooltrucks.com/ads/$image,~third-party (easylist.txt: 49189) -.tooltrucks.com/ads/ -# @@||statedesign.com/advertisers/$image,~third-party (easylist.txt: 49102) -.statedesign.com/advertisers/ -# @@||siamautologistics.com/ads/$image,~third-party (easylist.txt: 49047) -.siamautologistics.com/ads/ -# @@||shawfloors.com/adx/$image,~third-party (easylist.txt: 49044) -.shawfloors.com/adx/ -# @@||sal.co.th/ads/$image,~third-party (easylist.txt: 49000) -.sal.co.th/ads/ -# @@||replgroup.com/banners/$image,~third-party (easylist.txt: 48968) -.replgroup.com/banners/ -# @@||rapoo.com/images/ad/$image,~third-party (easylist.txt: 48954) -.rapoo.com/images/ad/ -# @@||rad.org.uk/images/adverts/$image,~third-party (easylist.txt: 48950) -.rad.org.uk/images/adverts/ -# @@||r2games.com/bannerad/$image,~third-party (easylist.txt: 48945) -.r2games.com/bannerad/ -# @@||ptgrey.com/_PGR_Content/Advertising/$image,~third-party (easylist.txt: 48934) -.ptgrey.com/_PGR_Content/Advertising/ -# @@||photo.ekathimerini.com/ads/extra/$image,~third-party (easylist.txt: 48883) -.photo.ekathimerini.com/ads/extra/ -# @@||phl.org/Advertising/$image,~third-party (easylist.txt: 48880) -.phl.org/Advertising/ -# @@||pandasecurity.com/banners/$image,~third-party (easylist.txt: 48853) -.pandasecurity.com/banners/ -# @@||myprotein.com/Files/OpenX/$image,~third-party (easylist.txt: 48732) -.myprotein.com/Files/OpenX/ -# @@||mymemory.co.uk/images/adverts/$image,~third-party (easylist.txt: 48731) -.mymemory.co.uk/images/adverts/ -# @@||meritline.com/banners/$image,~third-party (easylist.txt: 48682) -.meritline.com/banners/ -# @@||lelong.com.my/UserImages/Ads/$image,~third-party (easylist.txt: 48596) -.lelong.com.my/UserImages/Ads/ -# @@||kloubert.com/wp-content/uploads/*/Advertising_$image,~third-party (easylist.txt: 48580) -.kloubert.com/wp-content/uploads/.*/Advertising_ -# @@||images.frys.com/art/ads/images/$image,~third-party (easylist.txt: 48495) -.images.frys.com/art/ads/images/ -# @@||hologfx.com/banners/$image,~third-party (easylist.txt: 48460) -.hologfx.com/banners/ -# @@||hillvue.com/banners/$image,~third-party (easylist.txt: 48456) -.hillvue.com/banners/ -# @@||hafeezcentre.pk^*/ads_images/$image,~third-party (easylist.txt: 48443) -.hafeezcentre.pk/.*/ads_images/ -# @@||guardian4.com/banners/$image,~third-party (easylist.txt: 48436) -.guardian4.com/banners/ -# @@||getgamesgo.com/Banners/$image,~third-party (easylist.txt: 48388) -.getgamesgo.com/Banners/ -# @@||geektime.com/wp-content/uploads/*/Google-Adsense-$image,~third-party (easylist.txt: 48387) -.geektime.com/wp-content/uploads/.*/Google-Adsense- -# @@||flipboard.com/media/uploads/adv_$image,~third-party (easylist.txt: 48341) -.flipboard.com/media/uploads/adv_ -# @@||fixtracking.com/images/ad-$image,~third-party (easylist.txt: 48339) -.fixtracking.com/images/ad- -# @@||files.coloribus.com^$image,~third-party (easylist.txt: 48337) -.files.coloribus.com -# @@||evanscycles.com/ads/$image,~third-party (easylist.txt: 48313) -.evanscycles.com/ads/ -# @@||engrish.com/wp-content/uploads/*/advertisement-$image,~third-party (easylist.txt: 48299) -.engrish.com/wp-content/uploads/.*/advertisement- -# @@||dx.com/openx/$image,~third-party (easylist.txt: 48269) -.dx.com/openx/ -# @@||dropzone.no/sap/its/gfx/top_ad_$image,~third-party (easylist.txt: 48261) -.dropzone.no/sap/its/gfx/top_ad_ -# @@||disruptorbeam.com/assets/uploaded/ads/$image,~third-party (easylist.txt: 48196) -.disruptorbeam.com/assets/uploaded/ads/ -# @@||digsby.com/affiliate/banners/$image,~third-party (easylist.txt: 48187) -.digsby.com/affiliate/banners/ -# @@||d3con.org/data1/$image,~third-party (easylist.txt: 48156) -.d3con.org/data1/ -# @@||constructalia.com/banners/$image,~third-party (easylist.txt: 48130) -.constructalia.com/banners/ -# @@||completemarkets.com/pictureHandler.ashx?adid=$image,~third-party (easylist.txt: 48125) -.completemarkets.com/pictureHandler\.ashx\?adid= -# @@||clickbd.com^*/ads/$image,~third-party (easylist.txt: 48112) -.clickbd.com/.*/ads/ -# @@||chicavenue.com.au/assets/ads/$image,~third-party (easylist.txt: 48105) -.chicavenue.com.au/assets/ads/ -# @@||chase.com/content/*/ads/$image,~third-party (easylist.txt: 48094) -.chase.com/content/.*/ads/ -# @@||cerebral.s4.bizhat.com/banners/$image,~third-party (easylist.txt: 48091) -.cerebral.s4.bizhat.com/banners/ -# @@||buyselltrade.ca/adimages/$image,~third-party (easylist.txt: 48050) -.buyselltrade.ca/adimages/ -# @@||bellaliant.net^*/banners/ads/$image,~third-party (easylist.txt: 48007) -.bellaliant.net/.*/banners/ads/ -# @@||bannerfans.com/banners/$image,~third-party (easylist.txt: 47989) -.bannerfans.com/banners/ -# @@||bahtsold.com/assets/home/openx/Thailand/$image,~third-party (easylist.txt: 47984) -.bahtsold.com/assets/home/openx/Thailand/ -# @@||aviationclassifieds.com/adimg/$image,~third-party (easylist.txt: 47977) -.aviationclassifieds.com/adimg/ -# @@||asiasold.com/assets/home/openx/$image,~third-party (easylist.txt: 47955) -.asiasold.com/assets/home/openx/ -# @@||annfammed.org/adsystem/$image,~third-party (easylist.txt: 47922) -.annfammed.org/adsystem/ -# @@||aimsworldrunning.org/images/AD_Box_$image,~third-party (easylist.txt: 47880) -.aimsworldrunning.org/images/AD_Box_ -# @@||advertising.nzme.co.nz/media/$image,~third-party (easylist.txt: 47855) -.advertising.nzme.co.nz/media/ -# @@||loggly.cheatsheet.com/inputs/$image,~third-party (easylist.txt: 35526) -.loggly.cheatsheet.com/inputs/ -# @@||cheatsheet.com/wp-content/uploads/$image,~third-party (easylist.txt: 35475) -.cheatsheet.com/wp-content/uploads/ -# @@||cheatsheet.com/wp-content/themes/$image,~third-party (easylist.txt: 35474) -.cheatsheet.com/wp-content/themes/ - -#ab2p-unblock-request-Ai-Ci-when-nR-Rt -{-block \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-Rt} \ - +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-nR} \ -} -# @@||exoclick.com/wp-content/$image,third-party (easylistchina+easylist.txt: 60263) -.exoclick.com/wp-content/ -# @@||twimg.com^$image,third-party (easylistchina+easylist.txt: 46047) -.twimg.com -# @@||images.sportsworldnews.com^$image,third-party (easylistchina+easylist.txt: 46001) -.images.sportsworldnews.com -# @@||gravatar.com/avatar$image,third-party (easylistchina+easylist.txt: 45997) -.gravatar.com/avatar -# @@||content-img.newsinc.com^$image,third-party (easylistchina+easylist.txt: 45968) -.content-img.newsinc.com -# @@||bigcommerce.com^$image,third-party (easylistchina+easylist.txt: 45953) -.bigcommerce.com -# @@||assets.newsinc.com^$image,third-party (easylistchina+easylist.txt: 45951) -.assets.newsinc.com -# @@||exoclick.com/wp-content/$image,third-party (easylist.txt: 49778) -.exoclick.com/wp-content/ -# @@||twimg.com^$image,third-party (easylist.txt: 35562) -.twimg.com -# @@||images.sportsworldnews.com^$image,third-party (easylist.txt: 35516) -.images.sportsworldnews.com -# @@||gravatar.com/avatar$image,third-party (easylist.txt: 35512) -.gravatar.com/avatar -# @@||content-img.newsinc.com^$image,third-party (easylist.txt: 35483) -.content-img.newsinc.com -# @@||bigcommerce.com^$image,third-party (easylist.txt: 35468) -.bigcommerce.com -# @@||assets.newsinc.com^$image,third-party (easylist.txt: 35466) -.assets.newsinc.com - #ab2p-unblock-request-Aij-Cij {-block \ +client-header-tagger{ab2p-unblock-request-Aij} \ +server-header-tagger{ab2p-unblock-request-Cij} \ } TAG:^ab2p-unblock-request-Aij-Cij$ -# @@||blog.tube8.com/wp-content/$image,script (easylistchina+easylist.txt: 61476) -.blog.tube8.com/wp-content/ -# @@||www.google.com/ads/preferences/$image,script,subdocument (easylistchina+easylist.txt: 59834) -.www.google.com/ads/preferences/ -# @@||doubleclick.net^*/targeted.optimum/*;sz=968x286;$image,popup,script (easylistchina+easylist.txt: 58735) -.doubleclick.net/.*/targeted\.optimum/.*;sz=968x286; -# @@||blog.tube8.com/wp-content/$image,script (easylist.txt: 50991) -.blog.tube8.com/wp-content/ -# @@||www.google.com/ads/preferences/$image,script,subdocument (easylist.txt: 49349) -.www.google.com/ads/preferences/ -# @@||doubleclick.net^*/targeted.optimum/*;sz=968x286;$image,popup,script (easylist.txt: 48250) -.doubleclick.net/.*/targeted\.optimum/.*;sz=968x286; -#ab2p-unblock-request-Aij-Cij-when-R1875t +#ab2p-unblock-request-Aij-Cij-when-R266 {-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1875t} \ + +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R266} \ } -# @@||po.st^*/status?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46029) -.po.st/.*/status\? -# @@||po.st^*/counter?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46028) -.po.st/.*/counter\? -# @@||po.st/static/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46027) -.po.st/static/ -# @@||po.st/share/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46026) -.po.st/share/ -# @@||launch.newsinc.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46008) -.launch.newsinc.com -# @@||disquscdn.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45972) -.disquscdn.com -# @@||disqus.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45971) -.disqus.com -# @@||po.st^*/status?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35544) -.po.st/.*/status\? -# @@||po.st^*/counter?$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35543) -.po.st/.*/counter\? -# @@||po.st/static/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35542) -.po.st/static/ -# @@||po.st/share/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35541) -.po.st/share/ -# @@||launch.newsinc.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35523) -.launch.newsinc.com -# @@||disquscdn.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35487) -.disquscdn.com -# @@||disqus.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativeintel.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35486) -.disqus.com - -#ab2p-unblock-request-Aij-Cij-when-R1876t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1876t} \ -} -# @@||graph.facebook.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45996) -.graph.facebook.com -# @@||graph.facebook.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|photobucket.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35511) -.graph.facebook.com - -#ab2p-unblock-request-Aij-Cij-when-R1877t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1877t} \ -} -# @@||twitter.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46048) -.twitter.com -# @@||twitter.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35563) -.twitter.com - -#ab2p-unblock-request-Aij-Cij-when-R1878t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1878t} \ -} -# @@||pinterest.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46021) -.pinterest.com -# @@||content-img-s.newsinc.com/jpg/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45967) -.content-img-s.newsinc.com/jpg/ -# @@||pinterest.com^$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35536) -.pinterest.com -# @@||content-img-s.newsinc.com/jpg/$image,script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|breathecast.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.com|hallels.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35482) -.content-img-s.newsinc.com/jpg/ - -#ab2p-unblock-request-Aij-Cij-when-R951 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R951} \ -} -# @@||b.inbox.lv^$image,script,domain=b.inbox.lv (advblock.txt: 7275) -.b.inbox.lv - -#ab2p-unblock-request-Aij-Cij-when-R953 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R953} \ -} -# @@||bubblesmedia.ru^$image,script,domain=baibako.tv (advblock.txt: 7284) -.bubblesmedia.ru - -#ab2p-unblock-request-Aij-Cij-when-R976 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R976} \ -} -# @@||wl188bet.eacdn.com/wl188bet/affimages/$image,script,domain=betyper.com (easylistchina+easylist.txt: 61149) -.wl188bet.eacdn.com/wl188bet/affimages/ -# @@||wl188bet.eacdn.com/wl188bet/affimages/$image,script,domain=betyper.com (easylist.txt: 50664) -.wl188bet.eacdn.com/wl188bet/affimages/ - -#ab2p-unblock-request-Aij-Cij-when-R1879t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1879t} \ -} -# @@.info^$image,script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59893) -/.*\.info[^\w%.-] -.*.info -# @@.info^$image,script,third-party,domain=cbs.com (easylist.txt: 49408) -/.*\.info[^\w%.-] -.*.info - -#ab2p-unblock-request-Aij-Cij-when-R1880t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1880t} \ -} -# @@||pressdns.com/wp-content/$image,script,third-party,domain=conservativeintel.com (easylistchina+easylist.txt: 46030) -.pressdns.com/wp-content/ -# @@||conservativeintelcom.c.presscdn.com^$image,script,third-party,domain=conservativeintel.com (easylistchina+easylist.txt: 45965) -.conservativeintelcom.c.presscdn.com -# @@||pressdns.com/wp-content/$image,script,third-party,domain=conservativeintel.com (easylist.txt: 35545) -.pressdns.com/wp-content/ -# @@||conservativeintelcom.c.presscdn.com^$image,script,third-party,domain=conservativeintel.com (easylist.txt: 35480) -.conservativeintelcom.c.presscdn.com - -#ab2p-unblock-request-Aij-Cij-when-R1068 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1068} \ -} -# @@||adfox.ru^$image,popup,script,domain=ctc.ru|mts.ru|ozon.ru|tnt-online.ru|videomore.ru (advblock.txt: 7225) -.adfox.ru - -#ab2p-unblock-request-Aij-Cij-when-R1075 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1075} \ -} -# @@||doubleclick.net^*;sz=*;ord=$image,script,domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 61006) -.doubleclick.net/.*;sz=.*;ord= -# @@||doubleclick.net^*;sz=*;ord=$image,script,domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50521) -.doubleclick.net/.*;sz=.*;ord= - -#ab2p-unblock-request-Aij-Cij-when-R1128 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1128} \ -} -# @@||topadvert.ru^$image,script,domain=dxdigitals.info (advblock.txt: 7411) -.topadvert.ru - -#ab2p-unblock-request-Aij-Cij-when-R1163 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1163} \ -} -# @@||adwolf.ru^$image,script,domain=europaplus.ru|retrofm.ru (advblock.txt: 7255) -.adwolf.ru - -#ab2p-unblock-request-Aij-Cij-when-R1349 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1349} \ -} -# @@|http:$image,script,domain=jjcast.com (easylistchina+easylist.txt: 10068) - -#ab2p-unblock-request-Aij-Cij-when-R1353 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1353} \ -} -# @@||ads1.atpclick.com/atpClick.aspx?$image,script,domain=jobnet.co.il|jobs-israel.com (easylistchina+easylist.txt: 58279) -.ads1.atpclick.com/atpClick\.aspx\? -# @@||ads1.atpclick.com/atpClick.aspx?$image,script,domain=jobnet.co.il|jobs-israel.com (easylist.txt: 47794) -.ads1.atpclick.com/atpClick\.aspx\? - -#ab2p-unblock-request-Aij-Cij-when-R306 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R306} \ -} -# @@||rubiconproject.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60708) -.rubiconproject.com -# @@||madadsmedia.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60483) -.madadsmedia.com -# @@||epicgameads.com^$image,script,domain=kissanime.com (easylistchina+easylist.txt: 60252) -.epicgameads.com -# @@||rubiconproject.com^$image,script,domain=kissanime.com (easylist.txt: 50223) -.rubiconproject.com -# @@||madadsmedia.com^$image,script,domain=kissanime.com (easylist.txt: 49998) -.madadsmedia.com -# @@||epicgameads.com^$image,script,domain=kissanime.com (easylist.txt: 49767) -.epicgameads.com - -#ab2p-unblock-request-Aij-Cij-when-R1517 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1517} \ -} -# @@/openload.co^$image,script,domain=openload.co (easylistchina+easylist.txt: 59929) -/(.*/)?openload\.co[^\w%.-] -openload.co -# @@/openload.co^$image,script,domain=openload.co (easylist.txt: 49444) -/(.*/)?openload\.co[^\w%.-] -openload.co - -#ab2p-unblock-request-Aij-Cij-when-R379 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R379} \ -} -# @@||pbsrc.com^$image,script,domain=photobucket.com (easylistchina+easylist.txt: 45893) -.pbsrc.com -# @@||aviary.com^$image,script,domain=photobucket.com (easylistchina+easylist.txt: 45891) -.aviary.com -# @@||pbsrc.com^$image,script,domain=photobucket.com (easylist.txt: 35408) -.pbsrc.com -# @@||aviary.com^$image,script,domain=photobucket.com (easylist.txt: 35406) -.aviary.com - -#ab2p-unblock-request-Aij-Cij-when-R1562 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1562} \ -} -# @@||uvcdn.com^$image,script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61711) -.uvcdn.com -# @@||uvcdn.com^$image,script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 51226) -.uvcdn.com - -#ab2p-unblock-request-Aij-Cij-when-R1651 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1651} \ -} -# @@||smileonthetiles2.co.uk/openx/www/$image,script,subdocument,domain=smileonthetiles.com|smileonthetiles2.co.uk (easylistchina+easylist.txt: 59549) -.smileonthetiles2.co.uk/openx/www/ -# @@||smileonthetiles2.co.uk/openx/www/$image,script,subdocument,domain=smileonthetiles.com|smileonthetiles2.co.uk (easylist.txt: 49064) -.smileonthetiles2.co.uk/openx/www/ - -#ab2p-unblock-request-Aij-Cij-when-R1725 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1725} \ -} -# @@||cdn.intentmedia.net^$image,script,domain=travelzoo.com (easylistchina+easylist.txt: 58567) -.cdn.intentmedia.net -# @@||cdn.intentmedia.net^$image,script,domain=travelzoo.com (easylist.txt: 48082) -.cdn.intentmedia.net - -#ab2p-unblock-request-Aij-Cij-when-R1746 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R1746} \ -} -# @@||adriver.ru/images/$image,script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7235) -.adriver.ru/images/ - -#ab2p-unblock-request-Aij-Cij-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-nR} \ -} -# @@/wp-content/plugins/blockalyzer-adblock-counter/*$image,script,~third-party (easylistchina+easylist.txt: 59935) -/(.*/)?wp-content/plugins/blockalyzer-adblock-counter/.* -# @@/wp-content/plugins/blockalyzer-adblock-counter/*$image,script,~third-party (easylist.txt: 49450) -/(.*/)?wp-content/plugins/blockalyzer-adblock-counter/.* +# @@|http:$image,script,domain=jjcast.com (easylistchina.txt: 10050) #ab2p-unblock-request-Aj-Cj {-block \ @@ -375614,1214 +38018,14 @@ openload.co +server-header-tagger{ab2p-unblock-request-Cj} \ } TAG:^ab2p-unblock-request-Aj-Cj$ -# @@||phncdn.com^*/html5Uploader/$script (easylistchina+easylist.txt: 61641) -.phncdn.com/.*/html5Uploader/ -# @@||phncdn.com/zeroclipboard-$script (easylistchina+easylist.txt: 61640) -.phncdn.com/zeroclipboard- -# @@||phncdn.com/www-static/js/vtablet/video/$script (easylistchina+easylist.txt: 61639) -.phncdn.com/www-static/js/vtablet/video/ -# @@||phncdn.com/www-static/js/vtablet/template-$script (easylistchina+easylist.txt: 61638) -.phncdn.com/www-static/js/vtablet/template- -# @@||phncdn.com/www-static/js/vtablet/pcFunctions.js$script (easylistchina+easylist.txt: 61637) -.phncdn.com/www-static/js/vtablet/pcFunctions\.js -# @@||phncdn.com/www-static/js/vtablet/main.js$script (easylistchina+easylist.txt: 61636) -.phncdn.com/www-static/js/vtablet/main\.js -# @@||phncdn.com/www-static/js/vtablet/legacy.js$script (easylistchina+easylist.txt: 61635) -.phncdn.com/www-static/js/vtablet/legacy\.js -# @@||phncdn.com/www-static/js/vtablet/iscroll-lite.$script (easylistchina+easylist.txt: 61634) -.phncdn.com/www-static/js/vtablet/iscroll-lite\. -# @@||phncdn.com/www-static/js/vtablet/hammer.min.js$script (easylistchina+easylist.txt: 61633) -.phncdn.com/www-static/js/vtablet/hammer\.min\.js -# @@||phncdn.com/www-static/js/vtablet/front/$script (easylistchina+easylist.txt: 61632) -.phncdn.com/www-static/js/vtablet/front/ -# @@||phncdn.com/www-static/js/vtablet/fakeworker-$script (easylistchina+easylist.txt: 61631) -.phncdn.com/www-static/js/vtablet/fakeworker- -# @@||phncdn.com/www-static/js/vmobile/widget-$script (easylistchina+easylist.txt: 61630) -.phncdn.com/www-static/js/vmobile/widget- -# @@||phncdn.com/www-static/js/vmobile/video-search.js$script (easylistchina+easylist.txt: 61629) -.phncdn.com/www-static/js/vmobile/video-search\.js -# @@||phncdn.com/www-static/js/vmobile/utils.js$script (easylistchina+easylist.txt: 61628) -.phncdn.com/www-static/js/vmobile/utils\.js -# @@||phncdn.com/www-static/js/vmobile/stream.js$script (easylistchina+easylist.txt: 61627) -.phncdn.com/www-static/js/vmobile/stream\.js -# @@||phncdn.com/www-static/js/vmobile/stream-$script (easylistchina+easylist.txt: 61626) -.phncdn.com/www-static/js/vmobile/stream- -# @@||phncdn.com/www-static/js/vmobile/show.js$script (easylistchina+easylist.txt: 61625) -.phncdn.com/www-static/js/vmobile/show\.js -# @@||phncdn.com/www-static/js/vmobile/profile.js$script (easylistchina+easylist.txt: 61624) -.phncdn.com/www-static/js/vmobile/profile\.js -# @@||phncdn.com/www-static/js/vmobile/preHeadJs.$script (easylistchina+easylist.txt: 61623) -.phncdn.com/www-static/js/vmobile/preHeadJs\. -# @@||phncdn.com/www-static/js/vmobile/phub.js$script (easylistchina+easylist.txt: 61622) -.phncdn.com/www-static/js/vmobile/phub\.js -# @@||phncdn.com/www-static/js/vmobile/photo.js$script (easylistchina+easylist.txt: 61621) -.phncdn.com/www-static/js/vmobile/photo\.js -# @@||phncdn.com/www-static/js/vmobile/notifications.js$script (easylistchina+easylist.txt: 61620) -.phncdn.com/www-static/js/vmobile/notifications\.js -# @@||phncdn.com/www-static/js/vmobile/login.js$script (easylistchina+easylist.txt: 61619) -.phncdn.com/www-static/js/vmobile/login\.js -# @@||phncdn.com/www-static/js/vmobile/html5-canvas.js$script (easylistchina+easylist.txt: 61618) -.phncdn.com/www-static/js/vmobile/html5-canvas\.js -# @@||phncdn.com/www-static/js/vmobile/head.js$script (easylistchina+easylist.txt: 61617) -.phncdn.com/www-static/js/vmobile/head\.js -# @@||phncdn.com/www-static/js/vmobile/footer.js$script (easylistchina+easylist.txt: 61616) -.phncdn.com/www-static/js/vmobile/footer\.js -# @@||phncdn.com/www-static/js/vmobile/feed-comments.js$script (easylistchina+easylist.txt: 61615) -.phncdn.com/www-static/js/vmobile/feed-comments\.js -# @@||phncdn.com/www-static/js/vmobile/comments.js$script (easylistchina+easylist.txt: 61614) -.phncdn.com/www-static/js/vmobile/comments\.js -# @@||phncdn.com/www-static/js/vmobile/autocomplete-$script (easylistchina+easylist.txt: 61613) -.phncdn.com/www-static/js/vmobile/autocomplete- -# @@||phncdn.com/www-static/js/vmobile/application.js$script (easylistchina+easylist.txt: 61612) -.phncdn.com/www-static/js/vmobile/application\.js -# @@||phncdn.com/www-static/js/vmobile/album.js$script (easylistchina+easylist.txt: 61611) -.phncdn.com/www-static/js/vmobile/album\.js -# @@||phncdn.com/www-static/js/video-$script (easylistchina+easylist.txt: 61610) -.phncdn.com/www-static/js/video- -# @@||phncdn.com/www-static/js/tag-$script (easylistchina+easylist.txt: 61609) -.phncdn.com/www-static/js/tag- -# @@||phncdn.com/www-static/js/suggest-$script (easylistchina+easylist.txt: 61608) -.phncdn.com/www-static/js/suggest- -# @@||phncdn.com/www-static/js/signin.js$script (easylistchina+easylist.txt: 61607) -.phncdn.com/www-static/js/signin\.js -# @@||phncdn.com/www-static/js/show_image.js?$script (easylistchina+easylist.txt: 61606) -.phncdn.com/www-static/js/show_image\.js\? -# @@||phncdn.com/www-static/js/quality-$script (easylistchina+easylist.txt: 61605) -.phncdn.com/www-static/js/quality- -# @@||phncdn.com/www-static/js/promo-banner.js$script (easylistchina+easylist.txt: 61604) -.phncdn.com/www-static/js/promo-banner\.js -# @@||phncdn.com/www-static/js/profile/$script (easylistchina+easylist.txt: 61603) -.phncdn.com/www-static/js/profile/ -# @@||phncdn.com/www-static/js/premium/$script (easylistchina+easylist.txt: 61602) -.phncdn.com/www-static/js/premium/ -# @@||phncdn.com/www-static/js/pornstars.js?$script (easylistchina+easylist.txt: 61601) -.phncdn.com/www-static/js/pornstars\.js\? -# @@||phncdn.com/www-static/js/playlist/$script (easylistchina+easylist.txt: 61600) -.phncdn.com/www-static/js/playlist/ -# @@||phncdn.com/www-static/js/phub.$script (easylistchina+easylist.txt: 61599) -.phncdn.com/www-static/js/phub\. -# @@||phncdn.com/www-static/js/ph-networkbar.js$script (easylistchina+easylist.txt: 61598) -.phncdn.com/www-static/js/ph-networkbar\.js -# @@||phncdn.com/www-static/js/ph-footer.js$script (easylistchina+easylist.txt: 61597) -.phncdn.com/www-static/js/ph-footer\.js -# @@||phncdn.com/www-static/js/mg_flipbook-$script (easylistchina+easylist.txt: 61596) -.phncdn.com/www-static/js/mg_flipbook- -# @@||phncdn.com/www-static/js/mg-utils.js$script (easylistchina+easylist.txt: 61595) -.phncdn.com/www-static/js/mg-utils\.js -# @@||phncdn.com/www-static/js/mg-modal.js$script (easylistchina+easylist.txt: 61594) -.phncdn.com/www-static/js/mg-modal\.js -# @@||phncdn.com/www-static/js/lib/$script (easylistchina+easylist.txt: 61593) -.phncdn.com/www-static/js/lib/ -# @@||phncdn.com/www-static/js/html5Player/$script (easylistchina+easylist.txt: 61592) -.phncdn.com/www-static/js/html5Player/ -# @@||phncdn.com/www-static/js/header.js$script (easylistchina+easylist.txt: 61591) -.phncdn.com/www-static/js/header\.js -# @@||phncdn.com/www-static/js/header-menu.js?$script (easylistchina+easylist.txt: 61590) -.phncdn.com/www-static/js/header-menu\.js\? -# @@||phncdn.com/www-static/js/gif-$script (easylistchina+easylist.txt: 61589) -.phncdn.com/www-static/js/gif- -# @@||phncdn.com/www-static/js/front-login.js$script (easylistchina+easylist.txt: 61588) -.phncdn.com/www-static/js/front-login\.js -# @@||phncdn.com/www-static/js/front-index.js?$script (easylistchina+easylist.txt: 61587) -.phncdn.com/www-static/js/front-index\.js\? -# @@||phncdn.com/www-static/js/footer.js$script (easylistchina+easylist.txt: 61586) -.phncdn.com/www-static/js/footer\.js -# @@||phncdn.com/www-static/js/create-account.js?$script (easylistchina+easylist.txt: 61585) -.phncdn.com/www-static/js/create-account\.js\? -# @@||phncdn.com/www-static/*/widgets-$script (easylistchina+easylist.txt: 61584) -.phncdn.com/www-static/.*/widgets- -# @@||phncdn.com/www-static/*/jquery.$script (easylistchina+easylist.txt: 61583) -.phncdn.com/www-static/.*/jquery\. -# @@||phncdn.com/www-static/*/gif-view.js$script (easylistchina+easylist.txt: 61582) -.phncdn.com/www-static/.*/gif-view\.js -# @@||phncdn.com/www-static/*/gif-view-functions.js$script (easylistchina+easylist.txt: 61581) -.phncdn.com/www-static/.*/gif-view-functions\.js -# @@||phncdn.com/www-static/*/autocomplete.$script (easylistchina+easylist.txt: 61580) -.phncdn.com/www-static/.*/autocomplete\. -# @@||phncdn.com/underscore-$script (easylistchina+easylist.txt: 61579) -.phncdn.com/underscore- -# @@||phncdn.com/tubes-$script (easylistchina+easylist.txt: 61578) -.phncdn.com/tubes- -# @@||phncdn.com/timings-$script (easylistchina+easylist.txt: 61577) -.phncdn.com/timings- -# @@||phncdn.com/swfobject-$script (easylistchina+easylist.txt: 61576) -.phncdn.com/swfobject- -# @@||phncdn.com/pagespeed.js$script (easylistchina+easylist.txt: 61575) -.phncdn.com/pagespeed\.js -# @@||phncdn.com/networkbar-$script (easylistchina+easylist.txt: 61574) -.phncdn.com/networkbar- -# @@||phncdn.com/modernizr-$script (easylistchina+easylist.txt: 61573) -.phncdn.com/modernizr- -# @@||phncdn.com/js/xp_bubble/$script (easylistchina+easylist.txt: 61572) -.phncdn.com/js/xp_bubble/ -# @@||phncdn.com/js/votingSystem/$script (easylistchina+easylist.txt: 61571) -.phncdn.com/js/votingSystem/ -# @@||phncdn.com/js/videos_setUp-min.js?$script (easylistchina+easylist.txt: 61570) -.phncdn.com/js/videos_setUp-min\.js\? -# @@||phncdn.com/js/videoPlayer/$script (easylistchina+easylist.txt: 61569) -.phncdn.com/js/videoPlayer/ -# @@||phncdn.com/js/videoDetection.js?$script (easylistchina+easylist.txt: 61568) -.phncdn.com/js/videoDetection\.js\? -# @@||phncdn.com/js/video_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61567) -.phncdn.com/js/video_setUp_tablet-min\.js -# @@||phncdn.com/js/video_setUp-min.js$script (easylistchina+easylist.txt: 61566) -.phncdn.com/js/video_setUp-min\.js -# @@||phncdn.com/js/userVideos_setUp-min.js?$script (easylistchina+easylist.txt: 61565) -.phncdn.com/js/userVideos_setUp-min\.js\? -# @@||phncdn.com/js/userSettings_setUp-min.js?$script (easylistchina+easylist.txt: 61564) -.phncdn.com/js/userSettings_setUp-min\.js\? -# @@||phncdn.com/js/userMiniProfile/$script (easylistchina+easylist.txt: 61563) -.phncdn.com/js/userMiniProfile/ -# @@||phncdn.com/js/userInc-min.js$script (easylistchina+easylist.txt: 61562) -.phncdn.com/js/userInc-min\.js -# @@||phncdn.com/js/userFollowing_setUp-min.js?$script (easylistchina+easylist.txt: 61561) -.phncdn.com/js/userFollowing_setUp-min\.js\? -# @@||phncdn.com/js/userFollowers_setUp-min.js?$script (easylistchina+easylist.txt: 61560) -.phncdn.com/js/userFollowers_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites_setUp-min.js?$script (easylistchina+easylist.txt: 61559) -.phncdn.com/js/userFavorites_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites-$script (easylistchina+easylist.txt: 61558) -.phncdn.com/js/userFavorites- -# @@||phncdn.com/js/userDashboard_setUp-min.js?$script (easylistchina+easylist.txt: 61557) -.phncdn.com/js/userDashboard_setUp-min\.js\? -# @@||phncdn.com/js/userComments_setUp-min.js?$script (easylistchina+easylist.txt: 61556) -.phncdn.com/js/userComments_setUp-min\.js\? -# @@||phncdn.com/js/userComments-min.js$script (easylistchina+easylist.txt: 61555) -.phncdn.com/js/userComments-min\.js -# @@||phncdn.com/js/userAchievements_setUp-min.js?$script (easylistchina+easylist.txt: 61554) -.phncdn.com/js/userAchievements_setUp-min\.js\? -# @@||phncdn.com/js/user_post_comment_form/$script (easylistchina+easylist.txt: 61553) -.phncdn.com/js/user_post_comment_form/ -# @@||phncdn.com/js/user_favorites/$script (easylistchina+easylist.txt: 61552) -.phncdn.com/js/user_favorites/ -# @@||phncdn.com/js/user_dashboard/$script (easylistchina+easylist.txt: 61551) -.phncdn.com/js/user_dashboard/ -# @@||phncdn.com/js/user_comments/$script (easylistchina+easylist.txt: 61550) -.phncdn.com/js/user_comments/ -# @@||phncdn.com/js/uploaded_video_thumbnail_select/$script (easylistchina+easylist.txt: 61549) -.phncdn.com/js/uploaded_video_thumbnail_select/ -# @@||phncdn.com/js/underPlayer/$script (easylistchina+easylist.txt: 61548) -.phncdn.com/js/underPlayer/ -# @@||phncdn.com/js/translatorWatchPageController-min.js$script (easylistchina+easylist.txt: 61547) -.phncdn.com/js/translatorWatchPageController-min\.js -# @@||phncdn.com/js/translator/$script (easylistchina+easylist.txt: 61546) -.phncdn.com/js/translator/ -# @@||phncdn.com/js/translator-min.js$script (easylistchina+easylist.txt: 61545) -.phncdn.com/js/translator-min\.js -# @@||phncdn.com/js/tagStar/$script (easylistchina+easylist.txt: 61544) -.phncdn.com/js/tagStar/ -# @@||phncdn.com/js/site-main.$script (easylistchina+easylist.txt: 61543) -.phncdn.com/js/site-main\. -# @@||phncdn.com/js/signin-min.js$script (easylistchina+easylist.txt: 61542) -.phncdn.com/js/signin-min\.js -# @@||phncdn.com/js/showMenu/$script (easylistchina+easylist.txt: 61541) -.phncdn.com/js/showMenu/ -# @@||phncdn.com/js/share_video_block/$script (easylistchina+easylist.txt: 61540) -.phncdn.com/js/share_video_block/ -# @@||phncdn.com/js/segment_changer/$script (easylistchina+easylist.txt: 61539) -.phncdn.com/js/segment_changer/ -# @@||phncdn.com/js/searchbar_show/$script (easylistchina+easylist.txt: 61538) -.phncdn.com/js/searchbar_show/ -# @@||phncdn.com/js/searchbar/$script (easylistchina+easylist.txt: 61537) -.phncdn.com/js/searchbar/ -# @@||phncdn.com/js/search_setUp-min.js$script (easylistchina+easylist.txt: 61536) -.phncdn.com/js/search_setUp-min\.js -# @@||phncdn.com/js/report_video_form/$script (easylistchina+easylist.txt: 61535) -.phncdn.com/js/report_video_form/ -# @@||phncdn.com/js/relatedVideos/$script (easylistchina+easylist.txt: 61534) -.phncdn.com/js/relatedVideos/ -# @@||phncdn.com/js/popUnder/exclusions-min.js$script (easylistchina+easylist.txt: 61533) -.phncdn.com/js/popUnder/exclusions-min\.js -# @@||phncdn.com/js/ourfriends-min.js$script (easylistchina+easylist.txt: 61532) -.phncdn.com/js/ourfriends-min\.js -# @@||phncdn.com/js/nextBtn/$script (easylistchina+easylist.txt: 61531) -.phncdn.com/js/nextBtn/ -# @@||phncdn.com/js/needLogin/$script (easylistchina+easylist.txt: 61530) -.phncdn.com/js/needLogin/ -# @@||phncdn.com/js/mg_modal/$script (easylistchina+easylist.txt: 61529) -.phncdn.com/js/mg_modal/ -# @@||phncdn.com/js/menu_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61528) -.phncdn.com/js/menu_setUp_tablet-min\.js -# @@||phncdn.com/js/m_tubes/MG_autocomplete.js$script (easylistchina+easylist.txt: 61527) -.phncdn.com/js/m_tubes/MG_autocomplete\.js -# @@||phncdn.com/js/login_form/$script (easylistchina+easylist.txt: 61526) -.phncdn.com/js/login_form/ -# @@||phncdn.com/js/libs/ProfileCommentsAction-min.js$script (easylistchina+easylist.txt: 61525) -.phncdn.com/js/libs/ProfileCommentsAction-min\.js -# @@||phncdn.com/js/levelUp/$script (easylistchina+easylist.txt: 61524) -.phncdn.com/js/levelUp/ -# @@||phncdn.com/js/language_$script (easylistchina+easylist.txt: 61523) -.phncdn.com/js/language_ -# @@||phncdn.com/js/karmaInfo/$script (easylistchina+easylist.txt: 61522) -.phncdn.com/js/karmaInfo/ -# @@||phncdn.com/js/jquery.$script (easylistchina+easylist.txt: 61521) -.phncdn.com/js/jquery\. -# @@||phncdn.com/js/jqbrowser-compressed.js$script (easylistchina+easylist.txt: 61520) -.phncdn.com/js/jqbrowser-compressed\.js -# @@||phncdn.com/js/is_online/$script (easylistchina+easylist.txt: 61519) -.phncdn.com/js/is_online/ -# @@||phncdn.com/js/ipad/$script (easylistchina+easylist.txt: 61518) -.phncdn.com/js/ipad/ -# @@||phncdn.com/js/infinite.$script (easylistchina+easylist.txt: 61517) -.phncdn.com/js/infinite\. -# @@||phncdn.com/js/html5player.js?$script (easylistchina+easylist.txt: 61516) -.phncdn.com/js/html5player\.js\? -# @@||phncdn.com/js/home_setUp_tablet-min.js$script (easylistchina+easylist.txt: 61515) -.phncdn.com/js/home_setUp_tablet-min\.js -# @@||phncdn.com/js/home_setUp-min.js$script (easylistchina+easylist.txt: 61514) -.phncdn.com/js/home_setUp-min\.js -# @@||phncdn.com/js/general_tablet-min.js$script (easylistchina+easylist.txt: 61513) -.phncdn.com/js/general_tablet-min\.js -# @@||phncdn.com/js/general-min.js$script (easylistchina+easylist.txt: 61512) -.phncdn.com/js/general-min\.js -# @@||phncdn.com/js/follow_button/$script (easylistchina+easylist.txt: 61511) -.phncdn.com/js/follow_button/ -# @@||phncdn.com/js/flipbook/$script (easylistchina+easylist.txt: 61510) -.phncdn.com/js/flipbook/ -# @@||phncdn.com/js/filters_menu/$script (easylistchina+easylist.txt: 61509) -.phncdn.com/js/filters_menu/ -# @@||phncdn.com/js/fav_like_user_feed/$script (easylistchina+easylist.txt: 61508) -.phncdn.com/js/fav_like_user_feed/ -# @@||phncdn.com/js/et.ready.$script (easylistchina+easylist.txt: 61507) -.phncdn.com/js/et\.ready\. -# @@||phncdn.com/js/editUserDropDown/$script (easylistchina+easylist.txt: 61506) -.phncdn.com/js/editUserDropDown/ -# @@||phncdn.com/js/deleteVideo/$script (easylistchina+easylist.txt: 61505) -.phncdn.com/js/deleteVideo/ -# @@||phncdn.com/js/deleteComment/$script (easylistchina+easylist.txt: 61504) -.phncdn.com/js/deleteComment/ -# @@||phncdn.com/js/cover_tutorial/$script (easylistchina+easylist.txt: 61503) -.phncdn.com/js/cover_tutorial/ -# @@||phncdn.com/js/common_jq-min.js$script (easylistchina+easylist.txt: 61502) -.phncdn.com/js/common_jq-min\.js -# @@||phncdn.com/js/comments/$script (easylistchina+easylist.txt: 61501) -.phncdn.com/js/comments/ -# @@||phncdn.com/js/categorylist_setUp-min.js?$script (easylistchina+easylist.txt: 61500) -.phncdn.com/js/categorylist_setUp-min\.js\? -# @@||phncdn.com/js/carousellite.$script (easylistchina+easylist.txt: 61499) -.phncdn.com/js/carousellite\. -# @@||phncdn.com/js/browser-$script (easylistchina+easylist.txt: 61498) -.phncdn.com/js/browser- -# @@||phncdn.com/js/badgeSelector/$script (easylistchina+easylist.txt: 61497) -.phncdn.com/js/badgeSelector/ -# @@||phncdn.com/js/avatar_$script (easylistchina+easylist.txt: 61496) -.phncdn.com/js/avatar_ -# @@||phncdn.com/js/ad_form_header/ad_form_header-min.js?$script (easylistchina+easylist.txt: 61495) -.phncdn.com/js/ad_form_header/ad_form_header-min\.js\? -# @@||phncdn.com/js/achievement-$script (easylistchina+easylist.txt: 61494) -.phncdn.com/js/achievement- -# @@||phncdn.com/js/*_disclaimer/*_disclaimer_controller-min.js?$script (easylistchina+easylist.txt: 61493) -.phncdn.com/js/.*_disclaimer/.*_disclaimer_controller-min\.js\? -# @@||phncdn.com/js/*_disclaimer/*_disclaimer-min.js?$script (easylistchina+easylist.txt: 61492) -.phncdn.com/js/.*_disclaimer/.*_disclaimer-min\.js\? -# @@||phncdn.com/jquery/$script (easylistchina+easylist.txt: 61491) -.phncdn.com/jquery/ -# @@||phncdn.com/jquery-$script (easylistchina+easylist.txt: 61490) -.phncdn.com/jquery- -# @@||phncdn.com/html5shiv-$script (easylistchina+easylist.txt: 61489) -.phncdn.com/html5shiv- -# @@||phncdn.com/html5player/$script (easylistchina+easylist.txt: 61488) -.phncdn.com/html5player/ -# @@||phncdn.com/head/$script (easylistchina+easylist.txt: 61487) -.phncdn.com/head/ -# @@||phncdn.com/cb/bundles/$script (easylistchina+easylist.txt: 61486) -.phncdn.com/cb/bundles/ -# @@||phncdn.com/cb/assets/$script (easylistchina+easylist.txt: 61485) -.phncdn.com/cb/assets/ -# @@||graphics.pop6.com/javascript/live_cd/$script (easylistchina+easylist.txt: 61441) -.graphics.pop6.com/javascript/live_cd/ -# @@||graphics.pop6.com/javascript/live/$script (easylistchina+easylist.txt: 61440) -.graphics.pop6.com/javascript/live/ -# @@||eskimotube.com/advertisements.php?$script (easylistchina+easylist.txt: 61436) -.eskimotube.com/advertisements\.php\? -# @@||russia-direct.org/custom_ajax/widget?*=300x250&$script (easylistchina+easylist.txt: 61367) -.russia-direct.org/custom_ajax/widget\?.*=300x250& -# @@||ajax.googleapis.com/ajax/services/search/news?*-728x90&$script (easylistchina+easylist.txt: 61306) -.ajax.googleapis.com/ajax/services/search/news\?.*-728x90& -# @@||vedomosti.ru/assets/vendors/adriver.media-$script (easylistchina+easylist.txt: 61142) -.vedomosti.ru/assets/vendors/adriver\.media- -# @@||start.no/advertpro/servlet/view/text/html/zone?zid=$script (easylistchina+easylist.txt: 61122) -.start.no/advertpro/servlet/view/text/html/zone\?zid= -# @@||prohardver.hu/js/common/forms_$script (easylistchina+easylist.txt: 61088) -.prohardver.hu/js/common/forms_ -# @@||player.terra.com^*&adunit=$script (easylistchina+easylist.txt: 61085) -.player.terra.com/.*&adunit= -# @@||oas.dn.se/adstream_mjx.ads/dn.se/nyheter/ettan/*@$script (easylistchina+easylist.txt: 61077) -.oas.dn.se/adstream_mjx\.ads/dn\.se/nyheter/ettan/.*@ -# @@||laredoute.*/scripts/combinejs.ashx?*/affiliation/$script (easylistchina+easylist.txt: 61056) -.laredoute.*./(.*/)?scripts/combinejs\.ashx\?.*/affiliation/ -# @@||isanook.com/vi/0/js/ads-$script (easylistchina+easylist.txt: 61046) -.isanook.com/vi/0/js/ads- -# @@||doladowania.pl/pp/$script (easylistchina+easylist.txt: 61004) -.doladowania.pl/pp/ -# @@||amarillas.cl/js/advertise/$script (easylistchina+easylist.txt: 60974) -.amarillas.cl/js/advertise/ -# @@||adpriv.nikkei.com/bservers/AAMALL/*/acc_random=$script (easylistchina+easylist.txt: 60941) -.adpriv.nikkei.com/bservers/AAMALL/.*/acc_random= -# @@||writing.com^$script (easylistchina+easylist.txt: 60904) -.writing.com -# @@||wholecloud.net/banner.php?$script (easylistchina+easylist.txt: 60895) -.wholecloud.net/banner\.php\? -# @@||vodu.ch^$script (easylistchina+easylist.txt: 60881) -.vodu.ch -# @@||viki.com/*.js$script (easylistchina+easylist.txt: 60876) -.viki.com/.*\.js -# @@||vidup.me/js/$script (easylistchina+easylist.txt: 60874) -.vidup.me/js/ -# @@||videoweed.es/banner.php?$script (easylistchina+easylist.txt: 60873) -.videoweed.es/banner\.php\? -# @@||videomega.tv^$script (easylistchina+easylist.txt: 60869) -.videomega.tv -# @@||urbeez.com/adver$script (easylistchina+easylist.txt: 60845) -.urbeez.com/adver -# @@||uploadlw.com/getbanner.cfm?$script (easylistchina+easylist.txt: 60841) -.uploadlw.com/getbanner\.cfm\? -# @@||turkdown.com^$script (easylistchina+easylist.txt: 60821) -.turkdown.com -# @@||thesilverforum.com/public/js/jsLoader.js?adType=$script (easylistchina+easylist.txt: 60797) -.thesilverforum.com/public/js/jsLoader\.js\?adType= -# @@||srnet.eu^$script (easylistchina+easylist.txt: 60763) -.srnet.eu -# @@||speedpremium.info^$script (easylistchina+easylist.txt: 60760) -.speedpremium.info -# @@||spaste.com^$script (easylistchina+easylist.txt: 60759) -.spaste.com -# @@||sockshare.com/js/$script (easylistchina+easylist.txt: 60752) -.sockshare.com/js/ -# @@||series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/$script (easylistchina+easylist.txt: 60732) -.series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/ -# @@||seekingalpha.com^$script (easylistchina+easylist.txt: 60730) -.seekingalpha.com -# @@||sankakustatic.com^$script (easylistchina+easylist.txt: 60714) -.sankakustatic.com -# @@||sankakucomplex.com^$script (easylistchina+easylist.txt: 60713) -.sankakucomplex.com -# @@||rapid8.com^$script (easylistchina+easylist.txt: 60688) -.rapid8.com -# @@||psarips.com^$script (easylistchina+easylist.txt: 60674) -.psarips.com -# @@||openx.gamereactor.dk/multi.php?$script (easylistchina+easylist.txt: 60612) -.openx.gamereactor.dk/multi\.php\? -# @@||onvasortir.com/advert$script (easylistchina+easylist.txt: 60602) -.onvasortir.com/advert -# @@||nowvideo.to/banner.php?$script (easylistchina+easylist.txt: 60590) -.nowvideo.to/banner\.php\? -# @@||nowvideo.sx/banner.php?$script (easylistchina+easylist.txt: 60589) -.nowvideo.sx/banner\.php\? -# @@||nowvideo.li/banner.php?$script (easylistchina+easylist.txt: 60588) -.nowvideo.li/banner\.php\? -# @@||nowdownload.to/banner.php?$script (easylistchina+easylist.txt: 60587) -.nowdownload.to/banner\.php\? -# @@||novamov.com/banner.php?$script (easylistchina+easylist.txt: 60586) -.novamov.com/banner\.php\? -# @@||next-episode.net^$script (easylistchina+easylist.txt: 60576) -.next-episode.net -# @@||moje-dzialdowo.pl/delivery/ajs.php?zoneid=$script (easylistchina+easylist.txt: 60534) -.moje-dzialdowo.pl/delivery/ajs\.php\?zoneid= -# @@||layer13.net^$elemhide,script (easylistchina+easylist.txt: 60456) -.layer13.net -# @@||kenkenpuzzle.com/assets/ads-$script (easylistchina+easylist.txt: 60445) -.kenkenpuzzle.com/assets/ads- -# @@||ifirstrow.eu^$script (easylistchina+easylist.txt: 60395) -.ifirstrow.eu -# @@||hardware.no^$script (easylistchina+easylist.txt: 60374) -.hardware.no -# @@||games.washingtonpost.com/Scripts/$script (easylistchina+easylist.txt: 60341) -.games.washingtonpost.com/Scripts/ -# @@||gamecopyworld.eu/games/$script (easylistchina+easylist.txt: 60335) -.gamecopyworld.eu/games/ -# @@||gamecopyworld.com/games/$script (easylistchina+easylist.txt: 60334) -.gamecopyworld.com/games/ -# @@||freebitco.in^$script (easylistchina+easylist.txt: 60305) -.freebitco.in -# @@||firstrow*.eu^$script (easylistchina+easylist.txt: 60292) -.firstrow*./.*\.eu[^\w%.-] -.firstrow*.eu -# @@||filmweb.pl/adbanner/$script (easylistchina+easylist.txt: 60289) -.filmweb.pl/adbanner/ -# @@||exrapidleech.info^$elemhide,script (easylistchina+easylist.txt: 60267) -.exrapidleech.info -# @@||eventhubs.com^*.$script (easylistchina+easylist.txt: 60261) -.eventhubs.com/.*\. -# @@||eosads.com/adver$script (easylistchina+easylist.txt: 60250) -.eosads.com/adver -# @@||doodle.com/builtstatic/*/doodle/js/$script (easylistchina+easylist.txt: 60227) -.doodle.com/builtstatic/.*/doodle/js/ -# @@||d2anfhdgjxf8s1.cloudfront.net/ajs.php?adserver=$script (easylistchina+easylist.txt: 60194) -.d2anfhdgjxf8s1.cloudfront.net/ajs\.php\?adserver= -# @@||crazygallery.info/ads/$script (easylistchina+easylist.txt: 60190) -.crazygallery.info/ads/ -# @@||cloudtime.to/banner.php?$script (easylistchina+easylist.txt: 60168) -.cloudtime.to/banner\.php\? -# @@||cdnco.us^$script (easylistchina+easylist.txt: 60144) -.cdnco.us -# @@||btava.com^$script (easylistchina+easylist.txt: 60125) -.btava.com -# @@||beemp3s.org/adreactor/$script (easylistchina+easylist.txt: 60100) -.beemp3s.org/adreactor/ -# @@||avforums.com/*ad$script (easylistchina+easylist.txt: 60092) -.avforums.com/.*ad -# @@||animecrave.com/_content/$script (easylistchina+easylist.txt: 60063) -.animecrave.com/_content/ -# @@||amazonaws.com/ssbss.ss/$script (easylistchina+easylist.txt: 60055) -.amazonaws.com/ssbss\.ss/ -# @@||amazonaws.com/atzuma/ajs.php?adserver=$script (easylistchina+easylist.txt: 60054) -.amazonaws.com/atzuma/ajs\.php\?adserver= -# @@||afdah.tv^$script (easylistchina+easylist.txt: 60038) -.afdah.tv -# @@||afdah.com^$script (easylistchina+easylist.txt: 60037) -.afdah.com -# @@||afdah.co^$script (easylistchina+easylist.txt: 60036) -.afdah.co -# @@||ads.clubedohardware.com.br/www/delivery/$script (easylistchina+easylist.txt: 60010) -.ads.clubedohardware.com.br/www/delivery/ -# @@||ad.filmweb.pl^$script (easylistchina+easylist.txt: 59982) -.ad.filmweb.pl -# @@||tm.tradetracker.net/tag?$script (easylistchina+easylist.txt: 59669) -.tm.tradetracker.net/tag\? -# @@||tinbuadserv.com/v3/serve.php?$script (easylistchina+easylist.txt: 59666) -.tinbuadserv.com/v3/serve\.php\? -# @@||syn.5min.com/handlers/SenseHandler.ashx?*&adUnit=$script (easylistchina+easylist.txt: 59612) -.syn.5min.com/handlers/SenseHandler\.ashx\?.*&adUnit= -# @@||static.ak.fbcdn.net^*/ads/$script (easylistchina+easylist.txt: 59589) -.static.ak.fbcdn.net/.*/ads/ -# @@||ssl-images-amazon.com^*/popover/popover-$script (easylistchina+easylist.txt: 59583) -.ssl-images-amazon.com/.*/popover/popover- -# @@||sales.liveperson.net/visitor/addons/deploy2.asp?*&d_id=adcenter&$script (easylistchina+easylist.txt: 59486) -.sales.liveperson.net/visitor/addons/deploy2\.asp\?.*&d_id=adcenter& -# @@||redsharknews.com/components/com_adagency/includes/$script (easylistchina+easylist.txt: 59450) -.redsharknews.com/components/com_adagency/includes/ -# @@||pumpkinpatchkids.com/www/delivery/ajs.php?$script (easylistchina+easylist.txt: 59422) -.pumpkinpatchkids.com/www/delivery/ajs\.php\? -# @@||pshared.5min.com/Scripts/ThumbSeed2.js?*&adUnit=$script (easylistchina+easylist.txt: 59418) -.pshared.5min.com/Scripts/ThumbSeed2\.js\?.*&adUnit= -# @@||pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad.min.js$script (easylistchina+easylist.txt: 59364) -.pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad\.min\.js -# @@||openx.nobelprize.org/openx/www/delivery/$script (easylistchina+easylist.txt: 59301) -.openx.nobelprize.org/openx/www/delivery/ -# @@||omnikool.discovery.com/realmedia/ads/adstream_mjx.ads/dsc.discovery.com/$script (easylistchina+easylist.txt: 59295) -.omnikool.discovery.com/realmedia/ads/adstream_mjx\.ads/dsc\.discovery\.com/ -# @@||oascentral.thepostgame.com/om/$script (easylistchina+easylist.txt: 59284) -.oascentral.thepostgame.com/om/ -# @@||oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx.ads$script (easylistchina+easylist.txt: 59283) -.oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx\.ads -# @@||newsweek.com/ads/adscripts/prod/*_$script (easylistchina+easylist.txt: 59239) -.newsweek.com/ads/adscripts/prod/.*_ -# @@||napaonline.com/Content/script/jquery.lazyload-ad-$script (easylistchina+easylist.txt: 59220) -.napaonline.com/Content/script/jquery\.lazyload-ad- -# @@||media.avclub.com/onion/js/videoads.js$script (easylistchina+easylist.txt: 59149) -.media.avclub.com/onion/js/videoads\.js -# @@||llnwd.net^*/js/3rdparty/swfobject$script (easylistchina+easylist.txt: 59106) -.llnwd.net/.*/js/3rdparty/swfobject -# @@||listings.brokersweb.com/JsonSearchSb.aspx?*&maxAds=$script (easylistchina+easylist.txt: 59095) -.listings.brokersweb.com/JsonSearchSb\.aspx\?.*&maxAds= -# @@||intellitxt.com/ast/js/nbcuni/$script (easylistchina+easylist.txt: 59025) -.intellitxt.com/ast/js/nbcuni/ -# @@||gws.ign.com/ws/search?*&google_adpage=$script (easylistchina+easylist.txt: 58927) -.gws.ign.com/ws/search\?.*&google_adpage= -# @@||google.*/webpagethumbnail?*&query=$script (easylistchina+easylist.txt: 58894) -.google.*./(.*/)?webpagethumbnail\?.*&query= -# @@||gactv.com^*/javascript/ad/coread/$script (easylistchina+easylist.txt: 58858) -.gactv.com/.*/javascript/ad/coread/ -# @@||fbcdn.net/rsrc.php/*-aD2.js$script (easylistchina+easylist.txt: 58815) -.fbcdn.net/rsrc\.php/.*-aD2\.js -# @@||expedia.com/js.ng/*&PLACEMENT=CXHOMECORE_$script (easylistchina+easylist.txt: 58806) -.expedia.com/js\.ng/.*&PLACEMENT=CXHOMECORE_ -# @@||eventcinemas.co.nz^*_adhub_server_$script (easylistchina+easylist.txt: 58799) -.eventcinemas.co.nz/.*_adhub_server_ -# @@||esquire.com/ams/page-ads.js?$script (easylistchina+easylist.txt: 58797) -.esquire.com/ams/page-ads\.js\? -# @@||equippers.com/absolutebm.aspx?$script (easylistchina+easylist.txt: 58790) -.equippers.com/absolutebm\.aspx\? -# @@||equippers.com/abm.aspx?$script (easylistchina+easylist.txt: 58789) -.equippers.com/abm\.aspx\? -# @@||eluxe.ca^*_doubleclick.js*.pagespeed.$script (easylistchina+easylist.txt: 58777) -.eluxe.ca/.*_doubleclick\.js.*\.pagespeed\. -# @@||ebayrtm.com/rtm?rtmcmd&a=json&cb=parent.$script (easylistchina+easylist.txt: 58763) -.ebayrtm.com/rtm\?rtmcmd&a=json&cb=parent\. -# @@||eafyfsuh.net/scripts/generated/key.js?t=$script (easylistchina+easylist.txt: 58757) -.eafyfsuh.net/scripts/generated/key\.js\?t= -# @@||dyncdn.buzznet.com/catfiles/?f=dojo/*.googleadservices.$script (easylistchina+easylist.txt: 58755) -.dyncdn.buzznet.com/catfiles/\?f=dojo/.*\.googleadservices\. -# @@||doubleclick.net^*/adj/wwe.shows/ecw_ecwreplay;*;sz=624x325;$script (easylistchina+easylist.txt: 58731) -.doubleclick.net/.*/adj/wwe\.shows/ecw_ecwreplay;.*;sz=624x325; -# @@||doubleclick.net/pfadx/umg.*;sz=10x$script (easylistchina+easylist.txt: 58727) -.doubleclick.net/pfadx/umg\..*;sz=10x -# @@||doubleclick.net/adj/pong.all/*;dcopt=ist;$script (easylistchina+easylist.txt: 58716) -.doubleclick.net/adj/pong\.all/.*;dcopt=ist; -# @@||doubleclick.net/adj/nbcu.nbc/videoplayer-$script (easylistchina+easylist.txt: 58713) -.doubleclick.net/adj/nbcu\.nbc/videoplayer- -# @@||doubleclick.net/adj/imdb2.consumer.video/*;sz=320x240,$script (easylistchina+easylist.txt: 58711) -.doubleclick.net/adj/imdb2\.consumer\.video/.*;sz=320x240, -# @@||doubleclick.net/adj/ctv.muchmusicblog.com/$script (easylistchina+easylist.txt: 58709) -.doubleclick.net/adj/ctv\.muchmusicblog\.com/ -# @@||direct.fairfax.com.au/hserver/*/site=vid.*/adtype=embedded/$script (easylistchina+easylist.txt: 58673) -.direct.fairfax.com.au/hserver/.*/site=vid\..*/adtype=embedded/ -# @@||design-essentials.net/affiliate/$script,subdocument (easylistchina+easylist.txt: 58667) -.design-essentials.net/affiliate/ -# @@||dailycaller.com/wp-content/plugins/advertisements/$script (easylistchina+easylist.txt: 58645) -.dailycaller.com/wp-content/plugins/advertisements/ -# @@||cricketcountry.com/js/ad-gallery.js$script (easylistchina+easylist.txt: 58630) -.cricketcountry.com/js/ad-gallery\.js -# @@||cosmopolitan.com/cm/shared/scripts/refreshads-$script (easylistchina+easylist.txt: 58624) -.cosmopolitan.com/cm/shared/scripts/refreshads- -# @@||content.datingfactory.com/promotools/$script (easylistchina+easylist.txt: 58619) -.content.datingfactory.com/promotools/ -# @@||computerworld.com/resources/scripts/lib/doubleclick_ads.js$script (easylistchina+easylist.txt: 58611) -.computerworld.com/resources/scripts/lib/doubleclick_ads\.js -# @@||chibis.adotube.com/appRuntime/swfobject/$script (easylistchina+easylist.txt: 58588) -.chibis.adotube.com/appRuntime/swfobject/ -# @@||brothersoft.com/gads/coop_show_download.php?soft_id=$script (easylistchina+easylist.txt: 58521) -.brothersoft.com/gads/coop_show_download\.php\?soft_id= -# @@||aolcdn.com/os_merge/?file=/aol/*.js&$script (easylistchina+easylist.txt: 58410) -.aolcdn.com/os_merge/\?file=/aol/.*\.js& -# @@||ads.forbes.com/realmedia/ads/*@videopreroll$script (easylistchina+easylist.txt: 58232) -.ads.forbes.com/realmedia/ads/.*@videopreroll -# @@||ads.cnn.com/js.ng/*&cnn_intl_subsection=download$script (easylistchina+easylist.txt: 58228) -.ads.cnn.com/js\.ng/.*&cnn_intl_subsection=download -# @@||ads.belointeractive.com/realmedia/ads/adstream_mjx.ads/www.kgw.com/video/$script (easylistchina+easylist.txt: 58224) -.ads.belointeractive.com/realmedia/ads/adstream_mjx\.ads/www\.kgw\.com/video/ -# @@||9msn.com.au^*/ads/ninemsn.ads$script (easylistchina+easylist.txt: 58137) -.9msn.com.au/.*/ads/ninemsn\.ads -# @@||ytimg.com/yts/jsbin/$script (easylistchina+easylist.txt: 46058) -.ytimg.com/yts/jsbin/ -# @@||static.cdn-ec.viddler.com^$script (easylistchina+easylist.txt: 46038) -.static.cdn-ec.viddler.com -# @@||providesupport.com^$script (easylistchina+easylist.txt: 46032) -.providesupport.com -# @@||platform.vine.co^$script (easylistchina+easylist.txt: 46023) -.platform.vine.co -# @@||lpsimage.newsinc.com/player/show/$script (easylistchina+easylist.txt: 46013) -.lpsimage.newsinc.com/player/show/ -# @@||lps.newsinc.com/player/show/$script (easylistchina+easylist.txt: 46012) -.lps.newsinc.com/player/show/ -# @@||hwcdn.net/*.js?$script (easylistchina+easylist.txt: 45999) -.hwcdn.net/.*\.js\? -# @@||gstatic.com/trustedstores/$script (easylistchina+easylist.txt: 45998) -.gstatic.com/trustedstores/ -# @@||googlecommerce.com^$script (easylistchina+easylist.txt: 45994) -.googlecommerce.com -# @@||google.com/recaptcha/$script (easylistchina+easylist.txt: 45992) -.google.com/recaptcha/ -# @@||google.com/js/th/$script (easylistchina+easylist.txt: 45990) -.google.com/js/th/ -# @@||cdn.shopify.com^$script (easylistchina+easylist.txt: 45956) -.cdn.shopify.com -# @@||exashare.com/player6/$script (easylistchina+easylist.txt: 45859) -.exashare.com/player6/ -# @@||exashare.com/js/$script (easylistchina+easylist.txt: 45858) -.exashare.com/js/ -# @@||simba.taobao.com/?name=mcad$script (easylistchina+easylist.txt: 10367) +# @@||simba.taobao.com/?name=mcad$script (easylistchina.txt: 10354) .simba.taobao.com/\?name=mcad -# @@||online.unionpay.com/ads/$script (easylistchina+easylist.txt: 10319) +# @@||online.unionpay.com/ads/$script (easylistchina.txt: 10309) .online.unionpay.com/ads/ -# @@||airenti.xyz/*/$script (easylistchina+easylist.txt: 10166) -.airenti.xyz/.*/ -# @@||airenti.co/*/$script (easylistchina+easylist.txt: 10165) -.airenti.co/.*/ -# @@||adjs.8591.com.tw^$script (easylistchina+easylist.txt: 10155) +# @@||airenti.in/*/$script (easylistchina.txt: 10149) +.airenti.in/.*/ +# @@||adjs.8591.com.tw^$script (easylistchina.txt: 10139) .adjs.8591.com.tw -# @@||videocore.tv/jscript/$script (advblock.txt: 7424) -.videocore.tv/jscript/ -# @@||ads.tomtel.ru/adjs.$script (advblock.txt: 7240) -.ads.tomtel.ru/adjs\. -# @@||phncdn.com^*/html5Uploader/$script (easylist.txt: 51156) -.phncdn.com/.*/html5Uploader/ -# @@||phncdn.com/zeroclipboard-$script (easylist.txt: 51155) -.phncdn.com/zeroclipboard- -# @@||phncdn.com/www-static/js/vtablet/video/$script (easylist.txt: 51154) -.phncdn.com/www-static/js/vtablet/video/ -# @@||phncdn.com/www-static/js/vtablet/template-$script (easylist.txt: 51153) -.phncdn.com/www-static/js/vtablet/template- -# @@||phncdn.com/www-static/js/vtablet/pcFunctions.js$script (easylist.txt: 51152) -.phncdn.com/www-static/js/vtablet/pcFunctions\.js -# @@||phncdn.com/www-static/js/vtablet/main.js$script (easylist.txt: 51151) -.phncdn.com/www-static/js/vtablet/main\.js -# @@||phncdn.com/www-static/js/vtablet/legacy.js$script (easylist.txt: 51150) -.phncdn.com/www-static/js/vtablet/legacy\.js -# @@||phncdn.com/www-static/js/vtablet/iscroll-lite.$script (easylist.txt: 51149) -.phncdn.com/www-static/js/vtablet/iscroll-lite\. -# @@||phncdn.com/www-static/js/vtablet/hammer.min.js$script (easylist.txt: 51148) -.phncdn.com/www-static/js/vtablet/hammer\.min\.js -# @@||phncdn.com/www-static/js/vtablet/front/$script (easylist.txt: 51147) -.phncdn.com/www-static/js/vtablet/front/ -# @@||phncdn.com/www-static/js/vtablet/fakeworker-$script (easylist.txt: 51146) -.phncdn.com/www-static/js/vtablet/fakeworker- -# @@||phncdn.com/www-static/js/vmobile/widget-$script (easylist.txt: 51145) -.phncdn.com/www-static/js/vmobile/widget- -# @@||phncdn.com/www-static/js/vmobile/video-search.js$script (easylist.txt: 51144) -.phncdn.com/www-static/js/vmobile/video-search\.js -# @@||phncdn.com/www-static/js/vmobile/utils.js$script (easylist.txt: 51143) -.phncdn.com/www-static/js/vmobile/utils\.js -# @@||phncdn.com/www-static/js/vmobile/stream.js$script (easylist.txt: 51142) -.phncdn.com/www-static/js/vmobile/stream\.js -# @@||phncdn.com/www-static/js/vmobile/stream-$script (easylist.txt: 51141) -.phncdn.com/www-static/js/vmobile/stream- -# @@||phncdn.com/www-static/js/vmobile/show.js$script (easylist.txt: 51140) -.phncdn.com/www-static/js/vmobile/show\.js -# @@||phncdn.com/www-static/js/vmobile/profile.js$script (easylist.txt: 51139) -.phncdn.com/www-static/js/vmobile/profile\.js -# @@||phncdn.com/www-static/js/vmobile/preHeadJs.$script (easylist.txt: 51138) -.phncdn.com/www-static/js/vmobile/preHeadJs\. -# @@||phncdn.com/www-static/js/vmobile/phub.js$script (easylist.txt: 51137) -.phncdn.com/www-static/js/vmobile/phub\.js -# @@||phncdn.com/www-static/js/vmobile/photo.js$script (easylist.txt: 51136) -.phncdn.com/www-static/js/vmobile/photo\.js -# @@||phncdn.com/www-static/js/vmobile/notifications.js$script (easylist.txt: 51135) -.phncdn.com/www-static/js/vmobile/notifications\.js -# @@||phncdn.com/www-static/js/vmobile/login.js$script (easylist.txt: 51134) -.phncdn.com/www-static/js/vmobile/login\.js -# @@||phncdn.com/www-static/js/vmobile/html5-canvas.js$script (easylist.txt: 51133) -.phncdn.com/www-static/js/vmobile/html5-canvas\.js -# @@||phncdn.com/www-static/js/vmobile/head.js$script (easylist.txt: 51132) -.phncdn.com/www-static/js/vmobile/head\.js -# @@||phncdn.com/www-static/js/vmobile/footer.js$script (easylist.txt: 51131) -.phncdn.com/www-static/js/vmobile/footer\.js -# @@||phncdn.com/www-static/js/vmobile/feed-comments.js$script (easylist.txt: 51130) -.phncdn.com/www-static/js/vmobile/feed-comments\.js -# @@||phncdn.com/www-static/js/vmobile/comments.js$script (easylist.txt: 51129) -.phncdn.com/www-static/js/vmobile/comments\.js -# @@||phncdn.com/www-static/js/vmobile/autocomplete-$script (easylist.txt: 51128) -.phncdn.com/www-static/js/vmobile/autocomplete- -# @@||phncdn.com/www-static/js/vmobile/application.js$script (easylist.txt: 51127) -.phncdn.com/www-static/js/vmobile/application\.js -# @@||phncdn.com/www-static/js/vmobile/album.js$script (easylist.txt: 51126) -.phncdn.com/www-static/js/vmobile/album\.js -# @@||phncdn.com/www-static/js/video-$script (easylist.txt: 51125) -.phncdn.com/www-static/js/video- -# @@||phncdn.com/www-static/js/tag-$script (easylist.txt: 51124) -.phncdn.com/www-static/js/tag- -# @@||phncdn.com/www-static/js/suggest-$script (easylist.txt: 51123) -.phncdn.com/www-static/js/suggest- -# @@||phncdn.com/www-static/js/signin.js$script (easylist.txt: 51122) -.phncdn.com/www-static/js/signin\.js -# @@||phncdn.com/www-static/js/show_image.js?$script (easylist.txt: 51121) -.phncdn.com/www-static/js/show_image\.js\? -# @@||phncdn.com/www-static/js/quality-$script (easylist.txt: 51120) -.phncdn.com/www-static/js/quality- -# @@||phncdn.com/www-static/js/promo-banner.js$script (easylist.txt: 51119) -.phncdn.com/www-static/js/promo-banner\.js -# @@||phncdn.com/www-static/js/profile/$script (easylist.txt: 51118) -.phncdn.com/www-static/js/profile/ -# @@||phncdn.com/www-static/js/premium/$script (easylist.txt: 51117) -.phncdn.com/www-static/js/premium/ -# @@||phncdn.com/www-static/js/pornstars.js?$script (easylist.txt: 51116) -.phncdn.com/www-static/js/pornstars\.js\? -# @@||phncdn.com/www-static/js/playlist/$script (easylist.txt: 51115) -.phncdn.com/www-static/js/playlist/ -# @@||phncdn.com/www-static/js/phub.$script (easylist.txt: 51114) -.phncdn.com/www-static/js/phub\. -# @@||phncdn.com/www-static/js/ph-networkbar.js$script (easylist.txt: 51113) -.phncdn.com/www-static/js/ph-networkbar\.js -# @@||phncdn.com/www-static/js/ph-footer.js$script (easylist.txt: 51112) -.phncdn.com/www-static/js/ph-footer\.js -# @@||phncdn.com/www-static/js/mg_flipbook-$script (easylist.txt: 51111) -.phncdn.com/www-static/js/mg_flipbook- -# @@||phncdn.com/www-static/js/mg-utils.js$script (easylist.txt: 51110) -.phncdn.com/www-static/js/mg-utils\.js -# @@||phncdn.com/www-static/js/mg-modal.js$script (easylist.txt: 51109) -.phncdn.com/www-static/js/mg-modal\.js -# @@||phncdn.com/www-static/js/lib/$script (easylist.txt: 51108) -.phncdn.com/www-static/js/lib/ -# @@||phncdn.com/www-static/js/html5Player/$script (easylist.txt: 51107) -.phncdn.com/www-static/js/html5Player/ -# @@||phncdn.com/www-static/js/header.js$script (easylist.txt: 51106) -.phncdn.com/www-static/js/header\.js -# @@||phncdn.com/www-static/js/header-menu.js?$script (easylist.txt: 51105) -.phncdn.com/www-static/js/header-menu\.js\? -# @@||phncdn.com/www-static/js/gif-$script (easylist.txt: 51104) -.phncdn.com/www-static/js/gif- -# @@||phncdn.com/www-static/js/front-login.js$script (easylist.txt: 51103) -.phncdn.com/www-static/js/front-login\.js -# @@||phncdn.com/www-static/js/front-index.js?$script (easylist.txt: 51102) -.phncdn.com/www-static/js/front-index\.js\? -# @@||phncdn.com/www-static/js/footer.js$script (easylist.txt: 51101) -.phncdn.com/www-static/js/footer\.js -# @@||phncdn.com/www-static/js/create-account.js?$script (easylist.txt: 51100) -.phncdn.com/www-static/js/create-account\.js\? -# @@||phncdn.com/www-static/*/widgets-$script (easylist.txt: 51099) -.phncdn.com/www-static/.*/widgets- -# @@||phncdn.com/www-static/*/jquery.$script (easylist.txt: 51098) -.phncdn.com/www-static/.*/jquery\. -# @@||phncdn.com/www-static/*/gif-view.js$script (easylist.txt: 51097) -.phncdn.com/www-static/.*/gif-view\.js -# @@||phncdn.com/www-static/*/gif-view-functions.js$script (easylist.txt: 51096) -.phncdn.com/www-static/.*/gif-view-functions\.js -# @@||phncdn.com/www-static/*/autocomplete.$script (easylist.txt: 51095) -.phncdn.com/www-static/.*/autocomplete\. -# @@||phncdn.com/underscore-$script (easylist.txt: 51094) -.phncdn.com/underscore- -# @@||phncdn.com/tubes-$script (easylist.txt: 51093) -.phncdn.com/tubes- -# @@||phncdn.com/timings-$script (easylist.txt: 51092) -.phncdn.com/timings- -# @@||phncdn.com/swfobject-$script (easylist.txt: 51091) -.phncdn.com/swfobject- -# @@||phncdn.com/pagespeed.js$script (easylist.txt: 51090) -.phncdn.com/pagespeed\.js -# @@||phncdn.com/networkbar-$script (easylist.txt: 51089) -.phncdn.com/networkbar- -# @@||phncdn.com/modernizr-$script (easylist.txt: 51088) -.phncdn.com/modernizr- -# @@||phncdn.com/js/xp_bubble/$script (easylist.txt: 51087) -.phncdn.com/js/xp_bubble/ -# @@||phncdn.com/js/votingSystem/$script (easylist.txt: 51086) -.phncdn.com/js/votingSystem/ -# @@||phncdn.com/js/videos_setUp-min.js?$script (easylist.txt: 51085) -.phncdn.com/js/videos_setUp-min\.js\? -# @@||phncdn.com/js/videoPlayer/$script (easylist.txt: 51084) -.phncdn.com/js/videoPlayer/ -# @@||phncdn.com/js/videoDetection.js?$script (easylist.txt: 51083) -.phncdn.com/js/videoDetection\.js\? -# @@||phncdn.com/js/video_setUp_tablet-min.js$script (easylist.txt: 51082) -.phncdn.com/js/video_setUp_tablet-min\.js -# @@||phncdn.com/js/video_setUp-min.js$script (easylist.txt: 51081) -.phncdn.com/js/video_setUp-min\.js -# @@||phncdn.com/js/userVideos_setUp-min.js?$script (easylist.txt: 51080) -.phncdn.com/js/userVideos_setUp-min\.js\? -# @@||phncdn.com/js/userSettings_setUp-min.js?$script (easylist.txt: 51079) -.phncdn.com/js/userSettings_setUp-min\.js\? -# @@||phncdn.com/js/userMiniProfile/$script (easylist.txt: 51078) -.phncdn.com/js/userMiniProfile/ -# @@||phncdn.com/js/userInc-min.js$script (easylist.txt: 51077) -.phncdn.com/js/userInc-min\.js -# @@||phncdn.com/js/userFollowing_setUp-min.js?$script (easylist.txt: 51076) -.phncdn.com/js/userFollowing_setUp-min\.js\? -# @@||phncdn.com/js/userFollowers_setUp-min.js?$script (easylist.txt: 51075) -.phncdn.com/js/userFollowers_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites_setUp-min.js?$script (easylist.txt: 51074) -.phncdn.com/js/userFavorites_setUp-min\.js\? -# @@||phncdn.com/js/userFavorites-$script (easylist.txt: 51073) -.phncdn.com/js/userFavorites- -# @@||phncdn.com/js/userDashboard_setUp-min.js?$script (easylist.txt: 51072) -.phncdn.com/js/userDashboard_setUp-min\.js\? -# @@||phncdn.com/js/userComments_setUp-min.js?$script (easylist.txt: 51071) -.phncdn.com/js/userComments_setUp-min\.js\? -# @@||phncdn.com/js/userComments-min.js$script (easylist.txt: 51070) -.phncdn.com/js/userComments-min\.js -# @@||phncdn.com/js/userAchievements_setUp-min.js?$script (easylist.txt: 51069) -.phncdn.com/js/userAchievements_setUp-min\.js\? -# @@||phncdn.com/js/user_post_comment_form/$script (easylist.txt: 51068) -.phncdn.com/js/user_post_comment_form/ -# @@||phncdn.com/js/user_favorites/$script (easylist.txt: 51067) -.phncdn.com/js/user_favorites/ -# @@||phncdn.com/js/user_dashboard/$script (easylist.txt: 51066) -.phncdn.com/js/user_dashboard/ -# @@||phncdn.com/js/user_comments/$script (easylist.txt: 51065) -.phncdn.com/js/user_comments/ -# @@||phncdn.com/js/uploaded_video_thumbnail_select/$script (easylist.txt: 51064) -.phncdn.com/js/uploaded_video_thumbnail_select/ -# @@||phncdn.com/js/underPlayer/$script (easylist.txt: 51063) -.phncdn.com/js/underPlayer/ -# @@||phncdn.com/js/translatorWatchPageController-min.js$script (easylist.txt: 51062) -.phncdn.com/js/translatorWatchPageController-min\.js -# @@||phncdn.com/js/translator/$script (easylist.txt: 51061) -.phncdn.com/js/translator/ -# @@||phncdn.com/js/translator-min.js$script (easylist.txt: 51060) -.phncdn.com/js/translator-min\.js -# @@||phncdn.com/js/tagStar/$script (easylist.txt: 51059) -.phncdn.com/js/tagStar/ -# @@||phncdn.com/js/site-main.$script (easylist.txt: 51058) -.phncdn.com/js/site-main\. -# @@||phncdn.com/js/signin-min.js$script (easylist.txt: 51057) -.phncdn.com/js/signin-min\.js -# @@||phncdn.com/js/showMenu/$script (easylist.txt: 51056) -.phncdn.com/js/showMenu/ -# @@||phncdn.com/js/share_video_block/$script (easylist.txt: 51055) -.phncdn.com/js/share_video_block/ -# @@||phncdn.com/js/segment_changer/$script (easylist.txt: 51054) -.phncdn.com/js/segment_changer/ -# @@||phncdn.com/js/searchbar_show/$script (easylist.txt: 51053) -.phncdn.com/js/searchbar_show/ -# @@||phncdn.com/js/searchbar/$script (easylist.txt: 51052) -.phncdn.com/js/searchbar/ -# @@||phncdn.com/js/search_setUp-min.js$script (easylist.txt: 51051) -.phncdn.com/js/search_setUp-min\.js -# @@||phncdn.com/js/report_video_form/$script (easylist.txt: 51050) -.phncdn.com/js/report_video_form/ -# @@||phncdn.com/js/relatedVideos/$script (easylist.txt: 51049) -.phncdn.com/js/relatedVideos/ -# @@||phncdn.com/js/popUnder/exclusions-min.js$script (easylist.txt: 51048) -.phncdn.com/js/popUnder/exclusions-min\.js -# @@||phncdn.com/js/ourfriends-min.js$script (easylist.txt: 51047) -.phncdn.com/js/ourfriends-min\.js -# @@||phncdn.com/js/nextBtn/$script (easylist.txt: 51046) -.phncdn.com/js/nextBtn/ -# @@||phncdn.com/js/needLogin/$script (easylist.txt: 51045) -.phncdn.com/js/needLogin/ -# @@||phncdn.com/js/mg_modal/$script (easylist.txt: 51044) -.phncdn.com/js/mg_modal/ -# @@||phncdn.com/js/menu_setUp_tablet-min.js$script (easylist.txt: 51043) -.phncdn.com/js/menu_setUp_tablet-min\.js -# @@||phncdn.com/js/m_tubes/MG_autocomplete.js$script (easylist.txt: 51042) -.phncdn.com/js/m_tubes/MG_autocomplete\.js -# @@||phncdn.com/js/login_form/$script (easylist.txt: 51041) -.phncdn.com/js/login_form/ -# @@||phncdn.com/js/libs/ProfileCommentsAction-min.js$script (easylist.txt: 51040) -.phncdn.com/js/libs/ProfileCommentsAction-min\.js -# @@||phncdn.com/js/levelUp/$script (easylist.txt: 51039) -.phncdn.com/js/levelUp/ -# @@||phncdn.com/js/language_$script (easylist.txt: 51038) -.phncdn.com/js/language_ -# @@||phncdn.com/js/karmaInfo/$script (easylist.txt: 51037) -.phncdn.com/js/karmaInfo/ -# @@||phncdn.com/js/jquery.$script (easylist.txt: 51036) -.phncdn.com/js/jquery\. -# @@||phncdn.com/js/jqbrowser-compressed.js$script (easylist.txt: 51035) -.phncdn.com/js/jqbrowser-compressed\.js -# @@||phncdn.com/js/is_online/$script (easylist.txt: 51034) -.phncdn.com/js/is_online/ -# @@||phncdn.com/js/ipad/$script (easylist.txt: 51033) -.phncdn.com/js/ipad/ -# @@||phncdn.com/js/infinite.$script (easylist.txt: 51032) -.phncdn.com/js/infinite\. -# @@||phncdn.com/js/html5player.js?$script (easylist.txt: 51031) -.phncdn.com/js/html5player\.js\? -# @@||phncdn.com/js/home_setUp_tablet-min.js$script (easylist.txt: 51030) -.phncdn.com/js/home_setUp_tablet-min\.js -# @@||phncdn.com/js/home_setUp-min.js$script (easylist.txt: 51029) -.phncdn.com/js/home_setUp-min\.js -# @@||phncdn.com/js/general_tablet-min.js$script (easylist.txt: 51028) -.phncdn.com/js/general_tablet-min\.js -# @@||phncdn.com/js/general-min.js$script (easylist.txt: 51027) -.phncdn.com/js/general-min\.js -# @@||phncdn.com/js/follow_button/$script (easylist.txt: 51026) -.phncdn.com/js/follow_button/ -# @@||phncdn.com/js/flipbook/$script (easylist.txt: 51025) -.phncdn.com/js/flipbook/ -# @@||phncdn.com/js/filters_menu/$script (easylist.txt: 51024) -.phncdn.com/js/filters_menu/ -# @@||phncdn.com/js/fav_like_user_feed/$script (easylist.txt: 51023) -.phncdn.com/js/fav_like_user_feed/ -# @@||phncdn.com/js/et.ready.$script (easylist.txt: 51022) -.phncdn.com/js/et\.ready\. -# @@||phncdn.com/js/editUserDropDown/$script (easylist.txt: 51021) -.phncdn.com/js/editUserDropDown/ -# @@||phncdn.com/js/deleteVideo/$script (easylist.txt: 51020) -.phncdn.com/js/deleteVideo/ -# @@||phncdn.com/js/deleteComment/$script (easylist.txt: 51019) -.phncdn.com/js/deleteComment/ -# @@||phncdn.com/js/cover_tutorial/$script (easylist.txt: 51018) -.phncdn.com/js/cover_tutorial/ -# @@||phncdn.com/js/common_jq-min.js$script (easylist.txt: 51017) -.phncdn.com/js/common_jq-min\.js -# @@||phncdn.com/js/comments/$script (easylist.txt: 51016) -.phncdn.com/js/comments/ -# @@||phncdn.com/js/categorylist_setUp-min.js?$script (easylist.txt: 51015) -.phncdn.com/js/categorylist_setUp-min\.js\? -# @@||phncdn.com/js/carousellite.$script (easylist.txt: 51014) -.phncdn.com/js/carousellite\. -# @@||phncdn.com/js/browser-$script (easylist.txt: 51013) -.phncdn.com/js/browser- -# @@||phncdn.com/js/badgeSelector/$script (easylist.txt: 51012) -.phncdn.com/js/badgeSelector/ -# @@||phncdn.com/js/avatar_$script (easylist.txt: 51011) -.phncdn.com/js/avatar_ -# @@||phncdn.com/js/ad_form_header/ad_form_header-min.js?$script (easylist.txt: 51010) -.phncdn.com/js/ad_form_header/ad_form_header-min\.js\? -# @@||phncdn.com/js/achievement-$script (easylist.txt: 51009) -.phncdn.com/js/achievement- -# @@||phncdn.com/js/*_disclaimer/*_disclaimer_controller-min.js?$script (easylist.txt: 51008) -.phncdn.com/js/.*_disclaimer/.*_disclaimer_controller-min\.js\? -# @@||phncdn.com/js/*_disclaimer/*_disclaimer-min.js?$script (easylist.txt: 51007) -.phncdn.com/js/.*_disclaimer/.*_disclaimer-min\.js\? -# @@||phncdn.com/jquery/$script (easylist.txt: 51006) -.phncdn.com/jquery/ -# @@||phncdn.com/jquery-$script (easylist.txt: 51005) -.phncdn.com/jquery- -# @@||phncdn.com/html5shiv-$script (easylist.txt: 51004) -.phncdn.com/html5shiv- -# @@||phncdn.com/html5player/$script (easylist.txt: 51003) -.phncdn.com/html5player/ -# @@||phncdn.com/head/$script (easylist.txt: 51002) -.phncdn.com/head/ -# @@||phncdn.com/cb/bundles/$script (easylist.txt: 51001) -.phncdn.com/cb/bundles/ -# @@||phncdn.com/cb/assets/$script (easylist.txt: 51000) -.phncdn.com/cb/assets/ -# @@||graphics.pop6.com/javascript/live_cd/$script (easylist.txt: 50956) -.graphics.pop6.com/javascript/live_cd/ -# @@||graphics.pop6.com/javascript/live/$script (easylist.txt: 50955) -.graphics.pop6.com/javascript/live/ -# @@||eskimotube.com/advertisements.php?$script (easylist.txt: 50951) -.eskimotube.com/advertisements\.php\? -# @@||russia-direct.org/custom_ajax/widget?*=300x250&$script (easylist.txt: 50882) -.russia-direct.org/custom_ajax/widget\?.*=300x250& -# @@||ajax.googleapis.com/ajax/services/search/news?*-728x90&$script (easylist.txt: 50821) -.ajax.googleapis.com/ajax/services/search/news\?.*-728x90& -# @@||vedomosti.ru/assets/vendors/adriver.media-$script (easylist.txt: 50657) -.vedomosti.ru/assets/vendors/adriver\.media- -# @@||start.no/advertpro/servlet/view/text/html/zone?zid=$script (easylist.txt: 50637) -.start.no/advertpro/servlet/view/text/html/zone\?zid= -# @@||prohardver.hu/js/common/forms_$script (easylist.txt: 50603) -.prohardver.hu/js/common/forms_ -# @@||player.terra.com^*&adunit=$script (easylist.txt: 50600) -.player.terra.com/.*&adunit= -# @@||oas.dn.se/adstream_mjx.ads/dn.se/nyheter/ettan/*@$script (easylist.txt: 50592) -.oas.dn.se/adstream_mjx\.ads/dn\.se/nyheter/ettan/.*@ -# @@||laredoute.*/scripts/combinejs.ashx?*/affiliation/$script (easylist.txt: 50571) -.laredoute.*./(.*/)?scripts/combinejs\.ashx\?.*/affiliation/ -# @@||isanook.com/vi/0/js/ads-$script (easylist.txt: 50561) -.isanook.com/vi/0/js/ads- -# @@||doladowania.pl/pp/$script (easylist.txt: 50519) -.doladowania.pl/pp/ -# @@||amarillas.cl/js/advertise/$script (easylist.txt: 50489) -.amarillas.cl/js/advertise/ -# @@||adpriv.nikkei.com/bservers/AAMALL/*/acc_random=$script (easylist.txt: 50456) -.adpriv.nikkei.com/bservers/AAMALL/.*/acc_random= -# @@||writing.com^$script (easylist.txt: 50419) -.writing.com -# @@||wholecloud.net/banner.php?$script (easylist.txt: 50410) -.wholecloud.net/banner\.php\? -# @@||vodu.ch^$script (easylist.txt: 50396) -.vodu.ch -# @@||viki.com/*.js$script (easylist.txt: 50391) -.viki.com/.*\.js -# @@||vidup.me/js/$script (easylist.txt: 50389) -.vidup.me/js/ -# @@||videoweed.es/banner.php?$script (easylist.txt: 50388) -.videoweed.es/banner\.php\? -# @@||videomega.tv^$script (easylist.txt: 50384) -.videomega.tv -# @@||urbeez.com/adver$script (easylist.txt: 50360) -.urbeez.com/adver -# @@||uploadlw.com/getbanner.cfm?$script (easylist.txt: 50356) -.uploadlw.com/getbanner\.cfm\? -# @@||turkdown.com^$script (easylist.txt: 50336) -.turkdown.com -# @@||thesilverforum.com/public/js/jsLoader.js?adType=$script (easylist.txt: 50312) -.thesilverforum.com/public/js/jsLoader\.js\?adType= -# @@||srnet.eu^$script (easylist.txt: 50278) -.srnet.eu -# @@||speedpremium.info^$script (easylist.txt: 50275) -.speedpremium.info -# @@||spaste.com^$script (easylist.txt: 50274) -.spaste.com -# @@||sockshare.com/js/$script (easylist.txt: 50267) -.sockshare.com/js/ -# @@||series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/$script (easylist.txt: 50247) -.series-cravings.info/wp-content/plugins/wordpress-adblock-blocker/ -# @@||seekingalpha.com^$script (easylist.txt: 50245) -.seekingalpha.com -# @@||sankakustatic.com^$script (easylist.txt: 50229) -.sankakustatic.com -# @@||sankakucomplex.com^$script (easylist.txt: 50228) -.sankakucomplex.com -# @@||rapid8.com^$script (easylist.txt: 50203) -.rapid8.com -# @@||psarips.com^$script (easylist.txt: 50189) -.psarips.com -# @@||openx.gamereactor.dk/multi.php?$script (easylist.txt: 50127) -.openx.gamereactor.dk/multi\.php\? -# @@||onvasortir.com/advert$script (easylist.txt: 50117) -.onvasortir.com/advert -# @@||nowvideo.to/banner.php?$script (easylist.txt: 50105) -.nowvideo.to/banner\.php\? -# @@||nowvideo.sx/banner.php?$script (easylist.txt: 50104) -.nowvideo.sx/banner\.php\? -# @@||nowvideo.li/banner.php?$script (easylist.txt: 50103) -.nowvideo.li/banner\.php\? -# @@||nowdownload.to/banner.php?$script (easylist.txt: 50102) -.nowdownload.to/banner\.php\? -# @@||novamov.com/banner.php?$script (easylist.txt: 50101) -.novamov.com/banner\.php\? -# @@||next-episode.net^$script (easylist.txt: 50091) -.next-episode.net -# @@||moje-dzialdowo.pl/delivery/ajs.php?zoneid=$script (easylist.txt: 50049) -.moje-dzialdowo.pl/delivery/ajs\.php\?zoneid= -# @@||layer13.net^$elemhide,script (easylist.txt: 49971) -.layer13.net -# @@||kenkenpuzzle.com/assets/ads-$script (easylist.txt: 49960) -.kenkenpuzzle.com/assets/ads- -# @@||ifirstrow.eu^$script (easylist.txt: 49910) -.ifirstrow.eu -# @@||hardware.no^$script (easylist.txt: 49889) -.hardware.no -# @@||games.washingtonpost.com/Scripts/$script (easylist.txt: 49856) -.games.washingtonpost.com/Scripts/ -# @@||gamecopyworld.eu/games/$script (easylist.txt: 49850) -.gamecopyworld.eu/games/ -# @@||gamecopyworld.com/games/$script (easylist.txt: 49849) -.gamecopyworld.com/games/ -# @@||freebitco.in^$script (easylist.txt: 49820) -.freebitco.in -# @@||firstrow*.eu^$script (easylist.txt: 49807) -.firstrow*./.*\.eu[^\w%.-] -.firstrow*.eu -# @@||filmweb.pl/adbanner/$script (easylist.txt: 49804) -.filmweb.pl/adbanner/ -# @@||exrapidleech.info^$elemhide,script (easylist.txt: 49782) -.exrapidleech.info -# @@||eventhubs.com^*.$script (easylist.txt: 49776) -.eventhubs.com/.*\. -# @@||eosads.com/adver$script (easylist.txt: 49765) -.eosads.com/adver -# @@||doodle.com/builtstatic/*/doodle/js/$script (easylist.txt: 49742) -.doodle.com/builtstatic/.*/doodle/js/ -# @@||d2anfhdgjxf8s1.cloudfront.net/ajs.php?adserver=$script (easylist.txt: 49709) -.d2anfhdgjxf8s1.cloudfront.net/ajs\.php\?adserver= -# @@||crazygallery.info/ads/$script (easylist.txt: 49705) -.crazygallery.info/ads/ -# @@||cloudtime.to/banner.php?$script (easylist.txt: 49683) -.cloudtime.to/banner\.php\? -# @@||cdnco.us^$script (easylist.txt: 49659) -.cdnco.us -# @@||btava.com^$script (easylist.txt: 49640) -.btava.com -# @@||beemp3s.org/adreactor/$script (easylist.txt: 49615) -.beemp3s.org/adreactor/ -# @@||avforums.com/*ad$script (easylist.txt: 49607) -.avforums.com/.*ad -# @@||animecrave.com/_content/$script (easylist.txt: 49578) -.animecrave.com/_content/ -# @@||amazonaws.com/ssbss.ss/$script (easylist.txt: 49570) -.amazonaws.com/ssbss\.ss/ -# @@||amazonaws.com/atzuma/ajs.php?adserver=$script (easylist.txt: 49569) -.amazonaws.com/atzuma/ajs\.php\?adserver= -# @@||afdah.tv^$script (easylist.txt: 49553) -.afdah.tv -# @@||afdah.com^$script (easylist.txt: 49552) -.afdah.com -# @@||afdah.co^$script (easylist.txt: 49551) -.afdah.co -# @@||ads.clubedohardware.com.br/www/delivery/$script (easylist.txt: 49525) -.ads.clubedohardware.com.br/www/delivery/ -# @@||ad.filmweb.pl^$script (easylist.txt: 49497) -.ad.filmweb.pl -# @@||tm.tradetracker.net/tag?$script (easylist.txt: 49184) -.tm.tradetracker.net/tag\? -# @@||tinbuadserv.com/v3/serve.php?$script (easylist.txt: 49181) -.tinbuadserv.com/v3/serve\.php\? -# @@||syn.5min.com/handlers/SenseHandler.ashx?*&adUnit=$script (easylist.txt: 49127) -.syn.5min.com/handlers/SenseHandler\.ashx\?.*&adUnit= -# @@||static.ak.fbcdn.net^*/ads/$script (easylist.txt: 49104) -.static.ak.fbcdn.net/.*/ads/ -# @@||ssl-images-amazon.com^*/popover/popover-$script (easylist.txt: 49098) -.ssl-images-amazon.com/.*/popover/popover- -# @@||sales.liveperson.net/visitor/addons/deploy2.asp?*&d_id=adcenter&$script (easylist.txt: 49001) -.sales.liveperson.net/visitor/addons/deploy2\.asp\?.*&d_id=adcenter& -# @@||redsharknews.com/components/com_adagency/includes/$script (easylist.txt: 48965) -.redsharknews.com/components/com_adagency/includes/ -# @@||pumpkinpatchkids.com/www/delivery/ajs.php?$script (easylist.txt: 48937) -.pumpkinpatchkids.com/www/delivery/ajs\.php\? -# @@||pshared.5min.com/Scripts/ThumbSeed2.js?*&adUnit=$script (easylist.txt: 48933) -.pshared.5min.com/Scripts/ThumbSeed2\.js\?.*&adUnit= -# @@||pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad.min.js$script (easylist.txt: 48879) -.pgatour.com/etc/designs/pgatour-advertisements/clientlibs/ad\.min\.js -# @@||openx.nobelprize.org/openx/www/delivery/$script (easylist.txt: 48816) -.openx.nobelprize.org/openx/www/delivery/ -# @@||omnikool.discovery.com/realmedia/ads/adstream_mjx.ads/dsc.discovery.com/$script (easylist.txt: 48810) -.omnikool.discovery.com/realmedia/ads/adstream_mjx\.ads/dsc\.discovery\.com/ -# @@||oascentral.thepostgame.com/om/$script (easylist.txt: 48799) -.oascentral.thepostgame.com/om/ -# @@||oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx.ads$script (easylist.txt: 48798) -.oascentral.thechronicleherald.ca/realmedia/ads/adstream_mjx\.ads -# @@||newsweek.com/ads/adscripts/prod/*_$script (easylist.txt: 48754) -.newsweek.com/ads/adscripts/prod/.*_ -# @@||napaonline.com/Content/script/jquery.lazyload-ad-$script (easylist.txt: 48735) -.napaonline.com/Content/script/jquery\.lazyload-ad- -# @@||media.avclub.com/onion/js/videoads.js$script (easylist.txt: 48664) -.media.avclub.com/onion/js/videoads\.js -# @@||llnwd.net^*/js/3rdparty/swfobject$script (easylist.txt: 48621) -.llnwd.net/.*/js/3rdparty/swfobject -# @@||listings.brokersweb.com/JsonSearchSb.aspx?*&maxAds=$script (easylist.txt: 48610) -.listings.brokersweb.com/JsonSearchSb\.aspx\?.*&maxAds= -# @@||intellitxt.com/ast/js/nbcuni/$script (easylist.txt: 48540) -.intellitxt.com/ast/js/nbcuni/ -# @@||gws.ign.com/ws/search?*&google_adpage=$script (easylist.txt: 48442) -.gws.ign.com/ws/search\?.*&google_adpage= -# @@||google.*/webpagethumbnail?*&query=$script (easylist.txt: 48409) -.google.*./(.*/)?webpagethumbnail\?.*&query= -# @@||gactv.com^*/javascript/ad/coread/$script (easylist.txt: 48373) -.gactv.com/.*/javascript/ad/coread/ -# @@||fbcdn.net/rsrc.php/*-aD2.js$script (easylist.txt: 48330) -.fbcdn.net/rsrc\.php/.*-aD2\.js -# @@||expedia.com/js.ng/*&PLACEMENT=CXHOMECORE_$script (easylist.txt: 48321) -.expedia.com/js\.ng/.*&PLACEMENT=CXHOMECORE_ -# @@||eventcinemas.co.nz^*_adhub_server_$script (easylist.txt: 48314) -.eventcinemas.co.nz/.*_adhub_server_ -# @@||esquire.com/ams/page-ads.js?$script (easylist.txt: 48312) -.esquire.com/ams/page-ads\.js\? -# @@||equippers.com/absolutebm.aspx?$script (easylist.txt: 48305) -.equippers.com/absolutebm\.aspx\? -# @@||equippers.com/abm.aspx?$script (easylist.txt: 48304) -.equippers.com/abm\.aspx\? -# @@||eluxe.ca^*_doubleclick.js*.pagespeed.$script (easylist.txt: 48292) -.eluxe.ca/.*_doubleclick\.js.*\.pagespeed\. -# @@||ebayrtm.com/rtm?rtmcmd&a=json&cb=parent.$script (easylist.txt: 48278) -.ebayrtm.com/rtm\?rtmcmd&a=json&cb=parent\. -# @@||eafyfsuh.net/scripts/generated/key.js?t=$script (easylist.txt: 48272) -.eafyfsuh.net/scripts/generated/key\.js\?t= -# @@||dyncdn.buzznet.com/catfiles/?f=dojo/*.googleadservices.$script (easylist.txt: 48270) -.dyncdn.buzznet.com/catfiles/\?f=dojo/.*\.googleadservices\. -# @@||doubleclick.net^*/adj/wwe.shows/ecw_ecwreplay;*;sz=624x325;$script (easylist.txt: 48246) -.doubleclick.net/.*/adj/wwe\.shows/ecw_ecwreplay;.*;sz=624x325; -# @@||doubleclick.net/pfadx/umg.*;sz=10x$script (easylist.txt: 48242) -.doubleclick.net/pfadx/umg\..*;sz=10x -# @@||doubleclick.net/adj/pong.all/*;dcopt=ist;$script (easylist.txt: 48231) -.doubleclick.net/adj/pong\.all/.*;dcopt=ist; -# @@||doubleclick.net/adj/nbcu.nbc/videoplayer-$script (easylist.txt: 48228) -.doubleclick.net/adj/nbcu\.nbc/videoplayer- -# @@||doubleclick.net/adj/imdb2.consumer.video/*;sz=320x240,$script (easylist.txt: 48226) -.doubleclick.net/adj/imdb2\.consumer\.video/.*;sz=320x240, -# @@||doubleclick.net/adj/ctv.muchmusicblog.com/$script (easylist.txt: 48224) -.doubleclick.net/adj/ctv\.muchmusicblog\.com/ -# @@||direct.fairfax.com.au/hserver/*/site=vid.*/adtype=embedded/$script (easylist.txt: 48188) -.direct.fairfax.com.au/hserver/.*/site=vid\..*/adtype=embedded/ -# @@||design-essentials.net/affiliate/$script,subdocument (easylist.txt: 48182) -.design-essentials.net/affiliate/ -# @@||dailycaller.com/wp-content/plugins/advertisements/$script (easylist.txt: 48160) -.dailycaller.com/wp-content/plugins/advertisements/ -# @@||cricketcountry.com/js/ad-gallery.js$script (easylist.txt: 48145) -.cricketcountry.com/js/ad-gallery\.js -# @@||cosmopolitan.com/cm/shared/scripts/refreshads-$script (easylist.txt: 48139) -.cosmopolitan.com/cm/shared/scripts/refreshads- -# @@||content.datingfactory.com/promotools/$script (easylist.txt: 48134) -.content.datingfactory.com/promotools/ -# @@||computerworld.com/resources/scripts/lib/doubleclick_ads.js$script (easylist.txt: 48126) -.computerworld.com/resources/scripts/lib/doubleclick_ads\.js -# @@||chibis.adotube.com/appRuntime/swfobject/$script (easylist.txt: 48103) -.chibis.adotube.com/appRuntime/swfobject/ -# @@||brothersoft.com/gads/coop_show_download.php?soft_id=$script (easylist.txt: 48036) -.brothersoft.com/gads/coop_show_download\.php\?soft_id= -# @@||aolcdn.com/os_merge/?file=/aol/*.js&$script (easylist.txt: 47925) -.aolcdn.com/os_merge/\?file=/aol/.*\.js& -# @@||ads.forbes.com/realmedia/ads/*@videopreroll$script (easylist.txt: 47747) -.ads.forbes.com/realmedia/ads/.*@videopreroll -# @@||ads.cnn.com/js.ng/*&cnn_intl_subsection=download$script (easylist.txt: 47743) -.ads.cnn.com/js\.ng/.*&cnn_intl_subsection=download -# @@||ads.belointeractive.com/realmedia/ads/adstream_mjx.ads/www.kgw.com/video/$script (easylist.txt: 47739) -.ads.belointeractive.com/realmedia/ads/adstream_mjx\.ads/www\.kgw\.com/video/ -# @@||9msn.com.au^*/ads/ninemsn.ads$script (easylist.txt: 47652) -.9msn.com.au/.*/ads/ninemsn\.ads -# @@||ytimg.com/yts/jsbin/$script (easylist.txt: 35573) -.ytimg.com/yts/jsbin/ -# @@||static.cdn-ec.viddler.com^$script (easylist.txt: 35553) -.static.cdn-ec.viddler.com -# @@||providesupport.com^$script (easylist.txt: 35547) -.providesupport.com -# @@||platform.vine.co^$script (easylist.txt: 35538) -.platform.vine.co -# @@||lpsimage.newsinc.com/player/show/$script (easylist.txt: 35528) -.lpsimage.newsinc.com/player/show/ -# @@||lps.newsinc.com/player/show/$script (easylist.txt: 35527) -.lps.newsinc.com/player/show/ -# @@||hwcdn.net/*.js?$script (easylist.txt: 35514) -.hwcdn.net/.*\.js\? -# @@||gstatic.com/trustedstores/$script (easylist.txt: 35513) -.gstatic.com/trustedstores/ -# @@||googlecommerce.com^$script (easylist.txt: 35509) -.googlecommerce.com -# @@||google.com/recaptcha/$script (easylist.txt: 35507) -.google.com/recaptcha/ -# @@||google.com/js/th/$script (easylist.txt: 35505) -.google.com/js/th/ -# @@||cdn.shopify.com^$script (easylist.txt: 35471) -.cdn.shopify.com -# @@||exashare.com/player6/$script (easylist.txt: 35374) -.exashare.com/player6/ -# @@||exashare.com/js/$script (easylist.txt: 35373) -.exashare.com/js/ #ab2p-unblock-request-Aj-Cj-Xx {-block \ @@ -376830,3319 +38034,58 @@ TAG:^ab2p-unblock-request-Aj-Cj$ +client-header-tagger{ab2p-unblock-request-Xx} \ } TAG:^ab2p-unblock-request-Aj-Cj-Xx$ -# @@||upload.tube8.com^$script,xmlhttprequest (easylistchina+easylist.txt: 61710) -.upload.tube8.com -# @@||4shared.com^$script,xmlhttprequest (easylistchina+easylist.txt: 59970) -.4shared.com -# @@||api.cirqle.nl^*&advertiserId=$script,xmlhttprequest (easylistchina+easylist.txt: 58414) -.api.cirqle.nl/.*&advertiserId= -# @@||upload.tube8.com^$script,xmlhttprequest (easylist.txt: 51225) -.upload.tube8.com -# @@||4shared.com^$script,xmlhttprequest (easylist.txt: 49485) -.4shared.com -# @@||api.cirqle.nl^*&advertiserId=$script,xmlhttprequest (easylist.txt: 47929) -.api.cirqle.nl/.*&advertiserId= -#ab2p-unblock-request-Aj-Cj-Xx-when-R1502 +#ab2p-unblock-request-Aj-Cj-Xx-when-nR-R188nt {-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-R1502} \ -} -# @@||nytimes.com/adx/bin/adx_remote.html?type=fastscript$script,xmlhttprequest,domain=nytimes.com (easylistchina+easylist.txt: 59264) -.nytimes.com/adx/bin/adx_remote\.html\?type=fastscript -# @@||nytimes.com/adx/bin/adx_remote.html?type=fastscript$script,xmlhttprequest,domain=nytimes.com (easylist.txt: 48779) -.nytimes.com/adx/bin/adx_remote\.html\?type=fastscript - -#ab2p-unblock-request-Aj-Cj-Xx-when-R447 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-R447} \ -} -# @@||beta.speedtest.net^$script,xmlhttprequest,domain=speedtest.net (easylistchina+easylist.txt: 45901) -.beta.speedtest.net -# @@||beta.speedtest.net^$script,xmlhttprequest,domain=speedtest.net (easylist.txt: 35416) -.beta.speedtest.net - -#ab2p-unblock-request-Aj-Cj-Xx-when-R1725 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-R1725} \ -} -# @@||intentmedia.net/adServer/$script,xmlhttprequest,domain=travelzoo.com (easylistchina+easylist.txt: 59026) -.intentmedia.net/adServer/ -# @@||intentmedia.net/adServer/$script,xmlhttprequest,domain=travelzoo.com (easylist.txt: 48541) -.intentmedia.net/adServer/ - -#ab2p-unblock-request-Aj-Cj-Xx-when-R1726 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-R1726} \ -} -# @@||mtrcss.com^$script,xmlhttprequest,domain=tree.tv (advblock.txt: 7586) -.mtrcss.com - -#ab2p-unblock-request-Aj-Cj-Xx-when-nR-R1881nt -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-R1881nt} \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-R188nt} \ +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-nR} \ } -# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina+easylist.txt: 10069) +# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina.txt: 10051) -#ab2p-unblock-request-Aj-Cj-Xx-when-nR-Rnt +#ab2p-unblock-request-Aj-Cj-when-R242 {-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-nR} \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R242} \ } -# @@||guloggratis.dk/modules/$script,~third-party,xmlhttprequest (easylistchina+easylist.txt: 61034) -.guloggratis.dk/modules/ -# @@||filmovizija.in^$script,~third-party,xmlhttprequest (easylistchina+easylist.txt: 60286) -.filmovizija.in -# @@||guloggratis.dk/modules/$script,~third-party,xmlhttprequest (easylist.txt: 50549) -.guloggratis.dk/modules/ -# @@||filmovizija.in^$script,~third-party,xmlhttprequest (easylist.txt: 49801) -.filmovizija.in - -#ab2p-unblock-request-Aj-Cj-when-R766 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R766} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=120sports.com|africanindy.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|cbsnews.com|cwtv.com|deadspin.com|denofgeek.co|denofgeek.com|drupalcommerce.org|ew.com|forbes.com|foxnews.com|gawker.com|gizmodo.com|independent.co.uk|investopedia.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|latimes.com|lifehacker.com|m.tmz.com|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|merriam-webster.com|mlb.com|nauticexpo.com|nytimes.com|orbitz.com|sendtonews.com|thesimsresource.com|time.com|urbandictionary.com|vanityfair.com|video.foxbusiness.com|video.foxnews.com|vroomvroomvroom.com.au|weather.com|weddingspot.co.uk|wlj.net|zavvi.com|zdnet.com|zillow.com (easylistchina+easylist.txt: 59345) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=120sports.com|africanindy.com|beqala.com|bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|cbsnews.com|cwtv.com|deadspin.com|denofgeek.co|denofgeek.com|drupalcommerce.org|ew.com|forbes.com|foxnews.com|gawker.com|gizmodo.com|independent.co.uk|investopedia.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|latimes.com|lifehacker.com|m.tmz.com|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|merriam-webster.com|mlb.com|nauticexpo.com|nytimes.com|orbitz.com|sendtonews.com|thesimsresource.com|time.com|urbandictionary.com|vanityfair.com|video.foxbusiness.com|video.foxnews.com|vroomvroomvroom.com.au|weather.com|weddingspot.co.uk|wlj.net|zavvi.com|zdnet.com|zillow.com (easylist.txt: 48860) -.partner.googleadservices.com/gpt/pubads_impl_ - -#ab2p-unblock-request-Aj-Cj-when-R24 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R24} \ -} -# @@||static.1tv.ru^$script,domain=1tv.ru (advblock.txt: 7601) -.static.1tv.ru -# @@/adfox.$script,domain=1tv.ru (advblock.txt: 7524) -/(.*/)?adfox\. -adfox.*. - -#ab2p-unblock-request-Aj-Cj-when-R785 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R785} \ -} -# @@||yule8.net^$script,domain=2mm.tv|2mmei.com (easylistchina+easylist.txt: 10441) -.yule8.net - -#ab2p-unblock-request-Aj-Cj-when-R39 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R39} \ -} -# @@||3dnews.ru/www/delivery/ajs.*&slot=single&$script,domain=3dnews.ru (advblock.txt: 7542) -.3dnews.ru/www/delivery/ajs\..*&slot=single& -# @@/^https?://ad\.3dnews\.ru/[^/]*/ajs.php\?zoneid=/$script,domain=3dnews.ru (advblock.txt: 7523) -/(.*/)?[^\w%.-]https\?://ad\\\.3dnews\\\.ru/\[[^\w%.-]/\].*/ajs\.php\\\?zoneid=/ -/^https?://ad\.3dnews\.ru/[^/]*/ajs.php\?zoneid= - -#ab2p-unblock-request-Aj-Cj-when-R799 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R799} \ -} -# @@/prepareCode?$script,domain=7days.ru|bigpicture.ru|iphones.ru|lenta.ru|rambler.ru|ria.ru|sovsport.md|sovsport.ru|sportbox.ru|sports.ru|tjournal.ru|vc.ru (advblock.txt: 7616) -/(.*/)?prepareCode\? - -#ab2p-unblock-request-Aj-Cj-when-R800 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R800} \ -} -# @@/getCodeTest?$script,domain=7days.ru|bigpicture.ru|kakprosto.ru|lenta.ru|rambler.ru|ria.ru|rusplt.ru|sobesednik.ru|sovsport.md|sovsport.ru|sportbox.ru|sports.ru|tjournal.ru|vc.ru (advblock.txt: 7615) -/(.*/)?getCodeTest\? - -#ab2p-unblock-request-Aj-Cj-when-R801 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R801} \ -} -# @@||an.yandex.ru/system/context.js$script,domain=7days.ru|sports.ru (advblock.txt: 7627) -.an.yandex.ru/system/context\.js -# @@||an.yandex.ru/resource/context_static_$script,domain=7days.ru|sports.ru (advblock.txt: 7626) -.an.yandex.ru/resource/context_static_ - -#ab2p-unblock-request-Aj-Cj-when-R808 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R808} \ -} -# @@||numbers.md/static/$script,domain=999.md (advblock.txt: 7351) -.numbers.md/static/ - -#ab2p-unblock-request-Aj-Cj-when-R809 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R809} \ -} -# @@||visitweb.com^$script,domain=99px.ru (advblock.txt: 7606) -.visitweb.com -# @@||luxup.ru^$script,domain=99px.ru (advblock.txt: 7582) -.luxup.ru -# @@||gfhdkse.com^$script,domain=99px.ru (advblock.txt: 7569) -.gfhdkse.com - -#ab2p-unblock-request-Aj-Cj-when-R812 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R812} \ -} -# @@||9msn.com.au/Services/Service.axd?*=AdExpert&$script,domain=9news.com.au (easylistchina+easylist.txt: 59976) -.9msn.com.au/Services/Service\.axd\?.*=AdExpert& -# @@||9msn.com.au/Services/Service.axd?*=AdExpert&$script,domain=9news.com.au (easylist.txt: 49491) -.9msn.com.au/Services/Service\.axd\?.*=AdExpert& - -#ab2p-unblock-request-Aj-Cj-when-R826 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R826} \ -} -# @@||taboola.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46044) -.taboola.com -# @@||taboola.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|cheatsheet.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35559) -.taboola.com - -#ab2p-unblock-request-Aj-Cj-when-R1882t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1882t} \ -} -# @@||connect.facebook.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45964) -.connect.facebook.net -# @@||apis.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45950) -.apis.google.com -# @@||connect.facebook.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35479) -.connect.facebook.net -# @@||apis.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|sportsmole.co.uk|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35465) -.apis.google.com - -#ab2p-unblock-request-Aj-Cj-when-R1883t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1883t} \ -} -# @@||s7.addthis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46035) -.s7.addthis.com -# @@||s7.addthis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35550) -.s7.addthis.com - -#ab2p-unblock-request-Aj-Cj-when-R1884t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1884t} \ -} -# @@||googleapis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45993) -.googleapis.com -# @@||connect.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45963) -.connect.facebook.com -# @@||code.jquery.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45962) -.code.jquery.com -# @@||googleapis.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35508) -.googleapis.com -# @@||connect.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35478) -.connect.facebook.com -# @@||code.jquery.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|supercheats.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35477) -.code.jquery.com - -#ab2p-unblock-request-Aj-Cj-when-R1885t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1885t} \ -} -# @@||api.solvemedia.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45949) -.api.solvemedia.com -# @@||api-public.addthis.com/url/shares.json?$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45946) -.api-public.addthis.com/url/shares\.json\? -# @@||api.solvemedia.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35464) -.api.solvemedia.com -# @@||api-public.addthis.com/url/shares.json?$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|tinypic.com|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35461) -.api-public.addthis.com/url/shares\.json\? - -#ab2p-unblock-request-Aj-Cj-when-R831 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R831} \ -} -# @@||syn.5min.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46042) -.syn.5min.com -# @@||playwire.com/bolt/$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46025) -.playwire.com/bolt/ -# @@||syn.5min.com^$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35557) -.syn.5min.com -# @@||playwire.com/bolt/$script,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35540) -.playwire.com/bolt/ - -#ab2p-unblock-request-Aj-Cj-when-R1886t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1886t} \ -} -# @@||wp.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46055) -.wp.com/wp-content/ -# @@||wp.com/_static/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46054) -.wp.com/_static/ -# @@||use.typekit.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46050) -.use.typekit.net -# @@||s.gravatar.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46034) -.s.gravatar.com -# @@||r-login.wordpress.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46033) -.r-login.wordpress.com -# @@||platform.instagram.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46022) -.platform.instagram.com -# @@||maxcdn.bootstrapcdn.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46015) -.maxcdn.bootstrapcdn.com -# @@||maps.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46014) -.maps.google.com -# @@||livefyre.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46010) -.livefyre.com -# @@||linkedin.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46009) -.linkedin.com -# @@||jwpsrv.com/player/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46005) -.jwpsrv.com/player/ -# @@||jwplatform.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46004) -.jwplatform.com -# @@||googletagservices.com/tag/js/gpt.js$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45995) -.googletagservices.com/tag/js/gpt\.js -# @@||gigya.com/js/gigya.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45989) -.gigya.com/js/gigya\. -# @@||gigya.com/comments.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45988) -.gigya.com/comments\. -# @@||fbstatic-a.akamaihd.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45983) -.fbstatic-a.akamaihd.net -# @@||embedly.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45973) -.embedly.com -# @@||cloudflare.com/ajax/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45961) -.cloudflare.com/ajax/ -# @@||cdnjs.cloudflare.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45958) -.cdnjs.cloudflare.com -# @@||api.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45947) -.api.facebook.com -# @@||ak.sail-horizon.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45943) -.ak.sail-horizon.com -# @@||wp.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35570) -.wp.com/wp-content/ -# @@||wp.com/_static/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35569) -.wp.com/_static/ -# @@||use.typekit.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35565) -.use.typekit.net -# @@||s.gravatar.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35549) -.s.gravatar.com -# @@||r-login.wordpress.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35548) -.r-login.wordpress.com -# @@||platform.instagram.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35537) -.platform.instagram.com -# @@||maxcdn.bootstrapcdn.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35530) -.maxcdn.bootstrapcdn.com -# @@||maps.google.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35529) -.maps.google.com -# @@||livefyre.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35525) -.livefyre.com -# @@||linkedin.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35524) -.linkedin.com -# @@||jwpsrv.com/player/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35520) -.jwpsrv.com/player/ -# @@||jwplatform.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35519) -.jwplatform.com -# @@||googletagservices.com/tag/js/gpt.js$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35510) -.googletagservices.com/tag/js/gpt\.js -# @@||gigya.com/js/gigya.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35504) -.gigya.com/js/gigya\. -# @@||gigya.com/comments.$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35503) -.gigya.com/comments\. -# @@||fbstatic-a.akamaihd.net^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35498) -.fbstatic-a.akamaihd.net -# @@||embedly.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35488) -.embedly.com -# @@||cloudflare.com/ajax/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35476) -.cloudflare.com/ajax/ -# @@||cdnjs.cloudflare.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35473) -.cdnjs.cloudflare.com -# @@||api.facebook.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35462) -.api.facebook.com -# @@||ak.sail-horizon.com^$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35458) -.ak.sail-horizon.com - -#ab2p-unblock-request-Aj-Cj-when-R1887t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1887t} \ -} -# @@||netdna-cdn.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|enstarz.com|explosm.net|flexonline.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 46017) -.netdna-cdn.com/wp-content/ -# @@||netdna-cdn.com/wp-content/$script,third-party,domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|enstarz.com|explosm.net|flexonline.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|thepoke.co.uk|townhall.com|unilad.co.uk|valuewalk.com|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35532) -.netdna-cdn.com/wp-content/ - -#ab2p-unblock-request-Aj-Cj-when-R75 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R75} \ -} -# @@||googleapis.com^$script,domain=adultmult.tv (advblock.txt: 7303) -.googleapis.com - -#ab2p-unblock-request-Aj-Cj-when-R863 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R863} \ -} -# @@||google.com/tools/feedback/open.js?*^url=https://adwords.google.com/$script,domain=adwords.google.com (easylistchina+easylist.txt: 61171) -.google.com/tools/feedback/open\.js\?.*[^\w%.-]url=https://adwords\.google\.com/ -# @@||google.com/tools/feedback/open.js?*^url=https://adwords.google.com/$script,domain=adwords.google.com (easylist.txt: 50686) -.google.com/tools/feedback/open\.js\?.*[^\w%.-]url=https://adwords\.google\.com/ - -#ab2p-unblock-request-Aj-Cj-when-R864 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R864} \ -} -# @@||5.189.144.107^$script,domain=afdah.tv (easylistchina+easylist.txt: 59972) -.5.189.144.107 -# @@||5.189.144.107^$script,domain=afdah.tv (easylist.txt: 49487) -.5.189.144.107 - -#ab2p-unblock-request-Aj-Cj-when-R874 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R874} \ -} -# @@||adriver.ru/images/$script,domain=afisha.ru|aif.ru|eg.ru|ex.ua|forum.tatfish.com|grandars.ru|klops.ru|meta.ua|mobile-review.com|ozon.ru|thg.ru|vz.ru (advblock.txt: 7621) -.adriver.ru/images/ - -#ab2p-unblock-request-Aj-Cj-when-R875 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R875} \ -} -# @@||adriver.ru/cgi-bin/erle.cgi?$script,domain=afisha.ru|aif.ru|ex.ua|fileplaneta.com|forum.tatfish.com|grandars.ru|klops.ru|meta.ua|oceanvideo.ru|ozon.ru|thg.ru|vz.ru (advblock.txt: 7618) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-unblock-request-Aj-Cj-when-R878 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R878} \ -} -# @@||afreesms.com^$script,domain=afreesms.com (easylistchina+easylist.txt: 60040) -.afreesms.com -# @@||afreesms.com^$script,domain=afreesms.com (easylist.txt: 49555) -.afreesms.com - -#ab2p-unblock-request-Aj-Cj-when-R880 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R880} \ -} -# @@||adserver.adtech.de/multiad/$script,domain=aftenposten.no|e24.no|hardware.no|vg.no (easylistchina+easylist.txt: 60025) -.adserver.adtech.de/multiad/ -# @@||adserver.adtech.de/multiad/$script,domain=aftenposten.no|e24.no|hardware.no|vg.no (easylist.txt: 49540) -.adserver.adtech.de/multiad/ - -#ab2p-unblock-request-Aj-Cj-when-R887 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R887} \ -} -# @@/adfox.$script,domain=alfabank.ru|megafon.ru|mirtesen.ru (advblock.txt: 7182) -/(.*/)?adfox\. -adfox.*. - -#ab2p-unblock-request-Aj-Cj-when-R890 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R890} \ -} -# @@||recreativ.ru/rcode.$script,domain=all-episodes.com (advblock.txt: 7595) -.recreativ.ru/rcode\. - -#ab2p-unblock-request-Aj-Cj-when-R894 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R894} \ -} -# @@/spcjs.php$script,domain=altapress.ru (advblock.txt: 7207) -/(.*/)?spcjs\.php -spcjs.php*. -# @@/delivery/fl.$script,domain=altapress.ru (advblock.txt: 7198) -/(.*/)?delivery/fl\. - -#ab2p-unblock-request-Aj-Cj-when-R895 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R895} \ -} -# @@||kavanga.ru/exp?$script,domain=altapress.ru|artfile.ru|baskino.com|biysk24.ru|klops.ru|kulturologia.ru|lokomotiv.info|russianfood.com|topnews.ru|verstov.info (advblock.txt: 7629) -.kavanga.ru/exp\? - -#ab2p-unblock-request-Aj-Cj-when-R896 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R896} \ -} -# @@||pagead2.googlesyndication.com/pagead/$script,domain=altoque.com (easylistchina+easylist.txt: 60621) -.pagead2.googlesyndication.com/pagead/ -# @@||pagead2.googlesyndication.com/pagead/$script,domain=altoque.com (easylist.txt: 50136) -.pagead2.googlesyndication.com/pagead/ - -#ab2p-unblock-request-Aj-Cj-when-R923 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R923} \ -} -# @@||g.doubleclick.net/gampad/ads?$script,domain=app.com|argusleader.com|autoguide.com|battlecreekenquirer.com|baxterbulletin.com|beqala.com|boatshop24.com|bodas.com.mx|bodas.net|bucyrustelegraphforum.com|burlingtonfreepress.com|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|chillicothegazette.com|cincinnati.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|deadspin.com|defensenews.com|delawareonline.com|democratandchronicle.com|desmoinesregister.com|dnj.com|drupalcommerce.org|escapegames.com|fdlreporter.com|floridatoday.com|foxnews.com|freep.com|games.latimes.com|gawker.com|gizmodo.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|htrnews.com|indystar.com|investopedia.com|io9.com|ithacajournal.com|jacksonsun.com|jalopnik.com|jconline.com|jezebel.com|kotaku.com|lancastereaglegazette.com|lansingstatejournal.com|lifehacker.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|mariages.net|marionstar.com|marshfieldnewsherald.com|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|montgomeryadvertiser.com|motorcycle.com|mycentraljersey.com|mydesert.com|mysoju.com|nauticexpo.com|nedbank.co.za|nedbankgreen.co.za|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|nonags.com|orbitz.com|pal-item.com|podomatic.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thedailyjournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thesimsresource.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|ticketek.com.ar|urbandictionary.com|virginaustralia.com|visaliatimesdelta.com|volokh.com|vroomvroomvroom.com.au|wausaudailyherald.com|weddingspot.co.uk|wisconsinrapidstribune.com|wlj.net|zanesvilletimesrecorder.com|zavvi.com|zillow.com|zui.com (easylistchina+easylist.txt: 58851) -.g.doubleclick.net/gampad/ads\? -# @@||g.doubleclick.net/gampad/ads?$script,domain=app.com|argusleader.com|autoguide.com|battlecreekenquirer.com|baxterbulletin.com|beqala.com|boatshop24.com|bodas.com.mx|bodas.net|bucyrustelegraphforum.com|burlingtonfreepress.com|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|chillicothegazette.com|cincinnati.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|deadspin.com|defensenews.com|delawareonline.com|democratandchronicle.com|desmoinesregister.com|dnj.com|drupalcommerce.org|escapegames.com|fdlreporter.com|floridatoday.com|foxnews.com|freep.com|games.latimes.com|gawker.com|gizmodo.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|htrnews.com|indystar.com|investopedia.com|io9.com|ithacajournal.com|jacksonsun.com|jalopnik.com|jconline.com|jezebel.com|kotaku.com|lancastereaglegazette.com|lansingstatejournal.com|lifehacker.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|mariages.net|marionstar.com|marshfieldnewsherald.com|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|montgomeryadvertiser.com|motorcycle.com|mycentraljersey.com|mydesert.com|mysoju.com|nauticexpo.com|nedbank.co.za|nedbankgreen.co.za|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|nonags.com|orbitz.com|pal-item.com|podomatic.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thedailyjournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thesimsresource.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|ticketek.com.ar|urbandictionary.com|virginaustralia.com|visaliatimesdelta.com|volokh.com|vroomvroomvroom.com.au|wausaudailyherald.com|weddingspot.co.uk|wisconsinrapidstribune.com|wlj.net|zanesvilletimesrecorder.com|zavvi.com|zillow.com|zui.com (easylist.txt: 48366) -.g.doubleclick.net/gampad/ads\? - -#ab2p-unblock-request-Aj-Cj-when-R928 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R928} \ -} -# @@||apps.admob.com/admob/*.adsense.$script,domain=apps.admob.com (easylistchina+easylist.txt: 61167) -.apps.admob.com/admob/.*\.adsense\. -# @@||apps.admob.com/admob/*.adsense.$script,domain=apps.admob.com (easylist.txt: 50682) -.apps.admob.com/admob/.*\.adsense\. - -#ab2p-unblock-request-Aj-Cj-when-R931 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R931} \ -} -# @@||adv.magna.ru/?id=$script,domain=argumenti.ru|glav.su|kp.ru|newstube.ru|sobesednik.ru|soccer.ru (advblock.txt: 7624) -.adv.magna.ru/\?id= - -#ab2p-unblock-request-Aj-Cj-when-R934 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R934} \ -} -# @@||checkm8.com/adam/$script,domain=askqology.com (easylistchina+easylist.txt: 58584) -.checkm8.com/adam/ -# @@||checkm8.com/adam/$script,domain=askqology.com (easylist.txt: 48099) -.checkm8.com/adam/ - -#ab2p-unblock-request-Aj-Cj-when-R937 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R937} \ -} -# @@/banman/*$script,domain=atlanticcitywebcam.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|keywestharborwebcam.com|morganhillwebcam.com|nyharborwebcam.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com (easylistchina+easylist.txt: 59923) -/(.*/)?banman/.* -# @@/banman/*$script,domain=atlanticcitywebcam.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|keywestharborwebcam.com|morganhillwebcam.com|nyharborwebcam.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com (easylist.txt: 49438) -/(.*/)?banman/.* - -#ab2p-unblock-request-Aj-Cj-when-R944 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R944} \ -} -# @@||medialand.ru/test?$script,domain=autonews.ru|qip.ru|rbc.ru (advblock.txt: 7632) -.medialand.ru/test\? - -#ab2p-unblock-request-Aj-Cj-when-R945 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R945} \ -} -# @@||medialand.ru/code?*&oin=0&$script,domain=autonews.ru|qip.ru|rbc.ru|utro.ru (advblock.txt: 7630) -.medialand.ru/code\?.*&oin=0& - -#ab2p-unblock-request-Aj-Cj-when-R947 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R947} \ -} -# @@||trader.ca/TraderMobileAPIBB.asmx/GetAds?$script,domain=autos.ca (easylistchina+easylist.txt: 59686) -.trader.ca/TraderMobileAPIBB\.asmx/GetAds\? -# @@||trader.ca/TraderMobileAPIBB.asmx/GetAds?$script,domain=autos.ca (easylist.txt: 49201) -.trader.ca/TraderMobileAPIBB\.asmx/GetAds\? - -#ab2p-unblock-request-Aj-Cj-when-R949 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R949} \ -} -# @@||avamd.info^$script,domain=ava.md (advblock.txt: 682) -.avamd.info - -#ab2p-unblock-request-Aj-Cj-when-R950 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R950} \ -} -# @@||static-avforums.com/*ad$script,domain=avforums.com (easylistchina+easylist.txt: 60766) -.static-avforums.com/.*ad -# @@||hcpc.co.uk/*ad$script,domain=avforums.com (easylistchina+easylist.txt: 60376) -.hcpc.co.uk/.*ad -# @@||static-avforums.com/*ad$script,domain=avforums.com (easylist.txt: 50281) -.static-avforums.com/.*ad -# @@||hcpc.co.uk/*ad$script,domain=avforums.com (easylist.txt: 49891) -.hcpc.co.uk/.*ad - -#ab2p-unblock-request-Aj-Cj-when-R959 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R959} \ -} -# @@||barstoolsports.com^$script,domain=barstoolsports.com (easylistchina+easylist.txt: 60096) -.barstoolsports.com -# @@||barstoolsports.com^$script,domain=barstoolsports.com (easylist.txt: 49611) -.barstoolsports.com - -#ab2p-unblock-request-Aj-Cj-when-R960 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R960} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=baseball-reference.com|basketball-reference.com|gamespot.com|hockey-reference.com|pro-football-reference.com|sitepoint.com|speedtest.net|sports-reference.com (easylistchina+easylist.txt: 60638) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=baseball-reference.com|basketball-reference.com|gamespot.com|hockey-reference.com|pro-football-reference.com|sitepoint.com|speedtest.net|sports-reference.com (easylist.txt: 50153) -.partner.googleadservices.com/gpt/pubads_impl_ - -#ab2p-unblock-request-Aj-Cj-when-R964 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R964} \ -} -# @@||doubleclick.net/adj/bbccom.live.site.auto/*^sz=1x1^$script,domain=bbc.com (easylistchina+easylist.txt: 58706) -.doubleclick.net/adj/bbccom\.live\.site\.auto/.*[^\w%.-]sz=1x1[^\w%.-] -# @@||doubleclick.net/adj/bbccom.live.site.auto/*^sz=1x1^$script,domain=bbc.com (easylist.txt: 48221) -.doubleclick.net/adj/bbccom\.live\.site\.auto/.*[^\w%.-]sz=1x1[^\w%.-] - -#ab2p-unblock-request-Aj-Cj-when-R967 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R967} \ -} -# @@||beliebershotel.com^$script,domain=beliebershotel.com (easylistchina+easylist.txt: 60101) -.beliebershotel.com -# @@||beliebershotel.com^$script,domain=beliebershotel.com (easylist.txt: 49616) -.beliebershotel.com - -#ab2p-unblock-request-Aj-Cj-when-R972 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R972} \ -} -# @@||dotomi.com/commonid/match?$script,domain=betfair.com (easylistchina+easylist.txt: 58690) -.dotomi.com/commonid/match\? -# @@||dotomi.com/commonid/match?$script,domain=betfair.com (easylist.txt: 48205) -.dotomi.com/commonid/match\? - -#ab2p-unblock-request-Aj-Cj-when-R976 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R976} \ -} -# @@||wl188bet.adsrv.eacdn.com/S.ashx?btag=$script,domain=betyper.com (easylistchina+easylist.txt: 61148) -.wl188bet.adsrv.eacdn.com/S\.ashx\?btag= -# @@||wl188bet.adsrv.eacdn.com/S.ashx?btag=$script,domain=betyper.com (easylist.txt: 50663) -.wl188bet.adsrv.eacdn.com/S\.ashx\?btag= - -#ab2p-unblock-request-Aj-Cj-when-R978 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R978} \ -} -# @@||bingads.microsoft.com/ApexContentHandler.ashx?$script,domain=bingads.microsoft.com (easylistchina+easylist.txt: 61229) -.bingads.microsoft.com/ApexContentHandler\.ashx\? -# @@||bingads.microsoft.com/ApexContentHandler.ashx?$script,domain=bingads.microsoft.com (easylist.txt: 50744) -.bingads.microsoft.com/ApexContentHandler\.ashx\? - -#ab2p-unblock-request-Aj-Cj-when-R987 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R987} \ -} -# @@/advert.$script,domain=bluesystem.ru|kinozadrot.net|miuipro.ru|pesikot.org|polismed.ru|prisnilos.su|qrz.ru|tree.tv (advblock.txt: 7527) -/(.*/)?advert\. -advert.*. - -#ab2p-unblock-request-Aj-Cj-when-R994 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R994} \ -} -# @@||openload.io/assets/$script,domain=bombuj.sk (easylistchina+easylist.txt: 60605) -.openload.io/assets/ -# @@||openload.io/assets/$script,domain=bombuj.sk (easylist.txt: 50120) -.openload.io/assets/ - -#ab2p-unblock-request-Aj-Cj-when-R1011 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1011} \ -} -# @@||doubleclick.net/adj/pch.candystand/video;pos=box;sz=300x250;a=$script,domain=candystand.com (easylistchina+easylist.txt: 58715) -.doubleclick.net/adj/pch\.candystand/video;pos=box;sz=300x250;a= -# @@||doubleclick.net/adj/pch.candystand/video;pos=box;sz=300x250;a=$script,domain=candystand.com (easylist.txt: 48230) -.doubleclick.net/adj/pch\.candystand/video;pos=box;sz=300x250;a= - -#ab2p-unblock-request-Aj-Cj-when-R1015 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1015} \ -} -# @@||ad.doubleclick.net/adj/*/cartalk.audio_player;$script,domain=cartalk.com (easylistchina+easylist.txt: 58155) -.ad.doubleclick.net/adj/.*/cartalk\.audio_player; -# @@||ad.doubleclick.net/adj/*/cartalk.audio_player;$script,domain=cartalk.com (easylist.txt: 47670) -.ad.doubleclick.net/adj/.*/cartalk\.audio_player; - -#ab2p-unblock-request-Aj-Cj-when-R137 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R137} \ -} -# @@||ureoal.com^$script,domain=cbs.com (easylistchina+easylist.txt: 60849) -.ureoal.com -# @@|http://d.$script,domain=cbs.com (easylistchina+easylist.txt: 59957) -d.*. -# @@.mobi/$script,domain=cbs.com (easylistchina+easylist.txt: 59903) -/.*\.mobi/ -.*.mobi -# @@.link/$script,domain=cbs.com (easylistchina+easylist.txt: 59901) -/.*\.link/ -.*.link -# @@.audio/$script,domain=cbs.com (easylistchina+easylist.txt: 59883) -/.*\.audio/ -.*.audio -# @@||ureoal.com^$script,domain=cbs.com (easylist.txt: 50364) -.ureoal.com -# @@|http://d.$script,domain=cbs.com (easylist.txt: 49472) -d.*. -# @@.mobi/$script,domain=cbs.com (easylist.txt: 49418) -/.*\.mobi/ -.*.mobi -# @@.link/$script,domain=cbs.com (easylist.txt: 49416) -/.*\.link/ -.*.link -# @@.audio/$script,domain=cbs.com (easylist.txt: 49398) -/.*\.audio/ -.*.audio - -#ab2p-unblock-request-Aj-Cj-when-R1888t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1888t} \ -} -# @@|https://$script,third-party,domain=cbs.com|eventhubs.com (easylistchina+easylist.txt: 59960) -# @@|https://$script,third-party,domain=cbs.com|eventhubs.com (easylist.txt: 49475) - -#ab2p-unblock-request-Aj-Cj-when-R1879t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1879t} \ -} -# @@|http://l.$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59958) -l.*. -# @@|http://*.xyz^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59954) -/.*\.xyz[^\w%.-] -.*.xyz -# @@|http://*.pw^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59952) -/.*\.pw[^\w%.-] -.*.pw -# @@|http://*.js|$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59949) -/.*\.js$ -.*.js -# @@|http://*.co^$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59945) -/.*\.co[^\w%.-] -.*.co -# @@.jscript|$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59900) -/.*\.jscript$ -.*.jscript -# @@.click/$script,third-party,domain=cbs.com (easylistchina+easylist.txt: 59885) -/.*\.click/ -.*.click -# @@|http://l.$script,third-party,domain=cbs.com (easylist.txt: 49473) -l.*. -# @@|http://*.xyz^$script,third-party,domain=cbs.com (easylist.txt: 49469) -/.*\.xyz[^\w%.-] -.*.xyz -# @@|http://*.pw^$script,third-party,domain=cbs.com (easylist.txt: 49467) -/.*\.pw[^\w%.-] -.*.pw -# @@|http://*.js|$script,third-party,domain=cbs.com (easylist.txt: 49464) -/.*\.js$ -.*.js -# @@|http://*.co^$script,third-party,domain=cbs.com (easylist.txt: 49460) -/.*\.co[^\w%.-] -.*.co -# @@.jscript|$script,third-party,domain=cbs.com (easylist.txt: 49415) -/.*\.jscript$ -.*.jscript -# @@.click/$script,third-party,domain=cbs.com (easylist.txt: 49400) -/.*\.click/ -.*.click - -#ab2p-unblock-request-Aj-Cj-when-R1889t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1889t} \ -} -# @@.javascript?$script,third-party,domain=cbsnews.com|colbertlateshow.com (easylistchina+easylist.txt: 59894) -/.*\.javascript\? -# @@.javascript?$script,third-party,domain=cbsnews.com|colbertlateshow.com (easylist.txt: 49409) -/.*\.javascript\? - -#ab2p-unblock-request-Aj-Cj-when-R1033 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1033} \ -} -# @@||charlieandmekids.com/www/delivery/$script,domain=charlieandmekids.co.nz|charlieandmekids.com.au (easylistchina+easylist.txt: 58578) -.charlieandmekids.com/www/delivery/ -# @@||charlieandmekids.com/www/delivery/$script,domain=charlieandmekids.co.nz|charlieandmekids.com.au (easylist.txt: 48093) -.charlieandmekids.com/www/delivery/ - -#ab2p-unblock-request-Aj-Cj-when-R1035 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1035} \ -} -# @@||revresda.com/js.ng/*&adsize=544x275&$script,domain=cheaptickets.com (easylistchina+easylist.txt: 59460) -.revresda.com/js\.ng/.*&adsize=544x275& -# @@||revresda.com/js.ng/*&adsize=544x275&$script,domain=cheaptickets.com (easylist.txt: 48975) -.revresda.com/js\.ng/.*&adsize=544x275& - -#ab2p-unblock-request-Aj-Cj-when-R1037 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1037} \ -} -# @@||odb.outbrain.com^$script,domain=cheatsheet.com (easylistchina+easylist.txt: 46019) -.odb.outbrain.com -# @@||b.grvcdn.com^$script,domain=cheatsheet.com (easylistchina+easylist.txt: 45952) -.b.grvcdn.com -# @@||odb.outbrain.com^$script,domain=cheatsheet.com (easylist.txt: 35534) -.odb.outbrain.com -# @@||b.grvcdn.com^$script,domain=cheatsheet.com (easylist.txt: 35467) -.b.grvcdn.com - -#ab2p-unblock-request-Aj-Cj-when-R1044 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1044} \ -} -# @@||cloudfront.net/assets/ads_728x90-$script,domain=citationmachine.net (easylistchina+easylist.txt: 58599) -.cloudfront.net/assets/ads_728x90- -# @@||cloudfront.net/assets/ads_728x90-$script,domain=citationmachine.net (easylist.txt: 48114) -.cloudfront.net/assets/ads_728x90- - -#ab2p-unblock-request-Aj-Cj-when-R1046 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1046} \ -} -# @@||g.doubleclick.net/gampad/ads?*^$script,domain=cityam.com (easylistchina+easylist.txt: 60321) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-] -# @@||g.doubleclick.net/gampad/ads?*^$script,domain=cityam.com (easylist.txt: 49836) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-] - -#ab2p-unblock-request-Aj-Cj-when-R1048 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1048} \ -} -# @@||adscendmedia.com/gwjs.php?$script,domain=civilization5cheats.com|kzupload.com (easylistchina+easylist.txt: 60021) -.adscendmedia.com/gwjs\.php\? -# @@||adscendmedia.com/gwjs.php?$script,domain=civilization5cheats.com|kzupload.com (easylist.txt: 49536) -.adscendmedia.com/gwjs\.php\? - -#ab2p-unblock-request-Aj-Cj-when-R1051 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1051} \ -} -# @@||openx.net/w/1.0/jstag$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60615) -.openx.net/w/1\.0/jstag -# @@||openx.net/w/1.0/acj?$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60614) -.openx.net/w/1\.0/acj\? -# @@||criteo.com/delivery/ajs.php?zoneid=$script,domain=clubedohardware.com.br (easylistchina+easylist.txt: 60192) -.criteo.com/delivery/ajs\.php\?zoneid= -# @@||openx.net/w/1.0/jstag$script,domain=clubedohardware.com.br (easylist.txt: 50130) -.openx.net/w/1\.0/jstag -# @@||openx.net/w/1.0/acj?$script,domain=clubedohardware.com.br (easylist.txt: 50129) -.openx.net/w/1\.0/acj\? -# @@||criteo.com/delivery/ajs.php?zoneid=$script,domain=clubedohardware.com.br (easylist.txt: 49707) -.criteo.com/delivery/ajs\.php\?zoneid= - -#ab2p-unblock-request-Aj-Cj-when-R1052 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1052} \ -} -# @@||tribalfusion.com/j.ad?$script,domain=clubedohardware.com.br|yellowbridge.com (easylistchina+easylist.txt: 60815) -.tribalfusion.com/j\.ad\? -# @@||tribalfusion.com/j.ad?$script,domain=clubedohardware.com.br|yellowbridge.com (easylist.txt: 50330) -.tribalfusion.com/j\.ad\? - -#ab2p-unblock-request-Aj-Cj-when-R1055 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1055} \ -} -# @@||cbsistatic.com/fly/bundles/cnetjs/$script,domain=cnet.com (easylistchina+easylist.txt: 60139) -.cbsistatic.com/fly/bundles/cnetjs/ -# @@||cbsistatic.com/fly/bundles/cnetjs/$script,domain=cnet.com (easylist.txt: 49654) -.cbsistatic.com/fly/bundles/cnetjs/ - -#ab2p-unblock-request-Aj-Cj-when-R1061 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1061} \ -} -# @@||app.promo.tubemogul.com/feed/placement.html?id=$script,domain=comedy.com (easylistchina+easylist.txt: 58420) -.app.promo.tubemogul.com/feed/placement\.html\?id= -# @@||app.promo.tubemogul.com/feed/placement.html?id=$script,domain=comedy.com (easylist.txt: 47935) -.app.promo.tubemogul.com/feed/placement\.html\?id= - -#ab2p-unblock-request-Aj-Cj-when-R1069 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1069} \ -} -# @@||smartadserver.com/call/pubj/*/8596/s/*/?$script,domain=cuantarazon.com|cuantocabron.com|vistoenfb.com (easylistchina+easylist.txt: 59544) -.smartadserver.com/call/pubj/.*/8596/s/.*/\? -# @@||smartadserver.com/call/pubj/*/8596/s/*/?$script,domain=cuantarazon.com|cuantocabron.com|vistoenfb.com (easylist.txt: 49059) -.smartadserver.com/call/pubj/.*/8596/s/.*/\? - -#ab2p-unblock-request-Aj-Cj-when-R1082 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1082} \ -} -# @@||dasolo.info^$script,domain=dasolo.info (easylistchina+easylist.txt: 60198) -.dasolo.info -# @@||dasolo.info^$script,domain=dasolo.info (easylist.txt: 49713) -.dasolo.info - -#ab2p-unblock-request-Aj-Cj-when-R1084 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1084} \ -} -# @@||dayt.se^$script,domain=dayt.se (easylistchina+easylist.txt: 60200) -.dayt.se -# @@||dayt.se^$script,domain=dayt.se (easylist.txt: 49715) -.dayt.se - -#ab2p-unblock-request-Aj-Cj-when-R1086 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1086} \ -} -# @@||stores-assets.stackcommerce.com^$script,domain=deals.segmentnext.com (easylistchina+easylist.txt: 46041) -.stores-assets.stackcommerce.com -# @@||stores-assets.stackcommerce.com^$script,domain=deals.segmentnext.com (easylist.txt: 35556) -.stores-assets.stackcommerce.com - -#ab2p-unblock-request-Aj-Cj-when-R1088 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1088} \ -} -# @@||doublerecall.com/core.js.php?$script,domain=delo.si (easylistchina+easylist.txt: 61007) -.doublerecall.com/core\.js\.php\? -# @@||doublerecall.com/core.js.php?$script,domain=delo.si (easylist.txt: 50522) -.doublerecall.com/core\.js\.php\? - -#ab2p-unblock-request-Aj-Cj-when-R1089 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1089} \ -} -# @@||demonoid.ooo^$script,domain=demonoid.ooo (easylistchina+easylist.txt: 60206) -.demonoid.ooo -# @@||demonoid.ooo^$script,domain=demonoid.ooo (easylist.txt: 49721) -.demonoid.ooo - -#ab2p-unblock-request-Aj-Cj-when-R1090 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1090} \ -} -# @@||demonoid.ph^$script,domain=demonoid.ph (easylistchina+easylist.txt: 60207) -.demonoid.ph -# @@||demonoid.ph^$script,domain=demonoid.ph (easylist.txt: 49722) -.demonoid.ph - -#ab2p-unblock-request-Aj-Cj-when-R1091 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1091} \ -} -# @@||demonoid.pw^$script,domain=demonoid.pw (easylistchina+easylist.txt: 60208) -.demonoid.pw -# @@||demonoid.pw^$script,domain=demonoid.pw (easylist.txt: 49723) -.demonoid.pw - -#ab2p-unblock-request-Aj-Cj-when-R1094 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1094} \ -} -# @@||oas.di.se^*/di.se/Lopet/*@$script,domain=di.se (easylistchina+easylist.txt: 61076) -.oas.di.se/.*/di\.se/Lopet/.*@ -# @@||oas.di.se^*/di.se/Lopet/*@$script,domain=di.se (easylist.txt: 50591) -.oas.di.se/.*/di\.se/Lopet/.*@ - -#ab2p-unblock-request-Aj-Cj-when-R1096 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1096} \ -} -# @@||advertpay.net/code?$script,domain=dic.academic.ru (advblock.txt: 7625) -.advertpay.net/code\? - -#ab2p-unblock-request-Aj-Cj-when-R1105 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1105} \ -} -# @@||syndication.exoclick.com/ads.php?type=728x90&$script,domain=dirtstyle.tv (easylistchina+easylist.txt: 61776) -.syndication.exoclick.com/ads\.php\?type=728x90& -# @@||syndication.exoclick.com/ads.php?type=728x90&$script,domain=dirtstyle.tv (easylist.txt: 51291) -.syndication.exoclick.com/ads\.php\?type=728x90& - -#ab2p-unblock-request-Aj-Cj-when-R1107 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1107} \ -} -# @@||oascentral.discovery.com/realmedia/ads/adstream_mjx.ads/$script,domain=discovery.com (easylistchina+easylist.txt: 59273) -.oascentral.discovery.com/realmedia/ads/adstream_mjx\.ads/ -# @@||oascentral.discovery.com/realmedia/ads/adstream_mjx.ads/$script,domain=discovery.com (easylist.txt: 48788) -.oascentral.discovery.com/realmedia/ads/adstream_mjx\.ads/ - -#ab2p-unblock-request-Aj-Cj-when-R1110 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1110} \ -} -# @@||a.disquscdn.com/next/embed/$script,domain=disqus.com (easylistchina+easylist.txt: 45835) -.a.disquscdn.com/next/embed/ -# @@||a.disquscdn.com/next/embed/$script,domain=disqus.com (easylist.txt: 35350) -.a.disquscdn.com/next/embed/ - -#ab2p-unblock-request-Aj-Cj-when-R1111 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1111} \ -} -# @@||winwords.adhood.com^$script,domain=dizi-mag.com (easylistchina+easylist.txt: 60898) -.winwords.adhood.com -# @@||winwords.adhood.com^$script,domain=dizi-mag.com (easylist.txt: 50413) -.winwords.adhood.com - -#ab2p-unblock-request-Aj-Cj-when-R1112 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1112} \ -} -# @@||dlh.net^$script,domain=dlh.net (easylistchina+easylist.txt: 60218) -.dlh.net -# @@||dlh.net^$script,domain=dlh.net (easylist.txt: 49733) -.dlh.net - -#ab2p-unblock-request-Aj-Cj-when-R1113 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1113} \ -} -# @@||dnswatch.info^$script,domain=dnswatch.info (easylistchina+easylist.txt: 60219) -.dnswatch.info -# @@||dnswatch.info^$script,domain=dnswatch.info (easylist.txt: 49734) -.dnswatch.info - -#ab2p-unblock-request-Aj-Cj-when-R1117 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1117} \ -} -# @@||dogecoinpuddle.com^$script,domain=dogecoinpuddle.com (easylistchina+easylist.txt: 60222) -.dogecoinpuddle.com -# @@||dogecoinpuddle.com^$script,domain=dogecoinpuddle.com (easylist.txt: 49737) -.dogecoinpuddle.com - -#ab2p-unblock-request-Aj-Cj-when-R1125 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1125} \ -} -# @@||dressupgal.com^$script,domain=dressupgal.com (easylistchina+easylist.txt: 60235) -.dressupgal.com -# @@||dressupgal.com^$script,domain=dressupgal.com (easylist.txt: 49750) -.dressupgal.com - -#ab2p-unblock-request-Aj-Cj-when-R1126 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1126} \ -} -# @@||g.doubleclick.net/gampad/ads?*^slotname=NormalLeaderboard^$script,domain=drivearabia.com (easylistchina+easylist.txt: 60322) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-]slotname=NormalLeaderboard[^\w%.-] -# @@||g.doubleclick.net/gampad/ads?*^slotname=NormalLeaderboard^$script,domain=drivearabia.com (easylist.txt: 49837) -.g.doubleclick.net/gampad/ads\?.*[^\w%.-]slotname=NormalLeaderboard[^\w%.-] - -#ab2p-unblock-request-Aj-Cj-when-R1127 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1127} \ -} -# @@||dollarade.com/overlay_gateway.php?oid=$script,domain=dubs.me|filestore123.info|myfilestore.com|portable77download.blogspot.com|pspmaniaonline.com (easylistchina+easylist.txt: 60224) -.dollarade.com/overlay_gateway\.php\?oid= -# @@||dollarade.com/overlay_gateway.php?oid=$script,domain=dubs.me|filestore123.info|myfilestore.com|portable77download.blogspot.com|pspmaniaonline.com (easylist.txt: 49739) -.dollarade.com/overlay_gateway\.php\?oid= - -#ab2p-unblock-request-Aj-Cj-when-R1139 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1139} \ -} -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/$script,domain=economist.com|feedroom.com|stanford.edu (easylistchina+easylist.txt: 59274) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/ -# @@||oascentral.feedroom.com/realmedia/ads/adstream_sx.ads/$script,domain=economist.com|feedroom.com|stanford.edu (easylist.txt: 48789) -.oascentral.feedroom.com/realmedia/ads/adstream_sx\.ads/ - -#ab2p-unblock-request-Aj-Cj-when-R1140 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1140} \ -} -# @@||adriver.ru/cgi-bin/erle.cgi?*&target=blank&tail$script,domain=eg.ru (advblock.txt: 7619) -.adriver.ru/cgi-bin/erle\.cgi\?.*&target=blank&tail - -#ab2p-unblock-request-Aj-Cj-when-R1145 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1145} \ -} -# @@||nuggad.net/rc?nuggn=$script,domain=ekstrabladet.dk (easylistchina+easylist.txt: 61074) -.nuggad.net/rc\?nuggn= -# @@||nuggad.net/rc?nuggn=$script,domain=ekstrabladet.dk (easylist.txt: 50589) -.nuggad.net/rc\?nuggn= - -#ab2p-unblock-request-Aj-Cj-when-R1152 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1152} \ -} -# @@||openx.ideastudios.ro^$script,domain=enjoydressup.com (easylistchina+easylist.txt: 59299) -.openx.ideastudios.ro -# @@||openx.ideastudios.ro^$script,domain=enjoydressup.com (easylist.txt: 48814) -.openx.ideastudios.ro - -#ab2p-unblock-request-Aj-Cj-when-R1154 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1154} \ -} -# @@||adserver.adtech.de/?adrawdata/3.0/$script,domain=entertainment.ie (easylistchina+easylist.txt: 60024) -.adserver.adtech.de/\?adrawdata/3\.0/ -# @@||adserver.adtech.de/?adrawdata/3.0/$script,domain=entertainment.ie (easylist.txt: 49539) -.adserver.adtech.de/\?adrawdata/3\.0/ - -#ab2p-unblock-request-Aj-Cj-when-R1156 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1156} \ -} -# @@||ad4game.com/www/delivery/video.php?zoneid=$script,domain=escapefan.com (easylistchina+easylist.txt: 58176) -.ad4game.com/www/delivery/video\.php\?zoneid= -# @@||ad4game.com/www/delivery/video.php?zoneid=$script,domain=escapefan.com (easylist.txt: 47691) -.ad4game.com/www/delivery/video\.php\?zoneid= - -#ab2p-unblock-request-Aj-Cj-when-R1157 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1157} \ -} -# @@||sascdn.com/video/$script,domain=eskago.pl (easylistchina+easylist.txt: 60717) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/$script,domain=eskago.pl (easylistchina+easylist.txt: 60716) -.sascdn.com/diff/video/ -# @@||sascdn.com/video/$script,domain=eskago.pl (easylist.txt: 50232) -.sascdn.com/video/ -# @@||sascdn.com/diff/video/$script,domain=eskago.pl (easylist.txt: 50231) -.sascdn.com/diff/video/ - -#ab2p-unblock-request-Aj-Cj-when-R1158 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1158} \ -} -# @@||doubleclick.net/adx/es.esmas.videonot_embed/$script,domain=esmas.com (easylistchina+easylist.txt: 61005) -.doubleclick.net/adx/es\.esmas\.videonot_embed/ -# @@||doubleclick.net/adx/es.esmas.videonot_embed/$script,domain=esmas.com (easylist.txt: 50520) -.doubleclick.net/adx/es\.esmas\.videonot_embed/ - -#ab2p-unblock-request-Aj-Cj-when-R1159 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1159} \ -} -# @@||espncdn.com/combiner/*/admgr.$script,domain=espn.go.com (easylistchina+easylist.txt: 58793) -.espncdn.com/combiner/.*/admgr\. -# @@||espncdn.com/combiner/*/admgr.$script,domain=espn.go.com (easylist.txt: 48308) -.espncdn.com/combiner/.*/admgr\. - -#ab2p-unblock-request-Aj-Cj-when-R1164 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1164} \ -} -# @@||imp*.tradedoubler.com/imp?type(js)$script,domain=europe-airports.com (easylistchina+easylist.txt: 59002) -.imp*./.*\.tradedoubler\.com/imp\?type\(js\) -.imp*.tradedoubler.com/imp\?type\(js\) -# @@||imp*.tradedoubler.com/imp?type(js)$script,domain=europe-airports.com (easylist.txt: 48517) -.imp*./.*\.tradedoubler\.com/imp\?type\(js\) -.imp*.tradedoubler.com/imp\?type\(js\) - -#ab2p-unblock-request-Aj-Cj-when-R1166 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1166} \ -} -# @@||yolohobo.us^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60914) -.yolohobo.us -# @@||rctrails.com^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60692) -.rctrails.com -# @@||doubleclick.net/adj/gn.eventhubs.com/*;sz=728x90;$script,domain=eventhubs.com (easylistchina+easylist.txt: 60228) -.doubleclick.net/adj/gn\.eventhubs\.com/.*;sz=728x90; -# @@||dinglydangly.com^$script,domain=eventhubs.com (easylistchina+easylist.txt: 60213) -.dinglydangly.com -# @@||yolohobo.us^$script,domain=eventhubs.com (easylist.txt: 50429) -.yolohobo.us -# @@||rctrails.com^$script,domain=eventhubs.com (easylist.txt: 50207) -.rctrails.com -# @@||doubleclick.net/adj/gn.eventhubs.com/*;sz=728x90;$script,domain=eventhubs.com (easylist.txt: 49743) -.doubleclick.net/adj/gn\.eventhubs\.com/.*;sz=728x90; -# @@||dinglydangly.com^$script,domain=eventhubs.com (easylist.txt: 49728) -.dinglydangly.com - -#ab2p-unblock-request-Aj-Cj-when-R1890t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1890t} \ -} -# @@|http://$script,third-party,domain=eventhubs.com (easylistchina+easylist.txt: 59942) -# @@|http://$script,third-party,domain=eventhubs.com (easylist.txt: 49457) - -#ab2p-unblock-request-Aj-Cj-when-R197 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R197} \ -} -# @@||ziffprod.com/cse/$script,domain=extremetech.com (easylistchina+easylist.txt: 45852) -.ziffprod.com/cse/ -# @@||disquscdn.com^$script,domain=extremetech.com (easylistchina+easylist.txt: 45850) -.disquscdn.com -# @@||disqus.com^$script,domain=extremetech.com (easylistchina+easylist.txt: 45849) -.disqus.com -# @@||ziffprod.com/cse/$script,domain=extremetech.com (easylist.txt: 35367) -.ziffprod.com/cse/ -# @@||disquscdn.com^$script,domain=extremetech.com (easylist.txt: 35365) -.disquscdn.com -# @@||disqus.com^$script,domain=extremetech.com (easylist.txt: 35364) -.disqus.com - -#ab2p-unblock-request-Aj-Cj-when-R1192 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1192} \ -} -# @@||openx.net/w/$script,domain=fileover.net (easylistchina+easylist.txt: 60613) -.openx.net/w/ -# @@||ax-d.pixfuture.net/w/$script,domain=fileover.net (easylistchina+easylist.txt: 60093) -.ax-d.pixfuture.net/w/ -# @@||openx.net/w/$script,domain=fileover.net (easylist.txt: 50128) -.openx.net/w/ -# @@||ax-d.pixfuture.net/w/$script,domain=fileover.net (easylist.txt: 49608) -.ax-d.pixfuture.net/w/ - -#ab2p-unblock-request-Aj-Cj-when-R1193 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1193} \ -} -# @@||calendrier.science^$script,domain=filerev.cc (easylistchina+easylist.txt: 60132) -.calendrier.science -# @@||calendrier.science^$script,domain=filerev.cc (easylist.txt: 49647) -.calendrier.science - -#ab2p-unblock-request-Aj-Cj-when-R217 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R217} \ -} -# @@||176.31.95.144^$script,domain=filmovizija.in (easylistchina+easylist.txt: 59961) -.176.31.95.144 -# @@/advert*.js?$script,domain=filmovizija.in (easylistchina+easylist.txt: 59919) -/(.*/)?advert.*\.js\? -advert*./.*\.js\? -# @@||vk.com/share.php?$script,domain=filmovizija.in (easylistchina+easylist.txt: 45880) -.vk.com/share\.php\? -# @@||twitter.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45879) -.twitter.com -# @@||share.yandex.ru^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45878) -.share.yandex.ru -# @@||histats.com/stats/$script,domain=filmovizija.in (easylistchina+easylist.txt: 45877) -.histats.com/stats/ -# @@||feeds.delicious.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45876) -.feeds.delicious.com -# @@||facebook.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45875) -.facebook.com -# @@||api.pinterest.com^$script,domain=filmovizija.in (easylistchina+easylist.txt: 45874) -.api.pinterest.com -# @@||176.31.95.144^$script,domain=filmovizija.in (easylist.txt: 49476) -.176.31.95.144 -# @@/advert*.js?$script,domain=filmovizija.in (easylist.txt: 49434) -/(.*/)?advert.*\.js\? -advert*./.*\.js\? -# @@||vk.com/share.php?$script,domain=filmovizija.in (easylist.txt: 35395) -.vk.com/share\.php\? -# @@||twitter.com^$script,domain=filmovizija.in (easylist.txt: 35394) -.twitter.com -# @@||share.yandex.ru^$script,domain=filmovizija.in (easylist.txt: 35393) -.share.yandex.ru -# @@||histats.com/stats/$script,domain=filmovizija.in (easylist.txt: 35392) -.histats.com/stats/ -# @@||feeds.delicious.com^$script,domain=filmovizija.in (easylist.txt: 35391) -.feeds.delicious.com -# @@||facebook.com^$script,domain=filmovizija.in (easylist.txt: 35390) -.facebook.com -# @@||api.pinterest.com^$script,domain=filmovizija.in (easylist.txt: 35389) -.api.pinterest.com - -#ab2p-unblock-request-Aj-Cj-when-R690t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R690t} \ -} -# @@|http://*.*_$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 59944) -/.*\..*_ -.*.*./.*_ -# @@|http://*.*=$script,third-party,domain=filmovizija.in (easylistchina+easylist.txt: 59943) -/.*\..*= -.*.*./.*= -# @@|http://*.*_$script,third-party,domain=filmovizija.in (easylist.txt: 49459) -/.*\..*_ -.*.*./.*_ -# @@|http://*.*=$script,third-party,domain=filmovizija.in (easylist.txt: 49458) -/.*\..*= -.*.*./.*= - -#ab2p-unblock-request-Aj-Cj-when-R1196 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1196} \ -} -# @@||fwcdn.pl^$script,domain=filmweb.pl (easylistchina+easylist.txt: 60316) -.fwcdn.pl -# @@||fwcdn.pl^$script,domain=filmweb.pl (easylist.txt: 49831) -.fwcdn.pl - -#ab2p-unblock-request-Aj-Cj-when-R1197 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1197} \ -} -# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina+easylist.txt: 10371) +# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina.txt: 10358) .sinaimg.cn/cj/deco/ -#ab2p-unblock-request-Aj-Cj-when-R1199 +#ab2p-unblock-request-Aj-Cj-when-R244 {-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1199} \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R244} \ } -# @@||pagead2.googlesyndication.com/pub-config/ca-pub-$script,domain=firstonetv.com (easylistchina+easylist.txt: 60630) -.pagead2.googlesyndication.com/pub-config/ca-pub- -# @@||firstonetv.com^$script,domain=firstonetv.com (easylistchina+easylist.txt: 60291) -.firstonetv.com -# @@||pagead2.googlesyndication.com/pub-config/ca-pub-$script,domain=firstonetv.com (easylist.txt: 50145) -.pagead2.googlesyndication.com/pub-config/ca-pub- -# @@||firstonetv.com^$script,domain=firstonetv.com (easylist.txt: 49806) -.firstonetv.com - -#ab2p-unblock-request-Aj-Cj-when-R221 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R221} \ -} -# @@||adspynet.com/test?*&oin=0$script,domain=fishki.net (advblock.txt: 7623) -.adspynet.com/test\?.*&oin=0 -# @@||adspynet.com/code?*&oin=0&$script,domain=fishki.net (advblock.txt: 7622) -.adspynet.com/code\?.*&oin=0& - -#ab2p-unblock-request-Aj-Cj-when-R1204 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1204} \ -} -# @@||e70123.com^$script,domain=flv.tv (easylistchina+easylist.txt: 10235) +# @@||f70123.com^$script,domain=flv.tv (easylistchina.txt: 10233) +.f70123.com +# @@||e719.net^$script,domain=flv.tv (easylistchina.txt: 10222) +.e719.net +# @@||e70123.com^$script,domain=flv.tv (easylistchina.txt: 10221) .e70123.com -# @@||70e.com^$script,domain=flv.tv (easylistchina+easylist.txt: 10117) +# @@||e701.net^$script,domain=flv.tv (easylistchina.txt: 10219) +.e701.net +# @@||70e.com^$script,domain=flv.tv (easylistchina.txt: 10099) .70e.com -#ab2p-unblock-request-Aj-Cj-when-R1205 +#ab2p-unblock-request-Aj-Cj-when-R264 {-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1205} \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R264} \ } -# @@||fastclick.net/w/get.media?sid=58322&tp=5&$script,domain=flv2mp3.com (easylistchina+easylist.txt: 60270) -.fastclick.net/w/get\.media\?sid=58322&tp=5& -# @@||fastclick.net/w/get.media?sid=58322&tp=5&$script,domain=flv2mp3.com (easylist.txt: 49785) -.fastclick.net/w/get\.media\?sid=58322&tp=5& - -#ab2p-unblock-request-Aj-Cj-when-R1208 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1208} \ -} -# @@||adsremote.scrippsnetworks.com/js.ng/adtype=vsw$script,domain=food.com (easylistchina+easylist.txt: 58312) -.adsremote.scrippsnetworks.com/js\.ng/adtype=vsw -# @@||adsremote.scrippsnetworks.com/js.ng/adtype=vsw$script,domain=food.com (easylist.txt: 47827) -.adsremote.scrippsnetworks.com/js\.ng/adtype=vsw - -#ab2p-unblock-request-Aj-Cj-when-R1211 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1211} \ -} -# @@||g.doubleclick.net/gampad/ads?*www.forbes.com%2Ffdc%2Fwelcome_mjx.shtml$script,domain=forbes.com (easylistchina+easylist.txt: 58852) -.g.doubleclick.net/gampad/ads\?.*www\.forbes\.com%2Ffdc%2Fwelcome_mjx\.shtml -# @@||doubleclick.net^*/fdc.forbes/*;pos=thought;$script,domain=forbes.com (easylistchina+easylist.txt: 58732) -.doubleclick.net/.*/fdc\.forbes/.*;pos=thought; -# @@||ad.doubleclick.net/N7175/adj/fdc.forbes/welcome;id=fdc/welcome;pos=thoughtx;$script,domain=forbes.com (easylistchina+easylist.txt: 58159) -.ad.doubleclick.net/N7175/adj/fdc\.forbes/welcome;id=fdc/welcome;pos=thoughtx; -# @@||g.doubleclick.net/gampad/ads?*www.forbes.com%2Ffdc%2Fwelcome_mjx.shtml$script,domain=forbes.com (easylist.txt: 48367) -.g.doubleclick.net/gampad/ads\?.*www\.forbes\.com%2Ffdc%2Fwelcome_mjx\.shtml -# @@||doubleclick.net^*/fdc.forbes/*;pos=thought;$script,domain=forbes.com (easylist.txt: 48247) -.doubleclick.net/.*/fdc\.forbes/.*;pos=thought; -# @@||ad.doubleclick.net/N7175/adj/fdc.forbes/welcome;id=fdc/welcome;pos=thoughtx;$script,domain=forbes.com (easylist.txt: 47674) -.ad.doubleclick.net/N7175/adj/fdc\.forbes/welcome;id=fdc/welcome;pos=thoughtx; - -#ab2p-unblock-request-Aj-Cj-when-R1213 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1213} \ -} -# @@||intellitxt.com/intellitxt/front.asp?ipid=$script,domain=forums.tweaktown.com (easylistchina+easylist.txt: 60425) -.intellitxt.com/intellitxt/front\.asp\?ipid= -# @@||intellitxt.com/intellitxt/front.asp?ipid=$script,domain=forums.tweaktown.com (easylist.txt: 49940) -.intellitxt.com/intellitxt/front\.asp\?ipid= - -#ab2p-unblock-request-Aj-Cj-when-R1215 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1215} \ -} -# @@||tapad.com/tapestry/tapestry-$script,domain=foxnews.com (easylistchina+easylist.txt: 59621) -.tapad.com/tapestry/tapestry- -# @@||tapad.com/tapestry/1?ta_partner_id=$script,domain=foxnews.com (easylistchina+easylist.txt: 59620) -.tapad.com/tapestry/1\?ta_partner_id= -# @@||tapad.com/tapestry/tapestry-$script,domain=foxnews.com (easylist.txt: 49136) -.tapad.com/tapestry/tapestry- -# @@||tapad.com/tapestry/1?ta_partner_id=$script,domain=foxnews.com (easylist.txt: 49135) -.tapad.com/tapestry/1\?ta_partner_id= - -#ab2p-unblock-request-Aj-Cj-when-R1218 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1218} \ -} -# @@||cpalead.com/mygateway.php?pub=$script,domain=free-space.net|hxcmusic.com|hxcmusic.me|justfortrendygirls.com|mmusicz.com|receive-sms.com|runescapehack.net|spotifyripping.com|stumblehere.com|tvgorge.com|tvokay.com|videodownloadx.com|wtso.net (easylistchina+easylist.txt: 60184) -.cpalead.com/mygateway\.php\?pub= -# @@||cpalead.com/mygateway.php?pub=$script,domain=free-space.net|hxcmusic.com|hxcmusic.me|justfortrendygirls.com|mmusicz.com|receive-sms.com|runescapehack.net|spotifyripping.com|stumblehere.com|tvgorge.com|tvokay.com|videodownloadx.com|wtso.net (easylist.txt: 49699) -.cpalead.com/mygateway\.php\?pub= - -#ab2p-unblock-request-Aj-Cj-when-R1223 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1223} \ -} -# @@||cpalead.com/gwjs.php?pub=$script,domain=freebitcoinz.com|youserials.com (easylistchina+easylist.txt: 60183) -.cpalead.com/gwjs\.php\?pub= -# @@||cpalead.com/gwjs.php?pub=$script,domain=freebitcoinz.com|youserials.com (easylist.txt: 49698) -.cpalead.com/gwjs\.php\?pub= - -#ab2p-unblock-request-Aj-Cj-when-R1229 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1229} \ -} -# @@||dotua.org/js/ads.js|$script,domain=fs.to (advblock.txt: 7563) -.dotua.org/js/ads\.js$ - -#ab2p-unblock-request-Aj-Cj-when-R1230 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1230} \ -} -# @@||doubleclick.net^*/ftcom.*;sz=1x1;*;pos=refresh;$script,domain=ft.com (easylistchina+easylist.txt: 58733) -.doubleclick.net/.*/ftcom\..*;sz=1x1;.*;pos=refresh; -# @@||doubleclick.net^*/ftcom.*;sz=1x1;*;pos=refresh;$script,domain=ft.com (easylist.txt: 48248) -.doubleclick.net/.*/ftcom\..*;sz=1x1;.*;pos=refresh; - -#ab2p-unblock-request-Aj-Cj-when-R1240 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1240} \ -} -# @@||games-tv.ru/openx/www/delivery/ajs.php?$script,domain=games-tv.ru (advblock.txt: 7301) -.games-tv.ru/openx/www/delivery/ajs\.php\? - -#ab2p-unblock-request-Aj-Cj-when-R1241 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1241} \ -} -# @@||ads.spilgames.com/ad/$script,domain=games.co.uk (easylistchina+easylist.txt: 58265) -.ads.spilgames.com/ad/ -# @@||ads.spilgames.com/ad/$script,domain=games.co.uk (easylist.txt: 47780) -.ads.spilgames.com/ad/ - -#ab2p-unblock-request-Aj-Cj-when-R1242 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1242} \ -} -# @@||d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement-$script,domain=games.softgames.de (easylistchina+easylist.txt: 60195) -.d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement- -# @@||d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement-$script,domain=games.softgames.de (easylist.txt: 49710) -.d3tlss08qwqpkt.cloudfront.net/assets/api/advertisement- - -#ab2p-unblock-request-Aj-Cj-when-R1246 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1246} \ -} -# @@||g.doubleclick.net/gampad/ads?gdfp_req=1&$script,domain=gamespot.com (easylistchina+easylist.txt: 60327) -.g.doubleclick.net/gampad/ads\?gdfp_req=1& -# @@||g.doubleclick.net/gampad/ads?gdfp_req=1&$script,domain=gamespot.com (easylist.txt: 49842) -.g.doubleclick.net/gampad/ads\?gdfp_req=1& - -#ab2p-unblock-request-Aj-Cj-when-R1254 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1254} \ -} -# @@||doubleclick.net/adj/gamesco.socialgaming/$script,domain=ghsrv.com (easylistchina+easylist.txt: 58710) -.doubleclick.net/adj/gamesco\.socialgaming/ -# @@||doubleclick.net/adj/gamesco.socialgaming/$script,domain=ghsrv.com (easylist.txt: 48225) -.doubleclick.net/adj/gamesco\.socialgaming/ - -#ab2p-unblock-request-Aj-Cj-when-R1266 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1266} \ -} -# @@||gannett.gcion.com/addyn/$script,domain=greenbaypressgazette.com|wcsh6.com (easylistchina+easylist.txt: 58868) -.gannett.gcion.com/addyn/ -# @@||gannett.gcion.com/addyn/$script,domain=greenbaypressgazette.com|wcsh6.com (easylist.txt: 48383) -.gannett.gcion.com/addyn/ - -#ab2p-unblock-request-Aj-Cj-when-R1267 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1267} \ -} -# @@/mod_jpayday/js/*$script,domain=gsmpro.com.pl|lechia.net (easylistchina+easylist.txt: 59928) -/(.*/)?mod_jpayday/js/.* -# @@/mod_jpayday/js/*$script,domain=gsmpro.com.pl|lechia.net (easylist.txt: 49443) -/(.*/)?mod_jpayday/js/.* - -#ab2p-unblock-request-Aj-Cj-when-R1269 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1269} \ -} -# @@||google.com/uds/api/ads/$script,domain=guardian.co.uk (easylistchina+easylist.txt: 58907) -.google.com/uds/api/ads/ -# @@||google.com/uds/api/ads/$script,domain=guardian.co.uk (easylist.txt: 48422) -.google.com/uds/api/ads/ - -#ab2p-unblock-request-Aj-Cj-when-R1270 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1270} \ -} -# @@||google.com/uds/?file=ads&$script,domain=guardian.co.uk|landandfarm.com (easylistchina+easylist.txt: 58905) -.google.com/uds/\?file=ads& -# @@||google.com/uds/?file=ads&$script,domain=guardian.co.uk|landandfarm.com (easylist.txt: 48420) -.google.com/uds/\?file=ads& - -#ab2p-unblock-request-Aj-Cj-when-R1891t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1891t} \ -} -# @@||cdn.playwire.com^$script,third-party,domain=heroichollywood.com|supercheats.com (easylistchina+easylist.txt: 45955) -.cdn.playwire.com -# @@||cdn.playwire.com^$script,third-party,domain=heroichollywood.com|supercheats.com (easylist.txt: 35470) -.cdn.playwire.com - -#ab2p-unblock-request-Aj-Cj-when-R1892t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1892t} \ -} -# @@||static.squarespace.com^$script,third-party,domain=heroichollywood.com (easylistchina+easylist.txt: 46040) -.static.squarespace.com -# @@||static.squarespace.com^$script,third-party,domain=heroichollywood.com (easylist.txt: 35555) -.static.squarespace.com - -#ab2p-unblock-request-Aj-Cj-when-R1291 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1291} \ -} -# @@||a.intentmedia.net/adServer/$script,domain=hotwire.com (easylistchina+easylist.txt: 58139) -.a.intentmedia.net/adServer/ -# @@||a.intentmedia.net/adServer/$script,domain=hotwire.com (easylist.txt: 47654) -.a.intentmedia.net/adServer/ - -#ab2p-unblock-request-Aj-Cj-when-R1294 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1294} \ -} -# @@||sms-mmm.com/script.php|$script,domain=hqq.tv (easylistchina+easylist.txt: 60751) -.sms-mmm.com/script\.php$ -# @@||google-it.info^$script,domain=hqq.tv (easylistchina+easylist.txt: 60361) -.google-it.info -# @@||sms-mmm.com/script.php|$script,domain=hqq.tv (easylist.txt: 50266) -.sms-mmm.com/script\.php$ -# @@||google-it.info^$script,domain=hqq.tv (easylist.txt: 49876) -.google-it.info - -#ab2p-unblock-request-Aj-Cj-when-R1300 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1300} \ -} -# @@||lijit.com///www/delivery/fpi.js?*&width=728&height=90$script,domain=hypeseek.com (easylistchina+easylist.txt: 59086) -# @@||lijit.com///www/delivery/fpi.js?*&width=728&height=90$script,domain=hypeseek.com (easylist.txt: 48601) - -#ab2p-unblock-request-Aj-Cj-when-R1301 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1301} \ -} -# @@||i-makeawish.com^$script,domain=i-makeawish.com (easylistchina+easylist.txt: 60390) -.i-makeawish.com -# @@||i-makeawish.com^$script,domain=i-makeawish.com (easylist.txt: 49905) -.i-makeawish.com - -#ab2p-unblock-request-Aj-Cj-when-R1303 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1303} \ -} -# @@||bbelements.com/please/showit/*/?typkodu=$script,domain=idnes.cz|moviezone.cz (easylistchina+easylist.txt: 60990) -.bbelements.com/please/showit/.*/\?typkodu= -# @@||bbelements.com/please/showit/*/?typkodu=$script,domain=idnes.cz|moviezone.cz (easylist.txt: 50505) -.bbelements.com/please/showit/.*/\?typkodu= - -#ab2p-unblock-request-Aj-Cj-when-R1304 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1304} \ -} -# @@||ifirstrowit.eu^$script,domain=ifirstrowit.eu (easylistchina+easylist.txt: 60396) -.ifirstrowit.eu -# @@||ifirstrowit.eu^$script,domain=ifirstrowit.eu (easylist.txt: 49911) -.ifirstrowit.eu - -#ab2p-unblock-request-Aj-Cj-when-R1305 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1305} \ -} -# @@||ifirstrowus.eu^$script,domain=ifirstrowus.eu (easylistchina+easylist.txt: 60397) -.ifirstrowus.eu -# @@||ifirstrowus.eu^$script,domain=ifirstrowus.eu (easylist.txt: 49912) -.ifirstrowus.eu - -#ab2p-unblock-request-Aj-Cj-when-R1306 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1306} \ -} -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/drf?$script,domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58744) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/drf\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/advertisers?$script,domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58743) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/advertisers\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/drf?$script,domain=igougo.com|travelocity.com (easylist.txt: 48259) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/drf\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/drfcomms/advertisers?$script,domain=igougo.com|travelocity.com (easylist.txt: 48258) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/drfcomms/advertisers\? - -#ab2p-unblock-request-Aj-Cj-when-R1308 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1308} \ -} -# @@/adriver.core.$script,domain=iguides.ru|tvigle.ru|wikimart.ru (advblock.txt: 7186) -/(.*/)?adriver\.core\. -adriver.core.*. - -#ab2p-unblock-request-Aj-Cj-when-R1311 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1311} \ -} -# @@||fasts.tv^$script,domain=ilive.to (easylistchina+easylist.txt: 60276) -.fasts.tv -# @@||concutao.tk^$script,domain=ilive.to (easylistchina+easylist.txt: 60178) -.concutao.tk -# @@|http://*.tk^$script,domain=ilive.to (easylistchina+easylist.txt: 59953) -/.*\.tk[^\w%.-] -.*.tk -# @@||fasts.tv^$script,domain=ilive.to (easylist.txt: 49791) -.fasts.tv -# @@||concutao.tk^$script,domain=ilive.to (easylist.txt: 49693) -.concutao.tk -# @@|http://*.tk^$script,domain=ilive.to (easylist.txt: 49468) -/.*\.tk[^\w%.-] -.*.tk - -#ab2p-unblock-request-Aj-Cj-when-R1312 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1312} \ -} -# @@||priva.us^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60671) -.priva.us -# @@||info.tm^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60417) -.info.tm -# @@||ilix.in^$script,domain=ilix.in|priva.us (easylistchina+easylist.txt: 60401) -.ilix.in -# @@||priva.us^$script,domain=ilix.in|priva.us (easylist.txt: 50186) -.priva.us -# @@||info.tm^$script,domain=ilix.in|priva.us (easylist.txt: 49932) -.info.tm -# @@||ilix.in^$script,domain=ilix.in|priva.us (easylist.txt: 49916) -.ilix.in - -#ab2p-unblock-request-Aj-Cj-when-R1313 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1313} \ -} -# @@||biz.tm^$script,domain=ilix.in|priva.us|urlink.at (easylistchina+easylist.txt: 60120) -.biz.tm -# @@||biz.tm^$script,domain=ilix.in|priva.us|urlink.at (easylist.txt: 49635) -.biz.tm - -#ab2p-unblock-request-Aj-Cj-when-R1318 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1318} \ -} -# @@||exoclick.com/ads.php?*login$script,domain=imgserve.net|imgtiger.com (easylistchina+easylist.txt: 58802) -.exoclick.com/ads\.php\?.*login -# @@||exoclick.com/ads.php?*login$script,domain=imgserve.net|imgtiger.com (easylist.txt: 48317) -.exoclick.com/ads\.php\?.*login - -#ab2p-unblock-request-Aj-Cj-when-R1323 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1323} \ -} -# @@||tremormedia.com/acudeo/$script,domain=indiatimes.com (easylistchina+easylist.txt: 59698) -.tremormedia.com/acudeo/ -# @@||tremormedia.com/acudeo/$script,domain=indiatimes.com (easylist.txt: 49213) -.tremormedia.com/acudeo/ - -#ab2p-unblock-request-Aj-Cj-when-R1331 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1331} \ -} -# @@||ip-address.org^$script,domain=ip-address.org (easylistchina+easylist.txt: 60431) -.ip-address.org -# @@||ip-address.org^$script,domain=ip-address.org (easylist.txt: 49946) -.ip-address.org - -#ab2p-unblock-request-Aj-Cj-when-R1334 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1334} \ -} -# @@||bw.pronto.ru/brick$script,domain=irr.ru (advblock.txt: 7628) -.bw.pronto.ru/brick - -#ab2p-unblock-request-Aj-Cj-when-R1335 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1335} \ -} -# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina+easylist.txt: 10129) +# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina.txt: 10113) .ad.3.cn/ads/mgets\? -#ab2p-unblock-request-Aj-Cj-when-R1338 +#ab2p-unblock-request-Aj-Cj-when-R284 {-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1338} \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R284} \ } -# @@||itv.com/itv/lserver/jserver/area=*/pubtype=home/*showad=true/*/size=resptakeover/$script,domain=itv.com (easylistchina+easylist.txt: 59038) -.itv.com/itv/lserver/jserver/area=.*/pubtype=home/.*showad=true/.*/size=resptakeover/ -# @@||itv.com/itv/jserver/$script,domain=itv.com (easylistchina+easylist.txt: 59037) -.itv.com/itv/jserver/ -# @@||itv.com/itv/lserver/jserver/area=*/pubtype=home/*showad=true/*/size=resptakeover/$script,domain=itv.com (easylist.txt: 48553) -.itv.com/itv/lserver/jserver/area=.*/pubtype=home/.*showad=true/.*/size=resptakeover/ -# @@||itv.com/itv/jserver/$script,domain=itv.com (easylist.txt: 48552) -.itv.com/itv/jserver/ - -#ab2p-unblock-request-Aj-Cj-when-R1344 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1344} \ -} -# @@||jamo.tv^$script,domain=jamo.tv (easylistchina+easylist.txt: 61745) -.jamo.tv -# @@||jamo.tv^$script,domain=jamo.tv (easylist.txt: 51260) -.jamo.tv - -#ab2p-unblock-request-Aj-Cj-when-R1345 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1345} \ -} -# @@||jav4.me^$script,domain=jav4.me (easylistchina+easylist.txt: 61746) -.jav4.me -# @@||jav4.me^$script,domain=jav4.me (easylist.txt: 51261) -.jav4.me - -#ab2p-unblock-request-Aj-Cj-when-R1346 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1346} \ -} -# @@||javfee.com^$script,domain=javfee.com (easylistchina+easylist.txt: 61747) -.javfee.com -# @@||javfee.com^$script,domain=javfee.com (easylist.txt: 51262) -.javfee.com - -#ab2p-unblock-request-Aj-Cj-when-R1350 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1350} \ -} -# @@||jkhentai.tv^$script,domain=jkhentai.tv (easylistchina+easylist.txt: 61753) -.jkhentai.tv -# @@||jkhentai.tv^$script,domain=jkhentai.tv (easylist.txt: 51268) -.jkhentai.tv - -#ab2p-unblock-request-Aj-Cj-when-R1358 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1358} \ -} -# @@/prepareCode?*&dl=$script,domain=kakprosto.ru|rusplt.ru|sobesednik.ru (advblock.txt: 7617) -/(.*/)?prepareCode\?.*&dl= - -#ab2p-unblock-request-Aj-Cj-when-R1361 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1361} \ -} -# @@||liverail.com/js/LiveRail.Interstitial-$script,domain=keygames.com (easylistchina+easylist.txt: 59103) -.liverail.com/js/LiveRail\.Interstitial- -# @@||liverail.com/js/LiveRail.Interstitial-$script,domain=keygames.com (easylist.txt: 48618) -.liverail.com/js/LiveRail\.Interstitial- - -#ab2p-unblock-request-Aj-Cj-when-R1363 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1363} \ -} -# @@/ads.js|$script,domain=kinomoov.net|vgtimes.ru (advblock.txt: 7526) -/(.*/)?ads\.js$ -ads.js - -#ab2p-unblock-request-Aj-Cj-when-R1364 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1364} \ -} -# @@||awaps.yandex.ru^*_video_$script,domain=kinopoisk.ru (advblock.txt: 7272) -.awaps.yandex.ru/.*_video_ - -#ab2p-unblock-request-Aj-Cj-when-R306 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R306} \ -} -# @@||mgid.com/k/i/kissanime.com.$script,domain=kissanime.com (easylistchina+easylist.txt: 60521) -.mgid.com/k/i/kissanime\.com\. -# @@||mgid.com/k/i/*.js?t=$script,domain=kissanime.com (easylistchina+easylist.txt: 60520) -.mgid.com/k/i/.*\.js\?t= -# @@||dropboxusercontent.com/*ad$script,domain=kissanime.com (easylistchina+easylist.txt: 60237) -.dropboxusercontent.com/.*ad -# @@||cpxinteractive.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60189) -.cpxinteractive.com -# @@||cpmtree.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60188) -.cpmtree.com -# @@||cpmstar.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60187) -.cpmstar.com -# @@||cdn.mgid.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60143) -.cdn.mgid.com -# @@||adnxs.com^$script,domain=kissanime.com (easylistchina+easylist.txt: 60003) -.adnxs.com -# @@|https://$script,domain=kissanime.com (easylistchina+easylist.txt: 59959) -# @@||mgid.com/k/i/kissanime.com.$script,domain=kissanime.com (easylist.txt: 50036) -.mgid.com/k/i/kissanime\.com\. -# @@||mgid.com/k/i/*.js?t=$script,domain=kissanime.com (easylist.txt: 50035) -.mgid.com/k/i/.*\.js\?t= -# @@||dropboxusercontent.com/*ad$script,domain=kissanime.com (easylist.txt: 49752) -.dropboxusercontent.com/.*ad -# @@||cpxinteractive.com^$script,domain=kissanime.com (easylist.txt: 49704) -.cpxinteractive.com -# @@||cpmtree.com^$script,domain=kissanime.com (easylist.txt: 49703) -.cpmtree.com -# @@||cpmstar.com^$script,domain=kissanime.com (easylist.txt: 49702) -.cpmstar.com -# @@||cdn.mgid.com^$script,domain=kissanime.com (easylist.txt: 49658) -.cdn.mgid.com -# @@||adnxs.com^$script,domain=kissanime.com (easylist.txt: 49518) -.adnxs.com -# @@|https://$script,domain=kissanime.com (easylist.txt: 49474) - -#ab2p-unblock-request-Aj-Cj-when-R1365 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1365} \ -} -# @@||adprotected.com/tags/$script,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 60005) -.adprotected.com/tags/ -# @@||ad4game.com/js/$script,domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 59986) -.ad4game.com/js/ -# @@||adprotected.com/tags/$script,domain=kissanime.com|kisscartoon.me (easylist.txt: 49520) -.adprotected.com/tags/ -# @@||ad4game.com/js/$script,domain=kissanime.com|kisscartoon.me (easylist.txt: 49501) -.ad4game.com/js/ - -#ab2p-unblock-request-Aj-Cj-when-R711t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R711t} \ -} -# @@|http://*.js?_=$script,third-party,domain=kissanime.com (easylistchina+easylist.txt: 59948) -/.*\.js\?_= -# @@|http://*.js?_=$script,third-party,domain=kissanime.com (easylist.txt: 49463) -/.*\.js\?_= - -#ab2p-unblock-request-Aj-Cj-when-R1367 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1367} \ -} -# @@||tester.advertserve.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60792) -.tester.advertserve.com -# @@||mgid.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60524) -.mgid.com -# @@||cibleclick.com^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 60159) -.cibleclick.com -# @@||adadvisor.net^$script,domain=kisscartoon.me (easylistchina+easylist.txt: 59987) -.adadvisor.net -# @@||tester.advertserve.com^$script,domain=kisscartoon.me (easylist.txt: 50307) -.tester.advertserve.com -# @@||mgid.com^$script,domain=kisscartoon.me (easylist.txt: 50039) -.mgid.com -# @@||cibleclick.com^$script,domain=kisscartoon.me (easylist.txt: 49674) -.cibleclick.com -# @@||adadvisor.net^$script,domain=kisscartoon.me (easylist.txt: 49502) -.adadvisor.net - -#ab2p-unblock-request-Aj-Cj-when-R1370 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1370} \ -} -# @@||cas.clickability.com/cas/cas.js?r=$script,domain=kmvt.com (easylistchina+easylist.txt: 58548) -.cas.clickability.com/cas/cas\.js\?r= -# @@||cas.clickability.com/cas/cas.js?r=$script,domain=kmvt.com (easylist.txt: 48063) -.cas.clickability.com/cas/cas\.js\?r= - -#ab2p-unblock-request-Aj-Cj-when-R1376 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1376} \ -} -# @@||doubleclick.net/adj/kval/health;pos=gallerytop;sz=$script,domain=kval.com (easylistchina+easylist.txt: 58712) -.doubleclick.net/adj/kval/health;pos=gallerytop;sz= -# @@||doubleclick.net/adj/kval/health;pos=gallerytop;sz=$script,domain=kval.com (easylist.txt: 48227) -.doubleclick.net/adj/kval/health;pos=gallerytop;sz= - -#ab2p-unblock-request-Aj-Cj-when-R1377 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1377} \ -} -# @@||google.com/uds/api/ads/*/search.$script,domain=landandfarm.com|query.nytimes.com|trustedreviews.com|www.google.com (easylistchina+easylist.txt: 58908) -.google.com/uds/api/ads/.*/search\. -# @@||google.com/uds/api/ads/*/search.$script,domain=landandfarm.com|query.nytimes.com|trustedreviews.com|www.google.com (easylist.txt: 48423) -.google.com/uds/api/ads/.*/search\. - -#ab2p-unblock-request-Aj-Cj-when-R1893t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1893t} \ -} -# @@||latinospost.com/widget_init.php$script,third-party,domain=latinopost.com (easylistchina+easylist.txt: 46007) -.latinospost.com/widget_init\.php -# @@||boomsbeat.com/widget_init.php$script,third-party,domain=latinopost.com (easylistchina+easylist.txt: 45954) -.boomsbeat.com/widget_init\.php -# @@||latinospost.com/widget_init.php$script,third-party,domain=latinopost.com (easylist.txt: 35522) -.latinospost.com/widget_init\.php -# @@||boomsbeat.com/widget_init.php$script,third-party,domain=latinopost.com (easylist.txt: 35469) -.boomsbeat.com/widget_init\.php - -#ab2p-unblock-request-Aj-Cj-when-R1380 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1380} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=lavozdegalicia.es (easylistchina+easylist.txt: 61082) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||g.doubleclick.net/gampad/ads?*_Ligatus&$script,domain=lavozdegalicia.es (easylistchina+easylist.txt: 61032) -.g.doubleclick.net/gampad/ads\?.*_Ligatus& -# @@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=lavozdegalicia.es (easylist.txt: 50597) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||g.doubleclick.net/gampad/ads?*_Ligatus&$script,domain=lavozdegalicia.es (easylist.txt: 50547) -.g.doubleclick.net/gampad/ads\?.*_Ligatus& - -#ab2p-unblock-request-Aj-Cj-when-R1383 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1383} \ -} -# @@.custom.min.js$script,domain=lenta.ru|news.rambler.ru (advblock.txt: 7178) -/.*\.custom\.min\.js -.*.custom.min.js*. - -#ab2p-unblock-request-Aj-Cj-when-R1393 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1393} \ -} -# @@||livejournal.com/js/??*?v=$script,domain=livejournal.com (advblock.txt: 7325) -.livejournal.com/js/\?\?.*\?v= - -#ab2p-unblock-request-Aj-Cj-when-R1403 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1403} \ -} -# @@||lostfilm.info^$script,domain=lostfilm.tv (advblock.txt: 691) -.lostfilm.info - -#ab2p-unblock-request-Aj-Cj-when-R1404 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1404} \ -} -# @@||ad.adorika.com/st?ad_type=ad&ad_size=728x90$script,domain=lshunter.tv (easylistchina+easylist.txt: 58149) -.ad.adorika.com/st\?ad_type=ad&ad_size=728x90 -# @@||ad.adorika.com/st?ad_type=ad&ad_size=728x90$script,domain=lshunter.tv (easylist.txt: 47664) -.ad.adorika.com/st\?ad_type=ad&ad_size=728x90 - -#ab2p-unblock-request-Aj-Cj-when-R1408 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1408} \ -} -# @@||mackolik.com^$script,domain=mackolik.com (easylistchina+easylist.txt: 60481) -.mackolik.com -# @@||mackolik.com^$script,domain=mackolik.com (easylist.txt: 49996) -.mackolik.com - -#ab2p-unblock-request-Aj-Cj-when-R1409 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1409} \ -} -# @@||admost.com/adx/get.ashx?$script,domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60001) -.admost.com/adx/get\.ashx\? -# @@||admost.com/adx/get.ashx?$script,domain=mackolik.com|sahadan.com (easylist.txt: 49516) -.admost.com/adx/get\.ashx\? - -#ab2p-unblock-request-Aj-Cj-when-R326 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R326} \ -} -# @@||adserver.yahoo.com/a?*=headr$script,domain=mail.yahoo.com (easylistchina+easylist.txt: 58299) -.adserver.yahoo.com/a\?.*=headr -# @@||adserver.yahoo.com/a?*=headr$script,domain=mail.yahoo.com (easylist.txt: 47814) -.adserver.yahoo.com/a\?.*=headr - -#ab2p-unblock-request-Aj-Cj-when-R1416 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1416} \ -} -# @@||ads.rubiconproject.com/ad/$script,domain=manga2u.co|mangabird.com|memegenerator.net|onemanga.me|waoanime.tv (easylistchina+easylist.txt: 60018) -.ads.rubiconproject.com/ad/ -# @@||ads.rubiconproject.com/ad/$script,domain=manga2u.co|mangabird.com|memegenerator.net|onemanga.me|waoanime.tv (easylist.txt: 49533) -.ads.rubiconproject.com/ad/ - -#ab2p-unblock-request-Aj-Cj-when-R1423 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1423} \ -} -# @@||doubleclick.net/adj/oiq.man.$script,domain=manualsonline.com (easylistchina+easylist.txt: 58714) -.doubleclick.net/adj/oiq\.man\. -# @@||doubleclick.net/adj/oiq.man.$script,domain=manualsonline.com (easylist.txt: 48229) -.doubleclick.net/adj/oiq\.man\. - -#ab2p-unblock-request-Aj-Cj-when-R1425 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1425} \ -} -# @@||reklama.hiking.sk/openx_new/www/delivery/spcjs.php?id=*&target=_blank$script,domain=mapy.hiking.sk (easylistchina+easylist.txt: 61096) -.reklama.hiking.sk/openx_new/www/delivery/spcjs\.php\?id=.*&target=_blank -# @@||reklama.hiking.sk/openx_new/www/delivery/spcjs.php?id=*&target=_blank$script,domain=mapy.hiking.sk (easylist.txt: 50611) -.reklama.hiking.sk/openx_new/www/delivery/spcjs\.php\?id=.*&target=_blank - -#ab2p-unblock-request-Aj-Cj-when-R1430 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1430} \ -} -# @@||nba.com/mobilevideo?*&ad_url=$script,domain=mavs.wpengine.netdna-cdn.com (easylistchina+easylist.txt: 59225) -.nba.com/mobilevideo\?.*&ad_url= -# @@||nba.com/mobilevideo?*&ad_url=$script,domain=mavs.wpengine.netdna-cdn.com (easylist.txt: 48740) -.nba.com/mobilevideo\?.*&ad_url= - -#ab2p-unblock-request-Aj-Cj-when-R1431 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1431} \ -} -# @@||maxigame.org^$script,domain=maxigame.org (easylistchina+easylist.txt: 60508) -.maxigame.org -# @@||maxigame.org^$script,domain=maxigame.org (easylist.txt: 50023) -.maxigame.org - -#ab2p-unblock-request-Aj-Cj-when-R1432 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1432} \ -} -# @@||go.padstm.com/?$script,domain=mediatechnologycenter.info (easylistchina+easylist.txt: 60355) -.go.padstm.com/\? -# @@||go.padstm.com/?$script,domain=mediatechnologycenter.info (easylist.txt: 49870) -.go.padstm.com/\? - -#ab2p-unblock-request-Aj-Cj-when-R1441 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1441} \ -} -# @@||tcadops.ca/consumer/adtagtc_$script,domain=metro.ca (easylistchina+easylist.txt: 59623) -.tcadops.ca/consumer/adtagtc_ -# @@||tcadops.ca/consumer/adtagtc_$script,domain=metro.ca (easylist.txt: 49138) -.tcadops.ca/consumer/adtagtc_ - -#ab2p-unblock-request-Aj-Cj-when-R1450 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1450} \ -} -# @@||mlb.com/bundle?js=*/adproxy.$script,domain=mlb.com (easylistchina+easylist.txt: 59178) -.mlb.com/bundle\?js=.*/adproxy\. -# @@||mlb.com/bundle?js=*/adproxy.$script,domain=mlb.com (easylist.txt: 48693) -.mlb.com/bundle\?js=.*/adproxy\. - -#ab2p-unblock-request-Aj-Cj-when-R343 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R343} \ -} -# @@||moonwalk.cc^$script,domain=moonwalk.cc (advblock.txt: 7584) -.moonwalk.cc - -#ab2p-unblock-request-Aj-Cj-when-R1467 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1467} \ -} -# @@||mgcashgate.com/cpalocker/$script,domain=movieleaks.co|videodepot.org (easylistchina+easylist.txt: 60519) -.mgcashgate.com/cpalocker/ -# @@||mgcashgate.com/cpalocker/$script,domain=movieleaks.co|videodepot.org (easylist.txt: 50034) -.mgcashgate.com/cpalocker/ - -#ab2p-unblock-request-Aj-Cj-when-R1472 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1472} \ -} -# @@||rad.msn.com^$script,domain=msn.com (advblock.txt: 7371) -.rad.msn.com -# @@||adnxs.com/ttj?$script,domain=msn.com (advblock.txt: 7228) -.adnxs.com/ttj\? - -#ab2p-unblock-request-Aj-Cj-when-R1477 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1477} \ -} -# @@||adwolf.ru^$script,subdocument,domain=muz.ru (advblock.txt: 7256) -.adwolf.ru - -#ab2p-unblock-request-Aj-Cj-when-R1488 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1488} \ -} -# @@||phoenix.untd.com/OASX/$script,domain=netzero.net (easylistchina+easylist.txt: 59366) -.phoenix.untd.com/OASX/ -# @@||phoenix.untd.com/OASX/$script,domain=netzero.net (easylist.txt: 48881) -.phoenix.untd.com/OASX/ - -#ab2p-unblock-request-Aj-Cj-when-R358 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R358} \ -} -# @@||ngads.com/*.js$script,domain=newgrounds.com (easylistchina+easylist.txt: 60578) -.ngads.com/.*\.js -# @@||ngads.com/*.js$script,domain=newgrounds.com (easylist.txt: 50093) -.ngads.com/.*\.js - -#ab2p-unblock-request-Aj-Cj-when-R1489 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1489} \ -} -# @@||nextag.com/buyer/dyad/$script,domain=nextag.com (easylistchina+easylist.txt: 59242) -.nextag.com/buyer/dyad/ -# @@||nextag.com/buyer/dyad/$script,domain=nextag.com (easylist.txt: 48757) -.nextag.com/buyer/dyad/ - -#ab2p-unblock-request-Aj-Cj-when-R1495 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1495} \ -} -# @@||9msn.com.au/Services/Service.axd?callback=ninemsn_ads_contextualTargeting_$script,domain=ninemsn.com.au (easylistchina+easylist.txt: 58135) -.9msn.com.au/Services/Service\.axd\?callback=ninemsn_ads_contextualTargeting_ -# @@||9msn.com.au/Services/Service.axd?callback=ninemsn_ads_contextualTargeting_$script,domain=ninemsn.com.au (easylist.txt: 47650) -.9msn.com.au/Services/Service\.axd\?callback=ninemsn_ads_contextualTargeting_ - -#ab2p-unblock-request-Aj-Cj-when-R1501 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1501} \ -} -# @@||nyctourist.com/www/delivery/spcjs.php?$script,domain=nyctourist.com (easylistchina+easylist.txt: 59259) -.nyctourist.com/www/delivery/spcjs\.php\? -# @@||ads.bizx.info/www/delivery/spc.php?zones$script,domain=nyctourist.com (easylistchina+easylist.txt: 58225) -.ads.bizx.info/www/delivery/spc\.php\?zones -# @@||nyctourist.com/www/delivery/spcjs.php?$script,domain=nyctourist.com (easylist.txt: 48774) -.nyctourist.com/www/delivery/spcjs\.php\? -# @@||ads.bizx.info/www/delivery/spc.php?zones$script,domain=nyctourist.com (easylist.txt: 47740) -.ads.bizx.info/www/delivery/spc\.php\?zones - -#ab2p-unblock-request-Aj-Cj-when-R1503 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1503} \ -} -# @@||nzd.co.nz^*/ads/webads$script,domain=nzdating.com (easylistchina+easylist.txt: 60592) -.nzd.co.nz/.*/ads/webads -# @@||nzd.co.nz^*/ads/webads$script,domain=nzdating.com (easylist.txt: 50107) -.nzd.co.nz/.*/ads/webads - -#ab2p-unblock-request-Aj-Cj-when-R1510 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1510} \ -} -# @@/hitCount.$script,domain=on.cc (easylistchina+easylist.txt: 10460) +# @@/hitCount.$script,domain=on.cc (easylistchina.txt: 10447) /(.*/)?hitCount\. hitCount.*. -#ab2p-unblock-request-Aj-Cj-when-R1517 +#ab2p-unblock-request-Aj-Cj-when-R300 {-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1517} \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R300} \ } -# @@/Ad2.js$script,domain=openload.co (easylistchina+easylist.txt: 59913) -/(.*/)?Ad2\.js -Ad2.js*. -# @@/Ad2.js$script,domain=openload.co (easylist.txt: 49428) -/(.*/)?Ad2\.js -Ad2.js*. - -#ab2p-unblock-request-Aj-Cj-when-R1518 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1518} \ -} -# @@||openload.tv^$script,domain=openload.co|openload.io (easylistchina+easylist.txt: 60609) -.openload.tv -# @@||openload.tv^$script,domain=openload.co|openload.io (easylist.txt: 50124) -.openload.tv - -#ab2p-unblock-request-Aj-Cj-when-R1521 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1521} \ -} -# @@||revresda.com/js.ng/*&adsize=960x400&$script,domain=orbitz.com (easylistchina+easylist.txt: 59461) -.revresda.com/js\.ng/.*&adsize=960x400& -# @@||revresda.com/js.ng/*&adsize=960x400&$script,domain=orbitz.com (easylist.txt: 48976) -.revresda.com/js\.ng/.*&adsize=960x400& - -#ab2p-unblock-request-Aj-Cj-when-R375 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R375} \ -} -# @@||w.sharethis.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45843) -.w.sharethis.com -# @@||disquscdn.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45841) -.disquscdn.com -# @@||disqus.com^$script,domain=patheos.com (easylistchina+easylist.txt: 45840) -.disqus.com -# @@||w.sharethis.com^$script,domain=patheos.com (easylist.txt: 35358) -.w.sharethis.com -# @@||disquscdn.com^$script,domain=patheos.com (easylist.txt: 35356) -.disquscdn.com -# @@||disqus.com^$script,domain=patheos.com (easylist.txt: 35355) -.disqus.com - -#ab2p-unblock-request-Aj-Cj-when-R1532 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1532} \ -} -# @@||pb.wtf^$script,domain=pb.wtf (advblock.txt: 7591) -.pb.wtf -# @@/adg/adliftQueue.js$script,domain=pb.wtf (advblock.txt: 7525) -/(.*/)?adg/adliftQueue\.js - -#ab2p-unblock-request-Aj-Cj-when-R1533 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1533} \ -} -# @@||pcgames-download.net^$script,domain=pcgames-download.net (easylistchina+easylist.txt: 60641) -.pcgames-download.net -# @@||pcgames-download.net^$script,domain=pcgames-download.net (easylist.txt: 50156) -.pcgames-download.net - -#ab2p-unblock-request-Aj-Cj-when-R1537 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1537} \ -} -# @@||compagnon.science^$script,domain=pencurimovie.pw (easylistchina+easylist.txt: 60175) -.compagnon.science -# @@||compagnon.science^$script,domain=pencurimovie.pw (easylist.txt: 49690) -.compagnon.science - -#ab2p-unblock-request-Aj-Cj-when-R1538 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1538} \ -} -# @@||doubleclick.net/adj/cm.peo/*;cmpos=$script,domain=people.com (easylistchina+easylist.txt: 58707) -.doubleclick.net/adj/cm\.peo/.*;cmpos= -# @@||doubleclick.net/adj/cm.peo/*;cmpos=$script,domain=people.com (easylist.txt: 48222) -.doubleclick.net/adj/cm\.peo/.*;cmpos= - -#ab2p-unblock-request-Aj-Cj-when-R379 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R379} \ -} -# @@||sharethis.com/button/$script,domain=photobucket.com (easylistchina+easylist.txt: 45895) -.sharethis.com/button/ -# @@||connect.facebook.net^$script,domain=photobucket.com (easylistchina+easylist.txt: 45892) -.connect.facebook.net -# @@||amazonaws.com^$script,domain=photobucket.com (easylistchina+easylist.txt: 45890) -.amazonaws.com -# @@||sharethis.com/button/$script,domain=photobucket.com (easylist.txt: 35410) -.sharethis.com/button/ -# @@||connect.facebook.net^$script,domain=photobucket.com (easylist.txt: 35407) -.connect.facebook.net -# @@||amazonaws.com^$script,domain=photobucket.com (easylist.txt: 35405) -.amazonaws.com - -#ab2p-unblock-request-Aj-Cj-when-R1546 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1546} \ -} -# @@/advertisement_$script,domain=pic4you.ru (advblock.txt: 7531) -/(.*/)?advertisement_ - -#ab2p-unblock-request-Aj-Cj-when-R1550 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1550} \ -} -# @@||static.videocore.tv^$script,domain=piter.tv (advblock.txt: 7602) -.static.videocore.tv -# @@/advert2.js|$script,domain=piter.tv (advblock.txt: 7528) -/(.*/)?advert2\.js$ -advert2.js - -#ab2p-unblock-request-Aj-Cj-when-R1555 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1555} \ -} -# @@||doubleclick.net^*/ndm.tcm/video;$script,domain=player.video.news.com.au (easylistchina+easylist.txt: 58734) -.doubleclick.net/.*/ndm\.tcm/video; -# @@||doubleclick.net^*/ndm.tcm/video;$script,domain=player.video.news.com.au (easylist.txt: 48249) -.doubleclick.net/.*/ndm\.tcm/video; - -#ab2p-unblock-request-Aj-Cj-when-R1558 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1558} \ -} -# @@||pubmatic.com/AdServer/UPug?$script,domain=politico.com (easylistchina+easylist.txt: 59421) -.pubmatic.com/AdServer/UPug\? -# @@||pubmatic.com/AdServer/UPug?$script,domain=politico.com (easylist.txt: 48936) -.pubmatic.com/AdServer/UPug\? - -#ab2p-unblock-request-Aj-Cj-when-R393 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R393} \ -} -# @@||s7.addthis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61698) -.s7.addthis.com -# @@||platform.twitter.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61643) -.platform.twitter.com -# @@||platform.tumblr.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61642) -.platform.tumblr.com -# @@||connect.facebook.net^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61477) -.connect.facebook.net -# @@||apis.google.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61475) -.apis.google.com -# @@||ajax.googleapis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61473) -.ajax.googleapis.com -# @@||s7.addthis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51213) -.s7.addthis.com -# @@||platform.twitter.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51158) -.platform.twitter.com -# @@||platform.tumblr.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 51157) -.platform.tumblr.com -# @@||connect.facebook.net^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50992) -.connect.facebook.net -# @@||apis.google.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50990) -.apis.google.com -# @@||ajax.googleapis.com^$script,domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50988) -.ajax.googleapis.com - -#ab2p-unblock-request-Aj-Cj-when-R1562 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1562} \ -} -# @@||widget.uservoice.com^$script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylistchina+easylist.txt: 61712) -.widget.uservoice.com -# @@||widget.uservoice.com^$script,domain=pornhub.com|redtube.com|tube8.com|youporn.com (easylist.txt: 51227) -.widget.uservoice.com - -#ab2p-unblock-request-Aj-Cj-when-R400 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R400} \ -} -# @@||platform.twitter.com/widgets.js$script,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45885) -.platform.twitter.com/widgets\.js -# @@||platform.twitter.com/widgets.js$script,domain=primewire.ag|primewire.in (easylist.txt: 35400) -.platform.twitter.com/widgets\.js - -#ab2p-unblock-request-Aj-Cj-when-R696t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R696t} \ -} -# @@||s7.addthis.com^$script,third-party,domain=primewire.ag|primewire.in (easylistchina+easylist.txt: 45886) -.s7.addthis.com -# @@||s7.addthis.com^$script,third-party,domain=primewire.ag|primewire.in (easylist.txt: 35401) -.s7.addthis.com - -#ab2p-unblock-request-Aj-Cj-when-R1569 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1569} \ -} -# @@||doubleclick.net/adj/profootballreference.fsv/$script,domain=pro-football-reference.com (easylistchina+easylist.txt: 58717) -.doubleclick.net/adj/profootballreference\.fsv/ -# @@||doubleclick.net/adj/profootballreference.fsv/$script,domain=pro-football-reference.com (easylist.txt: 48232) -.doubleclick.net/adj/profootballreference\.fsv/ - -#ab2p-unblock-request-Aj-Cj-when-R402 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R402} \ -} -# @@||yahooapis.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45870) -.yahooapis.com -# @@||s7.addthis.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45869) -.s7.addthis.com -# @@||netdna.bootstrapcdn.com^$script,domain=promptfile.com (easylistchina+easylist.txt: 45867) -.netdna.bootstrapcdn.com -# @@||connect.facebook.net^$script,domain=promptfile.com (easylistchina+easylist.txt: 45866) -.connect.facebook.net -# @@||ajax.googleapis.com/ajax/libs/$script,domain=promptfile.com (easylistchina+easylist.txt: 45865) -.ajax.googleapis.com/ajax/libs/ -# @@||yahooapis.com^$script,domain=promptfile.com (easylist.txt: 35385) -.yahooapis.com -# @@||s7.addthis.com^$script,domain=promptfile.com (easylist.txt: 35384) -.s7.addthis.com -# @@||netdna.bootstrapcdn.com^$script,domain=promptfile.com (easylist.txt: 35382) -.netdna.bootstrapcdn.com -# @@||connect.facebook.net^$script,domain=promptfile.com (easylist.txt: 35381) -.connect.facebook.net -# @@||ajax.googleapis.com/ajax/libs/$script,domain=promptfile.com (easylist.txt: 35380) -.ajax.googleapis.com/ajax/libs/ - -#ab2p-unblock-request-Aj-Cj-when-R1894t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1894t} \ -} -# @@.xzn.ir/$script,third-party,domain=psarips.com (easylistchina+easylist.txt: 59912) -/.*\.xzn\.ir/ -.*.xzn.ir -# @@.xzn.ir/$script,third-party,domain=psarips.com (easylist.txt: 49427) -/.*\.xzn\.ir/ -.*.xzn.ir - -#ab2p-unblock-request-Aj-Cj-when-R1575 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1575} \ -} -# @@||medialand.ru/t/$script,domain=qip.ru (advblock.txt: 7631) -.medialand.ru/t/ - -#ab2p-unblock-request-Aj-Cj-when-R1576 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1576} \ -} -# @@||qoinfaucet.com^$script,domain=qoinfaucet.com (easylistchina+easylist.txt: 60680) -.qoinfaucet.com -# @@||qoinfaucet.com^$script,domain=qoinfaucet.com (easylist.txt: 50195) -.qoinfaucet.com - -#ab2p-unblock-request-Aj-Cj-when-R1579 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1579} \ -} -# @@||ox-d.qz.com/w/1.0/jstag|$script,domain=qz.com (easylistchina+easylist.txt: 59317) -.ox-d.qz.com/w/1\.0/jstag$ -# @@||ox-d.qz.com/w/1.0/jstag|$script,domain=qz.com (easylist.txt: 48832) -.ox-d.qz.com/w/1\.0/jstag$ - -#ab2p-unblock-request-Aj-Cj-when-R1586 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1586} \ -} -# @@||ox-d.rantsports.com/w/1.0/jstag$script,domain=rantlifestyle.com (easylistchina+easylist.txt: 59318) -.ox-d.rantsports.com/w/1\.0/jstag -# @@||ox-d.rantsports.com/w/1.0/jstag$script,domain=rantlifestyle.com (easylist.txt: 48833) -.ox-d.rantsports.com/w/1\.0/jstag - -#ab2p-unblock-request-Aj-Cj-when-R1587 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1587} \ -} -# @@||medialand.ru^*/inline.js?$script,domain=rbc.ru (advblock.txt: 7634) -.medialand.ru/.*/inline\.js\? -# @@||medialand.ru^*/base.js?$script,domain=rbc.ru (advblock.txt: 7633) -.medialand.ru/.*/base\.js\? - -#ab2p-unblock-request-Aj-Cj-when-R1588 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1588} \ -} -# @@||syndication.twimg.com^$script,domain=redmaryland.com (easylistchina+easylist.txt: 46043) -.syndication.twimg.com -# @@||syndication.twimg.com^$script,domain=redmaryland.com (easylist.txt: 35558) -.syndication.twimg.com - -#ab2p-unblock-request-Aj-Cj-when-R1595 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1595} \ -} -# @@||adserve.atedra.com/vast/wrap.php?$script,domain=repeatmyvids.com (easylistchina+easylist.txt: 58287) -.adserve.atedra.com/vast/wrap\.php\? -# @@||adserve.atedra.com/js/$script,domain=repeatmyvids.com (easylistchina+easylist.txt: 58286) -.adserve.atedra.com/js/ -# @@||adserve.atedra.com/vast/wrap.php?$script,domain=repeatmyvids.com (easylist.txt: 47802) -.adserve.atedra.com/vast/wrap\.php\? -# @@||adserve.atedra.com/js/$script,domain=repeatmyvids.com (easylist.txt: 47801) -.adserve.atedra.com/js/ - -#ab2p-unblock-request-Aj-Cj-when-R414 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R414} \ -} -# @@||doubleclick.net^*;type=BizDev_Article_RR1;$script,domain=reuters.com (easylistchina+easylist.txt: 58737) -.doubleclick.net/.*;type=BizDev_Article_RR1; -# @@||doubleclick.net^*;type=BizDev_Article_RR1;$script,domain=reuters.com (easylist.txt: 48252) -.doubleclick.net/.*;type=BizDev_Article_RR1; - -#ab2p-unblock-request-Aj-Cj-when-R1598 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1598} \ -} -# @@||ad.doubleclick.net/adj/rstone.site/music/photos^$script,domain=rollingstone.com (easylistchina+easylist.txt: 58156) -.ad.doubleclick.net/adj/rstone\.site/music/photos[^\w%.-] -# @@||ad.doubleclick.net/adj/rstone.site/music/photos^$script,domain=rollingstone.com (easylist.txt: 47671) -.ad.doubleclick.net/adj/rstone\.site/music/photos[^\w%.-] - -#ab2p-unblock-request-Aj-Cj-when-R1610 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1610} \ -} -# @@://adv.$script,domain=rutube.ru (advblock.txt: 7540) -/.*://adv\. -adv.*. - -#ab2p-unblock-request-Aj-Cj-when-R1612 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1612} \ -} -# @@||sahadan.com^$script,domain=sahadan.com (easylistchina+easylist.txt: 60711) -.sahadan.com -# @@||sahadan.com^$script,domain=sahadan.com (easylist.txt: 50226) -.sahadan.com - -#ab2p-unblock-request-Aj-Cj-when-R1613 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1613} \ -} -# @@/afr.php?$script,domain=sankakucomplex.com (easylistchina+easylist.txt: 59922) -/(.*/)?afr\.php\? -# @@||208.100.24.244^$script,domain=sankakucomplex.com (easylistchina+easylist.txt: 58115) -.208.100.24.244 -# @@/afr.php?$script,domain=sankakucomplex.com (easylist.txt: 49437) -/(.*/)?afr\.php\? -# @@||208.100.24.244^$script,domain=sankakucomplex.com (easylist.txt: 47630) -.208.100.24.244 - -#ab2p-unblock-request-Aj-Cj-when-R1615 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1615} \ -} -# @@||sc2casts.com^$script,domain=sc2casts.com (easylistchina+easylist.txt: 60720) -.sc2casts.com -# @@||sc2casts.com^$script,domain=sc2casts.com (easylist.txt: 50235) -.sc2casts.com - -#ab2p-unblock-request-Aj-Cj-when-R1621 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1621} \ -} -# @@||annonser.dagbladet.no/eas?$script,domain=se.no (easylistchina+easylist.txt: 60979) -.annonser.dagbladet.no/eas\? -# @@||annonser.dagbladet.no/eas?$script,domain=se.no (easylist.txt: 50494) -.annonser.dagbladet.no/eas\? - -#ab2p-unblock-request-Aj-Cj-when-R1630 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1630} \ -} -# @@||engine.adzerk.net/ados?$script,domain=serverfault.com|stackoverflow.com (easylistchina+easylist.txt: 58782) -.engine.adzerk.net/ados\? -# @@||engine.adzerk.net/ados?$script,domain=serverfault.com|stackoverflow.com (easylist.txt: 48297) -.engine.adzerk.net/ados\? - -#ab2p-unblock-request-Aj-Cj-when-R437 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R437} \ -} -# @@||cloudfront.net/js/pubads_$script,domain=slader.com (easylistchina+easylist.txt: 60167) -.cloudfront.net/js/pubads_ -# @@||cloudfront.net/js/pubads_$script,domain=slader.com (easylist.txt: 49682) -.cloudfront.net/js/pubads_ - -#ab2p-unblock-request-Aj-Cj-when-R1647 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1647} \ -} -# @@||95.211.194.229^$script,domain=slickvid.com (easylistchina+easylist.txt: 59974) -.95.211.194.229 -# @@||95.211.194.229^$script,domain=slickvid.com (easylist.txt: 49489) -.95.211.194.229 - -#ab2p-unblock-request-Aj-Cj-when-R1648 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1648} \ -} -# @@||vidible.tv/prod/tags/$script,domain=smallscreennetwork.com (easylistchina+easylist.txt: 59764) -.vidible.tv/prod/tags/ -# @@||vidible.tv/prod/tags/$script,domain=smallscreennetwork.com (easylist.txt: 49279) -.vidible.tv/prod/tags/ - -#ab2p-unblock-request-Aj-Cj-when-R447 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R447} \ -} -# @@||zdassets.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45917) -.zdassets.com -# @@||widget.uservoice.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45916) -.widget.uservoice.com -# @@||speedtest.zendesk.com^$script,domain=speedtest.net (easylistchina+easylist.txt: 45915) -.speedtest.zendesk.com -# @@||speedtest.net/globe_feed.php?$script,domain=speedtest.net (easylistchina+easylist.txt: 45903) -.speedtest.net/globe_feed\.php\? -# @@||google.com/coop/$script,domain=speedtest.net (easylistchina+easylist.txt: 45902) -.google.com/coop/ -# @@||b.cdnst.net/dist/js/$script,domain=speedtest.net (easylistchina+easylist.txt: 45900) -.b.cdnst.net/dist/js/ -# @@||ads.ookla.com/www/test.js?$script,domain=speedtest.net (easylistchina+easylist.txt: 45899) -.ads.ookla.com/www/test\.js\? -# @@||zdassets.com^$script,domain=speedtest.net (easylist.txt: 35432) -.zdassets.com -# @@||widget.uservoice.com^$script,domain=speedtest.net (easylist.txt: 35431) -.widget.uservoice.com -# @@||speedtest.zendesk.com^$script,domain=speedtest.net (easylist.txt: 35430) -.speedtest.zendesk.com -# @@||speedtest.net/globe_feed.php?$script,domain=speedtest.net (easylist.txt: 35418) -.speedtest.net/globe_feed\.php\? -# @@||google.com/coop/$script,domain=speedtest.net (easylist.txt: 35417) -.google.com/coop/ -# @@||b.cdnst.net/dist/js/$script,domain=speedtest.net (easylist.txt: 35415) -.b.cdnst.net/dist/js/ -# @@||ads.ookla.com/www/test.js?$script,domain=speedtest.net (easylist.txt: 35414) -.ads.ookla.com/www/test\.js\? - -#ab2p-unblock-request-Aj-Cj-when-R1662 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1662} \ -} -# @@||spoilertv.com^$script,domain=spoilertv.com (easylistchina+easylist.txt: 60761) -.spoilertv.com -# @@||ads.intergi.com^$script,domain=spoilertv.com (easylistchina+easylist.txt: 60012) -.ads.intergi.com -# @@||spoilertv.com^$script,domain=spoilertv.com (easylist.txt: 50276) -.spoilertv.com -# @@||ads.intergi.com^$script,domain=spoilertv.com (easylist.txt: 49527) -.ads.intergi.com - -#ab2p-unblock-request-Aj-Cj-when-R1664 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1664} \ -} -# @@||mgid.com/s/p/*.js?$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 60522) -.mgid.com/s/p/.*\.js\? -# @@||static.eplayer.performgroup.com^$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 46039) -.static.eplayer.performgroup.com -# @@||d1naemzkka1n8z.cloudfront.net^$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 45970) -.d1naemzkka1n8z.cloudfront.net -# @@||addnow.com/widget/addnow.js$script,domain=sportsmole.co.uk (easylistchina+easylist.txt: 45941) -.addnow.com/widget/addnow\.js -# @@||mgid.com/s/p/*.js?$script,domain=sportsmole.co.uk (easylist.txt: 50037) -.mgid.com/s/p/.*\.js\? -# @@||static.eplayer.performgroup.com^$script,domain=sportsmole.co.uk (easylist.txt: 35554) -.static.eplayer.performgroup.com -# @@||d1naemzkka1n8z.cloudfront.net^$script,domain=sportsmole.co.uk (easylist.txt: 35485) -.d1naemzkka1n8z.cloudfront.net -# @@||addnow.com/widget/addnow.js$script,domain=sportsmole.co.uk (easylist.txt: 35456) -.addnow.com/widget/addnow\.js - -#ab2p-unblock-request-Aj-Cj-when-R1665 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1665} \ -} -# @@||video.unrulymedia.com^$script,subdocument,domain=springstreetads.com (easylistchina+easylist.txt: 60865) -.video.unrulymedia.com -# @@||video.unrulymedia.com^$script,subdocument,domain=springstreetads.com (easylist.txt: 50380) -.video.unrulymedia.com - -#ab2p-unblock-request-Aj-Cj-when-R1670 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1670} \ -} -# @@/fuckadblock.js$script,domain=stopgame.ru|xn--b1ajehof.xn--80asehdb|蟹胁芯薪泻懈.芯薪谢邪泄薪 (advblock.txt: 7536) -/(.*/)?fuckadblock\.js -fuckadblock.js*. - -#ab2p-unblock-request-Aj-Cj-when-R1673 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1673} \ -} -# @@||track.adform.net/serving/scripts/trackpoint/$script,domain=strokekampanjen.se|tigerofsweden.com (easylistchina+easylist.txt: 59682) -.track.adform.net/serving/scripts/trackpoint/ -# @@||track.adform.net/serving/scripts/trackpoint/$script,domain=strokekampanjen.se|tigerofsweden.com (easylist.txt: 49197) -.track.adform.net/serving/scripts/trackpoint/ - -#ab2p-unblock-request-Aj-Cj-when-R1678 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1678} \ -} -# @@||cdn.supercheats.com^$script,domain=supercheats.com (easylistchina+easylist.txt: 45957) -.cdn.supercheats.com -# @@||cdn.supercheats.com^$script,domain=supercheats.com (easylist.txt: 35472) -.cdn.supercheats.com - -#ab2p-unblock-request-Aj-Cj-when-R1679 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1679} \ -} -# @@||superfilm.pl^$script,domain=superfilm.pl (easylistchina+easylist.txt: 60778) -.superfilm.pl -# @@||superfilm.pl^$script,domain=superfilm.pl (easylist.txt: 50293) -.superfilm.pl - -#ab2p-unblock-request-Aj-Cj-when-R1685 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1685} \ -} -# @@||keyrun.cn^$script,domain=sx566.com (easylistchina+easylist.txt: 10294) +# @@||keyrun.cn^$script,domain=sx566.com (easylistchina.txt: 10284) .keyrun.cn -#ab2p-unblock-request-Aj-Cj-when-R1699 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1699} \ -} -# @@||ign.com/js.ng/size=headermainad&site=teamxbox$script,domain=teamxbox.com (easylistchina+easylist.txt: 58972) -.ign.com/js\.ng/size=headermainad&site=teamxbox -# @@||ign.com/js.ng/size=headermainad&site=teamxbox$script,domain=teamxbox.com (easylist.txt: 48487) -.ign.com/js\.ng/size=headermainad&site=teamxbox - -#ab2p-unblock-request-Aj-Cj-when-R1700 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1700} \ -} -# @@||ads.tw.adsonar.com/adserving/getAdsAPI.jsp?callback=aslHandleAds*&c=aslHandleAds*&key=$script,domain=techcrunch.com (easylistchina+easylist.txt: 59881) -.ads.tw.adsonar.com/adserving/getAdsAPI\.jsp\?callback=aslHandleAds.*&c=aslHandleAds.*&key= -# @@||ads.tw.adsonar.com/adserving/getAdsAPI.jsp?callback=aslHandleAds*&c=aslHandleAds*&key=$script,domain=techcrunch.com (easylist.txt: 49396) -.ads.tw.adsonar.com/adserving/getAdsAPI\.jsp\?callback=aslHandleAds.*&c=aslHandleAds.*&key= - -#ab2p-unblock-request-Aj-Cj-when-R1701 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1701} \ -} -# @@||adserver.adtechus.com/addyn/$script,domain=teletoon.com (easylistchina+easylist.txt: 58291) -.adserver.adtechus.com/addyn/ -# @@||adserver.adtechus.com/addyn/$script,domain=teletoon.com (easylist.txt: 47806) -.adserver.adtechus.com/addyn/ - -#ab2p-unblock-request-Aj-Cj-when-R1704 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1704} \ -} -# @@||fwmrm.net/ad/g/1?prof=$script,domain=testtube.com (easylistchina+easylist.txt: 60318) -.fwmrm.net/ad/g/1\?prof= -# @@||fwmrm.net/ad/g/1?prof=$script,domain=testtube.com (easylist.txt: 49833) -.fwmrm.net/ad/g/1\?prof= - -#ab2p-unblock-request-Aj-Cj-when-R1705 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1705} \ -} -# @@||lamcdn.net/www.the-village.ru/gui/advert-$script,domain=the-village.ru (advblock.txt: 7578) -.lamcdn.net/www\.the-village\.ru/gui/advert- - -#ab2p-unblock-request-Aj-Cj-when-R1895t -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1895t} \ -} -# @@||kaltura.com^$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 46006) -.kaltura.com -# @@||api.iris.tv/watch?$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45948) -.api.iris.tv/watch\? -# @@||amazonaws.com/iris-player/iris.js$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45945) -.amazonaws.com/iris-player/iris\.js -# @@||amazonaws.com/cdn.jukeboxu.com/kaltura/kaltura_related.js$script,third-party,domain=thechive.com (easylistchina+easylist.txt: 45944) -.amazonaws.com/cdn\.jukeboxu\.com/kaltura/kaltura_related\.js -# @@||kaltura.com^$script,third-party,domain=thechive.com (easylist.txt: 35521) -.kaltura.com -# @@||api.iris.tv/watch?$script,third-party,domain=thechive.com (easylist.txt: 35463) -.api.iris.tv/watch\? -# @@||amazonaws.com/iris-player/iris.js$script,third-party,domain=thechive.com (easylist.txt: 35460) -.amazonaws.com/iris-player/iris\.js -# @@||amazonaws.com/cdn.jukeboxu.com/kaltura/kaltura_related.js$script,third-party,domain=thechive.com (easylist.txt: 35459) -.amazonaws.com/cdn\.jukeboxu\.com/kaltura/kaltura_related\.js - -#ab2p-unblock-request-Aj-Cj-when-R1708 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1708} \ -} -# @@||video.unrulymedia.com/wildfire_$script,domain=theemptynestexpress.com (easylistchina+easylist.txt: 59760) -.video.unrulymedia.com/wildfire_ -# @@||video.unrulymedia.com/wildfire_$script,domain=theemptynestexpress.com (easylist.txt: 49275) -.video.unrulymedia.com/wildfire_ - -#ab2p-unblock-request-Aj-Cj-when-R1711 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1711} \ -} -# @@||thesimsresource.com^$script,domain=thesimsresource.com (easylistchina+easylist.txt: 60799) -.thesimsresource.com -# @@||amazonaws.com^$script,domain=thesimsresource.com (easylistchina+easylist.txt: 60056) -.amazonaws.com -# @@||thesimsresource.com^$script,domain=thesimsresource.com (easylist.txt: 50314) -.thesimsresource.com -# @@||amazonaws.com^$script,domain=thesimsresource.com (easylist.txt: 49571) -.amazonaws.com - -#ab2p-unblock-request-Aj-Cj-when-R1713 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1713} \ -} -# @@||doubleclick.net/adj/cm.tim/*;cmpos=$script,domain=time.com (easylistchina+easylist.txt: 58708) -.doubleclick.net/adj/cm\.tim/.*;cmpos= -# @@||doubleclick.net/adj/cm.tim/*;cmpos=$script,domain=time.com (easylist.txt: 48223) -.doubleclick.net/adj/cm\.tim/.*;cmpos= - -#ab2p-unblock-request-Aj-Cj-when-R1714 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1714} \ -} -# @@||tjournal.ru/*/adfox.$script,domain=tjournal.ru (advblock.txt: 7409) -.tjournal.ru/.*/adfox\. -# @@||an.yandex.ru/meta/$script,domain=tjournal.ru (advblock.txt: 7263) -.an.yandex.ru/meta/ - -#ab2p-unblock-request-Aj-Cj-when-R1715 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1715} \ -} -# @@||an.yandex.ru/resource/context_static_$script,domain=tjournal.ru|tvigle.ru (advblock.txt: 7264) -.an.yandex.ru/resource/context_static_ - -#ab2p-unblock-request-Aj-Cj-when-R1722 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1722} \ -} -# @@||alipromo.com/rotator/auto/$script,domain=trackitonline.ru (advblock.txt: 7557) -.alipromo.com/rotator/auto/ - -#ab2p-unblock-request-Aj-Cj-when-R1724 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1724} \ -} -# @@||travelocity.com/js.ng/$script,domain=travelocity.com (easylistchina+easylist.txt: 59694) -.travelocity.com/js\.ng/ -# @@||travelocity.com/js.ng/$script,domain=travelocity.com (easylist.txt: 49209) -.travelocity.com/js\.ng/ - -#ab2p-unblock-request-Aj-Cj-when-R1725 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1725} \ -} -# @@||intentmedia.net/javascripts/$script,domain=travelzoo.com (easylistchina+easylist.txt: 59027) -.intentmedia.net/javascripts/ -# @@||intentmedia.net/javascripts/$script,domain=travelzoo.com (easylist.txt: 48542) -.intentmedia.net/javascripts/ - -#ab2p-unblock-request-Aj-Cj-when-R1726 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1726} \ -} -# @@||mxpopad.com^$script,domain=tree.tv (advblock.txt: 7587) -.mxpopad.com -# @@||admixer.net/scriptlib/$script,domain=tree.tv (advblock.txt: 7553) -.admixer.net/scriptlib/ -# @@||admixer.net/getresponse.js?$script,domain=tree.tv (advblock.txt: 7552) -.admixer.net/getresponse\.js\? - -#ab2p-unblock-request-Aj-Cj-when-R1732 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1732} \ -} -# @@||turbogenerator.info^$script,domain=turbogenerator.info (easylistchina+easylist.txt: 60817) -.turbogenerator.info -# @@||turbogenerator.info^$script,domain=turbogenerator.info (easylist.txt: 50332) -.turbogenerator.info - -#ab2p-unblock-request-Aj-Cj-when-R1733 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1733} \ -} -# @@||turbovideos.net^$script,domain=turbovideos.net (easylistchina+easylist.txt: 60818) -.turbovideos.net -# @@||turbovideos.net^$script,domain=turbovideos.net (easylist.txt: 50333) -.turbovideos.net - -#ab2p-unblock-request-Aj-Cj-when-R1737 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1737} \ -} -# @@||am15.net/bn$script,domain=tv-serial.org (advblock.txt: 7559) -.am15.net/bn - -#ab2p-unblock-request-Aj-Cj-when-R1738 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1738} \ -} -# @@||mads.tv.com/mac-ad?META^$script,domain=tv.com (easylistchina+easylist.txt: 59124) -.mads.tv.com/mac-ad\?META[^\w%.-] -# @@||mads.tv.com/mac-ad?META^$script,domain=tv.com (easylist.txt: 48639) -.mads.tv.com/mac-ad\?META[^\w%.-] - -#ab2p-unblock-request-Aj-Cj-when-R484 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R484} \ -} -# @@||inskinad.com/isapadserver/ads.aspx?$script,domain=tvcatchup.com (easylistchina+easylist.txt: 59019) -.inskinad.com/isapadserver/ads\.aspx\? -# @@||inskinad.com/isapadserver/ads.aspx?$script,domain=tvcatchup.com (easylist.txt: 48534) -.inskinad.com/isapadserver/ads\.aspx\? - -#ab2p-unblock-request-Aj-Cj-when-R1746 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1746} \ -} -# @@||adriver.ru/plugins/$script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7236) -.adriver.ru/plugins/ -# @@||adriver.ru/cgi-bin/merle.cgi?$script,domain=tvigle.ru|wikimart.ru (advblock.txt: 7233) -.adriver.ru/cgi-bin/merle\.cgi\? - -#ab2p-unblock-request-Aj-Cj-when-R1748 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1748} \ -} -# @@||adocean.pl^*/ad.js?id=$script,domain=tvn24.pl (easylistchina+easylist.txt: 60004) -.adocean.pl/.*/ad\.js\?id= -# @@||adocean.pl^*/ad.js?id=$script,domain=tvn24.pl (easylist.txt: 49519) -.adocean.pl/.*/ad\.js\?id= - -#ab2p-unblock-request-Aj-Cj-when-R1749 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1749} \ -} -# @@||tvnet.lv/o/servlet/view/banner/javascript/media?$script,domain=tvnet.lv (advblock.txt: 7415) -.tvnet.lv/o/servlet/view/banner/javascript/media\? - -#ab2p-unblock-request-Aj-Cj-when-R1754 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1754} \ -} -# @@||v.fwmrm.net/ad/g/1?$script,domain=uktv.co.uk (easylistchina+easylist.txt: 60853) -.v.fwmrm.net/ad/g/1\? -# @@||v.fwmrm.net/ad/g/1?$script,domain=uktv.co.uk (easylist.txt: 50368) -.v.fwmrm.net/ad/g/1\? - -#ab2p-unblock-request-Aj-Cj-when-R1758 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1758} \ -} -# @@||chronophotographie.science^$script,domain=uptobox.com (easylistchina+easylist.txt: 60158) -.chronophotographie.science -# @@||chronophotographie.science^$script,domain=uptobox.com (easylist.txt: 49673) -.chronophotographie.science - -#ab2p-unblock-request-Aj-Cj-when-R1759 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1759} \ -} -# @@||premium.mbn.com.ua^$script,domain=ura-inform.com (advblock.txt: 7636) -.premium.mbn.com.ua - -#ab2p-unblock-request-Aj-Cj-when-R1764 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1764} \ -} -# @@||advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone?zid=$script,domain=uzmantv.com (easylistchina+easylist.txt: 60964) -.advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone\?zid= -# @@||advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone?zid=$script,domain=uzmantv.com (easylist.txt: 50479) -.advert.uzmantv.com/advertpro/servlet/view/dynamic/url/zone\?zid= - -#ab2p-unblock-request-Aj-Cj-when-R1766 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1766} \ -} -# @@||vhobbies.com/admgr/*.aspx?ZoneID=$script,domain=vcoins.com (easylistchina+easylist.txt: 59751) -.vhobbies.com/admgr/.*\.aspx\?ZoneID= -# @@||vhobbies.com/admgr/*.aspx?ZoneID=$script,domain=vcoins.com (easylist.txt: 49266) -.vhobbies.com/admgr/.*\.aspx\?ZoneID= - -#ab2p-unblock-request-Aj-Cj-when-R1772 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1772} \ -} -# @@||ox.eurogamer.net/oa/delivery/ajs.php?$script,domain=vg247.com (easylistchina+easylist.txt: 59320) -.ox.eurogamer.net/oa/delivery/ajs\.php\? -# @@||ox.eurogamer.net/oa/delivery/ajs.php?$script,domain=vg247.com (easylist.txt: 48835) -.ox.eurogamer.net/oa/delivery/ajs\.php\? - -#ab2p-unblock-request-Aj-Cj-when-R1784 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1784} \ -} -# @@||doubleclick.net/N6545/adj/*_music/video;$script,domain=virginmedia.com (easylistchina+easylist.txt: 58723) -.doubleclick.net/N6545/adj/.*_music/video; -# @@||doubleclick.net/N6545/adj/*_music/video;$script,domain=virginmedia.com (easylist.txt: 48238) -.doubleclick.net/N6545/adj/.*_music/video; - -#ab2p-unblock-request-Aj-Cj-when-R1789 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1789} \ -} -# @@||amazon-adsystem.com/widgets/q?$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58390) -.amazon-adsystem.com/widgets/q\? -# @@||amazon-adsystem.com/panda/$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58388) -.amazon-adsystem.com/panda/ -# @@||amazon-adsystem.com/js/$script,domain=voldingenglish.com (easylistchina+easylist.txt: 58387) -.amazon-adsystem.com/js/ -# @@||amazon-adsystem.com/widgets/q?$script,domain=voldingenglish.com (easylist.txt: 47905) -.amazon-adsystem.com/widgets/q\? -# @@||amazon-adsystem.com/panda/$script,domain=voldingenglish.com (easylist.txt: 47903) -.amazon-adsystem.com/panda/ -# @@||amazon-adsystem.com/js/$script,domain=voldingenglish.com (easylist.txt: 47902) -.amazon-adsystem.com/js/ - -#ab2p-unblock-request-Aj-Cj-when-R1794 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1794} \ -} -# @@||st.vtomske.ru/js/adv$script,domain=vtomske.ru (advblock.txt: 7396) -.st.vtomske.ru/js/adv - -#ab2p-unblock-request-Aj-Cj-when-R511 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R511} \ -} -# @@||adriver.ru/extender.js|$script,domain=vz.ru (advblock.txt: 7620) -.adriver.ru/extender\.js$ - -#ab2p-unblock-request-Aj-Cj-when-R513 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R513} \ -} -# @@||twt-static.washtimes.com/js/disqus.js$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45922) -.twt-static.washtimes.com/js/disqus\.js -# @@||twt-static.washtimes.com/js/base_global.$script,domain=washingtontimes.com (easylistchina+easylist.txt: 45921) -.twt-static.washtimes.com/js/base_global\. -# @@||twt-static.washtimes.com/js/disqus.js$script,domain=washingtontimes.com (easylist.txt: 35437) -.twt-static.washtimes.com/js/disqus\.js -# @@||twt-static.washtimes.com/js/base_global.$script,domain=washingtontimes.com (easylist.txt: 35436) -.twt-static.washtimes.com/js/base_global\. - -#ab2p-unblock-request-Aj-Cj-when-R1799 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1799} \ -} -# @@||ad.yieldmanager.com/imp^$script,domain=watchseries-online.eu (easylistchina+easylist.txt: 59984) -.ad.yieldmanager.com/imp[^\w%.-] -# @@||ad.yieldmanager.com/imp^$script,domain=watchseries-online.eu (easylist.txt: 49499) -.ad.yieldmanager.com/imp[^\w%.-] - -#ab2p-unblock-request-Aj-Cj-when-R1811 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1811} \ -} -# @@||adriver.ru/cgi-bin/erle.cgi?$script,domain=wikimart.ru (advblock.txt: 7231) -.adriver.ru/cgi-bin/erle\.cgi\? - -#ab2p-unblock-request-Aj-Cj-when-R1814 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1814} \ -} -# @@||doubleclick.net/adj/wiredcom.dart/*;sz=300x250;*;kw=top;$script,domain=wired.com (easylistchina+easylist.txt: 58718) -.doubleclick.net/adj/wiredcom\.dart/.*;sz=300x250;.*;kw=top; -# @@||doubleclick.net/adj/wiredcom.dart/*;sz=300x250;*;kw=top;$script,domain=wired.com (easylist.txt: 48233) -.doubleclick.net/adj/wiredcom\.dart/.*;sz=300x250;.*;kw=top; - -#ab2p-unblock-request-Aj-Cj-when-R1820 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1820} \ -} -# @@||rek.www.wp.pl/pliki/$script,domain=wp.tv (easylistchina+easylist.txt: 60695) -.rek.www.wp.pl/pliki/ -# @@||rek.www.wp.pl/pliki/$script,domain=wp.tv (easylist.txt: 50210) -.rek.www.wp.pl/pliki/ - -#ab2p-unblock-request-Aj-Cj-when-R1824 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1824} \ -} -# @@||www.google.com/ads/js/$script,domain=www.google.com (easylistchina+easylist.txt: 61187) -.www.google.com/ads/js/ -# @@||ads.google.com/jsapi$script,domain=www.google.com (easylistchina+easylist.txt: 61165) -.ads.google.com/jsapi -# @@||www.google.com/ads/js/$script,domain=www.google.com (easylist.txt: 50702) -.www.google.com/ads/js/ -# @@||ads.google.com/jsapi$script,domain=www.google.com (easylist.txt: 50680) -.ads.google.com/jsapi - -#ab2p-unblock-request-Aj-Cj-when-R1826 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1826} \ -} -# @@||rad.msn.com/ADSAdClient31.dll?GetSAd=$script,domain=www.msn.com (easylistchina+easylist.txt: 59434) -.rad.msn.com/ADSAdClient31\.dll\?GetSAd= -# @@||rad.msn.com/ADSAdClient31.dll?GetSAd=$script,domain=www.msn.com (easylist.txt: 48949) -.rad.msn.com/ADSAdClient31\.dll\?GetSAd= - -#ab2p-unblock-request-Aj-Cj-when-R1831 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1831} \ -} -# @@||cdn.cpmstar.com/cached/js/$script,domain=xfire.com (easylistchina+easylist.txt: 58561) -.cdn.cpmstar.com/cached/js/ -# @@||cdn.cpmstar.com/cached/js/$script,domain=xfire.com (easylist.txt: 48076) -.cdn.cpmstar.com/cached/js/ - -#ab2p-unblock-request-Aj-Cj-when-R534 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R534} \ -} -# @@||adserver.yahoo.com/a?*&l=head&$script,domain=yahoo.com (easylistchina+easylist.txt: 58297) -.adserver.yahoo.com/a\?.*&l=head& -# @@||adserver.yahoo.com/a?*&l=head&$script,domain=yahoo.com (easylist.txt: 47812) -.adserver.yahoo.com/a\?.*&l=head& - -#ab2p-unblock-request-Aj-Cj-when-R1843 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1843} \ -} -# @@||syndication.streamads.yahoo.com/na_stream_brewer/brew/*?cid=*&url=*&pvid=*&callback=$script,domain=yimg.com (easylistchina+easylist.txt: 59613) -.syndication.streamads.yahoo.com/na_stream_brewer/brew/.*\?cid=.*&url=.*&pvid=.*&callback= -# @@||syndication.streamads.yahoo.com/na_stream_brewer/brew/*?cid=*&url=*&pvid=*&callback=$script,domain=yimg.com (easylist.txt: 49128) -.syndication.streamads.yahoo.com/na_stream_brewer/brew/.*\?cid=.*&url=.*&pvid=.*&callback= - -#ab2p-unblock-request-Aj-Cj-when-R1844 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1844} \ -} -# @@||doubleclick.net/adj/yorkshire.jp/main-section;*;sz=120x600,160x600$script,domain=yorkshirepost.co.uk (easylistchina+easylist.txt: 58719) -.doubleclick.net/adj/yorkshire\.jp/main-section;.*;sz=120x600,160x600 -# @@||doubleclick.net/adj/yorkshire.jp/main-section;*;sz=120x600,160x600$script,domain=yorkshirepost.co.uk (easylist.txt: 48234) -.doubleclick.net/adj/yorkshire\.jp/main-section;.*;sz=120x600,160x600 - -#ab2p-unblock-request-Aj-Cj-when-R540 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R540} \ -} -# @@||plugins.longtailvideo.com^$script,domain=youwatch.org (easylistchina+easylist.txt: 45860) -.plugins.longtailvideo.com -# @@||ajax.googleapis.com/ajax/libs/$script,domain=youwatch.org (easylistchina+easylist.txt: 45856) -.ajax.googleapis.com/ajax/libs/ -# @@||plugins.longtailvideo.com^$script,domain=youwatch.org (easylist.txt: 35375) -.plugins.longtailvideo.com -# @@||ajax.googleapis.com/ajax/libs/$script,domain=youwatch.org (easylist.txt: 35371) -.ajax.googleapis.com/ajax/libs/ - -#ab2p-unblock-request-Aj-Cj-when-R1855 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1855} \ -} -# @@||zeperfs.com^$script,domain=zeperfs.com (easylistchina+easylist.txt: 60920) -.zeperfs.com -# @@||zeperfs.com^$script,domain=zeperfs.com (easylist.txt: 50435) -.zeperfs.com - -#ab2p-unblock-request-Aj-Cj-when-R1856 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1856} \ -} -# @@||zerozero.pt/script/$script,domain=zerozero.pt (easylistchina+easylist.txt: 60921) -.zerozero.pt/script/ -# @@||zerozero.pt/script/$script,domain=zerozero.pt (easylist.txt: 50436) -.zerozero.pt/script/ - -#ab2p-unblock-request-Aj-Cj-when-R1857 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R1857} \ -} -# @@||doubleclick.net/N6619/adj/zillow.hdp/$script,domain=zillow.com (easylistchina+easylist.txt: 58724) -.doubleclick.net/N6619/adj/zillow\.hdp/ -# @@||doubleclick.net/N6619/adj/zillow.hdp/$script,domain=zillow.com (easylist.txt: 48239) -.doubleclick.net/N6619/adj/zillow\.hdp/ - -#ab2p-unblock-request-Aj-Cj-when-nR-Rn1860 -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-Rn1860} \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-nR} \ -} -# @@||liverail.com/js/LiveRail.AdManager$script,domain=~bluray-disc.de (easylistchina+easylist.txt: 59102) -.liverail.com/js/LiveRail\.AdManager -# @@||liverail.com/js/LiveRail.AdManager$script,domain=~bluray-disc.de (easylist.txt: 48617) -.liverail.com/js/LiveRail\.AdManager - -#ab2p-unblock-request-Aj-Cj-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-nR} \ -} -# @@||javhub.net^$script,~third-party (easylistchina+easylist.txt: 61750) -.javhub.net -# @@||tjoob.com/go.php?ad=$script,~third-party (easylistchina+easylist.txt: 61464) -.tjoob.com/go\.php\?ad= -# @@||protect-url.net^$script,~third-party (easylistchina+easylist.txt: 60673) -.protect-url.net -# @@||gamereactor.$script,~third-party (easylistchina+easylist.txt: 60337) -.gamereactor.*. -# @@||fhsload.hopto.org^$script,~third-party (easylistchina+easylist.txt: 60280) -.fhsload.hopto.org -# @@||fhscheck.zapto.org^$script,~third-party (easylistchina+easylist.txt: 60279) -.fhscheck.zapto.org -# @@||elektrotanya.com/ads/$script,~third-party (easylistchina+easylist.txt: 60247) -.elektrotanya.com/ads/ -# @@||eclypsia.com^$script,~third-party (easylistchina+easylist.txt: 60244) -.eclypsia.com -# @@/wp-prevent-adblocker/*$script,~third-party (easylistchina+easylist.txt: 59938) -/(.*/)?wp-prevent-adblocker/.* -# @@/wp-content/plugins/simple-adblock-notice/*$script,~third-party (easylistchina+easylist.txt: 59936) -/(.*/)?wp-content/plugins/simple-adblock-notice/.* -# @@/blockalyzer-adblock-counter/js/advertisement.js$script,~third-party (easylistchina+easylist.txt: 59925) -/(.*/)?blockalyzer-adblock-counter/js/advertisement\.js -# @@||media.styleblueprint.com/ad.php?$script,~third-party (easylistchina+easylist.txt: 59156) -.media.styleblueprint.com/ad\.php\? -# @@||logmein.com/Serve.aspx?ZoneID=$script,~third-party (easylistchina+easylist.txt: 59107) -.logmein.com/Serve\.aspx\?ZoneID= -# @@||as.bankrate.com/RealMedia/ads/adstream_mjx.ads/$script,~third-party (easylistchina+easylist.txt: 58437) -.as.bankrate.com/RealMedia/ads/adstream_mjx\.ads/ -# @@||ads.mycricket.com/www/delivery/ajs.php?zoneid=$script,~third-party (easylistchina+easylist.txt: 58252) -.ads.mycricket.com/www/delivery/ajs\.php\?zoneid= -# @@/wp-content/plugins/akismet/*$script,~third-party (easylistchina+easylist.txt: 45939) -/(.*/)?wp-content/plugins/akismet/.* -# @@||javhub.net^$script,~third-party (easylist.txt: 51265) -.javhub.net -# @@||tjoob.com/go.php?ad=$script,~third-party (easylist.txt: 50979) -.tjoob.com/go\.php\?ad= -# @@||protect-url.net^$script,~third-party (easylist.txt: 50188) -.protect-url.net -# @@||gamereactor.$script,~third-party (easylist.txt: 49852) -.gamereactor.*. -# @@||fhsload.hopto.org^$script,~third-party (easylist.txt: 49795) -.fhsload.hopto.org -# @@||fhscheck.zapto.org^$script,~third-party (easylist.txt: 49794) -.fhscheck.zapto.org -# @@||elektrotanya.com/ads/$script,~third-party (easylist.txt: 49762) -.elektrotanya.com/ads/ -# @@||eclypsia.com^$script,~third-party (easylist.txt: 49759) -.eclypsia.com -# @@/wp-prevent-adblocker/*$script,~third-party (easylist.txt: 49453) -/(.*/)?wp-prevent-adblocker/.* -# @@/wp-content/plugins/simple-adblock-notice/*$script,~third-party (easylist.txt: 49451) -/(.*/)?wp-content/plugins/simple-adblock-notice/.* -# @@/blockalyzer-adblock-counter/js/advertisement.js$script,~third-party (easylist.txt: 49440) -/(.*/)?blockalyzer-adblock-counter/js/advertisement\.js -# @@||media.styleblueprint.com/ad.php?$script,~third-party (easylist.txt: 48671) -.media.styleblueprint.com/ad\.php\? -# @@||logmein.com/Serve.aspx?ZoneID=$script,~third-party (easylist.txt: 48622) -.logmein.com/Serve\.aspx\?ZoneID= -# @@||as.bankrate.com/RealMedia/ads/adstream_mjx.ads/$script,~third-party (easylist.txt: 47952) -.as.bankrate.com/RealMedia/ads/adstream_mjx\.ads/ -# @@||ads.mycricket.com/www/delivery/ajs.php?zoneid=$script,~third-party (easylist.txt: 47767) -.ads.mycricket.com/www/delivery/ajs\.php\?zoneid= -# @@/wp-content/plugins/akismet/*$script,~third-party (easylist.txt: 35454) -/(.*/)?wp-content/plugins/akismet/.* - -#ab2p-unblock-request-Aj-Cj-when-nR-Rt -{-block \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-Rt} \ - +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-nR} \ -} -# @@||youtube.com/player_api$script,third-party (easylistchina+easylist.txt: 46057) -.youtube.com/player_api -# @@||youtube.com/iframe_api$script,third-party (easylistchina+easylist.txt: 46056) -.youtube.com/iframe_api -# @@||widget.clipix.com^$script,third-party (easylistchina+easylist.txt: 46052) -.widget.clipix.com -# @@||vidible.tv/prod/$script,third-party (easylistchina+easylist.txt: 46051) -.vidible.tv/prod/ -# @@||ui.bamstatic.com^$script,third-party (easylistchina+easylist.txt: 46049) -.ui.bamstatic.com -# @@||playbuzz.com/widget/$script,third-party (easylistchina+easylist.txt: 46024) -.playbuzz.com/widget/ -# @@||p.jwpcdn.com^$script,third-party (easylistchina+easylist.txt: 46020) -.p.jwpcdn.com -# @@||netdna-cdn.com/wp-includes/js/$script,third-party (easylistchina+easylist.txt: 46018) -.netdna-cdn.com/wp-includes/js/ -# @@||my.hellobar.com^$script,third-party (easylistchina+easylist.txt: 46016) -.my.hellobar.com -# @@||intensedebate.com/js/$script,third-party (easylistchina+easylist.txt: 46003) -.intensedebate.com/js/ -# @@||imgur.com/min/$script,third-party (easylistchina+easylist.txt: 46002) -.imgur.com/min/ -# @@||google.com/jsapi$script,third-party (easylistchina+easylist.txt: 45991) -.google.com/jsapi -# @@||ajax.cloudflare.com/cdn-cgi/nexp/$script,third-party (easylistchina+easylist.txt: 45942) -.ajax.cloudflare.com/cdn-cgi/nexp/ -# @@||wowroad.info^$third-party,script (advblock.txt: 697) -.wowroad.info -# @@||wikiroutes.info^$third-party,script (advblock.txt: 696) -.wikiroutes.info -# @@||stells.info^$third-party,script (advblock.txt: 695) -.stells.info -# @@||static.kinoafisha.info^$third-party,script (advblock.txt: 694) -.static.kinoafisha.info -# @@||oplata.info^$third-party,script (advblock.txt: 693) -.oplata.info -# @@||nyan.pw^$third-party,script (advblock.txt: 692) -.nyan.pw -# @@||kuda-edu.info^$third-party,script (advblock.txt: 690) -.kuda-edu.info -# @@||infoclub.info^$third-party,script (advblock.txt: 689) -.infoclub.info -# @@||gowebinar.info^$third-party,script (advblock.txt: 688) -.gowebinar.info -# @@||ctpe.info^$third-party,script (advblock.txt: 687) -.ctpe.info -# @@||blockchain.info^$third-party,script (advblock.txt: 686) -.blockchain.info -# @@||bitrix.info^$third-party,script (advblock.txt: 685) -.bitrix.info -# @@||bdodb.info^$third-party,script (advblock.txt: 684) -.bdodb.info -# @@||autogespot.info^$third-party,script (advblock.txt: 681) -.autogespot.info -# @@||youtube.com/player_api$script,third-party (easylist.txt: 35572) -.youtube.com/player_api -# @@||youtube.com/iframe_api$script,third-party (easylist.txt: 35571) -.youtube.com/iframe_api -# @@||widget.clipix.com^$script,third-party (easylist.txt: 35567) -.widget.clipix.com -# @@||vidible.tv/prod/$script,third-party (easylist.txt: 35566) -.vidible.tv/prod/ -# @@||ui.bamstatic.com^$script,third-party (easylist.txt: 35564) -.ui.bamstatic.com -# @@||playbuzz.com/widget/$script,third-party (easylist.txt: 35539) -.playbuzz.com/widget/ -# @@||p.jwpcdn.com^$script,third-party (easylist.txt: 35535) -.p.jwpcdn.com -# @@||netdna-cdn.com/wp-includes/js/$script,third-party (easylist.txt: 35533) -.netdna-cdn.com/wp-includes/js/ -# @@||my.hellobar.com^$script,third-party (easylist.txt: 35531) -.my.hellobar.com -# @@||intensedebate.com/js/$script,third-party (easylist.txt: 35518) -.intensedebate.com/js/ -# @@||imgur.com/min/$script,third-party (easylist.txt: 35517) -.imgur.com/min/ -# @@||google.com/jsapi$script,third-party (easylist.txt: 35506) -.google.com/jsapi -# @@||ajax.cloudflare.com/cdn-cgi/nexp/$script,third-party (easylist.txt: 35457) -.ajax.cloudflare.com/cdn-cgi/nexp/ - -#ab2p-unblock-request-Anasv-nC-Cnasv-Xx -{-block \ - +client-header-tagger{ab2p-unblock-request-Anasv} \ - +server-header-tagger{ab2p-unblock-request-Cnasv} \ - +server-header-tagger{ab2p-unblock-request-nC} \ - +client-header-tagger{ab2p-unblock-request-Xx} \ -} -TAG:^ab2p-unblock-request-Anasv-nC-Cnasv-Xx$ - -#ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-nR} \ -} -# @@||advert.kp.ru^$~object,~third-party (advblock.txt: 7249) -.advert.kp.ru - -#ab2p-unblock-request-Anhm-nC-Cnhm -{-block \ - +client-header-tagger{ab2p-unblock-request-Anhm} \ - +server-header-tagger{ab2p-unblock-request-Cnhm} \ - +server-header-tagger{ab2p-unblock-request-nC} \ -} -TAG:^ab2p-unblock-request-Anhm-nC-Cnhm$ - -#ab2p-unblock-request-Anhm-nC-Cnhm-Xx -{-block \ - +client-header-tagger{ab2p-unblock-request-Anhm} \ - +server-header-tagger{ab2p-unblock-request-Cnhm} \ - +server-header-tagger{ab2p-unblock-request-nC} \ - +client-header-tagger{ab2p-unblock-request-Xx} \ -} -TAG:^ab2p-unblock-request-Anhm-nC-Cnhm-Xx$ -# @@||cracker.com.au^*/cracker-classifieds-free-ads.$~document (easylistchina+easylist.txt: 58626) -.cracker.com.au/.*/cracker-classifieds-free-ads\. -# @@||ads.ahds.ac.uk^$~document (easylistchina+easylist.txt: 58221) -.ads.ahds.ac.uk -# @@||cracker.com.au^*/cracker-classifieds-free-ads.$~document (easylist.txt: 48141) -.cracker.com.au/.*/cracker-classifieds-free-ads\. -# @@||ads.ahds.ac.uk^$~document (easylist.txt: 47736) -.ads.ahds.ac.uk - -#ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-R1299 -{-block \ - +client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-R1299} \ -} -# @@||humana-medicare.com/ad/$~document,domain=humana-medicare.com (easylistchina+easylist.txt: 58960) -.humana-medicare.com/ad/ -# @@||humana-medicare.com/ad/$~document,domain=humana-medicare.com (easylist.txt: 48475) -.humana-medicare.com/ad/ - -#ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-nR} \ -} -# @@||lemon-ads.com^$~document,~third-party (easylistchina+easylist.txt: 59082) -.lemon-ads.com -# @@||lemon-ads.com^$~document,~third-party (easylist.txt: 48597) -.lemon-ads.com - -#ab2p-unblock-request-Anhm-nC-Cnhm-when-R1879t -{-block \ - +client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-when-R1879t} \ -} -# @@|http://*.net^*.js|$third-party,domain=cbs.com (easylistchina+easylist.txt: 59951) -/.*\.net[^\w%.-].*\.js$ -.*.net/.*\.js$ -# @@|http://*.com^*.js|$third-party,domain=cbs.com (easylistchina+easylist.txt: 59946) -/.*\.com[^\w%.-].*\.js$ -.*.com/.*\.js$ -# @@.streamads.js$third-party,domain=cbs.com (easylistchina+easylist.txt: 59910) -/.*\.streamads\.js -.*.streamads.js*. -# @@|http://*.net^*.js|$third-party,domain=cbs.com (easylist.txt: 49466) -/.*\.net[^\w%.-].*\.js$ -.*.net/.*\.js$ -# @@|http://*.com^*.js|$third-party,domain=cbs.com (easylist.txt: 49461) -/.*\.com[^\w%.-].*\.js$ -.*.com/.*\.js$ -# @@.streamads.js$third-party,domain=cbs.com (easylist.txt: 49425) -/.*\.streamads\.js -.*.streamads.js*. - -#ab2p-unblock-request-Anhm-nC-Cnhm-when-R689t -{-block \ - +client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-when-R689t} \ -} -# @@||connect.facebook.net^$third-party,domain=extremetech.com (easylistchina+easylist.txt: 45848) -.connect.facebook.net -# @@||apis.google.com^$third-party,domain=extremetech.com (easylistchina+easylist.txt: 45847) -.apis.google.com -# @@||connect.facebook.net^$third-party,domain=extremetech.com (easylist.txt: 35363) -.connect.facebook.net -# @@||apis.google.com^$third-party,domain=extremetech.com (easylist.txt: 35362) -.apis.google.com - -#ab2p-unblock-request-Anhm-nC-Cnhm-when-R694t -{-block \ - +client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-when-R694t} \ -} -# @@||connect.facebook.net^$third-party,domain=patheos.com (easylistchina+easylist.txt: 45839) -.connect.facebook.net -# @@||connect.facebook.net^$third-party,domain=patheos.com (easylist.txt: 35354) -.connect.facebook.net - -#ab2p-unblock-request-Anhm-nC-Cnhm-when-nR-Rt -{-block \ - +client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-when-Rt} \ - +client-header-tagger{ab2p-unblock-request-Anhm-nC-Cnhm-when-nR} \ -} -# @@||promo.campaigndog.com^$third-party (easylistchina+easylist.txt: 59411) -.promo.campaigndog.com -# @@||clustrmaps.com/images/clustrmaps-back-soon.jpg$third-party (easylistchina+easylist.txt: 58601) -.clustrmaps.com/images/clustrmaps-back-soon\.jpg -# @@||brightcove.com^*bannerid$third-party (easylistchina+easylist.txt: 58517) -.brightcove.com/.*bannerid -# @@||promo.campaigndog.com^$third-party (easylist.txt: 48926) -.promo.campaigndog.com -# @@||clustrmaps.com/images/clustrmaps-back-soon.jpg$third-party (easylist.txt: 48116) -.clustrmaps.com/images/clustrmaps-back-soon\.jpg -# @@||brightcove.com^*bannerid$third-party (easylist.txt: 48032) -.brightcove.com/.*bannerid - #ab2p-unblock-request-Ani-nC-Cni-Xx {-block \ +client-header-tagger{ab2p-unblock-request-Ani} \ @@ -380150,9017 +38093,1037 @@ TAG:^ab2p-unblock-request-Anhm-nC-Cnhm-Xx$ +server-header-tagger{ab2p-unblock-request-nC} \ +client-header-tagger{ab2p-unblock-request-Xx} \ } -# @@||sdc.pingan.com^$~image (easylistchina+easylist.txt: 10360) +# @@||sdc.pingan.com^$~image (easylistchina.txt: 10349) .sdc.pingan.com -#ab2p-unblock-request-R762 +#ab2p-unblock-request-R189 {-block \ - +client-header-tagger{ab2p-unblock-request-R762} \ + +client-header-tagger{ab2p-unblock-request-R189} \ } -# @@.com/ad.$domain=0379home.com (easylistchina+easylist.txt: 9985) +# @@.com/ad.$domain=0379home.com (easylistchina.txt: 9971) /.*\.com/ad\. .*.com/ad\. -#ab2p-unblock-request-R763 +#ab2p-unblock-request-R190 {-block \ - +client-header-tagger{ab2p-unblock-request-R763} \ + +client-header-tagger{ab2p-unblock-request-R190} \ } -# @@||10086.cn^*/ad$domain=10086.cn (easylistchina+easylist.txt: 10078) +# @@||10086.cn^*/ad$domain=10086.cn (easylistchina.txt: 10061) .10086.cn/.*/ad -# @@||10086.cn/service/$elemhide,domain=10086.cn (easylistchina+easylist.txt: 10077) -.10086.cn/service/ -#ab2p-unblock-request-R764 +#ab2p-unblock-request-R191 {-block \ - +client-header-tagger{ab2p-unblock-request-R764} \ + +client-header-tagger{ab2p-unblock-request-R191} \ } -# @@/images/*/*.gif$domain=107.150.17.66|23.226.134.115|23.226.134.116|23.226.138.28|67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina+easylist.txt: 10041) -/(.*/)?images/.*/.*\.gif - -#ab2p-unblock-request-R765 -{-block \ - +client-header-tagger{ab2p-unblock-request-R765} \ -} -# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina+easylist.txt: 10042) +# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina.txt: 10024) /(.*/)?images/ad -#ab2p-unblock-request-R767 +#ab2p-unblock-request-R192 {-block \ - +client-header-tagger{ab2p-unblock-request-R767} \ + +client-header-tagger{ab2p-unblock-request-R192} \ } -# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina+easylist.txt: 10215) +# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina.txt: 10199) .cpro.baidustatic.com/cpro/ui/c\.js -#ab2p-unblock-request-R768 +#ab2p-unblock-request-R193 {-block \ - +client-header-tagger{ab2p-unblock-request-R768} \ + +client-header-tagger{ab2p-unblock-request-R193} \ } -# @@/advertise.$domain=123.138.234.240 (easylistchina+easylist.txt: 10018) +# @@/advertise.$domain=123.138.234.240 (easylistchina.txt: 10002) /(.*/)?advertise\. advertise.*. -#ab2p-unblock-request-R769 +#ab2p-unblock-request-R194 {-block \ - +client-header-tagger{ab2p-unblock-request-R769} \ + +client-header-tagger{ab2p-unblock-request-R194} \ } -# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina+easylist.txt: 10157) +# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina.txt: 10141) .adm.cnzz.net/js/abase\.js -# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina+easylist.txt: 10156) +# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina.txt: 10140) .adm.cnzz.net/appgcm\.php\?sid=244627& -#ab2p-unblock-request-R770 +#ab2p-unblock-request-R195 {-block \ - +client-header-tagger{ab2p-unblock-request-R770} \ + +client-header-tagger{ab2p-unblock-request-R195} \ } -# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|mahua.com (easylistchina+easylist.txt: 10024) +# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|keenfine.com|mahua.com (easylistchina.txt: 10008) /(.*/)?adview_pic_ -#ab2p-unblock-request-R771 +#ab2p-unblock-request-R196 {-block \ - +client-header-tagger{ab2p-unblock-request-R771} \ + +client-header-tagger{ab2p-unblock-request-R196} \ } -# @@?sid=ads$domain=126.com|mail.163.com (easylistchina+easylist.txt: 10066) +# @@?sid=ads$domain=126.com|mail.163.com (easylistchina.txt: 10048) /.*\?sid=ads -#ab2p-unblock-request-R772 -{-block \ - +client-header-tagger{ab2p-unblock-request-R772} \ -} -# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina+easylist.txt: 10083) -.127.0.0.1/admin/admin_ad\.php\? - -#ab2p-unblock-request-R773 -{-block \ - +client-header-tagger{ab2p-unblock-request-R773} \ -} -# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina+easylist.txt: 10033) -/(.*/)?css/ad\. -# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina+easylist.txt: 9993) -/(.*/)?168logo\.gif -168logo.gif*. - -#ab2p-unblock-request-R774 -{-block \ - +client-header-tagger{ab2p-unblock-request-R774} \ -} -# @@/cms/ads/*$domain=17.com (easylistchina+easylist.txt: 10030) -/(.*/)?cms/ads/.* - -#ab2p-unblock-request-R776 -{-block \ - +client-header-tagger{ab2p-unblock-request-R776} \ -} -# @@/ads/*$domain=189.cn (easylistchina+easylist.txt: 10009) -/(.*/)?ads/.* - -#ab2p-unblock-request-R777 -{-block \ - +client-header-tagger{ab2p-unblock-request-R777} \ -} -# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina+easylist.txt: 10051) -/(.*/)?pop\.js$ -pop.js - -#ab2p-unblock-request-R778 -{-block \ - +client-header-tagger{ab2p-unblock-request-R778} \ -} -# @@_ad.php?$domain=1obl.ru (advblock.txt: 7218) -/.*_ad\.php\? - -#ab2p-unblock-request-R779 -{-block \ - +client-header-tagger{ab2p-unblock-request-R779} \ -} -# @@/common/cf/*$domain=1point3acres.com|66u.com|dataguru.cn|jiangsuphp.jd-app.com|launcher.lenovo.com|oneplusbbs.com|readboy.com|xda.cn (easylistchina+easylist.txt: 10032) -/(.*/)?common/cf/.* - -#ab2p-unblock-request-R24 -{-block \ - +client-header-tagger{ab2p-unblock-request-R24} \ -} -# @@||ads.adfox.ru/getid?$domain=1tv.ru (advblock.txt: 7237) -.ads.adfox.ru/getid\? - -#ab2p-unblock-request-R780 -{-block \ - +client-header-tagger{ab2p-unblock-request-R780} \ -} -# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina+easylist.txt: 10040) -/(.*/)?ima/.*ad\. - -#ab2p-unblock-request-R781 -{-block \ - +client-header-tagger{ab2p-unblock-request-R781} \ -} -# @@||krutilka.net^$domain=24smile.net (advblock.txt: 7322) -.krutilka.net - -#ab2p-unblock-request-R782 -{-block \ - +client-header-tagger{ab2p-unblock-request-R782} \ -} -# @@||28.com/top_adv_$domain=28.com (easylistchina+easylist.txt: 10095) -.28.com/top_adv_ -# @@||28.com/adv_$domain=28.com (easylistchina+easylist.txt: 10094) -.28.com/adv_ - -#ab2p-unblock-request-R784 -{-block \ - +client-header-tagger{ab2p-unblock-request-R784} \ -} -# @@||gde-luchshe.ru/widget/$domain=2ip.ru (advblock.txt: 7302) -.gde-luchshe.ru/widget/ - -#ab2p-unblock-request-R786 -{-block \ - +client-header-tagger{ab2p-unblock-request-R786} \ -} -# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina+easylist.txt: 9982) -/.*&adurl=http:// - -#ab2p-unblock-request-R787 -{-block \ - +client-header-tagger{ab2p-unblock-request-R787} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=360haven.com|9bis.net|9jumpin.com.au|9news.com.au|9tutorials.com|afreesms.com|atlanticcitywebcam.com|bbc.com|bicimotosargentina.com|bitcoiner.net|budget101.com|buickforums.com|bullywiihacks.com|carsfromitaly.info|codeasily.com|darkreloaded.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|everythingon.tv|fcportables.com|ffiles.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freecoins4.me|freewaregenius.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|gifmagic.com|hackintosh.zone|hostyd.com|ibmmainframeforum.com|ilix.in|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|litecoiner.net|livenewschat.eu|lordpyrak.net|lumload.com|mangacap.com|mangakaka.com|megaallday.com|misheel.net|modsaholic.com|morganhillwebcam.com|moviemistakes.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|newsok.com|ninjaraider.com|nonags.com|nornar.com|numberempire.com|nx8.com|nyharborwebcam.com|omegadrivers.net|photos.essence.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|readersdigest.com.au|seeingwithsound.com|simply-debrid.com|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|top100clans.com|trutower.com|tv-kino.net|upfordown.com|uploadlw.com|urlink.at|virginmedia.com|warp2search.net|washington.edu|winterrowd.com|wtf-teen.com|yellowbridge.com (easylistchina+easylist.txt: 60628) -.pagead2.googlesyndication.com/pagead/show_ads\.js -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=360haven.com|9bis.net|9jumpin.com.au|9news.com.au|9tutorials.com|afreesms.com|atlanticcitywebcam.com|bbc.com|bicimotosargentina.com|bitcoiner.net|budget101.com|buickforums.com|bullywiihacks.com|carsfromitaly.info|codeasily.com|darkreloaded.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|everythingon.tv|fcportables.com|ffiles.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freecoins4.me|freewaregenius.com|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|gifmagic.com|hackintosh.zone|hostyd.com|ibmmainframeforum.com|ilix.in|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|litecoiner.net|livenewschat.eu|lordpyrak.net|lumload.com|mangacap.com|mangakaka.com|megaallday.com|misheel.net|modsaholic.com|morganhillwebcam.com|moviemistakes.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|newsok.com|ninjaraider.com|nonags.com|nornar.com|numberempire.com|nx8.com|nyharborwebcam.com|omegadrivers.net|photos.essence.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|readersdigest.com.au|seeingwithsound.com|simply-debrid.com|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|top100clans.com|trutower.com|tv-kino.net|upfordown.com|uploadlw.com|urlink.at|virginmedia.com|warp2search.net|washington.edu|winterrowd.com|wtf-teen.com|yellowbridge.com (easylist.txt: 50143) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-request-R788 -{-block \ - +client-header-tagger{ab2p-unblock-request-R788} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=360haven.com|9bis.net|9news.com.au|9tutorials.com|afreesms.com|altoque.com|androidrepublic.org|apkmirror.com|aseanlegacy.net|atlanticcitywebcam.com|better-explorer.com|bicimotosargentina.com|bitcofree.com|bitcoiner.net|bitcoinker.com|borfast.com|boxbit.co.in|budget101.com|buickforums.com|bullywiihacks.com|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|darkreloaded.com|debridit.com|debridnet.com|dev-metal.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|ezoden.com|fcportables.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freebitco.in|freecoins4.me|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|getdebrid.com|gnomio.com|hackintosh.zone|hostyd.com|hubturkey.net|ibmmainframeforum.com|ilix.in|incredibox.com|kadinlarkulubu.com|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|leecher.us|liberallogic101.com|litecoiner.net|livenewschat.eu|lomeutec.com|lordpyrak.net|mailbait.info|mangacap.com|mangahop.com|mangakaka.com|masfuertequeelhierro.com|megaleech.us|misheel.net|morganhillwebcam.com|moviemistakes.com|mpc-g.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|nornar.com|noticiasautomotivas.com.br|numberempire.com|nyharborwebcam.com|omegadrivers.net|play-old-pc-games.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|scriptnulled.eu|settlersonlinemaps.com|simply-debrid.com|sizedrive.com|slideplayer.com.br|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|trutower.com|unlocktheinbox.com|upfordown.com|uploadlw.com|urlink.at|wallpapersimages.co.uk|washington.edu|whatismyip.com|winterrowd.com|wrestlingtalk.org|xcl.com.br|yellowbridge.com|zeperfs.com (easylistchina+easylist.txt: 60624) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=360haven.com|9bis.net|9news.com.au|9tutorials.com|afreesms.com|altoque.com|androidrepublic.org|apkmirror.com|aseanlegacy.net|atlanticcitywebcam.com|better-explorer.com|bicimotosargentina.com|bitcofree.com|bitcoiner.net|bitcoinker.com|borfast.com|boxbit.co.in|budget101.com|buickforums.com|bullywiihacks.com|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|darkreloaded.com|debridit.com|debridnet.com|dev-metal.com|docpaste.com|dragoart.com|dreamscene.org|drivearabia.com|dsero.com|epmads.com|ezoden.com|fcportables.com|file4go.com|foro.clubcelica.es|free.smsmarkaz.urdupoint.com|freebitco.in|freecoins4.me|ftlauderdalebeachcam.com|ftlauderdalewebcam.com|full-ngage-games.blogspot.com|gamespowerita.com|getdebrid.com|gnomio.com|hackintosh.zone|hostyd.com|hubturkey.net|ibmmainframeforum.com|ilix.in|incredibox.com|kadinlarkulubu.com|keywestharborwebcam.com|kingofgames.net|korean-candy.com|kshowes.net|leecher.us|liberallogic101.com|litecoiner.net|livenewschat.eu|lomeutec.com|lordpyrak.net|mailbait.info|mangacap.com|mangahop.com|mangakaka.com|masfuertequeelhierro.com|megaleech.us|misheel.net|morganhillwebcam.com|moviemistakes.com|mpc-g.com|mugiwaranofansub.blogspot.com.ar|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|nornar.com|noticiasautomotivas.com.br|numberempire.com|nyharborwebcam.com|omegadrivers.net|play-old-pc-games.com|portarubawebcam.com|portbermudawebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com|portnywebcam.com|preemlinks.com|priva.us|puromarketing.com|radioaficion.com|rapid8.com|scriptnulled.eu|settlersonlinemaps.com|simply-debrid.com|sizedrive.com|slideplayer.com.br|smashgamez.com|softpedia.com|software4all-now.blogspot.co.uk|spoilertv.com|tamercome.blogspot.co.uk|tech-blog.net|techydoor.com|thememypc.com|themes.themaxdavis.com|tipstank.com|trutower.com|unlocktheinbox.com|upfordown.com|uploadlw.com|urlink.at|wallpapersimages.co.uk|washington.edu|whatismyip.com|winterrowd.com|wrestlingtalk.org|xcl.com.br|yellowbridge.com|zeperfs.com (easylist.txt: 50139) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-request-R790 -{-block \ - +client-header-tagger{ab2p-unblock-request-R790} \ -} -# @@/assets/adv/*$domain=4008927927.cn (easylistchina+easylist.txt: 10028) -/(.*/)?assets/adv/.* - -#ab2p-unblock-request-R794 -{-block \ - +client-header-tagger{ab2p-unblock-request-R794} \ -} -# @@||5060.com^$elemhide,domain=5060.com (easylistchina+easylist.txt: 10104) -.5060.com - -#ab2p-unblock-request-R795 -{-block \ - +client-header-tagger{ab2p-unblock-request-R795} \ -} -# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina+easylist.txt: 10214) -.cpro.baidu.com/cpro/ui/c\.js - -#ab2p-unblock-request-R796 -{-block \ - +client-header-tagger{ab2p-unblock-request-R796} \ -} -# @@/images/ad/*$domain=5i5j.com|9588.com|diantai.ifeng.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|rapoo.cn|rapoo.nl|snh48.com|sozi.cn|tingbook.com (easylistchina+easylist.txt: 10043) -/(.*/)?images/ad/.* - -#ab2p-unblock-request-R797 -{-block \ - +client-header-tagger{ab2p-unblock-request-R797} \ -} -# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina+easylist.txt: 10200) -.cbjs.baidu.com/js/o\.js - -#ab2p-unblock-request-R798 -{-block \ - +client-header-tagger{ab2p-unblock-request-R798} \ -} -# @@||adm.fwmrm.net^*/LinkTag2.js$domain=6abc.com|7online.com|abc11.com|abc13.com|abc30.com|abc7.com|abc7chicago.com|abc7news.com|ahctv.com|animalplanet.com|destinationamerica.com|discovery.com|discoverylife.com|tlc.com (easylistchina+easylist.txt: 58205) -.adm.fwmrm.net/.*/LinkTag2\.js -# @@||adm.fwmrm.net^*/LinkTag2.js$domain=6abc.com|7online.com|abc11.com|abc13.com|abc30.com|abc7.com|abc7chicago.com|abc7news.com|ahctv.com|animalplanet.com|destinationamerica.com|discovery.com|discoverylife.com|tlc.com (easylist.txt: 47720) -.adm.fwmrm.net/.*/LinkTag2\.js - -#ab2p-unblock-request-R802 -{-block \ - +client-header-tagger{ab2p-unblock-request-R802} \ -} -# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina+easylist.txt: 10447) -/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ -/\.7k7k.com\/(?!(ad|load)) - -#ab2p-unblock-request-R803 -{-block \ - +client-header-tagger{ab2p-unblock-request-R803} \ -} -# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina+easylist.txt: 9996) -/(.*/)?ad_file/.* - -#ab2p-unblock-request-R804 -{-block \ - +client-header-tagger{ab2p-unblock-request-R804} \ -} -# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina+easylist.txt: 10297) -.l.qq.com/lview\? -# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina+easylist.txt: 10287) -.j.wit.qq.com/sc/crystal_ad\.js\? - -#ab2p-unblock-request-R805 -{-block \ - +client-header-tagger{ab2p-unblock-request-R805} \ -} -# @@/ad_images/*$domain=88box.com (easylistchina+easylist.txt: 9997) -/(.*/)?ad_images/.* - -#ab2p-unblock-request-R806 -{-block \ - +client-header-tagger{ab2p-unblock-request-R806} \ -} -# @@.com/ads/$domain=88boxjx.com (easylistchina+easylist.txt: 9987) -/.*\.com/ads/ -.*.com/ads/ - -#ab2p-unblock-request-R807 -{-block \ - +client-header-tagger{ab2p-unblock-request-R807} \ -} -# @@/web/ads/*$domain=95516.com (easylistchina+easylist.txt: 10060) -/(.*/)?web/ads/.* - -#ab2p-unblock-request-R810 -{-block \ - +client-header-tagger{ab2p-unblock-request-R810} \ -} -# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina+easylist.txt: 10336) -.pos.baidu.com/ecom\? - -#ab2p-unblock-request-R811 -{-block \ - +client-header-tagger{ab2p-unblock-request-R811} \ -} -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=9jumpin.com.au|9news.com.au|bigbrother.com.au|ninemsn.com.au (easylistchina+easylist.txt: 58204) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=9jumpin.com.au|9news.com.au|bigbrother.com.au|ninemsn.com.au (easylist.txt: 47719) -.adm.fwmrm.net/.*/BrightcovePlugin\.js - -#ab2p-unblock-request-R812 -{-block \ - +client-header-tagger{ab2p-unblock-request-R812} \ -} -# @@||static9.net.au^*/advert.js$domain=9news.com.au (easylistchina+easylist.txt: 60767) -.static9.net.au/.*/advert\.js -# @@||gscontxt.net/main/channels-jsonp.cgi?$domain=9news.com.au (easylistchina+easylist.txt: 60366) -.gscontxt.net/main/channels-jsonp\.cgi\? -# @@||static9.net.au^*/advert.js$domain=9news.com.au (easylist.txt: 50282) -.static9.net.au/.*/advert\.js -# @@||gscontxt.net/main/channels-jsonp.cgi?$domain=9news.com.au (easylist.txt: 49881) -.gscontxt.net/main/channels-jsonp\.cgi\? - -#ab2p-unblock-request-R815 -{-block \ - +client-header-tagger{ab2p-unblock-request-R815} \ -} -# @@/assets/ads/*$domain=abcphoto.com.ua (advblock.txt: 7196) -/(.*/)?assets/ads/.* - -#ab2p-unblock-request-R816 -{-block \ - +client-header-tagger{ab2p-unblock-request-R816} \ -} -# @@||google.com/ads/search/module/ads/*/search.js$domain=about.com|armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|ehow.com|forbbbs.org|forbes.com|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|zoover.co.uk|zoover.com (easylistchina+easylist.txt: 58897) -.google.com/ads/search/module/ads/.*/search\.js -# @@||google.com/ads/search/module/ads/*/search.js$domain=about.com|armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|ehow.com|forbbbs.org|forbes.com|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|zoover.co.uk|zoover.com (easylist.txt: 48412) -.google.com/ads/search/module/ads/.*/search\.js - -#ab2p-unblock-request-R817 -{-block \ - +client-header-tagger{ab2p-unblock-request-R817} \ -} -# @@||google.com/adsense/search/async-ads.js$domain=about.com|ehow.com (easylistchina+easylist.txt: 58900) -.google.com/adsense/search/async-ads\.js -# @@||google.com/adsense/search/async-ads.js$domain=about.com|ehow.com (easylist.txt: 48415) -.google.com/adsense/search/async-ads\.js - -#ab2p-unblock-request-R820 -{-block \ - +client-header-tagger{ab2p-unblock-request-R820} \ -} -# @@||accounts.google.com/adwords/$domain=accounts.google.com (easylistchina+easylist.txt: 61163) -.accounts.google.com/adwords/ -# @@||accounts.google.com/adwords/$domain=accounts.google.com (easylist.txt: 50678) -.accounts.google.com/adwords/ - -#ab2p-unblock-request-R832 -{-block \ - +client-header-tagger{ab2p-unblock-request-R832} \ -} -# @@||5min.com/Scripts/PlayerSeed.js?$domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylistchina+easylist.txt: 45940) -.5min.com/Scripts/PlayerSeed\.js\? -# @@||5min.com/Scripts/PlayerSeed.js?$domain=activistpost.com|addictinginfo.org|alfonzorachel.com|allenbwest.com|allenwestrepublic.com|aplus.com|askmefast.com|bizpacreview.com|bulletsfirst.net|chacha.com|christianpost.com|christiantoday.com|clashdaily.com|classicalite.com|comicallyincorrect.com|comicbookmovie.com|conservativebyte.com|conservativetribune.com|conservativevideos.com|cowboybyte.com|crossmap.com|dailyheadlines.net|dailysurge.com|dccrimestories.com|digitaljournal.com|drhotze.com|enstarz.com|explosm.net|flexonline.com|gamezone.com|genfringe.com|girlsjustwannahaveguns.comhellou.co.uk|heroichollywood.com|hngn.com|infowars.com|instigatornews.com|joeforamerica.com|kdramastars.com|kpopstarz.com|latinopost.com|latinpost.com|libertyunyielding.com|listverse.com|mensfitness.com|minutemennews.com|mobilelikez.com|mstarz.com|muscleandfitness.com|musictimes.com|naturalblaze.com|naturalnews.com|natureworldnews.com|newser.com|oddee.com|okmagazine.com|patriotoutdoornews.com|pitgrit.com|radaronline.com|rantlifestyle.com|realfarmacy.com|redmaryland.com|segmentnext.com|shark-tank.com|starmagazine.com|stevedeace.com|techtimes.com|thechive.com|thegatewaypundit.com|themattwalshblog.com|thepoke.co.uk|townhall.com|unilad.co.uk|variety.com|vcpost.com|victoriajackson.com|viralnova.com|viralthread.com (easylist.txt: 35455) -.5min.com/Scripts/PlayerSeed\.js\? - -#ab2p-unblock-request-R834 -{-block \ - +client-header-tagger{ab2p-unblock-request-R834} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=activistpost.com|afreesms.com|androidrepublic.org|apkmirror.com|appraisersforum.com|aseanlegacy.net|better-explorer.com|bitcofree.com|bitcoinker.com|boxbit.co.in|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|debridit.com|debridnet.com|demo-uhd3d.com|dev-metal.com|ezoden.com|firstonetv.com|freebitco.in|freeprosurfer.com|getdebrid.com|gnomio.com|hackintosh.zone|hubturkey.net|i-stats.net|incredibox.com|kadinlarkulubu.com|leecher.us|liberallogic101.com|lomeutec.com|mangacap.com|mangahop.com|masfuertequeelhierro.com|megaleech.us|mpc-g.com|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|noticiasautomotivas.com.br|pattayaone.net|play-old-pc-games.com|sc2casts.com|scriptnulled.eu|settlersonlinemaps.com|shinobilifeonline.com|sizedrive.com|slideplayer.com.br|streaming-hub.com|unlockpwd.com|unlocktheinbox.com|uploadex.com|wallpapersimages.co.uk|wrestlingtalk.org|xcl.com.br|zeperfs.com (easylistchina+easylist.txt: 60625) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=activistpost.com|afreesms.com|androidrepublic.org|apkmirror.com|appraisersforum.com|aseanlegacy.net|better-explorer.com|bitcofree.com|bitcoinker.com|boxbit.co.in|calcularindemnizacion.es|chrissmoove.com|clubedohardware.com.br|danydanielrt.com|debridit.com|debridnet.com|demo-uhd3d.com|dev-metal.com|ezoden.com|firstonetv.com|freebitco.in|freeprosurfer.com|getdebrid.com|gnomio.com|hackintosh.zone|hubturkey.net|i-stats.net|incredibox.com|kadinlarkulubu.com|leecher.us|liberallogic101.com|lomeutec.com|mangacap.com|mangahop.com|masfuertequeelhierro.com|megaleech.us|mpc-g.com|mypapercraft.net|narkive.com|niresh.co|niresh12495.com|nonags.com|noticiasautomotivas.com.br|pattayaone.net|play-old-pc-games.com|sc2casts.com|scriptnulled.eu|settlersonlinemaps.com|shinobilifeonline.com|sizedrive.com|slideplayer.com.br|streaming-hub.com|unlockpwd.com|unlocktheinbox.com|uploadex.com|wallpapersimages.co.uk|wrestlingtalk.org|xcl.com.br|zeperfs.com (easylist.txt: 50140) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js - -#ab2p-unblock-request-R839 -{-block \ - +client-header-tagger{ab2p-unblock-request-R839} \ -} -# @@||api.paymentwall.com^$domain=adguard.com (easylistchina+easylist.txt: 58416) -.api.paymentwall.com -# @@||api.paymentwall.com^$domain=adguard.com (easylist.txt: 47931) -.api.paymentwall.com - -#ab2p-unblock-request-R840 -{-block \ - +client-header-tagger{ab2p-unblock-request-R840} \ -} -# @@||wp.com/adlib.info/$domain=adlib.info (easylistchina+easylist.txt: 59824) -.wp.com/adlib\.info/ -# @@||wp.com/adlib.info/$domain=adlib.info (easylist.txt: 49339) -.wp.com/adlib\.info/ - -#ab2p-unblock-request-R841 -{-block \ - +client-header-tagger{ab2p-unblock-request-R841} \ -} -# @@/adline.$domain=adline.by|adline.kiev.ua|adline.reformal.ru (advblock.txt: 7185) -/(.*/)?adline\. -adline.*. - -#ab2p-unblock-request-R842 -{-block \ - +client-header-tagger{ab2p-unblock-request-R842} \ -} -# @@||cooladata.com^$domain=adme.ru (advblock.txt: 7287) -.cooladata.com - -#ab2p-unblock-request-R843 -{-block \ - +client-header-tagger{ab2p-unblock-request-R843} \ -} -# @@||adnet.mennonite.net^$domain=adnetonline.org (easylistchina+easylist.txt: 58211) -.adnet.mennonite.net -# @@||adnet.mennonite.net^$domain=adnetonline.org (easylist.txt: 47726) -.adnet.mennonite.net - -#ab2p-unblock-request-R845 -{-block \ - +client-header-tagger{ab2p-unblock-request-R845} \ -} -# @@||ads.bridgetrack.com/ads_v2/script/btwrite.js$domain=ads.bridgetrack.com (easylistchina+easylist.txt: 58226) -.ads.bridgetrack.com/ads_v2/script/btwrite\.js -# @@||ads.bridgetrack.com/ads_v2/script/btwrite.js$domain=ads.bridgetrack.com (easylist.txt: 47741) -.ads.bridgetrack.com/ads_v2/script/btwrite\.js - -#ab2p-unblock-request-R846 -{-block \ - +client-header-tagger{ab2p-unblock-request-R846} \ -} -# @@||ton.twimg.com^$domain=ads.twitter.com|analytics.twitter.com (easylistchina+easylist.txt: 61266) -.ton.twimg.com -# @@||ads.twitter.com^$domain=ads.twitter.com|analytics.twitter.com (easylistchina+easylist.txt: 61265) -.ads.twitter.com -# @@||ton.twimg.com^$domain=ads.twitter.com|analytics.twitter.com (easylist.txt: 50781) -.ton.twimg.com -# @@||ads.twitter.com^$domain=ads.twitter.com|analytics.twitter.com (easylist.txt: 50780) -.ads.twitter.com - -#ab2p-unblock-request-R847 -{-block \ - +client-header-tagger{ab2p-unblock-request-R847} \ -} -# @@||adsbox.$domain=adsbox.com.ua|adsbox.ru (advblock.txt: 7242) -.adsbox.*. - -#ab2p-unblock-request-R848 -{-block \ - +client-header-tagger{ab2p-unblock-request-R848} \ -} -# @@/adservice.$domain=adservice.kz (advblock.txt: 7189) -/(.*/)?adservice\. -adservice.*. - -#ab2p-unblock-request-R849 -{-block \ - +client-header-tagger{ab2p-unblock-request-R849} \ -} -# @@||banners.one.com/bannere/$domain=adservicemedia.dk (easylistchina+easylist.txt: 61296) -.banners.one.com/bannere/ -# @@||ad-server.one.com/click?agency=adservice-$domain=adservicemedia.dk (easylistchina+easylist.txt: 61292) -.ad-server.one.com/click\?agency=adservice- -# @@||banners.one.com/bannere/$domain=adservicemedia.dk (easylist.txt: 50811) -.banners.one.com/bannere/ -# @@||ad-server.one.com/click?agency=adservice-$domain=adservicemedia.dk (easylist.txt: 50807) -.ad-server.one.com/click\?agency=adservice- - -#ab2p-unblock-request-R850 -{-block \ - +client-header-tagger{ab2p-unblock-request-R850} \ -} -# @@/adstyle.$domain=adstyle.com.ua (advblock.txt: 7190) -/(.*/)?adstyle\. -adstyle.*. - -#ab2p-unblock-request-R851 -{-block \ - +client-header-tagger{ab2p-unblock-request-R851} \ -} -# @@||fwmrm.net/p/*/admanager.js$domain=adultswim.com|animalist.com|revision3.com|testtube.com (easylistchina+easylist.txt: 60319) -.fwmrm.net/p/.*/admanager\.js -# @@||fwmrm.net/p/*/admanager.js$domain=adultswim.com|animalist.com|revision3.com|testtube.com (easylist.txt: 49834) -.fwmrm.net/p/.*/admanager\.js - -#ab2p-unblock-request-R852 -{-block \ - +client-header-tagger{ab2p-unblock-request-R852} \ -} -# @@||turner.com^*/ads/freewheel/*/admanager.swf$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylistchina+easylist.txt: 59709) -.turner.com/.*/ads/freewheel/.*/admanager\.swf -# @@||turner.com^*/ads/freewheel/*/AdManager.js$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylistchina+easylist.txt: 59708) -.turner.com/.*/ads/freewheel/.*/AdManager\.js -# @@||turner.com^*/ads/freewheel/*/admanager.swf$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylist.txt: 49224) -.turner.com/.*/ads/freewheel/.*/admanager\.swf -# @@||turner.com^*/ads/freewheel/*/AdManager.js$domain=adultswim.com|cartoonnetwork.com|cnn.com|hlntv.com|nba.com|tbs.com|teamcoco.com|tntdrama.com (easylist.txt: 49223) -.turner.com/.*/ads/freewheel/.*/AdManager\.js - -#ab2p-unblock-request-R853 -{-block \ - +client-header-tagger{ab2p-unblock-request-R853} \ -} -# @@||adv.d3.ru^$domain=adv.d3.ru (advblock.txt: 7245) -.adv.d3.ru - -#ab2p-unblock-request-R854 -{-block \ - +client-header-tagger{ab2p-unblock-request-R854} \ -} -# @@||adv.ramr.ru^$domain=adv.ramr.ru (advblock.txt: 7246) -.adv.ramr.ru - -#ab2p-unblock-request-R855 -{-block \ - +client-header-tagger{ab2p-unblock-request-R855} \ -} -# @@||advertising.yandex.$domain=adv.ya.ru (advblock.txt: 7252) -.advertising.yandex.*. - -#ab2p-unblock-request-R856 -{-block \ - +client-header-tagger{ab2p-unblock-request-R856} \ -} -# @@/advert-$domain=advert-control.ru|advert-empire.com|advert-line.ru|advert-technology.ru (advblock.txt: 7191) -/(.*/)?advert- -advert-*. - -#ab2p-unblock-request-R857 -{-block \ - +client-header-tagger{ab2p-unblock-request-R857} \ -} -# @@||advertisers.io^$domain=advertisers.io (easylistchina+easylist.txt: 58337) -.advertisers.io -# @@||advertisers.io^$domain=advertisers.io (easylist.txt: 47852) -.advertisers.io - -#ab2p-unblock-request-R858 -{-block \ - +client-header-tagger{ab2p-unblock-request-R858} \ -} -# @@||advertising.amazon.com^$domain=advertising.amazon.com (easylistchina+easylist.txt: 61287) -.advertising.amazon.com -# @@||advertising.amazon.com^$domain=advertising.amazon.com (easylist.txt: 50802) -.advertising.amazon.com - -#ab2p-unblock-request-R859 -{-block \ - +client-header-tagger{ab2p-unblock-request-R859} \ -} -# @@||advertising.apple.com^$domain=advertising.apple.com (easylistchina+easylist.txt: 61217) -.advertising.apple.com -# @@||advertising.apple.com^$domain=advertising.apple.com (easylist.txt: 50732) -.advertising.apple.com - -#ab2p-unblock-request-R860 -{-block \ - +client-header-tagger{ab2p-unblock-request-R860} \ -} -# @@||advertising.sanoma.be^$domain=advertising.sanoma.be (easylistchina+easylist.txt: 61243) -.advertising.sanoma.be -# @@||advertising.sanoma.be^$domain=advertising.sanoma.be (easylist.txt: 50758) -.advertising.sanoma.be - -#ab2p-unblock-request-R861 -{-block \ - +client-header-tagger{ab2p-unblock-request-R861} \ -} -# @@||adview.ru^$domain=adview.ru (advblock.txt: 7254) -.adview.ru - -#ab2p-unblock-request-R862 -{-block \ - +client-header-tagger{ab2p-unblock-request-R862} \ -} -# @@/adweb.$domain=adweb.by (advblock.txt: 7193) -/(.*/)?adweb\. -adweb.*. - -#ab2p-unblock-request-R863 -{-block \ - +client-header-tagger{ab2p-unblock-request-R863} \ -} -# @@||adwords.google.com^$domain=adwords.google.com (easylistchina+easylist.txt: 61166) -.adwords.google.com -# @@||adwords.google.com^$domain=adwords.google.com (easylist.txt: 50681) -.adwords.google.com - -#ab2p-unblock-request-R866 -{-block \ - +client-header-tagger{ab2p-unblock-request-R866} \ -} -# @@||amazon-adsystem.com^$domain=affiliate-program.amazon.com (easylistchina+easylist.txt: 61256) -.amazon-adsystem.com -# @@||amazon-adsystem.com^$domain=affiliate-program.amazon.com (easylist.txt: 50771) -.amazon-adsystem.com - -#ab2p-unblock-request-R868 -{-block \ - +client-header-tagger{ab2p-unblock-request-R868} \ -} -# @@||images-amazon.com^$domain=affrity.com (easylistchina+easylist.txt: 58977) -.images-amazon.com -# @@||amazon-adsystem.com^$domain=affrity.com (easylistchina+easylist.txt: 58393) -.amazon-adsystem.com -# @@||images-amazon.com^$domain=affrity.com (easylist.txt: 48492) -.images-amazon.com -# @@||amazon-adsystem.com^$domain=affrity.com (easylist.txt: 47908) -.amazon-adsystem.com - -#ab2p-unblock-request-R873 -{-block \ - +client-header-tagger{ab2p-unblock-request-R873} \ -} -# @@||afisha.ru/proxy/$domain=afisha.ru (advblock.txt: 7257) -.afisha.ru/proxy/ - -#ab2p-unblock-request-R876 -{-block \ - +client-header-tagger{ab2p-unblock-request-R876} \ -} -# @@||medrx.sensis.com.au/images/sensis/generic.js$domain=afl.com.au (easylistchina+easylist.txt: 59163) -.medrx.sensis.com.au/images/sensis/generic\.js -# @@||img.mediaplex.com^*_afl_bettingpage_$domain=afl.com.au (easylistchina+easylist.txt: 58994) -.img.mediaplex.com/.*_afl_bettingpage_ -# @@||adfarm.mediaplex.com^$domain=afl.com.au (easylistchina+easylist.txt: 58196) -.adfarm.mediaplex.com -# @@||medrx.sensis.com.au/images/sensis/generic.js$domain=afl.com.au (easylist.txt: 48678) -.medrx.sensis.com.au/images/sensis/generic\.js -# @@||img.mediaplex.com^*_afl_bettingpage_$domain=afl.com.au (easylist.txt: 48509) -.img.mediaplex.com/.*_afl_bettingpage_ -# @@||adfarm.mediaplex.com^$domain=afl.com.au (easylist.txt: 47711) -.adfarm.mediaplex.com - -#ab2p-unblock-request-R877 -{-block \ - +client-header-tagger{ab2p-unblock-request-R877} \ -} -# @@||medrx.sensis.com.au/images/sensis/*/util.js$domain=afl.com.au|goal.com (easylistchina+easylist.txt: 59162) -.medrx.sensis.com.au/images/sensis/.*/util\.js -# @@||medrx.sensis.com.au/images/sensis/*/util.js$domain=afl.com.au|goal.com (easylist.txt: 48677) -.medrx.sensis.com.au/images/sensis/.*/util\.js - -#ab2p-unblock-request-R878 -{-block \ - +client-header-tagger{ab2p-unblock-request-R878} \ -} -# @@||97.74.238.106^$domain=afreesms.com (easylistchina+easylist.txt: 59975) -.97.74.238.106 -# @@||97.74.238.106^$domain=afreesms.com (easylist.txt: 49490) -.97.74.238.106 - -#ab2p-unblock-request-R882 -{-block \ - +client-header-tagger{ab2p-unblock-request-R882} \ -} -# @@||advert.akado.ru/$domain=akado.ru (advblock.txt: 7248) -.advert.akado.ru - -#ab2p-unblock-request-R883 -{-block \ - +client-header-tagger{ab2p-unblock-request-R883} \ -} -# @@/ai/adbanner/*$domain=akado.ru|megafon.ru (advblock.txt: 7195) -/(.*/)?ai/adbanner/.* - -#ab2p-unblock-request-R885 -{-block \ - +client-header-tagger{ab2p-unblock-request-R885} \ -} -# @@||com/banners/$domain=akprior.com|eurobank-ua.com|maingear.com (advblock.txt: 7286) - -#ab2p-unblock-request-R886 -{-block \ - +client-header-tagger{ab2p-unblock-request-R886} \ -} -# @@/files/banners/*$domain=aktiv48.ru|interzet.ru|pgpru.com (advblock.txt: 7200) -/(.*/)?files/banners/.* - -#ab2p-unblock-request-R889 -{-block \ - +client-header-tagger{ab2p-unblock-request-R889} \ -} -# @@://ads.$domain=alfabank.ru|mts.ru (advblock.txt: 7216) -/.*://ads\. -ads.*. - -#ab2p-unblock-request-R891 -{-block \ - +client-header-tagger{ab2p-unblock-request-R891} \ -} -# @@/advertisment.js|$domain=allserial.tv|turbobitit.org|vidhost12.org (advblock.txt: 7532) -/(.*/)?advertisment\.js$ -advertisment.js - -#ab2p-unblock-request-R892 -{-block \ - +client-header-tagger{ab2p-unblock-request-R892} \ -} -# @@||adman.gr/adman-video.js$domain=alphatv.gr (easylistchina+easylist.txt: 60935) -.adman.gr/adman-video\.js -# @@||adman.gr/adman-video.js$domain=alphatv.gr (easylist.txt: 50450) -.adman.gr/adman-video\.js - -#ab2p-unblock-request-R899 -{-block \ - +client-header-tagger{ab2p-unblock-request-R899} \ -} -# @@||images-amazon.com/images/*/adsimages/$domain=amazon.com (easylistchina+easylist.txt: 58975) -.images-amazon.com/images/.*/adsimages/ -# @@||images-amazon.com/images/*/adsimages/$domain=amazon.com (easylist.txt: 48490) -.images-amazon.com/images/.*/adsimages/ - -#ab2p-unblock-request-R901 -{-block \ - +client-header-tagger{ab2p-unblock-request-R901} \ -} -# @@||partner.googleadservices.com/gampad/google_ads_gpt.js$domain=amctheatres.com|pitchfork.com|podomatic.com|virginaustralia.com (easylistchina+easylist.txt: 59342) -.partner.googleadservices.com/gampad/google_ads_gpt\.js -# @@||partner.googleadservices.com/gampad/google_ads_gpt.js$domain=amctheatres.com|pitchfork.com|podomatic.com|virginaustralia.com (easylist.txt: 48857) -.partner.googleadservices.com/gampad/google_ads_gpt\.js - -#ab2p-unblock-request-R903 -{-block \ - +client-header-tagger{ab2p-unblock-request-R903} \ -} -# @@||ams.amazon.co.jp^$domain=ams.amazon.co.jp (easylistchina+easylist.txt: 61288) -.ams.amazon.co.jp -# @@||ams.amazon.co.jp^$domain=ams.amazon.co.jp (easylist.txt: 50803) -.ams.amazon.co.jp - -#ab2p-unblock-request-R904 -{-block \ - +client-header-tagger{ab2p-unblock-request-R904} \ -} -# @@||ams.amazon.co.uk^$domain=ams.amazon.co.uk (easylistchina+easylist.txt: 61289) -.ams.amazon.co.uk -# @@||ams.amazon.co.uk^$domain=ams.amazon.co.uk (easylist.txt: 50804) -.ams.amazon.co.uk - -#ab2p-unblock-request-R905 -{-block \ - +client-header-tagger{ab2p-unblock-request-R905} \ -} -# @@||ams.amazon.com^$domain=ams.amazon.com (easylistchina+easylist.txt: 61290) -.ams.amazon.com -# @@||ams.amazon.com^$domain=ams.amazon.com (easylist.txt: 50805) -.ams.amazon.com - -#ab2p-unblock-request-R908 -{-block \ - +client-header-tagger{ab2p-unblock-request-R908} \ -} -# @@||objects.tremormedia.com/embed/swf/acudeoplayer.swf$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylistchina+easylist.txt: 59287) -.objects.tremormedia.com/embed/swf/acudeoplayer\.swf -# @@||objects.tremormedia.com/embed/js/$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylistchina+easylist.txt: 59285) -.objects.tremormedia.com/embed/js/ -# @@||objects.tremormedia.com/embed/swf/acudeoplayer.swf$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylist.txt: 48802) -.objects.tremormedia.com/embed/swf/acudeoplayer\.swf -# @@||objects.tremormedia.com/embed/js/$domain=animecrave.com|bostonherald.com|deluxemusic.tv|deluxetelevision.com|theunlockr.com|videopoker.com|weeklyworldnews.com (easylist.txt: 48800) -.objects.tremormedia.com/embed/js/ - -#ab2p-unblock-request-R909 -{-block \ - +client-header-tagger{ab2p-unblock-request-R909} \ -} -# @@||ltassrv.com/yume.swf$domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylistchina+easylist.txt: 59115) -.ltassrv.com/yume\.swf -# @@||ltassrv.com/yume.swf$domain=animecrazy.net|gamedorm.org|gamepro.com|satsukai.com|sparknotes.com (easylist.txt: 48630) -.ltassrv.com/yume\.swf - -#ab2p-unblock-request-R910 -{-block \ - +client-header-tagger{ab2p-unblock-request-R910} \ -} -# @@||chitika.net/getads.js$domain=anisearch.com (easylistchina+easylist.txt: 60156) -.chitika.net/getads\.js -# @@||chitika.net/getads.js$domain=anisearch.com (easylist.txt: 49671) -.chitika.net/getads\.js - -#ab2p-unblock-request-R93 -{-block \ - +client-header-tagger{ab2p-unblock-request-R93} \ -} -# @@||anistar.ru/adv/$domain=anistar.ru (advblock.txt: 7560) -.anistar.ru/adv/ - -#ab2p-unblock-request-R912 -{-block \ - +client-header-tagger{ab2p-unblock-request-R912} \ -} -# @@||adsonar.com/js/adsonar.js$domain=ansingstatejournal.com|app.com|battlecreekenquirer.com|clarionledger.com|coloradoan.com|dailyrecord.com|dailyworld.com|delmarvanow.com|freep.com|greatfallstribune.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|ithacajournal.com|jconline.com|livingstondaily.com|montgomeryadvertiser.com|mycentraljersey.com|news-press.com|pal-item.com|pnj.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|shreveporttimes.com|stargazette.com|tallahassee.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|thenewsstar.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com (easylistchina+easylist.txt: 58307) -.adsonar.com/js/adsonar\.js -# @@||adsonar.com/js/adsonar.js$domain=ansingstatejournal.com|app.com|battlecreekenquirer.com|clarionledger.com|coloradoan.com|dailyrecord.com|dailyworld.com|delmarvanow.com|freep.com|greatfallstribune.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|ithacajournal.com|jconline.com|livingstondaily.com|montgomeryadvertiser.com|mycentraljersey.com|news-press.com|pal-item.com|pnj.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|shreveporttimes.com|stargazette.com|tallahassee.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|thenewsstar.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com (easylist.txt: 47822) -.adsonar.com/js/adsonar\.js - -#ab2p-unblock-request-R913 -{-block \ - +client-header-tagger{ab2p-unblock-request-R913} \ -} -# @@||smartadserver.com/call/pubj/*/S/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60748) -.smartadserver.com/call/pubj/.*/S/.*/\? -# @@||smartadserver.com/call/pubj/*/M/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylistchina+easylist.txt: 60747) -.smartadserver.com/call/pubj/.*/M/.*/\? -# @@||smartadserver.com/call/pubj/*/S/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50263) -.smartadserver.com/call/pubj/.*/S/.*/\? -# @@||smartadserver.com/call/pubj/*/M/*/?$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com (easylist.txt: 50262) -.smartadserver.com/call/pubj/.*/M/.*/\? - -#ab2p-unblock-request-R914 -{-block \ - +client-header-tagger{ab2p-unblock-request-R914} \ -} -# @@||2mdn.net/instream/video/client.js$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com|majorleaguegaming.com (easylistchina+easylist.txt: 59965) -.2mdn.net/instream/video/client\.js -# @@||2mdn.net/instream/video/client.js$domain=antena3.com|atresmedia.com|atresplayer.com|lasexta.com|majorleaguegaming.com (easylist.txt: 49480) -.2mdn.net/instream/video/client\.js - -#ab2p-unblock-request-R917 -{-block \ - +client-header-tagger{ab2p-unblock-request-R917} \ -} -# @@||aolcdn.com^*/adhads.css$domain=aol.com (easylistchina+easylist.txt: 58411) -.aolcdn.com/.*/adhads\.css -# @@||aolcdn.com^*/adhads.css$domain=aol.com (easylist.txt: 47926) -.aolcdn.com/.*/adhads\.css - -#ab2p-unblock-request-R918 -{-block \ - +client-header-tagger{ab2p-unblock-request-R918} \ -} -# @@||aolcdn.com^*/adsWrapper.$domain=aol.com|engadget.com|games.com|huffingtonpost.com|mapquest.com|stylelist.ca (easylistchina+easylist.txt: 58412) -.aolcdn.com/.*/adsWrapper\. -# @@||aolcdn.com^*/adsWrapper.$domain=aol.com|engadget.com|games.com|huffingtonpost.com|mapquest.com|stylelist.ca (easylist.txt: 47927) -.aolcdn.com/.*/adsWrapper\. - -#ab2p-unblock-request-R922 -{-block \ - +client-header-tagger{ab2p-unblock-request-R922} \ -} -# @@||luxup.ru/crossdomain.xml|$domain=api.kinomoov.net (advblock.txt: 7327) -.luxup.ru/crossdomain\.xml$ - -#ab2p-unblock-request-R924 -{-block \ - +client-header-tagger{ab2p-unblock-request-R924} \ -} -# @@||js.revsci.net/gateway/gw.js?$domain=app.com|argusleader.com|aviationweek.com|battlecreekenquirer.com|baxterbulletin.com|bucyrustelegraphforum.com|burlingtonfreepress.com|centralohio.com|chillicothegazette.com|cincinnati.com|citizen-times.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|delawareonline.com|delmarvanow.com|democratandchronicle.com|desmoinesregister.com|dnj.com|fdlreporter.com|foxsmallbusinesscenter.com|freep.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|honoluluadvertiser.com|htrnews.com|indystar.com|jacksonsun.com|jconline.com|lancastereaglegazette.com|lansingstatejournal.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|marionstar.com|marshfieldnewsherald.com|montgomeryadvertiser.com|mycentraljersey.com|mydesert.com|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|pal-item.com|pnj.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|theithacajournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com|wausaudailyherald.com|weather.com|wisconsinrapidstribune.com|zanesvilletimesrecorder.com (easylistchina+easylist.txt: 59049) -.js.revsci.net/gateway/gw\.js\? -# @@||js.revsci.net/gateway/gw.js?$domain=app.com|argusleader.com|aviationweek.com|battlecreekenquirer.com|baxterbulletin.com|bucyrustelegraphforum.com|burlingtonfreepress.com|centralohio.com|chillicothegazette.com|cincinnati.com|citizen-times.com|clarionledger.com|coloradoan.com|coshoctontribune.com|courier-journal.com|courierpostonline.com|dailyrecord.com|dailyworld.com|delawareonline.com|delmarvanow.com|democratandchronicle.com|desmoinesregister.com|dnj.com|fdlreporter.com|foxsmallbusinesscenter.com|freep.com|greatfallstribune.com|greenbaypressgazette.com|greenvilleonline.com|guampdn.com|hattiesburgamerican.com|hometownlife.com|honoluluadvertiser.com|htrnews.com|indystar.com|jacksonsun.com|jconline.com|lancastereaglegazette.com|lansingstatejournal.com|livingstondaily.com|lohud.com|mansfieldnewsjournal.com|marionstar.com|marshfieldnewsherald.com|montgomeryadvertiser.com|mycentraljersey.com|mydesert.com|newarkadvocate.com|news-leader.com|news-press.com|newsleader.com|pal-item.com|pnj.com|portclintonnewsherald.com|postcrescent.com|poughkeepsiejournal.com|press-citizen.com|pressconnects.com|rgj.com|sctimes.com|sheboyganpress.com|shreveporttimes.com|stargazette.com|statesmanjournal.com|stevenspointjournal.com|tallahassee.com|tennessean.com|theadvertiser.com|thecalifornian.com|thedailyjournal.com|theithacajournal.com|theleafchronicle.com|thenews-messenger.com|thenewsstar.com|thenorthwestern.com|thespectrum.com|thestarpress.com|thetimesherald.com|thetowntalk.com|visaliatimesdelta.com|wausaudailyherald.com|weather.com|wisconsinrapidstribune.com|zanesvilletimesrecorder.com (easylist.txt: 48564) -.js.revsci.net/gateway/gw\.js\? - -#ab2p-unblock-request-R926 -{-block \ - +client-header-tagger{ab2p-unblock-request-R926} \ -} -# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina+easylist.txt: 10127) -.ad-specs.guoshipartners.com/static/js/isip\.js - -#ab2p-unblock-request-R927 -{-block \ - +client-header-tagger{ab2p-unblock-request-R927} \ -} -# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina+easylist.txt: 10282) -.inskinmedia.com/.*/js/base/api/ - -#ab2p-unblock-request-R929 -{-block \ - +client-header-tagger{ab2p-unblock-request-R929} \ -} -# @@||picmonkey.com/facebook-canvas/?ads$domain=apps.facebook.com (easylistchina+easylist.txt: 59372) -.picmonkey.com/facebook-canvas/\?ads -# @@||picmonkey.com/facebook-canvas/?ads$domain=apps.facebook.com (easylist.txt: 48887) -.picmonkey.com/facebook-canvas/\?ads - -#ab2p-unblock-request-R930 -{-block \ - +client-header-tagger{ab2p-unblock-request-R930} \ -} -# @@||medialand.ru^*/magna.js?$domain=argumenti.ru|autonews.ru|glav.su|kp.ru|sobesednik.ru (advblock.txt: 7635) -.medialand.ru/.*/magna\.js\? - -#ab2p-unblock-request-R932 -{-block \ - +client-header-tagger{ab2p-unblock-request-R932} \ -} -# @@||google.com/adsense/search/ads.js$domain=armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|forbbbs.org|forbes.com|gumtree.com.au|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|www.google.com|zoover.co.uk|zoover.com (easylistchina+easylist.txt: 58899) -.google.com/adsense/search/ads\.js -# @@||google.com/adsense/search/ads.js$domain=armstrongmywire.com|atlanticbb.net|bestbuy.com|bresnan.net|broadstripe.net|buckeyecablesystem.net|cableone.net|centurylink.net|charter.net|cincinnatibell.net|dish.net|forbbbs.org|forbes.com|gumtree.com.au|hargray.net|hawaiiantel.net|hickorytech.net|homeaway.co.uk|knology.net|livestrong.com|mediacomtoday.com|midco.net|mybendbroadband.com|mybrctv.com|mycenturylink.com|myconsolidated.net|myepb.net|mygrande.net|mygvtc.com|myhughesnet.com|myritter.com|northstate.net|nwcable.net|query.nytimes.com|rentals.com|search.rr.com|searchresults.verizon.com|suddenlink.net|surewest.com|synacor.net|tds.net|toshiba.com|trustedreviews.com|truvista.net|windstream.net|windstreambusiness.net|wowway.net|www.google.com|zoover.co.uk|zoover.com (easylist.txt: 48414) -.google.com/adsense/search/ads\.js - -#ab2p-unblock-request-R933 -{-block \ - +client-header-tagger{ab2p-unblock-request-R933} \ -} -# @@||rcm.amazon.com/e/cm$domain=asianmommy.com|filmcrave.com (easylistchina+easylist.txt: 59444) -.rcm.amazon.com/e/cm -# @@||rcm.amazon.com/e/cm$domain=asianmommy.com|filmcrave.com (easylist.txt: 48959) -.rcm.amazon.com/e/cm - -#ab2p-unblock-request-R936 -{-block \ - +client-header-tagger{ab2p-unblock-request-R936} \ -} -# @@||atlant-m.in.ua/uploads/banners/$domain=atlant-m.in.ua (advblock.txt: 7270) -.atlant-m.in.ua/uploads/banners/ - -#ab2p-unblock-request-R938 -{-block \ - +client-header-tagger{ab2p-unblock-request-R938} \ -} -# @@/advert.$domain=audio-hi-fi.ru|electric-house.ru|stroi-help.ru (advblock.txt: 7192) -/(.*/)?advert\. -advert.*. - -#ab2p-unblock-request-R940 -{-block \ - +client-header-tagger{ab2p-unblock-request-R940} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=audiomack.com|cbc.ca|cnet.com|gamejolt.com|news.sky.com|theverge.com|video.foxbusiness.com|video.foxnews.com (easylistchina+easylist.txt: 58991) -.imasdk.googleapis.com/js/sdkloader/ima3\.js -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=audiomack.com|cbc.ca|cnet.com|gamejolt.com|news.sky.com|theverge.com|video.foxbusiness.com|video.foxnews.com (easylist.txt: 48506) -.imasdk.googleapis.com/js/sdkloader/ima3\.js - -#ab2p-unblock-request-R941 -{-block \ - +client-header-tagger{ab2p-unblock-request-R941} \ -} -# @@||adserver.netsprint.eu//widgets/widgets.js$domain=autocentrum.pl (easylistchina+easylist.txt: 60954) -# @@||adserver.netsprint.eu//widgets/widgets.js$domain=autocentrum.pl (easylist.txt: 50469) - -#ab2p-unblock-request-R942 -{-block \ - +client-header-tagger{ab2p-unblock-request-R942} \ -} -# @@||partner.googleadservices.com/gampad/google_service.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|escapegames.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|motorcycle.com|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nx8.com|playedonline.com|playstationlifestyle.net|readersdigest.com.au|sulekha.com|ticketek.com.ar|volokh.com|yfrog.com (easylistchina+easylist.txt: 59343) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|escapegames.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|motorcycle.com|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nx8.com|playedonline.com|playstationlifestyle.net|readersdigest.com.au|sulekha.com|ticketek.com.ar|volokh.com|yfrog.com (easylist.txt: 48858) -.partner.googleadservices.com/gampad/google_service\.js - -#ab2p-unblock-request-R943 -{-block \ - +client-header-tagger{ab2p-unblock-request-R943} \ -} -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nitrome.com|nx8.com|playedonline.com|sulekha.com|volokh.com|yfrog.com (easylistchina+easylist.txt: 59340) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=autoguide.com|avclub.com|boatshop24.com|cadenasuper.com|dailygames.com|demotywatory.pl|drivearabia.com|ensonhaber.com|juegosdiarios.com|lbox.me|letio.com|lightinthebox.com|memegenerator.net|mysoju.com|nedbank.co.za|nedbankgreen.co.za|nitrome.com|nx8.com|playedonline.com|sulekha.com|volokh.com|yfrog.com (easylist.txt: 48855) -.partner.googleadservices.com/gampad/google_ads\.js - -#ab2p-unblock-request-R946 -{-block \ - +client-header-tagger{ab2p-unblock-request-R946} \ -} -# @@||rbc.magna.ru/xml_out/?$domain=autonews.ru|utro.ru (advblock.txt: 7637) -.rbc.magna.ru/xml_out/\? - -#ab2p-unblock-request-R948 -{-block \ - +client-header-tagger{ab2p-unblock-request-R948} \ -} -# @@||ads.yimg.com/a/$domain=autos.yahoo.com (easylistchina+easylist.txt: 58273) -.ads.yimg.com/a/ -# @@||ads.yimg.com/a/$domain=autos.yahoo.com (easylist.txt: 47788) -.ads.yimg.com/a/ - -#ab2p-unblock-request-R952 -{-block \ - +client-header-tagger{ab2p-unblock-request-R952} \ -} -# @@//promo.$popup,domain=bactistatin.com|gamexp.ru|iguides.ru|ingate.ru|yandex.ru (advblock.txt: 7181) -promo.*. - -#ab2p-unblock-request-R957 -{-block \ - +client-header-tagger{ab2p-unblock-request-R957} \ -} -# @@||bannersnack.net^$domain=bannersnack.com (easylistchina+easylist.txt: 58479) -.bannersnack.net -# @@||bannersnack.net^$domain=bannersnack.com (easylist.txt: 47994) -.bannersnack.net - -#ab2p-unblock-request-R963 -{-block \ - +client-header-tagger{ab2p-unblock-request-R963} \ -} -# @@||bbcimg.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58488) -.bbcimg.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/advert.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58487) -.bbcimg.co.uk/.*/advert\.js -# @@||bbci.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylistchina+easylist.txt: 58485) -.bbci.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48003) -.bbcimg.co.uk/.*/adverts\.js -# @@||bbcimg.co.uk^*/advert.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48002) -.bbcimg.co.uk/.*/advert\.js -# @@||bbci.co.uk^*/adverts.js$domain=bbc.co.uk|bbc.com (easylist.txt: 48000) -.bbci.co.uk/.*/adverts\.js - -#ab2p-unblock-request-R964 -{-block \ - +client-header-tagger{ab2p-unblock-request-R964} \ -} -# @@||bbcimg.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58486) -.bbcimg.co.uk/.*/adsense_write\.js -# @@||bbci.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58484) -.bbci.co.uk/.*/adsense_write\.js -# @@||bbc.co.uk^*/adverts.js$domain=bbc.com (easylistchina+easylist.txt: 58483) -.bbc.co.uk/.*/adverts\.js -# @@||bbc.co.uk^*/advert.js$domain=bbc.com (easylistchina+easylist.txt: 58482) -.bbc.co.uk/.*/advert\.js -# @@||bbc.co.uk^*/adsense_write.js$domain=bbc.com (easylistchina+easylist.txt: 58481) -.bbc.co.uk/.*/adsense_write\.js -# @@||bbcimg.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 48001) -.bbcimg.co.uk/.*/adsense_write\.js -# @@||bbci.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 47999) -.bbci.co.uk/.*/adsense_write\.js -# @@||bbc.co.uk^*/adverts.js$domain=bbc.com (easylist.txt: 47998) -.bbc.co.uk/.*/adverts\.js -# @@||bbc.co.uk^*/advert.js$domain=bbc.com (easylist.txt: 47997) -.bbc.co.uk/.*/advert\.js -# @@||bbc.co.uk^*/adsense_write.js$domain=bbc.com (easylist.txt: 47996) -.bbc.co.uk/.*/adsense_write\.js - -#ab2p-unblock-request-R965 -{-block \ - +client-header-tagger{ab2p-unblock-request-R965} \ -} -# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina+easylist.txt: 10438) -.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js - -#ab2p-unblock-request-R966 -{-block \ - +client-header-tagger{ab2p-unblock-request-R966} \ -} -# @@||beeline.ru/media/banners/$domain=beeline.ru (advblock.txt: 7279) -.beeline.ru/media/banners/ -# @@||beeline.ru/ban/$domain=beeline.ru (advblock.txt: 7278) -.beeline.ru/ban/ - -#ab2p-unblock-request-R968 -{-block \ - +client-header-tagger{ab2p-unblock-request-R968} \ -} -# @@||bestru.ru^*/advert_$domain=bestru.ru (advblock.txt: 7283) -.bestru.ru/.*/advert_ -# @@||bestru.ru*/advertisements/$domain=bestru.ru (advblock.txt: 7282) -.bestru.ru*./(.*/)?advertisements/ - -#ab2p-unblock-request-R970 -{-block \ - +client-header-tagger{ab2p-unblock-request-R970} \ -} -# @@||bet365.com/home/?affiliate=$popup,domain=betbeaver.com|betwonga.com|betyper.com (easylistchina+easylist.txt: 61405) -.bet365.com/home/\?affiliate= -# @@||bet365.com/home/?affiliate=$popup,domain=betbeaver.com|betwonga.com|betyper.com (easylist.txt: 50920) -.bet365.com/home/\?affiliate= - -#ab2p-unblock-request-R971 -{-block \ - +client-header-tagger{ab2p-unblock-request-R971} \ -} -# @@/redirect.aspx?pid=*&bid=$popup,domain=betbeaver.com|internetcasinot.com (easylistchina+easylist.txt: 61393) -/(.*/)?redirect\.aspx\?pid=.*&bid= -# @@/redirect.aspx?pid=*&bid=$popup,domain=betbeaver.com|internetcasinot.com (easylist.txt: 50908) -/(.*/)?redirect\.aspx\?pid=.*&bid= - -#ab2p-unblock-request-R972 -{-block \ - +client-header-tagger{ab2p-unblock-request-R972} \ -} -# @@||mediaplex.com/ad/$domain=betfair.com (easylistchina+easylist.txt: 59161) -.mediaplex.com/ad/ -# @@||apmebf.com/ad/$domain=betfair.com (easylistchina+easylist.txt: 58417) -.apmebf.com/ad/ -# @@||mediaplex.com/ad/$domain=betfair.com (easylist.txt: 48676) -.mediaplex.com/ad/ -# @@||apmebf.com/ad/$domain=betfair.com (easylist.txt: 47932) -.apmebf.com/ad/ - -#ab2p-unblock-request-R973 -{-block \ - +client-header-tagger{ab2p-unblock-request-R973} \ -} -# @@||adserving.unibet.com/redirect.aspx?pid=$popup,domain=betwonga.com (easylistchina+easylist.txt: 61402) -.adserving.unibet.com/redirect\.aspx\?pid= -# @@||adserving.unibet.com/redirect.aspx?pid=$popup,domain=betwonga.com (easylist.txt: 50917) -.adserving.unibet.com/redirect\.aspx\?pid= - -#ab2p-unblock-request-R974 -{-block \ - +client-header-tagger{ab2p-unblock-request-R974} \ -} -# @@||adfarm.mediaplex.com/ad/ck/$popup,domain=betwonga.com|dealsplus.com|matched-bet.net|pcmag.com (easylistchina+easylist.txt: 61394) -.adfarm.mediaplex.com/ad/ck/ -# @@||adfarm.mediaplex.com/ad/ck/$popup,domain=betwonga.com|dealsplus.com|matched-bet.net|pcmag.com (easylist.txt: 50909) -.adfarm.mediaplex.com/ad/ck/ - -#ab2p-unblock-request-R975 -{-block \ - +client-header-tagger{ab2p-unblock-request-R975} \ -} -# @@||ads.betfair.com/redirect.aspx?pid=$popup,domain=betwonga.com|matched-bet.net (easylistchina+easylist.txt: 61395) -.ads.betfair.com/redirect\.aspx\?pid= -# @@||ads.betfair.com/redirect.aspx?pid=$popup,domain=betwonga.com|matched-bet.net (easylist.txt: 50910) -.ads.betfair.com/redirect\.aspx\?pid= - -#ab2p-unblock-request-R979 -{-block \ - +client-header-tagger{ab2p-unblock-request-R979} \ -} -# @@||adshost2.com/js/show_ads.js$domain=bitcoinker.com (easylistchina+easylist.txt: 60027) -.adshost2.com/js/show_ads\.js -# @@||adshost2.com/js/show_ads.js$domain=bitcoinker.com (easylist.txt: 49542) -.adshost2.com/js/show_ads\.js - -#ab2p-unblock-request-R983 -{-block \ - +client-header-tagger{ab2p-unblock-request-R983} \ -} -# @@||svcs.ebay.com/services/search/FindingService/*affiliate.tracking$domain=bkshopper.com|geo-ship.com|testfreaks.co.uk|watchmydeals.com (easylistchina+easylist.txt: 59610) -.svcs.ebay.com/services/search/FindingService/.*affiliate\.tracking -# @@||svcs.ebay.com/services/search/FindingService/*affiliate.tracking$domain=bkshopper.com|geo-ship.com|testfreaks.co.uk|watchmydeals.com (easylist.txt: 49125) -.svcs.ebay.com/services/search/FindingService/.*affiliate\.tracking - -#ab2p-unblock-request-R984 -{-block \ - +client-header-tagger{ab2p-unblock-request-R984} \ -} -# @@||music-tags.com/tagengine/www/delivery/spcjs.php$domain=blastro.com (easylistchina+easylist.txt: 59207) -.music-tags.com/tagengine/www/delivery/spcjs\.php -# @@||music-tags.com/tagengine/www/delivery/fl.js$domain=blastro.com (easylistchina+easylist.txt: 59206) -.music-tags.com/tagengine/www/delivery/fl\.js -# @@||music-tags.com/tagengine/www/delivery/spcjs.php$domain=blastro.com (easylist.txt: 48722) -.music-tags.com/tagengine/www/delivery/spcjs\.php -# @@||music-tags.com/tagengine/www/delivery/fl.js$domain=blastro.com (easylist.txt: 48721) -.music-tags.com/tagengine/www/delivery/fl\.js - -#ab2p-unblock-request-R985 -{-block \ - +client-header-tagger{ab2p-unblock-request-R985} \ -} -# @@||adocean.pl/files/*.flv?$domain=blesk.cz|open.fm (easylistchina+easylist.txt: 60938) -.adocean.pl/files/.*\.flv\? -# @@||adocean.pl/files/*.flv?$domain=blesk.cz|open.fm (easylist.txt: 50453) -.adocean.pl/files/.*\.flv\? - -#ab2p-unblock-request-R988 -{-block \ - +client-header-tagger{ab2p-unblock-request-R988} \ -} -# @@/teaser.$domain=bmw-motorrad.com|bmw-motorrad.ru (advblock.txt: 7208) -/(.*/)?teaser\. -teaser.*. - -#ab2p-unblock-request-R991 -{-block \ - +client-header-tagger{ab2p-unblock-request-R991} \ -} -# @@||g.doubleclick.net/aclk?$popup,domain=bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|weddingspot.co.uk|zillow.com (easylistchina+easylist.txt: 61412) -.g.doubleclick.net/aclk\? -# @@||g.doubleclick.net/aclk?$popup,domain=bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|weddingspot.co.uk|zillow.com (easylist.txt: 50927) -.g.doubleclick.net/aclk\? - -#ab2p-unblock-request-R999 -{-block \ - +client-header-tagger{ab2p-unblock-request-R999} \ -} -# @@||adap.tv/redir/client/swfloader.swf?$domain=box10.com|freeonlinegames.com|games.aarp.org|kizi.com|latimes.com|merriam-webster.com|puzzles.usatoday.com (easylistchina+easylist.txt: 58181) -.adap.tv/redir/client/swfloader\.swf\? -# @@||adap.tv/redir/client/swfloader.swf?$domain=box10.com|freeonlinegames.com|games.aarp.org|kizi.com|latimes.com|merriam-webster.com|puzzles.usatoday.com (easylist.txt: 47696) -.adap.tv/redir/client/swfloader\.swf\? - -#ab2p-unblock-request-R1000 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1000} \ -} -# @@||spotxchange.com/flash/adplayer.swf$domain=boxlive.tv|directon.tv|foxnews.ws|icastlive.tv|wii-cast.tv (easylistchina+easylist.txt: 59573) -.spotxchange.com/flash/adplayer\.swf -# @@||spotxchange.com/flash/adplayer.swf$domain=boxlive.tv|directon.tv|foxnews.ws|icastlive.tv|wii-cast.tv (easylist.txt: 49088) -.spotxchange.com/flash/adplayer\.swf - -#ab2p-unblock-request-R1001 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1001} \ -} -# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina+easylist.txt: 10110) -.58.com/ds/tgbrand/ - -#ab2p-unblock-request-R1003 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1003} \ -} -# @@||supportchat.contentabc.com^$popup,domain=brazzerssupport.com (easylistchina+easylist.txt: 61802) -.supportchat.contentabc.com -# @@||supportchat.contentabc.com^$popup,domain=brazzerssupport.com (easylist.txt: 51317) -.supportchat.contentabc.com - -#ab2p-unblock-request-R128 -{-block \ - +client-header-tagger{ab2p-unblock-request-R128} \ -} -# @@/view_iframe/*$elemhide,domain=brb.to|cxz.to|fs.to (advblock.txt: 6659) -/(.*/)?view_iframe/.* - -#ab2p-unblock-request-R1004 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1004} \ -} -# @@||adbureau.net^*/images/adselector/$domain=brisbanetimes.com.au|smh.com.au|theage.com.au|watoday.com.au (easylistchina+easylist.txt: 58188) -.adbureau.net/.*/images/adselector/ -# @@||adbureau.net^*/images/adselector/$domain=brisbanetimes.com.au|smh.com.au|theage.com.au|watoday.com.au (easylist.txt: 47703) -.adbureau.net/.*/images/adselector/ - -#ab2p-unblock-request-R1005 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1005} \ -} -# @@||s0.2mdn.net^$domain=britishgas.co.uk|luxurylink.com (easylistchina+easylist.txt: 59482) -.s0.2mdn.net -# @@||s0.2mdn.net^$domain=britishgas.co.uk|luxurylink.com (easylist.txt: 48997) -.s0.2mdn.net - -#ab2p-unblock-request-R1009 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1009} \ -} -# @@||adserver.yahoo.com^*=weather&$domain=ca.weather.yahoo.com (easylistchina+easylist.txt: 58301) -.adserver.yahoo.com/.*=weather& -# @@||adserver.yahoo.com^*=weather&$domain=ca.weather.yahoo.com (easylist.txt: 47816) -.adserver.yahoo.com/.*=weather& - -#ab2p-unblock-request-R1012 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1012} \ -} -# @@||adfox.ru/crossdomain.xml$domain=carambatv.ru|life.ru|molodejj.tv|out.pladform.ru (advblock.txt: 7547) -.adfox.ru/crossdomain\.xml - -#ab2p-unblock-request-R1013 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1013} \ -} -# @@||leadback.advertising.com/adcedge/$domain=careerbuilder.com (easylistchina+easylist.txt: 59079) -.leadback.advertising.com/adcedge/ -# @@||leadback.advertising.com/adcedge/$domain=careerbuilder.com (easylist.txt: 48594) -.leadback.advertising.com/adcedge/ - -#ab2p-unblock-request-R1014 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1014} \ -} -# @@||ibsrv.net/ads/$domain=carsdirect.com (easylistchina+easylist.txt: 58966) -.ibsrv.net/ads/ -# @@||ibsrv.net/ads/$domain=carsdirect.com (easylist.txt: 48481) -.ibsrv.net/ads/ - -#ab2p-unblock-request-R1016 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1016} \ -} -# @@||adserver.adtech.de/addyn/3.0/755/$domain=cartoonnetwork.co.nz|cartoonnetworkasia.com|cartoonnetworkhq.com|manutd.com (easylistchina+easylist.txt: 58290) -.adserver.adtech.de/addyn/3\.0/755/ -# @@||adserver.adtech.de/addyn/3.0/755/$domain=cartoonnetwork.co.nz|cartoonnetworkasia.com|cartoonnetworkhq.com|manutd.com (easylist.txt: 47805) -.adserver.adtech.de/addyn/3\.0/755/ - -#ab2p-unblock-request-R1023 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1023} \ -} -# @@||shareasale.com/image/$domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylistchina+easylist.txt: 59527) -.shareasale.com/image/ -# @@||shareasale.com/image/$domain=catalogfavoritesvip.com|freeshipping.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easylist.txt: 49042) -.shareasale.com/image/ - -#ab2p-unblock-request-R1024 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1024} \ -} -# @@||theplatform.com/current/pdk/js/plugins/doubleclick.js$domain=cbc.ca (easylistchina+easylist.txt: 59648) -.theplatform.com/current/pdk/js/plugins/doubleclick\.js -# @@||2mdn.net/instream/video/client.js$domain=cbc.ca (easylistchina+easylist.txt: 58124) -.2mdn.net/instream/video/client\.js -# @@||theplatform.com/current/pdk/js/plugins/doubleclick.js$domain=cbc.ca (easylist.txt: 49163) -.theplatform.com/current/pdk/js/plugins/doubleclick\.js -# @@||2mdn.net/instream/video/client.js$domain=cbc.ca (easylist.txt: 47639) -.2mdn.net/instream/video/client\.js - -#ab2p-unblock-request-R137 -{-block \ - +client-header-tagger{ab2p-unblock-request-R137} \ -} -# @@||poreil.com^$domain=cbs.com (easylistchina+easylist.txt: 60659) -.poreil.com -# @@||dialde.com^$domain=cbs.com (easylistchina+easylist.txt: 60212) -.dialde.com -# @@/adFunctionsD-cbs.js$domain=cbs.com (easylistchina+easylist.txt: 59916) -/(.*/)?adFunctionsD-cbs\.js -adFunctionsD-cbs.js*. -# @@||innovid.com^*/VPAIDEXIRollPackage.swf$domain=cbs.com (easylistchina+easylist.txt: 59013) -.innovid.com/.*/VPAIDEXIRollPackage\.swf -# @@||innovid.com/iroll/package/iab-vpaid-ex/$domain=cbs.com (easylistchina+easylist.txt: 59011) -.innovid.com/iroll/package/iab-vpaid-ex/ -# @@||poreil.com^$domain=cbs.com (easylist.txt: 50174) -.poreil.com -# @@||dialde.com^$domain=cbs.com (easylist.txt: 49727) -.dialde.com -# @@/adFunctionsD-cbs.js$domain=cbs.com (easylist.txt: 49431) -/(.*/)?adFunctionsD-cbs\.js -adFunctionsD-cbs.js*. -# @@||innovid.com^*/VPAIDEXIRollPackage.swf$domain=cbs.com (easylist.txt: 48528) -.innovid.com/.*/VPAIDEXIRollPackage\.swf -# @@||innovid.com/iroll/package/iab-vpaid-ex/$domain=cbs.com (easylist.txt: 48526) -.innovid.com/iroll/package/iab-vpaid-ex/ - -#ab2p-unblock-request-R1027 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1027} \ -} -# @@.javascript|$domain=cbsnews.com (easylistchina+easylist.txt: 59895) -/.*\.javascript$ -.*.javascript -# @@.javascript|$domain=cbsnews.com (easylist.txt: 49410) -/.*\.javascript$ -.*.javascript - -#ab2p-unblock-request-R1028 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1028} \ -} -# @@||i.com.com^*/adfunctionsd-*.js$domain=cbsnews.com|cbssports.com|cnettv.cnet.com|metacritic.com|tv.com|twitch.tv (easylistchina+easylist.txt: 58963) -.i.com.com/.*/adfunctionsd-.*\.js -# @@||i.com.com^*/adfunctionsd-*.js$domain=cbsnews.com|cbssports.com|cnettv.cnet.com|metacritic.com|tv.com|twitch.tv (easylist.txt: 48478) -.i.com.com/.*/adfunctionsd-.*\.js - -#ab2p-unblock-request-R1030 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1030} \ -} -# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina+easylist.txt: 10015) -/(.*/)?advert/.* - -#ab2p-unblock-request-R1038 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1038} \ -} -# @@||widgets.outbrain.com/outbrain.js$domain=cheatsheet.com|supercheats.com (easylistchina+easylist.txt: 46053) -.widgets.outbrain.com/outbrain\.js -# @@||widgets.outbrain.com/outbrain.js$domain=cheatsheet.com|supercheats.com (easylist.txt: 35568) -.widgets.outbrain.com/outbrain\.js - -#ab2p-unblock-request-R146 -{-block \ - +client-header-tagger{ab2p-unblock-request-R146} \ -} -# @@/sda/weixin$domain=chineseinla.com (easylistchina+easylist.txt: 10054) -/(.*/)?sda/weixin - -#ab2p-unblock-request-R1040 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1040} \ -} -# @@||media.salemwebnetwork.com/js/admanager/swfobject.js$domain=christianity.com (easylistchina+easylist.txt: 59155) -.media.salemwebnetwork.com/js/admanager/swfobject\.js -# @@||media.salemwebnetwork.com/js/admanager/swfobject.js$domain=christianity.com (easylist.txt: 48670) -.media.salemwebnetwork.com/js/admanager/swfobject\.js - -#ab2p-unblock-request-R1041 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1041} \ -} -# @@/adfile/*$domain=cidianwang.com (easylistchina+easylist.txt: 10001) -/(.*/)?adfile/.* - -#ab2p-unblock-request-R1043 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1043} \ -} -# @@||s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting.jpg$domain=circusstreet.com (easylistchina+easylist.txt: 59483) -.s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting\.jpg -# @@||s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting.jpg$domain=circusstreet.com (easylist.txt: 48998) -.s3.amazonaws.com/digital/ad-ops-and-targeting/images/ad-ops-and-targeting\.jpg - -#ab2p-unblock-request-R1045 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1045} \ -} -# @@/GFC/branding/*$domain=citi.com|citibank.com (advblock.txt: 7201) -/(.*/)?GFC/branding/.* - -#ab2p-unblock-request-R1046 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1046} \ -} -# @@||rezonence.com/Ads/*/AdCode.js$domain=cityam.com (easylistchina+easylist.txt: 60702) -.rezonence.com/Ads/.*/AdCode\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=cityam.com (easylistchina+easylist.txt: 60637) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=cityam.com (easylistchina+easylist.txt: 60636) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=cityam.com (easylistchina+easylist.txt: 60328) -.g.doubleclick.net/gampad/google_ads\.js -# @@||ads.pubmatic.com/AdServer/js/showad.js$domain=cityam.com (easylistchina+easylist.txt: 60016) -.ads.pubmatic.com/AdServer/js/showad\.js -# @@/adcode.js$domain=cityam.com (easylistchina+easylist.txt: 59915) -/(.*/)?adcode\.js -adcode.js*. -# @@||rezonence.com/Ads/*/AdCode.js$domain=cityam.com (easylist.txt: 50217) -.rezonence.com/Ads/.*/AdCode\.js -# @@||partner.googleadservices.com/gampad/google_service.js$domain=cityam.com (easylist.txt: 50152) -.partner.googleadservices.com/gampad/google_service\.js -# @@||partner.googleadservices.com/gampad/google_ads.js$domain=cityam.com (easylist.txt: 50151) -.partner.googleadservices.com/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=cityam.com (easylist.txt: 49843) -.g.doubleclick.net/gampad/google_ads\.js -# @@||ads.pubmatic.com/AdServer/js/showad.js$domain=cityam.com (easylist.txt: 49531) -.ads.pubmatic.com/AdServer/js/showad\.js -# @@/adcode.js$domain=cityam.com (easylist.txt: 49430) -/(.*/)?adcode\.js -adcode.js*. - -#ab2p-unblock-request-R1047 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1047} \ -} -# @@||rogersdigitalmedia.com^*/rdm-ad-util.min.js$domain=citytv.com (easylistchina+easylist.txt: 59464) -.rogersdigitalmedia.com/.*/rdm-ad-util\.min\.js -# @@||rogersdigitalmedia.com^*/rdm-ad-util.min.js$domain=citytv.com (easylist.txt: 48979) -.rogersdigitalmedia.com/.*/rdm-ad-util\.min\.js - -#ab2p-unblock-request-R1049 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1049} \ -} -# @@||mns.com/ad/$domain=classifieds.nydailynews.com (easylistchina+easylist.txt: 59182) -.mns.com/ad/ -# @@||comboadmedia.adperfect.com^$domain=classifieds.nydailynews.com (easylistchina+easylist.txt: 58607) -.comboadmedia.adperfect.com -# @@||mns.com/ad/$domain=classifieds.nydailynews.com (easylist.txt: 48697) -.mns.com/ad/ -# @@||comboadmedia.adperfect.com^$domain=classifieds.nydailynews.com (easylist.txt: 48122) -.comboadmedia.adperfect.com - -#ab2p-unblock-request-R1050 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1050} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$domain=cleodesktop.com|mugiwaranofansub.blogspot.com.ar|musicacelestial.net (easylistchina+easylist.txt: 60626) -.pagead2.googlesyndication.com/pagead/js/google_top_exp\.js -# @@||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$domain=cleodesktop.com|mugiwaranofansub.blogspot.com.ar|musicacelestial.net (easylist.txt: 50141) -.pagead2.googlesyndication.com/pagead/js/google_top_exp\.js - -#ab2p-unblock-request-R1051 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1051} \ -} -# @@||exponential.com/tags/ClubeDoHardwarecombr/ROS/tags.js$domain=clubedohardware.com.br (easylistchina+easylist.txt: 60264) -.exponential.com/tags/ClubeDoHardwarecombr/ROS/tags\.js -# @@||caspion.com/cas.js$domain=clubedohardware.com.br (easylistchina+easylist.txt: 60136) -.caspion.com/cas\.js -# @@||exponential.com/tags/ClubeDoHardwarecombr/ROS/tags.js$domain=clubedohardware.com.br (easylist.txt: 49779) -.exponential.com/tags/ClubeDoHardwarecombr/ROS/tags\.js -# @@||caspion.com/cas.js$domain=clubedohardware.com.br (easylist.txt: 49651) -.caspion.com/cas\.js - -#ab2p-unblock-request-R1052 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1052} \ -} -# @@||tribalfusion.com/displayAd.js?$domain=clubedohardware.com.br|yellowbridge.com (easylistchina+easylist.txt: 60814) -.tribalfusion.com/displayAd\.js\? -# @@||tribalfusion.com/displayAd.js?$domain=clubedohardware.com.br|yellowbridge.com (easylist.txt: 50329) -.tribalfusion.com/displayAd\.js\? - -#ab2p-unblock-request-R1053 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1053} \ -} -# @@||healthcare.gov/global/images/widgets/him/$domain=cms.gov (easylistchina+easylist.txt: 58934) -.healthcare.gov/global/images/widgets/him/ -# @@||healthcare.gov/global/images/widgets/him/$domain=cms.gov (easylist.txt: 48449) -.healthcare.gov/global/images/widgets/him/ - -#ab2p-unblock-request-R1055 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1055} \ -} -# @@||cbsistatic.com^*/js/plugins/doubleclick.js$domain=cnet.com (easylistchina+easylist.txt: 58552) -.cbsistatic.com/.*/js/plugins/doubleclick\.js -# @@||cbsistatic.com^*/js/plugins/doubleclick.js$domain=cnet.com (easylist.txt: 48067) -.cbsistatic.com/.*/js/plugins/doubleclick\.js - -#ab2p-unblock-request-R1056 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1056} \ -} -# @@||cbsistatic.com/cnwk.1d/ads/common/manta/adfunctions*.js$domain=cnettv.cnet.com (easylistchina+easylist.txt: 58551) -.cbsistatic.com/cnwk\.1d/ads/common/manta/adfunctions.*\.js -# @@||cbsistatic.com/cnwk.1d/ads/common/manta/adfunctions*.js$domain=cnettv.cnet.com (easylist.txt: 48066) -.cbsistatic.com/cnwk\.1d/ads/common/manta/adfunctions.*\.js - -#ab2p-unblock-request-R1057 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1057} \ -} -# @@||condenast.co.uk/scripts/cn-advert.js$domain=cntraveller.com (easylistchina+easylist.txt: 58613) -.condenast.co.uk/scripts/cn-advert\.js -# @@||condenast.co.uk/scripts/cn-advert.js$domain=cntraveller.com (easylist.txt: 48128) -.condenast.co.uk/scripts/cn-advert\.js - -#ab2p-unblock-request-R1058 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1058} \ -} -# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina+easylist.txt: 10331) -.pos.baidu.com/acom\?di= -# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina+easylist.txt: 10047) -/(.*/)?js/ad_test\.js - -#ab2p-unblock-request-R1059 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1059} \ -} -# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina+easylist.txt: 10199) -.cbjs.baidu.com/js/m\.js - -#ab2p-unblock-request-R1060 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1060} \ -} -# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina+easylist.txt: 10191) -.cb.baidu.com/ecom\? - -#ab2p-unblock-request-R1061 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1061} \ -} -# @@||promo2.tubemogul.com/lib/tubemoguldisplaylib.js$domain=comedy.com (easylistchina+easylist.txt: 59414) -.promo2.tubemogul.com/lib/tubemoguldisplaylib\.js -# @@||promo2.tubemogul.com/flash/youtube.swf$domain=comedy.com (easylistchina+easylist.txt: 59413) -.promo2.tubemogul.com/flash/youtube\.swf -# @@||promo2.tubemogul.com/adtags/slim_no_iframe.js$domain=comedy.com (easylistchina+easylist.txt: 59412) -.promo2.tubemogul.com/adtags/slim_no_iframe\.js -# @@||promo2.tubemogul.com/lib/tubemoguldisplaylib.js$domain=comedy.com (easylist.txt: 48929) -.promo2.tubemogul.com/lib/tubemoguldisplaylib\.js -# @@||promo2.tubemogul.com/flash/youtube.swf$domain=comedy.com (easylist.txt: 48928) -.promo2.tubemogul.com/flash/youtube\.swf -# @@||promo2.tubemogul.com/adtags/slim_no_iframe.js$domain=comedy.com (easylist.txt: 48927) -.promo2.tubemogul.com/adtags/slim_no_iframe\.js - -#ab2p-unblock-request-R1062 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1062} \ -} -# @@||gorillanation.com/storage/lightbox_code/static/companion_ads.js$domain=comingsoon.net|gamerevolution.com|sohh.com (easylistchina+easylist.txt: 58917) -.gorillanation.com/storage/lightbox_code/static/companion_ads\.js -# @@||gorillanation.com/storage/lightbox_code/static/companion_ads.js$domain=comingsoon.net|gamerevolution.com|sohh.com (easylist.txt: 48432) -.gorillanation.com/storage/lightbox_code/static/companion_ads\.js - -#ab2p-unblock-request-R1064 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1064} \ -} -# @@||yumenetworks.com/dynamic_preroll_playlist.vast2xml$domain=contv.com (easylistchina+easylist.txt: 59868) -.yumenetworks.com/dynamic_preroll_playlist\.vast2xml -# @@||yumenetworks.com/dynamic_preroll_playlist.vast2xml$domain=contv.com (easylist.txt: 49383) -.yumenetworks.com/dynamic_preroll_playlist\.vast2xml - -#ab2p-unblock-request-R1065 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1065} \ -} -# @@||doubleclick.net/ddm/clk/$popup,domain=couponcodeswap.com (easylistchina+easylist.txt: 61410) -.doubleclick.net/ddm/clk/ -# @@||doubleclick.net/ddm/clk/$popup,domain=couponcodeswap.com (easylist.txt: 50925) -.doubleclick.net/ddm/clk/ - -#ab2p-unblock-request-R1067 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1067} \ -} -# @@||serving-sys.com/SemiCachedScripts/$domain=cricketwireless.com (easylistchina+easylist.txt: 59520) -.serving-sys.com/SemiCachedScripts/ -# @@||serving-sys.com/SemiCachedScripts/$domain=cricketwireless.com (easylist.txt: 49035) -.serving-sys.com/SemiCachedScripts/ - -#ab2p-unblock-request-R1071 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1071} \ -} -# @@||amazonaws.com/*.js$domain=cwtv.com (easylistchina+easylist.txt: 60053) -.amazonaws.com/.*\.js -# @@||amazonaws.com/*.js$domain=cwtv.com (easylist.txt: 49568) -.amazonaws.com/.*\.js - -#ab2p-unblock-request-R1072 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1072} \ -} -# @@||resources.infolinks.com/js/infolinks_main.js$domain=cyberdevilz.net (easylistchina+easylist.txt: 60700) -.resources.infolinks.com/js/infolinks_main\.js -# @@||resources.infolinks.com/js/*/ice.js$domain=cyberdevilz.net (easylistchina+easylist.txt: 60699) -.resources.infolinks.com/js/.*/ice\.js -# @@||resources.infolinks.com/js/infolinks_main.js$domain=cyberdevilz.net (easylist.txt: 50215) -.resources.infolinks.com/js/infolinks_main\.js -# @@||resources.infolinks.com/js/*/ice.js$domain=cyberdevilz.net (easylist.txt: 50214) -.resources.infolinks.com/js/.*/ice\.js - -#ab2p-unblock-request-R1073 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1073} \ -} -# @@/adpic/*$domain=czsrc.com|nieyou.com|youlea.com (easylistchina+easylist.txt: 10008) -/(.*/)?adpic/.* - -#ab2p-unblock-request-R1075 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1075} \ -} -# @@||ad.doubleclick.net^*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 60927) -.ad.doubleclick.net/.*\.jpg$ -# @@||2mdn.net/viewad/*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylistchina+easylist.txt: 60926) -.2mdn.net/viewad/.*\.jpg$ -# @@||ad.doubleclick.net^*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50442) -.ad.doubleclick.net/.*\.jpg$ -# @@||2mdn.net/viewad/*.jpg|$domain=dafiti.cl|dafiti.com.ar|dafiti.com.br|dafiti.com.co (easylist.txt: 50441) -.2mdn.net/viewad/.*\.jpg$ - -#ab2p-unblock-request-R1076 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1076} \ -} -# @@||dmstatic.com^*/adEntry.js$domain=daft.ie (easylistchina+easylist.txt: 58683) -.dmstatic.com/.*/adEntry\.js -# @@||dmstatic.com^*/adEntry.js$domain=daft.ie (easylist.txt: 48198) -.dmstatic.com/.*/adEntry\.js - -#ab2p-unblock-request-R1077 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1077} \ -} -# @@||newsinc.com/player/show/$domain=dailycaller.com|valuewalk.com (easylistchina+easylist.txt: 61261) -.newsinc.com/player/show/ -# @@||disqus.com/count-data.js$domain=dailycaller.com|valuewalk.com (easylistchina+easylist.txt: 61260) -.disqus.com/count-data\.js -# @@||newsinc.com/player/show/$domain=dailycaller.com|valuewalk.com (easylist.txt: 50776) -.newsinc.com/player/show/ -# @@||disqus.com/count-data.js$domain=dailycaller.com|valuewalk.com (easylist.txt: 50775) -.disqus.com/count-data\.js - -#ab2p-unblock-request-R1078 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1078} \ -} -# @@||img.revcontent.com^$domain=dailydot.com (easylistchina+easylist.txt: 58995) -.img.revcontent.com -# @@||img.revcontent.com^$domain=dailydot.com (easylist.txt: 48510) -.img.revcontent.com - -#ab2p-unblock-request-R1079 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1079} \ -} -# @@||yumenetworks.com/content/static/$domain=dailygames.com (easylistchina+easylist.txt: 59866) -.yumenetworks.com/content/static/ -# @@||yumenetworks.com/content/static/$domain=dailygames.com (easylist.txt: 49381) -.yumenetworks.com/content/static/ - -#ab2p-unblock-request-R1080 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1080} \ -} -# @@||dmgt.grapeshot.co.uk^$domain=dailymail.co.uk (easylistchina+easylist.txt: 58682) -.dmgt.grapeshot.co.uk -# @@||dmgt.grapeshot.co.uk^$domain=dailymail.co.uk (easylist.txt: 48197) -.dmgt.grapeshot.co.uk - -#ab2p-unblock-request-R166 -{-block \ - +client-header-tagger{ab2p-unblock-request-R166} \ -} -# @@||api.dmcdn.net/pxl/advertisers/$domain=dailymotion.com (easylistchina+easylist.txt: 61284) -.api.dmcdn.net/pxl/advertisers/ -# @@||api.dmcdn.net/pxl/advertisers/$domain=dailymotion.com (easylist.txt: 50799) -.api.dmcdn.net/pxl/advertisers/ - -#ab2p-unblock-request-R1081 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1081} \ -} -# @@||web-jp.ad-v.jp/crossdomain.xml$domain=daisuki.net (easylistchina+easylist.txt: 59804) -.web-jp.ad-v.jp/crossdomain\.xml -# @@||web-jp.ad-v.jp/crossdomain.xml$domain=daisuki.net (easylist.txt: 49319) -.web-jp.ad-v.jp/crossdomain\.xml - -#ab2p-unblock-request-R1084 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1084} \ -} -# @@||integral-marketing.com/scripts/imads.js$domain=dayt.se (easylistchina+easylist.txt: 60424) -.integral-marketing.com/scripts/imads\.js -# @@||integral-marketing.com/scripts/imads.js$domain=dayt.se (easylist.txt: 49939) -.integral-marketing.com/scripts/imads\.js - -#ab2p-unblock-request-R1085 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1085} \ -} -# @@||amazon-adsystem.com/aax2/amzn_ads.js$domain=deadspin.com|foodnetwork.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com|weather.com (easylistchina+easylist.txt: 58386) -.amazon-adsystem.com/aax2/amzn_ads\.js -# @@||amazon-adsystem.com/aax2/amzn_ads.js$domain=deadspin.com|foodnetwork.com|gawker.com|gizmodo.com|io9.com|jalopnik.com|jezebel.com|kotaku.com|lifehacker.com|weather.com (easylist.txt: 47901) -.amazon-adsystem.com/aax2/amzn_ads\.js - -#ab2p-unblock-request-R1092 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1092} \ -} -# @@||mediav.com^$domain=dev.360.cn (easylistchina+easylist.txt: 10303) -.mediav.com - -#ab2p-unblock-request-R1093 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1093} \ -} -# @@||da-ads.com/truex.html?$domain=deviantart.com (easylistchina+easylist.txt: 58644) -.da-ads.com/truex\.html\? -# @@||da-ads.com/truex.html?$domain=deviantart.com (easylist.txt: 48159) -.da-ads.com/truex\.html\? - -#ab2p-unblock-request-R1095 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1095} \ -} -# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina+easylist.txt: 10025) -/(.*/)?advs/.* - -#ab2p-unblock-request-R1098 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1098} \ -} -# @@||wp.com/digiday.com/wp-content/uploads/*/your-ad-here-banner.png?resize=$domain=digiday.com (easylistchina+easylist.txt: 59825) -.wp.com/digiday\.com/wp-content/uploads/.*/your-ad-here-banner\.png\?resize= -# @@||wp.com/digiday.com/wp-content/uploads/*/your-ad-here-banner.png?resize=$domain=digiday.com (easylist.txt: 49340) -.wp.com/digiday\.com/wp-content/uploads/.*/your-ad-here-banner\.png\?resize= - -#ab2p-unblock-request-R1099 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1099} \ -} -# @@||dpmate.com/exports/tour_20/$domain=digitalplayground.com (easylistchina+easylist.txt: 61435) -.dpmate.com/exports/tour_20/ -# @@||dpmate.com/exports/tour_20/$domain=digitalplayground.com (easylist.txt: 50950) -.dpmate.com/exports/tour_20/ - -#ab2p-unblock-request-R1101 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1101} \ -} -# @@||googleadservices.com/pagead/conversion_async.js$domain=dillards.com (easylistchina+easylist.txt: 58911) -.googleadservices.com/pagead/conversion_async\.js -# @@||googleadservices.com/pagead/conversion_async.js$domain=dillards.com (easylist.txt: 48426) -.googleadservices.com/pagead/conversion_async\.js - -#ab2p-unblock-request-R1102 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1102} \ -} -# @@||spotxchange.com/media/videos/flash/adplayer_$domain=directon.tv (easylistchina+easylist.txt: 59575) -.spotxchange.com/media/videos/flash/adplayer_ -# @@||spotxchange.com/media/videos/flash/adplayer_$domain=directon.tv (easylist.txt: 49090) -.spotxchange.com/media/videos/flash/adplayer_ - -#ab2p-unblock-request-R1103 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1103} \ -} -# @@||spotxchange.com/media/videos/flash/ad_player/$domain=directon.tv|games.yahoo.com|onescreen.net|wii-cast.tv (easylistchina+easylist.txt: 59574) -.spotxchange.com/media/videos/flash/ad_player/ -# @@||spotxchange.com/media/videos/flash/ad_player/$domain=directon.tv|games.yahoo.com|onescreen.net|wii-cast.tv (easylist.txt: 49089) -.spotxchange.com/media/videos/flash/ad_player/ - -#ab2p-unblock-request-R1104 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1104} \ -} -# @@||spotxchange.com/flash/ad.swf?$domain=directon.tv|wii-cast.tv (easylistchina+easylist.txt: 59572) -.spotxchange.com/flash/ad\.swf\? -# @@||spotxchange.com/flash/ad.swf?$domain=directon.tv|wii-cast.tv (easylist.txt: 49087) -.spotxchange.com/flash/ad\.swf\? - -#ab2p-unblock-request-R1106 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1106} \ -} -# @@.dirty.ru/static/$domain=dirty.ru (advblock.txt: 7522) -/.*\.dirty\.ru/static/ -.*.dirty.ru/static/ - -#ab2p-unblock-request-R1108 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1108} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina+easylist.txt: 10324) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-request-R1111 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1111} \ -} -# @@||dizicdn.com/i/ads/groupon.png$domain=dizi-mag.com (easylistchina+easylist.txt: 60216) -.dizicdn.com/i/ads/groupon\.png -# @@||ads.milliyet.cubecdn.net/winwords/adhood/winwords2.client.js$domain=dizi-mag.com (easylistchina+easylist.txt: 60014) -.ads.milliyet.cubecdn.net/winwords/adhood/winwords2\.client\.js -# @@||dizicdn.com/i/ads/groupon.png$domain=dizi-mag.com (easylist.txt: 49731) -.dizicdn.com/i/ads/groupon\.png -# @@||ads.milliyet.cubecdn.net/winwords/adhood/winwords2.client.js$domain=dizi-mag.com (easylist.txt: 49529) -.ads.milliyet.cubecdn.net/winwords/adhood/winwords2\.client\.js - -#ab2p-unblock-request-R1114 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1114} \ -} -# @@/adframe.$domain=dnvod.eu (easylistchina+easylist.txt: 10002) -/(.*/)?adframe\. -adframe.*. - -#ab2p-unblock-request-R1115 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1115} \ -} -# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina+easylist.txt: 10059) -/(.*/)?upload/ads/.*\.jpg - -#ab2p-unblock-request-R1118 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1118} \ -} -# @@||ertelecom.ru^*.swf?link1=$domain=domru.ru (advblock.txt: 7293) -.ertelecom.ru/.*\.swf\?link1= - -#ab2p-unblock-request-R1119 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1119} \ -} -# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina+easylist.txt: 10072) -/(.*/)?AD/ - -#ab2p-unblock-request-R1120 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1120} \ -} -# @@||2mdn.net^*/player.swf$domain=doubleclick.net (easylistchina+easylist.txt: 58127) -.2mdn.net/.*/player\.swf -# @@||2mdn.net^*/jwplayer.js$domain=doubleclick.net (easylistchina+easylist.txt: 58126) -.2mdn.net/.*/jwplayer\.js -# @@||2mdn.net^*/player.swf$domain=doubleclick.net (easylist.txt: 47642) -.2mdn.net/.*/player\.swf -# @@||2mdn.net^*/jwplayer.js$domain=doubleclick.net (easylist.txt: 47641) -.2mdn.net/.*/jwplayer\.js - -#ab2p-unblock-request-R1121 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1121} \ -} -# @@/advertisement.js$domain=dramacafe.in|ilive.to|mackolik.com|sahadan.com (easylistchina+easylist.txt: 59920) -/(.*/)?advertisement\.js -advertisement.js*. -# @@/advertisement.js$domain=dramacafe.in|ilive.to|mackolik.com|sahadan.com (easylist.txt: 49435) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-request-R1129 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1129} \ -} -# @@||sfdict.com/app/*/js/ghostwriter_adcall.js$domain=dynamo.dictionary.com (easylistchina+easylist.txt: 59522) -.sfdict.com/app/.*/js/ghostwriter_adcall\.js -# @@||sfdict.com/app/*/js/ghostwriter_adcall.js$domain=dynamo.dictionary.com (easylist.txt: 49037) -.sfdict.com/app/.*/js/ghostwriter_adcall\.js - -#ab2p-unblock-request-R1131 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1131} \ -} -# @@||adtechus.com/dt/common/DACMultiAdPlugin.js$domain=e24.no (easylistchina+easylist.txt: 60028) -.adtechus.com/dt/common/DACMultiAdPlugin\.js -# @@||adtechus.com/dt/common/DACMultiAdPlugin.js$domain=e24.no (easylist.txt: 49543) -.adtechus.com/dt/common/DACMultiAdPlugin\.js - -#ab2p-unblock-request-R1133 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1133} \ -} -# @@||easyads.eu^$domain=easyads.eu (easylistchina+easylist.txt: 61251) -.easyads.eu -# @@||easyads.eu^$domain=easyads.eu (easylist.txt: 50766) -.easyads.eu - -#ab2p-unblock-request-R1134 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1134} \ -} -# @@||adblockplus.org^$elemhide,domain=easylist.adblockplus.org|reports.adblockplus.org (easylistchina+easylist.txt: 58186) -.adblockplus.org -# @@||adblockplus.org^$elemhide,domain=easylist.adblockplus.org|reports.adblockplus.org (easylist.txt: 47701) -.adblockplus.org - -#ab2p-unblock-request-R1138 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1138} \ -} -# @@||adverts.eclypsia.com/www/images/*.jpg|$domain=eclypsia.com (easylistchina+easylist.txt: 60033) -.adverts.eclypsia.com/www/images/.*\.jpg$ -# @@||adverts.eclypsia.com/www/images/*.jpg|$domain=eclypsia.com (easylist.txt: 49548) -.adverts.eclypsia.com/www/images/.*\.jpg$ - -#ab2p-unblock-request-R1141 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1141} \ -} -# @@||imgag.com^*/adaptvadplayer.swf$domain=egreetings.com (easylistchina+easylist.txt: 58999) -.imgag.com/.*/adaptvadplayer\.swf -# @@||imgag.com^*/adaptvadplayer.swf$domain=egreetings.com (easylist.txt: 48514) -.imgag.com/.*/adaptvadplayer\.swf - -#ab2p-unblock-request-R1142 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1142} \ -} -# @@||rc.hotkeys.com/interface/$domain=ehow.com (easylistchina+easylist.txt: 59440) -.rc.hotkeys.com/interface/ -# @@||rc.hotkeys.com/interface/$domain=ehow.com (easylist.txt: 48955) -.rc.hotkeys.com/interface/ - -#ab2p-unblock-request-R1144 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1144} \ -} -# @@||eioservices.marketingsolutions.yahoo.com^$domain=eio.manhattan.yahoo.com (easylistchina+easylist.txt: 61263) -.eioservices.marketingsolutions.yahoo.com -# @@||eioservices.marketingsolutions.yahoo.com^$domain=eio.manhattan.yahoo.com (easylist.txt: 50778) -.eioservices.marketingsolutions.yahoo.com - -#ab2p-unblock-request-R1147 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1147} \ -} -# @@||s1emagst.akamaized.net/openx/*.jpg$domain=emag.hu (easylistchina+easylist.txt: 61105) -.s1emagst.akamaized.net/openx/.*\.jpg -# @@||s1emagst.akamaized.net/openx/*.jpg$domain=emag.hu (easylist.txt: 50620) -.s1emagst.akamaized.net/openx/.*\.jpg - -#ab2p-unblock-request-R1150 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1150} \ -} -# @@||empik.ua/openx/www/delivery/ajs.php?$domain=empik.ua (advblock.txt: 7291) -.empik.ua/openx/www/delivery/ajs\.php\? - -#ab2p-unblock-request-R1151 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1151} \ -} -# @@||adsonar.com/js/aslJSON.js$domain=engadget.com (easylistchina+easylist.txt: 58308) -.adsonar.com/js/aslJSON\.js -# @@||adsonar.com/js/aslJSON.js$domain=engadget.com (easylist.txt: 47823) -.adsonar.com/js/aslJSON\.js - -#ab2p-unblock-request-R1153 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1153} \ -} -# @@||mythings.com/c.aspx?atok$domain=enter.ru (easylistchina+easylist.txt: 59219) -.mythings.com/c\.aspx\?atok -# @@||mythings.com/c.aspx?atok$domain=enter.ru (easylist.txt: 48734) -.mythings.com/c\.aspx\?atok - -#ab2p-unblock-request-R1155 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1155} \ -} -# @@||ads1.msn.com/library/dap.js$domain=entertainment.msn.co.nz|msn.foxsports.com (easylistchina+easylist.txt: 58282) -.ads1.msn.com/library/dap\.js -# @@||ads1.msn.com/library/dap.js$domain=entertainment.msn.co.nz|msn.foxsports.com (easylist.txt: 47797) -.ads1.msn.com/library/dap\.js - -#ab2p-unblock-request-R1159 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1159} \ -} -# @@||espncdn.com/combiner/c?*/ads.css$domain=espn.go.com (easylistchina+easylist.txt: 58794) -.espncdn.com/combiner/c\?.*/ads\.css -# @@||espncdn.com/combiner/c?*/ads.css$domain=espn.go.com (easylist.txt: 48309) -.espncdn.com/combiner/c\?.*/ads\.css - -#ab2p-unblock-request-R1160 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1160} \ -} -# @@||espngp.com/ads/*_sprite$domain=espnf1.com (easylistchina+easylist.txt: 58796) -.espngp.com/ads/.*_sprite -# @@||espngp.com/ads/*_sprite$domain=espnf1.com (easylist.txt: 48311) -.espngp.com/ads/.*_sprite - -#ab2p-unblock-request-R1162 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1162} \ -} -# @@||etsystatic.com^*_760x100.$domain=etsy.com (easylistchina+easylist.txt: 61329) -.etsystatic.com/.*_760x100\. -# @@||etsystatic.com^*_760x100.$domain=etsy.com (easylist.txt: 50844) -.etsystatic.com/.*_760x100\. - -#ab2p-unblock-request-R1166 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1166} \ -} -# @@||infineoncorp.com^$domain=eventhubs.com (easylistchina+easylist.txt: 60416) -.infineoncorp.com -# @@||infineoncorp.com^$domain=eventhubs.com (easylist.txt: 49931) -.infineoncorp.com - -#ab2p-unblock-request-R1167 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1167} \ -} -# @@||ads.lzjl.com/newserving/showad.php$domain=everythingon.tv (easylistchina+easylist.txt: 60013) -.ads.lzjl.com/newserving/showad\.php -# @@||ads.lzjl.com/newserving/showad.php$domain=everythingon.tv (easylist.txt: 49528) -.ads.lzjl.com/newserving/showad\.php - -#ab2p-unblock-request-R1168 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1168} \ -} -# @@/advertisement.js$domain=evrl.to|kinomoov.net|megogo.net|online.ua|only-paper.ru|raketa-tv.com|seriatv.ru|torrent-tv.ru|uakino.net|ualinux.com|褌械锌谢芯褉邪褋褔械褌.褉褎 (advblock.txt: 7530) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-request-R1169 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1169} \ -} -# @@||chitika.com^*/search-button.png?$domain=exashare.com (easylistchina+easylist.txt: 60154) -.chitika.com/.*/search-button\.png\? -# @@||chitika.com^*/search-button.png?$domain=exashare.com (easylist.txt: 49669) -.chitika.com/.*/search-button\.png\? - -#ab2p-unblock-request-R1170 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1170} \ -} -# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina+easylist.txt: 10202) -.cbjs.baidu.com - -#ab2p-unblock-request-R1171 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1171} \ -} -# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina+easylist.txt: 10192) -.cb.baidu.com/ecom\?di= - -#ab2p-unblock-request-R1172 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1172} \ -} -# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina+easylist.txt: 10399) -.ubmcmm.baidustatic.com - -#ab2p-unblock-request-R1173 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1173} \ -} -# @@/img/ad/*$domain=exp.qq.com (easylistchina+easylist.txt: 10044) -/(.*/)?img/ad/.* - -#ab2p-unblock-request-R1174 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1174} \ -} -# @@||ads.expedia.com/event.ng/type=click&$domain=expedia.com (easylistchina+easylist.txt: 58231) -.ads.expedia.com/event\.ng/type=click& -# @@||ads.expedia.com/event.ng/type=click&$domain=expedia.com (easylist.txt: 47746) -.ads.expedia.com/event\.ng/type=click& - -#ab2p-unblock-request-R1176 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1176} \ -} -# @@||poponclick.com/pp800x600.js?id=$domain=exrapidleech.info (easylistchina+easylist.txt: 60658) -.poponclick.com/pp800x600\.js\?id= -# @@||poponclick.com/pp800x600.js?id=$domain=exrapidleech.info (easylist.txt: 50173) -.poponclick.com/pp800x600\.js\?id= - #ab2p-unblock-request-R197 {-block \ +client-header-tagger{ab2p-unblock-request-R197} \ } -# @@||googletagservices.com/tag/js/gpt.js$domain=extremetech.com (easylistchina+easylist.txt: 45851) -.googletagservices.com/tag/js/gpt\.js -# @@||googletagservices.com/tag/js/gpt.js$domain=extremetech.com (easylist.txt: 35366) -.googletagservices.com/tag/js/gpt\.js +# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina.txt: 10066) +.127.0.0.1/admin/admin_ad\.php\? -#ab2p-unblock-request-R1177 +#ab2p-unblock-request-R198 {-block \ - +client-header-tagger{ab2p-unblock-request-R1177} \ + +client-header-tagger{ab2p-unblock-request-R198} \ } -# @@||extremetubemate.com/?AFNO=$popup,domain=extremetube.com (easylistchina+easylist.txt: 61793) -.extremetubemate.com/\?AFNO= -# @@||extremetubefreehd.com^*.Extreme_HeaderTab&$popup,domain=extremetube.com (easylistchina+easylist.txt: 61792) -.extremetubefreehd.com/.*\.Extreme_HeaderTab& -# @@||extremetubemate.com/?AFNO=$popup,domain=extremetube.com (easylist.txt: 51308) -.extremetubemate.com/\?AFNO= -# @@||extremetubefreehd.com^*.Extreme_HeaderTab&$popup,domain=extremetube.com (easylist.txt: 51307) -.extremetubefreehd.com/.*\.Extreme_HeaderTab& +# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 10017) +/(.*/)?css/ad\. +# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 9978) +/(.*/)?168logo\.gif +168logo.gif*. -#ab2p-unblock-request-R1178 +#ab2p-unblock-request-R199 {-block \ - +client-header-tagger{ab2p-unblock-request-R1178} \ + +client-header-tagger{ab2p-unblock-request-R199} \ } -# @@||as.sexad.net^*?p=*&v=$popup,domain=extremetube.com|keezmovies.com|pornhub.com|redtube.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61790) -.as.sexad.net/.*\?p=.*&v= -# @@||as.sexad.net^*?p=*&v=$popup,domain=extremetube.com|keezmovies.com|pornhub.com|redtube.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylist.txt: 51305) -.as.sexad.net/.*\?p=.*&v= +# @@/cms/ads/*$domain=17.com (easylistchina.txt: 10014) +/(.*/)?cms/ads/.* -#ab2p-unblock-request-R1179 +#ab2p-unblock-request-R200 {-block \ - +client-header-tagger{ab2p-unblock-request-R1179} \ + +client-header-tagger{ab2p-unblock-request-R200} \ } -# @@||wmtrafficentry.com/cgi-bin/ewm.cgi/*_HeaderTab?$popup,domain=extremetube.com|spankwire.com (easylistchina+easylist.txt: 61806) -.wmtrafficentry.com/cgi-bin/ewm\.cgi/.*_HeaderTab\? -# @@||securejoinsite.com/loader.php?*_HeaderTab&$popup,domain=extremetube.com|spankwire.com (easylistchina+easylist.txt: 61799) -.securejoinsite.com/loader\.php\?.*_HeaderTab& -# @@||wmtrafficentry.com/cgi-bin/ewm.cgi/*_HeaderTab?$popup,domain=extremetube.com|spankwire.com (easylist.txt: 51321) -.wmtrafficentry.com/cgi-bin/ewm\.cgi/.*_HeaderTab\? -# @@||securejoinsite.com/loader.php?*_HeaderTab&$popup,domain=extremetube.com|spankwire.com (easylist.txt: 51314) -.securejoinsite.com/loader\.php\?.*_HeaderTab& +# @@/ads/*$domain=189.cn (easylistchina.txt: 9994) +/(.*/)?ads/.* -#ab2p-unblock-request-R1182 +#ab2p-unblock-request-R201 {-block \ - +client-header-tagger{ab2p-unblock-request-R1182} \ + +client-header-tagger{ab2p-unblock-request-R201} \ } -# @@||advertise.fairfaxmedia.com.au^$domain=fairfaxmedia.com.au|myfairfax.com.au (easylistchina+easylist.txt: 58332) -.advertise.fairfaxmedia.com.au -# @@||advertise.fairfaxmedia.com.au^$domain=fairfaxmedia.com.au|myfairfax.com.au (easylist.txt: 47847) -.advertise.fairfaxmedia.com.au +# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina.txt: 10033) +/(.*/)?pop\.js$ +pop.js -#ab2p-unblock-request-R1183 +#ab2p-unblock-request-R202 {-block \ - +client-header-tagger{ab2p-unblock-request-R1183} \ + +client-header-tagger{ab2p-unblock-request-R202} \ } -# @@||ads.ehealthcaresolutions.com/tag/$domain=familydoctor.org (easylistchina+easylist.txt: 58229) -.ads.ehealthcaresolutions.com/tag/ -# @@||ads.ehealthcaresolutions.com/tag/$domain=familydoctor.org (easylist.txt: 47744) -.ads.ehealthcaresolutions.com/tag/ +# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina.txt: 10022) +/(.*/)?ima/.*ad\. -#ab2p-unblock-request-R1184 +#ab2p-unblock-request-R203 {-block \ - +client-header-tagger{ab2p-unblock-request-R1184} \ + +client-header-tagger{ab2p-unblock-request-R203} \ } -# @@||app.medyanetads.com/ad.js$domain=fanatik.com.tr (easylistchina+easylist.txt: 60981) -.app.medyanetads.com/ad\.js -# @@||app.medyanetads.com/ad.js$domain=fanatik.com.tr (easylist.txt: 50496) -.app.medyanetads.com/ad\.js +# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina.txt: 9968) +/.*&adurl=http:// -#ab2p-unblock-request-R1185 +#ab2p-unblock-request-R204 {-block \ - +client-header-tagger{ab2p-unblock-request-R1185} \ + +client-header-tagger{ab2p-unblock-request-R204} \ } -# @@||offerpalads.com^*/opmbanner.js$domain=farmville.com (easylistchina+easylist.txt: 59290) -.offerpalads.com/.*/opmbanner\.js -# @@||offerpalads.com^*/opmbanner.js$domain=farmville.com (easylist.txt: 48805) -.offerpalads.com/.*/opmbanner\.js +# @@/assets/adv/*$domain=4008927927.cn (easylistchina.txt: 10012) +/(.*/)?assets/adv/.* -#ab2p-unblock-request-R1186 +#ab2p-unblock-request-R205 {-block \ - +client-header-tagger{ab2p-unblock-request-R1186} \ + +client-header-tagger{ab2p-unblock-request-R205} \ } -# @@||tvzavr.ru^*^autoplay=0$domain=fastpic.ru (advblock.txt: 7416) -.tvzavr.ru/.*[^\w%.-]autoplay=0 +# @@||5060.com^$elemhide,domain=5060.com (easylistchina.txt: 10085) +.5060.com -#ab2p-unblock-request-R1187 +#ab2p-unblock-request-R206 {-block \ - +client-header-tagger{ab2p-unblock-request-R1187} \ + +client-header-tagger{ab2p-unblock-request-R206} \ } -# @@||epmads.com/js/show_ads_epmads.js$domain=fcportables.com (easylistchina+easylist.txt: 60254) -.epmads.com/js/show_ads_epmads\.js -# @@||epmads.com/js/show_ads_epmads.js$domain=fcportables.com (easylist.txt: 49769) -.epmads.com/js/show_ads_epmads\.js +# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina.txt: 10198) +.cpro.baidu.com/cpro/ui/c\.js -#ab2p-unblock-request-R1190 +#ab2p-unblock-request-R207 {-block \ - +client-header-tagger{ab2p-unblock-request-R1190} \ + +client-header-tagger{ab2p-unblock-request-R207} \ } -# @@||pagead2.googlesyndication.com/pagead/expansion_embed.js$domain=ffiles.com|full-ngage-games.blogspot.com|kingofgames.net|megaallday.com|ninjaraider.com|nonags.com|upfordown.com|wtf-teen.com (easylistchina+easylist.txt: 60622) -.pagead2.googlesyndication.com/pagead/expansion_embed\.js -# @@||pagead2.googlesyndication.com/pagead/expansion_embed.js$domain=ffiles.com|full-ngage-games.blogspot.com|kingofgames.net|megaallday.com|ninjaraider.com|nonags.com|upfordown.com|wtf-teen.com (easylist.txt: 50137) -.pagead2.googlesyndication.com/pagead/expansion_embed\.js +# @@||5i5j.*/images/ad$domain=5i5j.com (easylistchina.txt: 10093) +.5i5j.*./(.*/)?images/ad -#ab2p-unblock-request-R1192 +#ab2p-unblock-request-R208 {-block \ - +client-header-tagger{ab2p-unblock-request-R1192} \ + +client-header-tagger{ab2p-unblock-request-R208} \ } -# @@||admeld.com/meld128.js$domain=fileover.net (easylistchina+easylist.txt: 59999) -.admeld.com/meld128\.js -# @@||admeld.com/meld128.js$domain=fileover.net (easylist.txt: 49514) -.admeld.com/meld128\.js +# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina.txt: 10184) +.cbjs.baidu.com/js/o\.js + +#ab2p-unblock-request-R209 +{-block \ + +client-header-tagger{ab2p-unblock-request-R209} \ +} +# @@/common/cf/*$domain=66u.com|dataguru.cn|oneplusbbs.com|readboy.com (easylistchina.txt: 10016) +/(.*/)?common/cf/.* + +#ab2p-unblock-request-R210 +{-block \ + +client-header-tagger{ab2p-unblock-request-R210} \ +} +# @@/images/*/*.gif$domain=67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina.txt: 10023) +/(.*/)?images/.*/.*\.gif + +#ab2p-unblock-request-R211 +{-block \ + +client-header-tagger{ab2p-unblock-request-R211} \ +} +# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina.txt: 10434) +/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ +/\.7k7k.com\/(?!(ad|load)) + +#ab2p-unblock-request-R212 +{-block \ + +client-header-tagger{ab2p-unblock-request-R212} \ +} +# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina.txt: 9981) +/(.*/)?ad_file/.* + +#ab2p-unblock-request-R213 +{-block \ + +client-header-tagger{ab2p-unblock-request-R213} \ +} +# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina.txt: 10287) +.l.qq.com/lview\? +# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina.txt: 10277) +.j.wit.qq.com/sc/crystal_ad\.js\? + +#ab2p-unblock-request-R214 +{-block \ + +client-header-tagger{ab2p-unblock-request-R214} \ +} +# @@/ad_images/*$domain=88box.com (easylistchina.txt: 9982) +/(.*/)?ad_images/.* + +#ab2p-unblock-request-R215 +{-block \ + +client-header-tagger{ab2p-unblock-request-R215} \ +} +# @@.com/ads/$domain=88boxjx.com (easylistchina.txt: 9973) +/.*\.com/ads/ +.*.com/ads/ + +#ab2p-unblock-request-R216 +{-block \ + +client-header-tagger{ab2p-unblock-request-R216} \ +} +# @@/web/ads/*$domain=95516.com (easylistchina.txt: 10042) +/(.*/)?web/ads/.* #ab2p-unblock-request-R217 {-block \ +client-header-tagger{ab2p-unblock-request-R217} \ } -# @@||histats.com/*.js$domain=filmovizija.in (easylistchina+easylist.txt: 60381) -.histats.com/.*\.js -# @@||eosads.com/popunder.js$domain=filmovizija.in (easylistchina+easylist.txt: 60251) -.eosads.com/popunder\.js -# @@||adscale.de/getads.js$domain=filmovizija.in (easylistchina+easylist.txt: 60020) -.adscale.de/getads\.js -# @@||ads.exoclick.com/ads.js$domain=filmovizija.in (easylistchina+easylist.txt: 60011) -.ads.exoclick.com/ads\.js -# @@||188.165.28.32/advert*.js$domain=filmovizija.in (easylistchina+easylist.txt: 59962) -.188.165.28.32/advert.*\.js -# @@||histats.com/*.js$domain=filmovizija.in (easylist.txt: 49896) -.histats.com/.*\.js -# @@||eosads.com/popunder.js$domain=filmovizija.in (easylist.txt: 49766) -.eosads.com/popunder\.js -# @@||adscale.de/getads.js$domain=filmovizija.in (easylist.txt: 49535) -.adscale.de/getads\.js -# @@||ads.exoclick.com/ads.js$domain=filmovizija.in (easylist.txt: 49526) -.ads.exoclick.com/ads\.js -# @@||188.165.28.32/advert*.js$domain=filmovizija.in (easylist.txt: 49477) -.188.165.28.32/advert.*\.js +# @@/images/ad/*$domain=9588.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|snh48.com|sozi.cn|tingbook.com (easylistchina.txt: 10025) +/(.*/)?images/ad/.* -#ab2p-unblock-request-R1194 +#ab2p-unblock-request-R218 {-block \ - +client-header-tagger{ab2p-unblock-request-R1194} \ + +client-header-tagger{ab2p-unblock-request-R218} \ } -# @@||popads.net/pop.js$domain=filmovizija.in|go4up.com|hqq.tv|sizedrive.com (easylistchina+easylist.txt: 60657) -.popads.net/pop\.js -# @@||popads.net/pop.js$domain=filmovizija.in|go4up.com|hqq.tv|sizedrive.com (easylist.txt: 50172) -.popads.net/pop\.js +# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina.txt: 10326) +.pos.baidu.com/ecom\? -#ab2p-unblock-request-R1198 +#ab2p-unblock-request-R220 {-block \ - +client-header-tagger{ab2p-unblock-request-R1198} \ + +client-header-tagger{ab2p-unblock-request-R220} \ } -# @@||artxun.com^$domain=findart.com.cn (easylistchina+easylist.txt: 10174) +# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina.txt: 10111) +.ad-specs.guoshipartners.com/static/js/isip\.js + +#ab2p-unblock-request-R221 +{-block \ + +client-header-tagger{ab2p-unblock-request-R221} \ +} +# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina.txt: 10272) +.inskinmedia.com/.*/js/base/api/ + +#ab2p-unblock-request-R222 +{-block \ + +client-header-tagger{ab2p-unblock-request-R222} \ +} +# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina.txt: 10426) +.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js + +#ab2p-unblock-request-R224 +{-block \ + +client-header-tagger{ab2p-unblock-request-R224} \ +} +# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina.txt: 10091) +.58.com/ds/tgbrand/ + +#ab2p-unblock-request-R225 +{-block \ + +client-header-tagger{ab2p-unblock-request-R225} \ +} +# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina.txt: 10000) +/(.*/)?advert/.* + +#ab2p-unblock-request-R60 +{-block \ + +client-header-tagger{ab2p-unblock-request-R60} \ +} +# @@/sda/weixin$domain=chineseinla.com (easylistchina.txt: 10036) +/(.*/)?sda/weixin + +#ab2p-unblock-request-R226 +{-block \ + +client-header-tagger{ab2p-unblock-request-R226} \ +} +# @@/adfile/*$domain=cidianwang.com (easylistchina.txt: 9986) +/(.*/)?adfile/.* + +#ab2p-unblock-request-R227 +{-block \ + +client-header-tagger{ab2p-unblock-request-R227} \ +} +# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina.txt: 10321) +.pos.baidu.com/acom\?di= +# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina.txt: 10029) +/(.*/)?js/ad_test\.js + +#ab2p-unblock-request-R228 +{-block \ + +client-header-tagger{ab2p-unblock-request-R228} \ +} +# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina.txt: 10183) +.cbjs.baidu.com/js/m\.js + +#ab2p-unblock-request-R229 +{-block \ + +client-header-tagger{ab2p-unblock-request-R229} \ +} +# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina.txt: 10175) +.cb.baidu.com/ecom\? + +#ab2p-unblock-request-R230 +{-block \ + +client-header-tagger{ab2p-unblock-request-R230} \ +} +# @@/adpic/*$domain=czsrc.com|nieyou.com (easylistchina.txt: 9993) +/(.*/)?adpic/.* + +#ab2p-unblock-request-R231 +{-block \ + +client-header-tagger{ab2p-unblock-request-R231} \ +} +# @@||mediav.com^$domain=dev.360.cn (easylistchina.txt: 10293) +.mediav.com + +#ab2p-unblock-request-R232 +{-block \ + +client-header-tagger{ab2p-unblock-request-R232} \ +} +# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina.txt: 10009) +/(.*/)?advs/.* + +#ab2p-unblock-request-R233 +{-block \ + +client-header-tagger{ab2p-unblock-request-R233} \ +} +# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina.txt: 10314) +.pagead2.googlesyndication.com/pagead/show_ads\.js + +#ab2p-unblock-request-R234 +{-block \ + +client-header-tagger{ab2p-unblock-request-R234} \ +} +# @@/adframe.$domain=dnvod.eu (easylistchina.txt: 9987) +/(.*/)?adframe\. +adframe.*. + +#ab2p-unblock-request-R235 +{-block \ + +client-header-tagger{ab2p-unblock-request-R235} \ +} +# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina.txt: 10041) +/(.*/)?upload/ads/.*\.jpg + +#ab2p-unblock-request-R236 +{-block \ + +client-header-tagger{ab2p-unblock-request-R236} \ +} +# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina.txt: 10054) +/(.*/)?AD/ + +#ab2p-unblock-request-R237 +{-block \ + +client-header-tagger{ab2p-unblock-request-R237} \ +} +# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina.txt: 10186) +.cbjs.baidu.com + +#ab2p-unblock-request-R238 +{-block \ + +client-header-tagger{ab2p-unblock-request-R238} \ +} +# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina.txt: 10176) +.cb.baidu.com/ecom\?di= + +#ab2p-unblock-request-R239 +{-block \ + +client-header-tagger{ab2p-unblock-request-R239} \ +} +# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina.txt: 10387) +.ubmcmm.baidustatic.com + +#ab2p-unblock-request-R240 +{-block \ + +client-header-tagger{ab2p-unblock-request-R240} \ +} +# @@/img/ad/*$domain=exp.qq.com (easylistchina.txt: 10026) +/(.*/)?img/ad/.* + +#ab2p-unblock-request-R241 +{-block \ + +client-header-tagger{ab2p-unblock-request-R241} \ +} +# @@/advertisement.js$domain=fharr.com|gimhoy.com (easylistchina.txt: 10005) +/(.*/)?advertisement\.js +advertisement.js*. + +#ab2p-unblock-request-R243 +{-block \ + +client-header-tagger{ab2p-unblock-request-R243} \ +} +# @@||artxun.com^$domain=findart.com.cn (easylistchina.txt: 10157) .artxun.com -#ab2p-unblock-request-R1203 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1203} \ -} -# @@||ads.flipkart.com/delivery/ck.php?$popup,domain=flipkart.com (easylistchina+easylist.txt: 61396) -.ads.flipkart.com/delivery/ck\.php\? -# @@||ads.flipkart.com/delivery/ck.php?$popup,domain=flipkart.com (easylist.txt: 50911) -.ads.flipkart.com/delivery/ck\.php\? - -#ab2p-unblock-request-R1206 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1206} \ -} -# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina+easylist.txt: 10283) -.inte.sogou.com/ask\?id= -# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina+easylist.txt: 10277) -.images.sohu.com/cs/ - -#ab2p-unblock-request-R1207 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1207} \ -} -# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina+easylist.txt: 10284) -.itc.cn/public_photo/advert/ - -#ab2p-unblock-request-R1209 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1209} \ -} -# @@||adm.fwmrm.net^*/AdManager.js$domain=foodnetwork.com|msnbc.com|player.theplatform.com|sky.com (easylistchina+easylist.txt: 58203) -.adm.fwmrm.net/.*/AdManager\.js -# @@||adm.fwmrm.net^*/AdManager.js$domain=foodnetwork.com|msnbc.com|player.theplatform.com|sky.com (easylist.txt: 47718) -.adm.fwmrm.net/.*/AdManager\.js - -#ab2p-unblock-request-R1211 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1211} \ -} -# @@||forbesimg.com/scripts/advertisement.js$domain=forbes.com (easylistchina+easylist.txt: 60300) -.forbesimg.com/scripts/advertisement\.js -# @@||rt.liftdna.com/forbes_welcome.js$domain=forbes.com (easylistchina+easylist.txt: 59474) -.rt.liftdna.com/forbes_welcome\.js -# @@||forbesimg.com/assets/js/forbes/right_rail_sticky_ad.js$domain=forbes.com (easylistchina+easylist.txt: 58834) -.forbesimg.com/assets/js/forbes/right_rail_sticky_ad\.js -# @@||forbesimg.com/scripts/advertisement.js$domain=forbes.com (easylist.txt: 49815) -.forbesimg.com/scripts/advertisement\.js -# @@||rt.liftdna.com/forbes_welcome.js$domain=forbes.com (easylist.txt: 48989) -.rt.liftdna.com/forbes_welcome\.js -# @@||forbesimg.com/assets/js/forbes/right_rail_sticky_ad.js$domain=forbes.com (easylist.txt: 48349) -.forbesimg.com/assets/js/forbes/right_rail_sticky_ad\.js - -#ab2p-unblock-request-R1212 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1212} \ -} -# @@||rt.liftdna.com/liftrtb2_2.js$domain=formspring.me (easylistchina+easylist.txt: 59476) -.rt.liftdna.com/liftrtb2_2\.js -# @@||rt.liftdna.com/fs.js$domain=formspring.me (easylistchina+easylist.txt: 59475) -.rt.liftdna.com/fs\.js -# @@||rt.liftdna.com/liftrtb2_2.js$domain=formspring.me (easylist.txt: 48991) -.rt.liftdna.com/liftrtb2_2\.js -# @@||rt.liftdna.com/fs.js$domain=formspring.me (easylist.txt: 48990) -.rt.liftdna.com/fs\.js - -#ab2p-unblock-request-R1215 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1215} \ -} -# @@||fncstatic.com^*/fox411/fox-411-head-728x90.png$domain=foxnews.com (easylistchina+easylist.txt: 58832) -.fncstatic.com/.*/fox411/fox-411-head-728x90\.png -# @@||fncstatic.com^*/fox411/fox-411-head-728x90.png$domain=foxnews.com (easylist.txt: 48347) -.fncstatic.com/.*/fox411/fox-411-head-728x90\.png - -#ab2p-unblock-request-R1216 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1216} \ -} -# @@||googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=free-send.ru|izzylaif.com|modfiles.ru|osettlers.com|trackitonline.ru (advblock.txt: 7571) -.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-request-R1217 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1217} \ -} -# @@||googlesyndication.com/pagead/js/adsbygoogle.js$domain=free-send.ru|modfiles.ru|osettlers.com (advblock.txt: 7572) -.googlesyndication.com/pagead/js/adsbygoogle\.js - -#ab2p-unblock-request-R1219 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1219} \ -} -# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina+easylist.txt: 10458) -/.*\.com%2Fanalytics\.js - -#ab2p-unblock-request-R1220 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1220} \ -} -# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina+easylist.txt: 10029) -/(.*/)?bag2\?r\[\]=.*&r\[\]= - -#ab2p-unblock-request-R1221 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1221} \ -} -# @@||urdupoint.googlecode.com/files/advertisement.js$domain=free.smsmarkaz.urdupoint.com (easylistchina+easylist.txt: 60847) -.urdupoint.googlecode.com/files/advertisement\.js -# @@||urdupoint.googlecode.com/files/advertisement.js$domain=free.smsmarkaz.urdupoint.com (easylist.txt: 50362) -.urdupoint.googlecode.com/files/advertisement\.js - -#ab2p-unblock-request-R1222 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1222} \ -} -# @@||googlecode.com^*/advertisement.js$domain=freeallmusic.net (easylistchina+easylist.txt: 60364) -.googlecode.com/.*/advertisement\.js -# @@||googlecode.com^*/advertisement.js$domain=freeallmusic.net (easylist.txt: 49879) -.googlecode.com/.*/advertisement\.js - -#ab2p-unblock-request-R1224 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1224} \ -} -# @@||f-cdn.com/build/js/ads/main.js?$domain=freelancer.com (easylistchina+easylist.txt: 58812) -.f-cdn.com/build/js/ads/main\.js\? -# @@||f-cdn.com/build/js/ads/main.js?$domain=freelancer.com (easylist.txt: 48327) -.f-cdn.com/build/js/ads/main\.js\? - -#ab2p-unblock-request-R1231 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1231} \ -} -# @@.min.js$domain=ftlauderdalewebcam.com|nyharborwebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com (easylistchina+easylist.txt: 59902) -/.*\.min\.js -.*.min.js*. -# @@.min.js$domain=ftlauderdalewebcam.com|nyharborwebcam.com|portcanaveralwebcam.com|portevergladeswebcam.com|portmiamiwebcam.com (easylist.txt: 49417) -/.*\.min\.js -.*.min.js*. - -#ab2p-unblock-request-R1234 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1234} \ -} -# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina+easylist.txt: 10355) -.s.lianmeng.360.cn -# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina+easylist.txt: 10300) -.lianmeng.360.cn/searchthrow/.*&w=960& - -#ab2p-unblock-request-R1235 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1235} \ -} -# @@||assoc-amazon.com^*/js/swfobject_$domain=gactv.com (easylistchina+easylist.txt: 58445) -.assoc-amazon.com/.*/js/swfobject_ -# @@||adsremote.scrippsnetworks.com/html.ng/adtype=*&playertype=$domain=gactv.com (easylistchina+easylist.txt: 58311) -.adsremote.scrippsnetworks.com/html\.ng/adtype=.*&playertype= -# @@||assoc-amazon.com^*/js/swfobject_$domain=gactv.com (easylist.txt: 47960) -.assoc-amazon.com/.*/js/swfobject_ -# @@||adsremote.scrippsnetworks.com/html.ng/adtype=*&playertype=$domain=gactv.com (easylist.txt: 47826) -.adsremote.scrippsnetworks.com/html\.ng/adtype=.*&playertype= - -#ab2p-unblock-request-R1236 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1236} \ -} -# @@||ghstatic.com/archives/*&adURL=$domain=game.zylom.com (easylistchina+easylist.txt: 58876) -.ghstatic.com/archives/.*&adURL= -# @@||ghstatic.com/archives/*&adURL=$domain=game.zylom.com (easylist.txt: 48391) -.ghstatic.com/archives/.*&adURL= - -#ab2p-unblock-request-R1237 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1237} \ -} -# @@||shacknews.com/advertising/preroll/$domain=gamefly.com (easylistchina+easylist.txt: 59524) -.shacknews.com/advertising/preroll/ -# @@||shacknews.com/advertising/preroll/$domain=gamefly.com (easylist.txt: 49039) -.shacknews.com/advertising/preroll/ - -#ab2p-unblock-request-R1238 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1238} \ -} -# @@||ad.ghfusion.com/constants.js$domain=gamehouse.com (easylistchina+easylist.txt: 58161) -.ad.ghfusion.com/constants\.js -# @@||ad.ghfusion.com/constants.js$domain=gamehouse.com (easylist.txt: 47676) -.ad.ghfusion.com/constants\.js - -#ab2p-unblock-request-R1239 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1239} \ -} -# @@||video.gamer-info.com^*.mp4$domain=gamer-info.com (advblock.txt: 7422) -.video.gamer-info.com/.*\.mp4 - -#ab2p-unblock-request-R1242 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1242} \ -} -# @@||sgc.io/advertisement.js$domain=games.softgames.de (easylistchina+easylist.txt: 60734) -.sgc.io/advertisement\.js -# @@||sgc.io/advertisement.js$domain=games.softgames.de (easylist.txt: 50249) -.sgc.io/advertisement\.js - -#ab2p-unblock-request-R1244 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1244} \ -} -# @@||spotxchange.com/ad_player/as3.swf$domain=games.yahoo.com|onescreen.net (easylistchina+easylist.txt: 59570) -.spotxchange.com/ad_player/as3\.swf -# @@||spotxchange.com/ad_player/as3.swf$domain=games.yahoo.com|onescreen.net (easylist.txt: 49085) -.spotxchange.com/ad_player/as3\.swf - -#ab2p-unblock-request-R1245 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1245} \ -} -# @@||mochiads.com/srv/*.swf?cxnid=$domain=gamesforwork.com (easylistchina+easylist.txt: 59187) -.mochiads.com/srv/.*\.swf\?cxnid= -# @@||mochiads.com/srv/*.swf?cachebust=$domain=gamesforwork.com (easylistchina+easylist.txt: 59186) -.mochiads.com/srv/.*\.swf\?cachebust= -# @@||mochiads.com/ctr/*.swf?$domain=gamesforwork.com (easylistchina+easylist.txt: 59185) -.mochiads.com/ctr/.*\.swf\? -# @@||mochiads.com/srv/*.swf?cxnid=$domain=gamesforwork.com (easylist.txt: 48702) -.mochiads.com/srv/.*\.swf\?cxnid= -# @@||mochiads.com/srv/*.swf?cachebust=$domain=gamesforwork.com (easylist.txt: 48701) -.mochiads.com/srv/.*\.swf\?cachebust= -# @@||mochiads.com/ctr/*.swf?$domain=gamesforwork.com (easylist.txt: 48700) -.mochiads.com/ctr/.*\.swf\? - -#ab2p-unblock-request-R1246 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1246} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_companion_ad.js$domain=gamespot.com (easylistchina+easylist.txt: 60629) -.pagead2.googlesyndication.com/pagead/show_companion_ad\.js -# @@||pagead2.googlesyndication.com/pagead/show_companion_ad.js$domain=gamespot.com (easylist.txt: 50144) -.pagead2.googlesyndication.com/pagead/show_companion_ad\.js - -#ab2p-unblock-request-R1248 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1248} \ -} -# @@/Advertisement.$domain=gametower.com.tw (easylistchina+easylist.txt: 10020) -/(.*/)?Advertisement\. -Advertisement.*. - #ab2p-unblock-request-R245 {-block \ +client-header-tagger{ab2p-unblock-request-R245} \ } -# @@||gelbooru.com//images/ad/$domain=gelbooru.com (easylistchina+easylist.txt: 61439) -# @@||gelbooru.com//images/ad/$domain=gelbooru.com (easylist.txt: 50954) +# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina.txt: 10273) +.inte.sogou.com/ask\?id= +# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina.txt: 10267) +.images.sohu.com/cs/ -#ab2p-unblock-request-R1250 +#ab2p-unblock-request-R246 {-block \ - +client-header-tagger{ab2p-unblock-request-R1250} \ + +client-header-tagger{ab2p-unblock-request-R246} \ } -# @@||genvideos.com/js/show_ads.js$domain=genvideos.com (easylistchina+easylist.txt: 60346) -.genvideos.com/js/show_ads\.js -# @@||genvideos.com/js/show_ads.js$domain=genvideos.com (easylist.txt: 49861) -.genvideos.com/js/show_ads\.js +# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina.txt: 10274) +.itc.cn/public_photo/advert/ -#ab2p-unblock-request-R1252 +#ab2p-unblock-request-R247 {-block \ - +client-header-tagger{ab2p-unblock-request-R1252} \ + +client-header-tagger{ab2p-unblock-request-R247} \ } -# @@||admitad.com/public/advertising_campaign/images/$domain=getcoupons.ru (advblock.txt: 7227) -.admitad.com/public/advertising_campaign/images/ - -#ab2p-unblock-request-R1255 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1255} \ -} -# @@/advertisement.js$domain=gimhoy.com (easylistchina+easylist.txt: 10021) -/(.*/)?advertisement\.js -advertisement.js*. - -#ab2p-unblock-request-R1256 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1256} \ -} -# @@||widgets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 59812) -.widgets.rewardstyle.com -# @@||assets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylistchina+easylist.txt: 58442) -.assets.rewardstyle.com -# @@||widgets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylist.txt: 49327) -.widgets.rewardstyle.com -# @@||assets.rewardstyle.com^$domain=glamour.com|itsjudytime.com (easylist.txt: 47957) -.assets.rewardstyle.com - -#ab2p-unblock-request-R1259 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1259} \ -} -# @@||smdg.ca/ads/banner/pen.png$domain=globalnews.ca (easylistchina+easylist.txt: 59548) -.smdg.ca/ads/banner/pen\.png -# @@||smdg.ca/ads/banner/pen.png$domain=globalnews.ca (easylist.txt: 49063) -.smdg.ca/ads/banner/pen\.png +# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina.txt: 10445) +/.*\.com%2Fanalytics\.js #ab2p-unblock-request-R248 {-block \ +client-header-tagger{ab2p-unblock-request-R248} \ } -# @@||dolimg.com^*/dxd_ad_code.swf$domain=go.com (easylistchina+easylist.txt: 58686) -.dolimg.com/.*/dxd_ad_code\.swf -# @@||dolimg.com^*/dxd_ad_code.swf$domain=go.com (easylist.txt: 48201) -.dolimg.com/.*/dxd_ad_code\.swf +# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina.txt: 10013) +/(.*/)?bag2\?r\[\]=.*&r\[\]= -#ab2p-unblock-request-R1261 +#ab2p-unblock-request-R249 {-block \ - +client-header-tagger{ab2p-unblock-request-R1261} \ + +client-header-tagger{ab2p-unblock-request-R249} \ } -# @@||propellerads.com/ajs.php?zoneid=$domain=goclips.tv|letitbit.net (advblock.txt: 7370) -.propellerads.com/ajs\.php\?zoneid= +# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina.txt: 10344) +.s.lianmeng.360.cn +# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina.txt: 10290) +.lianmeng.360.cn/searchthrow/.*&w=960& -#ab2p-unblock-request-R1262 +#ab2p-unblock-request-R250 {-block \ - +client-header-tagger{ab2p-unblock-request-R1262} \ + +client-header-tagger{ab2p-unblock-request-R250} \ } -# @@||timeinc.net/golf/static/ads/iframe_ad_factory.js$domain=golf.com (easylistchina+easylist.txt: 59660) -.timeinc.net/golf/static/ads/iframe_ad_factory\.js -# @@||timeinc.net/golf/static/ads/iframe_ad_factory.js$domain=golf.com (easylist.txt: 49175) -.timeinc.net/golf/static/ads/iframe_ad_factory\.js +# @@/Advertisement.$domain=gametower.com.tw (easylistchina.txt: 10004) +/(.*/)?Advertisement\. +Advertisement.*. -#ab2p-unblock-request-R1263 +#ab2p-unblock-request-R251 {-block \ - +client-header-tagger{ab2p-unblock-request-R1263} \ + +client-header-tagger{ab2p-unblock-request-R251} \ } -# @@|http://*/??$domain=gome.com.cn (easylistchina+easylist.txt: 10070) +# @@|http://*/??$domain=gome.com.cn (easylistchina.txt: 10052) /(.*/)?\?\? -#ab2p-unblock-request-R1265 +#ab2p-unblock-request-R252 {-block \ - +client-header-tagger{ab2p-unblock-request-R1265} \ + +client-header-tagger{ab2p-unblock-request-R252} \ } -# @@||greasyfork.org/system/screenshots/screenshots/$domain=greasyfork.org (easylistchina+easylist.txt: 58920) -.greasyfork.org/system/screenshots/screenshots/ -# @@||greasyfork.org/system/screenshots/screenshots/$domain=greasyfork.org (easylist.txt: 48435) -.greasyfork.org/system/screenshots/screenshots/ - -#ab2p-unblock-request-R1268 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1268} \ -} -# @@||gt-advertise.ru^$domain=gt-advertise.ru (advblock.txt: 7306) -.gt-advertise.ru - -#ab2p-unblock-request-R1271 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1271} \ -} -# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina+easylist.txt: 10190) +# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina.txt: 10174) .cache.adm.cnzz.net -#ab2p-unblock-request-R1272 +#ab2p-unblock-request-R253 {-block \ - +client-header-tagger{ab2p-unblock-request-R1272} \ + +client-header-tagger{ab2p-unblock-request-R253} \ } -# @@||impactradius.com/gen-ad-code/$domain=hackintosh.zone (easylistchina+easylist.txt: 60412) -.impactradius.com/gen-ad-code/ -# @@||impactradius.com/display-ad/$domain=hackintosh.zone (easylistchina+easylist.txt: 60411) -.impactradius.com/display-ad/ -# @@||impactradius.com/gen-ad-code/$domain=hackintosh.zone (easylist.txt: 49927) -.impactradius.com/gen-ad-code/ -# @@||impactradius.com/display-ad/$domain=hackintosh.zone (easylist.txt: 49926) -.impactradius.com/display-ad/ - -#ab2p-unblock-request-R1273 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1273} \ -} -# @@/flash/ad/*$domain=haitao.com (easylistchina+easylist.txt: 10037) +# @@/flash/ad/*$domain=haitao.com (easylistchina.txt: 10019) /(.*/)?flash/ad/.* -#ab2p-unblock-request-R1274 +#ab2p-unblock-request-R254 {-block \ - +client-header-tagger{ab2p-unblock-request-R1274} \ + +client-header-tagger{ab2p-unblock-request-R254} \ } -# @@||hamalia.ua/tools/banner/site/banner.php?$domain=hamalia.ua (advblock.txt: 7307) -.hamalia.ua/tools/banner/site/banner\.php\? - -#ab2p-unblock-request-R1275 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1275} \ -} -# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina+easylist.txt: 9986) +# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina.txt: 9972) /.*\.com/ad/ .*.com/ad/ -#ab2p-unblock-request-R1277 +#ab2p-unblock-request-R255 {-block \ - +client-header-tagger{ab2p-unblock-request-R1277} \ + +client-header-tagger{ab2p-unblock-request-R255} \ } -# @@||hawk.ru/media/banners/$domain=hawk.ru (advblock.txt: 7308) -.hawk.ru/media/banners/ - -#ab2p-unblock-request-R1280 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1280} \ -} -# @@||gmodules.com/ig/ifr?up_ad$domain=healthboards.com (easylistchina+easylist.txt: 58885) -.gmodules.com/ig/ifr\?up_ad -# @@||gmodules.com/ig/ifr?up_ad$domain=healthboards.com (easylist.txt: 48400) -.gmodules.com/ig/ifr\?up_ad - -#ab2p-unblock-request-R1283 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1283} \ -} -# @@/files/banner/*$domain=hgst.com|movie-pocket.com (advblock.txt: 7199) -/(.*/)?files/banner/.* - -#ab2p-unblock-request-R1285 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1285} \ -} -# @@||google.com/ads/$domain=hinduladies.com (easylistchina+easylist.txt: 61738) -.google.com/ads/ -# @@||google.com/ads/$domain=hinduladies.com (easylist.txt: 51253) -.google.com/ads/ - -#ab2p-unblock-request-R1286 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1286} \ -} -# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina+easylist.txt: 10482) +# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina.txt: 10470) .scorecardresearch.com/beacon\.js -#ab2p-unblock-request-R1288 +#ab2p-unblock-request-R256 {-block \ - +client-header-tagger{ab2p-unblock-request-R1288} \ + +client-header-tagger{ab2p-unblock-request-R256} \ } -# @@||pop6.com/banners/$domain=horny.net|xmatch.com (easylistchina+easylist.txt: 61452) -.pop6.com/banners/ -# @@||pop6.com/banners/$domain=horny.net|xmatch.com (easylist.txt: 50967) -.pop6.com/banners/ - -#ab2p-unblock-request-R1290 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1290} \ -} -# @@||doubleclick.net/clk;$popup,domain=hotukdeals.com|jobamatic.com|play.google.com|santander.co.uk|techrepublic.com (easylistchina+easylist.txt: 61409) -.doubleclick.net/clk; -# @@||doubleclick.net/clk;$popup,domain=hotukdeals.com|jobamatic.com|play.google.com|santander.co.uk|techrepublic.com (easylist.txt: 50924) -.doubleclick.net/clk; - -#ab2p-unblock-request-R1292 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1292} \ -} -# @@/advertising/*$domain=houdask.com (easylistchina+easylist.txt: 10023) +# @@/advertising/*$domain=houdask.com (easylistchina.txt: 10007) /(.*/)?advertising/.* -#ab2p-unblock-request-R1293 +#ab2p-unblock-request-R257 {-block \ - +client-header-tagger{ab2p-unblock-request-R1293} \ + +client-header-tagger{ab2p-unblock-request-R257} \ } -# @@||www8-hp.com^*/styles/ads/$domain=hp.com (easylistchina+easylist.txt: 59836) -.www8-hp.com/.*/styles/ads/ -# @@||www8-hp.com^*/styles/ads/$domain=hp.com (easylist.txt: 49351) -.www8-hp.com/.*/styles/ads/ - -#ab2p-unblock-request-R1294 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1294} \ -} -# @@||sms-mmm.com/pads.js$domain=hqq.tv (easylistchina+easylist.txt: 60750) -.sms-mmm.com/pads\.js -# @@||sms-mmm.com/pads.js$domain=hqq.tv (easylist.txt: 50265) -.sms-mmm.com/pads\.js - -#ab2p-unblock-request-R1295 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1295} \ -} -# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina+easylist.txt: 10064) +# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina.txt: 10046) /.*\?adType= -#ab2p-unblock-request-R1296 +#ab2p-unblock-request-R258 {-block \ - +client-header-tagger{ab2p-unblock-request-R1296} \ + +client-header-tagger{ab2p-unblock-request-R258} \ } -# @@||aolcdn.com/ads/adsWrapperIntl.js$domain=huffingtonpost.co.uk (easylistchina+easylist.txt: 58409) -.aolcdn.com/ads/adsWrapperIntl\.js -# @@||aolcdn.com/ads/adsWrapperIntl.js$domain=huffingtonpost.co.uk (easylist.txt: 47924) -.aolcdn.com/ads/adsWrapperIntl\.js - -#ab2p-unblock-request-R1297 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1297} \ -} -# @@||huffpost.com/images/ads/$domain=huffingtonpost.com (easylistchina+easylist.txt: 58956) -.huffpost.com/images/ads/ -# @@||huffpost.com/images/ads/$domain=huffingtonpost.com (easylist.txt: 48471) -.huffpost.com/images/ads/ - -#ab2p-unblock-request-R1302 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1302} \ -} -# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina+easylist.txt: 10039) +# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina.txt: 10021) /(.*/)?guanggao/.* -#ab2p-unblock-request-R1306 +#ab2p-unblock-request-R259 {-block \ - +client-header-tagger{ab2p-unblock-request-R1306} \ + +client-header-tagger{ab2p-unblock-request-R259} \ } -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/adserver.js?$domain=igougo.com|travelocity.com (easylistchina+easylist.txt: 58742) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/adserver\.js\? -# @@||drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1.0/pub/adserver.js?$domain=igougo.com|travelocity.com (easylist.txt: 48257) -.drf-global.com/servicegateway/globaltrips-shopping-svcs/drfadserver-1\.0/pub/adserver\.js\? +# @@||a.alimama.cn/tkapi$domain=ieeee.com (easylistchina.txt: 10108) +.a.alimama.cn/tkapi -#ab2p-unblock-request-R1307 +#ab2p-unblock-request-R260 {-block \ - +client-header-tagger{ab2p-unblock-request-R1307} \ + +client-header-tagger{ab2p-unblock-request-R260} \ } -# @@||igromania.ru/bitrix/templates/igromania/js/openxtag.js?$domain=igromania.ru (advblock.txt: 7310) -.igromania.ru/bitrix/templates/igromania/js/openxtag\.js\? - -#ab2p-unblock-request-R1309 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1309} \ -} -# @@/Public/ad/*$domain=ihold.cc (easylistchina+easylist.txt: 10053) +# @@/Public/ad/*$domain=ihold.cc (easylistchina.txt: 10035) /(.*/)?Public/ad/.* -#ab2p-unblock-request-R1310 +#ab2p-unblock-request-R261 {-block \ - +client-header-tagger{ab2p-unblock-request-R1310} \ + +client-header-tagger{ab2p-unblock-request-R261} \ } -# @@||hm.baidu.com^$domain=ihome99.com (easylistchina+easylist.txt: 10476) +# @@||hm.baidu.com^$domain=ihome99.com (easylistchina.txt: 10464) .hm.baidu.com -#ab2p-unblock-request-R1311 +#ab2p-unblock-request-R262 {-block \ - +client-header-tagger{ab2p-unblock-request-R1311} \ + +client-header-tagger{ab2p-unblock-request-R262} \ } -# @@/advertisement2.js$domain=ilive.to (easylistchina+easylist.txt: 59921) -/(.*/)?advertisement2\.js -advertisement2.js*. -# @@/advertisement2.js$domain=ilive.to (easylist.txt: 49436) -/(.*/)?advertisement2\.js -advertisement2.js*. - -#ab2p-unblock-request-R1314 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1314} \ -} -# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina+easylist.txt: 10007) +# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina.txt: 9992) /(.*/)?ADmediaJS/panda0305_1972_11454_12120_ -#ab2p-unblock-request-R1315 +#ab2p-unblock-request-R263 {-block \ - +client-header-tagger{ab2p-unblock-request-R1315} \ + +client-header-tagger{ab2p-unblock-request-R263} \ } -# @@||viroll.com^$popup,domain=imagebam.com|imgbox.com (easylistchina+easylist.txt: 61420) -.viroll.com -# @@||viroll.com^$popup,domain=imagebam.com|imgbox.com (easylist.txt: 50935) -.viroll.com - -#ab2p-unblock-request-R1317 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1317} \ -} -# @@||media-imdb.com^*/js/ads.js$domain=imdb.com (easylistchina+easylist.txt: 59148) -.media-imdb.com/.*/js/ads\.js -# @@||media-imdb.com^*/js/ads.js$domain=imdb.com (easylist.txt: 48663) -.media-imdb.com/.*/js/ads\.js - -#ab2p-unblock-request-R1319 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1319} \ -} -# @@||imhonet.ru/js/templates/views/tiles/m-tiles.advert.$domain=imhonet.ru (advblock.txt: 7315) -.imhonet.ru/js/templates/views/tiles/m-tiles\.advert\. -# @@/img/banner/*$domain=imhonet.ru (advblock.txt: 7203) -/(.*/)?img/banner/.* - -#ab2p-unblock-request-R1320 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1320} \ -} -# @@||b.inbox.lv/xmlcache/tvnet/index.html?ts=$domain=inbox.lv (advblock.txt: 7274) -.b.inbox.lv/xmlcache/tvnet/index\.html\?ts= -# @@||b.inbox.lv/bxlib/css/$domain=inbox.lv (advblock.txt: 7273) -.b.inbox.lv/bxlib/css/ - -#ab2p-unblock-request-R1324 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1324} \ -} -# @@||serve.vdopia.com/js/vdo.js$domain=indiatvnews.com|intoday.in (easylistchina+easylist.txt: 59515) -.serve.vdopia.com/js/vdo\.js -# @@||serve.vdopia.com/js/vdo.js$domain=indiatvnews.com|intoday.in (easylist.txt: 49030) -.serve.vdopia.com/js/vdo\.js - -#ab2p-unblock-request-R1326 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1326} \ -} -# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina+easylist.txt: 10022) +# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina.txt: 10006) /(.*/)?advertisement/.* -#ab2p-unblock-request-R1327 +#ab2p-unblock-request-R265 {-block \ - +client-header-tagger{ab2p-unblock-request-R1327} \ + +client-header-tagger{ab2p-unblock-request-R265} \ } -# @@||qnsr.com/cgi/r?$domain=insure.com (easylistchina+easylist.txt: 59426) -.qnsr.com/cgi/r\? -# @@||qnsr.com/cgi/r?$domain=insure.com (easylist.txt: 48941) -.qnsr.com/cgi/r\? - -#ab2p-unblock-request-R1328 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1328} \ -} -# @@||insys.pl/Scripts/InsysPlayer.*/adTest.png$domain=insys.pl (easylistchina+easylist.txt: 60423) -.insys.pl/Scripts/InsysPlayer\..*/adTest\.png -# @@||insys.pl/Scripts/InsysPlayer.*/adTest.png$domain=insys.pl (easylist.txt: 49938) -.insys.pl/Scripts/InsysPlayer\..*/adTest\.png - -#ab2p-unblock-request-R1330 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1330} \ -} -# @@||casino.com^*&affiliate=$popup,domain=internetcasinot.com (easylistchina+easylist.txt: 61406) -.casino.com/.*&affiliate= -# @@||casino.com^*&affiliate=$popup,domain=internetcasinot.com (easylist.txt: 50921) -.casino.com/.*&affiliate= - -#ab2p-unblock-request-R1334 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1334} \ -} -# @@||irr.ru/ajax/*/submission/get_cat$domain=irr.ru (advblock.txt: 7318) -.irr.ru/ajax/.*/submission/get_cat - -#ab2p-unblock-request-R1336 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1336} \ -} -# @@/adimg/*$domain=itools.cn|laniqu.com|tdx.com.cn|veryeast.cn (easylistchina+easylist.txt: 10005) -/(.*/)?adimg/.* - -#ab2p-unblock-request-R1337 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1337} \ -} -# @@||images.itreviews.com/*300x250_$domain=itreviews.com (easylistchina+easylist.txt: 61342) -.images.itreviews.com/.*300x250_ -# @@||images.itreviews.com/*300x250_$domain=itreviews.com (easylist.txt: 50857) -.images.itreviews.com/.*300x250_ - -#ab2p-unblock-request-R1338 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1338} \ -} -# @@||tom.itv.com/itv/tserver/size=$domain=itv.com (easylistchina+easylist.txt: 60810) -.tom.itv.com/itv/tserver/size= -# @@||tom.itv.com/crossdomain.xml$domain=itv.com (easylistchina+easylist.txt: 60809) -.tom.itv.com/crossdomain\.xml -# @@||content.aimatch.com/swfobject.js$domain=itv.com (easylistchina+easylist.txt: 58618) -.content.aimatch.com/swfobject\.js -# @@||tom.itv.com/itv/tserver/size=$domain=itv.com (easylist.txt: 50325) -.tom.itv.com/itv/tserver/size= -# @@||tom.itv.com/crossdomain.xml$domain=itv.com (easylist.txt: 50324) -.tom.itv.com/crossdomain\.xml -# @@||content.aimatch.com/swfobject.js$domain=itv.com (easylist.txt: 48133) -.content.aimatch.com/swfobject\.js - -#ab2p-unblock-request-R1341 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1341} \ -} -# @@||googlesyndication.com/pagead/show_ads.js$domain=izzylaif.com|trackitonline.ru (advblock.txt: 7573) -.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-request-R1345 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1345} \ -} -# @@||puhtml.com^*.js$domain=jav4.me (easylistchina+easylist.txt: 61773) -.puhtml.com/.*\.js -# @@||popads.net/pop.js$domain=jav4.me (easylistchina+easylist.txt: 61768) -.popads.net/pop\.js -# @@||juicyads.com/jac.js$domain=jav4.me (easylistchina+easylist.txt: 61755) -.juicyads.com/jac\.js -# @@||puhtml.com^*.js$domain=jav4.me (easylist.txt: 51288) -.puhtml.com/.*\.js -# @@||popads.net/pop.js$domain=jav4.me (easylist.txt: 51283) -.popads.net/pop\.js -# @@||juicyads.com/jac.js$domain=jav4.me (easylist.txt: 51270) -.juicyads.com/jac\.js - -#ab2p-unblock-request-R1347 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1347} \ -} -# @@||buysellads.com/ac/bsa.js$domain=jc-mp.com (easylistchina+easylist.txt: 60129) -.buysellads.com/ac/bsa\.js -# @@||buysellads.com/ac/bsa.js$domain=jc-mp.com (easylist.txt: 49644) -.buysellads.com/ac/bsa\.js - -#ab2p-unblock-request-R1348 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1348} \ -} -# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina+easylist.txt: 10130) +# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina.txt: 10114) .ad.3.cn/flags/mgets\? -# @@||360buyimg.com/ads/$domain=jd.com (easylistchina+easylist.txt: 10102) +# @@||360buyimg.com/ads/$domain=jd.com (easylistchina.txt: 10083) .360buyimg.com/ads/ -# @@||360buyimg.com/ad/$domain=jd.com (easylistchina+easylist.txt: 10101) +# @@||360buyimg.com/ad/$domain=jd.com (easylistchina.txt: 10082) .360buyimg.com/ad/ -# @@&ad_width=810&$domain=jd.com (easylistchina+easylist.txt: 9980) +# @@&ad_width=810&$domain=jd.com (easylistchina.txt: 9966) /.*&ad_width=810& -# @@&ad_width=590&$domain=jd.com (easylistchina+easylist.txt: 9979) +# @@&ad_width=590&$domain=jd.com (easylistchina.txt: 9965) /.*&ad_width=590& -#ab2p-unblock-request-R1351 +#ab2p-unblock-request-R267 {-block \ - +client-header-tagger{ab2p-unblock-request-R1351} \ + +client-header-tagger{ab2p-unblock-request-R267} \ } -# @@||serving-sys.com/BurstingPipe/adServer.bs?$popup,domain=jobamatic.com (easylistchina+easylist.txt: 61415) -.serving-sys.com/BurstingPipe/adServer\.bs\? -# @@||serving-sys.com/BurstingPipe/adServer.bs?$popup,domain=jobamatic.com (easylist.txt: 50930) -.serving-sys.com/BurstingPipe/adServer\.bs\? - -#ab2p-unblock-request-R1352 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1352} \ -} -# @@||joblib.ru/js/ads-$domain=joblib.ru (advblock.txt: 7319) -.joblib.ru/js/ads- - -#ab2p-unblock-request-R1355 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1355} \ -} -# @@||teasers.gs-media.de^$domain=joindota.com (advblock.txt: 7408) -.teasers.gs-media.de -# @@/teasers.$domain=joindota.com (advblock.txt: 7209) -/(.*/)?teasers\. -teasers.*. - -#ab2p-unblock-request-R1356 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1356} \ -} -# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina+easylist.txt: 10168) +# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina.txt: 10151) .allyes.com.cn/player/AllyesAdPlayerV1\.swf\? -#ab2p-unblock-request-R1357 +#ab2p-unblock-request-R268 {-block \ - +client-header-tagger{ab2p-unblock-request-R1357} \ + +client-header-tagger{ab2p-unblock-request-R268} \ } -# @@||kakprosto.ru/images/advertising/$domain=kakprosto.ru (advblock.txt: 7320) -.kakprosto.ru/images/advertising/ +# @@||js.adm.cnzz.net^$domain=keenfine.com|xoyo.com (easylistchina.txt: 10282) +.js.adm.cnzz.net -#ab2p-unblock-request-R1360 +#ab2p-unblock-request-R269 {-block \ - +client-header-tagger{ab2p-unblock-request-R1360} \ + +client-header-tagger{ab2p-unblock-request-R269} \ } -# @@||phncdn.com/v2/js/adblockdetect.js$domain=keezmovies.com (easylistchina+easylist.txt: 61765) -.phncdn.com/v2/js/adblockdetect\.js -# @@||phncdn.com/v2/js/adblockdetect.js$domain=keezmovies.com (easylist.txt: 51280) -.phncdn.com/v2/js/adblockdetect\.js +# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina.txt: 10460) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R270 +{-block \ + +client-header-tagger{ab2p-unblock-request-R270} \ +} +# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina.txt: 10283) +.kbcool.com/advpic/ + +#ab2p-unblock-request-R271 +{-block \ + +client-header-tagger{ab2p-unblock-request-R271} \ +} +# @@/adimg/*$domain=laniqu.com|veryeast.cn (easylistchina.txt: 9990) +/(.*/)?adimg/.* + +#ab2p-unblock-request-R272 +{-block \ + +client-header-tagger{ab2p-unblock-request-R272} \ +} +# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina.txt: 10313) +.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js + +#ab2p-unblock-request-R273 +{-block \ + +client-header-tagger{ab2p-unblock-request-R273} \ +} +# @@/adsame.$domain=liba.com|libaclub.com (easylistchina.txt: 9995) +/(.*/)?adsame\. +adsame.*. + +#ab2p-unblock-request-R274 +{-block \ + +client-header-tagger{ab2p-unblock-request-R274} \ +} +# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina.txt: 10369) +.stockstar.com/ad/ + +#ab2p-unblock-request-R275 +{-block \ + +client-header-tagger{ab2p-unblock-request-R275} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina.txt: 10469) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-request-R276 +{-block \ + +client-header-tagger{ab2p-unblock-request-R276} \ +} +# @@/adsbox.$domain=long7.qq.com (easylistchina.txt: 9996) +/(.*/)?adsbox\. +adsbox.*. + +#ab2p-unblock-request-R277 +{-block \ + +client-header-tagger{ab2p-unblock-request-R277} \ +} +# @@||csbew.com^$domain=longbl.com (easylistchina.txt: 10202) +.csbew.com + +#ab2p-unblock-request-R278 +{-block \ + +client-header-tagger{ab2p-unblock-request-R278} \ +} +# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina.txt: 9974) +/.*\.com/adv/ +.*.com/adv/ + +#ab2p-unblock-request-R279 +{-block \ + +client-header-tagger{ab2p-unblock-request-R279} \ +} +# @@|http://*/ad$domain=meiziweibo.com (easylistchina.txt: 10053) +/(.*/)?ad + +#ab2p-unblock-request-R280 +{-block \ + +client-header-tagger{ab2p-unblock-request-R280} \ +} +# @@/AdShow/*$domain=mndxy.org (easylistchina.txt: 9999) +/(.*/)?AdShow/.* + +#ab2p-unblock-request-R281 +{-block \ + +client-header-tagger{ab2p-unblock-request-R281} \ +} +# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina.txt: 10124) +.ad.unimhk.com/show\.php\? + +#ab2p-unblock-request-R282 +{-block \ + +client-header-tagger{ab2p-unblock-request-R282} \ +} +# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina.txt: 10164) +.bdimg.com/advert/js/advert\.js + +#ab2p-unblock-request-R283 +{-block \ + +client-header-tagger{ab2p-unblock-request-R283} \ +} +# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina.txt: 10045) +/.*=mywebloadt1& + +#ab2p-unblock-request-R284 +{-block \ + +client-header-tagger{ab2p-unblock-request-R284} \ +} +# @@/urchin.js$domain=on.cc (easylistchina.txt: 10449) +/(.*/)?urchin\.js +urchin.js*. + +#ab2p-unblock-request-R285 +{-block \ + +client-header-tagger{ab2p-unblock-request-R285} \ +} +# @@/ADImages/*$domain=p9.com.tw (easylistchina.txt: 9989) +/(.*/)?ADImages/.* + +#ab2p-unblock-request-R286 +{-block \ + +client-header-tagger{ab2p-unblock-request-R286} \ +} +# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina.txt: 10027) +/(.*/)?img/ad_ + +#ab2p-unblock-request-R287 +{-block \ + +client-header-tagger{ab2p-unblock-request-R287} \ +} +# @@/store_ad/*$domain=pcstore.com.tw (easylistchina.txt: 10039) +/(.*/)?store_ad/.* + +#ab2p-unblock-request-R288 +{-block \ + +client-header-tagger{ab2p-unblock-request-R288} \ +} +# @@/advert_$domain=pisen.com.cn|wb.qq.com (easylistchina.txt: 10001) +/(.*/)?advert_ + +#ab2p-unblock-request-R289 +{-block \ + +client-header-tagger{ab2p-unblock-request-R289} \ +} +# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina.txt: 9998) +/(.*/)?adsense/.* + +#ab2p-unblock-request-R290 +{-block \ + +client-header-tagger{ab2p-unblock-request-R290} \ +} +# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina.txt: 10185) +.cbjs.baidu.com/js/s\.js + +#ab2p-unblock-request-R291 +{-block \ + +client-header-tagger{ab2p-unblock-request-R291} \ +} +# @@?bannerId=$domain=qbao.com (easylistchina.txt: 10047) +/.*\?bannerId= + +#ab2p-unblock-request-R292 +{-block \ + +client-header-tagger{ab2p-unblock-request-R292} \ +} +# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina.txt: 10475) +.tajs.qq.com/stats\? + +#ab2p-unblock-request-R293 +{-block \ + +client-header-tagger{ab2p-unblock-request-R293} \ +} +# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina.txt: 10145) +.ads.rakuya.com.tw + +#ab2p-unblock-request-R294 +{-block \ + +client-header-tagger{ab2p-unblock-request-R294} \ +} +# @@/pub/ad/*$domain=ruten.com.tw (easylistchina.txt: 10034) +/(.*/)?pub/ad/.* + +#ab2p-unblock-request-R295 +{-block \ + +client-header-tagger{ab2p-unblock-request-R295} \ +} +# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina.txt: 10038) +/(.*/)?show_ads_impl\.js +# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina.txt: 10020) +/(.*/)?g\.doubleclick\.net\.js\? +# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina.txt: 9997) +/(.*/)?adsbygoogle\. +adsbygoogle.*. +# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina.txt: 9991) +/(.*/)?adlogger_tracker\.php + +#ab2p-unblock-request-R296 +{-block \ + +client-header-tagger{ab2p-unblock-request-R296} \ +} +# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina.txt: 10003) +/(.*/)?advertise/.* + +#ab2p-unblock-request-R297 +{-block \ + +client-header-tagger{ab2p-unblock-request-R297} \ +} +# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina.txt: 10472) +.sina.com.cn/iplookup/iplookup\.php\? + +#ab2p-unblock-request-R298 +{-block \ + +client-header-tagger{ab2p-unblock-request-R298} \ +} +# @@||gg.woniu.com^$domain=snail.com (easylistchina.txt: 10243) +.gg.woniu.com + +#ab2p-unblock-request-R299 +{-block \ + +client-header-tagger{ab2p-unblock-request-R299} \ +} +# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina.txt: 10462) +.googletagmanager.com/gtm\.js\? +# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina.txt: 10461) +.google-analytics.com/plugins/ua/linkid\.js + +#ab2p-unblock-request-R302 +{-block \ + +client-header-tagger{ab2p-unblock-request-R302} \ +} +# @@||alimama.com^$domain=tanx.com (easylistchina.txt: 10150) +.alimama.com +# @@/adx.$domain=tanx.com (easylistchina.txt: 10010) +/(.*/)?adx\. +adx.*. + +#ab2p-unblock-request-R303 +{-block \ + +client-header-tagger{ab2p-unblock-request-R303} \ +} +# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10467) +.opehs.tanx.com/ex\? +# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10457) +.ecpm.tanx.com/ex\? + +#ab2p-unblock-request-R304 +{-block \ + +client-header-tagger{ab2p-unblock-request-R304} \ +} +# @@||tdx.com.cn/images/*ad$domain=tdx.com.cn (easylistchina.txt: 10376) +.tdx.com.cn/images/.*ad + +#ab2p-unblock-request-R305 +{-block \ + +client-header-tagger{ab2p-unblock-request-R305} \ +} +# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina.txt: 10028) +/(.*/)?img_ad/.* #ab2p-unblock-request-R306 {-block \ +client-header-tagger{ab2p-unblock-request-R306} \ } -# @@||propellerads.com^*/adlogo/$domain=kissanime.com (easylistchina+easylist.txt: 61090) -.propellerads.com/.*/adlogo/ -# @@||game-advertising-online.com/img/icon_stoplight.jpg?$domain=kissanime.com (easylistchina+easylist.txt: 60332) -.game-advertising-online.com/img/icon_stoplight\.jpg\? -# @@||cpalead.com^$domain=kissanime.com (easylistchina+easylist.txt: 60185) -.cpalead.com -# @@||clicksor.net/images/$domain=kissanime.com (easylistchina+easylist.txt: 60164) -.clicksor.net/images/ -# @@||chango.com^*/adexchanger.png?$domain=kissanime.com (easylistchina+easylist.txt: 60146) -.chango.com/.*/adexchanger\.png\? -# @@||propellerads.com^*/adlogo/$domain=kissanime.com (easylist.txt: 50605) -.propellerads.com/.*/adlogo/ -# @@||game-advertising-online.com/img/icon_stoplight.jpg?$domain=kissanime.com (easylist.txt: 49847) -.game-advertising-online.com/img/icon_stoplight\.jpg\? -# @@||cpalead.com^$domain=kissanime.com (easylist.txt: 49700) -.cpalead.com -# @@||clicksor.net/images/$domain=kissanime.com (easylist.txt: 49679) -.clicksor.net/images/ -# @@||chango.com^*/adexchanger.png?$domain=kissanime.com (easylist.txt: 49661) -.chango.com/.*/adexchanger\.png\? +# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina.txt: 10315) +.partner.googleadservices.com/gpt/pubads_impl_ +# @@||ads.$domain=tvb.com (easylistchina.txt: 10142) +.ads.*. -#ab2p-unblock-request-R1365 +#ab2p-unblock-request-R308 {-block \ - +client-header-tagger{ab2p-unblock-request-R1365} \ + +client-header-tagger{ab2p-unblock-request-R308} \ } -# @@||doublerecall.com/scripts/application.js$domain=kissanime.com|kisscartoon.me (easylistchina+easylist.txt: 60232) -.doublerecall.com/scripts/application\.js -# @@||doublerecall.com/scripts/application.js$domain=kissanime.com|kisscartoon.me (easylist.txt: 49747) -.doublerecall.com/scripts/application\.js +# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina.txt: 10385) +.tw.m.yimg.com/res/ads/ -#ab2p-unblock-request-R1366 +#ab2p-unblock-request-R309 {-block \ - +client-header-tagger{ab2p-unblock-request-R1366} \ + +client-header-tagger{ab2p-unblock-request-R309} \ } -# @@.to/ads/$domain=kissanime.to (easylistchina+easylist.txt: 59911) -/.*\.to/ads/ -.*.to/ads/ -# @@.to/ads/$domain=kissanime.to (easylist.txt: 49426) -/.*\.to/ads/ -.*.to/ads/ +# @@||union.$domain=union.163.com (easylistchina.txt: 10390) +.union.*. -#ab2p-unblock-request-R1367 +#ab2p-unblock-request-R310 {-block \ - +client-header-tagger{ab2p-unblock-request-R1367} \ + +client-header-tagger{ab2p-unblock-request-R310} \ } -# @@||adverticum.net/static/js/$domain=kisscartoon.me (easylistchina+easylist.txt: 60031) -.adverticum.net/static/js/ -# @@||adverticum.net/static/js/$domain=kisscartoon.me (easylist.txt: 49546) -.adverticum.net/static/js/ +# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina.txt: 10362) +.sinaimg.cn/unipro/pub/suda_m_v629\.js -#ab2p-unblock-request-R1368 +#ab2p-unblock-request-R311 {-block \ - +client-header-tagger{ab2p-unblock-request-R1368} \ + +client-header-tagger{ab2p-unblock-request-R311} \ } -# @@/cgi-bin/banners/*$domain=km.ru (advblock.txt: 7197) -/(.*/)?cgi-bin/banners/.* +# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina.txt: 10144) +.ads.myopen.vip.com -#ab2p-unblock-request-R1369 +#ab2p-unblock-request-R313 {-block \ - +client-header-tagger{ab2p-unblock-request-R1369} \ + +client-header-tagger{ab2p-unblock-request-R313} \ } -# @@||player.tritondigital.com^$domain=kmozart.com (easylistchina+easylist.txt: 59390) -.player.tritondigital.com -# @@||player.tritondigital.com^$domain=kmozart.com (easylist.txt: 48905) -.player.tritondigital.com +# @@/AdImage/*$domain=wacom.tw (easylistchina.txt: 9988) +/(.*/)?AdImage/.* -#ab2p-unblock-request-R1371 +#ab2p-unblock-request-R314 {-block \ - +client-header-tagger{ab2p-unblock-request-R1371} \ + +client-header-tagger{ab2p-unblock-request-R314} \ } -# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina+easylist.txt: 10472) -.google-analytics.com/analytics\.js +# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina.txt: 10098) +.70e.com/js/2013_new\.js -#ab2p-unblock-request-R1372 +#ab2p-unblock-request-R315 {-block \ - +client-header-tagger{ab2p-unblock-request-R1372} \ + +client-header-tagger{ab2p-unblock-request-R315} \ } -# @@||kongcdn.com/game_icons/*-300x250_$domain=kongregate.com (easylistchina+easylist.txt: 59067) -.kongcdn.com/game_icons/.*-300x250_ -# @@||ngads.com/crossdomain.xml|$domain=kongregate.com (advblock.txt: 7345) -.ngads.com/crossdomain\.xml$ -# @@||kongcdn.com/game_icons/*-300x250_$domain=kongregate.com (easylist.txt: 48582) -.kongcdn.com/game_icons/.*-300x250_ +# @@/show_ad_$domain=wb.qq.com (easylistchina.txt: 10037) +/(.*/)?show_ad_ -#ab2p-unblock-request-R1374 +#ab2p-unblock-request-R316 {-block \ - +client-header-tagger{ab2p-unblock-request-R1374} \ + +client-header-tagger{ab2p-unblock-request-R316} \ } -# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina+easylist.txt: 10293) -.kbcool.com/advpic/ +# @@/LoadAds.$domain=webcars.com.cn (easylistchina.txt: 10030) +/(.*/)?LoadAds\. +LoadAds.*. -#ab2p-unblock-request-R1381 +#ab2p-unblock-request-R317 {-block \ - +client-header-tagger{ab2p-unblock-request-R1381} \ + +client-header-tagger{ab2p-unblock-request-R317} \ } -# @@/tizer_$domain=led66.ru (advblock.txt: 7212) -/(.*/)?tizer_ +# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina.txt: 10342) +.rm.sina.com.cn/minisite/ -#ab2p-unblock-request-R1384 +#ab2p-unblock-request-R318 {-block \ - +client-header-tagger{ab2p-unblock-request-R1384} \ + +client-header-tagger{ab2p-unblock-request-R318} \ } -# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina+easylist.txt: 10323) -.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js +# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina.txt: 10473) +.sinajs.cn/open/analytics/js/suda\.js -#ab2p-unblock-request-R1385 +#ab2p-unblock-request-R319 {-block \ - +client-header-tagger{ab2p-unblock-request-R1385} \ + +client-header-tagger{ab2p-unblock-request-R319} \ } -# @@/adsame.$domain=liba.com|libaclub.com (easylistchina+easylist.txt: 10010) -/(.*/)?adsame\. -adsame.*. +# @@||adsense.woso.cn^$domain=woso.cn (easylistchina.txt: 10146) +.adsense.woso.cn -#ab2p-unblock-request-R1387 +#ab2p-unblock-request-R320 {-block \ - +client-header-tagger{ab2p-unblock-request-R1387} \ + +client-header-tagger{ab2p-unblock-request-R320} \ } -# @@||adgear.com^*/adgear.js$domain=lifemadedelicious.ca|tac.tv (easylistchina+easylist.txt: 58198) -.adgear.com/.*/adgear\.js -# @@||adgear.com^*/adgear.js$domain=lifemadedelicious.ca|tac.tv (easylist.txt: 47713) -.adgear.com/.*/adgear\.js +# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina.txt: 10266) +.ifengimg.com/ifeng/sources/region_ +# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina.txt: 10265) +.ifengimg.com/ifeng/sources/inice_ -#ab2p-unblock-request-R1388 +#ab2p-unblock-request-R321 {-block \ - +client-header-tagger{ab2p-unblock-request-R1388} \ + +client-header-tagger{ab2p-unblock-request-R321} \ } -# @@||sascdn.com/diff/video/current/libs/js/controller.js$domain=ligtv.com.tr (easylistchina+easylist.txt: 61107) -.sascdn.com/diff/video/current/libs/js/controller\.js -# @@||sascdn.com/diff/video/current/libs/js/controller.js$domain=ligtv.com.tr (easylist.txt: 50622) -.sascdn.com/diff/video/current/libs/js/controller\.js +# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina.txt: 10471) +.simba.taobao.com/\?name=tcmad& -#ab2p-unblock-request-R1389 +#ab2p-unblock-request-R322 {-block \ - +client-header-tagger{ab2p-unblock-request-R1389} \ + +client-header-tagger{ab2p-unblock-request-R322} \ } -# @@||live.seenreport.com:82/media/js/fingerprint.js?$domain=live.geo.tv (easylistchina+easylist.txt: 59098) -.live.seenreport.com:82/media/js/fingerprint\.js\? -# @@||live.seenreport.com:82/media/js/ads_controller.js?$domain=live.geo.tv (easylistchina+easylist.txt: 59097) -.live.seenreport.com:82/media/js/ads_controller\.js\? -# @@||live.seenreport.com:82/media/js/fingerprint.js?$domain=live.geo.tv (easylist.txt: 48613) -.live.seenreport.com:82/media/js/fingerprint\.js\? -# @@||live.seenreport.com:82/media/js/ads_controller.js?$domain=live.geo.tv (easylist.txt: 48612) -.live.seenreport.com:82/media/js/ads_controller\.js\? +# @@&ad_type=$domain=x.jd.com (easylistchina.txt: 9964) +/.*&ad_type= -#ab2p-unblock-request-R1390 +#ab2p-unblock-request-R323 {-block \ - +client-header-tagger{ab2p-unblock-request-R1390} \ + +client-header-tagger{ab2p-unblock-request-R323} \ } -# @@||scity.tv/js/ads.js$domain=live.scity.tv (easylistchina+easylist.txt: 59495) -.scity.tv/js/ads\.js -# @@||scity.tv/js/ads.js$domain=live.scity.tv (easylist.txt: 49010) -.scity.tv/js/ads\.js +# @@/analytics.php?$domain=xcar.com.cn (easylistchina.txt: 10446) +/(.*/)?analytics\.php\? -#ab2p-unblock-request-R1391 +#ab2p-unblock-request-R324 {-block \ - +client-header-tagger{ab2p-unblock-request-R1391} \ + +client-header-tagger{ab2p-unblock-request-R324} \ } -# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina+easylist.txt: 10382) -.stockstar.com/ad/ - -#ab2p-unblock-request-R1395 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1395} \ -} -# @@||adotube.com/adapters/as3overstream*.swf?$domain=livestream.com (easylistchina+easylist.txt: 58214) -.adotube.com/adapters/as3overstream.*\.swf\? -# @@||adotube.com/adapters/as3overstream*.swf?$domain=livestream.com (easylist.txt: 47729) -.adotube.com/adapters/as3overstream.*\.swf\? - -#ab2p-unblock-request-R1396 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1396} \ -} -# @@||directorym.com/articles_media/$domain=localmarket.autismsupportnetwork.com (easylistchina+easylist.txt: 58674) -.directorym.com/articles_media/ -# @@||directorym.com/articles_media/$domain=localmarket.autismsupportnetwork.com (easylist.txt: 48189) -.directorym.com/articles_media/ - -#ab2p-unblock-request-R1397 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1397} \ -} -# @@||transitcard.ru/resources/js/informer.js|$domain=locator.transitcard.ru (advblock.txt: 7412) -.transitcard.ru/resources/js/informer\.js$ - -#ab2p-unblock-request-R1398 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1398} \ -} -# @@||advertise.bingads.microsoft.com/Includes/$domain=login.live.com (easylistchina+easylist.txt: 61226) -.advertise.bingads.microsoft.com/Includes/ -# @@||advertise.bingads.microsoft.com/Includes/$domain=login.live.com (easylist.txt: 50741) -.advertise.bingads.microsoft.com/Includes/ - -#ab2p-unblock-request-R1399 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1399} \ -} -# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina+easylist.txt: 10481) -.pingjs.qq.com/ping_tcss_ied\.js - -#ab2p-unblock-request-R1400 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1400} \ -} -# @@/adsbox.$domain=long7.qq.com (easylistchina+easylist.txt: 10011) -/(.*/)?adsbox\. -adsbox.*. - -#ab2p-unblock-request-R1401 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1401} \ -} -# @@||csbew.com^$domain=longbl.com (easylistchina+easylist.txt: 10218) -.csbew.com - -#ab2p-unblock-request-R1402 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1402} \ -} -# @@||loot.com/content/css/combo/advert_$domain=loot.com (easylistchina+easylist.txt: 59110) -.loot.com/content/css/combo/advert_ -# @@||loot.com/content/css/combo/advert_$domain=loot.com (easylist.txt: 48625) -.loot.com/content/css/combo/advert_ - -#ab2p-unblock-request-R1406 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1406} \ -} -# @@||adcreative.naver.com/ad3/js/min/da.m.min.js$domain=m.naver.com (easylistchina+easylist.txt: 58191) -.adcreative.naver.com/ad3/js/min/da\.m\.min\.js -# @@||adcreative.naver.com/ad3/js/min/da.m.min.js$domain=m.naver.com (easylist.txt: 47706) -.adcreative.naver.com/ad3/js/min/da\.m\.min\.js - -#ab2p-unblock-request-R1409 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1409} \ -} -# @@||medyanetads.com/ad.js$domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60511) -.medyanetads.com/ad\.js -# @@||admost.com/adx/js/admost.js$domain=mackolik.com|sahadan.com (easylistchina+easylist.txt: 60002) -.admost.com/adx/js/admost\.js -# @@||medyanetads.com/ad.js$domain=mackolik.com|sahadan.com (easylist.txt: 50026) -.medyanetads.com/ad\.js -# @@||admost.com/adx/js/admost.js$domain=mackolik.com|sahadan.com (easylist.txt: 49517) -.admost.com/adx/js/admost\.js - -#ab2p-unblock-request-R1410 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1410} \ -} -# @@||madyar.net/baners/$domain=madyar.net (advblock.txt: 7329) -.madyar.net/baners/ - -#ab2p-unblock-request-R1411 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1411} \ -} -# @@||google.com/ads/popudner/banner.jpg?$domain=magesy.be (easylistchina+easylist.txt: 60362) -.google.com/ads/popudner/banner\.jpg\? -# @@||popunder.ru/banners/$domain=magesy.be (easylistchina+easylist.txt: 59402) -.popunder.ru/banners/ -# @@||google.com/ads/popudner/banner.jpg?$domain=magesy.be (easylist.txt: 49877) -.google.com/ads/popudner/banner\.jpg\? -# @@||popunder.ru/banners/$domain=magesy.be (easylist.txt: 48917) -.popunder.ru/banners/ - -#ab2p-unblock-request-R1413 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1413} \ -} -# @@||msads.net/adbar/products/*/adbar.js$domain=mail.live.com (easylistchina+easylist.txt: 59197) -.msads.net/adbar/products/.*/adbar\.js -# @@||msads.net/adbar/products/*/adbar.js$domain=mail.live.com (easylist.txt: 48712) -.msads.net/adbar/products/.*/adbar\.js +# @@/addata.$domain=xdf.cn (easylistchina.txt: 9985) +/(.*/)?addata\. +addata.*. #ab2p-unblock-request-R325 {-block \ +client-header-tagger{ab2p-unblock-request-R325} \ } -# @@||imgsmail.ru^*/btn/adv/$domain=mail.ru (advblock.txt: 7314) -.imgsmail.ru/.*/btn/adv/ +# @@/adblock.js$domain=xingk.cc (easylistchina.txt: 9984) +/(.*/)?adblock\.js +adblock.js*. + +#ab2p-unblock-request-R326 +{-block \ + +client-header-tagger{ab2p-unblock-request-R326} \ +} +# @@/PIC/AD/*$domain=ybjk.com (easylistchina.txt: 10032) +/(.*/)?PIC/AD/.* #ab2p-unblock-request-R327 {-block \ +client-header-tagger{ab2p-unblock-request-R327} \ } -# @@||pagead2.googlesyndication.com/pagead/js/lidar.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 60627) -.pagead2.googlesyndication.com/pagead/js/lidar\.js -# @@||adzerk.net/ados.js$domain=majorleaguegaming.com (easylistchina+easylist.txt: 60035) -.adzerk.net/ados\.js -# @@.png?advertisement_$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59907) -/.*\.png\?advertisement_ -# @@.png?ad_banner=$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59906) -/.*\.png\?ad_banner= -# @@.gif?ad_banner=$domain=majorleaguegaming.com (easylistchina+easylist.txt: 59889) -/.*\.gif\?ad_banner= -# @@||pagead2.googlesyndication.com/pagead/js/lidar.js$domain=majorleaguegaming.com (easylist.txt: 50142) -.pagead2.googlesyndication.com/pagead/js/lidar\.js -# @@||adzerk.net/ados.js$domain=majorleaguegaming.com (easylist.txt: 49550) -.adzerk.net/ados\.js -# @@.png?advertisement_$domain=majorleaguegaming.com (easylist.txt: 49422) -/.*\.png\?advertisement_ -# @@.png?ad_banner=$domain=majorleaguegaming.com (easylist.txt: 49421) -/.*\.png\?ad_banner= -# @@.gif?ad_banner=$domain=majorleaguegaming.com (easylist.txt: 49404) -/.*\.gif\?ad_banner= - -#ab2p-unblock-request-R1415 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1415} \ -} -# @@||ad4.liverail.com/?compressed|$domain=majorleaguegaming.com|pbs.org|wikihow.com (easylistchina+easylist.txt: 58167) -.ad4.liverail.com/\?compressed$ -# @@||ad4.liverail.com/?compressed|$domain=majorleaguegaming.com|pbs.org|wikihow.com (easylist.txt: 47682) -.ad4.liverail.com/\?compressed$ - -#ab2p-unblock-request-R1417 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1417} \ -} -# @@||server.cpmstar.com/view.aspx?poolid=$domain=manga2u.co|newgrounds.com|xfire.com (easylistchina+easylist.txt: 59518) -.server.cpmstar.com/view\.aspx\?poolid= -# @@||server.cpmstar.com/view.aspx?poolid=$domain=manga2u.co|newgrounds.com|xfire.com (easylist.txt: 49033) -.server.cpmstar.com/view\.aspx\?poolid= - -#ab2p-unblock-request-R1418 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1418} \ -} -# @@||optimized-by.rubiconproject.com/a/$domain=manga2u.co|onemanga.me|pro-football-reference.com (easylistchina+easylist.txt: 60617) -.optimized-by.rubiconproject.com/a/ -# @@||optimized-by.rubiconproject.com/a/$domain=manga2u.co|onemanga.me|pro-football-reference.com (easylist.txt: 50132) -.optimized-by.rubiconproject.com/a/ - -#ab2p-unblock-request-R1419 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1419} \ -} -# @@||ads.rubiconproject.com/ad/$domain=mangasky.co (easylistchina+easylist.txt: 60017) -.ads.rubiconproject.com/ad/ -# @@||ads.rubiconproject.com/ad/$domain=mangasky.co (easylist.txt: 49532) -.ads.rubiconproject.com/ad/ - -#ab2p-unblock-request-R1421 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1421} \ -} -# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina+easylist.txt: 9988) -/.*\.com/adv/ -.*.com/adv/ - -#ab2p-unblock-request-R1426 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1426} \ -} -# @@||awaps.yandex.$domain=market.yandex.by|market.yandex.kz|market.yandex.ru|market.yandex.ua (advblock.txt: 7271) -.awaps.yandex.*. - -#ab2p-unblock-request-R1428 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1428} \ -} -# @@||v.fwmrm.net/*/AdManager.swf$domain=marthastewart.com|nbcsports.com (easylistchina+easylist.txt: 59738) -.v.fwmrm.net/.*/AdManager\.swf -# @@||v.fwmrm.net/*/AdManager.swf$domain=marthastewart.com|nbcsports.com (easylist.txt: 49253) -.v.fwmrm.net/.*/AdManager\.swf - -#ab2p-unblock-request-R1429 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1429} \ -} -# @@||player.grabnetworks.com^*/vox_300x250_inline.xml$domain=mavrixonline.com (easylistchina+easylist.txt: 61362) -.player.grabnetworks.com/.*/vox_300x250_inline\.xml -# @@||player.grabnetworks.com^*/vox_300x250_inline.xml$domain=mavrixonline.com (easylist.txt: 50877) -.player.grabnetworks.com/.*/vox_300x250_inline\.xml - -#ab2p-unblock-request-R1434 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1434} \ -} -# @@/crossdomain.xml|$domain=megogo.net|smotri.com|video.reset.ru (advblock.txt: 7534) -/(.*/)?crossdomain\.xml$ -crossdomain.xml - -#ab2p-unblock-request-R1435 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1435} \ -} -# @@|http://*/ad$domain=meiziweibo.com (easylistchina+easylist.txt: 10071) -/(.*/)?ad - -#ab2p-unblock-request-R1443 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1443} \ -} -# @@||meviodisplayads.com/adholder.php$domain=mevio.com (easylistchina+easylist.txt: 59171) -.meviodisplayads.com/adholder\.php -# @@||meviodisplayads.com/adholder.php$domain=mevio.com (easylist.txt: 48686) -.meviodisplayads.com/adholder\.php - -#ab2p-unblock-request-R1444 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1444} \ -} -# @@||mgts.ru/upload/images/ban$domain=mgts.ru (advblock.txt: 7337) -.mgts.ru/upload/images/ban - -#ab2p-unblock-request-R1445 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1445} \ -} -# @@||rackcdn.com/banners/default_coupon_banner.png$domain=michaels.com (easylistchina+easylist.txt: 59432) -.rackcdn.com/banners/default_coupon_banner\.png -# @@||rackcdn.com/banners/default_coupon_banner.png$domain=michaels.com (easylist.txt: 48947) -.rackcdn.com/banners/default_coupon_banner\.png - -#ab2p-unblock-request-R1446 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1446} \ -} -# @@||mvapublicstorage.microsoft.com/banners/$domain=microsoftvirtualacademy.com (easylistchina+easylist.txt: 59210) -.mvapublicstorage.microsoft.com/banners/ -# @@||mvapublicstorage.microsoft.com/banners/$domain=microsoftvirtualacademy.com (easylist.txt: 48725) -.mvapublicstorage.microsoft.com/banners/ - -#ab2p-unblock-request-R1449 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1449} \ -} -# @@||azvideo.asia^$domain=miwed.ru (advblock.txt: 683) -.azvideo.asia - -#ab2p-unblock-request-R1452 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1452} \ -} -# @@||ads.undertone.com/*&zoneid=$domain=mlbtraderumors.com (easylistchina+easylist.txt: 58271) -.ads.undertone.com/.*&zoneid= -# @@||ads.undertone.com/*&zoneid=$domain=mlbtraderumors.com (easylist.txt: 47786) -.ads.undertone.com/.*&zoneid= - -#ab2p-unblock-request-R1453 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1453} \ -} -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/*video$domain=mlssoccer.com (easylistchina+easylist.txt: 59279) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/.*video -# @@||oascentral.sumworld.com/realmedia/ads/adstream_sx.ads/*video$domain=mlssoccer.com (easylist.txt: 48794) -.oascentral.sumworld.com/realmedia/ads/adstream_sx\.ads/.*video - -#ab2p-unblock-request-R1454 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1454} \ -} -# @@||vcnt3rd.com/Scripts/adscript.js$domain=mma-core.com (easylistchina+easylist.txt: 60856) -.vcnt3rd.com/Scripts/adscript\.js -# @@||vcnt3rd.com/Scripts/adscript.js$domain=mma-core.com (easylist.txt: 50371) -.vcnt3rd.com/Scripts/adscript\.js - -#ab2p-unblock-request-R1455 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1455} \ -} -# @@||googlesyndication.com/pagead/show_ads.js$domain=mmoaddict.ru (advblock.txt: 7305) -.googlesyndication.com/pagead/show_ads\.js -# @@||googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=mmoaddict.ru (advblock.txt: 7304) -.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-request-R1456 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1456} \ -} -# @@/AdShow/*$domain=mndxy.org (easylistchina+easylist.txt: 10014) -/(.*/)?AdShow/.* - -#ab2p-unblock-request-R1457 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1457} \ -} -# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina+easylist.txt: 10140) -.ad.unimhk.com/show\.php\? - -#ab2p-unblock-request-R1458 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1458} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=mobinozer.com (easylistchina+easylist.txt: 60407) -.imasdk.googleapis.com/js/sdkloader/ima3\.js -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=mobinozer.com (easylist.txt: 49922) -.imasdk.googleapis.com/js/sdkloader/ima3\.js - -#ab2p-unblock-request-R1459 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1459} \ -} -# @@||mochiads.com/static/pub/swf/leaderboard.js$domain=mochigames.com (easylistchina+easylist.txt: 59188) -.mochiads.com/static/pub/swf/leaderboard\.js -# @@||mochiads.com/static/pub/swf/leaderboard.js$domain=mochigames.com (easylist.txt: 48703) -.mochiads.com/static/pub/swf/leaderboard\.js - -#ab2p-unblock-request-R1460 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1460} \ -} -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$domain=moevideo.net (advblock.txt: 7223) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-request-R1465 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1465} \ -} -# @@||partner.googleadservices.com/gampad/google_ads2.js$domain=motorcycle.com|mysoju.com|nedbank.co.za (easylistchina+easylist.txt: 59341) -.partner.googleadservices.com/gampad/google_ads2\.js -# @@||partner.googleadservices.com/gampad/google_ads2.js$domain=motorcycle.com|mysoju.com|nedbank.co.za (easylist.txt: 48856) -.partner.googleadservices.com/gampad/google_ads2\.js - -#ab2p-unblock-request-R1466 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1466} \ -} -# @@||inskinmedia.com^*/js/base/api/$domain=mousebreaker.com (easylistchina+easylist.txt: 59021) -.inskinmedia.com/.*/js/base/api/ -# @@||cdn.inskinmedia.com^*/ipcgame.js?$domain=mousebreaker.com (easylistchina+easylist.txt: 58566) -.cdn.inskinmedia.com/.*/ipcgame\.js\? -# @@||inskinmedia.com^*/js/base/api/$domain=mousebreaker.com (easylist.txt: 48536) -.inskinmedia.com/.*/js/base/api/ -# @@||cdn.inskinmedia.com^*/ipcgame.js?$domain=mousebreaker.com (easylist.txt: 48081) -.cdn.inskinmedia.com/.*/ipcgame\.js\? - -#ab2p-unblock-request-R1469 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1469} \ -} -# @@||bbelements.com/bb/bb_one2n.js$domain=moviezone.cz (easylistchina+easylist.txt: 60989) -.bbelements.com/bb/bb_one2n\.js -# @@||bbelements.com/bb/bb_one2n.js$domain=moviezone.cz (easylist.txt: 50504) -.bbelements.com/bb/bb_one2n\.js - -#ab2p-unblock-request-R1470 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1470} \ -} -# @@||mozilla.org/img/covehead/plugincheck/*/728_90/loading.png$domain=mozilla.org (easylistchina+easylist.txt: 61356) -.mozilla.org/img/covehead/plugincheck/.*/728_90/loading\.png -# @@||mozilla.org/img/covehead/plugincheck/*/728_90/loading.png$domain=mozilla.org (easylist.txt: 50871) -.mozilla.org/img/covehead/plugincheck/.*/728_90/loading\.png - -#ab2p-unblock-request-R1471 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1471} \ -} -# @@||adserver.adreactor.com/js/libcode1_noajax.js$domain=mp3clan.audio|mp3clan.com (easylistchina+easylist.txt: 60022) -.adserver.adreactor.com/js/libcode1_noajax\.js -# @@||adserver.adreactor.com/js/libcode1_noajax.js$domain=mp3clan.audio|mp3clan.com (easylist.txt: 49537) -.adserver.adreactor.com/js/libcode1_noajax\.js - -#ab2p-unblock-request-R1472 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1472} \ -} -# @@||ads1.msads.net^*/dapmsn.js$domain=msn.com (easylistchina+easylist.txt: 58280) -.ads1.msads.net/.*/dapmsn\.js -# @@||msads.net^*/dapmsn.js^$domain=msn.com (advblock.txt: 7339) -.msads.net/.*/dapmsn\.js[^\w%.-] -# @@||ads1.msads.net^*/dapmsn.js$domain=msn.com (easylist.txt: 47795) -.ads1.msads.net/.*/dapmsn\.js - -#ab2p-unblock-request-R1473 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1473} \ -} -# @@||mts.ru/upload/images/*_baner.$domain=mts.ru (advblock.txt: 7340) -.mts.ru/upload/images/.*_baner\. -# @@||adcast.ru/mtsweb?$domain=mts.ru (advblock.txt: 7224) -.adcast.ru/mtsweb\? - -#ab2p-unblock-request-R1474 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1474} \ -} -# @@||googlesyndication.com/favicon.ico$domain=multiup.org (easylistchina+easylist.txt: 60365) -.googlesyndication.com/favicon\.ico -# @@||googlesyndication.com/favicon.ico$domain=multiup.org (easylist.txt: 49880) -.googlesyndication.com/favicon\.ico - -#ab2p-unblock-request-R1476 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1476} \ -} -# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina+easylist.txt: 10180) -.bdimg.com/advert/js/advert\.js - -#ab2p-unblock-request-R1478 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1478} \ -} -# @@/adwolf.js$domain=muz.ru|retrofm.ru (advblock.txt: 7194) -/(.*/)?adwolf\.js -adwolf.js*. - -#ab2p-unblock-request-R1480 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1480} \ -} -# @@||nytimes.com/adx/images/ADS$domain=myaccount.nytimes.com (easylistchina+easylist.txt: 59265) -.nytimes.com/adx/images/ADS -# @@||nytimes.com/adx/images/ADS$domain=myaccount.nytimes.com (easylist.txt: 48780) -.nytimes.com/adx/images/ADS - -#ab2p-unblock-request-R1481 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1481} \ -} -# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina+easylist.txt: 10063) -/.*=mywebloadt1& - -#ab2p-unblock-request-R1483 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1483} \ -} -# @@||stats.g.doubleclick.net/dc.js$domain=native-instruments.com|nest.com|theheldrich.com (easylistchina+easylist.txt: 59592) -.stats.g.doubleclick.net/dc\.js -# @@||stats.g.doubleclick.net/dc.js$domain=native-instruments.com|nest.com|theheldrich.com (easylist.txt: 49107) -.stats.g.doubleclick.net/dc\.js - -#ab2p-unblock-request-R1484 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1484} \ -} -# @@||turner.com^*/ads/freewheel/js/fwjslib_1.1.js$domain=nba.com (easylistchina+easylist.txt: 59711) -.turner.com/.*/ads/freewheel/js/fwjslib_1\.1\.js -# @@||turner.com^*/ads/freewheel/js/fwjslib_1.1.js$domain=nba.com (easylist.txt: 49226) -.turner.com/.*/ads/freewheel/js/fwjslib_1\.1\.js - -#ab2p-unblock-request-R1487 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1487} \ -} -# @@||g.doubleclick.net/gampad/google_ads.js$domain=nedbank.co.za|nitrome.com|ticketek.com.ar (easylistchina+easylist.txt: 58854) -.g.doubleclick.net/gampad/google_ads\.js -# @@||g.doubleclick.net/gampad/google_ads.js$domain=nedbank.co.za|nitrome.com|ticketek.com.ar (easylist.txt: 48369) -.g.doubleclick.net/gampad/google_ads\.js - -#ab2p-unblock-request-R1492 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1492} \ -} -# @@||objects.tremormedia.com/embed/sjs/$domain=nfl.com (easylistchina+easylist.txt: 59286) -.objects.tremormedia.com/embed/sjs/ -# @@||nflcdn.com^*/scripts/global/ads.js$domain=nfl.com (easylistchina+easylist.txt: 59248) -.nflcdn.com/.*/scripts/global/ads\.js -# @@||nflcdn.com^*/adplayer.js$domain=nfl.com (easylistchina+easylist.txt: 59247) -.nflcdn.com/.*/adplayer\.js -# @@||objects.tremormedia.com/embed/sjs/$domain=nfl.com (easylist.txt: 48801) -.objects.tremormedia.com/embed/sjs/ -# @@||nflcdn.com^*/scripts/global/ads.js$domain=nfl.com (easylist.txt: 48763) -.nflcdn.com/.*/scripts/global/ads\.js -# @@||nflcdn.com^*/adplayer.js$domain=nfl.com (easylist.txt: 48762) -.nflcdn.com/.*/adplayer\.js - -#ab2p-unblock-request-R1493 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1493} \ -} -# @@||nic.ru/styles/advertising.css$domain=nic.ru (advblock.txt: 7347) -.nic.ru/styles/advertising\.css - -#ab2p-unblock-request-R1494 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1494} \ -} -# @@||nick.com/js/coda/nick/adrefresh.js$domain=nick.com (easylistchina+easylist.txt: 59251) -.nick.com/js/coda/nick/adrefresh\.js -# @@||nick.com/js/coda/nick/adrefresh.js$domain=nick.com (easylist.txt: 48766) -.nick.com/js/coda/nick/adrefresh\.js - -#ab2p-unblock-request-R1495 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1495} \ -} -# @@||9msn.com.au/share/com/adtrack/adtrack.js$domain=ninemsn.com.au (easylistchina+easylist.txt: 58136) -.9msn.com.au/share/com/adtrack/adtrack\.js -# @@||9msn.com.au/share/com/adtrack/adtrack.js$domain=ninemsn.com.au (easylist.txt: 47651) -.9msn.com.au/share/com/adtrack/adtrack\.js - -#ab2p-unblock-request-R1496 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1496} \ -} -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=nlfreevpn.com|oldapps.com (easylistchina+easylist.txt: 59335) -.pagead2.googlesyndication.com/pagead/show_ads\.js -# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=nlfreevpn.com|oldapps.com (easylist.txt: 48850) -.pagead2.googlesyndication.com/pagead/show_ads\.js - -#ab2p-unblock-request-R1497 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1497} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=nlfreevpn.com|oldapps.com|pattayaone.net|unlockpwd.com|uploadex.com (easylistchina+easylist.txt: 59331) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=nlfreevpn.com|oldapps.com|pattayaone.net|unlockpwd.com|uploadex.com (easylist.txt: 48846) -.pagead2.googlesyndication.com/pagead/js/.*/show_ads_impl\.js - -#ab2p-unblock-request-R1498 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1498} \ -} -# @@||wp.com/www.noobpreneur.com/wp-content/uploads/*-ad.jpg?resize=$domain=noobpreneur.com (easylistchina+easylist.txt: 59826) -.wp.com/www\.noobpreneur\.com/wp-content/uploads/.*-ad\.jpg\?resize= -# @@||wp.com/www.noobpreneur.com/wp-content/uploads/*-ad.jpg?resize=$domain=noobpreneur.com (easylist.txt: 49341) -.wp.com/www\.noobpreneur\.com/wp-content/uploads/.*-ad\.jpg\?resize= - -#ab2p-unblock-request-R1499 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1499} \ -} -# @@||emediate.se/eas?$domain=novatv.bg|tv2.dk|tv3.se|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61015) -.emediate.se/eas\? -# @@||emediate.se/eas?$domain=novatv.bg|tv2.dk|tv3.se|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50530) -.emediate.se/eas\? - -#ab2p-unblock-request-R1502 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1502} \ -} -# @@||nyt.com^*/dfp.js$domain=nytimes.com (easylistchina+easylist.txt: 59262) -.nyt.com/.*/dfp\.js -# @@||nyt.com^*/ad-view-manager.js$domain=nytimes.com (easylistchina+easylist.txt: 59261) -.nyt.com/.*/ad-view-manager\.js -# @@||nyt.com^*/ad-loader.js$domain=nytimes.com (easylistchina+easylist.txt: 59260) -.nyt.com/.*/ad-loader\.js -# @@||nyt.com^*/dfp.js$domain=nytimes.com (easylist.txt: 48777) -.nyt.com/.*/dfp\.js -# @@||nyt.com^*/ad-view-manager.js$domain=nytimes.com (easylist.txt: 48776) -.nyt.com/.*/ad-view-manager\.js -# @@||nyt.com^*/ad-loader.js$domain=nytimes.com (easylist.txt: 48775) -.nyt.com/.*/ad-loader\.js - -#ab2p-unblock-request-R1506 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1506} \ -} -# @@||gfsrv.net/ad/$domain=ogame.org|ogame.us (easylistchina+easylist.txt: 58875) -.gfsrv.net/ad/ -# @@||gfsrv.net/ad/$domain=ogame.org|ogame.us (easylist.txt: 48390) -.gfsrv.net/ad/ - -#ab2p-unblock-request-R1507 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1507} \ -} -# @@||exchange.buzzoola.com/crossdomain.xml$domain=ok.ru (advblock.txt: 7295) -.exchange.buzzoola.com/crossdomain\.xml -# @@||mail.ru/adi/2247?$domain=ok.ru (advblock.txt: 6837) -.mail.ru/adi/2247\? -# @@||mail.ru/adi/2174?$domain=ok.ru (advblock.txt: 6836) -.mail.ru/adi/2174\? - -#ab2p-unblock-request-R1509 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1509} \ -} -# @@||olcdn.net/ads1.js$domain=olweb.tv (easylistchina+easylist.txt: 60593) -.olcdn.net/ads1\.js -# @@||olcdn.net/ads1.js$domain=olweb.tv (easylist.txt: 50108) -.olcdn.net/ads1\.js - -#ab2p-unblock-request-R1510 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1510} \ -} -# @@/urchin.js$domain=on.cc (easylistchina+easylist.txt: 10462) -/(.*/)?urchin\.js -urchin.js*. - -#ab2p-unblock-request-R1511 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1511} \ -} -# @@||adroll.com/j/roundtrip.js$domain=onehourtranslation.com (easylistchina+easylist.txt: 58218) -.adroll.com/j/roundtrip\.js -# @@||adroll.com/j/roundtrip.js$domain=onehourtranslation.com (easylist.txt: 47733) -.adroll.com/j/roundtrip\.js - -#ab2p-unblock-request-R1512 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1512} \ -} -# @@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=online-che.tv|online-domashniy.tv|online-match.tv|online-ntv.tv|online-perviy.tv|online-ren.tv|online-rossiya1.tv|online-rossiya24.tv|online-sts.tv|online-tnt.tv|online-tv3.tv|online-tvc.tv|online-u.tv|online-zvezda.tv (advblock.txt: 7313) -.imasdk.googleapis.com/js/sdkloader/ima3\.js - -#ab2p-unblock-request-R1513 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1513} \ -} -# @@||online.ua/adsence.js|$domain=online.ua (advblock.txt: 7589) -.online.ua/adsence\.js$ - -#ab2p-unblock-request-R1515 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1515} \ -} -# @@||smartadserver.com/config.js?nwid=$domain=onvasortir.com (easylistchina+easylist.txt: 60749) -.smartadserver.com/config\.js\?nwid= -# @@||sascdn.com/diff/js/smart.js$domain=onvasortir.com (easylistchina+easylist.txt: 60715) -.sascdn.com/diff/js/smart\.js -# @@||smartadserver.com/config.js?nwid=$domain=onvasortir.com (easylist.txt: 50264) -.smartadserver.com/config\.js\?nwid= -# @@||sascdn.com/diff/js/smart.js$domain=onvasortir.com (easylist.txt: 50230) -.sascdn.com/diff/js/smart\.js - -#ab2p-unblock-request-R1520 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1520} \ -} -# @@||netdna-cdn.com^*/OpenX/$domain=openx.com (easylistchina+easylist.txt: 61221) -.netdna-cdn.com/.*/OpenX/ -# @@||netdna-cdn.com^*/OpenX/$domain=openx.com (easylist.txt: 50736) -.netdna-cdn.com/.*/OpenX/ - -#ab2p-unblock-request-R1522 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1522} \ -} -# @@||longtailvideo.com/5/adtvideo/adtvideo.js$domain=ostrow24.tv (easylistchina+easylist.txt: 61058) -.longtailvideo.com/5/adtvideo/adtvideo\.js -# @@||longtailvideo.com/5/adtvideo/adtvideo.js$domain=ostrow24.tv (easylist.txt: 50573) -.longtailvideo.com/5/adtvideo/adtvideo\.js - -#ab2p-unblock-request-R1523 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1523} \ -} -# @@||longtailvideo.com/5/adttext/adttext.js$domain=ostrow24.tv|yuvutu.com (easylistchina+easylist.txt: 61057) -.longtailvideo.com/5/adttext/adttext\.js -# @@||longtailvideo.com/5/adttext/adttext.js$domain=ostrow24.tv|yuvutu.com (easylist.txt: 50572) -.longtailvideo.com/5/adttext/adttext\.js - -#ab2p-unblock-request-R1524 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1524} \ -} -# @@||pladform.ru/player/ads.js?$domain=out.pladform.ru (advblock.txt: 7358) -.pladform.ru/player/ads\.js\? - -#ab2p-unblock-request-R1525 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1525} \ -} -# @@||liverail.com^*/admanager.swf|$domain=own3d.tv (advblock.txt: 7580) -.liverail.com/.*/admanager\.swf$ - -#ab2p-unblock-request-R1526 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1526} \ -} -# @@||ozerskzone.ru/ads/$domain=ozerskzone.ru (advblock.txt: 7352) -.ozerskzone.ru/ads/ - -#ab2p-unblock-request-R1527 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1527} \ -} -# @@/ADImages/*$domain=p9.com.tw (easylistchina+easylist.txt: 10004) -/(.*/)?ADImages/.* - -#ab2p-unblock-request-R1528 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1528} \ -} -# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina+easylist.txt: 10045) -/(.*/)?img/ad_ - -#ab2p-unblock-request-R1530 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1530} \ -} -# @@||paste.org/style/adframe.js$domain=paste.org (advblock.txt: 7590) -.paste.org/style/adframe\.js - -#ab2p-unblock-request-R1534 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1534} \ -} -# @@||sponsorselect.com/Direct/SponsorIndex.aspx$domain=pch.com (easylistchina+easylist.txt: 59567) -.sponsorselect.com/Direct/SponsorIndex\.aspx -# @@||optimatic.com/shell.js$domain=pch.com (easylistchina+easylist.txt: 59307) -.optimatic.com/shell\.js -# @@||sponsorselect.com/Direct/SponsorIndex.aspx$domain=pch.com (easylist.txt: 49082) -.sponsorselect.com/Direct/SponsorIndex\.aspx -# @@||optimatic.com/shell.js$domain=pch.com (easylist.txt: 48822) -.optimatic.com/shell\.js - -#ab2p-unblock-request-R1535 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1535} \ -} -# @@/store_ad/*$domain=pcstore.com.tw (easylistchina+easylist.txt: 10057) -/(.*/)?store_ad/.* - -#ab2p-unblock-request-R1536 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1536} \ -} -# @@||pdrs.dp.ua/images/rek/$domain=pdrs.dp.ua (advblock.txt: 7353) -.pdrs.dp.ua/images/rek/ - -#ab2p-unblock-request-R1540 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1540} \ -} -# @@||doubleclick.net/click%$popup,domain=people.com|time.com (easylistchina+easylist.txt: 61408) -.doubleclick.net/click% -# @@||doubleclick.net/click%$popup,domain=people.com|time.com (easylist.txt: 50923) -.doubleclick.net/click% - -#ab2p-unblock-request-R1541 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1541} \ -} -# @@||ru/banner/$domain=peretz.ru|rzd.ru|svyaznoy.ru|whiskas.ru (advblock.txt: 7379) - -#ab2p-unblock-request-R1542 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1542} \ -} -# @@||johnston.grapeshot.co.uk^$domain=peterboroughtoday.co.uk (easylistchina+easylist.txt: 59047) -.johnston.grapeshot.co.uk -# @@||johnston.grapeshot.co.uk^$domain=peterboroughtoday.co.uk (easylist.txt: 48562) -.johnston.grapeshot.co.uk - -#ab2p-unblock-request-R1543 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1543} \ -} -# @@||pgpru.com^*/files?get=$domain=pgpru.com (advblock.txt: 7355) -.pgpru.com/.*/files\?get= - -#ab2p-unblock-request-R379 -{-block \ - +client-header-tagger{ab2p-unblock-request-R379} \ -} -# @@||print.io^$domain=photobucket.com (easylistchina+easylist.txt: 45894) -.print.io -# @@||print.io^$domain=photobucket.com (easylist.txt: 35409) -.print.io - -#ab2p-unblock-request-R1544 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1544} \ -} -# @@||photodoska.ru/content/dynamic/ads/$domain=photodoska.ru (advblock.txt: 7356) -.photodoska.ru/content/dynamic/ads/ - -#ab2p-unblock-request-R1545 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1545} \ -} -# @@||longtailvideo.com^*/gapro.js$domain=physorg.com (easylistchina+easylist.txt: 59109) -.longtailvideo.com/.*/gapro\.js -# @@||longtailvideo.com^*/gapro.js$domain=physorg.com (easylist.txt: 48624) -.longtailvideo.com/.*/gapro\.js - -#ab2p-unblock-request-R1547 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1547} \ -} -# @@||ff.connextra.com^$domain=pinnaclesports.com (easylistchina+easylist.txt: 58820) -.ff.connextra.com -# @@||ff.connextra.com^$domain=pinnaclesports.com (easylist.txt: 48335) -.ff.connextra.com - -#ab2p-unblock-request-R1548 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1548} \ -} -# @@/Advert_$domain=pisen.com.cn (easylistchina+easylist.txt: 10016) -/(.*/)?Advert_ - -#ab2p-unblock-request-R1549 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1549} \ -} -# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina+easylist.txt: 10013) -/(.*/)?adsense/.* - -#ab2p-unblock-request-R1550 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1550} \ -} -# @@||videocore.tv^*/advert1.js$domain=piter.tv (advblock.txt: 7605) -.videocore.tv/.*/advert1\.js - -#ab2p-unblock-request-R1552 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1552} \ -} -# @@||adbooth.net/src/js/min/adbooth_ajax.js?*&width=300&height=250$domain=planetatvonlinehd.blogspot.com.ar (easylistchina+easylist.txt: 59989) -.adbooth.net/src/js/min/adbooth_ajax\.js\?.*&width=300&height=250 -# @@||adbooth.net/src/js/min/adbooth_ajax.js?*&width=300&height=250$domain=planetatvonlinehd.blogspot.com.ar (easylist.txt: 49504) -.adbooth.net/src/js/min/adbooth_ajax\.js\?.*&width=300&height=250 - -#ab2p-unblock-request-R1553 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1553} \ -} -# @@||edgekey.net^*/advertisement.js$domain=play.spotify.com (easylistchina+easylist.txt: 60245) -.edgekey.net/.*/advertisement\.js -# @@||edgekey.net^*/advertisement.js$domain=play.spotify.com (easylist.txt: 49760) -.edgekey.net/.*/advertisement\.js - -#ab2p-unblock-request-R1554 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1554} \ -} -# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina+easylist.txt: 10201) -.cbjs.baidu.com/js/s\.js - -#ab2p-unblock-request-R1558 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1558} \ -} -# @@||pubmatic.com/AdServer/js/universalpixel.js$domain=politico.com (easylistchina+easylist.txt: 59420) -.pubmatic.com/AdServer/js/universalpixel\.js -# @@||pubmatic.com/AdServer/js/universalpixel.js$domain=politico.com (easylist.txt: 48935) -.pubmatic.com/AdServer/js/universalpixel\.js - -#ab2p-unblock-request-R1559 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1559} \ -} -# @@||pollen.vc/views/ads.html$domain=pollen.vc (easylistchina+easylist.txt: 59397) -.pollen.vc/views/ads\.html -# @@||pollen.vc/views/ads.html$domain=pollen.vc (easylist.txt: 48912) -.pollen.vc/views/ads\.html - -#ab2p-unblock-request-R1561 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1561} \ -} -# @@||popularmechanics.com/ams/page-ads.js$domain=popularmechanics.com (easylistchina+easylist.txt: 59401) -.popularmechanics.com/ams/page-ads\.js -# @@||popularmechanics.com/ams/page-ads.js$domain=popularmechanics.com (easylist.txt: 48916) -.popularmechanics.com/ams/page-ads\.js - -#ab2p-unblock-request-R392 -{-block \ - +client-header-tagger{ab2p-unblock-request-R392} \ -} -# @@||pornhublive.com/?AFNO=$popup,domain=pornhub.com (easylistchina+easylist.txt: 61795) -.pornhublive.com/\?AFNO= -# @@&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box$popup,domain=pornhub.com (easylistchina+easylist.txt: 61789) -/.*&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box -# @@||pornhublive.com/?AFNO=$popup,domain=pornhub.com (easylist.txt: 51310) -.pornhublive.com/\?AFNO= -# @@&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box$popup,domain=pornhub.com (easylist.txt: 51304) -/.*&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box - -#ab2p-unblock-request-R393 -{-block \ - +client-header-tagger{ab2p-unblock-request-R393} \ -} -# @@||disquscdn.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61480) -.disquscdn.com/count\.js -# @@||disqus.com/embed.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61479) -.disqus.com/embed\.js -# @@||disqus.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylistchina+easylist.txt: 61478) -.disqus.com/count\.js -# @@||disquscdn.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50995) -.disquscdn.com/count\.js -# @@||disqus.com/embed.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50994) -.disqus.com/embed\.js -# @@||disqus.com/count.js$domain=pornhub.com|redtube.com|redtube.com.br|tube8.com|tube8.es|tube8.fr|youporn.com|youporngay.com (easylist.txt: 50993) -.disqus.com/count\.js - -#ab2p-unblock-request-R1563 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1563} \ -} -# @@||porsche.com^*/teaser.js$domain=porsche.com (advblock.txt: 7362) -.porsche.com/.*/teaser\.js - -#ab2p-unblock-request-R1564 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1564} \ -} -# @@||powerwatch.pw/pop.js$domain=powerwatch.pw (easylistchina+easylist.txt: 60661) -.powerwatch.pw/pop\.js -# @@||powerwatch.pw/pop.js$domain=powerwatch.pw (easylist.txt: 50176) -.powerwatch.pw/pop\.js - -#ab2p-unblock-request-R1565 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1565} \ -} -# @@||praca.by/files/adv/index-logos/$domain=praca.by (advblock.txt: 7363) -.praca.by/files/adv/index-logos/ - -#ab2p-unblock-request-R1566 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1566} \ -} -# @@||anyvan.com/send-goods-api/$domain=preloved.co.uk (easylistchina+easylist.txt: 58408) -.anyvan.com/send-goods-api/ -# @@||anyvan.com/send-goods-api/$domain=preloved.co.uk (easylist.txt: 47923) -.anyvan.com/send-goods-api/ - -#ab2p-unblock-request-R1568 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1568} \ -} -# @@||ajax.googleapis.com/ajax/libs/jquery/$domain=primewire.ag (easylistchina+easylist.txt: 45884) -.ajax.googleapis.com/ajax/libs/jquery/ -# @@||ajax.googleapis.com/ajax/libs/jquery/$domain=primewire.ag (easylist.txt: 35399) -.ajax.googleapis.com/ajax/libs/jquery/ - -#ab2p-unblock-request-R1570 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1570} \ -} -# @@||prodaj.pl/adv/$domain=prodaj.pl (advblock.txt: 7365) -.prodaj.pl/adv/ - -#ab2p-unblock-request-R402 -{-block \ - +client-header-tagger{ab2p-unblock-request-R402} \ -} -# @@||platform.twitter.com/widgets.js$domain=promptfile.com (easylistchina+easylist.txt: 45868) -.platform.twitter.com/widgets\.js -# @@||addthis.com/url/shares.json$domain=promptfile.com (easylistchina+easylist.txt: 45864) -.addthis.com/url/shares\.json -# @@||platform.twitter.com/widgets.js$domain=promptfile.com (easylist.txt: 35383) -.platform.twitter.com/widgets\.js -# @@||addthis.com/url/shares.json$domain=promptfile.com (easylist.txt: 35379) -.addthis.com/url/shares\.json - -#ab2p-unblock-request-R1572 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1572} \ -} -# @@||publisher.adservice.com^$domain=publisher.adservice.com (easylistchina+easylist.txt: 61297) -.publisher.adservice.com -# @@||publisher.adservice.com^$domain=publisher.adservice.com (easylist.txt: 50812) -.publisher.adservice.com - -#ab2p-unblock-request-R1573 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1573} \ -} -# @@||banner.pumpkinpatchkids.com/www/delivery/$domain=pumpkinpatch.co.nz|pumpkinpatch.co.uk|pumpkinpatch.com|pumpkinpatch.com.au (easylistchina+easylist.txt: 58472) -.banner.pumpkinpatchkids.com/www/delivery/ -# @@||banner.pumpkinpatchkids.com/www/delivery/$domain=pumpkinpatch.co.nz|pumpkinpatch.co.uk|pumpkinpatch.com|pumpkinpatch.com.au (easylist.txt: 47987) -.banner.pumpkinpatchkids.com/www/delivery/ - -#ab2p-unblock-request-R403 -{-block \ - +client-header-tagger{ab2p-unblock-request-R403} \ -} -# @@||thefile.me^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61419) -.thefile.me -# @@||streamin.to^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61418) -.streamin.to -# @@||sharesix.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61417) -.sharesix.com -# @@||sharerepo.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61416) -.sharerepo.com -# @@||nosvideo.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61414) -.nosvideo.com -# @@||cloudzilla.to^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61407) -.cloudzilla.to -# @@||bestreams.net^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61404) -.bestreams.net -# @@||thefile.me^$popup,domain=putlocker.is (easylist.txt: 50934) -.thefile.me -# @@||streamin.to^$popup,domain=putlocker.is (easylist.txt: 50933) -.streamin.to -# @@||sharesix.com^$popup,domain=putlocker.is (easylist.txt: 50932) -.sharesix.com -# @@||sharerepo.com^$popup,domain=putlocker.is (easylist.txt: 50931) -.sharerepo.com -# @@||nosvideo.com^$popup,domain=putlocker.is (easylist.txt: 50929) -.nosvideo.com -# @@||cloudzilla.to^$popup,domain=putlocker.is (easylist.txt: 50922) -.cloudzilla.to -# @@||bestreams.net^$popup,domain=putlocker.is (easylist.txt: 50919) -.bestreams.net - -#ab2p-unblock-request-R1574 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1574} \ -} -# @@?bannerId=$domain=qbao.com (easylistchina+easylist.txt: 10065) -/.*\?bannerId= - -#ab2p-unblock-request-R1577 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1577} \ -} -# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina+easylist.txt: 10487) -.tajs.qq.com/stats\? - -#ab2p-unblock-request-R1578 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1578} \ -} -# @@||quantcast.com/advertise$domain=quantcast.com (easylistchina+easylist.txt: 61203) -.quantcast.com/advertise -# @@||quantcast.com/advertise$domain=quantcast.com (easylist.txt: 50718) -.quantcast.com/advertise - -#ab2p-unblock-request-R1579 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1579} \ -} -# @@||qzprod.files.wordpress.com^*?w=$domain=qz.com (easylistchina+easylist.txt: 59429) -.qzprod.files.wordpress.com/.*\?w= -# @@||qzprod.files.wordpress.com^*?w=$domain=qz.com (easylist.txt: 48944) -.qzprod.files.wordpress.com/.*\?w= - -#ab2p-unblock-request-R1583 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1583} \ -} -# @@/advertise.js|$domain=raketa-tv.com (advblock.txt: 7529) -/(.*/)?advertise\.js$ -advertise.js - -#ab2p-unblock-request-R1584 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1584} \ -} -# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina+easylist.txt: 10161) -.ads.rakuya.com.tw - -#ab2p-unblock-request-R1585 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1585} \ -} -# @@||rcm-images.amazon.com/images/$domain=rankbank.net (easylistchina+easylist.txt: 59443) -.rcm-images.amazon.com/images/ -# @@||rcm-images.amazon.com/images/$domain=rankbank.net (easylist.txt: 48958) -.rcm-images.amazon.com/images/ - -#ab2p-unblock-request-R1589 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1589} \ -} -# @@||redtubeplatinum.com/track/*/join?$popup,domain=redtube.com (easylistchina+easylist.txt: 61798) -.redtubeplatinum.com/track/.*/join\? -# @@||redtubeplatinum.com/signup/signup.php$popup,domain=redtube.com (easylistchina+easylist.txt: 61797) -.redtubeplatinum.com/signup/signup\.php -# @@||redtubelive.com/?AFNO=$popup,domain=redtube.com (easylistchina+easylist.txt: 61796) -.redtubelive.com/\?AFNO= -# @@||redtubeplatinum.com/track/*/join?$popup,domain=redtube.com (easylist.txt: 51313) -.redtubeplatinum.com/track/.*/join\? -# @@||redtubeplatinum.com/signup/signup.php$popup,domain=redtube.com (easylist.txt: 51312) -.redtubeplatinum.com/signup/signup\.php -# @@||redtubelive.com/?AFNO=$popup,domain=redtube.com (easylist.txt: 51311) -.redtubelive.com/\?AFNO= - -#ab2p-unblock-request-R1590 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1590} \ -} -# @@||d1sp6mwzi1jpx1.cloudfront.net^*/advertisement_min.js$domain=reelkandi.com (easylistchina+easylist.txt: 58640) -.d1sp6mwzi1jpx1.cloudfront.net/.*/advertisement_min\.js -# @@||d1sp6mwzi1jpx1.cloudfront.net^*/advertisement_min.js$domain=reelkandi.com (easylist.txt: 48155) -.d1sp6mwzi1jpx1.cloudfront.net/.*/advertisement_min\.js - -#ab2p-unblock-request-R1591 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1591} \ -} -# @@||ads.reempresa.org^$popup,domain=reempresa.org (easylistchina+easylist.txt: 61398) -.ads.reempresa.org -# @@||ads.reempresa.org^$domain=reempresa.org (easylistchina+easylist.txt: 58259) -.ads.reempresa.org -# @@||ads.reempresa.org^$popup,domain=reempresa.org (easylist.txt: 50913) -.ads.reempresa.org -# @@||ads.reempresa.org^$domain=reempresa.org (easylist.txt: 47774) -.ads.reempresa.org - -#ab2p-unblock-request-R1592 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1592} \ -} -# @@/reklama.$domain=reklama.com.ua|reklama.marat.ua|reklama.rambler.ru (advblock.txt: 7205) -/(.*/)?reklama\. -reklama.*. - -#ab2p-unblock-request-R1593 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1593} \ -} -# @@||remoteshaman.com/templates/*/ads.js|$domain=remoteshaman.com (advblock.txt: 7372) -.remoteshaman.com/templates/.*/ads\.js$ - -#ab2p-unblock-request-R1594 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1594} \ -} -# @@||renault.ru/_beta/banner_system/banner.php$domain=renault.ru (advblock.txt: 7373) -.renault.ru/_beta/banner_system/banner\.php - -#ab2p-unblock-request-R414 -{-block \ - +client-header-tagger{ab2p-unblock-request-R414} \ -} -# @@||reuters.tv/syndicatedPlayerClient/js/advertisement.js$domain=reuters.com (easylistchina+easylist.txt: 59456) -.reuters.tv/syndicatedPlayerClient/js/advertisement\.js -# @@||reuters.tv/syndicatedPlayerClient/js/advertisement.js$domain=reuters.com (easylist.txt: 48971) -.reuters.tv/syndicatedPlayerClient/js/advertisement\.js - -#ab2p-unblock-request-R1596 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1596} \ -} -# @@/adfox.reload_code.$domain=rg.ru (advblock.txt: 7183) -/(.*/)?adfox\.reload_code\. - -#ab2p-unblock-request-R1597 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1597} \ -} -# @@||iplsc.com^*/inpl.box.ad.js$domain=rmf24.pl (easylistchina+easylist.txt: 61045) -.iplsc.com/.*/inpl\.box\.ad\.js -# @@||iplsc.com^*/inpl.box.ad.js$domain=rmf24.pl (easylist.txt: 50560) -.iplsc.com/.*/inpl\.box\.ad\.js - -#ab2p-unblock-request-R1600 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1600} \ -} -# @@||longtailvideo.com/flowplayer/ova-*.swf$domain=rosemaryconley.tv (easylistchina+easylist.txt: 59108) -.longtailvideo.com/flowplayer/ova-.*\.swf -# @@||longtailvideo.com/flowplayer/ova-*.swf$domain=rosemaryconley.tv (easylist.txt: 48623) -.longtailvideo.com/flowplayer/ova-.*\.swf - -#ab2p-unblock-request-R1602 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1602} \ -} -# @@/upload/banners/*$domain=rossa-m.ru|travelata.ru (advblock.txt: 7213) -/(.*/)?upload/banners/.* - -#ab2p-unblock-request-R1603 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1603} \ -} -# @@||rottentomatoescdn.com^*/SocialAds.js$domain=rottentomatoes.com (easylistchina+easylist.txt: 59469) -.rottentomatoescdn.com/.*/SocialAds\.js -# @@||rottentomatoescdn.com^*/SocialAds.js$domain=rottentomatoes.com (easylist.txt: 48984) -.rottentomatoescdn.com/.*/SocialAds\.js - -#ab2p-unblock-request-R1604 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1604} \ -} -# @@||zedo.com/jsc/c5/fhs.js$domain=rrstar.com (easylistchina+easylist.txt: 59874) -.zedo.com/jsc/c5/fhs\.js -# @@||zedo.com/jsc/c5/fhs.js$domain=rrstar.com (easylist.txt: 49389) -.zedo.com/jsc/c5/fhs\.js - -#ab2p-unblock-request-R1605 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1605} \ -} -# @@||doubleclick.net/xbbe/creative/vast?$domain=rte.ie (easylistchina+easylist.txt: 60229) -.doubleclick.net/xbbe/creative/vast\? -# @@||g.doubleclick.net/gampad/ads?adk$domain=rte.ie (easylistchina+easylist.txt: 58853) -.g.doubleclick.net/gampad/ads\?adk -# @@||2mdn.net/crossdomain.xml$domain=rte.ie (easylistchina+easylist.txt: 58120) -.2mdn.net/crossdomain\.xml -# @@||doubleclick.net/xbbe/creative/vast?$domain=rte.ie (easylist.txt: 49744) -.doubleclick.net/xbbe/creative/vast\? -# @@||g.doubleclick.net/gampad/ads?adk$domain=rte.ie (easylist.txt: 48368) -.g.doubleclick.net/gampad/ads\?adk -# @@||2mdn.net/crossdomain.xml$domain=rte.ie (easylist.txt: 47635) -.2mdn.net/crossdomain\.xml - -#ab2p-unblock-request-R1607 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1607} \ -} -# @@||rus-wars.*/img/$domain=rus-wars.com|rus-wars.ru (advblock.txt: 7382) -.rus-wars.*./(.*/)?img/ - -#ab2p-unblock-request-R1608 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1608} \ -} -# @@/pub/ad/*$domain=ruten.com.tw (easylistchina+easylist.txt: 10052) -/(.*/)?pub/ad/.* - -#ab2p-unblock-request-R418 -{-block \ - +client-header-tagger{ab2p-unblock-request-R418} \ -} -# @@//195.82.146.52/logo/*$domain=rutracker.org (advblock.txt: 7180) -195.82.146.52/logo/.* - -#ab2p-unblock-request-R1610 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1610} \ -} -# @@/crossdomain.xml|$domain=rutube.ru (advblock.txt: 7535) -/(.*/)?crossdomain\.xml$ -crossdomain.xml - -#ab2p-unblock-request-R1611 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1611} \ -} -# @@-teasers-$domain=rw.by (advblock.txt: 7176) -/.*-teasers- -.*-teasers-*. - -#ab2p-unblock-request-R1614 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1614} \ -} -# @@||sarafannoeradio.org/images/stories/$domain=sarafannoeradio.org (advblock.txt: 7388) -.sarafannoeradio.org/images/stories/ - -#ab2p-unblock-request-R1617 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1617} \ -} -# @@||admedia.wsod.com^$domain=scottrade.com (easylistchina+easylist.txt: 58209) -.admedia.wsod.com -# @@||ad.wsod.com^$domain=scottrade.com (easylistchina+easylist.txt: 58164) -.ad.wsod.com -# @@||admedia.wsod.com^$domain=scottrade.com (easylist.txt: 47724) -.admedia.wsod.com -# @@||ad.wsod.com^$domain=scottrade.com (easylist.txt: 47679) -.ad.wsod.com - -#ab2p-unblock-request-R1619 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1619} \ -} -# @@||scribdassets.com/aggregated/javascript/ads.js?$domain=scribd.com (easylistchina+easylist.txt: 59499) -.scribdassets.com/aggregated/javascript/ads\.js\? -# @@||scribdassets.com/aggregated/javascript/ads.js?$domain=scribd.com (easylist.txt: 49014) -.scribdassets.com/aggregated/javascript/ads\.js\? - -#ab2p-unblock-request-R1620 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1620} \ -} -# @@||thumbs.hexagram.com^$domain=scribol.com (easylistchina+easylist.txt: 59656) -.thumbs.hexagram.com -# @@||api.hexagram.com^$domain=scribol.com (easylistchina+easylist.txt: 58415) -.api.hexagram.com -# @@||thumbs.hexagram.com^$domain=scribol.com (easylist.txt: 49171) -.thumbs.hexagram.com -# @@||api.hexagram.com^$domain=scribol.com (easylist.txt: 47930) -.api.hexagram.com - -#ab2p-unblock-request-R1621 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1621} \ -} -# @@||annonser.dagbladet.no/EAS_tag.1.0.js$domain=se.no (easylistchina+easylist.txt: 60980) -.annonser.dagbladet.no/EAS_tag\.1\.0\.js -# @@||annonser.dagbladet.no/EAS_tag.1.0.js$domain=se.no (easylist.txt: 50495) -.annonser.dagbladet.no/EAS_tag\.1\.0\.js - -#ab2p-unblock-request-R1623 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1623} \ -} -# @@||sedo.com/ox/www/delivery/ajs.php$domain=sedo.com|sedo.de (easylistchina+easylist.txt: 59511) -.sedo.com/ox/www/delivery/ajs\.php -# @@||sedo.com/ox/www/delivery/ajs.php$domain=sedo.com|sedo.de (easylist.txt: 49026) -.sedo.com/ox/www/delivery/ajs\.php - -#ab2p-unblock-request-R1625 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1625} \ -} -# @@||sn00.net^$domain=selectornews.com (advblock.txt: 7394) -.sn00.net - -#ab2p-unblock-request-R1626 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1626} \ -} -# @@||ads.awadserver.com^$domain=sellallautos.com (easylistchina+easylist.txt: 58222) -.ads.awadserver.com -# @@||ads.awadserver.com^$domain=sellallautos.com (easylist.txt: 47737) -.ads.awadserver.com - -#ab2p-unblock-request-R1627 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1627} \ -} -# @@||sellua.info^*/ad/$domain=sellua.info (advblock.txt: 7390) -.sellua.info/.*/ad/ - -#ab2p-unblock-request-R1629 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1629} \ -} -# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina+easylist.txt: 10056) -/(.*/)?show_ads_impl\.js -# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina+easylist.txt: 10038) -/(.*/)?g\.doubleclick\.net\.js\? -# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina+easylist.txt: 10012) -/(.*/)?adsbygoogle\. -adsbygoogle.*. -# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina+easylist.txt: 10006) -/(.*/)?adlogger_tracker\.php - -#ab2p-unblock-request-R1630 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1630} \ -} -# @@||static.adzerk.net/ados.js$domain=serverfault.com|stackoverflow.com (easylistchina+easylist.txt: 59588) -.static.adzerk.net/ados\.js -# @@||static.adzerk.net/ados.js$domain=serverfault.com|stackoverflow.com (easylist.txt: 49103) -.static.adzerk.net/ados\.js - -#ab2p-unblock-request-R1631 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1631} \ -} -# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina+easylist.txt: 10019) -/(.*/)?advertise/.* - -#ab2p-unblock-request-R1634 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1634} \ -} -# @@||platform.twitter.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45842) -.platform.twitter.com -# @@||assets.pinterest.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45838) -.assets.pinterest.com -# @@||apis.google.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45837) -.apis.google.com -# @@||ajax.googleapis.com^$domain=shop.patheos.com (easylistchina+easylist.txt: 45836) -.ajax.googleapis.com -# @@||platform.twitter.com^$domain=shop.patheos.com (easylist.txt: 35357) -.platform.twitter.com -# @@||assets.pinterest.com^$domain=shop.patheos.com (easylist.txt: 35353) -.assets.pinterest.com -# @@||apis.google.com^$domain=shop.patheos.com (easylist.txt: 35352) -.apis.google.com -# @@||ajax.googleapis.com^$domain=shop.patheos.com (easylist.txt: 35351) -.ajax.googleapis.com - -#ab2p-unblock-request-R1635 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1635} \ -} -# @@||getprice.com.au/images/$domain=shopping.ninemsn.com.au|shopping.yahoo.com.au (easylistchina+easylist.txt: 58874) -.getprice.com.au/images/ -# @@||getprice.com.au/images/$domain=shopping.ninemsn.com.au|shopping.yahoo.com.au (easylist.txt: 48389) -.getprice.com.au/images/ - -#ab2p-unblock-request-R1636 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1636} \ -} -# @@/tizer/*$domain=sibtravel42.ru|tutu.ru (advblock.txt: 7211) -/(.*/)?tizer/.* - -#ab2p-unblock-request-R1637 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1637} \ -} -# @@||amazonaws.com/bt-dashboard-logos/$domain=signal.co (easylistchina+easylist.txt: 58398) -.amazonaws.com/bt-dashboard-logos/ -# @@||amazonaws.com/bt-dashboard-logos/$domain=signal.co (easylist.txt: 47913) -.amazonaws.com/bt-dashboard-logos/ - -#ab2p-unblock-request-R1638 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1638} \ -} -# @@||ads.simplyhired.com^$domain=simply-partner.com|simplyhired.com (easylistchina+easylist.txt: 58261) -.ads.simplyhired.com -# @@||ads.simplyhired.com^$domain=simply-partner.com|simplyhired.com (easylist.txt: 47776) -.ads.simplyhired.com - -#ab2p-unblock-request-R1639 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1639} \ -} -# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina+easylist.txt: 10484) -.sina.com.cn/iplookup/iplookup\.php\? - -#ab2p-unblock-request-R1640 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1640} \ -} -# @@||siteads.com^$domain=siteads.com (easylistchina+easylist.txt: 61253) -.siteads.com -# @@||siteads.com^$domain=siteads.com (easylist.txt: 50768) -.siteads.com - -#ab2p-unblock-request-R1641 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1641} \ -} -# @@||pagead2.googlesyndication.com/pagead/js/*/expansion_embed.js$domain=sizedrive.com|softpedia.com (easylistchina+easylist.txt: 60623) -.pagead2.googlesyndication.com/pagead/js/.*/expansion_embed\.js -# @@||pagead2.googlesyndication.com/pagead/js/*/expansion_embed.js$domain=sizedrive.com|softpedia.com (easylist.txt: 50138) -.pagead2.googlesyndication.com/pagead/js/.*/expansion_embed\.js - -#ab2p-unblock-request-R1643 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1643} \ -} -# @@||skypeassets.com^*/advertise/$domain=skype.com (easylistchina+easylist.txt: 59541) -.skypeassets.com/.*/advertise/ -# @@||skypeassets.com^*/advertise/$domain=skype.com (easylist.txt: 49056) -.skypeassets.com/.*/advertise/ - -#ab2p-unblock-request-R1645 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1645} \ -} -# @@||fsdn.com/sd/topics/advertising_64.png$domain=slashdot.org (easylistchina+easylist.txt: 58846) -.fsdn.com/sd/topics/advertising_64\.png -# @@||fsdn.com/sd/topics/advertising_64.png$domain=slashdot.org (easylist.txt: 48361) -.fsdn.com/sd/topics/advertising_64\.png - -#ab2p-unblock-request-R1649 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1649} \ -} -# @@||smartads.by^$domain=smartads.by (advblock.txt: 7393) -.smartads.by - -#ab2p-unblock-request-R1650 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1650} \ -} -# @@||smc.temple.edu/advertising/$domain=smctemple.wpengine.com (easylistchina+easylist.txt: 59546) -.smc.temple.edu/advertising/ -# @@||smc.temple.edu/advertising/$domain=smctemple.wpengine.com (easylist.txt: 49061) -.smc.temple.edu/advertising/ - -#ab2p-unblock-request-R1652 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1652} \ -} -# @@||medialand.ru/code?$domain=smotri.com|video.reset.ru (advblock.txt: 7333) -.medialand.ru/code\? - -#ab2p-unblock-request-R1653 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1653} \ -} -# @@||adtechus.com/?advideo/$domain=snagfilms.com (easylistchina+easylist.txt: 58319) -.adtechus.com/\?advideo/ -# @@||adtechus.com/?advideo/$domain=snagfilms.com (easylist.txt: 47834) -.adtechus.com/\?advideo/ - -#ab2p-unblock-request-R1654 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1654} \ -} -# @@||gg.woniu.com^$domain=snail.com (easylistchina+easylist.txt: 10254) -.gg.woniu.com - -#ab2p-unblock-request-R1658 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1658} \ -} -# @@||assoc-amazon.com/widgets/$domain=sotumblry.com (easylistchina+easylist.txt: 58444) -.assoc-amazon.com/widgets/ -# @@||amazon.com/widgets/$domain=sotumblry.com (easylistchina+easylist.txt: 58395) -.amazon.com/widgets/ -# @@||assoc-amazon.com/widgets/$domain=sotumblry.com (easylist.txt: 47959) -.assoc-amazon.com/widgets/ -# @@||amazon.com/widgets/$domain=sotumblry.com (easylist.txt: 47910) -.amazon.com/widgets/ - -#ab2p-unblock-request-R1660 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1660} \ -} -# @@||spankwirefreehd.com^*.Spankwire_HeaderTab&$popup,domain=spankwire.com (easylistchina+easylist.txt: 61801) -.spankwirefreehd.com/.*\.Spankwire_HeaderTab& -# @@||spankwirecams.com/?AFNO=$popup,domain=spankwire.com (easylistchina+easylist.txt: 61800) -.spankwirecams.com/\?AFNO= -# @@||spankwirefreehd.com^*.Spankwire_HeaderTab&$popup,domain=spankwire.com (easylist.txt: 51316) -.spankwirefreehd.com/.*\.Spankwire_HeaderTab& -# @@||spankwirecams.com/?AFNO=$popup,domain=spankwire.com (easylist.txt: 51315) -.spankwirecams.com/\?AFNO= - -#ab2p-unblock-request-R1661 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1661} \ -} -# @@/ads/popudner/banner.jpg?$domain=spinandw.in (easylistchina+easylist.txt: 59918) -/(.*/)?ads/popudner/banner\.jpg\? -# @@/ads/popudner/banner.jpg?$domain=spinandw.in (easylist.txt: 49433) -/(.*/)?ads/popudner/banner\.jpg\? - -#ab2p-unblock-request-R1663 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1663} \ -} -# @@://ads.$popup,domain=sports.ru (advblock.txt: 7217) -/.*://ads\. -ads.*. - -#ab2p-unblock-request-R1666 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1666} \ -} -# @@||googlesyndication.com/pagead/images/$domain=spruto.tv (advblock.txt: 7570) -.googlesyndication.com/pagead/images/ - -#ab2p-unblock-request-R1667 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1667} \ -} -# @@||staircase.pl/wp-content/*/adwords.jpg$domain=staircase.pl (easylistchina+easylist.txt: 61121) -.staircase.pl/wp-content/.*/adwords\.jpg -# @@||staircase.pl/wp-content/*/adwords.jpg$domain=staircase.pl (easylist.txt: 50636) -.staircase.pl/wp-content/.*/adwords\.jpg - -#ab2p-unblock-request-R1668 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1668} \ -} -# @@||zedo.com/swf/$domain=startv.in (easylistchina+easylist.txt: 59875) -.zedo.com/swf/ -# @@||zedo.com/swf/$domain=startv.in (easylist.txt: 49390) -.zedo.com/swf/ - -#ab2p-unblock-request-R1669 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1669} \ -} -# @@||adap.tv/redir/plugins/*/adotubeplugin.swf?$domain=stickam.com (easylistchina+easylist.txt: 58184) -.adap.tv/redir/plugins/.*/adotubeplugin\.swf\? -# @@||adap.tv/redir/plugins/*/adotubeplugin.swf?$domain=stickam.com (easylist.txt: 47699) -.adap.tv/redir/plugins/.*/adotubeplugin\.swf\? - -#ab2p-unblock-request-R1674 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1674} \ -} -# @@||pornomovies.com/js/1/ads-1.js$domain=submityourflicks.com (easylistchina+easylist.txt: 61771) -.pornomovies.com/js/1/ads-1\.js -# @@||pornomovies.com/js/1/ads-1.js$domain=submityourflicks.com (easylist.txt: 51286) -.pornomovies.com/js/1/ads-1\.js - -#ab2p-unblock-request-R1675 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1675} \ -} -# @@||ads.sudpresse.be^$popup,domain=sudinfo.be (easylistchina+easylist.txt: 61399) -.ads.sudpresse.be -# @@||ads.sudpresse.be^$popup,domain=sudinfo.be (easylist.txt: 50914) -.ads.sudpresse.be - -#ab2p-unblock-request-R1676 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1676} \ -} -# @@||sulekhalive.com/images/property/bannerads/$domain=sulekha.com (easylistchina+easylist.txt: 59602) -.sulekhalive.com/images/property/bannerads/ -# @@||sulekhalive.com/images/property/bannerads/$domain=sulekha.com (easylist.txt: 49117) -.sulekhalive.com/images/property/bannerads/ - -#ab2p-unblock-request-R1680 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1680} \ -} -# @@||ssacdn.com/banners/$domain=supersonicads.com (easylistchina+easylist.txt: 59581) -.ssacdn.com/banners/ -# @@||ssacdn.com/banners/$domain=supersonicads.com (easylist.txt: 49096) -.ssacdn.com/banners/ - -#ab2p-unblock-request-R1681 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1681} \ -} -# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina+easylist.txt: 10474) -.googletagmanager.com/gtm\.js\? -# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina+easylist.txt: 10473) -.google-analytics.com/plugins/ua/linkid\.js - -#ab2p-unblock-request-R1683 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1683} \ -} -# @@||cdn-surfline.com/ads/VolcomSurflinePlayerHo13.jpg$domain=surfline.com (easylistchina+easylist.txt: 60141) -.cdn-surfline.com/ads/VolcomSurflinePlayerHo13\.jpg -# @@||cdn-surfline.com/ads/VolcomSurflinePlayerHo13.jpg$domain=surfline.com (easylist.txt: 49656) -.cdn-surfline.com/ads/VolcomSurflinePlayerHo13\.jpg - -#ab2p-unblock-request-R1684 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1684} \ -} -# @@||swatch.com//images/*teaser$domain=swatch.com (advblock.txt: 7402) - -#ab2p-unblock-request-R1690 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1690} \ -} -# @@||revealads.appspot.com/revealads2/radioplayer.js$domain=talksport.co.uk (easylistchina+easylist.txt: 59457) -.revealads.appspot.com/revealads2/radioplayer\.js -# @@||revealads.appspot.com/revealads2/radioplayer.js$domain=talksport.co.uk (easylist.txt: 48972) -.revealads.appspot.com/revealads2/radioplayer\.js - -#ab2p-unblock-request-R1691 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1691} \ -} -# @@||aka-cdn-ns.adtech.de^*.flv$domain=talksport.co.uk|tv3.ie (easylistchina+easylist.txt: 60969) -.aka-cdn-ns.adtech.de/.*\.flv -# @@||aka-cdn-ns.adtech.de^*.flv$domain=talksport.co.uk|tv3.ie (easylist.txt: 50484) -.aka-cdn-ns.adtech.de/.*\.flv - -#ab2p-unblock-request-R1692 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1692} \ -} -# @@||alimama.com^$domain=tanx.com (easylistchina+easylist.txt: 10167) -.alimama.com -# @@/adx.$domain=tanx.com (easylistchina+easylist.txt: 10026) -/(.*/)?adx\. -adx.*. - -#ab2p-unblock-request-R1693 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1693} \ -} -# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina+easylist.txt: 10479) -.opehs.tanx.com/ex\? -# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina+easylist.txt: 10470) -.ecpm.tanx.com/ex\? - -#ab2p-unblock-request-R1696 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1696} \ -} -# @@||tatler.ru/resize_*_320x250_$domain=tatler.ru (advblock.txt: 7405) -.tatler.ru/resize_.*_320x250_ - -#ab2p-unblock-request-R458 -{-block \ - +client-header-tagger{ab2p-unblock-request-R458} \ -} -# @@||ads.tbs.com/html.ng/site=*600x400_$domain=tbs.com (easylistchina+easylist.txt: 58267) -.ads.tbs.com/html\.ng/site=.*600x400_ -# @@||ads.tbs.com/html.ng/site=*600x400_$domain=tbs.com (easylist.txt: 47782) -.ads.tbs.com/html\.ng/site=.*600x400_ - -#ab2p-unblock-request-R1703 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1703} \ -} -# @@||trrsf.com.br^*/admanager.js$domain=terra.com.br (easylistchina+easylist.txt: 61134) -.trrsf.com.br/.*/admanager\.js -# @@||trrsf.com.br^*/admanager.js$domain=terra.com.br (easylist.txt: 50649) -.trrsf.com.br/.*/admanager\.js - -#ab2p-unblock-request-R1706 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1706} \ -} -# @@||fmpub.net/site/$domain=theawl.com (easylistchina+easylist.txt: 58831) -.fmpub.net/site/ -# @@||fmpub.net/site/$domain=theawl.com (easylist.txt: 48346) -.fmpub.net/site/ - -#ab2p-unblock-request-R1711 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1711} \ -} -# @@||cloudfront.net/ads.js$domain=thesimsresource.com (easylistchina+easylist.txt: 60166) -.cloudfront.net/ads\.js -# @@||cloudfront.net/ads.js$domain=thesimsresource.com (easylist.txt: 49681) -.cloudfront.net/ads\.js - -#ab2p-unblock-request-R1712 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1712} \ -} -# @@||thestreet-static.com/video/js/companionAdFunc.js$domain=thestreet.com (easylistchina+easylist.txt: 59649) -.thestreet-static.com/video/js/companionAdFunc\.js -# @@||thestreet-static.com/video/js/companionAdFunc.js$domain=thestreet.com (easylist.txt: 49164) -.thestreet-static.com/video/js/companionAdFunc\.js - -#ab2p-unblock-request-R467 -{-block \ - +client-header-tagger{ab2p-unblock-request-R467} \ -} -# @@||thisav.com/uploaded_banners/jw.swf$domain=thisav.com (easylistchina+easylist.txt: 61463) -.thisav.com/uploaded_banners/jw\.swf -# @@||thisav.com/uploaded_banners/jw.swf$domain=thisav.com (easylist.txt: 50978) -.thisav.com/uploaded_banners/jw\.swf - -#ab2p-unblock-request-R1715 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1715} \ -} -# @@||an.yandex.ru/system/context.js$domain=tjournal.ru|tvigle.ru (advblock.txt: 7265) -.an.yandex.ru/system/context\.js - -#ab2p-unblock-request-R1716 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1716} \ -} -# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina+easylist.txt: 10046) -/(.*/)?img_ad/.* - -#ab2p-unblock-request-R1718 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1718} \ -} -# @@||turner.com^*/videoadrenderer.swf$domain=tntdrama.com (easylistchina+easylist.txt: 59712) -.turner.com/.*/videoadrenderer\.swf -# @@||turner.com^*/videoadrenderer.swf$domain=tntdrama.com (easylist.txt: 49227) -.turner.com/.*/videoadrenderer\.swf - -#ab2p-unblock-request-R1719 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1719} \ -} -# @@||servebom.com/tmnhead.js$domain=tomsguide.com|tomshardware.com|wonderhowto.com (easylistchina+easylist.txt: 59516) -.servebom.com/tmnhead\.js -# @@||servebom.com/tmnhead.js$domain=tomsguide.com|tomshardware.com|wonderhowto.com (easylist.txt: 49031) -.servebom.com/tmnhead\.js - -#ab2p-unblock-request-R1721 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1721} \ -} -# @@||marketgid.com^$domain=tovarro.com (advblock.txt: 7332) -.marketgid.com - -#ab2p-unblock-request-R1723 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1723} \ -} -# @@||adriver.ru/cgi-bin/rle.cgi?$domain=transaero.ru (advblock.txt: 7234) -.adriver.ru/cgi-bin/rle\.cgi\? - -#ab2p-unblock-request-R1724 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1724} \ -} -# @@||travelocity.com/html.ng/*558x262$domain=travelocity.com (easylistchina+easylist.txt: 59693) -.travelocity.com/html\.ng/.*558x262 -# @@||travelocity.com/event.ng/*click$domain=travelocity.com (easylistchina+easylist.txt: 59692) -.travelocity.com/event\.ng/.*click -# @@||travelocity.com/html.ng/*558x262$domain=travelocity.com (easylist.txt: 49208) -.travelocity.com/html\.ng/.*558x262 -# @@||travelocity.com/event.ng/*click$domain=travelocity.com (easylist.txt: 49207) -.travelocity.com/event\.ng/.*click - -#ab2p-unblock-request-R1727 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1727} \ -} -# @@||tripit.com/js/components/popover.js?$domain=tripit.com (advblock.txt: 7413) -.tripit.com/js/components/popover\.js\? - -#ab2p-unblock-request-R1728 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1728} \ -} -# @@||player.cdn.targetspot.com/ts_embed_functions_as3.php$domain=tritonmedia.com (easylistchina+easylist.txt: 59386) -.player.cdn.targetspot.com/ts_embed_functions_as3\.php -# @@||player.cdn.targetspot.com/ts_embed_functions_as3.php$domain=tritonmedia.com (easylist.txt: 48901) -.player.cdn.targetspot.com/ts_embed_functions_as3\.php - -#ab2p-unblock-request-R1729 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1729} \ -} -# @@||ipcdigital.co.uk^*/adtech.js$domain=trustedreviews.com (easylistchina+easylist.txt: 59034) -.ipcdigital.co.uk/.*/adtech\.js -# @@||ipcdigital.co.uk^*/adloader.js?$domain=trustedreviews.com (easylistchina+easylist.txt: 59033) -.ipcdigital.co.uk/.*/adloader\.js\? -# @@||ipcdigital.co.uk^*/adtech.js$domain=trustedreviews.com (easylist.txt: 48549) -.ipcdigital.co.uk/.*/adtech\.js -# @@||ipcdigital.co.uk^*/adloader.js?$domain=trustedreviews.com (easylist.txt: 48548) -.ipcdigital.co.uk/.*/adloader\.js\? - -#ab2p-unblock-request-R1730 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1730} \ -} -# @@||tube8live.com/?AFNO=$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61805) -.tube8live.com/\?AFNO= -# @@||t8premium.com/track/*/join?$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61804) -.t8premium.com/track/.*/join\? -# @@||t8premium.com/signup/signup.php?$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61803) -.t8premium.com/signup/signup\.php\? -# @@||contentabc.com/ads?spot_id=$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61791) -.contentabc.com/ads\?spot_id= -# @@||tube8live.com/?AFNO=$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51320) -.tube8live.com/\?AFNO= -# @@||t8premium.com/track/*/join?$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51319) -.t8premium.com/track/.*/join\? -# @@||t8premium.com/signup/signup.php?$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51318) -.t8premium.com/signup/signup\.php\? -# @@||contentabc.com/ads?spot_id=$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51306) -.contentabc.com/ads\?spot_id= - -#ab2p-unblock-request-R1731 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1731} \ -} -# @@||tmoncdn.com/scripts/advertisement.js$domain=tubemonsoon.com (easylistchina+easylist.txt: 61778) -.tmoncdn.com/scripts/advertisement\.js -# @@||tmoncdn.com/scripts/advertisement.js$domain=tubemonsoon.com (easylist.txt: 51293) -.tmoncdn.com/scripts/advertisement\.js - -#ab2p-unblock-request-R1735 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1735} \ -} -# @@||googlecode.com/files/google_ads.js$domain=turkdown.com (easylistchina+easylist.txt: 60363) -.googlecode.com/files/google_ads\.js -# @@||googlecode.com/files/google_ads.js$domain=turkdown.com (easylist.txt: 49878) -.googlecode.com/files/google_ads\.js - -#ab2p-unblock-request-R1737 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1737} \ -} -# @@||am10.ru/code.$domain=tv-serial.org (advblock.txt: 7558) -.am10.ru/code\. - -#ab2p-unblock-request-R1741 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1741} \ -} -# @@||emediate.se/eas_tag.1.0.js$domain=tv2.dk|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylistchina+easylist.txt: 61016) -.emediate.se/eas_tag\.1\.0\.js -# @@||emediate.se/eas_tag.1.0.js$domain=tv2.dk|tv3play.ee|tv3play.se|tv6play.se|tv8play.se (easylist.txt: 50531) -.emediate.se/eas_tag\.1\.0\.js - -#ab2p-unblock-request-R1742 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1742} \ -} -# @@||adtech.panthercustomer.com^*.flv$domain=tv3.ie (easylistchina+easylist.txt: 60957) -.adtech.panthercustomer.com/.*\.flv -# @@||adtech.panthercustomer.com^*.flv$domain=tv3.ie (easylist.txt: 50472) -.adtech.panthercustomer.com/.*\.flv - -#ab2p-unblock-request-R483 -{-block \ - +client-header-tagger{ab2p-unblock-request-R483} \ -} -# @@||videoplaza.tv/contrib/*/advertisement.js$domain=tv4play.se (easylistchina+easylist.txt: 60872) -.videoplaza.tv/contrib/.*/advertisement\.js -# @@||videoplaza.tv/contrib/*/advertisement.js$domain=tv4play.se (easylist.txt: 50387) -.videoplaza.tv/contrib/.*/advertisement\.js - -#ab2p-unblock-request-R1744 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1744} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina+easylist.txt: 10325) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||ads.$domain=tvb.com (easylistchina+easylist.txt: 10158) -.ads.*. - -#ab2p-unblock-request-R484 -{-block \ - +client-header-tagger{ab2p-unblock-request-R484} \ -} -# @@||inskin.vo.llnwd.net^*/api/tvcatchup.js$domain=tvcatchup.com (easylistchina+easylist.txt: 59017) -.inskin.vo.llnwd.net/.*/api/tvcatchup\.js -# @@||inskin.vo.llnwd.net^*/api/tvcatchup-light.js$domain=tvcatchup.com (easylistchina+easylist.txt: 59016) -.inskin.vo.llnwd.net/.*/api/tvcatchup-light\.js -# @@||cdn.inskinmedia.com/isfe/4.1/swf/unitcontainer2.swf$domain=tvcatchup.com (easylistchina+easylist.txt: 58564) -.cdn.inskinmedia.com/isfe/4\.1/swf/unitcontainer2\.swf -# @@||inskin.vo.llnwd.net^*/api/tvcatchup.js$domain=tvcatchup.com (easylist.txt: 48532) -.inskin.vo.llnwd.net/.*/api/tvcatchup\.js -# @@||inskin.vo.llnwd.net^*/api/tvcatchup-light.js$domain=tvcatchup.com (easylist.txt: 48531) -.inskin.vo.llnwd.net/.*/api/tvcatchup-light\.js -# @@||cdn.inskinmedia.com/isfe/4.1/swf/unitcontainer2.swf$domain=tvcatchup.com (easylist.txt: 48079) -.cdn.inskinmedia.com/isfe/4\.1/swf/unitcontainer2\.swf - -#ab2p-unblock-request-R1747 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1747} \ -} -# @@||tvn.adocean.pl/files/js/ado.js$domain=tvn.pl|tvn24.pl (easylistchina+easylist.txt: 60830) -.tvn.adocean.pl/files/js/ado\.js -# @@||tvn.adocean.pl/files/js/ado.js$domain=tvn.pl|tvn24.pl (easylist.txt: 50345) -.tvn.adocean.pl/files/js/ado\.js - -#ab2p-unblock-request-R1750 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1750} \ -} -# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina+easylist.txt: 10397) -.tw.m.yimg.com/res/ads/ - -#ab2p-unblock-request-R1751 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1751} \ -} -# @@||folue.info/needes.js$domain=twer.info (easylistchina+easylist.txt: 60298) -.folue.info/needes\.js -# @@||folue.info/needes.js$domain=twer.info (easylist.txt: 49813) -.folue.info/needes\.js - -#ab2p-unblock-request-R485 -{-block \ - +client-header-tagger{ab2p-unblock-request-R485} \ -} -# @@||jtvnw.net/*/advertisement.js$domain=twitch.tv (easylistchina+easylist.txt: 60438) -.jtvnw.net/.*/advertisement\.js -# @@||jtvnw.net/*/advertisement.js$domain=twitch.tv (easylist.txt: 49953) -.jtvnw.net/.*/advertisement\.js - -#ab2p-unblock-request-R1754 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1754} \ -} -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59997) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net/p/*/LinkTag2.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59994) -.adm.fwmrm.net/p/.*/LinkTag2\.js -# @@||adm.fwmrm.net/p/*/AdManager.js$domain=uktv.co.uk (easylistchina+easylist.txt: 59993) -.adm.fwmrm.net/p/.*/AdManager\.js -# @@||adm.fwmrm.net^*/BrightcovePlugin.js$domain=uktv.co.uk (easylist.txt: 49512) -.adm.fwmrm.net/.*/BrightcovePlugin\.js -# @@||adm.fwmrm.net/p/*/LinkTag2.js$domain=uktv.co.uk (easylist.txt: 49509) -.adm.fwmrm.net/p/.*/LinkTag2\.js -# @@||adm.fwmrm.net/p/*/AdManager.js$domain=uktv.co.uk (easylist.txt: 49508) -.adm.fwmrm.net/p/.*/AdManager\.js - -#ab2p-unblock-request-R1755 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1755} \ -} -# @@||akamai.net^*/i.mallnetworks.com/images/*120x60$domain=ultimaterewardsearn.chase.com (easylistchina+easylist.txt: 58375) -.akamai.net/.*/i\.mallnetworks\.com/images/.*120x60 -# @@||akamai.net^*/i.mallnetworks.com/images/*120x60$domain=ultimaterewardsearn.chase.com (easylist.txt: 47890) -.akamai.net/.*/i\.mallnetworks\.com/images/.*120x60 - -#ab2p-unblock-request-R1756 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1756} \ -} -# @@||embedperiscope.com/app/embed.js$domain=unilad.co.uk (easylistchina+easylist.txt: 45974) -.embedperiscope.com/app/embed\.js -# @@||embedperiscope.com/app/embed.js$domain=unilad.co.uk (easylist.txt: 35489) -.embedperiscope.com/app/embed\.js - -#ab2p-unblock-request-R1757 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1757} \ -} -# @@||union.$domain=union.163.com (easylistchina+easylist.txt: 10402) -.union.*. - -#ab2p-unblock-request-R1758 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1758} \ -} -# @@||aucun.science/bloggerex.js$domain=uptobox.com (easylistchina+easylist.txt: 60086) -.aucun.science/bloggerex\.js -# @@||aucun.science/bloggerex.js$domain=uptobox.com (easylist.txt: 49601) -.aucun.science/bloggerex\.js - -#ab2p-unblock-request-R1760 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1760} \ -} -# @@||cdn.betrad.com/pub/icon1.png$domain=usanetwork.com (easylistchina+easylist.txt: 58556) -.cdn.betrad.com/pub/icon1\.png -# @@||cdn.betrad.com/pub/icon1.png$domain=usanetwork.com (easylist.txt: 48071) -.cdn.betrad.com/pub/icon1\.png - -#ab2p-unblock-request-R1761 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1761} \ -} -# @@||lduhtrp.net/image-$domain=uscbookstore.com (easylistchina+easylist.txt: 59078) -.lduhtrp.net/image- -# @@||lduhtrp.net/image-$domain=uscbookstore.com (easylist.txt: 48593) -.lduhtrp.net/image- - -#ab2p-unblock-request-R1762 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1762} \ -} -# @@||usynovite.ru/f/swf/banner_$domain=usynovite.ru (advblock.txt: 7418) -.usynovite.ru/f/swf/banner_ - -#ab2p-unblock-request-R1763 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1763} \ -} -# @@.com/ads?$domain=uzblog.com|uzlist.com (advblock.txt: 7177) -/.*\.com/ads\? -.*.com/ads\? - -#ab2p-unblock-request-R1768 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1768} \ -} -# @@/reklama/*$domain=velochehol.com.ua|velosumka.com (advblock.txt: 7206) -/(.*/)?reklama/.* - -#ab2p-unblock-request-R1769 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1769} \ -} -# @@||veohb.net/js/advertisement.js$domain=veohb.net (easylistchina+easylist.txt: 60860) -.veohb.net/js/advertisement\.js -# @@||veohb.net/js/advertisement.js$domain=veohb.net (easylist.txt: 50375) -.veohb.net/js/advertisement\.js - -#ab2p-unblock-request-R1771 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1771} \ -} -# @@||adtechus.com/dt/common/postscribe.js$domain=vg.no (easylistchina+easylist.txt: 60029) -.adtechus.com/dt/common/postscribe\.js -# @@||adtechus.com/dt/common/postscribe.js$domain=vg.no (easylist.txt: 49544) -.adtechus.com/dt/common/postscribe\.js - -#ab2p-unblock-request-R1773 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1773} \ -} -# @@||ads.jetpackdigital.com/jquery.tools.min.js?$domain=vibe.com (easylistchina+easylist.txt: 58246) -.ads.jetpackdigital.com/jquery\.tools\.min\.js\? -# @@||ads.jetpackdigital.com/jquery.tools.min.js?$domain=vibe.com (easylist.txt: 47761) -.ads.jetpackdigital.com/jquery\.tools\.min\.js\? - -#ab2p-unblock-request-R1774 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1774} \ -} -# @@||amazonaws.com/content-images/article/*_120x60$domain=vice.com (easylistchina+easylist.txt: 61307) -.amazonaws.com/content-images/article/.*_120x60 -# @@||amazonaws.com/content-images/article/*_120x60$domain=vice.com (easylist.txt: 50822) -.amazonaws.com/content-images/article/.*_120x60 - -#ab2p-unblock-request-R1775 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1775} \ -} -# @@||turner.com/adultswim/big/promos/$media,domain=video.adultswim.com (easylistchina+easylist.txt: 59707) -.turner.com/adultswim/big/promos/ -# @@||turner.com/adultswim/big/promos/$media,domain=video.adultswim.com (easylist.txt: 49222) -.turner.com/adultswim/big/promos/ - -#ab2p-unblock-request-R1776 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1776} \ -} -# @@||lycos.com/catman/init.js$domain=video.lycos.com (easylistchina+easylist.txt: 59118) -.lycos.com/catman/init\.js -# @@||lycos.com/catman/init.js$domain=video.lycos.com (easylist.txt: 48633) -.lycos.com/catman/init\.js - -#ab2p-unblock-request-R1777 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1777} \ -} -# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina+easylist.txt: 10375) -.sinaimg.cn/unipro/pub/suda_m_v629\.js - -#ab2p-unblock-request-R1778 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1778} \ -} -# @@||comeadvertisewithus.com/ads/ads.js$domain=video2mp3.net (easylistchina+easylist.txt: 58608) -.comeadvertisewithus.com/ads/ads\.js -# @@||comeadvertisewithus.com/ads/ads.js$domain=video2mp3.net (easylist.txt: 48123) -.comeadvertisewithus.com/ads/ads\.js - -#ab2p-unblock-request-R1779 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1779} \ -} -# @@||begun.ru/vpaid_lib.swf|$domain=vidin.ru (advblock.txt: 7281) -.begun.ru/vpaid_lib\.swf$ -# @@||begun.ru/video.jsp?$domain=vidin.ru (advblock.txt: 7280) -.begun.ru/video\.jsp\? - -#ab2p-unblock-request-R1780 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1780} \ -} -# @@||googleapis.com/flash/*adsapi_*.swf$domain=viki.com|wwe.com (easylistchina+easylist.txt: 58912) -.googleapis.com/flash/.*adsapi_.*\.swf -# @@||googleapis.com/flash/*adsapi_*.swf$domain=viki.com|wwe.com (easylist.txt: 48427) -.googleapis.com/flash/.*adsapi_.*\.swf - -#ab2p-unblock-request-R1782 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1782} \ -} -# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina+easylist.txt: 10160) -.ads.myopen.vip.com - -#ab2p-unblock-request-R1784 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1784} \ -} -# @@||inskinmedia.com^*/api/brightcove3.js$domain=virginmedia.com (easylistchina+easylist.txt: 59020) -.inskinmedia.com/.*/api/brightcove3\.js -# @@||cdn.inskinmedia.com^*/brightcove3.js$domain=virginmedia.com (easylistchina+easylist.txt: 58565) -.cdn.inskinmedia.com/.*/brightcove3\.js -# @@||inskinmedia.com^*/api/brightcove3.js$domain=virginmedia.com (easylist.txt: 48535) -.inskinmedia.com/.*/api/brightcove3\.js -# @@||cdn.inskinmedia.com^*/brightcove3.js$domain=virginmedia.com (easylist.txt: 48080) -.cdn.inskinmedia.com/.*/brightcove3\.js - -#ab2p-unblock-request-R509 -{-block \ - +client-header-tagger{ab2p-unblock-request-R509} \ -} -# @@||vk.me/images/ads_$domain=vk.com (easylistchina+easylist.txt: 61239) -.vk.me/images/ads_ -# @@||vk.me/css/al/ads.css$domain=vk.com (easylistchina+easylist.txt: 61238) -.vk.me/css/al/ads\.css -# @@||vk.com/js/al/ads.js?$domain=vk.com (easylistchina+easylist.txt: 61237) -.vk.com/js/al/ads\.js\? -# @@||vk.com/images/ads_$domain=vk.com (easylistchina+easylist.txt: 61236) -.vk.com/images/ads_ -# @@||vk.com/css/al/ads.css$domain=vk.com (easylistchina+easylist.txt: 61235) -.vk.com/css/al/ads\.css -# @@||vk.com/ads_rotate.php$domain=vk.com (easylistchina+easylist.txt: 59778) -.vk.com/ads_rotate\.php -# @@||api.vigo.ru/crossdomain.xml|$domain=vk.com (advblock.txt: 7267) -.api.vigo.ru/crossdomain\.xml$ -# @@||vk.me/images/ads_$domain=vk.com (easylist.txt: 50754) -.vk.me/images/ads_ -# @@||vk.me/css/al/ads.css$domain=vk.com (easylist.txt: 50753) -.vk.me/css/al/ads\.css -# @@||vk.com/js/al/ads.js?$domain=vk.com (easylist.txt: 50752) -.vk.com/js/al/ads\.js\? -# @@||vk.com/images/ads_$domain=vk.com (easylist.txt: 50751) -.vk.com/images/ads_ -# @@||vk.com/css/al/ads.css$domain=vk.com (easylist.txt: 50750) -.vk.com/css/al/ads\.css -# @@||vk.com/ads_rotate.php$domain=vk.com (easylist.txt: 49293) -.vk.com/ads_rotate\.php - -#ab2p-unblock-request-R1786 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1786} \ -} -# @@||vodyanoy.com.ua^*700_200.jpg|$domain=vodyanoy.com.ua (advblock.txt: 7428) -.vodyanoy.com.ua/.*700_200\.jpg$ - -#ab2p-unblock-request-R1787 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1787} \ -} -# @@||voenhronika.ru/banners/*.png|$domain=voenhronika.ru (advblock.txt: 7429) -.voenhronika.ru/banners/.*\.png$ - -#ab2p-unblock-request-R1790 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1790} \ -} -# @@||doubleclick.net/ddm/trackclk/$popup,domain=vouchercodes.co.uk (easylistchina+easylist.txt: 61411) -.doubleclick.net/ddm/trackclk/ -# @@||doubleclick.net/ddm/trackclk/$popup,domain=vouchercodes.co.uk (easylist.txt: 50926) -.doubleclick.net/ddm/trackclk/ - -#ab2p-unblock-request-R1795 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1795} \ -} -# @@||ads.vyborg-press.ru^$domain=vyborg-press.ru (advblock.txt: 7241) -.ads.vyborg-press.ru - -#ab2p-unblock-request-R1796 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1796} \ -} -# @@/AdImage/*$domain=wacom.tw (easylistchina+easylist.txt: 10003) -/(.*/)?AdImage/.* - -#ab2p-unblock-request-R1798 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1798} \ -} -# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina+easylist.txt: 10116) -.70e.com/js/2013_new\.js - -#ab2p-unblock-request-R1800 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1800} \ -} -# @@/show_ad_$domain=wb.qq.com (easylistchina+easylist.txt: 10055) -/(.*/)?show_ad_ -# @@/advert_$domain=wb.qq.com (easylistchina+easylist.txt: 10017) -/(.*/)?advert_ - -#ab2p-unblock-request-R1802 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1802} \ -} -# @@||imwx.com/js/adstwo/adcontroller.js$domain=weather.com (easylistchina+easylist.txt: 59003) -.imwx.com/js/adstwo/adcontroller\.js -# @@||imwx.com/js/adstwo/adcontroller.js$domain=weather.com (easylist.txt: 48518) -.imwx.com/js/adstwo/adcontroller\.js - -#ab2p-unblock-request-R1803 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1803} \ -} -# @@/webadvert.$domain=webadvert.ru (advblock.txt: 7215) -/(.*/)?webadvert\. -webadvert.*. - -#ab2p-unblock-request-R1804 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1804} \ -} -# @@/LoadAds.$domain=webcars.com.cn (easylistchina+easylist.txt: 10048) -/(.*/)?LoadAds\. -LoadAds.*. - -#ab2p-unblock-request-R1805 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1805} \ -} -# @@||netupd8.com/webupd8/*/advertisement.js$domain=webupd8.org (easylistchina+easylist.txt: 59233) -.netupd8.com/webupd8/.*/advertisement\.js -# @@||netupd8.com/webupd8/*/adsense.js$domain=webupd8.org (easylistchina+easylist.txt: 59232) -.netupd8.com/webupd8/.*/adsense\.js -# @@||netupd8.com/webupd8/*/advertisement.js$domain=webupd8.org (easylist.txt: 48748) -.netupd8.com/webupd8/.*/advertisement\.js -# @@||netupd8.com/webupd8/*/adsense.js$domain=webupd8.org (easylist.txt: 48747) -.netupd8.com/webupd8/.*/adsense\.js - -#ab2p-unblock-request-R1806 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1806} \ -} -# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina+easylist.txt: 10352) -.rm.sina.com.cn/minisite/ - -#ab2p-unblock-request-R1807 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1807} \ -} -# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina+easylist.txt: 10485) -.sinajs.cn/open/analytics/js/suda\.js - -#ab2p-unblock-request-R1808 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1808} \ -} -# @@||adtechus.com/dt/common/DAC.js$domain=wetpaint.com (easylistchina+easylist.txt: 58322) -.adtechus.com/dt/common/DAC\.js -# @@||adtechus.com/dt/common/DAC.js$domain=wetpaint.com (easylist.txt: 47837) -.adtechus.com/dt/common/DAC\.js - -#ab2p-unblock-request-R1809 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1809} \ -} -# @@||google.com^*/show_afs_ads.js$domain=whitepages.com (easylistchina+easylist.txt: 58910) -.google.com/.*/show_afs_ads\.js -# @@||google.com^*/show_afs_ads.js$domain=whitepages.com (easylist.txt: 48425) -.google.com/.*/show_afs_ads\.js - -#ab2p-unblock-request-R1811 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1811} \ -} -# @@||revive.wikimart.ru^$domain=wikimart.ru (advblock.txt: 7374) -.revive.wikimart.ru - -#ab2p-unblock-request-R1812 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1812} \ -} -# @@||ads.williamhillcasino.com/redirect.aspx?*=internal&$popup,domain=williamhillcasino.com (easylistchina+easylist.txt: 61401) -.ads.williamhillcasino.com/redirect\.aspx\?.*=internal& -# @@||ads.williamhillcasino.com/redirect.aspx?*=internal&$popup,domain=williamhillcasino.com (easylist.txt: 50916) -.ads.williamhillcasino.com/redirect\.aspx\?.*=internal& - -#ab2p-unblock-request-R1813 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1813} \ -} -# @@/adsense/*$domain=winxclub.com (advblock.txt: 7188) -/(.*/)?adsense/.* - -#ab2p-unblock-request-R1814 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1814} \ -} -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=wired.com (easylistchina+easylist.txt: 59344) -.partner.googleadservices.com/gpt/pubads_impl_ -# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=wired.com (easylist.txt: 48859) -.partner.googleadservices.com/gpt/pubads_impl_ - -#ab2p-unblock-request-R1818 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1818} \ -} -# @@||adsense.woso.cn^$domain=woso.cn (easylistchina+easylist.txt: 10162) -.adsense.woso.cn - -#ab2p-unblock-request-R1819 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1819} \ -} -# @@||d3pkae9owd2lcf.cloudfront.net/mb102.js$domain=wowhead.com (easylistchina+easylist.txt: 58643) -.d3pkae9owd2lcf.cloudfront.net/mb102\.js -# @@||d3pkae9owd2lcf.cloudfront.net/mb102.js$domain=wowhead.com (easylist.txt: 48158) -.d3pkae9owd2lcf.cloudfront.net/mb102\.js - -#ab2p-unblock-request-R1824 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1824} \ -} -# @@||www.google.com/doubleclick/$domain=www.google.com (easylistchina+easylist.txt: 61190) -.www.google.com/doubleclick/ -# @@||google.com/doubleclick/studio/swiffy/$domain=www.google.com (easylistchina+easylist.txt: 58902) -.google.com/doubleclick/studio/swiffy/ -# @@||www.google.com/doubleclick/$domain=www.google.com (easylist.txt: 50705) -.www.google.com/doubleclick/ -# @@||google.com/doubleclick/studio/swiffy/$domain=www.google.com (easylist.txt: 48417) -.google.com/doubleclick/studio/swiffy/ - -#ab2p-unblock-request-R1825 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1825} \ -} -# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina+easylist.txt: 10276) -.ifengimg.com/ifeng/sources/region_ -# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina+easylist.txt: 10275) -.ifengimg.com/ifeng/sources/inice_ - -#ab2p-unblock-request-R1827 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1827} \ -} -# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina+easylist.txt: 10483) -.simba.taobao.com/\?name=tcmad& - -#ab2p-unblock-request-R1828 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1828} \ -} -# @@&ad_type=$domain=x.jd.com (easylistchina+easylist.txt: 9978) -/.*&ad_type= - -#ab2p-unblock-request-R1829 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1829} \ -} -# @@/analytics.php?$domain=xcar.com.cn (easylistchina+easylist.txt: 10459) -/(.*/)?analytics\.php\? - -#ab2p-unblock-request-R1830 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1830} \ -} -# @@/addata.$domain=xdf.cn (easylistchina+easylist.txt: 10000) -/(.*/)?addata\. -addata.*. - -#ab2p-unblock-request-R1832 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1832} \ -} -# @@/adblock.js$domain=xingk.cc (easylistchina+easylist.txt: 9999) -/(.*/)?adblock\.js -adblock.js*. - -#ab2p-unblock-request-R1833 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1833} \ -} -# @@/images/ads/*$domain=xn--80aqkgfb3b1a0a.xn--p1ai|锌褘褕屑邪懈薪褎芯.褉褎 (advblock.txt: 7202) -/(.*/)?images/ads/.* - -#ab2p-unblock-request-R1834 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1834} \ -} -# @@||js.adm.cnzz.net^$domain=xoyo.com (easylistchina+easylist.txt: 10292) -.js.adm.cnzz.net - -#ab2p-unblock-request-R1836 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1836} \ -} -# @@||yaberemenna.info/openx/www/delivery/ajs.php?zoneid=7&$domain=yaberemenna.info (advblock.txt: 7435) -.yaberemenna.info/openx/www/delivery/ajs\.php\?zoneid=7& -# @@||yaberemenna.info/openx/www/delivery/ai.php?filename=$domain=yaberemenna.info (advblock.txt: 7434) -.yaberemenna.info/openx/www/delivery/ai\.php\?filename= - -#ab2p-unblock-request-R1837 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1837} \ -} -# @@||yimg.jp/images/listing/tool/yads/yjaxc-stream-ex.js$domain=yahoo.co.jp (easylistchina+easylist.txt: 61153) -.yimg.jp/images/listing/tool/yads/yjaxc-stream-ex\.js -# @@||yimg.jp/images/listing/tool/yads/yjaxc-stream-ex.js$domain=yahoo.co.jp (easylist.txt: 50668) -.yimg.jp/images/listing/tool/yads/yjaxc-stream-ex\.js - -#ab2p-unblock-request-R534 -{-block \ - +client-header-tagger{ab2p-unblock-request-R534} \ -} -# @@||yimg.com^*/ads-min.css$domain=yahoo.com (easylistchina+easylist.txt: 59853) -.yimg.com/.*/ads-min\.css -# @@||yimg.com/rq/darla/*/g-r-min.js$domain=yahoo.com (easylistchina+easylist.txt: 59849) -.yimg.com/rq/darla/.*/g-r-min\.js -# @@||yimg.com/ks/plugin/adplugin.swf?$domain=yahoo.com (easylistchina+easylist.txt: 59847) -.yimg.com/ks/plugin/adplugin\.swf\? -# @@||yimg.com^*/ads-min.css$domain=yahoo.com (easylist.txt: 49368) -.yimg.com/.*/ads-min\.css -# @@||yimg.com/rq/darla/*/g-r-min.js$domain=yahoo.com (easylist.txt: 49364) -.yimg.com/rq/darla/.*/g-r-min\.js -# @@||yimg.com/ks/plugin/adplugin.swf?$domain=yahoo.com (easylist.txt: 49362) -.yimg.com/ks/plugin/adplugin\.swf\? - -#ab2p-unblock-request-R1838 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1838} \ -} -# @@||images.vantage-media.net^$domain=yahoo.net (easylistchina+easylist.txt: 58986) -.images.vantage-media.net -# @@||images.vantage-media.net^$domain=yahoo.net (easylist.txt: 48501) -.images.vantage-media.net - -#ab2p-unblock-request-R1839 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1839} \ -} -# @@/PIC/AD/*$domain=ybjk.com (easylistchina+easylist.txt: 10050) -/(.*/)?PIC/AD/.* - -#ab2p-unblock-request-R1840 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1840} \ -} -# @@||exponential.com^*/tags.js$domain=yellowbridge.com (easylistchina+easylist.txt: 60265) -.exponential.com/.*/tags\.js -# @@||exponential.com^*/tags.js$domain=yellowbridge.com (easylist.txt: 49780) -.exponential.com/.*/tags\.js - -#ab2p-unblock-request-R1841 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1841} \ -} -# @@||adap.tv/redir/javascript/adaptvAdPlayer.js$domain=yepi.com (easylistchina+easylist.txt: 58182) -.adap.tv/redir/javascript/adaptvAdPlayer\.js -# @@||adap.tv/redir/javascript/adaptvAdPlayer.js$domain=yepi.com (easylist.txt: 47697) -.adap.tv/redir/javascript/adaptvAdPlayer\.js - -#ab2p-unblock-request-R1846 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1846} \ -} -# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina+easylist.txt: 10124) +# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina.txt: 10107) .a.ads.cn.miaozhen.com -#ab2p-unblock-request-R1847 +#ab2p-unblock-request-R328 {-block \ - +client-header-tagger{ab2p-unblock-request-R1847} \ + +client-header-tagger{ab2p-unblock-request-R328} \ } -# @@/cdn-cgi/pe/bag2?r*pagead2.googlesyndication.com%2Fpub-config$domain=youngcons.com (easylistchina+easylist.txt: 58106) -/(.*/)?cdn-cgi/pe/bag2\?r.*pagead2\.googlesyndication\.com%2Fpub-config -# @@/cdn-cgi/pe/bag2?r*googlesyndication.com%2Fpagead%2Fshow_ads.js$domain=youngcons.com (easylistchina+easylist.txt: 58105) -/(.*/)?cdn-cgi/pe/bag2\?r.*googlesyndication\.com%2Fpagead%2Fshow_ads\.js -# @@/cdn-cgi/pe/bag2?r*pagead2.googlesyndication.com%2Fpub-config$domain=youngcons.com (easylist.txt: 47621) -/(.*/)?cdn-cgi/pe/bag2\?r.*pagead2\.googlesyndication\.com%2Fpub-config -# @@/cdn-cgi/pe/bag2?r*googlesyndication.com%2Fpagead%2Fshow_ads.js$domain=youngcons.com (easylist.txt: 47620) -/(.*/)?cdn-cgi/pe/bag2\?r.*googlesyndication\.com%2Fpagead%2Fshow_ads\.js - -#ab2p-unblock-request-R539 -{-block \ - +client-header-tagger{ab2p-unblock-request-R539} \ -} -# @@||ytimg.com^*/channels4_banner_hd.jpg?$domain=youtube.com (easylistchina+easylist.txt: 59864) -.ytimg.com/.*/channels4_banner_hd\.jpg\? -# @@||ytimg.com^*/channels4_banner.jpg?$domain=youtube.com (easylistchina+easylist.txt: 59863) -.ytimg.com/.*/channels4_banner\.jpg\? -# @@||ytimg.com/yts/img/channels/*_banner-*.png$domain=youtube.com (easylistchina+easylist.txt: 59862) -.ytimg.com/yts/img/channels/.*_banner-.*\.png -# @@||ytimg.com/yts/img/channels/*_banner-*.jpg$domain=youtube.com (easylistchina+easylist.txt: 59861) -.ytimg.com/yts/img/channels/.*_banner-.*\.jpg -# @@||ytimg.com^*/channels4_banner_hd.jpg?$domain=youtube.com (easylist.txt: 49379) -.ytimg.com/.*/channels4_banner_hd\.jpg\? -# @@||ytimg.com^*/channels4_banner.jpg?$domain=youtube.com (easylist.txt: 49378) -.ytimg.com/.*/channels4_banner\.jpg\? -# @@||ytimg.com/yts/img/channels/*_banner-*.png$domain=youtube.com (easylist.txt: 49377) -.ytimg.com/yts/img/channels/.*_banner-.*\.png -# @@||ytimg.com/yts/img/channels/*_banner-*.jpg$domain=youtube.com (easylist.txt: 49376) -.ytimg.com/yts/img/channels/.*_banner-.*\.jpg - -#ab2p-unblock-request-R540 -{-block \ - +client-header-tagger{ab2p-unblock-request-R540} \ -} -# @@||folue.info/player/*.js|$domain=youwatch.org (easylistchina+easylist.txt: 60299) -.folue.info/player/.*\.js$ -# @@||folue.info/player/*.js|$domain=youwatch.org (easylist.txt: 49814) -.folue.info/player/.*\.js$ - -#ab2p-unblock-request-R1848 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1848} \ -} -# @@/webThunderDetect.$domain=ypan.cc (easylistchina+easylist.txt: 10061) +# @@/webThunderDetect.$domain=ypan.cc (easylistchina.txt: 10043) /(.*/)?webThunderDetect\. webThunderDetect.*. -#ab2p-unblock-request-R1849 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1849} \ -} -# @@||yttalk.com/threads/*/add-reply$domain=yttalk.com (easylistchina+easylist.txt: 59865) -.yttalk.com/threads/.*/add-reply -# @@||yttalk.com/threads/*/add-reply$domain=yttalk.com (easylist.txt: 49380) -.yttalk.com/threads/.*/add-reply - -#ab2p-unblock-request-R1850 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1850} \ -} -# @@||lp.longtailvideo.com^*/adttext/adttext.js$domain=yuvutu.com (easylistchina+easylist.txt: 61446) -.lp.longtailvideo.com/.*/adttext/adttext\.js -# @@||lp.longtailvideo.com^*/adttext/adttext.js$domain=yuvutu.com (easylist.txt: 50961) -.lp.longtailvideo.com/.*/adttext/adttext\.js - -#ab2p-unblock-request-R1851 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1851} \ -} -# @@/media/banners/*$domain=zakaz.ua|zapals.com (advblock.txt: 7204) -/(.*/)?media/banners/.* - -#ab2p-unblock-request-R1852 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1852} \ -} -# @@||promo.leadia.ru^$domain=zakonrf.info (advblock.txt: 7368) -.promo.leadia.ru - -#ab2p-unblock-request-R1854 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1854} \ -} -# @@||zarplata.ru^*/bfile.ashx?placeid=2&$domain=zarplata.ru (advblock.txt: 7440) -.zarplata.ru/.*/bfile\.ashx\?placeid=2& - -#ab2p-unblock-request-R1857 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1857} \ -} -# @@||tags.bkrtx.com/js/bk-coretag.js$domain=zillow.com (easylistchina+easylist.txt: 59616) -.tags.bkrtx.com/js/bk-coretag\.js -# @@||tags.bkrtx.com/js/bk-coretag.js$domain=zillow.com (easylist.txt: 49131) -.tags.bkrtx.com/js/bk-coretag\.js - -#ab2p-unblock-request-R1858 -{-block \ - +client-header-tagger{ab2p-unblock-request-R1858} \ -} -# @@||akamaihd.net^*/videoAd.js$domain=zynga.com (easylistchina+easylist.txt: 58378) -.akamaihd.net/.*/videoAd\.js -# @@||akamaihd.net^*/videoAd.js$domain=zynga.com (easylist.txt: 47893) -.akamaihd.net/.*/videoAd\.js - #ab2p-unblock-request-Xx {-block \ +client-header-tagger{ab2p-unblock-request-Xx} \ } TAG:^ab2p-unblock-request-Xx$ -# @@||youporn.com/watch_postroll/$xmlhttprequest (easylistchina+easylist.txt: 61722) -.youporn.com/watch_postroll/ -# @@||youporn.com/watch/$xmlhttprequest (easylistchina+easylist.txt: 61721) -.youporn.com/watch/ -# @@||youporn.com/subscriptions/$xmlhttprequest (easylistchina+easylist.txt: 61720) -.youporn.com/subscriptions/ -# @@||youporn.com/searchapi/$xmlhttprequest (easylistchina+easylist.txt: 61719) -.youporn.com/searchapi/ -# @@||youporn.com/notifications/$xmlhttprequest (easylistchina+easylist.txt: 61718) -.youporn.com/notifications/ -# @@||youporn.com/mycollections.json$xmlhttprequest (easylistchina+easylist.txt: 61717) -.youporn.com/mycollections\.json -# @@||youporn.com/esi_home/$xmlhttprequest (easylistchina+easylist.txt: 61716) -.youporn.com/esi_home/ -# @@||youporn.com/change/$xmlhttprequest (easylistchina+easylist.txt: 61715) -.youporn.com/change/ -# @@||youporn.com/ajax/$xmlhttprequest (easylistchina+easylist.txt: 61714) -.youporn.com/ajax/ -# @@||tube8.com/ajax2/$xmlhttprequest (easylistchina+easylist.txt: 61704) -.tube8.com/ajax2/ -# @@||tube8.com/ajax/$xmlhttprequest (easylistchina+easylist.txt: 61703) -.tube8.com/ajax/ -# @@||tube8.com/ajax-$xmlhttprequest (easylistchina+easylist.txt: 61702) -.tube8.com/ajax- -# @@||redtube.com/watched/$xmlhttprequest (easylistchina+easylist.txt: 61696) -.redtube.com/watched/ -# @@||redtube.com/videodetails/$xmlhttprequest (easylistchina+easylist.txt: 61695) -.redtube.com/videodetails/ -# @@||redtube.com/upload/$xmlhttprequest (easylistchina+easylist.txt: 61694) -.redtube.com/upload/ -# @@||redtube.com/tags-stars/$xmlhttprequest (easylistchina+easylist.txt: 61693) -.redtube.com/tags-stars/ -# @@||redtube.com/tags-stars$xmlhttprequest (easylistchina+easylist.txt: 61692) -.redtube.com/tags-stars -# @@||redtube.com/subscribe/$xmlhttprequest (easylistchina+easylist.txt: 61691) -.redtube.com/subscribe/ -# @@||redtube.com/starsuggestion/$xmlhttprequest (easylistchina+easylist.txt: 61690) -.redtube.com/starsuggestion/ -# @@||redtube.com/searchsuggest?$xmlhttprequest (easylistchina+easylist.txt: 61689) -.redtube.com/searchsuggest\? -# @@||redtube.com/relatedvideos/$xmlhttprequest (easylistchina+easylist.txt: 61688) -.redtube.com/relatedvideos/ -# @@||redtube.com/recommended/$xmlhttprequest (easylistchina+easylist.txt: 61687) -.redtube.com/recommended/ -# @@||redtube.com/rate$xmlhttprequest (easylistchina+easylist.txt: 61686) -.redtube.com/rate -# @@||redtube.com/panel/$xmlhttprequest (easylistchina+easylist.txt: 61685) -.redtube.com/panel/ -# @@||redtube.com/notifications/$xmlhttprequest (easylistchina+easylist.txt: 61684) -.redtube.com/notifications/ -# @@||redtube.com/message/$xmlhttprequest (easylistchina+easylist.txt: 61683) -.redtube.com/message/ -# @@||redtube.com/logout$xmlhttprequest (easylistchina+easylist.txt: 61682) -.redtube.com/logout -# @@||redtube.com/language-star-suggestion/$xmlhttprequest (easylistchina+easylist.txt: 61681) -.redtube.com/language-star-suggestion/ -# @@||redtube.com/js/jquery/$xmlhttprequest (easylistchina+easylist.txt: 61680) -.redtube.com/js/jquery/ -# @@||redtube.com/gallery/$xmlhttprequest (easylistchina+easylist.txt: 61678) -.redtube.com/gallery/ -# @@||redtube.com/embed/$xmlhttprequest (easylistchina+easylist.txt: 61677) -.redtube.com/embed/ -# @@||redtube.com/comments/$xmlhttprequest (easylistchina+easylist.txt: 61676) -.redtube.com/comments/ -# @@||redtube.com/blockuser/$xmlhttprequest (easylistchina+easylist.txt: 61675) -.redtube.com/blockuser/ -# @@||redtube.com/advancedsearch$xmlhttprequest (easylistchina+easylist.txt: 61673) -.redtube.com/advancedsearch -# @@||redtube.com/addfriend/$xmlhttprequest (easylistchina+easylist.txt: 61672) -.redtube.com/addfriend/ -# @@||redtube.com/addfavorite/$xmlhttprequest (easylistchina+easylist.txt: 61671) -.redtube.com/addfavorite/ -# @@||pornhub.com/videouploading3/$xmlhttprequest (easylistchina+easylist.txt: 61665) -.pornhub.com/videouploading3/ -# @@||pornhub.com/video/$xmlhttprequest (easylistchina+easylist.txt: 61664) -.pornhub.com/video/ -# @@||pornhub.com/users/$xmlhttprequest (easylistchina+easylist.txt: 61663) -.pornhub.com/users/ -# @@||pornhub.com/user/$xmlhttprequest (easylistchina+easylist.txt: 61662) -.pornhub.com/user/ -# @@||pornhub.com/uploading/$xmlhttprequest (easylistchina+easylist.txt: 61661) -.pornhub.com/uploading/ -# @@||pornhub.com/upload/$xmlhttprequest (easylistchina+easylist.txt: 61660) -.pornhub.com/upload/ -# @@||pornhub.com/svvt/add?$xmlhttprequest (easylistchina+easylist.txt: 61659) -.pornhub.com/svvt/add\? -# @@||pornhub.com/stream/$xmlhttprequest (easylistchina+easylist.txt: 61658) -.pornhub.com/stream/ -# @@||pornhub.com/premium/$xmlhttprequest (easylistchina+easylist.txt: 61657) -.pornhub.com/premium/ -# @@||pornhub.com/pornstars/$xmlhttprequest (easylistchina+easylist.txt: 61656) -.pornhub.com/pornstars/ -# @@||pornhub.com/pornstar/$xmlhttprequest (easylistchina+easylist.txt: 61655) -.pornhub.com/pornstar/ -# @@||pornhub.com/playlist_json/$xmlhttprequest (easylistchina+easylist.txt: 61654) -.pornhub.com/playlist_json/ -# @@||pornhub.com/gif/$xmlhttprequest (easylistchina+easylist.txt: 61651) -.pornhub.com/gif/ -# @@||pornhub.com/front/$xmlhttprequest (easylistchina+easylist.txt: 61650) -.pornhub.com/front/ -# @@||pornhub.com/comment/$xmlhttprequest (easylistchina+easylist.txt: 61649) -.pornhub.com/comment/ -# @@||pornhub.com/chat/$xmlhttprequest (easylistchina+easylist.txt: 61648) -.pornhub.com/chat/ -# @@||pornhub.com/channel/$xmlhttprequest (easylistchina+easylist.txt: 61647) -.pornhub.com/channel/ -# @@||pornhub.com/album_upload$xmlhttprequest (easylistchina+easylist.txt: 61646) -.pornhub.com/album_upload -# @@||pornhub.com/album/$xmlhttprequest (easylistchina+easylist.txt: 61645) -.pornhub.com/album/ -# @@||mrstiff.com/view/textad/$xmlhttprequest (easylistchina+easylist.txt: 61449) -.mrstiff.com/view/textad/ -# @@||cam4.*/ads/directory/$xmlhttprequest (easylistchina+easylist.txt: 61434) -.cam4.*./(.*/)?ads/directory/ -# @@||dailymotion.com/advertise/$xmlhttprequest (easylistchina+easylist.txt: 61285) -.dailymotion.com/advertise/ -# @@||xe.gr/property/recent_ads?$xmlhttprequest (easylistchina+easylist.txt: 61151) -.xe.gr/property/recent_ads\? -# @@||trrsf.com.br/playerttv/$xmlhttprequest (easylistchina+easylist.txt: 61133) -.trrsf.com.br/playerttv/ -# @@||ta3.com/advert-async-system/$xmlhttprequest (easylistchina+easylist.txt: 61128) -.ta3.com/advert-async-system/ -# @@||sanook.com/php/get_ads.php?vast_linear=$xmlhttprequest (easylistchina+easylist.txt: 61106) -.sanook.com/php/get_ads\.php\?vast_linear= -# @@||mail.bg/mail/index/getads/$xmlhttprequest (easylistchina+easylist.txt: 61060) -.mail.bg/mail/index/getads/ -# @@||emag.hu/site_ajax_ads?id=$xmlhttprequest (easylistchina+easylist.txt: 61010) -.emag.hu/site_ajax_ads\?id= -# @@||catmusica.cat/paudio/getads.jsp?$xmlhttprequest (easylistchina+easylist.txt: 60999) -.catmusica.cat/paudio/getads\.jsp\? -# @@||carfinder.gr/api/ads/$xmlhttprequest (easylistchina+easylist.txt: 60998) -.carfinder.gr/api/ads/ -# @@||americateve.com/mediaplayer_ads/new_config_openx.xml$xmlhttprequest (easylistchina+easylist.txt: 60977) -.americateve.com/mediaplayer_ads/new_config_openx\.xml -# @@||amarillas.cl/advertise.do?$xmlhttprequest (easylistchina+easylist.txt: 60973) -.amarillas.cl/advertise\.do\? -# @@||zattoo.com/ads/cs?$xmlhttprequest (easylistchina+easylist.txt: 60919) -.zattoo.com/ads/cs\? -# @@||streamcloud.eu^$xmlhttprequest (easylistchina+easylist.txt: 60771) -.streamcloud.eu -# @@||player.foxfdm.com^*/playback.js$xmlhttprequest (easylistchina+easylist.txt: 60652) -.player.foxfdm.com/.*/playback\.js -# @@||dutplanet.net/ajax/reclamecheck.php?$xmlhttprequest (easylistchina+easylist.txt: 60239) -.dutplanet.net/ajax/reclamecheck\.php\? -# @@||youtube.com^*_adsense_$xmlhttprequest (easylistchina+easylist.txt: 59860) -.youtube.com/.*_adsense_ -# @@||wikia.com/__spotlights/spc.php?$xmlhttprequest (easylistchina+easylist.txt: 59814) -.wikia.com/__spotlights/spc\.php\? -# @@||vidcoin.com/adserver/$subdocument,xmlhttprequest (easylistchina+easylist.txt: 59755) -.vidcoin.com/adserver/ -# @@||trulia.com/modules/ad_agents_$xmlhttprequest (easylistchina+easylist.txt: 59701) -.trulia.com/modules/ad_agents_ -# @@||toongoggles.com/getads?$xmlhttprequest (easylistchina+easylist.txt: 59677) -.toongoggles.com/getads\? -# @@||theweathernetwork.com/tpl/web/adtech/$xmlhttprequest (easylistchina+easylist.txt: 59652) -.theweathernetwork.com/tpl/web/adtech/ -# @@||theatlantic.com/widget/$xmlhttprequest (easylistchina+easylist.txt: 59633) -.theatlantic.com/widget/ -# @@||startxchange.com/textad.php?$xmlhttprequest (easylistchina+easylist.txt: 59585) -.startxchange.com/textad\.php\? -# @@||sprint.com^*/adservice/$xmlhttprequest (easylistchina+easylist.txt: 59579) -.sprint.com/.*/adservice/ -# @@||sonypictures.com/global/images/ads/300x250/ad300x250.json$xmlhttprequest (easylistchina+easylist.txt: 59559) -.sonypictures.com/global/images/ads/300x250/ad300x250\.json -# @@||signin.verizon.com^*/affiliate/$subdocument,xmlhttprequest (easylistchina+easylist.txt: 59534) -.signin.verizon.com/.*/affiliate/ -# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easylistchina+easylist.txt: 59523) -.sh.st/bundles/smeadvertisement/img/track\.gif\? -# @@||securenetsystems.net/advertising/ad_campaign_get.cfm?$xmlhttprequest (easylistchina+easylist.txt: 59509) -.securenetsystems.net/advertising/ad_campaign_get\.cfm\? -# @@||ryuutama.com/ads/ads.php?get=$xmlhttprequest (easylistchina+easylist.txt: 59480) -.ryuutama.com/ads/ads\.php\?get= -# @@||procato.com/_pub/ads.php?u=$xmlhttprequest (easylistchina+easylist.txt: 59406) -.procato.com/_pub/ads\.php\?u= -# @@||perbang.dk/_pub/ads.php?u=$xmlhttprequest (easylistchina+easylist.txt: 59355) -.perbang.dk/_pub/ads\.php\?u= -# @@||otakumode.com/shop/titleArea?*_promo_id=$xmlhttprequest (easylistchina+easylist.txt: 59312) -.otakumode.com/shop/titleArea\?.*_promo_id= -# @@||openload.io/deliverad/$xmlhttprequest (easylistchina+easylist.txt: 59298) -.openload.io/deliverad/ -# @@||onetravel.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 59296) -.onetravel.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||oas.theguardian.com^$xmlhttprequest (easylistchina+easylist.txt: 59272) -.oas.theguardian.com -# @@||music-clips.net/ads/list.txt?_=$xmlhttprequest (easylistchina+easylist.txt: 59205) -.music-clips.net/ads/list\.txt\?_= -# @@||mail.google.com^*&view=ad&$xmlhttprequest (easylistchina+easylist.txt: 59126) -.mail.google.com/.*&view=ad& -# @@||lovefilm.com/ajax/widgets/advertising/$xmlhttprequest (easylistchina+easylist.txt: 59111) -.lovefilm.com/ajax/widgets/advertising/ -# @@||itv.com/itv/hserver/*/site=itv/$xmlhttprequest (easylistchina+easylist.txt: 59036) -.itv.com/itv/hserver/.*/site=itv/ -# @@||houstonpress.com/adindex/$xmlhttprequest (easylistchina+easylist.txt: 58950) -.houstonpress.com/adindex/ -# @@||guardianapps.co.uk^*/advertisement-features$xmlhttprequest (easylistchina+easylist.txt: 58922) -.guardianapps.co.uk/.*/advertisement-features -# @@||google.com/search?q=$xmlhttprequest (easylistchina+easylist.txt: 58904) -.google.com/search\?q= -# @@||google.*/search?sclient=*&q=$xmlhttprequest (easylistchina+easylist.txt: 58893) -.google.*./(.*/)?search\?sclient=.*&q= -# @@||google.*/s?*&q=$xmlhttprequest (easylistchina+easylist.txt: 58892) -.google.*./(.*/)?s\?.*&q= -# @@||goember.com/ad/*.xml?$xmlhttprequest (easylistchina+easylist.txt: 58890) -.goember.com/ad/.*\.xml\? -# @@||fortune.com/data/chartbeat/$xmlhttprequest (easylistchina+easylist.txt: 58836) -.fortune.com/data/chartbeat/ -# @@||eightinc.com/admin/zone.php?zoneid=$xmlhttprequest (easylistchina+easylist.txt: 58775) -.eightinc.com/admin/zone\.php\?zoneid= -# @@||eafyfsuh.net/intermission/loadTargetUrl?t=$xmlhttprequest (easylistchina+easylist.txt: 58756) -.eafyfsuh.net/intermission/loadTargetUrl\?t= -# @@||dove.saymedia.com^$xmlhttprequest (easylistchina+easylist.txt: 58738) -.dove.saymedia.com -# @@||delicious.com^*/compose?url=$xmlhttprequest (easylistchina+easylist.txt: 58661) -.delicious.com/.*/compose\?url= -# @@||cnet.com/ad/ad-cookie/*?_=$xmlhttprequest (easylistchina+easylist.txt: 58602) -.cnet.com/ad/ad-cookie/.*\?_= -# @@||classifiedads.com/adbox.php$xmlhttprequest (easylistchina+easylist.txt: 58593) -.classifiedads.com/adbox\.php -# @@||cheapoair.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 58582) -.cheapoair.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||cheapoair.ca/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylistchina+easylist.txt: 58581) -.cheapoair.ca/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||cbc.ca/ads/*.php?$xmlhttprequest (easylistchina+easylist.txt: 58549) -.cbc.ca/ads/.*\.php\? -# @@||carambo.la^*/GetAds|$xmlhttprequest (easylistchina+easylist.txt: 58544) -.carambo.la/.*/GetAds$ -# @@||bnbfinder.com/adv_getCity.php?$xmlhttprequest (easylistchina+easylist.txt: 58507) -.bnbfinder.com/adv_getCity\.php\? -# @@||bing.com/maps/Ads.ashx$xmlhttprequest (easylistchina+easylist.txt: 58499) -.bing.com/maps/Ads\.ashx -# @@||bing.com/images/async?q=$xmlhttprequest (easylistchina+easylist.txt: 58498) -.bing.com/images/async\?q= -# @@||bankofamerica.com^*?adx=$xmlhttprequest (easylistchina+easylist.txt: 58471) -.bankofamerica.com/.*\?adx= -# @@||avclub.com/ads/av-video-ad/$xmlhttprequest (easylistchina+easylist.txt: 58461) -.avclub.com/ads/av-video-ad/ -# @@||autotrader.co.uk^*_adverts/$xmlhttprequest (easylistchina+easylist.txt: 58460) -.autotrader.co.uk/.*_adverts/ -# @@||autotrader.co.uk/advert/$xmlhttprequest (easylistchina+easylist.txt: 58457) -.autotrader.co.uk/advert/ -# @@||apps.digmyweb.com/ads?$xmlhttprequest (easylistchina+easylist.txt: 58427) -.apps.digmyweb.com/ads\? -# @@||applegate.co.uk/stats/recordclick.html?$xmlhttprequest (easylistchina+easylist.txt: 58426) -.applegate.co.uk/stats/recordclick\.html\? -# @@||adserver.vidcoin.com^*/get_campaigns?$xmlhttprequest (easylistchina+easylist.txt: 58296) -.adserver.vidcoin.com/.*/get_campaigns\? -# @@||192.168.$xmlhttprequest (easylistchina+easylist.txt: 58111) -.192.168.*. -# @@||speedtest.net/results.php$xmlhttprequest (easylistchina+easylist.txt: 45914) -.speedtest.net/results\.php -# @@||youporn.com/watch_postroll/$xmlhttprequest (easylist.txt: 51237) -.youporn.com/watch_postroll/ -# @@||youporn.com/watch/$xmlhttprequest (easylist.txt: 51236) -.youporn.com/watch/ -# @@||youporn.com/subscriptions/$xmlhttprequest (easylist.txt: 51235) -.youporn.com/subscriptions/ -# @@||youporn.com/searchapi/$xmlhttprequest (easylist.txt: 51234) -.youporn.com/searchapi/ -# @@||youporn.com/notifications/$xmlhttprequest (easylist.txt: 51233) -.youporn.com/notifications/ -# @@||youporn.com/mycollections.json$xmlhttprequest (easylist.txt: 51232) -.youporn.com/mycollections\.json -# @@||youporn.com/esi_home/$xmlhttprequest (easylist.txt: 51231) -.youporn.com/esi_home/ -# @@||youporn.com/change/$xmlhttprequest (easylist.txt: 51230) -.youporn.com/change/ -# @@||youporn.com/ajax/$xmlhttprequest (easylist.txt: 51229) -.youporn.com/ajax/ -# @@||tube8.com/ajax2/$xmlhttprequest (easylist.txt: 51219) -.tube8.com/ajax2/ -# @@||tube8.com/ajax/$xmlhttprequest (easylist.txt: 51218) -.tube8.com/ajax/ -# @@||tube8.com/ajax-$xmlhttprequest (easylist.txt: 51217) -.tube8.com/ajax- -# @@||redtube.com/watched/$xmlhttprequest (easylist.txt: 51211) -.redtube.com/watched/ -# @@||redtube.com/videodetails/$xmlhttprequest (easylist.txt: 51210) -.redtube.com/videodetails/ -# @@||redtube.com/upload/$xmlhttprequest (easylist.txt: 51209) -.redtube.com/upload/ -# @@||redtube.com/tags-stars/$xmlhttprequest (easylist.txt: 51208) -.redtube.com/tags-stars/ -# @@||redtube.com/tags-stars$xmlhttprequest (easylist.txt: 51207) -.redtube.com/tags-stars -# @@||redtube.com/subscribe/$xmlhttprequest (easylist.txt: 51206) -.redtube.com/subscribe/ -# @@||redtube.com/starsuggestion/$xmlhttprequest (easylist.txt: 51205) -.redtube.com/starsuggestion/ -# @@||redtube.com/searchsuggest?$xmlhttprequest (easylist.txt: 51204) -.redtube.com/searchsuggest\? -# @@||redtube.com/relatedvideos/$xmlhttprequest (easylist.txt: 51203) -.redtube.com/relatedvideos/ -# @@||redtube.com/recommended/$xmlhttprequest (easylist.txt: 51202) -.redtube.com/recommended/ -# @@||redtube.com/rate$xmlhttprequest (easylist.txt: 51201) -.redtube.com/rate -# @@||redtube.com/panel/$xmlhttprequest (easylist.txt: 51200) -.redtube.com/panel/ -# @@||redtube.com/notifications/$xmlhttprequest (easylist.txt: 51199) -.redtube.com/notifications/ -# @@||redtube.com/message/$xmlhttprequest (easylist.txt: 51198) -.redtube.com/message/ -# @@||redtube.com/logout$xmlhttprequest (easylist.txt: 51197) -.redtube.com/logout -# @@||redtube.com/language-star-suggestion/$xmlhttprequest (easylist.txt: 51196) -.redtube.com/language-star-suggestion/ -# @@||redtube.com/js/jquery/$xmlhttprequest (easylist.txt: 51195) -.redtube.com/js/jquery/ -# @@||redtube.com/gallery/$xmlhttprequest (easylist.txt: 51193) -.redtube.com/gallery/ -# @@||redtube.com/embed/$xmlhttprequest (easylist.txt: 51192) -.redtube.com/embed/ -# @@||redtube.com/comments/$xmlhttprequest (easylist.txt: 51191) -.redtube.com/comments/ -# @@||redtube.com/blockuser/$xmlhttprequest (easylist.txt: 51190) -.redtube.com/blockuser/ -# @@||redtube.com/advancedsearch$xmlhttprequest (easylist.txt: 51188) -.redtube.com/advancedsearch -# @@||redtube.com/addfriend/$xmlhttprequest (easylist.txt: 51187) -.redtube.com/addfriend/ -# @@||redtube.com/addfavorite/$xmlhttprequest (easylist.txt: 51186) -.redtube.com/addfavorite/ -# @@||pornhub.com/videouploading3/$xmlhttprequest (easylist.txt: 51180) -.pornhub.com/videouploading3/ -# @@||pornhub.com/video/$xmlhttprequest (easylist.txt: 51179) -.pornhub.com/video/ -# @@||pornhub.com/users/$xmlhttprequest (easylist.txt: 51178) -.pornhub.com/users/ -# @@||pornhub.com/user/$xmlhttprequest (easylist.txt: 51177) -.pornhub.com/user/ -# @@||pornhub.com/uploading/$xmlhttprequest (easylist.txt: 51176) -.pornhub.com/uploading/ -# @@||pornhub.com/upload/$xmlhttprequest (easylist.txt: 51175) -.pornhub.com/upload/ -# @@||pornhub.com/svvt/add?$xmlhttprequest (easylist.txt: 51174) -.pornhub.com/svvt/add\? -# @@||pornhub.com/stream/$xmlhttprequest (easylist.txt: 51173) -.pornhub.com/stream/ -# @@||pornhub.com/premium/$xmlhttprequest (easylist.txt: 51172) -.pornhub.com/premium/ -# @@||pornhub.com/pornstars/$xmlhttprequest (easylist.txt: 51171) -.pornhub.com/pornstars/ -# @@||pornhub.com/pornstar/$xmlhttprequest (easylist.txt: 51170) -.pornhub.com/pornstar/ -# @@||pornhub.com/playlist_json/$xmlhttprequest (easylist.txt: 51169) -.pornhub.com/playlist_json/ -# @@||pornhub.com/gif/$xmlhttprequest (easylist.txt: 51166) -.pornhub.com/gif/ -# @@||pornhub.com/front/$xmlhttprequest (easylist.txt: 51165) -.pornhub.com/front/ -# @@||pornhub.com/comment/$xmlhttprequest (easylist.txt: 51164) -.pornhub.com/comment/ -# @@||pornhub.com/chat/$xmlhttprequest (easylist.txt: 51163) -.pornhub.com/chat/ -# @@||pornhub.com/channel/$xmlhttprequest (easylist.txt: 51162) -.pornhub.com/channel/ -# @@||pornhub.com/album_upload$xmlhttprequest (easylist.txt: 51161) -.pornhub.com/album_upload -# @@||pornhub.com/album/$xmlhttprequest (easylist.txt: 51160) -.pornhub.com/album/ -# @@||mrstiff.com/view/textad/$xmlhttprequest (easylist.txt: 50964) -.mrstiff.com/view/textad/ -# @@||cam4.*/ads/directory/$xmlhttprequest (easylist.txt: 50949) -.cam4.*./(.*/)?ads/directory/ -# @@||dailymotion.com/advertise/$xmlhttprequest (easylist.txt: 50800) -.dailymotion.com/advertise/ -# @@||xe.gr/property/recent_ads?$xmlhttprequest (easylist.txt: 50666) -.xe.gr/property/recent_ads\? -# @@||trrsf.com.br/playerttv/$xmlhttprequest (easylist.txt: 50648) -.trrsf.com.br/playerttv/ -# @@||ta3.com/advert-async-system/$xmlhttprequest (easylist.txt: 50643) -.ta3.com/advert-async-system/ -# @@||sanook.com/php/get_ads.php?vast_linear=$xmlhttprequest (easylist.txt: 50621) -.sanook.com/php/get_ads\.php\?vast_linear= -# @@||mail.bg/mail/index/getads/$xmlhttprequest (easylist.txt: 50575) -.mail.bg/mail/index/getads/ -# @@||emag.hu/site_ajax_ads?id=$xmlhttprequest (easylist.txt: 50525) -.emag.hu/site_ajax_ads\?id= -# @@||catmusica.cat/paudio/getads.jsp?$xmlhttprequest (easylist.txt: 50514) -.catmusica.cat/paudio/getads\.jsp\? -# @@||carfinder.gr/api/ads/$xmlhttprequest (easylist.txt: 50513) -.carfinder.gr/api/ads/ -# @@||americateve.com/mediaplayer_ads/new_config_openx.xml$xmlhttprequest (easylist.txt: 50492) -.americateve.com/mediaplayer_ads/new_config_openx\.xml -# @@||amarillas.cl/advertise.do?$xmlhttprequest (easylist.txt: 50488) -.amarillas.cl/advertise\.do\? -# @@||zattoo.com/ads/cs?$xmlhttprequest (easylist.txt: 50434) -.zattoo.com/ads/cs\? -# @@||streamcloud.eu^$xmlhttprequest (easylist.txt: 50286) -.streamcloud.eu -# @@||player.foxfdm.com^*/playback.js$xmlhttprequest (easylist.txt: 50167) -.player.foxfdm.com/.*/playback\.js -# @@||dutplanet.net/ajax/reclamecheck.php?$xmlhttprequest (easylist.txt: 49754) -.dutplanet.net/ajax/reclamecheck\.php\? -# @@||youtube.com^*_adsense_$xmlhttprequest (easylist.txt: 49375) -.youtube.com/.*_adsense_ -# @@||wikia.com/__spotlights/spc.php?$xmlhttprequest (easylist.txt: 49329) -.wikia.com/__spotlights/spc\.php\? -# @@||vidcoin.com/adserver/$subdocument,xmlhttprequest (easylist.txt: 49270) -.vidcoin.com/adserver/ -# @@||trulia.com/modules/ad_agents_$xmlhttprequest (easylist.txt: 49216) -.trulia.com/modules/ad_agents_ -# @@||toongoggles.com/getads?$xmlhttprequest (easylist.txt: 49192) -.toongoggles.com/getads\? -# @@||theweathernetwork.com/tpl/web/adtech/$xmlhttprequest (easylist.txt: 49167) -.theweathernetwork.com/tpl/web/adtech/ -# @@||theatlantic.com/widget/$xmlhttprequest (easylist.txt: 49148) -.theatlantic.com/widget/ -# @@||startxchange.com/textad.php?$xmlhttprequest (easylist.txt: 49100) -.startxchange.com/textad\.php\? -# @@||sprint.com^*/adservice/$xmlhttprequest (easylist.txt: 49094) -.sprint.com/.*/adservice/ -# @@||sonypictures.com/global/images/ads/300x250/ad300x250.json$xmlhttprequest (easylist.txt: 49074) -.sonypictures.com/global/images/ads/300x250/ad300x250\.json -# @@||signin.verizon.com^*/affiliate/$subdocument,xmlhttprequest (easylist.txt: 49049) -.signin.verizon.com/.*/affiliate/ -# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easylist.txt: 49038) -.sh.st/bundles/smeadvertisement/img/track\.gif\? -# @@||securenetsystems.net/advertising/ad_campaign_get.cfm?$xmlhttprequest (easylist.txt: 49024) -.securenetsystems.net/advertising/ad_campaign_get\.cfm\? -# @@||ryuutama.com/ads/ads.php?get=$xmlhttprequest (easylist.txt: 48995) -.ryuutama.com/ads/ads\.php\?get= -# @@||procato.com/_pub/ads.php?u=$xmlhttprequest (easylist.txt: 48921) -.procato.com/_pub/ads\.php\?u= -# @@||perbang.dk/_pub/ads.php?u=$xmlhttprequest (easylist.txt: 48870) -.perbang.dk/_pub/ads\.php\?u= -# @@||otakumode.com/shop/titleArea?*_promo_id=$xmlhttprequest (easylist.txt: 48827) -.otakumode.com/shop/titleArea\?.*_promo_id= -# @@||openload.io/deliverad/$xmlhttprequest (easylist.txt: 48813) -.openload.io/deliverad/ -# @@||onetravel.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48811) -.onetravel.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||oas.theguardian.com^$xmlhttprequest (easylist.txt: 48787) -.oas.theguardian.com -# @@||music-clips.net/ads/list.txt?_=$xmlhttprequest (easylist.txt: 48720) -.music-clips.net/ads/list\.txt\?_= -# @@||mail.google.com^*&view=ad&$xmlhttprequest (easylist.txt: 48641) -.mail.google.com/.*&view=ad& -# @@||lovefilm.com/ajax/widgets/advertising/$xmlhttprequest (easylist.txt: 48626) -.lovefilm.com/ajax/widgets/advertising/ -# @@||itv.com/itv/hserver/*/site=itv/$xmlhttprequest (easylist.txt: 48551) -.itv.com/itv/hserver/.*/site=itv/ -# @@||houstonpress.com/adindex/$xmlhttprequest (easylist.txt: 48465) -.houstonpress.com/adindex/ -# @@||guardianapps.co.uk^*/advertisement-features$xmlhttprequest (easylist.txt: 48437) -.guardianapps.co.uk/.*/advertisement-features -# @@||google.com/search?q=$xmlhttprequest (easylist.txt: 48419) -.google.com/search\?q= -# @@||google.*/search?sclient=*&q=$xmlhttprequest (easylist.txt: 48408) -.google.*./(.*/)?search\?sclient=.*&q= -# @@||google.*/s?*&q=$xmlhttprequest (easylist.txt: 48407) -.google.*./(.*/)?s\?.*&q= -# @@||goember.com/ad/*.xml?$xmlhttprequest (easylist.txt: 48405) -.goember.com/ad/.*\.xml\? -# @@||fortune.com/data/chartbeat/$xmlhttprequest (easylist.txt: 48351) -.fortune.com/data/chartbeat/ -# @@||eightinc.com/admin/zone.php?zoneid=$xmlhttprequest (easylist.txt: 48290) -.eightinc.com/admin/zone\.php\?zoneid= -# @@||eafyfsuh.net/intermission/loadTargetUrl?t=$xmlhttprequest (easylist.txt: 48271) -.eafyfsuh.net/intermission/loadTargetUrl\?t= -# @@||dove.saymedia.com^$xmlhttprequest (easylist.txt: 48253) -.dove.saymedia.com -# @@||delicious.com^*/compose?url=$xmlhttprequest (easylist.txt: 48176) -.delicious.com/.*/compose\?url= -# @@||cnet.com/ad/ad-cookie/*?_=$xmlhttprequest (easylist.txt: 48117) -.cnet.com/ad/ad-cookie/.*\?_= -# @@||classifiedads.com/adbox.php$xmlhttprequest (easylist.txt: 48108) -.classifiedads.com/adbox\.php -# @@||cheapoair.com/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48097) -.cheapoair.com/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||cheapoair.ca/desktopmodules/adsales/adsaleshandle.ashx?$xmlhttprequest (easylist.txt: 48096) -.cheapoair.ca/desktopmodules/adsales/adsaleshandle\.ashx\? -# @@||cbc.ca/ads/*.php?$xmlhttprequest (easylist.txt: 48064) -.cbc.ca/ads/.*\.php\? -# @@||carambo.la^*/GetAds|$xmlhttprequest (easylist.txt: 48059) -.carambo.la/.*/GetAds$ -# @@||bnbfinder.com/adv_getCity.php?$xmlhttprequest (easylist.txt: 48022) -.bnbfinder.com/adv_getCity\.php\? -# @@||bing.com/maps/Ads.ashx$xmlhttprequest (easylist.txt: 48014) -.bing.com/maps/Ads\.ashx -# @@||bing.com/images/async?q=$xmlhttprequest (easylist.txt: 48013) -.bing.com/images/async\?q= -# @@||bankofamerica.com^*?adx=$xmlhttprequest (easylist.txt: 47986) -.bankofamerica.com/.*\?adx= -# @@||avclub.com/ads/av-video-ad/$xmlhttprequest (easylist.txt: 47976) -.avclub.com/ads/av-video-ad/ -# @@||autotrader.co.uk^*_adverts/$xmlhttprequest (easylist.txt: 47975) -.autotrader.co.uk/.*_adverts/ -# @@||autotrader.co.uk/advert/$xmlhttprequest (easylist.txt: 47972) -.autotrader.co.uk/advert/ -# @@||apps.digmyweb.com/ads?$xmlhttprequest (easylist.txt: 47942) -.apps.digmyweb.com/ads\? -# @@||applegate.co.uk/stats/recordclick.html?$xmlhttprequest (easylist.txt: 47941) -.applegate.co.uk/stats/recordclick\.html\? -# @@||adserver.vidcoin.com^*/get_campaigns?$xmlhttprequest (easylist.txt: 47811) -.adserver.vidcoin.com/.*/get_campaigns\? -# @@||192.168.$xmlhttprequest (easylist.txt: 47626) -.192.168.*. -# @@||speedtest.net/results.php$xmlhttprequest (easylist.txt: 35429) -.speedtest.net/results\.php -#ab2p-unblock-request-Xx-when-R819 +#ab2p-unblock-request-Xx-when-R284 {-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R819} \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R284} \ } -# @@||accelo.com^*/affiliation/$xmlhttprequest,domain=accelo.com (easylistchina+easylist.txt: 58144) -.accelo.com/.*/affiliation/ -# @@||accelo.com^*/affiliation/$xmlhttprequest,domain=accelo.com (easylist.txt: 47659) -.accelo.com/.*/affiliation/ - -#ab2p-unblock-request-Xx-when-R844 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R844} \ -} -# @@||adroll.com^$xmlhttprequest,domain=adroll.com (easylistchina+easylist.txt: 61245) -.adroll.com -# @@||adroll.com^$xmlhttprequest,domain=adroll.com (easylist.txt: 50760) -.adroll.com - -#ab2p-unblock-request-Xx-when-R867 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R867} \ -} -# @@||affinitylive.com^*/affiliation/$xmlhttprequest,domain=affinitylive.com (easylistchina+easylist.txt: 58363) -.affinitylive.com/.*/affiliation/ -# @@||affinitylive.com^*/affiliation/$xmlhttprequest,domain=affinitylive.com (easylist.txt: 47878) -.affinitylive.com/.*/affiliation/ - -#ab2p-unblock-request-Xx-when-R980 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R980} \ -} -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fgpt%2Fpubads_impl_$xmlhttprequest,domain=biznews.com (easylistchina+easylist.txt: 58103) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fgpt%2Fpubads_impl_ -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fgpt%2Fpubads_impl_$xmlhttprequest,domain=biznews.com (easylist.txt: 47618) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fgpt%2Fpubads_impl_ - -#ab2p-unblock-request-Xx-when-R1008 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1008} \ -} -# @@||ad4.liverail.com/|$xmlhttprequest,domain=c.brightcove.com (easylistchina+easylist.txt: 58173) -.ad4.liverail.com/$ -# @@||ad4.liverail.com/|$xmlhttprequest,domain=c.brightcove.com (easylist.txt: 47688) -.ad4.liverail.com/$ - -#ab2p-unblock-request-Xx-when-R1034 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1034} \ -} -# @@||rovicorp.com/advertising/*&appver=$xmlhttprequest,domain=charter.net (easylistchina+easylist.txt: 59471) -.rovicorp.com/advertising/.*&appver= -# @@||rovicorp.com/advertising/*&appver=$xmlhttprequest,domain=charter.net (easylist.txt: 48986) -.rovicorp.com/advertising/.*&appver= - -#ab2p-unblock-request-Xx-when-R1042 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1042} \ -} -# @@||screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer.html?type=ADREQUEST&$xmlhttprequest,domain=cinemassacre.com (easylistchina+easylist.txt: 59498) -.screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer\.html\?type=ADREQUEST& -# @@||screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer.html?type=ADREQUEST&$xmlhttprequest,domain=cinemassacre.com (easylist.txt: 49013) -.screenwavemedia.com/play/SWMAdPlayer/SWMAdPlayer\.html\?type=ADREQUEST& - -#ab2p-unblock-request-Xx-when-R1071 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1071} \ -} -# @@||g.doubleclick.net/gampad/ads?^*&sz=970x90%7C728x90^$xmlhttprequest,domain=cwtv.com (easylistchina+easylist.txt: 60323) -.g.doubleclick.net/gampad/ads\?[^\w%.-].*&sz=970x90%7C728x90[^\w%.-] -# @@||g.doubleclick.net/gampad/ads?^*&sz=970x90%7C728x90^$xmlhttprequest,domain=cwtv.com (easylist.txt: 49838) -.g.doubleclick.net/gampad/ads\?[^\w%.-].*&sz=970x90%7C728x90[^\w%.-] - -#ab2p-unblock-request-Xx-when-R1109 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1109} \ -} -# @@||analytics.disneyinternational.com/ads/tagsv2/video/$xmlhttprequest,domain=disney.no (easylistchina+easylist.txt: 60978) -.analytics.disneyinternational.com/ads/tagsv2/video/ -# @@||analytics.disneyinternational.com/ads/tagsv2/video/$xmlhttprequest,domain=disney.no (easylist.txt: 50493) -.analytics.disneyinternational.com/ads/tagsv2/video/ - -#ab2p-unblock-request-Xx-when-R1135 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1135} \ -} -# @@||ads.adaptv.advertising.com^$xmlhttprequest,domain=easyrecipesite.com (easylistchina+easylist.txt: 58220) -.ads.adaptv.advertising.com -# @@||ads.adaptv.advertising.com^$xmlhttprequest,domain=easyrecipesite.com (easylist.txt: 47735) -.ads.adaptv.advertising.com - -#ab2p-unblock-request-Xx-when-R1175 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1175} \ -} -# @@||expdash.adtlgc.com^$xmlhttprequest,domain=expressen.se (easylistchina+easylist.txt: 61019) -.expdash.adtlgc.com -# @@||expdash.adtlgc.com^$xmlhttprequest,domain=expressen.se (easylist.txt: 50534) -.expdash.adtlgc.com - -#ab2p-unblock-request-Xx-when-R1181 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1181} \ -} -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fpagead%2Fconversion.js$xmlhttprequest,domain=factom.org (easylistchina+easylist.txt: 58104) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fpagead%2Fconversion\.js -# @@/cdn-cgi/pe/bag2?*googleadservices.com%2Fpagead%2Fconversion.js$xmlhttprequest,domain=factom.org (easylist.txt: 47619) -/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com%2Fpagead%2Fconversion\.js - -#ab2p-unblock-request-Xx-when-R1257 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1257} \ -} -# @@/cdn-cgi/pe/bag2?r[]=*juicyads.com$xmlhttprequest,domain=glamourbabe.eu (easylistchina+easylist.txt: 61423) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com -# @@/cdn-cgi/pe/bag2?r[]=*juicyads.com$xmlhttprequest,domain=glamourbabe.eu (easylist.txt: 50938) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*juicyads\.com - -#ab2p-unblock-request-Xx-when-R1279 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1279} \ -} -# @@/cdn-cgi/pe/bag2?r[]=*popads.net$xmlhttprequest,domain=hd-porn.me (easylistchina+easylist.txt: 61424) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# @@/cdn-cgi/pe/bag2?r[]=*ads.exoclick.com$xmlhttprequest,domain=hd-porn.me (easylistchina+easylist.txt: 61422) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com -# @@/cdn-cgi/pe/bag2?r[]=*popads.net$xmlhttprequest,domain=hd-porn.me (easylist.txt: 50939) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*popads\.net -# @@/cdn-cgi/pe/bag2?r[]=*ads.exoclick.com$xmlhttprequest,domain=hd-porn.me (easylist.txt: 50937) -/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*ads\.exoclick\.com - -#ab2p-unblock-request-Xx-when-R1316 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1316} \ -} -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$xmlhttprequest,domain=imasdk.googleapis.com (easylistchina+easylist.txt: 58170) -.ad4.liverail.com/\?LR_PUBLISHER_ID= -# @@||ad4.liverail.com/?LR_PUBLISHER_ID=$xmlhttprequest,domain=imasdk.googleapis.com (easylist.txt: 47685) -.ad4.liverail.com/\?LR_PUBLISHER_ID= - -#ab2p-unblock-request-Xx-when-R1328 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1328} \ -} -# @@||adview.pl/ad/GetReklamyMultimediaVast?dir=*&adType=PREROLL&$xmlhttprequest,domain=insys.pl (easylistchina+easylist.txt: 60034) -.adview.pl/ad/GetReklamyMultimediaVast\?dir=.*&adType=PREROLL& -# @@||adview.pl/ad/GetReklamyMultimediaVast?dir=*&adType=PREROLL&$xmlhttprequest,domain=insys.pl (easylist.txt: 49549) -.adview.pl/ad/GetReklamyMultimediaVast\?dir=.*&adType=PREROLL& - -#ab2p-unblock-request-Xx-when-R1354 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1354} \ -} -# @@||cloudfront.net/_ads/$xmlhttprequest,domain=jobstreet.co.id|jobstreet.co.in|jobstreet.co.th|jobstreet.com|jobstreet.com.my|jobstreet.com.ph|jobstreet.com.sg|jobstreet.vn (easylistchina+easylist.txt: 58598) -.cloudfront.net/_ads/ -# @@||cloudfront.net/_ads/$xmlhttprequest,domain=jobstreet.co.id|jobstreet.co.in|jobstreet.co.th|jobstreet.com|jobstreet.com.my|jobstreet.com.ph|jobstreet.com.sg|jobstreet.vn (easylist.txt: 48113) -.cloudfront.net/_ads/ - -#ab2p-unblock-request-Xx-when-R1405 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1405} \ -} -# @@||d3iuob6xw3k667.cloudfront.net^*.com/ad/$xmlhttprequest,domain=lucidchart.com|lucidpress.com (easylistchina+easylist.txt: 58642) -.d3iuob6xw3k667.cloudfront.net/.*\.com/ad/ -# @@||d3iuob6xw3k667.cloudfront.net^*.com/ad/$xmlhttprequest,domain=lucidchart.com|lucidpress.com (easylist.txt: 48157) -.d3iuob6xw3k667.cloudfront.net/.*\.com/ad/ - -#ab2p-unblock-request-Xx-when-R1407 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1407} \ -} -# @@||kixer.com/ad/2?$xmlhttprequest,domain=m.tmz.com (easylistchina+easylist.txt: 59063) -.kixer.com/ad/2\? -# @@||kixer.com/ad/12?$xmlhttprequest,domain=m.tmz.com (easylistchina+easylist.txt: 59062) -.kixer.com/ad/12\? -# @@||kixer.com/ad/2?$xmlhttprequest,domain=m.tmz.com (easylist.txt: 48578) -.kixer.com/ad/2\? -# @@||kixer.com/ad/12?$xmlhttprequest,domain=m.tmz.com (easylist.txt: 48577) -.kixer.com/ad/12\? - -#ab2p-unblock-request-Xx-when-R1440 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1440} \ -} -# @@||advertising.mercadolivre.com.br^$xmlhttprequest,domain=mercadolivre.com.br (easylistchina+easylist.txt: 60965) -.advertising.mercadolivre.com.br -# @@||advertising.mercadolivre.com.br^$xmlhttprequest,domain=mercadolivre.com.br (easylist.txt: 50480) -.advertising.mercadolivre.com.br - -#ab2p-unblock-request-Xx-when-R1462 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1462} \ -} -# @@||monster.com/services/bannerad.asmx/getadsrc$xmlhttprequest,domain=monster.com (easylistchina+easylist.txt: 59192) -.monster.com/services/bannerad\.asmx/getadsrc -# @@||monster.com/services/bannerad.asmx/getadsrc$xmlhttprequest,domain=monster.com (easylist.txt: 48707) -.monster.com/services/bannerad\.asmx/getadsrc - -#ab2p-unblock-request-Xx-when-R1492 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1492} \ -} -# @@||doubleclick.net/pfadx/nfl.*/html5;$xmlhttprequest,domain=nfl.com (easylistchina+easylist.txt: 58726) -.doubleclick.net/pfadx/nfl\..*/html5; -# @@||doubleclick.net/pfadx/nfl.*/html5;$xmlhttprequest,domain=nfl.com (easylist.txt: 48241) -.doubleclick.net/pfadx/nfl\..*/html5; - -#ab2p-unblock-request-Xx-when-R1495 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1495} \ -} -# @@||rad.msn.com/ADSAdClient31.dll?GetAd=$xmlhttprequest,domain=ninemsn.com.au (easylistchina+easylist.txt: 59433) -.rad.msn.com/ADSAdClient31\.dll\?GetAd= -# @@||rad.msn.com/ADSAdClient31.dll?GetAd=$xmlhttprequest,domain=ninemsn.com.au (easylist.txt: 48948) -.rad.msn.com/ADSAdClient31\.dll\?GetAd= - -#ab2p-unblock-request-Xx-when-R1510 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1510} \ -} -# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina+easylist.txt: 10461) +# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina.txt: 10448) /(.*/)?hitCount_ -#ab2p-unblock-request-Xx-when-R1517 +#ab2p-unblock-request-Xx-when-R307 {-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1517} \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R307} \ } -# @@||openload.co^$xmlhttprequest,domain=openload.co (easylistchina+easylist.txt: 60604) -.openload.co -# @@||openload.co^$xmlhttprequest,domain=openload.co (easylist.txt: 50119) -.openload.co +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=tw.autos.yahoo.com|tw.buy.yahoo.com (easylistchina.txt: 10459) +.geo.query.yahoo.com -#ab2p-unblock-request-Xx-when-R1595 +#ab2p-unblock-request-nR-Rn187 {-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1595} \ -} -# @@||adserve.atedra.com/zones.php$xmlhttprequest,domain=repeatmyvids.com (easylistchina+easylist.txt: 58288) -.adserve.atedra.com/zones\.php -# @@||adserve.atedra.com/zones.php$xmlhttprequest,domain=repeatmyvids.com (easylist.txt: 47803) -.adserve.atedra.com/zones\.php - -#ab2p-unblock-request-Xx-when-R1601 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1601} \ -} -# @@||roshlam.ru/adverts/$xmlhttprequest,domain=roshlam.ru (advblock.txt: 7377) -.roshlam.ru/adverts/ - -#ab2p-unblock-request-Xx-when-R1672 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1672} \ -} -# @@/ads.js?callback$xmlhttprequest,domain=stream.1tv.ru (advblock.txt: 7187) -/(.*/)?ads\.js\?callback - -#ab2p-unblock-request-Xx-when-R1712 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1712} \ -} -# @@||ads.pointroll.com/PortalServe/?pid=$xmlhttprequest,domain=thestreet.com (easylistchina+easylist.txt: 58258) -.ads.pointroll.com/PortalServe/\?pid= -# @@||ads.pointroll.com/PortalServe/?pid=$xmlhttprequest,domain=thestreet.com (easylist.txt: 47773) -.ads.pointroll.com/PortalServe/\?pid= - -#ab2p-unblock-request-Xx-when-R1754 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1754} \ -} -# @@||v.fwmrm.net/ad/p/1$xmlhttprequest,domain=uktv.co.uk (easylistchina+easylist.txt: 60854) -.v.fwmrm.net/ad/p/1 -# @@||v.fwmrm.net/ad/p/1$xmlhttprequest,domain=uktv.co.uk (easylist.txt: 50369) -.v.fwmrm.net/ad/p/1 - -#ab2p-unblock-request-Xx-when-R1764 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1764} \ -} -# @@||advert.mgimg.com/servlet/view/$xmlhttprequest,domain=uzmantv.com (easylistchina+easylist.txt: 60963) -.advert.mgimg.com/servlet/view/ -# @@||advert.mgimg.com/servlet/view/$xmlhttprequest,domain=uzmantv.com (easylist.txt: 50478) -.advert.mgimg.com/servlet/view/ - -#ab2p-unblock-request-Xx-when-R1770 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1770} \ -} -# @@||fwmrm.net/ad/g/1?$xmlhttprequest,domain=vevo.com (easylistchina+easylist.txt: 60317) -.fwmrm.net/ad/g/1\? -# @@||fwmrm.net/ad/g/1?$xmlhttprequest,domain=vevo.com (easylist.txt: 49832) -.fwmrm.net/ad/g/1\? - -#ab2p-unblock-request-Xx-when-R1785 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1785} \ -} -# @@||virpl.ru^*_advert.php$xmlhttprequest,domain=virpl.ru (advblock.txt: 7427) -.virpl.ru/.*_advert\.php - -#ab2p-unblock-request-Xx-when-R1797 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1797} \ -} -# @@||247realmedia.com/RealMedia/ads/adstream_sx.ads/wm-desktop/home/$xmlhttprequest,domain=walmart.com.br (easylistchina+easylist.txt: 60925) -.247realmedia.com/RealMedia/ads/adstream_sx\.ads/wm-desktop/home/ -# @@||247realmedia.com/RealMedia/ads/adstream_sx.ads/wm-desktop/home/$xmlhttprequest,domain=walmart.com.br (easylist.txt: 50440) -.247realmedia.com/RealMedia/ads/adstream_sx\.ads/wm-desktop/home/ - -#ab2p-unblock-request-Xx-when-R1820 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1820} \ -} -# @@||rek.www.wp.pl/vad.xml?$xmlhttprequest,domain=wp.tv (easylistchina+easylist.txt: 60696) -.rek.www.wp.pl/vad\.xml\? -# @@||rek.www.wp.pl/vad.xml?$xmlhttprequest,domain=wp.tv (easylist.txt: 50211) -.rek.www.wp.pl/vad\.xml\? - -#ab2p-unblock-request-Xx-when-R1823 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1823} \ -} -# @@||www.facebook.com/ajax/ads/$xmlhttprequest,domain=www.facebook.com (easylistchina+easylist.txt: 61160) -.www.facebook.com/ajax/ads/ -# @@||www.facebook.com/ajax/ads/$xmlhttprequest,domain=www.facebook.com (easylist.txt: 50675) -.www.facebook.com/ajax/ads/ - -#ab2p-unblock-request-Xx-when-R1824 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R1824} \ -} -# @@||www.google.com/analytics/web/$xmlhttprequest,domain=www.google.com (easylistchina+easylist.txt: 61189) -.www.google.com/analytics/web/ -# @@||www.google.com/analytics/web/$xmlhttprequest,domain=www.google.com (easylist.txt: 50704) -.www.google.com/analytics/web/ - -#ab2p-unblock-request-Xx-when-R534 -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-R534} \ -} -# @@||adserver.yahoo.com/a?*&l=VID&$xmlhttprequest,domain=yahoo.com (easylistchina+easylist.txt: 58298) -.adserver.yahoo.com/a\?.*&l=VID& -# @@||adserver.yahoo.com/a?*&l=VID&$xmlhttprequest,domain=yahoo.com (easylist.txt: 47813) -.adserver.yahoo.com/a\?.*&l=VID& - -#ab2p-unblock-request-Xx-when-nR-Rnt -{-block \ - +client-header-tagger{ab2p-unblock-request-Xx-when-Rnt} \ - +client-header-tagger{ab2p-unblock-request-Xx-when-nR} \ -} -# @@||teliad.*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 61249) -.teliad.*./(.*/)?advertiser/ -# @@||seedingup.*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 61248) -.seedingup.*./(.*/)?advertiser/ -# @@||www.google.*/settings/u/0/ads/preferences/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59833) -.www.google.*./(.*/)?settings/u/0/ads/preferences/ -# @@||uploaded.net/affiliate/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59729) -.uploaded.net/affiliate/ -# @@||translate.google.*/translate_*&q=$~third-party,xmlhttprequest (easylistchina+easylist.txt: 59689) -.translate.google.*./(.*/)?translate_.*&q= -# @@||gitorious.org/adv/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58878) -.gitorious.org/adv/ -# @@||emailbidding.com^*/advertiser/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58778) -.emailbidding.com/.*/advertiser/ -# @@||connectingdirectories.com/advertisers/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58614) -.connectingdirectories.com/advertisers/ -# @@||boats.com/ad/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58508) -.boats.com/ad/ -# @@||autotrader.co.uk^*/advert/$~third-party,xmlhttprequest (easylistchina+easylist.txt: 58459) -.autotrader.co.uk/.*/advert/ -# @@||teliad.*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 50764) -.teliad.*./(.*/)?advertiser/ -# @@||seedingup.*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 50763) -.seedingup.*./(.*/)?advertiser/ -# @@||www.google.*/settings/u/0/ads/preferences/$~third-party,xmlhttprequest (easylist.txt: 49348) -.www.google.*./(.*/)?settings/u/0/ads/preferences/ -# @@||uploaded.net/affiliate/$~third-party,xmlhttprequest (easylist.txt: 49244) -.uploaded.net/affiliate/ -# @@||translate.google.*/translate_*&q=$~third-party,xmlhttprequest (easylist.txt: 49204) -.translate.google.*./(.*/)?translate_.*&q= -# @@||gitorious.org/adv/$~third-party,xmlhttprequest (easylist.txt: 48393) -.gitorious.org/adv/ -# @@||emailbidding.com^*/advertiser/$~third-party,xmlhttprequest (easylist.txt: 48293) -.emailbidding.com/.*/advertiser/ -# @@||connectingdirectories.com/advertisers/$~third-party,xmlhttprequest (easylist.txt: 48129) -.connectingdirectories.com/advertisers/ -# @@||boats.com/ad/$~third-party,xmlhttprequest (easylist.txt: 48023) -.boats.com/ad/ -# @@||autotrader.co.uk^*/advert/$~third-party,xmlhttprequest (easylist.txt: 47974) -.autotrader.co.uk/.*/advert/ - -#ab2p-unblock-request-nR-Rn1862 -{-block \ - +client-header-tagger{ab2p-unblock-request-Rn1862} \ + +client-header-tagger{ab2p-unblock-request-Rn187} \ +client-header-tagger{ab2p-unblock-request-nR} \ } -# @@||videonow.ru^*/ad_holder.$domain=~cybergame.tv (advblock.txt: 7426) -.videonow.ru/.*/ad_holder\. - -#ab2p-unblock-request-nR-Rn1865 -{-block \ - +client-header-tagger{ab2p-unblock-request-Rn1865} \ - +client-header-tagger{ab2p-unblock-request-nR} \ -} -# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina+easylist.txt: 10432) +# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina.txt: 10420) .yimg.com/zz/combo\?.*&.*\.css -#ab2p-unblock-request-nR-Rn761 -{-block \ - +client-header-tagger{ab2p-unblock-request-Rn761} \ - +client-header-tagger{ab2p-unblock-request-nR} \ -} -# @@||2mdn.net/instream/html5/ima3.js$domain=~superfilm.pl (easylistchina+easylist.txt: 58123) -.2mdn.net/instream/html5/ima3\.js -# @@||2mdn.net/instream/html5/ima3.js$domain=~superfilm.pl (easylist.txt: 47638) -.2mdn.net/instream/html5/ima3\.js - #ab2p-unblock-request-nR-Rnt {-block \ +client-header-tagger{ab2p-unblock-request-Rnt} \ +client-header-tagger{ab2p-unblock-request-nR} \ } -# @@||ads.b10f.jp/flv/$~third-party (easylistchina+easylist.txt: 61787) -.ads.b10f.jp/flv/ -# @@||store.adam4adam.com/images/affbanners/$~third-party (easylistchina+easylist.txt: 61460) -.store.adam4adam.com/images/affbanners/ -# @@||store.adam4adam.com/affimages/$~third-party (easylistchina+easylist.txt: 61459) -.store.adam4adam.com/affimages/ -# @@||sextoyfun.com/control/aff_banners/$~third-party (easylistchina+easylist.txt: 61456) -.sextoyfun.com/control/aff_banners/ -# @@||sextoyfun.com/admin/aff_files/BannerManager/$~third-party (easylistchina+easylist.txt: 61455) -.sextoyfun.com/admin/aff_files/BannerManager/ -# @@||manhuntshop.com/images/affbanners/$~third-party (easylistchina+easylist.txt: 61448) -.manhuntshop.com/images/affbanners/ -# @@||manhuntshop.com/affimages/$~third-party (easylistchina+easylist.txt: 61447) -.manhuntshop.com/affimages/ -# @@||boyzshop.com/affimages/$~third-party (easylistchina+easylist.txt: 61431) -.boyzshop.com/affimages/ -# @@||ads.twitter.com^$popup,~third-party (easylistchina+easylist.txt: 61400) -.ads.twitter.com -# @@||ads.pinterest.com^$popup,~third-party (easylistchina+easylist.txt: 61397) -.ads.pinterest.com -# @@||union.edu/media/galleryPics/400x250/$~third-party (easylistchina+easylist.txt: 61377) -.union.edu/media/galleryPics/400x250/ -# @@||imperialwonderservices.ie/images/banner/*-468x60.$~third-party (easylistchina+easylist.txt: 61347) -.imperialwonderservices.ie/images/banner/.*-468x60\. -# @@||hortifor.com/images/*120x60$~third-party (easylistchina+easylist.txt: 61339) -.hortifor.com/images/.*120x60 -# @@||bettermarks.com/media$~third-party (easylistchina+easylist.txt: 61316) -.bettermarks.com/media -# @@||adservicemedia.dk/images/$~third-party (easylistchina+easylist.txt: 61294) -.adservicemedia.dk/images/ -# @@||adservice.com/wp-content/themes/adservice/$~third-party (easylistchina+easylist.txt: 61293) -.adservice.com/wp-content/themes/adservice/ -# @@||gameloft.com/advertising-$~third-party (easylistchina+easylist.txt: 61282) -.gameloft.com/advertising- -# @@||adsbox.io^$~third-party (easylistchina+easylist.txt: 61280) -.adsbox.io -# @@||revealads.com^$~third-party (easylistchina+easylist.txt: 61278) -.revealads.com -# @@||integralplatform.com/static/js/Advertiser/$~third-party (easylistchina+easylist.txt: 61276) -.integralplatform.com/static/js/Advertiser/ -# @@||ads.acesse.com^$~third-party (easylistchina+easylist.txt: 61274) -.ads.acesse.com -# @@||advertise.ru^$~third-party (easylistchina+easylist.txt: 61271) -.advertise.ru -# @@||ads.stumbleupon.com^$~third-party (easylistchina+easylist.txt: 61269) -.ads.stumbleupon.com -# @@||advertise.mxit.com^$~third-party (easylistchina+easylist.txt: 61241) -.advertise.mxit.com -# @@||advertising.microsoft.com^$~third-party (easylistchina+easylist.txt: 61228) -.advertising.microsoft.com -# @@||adhese.com^$~third-party (easylistchina+easylist.txt: 61219) -.adhese.com -# @@||adfox.ru^$~third-party (easylistchina+easylist.txt: 61215) -.adfox.ru -# @@||healthyadvertising.es^$~third-party (easylistchina+easylist.txt: 61213) -.healthyadvertising.es -# @@||fullad.com.br^$~third-party (easylistchina+easylist.txt: 61211) -.fullad.com.br -# @@||dashboard.tovarro.com^$~third-party (easylistchina+easylist.txt: 61209) -.dashboard.tovarro.com -# @@||dashboard.mgid.com^$~third-party (easylistchina+easylist.txt: 61208) -.dashboard.mgid.com -# @@||dashboard.marketgid.com^$~third-party (easylistchina+easylist.txt: 61207) -.dashboard.marketgid.com -# @@||dashboard.lentainform.com^$~third-party (easylistchina+easylist.txt: 61206) -.dashboard.lentainform.com -# @@||dashboard.idealmedia.com^$~third-party (easylistchina+easylist.txt: 61205) -.dashboard.idealmedia.com -# @@||www.advertising.com^$~third-party (easylistchina+easylist.txt: 61200) -.www.advertising.com -# @@||adcenter.mobicow.com^$~third-party (easylistchina+easylist.txt: 61198) -.adcenter.mobicow.com -# @@||www.google.*/adwords/$~third-party (easylistchina+easylist.txt: 61185) -.www.google.*./(.*/)?adwords/ -# @@||www.google.*/adsense/$~third-party (easylistchina+easylist.txt: 61184) -.www.google.*./(.*/)?adsense/ -# @@||www.google.*/ads/start/$~third-party (easylistchina+easylist.txt: 61183) -.www.google.*./(.*/)?ads/start/ -# @@||www.google.*/ads/js/$~third-party (easylistchina+easylist.txt: 61182) -.www.google.*./(.*/)?ads/js/ -# @@||www.google.*/ads/css/$~third-party (easylistchina+easylist.txt: 61180) -.www.google.*./(.*/)?ads/css/ -# @@||www.google.*/adometry/$~third-party (easylistchina+easylist.txt: 61178) -.www.google.*./(.*/)?adometry/ -# @@||www.google.*/adometry.$~third-party (easylistchina+easylist.txt: 61177) -.www.google.*./(.*/)?adometry\. -# @@||support.google.com/adwords/$~third-party (easylistchina+easylist.txt: 61176) -.support.google.com/adwords/ -# @@||support.google.com/adsense/$~third-party (easylistchina+easylist.txt: 61175) -.support.google.com/adsense/ -# @@||adwolf.eu^$~third-party (easylistchina+easylist.txt: 61157) -.adwolf.eu -# @@||vinden.se/ads/$~third-party (easylistchina+easylist.txt: 61147) -.vinden.se/ads/ -# @@||segundamano.mx/api/*/ads/$~third-party (easylistchina+easylist.txt: 61109) -.segundamano.mx/api/.*/ads/ -# @@||reklama5.mk^$~third-party (easylistchina+easylist.txt: 61097) -.reklama5.mk -# @@||polovniautomobili.com/images/ad-$~third-party (easylistchina+easylist.txt: 61087) -.polovniautomobili.com/images/ad- -# @@||mmgastro.pl/js/reklama/$~third-party (easylistchina+easylist.txt: 61066) -.mmgastro.pl/js/reklama/ -# @@||homad.eu^$~third-party (easylistchina+easylist.txt: 61038) -.homad.eu -# @@||hizlial.com/banners/$~third-party (easylistchina+easylist.txt: 61037) -.hizlial.com/banners/ -# @@||happymtb.org/annonser/$~third-party (easylistchina+easylist.txt: 61036) -.happymtb.org/annonser/ -# @@||gov.in/pdf/ADVERTISEMENT/$~third-party (easylistchina+easylist.txt: 61033) -.gov.in/pdf/ADVERTISEMENT/ -# @@||freeride.se/img/admarket/$~third-party (easylistchina+easylist.txt: 61031) -.freeride.se/img/admarket/ -# @@||forads.pl^$~third-party (easylistchina+easylist.txt: 61027) -.forads.pl -# @@||bancodevenezuela.com/imagenes/publicidad/$~third-party (easylistchina+easylist.txt: 60987) -.bancodevenezuela.com/imagenes/publicidad/ -# @@||advert.ee^$~third-party (easylistchina+easylist.txt: 60962) -.advert.ee -# @@||adv.pt^$~third-party (easylistchina+easylist.txt: 60961) -.adv.pt -# @@||adsystem.pl^$~third-party (easylistchina+easylist.txt: 60955) -.adsystem.pl -# @@||ads.cvut.cz^$~third-party (easylistchina+easylist.txt: 60942) -.ads.cvut.cz -# @@||ad3.l3go.com.br^$~third-party (easylistchina+easylist.txt: 60933) -.ad3.l3go.com.br -# @@||ad.nl/ad/css/$~third-party (easylistchina+easylist.txt: 60932) -.ad.nl/ad/css/ -# @@||mybannermaker.com/banner.php$~third-party (easylistchina+easylist.txt: 60561) -.mybannermaker.com/banner\.php -# @@||ads.nipr.ac.jp^$~third-party (easylistchina+easylist.txt: 60015) -.ads.nipr.ac.jp -# @@/wp-content/plugins/wordpress-adblock-blocker/adframe.js$~third-party (easylistchina+easylist.txt: 59937) -/(.*/)?wp-content/plugins/wordpress-adblock-blocker/adframe\.js -# @@/wp-content/plugins/anti-block/js/advertisement.js$~third-party (easylistchina+easylist.txt: 59934) -/(.*/)?wp-content/plugins/anti-block/js/advertisement\.js -# @@/wp-content/plugins/adblock-notify-by-bweb/js/advertisement.js$~third-party (easylistchina+easylist.txt: 59933) -/(.*/)?wp-content/plugins/adblock-notify-by-bweb/js/advertisement\.js -# @@/adBlockDetector/*$~third-party (easylistchina+easylist.txt: 59914) -/(.*/)?adBlockDetector/.* -# @@||ziehl-abegg.com/images/img_adverts/$~third-party (easylistchina+easylist.txt: 59877) -.ziehl-abegg.com/images/img_adverts/ -# @@||wpthemedetector.com/ad/$~third-party (easylistchina+easylist.txt: 59827) -.wpthemedetector.com/ad/ -# @@||williamsauction.com/Resources/images/ads/$~third-party (easylistchina+easylist.txt: 59816) -.williamsauction.com/Resources/images/ads/ -# @@||wellsfargo.com/img/ads/$~third-party (easylistchina+easylist.txt: 59805) -.wellsfargo.com/img/ads/ -# @@||wahooads.com/Ads.nsf/$~third-party (easylistchina+easylist.txt: 59786) -.wahooads.com/Ads\.nsf/ -# @@||wahoha.com^$~third-party (easylistchina+easylist.txt: 59785) -.wahoha.com -# @@||vswebapp.com^$~third-party (easylistchina+easylist.txt: 59781) -.vswebapp.com -# @@||vk.com/ads?act=$~third-party (easylistchina+easylist.txt: 59777) -.vk.com/ads\?act= -# @@||trifort.org/ads/$~third-party (easylistchina+easylist.txt: 59700) -.trifort.org/ads/ -# @@||terraristik.com^*/ad_pics/$~third-party (easylistchina+easylist.txt: 59630) -.terraristik.com/.*/ad_pics/ -# @@||terraristik.com^*&ad_type=$~third-party (easylistchina+easylist.txt: 59629) -.terraristik.com/.*&ad_type= -# @@||temple.edu/advertising/$~third-party (easylistchina+easylist.txt: 59628) -.temple.edu/advertising/ -# @@||tbns.com.au/shops/images/ads/$~third-party (easylistchina+easylist.txt: 59622) -.tbns.com.au/shops/images/ads/ -# @@||swordfox.co.nz^*/advertising/$~third-party (easylistchina+easylist.txt: 59611) -.swordfox.co.nz/.*/advertising/ -# @@||supersonicads.com/api/rest/funds/*/advertisers/$~third-party (easylistchina+easylist.txt: 59606) -.supersonicads.com/api/rest/funds/.*/advertisers/ -# @@||stclassifieds.sg/images/ads/$~third-party (easylistchina+easylist.txt: 59593) -.stclassifieds.sg/images/ads/ -# @@||softwarepromotions.com/adwords/$~third-party (easylistchina+easylist.txt: 59552) -.softwarepromotions.com/adwords/ -# @@||smctemple.wpengine.com/advertising/$~third-party (easylistchina+easylist.txt: 59547) -.smctemple.wpengine.com/advertising/ -# @@||slotsheaven.com/banners/$~third-party (easylistchina+easylist.txt: 59542) -.slotsheaven.com/banners/ -# @@||sharinspireds.co.nf/Images/Ads/$~third-party (easylistchina+easylist.txt: 59528) -.sharinspireds.co.nf/Images/Ads/ -# @@||scutt.eu/ads/$~third-party (easylistchina+easylist.txt: 59501) -.scutt.eu/ads/ -# @@||save.ca/img/ads/$~third-party (easylistchina+easylist.txt: 59492) -.save.ca/img/ads/ -# @@||sabotage-films.com/ads/$~third-party (easylistchina+easylist.txt: 59484) -.sabotage-films.com/ads/ -# @@||powercolor.com/image/ad/$~third-party (easylistchina+easylist.txt: 59403) -.powercolor.com/image/ad/ -# @@||popad.co^$~third-party (easylistchina+easylist.txt: 59399) -.popad.co -# @@||pop.advecs.com^$~third-party (easylistchina+easylist.txt: 59398) -.pop.advecs.com -# @@||photofunia.com/effects/$~third-party (easylistchina+easylist.txt: 59371) -.photofunia.com/effects/ -# @@||phonealchemist.com/api/affiliation/$~third-party (easylistchina+easylist.txt: 59367) -.phonealchemist.com/api/affiliation/ -# @@||petra-fischer.com/tl_files/pics/*/ADVERTISING/$~third-party (easylistchina+easylist.txt: 59361) -.petra-fischer.com/tl_files/pics/.*/ADVERTISING/ -# @@||petapixel.com/ads/$~third-party (easylistchina+easylist.txt: 59359) -.petapixel.com/ads/ -# @@||patient-education.com/banners/$~third-party (easylistchina+easylist.txt: 59348) -.patient-education.com/banners/ -# @@||pachoumis.com/advertising-$~third-party (easylistchina+easylist.txt: 59325) -.pachoumis.com/advertising- -# @@||overture.london^$~third-party (easylistchina+easylist.txt: 59315) -.overture.london -# @@||okta.com/js/app/sso/interstitial.js$~third-party (easylistchina+easylist.txt: 59291) -.okta.com/js/app/sso/interstitial\.js -# @@||nature.com/advertising/$~third-party (easylistchina+easylist.txt: 59224) -.nature.com/advertising/ -# @@||msy.com.au/images/ADbanner/eletter/$~third-party (easylistchina+easylist.txt: 59202) -.msy.com.au/images/ADbanner/eletter/ -# @@||motortrade.me/js/$~third-party (easylistchina+easylist.txt: 59194) -.motortrade.me/js/ -# @@||motortrade.me/advert/$~third-party (easylistchina+easylist.txt: 59193) -.motortrade.me/advert/ -# @@||moneybookers.com/ads/$~third-party (easylistchina+easylist.txt: 59190) -.moneybookers.com/ads/ -# @@||mcpn.us/resources/images/adv/$~third-party (easylistchina+easylist.txt: 59147) -.mcpn.us/resources/images/adv/ -# @@||marcokrenn.com/public/images/pages/advertising/$~third-party (easylistchina+easylist.txt: 59138) -.marcokrenn.com/public/images/pages/advertising/ -# @@||mansioncasino.com/banners/$~third-party (easylistchina+easylist.txt: 59131) -.mansioncasino.com/banners/ -# @@||live-support.se^*/Admax/$~third-party (easylistchina+easylist.txt: 59096) -.live-support.se/.*/Admax/ -# @@||limecellular.com/resources/images/adv/$~third-party (easylistchina+easylist.txt: 59087) -.limecellular.com/resources/images/adv/ -# @@||lesacasino.com/banners/$~third-party (easylistchina+easylist.txt: 59083) -.lesacasino.com/banners/ -# @@||kamernet.nl/Adverts/$~third-party (easylistchina+easylist.txt: 59054) -.kamernet.nl/Adverts/ -# @@||intellitext.co^$~third-party (easylistchina+easylist.txt: 59024) -.intellitext.co -# @@||huffingtonpost.com/images/ads/$~third-party (easylistchina+easylist.txt: 58955) -.huffingtonpost.com/images/ads/ -# @@||hp.com^*/scripts/ads/$~third-party (easylistchina+easylist.txt: 58952) -.hp.com/.*/scripts/ads/ -# @@||hallo.co.uk/advert/$~third-party (easylistchina+easylist.txt: 58929) -.hallo.co.uk/advert/ -# @@||freeride.co.uk/img/admarket/$~third-party (easylistchina+easylist.txt: 58842) -.freeride.co.uk/img/admarket/ -# @@||folklands.com/health/advertise_with_us_files/$~third-party (easylistchina+easylist.txt: 58833) -.folklands.com/health/advertise_with_us_files/ -# @@||flossmanuals.net/site_static/xinha/plugins/DoubleClick/$~third-party (easylistchina+easylist.txt: 58828) -.flossmanuals.net/site_static/xinha/plugins/DoubleClick/ -# @@||eagleboys.com.au/eagleboys/*/ads/$~third-party (easylistchina+easylist.txt: 58758) -.eagleboys.com.au/eagleboys/.*/ads/ -# @@||domandgeri.com/banners/$~third-party (easylistchina+easylist.txt: 58689) -.domandgeri.com/banners/ -# @@||directwonen.nl/adverts/$~third-party (easylistchina+easylist.txt: 58676) -.directwonen.nl/adverts/ -# @@||dawanda.com^*/adcenter.js$~third-party (easylistchina+easylist.txt: 58658) -.dawanda.com/.*/adcenter\.js -# @@||dawanda.com^*/ad_center.css$~third-party (easylistchina+easylist.txt: 58657) -.dawanda.com/.*/ad_center\.css -# @@||davidsilverspares.co.uk/graphics/*_ad.gif$~third-party (easylistchina+easylist.txt: 58656) -.davidsilverspares.co.uk/graphics/.*_ad\.gif -# @@||danielechevarria.com^*/advertising-$~third-party (easylistchina+easylist.txt: 58650) -.danielechevarria.com/.*/advertising- -# @@||cvs.com/webcontent/images/weeklyad/adcontent/$~third-party (easylistchina+easylist.txt: 58637) -.cvs.com/webcontent/images/weeklyad/adcontent/ -# @@||cubeecraft.com/openx/$~third-party (easylistchina+easylist.txt: 58636) -.cubeecraft.com/openx/ -# @@||cricbuzz.com/includes/ads/schedule/$~third-party (easylistchina+easylist.txt: 58629) -.cricbuzz.com/includes/ads/schedule/ -# @@||copesdistributing.com/images/adds/banner_$~third-party (easylistchina+easylist.txt: 58621) -.copesdistributing.com/images/adds/banner_ -# @@||club777.com/banners/$~third-party (easylistchina+easylist.txt: 58600) -.club777.com/banners/ -# @@||classifieds.wsj.com/ad/$~third-party (easylistchina+easylist.txt: 58594) -.classifieds.wsj.com/ad/ -# @@||checkerdist.com/product-detail.cfm?*advert_id=$~third-party (easylistchina+easylist.txt: 58583) -.checkerdist.com/product-detail\.cfm\?.*advert_id= -# @@||buyandsell.ie/images/ads/$~third-party (easylistchina+easylist.txt: 58533) -.buyandsell.ie/images/ads/ -# @@||buyandsell.ie/ads/$~third-party (easylistchina+easylist.txt: 58532) -.buyandsell.ie/ads/ -# @@||buyandsell.ie/ad/$~third-party (easylistchina+easylist.txt: 58531) -.buyandsell.ie/ad/ -# @@||buy.com/buy_assets/addeals/$~third-party (easylistchina+easylist.txt: 58530) -.buy.com/buy_assets/addeals/ -# @@||burfordadvertising.com/advertising/$~third-party (easylistchina+easylist.txt: 58527) -.burfordadvertising.com/advertising/ -# @@||blackshoppingchannel.com^*/com_adagency/$~third-party (easylistchina+easylist.txt: 58502) -.blackshoppingchannel.com/.*/com_adagency/ -# @@||blackshoppingchannel.com^*/ad_agency/$~third-party (easylistchina+easylist.txt: 58501) -.blackshoppingchannel.com/.*/ad_agency/ -# @@||banner4five.com/banners/$~third-party (easylistchina+easylist.txt: 58473) -.banner4five.com/banners/ -# @@||backpackinglight.com/backpackinglight/ads/banner-$~third-party (easylistchina+easylist.txt: 58467) -.backpackinglight.com/backpackinglight/ads/banner- -# @@||asrock.com/images/ad-$~third-party (easylistchina+easylist.txt: 58441) -.asrock.com/images/ad- -# @@||ananzi.co.za/ads/$~third-party (easylistchina+easylist.txt: 58403) -.ananzi.co.za/ads/ -# @@||amwa.net/sites/default/files/styles/promotion_image/public/promotions/$~third-party (easylistchina+easylist.txt: 58402) -.amwa.net/sites/default/files/styles/promotion_image/public/promotions/ -# @@||alusa.org/store/modules/blockadvertising/$~third-party (easylistchina+easylist.txt: 58385) -.alusa.org/store/modules/blockadvertising/ -# @@||alphabaseinc.com/images/display_adz/$~third-party (easylistchina+easylist.txt: 58384) -.alphabaseinc.com/images/display_adz/ -# @@||airbaltic.com/banners/$~third-party (easylistchina+easylist.txt: 58366) -.airbaltic.com/banners/ -# @@||adworks.com.co^$~third-party (easylistchina+easylist.txt: 58352) -.adworks.com.co -# @@||adweb.pl^$~third-party (easylistchina+easylist.txt: 58351) -.adweb.pl -# @@||adweb.cis.mcmaster.ca^$~third-party (easylistchina+easylist.txt: 58350) -.adweb.cis.mcmaster.ca -# @@||advweb.ua.cmu.edu^$~third-party (easylistchina+easylist.txt: 58349) -.advweb.ua.cmu.edu -# @@||advertising.vrisko.gr^$~third-party (easylistchina+easylist.txt: 58345) -.advertising.vrisko.gr -# @@||advertising.utexas.edu^$~third-party (easylistchina+easylist.txt: 58344) -.advertising.utexas.edu -# @@||advertising.theigroup.co.uk^$~third-party (easylistchina+easylist.txt: 58343) -.advertising.theigroup.co.uk -# @@||advertising.autotrader.co.uk^$~third-party (easylistchina+easylist.txt: 58339) -.advertising.autotrader.co.uk -# @@||advertising.acne.se^$~third-party (easylistchina+easylist.txt: 58338) -.advertising.acne.se -# @@||advertiser.trialpay.com^$~third-party (easylistchina+easylist.txt: 58336) -.advertiser.trialpay.com -# @@||advertiser.seek.com.au^$~third-party (easylistchina+easylist.txt: 58335) -.advertiser.seek.com.au -# @@||advertiser.seek.co.nz^$~third-party (easylistchina+easylist.txt: 58334) -.advertiser.seek.co.nz -# @@||advertise.movem.co.uk^$~third-party (easylistchina+easylist.txt: 58333) -.advertise.movem.co.uk -# @@||advertise.azcentral.com^$~third-party (easylistchina+easylist.txt: 58331) -.advertise.azcentral.com -# @@||advantabankcorp.com/ADV/$~third-party (easylistchina+easylist.txt: 58330) -.advantabankcorp.com/ADV/ -# @@||adv.works^$~third-party (easylistchina+easylist.txt: 58329) -.adv.works -# @@||adv.li^$~third-party (easylistchina+easylist.txt: 58328) -.adv.li -# @@||adv.escreverdireito.com^$~third-party (easylistchina+easylist.txt: 58327) -.adv.escreverdireito.com -# @@||adv.erti.se^$~third-party (easylistchina+easylist.txt: 58326) -.adv.erti.se -# @@||adv.*.przedsiebiorca.pl^$~third-party (easylistchina+easylist.txt: 58324) -.adv.*./.*\.przedsiebiorca\.pl[^\w%.-] -.adv.*.przedsiebiorca.pl -# @@||adspot.lk^$~third-party (easylistchina+easylist.txt: 58309) -.adspot.lk -# @@||adsign.republika.pl^$~third-party (easylistchina+easylist.txt: 58306) -.adsign.republika.pl -# @@||adsign.no^$~third-party (easylistchina+easylist.txt: 58304) -.adsign.no -# @@||adseo.pl^$~third-party (easylistchina+easylist.txt: 58285) -.adseo.pl -# @@||adsbox.in^$~third-party (easylistchina+easylist.txt: 58284) -.adsbox.in -# @@||adsbox.com.sg^$~third-party (easylistchina+easylist.txt: 58283) -.adsbox.com.sg -# @@||ads.socialtheater.com^$~third-party (easylistchina+easylist.txt: 58263) -.ads.socialtheater.com -# @@||ads.smartfeedads.com^$~third-party (easylistchina+easylist.txt: 58262) -.ads.smartfeedads.com -# @@||ads.seriouswheels.com^$~third-party (easylistchina+easylist.txt: 58260) -.ads.seriouswheels.com -# @@||ads.pinterest.com^$~third-party (easylistchina+easylist.txt: 58257) -.ads.pinterest.com -# @@||ads.m1.com.sg^$~third-party (easylistchina+easylist.txt: 58248) -.ads.m1.com.sg -# @@||ads.indeed.com^$~third-party (easylistchina+easylist.txt: 58242) -.ads.indeed.com -# @@||ads.golfweek.com^$~third-party (easylistchina+easylist.txt: 58240) -.ads.golfweek.com -# @@||ads.fusac.fr^$~third-party (easylistchina+easylist.txt: 58238) -.ads.fusac.fr -# @@||ads.eu.com/ads-$~third-party (easylistchina+easylist.txt: 58230) -.ads.eu.com/ads- -# @@||ads.caravansforsale.co.uk^$~third-party (easylistchina+easylist.txt: 58227) -.ads.caravansforsale.co.uk -# @@||ads.badassembly.com^$~third-party (easylistchina+easylist.txt: 58223) -.ads.badassembly.com -# @@||adphoto.eu^$~third-party (easylistchina+easylist.txt: 58217) -.adphoto.eu -# @@||adpages.com^$~third-party (easylistchina+easylist.txt: 58216) -.adpages.com -# @@||adnews.pl^$~third-party (easylistchina+easylist.txt: 58213) -.adnews.pl -# @@||adman.se^$~third-party (easylistchina+easylist.txt: 58208) -.adman.se -# @@||adlib.info^$~third-party (easylistchina+easylist.txt: 58202) -.adlib.info -# @@||adguard.com^$~third-party (easylistchina+easylist.txt: 58199) -.adguard.com -# @@||adevents.com.au^$~third-party (easylistchina+easylist.txt: 58193) -.adevents.com.au -# @@||adcode.mobi^$~third-party (easylistchina+easylist.txt: 58190) -.adcode.mobi -# @@||adcenter.nu^$~third-party (easylistchina+easylist.txt: 58189) -.adcenter.nu -# @@||adboost.io^$~third-party (easylistchina+easylist.txt: 58187) -.adboost.io -# @@||adbar.pp.ua^$~third-party (easylistchina+easylist.txt: 58185) -.adbar.pp.ua -# @@||ad3.eu^$~third-party (easylistchina+easylist.txt: 58166) -.ad3.eu -# @@||abbyy.com/adx/$~third-party (easylistchina+easylist.txt: 58140) -.abbyy.com/adx/ -# @@/wordpress/wp-admin/*/adrotate/*$~third-party (easylistchina+easylist.txt: 58109) -/(.*/)?wordpress/wp-admin/.*/adrotate/.* -# @@/wordpress/wp-admin/*-ads-manager/*$~third-party (easylistchina+easylist.txt: 58108) -/(.*/)?wordpress/wp-admin/.*-ads-manager/.* -# @@||yiqifa.com/ad_images/$~third-party (easylistchina+easylist.txt: 10437) +# @@||yiqifa.com/ad_images/$~third-party (easylistchina.txt: 10425) .yiqifa.com/ad_images/ -# @@||ukrainianiphone.com/baners/r/$~third-party (advblock.txt: 7417) -.ukrainianiphone.com/baners/r/ -# @@||teachvideo.ru/www/delivery/$~third-party (advblock.txt: 7407) -.teachvideo.ru/www/delivery/ -# @@||teachvideo.ru/advert/$~third-party (advblock.txt: 7406) -.teachvideo.ru/advert/ -# @@||statcounter.com/counter/counter.js$~third-party (advblock.txt: 7397) -.statcounter.com/counter/counter\.js -# @@||sims3club.ru/images/bn/$~third-party (advblock.txt: 7392) -.sims3club.ru/images/bn/ -# @@||semrush.com/m/scripts/reports/backlinks.$~third-party (advblock.txt: 7391) -.semrush.com/m/scripts/reports/backlinks\. -# @@||ruspor.ru^$~third-party (advblock.txt: 7383) -.ruspor.ru -# @@||rostcars.ru/css/advertisement.css$~third-party (advblock.txt: 7378) -.rostcars.ru/css/advertisement\.css -# @@||rock-online.ru/thema/rock/images/baner_$~third-party (advblock.txt: 7376) -.rock-online.ru/thema/rock/images/baner_ -# @@||prokazan.ru/sites/default/files/imagecache/tizer_$~third-party (advblock.txt: 7366) -.prokazan.ru/sites/default/files/imagecache/tizer_ -# @@||myband.info/advert/$~third-party (advblock.txt: 7342) -.myband.info/advert/ -# @@||mads.su^$~third-party (advblock.txt: 7328) -.mads.su -# @@||alluregame.ru/Content/*/Advert$~third-party (advblock.txt: 7259) -.alluregame.ru/Content/.*/Advert -# @@||alfabank.ru/*/baner_$~third-party (advblock.txt: 7258) -.alfabank.ru/.*/baner_ -# @@||advertising.yandex.$~third-party (advblock.txt: 7253) -.advertising.yandex.*. -# @@||adsgame.pro^$~third-party (advblock.txt: 7243) -.adsgame.pro -# @@||ads.su^$~third-party (advblock.txt: 7239) -.ads.su -# @@||adman.com^$~third-party (advblock.txt: 7226) -.adman.com -# @@||900.md/ads/js/$~third-party (advblock.txt: 7222) -.900.md/ads/js/ -# @@||900.md/ads/images/$~third-party (advblock.txt: 7221) -.900.md/ads/images/ -# @@||7771000.ru/images/*/baners/$~third-party (advblock.txt: 7220) -.7771000.ru/images/.*/baners/ -# @@||adsvk.com/scripts/advertise_$~third-party (advblock.txt: 6972) -.adsvk.com/scripts/advertise_ -# @@||adsvk.com/images/advertising/$~third-party (advblock.txt: 6971) -.adsvk.com/images/advertising/ -# @@||vk.com/ads*.php?__query=$~third-party (advblock.txt: 6967) -.vk.com/ads.*\.php\?__query= -# @@||ads.b10f.jp/flv/$~third-party (easylist.txt: 51302) -.ads.b10f.jp/flv/ -# @@||store.adam4adam.com/images/affbanners/$~third-party (easylist.txt: 50975) -.store.adam4adam.com/images/affbanners/ -# @@||store.adam4adam.com/affimages/$~third-party (easylist.txt: 50974) -.store.adam4adam.com/affimages/ -# @@||sextoyfun.com/control/aff_banners/$~third-party (easylist.txt: 50971) -.sextoyfun.com/control/aff_banners/ -# @@||sextoyfun.com/admin/aff_files/BannerManager/$~third-party (easylist.txt: 50970) -.sextoyfun.com/admin/aff_files/BannerManager/ -# @@||manhuntshop.com/images/affbanners/$~third-party (easylist.txt: 50963) -.manhuntshop.com/images/affbanners/ -# @@||manhuntshop.com/affimages/$~third-party (easylist.txt: 50962) -.manhuntshop.com/affimages/ -# @@||boyzshop.com/affimages/$~third-party (easylist.txt: 50946) -.boyzshop.com/affimages/ -# @@||ads.twitter.com^$popup,~third-party (easylist.txt: 50915) -.ads.twitter.com -# @@||ads.pinterest.com^$popup,~third-party (easylist.txt: 50912) -.ads.pinterest.com -# @@||union.edu/media/galleryPics/400x250/$~third-party (easylist.txt: 50892) -.union.edu/media/galleryPics/400x250/ -# @@||imperialwonderservices.ie/images/banner/*-468x60.$~third-party (easylist.txt: 50862) -.imperialwonderservices.ie/images/banner/.*-468x60\. -# @@||hortifor.com/images/*120x60$~third-party (easylist.txt: 50854) -.hortifor.com/images/.*120x60 -# @@||bettermarks.com/media$~third-party (easylist.txt: 50831) -.bettermarks.com/media -# @@||adservicemedia.dk/images/$~third-party (easylist.txt: 50809) -.adservicemedia.dk/images/ -# @@||adservice.com/wp-content/themes/adservice/$~third-party (easylist.txt: 50808) -.adservice.com/wp-content/themes/adservice/ -# @@||gameloft.com/advertising-$~third-party (easylist.txt: 50797) -.gameloft.com/advertising- -# @@||adsbox.io^$~third-party (easylist.txt: 50795) -.adsbox.io -# @@||revealads.com^$~third-party (easylist.txt: 50793) -.revealads.com -# @@||integralplatform.com/static/js/Advertiser/$~third-party (easylist.txt: 50791) -.integralplatform.com/static/js/Advertiser/ -# @@||ads.acesse.com^$~third-party (easylist.txt: 50789) -.ads.acesse.com -# @@||advertise.ru^$~third-party (easylist.txt: 50786) -.advertise.ru -# @@||ads.stumbleupon.com^$~third-party (easylist.txt: 50784) -.ads.stumbleupon.com -# @@||advertise.mxit.com^$~third-party (easylist.txt: 50756) -.advertise.mxit.com -# @@||advertising.microsoft.com^$~third-party (easylist.txt: 50743) -.advertising.microsoft.com -# @@||adhese.com^$~third-party (easylist.txt: 50734) -.adhese.com -# @@||adfox.ru^$~third-party (easylist.txt: 50730) -.adfox.ru -# @@||healthyadvertising.es^$~third-party (easylist.txt: 50728) -.healthyadvertising.es -# @@||fullad.com.br^$~third-party (easylist.txt: 50726) -.fullad.com.br -# @@||dashboard.tovarro.com^$~third-party (easylist.txt: 50724) -.dashboard.tovarro.com -# @@||dashboard.mgid.com^$~third-party (easylist.txt: 50723) -.dashboard.mgid.com -# @@||dashboard.marketgid.com^$~third-party (easylist.txt: 50722) -.dashboard.marketgid.com -# @@||dashboard.lentainform.com^$~third-party (easylist.txt: 50721) -.dashboard.lentainform.com -# @@||dashboard.idealmedia.com^$~third-party (easylist.txt: 50720) -.dashboard.idealmedia.com -# @@||www.advertising.com^$~third-party (easylist.txt: 50715) -.www.advertising.com -# @@||adcenter.mobicow.com^$~third-party (easylist.txt: 50713) -.adcenter.mobicow.com -# @@||www.google.*/adwords/$~third-party (easylist.txt: 50700) -.www.google.*./(.*/)?adwords/ -# @@||www.google.*/adsense/$~third-party (easylist.txt: 50699) -.www.google.*./(.*/)?adsense/ -# @@||www.google.*/ads/start/$~third-party (easylist.txt: 50698) -.www.google.*./(.*/)?ads/start/ -# @@||www.google.*/ads/js/$~third-party (easylist.txt: 50697) -.www.google.*./(.*/)?ads/js/ -# @@||www.google.*/ads/css/$~third-party (easylist.txt: 50695) -.www.google.*./(.*/)?ads/css/ -# @@||www.google.*/adometry/$~third-party (easylist.txt: 50693) -.www.google.*./(.*/)?adometry/ -# @@||www.google.*/adometry.$~third-party (easylist.txt: 50692) -.www.google.*./(.*/)?adometry\. -# @@||support.google.com/adwords/$~third-party (easylist.txt: 50691) -.support.google.com/adwords/ -# @@||support.google.com/adsense/$~third-party (easylist.txt: 50690) -.support.google.com/adsense/ -# @@||adwolf.eu^$~third-party (easylist.txt: 50672) -.adwolf.eu -# @@||vinden.se/ads/$~third-party (easylist.txt: 50662) -.vinden.se/ads/ -# @@||segundamano.mx/api/*/ads/$~third-party (easylist.txt: 50624) -.segundamano.mx/api/.*/ads/ -# @@||reklama5.mk^$~third-party (easylist.txt: 50612) -.reklama5.mk -# @@||polovniautomobili.com/images/ad-$~third-party (easylist.txt: 50602) -.polovniautomobili.com/images/ad- -# @@||mmgastro.pl/js/reklama/$~third-party (easylist.txt: 50581) -.mmgastro.pl/js/reklama/ -# @@||homad.eu^$~third-party (easylist.txt: 50553) -.homad.eu -# @@||hizlial.com/banners/$~third-party (easylist.txt: 50552) -.hizlial.com/banners/ -# @@||happymtb.org/annonser/$~third-party (easylist.txt: 50551) -.happymtb.org/annonser/ -# @@||gov.in/pdf/ADVERTISEMENT/$~third-party (easylist.txt: 50548) -.gov.in/pdf/ADVERTISEMENT/ -# @@||freeride.se/img/admarket/$~third-party (easylist.txt: 50546) -.freeride.se/img/admarket/ -# @@||forads.pl^$~third-party (easylist.txt: 50542) -.forads.pl -# @@||bancodevenezuela.com/imagenes/publicidad/$~third-party (easylist.txt: 50502) -.bancodevenezuela.com/imagenes/publicidad/ -# @@||advert.ee^$~third-party (easylist.txt: 50477) -.advert.ee -# @@||adv.pt^$~third-party (easylist.txt: 50476) -.adv.pt -# @@||adsystem.pl^$~third-party (easylist.txt: 50470) -.adsystem.pl -# @@||ads.cvut.cz^$~third-party (easylist.txt: 50457) -.ads.cvut.cz -# @@||ad3.l3go.com.br^$~third-party (easylist.txt: 50448) -.ad3.l3go.com.br -# @@||ad.nl/ad/css/$~third-party (easylist.txt: 50447) -.ad.nl/ad/css/ -# @@||mybannermaker.com/banner.php$~third-party (easylist.txt: 50076) -.mybannermaker.com/banner\.php -# @@||ads.nipr.ac.jp^$~third-party (easylist.txt: 49530) -.ads.nipr.ac.jp -# @@/wp-content/plugins/wordpress-adblock-blocker/adframe.js$~third-party (easylist.txt: 49452) -/(.*/)?wp-content/plugins/wordpress-adblock-blocker/adframe\.js -# @@/wp-content/plugins/anti-block/js/advertisement.js$~third-party (easylist.txt: 49449) -/(.*/)?wp-content/plugins/anti-block/js/advertisement\.js -# @@/wp-content/plugins/adblock-notify-by-bweb/js/advertisement.js$~third-party (easylist.txt: 49448) -/(.*/)?wp-content/plugins/adblock-notify-by-bweb/js/advertisement\.js -# @@/adBlockDetector/*$~third-party (easylist.txt: 49429) -/(.*/)?adBlockDetector/.* -# @@||ziehl-abegg.com/images/img_adverts/$~third-party (easylist.txt: 49392) -.ziehl-abegg.com/images/img_adverts/ -# @@||wpthemedetector.com/ad/$~third-party (easylist.txt: 49342) -.wpthemedetector.com/ad/ -# @@||williamsauction.com/Resources/images/ads/$~third-party (easylist.txt: 49331) -.williamsauction.com/Resources/images/ads/ -# @@||wellsfargo.com/img/ads/$~third-party (easylist.txt: 49320) -.wellsfargo.com/img/ads/ -# @@||wahooads.com/Ads.nsf/$~third-party (easylist.txt: 49301) -.wahooads.com/Ads\.nsf/ -# @@||wahoha.com^$~third-party (easylist.txt: 49300) -.wahoha.com -# @@||vswebapp.com^$~third-party (easylist.txt: 49296) -.vswebapp.com -# @@||vk.com/ads?act=$~third-party (easylist.txt: 49292) -.vk.com/ads\?act= -# @@||trifort.org/ads/$~third-party (easylist.txt: 49215) -.trifort.org/ads/ -# @@||terraristik.com^*/ad_pics/$~third-party (easylist.txt: 49145) -.terraristik.com/.*/ad_pics/ -# @@||terraristik.com^*&ad_type=$~third-party (easylist.txt: 49144) -.terraristik.com/.*&ad_type= -# @@||temple.edu/advertising/$~third-party (easylist.txt: 49143) -.temple.edu/advertising/ -# @@||tbns.com.au/shops/images/ads/$~third-party (easylist.txt: 49137) -.tbns.com.au/shops/images/ads/ -# @@||swordfox.co.nz^*/advertising/$~third-party (easylist.txt: 49126) -.swordfox.co.nz/.*/advertising/ -# @@||supersonicads.com/api/rest/funds/*/advertisers/$~third-party (easylist.txt: 49121) -.supersonicads.com/api/rest/funds/.*/advertisers/ -# @@||stclassifieds.sg/images/ads/$~third-party (easylist.txt: 49108) -.stclassifieds.sg/images/ads/ -# @@||softwarepromotions.com/adwords/$~third-party (easylist.txt: 49067) -.softwarepromotions.com/adwords/ -# @@||smctemple.wpengine.com/advertising/$~third-party (easylist.txt: 49062) -.smctemple.wpengine.com/advertising/ -# @@||slotsheaven.com/banners/$~third-party (easylist.txt: 49057) -.slotsheaven.com/banners/ -# @@||sharinspireds.co.nf/Images/Ads/$~third-party (easylist.txt: 49043) -.sharinspireds.co.nf/Images/Ads/ -# @@||scutt.eu/ads/$~third-party (easylist.txt: 49016) -.scutt.eu/ads/ -# @@||save.ca/img/ads/$~third-party (easylist.txt: 49007) -.save.ca/img/ads/ -# @@||sabotage-films.com/ads/$~third-party (easylist.txt: 48999) -.sabotage-films.com/ads/ -# @@||powercolor.com/image/ad/$~third-party (easylist.txt: 48918) -.powercolor.com/image/ad/ -# @@||popad.co^$~third-party (easylist.txt: 48914) -.popad.co -# @@||pop.advecs.com^$~third-party (easylist.txt: 48913) -.pop.advecs.com -# @@||photofunia.com/effects/$~third-party (easylist.txt: 48886) -.photofunia.com/effects/ -# @@||phonealchemist.com/api/affiliation/$~third-party (easylist.txt: 48882) -.phonealchemist.com/api/affiliation/ -# @@||petra-fischer.com/tl_files/pics/*/ADVERTISING/$~third-party (easylist.txt: 48876) -.petra-fischer.com/tl_files/pics/.*/ADVERTISING/ -# @@||petapixel.com/ads/$~third-party (easylist.txt: 48874) -.petapixel.com/ads/ -# @@||patient-education.com/banners/$~third-party (easylist.txt: 48863) -.patient-education.com/banners/ -# @@||pachoumis.com/advertising-$~third-party (easylist.txt: 48840) -.pachoumis.com/advertising- -# @@||overture.london^$~third-party (easylist.txt: 48830) -.overture.london -# @@||okta.com/js/app/sso/interstitial.js$~third-party (easylist.txt: 48806) -.okta.com/js/app/sso/interstitial\.js -# @@||nature.com/advertising/$~third-party (easylist.txt: 48739) -.nature.com/advertising/ -# @@||msy.com.au/images/ADbanner/eletter/$~third-party (easylist.txt: 48717) -.msy.com.au/images/ADbanner/eletter/ -# @@||motortrade.me/js/$~third-party (easylist.txt: 48709) -.motortrade.me/js/ -# @@||motortrade.me/advert/$~third-party (easylist.txt: 48708) -.motortrade.me/advert/ -# @@||moneybookers.com/ads/$~third-party (easylist.txt: 48705) -.moneybookers.com/ads/ -# @@||mcpn.us/resources/images/adv/$~third-party (easylist.txt: 48662) -.mcpn.us/resources/images/adv/ -# @@||marcokrenn.com/public/images/pages/advertising/$~third-party (easylist.txt: 48653) -.marcokrenn.com/public/images/pages/advertising/ -# @@||mansioncasino.com/banners/$~third-party (easylist.txt: 48646) -.mansioncasino.com/banners/ -# @@||live-support.se^*/Admax/$~third-party (easylist.txt: 48611) -.live-support.se/.*/Admax/ -# @@||limecellular.com/resources/images/adv/$~third-party (easylist.txt: 48602) -.limecellular.com/resources/images/adv/ -# @@||lesacasino.com/banners/$~third-party (easylist.txt: 48598) -.lesacasino.com/banners/ -# @@||kamernet.nl/Adverts/$~third-party (easylist.txt: 48569) -.kamernet.nl/Adverts/ -# @@||intellitext.co^$~third-party (easylist.txt: 48539) -.intellitext.co -# @@||huffingtonpost.com/images/ads/$~third-party (easylist.txt: 48470) -.huffingtonpost.com/images/ads/ -# @@||hp.com^*/scripts/ads/$~third-party (easylist.txt: 48467) -.hp.com/.*/scripts/ads/ -# @@||hallo.co.uk/advert/$~third-party (easylist.txt: 48444) -.hallo.co.uk/advert/ -# @@||freeride.co.uk/img/admarket/$~third-party (easylist.txt: 48357) -.freeride.co.uk/img/admarket/ -# @@||folklands.com/health/advertise_with_us_files/$~third-party (easylist.txt: 48348) -.folklands.com/health/advertise_with_us_files/ -# @@||flossmanuals.net/site_static/xinha/plugins/DoubleClick/$~third-party (easylist.txt: 48343) -.flossmanuals.net/site_static/xinha/plugins/DoubleClick/ -# @@||eagleboys.com.au/eagleboys/*/ads/$~third-party (easylist.txt: 48273) -.eagleboys.com.au/eagleboys/.*/ads/ -# @@||domandgeri.com/banners/$~third-party (easylist.txt: 48204) -.domandgeri.com/banners/ -# @@||directwonen.nl/adverts/$~third-party (easylist.txt: 48191) -.directwonen.nl/adverts/ -# @@||dawanda.com^*/adcenter.js$~third-party (easylist.txt: 48173) -.dawanda.com/.*/adcenter\.js -# @@||dawanda.com^*/ad_center.css$~third-party (easylist.txt: 48172) -.dawanda.com/.*/ad_center\.css -# @@||davidsilverspares.co.uk/graphics/*_ad.gif$~third-party (easylist.txt: 48171) -.davidsilverspares.co.uk/graphics/.*_ad\.gif -# @@||danielechevarria.com^*/advertising-$~third-party (easylist.txt: 48165) -.danielechevarria.com/.*/advertising- -# @@||cvs.com/webcontent/images/weeklyad/adcontent/$~third-party (easylist.txt: 48152) -.cvs.com/webcontent/images/weeklyad/adcontent/ -# @@||cubeecraft.com/openx/$~third-party (easylist.txt: 48151) -.cubeecraft.com/openx/ -# @@||cricbuzz.com/includes/ads/schedule/$~third-party (easylist.txt: 48144) -.cricbuzz.com/includes/ads/schedule/ -# @@||copesdistributing.com/images/adds/banner_$~third-party (easylist.txt: 48136) -.copesdistributing.com/images/adds/banner_ -# @@||club777.com/banners/$~third-party (easylist.txt: 48115) -.club777.com/banners/ -# @@||classifieds.wsj.com/ad/$~third-party (easylist.txt: 48109) -.classifieds.wsj.com/ad/ -# @@||checkerdist.com/product-detail.cfm?*advert_id=$~third-party (easylist.txt: 48098) -.checkerdist.com/product-detail\.cfm\?.*advert_id= -# @@||buyandsell.ie/images/ads/$~third-party (easylist.txt: 48048) -.buyandsell.ie/images/ads/ -# @@||buyandsell.ie/ads/$~third-party (easylist.txt: 48047) -.buyandsell.ie/ads/ -# @@||buyandsell.ie/ad/$~third-party (easylist.txt: 48046) -.buyandsell.ie/ad/ -# @@||buy.com/buy_assets/addeals/$~third-party (easylist.txt: 48045) -.buy.com/buy_assets/addeals/ -# @@||burfordadvertising.com/advertising/$~third-party (easylist.txt: 48042) -.burfordadvertising.com/advertising/ -# @@||blackshoppingchannel.com^*/com_adagency/$~third-party (easylist.txt: 48017) -.blackshoppingchannel.com/.*/com_adagency/ -# @@||blackshoppingchannel.com^*/ad_agency/$~third-party (easylist.txt: 48016) -.blackshoppingchannel.com/.*/ad_agency/ -# @@||banner4five.com/banners/$~third-party (easylist.txt: 47988) -.banner4five.com/banners/ -# @@||backpackinglight.com/backpackinglight/ads/banner-$~third-party (easylist.txt: 47982) -.backpackinglight.com/backpackinglight/ads/banner- -# @@||asrock.com/images/ad-$~third-party (easylist.txt: 47956) -.asrock.com/images/ad- -# @@||ananzi.co.za/ads/$~third-party (easylist.txt: 47918) -.ananzi.co.za/ads/ -# @@||amwa.net/sites/default/files/styles/promotion_image/public/promotions/$~third-party (easylist.txt: 47917) -.amwa.net/sites/default/files/styles/promotion_image/public/promotions/ -# @@||alusa.org/store/modules/blockadvertising/$~third-party (easylist.txt: 47900) -.alusa.org/store/modules/blockadvertising/ -# @@||alphabaseinc.com/images/display_adz/$~third-party (easylist.txt: 47899) -.alphabaseinc.com/images/display_adz/ -# @@||airbaltic.com/banners/$~third-party (easylist.txt: 47881) -.airbaltic.com/banners/ -# @@||adworks.com.co^$~third-party (easylist.txt: 47867) -.adworks.com.co -# @@||adweb.pl^$~third-party (easylist.txt: 47866) -.adweb.pl -# @@||adweb.cis.mcmaster.ca^$~third-party (easylist.txt: 47865) -.adweb.cis.mcmaster.ca -# @@||advweb.ua.cmu.edu^$~third-party (easylist.txt: 47864) -.advweb.ua.cmu.edu -# @@||advertising.vrisko.gr^$~third-party (easylist.txt: 47860) -.advertising.vrisko.gr -# @@||advertising.utexas.edu^$~third-party (easylist.txt: 47859) -.advertising.utexas.edu -# @@||advertising.theigroup.co.uk^$~third-party (easylist.txt: 47858) -.advertising.theigroup.co.uk -# @@||advertising.autotrader.co.uk^$~third-party (easylist.txt: 47854) -.advertising.autotrader.co.uk -# @@||advertising.acne.se^$~third-party (easylist.txt: 47853) -.advertising.acne.se -# @@||advertiser.trialpay.com^$~third-party (easylist.txt: 47851) -.advertiser.trialpay.com -# @@||advertiser.seek.com.au^$~third-party (easylist.txt: 47850) -.advertiser.seek.com.au -# @@||advertiser.seek.co.nz^$~third-party (easylist.txt: 47849) -.advertiser.seek.co.nz -# @@||advertise.movem.co.uk^$~third-party (easylist.txt: 47848) -.advertise.movem.co.uk -# @@||advertise.azcentral.com^$~third-party (easylist.txt: 47846) -.advertise.azcentral.com -# @@||advantabankcorp.com/ADV/$~third-party (easylist.txt: 47845) -.advantabankcorp.com/ADV/ -# @@||adv.works^$~third-party (easylist.txt: 47844) -.adv.works -# @@||adv.li^$~third-party (easylist.txt: 47843) -.adv.li -# @@||adv.escreverdireito.com^$~third-party (easylist.txt: 47842) -.adv.escreverdireito.com -# @@||adv.erti.se^$~third-party (easylist.txt: 47841) -.adv.erti.se -# @@||adv.*.przedsiebiorca.pl^$~third-party (easylist.txt: 47839) -.adv.*./.*\.przedsiebiorca\.pl[^\w%.-] -.adv.*.przedsiebiorca.pl -# @@||adspot.lk^$~third-party (easylist.txt: 47824) -.adspot.lk -# @@||adsign.republika.pl^$~third-party (easylist.txt: 47821) -.adsign.republika.pl -# @@||adsign.no^$~third-party (easylist.txt: 47819) -.adsign.no -# @@||adseo.pl^$~third-party (easylist.txt: 47800) -.adseo.pl -# @@||adsbox.in^$~third-party (easylist.txt: 47799) -.adsbox.in -# @@||adsbox.com.sg^$~third-party (easylist.txt: 47798) -.adsbox.com.sg -# @@||ads.socialtheater.com^$~third-party (easylist.txt: 47778) -.ads.socialtheater.com -# @@||ads.smartfeedads.com^$~third-party (easylist.txt: 47777) -.ads.smartfeedads.com -# @@||ads.seriouswheels.com^$~third-party (easylist.txt: 47775) -.ads.seriouswheels.com -# @@||ads.pinterest.com^$~third-party (easylist.txt: 47772) -.ads.pinterest.com -# @@||ads.m1.com.sg^$~third-party (easylist.txt: 47763) -.ads.m1.com.sg -# @@||ads.indeed.com^$~third-party (easylist.txt: 47757) -.ads.indeed.com -# @@||ads.golfweek.com^$~third-party (easylist.txt: 47755) -.ads.golfweek.com -# @@||ads.fusac.fr^$~third-party (easylist.txt: 47753) -.ads.fusac.fr -# @@||ads.eu.com/ads-$~third-party (easylist.txt: 47745) -.ads.eu.com/ads- -# @@||ads.caravansforsale.co.uk^$~third-party (easylist.txt: 47742) -.ads.caravansforsale.co.uk -# @@||ads.badassembly.com^$~third-party (easylist.txt: 47738) -.ads.badassembly.com -# @@||adphoto.eu^$~third-party (easylist.txt: 47732) -.adphoto.eu -# @@||adpages.com^$~third-party (easylist.txt: 47731) -.adpages.com -# @@||adnews.pl^$~third-party (easylist.txt: 47728) -.adnews.pl -# @@||adman.se^$~third-party (easylist.txt: 47723) -.adman.se -# @@||adlib.info^$~third-party (easylist.txt: 47717) -.adlib.info -# @@||adguard.com^$~third-party (easylist.txt: 47714) -.adguard.com -# @@||adevents.com.au^$~third-party (easylist.txt: 47708) -.adevents.com.au -# @@||adcode.mobi^$~third-party (easylist.txt: 47705) -.adcode.mobi -# @@||adcenter.nu^$~third-party (easylist.txt: 47704) -.adcenter.nu -# @@||adboost.io^$~third-party (easylist.txt: 47702) -.adboost.io -# @@||adbar.pp.ua^$~third-party (easylist.txt: 47700) -.adbar.pp.ua -# @@||ad3.eu^$~third-party (easylist.txt: 47681) -.ad3.eu -# @@||abbyy.com/adx/$~third-party (easylist.txt: 47655) -.abbyy.com/adx/ -# @@/wordpress/wp-admin/*/adrotate/*$~third-party (easylist.txt: 47624) -/(.*/)?wordpress/wp-admin/.*/adrotate/.* -# @@/wordpress/wp-admin/*-ads-manager/*$~third-party (easylist.txt: 47623) -/(.*/)?wordpress/wp-admin/.*-ads-manager/.* #ab2p-unblock-xframe {-server-header-filter{ab2p-xframe-filter} \ } TAG:^ab2p-unblock-xframe$ -# @@||mongoporn.com^*/adframe/$subdocument (easylistchina+easylist.txt: 61757) -.mongoporn.com/.*/adframe/ -# @@||adultadworld.com/adhandler/$subdocument (easylistchina+easylist.txt: 61733) -.adultadworld.com/adhandler/ -# @@||youporngay.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61724) -.youporngay.com/_Incapsula_Resource\? -# @@||youporn.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61713) -.youporn.com/_Incapsula_Resource\? -# @@||tube8.fr/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61709) -.tube8.fr/_Incapsula_Resource\? -# @@||tube8.es/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61708) -.tube8.es/_Incapsula_Resource\? -# @@||tube8.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61701) -.tube8.com/_Incapsula_Resource\? -# @@||redtube.com/bid/$subdocument (easylistchina+easylist.txt: 61674) -.redtube.com/bid/ -# @@||redtube.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61669) -.redtube.com/_Incapsula_Resource\? -# @@||redtube.com.br/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61668) -.redtube.com.br/_Incapsula_Resource\? -# @@||pornhub.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylistchina+easylist.txt: 61644) -.pornhub.com/_Incapsula_Resource\? -# @@||viamichelin.*&size=728x90,$subdocument (easylistchina+easylist.txt: 61380) -.viamichelin.*./.*&size=728x90, -# @@||google.com/payments/*/adwords.$document,subdocument (easylistchina+easylist.txt: 61170) -.google.com/payments/.*/adwords\. -# @@||tv2.dk/mpx/player.php/adtech_$subdocument (easylistchina+easylist.txt: 61138) -.tv2.dk/mpx/player\.php/adtech_ -# @@||tn.com.ar^*/vivo/300/publicidad.html$subdocument (easylistchina+easylist.txt: 61132) -.tn.com.ar/.*/vivo/300/publicidad\.html -# @@||terra.com.br^*/admanager.html$subdocument (easylistchina+easylist.txt: 61130) -.terra.com.br/.*/admanager\.html -# @@||terra.cl^*/admanager.html$subdocument (easylistchina+easylist.txt: 61129) -.terra.cl/.*/admanager\.html -# @@||rentalsystems.com/advert_price_imbed.asp?$subdocument (easylistchina+easylist.txt: 61098) -.rentalsystems.com/advert_price_imbed\.asp\? -# @@||kopavogur.is/umsoknarvefur/advertisement.aspx$subdocument (easylistchina+easylist.txt: 61054) -.kopavogur.is/umsoknarvefur/advertisement\.aspx -# @@||honfoglalo.hu/aagetad.php?$subdocument (easylistchina+easylist.txt: 61039) -.honfoglalo.hu/aagetad\.php\? -# @@||ehowenespanol.com/frames/ad.html?$subdocument (easylistchina+easylist.txt: 61009) -.ehowenespanol.com/frames/ad\.html\? -# @@||ehow.com.br/frames/ad.html?$subdocument (easylistchina+easylist.txt: 61008) -.ehow.com.br/frames/ad\.html\? -# @@||videomega.tv^*/ad.php?id=$subdocument (easylistchina+easylist.txt: 60871) -.videomega.tv/.*/ad\.php\?id= -# @@||urlgalleries.net^*/adhandler/$subdocument (easylistchina+easylist.txt: 60851) -.urlgalleries.net/.*/adhandler/ -# @@||tvdez.com/ads/ads_$subdocument (easylistchina+easylist.txt: 60828) -.tvdez.com/ads/ads_ -# @@||saavn.com/ads/search_config_ad.php?$subdocument (easylistchina+easylist.txt: 60710) -.saavn.com/ads/search_config_ad\.php\? -# @@||rapidmoviez.com/files/php/mgid-ad$subdocument (easylistchina+easylist.txt: 60690) -.rapidmoviez.com/files/php/mgid-ad -# @@||rapidmoviez.com/ad$image,subdocument (easylistchina+easylist.txt: 60689) -.rapidmoviez.com/ad -# @@||mangakaka.com/ad/$subdocument (easylistchina+easylist.txt: 60498) -.mangakaka.com/ad/ -# @@||kisscartoon.me/Ads/$subdocument (easylistchina+easylist.txt: 60447) -.kisscartoon.me/Ads/ -# @@||kissanime.com/ads/$image,subdocument (easylistchina+easylist.txt: 60446) -.kissanime.com/ads/ -# @@||exashare.com/ads.html$subdocument (easylistchina+easylist.txt: 60262) -.exashare.com/ads\.html -# @@||dizi-mag.com/ads/$subdocument (easylistchina+easylist.txt: 60215) -.dizi-mag.com/ads/ -# @@||casadossegredos.tv/ads/ads_$subdocument (easylistchina+easylist.txt: 60135) -.casadossegredos.tv/ads/ads_ -# @@||binbox.io/ad/$subdocument (easylistchina+easylist.txt: 60110) -.binbox.io/ad/ -# @@||adexprt.com/cdn3/*&m=magnet$subdocument (easylistchina+easylist.txt: 59991) -.adexprt.com/cdn3/.*&m=magnet -# @@||zillow.com/ads/FlexAd.htm?did=$subdocument (easylistchina+easylist.txt: 59878) -.zillow.com/ads/FlexAd\.htm\?did= -# @@||zattoo.com/advertising/channelswitch/$subdocument (easylistchina+easylist.txt: 59871) -.zattoo.com/advertising/channelswitch/ -# @@||www.google.com/ads/preferences/$image,script,subdocument (easylistchina+easylist.txt: 59834) -.www.google.com/ads/preferences/ -# @@||www.google.*/search?$subdocument (easylistchina+easylist.txt: 59832) -.www.google.*./(.*/)?search\? -# @@||widgetserver.com/syndication/get_widget.html?*&widget.adplacement=$subdocument (easylistchina+easylist.txt: 59813) -.widgetserver.com/syndication/get_widget\.html\?.*&widget\.adplacement= -# @@||widgets.cbslocal.com/player/embed?affiliate=$subdocument (easylistchina+easylist.txt: 59811) -.widgets.cbslocal.com/player/embed\?affiliate= -# @@||widget.breakingburner.com/ad/$subdocument (easylistchina+easylist.txt: 59809) -.widget.breakingburner.com/ad/ -# @@||vidspot.net/tmp/status.html?*upload=file$subdocument (easylistchina+easylist.txt: 59769) -.vidspot.net/tmp/status\.html\?.*upload=file -# @@||vidspot.net/cgi-bin/upload.cgi?upload_id=*&X-Progress-ID=*&js_on=*&utype=*&upload_type=$subdocument (easylistchina+easylist.txt: 59768) -.vidspot.net/cgi-bin/upload\.cgi\?upload_id=.*&X-Progress-ID=.*&js_on=.*&utype=.*&upload_type= -# @@||vidspot.net/builtin-$subdocument (easylistchina+easylist.txt: 59767) -.vidspot.net/builtin- -# @@||vidspot.net/blank.html|$subdocument (easylistchina+easylist.txt: 59766) -.vidspot.net/blank\.html$ -# @@||vidcoin.com/adserver/$subdocument,xmlhttprequest (easylistchina+easylist.txt: 59755) -.vidcoin.com/adserver/ -# @@||travidia.com/fsi/page.aspx?$subdocument (easylistchina+easylist.txt: 59695) -.travidia.com/fsi/page\.aspx\? -# @@||toshiba.*^banner_id^$subdocument (easylistchina+easylist.txt: 59681) -.toshiba.*./(.*[^\w%.-])?banner_id[^\w%.-] -# @@||theepochtimes.com/ads/videos-right.html?$subdocument (easylistchina+easylist.txt: 59638) -.theepochtimes.com/ads/videos-right\.html\? -# @@||theepochtimes.com/ads/videos-below.htm?$subdocument (easylistchina+easylist.txt: 59637) -.theepochtimes.com/ads/videos-below\.htm\? -# @@||theepochtimes.com/ads/video/inarticle-video.html$subdocument (easylistchina+easylist.txt: 59636) -.theepochtimes.com/ads/video/inarticle-video\.html -# @@||talkrtv.com/ad/channel.php?$subdocument (easylistchina+easylist.txt: 59619) -.talkrtv.com/ad/channel\.php\? -# @@||supersonicads.com/delivery/singleBanner.php?*&bannerId$subdocument (easylistchina+easylist.txt: 59608) -.supersonicads.com/delivery/singleBanner\.php\?.*&bannerId -# @@||state.co.us/caic/pub_bc_avo.php?zone_id=$subdocument (easylistchina+easylist.txt: 59586) -.state.co.us/caic/pub_bc_avo\.php\?zone_id= -# @@||sprouts.com/ad/$image,subdocument (easylistchina+easylist.txt: 59580) -.sprouts.com/ad/ -# @@||skymediator.com/ads/*/skymediator.php?$subdocument (easylistchina+easylist.txt: 59540) -.skymediator.com/ads/.*/skymediator\.php\? -# @@||signin.verizon.com^*/affiliate/$subdocument,xmlhttprequest (easylistchina+easylist.txt: 59534) -.signin.verizon.com/.*/affiliate/ -# @@||puzzler.com/commercials/*.htm$subdocument (easylistchina+easylist.txt: 59424) -.puzzler.com/commercials/.*\.htm -# @@||promo.acronis.com^*?base=www.acronis.$subdocument (easylistchina+easylist.txt: 59410) -.promo.acronis.com/.*\?base=www\.acronis\. -# @@||player.animelicio.us/adimages/$subdocument (easylistchina+easylist.txt: 59382) -.player.animelicio.us/adimages/ -# @@||perezhilton.com^*-without-ads-$object,object-subrequest,subdocument (easylistchina+easylist.txt: 59358) -.perezhilton.com/.*-without-ads- -# @@||pch.com/iframe-ad/?adType=$subdocument (easylistchina+easylist.txt: 59352) -.pch.com/iframe-ad/\?adType= -# @@||pagead2.googlesyndication.com/pagead/static?format=in_video_ads&$elemhide,subdocument (easylistchina+easylist.txt: 59336) -.pagead2.googlesyndication.com/pagead/static\?format=in_video_ads& -# @@||osdir.com/ml/dateindex*&num=$subdocument (easylistchina+easylist.txt: 59311) -.osdir.com/ml/dateindex.*&num= -# @@||mxtabs.net/ads/interstitial$subdocument (easylistchina+easylist.txt: 59211) -.mxtabs.net/ads/interstitial -# @@||movoto.com/LeaderboardAd.aspx?adSpotName=$subdocument (easylistchina+easylist.txt: 59195) -.movoto.com/LeaderboardAd\.aspx\?adSpotName= -# @@||mediabistro.com^*/displayadleader.asp?$subdocument (easylistchina+easylist.txt: 59160) -.mediabistro.com/.*/displayadleader\.asp\? -# @@||luceosolutions.com/recruit/advert_details.php?id=$subdocument (easylistchina+easylist.txt: 59117) -.luceosolutions.com/recruit/advert_details\.php\?id= -# @@||king5.com/templates/belo_dart_iframed_ad?dartTag=LeaderTop&$subdocument (easylistchina+easylist.txt: 59060) -.king5.com/templates/belo_dart_iframed_ad\?dartTag=LeaderTop& -# @@||inserts2online.com/*.jsp?*&adid=$subdocument (easylistchina+easylist.txt: 59014) -.inserts2online.com/.*\.jsp\?.*&adid= -# @@||healthline.com/v2/ad-leaderboard-iframe?$subdocument (easylistchina+easylist.txt: 58936) -.healthline.com/v2/ad-leaderboard-iframe\? -# @@||google.com/uds/modules/elements/newsshow/iframe.html?format=728x90^$document,subdocument (easylistchina+easylist.txt: 58909) -.google.com/uds/modules/elements/newsshow/iframe\.html\?format=728x90[^\w%.-] -# @@||gamesgames.com/vda/friendly-iframe.html?videoPreroll300x250$subdocument (easylistchina+easylist.txt: 58866) -.gamesgames.com/vda/friendly-iframe\.html\?videoPreroll300x250 -# @@||games.cnn.com/ad/$object,object-subrequest,subdocument (easylistchina+easylist.txt: 58864) -.games.cnn.com/ad/ -# @@||gameitnow.com/ads/gameadvertentie.php?$subdocument (easylistchina+easylist.txt: 58862) -.gameitnow.com/ads/gameadvertentie\.php\? -# @@||gamehouse.com/adiframe/preroll-ad/$subdocument (easylistchina+easylist.txt: 58861) -.gamehouse.com/adiframe/preroll-ad/ -# @@||extras.chron.com/banners/*/social_icons/$image,subdocument (easylistchina+easylist.txt: 58810) -.extras.chron.com/banners/.*/social_icons/ -# @@||expedia.com/html.cms/TPID=*&ADSIZE=$subdocument (easylistchina+easylist.txt: 58805) -.expedia.com/html\.cms/TPID=.*&ADSIZE= -# @@||espn.go.com^*/espn360/banner?$subdocument (easylistchina+easylist.txt: 58792) -.espn.go.com/.*/espn360/banner\? -# @@||engadget.com/_uac/adpage.html$subdocument (easylistchina+easylist.txt: 58781) -.engadget.com/_uac/adpage\.html -# @@||ehow.co.uk/frames/ad.html?$subdocument (easylistchina+easylist.txt: 58774) -.ehow.co.uk/frames/ad\.html\? -# @@||eboundservices.com/iframe/newads/iframe.php?stream=$subdocument (easylistchina+easylist.txt: 58764) -.eboundservices.com/iframe/newads/iframe\.php\?stream= -# @@||doubleclick.net/N2605/adi/MiLB.com/scoreboard;*;sz=728x90;$subdocument (easylistchina+easylist.txt: 58722) -.doubleclick.net/N2605/adi/MiLB\.com/scoreboard;.*;sz=728x90; -# @@||doubleclick.net/adi/amzn.*;ri=digital-music-track;$subdocument (easylistchina+easylist.txt: 58696) -.doubleclick.net/adi/amzn\..*;ri=digital-music-track; -# @@||design-essentials.net/affiliate/$script,subdocument (easylistchina+easylist.txt: 58667) -.design-essentials.net/affiliate/ -# @@||delvenetworks.com/player/*_ad_$subdocument (easylistchina+easylist.txt: 58665) -.delvenetworks.com/player/.*_ad_ -# @@||csmonitor.com/advertising/sharetools.php$subdocument (easylistchina+easylist.txt: 58632) -.csmonitor.com/advertising/sharetools\.php -# @@||caranddriver.com/tools/iframe/?$subdocument (easylistchina+easylist.txt: 58546) -.caranddriver.com/tools/iframe/\? -# @@||as.webmd.com/html.ng/transactionid=$object-subrequest,script,subdocument (easylistchina+easylist.txt: 58439) -.as.webmd.com/html\.ng/transactionid= -# @@||affiliates.unpakt.com/widget/$subdocument (easylistchina+easylist.txt: 58361) -.affiliates.unpakt.com/widget/ -# @@||advisory.mtanyct.info/outsideWidget/widget.html?*.adPlacement=$subdocument (easylistchina+easylist.txt: 58348) -.advisory.mtanyct.info/outsideWidget/widget\.html\?.*\.adPlacement= -# @@||ads.healthline.com/v2/adajax?$subdocument (easylistchina+easylist.txt: 58241) -.ads.healthline.com/v2/adajax\? -# @@||letv.com*/tuiguang/$subdocument (easylistchina+easylist.txt: 10298) +# @@||letv.com*/tuiguang/$subdocument (easylistchina.txt: 10288) .letv.com*./(.*/)?tuiguang/ -# @@/page/adv.html?advId=$subdocument (easylistchina+easylist.txt: 10049) +# @@/page/adv.html?advId=$subdocument (easylistchina.txt: 10031) /(.*/)?page/adv\.html\?advId= -# @@||promo.gamble2fun.com^$subdocument (advblock.txt: 7367) -.promo.gamble2fun.com -# @@||mongoporn.com^*/adframe/$subdocument (easylist.txt: 51272) -.mongoporn.com/.*/adframe/ -# @@||adultadworld.com/adhandler/$subdocument (easylist.txt: 51248) -.adultadworld.com/adhandler/ -# @@||youporngay.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51239) -.youporngay.com/_Incapsula_Resource\? -# @@||youporn.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51228) -.youporn.com/_Incapsula_Resource\? -# @@||tube8.fr/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51224) -.tube8.fr/_Incapsula_Resource\? -# @@||tube8.es/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51223) -.tube8.es/_Incapsula_Resource\? -# @@||tube8.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51216) -.tube8.com/_Incapsula_Resource\? -# @@||redtube.com/bid/$subdocument (easylist.txt: 51189) -.redtube.com/bid/ -# @@||redtube.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51184) -.redtube.com/_Incapsula_Resource\? -# @@||redtube.com.br/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51183) -.redtube.com.br/_Incapsula_Resource\? -# @@||pornhub.com/_Incapsula_Resource?$image,subdocument,xmlhttprequest (easylist.txt: 51159) -.pornhub.com/_Incapsula_Resource\? -# @@||viamichelin.*&size=728x90,$subdocument (easylist.txt: 50895) -.viamichelin.*./.*&size=728x90, -# @@||google.com/payments/*/adwords.$document,subdocument (easylist.txt: 50685) -.google.com/payments/.*/adwords\. -# @@||tv2.dk/mpx/player.php/adtech_$subdocument (easylist.txt: 50653) -.tv2.dk/mpx/player\.php/adtech_ -# @@||tn.com.ar^*/vivo/300/publicidad.html$subdocument (easylist.txt: 50647) -.tn.com.ar/.*/vivo/300/publicidad\.html -# @@||terra.com.br^*/admanager.html$subdocument (easylist.txt: 50645) -.terra.com.br/.*/admanager\.html -# @@||terra.cl^*/admanager.html$subdocument (easylist.txt: 50644) -.terra.cl/.*/admanager\.html -# @@||rentalsystems.com/advert_price_imbed.asp?$subdocument (easylist.txt: 50613) -.rentalsystems.com/advert_price_imbed\.asp\? -# @@||kopavogur.is/umsoknarvefur/advertisement.aspx$subdocument (easylist.txt: 50569) -.kopavogur.is/umsoknarvefur/advertisement\.aspx -# @@||honfoglalo.hu/aagetad.php?$subdocument (easylist.txt: 50554) -.honfoglalo.hu/aagetad\.php\? -# @@||ehowenespanol.com/frames/ad.html?$subdocument (easylist.txt: 50524) -.ehowenespanol.com/frames/ad\.html\? -# @@||ehow.com.br/frames/ad.html?$subdocument (easylist.txt: 50523) -.ehow.com.br/frames/ad\.html\? -# @@||videomega.tv^*/ad.php?id=$subdocument (easylist.txt: 50386) -.videomega.tv/.*/ad\.php\?id= -# @@||urlgalleries.net^*/adhandler/$subdocument (easylist.txt: 50366) -.urlgalleries.net/.*/adhandler/ -# @@||tvdez.com/ads/ads_$subdocument (easylist.txt: 50343) -.tvdez.com/ads/ads_ -# @@||saavn.com/ads/search_config_ad.php?$subdocument (easylist.txt: 50225) -.saavn.com/ads/search_config_ad\.php\? -# @@||rapidmoviez.com/files/php/mgid-ad$subdocument (easylist.txt: 50205) -.rapidmoviez.com/files/php/mgid-ad -# @@||rapidmoviez.com/ad$image,subdocument (easylist.txt: 50204) -.rapidmoviez.com/ad -# @@||mangakaka.com/ad/$subdocument (easylist.txt: 50013) -.mangakaka.com/ad/ -# @@||kisscartoon.me/Ads/$subdocument (easylist.txt: 49962) -.kisscartoon.me/Ads/ -# @@||kissanime.com/ads/$image,subdocument (easylist.txt: 49961) -.kissanime.com/ads/ -# @@||exashare.com/ads.html$subdocument (easylist.txt: 49777) -.exashare.com/ads\.html -# @@||dizi-mag.com/ads/$subdocument (easylist.txt: 49730) -.dizi-mag.com/ads/ -# @@||casadossegredos.tv/ads/ads_$subdocument (easylist.txt: 49650) -.casadossegredos.tv/ads/ads_ -# @@||binbox.io/ad/$subdocument (easylist.txt: 49625) -.binbox.io/ad/ -# @@||adexprt.com/cdn3/*&m=magnet$subdocument (easylist.txt: 49506) -.adexprt.com/cdn3/.*&m=magnet -# @@||zillow.com/ads/FlexAd.htm?did=$subdocument (easylist.txt: 49393) -.zillow.com/ads/FlexAd\.htm\?did= -# @@||zattoo.com/advertising/channelswitch/$subdocument (easylist.txt: 49386) -.zattoo.com/advertising/channelswitch/ -# @@||www.google.com/ads/preferences/$image,script,subdocument (easylist.txt: 49349) -.www.google.com/ads/preferences/ -# @@||www.google.*/search?$subdocument (easylist.txt: 49347) -.www.google.*./(.*/)?search\? -# @@||widgetserver.com/syndication/get_widget.html?*&widget.adplacement=$subdocument (easylist.txt: 49328) -.widgetserver.com/syndication/get_widget\.html\?.*&widget\.adplacement= -# @@||widgets.cbslocal.com/player/embed?affiliate=$subdocument (easylist.txt: 49326) -.widgets.cbslocal.com/player/embed\?affiliate= -# @@||widget.breakingburner.com/ad/$subdocument (easylist.txt: 49324) -.widget.breakingburner.com/ad/ -# @@||vidspot.net/tmp/status.html?*upload=file$subdocument (easylist.txt: 49284) -.vidspot.net/tmp/status\.html\?.*upload=file -# @@||vidspot.net/cgi-bin/upload.cgi?upload_id=*&X-Progress-ID=*&js_on=*&utype=*&upload_type=$subdocument (easylist.txt: 49283) -.vidspot.net/cgi-bin/upload\.cgi\?upload_id=.*&X-Progress-ID=.*&js_on=.*&utype=.*&upload_type= -# @@||vidspot.net/builtin-$subdocument (easylist.txt: 49282) -.vidspot.net/builtin- -# @@||vidspot.net/blank.html|$subdocument (easylist.txt: 49281) -.vidspot.net/blank\.html$ -# @@||vidcoin.com/adserver/$subdocument,xmlhttprequest (easylist.txt: 49270) -.vidcoin.com/adserver/ -# @@||travidia.com/fsi/page.aspx?$subdocument (easylist.txt: 49210) -.travidia.com/fsi/page\.aspx\? -# @@||toshiba.*^banner_id^$subdocument (easylist.txt: 49196) -.toshiba.*./(.*[^\w%.-])?banner_id[^\w%.-] -# @@||theepochtimes.com/ads/videos-right.html?$subdocument (easylist.txt: 49153) -.theepochtimes.com/ads/videos-right\.html\? -# @@||theepochtimes.com/ads/videos-below.htm?$subdocument (easylist.txt: 49152) -.theepochtimes.com/ads/videos-below\.htm\? -# @@||theepochtimes.com/ads/video/inarticle-video.html$subdocument (easylist.txt: 49151) -.theepochtimes.com/ads/video/inarticle-video\.html -# @@||talkrtv.com/ad/channel.php?$subdocument (easylist.txt: 49134) -.talkrtv.com/ad/channel\.php\? -# @@||supersonicads.com/delivery/singleBanner.php?*&bannerId$subdocument (easylist.txt: 49123) -.supersonicads.com/delivery/singleBanner\.php\?.*&bannerId -# @@||state.co.us/caic/pub_bc_avo.php?zone_id=$subdocument (easylist.txt: 49101) -.state.co.us/caic/pub_bc_avo\.php\?zone_id= -# @@||sprouts.com/ad/$image,subdocument (easylist.txt: 49095) -.sprouts.com/ad/ -# @@||skymediator.com/ads/*/skymediator.php?$subdocument (easylist.txt: 49055) -.skymediator.com/ads/.*/skymediator\.php\? -# @@||signin.verizon.com^*/affiliate/$subdocument,xmlhttprequest (easylist.txt: 49049) -.signin.verizon.com/.*/affiliate/ -# @@||puzzler.com/commercials/*.htm$subdocument (easylist.txt: 48939) -.puzzler.com/commercials/.*\.htm -# @@||promo.acronis.com^*?base=www.acronis.$subdocument (easylist.txt: 48925) -.promo.acronis.com/.*\?base=www\.acronis\. -# @@||player.animelicio.us/adimages/$subdocument (easylist.txt: 48897) -.player.animelicio.us/adimages/ -# @@||perezhilton.com^*-without-ads-$object,object-subrequest,subdocument (easylist.txt: 48873) -.perezhilton.com/.*-without-ads- -# @@||pch.com/iframe-ad/?adType=$subdocument (easylist.txt: 48867) -.pch.com/iframe-ad/\?adType= -# @@||pagead2.googlesyndication.com/pagead/static?format=in_video_ads&$elemhide,subdocument (easylist.txt: 48851) -.pagead2.googlesyndication.com/pagead/static\?format=in_video_ads& -# @@||osdir.com/ml/dateindex*&num=$subdocument (easylist.txt: 48826) -.osdir.com/ml/dateindex.*&num= -# @@||mxtabs.net/ads/interstitial$subdocument (easylist.txt: 48726) -.mxtabs.net/ads/interstitial -# @@||movoto.com/LeaderboardAd.aspx?adSpotName=$subdocument (easylist.txt: 48710) -.movoto.com/LeaderboardAd\.aspx\?adSpotName= -# @@||mediabistro.com^*/displayadleader.asp?$subdocument (easylist.txt: 48675) -.mediabistro.com/.*/displayadleader\.asp\? -# @@||luceosolutions.com/recruit/advert_details.php?id=$subdocument (easylist.txt: 48632) -.luceosolutions.com/recruit/advert_details\.php\?id= -# @@||king5.com/templates/belo_dart_iframed_ad?dartTag=LeaderTop&$subdocument (easylist.txt: 48575) -.king5.com/templates/belo_dart_iframed_ad\?dartTag=LeaderTop& -# @@||inserts2online.com/*.jsp?*&adid=$subdocument (easylist.txt: 48529) -.inserts2online.com/.*\.jsp\?.*&adid= -# @@||healthline.com/v2/ad-leaderboard-iframe?$subdocument (easylist.txt: 48451) -.healthline.com/v2/ad-leaderboard-iframe\? -# @@||google.com/uds/modules/elements/newsshow/iframe.html?format=728x90^$document,subdocument (easylist.txt: 48424) -.google.com/uds/modules/elements/newsshow/iframe\.html\?format=728x90[^\w%.-] -# @@||gamesgames.com/vda/friendly-iframe.html?videoPreroll300x250$subdocument (easylist.txt: 48381) -.gamesgames.com/vda/friendly-iframe\.html\?videoPreroll300x250 -# @@||games.cnn.com/ad/$object,object-subrequest,subdocument (easylist.txt: 48379) -.games.cnn.com/ad/ -# @@||gameitnow.com/ads/gameadvertentie.php?$subdocument (easylist.txt: 48377) -.gameitnow.com/ads/gameadvertentie\.php\? -# @@||gamehouse.com/adiframe/preroll-ad/$subdocument (easylist.txt: 48376) -.gamehouse.com/adiframe/preroll-ad/ -# @@||extras.chron.com/banners/*/social_icons/$image,subdocument (easylist.txt: 48325) -.extras.chron.com/banners/.*/social_icons/ -# @@||expedia.com/html.cms/TPID=*&ADSIZE=$subdocument (easylist.txt: 48320) -.expedia.com/html\.cms/TPID=.*&ADSIZE= -# @@||espn.go.com^*/espn360/banner?$subdocument (easylist.txt: 48307) -.espn.go.com/.*/espn360/banner\? -# @@||engadget.com/_uac/adpage.html$subdocument (easylist.txt: 48296) -.engadget.com/_uac/adpage\.html -# @@||ehow.co.uk/frames/ad.html?$subdocument (easylist.txt: 48289) -.ehow.co.uk/frames/ad\.html\? -# @@||eboundservices.com/iframe/newads/iframe.php?stream=$subdocument (easylist.txt: 48279) -.eboundservices.com/iframe/newads/iframe\.php\?stream= -# @@||doubleclick.net/N2605/adi/MiLB.com/scoreboard;*;sz=728x90;$subdocument (easylist.txt: 48237) -.doubleclick.net/N2605/adi/MiLB\.com/scoreboard;.*;sz=728x90; -# @@||doubleclick.net/adi/amzn.*;ri=digital-music-track;$subdocument (easylist.txt: 48211) -.doubleclick.net/adi/amzn\..*;ri=digital-music-track; -# @@||design-essentials.net/affiliate/$script,subdocument (easylist.txt: 48182) -.design-essentials.net/affiliate/ -# @@||delvenetworks.com/player/*_ad_$subdocument (easylist.txt: 48180) -.delvenetworks.com/player/.*_ad_ -# @@||csmonitor.com/advertising/sharetools.php$subdocument (easylist.txt: 48147) -.csmonitor.com/advertising/sharetools\.php -# @@||caranddriver.com/tools/iframe/?$subdocument (easylist.txt: 48061) -.caranddriver.com/tools/iframe/\? -# @@||as.webmd.com/html.ng/transactionid=$object-subrequest,script,subdocument (easylist.txt: 47954) -.as.webmd.com/html\.ng/transactionid= -# @@||affiliates.unpakt.com/widget/$subdocument (easylist.txt: 47876) -.affiliates.unpakt.com/widget/ -# @@||advisory.mtanyct.info/outsideWidget/widget.html?*.adPlacement=$subdocument (easylist.txt: 47863) -.advisory.mtanyct.info/outsideWidget/widget\.html\?.*\.adPlacement= -# @@||ads.healthline.com/v2/adajax?$subdocument (easylist.txt: 47756) -.ads.healthline.com/v2/adajax\? -#ab2p-unblock-xframe-R813 -{+client-header-tagger{ab2p-unblock-xframe-R813} \ +#ab2p-unblock-xframe-R244 +{+client-header-tagger{ab2p-unblock-xframe-R244} \ } -# @@||adsign.republika.pl^$subdocument,domain=a-d-sign.pl (easylistchina+easylist.txt: 58305) -.adsign.republika.pl -# @@||adsign.republika.pl^$subdocument,domain=a-d-sign.pl (easylist.txt: 47820) -.adsign.republika.pl - -#ab2p-unblock-xframe-R818 -{+client-header-tagger{ab2p-unblock-xframe-R818} \ -} -# @@||google.com/uds/afs?$document,subdocument,domain=about.com|ehow.com|livestrong.com (easylistchina+easylist.txt: 58906) -.google.com/uds/afs\? -# @@||google.com/uds/afs?$document,subdocument,domain=about.com|ehow.com|livestrong.com (easylist.txt: 48421) -.google.com/uds/afs\? - -#ab2p-unblock-xframe-R75 -{+client-header-tagger{ab2p-unblock-xframe-R75} \ -} -# @@||37.1.207.27^$subdocument,domain=adultmult.tv (advblock.txt: 7541) -.37.1.207.27 - -#ab2p-unblock-xframe-R863 -{+client-header-tagger{ab2p-unblock-xframe-R863} \ -} -# @@||bpui0.google.com^$document,subdocument,domain=adwords.google.com (easylistchina+easylist.txt: 61168) -.bpui0.google.com -# @@||accounts.google.com^$document,subdocument,domain=adwords.google.com (easylistchina+easylist.txt: 61164) -.accounts.google.com -# @@||bpui0.google.com^$document,subdocument,domain=adwords.google.com (easylist.txt: 50683) -.bpui0.google.com -# @@||accounts.google.com^$document,subdocument,domain=adwords.google.com (easylist.txt: 50679) -.accounts.google.com - -#ab2p-unblock-xframe-R865 -{+client-header-tagger{ab2p-unblock-xframe-R865} \ -} -# @@||amazon-adsystem.com/e/cm?$document,subdocument,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylistchina+easylist.txt: 61255) -.amazon-adsystem.com/e/cm\? -# @@||amazon-adsystem.com/e/cm?$document,subdocument,domain=affiliate-program.amazon.co.uk|affiliate-program.amazon.com|affiliate-program.amazon.in|affiliate.amazon.co.jp|afiliados.amazon.es|associados.amazon.com.br|associates.amazon.ca|associates.amazon.cn|partenaires.amazon.fr|partnernet.amazon.de|programma-affiliazione.amazon.it (easylist.txt: 50770) -.amazon-adsystem.com/e/cm\? - -#ab2p-unblock-xframe-R866 -{+client-header-tagger{ab2p-unblock-xframe-R866} \ -} -# @@||amazon.com/home/ads/$document,subdocument,domain=affiliate-program.amazon.com (easylistchina+easylist.txt: 61257) -.amazon.com/home/ads/ -# @@||amazon.com/home/ads/$document,subdocument,domain=affiliate-program.amazon.com (easylist.txt: 50772) -.amazon.com/home/ads/ - -#ab2p-unblock-xframe-R868 -{+client-header-tagger{ab2p-unblock-xframe-R868} \ -} -# @@||flipkart.com/affiliate/displayWidget?$subdocument,domain=affrity.com (easylistchina+easylist.txt: 58827) -.flipkart.com/affiliate/displayWidget\? -# @@||amazon-adsystem.com^$document,subdocument,domain=affrity.com (easylistchina+easylist.txt: 58392) -.amazon-adsystem.com -# @@||flipkart.com/affiliate/displayWidget?$subdocument,domain=affrity.com (easylist.txt: 48342) -.flipkart.com/affiliate/displayWidget\? -# @@||amazon-adsystem.com^$document,subdocument,domain=affrity.com (easylist.txt: 47907) -.amazon-adsystem.com - -#ab2p-unblock-xframe-R898 -{+client-header-tagger{ab2p-unblock-xframe-R898} \ -} -# @@||widget.plugrush.com^$subdocument,domain=amateursexy.net (easylistchina+easylist.txt: 61468) -.widget.plugrush.com -# @@||widget.plugrush.com^$subdocument,domain=amateursexy.net (easylist.txt: 50983) -.widget.plugrush.com - -#ab2p-unblock-xframe-R907 -{+client-header-tagger{ab2p-unblock-xframe-R907} \ -} -# @@||delivery.anchorfree.us/player-multi.php?$subdocument,domain=anchorfree.us (easylistchina+easylist.txt: 58664) -.delivery.anchorfree.us/player-multi\.php\? -# @@||delivery.anchorfree.us/player-multi.php?$subdocument,domain=anchorfree.us (easylist.txt: 48179) -.delivery.anchorfree.us/player-multi\.php\? - -#ab2p-unblock-xframe-R911 -{+client-header-tagger{ab2p-unblock-xframe-R911} \ -} -# @@||game-advertising-online.com/index.php?section=serve&id=7740&subid=$subdocument,domain=anizm.com (easylistchina+easylist.txt: 60333) -.game-advertising-online.com/index\.php\?section=serve&id=7740&subid= -# @@||game-advertising-online.com/index.php?section=serve&id=7740&subid=$subdocument,domain=anizm.com (easylist.txt: 49848) -.game-advertising-online.com/index\.php\?section=serve&id=7740&subid= - -#ab2p-unblock-xframe-R921 -{+client-header-tagger{ab2p-unblock-xframe-R921} \ -} -# @@||doubleclick.net/adi/apts.com/home;pos=$subdocument,domain=apartments.com (easylistchina+easylist.txt: 58697) -.doubleclick.net/adi/apts\.com/home;pos= -# @@||doubleclick.net/adi/apts.com/home;pos=$subdocument,domain=apartments.com (easylist.txt: 48212) -.doubleclick.net/adi/apts\.com/home;pos= - -#ab2p-unblock-xframe-R939 -{+client-header-tagger{ab2p-unblock-xframe-R939} \ -} -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=audiomack.com|cbc.ca|cnet.com|eboundservices.com|edmunds.com|gamejolt.com|globalnews.ca|live.geo.tv|news.sky.com|nfl.com|reuters.tv|rottentomatoes.com|softgames.de|thestreet.com|video.foxnews.com|waywire.com|wibbitz.com (easylistchina+easylist.txt: 58990) -.imasdk.googleapis.com/js/core/bridge.*\.html -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=audiomack.com|cbc.ca|cnet.com|eboundservices.com|edmunds.com|gamejolt.com|globalnews.ca|live.geo.tv|news.sky.com|nfl.com|reuters.tv|rottentomatoes.com|softgames.de|thestreet.com|video.foxnews.com|waywire.com|wibbitz.com (easylist.txt: 48505) -.imasdk.googleapis.com/js/core/bridge.*\.html - -#ab2p-unblock-xframe-R961 -{+client-header-tagger{ab2p-unblock-xframe-R961} \ -} -# @@||adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone?*=preroll/2Black|$subdocument,domain=baynews9.com|cfnews13.com (easylistchina+easylist.txt: 58346) -.adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone\?.*=preroll/2Black$ -# @@||adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone?*=preroll/2Black|$subdocument,domain=baynews9.com|cfnews13.com (easylist.txt: 47861) -.adverts.brighthouse.com/advertpro/servlet/view/banner/url/zone\?.*=preroll/2Black$ - -#ab2p-unblock-xframe-R1007 -{+client-header-tagger{ab2p-unblock-xframe-R1007} \ -} -# @@||themoneyconverter.com/CurrencyConverter.aspx?*business-standard.com/ads/currency_converter_img.jpg$subdocument,domain=business-standard.com (easylistchina+easylist.txt: 59644) -.themoneyconverter.com/CurrencyConverter\.aspx\?.*business-standard\.com/ads/currency_converter_img\.jpg -# @@||themoneyconverter.com/CurrencyConverter.aspx?*business-standard.com/ads/currency_converter_img.jpg$subdocument,domain=business-standard.com (easylist.txt: 49159) -.themoneyconverter.com/CurrencyConverter\.aspx\?.*business-standard\.com/ads/currency_converter_img\.jpg - -#ab2p-unblock-xframe-R1019 -{+client-header-tagger{ab2p-unblock-xframe-R1019} \ -} -# @@||ads.avazu.net^$subdocument,domain=casadossegredos.tv|xuuby.com (easylistchina+easylist.txt: 60009) -.ads.avazu.net -# @@||ads.avazu.net^$subdocument,domain=casadossegredos.tv|xuuby.com (easylist.txt: 49524) -.ads.avazu.net - -#ab2p-unblock-xframe-R1036 -{+client-header-tagger{ab2p-unblock-xframe-R1036} \ -} -# @@||revresda.com/event.ng/Type=click&$subdocument,domain=cheaptickets.com|orbitz.com (easylistchina+easylist.txt: 59459) -.revresda.com/event\.ng/Type=click& -# @@||revresda.com/event.ng/Type=click&$subdocument,domain=cheaptickets.com|orbitz.com (easylist.txt: 48974) -.revresda.com/event\.ng/Type=click& - -#ab2p-unblock-xframe-R1039 -{+client-header-tagger{ab2p-unblock-xframe-R1039} \ -} -# @@/adlogger_tracker.php$subdocument,domain=chrissmoove.com (easylistchina+easylist.txt: 59917) -/(.*/)?adlogger_tracker\.php -# @@/adlogger_tracker.php$subdocument,domain=chrissmoove.com (easylist.txt: 49432) -/(.*/)?adlogger_tracker\.php - -#ab2p-unblock-xframe-R1070 -{+client-header-tagger{ab2p-unblock-xframe-R1070} \ -} -# @@||openx.org/ck.php?$subdocument,domain=cubeecraft.com (easylistchina+easylist.txt: 59304) -.openx.org/ck\.php\? -# @@||openx.org/afr.php?$subdocument,domain=cubeecraft.com (easylistchina+easylist.txt: 59302) -.openx.org/afr\.php\? -# @@||openx.org/ck.php?$subdocument,domain=cubeecraft.com (easylist.txt: 48819) -.openx.org/ck\.php\? -# @@||openx.org/afr.php?$subdocument,domain=cubeecraft.com (easylist.txt: 48817) -.openx.org/afr\.php\? - -#ab2p-unblock-xframe-R1083 -{+client-header-tagger{ab2p-unblock-xframe-R1083} \ -} -# @@||au.adserver.yahoo.com/a?$subdocument,domain=dating.yahoo.com.au (easylistchina+easylist.txt: 58449) -.au.adserver.yahoo.com/a\? -# @@||au.adserver.yahoo.com/a?$subdocument,domain=dating.yahoo.com.au (easylist.txt: 47964) -.au.adserver.yahoo.com/a\? - -#ab2p-unblock-xframe-R1084 -{+client-header-tagger{ab2p-unblock-xframe-R1084} \ -} -# @@||ads.ad-center.com^$subdocument,domain=dayt.se (easylistchina+easylist.txt: 60007) -.ads.ad-center.com -# @@||ads.ad-center.com/smart_ad/display?ref=*&smart_ad_id=$subdocument,domain=dayt.se (easylistchina+easylist.txt: 60006) -.ads.ad-center.com/smart_ad/display\?ref=.*&smart_ad_id= -# @@||ads.ad-center.com^$subdocument,domain=dayt.se (easylist.txt: 49522) -.ads.ad-center.com -# @@||ads.ad-center.com/smart_ad/display?ref=*&smart_ad_id=$subdocument,domain=dayt.se (easylist.txt: 49521) -.ads.ad-center.com/smart_ad/display\?ref=.*&smart_ad_id= - -#ab2p-unblock-xframe-R1116 -{+client-header-tagger{ab2p-unblock-xframe-R1116} \ -} -# @@||doubleclick.net/adi/sony.oz.opus/*;pos=bottom;$subdocument,domain=doctoroz.com (easylistchina+easylist.txt: 58703) -.doubleclick.net/adi/sony\.oz\.opus/.*;pos=bottom; -# @@||doubleclick.net/adi/sony.oz.opus/*;pos=bottom;$subdocument,domain=doctoroz.com (easylist.txt: 48218) -.doubleclick.net/adi/sony\.oz\.opus/.*;pos=bottom; - -#ab2p-unblock-xframe-R1896t -{+client-header-tagger{ab2p-unblock-xframe-R1896t} \ -} -# @@.net/director/?t=$subdocument,third-party,domain=eafyfsuh.net (easylistchina+easylist.txt: 58100) -/.*\.net/director/\?t= -.*.net/director/\?t= -# @@.net/director/?t=$subdocument,third-party,domain=eafyfsuh.net (easylist.txt: 47615) -/.*\.net/director/\?t= -.*.net/director/\?t= - -#ab2p-unblock-xframe-R1136 -{+client-header-tagger{ab2p-unblock-xframe-R1136} \ -} -# @@||doubleclick.net/adi/ebay.*/video;$subdocument,domain=ebay.com (easylistchina+easylist.txt: 58698) -.doubleclick.net/adi/ebay\..*/video; -# @@||doubleclick.net/adi/ebay.*/video;$subdocument,domain=ebay.com (easylist.txt: 48213) -.doubleclick.net/adi/ebay\..*/video; - -#ab2p-unblock-xframe-R1143 -{+client-header-tagger{ab2p-unblock-xframe-R1143} \ -} -# @@||google.com/afs/ads?$document,subdocument,domain=ehow.com|livestrong.com (easylistchina+easylist.txt: 58901) -.google.com/afs/ads\? -# @@||google.com/afs/ads?$document,subdocument,domain=ehow.com|livestrong.com (easylist.txt: 48416) -.google.com/afs/ads\? - -#ab2p-unblock-xframe-R202 -{+client-header-tagger{ab2p-unblock-xframe-R202} \ -} -# @@||affiliates.mozilla.org^$subdocument,domain=facebook.com (easylistchina+easylist.txt: 58360) -.affiliates.mozilla.org -# @@||affiliates.mozilla.org^$subdocument,domain=facebook.com (easylist.txt: 47875) -.affiliates.mozilla.org - -#ab2p-unblock-xframe-R1187 -{+client-header-tagger{ab2p-unblock-xframe-R1187} \ -} -# @@||epmads.com/ads?$subdocument,domain=fcportables.com (easylistchina+easylist.txt: 60253) -.epmads.com/ads\? -# @@||epmads.com/ads?$subdocument,domain=fcportables.com (easylist.txt: 49768) -.epmads.com/ads\? - -#ab2p-unblock-xframe-R1191 -{+client-header-tagger{ab2p-unblock-xframe-R1191} \ -} -# @@||enrondev.net/ads/server/www/delivery/*&zoneid=1$subdocument,domain=filecore.co.nz (easylistchina+easylist.txt: 60249) -.enrondev.net/ads/server/www/delivery/.*&zoneid=1 -# @@||enrondev.net/ads/server/www/delivery/*&zoneid=1$subdocument,domain=filecore.co.nz (easylist.txt: 49764) -.enrondev.net/ads/server/www/delivery/.*&zoneid=1 - -#ab2p-unblock-xframe-R1192 -{+client-header-tagger{ab2p-unblock-xframe-R1192} \ -} -# @@||admeld.com/ad/iframe/1122/pixfuture/300x250/$subdocument,domain=fileover.net (easylistchina+easylist.txt: 59998) -.admeld.com/ad/iframe/1122/pixfuture/300x250/ -# @@||admeld.com/ad/iframe/1122/pixfuture/300x250/$subdocument,domain=fileover.net (easylist.txt: 49513) -.admeld.com/ad/iframe/1122/pixfuture/300x250/ - -#ab2p-unblock-xframe-R1200 -{+client-header-tagger{ab2p-unblock-xframe-R1200} \ -} -# @@||flumotion.com/play/player?*/300x250-$subdocument,domain=flaixfm.cat (easylistchina+easylist.txt: 61333) -.flumotion.com/play/player\?.*/300x250- -# @@||flumotion.com/play/player?*/300x250-$subdocument,domain=flaixfm.cat (easylist.txt: 50848) -.flumotion.com/play/player\?.*/300x250- - -#ab2p-unblock-xframe-R1204 -{+client-header-tagger{ab2p-unblock-xframe-R1204} \ -} -# @@=300&$subdocument,domain=flv.tv (easylistchina+easylist.txt: 10062) +# @@||e701.net^*=60&$subdocument,domain=flv.tv (easylistchina.txt: 10220) +.e701.net/.*=60& +# @@=300&$subdocument,domain=flv.tv (easylistchina.txt: 10044) /.*=300& -#ab2p-unblock-xframe-R1232 -{+client-header-tagger{ab2p-unblock-xframe-R1232} \ +#ab2p-unblock-xframe-R329 +{+client-header-tagger{ab2p-unblock-xframe-R329} \ } -# @@||196.30.218.174/admentor/top_$subdocument,domain=fundsdata.co.za (easylistchina+easylist.txt: 58114) -.196.30.218.174/admentor/top_ -# @@||196.30.218.174/admentor/top_$subdocument,domain=fundsdata.co.za (easylist.txt: 47629) -.196.30.218.174/admentor/top_ - -#ab2p-unblock-xframe-R1258 -{+client-header-tagger{ab2p-unblock-xframe-R1258} \ -} -# @@||doubleclick.net/ddm/clk/*://www.amazon.jobs/jobs/$subdocument,domain=glassdoor.com (easylistchina+easylist.txt: 58721) -.doubleclick.net/ddm/clk/.*://www\.amazon\.jobs/jobs/ -# @@||doubleclick.net/ddm/clk/*://www.amazon.jobs/jobs/$subdocument,domain=glassdoor.com (easylist.txt: 48236) -.doubleclick.net/ddm/clk/.*://www\.amazon\.jobs/jobs/ - -#ab2p-unblock-xframe-R1287 -{+client-header-tagger{ab2p-unblock-xframe-R1287} \ -} -# @@||amazon-adsystem.com/widgets/q?*&ad_type=product_link&$subdocument,domain=hometheaterforum.com (easylistchina+easylist.txt: 58391) -.amazon-adsystem.com/widgets/q\?.*&ad_type=product_link& -# @@||amazon-adsystem.com/widgets/q?*&ad_type=product_link&$subdocument,domain=hometheaterforum.com (easylist.txt: 47906) -.amazon-adsystem.com/widgets/q\?.*&ad_type=product_link& - -#ab2p-unblock-xframe-R1333 -{+client-header-tagger{ab2p-unblock-xframe-R1333} \ -} -# @@||affiliate.fsas.eu^$subdocument,domain=iprima.cz (easylistchina+easylist.txt: 60967) -.affiliate.fsas.eu -# @@||affiliate.fsas.eu^$subdocument,domain=iprima.cz (easylist.txt: 50482) -.affiliate.fsas.eu - -#ab2p-unblock-xframe-R1340 -{+client-header-tagger{ab2p-unblock-xframe-R1340} \ -} -# @@||example.com^$image,subdocument,domain=izzylaif.com (advblock.txt: 7564) -.example.com - -#ab2p-unblock-xframe-R1342 -{+client-header-tagger{ab2p-unblock-xframe-R1342} \ -} -# @@||ad.doubleclick.net/adi/*.JABONG.COM$document,subdocument,domain=jabong.com (easylistchina+easylist.txt: 58154) -.ad.doubleclick.net/adi/.*\.JABONG\.COM -# @@||ad.doubleclick.net/adi/*.JABONG.COM$document,subdocument,domain=jabong.com (easylist.txt: 47669) -.ad.doubleclick.net/adi/.*\.JABONG\.COM - -#ab2p-unblock-xframe-R1343 -{+client-header-tagger{ab2p-unblock-xframe-R1343} \ -} -# @@||impact-ad.jp/combo?$subdocument,domain=jalan.net (easylistchina+easylist.txt: 61042) -.impact-ad.jp/combo\? -# @@||impact-ad.jp/combo?$subdocument,domain=jalan.net (easylist.txt: 50557) -.impact-ad.jp/combo\? - -#ab2p-unblock-xframe-R1345 -{+client-header-tagger{ab2p-unblock-xframe-R1345} \ -} -# @@||javfor.me/ads-1.html$subdocument,domain=jav4.me (easylistchina+easylist.txt: 61748) -.javfor.me/ads-1\.html -# @@||javfor.me/ads-1.html$subdocument,domain=jav4.me (easylist.txt: 51263) -.javfor.me/ads-1\.html - -#ab2p-unblock-xframe-R306 -{+client-header-tagger{ab2p-unblock-xframe-R306} \ -} -# @@||core.adprotected.com^$subdocument,domain=kissanime.com (easylistchina+easylist.txt: 60181) -.core.adprotected.com -# @@||core.adprotected.com^$subdocument,domain=kissanime.com (easylist.txt: 49696) -.core.adprotected.com - -#ab2p-unblock-xframe-R1375 -{+client-header-tagger{ab2p-unblock-xframe-R1375} \ -} -# @@||doubleclick.net^*/videoplayer*=worldnow$subdocument,domain=ktiv.com|wflx.com (easylistchina+easylist.txt: 58736) -.doubleclick.net/.*/videoplayer.*=worldnow -# @@||doubleclick.net^*/videoplayer*=worldnow$subdocument,domain=ktiv.com|wflx.com (easylist.txt: 48251) -.doubleclick.net/.*/videoplayer.*=worldnow - -#ab2p-unblock-xframe-R1419 -{+client-header-tagger{ab2p-unblock-xframe-R1419} \ -} -# @@||optimized-by.rubiconproject.com/a/*-2.html?$subdocument,domain=mangasky.co (easylistchina+easylist.txt: 60618) -.optimized-by.rubiconproject.com/a/.*-2\.html\? -# @@||optimized-by.rubiconproject.com/a/*-2.html?$subdocument,domain=mangasky.co (easylist.txt: 50133) -.optimized-by.rubiconproject.com/a/.*-2\.html\? - -#ab2p-unblock-xframe-R1433 -{+client-header-tagger{ab2p-unblock-xframe-R1433} \ -} -# @@||as.medscape.com/html.ng/transactionid%$subdocument,domain=medscape.com (easylistchina+easylist.txt: 58438) -.as.medscape.com/html\.ng/transactionid% -# @@||as.medscape.com/html.ng/transactionid%$subdocument,domain=medscape.com (easylist.txt: 47953) -.as.medscape.com/html\.ng/transactionid% - -#ab2p-unblock-xframe-R1447 -{+client-header-tagger{ab2p-unblock-xframe-R1447} \ -} -# @@||doubleclick.net^*/adi/MiLB.com/standings^$subdocument,domain=milb.com (easylistchina+easylist.txt: 58730) -.doubleclick.net/.*/adi/MiLB\.com/standings[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/multimedia^$subdocument,domain=milb.com (easylistchina+easylist.txt: 58729) -.doubleclick.net/.*/adi/MiLB\.com/multimedia[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/standings^$subdocument,domain=milb.com (easylist.txt: 48245) -.doubleclick.net/.*/adi/MiLB\.com/standings[^\w%.-] -# @@||doubleclick.net^*/adi/MiLB.com/multimedia^$subdocument,domain=milb.com (easylist.txt: 48244) -.doubleclick.net/.*/adi/MiLB\.com/multimedia[^\w%.-] - -#ab2p-unblock-xframe-R1450 -{+client-header-tagger{ab2p-unblock-xframe-R1450} \ -} -# @@||doubleclick.net/adi/mlb.mlb/*^free_agent_tracker_12^$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58701) -.doubleclick.net/adi/mlb\.mlb/.*[^\w%.-]free_agent_tracker_12[^\w%.-] -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=free_agent_tracker_$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58700) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=free_agent_tracker_ -# @@||doubleclick.net/adi/*.mlb/scoreboard;pageid=scoreboard_ymd;sz=$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58695) -.doubleclick.net/adi/.*\.mlb/scoreboard;pageid=scoreboard_ymd;sz= -# @@||doubleclick.net/adi/*.mlb/photos;*;sz=300x250;$subdocument,domain=mlb.com (easylistchina+easylist.txt: 58694) -.doubleclick.net/adi/.*\.mlb/photos;.*;sz=300x250; -# @@||doubleclick.net/adi/mlb.mlb/*^free_agent_tracker_12^$subdocument,domain=mlb.com (easylist.txt: 48216) -.doubleclick.net/adi/mlb\.mlb/.*[^\w%.-]free_agent_tracker_12[^\w%.-] -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=free_agent_tracker_$subdocument,domain=mlb.com (easylist.txt: 48215) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=free_agent_tracker_ -# @@||doubleclick.net/adi/*.mlb/scoreboard;pageid=scoreboard_ymd;sz=$subdocument,domain=mlb.com (easylist.txt: 48210) -.doubleclick.net/adi/.*\.mlb/scoreboard;pageid=scoreboard_ymd;sz= -# @@||doubleclick.net/adi/*.mlb/photos;*;sz=300x250;$subdocument,domain=mlb.com (easylist.txt: 48209) -.doubleclick.net/adi/.*\.mlb/photos;.*;sz=300x250; - -#ab2p-unblock-xframe-R1451 -{+client-header-tagger{ab2p-unblock-xframe-R1451} \ -} -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=cutfour;sz=$subdocument,domain=mlb.mlb.com (easylistchina+easylist.txt: 58699) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=cutfour;sz= -# @@||doubleclick.net/adi/mlb.mlb/*;pageid=cutfour;sz=$subdocument,domain=mlb.mlb.com (easylist.txt: 48214) -.doubleclick.net/adi/mlb\.mlb/.*;pageid=cutfour;sz= - -#ab2p-unblock-xframe-R1458 -{+client-header-tagger{ab2p-unblock-xframe-R1458} \ -} -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=mobinozer.com (easylistchina+easylist.txt: 60406) -.imasdk.googleapis.com/js/core/bridge.*\.html -# @@||imasdk.googleapis.com/js/core/bridge*.html$subdocument,domain=mobinozer.com (easylist.txt: 49921) -.imasdk.googleapis.com/js/core/bridge.*\.html - -#ab2p-unblock-xframe-R1461 -{+client-header-tagger{ab2p-unblock-xframe-R1461} \ -} -# @@||propellerads.com/afu.php?zoneid=$subdocument,domain=moevideos.net (easylistchina+easylist.txt: 61089) -.propellerads.com/afu\.php\?zoneid= -# @@||am10.ru/letitbit.net_in.php$subdocument,domain=moevideos.net (easylistchina+easylist.txt: 60972) -.am10.ru/letitbit\.net_in\.php -# @@||propellerads.com/afu.php?zoneid=$subdocument,domain=moevideos.net (easylist.txt: 50604) -.propellerads.com/afu\.php\?zoneid= -# @@||am10.ru/letitbit.net_in.php$subdocument,domain=moevideos.net (easylist.txt: 50487) -.am10.ru/letitbit\.net_in\.php - -#ab2p-unblock-xframe-R1477 -{+client-header-tagger{ab2p-unblock-xframe-R1477} \ -} -# @@||adwolf.ru^$script,subdocument,domain=muz.ru (advblock.txt: 7256) -.adwolf.ru - -#ab2p-unblock-xframe-R1485 -{+client-header-tagger{ab2p-unblock-xframe-R1485} \ -} -# @@||player.theplatform.com^$subdocument,domain=nbc.com (easylistchina+easylist.txt: 61086) -.player.theplatform.com -# @@||player.theplatform.com^$subdocument,domain=nbc.com (easylist.txt: 50601) -.player.theplatform.com - -#ab2p-unblock-xframe-R1486 -{+client-header-tagger{ab2p-unblock-xframe-R1486} \ -} -# @@||g.doubleclick.net/aclk?$subdocument,domain=nedbank.co.za (easylistchina+easylist.txt: 58848) -.g.doubleclick.net/aclk\? -# @@||g.doubleclick.net/aclk?$subdocument,domain=nedbank.co.za (easylist.txt: 48363) -.g.doubleclick.net/aclk\? - -#ab2p-unblock-xframe-R1514 -{+client-header-tagger{ab2p-unblock-xframe-R1514} \ -} -# @@||otrkeyfinder.com/otr/frame*.php?ads=*&search=$subdocument,domain=onlinetvrecorder.com (easylistchina+easylist.txt: 59313) -.otrkeyfinder.com/otr/frame.*\.php\?ads=.*&search= -# @@||otrkeyfinder.com/otr/frame*.php?ads=*&search=$subdocument,domain=onlinetvrecorder.com (easylist.txt: 48828) -.otrkeyfinder.com/otr/frame.*\.php\?ads=.*&search= - -#ab2p-unblock-xframe-R1519 -{+client-header-tagger{ab2p-unblock-xframe-R1519} \ -} -# @@||openload.io^$image,script,stylesheet,subdocument,domain=openload.io (easylistchina+easylist.txt: 60607) -.openload.io -# @@||openload.io^$image,script,stylesheet,subdocument,domain=openload.io (easylist.txt: 50122) -.openload.io - -#ab2p-unblock-xframe-R1531 -{+client-header-tagger{ab2p-unblock-xframe-R1531} \ -} -# @@||zillow.com/widgets/search/ZillowListingsWidget.htm?*&adsize=$subdocument,domain=patch.com (easylistchina+easylist.txt: 59879) -.zillow.com/widgets/search/ZillowListingsWidget\.htm\?.*&adsize= -# @@||zillow.com/widgets/search/ZillowListingsWidget.htm?*&adsize=$subdocument,domain=patch.com (easylist.txt: 49394) -.zillow.com/widgets/search/ZillowListingsWidget\.htm\?.*&adsize= - -#ab2p-unblock-xframe-R1534 -{+client-header-tagger{ab2p-unblock-xframe-R1534} \ -} -# @@||sponsorselect.com/direct/preroll.aspx?$subdocument,domain=pch.com (easylistchina+easylist.txt: 59566) -.sponsorselect.com/direct/preroll\.aspx\? -# @@||optimatic.com/iframe.html$subdocument,domain=pch.com (easylistchina+easylist.txt: 59306) -.optimatic.com/iframe\.html -# @@||sponsorselect.com/direct/preroll.aspx?$subdocument,domain=pch.com (easylist.txt: 49081) -.sponsorselect.com/direct/preroll\.aspx\? -# @@||optimatic.com/iframe.html$subdocument,domain=pch.com (easylist.txt: 48821) -.optimatic.com/iframe\.html - -#ab2p-unblock-xframe-R1551 -{+client-header-tagger{ab2p-unblock-xframe-R1551} \ -} -# @@||plan.ru/adserver/adframe.php?$subdocument,domain=plan.ru (advblock.txt: 7359) -.plan.ru/adserver/adframe\.php\? - -#ab2p-unblock-xframe-R1552 -{+client-header-tagger{ab2p-unblock-xframe-R1552} \ -} -# @@||adbooth.com/adserver/iframe.php?*&w=300&h=250&$subdocument,domain=planetatvonlinehd.blogspot.com.ar (easylistchina+easylist.txt: 59988) -.adbooth.com/adserver/iframe\.php\?.*&w=300&h=250& -# @@||adbooth.com/adserver/iframe.php?*&w=300&h=250&$subdocument,domain=planetatvonlinehd.blogspot.com.ar (easylist.txt: 49503) -.adbooth.com/adserver/iframe\.php\?.*&w=300&h=250& - -#ab2p-unblock-xframe-R414 -{+client-header-tagger{ab2p-unblock-xframe-R414} \ -} -# @@||reuters.tv/syndicatedPlayerChannel/$subdocument,domain=reuters.com (easylistchina+easylist.txt: 59455) -.reuters.tv/syndicatedPlayerChannel/ -# @@||reuters.tv/syndicatedPlayerChannel/$subdocument,domain=reuters.com (easylist.txt: 48970) -.reuters.tv/syndicatedPlayerChannel/ - -#ab2p-unblock-xframe-R1609 -{+client-header-tagger{ab2p-unblock-xframe-R1609} \ -} -# @@||advert.popunder.ru/banners/advert.php?type=banner_img|$image,subdocument,domain=rutracker.org.ua (advblock.txt: 7556) -.advert.popunder.ru/banners/advert\.php\?type=banner_img$ - -#ab2p-unblock-xframe-R1622 -{+client-header-tagger{ab2p-unblock-xframe-R1622} \ -} -# @@||google.com/adsense/$subdocument,domain=sedo.co.uk|sedo.com|sedo.jp|sedo.kr|sedo.pl (easylistchina+easylist.txt: 58898) -.google.com/adsense/ -# @@||google.com/adsense/$subdocument,domain=sedo.co.uk|sedo.com|sedo.jp|sedo.kr|sedo.pl (easylist.txt: 48413) -.google.com/adsense/ - -#ab2p-unblock-xframe-R1632 -{+client-header-tagger{ab2p-unblock-xframe-R1632} \ -} -# @@||google.com/recaptcha/$subdocument,domain=sh.st (easylistchina+easylist.txt: 58903) -.google.com/recaptcha/ -# @@||google.com/recaptcha/$subdocument,domain=sh.st (easylist.txt: 48418) -.google.com/recaptcha/ - -#ab2p-unblock-xframe-R1633 -{+client-header-tagger{ab2p-unblock-xframe-R1633} \ -} -# @@||196.30.218.174/admentor/sirius_sdo_top.htm$subdocument,domain=sharedata.co.za (easylistchina+easylist.txt: 58113) -.196.30.218.174/admentor/sirius_sdo_top\.htm -# @@||196.30.218.174/admentor/sirius_sdo_top.htm$subdocument,domain=sharedata.co.za (easylist.txt: 47628) -.196.30.218.174/admentor/sirius_sdo_top\.htm - -#ab2p-unblock-xframe-R1651 -{+client-header-tagger{ab2p-unblock-xframe-R1651} \ -} -# @@||smileonthetiles2.co.uk/openx/www/$image,script,subdocument,domain=smileonthetiles.com|smileonthetiles2.co.uk (easylistchina+easylist.txt: 59549) -.smileonthetiles2.co.uk/openx/www/ -# @@||smileonthetiles2.co.uk/openx/www/$image,script,subdocument,domain=smileonthetiles.com|smileonthetiles2.co.uk (easylist.txt: 49064) -.smileonthetiles2.co.uk/openx/www/ - -#ab2p-unblock-xframe-R1656 -{+client-header-tagger{ab2p-unblock-xframe-R1656} \ -} -# @@||doubleclick.net/adi/sny.tv/media;$subdocument,domain=sny.tv (easylistchina+easylist.txt: 58702) -.doubleclick.net/adi/sny\.tv/media; -# @@||doubleclick.net/adi/sny.tv/media;$subdocument,domain=sny.tv (easylist.txt: 48217) -.doubleclick.net/adi/sny\.tv/media; - -#ab2p-unblock-xframe-R1665 -{+client-header-tagger{ab2p-unblock-xframe-R1665} \ -} -# @@||video.unrulymedia.com^$script,subdocument,domain=springstreetads.com (easylistchina+easylist.txt: 60865) -.video.unrulymedia.com -# @@||video.unrulymedia.com^$script,subdocument,domain=springstreetads.com (easylist.txt: 50380) -.video.unrulymedia.com - -#ab2p-unblock-xframe-R451 -{+client-header-tagger{ab2p-unblock-xframe-R451} \ -} -# @@||stopgame.ru/www/delivery/ck.php?$subdocument,domain=stopgame.ru (advblock.txt: 7400) -.stopgame.ru/www/delivery/ck\.php\? -# @@||stopgame.ru/www/delivery/afr.php?*&target=_top&$subdocument,domain=stopgame.ru (advblock.txt: 7399) -.stopgame.ru/www/delivery/afr\.php\?.*&target=_top& - -#ab2p-unblock-xframe-R1682 -{+client-header-tagger{ab2p-unblock-xframe-R1682} \ -} -# @@||adriver.ru/cgi-bin/click.cgi?$subdocument,domain=surfingbird.com|surfingbird.ru (advblock.txt: 7230) -.adriver.ru/cgi-bin/click\.cgi\? - -#ab2p-unblock-xframe-R1694 -{+client-header-tagger{ab2p-unblock-xframe-R1694} \ -} -# @@/index.php/adhandler/|$subdocument,domain=tapochek.net (advblock.txt: 7539) -/(.*/)?index\.php/adhandler/$ -/index.php/adhandler -index.php/adhandler/$ - -#ab2p-unblock-xframe-R1697 -{+client-header-tagger{ab2p-unblock-xframe-R1697} \ -} -# @@||dailymotion.com/embed/video/$subdocument,domain=team-vitality.fr (easylistchina+easylist.txt: 60196) -.dailymotion.com/embed/video/ -# @@||dailymotion.com/embed/video/$subdocument,domain=team-vitality.fr (easylist.txt: 49711) -.dailymotion.com/embed/video/ - -#ab2p-unblock-xframe-R1707 -{+client-header-tagger{ab2p-unblock-xframe-R1707} \ -} -# @@||thedoujin.com/includes/ads/$subdocument,domain=thedoujin.com (easylistchina+easylist.txt: 59635) -.thedoujin.com/includes/ads/ -# @@||thedoujin.com/includes/ads/$subdocument,domain=thedoujin.com (easylist.txt: 49150) -.thedoujin.com/includes/ads/ - -#ab2p-unblock-xframe-R1708 -{+client-header-tagger{ab2p-unblock-xframe-R1708} \ -} -# @@||video.unrulymedia.com/iframe_$subdocument,domain=theemptynestexpress.com (easylistchina+easylist.txt: 59759) -.video.unrulymedia.com/iframe_ -# @@||video.unrulymedia.com/iframe_$subdocument,domain=theemptynestexpress.com (easylist.txt: 49274) -.video.unrulymedia.com/iframe_ - -#ab2p-unblock-xframe-R1709 -{+client-header-tagger{ab2p-unblock-xframe-R1709} \ -} -# @@||files.bannersnack.com/iframe/embed.html?$subdocument,domain=thegayuk.com (easylistchina+easylist.txt: 60284) -.files.bannersnack.com/iframe/embed\.html\? -# @@||files.bannersnack.com/iframe/embed.html?$subdocument,domain=thegayuk.com (easylist.txt: 49799) -.files.bannersnack.com/iframe/embed\.html\? - -#ab2p-unblock-xframe-R1720 -{+client-header-tagger{ab2p-unblock-xframe-R1720} \ -} -# @@||tradedoubler.com/anet?type(iframe)loc($subdocument,domain=topzone.lt (easylistchina+easylist.txt: 60813) -.tradedoubler.com/anet\?type\(iframe\)loc\( -# @@||tradedoubler.com/anet?type(iframe)loc($subdocument,domain=topzone.lt (easylist.txt: 50328) -.tradedoubler.com/anet\?type\(iframe\)loc\( - -#ab2p-unblock-xframe-R1734 -{+client-header-tagger{ab2p-unblock-xframe-R1734} \ -} -# @@||turkanime.tv/ads.html$subdocument,domain=turkanime.tv (easylistchina+easylist.txt: 60819) -.turkanime.tv/ads\.html -# @@||ads.ad4game.com/www/delivery/lg.php$subdocument,domain=turkanime.tv (easylistchina+easylist.txt: 60008) -.ads.ad4game.com/www/delivery/lg\.php -# @@||turkanime.tv/ads.html$subdocument,domain=turkanime.tv (easylist.txt: 50334) -.turkanime.tv/ads\.html -# @@||ads.ad4game.com/www/delivery/lg.php$subdocument,domain=turkanime.tv (easylist.txt: 49523) -.ads.ad4game.com/www/delivery/lg\.php - -#ab2p-unblock-xframe-R507 -{+client-header-tagger{ab2p-unblock-xframe-R507} \ -} -# @@/xbanner.js$subdocument,domain=vivo.sx (easylistchina+easylist.txt: 59939) -/(.*/)?xbanner\.js -xbanner.js*. -# @@/xbanner.js$subdocument,domain=vivo.sx (easylist.txt: 49454) -/(.*/)?xbanner\.js -xbanner.js*. - -#ab2p-unblock-xframe-R509 -{+client-header-tagger{ab2p-unblock-xframe-R509} \ -} -# @@||vk.com/ads.php?$subdocument,domain=vk.com (easylistchina+easylist.txt: 61233) -.vk.com/ads\.php\? -# @@||vk.com/ads.php?$subdocument,domain=vk.com (easylist.txt: 50748) -.vk.com/ads\.php\? - -#ab2p-unblock-xframe-R1815 -{+client-header-tagger{ab2p-unblock-xframe-R1815} \ -} -# @@||ad.103092804.com/st?ad_type=$subdocument,domain=wizard.mediacoderhq.com (easylistchina+easylist.txt: 58146) -.ad.103092804.com/st\?ad_type= -# @@||ad.103092804.com/st?ad_type=$subdocument,domain=wizard.mediacoderhq.com (easylist.txt: 47661) -.ad.103092804.com/st\?ad_type= - -#ab2p-unblock-xframe-R1842 -{+client-header-tagger{ab2p-unblock-xframe-R1842} \ -} -# @@||doubleclick.net/adi/yesnetwork.com/media;$subdocument,domain=yesnetwork.com (easylistchina+easylist.txt: 58704) -.doubleclick.net/adi/yesnetwork\.com/media; -# @@||doubleclick.net/adi/yesnetwork.com/media;$subdocument,domain=yesnetwork.com (easylist.txt: 48219) -.doubleclick.net/adi/yesnetwork\.com/media; - -#ab2p-unblock-xframe-R1845 -{+client-header-tagger{ab2p-unblock-xframe-R1845} \ -} -# @@||youjizz.com/videos/embed/$subdocument,domain=youjizz.com (easylistchina+easylist.txt: 61471) -.youjizz.com/videos/embed/ -# @@||youjizz.com/videos/embed/$subdocument,domain=youjizz.com (easylist.txt: 50986) -.youjizz.com/videos/embed/ - -#ab2p-unblock-xframe-R1853 -{+client-header-tagger{ab2p-unblock-xframe-R1853} \ -} -# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina+easylist.txt: 10134) +# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina.txt: 10118) .ad.doubleclick.net/ddm/adi/.*\.ZALORA\.COM\.HK - -#ab2p-unblock-xframe-R1857 -{+client-header-tagger{ab2p-unblock-xframe-R1857} \ -} -# @@||doubleclick.net/adi/zillow.hdp/$subdocument,domain=zillow.com (easylistchina+easylist.txt: 58705) -.doubleclick.net/adi/zillow\.hdp/ -# @@||doubleclick.net/adi/zillow.hdp/$subdocument,domain=zillow.com (easylist.txt: 48220) -.doubleclick.net/adi/zillow\.hdp/ - -#ab2p-unblock-xframe-nR-Rnt -{+client-header-tagger{ab2p-unblock-xframe-Rnt} \ - +client-header-tagger{ab2p-unblock-xframe-nR} \ -} -# @@||tube8.com/embed/$subdocument,~third-party (easylistchina+easylist.txt: 61705) -.tube8.com/embed/ -# @@||drugs.com^$subdocument,~third-party (easylistchina+easylist.txt: 60238) -.drugs.com -# @@||www.google.*/aclk?*&adurl=$subdocument,~third-party (easylistchina+easylist.txt: 59831) -.www.google.*./(.*/)?aclk\?.*&adurl= -# @@||www.facebook.com/ad.*^ajaxpipe^$subdocument,~third-party (easylistchina+easylist.txt: 59830) -.www.facebook.com/ad\..*[^\w%.-]ajaxpipe[^\w%.-] -# @@||twinspires.com/php/$subdocument,~third-party (easylistchina+easylist.txt: 59717) -.twinspires.com/php/ -# @@||ox.popcap.com/delivery/afr.php?&zoneid=$subdocument,~third-party (easylistchina+easylist.txt: 59321) -.ox.popcap.com/delivery/afr\.php\?&zoneid= -# @@||ads.trackitdown.net/delivery/afr.php?zoneid=6&$subdocument,~third-party (easylistchina+easylist.txt: 58268) -.ads.trackitdown.net/delivery/afr\.php\?zoneid=6& -# @@||tube8.com/embed/$subdocument,~third-party (easylist.txt: 51220) -.tube8.com/embed/ -# @@||drugs.com^$subdocument,~third-party (easylist.txt: 49753) -.drugs.com -# @@||www.google.*/aclk?*&adurl=$subdocument,~third-party (easylist.txt: 49346) -.www.google.*./(.*/)?aclk\?.*&adurl= -# @@||www.facebook.com/ad.*^ajaxpipe^$subdocument,~third-party (easylist.txt: 49345) -.www.facebook.com/ad\..*[^\w%.-]ajaxpipe[^\w%.-] -# @@||twinspires.com/php/$subdocument,~third-party (easylist.txt: 49232) -.twinspires.com/php/ -# @@||ox.popcap.com/delivery/afr.php?&zoneid=$subdocument,~third-party (easylist.txt: 48836) -.ox.popcap.com/delivery/afr\.php\?&zoneid= -# @@||ads.trackitdown.net/delivery/afr.php?zoneid=6&$subdocument,~third-party (easylist.txt: 47783) -.ads.trackitdown.net/delivery/afr\.php\?zoneid=6& - -#ab2p-unblock-xframe-nR-Rt -{+client-header-tagger{ab2p-unblock-xframe-Rt} \ - +client-header-tagger{ab2p-unblock-xframe-nR} \ -} -# @@||tracking.hornymatches.com/track?type=unsubscribe&enid=$subdocument,third-party (easylistchina+easylist.txt: 61466) -.tracking.hornymatches.com/track\?type=unsubscribe&enid= -# @@||affiliate.skiamade.com^$subdocument,third-party (easylistchina+easylist.txt: 58358) -.affiliate.skiamade.com -# @@||tracking.hornymatches.com/track?type=unsubscribe&enid=$subdocument,third-party (easylist.txt: 50981) -.tracking.hornymatches.com/track\?type=unsubscribe&enid= -# @@||affiliate.skiamade.com^$subdocument,third-party (easylist.txt: 47873) -.affiliate.skiamade.com - -#ab2p-unblock-xpopup -{-filter{ab2p-popup-filter} \ -} -TAG:^ab2p-unblock-xpopup$ -# @@||imagebam.com/image/$popup (easylistchina+easylist.txt: 61794) -.imagebam.com/image/ -# @@||pornhub.com/oauth2/authorize?$popup (easylistchina+easylist.txt: 61653) -.pornhub.com/oauth2/authorize\? -# @@||gsmarena.com/adclick.php?bannerid=$popup (easylistchina+easylist.txt: 61413) -.gsmarena.com/adclick\.php\?bannerid= -# @@||adv.blogupp.com^$popup (easylistchina+easylist.txt: 61403) -.adv.blogupp.com -# @@||ads.stumbleupon.com^$popup (easylistchina+easylist.txt: 61268) -.ads.stumbleupon.com -# @@||doubleclick.net^*/targeted.optimum/*;sz=968x286;$image,popup,script (easylistchina+easylist.txt: 58735) -.doubleclick.net/.*/targeted\.optimum/.*;sz=968x286; -# @@||s.click.aliexpress.com^$popup (advblock.txt: 7386) -.s.click.aliexpress.com -# @@||adv.ru^$popup (advblock.txt: 7247) -.adv.ru -# @@||imagebam.com/image/$popup (easylist.txt: 51309) -.imagebam.com/image/ -# @@||pornhub.com/oauth2/authorize?$popup (easylist.txt: 51168) -.pornhub.com/oauth2/authorize\? -# @@||gsmarena.com/adclick.php?bannerid=$popup (easylist.txt: 50928) -.gsmarena.com/adclick\.php\?bannerid= -# @@||adv.blogupp.com^$popup (easylist.txt: 50918) -.adv.blogupp.com -# @@||ads.stumbleupon.com^$popup (easylist.txt: 50783) -.ads.stumbleupon.com -# @@||doubleclick.net^*/targeted.optimum/*;sz=968x286;$image,popup,script (easylist.txt: 48250) -.doubleclick.net/.*/targeted\.optimum/.*;sz=968x286; - -#ab2p-unblock-xpopup-R952 -{+client-header-tagger{ab2p-unblock-xpopup-R952} \ -} -# @@//promo.$popup,domain=bactistatin.com|gamexp.ru|iguides.ru|ingate.ru|yandex.ru (advblock.txt: 7181) -promo.*. - -#ab2p-unblock-xpopup-R970 -{+client-header-tagger{ab2p-unblock-xpopup-R970} \ -} -# @@||bet365.com/home/?affiliate=$popup,domain=betbeaver.com|betwonga.com|betyper.com (easylistchina+easylist.txt: 61405) -.bet365.com/home/\?affiliate= -# @@||bet365.com/home/?affiliate=$popup,domain=betbeaver.com|betwonga.com|betyper.com (easylist.txt: 50920) -.bet365.com/home/\?affiliate= - -#ab2p-unblock-xpopup-R971 -{+client-header-tagger{ab2p-unblock-xpopup-R971} \ -} -# @@/redirect.aspx?pid=*&bid=$popup,domain=betbeaver.com|internetcasinot.com (easylistchina+easylist.txt: 61393) -/(.*/)?redirect\.aspx\?pid=.*&bid= -# @@/redirect.aspx?pid=*&bid=$popup,domain=betbeaver.com|internetcasinot.com (easylist.txt: 50908) -/(.*/)?redirect\.aspx\?pid=.*&bid= - -#ab2p-unblock-xpopup-R973 -{+client-header-tagger{ab2p-unblock-xpopup-R973} \ -} -# @@||adserving.unibet.com/redirect.aspx?pid=$popup,domain=betwonga.com (easylistchina+easylist.txt: 61402) -.adserving.unibet.com/redirect\.aspx\?pid= -# @@||adserving.unibet.com/redirect.aspx?pid=$popup,domain=betwonga.com (easylist.txt: 50917) -.adserving.unibet.com/redirect\.aspx\?pid= - -#ab2p-unblock-xpopup-R974 -{+client-header-tagger{ab2p-unblock-xpopup-R974} \ -} -# @@||adfarm.mediaplex.com/ad/ck/$popup,domain=betwonga.com|dealsplus.com|matched-bet.net|pcmag.com (easylistchina+easylist.txt: 61394) -.adfarm.mediaplex.com/ad/ck/ -# @@||adfarm.mediaplex.com/ad/ck/$popup,domain=betwonga.com|dealsplus.com|matched-bet.net|pcmag.com (easylist.txt: 50909) -.adfarm.mediaplex.com/ad/ck/ - -#ab2p-unblock-xpopup-R975 -{+client-header-tagger{ab2p-unblock-xpopup-R975} \ -} -# @@||ads.betfair.com/redirect.aspx?pid=$popup,domain=betwonga.com|matched-bet.net (easylistchina+easylist.txt: 61395) -.ads.betfair.com/redirect\.aspx\?pid= -# @@||ads.betfair.com/redirect.aspx?pid=$popup,domain=betwonga.com|matched-bet.net (easylist.txt: 50910) -.ads.betfair.com/redirect\.aspx\?pid= - -#ab2p-unblock-xpopup-R991 -{+client-header-tagger{ab2p-unblock-xpopup-R991} \ -} -# @@||g.doubleclick.net/aclk?$popup,domain=bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|weddingspot.co.uk|zillow.com (easylistchina+easylist.txt: 61412) -.g.doubleclick.net/aclk\? -# @@||g.doubleclick.net/aclk?$popup,domain=bodas.com.mx|bodas.net|casamentos.com.br|casamentos.pt|casamiento.com.uy|casamientos.com.ar|mariages.net|matrimonio.com|matrimonio.com.co|matrimonio.com.pe|matrimonios.cl|weddingspot.co.uk|zillow.com (easylist.txt: 50927) -.g.doubleclick.net/aclk\? - -#ab2p-unblock-xpopup-R1003 -{+client-header-tagger{ab2p-unblock-xpopup-R1003} \ -} -# @@||supportchat.contentabc.com^$popup,domain=brazzerssupport.com (easylistchina+easylist.txt: 61802) -.supportchat.contentabc.com -# @@||supportchat.contentabc.com^$popup,domain=brazzerssupport.com (easylist.txt: 51317) -.supportchat.contentabc.com - -#ab2p-unblock-xpopup-R1065 -{+client-header-tagger{ab2p-unblock-xpopup-R1065} \ -} -# @@||doubleclick.net/ddm/clk/$popup,domain=couponcodeswap.com (easylistchina+easylist.txt: 61410) -.doubleclick.net/ddm/clk/ -# @@||doubleclick.net/ddm/clk/$popup,domain=couponcodeswap.com (easylist.txt: 50925) -.doubleclick.net/ddm/clk/ - -#ab2p-unblock-xpopup-R1068 -{+client-header-tagger{ab2p-unblock-xpopup-R1068} \ -} -# @@||adfox.ru^$image,popup,script,domain=ctc.ru|mts.ru|ozon.ru|tnt-online.ru|videomore.ru (advblock.txt: 7225) -.adfox.ru - -#ab2p-unblock-xpopup-R1177 -{+client-header-tagger{ab2p-unblock-xpopup-R1177} \ -} -# @@||extremetubemate.com/?AFNO=$popup,domain=extremetube.com (easylistchina+easylist.txt: 61793) -.extremetubemate.com/\?AFNO= -# @@||extremetubefreehd.com^*.Extreme_HeaderTab&$popup,domain=extremetube.com (easylistchina+easylist.txt: 61792) -.extremetubefreehd.com/.*\.Extreme_HeaderTab& -# @@||extremetubemate.com/?AFNO=$popup,domain=extremetube.com (easylist.txt: 51308) -.extremetubemate.com/\?AFNO= -# @@||extremetubefreehd.com^*.Extreme_HeaderTab&$popup,domain=extremetube.com (easylist.txt: 51307) -.extremetubefreehd.com/.*\.Extreme_HeaderTab& - -#ab2p-unblock-xpopup-R1178 -{+client-header-tagger{ab2p-unblock-xpopup-R1178} \ -} -# @@||as.sexad.net^*?p=*&v=$popup,domain=extremetube.com|keezmovies.com|pornhub.com|redtube.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61790) -.as.sexad.net/.*\?p=.*&v= -# @@||as.sexad.net^*?p=*&v=$popup,domain=extremetube.com|keezmovies.com|pornhub.com|redtube.com|spankwire.com|tube8.com|tube8.es|tube8.fr (easylist.txt: 51305) -.as.sexad.net/.*\?p=.*&v= - -#ab2p-unblock-xpopup-R1179 -{+client-header-tagger{ab2p-unblock-xpopup-R1179} \ -} -# @@||wmtrafficentry.com/cgi-bin/ewm.cgi/*_HeaderTab?$popup,domain=extremetube.com|spankwire.com (easylistchina+easylist.txt: 61806) -.wmtrafficentry.com/cgi-bin/ewm\.cgi/.*_HeaderTab\? -# @@||securejoinsite.com/loader.php?*_HeaderTab&$popup,domain=extremetube.com|spankwire.com (easylistchina+easylist.txt: 61799) -.securejoinsite.com/loader\.php\?.*_HeaderTab& -# @@||wmtrafficentry.com/cgi-bin/ewm.cgi/*_HeaderTab?$popup,domain=extremetube.com|spankwire.com (easylist.txt: 51321) -.wmtrafficentry.com/cgi-bin/ewm\.cgi/.*_HeaderTab\? -# @@||securejoinsite.com/loader.php?*_HeaderTab&$popup,domain=extremetube.com|spankwire.com (easylist.txt: 51314) -.securejoinsite.com/loader\.php\?.*_HeaderTab& - -#ab2p-unblock-xpopup-R1203 -{+client-header-tagger{ab2p-unblock-xpopup-R1203} \ -} -# @@||ads.flipkart.com/delivery/ck.php?$popup,domain=flipkart.com (easylistchina+easylist.txt: 61396) -.ads.flipkart.com/delivery/ck\.php\? -# @@||ads.flipkart.com/delivery/ck.php?$popup,domain=flipkart.com (easylist.txt: 50911) -.ads.flipkart.com/delivery/ck\.php\? - -#ab2p-unblock-xpopup-R1290 -{+client-header-tagger{ab2p-unblock-xpopup-R1290} \ -} -# @@||doubleclick.net/clk;$popup,domain=hotukdeals.com|jobamatic.com|play.google.com|santander.co.uk|techrepublic.com (easylistchina+easylist.txt: 61409) -.doubleclick.net/clk; -# @@||doubleclick.net/clk;$popup,domain=hotukdeals.com|jobamatic.com|play.google.com|santander.co.uk|techrepublic.com (easylist.txt: 50924) -.doubleclick.net/clk; - -#ab2p-unblock-xpopup-R1315 -{+client-header-tagger{ab2p-unblock-xpopup-R1315} \ -} -# @@||viroll.com^$popup,domain=imagebam.com|imgbox.com (easylistchina+easylist.txt: 61420) -.viroll.com -# @@||viroll.com^$popup,domain=imagebam.com|imgbox.com (easylist.txt: 50935) -.viroll.com - -#ab2p-unblock-xpopup-R1330 -{+client-header-tagger{ab2p-unblock-xpopup-R1330} \ -} -# @@||casino.com^*&affiliate=$popup,domain=internetcasinot.com (easylistchina+easylist.txt: 61406) -.casino.com/.*&affiliate= -# @@||casino.com^*&affiliate=$popup,domain=internetcasinot.com (easylist.txt: 50921) -.casino.com/.*&affiliate= - -#ab2p-unblock-xpopup-R1351 -{+client-header-tagger{ab2p-unblock-xpopup-R1351} \ -} -# @@||serving-sys.com/BurstingPipe/adServer.bs?$popup,domain=jobamatic.com (easylistchina+easylist.txt: 61415) -.serving-sys.com/BurstingPipe/adServer\.bs\? -# @@||serving-sys.com/BurstingPipe/adServer.bs?$popup,domain=jobamatic.com (easylist.txt: 50930) -.serving-sys.com/BurstingPipe/adServer\.bs\? - -#ab2p-unblock-xpopup-R1540 -{+client-header-tagger{ab2p-unblock-xpopup-R1540} \ -} -# @@||doubleclick.net/click%$popup,domain=people.com|time.com (easylistchina+easylist.txt: 61408) -.doubleclick.net/click% -# @@||doubleclick.net/click%$popup,domain=people.com|time.com (easylist.txt: 50923) -.doubleclick.net/click% - -#ab2p-unblock-xpopup-R392 -{+client-header-tagger{ab2p-unblock-xpopup-R392} \ -} -# @@||pornhublive.com/?AFNO=$popup,domain=pornhub.com (easylistchina+easylist.txt: 61795) -.pornhublive.com/\?AFNO= -# @@&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box$popup,domain=pornhub.com (easylistchina+easylist.txt: 61789) -/.*&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box -# @@||pornhublive.com/?AFNO=$popup,domain=pornhub.com (easylist.txt: 51310) -.pornhublive.com/\?AFNO= -# @@&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box$popup,domain=pornhub.com (easylist.txt: 51304) -/.*&utm_medium=traffic_trade&utm_campaign=pornhub_trade_search_box - -#ab2p-unblock-xpopup-R403 -{+client-header-tagger{ab2p-unblock-xpopup-R403} \ -} -# @@||thefile.me^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61419) -.thefile.me -# @@||streamin.to^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61418) -.streamin.to -# @@||sharesix.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61417) -.sharesix.com -# @@||sharerepo.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61416) -.sharerepo.com -# @@||nosvideo.com^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61414) -.nosvideo.com -# @@||cloudzilla.to^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61407) -.cloudzilla.to -# @@||bestreams.net^$popup,domain=putlocker.is (easylistchina+easylist.txt: 61404) -.bestreams.net -# @@||thefile.me^$popup,domain=putlocker.is (easylist.txt: 50934) -.thefile.me -# @@||streamin.to^$popup,domain=putlocker.is (easylist.txt: 50933) -.streamin.to -# @@||sharesix.com^$popup,domain=putlocker.is (easylist.txt: 50932) -.sharesix.com -# @@||sharerepo.com^$popup,domain=putlocker.is (easylist.txt: 50931) -.sharerepo.com -# @@||nosvideo.com^$popup,domain=putlocker.is (easylist.txt: 50929) -.nosvideo.com -# @@||cloudzilla.to^$popup,domain=putlocker.is (easylist.txt: 50922) -.cloudzilla.to -# @@||bestreams.net^$popup,domain=putlocker.is (easylist.txt: 50919) -.bestreams.net - -#ab2p-unblock-xpopup-R1589 -{+client-header-tagger{ab2p-unblock-xpopup-R1589} \ -} -# @@||redtubeplatinum.com/track/*/join?$popup,domain=redtube.com (easylistchina+easylist.txt: 61798) -.redtubeplatinum.com/track/.*/join\? -# @@||redtubeplatinum.com/signup/signup.php$popup,domain=redtube.com (easylistchina+easylist.txt: 61797) -.redtubeplatinum.com/signup/signup\.php -# @@||redtubelive.com/?AFNO=$popup,domain=redtube.com (easylistchina+easylist.txt: 61796) -.redtubelive.com/\?AFNO= -# @@||redtubeplatinum.com/track/*/join?$popup,domain=redtube.com (easylist.txt: 51313) -.redtubeplatinum.com/track/.*/join\? -# @@||redtubeplatinum.com/signup/signup.php$popup,domain=redtube.com (easylist.txt: 51312) -.redtubeplatinum.com/signup/signup\.php -# @@||redtubelive.com/?AFNO=$popup,domain=redtube.com (easylist.txt: 51311) -.redtubelive.com/\?AFNO= - -#ab2p-unblock-xpopup-R1591 -{+client-header-tagger{ab2p-unblock-xpopup-R1591} \ -} -# @@||ads.reempresa.org^$popup,domain=reempresa.org (easylistchina+easylist.txt: 61398) -.ads.reempresa.org -# @@||ads.reempresa.org^$popup,domain=reempresa.org (easylist.txt: 50913) -.ads.reempresa.org - -#ab2p-unblock-xpopup-R1660 -{+client-header-tagger{ab2p-unblock-xpopup-R1660} \ -} -# @@||spankwirefreehd.com^*.Spankwire_HeaderTab&$popup,domain=spankwire.com (easylistchina+easylist.txt: 61801) -.spankwirefreehd.com/.*\.Spankwire_HeaderTab& -# @@||spankwirecams.com/?AFNO=$popup,domain=spankwire.com (easylistchina+easylist.txt: 61800) -.spankwirecams.com/\?AFNO= -# @@||spankwirefreehd.com^*.Spankwire_HeaderTab&$popup,domain=spankwire.com (easylist.txt: 51316) -.spankwirefreehd.com/.*\.Spankwire_HeaderTab& -# @@||spankwirecams.com/?AFNO=$popup,domain=spankwire.com (easylist.txt: 51315) -.spankwirecams.com/\?AFNO= - -#ab2p-unblock-xpopup-R1663 -{+client-header-tagger{ab2p-unblock-xpopup-R1663} \ -} -# @@://ads.$popup,domain=sports.ru (advblock.txt: 7217) -/.*://ads\. -ads.*. - -#ab2p-unblock-xpopup-R1675 -{+client-header-tagger{ab2p-unblock-xpopup-R1675} \ -} -# @@||ads.sudpresse.be^$popup,domain=sudinfo.be (easylistchina+easylist.txt: 61399) -.ads.sudpresse.be -# @@||ads.sudpresse.be^$popup,domain=sudinfo.be (easylist.txt: 50914) -.ads.sudpresse.be - -#ab2p-unblock-xpopup-R1730 -{+client-header-tagger{ab2p-unblock-xpopup-R1730} \ -} -# @@||tube8live.com/?AFNO=$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61805) -.tube8live.com/\?AFNO= -# @@||t8premium.com/track/*/join?$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61804) -.t8premium.com/track/.*/join\? -# @@||t8premium.com/signup/signup.php?$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61803) -.t8premium.com/signup/signup\.php\? -# @@||contentabc.com/ads?spot_id=$popup,domain=tube8.com|tube8.es|tube8.fr (easylistchina+easylist.txt: 61791) -.contentabc.com/ads\?spot_id= -# @@||tube8live.com/?AFNO=$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51320) -.tube8live.com/\?AFNO= -# @@||t8premium.com/track/*/join?$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51319) -.t8premium.com/track/.*/join\? -# @@||t8premium.com/signup/signup.php?$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51318) -.t8premium.com/signup/signup\.php\? -# @@||contentabc.com/ads?spot_id=$popup,domain=tube8.com|tube8.es|tube8.fr (easylist.txt: 51306) -.contentabc.com/ads\?spot_id= - -#ab2p-unblock-xpopup-R1790 -{+client-header-tagger{ab2p-unblock-xpopup-R1790} \ -} -# @@||doubleclick.net/ddm/trackclk/$popup,domain=vouchercodes.co.uk (easylistchina+easylist.txt: 61411) -.doubleclick.net/ddm/trackclk/ -# @@||doubleclick.net/ddm/trackclk/$popup,domain=vouchercodes.co.uk (easylist.txt: 50926) -.doubleclick.net/ddm/trackclk/ - -#ab2p-unblock-xpopup-R1812 -{+client-header-tagger{ab2p-unblock-xpopup-R1812} \ -} -# @@||ads.williamhillcasino.com/redirect.aspx?*=internal&$popup,domain=williamhillcasino.com (easylistchina+easylist.txt: 61401) -.ads.williamhillcasino.com/redirect\.aspx\?.*=internal& -# @@||ads.williamhillcasino.com/redirect.aspx?*=internal&$popup,domain=williamhillcasino.com (easylist.txt: 50916) -.ads.williamhillcasino.com/redirect\.aspx\?.*=internal& - -#ab2p-unblock-xpopup-nR-Rnt -{+client-header-tagger{ab2p-unblock-xpopup-Rnt} \ - +client-header-tagger{ab2p-unblock-xpopup-nR} \ -} -# @@||ads.twitter.com^$popup,~third-party (easylistchina+easylist.txt: 61400) -.ads.twitter.com -# @@||ads.pinterest.com^$popup,~third-party (easylistchina+easylist.txt: 61397) -.ads.pinterest.com -# @@||ads.twitter.com^$popup,~third-party (easylist.txt: 50915) -.ads.twitter.com -# @@||ads.pinterest.com^$popup,~third-party (easylist.txt: 50912) -.ads.pinterest.com diff --git a/1_9.r18_plugin/ad_plug/ab2p.filter b/1_9.r18_plugin/ad_plug/ab2p.filter index fca7a72..3e6c207 100644 --- a/1_9.r18_plugin/ad_plug/ab2p.filter +++ b/1_9.r18_plugin/ad_plug/ab2p.filter @@ -1,4106 +1,1067 @@ #AbBlock generated filters -- don't edit -- #----- source ----- -#Title: EasyList -#Url: https://easylist-downloads.adblockplus.org/easylist.txt -#Last modified: 08 Jan 2016 15:30 UTC +#Title: EasyList China +#Url: https://easylist-downloads.adblockplus.org/easylistchina.txt +#Last modified: 29 Jan 2016 15:51 UTC #Expires: 96 hours -#Version: 201601081530 -#License: https://easylist-downloads.adblockplus.org/COPYING -#Homepage: https://easylist.adblockplus.org/ -#----- source ----- -#Title: RU AdList -#Url: https://easylist-downloads.adblockplus.org/advblock.txt -#Last modified: 08 Jan 2016 15:30 UTC -#Expires: 72 hours -#Version: 201601081530 -#License: http://creativecommons.org/licenses/by/3.0/ -#Homepage: https://forums.lanik.us/viewforum.php?f=102 -#----- source ----- -#Title: EasyList China+EasyList -#Url: https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt -#Last modified: 08 Jan 2016 15:30 UTC -#Expires: 96 hours -#Version: 201601081530 +#Version: 201601291533 #License: https://easylist-downloads.adblockplus.org/COPYING #Homepage: http://abpchina.org/forum/ -#----- source ----- -#Url: my_custom.txt -#Last modified: 17 Nov 1858 00:00 UTC -#Expires: 72 hours (expired) #------- end ------ CLIENT-HEADER-TAGGER: ab2p-block-dnt-R1 -s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|107\.150\.17\.66|20fuck\.com|20men\.com|22fuck\.com|23\.226\.134\.115|23\.226\.134\.116|23\.226\.138\.28|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tb001\.xyz|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R10 -s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R100 -s@^referer(?=:[^\n]*[./](?:arstechnica\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R101 -s@^referer(?=:[^\n]*[./](?:askandyaboutclothes\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R102 -s@^referer(?=:[^\n]*[./](?:astalavista\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R103 -s@^referer(?=:[^\n]*[./](?:au\.tv\.yahoo\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R104 -s@^referer(?=:[^\n]*[./](?:audiforums\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R105 -s@^referer(?=:[^\n]*[./](?:augusta\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R106 -s@^referer(?=:[^\n]*[./](?:autoexpress\.co\.uk|evo\.co\.uk|givemefootball\.com|mensfitness\.co\.uk|mpora\.com|tribalfootball\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R107 -s@^referer(?=:[^\n]*[./](?:avaxhm\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R108 -s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R109 -s@^referer(?=:[^\n]*[./](?:backin\.net|uploadlw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R11 -s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R110 -s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R111 -s@^referer(?=:[^\n]*[./](?:backupload\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R112 -s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R113 -s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R114 -s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R115 -s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R116 -s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R117 -s@^referer(?=:[^\n]*[./](?:best-bitcoin-faucet\.eu|best-free-faucet\.eu|bitcoin-best-faucet\.eu|bitcoin-cloud\.eu|bitcoin-faucet\.eu|bitcoin-free-faucet\.eu|free-bitcoin-faucet\.eu|get-bitcoins-free\.eu|get-free-bitcoin\.eu|win-free-bitcoins\.eu)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R118 -s@^referer(?=:[^\n]*[./](?:bestreams\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R119 -s@^referer(?=:[^\n]*[./](?:better-explorer\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R12 s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R120 -s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R121 -s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R122 -s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R123 -s@^referer(?=:[^\n]*[./](?:blizko\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R124 -s@^referer(?=:[^\n]*[./](?:bossip\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R125 -s@^referer(?=:[^\n]*[./](?:bostonmagazine\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R126 -s@^referer(?=:[^\n]*[./](?:boxoffice\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R127 -s@^referer(?=:[^\n]*[./](?:boyfriendtv\.com|pornoxo\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R128 -s@^referer(?=:[^\n]*[./](?:brb\.to|cxz\.to|fs\.to)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R129 -s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R13 -s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R130 -s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R131 -s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R132 -s@^referer(?=:[^\n]*[./](?:caclubindia\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R133 -s@^referer(?=:[^\n]*[./](?:cao1024\.com|qiannao\.com|ref\.so)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R134 -s@^referer(?=:[^\n]*[./](?:capricornus\.cc|moonwalk\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R135 -s@^referer(?=:[^\n]*[./](?:carambatv\.ru|goodgame\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R136 -s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R138 -s@^referer(?=:[^\n]*[./](?:cbs\.com|cbsnews\.com|twitch\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R139 -s@^referer(?=:[^\n]*[./](?:cc\.com|mtv\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R14 -s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84zr\.com|99re\.city|99re\.co|99re\.net|99re\.org|99re6\.com|99re8\.com|99rehomes\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|cao1024\.com|caoliuzx\.com|cililian\.me|fdzone\.org|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|lululu\.club|lululu\.lu|ml\.gg|sbme\.me|taohuazu\.tw|ttdyy\.tv|xinqixi\.com|xxxbt\.com|zhiboche\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R140 -s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R141 -s@^referer(?=:[^\n]*[./](?:ccav1\.com|ypan\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R142 -s@^referer(?=:[^\n]*[./](?:censor\.net\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R143 -s@^referer(?=:[^\n]*[./](?:channel4\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R144 -s@^referer(?=:[^\n]*[./](?:chem21\.info)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R145 -s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R146 -s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R147 -s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R148 -s@^referer(?=:[^\n]*[./](?:clipconverter\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R149 -s@^referer(?=:[^\n]*[./](?:cloudfront\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R15 -s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R150 -s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R151 -s@^referer(?=:[^\n]*[./](?:cnn\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R152 -s@^referer(?=:[^\n]*[./](?:coedmagazine\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R153 -s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R154 -s@^referer(?=:[^\n]*[./](?:coolsport\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R155 -s@^referer(?=:[^\n]*[./](?:couchtuner\.eu|zzstream\.li)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R156 -s@^referer(?=:[^\n]*[./](?:cpahero\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R157 -s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R158 -s@^referer(?=:[^\n]*[./](?:cracksfiles\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R159 -s@^referer(?=:[^\n]*[./](?:crash\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R16 -s@^referer(?=:[^\n]*[./](?:189so\.cn)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R160 -s@^referer(?=:[^\n]*[./](?:crazys\.info|ucrazy\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R161 -s@^referer(?=:[^\n]*[./](?:crescent-news\.com|daily-jeff\.com|recordpub\.com|state-journal\.com|the-daily-record\.com|the-review\.com|times-gazette\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R162 -s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R163 -s@^referer(?=:[^\n]*[./](?:csnnw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R164 -s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R165 -s@^referer(?=:[^\n]*[./](?:cybergame\.tv|smotri\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R166 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R167 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com|youtube\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R168 -s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R169 -s@^referer(?=:[^\n]*[./](?:darkmoney\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R17 -s@^referer(?=:[^\n]*[./](?:18avday\.cc|18avday\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R170 -s@^referer(?=:[^\n]*[./](?:datacloud\.to)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R171 -s@^referer(?=:[^\n]*[./](?:datafilehost\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R172 -s@^referer(?=:[^\n]*[./](?:dcrtv\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R173 -s@^referer(?=:[^\n]*[./](?:ddlvalley\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R174 -s@^referer(?=:[^\n]*[./](?:deadspin\.com|gawker\.com|gizmodo\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|lifehacker\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R175 -s@^referer(?=:[^\n]*[./](?:deccanchronicle\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R176 -s@^referer(?=:[^\n]*[./](?:deditv\.com|vidbox\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R177 -s@^referer(?=:[^\n]*[./](?:deluxemusic\.tv\.staging\.ipercast\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R178 -s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R179 -s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R18 -s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R180 -s@^referer(?=:[^\n]*[./](?:dl4all\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R181 -s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R182 -s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R183 -s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R184 -s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R185 -s@^referer(?=:[^\n]*[./](?:dsero\.com|ginormousbargains\.com|korean-candy\.com|misheel\.net|politicususa\.com|techydoor\.com|trutower\.com|unfair\.co)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R186 -s@^referer(?=:[^\n]*[./](?:dsero\.com|korean-candy\.com|misheel\.net|politicususa\.com|techydoor\.com|trutower\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R187 -s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R188 -s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R189 -s@^referer(?=:[^\n]*[./](?:e\.mail\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R19 -s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R190 -s@^referer(?=:[^\n]*[./](?:echo\.msk\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R191 -s@^referer(?=:[^\n]*[./](?:edinstvennaya\.ua|gazeta\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R192 -s@^referer(?=:[^\n]*[./](?:enjore\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R193 -s@^referer(?=:[^\n]*[./](?:ewn\.co\.za)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R194 -s@^referer(?=:[^\n]*[./](?:exashare\.com|sex\.com|thepiratebay\.am|thepiratebay\.gd|thepiratebay\.la|thepiratebay\.mn|thepiratebay\.vg)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R195 -s@^referer(?=:[^\n]*[./](?:exashare\.com|twer\.info|youwatch\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R196 -s@^referer(?=:[^\n]*[./](?:explosm\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R197 -s@^referer(?=:[^\n]*[./](?:extremetech\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R198 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|youporn\.com|youporngay\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R199 -s@^referer(?=:[^\n]*[./](?:eztv\.ag|firedrive\.com|limetorrents\.cc|monova\.org|sankakucomplex\.com|sockshare\.com|ukpirate\.org|unblocked\.la|userscloud\.com|yourbittorrent\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R2 -s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R20 -s@^referer(?=:[^\n]*[./](?:19rus\.info|1tvnet\.ru|arendator\.ru|biwork\.ru|bvedomosti\.ru|cars\.ru|csmania\.ru|fitsport\.ru|fuzz-magazine\.ru|gamegpu\.ru|hd-systems\.com\.ua|itexpert\.org\.ua|karelia\.ru|km\.ru|mebelminsk\.by|moscow-post\.com|nakanune\.ru|newizv\.ru|ngregion\.ru|poiskvps\.ru|pretenziy\.ru|rbc\.ru|ridna\.ua|rtr24\.ru|ruslife\.eu|sevastopol\.su|skoda-club\.org\.ua|starkosino\.ru|vjazhi\.ru|vp-news\.ru|vsatke\.ru|zrenue\.com|谐芯褉芯写-泻懈薪谐懈褋械锌锌\.褉褎)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R200 -s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R201 -s@^referer(?=:[^\n]*[./](?:f-picture\.net|filmasik\.net|radikal\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R202 -s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R203 -s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R204 -s@^referer(?=:[^\n]*[./](?:farmingshow\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R205 -s@^referer(?=:[^\n]*[./](?:farmingshow\.com|radiosport\.co\.nz)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R206 -s@^referer(?=:[^\n]*[./](?:farmonline\.com\.au)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R207 -s@^referer(?=:[^\n]*[./](?:fastvideo\.eu|rapidvideo\.org|sh\.st)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R208 -s@^referer(?=:[^\n]*[./](?:fayloobmennik\.net|lovekinozal\.ru|rusfolder\.com|rutor\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R209 -s@^referer(?=:[^\n]*[./](?:fiaformulae\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R21 -s@^referer(?=:[^\n]*[./](?:1fichier\.com|limetorrents\.cc|primewire\.ag|thepiratebay\.銇裤倱銇)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R210 -s@^referer(?=:[^\n]*[./](?:fiberupload\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R211 -s@^referer(?=:[^\n]*[./](?:fijivillage\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R212 -s@^referer(?=:[^\n]*[./](?:filatak\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R213 -s@^referer(?=:[^\n]*[./](?:fileforever\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R214 -s@^referer(?=:[^\n]*[./](?:fileplaneta\.com|freezpic\.ru|mediapapa\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R215 -s@^referer(?=:[^\n]*[./](?:fillinn\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R216 -s@^referer(?=:[^\n]*[./](?:filmovizija\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R217 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R218 -s@^referer(?=:[^\n]*[./](?:findagrave\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R219 -s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R22 -s@^referer(?=:[^\n]*[./](?:1kinobig\.ru|hdkinomax\.com|kino-dom\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R220 -s@^referer(?=:[^\n]*[./](?:firstrownow\.eu|kyivpost\.com|uatoday\.tv|unian\.info)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R221 -s@^referer(?=:[^\n]*[./](?:fishki\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R222 -s@^referer(?=:[^\n]*[./](?:flashx\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R223 -s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R224 -s@^referer(?=:[^\n]*[./](?:flysat\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R225 -s@^referer(?=:[^\n]*[./](?:fontanka\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R226 -s@^referer(?=:[^\n]*[./](?:footballreview\.ru|innov\.ru|newkaliningrad\.ru|seonews\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R227 -s@^referer(?=:[^\n]*[./](?:foreverceleb\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R228 -s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R229 -s@^referer(?=:[^\n]*[./](?:free-torrent\.org|free-torrents\.org|game-torrent\.info)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R23 -s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R230 -s@^referer(?=:[^\n]*[./](?:free-torrent\.org|free-torrents\.org|game-torrent\.info|jpgstore\.ru|pics2pay\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R231 -s@^referer(?=:[^\n]*[./](?:free-torrents\.org|hentaichan\.ru|nude-moon\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R232 -s@^referer(?=:[^\n]*[./](?:freezpic\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R233 -s@^referer(?=:[^\n]*[./](?:freshrecords\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R234 -s@^referer(?=:[^\n]*[./](?:frombar\.com|gledaisport\.com|smotrisport\.com|sportcategory\.com|sportlemon\.org|sportlemon\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R235 -s@^referer(?=:[^\n]*[./](?:fxempire\.com|fxempire\.de|fxempire\.it|fxempire\.nl)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R236 -s@^referer(?=:[^\n]*[./](?:f谋rstrowsports\.eu)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R237 -s@^referer(?=:[^\n]*[./](?:gagadget\.com|maxpark\.com|vse-sto\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R238 -s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R239 -s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R24 -s@^referer(?=:[^\n]*[./](?:1tv\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R240 -s@^referer(?=:[^\n]*[./](?:ganool\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R241 -s@^referer(?=:[^\n]*[./](?:gaytube\.com|keezmovies\.com|spankwire\.com|tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R242 -s@^referer(?=:[^\n]*[./](?:gca\.sh)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R243 -s@^referer(?=:[^\n]*[./](?:gearshout\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R244 -s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R245 -s@^referer(?=:[^\n]*[./](?:gelbooru\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R246 -s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R247 -s@^referer(?=:[^\n]*[./](?:gigaom\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R248 -s@^referer(?=:[^\n]*[./](?:go\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R249 -s@^referer(?=:[^\n]*[./](?:goodgame\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R25 -s@^referer(?=:[^\n]*[./](?:21forum\.ru|afisha21\.ru|cheb\.ru|cheb\.ws|cheboksary\.ws|kugesi\.ru|na-svyazi\.ru|zarulem\.ws)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R250 -s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R251 -s@^referer(?=:[^\n]*[./](?:gramfeed\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R252 -s@^referer(?=:[^\n]*[./](?:gruntig\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R253 -s@^referer(?=:[^\n]*[./](?:gserp\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R254 -s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R255 -s@^referer(?=:[^\n]*[./](?:hanime\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R256 -s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R257 -s@^referer(?=:[^\n]*[./](?:hardforum\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R258 -s@^referer(?=:[^\n]*[./](?:have69\.net|i-gay\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R259 -s@^referer(?=:[^\n]*[./](?:hdclub\.org|tracker\.hdclub\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R26 -s@^referer(?=:[^\n]*[./](?:21forum\.ru|cheb\.ru|na-svyazi\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R260 -s@^referer(?=:[^\n]*[./](?:hdkinomax\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R261 -s@^referer(?=:[^\n]*[./](?:hdscg\.com|v8gay\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R262 -s@^referer(?=:[^\n]*[./](?:help2play\.com|otvetes\.com|vkonagt\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R263 -s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R264 -s@^referer(?=:[^\n]*[./](?:hentaiz\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R265 -s@^referer(?=:[^\n]*[./](?:hipfile\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R266 -s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R267 -s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R268 -s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R269 -s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk|wwledsbb\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R27 -s@^referer(?=:[^\n]*[./](?:240513\.com|ozdpt\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R270 -s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R271 -s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R272 -s@^referer(?=:[^\n]*[./](?:hulkload\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R273 -s@^referer(?=:[^\n]*[./](?:hulkshare\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R274 -s@^referer(?=:[^\n]*[./](?:hvosty\.ru|vsehvosty\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R275 -s@^referer(?=:[^\n]*[./](?:hw-lab\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R276 -s@^referer(?=:[^\n]*[./](?:i24news\.tv|newindianexpress\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R277 -s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R278 -s@^referer(?=:[^\n]*[./](?:ibnlive\.in\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R279 -s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R28 -s@^referer(?=:[^\n]*[./](?:24warez\.ru|anideshka\.ru|anilost\.com|artero\.ru|babestar\.ru|best-xxx\.net|bestcamsxxx\.com|bestrepack\.net|bigtorrent\.org|bookitut\.ru|demotivators\.to|drochunov\.net|eroox\.ru|exoticvideo\.net|filmasik\.net|filmomax\.com|fotooplata\.ru|free-torrents\.org|freebie\.net\.ua|freepublish\.ru|gidporno\.com|girlstop\.info|guide-box\.ru|hentaiz\.org|huyandex\.com|i-pic\.ru|iarex\.ru|imgmoney\.ru|kino-zal\.kz|kinohost\.nov\.ru|kinoonlain\.org|kritka\.net|leporno\.org|leporno\.ws|mega-track\.org|mnogohlama\.ru|moresofta\.com|ontracker\.ru|palevo\.com|pic4you\.ru|pic5you\.ru|pics-money\.ru|politland\.ru|porn-news\.org|porno-gid\.info|porno-torrent\.biz|porno-torrents\.ru|pornoboss\.tv|pornoero\.com|pornogovno\.ru|pornomage\.net|pornorip\.biz|pornorun\.com|pornovizion\.com|prisnilos\.su|privsex\.ru|promotevid\.ru|raketa-tv\.com|rosporn\.com|ru-admin\.net|seasonvar\.ru|seti-ceti\.ru|sibiryak-soft\.org|suero\.tv|tedkino\.com|tyt-kinofilm\.ru|uploadimagex\.com|uptube\.su|uvideos\.ru|v-chulkahh\.ru|video-magnet\.com|vodkov\.net|vodvore\.net|vserisunki\.ru|vzale\.tv|wifilm\.ru|x-zona\.org|xxlbunny\.com|xxx-russian\.ru|xyu\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R280 -s@^referer(?=:[^\n]*[./](?:imageban\.ru|tekst-pesni-tut\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R281 -s@^referer(?=:[^\n]*[./](?:inspirationfeed\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R282 -s@^referer(?=:[^\n]*[./](?:ints\.rusfolder\.com|ints\.rusfolder\.net|piccash\.net|pornolab\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R283 -s@^referer(?=:[^\n]*[./](?:investing\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R284 -s@^referer(?=:[^\n]*[./](?:iplstream\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R285 -s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R286 -s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R287 -s@^referer(?=:[^\n]*[./](?:ivi\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R288 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R100 s@^referer(?=:[^\n]*[./](?:iyejie\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R289 -s@^referer(?=:[^\n]*[./](?:izzs\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R29 -s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R290 -s@^referer(?=:[^\n]*[./](?:java-forums\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R291 -s@^referer(?=:[^\n]*[./](?:joker\.ykt\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R292 -s@^referer(?=:[^\n]*[./](?:joyreactor\.cc|reactor\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R293 -s@^referer(?=:[^\n]*[./](?:joystiq\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R294 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R101 s@^referer(?=:[^\n]*[./](?:jpfans\.com|jpseek\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R295 -s@^referer(?=:[^\n]*[./](?:kartinka\.in)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R296 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R102 s@^referer(?=:[^\n]*[./](?:keywin\.org)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R297 -s@^referer(?=:[^\n]*[./](?:kg-portal\.ru|tvc\.ru|tvzvezda\.ru|zoomby\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R298 -s@^referer(?=:[^\n]*[./](?:kingfiles\.net|uploadrocket\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R299 -s@^referer(?=:[^\n]*[./](?:kino-dom\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R3 -s@^referer(?=:[^\n]*[./](?:04stream\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R30 -s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R300 -s@^referer(?=:[^\n]*[./](?:kino-live\.org|riper\.am)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R301 -s@^referer(?=:[^\n]*[./](?:kinonews\.ru|lifenews\.ru|sport-express\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R302 -s@^referer(?=:[^\n]*[./](?:kinoprofi\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R303 -s@^referer(?=:[^\n]*[./](?:kinox\.to)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R304 -s@^referer(?=:[^\n]*[./](?:kinox\.to|movie4k\.to|thevideo\.me|unblocked\.la|vidup\.me)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R305 -s@^referer(?=:[^\n]*[./](?:kirovnet\.ru|ui\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R307 -s@^referer(?=:[^\n]*[./](?:klex\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R308 -s@^referer(?=:[^\n]*[./](?:korrespondent\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R309 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R103 s@^referer(?=:[^\n]*[./](?:kxddd\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|ttft\.in|xhcbb\.com|yzhlive\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R31 -s@^referer(?=:[^\n]*[./](?:2ad\.in|ad2links\.com|adf\.ly|adfoc\.us|adv\.li|adyou\.me|allmyvideos\.net|ay\.gy|fuestfka\.com|imgmega\.com|j\.gs|linkbucksmedia\.com|mortastica\.com|prodsetter-in\.com|q\.gs|sh\.st|shr77\.com|sonomerit\.com|ssovgoxbvppy\.net|thevideo\.me|twer\.info|u\.bb|vidspot\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R310 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R104 s@^referer(?=:[^\n]*[./](?:lepan\.cc|sx566\.com|vvpan\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R311 -s@^referer(?=:[^\n]*[./](?:lexsteele\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R312 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R105 s@^referer(?=:[^\n]*[./](?:life\.com\.tw)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R313 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R106 s@^referer(?=:[^\n]*[./](?:lightnovel\.cn|xdjishu\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R314 -s@^referer(?=:[^\n]*[./](?:lindaikeji\.blogspot\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R315 -s@^referer(?=:[^\n]*[./](?:linkbucks\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R316 -s@^referer(?=:[^\n]*[./](?:linkshrink\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R317 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R107 s@^referer(?=:[^\n]*[./](?:live\.jstv\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R318 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R108 s@^referer(?=:[^\n]*[./](?:live8bo\.com|live8bo\.net|live8bo1\.com|zqzq\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R319 -s@^referer(?=:[^\n]*[./](?:lossless-galaxy\.ru)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R109 +s@^referer(?=:[^\n]*[./](?:ltwbook\.com|ltxsw\.com|ltxszw\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R32 -s@^referer(?=:[^\n]*[./](?:2ad\.in|adf\.ly|adfoc\.us|adjet\.biz|adv\.li|ay\.gy|j\.gs|linkbucksmedia\.com|q\.gs|sh\.st|tvbximak\.com|u\.bb)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R11 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R320 -s@^referer(?=:[^\n]*[./](?:lt57\.com|ltwbook\.com|ltxsw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R321 -s@^referer(?=:[^\n]*[./](?:lululu8\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R322 -s@^referer(?=:[^\n]*[./](?:luxtorrents\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R323 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R110 s@^referer(?=:[^\n]*[./](?:lxty66\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R324 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R111 s@^referer(?=:[^\n]*[./](?:mail\.pchome\.com\.tw)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R325 -s@^referer(?=:[^\n]*[./](?:mail\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R326 -s@^referer(?=:[^\n]*[./](?:mail\.yahoo\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R327 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R328 -s@^referer(?=:[^\n]*[./](?:mamba\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R329 -s@^referer(?=:[^\n]*[./](?:mangafox\.me)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R33 -s@^referer(?=:[^\n]*[./](?:2drive\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R330 -s@^referer(?=:[^\n]*[./](?:masalaboard\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R331 -s@^referer(?=:[^\n]*[./](?:mega-pics-money\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R332 -s@^referer(?=:[^\n]*[./](?:megaimg\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R333 -s@^referer(?=:[^\n]*[./](?:megaresheba\.ru|muzofon\.com|teledidar\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R334 -s@^referer(?=:[^\n]*[./](?:megogo\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R335 -s@^referer(?=:[^\n]*[./](?:memoryholeblog\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R336 -s@^referer(?=:[^\n]*[./](?:mhktricks\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R337 -s@^referer(?=:[^\n]*[./](?:miliblog\.co\.uk)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R338 -s@^referer(?=:[^\n]*[./](?:mirror\.co\.uk)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R339 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R112 s@^referer(?=:[^\n]*[./](?:mitbbs\.ca|mitbbs\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R34 -s@^referer(?=:[^\n]*[./](?:2mm\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R340 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R113 s@^referer(?=:[^\n]*[./](?:mmload\.info)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R341 -s@^referer(?=:[^\n]*[./](?:modovideo\.com|mooshare\.biz)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R342 -s@^referer(?=:[^\n]*[./](?:molodejj\.tv|smotri\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R343 -s@^referer(?=:[^\n]*[./](?:moonwalk\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R344 -s@^referer(?=:[^\n]*[./](?:moskva\.fm|piter\.fm)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R345 -s@^referer(?=:[^\n]*[./](?:motherjones\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R346 -s@^referer(?=:[^\n]*[./](?:moviefone\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R347 -s@^referer(?=:[^\n]*[./](?:multiupfile\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R348 -s@^referer(?=:[^\n]*[./](?:my-hit\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R349 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R114 s@^referer(?=:[^\n]*[./](?:my\.alipay\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R35 -s@^referer(?=:[^\n]*[./](?:300mblink\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R350 -s@^referer(?=:[^\n]*[./](?:my\.rsscache\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R351 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R115 s@^referer(?=:[^\n]*[./](?:myqcloud\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R352 -s@^referer(?=:[^\n]*[./](?:namba\.kg)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R353 -s@^referer(?=:[^\n]*[./](?:namba\.kg|namba\.tj)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R354 -s@^referer(?=:[^\n]*[./](?:namba\.tj)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R355 -s@^referer(?=:[^\n]*[./](?:ncrypt\.in)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R356 -s@^referer(?=:[^\n]*[./](?:ndtv\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R357 -s@^referer(?=:[^\n]*[./](?:netload\.in)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R358 -s@^referer(?=:[^\n]*[./](?:newgrounds\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R359 -s@^referer(?=:[^\n]*[./](?:newrbk\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R36 -s@^referer(?=:[^\n]*[./](?:360-bo\.com|54xr\.com|pptiyu\.com|xrba\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R360 -s@^referer(?=:[^\n]*[./](?:news-headlines\.co\.za)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R361 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R116 s@^referer(?=:[^\n]*[./](?:news\.china\.com\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R362 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R117 s@^referer(?=:[^\n]*[./](?:news\.cn|xinhuanet\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R363 -s@^referer(?=:[^\n]*[./](?:news\.com\.au)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R364 -s@^referer(?=:[^\n]*[./](?:newsok\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R365 -s@^referer(?=:[^\n]*[./](?:nfl\.com|viki\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R366 -s@^referer(?=:[^\n]*[./](?:nikolaev-city\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R367 -s@^referer(?=:[^\n]*[./](?:nnm\.me|serialu\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R368 -s@^referer(?=:[^\n]*[./](?:oboom\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R369 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R118 s@^referer(?=:[^\n]*[./](?:ocucn\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R37 -s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R370 -s@^referer(?=:[^\n]*[./](?:offers\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R371 -s@^referer(?=:[^\n]*[./](?:onhax\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R372 -s@^referer(?=:[^\n]*[./](?:ontracker\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R373 -s@^referer(?=:[^\n]*[./](?:optimized-by\.rubiconproject\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R374 -s@^referer(?=:[^\n]*[./](?:pachanyc\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R375 -s@^referer(?=:[^\n]*[./](?:patheos\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R376 -s@^referer(?=:[^\n]*[./](?:pavelkesh\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R377 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R119 s@^referer(?=:[^\n]*[./](?:pbzy\.com|shanzhaiben\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R378 -s@^referer(?=:[^\n]*[./](?:pcgamesn\.com)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R12 +s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84fn\.com|99ee1\.com|99re5\.com|99rr6\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|caoliuzx\.com|cililian\.me|fdzone\.org|izzs\.cc|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|sbme\.me|taohuazu\.tw|thzhd\.net|ttdyy\.tv|xinqixi\.com|xxxbt\.com|youb444\.com|zhiboche\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R379 -s@^referer(?=:[^\n]*[./](?:photobucket\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R38 -s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R380 -s@^referer(?=:[^\n]*[./](?:phpbb3\.x-tk\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R381 -s@^referer(?=:[^\n]*[./](?:pic2profit\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R382 -s@^referer(?=:[^\n]*[./](?:picforall\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R383 -s@^referer(?=:[^\n]*[./](?:pikabu\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R384 -s@^referer(?=:[^\n]*[./](?:pirateproxy\.sx|thepiratebay\.am|thepiratebay\.gd|thepiratebay\.la|thepiratebay\.mn|thepiratebay\.vg)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R385 -s@^referer(?=:[^\n]*[./](?:pladform\.ru|smotri\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R386 -s@^referer(?=:[^\n]*[./](?:planetaua\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R387 -s@^referer(?=:[^\n]*[./](?:player\.theplatform\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R388 -s@^referer(?=:[^\n]*[./](?:player\.vgtrk\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R389 -s@^referer(?=:[^\n]*[./](?:politicalears\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R39 -s@^referer(?=:[^\n]*[./](?:3dnews\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R390 -s@^referer(?=:[^\n]*[./](?:politicususa\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R391 -s@^referer(?=:[^\n]*[./](?:popbytes\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R392 -s@^referer(?=:[^\n]*[./](?:pornhub\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R394 -s@^referer(?=:[^\n]*[./](?:pornolab\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R395 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R120 s@^referer(?=:[^\n]*[./](?:pos\.baidu\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R396 -s@^referer(?=:[^\n]*[./](?:postgradproblems\.com)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R121 +s@^referer(?=:[^\n]*[./](?:qiannao\.com|ref\.so)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R397 -s@^referer(?=:[^\n]*[./](?:pr-cy\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R398 -s@^referer(?=:[^\n]*[./](?:pregen\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R399 -s@^referer(?=:[^\n]*[./](?:primejailbait\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R4 -s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R40 -s@^referer(?=:[^\n]*[./](?:3news\.co\.nz|92q\.com|abc-7\.com|addictinggames\.com|allbusiness\.com|bizjournals\.com|bloomberg\.com|bnn\.ca|boom92houston\.com|boom945\.com|boomphilly\.com|break\.com|cbc\.ca|cbs19\.tv|cbs3springfield\.com|cbslocal\.com|complex\.com|dailymail\.co\.uk|darkhorizons\.com|doubleviking\.com|euronews\.com|extratv\.com|fandango\.com|fox19\.com|fox5vegas\.com|gorillanation\.com|hawaiinewsnow\.com|hellobeautiful\.com|hiphopnc\.com|hot1041stl\.com|hothiphopdetroit\.com|hotspotatl\.com|hulu\.com|imdb\.com|indiatimes\.com|indyhiphop\.com|ipowerrichmond\.com|joblo\.com|kcra\.com|kctv5\.com|ketv\.com|koat\.com|koco\.com|kolotv\.com|kpho\.com|kptv\.com|ksat\.com|ksbw\.com|ksfy\.com|ksl\.com|kypost\.com|kysdc\.com|live5news\.com|livestation\.com|livestream\.com|metro\.us|metronews\.ca|miamiherald\.com|my9nj\.com|myboom1029\.com|mycolumbuspower\.com|nbcrightnow\.com|neatorama\.com|necn\.com|neopets\.com|news\.com\.au|news4jax\.com|newsone\.com|nintendoeverything\.com|oldschoolcincy\.com|pagesuite-professional\.co\.uk|pandora\.com|play\.it|player\.theplatform\.com|radio\.com|radionowindy\.com|rottentomatoes\.com|sbsun\.com|shacknews\.com|sk-gaming\.com|ted\.com|thebeatdfw\.com|theboxhouston\.com|theglobeandmail\.com|timesnow\.tv|tv2\.no|twitch\.tv|ustream\.tv|wapt\.com|washingtonpost\.com|wate\.com|wbaltv\.com|wcvb\.com|wdrb\.com|wdsu\.com|wflx\.com|wfmz\.com|wfsb\.com|wgal\.com|whdh\.com|wired\.com|wisn\.com|wiznation\.com|wlky\.com|wlns\.com|wlwt\.com|wmur\.com|wnem\.com|wowt\.com|wral\.com|wsj\.com|wsmv\.com|wsvn\.com|wtae\.com|wthr\.com|wxii12\.com|wyff4\.com|yahoo\.com|youtube-nocookie\.com|youtube\.com|zhiphopcleveland\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R400 -s@^referer(?=:[^\n]*[./](?:primewire\.ag|primewire\.in)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R401 -s@^referer(?=:[^\n]*[./](?:promodj\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R402 -s@^referer(?=:[^\n]*[./](?:promptfile\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R403 -s@^referer(?=:[^\n]*[./](?:putlocker\.is)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R404 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R122 s@^referer(?=:[^\n]*[./](?:qire213\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R405 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R123 s@^referer(?=:[^\n]*[./](?:qzntv\.com|qzwb\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R406 -s@^referer(?=:[^\n]*[./](?:rarbg\.to|rarbg\.unblocked\.la|rarbgmirror\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R407 -s@^referer(?=:[^\n]*[./](?:ratedporntube\.com|sextuberate\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R408 -s@^referer(?=:[^\n]*[./](?:rbth\.co\.uk|rbth\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R409 -s@^referer(?=:[^\n]*[./](?:rdio\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R41 -s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R410 -s@^referer(?=:[^\n]*[./](?:readersdigest\.co\.uk)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R411 -s@^referer(?=:[^\n]*[./](?:redtube\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R412 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R124 s@^referer(?=:[^\n]*[./](?:ref\.so)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R413 -s@^referer(?=:[^\n]*[./](?:restoclub\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R414 -s@^referer(?=:[^\n]*[./](?:reuters\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R415 -s@^referer(?=:[^\n]*[./](?:rootden\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R416 -s@^referer(?=:[^\n]*[./](?:rprradio\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R417 -s@^referer(?=:[^\n]*[./](?:rusfolder\.com|rusfolder\.net|rutube\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R419 -s@^referer(?=:[^\n]*[./](?:sammyhub\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R42 -s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R420 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R125 s@^referer(?=:[^\n]*[./](?:scol\.com\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R421 -s@^referer(?=:[^\n]*[./](?:screenlist\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R422 -s@^referer(?=:[^\n]*[./](?:search\.aol\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R423 -s@^referer(?=:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R424 -s@^referer(?=:[^\n]*[./](?:seasonvar\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R425 -s@^referer(?=:[^\n]*[./](?:secureupload\.eu)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R426 -s@^referer(?=:[^\n]*[./](?:sendspace\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R427 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R126 s@^referer(?=:[^\n]*[./](?:sex169\.info|sex169\.org)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R428 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R127 s@^referer(?=:[^\n]*[./](?:share\.popgo\.org)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R429 -s@^referer(?=:[^\n]*[./](?:shared\.sx)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R43 -s@^referer(?=:[^\n]*[./](?:4fuckr\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R430 -s@^referer(?=:[^\n]*[./](?:sharpfile\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R431 -s@^referer(?=:[^\n]*[./](?:showbiz411\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R432 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R128 s@^referer(?=:[^\n]*[./](?:shuajizhijia\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R433 -s@^referer(?=:[^\n]*[./](?:siliconrus\.com|tjournal\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R434 -s@^referer(?=:[^\n]*[./](?:simophone\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R435 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R129 s@^referer(?=:[^\n]*[./](?:skyerblog\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R436 -s@^referer(?=:[^\n]*[./](?:skysports\.com)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R13 +s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R437 -s@^referer(?=:[^\n]*[./](?:slader\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R438 -s@^referer(?=:[^\n]*[./](?:smallseotools\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R439 -s@^referer(?=:[^\n]*[./](?:smartertravel\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R44 -s@^referer(?=:[^\n]*[./](?:4put\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R440 -s@^referer(?=:[^\n]*[./](?:smexo\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R441 -s@^referer(?=:[^\n]*[./](?:smi2\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R442 -s@^referer(?=:[^\n]*[./](?:sockshare\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R443 -s@^referer(?=:[^\n]*[./](?:softpedia\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R444 -s@^referer(?=:[^\n]*[./](?:songs\.pk|songspk\.name)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R445 -s@^referer(?=:[^\n]*[./](?:songza\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R446 -s@^referer(?=:[^\n]*[./](?:souqiu8\.com|zhaofuli\.club)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R448 -s@^referer(?=:[^\n]*[./](?:spike\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R449 -s@^referer(?=:[^\n]*[./](?:sporcle\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R45 -s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R450 -s@^referer(?=:[^\n]*[./](?:stocporn\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R451 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R452 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R130 s@^referer(?=:[^\n]*[./](?:strtv\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R453 -s@^referer(?=:[^\n]*[./](?:stuff\.co\.nz)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R454 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R131 s@^referer(?=:[^\n]*[./](?:sun0769\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R455 -s@^referer(?=:[^\n]*[./](?:sunporno\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R456 -s@^referer(?=:[^\n]*[./](?:talksport\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R457 -s@^referer(?=:[^\n]*[./](?:tapochek\.net|unionpeer\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R458 -s@^referer(?=:[^\n]*[./](?:tbs\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R459 -s@^referer(?=:[^\n]*[./](?:tdarkangel\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R46 -s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R460 -s@^referer(?=:[^\n]*[./](?:technewstoday\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R461 -s@^referer(?=:[^\n]*[./](?:techpowerup\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R462 -s@^referer(?=:[^\n]*[./](?:teledidar\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R463 -s@^referer(?=:[^\n]*[./](?:televisaofutebol\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R464 -s@^referer(?=:[^\n]*[./](?:thechive\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R465 -s@^referer(?=:[^\n]*[./](?:thegrio\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R466 -s@^referer(?=:[^\n]*[./](?:thepiratebay\.si)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R467 -s@^referer(?=:[^\n]*[./](?:thisav\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R468 -s@^referer(?=:[^\n]*[./](?:thisdaylive\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R469 -s@^referer(?=:[^\n]*[./](?:thisiswhyimbroke\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R47 -s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R470 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R132 s@^referer(?=:[^\n]*[./](?:tiexue\.net)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R471 -s@^referer(?=:[^\n]*[./](?:timeout\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R472 -s@^referer(?=:[^\n]*[./](?:tinypaste\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R473 -s@^referer(?=:[^\n]*[./](?:tmz\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R474 -s@^referer(?=:[^\n]*[./](?:tokyo-tosho\.net|tokyotosho\.info|tokyotosho\.se)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R475 -s@^referer(?=:[^\n]*[./](?:torlock\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R476 -s@^referer(?=:[^\n]*[./](?:torrent-finder\.info)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R477 -s@^referer(?=:[^\n]*[./](?:torrent-pirat\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R478 -s@^referer(?=:[^\n]*[./](?:torrentszona\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R479 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R133 s@^referer(?=:[^\n]*[./](?:ttmeiju\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R48 -s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R480 -s@^referer(?=:[^\n]*[./](?:tube8\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R481 -s@^referer(?=:[^\n]*[./](?:turbobit\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R482 -s@^referer(?=:[^\n]*[./](?:tusfiles\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R483 -s@^referer(?=:[^\n]*[./](?:tv4play\.se)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R484 -s@^referer(?=:[^\n]*[./](?:tvcatchup\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R485 -s@^referer(?=:[^\n]*[./](?:twitch\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R486 -s@^referer(?=:[^\n]*[./](?:twitchfilm\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R487 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R134 s@^referer(?=:[^\n]*[./](?:txzqw\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R488 -s@^referer(?=:[^\n]*[./](?:u\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R489 -s@^referer(?=:[^\n]*[./](?:ubuntugeek\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R49 -s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R490 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R135 s@^referer(?=:[^\n]*[./](?:uisdc\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R491 -s@^referer(?=:[^\n]*[./](?:ultimate-guitar\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R492 -s@^referer(?=:[^\n]*[./](?:unionpeer\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R493 -s@^referer(?=:[^\n]*[./](?:unknowncheats\.me)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R494 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R136 s@^referer(?=:[^\n]*[./](?:uopera\.net)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R495 -s@^referer(?=:[^\n]*[./](?:up09\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R496 -s@^referer(?=:[^\n]*[./](?:uploadbaz\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R497 -s@^referer(?=:[^\n]*[./](?:uploadcore\.com|urgrove\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R498 -s@^referer(?=:[^\n]*[./](?:uploadlw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R499 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R137 s@^referer(?=:[^\n]*[./](?:v\.ku6\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R5 -s@^referer(?=:[^\n]*[./](?:101cargames\.com|1025thebull\.com|1031iheartaustin\.com|1037theq\.com|1041beat\.com|1053kissfm\.com|1057ezrock\.com|1067litefm\.com|10news\.com|1310news\.com|247comedy\.com|3news\.co\.nz|49ers\.com|610cktb\.com|680news\.com|700wlw\.com|850koa\.com|923jackfm\.com|92q\.com|940winz\.com|94hjy\.com|99kisscountry\.com|abc15\.com|abc2news\.com|abcactionnews\.com|am1300thezone\.com|ap\.org|atlantafalcons\.com|automobilemag\.com|automotive\.com|azcardinals\.com|baltimoreravens\.com|baynews9\.com|bbc\.co\.uk|bbc\.com|belfasttelegraph\.co\.uk|bengals\.com|bet\.com|big1059\.com|bigdog1009\.ca|bloomberg\.com|bnn\.ca|boom92houston\.com|boom945\.com|boom973\.com|boom997\.com|boomphilly\.com|box10\.com|brisbanetimes\.com\.au|buccaneers\.com|buffalobills\.com|bullz-eye\.com|calgaryherald\.com|caller\.com|canada\.com|capitalfm\.ca|cbslocal\.com|cbsnews\.com|cbssports\.com|channel955\.com|chargers\.com|chez106\.com|chfi\.com|chicagobears\.com|chicagotribune\.com|cj104\.com|cjad\.com|cjbk\.com|clevelandbrowns\.com|cnet\.com|coast933\.com|colts\.com|commercialappeal\.com|country1011\.com|country1043\.com|country1067\.com|country600\.com|courierpress\.com|cp24\.com|cricketcountry\.com|csmonitor\.com|ctvnews\.ca|dallascowboys\.com|denverbroncos\.com|detroitlions\.com|drive\.com\.au|earthcam\.com|easyrecipesite\.com|edmontonjournal\.com|egirlgames\.net|elvisduran\.com|enjoydressup\.com|entrepreneur\.com|eonline\.com|escapegames\.com|euronews\.com|eveningecho\.ie|fm98wjlb\.com|foodnetwork\.ca|four\.co\.nz|foxradio\.ca|foxsportsradio\.com|gamingbolt\.com|ghananation\.com|giantbomb\.com|giants\.com|globalnews\.ca|globalpost\.com|globaltoronto\.com|globaltv\.com|globaltvbc\.com|globaltvcalgary\.com|go\.com|gorillanation\.com|gosanangelo\.com|hallelujah1051\.com|hellobeautiful\.com|heraldsun\.com\.au|hgtv\.ca|hiphopnc\.com|hot1041stl\.com|hotair\.com|hothiphopdetroit\.com|hotspotatl\.com|houstontexans\.com|ibtimes\.co\.uk|ign\.com|iheart\.com|independent\.ie|independentmail\.com|indyhiphop\.com|ipowerrichmond\.com|jackfm\.ca|jaguars\.com|jwplatform\.com|kase101\.com|kcchiefs\.com|kcci\.com|kcra\.com|kdvr\.com|kfiam640\.com|kgbx\.com|khow\.com|kiisfm\.com|kiss925\.com|kissnorthbay\.com|kisssoo\.com|kisstimmins\.com|kitsapsun\.com|kitv\.com|kjrh\.com|knoxnews\.com|kogo\.com|komonews\.com|kshb\.com|kwgn\.com|kxan\.com|kysdc\.com|latimes\.com|latinchat\.com|leaderpost\.com|livestream\.com|local8now\.com|magic96\.com|majorleaguegaming\.com|metacafe\.com|miamidolphins\.com|mix923fm\.com|moneycontrol\.com|montrealgazette\.com|motorcyclistonline\.com|moviemistakes\.com|mtv\.ca|myboom1029\.com|mycolumbuspower\.com|myezrock\.com|naplesnews\.com|nationalpost\.com|nba\.com|ndtv\.com|neworleanssaints\.com|news1130\.com|newsinc\.com|newsmax\.com|newsmaxhealth\.com|newsnet5\.com|newsone\.com|newstalk1010\.com|newstalk1130\.com|newyorkjets\.com|nydailynews\.com|nymag\.com|oldschoolcincy\.com|ottawacitizen\.com|packers\.com|panthers\.com|patriots\.com|pcworld\.com|philadelphiaeagles\.com|play\.it|player\.screenwavemedia\.com|prowrestling\.com|q92timmins\.com|raaga\.com|radio\.com|radionowindy\.com|raiders\.com|rapbasement\.com|redding\.com|redskins\.com|reporternews\.com|reuters\.com|rollingstone\.com|rootsports\.com|rottentomatoes\.com|seahawks\.com|sherdog\.com|skynews\.com\.au|slice\.ca|smh\.com\.au|sploder\.com|sportsnet590\.ca|sportsnet960\.ca|springboardplatform\.com|steelers\.com|stlouisrams\.com|streetfire\.net|stuff\.co\.nz|tcpalm\.com|telegraph\.co\.uk|theage\.com\.au|theaustralian\.com\.au|thebeatdfw\.com|theboxhouston\.com|thedenverchannel\.com|thedrocks\.com|theindychannel\.com|theprovince\.com|thestarphoenix\.com|tide\.com|timescolonist\.com|timeslive\.co\.za|timesrecordnews\.com|titansonline\.com|totaljerkface\.com|townhall\.com|tripadvisor\.ca|tripadvisor\.co\.uk|tripadvisor\.co\.za|tripadvisor\.com|tripadvisor\.com\.au|tripadvisor\.com\.my|tripadvisor\.com\.sg|tripadvisor\.ie|tripadvisor\.in|turnto23\.com|tvone\.tv|twitch\.tv|twitchy\.com|usmagazine\.com|vancouversun\.com|vcstar\.com|veetle\.com|vice\.com|videojug\.com|viki\.com|vikings\.com|virginradio\.ca|vzaar\.com|wapt\.com|washingtonpost\.com|washingtontimes\.com|wcpo\.com|wdfn\.com|weather\.com|wescfm\.com|wgci\.com|wibw\.com|wikihow\.com|windsorstar\.com|wiod\.com|wiznation\.com|wjdx\.com|wkyt\.com|wor710\.com|wptv\.com|wsj\.com|wxyz\.com|wyff4\.com|yahoo\.com|youtube\.com|z100\.com|zhiphopcleveland\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R50 -s@^referer(?=:[^\n]*[./](?:5ydj\.com|99re\.city|99re\.net|99re6\.com|99re8\.com|99rehomes\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R500 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R138 s@^referer(?=:[^\n]*[./](?:v2ex\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R501 -s@^referer(?=:[^\n]*[./](?:veehd\.com)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R139 +s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com|xm9x\.net)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R502 -s@^referer(?=:[^\n]*[./](?:via-midgard\.info|via-midgard1\.info)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R14 +s@^referer(?=:[^\n]*[./](?:189so\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R503 -s@^referer(?=:[^\n]*[./](?:videochart\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R504 -s@^referer(?=:[^\n]*[./](?:vidspot\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R505 -s@^referer(?=:[^\n]*[./](?:viewcube\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R506 -s@^referer(?=:[^\n]*[./](?:viralcraze\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R507 -s@^referer(?=:[^\n]*[./](?:vivo\.sx)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R508 -s@^referer(?=:[^\n]*[./](?:vk-saver\.in\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R509 -s@^referer(?=:[^\n]*[./](?:vk\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R51 -s@^referer(?=:[^\n]*[./](?:7daysindubai\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R510 -s@^referer(?=:[^\n]*[./](?:vube\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R511 -s@^referer(?=:[^\n]*[./](?:vz\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R512 -s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R513 -s@^referer(?=:[^\n]*[./](?:washingtontimes\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R514 -s@^referer(?=:[^\n]*[./](?:watchfreemovies\.ch)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R515 -s@^referer(?=:[^\n]*[./](?:webhostingtalk\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R516 -s@^referer(?=:[^\n]*[./](?:webpronews\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R517 -s@^referer(?=:[^\n]*[./](?:wg-gesucht\.de)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R518 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R140 s@^referer(?=:[^\n]*[./](?:wgun\.net)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R519 -s@^referer(?=:[^\n]*[./](?:wigflip\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R52 -s@^referer(?=:[^\n]*[./](?:8888eee\.com|xav4\.com|xav5\.com|xav6\.com|xav7\.com|xav8\.com|xav9\.com|xiaav\.cc|xiaav\.me)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R520 -s@^referer(?=:[^\n]*[./](?:wiretarget\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R521 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R141 s@^referer(?=:[^\n]*[./](?:wishct\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R522 -s@^referer(?=:[^\n]*[./](?:wjunction\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R523 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R142 s@^referer(?=:[^\n]*[./](?:wowrk\.com|x-berry\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R524 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R143 s@^referer(?=:[^\n]*[./](?:www\.52hardware\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R525 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R144 s@^referer(?=:[^\n]*[./](?:www\.gamer\.com\.tw)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R526 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R145 s@^referer(?=:[^\n]*[./](?:www\.nmgnews\.com\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R527 -s@^referer(?=:[^\n]*[./](?:www\.pornhub\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R528 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R146 s@^referer(?=:[^\n]*[./](?:www\.tiexue\.net)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R529 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R147 s@^referer(?=:[^\n]*[./](?:www\.tsdm\.net)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R53 -s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R530 -s@^referer(?=:[^\n]*[./](?:xhamster\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R531 -s@^referer(?=:[^\n]*[./](?:xup\.in)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R532 -s@^referer(?=:[^\n]*[./](?:xvideos\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R533 -s@^referer(?=:[^\n]*[./](?:xxxbunker\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R535 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R148 s@^referer(?=:[^\n]*[./](?:yinyuetai\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R536 -s@^referer(?=:[^\n]*[./](?:yoloselfie\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R537 -s@^referer(?=:[^\n]*[./](?:youporn\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R538 -s@^referer(?=:[^\n]*[./](?:youporngay\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R54 -s@^referer(?=:[^\n]*[./](?:911-sss\.com|911semm\.com|911semm\.info|911seqq\.info|913sss\.com|kuaisou222\.com|ylgbt\.info|ylgxxbt\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R540 -s@^referer(?=:[^\n]*[./](?:youwatch\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R541 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R149 s@^referer(?=:[^\n]*[./](?:youxi\.baidu\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R542 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R15 +s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R150 s@^referer(?=:[^\n]*[./](?:yuyu780906\.blogspot\.com|yuyu780906\.blogspot\.hk|yuyu780906\.blogspot\.tw)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R543 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R151 s@^referer(?=:[^\n]*[./](?:zasv\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R544 -s@^referer(?=:[^\n]*[./](?:zattoo\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R545 -s@^referer(?=:[^\n]*[./](?:zerohedge\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R546 -s@^referer(?=:[^\n]*[./](?:zhaofuli\.club)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R547 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R152 s@^referer(?=:[^\n]*[./](?:zhongzi\.in)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R548 -s@^referer(?=:[^\n]*[./](?:zloy\.bz)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R16 +s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R549 -s@^referer(?=:[^\n]*[./](?:zoomby\.ru)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R17 +s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R55 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R18 +s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R19 +s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R2 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tb001\.xyz|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R20 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R21 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|pptiyu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R22 +s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R23 +s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R24 +s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R25 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R26 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R27 +s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R28 +s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|downhhh\.com|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R29 +s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R3 +s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R30 +s@^referer(?=:[^\n]*[./](?:5ydj\.com|99ee1\.com|99re5\.com|99rr6\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R31 +s@^referer(?=:[^\n]*[./](?:6668\.se)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R32 +s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R33 s@^referer(?=:[^\n]*[./](?:94as\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R550 -s@^referer(?=:[^\n]*[./](?:写械褌褋泻懈泄-屑懈褉\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R56 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R34 s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R57 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R35 +s@^referer(?=:[^\n]*[./](?:99ee1\.com|99re5\.com|99rr6\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R36 s@^referer(?=:[^\n]*[./](?:99files\.net)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R58 -s@^referer(?=:[^\n]*[./](?:99re\.co|99re\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R59 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R37 s@^referer(?=:[^\n]*[./](?:aadaili\.com|ppdaili\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R6 -s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R60 -s@^referer(?=:[^\n]*[./](?:aallenbwest\.com|activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R61 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R62 -s@^referer(?=:[^\n]*[./](?:abcnews\.go\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R63 -s@^referer(?=:[^\n]*[./](?:accesshollywood\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R64 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R38 s@^referer(?=:[^\n]*[./](?:acg18\.me)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R65 -s@^referer(?=:[^\n]*[./](?:activistpost\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R66 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|ailyheadlines\.net|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R67 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R68 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.com|hellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R69 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R7 -s@^referer(?=:[^\n]*[./](?:114la\.com|ylmf\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R70 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativeintel\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|enstarz\.com|hallels\.com|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|redmaryland\.com|shark-tank\.com|sportsmole\.co\.uk|stevedeace\.com|techtimes\.com|unilad\.co\.uk|weaponsmedia\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R71 -s@^referer(?=:[^\n]*[./](?:adf\.ly)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R72 -s@^referer(?=:[^\n]*[./](?:adf\.ly|j\.gs|q\.gs|u\.bb)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R73 -s@^referer(?=:[^\n]*[./](?:adf\.ly|u\.bb)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R74 -s@^referer(?=:[^\n]*[./](?:adjet\.biz)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R76 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv|moonwalk\.cc)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R77 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R39 s@^referer(?=:[^\n]*[./](?:ady8\.info|aikuhu\.com|cctv5bo\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R78 -s@^referer(?=:[^\n]*[./](?:affluentinvestor\.com|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|allthumbsgaming\.com|barbwire\.com|bighealthreport\.com|bulletsfirst\.net|cheatsheet\.com|clashdaily\.com|comicallyincorrect\.com|conservativebyte\.com|conservativevideos\.com|cowboybyte\.com|creationrevolution\.com|dailysurge\.com|dccrimestories\.com|drginaloudon\.com|drhotze\.com|eaglerising\.com|freedomoutpost\.com|godfatherpolitics\.com|instigatornews\.com|joeforamerica\.com|libertyalliance\.com|libertymafia\.com|libertyunyielding\.com|mediafire\.com|menrec\.com|nickadamsinamerica\.com|patriot\.tv|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|politicaloutcast\.com|primewire\.ag|promptfile\.com|quinhillyer\.com|shark-tank\.com|stevedeace\.com|themattwalshblog\.com|therealside\.com|tinypic\.com|victoriajackson\.com|zionica\.com)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R4 +s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R79 -s@^referer(?=:[^\n]*[./](?:agronews\.ru|agrotv\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R8 -s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R80 -s@^referer(?=:[^\n]*[./](?:aim\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R81 -s@^referer(?=:[^\n]*[./](?:akiba-online\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R82 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R40 s@^referer(?=:[^\n]*[./](?:allanalpass\.com|amy\.gs|any\.gs|cash4files\.com|deb\.gs|dyo\.gs|eafyfsuh\.net|filesonthe\.net|galleries\.bz|goneviral\.com|linkbucks\.com|megaline\.co|miniurls\.co|picbucks\.com|qqc\.co|rqq\.co|sasontnwc\.net|seriousdeals\.net|theseblogs\.com|tinylinks\.co|tnabucks\.com|tubeviral\.com|ultrafiles\.net|urlbeat\.net|whackyvidz\.com|yyv\.co|zff\.co)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R83 -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|embed\.videoweed\.es|extreme-board\.com|fastspics\.net|filepost\.com|filmovizija\.com|go4up\.com|imagebam\.com|imagefruit\.com|imageporter\.com|imgbox\.com|imgmade\.com|imgshots\.com|imgsin\.com|imgspice\.com|load\.to|mofunzone\.com|openload\.co|promptfile\.com|putlocker\.is|thevideo\.me|twer\.info|vidspot\.net|watchcartoononline\.com|xtshare\.com|youwatch\.org)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R84 -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|mediafire\.com|mooshare\.biz|muchshare\.net|royalvids\.eu|tvmuse\.com|tvmuse\.eu|vidspot\.net|vidtomp3\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R85 -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|mediafire\.com|mooshare\.biz|muchshare\.net|tvmuse\.com|tvmuse\.eu|vidspot\.net)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R86 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R41 s@^referer(?=:[^\n]*[./](?:am5200\.com|baby360\.ru|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R87 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R42 s@^referer(?=:[^\n]*[./](?:am5200\.com|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R88 -s@^referer(?=:[^\n]*[./](?:amaderforum\.com)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R43 +s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R89 -s@^referer(?=:[^\n]*[./](?:amaderforum\.com|jumbofile\.net|videomega\.tv)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R44 +s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-R9 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R45 +s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R46 +s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R47 +s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R48 +s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R49 +s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R5 +s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R50 +s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R51 +s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R52 +s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R53 +s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R54 +s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R55 +s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R56 +s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R57 +s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R58 +s@^referer(?=:[^\n]*[./](?:ccav1\.com|ypan\.cc)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R59 +s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R6 s@^referer(?=:[^\n]*[./](?:123du\.cc|bokon\.net)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R61 +s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R62 +s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R63 +s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R64 +s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R65 +s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R66 +s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R67 +s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R68 +s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R69 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R7 +s@^referer(?=:[^\n]*[./](?:12580sky\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R70 +s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R71 +s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R72 +s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R73 +s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R74 +s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R75 +s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R76 +s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R77 +s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R78 +s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R79 +s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R8 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R80 +s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R81 +s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R82 +s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R83 +s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R84 +s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R85 +s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R86 +s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R87 +s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R88 +s@^referer(?=:[^\n]*[./](?:hdscg\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R89 +s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R9 +s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-dnt@Ti + CLIENT-HEADER-TAGGER: ab2p-block-dnt-R90 -s@^referer(?=:[^\n]*[./](?:amovies\.tv|cybergame\.tv|dfiles\.ru|filmz\.ru)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R91 -s@^referer(?=:[^\n]*[./](?:amuzic\.ru|emuzic\.ru|pikabu\.ru)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R92 -s@^referer(?=:[^\n]*[./](?:animegalaxy\.net|animenova\.tv|animetoon\.tv|animewow\.eu|gogoanime\.com|goodanime\.eu|gooddrama\.net|toonget\.com)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R93 -s@^referer(?=:[^\n]*[./](?:anistar\.ru)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R94 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresplayer\.com|lasexta\.com)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R95 -s@^referer(?=:[^\n]*[./](?:antistarforce\.com|rustorka\.com|rustorka\.net)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R96 -s@^referer(?=:[^\n]*[./](?:aphorisme\.ru|kinopod\.ru|mp3ray\.ru|tusnya\.net)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R97 -s@^referer(?=:[^\n]*[./](?:api\.cybergame\.tv)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R98 -s@^referer(?=:[^\n]*[./](?:archerywire\.com)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-dnt@Ti CLIENT-HEADER-TAGGER: ab2p-block-dnt-R99 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|fonarevka\.ru|profit-maker\.org)):.*@ab2p-block-dnt@Ti +s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn551 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn153 s@^referer(?!:[^\n]*[./](?:11185\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn552 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn154 s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn553 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn155 s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com|tmall\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn554 -s@^referer(?!:[^\n]*[./](?:ad-local\.de)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn555 -s@^referer(?!:[^\n]*[./](?:ad-tuning\.de)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn556 -s@^referer(?!:[^\n]*[./](?:adexprt\.com\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn557 -s@^referer(?!:[^\n]*[./](?:adfactory\.rocks)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn558 -s@^referer(?!:[^\n]*[./](?:adhost\.dk)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn559 -s@^referer(?!:[^\n]*[./](?:adiro\.se)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn560 -s@^referer(?!:[^\n]*[./](?:adlabs\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn561 -s@^referer(?!:[^\n]*[./](?:adline\.co\.il)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn562 -s@^referer(?!:[^\n]*[./](?:adlive\.de\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn563 -s@^referer(?!:[^\n]*[./](?:admax\.cn|admax\.co|admax\.eu|admax\.fi|admax\.info|admax\.net|admax\.nu|admax\.org|admax\.se|admax\.us)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn564 -s@^referer(?!:[^\n]*[./](?:adnetwork\.ie)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn565 -s@^referer(?!:[^\n]*[./](?:adnetwork\.ie|adnetwork\.sk)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn566 -s@^referer(?!:[^\n]*[./](?:adnext\.pl)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn567 -s@^referer(?!:[^\n]*[./](?:adphoto\.fr)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn568 -s@^referer(?!:[^\n]*[./](?:adresult\.ch)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn569 -s@^referer(?!:[^\n]*[./](?:ads4\.city)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn570 -s@^referer(?!:[^\n]*[./](?:adservice\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn571 -s@^referer(?!:[^\n]*[./](?:adsimilate\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn572 -s@^referer(?!:[^\n]*[./](?:adultfriendfinder\.co\.uk|adultfriendfinder\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn573 -s@^referer(?!:[^\n]*[./](?:adv\.ru|adv\.vg|advids\.co|farapp\.com|forex-tv-online\.com|typeform\.com|welaika\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn574 -s@^referer(?!:[^\n]*[./](?:advert\.ly)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn575 -s@^referer(?!:[^\n]*[./](?:advertise\.apartments\.com|advertise\.bingads\.microsoft\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn576 -s@^referer(?!:[^\n]*[./](?:advertiser\.growmobile\.com|panel\.rightflow\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn577 -s@^referer(?!:[^\n]*[./](?:adworks\.co\.il)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn578 -s@^referer(?!:[^\n]*[./](?:adx\.uk\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn579 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn156 s@^referer(?!:[^\n]*[./](?:alimama\.com|alitrip\.com|tanx\.com|tmall\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn580 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn157 s@^referer(?!:[^\n]*[./](?:alimama\.com|budou\.com|foctop\.com|hetongal\.ac\.cn|ith8\.com|meidebi\.com|qinqintejia\.com|tanx\.com|taobao\.com|taobao\.com\.cn|youhuiyouhui\.com\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn581 -s@^referer(?!:[^\n]*[./](?:annonse\.nu)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn582 -s@^referer(?!:[^\n]*[./](?:apps\.su\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn583 -s@^referer(?!:[^\n]*[./](?:asyncjs\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn584 -s@^referer(?!:[^\n]*[./](?:awempire\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn585 -s@^referer(?!:[^\n]*[./](?:bingads\.microsoft\.com|mobileapptracking\.com|trialpay\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn586 -s@^referer(?!:[^\n]*[./](?:blockadblock\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn587 -s@^referer(?!:[^\n]*[./](?:bpaww\.com\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn588 -s@^referer(?!:[^\n]*[./](?:bt\.kiev\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn589 -s@^referer(?!:[^\n]*[./](?:carnage\.ru|karnage\.ru|sesterce\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn590 -s@^referer(?!:[^\n]*[./](?:channel4\.com|mediaplex\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn591 -s@^referer(?!:[^\n]*[./](?:clickad\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn592 -s@^referer(?!:[^\n]*[./](?:complex\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn593 -s@^referer(?!:[^\n]*[./](?:debrideurstream\.fr)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn594 -s@^referer(?!:[^\n]*[./](?:discountmags\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn595 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn158 s@^referer(?!:[^\n]*[./](?:dmzj\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn596 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn159 s@^referer(?!:[^\n]*[./](?:duilian\.msra\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn597 -s@^referer(?!:[^\n]*[./](?:elb-kind\.de\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn598 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn160 s@^referer(?!:[^\n]*[./](?:eoffcn\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn599 -s@^referer(?!:[^\n]*[./](?:etology\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn600 -s@^referer(?!:[^\n]*[./](?:forum\.encyclopediadramatica\.es)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn601 -s@^referer(?!:[^\n]*[./](?:forum\.encyclopediadramatica\.se)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn602 -s@^referer(?!:[^\n]*[./](?:fotomag\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn603 -s@^referer(?!:[^\n]*[./](?:fuckbookhookups\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn604 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn161 s@^referer(?!:[^\n]*[./](?:fwxgx\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn605 -s@^referer(?!:[^\n]*[./](?:goods\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn606 -s@^referer(?!:[^\n]*[./](?:gowatchit\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn607 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn162 s@^referer(?!:[^\n]*[./](?:guagua\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn608 -s@^referer(?!:[^\n]*[./](?:hitex\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn609 -s@^referer(?!:[^\n]*[./](?:home\.tapjoy\.com|panel\.rightflow\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn610 -s@^referer(?!:[^\n]*[./](?:infowars\.com\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn611 -s@^referer(?!:[^\n]*[./](?:itsellservice\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn612 -s@^referer(?!:[^\n]*[./](?:itsmygame\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn613 -s@^referer(?!:[^\n]*[./](?:j\.gs|q\.gs)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn614 -s@^referer(?!:[^\n]*[./](?:jetswap\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn615 -s@^referer(?!:[^\n]*[./](?:job\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn616 -s@^referer(?!:[^\n]*[./](?:jobvite\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn617 -s@^referer(?!:[^\n]*[./](?:kinofilms\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn618 -s@^referer(?!:[^\n]*[./](?:km\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn619 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn163 s@^referer(?!:[^\n]*[./](?:lady\.weibo\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn620 -s@^referer(?!:[^\n]*[./](?:leads\.su)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn164 +s@^referer(?!:[^\n]*[./](?:lianmeng\.360\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn621 -s@^referer(?!:[^\n]*[./](?:liverail-mlgtv\.ip)):.*@ab2p-block-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn165 +s@^referer(?!:[^\n]*[./](?:m\.gamer\.com\.tw)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn622 -s@^referer(?!:[^\n]*[./](?:magnet\.kiev\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn623 -s@^referer(?!:[^\n]*[./](?:maltatoday\.mt\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn624 -s@^referer(?!:[^\n]*[./](?:mambo\.kiev\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn625 -s@^referer(?!:[^\n]*[./](?:marketgid\.com|marketgid\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn626 -s@^referer(?!:[^\n]*[./](?:marketgid\.com|marketgid\.ru|marketgid\.ua|mgid\.com|thechive\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn627 -s@^referer(?!:[^\n]*[./](?:mb-advertise\.gr)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn628 -s@^referer(?!:[^\n]*[./](?:mediaplex\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn629 -s@^referer(?!:[^\n]*[./](?:meganews\.kiev\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn630 -s@^referer(?!:[^\n]*[./](?:moi-progi\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn631 -s@^referer(?!:[^\n]*[./](?:msnbc\.msn\.com|www\.nbcnews\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn632 -s@^referer(?!:[^\n]*[./](?:my-dirty-hobby\.com|mydirtyhobby\.de)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn633 -s@^referer(?!:[^\n]*[./](?:my\.mail\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn634 -s@^referer(?!:[^\n]*[./](?:mydirtyhobby\.com|mydirtyhobby\.de)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn635 -s@^referer(?!:[^\n]*[./](?:ngohq\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn636 -s@^referer(?!:[^\n]*[./](?:novostimira\.com|novostimira\.com\.ua|novostimira\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn637 -s@^referer(?!:[^\n]*[./](?:nster\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn638 -s@^referer(?!:[^\n]*[./](?:outbrain\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn639 -s@^referer(?!:[^\n]*[./](?:outbrain\.com|seek\.co\.nz|seek\.com\.au)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn640 -s@^referer(?!:[^\n]*[./](?:ozon\.ru|ozonru\.co\.il|ozonru\.com|ozonru\.eu|ozonru\.kz)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn641 -s@^referer(?!:[^\n]*[./](?:p2p\.adserver\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn642 -s@^referer(?!:[^\n]*[./](?:panel\.rightflow\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn643 -s@^referer(?!:[^\n]*[./](?:ppc\.ee)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn644 -s@^referer(?!:[^\n]*[./](?:qs\.kiev\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn645 -s@^referer(?!:[^\n]*[./](?:redtram\.com|redtram\.fm)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn646 -s@^referer(?!:[^\n]*[./](?:rozetka\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn647 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn166 s@^referer(?!:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn648 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn167 s@^referer(?!:[^\n]*[./](?:sac\.net\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn649 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn168 s@^referer(?!:[^\n]*[./](?:savebar\.com\.tw)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn650 -s@^referer(?!:[^\n]*[./](?:sedoparking\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn651 -s@^referer(?!:[^\n]*[./](?:seo24\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn652 -s@^referer(?!:[^\n]*[./](?:sextalk\.com\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn653 -s@^referer(?!:[^\n]*[./](?:shatecraft\.com\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn654 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn169 s@^referer(?!:[^\n]*[./](?:sogou\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn655 -s@^referer(?!:[^\n]*[./](?:swedishbeauty\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn656 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn170 s@^referer(?!:[^\n]*[./](?:tech\.ifeng\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn657 -s@^referer(?!:[^\n]*[./](?:temple\.edu)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn658 -s@^referer(?!:[^\n]*[./](?:trueswords\.com\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn659 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn171 s@^referer(?!:[^\n]*[./](?:tw\.yahoo\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn660 -s@^referer(?!:[^\n]*[./](?:vereinslinie\.de)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn661 -s@^referer(?!:[^\n]*[./](?:viprelax\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn662 -s@^referer(?!:[^\n]*[./](?:vpets\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn663 -s@^referer(?!:[^\n]*[./](?:wau\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn664 -s@^referer(?!:[^\n]*[./](?:wave525\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn665 -s@^referer(?!:[^\n]*[./](?:worldofrest\.com\.ua)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn666 -s@^referer(?!:[^\n]*[./](?:worldoftanks\.ru)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn667 -s@^referer(?!:[^\n]*[./](?:worth1000\.com\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn668 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn172 s@^referer(?!:[^\n]*[./](?:www\.sina\.com\.cn)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn669 -s@^referer(?!:[^\n]*[./](?:xtendmedia\.dk)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn670 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn173 s@^referer(?!:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn671 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn174 s@^referer(?!:[^\n]*[./](?:ychr\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn672 +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn175 s@^referer(?!:[^\n]*[./](?:ylmf\.com)):.*@ab2p-block-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn673 -s@^referer(?!:[^\n]*[./](?:yobt\.com\.ip)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn674 -s@^referer(?!:[^\n]*[./](?:youtube\.com)):.*@ab2p-block-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn675 -s@^referer(?!:[^\n]*[./](?:zzima\.com)):.*@ab2p-block-dnt@Ti - CLIENT-HEADER-TAGGER: ab2p-block-elem-R1 -s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|107\.150\.17\.66|20fuck\.com|20men\.com|22fuck\.com|23\.226\.134\.115|23\.226\.134\.116|23\.226\.138\.28|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tb001\.xyz|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R10 -s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R100 -s@^referer(?=:[^\n]*[./](?:arstechnica\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R101 -s@^referer(?=:[^\n]*[./](?:askandyaboutclothes\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R102 -s@^referer(?=:[^\n]*[./](?:astalavista\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R103 -s@^referer(?=:[^\n]*[./](?:au\.tv\.yahoo\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R104 -s@^referer(?=:[^\n]*[./](?:audiforums\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R105 -s@^referer(?=:[^\n]*[./](?:augusta\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R106 -s@^referer(?=:[^\n]*[./](?:autoexpress\.co\.uk|evo\.co\.uk|givemefootball\.com|mensfitness\.co\.uk|mpora\.com|tribalfootball\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R107 -s@^referer(?=:[^\n]*[./](?:avaxhm\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R108 -s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R109 -s@^referer(?=:[^\n]*[./](?:backin\.net|uploadlw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R11 -s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R110 -s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R111 -s@^referer(?=:[^\n]*[./](?:backupload\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R112 -s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R113 -s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R114 -s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R115 -s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R116 -s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R117 -s@^referer(?=:[^\n]*[./](?:best-bitcoin-faucet\.eu|best-free-faucet\.eu|bitcoin-best-faucet\.eu|bitcoin-cloud\.eu|bitcoin-faucet\.eu|bitcoin-free-faucet\.eu|free-bitcoin-faucet\.eu|get-bitcoins-free\.eu|get-free-bitcoin\.eu|win-free-bitcoins\.eu)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R118 -s@^referer(?=:[^\n]*[./](?:bestreams\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R119 -s@^referer(?=:[^\n]*[./](?:better-explorer\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R12 s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R120 -s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R121 -s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R122 -s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R123 -s@^referer(?=:[^\n]*[./](?:blizko\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R124 -s@^referer(?=:[^\n]*[./](?:bossip\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R125 -s@^referer(?=:[^\n]*[./](?:bostonmagazine\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R126 -s@^referer(?=:[^\n]*[./](?:boxoffice\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R127 -s@^referer(?=:[^\n]*[./](?:boyfriendtv\.com|pornoxo\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R128 -s@^referer(?=:[^\n]*[./](?:brb\.to|cxz\.to|fs\.to)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R129 -s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R13 -s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R130 -s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R131 -s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R132 -s@^referer(?=:[^\n]*[./](?:caclubindia\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R133 -s@^referer(?=:[^\n]*[./](?:cao1024\.com|qiannao\.com|ref\.so)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R134 -s@^referer(?=:[^\n]*[./](?:capricornus\.cc|moonwalk\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R135 -s@^referer(?=:[^\n]*[./](?:carambatv\.ru|goodgame\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R136 -s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R138 -s@^referer(?=:[^\n]*[./](?:cbs\.com|cbsnews\.com|twitch\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R139 -s@^referer(?=:[^\n]*[./](?:cc\.com|mtv\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R14 -s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84zr\.com|99re\.city|99re\.co|99re\.net|99re\.org|99re6\.com|99re8\.com|99rehomes\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|cao1024\.com|caoliuzx\.com|cililian\.me|fdzone\.org|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|lululu\.club|lululu\.lu|ml\.gg|sbme\.me|taohuazu\.tw|ttdyy\.tv|xinqixi\.com|xxxbt\.com|zhiboche\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R140 -s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R141 -s@^referer(?=:[^\n]*[./](?:ccav1\.com|ypan\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R142 -s@^referer(?=:[^\n]*[./](?:censor\.net\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R143 -s@^referer(?=:[^\n]*[./](?:channel4\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R144 -s@^referer(?=:[^\n]*[./](?:chem21\.info)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R145 -s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R146 -s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R147 -s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R148 -s@^referer(?=:[^\n]*[./](?:clipconverter\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R149 -s@^referer(?=:[^\n]*[./](?:cloudfront\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R15 -s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R150 -s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R151 -s@^referer(?=:[^\n]*[./](?:cnn\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R152 -s@^referer(?=:[^\n]*[./](?:coedmagazine\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R153 -s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R154 -s@^referer(?=:[^\n]*[./](?:coolsport\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R155 -s@^referer(?=:[^\n]*[./](?:couchtuner\.eu|zzstream\.li)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R156 -s@^referer(?=:[^\n]*[./](?:cpahero\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R157 -s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R158 -s@^referer(?=:[^\n]*[./](?:cracksfiles\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R159 -s@^referer(?=:[^\n]*[./](?:crash\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R16 -s@^referer(?=:[^\n]*[./](?:189so\.cn)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R160 -s@^referer(?=:[^\n]*[./](?:crazys\.info|ucrazy\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R161 -s@^referer(?=:[^\n]*[./](?:crescent-news\.com|daily-jeff\.com|recordpub\.com|state-journal\.com|the-daily-record\.com|the-review\.com|times-gazette\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R162 -s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R163 -s@^referer(?=:[^\n]*[./](?:csnnw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R164 -s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R165 -s@^referer(?=:[^\n]*[./](?:cybergame\.tv|smotri\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R166 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R167 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com|youtube\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R168 -s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R169 -s@^referer(?=:[^\n]*[./](?:darkmoney\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R17 -s@^referer(?=:[^\n]*[./](?:18avday\.cc|18avday\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R170 -s@^referer(?=:[^\n]*[./](?:datacloud\.to)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R171 -s@^referer(?=:[^\n]*[./](?:datafilehost\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R172 -s@^referer(?=:[^\n]*[./](?:dcrtv\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R173 -s@^referer(?=:[^\n]*[./](?:ddlvalley\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R174 -s@^referer(?=:[^\n]*[./](?:deadspin\.com|gawker\.com|gizmodo\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|lifehacker\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R175 -s@^referer(?=:[^\n]*[./](?:deccanchronicle\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R176 -s@^referer(?=:[^\n]*[./](?:deditv\.com|vidbox\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R177 -s@^referer(?=:[^\n]*[./](?:deluxemusic\.tv\.staging\.ipercast\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R178 -s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R179 -s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R18 -s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R180 -s@^referer(?=:[^\n]*[./](?:dl4all\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R181 -s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R182 -s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R183 -s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R184 -s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R185 -s@^referer(?=:[^\n]*[./](?:dsero\.com|ginormousbargains\.com|korean-candy\.com|misheel\.net|politicususa\.com|techydoor\.com|trutower\.com|unfair\.co)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R186 -s@^referer(?=:[^\n]*[./](?:dsero\.com|korean-candy\.com|misheel\.net|politicususa\.com|techydoor\.com|trutower\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R187 -s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R188 -s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R189 -s@^referer(?=:[^\n]*[./](?:e\.mail\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R19 -s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R190 -s@^referer(?=:[^\n]*[./](?:echo\.msk\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R191 -s@^referer(?=:[^\n]*[./](?:edinstvennaya\.ua|gazeta\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R192 -s@^referer(?=:[^\n]*[./](?:enjore\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R193 -s@^referer(?=:[^\n]*[./](?:ewn\.co\.za)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R194 -s@^referer(?=:[^\n]*[./](?:exashare\.com|sex\.com|thepiratebay\.am|thepiratebay\.gd|thepiratebay\.la|thepiratebay\.mn|thepiratebay\.vg)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R195 -s@^referer(?=:[^\n]*[./](?:exashare\.com|twer\.info|youwatch\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R196 -s@^referer(?=:[^\n]*[./](?:explosm\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R197 -s@^referer(?=:[^\n]*[./](?:extremetech\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R198 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|youporn\.com|youporngay\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R199 -s@^referer(?=:[^\n]*[./](?:eztv\.ag|firedrive\.com|limetorrents\.cc|monova\.org|sankakucomplex\.com|sockshare\.com|ukpirate\.org|unblocked\.la|userscloud\.com|yourbittorrent\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R2 -s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R20 -s@^referer(?=:[^\n]*[./](?:19rus\.info|1tvnet\.ru|arendator\.ru|biwork\.ru|bvedomosti\.ru|cars\.ru|csmania\.ru|fitsport\.ru|fuzz-magazine\.ru|gamegpu\.ru|hd-systems\.com\.ua|itexpert\.org\.ua|karelia\.ru|km\.ru|mebelminsk\.by|moscow-post\.com|nakanune\.ru|newizv\.ru|ngregion\.ru|poiskvps\.ru|pretenziy\.ru|rbc\.ru|ridna\.ua|rtr24\.ru|ruslife\.eu|sevastopol\.su|skoda-club\.org\.ua|starkosino\.ru|vjazhi\.ru|vp-news\.ru|vsatke\.ru|zrenue\.com|谐芯褉芯写-泻懈薪谐懈褋械锌锌\.褉褎)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R200 -s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R201 -s@^referer(?=:[^\n]*[./](?:f-picture\.net|filmasik\.net|radikal\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R202 -s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R203 -s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R204 -s@^referer(?=:[^\n]*[./](?:farmingshow\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R205 -s@^referer(?=:[^\n]*[./](?:farmingshow\.com|radiosport\.co\.nz)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R206 -s@^referer(?=:[^\n]*[./](?:farmonline\.com\.au)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R207 -s@^referer(?=:[^\n]*[./](?:fastvideo\.eu|rapidvideo\.org|sh\.st)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R208 -s@^referer(?=:[^\n]*[./](?:fayloobmennik\.net|lovekinozal\.ru|rusfolder\.com|rutor\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R209 -s@^referer(?=:[^\n]*[./](?:fiaformulae\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R21 -s@^referer(?=:[^\n]*[./](?:1fichier\.com|limetorrents\.cc|primewire\.ag|thepiratebay\.銇裤倱銇)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R210 -s@^referer(?=:[^\n]*[./](?:fiberupload\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R211 -s@^referer(?=:[^\n]*[./](?:fijivillage\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R212 -s@^referer(?=:[^\n]*[./](?:filatak\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R213 -s@^referer(?=:[^\n]*[./](?:fileforever\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R214 -s@^referer(?=:[^\n]*[./](?:fileplaneta\.com|freezpic\.ru|mediapapa\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R215 -s@^referer(?=:[^\n]*[./](?:fillinn\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R216 -s@^referer(?=:[^\n]*[./](?:filmovizija\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R217 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R218 -s@^referer(?=:[^\n]*[./](?:findagrave\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R219 -s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R22 -s@^referer(?=:[^\n]*[./](?:1kinobig\.ru|hdkinomax\.com|kino-dom\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R220 -s@^referer(?=:[^\n]*[./](?:firstrownow\.eu|kyivpost\.com|uatoday\.tv|unian\.info)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R221 -s@^referer(?=:[^\n]*[./](?:fishki\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R222 -s@^referer(?=:[^\n]*[./](?:flashx\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R223 -s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R224 -s@^referer(?=:[^\n]*[./](?:flysat\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R225 -s@^referer(?=:[^\n]*[./](?:fontanka\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R226 -s@^referer(?=:[^\n]*[./](?:footballreview\.ru|innov\.ru|newkaliningrad\.ru|seonews\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R227 -s@^referer(?=:[^\n]*[./](?:foreverceleb\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R228 -s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R229 -s@^referer(?=:[^\n]*[./](?:free-torrent\.org|free-torrents\.org|game-torrent\.info)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R23 -s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R230 -s@^referer(?=:[^\n]*[./](?:free-torrent\.org|free-torrents\.org|game-torrent\.info|jpgstore\.ru|pics2pay\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R231 -s@^referer(?=:[^\n]*[./](?:free-torrents\.org|hentaichan\.ru|nude-moon\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R232 -s@^referer(?=:[^\n]*[./](?:freezpic\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R233 -s@^referer(?=:[^\n]*[./](?:freshrecords\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R234 -s@^referer(?=:[^\n]*[./](?:frombar\.com|gledaisport\.com|smotrisport\.com|sportcategory\.com|sportlemon\.org|sportlemon\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R235 -s@^referer(?=:[^\n]*[./](?:fxempire\.com|fxempire\.de|fxempire\.it|fxempire\.nl)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R236 -s@^referer(?=:[^\n]*[./](?:f谋rstrowsports\.eu)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R237 -s@^referer(?=:[^\n]*[./](?:gagadget\.com|maxpark\.com|vse-sto\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R238 -s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R239 -s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R24 -s@^referer(?=:[^\n]*[./](?:1tv\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R240 -s@^referer(?=:[^\n]*[./](?:ganool\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R241 -s@^referer(?=:[^\n]*[./](?:gaytube\.com|keezmovies\.com|spankwire\.com|tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R242 -s@^referer(?=:[^\n]*[./](?:gca\.sh)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R243 -s@^referer(?=:[^\n]*[./](?:gearshout\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R244 -s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R245 -s@^referer(?=:[^\n]*[./](?:gelbooru\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R246 -s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R247 -s@^referer(?=:[^\n]*[./](?:gigaom\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R248 -s@^referer(?=:[^\n]*[./](?:go\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R249 -s@^referer(?=:[^\n]*[./](?:goodgame\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R25 -s@^referer(?=:[^\n]*[./](?:21forum\.ru|afisha21\.ru|cheb\.ru|cheb\.ws|cheboksary\.ws|kugesi\.ru|na-svyazi\.ru|zarulem\.ws)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R250 -s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R251 -s@^referer(?=:[^\n]*[./](?:gramfeed\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R252 -s@^referer(?=:[^\n]*[./](?:gruntig\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R253 -s@^referer(?=:[^\n]*[./](?:gserp\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R254 -s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R255 -s@^referer(?=:[^\n]*[./](?:hanime\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R256 -s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R257 -s@^referer(?=:[^\n]*[./](?:hardforum\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R258 -s@^referer(?=:[^\n]*[./](?:have69\.net|i-gay\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R259 -s@^referer(?=:[^\n]*[./](?:hdclub\.org|tracker\.hdclub\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R26 -s@^referer(?=:[^\n]*[./](?:21forum\.ru|cheb\.ru|na-svyazi\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R260 -s@^referer(?=:[^\n]*[./](?:hdkinomax\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R261 -s@^referer(?=:[^\n]*[./](?:hdscg\.com|v8gay\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R262 -s@^referer(?=:[^\n]*[./](?:help2play\.com|otvetes\.com|vkonagt\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R263 -s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R264 -s@^referer(?=:[^\n]*[./](?:hentaiz\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R265 -s@^referer(?=:[^\n]*[./](?:hipfile\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R266 -s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R267 -s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R268 -s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R269 -s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk|wwledsbb\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R27 -s@^referer(?=:[^\n]*[./](?:240513\.com|ozdpt\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R270 -s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R271 -s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R272 -s@^referer(?=:[^\n]*[./](?:hulkload\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R273 -s@^referer(?=:[^\n]*[./](?:hulkshare\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R274 -s@^referer(?=:[^\n]*[./](?:hvosty\.ru|vsehvosty\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R275 -s@^referer(?=:[^\n]*[./](?:hw-lab\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R276 -s@^referer(?=:[^\n]*[./](?:i24news\.tv|newindianexpress\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R277 -s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R278 -s@^referer(?=:[^\n]*[./](?:ibnlive\.in\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R279 -s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R28 -s@^referer(?=:[^\n]*[./](?:24warez\.ru|anideshka\.ru|anilost\.com|artero\.ru|babestar\.ru|best-xxx\.net|bestcamsxxx\.com|bestrepack\.net|bigtorrent\.org|bookitut\.ru|demotivators\.to|drochunov\.net|eroox\.ru|exoticvideo\.net|filmasik\.net|filmomax\.com|fotooplata\.ru|free-torrents\.org|freebie\.net\.ua|freepublish\.ru|gidporno\.com|girlstop\.info|guide-box\.ru|hentaiz\.org|huyandex\.com|i-pic\.ru|iarex\.ru|imgmoney\.ru|kino-zal\.kz|kinohost\.nov\.ru|kinoonlain\.org|kritka\.net|leporno\.org|leporno\.ws|mega-track\.org|mnogohlama\.ru|moresofta\.com|ontracker\.ru|palevo\.com|pic4you\.ru|pic5you\.ru|pics-money\.ru|politland\.ru|porn-news\.org|porno-gid\.info|porno-torrent\.biz|porno-torrents\.ru|pornoboss\.tv|pornoero\.com|pornogovno\.ru|pornomage\.net|pornorip\.biz|pornorun\.com|pornovizion\.com|prisnilos\.su|privsex\.ru|promotevid\.ru|raketa-tv\.com|rosporn\.com|ru-admin\.net|seasonvar\.ru|seti-ceti\.ru|sibiryak-soft\.org|suero\.tv|tedkino\.com|tyt-kinofilm\.ru|uploadimagex\.com|uptube\.su|uvideos\.ru|v-chulkahh\.ru|video-magnet\.com|vodkov\.net|vodvore\.net|vserisunki\.ru|vzale\.tv|wifilm\.ru|x-zona\.org|xxlbunny\.com|xxx-russian\.ru|xyu\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R280 -s@^referer(?=:[^\n]*[./](?:imageban\.ru|tekst-pesni-tut\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R281 -s@^referer(?=:[^\n]*[./](?:inspirationfeed\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R282 -s@^referer(?=:[^\n]*[./](?:ints\.rusfolder\.com|ints\.rusfolder\.net|piccash\.net|pornolab\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R283 -s@^referer(?=:[^\n]*[./](?:investing\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R284 -s@^referer(?=:[^\n]*[./](?:iplstream\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R285 -s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R286 -s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R287 -s@^referer(?=:[^\n]*[./](?:ivi\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R288 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R100 s@^referer(?=:[^\n]*[./](?:iyejie\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R289 -s@^referer(?=:[^\n]*[./](?:izzs\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R29 -s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R290 -s@^referer(?=:[^\n]*[./](?:java-forums\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R291 -s@^referer(?=:[^\n]*[./](?:joker\.ykt\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R292 -s@^referer(?=:[^\n]*[./](?:joyreactor\.cc|reactor\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R293 -s@^referer(?=:[^\n]*[./](?:joystiq\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R294 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R101 s@^referer(?=:[^\n]*[./](?:jpfans\.com|jpseek\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R295 -s@^referer(?=:[^\n]*[./](?:kartinka\.in)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R296 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R102 s@^referer(?=:[^\n]*[./](?:keywin\.org)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R297 -s@^referer(?=:[^\n]*[./](?:kg-portal\.ru|tvc\.ru|tvzvezda\.ru|zoomby\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R298 -s@^referer(?=:[^\n]*[./](?:kingfiles\.net|uploadrocket\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R299 -s@^referer(?=:[^\n]*[./](?:kino-dom\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R3 -s@^referer(?=:[^\n]*[./](?:04stream\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R30 -s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R300 -s@^referer(?=:[^\n]*[./](?:kino-live\.org|riper\.am)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R301 -s@^referer(?=:[^\n]*[./](?:kinonews\.ru|lifenews\.ru|sport-express\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R302 -s@^referer(?=:[^\n]*[./](?:kinoprofi\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R303 -s@^referer(?=:[^\n]*[./](?:kinox\.to)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R304 -s@^referer(?=:[^\n]*[./](?:kinox\.to|movie4k\.to|thevideo\.me|unblocked\.la|vidup\.me)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R305 -s@^referer(?=:[^\n]*[./](?:kirovnet\.ru|ui\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R307 -s@^referer(?=:[^\n]*[./](?:klex\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R308 -s@^referer(?=:[^\n]*[./](?:korrespondent\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R309 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R103 s@^referer(?=:[^\n]*[./](?:kxddd\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|ttft\.in|xhcbb\.com|yzhlive\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R31 -s@^referer(?=:[^\n]*[./](?:2ad\.in|ad2links\.com|adf\.ly|adfoc\.us|adv\.li|adyou\.me|allmyvideos\.net|ay\.gy|fuestfka\.com|imgmega\.com|j\.gs|linkbucksmedia\.com|mortastica\.com|prodsetter-in\.com|q\.gs|sh\.st|shr77\.com|sonomerit\.com|ssovgoxbvppy\.net|thevideo\.me|twer\.info|u\.bb|vidspot\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R310 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R104 s@^referer(?=:[^\n]*[./](?:lepan\.cc|sx566\.com|vvpan\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R311 -s@^referer(?=:[^\n]*[./](?:lexsteele\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R312 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R105 s@^referer(?=:[^\n]*[./](?:life\.com\.tw)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R313 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R106 s@^referer(?=:[^\n]*[./](?:lightnovel\.cn|xdjishu\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R314 -s@^referer(?=:[^\n]*[./](?:lindaikeji\.blogspot\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R315 -s@^referer(?=:[^\n]*[./](?:linkbucks\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R316 -s@^referer(?=:[^\n]*[./](?:linkshrink\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R317 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R107 s@^referer(?=:[^\n]*[./](?:live\.jstv\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R318 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R108 s@^referer(?=:[^\n]*[./](?:live8bo\.com|live8bo\.net|live8bo1\.com|zqzq\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R319 -s@^referer(?=:[^\n]*[./](?:lossless-galaxy\.ru)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R109 +s@^referer(?=:[^\n]*[./](?:ltwbook\.com|ltxsw\.com|ltxszw\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R32 -s@^referer(?=:[^\n]*[./](?:2ad\.in|adf\.ly|adfoc\.us|adjet\.biz|adv\.li|ay\.gy|j\.gs|linkbucksmedia\.com|q\.gs|sh\.st|tvbximak\.com|u\.bb)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R11 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R320 -s@^referer(?=:[^\n]*[./](?:lt57\.com|ltwbook\.com|ltxsw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R321 -s@^referer(?=:[^\n]*[./](?:lululu8\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R322 -s@^referer(?=:[^\n]*[./](?:luxtorrents\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R323 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R110 s@^referer(?=:[^\n]*[./](?:lxty66\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R324 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R111 s@^referer(?=:[^\n]*[./](?:mail\.pchome\.com\.tw)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R325 -s@^referer(?=:[^\n]*[./](?:mail\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R326 -s@^referer(?=:[^\n]*[./](?:mail\.yahoo\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R327 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R328 -s@^referer(?=:[^\n]*[./](?:mamba\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R329 -s@^referer(?=:[^\n]*[./](?:mangafox\.me)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R33 -s@^referer(?=:[^\n]*[./](?:2drive\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R330 -s@^referer(?=:[^\n]*[./](?:masalaboard\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R331 -s@^referer(?=:[^\n]*[./](?:mega-pics-money\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R332 -s@^referer(?=:[^\n]*[./](?:megaimg\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R333 -s@^referer(?=:[^\n]*[./](?:megaresheba\.ru|muzofon\.com|teledidar\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R334 -s@^referer(?=:[^\n]*[./](?:megogo\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R335 -s@^referer(?=:[^\n]*[./](?:memoryholeblog\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R336 -s@^referer(?=:[^\n]*[./](?:mhktricks\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R337 -s@^referer(?=:[^\n]*[./](?:miliblog\.co\.uk)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R338 -s@^referer(?=:[^\n]*[./](?:mirror\.co\.uk)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R339 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R112 s@^referer(?=:[^\n]*[./](?:mitbbs\.ca|mitbbs\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R34 -s@^referer(?=:[^\n]*[./](?:2mm\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R340 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R113 s@^referer(?=:[^\n]*[./](?:mmload\.info)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R341 -s@^referer(?=:[^\n]*[./](?:modovideo\.com|mooshare\.biz)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R342 -s@^referer(?=:[^\n]*[./](?:molodejj\.tv|smotri\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R343 -s@^referer(?=:[^\n]*[./](?:moonwalk\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R344 -s@^referer(?=:[^\n]*[./](?:moskva\.fm|piter\.fm)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R345 -s@^referer(?=:[^\n]*[./](?:motherjones\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R346 -s@^referer(?=:[^\n]*[./](?:moviefone\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R347 -s@^referer(?=:[^\n]*[./](?:multiupfile\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R348 -s@^referer(?=:[^\n]*[./](?:my-hit\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R349 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R114 s@^referer(?=:[^\n]*[./](?:my\.alipay\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R35 -s@^referer(?=:[^\n]*[./](?:300mblink\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R350 -s@^referer(?=:[^\n]*[./](?:my\.rsscache\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R351 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R115 s@^referer(?=:[^\n]*[./](?:myqcloud\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R352 -s@^referer(?=:[^\n]*[./](?:namba\.kg)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R353 -s@^referer(?=:[^\n]*[./](?:namba\.kg|namba\.tj)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R354 -s@^referer(?=:[^\n]*[./](?:namba\.tj)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R355 -s@^referer(?=:[^\n]*[./](?:ncrypt\.in)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R356 -s@^referer(?=:[^\n]*[./](?:ndtv\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R357 -s@^referer(?=:[^\n]*[./](?:netload\.in)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R358 -s@^referer(?=:[^\n]*[./](?:newgrounds\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R359 -s@^referer(?=:[^\n]*[./](?:newrbk\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R36 -s@^referer(?=:[^\n]*[./](?:360-bo\.com|54xr\.com|pptiyu\.com|xrba\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R360 -s@^referer(?=:[^\n]*[./](?:news-headlines\.co\.za)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R361 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R116 s@^referer(?=:[^\n]*[./](?:news\.china\.com\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R362 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R117 s@^referer(?=:[^\n]*[./](?:news\.cn|xinhuanet\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R363 -s@^referer(?=:[^\n]*[./](?:news\.com\.au)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R364 -s@^referer(?=:[^\n]*[./](?:newsok\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R365 -s@^referer(?=:[^\n]*[./](?:nfl\.com|viki\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R366 -s@^referer(?=:[^\n]*[./](?:nikolaev-city\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R367 -s@^referer(?=:[^\n]*[./](?:nnm\.me|serialu\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R368 -s@^referer(?=:[^\n]*[./](?:oboom\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R369 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R118 s@^referer(?=:[^\n]*[./](?:ocucn\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R37 -s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R370 -s@^referer(?=:[^\n]*[./](?:offers\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R371 -s@^referer(?=:[^\n]*[./](?:onhax\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R372 -s@^referer(?=:[^\n]*[./](?:ontracker\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R373 -s@^referer(?=:[^\n]*[./](?:optimized-by\.rubiconproject\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R374 -s@^referer(?=:[^\n]*[./](?:pachanyc\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R375 -s@^referer(?=:[^\n]*[./](?:patheos\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R376 -s@^referer(?=:[^\n]*[./](?:pavelkesh\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R377 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R119 s@^referer(?=:[^\n]*[./](?:pbzy\.com|shanzhaiben\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R378 -s@^referer(?=:[^\n]*[./](?:pcgamesn\.com)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R12 +s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84fn\.com|99ee1\.com|99re5\.com|99rr6\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|caoliuzx\.com|cililian\.me|fdzone\.org|izzs\.cc|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|sbme\.me|taohuazu\.tw|thzhd\.net|ttdyy\.tv|xinqixi\.com|xxxbt\.com|youb444\.com|zhiboche\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R379 -s@^referer(?=:[^\n]*[./](?:photobucket\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R38 -s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R380 -s@^referer(?=:[^\n]*[./](?:phpbb3\.x-tk\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R381 -s@^referer(?=:[^\n]*[./](?:pic2profit\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R382 -s@^referer(?=:[^\n]*[./](?:picforall\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R383 -s@^referer(?=:[^\n]*[./](?:pikabu\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R384 -s@^referer(?=:[^\n]*[./](?:pirateproxy\.sx|thepiratebay\.am|thepiratebay\.gd|thepiratebay\.la|thepiratebay\.mn|thepiratebay\.vg)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R385 -s@^referer(?=:[^\n]*[./](?:pladform\.ru|smotri\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R386 -s@^referer(?=:[^\n]*[./](?:planetaua\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R387 -s@^referer(?=:[^\n]*[./](?:player\.theplatform\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R388 -s@^referer(?=:[^\n]*[./](?:player\.vgtrk\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R389 -s@^referer(?=:[^\n]*[./](?:politicalears\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R39 -s@^referer(?=:[^\n]*[./](?:3dnews\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R390 -s@^referer(?=:[^\n]*[./](?:politicususa\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R391 -s@^referer(?=:[^\n]*[./](?:popbytes\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R392 -s@^referer(?=:[^\n]*[./](?:pornhub\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R394 -s@^referer(?=:[^\n]*[./](?:pornolab\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R395 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R120 s@^referer(?=:[^\n]*[./](?:pos\.baidu\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R396 -s@^referer(?=:[^\n]*[./](?:postgradproblems\.com)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R121 +s@^referer(?=:[^\n]*[./](?:qiannao\.com|ref\.so)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R397 -s@^referer(?=:[^\n]*[./](?:pr-cy\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R398 -s@^referer(?=:[^\n]*[./](?:pregen\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R399 -s@^referer(?=:[^\n]*[./](?:primejailbait\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R4 -s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R40 -s@^referer(?=:[^\n]*[./](?:3news\.co\.nz|92q\.com|abc-7\.com|addictinggames\.com|allbusiness\.com|bizjournals\.com|bloomberg\.com|bnn\.ca|boom92houston\.com|boom945\.com|boomphilly\.com|break\.com|cbc\.ca|cbs19\.tv|cbs3springfield\.com|cbslocal\.com|complex\.com|dailymail\.co\.uk|darkhorizons\.com|doubleviking\.com|euronews\.com|extratv\.com|fandango\.com|fox19\.com|fox5vegas\.com|gorillanation\.com|hawaiinewsnow\.com|hellobeautiful\.com|hiphopnc\.com|hot1041stl\.com|hothiphopdetroit\.com|hotspotatl\.com|hulu\.com|imdb\.com|indiatimes\.com|indyhiphop\.com|ipowerrichmond\.com|joblo\.com|kcra\.com|kctv5\.com|ketv\.com|koat\.com|koco\.com|kolotv\.com|kpho\.com|kptv\.com|ksat\.com|ksbw\.com|ksfy\.com|ksl\.com|kypost\.com|kysdc\.com|live5news\.com|livestation\.com|livestream\.com|metro\.us|metronews\.ca|miamiherald\.com|my9nj\.com|myboom1029\.com|mycolumbuspower\.com|nbcrightnow\.com|neatorama\.com|necn\.com|neopets\.com|news\.com\.au|news4jax\.com|newsone\.com|nintendoeverything\.com|oldschoolcincy\.com|pagesuite-professional\.co\.uk|pandora\.com|play\.it|player\.theplatform\.com|radio\.com|radionowindy\.com|rottentomatoes\.com|sbsun\.com|shacknews\.com|sk-gaming\.com|ted\.com|thebeatdfw\.com|theboxhouston\.com|theglobeandmail\.com|timesnow\.tv|tv2\.no|twitch\.tv|ustream\.tv|wapt\.com|washingtonpost\.com|wate\.com|wbaltv\.com|wcvb\.com|wdrb\.com|wdsu\.com|wflx\.com|wfmz\.com|wfsb\.com|wgal\.com|whdh\.com|wired\.com|wisn\.com|wiznation\.com|wlky\.com|wlns\.com|wlwt\.com|wmur\.com|wnem\.com|wowt\.com|wral\.com|wsj\.com|wsmv\.com|wsvn\.com|wtae\.com|wthr\.com|wxii12\.com|wyff4\.com|yahoo\.com|youtube-nocookie\.com|youtube\.com|zhiphopcleveland\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R400 -s@^referer(?=:[^\n]*[./](?:primewire\.ag|primewire\.in)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R401 -s@^referer(?=:[^\n]*[./](?:promodj\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R402 -s@^referer(?=:[^\n]*[./](?:promptfile\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R403 -s@^referer(?=:[^\n]*[./](?:putlocker\.is)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R404 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R122 s@^referer(?=:[^\n]*[./](?:qire213\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R405 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R123 s@^referer(?=:[^\n]*[./](?:qzntv\.com|qzwb\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R406 -s@^referer(?=:[^\n]*[./](?:rarbg\.to|rarbg\.unblocked\.la|rarbgmirror\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R407 -s@^referer(?=:[^\n]*[./](?:ratedporntube\.com|sextuberate\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R408 -s@^referer(?=:[^\n]*[./](?:rbth\.co\.uk|rbth\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R409 -s@^referer(?=:[^\n]*[./](?:rdio\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R41 -s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R410 -s@^referer(?=:[^\n]*[./](?:readersdigest\.co\.uk)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R411 -s@^referer(?=:[^\n]*[./](?:redtube\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R412 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R124 s@^referer(?=:[^\n]*[./](?:ref\.so)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R413 -s@^referer(?=:[^\n]*[./](?:restoclub\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R414 -s@^referer(?=:[^\n]*[./](?:reuters\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R415 -s@^referer(?=:[^\n]*[./](?:rootden\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R416 -s@^referer(?=:[^\n]*[./](?:rprradio\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R417 -s@^referer(?=:[^\n]*[./](?:rusfolder\.com|rusfolder\.net|rutube\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R419 -s@^referer(?=:[^\n]*[./](?:sammyhub\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R42 -s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R420 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R125 s@^referer(?=:[^\n]*[./](?:scol\.com\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R421 -s@^referer(?=:[^\n]*[./](?:screenlist\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R422 -s@^referer(?=:[^\n]*[./](?:search\.aol\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R423 -s@^referer(?=:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R424 -s@^referer(?=:[^\n]*[./](?:seasonvar\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R425 -s@^referer(?=:[^\n]*[./](?:secureupload\.eu)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R426 -s@^referer(?=:[^\n]*[./](?:sendspace\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R427 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R126 s@^referer(?=:[^\n]*[./](?:sex169\.info|sex169\.org)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R428 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R127 s@^referer(?=:[^\n]*[./](?:share\.popgo\.org)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R429 -s@^referer(?=:[^\n]*[./](?:shared\.sx)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R43 -s@^referer(?=:[^\n]*[./](?:4fuckr\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R430 -s@^referer(?=:[^\n]*[./](?:sharpfile\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R431 -s@^referer(?=:[^\n]*[./](?:showbiz411\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R432 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R128 s@^referer(?=:[^\n]*[./](?:shuajizhijia\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R433 -s@^referer(?=:[^\n]*[./](?:siliconrus\.com|tjournal\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R434 -s@^referer(?=:[^\n]*[./](?:simophone\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R435 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R129 s@^referer(?=:[^\n]*[./](?:skyerblog\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R436 -s@^referer(?=:[^\n]*[./](?:skysports\.com)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R13 +s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R437 -s@^referer(?=:[^\n]*[./](?:slader\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R438 -s@^referer(?=:[^\n]*[./](?:smallseotools\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R439 -s@^referer(?=:[^\n]*[./](?:smartertravel\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R44 -s@^referer(?=:[^\n]*[./](?:4put\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R440 -s@^referer(?=:[^\n]*[./](?:smexo\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R441 -s@^referer(?=:[^\n]*[./](?:smi2\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R442 -s@^referer(?=:[^\n]*[./](?:sockshare\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R443 -s@^referer(?=:[^\n]*[./](?:softpedia\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R444 -s@^referer(?=:[^\n]*[./](?:songs\.pk|songspk\.name)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R445 -s@^referer(?=:[^\n]*[./](?:songza\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R446 -s@^referer(?=:[^\n]*[./](?:souqiu8\.com|zhaofuli\.club)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R448 -s@^referer(?=:[^\n]*[./](?:spike\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R449 -s@^referer(?=:[^\n]*[./](?:sporcle\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R45 -s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R450 -s@^referer(?=:[^\n]*[./](?:stocporn\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R451 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R452 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R130 s@^referer(?=:[^\n]*[./](?:strtv\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R453 -s@^referer(?=:[^\n]*[./](?:stuff\.co\.nz)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R454 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R131 s@^referer(?=:[^\n]*[./](?:sun0769\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R455 -s@^referer(?=:[^\n]*[./](?:sunporno\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R456 -s@^referer(?=:[^\n]*[./](?:talksport\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R457 -s@^referer(?=:[^\n]*[./](?:tapochek\.net|unionpeer\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R458 -s@^referer(?=:[^\n]*[./](?:tbs\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R459 -s@^referer(?=:[^\n]*[./](?:tdarkangel\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R46 -s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R460 -s@^referer(?=:[^\n]*[./](?:technewstoday\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R461 -s@^referer(?=:[^\n]*[./](?:techpowerup\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R462 -s@^referer(?=:[^\n]*[./](?:teledidar\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R463 -s@^referer(?=:[^\n]*[./](?:televisaofutebol\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R464 -s@^referer(?=:[^\n]*[./](?:thechive\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R465 -s@^referer(?=:[^\n]*[./](?:thegrio\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R466 -s@^referer(?=:[^\n]*[./](?:thepiratebay\.si)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R467 -s@^referer(?=:[^\n]*[./](?:thisav\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R468 -s@^referer(?=:[^\n]*[./](?:thisdaylive\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R469 -s@^referer(?=:[^\n]*[./](?:thisiswhyimbroke\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R47 -s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R470 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R132 s@^referer(?=:[^\n]*[./](?:tiexue\.net)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R471 -s@^referer(?=:[^\n]*[./](?:timeout\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R472 -s@^referer(?=:[^\n]*[./](?:tinypaste\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R473 -s@^referer(?=:[^\n]*[./](?:tmz\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R474 -s@^referer(?=:[^\n]*[./](?:tokyo-tosho\.net|tokyotosho\.info|tokyotosho\.se)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R475 -s@^referer(?=:[^\n]*[./](?:torlock\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R476 -s@^referer(?=:[^\n]*[./](?:torrent-finder\.info)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R477 -s@^referer(?=:[^\n]*[./](?:torrent-pirat\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R478 -s@^referer(?=:[^\n]*[./](?:torrentszona\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R479 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R133 s@^referer(?=:[^\n]*[./](?:ttmeiju\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R48 -s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R480 -s@^referer(?=:[^\n]*[./](?:tube8\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R481 -s@^referer(?=:[^\n]*[./](?:turbobit\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R482 -s@^referer(?=:[^\n]*[./](?:tusfiles\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R483 -s@^referer(?=:[^\n]*[./](?:tv4play\.se)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R484 -s@^referer(?=:[^\n]*[./](?:tvcatchup\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R485 -s@^referer(?=:[^\n]*[./](?:twitch\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R486 -s@^referer(?=:[^\n]*[./](?:twitchfilm\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R487 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R134 s@^referer(?=:[^\n]*[./](?:txzqw\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R488 -s@^referer(?=:[^\n]*[./](?:u\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R489 -s@^referer(?=:[^\n]*[./](?:ubuntugeek\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R49 -s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R490 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R135 s@^referer(?=:[^\n]*[./](?:uisdc\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R491 -s@^referer(?=:[^\n]*[./](?:ultimate-guitar\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R492 -s@^referer(?=:[^\n]*[./](?:unionpeer\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R493 -s@^referer(?=:[^\n]*[./](?:unknowncheats\.me)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R494 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R136 s@^referer(?=:[^\n]*[./](?:uopera\.net)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R495 -s@^referer(?=:[^\n]*[./](?:up09\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R496 -s@^referer(?=:[^\n]*[./](?:uploadbaz\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R497 -s@^referer(?=:[^\n]*[./](?:uploadcore\.com|urgrove\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R498 -s@^referer(?=:[^\n]*[./](?:uploadlw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R499 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R137 s@^referer(?=:[^\n]*[./](?:v\.ku6\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R5 -s@^referer(?=:[^\n]*[./](?:101cargames\.com|1025thebull\.com|1031iheartaustin\.com|1037theq\.com|1041beat\.com|1053kissfm\.com|1057ezrock\.com|1067litefm\.com|10news\.com|1310news\.com|247comedy\.com|3news\.co\.nz|49ers\.com|610cktb\.com|680news\.com|700wlw\.com|850koa\.com|923jackfm\.com|92q\.com|940winz\.com|94hjy\.com|99kisscountry\.com|abc15\.com|abc2news\.com|abcactionnews\.com|am1300thezone\.com|ap\.org|atlantafalcons\.com|automobilemag\.com|automotive\.com|azcardinals\.com|baltimoreravens\.com|baynews9\.com|bbc\.co\.uk|bbc\.com|belfasttelegraph\.co\.uk|bengals\.com|bet\.com|big1059\.com|bigdog1009\.ca|bloomberg\.com|bnn\.ca|boom92houston\.com|boom945\.com|boom973\.com|boom997\.com|boomphilly\.com|box10\.com|brisbanetimes\.com\.au|buccaneers\.com|buffalobills\.com|bullz-eye\.com|calgaryherald\.com|caller\.com|canada\.com|capitalfm\.ca|cbslocal\.com|cbsnews\.com|cbssports\.com|channel955\.com|chargers\.com|chez106\.com|chfi\.com|chicagobears\.com|chicagotribune\.com|cj104\.com|cjad\.com|cjbk\.com|clevelandbrowns\.com|cnet\.com|coast933\.com|colts\.com|commercialappeal\.com|country1011\.com|country1043\.com|country1067\.com|country600\.com|courierpress\.com|cp24\.com|cricketcountry\.com|csmonitor\.com|ctvnews\.ca|dallascowboys\.com|denverbroncos\.com|detroitlions\.com|drive\.com\.au|earthcam\.com|easyrecipesite\.com|edmontonjournal\.com|egirlgames\.net|elvisduran\.com|enjoydressup\.com|entrepreneur\.com|eonline\.com|escapegames\.com|euronews\.com|eveningecho\.ie|fm98wjlb\.com|foodnetwork\.ca|four\.co\.nz|foxradio\.ca|foxsportsradio\.com|gamingbolt\.com|ghananation\.com|giantbomb\.com|giants\.com|globalnews\.ca|globalpost\.com|globaltoronto\.com|globaltv\.com|globaltvbc\.com|globaltvcalgary\.com|go\.com|gorillanation\.com|gosanangelo\.com|hallelujah1051\.com|hellobeautiful\.com|heraldsun\.com\.au|hgtv\.ca|hiphopnc\.com|hot1041stl\.com|hotair\.com|hothiphopdetroit\.com|hotspotatl\.com|houstontexans\.com|ibtimes\.co\.uk|ign\.com|iheart\.com|independent\.ie|independentmail\.com|indyhiphop\.com|ipowerrichmond\.com|jackfm\.ca|jaguars\.com|jwplatform\.com|kase101\.com|kcchiefs\.com|kcci\.com|kcra\.com|kdvr\.com|kfiam640\.com|kgbx\.com|khow\.com|kiisfm\.com|kiss925\.com|kissnorthbay\.com|kisssoo\.com|kisstimmins\.com|kitsapsun\.com|kitv\.com|kjrh\.com|knoxnews\.com|kogo\.com|komonews\.com|kshb\.com|kwgn\.com|kxan\.com|kysdc\.com|latimes\.com|latinchat\.com|leaderpost\.com|livestream\.com|local8now\.com|magic96\.com|majorleaguegaming\.com|metacafe\.com|miamidolphins\.com|mix923fm\.com|moneycontrol\.com|montrealgazette\.com|motorcyclistonline\.com|moviemistakes\.com|mtv\.ca|myboom1029\.com|mycolumbuspower\.com|myezrock\.com|naplesnews\.com|nationalpost\.com|nba\.com|ndtv\.com|neworleanssaints\.com|news1130\.com|newsinc\.com|newsmax\.com|newsmaxhealth\.com|newsnet5\.com|newsone\.com|newstalk1010\.com|newstalk1130\.com|newyorkjets\.com|nydailynews\.com|nymag\.com|oldschoolcincy\.com|ottawacitizen\.com|packers\.com|panthers\.com|patriots\.com|pcworld\.com|philadelphiaeagles\.com|play\.it|player\.screenwavemedia\.com|prowrestling\.com|q92timmins\.com|raaga\.com|radio\.com|radionowindy\.com|raiders\.com|rapbasement\.com|redding\.com|redskins\.com|reporternews\.com|reuters\.com|rollingstone\.com|rootsports\.com|rottentomatoes\.com|seahawks\.com|sherdog\.com|skynews\.com\.au|slice\.ca|smh\.com\.au|sploder\.com|sportsnet590\.ca|sportsnet960\.ca|springboardplatform\.com|steelers\.com|stlouisrams\.com|streetfire\.net|stuff\.co\.nz|tcpalm\.com|telegraph\.co\.uk|theage\.com\.au|theaustralian\.com\.au|thebeatdfw\.com|theboxhouston\.com|thedenverchannel\.com|thedrocks\.com|theindychannel\.com|theprovince\.com|thestarphoenix\.com|tide\.com|timescolonist\.com|timeslive\.co\.za|timesrecordnews\.com|titansonline\.com|totaljerkface\.com|townhall\.com|tripadvisor\.ca|tripadvisor\.co\.uk|tripadvisor\.co\.za|tripadvisor\.com|tripadvisor\.com\.au|tripadvisor\.com\.my|tripadvisor\.com\.sg|tripadvisor\.ie|tripadvisor\.in|turnto23\.com|tvone\.tv|twitch\.tv|twitchy\.com|usmagazine\.com|vancouversun\.com|vcstar\.com|veetle\.com|vice\.com|videojug\.com|viki\.com|vikings\.com|virginradio\.ca|vzaar\.com|wapt\.com|washingtonpost\.com|washingtontimes\.com|wcpo\.com|wdfn\.com|weather\.com|wescfm\.com|wgci\.com|wibw\.com|wikihow\.com|windsorstar\.com|wiod\.com|wiznation\.com|wjdx\.com|wkyt\.com|wor710\.com|wptv\.com|wsj\.com|wxyz\.com|wyff4\.com|yahoo\.com|youtube\.com|z100\.com|zhiphopcleveland\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R50 -s@^referer(?=:[^\n]*[./](?:5ydj\.com|99re\.city|99re\.net|99re6\.com|99re8\.com|99rehomes\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R500 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R138 s@^referer(?=:[^\n]*[./](?:v2ex\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R501 -s@^referer(?=:[^\n]*[./](?:veehd\.com)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R139 +s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com|xm9x\.net)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R502 -s@^referer(?=:[^\n]*[./](?:via-midgard\.info|via-midgard1\.info)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R14 +s@^referer(?=:[^\n]*[./](?:189so\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R503 -s@^referer(?=:[^\n]*[./](?:videochart\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R504 -s@^referer(?=:[^\n]*[./](?:vidspot\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R505 -s@^referer(?=:[^\n]*[./](?:viewcube\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R506 -s@^referer(?=:[^\n]*[./](?:viralcraze\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R507 -s@^referer(?=:[^\n]*[./](?:vivo\.sx)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R508 -s@^referer(?=:[^\n]*[./](?:vk-saver\.in\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R509 -s@^referer(?=:[^\n]*[./](?:vk\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R51 -s@^referer(?=:[^\n]*[./](?:7daysindubai\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R510 -s@^referer(?=:[^\n]*[./](?:vube\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R511 -s@^referer(?=:[^\n]*[./](?:vz\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R512 -s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R513 -s@^referer(?=:[^\n]*[./](?:washingtontimes\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R514 -s@^referer(?=:[^\n]*[./](?:watchfreemovies\.ch)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R515 -s@^referer(?=:[^\n]*[./](?:webhostingtalk\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R516 -s@^referer(?=:[^\n]*[./](?:webpronews\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R517 -s@^referer(?=:[^\n]*[./](?:wg-gesucht\.de)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R518 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R140 s@^referer(?=:[^\n]*[./](?:wgun\.net)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R519 -s@^referer(?=:[^\n]*[./](?:wigflip\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R52 -s@^referer(?=:[^\n]*[./](?:8888eee\.com|xav4\.com|xav5\.com|xav6\.com|xav7\.com|xav8\.com|xav9\.com|xiaav\.cc|xiaav\.me)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R520 -s@^referer(?=:[^\n]*[./](?:wiretarget\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R521 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R141 s@^referer(?=:[^\n]*[./](?:wishct\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R522 -s@^referer(?=:[^\n]*[./](?:wjunction\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R523 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R142 s@^referer(?=:[^\n]*[./](?:wowrk\.com|x-berry\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R524 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R143 s@^referer(?=:[^\n]*[./](?:www\.52hardware\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R525 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R144 s@^referer(?=:[^\n]*[./](?:www\.gamer\.com\.tw)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R526 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R145 s@^referer(?=:[^\n]*[./](?:www\.nmgnews\.com\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R527 -s@^referer(?=:[^\n]*[./](?:www\.pornhub\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R528 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R146 s@^referer(?=:[^\n]*[./](?:www\.tiexue\.net)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R529 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R147 s@^referer(?=:[^\n]*[./](?:www\.tsdm\.net)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R53 -s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R530 -s@^referer(?=:[^\n]*[./](?:xhamster\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R531 -s@^referer(?=:[^\n]*[./](?:xup\.in)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R532 -s@^referer(?=:[^\n]*[./](?:xvideos\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R533 -s@^referer(?=:[^\n]*[./](?:xxxbunker\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R535 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R148 s@^referer(?=:[^\n]*[./](?:yinyuetai\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R536 -s@^referer(?=:[^\n]*[./](?:yoloselfie\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R537 -s@^referer(?=:[^\n]*[./](?:youporn\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R538 -s@^referer(?=:[^\n]*[./](?:youporngay\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R54 -s@^referer(?=:[^\n]*[./](?:911-sss\.com|911semm\.com|911semm\.info|911seqq\.info|913sss\.com|kuaisou222\.com|ylgbt\.info|ylgxxbt\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R540 -s@^referer(?=:[^\n]*[./](?:youwatch\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R541 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R149 s@^referer(?=:[^\n]*[./](?:youxi\.baidu\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R542 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R15 +s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R150 s@^referer(?=:[^\n]*[./](?:yuyu780906\.blogspot\.com|yuyu780906\.blogspot\.hk|yuyu780906\.blogspot\.tw)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R543 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R151 s@^referer(?=:[^\n]*[./](?:zasv\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R544 -s@^referer(?=:[^\n]*[./](?:zattoo\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R545 -s@^referer(?=:[^\n]*[./](?:zerohedge\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R546 -s@^referer(?=:[^\n]*[./](?:zhaofuli\.club)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R547 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R152 s@^referer(?=:[^\n]*[./](?:zhongzi\.in)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R548 -s@^referer(?=:[^\n]*[./](?:zloy\.bz)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R16 +s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R549 -s@^referer(?=:[^\n]*[./](?:zoomby\.ru)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R17 +s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R55 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R18 +s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R19 +s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R2 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tb001\.xyz|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R20 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R21 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|pptiyu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R22 +s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R23 +s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R24 +s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R25 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R26 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R27 +s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R28 +s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|downhhh\.com|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R29 +s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R3 +s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R30 +s@^referer(?=:[^\n]*[./](?:5ydj\.com|99ee1\.com|99re5\.com|99rr6\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R31 +s@^referer(?=:[^\n]*[./](?:6668\.se)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R32 +s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R33 s@^referer(?=:[^\n]*[./](?:94as\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R550 -s@^referer(?=:[^\n]*[./](?:写械褌褋泻懈泄-屑懈褉\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R56 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R34 s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R57 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R35 +s@^referer(?=:[^\n]*[./](?:99ee1\.com|99re5\.com|99rr6\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R36 s@^referer(?=:[^\n]*[./](?:99files\.net)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R58 -s@^referer(?=:[^\n]*[./](?:99re\.co|99re\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R59 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R37 s@^referer(?=:[^\n]*[./](?:aadaili\.com|ppdaili\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R6 -s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R60 -s@^referer(?=:[^\n]*[./](?:aallenbwest\.com|activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R61 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R62 -s@^referer(?=:[^\n]*[./](?:abcnews\.go\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R63 -s@^referer(?=:[^\n]*[./](?:accesshollywood\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R64 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R38 s@^referer(?=:[^\n]*[./](?:acg18\.me)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R65 -s@^referer(?=:[^\n]*[./](?:activistpost\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R66 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|ailyheadlines\.net|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R67 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R68 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.com|hellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R69 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R7 -s@^referer(?=:[^\n]*[./](?:114la\.com|ylmf\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R70 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativeintel\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|enstarz\.com|hallels\.com|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|redmaryland\.com|shark-tank\.com|sportsmole\.co\.uk|stevedeace\.com|techtimes\.com|unilad\.co\.uk|weaponsmedia\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R71 -s@^referer(?=:[^\n]*[./](?:adf\.ly)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R72 -s@^referer(?=:[^\n]*[./](?:adf\.ly|j\.gs|q\.gs|u\.bb)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R73 -s@^referer(?=:[^\n]*[./](?:adf\.ly|u\.bb)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R74 -s@^referer(?=:[^\n]*[./](?:adjet\.biz)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R76 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv|moonwalk\.cc)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R77 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R39 s@^referer(?=:[^\n]*[./](?:ady8\.info|aikuhu\.com|cctv5bo\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R78 -s@^referer(?=:[^\n]*[./](?:affluentinvestor\.com|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|allthumbsgaming\.com|barbwire\.com|bighealthreport\.com|bulletsfirst\.net|cheatsheet\.com|clashdaily\.com|comicallyincorrect\.com|conservativebyte\.com|conservativevideos\.com|cowboybyte\.com|creationrevolution\.com|dailysurge\.com|dccrimestories\.com|drginaloudon\.com|drhotze\.com|eaglerising\.com|freedomoutpost\.com|godfatherpolitics\.com|instigatornews\.com|joeforamerica\.com|libertyalliance\.com|libertymafia\.com|libertyunyielding\.com|mediafire\.com|menrec\.com|nickadamsinamerica\.com|patriot\.tv|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|politicaloutcast\.com|primewire\.ag|promptfile\.com|quinhillyer\.com|shark-tank\.com|stevedeace\.com|themattwalshblog\.com|therealside\.com|tinypic\.com|victoriajackson\.com|zionica\.com)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R4 +s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R79 -s@^referer(?=:[^\n]*[./](?:agronews\.ru|agrotv\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R8 -s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R80 -s@^referer(?=:[^\n]*[./](?:aim\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R81 -s@^referer(?=:[^\n]*[./](?:akiba-online\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R82 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R40 s@^referer(?=:[^\n]*[./](?:allanalpass\.com|amy\.gs|any\.gs|cash4files\.com|deb\.gs|dyo\.gs|eafyfsuh\.net|filesonthe\.net|galleries\.bz|goneviral\.com|linkbucks\.com|megaline\.co|miniurls\.co|picbucks\.com|qqc\.co|rqq\.co|sasontnwc\.net|seriousdeals\.net|theseblogs\.com|tinylinks\.co|tnabucks\.com|tubeviral\.com|ultrafiles\.net|urlbeat\.net|whackyvidz\.com|yyv\.co|zff\.co)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R83 -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|embed\.videoweed\.es|extreme-board\.com|fastspics\.net|filepost\.com|filmovizija\.com|go4up\.com|imagebam\.com|imagefruit\.com|imageporter\.com|imgbox\.com|imgmade\.com|imgshots\.com|imgsin\.com|imgspice\.com|load\.to|mofunzone\.com|openload\.co|promptfile\.com|putlocker\.is|thevideo\.me|twer\.info|vidspot\.net|watchcartoononline\.com|xtshare\.com|youwatch\.org)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R84 -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|mediafire\.com|mooshare\.biz|muchshare\.net|royalvids\.eu|tvmuse\.com|tvmuse\.eu|vidspot\.net|vidtomp3\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R85 -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|mediafire\.com|mooshare\.biz|muchshare\.net|tvmuse\.com|tvmuse\.eu|vidspot\.net)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-R86 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R41 s@^referer(?=:[^\n]*[./](?:am5200\.com|baby360\.ru|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R87 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R42 s@^referer(?=:[^\n]*[./](?:am5200\.com|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R88 -s@^referer(?=:[^\n]*[./](?:amaderforum\.com)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R43 +s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R89 -s@^referer(?=:[^\n]*[./](?:amaderforum\.com|jumbofile\.net|videomega\.tv)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R44 +s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-R9 +CLIENT-HEADER-TAGGER: ab2p-block-elem-R45 +s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R46 +s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R47 +s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R48 +s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R49 +s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R5 +s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R50 +s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R51 +s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R52 +s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R53 +s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R54 +s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R55 +s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R56 +s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R57 +s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R58 +s@^referer(?=:[^\n]*[./](?:ccav1\.com|ypan\.cc)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R59 +s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R6 s@^referer(?=:[^\n]*[./](?:123du\.cc|bokon\.net)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R61 +s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R62 +s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R63 +s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R64 +s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R65 +s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R66 +s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R67 +s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R68 +s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R69 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R7 +s@^referer(?=:[^\n]*[./](?:12580sky\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R70 +s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R71 +s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R72 +s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R73 +s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R74 +s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R75 +s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R76 +s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R77 +s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R78 +s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R79 +s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R8 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R80 +s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R81 +s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R82 +s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R83 +s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R84 +s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R85 +s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R86 +s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R87 +s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R88 +s@^referer(?=:[^\n]*[./](?:hdscg\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R89 +s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R9 +s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-elem@Ti + CLIENT-HEADER-TAGGER: ab2p-block-elem-R90 -s@^referer(?=:[^\n]*[./](?:amovies\.tv|cybergame\.tv|dfiles\.ru|filmz\.ru)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R91 -s@^referer(?=:[^\n]*[./](?:amuzic\.ru|emuzic\.ru|pikabu\.ru)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R92 -s@^referer(?=:[^\n]*[./](?:animegalaxy\.net|animenova\.tv|animetoon\.tv|animewow\.eu|gogoanime\.com|goodanime\.eu|gooddrama\.net|toonget\.com)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R93 -s@^referer(?=:[^\n]*[./](?:anistar\.ru)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R94 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresplayer\.com|lasexta\.com)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R95 -s@^referer(?=:[^\n]*[./](?:antistarforce\.com|rustorka\.com|rustorka\.net)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R96 -s@^referer(?=:[^\n]*[./](?:aphorisme\.ru|kinopod\.ru|mp3ray\.ru|tusnya\.net)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R97 -s@^referer(?=:[^\n]*[./](?:api\.cybergame\.tv)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R98 -s@^referer(?=:[^\n]*[./](?:archerywire\.com)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-elem@Ti CLIENT-HEADER-TAGGER: ab2p-block-elem-R99 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|fonarevka\.ru|profit-maker\.org)):.*@ab2p-block-elem@Ti +s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn551 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn153 s@^referer(?!:[^\n]*[./](?:11185\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn552 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn154 s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn553 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn155 s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com|tmall\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn554 -s@^referer(?!:[^\n]*[./](?:ad-local\.de)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn555 -s@^referer(?!:[^\n]*[./](?:ad-tuning\.de)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn556 -s@^referer(?!:[^\n]*[./](?:adexprt\.com\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn557 -s@^referer(?!:[^\n]*[./](?:adfactory\.rocks)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn558 -s@^referer(?!:[^\n]*[./](?:adhost\.dk)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn559 -s@^referer(?!:[^\n]*[./](?:adiro\.se)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn560 -s@^referer(?!:[^\n]*[./](?:adlabs\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn561 -s@^referer(?!:[^\n]*[./](?:adline\.co\.il)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn562 -s@^referer(?!:[^\n]*[./](?:adlive\.de\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn563 -s@^referer(?!:[^\n]*[./](?:admax\.cn|admax\.co|admax\.eu|admax\.fi|admax\.info|admax\.net|admax\.nu|admax\.org|admax\.se|admax\.us)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn564 -s@^referer(?!:[^\n]*[./](?:adnetwork\.ie)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn565 -s@^referer(?!:[^\n]*[./](?:adnetwork\.ie|adnetwork\.sk)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn566 -s@^referer(?!:[^\n]*[./](?:adnext\.pl)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn567 -s@^referer(?!:[^\n]*[./](?:adphoto\.fr)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn568 -s@^referer(?!:[^\n]*[./](?:adresult\.ch)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn569 -s@^referer(?!:[^\n]*[./](?:ads4\.city)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn570 -s@^referer(?!:[^\n]*[./](?:adservice\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn571 -s@^referer(?!:[^\n]*[./](?:adsimilate\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn572 -s@^referer(?!:[^\n]*[./](?:adultfriendfinder\.co\.uk|adultfriendfinder\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn573 -s@^referer(?!:[^\n]*[./](?:adv\.ru|adv\.vg|advids\.co|farapp\.com|forex-tv-online\.com|typeform\.com|welaika\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn574 -s@^referer(?!:[^\n]*[./](?:advert\.ly)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn575 -s@^referer(?!:[^\n]*[./](?:advertise\.apartments\.com|advertise\.bingads\.microsoft\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn576 -s@^referer(?!:[^\n]*[./](?:advertiser\.growmobile\.com|panel\.rightflow\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn577 -s@^referer(?!:[^\n]*[./](?:adworks\.co\.il)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn578 -s@^referer(?!:[^\n]*[./](?:adx\.uk\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn579 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn156 s@^referer(?!:[^\n]*[./](?:alimama\.com|alitrip\.com|tanx\.com|tmall\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn580 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn157 s@^referer(?!:[^\n]*[./](?:alimama\.com|budou\.com|foctop\.com|hetongal\.ac\.cn|ith8\.com|meidebi\.com|qinqintejia\.com|tanx\.com|taobao\.com|taobao\.com\.cn|youhuiyouhui\.com\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn581 -s@^referer(?!:[^\n]*[./](?:annonse\.nu)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn582 -s@^referer(?!:[^\n]*[./](?:apps\.su\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn583 -s@^referer(?!:[^\n]*[./](?:asyncjs\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn584 -s@^referer(?!:[^\n]*[./](?:awempire\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn585 -s@^referer(?!:[^\n]*[./](?:bingads\.microsoft\.com|mobileapptracking\.com|trialpay\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn586 -s@^referer(?!:[^\n]*[./](?:blockadblock\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn587 -s@^referer(?!:[^\n]*[./](?:bpaww\.com\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn588 -s@^referer(?!:[^\n]*[./](?:bt\.kiev\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn589 -s@^referer(?!:[^\n]*[./](?:carnage\.ru|karnage\.ru|sesterce\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn590 -s@^referer(?!:[^\n]*[./](?:channel4\.com|mediaplex\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn591 -s@^referer(?!:[^\n]*[./](?:clickad\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn592 -s@^referer(?!:[^\n]*[./](?:complex\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn593 -s@^referer(?!:[^\n]*[./](?:debrideurstream\.fr)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn594 -s@^referer(?!:[^\n]*[./](?:discountmags\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn595 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn158 s@^referer(?!:[^\n]*[./](?:dmzj\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn596 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn159 s@^referer(?!:[^\n]*[./](?:duilian\.msra\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn597 -s@^referer(?!:[^\n]*[./](?:elb-kind\.de\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn598 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn160 s@^referer(?!:[^\n]*[./](?:eoffcn\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn599 -s@^referer(?!:[^\n]*[./](?:etology\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn600 -s@^referer(?!:[^\n]*[./](?:forum\.encyclopediadramatica\.es)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn601 -s@^referer(?!:[^\n]*[./](?:forum\.encyclopediadramatica\.se)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn602 -s@^referer(?!:[^\n]*[./](?:fotomag\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn603 -s@^referer(?!:[^\n]*[./](?:fuckbookhookups\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn604 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn161 s@^referer(?!:[^\n]*[./](?:fwxgx\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn605 -s@^referer(?!:[^\n]*[./](?:goods\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn606 -s@^referer(?!:[^\n]*[./](?:gowatchit\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn607 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn162 s@^referer(?!:[^\n]*[./](?:guagua\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn608 -s@^referer(?!:[^\n]*[./](?:hitex\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn609 -s@^referer(?!:[^\n]*[./](?:home\.tapjoy\.com|panel\.rightflow\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn610 -s@^referer(?!:[^\n]*[./](?:infowars\.com\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn611 -s@^referer(?!:[^\n]*[./](?:itsellservice\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn612 -s@^referer(?!:[^\n]*[./](?:itsmygame\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn613 -s@^referer(?!:[^\n]*[./](?:j\.gs|q\.gs)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn614 -s@^referer(?!:[^\n]*[./](?:jetswap\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn615 -s@^referer(?!:[^\n]*[./](?:job\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn616 -s@^referer(?!:[^\n]*[./](?:jobvite\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn617 -s@^referer(?!:[^\n]*[./](?:kinofilms\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn618 -s@^referer(?!:[^\n]*[./](?:km\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn619 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn163 s@^referer(?!:[^\n]*[./](?:lady\.weibo\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn620 -s@^referer(?!:[^\n]*[./](?:leads\.su)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn164 +s@^referer(?!:[^\n]*[./](?:lianmeng\.360\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn621 -s@^referer(?!:[^\n]*[./](?:liverail-mlgtv\.ip)):.*@ab2p-block-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn165 +s@^referer(?!:[^\n]*[./](?:m\.gamer\.com\.tw)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn622 -s@^referer(?!:[^\n]*[./](?:magnet\.kiev\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn623 -s@^referer(?!:[^\n]*[./](?:maltatoday\.mt\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn624 -s@^referer(?!:[^\n]*[./](?:mambo\.kiev\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn625 -s@^referer(?!:[^\n]*[./](?:marketgid\.com|marketgid\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn626 -s@^referer(?!:[^\n]*[./](?:marketgid\.com|marketgid\.ru|marketgid\.ua|mgid\.com|thechive\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn627 -s@^referer(?!:[^\n]*[./](?:mb-advertise\.gr)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn628 -s@^referer(?!:[^\n]*[./](?:mediaplex\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn629 -s@^referer(?!:[^\n]*[./](?:meganews\.kiev\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn630 -s@^referer(?!:[^\n]*[./](?:moi-progi\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn631 -s@^referer(?!:[^\n]*[./](?:msnbc\.msn\.com|www\.nbcnews\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn632 -s@^referer(?!:[^\n]*[./](?:my-dirty-hobby\.com|mydirtyhobby\.de)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn633 -s@^referer(?!:[^\n]*[./](?:my\.mail\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn634 -s@^referer(?!:[^\n]*[./](?:mydirtyhobby\.com|mydirtyhobby\.de)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn635 -s@^referer(?!:[^\n]*[./](?:ngohq\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn636 -s@^referer(?!:[^\n]*[./](?:novostimira\.com|novostimira\.com\.ua|novostimira\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn637 -s@^referer(?!:[^\n]*[./](?:nster\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn638 -s@^referer(?!:[^\n]*[./](?:outbrain\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn639 -s@^referer(?!:[^\n]*[./](?:outbrain\.com|seek\.co\.nz|seek\.com\.au)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn640 -s@^referer(?!:[^\n]*[./](?:ozon\.ru|ozonru\.co\.il|ozonru\.com|ozonru\.eu|ozonru\.kz)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn641 -s@^referer(?!:[^\n]*[./](?:p2p\.adserver\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn642 -s@^referer(?!:[^\n]*[./](?:panel\.rightflow\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn643 -s@^referer(?!:[^\n]*[./](?:ppc\.ee)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn644 -s@^referer(?!:[^\n]*[./](?:qs\.kiev\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn645 -s@^referer(?!:[^\n]*[./](?:redtram\.com|redtram\.fm)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn646 -s@^referer(?!:[^\n]*[./](?:rozetka\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn647 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn166 s@^referer(?!:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn648 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn167 s@^referer(?!:[^\n]*[./](?:sac\.net\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn649 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn168 s@^referer(?!:[^\n]*[./](?:savebar\.com\.tw)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn650 -s@^referer(?!:[^\n]*[./](?:sedoparking\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn651 -s@^referer(?!:[^\n]*[./](?:seo24\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn652 -s@^referer(?!:[^\n]*[./](?:sextalk\.com\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn653 -s@^referer(?!:[^\n]*[./](?:shatecraft\.com\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn654 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn169 s@^referer(?!:[^\n]*[./](?:sogou\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn655 -s@^referer(?!:[^\n]*[./](?:swedishbeauty\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn656 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn170 s@^referer(?!:[^\n]*[./](?:tech\.ifeng\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn657 -s@^referer(?!:[^\n]*[./](?:temple\.edu)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn658 -s@^referer(?!:[^\n]*[./](?:trueswords\.com\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn659 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn171 s@^referer(?!:[^\n]*[./](?:tw\.yahoo\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn660 -s@^referer(?!:[^\n]*[./](?:vereinslinie\.de)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn661 -s@^referer(?!:[^\n]*[./](?:viprelax\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn662 -s@^referer(?!:[^\n]*[./](?:vpets\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn663 -s@^referer(?!:[^\n]*[./](?:wau\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn664 -s@^referer(?!:[^\n]*[./](?:wave525\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn665 -s@^referer(?!:[^\n]*[./](?:worldofrest\.com\.ua)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn666 -s@^referer(?!:[^\n]*[./](?:worldoftanks\.ru)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn667 -s@^referer(?!:[^\n]*[./](?:worth1000\.com\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn668 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn172 s@^referer(?!:[^\n]*[./](?:www\.sina\.com\.cn)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn669 -s@^referer(?!:[^\n]*[./](?:xtendmedia\.dk)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn670 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn173 s@^referer(?!:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn671 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn174 s@^referer(?!:[^\n]*[./](?:ychr\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn672 +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn175 s@^referer(?!:[^\n]*[./](?:ylmf\.com)):.*@ab2p-block-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn673 -s@^referer(?!:[^\n]*[./](?:yobt\.com\.ip)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn674 -s@^referer(?!:[^\n]*[./](?:youtube\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn675 -s@^referer(?!:[^\n]*[./](?:zzima\.com)):.*@ab2p-block-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aacsv -s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/css)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aacsv-Cacsv-when-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-block-request-Aacsv-Cacsv@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaijsv -s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaiov -s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaiov-Caiov-when-R166 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-block-request-Aaiov-Caiov@Ti - CLIENT-HEADER-TAGGER: ab2p-block-request-Aaisv s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaisv-Caisv-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaisv-Caisv@i - CLIENT-HEADER-TAGGER: ab2p-block-request-Aajosv s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti @@ -4110,248 +1071,52 @@ s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascr CLIENT-HEADER-TAGGER: ab2p-block-request-Aaosv s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaosv-Caosv-when-R342 -s@^referer(?=:[^\n]*[./](?:molodejj\.tv|smotri\.com)):.*@ab2p-block-request-Aaosv-Caosv@Ti - CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R121 -s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R135 -s@^referer(?=:[^\n]*[./](?:carambatv\.ru|goodgame\.ru)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R138 -s@^referer(?=:[^\n]*[./](?:cbs\.com|cbsnews\.com|twitch\.tv)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R151 -s@^referer(?=:[^\n]*[./](?:cnn\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R165 -s@^referer(?=:[^\n]*[./](?:cybergame\.tv|smotri\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R177 -s@^referer(?=:[^\n]*[./](?:deluxemusic\.tv\.staging\.ipercast\.net)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R190 -s@^referer(?=:[^\n]*[./](?:echo\.msk\.ru)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R248 -s@^referer(?=:[^\n]*[./](?:go\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R287 -s@^referer(?=:[^\n]*[./](?:ivi\.ru)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R297 -s@^referer(?=:[^\n]*[./](?:kg-portal\.ru|tvc\.ru|tvzvezda\.ru|zoomby\.ru)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R302 -s@^referer(?=:[^\n]*[./](?:kinoprofi\.net)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R334 -s@^referer(?=:[^\n]*[./](?:megogo\.net)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R356 -s@^referer(?=:[^\n]*[./](?:ndtv\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R365 -s@^referer(?=:[^\n]*[./](?:nfl\.com|viki\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R385 -s@^referer(?=:[^\n]*[./](?:pladform\.ru|smotri\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R388 -s@^referer(?=:[^\n]*[./](?:player\.vgtrk\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R435 +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R129 s@^referer(?=:[^\n]*[./](?:skyerblog\.com)):.*@ab2p-block-request-Aaov-Caov@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R458 -s@^referer(?=:[^\n]*[./](?:tbs\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R486 -s@^referer(?=:[^\n]*[./](?:twitchfilm\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R488 -s@^referer(?=:[^\n]*[./](?:u\.tv)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R499 +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R137 s@^referer(?=:[^\n]*[./](?:v\.ku6\.com)):.*@ab2p-block-request-Aaov-Caov@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R503 -s@^referer(?=:[^\n]*[./](?:videochart\.net)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R510 -s@^referer(?=:[^\n]*[./](?:vube\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R549 -s@^referer(?=:[^\n]*[./](?:zoomby\.ru)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R61 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R62 -s@^referer(?=:[^\n]*[./](?:abcnews\.go\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R676t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:101cargames\.com|1025thebull\.com|1031iheartaustin\.com|1037theq\.com|1041beat\.com|1053kissfm\.com|1057ezrock\.com|1067litefm\.com|10news\.com|1310news\.com|247comedy\.com|3news\.co\.nz|49ers\.com|610cktb\.com|680news\.com|700wlw\.com|850koa\.com|923jackfm\.com|92q\.com|940winz\.com|94hjy\.com|99kisscountry\.com|abc15\.com|abc2news\.com|abcactionnews\.com|am1300thezone\.com|ap\.org|atlantafalcons\.com|automobilemag\.com|automotive\.com|azcardinals\.com|baltimoreravens\.com|baynews9\.com|bbc\.co\.uk|bbc\.com|belfasttelegraph\.co\.uk|bengals\.com|bet\.com|big1059\.com|bigdog1009\.ca|bloomberg\.com|bnn\.ca|boom92houston\.com|boom945\.com|boom973\.com|boom997\.com|boomphilly\.com|box10\.com|brisbanetimes\.com\.au|buccaneers\.com|buffalobills\.com|bullz-eye\.com|calgaryherald\.com|caller\.com|canada\.com|capitalfm\.ca|cbslocal\.com|cbsnews\.com|cbssports\.com|channel955\.com|chargers\.com|chez106\.com|chfi\.com|chicagobears\.com|chicagotribune\.com|cj104\.com|cjad\.com|cjbk\.com|clevelandbrowns\.com|cnet\.com|coast933\.com|colts\.com|commercialappeal\.com|country1011\.com|country1043\.com|country1067\.com|country600\.com|courierpress\.com|cp24\.com|cricketcountry\.com|csmonitor\.com|ctvnews\.ca|dallascowboys\.com|denverbroncos\.com|detroitlions\.com|drive\.com\.au|earthcam\.com|easyrecipesite\.com|edmontonjournal\.com|egirlgames\.net|elvisduran\.com|enjoydressup\.com|entrepreneur\.com|eonline\.com|escapegames\.com|euronews\.com|eveningecho\.ie|fm98wjlb\.com|foodnetwork\.ca|four\.co\.nz|foxradio\.ca|foxsportsradio\.com|gamingbolt\.com|ghananation\.com|giantbomb\.com|giants\.com|globalnews\.ca|globalpost\.com|globaltoronto\.com|globaltv\.com|globaltvbc\.com|globaltvcalgary\.com|go\.com|gorillanation\.com|gosanangelo\.com|hallelujah1051\.com|hellobeautiful\.com|heraldsun\.com\.au|hgtv\.ca|hiphopnc\.com|hot1041stl\.com|hotair\.com|hothiphopdetroit\.com|hotspotatl\.com|houstontexans\.com|ibtimes\.co\.uk|ign\.com|iheart\.com|independent\.ie|independentmail\.com|indyhiphop\.com|ipowerrichmond\.com|jackfm\.ca|jaguars\.com|jwplatform\.com|kase101\.com|kcchiefs\.com|kcci\.com|kcra\.com|kdvr\.com|kfiam640\.com|kgbx\.com|khow\.com|kiisfm\.com|kiss925\.com|kissnorthbay\.com|kisssoo\.com|kisstimmins\.com|kitsapsun\.com|kitv\.com|kjrh\.com|knoxnews\.com|kogo\.com|komonews\.com|kshb\.com|kwgn\.com|kxan\.com|kysdc\.com|latimes\.com|latinchat\.com|leaderpost\.com|livestream\.com|local8now\.com|magic96\.com|majorleaguegaming\.com|metacafe\.com|miamidolphins\.com|mix923fm\.com|moneycontrol\.com|montrealgazette\.com|motorcyclistonline\.com|moviemistakes\.com|mtv\.ca|myboom1029\.com|mycolumbuspower\.com|myezrock\.com|naplesnews\.com|nationalpost\.com|nba\.com|ndtv\.com|neworleanssaints\.com|news1130\.com|newsinc\.com|newsmax\.com|newsmaxhealth\.com|newsnet5\.com|newsone\.com|newstalk1010\.com|newstalk1130\.com|newyorkjets\.com|nydailynews\.com|nymag\.com|oldschoolcincy\.com|ottawacitizen\.com|packers\.com|panthers\.com|patriots\.com|pcworld\.com|philadelphiaeagles\.com|play\.it|player\.screenwavemedia\.com|prowrestling\.com|q92timmins\.com|raaga\.com|radio\.com|radionowindy\.com|raiders\.com|rapbasement\.com|redding\.com|redskins\.com|reporternews\.com|reuters\.com|rollingstone\.com|rootsports\.com|rottentomatoes\.com|seahawks\.com|sherdog\.com|skynews\.com\.au|slice\.ca|smh\.com\.au|sploder\.com|sportsnet590\.ca|sportsnet960\.ca|springboardplatform\.com|steelers\.com|stlouisrams\.com|streetfire\.net|stuff\.co\.nz|tcpalm\.com|telegraph\.co\.uk|theage\.com\.au|theaustralian\.com\.au|thebeatdfw\.com|theboxhouston\.com|thedenverchannel\.com|thedrocks\.com|theindychannel\.com|theprovince\.com|thestarphoenix\.com|tide\.com|timescolonist\.com|timeslive\.co\.za|timesrecordnews\.com|titansonline\.com|totaljerkface\.com|townhall\.com|tripadvisor\.ca|tripadvisor\.co\.uk|tripadvisor\.co\.za|tripadvisor\.com|tripadvisor\.com\.au|tripadvisor\.com\.my|tripadvisor\.com\.sg|tripadvisor\.ie|tripadvisor\.in|turnto23\.com|tvone\.tv|twitch\.tv|twitchy\.com|usmagazine\.com|vancouversun\.com|vcstar\.com|veetle\.com|vice\.com|videojug\.com|viki\.com|vikings\.com|virginradio\.ca|vzaar\.com|wapt\.com|washingtonpost\.com|washingtontimes\.com|wcpo\.com|wdfn\.com|weather\.com|wescfm\.com|wgci\.com|wibw\.com|wikihow\.com|windsorstar\.com|wiod\.com|wiznation\.com|wjdx\.com|wkyt\.com|wor710\.com|wptv\.com|wsj\.com|wxyz\.com|wyff4\.com|yahoo\.com|youtube\.com|z100\.com|zhiphopcleveland\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaov-Caov@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R677t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:autoexpress\.co\.uk|evo\.co\.uk|givemefootball\.com|mensfitness\.co\.uk|mpora\.com|tribalfootball\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaov-Caov@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R678t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:tv4play\.se))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaov-Caov@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R94 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresplayer\.com|lasexta\.com)):.*@ab2p-block-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-Rn679t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:msnbc\.msn\.com|www\.nbcnews\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaov-Caov@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaov-Caov@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaov-Caov@i +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R51 +s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-request-Aaov-Caov@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R120 -s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R132 -s@^referer(?=:[^\n]*[./](?:caclubindia\.com)):.*@ab2p-block-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R229 -s@^referer(?=:[^\n]*[./](?:free-torrent\.org|free-torrents\.org|game-torrent\.info)):.*@ab2p-block-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R26 -s@^referer(?=:[^\n]*[./](?:21forum\.ru|cheb\.ru|na-svyazi\.ru)):.*@ab2p-block-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R274 -s@^referer(?=:[^\n]*[./](?:hvosty\.ru|vsehvosty\.ru)):.*@ab2p-block-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-block-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R526 +CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R145 s@^referer(?=:[^\n]*[./](?:www\.nmgnews\.com\.cn)):.*@ab2p-block-request-Aasv-Casv@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R680t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:ints\.rusfolder\.com|ints\.rusfolder\.net|piccash\.net|pornolab\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aasv-Casv@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aasv-Casv@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ac -s@^accept(?=:[\s\w]*(?:\/css)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Acj -s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript|\/css)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R50 +s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-request-Aasv-Casv@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-Ai s@^accept(?=:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-Xx-when-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-block-request-Ai-Ci-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R124 -s@^referer(?=:[^\n]*[./](?:bossip\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R128 -s@^referer(?=:[^\n]*[./](?:brb\.to|cxz\.to|fs\.to)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R143 -s@^referer(?=:[^\n]*[./](?:channel4\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R150 -s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R158 -s@^referer(?=:[^\n]*[./](?:cracksfiles\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R167 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com|youtube\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R171 -s@^referer(?=:[^\n]*[./](?:datafilehost\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R196 -s@^referer(?=:[^\n]*[./](?:explosm\.net)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R240 -s@^referer(?=:[^\n]*[./](?:ganool\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R293 -s@^referer(?=:[^\n]*[./](?:joystiq\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R349 +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R114 s@^referer(?=:[^\n]*[./](?:my\.alipay\.com)):.*@ab2p-block-request-Ai-Ci@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R394 -s@^referer(?=:[^\n]*[./](?:pornolab\.net)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R396 -s@^referer(?=:[^\n]*[./](?:postgradproblems\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R456 -s@^referer(?=:[^\n]*[./](?:talksport\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R464 -s@^referer(?=:[^\n]*[./](?:thechive\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R487 +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R134 s@^referer(?=:[^\n]*[./](?:txzqw\.com)):.*@ab2p-block-request-Ai-Ci@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R493 -s@^referer(?=:[^\n]*[./](?:unknowncheats\.me)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R500 +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R138 s@^referer(?=:[^\n]*[./](?:v2ex\.com)):.*@ab2p-block-request-Ai-Ci@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R60 -s@^referer(?=:[^\n]*[./](?:aallenbwest\.com|activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R68 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.com|hellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R681t +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R176t s@^referer:.*@$&\t$host@Di s@^referer(?=:[^\n]*[./](?:99files\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Ai-Ci@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R682t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativeintel\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|enstarz\.com|hallels\.com|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|redmaryland\.com|shark-tank\.com|sportsmole\.co\.uk|stevedeace\.com|techtimes\.com|unilad\.co\.uk|weaponsmedia\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Ai-Ci@i +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R62 +s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-request-Ai-Ci@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R69 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|gossipgirl\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|realfarmacy\.com|redmaryland\.com|reverbpress\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-block-request-Ai-Ci@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rn165 +s@^referer(?!:[^\n]*[./](?:m\.gamer\.com\.tw)):.*@ab2p-block-request-Ai-Ci@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rn668 +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rn172 s@^referer(?!:[^\n]*[./](?:www\.sina\.com\.cn)):.*@ab2p-block-request-Ai-Ci@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Ai-Ci@i - CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rt s@^referer:.*@$&\t$host@Di s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Ai-Ci@i @@ -4359,439 +1124,64 @@ s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ CLIENT-HEADER-TAGGER: ab2p-block-request-Aij s@^accept(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aij-Cij-when-R683t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aij-Cij@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aij-Cij-when-Rn642 -s@^referer(?!:[^\n]*[./](?:panel\.rightflow\.com)):.*@ab2p-block-request-Aij-Cij@Ti - CLIENT-HEADER-TAGGER: ab2p-block-request-Aj s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-Xx-when-R241 -s@^referer(?=:[^\n]*[./](?:gaytube\.com|keezmovies\.com|spankwire\.com|tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-block-request-Aj-Cj-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-Xx-when-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-block-request-Aj-Cj-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R16 +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R14 s@^referer(?=:[^\n]*[./](?:189so\.cn)):.*@ab2p-block-request-Aj-Cj@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R185 -s@^referer(?=:[^\n]*[./](?:dsero\.com|ginormousbargains\.com|korean-candy\.com|misheel\.net|politicususa\.com|techydoor\.com|trutower\.com|unfair\.co)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R186 -s@^referer(?=:[^\n]*[./](?:dsero\.com|korean-candy\.com|misheel\.net|politicususa\.com|techydoor\.com|trutower\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R197 -s@^referer(?=:[^\n]*[./](?:extremetech\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R199 -s@^referer(?=:[^\n]*[./](?:eztv\.ag|firedrive\.com|limetorrents\.cc|monova\.org|sankakucomplex\.com|sockshare\.com|ukpirate\.org|unblocked\.la|userscloud\.com|yourbittorrent\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R219 -s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R229 -s@^referer(?=:[^\n]*[./](?:free-torrent\.org|free-torrents\.org|game-torrent\.info)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R266 -s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R28 -s@^referer(?=:[^\n]*[./](?:24warez\.ru|anideshka\.ru|anilost\.com|artero\.ru|babestar\.ru|best-xxx\.net|bestcamsxxx\.com|bestrepack\.net|bigtorrent\.org|bookitut\.ru|demotivators\.to|drochunov\.net|eroox\.ru|exoticvideo\.net|filmasik\.net|filmomax\.com|fotooplata\.ru|free-torrents\.org|freebie\.net\.ua|freepublish\.ru|gidporno\.com|girlstop\.info|guide-box\.ru|hentaiz\.org|huyandex\.com|i-pic\.ru|iarex\.ru|imgmoney\.ru|kino-zal\.kz|kinohost\.nov\.ru|kinoonlain\.org|kritka\.net|leporno\.org|leporno\.ws|mega-track\.org|mnogohlama\.ru|moresofta\.com|ontracker\.ru|palevo\.com|pic4you\.ru|pic5you\.ru|pics-money\.ru|politland\.ru|porn-news\.org|porno-gid\.info|porno-torrent\.biz|porno-torrents\.ru|pornoboss\.tv|pornoero\.com|pornogovno\.ru|pornomage\.net|pornorip\.biz|pornorun\.com|pornovizion\.com|prisnilos\.su|privsex\.ru|promotevid\.ru|raketa-tv\.com|rosporn\.com|ru-admin\.net|seasonvar\.ru|seti-ceti\.ru|sibiryak-soft\.org|suero\.tv|tedkino\.com|tyt-kinofilm\.ru|uploadimagex\.com|uptube\.su|uvideos\.ru|v-chulkahh\.ru|video-magnet\.com|vodkov\.net|vodvore\.net|vserisunki\.ru|vzale\.tv|wifilm\.ru|x-zona\.org|xxlbunny\.com|xxx-russian\.ru|xyu\.tv)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R304 -s@^referer(?=:[^\n]*[./](?:kinox\.to|movie4k\.to|thevideo\.me|unblocked\.la|vidup\.me)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R325 -s@^referer(?=:[^\n]*[./](?:mail\.ru)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R356 -s@^referer(?=:[^\n]*[./](?:ndtv\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R380 -s@^referer(?=:[^\n]*[./](?:phpbb3\.x-tk\.ru)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R384 -s@^referer(?=:[^\n]*[./](?:pirateproxy\.sx|thepiratebay\.am|thepiratebay\.gd|thepiratebay\.la|thepiratebay\.mn|thepiratebay\.vg)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R39 -s@^referer(?=:[^\n]*[./](?:3dnews\.ru)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R390 -s@^referer(?=:[^\n]*[./](?:politicususa\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R422 -s@^referer(?=:[^\n]*[./](?:search\.aol\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R441 -s@^referer(?=:[^\n]*[./](?:smi2\.ru)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R442 -s@^referer(?=:[^\n]*[./](?:sockshare\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R457 -s@^referer(?=:[^\n]*[./](?:tapochek\.net|unionpeer\.org)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R489 -s@^referer(?=:[^\n]*[./](?:ubuntugeek\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R506 -s@^referer(?=:[^\n]*[./](?:viralcraze\.net)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R513 -s@^referer(?=:[^\n]*[./](?:washingtontimes\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R517 -s@^referer(?=:[^\n]*[./](?:wg-gesucht\.de)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R527 -s@^referer(?=:[^\n]*[./](?:www\.pornhub\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R537 -s@^referer(?=:[^\n]*[./](?:youporn\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R538 -s@^referer(?=:[^\n]*[./](?:youporngay\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R56 -s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R684t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|ailyheadlines\.net|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R685t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R686t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:affluentinvestor\.com|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|allthumbsgaming\.com|barbwire\.com|bighealthreport\.com|bulletsfirst\.net|cheatsheet\.com|clashdaily\.com|comicallyincorrect\.com|conservativebyte\.com|conservativevideos\.com|cowboybyte\.com|creationrevolution\.com|dailysurge\.com|dccrimestories\.com|drginaloudon\.com|drhotze\.com|eaglerising\.com|freedomoutpost\.com|godfatherpolitics\.com|instigatornews\.com|joeforamerica\.com|libertyalliance\.com|libertymafia\.com|libertyunyielding\.com|mediafire\.com|menrec\.com|nickadamsinamerica\.com|patriot\.tv|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|politicaloutcast\.com|primewire\.ag|promptfile\.com|quinhillyer\.com|shark-tank\.com|stevedeace\.com|themattwalshblog\.com|therealside\.com|tinypic\.com|victoriajackson\.com|zionica\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R687t +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R177t s@^referer:.*@$&\t$host@Di s@^referer(?=:[^\n]*[./](?:ccav1\.com|ypan\.cc))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R688t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:exashare\.com|twer\.info|youwatch\.org))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R34 +s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-request-Aj-Cj@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R689t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:extremetech\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R78 +s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-request-Aj-Cj@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R690t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:filmovizija\.in))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R691t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:free-torrents\.org|hentaichan\.ru|nude-moon\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R692t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:have69\.net|i-gay\.org))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R693t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:linkshrink\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R694t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:patheos\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R695t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:photobucket\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R696t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:primewire\.ag|primewire\.in))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R697t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:promptfile\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R698t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:sporcle\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R84 -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|mediafire\.com|mooshare\.biz|muchshare\.net|royalvids\.eu|tvmuse\.com|tvmuse\.eu|vidspot\.net|vidtomp3\.com)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R85 -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|mediafire\.com|mooshare\.biz|muchshare\.net|tvmuse\.com|tvmuse\.eu|vidspot\.net)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R96 -s@^referer(?=:[^\n]*[./](?:aphorisme\.ru|kinopod\.ru|mp3ray\.ru|tusnya\.net)):.*@ab2p-block-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-Rn699t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:adultfriendfinder\.co\.uk|adultfriendfinder\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R90 +s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-request-Aj-Cj@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-Rt s@^referer:.*@$&\t$host@Di s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Anacov -s@^accept(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream|\/css)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anahmov -s@^accept(?!:[\s\w]*(?:\/html|\/xml|video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anahmov-Cnahmov-Xx-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anahmov-Cnahmov-Xx@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anaosv -s@^accept(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti - CLIENT-HEADER-TAGGER: ab2p-block-request-Anaov s@^accept(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Anc -s@^accept(?!:[\s\w]*(?:\/css)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anchm -s@^accept(?!:[\s\w]*(?:\/html|\/xml|\/css)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anchm-Cnchm-Xx-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anchm-Cnchm-Xx@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Ancj -s@^accept(?!:[\s\w]*(?:\/(?:x-)?javascript|\/css)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhim -s@^accept(?!:[\s\w]*(?:\/html|\/xml|image\/)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhim-Cnhim-Xx-when-Rn700t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:mediaplex\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhim-Cnhim-Xx@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhim-Cnhim-Xx-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhim-Cnhim-Xx@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhjm -s@^accept(?!:[\s\w]*(?:\/html|\/xml|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhjm-Cnhjm-Xx-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhjm-Cnhjm-Xx@i - CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm s@^accept(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R701t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:21forum\.ru|afisha21\.ru|cheb\.ru|cheb\.ws|cheboksary\.ws|kugesi\.ru|na-svyazi\.ru|zarulem\.ws))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R702t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:3news\.co\.nz|92q\.com|abc-7\.com|addictinggames\.com|allbusiness\.com|bizjournals\.com|bloomberg\.com|bnn\.ca|boom92houston\.com|boom945\.com|boomphilly\.com|break\.com|cbc\.ca|cbs19\.tv|cbs3springfield\.com|cbslocal\.com|complex\.com|dailymail\.co\.uk|darkhorizons\.com|doubleviking\.com|euronews\.com|extratv\.com|fandango\.com|fox19\.com|fox5vegas\.com|gorillanation\.com|hawaiinewsnow\.com|hellobeautiful\.com|hiphopnc\.com|hot1041stl\.com|hothiphopdetroit\.com|hotspotatl\.com|hulu\.com|imdb\.com|indiatimes\.com|indyhiphop\.com|ipowerrichmond\.com|joblo\.com|kcra\.com|kctv5\.com|ketv\.com|koat\.com|koco\.com|kolotv\.com|kpho\.com|kptv\.com|ksat\.com|ksbw\.com|ksfy\.com|ksl\.com|kypost\.com|kysdc\.com|live5news\.com|livestation\.com|livestream\.com|metro\.us|metronews\.ca|miamiherald\.com|my9nj\.com|myboom1029\.com|mycolumbuspower\.com|nbcrightnow\.com|neatorama\.com|necn\.com|neopets\.com|news\.com\.au|news4jax\.com|newsone\.com|nintendoeverything\.com|oldschoolcincy\.com|pagesuite-professional\.co\.uk|pandora\.com|play\.it|player\.theplatform\.com|radio\.com|radionowindy\.com|rottentomatoes\.com|sbsun\.com|shacknews\.com|sk-gaming\.com|ted\.com|thebeatdfw\.com|theboxhouston\.com|theglobeandmail\.com|timesnow\.tv|tv2\.no|twitch\.tv|ustream\.tv|wapt\.com|washingtonpost\.com|wate\.com|wbaltv\.com|wcvb\.com|wdrb\.com|wdsu\.com|wflx\.com|wfmz\.com|wfsb\.com|wgal\.com|whdh\.com|wired\.com|wisn\.com|wiznation\.com|wlky\.com|wlns\.com|wlwt\.com|wmur\.com|wnem\.com|wowt\.com|wral\.com|wsj\.com|wsmv\.com|wsvn\.com|wtae\.com|wthr\.com|wxii12\.com|wyff4\.com|yahoo\.com|youtube-nocookie\.com|youtube\.com|zhiphopcleveland\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R703t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:adultmult\.tv|moonwalk\.cc))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R704t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:adultmult\.tv))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R705t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:blizko\.ru))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R706t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:bostonmagazine\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R707t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:flysat\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R708t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:free-torrent\.org|free-torrents\.org|game-torrent\.info|jpgstore\.ru|pics2pay\.ru))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R709t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:fxempire\.com|fxempire\.de|fxempire\.it|fxempire\.nl))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R710t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:ganool\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R711t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:kissanime\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R712t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:linkbucks\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R713t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:netload\.in))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R714t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:sammyhub\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R715t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:stuff\.co\.nz))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R716t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:twitch\.tv))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R717t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:xhamster\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn718t +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn178t s@^referer:.*@$&\t$host@Di s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com|tmall\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn719t +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn179t s@^referer:.*@$&\t$host@Di s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn720t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:adexprt\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn721t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:adlive\.de\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn722t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:adsimilate\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn723t +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn180t s@^referer:.*@$&\t$host@Di s@^referer(?!:[^\n]*[./](?:alimama\.com|alitrip\.com|tanx\.com|tmall\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn724t +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn181t s@^referer:.*@$&\t$host@Di s@^referer(?!:[^\n]*[./](?:alimama\.com|budou\.com|foctop\.com|hetongal\.ac\.cn|ith8\.com|meidebi\.com|qinqintejia\.com|tanx\.com|taobao\.com|taobao\.com\.cn|youhuiyouhui\.com\.cn))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn725t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:apps\.su\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn726t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:awempire\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn727t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:bpaww\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn728t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:debrideurstream\.fr))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn729t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:discountmags\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn730t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:elb-kind\.de\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn731t +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn182t s@^referer:.*@$&\t$host@Di s@^referer(?!:[^\n]*[./](?:eoffcn\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn732t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:fuckbookhookups\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn733t +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn183t s@^referer:.*@$&\t$host@Di s@^referer(?!:[^\n]*[./](?:guagua\.cn))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn734t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:j\.gs|q\.gs))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn735t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:jobvite\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn736t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:km\.ru))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn737t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:liverail-mlgtv\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn738t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:maltatoday\.mt\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn739t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:marketgid\.com|marketgid\.com\.ua))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn740t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:marketgid\.com|marketgid\.ru|marketgid\.ua|mgid\.com|thechive\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn741t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:my-dirty-hobby\.com|mydirtyhobby\.de))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn742t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:nster\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn743t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:ozon\.ru|ozonru\.co\.il|ozonru\.com|ozonru\.eu|ozonru\.kz))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn744t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:p2p\.adserver\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn745t +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn184t s@^referer:.*@$&\t$host@Di s@^referer(?!:[^\n]*[./](?:savebar\.com\.tw))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn746t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:shatecraft\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn747t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:trueswords\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn748t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:vpets\.ru))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn749t -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:worth1000\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn750t +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn185t s@^referer:.*@$&\t$host@Di s@^referer(?!:[^\n]*[./](?:ylmf\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i @@ -4802,18 +1192,6 @@ s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ CLIENT-HEADER-TAGGER: ab2p-block-request-Ani s@^accept(?!:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Anj -s@^accept(?!:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Cacsv -s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/css)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Caijsv -s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Caiov -s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti - SERVER-HEADER-TAGGER: ab2p-block-request-Caisv s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti @@ -4832,12 +1210,6 @@ s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-requ SERVER-HEADER-TAGGER: ab2p-block-request-Casv s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti -SERVER-HEADER-TAGGER: ab2p-block-request-Cc -s@^content-type(?=:[\s\w]*(?:\/css)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Ccj -s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript|\/css)):.*@ab2p-block-request@Ti - SERVER-HEADER-TAGGER: ab2p-block-request-Ci s@^content-type(?=:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti @@ -4847,11122 +1219,1467 @@ s@^content-type(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-block-request SERVER-HEADER-TAGGER: ab2p-block-request-Cj s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti -SERVER-HEADER-TAGGER: ab2p-block-request-Cnacov -s@^content-type(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream|\/css)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Cnahmov -s@^content-type(?!:[\s\w]*(?:\/html|\/xml|video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Cnaosv -s@^content-type(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti - SERVER-HEADER-TAGGER: ab2p-block-request-Cnaov s@^content-type(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti -SERVER-HEADER-TAGGER: ab2p-block-request-Cnc -s@^content-type(?!:[\s\w]*(?:\/css)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Cnchm -s@^content-type(?!:[\s\w]*(?:\/html|\/xml|\/css)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Cncj -s@^content-type(?!:[\s\w]*(?:\/(?:x-)?javascript|\/css)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Cnhim -s@^content-type(?!:[\s\w]*(?:\/html|\/xml|image\/)):.*@ab2p-block-request@Ti - -SERVER-HEADER-TAGGER: ab2p-block-request-Cnhjm -s@^content-type(?!:[\s\w]*(?:\/html|\/xml|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti - SERVER-HEADER-TAGGER: ab2p-block-request-Cnhm s@^content-type(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-block-request@Ti SERVER-HEADER-TAGGER: ab2p-block-request-Cni s@^content-type(?!:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti -SERVER-HEADER-TAGGER: ab2p-block-request-Cnj -s@^content-type(?!:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti - CLIENT-HEADER-TAGGER: ab2p-block-request-R1 -s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|107\.150\.17\.66|20fuck\.com|20men\.com|22fuck\.com|23\.226\.134\.115|23\.226\.134\.116|23\.226\.138\.28|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-request@Ti +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tb001\.xyz|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-request@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-R10 -s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R100 -s@^referer(?=:[^\n]*[./](?:arstechnica\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R101 -s@^referer(?=:[^\n]*[./](?:askandyaboutclothes\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R102 -s@^referer(?=:[^\n]*[./](?:astalavista\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R103 -s@^referer(?=:[^\n]*[./](?:au\.tv\.yahoo\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R104 -s@^referer(?=:[^\n]*[./](?:audiforums\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R105 -s@^referer(?=:[^\n]*[./](?:augusta\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R108 -s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R11 -s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R110 -s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R111 -s@^referer(?=:[^\n]*[./](?:backupload\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R112 -s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R113 -s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R114 -s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R115 -s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R116 -s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R117 -s@^referer(?=:[^\n]*[./](?:best-bitcoin-faucet\.eu|best-free-faucet\.eu|bitcoin-best-faucet\.eu|bitcoin-cloud\.eu|bitcoin-faucet\.eu|bitcoin-free-faucet\.eu|free-bitcoin-faucet\.eu|get-bitcoins-free\.eu|get-free-bitcoin\.eu|win-free-bitcoins\.eu)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R118 -s@^referer(?=:[^\n]*[./](?:bestreams\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R119 -s@^referer(?=:[^\n]*[./](?:better-explorer\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R12 s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R122 -s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R126 -s@^referer(?=:[^\n]*[./](?:boxoffice\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R127 -s@^referer(?=:[^\n]*[./](?:boyfriendtv\.com|pornoxo\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R129 -s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R13 -s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R130 -s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R131 -s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R132 -s@^referer(?=:[^\n]*[./](?:caclubindia\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R133 -s@^referer(?=:[^\n]*[./](?:cao1024\.com|qiannao\.com|ref\.so)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R134 -s@^referer(?=:[^\n]*[./](?:capricornus\.cc|moonwalk\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R136 -s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R139 -s@^referer(?=:[^\n]*[./](?:cc\.com|mtv\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R14 -s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84zr\.com|99re\.city|99re\.co|99re\.net|99re\.org|99re6\.com|99re8\.com|99rehomes\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|cao1024\.com|caoliuzx\.com|cililian\.me|fdzone\.org|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|lululu\.club|lululu\.lu|ml\.gg|sbme\.me|taohuazu\.tw|ttdyy\.tv|xinqixi\.com|xxxbt\.com|zhiboche\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R140 -s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R144 -s@^referer(?=:[^\n]*[./](?:chem21\.info)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R145 -s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R146 -s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R147 -s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R148 -s@^referer(?=:[^\n]*[./](?:clipconverter\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R149 -s@^referer(?=:[^\n]*[./](?:cloudfront\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R15 -s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R152 -s@^referer(?=:[^\n]*[./](?:coedmagazine\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R153 -s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R154 -s@^referer(?=:[^\n]*[./](?:coolsport\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R155 -s@^referer(?=:[^\n]*[./](?:couchtuner\.eu|zzstream\.li)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R156 -s@^referer(?=:[^\n]*[./](?:cpahero\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R157 -s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R159 -s@^referer(?=:[^\n]*[./](?:crash\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R160 -s@^referer(?=:[^\n]*[./](?:crazys\.info|ucrazy\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R161 -s@^referer(?=:[^\n]*[./](?:crescent-news\.com|daily-jeff\.com|recordpub\.com|state-journal\.com|the-daily-record\.com|the-review\.com|times-gazette\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R162 -s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R163 -s@^referer(?=:[^\n]*[./](?:csnnw\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R164 -s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R168 -s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R169 -s@^referer(?=:[^\n]*[./](?:darkmoney\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R17 -s@^referer(?=:[^\n]*[./](?:18avday\.cc|18avday\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R170 -s@^referer(?=:[^\n]*[./](?:datacloud\.to)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R172 -s@^referer(?=:[^\n]*[./](?:dcrtv\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R173 -s@^referer(?=:[^\n]*[./](?:ddlvalley\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R174 -s@^referer(?=:[^\n]*[./](?:deadspin\.com|gawker\.com|gizmodo\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|lifehacker\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R175 -s@^referer(?=:[^\n]*[./](?:deccanchronicle\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R176 -s@^referer(?=:[^\n]*[./](?:deditv\.com|vidbox\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R178 -s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R179 -s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R18 -s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R180 -s@^referer(?=:[^\n]*[./](?:dl4all\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R181 -s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R182 -s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R183 -s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R184 -s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R186 -s@^referer(?=:[^\n]*[./](?:dsero\.com|korean-candy\.com|misheel\.net|politicususa\.com|techydoor\.com|trutower\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R187 -s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R188 -s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R189 -s@^referer(?=:[^\n]*[./](?:e\.mail\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R19 -s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R191 -s@^referer(?=:[^\n]*[./](?:edinstvennaya\.ua|gazeta\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R192 -s@^referer(?=:[^\n]*[./](?:enjore\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R193 -s@^referer(?=:[^\n]*[./](?:ewn\.co\.za)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R194 -s@^referer(?=:[^\n]*[./](?:exashare\.com|sex\.com|thepiratebay\.am|thepiratebay\.gd|thepiratebay\.la|thepiratebay\.mn|thepiratebay\.vg)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R197 -s@^referer(?=:[^\n]*[./](?:extremetech\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R198 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|youporn\.com|youporngay\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R2 -s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R20 -s@^referer(?=:[^\n]*[./](?:19rus\.info|1tvnet\.ru|arendator\.ru|biwork\.ru|bvedomosti\.ru|cars\.ru|csmania\.ru|fitsport\.ru|fuzz-magazine\.ru|gamegpu\.ru|hd-systems\.com\.ua|itexpert\.org\.ua|karelia\.ru|km\.ru|mebelminsk\.by|moscow-post\.com|nakanune\.ru|newizv\.ru|ngregion\.ru|poiskvps\.ru|pretenziy\.ru|rbc\.ru|ridna\.ua|rtr24\.ru|ruslife\.eu|sevastopol\.su|skoda-club\.org\.ua|starkosino\.ru|vjazhi\.ru|vp-news\.ru|vsatke\.ru|zrenue\.com|谐芯褉芯写-泻懈薪谐懈褋械锌锌\.褉褎)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R200 -s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R201 -s@^referer(?=:[^\n]*[./](?:f-picture\.net|filmasik\.net|radikal\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R202 -s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R203 -s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R204 -s@^referer(?=:[^\n]*[./](?:farmingshow\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R205 -s@^referer(?=:[^\n]*[./](?:farmingshow\.com|radiosport\.co\.nz)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R206 -s@^referer(?=:[^\n]*[./](?:farmonline\.com\.au)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R207 -s@^referer(?=:[^\n]*[./](?:fastvideo\.eu|rapidvideo\.org|sh\.st)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R208 -s@^referer(?=:[^\n]*[./](?:fayloobmennik\.net|lovekinozal\.ru|rusfolder\.com|rutor\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R209 -s@^referer(?=:[^\n]*[./](?:fiaformulae\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R21 -s@^referer(?=:[^\n]*[./](?:1fichier\.com|limetorrents\.cc|primewire\.ag|thepiratebay\.銇裤倱銇)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R210 -s@^referer(?=:[^\n]*[./](?:fiberupload\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R211 -s@^referer(?=:[^\n]*[./](?:fijivillage\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R212 -s@^referer(?=:[^\n]*[./](?:filatak\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R213 -s@^referer(?=:[^\n]*[./](?:fileforever\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R214 -s@^referer(?=:[^\n]*[./](?:fileplaneta\.com|freezpic\.ru|mediapapa\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R215 -s@^referer(?=:[^\n]*[./](?:fillinn\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R216 -s@^referer(?=:[^\n]*[./](?:filmovizija\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R218 -s@^referer(?=:[^\n]*[./](?:findagrave\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R22 -s@^referer(?=:[^\n]*[./](?:1kinobig\.ru|hdkinomax\.com|kino-dom\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R220 -s@^referer(?=:[^\n]*[./](?:firstrownow\.eu|kyivpost\.com|uatoday\.tv|unian\.info)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R221 -s@^referer(?=:[^\n]*[./](?:fishki\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R222 -s@^referer(?=:[^\n]*[./](?:flashx\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R223 -s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R225 -s@^referer(?=:[^\n]*[./](?:fontanka\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R226 -s@^referer(?=:[^\n]*[./](?:footballreview\.ru|innov\.ru|newkaliningrad\.ru|seonews\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R227 -s@^referer(?=:[^\n]*[./](?:foreverceleb\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R228 -s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R23 -s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R232 -s@^referer(?=:[^\n]*[./](?:freezpic\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R233 -s@^referer(?=:[^\n]*[./](?:freshrecords\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R236 -s@^referer(?=:[^\n]*[./](?:f谋rstrowsports\.eu)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R237 -s@^referer(?=:[^\n]*[./](?:gagadget\.com|maxpark\.com|vse-sto\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R238 -s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R239 -s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R24 -s@^referer(?=:[^\n]*[./](?:1tv\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R242 -s@^referer(?=:[^\n]*[./](?:gca\.sh)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R243 -s@^referer(?=:[^\n]*[./](?:gearshout\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R244 -s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R245 -s@^referer(?=:[^\n]*[./](?:gelbooru\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R246 -s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R247 -s@^referer(?=:[^\n]*[./](?:gigaom\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R250 -s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R251 -s@^referer(?=:[^\n]*[./](?:gramfeed\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R252 -s@^referer(?=:[^\n]*[./](?:gruntig\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R253 -s@^referer(?=:[^\n]*[./](?:gserp\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R254 -s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R255 -s@^referer(?=:[^\n]*[./](?:hanime\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R256 -s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R257 -s@^referer(?=:[^\n]*[./](?:hardforum\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R259 -s@^referer(?=:[^\n]*[./](?:hdclub\.org|tracker\.hdclub\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R26 -s@^referer(?=:[^\n]*[./](?:21forum\.ru|cheb\.ru|na-svyazi\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R260 -s@^referer(?=:[^\n]*[./](?:hdkinomax\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R261 -s@^referer(?=:[^\n]*[./](?:hdscg\.com|v8gay\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R262 -s@^referer(?=:[^\n]*[./](?:help2play\.com|otvetes\.com|vkonagt\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R263 -s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R264 -s@^referer(?=:[^\n]*[./](?:hentaiz\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R265 -s@^referer(?=:[^\n]*[./](?:hipfile\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R267 -s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R268 -s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R27 -s@^referer(?=:[^\n]*[./](?:240513\.com|ozdpt\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R271 -s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R272 -s@^referer(?=:[^\n]*[./](?:hulkload\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R275 -s@^referer(?=:[^\n]*[./](?:hw-lab\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R276 -s@^referer(?=:[^\n]*[./](?:i24news\.tv|newindianexpress\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R277 -s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R278 -s@^referer(?=:[^\n]*[./](?:ibnlive\.in\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R279 -s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R280 -s@^referer(?=:[^\n]*[./](?:imageban\.ru|tekst-pesni-tut\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R281 -s@^referer(?=:[^\n]*[./](?:inspirationfeed\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R283 -s@^referer(?=:[^\n]*[./](?:investing\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R284 -s@^referer(?=:[^\n]*[./](?:iplstream\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R285 -s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R286 -s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R288 +CLIENT-HEADER-TAGGER: ab2p-block-request-R100 s@^referer(?=:[^\n]*[./](?:iyejie\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R289 -s@^referer(?=:[^\n]*[./](?:izzs\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R29 -s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R290 -s@^referer(?=:[^\n]*[./](?:java-forums\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R292 -s@^referer(?=:[^\n]*[./](?:joyreactor\.cc|reactor\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R294 +CLIENT-HEADER-TAGGER: ab2p-block-request-R101 s@^referer(?=:[^\n]*[./](?:jpfans\.com|jpseek\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R295 -s@^referer(?=:[^\n]*[./](?:kartinka\.in)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R296 +CLIENT-HEADER-TAGGER: ab2p-block-request-R102 s@^referer(?=:[^\n]*[./](?:keywin\.org)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R298 -s@^referer(?=:[^\n]*[./](?:kingfiles\.net|uploadrocket\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R299 -s@^referer(?=:[^\n]*[./](?:kino-dom\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R3 -s@^referer(?=:[^\n]*[./](?:04stream\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R30 -s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R300 -s@^referer(?=:[^\n]*[./](?:kino-live\.org|riper\.am)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R301 -s@^referer(?=:[^\n]*[./](?:kinonews\.ru|lifenews\.ru|sport-express\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R303 -s@^referer(?=:[^\n]*[./](?:kinox\.to)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R305 -s@^referer(?=:[^\n]*[./](?:kirovnet\.ru|ui\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R307 -s@^referer(?=:[^\n]*[./](?:klex\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R308 -s@^referer(?=:[^\n]*[./](?:korrespondent\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R309 +CLIENT-HEADER-TAGGER: ab2p-block-request-R103 s@^referer(?=:[^\n]*[./](?:kxddd\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|ttft\.in|xhcbb\.com|yzhlive\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R310 +CLIENT-HEADER-TAGGER: ab2p-block-request-R104 s@^referer(?=:[^\n]*[./](?:lepan\.cc|sx566\.com|vvpan\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R311 -s@^referer(?=:[^\n]*[./](?:lexsteele\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R312 +CLIENT-HEADER-TAGGER: ab2p-block-request-R105 s@^referer(?=:[^\n]*[./](?:life\.com\.tw)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R313 +CLIENT-HEADER-TAGGER: ab2p-block-request-R106 s@^referer(?=:[^\n]*[./](?:lightnovel\.cn|xdjishu\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R314 -s@^referer(?=:[^\n]*[./](?:lindaikeji\.blogspot\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R317 +CLIENT-HEADER-TAGGER: ab2p-block-request-R107 s@^referer(?=:[^\n]*[./](?:live\.jstv\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R318 +CLIENT-HEADER-TAGGER: ab2p-block-request-R108 s@^referer(?=:[^\n]*[./](?:live8bo\.com|live8bo\.net|live8bo1\.com|zqzq\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R319 -s@^referer(?=:[^\n]*[./](?:lossless-galaxy\.ru)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R109 +s@^referer(?=:[^\n]*[./](?:ltwbook\.com|ltxsw\.com|ltxszw\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R320 -s@^referer(?=:[^\n]*[./](?:lt57\.com|ltwbook\.com|ltxsw\.com)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R11 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R321 -s@^referer(?=:[^\n]*[./](?:lululu8\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R322 -s@^referer(?=:[^\n]*[./](?:luxtorrents\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R323 +CLIENT-HEADER-TAGGER: ab2p-block-request-R110 s@^referer(?=:[^\n]*[./](?:lxty66\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R324 +CLIENT-HEADER-TAGGER: ab2p-block-request-R111 s@^referer(?=:[^\n]*[./](?:mail\.pchome\.com\.tw)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R325 -s@^referer(?=:[^\n]*[./](?:mail\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R326 -s@^referer(?=:[^\n]*[./](?:mail\.yahoo\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R327 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R328 -s@^referer(?=:[^\n]*[./](?:mamba\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R329 -s@^referer(?=:[^\n]*[./](?:mangafox\.me)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R33 -s@^referer(?=:[^\n]*[./](?:2drive\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R331 -s@^referer(?=:[^\n]*[./](?:mega-pics-money\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R332 -s@^referer(?=:[^\n]*[./](?:megaimg\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R333 -s@^referer(?=:[^\n]*[./](?:megaresheba\.ru|muzofon\.com|teledidar\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R334 -s@^referer(?=:[^\n]*[./](?:megogo\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R335 -s@^referer(?=:[^\n]*[./](?:memoryholeblog\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R336 -s@^referer(?=:[^\n]*[./](?:mhktricks\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R337 -s@^referer(?=:[^\n]*[./](?:miliblog\.co\.uk)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R338 -s@^referer(?=:[^\n]*[./](?:mirror\.co\.uk)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R339 +CLIENT-HEADER-TAGGER: ab2p-block-request-R112 s@^referer(?=:[^\n]*[./](?:mitbbs\.ca|mitbbs\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R34 -s@^referer(?=:[^\n]*[./](?:2mm\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R340 +CLIENT-HEADER-TAGGER: ab2p-block-request-R113 s@^referer(?=:[^\n]*[./](?:mmload\.info)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R341 -s@^referer(?=:[^\n]*[./](?:modovideo\.com|mooshare\.biz)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R343 -s@^referer(?=:[^\n]*[./](?:moonwalk\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R344 -s@^referer(?=:[^\n]*[./](?:moskva\.fm|piter\.fm)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R345 -s@^referer(?=:[^\n]*[./](?:motherjones\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R346 -s@^referer(?=:[^\n]*[./](?:moviefone\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R347 -s@^referer(?=:[^\n]*[./](?:multiupfile\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R348 -s@^referer(?=:[^\n]*[./](?:my-hit\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R35 -s@^referer(?=:[^\n]*[./](?:300mblink\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R350 -s@^referer(?=:[^\n]*[./](?:my\.rsscache\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R351 +CLIENT-HEADER-TAGGER: ab2p-block-request-R115 s@^referer(?=:[^\n]*[./](?:myqcloud\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R352 -s@^referer(?=:[^\n]*[./](?:namba\.kg)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R353 -s@^referer(?=:[^\n]*[./](?:namba\.kg|namba\.tj)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R354 -s@^referer(?=:[^\n]*[./](?:namba\.tj)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R355 -s@^referer(?=:[^\n]*[./](?:ncrypt\.in)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R357 -s@^referer(?=:[^\n]*[./](?:netload\.in)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R358 -s@^referer(?=:[^\n]*[./](?:newgrounds\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R359 -s@^referer(?=:[^\n]*[./](?:newrbk\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R36 -s@^referer(?=:[^\n]*[./](?:360-bo\.com|54xr\.com|pptiyu\.com|xrba\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R360 -s@^referer(?=:[^\n]*[./](?:news-headlines\.co\.za)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R361 +CLIENT-HEADER-TAGGER: ab2p-block-request-R116 s@^referer(?=:[^\n]*[./](?:news\.china\.com\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R362 +CLIENT-HEADER-TAGGER: ab2p-block-request-R117 s@^referer(?=:[^\n]*[./](?:news\.cn|xinhuanet\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R363 -s@^referer(?=:[^\n]*[./](?:news\.com\.au)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R364 -s@^referer(?=:[^\n]*[./](?:newsok\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R366 -s@^referer(?=:[^\n]*[./](?:nikolaev-city\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R367 -s@^referer(?=:[^\n]*[./](?:nnm\.me|serialu\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R368 -s@^referer(?=:[^\n]*[./](?:oboom\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R369 +CLIENT-HEADER-TAGGER: ab2p-block-request-R118 s@^referer(?=:[^\n]*[./](?:ocucn\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R37 -s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R370 -s@^referer(?=:[^\n]*[./](?:offers\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R371 -s@^referer(?=:[^\n]*[./](?:onhax\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R372 -s@^referer(?=:[^\n]*[./](?:ontracker\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R373 -s@^referer(?=:[^\n]*[./](?:optimized-by\.rubiconproject\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R374 -s@^referer(?=:[^\n]*[./](?:pachanyc\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R376 -s@^referer(?=:[^\n]*[./](?:pavelkesh\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R377 +CLIENT-HEADER-TAGGER: ab2p-block-request-R119 s@^referer(?=:[^\n]*[./](?:pbzy\.com|shanzhaiben\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R378 -s@^referer(?=:[^\n]*[./](?:pcgamesn\.com)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R12 +s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84fn\.com|99ee1\.com|99re5\.com|99rr6\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|caoliuzx\.com|cililian\.me|fdzone\.org|izzs\.cc|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|sbme\.me|taohuazu\.tw|thzhd\.net|ttdyy\.tv|xinqixi\.com|xxxbt\.com|youb444\.com|zhiboche\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R38 -s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R380 -s@^referer(?=:[^\n]*[./](?:phpbb3\.x-tk\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R381 -s@^referer(?=:[^\n]*[./](?:pic2profit\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R382 -s@^referer(?=:[^\n]*[./](?:picforall\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R383 -s@^referer(?=:[^\n]*[./](?:pikabu\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R386 -s@^referer(?=:[^\n]*[./](?:planetaua\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R387 -s@^referer(?=:[^\n]*[./](?:player\.theplatform\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R389 -s@^referer(?=:[^\n]*[./](?:politicalears\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R391 -s@^referer(?=:[^\n]*[./](?:popbytes\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R392 -s@^referer(?=:[^\n]*[./](?:pornhub\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R395 +CLIENT-HEADER-TAGGER: ab2p-block-request-R120 s@^referer(?=:[^\n]*[./](?:pos\.baidu\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R397 -s@^referer(?=:[^\n]*[./](?:pr-cy\.ru)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R121 +s@^referer(?=:[^\n]*[./](?:qiannao\.com|ref\.so)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R398 -s@^referer(?=:[^\n]*[./](?:pregen\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R399 -s@^referer(?=:[^\n]*[./](?:primejailbait\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R4 -s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R401 -s@^referer(?=:[^\n]*[./](?:promodj\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R403 -s@^referer(?=:[^\n]*[./](?:putlocker\.is)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R404 +CLIENT-HEADER-TAGGER: ab2p-block-request-R122 s@^referer(?=:[^\n]*[./](?:qire213\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R405 +CLIENT-HEADER-TAGGER: ab2p-block-request-R123 s@^referer(?=:[^\n]*[./](?:qzntv\.com|qzwb\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R406 -s@^referer(?=:[^\n]*[./](?:rarbg\.to|rarbg\.unblocked\.la|rarbgmirror\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R407 -s@^referer(?=:[^\n]*[./](?:ratedporntube\.com|sextuberate\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R408 -s@^referer(?=:[^\n]*[./](?:rbth\.co\.uk|rbth\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R409 -s@^referer(?=:[^\n]*[./](?:rdio\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R41 -s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R410 -s@^referer(?=:[^\n]*[./](?:readersdigest\.co\.uk)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R411 -s@^referer(?=:[^\n]*[./](?:redtube\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R412 +CLIENT-HEADER-TAGGER: ab2p-block-request-R124 s@^referer(?=:[^\n]*[./](?:ref\.so)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R413 -s@^referer(?=:[^\n]*[./](?:restoclub\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R414 -s@^referer(?=:[^\n]*[./](?:reuters\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R415 -s@^referer(?=:[^\n]*[./](?:rootden\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R416 -s@^referer(?=:[^\n]*[./](?:rprradio\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R417 -s@^referer(?=:[^\n]*[./](?:rusfolder\.com|rusfolder\.net|rutube\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R42 -s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R420 +CLIENT-HEADER-TAGGER: ab2p-block-request-R125 s@^referer(?=:[^\n]*[./](?:scol\.com\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R421 -s@^referer(?=:[^\n]*[./](?:screenlist\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R423 -s@^referer(?=:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R424 -s@^referer(?=:[^\n]*[./](?:seasonvar\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R425 -s@^referer(?=:[^\n]*[./](?:secureupload\.eu)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R426 -s@^referer(?=:[^\n]*[./](?:sendspace\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R427 +CLIENT-HEADER-TAGGER: ab2p-block-request-R126 s@^referer(?=:[^\n]*[./](?:sex169\.info|sex169\.org)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R428 +CLIENT-HEADER-TAGGER: ab2p-block-request-R127 s@^referer(?=:[^\n]*[./](?:share\.popgo\.org)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R429 -s@^referer(?=:[^\n]*[./](?:shared\.sx)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R43 -s@^referer(?=:[^\n]*[./](?:4fuckr\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R430 -s@^referer(?=:[^\n]*[./](?:sharpfile\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R431 -s@^referer(?=:[^\n]*[./](?:showbiz411\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R432 +CLIENT-HEADER-TAGGER: ab2p-block-request-R128 s@^referer(?=:[^\n]*[./](?:shuajizhijia\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R433 -s@^referer(?=:[^\n]*[./](?:siliconrus\.com|tjournal\.ru)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R13 +s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R434 -s@^referer(?=:[^\n]*[./](?:simophone\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R436 -s@^referer(?=:[^\n]*[./](?:skysports\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R437 -s@^referer(?=:[^\n]*[./](?:slader\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R438 -s@^referer(?=:[^\n]*[./](?:smallseotools\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R439 -s@^referer(?=:[^\n]*[./](?:smartertravel\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R44 -s@^referer(?=:[^\n]*[./](?:4put\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R440 -s@^referer(?=:[^\n]*[./](?:smexo\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R443 -s@^referer(?=:[^\n]*[./](?:softpedia\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R444 -s@^referer(?=:[^\n]*[./](?:songs\.pk|songspk\.name)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R445 -s@^referer(?=:[^\n]*[./](?:songza\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R446 -s@^referer(?=:[^\n]*[./](?:souqiu8\.com|zhaofuli\.club)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R448 -s@^referer(?=:[^\n]*[./](?:spike\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R449 -s@^referer(?=:[^\n]*[./](?:sporcle\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R45 -s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R450 -s@^referer(?=:[^\n]*[./](?:stocporn\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R451 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R452 +CLIENT-HEADER-TAGGER: ab2p-block-request-R130 s@^referer(?=:[^\n]*[./](?:strtv\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R453 -s@^referer(?=:[^\n]*[./](?:stuff\.co\.nz)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R454 +CLIENT-HEADER-TAGGER: ab2p-block-request-R131 s@^referer(?=:[^\n]*[./](?:sun0769\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R459 -s@^referer(?=:[^\n]*[./](?:tdarkangel\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R46 -s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R460 -s@^referer(?=:[^\n]*[./](?:technewstoday\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R461 -s@^referer(?=:[^\n]*[./](?:techpowerup\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R462 -s@^referer(?=:[^\n]*[./](?:teledidar\.tv)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R463 -s@^referer(?=:[^\n]*[./](?:televisaofutebol\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R465 -s@^referer(?=:[^\n]*[./](?:thegrio\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R466 -s@^referer(?=:[^\n]*[./](?:thepiratebay\.si)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R467 -s@^referer(?=:[^\n]*[./](?:thisav\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R468 -s@^referer(?=:[^\n]*[./](?:thisdaylive\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R469 -s@^referer(?=:[^\n]*[./](?:thisiswhyimbroke\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R47 -s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R470 +CLIENT-HEADER-TAGGER: ab2p-block-request-R132 s@^referer(?=:[^\n]*[./](?:tiexue\.net)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R471 -s@^referer(?=:[^\n]*[./](?:timeout\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R473 -s@^referer(?=:[^\n]*[./](?:tmz\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R474 -s@^referer(?=:[^\n]*[./](?:tokyo-tosho\.net|tokyotosho\.info|tokyotosho\.se)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R475 -s@^referer(?=:[^\n]*[./](?:torlock\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R476 -s@^referer(?=:[^\n]*[./](?:torrent-finder\.info)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R477 -s@^referer(?=:[^\n]*[./](?:torrent-pirat\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R479 +CLIENT-HEADER-TAGGER: ab2p-block-request-R133 s@^referer(?=:[^\n]*[./](?:ttmeiju\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R481 -s@^referer(?=:[^\n]*[./](?:turbobit\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R482 -s@^referer(?=:[^\n]*[./](?:tusfiles\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R484 -s@^referer(?=:[^\n]*[./](?:tvcatchup\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R49 -s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R490 +CLIENT-HEADER-TAGGER: ab2p-block-request-R135 s@^referer(?=:[^\n]*[./](?:uisdc\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R491 -s@^referer(?=:[^\n]*[./](?:ultimate-guitar\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R492 -s@^referer(?=:[^\n]*[./](?:unionpeer\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R493 -s@^referer(?=:[^\n]*[./](?:unknowncheats\.me)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R494 +CLIENT-HEADER-TAGGER: ab2p-block-request-R136 s@^referer(?=:[^\n]*[./](?:uopera\.net)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R495 -s@^referer(?=:[^\n]*[./](?:up09\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R496 -s@^referer(?=:[^\n]*[./](?:uploadbaz\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R497 -s@^referer(?=:[^\n]*[./](?:uploadcore\.com|urgrove\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R498 -s@^referer(?=:[^\n]*[./](?:uploadlw\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R50 -s@^referer(?=:[^\n]*[./](?:5ydj\.com|99re\.city|99re\.net|99re6\.com|99re8\.com|99rehomes\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R500 +CLIENT-HEADER-TAGGER: ab2p-block-request-R138 s@^referer(?=:[^\n]*[./](?:v2ex\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R501 -s@^referer(?=:[^\n]*[./](?:veehd\.com)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R139 +s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com|xm9x\.net)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R502 -s@^referer(?=:[^\n]*[./](?:via-midgard\.info|via-midgard1\.info)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R505 -s@^referer(?=:[^\n]*[./](?:viewcube\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R507 -s@^referer(?=:[^\n]*[./](?:vivo\.sx)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R508 -s@^referer(?=:[^\n]*[./](?:vk-saver\.in\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R509 -s@^referer(?=:[^\n]*[./](?:vk\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R51 -s@^referer(?=:[^\n]*[./](?:7daysindubai\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R512 -s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R514 -s@^referer(?=:[^\n]*[./](?:watchfreemovies\.ch)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R515 -s@^referer(?=:[^\n]*[./](?:webhostingtalk\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R516 -s@^referer(?=:[^\n]*[./](?:webpronews\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R518 +CLIENT-HEADER-TAGGER: ab2p-block-request-R140 s@^referer(?=:[^\n]*[./](?:wgun\.net)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R519 -s@^referer(?=:[^\n]*[./](?:wigflip\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R52 -s@^referer(?=:[^\n]*[./](?:8888eee\.com|xav4\.com|xav5\.com|xav6\.com|xav7\.com|xav8\.com|xav9\.com|xiaav\.cc|xiaav\.me)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R520 -s@^referer(?=:[^\n]*[./](?:wiretarget\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R521 +CLIENT-HEADER-TAGGER: ab2p-block-request-R141 s@^referer(?=:[^\n]*[./](?:wishct\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R522 -s@^referer(?=:[^\n]*[./](?:wjunction\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R523 +CLIENT-HEADER-TAGGER: ab2p-block-request-R142 s@^referer(?=:[^\n]*[./](?:wowrk\.com|x-berry\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R524 +CLIENT-HEADER-TAGGER: ab2p-block-request-R143 s@^referer(?=:[^\n]*[./](?:www\.52hardware\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R525 +CLIENT-HEADER-TAGGER: ab2p-block-request-R144 s@^referer(?=:[^\n]*[./](?:www\.gamer\.com\.tw)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R528 +CLIENT-HEADER-TAGGER: ab2p-block-request-R146 s@^referer(?=:[^\n]*[./](?:www\.tiexue\.net)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R529 +CLIENT-HEADER-TAGGER: ab2p-block-request-R147 s@^referer(?=:[^\n]*[./](?:www\.tsdm\.net)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R53 -s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R531 -s@^referer(?=:[^\n]*[./](?:xup\.in)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R532 -s@^referer(?=:[^\n]*[./](?:xvideos\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R533 -s@^referer(?=:[^\n]*[./](?:xxxbunker\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R535 +CLIENT-HEADER-TAGGER: ab2p-block-request-R148 s@^referer(?=:[^\n]*[./](?:yinyuetai\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R536 -s@^referer(?=:[^\n]*[./](?:yoloselfie\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R537 -s@^referer(?=:[^\n]*[./](?:youporn\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R54 -s@^referer(?=:[^\n]*[./](?:911-sss\.com|911semm\.com|911semm\.info|911seqq\.info|913sss\.com|kuaisou222\.com|ylgbt\.info|ylgxxbt\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R540 -s@^referer(?=:[^\n]*[./](?:youwatch\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R541 +CLIENT-HEADER-TAGGER: ab2p-block-request-R149 s@^referer(?=:[^\n]*[./](?:youxi\.baidu\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R542 +CLIENT-HEADER-TAGGER: ab2p-block-request-R15 +s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R150 s@^referer(?=:[^\n]*[./](?:yuyu780906\.blogspot\.com|yuyu780906\.blogspot\.hk|yuyu780906\.blogspot\.tw)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R543 +CLIENT-HEADER-TAGGER: ab2p-block-request-R151 s@^referer(?=:[^\n]*[./](?:zasv\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R544 -s@^referer(?=:[^\n]*[./](?:zattoo\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R545 -s@^referer(?=:[^\n]*[./](?:zerohedge\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R546 -s@^referer(?=:[^\n]*[./](?:zhaofuli\.club)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R547 +CLIENT-HEADER-TAGGER: ab2p-block-request-R152 s@^referer(?=:[^\n]*[./](?:zhongzi\.in)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R548 -s@^referer(?=:[^\n]*[./](?:zloy\.bz)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R16 +s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R55 +CLIENT-HEADER-TAGGER: ab2p-block-request-R17 +s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R18 +s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R186t +s@^referer:.*@$&\t$host@Di +s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|downhhh\.com|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-R19 +s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R2 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tb001\.xyz|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R20 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R21 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|pptiyu\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R22 +s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R23 +s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R24 +s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R25 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R26 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R27 +s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R29 +s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R3 +s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R30 +s@^referer(?=:[^\n]*[./](?:5ydj\.com|99ee1\.com|99re5\.com|99rr6\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R31 +s@^referer(?=:[^\n]*[./](?:6668\.se)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R32 +s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R33 s@^referer(?=:[^\n]*[./](?:94as\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R550 -s@^referer(?=:[^\n]*[./](?:写械褌褋泻懈泄-屑懈褉\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R56 +CLIENT-HEADER-TAGGER: ab2p-block-request-R34 s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R58 -s@^referer(?=:[^\n]*[./](?:99re\.co|99re\.org)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R35 +s@^referer(?=:[^\n]*[./](?:99ee1\.com|99re5\.com|99rr6\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R59 +CLIENT-HEADER-TAGGER: ab2p-block-request-R37 s@^referer(?=:[^\n]*[./](?:aadaili\.com|ppdaili\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R6 -s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R63 -s@^referer(?=:[^\n]*[./](?:accesshollywood\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R64 +CLIENT-HEADER-TAGGER: ab2p-block-request-R38 s@^referer(?=:[^\n]*[./](?:acg18\.me)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R65 -s@^referer(?=:[^\n]*[./](?:activistpost\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R7 -s@^referer(?=:[^\n]*[./](?:114la\.com|ylmf\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R72 -s@^referer(?=:[^\n]*[./](?:adf\.ly|j\.gs|q\.gs|u\.bb)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R73 -s@^referer(?=:[^\n]*[./](?:adf\.ly|u\.bb)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R74 -s@^referer(?=:[^\n]*[./](?:adjet\.biz)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R751t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-R752t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|embed\.videoweed\.es|extreme-board\.com|fastspics\.net|filepost\.com|filmovizija\.com|go4up\.com|imagebam\.com|imagefruit\.com|imageporter\.com|imgbox\.com|imgmade\.com|imgshots\.com|imgsin\.com|imgspice\.com|load\.to|mofunzone\.com|openload\.co|promptfile\.com|putlocker\.is|thevideo\.me|twer\.info|vidspot\.net|watchcartoononline\.com|xtshare\.com|youwatch\.org))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-R753t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:animegalaxy\.net|animenova\.tv|animetoon\.tv|animewow\.eu|gogoanime\.com|goodanime\.eu|gooddrama\.net|toonget\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-R754t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:extremetube\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|youporn\.com|youporngay\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-R755t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:masalaboard\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-R76 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv|moonwalk\.cc)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R77 +CLIENT-HEADER-TAGGER: ab2p-block-request-R39 s@^referer(?=:[^\n]*[./](?:ady8\.info|aikuhu\.com|cctv5bo\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R79 -s@^referer(?=:[^\n]*[./](?:agronews\.ru|agrotv\.ru)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R4 +s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R8 -s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R80 -s@^referer(?=:[^\n]*[./](?:aim\.org)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R81 -s@^referer(?=:[^\n]*[./](?:akiba-online\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-R82 +CLIENT-HEADER-TAGGER: ab2p-block-request-R40 s@^referer(?=:[^\n]*[./](?:allanalpass\.com|amy\.gs|any\.gs|cash4files\.com|deb\.gs|dyo\.gs|eafyfsuh\.net|filesonthe\.net|galleries\.bz|goneviral\.com|linkbucks\.com|megaline\.co|miniurls\.co|picbucks\.com|qqc\.co|rqq\.co|sasontnwc\.net|seriousdeals\.net|theseblogs\.com|tinylinks\.co|tnabucks\.com|tubeviral\.com|ultrafiles\.net|urlbeat\.net|whackyvidz\.com|yyv\.co|zff\.co)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R86 +CLIENT-HEADER-TAGGER: ab2p-block-request-R41 s@^referer(?=:[^\n]*[./](?:am5200\.com|baby360\.ru|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R87 +CLIENT-HEADER-TAGGER: ab2p-block-request-R42 s@^referer(?=:[^\n]*[./](?:am5200\.com|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R43 +s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R44 +s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R45 +s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R46 +s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R47 +s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R48 +s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R49 +s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R5 +s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R52 +s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R53 +s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R54 +s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R55 +s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R56 +s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R57 +s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R59 +s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R61 +s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R63 +s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R64 +s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R65 +s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R66 +s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R67 +s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R68 +s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R69 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R7 +s@^referer(?=:[^\n]*[./](?:12580sky\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R70 +s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R71 +s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R72 +s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R73 +s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R74 +s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R75 +s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R76 +s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R77 +s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R79 +s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R8 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R80 +s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R81 +s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R82 +s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R83 +s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R84 +s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R85 +s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R86 +s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R87 +s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-request@Ti + CLIENT-HEADER-TAGGER: ab2p-block-request-R88 -s@^referer(?=:[^\n]*[./](?:amaderforum\.com)):.*@ab2p-block-request@Ti +s@^referer(?=:[^\n]*[./](?:hdscg\.com)):.*@ab2p-block-request@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-R89 -s@^referer(?=:[^\n]*[./](?:amaderforum\.com|jumbofile\.net|videomega\.tv)):.*@ab2p-block-request@Ti +s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R90 -s@^referer(?=:[^\n]*[./](?:amovies\.tv|cybergame\.tv|dfiles\.ru|filmz\.ru)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R9 +s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-request@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-R91 -s@^referer(?=:[^\n]*[./](?:amuzic\.ru|emuzic\.ru|pikabu\.ru)):.*@ab2p-block-request@Ti +s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-R93 -s@^referer(?=:[^\n]*[./](?:anistar\.ru)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-R92 +s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-request@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-R95 -s@^referer(?=:[^\n]*[./](?:antistarforce\.com|rustorka\.com|rustorka\.net)):.*@ab2p-block-request@Ti +s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R96 +s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-request@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-R97 -s@^referer(?=:[^\n]*[./](?:api\.cybergame\.tv)):.*@ab2p-block-request@Ti +s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-request@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-R98 -s@^referer(?=:[^\n]*[./](?:archerywire\.com)):.*@ab2p-block-request@Ti +s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-request@Ti CLIENT-HEADER-TAGGER: ab2p-block-request-R99 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|fonarevka\.ru|profit-maker\.org)):.*@ab2p-block-request@Ti +s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn551 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn153 s@^referer(?!:[^\n]*[./](?:11185\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn554 -s@^referer(?!:[^\n]*[./](?:ad-local\.de)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn555 -s@^referer(?!:[^\n]*[./](?:ad-tuning\.de)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn557 -s@^referer(?!:[^\n]*[./](?:adfactory\.rocks)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn558 -s@^referer(?!:[^\n]*[./](?:adhost\.dk)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn559 -s@^referer(?!:[^\n]*[./](?:adiro\.se)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn560 -s@^referer(?!:[^\n]*[./](?:adlabs\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn561 -s@^referer(?!:[^\n]*[./](?:adline\.co\.il)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn563 -s@^referer(?!:[^\n]*[./](?:admax\.cn|admax\.co|admax\.eu|admax\.fi|admax\.info|admax\.net|admax\.nu|admax\.org|admax\.se|admax\.us)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn564 -s@^referer(?!:[^\n]*[./](?:adnetwork\.ie)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn565 -s@^referer(?!:[^\n]*[./](?:adnetwork\.ie|adnetwork\.sk)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn566 -s@^referer(?!:[^\n]*[./](?:adnext\.pl)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn567 -s@^referer(?!:[^\n]*[./](?:adphoto\.fr)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn568 -s@^referer(?!:[^\n]*[./](?:adresult\.ch)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn569 -s@^referer(?!:[^\n]*[./](?:ads4\.city)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn570 -s@^referer(?!:[^\n]*[./](?:adservice\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn573 -s@^referer(?!:[^\n]*[./](?:adv\.ru|adv\.vg|advids\.co|farapp\.com|forex-tv-online\.com|typeform\.com|welaika\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn574 -s@^referer(?!:[^\n]*[./](?:advert\.ly)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn575 -s@^referer(?!:[^\n]*[./](?:advertise\.apartments\.com|advertise\.bingads\.microsoft\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn576 -s@^referer(?!:[^\n]*[./](?:advertiser\.growmobile\.com|panel\.rightflow\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn577 -s@^referer(?!:[^\n]*[./](?:adworks\.co\.il)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn578 -s@^referer(?!:[^\n]*[./](?:adx\.uk\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn581 -s@^referer(?!:[^\n]*[./](?:annonse\.nu)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn583 -s@^referer(?!:[^\n]*[./](?:asyncjs\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn585 -s@^referer(?!:[^\n]*[./](?:bingads\.microsoft\.com|mobileapptracking\.com|trialpay\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn586 -s@^referer(?!:[^\n]*[./](?:blockadblock\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn588 -s@^referer(?!:[^\n]*[./](?:bt\.kiev\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn589 -s@^referer(?!:[^\n]*[./](?:carnage\.ru|karnage\.ru|sesterce\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn591 -s@^referer(?!:[^\n]*[./](?:clickad\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn592 -s@^referer(?!:[^\n]*[./](?:complex\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn596 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn159 s@^referer(?!:[^\n]*[./](?:duilian\.msra\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn599 -s@^referer(?!:[^\n]*[./](?:etology\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn600 -s@^referer(?!:[^\n]*[./](?:forum\.encyclopediadramatica\.es)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn601 -s@^referer(?!:[^\n]*[./](?:forum\.encyclopediadramatica\.se)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn602 -s@^referer(?!:[^\n]*[./](?:fotomag\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn604 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn161 s@^referer(?!:[^\n]*[./](?:fwxgx\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn605 -s@^referer(?!:[^\n]*[./](?:goods\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn606 -s@^referer(?!:[^\n]*[./](?:gowatchit\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn608 -s@^referer(?!:[^\n]*[./](?:hitex\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn609 -s@^referer(?!:[^\n]*[./](?:home\.tapjoy\.com|panel\.rightflow\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn610 -s@^referer(?!:[^\n]*[./](?:infowars\.com\.ip)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn611 -s@^referer(?!:[^\n]*[./](?:itsellservice\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn612 -s@^referer(?!:[^\n]*[./](?:itsmygame\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn614 -s@^referer(?!:[^\n]*[./](?:jetswap\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn615 -s@^referer(?!:[^\n]*[./](?:job\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn617 -s@^referer(?!:[^\n]*[./](?:kinofilms\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn619 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn163 s@^referer(?!:[^\n]*[./](?:lady\.weibo\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn620 -s@^referer(?!:[^\n]*[./](?:leads\.su)):.*@ab2p-block-request@Ti +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn164 +s@^referer(?!:[^\n]*[./](?:lianmeng\.360\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn622 -s@^referer(?!:[^\n]*[./](?:magnet\.kiev\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn624 -s@^referer(?!:[^\n]*[./](?:mambo\.kiev\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn627 -s@^referer(?!:[^\n]*[./](?:mb-advertise\.gr)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn629 -s@^referer(?!:[^\n]*[./](?:meganews\.kiev\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn630 -s@^referer(?!:[^\n]*[./](?:moi-progi\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn633 -s@^referer(?!:[^\n]*[./](?:my\.mail\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn634 -s@^referer(?!:[^\n]*[./](?:mydirtyhobby\.com|mydirtyhobby\.de)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn635 -s@^referer(?!:[^\n]*[./](?:ngohq\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn636 -s@^referer(?!:[^\n]*[./](?:novostimira\.com|novostimira\.com\.ua|novostimira\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn638 -s@^referer(?!:[^\n]*[./](?:outbrain\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn639 -s@^referer(?!:[^\n]*[./](?:outbrain\.com|seek\.co\.nz|seek\.com\.au)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn641 -s@^referer(?!:[^\n]*[./](?:p2p\.adserver\.ip)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn642 -s@^referer(?!:[^\n]*[./](?:panel\.rightflow\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn643 -s@^referer(?!:[^\n]*[./](?:ppc\.ee)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn644 -s@^referer(?!:[^\n]*[./](?:qs\.kiev\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn645 -s@^referer(?!:[^\n]*[./](?:redtram\.com|redtram\.fm)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn646 -s@^referer(?!:[^\n]*[./](?:rozetka\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn647 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn166 s@^referer(?!:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn648 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn167 s@^referer(?!:[^\n]*[./](?:sac\.net\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn650 -s@^referer(?!:[^\n]*[./](?:sedoparking\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn651 -s@^referer(?!:[^\n]*[./](?:seo24\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn652 -s@^referer(?!:[^\n]*[./](?:sextalk\.com\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn654 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn169 s@^referer(?!:[^\n]*[./](?:sogou\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn655 -s@^referer(?!:[^\n]*[./](?:swedishbeauty\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn656 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn170 s@^referer(?!:[^\n]*[./](?:tech\.ifeng\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn659 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn171 s@^referer(?!:[^\n]*[./](?:tw\.yahoo\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn660 -s@^referer(?!:[^\n]*[./](?:vereinslinie\.de)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn661 -s@^referer(?!:[^\n]*[./](?:viprelax\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn663 -s@^referer(?!:[^\n]*[./](?:wau\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn664 -s@^referer(?!:[^\n]*[./](?:wave525\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn665 -s@^referer(?!:[^\n]*[./](?:worldofrest\.com\.ua)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn666 -s@^referer(?!:[^\n]*[./](?:worldoftanks\.ru)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn668 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn172 s@^referer(?!:[^\n]*[./](?:www\.sina\.com\.cn)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn669 -s@^referer(?!:[^\n]*[./](?:xtendmedia\.dk)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn670 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn173 s@^referer(?!:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn671 +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn174 s@^referer(?!:[^\n]*[./](?:ychr\.com)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn673 -s@^referer(?!:[^\n]*[./](?:yobt\.com\.ip)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn674 -s@^referer(?!:[^\n]*[./](?:youtube\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn675 -s@^referer(?!:[^\n]*[./](?:zzima\.com)):.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn756nt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:channel4\.com|mediaplex\.com))(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rn757nt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:[^\n]*[./](?:mediaplex\.com))(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i - CLIENT-HEADER-TAGGER: ab2p-block-request-Rt s@^referer:.*@$&\t$host@Di s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i -CLIENT-HEADER-TAGGER: ab2p-block-request-Xnx -s@^x-requested-with(?!:\s*(?:xmlhttprequest)):.*@ab2p-block-request@Ti -s@^x-requested-with:.*@-ab2p-block-request-nX@Ti - CLIENT-HEADER-TAGGER: ab2p-block-request-Xx s@^x-requested-with(?=:\s*(?:xmlhttprequest)):.*@ab2p-block-request@Ti -CLIENT-HEADER-TAGGER: ab2p-block-request-Xx-when-R291 -s@^referer(?=:[^\n]*[./](?:joker\.ykt\.ru)):.*@ab2p-block-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Xx-when-R480 -s@^referer(?=:[^\n]*[./](?:tube8\.com)):.*@ab2p-block-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-Xx-when-R698t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:sporcle\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Xx@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-Xx-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Xx@i - -CLIENT-HEADER-TAGGER: ab2p-block-request-nX -s@^.*@ab2p-block-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-request-nX-Xnx-when-Rn657 -s@^referer(?!:[^\n]*[./](?:temple\.edu)):.*@ab2p-block-request-nX-Xnx@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R107 -s@^referer(?=:[^\n]*[./](?:avaxhm\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R109 -s@^referer(?=:[^\n]*[./](?:backin\.net|uploadlw\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R142 -s@^referer(?=:[^\n]*[./](?:censor\.net\.ua)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R202 -s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R219 -s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R234 -s@^referer(?=:[^\n]*[./](?:frombar\.com|gledaisport\.com|smotrisport\.com|sportcategory\.com|sportlemon\.org|sportlemon\.tv)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R239 -s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R249 -s@^referer(?=:[^\n]*[./](?:goodgame\.ru)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R266 -s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R269 -s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk|wwledsbb\.net)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R270 -s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R273 -s@^referer(?=:[^\n]*[./](?:hulkshare\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R28 -s@^referer(?=:[^\n]*[./](?:24warez\.ru|anideshka\.ru|anilost\.com|artero\.ru|babestar\.ru|best-xxx\.net|bestcamsxxx\.com|bestrepack\.net|bigtorrent\.org|bookitut\.ru|demotivators\.to|drochunov\.net|eroox\.ru|exoticvideo\.net|filmasik\.net|filmomax\.com|fotooplata\.ru|free-torrents\.org|freebie\.net\.ua|freepublish\.ru|gidporno\.com|girlstop\.info|guide-box\.ru|hentaiz\.org|huyandex\.com|i-pic\.ru|iarex\.ru|imgmoney\.ru|kino-zal\.kz|kinohost\.nov\.ru|kinoonlain\.org|kritka\.net|leporno\.org|leporno\.ws|mega-track\.org|mnogohlama\.ru|moresofta\.com|ontracker\.ru|palevo\.com|pic4you\.ru|pic5you\.ru|pics-money\.ru|politland\.ru|porn-news\.org|porno-gid\.info|porno-torrent\.biz|porno-torrents\.ru|pornoboss\.tv|pornoero\.com|pornogovno\.ru|pornomage\.net|pornorip\.biz|pornorun\.com|pornovizion\.com|prisnilos\.su|privsex\.ru|promotevid\.ru|raketa-tv\.com|rosporn\.com|ru-admin\.net|seasonvar\.ru|seti-ceti\.ru|sibiryak-soft\.org|suero\.tv|tedkino\.com|tyt-kinofilm\.ru|uploadimagex\.com|uptube\.su|uvideos\.ru|v-chulkahh\.ru|video-magnet\.com|vodkov\.net|vodvore\.net|vserisunki\.ru|vzale\.tv|wifilm\.ru|x-zona\.org|xxlbunny\.com|xxx-russian\.ru|xyu\.tv)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R342 -s@^referer(?=:[^\n]*[./](?:molodejj\.tv|smotri\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R453 -s@^referer(?=:[^\n]*[./](?:stuff\.co\.nz)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R455 -s@^referer(?=:[^\n]*[./](?:sunporno\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R472 -s@^referer(?=:[^\n]*[./](?:tinypaste\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R478 -s@^referer(?=:[^\n]*[./](?:torrentszona\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R504 -s@^referer(?=:[^\n]*[./](?:vidspot\.net)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R511 -s@^referer(?=:[^\n]*[./](?:vz\.ru)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R538 -s@^referer(?=:[^\n]*[./](?:youporngay\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R680t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:ints\.rusfolder\.com|ints\.rusfolder\.net|piccash\.net|pornolab\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R693t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:linkshrink\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R71 -s@^referer(?=:[^\n]*[./](?:adf\.ly)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R758t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:2ad\.in|ad2links\.com|adf\.ly|adfoc\.us|adv\.li|adyou\.me|allmyvideos\.net|ay\.gy|fuestfka\.com|imgmega\.com|j\.gs|linkbucksmedia\.com|mortastica\.com|prodsetter-in\.com|q\.gs|sh\.st|shr77\.com|sonomerit\.com|ssovgoxbvppy\.net|thevideo\.me|twer\.info|u\.bb|vidspot\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R759t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:2ad\.in|adf\.ly|adfoc\.us|adjet\.biz|adv\.li|ay\.gy|j\.gs|linkbucksmedia\.com|q\.gs|sh\.st|tvbximak\.com|u\.bb))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R760nt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:adf\.ly))(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-R9 +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R6 s@^referer(?=:[^\n]*[./](?:123du\.cc|bokon\.net)):.*@ab2p-block-xframe@Ti -CLIENT-HEADER-TAGGER: ab2p-block-xframe-Rn595 +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R78 +s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R82 +s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R90 +s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R93 +s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R94 +s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-Rn158 s@^referer(?!:[^\n]*[./](?:dmzj\.com)):.*@ab2p-block-xframe@Ti -CLIENT-HEADER-TAGGER: ab2p-block-xframe-Rn642 -s@^referer(?!:[^\n]*[./](?:panel\.rightflow\.com)):.*@ab2p-block-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xframe-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i - CLIENT-HEADER-TAGGER: ab2p-block-xframe-Rt s@^referer:.*@$&\t$host@Di s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-Anhm -s@^accept(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-Anhm-Cnhm-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup-Anhm-Cnhm@i - -SERVER-HEADER-TAGGER: ab2p-block-xpopup-Cnhm -s@^content-type(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R111 -s@^referer(?=:[^\n]*[./](?:backupload\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R118 -s@^referer(?=:[^\n]*[./](?:bestreams\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R129 -s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R170 -s@^referer(?=:[^\n]*[./](?:datacloud\.to)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R176 -s@^referer(?=:[^\n]*[./](?:deditv\.com|vidbox\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R184 -s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R191 -s@^referer(?=:[^\n]*[./](?:edinstvennaya\.ua|gazeta\.ua)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R194 -s@^referer(?=:[^\n]*[./](?:exashare\.com|sex\.com|thepiratebay\.am|thepiratebay\.gd|thepiratebay\.la|thepiratebay\.mn|thepiratebay\.vg)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R198 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|youporn\.com|youporngay\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R207 -s@^referer(?=:[^\n]*[./](?:fastvideo\.eu|rapidvideo\.org|sh\.st)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R208 -s@^referer(?=:[^\n]*[./](?:fayloobmennik\.net|lovekinozal\.ru|rusfolder\.com|rutor\.org)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R210 -s@^referer(?=:[^\n]*[./](?:fiberupload\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R212 -s@^referer(?=:[^\n]*[./](?:filatak\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R215 -s@^referer(?=:[^\n]*[./](?:fillinn\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R216 -s@^referer(?=:[^\n]*[./](?:filmovizija\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R221 -s@^referer(?=:[^\n]*[./](?:fishki\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R222 -s@^referer(?=:[^\n]*[./](?:flashx\.tv)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R232 -s@^referer(?=:[^\n]*[./](?:freezpic\.ru)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R236 -s@^referer(?=:[^\n]*[./](?:f谋rstrowsports\.eu)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R263 -s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R265 -s@^referer(?=:[^\n]*[./](?:hipfile\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R272 -s@^referer(?=:[^\n]*[./](?:hulkload\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R285 -s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R295 -s@^referer(?=:[^\n]*[./](?:kartinka\.in)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R298 -s@^referer(?=:[^\n]*[./](?:kingfiles\.net|uploadrocket\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R311 -s@^referer(?=:[^\n]*[./](?:lexsteele\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R319 -s@^referer(?=:[^\n]*[./](?:lossless-galaxy\.ru)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R322 -s@^referer(?=:[^\n]*[./](?:luxtorrents\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R326 -s@^referer(?=:[^\n]*[./](?:mail\.yahoo\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R33 -s@^referer(?=:[^\n]*[./](?:2drive\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R343 -s@^referer(?=:[^\n]*[./](?:moonwalk\.cc)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R347 -s@^referer(?=:[^\n]*[./](?:multiupfile\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R35 -s@^referer(?=:[^\n]*[./](?:300mblink\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R352 -s@^referer(?=:[^\n]*[./](?:namba\.kg)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R354 -s@^referer(?=:[^\n]*[./](?:namba\.tj)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R355 -s@^referer(?=:[^\n]*[./](?:ncrypt\.in)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R357 -s@^referer(?=:[^\n]*[./](?:netload\.in)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R367 -s@^referer(?=:[^\n]*[./](?:nnm\.me|serialu\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R381 -s@^referer(?=:[^\n]*[./](?:pic2profit\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R383 -s@^referer(?=:[^\n]*[./](?:pikabu\.ru)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R398 -s@^referer(?=:[^\n]*[./](?:pregen\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R403 -s@^referer(?=:[^\n]*[./](?:putlocker\.is)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R407 -s@^referer(?=:[^\n]*[./](?:ratedporntube\.com|sextuberate\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R411 -s@^referer(?=:[^\n]*[./](?:redtube\.cc)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R423 -s@^referer(?=:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R425 -s@^referer(?=:[^\n]*[./](?:secureupload\.eu)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R426 -s@^referer(?=:[^\n]*[./](?:sendspace\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R43 -s@^referer(?=:[^\n]*[./](?:4fuckr\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R430 -s@^referer(?=:[^\n]*[./](?:sharpfile\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R434 -s@^referer(?=:[^\n]*[./](?:simophone\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R459 -s@^referer(?=:[^\n]*[./](?:tdarkangel\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R467 -s@^referer(?=:[^\n]*[./](?:thisav\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R476 -s@^referer(?=:[^\n]*[./](?:torrent-finder\.info)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R477 -s@^referer(?=:[^\n]*[./](?:torrent-pirat\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R481 -s@^referer(?=:[^\n]*[./](?:turbobit\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R482 -s@^referer(?=:[^\n]*[./](?:tusfiles\.net)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R495 -s@^referer(?=:[^\n]*[./](?:up09\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R497 -s@^referer(?=:[^\n]*[./](?:uploadcore\.com|urgrove\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R501 -s@^referer(?=:[^\n]*[./](?:veehd\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R505 -s@^referer(?=:[^\n]*[./](?:viewcube\.org)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R507 -s@^referer(?=:[^\n]*[./](?:vivo\.sx)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R514 -s@^referer(?=:[^\n]*[./](?:watchfreemovies\.ch)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R529 +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R147 s@^referer(?=:[^\n]*[./](?:www\.tsdm\.net)):.*@ab2p-block-xpopup@Ti -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R532 -s@^referer(?=:[^\n]*[./](?:xvideos\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R547 +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R152 s@^referer(?=:[^\n]*[./](?:zhongzi\.in)):.*@ab2p-block-xpopup@Ti -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R59 +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R186t +s@^referer:.*@$&\t$host@Di +s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|downhhh\.com|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R37 s@^referer(?=:[^\n]*[./](?:aadaili\.com|ppdaili\.com)):.*@ab2p-block-xpopup@Ti -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R74 -s@^referer(?=:[^\n]*[./](?:adjet\.biz)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R751t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R752t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:allmyvideos\.net|embed\.videoweed\.es|extreme-board\.com|fastspics\.net|filepost\.com|filmovizija\.com|go4up\.com|imagebam\.com|imagefruit\.com|imageporter\.com|imgbox\.com|imgmade\.com|imgshots\.com|imgsin\.com|imgspice\.com|load\.to|mofunzone\.com|openload\.co|promptfile\.com|putlocker\.is|thevideo\.me|twer\.info|vidspot\.net|watchcartoononline\.com|xtshare\.com|youwatch\.org))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R753t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:animegalaxy\.net|animenova\.tv|animetoon\.tv|animewow\.eu|gogoanime\.com|goodanime\.eu|gooddrama\.net|toonget\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R754t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:extremetube\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|youporn\.com|youporngay\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R755t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:masalaboard\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R82 +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R40 s@^referer(?=:[^\n]*[./](?:allanalpass\.com|amy\.gs|any\.gs|cash4files\.com|deb\.gs|dyo\.gs|eafyfsuh\.net|filesonthe\.net|galleries\.bz|goneviral\.com|linkbucks\.com|megaline\.co|miniurls\.co|picbucks\.com|qqc\.co|rqq\.co|sasontnwc\.net|seriousdeals\.net|theseblogs\.com|tinylinks\.co|tnabucks\.com|tubeviral\.com|ultrafiles\.net|urlbeat\.net|whackyvidz\.com|yyv\.co|zff\.co)):.*@ab2p-block-xpopup@Ti -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R88 -s@^referer(?=:[^\n]*[./](?:amaderforum\.com)):.*@ab2p-block-xpopup@Ti +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R53 +s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R73 +s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R86 +s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-xpopup@Ti CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R89 -s@^referer(?=:[^\n]*[./](?:amaderforum\.com|jumbofile\.net|videomega\.tv)):.*@ab2p-block-xpopup@Ti +s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-xpopup@Ti -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-Rn589 -s@^referer(?!:[^\n]*[./](?:carnage\.ru|karnage\.ru|sesterce\.ru)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-Rn666 -s@^referer(?!:[^\n]*[./](?:worldoftanks\.ru)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-Rn675 -s@^referer(?!:[^\n]*[./](?:zzima\.com)):.*@ab2p-block-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-block-xpopup-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R98 +s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-xpopup@Ti CLIENT-HEADER-TAGGER: ab2p-block-xpopup-Rt s@^referer:.*@$&\t$host@Di s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1000 -s@^referer(?=:[^\n]*[./](?:boxlive\.tv|directon\.tv|foxnews\.ws|icastlive\.tv|wii-cast\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1001 -s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1002 -s@^referer(?=:[^\n]*[./](?:brandverity\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1003 -s@^referer(?=:[^\n]*[./](?:brazzerssupport\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1004 -s@^referer(?=:[^\n]*[./](?:brisbanetimes\.com\.au|smh\.com\.au|theage\.com\.au|watoday\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1005 -s@^referer(?=:[^\n]*[./](?:britishgas\.co\.uk|luxurylink\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1006 -s@^referer(?=:[^\n]*[./](?:bulletsfirst\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1007 -s@^referer(?=:[^\n]*[./](?:business-standard\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1008 -s@^referer(?=:[^\n]*[./](?:c\.brightcove\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1009 -s@^referer(?=:[^\n]*[./](?:ca\.weather\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1010 -s@^referer(?=:[^\n]*[./](?:canadianrockies\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1011 -s@^referer(?=:[^\n]*[./](?:candystand\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1012 -s@^referer(?=:[^\n]*[./](?:carambatv\.ru|life\.ru|molodejj\.tv|out\.pladform\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1013 -s@^referer(?=:[^\n]*[./](?:careerbuilder\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1014 -s@^referer(?=:[^\n]*[./](?:carsdirect\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1015 -s@^referer(?=:[^\n]*[./](?:cartalk\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1016 -s@^referer(?=:[^\n]*[./](?:cartoonnetwork\.co\.nz|cartoonnetworkasia\.com|cartoonnetworkhq\.com|manutd\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1017 -s@^referer(?=:[^\n]*[./](?:cartoonnetwork\.com|tnt\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1018 -s@^referer(?=:[^\n]*[./](?:cartoonnetworkasia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1019 -s@^referer(?=:[^\n]*[./](?:casadossegredos\.tv|xuuby\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1020 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|sianevents\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1021 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1022 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1023 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1024 -s@^referer(?=:[^\n]*[./](?:cbc\.ca)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1025 -s@^referer(?=:[^\n]*[./](?:cbs\.com|eventhubs\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1026 -s@^referer(?=:[^\n]*[./](?:cbs\.com|planetfools\.com|televisiondiv\.ucoz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1027 -s@^referer(?=:[^\n]*[./](?:cbsnews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1028 -s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cbssports\.com|cnettv\.cnet\.com|metacritic\.com|tv\.com|twitch\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1029 -s@^referer(?=:[^\n]*[./](?:cbsnews\.com|colbertlateshow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1030 -s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1031 -s@^referer(?=:[^\n]*[./](?:channel5\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1032 -s@^referer(?=:[^\n]*[./](?:channel5\.com|citytv\.com|player\.stv\.tv|uktv\.co\.uk|wwe\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1033 -s@^referer(?=:[^\n]*[./](?:charlieandmekids\.co\.nz|charlieandmekids\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1034 -s@^referer(?=:[^\n]*[./](?:charter\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1035 -s@^referer(?=:[^\n]*[./](?:cheaptickets\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1036 -s@^referer(?=:[^\n]*[./](?:cheaptickets\.com|orbitz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1037 -s@^referer(?=:[^\n]*[./](?:cheatsheet\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1038 -s@^referer(?=:[^\n]*[./](?:cheatsheet\.com|supercheats\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1039 -s@^referer(?=:[^\n]*[./](?:chrissmoove\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1040 -s@^referer(?=:[^\n]*[./](?:christianity\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1041 -s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1042 -s@^referer(?=:[^\n]*[./](?:cinemassacre\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1043 -s@^referer(?=:[^\n]*[./](?:circusstreet\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1044 -s@^referer(?=:[^\n]*[./](?:citationmachine\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1045 -s@^referer(?=:[^\n]*[./](?:citi\.com|citibank\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1046 -s@^referer(?=:[^\n]*[./](?:cityam\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1047 -s@^referer(?=:[^\n]*[./](?:citytv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1048 -s@^referer(?=:[^\n]*[./](?:civilization5cheats\.com|kzupload\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1049 -s@^referer(?=:[^\n]*[./](?:classifieds\.nydailynews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1050 -s@^referer(?=:[^\n]*[./](?:cleodesktop\.com|mugiwaranofansub\.blogspot\.com\.ar|musicacelestial\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1051 -s@^referer(?=:[^\n]*[./](?:clubedohardware\.com\.br)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1052 -s@^referer(?=:[^\n]*[./](?:clubedohardware\.com\.br|yellowbridge\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1053 -s@^referer(?=:[^\n]*[./](?:cms\.gov)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1054 -s@^referer(?=:[^\n]*[./](?:cnbc\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com|go\.com|nbc\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1055 -s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1056 -s@^referer(?=:[^\n]*[./](?:cnettv\.cnet\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1057 -s@^referer(?=:[^\n]*[./](?:cntraveller\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1058 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1059 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1060 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1061 -s@^referer(?=:[^\n]*[./](?:comedy\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1062 -s@^referer(?=:[^\n]*[./](?:comingsoon\.net|gamerevolution\.com|sohh\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1063 -s@^referer(?=:[^\n]*[./](?:conservativeintel\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1064 -s@^referer(?=:[^\n]*[./](?:contv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1065 -s@^referer(?=:[^\n]*[./](?:couponcodeswap\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1066 -s@^referer(?=:[^\n]*[./](?:cricketcountry\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1067 -s@^referer(?=:[^\n]*[./](?:cricketwireless\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1068 -s@^referer(?=:[^\n]*[./](?:ctc\.ru|mts\.ru|ozon\.ru|tnt-online\.ru|videomore\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1069 -s@^referer(?=:[^\n]*[./](?:cuantarazon\.com|cuantocabron\.com|vistoenfb\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1070 -s@^referer(?=:[^\n]*[./](?:cubeecraft\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1071 -s@^referer(?=:[^\n]*[./](?:cwtv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1072 -s@^referer(?=:[^\n]*[./](?:cyberdevilz\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1073 -s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com|youlea\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1074 -s@^referer(?=:[^\n]*[./](?:d3\.ru|dirty\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1075 -s@^referer(?=:[^\n]*[./](?:dafiti\.cl|dafiti\.com\.ar|dafiti\.com\.br|dafiti\.com\.co)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1076 -s@^referer(?=:[^\n]*[./](?:daft\.ie)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1077 -s@^referer(?=:[^\n]*[./](?:dailycaller\.com|valuewalk\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1078 -s@^referer(?=:[^\n]*[./](?:dailydot\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1079 -s@^referer(?=:[^\n]*[./](?:dailygames\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1080 -s@^referer(?=:[^\n]*[./](?:dailymail\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1081 -s@^referer(?=:[^\n]*[./](?:daisuki\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1082 -s@^referer(?=:[^\n]*[./](?:dasolo\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1083 -s@^referer(?=:[^\n]*[./](?:dating\.yahoo\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1084 -s@^referer(?=:[^\n]*[./](?:dayt\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1085 -s@^referer(?=:[^\n]*[./](?:deadspin\.com|foodnetwork\.com|gawker\.com|gizmodo\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|lifehacker\.com|weather\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1086 -s@^referer(?=:[^\n]*[./](?:deals\.segmentnext\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1087 -s@^referer(?=:[^\n]*[./](?:deliverydeals\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1088 -s@^referer(?=:[^\n]*[./](?:delo\.si)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1089 -s@^referer(?=:[^\n]*[./](?:demonoid\.ooo)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1090 -s@^referer(?=:[^\n]*[./](?:demonoid\.ph)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1091 -s@^referer(?=:[^\n]*[./](?:demonoid\.pw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1092 -s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1093 -s@^referer(?=:[^\n]*[./](?:deviantart\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1094 -s@^referer(?=:[^\n]*[./](?:di\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1095 -s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1096 -s@^referer(?=:[^\n]*[./](?:dic\.academic\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1097 -s@^referer(?=:[^\n]*[./](?:didigames\.com|nitrome\.com|nx8\.com|oyunlar1\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1098 -s@^referer(?=:[^\n]*[./](?:digiday\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1099 -s@^referer(?=:[^\n]*[./](?:digitalplayground\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1100 -s@^referer(?=:[^\n]*[./](?:digitoday\.fi|groovefm\.fi|hs\.fi|iltasanomat\.fi|istv\.fi|jimtv\.fi|livtv\.fi|loop\.fi|metrohelsinki\.fi|nelonen\.fi|nyt\.fi|radioaalto\.fi|radiorock\.fi|radiosuomipop\.fi|ruokala\.net|ruutu\.fi)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1101 -s@^referer(?=:[^\n]*[./](?:dillards\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1102 -s@^referer(?=:[^\n]*[./](?:directon\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1103 -s@^referer(?=:[^\n]*[./](?:directon\.tv|games\.yahoo\.com|onescreen\.net|wii-cast\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1104 -s@^referer(?=:[^\n]*[./](?:directon\.tv|wii-cast\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1105 -s@^referer(?=:[^\n]*[./](?:dirtstyle\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1106 -s@^referer(?=:[^\n]*[./](?:dirty\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1107 -s@^referer(?=:[^\n]*[./](?:discovery\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1108 -s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1109 -s@^referer(?=:[^\n]*[./](?:disney\.no)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1110 -s@^referer(?=:[^\n]*[./](?:disqus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1111 -s@^referer(?=:[^\n]*[./](?:dizi-mag\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1112 -s@^referer(?=:[^\n]*[./](?:dlh\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1113 -s@^referer(?=:[^\n]*[./](?:dnswatch\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1114 -s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1115 -s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1116 -s@^referer(?=:[^\n]*[./](?:doctoroz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1117 -s@^referer(?=:[^\n]*[./](?:dogecoinpuddle\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1118 -s@^referer(?=:[^\n]*[./](?:domru\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1119 -s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1120 -s@^referer(?=:[^\n]*[./](?:doubleclick\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1121 -s@^referer(?=:[^\n]*[./](?:dramacafe\.in|ilive\.to|mackolik\.com|sahadan\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1122 -s@^referer(?=:[^\n]*[./](?:dramafever\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1123 -s@^referer(?=:[^\n]*[./](?:dramafever\.com|majorleaguegaming\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1124 -s@^referer(?=:[^\n]*[./](?:dramafever\.com|vaughnlive\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1125 -s@^referer(?=:[^\n]*[./](?:dressupgal\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1126 -s@^referer(?=:[^\n]*[./](?:drivearabia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1127 -s@^referer(?=:[^\n]*[./](?:dubs\.me|filestore123\.info|myfilestore\.com|portable77download\.blogspot\.com|pspmaniaonline\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1128 -s@^referer(?=:[^\n]*[./](?:dxdigitals\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1129 -s@^referer(?=:[^\n]*[./](?:dynamo\.dictionary\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1130 -s@^referer(?=:[^\n]*[./](?:e-hentai\.org|exhentai\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1131 -s@^referer(?=:[^\n]*[./](?:e24\.no)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1132 -s@^referer(?=:[^\n]*[./](?:eafyfsuh\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1133 -s@^referer(?=:[^\n]*[./](?:easyads\.eu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1134 -s@^referer(?=:[^\n]*[./](?:easylist\.adblockplus\.org|reports\.adblockplus\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1135 -s@^referer(?=:[^\n]*[./](?:easyrecipesite\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1136 -s@^referer(?=:[^\n]*[./](?:ebay\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1137 -s@^referer(?=:[^\n]*[./](?:ebog\.com|gameark\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1138 -s@^referer(?=:[^\n]*[./](?:eclypsia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1139 -s@^referer(?=:[^\n]*[./](?:economist\.com|feedroom\.com|stanford\.edu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1140 -s@^referer(?=:[^\n]*[./](?:eg\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1141 -s@^referer(?=:[^\n]*[./](?:egreetings\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1142 -s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1143 -s@^referer(?=:[^\n]*[./](?:ehow\.com|livestrong\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1144 -s@^referer(?=:[^\n]*[./](?:eio\.manhattan\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1145 -s@^referer(?=:[^\n]*[./](?:ekstrabladet\.dk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1146 -s@^referer(?=:[^\n]*[./](?:elcomercio\.pe)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1147 -s@^referer(?=:[^\n]*[./](?:emag\.hu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1148 -s@^referer(?=:[^\n]*[./](?:emag\.hu|emag\.ro)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1149 -s@^referer(?=:[^\n]*[./](?:embed\.life\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1150 -s@^referer(?=:[^\n]*[./](?:empik\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1151 -s@^referer(?=:[^\n]*[./](?:engadget\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1152 -s@^referer(?=:[^\n]*[./](?:enjoydressup\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1153 -s@^referer(?=:[^\n]*[./](?:enter\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1154 -s@^referer(?=:[^\n]*[./](?:entertainment\.ie)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1155 -s@^referer(?=:[^\n]*[./](?:entertainment\.msn\.co\.nz|msn\.foxsports\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1156 -s@^referer(?=:[^\n]*[./](?:escapefan\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1157 -s@^referer(?=:[^\n]*[./](?:eskago\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1158 -s@^referer(?=:[^\n]*[./](?:esmas\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1159 -s@^referer(?=:[^\n]*[./](?:espn\.go\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1160 -s@^referer(?=:[^\n]*[./](?:espnf1\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1161 -s@^referer(?=:[^\n]*[./](?:espnfc\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1162 -s@^referer(?=:[^\n]*[./](?:etsy\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1163 -s@^referer(?=:[^\n]*[./](?:europaplus\.ru|retrofm\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1164 -s@^referer(?=:[^\n]*[./](?:europe-airports\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1165 -s@^referer(?=:[^\n]*[./](?:eurovisionsports\.tv|talksport\.co\.uk|wrc\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1166 -s@^referer(?=:[^\n]*[./](?:eventhubs\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1167 -s@^referer(?=:[^\n]*[./](?:everythingon\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1168 -s@^referer(?=:[^\n]*[./](?:evrl\.to|kinomoov\.net|megogo\.net|online\.ua|only-paper\.ru|raketa-tv\.com|seriatv\.ru|torrent-tv\.ru|uakino\.net|ualinux\.com|褌械锌谢芯褉邪褋褔械褌\.褉褎)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1169 -s@^referer(?=:[^\n]*[./](?:exashare\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1170 -s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1171 -s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1172 -s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1173 -s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1174 -s@^referer(?=:[^\n]*[./](?:expedia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1175 -s@^referer(?=:[^\n]*[./](?:expressen\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1176 -s@^referer(?=:[^\n]*[./](?:exrapidleech\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1177 -s@^referer(?=:[^\n]*[./](?:extremetube\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1178 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|keezmovies\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1179 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|spankwire\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1180 -s@^referer(?=:[^\n]*[./](?:ezone\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1181 -s@^referer(?=:[^\n]*[./](?:factom\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1182 -s@^referer(?=:[^\n]*[./](?:fairfaxmedia\.com\.au|myfairfax\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1183 -s@^referer(?=:[^\n]*[./](?:familydoctor\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1184 -s@^referer(?=:[^\n]*[./](?:fanatik\.com\.tr)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1185 -s@^referer(?=:[^\n]*[./](?:farmville\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1186 -s@^referer(?=:[^\n]*[./](?:fastpic\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1187 -s@^referer(?=:[^\n]*[./](?:fcportables\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1188 -s@^referer(?=:[^\n]*[./](?:fest-ry\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1189 -s@^referer(?=:[^\n]*[./](?:ffan\.ru|shop\.kz|transbank\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1190 -s@^referer(?=:[^\n]*[./](?:ffiles\.com|full-ngage-games\.blogspot\.com|kingofgames\.net|megaallday\.com|ninjaraider\.com|nonags\.com|upfordown\.com|wtf-teen\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1191 -s@^referer(?=:[^\n]*[./](?:filecore\.co\.nz)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1192 -s@^referer(?=:[^\n]*[./](?:fileover\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1193 -s@^referer(?=:[^\n]*[./](?:filerev\.cc)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1194 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in|go4up\.com|hqq\.tv|sizedrive\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1195 -s@^referer(?=:[^\n]*[./](?:filmux\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1196 -s@^referer(?=:[^\n]*[./](?:filmweb\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1197 -s@^referer(?=:[^\n]*[./](?:finance\.sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1198 -s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1199 -s@^referer(?=:[^\n]*[./](?:firstonetv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1200 -s@^referer(?=:[^\n]*[./](?:flaixfm\.cat)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1201 -s@^referer(?=:[^\n]*[./](?:flashgames247\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1202 -s@^referer(?=:[^\n]*[./](?:flashgames247\.com|freeonlinegames\.com|gameitnow\.com|play181\.com|toongames\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1203 -s@^referer(?=:[^\n]*[./](?:flipkart\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1204 -s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1205 -s@^referer(?=:[^\n]*[./](?:flv2mp3\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1206 -s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1207 -s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1208 -s@^referer(?=:[^\n]*[./](?:food\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1209 -s@^referer(?=:[^\n]*[./](?:foodnetwork\.com|msnbc\.com|player\.theplatform\.com|sky\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1210 -s@^referer(?=:[^\n]*[./](?:foodzy\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1211 -s@^referer(?=:[^\n]*[./](?:forbes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1212 -s@^referer(?=:[^\n]*[./](?:formspring\.me)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1213 -s@^referer(?=:[^\n]*[./](?:forums\.tweaktown\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1214 -s@^referer(?=:[^\n]*[./](?:forzamotorsport\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1215 -s@^referer(?=:[^\n]*[./](?:foxnews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1216 -s@^referer(?=:[^\n]*[./](?:free-send\.ru|izzylaif\.com|modfiles\.ru|osettlers\.com|trackitonline\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1217 -s@^referer(?=:[^\n]*[./](?:free-send\.ru|modfiles\.ru|osettlers\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1218 -s@^referer(?=:[^\n]*[./](?:free-space\.net|hxcmusic\.com|hxcmusic\.me|justfortrendygirls\.com|mmusicz\.com|receive-sms\.com|runescapehack\.net|spotifyripping\.com|stumblehere\.com|tvgorge\.com|tvokay\.com|videodownloadx\.com|wtso\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1219 -s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1220 -s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1221 -s@^referer(?=:[^\n]*[./](?:free\.smsmarkaz\.urdupoint\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1222 -s@^referer(?=:[^\n]*[./](?:freeallmusic\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1223 -s@^referer(?=:[^\n]*[./](?:freebitcoinz\.com|youserials\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1224 -s@^referer(?=:[^\n]*[./](?:freelancer\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1225 -s@^referer(?=:[^\n]*[./](?:freeshipping\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1226 -s@^referer(?=:[^\n]*[./](?:freewebarcade\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1227 -s@^referer(?=:[^\n]*[./](?:freeworldgroup\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1228 -s@^referer(?=:[^\n]*[./](?:fresh-book\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1229 -s@^referer(?=:[^\n]*[./](?:fs\.to)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1230 -s@^referer(?=:[^\n]*[./](?:ft\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1231 -s@^referer(?=:[^\n]*[./](?:ftlauderdalewebcam\.com|nyharborwebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1232 -s@^referer(?=:[^\n]*[./](?:fundsdata\.co\.za)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1233 -s@^referer(?=:[^\n]*[./](?:funnyordie\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1234 -s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1235 -s@^referer(?=:[^\n]*[./](?:gactv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1236 -s@^referer(?=:[^\n]*[./](?:game\.zylom\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1237 -s@^referer(?=:[^\n]*[./](?:gamefly\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1238 -s@^referer(?=:[^\n]*[./](?:gamehouse\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1239 -s@^referer(?=:[^\n]*[./](?:gamer-info\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1240 -s@^referer(?=:[^\n]*[./](?:games-tv\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1241 -s@^referer(?=:[^\n]*[./](?:games\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1242 -s@^referer(?=:[^\n]*[./](?:games\.softgames\.de)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1243 -s@^referer(?=:[^\n]*[./](?:games\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1244 -s@^referer(?=:[^\n]*[./](?:games\.yahoo\.com|onescreen\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1245 -s@^referer(?=:[^\n]*[./](?:gamesforwork\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1246 -s@^referer(?=:[^\n]*[./](?:gamespot\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1247 -s@^referer(?=:[^\n]*[./](?:gamesradar\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1248 -s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1249 -s@^referer(?=:[^\n]*[./](?:gaybeeg\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1250 -s@^referer(?=:[^\n]*[./](?:genvideos\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1251 -s@^referer(?=:[^\n]*[./](?:get\.x-link\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1252 -s@^referer(?=:[^\n]*[./](?:getcoupons\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1253 -s@^referer(?=:[^\n]*[./](?:ghostery\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1254 -s@^referer(?=:[^\n]*[./](?:ghsrv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1255 -s@^referer(?=:[^\n]*[./](?:gimhoy\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1256 -s@^referer(?=:[^\n]*[./](?:glamour\.com|itsjudytime\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1257 -s@^referer(?=:[^\n]*[./](?:glamourbabe\.eu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1258 -s@^referer(?=:[^\n]*[./](?:glassdoor\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1259 -s@^referer(?=:[^\n]*[./](?:globalnews\.ca)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1260 -s@^referer(?=:[^\n]*[./](?:go\.uakino\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1261 -s@^referer(?=:[^\n]*[./](?:goclips\.tv|letitbit\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1262 -s@^referer(?=:[^\n]*[./](?:golf\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1263 -s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1264 -s@^referer(?=:[^\n]*[./](?:google\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1265 -s@^referer(?=:[^\n]*[./](?:greasyfork\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1266 -s@^referer(?=:[^\n]*[./](?:greenbaypressgazette\.com|wcsh6\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1267 -s@^referer(?=:[^\n]*[./](?:gsmpro\.com\.pl|lechia\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1268 -s@^referer(?=:[^\n]*[./](?:gt-advertise\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1269 -s@^referer(?=:[^\n]*[./](?:guardian\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1270 -s@^referer(?=:[^\n]*[./](?:guardian\.co\.uk|landandfarm\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1271 -s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1272 -s@^referer(?=:[^\n]*[./](?:hackintosh\.zone)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1273 -s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1274 -s@^referer(?=:[^\n]*[./](?:hamalia\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1275 -s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1276 -s@^referer(?=:[^\n]*[./](?:hardocp\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1277 -s@^referer(?=:[^\n]*[./](?:hawk\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1278 -s@^referer(?=:[^\n]*[./](?:hcsibir\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1279 -s@^referer(?=:[^\n]*[./](?:hd-porn\.me)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R128 -s@^referer(?=:[^\n]*[./](?:brb\.to|cxz\.to|fs\.to)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1280 -s@^referer(?=:[^\n]*[./](?:healthboards\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1281 -s@^referer(?=:[^\n]*[./](?:heroichollywood\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1282 -s@^referer(?=:[^\n]*[./](?:heroichollywood\.com|supercheats\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1283 -s@^referer(?=:[^\n]*[./](?:hgst\.com|movie-pocket\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1284 -s@^referer(?=:[^\n]*[./](?:hiddencamsvideo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1285 -s@^referer(?=:[^\n]*[./](?:hinduladies\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1286 -s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1287 -s@^referer(?=:[^\n]*[./](?:hometheaterforum\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1288 -s@^referer(?=:[^\n]*[./](?:horny\.net|xmatch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1289 -s@^referer(?=:[^\n]*[./](?:hot899\.com|nj1015\.com|streamtheworld\.com|tsn\.ca)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1290 -s@^referer(?=:[^\n]*[./](?:hotukdeals\.com|jobamatic\.com|play\.google\.com|santander\.co\.uk|techrepublic\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1291 -s@^referer(?=:[^\n]*[./](?:hotwire\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1292 -s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1293 -s@^referer(?=:[^\n]*[./](?:hp\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1294 -s@^referer(?=:[^\n]*[./](?:hqq\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1295 -s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1296 -s@^referer(?=:[^\n]*[./](?:huffingtonpost\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1297 -s@^referer(?=:[^\n]*[./](?:huffingtonpost\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1298 -s@^referer(?=:[^\n]*[./](?:hulu\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1299 -s@^referer(?=:[^\n]*[./](?:humana-medicare\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1300 -s@^referer(?=:[^\n]*[./](?:hypeseek\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1301 -s@^referer(?=:[^\n]*[./](?:i-makeawish\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1302 -s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1303 -s@^referer(?=:[^\n]*[./](?:idnes\.cz|moviezone\.cz)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1304 -s@^referer(?=:[^\n]*[./](?:ifirstrowit\.eu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1305 -s@^referer(?=:[^\n]*[./](?:ifirstrowus\.eu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1306 -s@^referer(?=:[^\n]*[./](?:igougo\.com|travelocity\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1307 -s@^referer(?=:[^\n]*[./](?:igromania\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1308 -s@^referer(?=:[^\n]*[./](?:iguides\.ru|tvigle\.ru|wikimart\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1309 -s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1310 -s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1311 -s@^referer(?=:[^\n]*[./](?:ilive\.to)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1312 -s@^referer(?=:[^\n]*[./](?:ilix\.in|priva\.us)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1313 -s@^referer(?=:[^\n]*[./](?:ilix\.in|priva\.us|urlink\.at)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1314 -s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1315 -s@^referer(?=:[^\n]*[./](?:imagebam\.com|imgbox\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1316 -s@^referer(?=:[^\n]*[./](?:imasdk\.googleapis\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1317 -s@^referer(?=:[^\n]*[./](?:imdb\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1318 -s@^referer(?=:[^\n]*[./](?:imgserve\.net|imgtiger\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1319 -s@^referer(?=:[^\n]*[./](?:imhonet\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1320 -s@^referer(?=:[^\n]*[./](?:inbox\.lv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1321 -s@^referer(?=:[^\n]*[./](?:india\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1322 -s@^referer(?=:[^\n]*[./](?:indianexpress\.com|thehindu\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1323 -s@^referer(?=:[^\n]*[./](?:indiatimes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1324 -s@^referer(?=:[^\n]*[./](?:indiatvnews\.com|intoday\.in)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1325 -s@^referer(?=:[^\n]*[./](?:indiatvnews\.com|intoday\.in|moneycontrol\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1326 -s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1327 -s@^referer(?=:[^\n]*[./](?:insure\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1328 -s@^referer(?=:[^\n]*[./](?:insys\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1329 -s@^referer(?=:[^\n]*[./](?:interia\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1330 -s@^referer(?=:[^\n]*[./](?:internetcasinot\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1331 -s@^referer(?=:[^\n]*[./](?:ip-address\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1332 -s@^referer(?=:[^\n]*[./](?:ipla\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1333 -s@^referer(?=:[^\n]*[./](?:iprima\.cz)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1334 -s@^referer(?=:[^\n]*[./](?:irr\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1335 -s@^referer(?=:[^\n]*[./](?:item\.jd\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1336 -s@^referer(?=:[^\n]*[./](?:itools\.cn|laniqu\.com|tdx\.com\.cn|veryeast\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1337 -s@^referer(?=:[^\n]*[./](?:itreviews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1338 -s@^referer(?=:[^\n]*[./](?:itv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1339 -s@^referer(?=:[^\n]*[./](?:itv\.com|uktv\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1340 -s@^referer(?=:[^\n]*[./](?:izzylaif\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1341 -s@^referer(?=:[^\n]*[./](?:izzylaif\.com|trackitonline\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1342 -s@^referer(?=:[^\n]*[./](?:jabong\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1343 -s@^referer(?=:[^\n]*[./](?:jalan\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1344 -s@^referer(?=:[^\n]*[./](?:jamo\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1345 -s@^referer(?=:[^\n]*[./](?:jav4\.me)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1346 -s@^referer(?=:[^\n]*[./](?:javfee\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1347 -s@^referer(?=:[^\n]*[./](?:jc-mp\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1348 -s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1349 -s@^referer(?=:[^\n]*[./](?:jjcast\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1350 -s@^referer(?=:[^\n]*[./](?:jkhentai\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1351 -s@^referer(?=:[^\n]*[./](?:jobamatic\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1352 -s@^referer(?=:[^\n]*[./](?:joblib\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1353 -s@^referer(?=:[^\n]*[./](?:jobnet\.co\.il|jobs-israel\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1354 -s@^referer(?=:[^\n]*[./](?:jobstreet\.co\.id|jobstreet\.co\.in|jobstreet\.co\.th|jobstreet\.com|jobstreet\.com\.my|jobstreet\.com\.ph|jobstreet\.com\.sg|jobstreet\.vn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1355 -s@^referer(?=:[^\n]*[./](?:joindota\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1356 -s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1357 -s@^referer(?=:[^\n]*[./](?:kakprosto\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1358 -s@^referer(?=:[^\n]*[./](?:kakprosto\.ru|rusplt\.ru|sobesednik\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1359 -s@^referer(?=:[^\n]*[./](?:kasi-time\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1360 -s@^referer(?=:[^\n]*[./](?:keezmovies\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1361 -s@^referer(?=:[^\n]*[./](?:keygames\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1362 -s@^referer(?=:[^\n]*[./](?:kingofgames\.net|nedbank\.co\.za|nedbankgreen\.co\.za|virginaustralia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1363 -s@^referer(?=:[^\n]*[./](?:kinomoov\.net|vgtimes\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1364 -s@^referer(?=:[^\n]*[./](?:kinopoisk\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1365 -s@^referer(?=:[^\n]*[./](?:kissanime\.com|kisscartoon\.me)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1366 -s@^referer(?=:[^\n]*[./](?:kissanime\.to)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1367 -s@^referer(?=:[^\n]*[./](?:kisscartoon\.me)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1368 -s@^referer(?=:[^\n]*[./](?:km\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1369 -s@^referer(?=:[^\n]*[./](?:kmozart\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1370 -s@^referer(?=:[^\n]*[./](?:kmvt\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1371 -s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1372 -s@^referer(?=:[^\n]*[./](?:kongregate\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1373 -s@^referer(?=:[^\n]*[./](?:kporno\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1374 -s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1375 -s@^referer(?=:[^\n]*[./](?:ktiv\.com|wflx\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1376 -s@^referer(?=:[^\n]*[./](?:kval\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1377 -s@^referer(?=:[^\n]*[./](?:landandfarm\.com|query\.nytimes\.com|trustedreviews\.com|www\.google\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1378 -s@^referer(?=:[^\n]*[./](?:latimes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1379 -s@^referer(?=:[^\n]*[./](?:latinopost\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1380 -s@^referer(?=:[^\n]*[./](?:lavozdegalicia\.es)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1381 -s@^referer(?=:[^\n]*[./](?:led66\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1382 -s@^referer(?=:[^\n]*[./](?:lenislens\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1383 -s@^referer(?=:[^\n]*[./](?:lenta\.ru|news\.rambler\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1384 -s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1385 -s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1386 -s@^referer(?=:[^\n]*[./](?:life\.ru|smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1387 -s@^referer(?=:[^\n]*[./](?:lifemadedelicious\.ca|tac\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1388 -s@^referer(?=:[^\n]*[./](?:ligtv\.com\.tr)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1389 -s@^referer(?=:[^\n]*[./](?:live\.geo\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1390 -s@^referer(?=:[^\n]*[./](?:live\.scity\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1391 -s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1392 -s@^referer(?=:[^\n]*[./](?:livefromdarylshouse\.com|pandasecurity\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1393 -s@^referer(?=:[^\n]*[./](?:livejournal\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1394 -s@^referer(?=:[^\n]*[./](?:livelib\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1395 -s@^referer(?=:[^\n]*[./](?:livestream\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1396 -s@^referer(?=:[^\n]*[./](?:localmarket\.autismsupportnetwork\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1397 -s@^referer(?=:[^\n]*[./](?:locator\.transitcard\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1398 -s@^referer(?=:[^\n]*[./](?:login\.live\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1399 -s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1400 -s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1401 -s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1402 -s@^referer(?=:[^\n]*[./](?:loot\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1403 -s@^referer(?=:[^\n]*[./](?:lostfilm\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1404 -s@^referer(?=:[^\n]*[./](?:lshunter\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1405 -s@^referer(?=:[^\n]*[./](?:lucidchart\.com|lucidpress\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1406 -s@^referer(?=:[^\n]*[./](?:m\.naver\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1407 -s@^referer(?=:[^\n]*[./](?:m\.tmz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1408 -s@^referer(?=:[^\n]*[./](?:mackolik\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1409 -s@^referer(?=:[^\n]*[./](?:mackolik\.com|sahadan\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1410 -s@^referer(?=:[^\n]*[./](?:madyar\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1411 -s@^referer(?=:[^\n]*[./](?:magesy\.be)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1412 -s@^referer(?=:[^\n]*[./](?:magicseaweed\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1413 -s@^referer(?=:[^\n]*[./](?:mail\.live\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1414 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com|nfl\.com|player\.rogersradio\.ca|twitch\.tv|viki\.com|volarvideo\.com|worldstarhiphop\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1415 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com|pbs\.org|wikihow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1416 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|mangabird\.com|memegenerator\.net|onemanga\.me|waoanime\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1417 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|newgrounds\.com|xfire\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1418 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|onemanga\.me|pro-football-reference\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1419 -s@^referer(?=:[^\n]*[./](?:mangasky\.co)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1420 -s@^referer(?=:[^\n]*[./](?:mangaumaru\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1421 -s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1422 -s@^referer(?=:[^\n]*[./](?:maniatv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1423 -s@^referer(?=:[^\n]*[./](?:manualsonline\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1424 -s@^referer(?=:[^\n]*[./](?:manutd\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1425 -s@^referer(?=:[^\n]*[./](?:mapy\.hiking\.sk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1426 -s@^referer(?=:[^\n]*[./](?:market\.yandex\.by|market\.yandex\.kz|market\.yandex\.ru|market\.yandex\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1427 -s@^referer(?=:[^\n]*[./](?:marketwatch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1428 -s@^referer(?=:[^\n]*[./](?:marthastewart\.com|nbcsports\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1429 -s@^referer(?=:[^\n]*[./](?:mavrixonline\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R143 -s@^referer(?=:[^\n]*[./](?:channel4\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1430 -s@^referer(?=:[^\n]*[./](?:mavs\.wpengine\.netdna-cdn\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1431 -s@^referer(?=:[^\n]*[./](?:maxigame\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1432 -s@^referer(?=:[^\n]*[./](?:mediatechnologycenter\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1433 -s@^referer(?=:[^\n]*[./](?:medscape\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1434 -s@^referer(?=:[^\n]*[./](?:megogo\.net|smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1435 -s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1436 -s@^referer(?=:[^\n]*[./](?:melting-mindz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1437 -s@^referer(?=:[^\n]*[./](?:members\.portalbuzz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1438 -s@^referer(?=:[^\n]*[./](?:memecenter\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1439 -s@^referer(?=:[^\n]*[./](?:mercadolibre\.com\.ve)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1440 -s@^referer(?=:[^\n]*[./](?:mercadolivre\.com\.br)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1441 -s@^referer(?=:[^\n]*[./](?:metro\.ca)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1442 -s@^referer(?=:[^\n]*[./](?:metv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1443 -s@^referer(?=:[^\n]*[./](?:mevio\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1444 -s@^referer(?=:[^\n]*[./](?:mgts\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1445 -s@^referer(?=:[^\n]*[./](?:michaels\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1446 -s@^referer(?=:[^\n]*[./](?:microsoftvirtualacademy\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1447 -s@^referer(?=:[^\n]*[./](?:milb\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1448 -s@^referer(?=:[^\n]*[./](?:mitele\.es|telecinco\.es)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1449 -s@^referer(?=:[^\n]*[./](?:miwed\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1450 -s@^referer(?=:[^\n]*[./](?:mlb\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1451 -s@^referer(?=:[^\n]*[./](?:mlb\.mlb\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1452 -s@^referer(?=:[^\n]*[./](?:mlbtraderumors\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1453 -s@^referer(?=:[^\n]*[./](?:mlssoccer\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1454 -s@^referer(?=:[^\n]*[./](?:mma-core\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1455 -s@^referer(?=:[^\n]*[./](?:mmoaddict\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1456 -s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1457 -s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1458 -s@^referer(?=:[^\n]*[./](?:mobinozer\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1459 -s@^referer(?=:[^\n]*[./](?:mochigames\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R146 -s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1460 -s@^referer(?=:[^\n]*[./](?:moevideo\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1461 -s@^referer(?=:[^\n]*[./](?:moevideos\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1462 -s@^referer(?=:[^\n]*[./](?:monster\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1463 -s@^referer(?=:[^\n]*[./](?:morningstar\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1464 -s@^referer(?=:[^\n]*[./](?:motogp\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1465 -s@^referer(?=:[^\n]*[./](?:motorcycle\.com|mysoju\.com|nedbank\.co\.za)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1466 -s@^referer(?=:[^\n]*[./](?:mousebreaker\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1467 -s@^referer(?=:[^\n]*[./](?:movieleaks\.co|videodepot\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1468 -s@^referer(?=:[^\n]*[./](?:movies\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1469 -s@^referer(?=:[^\n]*[./](?:moviezone\.cz)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1470 -s@^referer(?=:[^\n]*[./](?:mozilla\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1471 -s@^referer(?=:[^\n]*[./](?:mp3clan\.audio|mp3clan\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1472 -s@^referer(?=:[^\n]*[./](?:msn\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1473 -s@^referer(?=:[^\n]*[./](?:mts\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1474 -s@^referer(?=:[^\n]*[./](?:multiup\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1475 -s@^referer(?=:[^\n]*[./](?:murf\.nl|workhardclimbharder\.nl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1476 -s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1477 -s@^referer(?=:[^\n]*[./](?:muz\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1478 -s@^referer(?=:[^\n]*[./](?:muz\.ru|retrofm\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1479 -s@^referer(?=:[^\n]*[./](?:my-magazine\.me)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1480 -s@^referer(?=:[^\n]*[./](?:myaccount\.nytimes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1481 -s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1482 -s@^referer(?=:[^\n]*[./](?:nalog\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1483 -s@^referer(?=:[^\n]*[./](?:native-instruments\.com|nest\.com|theheldrich\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1484 -s@^referer(?=:[^\n]*[./](?:nba\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1485 -s@^referer(?=:[^\n]*[./](?:nbc\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1486 -s@^referer(?=:[^\n]*[./](?:nedbank\.co\.za)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1487 -s@^referer(?=:[^\n]*[./](?:nedbank\.co\.za|nitrome\.com|ticketek\.com\.ar)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1488 -s@^referer(?=:[^\n]*[./](?:netzero\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1489 -s@^referer(?=:[^\n]*[./](?:nextag\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1490 -s@^referer(?=:[^\n]*[./](?:nextmedia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1491 -s@^referer(?=:[^\n]*[./](?:nextmovie\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1492 -s@^referer(?=:[^\n]*[./](?:nfl\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1493 -s@^referer(?=:[^\n]*[./](?:nic\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1494 -s@^referer(?=:[^\n]*[./](?:nick\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1495 -s@^referer(?=:[^\n]*[./](?:ninemsn\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1496 -s@^referer(?=:[^\n]*[./](?:nlfreevpn\.com|oldapps\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1497 -s@^referer(?=:[^\n]*[./](?:nlfreevpn\.com|oldapps\.com|pattayaone\.net|unlockpwd\.com|uploadex\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1498 -s@^referer(?=:[^\n]*[./](?:noobpreneur\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1499 -s@^referer(?=:[^\n]*[./](?:novatv\.bg|tv2\.dk|tv3\.se|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1500 -s@^referer(?=:[^\n]*[./](?:nx8\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1501 -s@^referer(?=:[^\n]*[./](?:nyctourist\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1502 -s@^referer(?=:[^\n]*[./](?:nytimes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1503 -s@^referer(?=:[^\n]*[./](?:nzdating\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1504 -s@^referer(?=:[^\n]*[./](?:oascentral\.feedroom\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1505 -s@^referer(?=:[^\n]*[./](?:odysseyware\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1506 -s@^referer(?=:[^\n]*[./](?:ogame\.org|ogame\.us)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1507 -s@^referer(?=:[^\n]*[./](?:ok\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1508 -s@^referer(?=:[^\n]*[./](?:ole\.com\.ar)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1509 -s@^referer(?=:[^\n]*[./](?:olweb\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1510 -s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1511 -s@^referer(?=:[^\n]*[./](?:onehourtranslation\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1512 -s@^referer(?=:[^\n]*[./](?:online-che\.tv|online-domashniy\.tv|online-match\.tv|online-ntv\.tv|online-perviy\.tv|online-ren\.tv|online-rossiya1\.tv|online-rossiya24\.tv|online-sts\.tv|online-tnt\.tv|online-tv3\.tv|online-tvc\.tv|online-u\.tv|online-zvezda\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1513 -s@^referer(?=:[^\n]*[./](?:online\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1514 -s@^referer(?=:[^\n]*[./](?:onlinetvrecorder\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1515 -s@^referer(?=:[^\n]*[./](?:onvasortir\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1516 -s@^referer(?=:[^\n]*[./](?:open\.fm)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1517 -s@^referer(?=:[^\n]*[./](?:openload\.co)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1518 -s@^referer(?=:[^\n]*[./](?:openload\.co|openload\.io)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1519 -s@^referer(?=:[^\n]*[./](?:openload\.io)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1520 -s@^referer(?=:[^\n]*[./](?:openx\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1521 -s@^referer(?=:[^\n]*[./](?:orbitz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1522 -s@^referer(?=:[^\n]*[./](?:ostrow24\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1523 -s@^referer(?=:[^\n]*[./](?:ostrow24\.tv|yuvutu\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1524 -s@^referer(?=:[^\n]*[./](?:out\.pladform\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1525 -s@^referer(?=:[^\n]*[./](?:own3d\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1526 -s@^referer(?=:[^\n]*[./](?:ozerskzone\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1527 -s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1528 -s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1529 -s@^referer(?=:[^\n]*[./](?:papeldigital\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1530 -s@^referer(?=:[^\n]*[./](?:paste\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1531 -s@^referer(?=:[^\n]*[./](?:patch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1532 -s@^referer(?=:[^\n]*[./](?:pb\.wtf)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1533 -s@^referer(?=:[^\n]*[./](?:pcgames-download\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1534 -s@^referer(?=:[^\n]*[./](?:pch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1535 -s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1536 -s@^referer(?=:[^\n]*[./](?:pdrs\.dp\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1537 -s@^referer(?=:[^\n]*[./](?:pencurimovie\.pw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1538 -s@^referer(?=:[^\n]*[./](?:people\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1539 -s@^referer(?=:[^\n]*[./](?:people\.com|peoplestylewatch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1540 -s@^referer(?=:[^\n]*[./](?:people\.com|time\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1541 -s@^referer(?=:[^\n]*[./](?:peretz\.ru|rzd\.ru|svyaznoy\.ru|whiskas\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1542 -s@^referer(?=:[^\n]*[./](?:peterboroughtoday\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1543 -s@^referer(?=:[^\n]*[./](?:pgpru\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1544 -s@^referer(?=:[^\n]*[./](?:photodoska\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1545 -s@^referer(?=:[^\n]*[./](?:physorg\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1546 -s@^referer(?=:[^\n]*[./](?:pic4you\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1547 -s@^referer(?=:[^\n]*[./](?:pinnaclesports\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1548 -s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1549 -s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1550 -s@^referer(?=:[^\n]*[./](?:piter\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1551 -s@^referer(?=:[^\n]*[./](?:plan\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1552 -s@^referer(?=:[^\n]*[./](?:planetatvonlinehd\.blogspot\.com\.ar)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1553 -s@^referer(?=:[^\n]*[./](?:play\.spotify\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1554 -s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1555 -s@^referer(?=:[^\n]*[./](?:player\.video\.news\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1556 -s@^referer(?=:[^\n]*[./](?:playreplay\.net|vaughnlive\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1557 -s@^referer(?=:[^\n]*[./](?:podomatic\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1558 -s@^referer(?=:[^\n]*[./](?:politico\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1559 -s@^referer(?=:[^\n]*[./](?:pollen\.vc)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1560 -s@^referer(?=:[^\n]*[./](?:polskieradio\.pl|radiozet\.pl|spryciarze\.pl|tvp\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1561 -s@^referer(?=:[^\n]*[./](?:popularmechanics\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1562 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|tube8\.com|youporn\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1563 -s@^referer(?=:[^\n]*[./](?:porsche\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1564 -s@^referer(?=:[^\n]*[./](?:powerwatch\.pw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1565 -s@^referer(?=:[^\n]*[./](?:praca\.by)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1566 -s@^referer(?=:[^\n]*[./](?:preloved\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1567 -s@^referer(?=:[^\n]*[./](?:primerahora\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1568 -s@^referer(?=:[^\n]*[./](?:primewire\.ag)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1569 -s@^referer(?=:[^\n]*[./](?:pro-football-reference\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1570 -s@^referer(?=:[^\n]*[./](?:prodaj\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1571 -s@^referer(?=:[^\n]*[./](?:psarips\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1572 -s@^referer(?=:[^\n]*[./](?:publisher\.adservice\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1573 -s@^referer(?=:[^\n]*[./](?:pumpkinpatch\.co\.nz|pumpkinpatch\.co\.uk|pumpkinpatch\.com|pumpkinpatch\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1574 -s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1575 -s@^referer(?=:[^\n]*[./](?:qip\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1576 -s@^referer(?=:[^\n]*[./](?:qoinfaucet\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1577 -s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1578 -s@^referer(?=:[^\n]*[./](?:quantcast\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1579 -s@^referer(?=:[^\n]*[./](?:qz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1580 -s@^referer(?=:[^\n]*[./](?:rackspace\.co\.uk|rackspace\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1581 -s@^referer(?=:[^\n]*[./](?:radio\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1582 -s@^referer(?=:[^\n]*[./](?:radiou\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1583 -s@^referer(?=:[^\n]*[./](?:raketa-tv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1584 -s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1585 -s@^referer(?=:[^\n]*[./](?:rankbank\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1586 -s@^referer(?=:[^\n]*[./](?:rantlifestyle\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1587 -s@^referer(?=:[^\n]*[./](?:rbc\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1588 -s@^referer(?=:[^\n]*[./](?:redmaryland\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1589 -s@^referer(?=:[^\n]*[./](?:redtube\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1590 -s@^referer(?=:[^\n]*[./](?:reelkandi\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1591 -s@^referer(?=:[^\n]*[./](?:reempresa\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1592 -s@^referer(?=:[^\n]*[./](?:reklama\.com\.ua|reklama\.marat\.ua|reklama\.rambler\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1593 -s@^referer(?=:[^\n]*[./](?:remoteshaman\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1594 -s@^referer(?=:[^\n]*[./](?:renault\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1595 -s@^referer(?=:[^\n]*[./](?:repeatmyvids\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1596 -s@^referer(?=:[^\n]*[./](?:rg\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1597 -s@^referer(?=:[^\n]*[./](?:rmf24\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1598 -s@^referer(?=:[^\n]*[./](?:rollingstone\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1599 -s@^referer(?=:[^\n]*[./](?:roofandfloor\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1600 -s@^referer(?=:[^\n]*[./](?:rosemaryconley\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1601 -s@^referer(?=:[^\n]*[./](?:roshlam\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1602 -s@^referer(?=:[^\n]*[./](?:rossa-m\.ru|travelata\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1603 -s@^referer(?=:[^\n]*[./](?:rottentomatoes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1604 -s@^referer(?=:[^\n]*[./](?:rrstar\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1605 -s@^referer(?=:[^\n]*[./](?:rte\.ie)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1606 -s@^referer(?=:[^\n]*[./](?:rtl\.lu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1607 -s@^referer(?=:[^\n]*[./](?:rus-wars\.com|rus-wars\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1608 -s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1609 -s@^referer(?=:[^\n]*[./](?:rutracker\.org\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1610 -s@^referer(?=:[^\n]*[./](?:rutube\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1611 -s@^referer(?=:[^\n]*[./](?:rw\.by)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1612 -s@^referer(?=:[^\n]*[./](?:sahadan\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1613 -s@^referer(?=:[^\n]*[./](?:sankakucomplex\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1614 -s@^referer(?=:[^\n]*[./](?:sarafannoeradio\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1615 -s@^referer(?=:[^\n]*[./](?:sc2casts\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1616 -s@^referer(?=:[^\n]*[./](?:scooter-zip\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1617 -s@^referer(?=:[^\n]*[./](?:scottrade\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1618 -s@^referer(?=:[^\n]*[./](?:screenshot\.brandverity\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1619 -s@^referer(?=:[^\n]*[./](?:scribd\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1620 -s@^referer(?=:[^\n]*[./](?:scribol\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1621 -s@^referer(?=:[^\n]*[./](?:se\.no)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1622 -s@^referer(?=:[^\n]*[./](?:sedo\.co\.uk|sedo\.com|sedo\.jp|sedo\.kr|sedo\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1623 -s@^referer(?=:[^\n]*[./](?:sedo\.com|sedo\.de)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1624 -s@^referer(?=:[^\n]*[./](?:seekingalpha\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1625 -s@^referer(?=:[^\n]*[./](?:selectornews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1626 -s@^referer(?=:[^\n]*[./](?:sellallautos\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1627 -s@^referer(?=:[^\n]*[./](?:sellua\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1628 -s@^referer(?=:[^\n]*[./](?:serpens\.nl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1629 -s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1630 -s@^referer(?=:[^\n]*[./](?:serverfault\.com|stackoverflow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1631 -s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1632 -s@^referer(?=:[^\n]*[./](?:sh\.st)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1633 -s@^referer(?=:[^\n]*[./](?:sharedata\.co\.za)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1634 -s@^referer(?=:[^\n]*[./](?:shop\.patheos\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1635 -s@^referer(?=:[^\n]*[./](?:shopping\.ninemsn\.com\.au|shopping\.yahoo\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1636 -s@^referer(?=:[^\n]*[./](?:sibtravel42\.ru|tutu\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1637 -s@^referer(?=:[^\n]*[./](?:signal\.co)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1638 -s@^referer(?=:[^\n]*[./](?:simply-partner\.com|simplyhired\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1639 -s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1640 -s@^referer(?=:[^\n]*[./](?:siteads\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1641 -s@^referer(?=:[^\n]*[./](?:sizedrive\.com|softpedia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1642 -s@^referer(?=:[^\n]*[./](?:skai\.gr)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1643 -s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1644 -s@^referer(?=:[^\n]*[./](?:slacker\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1645 -s@^referer(?=:[^\n]*[./](?:slashdot\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1646 -s@^referer(?=:[^\n]*[./](?:slatev\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1647 -s@^referer(?=:[^\n]*[./](?:slickvid\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1648 -s@^referer(?=:[^\n]*[./](?:smallscreennetwork\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1649 -s@^referer(?=:[^\n]*[./](?:smartads\.by)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1650 -s@^referer(?=:[^\n]*[./](?:smctemple\.wpengine\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1651 -s@^referer(?=:[^\n]*[./](?:smileonthetiles\.com|smileonthetiles2\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1652 -s@^referer(?=:[^\n]*[./](?:smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1653 -s@^referer(?=:[^\n]*[./](?:snagfilms\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1654 -s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1655 -s@^referer(?=:[^\n]*[./](?:snapapp\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1656 -s@^referer(?=:[^\n]*[./](?:sny\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1657 -s@^referer(?=:[^\n]*[./](?:softportal\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1658 -s@^referer(?=:[^\n]*[./](?:sotumblry\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1659 -s@^referer(?=:[^\n]*[./](?:southpark\.nl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R166 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1660 -s@^referer(?=:[^\n]*[./](?:spankwire\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1661 -s@^referer(?=:[^\n]*[./](?:spinandw\.in)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1662 -s@^referer(?=:[^\n]*[./](?:spoilertv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1663 -s@^referer(?=:[^\n]*[./](?:sports\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1664 -s@^referer(?=:[^\n]*[./](?:sportsmole\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1665 -s@^referer(?=:[^\n]*[./](?:springstreetads\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1666 -s@^referer(?=:[^\n]*[./](?:spruto\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1667 -s@^referer(?=:[^\n]*[./](?:staircase\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1668 -s@^referer(?=:[^\n]*[./](?:startv\.in)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1669 -s@^referer(?=:[^\n]*[./](?:stickam\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1670 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru|xn--b1ajehof\.xn--80asehdb|蟹胁芯薪泻懈\.芯薪谢邪泄薪)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1671 -s@^referer(?=:[^\n]*[./](?:store\.explosm\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1672 -s@^referer(?=:[^\n]*[./](?:stream\.1tv\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1673 -s@^referer(?=:[^\n]*[./](?:strokekampanjen\.se|tigerofsweden\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1674 -s@^referer(?=:[^\n]*[./](?:submityourflicks\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1675 -s@^referer(?=:[^\n]*[./](?:sudinfo\.be)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1676 -s@^referer(?=:[^\n]*[./](?:sulekha\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1677 -s@^referer(?=:[^\n]*[./](?:sundaysportclassifieds\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1678 -s@^referer(?=:[^\n]*[./](?:supercheats\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1679 -s@^referer(?=:[^\n]*[./](?:superfilm\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1680 -s@^referer(?=:[^\n]*[./](?:supersonicads\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1681 -s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1682 -s@^referer(?=:[^\n]*[./](?:surfingbird\.com|surfingbird\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1683 -s@^referer(?=:[^\n]*[./](?:surfline\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1684 -s@^referer(?=:[^\n]*[./](?:swatch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1685 -s@^referer(?=:[^\n]*[./](?:sx566\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1686 -s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1687 -s@^referer(?=:[^\n]*[./](?:tableterra\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1688 -s@^referer(?=:[^\n]*[./](?:tagline\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1689 -s@^referer(?=:[^\n]*[./](?:talkrtv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1690 -s@^referer(?=:[^\n]*[./](?:talksport\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1691 -s@^referer(?=:[^\n]*[./](?:talksport\.co\.uk|tv3\.ie)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1692 -s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1693 -s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1694 -s@^referer(?=:[^\n]*[./](?:tapochek\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1695 -s@^referer(?=:[^\n]*[./](?:target\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1696 -s@^referer(?=:[^\n]*[./](?:tatler\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1697 -s@^referer(?=:[^\n]*[./](?:team-vitality\.fr)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1698 -s@^referer(?=:[^\n]*[./](?:teamcoco\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1699 -s@^referer(?=:[^\n]*[./](?:teamxbox\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1700 -s@^referer(?=:[^\n]*[./](?:techcrunch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1701 -s@^referer(?=:[^\n]*[./](?:teletoon\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1702 -s@^referer(?=:[^\n]*[./](?:teletoon\.com|walmart\.ca)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1703 -s@^referer(?=:[^\n]*[./](?:terra\.com\.br)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1704 -s@^referer(?=:[^\n]*[./](?:testtube\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1705 -s@^referer(?=:[^\n]*[./](?:the-village\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1706 -s@^referer(?=:[^\n]*[./](?:theawl\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1707 -s@^referer(?=:[^\n]*[./](?:thedoujin\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1708 -s@^referer(?=:[^\n]*[./](?:theemptynestexpress\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1709 -s@^referer(?=:[^\n]*[./](?:thegayuk\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1710 -s@^referer(?=:[^\n]*[./](?:thenextweb\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1711 -s@^referer(?=:[^\n]*[./](?:thesimsresource\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1712 -s@^referer(?=:[^\n]*[./](?:thestreet\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1713 -s@^referer(?=:[^\n]*[./](?:time\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1714 -s@^referer(?=:[^\n]*[./](?:tjournal\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1715 -s@^referer(?=:[^\n]*[./](?:tjournal\.ru|tvigle\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1716 -s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1717 -s@^referer(?=:[^\n]*[./](?:tnt-online\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1718 -s@^referer(?=:[^\n]*[./](?:tntdrama\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1719 -s@^referer(?=:[^\n]*[./](?:tomsguide\.com|tomshardware\.com|wonderhowto\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1720 -s@^referer(?=:[^\n]*[./](?:topzone\.lt)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1721 -s@^referer(?=:[^\n]*[./](?:tovarro\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1722 -s@^referer(?=:[^\n]*[./](?:trackitonline\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1723 -s@^referer(?=:[^\n]*[./](?:transaero\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1724 -s@^referer(?=:[^\n]*[./](?:travelocity\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1725 -s@^referer(?=:[^\n]*[./](?:travelzoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1726 -s@^referer(?=:[^\n]*[./](?:tree\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1727 -s@^referer(?=:[^\n]*[./](?:tripit\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1728 -s@^referer(?=:[^\n]*[./](?:tritonmedia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1729 -s@^referer(?=:[^\n]*[./](?:trustedreviews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1730 -s@^referer(?=:[^\n]*[./](?:tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1731 -s@^referer(?=:[^\n]*[./](?:tubemonsoon\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1732 -s@^referer(?=:[^\n]*[./](?:turbogenerator\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1733 -s@^referer(?=:[^\n]*[./](?:turbovideos\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1734 -s@^referer(?=:[^\n]*[./](?:turkanime\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1735 -s@^referer(?=:[^\n]*[./](?:turkdown\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1736 -s@^referer(?=:[^\n]*[./](?:tut\.by)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1737 -s@^referer(?=:[^\n]*[./](?:tv-serial\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1738 -s@^referer(?=:[^\n]*[./](?:tv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1739 -s@^referer(?=:[^\n]*[./](?:tv10play\.se|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1740 -s@^referer(?=:[^\n]*[./](?:tv2\.dk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1741 -s@^referer(?=:[^\n]*[./](?:tv2\.dk|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1742 -s@^referer(?=:[^\n]*[./](?:tv3\.ie)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1743 -s@^referer(?=:[^\n]*[./](?:tv3play\.se|uktv\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1744 -s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1745 -s@^referer(?=:[^\n]*[./](?:tvhaber\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1746 -s@^referer(?=:[^\n]*[./](?:tvigle\.ru|wikimart\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1747 -s@^referer(?=:[^\n]*[./](?:tvn\.pl|tvn24\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1748 -s@^referer(?=:[^\n]*[./](?:tvn24\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1749 -s@^referer(?=:[^\n]*[./](?:tvnet\.lv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1750 -s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1751 -s@^referer(?=:[^\n]*[./](?:twer\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1752 -s@^referer(?=:[^\n]*[./](?:tyndex\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1753 -s@^referer(?=:[^\n]*[./](?:ubi\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1754 -s@^referer(?=:[^\n]*[./](?:uktv\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1755 -s@^referer(?=:[^\n]*[./](?:ultimaterewardsearn\.chase\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1756 -s@^referer(?=:[^\n]*[./](?:unilad\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1757 -s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1758 -s@^referer(?=:[^\n]*[./](?:uptobox\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1759 -s@^referer(?=:[^\n]*[./](?:ura-inform\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1760 -s@^referer(?=:[^\n]*[./](?:usanetwork\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1761 -s@^referer(?=:[^\n]*[./](?:uscbookstore\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1762 -s@^referer(?=:[^\n]*[./](?:usynovite\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1763 -s@^referer(?=:[^\n]*[./](?:uzblog\.com|uzlist\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1764 -s@^referer(?=:[^\n]*[./](?:uzmantv\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1765 -s@^referer(?=:[^\n]*[./](?:vaughnlive\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1766 -s@^referer(?=:[^\n]*[./](?:vcoins\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1767 -s@^referer(?=:[^\n]*[./](?:vedomosti\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1768 -s@^referer(?=:[^\n]*[./](?:velochehol\.com\.ua|velosumka\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1769 -s@^referer(?=:[^\n]*[./](?:veohb\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1770 -s@^referer(?=:[^\n]*[./](?:vevo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1771 -s@^referer(?=:[^\n]*[./](?:vg\.no)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1772 -s@^referer(?=:[^\n]*[./](?:vg247\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1773 -s@^referer(?=:[^\n]*[./](?:vibe\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1774 -s@^referer(?=:[^\n]*[./](?:vice\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1775 -s@^referer(?=:[^\n]*[./](?:video\.adultswim\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1776 -s@^referer(?=:[^\n]*[./](?:video\.lycos\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1777 -s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1778 -s@^referer(?=:[^\n]*[./](?:video2mp3\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1779 -s@^referer(?=:[^\n]*[./](?:vidin\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1780 -s@^referer(?=:[^\n]*[./](?:viki\.com|wwe\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1781 -s@^referer(?=:[^\n]*[./](?:viki\.mx)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1782 -s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1783 -s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1784 -s@^referer(?=:[^\n]*[./](?:virginmedia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1785 -s@^referer(?=:[^\n]*[./](?:virpl\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1786 -s@^referer(?=:[^\n]*[./](?:vodyanoy\.com\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1787 -s@^referer(?=:[^\n]*[./](?:voenhronika\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1788 -s@^referer(?=:[^\n]*[./](?:volarvideo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1789 -s@^referer(?=:[^\n]*[./](?:voldingenglish\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1790 -s@^referer(?=:[^\n]*[./](?:vouchercodes\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1791 -s@^referer(?=:[^\n]*[./](?:vroomvroomvroom\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1792 -s@^referer(?=:[^\n]*[./](?:vseplatezhi\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1793 -s@^referer(?=:[^\n]*[./](?:vshp2016\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1794 -s@^referer(?=:[^\n]*[./](?:vtomske\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1795 -s@^referer(?=:[^\n]*[./](?:vyborg-press\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1796 -s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1797 -s@^referer(?=:[^\n]*[./](?:walmart\.com\.br)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1798 -s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1799 -s@^referer(?=:[^\n]*[./](?:watchseries-online\.eu)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1800 -s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1801 -s@^referer(?=:[^\n]*[./](?:wealthymen\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1802 -s@^referer(?=:[^\n]*[./](?:weather\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1803 -s@^referer(?=:[^\n]*[./](?:webadvert\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1804 -s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1805 -s@^referer(?=:[^\n]*[./](?:webupd8\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1806 -s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1807 -s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1808 -s@^referer(?=:[^\n]*[./](?:wetpaint\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1809 -s@^referer(?=:[^\n]*[./](?:whitepages\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1810 -s@^referer(?=:[^\n]*[./](?:wikihow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1811 -s@^referer(?=:[^\n]*[./](?:wikimart\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1812 -s@^referer(?=:[^\n]*[./](?:williamhillcasino\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1813 -s@^referer(?=:[^\n]*[./](?:winxclub\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1814 -s@^referer(?=:[^\n]*[./](?:wired\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1815 -s@^referer(?=:[^\n]*[./](?:wizard\.mediacoderhq\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1816 -s@^referer(?=:[^\n]*[./](?:wmpoweruser\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1817 -s@^referer(?=:[^\n]*[./](?:wordpress\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1818 -s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1819 -s@^referer(?=:[^\n]*[./](?:wowhead\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1820 -s@^referer(?=:[^\n]*[./](?:wp\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1821 -s@^referer(?=:[^\n]*[./](?:wrc\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1822 -s@^referer(?=:[^\n]*[./](?:wunderground\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1823 -s@^referer(?=:[^\n]*[./](?:www\.facebook\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1824 -s@^referer(?=:[^\n]*[./](?:www\.google\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1825 -s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1826 -s@^referer(?=:[^\n]*[./](?:www\.msn\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1827 -s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1828 -s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1829 -s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1830 -s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1831 -s@^referer(?=:[^\n]*[./](?:xfire\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1832 -s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1833 -s@^referer(?=:[^\n]*[./](?:xn--80aqkgfb3b1a0a\.xn--p1ai|锌褘褕屑邪懈薪褎芯\.褉褎)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1834 -s@^referer(?=:[^\n]*[./](?:xoyo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1835 -s@^referer(?=:[^\n]*[./](?:y8\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1836 -s@^referer(?=:[^\n]*[./](?:yaberemenna\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1837 -s@^referer(?=:[^\n]*[./](?:yahoo\.co\.jp)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1838 -s@^referer(?=:[^\n]*[./](?:yahoo\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1839 -s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1840 -s@^referer(?=:[^\n]*[./](?:yellowbridge\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1841 -s@^referer(?=:[^\n]*[./](?:yepi\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1842 -s@^referer(?=:[^\n]*[./](?:yesnetwork\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1843 -s@^referer(?=:[^\n]*[./](?:yimg\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1844 -s@^referer(?=:[^\n]*[./](?:yorkshirepost\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1845 -s@^referer(?=:[^\n]*[./](?:youjizz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1846 -s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1847 -s@^referer(?=:[^\n]*[./](?:youngcons\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1848 -s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1849 -s@^referer(?=:[^\n]*[./](?:yttalk\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1850 -s@^referer(?=:[^\n]*[./](?:yuvutu\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1851 -s@^referer(?=:[^\n]*[./](?:zakaz\.ua|zapals\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1852 -s@^referer(?=:[^\n]*[./](?:zakonrf\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1853 -s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1854 -s@^referer(?=:[^\n]*[./](?:zarplata\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1855 -s@^referer(?=:[^\n]*[./](?:zeperfs\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1856 -s@^referer(?=:[^\n]*[./](?:zerozero\.pt)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1857 -s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1858 -s@^referer(?=:[^\n]*[./](?:zynga\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R1859 -s@^referer(?=:[^\n]*[./](?:泻褍褌褟褌邪\.褉褎)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R197 -s@^referer(?=:[^\n]*[./](?:extremetech\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R202 -s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R217 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R221 -s@^referer(?=:[^\n]*[./](?:fishki\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R24 -s@^referer(?=:[^\n]*[./](?:1tv\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R245 -s@^referer(?=:[^\n]*[./](?:gelbooru\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R248 -s@^referer(?=:[^\n]*[./](?:go\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R278 -s@^referer(?=:[^\n]*[./](?:ibnlive\.in\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R287 -s@^referer(?=:[^\n]*[./](?:ivi\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R325 -s@^referer(?=:[^\n]*[./](?:mail\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R326 -s@^referer(?=:[^\n]*[./](?:mail\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R327 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R334 -s@^referer(?=:[^\n]*[./](?:megogo\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R343 -s@^referer(?=:[^\n]*[./](?:moonwalk\.cc)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R358 -s@^referer(?=:[^\n]*[./](?:newgrounds\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R375 -s@^referer(?=:[^\n]*[./](?:patheos\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R379 -s@^referer(?=:[^\n]*[./](?:photobucket\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R382 -s@^referer(?=:[^\n]*[./](?:picforall\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R39 -s@^referer(?=:[^\n]*[./](?:3dnews\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R392 -s@^referer(?=:[^\n]*[./](?:pornhub\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R400 -s@^referer(?=:[^\n]*[./](?:primewire\.ag|primewire\.in)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R402 -s@^referer(?=:[^\n]*[./](?:promptfile\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R403 -s@^referer(?=:[^\n]*[./](?:putlocker\.is)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R414 -s@^referer(?=:[^\n]*[./](?:reuters\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R437 -s@^referer(?=:[^\n]*[./](?:slader\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R451 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R458 -s@^referer(?=:[^\n]*[./](?:tbs\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R464 -s@^referer(?=:[^\n]*[./](?:thechive\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R467 -s@^referer(?=:[^\n]*[./](?:thisav\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R473 -s@^referer(?=:[^\n]*[./](?:tmz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R483 -s@^referer(?=:[^\n]*[./](?:tv4play\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R484 -s@^referer(?=:[^\n]*[./](?:tvcatchup\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R485 -s@^referer(?=:[^\n]*[./](?:twitch\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R507 -s@^referer(?=:[^\n]*[./](?:vivo\.sx)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R509 -s@^referer(?=:[^\n]*[./](?:vk\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R511 -s@^referer(?=:[^\n]*[./](?:vz\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R513 -s@^referer(?=:[^\n]*[./](?:washingtontimes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R540 -s@^referer(?=:[^\n]*[./](?:youwatch\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R544 -s@^referer(?=:[^\n]*[./](?:zattoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R61 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R63 -s@^referer(?=:[^\n]*[./](?:accesshollywood\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R762 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R189 s@^referer(?=:[^\n]*[./](?:0379home\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R763 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R190 s@^referer(?=:[^\n]*[./](?:10086\.cn)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R764 -s@^referer(?=:[^\n]*[./](?:107\.150\.17\.66|23\.226\.134\.115|23\.226\.134\.116|23\.226\.138\.28|67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R765 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R191 s@^referer(?=:[^\n]*[./](?:10pan\.cc|77pan\.cc|789disc\.cc|789pan\.cc|huimeiku\.com|ifonce\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R766 -s@^referer(?=:[^\n]*[./](?:120sports\.com|africanindy\.com|beqala\.com|bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|cbsnews\.com|cwtv\.com|deadspin\.com|denofgeek\.co|denofgeek\.com|drupalcommerce\.org|ew\.com|forbes\.com|foxnews\.com|gawker\.com|gizmodo\.com|independent\.co\.uk|investopedia\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|latimes\.com|lifehacker\.com|m\.tmz\.com|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|merriam-webster\.com|mlb\.com|nauticexpo\.com|nytimes\.com|orbitz\.com|sendtonews\.com|thesimsresource\.com|time\.com|urbandictionary\.com|vanityfair\.com|video\.foxbusiness\.com|video\.foxnews\.com|vroomvroomvroom\.com\.au|weather\.com|weddingspot\.co\.uk|wlj\.net|zavvi\.com|zdnet\.com|zillow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R767 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R192 s@^referer(?=:[^\n]*[./](?:121\.40\.92\.135|7958\.com\.cn|9duli\.com|coladrive\.com|colayun\.com|dlzyw\.com|ffpan\.com|gqpdf\.com|gqzzw\.com|l7po\.com|pctowap\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R768 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R193 s@^referer(?=:[^\n]*[./](?:123\.138\.234\.240)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R769 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R194 s@^referer(?=:[^\n]*[./](?:123564\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R770 -s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|mahua\.com)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R195 +s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|keenfine\.com|mahua\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R771 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R196 s@^referer(?=:[^\n]*[./](?:126\.com|mail\.163\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R772 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R197 s@^referer(?=:[^\n]*[./](?:127\.0\.0\.1)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R773 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R198 s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R774 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R199 s@^referer(?=:[^\n]*[./](?:17\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R775 -s@^referer(?=:[^\n]*[./](?:178\.63\.99\.21)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R776 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R200 s@^referer(?=:[^\n]*[./](?:189\.cn)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R777 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R201 s@^referer(?=:[^\n]*[./](?:189\.cn|ali213\.net|coolpad\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R778 -s@^referer(?=:[^\n]*[./](?:1obl\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R779 -s@^referer(?=:[^\n]*[./](?:1point3acres\.com|66u\.com|dataguru\.cn|jiangsuphp\.jd-app\.com|launcher\.lenovo\.com|oneplusbbs\.com|readboy\.com|xda\.cn)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R780 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R202 s@^referer(?=:[^\n]*[./](?:21394\.com|94pan\.com|fmdisk\.com|fmdisk\.net|fmpan\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R781 -s@^referer(?=:[^\n]*[./](?:24smile\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R782 -s@^referer(?=:[^\n]*[./](?:28\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R783 -s@^referer(?=:[^\n]*[./](?:2dayshippingbymastercard\.com|catalogfavoritesvip\.com|chase\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R784 -s@^referer(?=:[^\n]*[./](?:2ip\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R785 -s@^referer(?=:[^\n]*[./](?:2mm\.tv|2mmei\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R786 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R203 s@^referer(?=:[^\n]*[./](?:360bifen\.cc|360bifen\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R787 -s@^referer(?=:[^\n]*[./](?:360haven\.com|9bis\.net|9jumpin\.com\.au|9news\.com\.au|9tutorials\.com|afreesms\.com|atlanticcitywebcam\.com|bbc\.com|bicimotosargentina\.com|bitcoiner\.net|budget101\.com|buickforums\.com|bullywiihacks\.com|carsfromitaly\.info|codeasily\.com|darkreloaded\.com|docpaste\.com|dragoart\.com|dreamscene\.org|drivearabia\.com|dsero\.com|epmads\.com|everythingon\.tv|fcportables\.com|ffiles\.com|file4go\.com|foro\.clubcelica\.es|free\.smsmarkaz\.urdupoint\.com|freecoins4\.me|freewaregenius\.com|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|full-ngage-games\.blogspot\.com|gamespowerita\.com|gifmagic\.com|hackintosh\.zone|hostyd\.com|ibmmainframeforum\.com|ilix\.in|keywestharborwebcam\.com|kingofgames\.net|korean-candy\.com|kshowes\.net|litecoiner\.net|livenewschat\.eu|lordpyrak\.net|lumload\.com|mangacap\.com|mangakaka\.com|megaallday\.com|misheel\.net|modsaholic\.com|morganhillwebcam\.com|moviemistakes\.com|mugiwaranofansub\.blogspot\.com\.ar|mypapercraft\.net|newsok\.com|ninjaraider\.com|nonags\.com|nornar\.com|numberempire\.com|nx8\.com|nyharborwebcam\.com|omegadrivers\.net|photos\.essence\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com|preemlinks\.com|priva\.us|puromarketing\.com|radioaficion\.com|rapid8\.com|readersdigest\.com\.au|seeingwithsound\.com|simply-debrid\.com|smashgamez\.com|softpedia\.com|software4all-now\.blogspot\.co\.uk|spoilertv\.com|tamercome\.blogspot\.co\.uk|tech-blog\.net|techydoor\.com|thememypc\.com|themes\.themaxdavis\.com|tipstank\.com|top100clans\.com|trutower\.com|tv-kino\.net|upfordown\.com|uploadlw\.com|urlink\.at|virginmedia\.com|warp2search\.net|washington\.edu|winterrowd\.com|wtf-teen\.com|yellowbridge\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R788 -s@^referer(?=:[^\n]*[./](?:360haven\.com|9bis\.net|9news\.com\.au|9tutorials\.com|afreesms\.com|altoque\.com|androidrepublic\.org|apkmirror\.com|aseanlegacy\.net|atlanticcitywebcam\.com|better-explorer\.com|bicimotosargentina\.com|bitcofree\.com|bitcoiner\.net|bitcoinker\.com|borfast\.com|boxbit\.co\.in|budget101\.com|buickforums\.com|bullywiihacks\.com|calcularindemnizacion\.es|chrissmoove\.com|clubedohardware\.com\.br|danydanielrt\.com|darkreloaded\.com|debridit\.com|debridnet\.com|dev-metal\.com|docpaste\.com|dragoart\.com|dreamscene\.org|drivearabia\.com|dsero\.com|epmads\.com|ezoden\.com|fcportables\.com|file4go\.com|foro\.clubcelica\.es|free\.smsmarkaz\.urdupoint\.com|freebitco\.in|freecoins4\.me|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|full-ngage-games\.blogspot\.com|gamespowerita\.com|getdebrid\.com|gnomio\.com|hackintosh\.zone|hostyd\.com|hubturkey\.net|ibmmainframeforum\.com|ilix\.in|incredibox\.com|kadinlarkulubu\.com|keywestharborwebcam\.com|kingofgames\.net|korean-candy\.com|kshowes\.net|leecher\.us|liberallogic101\.com|litecoiner\.net|livenewschat\.eu|lomeutec\.com|lordpyrak\.net|mailbait\.info|mangacap\.com|mangahop\.com|mangakaka\.com|masfuertequeelhierro\.com|megaleech\.us|misheel\.net|morganhillwebcam\.com|moviemistakes\.com|mpc-g\.com|mugiwaranofansub\.blogspot\.com\.ar|mypapercraft\.net|narkive\.com|niresh\.co|niresh12495\.com|nonags\.com|nornar\.com|noticiasautomotivas\.com\.br|numberempire\.com|nyharborwebcam\.com|omegadrivers\.net|play-old-pc-games\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com|preemlinks\.com|priva\.us|puromarketing\.com|radioaficion\.com|rapid8\.com|scriptnulled\.eu|settlersonlinemaps\.com|simply-debrid\.com|sizedrive\.com|slideplayer\.com\.br|smashgamez\.com|softpedia\.com|software4all-now\.blogspot\.co\.uk|spoilertv\.com|tamercome\.blogspot\.co\.uk|tech-blog\.net|techydoor\.com|thememypc\.com|themes\.themaxdavis\.com|tipstank\.com|trutower\.com|unlocktheinbox\.com|upfordown\.com|uploadlw\.com|urlink\.at|wallpapersimages\.co\.uk|washington\.edu|whatismyip\.com|winterrowd\.com|wrestlingtalk\.org|xcl\.com\.br|yellowbridge\.com|zeperfs\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R789 -s@^referer(?=:[^\n]*[./](?:3news\.co\.nz|49ers\.com|atlantafalcons\.com|azcardinals\.com|baltimoreravens\.com|buccaneers\.com|buffalobills\.com|chargers\.com|chicagobears\.com|clevelandbrowns\.com|colts\.com|dallascowboys\.com|denverbroncos\.com|detroitlions\.com|egirlgames\.net|euronews\.com|giants\.com|globaltv\.com|houstontexans\.com|jaguars\.com|kcchiefs\.com|ktvu\.com|miamidolphins\.com|neworleanssaints\.com|newyorkjets\.com|packers\.com|panthers\.com|patriots\.com|philadelphiaeagles\.com|raiders\.com|redskins\.com|rte\.ie|seahawks\.com|steelers\.com|stlouisrams\.com|thecomedynetwork\.ca|titansonline\.com|vikings\.com|wpcomwidgets\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R790 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R204 s@^referer(?=:[^\n]*[./](?:4008927927\.cn)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R791 -s@^referer(?=:[^\n]*[./](?:4chan\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R792 -s@^referer(?=:[^\n]*[./](?:4mycams\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R793 -s@^referer(?=:[^\n]*[./](?:4shared\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R794 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R205 s@^referer(?=:[^\n]*[./](?:5060\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R795 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R206 s@^referer(?=:[^\n]*[./](?:520tingshu\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R796 -s@^referer(?=:[^\n]*[./](?:5i5j\.com|9588\.com|diantai\.ifeng\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|rapoo\.cn|rapoo\.nl|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R207 +s@^referer(?=:[^\n]*[./](?:5i5j\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R797 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R208 s@^referer(?=:[^\n]*[./](?:666ccc\.com|g3000\.com\.cn|hfchenming\.com\.cn|missioncouver\.com\.cn|op\.52pk\.com|yue365\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R798 -s@^referer(?=:[^\n]*[./](?:6abc\.com|7online\.com|abc11\.com|abc13\.com|abc30\.com|abc7\.com|abc7chicago\.com|abc7news\.com|ahctv\.com|animalplanet\.com|destinationamerica\.com|discovery\.com|discoverylife\.com|tlc\.com)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R209 +s@^referer(?=:[^\n]*[./](?:66u\.com|dataguru\.cn|oneplusbbs\.com|readboy\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R799 -s@^referer(?=:[^\n]*[./](?:7days\.ru|bigpicture\.ru|iphones\.ru|lenta\.ru|rambler\.ru|ria\.ru|sovsport\.md|sovsport\.ru|sportbox\.ru|sports\.ru|tjournal\.ru|vc\.ru)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R210 +s@^referer(?=:[^\n]*[./](?:67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R800 -s@^referer(?=:[^\n]*[./](?:7days\.ru|bigpicture\.ru|kakprosto\.ru|lenta\.ru|rambler\.ru|ria\.ru|rusplt\.ru|sobesednik\.ru|sovsport\.md|sovsport\.ru|sportbox\.ru|sports\.ru|tjournal\.ru|vc\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R801 -s@^referer(?=:[^\n]*[./](?:7days\.ru|sports\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R802 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R211 s@^referer(?=:[^\n]*[./](?:7k7k\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R803 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R212 s@^referer(?=:[^\n]*[./](?:7net\.com\.tw|ibon\.com\.tw|pxmart\.com\.tw)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R804 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R213 s@^referer(?=:[^\n]*[./](?:888\.sports\.qq\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R805 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R214 s@^referer(?=:[^\n]*[./](?:88box\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R806 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R215 s@^referer(?=:[^\n]*[./](?:88boxjx\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R807 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R216 s@^referer(?=:[^\n]*[./](?:95516\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R808 -s@^referer(?=:[^\n]*[./](?:999\.md)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R217 +s@^referer(?=:[^\n]*[./](?:9588\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R809 -s@^referer(?=:[^\n]*[./](?:99px\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R810 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R218 s@^referer(?=:[^\n]*[./](?:9duli\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R811 -s@^referer(?=:[^\n]*[./](?:9jumpin\.com\.au|9news\.com\.au|bigbrother\.com\.au|ninemsn\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R812 -s@^referer(?=:[^\n]*[./](?:9news\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R813 -s@^referer(?=:[^\n]*[./](?:a-d-sign\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R814 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com|abcfamily\.go\.com|abcnews\.go\.com|adultswim\.com|cartoonnetwork\.com|cc\.com|channel5\.com|cmt\.com|colbertnation\.com|comedycentral\.com|eonline\.com|espn\.go\.com|espndeportes\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com|flexonline\.com|gametrailers\.com|ign\.com|logotv\.com|mlb\.mlb\.com|mtv\.com|mtvnservices\.com|muscleandfitness\.com|nascar\.com|nbc\.com|nbcnews\.com|nbcsports\.com|nick\.com|player\.theplatform\.com|simpsonsworld\.com|sky\.com|southpark\.nl|southparkstudios\.com|spike\.com|teamcoco\.com|teennick\.com|thedailyshow\.com|thingx\.tv|tv3play\.se|tvland\.com|uverseonline\.att\.net|vevo\.com|vh1\.com|video\.cnbc\.com|vod\.fxnetworks\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R815 -s@^referer(?=:[^\n]*[./](?:abcphoto\.com\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R816 -s@^referer(?=:[^\n]*[./](?:about\.com|armstrongmywire\.com|atlanticbb\.net|bestbuy\.com|bresnan\.net|broadstripe\.net|buckeyecablesystem\.net|cableone\.net|centurylink\.net|charter\.net|cincinnatibell\.net|dish\.net|ehow\.com|forbbbs\.org|forbes\.com|hargray\.net|hawaiiantel\.net|hickorytech\.net|homeaway\.co\.uk|knology\.net|livestrong\.com|mediacomtoday\.com|midco\.net|mybendbroadband\.com|mybrctv\.com|mycenturylink\.com|myconsolidated\.net|myepb\.net|mygrande\.net|mygvtc\.com|myhughesnet\.com|myritter\.com|northstate\.net|nwcable\.net|query\.nytimes\.com|rentals\.com|search\.rr\.com|searchresults\.verizon\.com|suddenlink\.net|surewest\.com|synacor\.net|tds\.net|toshiba\.com|trustedreviews\.com|truvista\.net|windstream\.net|windstreambusiness\.net|wowway\.net|zoover\.co\.uk|zoover\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R817 -s@^referer(?=:[^\n]*[./](?:about\.com|ehow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R818 -s@^referer(?=:[^\n]*[./](?:about\.com|ehow\.com|livestrong\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R819 -s@^referer(?=:[^\n]*[./](?:accelo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R820 -s@^referer(?=:[^\n]*[./](?:accounts\.google\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R821 -s@^referer(?=:[^\n]*[./](?:acmilan\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R822 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R823 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R824 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R825 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R826 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R827 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R828 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R829 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R830 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R831 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R832 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R833 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|enstarz\.com|explosm\.net|flexonline\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R834 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|afreesms\.com|androidrepublic\.org|apkmirror\.com|appraisersforum\.com|aseanlegacy\.net|better-explorer\.com|bitcofree\.com|bitcoinker\.com|boxbit\.co\.in|calcularindemnizacion\.es|chrissmoove\.com|clubedohardware\.com\.br|danydanielrt\.com|debridit\.com|debridnet\.com|demo-uhd3d\.com|dev-metal\.com|ezoden\.com|firstonetv\.com|freebitco\.in|freeprosurfer\.com|getdebrid\.com|gnomio\.com|hackintosh\.zone|hubturkey\.net|i-stats\.net|incredibox\.com|kadinlarkulubu\.com|leecher\.us|liberallogic101\.com|lomeutec\.com|mangacap\.com|mangahop\.com|masfuertequeelhierro\.com|megaleech\.us|mpc-g\.com|mypapercraft\.net|narkive\.com|niresh\.co|niresh12495\.com|nonags\.com|noticiasautomotivas\.com\.br|pattayaone\.net|play-old-pc-games\.com|sc2casts\.com|scriptnulled\.eu|settlersonlinemaps\.com|shinobilifeonline\.com|sizedrive\.com|slideplayer\.com\.br|streaming-hub\.com|unlockpwd\.com|unlocktheinbox\.com|uploadex\.com|wallpapersimages\.co\.uk|wrestlingtalk\.org|xcl\.com\.br|zeperfs\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R835 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|aplus\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|drhotze\.com|flexonline\.com|hallels\.com|hellou\.co\.uk|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|radaronline\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|stevedeace\.com|techtimes\.com|thechive\.com|themattwalshblog\.com|unilad\.co\.uk|variety\.com|weaponsmedia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R836 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|drhotze\.com|enstarz\.com|hallels\.com|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|redmaryland\.com|shark-tank\.com|stevedeace\.com|techtimes\.com|thechive\.com|themattwalshblog\.com|unilad\.co\.uk|weaponsmedia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R837 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R219 s@^referer(?=:[^\n]*[./](?:ad\.alimama\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R838 -s@^referer(?=:[^\n]*[./](?:addictinggames\.com|keygames\.com|nglmedia\.com|shockwave\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R839 -s@^referer(?=:[^\n]*[./](?:adguard\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R840 -s@^referer(?=:[^\n]*[./](?:adlib\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R841 -s@^referer(?=:[^\n]*[./](?:adline\.by|adline\.kiev\.ua|adline\.reformal\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R842 -s@^referer(?=:[^\n]*[./](?:adme\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R843 -s@^referer(?=:[^\n]*[./](?:adnetonline\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R844 -s@^referer(?=:[^\n]*[./](?:adroll\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R845 -s@^referer(?=:[^\n]*[./](?:ads\.bridgetrack\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R846 -s@^referer(?=:[^\n]*[./](?:ads\.twitter\.com|analytics\.twitter\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R847 -s@^referer(?=:[^\n]*[./](?:adsbox\.com\.ua|adsbox\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R848 -s@^referer(?=:[^\n]*[./](?:adservice\.kz)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R849 -s@^referer(?=:[^\n]*[./](?:adservicemedia\.dk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R850 -s@^referer(?=:[^\n]*[./](?:adstyle\.com\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R851 -s@^referer(?=:[^\n]*[./](?:adultswim\.com|animalist\.com|revision3\.com|testtube\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R852 -s@^referer(?=:[^\n]*[./](?:adultswim\.com|cartoonnetwork\.com|cnn\.com|hlntv\.com|nba\.com|tbs\.com|teamcoco\.com|tntdrama\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R853 -s@^referer(?=:[^\n]*[./](?:adv\.d3\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R854 -s@^referer(?=:[^\n]*[./](?:adv\.ramr\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R855 -s@^referer(?=:[^\n]*[./](?:adv\.ya\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R856 -s@^referer(?=:[^\n]*[./](?:advert-control\.ru|advert-empire\.com|advert-line\.ru|advert-technology\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R857 -s@^referer(?=:[^\n]*[./](?:advertisers\.io)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R858 -s@^referer(?=:[^\n]*[./](?:advertising\.amazon\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R859 -s@^referer(?=:[^\n]*[./](?:advertising\.apple\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R860 -s@^referer(?=:[^\n]*[./](?:advertising\.sanoma\.be)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R861 -s@^referer(?=:[^\n]*[./](?:adview\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R862 -s@^referer(?=:[^\n]*[./](?:adweb\.by)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R863 -s@^referer(?=:[^\n]*[./](?:adwords\.google\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R864 -s@^referer(?=:[^\n]*[./](?:afdah\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R865 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.co\.uk|affiliate-program\.amazon\.com|affiliate-program\.amazon\.in|affiliate\.amazon\.co\.jp|afiliados\.amazon\.es|associados\.amazon\.com\.br|associates\.amazon\.ca|associates\.amazon\.cn|partenaires\.amazon\.fr|partnernet\.amazon\.de|programma-affiliazione\.amazon\.it)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R866 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R867 -s@^referer(?=:[^\n]*[./](?:affinitylive\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R868 -s@^referer(?=:[^\n]*[./](?:affrity\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R869 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R870 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R871 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R872 -s@^referer(?=:[^\n]*[./](?:affrity\.com|lockd\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R873 -s@^referer(?=:[^\n]*[./](?:afisha\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R874 -s@^referer(?=:[^\n]*[./](?:afisha\.ru|aif\.ru|eg\.ru|ex\.ua|forum\.tatfish\.com|grandars\.ru|klops\.ru|meta\.ua|mobile-review\.com|ozon\.ru|thg\.ru|vz\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R875 -s@^referer(?=:[^\n]*[./](?:afisha\.ru|aif\.ru|ex\.ua|fileplaneta\.com|forum\.tatfish\.com|grandars\.ru|klops\.ru|meta\.ua|oceanvideo\.ru|ozon\.ru|thg\.ru|vz\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R876 -s@^referer(?=:[^\n]*[./](?:afl\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R877 -s@^referer(?=:[^\n]*[./](?:afl\.com\.au|goal\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R878 -s@^referer(?=:[^\n]*[./](?:afreesms\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R879 -s@^referer(?=:[^\n]*[./](?:aftenposten\.no|bt\.no|ekstrabladet\.dk|kuriren\.nu|qbrick\.com|svd\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R880 -s@^referer(?=:[^\n]*[./](?:aftenposten\.no|e24\.no|hardware\.no|vg\.no)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R881 -s@^referer(?=:[^\n]*[./](?:aftershock\.news|expertbank\.com|hock5\.ru|legionhardware\.com|rw\.by)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R882 -s@^referer(?=:[^\n]*[./](?:akado\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R883 -s@^referer(?=:[^\n]*[./](?:akado\.ru|megafon\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R884 -s@^referer(?=:[^\n]*[./](?:akam\.no|amobil\.no|gamer\.no|hardware\.no|teknofil\.no)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R885 -s@^referer(?=:[^\n]*[./](?:akprior\.com|eurobank-ua\.com|maingear\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R886 -s@^referer(?=:[^\n]*[./](?:aktiv48\.ru|interzet\.ru|pgpru\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R887 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|megafon\.ru|mirtesen\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R888 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|megafon\.ru|sovsport\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R889 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|mts\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R890 -s@^referer(?=:[^\n]*[./](?:all-episodes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R891 -s@^referer(?=:[^\n]*[./](?:allserial\.tv|turbobitit\.org|vidhost12\.org)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R892 -s@^referer(?=:[^\n]*[./](?:alphatv\.gr)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R893 -s@^referer(?=:[^\n]*[./](?:alscash\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R894 -s@^referer(?=:[^\n]*[./](?:altapress\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R895 -s@^referer(?=:[^\n]*[./](?:altapress\.ru|artfile\.ru|baskino\.com|biysk24\.ru|klops\.ru|kulturologia\.ru|lokomotiv\.info|russianfood\.com|topnews\.ru|verstov\.info)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R896 -s@^referer(?=:[^\n]*[./](?:altoque\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R897 -s@^referer(?=:[^\n]*[./](?:am\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R898 -s@^referer(?=:[^\n]*[./](?:amateursexy\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R899 -s@^referer(?=:[^\n]*[./](?:amazon\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R900 -s@^referer(?=:[^\n]*[./](?:amctheatres\.com|beqala\.com|bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|drupalcommerce\.org|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|nedbank\.co\.za|orbitz\.com|podomatic\.com|weddingspot\.co\.uk|wlj\.net|zavvi\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R901 -s@^referer(?=:[^\n]*[./](?:amctheatres\.com|pitchfork\.com|podomatic\.com|virginaustralia\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R902 -s@^referer(?=:[^\n]*[./](?:amic\.ru|animespirit\.ru|citilink\.ru|furfurmag\.ru|killot\.ru|onlime\.ru|sobesednik\.ru|toptracker\.ru|webnames\.ru|wildberries\.ru|zalivalka\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R903 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.co\.jp)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R904 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R905 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R906 -s@^referer(?=:[^\n]*[./](?:ancestry\.com|ancestry\.com\.au)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R907 -s@^referer(?=:[^\n]*[./](?:anchorfree\.us)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R908 -s@^referer(?=:[^\n]*[./](?:animecrave\.com|bostonherald\.com|deluxemusic\.tv|deluxetelevision\.com|theunlockr\.com|videopoker\.com|weeklyworldnews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R909 -s@^referer(?=:[^\n]*[./](?:animecrazy\.net|gamedorm\.org|gamepro\.com|satsukai\.com|sparknotes\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R910 -s@^referer(?=:[^\n]*[./](?:anisearch\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R911 -s@^referer(?=:[^\n]*[./](?:anizm\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R912 -s@^referer(?=:[^\n]*[./](?:ansingstatejournal\.com|app\.com|battlecreekenquirer\.com|clarionledger\.com|coloradoan\.com|dailyrecord\.com|dailyworld\.com|delmarvanow\.com|freep\.com|greatfallstribune\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|ithacajournal\.com|jconline\.com|livingstondaily\.com|montgomeryadvertiser\.com|mycentraljersey\.com|news-press\.com|pal-item\.com|pnj\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|shreveporttimes\.com|stargazette\.com|tallahassee\.com|theadvertiser\.com|thecalifornian\.com|thedailyjournal\.com|thenewsstar\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|visaliatimesdelta\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R913 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresmedia\.com|atresplayer\.com|lasexta\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R914 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresmedia\.com|atresplayer\.com|lasexta\.com|majorleaguegaming\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R915 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresplayer\.com|lasexta\.com|ondacero\.es)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R916 -s@^referer(?=:[^\n]*[./](?:antena3\.com|europafm\.com|ondacero\.es|vertele\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R917 -s@^referer(?=:[^\n]*[./](?:aol\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R918 -s@^referer(?=:[^\n]*[./](?:aol\.com|engadget\.com|games\.com|huffingtonpost\.com|mapquest\.com|stylelist\.ca)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R919 -s@^referer(?=:[^\n]*[./](?:aopschools\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R920 -s@^referer(?=:[^\n]*[./](?:ap\.org|majorleaguegaming\.com|newsinc\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R921 -s@^referer(?=:[^\n]*[./](?:apartments\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R922 -s@^referer(?=:[^\n]*[./](?:api\.kinomoov\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R923 -s@^referer(?=:[^\n]*[./](?:app\.com|argusleader\.com|autoguide\.com|battlecreekenquirer\.com|baxterbulletin\.com|beqala\.com|boatshop24\.com|bodas\.com\.mx|bodas\.net|bucyrustelegraphforum\.com|burlingtonfreepress\.com|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|chillicothegazette\.com|cincinnati\.com|clarionledger\.com|coloradoan\.com|coshoctontribune\.com|courier-journal\.com|courierpostonline\.com|dailyrecord\.com|dailyworld\.com|deadspin\.com|defensenews\.com|delawareonline\.com|democratandchronicle\.com|desmoinesregister\.com|dnj\.com|drupalcommerce\.org|escapegames\.com|fdlreporter\.com|floridatoday\.com|foxnews\.com|freep\.com|games\.latimes\.com|gawker\.com|gizmodo\.com|greatfallstribune\.com|greenbaypressgazette\.com|greenvilleonline\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|htrnews\.com|indystar\.com|investopedia\.com|io9\.com|ithacajournal\.com|jacksonsun\.com|jalopnik\.com|jconline\.com|jezebel\.com|kotaku\.com|lancastereaglegazette\.com|lansingstatejournal\.com|lifehacker\.com|livingstondaily\.com|lohud\.com|mansfieldnewsjournal\.com|mariages\.net|marionstar\.com|marshfieldnewsherald\.com|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|montgomeryadvertiser\.com|motorcycle\.com|mycentraljersey\.com|mydesert\.com|mysoju\.com|nauticexpo\.com|nedbank\.co\.za|nedbankgreen\.co\.za|newarkadvocate\.com|news-leader\.com|news-press\.com|newsleader\.com|nonags\.com|orbitz\.com|pal-item\.com|podomatic\.com|portclintonnewsherald\.com|postcrescent\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|sctimes\.com|sheboyganpress\.com|shreveporttimes\.com|stargazette\.com|statesmanjournal\.com|stevenspointjournal\.com|tallahassee\.com|tennessean\.com|theadvertiser\.com|thedailyjournal\.com|theleafchronicle\.com|thenews-messenger\.com|thenewsstar\.com|thenorthwestern\.com|thesimsresource\.com|thespectrum\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|ticketek\.com\.ar|urbandictionary\.com|virginaustralia\.com|visaliatimesdelta\.com|volokh\.com|vroomvroomvroom\.com\.au|wausaudailyherald\.com|weddingspot\.co\.uk|wisconsinrapidstribune\.com|wlj\.net|zanesvilletimesrecorder\.com|zavvi\.com|zillow\.com|zui\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R924 -s@^referer(?=:[^\n]*[./](?:app\.com|argusleader\.com|aviationweek\.com|battlecreekenquirer\.com|baxterbulletin\.com|bucyrustelegraphforum\.com|burlingtonfreepress\.com|centralohio\.com|chillicothegazette\.com|cincinnati\.com|citizen-times\.com|clarionledger\.com|coloradoan\.com|coshoctontribune\.com|courier-journal\.com|courierpostonline\.com|dailyrecord\.com|dailyworld\.com|delawareonline\.com|delmarvanow\.com|democratandchronicle\.com|desmoinesregister\.com|dnj\.com|fdlreporter\.com|foxsmallbusinesscenter\.com|freep\.com|greatfallstribune\.com|greenbaypressgazette\.com|greenvilleonline\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|honoluluadvertiser\.com|htrnews\.com|indystar\.com|jacksonsun\.com|jconline\.com|lancastereaglegazette\.com|lansingstatejournal\.com|livingstondaily\.com|lohud\.com|mansfieldnewsjournal\.com|marionstar\.com|marshfieldnewsherald\.com|montgomeryadvertiser\.com|mycentraljersey\.com|mydesert\.com|newarkadvocate\.com|news-leader\.com|news-press\.com|newsleader\.com|pal-item\.com|pnj\.com|portclintonnewsherald\.com|postcrescent\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|sctimes\.com|sheboyganpress\.com|shreveporttimes\.com|stargazette\.com|statesmanjournal\.com|stevenspointjournal\.com|tallahassee\.com|tennessean\.com|theadvertiser\.com|thecalifornian\.com|thedailyjournal\.com|theithacajournal\.com|theleafchronicle\.com|thenews-messenger\.com|thenewsstar\.com|thenorthwestern\.com|thespectrum\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|visaliatimesdelta\.com|wausaudailyherald\.com|weather\.com|wisconsinrapidstribune\.com|zanesvilletimesrecorder\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R925 -s@^referer(?=:[^\n]*[./](?:apple\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R926 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R220 s@^referer(?=:[^\n]*[./](?:appledaily\.com\.tw)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R927 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R221 s@^referer(?=:[^\n]*[./](?:appledaily\.com|nextmedia\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R928 -s@^referer(?=:[^\n]*[./](?:apps\.admob\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R929 -s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R93 -s@^referer(?=:[^\n]*[./](?:anistar\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R930 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|autonews\.ru|glav\.su|kp\.ru|sobesednik\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R931 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|glav\.su|kp\.ru|newstube\.ru|sobesednik\.ru|soccer\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R932 -s@^referer(?=:[^\n]*[./](?:armstrongmywire\.com|atlanticbb\.net|bestbuy\.com|bresnan\.net|broadstripe\.net|buckeyecablesystem\.net|cableone\.net|centurylink\.net|charter\.net|cincinnatibell\.net|dish\.net|forbbbs\.org|forbes\.com|gumtree\.com\.au|hargray\.net|hawaiiantel\.net|hickorytech\.net|homeaway\.co\.uk|knology\.net|livestrong\.com|mediacomtoday\.com|midco\.net|mybendbroadband\.com|mybrctv\.com|mycenturylink\.com|myconsolidated\.net|myepb\.net|mygrande\.net|mygvtc\.com|myhughesnet\.com|myritter\.com|northstate\.net|nwcable\.net|query\.nytimes\.com|rentals\.com|search\.rr\.com|searchresults\.verizon\.com|suddenlink\.net|surewest\.com|synacor\.net|tds\.net|toshiba\.com|trustedreviews\.com|truvista\.net|windstream\.net|windstreambusiness\.net|wowway\.net|www\.google\.com|zoover\.co\.uk|zoover\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R933 -s@^referer(?=:[^\n]*[./](?:asianmommy\.com|filmcrave\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R934 -s@^referer(?=:[^\n]*[./](?:askqology\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R935 -s@^referer(?=:[^\n]*[./](?:astromeridian\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R936 -s@^referer(?=:[^\n]*[./](?:atlant-m\.in\.ua)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R937 -s@^referer(?=:[^\n]*[./](?:atlanticcitywebcam\.com|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|keywestharborwebcam\.com|morganhillwebcam\.com|nyharborwebcam\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R938 -s@^referer(?=:[^\n]*[./](?:audio-hi-fi\.ru|electric-house\.ru|stroi-help\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R939 -s@^referer(?=:[^\n]*[./](?:audiomack\.com|cbc\.ca|cnet\.com|eboundservices\.com|edmunds\.com|gamejolt\.com|globalnews\.ca|live\.geo\.tv|news\.sky\.com|nfl\.com|reuters\.tv|rottentomatoes\.com|softgames\.de|thestreet\.com|video\.foxnews\.com|waywire\.com|wibbitz\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R940 -s@^referer(?=:[^\n]*[./](?:audiomack\.com|cbc\.ca|cnet\.com|gamejolt\.com|news\.sky\.com|theverge\.com|video\.foxbusiness\.com|video\.foxnews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R941 -s@^referer(?=:[^\n]*[./](?:autocentrum\.pl)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R942 -s@^referer(?=:[^\n]*[./](?:autoguide\.com|avclub\.com|boatshop24\.com|cadenasuper\.com|dailygames\.com|demotywatory\.pl|drivearabia\.com|ensonhaber\.com|escapegames\.com|juegosdiarios\.com|lbox\.me|letio\.com|lightinthebox\.com|memegenerator\.net|motorcycle\.com|mysoju\.com|nedbank\.co\.za|nedbankgreen\.co\.za|nx8\.com|playedonline\.com|playstationlifestyle\.net|readersdigest\.com\.au|sulekha\.com|ticketek\.com\.ar|volokh\.com|yfrog\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R943 -s@^referer(?=:[^\n]*[./](?:autoguide\.com|avclub\.com|boatshop24\.com|cadenasuper\.com|dailygames\.com|demotywatory\.pl|drivearabia\.com|ensonhaber\.com|juegosdiarios\.com|lbox\.me|letio\.com|lightinthebox\.com|memegenerator\.net|mysoju\.com|nedbank\.co\.za|nedbankgreen\.co\.za|nitrome\.com|nx8\.com|playedonline\.com|sulekha\.com|volokh\.com|yfrog\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R944 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|qip\.ru|rbc\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R945 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|qip\.ru|rbc\.ru|utro\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R946 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|utro\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R947 -s@^referer(?=:[^\n]*[./](?:autos\.ca)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R948 -s@^referer(?=:[^\n]*[./](?:autos\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R949 -s@^referer(?=:[^\n]*[./](?:ava\.md)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R950 -s@^referer(?=:[^\n]*[./](?:avforums\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R951 -s@^referer(?=:[^\n]*[./](?:b\.inbox\.lv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R952 -s@^referer(?=:[^\n]*[./](?:bactistatin\.com|gamexp\.ru|iguides\.ru|ingate\.ru|yandex\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R953 -s@^referer(?=:[^\n]*[./](?:baibako\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R954 -s@^referer(?=:[^\n]*[./](?:bandit\.se|lugnafavoriter\.com|nrj\.se|playradio\.se|radio1\.se|rixfm\.com|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R955 -s@^referer(?=:[^\n]*[./](?:banki\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R956 -s@^referer(?=:[^\n]*[./](?:bannerist\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R957 -s@^referer(?=:[^\n]*[./](?:bannersnack\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R958 -s@^referer(?=:[^\n]*[./](?:barnesandnoble\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R959 -s@^referer(?=:[^\n]*[./](?:barstoolsports\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R960 -s@^referer(?=:[^\n]*[./](?:baseball-reference\.com|basketball-reference\.com|gamespot\.com|hockey-reference\.com|pro-football-reference\.com|sitepoint\.com|speedtest\.net|sports-reference\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R961 -s@^referer(?=:[^\n]*[./](?:baynews9\.com|cfnews13\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R962 -s@^referer(?=:[^\n]*[./](?:bbc\.co\.uk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R963 -s@^referer(?=:[^\n]*[./](?:bbc\.co\.uk|bbc\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R964 -s@^referer(?=:[^\n]*[./](?:bbc\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R965 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R222 s@^referer(?=:[^\n]*[./](?:bbs\.yzz\.cn)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R966 -s@^referer(?=:[^\n]*[./](?:beeline\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R967 -s@^referer(?=:[^\n]*[./](?:beliebershotel\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R968 -s@^referer(?=:[^\n]*[./](?:bestru\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R969 -s@^referer(?=:[^\n]*[./](?:bet\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R970 -s@^referer(?=:[^\n]*[./](?:betbeaver\.com|betwonga\.com|betyper\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R971 -s@^referer(?=:[^\n]*[./](?:betbeaver\.com|internetcasinot\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R972 -s@^referer(?=:[^\n]*[./](?:betfair\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R973 -s@^referer(?=:[^\n]*[./](?:betwonga\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R974 -s@^referer(?=:[^\n]*[./](?:betwonga\.com|dealsplus\.com|matched-bet\.net|pcmag\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R975 -s@^referer(?=:[^\n]*[./](?:betwonga\.com|matched-bet\.net)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R976 -s@^referer(?=:[^\n]*[./](?:betyper\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R977 -s@^referer(?=:[^\n]*[./](?:beyazperde\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R978 -s@^referer(?=:[^\n]*[./](?:bingads\.microsoft\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R979 -s@^referer(?=:[^\n]*[./](?:bitcoinker\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R980 -s@^referer(?=:[^\n]*[./](?:biznews\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R981 -s@^referer(?=:[^\n]*[./](?:bizu\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R982 -s@^referer(?=:[^\n]*[./](?:bizu\.tv|foxsports\.com\.au|majorleaguegaming\.com|pbs\.org|wikihow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R983 -s@^referer(?=:[^\n]*[./](?:bkshopper\.com|geo-ship\.com|testfreaks\.co\.uk|watchmydeals\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R984 -s@^referer(?=:[^\n]*[./](?:blastro\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R985 -s@^referer(?=:[^\n]*[./](?:blesk\.cz|open\.fm)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R986 -s@^referer(?=:[^\n]*[./](?:blogtalkradio\.com|britannica\.com|collegehumor\.com|freeonlinegames\.com|openfilmpod\.com|stickam\.com|talkingpointsmemo\.com|thesource\.com|wildearth\.tv|wunderground\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R987 -s@^referer(?=:[^\n]*[./](?:bluesystem\.ru|kinozadrot\.net|miuipro\.ru|pesikot\.org|polismed\.ru|prisnilos\.su|qrz\.ru|tree\.tv)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R988 -s@^referer(?=:[^\n]*[./](?:bmw-motorrad\.com|bmw-motorrad\.ru)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R989 -s@^referer(?=:[^\n]*[./](?:bn0\.com|ebog\.com|gameark\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R990 -s@^referer(?=:[^\n]*[./](?:bn0\.com|ebog\.com|gameark\.com|yepi\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R991 -s@^referer(?=:[^\n]*[./](?:bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|weddingspot\.co\.uk|zillow\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R992 -s@^referer(?=:[^\n]*[./](?:bollywoodhungama\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R993 -s@^referer(?=:[^\n]*[./](?:bollywoodhungama\.com|videos\.mid-day\.com)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R994 -s@^referer(?=:[^\n]*[./](?:bombuj\.sk)):.*@ab2p-unblock-dnt@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R995 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R223 s@^referer(?=:[^\n]*[./](?:books\.com\.tw)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R996 -s@^referer(?=:[^\n]*[./](?:boracay\.tel)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R224 +s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R997 -s@^referer(?=:[^\n]*[./](?:bored\.com)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R225 +s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R998 -s@^referer(?=:[^\n]*[./](?:boredpanda\.com)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R226 +s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R999 -s@^referer(?=:[^\n]*[./](?:box10\.com|freeonlinegames\.com|games\.aarp\.org|kizi\.com|latimes\.com|merriam-webster\.com|puzzles\.usatoday\.com)):.*@ab2p-unblock-dnt@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R227 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn1860 -s@^referer(?!:[^\n]*[./](?:bluray-disc\.de)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R228 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn1861 -s@^referer(?!:[^\n]*[./](?:channel4\.com)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R229 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn1862 -s@^referer(?!:[^\n]*[./](?:cybergame\.tv)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R230 +s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn1863 -s@^referer(?!:[^\n]*[./](?:filmon\.tv|newgrounds\.com)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R231 +s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn1864 -s@^referer(?!:[^\n]*[./](?:patrz\.pl)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R232 +s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn1865 +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R233 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R234 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R235 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R236 +s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R237 +s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R238 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R239 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R240 +s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R241 +s@^referer(?=:[^\n]*[./](?:fharr\.com|gimhoy\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R242 +s@^referer(?=:[^\n]*[./](?:finance\.sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R243 +s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R244 +s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R245 +s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R246 +s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R247 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R248 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R249 +s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R250 +s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R251 +s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R252 +s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R253 +s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R254 +s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R255 +s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R256 +s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R257 +s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R258 +s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R259 +s@^referer(?=:[^\n]*[./](?:ieeee\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R260 +s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R261 +s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R262 +s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R263 +s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R264 +s@^referer(?=:[^\n]*[./](?:item\.jd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R265 +s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R266 +s@^referer(?=:[^\n]*[./](?:jjcast\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R267 +s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R268 +s@^referer(?=:[^\n]*[./](?:keenfine\.com|xoyo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R269 +s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R270 +s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R271 +s@^referer(?=:[^\n]*[./](?:laniqu\.com|veryeast\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R272 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R273 +s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R274 +s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R275 +s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R276 +s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R277 +s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R278 +s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R279 +s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R280 +s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R281 +s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R282 +s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R283 +s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R284 +s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R285 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R286 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R287 +s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R288 +s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn|wb\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R289 +s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R290 +s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R291 +s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R292 +s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R293 +s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R294 +s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R295 +s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R296 +s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R297 +s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R298 +s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R299 +s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R300 +s@^referer(?=:[^\n]*[./](?:sx566\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R301 +s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R302 +s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R303 +s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R304 +s@^referer(?=:[^\n]*[./](?:tdx\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R305 +s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R306 +s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R307 +s@^referer(?=:[^\n]*[./](?:tw\.autos\.yahoo\.com|tw\.buy\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R308 +s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R309 +s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R310 +s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R311 +s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R312 +s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R313 +s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R314 +s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R315 +s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R316 +s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R317 +s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R318 +s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R319 +s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R320 +s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R321 +s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R322 +s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R323 +s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R324 +s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R325 +s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R326 +s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R327 +s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R328 +s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R329 +s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn187 s@^referer(?!:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti s@^referer:.*@-ab2p-unblock-dnt-nR@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn1866 -s@^referer(?!:[^\n]*[./](?:tamilflix\.net)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn1867 -s@^referer(?!:[^\n]*[./](?:zattoo\.com)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn641 -s@^referer(?!:[^\n]*[./](?:p2p\.adserver\.ip)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn761 -s@^referer(?!:[^\n]*[./](?:superfilm\.pl)):.*@ab2p-unblock-dnt@Ti -s@^referer:.*@-ab2p-unblock-dnt-nR@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-nR s@^.*@ab2p-unblock-dnt@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1000 -s@^referer(?=:[^\n]*[./](?:boxlive\.tv|directon\.tv|foxnews\.ws|icastlive\.tv|wii-cast\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1001 -s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1002 -s@^referer(?=:[^\n]*[./](?:brandverity\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1003 -s@^referer(?=:[^\n]*[./](?:brazzerssupport\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1004 -s@^referer(?=:[^\n]*[./](?:brisbanetimes\.com\.au|smh\.com\.au|theage\.com\.au|watoday\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1005 -s@^referer(?=:[^\n]*[./](?:britishgas\.co\.uk|luxurylink\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1006 -s@^referer(?=:[^\n]*[./](?:bulletsfirst\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1007 -s@^referer(?=:[^\n]*[./](?:business-standard\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1008 -s@^referer(?=:[^\n]*[./](?:c\.brightcove\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1009 -s@^referer(?=:[^\n]*[./](?:ca\.weather\.yahoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1010 -s@^referer(?=:[^\n]*[./](?:canadianrockies\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1011 -s@^referer(?=:[^\n]*[./](?:candystand\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1012 -s@^referer(?=:[^\n]*[./](?:carambatv\.ru|life\.ru|molodejj\.tv|out\.pladform\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1013 -s@^referer(?=:[^\n]*[./](?:careerbuilder\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1014 -s@^referer(?=:[^\n]*[./](?:carsdirect\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1015 -s@^referer(?=:[^\n]*[./](?:cartalk\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1016 -s@^referer(?=:[^\n]*[./](?:cartoonnetwork\.co\.nz|cartoonnetworkasia\.com|cartoonnetworkhq\.com|manutd\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1017 -s@^referer(?=:[^\n]*[./](?:cartoonnetwork\.com|tnt\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1018 -s@^referer(?=:[^\n]*[./](?:cartoonnetworkasia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1019 -s@^referer(?=:[^\n]*[./](?:casadossegredos\.tv|xuuby\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1020 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|sianevents\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1021 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1022 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1023 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1024 -s@^referer(?=:[^\n]*[./](?:cbc\.ca)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1025 -s@^referer(?=:[^\n]*[./](?:cbs\.com|eventhubs\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1026 -s@^referer(?=:[^\n]*[./](?:cbs\.com|planetfools\.com|televisiondiv\.ucoz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1027 -s@^referer(?=:[^\n]*[./](?:cbsnews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1028 -s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cbssports\.com|cnettv\.cnet\.com|metacritic\.com|tv\.com|twitch\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1029 -s@^referer(?=:[^\n]*[./](?:cbsnews\.com|colbertlateshow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1030 -s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1031 -s@^referer(?=:[^\n]*[./](?:channel5\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1032 -s@^referer(?=:[^\n]*[./](?:channel5\.com|citytv\.com|player\.stv\.tv|uktv\.co\.uk|wwe\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1033 -s@^referer(?=:[^\n]*[./](?:charlieandmekids\.co\.nz|charlieandmekids\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1034 -s@^referer(?=:[^\n]*[./](?:charter\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1035 -s@^referer(?=:[^\n]*[./](?:cheaptickets\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1036 -s@^referer(?=:[^\n]*[./](?:cheaptickets\.com|orbitz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1037 -s@^referer(?=:[^\n]*[./](?:cheatsheet\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1038 -s@^referer(?=:[^\n]*[./](?:cheatsheet\.com|supercheats\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1039 -s@^referer(?=:[^\n]*[./](?:chrissmoove\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1040 -s@^referer(?=:[^\n]*[./](?:christianity\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1041 -s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1042 -s@^referer(?=:[^\n]*[./](?:cinemassacre\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1043 -s@^referer(?=:[^\n]*[./](?:circusstreet\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1044 -s@^referer(?=:[^\n]*[./](?:citationmachine\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1045 -s@^referer(?=:[^\n]*[./](?:citi\.com|citibank\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1046 -s@^referer(?=:[^\n]*[./](?:cityam\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1047 -s@^referer(?=:[^\n]*[./](?:citytv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1048 -s@^referer(?=:[^\n]*[./](?:civilization5cheats\.com|kzupload\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1049 -s@^referer(?=:[^\n]*[./](?:classifieds\.nydailynews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1050 -s@^referer(?=:[^\n]*[./](?:cleodesktop\.com|mugiwaranofansub\.blogspot\.com\.ar|musicacelestial\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1051 -s@^referer(?=:[^\n]*[./](?:clubedohardware\.com\.br)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1052 -s@^referer(?=:[^\n]*[./](?:clubedohardware\.com\.br|yellowbridge\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1053 -s@^referer(?=:[^\n]*[./](?:cms\.gov)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1054 -s@^referer(?=:[^\n]*[./](?:cnbc\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com|go\.com|nbc\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1055 -s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1056 -s@^referer(?=:[^\n]*[./](?:cnettv\.cnet\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1057 -s@^referer(?=:[^\n]*[./](?:cntraveller\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1058 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1059 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1060 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1061 -s@^referer(?=:[^\n]*[./](?:comedy\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1062 -s@^referer(?=:[^\n]*[./](?:comingsoon\.net|gamerevolution\.com|sohh\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1063 -s@^referer(?=:[^\n]*[./](?:conservativeintel\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1064 -s@^referer(?=:[^\n]*[./](?:contv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1065 -s@^referer(?=:[^\n]*[./](?:couponcodeswap\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1066 -s@^referer(?=:[^\n]*[./](?:cricketcountry\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1067 -s@^referer(?=:[^\n]*[./](?:cricketwireless\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1068 -s@^referer(?=:[^\n]*[./](?:ctc\.ru|mts\.ru|ozon\.ru|tnt-online\.ru|videomore\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1069 -s@^referer(?=:[^\n]*[./](?:cuantarazon\.com|cuantocabron\.com|vistoenfb\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1070 -s@^referer(?=:[^\n]*[./](?:cubeecraft\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1071 -s@^referer(?=:[^\n]*[./](?:cwtv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1072 -s@^referer(?=:[^\n]*[./](?:cyberdevilz\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1073 -s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com|youlea\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1074 -s@^referer(?=:[^\n]*[./](?:d3\.ru|dirty\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1075 -s@^referer(?=:[^\n]*[./](?:dafiti\.cl|dafiti\.com\.ar|dafiti\.com\.br|dafiti\.com\.co)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1076 -s@^referer(?=:[^\n]*[./](?:daft\.ie)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1077 -s@^referer(?=:[^\n]*[./](?:dailycaller\.com|valuewalk\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1078 -s@^referer(?=:[^\n]*[./](?:dailydot\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1079 -s@^referer(?=:[^\n]*[./](?:dailygames\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1080 -s@^referer(?=:[^\n]*[./](?:dailymail\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1081 -s@^referer(?=:[^\n]*[./](?:daisuki\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1082 -s@^referer(?=:[^\n]*[./](?:dasolo\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1083 -s@^referer(?=:[^\n]*[./](?:dating\.yahoo\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1084 -s@^referer(?=:[^\n]*[./](?:dayt\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1085 -s@^referer(?=:[^\n]*[./](?:deadspin\.com|foodnetwork\.com|gawker\.com|gizmodo\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|lifehacker\.com|weather\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1086 -s@^referer(?=:[^\n]*[./](?:deals\.segmentnext\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1087 -s@^referer(?=:[^\n]*[./](?:deliverydeals\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1088 -s@^referer(?=:[^\n]*[./](?:delo\.si)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1089 -s@^referer(?=:[^\n]*[./](?:demonoid\.ooo)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1090 -s@^referer(?=:[^\n]*[./](?:demonoid\.ph)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1091 -s@^referer(?=:[^\n]*[./](?:demonoid\.pw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1092 -s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1093 -s@^referer(?=:[^\n]*[./](?:deviantart\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1094 -s@^referer(?=:[^\n]*[./](?:di\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1095 -s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1096 -s@^referer(?=:[^\n]*[./](?:dic\.academic\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1097 -s@^referer(?=:[^\n]*[./](?:didigames\.com|nitrome\.com|nx8\.com|oyunlar1\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1098 -s@^referer(?=:[^\n]*[./](?:digiday\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1099 -s@^referer(?=:[^\n]*[./](?:digitalplayground\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1100 -s@^referer(?=:[^\n]*[./](?:digitoday\.fi|groovefm\.fi|hs\.fi|iltasanomat\.fi|istv\.fi|jimtv\.fi|livtv\.fi|loop\.fi|metrohelsinki\.fi|nelonen\.fi|nyt\.fi|radioaalto\.fi|radiorock\.fi|radiosuomipop\.fi|ruokala\.net|ruutu\.fi)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1101 -s@^referer(?=:[^\n]*[./](?:dillards\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1102 -s@^referer(?=:[^\n]*[./](?:directon\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1103 -s@^referer(?=:[^\n]*[./](?:directon\.tv|games\.yahoo\.com|onescreen\.net|wii-cast\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1104 -s@^referer(?=:[^\n]*[./](?:directon\.tv|wii-cast\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1105 -s@^referer(?=:[^\n]*[./](?:dirtstyle\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1106 -s@^referer(?=:[^\n]*[./](?:dirty\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1107 -s@^referer(?=:[^\n]*[./](?:discovery\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1108 -s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1109 -s@^referer(?=:[^\n]*[./](?:disney\.no)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1110 -s@^referer(?=:[^\n]*[./](?:disqus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1111 -s@^referer(?=:[^\n]*[./](?:dizi-mag\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1112 -s@^referer(?=:[^\n]*[./](?:dlh\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1113 -s@^referer(?=:[^\n]*[./](?:dnswatch\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1114 -s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1115 -s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1116 -s@^referer(?=:[^\n]*[./](?:doctoroz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1117 -s@^referer(?=:[^\n]*[./](?:dogecoinpuddle\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1118 -s@^referer(?=:[^\n]*[./](?:domru\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1119 -s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1120 -s@^referer(?=:[^\n]*[./](?:doubleclick\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1121 -s@^referer(?=:[^\n]*[./](?:dramacafe\.in|ilive\.to|mackolik\.com|sahadan\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1122 -s@^referer(?=:[^\n]*[./](?:dramafever\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1123 -s@^referer(?=:[^\n]*[./](?:dramafever\.com|majorleaguegaming\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1124 -s@^referer(?=:[^\n]*[./](?:dramafever\.com|vaughnlive\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1125 -s@^referer(?=:[^\n]*[./](?:dressupgal\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1126 -s@^referer(?=:[^\n]*[./](?:drivearabia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1127 -s@^referer(?=:[^\n]*[./](?:dubs\.me|filestore123\.info|myfilestore\.com|portable77download\.blogspot\.com|pspmaniaonline\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1128 -s@^referer(?=:[^\n]*[./](?:dxdigitals\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1129 -s@^referer(?=:[^\n]*[./](?:dynamo\.dictionary\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1130 -s@^referer(?=:[^\n]*[./](?:e-hentai\.org|exhentai\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1131 -s@^referer(?=:[^\n]*[./](?:e24\.no)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1132 -s@^referer(?=:[^\n]*[./](?:eafyfsuh\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1133 -s@^referer(?=:[^\n]*[./](?:easyads\.eu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1135 -s@^referer(?=:[^\n]*[./](?:easyrecipesite\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1136 -s@^referer(?=:[^\n]*[./](?:ebay\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1137 -s@^referer(?=:[^\n]*[./](?:ebog\.com|gameark\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1138 -s@^referer(?=:[^\n]*[./](?:eclypsia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1139 -s@^referer(?=:[^\n]*[./](?:economist\.com|feedroom\.com|stanford\.edu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1140 -s@^referer(?=:[^\n]*[./](?:eg\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1141 -s@^referer(?=:[^\n]*[./](?:egreetings\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1142 -s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1143 -s@^referer(?=:[^\n]*[./](?:ehow\.com|livestrong\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1144 -s@^referer(?=:[^\n]*[./](?:eio\.manhattan\.yahoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1145 -s@^referer(?=:[^\n]*[./](?:ekstrabladet\.dk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1146 -s@^referer(?=:[^\n]*[./](?:elcomercio\.pe)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1147 -s@^referer(?=:[^\n]*[./](?:emag\.hu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1148 -s@^referer(?=:[^\n]*[./](?:emag\.hu|emag\.ro)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1149 -s@^referer(?=:[^\n]*[./](?:embed\.life\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1150 -s@^referer(?=:[^\n]*[./](?:empik\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1151 -s@^referer(?=:[^\n]*[./](?:engadget\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1152 -s@^referer(?=:[^\n]*[./](?:enjoydressup\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1153 -s@^referer(?=:[^\n]*[./](?:enter\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1154 -s@^referer(?=:[^\n]*[./](?:entertainment\.ie)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1155 -s@^referer(?=:[^\n]*[./](?:entertainment\.msn\.co\.nz|msn\.foxsports\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1156 -s@^referer(?=:[^\n]*[./](?:escapefan\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1157 -s@^referer(?=:[^\n]*[./](?:eskago\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1158 -s@^referer(?=:[^\n]*[./](?:esmas\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1159 -s@^referer(?=:[^\n]*[./](?:espn\.go\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1160 -s@^referer(?=:[^\n]*[./](?:espnf1\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1161 -s@^referer(?=:[^\n]*[./](?:espnfc\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1162 -s@^referer(?=:[^\n]*[./](?:etsy\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1163 -s@^referer(?=:[^\n]*[./](?:europaplus\.ru|retrofm\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1164 -s@^referer(?=:[^\n]*[./](?:europe-airports\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1165 -s@^referer(?=:[^\n]*[./](?:eurovisionsports\.tv|talksport\.co\.uk|wrc\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1166 -s@^referer(?=:[^\n]*[./](?:eventhubs\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1167 -s@^referer(?=:[^\n]*[./](?:everythingon\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1168 -s@^referer(?=:[^\n]*[./](?:evrl\.to|kinomoov\.net|megogo\.net|online\.ua|only-paper\.ru|raketa-tv\.com|seriatv\.ru|torrent-tv\.ru|uakino\.net|ualinux\.com|褌械锌谢芯褉邪褋褔械褌\.褉褎)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1169 -s@^referer(?=:[^\n]*[./](?:exashare\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1170 -s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1171 -s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1172 -s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1173 -s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1174 -s@^referer(?=:[^\n]*[./](?:expedia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1175 -s@^referer(?=:[^\n]*[./](?:expressen\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1176 -s@^referer(?=:[^\n]*[./](?:exrapidleech\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1177 -s@^referer(?=:[^\n]*[./](?:extremetube\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1178 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|keezmovies\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1179 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|spankwire\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1180 -s@^referer(?=:[^\n]*[./](?:ezone\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1181 -s@^referer(?=:[^\n]*[./](?:factom\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1182 -s@^referer(?=:[^\n]*[./](?:fairfaxmedia\.com\.au|myfairfax\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1183 -s@^referer(?=:[^\n]*[./](?:familydoctor\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1184 -s@^referer(?=:[^\n]*[./](?:fanatik\.com\.tr)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1185 -s@^referer(?=:[^\n]*[./](?:farmville\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1186 -s@^referer(?=:[^\n]*[./](?:fastpic\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1187 -s@^referer(?=:[^\n]*[./](?:fcportables\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1188 -s@^referer(?=:[^\n]*[./](?:fest-ry\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1189 -s@^referer(?=:[^\n]*[./](?:ffan\.ru|shop\.kz|transbank\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1190 -s@^referer(?=:[^\n]*[./](?:ffiles\.com|full-ngage-games\.blogspot\.com|kingofgames\.net|megaallday\.com|ninjaraider\.com|nonags\.com|upfordown\.com|wtf-teen\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1191 -s@^referer(?=:[^\n]*[./](?:filecore\.co\.nz)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1192 -s@^referer(?=:[^\n]*[./](?:fileover\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1193 -s@^referer(?=:[^\n]*[./](?:filerev\.cc)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1194 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in|go4up\.com|hqq\.tv|sizedrive\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1195 -s@^referer(?=:[^\n]*[./](?:filmux\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1196 -s@^referer(?=:[^\n]*[./](?:filmweb\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1197 -s@^referer(?=:[^\n]*[./](?:finance\.sina\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1198 -s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1199 -s@^referer(?=:[^\n]*[./](?:firstonetv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1200 -s@^referer(?=:[^\n]*[./](?:flaixfm\.cat)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1201 -s@^referer(?=:[^\n]*[./](?:flashgames247\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1202 -s@^referer(?=:[^\n]*[./](?:flashgames247\.com|freeonlinegames\.com|gameitnow\.com|play181\.com|toongames\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1203 -s@^referer(?=:[^\n]*[./](?:flipkart\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1204 -s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1205 -s@^referer(?=:[^\n]*[./](?:flv2mp3\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1206 -s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1207 -s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1208 -s@^referer(?=:[^\n]*[./](?:food\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1209 -s@^referer(?=:[^\n]*[./](?:foodnetwork\.com|msnbc\.com|player\.theplatform\.com|sky\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1210 -s@^referer(?=:[^\n]*[./](?:foodzy\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1211 -s@^referer(?=:[^\n]*[./](?:forbes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1212 -s@^referer(?=:[^\n]*[./](?:formspring\.me)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1213 -s@^referer(?=:[^\n]*[./](?:forums\.tweaktown\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1214 -s@^referer(?=:[^\n]*[./](?:forzamotorsport\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1215 -s@^referer(?=:[^\n]*[./](?:foxnews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1216 -s@^referer(?=:[^\n]*[./](?:free-send\.ru|izzylaif\.com|modfiles\.ru|osettlers\.com|trackitonline\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1217 -s@^referer(?=:[^\n]*[./](?:free-send\.ru|modfiles\.ru|osettlers\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1218 -s@^referer(?=:[^\n]*[./](?:free-space\.net|hxcmusic\.com|hxcmusic\.me|justfortrendygirls\.com|mmusicz\.com|receive-sms\.com|runescapehack\.net|spotifyripping\.com|stumblehere\.com|tvgorge\.com|tvokay\.com|videodownloadx\.com|wtso\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1219 -s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1220 -s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1221 -s@^referer(?=:[^\n]*[./](?:free\.smsmarkaz\.urdupoint\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1222 -s@^referer(?=:[^\n]*[./](?:freeallmusic\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1223 -s@^referer(?=:[^\n]*[./](?:freebitcoinz\.com|youserials\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1224 -s@^referer(?=:[^\n]*[./](?:freelancer\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1225 -s@^referer(?=:[^\n]*[./](?:freeshipping\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1226 -s@^referer(?=:[^\n]*[./](?:freewebarcade\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1227 -s@^referer(?=:[^\n]*[./](?:freeworldgroup\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1228 -s@^referer(?=:[^\n]*[./](?:fresh-book\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1229 -s@^referer(?=:[^\n]*[./](?:fs\.to)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1230 -s@^referer(?=:[^\n]*[./](?:ft\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1231 -s@^referer(?=:[^\n]*[./](?:ftlauderdalewebcam\.com|nyharborwebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1232 -s@^referer(?=:[^\n]*[./](?:fundsdata\.co\.za)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1233 -s@^referer(?=:[^\n]*[./](?:funnyordie\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1234 -s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1235 -s@^referer(?=:[^\n]*[./](?:gactv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1236 -s@^referer(?=:[^\n]*[./](?:game\.zylom\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1237 -s@^referer(?=:[^\n]*[./](?:gamefly\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1238 -s@^referer(?=:[^\n]*[./](?:gamehouse\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1239 -s@^referer(?=:[^\n]*[./](?:gamer-info\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1240 -s@^referer(?=:[^\n]*[./](?:games-tv\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1241 -s@^referer(?=:[^\n]*[./](?:games\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1242 -s@^referer(?=:[^\n]*[./](?:games\.softgames\.de)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1243 -s@^referer(?=:[^\n]*[./](?:games\.yahoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1244 -s@^referer(?=:[^\n]*[./](?:games\.yahoo\.com|onescreen\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1245 -s@^referer(?=:[^\n]*[./](?:gamesforwork\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1246 -s@^referer(?=:[^\n]*[./](?:gamespot\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1247 -s@^referer(?=:[^\n]*[./](?:gamesradar\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1248 -s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1249 -s@^referer(?=:[^\n]*[./](?:gaybeeg\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1250 -s@^referer(?=:[^\n]*[./](?:genvideos\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1251 -s@^referer(?=:[^\n]*[./](?:get\.x-link\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1252 -s@^referer(?=:[^\n]*[./](?:getcoupons\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1253 -s@^referer(?=:[^\n]*[./](?:ghostery\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1254 -s@^referer(?=:[^\n]*[./](?:ghsrv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1255 -s@^referer(?=:[^\n]*[./](?:gimhoy\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1256 -s@^referer(?=:[^\n]*[./](?:glamour\.com|itsjudytime\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1257 -s@^referer(?=:[^\n]*[./](?:glamourbabe\.eu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1258 -s@^referer(?=:[^\n]*[./](?:glassdoor\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1259 -s@^referer(?=:[^\n]*[./](?:globalnews\.ca)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1260 -s@^referer(?=:[^\n]*[./](?:go\.uakino\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1261 -s@^referer(?=:[^\n]*[./](?:goclips\.tv|letitbit\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1262 -s@^referer(?=:[^\n]*[./](?:golf\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1263 -s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1264 -s@^referer(?=:[^\n]*[./](?:google\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1265 -s@^referer(?=:[^\n]*[./](?:greasyfork\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1266 -s@^referer(?=:[^\n]*[./](?:greenbaypressgazette\.com|wcsh6\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1267 -s@^referer(?=:[^\n]*[./](?:gsmpro\.com\.pl|lechia\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1268 -s@^referer(?=:[^\n]*[./](?:gt-advertise\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1269 -s@^referer(?=:[^\n]*[./](?:guardian\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1270 -s@^referer(?=:[^\n]*[./](?:guardian\.co\.uk|landandfarm\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1271 -s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1272 -s@^referer(?=:[^\n]*[./](?:hackintosh\.zone)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1273 -s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1274 -s@^referer(?=:[^\n]*[./](?:hamalia\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1275 -s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1276 -s@^referer(?=:[^\n]*[./](?:hardocp\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1277 -s@^referer(?=:[^\n]*[./](?:hawk\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1278 -s@^referer(?=:[^\n]*[./](?:hcsibir\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1279 -s@^referer(?=:[^\n]*[./](?:hd-porn\.me)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1280 -s@^referer(?=:[^\n]*[./](?:healthboards\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1281 -s@^referer(?=:[^\n]*[./](?:heroichollywood\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1282 -s@^referer(?=:[^\n]*[./](?:heroichollywood\.com|supercheats\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1283 -s@^referer(?=:[^\n]*[./](?:hgst\.com|movie-pocket\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1284 -s@^referer(?=:[^\n]*[./](?:hiddencamsvideo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1285 -s@^referer(?=:[^\n]*[./](?:hinduladies\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1286 -s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1287 -s@^referer(?=:[^\n]*[./](?:hometheaterforum\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1288 -s@^referer(?=:[^\n]*[./](?:horny\.net|xmatch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1289 -s@^referer(?=:[^\n]*[./](?:hot899\.com|nj1015\.com|streamtheworld\.com|tsn\.ca)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1290 -s@^referer(?=:[^\n]*[./](?:hotukdeals\.com|jobamatic\.com|play\.google\.com|santander\.co\.uk|techrepublic\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1291 -s@^referer(?=:[^\n]*[./](?:hotwire\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1292 -s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1293 -s@^referer(?=:[^\n]*[./](?:hp\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1294 -s@^referer(?=:[^\n]*[./](?:hqq\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1295 -s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1296 -s@^referer(?=:[^\n]*[./](?:huffingtonpost\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1297 -s@^referer(?=:[^\n]*[./](?:huffingtonpost\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1298 -s@^referer(?=:[^\n]*[./](?:hulu\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1299 -s@^referer(?=:[^\n]*[./](?:humana-medicare\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1300 -s@^referer(?=:[^\n]*[./](?:hypeseek\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1301 -s@^referer(?=:[^\n]*[./](?:i-makeawish\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1302 -s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1303 -s@^referer(?=:[^\n]*[./](?:idnes\.cz|moviezone\.cz)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1304 -s@^referer(?=:[^\n]*[./](?:ifirstrowit\.eu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1305 -s@^referer(?=:[^\n]*[./](?:ifirstrowus\.eu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1306 -s@^referer(?=:[^\n]*[./](?:igougo\.com|travelocity\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1307 -s@^referer(?=:[^\n]*[./](?:igromania\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1308 -s@^referer(?=:[^\n]*[./](?:iguides\.ru|tvigle\.ru|wikimart\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1309 -s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1310 -s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1311 -s@^referer(?=:[^\n]*[./](?:ilive\.to)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1312 -s@^referer(?=:[^\n]*[./](?:ilix\.in|priva\.us)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1313 -s@^referer(?=:[^\n]*[./](?:ilix\.in|priva\.us|urlink\.at)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1314 -s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1315 -s@^referer(?=:[^\n]*[./](?:imagebam\.com|imgbox\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1316 -s@^referer(?=:[^\n]*[./](?:imasdk\.googleapis\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1317 -s@^referer(?=:[^\n]*[./](?:imdb\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1318 -s@^referer(?=:[^\n]*[./](?:imgserve\.net|imgtiger\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1319 -s@^referer(?=:[^\n]*[./](?:imhonet\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1320 -s@^referer(?=:[^\n]*[./](?:inbox\.lv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1321 -s@^referer(?=:[^\n]*[./](?:india\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1322 -s@^referer(?=:[^\n]*[./](?:indianexpress\.com|thehindu\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1323 -s@^referer(?=:[^\n]*[./](?:indiatimes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1324 -s@^referer(?=:[^\n]*[./](?:indiatvnews\.com|intoday\.in)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1325 -s@^referer(?=:[^\n]*[./](?:indiatvnews\.com|intoday\.in|moneycontrol\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1326 -s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1327 -s@^referer(?=:[^\n]*[./](?:insure\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1328 -s@^referer(?=:[^\n]*[./](?:insys\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1329 -s@^referer(?=:[^\n]*[./](?:interia\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1330 -s@^referer(?=:[^\n]*[./](?:internetcasinot\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1331 -s@^referer(?=:[^\n]*[./](?:ip-address\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1332 -s@^referer(?=:[^\n]*[./](?:ipla\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1333 -s@^referer(?=:[^\n]*[./](?:iprima\.cz)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1334 -s@^referer(?=:[^\n]*[./](?:irr\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1335 -s@^referer(?=:[^\n]*[./](?:item\.jd\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1336 -s@^referer(?=:[^\n]*[./](?:itools\.cn|laniqu\.com|tdx\.com\.cn|veryeast\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1337 -s@^referer(?=:[^\n]*[./](?:itreviews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1338 -s@^referer(?=:[^\n]*[./](?:itv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1339 -s@^referer(?=:[^\n]*[./](?:itv\.com|uktv\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1340 -s@^referer(?=:[^\n]*[./](?:izzylaif\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1341 -s@^referer(?=:[^\n]*[./](?:izzylaif\.com|trackitonline\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1342 -s@^referer(?=:[^\n]*[./](?:jabong\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1343 -s@^referer(?=:[^\n]*[./](?:jalan\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1344 -s@^referer(?=:[^\n]*[./](?:jamo\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1345 -s@^referer(?=:[^\n]*[./](?:jav4\.me)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1346 -s@^referer(?=:[^\n]*[./](?:javfee\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1347 -s@^referer(?=:[^\n]*[./](?:jc-mp\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1348 -s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1349 -s@^referer(?=:[^\n]*[./](?:jjcast\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1350 -s@^referer(?=:[^\n]*[./](?:jkhentai\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1351 -s@^referer(?=:[^\n]*[./](?:jobamatic\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1352 -s@^referer(?=:[^\n]*[./](?:joblib\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1353 -s@^referer(?=:[^\n]*[./](?:jobnet\.co\.il|jobs-israel\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1354 -s@^referer(?=:[^\n]*[./](?:jobstreet\.co\.id|jobstreet\.co\.in|jobstreet\.co\.th|jobstreet\.com|jobstreet\.com\.my|jobstreet\.com\.ph|jobstreet\.com\.sg|jobstreet\.vn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1355 -s@^referer(?=:[^\n]*[./](?:joindota\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1356 -s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1357 -s@^referer(?=:[^\n]*[./](?:kakprosto\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1358 -s@^referer(?=:[^\n]*[./](?:kakprosto\.ru|rusplt\.ru|sobesednik\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1359 -s@^referer(?=:[^\n]*[./](?:kasi-time\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1360 -s@^referer(?=:[^\n]*[./](?:keezmovies\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1361 -s@^referer(?=:[^\n]*[./](?:keygames\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1362 -s@^referer(?=:[^\n]*[./](?:kingofgames\.net|nedbank\.co\.za|nedbankgreen\.co\.za|virginaustralia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1363 -s@^referer(?=:[^\n]*[./](?:kinomoov\.net|vgtimes\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1364 -s@^referer(?=:[^\n]*[./](?:kinopoisk\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1365 -s@^referer(?=:[^\n]*[./](?:kissanime\.com|kisscartoon\.me)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1366 -s@^referer(?=:[^\n]*[./](?:kissanime\.to)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1367 -s@^referer(?=:[^\n]*[./](?:kisscartoon\.me)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1368 -s@^referer(?=:[^\n]*[./](?:km\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1369 -s@^referer(?=:[^\n]*[./](?:kmozart\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1370 -s@^referer(?=:[^\n]*[./](?:kmvt\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1371 -s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1372 -s@^referer(?=:[^\n]*[./](?:kongregate\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1373 -s@^referer(?=:[^\n]*[./](?:kporno\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1374 -s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1375 -s@^referer(?=:[^\n]*[./](?:ktiv\.com|wflx\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1376 -s@^referer(?=:[^\n]*[./](?:kval\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1377 -s@^referer(?=:[^\n]*[./](?:landandfarm\.com|query\.nytimes\.com|trustedreviews\.com|www\.google\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1378 -s@^referer(?=:[^\n]*[./](?:latimes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1379 -s@^referer(?=:[^\n]*[./](?:latinopost\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1380 -s@^referer(?=:[^\n]*[./](?:lavozdegalicia\.es)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1381 -s@^referer(?=:[^\n]*[./](?:led66\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1382 -s@^referer(?=:[^\n]*[./](?:lenislens\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1383 -s@^referer(?=:[^\n]*[./](?:lenta\.ru|news\.rambler\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1384 -s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1385 -s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1386 -s@^referer(?=:[^\n]*[./](?:life\.ru|smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1387 -s@^referer(?=:[^\n]*[./](?:lifemadedelicious\.ca|tac\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1388 -s@^referer(?=:[^\n]*[./](?:ligtv\.com\.tr)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1389 -s@^referer(?=:[^\n]*[./](?:live\.geo\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1390 -s@^referer(?=:[^\n]*[./](?:live\.scity\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1391 -s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1392 -s@^referer(?=:[^\n]*[./](?:livefromdarylshouse\.com|pandasecurity\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1393 -s@^referer(?=:[^\n]*[./](?:livejournal\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1394 -s@^referer(?=:[^\n]*[./](?:livelib\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1395 -s@^referer(?=:[^\n]*[./](?:livestream\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1396 -s@^referer(?=:[^\n]*[./](?:localmarket\.autismsupportnetwork\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1397 -s@^referer(?=:[^\n]*[./](?:locator\.transitcard\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1398 -s@^referer(?=:[^\n]*[./](?:login\.live\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1399 -s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1400 -s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1401 -s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1402 -s@^referer(?=:[^\n]*[./](?:loot\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1403 -s@^referer(?=:[^\n]*[./](?:lostfilm\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1404 -s@^referer(?=:[^\n]*[./](?:lshunter\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1405 -s@^referer(?=:[^\n]*[./](?:lucidchart\.com|lucidpress\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1406 -s@^referer(?=:[^\n]*[./](?:m\.naver\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1407 -s@^referer(?=:[^\n]*[./](?:m\.tmz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1408 -s@^referer(?=:[^\n]*[./](?:mackolik\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1409 -s@^referer(?=:[^\n]*[./](?:mackolik\.com|sahadan\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1410 -s@^referer(?=:[^\n]*[./](?:madyar\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1411 -s@^referer(?=:[^\n]*[./](?:magesy\.be)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1412 -s@^referer(?=:[^\n]*[./](?:magicseaweed\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1413 -s@^referer(?=:[^\n]*[./](?:mail\.live\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1414 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com|nfl\.com|player\.rogersradio\.ca|twitch\.tv|viki\.com|volarvideo\.com|worldstarhiphop\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1415 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com|pbs\.org|wikihow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1416 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|mangabird\.com|memegenerator\.net|onemanga\.me|waoanime\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1417 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|newgrounds\.com|xfire\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1418 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|onemanga\.me|pro-football-reference\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1419 -s@^referer(?=:[^\n]*[./](?:mangasky\.co)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1420 -s@^referer(?=:[^\n]*[./](?:mangaumaru\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1421 -s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1422 -s@^referer(?=:[^\n]*[./](?:maniatv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1423 -s@^referer(?=:[^\n]*[./](?:manualsonline\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1424 -s@^referer(?=:[^\n]*[./](?:manutd\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1425 -s@^referer(?=:[^\n]*[./](?:mapy\.hiking\.sk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1426 -s@^referer(?=:[^\n]*[./](?:market\.yandex\.by|market\.yandex\.kz|market\.yandex\.ru|market\.yandex\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1427 -s@^referer(?=:[^\n]*[./](?:marketwatch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1428 -s@^referer(?=:[^\n]*[./](?:marthastewart\.com|nbcsports\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1429 -s@^referer(?=:[^\n]*[./](?:mavrixonline\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R143 -s@^referer(?=:[^\n]*[./](?:channel4\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1430 -s@^referer(?=:[^\n]*[./](?:mavs\.wpengine\.netdna-cdn\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1431 -s@^referer(?=:[^\n]*[./](?:maxigame\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1432 -s@^referer(?=:[^\n]*[./](?:mediatechnologycenter\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1433 -s@^referer(?=:[^\n]*[./](?:medscape\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1434 -s@^referer(?=:[^\n]*[./](?:megogo\.net|smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1435 -s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1436 -s@^referer(?=:[^\n]*[./](?:melting-mindz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1437 -s@^referer(?=:[^\n]*[./](?:members\.portalbuzz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1438 -s@^referer(?=:[^\n]*[./](?:memecenter\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1439 -s@^referer(?=:[^\n]*[./](?:mercadolibre\.com\.ve)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1440 -s@^referer(?=:[^\n]*[./](?:mercadolivre\.com\.br)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1441 -s@^referer(?=:[^\n]*[./](?:metro\.ca)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1442 -s@^referer(?=:[^\n]*[./](?:metv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1443 -s@^referer(?=:[^\n]*[./](?:mevio\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1444 -s@^referer(?=:[^\n]*[./](?:mgts\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1445 -s@^referer(?=:[^\n]*[./](?:michaels\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1446 -s@^referer(?=:[^\n]*[./](?:microsoftvirtualacademy\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1447 -s@^referer(?=:[^\n]*[./](?:milb\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1448 -s@^referer(?=:[^\n]*[./](?:mitele\.es|telecinco\.es)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1449 -s@^referer(?=:[^\n]*[./](?:miwed\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1450 -s@^referer(?=:[^\n]*[./](?:mlb\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1451 -s@^referer(?=:[^\n]*[./](?:mlb\.mlb\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1452 -s@^referer(?=:[^\n]*[./](?:mlbtraderumors\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1453 -s@^referer(?=:[^\n]*[./](?:mlssoccer\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1454 -s@^referer(?=:[^\n]*[./](?:mma-core\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1455 -s@^referer(?=:[^\n]*[./](?:mmoaddict\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1456 -s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1457 -s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1458 -s@^referer(?=:[^\n]*[./](?:mobinozer\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1459 -s@^referer(?=:[^\n]*[./](?:mochigames\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R146 -s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1460 -s@^referer(?=:[^\n]*[./](?:moevideo\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1461 -s@^referer(?=:[^\n]*[./](?:moevideos\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1462 -s@^referer(?=:[^\n]*[./](?:monster\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1463 -s@^referer(?=:[^\n]*[./](?:morningstar\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1464 -s@^referer(?=:[^\n]*[./](?:motogp\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1465 -s@^referer(?=:[^\n]*[./](?:motorcycle\.com|mysoju\.com|nedbank\.co\.za)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1466 -s@^referer(?=:[^\n]*[./](?:mousebreaker\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1467 -s@^referer(?=:[^\n]*[./](?:movieleaks\.co|videodepot\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1468 -s@^referer(?=:[^\n]*[./](?:movies\.yahoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1469 -s@^referer(?=:[^\n]*[./](?:moviezone\.cz)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1470 -s@^referer(?=:[^\n]*[./](?:mozilla\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1471 -s@^referer(?=:[^\n]*[./](?:mp3clan\.audio|mp3clan\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1472 -s@^referer(?=:[^\n]*[./](?:msn\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1473 -s@^referer(?=:[^\n]*[./](?:mts\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1474 -s@^referer(?=:[^\n]*[./](?:multiup\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1475 -s@^referer(?=:[^\n]*[./](?:murf\.nl|workhardclimbharder\.nl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1476 -s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1477 -s@^referer(?=:[^\n]*[./](?:muz\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1478 -s@^referer(?=:[^\n]*[./](?:muz\.ru|retrofm\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1479 -s@^referer(?=:[^\n]*[./](?:my-magazine\.me)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1480 -s@^referer(?=:[^\n]*[./](?:myaccount\.nytimes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1481 -s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1482 -s@^referer(?=:[^\n]*[./](?:nalog\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1483 -s@^referer(?=:[^\n]*[./](?:native-instruments\.com|nest\.com|theheldrich\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1484 -s@^referer(?=:[^\n]*[./](?:nba\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1485 -s@^referer(?=:[^\n]*[./](?:nbc\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1486 -s@^referer(?=:[^\n]*[./](?:nedbank\.co\.za)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1487 -s@^referer(?=:[^\n]*[./](?:nedbank\.co\.za|nitrome\.com|ticketek\.com\.ar)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1488 -s@^referer(?=:[^\n]*[./](?:netzero\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1489 -s@^referer(?=:[^\n]*[./](?:nextag\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1490 -s@^referer(?=:[^\n]*[./](?:nextmedia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1491 -s@^referer(?=:[^\n]*[./](?:nextmovie\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1492 -s@^referer(?=:[^\n]*[./](?:nfl\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1493 -s@^referer(?=:[^\n]*[./](?:nic\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1494 -s@^referer(?=:[^\n]*[./](?:nick\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1495 -s@^referer(?=:[^\n]*[./](?:ninemsn\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1496 -s@^referer(?=:[^\n]*[./](?:nlfreevpn\.com|oldapps\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1497 -s@^referer(?=:[^\n]*[./](?:nlfreevpn\.com|oldapps\.com|pattayaone\.net|unlockpwd\.com|uploadex\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1498 -s@^referer(?=:[^\n]*[./](?:noobpreneur\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1499 -s@^referer(?=:[^\n]*[./](?:novatv\.bg|tv2\.dk|tv3\.se|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1500 -s@^referer(?=:[^\n]*[./](?:nx8\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1501 -s@^referer(?=:[^\n]*[./](?:nyctourist\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1502 -s@^referer(?=:[^\n]*[./](?:nytimes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1503 -s@^referer(?=:[^\n]*[./](?:nzdating\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1504 -s@^referer(?=:[^\n]*[./](?:oascentral\.feedroom\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1505 -s@^referer(?=:[^\n]*[./](?:odysseyware\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1506 -s@^referer(?=:[^\n]*[./](?:ogame\.org|ogame\.us)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1507 -s@^referer(?=:[^\n]*[./](?:ok\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1508 -s@^referer(?=:[^\n]*[./](?:ole\.com\.ar)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1509 -s@^referer(?=:[^\n]*[./](?:olweb\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1510 -s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1511 -s@^referer(?=:[^\n]*[./](?:onehourtranslation\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1512 -s@^referer(?=:[^\n]*[./](?:online-che\.tv|online-domashniy\.tv|online-match\.tv|online-ntv\.tv|online-perviy\.tv|online-ren\.tv|online-rossiya1\.tv|online-rossiya24\.tv|online-sts\.tv|online-tnt\.tv|online-tv3\.tv|online-tvc\.tv|online-u\.tv|online-zvezda\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1513 -s@^referer(?=:[^\n]*[./](?:online\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1514 -s@^referer(?=:[^\n]*[./](?:onlinetvrecorder\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1515 -s@^referer(?=:[^\n]*[./](?:onvasortir\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1516 -s@^referer(?=:[^\n]*[./](?:open\.fm)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1517 -s@^referer(?=:[^\n]*[./](?:openload\.co)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1518 -s@^referer(?=:[^\n]*[./](?:openload\.co|openload\.io)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1519 -s@^referer(?=:[^\n]*[./](?:openload\.io)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1520 -s@^referer(?=:[^\n]*[./](?:openx\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1521 -s@^referer(?=:[^\n]*[./](?:orbitz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1522 -s@^referer(?=:[^\n]*[./](?:ostrow24\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1523 -s@^referer(?=:[^\n]*[./](?:ostrow24\.tv|yuvutu\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1524 -s@^referer(?=:[^\n]*[./](?:out\.pladform\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1525 -s@^referer(?=:[^\n]*[./](?:own3d\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1526 -s@^referer(?=:[^\n]*[./](?:ozerskzone\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1527 -s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1528 -s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1529 -s@^referer(?=:[^\n]*[./](?:papeldigital\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1530 -s@^referer(?=:[^\n]*[./](?:paste\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1531 -s@^referer(?=:[^\n]*[./](?:patch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1532 -s@^referer(?=:[^\n]*[./](?:pb\.wtf)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1533 -s@^referer(?=:[^\n]*[./](?:pcgames-download\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1534 -s@^referer(?=:[^\n]*[./](?:pch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1535 -s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1536 -s@^referer(?=:[^\n]*[./](?:pdrs\.dp\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1537 -s@^referer(?=:[^\n]*[./](?:pencurimovie\.pw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1538 -s@^referer(?=:[^\n]*[./](?:people\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1539 -s@^referer(?=:[^\n]*[./](?:people\.com|peoplestylewatch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1540 -s@^referer(?=:[^\n]*[./](?:people\.com|time\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1541 -s@^referer(?=:[^\n]*[./](?:peretz\.ru|rzd\.ru|svyaznoy\.ru|whiskas\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1542 -s@^referer(?=:[^\n]*[./](?:peterboroughtoday\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1543 -s@^referer(?=:[^\n]*[./](?:pgpru\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1544 -s@^referer(?=:[^\n]*[./](?:photodoska\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1545 -s@^referer(?=:[^\n]*[./](?:physorg\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1546 -s@^referer(?=:[^\n]*[./](?:pic4you\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1547 -s@^referer(?=:[^\n]*[./](?:pinnaclesports\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1548 -s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1549 -s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1550 -s@^referer(?=:[^\n]*[./](?:piter\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1551 -s@^referer(?=:[^\n]*[./](?:plan\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1552 -s@^referer(?=:[^\n]*[./](?:planetatvonlinehd\.blogspot\.com\.ar)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1553 -s@^referer(?=:[^\n]*[./](?:play\.spotify\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1554 -s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1555 -s@^referer(?=:[^\n]*[./](?:player\.video\.news\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1556 -s@^referer(?=:[^\n]*[./](?:playreplay\.net|vaughnlive\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1557 -s@^referer(?=:[^\n]*[./](?:podomatic\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1558 -s@^referer(?=:[^\n]*[./](?:politico\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1559 -s@^referer(?=:[^\n]*[./](?:pollen\.vc)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1560 -s@^referer(?=:[^\n]*[./](?:polskieradio\.pl|radiozet\.pl|spryciarze\.pl|tvp\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1561 -s@^referer(?=:[^\n]*[./](?:popularmechanics\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1562 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|tube8\.com|youporn\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1563 -s@^referer(?=:[^\n]*[./](?:porsche\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1564 -s@^referer(?=:[^\n]*[./](?:powerwatch\.pw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1565 -s@^referer(?=:[^\n]*[./](?:praca\.by)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1566 -s@^referer(?=:[^\n]*[./](?:preloved\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1567 -s@^referer(?=:[^\n]*[./](?:primerahora\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1568 -s@^referer(?=:[^\n]*[./](?:primewire\.ag)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1569 -s@^referer(?=:[^\n]*[./](?:pro-football-reference\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1570 -s@^referer(?=:[^\n]*[./](?:prodaj\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1571 -s@^referer(?=:[^\n]*[./](?:psarips\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1572 -s@^referer(?=:[^\n]*[./](?:publisher\.adservice\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1573 -s@^referer(?=:[^\n]*[./](?:pumpkinpatch\.co\.nz|pumpkinpatch\.co\.uk|pumpkinpatch\.com|pumpkinpatch\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1574 -s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1575 -s@^referer(?=:[^\n]*[./](?:qip\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1576 -s@^referer(?=:[^\n]*[./](?:qoinfaucet\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1577 -s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1578 -s@^referer(?=:[^\n]*[./](?:quantcast\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1579 -s@^referer(?=:[^\n]*[./](?:qz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1580 -s@^referer(?=:[^\n]*[./](?:rackspace\.co\.uk|rackspace\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1581 -s@^referer(?=:[^\n]*[./](?:radio\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1582 -s@^referer(?=:[^\n]*[./](?:radiou\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1583 -s@^referer(?=:[^\n]*[./](?:raketa-tv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1584 -s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1585 -s@^referer(?=:[^\n]*[./](?:rankbank\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1586 -s@^referer(?=:[^\n]*[./](?:rantlifestyle\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1587 -s@^referer(?=:[^\n]*[./](?:rbc\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1588 -s@^referer(?=:[^\n]*[./](?:redmaryland\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1589 -s@^referer(?=:[^\n]*[./](?:redtube\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1590 -s@^referer(?=:[^\n]*[./](?:reelkandi\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1591 -s@^referer(?=:[^\n]*[./](?:reempresa\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1592 -s@^referer(?=:[^\n]*[./](?:reklama\.com\.ua|reklama\.marat\.ua|reklama\.rambler\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1593 -s@^referer(?=:[^\n]*[./](?:remoteshaman\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1594 -s@^referer(?=:[^\n]*[./](?:renault\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1595 -s@^referer(?=:[^\n]*[./](?:repeatmyvids\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1596 -s@^referer(?=:[^\n]*[./](?:rg\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1597 -s@^referer(?=:[^\n]*[./](?:rmf24\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1598 -s@^referer(?=:[^\n]*[./](?:rollingstone\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1599 -s@^referer(?=:[^\n]*[./](?:roofandfloor\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1600 -s@^referer(?=:[^\n]*[./](?:rosemaryconley\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1601 -s@^referer(?=:[^\n]*[./](?:roshlam\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1602 -s@^referer(?=:[^\n]*[./](?:rossa-m\.ru|travelata\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1603 -s@^referer(?=:[^\n]*[./](?:rottentomatoes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1604 -s@^referer(?=:[^\n]*[./](?:rrstar\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1605 -s@^referer(?=:[^\n]*[./](?:rte\.ie)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1606 -s@^referer(?=:[^\n]*[./](?:rtl\.lu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1607 -s@^referer(?=:[^\n]*[./](?:rus-wars\.com|rus-wars\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1608 -s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1609 -s@^referer(?=:[^\n]*[./](?:rutracker\.org\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1610 -s@^referer(?=:[^\n]*[./](?:rutube\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1611 -s@^referer(?=:[^\n]*[./](?:rw\.by)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1612 -s@^referer(?=:[^\n]*[./](?:sahadan\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1613 -s@^referer(?=:[^\n]*[./](?:sankakucomplex\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1614 -s@^referer(?=:[^\n]*[./](?:sarafannoeradio\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1615 -s@^referer(?=:[^\n]*[./](?:sc2casts\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1616 -s@^referer(?=:[^\n]*[./](?:scooter-zip\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1617 -s@^referer(?=:[^\n]*[./](?:scottrade\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1618 -s@^referer(?=:[^\n]*[./](?:screenshot\.brandverity\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1619 -s@^referer(?=:[^\n]*[./](?:scribd\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1620 -s@^referer(?=:[^\n]*[./](?:scribol\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1621 -s@^referer(?=:[^\n]*[./](?:se\.no)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1622 -s@^referer(?=:[^\n]*[./](?:sedo\.co\.uk|sedo\.com|sedo\.jp|sedo\.kr|sedo\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1623 -s@^referer(?=:[^\n]*[./](?:sedo\.com|sedo\.de)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1624 -s@^referer(?=:[^\n]*[./](?:seekingalpha\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1625 -s@^referer(?=:[^\n]*[./](?:selectornews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1626 -s@^referer(?=:[^\n]*[./](?:sellallautos\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1627 -s@^referer(?=:[^\n]*[./](?:sellua\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1628 -s@^referer(?=:[^\n]*[./](?:serpens\.nl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1629 -s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1630 -s@^referer(?=:[^\n]*[./](?:serverfault\.com|stackoverflow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1631 -s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1632 -s@^referer(?=:[^\n]*[./](?:sh\.st)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1633 -s@^referer(?=:[^\n]*[./](?:sharedata\.co\.za)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1634 -s@^referer(?=:[^\n]*[./](?:shop\.patheos\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1635 -s@^referer(?=:[^\n]*[./](?:shopping\.ninemsn\.com\.au|shopping\.yahoo\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1636 -s@^referer(?=:[^\n]*[./](?:sibtravel42\.ru|tutu\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1637 -s@^referer(?=:[^\n]*[./](?:signal\.co)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1638 -s@^referer(?=:[^\n]*[./](?:simply-partner\.com|simplyhired\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1639 -s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1640 -s@^referer(?=:[^\n]*[./](?:siteads\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1641 -s@^referer(?=:[^\n]*[./](?:sizedrive\.com|softpedia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1642 -s@^referer(?=:[^\n]*[./](?:skai\.gr)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1643 -s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1644 -s@^referer(?=:[^\n]*[./](?:slacker\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1645 -s@^referer(?=:[^\n]*[./](?:slashdot\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1646 -s@^referer(?=:[^\n]*[./](?:slatev\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1647 -s@^referer(?=:[^\n]*[./](?:slickvid\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1648 -s@^referer(?=:[^\n]*[./](?:smallscreennetwork\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1649 -s@^referer(?=:[^\n]*[./](?:smartads\.by)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1650 -s@^referer(?=:[^\n]*[./](?:smctemple\.wpengine\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1651 -s@^referer(?=:[^\n]*[./](?:smileonthetiles\.com|smileonthetiles2\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1652 -s@^referer(?=:[^\n]*[./](?:smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1653 -s@^referer(?=:[^\n]*[./](?:snagfilms\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1654 -s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1655 -s@^referer(?=:[^\n]*[./](?:snapapp\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1656 -s@^referer(?=:[^\n]*[./](?:sny\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1657 -s@^referer(?=:[^\n]*[./](?:softportal\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1658 -s@^referer(?=:[^\n]*[./](?:sotumblry\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1659 -s@^referer(?=:[^\n]*[./](?:southpark\.nl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R166 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1660 -s@^referer(?=:[^\n]*[./](?:spankwire\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1661 -s@^referer(?=:[^\n]*[./](?:spinandw\.in)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1662 -s@^referer(?=:[^\n]*[./](?:spoilertv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1663 -s@^referer(?=:[^\n]*[./](?:sports\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1664 -s@^referer(?=:[^\n]*[./](?:sportsmole\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1665 -s@^referer(?=:[^\n]*[./](?:springstreetads\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1666 -s@^referer(?=:[^\n]*[./](?:spruto\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1667 -s@^referer(?=:[^\n]*[./](?:staircase\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1668 -s@^referer(?=:[^\n]*[./](?:startv\.in)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1669 -s@^referer(?=:[^\n]*[./](?:stickam\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1670 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru|xn--b1ajehof\.xn--80asehdb|蟹胁芯薪泻懈\.芯薪谢邪泄薪)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1671 -s@^referer(?=:[^\n]*[./](?:store\.explosm\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1672 -s@^referer(?=:[^\n]*[./](?:stream\.1tv\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1673 -s@^referer(?=:[^\n]*[./](?:strokekampanjen\.se|tigerofsweden\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1674 -s@^referer(?=:[^\n]*[./](?:submityourflicks\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1675 -s@^referer(?=:[^\n]*[./](?:sudinfo\.be)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1676 -s@^referer(?=:[^\n]*[./](?:sulekha\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1677 -s@^referer(?=:[^\n]*[./](?:sundaysportclassifieds\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1678 -s@^referer(?=:[^\n]*[./](?:supercheats\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1679 -s@^referer(?=:[^\n]*[./](?:superfilm\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1680 -s@^referer(?=:[^\n]*[./](?:supersonicads\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1681 -s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1682 -s@^referer(?=:[^\n]*[./](?:surfingbird\.com|surfingbird\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1683 -s@^referer(?=:[^\n]*[./](?:surfline\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1684 -s@^referer(?=:[^\n]*[./](?:swatch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1685 -s@^referer(?=:[^\n]*[./](?:sx566\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1686 -s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1687 -s@^referer(?=:[^\n]*[./](?:tableterra\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1688 -s@^referer(?=:[^\n]*[./](?:tagline\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1689 -s@^referer(?=:[^\n]*[./](?:talkrtv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1690 -s@^referer(?=:[^\n]*[./](?:talksport\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1691 -s@^referer(?=:[^\n]*[./](?:talksport\.co\.uk|tv3\.ie)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1692 -s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1693 -s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1694 -s@^referer(?=:[^\n]*[./](?:tapochek\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1695 -s@^referer(?=:[^\n]*[./](?:target\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1696 -s@^referer(?=:[^\n]*[./](?:tatler\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1697 -s@^referer(?=:[^\n]*[./](?:team-vitality\.fr)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1698 -s@^referer(?=:[^\n]*[./](?:teamcoco\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1699 -s@^referer(?=:[^\n]*[./](?:teamxbox\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1700 -s@^referer(?=:[^\n]*[./](?:techcrunch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1701 -s@^referer(?=:[^\n]*[./](?:teletoon\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1702 -s@^referer(?=:[^\n]*[./](?:teletoon\.com|walmart\.ca)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1703 -s@^referer(?=:[^\n]*[./](?:terra\.com\.br)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1704 -s@^referer(?=:[^\n]*[./](?:testtube\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1705 -s@^referer(?=:[^\n]*[./](?:the-village\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1706 -s@^referer(?=:[^\n]*[./](?:theawl\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1707 -s@^referer(?=:[^\n]*[./](?:thedoujin\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1708 -s@^referer(?=:[^\n]*[./](?:theemptynestexpress\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1709 -s@^referer(?=:[^\n]*[./](?:thegayuk\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1710 -s@^referer(?=:[^\n]*[./](?:thenextweb\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1711 -s@^referer(?=:[^\n]*[./](?:thesimsresource\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1712 -s@^referer(?=:[^\n]*[./](?:thestreet\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1713 -s@^referer(?=:[^\n]*[./](?:time\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1714 -s@^referer(?=:[^\n]*[./](?:tjournal\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1715 -s@^referer(?=:[^\n]*[./](?:tjournal\.ru|tvigle\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1716 -s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1717 -s@^referer(?=:[^\n]*[./](?:tnt-online\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1718 -s@^referer(?=:[^\n]*[./](?:tntdrama\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1719 -s@^referer(?=:[^\n]*[./](?:tomsguide\.com|tomshardware\.com|wonderhowto\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1720 -s@^referer(?=:[^\n]*[./](?:topzone\.lt)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1721 -s@^referer(?=:[^\n]*[./](?:tovarro\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1722 -s@^referer(?=:[^\n]*[./](?:trackitonline\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1723 -s@^referer(?=:[^\n]*[./](?:transaero\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1724 -s@^referer(?=:[^\n]*[./](?:travelocity\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1725 -s@^referer(?=:[^\n]*[./](?:travelzoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1726 -s@^referer(?=:[^\n]*[./](?:tree\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1727 -s@^referer(?=:[^\n]*[./](?:tripit\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1728 -s@^referer(?=:[^\n]*[./](?:tritonmedia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1729 -s@^referer(?=:[^\n]*[./](?:trustedreviews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1730 -s@^referer(?=:[^\n]*[./](?:tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1731 -s@^referer(?=:[^\n]*[./](?:tubemonsoon\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1732 -s@^referer(?=:[^\n]*[./](?:turbogenerator\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1733 -s@^referer(?=:[^\n]*[./](?:turbovideos\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1734 -s@^referer(?=:[^\n]*[./](?:turkanime\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1735 -s@^referer(?=:[^\n]*[./](?:turkdown\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1736 -s@^referer(?=:[^\n]*[./](?:tut\.by)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1737 -s@^referer(?=:[^\n]*[./](?:tv-serial\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1738 -s@^referer(?=:[^\n]*[./](?:tv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1739 -s@^referer(?=:[^\n]*[./](?:tv10play\.se|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1740 -s@^referer(?=:[^\n]*[./](?:tv2\.dk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1741 -s@^referer(?=:[^\n]*[./](?:tv2\.dk|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1742 -s@^referer(?=:[^\n]*[./](?:tv3\.ie)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1743 -s@^referer(?=:[^\n]*[./](?:tv3play\.se|uktv\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1744 -s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1745 -s@^referer(?=:[^\n]*[./](?:tvhaber\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1746 -s@^referer(?=:[^\n]*[./](?:tvigle\.ru|wikimart\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1747 -s@^referer(?=:[^\n]*[./](?:tvn\.pl|tvn24\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1748 -s@^referer(?=:[^\n]*[./](?:tvn24\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1749 -s@^referer(?=:[^\n]*[./](?:tvnet\.lv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1750 -s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1751 -s@^referer(?=:[^\n]*[./](?:twer\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1752 -s@^referer(?=:[^\n]*[./](?:tyndex\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1753 -s@^referer(?=:[^\n]*[./](?:ubi\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1754 -s@^referer(?=:[^\n]*[./](?:uktv\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1755 -s@^referer(?=:[^\n]*[./](?:ultimaterewardsearn\.chase\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1756 -s@^referer(?=:[^\n]*[./](?:unilad\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1757 -s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1758 -s@^referer(?=:[^\n]*[./](?:uptobox\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1759 -s@^referer(?=:[^\n]*[./](?:ura-inform\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1760 -s@^referer(?=:[^\n]*[./](?:usanetwork\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1761 -s@^referer(?=:[^\n]*[./](?:uscbookstore\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1762 -s@^referer(?=:[^\n]*[./](?:usynovite\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1763 -s@^referer(?=:[^\n]*[./](?:uzblog\.com|uzlist\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1764 -s@^referer(?=:[^\n]*[./](?:uzmantv\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1765 -s@^referer(?=:[^\n]*[./](?:vaughnlive\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1766 -s@^referer(?=:[^\n]*[./](?:vcoins\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1767 -s@^referer(?=:[^\n]*[./](?:vedomosti\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1768 -s@^referer(?=:[^\n]*[./](?:velochehol\.com\.ua|velosumka\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1769 -s@^referer(?=:[^\n]*[./](?:veohb\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1770 -s@^referer(?=:[^\n]*[./](?:vevo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1771 -s@^referer(?=:[^\n]*[./](?:vg\.no)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1772 -s@^referer(?=:[^\n]*[./](?:vg247\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1773 -s@^referer(?=:[^\n]*[./](?:vibe\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1774 -s@^referer(?=:[^\n]*[./](?:vice\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1775 -s@^referer(?=:[^\n]*[./](?:video\.adultswim\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1776 -s@^referer(?=:[^\n]*[./](?:video\.lycos\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1777 -s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1778 -s@^referer(?=:[^\n]*[./](?:video2mp3\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1779 -s@^referer(?=:[^\n]*[./](?:vidin\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1780 -s@^referer(?=:[^\n]*[./](?:viki\.com|wwe\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1781 -s@^referer(?=:[^\n]*[./](?:viki\.mx)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1782 -s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1783 -s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1784 -s@^referer(?=:[^\n]*[./](?:virginmedia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1785 -s@^referer(?=:[^\n]*[./](?:virpl\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1786 -s@^referer(?=:[^\n]*[./](?:vodyanoy\.com\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1787 -s@^referer(?=:[^\n]*[./](?:voenhronika\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1788 -s@^referer(?=:[^\n]*[./](?:volarvideo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1789 -s@^referer(?=:[^\n]*[./](?:voldingenglish\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1790 -s@^referer(?=:[^\n]*[./](?:vouchercodes\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1791 -s@^referer(?=:[^\n]*[./](?:vroomvroomvroom\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1792 -s@^referer(?=:[^\n]*[./](?:vseplatezhi\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1793 -s@^referer(?=:[^\n]*[./](?:vshp2016\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1794 -s@^referer(?=:[^\n]*[./](?:vtomske\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1795 -s@^referer(?=:[^\n]*[./](?:vyborg-press\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1796 -s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1797 -s@^referer(?=:[^\n]*[./](?:walmart\.com\.br)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1798 -s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1799 -s@^referer(?=:[^\n]*[./](?:watchseries-online\.eu)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1800 -s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1801 -s@^referer(?=:[^\n]*[./](?:wealthymen\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1802 -s@^referer(?=:[^\n]*[./](?:weather\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1803 -s@^referer(?=:[^\n]*[./](?:webadvert\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1804 -s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1805 -s@^referer(?=:[^\n]*[./](?:webupd8\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1806 -s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1807 -s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1808 -s@^referer(?=:[^\n]*[./](?:wetpaint\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1809 -s@^referer(?=:[^\n]*[./](?:whitepages\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1810 -s@^referer(?=:[^\n]*[./](?:wikihow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1811 -s@^referer(?=:[^\n]*[./](?:wikimart\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1812 -s@^referer(?=:[^\n]*[./](?:williamhillcasino\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1813 -s@^referer(?=:[^\n]*[./](?:winxclub\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1814 -s@^referer(?=:[^\n]*[./](?:wired\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1815 -s@^referer(?=:[^\n]*[./](?:wizard\.mediacoderhq\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1816 -s@^referer(?=:[^\n]*[./](?:wmpoweruser\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1817 -s@^referer(?=:[^\n]*[./](?:wordpress\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1818 -s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1819 -s@^referer(?=:[^\n]*[./](?:wowhead\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1820 -s@^referer(?=:[^\n]*[./](?:wp\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1821 -s@^referer(?=:[^\n]*[./](?:wrc\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1822 -s@^referer(?=:[^\n]*[./](?:wunderground\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1823 -s@^referer(?=:[^\n]*[./](?:www\.facebook\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1824 -s@^referer(?=:[^\n]*[./](?:www\.google\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1825 -s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1826 -s@^referer(?=:[^\n]*[./](?:www\.msn\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1827 -s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1828 -s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1829 -s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1830 -s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1831 -s@^referer(?=:[^\n]*[./](?:xfire\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1832 -s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1833 -s@^referer(?=:[^\n]*[./](?:xn--80aqkgfb3b1a0a\.xn--p1ai|锌褘褕屑邪懈薪褎芯\.褉褎)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1834 -s@^referer(?=:[^\n]*[./](?:xoyo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1835 -s@^referer(?=:[^\n]*[./](?:y8\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1836 -s@^referer(?=:[^\n]*[./](?:yaberemenna\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1837 -s@^referer(?=:[^\n]*[./](?:yahoo\.co\.jp)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1838 -s@^referer(?=:[^\n]*[./](?:yahoo\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1839 -s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1840 -s@^referer(?=:[^\n]*[./](?:yellowbridge\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1841 -s@^referer(?=:[^\n]*[./](?:yepi\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1842 -s@^referer(?=:[^\n]*[./](?:yesnetwork\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1843 -s@^referer(?=:[^\n]*[./](?:yimg\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1844 -s@^referer(?=:[^\n]*[./](?:yorkshirepost\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1845 -s@^referer(?=:[^\n]*[./](?:youjizz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1846 -s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1847 -s@^referer(?=:[^\n]*[./](?:youngcons\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1848 -s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1849 -s@^referer(?=:[^\n]*[./](?:yttalk\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1850 -s@^referer(?=:[^\n]*[./](?:yuvutu\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1851 -s@^referer(?=:[^\n]*[./](?:zakaz\.ua|zapals\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1852 -s@^referer(?=:[^\n]*[./](?:zakonrf\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1853 -s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1854 -s@^referer(?=:[^\n]*[./](?:zarplata\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1855 -s@^referer(?=:[^\n]*[./](?:zeperfs\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1856 -s@^referer(?=:[^\n]*[./](?:zerozero\.pt)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1857 -s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1858 -s@^referer(?=:[^\n]*[./](?:zynga\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R1859 -s@^referer(?=:[^\n]*[./](?:泻褍褌褟褌邪\.褉褎)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R197 -s@^referer(?=:[^\n]*[./](?:extremetech\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R202 -s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R217 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R221 -s@^referer(?=:[^\n]*[./](?:fishki\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R24 -s@^referer(?=:[^\n]*[./](?:1tv\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R245 -s@^referer(?=:[^\n]*[./](?:gelbooru\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R248 -s@^referer(?=:[^\n]*[./](?:go\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R278 -s@^referer(?=:[^\n]*[./](?:ibnlive\.in\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R287 -s@^referer(?=:[^\n]*[./](?:ivi\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R325 -s@^referer(?=:[^\n]*[./](?:mail\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R326 -s@^referer(?=:[^\n]*[./](?:mail\.yahoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R327 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R334 -s@^referer(?=:[^\n]*[./](?:megogo\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R343 -s@^referer(?=:[^\n]*[./](?:moonwalk\.cc)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R358 -s@^referer(?=:[^\n]*[./](?:newgrounds\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R375 -s@^referer(?=:[^\n]*[./](?:patheos\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R379 -s@^referer(?=:[^\n]*[./](?:photobucket\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R382 -s@^referer(?=:[^\n]*[./](?:picforall\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R39 -s@^referer(?=:[^\n]*[./](?:3dnews\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R392 -s@^referer(?=:[^\n]*[./](?:pornhub\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R400 -s@^referer(?=:[^\n]*[./](?:primewire\.ag|primewire\.in)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R402 -s@^referer(?=:[^\n]*[./](?:promptfile\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R403 -s@^referer(?=:[^\n]*[./](?:putlocker\.is)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R414 -s@^referer(?=:[^\n]*[./](?:reuters\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R437 -s@^referer(?=:[^\n]*[./](?:slader\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R451 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R458 -s@^referer(?=:[^\n]*[./](?:tbs\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R464 -s@^referer(?=:[^\n]*[./](?:thechive\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R467 -s@^referer(?=:[^\n]*[./](?:thisav\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R473 -s@^referer(?=:[^\n]*[./](?:tmz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R483 -s@^referer(?=:[^\n]*[./](?:tv4play\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R484 -s@^referer(?=:[^\n]*[./](?:tvcatchup\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R485 -s@^referer(?=:[^\n]*[./](?:twitch\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R507 -s@^referer(?=:[^\n]*[./](?:vivo\.sx)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R509 -s@^referer(?=:[^\n]*[./](?:vk\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R511 -s@^referer(?=:[^\n]*[./](?:vz\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R513 -s@^referer(?=:[^\n]*[./](?:washingtontimes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R540 -s@^referer(?=:[^\n]*[./](?:youwatch\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R544 -s@^referer(?=:[^\n]*[./](?:zattoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R61 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R63 -s@^referer(?=:[^\n]*[./](?:accesshollywood\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R762 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R189 s@^referer(?=:[^\n]*[./](?:0379home\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R763 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R190 s@^referer(?=:[^\n]*[./](?:10086\.cn)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R764 -s@^referer(?=:[^\n]*[./](?:107\.150\.17\.66|23\.226\.134\.115|23\.226\.134\.116|23\.226\.138\.28|67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R765 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R191 s@^referer(?=:[^\n]*[./](?:10pan\.cc|77pan\.cc|789disc\.cc|789pan\.cc|huimeiku\.com|ifonce\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R766 -s@^referer(?=:[^\n]*[./](?:120sports\.com|africanindy\.com|beqala\.com|bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|cbsnews\.com|cwtv\.com|deadspin\.com|denofgeek\.co|denofgeek\.com|drupalcommerce\.org|ew\.com|forbes\.com|foxnews\.com|gawker\.com|gizmodo\.com|independent\.co\.uk|investopedia\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|latimes\.com|lifehacker\.com|m\.tmz\.com|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|merriam-webster\.com|mlb\.com|nauticexpo\.com|nytimes\.com|orbitz\.com|sendtonews\.com|thesimsresource\.com|time\.com|urbandictionary\.com|vanityfair\.com|video\.foxbusiness\.com|video\.foxnews\.com|vroomvroomvroom\.com\.au|weather\.com|weddingspot\.co\.uk|wlj\.net|zavvi\.com|zdnet\.com|zillow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R767 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R192 s@^referer(?=:[^\n]*[./](?:121\.40\.92\.135|7958\.com\.cn|9duli\.com|coladrive\.com|colayun\.com|dlzyw\.com|ffpan\.com|gqpdf\.com|gqzzw\.com|l7po\.com|pctowap\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R768 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R193 s@^referer(?=:[^\n]*[./](?:123\.138\.234\.240)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R769 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R194 s@^referer(?=:[^\n]*[./](?:123564\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R770 -s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|mahua\.com)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R195 +s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|keenfine\.com|mahua\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R771 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R196 s@^referer(?=:[^\n]*[./](?:126\.com|mail\.163\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R772 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R197 s@^referer(?=:[^\n]*[./](?:127\.0\.0\.1)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R773 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R198 s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R774 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R199 s@^referer(?=:[^\n]*[./](?:17\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R775 -s@^referer(?=:[^\n]*[./](?:178\.63\.99\.21)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R776 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R200 s@^referer(?=:[^\n]*[./](?:189\.cn)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R777 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R201 s@^referer(?=:[^\n]*[./](?:189\.cn|ali213\.net|coolpad\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R778 -s@^referer(?=:[^\n]*[./](?:1obl\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R779 -s@^referer(?=:[^\n]*[./](?:1point3acres\.com|66u\.com|dataguru\.cn|jiangsuphp\.jd-app\.com|launcher\.lenovo\.com|oneplusbbs\.com|readboy\.com|xda\.cn)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R780 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R202 s@^referer(?=:[^\n]*[./](?:21394\.com|94pan\.com|fmdisk\.com|fmdisk\.net|fmpan\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R781 -s@^referer(?=:[^\n]*[./](?:24smile\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R782 -s@^referer(?=:[^\n]*[./](?:28\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R783 -s@^referer(?=:[^\n]*[./](?:2dayshippingbymastercard\.com|catalogfavoritesvip\.com|chase\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R784 -s@^referer(?=:[^\n]*[./](?:2ip\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R785 -s@^referer(?=:[^\n]*[./](?:2mm\.tv|2mmei\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R786 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R203 s@^referer(?=:[^\n]*[./](?:360bifen\.cc|360bifen\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R787 -s@^referer(?=:[^\n]*[./](?:360haven\.com|9bis\.net|9jumpin\.com\.au|9news\.com\.au|9tutorials\.com|afreesms\.com|atlanticcitywebcam\.com|bbc\.com|bicimotosargentina\.com|bitcoiner\.net|budget101\.com|buickforums\.com|bullywiihacks\.com|carsfromitaly\.info|codeasily\.com|darkreloaded\.com|docpaste\.com|dragoart\.com|dreamscene\.org|drivearabia\.com|dsero\.com|epmads\.com|everythingon\.tv|fcportables\.com|ffiles\.com|file4go\.com|foro\.clubcelica\.es|free\.smsmarkaz\.urdupoint\.com|freecoins4\.me|freewaregenius\.com|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|full-ngage-games\.blogspot\.com|gamespowerita\.com|gifmagic\.com|hackintosh\.zone|hostyd\.com|ibmmainframeforum\.com|ilix\.in|keywestharborwebcam\.com|kingofgames\.net|korean-candy\.com|kshowes\.net|litecoiner\.net|livenewschat\.eu|lordpyrak\.net|lumload\.com|mangacap\.com|mangakaka\.com|megaallday\.com|misheel\.net|modsaholic\.com|morganhillwebcam\.com|moviemistakes\.com|mugiwaranofansub\.blogspot\.com\.ar|mypapercraft\.net|newsok\.com|ninjaraider\.com|nonags\.com|nornar\.com|numberempire\.com|nx8\.com|nyharborwebcam\.com|omegadrivers\.net|photos\.essence\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com|preemlinks\.com|priva\.us|puromarketing\.com|radioaficion\.com|rapid8\.com|readersdigest\.com\.au|seeingwithsound\.com|simply-debrid\.com|smashgamez\.com|softpedia\.com|software4all-now\.blogspot\.co\.uk|spoilertv\.com|tamercome\.blogspot\.co\.uk|tech-blog\.net|techydoor\.com|thememypc\.com|themes\.themaxdavis\.com|tipstank\.com|top100clans\.com|trutower\.com|tv-kino\.net|upfordown\.com|uploadlw\.com|urlink\.at|virginmedia\.com|warp2search\.net|washington\.edu|winterrowd\.com|wtf-teen\.com|yellowbridge\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R788 -s@^referer(?=:[^\n]*[./](?:360haven\.com|9bis\.net|9news\.com\.au|9tutorials\.com|afreesms\.com|altoque\.com|androidrepublic\.org|apkmirror\.com|aseanlegacy\.net|atlanticcitywebcam\.com|better-explorer\.com|bicimotosargentina\.com|bitcofree\.com|bitcoiner\.net|bitcoinker\.com|borfast\.com|boxbit\.co\.in|budget101\.com|buickforums\.com|bullywiihacks\.com|calcularindemnizacion\.es|chrissmoove\.com|clubedohardware\.com\.br|danydanielrt\.com|darkreloaded\.com|debridit\.com|debridnet\.com|dev-metal\.com|docpaste\.com|dragoart\.com|dreamscene\.org|drivearabia\.com|dsero\.com|epmads\.com|ezoden\.com|fcportables\.com|file4go\.com|foro\.clubcelica\.es|free\.smsmarkaz\.urdupoint\.com|freebitco\.in|freecoins4\.me|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|full-ngage-games\.blogspot\.com|gamespowerita\.com|getdebrid\.com|gnomio\.com|hackintosh\.zone|hostyd\.com|hubturkey\.net|ibmmainframeforum\.com|ilix\.in|incredibox\.com|kadinlarkulubu\.com|keywestharborwebcam\.com|kingofgames\.net|korean-candy\.com|kshowes\.net|leecher\.us|liberallogic101\.com|litecoiner\.net|livenewschat\.eu|lomeutec\.com|lordpyrak\.net|mailbait\.info|mangacap\.com|mangahop\.com|mangakaka\.com|masfuertequeelhierro\.com|megaleech\.us|misheel\.net|morganhillwebcam\.com|moviemistakes\.com|mpc-g\.com|mugiwaranofansub\.blogspot\.com\.ar|mypapercraft\.net|narkive\.com|niresh\.co|niresh12495\.com|nonags\.com|nornar\.com|noticiasautomotivas\.com\.br|numberempire\.com|nyharborwebcam\.com|omegadrivers\.net|play-old-pc-games\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com|preemlinks\.com|priva\.us|puromarketing\.com|radioaficion\.com|rapid8\.com|scriptnulled\.eu|settlersonlinemaps\.com|simply-debrid\.com|sizedrive\.com|slideplayer\.com\.br|smashgamez\.com|softpedia\.com|software4all-now\.blogspot\.co\.uk|spoilertv\.com|tamercome\.blogspot\.co\.uk|tech-blog\.net|techydoor\.com|thememypc\.com|themes\.themaxdavis\.com|tipstank\.com|trutower\.com|unlocktheinbox\.com|upfordown\.com|uploadlw\.com|urlink\.at|wallpapersimages\.co\.uk|washington\.edu|whatismyip\.com|winterrowd\.com|wrestlingtalk\.org|xcl\.com\.br|yellowbridge\.com|zeperfs\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R789 -s@^referer(?=:[^\n]*[./](?:3news\.co\.nz|49ers\.com|atlantafalcons\.com|azcardinals\.com|baltimoreravens\.com|buccaneers\.com|buffalobills\.com|chargers\.com|chicagobears\.com|clevelandbrowns\.com|colts\.com|dallascowboys\.com|denverbroncos\.com|detroitlions\.com|egirlgames\.net|euronews\.com|giants\.com|globaltv\.com|houstontexans\.com|jaguars\.com|kcchiefs\.com|ktvu\.com|miamidolphins\.com|neworleanssaints\.com|newyorkjets\.com|packers\.com|panthers\.com|patriots\.com|philadelphiaeagles\.com|raiders\.com|redskins\.com|rte\.ie|seahawks\.com|steelers\.com|stlouisrams\.com|thecomedynetwork\.ca|titansonline\.com|vikings\.com|wpcomwidgets\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R790 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R204 s@^referer(?=:[^\n]*[./](?:4008927927\.cn)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R791 -s@^referer(?=:[^\n]*[./](?:4chan\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R792 -s@^referer(?=:[^\n]*[./](?:4mycams\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R793 -s@^referer(?=:[^\n]*[./](?:4shared\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R795 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R206 s@^referer(?=:[^\n]*[./](?:520tingshu\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R796 -s@^referer(?=:[^\n]*[./](?:5i5j\.com|9588\.com|diantai\.ifeng\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|rapoo\.cn|rapoo\.nl|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R207 +s@^referer(?=:[^\n]*[./](?:5i5j\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R797 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R208 s@^referer(?=:[^\n]*[./](?:666ccc\.com|g3000\.com\.cn|hfchenming\.com\.cn|missioncouver\.com\.cn|op\.52pk\.com|yue365\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R798 -s@^referer(?=:[^\n]*[./](?:6abc\.com|7online\.com|abc11\.com|abc13\.com|abc30\.com|abc7\.com|abc7chicago\.com|abc7news\.com|ahctv\.com|animalplanet\.com|destinationamerica\.com|discovery\.com|discoverylife\.com|tlc\.com)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R209 +s@^referer(?=:[^\n]*[./](?:66u\.com|dataguru\.cn|oneplusbbs\.com|readboy\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R799 -s@^referer(?=:[^\n]*[./](?:7days\.ru|bigpicture\.ru|iphones\.ru|lenta\.ru|rambler\.ru|ria\.ru|sovsport\.md|sovsport\.ru|sportbox\.ru|sports\.ru|tjournal\.ru|vc\.ru)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R210 +s@^referer(?=:[^\n]*[./](?:67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R800 -s@^referer(?=:[^\n]*[./](?:7days\.ru|bigpicture\.ru|kakprosto\.ru|lenta\.ru|rambler\.ru|ria\.ru|rusplt\.ru|sobesednik\.ru|sovsport\.md|sovsport\.ru|sportbox\.ru|sports\.ru|tjournal\.ru|vc\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R801 -s@^referer(?=:[^\n]*[./](?:7days\.ru|sports\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R802 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R211 s@^referer(?=:[^\n]*[./](?:7k7k\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R803 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R212 s@^referer(?=:[^\n]*[./](?:7net\.com\.tw|ibon\.com\.tw|pxmart\.com\.tw)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R804 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R213 s@^referer(?=:[^\n]*[./](?:888\.sports\.qq\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R805 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R214 s@^referer(?=:[^\n]*[./](?:88box\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R806 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R215 s@^referer(?=:[^\n]*[./](?:88boxjx\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R807 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R216 s@^referer(?=:[^\n]*[./](?:95516\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R808 -s@^referer(?=:[^\n]*[./](?:999\.md)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R217 +s@^referer(?=:[^\n]*[./](?:9588\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R809 -s@^referer(?=:[^\n]*[./](?:99px\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R810 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R218 s@^referer(?=:[^\n]*[./](?:9duli\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R811 -s@^referer(?=:[^\n]*[./](?:9jumpin\.com\.au|9news\.com\.au|bigbrother\.com\.au|ninemsn\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R812 -s@^referer(?=:[^\n]*[./](?:9news\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R813 -s@^referer(?=:[^\n]*[./](?:a-d-sign\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R814 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com|abcfamily\.go\.com|abcnews\.go\.com|adultswim\.com|cartoonnetwork\.com|cc\.com|channel5\.com|cmt\.com|colbertnation\.com|comedycentral\.com|eonline\.com|espn\.go\.com|espndeportes\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com|flexonline\.com|gametrailers\.com|ign\.com|logotv\.com|mlb\.mlb\.com|mtv\.com|mtvnservices\.com|muscleandfitness\.com|nascar\.com|nbc\.com|nbcnews\.com|nbcsports\.com|nick\.com|player\.theplatform\.com|simpsonsworld\.com|sky\.com|southpark\.nl|southparkstudios\.com|spike\.com|teamcoco\.com|teennick\.com|thedailyshow\.com|thingx\.tv|tv3play\.se|tvland\.com|uverseonline\.att\.net|vevo\.com|vh1\.com|video\.cnbc\.com|vod\.fxnetworks\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R815 -s@^referer(?=:[^\n]*[./](?:abcphoto\.com\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R816 -s@^referer(?=:[^\n]*[./](?:about\.com|armstrongmywire\.com|atlanticbb\.net|bestbuy\.com|bresnan\.net|broadstripe\.net|buckeyecablesystem\.net|cableone\.net|centurylink\.net|charter\.net|cincinnatibell\.net|dish\.net|ehow\.com|forbbbs\.org|forbes\.com|hargray\.net|hawaiiantel\.net|hickorytech\.net|homeaway\.co\.uk|knology\.net|livestrong\.com|mediacomtoday\.com|midco\.net|mybendbroadband\.com|mybrctv\.com|mycenturylink\.com|myconsolidated\.net|myepb\.net|mygrande\.net|mygvtc\.com|myhughesnet\.com|myritter\.com|northstate\.net|nwcable\.net|query\.nytimes\.com|rentals\.com|search\.rr\.com|searchresults\.verizon\.com|suddenlink\.net|surewest\.com|synacor\.net|tds\.net|toshiba\.com|trustedreviews\.com|truvista\.net|windstream\.net|windstreambusiness\.net|wowway\.net|zoover\.co\.uk|zoover\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R817 -s@^referer(?=:[^\n]*[./](?:about\.com|ehow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R818 -s@^referer(?=:[^\n]*[./](?:about\.com|ehow\.com|livestrong\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R819 -s@^referer(?=:[^\n]*[./](?:accelo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R820 -s@^referer(?=:[^\n]*[./](?:accounts\.google\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R821 -s@^referer(?=:[^\n]*[./](?:acmilan\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R822 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R823 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R824 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R825 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R826 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R827 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R828 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R829 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R830 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R831 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R832 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R833 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|enstarz\.com|explosm\.net|flexonline\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R834 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|afreesms\.com|androidrepublic\.org|apkmirror\.com|appraisersforum\.com|aseanlegacy\.net|better-explorer\.com|bitcofree\.com|bitcoinker\.com|boxbit\.co\.in|calcularindemnizacion\.es|chrissmoove\.com|clubedohardware\.com\.br|danydanielrt\.com|debridit\.com|debridnet\.com|demo-uhd3d\.com|dev-metal\.com|ezoden\.com|firstonetv\.com|freebitco\.in|freeprosurfer\.com|getdebrid\.com|gnomio\.com|hackintosh\.zone|hubturkey\.net|i-stats\.net|incredibox\.com|kadinlarkulubu\.com|leecher\.us|liberallogic101\.com|lomeutec\.com|mangacap\.com|mangahop\.com|masfuertequeelhierro\.com|megaleech\.us|mpc-g\.com|mypapercraft\.net|narkive\.com|niresh\.co|niresh12495\.com|nonags\.com|noticiasautomotivas\.com\.br|pattayaone\.net|play-old-pc-games\.com|sc2casts\.com|scriptnulled\.eu|settlersonlinemaps\.com|shinobilifeonline\.com|sizedrive\.com|slideplayer\.com\.br|streaming-hub\.com|unlockpwd\.com|unlocktheinbox\.com|uploadex\.com|wallpapersimages\.co\.uk|wrestlingtalk\.org|xcl\.com\.br|zeperfs\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R835 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|aplus\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|drhotze\.com|flexonline\.com|hallels\.com|hellou\.co\.uk|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|radaronline\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|stevedeace\.com|techtimes\.com|thechive\.com|themattwalshblog\.com|unilad\.co\.uk|variety\.com|weaponsmedia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R836 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|drhotze\.com|enstarz\.com|hallels\.com|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|redmaryland\.com|shark-tank\.com|stevedeace\.com|techtimes\.com|thechive\.com|themattwalshblog\.com|unilad\.co\.uk|weaponsmedia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R837 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R219 s@^referer(?=:[^\n]*[./](?:ad\.alimama\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R838 -s@^referer(?=:[^\n]*[./](?:addictinggames\.com|keygames\.com|nglmedia\.com|shockwave\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R839 -s@^referer(?=:[^\n]*[./](?:adguard\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R840 -s@^referer(?=:[^\n]*[./](?:adlib\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R841 -s@^referer(?=:[^\n]*[./](?:adline\.by|adline\.kiev\.ua|adline\.reformal\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R842 -s@^referer(?=:[^\n]*[./](?:adme\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R843 -s@^referer(?=:[^\n]*[./](?:adnetonline\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R844 -s@^referer(?=:[^\n]*[./](?:adroll\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R845 -s@^referer(?=:[^\n]*[./](?:ads\.bridgetrack\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R846 -s@^referer(?=:[^\n]*[./](?:ads\.twitter\.com|analytics\.twitter\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R847 -s@^referer(?=:[^\n]*[./](?:adsbox\.com\.ua|adsbox\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R848 -s@^referer(?=:[^\n]*[./](?:adservice\.kz)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R849 -s@^referer(?=:[^\n]*[./](?:adservicemedia\.dk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R850 -s@^referer(?=:[^\n]*[./](?:adstyle\.com\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R851 -s@^referer(?=:[^\n]*[./](?:adultswim\.com|animalist\.com|revision3\.com|testtube\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R852 -s@^referer(?=:[^\n]*[./](?:adultswim\.com|cartoonnetwork\.com|cnn\.com|hlntv\.com|nba\.com|tbs\.com|teamcoco\.com|tntdrama\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R853 -s@^referer(?=:[^\n]*[./](?:adv\.d3\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R854 -s@^referer(?=:[^\n]*[./](?:adv\.ramr\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R855 -s@^referer(?=:[^\n]*[./](?:adv\.ya\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R856 -s@^referer(?=:[^\n]*[./](?:advert-control\.ru|advert-empire\.com|advert-line\.ru|advert-technology\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R857 -s@^referer(?=:[^\n]*[./](?:advertisers\.io)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R858 -s@^referer(?=:[^\n]*[./](?:advertising\.amazon\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R859 -s@^referer(?=:[^\n]*[./](?:advertising\.apple\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R860 -s@^referer(?=:[^\n]*[./](?:advertising\.sanoma\.be)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R861 -s@^referer(?=:[^\n]*[./](?:adview\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R862 -s@^referer(?=:[^\n]*[./](?:adweb\.by)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R863 -s@^referer(?=:[^\n]*[./](?:adwords\.google\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R864 -s@^referer(?=:[^\n]*[./](?:afdah\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R865 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.co\.uk|affiliate-program\.amazon\.com|affiliate-program\.amazon\.in|affiliate\.amazon\.co\.jp|afiliados\.amazon\.es|associados\.amazon\.com\.br|associates\.amazon\.ca|associates\.amazon\.cn|partenaires\.amazon\.fr|partnernet\.amazon\.de|programma-affiliazione\.amazon\.it)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R866 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R867 -s@^referer(?=:[^\n]*[./](?:affinitylive\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R868 -s@^referer(?=:[^\n]*[./](?:affrity\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R869 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R870 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R871 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R872 -s@^referer(?=:[^\n]*[./](?:affrity\.com|lockd\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R873 -s@^referer(?=:[^\n]*[./](?:afisha\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R874 -s@^referer(?=:[^\n]*[./](?:afisha\.ru|aif\.ru|eg\.ru|ex\.ua|forum\.tatfish\.com|grandars\.ru|klops\.ru|meta\.ua|mobile-review\.com|ozon\.ru|thg\.ru|vz\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R875 -s@^referer(?=:[^\n]*[./](?:afisha\.ru|aif\.ru|ex\.ua|fileplaneta\.com|forum\.tatfish\.com|grandars\.ru|klops\.ru|meta\.ua|oceanvideo\.ru|ozon\.ru|thg\.ru|vz\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R876 -s@^referer(?=:[^\n]*[./](?:afl\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R877 -s@^referer(?=:[^\n]*[./](?:afl\.com\.au|goal\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R878 -s@^referer(?=:[^\n]*[./](?:afreesms\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R879 -s@^referer(?=:[^\n]*[./](?:aftenposten\.no|bt\.no|ekstrabladet\.dk|kuriren\.nu|qbrick\.com|svd\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R880 -s@^referer(?=:[^\n]*[./](?:aftenposten\.no|e24\.no|hardware\.no|vg\.no)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R881 -s@^referer(?=:[^\n]*[./](?:aftershock\.news|expertbank\.com|hock5\.ru|legionhardware\.com|rw\.by)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R882 -s@^referer(?=:[^\n]*[./](?:akado\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R883 -s@^referer(?=:[^\n]*[./](?:akado\.ru|megafon\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R884 -s@^referer(?=:[^\n]*[./](?:akam\.no|amobil\.no|gamer\.no|hardware\.no|teknofil\.no)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R885 -s@^referer(?=:[^\n]*[./](?:akprior\.com|eurobank-ua\.com|maingear\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R886 -s@^referer(?=:[^\n]*[./](?:aktiv48\.ru|interzet\.ru|pgpru\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R887 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|megafon\.ru|mirtesen\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R888 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|megafon\.ru|sovsport\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R889 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|mts\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R890 -s@^referer(?=:[^\n]*[./](?:all-episodes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R891 -s@^referer(?=:[^\n]*[./](?:allserial\.tv|turbobitit\.org|vidhost12\.org)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R892 -s@^referer(?=:[^\n]*[./](?:alphatv\.gr)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R893 -s@^referer(?=:[^\n]*[./](?:alscash\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R894 -s@^referer(?=:[^\n]*[./](?:altapress\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R895 -s@^referer(?=:[^\n]*[./](?:altapress\.ru|artfile\.ru|baskino\.com|biysk24\.ru|klops\.ru|kulturologia\.ru|lokomotiv\.info|russianfood\.com|topnews\.ru|verstov\.info)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R896 -s@^referer(?=:[^\n]*[./](?:altoque\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R897 -s@^referer(?=:[^\n]*[./](?:am\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R898 -s@^referer(?=:[^\n]*[./](?:amateursexy\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R899 -s@^referer(?=:[^\n]*[./](?:amazon\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R900 -s@^referer(?=:[^\n]*[./](?:amctheatres\.com|beqala\.com|bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|drupalcommerce\.org|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|nedbank\.co\.za|orbitz\.com|podomatic\.com|weddingspot\.co\.uk|wlj\.net|zavvi\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R901 -s@^referer(?=:[^\n]*[./](?:amctheatres\.com|pitchfork\.com|podomatic\.com|virginaustralia\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R902 -s@^referer(?=:[^\n]*[./](?:amic\.ru|animespirit\.ru|citilink\.ru|furfurmag\.ru|killot\.ru|onlime\.ru|sobesednik\.ru|toptracker\.ru|webnames\.ru|wildberries\.ru|zalivalka\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R903 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.co\.jp)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R904 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R905 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R906 -s@^referer(?=:[^\n]*[./](?:ancestry\.com|ancestry\.com\.au)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R907 -s@^referer(?=:[^\n]*[./](?:anchorfree\.us)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R908 -s@^referer(?=:[^\n]*[./](?:animecrave\.com|bostonherald\.com|deluxemusic\.tv|deluxetelevision\.com|theunlockr\.com|videopoker\.com|weeklyworldnews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R909 -s@^referer(?=:[^\n]*[./](?:animecrazy\.net|gamedorm\.org|gamepro\.com|satsukai\.com|sparknotes\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R910 -s@^referer(?=:[^\n]*[./](?:anisearch\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R911 -s@^referer(?=:[^\n]*[./](?:anizm\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R912 -s@^referer(?=:[^\n]*[./](?:ansingstatejournal\.com|app\.com|battlecreekenquirer\.com|clarionledger\.com|coloradoan\.com|dailyrecord\.com|dailyworld\.com|delmarvanow\.com|freep\.com|greatfallstribune\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|ithacajournal\.com|jconline\.com|livingstondaily\.com|montgomeryadvertiser\.com|mycentraljersey\.com|news-press\.com|pal-item\.com|pnj\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|shreveporttimes\.com|stargazette\.com|tallahassee\.com|theadvertiser\.com|thecalifornian\.com|thedailyjournal\.com|thenewsstar\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|visaliatimesdelta\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R913 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresmedia\.com|atresplayer\.com|lasexta\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R914 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresmedia\.com|atresplayer\.com|lasexta\.com|majorleaguegaming\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R915 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresplayer\.com|lasexta\.com|ondacero\.es)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R916 -s@^referer(?=:[^\n]*[./](?:antena3\.com|europafm\.com|ondacero\.es|vertele\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R917 -s@^referer(?=:[^\n]*[./](?:aol\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R918 -s@^referer(?=:[^\n]*[./](?:aol\.com|engadget\.com|games\.com|huffingtonpost\.com|mapquest\.com|stylelist\.ca)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R919 -s@^referer(?=:[^\n]*[./](?:aopschools\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R920 -s@^referer(?=:[^\n]*[./](?:ap\.org|majorleaguegaming\.com|newsinc\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R921 -s@^referer(?=:[^\n]*[./](?:apartments\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R922 -s@^referer(?=:[^\n]*[./](?:api\.kinomoov\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R923 -s@^referer(?=:[^\n]*[./](?:app\.com|argusleader\.com|autoguide\.com|battlecreekenquirer\.com|baxterbulletin\.com|beqala\.com|boatshop24\.com|bodas\.com\.mx|bodas\.net|bucyrustelegraphforum\.com|burlingtonfreepress\.com|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|chillicothegazette\.com|cincinnati\.com|clarionledger\.com|coloradoan\.com|coshoctontribune\.com|courier-journal\.com|courierpostonline\.com|dailyrecord\.com|dailyworld\.com|deadspin\.com|defensenews\.com|delawareonline\.com|democratandchronicle\.com|desmoinesregister\.com|dnj\.com|drupalcommerce\.org|escapegames\.com|fdlreporter\.com|floridatoday\.com|foxnews\.com|freep\.com|games\.latimes\.com|gawker\.com|gizmodo\.com|greatfallstribune\.com|greenbaypressgazette\.com|greenvilleonline\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|htrnews\.com|indystar\.com|investopedia\.com|io9\.com|ithacajournal\.com|jacksonsun\.com|jalopnik\.com|jconline\.com|jezebel\.com|kotaku\.com|lancastereaglegazette\.com|lansingstatejournal\.com|lifehacker\.com|livingstondaily\.com|lohud\.com|mansfieldnewsjournal\.com|mariages\.net|marionstar\.com|marshfieldnewsherald\.com|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|montgomeryadvertiser\.com|motorcycle\.com|mycentraljersey\.com|mydesert\.com|mysoju\.com|nauticexpo\.com|nedbank\.co\.za|nedbankgreen\.co\.za|newarkadvocate\.com|news-leader\.com|news-press\.com|newsleader\.com|nonags\.com|orbitz\.com|pal-item\.com|podomatic\.com|portclintonnewsherald\.com|postcrescent\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|sctimes\.com|sheboyganpress\.com|shreveporttimes\.com|stargazette\.com|statesmanjournal\.com|stevenspointjournal\.com|tallahassee\.com|tennessean\.com|theadvertiser\.com|thedailyjournal\.com|theleafchronicle\.com|thenews-messenger\.com|thenewsstar\.com|thenorthwestern\.com|thesimsresource\.com|thespectrum\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|ticketek\.com\.ar|urbandictionary\.com|virginaustralia\.com|visaliatimesdelta\.com|volokh\.com|vroomvroomvroom\.com\.au|wausaudailyherald\.com|weddingspot\.co\.uk|wisconsinrapidstribune\.com|wlj\.net|zanesvilletimesrecorder\.com|zavvi\.com|zillow\.com|zui\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R924 -s@^referer(?=:[^\n]*[./](?:app\.com|argusleader\.com|aviationweek\.com|battlecreekenquirer\.com|baxterbulletin\.com|bucyrustelegraphforum\.com|burlingtonfreepress\.com|centralohio\.com|chillicothegazette\.com|cincinnati\.com|citizen-times\.com|clarionledger\.com|coloradoan\.com|coshoctontribune\.com|courier-journal\.com|courierpostonline\.com|dailyrecord\.com|dailyworld\.com|delawareonline\.com|delmarvanow\.com|democratandchronicle\.com|desmoinesregister\.com|dnj\.com|fdlreporter\.com|foxsmallbusinesscenter\.com|freep\.com|greatfallstribune\.com|greenbaypressgazette\.com|greenvilleonline\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|honoluluadvertiser\.com|htrnews\.com|indystar\.com|jacksonsun\.com|jconline\.com|lancastereaglegazette\.com|lansingstatejournal\.com|livingstondaily\.com|lohud\.com|mansfieldnewsjournal\.com|marionstar\.com|marshfieldnewsherald\.com|montgomeryadvertiser\.com|mycentraljersey\.com|mydesert\.com|newarkadvocate\.com|news-leader\.com|news-press\.com|newsleader\.com|pal-item\.com|pnj\.com|portclintonnewsherald\.com|postcrescent\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|sctimes\.com|sheboyganpress\.com|shreveporttimes\.com|stargazette\.com|statesmanjournal\.com|stevenspointjournal\.com|tallahassee\.com|tennessean\.com|theadvertiser\.com|thecalifornian\.com|thedailyjournal\.com|theithacajournal\.com|theleafchronicle\.com|thenews-messenger\.com|thenewsstar\.com|thenorthwestern\.com|thespectrum\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|visaliatimesdelta\.com|wausaudailyherald\.com|weather\.com|wisconsinrapidstribune\.com|zanesvilletimesrecorder\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R925 -s@^referer(?=:[^\n]*[./](?:apple\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R926 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R220 s@^referer(?=:[^\n]*[./](?:appledaily\.com\.tw)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R927 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R221 s@^referer(?=:[^\n]*[./](?:appledaily\.com|nextmedia\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R928 -s@^referer(?=:[^\n]*[./](?:apps\.admob\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R929 -s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R93 -s@^referer(?=:[^\n]*[./](?:anistar\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R930 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|autonews\.ru|glav\.su|kp\.ru|sobesednik\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R931 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|glav\.su|kp\.ru|newstube\.ru|sobesednik\.ru|soccer\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R932 -s@^referer(?=:[^\n]*[./](?:armstrongmywire\.com|atlanticbb\.net|bestbuy\.com|bresnan\.net|broadstripe\.net|buckeyecablesystem\.net|cableone\.net|centurylink\.net|charter\.net|cincinnatibell\.net|dish\.net|forbbbs\.org|forbes\.com|gumtree\.com\.au|hargray\.net|hawaiiantel\.net|hickorytech\.net|homeaway\.co\.uk|knology\.net|livestrong\.com|mediacomtoday\.com|midco\.net|mybendbroadband\.com|mybrctv\.com|mycenturylink\.com|myconsolidated\.net|myepb\.net|mygrande\.net|mygvtc\.com|myhughesnet\.com|myritter\.com|northstate\.net|nwcable\.net|query\.nytimes\.com|rentals\.com|search\.rr\.com|searchresults\.verizon\.com|suddenlink\.net|surewest\.com|synacor\.net|tds\.net|toshiba\.com|trustedreviews\.com|truvista\.net|windstream\.net|windstreambusiness\.net|wowway\.net|www\.google\.com|zoover\.co\.uk|zoover\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R933 -s@^referer(?=:[^\n]*[./](?:asianmommy\.com|filmcrave\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R934 -s@^referer(?=:[^\n]*[./](?:askqology\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R935 -s@^referer(?=:[^\n]*[./](?:astromeridian\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R936 -s@^referer(?=:[^\n]*[./](?:atlant-m\.in\.ua)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R937 -s@^referer(?=:[^\n]*[./](?:atlanticcitywebcam\.com|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|keywestharborwebcam\.com|morganhillwebcam\.com|nyharborwebcam\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R938 -s@^referer(?=:[^\n]*[./](?:audio-hi-fi\.ru|electric-house\.ru|stroi-help\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R939 -s@^referer(?=:[^\n]*[./](?:audiomack\.com|cbc\.ca|cnet\.com|eboundservices\.com|edmunds\.com|gamejolt\.com|globalnews\.ca|live\.geo\.tv|news\.sky\.com|nfl\.com|reuters\.tv|rottentomatoes\.com|softgames\.de|thestreet\.com|video\.foxnews\.com|waywire\.com|wibbitz\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R940 -s@^referer(?=:[^\n]*[./](?:audiomack\.com|cbc\.ca|cnet\.com|gamejolt\.com|news\.sky\.com|theverge\.com|video\.foxbusiness\.com|video\.foxnews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R941 -s@^referer(?=:[^\n]*[./](?:autocentrum\.pl)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R942 -s@^referer(?=:[^\n]*[./](?:autoguide\.com|avclub\.com|boatshop24\.com|cadenasuper\.com|dailygames\.com|demotywatory\.pl|drivearabia\.com|ensonhaber\.com|escapegames\.com|juegosdiarios\.com|lbox\.me|letio\.com|lightinthebox\.com|memegenerator\.net|motorcycle\.com|mysoju\.com|nedbank\.co\.za|nedbankgreen\.co\.za|nx8\.com|playedonline\.com|playstationlifestyle\.net|readersdigest\.com\.au|sulekha\.com|ticketek\.com\.ar|volokh\.com|yfrog\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R943 -s@^referer(?=:[^\n]*[./](?:autoguide\.com|avclub\.com|boatshop24\.com|cadenasuper\.com|dailygames\.com|demotywatory\.pl|drivearabia\.com|ensonhaber\.com|juegosdiarios\.com|lbox\.me|letio\.com|lightinthebox\.com|memegenerator\.net|mysoju\.com|nedbank\.co\.za|nedbankgreen\.co\.za|nitrome\.com|nx8\.com|playedonline\.com|sulekha\.com|volokh\.com|yfrog\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R944 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|qip\.ru|rbc\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R945 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|qip\.ru|rbc\.ru|utro\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R946 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|utro\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R947 -s@^referer(?=:[^\n]*[./](?:autos\.ca)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R948 -s@^referer(?=:[^\n]*[./](?:autos\.yahoo\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R949 -s@^referer(?=:[^\n]*[./](?:ava\.md)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R950 -s@^referer(?=:[^\n]*[./](?:avforums\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R951 -s@^referer(?=:[^\n]*[./](?:b\.inbox\.lv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R952 -s@^referer(?=:[^\n]*[./](?:bactistatin\.com|gamexp\.ru|iguides\.ru|ingate\.ru|yandex\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R953 -s@^referer(?=:[^\n]*[./](?:baibako\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R954 -s@^referer(?=:[^\n]*[./](?:bandit\.se|lugnafavoriter\.com|nrj\.se|playradio\.se|radio1\.se|rixfm\.com|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R955 -s@^referer(?=:[^\n]*[./](?:banki\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R956 -s@^referer(?=:[^\n]*[./](?:bannerist\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R957 -s@^referer(?=:[^\n]*[./](?:bannersnack\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R958 -s@^referer(?=:[^\n]*[./](?:barnesandnoble\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R959 -s@^referer(?=:[^\n]*[./](?:barstoolsports\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R960 -s@^referer(?=:[^\n]*[./](?:baseball-reference\.com|basketball-reference\.com|gamespot\.com|hockey-reference\.com|pro-football-reference\.com|sitepoint\.com|speedtest\.net|sports-reference\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R961 -s@^referer(?=:[^\n]*[./](?:baynews9\.com|cfnews13\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R962 -s@^referer(?=:[^\n]*[./](?:bbc\.co\.uk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R963 -s@^referer(?=:[^\n]*[./](?:bbc\.co\.uk|bbc\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R964 -s@^referer(?=:[^\n]*[./](?:bbc\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R965 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R222 s@^referer(?=:[^\n]*[./](?:bbs\.yzz\.cn)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R966 -s@^referer(?=:[^\n]*[./](?:beeline\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R967 -s@^referer(?=:[^\n]*[./](?:beliebershotel\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R968 -s@^referer(?=:[^\n]*[./](?:bestru\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R969 -s@^referer(?=:[^\n]*[./](?:bet\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R970 -s@^referer(?=:[^\n]*[./](?:betbeaver\.com|betwonga\.com|betyper\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R971 -s@^referer(?=:[^\n]*[./](?:betbeaver\.com|internetcasinot\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R972 -s@^referer(?=:[^\n]*[./](?:betfair\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R973 -s@^referer(?=:[^\n]*[./](?:betwonga\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R974 -s@^referer(?=:[^\n]*[./](?:betwonga\.com|dealsplus\.com|matched-bet\.net|pcmag\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R975 -s@^referer(?=:[^\n]*[./](?:betwonga\.com|matched-bet\.net)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R976 -s@^referer(?=:[^\n]*[./](?:betyper\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R977 -s@^referer(?=:[^\n]*[./](?:beyazperde\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R978 -s@^referer(?=:[^\n]*[./](?:bingads\.microsoft\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R979 -s@^referer(?=:[^\n]*[./](?:bitcoinker\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R980 -s@^referer(?=:[^\n]*[./](?:biznews\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R981 -s@^referer(?=:[^\n]*[./](?:bizu\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R982 -s@^referer(?=:[^\n]*[./](?:bizu\.tv|foxsports\.com\.au|majorleaguegaming\.com|pbs\.org|wikihow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R983 -s@^referer(?=:[^\n]*[./](?:bkshopper\.com|geo-ship\.com|testfreaks\.co\.uk|watchmydeals\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R984 -s@^referer(?=:[^\n]*[./](?:blastro\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R985 -s@^referer(?=:[^\n]*[./](?:blesk\.cz|open\.fm)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R986 -s@^referer(?=:[^\n]*[./](?:blogtalkradio\.com|britannica\.com|collegehumor\.com|freeonlinegames\.com|openfilmpod\.com|stickam\.com|talkingpointsmemo\.com|thesource\.com|wildearth\.tv|wunderground\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R987 -s@^referer(?=:[^\n]*[./](?:bluesystem\.ru|kinozadrot\.net|miuipro\.ru|pesikot\.org|polismed\.ru|prisnilos\.su|qrz\.ru|tree\.tv)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R988 -s@^referer(?=:[^\n]*[./](?:bmw-motorrad\.com|bmw-motorrad\.ru)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R989 -s@^referer(?=:[^\n]*[./](?:bn0\.com|ebog\.com|gameark\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R990 -s@^referer(?=:[^\n]*[./](?:bn0\.com|ebog\.com|gameark\.com|yepi\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R991 -s@^referer(?=:[^\n]*[./](?:bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|weddingspot\.co\.uk|zillow\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R992 -s@^referer(?=:[^\n]*[./](?:bollywoodhungama\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R993 -s@^referer(?=:[^\n]*[./](?:bollywoodhungama\.com|videos\.mid-day\.com)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R994 -s@^referer(?=:[^\n]*[./](?:bombuj\.sk)):.*@ab2p-unblock-elem@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R995 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R223 s@^referer(?=:[^\n]*[./](?:books\.com\.tw)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R996 -s@^referer(?=:[^\n]*[./](?:boracay\.tel)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R224 +s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R997 -s@^referer(?=:[^\n]*[./](?:bored\.com)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R225 +s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R998 -s@^referer(?=:[^\n]*[./](?:boredpanda\.com)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R226 +s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R999 -s@^referer(?=:[^\n]*[./](?:box10\.com|freeonlinegames\.com|games\.aarp\.org|kizi\.com|latimes\.com|merriam-webster\.com|puzzles\.usatoday\.com)):.*@ab2p-unblock-elem@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R227 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn1860 -s@^referer(?!:[^\n]*[./](?:bluray-disc\.de)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R228 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn1861 -s@^referer(?!:[^\n]*[./](?:channel4\.com)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R229 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn1862 -s@^referer(?!:[^\n]*[./](?:cybergame\.tv)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R230 +s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn1863 -s@^referer(?!:[^\n]*[./](?:filmon\.tv|newgrounds\.com)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R231 +s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn1864 -s@^referer(?!:[^\n]*[./](?:patrz\.pl)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R232 +s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn1865 +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R233 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R234 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R235 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R236 +s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R237 +s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R238 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R239 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R240 +s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R241 +s@^referer(?=:[^\n]*[./](?:fharr\.com|gimhoy\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R242 +s@^referer(?=:[^\n]*[./](?:finance\.sina\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R243 +s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R244 +s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R245 +s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R246 +s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R247 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R248 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R249 +s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R250 +s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R251 +s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R252 +s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R253 +s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R254 +s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R255 +s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R256 +s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R257 +s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R258 +s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R259 +s@^referer(?=:[^\n]*[./](?:ieeee\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R260 +s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R261 +s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R262 +s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R263 +s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R264 +s@^referer(?=:[^\n]*[./](?:item\.jd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R265 +s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R266 +s@^referer(?=:[^\n]*[./](?:jjcast\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R267 +s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R268 +s@^referer(?=:[^\n]*[./](?:keenfine\.com|xoyo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R269 +s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R270 +s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R271 +s@^referer(?=:[^\n]*[./](?:laniqu\.com|veryeast\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R272 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R273 +s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R274 +s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R275 +s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R276 +s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R277 +s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R278 +s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R279 +s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R280 +s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R281 +s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R282 +s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R283 +s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R284 +s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R285 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R286 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R287 +s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R288 +s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn|wb\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R289 +s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R290 +s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R291 +s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R292 +s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R293 +s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R294 +s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R295 +s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R296 +s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R297 +s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R298 +s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R299 +s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R300 +s@^referer(?=:[^\n]*[./](?:sx566\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R301 +s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R302 +s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R303 +s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R304 +s@^referer(?=:[^\n]*[./](?:tdx\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R305 +s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R306 +s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R307 +s@^referer(?=:[^\n]*[./](?:tw\.autos\.yahoo\.com|tw\.buy\.yahoo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R308 +s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R309 +s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R310 +s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R311 +s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R312 +s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R313 +s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R314 +s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R315 +s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R316 +s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R317 +s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R318 +s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R319 +s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R320 +s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R321 +s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R322 +s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R323 +s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R324 +s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R325 +s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R326 +s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R327 +s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R328 +s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R329 +s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn187 s@^referer(?!:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-unblock-elem@Ti s@^referer:.*@-ab2p-unblock-elem-nR@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn1866 -s@^referer(?!:[^\n]*[./](?:tamilflix\.net)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn1867 -s@^referer(?!:[^\n]*[./](?:zattoo\.com)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn641 -s@^referer(?!:[^\n]*[./](?:p2p\.adserver\.ip)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn761 -s@^referer(?!:[^\n]*[./](?:superfilm\.pl)):.*@ab2p-unblock-elem@Ti -s@^referer:.*@-ab2p-unblock-elem-nR@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-elem-nR s@^.*@ab2p-unblock-elem@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaijov -s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaijov-Caijov-when-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-unblock-request-Aaijov-Caijov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaijov-Caijov-when-R166 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-unblock-request-Aaijov-Caijov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaijsv -s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaijsv-Caijsv-when-R1717 -s@^referer(?=:[^\n]*[./](?:tnt-online\.ru)):.*@ab2p-unblock-request-Aaijsv-Caijsv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaijsv-Caijsv-when-R821 -s@^referer(?=:[^\n]*[./](?:acmilan\.com)):.*@ab2p-unblock-request-Aaijsv-Caijsv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaijsv-Caijsv-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aaijsv-Caijsv@i -s@^referer:.*@-ab2p-unblock-request-Aaijsv-Caijsv-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaijsv-Caijsv-when-nR -s@^.*@ab2p-unblock-request-Aaijsv-Caijsv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaiov -s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaiov-Caiov-when-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-unblock-request-Aaiov-Caiov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaisv -s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaisv-Caisv-when-R1462 -s@^referer(?=:[^\n]*[./](?:monster\.com)):.*@ab2p-unblock-request-Aaisv-Caisv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaisv-Caisv-when-R888 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|megafon\.ru|sovsport\.ru)):.*@ab2p-unblock-request-Aaisv-Caisv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aajosv -s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aajosv-Cajosv-when-R1325 -s@^referer(?=:[^\n]*[./](?:indiatvnews\.com|intoday\.in|moneycontrol\.com)):.*@ab2p-unblock-request-Aajosv-Cajosv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aajov -s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aajsv -s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aajsv-Cajsv-when-R1094 -s@^referer(?=:[^\n]*[./](?:di\.se)):.*@ab2p-unblock-request-Aajsv-Cajsv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aajsv-Cajsv-when-R1388 -s@^referer(?=:[^\n]*[./](?:ligtv\.com\.tr)):.*@ab2p-unblock-request-Aajsv-Cajsv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aajsv-Cajsv-when-R775 -s@^referer(?=:[^\n]*[./](?:178\.63\.99\.21)):.*@ab2p-unblock-request-Aajsv-Cajsv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aajsv-Cajsv-when-R785 -s@^referer(?=:[^\n]*[./](?:2mm\.tv|2mmei\.com)):.*@ab2p-unblock-request-Aajsv-Cajsv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaosv -s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream)):.*@ab2p-unblock-request@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1010 -s@^referer(?=:[^\n]*[./](?:canadianrockies\.org)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1017 -s@^referer(?=:[^\n]*[./](?:cartoonnetwork\.com|tnt\.tv)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1026 -s@^referer(?=:[^\n]*[./](?:cbs\.com|planetfools\.com|televisiondiv\.ucoz\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1031 -s@^referer(?=:[^\n]*[./](?:channel5\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1032 -s@^referer(?=:[^\n]*[./](?:channel5\.com|citytv\.com|player\.stv\.tv|uktv\.co\.uk|wwe\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1054 -s@^referer(?=:[^\n]*[./](?:cnbc\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com|go\.com|nbc\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1066 -s@^referer(?=:[^\n]*[./](?:cricketcountry\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1081 -s@^referer(?=:[^\n]*[./](?:daisuki\.net)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1097 -s@^referer(?=:[^\n]*[./](?:didigames\.com|nitrome\.com|nx8\.com|oyunlar1\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1100 -s@^referer(?=:[^\n]*[./](?:digitoday\.fi|groovefm\.fi|hs\.fi|iltasanomat\.fi|istv\.fi|jimtv\.fi|livtv\.fi|loop\.fi|metrohelsinki\.fi|nelonen\.fi|nyt\.fi|radioaalto\.fi|radiorock\.fi|radiosuomipop\.fi|ruokala\.net|ruutu\.fi)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1122 -s@^referer(?=:[^\n]*[./](?:dramafever\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1123 -s@^referer(?=:[^\n]*[./](?:dramafever\.com|majorleaguegaming\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1124 -s@^referer(?=:[^\n]*[./](?:dramafever\.com|vaughnlive\.tv)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1137 -s@^referer(?=:[^\n]*[./](?:ebog\.com|gameark\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1146 -s@^referer(?=:[^\n]*[./](?:elcomercio\.pe)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1149 -s@^referer(?=:[^\n]*[./](?:embed\.life\.ru)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1159 -s@^referer(?=:[^\n]*[./](?:espn\.go\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1165 -s@^referer(?=:[^\n]*[./](?:eurovisionsports\.tv|talksport\.co\.uk|wrc\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1202 -s@^referer(?=:[^\n]*[./](?:flashgames247\.com|freeonlinegames\.com|gameitnow\.com|play181\.com|toongames\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1226 -s@^referer(?=:[^\n]*[./](?:freewebarcade\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1245 -s@^referer(?=:[^\n]*[./](?:gamesforwork\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1251 -s@^referer(?=:[^\n]*[./](?:get\.x-link\.pl)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1284 -s@^referer(?=:[^\n]*[./](?:hiddencamsvideo\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1289 -s@^referer(?=:[^\n]*[./](?:hot899\.com|nj1015\.com|streamtheworld\.com|tsn\.ca)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1298 -s@^referer(?=:[^\n]*[./](?:hulu\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1322 -s@^referer(?=:[^\n]*[./](?:indianexpress\.com|thehindu\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1332 -s@^referer(?=:[^\n]*[./](?:ipla\.tv)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1339 -s@^referer(?=:[^\n]*[./](?:itv\.com|uktv\.co\.uk)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1372 -s@^referer(?=:[^\n]*[./](?:kongregate\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1373 -s@^referer(?=:[^\n]*[./](?:kporno\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1378 -s@^referer(?=:[^\n]*[./](?:latimes\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1386 -s@^referer(?=:[^\n]*[./](?:life\.ru|smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1395 -s@^referer(?=:[^\n]*[./](?:livestream\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1414 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com|nfl\.com|player\.rogersradio\.ca|twitch\.tv|viki\.com|volarvideo\.com|worldstarhiphop\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1422 -s@^referer(?=:[^\n]*[./](?:maniatv\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1424 -s@^referer(?=:[^\n]*[./](?:manutd\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R143 -s@^referer(?=:[^\n]*[./](?:channel4\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1436 -s@^referer(?=:[^\n]*[./](?:melting-mindz\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1448 -s@^referer(?=:[^\n]*[./](?:mitele\.es|telecinco\.es)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1453 -s@^referer(?=:[^\n]*[./](?:mlssoccer\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1460 -s@^referer(?=:[^\n]*[./](?:moevideo\.net)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1464 -s@^referer(?=:[^\n]*[./](?:motogp\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1490 -s@^referer(?=:[^\n]*[./](?:nextmedia\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1492 -s@^referer(?=:[^\n]*[./](?:nfl\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1500 -s@^referer(?=:[^\n]*[./](?:nx8\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1507 -s@^referer(?=:[^\n]*[./](?:ok\.ru)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1508 -s@^referer(?=:[^\n]*[./](?:ole\.com\.ar)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1516 -s@^referer(?=:[^\n]*[./](?:open\.fm)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1529 -s@^referer(?=:[^\n]*[./](?:papeldigital\.info)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1556 -s@^referer(?=:[^\n]*[./](?:playreplay\.net|vaughnlive\.tv)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1560 -s@^referer(?=:[^\n]*[./](?:polskieradio\.pl|radiozet\.pl|spryciarze\.pl|tvp\.info)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1582 -s@^referer(?=:[^\n]*[./](?:radiou\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1605 -s@^referer(?=:[^\n]*[./](?:rte\.ie)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1606 -s@^referer(?=:[^\n]*[./](?:rtl\.lu)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1610 -s@^referer(?=:[^\n]*[./](?:rutube\.ru)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1642 -s@^referer(?=:[^\n]*[./](?:skai\.gr)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1644 -s@^referer(?=:[^\n]*[./](?:slacker\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1646 -s@^referer(?=:[^\n]*[./](?:slatev\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1652 -s@^referer(?=:[^\n]*[./](?:smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1659 -s@^referer(?=:[^\n]*[./](?:southpark\.nl)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1698 -s@^referer(?=:[^\n]*[./](?:teamcoco\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1736 -s@^referer(?=:[^\n]*[./](?:tut\.by)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1738 -s@^referer(?=:[^\n]*[./](?:tv\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1739 -s@^referer(?=:[^\n]*[./](?:tv10play\.se|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1740 -s@^referer(?=:[^\n]*[./](?:tv2\.dk)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1743 -s@^referer(?=:[^\n]*[./](?:tv3play\.se|uktv\.co\.uk)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1745 -s@^referer(?=:[^\n]*[./](?:tvhaber\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1747 -s@^referer(?=:[^\n]*[./](?:tvn\.pl|tvn24\.pl)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1754 -s@^referer(?=:[^\n]*[./](?:uktv\.co\.uk)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1765 -s@^referer(?=:[^\n]*[./](?:vaughnlive\.tv)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1781 -s@^referer(?=:[^\n]*[./](?:viki\.mx)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1788 -s@^referer(?=:[^\n]*[./](?:volarvideo\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1820 -s@^referer(?=:[^\n]*[./](?:wp\.tv)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1821 -s@^referer(?=:[^\n]*[./](?:wrc\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1822 -s@^referer(?=:[^\n]*[./](?:wunderground\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1835 -s@^referer(?=:[^\n]*[./](?:y8\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R1845 -s@^referer(?=:[^\n]*[./](?:youjizz\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R248 -s@^referer(?=:[^\n]*[./](?:go\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R278 -s@^referer(?=:[^\n]*[./](?:ibnlive\.in\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R287 -s@^referer(?=:[^\n]*[./](?:ivi\.ru)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R334 -s@^referer(?=:[^\n]*[./](?:megogo\.net)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R358 -s@^referer(?=:[^\n]*[./](?:newgrounds\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R379 -s@^referer(?=:[^\n]*[./](?:photobucket\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R473 -s@^referer(?=:[^\n]*[./](?:tmz\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R484 -s@^referer(?=:[^\n]*[./](?:tvcatchup\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R509 -s@^referer(?=:[^\n]*[./](?:vk\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R511 -s@^referer(?=:[^\n]*[./](?:vz\.ru)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R544 -s@^referer(?=:[^\n]*[./](?:zattoo\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R61 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R789 -s@^referer(?=:[^\n]*[./](?:3news\.co\.nz|49ers\.com|atlantafalcons\.com|azcardinals\.com|baltimoreravens\.com|buccaneers\.com|buffalobills\.com|chargers\.com|chicagobears\.com|clevelandbrowns\.com|colts\.com|dallascowboys\.com|denverbroncos\.com|detroitlions\.com|egirlgames\.net|euronews\.com|giants\.com|globaltv\.com|houstontexans\.com|jaguars\.com|kcchiefs\.com|ktvu\.com|miamidolphins\.com|neworleanssaints\.com|newyorkjets\.com|packers\.com|panthers\.com|patriots\.com|philadelphiaeagles\.com|raiders\.com|redskins\.com|rte\.ie|seahawks\.com|steelers\.com|stlouisrams\.com|thecomedynetwork\.ca|titansonline\.com|vikings\.com|wpcomwidgets\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R793 -s@^referer(?=:[^\n]*[./](?:4shared\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R814 -s@^referer(?=:[^\n]*[./](?:abc\.go\.com|abcfamily\.go\.com|abcnews\.go\.com|adultswim\.com|cartoonnetwork\.com|cc\.com|channel5\.com|cmt\.com|colbertnation\.com|comedycentral\.com|eonline\.com|espn\.go\.com|espndeportes\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com|flexonline\.com|gametrailers\.com|ign\.com|logotv\.com|mlb\.mlb\.com|mtv\.com|mtvnservices\.com|muscleandfitness\.com|nascar\.com|nbc\.com|nbcnews\.com|nbcsports\.com|nick\.com|player\.theplatform\.com|simpsonsworld\.com|sky\.com|southpark\.nl|southparkstudios\.com|spike\.com|teamcoco\.com|teennick\.com|thedailyshow\.com|thingx\.tv|tv3play\.se|tvland\.com|uverseonline\.att\.net|vevo\.com|vh1\.com|video\.cnbc\.com|vod\.fxnetworks\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R879 -s@^referer(?=:[^\n]*[./](?:aftenposten\.no|bt\.no|ekstrabladet\.dk|kuriren\.nu|qbrick\.com|svd\.se)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R909 -s@^referer(?=:[^\n]*[./](?:animecrazy\.net|gamedorm\.org|gamepro\.com|satsukai\.com|sparknotes\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R913 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresmedia\.com|atresplayer\.com|lasexta\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R915 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresplayer\.com|lasexta\.com|ondacero\.es)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R916 -s@^referer(?=:[^\n]*[./](?:antena3\.com|europafm\.com|ondacero\.es|vertele\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R920 -s@^referer(?=:[^\n]*[./](?:ap\.org|majorleaguegaming\.com|newsinc\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R954 -s@^referer(?=:[^\n]*[./](?:bandit\.se|lugnafavoriter\.com|nrj\.se|playradio\.se|radio1\.se|rixfm\.com|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R964 -s@^referer(?=:[^\n]*[./](?:bbc\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R969 -s@^referer(?=:[^\n]*[./](?:bet\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R977 -s@^referer(?=:[^\n]*[./](?:beyazperde\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R981 -s@^referer(?=:[^\n]*[./](?:bizu\.tv)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R982 -s@^referer(?=:[^\n]*[./](?:bizu\.tv|foxsports\.com\.au|majorleaguegaming\.com|pbs\.org|wikihow\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R986 -s@^referer(?=:[^\n]*[./](?:blogtalkradio\.com|britannica\.com|collegehumor\.com|freeonlinegames\.com|openfilmpod\.com|stickam\.com|talkingpointsmemo\.com|thesource\.com|wildearth\.tv|wunderground\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R989 -s@^referer(?=:[^\n]*[./](?:bn0\.com|ebog\.com|gameark\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R990 -s@^referer(?=:[^\n]*[./](?:bn0\.com|ebog\.com|gameark\.com|yepi\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R992 -s@^referer(?=:[^\n]*[./](?:bollywoodhungama\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R993 -s@^referer(?=:[^\n]*[./](?:bollywoodhungama\.com|videos\.mid-day\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-Rn1861 -s@^referer(?!:[^\n]*[./](?:channel4\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti -s@^referer:.*@-ab2p-unblock-request-Aaov-Caov-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-Rn1863 -s@^referer(?!:[^\n]*[./](?:filmon\.tv|newgrounds\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti -s@^referer:.*@-ab2p-unblock-request-Aaov-Caov-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-Rn1864 -s@^referer(?!:[^\n]*[./](?:patrz\.pl)):.*@ab2p-unblock-request-Aaov-Caov@Ti -s@^referer:.*@-ab2p-unblock-request-Aaov-Caov-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-Rn1866 -s@^referer(?!:[^\n]*[./](?:tamilflix\.net)):.*@ab2p-unblock-request-Aaov-Caov@Ti -s@^referer:.*@-ab2p-unblock-request-Aaov-Caov-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-Rn1867 -s@^referer(?!:[^\n]*[./](?:zattoo\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti -s@^referer:.*@-ab2p-unblock-request-Aaov-Caov-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-Rn641 -s@^referer(?!:[^\n]*[./](?:p2p\.adserver\.ip)):.*@ab2p-unblock-request-Aaov-Caov@Ti -s@^referer:.*@-ab2p-unblock-request-Aaov-Caov-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-Rn761 -s@^referer(?!:[^\n]*[./](?:superfilm\.pl)):.*@ab2p-unblock-request-Aaov-Caov@Ti -s@^referer:.*@-ab2p-unblock-request-Aaov-Caov-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aaov-Caov@i -s@^referer:.*@-ab2p-unblock-request-Aaov-Caov-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-nR -s@^.*@ab2p-unblock-request-Aaov-Caov@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1018 -s@^referer(?=:[^\n]*[./](?:cartoonnetworkasia\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1156 -s@^referer(?=:[^\n]*[./](?:escapefan\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1180 -s@^referer(?=:[^\n]*[./](?:ezone\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1201 -s@^referer(?=:[^\n]*[./](?:flashgames247\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1227 -s@^referer(?=:[^\n]*[./](?:freeworldgroup\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1243 -s@^referer(?=:[^\n]*[./](?:games\.yahoo\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1247 -s@^referer(?=:[^\n]*[./](?:gamesradar\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1321 -s@^referer(?=:[^\n]*[./](?:india\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1329 -s@^referer(?=:[^\n]*[./](?:interia\.tv)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1466 -s@^referer(?=:[^\n]*[./](?:mousebreaker\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1479 -s@^referer(?=:[^\n]*[./](?:my-magazine\.me)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1534 -s@^referer(?=:[^\n]*[./](?:pch\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1581 -s@^referer(?=:[^\n]*[./](?:radio\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1689 -s@^referer(?=:[^\n]*[./](?:talkrtv\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R1831 -s@^referer(?=:[^\n]*[./](?:xfire\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R358 -s@^referer(?=:[^\n]*[./](?:newgrounds\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R838 -s@^referer(?=:[^\n]*[./](?:addictinggames\.com|keygames\.com|nglmedia\.com|shockwave\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R868 -s@^referer(?=:[^\n]*[./](?:affrity\.com)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R892 -s@^referer(?=:[^\n]*[./](?:alphatv\.gr)):.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aasv-Casv@i -s@^referer:.*@-ab2p-unblock-request-Aasv-Casv-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aasv-Casv@i -s@^referer:.*@-ab2p-unblock-request-Aasv-Casv-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-nR -s@^.*@ab2p-unblock-request-Aasv-Casv@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasvnachijmov -s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash))(?!:[\s\w]*(?:\/(?:x-)?javascript|image\/|\/css|video\/|audio\/|\/octet-stream|\/html|\/xml)):.*@ab2p-unblock-request@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ac s@^accept(?=:[\s\w]*(?:\/css)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ac-Cc-when-R1161 -s@^referer(?=:[^\n]*[./](?:espnfc\.com)):.*@ab2p-unblock-request-Ac-Cc@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ac-Cc-when-R1517 -s@^referer(?=:[^\n]*[./](?:openload\.co)):.*@ab2p-unblock-request-Ac-Cc@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ac-Cc-when-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-unblock-request-Ac-Cc@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ac-Cc-when-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-unblock-request-Ac-Cc@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ac-Cc-when-R958 -s@^referer(?=:[^\n]*[./](?:barnesandnoble\.com)):.*@ab2p-unblock-request-Ac-Cc@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ac-Cc-when-R962 -s@^referer(?=:[^\n]*[./](?:bbc\.co\.uk)):.*@ab2p-unblock-request-Ac-Cc@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aci -s@^accept(?=:[\s\w]*(?:image\/|\/css)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aci-Cci-when-R1789 -s@^referer(?=:[^\n]*[./](?:voldingenglish\.com)):.*@ab2p-unblock-request-Aci-Cci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aci-Cci-when-R893 -s@^referer(?=:[^\n]*[./](?:alscash\.com)):.*@ab2p-unblock-request-Aci-Cci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acij -s@^accept(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript|\/css)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acij-Ccij-Xx-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Acij-Ccij-Xx@i -s@^referer:.*@-ab2p-unblock-request-Acij-Ccij-Xx-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acij-Ccij-Xx-when-nR -s@^.*@ab2p-unblock-request-Acij-Ccij-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acij-Ccij-when-R1519 -s@^referer(?=:[^\n]*[./](?:openload\.io)):.*@ab2p-unblock-request-Acij-Ccij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acj -s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript|\/css)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acj-Ccj-when-R897 -s@^referer(?=:[^\n]*[./](?:am\.ru)):.*@ab2p-unblock-request-Acj-Ccj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acj-Ccj-when-R906 -s@^referer(?=:[^\n]*[./](?:ancestry\.com|ancestry\.com\.au)):.*@ab2p-unblock-request-Acj-Ccj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acj-Ccj-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Acj-Ccj@i -s@^referer:.*@-ab2p-unblock-request-Acj-Ccj-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acj-Ccj-when-nR -s@^.*@ab2p-unblock-request-Acj-Ccj@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm s@^accept(?=:[\s\w]*(?:\/html|\/xml)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R1002 -s@^referer(?=:[^\n]*[./](?:brandverity\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R1143 -s@^referer(?=:[^\n]*[./](?:ehow\.com|livestrong\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R1342 -s@^referer(?=:[^\n]*[./](?:jabong\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R1504 -s@^referer(?=:[^\n]*[./](?:oascentral\.feedroom\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R1618 -s@^referer(?=:[^\n]*[./](?:screenshot\.brandverity\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R1686 -s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R1853 -s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R818 -s@^referer(?=:[^\n]*[./](?:about\.com|ehow\.com|livestrong\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R837 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R219 s@^referer(?=:[^\n]*[./](?:ad\.alimama\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R863 -s@^referer(?=:[^\n]*[./](?:adwords\.google\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R301 +s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-request-Ahm-Chm@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R865 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.co\.uk|affiliate-program\.amazon\.com|affiliate-program\.amazon\.in|affiliate\.amazon\.co\.jp|afiliados\.amazon\.es|associados\.amazon\.com\.br|associates\.amazon\.ca|associates\.amazon\.cn|partenaires\.amazon\.fr|partnernet\.amazon\.de|programma-affiliazione\.amazon\.it)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R866 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R868 -s@^referer(?=:[^\n]*[./](?:affrity\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R329 +s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-request-Ahm-Chm@Ti CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai s@^accept(?=:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-Xx-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci-Xx@i -s@^referer:.*@-ab2p-unblock-request-Ai-Ci-Xx-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-Xx-when-nR -s@^.*@ab2p-unblock-request-Ai-Ci-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1020 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|sianevents\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1021 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1022 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1023 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1071 -s@^referer(?=:[^\n]*[./](?:cwtv\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1074 -s@^referer(?=:[^\n]*[./](?:d3\.ru|dirty\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1087 -s@^referer(?=:[^\n]*[./](?:deliverydeals\.co\.uk)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1093 -s@^referer(?=:[^\n]*[./](?:deviantart\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1130 -s@^referer(?=:[^\n]*[./](?:e-hentai\.org|exhentai\.org)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1148 -s@^referer(?=:[^\n]*[./](?:emag\.hu|emag\.ro)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1160 -s@^referer(?=:[^\n]*[./](?:espnf1\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1188 -s@^referer(?=:[^\n]*[./](?:fest-ry\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1189 -s@^referer(?=:[^\n]*[./](?:ffan\.ru|shop\.kz|transbank\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1193 -s@^referer(?=:[^\n]*[./](?:filerev\.cc)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1195 -s@^referer(?=:[^\n]*[./](?:filmux\.net)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1210 -s@^referer(?=:[^\n]*[./](?:foodzy\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1214 -s@^referer(?=:[^\n]*[./](?:forzamotorsport\.net)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1225 -s@^referer(?=:[^\n]*[./](?:freeshipping\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1228 -s@^referer(?=:[^\n]*[./](?:fresh-book\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1233 -s@^referer(?=:[^\n]*[./](?:funnyordie\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1249 -s@^referer(?=:[^\n]*[./](?:gaybeeg\.info)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1253 -s@^referer(?=:[^\n]*[./](?:ghostery\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1256 -s@^referer(?=:[^\n]*[./](?:glamour\.com|itsjudytime\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1260 -s@^referer(?=:[^\n]*[./](?:go\.uakino\.net)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1264 -s@^referer(?=:[^\n]*[./](?:google\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1276 -s@^referer(?=:[^\n]*[./](?:hardocp\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1278 -s@^referer(?=:[^\n]*[./](?:hcsibir\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1307 -s@^referer(?=:[^\n]*[./](?:igromania\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1338 -s@^referer(?=:[^\n]*[./](?:itv\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1340 -s@^referer(?=:[^\n]*[./](?:izzylaif\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1342 -s@^referer(?=:[^\n]*[./](?:jabong\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1359 -s@^referer(?=:[^\n]*[./](?:kasi-time\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1362 -s@^referer(?=:[^\n]*[./](?:kingofgames\.net|nedbank\.co\.za|nedbankgreen\.co\.za|virginaustralia\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1382 -s@^referer(?=:[^\n]*[./](?:lenislens\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1392 -s@^referer(?=:[^\n]*[./](?:livefromdarylshouse\.com|pandasecurity\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1394 -s@^referer(?=:[^\n]*[./](?:livelib\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1412 -s@^referer(?=:[^\n]*[./](?:magicseaweed\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1420 -s@^referer(?=:[^\n]*[./](?:mangaumaru\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1427 -s@^referer(?=:[^\n]*[./](?:marketwatch\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1437 -s@^referer(?=:[^\n]*[./](?:members\.portalbuzz\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1438 -s@^referer(?=:[^\n]*[./](?:memecenter\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1439 -s@^referer(?=:[^\n]*[./](?:mercadolibre\.com\.ve)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1442 -s@^referer(?=:[^\n]*[./](?:metv\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1462 -s@^referer(?=:[^\n]*[./](?:monster\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1463 -s@^referer(?=:[^\n]*[./](?:morningstar\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1468 -s@^referer(?=:[^\n]*[./](?:movies\.yahoo\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1475 -s@^referer(?=:[^\n]*[./](?:murf\.nl|workhardclimbharder\.nl)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1482 -s@^referer(?=:[^\n]*[./](?:nalog\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1491 -s@^referer(?=:[^\n]*[./](?:nextmovie\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1505 -s@^referer(?=:[^\n]*[./](?:odysseyware\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1519 -s@^referer(?=:[^\n]*[./](?:openload\.io)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1537 -s@^referer(?=:[^\n]*[./](?:pencurimovie\.pw)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1539 -s@^referer(?=:[^\n]*[./](?:people\.com|peoplestylewatch\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1557 -s@^referer(?=:[^\n]*[./](?:podomatic\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1562 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|tube8\.com|youporn\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1567 -s@^referer(?=:[^\n]*[./](?:primerahora\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1580 -s@^referer(?=:[^\n]*[./](?:rackspace\.co\.uk|rackspace\.com\.au)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1599 -s@^referer(?=:[^\n]*[./](?:roofandfloor\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1609 -s@^referer(?=:[^\n]*[./](?:rutracker\.org\.ua)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1616 -s@^referer(?=:[^\n]*[./](?:scooter-zip\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1628 -s@^referer(?=:[^\n]*[./](?:serpens\.nl)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1655 -s@^referer(?=:[^\n]*[./](?:snapapp\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1657 -s@^referer(?=:[^\n]*[./](?:softportal\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1664 -s@^referer(?=:[^\n]*[./](?:sportsmole\.co\.uk)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1677 -s@^referer(?=:[^\n]*[./](?:sundaysportclassifieds\.co\.uk)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1683 -s@^referer(?=:[^\n]*[./](?:surfline\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1687 -s@^referer(?=:[^\n]*[./](?:tableterra\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1688 -s@^referer(?=:[^\n]*[./](?:tagline\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1695 -s@^referer(?=:[^\n]*[./](?:target\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1700 -s@^referer(?=:[^\n]*[./](?:techcrunch\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1702 -s@^referer(?=:[^\n]*[./](?:teletoon\.com|walmart\.ca)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1710 -s@^referer(?=:[^\n]*[./](?:thenextweb\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1726 -s@^referer(?=:[^\n]*[./](?:tree\.tv)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1752 -s@^referer(?=:[^\n]*[./](?:tyndex\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1753 -s@^referer(?=:[^\n]*[./](?:ubi\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1758 -s@^referer(?=:[^\n]*[./](?:uptobox\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1767 -s@^referer(?=:[^\n]*[./](?:vedomosti\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1773 -s@^referer(?=:[^\n]*[./](?:vibe\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1783 -s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1791 -s@^referer(?=:[^\n]*[./](?:vroomvroomvroom\.com\.au)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1792 -s@^referer(?=:[^\n]*[./](?:vseplatezhi\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1793 -s@^referer(?=:[^\n]*[./](?:vshp2016\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1801 -s@^referer(?=:[^\n]*[./](?:wealthymen\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1810 -s@^referer(?=:[^\n]*[./](?:wikihow\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1816 -s@^referer(?=:[^\n]*[./](?:wmpoweruser\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1817 -s@^referer(?=:[^\n]*[./](?:wordpress\.org)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1824 -s@^referer(?=:[^\n]*[./](?:www\.google\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1859 -s@^referer(?=:[^\n]*[./](?:泻褍褌褟褌邪\.褉褎)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1868t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|aplus\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|drhotze\.com|flexonline\.com|hallels\.com|hellou\.co\.uk|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|radaronline\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|stevedeace\.com|techtimes\.com|thechive\.com|themattwalshblog\.com|unilad\.co\.uk|variety\.com|weaponsmedia\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1869t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|breathecast\.com|bulletsfirst\.net|cheatsheet\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|conservativebyte\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|drhotze\.com|enstarz\.com|hallels\.com|hngn\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|libertyunyielding\.com|mobilelikez\.com|mstarz\.com|musictimes\.com|natureworldnews\.com|newser\.com|oddee\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|redmaryland\.com|shark-tank\.com|stevedeace\.com|techtimes\.com|thechive\.com|themattwalshblog\.com|unilad\.co\.uk|weaponsmedia\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1870t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:bulletsfirst\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1871t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:kissanime\.com|kisscartoon\.me))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1872t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:kisscartoon\.me))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1873t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:seekingalpha\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R1874t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:store\.explosm\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R202 -s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R327 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R343 -s@^referer(?=:[^\n]*[./](?:moonwalk\.cc)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R382 -s@^referer(?=:[^\n]*[./](?:picforall\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R39 -s@^referer(?=:[^\n]*[./](?:3dnews\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R451 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R63 -s@^referer(?=:[^\n]*[./](?:accesshollywood\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R711t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:kissanime\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R783 -s@^referer(?=:[^\n]*[./](?:2dayshippingbymastercard\.com|catalogfavoritesvip\.com|chase\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R791 -s@^referer(?=:[^\n]*[./](?:4chan\.org)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R792 -s@^referer(?=:[^\n]*[./](?:4mycams\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R820 -s@^referer(?=:[^\n]*[./](?:accounts\.google\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R865 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.co\.uk|affiliate-program\.amazon\.com|affiliate-program\.amazon\.in|affiliate\.amazon\.co\.jp|afiliados\.amazon\.es|associados\.amazon\.com\.br|associates\.amazon\.ca|associates\.amazon\.cn|partenaires\.amazon\.fr|partnernet\.amazon\.de|programma-affiliazione\.amazon\.it)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R868 -s@^referer(?=:[^\n]*[./](?:affrity\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R869 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|theperfectsaver\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R870 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|deliverydeals\.co\.uk|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R871 -s@^referer(?=:[^\n]*[./](?:affrity\.com|catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R872 -s@^referer(?=:[^\n]*[./](?:affrity\.com|lockd\.co\.uk)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R881 -s@^referer(?=:[^\n]*[./](?:aftershock\.news|expertbank\.com|hock5\.ru|legionhardware\.com|rw\.by)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R884 -s@^referer(?=:[^\n]*[./](?:akam\.no|amobil\.no|gamer\.no|hardware\.no|teknofil\.no)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R899 -s@^referer(?=:[^\n]*[./](?:amazon\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R900 -s@^referer(?=:[^\n]*[./](?:amctheatres\.com|beqala\.com|bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|drupalcommerce\.org|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|nedbank\.co\.za|orbitz\.com|podomatic\.com|weddingspot\.co\.uk|wlj\.net|zavvi\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R902 -s@^referer(?=:[^\n]*[./](?:amic\.ru|animespirit\.ru|citilink\.ru|furfurmag\.ru|killot\.ru|onlime\.ru|sobesednik\.ru|toptracker\.ru|webnames\.ru|wildberries\.ru|zalivalka\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R919 -s@^referer(?=:[^\n]*[./](?:aopschools\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R925 -s@^referer(?=:[^\n]*[./](?:apple\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R935 -s@^referer(?=:[^\n]*[./](?:astromeridian\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R955 -s@^referer(?=:[^\n]*[./](?:banki\.ru)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R956 -s@^referer(?=:[^\n]*[./](?:bannerist\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R972 -s@^referer(?=:[^\n]*[./](?:betfair\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R976 -s@^referer(?=:[^\n]*[./](?:betyper\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R995 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R223 s@^referer(?=:[^\n]*[./](?:books\.com\.tw)):.*@ab2p-unblock-request-Ai-Ci@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R996 -s@^referer(?=:[^\n]*[./](?:boracay\.tel)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R997 -s@^referer(?=:[^\n]*[./](?:bored\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R998 -s@^referer(?=:[^\n]*[./](?:boredpanda\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i -s@^referer:.*@-ab2p-unblock-request-Ai-Ci-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i -s@^referer:.*@-ab2p-unblock-request-Ai-Ci-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-nR -s@^.*@ab2p-unblock-request-Ai-Ci@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R312 +s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij s@^accept(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1068 -s@^referer(?=:[^\n]*[./](?:ctc\.ru|mts\.ru|ozon\.ru|tnt-online\.ru|videomore\.ru)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1075 -s@^referer(?=:[^\n]*[./](?:dafiti\.cl|dafiti\.com\.ar|dafiti\.com\.br|dafiti\.com\.co)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1128 -s@^referer(?=:[^\n]*[./](?:dxdigitals\.info)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1163 -s@^referer(?=:[^\n]*[./](?:europaplus\.ru|retrofm\.ru)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1349 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R266 s@^referer(?=:[^\n]*[./](?:jjcast\.com)):.*@ab2p-unblock-request-Aij-Cij@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1353 -s@^referer(?=:[^\n]*[./](?:jobnet\.co\.il|jobs-israel\.com)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1517 -s@^referer(?=:[^\n]*[./](?:openload\.co)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1562 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|tube8\.com|youporn\.com)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1651 -s@^referer(?=:[^\n]*[./](?:smileonthetiles\.com|smileonthetiles2\.co\.uk)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1725 -s@^referer(?=:[^\n]*[./](?:travelzoo\.com)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1746 -s@^referer(?=:[^\n]*[./](?:tvigle\.ru|wikimart\.ru)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1875t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativeintel\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aij-Cij@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1876t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|photobucket\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aij-Cij@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1877t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aij-Cij@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1878t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|breathecast\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.com|hallels\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aij-Cij@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1879t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:cbs\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aij-Cij@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R1880t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:conservativeintel\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aij-Cij@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R379 -s@^referer(?=:[^\n]*[./](?:photobucket\.com)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R951 -s@^referer(?=:[^\n]*[./](?:b\.inbox\.lv)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R953 -s@^referer(?=:[^\n]*[./](?:baibako\.tv)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R976 -s@^referer(?=:[^\n]*[./](?:betyper\.com)):.*@ab2p-unblock-request-Aij-Cij@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aij-Cij@i -s@^referer:.*@-ab2p-unblock-request-Aij-Cij-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-nR -s@^.*@ab2p-unblock-request-Aij-Cij@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-R1502 -s@^referer(?=:[^\n]*[./](?:nytimes\.com)):.*@ab2p-unblock-request-Aj-Cj-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-R1725 -s@^referer(?=:[^\n]*[./](?:travelzoo\.com)):.*@ab2p-unblock-request-Aj-Cj-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-R1726 -s@^referer(?=:[^\n]*[./](?:tree\.tv)):.*@ab2p-unblock-request-Aj-Cj-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-R1881nt +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-R188nt s@^referer:.*@$&\t$host@Di s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org))(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj-Xx@i s@^referer:.*@-ab2p-unblock-request-Aj-Cj-Xx-when-nR@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-unblock-request-Aj-Cj-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj-Xx@i -s@^referer:.*@-ab2p-unblock-request-Aj-Cj-Xx-when-nR@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-nR s@^.*@ab2p-unblock-request-Aj-Cj-Xx@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1011 -s@^referer(?=:[^\n]*[./](?:candystand\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1015 -s@^referer(?=:[^\n]*[./](?:cartalk\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1033 -s@^referer(?=:[^\n]*[./](?:charlieandmekids\.co\.nz|charlieandmekids\.com\.au)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1035 -s@^referer(?=:[^\n]*[./](?:cheaptickets\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1037 -s@^referer(?=:[^\n]*[./](?:cheatsheet\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1044 -s@^referer(?=:[^\n]*[./](?:citationmachine\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1046 -s@^referer(?=:[^\n]*[./](?:cityam\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1048 -s@^referer(?=:[^\n]*[./](?:civilization5cheats\.com|kzupload\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1051 -s@^referer(?=:[^\n]*[./](?:clubedohardware\.com\.br)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1052 -s@^referer(?=:[^\n]*[./](?:clubedohardware\.com\.br|yellowbridge\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1055 -s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1061 -s@^referer(?=:[^\n]*[./](?:comedy\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1069 -s@^referer(?=:[^\n]*[./](?:cuantarazon\.com|cuantocabron\.com|vistoenfb\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1082 -s@^referer(?=:[^\n]*[./](?:dasolo\.info)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1084 -s@^referer(?=:[^\n]*[./](?:dayt\.se)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1086 -s@^referer(?=:[^\n]*[./](?:deals\.segmentnext\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1088 -s@^referer(?=:[^\n]*[./](?:delo\.si)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1089 -s@^referer(?=:[^\n]*[./](?:demonoid\.ooo)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1090 -s@^referer(?=:[^\n]*[./](?:demonoid\.ph)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1091 -s@^referer(?=:[^\n]*[./](?:demonoid\.pw)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1094 -s@^referer(?=:[^\n]*[./](?:di\.se)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1096 -s@^referer(?=:[^\n]*[./](?:dic\.academic\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1105 -s@^referer(?=:[^\n]*[./](?:dirtstyle\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1107 -s@^referer(?=:[^\n]*[./](?:discovery\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1110 -s@^referer(?=:[^\n]*[./](?:disqus\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1111 -s@^referer(?=:[^\n]*[./](?:dizi-mag\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1112 -s@^referer(?=:[^\n]*[./](?:dlh\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1113 -s@^referer(?=:[^\n]*[./](?:dnswatch\.info)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1117 -s@^referer(?=:[^\n]*[./](?:dogecoinpuddle\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1125 -s@^referer(?=:[^\n]*[./](?:dressupgal\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1126 -s@^referer(?=:[^\n]*[./](?:drivearabia\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1127 -s@^referer(?=:[^\n]*[./](?:dubs\.me|filestore123\.info|myfilestore\.com|portable77download\.blogspot\.com|pspmaniaonline\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1139 -s@^referer(?=:[^\n]*[./](?:economist\.com|feedroom\.com|stanford\.edu)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1140 -s@^referer(?=:[^\n]*[./](?:eg\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1145 -s@^referer(?=:[^\n]*[./](?:ekstrabladet\.dk)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1152 -s@^referer(?=:[^\n]*[./](?:enjoydressup\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1154 -s@^referer(?=:[^\n]*[./](?:entertainment\.ie)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1156 -s@^referer(?=:[^\n]*[./](?:escapefan\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1157 -s@^referer(?=:[^\n]*[./](?:eskago\.pl)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1158 -s@^referer(?=:[^\n]*[./](?:esmas\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1159 -s@^referer(?=:[^\n]*[./](?:espn\.go\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1164 -s@^referer(?=:[^\n]*[./](?:europe-airports\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1166 -s@^referer(?=:[^\n]*[./](?:eventhubs\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1192 -s@^referer(?=:[^\n]*[./](?:fileover\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1193 -s@^referer(?=:[^\n]*[./](?:filerev\.cc)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1196 -s@^referer(?=:[^\n]*[./](?:filmweb\.pl)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1197 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R242 s@^referer(?=:[^\n]*[./](?:finance\.sina\.com\.cn)):.*@ab2p-unblock-request-Aj-Cj@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1199 -s@^referer(?=:[^\n]*[./](?:firstonetv\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1204 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R244 s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1205 -s@^referer(?=:[^\n]*[./](?:flv2mp3\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1208 -s@^referer(?=:[^\n]*[./](?:food\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1211 -s@^referer(?=:[^\n]*[./](?:forbes\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1213 -s@^referer(?=:[^\n]*[./](?:forums\.tweaktown\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1215 -s@^referer(?=:[^\n]*[./](?:foxnews\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1218 -s@^referer(?=:[^\n]*[./](?:free-space\.net|hxcmusic\.com|hxcmusic\.me|justfortrendygirls\.com|mmusicz\.com|receive-sms\.com|runescapehack\.net|spotifyripping\.com|stumblehere\.com|tvgorge\.com|tvokay\.com|videodownloadx\.com|wtso\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1223 -s@^referer(?=:[^\n]*[./](?:freebitcoinz\.com|youserials\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1229 -s@^referer(?=:[^\n]*[./](?:fs\.to)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1230 -s@^referer(?=:[^\n]*[./](?:ft\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1240 -s@^referer(?=:[^\n]*[./](?:games-tv\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1241 -s@^referer(?=:[^\n]*[./](?:games\.co\.uk)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1242 -s@^referer(?=:[^\n]*[./](?:games\.softgames\.de)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1246 -s@^referer(?=:[^\n]*[./](?:gamespot\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1254 -s@^referer(?=:[^\n]*[./](?:ghsrv\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1266 -s@^referer(?=:[^\n]*[./](?:greenbaypressgazette\.com|wcsh6\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1267 -s@^referer(?=:[^\n]*[./](?:gsmpro\.com\.pl|lechia\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1269 -s@^referer(?=:[^\n]*[./](?:guardian\.co\.uk)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1270 -s@^referer(?=:[^\n]*[./](?:guardian\.co\.uk|landandfarm\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1291 -s@^referer(?=:[^\n]*[./](?:hotwire\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1294 -s@^referer(?=:[^\n]*[./](?:hqq\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1300 -s@^referer(?=:[^\n]*[./](?:hypeseek\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1301 -s@^referer(?=:[^\n]*[./](?:i-makeawish\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1303 -s@^referer(?=:[^\n]*[./](?:idnes\.cz|moviezone\.cz)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1304 -s@^referer(?=:[^\n]*[./](?:ifirstrowit\.eu)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1305 -s@^referer(?=:[^\n]*[./](?:ifirstrowus\.eu)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1306 -s@^referer(?=:[^\n]*[./](?:igougo\.com|travelocity\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1308 -s@^referer(?=:[^\n]*[./](?:iguides\.ru|tvigle\.ru|wikimart\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1311 -s@^referer(?=:[^\n]*[./](?:ilive\.to)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1312 -s@^referer(?=:[^\n]*[./](?:ilix\.in|priva\.us)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1313 -s@^referer(?=:[^\n]*[./](?:ilix\.in|priva\.us|urlink\.at)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1318 -s@^referer(?=:[^\n]*[./](?:imgserve\.net|imgtiger\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1323 -s@^referer(?=:[^\n]*[./](?:indiatimes\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1331 -s@^referer(?=:[^\n]*[./](?:ip-address\.org)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1334 -s@^referer(?=:[^\n]*[./](?:irr\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1335 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R264 s@^referer(?=:[^\n]*[./](?:item\.jd\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1338 -s@^referer(?=:[^\n]*[./](?:itv\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1344 -s@^referer(?=:[^\n]*[./](?:jamo\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1345 -s@^referer(?=:[^\n]*[./](?:jav4\.me)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1346 -s@^referer(?=:[^\n]*[./](?:javfee\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1350 -s@^referer(?=:[^\n]*[./](?:jkhentai\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1358 -s@^referer(?=:[^\n]*[./](?:kakprosto\.ru|rusplt\.ru|sobesednik\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1361 -s@^referer(?=:[^\n]*[./](?:keygames\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1363 -s@^referer(?=:[^\n]*[./](?:kinomoov\.net|vgtimes\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1364 -s@^referer(?=:[^\n]*[./](?:kinopoisk\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1365 -s@^referer(?=:[^\n]*[./](?:kissanime\.com|kisscartoon\.me)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1367 -s@^referer(?=:[^\n]*[./](?:kisscartoon\.me)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1370 -s@^referer(?=:[^\n]*[./](?:kmvt\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1376 -s@^referer(?=:[^\n]*[./](?:kval\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1377 -s@^referer(?=:[^\n]*[./](?:landandfarm\.com|query\.nytimes\.com|trustedreviews\.com|www\.google\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1380 -s@^referer(?=:[^\n]*[./](?:lavozdegalicia\.es)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1383 -s@^referer(?=:[^\n]*[./](?:lenta\.ru|news\.rambler\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1393 -s@^referer(?=:[^\n]*[./](?:livejournal\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1403 -s@^referer(?=:[^\n]*[./](?:lostfilm\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1404 -s@^referer(?=:[^\n]*[./](?:lshunter\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1408 -s@^referer(?=:[^\n]*[./](?:mackolik\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1409 -s@^referer(?=:[^\n]*[./](?:mackolik\.com|sahadan\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1416 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|mangabird\.com|memegenerator\.net|onemanga\.me|waoanime\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1423 -s@^referer(?=:[^\n]*[./](?:manualsonline\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1425 -s@^referer(?=:[^\n]*[./](?:mapy\.hiking\.sk)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1430 -s@^referer(?=:[^\n]*[./](?:mavs\.wpengine\.netdna-cdn\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1431 -s@^referer(?=:[^\n]*[./](?:maxigame\.org)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1432 -s@^referer(?=:[^\n]*[./](?:mediatechnologycenter\.info)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1441 -s@^referer(?=:[^\n]*[./](?:metro\.ca)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1450 -s@^referer(?=:[^\n]*[./](?:mlb\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1467 -s@^referer(?=:[^\n]*[./](?:movieleaks\.co|videodepot\.org)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1472 -s@^referer(?=:[^\n]*[./](?:msn\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1477 -s@^referer(?=:[^\n]*[./](?:muz\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1488 -s@^referer(?=:[^\n]*[./](?:netzero\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1489 -s@^referer(?=:[^\n]*[./](?:nextag\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1495 -s@^referer(?=:[^\n]*[./](?:ninemsn\.com\.au)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1501 -s@^referer(?=:[^\n]*[./](?:nyctourist\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1503 -s@^referer(?=:[^\n]*[./](?:nzdating\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1510 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R284 s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-request-Aj-Cj@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1517 -s@^referer(?=:[^\n]*[./](?:openload\.co)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1518 -s@^referer(?=:[^\n]*[./](?:openload\.co|openload\.io)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1521 -s@^referer(?=:[^\n]*[./](?:orbitz\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1532 -s@^referer(?=:[^\n]*[./](?:pb\.wtf)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1533 -s@^referer(?=:[^\n]*[./](?:pcgames-download\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1537 -s@^referer(?=:[^\n]*[./](?:pencurimovie\.pw)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1538 -s@^referer(?=:[^\n]*[./](?:people\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1546 -s@^referer(?=:[^\n]*[./](?:pic4you\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1550 -s@^referer(?=:[^\n]*[./](?:piter\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1555 -s@^referer(?=:[^\n]*[./](?:player\.video\.news\.com\.au)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1558 -s@^referer(?=:[^\n]*[./](?:politico\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1562 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|tube8\.com|youporn\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1569 -s@^referer(?=:[^\n]*[./](?:pro-football-reference\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1575 -s@^referer(?=:[^\n]*[./](?:qip\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1576 -s@^referer(?=:[^\n]*[./](?:qoinfaucet\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1579 -s@^referer(?=:[^\n]*[./](?:qz\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1586 -s@^referer(?=:[^\n]*[./](?:rantlifestyle\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1587 -s@^referer(?=:[^\n]*[./](?:rbc\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1588 -s@^referer(?=:[^\n]*[./](?:redmaryland\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1595 -s@^referer(?=:[^\n]*[./](?:repeatmyvids\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1598 -s@^referer(?=:[^\n]*[./](?:rollingstone\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1610 -s@^referer(?=:[^\n]*[./](?:rutube\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1612 -s@^referer(?=:[^\n]*[./](?:sahadan\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1613 -s@^referer(?=:[^\n]*[./](?:sankakucomplex\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1615 -s@^referer(?=:[^\n]*[./](?:sc2casts\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1621 -s@^referer(?=:[^\n]*[./](?:se\.no)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1630 -s@^referer(?=:[^\n]*[./](?:serverfault\.com|stackoverflow\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1647 -s@^referer(?=:[^\n]*[./](?:slickvid\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1648 -s@^referer(?=:[^\n]*[./](?:smallscreennetwork\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1662 -s@^referer(?=:[^\n]*[./](?:spoilertv\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1664 -s@^referer(?=:[^\n]*[./](?:sportsmole\.co\.uk)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1665 -s@^referer(?=:[^\n]*[./](?:springstreetads\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1670 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru|xn--b1ajehof\.xn--80asehdb|蟹胁芯薪泻懈\.芯薪谢邪泄薪)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1673 -s@^referer(?=:[^\n]*[./](?:strokekampanjen\.se|tigerofsweden\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1678 -s@^referer(?=:[^\n]*[./](?:supercheats\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1679 -s@^referer(?=:[^\n]*[./](?:superfilm\.pl)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1685 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R300 s@^referer(?=:[^\n]*[./](?:sx566\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1699 -s@^referer(?=:[^\n]*[./](?:teamxbox\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1700 -s@^referer(?=:[^\n]*[./](?:techcrunch\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1701 -s@^referer(?=:[^\n]*[./](?:teletoon\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1704 -s@^referer(?=:[^\n]*[./](?:testtube\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1705 -s@^referer(?=:[^\n]*[./](?:the-village\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1708 -s@^referer(?=:[^\n]*[./](?:theemptynestexpress\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1711 -s@^referer(?=:[^\n]*[./](?:thesimsresource\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1713 -s@^referer(?=:[^\n]*[./](?:time\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1714 -s@^referer(?=:[^\n]*[./](?:tjournal\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1715 -s@^referer(?=:[^\n]*[./](?:tjournal\.ru|tvigle\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1722 -s@^referer(?=:[^\n]*[./](?:trackitonline\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1724 -s@^referer(?=:[^\n]*[./](?:travelocity\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1725 -s@^referer(?=:[^\n]*[./](?:travelzoo\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1726 -s@^referer(?=:[^\n]*[./](?:tree\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1732 -s@^referer(?=:[^\n]*[./](?:turbogenerator\.info)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1733 -s@^referer(?=:[^\n]*[./](?:turbovideos\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1737 -s@^referer(?=:[^\n]*[./](?:tv-serial\.org)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1738 -s@^referer(?=:[^\n]*[./](?:tv\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1746 -s@^referer(?=:[^\n]*[./](?:tvigle\.ru|wikimart\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1748 -s@^referer(?=:[^\n]*[./](?:tvn24\.pl)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1749 -s@^referer(?=:[^\n]*[./](?:tvnet\.lv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1754 -s@^referer(?=:[^\n]*[./](?:uktv\.co\.uk)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1758 -s@^referer(?=:[^\n]*[./](?:uptobox\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1759 -s@^referer(?=:[^\n]*[./](?:ura-inform\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1764 -s@^referer(?=:[^\n]*[./](?:uzmantv\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1766 -s@^referer(?=:[^\n]*[./](?:vcoins\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1772 -s@^referer(?=:[^\n]*[./](?:vg247\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1784 -s@^referer(?=:[^\n]*[./](?:virginmedia\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1789 -s@^referer(?=:[^\n]*[./](?:voldingenglish\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1794 -s@^referer(?=:[^\n]*[./](?:vtomske\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1799 -s@^referer(?=:[^\n]*[./](?:watchseries-online\.eu)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1811 -s@^referer(?=:[^\n]*[./](?:wikimart\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1814 -s@^referer(?=:[^\n]*[./](?:wired\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1820 -s@^referer(?=:[^\n]*[./](?:wp\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1824 -s@^referer(?=:[^\n]*[./](?:www\.google\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1826 -s@^referer(?=:[^\n]*[./](?:www\.msn\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1831 -s@^referer(?=:[^\n]*[./](?:xfire\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1843 -s@^referer(?=:[^\n]*[./](?:yimg\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1844 -s@^referer(?=:[^\n]*[./](?:yorkshirepost\.co\.uk)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1855 -s@^referer(?=:[^\n]*[./](?:zeperfs\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1856 -s@^referer(?=:[^\n]*[./](?:zerozero\.pt)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1857 -s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1879t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:cbs\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1882t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|sportsmole\.co\.uk|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1883t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1884t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|supercheats\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1885t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|tinypic\.com|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1886t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1887t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|enstarz\.com|explosm\.net|flexonline\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1888t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:cbs\.com|eventhubs\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1889t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:cbsnews\.com|colbertlateshow\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1890t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:eventhubs\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1891t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:heroichollywood\.com|supercheats\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1892t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:heroichollywood\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1893t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:latinopost\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1894t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:psarips\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R1895t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:thechive\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R197 -s@^referer(?=:[^\n]*[./](?:extremetech\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R217 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R221 -s@^referer(?=:[^\n]*[./](?:fishki\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R24 -s@^referer(?=:[^\n]*[./](?:1tv\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R326 -s@^referer(?=:[^\n]*[./](?:mail\.yahoo\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R343 -s@^referer(?=:[^\n]*[./](?:moonwalk\.cc)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R358 -s@^referer(?=:[^\n]*[./](?:newgrounds\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R375 -s@^referer(?=:[^\n]*[./](?:patheos\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R379 -s@^referer(?=:[^\n]*[./](?:photobucket\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R39 -s@^referer(?=:[^\n]*[./](?:3dnews\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R400 -s@^referer(?=:[^\n]*[./](?:primewire\.ag|primewire\.in)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R402 -s@^referer(?=:[^\n]*[./](?:promptfile\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R414 -s@^referer(?=:[^\n]*[./](?:reuters\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R437 -s@^referer(?=:[^\n]*[./](?:slader\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R447 -s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R484 -s@^referer(?=:[^\n]*[./](?:tvcatchup\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R511 -s@^referer(?=:[^\n]*[./](?:vz\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R513 -s@^referer(?=:[^\n]*[./](?:washingtontimes\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R540 -s@^referer(?=:[^\n]*[./](?:youwatch\.org)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R690t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:filmovizija\.in))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R696t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:primewire\.ag|primewire\.in))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R711t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:kissanime\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R766 -s@^referer(?=:[^\n]*[./](?:120sports\.com|africanindy\.com|beqala\.com|bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|cbsnews\.com|cwtv\.com|deadspin\.com|denofgeek\.co|denofgeek\.com|drupalcommerce\.org|ew\.com|forbes\.com|foxnews\.com|gawker\.com|gizmodo\.com|independent\.co\.uk|investopedia\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|latimes\.com|lifehacker\.com|m\.tmz\.com|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|merriam-webster\.com|mlb\.com|nauticexpo\.com|nytimes\.com|orbitz\.com|sendtonews\.com|thesimsresource\.com|time\.com|urbandictionary\.com|vanityfair\.com|video\.foxbusiness\.com|video\.foxnews\.com|vroomvroomvroom\.com\.au|weather\.com|weddingspot\.co\.uk|wlj\.net|zavvi\.com|zdnet\.com|zillow\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R785 -s@^referer(?=:[^\n]*[./](?:2mm\.tv|2mmei\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R799 -s@^referer(?=:[^\n]*[./](?:7days\.ru|bigpicture\.ru|iphones\.ru|lenta\.ru|rambler\.ru|ria\.ru|sovsport\.md|sovsport\.ru|sportbox\.ru|sports\.ru|tjournal\.ru|vc\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R800 -s@^referer(?=:[^\n]*[./](?:7days\.ru|bigpicture\.ru|kakprosto\.ru|lenta\.ru|rambler\.ru|ria\.ru|rusplt\.ru|sobesednik\.ru|sovsport\.md|sovsport\.ru|sportbox\.ru|sports\.ru|tjournal\.ru|vc\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R801 -s@^referer(?=:[^\n]*[./](?:7days\.ru|sports\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R808 -s@^referer(?=:[^\n]*[./](?:999\.md)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R809 -s@^referer(?=:[^\n]*[./](?:99px\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R812 -s@^referer(?=:[^\n]*[./](?:9news\.com\.au)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R826 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|cheatsheet\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R831 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|valuewalk\.com|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R863 -s@^referer(?=:[^\n]*[./](?:adwords\.google\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R864 -s@^referer(?=:[^\n]*[./](?:afdah\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R874 -s@^referer(?=:[^\n]*[./](?:afisha\.ru|aif\.ru|eg\.ru|ex\.ua|forum\.tatfish\.com|grandars\.ru|klops\.ru|meta\.ua|mobile-review\.com|ozon\.ru|thg\.ru|vz\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R875 -s@^referer(?=:[^\n]*[./](?:afisha\.ru|aif\.ru|ex\.ua|fileplaneta\.com|forum\.tatfish\.com|grandars\.ru|klops\.ru|meta\.ua|oceanvideo\.ru|ozon\.ru|thg\.ru|vz\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R878 -s@^referer(?=:[^\n]*[./](?:afreesms\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R880 -s@^referer(?=:[^\n]*[./](?:aftenposten\.no|e24\.no|hardware\.no|vg\.no)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R887 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|megafon\.ru|mirtesen\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R890 -s@^referer(?=:[^\n]*[./](?:all-episodes\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R894 -s@^referer(?=:[^\n]*[./](?:altapress\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R895 -s@^referer(?=:[^\n]*[./](?:altapress\.ru|artfile\.ru|baskino\.com|biysk24\.ru|klops\.ru|kulturologia\.ru|lokomotiv\.info|russianfood\.com|topnews\.ru|verstov\.info)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R896 -s@^referer(?=:[^\n]*[./](?:altoque\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R923 -s@^referer(?=:[^\n]*[./](?:app\.com|argusleader\.com|autoguide\.com|battlecreekenquirer\.com|baxterbulletin\.com|beqala\.com|boatshop24\.com|bodas\.com\.mx|bodas\.net|bucyrustelegraphforum\.com|burlingtonfreepress\.com|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|chillicothegazette\.com|cincinnati\.com|clarionledger\.com|coloradoan\.com|coshoctontribune\.com|courier-journal\.com|courierpostonline\.com|dailyrecord\.com|dailyworld\.com|deadspin\.com|defensenews\.com|delawareonline\.com|democratandchronicle\.com|desmoinesregister\.com|dnj\.com|drupalcommerce\.org|escapegames\.com|fdlreporter\.com|floridatoday\.com|foxnews\.com|freep\.com|games\.latimes\.com|gawker\.com|gizmodo\.com|greatfallstribune\.com|greenbaypressgazette\.com|greenvilleonline\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|htrnews\.com|indystar\.com|investopedia\.com|io9\.com|ithacajournal\.com|jacksonsun\.com|jalopnik\.com|jconline\.com|jezebel\.com|kotaku\.com|lancastereaglegazette\.com|lansingstatejournal\.com|lifehacker\.com|livingstondaily\.com|lohud\.com|mansfieldnewsjournal\.com|mariages\.net|marionstar\.com|marshfieldnewsherald\.com|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|montgomeryadvertiser\.com|motorcycle\.com|mycentraljersey\.com|mydesert\.com|mysoju\.com|nauticexpo\.com|nedbank\.co\.za|nedbankgreen\.co\.za|newarkadvocate\.com|news-leader\.com|news-press\.com|newsleader\.com|nonags\.com|orbitz\.com|pal-item\.com|podomatic\.com|portclintonnewsherald\.com|postcrescent\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|sctimes\.com|sheboyganpress\.com|shreveporttimes\.com|stargazette\.com|statesmanjournal\.com|stevenspointjournal\.com|tallahassee\.com|tennessean\.com|theadvertiser\.com|thedailyjournal\.com|theleafchronicle\.com|thenews-messenger\.com|thenewsstar\.com|thenorthwestern\.com|thesimsresource\.com|thespectrum\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|ticketek\.com\.ar|urbandictionary\.com|virginaustralia\.com|visaliatimesdelta\.com|volokh\.com|vroomvroomvroom\.com\.au|wausaudailyherald\.com|weddingspot\.co\.uk|wisconsinrapidstribune\.com|wlj\.net|zanesvilletimesrecorder\.com|zavvi\.com|zillow\.com|zui\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R928 -s@^referer(?=:[^\n]*[./](?:apps\.admob\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R931 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|glav\.su|kp\.ru|newstube\.ru|sobesednik\.ru|soccer\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R934 -s@^referer(?=:[^\n]*[./](?:askqology\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R937 -s@^referer(?=:[^\n]*[./](?:atlanticcitywebcam\.com|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|keywestharborwebcam\.com|morganhillwebcam\.com|nyharborwebcam\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R944 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|qip\.ru|rbc\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R945 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|qip\.ru|rbc\.ru|utro\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R947 -s@^referer(?=:[^\n]*[./](?:autos\.ca)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R949 -s@^referer(?=:[^\n]*[./](?:ava\.md)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R950 -s@^referer(?=:[^\n]*[./](?:avforums\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R959 -s@^referer(?=:[^\n]*[./](?:barstoolsports\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R960 -s@^referer(?=:[^\n]*[./](?:baseball-reference\.com|basketball-reference\.com|gamespot\.com|hockey-reference\.com|pro-football-reference\.com|sitepoint\.com|speedtest\.net|sports-reference\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R964 -s@^referer(?=:[^\n]*[./](?:bbc\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R967 -s@^referer(?=:[^\n]*[./](?:beliebershotel\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R972 -s@^referer(?=:[^\n]*[./](?:betfair\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R976 -s@^referer(?=:[^\n]*[./](?:betyper\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R978 -s@^referer(?=:[^\n]*[./](?:bingads\.microsoft\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R987 -s@^referer(?=:[^\n]*[./](?:bluesystem\.ru|kinozadrot\.net|miuipro\.ru|pesikot\.org|polismed\.ru|prisnilos\.su|qrz\.ru|tree\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R994 -s@^referer(?=:[^\n]*[./](?:bombuj\.sk)):.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-Rn1860 -s@^referer(?!:[^\n]*[./](?:bluray-disc\.de)):.*@ab2p-unblock-request-Aj-Cj@Ti -s@^referer:.*@-ab2p-unblock-request-Aj-Cj-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i -s@^referer:.*@-ab2p-unblock-request-Aj-Cj-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i -s@^referer:.*@-ab2p-unblock-request-Aj-Cj-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-nR -s@^.*@ab2p-unblock-request-Aj-Cj@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anasv -s@^accept(?!:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Anasv-nC-Cnasv-Xx@i -s@^referer:.*@-ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anasv-nC-Cnasv-Xx-when-nR -s@^.*@ab2p-unblock-request-Anasv-nC-Cnasv-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm -s@^accept(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-R1299 -s@^referer(?=:[^\n]*[./](?:humana-medicare\.com)):.*@ab2p-unblock-request-Anhm-nC-Cnhm-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Anhm-nC-Cnhm-Xx@i -s@^referer:.*@-ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm-nC-Cnhm-Xx-when-nR -s@^.*@ab2p-unblock-request-Anhm-nC-Cnhm-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm-nC-Cnhm-when-R1879t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:cbs\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Anhm-nC-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm-nC-Cnhm-when-R689t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:extremetech\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Anhm-nC-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm-nC-Cnhm-when-R694t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:patheos\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Anhm-nC-Cnhm@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm-nC-Cnhm-when-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Anhm-nC-Cnhm@i -s@^referer:.*@-ab2p-unblock-request-Anhm-nC-Cnhm-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Anhm-nC-Cnhm-when-nR -s@^.*@ab2p-unblock-request-Anhm-nC-Cnhm@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ani s@^accept(?!:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti -SERVER-HEADER-TAGGER: ab2p-unblock-request-Caijov -s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Caijsv -s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Caiov -s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Caisv -s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Cajosv -s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Cajov -s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Cajsv -s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Caosv -s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream)):.*@ab2p-unblock-request@Ti - SERVER-HEADER-TAGGER: ab2p-unblock-request-Caov s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti SERVER-HEADER-TAGGER: ab2p-unblock-request-Casv s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti -SERVER-HEADER-TAGGER: ab2p-unblock-request-Casvnachijmov -s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash))(?!:[\s\w]*(?:\/(?:x-)?javascript|image\/|\/css|video\/|audio\/|\/octet-stream|\/html|\/xml)):.*@ab2p-unblock-request@Ti - SERVER-HEADER-TAGGER: ab2p-unblock-request-Cc s@^content-type(?=:[\s\w]*(?:\/css)):.*@ab2p-unblock-request@Ti -SERVER-HEADER-TAGGER: ab2p-unblock-request-Cci -s@^content-type(?=:[\s\w]*(?:image\/|\/css)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Ccij -s@^content-type(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript|\/css)):.*@ab2p-unblock-request@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Ccj -s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript|\/css)):.*@ab2p-unblock-request@Ti - SERVER-HEADER-TAGGER: ab2p-unblock-request-Chm s@^content-type(?=:[\s\w]*(?:\/html|\/xml)):.*@ab2p-unblock-request@Ti @@ -15975,1932 +2692,407 @@ s@^content-type(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-unblock-reque SERVER-HEADER-TAGGER: ab2p-unblock-request-Cj s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti -SERVER-HEADER-TAGGER: ab2p-unblock-request-Cnasv -s@^content-type(?!:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti -s@^content-type:.*@-ab2p-unblock-request-nC@Ti - -SERVER-HEADER-TAGGER: ab2p-unblock-request-Cnhm -s@^content-type(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-unblock-request@Ti -s@^content-type:.*@-ab2p-unblock-request-nC@Ti - SERVER-HEADER-TAGGER: ab2p-unblock-request-Cni s@^content-type(?!:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti s@^content-type:.*@-ab2p-unblock-request-nC@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1000 -s@^referer(?=:[^\n]*[./](?:boxlive\.tv|directon\.tv|foxnews\.ws|icastlive\.tv|wii-cast\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1001 -s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1003 -s@^referer(?=:[^\n]*[./](?:brazzerssupport\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1004 -s@^referer(?=:[^\n]*[./](?:brisbanetimes\.com\.au|smh\.com\.au|theage\.com\.au|watoday\.com\.au)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1005 -s@^referer(?=:[^\n]*[./](?:britishgas\.co\.uk|luxurylink\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1009 -s@^referer(?=:[^\n]*[./](?:ca\.weather\.yahoo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1012 -s@^referer(?=:[^\n]*[./](?:carambatv\.ru|life\.ru|molodejj\.tv|out\.pladform\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1013 -s@^referer(?=:[^\n]*[./](?:careerbuilder\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1014 -s@^referer(?=:[^\n]*[./](?:carsdirect\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1016 -s@^referer(?=:[^\n]*[./](?:cartoonnetwork\.co\.nz|cartoonnetworkasia\.com|cartoonnetworkhq\.com|manutd\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1023 -s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1024 -s@^referer(?=:[^\n]*[./](?:cbc\.ca)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1027 -s@^referer(?=:[^\n]*[./](?:cbsnews\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1028 -s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cbssports\.com|cnettv\.cnet\.com|metacritic\.com|tv\.com|twitch\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1030 -s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1038 -s@^referer(?=:[^\n]*[./](?:cheatsheet\.com|supercheats\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1040 -s@^referer(?=:[^\n]*[./](?:christianity\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1041 -s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1043 -s@^referer(?=:[^\n]*[./](?:circusstreet\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1045 -s@^referer(?=:[^\n]*[./](?:citi\.com|citibank\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1046 -s@^referer(?=:[^\n]*[./](?:cityam\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1047 -s@^referer(?=:[^\n]*[./](?:citytv\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1049 -s@^referer(?=:[^\n]*[./](?:classifieds\.nydailynews\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1050 -s@^referer(?=:[^\n]*[./](?:cleodesktop\.com|mugiwaranofansub\.blogspot\.com\.ar|musicacelestial\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1051 -s@^referer(?=:[^\n]*[./](?:clubedohardware\.com\.br)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1052 -s@^referer(?=:[^\n]*[./](?:clubedohardware\.com\.br|yellowbridge\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1053 -s@^referer(?=:[^\n]*[./](?:cms\.gov)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1055 -s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1056 -s@^referer(?=:[^\n]*[./](?:cnettv\.cnet\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1057 -s@^referer(?=:[^\n]*[./](?:cntraveller\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1058 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1059 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1060 -s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1061 -s@^referer(?=:[^\n]*[./](?:comedy\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1062 -s@^referer(?=:[^\n]*[./](?:comingsoon\.net|gamerevolution\.com|sohh\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1064 -s@^referer(?=:[^\n]*[./](?:contv\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1065 -s@^referer(?=:[^\n]*[./](?:couponcodeswap\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1067 -s@^referer(?=:[^\n]*[./](?:cricketwireless\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1071 -s@^referer(?=:[^\n]*[./](?:cwtv\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1072 -s@^referer(?=:[^\n]*[./](?:cyberdevilz\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1073 -s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com|youlea\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1075 -s@^referer(?=:[^\n]*[./](?:dafiti\.cl|dafiti\.com\.ar|dafiti\.com\.br|dafiti\.com\.co)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1076 -s@^referer(?=:[^\n]*[./](?:daft\.ie)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1077 -s@^referer(?=:[^\n]*[./](?:dailycaller\.com|valuewalk\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1078 -s@^referer(?=:[^\n]*[./](?:dailydot\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1079 -s@^referer(?=:[^\n]*[./](?:dailygames\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1080 -s@^referer(?=:[^\n]*[./](?:dailymail\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1081 -s@^referer(?=:[^\n]*[./](?:daisuki\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1084 -s@^referer(?=:[^\n]*[./](?:dayt\.se)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1085 -s@^referer(?=:[^\n]*[./](?:deadspin\.com|foodnetwork\.com|gawker\.com|gizmodo\.com|io9\.com|jalopnik\.com|jezebel\.com|kotaku\.com|lifehacker\.com|weather\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1092 -s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1093 -s@^referer(?=:[^\n]*[./](?:deviantart\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1095 -s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1098 -s@^referer(?=:[^\n]*[./](?:digiday\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1099 -s@^referer(?=:[^\n]*[./](?:digitalplayground\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1101 -s@^referer(?=:[^\n]*[./](?:dillards\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1102 -s@^referer(?=:[^\n]*[./](?:directon\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1103 -s@^referer(?=:[^\n]*[./](?:directon\.tv|games\.yahoo\.com|onescreen\.net|wii-cast\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1104 -s@^referer(?=:[^\n]*[./](?:directon\.tv|wii-cast\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1106 -s@^referer(?=:[^\n]*[./](?:dirty\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1108 -s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1111 -s@^referer(?=:[^\n]*[./](?:dizi-mag\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1114 -s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1115 -s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1118 -s@^referer(?=:[^\n]*[./](?:domru\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1119 -s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1120 -s@^referer(?=:[^\n]*[./](?:doubleclick\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1121 -s@^referer(?=:[^\n]*[./](?:dramacafe\.in|ilive\.to|mackolik\.com|sahadan\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1129 -s@^referer(?=:[^\n]*[./](?:dynamo\.dictionary\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1131 -s@^referer(?=:[^\n]*[./](?:e24\.no)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1133 -s@^referer(?=:[^\n]*[./](?:easyads\.eu)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1134 -s@^referer(?=:[^\n]*[./](?:easylist\.adblockplus\.org|reports\.adblockplus\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1138 -s@^referer(?=:[^\n]*[./](?:eclypsia\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1141 -s@^referer(?=:[^\n]*[./](?:egreetings\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1142 -s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1144 -s@^referer(?=:[^\n]*[./](?:eio\.manhattan\.yahoo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1147 -s@^referer(?=:[^\n]*[./](?:emag\.hu)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1150 -s@^referer(?=:[^\n]*[./](?:empik\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1151 -s@^referer(?=:[^\n]*[./](?:engadget\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1153 -s@^referer(?=:[^\n]*[./](?:enter\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1155 -s@^referer(?=:[^\n]*[./](?:entertainment\.msn\.co\.nz|msn\.foxsports\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1159 -s@^referer(?=:[^\n]*[./](?:espn\.go\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1160 -s@^referer(?=:[^\n]*[./](?:espnf1\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1162 -s@^referer(?=:[^\n]*[./](?:etsy\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1166 -s@^referer(?=:[^\n]*[./](?:eventhubs\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1167 -s@^referer(?=:[^\n]*[./](?:everythingon\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1168 -s@^referer(?=:[^\n]*[./](?:evrl\.to|kinomoov\.net|megogo\.net|online\.ua|only-paper\.ru|raketa-tv\.com|seriatv\.ru|torrent-tv\.ru|uakino\.net|ualinux\.com|褌械锌谢芯褉邪褋褔械褌\.褉褎)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1169 -s@^referer(?=:[^\n]*[./](?:exashare\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1170 -s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1171 -s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1172 -s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1173 -s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1174 -s@^referer(?=:[^\n]*[./](?:expedia\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1176 -s@^referer(?=:[^\n]*[./](?:exrapidleech\.info)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1177 -s@^referer(?=:[^\n]*[./](?:extremetube\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1178 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|keezmovies\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1179 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|spankwire\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1182 -s@^referer(?=:[^\n]*[./](?:fairfaxmedia\.com\.au|myfairfax\.com\.au)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1183 -s@^referer(?=:[^\n]*[./](?:familydoctor\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1184 -s@^referer(?=:[^\n]*[./](?:fanatik\.com\.tr)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1185 -s@^referer(?=:[^\n]*[./](?:farmville\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1186 -s@^referer(?=:[^\n]*[./](?:fastpic\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1187 -s@^referer(?=:[^\n]*[./](?:fcportables\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1190 -s@^referer(?=:[^\n]*[./](?:ffiles\.com|full-ngage-games\.blogspot\.com|kingofgames\.net|megaallday\.com|ninjaraider\.com|nonags\.com|upfordown\.com|wtf-teen\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1192 -s@^referer(?=:[^\n]*[./](?:fileover\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1194 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in|go4up\.com|hqq\.tv|sizedrive\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1198 -s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1203 -s@^referer(?=:[^\n]*[./](?:flipkart\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1206 -s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1207 -s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1209 -s@^referer(?=:[^\n]*[./](?:foodnetwork\.com|msnbc\.com|player\.theplatform\.com|sky\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1211 -s@^referer(?=:[^\n]*[./](?:forbes\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1212 -s@^referer(?=:[^\n]*[./](?:formspring\.me)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1215 -s@^referer(?=:[^\n]*[./](?:foxnews\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1216 -s@^referer(?=:[^\n]*[./](?:free-send\.ru|izzylaif\.com|modfiles\.ru|osettlers\.com|trackitonline\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1217 -s@^referer(?=:[^\n]*[./](?:free-send\.ru|modfiles\.ru|osettlers\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1219 -s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1220 -s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1221 -s@^referer(?=:[^\n]*[./](?:free\.smsmarkaz\.urdupoint\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1222 -s@^referer(?=:[^\n]*[./](?:freeallmusic\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1224 -s@^referer(?=:[^\n]*[./](?:freelancer\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1231 -s@^referer(?=:[^\n]*[./](?:ftlauderdalewebcam\.com|nyharborwebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1234 -s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1235 -s@^referer(?=:[^\n]*[./](?:gactv\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1236 -s@^referer(?=:[^\n]*[./](?:game\.zylom\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1237 -s@^referer(?=:[^\n]*[./](?:gamefly\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1238 -s@^referer(?=:[^\n]*[./](?:gamehouse\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1239 -s@^referer(?=:[^\n]*[./](?:gamer-info\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1242 -s@^referer(?=:[^\n]*[./](?:games\.softgames\.de)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1244 -s@^referer(?=:[^\n]*[./](?:games\.yahoo\.com|onescreen\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1245 -s@^referer(?=:[^\n]*[./](?:gamesforwork\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1246 -s@^referer(?=:[^\n]*[./](?:gamespot\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1248 -s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1250 -s@^referer(?=:[^\n]*[./](?:genvideos\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1252 -s@^referer(?=:[^\n]*[./](?:getcoupons\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1255 -s@^referer(?=:[^\n]*[./](?:gimhoy\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1256 -s@^referer(?=:[^\n]*[./](?:glamour\.com|itsjudytime\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1259 -s@^referer(?=:[^\n]*[./](?:globalnews\.ca)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1261 -s@^referer(?=:[^\n]*[./](?:goclips\.tv|letitbit\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1262 -s@^referer(?=:[^\n]*[./](?:golf\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1263 -s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1265 -s@^referer(?=:[^\n]*[./](?:greasyfork\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1268 -s@^referer(?=:[^\n]*[./](?:gt-advertise\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1271 -s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1272 -s@^referer(?=:[^\n]*[./](?:hackintosh\.zone)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1273 -s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1274 -s@^referer(?=:[^\n]*[./](?:hamalia\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1275 -s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1277 -s@^referer(?=:[^\n]*[./](?:hawk\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R128 -s@^referer(?=:[^\n]*[./](?:brb\.to|cxz\.to|fs\.to)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1280 -s@^referer(?=:[^\n]*[./](?:healthboards\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1283 -s@^referer(?=:[^\n]*[./](?:hgst\.com|movie-pocket\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1285 -s@^referer(?=:[^\n]*[./](?:hinduladies\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1286 -s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1288 -s@^referer(?=:[^\n]*[./](?:horny\.net|xmatch\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1290 -s@^referer(?=:[^\n]*[./](?:hotukdeals\.com|jobamatic\.com|play\.google\.com|santander\.co\.uk|techrepublic\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1292 -s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1293 -s@^referer(?=:[^\n]*[./](?:hp\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1294 -s@^referer(?=:[^\n]*[./](?:hqq\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1295 -s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1296 -s@^referer(?=:[^\n]*[./](?:huffingtonpost\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1297 -s@^referer(?=:[^\n]*[./](?:huffingtonpost\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1302 -s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1306 -s@^referer(?=:[^\n]*[./](?:igougo\.com|travelocity\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1307 -s@^referer(?=:[^\n]*[./](?:igromania\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1309 -s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1310 -s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1311 -s@^referer(?=:[^\n]*[./](?:ilive\.to)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1314 -s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1315 -s@^referer(?=:[^\n]*[./](?:imagebam\.com|imgbox\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1317 -s@^referer(?=:[^\n]*[./](?:imdb\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1319 -s@^referer(?=:[^\n]*[./](?:imhonet\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1320 -s@^referer(?=:[^\n]*[./](?:inbox\.lv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1324 -s@^referer(?=:[^\n]*[./](?:indiatvnews\.com|intoday\.in)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1326 -s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1327 -s@^referer(?=:[^\n]*[./](?:insure\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1328 -s@^referer(?=:[^\n]*[./](?:insys\.pl)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1330 -s@^referer(?=:[^\n]*[./](?:internetcasinot\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1334 -s@^referer(?=:[^\n]*[./](?:irr\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1336 -s@^referer(?=:[^\n]*[./](?:itools\.cn|laniqu\.com|tdx\.com\.cn|veryeast\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1337 -s@^referer(?=:[^\n]*[./](?:itreviews\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1338 -s@^referer(?=:[^\n]*[./](?:itv\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1341 -s@^referer(?=:[^\n]*[./](?:izzylaif\.com|trackitonline\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1345 -s@^referer(?=:[^\n]*[./](?:jav4\.me)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1347 -s@^referer(?=:[^\n]*[./](?:jc-mp\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1348 -s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1351 -s@^referer(?=:[^\n]*[./](?:jobamatic\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1352 -s@^referer(?=:[^\n]*[./](?:joblib\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1355 -s@^referer(?=:[^\n]*[./](?:joindota\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1356 -s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1357 -s@^referer(?=:[^\n]*[./](?:kakprosto\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1360 -s@^referer(?=:[^\n]*[./](?:keezmovies\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1365 -s@^referer(?=:[^\n]*[./](?:kissanime\.com|kisscartoon\.me)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1366 -s@^referer(?=:[^\n]*[./](?:kissanime\.to)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1367 -s@^referer(?=:[^\n]*[./](?:kisscartoon\.me)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1368 -s@^referer(?=:[^\n]*[./](?:km\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1369 -s@^referer(?=:[^\n]*[./](?:kmozart\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R137 -s@^referer(?=:[^\n]*[./](?:cbs\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1371 -s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1372 -s@^referer(?=:[^\n]*[./](?:kongregate\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1374 -s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1381 -s@^referer(?=:[^\n]*[./](?:led66\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1384 -s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1385 -s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1387 -s@^referer(?=:[^\n]*[./](?:lifemadedelicious\.ca|tac\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1388 -s@^referer(?=:[^\n]*[./](?:ligtv\.com\.tr)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1389 -s@^referer(?=:[^\n]*[./](?:live\.geo\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1390 -s@^referer(?=:[^\n]*[./](?:live\.scity\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1391 -s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1395 -s@^referer(?=:[^\n]*[./](?:livestream\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1396 -s@^referer(?=:[^\n]*[./](?:localmarket\.autismsupportnetwork\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1397 -s@^referer(?=:[^\n]*[./](?:locator\.transitcard\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1398 -s@^referer(?=:[^\n]*[./](?:login\.live\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1399 -s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1400 -s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1401 -s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1402 -s@^referer(?=:[^\n]*[./](?:loot\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1406 -s@^referer(?=:[^\n]*[./](?:m\.naver\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1409 -s@^referer(?=:[^\n]*[./](?:mackolik\.com|sahadan\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1410 -s@^referer(?=:[^\n]*[./](?:madyar\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1411 -s@^referer(?=:[^\n]*[./](?:magesy\.be)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1413 -s@^referer(?=:[^\n]*[./](?:mail\.live\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1415 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com|pbs\.org|wikihow\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1417 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|newgrounds\.com|xfire\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1418 -s@^referer(?=:[^\n]*[./](?:manga2u\.co|onemanga\.me|pro-football-reference\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1419 -s@^referer(?=:[^\n]*[./](?:mangasky\.co)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1421 -s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1426 -s@^referer(?=:[^\n]*[./](?:market\.yandex\.by|market\.yandex\.kz|market\.yandex\.ru|market\.yandex\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1428 -s@^referer(?=:[^\n]*[./](?:marthastewart\.com|nbcsports\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1429 -s@^referer(?=:[^\n]*[./](?:mavrixonline\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1434 -s@^referer(?=:[^\n]*[./](?:megogo\.net|smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1435 -s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1443 -s@^referer(?=:[^\n]*[./](?:mevio\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1444 -s@^referer(?=:[^\n]*[./](?:mgts\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1445 -s@^referer(?=:[^\n]*[./](?:michaels\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1446 -s@^referer(?=:[^\n]*[./](?:microsoftvirtualacademy\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1449 -s@^referer(?=:[^\n]*[./](?:miwed\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1452 -s@^referer(?=:[^\n]*[./](?:mlbtraderumors\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1453 -s@^referer(?=:[^\n]*[./](?:mlssoccer\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1454 -s@^referer(?=:[^\n]*[./](?:mma-core\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1455 -s@^referer(?=:[^\n]*[./](?:mmoaddict\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1456 -s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1457 -s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1458 -s@^referer(?=:[^\n]*[./](?:mobinozer\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1459 -s@^referer(?=:[^\n]*[./](?:mochigames\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R146 -s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1460 -s@^referer(?=:[^\n]*[./](?:moevideo\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1465 -s@^referer(?=:[^\n]*[./](?:motorcycle\.com|mysoju\.com|nedbank\.co\.za)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1466 -s@^referer(?=:[^\n]*[./](?:mousebreaker\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1469 -s@^referer(?=:[^\n]*[./](?:moviezone\.cz)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1470 -s@^referer(?=:[^\n]*[./](?:mozilla\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1471 -s@^referer(?=:[^\n]*[./](?:mp3clan\.audio|mp3clan\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1472 -s@^referer(?=:[^\n]*[./](?:msn\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1473 -s@^referer(?=:[^\n]*[./](?:mts\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1474 -s@^referer(?=:[^\n]*[./](?:multiup\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1476 -s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1478 -s@^referer(?=:[^\n]*[./](?:muz\.ru|retrofm\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1480 -s@^referer(?=:[^\n]*[./](?:myaccount\.nytimes\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1481 -s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1483 -s@^referer(?=:[^\n]*[./](?:native-instruments\.com|nest\.com|theheldrich\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1484 -s@^referer(?=:[^\n]*[./](?:nba\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1487 -s@^referer(?=:[^\n]*[./](?:nedbank\.co\.za|nitrome\.com|ticketek\.com\.ar)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1492 -s@^referer(?=:[^\n]*[./](?:nfl\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1493 -s@^referer(?=:[^\n]*[./](?:nic\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1494 -s@^referer(?=:[^\n]*[./](?:nick\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1495 -s@^referer(?=:[^\n]*[./](?:ninemsn\.com\.au)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1496 -s@^referer(?=:[^\n]*[./](?:nlfreevpn\.com|oldapps\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1497 -s@^referer(?=:[^\n]*[./](?:nlfreevpn\.com|oldapps\.com|pattayaone\.net|unlockpwd\.com|uploadex\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1498 -s@^referer(?=:[^\n]*[./](?:noobpreneur\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1499 -s@^referer(?=:[^\n]*[./](?:novatv\.bg|tv2\.dk|tv3\.se|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1502 -s@^referer(?=:[^\n]*[./](?:nytimes\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1506 -s@^referer(?=:[^\n]*[./](?:ogame\.org|ogame\.us)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1507 -s@^referer(?=:[^\n]*[./](?:ok\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1509 -s@^referer(?=:[^\n]*[./](?:olweb\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1510 -s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1511 -s@^referer(?=:[^\n]*[./](?:onehourtranslation\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1512 -s@^referer(?=:[^\n]*[./](?:online-che\.tv|online-domashniy\.tv|online-match\.tv|online-ntv\.tv|online-perviy\.tv|online-ren\.tv|online-rossiya1\.tv|online-rossiya24\.tv|online-sts\.tv|online-tnt\.tv|online-tv3\.tv|online-tvc\.tv|online-u\.tv|online-zvezda\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1513 -s@^referer(?=:[^\n]*[./](?:online\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1515 -s@^referer(?=:[^\n]*[./](?:onvasortir\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1520 -s@^referer(?=:[^\n]*[./](?:openx\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1522 -s@^referer(?=:[^\n]*[./](?:ostrow24\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1523 -s@^referer(?=:[^\n]*[./](?:ostrow24\.tv|yuvutu\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1524 -s@^referer(?=:[^\n]*[./](?:out\.pladform\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1525 -s@^referer(?=:[^\n]*[./](?:own3d\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1526 -s@^referer(?=:[^\n]*[./](?:ozerskzone\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1527 -s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1528 -s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1530 -s@^referer(?=:[^\n]*[./](?:paste\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1534 -s@^referer(?=:[^\n]*[./](?:pch\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1535 -s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1536 -s@^referer(?=:[^\n]*[./](?:pdrs\.dp\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1540 -s@^referer(?=:[^\n]*[./](?:people\.com|time\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1541 -s@^referer(?=:[^\n]*[./](?:peretz\.ru|rzd\.ru|svyaznoy\.ru|whiskas\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1542 -s@^referer(?=:[^\n]*[./](?:peterboroughtoday\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1543 -s@^referer(?=:[^\n]*[./](?:pgpru\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1544 -s@^referer(?=:[^\n]*[./](?:photodoska\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1545 -s@^referer(?=:[^\n]*[./](?:physorg\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1547 -s@^referer(?=:[^\n]*[./](?:pinnaclesports\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1548 -s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1549 -s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1550 -s@^referer(?=:[^\n]*[./](?:piter\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1552 -s@^referer(?=:[^\n]*[./](?:planetatvonlinehd\.blogspot\.com\.ar)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1553 -s@^referer(?=:[^\n]*[./](?:play\.spotify\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1554 -s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1558 -s@^referer(?=:[^\n]*[./](?:politico\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1559 -s@^referer(?=:[^\n]*[./](?:pollen\.vc)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1561 -s@^referer(?=:[^\n]*[./](?:popularmechanics\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1563 -s@^referer(?=:[^\n]*[./](?:porsche\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1564 -s@^referer(?=:[^\n]*[./](?:powerwatch\.pw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1565 -s@^referer(?=:[^\n]*[./](?:praca\.by)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1566 -s@^referer(?=:[^\n]*[./](?:preloved\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1568 -s@^referer(?=:[^\n]*[./](?:primewire\.ag)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1570 -s@^referer(?=:[^\n]*[./](?:prodaj\.pl)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1572 -s@^referer(?=:[^\n]*[./](?:publisher\.adservice\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1573 -s@^referer(?=:[^\n]*[./](?:pumpkinpatch\.co\.nz|pumpkinpatch\.co\.uk|pumpkinpatch\.com|pumpkinpatch\.com\.au)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1574 -s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1577 -s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1578 -s@^referer(?=:[^\n]*[./](?:quantcast\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1579 -s@^referer(?=:[^\n]*[./](?:qz\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1583 -s@^referer(?=:[^\n]*[./](?:raketa-tv\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1584 -s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1585 -s@^referer(?=:[^\n]*[./](?:rankbank\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1589 -s@^referer(?=:[^\n]*[./](?:redtube\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1590 -s@^referer(?=:[^\n]*[./](?:reelkandi\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1591 -s@^referer(?=:[^\n]*[./](?:reempresa\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1592 -s@^referer(?=:[^\n]*[./](?:reklama\.com\.ua|reklama\.marat\.ua|reklama\.rambler\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1593 -s@^referer(?=:[^\n]*[./](?:remoteshaman\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1594 -s@^referer(?=:[^\n]*[./](?:renault\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1596 -s@^referer(?=:[^\n]*[./](?:rg\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1597 -s@^referer(?=:[^\n]*[./](?:rmf24\.pl)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1600 -s@^referer(?=:[^\n]*[./](?:rosemaryconley\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1602 -s@^referer(?=:[^\n]*[./](?:rossa-m\.ru|travelata\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1603 -s@^referer(?=:[^\n]*[./](?:rottentomatoes\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1604 -s@^referer(?=:[^\n]*[./](?:rrstar\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1605 -s@^referer(?=:[^\n]*[./](?:rte\.ie)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1607 -s@^referer(?=:[^\n]*[./](?:rus-wars\.com|rus-wars\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1608 -s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1610 -s@^referer(?=:[^\n]*[./](?:rutube\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1611 -s@^referer(?=:[^\n]*[./](?:rw\.by)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1614 -s@^referer(?=:[^\n]*[./](?:sarafannoeradio\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1617 -s@^referer(?=:[^\n]*[./](?:scottrade\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1619 -s@^referer(?=:[^\n]*[./](?:scribd\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1620 -s@^referer(?=:[^\n]*[./](?:scribol\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1621 -s@^referer(?=:[^\n]*[./](?:se\.no)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1623 -s@^referer(?=:[^\n]*[./](?:sedo\.com|sedo\.de)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1625 -s@^referer(?=:[^\n]*[./](?:selectornews\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1626 -s@^referer(?=:[^\n]*[./](?:sellallautos\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1627 -s@^referer(?=:[^\n]*[./](?:sellua\.info)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1629 -s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1630 -s@^referer(?=:[^\n]*[./](?:serverfault\.com|stackoverflow\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1631 -s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1634 -s@^referer(?=:[^\n]*[./](?:shop\.patheos\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1635 -s@^referer(?=:[^\n]*[./](?:shopping\.ninemsn\.com\.au|shopping\.yahoo\.com\.au)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1636 -s@^referer(?=:[^\n]*[./](?:sibtravel42\.ru|tutu\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1637 -s@^referer(?=:[^\n]*[./](?:signal\.co)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1638 -s@^referer(?=:[^\n]*[./](?:simply-partner\.com|simplyhired\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1639 -s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1640 -s@^referer(?=:[^\n]*[./](?:siteads\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1641 -s@^referer(?=:[^\n]*[./](?:sizedrive\.com|softpedia\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1643 -s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1645 -s@^referer(?=:[^\n]*[./](?:slashdot\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1649 -s@^referer(?=:[^\n]*[./](?:smartads\.by)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1650 -s@^referer(?=:[^\n]*[./](?:smctemple\.wpengine\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1652 -s@^referer(?=:[^\n]*[./](?:smotri\.com|video\.reset\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1653 -s@^referer(?=:[^\n]*[./](?:snagfilms\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1654 -s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1658 -s@^referer(?=:[^\n]*[./](?:sotumblry\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R166 -s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1660 -s@^referer(?=:[^\n]*[./](?:spankwire\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1661 -s@^referer(?=:[^\n]*[./](?:spinandw\.in)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1663 -s@^referer(?=:[^\n]*[./](?:sports\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1666 -s@^referer(?=:[^\n]*[./](?:spruto\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1667 -s@^referer(?=:[^\n]*[./](?:staircase\.pl)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1668 -s@^referer(?=:[^\n]*[./](?:startv\.in)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1669 -s@^referer(?=:[^\n]*[./](?:stickam\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1674 -s@^referer(?=:[^\n]*[./](?:submityourflicks\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1675 -s@^referer(?=:[^\n]*[./](?:sudinfo\.be)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1676 -s@^referer(?=:[^\n]*[./](?:sulekha\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1680 -s@^referer(?=:[^\n]*[./](?:supersonicads\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1681 -s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1683 -s@^referer(?=:[^\n]*[./](?:surfline\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1684 -s@^referer(?=:[^\n]*[./](?:swatch\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1690 -s@^referer(?=:[^\n]*[./](?:talksport\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1691 -s@^referer(?=:[^\n]*[./](?:talksport\.co\.uk|tv3\.ie)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1692 -s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1693 -s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1696 -s@^referer(?=:[^\n]*[./](?:tatler\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1703 -s@^referer(?=:[^\n]*[./](?:terra\.com\.br)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1706 -s@^referer(?=:[^\n]*[./](?:theawl\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1711 -s@^referer(?=:[^\n]*[./](?:thesimsresource\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1712 -s@^referer(?=:[^\n]*[./](?:thestreet\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1715 -s@^referer(?=:[^\n]*[./](?:tjournal\.ru|tvigle\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1716 -s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1718 -s@^referer(?=:[^\n]*[./](?:tntdrama\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1719 -s@^referer(?=:[^\n]*[./](?:tomsguide\.com|tomshardware\.com|wonderhowto\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1721 -s@^referer(?=:[^\n]*[./](?:tovarro\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1723 -s@^referer(?=:[^\n]*[./](?:transaero\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1724 -s@^referer(?=:[^\n]*[./](?:travelocity\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1727 -s@^referer(?=:[^\n]*[./](?:tripit\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1728 -s@^referer(?=:[^\n]*[./](?:tritonmedia\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1729 -s@^referer(?=:[^\n]*[./](?:trustedreviews\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1730 -s@^referer(?=:[^\n]*[./](?:tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1731 -s@^referer(?=:[^\n]*[./](?:tubemonsoon\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1735 -s@^referer(?=:[^\n]*[./](?:turkdown\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1737 -s@^referer(?=:[^\n]*[./](?:tv-serial\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1741 -s@^referer(?=:[^\n]*[./](?:tv2\.dk|tv3play\.ee|tv3play\.se|tv6play\.se|tv8play\.se)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1742 -s@^referer(?=:[^\n]*[./](?:tv3\.ie)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1744 -s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1747 -s@^referer(?=:[^\n]*[./](?:tvn\.pl|tvn24\.pl)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1750 -s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1751 -s@^referer(?=:[^\n]*[./](?:twer\.info)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1754 -s@^referer(?=:[^\n]*[./](?:uktv\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1755 -s@^referer(?=:[^\n]*[./](?:ultimaterewardsearn\.chase\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1756 -s@^referer(?=:[^\n]*[./](?:unilad\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1757 -s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1758 -s@^referer(?=:[^\n]*[./](?:uptobox\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1760 -s@^referer(?=:[^\n]*[./](?:usanetwork\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1761 -s@^referer(?=:[^\n]*[./](?:uscbookstore\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1762 -s@^referer(?=:[^\n]*[./](?:usynovite\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1763 -s@^referer(?=:[^\n]*[./](?:uzblog\.com|uzlist\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1768 -s@^referer(?=:[^\n]*[./](?:velochehol\.com\.ua|velosumka\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1769 -s@^referer(?=:[^\n]*[./](?:veohb\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1771 -s@^referer(?=:[^\n]*[./](?:vg\.no)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1773 -s@^referer(?=:[^\n]*[./](?:vibe\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1774 -s@^referer(?=:[^\n]*[./](?:vice\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1775 -s@^referer(?=:[^\n]*[./](?:video\.adultswim\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1776 -s@^referer(?=:[^\n]*[./](?:video\.lycos\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1777 -s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1778 -s@^referer(?=:[^\n]*[./](?:video2mp3\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1779 -s@^referer(?=:[^\n]*[./](?:vidin\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1780 -s@^referer(?=:[^\n]*[./](?:viki\.com|wwe\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1782 -s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1784 -s@^referer(?=:[^\n]*[./](?:virginmedia\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1786 -s@^referer(?=:[^\n]*[./](?:vodyanoy\.com\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1787 -s@^referer(?=:[^\n]*[./](?:voenhronika\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1790 -s@^referer(?=:[^\n]*[./](?:vouchercodes\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1795 -s@^referer(?=:[^\n]*[./](?:vyborg-press\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1796 -s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1798 -s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1800 -s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1802 -s@^referer(?=:[^\n]*[./](?:weather\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1803 -s@^referer(?=:[^\n]*[./](?:webadvert\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1804 -s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1805 -s@^referer(?=:[^\n]*[./](?:webupd8\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1806 -s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1807 -s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1808 -s@^referer(?=:[^\n]*[./](?:wetpaint\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1809 -s@^referer(?=:[^\n]*[./](?:whitepages\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1811 -s@^referer(?=:[^\n]*[./](?:wikimart\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1812 -s@^referer(?=:[^\n]*[./](?:williamhillcasino\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1813 -s@^referer(?=:[^\n]*[./](?:winxclub\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1814 -s@^referer(?=:[^\n]*[./](?:wired\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1818 -s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1819 -s@^referer(?=:[^\n]*[./](?:wowhead\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1824 -s@^referer(?=:[^\n]*[./](?:www\.google\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1825 -s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1827 -s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1828 -s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1829 -s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1830 -s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1832 -s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1833 -s@^referer(?=:[^\n]*[./](?:xn--80aqkgfb3b1a0a\.xn--p1ai|锌褘褕屑邪懈薪褎芯\.褉褎)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1834 -s@^referer(?=:[^\n]*[./](?:xoyo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1836 -s@^referer(?=:[^\n]*[./](?:yaberemenna\.info)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1837 -s@^referer(?=:[^\n]*[./](?:yahoo\.co\.jp)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1838 -s@^referer(?=:[^\n]*[./](?:yahoo\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1839 -s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1840 -s@^referer(?=:[^\n]*[./](?:yellowbridge\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1841 -s@^referer(?=:[^\n]*[./](?:yepi\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1846 -s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1847 -s@^referer(?=:[^\n]*[./](?:youngcons\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1848 -s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1849 -s@^referer(?=:[^\n]*[./](?:yttalk\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1850 -s@^referer(?=:[^\n]*[./](?:yuvutu\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1851 -s@^referer(?=:[^\n]*[./](?:zakaz\.ua|zapals\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1852 -s@^referer(?=:[^\n]*[./](?:zakonrf\.info)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1854 -s@^referer(?=:[^\n]*[./](?:zarplata\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1857 -s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R1858 -s@^referer(?=:[^\n]*[./](?:zynga\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R197 -s@^referer(?=:[^\n]*[./](?:extremetech\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R217 -s@^referer(?=:[^\n]*[./](?:filmovizija\.in)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R24 -s@^referer(?=:[^\n]*[./](?:1tv\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R245 -s@^referer(?=:[^\n]*[./](?:gelbooru\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R248 -s@^referer(?=:[^\n]*[./](?:go\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R325 -s@^referer(?=:[^\n]*[./](?:mail\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R327 -s@^referer(?=:[^\n]*[./](?:majorleaguegaming\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R379 -s@^referer(?=:[^\n]*[./](?:photobucket\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R392 -s@^referer(?=:[^\n]*[./](?:pornhub\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R393 -s@^referer(?=:[^\n]*[./](?:pornhub\.com|redtube\.com|redtube\.com\.br|tube8\.com|tube8\.es|tube8\.fr|youporn\.com|youporngay\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R402 -s@^referer(?=:[^\n]*[./](?:promptfile\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R403 -s@^referer(?=:[^\n]*[./](?:putlocker\.is)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R414 -s@^referer(?=:[^\n]*[./](?:reuters\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R418 -s@^referer(?=:[^\n]*[./](?:rutracker\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R458 -s@^referer(?=:[^\n]*[./](?:tbs\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R467 -s@^referer(?=:[^\n]*[./](?:thisav\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R483 -s@^referer(?=:[^\n]*[./](?:tv4play\.se)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R484 -s@^referer(?=:[^\n]*[./](?:tvcatchup\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R485 -s@^referer(?=:[^\n]*[./](?:twitch\.tv)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R509 -s@^referer(?=:[^\n]*[./](?:vk\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R539 -s@^referer(?=:[^\n]*[./](?:youtube\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R540 -s@^referer(?=:[^\n]*[./](?:youwatch\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R762 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R189 s@^referer(?=:[^\n]*[./](?:0379home\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R763 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R190 s@^referer(?=:[^\n]*[./](?:10086\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R764 -s@^referer(?=:[^\n]*[./](?:107\.150\.17\.66|23\.226\.134\.115|23\.226\.134\.116|23\.226\.138\.28|67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R765 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R191 s@^referer(?=:[^\n]*[./](?:10pan\.cc|77pan\.cc|789disc\.cc|789pan\.cc|huimeiku\.com|ifonce\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R767 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R192 s@^referer(?=:[^\n]*[./](?:121\.40\.92\.135|7958\.com\.cn|9duli\.com|coladrive\.com|colayun\.com|dlzyw\.com|ffpan\.com|gqpdf\.com|gqzzw\.com|l7po\.com|pctowap\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R768 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R193 s@^referer(?=:[^\n]*[./](?:123\.138\.234\.240)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R769 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R194 s@^referer(?=:[^\n]*[./](?:123564\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R770 -s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|mahua\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R195 +s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|keenfine\.com|mahua\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R771 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R196 s@^referer(?=:[^\n]*[./](?:126\.com|mail\.163\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R772 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R197 s@^referer(?=:[^\n]*[./](?:127\.0\.0\.1)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R773 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R198 s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R774 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R199 s@^referer(?=:[^\n]*[./](?:17\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R776 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R200 s@^referer(?=:[^\n]*[./](?:189\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R777 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R201 s@^referer(?=:[^\n]*[./](?:189\.cn|ali213\.net|coolpad\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R778 -s@^referer(?=:[^\n]*[./](?:1obl\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R779 -s@^referer(?=:[^\n]*[./](?:1point3acres\.com|66u\.com|dataguru\.cn|jiangsuphp\.jd-app\.com|launcher\.lenovo\.com|oneplusbbs\.com|readboy\.com|xda\.cn)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R780 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R202 s@^referer(?=:[^\n]*[./](?:21394\.com|94pan\.com|fmdisk\.com|fmdisk\.net|fmpan\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R781 -s@^referer(?=:[^\n]*[./](?:24smile\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R782 -s@^referer(?=:[^\n]*[./](?:28\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R784 -s@^referer(?=:[^\n]*[./](?:2ip\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R786 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R203 s@^referer(?=:[^\n]*[./](?:360bifen\.cc|360bifen\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R787 -s@^referer(?=:[^\n]*[./](?:360haven\.com|9bis\.net|9jumpin\.com\.au|9news\.com\.au|9tutorials\.com|afreesms\.com|atlanticcitywebcam\.com|bbc\.com|bicimotosargentina\.com|bitcoiner\.net|budget101\.com|buickforums\.com|bullywiihacks\.com|carsfromitaly\.info|codeasily\.com|darkreloaded\.com|docpaste\.com|dragoart\.com|dreamscene\.org|drivearabia\.com|dsero\.com|epmads\.com|everythingon\.tv|fcportables\.com|ffiles\.com|file4go\.com|foro\.clubcelica\.es|free\.smsmarkaz\.urdupoint\.com|freecoins4\.me|freewaregenius\.com|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|full-ngage-games\.blogspot\.com|gamespowerita\.com|gifmagic\.com|hackintosh\.zone|hostyd\.com|ibmmainframeforum\.com|ilix\.in|keywestharborwebcam\.com|kingofgames\.net|korean-candy\.com|kshowes\.net|litecoiner\.net|livenewschat\.eu|lordpyrak\.net|lumload\.com|mangacap\.com|mangakaka\.com|megaallday\.com|misheel\.net|modsaholic\.com|morganhillwebcam\.com|moviemistakes\.com|mugiwaranofansub\.blogspot\.com\.ar|mypapercraft\.net|newsok\.com|ninjaraider\.com|nonags\.com|nornar\.com|numberempire\.com|nx8\.com|nyharborwebcam\.com|omegadrivers\.net|photos\.essence\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com|preemlinks\.com|priva\.us|puromarketing\.com|radioaficion\.com|rapid8\.com|readersdigest\.com\.au|seeingwithsound\.com|simply-debrid\.com|smashgamez\.com|softpedia\.com|software4all-now\.blogspot\.co\.uk|spoilertv\.com|tamercome\.blogspot\.co\.uk|tech-blog\.net|techydoor\.com|thememypc\.com|themes\.themaxdavis\.com|tipstank\.com|top100clans\.com|trutower\.com|tv-kino\.net|upfordown\.com|uploadlw\.com|urlink\.at|virginmedia\.com|warp2search\.net|washington\.edu|winterrowd\.com|wtf-teen\.com|yellowbridge\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R788 -s@^referer(?=:[^\n]*[./](?:360haven\.com|9bis\.net|9news\.com\.au|9tutorials\.com|afreesms\.com|altoque\.com|androidrepublic\.org|apkmirror\.com|aseanlegacy\.net|atlanticcitywebcam\.com|better-explorer\.com|bicimotosargentina\.com|bitcofree\.com|bitcoiner\.net|bitcoinker\.com|borfast\.com|boxbit\.co\.in|budget101\.com|buickforums\.com|bullywiihacks\.com|calcularindemnizacion\.es|chrissmoove\.com|clubedohardware\.com\.br|danydanielrt\.com|darkreloaded\.com|debridit\.com|debridnet\.com|dev-metal\.com|docpaste\.com|dragoart\.com|dreamscene\.org|drivearabia\.com|dsero\.com|epmads\.com|ezoden\.com|fcportables\.com|file4go\.com|foro\.clubcelica\.es|free\.smsmarkaz\.urdupoint\.com|freebitco\.in|freecoins4\.me|ftlauderdalebeachcam\.com|ftlauderdalewebcam\.com|full-ngage-games\.blogspot\.com|gamespowerita\.com|getdebrid\.com|gnomio\.com|hackintosh\.zone|hostyd\.com|hubturkey\.net|ibmmainframeforum\.com|ilix\.in|incredibox\.com|kadinlarkulubu\.com|keywestharborwebcam\.com|kingofgames\.net|korean-candy\.com|kshowes\.net|leecher\.us|liberallogic101\.com|litecoiner\.net|livenewschat\.eu|lomeutec\.com|lordpyrak\.net|mailbait\.info|mangacap\.com|mangahop\.com|mangakaka\.com|masfuertequeelhierro\.com|megaleech\.us|misheel\.net|morganhillwebcam\.com|moviemistakes\.com|mpc-g\.com|mugiwaranofansub\.blogspot\.com\.ar|mypapercraft\.net|narkive\.com|niresh\.co|niresh12495\.com|nonags\.com|nornar\.com|noticiasautomotivas\.com\.br|numberempire\.com|nyharborwebcam\.com|omegadrivers\.net|play-old-pc-games\.com|portarubawebcam\.com|portbermudawebcam\.com|portcanaveralwebcam\.com|portevergladeswebcam\.com|portmiamiwebcam\.com|portnywebcam\.com|preemlinks\.com|priva\.us|puromarketing\.com|radioaficion\.com|rapid8\.com|scriptnulled\.eu|settlersonlinemaps\.com|simply-debrid\.com|sizedrive\.com|slideplayer\.com\.br|smashgamez\.com|softpedia\.com|software4all-now\.blogspot\.co\.uk|spoilertv\.com|tamercome\.blogspot\.co\.uk|tech-blog\.net|techydoor\.com|thememypc\.com|themes\.themaxdavis\.com|tipstank\.com|trutower\.com|unlocktheinbox\.com|upfordown\.com|uploadlw\.com|urlink\.at|wallpapersimages\.co\.uk|washington\.edu|whatismyip\.com|winterrowd\.com|wrestlingtalk\.org|xcl\.com\.br|yellowbridge\.com|zeperfs\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R790 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R204 s@^referer(?=:[^\n]*[./](?:4008927927\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R794 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R205 s@^referer(?=:[^\n]*[./](?:5060\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R795 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R206 s@^referer(?=:[^\n]*[./](?:520tingshu\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R796 -s@^referer(?=:[^\n]*[./](?:5i5j\.com|9588\.com|diantai\.ifeng\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|rapoo\.cn|rapoo\.nl|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R207 +s@^referer(?=:[^\n]*[./](?:5i5j\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R797 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R208 s@^referer(?=:[^\n]*[./](?:666ccc\.com|g3000\.com\.cn|hfchenming\.com\.cn|missioncouver\.com\.cn|op\.52pk\.com|yue365\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R798 -s@^referer(?=:[^\n]*[./](?:6abc\.com|7online\.com|abc11\.com|abc13\.com|abc30\.com|abc7\.com|abc7chicago\.com|abc7news\.com|ahctv\.com|animalplanet\.com|destinationamerica\.com|discovery\.com|discoverylife\.com|tlc\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R209 +s@^referer(?=:[^\n]*[./](?:66u\.com|dataguru\.cn|oneplusbbs\.com|readboy\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R802 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R210 +s@^referer(?=:[^\n]*[./](?:67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R211 s@^referer(?=:[^\n]*[./](?:7k7k\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R803 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R212 s@^referer(?=:[^\n]*[./](?:7net\.com\.tw|ibon\.com\.tw|pxmart\.com\.tw)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R804 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R213 s@^referer(?=:[^\n]*[./](?:888\.sports\.qq\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R805 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R214 s@^referer(?=:[^\n]*[./](?:88box\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R806 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R215 s@^referer(?=:[^\n]*[./](?:88boxjx\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R807 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R216 s@^referer(?=:[^\n]*[./](?:95516\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R810 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R217 +s@^referer(?=:[^\n]*[./](?:9588\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R218 s@^referer(?=:[^\n]*[./](?:9duli\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R811 -s@^referer(?=:[^\n]*[./](?:9jumpin\.com\.au|9news\.com\.au|bigbrother\.com\.au|ninemsn\.com\.au)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R812 -s@^referer(?=:[^\n]*[./](?:9news\.com\.au)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R815 -s@^referer(?=:[^\n]*[./](?:abcphoto\.com\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R816 -s@^referer(?=:[^\n]*[./](?:about\.com|armstrongmywire\.com|atlanticbb\.net|bestbuy\.com|bresnan\.net|broadstripe\.net|buckeyecablesystem\.net|cableone\.net|centurylink\.net|charter\.net|cincinnatibell\.net|dish\.net|ehow\.com|forbbbs\.org|forbes\.com|hargray\.net|hawaiiantel\.net|hickorytech\.net|homeaway\.co\.uk|knology\.net|livestrong\.com|mediacomtoday\.com|midco\.net|mybendbroadband\.com|mybrctv\.com|mycenturylink\.com|myconsolidated\.net|myepb\.net|mygrande\.net|mygvtc\.com|myhughesnet\.com|myritter\.com|northstate\.net|nwcable\.net|query\.nytimes\.com|rentals\.com|search\.rr\.com|searchresults\.verizon\.com|suddenlink\.net|surewest\.com|synacor\.net|tds\.net|toshiba\.com|trustedreviews\.com|truvista\.net|windstream\.net|windstreambusiness\.net|wowway\.net|zoover\.co\.uk|zoover\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R817 -s@^referer(?=:[^\n]*[./](?:about\.com|ehow\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R820 -s@^referer(?=:[^\n]*[./](?:accounts\.google\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R832 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|addictinginfo\.org|alfonzorachel\.com|allenbwest\.com|allenwestrepublic\.com|aplus\.com|askmefast\.com|bizpacreview\.com|bulletsfirst\.net|chacha\.com|christianpost\.com|christiantoday\.com|clashdaily\.com|classicalite\.com|comicallyincorrect\.com|comicbookmovie\.com|conservativebyte\.com|conservativetribune\.com|conservativevideos\.com|cowboybyte\.com|crossmap\.com|dailyheadlines\.net|dailysurge\.com|dccrimestories\.com|digitaljournal\.com|drhotze\.com|enstarz\.com|explosm\.net|flexonline\.com|gamezone\.com|genfringe\.com|girlsjustwannahaveguns\.comhellou\.co\.uk|heroichollywood\.com|hngn\.com|infowars\.com|instigatornews\.com|joeforamerica\.com|kdramastars\.com|kpopstarz\.com|latinopost\.com|latinpost\.com|libertyunyielding\.com|listverse\.com|mensfitness\.com|minutemennews\.com|mobilelikez\.com|mstarz\.com|muscleandfitness\.com|musictimes\.com|naturalblaze\.com|naturalnews\.com|natureworldnews\.com|newser\.com|oddee\.com|okmagazine\.com|patriotoutdoornews\.com|pitgrit\.com|radaronline\.com|rantlifestyle\.com|realfarmacy\.com|redmaryland\.com|segmentnext\.com|shark-tank\.com|starmagazine\.com|stevedeace\.com|techtimes\.com|thechive\.com|thegatewaypundit\.com|themattwalshblog\.com|thepoke\.co\.uk|townhall\.com|unilad\.co\.uk|variety\.com|vcpost\.com|victoriajackson\.com|viralnova\.com|viralthread\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R834 -s@^referer(?=:[^\n]*[./](?:activistpost\.com|afreesms\.com|androidrepublic\.org|apkmirror\.com|appraisersforum\.com|aseanlegacy\.net|better-explorer\.com|bitcofree\.com|bitcoinker\.com|boxbit\.co\.in|calcularindemnizacion\.es|chrissmoove\.com|clubedohardware\.com\.br|danydanielrt\.com|debridit\.com|debridnet\.com|demo-uhd3d\.com|dev-metal\.com|ezoden\.com|firstonetv\.com|freebitco\.in|freeprosurfer\.com|getdebrid\.com|gnomio\.com|hackintosh\.zone|hubturkey\.net|i-stats\.net|incredibox\.com|kadinlarkulubu\.com|leecher\.us|liberallogic101\.com|lomeutec\.com|mangacap\.com|mangahop\.com|masfuertequeelhierro\.com|megaleech\.us|mpc-g\.com|mypapercraft\.net|narkive\.com|niresh\.co|niresh12495\.com|nonags\.com|noticiasautomotivas\.com\.br|pattayaone\.net|play-old-pc-games\.com|sc2casts\.com|scriptnulled\.eu|settlersonlinemaps\.com|shinobilifeonline\.com|sizedrive\.com|slideplayer\.com\.br|streaming-hub\.com|unlockpwd\.com|unlocktheinbox\.com|uploadex\.com|wallpapersimages\.co\.uk|wrestlingtalk\.org|xcl\.com\.br|zeperfs\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R839 -s@^referer(?=:[^\n]*[./](?:adguard\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R840 -s@^referer(?=:[^\n]*[./](?:adlib\.info)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R841 -s@^referer(?=:[^\n]*[./](?:adline\.by|adline\.kiev\.ua|adline\.reformal\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R842 -s@^referer(?=:[^\n]*[./](?:adme\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R843 -s@^referer(?=:[^\n]*[./](?:adnetonline\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R845 -s@^referer(?=:[^\n]*[./](?:ads\.bridgetrack\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R846 -s@^referer(?=:[^\n]*[./](?:ads\.twitter\.com|analytics\.twitter\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R847 -s@^referer(?=:[^\n]*[./](?:adsbox\.com\.ua|adsbox\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R848 -s@^referer(?=:[^\n]*[./](?:adservice\.kz)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R849 -s@^referer(?=:[^\n]*[./](?:adservicemedia\.dk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R850 -s@^referer(?=:[^\n]*[./](?:adstyle\.com\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R851 -s@^referer(?=:[^\n]*[./](?:adultswim\.com|animalist\.com|revision3\.com|testtube\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R852 -s@^referer(?=:[^\n]*[./](?:adultswim\.com|cartoonnetwork\.com|cnn\.com|hlntv\.com|nba\.com|tbs\.com|teamcoco\.com|tntdrama\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R853 -s@^referer(?=:[^\n]*[./](?:adv\.d3\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R854 -s@^referer(?=:[^\n]*[./](?:adv\.ramr\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R855 -s@^referer(?=:[^\n]*[./](?:adv\.ya\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R856 -s@^referer(?=:[^\n]*[./](?:advert-control\.ru|advert-empire\.com|advert-line\.ru|advert-technology\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R857 -s@^referer(?=:[^\n]*[./](?:advertisers\.io)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R858 -s@^referer(?=:[^\n]*[./](?:advertising\.amazon\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R859 -s@^referer(?=:[^\n]*[./](?:advertising\.apple\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R860 -s@^referer(?=:[^\n]*[./](?:advertising\.sanoma\.be)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R861 -s@^referer(?=:[^\n]*[./](?:adview\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R862 -s@^referer(?=:[^\n]*[./](?:adweb\.by)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R863 -s@^referer(?=:[^\n]*[./](?:adwords\.google\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R866 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R868 -s@^referer(?=:[^\n]*[./](?:affrity\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R873 -s@^referer(?=:[^\n]*[./](?:afisha\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R876 -s@^referer(?=:[^\n]*[./](?:afl\.com\.au)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R877 -s@^referer(?=:[^\n]*[./](?:afl\.com\.au|goal\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R878 -s@^referer(?=:[^\n]*[./](?:afreesms\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R882 -s@^referer(?=:[^\n]*[./](?:akado\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R883 -s@^referer(?=:[^\n]*[./](?:akado\.ru|megafon\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R885 -s@^referer(?=:[^\n]*[./](?:akprior\.com|eurobank-ua\.com|maingear\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R886 -s@^referer(?=:[^\n]*[./](?:aktiv48\.ru|interzet\.ru|pgpru\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R889 -s@^referer(?=:[^\n]*[./](?:alfabank\.ru|mts\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R891 -s@^referer(?=:[^\n]*[./](?:allserial\.tv|turbobitit\.org|vidhost12\.org)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R892 -s@^referer(?=:[^\n]*[./](?:alphatv\.gr)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R899 -s@^referer(?=:[^\n]*[./](?:amazon\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R901 -s@^referer(?=:[^\n]*[./](?:amctheatres\.com|pitchfork\.com|podomatic\.com|virginaustralia\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R903 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.co\.jp)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R904 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.co\.uk)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R905 -s@^referer(?=:[^\n]*[./](?:ams\.amazon\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R908 -s@^referer(?=:[^\n]*[./](?:animecrave\.com|bostonherald\.com|deluxemusic\.tv|deluxetelevision\.com|theunlockr\.com|videopoker\.com|weeklyworldnews\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R909 -s@^referer(?=:[^\n]*[./](?:animecrazy\.net|gamedorm\.org|gamepro\.com|satsukai\.com|sparknotes\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R910 -s@^referer(?=:[^\n]*[./](?:anisearch\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R912 -s@^referer(?=:[^\n]*[./](?:ansingstatejournal\.com|app\.com|battlecreekenquirer\.com|clarionledger\.com|coloradoan\.com|dailyrecord\.com|dailyworld\.com|delmarvanow\.com|freep\.com|greatfallstribune\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|ithacajournal\.com|jconline\.com|livingstondaily\.com|montgomeryadvertiser\.com|mycentraljersey\.com|news-press\.com|pal-item\.com|pnj\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|shreveporttimes\.com|stargazette\.com|tallahassee\.com|theadvertiser\.com|thecalifornian\.com|thedailyjournal\.com|thenewsstar\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|visaliatimesdelta\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R913 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresmedia\.com|atresplayer\.com|lasexta\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R914 -s@^referer(?=:[^\n]*[./](?:antena3\.com|atresmedia\.com|atresplayer\.com|lasexta\.com|majorleaguegaming\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R917 -s@^referer(?=:[^\n]*[./](?:aol\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R918 -s@^referer(?=:[^\n]*[./](?:aol\.com|engadget\.com|games\.com|huffingtonpost\.com|mapquest\.com|stylelist\.ca)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R922 -s@^referer(?=:[^\n]*[./](?:api\.kinomoov\.net)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R924 -s@^referer(?=:[^\n]*[./](?:app\.com|argusleader\.com|aviationweek\.com|battlecreekenquirer\.com|baxterbulletin\.com|bucyrustelegraphforum\.com|burlingtonfreepress\.com|centralohio\.com|chillicothegazette\.com|cincinnati\.com|citizen-times\.com|clarionledger\.com|coloradoan\.com|coshoctontribune\.com|courier-journal\.com|courierpostonline\.com|dailyrecord\.com|dailyworld\.com|delawareonline\.com|delmarvanow\.com|democratandchronicle\.com|desmoinesregister\.com|dnj\.com|fdlreporter\.com|foxsmallbusinesscenter\.com|freep\.com|greatfallstribune\.com|greenbaypressgazette\.com|greenvilleonline\.com|guampdn\.com|hattiesburgamerican\.com|hometownlife\.com|honoluluadvertiser\.com|htrnews\.com|indystar\.com|jacksonsun\.com|jconline\.com|lancastereaglegazette\.com|lansingstatejournal\.com|livingstondaily\.com|lohud\.com|mansfieldnewsjournal\.com|marionstar\.com|marshfieldnewsherald\.com|montgomeryadvertiser\.com|mycentraljersey\.com|mydesert\.com|newarkadvocate\.com|news-leader\.com|news-press\.com|newsleader\.com|pal-item\.com|pnj\.com|portclintonnewsherald\.com|postcrescent\.com|poughkeepsiejournal\.com|press-citizen\.com|pressconnects\.com|rgj\.com|sctimes\.com|sheboyganpress\.com|shreveporttimes\.com|stargazette\.com|statesmanjournal\.com|stevenspointjournal\.com|tallahassee\.com|tennessean\.com|theadvertiser\.com|thecalifornian\.com|thedailyjournal\.com|theithacajournal\.com|theleafchronicle\.com|thenews-messenger\.com|thenewsstar\.com|thenorthwestern\.com|thespectrum\.com|thestarpress\.com|thetimesherald\.com|thetowntalk\.com|visaliatimesdelta\.com|wausaudailyherald\.com|weather\.com|wisconsinrapidstribune\.com|zanesvilletimesrecorder\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R926 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R220 s@^referer(?=:[^\n]*[./](?:appledaily\.com\.tw)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R927 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R221 s@^referer(?=:[^\n]*[./](?:appledaily\.com|nextmedia\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R929 -s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R93 -s@^referer(?=:[^\n]*[./](?:anistar\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R930 -s@^referer(?=:[^\n]*[./](?:argumenti\.ru|autonews\.ru|glav\.su|kp\.ru|sobesednik\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R932 -s@^referer(?=:[^\n]*[./](?:armstrongmywire\.com|atlanticbb\.net|bestbuy\.com|bresnan\.net|broadstripe\.net|buckeyecablesystem\.net|cableone\.net|centurylink\.net|charter\.net|cincinnatibell\.net|dish\.net|forbbbs\.org|forbes\.com|gumtree\.com\.au|hargray\.net|hawaiiantel\.net|hickorytech\.net|homeaway\.co\.uk|knology\.net|livestrong\.com|mediacomtoday\.com|midco\.net|mybendbroadband\.com|mybrctv\.com|mycenturylink\.com|myconsolidated\.net|myepb\.net|mygrande\.net|mygvtc\.com|myhughesnet\.com|myritter\.com|northstate\.net|nwcable\.net|query\.nytimes\.com|rentals\.com|search\.rr\.com|searchresults\.verizon\.com|suddenlink\.net|surewest\.com|synacor\.net|tds\.net|toshiba\.com|trustedreviews\.com|truvista\.net|windstream\.net|windstreambusiness\.net|wowway\.net|www\.google\.com|zoover\.co\.uk|zoover\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R933 -s@^referer(?=:[^\n]*[./](?:asianmommy\.com|filmcrave\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R936 -s@^referer(?=:[^\n]*[./](?:atlant-m\.in\.ua)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R938 -s@^referer(?=:[^\n]*[./](?:audio-hi-fi\.ru|electric-house\.ru|stroi-help\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R940 -s@^referer(?=:[^\n]*[./](?:audiomack\.com|cbc\.ca|cnet\.com|gamejolt\.com|news\.sky\.com|theverge\.com|video\.foxbusiness\.com|video\.foxnews\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R941 -s@^referer(?=:[^\n]*[./](?:autocentrum\.pl)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R942 -s@^referer(?=:[^\n]*[./](?:autoguide\.com|avclub\.com|boatshop24\.com|cadenasuper\.com|dailygames\.com|demotywatory\.pl|drivearabia\.com|ensonhaber\.com|escapegames\.com|juegosdiarios\.com|lbox\.me|letio\.com|lightinthebox\.com|memegenerator\.net|motorcycle\.com|mysoju\.com|nedbank\.co\.za|nedbankgreen\.co\.za|nx8\.com|playedonline\.com|playstationlifestyle\.net|readersdigest\.com\.au|sulekha\.com|ticketek\.com\.ar|volokh\.com|yfrog\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R943 -s@^referer(?=:[^\n]*[./](?:autoguide\.com|avclub\.com|boatshop24\.com|cadenasuper\.com|dailygames\.com|demotywatory\.pl|drivearabia\.com|ensonhaber\.com|juegosdiarios\.com|lbox\.me|letio\.com|lightinthebox\.com|memegenerator\.net|mysoju\.com|nedbank\.co\.za|nedbankgreen\.co\.za|nitrome\.com|nx8\.com|playedonline\.com|sulekha\.com|volokh\.com|yfrog\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R946 -s@^referer(?=:[^\n]*[./](?:autonews\.ru|utro\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R948 -s@^referer(?=:[^\n]*[./](?:autos\.yahoo\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R952 -s@^referer(?=:[^\n]*[./](?:bactistatin\.com|gamexp\.ru|iguides\.ru|ingate\.ru|yandex\.ru)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R957 -s@^referer(?=:[^\n]*[./](?:bannersnack\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R963 -s@^referer(?=:[^\n]*[./](?:bbc\.co\.uk|bbc\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R964 -s@^referer(?=:[^\n]*[./](?:bbc\.com)):.*@ab2p-unblock-request@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R965 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R222 s@^referer(?=:[^\n]*[./](?:bbs\.yzz\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R966 -s@^referer(?=:[^\n]*[./](?:beeline\.ru)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R224 +s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R968 -s@^referer(?=:[^\n]*[./](?:bestru\.ru)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R225 +s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R970 -s@^referer(?=:[^\n]*[./](?:betbeaver\.com|betwonga\.com|betyper\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R226 +s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R971 -s@^referer(?=:[^\n]*[./](?:betbeaver\.com|internetcasinot\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R227 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R972 -s@^referer(?=:[^\n]*[./](?:betfair\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R228 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R973 -s@^referer(?=:[^\n]*[./](?:betwonga\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R229 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R974 -s@^referer(?=:[^\n]*[./](?:betwonga\.com|dealsplus\.com|matched-bet\.net|pcmag\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R230 +s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R975 -s@^referer(?=:[^\n]*[./](?:betwonga\.com|matched-bet\.net)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R231 +s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R979 -s@^referer(?=:[^\n]*[./](?:bitcoinker\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R232 +s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R983 -s@^referer(?=:[^\n]*[./](?:bkshopper\.com|geo-ship\.com|testfreaks\.co\.uk|watchmydeals\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R233 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R984 -s@^referer(?=:[^\n]*[./](?:blastro\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R234 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R985 -s@^referer(?=:[^\n]*[./](?:blesk\.cz|open\.fm)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R235 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R988 -s@^referer(?=:[^\n]*[./](?:bmw-motorrad\.com|bmw-motorrad\.ru)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R236 +s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R991 -s@^referer(?=:[^\n]*[./](?:bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|weddingspot\.co\.uk|zillow\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R237 +s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-R999 -s@^referer(?=:[^\n]*[./](?:box10\.com|freeonlinegames\.com|games\.aarp\.org|kizi\.com|latimes\.com|merriam-webster\.com|puzzles\.usatoday\.com)):.*@ab2p-unblock-request@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R238 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Rn1862 -s@^referer(?!:[^\n]*[./](?:cybergame\.tv)):.*@ab2p-unblock-request@Ti -s@^referer:.*@-ab2p-unblock-request-nR@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R239 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Rn1865 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R240 +s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R241 +s@^referer(?=:[^\n]*[./](?:fharr\.com|gimhoy\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R243 +s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R245 +s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R246 +s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R247 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R248 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R249 +s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R250 +s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R251 +s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R252 +s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R253 +s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R254 +s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R255 +s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R256 +s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R257 +s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R258 +s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R259 +s@^referer(?=:[^\n]*[./](?:ieeee\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R260 +s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R261 +s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R262 +s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R263 +s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R265 +s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R267 +s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R268 +s@^referer(?=:[^\n]*[./](?:keenfine\.com|xoyo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R269 +s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R270 +s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R271 +s@^referer(?=:[^\n]*[./](?:laniqu\.com|veryeast\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R272 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R273 +s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R274 +s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R275 +s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R276 +s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R277 +s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R278 +s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R279 +s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R280 +s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R281 +s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R282 +s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R283 +s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R284 +s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R285 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R286 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R287 +s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R288 +s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn|wb\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R289 +s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R290 +s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R291 +s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R292 +s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R293 +s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R294 +s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R295 +s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R296 +s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R297 +s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R298 +s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R299 +s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R302 +s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R303 +s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R304 +s@^referer(?=:[^\n]*[./](?:tdx\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R305 +s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R306 +s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R308 +s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R309 +s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R310 +s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R311 +s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R313 +s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R314 +s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R315 +s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R316 +s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R317 +s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R318 +s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R319 +s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R320 +s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R321 +s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R322 +s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R323 +s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R324 +s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R325 +s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R326 +s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R327 +s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R328 +s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Rn187 s@^referer(?!:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-unblock-request@Ti s@^referer:.*@-ab2p-unblock-request-nR@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Rn761 -s@^referer(?!:[^\n]*[./](?:superfilm\.pl)):.*@ab2p-unblock-request@Ti -s@^referer:.*@-ab2p-unblock-request-nR@Ti - CLIENT-HEADER-TAGGER: ab2p-unblock-request-Rnt s@^referer:.*@$&\t$host@Di s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request@i @@ -17909,127 +3101,11 @@ s@^referer:.*@-ab2p-unblock-request-nR@Ti CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx s@^x-requested-with(?=:\s*(?:xmlhttprequest)):.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1008 -s@^referer(?=:[^\n]*[./](?:c\.brightcove\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1034 -s@^referer(?=:[^\n]*[./](?:charter\.net)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1042 -s@^referer(?=:[^\n]*[./](?:cinemassacre\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1071 -s@^referer(?=:[^\n]*[./](?:cwtv\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1109 -s@^referer(?=:[^\n]*[./](?:disney\.no)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1135 -s@^referer(?=:[^\n]*[./](?:easyrecipesite\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1175 -s@^referer(?=:[^\n]*[./](?:expressen\.se)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1181 -s@^referer(?=:[^\n]*[./](?:factom\.org)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1257 -s@^referer(?=:[^\n]*[./](?:glamourbabe\.eu)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1279 -s@^referer(?=:[^\n]*[./](?:hd-porn\.me)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1316 -s@^referer(?=:[^\n]*[./](?:imasdk\.googleapis\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1328 -s@^referer(?=:[^\n]*[./](?:insys\.pl)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1354 -s@^referer(?=:[^\n]*[./](?:jobstreet\.co\.id|jobstreet\.co\.in|jobstreet\.co\.th|jobstreet\.com|jobstreet\.com\.my|jobstreet\.com\.ph|jobstreet\.com\.sg|jobstreet\.vn)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1405 -s@^referer(?=:[^\n]*[./](?:lucidchart\.com|lucidpress\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1407 -s@^referer(?=:[^\n]*[./](?:m\.tmz\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1440 -s@^referer(?=:[^\n]*[./](?:mercadolivre\.com\.br)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1462 -s@^referer(?=:[^\n]*[./](?:monster\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1492 -s@^referer(?=:[^\n]*[./](?:nfl\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1495 -s@^referer(?=:[^\n]*[./](?:ninemsn\.com\.au)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1510 +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R284 s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-request-Xx@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1517 -s@^referer(?=:[^\n]*[./](?:openload\.co)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1595 -s@^referer(?=:[^\n]*[./](?:repeatmyvids\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1601 -s@^referer(?=:[^\n]*[./](?:roshlam\.ru)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1672 -s@^referer(?=:[^\n]*[./](?:stream\.1tv\.ru)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1712 -s@^referer(?=:[^\n]*[./](?:thestreet\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1754 -s@^referer(?=:[^\n]*[./](?:uktv\.co\.uk)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1764 -s@^referer(?=:[^\n]*[./](?:uzmantv\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1770 -s@^referer(?=:[^\n]*[./](?:vevo\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1785 -s@^referer(?=:[^\n]*[./](?:virpl\.ru)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1797 -s@^referer(?=:[^\n]*[./](?:walmart\.com\.br)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1820 -s@^referer(?=:[^\n]*[./](?:wp\.tv)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1823 -s@^referer(?=:[^\n]*[./](?:www\.facebook\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R1824 -s@^referer(?=:[^\n]*[./](?:www\.google\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R534 -s@^referer(?=:[^\n]*[./](?:yahoo\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R819 -s@^referer(?=:[^\n]*[./](?:accelo\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R844 -s@^referer(?=:[^\n]*[./](?:adroll\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R867 -s@^referer(?=:[^\n]*[./](?:affinitylive\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R980 -s@^referer(?=:[^\n]*[./](?:biznews\.com)):.*@ab2p-unblock-request-Xx@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Xx@i -s@^referer:.*@-ab2p-unblock-request-Xx-when-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-nR -s@^.*@ab2p-unblock-request-Xx@Ti +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R307 +s@^referer(?=:[^\n]*[./](?:tw\.autos\.yahoo\.com|tw\.buy\.yahoo\.com)):.*@ab2p-unblock-request-Xx@Ti SERVER-HEADER-TAGGER: ab2p-unblock-request-nC s@^.*@ab2p-unblock-request@Ti @@ -18037,351 +3113,8 @@ s@^.*@ab2p-unblock-request@Ti CLIENT-HEADER-TAGGER: ab2p-unblock-request-nR s@^.*@ab2p-unblock-request@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1007 -s@^referer(?=:[^\n]*[./](?:business-standard\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1019 -s@^referer(?=:[^\n]*[./](?:casadossegredos\.tv|xuuby\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1036 -s@^referer(?=:[^\n]*[./](?:cheaptickets\.com|orbitz\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1039 -s@^referer(?=:[^\n]*[./](?:chrissmoove\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1070 -s@^referer(?=:[^\n]*[./](?:cubeecraft\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1083 -s@^referer(?=:[^\n]*[./](?:dating\.yahoo\.com\.au)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1084 -s@^referer(?=:[^\n]*[./](?:dayt\.se)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1116 -s@^referer(?=:[^\n]*[./](?:doctoroz\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1136 -s@^referer(?=:[^\n]*[./](?:ebay\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1143 -s@^referer(?=:[^\n]*[./](?:ehow\.com|livestrong\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1187 -s@^referer(?=:[^\n]*[./](?:fcportables\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1191 -s@^referer(?=:[^\n]*[./](?:filecore\.co\.nz)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1192 -s@^referer(?=:[^\n]*[./](?:fileover\.net)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1200 -s@^referer(?=:[^\n]*[./](?:flaixfm\.cat)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1204 +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R244 s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-xframe@Ti -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1232 -s@^referer(?=:[^\n]*[./](?:fundsdata\.co\.za)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1258 -s@^referer(?=:[^\n]*[./](?:glassdoor\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1287 -s@^referer(?=:[^\n]*[./](?:hometheaterforum\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1333 -s@^referer(?=:[^\n]*[./](?:iprima\.cz)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1340 -s@^referer(?=:[^\n]*[./](?:izzylaif\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1342 -s@^referer(?=:[^\n]*[./](?:jabong\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1343 -s@^referer(?=:[^\n]*[./](?:jalan\.net)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1345 -s@^referer(?=:[^\n]*[./](?:jav4\.me)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1375 -s@^referer(?=:[^\n]*[./](?:ktiv\.com|wflx\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1419 -s@^referer(?=:[^\n]*[./](?:mangasky\.co)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1433 -s@^referer(?=:[^\n]*[./](?:medscape\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1447 -s@^referer(?=:[^\n]*[./](?:milb\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1450 -s@^referer(?=:[^\n]*[./](?:mlb\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1451 -s@^referer(?=:[^\n]*[./](?:mlb\.mlb\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1458 -s@^referer(?=:[^\n]*[./](?:mobinozer\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1461 -s@^referer(?=:[^\n]*[./](?:moevideos\.net)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1477 -s@^referer(?=:[^\n]*[./](?:muz\.ru)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1485 -s@^referer(?=:[^\n]*[./](?:nbc\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1486 -s@^referer(?=:[^\n]*[./](?:nedbank\.co\.za)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1514 -s@^referer(?=:[^\n]*[./](?:onlinetvrecorder\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1519 -s@^referer(?=:[^\n]*[./](?:openload\.io)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1531 -s@^referer(?=:[^\n]*[./](?:patch\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1534 -s@^referer(?=:[^\n]*[./](?:pch\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1551 -s@^referer(?=:[^\n]*[./](?:plan\.ru)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1552 -s@^referer(?=:[^\n]*[./](?:planetatvonlinehd\.blogspot\.com\.ar)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1609 -s@^referer(?=:[^\n]*[./](?:rutracker\.org\.ua)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1622 -s@^referer(?=:[^\n]*[./](?:sedo\.co\.uk|sedo\.com|sedo\.jp|sedo\.kr|sedo\.pl)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1632 -s@^referer(?=:[^\n]*[./](?:sh\.st)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1633 -s@^referer(?=:[^\n]*[./](?:sharedata\.co\.za)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1651 -s@^referer(?=:[^\n]*[./](?:smileonthetiles\.com|smileonthetiles2\.co\.uk)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1656 -s@^referer(?=:[^\n]*[./](?:sny\.tv)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1665 -s@^referer(?=:[^\n]*[./](?:springstreetads\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1682 -s@^referer(?=:[^\n]*[./](?:surfingbird\.com|surfingbird\.ru)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1694 -s@^referer(?=:[^\n]*[./](?:tapochek\.net)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1697 -s@^referer(?=:[^\n]*[./](?:team-vitality\.fr)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1707 -s@^referer(?=:[^\n]*[./](?:thedoujin\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1708 -s@^referer(?=:[^\n]*[./](?:theemptynestexpress\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1709 -s@^referer(?=:[^\n]*[./](?:thegayuk\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1720 -s@^referer(?=:[^\n]*[./](?:topzone\.lt)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1734 -s@^referer(?=:[^\n]*[./](?:turkanime\.tv)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1815 -s@^referer(?=:[^\n]*[./](?:wizard\.mediacoderhq\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1842 -s@^referer(?=:[^\n]*[./](?:yesnetwork\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1845 -s@^referer(?=:[^\n]*[./](?:youjizz\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1853 +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R329 s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1857 -s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R1896t -s@^referer:.*@$&\t$host@Di -s@^referer(?=:[^\n]*[./](?:eafyfsuh\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-xframe@i - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R202 -s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R306 -s@^referer(?=:[^\n]*[./](?:kissanime\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R414 -s@^referer(?=:[^\n]*[./](?:reuters\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R451 -s@^referer(?=:[^\n]*[./](?:stopgame\.ru)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R507 -s@^referer(?=:[^\n]*[./](?:vivo\.sx)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R509 -s@^referer(?=:[^\n]*[./](?:vk\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R75 -s@^referer(?=:[^\n]*[./](?:adultmult\.tv)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R813 -s@^referer(?=:[^\n]*[./](?:a-d-sign\.pl)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R818 -s@^referer(?=:[^\n]*[./](?:about\.com|ehow\.com|livestrong\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R863 -s@^referer(?=:[^\n]*[./](?:adwords\.google\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R865 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.co\.uk|affiliate-program\.amazon\.com|affiliate-program\.amazon\.in|affiliate\.amazon\.co\.jp|afiliados\.amazon\.es|associados\.amazon\.com\.br|associates\.amazon\.ca|associates\.amazon\.cn|partenaires\.amazon\.fr|partnernet\.amazon\.de|programma-affiliazione\.amazon\.it)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R866 -s@^referer(?=:[^\n]*[./](?:affiliate-program\.amazon\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R868 -s@^referer(?=:[^\n]*[./](?:affrity\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R898 -s@^referer(?=:[^\n]*[./](?:amateursexy\.net)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R907 -s@^referer(?=:[^\n]*[./](?:anchorfree\.us)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R911 -s@^referer(?=:[^\n]*[./](?:anizm\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R921 -s@^referer(?=:[^\n]*[./](?:apartments\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R939 -s@^referer(?=:[^\n]*[./](?:audiomack\.com|cbc\.ca|cnet\.com|eboundservices\.com|edmunds\.com|gamejolt\.com|globalnews\.ca|live\.geo\.tv|news\.sky\.com|nfl\.com|reuters\.tv|rottentomatoes\.com|softgames\.de|thestreet\.com|video\.foxnews\.com|waywire\.com|wibbitz\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R961 -s@^referer(?=:[^\n]*[./](?:baynews9\.com|cfnews13\.com)):.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-xframe@i -s@^referer:.*@-ab2p-unblock-xframe-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-Rt -s@^referer:.*@$&\t$host@Di -s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-xframe@i -s@^referer:.*@-ab2p-unblock-xframe-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-nR -s@^.*@ab2p-unblock-xframe@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1003 -s@^referer(?=:[^\n]*[./](?:brazzerssupport\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1065 -s@^referer(?=:[^\n]*[./](?:couponcodeswap\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1068 -s@^referer(?=:[^\n]*[./](?:ctc\.ru|mts\.ru|ozon\.ru|tnt-online\.ru|videomore\.ru)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1177 -s@^referer(?=:[^\n]*[./](?:extremetube\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1178 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|keezmovies\.com|pornhub\.com|redtube\.com|spankwire\.com|tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1179 -s@^referer(?=:[^\n]*[./](?:extremetube\.com|spankwire\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1203 -s@^referer(?=:[^\n]*[./](?:flipkart\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1290 -s@^referer(?=:[^\n]*[./](?:hotukdeals\.com|jobamatic\.com|play\.google\.com|santander\.co\.uk|techrepublic\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1315 -s@^referer(?=:[^\n]*[./](?:imagebam\.com|imgbox\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1330 -s@^referer(?=:[^\n]*[./](?:internetcasinot\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1351 -s@^referer(?=:[^\n]*[./](?:jobamatic\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1540 -s@^referer(?=:[^\n]*[./](?:people\.com|time\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1589 -s@^referer(?=:[^\n]*[./](?:redtube\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1591 -s@^referer(?=:[^\n]*[./](?:reempresa\.org)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1660 -s@^referer(?=:[^\n]*[./](?:spankwire\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1663 -s@^referer(?=:[^\n]*[./](?:sports\.ru)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1675 -s@^referer(?=:[^\n]*[./](?:sudinfo\.be)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1730 -s@^referer(?=:[^\n]*[./](?:tube8\.com|tube8\.es|tube8\.fr)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1790 -s@^referer(?=:[^\n]*[./](?:vouchercodes\.co\.uk)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R1812 -s@^referer(?=:[^\n]*[./](?:williamhillcasino\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R392 -s@^referer(?=:[^\n]*[./](?:pornhub\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R403 -s@^referer(?=:[^\n]*[./](?:putlocker\.is)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R952 -s@^referer(?=:[^\n]*[./](?:bactistatin\.com|gamexp\.ru|iguides\.ru|ingate\.ru|yandex\.ru)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R970 -s@^referer(?=:[^\n]*[./](?:betbeaver\.com|betwonga\.com|betyper\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R971 -s@^referer(?=:[^\n]*[./](?:betbeaver\.com|internetcasinot\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R973 -s@^referer(?=:[^\n]*[./](?:betwonga\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R974 -s@^referer(?=:[^\n]*[./](?:betwonga\.com|dealsplus\.com|matched-bet\.net|pcmag\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R975 -s@^referer(?=:[^\n]*[./](?:betwonga\.com|matched-bet\.net)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-R991 -s@^referer(?=:[^\n]*[./](?:bodas\.com\.mx|bodas\.net|casamentos\.com\.br|casamentos\.pt|casamiento\.com\.uy|casamientos\.com\.ar|mariages\.net|matrimonio\.com|matrimonio\.com\.co|matrimonio\.com\.pe|matrimonios\.cl|weddingspot\.co\.uk|zillow\.com)):.*@ab2p-unblock-xpopup@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-Rnt -s@^referer:.*@$&\t$host@Di -s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-xpopup@i -s@^referer:.*@-ab2p-unblock-xpopup-nR@Ti - -CLIENT-HEADER-TAGGER: ab2p-unblock-xpopup-nR -s@^.*@ab2p-unblock-xpopup@Ti diff --git a/1_9.r18_plugin/ad_plug/rule1/ab2p.action b/1_9.r18_plugin/ad_plug/rule1/ab2p.action new file mode 100644 index 0000000..1589687 --- /dev/null +++ b/1_9.r18_plugin/ad_plug/rule1/ab2p.action @@ -0,0 +1,39129 @@ +#AbBlock generated actions -- don't edit -- +#----- source ----- +#Title: EasyList China +#Url: https://easylist-downloads.adblockplus.org/easylistchina.txt +#Last modified: 29 Jan 2016 15:51 UTC +#Expires: 96 hours +#Version: 201601291533 +#License: https://easylist-downloads.adblockplus.org/COPYING +#Homepage: http://abpchina.org/forum/ +#------- end ------ + +#ab2p-block-dnt +{+add-header{DNT: 1} \ +} +TAG:^ab2p-block-dnt$ +# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina.txt: 10478) +.hjfile.cn/analytics/site/TrackEvent\.js +# ||hdsrc-a.akamaihd.net^ (easylistchina.txt: 10441) +.hdsrc-a.akamaihd.net +# ||hdapp1008-a.akamaihd.net^ (easylistchina.txt: 10440) +.hdapp1008-a.akamaihd.net +# ||hdapp1003-a.akamaihd.net^ (easylistchina.txt: 10439) +.hdapp1003-a.akamaihd.net +# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina.txt: 10438) +.commondisplay-a.akamaihd.net/cri/.*\.htm\?cat= +# ||akamaihd.net^*/sid.html?p= (easylistchina.txt: 10437) +.akamaihd.net/.*/sid\.html\?p= +# ||akamaihd.net^*/gsd.html?d= (easylistchina.txt: 10436) +.akamaihd.net/.*/gsd\.html\?d= +# ||146.148.85.61^ (easylistchina.txt: 10435) +.146.148.85.61 +# ||2chcn.com/img/japanese-a.png (easylistchina.txt: 5426) +.2chcn.com/img/japanese-a\.png +# ||zzz4.com/JS_AD/ (easylistchina.txt: 5425) +.zzz4.com/JS_AD/ +# ||zzsky.cn/images/zzskycom_ (easylistchina.txt: 5424) +.zzsky.cn/images/zzskycom_ +# ||zznews.cn/home/js/duilian1.js (easylistchina.txt: 5423) +.zznews.cn/home/js/duilian1\.js +# ||zzidc.com^*0.gif (easylistchina.txt: 5422) +.zzidc.com/.*0\.gif +# ||zzidc.com/img/ (easylistchina.txt: 5421) +.zzidc.com/img/ +# ||zzc.cn/b/ (easylistchina.txt: 5420) +.zzc.cn/b/ +# ||zxip.com/2013_ad/ (easylistchina.txt: 5419) +.zxip.com/2013_ad/ +# ||zuoche.com/promo/*.jspx (easylistchina.txt: 5418) +.zuoche.com/promo/.*\.jspx +# ||zuiben.com/a/ (easylistchina.txt: 5417) +.zuiben.com/a/ +# ||zt220.com/zzs/ (easylistchina.txt: 5416) +.zt220.com/zzs/ +# ||zt2088.com^ (easylistchina.txt: 5415) +.zt2088.com +# ||zt.iciba.com/guess/images/900.jpg (easylistchina.txt: 5414) +.zt.iciba.com/guess/images/900\.jpg +# ||zt.chuanke.com/?mod= (easylistchina.txt: 5413) +.zt.chuanke.com/\?mod= +# ||zsnews.cn/v.*=300&height=225& (easylistchina.txt: 5412) +.zsnews.cn/v\..*=300&height=225& +# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina.txt: 5411) +.zsnews.cn/JSFUN/AdvFun/ +# ||zsnews.cn/js/adControl- (easylistchina.txt: 5410) +.zsnews.cn/js/adControl- +# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina.txt: 5409) +.zsnews.cn/Components/2013ZSNEWS/ +# ||zsjjob.com/user/member/google.htm (easylistchina.txt: 5408) +.zsjjob.com/user/member/google\.htm +# ||zp365.com/newImages/201*.swf (easylistchina.txt: 5406) +.zp365.com/newImages/201.*\.swf +# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina.txt: 5405) +.zoopda.com/thumbs/.*_w_680_mh_120\. +# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina.txt: 5404) +.zoopda.com/thumbs/.*_w_250_mh_250\. +# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina.txt: 5403) +.zongheng.com/zhuanti/2014/active/js/active\.js +# ||zongheng.com/v2014/js/mod/bad.js (easylistchina.txt: 5402) +.zongheng.com/v2014/js/mod/bad\.js +# ||zongheng.com/upload/recommend/game/ (easylistchina.txt: 5401) +.zongheng.com/upload/recommend/game/ +# ||zongheng.com/ajax/recommend.game. (easylistchina.txt: 5400) +.zongheng.com/ajax/recommend\.game\. +# ||zolsky.com^*ad/*.js (easylistchina.txt: 5399) +.zolsky.com/.*ad/.*\.js +# ||zol.com.cn/intelcorp/ (easylistchina.txt: 5398) +.zol.com.cn/intelcorp/ +# ||zol.com.cn/adrs/ (easylistchina.txt: 5397) +.zol.com.cn/adrs/ +# ||zol-img.com.cn/soft/114ad_ (easylistchina.txt: 5396) +.zol-img.com.cn/soft/114ad_ +# ||zol-img.com.cn/201*/gt (easylistchina.txt: 5395) +.zol-img.com.cn/201.*/gt +# ||zo66.com^ (easylistchina.txt: 5394) +.zo66.com +# ||znz888.cn/modblock/ (easylistchina.txt: 5393) +.znz888.cn/modblock/ +# ||zk168.com.cn/js/sy (easylistchina.txt: 5392) +.zk168.com.cn/js/sy +# ||zk168.com.cn/js/s.js (easylistchina.txt: 5391) +.zk168.com.cn/js/s\.js +# ||zk168.com.cn/js/fwpd.js (easylistchina.txt: 5390) +.zk168.com.cn/js/fwpd\.js +# ||zk168.com.cn/js/b.js (easylistchina.txt: 5389) +.zk168.com.cn/js/b\.js +# ||zk168.com.cn/js/300gg.js (easylistchina.txt: 5388) +.zk168.com.cn/js/300gg\.js +# ||zjphoto.yinsha.com/upload/swf/ (easylistchina.txt: 5387) +.zjphoto.yinsha.com/upload/swf/ +# ||zjol.com.cn/js/duilian/ (easylistchina.txt: 5386) +.zjol.com.cn/js/duilian/ +# ||zjjzx.cn/img/zt/yd/ (easylistchina.txt: 5385) +.zjjzx.cn/img/zt/yd/ +# ||zjjzx.cn*/push/ (easylistchina.txt: 5384) +.zjjzx.cn*./(.*/)?push/ +# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina.txt: 5383) +.zjg.js.cn/Template/Ant/Js/tonglang\.js +# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina.txt: 5382) +.zjg.js.cn/Public/config/Couplet/Index4 +# ||zjbdt.com/onexgadimgs/ (easylistchina.txt: 5381) +.zjbdt.com/onexgadimgs/ +# ||zj.cn^*/AD?location= (easylistchina.txt: 5380) +.zj.cn/.*/AD\?location= +# ||ziti.jz123.cn/js/ (easylistchina.txt: 5379) +.ziti.jz123.cn/js/ +# ||zisai.com/2014.ad/ (easylistchina.txt: 5378) +.zisai.com/2014\.ad/ +# ||zisai.com/2013.ad/ (easylistchina.txt: 5377) +.zisai.com/2013\.ad/ +# ||zimuzu.tv/rrlx (easylistchina.txt: 5376) +.zimuzu.tv/rrlx +# ||zimuzu.tv/public/rooms? (easylistchina.txt: 5375) +.zimuzu.tv/public/rooms\? +# ||zhzyw.org/js/InsertJS.js (easylistchina.txt: 5374) +.zhzyw.org/js/InsertJS\.js +# ||zhyjw.com/xiala/ (easylistchina.txt: 5373) +.zhyjw.com/xiala/ +# ||zhyjw.com/IAA/ (easylistchina.txt: 5372) +.zhyjw.com/IAA/ +# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina.txt: 5371) +.zhulong.com/poster/get\?positions_name=ZY_SP_300 +# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina.txt: 5370) +.zhulong.com/poster/get\?positions_name=ZY_JZ_300_02 +# ||zhulong.com/poster/get?*_960 (easylistchina.txt: 5369) +.zhulong.com/poster/get\?.*_960 +# ||zhulang.com/ad_js/ (easylistchina.txt: 5368) +.zhulang.com/ad_js/ +# ||zhujiangroad.com/js/alltop.js (easylistchina.txt: 5367) +.zhujiangroad.com/js/alltop\.js +# ||zhuishu.com/js/fy (easylistchina.txt: 5366) +.zhuishu.com/js/fy +# ||zhuishu.com/js/bd (easylistchina.txt: 5365) +.zhuishu.com/js/bd +# ||zhuanyewanjia.com/upload/show/ (easylistchina.txt: 5364) +.zhuanyewanjia.com/upload/show/ +# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina.txt: 5363) +.zhuankeba.net/rw/tyrw/top\.jpg +# ||zhoushan.cn/new.js (easylistchina.txt: 5362) +.zhoushan.cn/new\.js +# ||zhongzi.in/static/ko/ (easylistchina.txt: 5361) +.zhongzi.in/static/ko/ +# ||zhlzw.com/wlles/2015/995XX.js (easylistchina.txt: 5360) +.zhlzw.com/wlles/2015/995XX\.js +# ||zhijia.com/hd/*.swf (easylistchina.txt: 5359) +.zhijia.com/hd/.*\.swf +# ||zhihu.com/node/Banner? (easylistchina.txt: 5358) +.zhihu.com/node/Banner\? +# ||zhibowu.com/js/ad (easylistchina.txt: 5357) +.zhibowu.com/js/ad +# ||zhibok8.com/js/scroll.js (easylistchina.txt: 5356) +.zhibok8.com/js/scroll\.js +# ||zhibok8.com/js/ding.js (easylistchina.txt: 5355) +.zhibok8.com/js/ding\.js +# ||zhiboba.cc/js/pic.js (easylistchina.txt: 5354) +.zhiboba.cc/js/pic\.js +# ||zhibo8.cc/js/float.js (easylistchina.txt: 5353) +.zhibo8.cc/js/float\.js +# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina.txt: 5352) +.zhenjiang365.cn/bbsimg/lphyslideshower\.swf +# ||zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9.jpg (easylistchina.txt: 5351) +.zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9\.jpg +# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina.txt: 5350) +.zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d\.gif +# ||zhenjiang365.cn/*/ad_ (easylistchina.txt: 5349) +.zhenjiang365.cn/.*/ad_ +# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina.txt: 5348) +.zhaozi.cn/d/js/mini/extended87\.js +# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina.txt: 5347) +.zhaojiao.net/templets/default/js/AD_flay\.js +# ||zhao.265g.com/cache/kfbftop.html (easylistchina.txt: 5346) +.zhao.265g.com/cache/kfbftop\.html +# ||zhanqi.tv/uploads/*/ads-*.swf (easylistchina.txt: 5345) +.zhanqi.tv/uploads/.*/ads-.*\.swf +# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina.txt: 5344) +.zhangge.net/wp-content/uploads/files/esx\.jpg +# ||zhandi.cc/Runtime/js/index (easylistchina.txt: 5343) +.zhandi.cc/Runtime/js/index +# ||zhandi.cc/Runtime/js/900 (easylistchina.txt: 5342) +.zhandi.cc/Runtime/js/900 +# ||zhandi.cc/Runtime/js/*vod (easylistchina.txt: 5341) +.zhandi.cc/Runtime/js/.*vod +# ||zhainanba.org/ac/ (easylistchina.txt: 5340) +.zhainanba.org/ac/ +# ||zgjm.org/data/cache/mytag-30.htm (easylistchina.txt: 5339) +.zgjm.org/data/cache/mytag-30\.htm +# ||zgjm.org/data/cache/mytag-24.htm (easylistchina.txt: 5338) +.zgjm.org/data/cache/mytag-24\.htm +# ||zfs.cn/data/attachment/portal/ (easylistchina.txt: 5337) +.zfs.cn/data/attachment/portal/ +# ||zfs.cn/8th/ (easylistchina.txt: 5336) +.zfs.cn/8th/ +# ||zeyi.cc/js/2412/ (easylistchina.txt: 5335) +.zeyi.cc/js/2412/ +# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina.txt: 5334) +.zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605\.gif +# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina.txt: 5333) +.zdfans.com/wp-content/upgrade/doujind\.gif +# ||zdfans.com/Picture/2345 (easylistchina.txt: 5332) +.zdfans.com/Picture/2345 +# ||zdfans.com/adsens/kiees.jpg (easylistchina.txt: 5331) +.zdfans.com/adsens/kiees\.jpg +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina.txt: 5330) +.zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317\.aspx +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina.txt: 5329) +.zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0\.aspx +# ||zchot.com/images/jiaoyou (easylistchina.txt: 5328) +.zchot.com/images/jiaoyou +# ||zc173.com/pp/ (easylistchina.txt: 5327) +.zc173.com/pp/ +# ||zc173.com/173fee/ (easylistchina.txt: 5326) +.zc173.com/173fee/ +# ||zb7.com/static/archy/ad/ (easylistchina.txt: 5325) +.zb7.com/static/archy/ad/ +# ||zasv.com/baiya.jpg (easylistchina.txt: 5324) +.zasv.com/baiya\.jpg +# ||zaobao.com/ssi/bizp/ (easylistchina.txt: 5323) +.zaobao.com/ssi/bizp/ +# ||zalra.qiniudn.com/zhou2.jpg (easylistchina.txt: 5322) +.zalra.qiniudn.com/zhou2\.jpg +# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina.txt: 5321) +.zalra.cn/wp-content/uploads/2014/05/xs009\.jpg +# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina.txt: 5320) +.zalra.cn/wp-content/uploads/2014/05/adsj\.png +# ||z63.org/wp-content/themes/z63/img/s- (easylistchina.txt: 5319) +.z63.org/wp-content/themes/z63/img/s- +# ||z4bbs.com/adst/ (easylistchina.txt: 5318) +.z4bbs.com/adst/ +# ||yzz.cn/home/theme/popwin/ (easylistchina.txt: 5317) +.yzz.cn/home/theme/popwin/ +# ||yzz.cn/global_gg/ (easylistchina.txt: 5316) +.yzz.cn/global_gg/ +# ||yzwb.com/js/ppaa.js (easylistchina.txt: 5315) +.yzwb.com/js/ppaa\.js +# ||yzwb.com/js/AD (easylistchina.txt: 5314) +.yzwb.com/js/AD +# ||yzwb.com/images/ad_ (easylistchina.txt: 5313) +.yzwb.com/images/ad_ +# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina.txt: 5312) +.yytcdn.com/user/bugles/.*_.*x.*\.jpg +# ||yytcdn.com/others/avt/*_1 (easylistchina.txt: 5310) +.yytcdn.com/others/avt/.*_1 +# ||yytcdn.com/others/*_175x660. (easylistchina.txt: 5309) +.yytcdn.com/others/.*_175x660\. +# ||yytcdn.com/headfile/avt/ (easylistchina.txt: 5308) +.yytcdn.com/headfile/avt/ +# ||yy521.com/qq/qq.js (easylistchina.txt: 5307) +.yy521.com/qq/qq\.js +# ||yy521.com/js/baidu (easylistchina.txt: 5306) +.yy521.com/js/baidu +# ||yy18.info/yyads/ (easylistchina.txt: 5305) +.yy18.info/yyads/ +# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina.txt: 5304) +.yxlady.com/skin/yx2014/mm/inpage/ny/ +# ||yxlady.com/cdd/ (easylistchina.txt: 5303) +.yxlady.com/cdd/ +# ||yxdown.com/ghtml/ (easylistchina.txt: 5302) +.yxdown.com/ghtml/ +# ||yxdd.com^$subdocument (easylistchina.txt: 5301) +.yxdd.com +# ||yxad.com/yxad/ (easylistchina.txt: 5300) +.yxad.com/yxad/ +# ||yxad.com/sg/ (easylistchina.txt: 5299) +.yxad.com/sg/ +# ||yxad.com/js/lady.gif (easylistchina.txt: 5298) +.yxad.com/js/lady\.gif +# ||yxad.com/baidu/ (easylistchina.txt: 5297) +.yxad.com/baidu/ +# ||yupoo.com/ttmeiju/FgIoBTXx/4uIfH.jpg (easylistchina.txt: 5296) +.yupoo.com/ttmeiju/FgIoBTXx/4uIfH\.jpg +# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina.txt: 5295) +.yupoo.com/ttmeiju/F5TrKJL8/medish\.jpg +# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina.txt: 5294) +.yupoo.com/ttmeiju/F5aQAmuW/XKgx\.gif +# ||yunupload.net/jsa/ (easylistchina.txt: 5292) +.yunupload.net/jsa/ +# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina.txt: 5291) +.yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead\.jpg +# ||yundianb.com/tu/jia.gif (easylistchina.txt: 5290) +.yundianb.com/tu/jia\.gif +# ||yundianb.com/hao/ (easylistchina.txt: 5289) +.yundianb.com/hao/ +# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina.txt: 5288) +.yundasys.com:1602/wsd/ykjcx/ +# ||yunaw.qiniudn.com/tuixiao.png (easylistchina.txt: 5287) +.yunaw.qiniudn.com/tuixiao\.png +# ||yubei8.com/img/ (easylistchina.txt: 5286) +.yubei8.com/img/ +# ||yubei8.com/boximg/ (easylistchina.txt: 5285) +.yubei8.com/boximg/ +# ||yto.net.cn/gw/chajian/ (easylistchina.txt: 5284) +.yto.net.cn/gw/chajian/ +# ||ytbbs.com/images/index/ (easylistchina.txt: 5283) +.ytbbs.com/images/index/ +# ||ysxs8.com/ysgg/ (easylistchina.txt: 5282) +.ysxs8.com/ysgg/ +# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina.txt: 5281) +.youxituoluo.com/wp-content/uploads/2015/09/20150914175545748\.jpg +# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina.txt: 5280) +.youxituoluo.com/wp-content/uploads/2015/07/20150724152002343\.jpg +# ||youxiaxiazai.com/dm/ (easylistchina.txt: 5279) +.youxiaxiazai.com/dm/ +# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina.txt: 5278) +.youxiaxiazai.com/db_top/index_top\.htm +# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina.txt: 5277) +.youxi.baidu.com/tips/bdtips_min\.js +# ||youthwant.com.tw/scripts/youthad.js (easylistchina.txt: 5275) +.youthwant.com.tw/scripts/youthad\.js +# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina.txt: 5274) +.youthwant.com.tw/S_YahooContentMatch1\. +# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina.txt: 5273) +.youthwant.com.tw/images/mot_ad\.jpg +# ||youthwant.com.tw/event/*/swf/970x (easylistchina.txt: 5272) +.youthwant.com.tw/event/.*/swf/970x +# ||youthwant.com.tw/dodo.php?adjs= (easylistchina.txt: 5271) +.youthwant.com.tw/dodo\.php\?adjs= +# ||youth.cn/qwtf2015/ (easylistchina.txt: 5270) +.youth.cn/qwtf2015/ +# ||youth.cn/images/public_ (easylistchina.txt: 5269) +.youth.cn/images/public_ +# ||youth.cn/images/m.js (easylistchina.txt: 5268) +.youth.cn/images/m\.js +# ||youth.cn/images/c.js (easylistchina.txt: 5267) +.youth.cn/images/c\.js +# ||youth.cn/hezuo/index.js (easylistchina.txt: 5266) +.youth.cn/hezuo/index\.js +# ||youth.cn/ggw/dep_ggw/ (easylistchina.txt: 5265) +.youth.cn/ggw/dep_ggw/ +# ||youqu.net/js/ (easylistchina.txt: 5264) +.youqu.net/js/ +# ||you85.cn^*/z*.js (easylistchina.txt: 5263) +.you85.cn/.*/z.*\.js +# ||you85.cn^*/vip.js (easylistchina.txt: 5262) +.you85.cn/.*/vip\.js +# ||you85.cn^*/dib.js (easylistchina.txt: 5261) +.you85.cn/.*/dib\.js +# ||you85.cn/i360/ (easylistchina.txt: 5260) +.you85.cn/i360/ +# ||you85.cn/cc/ (easylistchina.txt: 5259) +.you85.cn/cc/ +# ||yooread.com/skin/js/common.js (easylistchina.txt: 5258) +.yooread.com/skin/js/common\.js +# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina.txt: 5257) +.ynzd.org/dict/uploads/20111007/ad_710\.jpg +# ||ylzx8.cn/style/js/sad.js (easylistchina.txt: 5256) +.ylzx8.cn/style/js/sad\.js +# ||ylnet.com.cn/inc/ad$subdocument (easylistchina.txt: 5255) +.ylnet.com.cn/inc/ad +# ||ylnet.com.cn/gj.js (easylistchina.txt: 5254) +.ylnet.com.cn/gj\.js +# ||ylnet.com.cn/dl*.js (easylistchina.txt: 5253) +.ylnet.com.cn/dl.*\.js +# ||ylnet.com.cn/201*/rh/ (easylistchina.txt: 5252) +.ylnet.com.cn/201.*/rh/ +# ||yktj.yzz.cn^ (easylistchina.txt: 5251) +.yktj.yzz.cn +# ||yjhas.net^$image (easylistchina.txt: 5250) +.yjhas.net +# ||yizhai.net/myjs/f*.js (easylistchina.txt: 5249) +.yizhai.net/myjs/f.*\.js +# ||yiyipan.com/images/12.gif (easylistchina.txt: 5248) +.yiyipan.com/images/12\.gif +# ||yixiaoba.com/juxiao.html (easylistchina.txt: 5247) +.yixiaoba.com/juxiao\.html +# ||yixiaoba.com/js/yxb_normal.js (easylistchina.txt: 5246) +.yixiaoba.com/js/yxb_normal\.js +# ||yiweimei.net/css/logo.gif (easylistchina.txt: 5245) +.yiweimei.net/css/logo\.gif +# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina.txt: 5244) +.yinyuetai.com/proment/get-play-medias\?json=true&position=preroll +# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina.txt: 5243) +.yinyuetai.com/proment/get-play-medias\?.*&position=pauseroll +# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina.txt: 5242) +.yinyuetai.com/proment/get-play-medias\?.*&position=overlay +# ||yinyuetai.com/partner/$object-subrequest (easylistchina.txt: 5241) +.yinyuetai.com/partner/ +# ||yinhangkahao.com/go/ (easylistchina.txt: 5240) +.yinhangkahao.com/go/ +# ||yinfu.cc/sid/*.js (easylistchina.txt: 5239) +.yinfu.cc/sid/.*\.js +# ||yinduabc.com/res_base/*/makemoney/ (easylistchina.txt: 5238) +.yinduabc.com/res_base/.*/makemoney/ +# ||yimuhe.com/n_ad/ (easylistchina.txt: 5237) +.yimuhe.com/n_ad/ +# ||yimg.com/ja/ap/*_wallpaper (easylistchina.txt: 5235) +.yimg.com/ja/ap/.*_wallpaper +# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina.txt: 5234) +.yimg.com/ja/ap/.*/hk_rm_umu_ +# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina.txt: 5233) +.yimg.com/cv/ae/tw/bwchou/bubble_ +# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina.txt: 5232) +.yimg.com/cv/ae/tw/bwchou/728x210\. +# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina.txt: 5231) +.yimg.com/cv/ae/default/.*_STATIC-JPEG_ +# ||yimg.com/bf/homerun/ysm_ (easylistchina.txt: 5230) +.yimg.com/bf/homerun/ysm_ +# ||yiku51.com/xinzeng/js/ (easylistchina.txt: 5229) +.yiku51.com/xinzeng/js/ +# ||ygdy8.com/jsy/ (easylistchina.txt: 5228) +.ygdy8.com/jsy/ +# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina.txt: 5227) +.yeyou.com/2013/new/yeyou-float-window\.js +# ||yesky.com/monitorjs/imp- (easylistchina.txt: 5226) +.yesky.com/monitorjs/imp- +# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina.txt: 5225) +.yeeyi.com/bbs/api\.php\?mod=js&bid= +# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina.txt: 5224) +.ydstatic.com/fanxian/minisite/promotion/ +# ||yczbb.com/ggimg/ (easylistchina.txt: 5223) +.yczbb.com/ggimg/ +# ||ychr.com/dlad.js (easylistchina.txt: 5222) +.ychr.com/dlad\.js +# ||ybvv.com*/aimg/ (easylistchina.txt: 5221) +.ybvv.com*./(.*/)?aimg/ +# ||yb983.com/skin/yb983V2013/ad/ (easylistchina.txt: 5220) +.yb983.com/skin/yb983V2013/ad/ +# ||yawin.cn/inc/indexad.js (easylistchina.txt: 5219) +.yawin.cn/inc/indexad\.js +# ||yaolanimage.cn/cms/image/960-90 (easylistchina.txt: 5218) +.yaolanimage.cn/cms/image/960-90 +# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina.txt: 5217) +.yaolanimage.cn/assets/ask/js/ask_video_popup\.js +# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina.txt: 5216) +.yaolan.com/wenku_debris/time_debris/images/mary +# ||yaojixiu.com/960x100.gif (easylistchina.txt: 5215) +.yaojixiu.com/960x100\.gif +# ||yanu.qiniudn.com/270300.jpg (easylistchina.txt: 5214) +.yanu.qiniudn.com/270300\.jpg +# ||yanu.qiniudn.com/*x60. (easylistchina.txt: 5213) +.yanu.qiniudn.com/.*x60\. +# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina.txt: 5212) +.yanqing888.me/script/Read_Fee_Bottom\.js +# ||yanqing888.me/script/fanye (easylistchina.txt: 5211) +.yanqing888.me/script/fanye +# ||yanjiao.com/zt/indexad/ (easylistchina.txt: 5210) +.yanjiao.com/zt/indexad/ +# ||yam.com/ad_yam/ (easylistchina.txt: 5209) +.yam.com/ad_yam/ +# ||yaerwen.com/5200js/59.js (easylistchina.txt: 5208) +.yaerwen.com/5200js/59\.js +# ||y80s.org:85/upload/468-60 (easylistchina.txt: 5207) +.y80s.org:85/upload/468-60 +# ||y80s.org:85/img/960x90.gif (easylistchina.txt: 5206) +.y80s.org:85/img/960x90\.gif +# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina.txt: 5205) +.y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32\.jpg +# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina.txt: 5204) +.xz7.com/up/UploadPic/2014-5/201452517141272046\.gif +# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina.txt: 5203) +.xz7.com/up/UploadPic/2014-5/201452517124193056\.gif +# ||xz7.com/js/xia (easylistchina.txt: 5202) +.xz7.com/js/xia +# ||xz7.com/js/top2.js (easylistchina.txt: 5201) +.xz7.com/js/top2\.js +# ||xz7.com/js/jctj.js (easylistchina.txt: 5200) +.xz7.com/js/jctj\.js +# ||xz7.com/js/gg_ (easylistchina.txt: 5199) +.xz7.com/js/gg_ +# ||xz7.com/js/bann (easylistchina.txt: 5198) +.xz7.com/js/bann +# ||xz7.com/js/3000.js (easylistchina.txt: 5197) +.xz7.com/js/3000\.js +# ||xyzc.cn/js/pfgg.js (easylistchina.txt: 5196) +.xyzc.cn/js/pfgg\.js +# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina.txt: 5195) +.xyfdcw.com.cn/userfiles/flash/ +# ||xxx169.org^$third-party (easylistchina.txt: 5194) +.xxx169.org +# ||xxsy.net/js/xxsypop (easylistchina.txt: 5193) +.xxsy.net/js/xxsypop +# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina.txt: 5192) +.xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71\.jpg +# ||xxhh.com/xh.js (easylistchina.txt: 5191) +.xxhh.com/xh\.js +# ||xxdm.org/js/union/ (easylistchina.txt: 5190) +.xxdm.org/js/union/ +# ||xxdm.com/js/union/ (easylistchina.txt: 5189) +.xxdm.com/js/union/ +# ||xx978.info/images/468-60OK.gif (easylistchina.txt: 5188) +.xx978.info/images/468-60OK\.gif +# ||xv98.com/js/hengfu (easylistchina.txt: 5187) +.xv98.com/js/hengfu +# ||xv98.com/js/daohang (easylistchina.txt: 5186) +.xv98.com/js/daohang +# ||xunzai.com/www/all_common.js (easylistchina.txt: 5185) +.xunzai.com/www/all_common\.js +# ||xunzai.com/static/wwwimg/ (easylistchina.txt: 5184) +.xunzai.com/static/wwwimg/ +# ||xunzai.com/static/www/ku360300.jpg (easylistchina.txt: 5183) +.xunzai.com/static/www/ku360300\.jpg +# ||xunying.com^*/ww (easylistchina.txt: 5182) +.xunying.com/.*/ww +# ||xunleisousuo.com/byou.php (easylistchina.txt: 5181) +.xunleisousuo.com/byou\.php +# ||xunleipu.com/a-d-j-s/ (easylistchina.txt: 5180) +.xunleipu.com/a-d-j-s/ +# ||xunleihd.com/image/*maose (easylistchina.txt: 5179) +.xunleihd.com/image/.*maose +# ||xunleihao.com/a-d-j-s/ (easylistchina.txt: 5178) +.xunleihao.com/a-d-j-s/ +# ||xun9u.com/css/js/text_link.js (easylistchina.txt: 5177) +.xun9u.com/css/js/text_link\.js +# ||xue163.com/ajs/end (easylistchina.txt: 5176) +.xue163.com/ajs/end +# ||xs8.cn/xs8_stat.js (easylistchina.txt: 5175) +.xs8.cn/xs8_stat\.js +# ||xs.houyi.baofeng.net^ (easylistchina.txt: 5174) +.xs.houyi.baofeng.net +# ||xpgod.com/UploadPic/xpgod/ (easylistchina.txt: 5173) +.xpgod.com/UploadPic/xpgod/ +# ||xpgod.com/bui/ (easylistchina.txt: 5172) +.xpgod.com/bui/ +# ||xp85.com/statics/js/all.js (easylistchina.txt: 5171) +.xp85.com/statics/js/all\.js +# ||xp811.com/img/xitong.gif (easylistchina.txt: 5170) +.xp811.com/img/xitong\.gif +# ||xp510.com/skin/wdsj.gif (easylistchina.txt: 5169) +.xp510.com/skin/wdsj\.gif +# ||xntk.net^$script (easylistchina.txt: 5168) +.xntk.net +# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina.txt: 5167) +.xnnews.com.cn/templets/js/wzydl\.js +# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina.txt: 5166) +.xnnews.com.cn/templets/js/smsline_double\.js +# ||xnnews.com.cn/Templets/js/*link (easylistchina.txt: 5165) +.xnnews.com.cn/Templets/js/.*link +# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina.txt: 5164) +.xnnews.com.cn/Templets/image/zyyy\.swf +# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina.txt: 5163) +.xnnews.com.cn/templets/image/mpljj\.jpg +# ||xnnews.com.cn/templets/image/*gg (easylistchina.txt: 5162) +.xnnews.com.cn/templets/image/.*gg +# ||xnnews.com.cn/images/yr_wsm.js (easylistchina.txt: 5161) +.xnnews.com.cn/images/yr_wsm\.js +# ||xmfish.com/chanel/www/cpm.html (easylistchina.txt: 5160) +.xmfish.com/chanel/www/cpm\.html +# ||xlpu.cc/adv/ (easylistchina.txt: 5159) +.xlpu.cc/adv/ +# ||xkxs.org/js/tongji.js (easylistchina.txt: 5158) +.xkxs.org/js/tongji\.js +# ||xkxs.org/js/tl (easylistchina.txt: 5157) +.xkxs.org/js/tl +# ||xkxs.org/js/bd (easylistchina.txt: 5156) +.xkxs.org/js/bd +# ||xkhouse.com/xkhouse/ggvert/ (easylistchina.txt: 5155) +.xkhouse.com/xkhouse/ggvert/ +# ||xkhouse.com/display/displaygg/ (easylistchina.txt: 5154) +.xkhouse.com/display/displaygg/ +# ||xizi.com/js/rotator.js (easylistchina.txt: 5153) +.xizi.com/js/rotator\.js +# ||xizi.com/a/ (easylistchina.txt: 5152) +.xizi.com/a/ +# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina.txt: 5151) +.xizhongzi.net/bootstrap/dist/img/ +# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina.txt: 5150) +.xiu8.com/baidu-tieba/.*&forum_name= +# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina.txt: 5149) +.xitong8.com/theme/default/images/index_13\.jpg +# ||xitong8.com/theme/default/images/725x90.gif (easylistchina.txt: 5148) +.xitong8.com/theme/default/images/725x90\.gif +# ||xitek.com/idzone/ (easylistchina.txt: 5147) +.xitek.com/idzone/ +# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina.txt: 5146) +.xinyi.com/Template/Ant/Js/tonglang\.js +# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina.txt: 5145) +.xinyi.com/Public/config/Couplet/Index41\.js +# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina.txt: 5144) +.xinyi.com/Public/config/Couplet/Index40\.js +# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina.txt: 5143) +.xinyi.com/Public/config/Couplet/Index39\.js +# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina.txt: 5142) +.xinyi.com/Public/config/Couplet/Index100\.js +# ||xinminweekly.com.cn/images/index-985x93- (easylistchina.txt: 5141) +.xinminweekly.com.cn/images/index-985x93- +# ||xinminweekly.com.cn/images/*-banner (easylistchina.txt: 5140) +.xinminweekly.com.cn/images/.*-banner +# ||xinmin.cn/framepage/yqLink1.htm (easylistchina.txt: 5139) +.xinmin.cn/framepage/yqLink1\.htm +# ||xinmin.cn/framepage/top (easylistchina.txt: 5138) +.xinmin.cn/framepage/top +# ||xinmin.cn/framepage/left1.htm (easylistchina.txt: 5137) +.xinmin.cn/framepage/left1\.htm +# ||xinmin.cn/framepage/foot1.htm (easylistchina.txt: 5136) +.xinmin.cn/framepage/foot1\.htm +# ||xinku.tv/asd/ (easylistchina.txt: 5135) +.xinku.tv/asd/ +# ||xinjs.cn/2010/yf (easylistchina.txt: 5134) +.xinjs.cn/2010/yf +# ||xinji.org/js/float.js (easylistchina.txt: 5133) +.xinji.org/js/float\.js +# ||xinhuanet.com^*_tl_$script (easylistchina.txt: 5132) +.xinhuanet.com/.*_tl_ +# ||xinhuanet.com^*/ad_ (easylistchina.txt: 5131) +.xinhuanet.com/.*/ad_ +# ||xinhuanet.com/v2/ads/ (easylistchina.txt: 5130) +.xinhuanet.com/v2/ads/ +# ||xinhuanet.com/v/script/coupletAd.js (easylistchina.txt: 5129) +.xinhuanet.com/v/script/coupletAd\.js +# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina.txt: 5128) +.xinhuanet.com/titlepic/111243292_title1n\.jpg +# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina.txt: 5127) +.xinhuanet.com/statics/imags/zgyd_ +# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina.txt: 5126) +.xinhuanet.com/plugs/szzc630x80\.jpg +# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina.txt: 5125) +.xinhuanet.com/jjimages/jc/js/fla\.js +# ||xinhuanet.com/images2015/index980 (easylistchina.txt: 5124) +.xinhuanet.com/images2015/index980 +# ||xinhuanet.com/images/ggdl.jpg (easylistchina.txt: 5123) +.xinhuanet.com/images/ggdl\.jpg +# ||xinhuanet.com/classad/ (easylistchina.txt: 5122) +.xinhuanet.com/classad/ +# ||xinhuanet.com/adxl/ (easylistchina.txt: 5121) +.xinhuanet.com/adxl/ +# ||xinhuanet.com/2015ad/ (easylistchina.txt: 5120) +.xinhuanet.com/2015ad/ +# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina.txt: 5119) +.xinhuanet.com/2015/html2015/xhfloatAdv\.html +# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina.txt: 5118) +.xinhuanet.com/2014xb/html/if_gg\.htm +# ||xinhuanet.com/2014/imgad/ (easylistchina.txt: 5117) +.xinhuanet.com/2014/imgad/ +# ||xinhuanet.com/2014/iframe/AD- (easylistchina.txt: 5116) +.xinhuanet.com/2014/iframe/AD- +# ||xinhuanet.com/2013images/ltxl.gif (easylistchina.txt: 5115) +.xinhuanet.com/2013images/ltxl\.gif +# ||xinhuanet.com/2013images/jfzj.swf (easylistchina.txt: 5114) +.xinhuanet.com/2013images/jfzj\.swf +# ||xinhuanet.com/*/ad20 (easylistchina.txt: 5113) +.xinhuanet.com/.*/ad20 +# ||xinbiqi.com/js/pc_ads.js (easylistchina.txt: 5112) +.xinbiqi.com/js/pc_ads\.js +# ||xilu.com/js/bd.js (easylistchina.txt: 5111) +.xilu.com/js/bd\.js +# ||xilu.com/iframe/pagepic/ (easylistchina.txt: 5110) +.xilu.com/iframe/pagepic/ +# ||xilinjie.com/partner/ (easylistchina.txt: 5109) +.xilinjie.com/partner/ +# ||xigua110.com/a/ (easylistchina.txt: 5108) +.xigua110.com/a/ +# ||xiazaiba.com/uploadfiles/ads/ (easylistchina.txt: 5107) +.xiazaiba.com/uploadfiles/ads/ +# ||xiaopi.com/500/ (easylistchina.txt: 5106) +.xiaopi.com/500/ +# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina.txt: 5105) +.xiaomengku.com/static/template/cms/v3/js/activity\.js +# ||xiaoliaolianmeng.com^$subdocument (easylistchina.txt: 5104) +.xiaoliaolianmeng.com +# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina.txt: 5103) +.xiaoliaolianmeng.com/pic/weipinhui/ +# ||xiangmucangku.com/uploads/allimg/ (easylistchina.txt: 5102) +.xiangmucangku.com/uploads/allimg/ +# ||xiangai365.com/ad_js/ (easylistchina.txt: 5101) +.xiangai365.com/ad_js/ +# ||xiancn.com^*/adv_content/ (easylistchina.txt: 5100) +.xiancn.com/.*/adv_content/ +# ||xiami.com/player/iframe-adm? (easylistchina.txt: 5099) +.xiami.com/player/iframe-adm\? +# ||xhub.cn/tanchu.js (easylistchina.txt: 5098) +.xhub.cn/tanchu\.js +# ||xgrb.cn/newad/ (easylistchina.txt: 5097) +.xgrb.cn/newad/ +# ||xghylt.com/newad/ (easylistchina.txt: 5096) +.xghylt.com/newad/ +# ||xghylt.com/api.php?mod=ad&adid= (easylistchina.txt: 5095) +.xghylt.com/api\.php\?mod=ad&adid= +# ||xemh.com/other/*_ads (easylistchina.txt: 5094) +.xemh.com/other/.*_ads +# ||xdowns.com/js/lefttuijian.js (easylistchina.txt: 5093) +.xdowns.com/js/lefttuijian\.js +# ||xdowns.com/info.js (easylistchina.txt: 5092) +.xdowns.com/info\.js +# ||xdowns.com/ggco.js (easylistchina.txt: 5091) +.xdowns.com/ggco\.js +# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina.txt: 5090) +.xdkb.net/index/temp/3813\.files/banner\.jpg +# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina.txt: 5089) +.xdjishu.com/_uploadfile/image/20150722/20150722164052_98036\.gif +# ||xdf.cn/v4/js/leyus/ (easylistchina.txt: 5088) +.xdf.cn/v4/js/leyus/ +# ||xdf.cn/v4/js/adm- (easylistchina.txt: 5087) +.xdf.cn/v4/js/adm- +# ||xdf.cn/v4/images/index/ads/ (easylistchina.txt: 5086) +.xdf.cn/v4/images/index/ads/ +# ||xdcad.net/source/plugin/disad/disad.js (easylistchina.txt: 5085) +.xdcad.net/source/plugin/disad/disad\.js +# ||xczhibo.com/xml/ (easylistchina.txt: 5084) +.xczhibo.com/xml/ +# ||xc.macd.cn^ (easylistchina.txt: 5083) +.xc.macd.cn +# ||xb2s.com:8080/mjq.js (easylistchina.txt: 5082) +.xb2s.com:8080/mjq\.js +# ||xav*.com/js/float.js (easylistchina.txt: 5081) +.xav*./.*\.com/js/float\.js +.xav*.com/js/float\.js +# ||xav*.com/attachment/Mon_ (easylistchina.txt: 5080) +.xav*./.*\.com/attachment/Mon_ +.xav*.com/attachment/Mon_ +# ||xav*.com/ad1/ (easylistchina.txt: 5079) +.xav*./.*\.com/ad1/ +.xav*.com/ad1/ +# ||x.jd.com/static/js/cpc.js (easylistchina.txt: 5078) +.x.jd.com/static/js/cpc\.js +# ||x.jd.com/static/js/auto.js (easylistchina.txt: 5077) +.x.jd.com/static/js/auto\.js +# ||x.itiexue.net/html/$script (easylistchina.txt: 5076) +.x.itiexue.net/html/ +# ||wzbh.org/imgad/ (easylistchina.txt: 5075) +.wzbh.org/imgad/ +# ||wyzu.cn/js/3.js (easylistchina.txt: 5074) +.wyzu.cn/js/3\.js +# ||wyh.tv/image/upload/ad/ (easylistchina.txt: 5073) +.wyh.tv/image/upload/ad/ +# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina.txt: 5072) +.wxrb.com/g/js/baidu\.cbjs\.m\.js +# ||wxdown.net/images/*.gif (easylistchina.txt: 5071) +.wxdown.net/images/.*\.gif +# ||wx.sina.com.cn/iframe/pdps/ (easylistchina.txt: 5070) +.wx.sina.com.cn/iframe/pdps/ +# ||wx.56.com/youxitg/ (easylistchina.txt: 5069) +.wx.56.com/youxitg/ +# ||wwwcdn.kimiss.net/btn/ (easylistchina.txt: 5068) +.wwwcdn.kimiss.net/btn/ +# ||www.111cn.net/pic/ (easylistchina.txt: 5066) +.www.111cn.net/pic/ +# ||www-dnwx-com.anquanbao.cn/pic (easylistchina.txt: 5065) +.www-dnwx-com.anquanbao.cn/pic +# ||wuyou.*/0000/banner.gif (easylistchina.txt: 5064) +.wuyou.*./(.*/)?0000/banner\.gif +# ||wuxi.cn/index.php?m=poster& (easylistchina.txt: 5063) +.wuxi.cn/index\.php\?m=poster& +# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina.txt: 5062) +.wuseng.com/templets/default/statics/js/mm\.js +# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina.txt: 5061) +.wumii.com/ext/widget/hot\.htm\?prefix=http://blog\.const\.net\.cn& +# ||wumii.cn/site_images/c/ (easylistchina.txt: 5060) +.wumii.cn/site_images/c/ +# ||wuhan.net.cn/show.html (easylistchina.txt: 5059) +.wuhan.net.cn/show\.html +# ||wuhan.net.cn/guanggaojs/ (easylistchina.txt: 5058) +.wuhan.net.cn/guanggaojs/ +# ||wudilong.com/ssb/include/js/php.js (easylistchina.txt: 5057) +.wudilong.com/ssb/include/js/php\.js +# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina.txt: 5056) +.wszhibo.com/xml/tvAdtext\.ashx +# ||wszhibo.com/Uploadfiles/*.gif (easylistchina.txt: 5055) +.wszhibo.com/Uploadfiles/.*\.gif +# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina.txt: 5054) +.wpjam.qiniudn.com/wpjam/banner/.*g$ +# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina.txt: 5053) +.woxiu.com/xapi/offsite_swf_more\.php\? +# ||woxiu.com/xapi/get_pre_config.php (easylistchina.txt: 5052) +.woxiu.com/xapi/get_pre_config\.php +# ||wowody.net/public/wowo/2345.html (easylistchina.txt: 5051) +.wowody.net/public/wowo/2345\.html +# ||wowody.net/public/wowo/*play_ (easylistchina.txt: 5050) +.wowody.net/public/wowo/.*play_ +# ||woshipm.com/wp-files/*qidian (easylistchina.txt: 5049) +.woshipm.com/wp-files/.*qidian +# ||wo318.com/template/ (easylistchina.txt: 5048) +.wo318.com/template/ +# ||wo318.com/sjs/km/xixitv.js (easylistchina.txt: 5047) +.wo318.com/sjs/km/xixitv\.js +# ||wo318.com/good/ (easylistchina.txt: 5046) +.wo318.com/good/ +# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina.txt: 5045) +.wlnews.zjol.com.cn/wlrb/bbs/ +# ||wlnews.zjol.com.cn/bbs/ (easylistchina.txt: 5044) +.wlnews.zjol.com.cn/bbs/ +# ||wishdown.com/images/*.gif (easylistchina.txt: 5043) +.wishdown.com/images/.*\.gif +# ||winvvv.com^$subdocument (easylistchina.txt: 5042) +.winvvv.com +# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina.txt: 5041) +.winba.me/wp-content/uploads/2015/10/image\.jpg +# ||winba.me/wp-content/uploads/*/QQ% (easylistchina.txt: 5040) +.winba.me/wp-content/uploads/.*/QQ% +# ||winba.me/wp-content/uploads/*/300x300. (easylistchina.txt: 5039) +.winba.me/wp-content/uploads/.*/300x300\. +# ||whsfzx.com/jj/ (easylistchina.txt: 5038) +.whsfzx.com/jj/ +# ||whsfzx.com/img/top.js (easylistchina.txt: 5037) +.whsfzx.com/img/top\.js +# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina.txt: 5036) +.whqyw.com/file/upload/201408/01/09-41-45-92-1\.jpg +# ||wholehk.com/madads$subdocument (easylistchina.txt: 5035) +.wholehk.com/madads +# ||whnews.cn/wh_public/dl/ (easylistchina.txt: 5034) +.whnews.cn/wh_public/dl/ +# ||whnews.cn/news/data/*/pf.js (easylistchina.txt: 5033) +.whnews.cn/news/data/.*/pf\.js +# ||whinfo.net.cn/ad20 (easylistchina.txt: 5032) +.whinfo.net.cn/ad20 +# ||wgun.net/data/yahoo_ad.html (easylistchina.txt: 5031) +.wgun.net/data/yahoo_ad\.html +# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina.txt: 5030) +.wfcmw.cn/cmw_2015/ad/flash/ +# ||weste.net/js/showpagead.js (easylistchina.txt: 5029) +.weste.net/js/showpagead\.js +# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina.txt: 5028) +.wenyoutai.com/template/comiis_xwyt/ads/ +# ||wenxuecity.com/service/ad/ (easylistchina.txt: 5027) +.wenxuecity.com/service/ad/ +# ||wenwo.com^*/js/common/adAudit. (easylistchina.txt: 5026) +.wenwo.com/.*/js/common/adAudit\. +# ||wenku8.com/banner.jpg (easylistchina.txt: 5025) +.wenku8.com/banner\.jpg +# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina.txt: 5024) +.wendu.cn/templates/wzdsb/js/yanue\.pop\.js +# ||wendellyu.com/banner/ (easylistchina.txt: 5023) +.wendellyu.com/banner/ +# ||weixin.qqday.com/js/tj.js (easylistchina.txt: 5022) +.weixin.qqday.com/js/tj\.js +# ||weixin.qqday.com/js/rb.js (easylistchina.txt: 5021) +.weixin.qqday.com/js/rb\.js +# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina.txt: 5020) +.weiqitv.com/Uploads/20140721/53cca3becc50b\.jpg +# ||weiqitv.com/Uploads/185_440_ (easylistchina.txt: 5019) +.weiqitv.com/Uploads/185_440_ +# ||weiqitv.com/Public/img/kt.jpg (easylistchina.txt: 5018) +.weiqitv.com/Public/img/kt\.jpg +# ||weidea.net/wp-content/host_ads.png (easylistchina.txt: 5017) +.weidea.net/wp-content/host_ads\.png +# ||weidea.net/wp-content/ads_img/ (easylistchina.txt: 5016) +.weidea.net/wp-content/ads_img/ +# ||weibo.com/images/ad_ (easylistchina.txt: 5015) +.weibo.com/images/ad_ +# ||wei2008.com/js/t_win (easylistchina.txt: 5014) +.wei2008.com/js/t_win +# ||wei2008.com/js/list_gg.js (easylistchina.txt: 5013) +.wei2008.com/js/list_gg\.js +# ||wei2008.com/js/index_ (easylistchina.txt: 5012) +.wei2008.com/js/index_ +# ||wei2008.com/js/img (easylistchina.txt: 5011) +.wei2008.com/js/img +# ||wei2008.com/js/down (easylistchina.txt: 5010) +.wei2008.com/js/down +# ||wei2008.com/js/copyright (easylistchina.txt: 5009) +.wei2008.com/js/copyright +# ||wei2008.com/js/960X90 (easylistchina.txt: 5008) +.wei2008.com/js/960X90 +# ||wehefei.com/uploadfile/flashad/ (easylistchina.txt: 5007) +.wehefei.com/uploadfile/flashad/ +# ||wehefei.com/htmlphp/tmall/ (easylistchina.txt: 5006) +.wehefei.com/htmlphp/tmall/ +# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina.txt: 5005) +.weeiy.com/wp-content/uploads/2013/12/2345ie\.jpg +# ||webkaka.com/script/duilian_ (easylistchina.txt: 5004) +.webkaka.com/script/duilian_ +# ||webkaka.com*/click/$image (easylistchina.txt: 5003) +.webkaka.com*./(.*/)?click/ +# ||webjx.com/zanzhushang/ (easylistchina.txt: 5002) +.webjx.com/zanzhushang/ +# ||webacg.com/http/js/1.js (easylistchina.txt: 5001) +.webacg.com/http/js/1\.js +# ||webacg.com/data/js/ (easylistchina.txt: 5000) +.webacg.com/data/js/ +# ||web.900.la^ (easylistchina.txt: 4999) +.web.900.la +# ||weathercn.com/m_mobile/ad_image/ (easylistchina.txt: 4998) +.weathercn.com/m_mobile/ad_image/ +# ||we54.com/poster/ (easylistchina.txt: 4997) +.we54.com/poster/ +# ||we54.com/54index_ad/ (easylistchina.txt: 4996) +.we54.com/54index_ad/ +# ||wdown.cn/falala/ (easylistchina.txt: 4995) +.wdown.cn/falala/ +# ||wdlm.cn/img/ad1/ (easylistchina.txt: 4994) +.wdlm.cn/img/ad1/ +# ||wd147.com/templets/mm/js/cs.js (easylistchina.txt: 4993) +.wd147.com/templets/mm/js/cs\.js +# ||wbzol.com/show/images/show.htm (easylistchina.txt: 4992) +.wbzol.com/show/images/show\.htm +# ||wanwan.sina.com.cn/third_party/ (easylistchina.txt: 4991) +.wanwan.sina.com.cn/third_party/ +# ||wannianli.com.cn/style/ad_ (easylistchina.txt: 4990) +.wannianli.com.cn/style/ad_ +# ||wangyouxs.com/A/$script (easylistchina.txt: 4989) +.wangyouxs.com/A/ +# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina.txt: 4988) +.wangpanwu.com/images/zhuolaoshigg\.gif +# ||wangpanwu.com/images/*guanggao (easylistchina.txt: 4987) +.wangpanwu.com/images/.*guanggao +# ||wangjing.cn/upload/ftp/ad/ (easylistchina.txt: 4986) +.wangjing.cn/upload/ftp/ad/ +# ||wangjing.cn/images/js/YlFloat.js (easylistchina.txt: 4985) +.wangjing.cn/images/js/YlFloat\.js +# ||wangjing.cn/iframe/zhounian.php? (easylistchina.txt: 4984) +.wangjing.cn/iframe/zhounian\.php\? +# ||wangjing.cn*/upload/com/ (easylistchina.txt: 4983) +.wangjing.cn*./(.*/)?upload/com/ +# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina.txt: 4982) +.wanghualang.com/wp-content/gallery/thumbnail/.*-ad\. +# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina.txt: 4981) +.wanghualang.com/wp-content/gallery/resource/wp\.png +# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina.txt: 4980) +.wanghualang.com/wp-content/gallery/resource/Aliyun- +# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina.txt: 4979) +.wangdaizhijia.com/data/attachment/portal/ +# ||wan.sogou.com/static/fragment/ (easylistchina.txt: 4977) +.wan.sogou.com/static/fragment/ +# ||wan.sogou.com/pop/ (easylistchina.txt: 4976) +.wan.sogou.com/pop/ +# ||wan.sogou.com/cdn/$subdocument (easylistchina.txt: 4975) +.wan.sogou.com/cdn/ +# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina.txt: 4973) +.wa.kuwo.cn/lyrics/img/kwgg/ +# ||w010w.com.cn^$subdocument (easylistchina.txt: 4972) +.w010w.com.cn +# ||vvvdj.com/sms/ (easylistchina.txt: 4971) +.vvvdj.com/sms/ +# ||vvshu.com/images/cp_ (easylistchina.txt: 4970) +.vvshu.com/images/cp_ +# ||vvpan.com^*/zsz (easylistchina.txt: 4969) +.vvpan.com/.*/zsz +# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina.txt: 4968) +.vvpan.com/templates/32666/imgs/down001\.gif +# ||vupload.duowan.com^ (easylistchina.txt: 4967) +.vupload.duowan.com +# ||vpser.b0.upaiyun.com^$image (easylistchina.txt: 4966) +.vpser.b0.upaiyun.com +# ||voc.com.cn/Frame/qqms_cs.html (easylistchina.txt: 4965) +.voc.com.cn/Frame/qqms_cs\.html +# ||voc.com.cn/adsClick/ (easylistchina.txt: 4964) +.voc.com.cn/adsClick/ +# ||vnet.cn^*.html (easylistchina.txt: 4963) +.vnet.cn/.*\.html +# ||vkeke.net/public/agd (easylistchina.txt: 4962) +.vkeke.net/public/agd +# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina.txt: 4961) +.vjie.com/templates/lieqi/js/_banner\.js +# ||vista.tuwan.com/s.js (easylistchina.txt: 4960) +.vista.tuwan.com/s\.js +# ||vista.tgbusdata.cn/s.js (easylistchina.txt: 4959) +.vista.tgbusdata.cn/s\.js +# ||vista.tgbus.com/s.js (easylistchina.txt: 4958) +.vista.tgbus.com/s\.js +# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina.txt: 4957) +.vista.tgbus.com/data\.ashx[^\w%.-].*_SINGLE_SETJSONADSLOT +# ||visit-japan.jp/parts/visitjapan_f35_170_170.jpg (easylistchina.txt: 4956) +.visit-japan.jp/parts/visitjapan_f35_170_170\.jpg +# ||vipcn.com/images/jk500.gif (easylistchina.txt: 4955) +.vipcn.com/images/jk500\.gif +# ||vipcn.com/images/cfdh*.gif (easylistchina.txt: 4954) +.vipcn.com/images/cfdh.*\.gif +# ||vipcn.com/hezuo/ (easylistchina.txt: 4953) +.vipcn.com/hezuo/ +# ||vip.luanren.com/data/*.swf (easylistchina.txt: 4952) +.vip.luanren.com/data/.*\.swf +# ||videowood.tv/popjavascript (easylistchina.txt: 4951) +.videowood.tv/popjavascript +# ||videowood.me/assets/js/popup.js (easylistchina.txt: 4950) +.videowood.me/assets/js/popup\.js +# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina.txt: 4949) +.videospeedy.com/Res/images/wuy0u\.jpg +# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4948) +.video.sdo.com/index\.php\?m=poster&c=index&a=show_poster&id= +# ||vhiphop.qiniudn.com/cloth (easylistchina.txt: 4947) +.vhiphop.qiniudn.com/cloth +# ||vgugu.com/iframes/xp- (easylistchina.txt: 4946) +.vgugu.com/iframes/xp- +# ||verypsp.com:8081/sy.jpg (easylistchina.txt: 4945) +.verypsp.com:8081/sy\.jpg +# ||veryim.net^*/1111 (easylistchina.txt: 4944) +.veryim.net/.*/1111 +# ||veryhuo.com/plus/js/ (easylistchina.txt: 4943) +.veryhuo.com/plus/js/ +# ||vdisk.cn/img/dcr2.gif (easylistchina.txt: 4942) +.vdisk.cn/img/dcr2\.gif +# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina.txt: 4941) +.vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49\.gif +# ||vas.funshion.com^ (easylistchina.txt: 4940) +.vas.funshion.com +# ||vansky.com/index_files/*.gif (easylistchina.txt: 4939) +.vansky.com/index_files/.*\.gif +# ||vansky.com/images/goldenflat2.jpg (easylistchina.txt: 4938) +.vansky.com/images/goldenflat2\.jpg +# ||vansky.com/images/banner.gif (easylistchina.txt: 4937) +.vansky.com/images/banner\.gif +# ||vanpeople.com/images_site/adb/ (easylistchina.txt: 4936) +.vanpeople.com/images_site/adb/ +# ||vanpeople.com/ad$subdocument (easylistchina.txt: 4935) +.vanpeople.com/ad +# ||van698.com/api.php?mod=js&bid=369 (easylistchina.txt: 4934) +.van698.com/api\.php\?mod=js&bid=369 +# ||v8gay.com/apps/misc.php?action=advert& (easylistchina.txt: 4933) +.v8gay.com/apps/misc\.php\?action=advert& +# ||v1.cn/cms/*/js/ad_new.js (easylistchina.txt: 4932) +.v1.cn/cms/.*/js/ad_new\.js +# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina.txt: 4931) +.v.huanqiu.com/tres/xml/vda\.xml +# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina.txt: 4930) +.v.beta.yinyuetai.com/swf/plugins_new\.xml\? +# ||v-56.com^ (easylistchina.txt: 4929) +.v-56.com +# ||uzzf.com/js/top_970.js (easylistchina.txt: 4928) +.uzzf.com/js/top_970\.js +# ||uzzf.com/js/down_ (easylistchina.txt: 4927) +.uzzf.com/js/down_ +# ||uzzf.com/js/all.js (easylistchina.txt: 4926) +.uzzf.com/js/all\.js +# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina.txt: 4925) +.uwants.com/dfp_forum\.php\?au=Uwants_Web_ +# ||uuu9.tieba.com^$subdocument (easylistchina.txt: 4924) +.uuu9.tieba.com +# ||uuu9.com/yoyo_ (easylistchina.txt: 4923) +.uuu9.com/yoyo_ +# ||uuu9.com/stat/shouye/ (easylistchina.txt: 4922) +.uuu9.com/stat/shouye/ +# ||uuu9.com/news/css/news_content_in.js (easylistchina.txt: 4921) +.uuu9.com/news/css/news_content_in\.js +# ||uuu9.com/360adtest/ (easylistchina.txt: 4919) +.uuu9.com/360adtest/ +# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina.txt: 4918) +.uschinapress.com/2015/0115/1421375153170\.gif +# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina.txt: 4917) +.uschinapress.com/2014/0922/1411428929105\.png +# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina.txt: 4916) +.uschinapress.com/2014/0702/1404347291600\.gif +# ||upload.jjxw.cn^*.swf (easylistchina.txt: 4913) +.upload.jjxw.cn/.*\.swf +# ||upantool.com/playing/ (easylistchina.txt: 4911) +.upantool.com/playing/ +# ||upan.so/templates/default/images/sir.gif (easylistchina.txt: 4910) +.upan.so/templates/default/images/sir\.gif +# ||upan.cc/images/pay/ (easylistchina.txt: 4909) +.upan.cc/images/pay/ +# ||upaiyun.com/css88/*/728 (easylistchina.txt: 4908) +.upaiyun.com/css88/.*/728 +# ||upaiyun.com/css88/*/680 (easylistchina.txt: 4907) +.upaiyun.com/css88/.*/680 +# ||upaiyun.com/css88/*/250 (easylistchina.txt: 4906) +.upaiyun.com/css88/.*/250 +# ||upaiyun.com/css88/*/1008 (easylistchina.txt: 4905) +.upaiyun.com/css88/.*/1008 +# ||up.qingdaonews.com/up/$object,script (easylistchina.txt: 4904) +.up.qingdaonews.com/up/ +# ||up.hiao.com^ (easylistchina.txt: 4903) +.up.hiao.com +# ||untitled.dwstatic.com^ (easylistchina.txt: 4902) +.untitled.dwstatic.com +# ||union.china.com.cn^ (easylistchina.txt: 4901) +.union.china.com.cn +# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina.txt: 4900) +.uisdc.com/wp-content/uploads/2013/08/sitestar +# ||uho.com.tw^$subdocument (easylistchina.txt: 4899) +.uho.com.tw +# ||uho.com.tw/kid-ad/ (easylistchina.txt: 4898) +.uho.com.tw/kid-ad/ +# ||uho.com.tw/images/rosewater.jpg (easylistchina.txt: 4897) +.uho.com.tw/images/rosewater\.jpg +# ||uedfa.net/Static/imgs/affiliate/ (easylistchina.txt: 4896) +.uedfa.net/Static/imgs/affiliate/ +# ||udn.com^*/ad/ (easylistchina.txt: 4895) +.udn.com/.*/ad/ +# ||udn.com/SSI/neckFrame (easylistchina.txt: 4894) +.udn.com/SSI/neckFrame +# ||udn.com/common/iframe/ (easylistchina.txt: 4893) +.udn.com/common/iframe/ +# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina.txt: 4892) +.udn.com/2010MAIN/inc/t03-CMS\.html +# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina.txt: 4891) +.udn.com.tw/upf/2014_sales/travel/cheesead\.html +# ||ucbug.com/templets/default/js/sharp.js (easylistchina.txt: 4890) +.ucbug.com/templets/default/js/sharp\.js +# ||ucbug.com/js/tongl.js (easylistchina.txt: 4889) +.ucbug.com/js/tongl\.js +# ||ucbug.com/js/tlys.js (easylistchina.txt: 4888) +.ucbug.com/js/tlys\.js +# ||ucbug.com/js/left.js (easylistchina.txt: 4887) +.ucbug.com/js/left\.js +# ||uc8.cc/_style/2013/js/all.js (easylistchina.txt: 4886) +.uc8.cc/_style/2013/js/all\.js +# ||u8xs.com/js/yuedu_ (easylistchina.txt: 4885) +.u8xs.com/js/yuedu_ +# ||u8xs.com/js/box_ (easylistchina.txt: 4884) +.u8xs.com/js/box_ +# ||u148.net/images/sponsor- (easylistchina.txt: 4883) +.u148.net/images/sponsor- +# ||u.riju.com/click.php (easylistchina.txt: 4882) +.u.riju.com/click\.php +# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina.txt: 4881) +.u.ctrip.com/showcaseadvertisementsit/ +# ||u.cnzol.com^ (easylistchina.txt: 4880) +.u.cnzol.com +# ||u.63kc.com^ (easylistchina.txt: 4879) +.u.63kc.com +# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina.txt: 4878) +.tzfdc.com/Images/09/flv/flv_index\.js +# ||tzfdc.com/fdcSell/ (easylistchina.txt: 4877) +.tzfdc.com/fdcSell/ +# ||tzfdc.com.cn/userfiles/flash/ (easylistchina.txt: 4876) +.tzfdc.com.cn/userfiles/flash/ +# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina.txt: 4875) +.tyyhhdf.com/upload/1/148781/images/2015.*\.gif +# ||ty121.cn/IAA/ (easylistchina.txt: 4874) +.ty121.cn/IAA/ +# ||txzqw.com/js/float.js (easylistchina.txt: 4873) +.txzqw.com/js/float\.js +# ||txtyd.com/js/*box.js (easylistchina.txt: 4872) +.txtyd.com/js/.*box\.js +# ||txtbbs.com/data/txtbbs/ (easylistchina.txt: 4871) +.txtbbs.com/data/txtbbs/ +# ||txooo.com^*/zdl.jpg (easylistchina.txt: 4870) +.txooo.com/.*/zdl\.jpg +# ||txooo.com^*/ydl.jpg (easylistchina.txt: 4869) +.txooo.com/.*/ydl\.jpg +# ||txahz.com/static/image/tp/ (easylistchina.txt: 4868) +.txahz.com/static/image/tp/ +# ||twunbbs.com/images/ (easylistchina.txt: 4867) +.twunbbs.com/images/ +# ||twfuwu.info^*.gif (easylistchina.txt: 4866) +.twfuwu.info/.*\.gif +# ||twavtv.com/js/jquery.colorbox (easylistchina.txt: 4865) +.twavtv.com/js/jquery\.colorbox +# ||tw.buy.yahoo.com/?z= (easylistchina.txt: 4863) +.tw.buy.yahoo.com/\?z= +# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina.txt: 4862) +.tw.beanfun.com/bfweb/NEW/commonlogin +# ||tvnmg.com/banner/ (easylistchina.txt: 4861) +.tvnmg.com/banner/ +# ||tvf4.com^$subdocument (easylistchina.txt: 4860) +.tvf4.com +# ||tvf4.com/1/mugua.js (easylistchina.txt: 4859) +.tvf4.com/1/mugua\.js +# ||tv6080.com/qqt/ (easylistchina.txt: 4858) +.tv6080.com/qqt/ +# ||tv6080.com/520/index.htm (easylistchina.txt: 4857) +.tv6080.com/520/index\.htm +# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina.txt: 4856) +.tv380.com/ovp/ovp_home/.*/adi/ +# ||tuwan.com/templet/lol/temp/ (easylistchina.txt: 4855) +.tuwan.com/templet/lol/temp/ +# ||tui22.com/images/g.js (easylistchina.txt: 4854) +.tui22.com/images/g\.js +# ||tui22.com/images/dibu.js (easylistchina.txt: 4853) +.tui22.com/images/dibu\.js +# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina.txt: 4852) +.tui18.com/source/plugin/yl_curtain/template/yl_curtain\. +# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina.txt: 4851) +.tuhaoylw.com/upload/1/18591636/images/.*\.gif +# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina.txt: 4850) +.tudouui.com/tspecial/assets/PauseContainer\.swf +# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4849) +.tucao.tv/index\.php\?m=poster&c=index&a=show_poster&id= +# ||tucao.cc/index.php?m=poster& (easylistchina.txt: 4848) +.tucao.cc/index\.php\?m=poster& +# ||tuan.cs090.com/gettuan.php? (easylistchina.txt: 4847) +.tuan.cs090.com/gettuan\.php\? +# ||ttrar.com/js/ (easylistchina.txt: 4846) +.ttrar.com/js/ +# ||ttkdex.com/ttkdweb/page/image/query (easylistchina.txt: 4845) +.ttkdex.com/ttkdweb/page/image/query +# ||ttcy.com/style/image/gg_ (easylistchina.txt: 4844) +.ttcy.com/style/image/gg_ +# ||tt7z.com/js/ (easylistchina.txt: 4843) +.tt7z.com/js/ +# ||tt1069.com/bbs/zgg_ (easylistchina.txt: 4842) +.tt1069.com/bbs/zgg_ +# ||ts.cn^*/site1/$object (easylistchina.txt: 4841) +.ts.cn/.*/site1/ +# ||tp.sgcn.com^ (easylistchina.txt: 4840) +.tp.sgcn.com +# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina.txt: 4839) +.totuwo.com/wp-content/uploads/20.*\.gif +# ||totheglory.im/pic/ttg_ (easylistchina.txt: 4838) +.totheglory.im/pic/ttg_ +# ||totheglory.im/pic/ttg- (easylistchina.txt: 4837) +.totheglory.im/pic/ttg- +# ||totheglory.im/pic/fangtuo.jpg (easylistchina.txt: 4836) +.totheglory.im/pic/fangtuo\.jpg +# ||tonnn.com/promotion2/*.js (easylistchina.txt: 4834) +.tonnn.com/promotion2/.*\.js +# ||tongzhuo100.com/img/jianzhi.gif (easylistchina.txt: 4833) +.tongzhuo100.com/img/jianzhi\.gif +# ||tompda.com^$object (easylistchina.txt: 4832) +.tompda.com +# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina.txt: 4831) +.tompda.com/tupian/2013-03-15/300\.jpg +# ||tompda.com/images/2014/800*.gif (easylistchina.txt: 4830) +.tompda.com/images/2014/800.*\.gif +# ||tompda.com/dev/bbsadv/ (easylistchina.txt: 4829) +.tompda.com/dev/bbsadv/ +# ||tom.com/templets/tomwq/ad/ (easylistchina.txt: 4828) +.tom.com/templets/tomwq/ad/ +# ||toastoven.net/cdn/adx/ (easylistchina.txt: 4827) +.toastoven.net/cdn/adx/ +# ||tntdown.com/News/js/C_ (easylistchina.txt: 4826) +.tntdown.com/News/js/C_ +# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina.txt: 4825) +.tmbbs.com/data/attachment/portal/.*\.swf +# ||tk.504pk.com^ (easylistchina.txt: 4824) +.tk.504pk.com +# ||tjzan.com/wxpic/asianyi.gif (easylistchina.txt: 4823) +.tjzan.com/wxpic/asianyi\.gif +# ||tingvoa.com/images/top_600_80.js (easylistchina.txt: 4821) +.tingvoa.com/images/top_600_80\.js +# ||tingvoa.com/images/*img.js (easylistchina.txt: 4820) +.tingvoa.com/images/.*img\.js +# ||tingroom.com/tingroom/ad/ (easylistchina.txt: 4819) +.tingroom.com/tingroom/ad/ +# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina.txt: 4818) +.tingroom.com/skin/pt/images/tingroombanner\.gif +# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina.txt: 4817) +.tingroom.com/skin/dy/images/enread\.jpg +# ||tingroom.com/skin/dy/images/2400200 (easylistchina.txt: 4816) +.tingroom.com/skin/dy/images/2400200 +# ||tingroom.com/skin/*/js/ad_ (easylistchina.txt: 4815) +.tingroom.com/skin/.*/js/ad_ +# ||tingroom.com/images/z923.js (easylistchina.txt: 4814) +.tingroom.com/images/z923\.js +# ||tingroom.com/images/qsbdc.gif (easylistchina.txt: 4813) +.tingroom.com/images/qsbdc\.gif +# ||tingroom.com/images/hy*.js (easylistchina.txt: 4812) +.tingroom.com/images/hy.*\.js +# ||tingroom.com/file/A*.js (easylistchina.txt: 4811) +.tingroom.com/file/A.*\.js +# ||tingchina.com/js/dp468 (easylistchina.txt: 4810) +.tingchina.com/js/dp468 +# ||tingchina.com/js/allad.js (easylistchina.txt: 4809) +.tingchina.com/js/allad\.js +# ||tingchina.com/js/990 (easylistchina.txt: 4808) +.tingchina.com/js/990 +# ||tingchina.com/js/760 (easylistchina.txt: 4807) +.tingchina.com/js/760 +# ||tingchina.com/js/*220- (easylistchina.txt: 4806) +.tingchina.com/js/.*220- +# ||timedg.com/hfhtml/baiduad.html? (easylistchina.txt: 4805) +.timedg.com/hfhtml/baiduad\.html\? +# ||tigtag.com/ttad/ (easylistchina.txt: 4804) +.tigtag.com/ttad/ +# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina.txt: 4803) +.tigtag.com/styles/phpcms/js/tigtag/ads\.js +# ||tigtag.com/r/Adv/ (easylistchina.txt: 4802) +.tigtag.com/r/Adv/ +# ||tigtag.com/images/pic1/ (easylistchina.txt: 4801) +.tigtag.com/images/pic1/ +# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina.txt: 4800) +.tigerbrokers.com/activity/quotation/cnbeta/ +# ||tiexue.net/tsetforiph/ (easylistchina.txt: 4799) +.tiexue.net/tsetforiph/ +# ||tiexue.net/test*.aspx (easylistchina.txt: 4798) +.tiexue.net/test.*\.aspx +# ||tiexue.net/post2gg/ (easylistchina.txt: 4797) +.tiexue.net/post2gg/ +# ||tiexue.net/domain-policy/ (easylistchina.txt: 4796) +.tiexue.net/domain-policy/ +# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina.txt: 4792) +.tietuku.com/0bb9bfe57636dc55\.jpg +# ||tieba.baidu.com/f/urlcheck? (easylistchina.txt: 4791) +.tieba.baidu.com/f/urlcheck\? +# ||tibet.news.cn/zhuye/images/wangqun (easylistchina.txt: 4790) +.tibet.news.cn/zhuye/images/wangqun +# ||tianyaui.com/qy/adsame/ads.js (easylistchina.txt: 4789) +.tianyaui.com/qy/adsame/ads\.js +# ||tianyaui.com/gamify/broadcast/js/ (easylistchina.txt: 4788) +.tianyaui.com/gamify/broadcast/js/ +# ||tianya.cn/images/ad950x90.jpg (easylistchina.txt: 4787) +.tianya.cn/images/ad950x90\.jpg +# ||tiantiandy.com/ad-js/ (easylistchina.txt: 4786) +.tiantiandy.com/ad-js/ +# ||tiantian.tv/sda/$image (easylistchina.txt: 4785) +.tiantian.tv/sda/ +# ||tiantian.tv/js/banner.js (easylistchina.txt: 4784) +.tiantian.tv/js/banner\.js +# ||tiantian.tv/api/autosda.php (easylistchina.txt: 4783) +.tiantian.tv/api/autosda\.php +# ||tiansin.com/wp-adsense/ (easylistchina.txt: 4782) +.tiansin.com/wp-adsense/ +# ||tianshui.com.cn/yb.html (easylistchina.txt: 4781) +.tianshui.com.cn/yb\.html +# ||tianshui.com.cn/sd.swf (easylistchina.txt: 4780) +.tianshui.com.cn/sd\.swf +# ||tianshui.com.cn/Scripts/AC_ (easylistchina.txt: 4779) +.tianshui.com.cn/Scripts/AC_ +# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina.txt: 4778) +.tianshui.com.cn/newimages/xhglj\.swf +# ||tianshui.com.cn/newbg.jpg (easylistchina.txt: 4777) +.tianshui.com.cn/newbg\.jpg +# ||tianshi2.com/images/ (easylistchina.txt: 4776) +.tianshi2.com/images/ +# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina.txt: 4775) +.tianqi.com/templates/huoche/js/hcgg\.js +# ||tianqi.com/static/js/gg (easylistchina.txt: 4774) +.tianqi.com/static/js/gg +# ||tianqi.com/js/gg.js (easylistchina.txt: 4773) +.tianqi.com/js/gg\.js +# ||tianmu.com/js/qq.js (easylistchina.txt: 4772) +.tianmu.com/js/qq\.js +# ||tianmu.com/abbsd/ (easylistchina.txt: 4771) +.tianmu.com/abbsd/ +# ||tianjinwe.com/together/szbz/ (easylistchina.txt: 4770) +.tianjinwe.com/together/szbz/ +# ||tianjinwe.com/images/qssx/ (easylistchina.txt: 4769) +.tianjinwe.com/images/qssx/ +# ||tianjimedia.com/s?z= (easylistchina.txt: 4768) +.tianjimedia.com/s\?z= +# ||thisav.com/windowfiles/dhtmlwindow (easylistchina.txt: 4767) +.thisav.com/windowfiles/dhtmlwindow +# ||thisav.com/js/*float (easylistchina.txt: 4766) +.thisav.com/js/.*float +# ||thethirdmedia.com/a1/*960x (easylistchina.txt: 4765) +.thethirdmedia.com/a1/.*960x +# ||tgbus.com/sf/taobao/ (easylistchina.txt: 4764) +.tgbus.com/sf/taobao/ +# ||tgbus.com/search/article_endcontent_google.htm (easylistchina.txt: 4763) +.tgbus.com/search/article_endcontent_google\.htm +# ||tg.delnapb.com^ (easylistchina.txt: 4762) +.tg.delnapb.com +# ||tfg2.com/images/upfile/AD/ (easylistchina.txt: 4761) +.tfg2.com/images/upfile/AD/ +# ||tf.360.cn^ (easylistchina.txt: 4760) +.tf.360.cn +# ||techweb.com.cn^*aliyun (easylistchina.txt: 4759) +.techweb.com.cn/.*aliyun +# ||tcmap.com.cn/js/b_ (easylistchina.txt: 4758) +.tcmap.com.cn/js/b_ +# ||tc.cn/news/images/right.jpg (easylistchina.txt: 4757) +.tc.cn/news/images/right\.jpg +# ||tc.cn/news/images/h.jpg (easylistchina.txt: 4756) +.tc.cn/news/images/h\.jpg +# ||tc.cn/g/upload/ (easylistchina.txt: 4755) +.tc.cn/g/upload/ +# ||tc.cn/g/dl.ashx? (easylistchina.txt: 4754) +.tc.cn/g/dl\.ashx\? +# ||tc.cn/ad123/ (easylistchina.txt: 4753) +.tc.cn/ad123/ +# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina.txt: 4752) +.tbcdn.cn/mm/tanxssp-custom/sina_ +# ||tasteforlife.com.tw^$subdocument (easylistchina.txt: 4751) +.tasteforlife.com.tw +# ||taoyoudu.com/img/top.jpg (easylistchina.txt: 4750) +.taoyoudu.com/img/top\.jpg +# ||taohuazu.tw/tool/ (easylistchina.txt: 4749) +.taohuazu.tw/tool/ +# ||taohua.me/tool/taohuazu.js (easylistchina.txt: 4748) +.taohua.me/tool/taohuazu\.js +# ||taoguba.com.cn/js/tgbduilian (easylistchina.txt: 4747) +.taoguba.com.cn/js/tgbduilian +# ||taoguba.com.cn/js/hezuo/ (easylistchina.txt: 4746) +.taoguba.com.cn/js/hezuo/ +# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina.txt: 4745) +.taoguba.com.cn/img/2015/08/26/oh5555jfx48p\.jpg +# ||taodake.com/taodake_img/Images/union/ (easylistchina.txt: 4744) +.taodake.com/taodake_img/Images/union/ +# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina.txt: 4741) +.taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450\.jpg_670x670\.jpg +# ||talkforex.com/data/attachment/portal/ (easylistchina.txt: 4739) +.talkforex.com/data/attachment/portal/ +# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina.txt: 4738) +.taizhou.com.cn/.*/3890\.files/xchad\.jpg +# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina.txt: 4737) +.taizhou.com.cn/52\.files/c1_20150423\.swf +# ||taizhou.com.cn/52.files/a*20 (easylistchina.txt: 4736) +.taizhou.com.cn/52\.files/a.*20 +# ||taiwandaily.net/uploadimages% (easylistchina.txt: 4735) +.taiwandaily.net/uploadimages% +# ||taiwan.cn/images/tw_ad_ (easylistchina.txt: 4734) +.taiwan.cn/images/tw_ad_ +# ||taihe.net/js/ad (easylistchina.txt: 4733) +.taihe.net/js/ad +# ||taihainet.com/biz/ (easylistchina.txt: 4732) +.taihainet.com/biz/ +# ||t259.net/js/click_showclose.js (easylistchina.txt: 4731) +.t259.net/js/click_showclose\.js +# ||t259.net/images/*.gif (easylistchina.txt: 4730) +.t259.net/images/.*\.gif +# ||t.58xs.com/hot/ (easylistchina.txt: 4729) +.t.58xs.com/hot/ +# ||sztaofang.com/out/Out_BBs.asp (easylistchina.txt: 4728) +.sztaofang.com/out/Out_BBs\.asp +# ||sznews.com/css/$script (easylistchina.txt: 4727) +.sznews.com/css/ +# ||sznews.com/*.files/$image,object (easylistchina.txt: 4726) +.sznews.com/.*\.files/ +# ||szhk.com/include/taobao (easylistchina.txt: 4725) +.szhk.com/include/taobao +# ||szhk.com/iframe/ (easylistchina.txt: 4724) +.szhk.com/iframe/ +# ||szhk.com/ads/ (easylistchina.txt: 4723) +.szhk.com/ads/ +# ||szhk.com/565.jpg (easylistchina.txt: 4722) +.szhk.com/565\.jpg +# ||sz1001.net^*/soft_*.js (easylistchina.txt: 4721) +.sz1001.net/.*/soft_.*\.js +# ||sz1001.net/ab1/index*.js (easylistchina.txt: 4720) +.sz1001.net/ab1/index.*\.js +# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina.txt: 4719) +.sz.zj.cn/info\.php\?fid= +# ||sz.zj.cn/2013-dh.asp (easylistchina.txt: 4718) +.sz.zj.cn/2013-dh\.asp +# ||synacast.com^ (easylistchina.txt: 4717) +.synacast.com +# ||sydneytoday.com/sponsor/ (easylistchina.txt: 4716) +.sydneytoday.com/sponsor/ +# ||syd.com.cn/pic_index/lalian (easylistchina.txt: 4715) +.syd.com.cn/pic_index/lalian +# ||syd.com.cn/pic_index/duilian (easylistchina.txt: 4714) +.syd.com.cn/pic_index/duilian +# ||sy.ln.cn/08gg/ (easylistchina.txt: 4713) +.sy.ln.cn/08gg/ +# ||sxrom.com/images/zz.jpg (easylistchina.txt: 4712) +.sxrom.com/images/zz\.jpg +# ||sxrom.com/images/download/top (easylistchina.txt: 4711) +.sxrom.com/images/download/top +# ||sxrom.com/images/9.js (easylistchina.txt: 4710) +.sxrom.com/images/9\.js +# ||sxrom.com/images/79.gif (easylistchina.txt: 4709) +.sxrom.com/images/79\.gif +# ||sxrb.com/upload/js/xww_ (easylistchina.txt: 4708) +.sxrb.com/upload/js/xww_ +# ||sx566.com^*/zsz (easylistchina.txt: 4707) +.sx566.com/.*/zsz +# ||sx566.com/ads/ (easylistchina.txt: 4706) +.sx566.com/ads/ +# ||supfree.net/images/otop.js (easylistchina.txt: 4705) +.supfree.net/images/otop\.js +# ||super.kdnet.net^ (easylistchina.txt: 4704) +.super.kdnet.net +# ||super.cat898.com^ (easylistchina.txt: 4703) +.super.cat898.com +# ||suimeng.com/js/html/yuedu (easylistchina.txt: 4702) +.suimeng.com/js/html/yuedu +# ||sufile.com/jsa/ (easylistchina.txt: 4701) +.sufile.com/jsa/ +# ||sudupan.com^*.gif (easylistchina.txt: 4700) +.sudupan.com/.*\.gif +# ||sudupan.com/380.jpg (easylistchina.txt: 4699) +.sudupan.com/380\.jpg +# ||sucaijiayuan.com/uploads/ad/ (easylistchina.txt: 4698) +.sucaijiayuan.com/uploads/ad/ +# ||sub.powerapple.com^ (easylistchina.txt: 4697) +.sub.powerapple.com +# ||su.bdimg.com/static/dspui/js/ (easylistchina.txt: 4696) +.su.bdimg.com/static/dspui/js/ +# ||strtv.cn/publicimg/sitelink/ (easylistchina.txt: 4695) +.strtv.cn/publicimg/sitelink/ +# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina.txt: 4694) +.strip.taobaocdn.com/tfscom/ +# ||storm.mg/ad? (easylistchina.txt: 4693) +.storm.mg/ad\? +# ||storetorrent.org/static/js/best (easylistchina.txt: 4692) +.storetorrent.org/static/js/best +# ||storetorrent.org/static/best/795X60.gif (easylistchina.txt: 4691) +.storetorrent.org/static/best/795X60\.gif +# ||stockstar.com/*DUILIAN&t= (easylistchina.txt: 4690) +.stockstar.com/.*DUILIAN&t= +# ||sto.cn*/temp/adv.jpg (easylistchina.txt: 4689) +.sto.cn*./(.*/)?temp/adv\.jpg +# ||stnn.cc/images/xy/yy.swf (easylistchina.txt: 4688) +.stnn.cc/images/xy/yy\.swf +# ||stnn.cc/images/xy/y0*.jpg (easylistchina.txt: 4687) +.stnn.cc/images/xy/y0.*\.jpg +# ||stnn.cc/images/xy/640_100/ (easylistchina.txt: 4686) +.stnn.cc/images/xy/640_100/ +# ||stnn.cc/images/xy/300$subdocument (easylistchina.txt: 4685) +.stnn.cc/images/xy/300 +# ||stnn.cc/images/xy/*x80$image,object (easylistchina.txt: 4684) +.stnn.cc/images/xy/.*x80 +# ||stnn.cc/images/xy/*80px (easylistchina.txt: 4683) +.stnn.cc/images/xy/.*80px +# ||stheadline.com^*/right_promo.js (easylistchina.txt: 4682) +.stheadline.com/.*/right_promo\.js +# ||stheadline.com/*banner$script (easylistchina.txt: 4681) +.stheadline.com/.*banner +# ||steamcn.com/img/lancai_ (easylistchina.txt: 4680) +.steamcn.com/img/lancai_ +# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina.txt: 4679) +.steachs.com/wp-content/uploads/2015/12/nippon\.gif +# ||stcn.com/common/flash/aigu.swf (easylistchina.txt: 4678) +.stcn.com/common/flash/aigu\.swf +# ||stats.chinaz.com/tool_img/ (easylistchina.txt: 4677) +.stats.chinaz.com/tool_img/ +# ||stats.chinaz.com/tool/ (easylistchina.txt: 4676) +.stats.chinaz.com/tool/ +# ||static.zongheng.com^*/index_r_b.js (easylistchina.txt: 4675) +.static.zongheng.com/.*/index_r_b\.js +# ||static.zongheng.com/upload/zhds/ (easylistchina.txt: 4674) +.static.zongheng.com/upload/zhds/ +# ||static.zongheng.com/upload/hzds/ (easylistchina.txt: 4673) +.static.zongheng.com/upload/hzds/ +# ||static.zongheng.com/upload/ad/ (easylistchina.txt: 4672) +.static.zongheng.com/upload/ad/ +# ||static.wenxiu.com/js/top.js (easylistchina.txt: 4671) +.static.wenxiu.com/js/top\.js +# ||static.tianyaui.com^*/stat_20080313.js (easylistchina.txt: 4670) +.static.tianyaui.com/.*/stat_20080313\.js +# ||static.imanke.com/imanke/pigbbs.js (easylistchina.txt: 4669) +.static.imanke.com/imanke/pigbbs\.js +# ||static.imanke.com/imanke/m/ (easylistchina.txt: 4668) +.static.imanke.com/imanke/m/ +# ||static.fzdm.com/top (easylistchina.txt: 4667) +.static.fzdm.com/top +# ||static.fzdm.com/ispop.js (easylistchina.txt: 4666) +.static.fzdm.com/ispop\.js +# ||static.fzdm.com/foot (easylistchina.txt: 4665) +.static.fzdm.com/foot +# ||static.doyouhike.net/partner/ (easylistchina.txt: 4664) +.static.doyouhike.net/partner/ +# ||static.d.lecai.com/js/*m.js (easylistchina.txt: 4663) +.static.d.lecai.com/js/.*m\.js +# ||static.colayun.com/images/vip.png (easylistchina.txt: 4662) +.static.colayun.com/images/vip\.png +# ||static.coladrive.com/images/vip.png (easylistchina.txt: 4661) +.static.coladrive.com/images/vip\.png +# ||static.aizhan.com/jsa/ (easylistchina.txt: 4660) +.static.aizhan.com/jsa/ +# ||starnnews.com/banner/ (easylistchina.txt: 4659) +.starnnews.com/banner/ +# ||starbaby.cn/bookconnector/ (easylistchina.txt: 4658) +.starbaby.cn/bookconnector/ +# ||starbaby.cn/adconnector/ (easylistchina.txt: 4657) +.starbaby.cn/adconnector/ +# ||ssnn.net^*-200-250.jpg (easylistchina.txt: 4656) +.ssnn.net/.*-200-250\.jpg +# ||srzc.com^*/zwfjs/ (easylistchina.txt: 4655) +.srzc.com/.*/zwfjs/ +# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina.txt: 4654) +.srzc.com/templets/srxw/img/000ad\.jpg +# ||srzc.com/js/gelao/ (easylistchina.txt: 4653) +.srzc.com/js/gelao/ +# ||srzc.com/js/Adsjs/ (easylistchina.txt: 4652) +.srzc.com/js/Adsjs/ +# ||srzc.com/images/*.swf (easylistchina.txt: 4651) +.srzc.com/images/.*\.swf +# ||sportsv.net/dist/ads/ (easylistchina.txt: 4649) +.sportsv.net/dist/ads/ +# ||spn.com.cn/media/jackmm.js (easylistchina.txt: 4648) +.spn.com.cn/media/jackmm\.js +# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina.txt: 4647) +.spn.com.cn/admin_new/imgs/b2\.jpg +# ||spbonow.com/UploadFiles/20$image (easylistchina.txt: 4646) +.spbonow.com/UploadFiles/20 +# ||spbonow.com/js/float.js (easylistchina.txt: 4645) +.spbonow.com/js/float\.js +# ||spbonow.com/images/fyt.gif (easylistchina.txt: 4644) +.spbonow.com/images/fyt\.gif +# ||sozi.cn/templets/sozi/js/js.js (easylistchina.txt: 4643) +.sozi.cn/templets/sozi/js/js\.js +# ||soxia.cc/img/baoyue*.gif (easylistchina.txt: 4642) +.soxia.cc/img/baoyue.*\.gif +# ||southmoney.com/page/top (easylistchina.txt: 4641) +.southmoney.com/page/top +# ||southmoney.com/page/inc/ (easylistchina.txt: 4640) +.southmoney.com/page/inc/ +# ||source.qunar.com/site/images/wns/ (easylistchina.txt: 4639) +.source.qunar.com/site/images/wns/ +# ||soso.com/baike/js/ad_ (easylistchina.txt: 4638) +.soso.com/baike/js/ad_ +# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina.txt: 4637) +.sootoo.com/son_media/msg/2010/11/16/30324\.jpg +# ||sooopu.com/js/contentad330.js (easylistchina.txt: 4636) +.sooopu.com/js/contentad330\.js +# ||sooopu.com/js/*950.js (easylistchina.txt: 4635) +.sooopu.com/js/.*950\.js +# ||sooopu.com/images/web/cg328/cg.js (easylistchina.txt: 4634) +.sooopu.com/images/web/cg328/cg\.js +# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina.txt: 4632) +.sohu.com/interaction/get/getListByVidForVrs\.do\? +# ||sohu.com/adgtr/ (easylistchina.txt: 4631) +.sohu.com/adgtr/ +# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina.txt: 4630) +.sohu.com.cn/ppp/bms/bms\.popup\. +# ||sogou.com/skins/images/skinlist_ad. (easylistchina.txt: 4629) +.sogou.com/skins/images/skinlist_ad\. +# ||sogou.com/images/galaxy.jpg (easylistchina.txt: 4628) +.sogou.com/images/galaxy\.jpg +# ||softhy.net/hp/ (easylistchina.txt: 4627) +.softhy.net/hp/ +# ||soft711.com/2013/ (easylistchina.txt: 4626) +.soft711.com/2013/ +# ||soft.mumayi.net/js/ (easylistchina.txt: 4625) +.soft.mumayi.net/js/ +# ||soft.mumayi.net/images/download.gif (easylistchina.txt: 4624) +.soft.mumayi.net/images/download\.gif +# ||soaspx.com/images/iiszj.gif (easylistchina.txt: 4623) +.soaspx.com/images/iiszj\.gif +# ||soaspx.com/images/hws.gif (easylistchina.txt: 4622) +.soaspx.com/images/hws\.gif +# ||so100.cn/images/newshead.htm (easylistchina.txt: 4621) +.so100.cn/images/newshead\.htm +# ||so100.cn/images/a*.js (easylistchina.txt: 4620) +.so100.cn/images/a.*\.js +# ||so.open.163.com/v/list.htm?pid= (easylistchina.txt: 4619) +.so.open.163.com/v/list\.htm\?pid= +# ||so.6949.com^ (easylistchina.txt: 4618) +.so.6949.com +# ||snybw.com/images/*-banner. (easylistchina.txt: 4617) +.snybw.com/images/.*-banner\. +# ||smzy.com^*970.js (easylistchina.txt: 4616) +.smzy.com/.*970\.js +# ||smzy.com^*/webtg (easylistchina.txt: 4615) +.smzy.com/.*/webtg +# ||slooti.com/upload/30/38/1446711674.gif (easylistchina.txt: 4614) +.slooti.com/upload/30/38/1446711674\.gif +# ||slit.cn/slgg/ (easylistchina.txt: 4613) +.slit.cn/slgg/ +# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina.txt: 4612) +.slit.cn/skin/slitsk/js/dlad\.js +# ||slit.cn/d/js/images/thea (easylistchina.txt: 4611) +.slit.cn/d/js/images/thea +# ||skinme.cc/assets/images/banner_ (easylistchina.txt: 4610) +.skinme.cc/assets/images/banner_ +# ||skinme.cc*/assets/images/*0.swf (easylistchina.txt: 4609) +.skinme.cc*./(.*/)?assets/images/.*0\.swf +# ||skdh2.com/tp/ (easylistchina.txt: 4608) +.skdh2.com/tp/ +# ||skdh1.com/tp/ (easylistchina.txt: 4607) +.skdh1.com/tp/ +# ||skdh.net^*980 (easylistchina.txt: 4606) +.skdh.net/.*980 +# ||skdh.net/zuo.js (easylistchina.txt: 4605) +.skdh.net/zuo\.js +# ||skads.gxsky.com^$script (easylistchina.txt: 4604) +.skads.gxsky.com +# ||sjzdaily.com.cn/sjznewsad/ (easylistchina.txt: 4603) +.sjzdaily.com.cn/sjznewsad/ +# ||sjzbus.com.cn/advimg/ (easylistchina.txt: 4602) +.sjzbus.com.cn/advimg/ +# ||sjyws.sjyws.com^*.gif (easylistchina.txt: 4601) +.sjyws.sjyws.com/.*\.gif +# ||siyu88.net/g$subdocument (easylistchina.txt: 4600) +.siyu88.net/g +# ||siyu88.cn/xl/ (easylistchina.txt: 4599) +.siyu88.cn/xl/ +# ||sisiww.com/yezicheng_ad/ (easylistchina.txt: 4598) +.sisiww.com/yezicheng_ad/ +# ||sisiww.com/6786526.gif (easylistchina.txt: 4597) +.sisiww.com/6786526\.gif +# ||sinolub.com/data/js/*.js (easylistchina.txt: 4596) +.sinolub.com/data/js/.*\.js +# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina.txt: 4595) +.sinajs.cn/t6/home/js/pl/guide/bigday/ +# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina.txt: 4594) +.sinajs.cn/t6/home/js/pl/guide/adforfqy/ +# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina.txt: 4593) +.sinajs.cn/t4/apps/publicity/static/wbad\.js +# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina.txt: 4592) +.sinajs.cn/blog7style/images/activity/app_tuiguang/ +# ||sinaimg.cn^*/deco/$script (easylistchina.txt: 4591) +.sinaimg.cn/.*/deco/ +# ||sinaimg.cn/unipro/ (easylistchina.txt: 4588) +.sinaimg.cn/unipro/ +# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina.txt: 4587) +.sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82\.gif +# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina.txt: 4586) +.sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj\.jpg +# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina.txt: 4585) +.sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn\.jpg +# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina.txt: 4584) +.sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh\.jpg +# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina.txt: 4583) +.sinaimg.cn/mw690/a6a976a2.*j207e02a +# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina.txt: 4582) +.sinaimg.cn/mw690/a1916e89gw1dye4d74zmij\.jpg +# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina.txt: 4581) +.sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj\.jpg +# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina.txt: 4580) +.sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi\.jpg +# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina.txt: 4579) +.sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu\.jpg +# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina.txt: 4578) +.sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina.txt: 4576) +.sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81\.gif +# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina.txt: 4575) +.sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina.txt: 4574) +.sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina.txt: 4573) +.sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf\.jpg +# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina.txt: 4571) +.sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt\.gif +# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina.txt: 4570) +.sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y\.jpg +# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina.txt: 4569) +.sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r\.gif +# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina.txt: 4568) +.sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5\.jpg +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina.txt: 4567) +.sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts\.jpg +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina.txt: 4566) +.sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta\.jpg +# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina.txt: 4565) +.sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy\.gif +# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina.txt: 4563) +.sinaimg.cn/jslib/kuozhanad\.js +# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina.txt: 4562) +.sinaimg.cn/finance/zwy/sidead_ +# ||sinaimg.cn/cj/dfz_ad/ (easylistchina.txt: 4561) +.sinaimg.cn/cj/dfz_ad/ +# ||sina.com/rm/ (easylistchina.txt: 4560) +.sina.com/rm/ +# ||sina.com/assets/js/dart/ (easylistchina.txt: 4559) +.sina.com/assets/js/dart/ +# ||sina.com/ads/ (easylistchina.txt: 4558) +.sina.com/ads/ +# ||sina.com.tw^$subdocument (easylistchina.txt: 4557) +.sina.com.tw +# ||sina.com.tw/game_data/adsbro_ (easylistchina.txt: 4556) +.sina.com.tw/game_data/adsbro_ +# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina.txt: 4555) +.sina.com.cn/tgy/pop_js/ad\.js +# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina.txt: 4554) +.sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90\.gif +# ||sina.com.cn/NewIndexAdStart.js (easylistchina.txt: 4553) +.sina.com.cn/NewIndexAdStart\.js +# ||sina.com.cn/litong/ (easylistchina.txt: 4552) +.sina.com.cn/litong/ +# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina.txt: 4551) +.sina.com.cn/js/87/20140101/hongbao/ +# ||sina.com.cn/js/*/bgads.js (easylistchina.txt: 4550) +.sina.com.cn/js/.*/bgads\.js +# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina.txt: 4549) +.sina.com.cn/js/.*/AdvertisingByNewIndex_ +# ||sina.com.cn/131/20150515/266.js (easylistchina.txt: 4548) +.sina.com.cn/131/20150515/266\.js +# ||sina.cn/adfront/deliver.php? (easylistchina.txt: 4547) +.sina.cn/adfront/deliver\.php\? +# ||simplecd.me/static/js/adcpm.js (easylistchina.txt: 4546) +.simplecd.me/static/js/adcpm\.js +# ||shxd.net/img/myad.gif (easylistchina.txt: 4545) +.shxd.net/img/myad\.gif +# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina.txt: 4544) +.shuyeer.com/views/default/mnstyle/hot/gg\.js +# ||shuyeer.com/views/default/images/close.gif (easylistchina.txt: 4543) +.shuyeer.com/views/default/images/close\.gif +# ||shuyeer.com/dlr.html (easylistchina.txt: 4542) +.shuyeer.com/dlr\.html +# ||shuqi6.com/static/jquery/gg.js (easylistchina.txt: 4541) +.shuqi6.com/static/jquery/gg\.js +# ||shumimi.com/js/a3.js (easylistchina.txt: 4540) +.shumimi.com/js/a3\.js +# ||shumimi.com/js/a2.js (easylistchina.txt: 4539) +.shumimi.com/js/a2\.js +# ||shumimi.com/js/a1.js (easylistchina.txt: 4538) +.shumimi.com/js/a1\.js +# ||shumimi.com/js/a0 (easylistchina.txt: 4537) +.shumimi.com/js/a0 +# ||shulink.com/js/pagetop5.js (easylistchina.txt: 4536) +.shulink.com/js/pagetop5\.js +# ||shulihua.net/js/yegonggao.js (easylistchina.txt: 4535) +.shulihua.net/js/yegonggao\.js +# ||shulihua.net/js/topcen.js (easylistchina.txt: 4534) +.shulihua.net/js/topcen\.js +# ||shulihua.net/js/gzlishigoogle.js (easylistchina.txt: 4533) +.shulihua.net/js/gzlishigoogle\.js +# ||shulihua.net/js/gzlishi468google.js (easylistchina.txt: 4532) +.shulihua.net/js/gzlishi468google\.js +# ||shuhe.cc/ssi/ (easylistchina.txt: 4531) +.shuhe.cc/ssi/ +# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina.txt: 4530) +.shuajizhijia.com/uploads/allimg/141121/1_1702554911\.jpg +# ||shuajizhijia.com/static/js/rightdown.js (easylistchina.txt: 4529) +.shuajizhijia.com/static/js/rightdown\.js +# ||shuaijiao.com/statics/js/adv0.js (easylistchina.txt: 4528) +.shuaijiao.com/statics/js/adv0\.js +# ||shows.21cn.com^ (easylistchina.txt: 4527) +.shows.21cn.com +# ||showbean.net:8081/cpma.js (easylistchina.txt: 4526) +.showbean.net:8081/cpma\.js +# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina.txt: 4525) +.shouyoutv.com/assets/api/web/v4/js/global_head\.js +# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina.txt: 4524) +.shouyou.com/2013/new/shouyou-duilian\.js +# ||shoudian.org/diantong/sunwayman*.gif (easylistchina.txt: 4523) +.shoudian.org/diantong/sunwayman.*\.gif +# ||shmet.com/js/shmetAd.js (easylistchina.txt: 4522) +.shmet.com/js/shmetAd\.js +# ||shmet.com/images/zz250x80.jpg (easylistchina.txt: 4521) +.shmet.com/images/zz250x80\.jpg +# ||shmet.com/images/20120213ad/ (easylistchina.txt: 4520) +.shmet.com/images/20120213ad/ +# ||shmet.com/images/150x150newsshmet.jpg (easylistchina.txt: 4519) +.shmet.com/images/150x150newsshmet\.jpg +# ||shmet.com/images/1000x90newshmet.swf (easylistchina.txt: 4518) +.shmet.com/images/1000x90newshmet\.swf +# ||shm.com.cn/js/load.swf (easylistchina.txt: 4517) +.shm.com.cn/js/load\.swf +# ||shm.com.cn/css/m.js (easylistchina.txt: 4516) +.shm.com.cn/css/m\.js +# ||shm.com.cn/content/con*.js (easylistchina.txt: 4515) +.shm.com.cn/content/con.*\.js +# ||shfq.com/data/attachment/portal/ (easylistchina.txt: 4514) +.shfq.com/data/attachment/portal/ +# ||shenmeshi.com/googlejs/ziding1.js (easylistchina.txt: 4513) +.shenmeshi.com/googlejs/ziding1\.js +# ||shenmaxiaoshuo.com/js/mu.js (easylistchina.txt: 4512) +.shenmaxiaoshuo.com/js/mu\.js +# ||shenmaxiaoshuo.com/js/lu.js (easylistchina.txt: 4511) +.shenmaxiaoshuo.com/js/lu\.js +# ||shenmaxiaoshuo.com/js/hf (easylistchina.txt: 4510) +.shenmaxiaoshuo.com/js/hf +# ||shenleyuni.com^ (easylistchina.txt: 4509) +.shenleyuni.com +# ||shejizhan.org/images/myssh (easylistchina.txt: 4508) +.shejizhan.org/images/myssh +# ||shehuitu.com/jsjs/ (easylistchina.txt: 4507) +.shehuitu.com/jsjs/ +# ||shbear.com^*/ad/ (easylistchina.txt: 4506) +.shbear.com/.*/ad/ +# ||share.gzdsw.com^ (easylistchina.txt: 4505) +.share.gzdsw.com +# ||share.dmhy.*/*?$image (easylistchina.txt: 4504) +.share.dmhy.*./(.*/)?.*\? +# ||shaoxing.com.cn^*gg. (easylistchina.txt: 4503) +.shaoxing.com.cn/.*gg\. +# ||shaoxing.com.cn/6201.files/*.swf (easylistchina.txt: 4502) +.shaoxing.com.cn/6201\.files/.*\.swf +# ||shanhe.cc/Scripts/main-pf.js (easylistchina.txt: 4501) +.shanhe.cc/Scripts/main-pf\.js +# ||shanhe.cc/Scripts/ads_dl.js (easylistchina.txt: 4500) +.shanhe.cc/Scripts/ads_dl\.js +# ||shanhe.cc/index.php?m=poster& (easylistchina.txt: 4499) +.shanhe.cc/index\.php\?m=poster& +# ||shangdu.com/tpnews/dazhe.gif (easylistchina.txt: 4498) +.shangdu.com/tpnews/dazhe\.gif +# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina.txt: 4497) +.shangdu.com/newfile2007/ad/tu/flash/3dboard\.swf +# ||shangdu.com/lyinfo/ad/ (easylistchina.txt: 4496) +.shangdu.com/lyinfo/ad/ +# ||shangdu.com/comiis_ad/ (easylistchina.txt: 4495) +.shangdu.com/comiis_ad/ +# ||shangdu.com/bbs/1005010601.js (easylistchina.txt: 4494) +.shangdu.com/bbs/1005010601\.js +# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina.txt: 4493) +.shangdu.com/2013pic/kuahailong\.jpg +# ||shangdu.com/2013pic/09cn.jpg (easylistchina.txt: 4492) +.shangdu.com/2013pic/09cn\.jpg +# ||shangdu.com/1002/1002031301.js (easylistchina.txt: 4491) +.shangdu.com/1002/1002031301\.js +# ||shangdu.com/1002/1002030901.js (easylistchina.txt: 4490) +.shangdu.com/1002/1002030901\.js +# ||shangdu.com/1002/1002030801.js (easylistchina.txt: 4489) +.shangdu.com/1002/1002030801\.js +# ||shangdu.com/1002/1002030101.js (easylistchina.txt: 4488) +.shangdu.com/1002/1002030101\.js +# ||shang.hlgnet.net/code/ (easylistchina.txt: 4487) +.shang.hlgnet.net/code/ +# ||shang.hlgnet.com/code/ (easylistchina.txt: 4486) +.shang.hlgnet.com/code/ +# ||shabc.net/shyk/swt/swt_yh.js (easylistchina.txt: 4485) +.shabc.net/shyk/swt/swt_yh\.js +# ||sh114so.com^$subdocument (easylistchina.txt: 4484) +.sh114so.com +# ||sh114so.com/js/nm*.js (easylistchina.txt: 4483) +.sh114so.com/js/nm.*\.js +# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina.txt: 4482) +.sh.sina.com.cn/js/441/ZwyArticle_commo_23\.js +# ||sh.sina.com.cn/iframe/522/ (easylistchina.txt: 4481) +.sh.sina.com.cn/iframe/522/ +# ||sgg.southcn.com^ (easylistchina.txt: 4480) +.sgg.southcn.com +# ||sg169.com/uploadfile/*.swf (easylistchina.txt: 4479) +.sg169.com/uploadfile/.*\.swf +# ||sg169.com/uploadfile/*.gif (easylistchina.txt: 4478) +.sg169.com/uploadfile/.*\.gif +# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina.txt: 4477) +.sf-express.com/cn/sc/\.galleries/sfbest/.*_right_sc\. +# ||sexbarss.net/wap/ (easylistchina.txt: 4476) +.sexbarss.net/wap/ +# ||sentsin.qiniudn.com/ad_ (easylistchina.txt: 4475) +.sentsin.qiniudn.com/ad_ +# ||sejie2.us/images/*.gif (easylistchina.txt: 4474) +.sejie2.us/images/.*\.gif +# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina.txt: 4473) +.secretmine.net/wp-content/uploads/2015/07/youdaoxiazai\.jpg +# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina.txt: 4472) +.secretmine.net/wp-content/uploads/2015/07/A- +# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina.txt: 4471) +.secretmine.net/wp-content/uploads/.*/610x80 +# ||secretmine.net/wp-content/uploads/*-960 (easylistchina.txt: 4470) +.secretmine.net/wp-content/uploads/.*-960 +# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina.txt: 4469) +.secretmine.net/wp-content/uploads/.*-300-25\. +# ||sdzbcg.com/images/sdfhyl (easylistchina.txt: 4468) +.sdzbcg.com/images/sdfhyl +# ||sdzbcg.com/images/jnmy (easylistchina.txt: 4467) +.sdzbcg.com/images/jnmy +# ||sdzbcg.com/images/ggwzz.jpg (easylistchina.txt: 4466) +.sdzbcg.com/images/ggwzz\.jpg +# ||sdo.com/static/image/mkads/ (easylistchina.txt: 4464) +.sdo.com/static/image/mkads/ +# ||sdktu.com/js/alpha.js (easylistchina.txt: 4463) +.sdktu.com/js/alpha\.js +# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina.txt: 4462) +.sdgundam.cn/upload/2015-07/dcfea62708a21351\.jpg +# ||sdgundam.cn/js/duilian3.js (easylistchina.txt: 4461) +.sdgundam.cn/js/duilian3\.js +# ||sd888.org/house/flash/ (easylistchina.txt: 4460) +.sd888.org/house/flash/ +# ||sd888.org/flash/ (easylistchina.txt: 4459) +.sd888.org/flash/ +# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina.txt: 4458) +.sd.xinhuanet.com/2014xb/images/shanhang\.gif +# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina.txt: 4457) +.sd.xinhuanet.com/2014xb/html/albbg\.htm +# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina.txt: 4456) +.sd.xinhuanet.com/2014xb/flash/ +# ||scsn.cn/Public/config/Couplet/Index (easylistchina.txt: 4455) +.scsn.cn/Public/config/Couplet/Index +# ||scsn.cn/Public/config/Couplet/16.js (easylistchina.txt: 4454) +.scsn.cn/Public/config/Couplet/16\.js +# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina.txt: 4453) +.script.cmfu.com/Script/GameAdAptationInfo\.js +# ||script.cmfu.com/ADScript/ (easylistchina.txt: 4452) +.script.cmfu.com/ADScript/ +# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina.txt: 4451) +.scol.com.cn/scol-3/js/08scol_text_ +# ||scol.com.cn/js/def_ (easylistchina.txt: 4450) +.scol.com.cn/js/def_ +# ||sc.tom.com^ (easylistchina.txt: 4449) +.sc.tom.com +# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina.txt: 4448) +.sc.chinaiiss.com/do\.php\?do=ad& +# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina.txt: 4447) +.saydigi.com/wp-content/uploads/2015/01/gogo\.png +# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina.txt: 4446) +.saydigi.com/wp-content/uploads/2014/01/mii2\.gif +# ||saydigi.com/wp-content/uploads/*-banner (easylistchina.txt: 4445) +.saydigi.com/wp-content/uploads/.*-banner +# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina.txt: 4444) +.saydigi.com/wp-content/uploads/.*-240x250\. +# ||sax.sina.com.cn/crossdomain.xml (easylistchina.txt: 4443) +.sax.sina.com.cn/crossdomain\.xml +# ||same.stockstar.com^ (easylistchina.txt: 4442) +.same.stockstar.com +# ||same.eastmoney.com^ (easylistchina.txt: 4441) +.same.eastmoney.com +# ||same.chinadaily.com.cn^ (easylistchina.txt: 4440) +.same.chinadaily.com.cn +# ||same*.jrj.com.cn^$script,subdocument (easylistchina.txt: 4439) +.same*./.*\.jrj\.com\.cn[^\w%.-] +.same*.jrj.com.cn +# ||sam*.baby-kingdom.com^ (easylistchina.txt: 4438) +.sam*./.*\.baby-kingdom\.com[^\w%.-] +.sam*.baby-kingdom.com +# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina.txt: 4437) +.saibeinews.com/index\.php\?m=poster&c=index&a=show_poster& +# ||safedom.net/edm/ad/ (easylistchina.txt: 4436) +.safedom.net/edm/ad/ +# ||s8bbs.com/g.php? (easylistchina.txt: 4435) +.s8bbs.com/g\.php\? +# ||s1979.com/html/ad_js/ (easylistchina.txt: 4434) +.s1979.com/html/ad_js/ +# ||s1.pplive.cn/sta.js (easylistchina.txt: 4433) +.s1.pplive.cn/sta\.js +# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina.txt: 4432) +.s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226\.js +# ||s.yimg.com/gs/apex/ (easylistchina.txt: 4430) +.s.yimg.com/gs/apex/ +# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina.txt: 4429) +.s.video.sina.com.cn/video/play\?video_id=249750205& +# ||s.u17t.com/leaflet/upload/ (easylistchina.txt: 4428) +.s.u17t.com/leaflet/upload/ +# ||s.tankr.net/s/$script (easylistchina.txt: 4427) +.s.tankr.net/s/ +# ||s.tankr.net/n/ (easylistchina.txt: 4426) +.s.tankr.net/n/ +# ||s-msn.com/portal/xiatui.js (easylistchina.txt: 4425) +.s-msn.com/portal/xiatui\.js +# ||s-msn.com/portal/hp/2015/807.html (easylistchina.txt: 4424) +.s-msn.com/portal/hp/2015/807\.html +# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina.txt: 4423) +.s-msn.com/msnportal/hp/luckyday/ +# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina.txt: 4422) +.rznews.cn/viscms/r/cms/rzw/rzxw/images/.*\.swf +# ||ruten.com.tw/js/gads_ (easylistchina.txt: 4421) +.ruten.com.tw/js/gads_ +# ||ruten.com.tw/js/ahd_ (easylistchina.txt: 4420) +.ruten.com.tw/js/ahd_ +# ||runsky.com/html/*_index_ (easylistchina.txt: 4419) +.runsky.com/html/.*_index_ +# ||runsky.com/bbsadv- (easylistchina.txt: 4418) +.runsky.com/bbsadv- +# ||runmang.com/img/ (easylistchina.txt: 4417) +.runmang.com/img/ +# ||runbt.com/js/ad (easylistchina.txt: 4416) +.runbt.com/js/ad +# ||runbt.com/image/ad_ (easylistchina.txt: 4415) +.runbt.com/image/ad_ +# ||ruian86.com/img/y13/ (easylistchina.txt: 4414) +.ruian86.com/img/y13/ +# ||ruian.com/img/y13/ (easylistchina.txt: 4413) +.ruian.com/img/y13/ +# ||rugao35.com/Public/config/Couplet/Index (easylistchina.txt: 4412) +.rugao35.com/Public/config/Couplet/Index +# ||ruanyifeng.com/blog/images/sup_ (easylistchina.txt: 4411) +.ruanyifeng.com/blog/images/sup_ +# ||ruanyifeng.com/blog/images/ad_ (easylistchina.txt: 4410) +.ruanyifeng.com/blog/images/ad_ +# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina.txt: 4409) +.ruanjianxiaozi.qiniudn.com +# ||ruan8.com/img/head.js (easylistchina.txt: 4408) +.ruan8.com/img/head\.js +# ||ruan8.com/img/foot.js (easylistchina.txt: 4407) +.ruan8.com/img/foot\.js +# ||rtbs.cn/bi.js (easylistchina.txt: 4406) +.rtbs.cn/bi\.js +# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina.txt: 4405) +.rshhy.com/uploads/allimg/130517/1_1834445801\.jpg +# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina.txt: 4404) +.rshhy.com/templets/default/images/zhixiao01\.jpg +# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina.txt: 4403) +.rshhy.com/templets/default/images/paimai01\.jpg +# ||rsdown.cn/static/t/ (easylistchina.txt: 4402) +.rsdown.cn/static/t/ +# ||rsccs.com/code/ (easylistchina.txt: 4401) +.rsccs.com/code/ +# ||rosmm.com/ad_js/ (easylistchina.txt: 4400) +.rosmm.com/ad_js/ +# ||rkanr.com/data/cpcache/cp*.js (easylistchina.txt: 4398) +.rkanr.com/data/cpcache/cp.*\.js +# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina.txt: 4397) +.rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6\.jpg +# ||rizhao.net/html/js/main.js (easylistchina.txt: 4396) +.rizhao.net/html/js/main\.js +# ||rising.com.cn/weblog/ (easylistchina.txt: 4395) +.rising.com.cn/weblog/ +# ||rising.cn^*/pic-ad/ (easylistchina.txt: 4394) +.rising.cn/.*/pic-ad/ +# ||ringhk.com/adves/ (easylistchina.txt: 4393) +.ringhk.com/adves/ +# ||right.com.cn/logo/*.gif (easylistchina.txt: 4391) +.right.com.cn/logo/.*\.gif +# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina.txt: 4390) +.right.com.cn/forum/static/image/common/logo\.gif +# ||rh.qq.com^ (easylistchina.txt: 4389) +.rh.qq.com +# ||rfidworld.com.cn/js/c.html (easylistchina.txt: 4388) +.rfidworld.com.cn/js/c\.html +# ||rfidworld.com.cn/js/b.js (easylistchina.txt: 4387) +.rfidworld.com.cn/js/b\.js +# ||rfidworld.com.cn/js/a.js (easylistchina.txt: 4386) +.rfidworld.com.cn/js/a\.js +# ||res.ythouse.com/image/index/2012/ (easylistchina.txt: 4385) +.res.ythouse.com/image/index/2012/ +# ||res.hunantv.com^ (easylistchina.txt: 4384) +.res.hunantv.com +# ||res.cngoldres.com/web/js/*_advs.js (easylistchina.txt: 4383) +.res.cngoldres.com/web/js/.*_advs\.js +# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina.txt: 4382) +.res.cngoldres.com/web/index/img/.*_ad_ +# ||repian.com/a/ (easylistchina.txt: 4381) +.repian.com/a/ +# ||rentiyishu99.net/f.js (easylistchina.txt: 4380) +.rentiyishu99.net/f\.js +# ||rentiyishu99.net/e.js (easylistchina.txt: 4379) +.rentiyishu99.net/e\.js +# ||rentiyishu99.net/d.js (easylistchina.txt: 4378) +.rentiyishu99.net/d\.js +# ||rentiyishu99.net/b.js (easylistchina.txt: 4377) +.rentiyishu99.net/b\.js +# ||rentiyishu99.net/a.js (easylistchina.txt: 4376) +.rentiyishu99.net/a\.js +# ||rentiyishu.org/*.js (easylistchina.txt: 4375) +.rentiyishu.org/.*\.js +# ||renrencd.com/static/images/*_adv. (easylistchina.txt: 4374) +.renrencd.com/static/images/.*_adv\. +# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina.txt: 4373) +.renren.com/pages/seo/reg_seo_pop\.js +# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina.txt: 4372) +.ref.so/templates/ref/images/client/tg.*\.jpg +# ||readnovel.com/js/$subdocument (easylistchina.txt: 4371) +.readnovel.com/js/ +# ||read.2200book.com/images/bloading.gif (easylistchina.txt: 4370) +.read.2200book.com/images/bloading\.gif +# ||rar8.net/htmljs/ (easylistchina.txt: 4369) +.rar8.net/htmljs/ +# ||ranwen.org/ssi/ (easylistchina.txt: 4368) +.ranwen.org/ssi/ +# ||ranwen.net/ssi/ (easylistchina.txt: 4367) +.ranwen.net/ssi/ +# ||rainmall.com/tv/js/bofang (easylistchina.txt: 4365) +.rainmall.com/tv/js/bofang +# ||rainmall.com/tv/js/ad (easylistchina.txt: 4364) +.rainmall.com/tv/js/ad +# ||r3.ykimg.com/crossdomain.xml (easylistchina.txt: 4363) +.r3.ykimg.com/crossdomain\.xml +# ||qzzn.com/statics/ (easylistchina.txt: 4362) +.qzzn.com/statics/ +# ||qzwb.com^*.swf| (easylistchina.txt: 4361) +.qzwb.com/.*\.swf$ +# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina.txt: 4360) +.qzwb.com/gb/img/9465\.files/1G3G\.gif +# ||qzss.cn/ssad (easylistchina.txt: 4359) +.qzss.cn/ssad +# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina.txt: 4358) +.qzs.qq.com/qzone/biz/res/v\.swf\?loc= +# ||qzntv.com^*.swf| (easylistchina.txt: 4357) +.qzntv.com/.*\.swf$ +# ||qz828.com/css/2010/script/*ad (easylistchina.txt: 4356) +.qz828.com/css/2010/script/.*ad +# ||qutuku.com/qutu/good.js (easylistchina.txt: 4355) +.qutuku.com/qutu/good\.js +# ||qunaso.cn/Data/upload/ad/ (easylistchina.txt: 4354) +.qunaso.cn/Data/upload/ad/ +# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina.txt: 4353) +.qunar.com/vataplan\?framId=ifrNTOPAD& +# ||qunar.com/vataframe/b.html? (easylistchina.txt: 4352) +.qunar.com/vataframe/b\.html\? +# ||qunar.com/vata?chan= (easylistchina.txt: 4351) +.qunar.com/vata\?chan= +# ||qunar.com/render/*Advertisement.jsp? (easylistchina.txt: 4350) +.qunar.com/render/.*Advertisement\.jsp\? +# ||quledu.com/js/nrh.js (easylistchina.txt: 4349) +.quledu.com/js/nrh\.js +# ||qtfy30.cn/980-90.gif (easylistchina.txt: 4348) +.qtfy30.cn/980-90\.gif +# ||qtfy30.cn/680_*.gif (easylistchina.txt: 4347) +.qtfy30.cn/680_.*\.gif +# ||qstatic.com/baike/js/ad_ (easylistchina.txt: 4346) +.qstatic.com/baike/js/ad_ +# ||qscjw.com/uploads/590.gif (easylistchina.txt: 4345) +.qscjw.com/uploads/590\.gif +# ||qqzuqiu.com/?a=check& (easylistchina.txt: 4344) +.qqzuqiu.com/\?a=check& +# ||qqyy.com/js/public_end_add.js (easylistchina.txt: 4343) +.qqyy.com/js/public_end_add\.js +# ||qqyy.com/js/commAdv (easylistchina.txt: 4342) +.qqyy.com/js/commAdv +# ||qqtz.com/ad$subdocument (easylistchina.txt: 4341) +.qqtz.com/ad +# ||qqread.com/swf/ (easylistchina.txt: 4340) +.qqread.com/swf/ +# ||qqread.com/*js/$script (easylistchina.txt: 4339) +.qqread.com/.*js/ +# ||qqmcc.org/biz/home_top_960x90.html (easylistchina.txt: 4338) +.qqmcc.org/biz/home_top_960x90\.html +# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina.txt: 4337) +.qqkj.cn/js/qqkjnew/lanmuzhuantitongji\.js +# ||qqjia.com/images/ad (easylistchina.txt: 4336) +.qqjia.com/images/ad +# ||qqjia.com/dan.js (easylistchina.txt: 4335) +.qqjia.com/dan\.js +# ||qqhjy.com/soft/Upload*.gif (easylistchina.txt: 4334) +.qqhjy.com/soft/Upload.*\.gif +# ||qqcyl.net/js/*.html (easylistchina.txt: 4333) +.qqcyl.net/js/.*\.html +# ||qqcyl.com/js/*.html (easylistchina.txt: 4332) +.qqcyl.com/js/.*\.html +# ||qqcf.com/js/Content_Get.js (easylistchina.txt: 4331) +.qqcf.com/js/Content_Get\.js +# ||qq260.com/shout.js (easylistchina.txt: 4330) +.qq260.com/shout\.js +# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina.txt: 4329) +.qq.com/qzone/biz/gdt/display/positions/waicai/ +# ||qq.com/playgame/videoweb/ (easylistchina.txt: 4328) +.qq.com/playgame/videoweb/ +# ||qq.com/PL_adT.htm (easylistchina.txt: 4327) +.qq.com/PL_adT\.htm +# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina.txt: 4326) +.qq.com/minivideo_v1/vd/res/enttencentvideo\.xml +# ||qq.com/livemsg? (easylistchina.txt: 4325) +.qq.com/livemsg\? +# ||qq.com/Index/getAdsAndHotspot (easylistchina.txt: 4324) +.qq.com/Index/getAdsAndHotspot +# ||qq.com/game/footerbar$subdocument (easylistchina.txt: 4323) +.qq.com/game/footerbar +# ||qq.com/coral/ADS (easylistchina.txt: 4322) +.qq.com/coral/ADS +# ||qq.com/bbs/bbs_topgg.htm (easylistchina.txt: 4320) +.qq.com/bbs/bbs_topgg\.htm +# ||qq.com/article_qq/ad_article_qq/ (easylistchina.txt: 4319) +.qq.com/article_qq/ad_article_qq/ +# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina.txt: 4317) +.qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 +# ||qmi.cc/tester/tester.js (easylistchina.txt: 4316) +.qmi.cc/tester/tester\.js +# ||qk101.com/life/ (easylistchina.txt: 4315) +.qk101.com/life/ +# ||qjis.com/js/qjis_nr.js (easylistchina.txt: 4314) +.qjis.com/js/qjis_nr\.js +# ||qiyun.org/images/js/tpl/ (easylistchina.txt: 4313) +.qiyun.org/images/js/tpl/ +# ||qiyun.org/images/js/*.htm (easylistchina.txt: 4312) +.qiyun.org/images/js/.*\.htm +# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina.txt: 4311) +.qiyipic.com/zongyi/fix/runningman20141008_bg03\.jpg +# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina.txt: 4310) +.qiyipic.com/zongyi/fix/runningman20141008_bg02\.jpg +# ||qiyipic.com/zongyi/fix/mxdj (easylistchina.txt: 4309) +.qiyipic.com/zongyi/fix/mxdj +# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina.txt: 4308) +.qiyipic.com/zongyi/.*Banner01\.jpg +# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina.txt: 4307) +.qiyipic.com/common/fix/wh-leftbanner\.jpg +# ||qiyipic.com/common/fix/rebull_ (easylistchina.txt: 4306) +.qiyipic.com/common/fix/rebull_ +# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina.txt: 4305) +.qiyipic.com/common/fix/dasdasdasdk\.jpg +# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina.txt: 4304) +.qiyipic.com/common/20150528/diyizhuanqu\.jpg +# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina.txt: 4303) +.qiyipic.com/common/20141021/sanjiukehuzhuanqu\.jpg +# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina.txt: 4302) +.qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79\.png +# ||qiyipic.com/common/*tonglan (easylistchina.txt: 4301) +.qiyipic.com/common/.*tonglan +# ||qiyipic.com/common/*_aLink (easylistchina.txt: 4300) +.qiyipic.com/common/.*_aLink +# ||qiyipic.com/common/*980x (easylistchina.txt: 4299) +.qiyipic.com/common/.*980x +# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina.txt: 4298) +.qiyipic.com/common/.*/kehuzhuanqu +# ||qiyipic.com/common/*/banner.jpg (easylistchina.txt: 4297) +.qiyipic.com/common/.*/banner\.jpg +# ||qiyipic.com/common/*/baiyao. (easylistchina.txt: 4296) +.qiyipic.com/common/.*/baiyao\. +# ||qiyipic.com/common/*/980 (easylistchina.txt: 4295) +.qiyipic.com/common/.*/980 +# ||qiyipic.com/common/*/255x205 (easylistchina.txt: 4294) +.qiyipic.com/common/.*/255x205 +# ||qiyipic.com/common/*/250230. (easylistchina.txt: 4293) +.qiyipic.com/common/.*/250230\. +# ||qiyipic.com/common/*/250-230. (easylistchina.txt: 4292) +.qiyipic.com/common/.*/250-230\. +# ||qiyipic.com/common/*/225x230.jpg (easylistchina.txt: 4291) +.qiyipic.com/common/.*/225x230\.jpg +# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina.txt: 4290) +.qiyipic.com/common/.*%E9%80%9A%E6%A0%8F +# ||qiyipic.com/common/$object-subrequest (easylistchina.txt: 4289) +.qiyipic.com/common/ +# ||qiuziti.com/meitu/ddd.gif (easylistchina.txt: 4288) +.qiuziti.com/meitu/ddd\.gif +# ||qiuziti.com/img/rightp20.gif (easylistchina.txt: 4287) +.qiuziti.com/img/rightp20\.gif +# ||qiuyi.cn/qiuyi/cooper/ (easylistchina.txt: 4286) +.qiuyi.cn/qiuyi/cooper/ +# ||qitete.com/sp/ (easylistchina.txt: 4285) +.qitete.com/sp/ +# ||qiqibu.com/js/*.gif (easylistchina.txt: 4284) +.qiqibu.com/js/.*\.gif +# ||qingkong.net/a/980x90_1.jpg (easylistchina.txt: 4282) +.qingkong.net/a/980x90_1\.jpg +# ||qingkai.com/gg_img/ (easylistchina.txt: 4281) +.qingkai.com/gg_img/ +# ||qingkai.com/2009/html/top.htm (easylistchina.txt: 4280) +.qingkai.com/2009/html/top\.htm +# ||qimm.org/Uploads/ad/ (easylistchina.txt: 4279) +.qimm.org/Uploads/ad/ +# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina.txt: 4278) +.qilanxiaozhu.*./(.*/)?data/attachment/portal/ +# ||qikuyou.com/images/images/250.png (easylistchina.txt: 4277) +.qikuyou.com/images/images/250\.png +# ||qihoo.com/hot/text.html?site= (easylistchina.txt: 4276) +.qihoo.com/hot/text\.html\?site= +# ||qihaa.cn/js/ (easylistchina.txt: 4275) +.qihaa.cn/js/ +# ||qidian.com/ploy/cloudary08/ (easylistchina.txt: 4274) +.qidian.com/ploy/cloudary08/ +# ||qidian.com/ploy/*swf (easylistchina.txt: 4273) +.qidian.com/ploy/.*swf +# ||qidian.com/Javascript/usia (easylistchina.txt: 4272) +.qidian.com/Javascript/usia +# ||qidian.com/javascript/SNDAADAltern.js (easylistchina.txt: 4271) +.qidian.com/javascript/SNDAADAltern\.js +# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina.txt: 4270) +.qidian.com/Javascript/NewSNDAPop\.js +# ||qidian.com/Javascript/ksjlajUysi (easylistchina.txt: 4269) +.qidian.com/Javascript/ksjlajUysi +# ||qidian.com/Javascript/kiywyq_ (easylistchina.txt: 4268) +.qidian.com/Javascript/kiywyq_ +# ||qidian.com/Javascript/DoublePop.js (easylistchina.txt: 4267) +.qidian.com/Javascript/DoublePop\.js +# ||qidian.com/Images/book_*_other (easylistchina.txt: 4266) +.qidian.com/Images/book_.*_other +# ||qianzhan.com/html/*_txtlinks.html (easylistchina.txt: 4265) +.qianzhan.com/html/.*_txtlinks\.html +# ||qianmu.org/resource/js/jquery.ads.js (easylistchina.txt: 4264) +.qianmu.org/resource/js/jquery\.ads\.js +# ||qianlong.com/vda/$script (easylistchina.txt: 4263) +.qianlong.com/vda/ +# ||qiangdiao.com/pr.png (easylistchina.txt: 4262) +.qiangdiao.com/pr\.png +# ||qhnews.com/tupian/ (easylistchina.txt: 4261) +.qhnews.com/tupian/ +# ||qhimg.com/t01752fdc322b424d08.jpg (easylistchina.txt: 4260) +.qhimg.com/t01752fdc322b424d08\.jpg +# ||qhimg.com/t01119598c484b6ca8e.jpg (easylistchina.txt: 4259) +.qhimg.com/t01119598c484b6ca8e\.jpg +# ||qhimg.com/t0107605853c9b6d004.jpg (easylistchina.txt: 4258) +.qhimg.com/t0107605853c9b6d004\.jpg +# ||qfans.net/js/open (easylistchina.txt: 4257) +.qfans.net/js/open +# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina.txt: 4256) +.qdmm.com/javascript/SNDAADAltern\.js +# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina.txt: 4255) +.qdmm.com/javascript/NewSNDAPop\.js +# ||qdjimo.com/html/js/ (easylistchina.txt: 4254) +.qdjimo.com/html/js/ +# ||qbox.me/ftq_ (easylistchina.txt: 4253) +.qbox.me/ftq_ +# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina.txt: 4252) +.qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo\.jpg +# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina.txt: 4251) +.qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6\.gif +# ||q.cn/images/notepad.gif (easylistchina.txt: 4250) +.q.cn/images/notepad\.gif +# ||q.cn/images/floater_ (easylistchina.txt: 4249) +.q.cn/images/floater_ +# ||q-touch.com.tw^$subdocument (easylistchina.txt: 4248) +.q-touch.com.tw +# ||pzzc.net/data/attachment/ad2/ (easylistchina.txt: 4247) +.pzzc.net/data/attachment/ad2/ +# ||pzxw.cn/1212banner (easylistchina.txt: 4246) +.pzxw.cn/1212banner +# ||putonghua520.com/skins/10ym/tj (easylistchina.txt: 4245) +.putonghua520.com/skins/10ym/tj +# ||putonghua520.com/skins/10ym/123.jpg (easylistchina.txt: 4244) +.putonghua520.com/skins/10ym/123\.jpg +# ||publish.ad.youth.cn^ (easylistchina.txt: 4243) +.publish.ad.youth.cn +# ||publicize.liao1.com^ (easylistchina.txt: 4242) +.publicize.liao1.com +# ||pub.sxrtv.com/crossdomain.xml (easylistchina.txt: 4241) +.pub.sxrtv.com/crossdomain\.xml +# ||pub.stockstar.com/feedback/ (easylistchina.txt: 4240) +.pub.stockstar.com/feedback/ +# ||pub.mop.com^ (easylistchina.txt: 4239) +.pub.mop.com +# ||pub.funshion.com^ (easylistchina.txt: 4238) +.pub.funshion.com +# ||ptfish.com/08html/ (easylistchina.txt: 4237) +.ptfish.com/08html/ +# ||ptfish.com/*/ad$image,object (easylistchina.txt: 4236) +.ptfish.com/.*/ad +# ||ptbus.com/s.js (easylistchina.txt: 4235) +.ptbus.com/s\.js +# ||ptbs.sme.gov.cn/images/231.gif (easylistchina.txt: 4234) +.ptbs.sme.gov.cn/images/231\.gif +# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina.txt: 4233) +.pstatp.com/resource/toutiao_wap/static/js/lib/ads_ +# ||ps123.net/MyFile/ (easylistchina.txt: 4232) +.ps123.net/MyFile/ +# ||property.hk/ad_$script (easylistchina.txt: 4231) +.property.hk/ad_ +# ||pro.iweihai.cn^ (easylistchina.txt: 4230) +.pro.iweihai.cn +# ||price.com.hk/scripts/ysm.js (easylistchina.txt: 4229) +.price.com.hk/scripts/ysm\.js +# ||price.com.hk/dfp_price.php? (easylistchina.txt: 4228) +.price.com.hk/dfp_price\.php\? +# ||prettyvirgin.com/js/show.html (easylistchina.txt: 4227) +.prettyvirgin.com/js/show\.html +# ||prettyvirgin.com/images/banners/ (easylistchina.txt: 4226) +.prettyvirgin.com/images/banners/ +# ||pptiyu.com/index/js/float.js (easylistchina.txt: 4225) +.pptiyu.com/index/js/float\.js +# ||ppsj.com.cn/ppsj728.gif (easylistchina.txt: 4224) +.ppsj.com.cn/ppsj728\.gif +# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina.txt: 4223) +.ppsj.com.cn/images/usa_250_120\.gif +# ||ppsj.com.cn/images/ppsj300.gif (easylistchina.txt: 4222) +.ppsj.com.cn/images/ppsj300\.gif +# ||pp.7060.la^ (easylistchina.txt: 4221) +.pp.7060.la +# ||poxiao.com/template/default/images/12345.js (easylistchina.txt: 4220) +.poxiao.com/template/default/images/12345\.js +# ||poster.weather.com.cn^ (easylistchina.txt: 4219) +.poster.weather.com.cn +# ||poppur.com/banner/962x100.gif (easylistchina.txt: 4218) +.poppur.com/banner/962x100\.gif +# ||popme.163.com/js/vedioad_ (easylistchina.txt: 4217) +.popme.163.com/js/vedioad_ +# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina.txt: 4216) +.poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408\.jpg +# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina.txt: 4215) +.poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067\.gif +# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina.txt: 4214) +.poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072\.gif +# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina.txt: 4213) +.poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064\.jpg +# ||plurk.com/Ads/ (easylistchina.txt: 4212) +.plurk.com/Ads/ +# ||playgm.cn/data/attachment/portal/ (easylistchina.txt: 4211) +.playgm.cn/data/attachment/portal/ +# ||playad.xjmg.com^ (easylistchina.txt: 4210) +.playad.xjmg.com +# ||pjtime.com/js/show_ad (easylistchina.txt: 4209) +.pjtime.com/js/show_ad +# ||pixfs.net/js/mib_falcon. (easylistchina.txt: 4208) +.pixfs.net/js/mib_falcon\. +# ||pixfs.net/js/mib.min.js (easylistchina.txt: 4207) +.pixfs.net/js/mib\.min\.js +# ||pipi.cn/player/ (easylistchina.txt: 4206) +.pipi.cn/player/ +# ||pingpang.info/uploadfile/tsp.gif (easylistchina.txt: 4205) +.pingpang.info/uploadfile/tsp\.gif +# ||pingpang.info/uploadfile/butterfly.gif (easylistchina.txt: 4204) +.pingpang.info/uploadfile/butterfly\.gif +# ||pingpang.info/uploadfile/950X90B.gif (easylistchina.txt: 4203) +.pingpang.info/uploadfile/950X90B\.gif +# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina.txt: 4202) +.pingpang.info/themes/v1\.0/images/yasaka\. +# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina.txt: 4201) +.pingpang.info/bbs/UploadFile/2014-5/201455214543955851\.gif +# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina.txt: 4200) +.pingpang.info/bbs/UploadFile/2014-11/20141113852238131\.jpg +# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina.txt: 4199) +.pingpang.info/bbs/UploadFile/2013-11/xiom\.gif +# ||pingpang.info/banner/ (easylistchina.txt: 4198) +.pingpang.info/banner/ +# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina.txt: 4197) +.pimg.tw/ifans/1399368662-4247048381\.png +# ||pifa.fobshanghai.com/link/ (easylistchina.txt: 4196) +.pifa.fobshanghai.com/link/ +# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina.txt: 4194) +.pics.wanlibo.com/js/pagemodulestat\.js +# ||pic.zol-img.com.cn^*/box (easylistchina.txt: 4193) +.pic.zol-img.com.cn/.*/box +# ||pic.zol-img.com.cn^$object (easylistchina.txt: 4192) +.pic.zol-img.com.cn +# ||pic.zol-img.com.cn/20*backgrou (easylistchina.txt: 4191) +.pic.zol-img.com.cn/20.*backgrou +# ||pic.yupoo.com/showflash/ (easylistchina.txt: 4190) +.pic.yupoo.com/showflash/ +# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina.txt: 4189) +.pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3\.gif +# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina.txt: 4188) +.pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR\.png +# ||pic.xgo-img.com.cn^ (easylistchina.txt: 4187) +.pic.xgo-img.com.cn +# ||pic.wpdaxue.com^*.js (easylistchina.txt: 4186) +.pic.wpdaxue.com/.*\.js +# ||pic.taian.com^ (easylistchina.txt: 4185) +.pic.taian.com +# ||pic.jd-bbs.com^*.swf (easylistchina.txt: 4183) +.pic.jd-bbs.com/.*\.swf +# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina.txt: 4182) +.pic.gongkong.com/UploadPic/gongkong/ +# ||pic.fengniao.com^ (easylistchina.txt: 4181) +.pic.fengniao.com +# ||pic.ea3w.com^ (easylistchina.txt: 4180) +.pic.ea3w.com +# ||pic.959.cn/media/js/ (easylistchina.txt: 4179) +.pic.959.cn/media/js/ +# ||pic.2u.com.cn^ (easylistchina.txt: 4178) +.pic.2u.com.cn +# ||pic.111cn.net^ (easylistchina.txt: 4177) +.pic.111cn.net +# ||pic.0597kk.com^ (easylistchina.txt: 4176) +.pic.0597kk.com +# ||piaoliang.com/js/gg.js (easylistchina.txt: 4175) +.piaoliang.com/js/gg\.js +# ||piaohua.com/js/yzz/$script (easylistchina.txt: 4174) +.piaohua.com/js/yzz/ +# ||piaohua.com/js/wlfloat.js (easylistchina.txt: 4173) +.piaohua.com/js/wlfloat\.js +# ||piaodown.com/other/*.js (easylistchina.txt: 4172) +.piaodown.com/other/.*\.js +# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina.txt: 4171) +.piao.com.cn/Flash/Scripts/FloatLeftRight_ +# ||phpfans.net/image/sponsors/ (easylistchina.txt: 4170) +.phpfans.net/image/sponsors/ +# ||phpcms.cn/statics/images/video/ad (easylistchina.txt: 4169) +.phpcms.cn/statics/images/video/ad +# ||phpad.cqnews.net^ (easylistchina.txt: 4168) +.phpad.cqnews.net +# ||photofans.cn/cooperator/banner/ (easylistchina.txt: 4167) +.photofans.cn/cooperator/banner/ +# ||photo.erji.com^*.swf (easylistchina.txt: 4166) +.photo.erji.com/.*\.swf +# ||photo.erji.com^*.gif (easylistchina.txt: 4165) +.photo.erji.com/.*\.gif +# ||photo.erji.com/saha.jpg (easylistchina.txt: 4164) +.photo.erji.com/saha\.jpg +# ||pharmnet.com.cn/js/float_div.js (easylistchina.txt: 4163) +.pharmnet.com.cn/js/float_div\.js +# ||pharmnet.com.cn/cnbanner/ (easylistchina.txt: 4162) +.pharmnet.com.cn/cnbanner/ +# ||ph66.com/js/float.js (easylistchina.txt: 4161) +.ph66.com/js/float\.js +# ||ph66.com/bbsgg/ (easylistchina.txt: 4160) +.ph66.com/bbsgg/ +# ||ph66.com/attachment/*.swf (easylistchina.txt: 4159) +.ph66.com/attachment/.*\.swf +# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina.txt: 4158) +.pgzhibo.com/uploads/image/20150902/1441126837\.jpg +# ||pgzhibo.com/uploads/image/20*.gif (easylistchina.txt: 4157) +.pgzhibo.com/uploads/image/20.*\.gif +# ||pg.udn.com/BT/*.swf (easylistchina.txt: 4156) +.pg.udn.com/BT/.*\.swf +# ||pfp.sina.com.cn^$script,subdocument (easylistchina.txt: 4155) +.pfp.sina.com.cn +# ||pfizer.com.tw^$subdocument (easylistchina.txt: 4154) +.pfizer.com.tw +# ||people.com.cn/img/gjt/ (easylistchina.txt: 4153) +.people.com.cn/img/gjt/ +# ||people.com.cn/img/2013people/wza/domready (easylistchina.txt: 4152) +.people.com.cn/img/2013people/wza/domready +# ||people.com.cn/adv/ (easylistchina.txt: 4151) +.people.com.cn/adv/ +# ||people.cn^*/js/m.js (easylistchina.txt: 4150) +.people.cn/.*/js/m\.js +# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina.txt: 4149) +.penglai.com.cn/UploadFile/image/.*\.gif +# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina.txt: 4148) +.peasyun.com/Uploads/Thumbs/advs_ +# ||pd.xxhh.com/list.js (easylistchina.txt: 4147) +.pd.xxhh.com/list\.js +# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina.txt: 4146) +.pcworld.com.cn/Article/UploadFiles/201403/2014031016150885\.jpg +# ||pcstore.com.tw/css/myacc_init.js (easylistchina.txt: 4145) +.pcstore.com.tw/css/myacc_init\.js +# ||pcs1.app.joy.cn^ (easylistchina.txt: 4144) +.pcs1.app.joy.cn +# ||pcpp.com.cn/news/ad/ (easylistchina.txt: 4143) +.pcpp.com.cn/news/ad/ +# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina.txt: 4142) +.pcpp.com.cn/news/a/.*_article_right\.html +# ||pcpp.com.cn*/pcpp.jpg (easylistchina.txt: 4141) +.pcpp.com.cn*./(.*/)?pcpp\.jpg +# ||pconline.com.cn/test/*.html? (easylistchina.txt: 4140) +.pconline.com.cn/test/.*\.html\? +# ||pconline.com.cn/pconline/download/fz/ (easylistchina.txt: 4139) +.pconline.com.cn/pconline/download/fz/ +# ||pconline.com.cn/js/ivy.js (easylistchina.txt: 4138) +.pconline.com.cn/js/ivy\.js +# ||pconline.com.cn/js/ad_ (easylistchina.txt: 4137) +.pconline.com.cn/js/ad_ +# ||pconline.com.cn/intelcorefamily/ (easylistchina.txt: 4136) +.pconline.com.cn/intelcorefamily/ +# ||pconline.com.cn/download/*/intf*.js (easylistchina.txt: 4135) +.pconline.com.cn/download/.*/intf.*\.js +# ||pconline.com.cn/_hux_/ (easylistchina.txt: 4134) +.pconline.com.cn/_hux_/ +# ||pcjishu.com/other/yj300x3006.jpg (easylistchina.txt: 4133) +.pcjishu.com/other/yj300x3006\.jpg +# ||pchome.com.tw/js/idlead.js (easylistchina.txt: 4132) +.pchome.com.tw/js/idlead\.js +# ||pcgames.com.cn/jctj/ (easylistchina.txt: 4130) +.pcgames.com.cn/jctj/ +# ||pcgames.com.cn/g/ (easylistchina.txt: 4129) +.pcgames.com.cn/g/ +# ||pcgames.com.cn/download/newnq/ (easylistchina.txt: 4128) +.pcgames.com.cn/download/newnq/ +# ||pccoo.cn/js/dlv1.0.js (easylistchina.txt: 4127) +.pccoo.cn/js/dlv1\.0\.js +# ||pcbeta.com/static/image/microsoftstore/ (easylistchina.txt: 4126) +.pcbeta.com/static/image/microsoftstore/ +# ||pc3w.com/js/ (easylistchina.txt: 4125) +.pc3w.com/js/ +# ||pc141.com/statics/new_img/info_left.png (easylistchina.txt: 4124) +.pc141.com/statics/new_img/info_left\.png +# ||pc0359.cn/js/un.js (easylistchina.txt: 4123) +.pc0359.cn/js/un\.js +# ||pc0359.cn/data/xzb_haha.js (easylistchina.txt: 4122) +.pc0359.cn/data/xzb_haha\.js +# ||panzz.com/file/ads/ (easylistchina.txt: 4121) +.panzz.com/file/ads/ +# ||panpan.org/templets/ad/ (easylistchina.txt: 4120) +.panpan.org/templets/ad/ +# ||panpan.org/plus/img/ (easylistchina.txt: 4119) +.panpan.org/plus/img/ +# ||panpan.org/other/ (easylistchina.txt: 4118) +.panpan.org/other/ +# ||panpan.org/js/google (easylistchina.txt: 4117) +.panpan.org/js/google +# ||panda.kdnet.net^ (easylistchina.txt: 4116) +.panda.kdnet.net +# ||p8u.hinet.net^ (easylistchina.txt: 4115) +.p8u.hinet.net +# ||p4p.sina.com.cn^ (easylistchina.txt: 4114) +.p4p.sina.com.cn +# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina.txt: 4113) +.p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124\.jpg +# ||p.zol.com.cn/download/detail.js (easylistchina.txt: 4112) +.p.zol.com.cn/download/detail\.js +# ||p.zol-img.com.cn^ (easylistchina.txt: 4111) +.p.zol-img.com.cn +# ||p.szonline.net^ (easylistchina.txt: 4110) +.p.szonline.net +# ||p.kugou.com/?id= (easylistchina.txt: 4109) +.p.kugou.com/\?id= +# ||p.aty.sohu.com/p?cat= (easylistchina.txt: 4108) +.p.aty.sohu.com/p\?cat= +# ||p.37youyou.com/*.jpg (easylistchina.txt: 4107) +.p.37youyou.com/.*\.jpg +# ||oyksoft.com/show/s.php/ (easylistchina.txt: 4106) +.oyksoft.com/show/s\.php/ +# ||overseaschinesemedia.com/img/*.gif (easylistchina.txt: 4105) +.overseaschinesemedia.com/img/.*\.gif +# ||ouyaoxiazai.com^$script,subdocument (easylistchina.txt: 4104) +.ouyaoxiazai.com +# ||outofmemory.cn/static/tgs/ (easylistchina.txt: 4103) +.outofmemory.cn/static/tgs/ +# ||ousns.net/daohang/ (easylistchina.txt: 4102) +.ousns.net/daohang/ +# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina.txt: 4101) +.oschina.net/uploads/cooperation/.*_banner_ +# ||oschina.net/uploads/ad/ (easylistchina.txt: 4100) +.oschina.net/uploads/ad/ +# ||orzx.im/js/*pop (easylistchina.txt: 4099) +.orzx.im/js/.*pop +# ||orzx.im/Document/union/ (easylistchina.txt: 4098) +.orzx.im/Document/union/ +# ||orzx.im/Document/recommend/flashpoint.html (easylistchina.txt: 4097) +.orzx.im/Document/recommend/flashpoint\.html +# ||orsoon.com//images/ku86.jpg (easylistchina.txt: 4096) +# ||orsoon.com*/zhuanti/ (easylistchina.txt: 4095) +.orsoon.com*./(.*/)?zhuanti/ +# ||open-open.com^*_banner. (easylistchina.txt: 4094) +.open-open.com/.*_banner\. +# ||open-open.com/lag336x280.png (easylistchina.txt: 4093) +.open-open.com/lag336x280\.png +# ||open-open.com/jp72890.jpg (easylistchina.txt: 4092) +.open-open.com/jp72890\.jpg +# ||open-open.com/jp240200.jpg (easylistchina.txt: 4091) +.open-open.com/jp240200\.jpg +# ||open-open.com/j300250n.jpg (easylistchina.txt: 4090) +.open-open.com/j300250n\.jpg +# ||onlinedown.net/zhuangjiad/ (easylistchina.txt: 4089) +.onlinedown.net/zhuangjiad/ +# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina.txt: 4088) +.onlinedown.net/newhuagg/.*_pic_ +# ||online.cq.cn/huodong/css/ (easylistchina.txt: 4087) +.online.cq.cn/huodong/css/ +# ||online.cq.cn/commonweb/commonright/right_side (easylistchina.txt: 4086) +.online.cq.cn/commonweb/commonright/right_side +# ||onegreen.net/MyFile/ (easylistchina.txt: 4085) +.onegreen.net/MyFile/ +# ||onedala.tv/uploads/banner/ (easylistchina.txt: 4084) +.onedala.tv/uploads/banner/ +# ||on.cc/js/v2/iframe_ysm_ (easylistchina.txt: 4083) +.on.cc/js/v2/iframe_ysm_ +# ||okbmf.com^*950_120 (easylistchina.txt: 4082) +.okbmf.com/.*950_120 +# ||ok.432kkk.com^ (easylistchina.txt: 4081) +.ok.432kkk.com +# ||oiihk.com/anime/cm.js (easylistchina.txt: 4080) +.oiihk.com/anime/cm\.js +# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina.txt: 4079) +.ofweek.com/StaticPage/gongkong/ad_ +# ||ofweek.com/pop/ad/ (easylistchina.txt: 4078) +.ofweek.com/pop/ad/ +# ||oa.hinews.cn/work/img/ (easylistchina.txt: 4077) +.oa.hinews.cn/work/img/ +# ||nvsheng.com/js/gg.js (easylistchina.txt: 4076) +.nvsheng.com/js/gg\.js +# ||nutrimate.com.tw^$subdocument (easylistchina.txt: 4075) +.nutrimate.com.tw +# ||nttpcs.cn/ax/incoto.gif (easylistchina.txt: 4074) +.nttpcs.cn/ax/incoto\.gif +# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina.txt: 4073) +.ntpcb.com/html/channel/citypark/images/p83_temp_ +# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina.txt: 4072) +.ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168\.png +# ||nownews.com/include_house/product.html (easylistchina.txt: 4071) +.nownews.com/include_house/product\.html +# ||nownews.com/events/ (easylistchina.txt: 4070) +.nownews.com/events/ +# ||nokiacn.net/gg*.htm (easylistchina.txt: 4069) +.nokiacn.net/gg.*\.htm +# ||nokiacn.net/baidu.htm (easylistchina.txt: 4068) +.nokiacn.net/baidu\.htm +# ||no1.168abc.net/upload/ (easylistchina.txt: 4067) +.no1.168abc.net/upload/ +# ||nnnews.net/public/xqymgg/ (easylistchina.txt: 4066) +.nnnews.net/public/xqymgg/ +# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina.txt: 4064) +.njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds +# ||niwozhi.net/960x90.gif (easylistchina.txt: 4063) +.niwozhi.net/960x90\.gif +# ||niutuku.com/skin/style2013/ad/ (easylistchina.txt: 4062) +.niutuku.com/skin/style2013/ad/ +# ||niu20.com/g/ (easylistchina.txt: 4061) +.niu20.com/g/ +# ||ngacn.cc/common_res/js_adscommon.js (easylistchina.txt: 4060) +.ngacn.cc/common_res/js_adscommon\.js +# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina.txt: 4059) +.nextmedia.com/web_images/recruit_banner\.jpg +# ||nexoncn.com/img/pic/rili.gif (easylistchina.txt: 4058) +.nexoncn.com/img/pic/rili\.gif +# ||newssc.org/2014images/cd*yy (easylistchina.txt: 4057) +.newssc.org/2014images/cd.*yy +# ||newssc.org/2014images/1378110741538.jpg (easylistchina.txt: 4056) +.newssc.org/2014images/1378110741538\.jpg +# ||newsmth.net/nForum/files/adv/ (easylistchina.txt: 4055) +.newsmth.net/nForum/files/adv/ +# ||newsmth.net/nForum/baiduunion/ (easylistchina.txt: 4054) +.newsmth.net/nForum/baiduunion/ +# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina.txt: 4053) +.newsgroup.la/search/ysm/pam430x80\.swf +# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina.txt: 4052) +.newsgroup.la/ad/yahoo/fad\.gif +# ||news18a.com/image/ad_ina/ (easylistchina.txt: 4051) +.news18a.com/image/ad_ina/ +# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina.txt: 4050) +.news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c\.png +# ||news.tom.com/v2008.js (easylistchina.txt: 4049) +.news.tom.com/v2008\.js +# ||news.sina.com.tw/js/ti.js (easylistchina.txt: 4048) +.news.sina.com.tw/js/ti\.js +# ||news.sina.com.cn/js/792/*head*.js (easylistchina.txt: 4046) +.news.sina.com.cn/js/792/.*head.*\.js +# ||news.hz66.com/IAA/201111/ (easylistchina.txt: 4045) +.news.hz66.com/IAA/201111/ +# ||news.cn/news/ad/ (easylistchina.txt: 4044) +.news.cn/news/ad/ +# ||news.cn/forum/script/float2.js (easylistchina.txt: 4043) +.news.cn/forum/script/float2\.js +# ||news.0898.net/NMediaFile/*.swf (easylistchina.txt: 4042) +.news.0898.net/NMediaFile/.*\.swf +# ||news.0898.net/NMediaFile/*.gif (easylistchina.txt: 4041) +.news.0898.net/NMediaFile/.*\.gif +# ||newhua.com/newhuagg/gg_search_ (easylistchina.txt: 4040) +.newhua.com/newhuagg/gg_search_ +# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina.txt: 4039) +.new-icon.ol-img.com/jslib/ad_new\.js +# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina.txt: 4038) +.new-icon.ol-img.com/jslib/ad\.down\.js +# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina.txt: 4037) +.new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao\.jpg +# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina.txt: 4036) +.netdna-cdn.com/wp-content/plugins/popover/ +# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina.txt: 4035) +.neotv.com.cn/images/avs/tc/tc\.js +# ||nen.com.cn/service/js/beitou (easylistchina.txt: 4034) +.nen.com.cn/service/js/beitou +# ||nen.com.cn/eap/ (easylistchina.txt: 4033) +.nen.com.cn/eap/ +# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina.txt: 4032) +.neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b\.jpg +# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina.txt: 4031) +.ncnews.com.cn/statics/js/ban/ix/ban +# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina.txt: 4030) +.ncnews.com.cn/statics/images/2015/ban/dh\.swf +# ||ncdiy.com/webindex/300-250AD.swf (easylistchina.txt: 4029) +.ncdiy.com/webindex/300-250AD\.swf +# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina.txt: 4028) +.nba.weibo.com/images/bg/bg_heat\.jpg +# ||nb155.com/images/mysshok.png (easylistchina.txt: 4027) +.nb155.com/images/mysshok\.png +# ||narutom.com/v2/v/$subdocument (easylistchina.txt: 4026) +.narutom.com/v2/v/ +# ||narutom.com/v2/js/ca.js (easylistchina.txt: 4025) +.narutom.com/v2/js/ca\.js +# ||narutom.com/js/jsg2.js (easylistchina.txt: 4024) +.narutom.com/js/jsg2\.js +# ||nanrenwo.net/theme/2013/js/top.js (easylistchina.txt: 4023) +.nanrenwo.net/theme/2013/js/top\.js +# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina.txt: 4022) +.nanrenwo.net/theme/2013/js/popup.*\.js +# ||nanrenshu.com/rmb/st_dh.js (easylistchina.txt: 4021) +.nanrenshu.com/rmb/st_dh\.js +# ||nanren400.com/goto/ (easylistchina.txt: 4020) +.nanren400.com/goto/ +# ||nanhai.hinews.cn/zt/img/ (easylistchina.txt: 4019) +.nanhai.hinews.cn/zt/img/ +# ||namipan.cc/includes/js/digg.js (easylistchina.txt: 4018) +.namipan.cc/includes/js/digg\.js +# ||namipan.cc/baidu/ (easylistchina.txt: 4017) +.namipan.cc/baidu/ +# ||najiadian.cn/shuang11.js (easylistchina.txt: 4016) +.najiadian.cn/shuang11\.js +# ||n2.hk/promo/ (easylistchina.txt: 4015) +.n2.hk/promo/ +# ||mzyz.com/image*/tj/ (easylistchina.txt: 4014) +.mzyz.com/image.*/tj/ +# ||mzyfz.*/modules/46/ (easylistchina.txt: 4013) +.mzyfz.*./(.*/)?modules/46/ +# ||mywpku.com/adminvm.jpg (easylistchina.txt: 4012) +.mywpku.com/adminvm\.jpg +# ||mywpku.com/*-banner. (easylistchina.txt: 4011) +.mywpku.com/.*-banner\. +# ||myt520.com/images/jiaoyou (easylistchina.txt: 4010) +.myt520.com/images/jiaoyou +# ||myt520.com/images/4493.jpg (easylistchina.txt: 4009) +.myt520.com/images/4493\.jpg +# ||myqcloud.com/js/easou.js (easylistchina.txt: 4008) +.myqcloud.com/js/easou\.js +# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina.txt: 4007) +.mymusic.net.tw/upload/mobile_web_tmp/indexad01\. +# ||myhard.com/s?z= (easylistchina.txt: 4006) +.myhard.com/s\?z= +# ||myhack58.com/js/top (easylistchina.txt: 4005) +.myhack58.com/js/top +# ||myhack58.com/js/banner.js (easylistchina.txt: 4004) +.myhack58.com/js/banner\.js +# ||myhack58.com/acdb02/ (easylistchina.txt: 4003) +.myhack58.com/acdb02/ +# ||myhack58.com/abcd01/ (easylistchina.txt: 4002) +.myhack58.com/abcd01/ +# ||mydrivers.com/www/2015/s1120151105.png (easylistchina.txt: 4000) +.mydrivers.com/www/2015/s1120151105\.png +# ||mydrivers.com/www/*-1000x90. (easylistchina.txt: 3999) +.mydrivers.com/www/.*-1000x90\. +# ||mycodes.net/js/hf_txt.js (easylistchina.txt: 3998) +.mycodes.net/js/hf_txt\.js +# ||mycodes.net/js/down_txt.js (easylistchina.txt: 3997) +.mycodes.net/js/down_txt\.js +# ||mycodes.net/js/$image (easylistchina.txt: 3996) +.mycodes.net/js/ +# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina.txt: 3995) +.mybjx.net/theme/default/js/common/mtibjx\.js +# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina.txt: 3994) +.mybjx.net/theme/default/js/common/duilianchn\.js +# ||myad.toocle.com^ (easylistchina.txt: 3993) +.myad.toocle.com +# ||my0832.com/xyz/upload/ (easylistchina.txt: 3992) +.my0832.com/xyz/upload/ +# ||my0511.com/aadd/ (easylistchina.txt: 3991) +.my0511.com/aadd/ +# ||my0511.com/*/ad_ (easylistchina.txt: 3990) +.my0511.com/.*/ad_ +# ||mxwz.com/swf/yidong2015.swf (easylistchina.txt: 3989) +.mxwz.com/swf/yidong2015\.swf +# ||mwsl.qiniudn.com/250x250- (easylistchina.txt: 3988) +.mwsl.qiniudn.com/250x250- +# ||mw6.me/images/*.gif (easylistchina.txt: 3987) +.mw6.me/images/.*\.gif +# ||muyuge.net/js/bb/ (easylistchina.txt: 3986) +.muyuge.net/js/bb/ +# ||muyuge.com/js/KillABP.js (easylistchina.txt: 3985) +.muyuge.com/js/KillABP\.js +# ||muyuge.com/js/bb/ (easylistchina.txt: 3984) +.muyuge.com/js/bb/ +# ||mtrend.cn/images/prome/ (easylistchina.txt: 3983) +.mtrend.cn/images/prome/ +# ||mtksj.com/images/ad1225.jpg (easylistchina.txt: 3982) +.mtksj.com/images/ad1225\.jpg +# ||mtime.cn/tg/ (easylistchina.txt: 3981) +.mtime.cn/tg/ +# ||mt30.com/ok/ (easylistchina.txt: 3980) +.mt30.com/ok/ +# ||msn.ynet.com/vtui_js01.js (easylistchina.txt: 3979) +.msn.ynet.com/vtui_js01\.js +# ||msn.people.com.cn/css/2010tianrun/ (easylistchina.txt: 3978) +.msn.people.com.cn/css/2010tianrun/ +# ||msn.com/homep_ad (easylistchina.txt: 3977) +.msn.com/homep_ad +# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina.txt: 3976) +.mscbsc.com/gbook/telecomhr292x90\.gif +# ||ms211.com/js/tf.js (easylistchina.txt: 3975) +.ms211.com/js/tf\.js +# ||ms211.com/about/$subdocument (easylistchina.txt: 3974) +.ms211.com/about/ +# ||ms211.com/211tf/ (easylistchina.txt: 3973) +.ms211.com/211tf/ +# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina.txt: 3972) +.mracg.com/data/attachment/portal/201412/17/ +# ||mql5.com/10/0/*.gif (easylistchina.txt: 3971) +.mql5.com/10/0/.*\.gif +# ||mp3.haogeba.com^$image,object (easylistchina.txt: 3970) +.mp3.haogeba.com +# ||motorfans.com.cn/iggs_system/ (easylistchina.txt: 3969) +.motorfans.com.cn/iggs_system/ +# ||motorfans.com.cn/igg/ (easylistchina.txt: 3968) +.motorfans.com.cn/igg/ +# ||moratame.tw/img/contents/banner (easylistchina.txt: 3967) +.moratame.tw/img/contents/banner +# ||mopxing.com/skin/sex/js/*content (easylistchina.txt: 3966) +.mopxing.com/skin/sex/js/.*content +# ||mopxing.com/skin/sex/js/*banner (easylistchina.txt: 3965) +.mopxing.com/skin/sex/js/.*banner +# ||mopxing.com/skin/sex/js/*ad (easylistchina.txt: 3964) +.mopxing.com/skin/sex/js/.*ad +# ||mopimg.cn/dc/ (easylistchina.txt: 3963) +.mopimg.cn/dc/ +# ||moonbt.com/template/skin1/images/g_js/ (easylistchina.txt: 3962) +.moonbt.com/template/skin1/images/g_js/ +# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina.txt: 3961) +.moonbbs.com/static/image/banner/fashionmoon\.png +# ||moonbbs.com/data/attachment/portal/ (easylistchina.txt: 3960) +.moonbbs.com/data/attachment/portal/ +# ||monnsutogatya.com/himg/monst/ (easylistchina.txt: 3959) +.monnsutogatya.com/himg/monst/ +# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina.txt: 3958) +.moneyweekly.com.tw/Uploads/AD/.*970x +# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina.txt: 3957) +.moneyweekly.com.tw/UC/JQueryJson\.aspx/MwAD +# ||money.qz828.com^ (easylistchina.txt: 3956) +.money.qz828.com +# ||money.bumimi.com^ (easylistchina.txt: 3955) +.money.bumimi.com +# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina.txt: 3953) +.momoshop.com.tw/goods/GoodsDetail\.jsp\? +# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina.txt: 3952) +.moe123.com/static/img/2014_fattycat\.jpg +# ||moe.la/images/banner/ (easylistchina.txt: 3951) +.moe.la/images/banner/ +# ||moe.fm/public/images/fm/promotion_ (easylistchina.txt: 3950) +.moe.fm/public/images/fm/promotion_ +# ||mobile01.com/300x100.swf (easylistchina.txt: 3949) +.mobile01.com/300x100\.swf +# ||mnw.cn/script/info/baiduadm.html? (easylistchina.txt: 3948) +.mnw.cn/script/info/baiduadm\.html\? +# ||mmtalk.net/images/banner (easylistchina.txt: 3947) +.mmtalk.net/images/banner +# ||mm387.com/images/*.gif (easylistchina.txt: 3946) +.mm387.com/images/.*\.gif +# ||mlbuy.com/gg.js (easylistchina.txt: 3945) +.mlbuy.com/gg\.js +# ||miyun360.com/data/attachment/portal/ (easylistchina.txt: 3944) +.miyun360.com/data/attachment/portal/ +# ||mitbbs.com/ad_ (easylistchina.txt: 3943) +.mitbbs.com/ad_ +# ||mitbbs.ca/ad_ (easylistchina.txt: 3942) +.mitbbs.ca/ad_ +# ||mitbbs.*/servicedata/static_ad.php (easylistchina.txt: 3941) +.mitbbs.*./(.*/)?servicedata/static_ad\.php +# ||missyuan.com/sy/ (easylistchina.txt: 3940) +.missyuan.com/sy/ +# ||misaka.cn^*/600px- (easylistchina.txt: 3939) +.misaka.cn/.*/600px- +# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina.txt: 3938) +.mimg.127.net/ggimg/all/img18/140218_yixin_780x96\.jpg +# ||miljinhua.com/GD/ (easylistchina.txt: 3937) +.miljinhua.com/GD/ +# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina.txt: 3936) +.mil.news.sina.com.cn/iframe/109/2013/1015/hotpic\.html +# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina.txt: 3935) +.mil.news.sina.com.cn/iframe/109/2012/1024/photo\.html +# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina.txt: 3934) +.mil.news.sina.com.cn/iframe/.*/slideiframe\.html +# ||mifengtd.cn/ad- (easylistchina.txt: 3933) +.mifengtd.cn/ad- +# ||midifan.com/aaa/ (easylistchina.txt: 3932) +.midifan.com/aaa/ +# ||microcontrol.cn/HomeImages/AD/ (easylistchina.txt: 3931) +.microcontrol.cn/HomeImages/AD/ +# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina.txt: 3930) +.microcontrol.cn/bbs/images/AD755_150\.swf +# ||mianbao99.com/bd/ (easylistchina.txt: 3929) +.mianbao99.com/bd/ +# ||mianbao99.com/a/mianbao/indextan.js (easylistchina.txt: 3928) +.mianbao99.com/a/mianbao/indextan\.js +# ||mhhf.net/fserFiles/711x90.jpg (easylistchina.txt: 3927) +.mhhf.net/fserFiles/711x90\.jpg +# ||mgbbs.cn/js/float.js (easylistchina.txt: 3926) +.mgbbs.cn/js/float\.js +# ||mfxp.com/images/ (easylistchina.txt: 3925) +.mfxp.com/images/ +# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina.txt: 3924) +.mfacelive.com/Scripts/social/openchannel_min\.js +# ||meizhou.com/images/topbanner (easylistchina.txt: 3923) +.meizhou.com/images/topbanner +# ||meitu.com/js/floatxiuxiu.js (easylistchina.txt: 3922) +.meitu.com/js/floatxiuxiu\.js +# ||meishichina.com/v3/ (easylistchina.txt: 3921) +.meishichina.com/v3/ +# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina.txt: 3920) +.meinv.com/templates/meinv/js/.*_banner\.js +# ||meiliren.net/tuijs/ (easylistchina.txt: 3918) +.meiliren.net/tuijs/ +# ||meilele.com/js/recad. (easylistchina.txt: 3917) +.meilele.com/js/recad\. +# ||medsci.cn/aimgs/$script (easylistchina.txt: 3915) +.medsci.cn/aimgs/ +# ||media.cheshi-img.com^ (easylistchina.txt: 3914) +.media.cheshi-img.com +# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina.txt: 3912) +.mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ +# ||mcncc.com/yeyou/gg.js (easylistchina.txt: 3911) +.mcncc.com/yeyou/gg\.js +# ||mcncc.com/yeyou/*.htm (easylistchina.txt: 3910) +.mcncc.com/yeyou/.*\.htm +# ||mbalib.com/wiki/common/wikibits.js (easylistchina.txt: 3909) +.mbalib.com/wiki/common/wikibits\.js +# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina.txt: 3908) +.maxthonimg.com/cp/ad/1420792739\.jpg +# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina.txt: 3907) +.maxthonimg.com/cp/ad/1420765807\.jpg +# ||mat1.gtimg.com/ent/flash/*300 (easylistchina.txt: 3906) +.mat1.gtimg.com/ent/flash/.*300 +# ||mat1.gtimg.com/cq/flash/ (easylistchina.txt: 3905) +.mat1.gtimg.com/cq/flash/ +# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina.txt: 3904) +.mat1.gtimg.com/2014/webtips/ola2014tips +# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina.txt: 3903) +.mat1.gtimg.com/2014/vikkydu/GA/haier +# ||masok.cn/red/ (easylistchina.txt: 3902) +.masok.cn/red/ +# ||masadora.net/kakusan- (easylistchina.txt: 3901) +.masadora.net/kakusan- +# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina.txt: 3900) +.marstv.com/uploadfile/game/20150728/1438055654\.png +# ||market.duowan.com^ (easylistchina.txt: 3899) +.market.duowan.com +# ||market.21cn.com^ (easylistchina.txt: 3898) +.market.21cn.com +# ||market.178.com^ (easylistchina.txt: 3897) +.market.178.com +# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina.txt: 3896) +.maolihui.com/wp-content/themes/miaonew/images/adb +# ||manage.wdfans.cn^ (easylistchina.txt: 3895) +.manage.wdfans.cn +# ||manads.static.olcdn.com^ (easylistchina.txt: 3894) +.manads.static.olcdn.com +# ||mall.xinkuaituan.com/zhuanti/ (easylistchina.txt: 3893) +.mall.xinkuaituan.com/zhuanti/ +# ||maituan.com/admin/indexflash/pic/gg (easylistchina.txt: 3892) +.maituan.com/admin/indexflash/pic/gg +# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina.txt: 3891) +.maipiao.96900.com.cn/jtjt/js/jtjtgg\.js +# ||maipiao.96900.com.cn/js/indexgg (easylistchina.txt: 3890) +.maipiao.96900.com.cn/js/indexgg +# ||mail.qq.com/lview? (easylistchina.txt: 3889) +.mail.qq.com/lview\? +# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina.txt: 3888) +.mail.pchome.com.tw/img/classifieds/300120\.gif +# ||mahua.com/www/default/js/replace_ab.js (easylistchina.txt: 3887) +.mahua.com/www/default/js/replace_ab\.js +# ||mahua.com/www/default/js/mahua_show.js (easylistchina.txt: 3886) +.mahua.com/www/default/js/mahua_show\.js +# ||mahua.com/api/$subdocument (easylistchina.txt: 3885) +.mahua.com/api/ +# ||macx.cn/js/f.txt.js (easylistchina.txt: 3884) +.macx.cn/js/f\.txt\.js +# ||macd.cn/macd-topads.html (easylistchina.txt: 3883) +.macd.cn/macd-topads\.html +# ||macappbox.com/d/file/p/*.gif (easylistchina.txt: 3882) +.macappbox.com/d/file/p/.*\.gif +# ||ma.baiducdn2.com^*/main.js?t= (easylistchina.txt: 3881) +.ma.baiducdn2.com/.*/main\.js\?t= +# ||m1905.com/asp_js/k.js (easylistchina.txt: 3880) +.m1905.com/asp_js/k\.js +# ||m1905.cn/images/video/BannerImg (easylistchina.txt: 3879) +.m1905.cn/images/video/BannerImg +# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina.txt: 3878) +.m1905.cn/images/bg_index_hgn\.jpg +# ||m1905.cn/afp/mdsfw.js (easylistchina.txt: 3877) +.m1905.cn/afp/mdsfw\.js +# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina.txt: 3876) +.m.tiebaimg.com/timg\?wapp[^\w%.-].*imgtype=0 +# ||m.aty.sohu.com^ (easylistchina.txt: 3875) +.m.aty.sohu.com +# ||lzqss.net/data/attachment/portal/ (easylistchina.txt: 3874) +.lzqss.net/data/attachment/portal/ +# ||lzep.cn^*/2014ad/ (easylistchina.txt: 3873) +.lzep.cn/.*/2014ad/ +# ||lzep.cn^*/2013ad/ (easylistchina.txt: 3872) +.lzep.cn/.*/2013ad/ +# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina.txt: 3871) +.lzep.cn/uploadfile/hftv/2014/0901/20140901044836216\.jpg +# ||lzep.cn/images/*/ad (easylistchina.txt: 3870) +.lzep.cn/images/.*/ad +# ||lzep.cn/ep/sda/*_300X (easylistchina.txt: 3869) +.lzep.cn/ep/sda/.*_300X +# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina.txt: 3868) +.lzep.cn/ep/sda/.*_1000x60_ +# ||lzep.cn/ep/old/finance/ad (easylistchina.txt: 3867) +.lzep.cn/ep/old/finance/ad +# ||lzep.cn/ep/js/index_window.js (easylistchina.txt: 3866) +.lzep.cn/ep/js/index_window\.js +# ||lzep.cn/ep/ads/ (easylistchina.txt: 3865) +.lzep.cn/ep/ads/ +# ||lzep.cn/data/js/1*.js (easylistchina.txt: 3864) +.lzep.cn/data/js/1.*\.js +# ||lz.chinanews.com/images/flash/00.swf (easylistchina.txt: 3863) +.lz.chinanews.com/images/flash/00\.swf +# ||lywww.com/index_topa.php (easylistchina.txt: 3862) +.lywww.com/index_topa\.php +# ||lywww.com/header_pic.php (easylistchina.txt: 3861) +.lywww.com/header_pic\.php +# ||lywww.com/data/js/3 (easylistchina.txt: 3860) +.lywww.com/data/js/3 +# ||lywww.com/data/js/2 (easylistchina.txt: 3859) +.lywww.com/data/js/2 +# ||lywww.com/data/js/1 (easylistchina.txt: 3858) +.lywww.com/data/js/1 +# ||lywww.com/data/js.php?id= (easylistchina.txt: 3857) +.lywww.com/data/js\.php\?id= +# ||lyd.com.cn^*950-90. (easylistchina.txt: 3856) +.lyd.com.cn/.*950-90\. +# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina.txt: 3855) +.ly.shangdu.com/lyinfo/zlwz/flash/ +# ||ly.js.cn/adv/ (easylistchina.txt: 3854) +.ly.js.cn/adv/ +# ||lxty66.com/js/float.js (easylistchina.txt: 3853) +.lxty66.com/js/float\.js +# ||lxting.com^ (easylistchina.txt: 3852) +.lxting.com +# ||luuu1.com/g/ (easylistchina.txt: 3851) +.luuu1.com/g/ +# ||luckstatic.v1.cn/st/10000/ (easylistchina.txt: 3850) +.luckstatic.v1.cn/st/10000/ +# ||ltxszw.com/js/350.png (easylistchina.txt: 3849) +.ltxszw.com/js/350\.png +# ||ltwbook.com/js/l_ (easylistchina.txt: 3848) +.ltwbook.com/js/l_ +# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina.txt: 3847) +.lrjz100.u.qiniudn.com/rmb/bxd\.jpg +# ||loveshang.com/pic/*.swf (easylistchina.txt: 3846) +.loveshang.com/pic/.*\.swf +# ||lotour.com/Honda/ad/ (easylistchina.txt: 3845) +.lotour.com/Honda/ad/ +# ||look4lib.com/js/bnr_ (easylistchina.txt: 3844) +.look4lib.com/js/bnr_ +# ||longyu.cc/bucket/flash/ (easylistchina.txt: 3843) +.longyu.cc/bucket/flash/ +# ||longyu.cc/adg/ (easylistchina.txt: 3842) +.longyu.cc/adg/ +# ||longbahao.com/js/ad- (easylistchina.txt: 3841) +.longbahao.com/js/ad- +# ||longbahao.com/asd.js (easylistchina.txt: 3840) +.longbahao.com/asd\.js +# ||loldk.com/res/media/fanxing_ (easylistchina.txt: 3839) +.loldk.com/res/media/fanxing_ +# ||lofter.com/mailEntryMobile.do (easylistchina.txt: 3838) +.lofter.com/mailEntryMobile\.do +# ||lofter.com/mailEntry.do?*ad= (easylistchina.txt: 3837) +.lofter.com/mailEntry\.do\?.*ad= +# ||lnzq5.com/js/shuanglian.js (easylistchina.txt: 3836) +.lnzq5.com/js/shuanglian\.js +# ||lnd.com.cn/site1/*.swf (easylistchina.txt: 3835) +.lnd.com.cn/site1/.*\.swf +# ||ln.xinhuanet.com/inc/ (easylistchina.txt: 3834) +.ln.xinhuanet.com/inc/ +# ||ljia.net/vipflash/pop_footer.js (easylistchina.txt: 3833) +.ljia.net/vipflash/pop_footer\.js +# ||liyuanwang.com/nongli.gif (easylistchina.txt: 3832) +.liyuanwang.com/nongli\.gif +# ||livefilestore.com^*/imj160x200.gif (easylistchina.txt: 3831) +.livefilestore.com/.*/imj160x200\.gif +# ||liveany.com/images/8d8d.gif (easylistchina.txt: 3830) +.liveany.com/images/8d8d\.gif +# ||linuxidc.com/linuxfile/y9.js (easylistchina.txt: 3829) +.linuxidc.com/linuxfile/y9\.js +# ||linuxidc.com/linuxfile/list (easylistchina.txt: 3828) +.linuxidc.com/linuxfile/list +# ||linuxidc.com/linuxfile/linux$script (easylistchina.txt: 3827) +.linuxidc.com/linuxfile/linux +# ||linuxeden.com/plus/web_js.php (easylistchina.txt: 3826) +.linuxeden.com/plus/web_js\.php +# ||linkwan.com/gb/javascript/c5- (easylistchina.txt: 3825) +.linkwan.com/gb/javascript/c5- +# ||linkwan.com/gb/javascript/b4.js (easylistchina.txt: 3824) +.linkwan.com/gb/javascript/b4\.js +# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina.txt: 3823) +.linkwan.com/gb/broadmeter/speed/cp\.js +# ||links.cn/mmshow (easylistchina.txt: 3822) +.links.cn/mmshow +# ||linkhelper.cn/mmshow (easylistchina.txt: 3821) +.linkhelper.cn/mmshow +# ||link.fobshanghai.com^ (easylistchina.txt: 3820) +.link.fobshanghai.com +# ||lingdian98.com^ (easylistchina.txt: 3819) +.lingdian98.com +# ||life.e0575.com^ (easylistchina.txt: 3818) +.life.e0575.com +# ||liepin.com/event/jobadver/ (easylistchina.txt: 3817) +.liepin.com/event/jobadver/ +# ||licai18.com/pic/*.swf (easylistchina.txt: 3816) +.licai18.com/pic/.*\.swf +# ||licai18.com/bk/$object (easylistchina.txt: 3815) +.licai18.com/bk/ +# ||liba.com/ads/ (easylistchina.txt: 3814) +.liba.com/ads/ +# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina.txt: 3813) +.liaoxuefeng.com/files/attachments/00144.*/0 +# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina.txt: 3812) +.liaoing.com/image/picture_g/zhengzhou/index/.*\.swf +# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina.txt: 3811) +.liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng\.swf +# ||liaoing.com/egou/ (easylistchina.txt: 3810) +.liaoing.com/egou/ +# ||liao1.com/publicize/file/news_detail_ (easylistchina.txt: 3809) +.liao1.com/publicize/file/news_detail_ +# ||liao1.com/js/floatVideoAd.js (easylistchina.txt: 3808) +.liao1.com/js/floatVideoAd\.js +# ||liangzijie.com/Runtime/ (easylistchina.txt: 3807) +.liangzijie.com/Runtime/ +# ||liangjan.com/style/img/banner (easylistchina.txt: 3806) +.liangjan.com/style/img/banner +# ||liangjan.com/js/show_ (easylistchina.txt: 3805) +.liangjan.com/js/show_ +# ||liangchan.net/adf/ (easylistchina.txt: 3804) +.liangchan.net/adf/ +# ||liangchan.net/aaddaadd/ (easylistchina.txt: 3803) +.liangchan.net/aaddaadd/ +# ||lh168.net^*/attachment/portal/ (easylistchina.txt: 3802) +.lh168.net/.*/attachment/portal/ +# ||lh168.net/extra/ads/ (easylistchina.txt: 3801) +.lh168.net/extra/ads/ +# ||lezhuan.com/js/spread.js (easylistchina.txt: 3800) +.lezhuan.com/js/spread\.js +# ||letvimg.com^*_phone/ (easylistchina.txt: 3799) +.letvimg.com/.*_phone/ +# ||letvimg.com^*/108x70$object (easylistchina.txt: 3798) +.letvimg.com/.*/108x70 +# ||letvimg.com/img/201503/19/uc1/ (easylistchina.txt: 3797) +.letvimg.com/img/201503/19/uc1/ +# ||letvimg.com/gugwl/*.swf (easylistchina.txt: 3796) +.letvimg.com/gugwl/.*\.swf +# ||letvimg.com*gugwl/$object-subrequest (easylistchina.txt: 3795) +.letvimg.com*./.*gugwl/ +.letvimg.com*gugwl +# ||letvcdn.com/js/*_focus_flash.js (easylistchina.txt: 3794) +.letvcdn.com/js/.*_focus_flash\.js +# ||letv.com/s?ark=*&cis= (easylistchina.txt: 3793) +.letv.com/s\?ark=.*&cis= +# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina.txt: 3792) +.letv.com/pzt/hyhmzq/index\.shtml +# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina.txt: 3791) +.letsebuy.com/static/image/common/dm_cn_130\.jpg +# ||leshen.com/skin/m/action/ad. (easylistchina.txt: 3790) +.leshen.com/skin/m/action/ad\. +# ||lepan.cc/images/yd/ (easylistchina.txt: 3789) +.lepan.cc/images/yd/ +# ||lelevod.com/js/abc/t (easylistchina.txt: 3788) +.lelevod.com/js/abc/t +# ||lelevod.com/js/abc/p (easylistchina.txt: 3787) +.lelevod.com/js/abc/p +# ||lekan.com^*&stopTime= (easylistchina.txt: 3786) +.lekan.com/.*&stopTime= +# ||leiting001.com/bg/ltgg/ (easylistchina.txt: 3785) +.leiting001.com/bg/ltgg/ +# ||leiqun.snxyf.com^ (easylistchina.txt: 3784) +.leiqun.snxyf.com +# ||lecai.com/page/zhuanti/baidu/ (easylistchina.txt: 3783) +.lecai.com/page/zhuanti/baidu/ +# ||ld0766.com/*20*a/ (easylistchina.txt: 3782) +.ld0766.com/.*20.*a/ +# ||lbx777.com/z_gegz/pic/ (easylistchina.txt: 3781) +.lbx777.com/z_gegz/pic/ +# ||lbx777.*/css/lbxgg02 (easylistchina.txt: 3780) +.lbx777.*./(.*/)?css/lbxgg02 +# ||lbx777.*/css/300.js (easylistchina.txt: 3779) +.lbx777.*./(.*/)?css/300\.js +# ||lawtv.com.cn/skin/stop.swf (easylistchina.txt: 3778) +.lawtv.com.cn/skin/stop\.swf +# ||law-lib.com/2009_ad/ (easylistchina.txt: 3777) +.law-lib.com/2009_ad/ +# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina.txt: 3776) +.laozuo.org/wp-content/themes/weisaysimple/js/single-bottom\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina.txt: 3775) +.laozuo.org/wp-content/themes/weisaysimple/js/sidebar +# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina.txt: 3774) +.laozuo.org/wp-content/themes/weisaysimple/js/index-top\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina.txt: 3773) +.laozuo.org/wp-content/themes/weisaysimple/js/content40width\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina.txt: 3772) +.laozuo.org/wp-content/themes/weisaysimple/js/banner\.js +# ||laoyuegou.com/js/*_couplet_ (easylistchina.txt: 3771) +.laoyuegou.com/js/.*_couplet_ +# ||laoyuegou.com/img/*/banner/ (easylistchina.txt: 3770) +.laoyuegou.com/img/.*/banner/ +# ||laonanren.com/oldman/ (easylistchina.txt: 3769) +.laonanren.com/oldman/ +# ||laogu.com/my/ad (easylistchina.txt: 3768) +.laogu.com/my/ad +# ||laogu.com/laogubbs/my/ (easylistchina.txt: 3767) +.laogu.com/laogubbs/my/ +# ||laod.cn/wp-content/uploads/*/AD (easylistchina.txt: 3766) +.laod.cn/wp-content/uploads/.*/AD +# ||lanxicy.com/images/rili.gif (easylistchina.txt: 3765) +.lanxicy.com/images/rili\.gif +# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina.txt: 3764) +.lanrenzhijia.com/uploads/ibeifeng +# ||langya.cn/images/ad_down.js (easylistchina.txt: 3763) +.langya.cn/images/ad_down\.js +# ||langya.cn/2014html/ad/ (easylistchina.txt: 3762) +.langya.cn/2014html/ad/ +# ||langya.cn/2014html/2014ad_ (easylistchina.txt: 3761) +.langya.cn/2014html/2014ad_ +# ||langxi.org/langxi/*900$image,object (easylistchina.txt: 3760) +.langxi.org/langxi/.*900 +# ||language-center.com.tw/udn/ (easylistchina.txt: 3759) +.language-center.com.tw/udn/ +# ||landiannews.com/tui/ (easylistchina.txt: 3758) +.landiannews.com/tui/ +# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina.txt: 3757) +.lancdn.com/diannet/media1/diannet_tool_336_280_ +# ||laixi.com/tp/20 (easylistchina.txt: 3756) +.laixi.com/tp/20 +# ||lagou.com/js/cooperation/ (easylistchina.txt: 3755) +.lagou.com/js/cooperation/ +# ||lady8844.com/IMAGE/$~image (easylistchina.txt: 3754) +.lady8844.com/IMAGE/ +# ||lady1314.com.cn/addata/ (easylistchina.txt: 3753) +.lady1314.com.cn/addata/ +# ||lady100.net/top.js (easylistchina.txt: 3752) +.lady100.net/top\.js +# ||lady100.net/760-90.js (easylistchina.txt: 3751) +.lady100.net/760-90\.js +# ||l7po.com/templates/ff_style/led/ (easylistchina.txt: 3750) +.l7po.com/templates/ff_style/led/ +# ||l7po.com/images/tree/ (easylistchina.txt: 3749) +.l7po.com/images/tree/ +# ||l.qq.com/lview? (easylistchina.txt: 3748) +.l.qq.com/lview\? +# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina.txt: 3747) +.kyocdn.com/upload/1316059709x983128031\.gif +# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina.txt: 3746) +.kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv\.jpg +# ||kviso.com/ddnew/kviso (easylistchina.txt: 3745) +.kviso.com/ddnew/kviso +# ||kutj.com/*/*x80.jpg (easylistchina.txt: 3744) +.kutj.com/.*/.*x80\.jpg +# ||kukudm.com/js/play- (easylistchina.txt: 3743) +.kukudm.com/js/play- +# ||kukudm.com/js/comic- (easylistchina.txt: 3742) +.kukudm.com/js/comic- +# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina.txt: 3741) +# ||kuaihou.com/c/you1.js (easylistchina.txt: 3740) +.kuaihou.com/c/you1\.js +# ||kuaihou.com/c/shuoming.js (easylistchina.txt: 3739) +.kuaihou.com/c/shuoming\.js +# ||kuaihei.com/js/xiazaishang.js (easylistchina.txt: 3738) +.kuaihei.com/js/xiazaishang\.js +# ||kuaihei.com/js/view.js (easylistchina.txt: 3737) +.kuaihei.com/js/view\.js +# ||kuaihei.com/js/980 (easylistchina.txt: 3736) +.kuaihei.com/js/980 +# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina.txt: 3735) +.ku6cdn.com/comm/v/0\.1\.0/mm\.png +# ||ku6.com^*/index.shtml (easylistchina.txt: 3734) +.ku6.com/.*/index\.shtml +# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina.txt: 3733) +.ktzhk.com/plugins/cache_template/adv_3b2g\.js +# ||ktzhk.com/file/adv/ (easylistchina.txt: 3732) +.ktzhk.com/file/adv/ +# ||ktkkt.com/js/cnbeta/ (easylistchina.txt: 3731) +.ktkkt.com/js/cnbeta/ +# ||kt51.com/app.js (easylistchina.txt: 3730) +.kt51.com/app\.js +# ||ksvcd.com/images/ (easylistchina.txt: 3729) +.ksvcd.com/images/ +# ||ks.js.cn*/yytf/$object,script (easylistchina.txt: 3728) +.ks.js.cn*./(.*/)?yytf/ +# ||kp52.cc/data/attachment/portal/ (easylistchina.txt: 3727) +.kp52.cc/data/attachment/portal/ +# ||koopan.com/%5Cad/ (easylistchina.txt: 3726) +.koopan.com/%5Cad/ +# ||knnwdyou.com^ (easylistchina.txt: 3725) +.knnwdyou.com +# ||kmplayer.cn/include/jscript/*-b.js (easylistchina.txt: 3724) +.kmplayer.cn/include/jscript/.*-b\.js +# ||kmplayer.cn/include/jscript/*-a.js (easylistchina.txt: 3723) +.kmplayer.cn/include/jscript/.*-a\.js +# ||klss.cn/jc/ (easylistchina.txt: 3722) +.klss.cn/jc/ +# ||klgwdh.com/pp.php (easylistchina.txt: 3721) +.klgwdh.com/pp\.php +# ||kkkmh.com/javascripts/abcde/ (easylistchina.txt: 3720) +.kkkmh.com/javascripts/abcde/ +# ||kkkmh.com/iframe/ (easylistchina.txt: 3719) +.kkkmh.com/iframe/ +# ||kk55.net/beitou.js (easylistchina.txt: 3718) +.kk55.net/beitou\.js +# ||kikicici.com/up_files/2013-11-25/ (easylistchina.txt: 3717) +.kikicici.com/up_files/2013-11-25/ +# ||kiees.cn/img/nz.png (easylistchina.txt: 3716) +.kiees.cn/img/nz\.png +# ||kiees.cn/img/jm.png (easylistchina.txt: 3715) +.kiees.cn/img/jm\.png +# ||kfs.io/article5/global/*/original.gif (easylistchina.txt: 3714) +.kfs.io/article5/global/.*/original\.gif +# ||kf.abab.com/index.php? (easylistchina.txt: 3713) +.kf.abab.com/index\.php\? +# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina.txt: 3712) +.keywin.org/templates/kw_v2/images/youbianad\.png +# ||key8.com/cache/www/banner_ (easylistchina.txt: 3711) +.key8.com/cache/www/banner_ +# ||kelepan.com/yunfaka.gif (easylistchina.txt: 3710) +.kelepan.com/yunfaka\.gif +# ||kelepan.com/cp (easylistchina.txt: 3709) +.kelepan.com/cp +# ||kekenet.com/images/*990 (easylistchina.txt: 3708) +.kekenet.com/images/.*990 +# ||kekenet.com/images/*980 (easylistchina.txt: 3707) +.kekenet.com/images/.*980 +# ||kekenet.com/Images/*/tom640X40.gif (easylistchina.txt: 3706) +.kekenet.com/Images/.*/tom640X40\.gif +# ||kekenet.com/images/*/tom468X60.gif (easylistchina.txt: 3705) +.kekenet.com/images/.*/tom468X60\.gif +# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina.txt: 3704) +.kdhome.net/templets/default/img/bottomadv\.jpg +# ||kcjc.net/data/attachment/portal/ (easylistchina.txt: 3703) +.kcjc.net/data/attachment/portal/ +# ||kcjc.net/960$image (easylistchina.txt: 3702) +.kcjc.net/960 +# ||kanpp.net/Uploads/ad/ (easylistchina.txt: 3701) +.kanpp.net/Uploads/ad/ +# ||kankanmi.com/js/zjgg (easylistchina.txt: 3700) +.kankanmi.com/js/zjgg +# ||kan84.net/js/bdgg/ (easylistchina.txt: 3699) +.kan84.net/js/bdgg/ +# ||kan300.com/js/union/ (easylistchina.txt: 3698) +.kan300.com/js/union/ +# ||kamlm.com/kmgg (easylistchina.txt: 3697) +.kamlm.com/kmgg +# ||kaixin001.com.cn/js/cpm- (easylistchina.txt: 3696) +.kaixin001.com.cn/js/cpm- +# ||kaikaimao.net/static/zx.jpg (easylistchina.txt: 3695) +.kaikaimao.net/static/zx\.jpg +# ||k886.net/comic-toplist (easylistchina.txt: 3694) +.k886.net/comic-toplist +# ||k7mm.com/js/t*.js (easylistchina.txt: 3693) +.k7mm.com/js/t.*\.js +# ||k618.cn/tlgg/ (easylistchina.txt: 3692) +.k618.cn/tlgg/ +# ||k618.cn/gg$image (easylistchina.txt: 3691) +.k618.cn/gg +# ||jznews.com.cn/js/topad (easylistchina.txt: 3689) +.jznews.com.cn/js/topad +# ||jznews.com.cn/js/n_two.js (easylistchina.txt: 3688) +.jznews.com.cn/js/n_two\.js +# ||jznews.com.cn/js/adtwo.js (easylistchina.txt: 3687) +.jznews.com.cn/js/adtwo\.js +# ||jznews.com.cn/js/*_tc.js (easylistchina.txt: 3686) +.jznews.com.cn/js/.*_tc\.js +# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina.txt: 3685) +.jznews.com.cn/comnews/js/ad_tanchuang\.js +# ||jzhome.cn/Public/Js/top.js (easylistchina.txt: 3684) +.jzhome.cn/Public/Js/top\.js +# ||jzhome.cn/Public/images/jyt.gif (easylistchina.txt: 3683) +.jzhome.cn/Public/images/jyt\.gif +# ||jz5u.com/new/ (easylistchina.txt: 3682) +.jz5u.com/new/ +# ||jz5u.com/js/tl$script (easylistchina.txt: 3681) +.jz5u.com/js/tl +# ||jz123.cn/kanli/ (easylistchina.txt: 3680) +.jz123.cn/kanli/ +# ||jxold.com/index.php?m=poster& (easylistchina.txt: 3679) +.jxold.com/index\.php\?m=poster& +# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina.txt: 3678) +.jxnews.com.cn/jxcn/con_ad_title\.js +# ||jxgdw.com/images/jdgg.jpg (easylistchina.txt: 3677) +.jxgdw.com/images/jdgg\.jpg +# ||jxgdw.com/2013images/ad/ (easylistchina.txt: 3676) +.jxgdw.com/2013images/ad/ +# ||jxdown.com/statics/js/all.js (easylistchina.txt: 3675) +.jxdown.com/statics/js/all\.js +# ||jxcn.cn/js/hotpic_ (easylistchina.txt: 3674) +.jxcn.cn/js/hotpic_ +# ||jxcn.cn/images/banner/ (easylistchina.txt: 3673) +.jxcn.cn/images/banner/ +# ||jxad.jx163.com^ (easylistchina.txt: 3672) +.jxad.jx163.com +# ||jx.xinhuanet.com/*banner/ (easylistchina.txt: 3671) +.jx.xinhuanet.com/.*banner/ +# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina.txt: 3670) +.juxiangyou.com/images/tgsc/960x80\.gif +# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina.txt: 3669) +.juxiangyou.com/images/tgsc/250x250\.gif +# ||juxia.com/public/js/juxia.js (easylistchina.txt: 3668) +.juxia.com/public/js/juxia\.js +# ||juxia.com/public/js/foot.js (easylistchina.txt: 3667) +.juxia.com/public/js/foot\.js +# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina.txt: 3666) +.junpinzhi.cn/qixing365/attachment/portal/ +# ||juksy.com/scripts/jquery.blockUI.js (easylistchina.txt: 3664) +.juksy.com/scripts/jquery\.blockUI\.js +# ||jtyskq.com^*/js/_a.js (easylistchina.txt: 3663) +.jtyskq.com/.*/js/_a\.js +# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina.txt: 3662) +.jthysh.com/uploadfile/poster/trt\.swf +# ||jswangpan.com/haha728.gif (easylistchina.txt: 3661) +.jswangpan.com/haha728\.gif +# ||jswangpan.com/3*.gif (easylistchina.txt: 3660) +.jswangpan.com/3.*\.gif +# ||jsw.com.cn^*/index.htm (easylistchina.txt: 3659) +.jsw.com.cn/.*/index\.htm +# ||jstv.com/static_files/zones/87/ (easylistchina.txt: 3658) +.jstv.com/static_files/zones/87/ +# ||jstv.com/static_files/zones/165/165.js (easylistchina.txt: 3657) +.jstv.com/static_files/zones/165/165\.js +# ||jstv.com//static_files/zones/132/132.js (easylistchina.txt: 3656) +# ||jsshuba.com/js/tongji.js (easylistchina.txt: 3655) +.jsshuba.com/js/tongji\.js +# ||jsshuba.com/js/gg.js (easylistchina.txt: 3654) +.jsshuba.com/js/gg\.js +# ||jsshuba.com/js/bdhengfu.js (easylistchina.txt: 3653) +.jsshuba.com/js/bdhengfu\.js +# ||js0573.com/images/cus/ (easylistchina.txt: 3652) +.js0573.com/images/cus/ +# ||js.youxi369.com^ (easylistchina.txt: 3651) +.js.youxi369.com +# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina.txt: 3650) +.js.tv.itc.cn/site/play/v.*/vip_discount_ +# ||js.tv.itc.cn/gg$script (easylistchina.txt: 3649) +.js.tv.itc.cn/gg +# ||js.tlt.cn/js/ (easylistchina.txt: 3648) +.js.tlt.cn/js/ +# ||js.shiwt.com/110.js (easylistchina.txt: 3647) +.js.shiwt.com/110\.js +# ||js.pub.tom.com^ (easylistchina.txt: 3646) +.js.pub.tom.com +# ||js.mumayi.net/jiujiang (easylistchina.txt: 3645) +.js.mumayi.net/jiujiang +# ||js.mumayi.net/9495.gif (easylistchina.txt: 3644) +.js.mumayi.net/9495\.gif +# ||js.mumayi.net/76090.gif (easylistchina.txt: 3643) +.js.mumayi.net/76090\.gif +# ||js.leshen.com^ (easylistchina.txt: 3642) +.js.leshen.com +# ||js.duotegame.com^ (easylistchina.txt: 3641) +.js.duotegame.com +# ||js.bxwns.com^ (easylistchina.txt: 3640) +.js.bxwns.com +# ||js.bju888.com^ (easylistchina.txt: 3639) +.js.bju888.com +# ||js.4738.com/newda/img/994_90_ (easylistchina.txt: 3638) +.js.4738.com/newda/img/994_90_ +# ||js-1.pchome.net^ (easylistchina.txt: 3637) +.js-1.pchome.net +# ||jrjimg.cn/homev2/ad/ (easylistchina.txt: 3636) +.jrjimg.cn/homev2/ad/ +# ||jrjimg.cn/aigu/adcj.jpg (easylistchina.txt: 3635) +.jrjimg.cn/aigu/adcj\.jpg +# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina.txt: 3634) +.jrj.com.cn/iframe/zjgjs\.html\? +# ||jq22.com/assets/ad.png (easylistchina.txt: 3633) +.jq22.com/assets/ad\.png +# ||jpwind.com^*/scroll.js (easylistchina.txt: 3632) +.jpwind.com/.*/scroll\.js +# ||jpwind.com/images/partner/ (easylistchina.txt: 3631) +.jpwind.com/images/partner/ +# ||jpskb.com/Img/dianyuan.gif (easylistchina.txt: 3629) +.jpskb.com/Img/dianyuan\.gif +# ||jpskb.com/Img/7day_ (easylistchina.txt: 3628) +.jpskb.com/Img/7day_ +# ||jpskb.com/Img/439911.jpg (easylistchina.txt: 3627) +.jpskb.com/Img/439911\.jpg +# ||jpskb.com/Img/*_ad_ (easylistchina.txt: 3626) +.jpskb.com/Img/.*_ad_ +# ||jpseek.com/pr/click2.jpg (easylistchina.txt: 3625) +.jpseek.com/pr/click2\.jpg +# ||joyes.com/image/06.jpg (easylistchina.txt: 3624) +.joyes.com/image/06\.jpg +# ||jobtong.com/openSiteAd? (easylistchina.txt: 3623) +.jobtong.com/openSiteAd\? +# ||jnnews.tv/indexad/ (easylistchina.txt: 3622) +.jnnews.tv/indexad/ +# ||jn256.com^*_gg (easylistchina.txt: 3621) +.jn256.com/.*_gg +# ||jn256.com^*/index_fu (easylistchina.txt: 3620) +.jn256.com/.*/index_fu +# ||jn256.com/gg_index/ (easylistchina.txt: 3619) +.jn256.com/gg_index/ +# ||jmsyzj.com^ (easylistchina.txt: 3618) +.jmsyzj.com +# ||jmhfw.com/zt/*.swf (easylistchina.txt: 3617) +.jmhfw.com/zt/.*\.swf +# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina.txt: 3616) +.jmhfw.com/index\.php\?/ajax/get_adv/ +# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina.txt: 3615) +.jlpcn.net/template/paody/aaaa/all-top\.js +# ||jkforum.net/template/default/common/attachAD (easylistchina.txt: 3614) +.jkforum.net/template/default/common/attachAD +# ||jjwxc.net/images/wap/wap.gif (easylistchina.txt: 3613) +.jjwxc.net/images/wap/wap\.gif +# ||jjjgame.com/images/ad11.jpg (easylistchina.txt: 3612) +.jjjgame.com/images/ad11\.jpg +# ||jjjaaa.com/aaa/ (easylistchina.txt: 3611) +.jjjaaa.com/aaa/ +# ||jjbt4.com/600x60.gif (easylistchina.txt: 3610) +.jjbt4.com/600x60\.gif +# ||jj59.com/sy/ibanner.js (easylistchina.txt: 3609) +.jj59.com/sy/ibanner\.js +# ||jj59.com/sy/banner.js (easylistchina.txt: 3608) +.jj59.com/sy/banner\.js +# ||jj20.com/js/yx (easylistchina.txt: 3607) +.jj20.com/js/yx +# ||jj20.com/js/x (easylistchina.txt: 3606) +.jj20.com/js/x +# ||jj20.com/images/960-60.gif (easylistchina.txt: 3605) +.jj20.com/images/960-60\.gif +# ||jj.5ccc.net/scripts/new/ (easylistchina.txt: 3604) +.jj.5ccc.net/scripts/new/ +# ||jiyingdm.com/js/loadingshow.html (easylistchina.txt: 3603) +.jiyingdm.com/js/loadingshow\.html +# ||jitapu.com/inc/adv (easylistchina.txt: 3602) +.jitapu.com/inc/adv +# ||jisuxz.com/2747/ (easylistchina.txt: 3601) +.jisuxz.com/2747/ +# ||jirou.com/plus/mytag_js.php (easylistchina.txt: 3600) +.jirou.com/plus/mytag_js\.php +# ||jinzhuedu.com/k/img/swt.png (easylistchina.txt: 3599) +.jinzhuedu.com/k/img/swt\.png +# ||jinyici.com/qq.js (easylistchina.txt: 3598) +.jinyici.com/qq\.js +# ||jinhongweiqi.com/cache/ads.js (easylistchina.txt: 3597) +.jinhongweiqi.com/cache/ads\.js +# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina.txt: 3596) +.jinghua.cn/lib/js/news/ad_jh\.html +# ||jinbw.com.cn/img/ (easylistchina.txt: 3595) +.jinbw.com.cn/img/ +# ||jiasule.com/static/js/http_error.js (easylistchina.txt: 3594) +.jiasule.com/static/js/http_error\.js +# ||jiasuba.com/js/jjrjtg.js (easylistchina.txt: 3593) +.jiasuba.com/js/jjrjtg\.js +# ||jiaoyu.baidu.com/tieba/ (easylistchina.txt: 3592) +.jiaoyu.baidu.com/tieba/ +# ||jiaonan.net/index.php?m=poster& (easylistchina.txt: 3590) +.jiaonan.net/index\.php\?m=poster& +# ||jiaodong.net/a/js/ (easylistchina.txt: 3589) +.jiaodong.net/a/js/ +# ||jianshen114.com/images/Advistings/ (easylistchina.txt: 3588) +.jianshen114.com/images/Advistings/ +# ||jianhucheng.com/data/attachment/portal/ (easylistchina.txt: 3587) +.jianhucheng.com/data/attachment/portal/ +# ||jianglishi.cn/app/static/images/ad_ (easylistchina.txt: 3586) +.jianglishi.cn/app/static/images/ad_ +# ||jiangcao.com/pic/ (easylistchina.txt: 3585) +.jiangcao.com/pic/ +# ||jiancai365.cn/lbad.gif (easylistchina.txt: 3584) +.jiancai365.cn/lbad\.gif +# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina.txt: 3583) +.jgzj.net/bbs/attachments/month_1111/ +# ||jdxsw.net/js/insidebox.js (easylistchina.txt: 3582) +.jdxsw.net/js/insidebox\.js +# ||jdxsw.net/201400/ (easylistchina.txt: 3581) +.jdxsw.net/201400/ +# ||jdcjsr.com^*/jdcgg/ (easylistchina.txt: 3580) +.jdcjsr.com/.*/jdcgg/ +# ||jdcjsr.com/images/zzgg/ (easylistchina.txt: 3579) +.jdcjsr.com/images/zzgg/ +# ||jd.com/exsites?spread_type= (easylistchina.txt: 3578) +.jd.com/exsites\?spread_type= +# ||jbyf.net^*_Ad/ (easylistchina.txt: 3577) +.jbyf.net/.*_Ad/ +# ||jbyf.net/JS/9 (easylistchina.txt: 3576) +.jbyf.net/JS/9 +# ||jbyf.net/JS/6 (easylistchina.txt: 3575) +.jbyf.net/JS/6 +# ||jbyf.net/JS/1 (easylistchina.txt: 3574) +.jbyf.net/JS/1 +# ||jb51.net/js/Dowplayjb51 (easylistchina.txt: 3573) +.jb51.net/js/Dowplayjb51 +# ||jb51.net/2012js/ (easylistchina.txt: 3572) +.jb51.net/2012js/ +# ||javlibrary.com/js/bnr_ (easylistchina.txt: 3571) +.javlibrary.com/js/bnr_ +# ||javlib3.com/js/bnr_ (easylistchina.txt: 3570) +.javlib3.com/js/bnr_ +# ||javjunkies.com/FL$subdocument (easylistchina.txt: 3569) +.javjunkies.com/FL +# ||jav2lib.com/js/bnr_ (easylistchina.txt: 3568) +.jav2lib.com/js/bnr_ +# ||jandan.com/static/gggg/ (easylistchina.txt: 3567) +.jandan.com/static/gggg/ +# ||ja.gamersky.com^ (easylistchina.txt: 3566) +.ja.gamersky.com +# ||j.6avz.com^ (easylistchina.txt: 3565) +.j.6avz.com +# ||izzs.cc/wp-content/mm/ (easylistchina.txt: 3564) +.izzs.cc/wp-content/mm/ +# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina.txt: 3563) +.izt8.com/iztwp/images/hk-250\.jpg +# ||iyejie.com/xydlad.js (easylistchina.txt: 3562) +.iyejie.com/xydlad\.js +# ||iyejie.com/1024code.gif (easylistchina.txt: 3561) +.iyejie.com/1024code\.gif +# ||iyaya.info/newmshow.php (easylistchina.txt: 3560) +.iyaya.info/newmshow\.php +# ||iyaxin.com/assert/js/m.js (easylistchina.txt: 3559) +.iyaxin.com/assert/js/m\.js +# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina.txt: 3558) +.ixiumei.com/otherhtml/zd800-100\.jpg +# ||iweihai.cn/js/float.js (easylistchina.txt: 3557) +.iweihai.cn/js/float\.js +# ||iwanad.baidu.com^ (easylistchina.txt: 3555) +.iwanad.baidu.com +# ||ivsoo.com/template/ivsoos.jpg (easylistchina.txt: 3554) +.ivsoo.com/template/ivsoos\.jpg +# ||itxtbook.com/game/images/kuping (easylistchina.txt: 3553) +.itxtbook.com/game/images/kuping +# ||itv.hexun.com (easylistchina.txt: 3552) +.itv.hexun.com*. +# ||itpub.net/popwin_js.php? (easylistchina.txt: 3551) +.itpub.net/popwin_js\.php\? +# ||itopdog.cn/js/you.js (easylistchina.txt: 3550) +.itopdog.cn/js/you\.js +# ||itopdog.cn/itopdog/d*.js (easylistchina.txt: 3549) +.itopdog.cn/itopdog/d.*\.js +# ||itongcheng.cc/amm/ (easylistchina.txt: 3548) +.itongcheng.cc/amm/ +# ||itocp.com/html/gk/topic/topicmain.html (easylistchina.txt: 3547) +.itocp.com/html/gk/topic/topicmain\.html +# ||itocp.com/html/gk/*/204x (easylistchina.txt: 3546) +.itocp.com/html/gk/.*/204x +# ||itocp.com/html/gk/*/*x50. (easylistchina.txt: 3545) +.itocp.com/html/gk/.*/.*x50\. +# ||itmxc.com/mxckb.gif (easylistchina.txt: 3544) +.itmxc.com/mxckb\.gif +# ||itmxc.com/mxc-news/960x (easylistchina.txt: 3543) +.itmxc.com/mxc-news/960x +# ||itmsc.cn/files/*/ad0 (easylistchina.txt: 3542) +.itmsc.cn/files/.*/ad0 +# ||itjsb.com/file/script/qipai.js (easylistchina.txt: 3541) +.itjsb.com/file/script/qipai\.js +# ||itjsb.com/file/script/A27.js (easylistchina.txt: 3540) +.itjsb.com/file/script/A27\.js +# ||itjkr.com/upload/ad/ (easylistchina.txt: 3539) +.itjkr.com/upload/ad/ +# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina.txt: 3538) +.itiexue.net/.*\.gif\?w=1500&h=1500 +# ||itiexue.net/domain-policy/ (easylistchina.txt: 3537) +.itiexue.net/domain-policy/ +# ||ithome.com/js/win8china.js (easylistchina.txt: 3536) +.ithome.com/js/win8china\.js +# ||ithome.com/js/win7china.js (easylistchina.txt: 3535) +.ithome.com/js/win7china\.js +# ||ithome.com/js/recommend.js (easylistchina.txt: 3534) +.ithome.com/js/recommend\.js +# ||ithome.com/js/money/ (easylistchina.txt: 3533) +.ithome.com/js/money/ +# ||ithome.com/js/*/toutiao.js (easylistchina.txt: 3532) +.ithome.com/js/.*/toutiao\.js +# ||ithome.com/images/v2.3/11index.png (easylistchina.txt: 3531) +.ithome.com/images/v2\.3/11index\.png +# ||ithome.com/images/partner/ (easylistchina.txt: 3530) +.ithome.com/images/partner/ +# ||ithome.com/html/$xmlhttprequest (easylistchina.txt: 3529) +.ithome.com/html/ +# ||iteye.com/iframe_ggbd/ (easylistchina.txt: 3528) +.iteye.com/iframe_ggbd/ +# ||itc.cn^*_ad/src/*.swf (easylistchina.txt: 3526) +.itc.cn/.*_ad/src/.*\.swf +# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina.txt: 3525) +.itc.cn/activity/activity_js/changyan_config_ +# ||itc.cn/?prod=rtb& (easylistchina.txt: 3524) +.itc.cn/\?prod=rtb& +# ||itc.*^prod=ad& (easylistchina.txt: 3523) +.itc.*./(.*[^\w%.-])?prod=ad& +# ||itavcn.com/pic/news/*305X80.swf (easylistchina.txt: 3522) +.itavcn.com/pic/news/.*305X80\.swf +# ||itavcn.com/images/2014/ad_ (easylistchina.txt: 3521) +.itavcn.com/images/2014/ad_ +# ||itavcn.com/images/2013/ad_ (easylistchina.txt: 3520) +.itavcn.com/images/2013/ad_ +# ||itavcn.com/images/2012/ad_ (easylistchina.txt: 3519) +.itavcn.com/images/2012/ad_ +# ||itavcn.com/images/2011/101902.swf (easylistchina.txt: 3518) +.itavcn.com/images/2011/101902\.swf +# ||itavcn.com/images/*300300.swf (easylistchina.txt: 3517) +.itavcn.com/images/.*300300\.swf +# ||itavcn.com/images/*-banners722-90. (easylistchina.txt: 3516) +.itavcn.com/images/.*-banners722-90\. +# ||italk.yinsha.com/god/ (easylistchina.txt: 3515) +.italk.yinsha.com/god/ +# ||it168.com/factory/ad/ (easylistchina.txt: 3514) +.it168.com/factory/ad/ +# ||it165.net/index.php?m=poster& (easylistchina.txt: 3513) +.it165.net/index\.php\?m=poster& +# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina.txt: 3512) +.it.com.cn/test/cj/2015/03/06/10/1424032881\.jpg +# ||it.com.cn/js/*art (easylistchina.txt: 3511) +.it.com.cn/js/.*art +# ||it.com.cn/dy4*/js/youx.js (easylistchina.txt: 3510) +.it.com.cn/dy4.*/js/youx\.js +# ||it.com.cn/dy4*/js/*0 (easylistchina.txt: 3509) +.it.com.cn/dy4.*/js/.*0 +# ||isso.com.cn/upload_image/A-D/ (easylistchina.txt: 3508) +.isso.com.cn/upload_image/A-D/ +# ||isso.com.cn/ggimage/*.swf (easylistchina.txt: 3507) +.isso.com.cn/ggimage/.*\.swf +# ||isso.com.cn/club/adv2Tools.js (easylistchina.txt: 3506) +.isso.com.cn/club/adv2Tools\.js +# ||ishangman.com/images/aismd/ (easylistchina.txt: 3505) +.ishangman.com/images/aismd/ +# ||iqshw.com/d/js/m/thea (easylistchina.txt: 3504) +.iqshw.com/d/js/m/thea +# ||iqiyi.com/show2?a=qc_ (easylistchina.txt: 3503) +.iqiyi.com/show2\?a=qc_ +# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina.txt: 3502) +.iqiyi.com/player/cupid/common/flash980100\.swf +# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina.txt: 3501) +.iqiyi.com/player/cupid/.*/pageer\.swf +# ||iqiyi.com/player/common/rebull (easylistchina.txt: 3500) +.iqiyi.com/player/common/rebull +# ||iqiyi.com/player/common/adflash (easylistchina.txt: 3499) +.iqiyi.com/player/common/adflash +# ||iqiyi.com/player/*/bannery.swf (easylistchina.txt: 3498) +.iqiyi.com/player/.*/bannery\.swf +# ||iqiyi.com/player/*/a.swf (easylistchina.txt: 3497) +.iqiyi.com/player/.*/a\.swf +# ||iqiyi.com/marketing/*/oppo. (easylistchina.txt: 3496) +.iqiyi.com/marketing/.*/oppo\. +# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina.txt: 3495) +.iqiyi.com/common/flashplayer/.*980-100 +# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina.txt: 3494) +.iqiyi.com/common/flashplayer/.*250%C3%97230\.swf +# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina.txt: 3493) +.iqiyi.com/common/flashplayer/.*/pause\.swf +# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina.txt: 3492) +.iqiyi.com/common/flashplayer/.*/pageer\.swf +# ||iqiyi.com/common/flashplayer/*/980 (easylistchina.txt: 3491) +.iqiyi.com/common/flashplayer/.*/980 +# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina.txt: 3490) +.iqiyi.com/common/flashplayer/.*-banner- +# ||iqiyi.com/common/flashplayer*_1380x (easylistchina.txt: 3489) +.iqiyi.com/common/flashplayer.*_1380x +# ||iq33.com/skin/logo2015/ (easylistchina.txt: 3488) +.iq33.com/skin/logo2015/ +# ||ipeen.com.tw/photo/ad/ (easylistchina.txt: 3487) +.ipeen.com.tw/photo/ad/ +# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina.txt: 3486) +.ipeen.com.tw/js/frame/ad-actions\.js +# ||iour.co/wp-content/uploads/ (easylistchina.txt: 3485) +.iour.co/wp-content/uploads/ +# ||iour.co/ads.js (easylistchina.txt: 3484) +.iour.co/ads\.js +# ||iour.co/ad_dl.js (easylistchina.txt: 3483) +.iour.co/ad_dl\.js +# ||inte.sogou.com^ (easylistchina.txt: 3482) +.inte.sogou.com +# ||inlishui.com/index.php?m=poster& (easylistchina.txt: 3481) +.inlishui.com/index\.php\?m=poster& +# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina.txt: 3480) +.inhe.net/Uploadfiles/ad_2014/ +# ||inhe.net/javascript/Jsduilian (easylistchina.txt: 3479) +.inhe.net/javascript/Jsduilian +# ||inhe.net/javascript/ad_js/ (easylistchina.txt: 3478) +.inhe.net/javascript/ad_js/ +# ||inhe.*/Uploadfiles/adpublish (easylistchina.txt: 3477) +.inhe.*./(.*/)?Uploadfiles/adpublish +# ||info.vip.iqiyi.com/promotion/ (easylistchina.txt: 3476) +.info.vip.iqiyi.com/promotion/ +# ||info.btc123.com/images/antiBlock/$image (easylistchina.txt: 3474) +.info.btc123.com/images/antiBlock/ +# ||info-database.csdn.net/Upload/$image,third-party (easylistchina.txt: 3473) +.info-database.csdn.net/Upload/ +# ||inc.tgbus.com/frame/youxi.html (easylistchina.txt: 3472) +.inc.tgbus.com/frame/youxi\.html +# ||impservice*.youdao.com^ (easylistchina.txt: 3471) +.impservice*./.*\.youdao\.com[^\w%.-] +.impservice*.youdao.com +# ||impservice*.yodao.com^ (easylistchina.txt: 3470) +.impservice*./.*\.yodao\.com[^\w%.-] +.impservice*.yodao.com +# ||imp3.net/data/js$script (easylistchina.txt: 3469) +.imp3.net/data/js +# ||imgur.com/Za3ll.gif (easylistchina.txt: 3466) +.imgur.com/Za3ll\.gif +# ||imgur.com/rTqveeX.jpg (easylistchina.txt: 3465) +.imgur.com/rTqveeX\.jpg +# ||imgur.com/pBL7joM.gif (easylistchina.txt: 3464) +.imgur.com/pBL7joM\.gif +# ||imgur.com/iKkoHkn.jpg (easylistchina.txt: 3463) +.imgur.com/iKkoHkn\.jpg +# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina.txt: 3462) +.imgsrc.baidu.com/tieba/pic/item/ +# ||imgs.cc/images/ad_ (easylistchina.txt: 3461) +.imgs.cc/images/ad_ +# ||imgout.ph.126.net^*/950-90.jpg (easylistchina.txt: 3460) +.imgout.ph.126.net/.*/950-90\.jpg +# ||imgout.ph.126.net^*/700x80.jpg (easylistchina.txt: 3459) +.imgout.ph.126.net/.*/700x80\.jpg +# ||imgout.ph.126.net^*/355-310.jpg (easylistchina.txt: 3458) +.imgout.ph.126.net/.*/355-310\.jpg +# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina.txt: 3457) +.imgn.jiatx.com/jiatx/mall/outer/ +# ||imgkdiyoub999.com/ok/ (easylistchina.txt: 3455) +.imgkdiyoub999.com/ok/ +# ||imgf.gamersky.com^$image (easylistchina.txt: 3454) +.imgf.gamersky.com +# ||imgchili.net/media/top.gif (easylistchina.txt: 3452) +.imgchili.net/media/top\.gif +# ||imgchili.net/media/image*.gif (easylistchina.txt: 3451) +.imgchili.net/media/image.*\.gif +# ||img2.www.fmdisk.com^ (easylistchina.txt: 3449) +.img2.www.fmdisk.com +# ||img2.win007.com/image/*.jpg (easylistchina.txt: 3448) +.img2.win007.com/image/.*\.jpg +# ||img2.e0575.com//upload/adv/ (easylistchina.txt: 3447) +# ||img2.e0575.com*/upload/image/ (easylistchina.txt: 3446) +.img2.e0575.com*./(.*/)?upload/image/ +# ||img2.126.net^ (easylistchina.txt: 3445) +.img2.126.net +# ||img1.jczqw.com/img/ (easylistchina.txt: 3444) +.img1.jczqw.com/img/ +# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina.txt: 3443) +.img1.efu.com.cn/upfile/bew/.*\.swf +# ||img1.autofan.com.cn/swf/ (easylistchina.txt: 3442) +.img1.autofan.com.cn/swf/ +# ||img1.126.net^ (easylistchina.txt: 3441) +.img1.126.net +# ||img.ybbbs.com/2015/ (easylistchina.txt: 3440) +.img.ybbbs.com/2015/ +# ||img.ybbbs.com/2014/ (easylistchina.txt: 3439) +.img.ybbbs.com/2014/ +# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina.txt: 3438) +.img.wangxiao.cn/images/big_ad\.jpg +# ||img.taoguba.com.cn/images/$object (easylistchina.txt: 3437) +.img.taoguba.com.cn/images/ +# ||img.sz.js.cn/wj/ (easylistchina.txt: 3436) +.img.sz.js.cn/wj/ +# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina.txt: 3435) +.img.kuai.xunlei.com/img/v2/fen/ +# ||img.jb51.net^$script (easylistchina.txt: 3434) +.img.jb51.net +# ||img.ifeng.com/tres/html/ (easylistchina.txt: 3433) +.img.ifeng.com/tres/html/ +# ||img.hexun.com*/wszj/js.js (easylistchina.txt: 3432) +.img.hexun.com*./(.*/)?wszj/js\.js +# ||img.eol.cn/images/ed/$~image (easylistchina.txt: 3431) +.img.eol.cn/images/ed/ +# ||img.cqsq.com/s/temp/ (easylistchina.txt: 3430) +.img.cqsq.com/s/temp/ +# ||img.cngba.com/da/ (easylistchina.txt: 3429) +.img.cngba.com/da/ +# ||img.9duw.com^ (easylistchina.txt: 3427) +.img.9duw.com +# ||img.90bfw.com^*.gif (easylistchina.txt: 3426) +.img.90bfw.com/.*\.gif +# ||img.86wan.com/img2/top.jpg (easylistchina.txt: 3425) +.img.86wan.com/img2/top\.jpg +# ||img.6park.com/img/$image (easylistchina.txt: 3424) +.img.6park.com/img/ +# ||img.3sjt.com^ (easylistchina.txt: 3423) +.img.3sjt.com +# ||img*.win007.com/image/*.gif (easylistchina.txt: 3422) +.img*./.*\.win007\.com/image/.*\.gif +.img*.win007.com/image/.*\.gif +# ||img*.titan007.com/image/*.gif (easylistchina.txt: 3421) +.img*./.*\.titan007\.com/image/.*\.gif +.img*.titan007.com/image/.*\.gif +# ||img*.bet007.com/image/*.gif (easylistchina.txt: 3419) +.img*./.*\.bet007\.com/image/.*\.gif +.img*.bet007.com/image/.*\.gif +# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina.txt: 3418) +.imeee.cn/DA_HTML/bottom_960x90\.html +# ||imeee.cn/DA_HTML/*.js (easylistchina.txt: 3417) +.imeee.cn/DA_HTML/.*\.js +# ||imanke.com/static/player/loading/imanke.html (easylistchina.txt: 3416) +.imanke.com/static/player/loading/imanke\.html +# ||imanhua.com^*/nmoneys/ (easylistchina.txt: 3415) +.imanhua.com/.*/nmoneys/ +# ||imanhua.com^*/money/ (easylistchina.txt: 3414) +.imanhua.com/.*/money/ +# ||images.sohu.com/ytv/*.swf (easylistchina.txt: 3413) +.images.sohu.com/ytv/.*\.swf +# ||images.sohu.com/ytv/*.jpg (easylistchina.txt: 3412) +.images.sohu.com/ytv/.*\.jpg +# ||images.sohu.com/cs/ (easylistchina.txt: 3411) +.images.sohu.com/cs/ +# ||images.sohu.com/bill/ (easylistchina.txt: 3410) +.images.sohu.com/bill/ +# ||images.mydrivers.com/2009 (easylistchina.txt: 3409) +.images.mydrivers.com/2009 +# ||images.jurong.cn/bbs/ (easylistchina.txt: 3408) +.images.jurong.cn/bbs/ +# ||images.gxsky.com^ (easylistchina.txt: 3407) +.images.gxsky.com +# ||images.dayoo.com/dywimg/ (easylistchina.txt: 3406) +.images.dayoo.com/dywimg/ +# ||images.chinaz.com^ (easylistchina.txt: 3405) +.images.chinaz.com +# ||images.china.cn^*first/$subdocument (easylistchina.txt: 3404) +.images.china.cn/.*first/ +# ||image.wenweipo.com/*/ad_ (easylistchina.txt: 3403) +.image.wenweipo.com/.*/ad_ +# ||image.sportscn.com/other/live/ (easylistchina.txt: 3402) +.image.sportscn.com/other/live/ +# ||image.seowhy.com/bbs/20 (easylistchina.txt: 3401) +.image.seowhy.com/bbs/20 +# ||image.lepan.cc^ (easylistchina.txt: 3400) +.image.lepan.cc +# ||image.hh010.com^ (easylistchina.txt: 3399) +.image.hh010.com +# ||image.9duw.com^ (easylistchina.txt: 3398) +.image.9duw.com +# ||image.6park.com^ (easylistchina.txt: 3397) +.image.6park.com +# ||im286.com/images/37cs.gif (easylistchina.txt: 3396) +.im286.com/images/37cs\.gif +# ||im286.com/286/ (easylistchina.txt: 3395) +.im286.com/286/ +# ||im.zww.im/images/ (easylistchina.txt: 3394) +.im.zww.im/images/ +# ||ilovecao.com^*.gif (easylistchina.txt: 3393) +.ilovecao.com/.*\.gif +# ||ilikecao.com^*.gif (easylistchina.txt: 3392) +.ilikecao.com/.*\.gif +# ||ikaka.com/globalad/ (easylistchina.txt: 3391) +.ikaka.com/globalad/ +# ||ijia360.com/data/poster/ (easylistchina.txt: 3390) +.ijia360.com/data/poster/ +# ||ihref.com/ihref_gg/ (easylistchina.txt: 3389) +.ihref.com/ihref_gg/ +# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina.txt: 3388) +.iguang.tw/bm/seo_rotation/html/js/ +# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina.txt: 3387) +.iguaji.com/wp-content/uploads/.*/ttzad +# ||iggyy8.com/js/v/ (easylistchina.txt: 3386) +.iggyy8.com/js/v/ +# ||ifxtx.com^*589x60. (easylistchina.txt: 3385) +.ifxtx.com/.*589x60\. +# ||ifxtx.com/tp/ (easylistchina.txt: 3384) +.ifxtx.com/tp/ +# ||ifxtx.com/js/ad-02.js (easylistchina.txt: 3383) +.ifxtx.com/js/ad-02\.js +# ||ifx.aifang.com^ (easylistchina.txt: 3382) +.ifx.aifang.com +# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina.txt: 3381) +.ifood1.com/aobntech/pic/9300\.jpg +# ||ifonce.com/813.gif (easylistchina.txt: 3380) +.ifonce.com/813\.gif +# ||ifengimg.com^*Float$script (easylistchina.txt: 3379) +.ifengimg.com/.*Float +# ||ifengimg.com^*couplet$script (easylistchina.txt: 3378) +.ifengimg.com/.*couplet +# ||ifengimg.com^*/yingguang- (easylistchina.txt: 3377) +.ifengimg.com/.*/yingguang- +# ||ifengimg.com^*/sparta.js (easylistchina.txt: 3376) +.ifengimg.com/.*/sparta\.js +# ||ifengimg.com^*/shfwq (easylistchina.txt: 3375) +.ifengimg.com/.*/shfwq +# ||ifengimg.com^*/rdn_*.js? (easylistchina.txt: 3374) +.ifengimg.com/.*/rdn_.*\.js\? +# ||ifengimg.com^*/pan.js (easylistchina.txt: 3373) +.ifengimg.com/.*/pan\.js +# ||ifengimg.com^*/iframe_load_ (easylistchina.txt: 3372) +.ifengimg.com/.*/iframe_load_ +# ||ifengimg.com^*/hover.js (easylistchina.txt: 3371) +.ifengimg.com/.*/hover\.js +# ||ifengimg.com^*/hddw- (easylistchina.txt: 3370) +.ifengimg.com/.*/hddw- +# ||ifengimg.com^*/fullscreen (easylistchina.txt: 3369) +.ifengimg.com/.*/fullscreen +# ||ifengimg.com^*/backwindow.js (easylistchina.txt: 3368) +.ifengimg.com/.*/backwindow\.js +# ||ifengimg.com^*/aplayer.xml (easylistchina.txt: 3367) +.ifengimg.com/.*/aplayer\.xml +# ||ifengimg.com^*/300-300. (easylistchina.txt: 3366) +.ifengimg.com/.*/300-300\. +# ||ifengimg.com^*/300-300- (easylistchina.txt: 3365) +.ifengimg.com/.*/300-300- +# ||ifengimg.com^*/1000X90- (easylistchina.txt: 3364) +.ifengimg.com/.*/1000X90- +# ||ifengimg.com^*/1000-90- (easylistchina.txt: 3363) +.ifengimg.com/.*/1000-90- +# ||ifengimg.com^*/100-100- (easylistchina.txt: 3362) +.ifengimg.com/.*/100-100- +# ||ifengimg.com^*-gewindow- (easylistchina.txt: 3361) +.ifengimg.com/.*-gewindow- +# ||ifengimg.com/zhishaofei/js/ (easylistchina.txt: 3360) +.ifengimg.com/zhishaofei/js/ +# ||ifengimg.com/xingzhao/JS/ (easylistchina.txt: 3359) +.ifengimg.com/xingzhao/JS/ +# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina.txt: 3358) +.ifengimg.com/tres/js/.*/idemin_noif\.js +# ||ifengimg.com/static/news/js/advtrack (easylistchina.txt: 3357) +.ifengimg.com/static/news/js/advtrack +# ||ifengimg.com/neiqian/*/embed.js (easylistchina.txt: 3356) +.ifengimg.com/neiqian/.*/embed\.js +# ||ifengimg.com/iis/iis_ (easylistchina.txt: 3354) +.ifengimg.com/iis/iis_ +# ||ifengimg.com/ifengimcp/pic/*_w750_h112. (easylistchina.txt: 3353) +.ifengimg.com/ifengimcp/pic/.*_w750_h112\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina.txt: 3352) +.ifengimg.com/ifengimcp/pic/.*_w640_h130\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina.txt: 3351) +.ifengimg.com/ifengimcp/pic/.*_w640_h120\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina.txt: 3350) +.ifengimg.com/ifengimcp/pic/.*_w320_h48\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina.txt: 3349) +.ifengimg.com/ifengimcp/pic/.*_w320_h330\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina.txt: 3348) +.ifengimg.com/ifengimcp/pic/.*_w320_h210\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina.txt: 3347) +.ifengimg.com/ifengimcp/pic/.*_w320_h120\. +# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina.txt: 3346) +.ifengimg.com/ifengimcp/pic/.*_w300_h65\. +# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina.txt: 3345) +.ifengimg.com/ifengimcp/pic/.*_w24_h100\. +# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina.txt: 3344) +.ifengimg.com/ifengimcp/pic/.*_w130_h100\. +# ||ifengimg.com/ifeng/sources/ (easylistchina.txt: 3343) +.ifengimg.com/ifeng/sources/ +# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina.txt: 3342) +.ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1\.jpg +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina.txt: 3341) +.ifengimg.com/29daa33abbbc4bbc/2015/7/titad\.gif +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina.txt: 3340) +.ifengimg.com/29daa33abbbc4bbc/2015/7/aogute\.gif +# ||ifengimg.com/*/taobaopudi/ (easylistchina.txt: 3339) +.ifengimg.com/.*/taobaopudi/ +# ||ifeng.com^*&ADUNITID= (easylistchina.txt: 3338) +.ifeng.com/.*&ADUNITID= +# ||ifeng.com/wapAdversApi? (easylistchina.txt: 3337) +.ifeng.com/wapAdversApi\? +# ||ifeng.com/statics/comment_baidu.html (easylistchina.txt: 3336) +.ifeng.com/statics/comment_baidu\.html +# ||ifeng.com/ssi-incs/ (easylistchina.txt: 3335) +.ifeng.com/ssi-incs/ +# ||ifeng.com/showjs?*apids= (easylistchina.txt: 3334) +.ifeng.com/showjs\?.*apids= +# ||ifeng.com/iframe/toquickbet (easylistchina.txt: 3333) +.ifeng.com/iframe/toquickbet +# ||ifeng.com/iframe/quickbet (easylistchina.txt: 3332) +.ifeng.com/iframe/quickbet +# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina.txt: 3331) +.ifeng.com/bbsfile/js/ifeng_tip\.js +# ||ifeng.com/a_if/taobao- (easylistchina.txt: 3330) +.ifeng.com/a_if/taobao- +# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina.txt: 3329) +.ifanr.cn/wp-content/uploads/2015/12/xc90\.jpg +# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina.txt: 3328) +.ietv.cc/Runtime/Js/web_bug\.js +# ||ietv.cc/Runtime/Js/vod (easylistchina.txt: 3327) +.ietv.cc/Runtime/Js/vod +# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina.txt: 3326) +.ietv.cc/min/b=Runtime/Js&f= +# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina.txt: 3325) +.iefans.net/wp-content/uploads/2009/js/llq/2345llq\.gif +# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina.txt: 3324) +.iefans.net/wp-content/uploads/2009/03/UCbanner\.gif +# ||ieche.com/InAds/ (easylistchina.txt: 3323) +.ieche.com/InAds/ +# ||ieche.com/global/*/ad/ (easylistchina.txt: 3322) +.ieche.com/global/.*/ad/ +# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina.txt: 3321) +.ie.5500w.com/market/404230/pop_browser\.js +# ||idcxr.com/images/ad (easylistchina.txt: 3320) +.idcxr.com/images/ad +# ||idcquan.com/linux/cio_new.html (easylistchina.txt: 3319) +.idcquan.com/linux/cio_new\.html +# ||idcot.com^ (easylistchina.txt: 3318) +.idcot.com +# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina.txt: 3317) +.idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff\.png +# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina.txt: 3316) +.idanmu.com/wp-content/themes/wpbangumi/images/assets/ +# ||icnkr.com/data/attachment/portal/ (easylistchina.txt: 3315) +.icnkr.com/data/attachment/portal/ +# ||icnkr.com/cnkradv/ (easylistchina.txt: 3314) +.icnkr.com/cnkradv/ +# ||icili.com/cpma.js (easylistchina.txt: 3313) +.icili.com/cpma\.js +# ||iciba.com/web/co/ci/ (easylistchina.txt: 3312) +.iciba.com/web/co/ci/ +# ||iciba.com/static/images/double11_ (easylistchina.txt: 3311) +.iciba.com/static/images/double11_ +# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina.txt: 3310) +.ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi\.jpg +# ||ibook8.com/xia*.js (easylistchina.txt: 3309) +.ibook8.com/xia.*\.js +# ||ibook8.com/js/b*.js (easylistchina.txt: 3308) +.ibook8.com/js/b.*\.js +# ||ibook8.com*/piao*.js (easylistchina.txt: 3307) +.ibook8.com*./(.*/)?piao.*\.js +# ||iapp.com.tw/iapp_ad.php (easylistchina.txt: 3306) +.iapp.com.tw/iapp_ad\.php +# ||iapolo.com/myjs/ (easylistchina.txt: 3305) +.iapolo.com/myjs/ +# ||iads.xinmin.cn^ (easylistchina.txt: 3304) +.iads.xinmin.cn +# ||i322.com/ad_avshow/ (easylistchina.txt: 3303) +.i322.com/ad_avshow/ +# ||i.syasn.com^ (easylistchina.txt: 3302) +.i.syasn.com +# ||i.fgi.tw/images/survey_of_woman (easylistchina.txt: 3301) +.i.fgi.tw/images/survey_of_woman +# ||i.168img.com^$image,object (easylistchina.txt: 3299) +.i.168img.com +# ||i.168gamer.$image,object (easylistchina.txt: 3298) +.i.168gamer.*. +# ||i-part.com.tw/js2/newShineStar (easylistchina.txt: 3297) +.i-part.com.tw/js2/newShineStar +# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina.txt: 3296) +.i-part.com.tw/images2/index/HouseStar/ +# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina.txt: 3295) +.i-part.com.tw/hookimg/23892_14367801811\.jpg +# ||i-gamer.net/promo_ (easylistchina.txt: 3294) +.i-gamer.net/promo_ +# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina.txt: 3293) +.i-gamer.net/image/banner_tag_726x100\.jpg +# ||hzhyhm.com^ (easylistchina.txt: 3292) +.hzhyhm.com +# ||hz.shouyoutv.com^ (easylistchina.txt: 3291) +.hz.shouyoutv.com +# ||hybbs.com/i/$image,object (easylistchina.txt: 3290) +.hybbs.com/i/ +# ||hxyl.net/hydzsw.jpg (easylistchina.txt: 3289) +.hxyl.net/hydzsw\.jpg +# ||hxsxw.com/js/float.js (easylistchina.txt: 3288) +.hxsxw.com/js/float\.js +# ||hxsxw.com/gg*.gif (easylistchina.txt: 3287) +.hxsxw.com/gg.*\.gif +# ||hxsd.com/templets/js/looyu_pop.js (easylistchina.txt: 3286) +.hxsd.com/templets/js/looyu_pop\.js +# ||hxsame.hexun.com (easylistchina.txt: 3285) +.hxsame.hexun.com*. +# ||hxjs.tool.hexun.com (easylistchina.txt: 3284) +.hxjs.tool.hexun.com*. +# ||hx95.com/images/vip.gif (easylistchina.txt: 3283) +.hx95.com/images/vip\.gif +# ||hx95.com/images/sn88.gif (easylistchina.txt: 3282) +.hx95.com/images/sn88\.gif +# ||huxiu.com/static/js/jobAds/ (easylistchina.txt: 3281) +.huxiu.com/static/js/jobAds/ +# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina.txt: 3280) +.hutc.zj.cn/skins/hutc2012/js/fp\.js +# ||hur.cn/AhurD/*.gif (easylistchina.txt: 3279) +.hur.cn/AhurD/.*\.gif +# ||huoyan.tv/yb/img/*.gif (easylistchina.txt: 3278) +.huoyan.tv/yb/img/.*\.gif +# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina.txt: 3277) +.huoxingyu.com/images/hxy_350_330\.gif +# ||huoche.net/Images/pc/ad_ (easylistchina.txt: 3276) +.huoche.net/Images/pc/ad_ +# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina.txt: 3275) +.hunantv.com/ui/2014/images/hao123\.jpg +# ||huizu100.com/data/attachment/portal/ (easylistchina.txt: 3274) +.huizu100.com/data/attachment/portal/ +# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina.txt: 3273) +.huizhou.cn/webfile/.*/images/scroll\.js +# ||huihuige.com/images/affiliates/*_250_250 (easylistchina.txt: 3272) +.huihuige.com/images/affiliates/.*_250_250 +# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina.txt: 3271) +.hudong.pl.youku.com/interact/web/get/timeLinePlugin\? +# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina.txt: 3270) +.hudong.pl.youku.com/interact/player/get/plugins\? +# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina.txt: 3269) +.huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default\.jpg +# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina.txt: 3268) +.huanqiukexue.com/uploads/images/hqkx_11\.jpg +# ||huanqiu.com^*/js/swt.js (easylistchina.txt: 3267) +.huanqiu.com/.*/js/swt\.js +# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina.txt: 3266) +.huanqiu.com/script/HuanQiuAllBottom\.Js +# ||huanqiu.com/resource/js/base.js (easylistchina.txt: 3265) +.huanqiu.com/resource/js/base\.js +# ||hualongxiang.com/lib/clientShow.js (easylistchina.txt: 3264) +.hualongxiang.com/lib/clientShow\.js +# ||hualady.com/static/ (easylistchina.txt: 3263) +.hualady.com/static/ +# ||huainet.com/index_tg/js/txg.js (easylistchina.txt: 3262) +.huainet.com/index_tg/js/txg\.js +# ||huaiduoduo.info/Runtime/js/ (easylistchina.txt: 3261) +.huaiduoduo.info/Runtime/js/ +# ||huacolor.com/nei/ (easylistchina.txt: 3260) +.huacolor.com/nei/ +# ||huacolor.com/daocaoren/ (easylistchina.txt: 3259) +.huacolor.com/daocaoren/ +# ||huacolor.com/all/ (easylistchina.txt: 3258) +.huacolor.com/all/ +# ||huabian.com/hb/ad/ (easylistchina.txt: 3257) +.huabian.com/hb/ad/ +# ||httpcn.com^*950_120 (easylistchina.txt: 3256) +.httpcn.com/.*950_120 +# ||httpcn.com/tg/ (easylistchina.txt: 3255) +.httpcn.com/tg/ +# ||httpcn.com/include/ad1/ (easylistchina.txt: 3254) +.httpcn.com/include/ad1/ +# ||httpcn.com/Images/banner (easylistchina.txt: 3253) +.httpcn.com/Images/banner +# ||httpcn.com/images/adpic2014/ad (easylistchina.txt: 3252) +.httpcn.com/images/adpic2014/ad +# ||httpcn.com/images/ad_ (easylistchina.txt: 3251) +.httpcn.com/images/ad_ +# ||htpc1.com/iBT/tools/ (easylistchina.txt: 3250) +.htpc1.com/iBT/tools/ +# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina.txt: 3249) +.hs.cnfol.com/Cm/Imgs/Load\.gif +# ||hrtsea.com/936x90.gif (easylistchina.txt: 3248) +.hrtsea.com/936x90\.gif +# ||hqdoor.com/Web/ (easylistchina.txt: 3247) +.hqdoor.com/Web/ +# ||hqcx.net/index.php?m=poster& (easylistchina.txt: 3246) +.hqcx.net/index\.php\?m=poster& +# ||how361.com/images/letou/xsbanner.gif (easylistchina.txt: 3244) +.how361.com/images/letou/xsbanner\.gif +# ||how361.com/images/letou/20130111.gif (easylistchina.txt: 3243) +.how361.com/images/letou/20130111\.gif +# ||how361.com/data/js.php?id= (easylistchina.txt: 3242) +.how361.com/data/js\.php\?id= +# ||houyi.baofeng.net^*.html (easylistchina.txt: 3241) +.houyi.baofeng.net/.*\.html +# ||house365.com/js/lbpopup.js (easylistchina.txt: 3240) +.house365.com/js/lbpopup\.js +# ||house365.com/*ads/201 (easylistchina.txt: 3239) +.house365.com/.*ads/201 +# ||house.sina.com.cn/2.0/ads/ (easylistchina.txt: 3238) +.house.sina.com.cn/2\.0/ads/ +# ||house.sina.com.cn/2.0/abp/ (easylistchina.txt: 3237) +.house.sina.com.cn/2\.0/abp/ +# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina.txt: 3236) +.house.shangdu.com/house/js/fmt_swf/ +# ||house.shangdu.com/d/file/p/*.swf (easylistchina.txt: 3235) +.house.shangdu.com/d/file/p/.*\.swf +# ||house.jschina.com.cn/userfiles/flash/ (easylistchina.txt: 3234) +.house.jschina.com.cn/userfiles/flash/ +# ||house.inhe.net/javascript/flashdiv.js (easylistchina.txt: 3233) +.house.inhe.net/javascript/flashdiv\.js +# ||house.163.com/special/*/dbhg.js (easylistchina.txt: 3232) +.house.163.com/special/.*/dbhg\.js +# ||houdao.com/images/xxd.jpg (easylistchina.txt: 3231) +.houdao.com/images/xxd\.jpg +# ||houdao.com/images/tophd.jpg (easylistchina.txt: 3230) +.houdao.com/images/tophd\.jpg +# ||houdao.com/images/ktpd.jpg (easylistchina.txt: 3229) +.houdao.com/images/ktpd\.jpg +# ||houdao.com/images/houdaov3/ban.png (easylistchina.txt: 3228) +.houdao.com/images/houdaov3/ban\.png +# ||houdao.com/bans/ (easylistchina.txt: 3227) +.houdao.com/bans/ +# ||hoto.cn/source/img/index_ (easylistchina.txt: 3226) +.hoto.cn/source/img/index_ +# ||hotavxxx.com/images/*96 (easylistchina.txt: 3225) +.hotavxxx.com/images/.*96 +# ||hot.580k.com/share/Ad_ (easylistchina.txt: 3224) +.hot.580k.com/share/Ad_ +# ||hoopchina.com.cn/web/ad/ (easylistchina.txt: 3223) +.hoopchina.com.cn/web/ad/ +# ||hoopchina.com.cn/topn$subdocument (easylistchina.txt: 3222) +.hoopchina.com.cn/topn +# ||hongxiu.com/images/home20140530.gif (easylistchina.txt: 3221) +.hongxiu.com/images/home20140530\.gif +# ||hongshu.com/hs/ (easylistchina.txt: 3220) +.hongshu.com/hs/ +# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina.txt: 3219) +.hongdou.gxnews.com.cn/upload/index/ +# ||hn-pc.com/css/Fun_Div.js (easylistchina.txt: 3218) +.hn-pc.com/css/Fun_Div\.js +# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina.txt: 3217) +.hkwb.net/extra/1992\.files/hengda\.gif +# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina.txt: 3216) +.hkwb.net/extra/1992\.files/2015yeshu\.swf +# ||hktvmall.com/api/preroll/getList? (easylistchina.txt: 3215) +.hktvmall.com/api/preroll/getList\? +# ||hkslg.com/gaogao/ (easylistchina.txt: 3214) +.hkslg.com/gaogao/ +# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina.txt: 3213) +.hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner\.jpg +# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina.txt: 3212) +.hkitblog.com/logo/hkitblog_zh\.jpg +# ||hkheadline.com^*/right_promo.js (easylistchina.txt: 3211) +.hkheadline.com/.*/right_promo\.js +# ||hkheadline.com/*promo/ (easylistchina.txt: 3210) +.hkheadline.com/.*promo/ +# ||hkheadline.com/*banner$script (easylistchina.txt: 3209) +.hkheadline.com/.*banner +# ||hkgolden.com/yahoo_ad (easylistchina.txt: 3208) +.hkgolden.com/yahoo_ad +# ||hkgolden.com/mtg/ (easylistchina.txt: 3207) +.hkgolden.com/mtg/ +# ||hkgolden.com/hkg.js (easylistchina.txt: 3206) +.hkgolden.com/hkg\.js +# ||hkgolden.com/google_ad (easylistchina.txt: 3205) +.hkgolden.com/google_ad +# ||hkepc.com/prepared/images/b608.png (easylistchina.txt: 3204) +.hkepc.com/prepared/images/b608\.png +# ||hkepc.com/forum/api/unimhk_ (easylistchina.txt: 3203) +.hkepc.com/forum/api/unimhk_ +# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina.txt: 3202) +.hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852\.swf +# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina.txt: 3201) +.hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515\.jpg +# ||hk-pub.com/forum/images/banner/ (easylistchina.txt: 3200) +.hk-pub.com/forum/images/banner/ +# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina.txt: 3199) +.hk-pub.com/forum/images/2009/home_advc\.jpg +# ||hk-bici.com/data/attachment/ad/ (easylistchina.txt: 3198) +.hk-bici.com/data/attachment/ad/ +# ||hjdn.cn/img/hjgq.gif (easylistchina.txt: 3197) +.hjdn.cn/img/hjgq\.gif +# ||hjav.org/wp-content/uploads/ (easylistchina.txt: 3196) +.hjav.org/wp-content/uploads/ +# ||hjav.org/ads.js (easylistchina.txt: 3195) +.hjav.org/ads\.js +# ||hjav.in/wp-content/uploads/ (easylistchina.txt: 3194) +.hjav.in/wp-content/uploads/ +# ||hjav.in/ads.js (easylistchina.txt: 3193) +.hjav.in/ads\.js +# ||hjav.in/ad_dl.js (easylistchina.txt: 3192) +.hjav.in/ad_dl\.js +# ||hipowerd.com/outbound/images/*_banner. (easylistchina.txt: 3191) +.hipowerd.com/outbound/images/.*_banner\. +# ||hinews.cn/swf/0/*.swf (easylistchina.txt: 3190) +.hinews.cn/swf/0/.*\.swf +# ||hinews.cn/out/$script (easylistchina.txt: 3189) +.hinews.cn/out/ +# ||hinews.cn/js/09page/10pagesjbtj (easylistchina.txt: 3188) +.hinews.cn/js/09page/10pagesjbtj +# ||hinews.cn/eweb/img/*/1000x (easylistchina.txt: 3187) +.hinews.cn/eweb/img/.*/1000x +# ||hinet.net/radio/getAdcode.do (easylistchina.txt: 3186) +.hinet.net/radio/getAdcode\.do +# ||hifidiy.net/www/*/hivi_ (easylistchina.txt: 3185) +.hifidiy.net/www/.*/hivi_ +# ||hiao.com/node/node_27508.htm (easylistchina.txt: 3184) +.hiao.com/node/node_27508\.htm +# ||hiad.vmall.com^ (easylistchina.txt: 3183) +.hiad.vmall.com +# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina.txt: 3182) +.hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942\.jpg +# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina.txt: 3181) +.hi.people.com.cn/NMediaFile/.*\.gif +# ||hi.people.com.cn/NMediaFile/$object (easylistchina.txt: 3180) +.hi.people.com.cn/NMediaFile/ +# ||hhmanhua.net/jsc/stat.js (easylistchina.txt: 3179) +.hhmanhua.net/jsc/stat\.js +# ||hhmanhua.net/jsc/book_ (easylistchina.txt: 3178) +.hhmanhua.net/jsc/book_ +# ||hhmanhua.net/hh/h*.js (easylistchina.txt: 3177) +.hhmanhua.net/hh/h.*\.js +# ||hhcomic.com/hh/h*.js (easylistchina.txt: 3176) +.hhcomic.com/hh/h.*\.js +# ||hfchenming.com.cn/ad.html (easylistchina.txt: 3175) +.hfchenming.com.cn/ad\.html +# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina.txt: 3174) +.hf365.com/0/14/60/93/14609355_921128\.jpg +# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina.txt: 3173) +.hf365.com/0/14/31/00/14310068_933922\.png +# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina.txt: 3172) +.hf365.com/0/13/79/87/13798795_912593\.jpg +# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina.txt: 3171) +# ||hexunimg.cn/m/images/ad_ (easylistchina.txt: 3170) +.hexunimg.cn/m/images/ad_ +# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina.txt: 3169) +.hexun.com*./(.*/)?hx_news/hx_news_finalpage\.js +# ||heshan.gov.cn/JS/ddgg.js (easylistchina.txt: 3168) +.heshan.gov.cn/JS/ddgg\.js +# ||henghost.com^$third-party (easylistchina.txt: 3167) +.henghost.com +# ||henan100.com^*/ad_article/ (easylistchina.txt: 3166) +.henan100.com/.*/ad_article/ +# ||henan.sina.com.cn/iframe/7/ (easylistchina.txt: 3165) +.henan.sina.com.cn/iframe/7/ +# ||heitu5.com/js/heituad/ (easylistchina.txt: 3164) +.heitu5.com/js/heituad/ +# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina.txt: 3163) +.heikexs.com/wp-content/themes/Duoxs.*/js/ +# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina.txt: 3162) +.heiguang.com/statics/201404/img/tiop-1\.jpg +# ||heiguang.com/f/uad/ (easylistchina.txt: 3161) +.heiguang.com/f/uad/ +# ||hego123.net/top.js (easylistchina.txt: 3160) +.hego123.net/top\.js +# ||hego123.net/760-90.js (easylistchina.txt: 3159) +.hego123.net/760-90\.js +# ||hefei.cc/templates/default/index_ad (easylistchina.txt: 3158) +.hefei.cc/templates/default/index_ad +# ||hebnews.cn/27510.files/baidu.js (easylistchina.txt: 3157) +.hebnews.cn/27510\.files/baidu\.js +# ||hebei.com.cn/sys/online_calc.js (easylistchina.txt: 3156) +.hebei.com.cn/sys/online_calc\.js +# ||hebei.com.cn/swf/ (easylistchina.txt: 3155) +.hebei.com.cn/swf/ +# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina.txt: 3154) +.hebei.com.cn/js/leftrightdown_piaofu_ad_js\.js +# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina.txt: 3153) +.hebei.com.cn/js/duilian_four_ad_js\.js +# ||hebei.com.cn/eap/ (easylistchina.txt: 3152) +.hebei.com.cn/eap/ +# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina.txt: 3151) +.hdzc.net/statics/images/lamu/mhs\.swf +# ||hdsq.cc/data/attachment/portal/ (easylistchina.txt: 3150) +.hdsq.cc/data/attachment/portal/ +# ||hdsky.me/adv/ (easylistchina.txt: 3148) +.hdsky.me/adv/ +# ||hdpfans.com/images/icons/*x75. (easylistchina.txt: 3147) +.hdpfans.com/images/icons/.*x75\. +# ||hdpfans.com/images/icons/*x70. (easylistchina.txt: 3146) +.hdpfans.com/images/icons/.*x70\. +# ||hdpfans.com/images/icons/*x60. (easylistchina.txt: 3145) +.hdpfans.com/images/icons/.*x60\. +# ||hdpfans.com/images/hotapp/ (easylistchina.txt: 3144) +.hdpfans.com/images/hotapp/ +# ||hdarea.co/pic/2222.gif (easylistchina.txt: 3143) +.hdarea.co/pic/2222\.gif +# ||hdad.baike.com^ (easylistchina.txt: 3142) +.hdad.baike.com +# ||hd62.com/img/ (easylistchina.txt: 3141) +.hd62.com/img/ +# ||hd180.com/js/ (easylistchina.txt: 3140) +.hd180.com/js/ +# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina.txt: 3139) +.hc360.com/security/201409/201409021830024990\.jpg +# ||hc360.com/security/201311/201311151050289368.swf (easylistchina.txt: 3138) +.hc360.com/security/201311/201311151050289368\.swf +# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina.txt: 3137) +.hc360.com/news/201207/201207241712413488\.jpg +# ||hc360.com/list/iframe_right_ad_ (easylistchina.txt: 3136) +.hc360.com/list/iframe_right_ad_ +# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina.txt: 3135) +.hc360.com/list/iframe_end_textadv\.shtml +# ||hc360.com/list/iframe_2012ad_ (easylistchina.txt: 3134) +.hc360.com/list/iframe_2012ad_ +# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina.txt: 3133) +.hc360.com/list/iframe_2011hezuo\.shtml +# ||hc360.com/js/hcpop_ (easylistchina.txt: 3132) +.hc360.com/js/hcpop_ +# ||hc360.com/js/*hezuo.js (easylistchina.txt: 3131) +.hc360.com/js/.*hezuo\.js +# ||hc360.com/images/14826/289x90.jpg (easylistchina.txt: 3130) +.hc360.com/images/14826/289x90\.jpg +# ||hbrc.com/bd1.html (easylistchina.txt: 3129) +.hbrc.com/bd1\.html +# ||haxiu.com/data/cache/myadn- (easylistchina.txt: 3128) +.haxiu.com/data/cache/myadn- +# ||happydown.com^$script,subdocument (easylistchina.txt: 3127) +.happydown.com +# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina.txt: 3126) +.haoyu.me/wp-content/uploads/2013/12/aliyun\.jpg +# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina.txt: 3125) +.haoyu.me/wp-content/uploads/2013/08/interserver-vps1\.gif +# ||haoxxoo.com/player/ad.html (easylistchina.txt: 3124) +.haoxxoo.com/player/ad\.html +# ||haowj.com.cn/d/js/outsidead/ (easylistchina.txt: 3123) +.haowj.com.cn/d/js/outsidead/ +# ||haoring03.com/ads/ (easylistchina.txt: 3122) +.haoring03.com/ads/ +# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina.txt: 3121) +.haokan5.com/js/haokanjs/youxiajiao\.js +# ||haokan5.com/js/haokanjs/tj.js (easylistchina.txt: 3120) +.haokan5.com/js/haokanjs/tj\.js +# ||haokan5.com/js/haokanjs/playa (easylistchina.txt: 3119) +.haokan5.com/js/haokanjs/playa +# ||haokan5.com/js/haokanjs/2014_ (easylistchina.txt: 3118) +.haokan5.com/js/haokanjs/2014_ +# ||haoghost.com/js/hy_cpc_print.js (easylistchina.txt: 3117) +.haoghost.com/js/hy_cpc_print\.js +# ||haofu1.com/images/*.gif (easylistchina.txt: 3116) +.haofu1.com/images/.*\.gif +# ||haofs.com/haofs/ggapi.asp (easylistchina.txt: 3115) +.haofs.com/haofs/ggapi\.asp +# ||haodai.com/src/i/lianmeng/ad/ (easylistchina.txt: 3114) +.haodai.com/src/i/lianmeng/ad/ +# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina.txt: 3113) +.haochi123.com/Js/Fun_Effects_HT9\.js +# ||haochi123.com/J_Box/Inc_ (easylistchina.txt: 3112) +.haochi123.com/J_Box/Inc_ +# ||hao6666.info^*.js (easylistchina.txt: 3111) +.hao6666.info/.*\.js +# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina.txt: 3110) +.hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT\.js +# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina.txt: 3109) +.hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43\.png +# ||hao123img.com/res/ecom/ (easylistchina.txt: 3108) +.hao123img.com/res/ecom/ +# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina.txt: 3107) +.hao123.com/data/v/stuff\.php\?.*_forhao123Adv +# ||hao123.cn/images/vip.png (easylistchina.txt: 3106) +.hao123.cn/images/vip\.png +# ||hao.rising.cn/images/nsdgg.jpg (easylistchina.txt: 3105) +.hao.rising.cn/images/nsdgg\.jpg +# ||hao.rising.cn/catalog/bottom.html (easylistchina.txt: 3104) +.hao.rising.cn/catalog/bottom\.html +# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina.txt: 3103) +.hanzify.*./(.*/)?Main/Template/Images/chinabank\.gif +# ||hangzhou.com.cn/inc_hzw/ (easylistchina.txt: 3102) +.hangzhou.com.cn/inc_hzw/ +# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina.txt: 3101) +.hangzhou.com.cn/images/flashyingpian\.swf +# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina.txt: 3100) +.hangzhou.com.cn/extra/flash/hzwarticle300\.swf +# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina.txt: 3099) +.hanfanba.com/template/hanfanba/img/tb- +# ||haiwainet.cn/json/news (easylistchina.txt: 3098) +.haiwainet.cn/json/news +# ||haiwainet.cn*/k.js (easylistchina.txt: 3097) +.haiwainet.cn*./(.*/)?k\.js +# ||hahade.com/tpl/*.html (easylistchina.txt: 3096) +.hahade.com/tpl/.*\.html +# ||haha.mx/upload/data/list_sidebar_ (easylistchina.txt: 3095) +.haha.mx/upload/data/list_sidebar_ +# ||haha.mx/upload/data/detail_ (easylistchina.txt: 3094) +.haha.mx/upload/data/detail_ +# ||haha.mx/images/market/ (easylistchina.txt: 3093) +.haha.mx/images/market/ +# ||haha.mx/images/banner/vipp.jpg (easylistchina.txt: 3092) +.haha.mx/images/banner/vipp\.jpg +# ||haha.mx/images/banner/tmall11.png (easylistchina.txt: 3091) +.haha.mx/images/banner/tmall11\.png +# ||haha.mx/images/banner/jd.jpg (easylistchina.txt: 3090) +.haha.mx/images/banner/jd\.jpg +# ||hackp.com/xiaojiu/ (easylistchina.txt: 3089) +.hackp.com/xiaojiu/ +# ||hackp.com/wz/ (easylistchina.txt: 3088) +.hackp.com/wz/ +# ||hacken.cc/file/ads/ (easylistchina.txt: 3087) +.hacken.cc/file/ads/ +# ||hackbase.com/vip/topbanner.html (easylistchina.txt: 3086) +.hackbase.com/vip/topbanner\.html +# ||hackbase.com/2009/bingdun2009.jpg (easylistchina.txt: 3085) +.hackbase.com/2009/bingdun2009\.jpg +# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina.txt: 3084) +.gzdaily.dayoo.com/tpl/banner.*\.swf +# ||gzcol.com/uploads/ad/ (easylistchina.txt: 3083) +.gzcol.com/uploads/ad/ +# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina.txt: 3082) +.gz.xinhuanet.com/2012image/mt\.swf +# ||gywb.cn/gggl/ (easylistchina.txt: 3081) +.gywb.cn/gggl/ +# ||gywb.cn/cs_mulu/ (easylistchina.txt: 3080) +.gywb.cn/cs_mulu/ +# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina.txt: 3079) +.gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09\.jpg +# ||gxorg.com/index.php?m=poster& (easylistchina.txt: 3078) +.gxorg.com/index\.php\?m=poster& +# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina.txt: 3077) +.gxnews.com.cn/clientscript/index_duilian_ +# ||gxnews.com.cn/cache/wwwads.js (easylistchina.txt: 3076) +.gxnews.com.cn/cache/wwwads\.js +# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina.txt: 3075) +.gx.xinhuanet.com/images2007/banner\.htm +# ||guyizhou.cn/temp/top_banner_ (easylistchina.txt: 3074) +.guyizhou.cn/temp/top_banner_ +# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina.txt: 3073) +.gusuwang.com/ymsextweb/javascript/gs +# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina.txt: 3072) +.gusuwang.com/ymsextweb/images/index/ist_t\.jpg +# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina.txt: 3071) +.gusuwang.com/ymsextweb/fullggw/ +# ||gusuwang.com/api/gsw_ (easylistchina.txt: 3070) +.gusuwang.com/api/gsw_ +# ||guqu.net/Cooperate/ (easylistchina.txt: 3069) +.guqu.net/Cooperate/ +# ||guokr.com/baidu-cbjs/ (easylistchina.txt: 3068) +.guokr.com/baidu-cbjs/ +# ||guofs.com/images/you.js (easylistchina.txt: 3067) +.guofs.com/images/you\.js +# ||guofs.com/images/578-60.gif (easylistchina.txt: 3066) +.guofs.com/images/578-60\.gif +# ||guitarchina.com/1/ww2014 (easylistchina.txt: 3065) +.guitarchina.com/1/ww2014 +# ||guess.h.qhimg.com^ (easylistchina.txt: 3064) +.guess.h.qhimg.com +# ||gucheng.com/2015/z4/ (easylistchina.txt: 3063) +.gucheng.com/2015/z4/ +# ||gucheng.com/2015/mst/ (easylistchina.txt: 3062) +.gucheng.com/2015/mst/ +# ||guahao.com/iwant/ads? (easylistchina.txt: 3061) +.guahao.com/iwant/ads\? +# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina.txt: 3060) +.gtv.com.cn/public/images/2014-06/15/110_89471402801935\.jpg +# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina.txt: 3059) +.gtv.com.cn/public/images/2014-03/20/71_12931395286234\.jpg +# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina.txt: 3058) +.gtv.com.cn/public/images/2014-01/26/97_76841390730340\.jpg +# ||gtimg.com^*/adv/ (easylistchina.txt: 3057) +.gtimg.com/.*/adv/ +# ||gtimg.com^*/ad/ (easylistchina.txt: 3056) +.gtimg.com/.*/ad/ +# ||gtimg.com/www/test/300_250.swf (easylistchina.txt: 3055) +.gtimg.com/www/test/300_250\.swf +# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina.txt: 3054) +.gtimg.com/web/default_fodders/300x600_ +# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina.txt: 3053) +.gtimg.com/v/pics/hv1/88/83/1734/112774603\.jpg +# ||gtimg.com/qqlive/ (easylistchina.txt: 3052) +.gtimg.com/qqlive/ +# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina.txt: 3051) +.gtimg.com/newsapp_ls/0/27161189/0 +# ||gtimg.com/news/news/2014ad/ (easylistchina.txt: 3050) +.gtimg.com/news/news/2014ad/ +# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina.txt: 3049) +.gtimg.com/ent/final2009/dp_tebu_logo\.png +# ||gtimg.com/comic/richmedia/ (easylistchina.txt: 3048) +.gtimg.com/comic/richmedia/ +# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina.txt: 3047) +.gtimg.com/comic/pics/hv1/29/74/1631/106074674\.jpg +# ||gter.net^*adv (easylistchina.txt: 3046) +.gter.net/.*adv +# ||gt.yy.com^ (easylistchina.txt: 3045) +.gt.yy.com +# ||gsspcln.jp^ (easylistchina.txt: 3044) +.gsspcln.jp +# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina.txt: 3043) +.gscn.com.cn/pic/0/10/34/27/10342786_994137\.gif +# ||gscn.com.cn/home/images/advscroll.js (easylistchina.txt: 3042) +.gscn.com.cn/home/images/advscroll\.js +# ||groupa.onlylady.com^ (easylistchina.txt: 3041) +.groupa.onlylady.com +# ||greenxiazai.com/jsgreen/ (easylistchina.txt: 3040) +.greenxiazai.com/jsgreen/ +# ||greenxiazai.com/greenjs/ (easylistchina.txt: 3039) +.greenxiazai.com/greenjs/ +# ||greenxf.com/js/main.js (easylistchina.txt: 3038) +.greenxf.com/js/main\.js +# ||greenxf.com/img/46860.gif (easylistchina.txt: 3037) +.greenxf.com/img/46860\.gif +# ||greenxf.com/asp/ (easylistchina.txt: 3036) +.greenxf.com/asp/ +# ||greatwuyi.com/tplimg/1.files/ad (easylistchina.txt: 3035) +.greatwuyi.com/tplimg/1\.files/ad +# ||gqgc.sz.zj.cn^ (easylistchina.txt: 3034) +.gqgc.sz.zj.cn +# ||gpxz.com/skins/gupuxiazai/soft (easylistchina.txt: 3033) +.gpxz.com/skins/gupuxiazai/soft +# ||gpxz.com/js2/ (easylistchina.txt: 3032) +.gpxz.com/js2/ +# ||gpsdlm.com/images/lm2.jpg (easylistchina.txt: 3031) +.gpsdlm.com/images/lm2\.jpg +# ||gpsdlm.com/images/jdyigou.jpg (easylistchina.txt: 3030) +.gpsdlm.com/images/jdyigou\.jpg +# ||gpcxw.com/file/js/img/*.gif (easylistchina.txt: 3029) +.gpcxw.com/file/js/img/.*\.gif +# ||goyeah.com/homepage.html (easylistchina.txt: 3027) +.goyeah.com/homepage\.html +# ||goto.www.iciba.com^ (easylistchina.txt: 3026) +.goto.www.iciba.com +# ||gope.cn/1commonfile/guidebar/ (easylistchina.txt: 3025) +.gope.cn/1commonfile/guidebar/ +# ||gope.cn/1commonfile/*.swf (easylistchina.txt: 3024) +.gope.cn/1commonfile/.*\.swf +# ||gope.cn/1commonfile/*.htm (easylistchina.txt: 3023) +.gope.cn/1commonfile/.*\.htm +# ||gope.cn/1commonfile/*.gif (easylistchina.txt: 3022) +.gope.cn/1commonfile/.*\.gif +# ||goods.tudou.com/api? (easylistchina.txt: 3020) +.goods.tudou.com/api\? +# ||good.gd/js/loadpopads.aspx (easylistchina.txt: 3019) +.good.gd/js/loadpopads\.aspx +# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina.txt: 3018) +.good.gd/good\.gd/js/downloadPrograss\.js +# ||gohubei.com/img/zhuna.gif (easylistchina.txt: 3017) +.gohubei.com/img/zhuna\.gif +# ||gohubei.com/img/tuniu.jpg (easylistchina.txt: 3016) +.gohubei.com/img/tuniu\.jpg +# ||go2tutor.com/lifebox.asp (easylistchina.txt: 3015) +.go2tutor.com/lifebox\.asp +# ||go.hangzhou.com.cn^ (easylistchina.txt: 3014) +.go.hangzhou.com.cn +# ||gmw.cn/banner/ (easylistchina.txt: 3013) +.gmw.cn/banner/ +# ||gminfo.cn/qds/gmszyy.swf (easylistchina.txt: 3012) +.gminfo.cn/qds/gmszyy\.swf +# ||gminfo.cn/js/ad- (easylistchina.txt: 3011) +.gminfo.cn/js/ad- +# ||gminfo.cn/flash/ (easylistchina.txt: 3010) +.gminfo.cn/flash/ +# ||gmbuluo.com/js/yxj (easylistchina.txt: 3009) +.gmbuluo.com/js/yxj +# ||gmbuluo.com/js/shouye (easylistchina.txt: 3008) +.gmbuluo.com/js/shouye +# ||gmbuluo.com/js/liebiao (easylistchina.txt: 3007) +.gmbuluo.com/js/liebiao +# ||gmbbk.cn/jj/ (easylistchina.txt: 3006) +.gmbbk.cn/jj/ +# ||gmbbk.cn/img/top.js (easylistchina.txt: 3005) +.gmbbk.cn/img/top\.js +# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina.txt: 3004) +.global.tianyaui.com/global/wizard/js/wizard\.js +# ||github.io/2048/full/meta/cmpay.gif (easylistchina.txt: 3003) +.github.io/2048/full/meta/cmpay\.gif +# ||gimhoy.com/201404/cute.jpg (easylistchina.txt: 3002) +.gimhoy.com/201404/cute\.jpg +# ||gigacircle.com/images/*720X85. (easylistchina.txt: 3001) +.gigacircle.com/images/.*720X85\. +# ||gigacircle.com/images/*250X250. (easylistchina.txt: 3000) +.gigacircle.com/images/.*250X250\. +# ||ghostxp3.com/xf.js (easylistchina.txt: 2999) +.ghostxp3.com/xf\.js +# ||ghoffice.com/bbs/js/float.js (easylistchina.txt: 2998) +.ghoffice.com/bbs/js/float\.js +# ||ghjie.com/JS/youcegg.js (easylistchina.txt: 2997) +.ghjie.com/JS/youcegg\.js +# ||ghjie.com/images/2012/images/bg (easylistchina.txt: 2996) +.ghjie.com/images/2012/images/bg +# ||ggyq.xdkb.net^ (easylistchina.txt: 2995) +.ggyq.xdkb.net +# ||ggw.watertu.com^ (easylistchina.txt: 2994) +.ggw.watertu.com +# ||ggw.gusuwang.com^ (easylistchina.txt: 2993) +.ggw.gusuwang.com +# ||ggg.zj.com^ (easylistchina.txt: 2992) +.ggg.zj.com +# ||gg163.net/js/gg163ad.js (easylistchina.txt: 2991) +.gg163.net/js/gg163ad\.js +# ||gg163.net/js/163bbsad.js (easylistchina.txt: 2990) +.gg163.net/js/163bbsad\.js +# ||gg163.net/gpimages/ad33.gif (easylistchina.txt: 2989) +.gg163.net/gpimages/ad33\.gif +# ||gg163.net/gpimages/22.gif (easylistchina.txt: 2988) +.gg163.net/gpimages/22\.gif +# ||gg163.net/2015ad/ (easylistchina.txt: 2987) +.gg163.net/2015ad/ +# ||gg163.net/2014ad/ (easylistchina.txt: 2986) +.gg163.net/2014ad/ +# ||gg163.net/2013ad/ (easylistchina.txt: 2985) +.gg163.net/2013ad/ +# ||gg163.net/2012ad/ (easylistchina.txt: 2984) +.gg163.net/2012ad/ +# ||gg.yxdown.com^ (easylistchina.txt: 2983) +.gg.yxdown.com +# ||gg.sonhoo.com^ (easylistchina.txt: 2982) +.gg.sonhoo.com +# ||gg.kugou.com^ (easylistchina.txt: 2981) +.gg.kugou.com +# ||gg.gao7.com^ (easylistchina.txt: 2980) +.gg.gao7.com +# ||gg.cs090.com^ (easylistchina.txt: 2979) +.gg.cs090.com +# ||gg.bxwx5.com^ (easylistchina.txt: 2978) +.gg.bxwx5.com +# ||gg.18183.com^ (easylistchina.txt: 2977) +.gg.18183.com +# ||gg.0598yu.com^ (easylistchina.txt: 2976) +.gg.0598yu.com +# ||gg-art.com/anod/ (easylistchina.txt: 2975) +.gg-art.com/anod/ +# ||gfan.com/press/ (easylistchina.txt: 2974) +.gfan.com/press/ +# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina.txt: 2973) +.gfan.com/plugin\.php\?id=gfan_viewpic:gfan_adView +# ||gezila.com/gimg/yinsu (easylistchina.txt: 2972) +.gezila.com/gimg/yinsu +# ||gexing.com/j/??zmask.js,easing.js? (easylistchina.txt: 2971) +.gexing.com/j/\?\?zmask\.js,easing\.js\? +# ||gexing.com/api/api_get_tankuang.php? (easylistchina.txt: 2970) +.gexing.com/api/api_get_tankuang\.php\? +# ||gexing.com.cn^*/images/jr.jpg (easylistchina.txt: 2969) +.gexing.com.cn/.*/images/jr\.jpg +# ||gexing.com.cn^*/images/1a.jpg (easylistchina.txt: 2968) +.gexing.com.cn/.*/images/1a\.jpg +# ||get.766.com^ (easylistchina.txt: 2967) +.get.766.com +# ||geiliwx.com/read/ad$script (easylistchina.txt: 2966) +.geiliwx.com/read/ad +# ||gdt.qq.com^ (easylistchina.txt: 2965) +.gdt.qq.com +# ||gdmm.com/Public/config/Couplet/Index (easylistchina.txt: 2964) +.gdmm.com/Public/config/Couplet/Index +# ||gdmm.com/mybt/ (easylistchina.txt: 2963) +.gdmm.com/mybt/ +# ||gdmm.com/js/images/z.swf (easylistchina.txt: 2962) +.gdmm.com/js/images/z\.swf +# ||gdmm.com/js/images/y.swf (easylistchina.txt: 2961) +.gdmm.com/js/images/y\.swf +# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina.txt: 2960) +.gdaily.org/wp-content/uploads/an-temp/ +# ||gd.sina.com.cn/iframe/22/ (easylistchina.txt: 2959) +.gd.sina.com.cn/iframe/22/ +# ||gd.ct10000.com/js/ecssstat.js (easylistchina.txt: 2958) +.gd.ct10000.com/js/ecssstat\.js +# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina.txt: 2957) +.gaofen.com/source/plugin/gaofen_ad/ +# ||ganjituiguang.ganji.com^ (easylistchina.txt: 2956) +.ganjituiguang.ganji.com +# ||ganjistatic1.com^*/adm/ (easylistchina.txt: 2955) +.ganjistatic1.com/.*/adm/ +# ||ganjistatic1.com^*-banner- (easylistchina.txt: 2954) +.ganjistatic1.com/.*-banner- +# ||ganji.com/content.php (easylistchina.txt: 2953) +.ganji.com/content\.php +# ||ganbingw.com/images/top960.jpg (easylistchina.txt: 2952) +.ganbingw.com/images/top960\.jpg +# ||gamme.com.tw/ga/ (easylistchina.txt: 2951) +.gamme.com.tw/ga/ +# ||games.ifeng.com^$subdocument (easylistchina.txt: 2950) +.games.ifeng.com +# ||gamersky.com^*.htm$subdocument (easylistchina.txt: 2949) +.gamersky.com/.*\.htm +# ||gamersky.com/piaofu*/ (easylistchina.txt: 2948) +.gamersky.com/piaofu.*/ +# ||gamersky.com/img/ (easylistchina.txt: 2947) +.gamersky.com/img/ +# ||gamersky.com/gsinc/content_bg.js (easylistchina.txt: 2946) +.gamersky.com/gsinc/content_bg\.js +# ||gamersky.com/g/gamerskyflash.js (easylistchina.txt: 2945) +.gamersky.com/g/gamerskyflash\.js +# ||gamersky.com/bgpic/ (easylistchina.txt: 2944) +.gamersky.com/bgpic/ +# ||gamefy.cn/cookiead.php (easylistchina.txt: 2943) +.gamefy.cn/cookiead\.php +# ||gameapps.hk/js/determine_page_ (easylistchina.txt: 2942) +.gameapps.hk/js/determine_page_ +# ||gameapps.hk/js/content_ (easylistchina.txt: 2941) +.gameapps.hk/js/content_ +# ||gameapps.hk/images/apps/ad/ (easylistchina.txt: 2940) +.gameapps.hk/images/apps/ad/ +# ||game.466.com^$third-party (easylistchina.txt: 2939) +.game.466.com +# ||gagays.com/site/ad300x300 (easylistchina.txt: 2938) +.gagays.com/site/ad300x300 +# ||g4.beva.com/data-js- (easylistchina.txt: 2937) +.g4.beva.com/data-js- +# ||g2.ousns.net^ (easylistchina.txt: 2936) +.g2.ousns.net +# ||g1080.com/js/cache_bg.js (easylistchina.txt: 2935) +.g1080.com/js/cache_bg\.js +# ||g1.0573ren.com^ (easylistchina.txt: 2934) +.g1.0573ren.com +# ||g.rexian.net.cn/js/ (easylistchina.txt: 2933) +.g.rexian.net.cn/js/ +# ||g.ousns.net^ (easylistchina.txt: 2932) +.g.ousns.net +# ||g.jinti.com/f/a/a (easylistchina.txt: 2931) +.g.jinti.com/f/a/a +# ||g.hsw.cn^ (easylistchina.txt: 2930) +.g.hsw.cn +# ||g.gxorg.com^ (easylistchina.txt: 2929) +.g.gxorg.com +# ||g.cnzz.cn/Static/js/*- (easylistchina.txt: 2928) +.g.cnzz.cn/Static/js/.*- +# ||g.163.com/*&affiliate= (easylistchina.txt: 2927) +.g.163.com/.*&affiliate= +# ||fzpchome.com/txt/$script (easylistchina.txt: 2926) +.fzpchome.com/txt/ +# ||fzlol.com/images/$script (easylistchina.txt: 2925) +.fzlol.com/images/ +# ||fzbm.com/bbs/static/js/bma.js (easylistchina.txt: 2924) +.fzbm.com/bbs/static/js/bma\.js +# ||fxxz.com/show/ (easylistchina.txt: 2923) +.fxxz.com/show/ +# ||fxpan.com/sina.jpg (easylistchina.txt: 2922) +.fxpan.com/sina\.jpg +# ||fx678.com/proxy (easylistchina.txt: 2921) +.fx678.com/proxy +# ||fx678.com/js/baidu_ (easylistchina.txt: 2920) +.fx678.com/js/baidu_ +# ||fx114.net/images/bangbaotao.jpg (easylistchina.txt: 2919) +.fx114.net/images/bangbaotao\.jpg +# ||fwxgx.com/u/ad/show_type/ (easylistchina.txt: 2918) +.fwxgx.com/u/ad/show_type/ +# ||funtude.com/include/inc/ad_data. (easylistchina.txt: 2917) +.funtude.com/include/inc/ad_data\. +# ||func.tw/image/func2.png (easylistchina.txt: 2916) +.func.tw/image/func2\.png +# ||fun.ynet.com^ (easylistchina.txt: 2915) +.fun.ynet.com +# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina.txt: 2914) +.fumanhua.com/template/.*/images/g_js/ +# ||fullyu.com/js-lib/jquery.modal. (easylistchina.txt: 2913) +.fullyu.com/js-lib/jquery\.modal\. +# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina.txt: 2912) +.fulitie.org/wp-content/themes/D8_4\.0/js/guanbi-no\.js +# ||fulidang.com/ads/ (easylistchina.txt: 2911) +.fulidang.com/ads/ +# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina.txt: 2910) +.fububu.com/zb_users/THEME/LuSongSong/style/ads/ +# ||ftchinese.com/m/marketing/ad.html (easylistchina.txt: 2909) +.ftchinese.com/m/marketing/ad\.html +# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina.txt: 2908) +.fspcdn.com/main/fis/js/v11/play/pop-ad_ +# ||fsehome.com/images/ad_tan.js (easylistchina.txt: 2907) +.fsehome.com/images/ad_tan\.js +# ||freep.cn/lianjie/qqtongji.js (easylistchina.txt: 2906) +.freep.cn/lianjie/qqtongji\.js +# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina.txt: 2905) +.freep.cn/3tb_1408171239008bu7512293\.jpg +# ||free9.net/myc/myc.js (easylistchina.txt: 2904) +.free9.net/myc/myc\.js +# ||free9.net/images/pic/dhc2013.gif (easylistchina.txt: 2903) +.free9.net/images/pic/dhc2013\.gif +# ||fragment.firefoxchina.cn/html/ (easylistchina.txt: 2902) +.fragment.firefoxchina.cn/html/ +# ||fpdisplay.com/upload/n_ad/ (easylistchina.txt: 2901) +.fpdisplay.com/upload/n_ad/ +# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina.txt: 2900) +.fpdisplay.com/templates/default/js/palyflash_ +# ||fpdisplay.com/images/*960X30. (easylistchina.txt: 2899) +.fpdisplay.com/images/.*960X30\. +# ||fpdisplay.com/images/*960X230. (easylistchina.txt: 2898) +.fpdisplay.com/images/.*960X230\. +# ||forum.techweb.com.cn/advtcnt.php (easylistchina.txt: 2897) +.forum.techweb.com.cn/advtcnt\.php +# ||forum.51nb.com/images/ (easylistchina.txt: 2896) +.forum.51nb.com/images/ +# ||focus.cn/common/js/adm (easylistchina.txt: 2895) +.focus.cn/common/js/adm +# ||fmdisk.com/templates/yythems/images/qq (easylistchina.txt: 2894) +.fmdisk.com/templates/yythems/images/qq +# ||fmdisk.com/ima/ (easylistchina.txt: 2893) +.fmdisk.com/ima/ +# ||float.sandai.net^$object-subrequest (easylistchina.txt: 2892) +.float.sandai.net +# ||flighty.cn/templets/images/2345- (easylistchina.txt: 2891) +.flighty.cn/templets/images/2345- +# ||flighty.cn/images/kiees.jpg (easylistchina.txt: 2890) +.flighty.cn/images/kiees\.jpg +# ||flash8.net/flash8_a_d_s/ (easylistchina.txt: 2889) +.flash8.net/flash8_a_d_s/ +# ||flash.mycar168.com/data/js/ (easylistchina.txt: 2888) +.flash.mycar168.com/data/js/ +# ||fjlyfdc.com.cn/hxhad/ (easylistchina.txt: 2887) +.fjlyfdc.com.cn/hxhad/ +# ||fj007.com/money/ (easylistchina.txt: 2886) +.fj007.com/money/ +# ||fj.sina.com.cn/iframe/63/ (easylistchina.txt: 2885) +.fj.sina.com.cn/iframe/63/ +# ||firefoxchina.cn^*_topbanner (easylistchina.txt: 2884) +.firefoxchina.cn/.*_topbanner +# ||firefoxchina.cn^*_couplet (easylistchina.txt: 2883) +.firefoxchina.cn/.*_couplet +# ||firefoxchina.cn^*49560. (easylistchina.txt: 2882) +.firefoxchina.cn/.*49560\. +# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina.txt: 2881) +.firefoxchina.cn/res/js/fchina_video-min\.js +# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina.txt: 2880) +.firefoxchina.cn/2014/.*_foxphone\.png +# ||files.webcars.com.cn^*.swf?link= (easylistchina.txt: 2879) +.files.webcars.com.cn/.*\.swf\?link= +# ||files.nyaa.se/a*.$image (easylistchina.txt: 2878) +.files.nyaa.se/a.*\. +# ||files.nyaa.eu/a*.$image (easylistchina.txt: 2877) +.files.nyaa.eu/a.*\. +# ||file.ws.126.net/house/nj/*.swf (easylistchina.txt: 2876) +.file.ws.126.net/house/nj/.*\.swf +# ||file.ws.126.net/house/jn/*.swf (easylistchina.txt: 2875) +.file.ws.126.net/house/jn/.*\.swf +# ||file.ws.126.net/house/*/js/tc_ (easylistchina.txt: 2874) +.file.ws.126.net/house/.*/js/tc_ +# ||file.shmet.com/images/ (easylistchina.txt: 2873) +.file.shmet.com/images/ +# ||file.cloud.sogou.com/*/superzone/ (easylistchina.txt: 2872) +.file.cloud.sogou.com/.*/superzone/ +# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina.txt: 2871) +.fhm.com.tw/js/colorbox/jquery\.colorbox\.js +# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina.txt: 2870) +.fhm.com.tw/fhm_upload/full_ad_ +# ||fg.cc/logo/xierguanggao. (easylistchina.txt: 2869) +.fg.cc/logo/xierguanggao\. +# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina.txt: 2868) +.feng.com/aodoo3/view\.php\?what=zone:16& +# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina.txt: 2867) +.feng.com/aodoo3/view\.php\?what=zone:13& +# ||feihu.la/Runtime/js/vod (easylistchina.txt: 2866) +.feihu.la/Runtime/js/vod +# ||feedss.com/uploadfile/ad/ (easylistchina.txt: 2865) +.feedss.com/uploadfile/ad/ +# ||fdc.my0511.com^$script (easylistchina.txt: 2864) +.fdc.my0511.com +# ||fdc.com.cn^*adv (easylistchina.txt: 2863) +.fdc.com.cn/.*adv +# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina.txt: 2862) +.fdc.com.cn/cms/js/home_js/.*_move_ +# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina.txt: 2861) +.fdc.com.cn/cms/js/bbs/dl\.js +# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina.txt: 2860) +.fdc.com.cn/cms/js/bbs/bbstonglan\.js +# ||faxingw.cn/js/wenba.js (easylistchina.txt: 2859) +.faxingw.cn/js/wenba\.js +# ||faxingw.cn/js/jiafa (easylistchina.txt: 2858) +.faxingw.cn/js/jiafa +# ||faxingw.cn/js/detailgcbox.js (easylistchina.txt: 2857) +.faxingw.cn/js/detailgcbox\.js +# ||faxingw.cn/js/*gg (easylistchina.txt: 2856) +.faxingw.cn/js/.*gg +# ||faxingw.cn/js/*ad (easylistchina.txt: 2855) +.faxingw.cn/js/.*ad +# ||faxingw.cn/js/*0 (easylistchina.txt: 2854) +.faxingw.cn/js/.*0 +# ||fantizi5.com/js/baiduad (easylistchina.txt: 2853) +.fantizi5.com/js/baiduad +# ||fantizi5.com/js/ad*.js (easylistchina.txt: 2852) +.fantizi5.com/js/ad.*\.js +# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina.txt: 2851) +.fanhaobao.net/wp-content/themes/xiu/js/single\.js +# ||fang99.com/JavaScript/advjs/ (easylistchina.txt: 2850) +.fang99.com/JavaScript/advjs/ +# ||fang.com/afp/door/ (easylistchina.txt: 2849) +.fang.com/afp/door/ +# ||fancai.com/Images/2014*.gif (easylistchina.txt: 2848) +.fancai.com/Images/2014.*\.gif +# ||familydoctor.com.cn/aiframe/ (easylistchina.txt: 2847) +.familydoctor.com.cn/aiframe/ +# ||faidns.com/image/site/faiscoAd/ (easylistchina.txt: 2846) +.faidns.com/image/site/faiscoAd/ +# ||ezprice.com.tw/js/*_ysm_ (easylistchina.txt: 2845) +.ezprice.com.tw/js/.*_ysm_ +# ||ezprice.com.tw/ezysm/ (easylistchina.txt: 2844) +.ezprice.com.tw/ezysm/ +# ||ezaozi.com/detail/*.js (easylistchina.txt: 2843) +.ezaozi.com/detail/.*\.js +# ||eyuyao.com/yyad/ (easylistchina.txt: 2842) +.eyuyao.com/yyad/ +# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina.txt: 2841) +.eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash\.jpg +# ||ettoday.net^*/ad/ (easylistchina.txt: 2840) +.ettoday.net/.*/ad/ +# ||ettoday.net/events/ad-tab/ (easylistchina.txt: 2839) +.ettoday.net/events/ad-tab/ +# ||ettoday.net/banners/ (easylistchina.txt: 2838) +.ettoday.net/banners/ +# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina.txt: 2837) +.etnet.com.hk/www/tc/stocks/ads/ +# ||etnet.com.hk/ad2014/ (easylistchina.txt: 2836) +.etnet.com.hk/ad2014/ +# ||etf88.com/swf/ (easylistchina.txt: 2835) +.etf88.com/swf/ +# ||etf88.com/jjb/*_ad$script (easylistchina.txt: 2834) +.etf88.com/jjb/.*_ad +# ||etest8.com/subcatejs/158/utitle158.js (easylistchina.txt: 2833) +.etest8.com/subcatejs/158/utitle158\.js +# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina.txt: 2832) +.etest8.com/subcatejs/158/tg158_330x190\.js +# ||etest8.com/style/full_floating.js (easylistchina.txt: 2831) +.etest8.com/style/full_floating\.js +# ||etest8.com/style/950x90_2.js (easylistchina.txt: 2830) +.etest8.com/style/950x90_2\.js +# ||etdown.net/images/ad1 (easylistchina.txt: 2829) +.etdown.net/images/ad1 +# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina.txt: 2828) +.eprice.com.tw/js/swfobject-2\.3\.js +# ||eprice.com.tw/img/tw_m/ad/ (easylistchina.txt: 2827) +.eprice.com.tw/img/tw_m/ad/ +# ||eprice.com.tw/img/dis/file/ (easylistchina.txt: 2826) +.eprice.com.tw/img/dis/file/ +# ||eprice.cn/image/upload/ad/ (easylistchina.txt: 2825) +.eprice.cn/image/upload/ad/ +# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina.txt: 2824) +.epinv.com/wp-content/themes/ep/tu/yinshu\.gif +# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina.txt: 2823) +.epinv.com/wp-content/themes/ep/tu/.*250\.js +# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina.txt: 2822) +.epinv.com/wp-content/themes/ep/js/single\.js +# ||eol.cn/js/global/jQuery_ads.js (easylistchina.txt: 2821) +.eol.cn/js/global/jQuery_ads\.js +# ||eol.cn/js/eol/ (easylistchina.txt: 2820) +.eol.cn/js/eol/ +# ||entry.baidu.com/rp/home? (easylistchina.txt: 2819) +.entry.baidu.com/rp/home\? +# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina.txt: 2818) +.enshi.cn/userfiles/esrb/ +# ||enread.com/img/185-50.gif (easylistchina.txt: 2817) +.enread.com/img/185-50\.gif +# ||enjoy101.org/hk_rm_tab_ (easylistchina.txt: 2816) +.enjoy101.org/hk_rm_tab_ +# ||enet.com.cn/mem_str_zoneid= (easylistchina.txt: 2815) +.enet.com.cn/mem_str_zoneid= +# ||enet.com.cn/home/v6/includes/adv/ (easylistchina.txt: 2814) +.enet.com.cn/home/v6/includes/adv/ +# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina.txt: 2813) +.enet.com.cn/eschool/includes/gdtup/tu6/slide\.js +# ||ems183.cn/images/kiees (easylistchina.txt: 2812) +.ems183.cn/images/kiees +# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina.txt: 2811) +.embest-tech.cn/js/jquery\.blockUI\.js +# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina.txt: 2810) +.emarketing.bot.com.tw/output/vi\.aspx\? +# ||elecfans.com/images2012/pcb.gif (easylistchina.txt: 2809) +.elecfans.com/images2012/pcb\.gif +# ||elecfans.com/baidu_m.html (easylistchina.txt: 2808) +.elecfans.com/baidu_m\.html +# ||eeyy.com/uploadfile/img/beitou (easylistchina.txt: 2807) +.eeyy.com/uploadfile/img/beitou +# ||eeyy.com/templates/js/other/yxj.js (easylistchina.txt: 2806) +.eeyy.com/templates/js/other/yxj\.js +# ||eeyy.com/otherhtml/js/ad650.js (easylistchina.txt: 2805) +.eeyy.com/otherhtml/js/ad650\.js +# ||eeee42.com/Ads/ (easylistchina.txt: 2804) +.eeee42.com/Ads/ +# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina.txt: 2803) +.eduuu.com/gaokao/2015/bannerDaili\.js +# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina.txt: 2802) +.educity.cn/self_text/text_disp\.aspx\?id= +# ||edu24ol.com/web_news/js/1100.jpg (easylistchina.txt: 2801) +.edu24ol.com/web_news/js/1100\.jpg +# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina.txt: 2800) +.edu24ol.com/web_news/images/cj_news\.jpg +# ||edu03.com/data/js.php?id= (easylistchina.txt: 2799) +.edu03.com/data/js\.php\?id= +# ||ecmb.bdimg.com^ (easylistchina.txt: 2798) +.ecmb.bdimg.com +# ||ecma.bdimg.com^ (easylistchina.txt: 2797) +.ecma.bdimg.com +# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina.txt: 2796) +.ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb\.jpg +# ||ebrun.com/jfile/position/js/*.js (easylistchina.txt: 2795) +.ebrun.com/jfile/position/js/.*\.js +# ||ebrun.com/jfile/lagou.js (easylistchina.txt: 2794) +.ebrun.com/jfile/lagou\.js +# ||ebp.renren.com^ (easylistchina.txt: 2793) +.ebp.renren.com +# ||ebiotrade.com/web_images/*.swf (easylistchina.txt: 2792) +.ebiotrade.com/web_images/.*\.swf +# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina.txt: 2791) +.ebiotrade.com/newsf/js/news_top_banner\.js +# ||ebiotrade.com/newsf/js/inpic.js (easylistchina.txt: 2790) +.ebiotrade.com/newsf/js/inpic\.js +# ||ebiotrade.com/jslibrary/js (easylistchina.txt: 2789) +.ebiotrade.com/jslibrary/js +# ||eat-travel.com.tw^$third-party (easylistchina.txt: 2788) +.eat-travel.com.tw +# ||eastmoney.com/js/headbiggg_ (easylistchina.txt: 2787) +.eastmoney.com/js/headbiggg_ +# ||eastlady.cn/cssjs/indextopad.js (easylistchina.txt: 2786) +.eastlady.cn/cssjs/indextopad\.js +# ||eastlady.cn/cssjs/indexgg.js (easylistchina.txt: 2785) +.eastlady.cn/cssjs/indexgg\.js +# ||eastlady.cn/cssjs/indexbaner (easylistchina.txt: 2784) +.eastlady.cn/cssjs/indexbaner +# ||eastday.com/k.js (easylistchina.txt: 2783) +.eastday.com/k\.js +# ||easou.com/online/banner/ (easylistchina.txt: 2782) +.easou.com/online/banner/ +# ||easou.com/brandImage/ad/ (easylistchina.txt: 2781) +.easou.com/brandImage/ad/ +# ||eap.enorth.com.cn^ (easylistchina.txt: 2780) +.eap.enorth.com.cn +# ||eap.big5.enorth.com.cn^ (easylistchina.txt: 2779) +.eap.big5.enorth.com.cn +# ||e399.com/html/ (easylistchina.txt: 2778) +.e399.com/html/ +# ||e23.cn/js/aaa.js (easylistchina.txt: 2777) +.e23.cn/js/aaa\.js +# ||e0575.com/pic/AD_ (easylistchina.txt: 2776) +.e0575.com/pic/AD_ +# ||e0575.com/attachment/image/20160106024028_1.jpg (easylistchina.txt: 2775) +.e0575.com/attachment/image/20160106024028_1\.jpg +# ||e0575.com/attachment/image/*_flash.swf (easylistchina.txt: 2774) +.e0575.com/attachment/image/.*_flash\.swf +# ||e0575.cn/js/float.js (easylistchina.txt: 2773) +.e0575.cn/js/float\.js +# ||e0575.cn/js/advBigPopup/ (easylistchina.txt: 2772) +.e0575.cn/js/advBigPopup/ +# ||e0575.cn/images/v1/dl/ (easylistchina.txt: 2771) +.e0575.cn/images/v1/dl/ +# ||e0421.com/css/js/tl (easylistchina.txt: 2770) +.e0421.com/css/js/tl +# ||e0421.com/css/js/bd (easylistchina.txt: 2769) +.e0421.com/css/js/bd +# ||e0421.com/*tj.js (easylistchina.txt: 2768) +.e0421.com/.*tj\.js +# ||e.yycqc.com^ (easylistchina.txt: 2767) +.e.yycqc.com +# ||e.hnr.cn/choose/view/ (easylistchina.txt: 2766) +.e.hnr.cn/choose/view/ +# ||e.changyan.sohu.com/dataService/getData? (easylistchina.txt: 2765) +.e.changyan.sohu.com/dataService/getData\? +# ||dzwww.com/k.js (easylistchina.txt: 2764) +.dzwww.com/k\.js +# ||dzwww.com/images/W020140912508314044024.gif (easylistchina.txt: 2763) +.dzwww.com/images/W020140912508314044024\.gif +# ||dzwww.com/data/js/asp_$script (easylistchina.txt: 2762) +.dzwww.com/data/js/asp_ +# ||dz320.com/desktop (easylistchina.txt: 2761) +.dz320.com/desktop +# ||dytt8.net/js2/ (easylistchina.txt: 2760) +.dytt8.net/js2/ +# ||dyhjw.com/dyhjw/left/new.js (easylistchina.txt: 2759) +.dyhjw.com/dyhjw/left/new\.js +# ||dyhjw.com/dyhjw/4.htm (easylistchina.txt: 2758) +.dyhjw.com/dyhjw/4\.htm +# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina.txt: 2757) +.dyhjw.com/dyhjw/1/3/471\.gif +# ||dyhjw.com/dyhjw/1.htm (easylistchina.txt: 2756) +.dyhjw.com/dyhjw/1\.htm +# ||dydh.tv/statics/js/tuku (easylistchina.txt: 2755) +.dydh.tv/statics/js/tuku +# ||dydh.tv/img/960.gif (easylistchina.txt: 2754) +.dydh.tv/img/960\.gif +# ||dydh.tv/img/384.gif (easylistchina.txt: 2753) +.dydh.tv/img/384\.gif +# ||dydh.tv/img/2345.gif (easylistchina.txt: 2752) +.dydh.tv/img/2345\.gif +# ||dy2018.com/dianyq/ (easylistchina.txt: 2751) +.dy2018.com/dianyq/ +# ||dxrc.cn/images/sy.gif (easylistchina.txt: 2750) +.dxrc.cn/images/sy\.gif +# ||dxrc.cn/ad1/ (easylistchina.txt: 2749) +.dxrc.cn/ad1/ +# ||dxlwwang.com/style/js/jeminMain. (easylistchina.txt: 2748) +.dxlwwang.com/style/js/jeminMain\. +# ||dxlwwang.com/style/images/bar (easylistchina.txt: 2747) +.dxlwwang.com/style/images/bar +# ||dxlwwang.com/contact_js/contact.js (easylistchina.txt: 2746) +.dxlwwang.com/contact_js/contact\.js +# ||dwstatic.com^*/p/livetip/ (easylistchina.txt: 2745) +.dwstatic.com/.*/p/livetip/ +# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina.txt: 2744) +.dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1\.js +# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina.txt: 2743) +.dwstatic.com/amkit/p/duya/special/list-notice/banner-app\.jpg +# ||dw138.com/a12345/ (easylistchina.txt: 2742) +.dw138.com/a12345/ +# ||dvser.china.com^ (easylistchina.txt: 2741) +.dvser.china.com +# ||dvs.china.com^ (easylistchina.txt: 2740) +.dvs.china.com +# ||dvbcn.com/yinyong/show/news_right_ (easylistchina.txt: 2739) +.dvbcn.com/yinyong/show/news_right_ +# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina.txt: 2738) +.dvbcn.com/uploadfile/2015/0202/20150202050700880\.png +# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina.txt: 2737) +.dvbcn.com/phpcms/templates/2012/news\.html +# ||dvbcn.com/index.php?m=poster& (easylistchina.txt: 2736) +.dvbcn.com/index\.php\?m=poster& +# ||dushiwenxue.com/add/ (easylistchina.txt: 2735) +.dushiwenxue.com/add/ +# ||dup.baidustatic.com/js/ (easylistchina.txt: 2734) +.dup.baidustatic.com/js/ +# ||duoxiai.com.cn/imgad/ (easylistchina.txt: 2733) +.duoxiai.com.cn/imgad/ +# ||duowan.com/s/yuanbao-entrance.js (easylistchina.txt: 2732) +.duowan.com/s/yuanbao-entrance\.js +# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina.txt: 2731) +.duowan.com/lgn/x/images/lgnadv/ +# ||duonao.tv/upload/image/*.swf (easylistchina.txt: 2730) +.duonao.tv/upload/image/.*\.swf +# ||duonao.tv/upload/image/*.gif (easylistchina.txt: 2729) +.duonao.tv/upload/image/.*\.gif +# ||duonao.tv//upload/$object-subrequest (easylistchina.txt: 2728) +# ||duba.com/static/v3/images/*.swf (easylistchina.txt: 2727) +.duba.com/static/v3/images/.*\.swf +# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina.txt: 2725) +.dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q\.jpg +# ||drupalchina.cn/sites/default/files/osforce- (easylistchina.txt: 2724) +.drupalchina.cn/sites/default/files/osforce- +# ||drupalchina.cn/sites/default/files/lagou- (easylistchina.txt: 2723) +.drupalchina.cn/sites/default/files/lagou- +# ||drupalchina.cn/sites/default/files/banner/ (easylistchina.txt: 2722) +.drupalchina.cn/sites/default/files/banner/ +# ||drivergenius.com/inc/driverwwwad.js (easylistchina.txt: 2721) +.drivergenius.com/inc/driverwwwad\.js +# ||dre8.com/tieba/zh-tb/so.html (easylistchina.txt: 2720) +.dre8.com/tieba/zh-tb/so\.html +# ||dqdm.com/js/dqdm/nei960 (easylistchina.txt: 2719) +.dqdm.com/js/dqdm/nei960 +# ||dpfile.com/pc/trip/*(600x400) (easylistchina.txt: 2718) +.dpfile.com/pc/trip/.*\(600x400\) +# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina.txt: 2717) +.doyo.cn/Tpl/web/Public/images/material/www_couplets/ +# ||downza.cn/html/skin/default/ad/ (easylistchina.txt: 2716) +.downza.cn/html/skin/default/ad/ +# ||downyi.com/tg/ (easylistchina.txt: 2715) +.downyi.com/tg/ +# ||downxia.com/zejs/soft (easylistchina.txt: 2714) +.downxia.com/zejs/soft +# ||downxia.com/zejs/ad (easylistchina.txt: 2713) +.downxia.com/zejs/ad +# ||downxia.com/haojs/ (easylistchina.txt: 2712) +.downxia.com/haojs/ +# ||downxia.com/dgjs/download.js (easylistchina.txt: 2711) +.downxia.com/dgjs/download\.js +# ||download.game.yy.com/resource/fodder/*.flv (easylistchina.txt: 2710) +.download.game.yy.com/resource/fodder/.*\.flv +# ||download.game.yy.com/crossdomain.xml (easylistchina.txt: 2709) +.download.game.yy.com/crossdomain\.xml +# ||downkr.com/statics/js/all.js (easylistchina.txt: 2708) +.downkr.com/statics/js/all\.js +# ||downcc.com/js/66060.gif (easylistchina.txt: 2707) +.downcc.com/js/66060\.gif +# ||downbank.cn/soft6/ (easylistchina.txt: 2706) +.downbank.cn/soft6/ +# ||downbank.cn/s1/ (easylistchina.txt: 2705) +.downbank.cn/s1/ +# ||downbank.cn/jkzm/ (easylistchina.txt: 2704) +.downbank.cn/jkzm/ +# ||down12.com/htmlg/D*.js (easylistchina.txt: 2703) +.down12.com/htmlg/D.*\.js +# ||down.it168.com/ggimg/ (easylistchina.txt: 2702) +.down.it168.com/ggimg/ +# ||down.admin5.com/z/ (easylistchina.txt: 2701) +.down.admin5.com/z/ +# ||douyutv.com/upload/signs/*.swf (easylistchina.txt: 2700) +.douyutv.com/upload/signs/.*\.swf +# ||douguo.net/upload/post/d/ (easylistchina.txt: 2699) +.douguo.net/upload/post/d/ +# ||doubleclick.tv002.com^ (easylistchina.txt: 2698) +.doubleclick.tv002.com +# ||doubanio.com^*/js/ad. (easylistchina.txt: 2697) +.doubanio.com/.*/js/ad\. +# ||douban.com^*/rda/$object-subrequest (easylistchina.txt: 2696) +.douban.com/.*/rda/ +# ||douban.com^*/fm_bgad.js (easylistchina.txt: 2695) +.douban.com/.*/fm_bgad\.js +# ||douban.com/view/dale-online/dale_ad (easylistchina.txt: 2694) +.douban.com/view/dale-online/dale_ad +# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina.txt: 2693) +.douban.com/\?unit=dale_movie_trailer_after_play& +# ||dota2.uuu9.com^$subdocument (easylistchina.txt: 2692) +.dota2.uuu9.com +# ||dospy.com/hezuo/ (easylistchina.txt: 2691) +.dospy.com/hezuo/ +# ||dongfangtai.com/js/duil.js (easylistchina.txt: 2690) +.dongfangtai.com/js/duil\.js +# ||domeng.cn/js/index_ (easylistchina.txt: 2689) +.domeng.cn/js/index_ +# ||dolphin.ftimg.net/s? (easylistchina.txt: 2688) +.dolphin.ftimg.net/s\? +# ||dol.tianya.cn/s?z=tianya&c= (easylistchina.txt: 2687) +.dol.tianya.cn/s\?z=tianya&c= +# ||doguo.com/api/vip_discount.js (easylistchina.txt: 2686) +.doguo.com/api/vip_discount\.js +# ||dodo8.com/inc/$script (easylistchina.txt: 2685) +.dodo8.com/inc/ +# ||docin.com/jsp_cn/ad/ (easylistchina.txt: 2684) +.docin.com/jsp_cn/ad/ +# ||docin.com/docin_adv/ (easylistchina.txt: 2683) +.docin.com/docin_adv/ +# ||docin.com/app/a_d/ (easylistchina.txt: 2682) +.docin.com/app/a_d/ +# ||doc88.com/assets/js/myad.js (easylistchina.txt: 2681) +.doc88.com/assets/js/myad\.js +# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina.txt: 2680) +.do189.com/zb_users/theme/duoyi/style/images/.*\.gif +# ||dnwx.com/pic_ad/ (easylistchina.txt: 2679) +.dnwx.com/pic_ad/ +# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina.txt: 2678) +.dnwx.com/pic/xitongba-468-2\.gif +# ||dnwx.com/pic/lg.gif (easylistchina.txt: 2677) +.dnwx.com/pic/lg\.gif +# ||dnwx.com/pic/*_978x (easylistchina.txt: 2676) +.dnwx.com/pic/.*_978x +# ||dnwx.com/pic/*-960x60. (easylistchina.txt: 2675) +.dnwx.com/pic/.*-960x60\. +# ||dnwx.com*/ad$image (easylistchina.txt: 2674) +.dnwx.com*./(.*/)?ad +# ||dnvod.eu/upload/image/*.swf (easylistchina.txt: 2673) +.dnvod.eu/upload/image/.*\.swf +# ||dnvod.eu/upload/image/*.gif (easylistchina.txt: 2672) +.dnvod.eu/upload/image/.*\.gif +# ||dnvod.eu//upload/$object-subrequest (easylistchina.txt: 2671) +# ||dnpz.net/templets/images/lunbo/ (easylistchina.txt: 2670) +.dnpz.net/templets/images/lunbo/ +# ||dngame.eu/dngcenter/default.aspx (easylistchina.txt: 2669) +.dngame.eu/dngcenter/default\.aspx +# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina.txt: 2668) +.dn-ttdaili.qbox.me/bdqb/ +# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina.txt: 2667) +.dn-cnodestatic.qbox.me/public/images/.*-banner- +# ||dmmfx.com.au/dmm-tag/ (easylistchina.txt: 2666) +.dmmfx.com.au/dmm-tag/ +# ||dmhua.net/js/bd_ (easylistchina.txt: 2665) +.dmhua.net/js/bd_ +# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina.txt: 2664) +.dmfans.net/template/haokandemanhhua/images/g_js/ +# ||dm530.com/pic/fgr/*.js (easylistchina.txt: 2663) +.dm530.com/pic/fgr/.*\.js +# ||dm456.com/m/ (easylistchina.txt: 2662) +.dm456.com/m/ +# ||dm456.com/install/loading.html (easylistchina.txt: 2661) +.dm456.com/install/loading\.html +# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina.txt: 2660) +.dl-l-tax.gov.cn/js/2floating\.js +# ||djwma.com/tc.js (easylistchina.txt: 2659) +.djwma.com/tc\.js +# ||djwma.com/qq.jpg (easylistchina.txt: 2658) +.djwma.com/qq\.jpg +# ||djwma.com/960*.gif (easylistchina.txt: 2657) +.djwma.com/960.*\.gif +# ||djwma.com/760*.gif (easylistchina.txt: 2656) +.djwma.com/760.*\.gif +# ||djkk.com/ak/ (easylistchina.txt: 2655) +.djkk.com/ak/ +# ||djccc.com/js/c*.js (easylistchina.txt: 2654) +.djccc.com/js/c.*\.js +# ||djccc.com/js/b*.js (easylistchina.txt: 2653) +.djccc.com/js/b.*\.js +# ||djccc.com/js/a*.js (easylistchina.txt: 2652) +.djccc.com/js/a.*\.js +# ||dj97.com/js/list_right_ (easylistchina.txt: 2651) +.dj97.com/js/list_right_ +# ||dj520.com/js/stj.js (easylistchina.txt: 2650) +.dj520.com/js/stj\.js +# ||divcss5.com/wy/top465.js (easylistchina.txt: 2649) +.divcss5.com/wy/top465\.js +# ||divcss5.com*/liping/ (easylistchina.txt: 2648) +.divcss5.com*./(.*/)?liping/ +# ||divcss5.com*/ibeifeng/ (easylistchina.txt: 2647) +.divcss5.com*./(.*/)?ibeifeng/ +# ||divcss5.com*/enkj/ (easylistchina.txt: 2646) +.divcss5.com*./(.*/)?enkj/ +# ||disk1.net/i/2/900%C3%9740.gif (easylistchina.txt: 2645) +.disk1.net/i/2/900%C3%9740\.gif +# ||discuzlab.com/data/attachment/portal/ (easylistchina.txt: 2644) +.discuzlab.com/data/attachment/portal/ +# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina.txt: 2643) +.discuz.gtimg.cn/cloud/scripts/discuz_tips\.js +# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina.txt: 2642) +.discuss.com.hk/dfp_forum\.php\?au=Discuss_Web_ +# ||dioguitar23.*/images/*.gif (easylistchina.txt: 2641) +.dioguitar23.*./(.*/)?images/.*\.gif +# ||dilidili.com/js/w*.js (easylistchina.txt: 2640) +.dilidili.com/js/w.*\.js +# ||dilidili.com/js/right (easylistchina.txt: 2639) +.dilidili.com/js/right +# ||dilidili.com/js/index.js (easylistchina.txt: 2638) +.dilidili.com/js/index\.js +# ||dig.chouti.com/advert (easylistchina.txt: 2637) +.dig.chouti.com/advert +# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina.txt: 2636) +.didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D\.png +# ||didamoe.com/js/xuanfu.js (easylistchina.txt: 2635) +.didamoe.com/js/xuanfu\.js +# ||didamoe.com/js/play_ (easylistchina.txt: 2634) +.didamoe.com/js/play_ +# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina.txt: 2633) +.dichan.com.au/newhouse/pinnacle/images/bcastr3\.swf +# ||diannaoxitong.com/js/*.gif (easylistchina.txt: 2632) +.diannaoxitong.com/js/.*\.gif +# ||dg.073img.com^ (easylistchina.txt: 2631) +.dg.073img.com +# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina.txt: 2630) +.dfcfw.com/js/tg/rightAd_v2\.js +# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina.txt: 2629) +.dfcfw.com/js/pinzhong/bdbottom_ +# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina.txt: 2628) +.dfcfw.com/js/pinzhong/bd_pz_side_ +# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina.txt: 2627) +.dfcfw.com/js/.*/emfloatmedia_ +# ||dfad.dfdaily.com^ (easylistchina.txt: 2626) +.dfad.dfdaily.com +# ||deyangs.com/img/ (easylistchina.txt: 2625) +.deyangs.com/img/ +# ||dexiazai.com/333.jpg (easylistchina.txt: 2624) +.dexiazai.com/333\.jpg +# ||dexiazai.com/222.jpg (easylistchina.txt: 2623) +.dexiazai.com/222\.jpg +# ||dexiazai.com/111.jpg (easylistchina.txt: 2622) +.dexiazai.com/111\.jpg +# ||der4545.com/ok/ (easylistchina.txt: 2621) +.der4545.com/ok/ +# ||demo.528500.com^*.swf (easylistchina.txt: 2620) +.demo.528500.com/.*\.swf +# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina.txt: 2619) +.dealmoon.com/upload/dealmoon_app\.jpg +# ||dealmoon.com/images/n/creditcard-160.png (easylistchina.txt: 2618) +.dealmoon.com/images/n/creditcard-160\.png +# ||dealmoon.com/hotdeals/ (easylistchina.txt: 2617) +.dealmoon.com/hotdeals/ +# ||dealmoon.com/data/app/banners/ (easylistchina.txt: 2616) +.dealmoon.com/data/app/banners/ +# ||de.as.pptv.com^ (easylistchina.txt: 2615) +.de.as.pptv.com +# ||ddooo.com/viewimg.asp?img= (easylistchina.txt: 2614) +.ddooo.com/viewimg\.asp\?img= +# ||ddooo.com/js/ (easylistchina.txt: 2613) +.ddooo.com/js/ +# ||ddooo.com/duoduo/ (easylistchina.txt: 2612) +.ddooo.com/duoduo/ +# ||ddooo.com/ddjs/ (easylistchina.txt: 2611) +.ddooo.com/ddjs/ +# ||ddheli.com/k.js (easylistchina.txt: 2610) +.ddheli.com/k\.js +# ||dddbbb.net^$script,subdocument (easylistchina.txt: 2609) +.dddbbb.net +# ||dd.xdnice.com^ (easylistchina.txt: 2608) +.dd.xdnice.com +# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina.txt: 2607) +.dclick.autonet.com.tw/90/AC_RunActiveContent\.js +# ||dcfever.com/campaigns/ (easylistchina.txt: 2606) +.dcfever.com/campaigns/ +# ||dbw.cn/js/cp.js (easylistchina.txt: 2605) +.dbw.cn/js/cp\.js +# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina.txt: 2604) +.dbw.cn/eap/js/hl/hlj_ad +# ||dbw.cn/eap/js/db/dbwad_ (easylistchina.txt: 2603) +.dbw.cn/eap/js/db/dbwad_ +# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina.txt: 2602) +.dbw.cn/0/07/18/40/7184029_146090\.jpg +# ||db28.cn/cache/ads.js (easylistchina.txt: 2601) +.db28.cn/cache/ads\.js +# ||dashuye.com/data/cache/myad*.htm (easylistchina.txt: 2600) +.dashuye.com/data/cache/myad.*\.htm +# ||dashi.com/static/images/root_banner.jpg (easylistchina.txt: 2599) +.dashi.com/static/images/root_banner\.jpg +# ||dashi.com/static/images/old_phone.jpg (easylistchina.txt: 2598) +.dashi.com/static/images/old_phone\.jpg +# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina.txt: 2597) +.dashi.com/static/images/jiaocheng_ad\.jpg +# ||dasai8.com/js/duilianjs.js (easylistchina.txt: 2596) +.dasai8.com/js/duilianjs\.js +# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina.txt: 2595) +.daqianduan.com/wp-content/uploads/.*lagou +# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina.txt: 2594) +.daqianduan.com/wp-content/uploads/.*/ads.*\.jpg +# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina.txt: 2593) +.daqianduan.com/wp-content/uploads/.*/ad- +# ||daohangtx.com/jishudaohang/indextop.js (easylistchina.txt: 2592) +.daohangtx.com/jishudaohang/indextop\.js +# ||danyang.com/statics/banner.swf (easylistchina.txt: 2591) +.danyang.com/statics/banner\.swf +# ||danlan.org/KFC/ (easylistchina.txt: 2590) +.danlan.org/KFC/ +# ||daimabiji.com/images/17558/198zone.gif (easylistchina.txt: 2589) +.daimabiji.com/images/17558/198zone\.gif +# ||dailynews.sina.com/gb/ads/ (easylistchina.txt: 2588) +.dailynews.sina.com/gb/ads/ +# ||dailyfx.com.hk/ext/lang-ad (easylistchina.txt: 2587) +.dailyfx.com.hk/ext/lang-ad +# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina.txt: 2586) +.dabin69.com/template/comiis_ydzx/ads/topad01\.jpg +# ||dabin69.com/data/attachment/portal/ (easylistchina.txt: 2585) +.dabin69.com/data/attachment/portal/ +# ||dabaoku.com^$object,script,subdocument (easylistchina.txt: 2584) +.dabaoku.com +# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina.txt: 2583) +.da-fan-shu.cn/images/kuaijie\.jpg +# ||d7w.net/static/d7wad/ (easylistchina.txt: 2582) +.d7w.net/static/d7wad/ +# ||d7ol.com/pics/ad/ (easylistchina.txt: 2581) +.d7ol.com/pics/ad/ +# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2580) +.d5.sina.com.cn +# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2578) +.d4.sina.com.cn +# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2577) +.d3.sina.com.cn +# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2576) +.d2.sina.com.cn +# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2575) +.d1.sina.com.cn +# ||d1.shenchuang.com/a.htm (easylistchina.txt: 2574) +.d1.shenchuang.com/a\.htm +# ||d0.xcar.com.cn^ (easylistchina.txt: 2573) +.d0.xcar.com.cn +# ||d.taomato.com^ (easylistchina.txt: 2572) +.d.taomato.com +# ||d.pixiv.org/show?zone_id= (easylistchina.txt: 2571) +.d.pixiv.org/show\?zone_id= +# ||d.5.to^$subdocument (easylistchina.txt: 2570) +.d.5.to +# ||d.39.net/a.htm? (easylistchina.txt: 2569) +.d.39.net/a\.htm\? +# ||d.107788.com^ (easylistchina.txt: 2568) +.d.107788.com +# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina.txt: 2567) +.cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6\.jpg +# ||cyzone.cn^*/js/m.js (easylistchina.txt: 2566) +.cyzone.cn/.*/js/m\.js +# ||cye.com.cn/JS/AdsJS/ (easylistchina.txt: 2565) +.cye.com.cn/JS/AdsJS/ +# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina.txt: 2564) +.cxzyw.com/upload/1/148966/images/.*\.gif +# ||cww.net.cn/UpLoadFile/*.swf (easylistchina.txt: 2563) +.cww.net.cn/UpLoadFile/.*\.swf +# ||cww.net.cn/include/show.asp?boardID= (easylistchina.txt: 2562) +.cww.net.cn/include/show\.asp\?boardID= +# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina.txt: 2561) +.cwan.com/templets/webgame/misc/js/indextip\.js +# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina.txt: 2560) +.cwan.com/templets/shouye/misc/js/suspend\.js +# ||ctrip.com/amd/*960x90. (easylistchina.txt: 2559) +.ctrip.com/amd/.*960x90\. +# ||ctpan.com/vip.js (easylistchina.txt: 2558) +.ctpan.com/vip\.js +# ||ctpan.com/statics/js/adt (easylistchina.txt: 2557) +.ctpan.com/statics/js/adt +# ||ctpan.com/cp (easylistchina.txt: 2556) +.ctpan.com/cp +# ||csdn.net/sda/Topic (easylistchina.txt: 2555) +.csdn.net/sda/Topic +# ||csdn.net/msg.popup.js (easylistchina.txt: 2554) +.csdn.net/msg\.popup\.js +# ||csdn.net/ggmm/ (easylistchina.txt: 2553) +.csdn.net/ggmm/ +# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina.txt: 2552) +.csai.cn/xiaohua/js/xiaohua\.js +# ||cs360.cn/js/search_zcw.js (easylistchina.txt: 2551) +.cs360.cn/js/search_zcw\.js +# ||cs.com.cn/csad/ (easylistchina.txt: 2550) +.cs.com.cn/csad/ +# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina.txt: 2549) +.creativetop.com/cn/pic/laogu_adv\.gif +# ||creaders.net*/ad_func.js (easylistchina.txt: 2548) +.creaders.net*./(.*/)?ad_func\.js +# ||cr173.com/show/ (easylistchina.txt: 2547) +.cr173.com/show/ +# ||cr173.com/js/ (easylistchina.txt: 2546) +.cr173.com/js/ +# ||cqwb.com.cn/skin/ggimages/ (easylistchina.txt: 2545) +.cqwb.com.cn/skin/ggimages/ +# ||cqvip.com/viewserver/ViewAD (easylistchina.txt: 2544) +.cqvip.com/viewserver/ViewAD +# ||cqnews.net:8080/vplayerAdv/ (easylistchina.txt: 2543) +.cqnews.net:8080/vplayerAdv/ +# ||cqfishing.net/data/attachment/portal/ (easylistchina.txt: 2542) +.cqfishing.net/data/attachment/portal/ +# ||cps.okbuy.com^ (easylistchina.txt: 2541) +.cps.okbuy.com +# ||cpplay.com/inc/ (easylistchina.txt: 2540) +.cpplay.com/inc/ +# ||cpbl-elta.cdn.hinet.net/web/images/beer.jpg (easylistchina.txt: 2539) +.cpbl-elta.cdn.hinet.net/web/images/beer\.jpg +# ||cpbl-elta.cdn.hinet.net/web/images/ad_ (easylistchina.txt: 2538) +.cpbl-elta.cdn.hinet.net/web/images/ad_ +# ||cp126.com/img/ad0 (easylistchina.txt: 2537) +.cp126.com/img/ad0 +# ||cp126.com/888zr11.gif (easylistchina.txt: 2536) +.cp126.com/888zr11\.gif +# ||cp.ifeng.com/iframe/getiframe (easylistchina.txt: 2535) +.cp.ifeng.com/iframe/getiframe +# ||cooltu.com/mp/ (easylistchina.txt: 2534) +.cooltu.com/mp/ +# ||coolaler.com.tw^*_340x80. (easylistchina.txt: 2533) +.coolaler.com.tw/.*_340x80\. +# ||coolaler.com.tw^*_300x100. (easylistchina.txt: 2532) +.coolaler.com.tw/.*_300x100\. +# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina.txt: 2531) +.cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ +# ||content.xilu.com^$object (easylistchina.txt: 2530) +.content.xilu.com +# ||com.webmasterhome.cn/a1- (easylistchina.txt: 2529) +.com.webmasterhome.cn/a1- +# ||colayun.com/cola3/newdown/join.png (easylistchina.txt: 2528) +.colayun.com/cola3/newdown/join\.png +# ||coladrive.com/cola3/newdown/join.png (easylistchina.txt: 2527) +.coladrive.com/cola3/newdown/join\.png +# ||codepub.com/wuse/pic/ (easylistchina.txt: 2526) +.codepub.com/wuse/pic/ +# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina.txt: 2525) +.codepub.com/file/code/20141225/142856140\.jpg +# ||codeforge.cn/images/banner.gif (easylistchina.txt: 2524) +.codeforge.cn/images/banner\.gif +# ||cococomic.com/g/ (easylistchina.txt: 2523) +.cococomic.com/g/ +# ||cnzzla.com/public/scripts/money.js (easylistchina.txt: 2522) +.cnzzla.com/public/scripts/money\.js +# ||cnzol.com/template/style/images/wlfloat.js (easylistchina.txt: 2520) +.cnzol.com/template/style/images/wlfloat\.js +# ||cnzol.com/template/style/images/lcdl.js (easylistchina.txt: 2519) +.cnzol.com/template/style/images/lcdl\.js +# ||cnzol.com/page/ (easylistchina.txt: 2518) +.cnzol.com/page/ +# ||cnwnews.com/gg200903/nrzs.js (easylistchina.txt: 2517) +.cnwnews.com/gg200903/nrzs\.js +# ||cnwnews.com/gg200903/nry02.js (easylistchina.txt: 2516) +.cnwnews.com/gg200903/nry02\.js +# ||cntvboxnow.com//ads_ (easylistchina.txt: 2515) +# ||cntv.cn/hezuo/ (easylistchina.txt: 2514) +.cntv.cn/hezuo/ +# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina.txt: 2513) +.cnstock.com/image/201511/26/20151126105158298\.jpg +# ||cnsofas.com/loldytt/js/ (easylistchina.txt: 2512) +.cnsofas.com/loldytt/js/ +# ||cnsat.net/Pictuer/ (easylistchina.txt: 2511) +.cnsat.net/Pictuer/ +# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina.txt: 2510) +.cnr.cn/cnrxwph/iframe/tpdy/ +# ||cnnb.com.cn/images/14ny_1.gif (easylistchina.txt: 2509) +.cnnb.com.cn/images/14ny_1\.gif +# ||cnnb.com.cn/image/xhhc71.gif (easylistchina.txt: 2508) +.cnnb.com.cn/image/xhhc71\.gif +# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina.txt: 2507) +.cnmoad.com/wp-content/uploads/2015/02/lomark_banner\.png +# ||cnmo-img.com.cn/oddjs/ (easylistchina.txt: 2506) +.cnmo-img.com.cn/oddjs/ +# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina.txt: 2505) +# ||cnkang.com/zixun/nanke/ (easylistchina.txt: 2504) +.cnkang.com/zixun/nanke/ +# ||cnkang.com/images/sy (easylistchina.txt: 2503) +.cnkang.com/images/sy +# ||cnkang.com/images/*756.jpg (easylistchina.txt: 2502) +.cnkang.com/images/.*756\.jpg +# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina.txt: 2501) +.cnkang.com/cs/images0410/fengxiong\.jpg +# ||cnjxol.com/include/2011/index/js/index.js (easylistchina.txt: 2500) +.cnjxol.com/include/2011/index/js/index\.js +# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina.txt: 2499) +.cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414\.swf +# ||cnjxol.com/*.files/sian.gif (easylistchina.txt: 2498) +.cnjxol.com/.*\.files/sian\.gif +# ||cnhubei.com*/g2 (easylistchina.txt: 2497) +.cnhubei.com*./(.*/)?g2 +# ||cngsf.com/images/336_280.gif (easylistchina.txt: 2496) +.cngsf.com/images/336_280\.gif +# ||cngsf.com/baidu.htm (easylistchina.txt: 2495) +.cngsf.com/baidu\.htm +# ||cngoldres.com/advservice/ (easylistchina.txt: 2494) +.cngoldres.com/advservice/ +# ||cndesign.com/img/1200x100.jpg (easylistchina.txt: 2493) +.cndesign.com/img/1200x100\.jpg +# ||cndesign.com/Content/img/356x80_ (easylistchina.txt: 2492) +.cndesign.com/Content/img/356x80_ +# ||cndesign.com/Content/img/175x60_ (easylistchina.txt: 2491) +.cndesign.com/Content/img/175x60_ +# ||cndesign.com/Content/img/*x90_ (easylistchina.txt: 2490) +.cndesign.com/Content/img/.*x90_ +# ||cncrk.com/505/ (easylistchina.txt: 2489) +.cncrk.com/505/ +# ||cnchu.com/aps/ (easylistchina.txt: 2488) +.cnchu.com/aps/ +# ||cnbetacdn.com/banner (easylistchina.txt: 2487) +.cnbetacdn.com/banner +# ||cnbetacdn.com/320-50. (easylistchina.txt: 2486) +.cnbetacdn.com/320-50\. +# ||cnbeta.com/jobs/list_? (easylistchina.txt: 2485) +.cnbeta.com/jobs/list_\? +# ||cnbeta.com/assets/js/pages/google.js (easylistchina.txt: 2484) +.cnbeta.com/assets/js/pages/google\.js +# ||cnbeta.com/assets/images/*_670_90. (easylistchina.txt: 2483) +.cnbeta.com/assets/images/.*_670_90\. +# ||cna5.net/skins/js/ (easylistchina.txt: 2482) +.cna5.net/skins/js/ +# ||cmsjs.eastmoney.com^$subdocument (easylistchina.txt: 2481) +.cmsjs.eastmoney.com +# ||cmhello.com/2015/10/hc.jpg (easylistchina.txt: 2480) +.cmhello.com/2015/10/hc\.jpg +# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina.txt: 2479) +.club.pchome.net/.*/localexchange\.php +# ||clouddn.com/960x60.gif (easylistchina.txt: 2478) +.clouddn.com/960x60\.gif +# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina.txt: 2477) +.clm02.com/2014-A/FB-6-14-AA1\.jpg +# ||cjn.cn^*/ad/ (easylistchina.txt: 2476) +.cjn.cn/.*/ad/ +# ||cj.qidian.com^$object,subdocument (easylistchina.txt: 2475) +.cj.qidian.com +# ||citysbs.com^*swf (easylistchina.txt: 2473) +.citysbs.com/.*swf +# ||citysbs.com/no/*/980x (easylistchina.txt: 2472) +.citysbs.com/no/.*/980x +# ||citysbs.com/no/*/800x90- (easylistchina.txt: 2471) +.citysbs.com/no/.*/800x90- +# ||citysbs.com/no/*/650x50- (easylistchina.txt: 2470) +.citysbs.com/no/.*/650x50- +# ||citysbs.com/no/*/1190x60- (easylistchina.txt: 2469) +.citysbs.com/no/.*/1190x60- +# ||citysbs.com/chongqing/*/1920x179- (easylistchina.txt: 2468) +.citysbs.com/chongqing/.*/1920x179- +# ||cishuge.com/static/js/xiaoshuo.js (easylistchina.txt: 2467) +.cishuge.com/static/js/xiaoshuo\.js +# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina.txt: 2466) +.cilook.net/cilookinc/isee5_950x60\.gif +# ||chunxiao.tv/1.aspx (easylistchina.txt: 2465) +.chunxiao.tv/1\.aspx +# ||chuixue.com/template/*/images/g_js/show_ (easylistchina.txt: 2464) +.chuixue.com/template/.*/images/g_js/show_ +# ||chuixue.com/jsa/ (easylistchina.txt: 2463) +.chuixue.com/jsa/ +# ||chubun.com/images/banners/ (easylistchina.txt: 2462) +.chubun.com/images/banners/ +# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina.txt: 2460) +.chuangshi.qq.com/upload/cmsv2/Banner/ +# ||chrome007.com/images/goodxxxx.jpg (easylistchina.txt: 2459) +.chrome007.com/images/goodxxxx\.jpg +# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina.txt: 2458) +.chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ +# ||chosun.com/images/banner/ (easylistchina.txt: 2457) +.chosun.com/images/banner/ +# ||chiphell.com/activity/ (easylistchina.txt: 2456) +.chiphell.com/activity/ +# ||chinaz.com/temp_upfile/ads/ (easylistchina.txt: 2455) +.chinaz.com/temp_upfile/ads/ +# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina.txt: 2454) +.chinaz.com/site_view/alexa_ad\.jpg +# ||chinaz.com/site_view/2z.cn.gif (easylistchina.txt: 2453) +.chinaz.com/site_view/2z\.cn\.gif +# ||chinaz.com/newshome/ (easylistchina.txt: 2452) +.chinaz.com/newshome/ +# ||chinaz.com/ip_gadsense.js (easylistchina.txt: 2451) +.chinaz.com/ip_gadsense\.js +# ||chinaz.com/imagead/ (easylistchina.txt: 2450) +.chinaz.com/imagead/ +# ||chinaz.com/alexa/wz.js (easylistchina.txt: 2449) +.chinaz.com/alexa/wz\.js +# ||chinaz.com/alexa/word3.htm (easylistchina.txt: 2448) +.chinaz.com/alexa/word3\.htm +# ||chinaz.com/alexa/pic.js (easylistchina.txt: 2447) +.chinaz.com/alexa/pic\.js +# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina.txt: 2446) +.chinaz.com/2015/0113/1421112175579\.jpg +# ||chinaz.com/2011code_images/topright.js (easylistchina.txt: 2445) +.chinaz.com/2011code_images/topright\.js +# ||chinaz.com/2011code_images/soft (easylistchina.txt: 2444) +.chinaz.com/2011code_images/soft +# ||chinaz.com/2011code_images/A_ (easylistchina.txt: 2443) +.chinaz.com/2011code_images/A_ +# ||chinayes.com/Include%5Cad%5C (easylistchina.txt: 2442) +.chinayes.com/Include%5Cad%5C +# ||chinawmrc.com/images/end.js (easylistchina.txt: 2441) +.chinawmrc.com/images/end\.js +# ||chinatimes.com/Scripts/onead_ (easylistchina.txt: 2440) +.chinatimes.com/Scripts/onead_ +# ||chinatimes.com/Scripts/bennerad. (easylistchina.txt: 2439) +.chinatimes.com/Scripts/bennerad\. +# ||chinatimes.com/ads/forums/carouselad.js (easylistchina.txt: 2438) +.chinatimes.com/ads/forums/carouselad\.js +# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina.txt: 2437) +.chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo\.js +# ||chinatimes.com/2007Cti/ (easylistchina.txt: 2436) +.chinatimes.com/2007Cti/ +# ||chinaso.com/iframe336/ (easylistchina.txt: 2435) +.chinaso.com/iframe336/ +# ||chinasexq.com/js/ad (easylistchina.txt: 2434) +.chinasexq.com/js/ad +# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina.txt: 2433) +.chinaqking.com/userUpload/jobApply2\.jpg +# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina.txt: 2432) +.chinaqking.com/images/qkw/jobApply1\.jpg +# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina.txt: 2431) +.chinaqking.com/images/newPage/zhaopin\.jpg +# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina.txt: 2430) +.chinaqking.com/images/newPage/JLW\.jpg +# ||chinanews.com/shipin/sptp.xml (easylistchina.txt: 2429) +.chinanews.com/shipin/sptp\.xml +# ||chinanews.com/images/images/Sadv (easylistchina.txt: 2428) +.chinanews.com/images/images/Sadv +# ||chinanews.com/images/*/gaobang. (easylistchina.txt: 2427) +.chinanews.com/images/.*/gaobang\. +# ||chinanews.com.cn/ad2015/ (easylistchina.txt: 2426) +.chinanews.com.cn/ad2015/ +# ||chinairn.com/images3/*ads (easylistchina.txt: 2425) +.chinairn.com/images3/.*ads +# ||chinaiiss.com/js/function.ad.js (easylistchina.txt: 2424) +.chinaiiss.com/js/function\.ad\.js +# ||chinaiiss.com/js/float.js (easylistchina.txt: 2423) +.chinaiiss.com/js/float\.js +# ||chinaiiss.com/images/jianyu_erweima (easylistchina.txt: 2422) +.chinaiiss.com/images/jianyu_erweima +# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina.txt: 2421) +.chinaiiss.com/attachment/linkimg/201306/19/142826_845\.jpg +# ||chinafpd.net/js/2012-10/ (easylistchina.txt: 2420) +.chinafpd.net/js/2012-10/ +# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina.txt: 2419) +.chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13\.jpg +# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina.txt: 2418) +.chinadaily.com.cn/micro-reading/dzh/bd-taofang\.gif +# ||chinachugui.com/jsfiles/aods/ (easylistchina.txt: 2417) +.chinachugui.com/jsfiles/aods/ +# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina.txt: 2416) +.chinacar.com.cn/zhuanyongche/images/wintip_ +# ||chinabyte.com/w/$subdocument (easylistchina.txt: 2415) +.chinabyte.com/w/ +# ||chinaacc.com/lamu/dl- (easylistchina.txt: 2413) +.chinaacc.com/lamu/dl- +# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina.txt: 2412) +.china.com/zh_cn/plugin/all/hezuo360/ +# ||china.com/zh_cn/etc/gghead (easylistchina.txt: 2411) +.china.com/zh_cn/etc/gghead +# ||china.com/zh_cn/ads/ (easylistchina.txt: 2410) +.china.com/zh_cn/ads/ +# ||china.com/jsfiles/gotopgg/ (easylistchina.txt: 2409) +.china.com/jsfiles/gotopgg/ +# ||china.com.cn/youxi.swf (easylistchina.txt: 2408) +.china.com.cn/youxi\.swf +# ||china.com.cn/statics/js/js_vag/ (easylistchina.txt: 2407) +.china.com.cn/statics/js/js_vag/ +# ||china.com.cn/food/node_7094923.htm (easylistchina.txt: 2406) +.china.com.cn/food/node_7094923\.htm +# ||china.com.cn/2015ads/ (easylistchina.txt: 2405) +.china.com.cn/2015ads/ +# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina.txt: 2404) +.china.cn/images1/ch/2014first/20140422gq\.js +# ||china.chemnet.com/cnbanner/ (easylistchina.txt: 2403) +.china.chemnet.com/cnbanner/ +# ||chidir.com^ (easylistchina.txt: 2402) +.chidir.com +# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina.txt: 2401) +.chewen.com/pics/2013/09/13/02013091317191365\.jpg +# ||chengruide.com/js/union_junshiqu.js (easylistchina.txt: 2400) +.chengruide.com/js/union_junshiqu\.js +# ||chemnet.com/js/float_div.js (easylistchina.txt: 2399) +.chemnet.com/js/float_div\.js +# ||cheers.com.tw/js-lib/fancybox/ (easylistchina.txt: 2398) +.cheers.com.tw/js-lib/fancybox/ +# ||chddh.com*/A*D/ (easylistchina.txt: 2397) +.chddh.com*./(.*/)?A.*D/ +# ||chcj.net/comiis_ad/ (easylistchina.txt: 2396) +.chcj.net/comiis_ad/ +# ||chaling.cn/images/*.gif (easylistchina.txt: 2395) +.chaling.cn/images/.*\.gif +# ||chaling.cn/data/attachment/portal/ (easylistchina.txt: 2394) +.chaling.cn/data/attachment/portal/ +# ||chakd.com/images/xitie160x60.gif (easylistchina.txt: 2393) +.chakd.com/images/xitie160x60\.gif +# ||cfanclub.net/lmimages/yinsub.gif (easylistchina.txt: 2392) +.cfanclub.net/lmimages/yinsub\.gif +# ||centoscn.com/money/ (easylistchina.txt: 2391) +.centoscn.com/money/ +# ||cdyee.com/external/5070.files/ad/ (easylistchina.txt: 2390) +.cdyee.com/external/5070\.files/ad/ +# ||cdndm.com^*/js/newtc.js (easylistchina.txt: 2389) +.cdndm.com/.*/js/newtc\.js +# ||cdn.wdlm.cn^ (easylistchina.txt: 2387) +.cdn.wdlm.cn +# ||cdn.shdsp.net/ad (easylistchina.txt: 2386) +.cdn.shdsp.net/ad +# ||cdn.galacg.me/img/*.jpg (easylistchina.txt: 2385) +.cdn.galacg.me/img/.*\.jpg +# ||cdn.galacg.me/img/*.gif (easylistchina.txt: 2384) +.cdn.galacg.me/img/.*\.gif +# ||cdn.dfile.cn/slot/ (easylistchina.txt: 2383) +.cdn.dfile.cn/slot/ +# ||ccwzz.cc/dmf.js (easylistchina.txt: 2382) +.ccwzz.cc/dmf\.js +# ||ccvcd.com/images/ (easylistchina.txt: 2381) +.ccvcd.com/images/ +# ||cctv5.name/js/*foot.js (easylistchina.txt: 2380) +.cctv5.name/js/.*foot\.js +# ||cctv5.name/data/js/ (easylistchina.txt: 2379) +.cctv5.name/data/js/ +# ||cctv.com/Library/a2.js (easylistchina.txt: 2378) +.cctv.com/Library/a2\.js +# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina.txt: 2377) +.cctime.com/UpLoadFile/2012/11/7/201211733483705\.gif +# ||cctime.com/UpLoadFile/201$object (easylistchina.txt: 2376) +.cctime.com/UpLoadFile/201 +# ||ccoo.cn/webdiy/$subdocument (easylistchina.txt: 2375) +.ccoo.cn/webdiy/ +# ||ccoo.cn/js/dlv*.js (easylistchina.txt: 2374) +.ccoo.cn/js/dlv.*\.js +# ||ccidnet.com/nav/dia_ (easylistchina.txt: 2373) +.ccidnet.com/nav/dia_ +# ||cccdv.com/js/*0- (easylistchina.txt: 2372) +.cccdv.com/js/.*0- +# ||ccb.com.cn/V5/images5/right0.gif (easylistchina.txt: 2371) +.ccb.com.cn/V5/images5/right0\.gif +# ||ccb.com.cn/V5/images5/left0.gif (easylistchina.txt: 2370) +.ccb.com.cn/V5/images5/left0\.gif +# ||ccav1.me/block.js (easylistchina.txt: 2369) +.ccav1.me/block\.js +# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina.txt: 2368) +.ccav1.com/wp-content/uploads/an-temp/ +# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina.txt: 2367) +.ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao\.jpg +# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina.txt: 2366) +.cbfw.cn/gonggong/js/cf_flash\.js +# ||cari.com.my/static/appbanner (easylistchina.txt: 2365) +.cari.com.my/static/appbanner +# ||caoimg.com/images/ (easylistchina.txt: 2364) +.caoimg.com/images/ +# ||camster.com/promos/ (easylistchina.txt: 2363) +.camster.com/promos/ +# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina.txt: 2362) +.caipiao.cntv.cn/website/cntv/box_news\.shtml +# ||caikuu.com/ckimages/*_zg (easylistchina.txt: 2361) +.caikuu.com/ckimages/.*_zg +# ||caikuu.com/ckimages/*_gg (easylistchina.txt: 2360) +.caikuu.com/ckimages/.*_gg +# ||cachead.com^ (easylistchina.txt: 2359) +.cachead.com +# ||cacafly.net^ (easylistchina.txt: 2358) +.cacafly.net +# ||caamei.com/k.js (easylistchina.txt: 2357) +.caamei.com/k\.js +# ||c4d.cn/api.php?mod=ad&adid= (easylistchina.txt: 2356) +.c4d.cn/api\.php\?mod=ad&adid= +# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina.txt: 2355) +.c2cc.cn/images/images2011/ads_bigbg\.jpg +# ||c2cc.cn/c2ccgg/ (easylistchina.txt: 2354) +.c2cc.cn/c2ccgg/ +# ||c2000.cn/c2000/ (easylistchina.txt: 2353) +.c2000.cn/c2000/ +# ||c168c.com/*adv/ (easylistchina.txt: 2352) +.c168c.com/.*adv/ +# ||c114.net/js/channel.js (easylistchina.txt: 2351) +.c114.net/js/channel\.js +# ||c114.net/images/c114/ad_ (easylistchina.txt: 2350) +.c114.net/images/c114/ad_ +# ||c114.net/default_inc/a/images/ (easylistchina.txt: 2349) +.c114.net/default_inc/a/images/ +# ||c114.net*/images_a/*.swf (easylistchina.txt: 2348) +.c114.net*./(.*/)?images_a/.*\.swf +# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina.txt: 2347) +.c1.74ch.com/u/mpf/xyz/fi/ZpE3T72\.gif +# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina.txt: 2346) +.c1.74ch.com/u/mpf/xyz/fi/bVE3T72\.gif +# ||c.quwenjiemi.com^*.js?version= (easylistchina.txt: 2345) +.c.quwenjiemi.com/.*\.js\?version= +# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina.txt: 2344) +.c-ctrip.com/rk/201411/c580x145\.jpg +# ||bzfl1.cc/da*.gif (easylistchina.txt: 2343) +.bzfl1.cc/da.*\.gif +# ||bzfl.cc/da*.gif (easylistchina.txt: 2342) +.bzfl.cc/da.*\.gif +# ||bytravel.cn/js/s_ (easylistchina.txt: 2341) +.bytravel.cn/js/s_ +# ||bytravel.cn/js/b_ (easylistchina.txt: 2340) +.bytravel.cn/js/b_ +# ||bytravel.cn/js/ad_ (easylistchina.txt: 2339) +.bytravel.cn/js/ad_ +# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina.txt: 2338) +.bytravel.cn/images/t/usa_250_120\.gif +# ||bytravel.cn/images/cus/ (easylistchina.txt: 2337) +.bytravel.cn/images/cus/ +# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina.txt: 2336) +.bxwxtxt.com/a/bxwx/indextan\.js +# ||bxwx.org/myabc/ (easylistchina.txt: 2335) +.bxwx.org/myabc/ +# ||bxwx.org/js/box_ (easylistchina.txt: 2334) +.bxwx.org/js/box_ +# ||bxwx.org/js/$subdocument (easylistchina.txt: 2333) +.bxwx.org/js/ +# ||bxwx.org/caipiao.js (easylistchina.txt: 2332) +.bxwx.org/caipiao\.js +# ||bxwx.org/1.js (easylistchina.txt: 2331) +.bxwx.org/1\.js +# ||bx0635.com/tx/vip.gif (easylistchina.txt: 2330) +.bx0635.com/tx/vip\.gif +# ||bx0635.com/downimg/ban.gif (easylistchina.txt: 2329) +.bx0635.com/downimg/ban\.gif +# ||bx0635.com/downimg/2000.gif (easylistchina.txt: 2328) +.bx0635.com/downimg/2000\.gif +# ||buzzhand.com/images/$subdocument (easylistchina.txt: 2327) +.buzzhand.com/images/ +# ||buytong.cn/images/*%*.swf (easylistchina.txt: 2326) +.buytong.cn/images/.*%.*\.swf +# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina.txt: 2325) +.buyhouse.yam.com/plugin/newsplugin\.php +# ||buy.sina.com.tw/js/sina_popup.php (easylistchina.txt: 2324) +.buy.sina.com.tw/js/sina_popup\.php +# ||business.92wy.com^ (easylistchina.txt: 2323) +.business.92wy.com +# ||bunnybee.com.tw/bee/$subdocument (easylistchina.txt: 2322) +.bunnybee.com.tw/bee/ +# ||bukade.com/tpl/2/loading.html (easylistchina.txt: 2321) +.bukade.com/tpl/2/loading\.html +# ||bukade.com/js/tj2.js (easylistchina.txt: 2320) +.bukade.com/js/tj2\.js +# ||bukade.com/js/b_ (easylistchina.txt: 2319) +.bukade.com/js/b_ +# ||bukade.com/js/*_p_ (easylistchina.txt: 2318) +.bukade.com/js/.*_p_ +# ||bttiantang.cc/static/wen (easylistchina.txt: 2317) +.bttiantang.cc/static/wen +# ||bttiantang.cc/static/*quan.js (easylistchina.txt: 2316) +.bttiantang.cc/static/.*quan\.js +# ||btshark.com/static/img/*300x250. (easylistchina.txt: 2315) +.btshark.com/static/img/.*300x250\. +# ||btn.pchome.net^ (easylistchina.txt: 2314) +.btn.pchome.net +# ||btn.onlylady.com^ (easylistchina.txt: 2313) +.btn.onlylady.com +# ||btkuaisou.com/ac/ (easylistchina.txt: 2312) +.btkuaisou.com/ac/ +# ||btks.me/pingbi (easylistchina.txt: 2311) +.btks.me/pingbi +# ||btks.me/js/ac (easylistchina.txt: 2310) +.btks.me/js/ac +# ||btks.me/ac/ (easylistchina.txt: 2309) +.btks.me/ac/ +# ||bthand.com/static/650-80.swf (easylistchina.txt: 2308) +.bthand.com/static/650-80\.swf +# ||btcherry.com/images/gaoqing.png (easylistchina.txt: 2307) +.btcherry.com/images/gaoqing\.png +# ||btcherry.com/images/ad_ (easylistchina.txt: 2306) +.btcherry.com/images/ad_ +# ||btbook.net/static/img/880X60.gif (easylistchina.txt: 2305) +.btbook.net/static/img/880X60\.gif +# ||btbbt.cc/jslb.js (easylistchina.txt: 2304) +.btbbt.cc/jslb\.js +# ||btago.com/static/banner/ (easylistchina.txt: 2303) +.btago.com/static/banner/ +# ||bt977.com/Public/images/ad (easylistchina.txt: 2302) +.bt977.com/Public/images/ad +# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina.txt: 2301) +.bt1023.com/tpl/template/image/guanggao1\.gif +# ||bs028.com/js/inc/ (easylistchina.txt: 2300) +.bs028.com/js/inc/ +# ||bs.baidu.com/app-ads% (easylistchina.txt: 2299) +.bs.baidu.com/app-ads% +# ||brand.sogou.com/micro?yyid= (easylistchina.txt: 2298) +.brand.sogou.com/micro\?yyid= +# ||books.com.tw/web/apActivityStick? (easylistchina.txt: 2296) +.books.com.tw/web/apActivityStick\? +# ||bookgew.com/zj85/ (easylistchina.txt: 2295) +.bookgew.com/zj85/ +# ||bookgew.com/ml85/ (easylistchina.txt: 2294) +.bookgew.com/ml85/ +# ||bookgew.com/hz1/tcby.js (easylistchina.txt: 2293) +.bookgew.com/hz1/tcby\.js +# ||bookbao.cc/js/ (easylistchina.txt: 2292) +.bookbao.cc/js/ +# ||bookabc.net/js/xian (easylistchina.txt: 2291) +.bookabc.net/js/xian +# ||bookabc.net/js/tt.js (easylistchina.txt: 2290) +.bookabc.net/js/tt\.js +# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina.txt: 2289) +.bomb01.com/fancybox/jquery\.fancybox\. +# ||bnext.com.tw/static/web/all.js (easylistchina.txt: 2288) +.bnext.com.tw/static/web/all\.js +# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina.txt: 2287) +.bmp1.ali213.net/pubjs/index_sc_utf8\.js +# ||bmp1.ali213.net/js/ (easylistchina.txt: 2286) +.bmp1.ali213.net/js/ +# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina.txt: 2285) +.bmp.ali213.net/pubjs/SetScreen\.js +# ||bmp.ali213.net/js/ (easylistchina.txt: 2284) +.bmp.ali213.net/js/ +# ||blueidea.com/js/ajs.js (easylistchina.txt: 2283) +.blueidea.com/js/ajs\.js +# ||blueidea.com/2012/sdong/sdo.gif (easylistchina.txt: 2282) +.blueidea.com/2012/sdong/sdo\.gif +# ||blogspot.com^*/s1600/orig.gif (easylistchina.txt: 2281) +.blogspot.com/.*/s1600/orig\.gif +# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina.txt: 2280) +.blog.tianya.cn/tuijian/tanchu\.js +# ||blog.china.com/u/dvpush/$subdocument (easylistchina.txt: 2279) +.blog.china.com/u/dvpush/ +# ||blog.51cto.com/js/poptop.js (easylistchina.txt: 2278) +.blog.51cto.com/js/poptop\.js +# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina.txt: 2277) +.bkjia.com/bkjia/js/subnavtop\.js +# ||bkjia.com/bkjia/js/banner (easylistchina.txt: 2276) +.bkjia.com/bkjia/js/banner +# ||bkjia.com/bkjia/js/art_rightad (easylistchina.txt: 2275) +.bkjia.com/bkjia/js/art_rightad +# ||bkill.com/images/di.js (easylistchina.txt: 2274) +.bkill.com/images/di\.js +# ||bkill.com/css/abc/ (easylistchina.txt: 2273) +.bkill.com/css/abc/ +# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina.txt: 2272) +.bjxxw.com/themes/portal/local/special_.*\.swf +# ||bjmxw.net/bd/ (easylistchina.txt: 2271) +.bjmxw.net/bd/ +# ||bjmama.net/a/spc_ (easylistchina.txt: 2270) +.bjmama.net/a/spc_ +# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina.txt: 2269) +.bjhjyd.gov.cn/templates/default/www/js/float\.js +# ||biz37.net^*.swf?uid= (easylistchina.txt: 2268) +.biz37.net/.*\.swf\?uid= +# ||biz.weibo.com^ (easylistchina.txt: 2267) +.biz.weibo.com +# ||biz.lyd.com.cn/20 (easylistchina.txt: 2266) +.biz.lyd.com.cn/20 +# ||biz.gexing.com^ (easylistchina.txt: 2265) +.biz.gexing.com +# ||biz*.sandai.net^ (easylistchina.txt: 2264) +.biz*./.*\.sandai\.net[^\w%.-] +.biz*.sandai.net +# ||bitscn.com/js/a2 (easylistchina.txt: 2263) +.bitscn.com/js/a2 +# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina.txt: 2262) +.bitautoimg.com/ResourceFiles/0/3/167/20151207103257620\.jpg +# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina.txt: 2261) +.bitautoimg.com/ResourceFiles/0/.*\.swf +# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina.txt: 2260) +.bitautoimg.com/ResourceFiles/0/.*\.gif +# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina.txt: 2259) +.bitauto.com/ResourceFiles/play/play\.swf +# ||bitauto.com/js/sense*.js (easylistchina.txt: 2258) +.bitauto.com/js/sense.*\.js +# ||biquge5.com/jquery/ (easylistchina.txt: 2257) +.biquge5.com/jquery/ +# ||biquge.so/kinpo/% (easylistchina.txt: 2256) +.biquge.so/kinpo/% +# ||biqi.me/Public/js/page_gg_ (easylistchina.txt: 2255) +.biqi.me/Public/js/page_gg_ +# ||biqi.me/Public/js/page_ad_ (easylistchina.txt: 2254) +.biqi.me/Public/js/page_ad_ +# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina.txt: 2253) +.bio-equip.com/uploadimages/peiqing\.gif +# ||bio-equip.com/images/esco06.swf (easylistchina.txt: 2252) +.bio-equip.com/images/esco06\.swf +# ||bio-equip.com/dimgs/ (easylistchina.txt: 2251) +.bio-equip.com/dimgs/ +# ||bio-equip.com/dimg/ (easylistchina.txt: 2250) +.bio-equip.com/dimg/ +# ||binhuo.com/bhjs/ (easylistchina.txt: 2249) +.binhuo.com/bhjs/ +# ||bh111.com/js/tan_ (easylistchina.txt: 2248) +.bh111.com/js/tan_ +# ||bh111.com/flash/*+ (easylistchina.txt: 2247) +.bh111.com/flash/.*\+ +# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina.txt: 2246) +.bfpgf.com/wp-content/uploads/2015/08/360dxs\.jpg +# ||bforu.info/images/ali.gif (easylistchina.txt: 2245) +.bforu.info/images/ali\.gif +# ||bforu.info/03.jpg (easylistchina.txt: 2244) +.bforu.info/03\.jpg +# ||bfooru.info/images/*.gif (easylistchina.txt: 2243) +.bfooru.info/images/.*\.gif +# ||bfooru.info/03.jpg (easylistchina.txt: 2242) +.bfooru.info/03\.jpg +# ||bestvogue.com/fans/ (easylistchina.txt: 2241) +.bestvogue.com/fans/ +# ||besc.baidustatic.com^ (easylistchina.txt: 2240) +.besc.baidustatic.com +# ||bendibao.com/mo/adm_iframe.htm? (easylistchina.txt: 2239) +.bendibao.com/mo/adm_iframe\.htm\? +# ||bendibao.com*/tuangou.gif (easylistchina.txt: 2238) +.bendibao.com*./(.*/)?tuangou\.gif +# ||bejson.com/imgs/tuo.png (easylistchina.txt: 2237) +.bejson.com/imgs/tuo\.png +# ||bejson.com/imgs/qiniu (easylistchina.txt: 2236) +.bejson.com/imgs/qiniu +# ||bejson.com/imgs/j950-90.jpg (easylistchina.txt: 2235) +.bejson.com/imgs/j950-90\.jpg +# ||bejson.com/imgs/beifen (easylistchina.txt: 2234) +.bejson.com/imgs/beifen +# ||beiwo.tv/Runtime/js/list01.js (easylistchina.txt: 2233) +.beiwo.tv/Runtime/js/list01\.js +# ||beijing-air.com/images/a/j (easylistchina.txt: 2232) +.beijing-air.com/images/a/j +# ||bego.cc/img/ (easylistchina.txt: 2231) +.bego.cc/img/ +# ||beephone.com.tw/ad-yahoo.php (easylistchina.txt: 2230) +.beephone.com.tw/ad-yahoo\.php +# ||beephone.com.tw/ad-middle.php (easylistchina.txt: 2229) +.beephone.com.tw/ad-middle\.php +# ||beareyes.com.cn^*/ad/ (easylistchina.txt: 2228) +.beareyes.com.cn/.*/ad/ +# ||beanfun.com/playweb/adpicpage.htm (easylistchina.txt: 2227) +.beanfun.com/playweb/adpicpage\.htm +# ||bdstatic.com^*/tam-ogel/ (easylistchina.txt: 2226) +.bdstatic.com/.*/tam-ogel/ +# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina.txt: 2225) +.bdstatic.com/tb/zt/tengfei/gzdialog\.jpg +# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina.txt: 2224) +.bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f\.jpg +# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina.txt: 2223) +.bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac\.jpg +# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina.txt: 2222) +.bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ +# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina.txt: 2221) +.bdstatic.com/tb/cms/ngmis/file_1417585299140\.jpg +# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina.txt: 2220) +.bdstatic.com/tb/cms/ngmis/file_1417585294569\.jpg +# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina.txt: 2219) +.bdstatic.com/tb/cms/img/tieba_index_banner960x90\.png +# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina.txt: 2218) +.bdstatic.com/tb/cms/forum_skin/file_1442399443261\.jpg +# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina.txt: 2217) +.bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api\.js +# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina.txt: 2216) +.bdstatic.com/tb/cms/com/game/couplet_ +# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina.txt: 2215) +.bdstatic.com/tb/cms/activity_head/file_ +# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina.txt: 2214) +.bdstatic.com/tb/%E8%B4%B4%E5%90%A7- +# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina.txt: 2213) +.bdstatic.com/static/article/widget/left-promo/ +# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina.txt: 2212) +.bdstatic.com/player/t/j/TvKa94eY\.js +# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina.txt: 2211) +.bdstatic.com/player/t/j/Cj2XuDf6\.js +# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina.txt: 2210) +.bdstatic.com/player/t/j/AEoIJIPB\.js +# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina.txt: 2209) +.bdstatic.com/pc_static/detail/game_promotion/ +# ||bdstatic.com/img/image/su/ (easylistchina.txt: 2208) +.bdstatic.com/img/image/su/ +# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina.txt: 2207) +.bdstatic.com/api_hao123AdvHeader\.js +# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina.txt: 2206) +.bdinfo.net/bdinfo_skin/xlsgg\.js +# ||bdimg.com/site/games/yxtg/*.js (easylistchina.txt: 2205) +.bdimg.com/site/games/yxtg/.*\.js +# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina.txt: 2204) +.bdimg.com/newmap/static/common/images/nav-ad_ +# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina.txt: 2203) +.bdimg.com/brands/yxtg/source/juhe-v2\.js +# ||bcok.com^$subdocument (easylistchina.txt: 2202) +.bcok.com +# ||bccn.net/aaa/ (easylistchina.txt: 2201) +.bccn.net/aaa/ +# ||bcc.com.tw/imgs/adv/ (easylistchina.txt: 2200) +.bcc.com.tw/imgs/adv/ +# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina.txt: 2199) +.bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c\.jpg +# ||bbs.xiashanet.com/js/adsview.js (easylistchina.txt: 2198) +.bbs.xiashanet.com/js/adsview\.js +# ||bbs.xbaodi.com/plugin.php (easylistchina.txt: 2197) +.bbs.xbaodi.com/plugin\.php +# ||bbs.winning11cn.com/temp/*.gif (easylistchina.txt: 2196) +.bbs.winning11cn.com/temp/.*\.gif +# ||bbs.voc.com.cn/s.js (easylistchina.txt: 2195) +.bbs.voc.com.cn/s\.js +# ||bbs.hotavxxx.com/images/201*.gif (easylistchina.txt: 2194) +.bbs.hotavxxx.com/images/201.*\.gif +# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina.txt: 2193) +.bbs.fengbao.com/image/bingzuan925X80\.jpg +# ||bbs.a9vg.com/showit/img_show.php (easylistchina.txt: 2192) +.bbs.a9vg.com/showit/img_show\.php +# ||baoliny.com/js/jing.js (easylistchina.txt: 2191) +.baoliny.com/js/jing\.js +# ||baofeng.com/src/ad.js (easylistchina.txt: 2190) +.baofeng.com/src/ad\.js +# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina.txt: 2189) +.bang5mai.com/upload/plugin/assets/main/js/b5m\.adv\.js +# ||bamuyu.com/skin/js/bgad.js (easylistchina.txt: 2188) +.bamuyu.com/skin/js/bgad\.js +# ||ballive.com/addm/ (easylistchina.txt: 2187) +.ballive.com/addm/ +# ||baiy.net:88/a/ (easylistchina.txt: 2186) +.baiy.net:88/a/ +# ||baixing.com/bb/*/?category= (easylistchina.txt: 2185) +.baixing.com/bb/.*/\?category= +# ||baishulou.net/html/ (easylistchina.txt: 2184) +.baishulou.net/html/ +# ||baishuku.com/news/$script (easylistchina.txt: 2183) +.baishuku.com/news/ +# ||baike.com/iframeheightforad. (easylistchina.txt: 2182) +.baike.com/iframeheightforad\. +# ||baike.com/3g/ads/ (easylistchina.txt: 2181) +.baike.com/3g/ads/ +# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina.txt: 2180) +.baifen.music.baidu.com/api/v1/.*\?format=jsonp& +# ||baidud.cn/aoao/down_ (easylistchina.txt: 2179) +.baidud.cn/aoao/down_ +# ||baidu.com^*/interface/ad? (easylistchina.txt: 2178) +.baidu.com/.*/interface/ad\? +# ||baidu.com/WerbungAjax/getTonglan? (easylistchina.txt: 2176) +.baidu.com/WerbungAjax/getTonglan\? +# ||baidu.com/WerbungAjax/getBeitou? (easylistchina.txt: 2175) +.baidu.com/WerbungAjax/getBeitou\? +# ||baidu.com/videoapi/?*_ad_promote& (easylistchina.txt: 2174) +.baidu.com/videoapi/\?.*_ad_promote& +# ||baidu.com/videoadv.js (easylistchina.txt: 2173) +.baidu.com/videoadv\.js +# ||baidu.com/ur/scun?di=contentunion (easylistchina.txt: 2172) +.baidu.com/ur/scun\?di=contentunion +# ||baidu.com/tequan/adpadmin_feed/ (easylistchina.txt: 2171) +.baidu.com/tequan/adpadmin_feed/ +# ||baidu.com/tbliveact/data/xiu8/ (easylistchina.txt: 2170) +.baidu.com/tbliveact/data/xiu8/ +# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina.txt: 2169) +.baidu.com/tb/zt/wen_da_pc\.html +# ||baidu.com/tb/zt/spread/ (easylistchina.txt: 2168) +.baidu.com/tb/zt/spread/ +# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina.txt: 2167) +.baidu.com/tb/static-common/swf/worldcup_main\.swf +# ||baidu.com/tb/cms/game/*_banner_ (easylistchina.txt: 2166) +.baidu.com/tb/cms/game/.*_banner_ +# ||baidu.com/tb/cms/game/*_banner. (easylistchina.txt: 2165) +.baidu.com/tb/cms/game/.*_banner\. +# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina.txt: 2164) +.baidu.com/tb/cms/forum_skin/file_ +# ||baidu.com/staticapi/misadlist. (easylistchina.txt: 2163) +.baidu.com/staticapi/misadlist\. +# ||baidu.com/staticapi/hotnews_new. (easylistchina.txt: 2162) +.baidu.com/staticapi/hotnews_new\. +# ||baidu.com/static/yuntu-ad/ (easylistchina.txt: 2161) +.baidu.com/static/yuntu-ad/ +# ||baidu.com/static/html/cbjs.html (easylistchina.txt: 2160) +.baidu.com/static/html/cbjs\.html +# ||baidu.com/showbrand/sponsor_ (easylistchina.txt: 2159) +.baidu.com/showbrand/sponsor_ +# ||baidu.com/showbrand/banner_ (easylistchina.txt: 2158) +.baidu.com/showbrand/banner_ +# ||baidu.com/show/livevideo/getStreamConf? (easylistchina.txt: 2157) +.baidu.com/show/livevideo/getStreamConf\? +# ||baidu.com/rmaAjax/getGame? (easylistchina.txt: 2156) +.baidu.com/rmaAjax/getGame\? +# ||baidu.com/resource/tuisong/ (easylistchina.txt: 2155) +.baidu.com/resource/tuisong/ +# ||baidu.com/resource/baichuan/ (easylistchina.txt: 2154) +.baidu.com/resource/baichuan/ +# ||baidu.com/resource/ads/ (easylistchina.txt: 2153) +.baidu.com/resource/ads/ +# ||baidu.com/img/iknow/wenku*85. (easylistchina.txt: 2152) +.baidu.com/img/iknow/wenku.*85\. +# ||baidu.com/game/asset/common/performance. (easylistchina.txt: 2151) +.baidu.com/game/asset/common/performance\. +# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina.txt: 2150) +.baidu.com/fanyiapp/image/wise_banner_ +# ||baidu.com/event/img/zwdzjs.jpg (easylistchina.txt: 2149) +.baidu.com/event/img/zwdzjs\.jpg +# ||baidu.com/ecom$image,script (easylistchina.txt: 2148) +.baidu.com/ecom +# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina.txt: 2147) +.baidu.com/cms/rc/adSideConfig\.json\? +# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina.txt: 2146) +.baidu.com/brands/yxtg/source/yxCoupletsAd\.js +# ||baidu.com/api/proxyapi?tag=adv& (easylistchina.txt: 2145) +.baidu.com/api/proxyapi\?tag=adv& +# ||badmintoncn.com/cbo_gg/ (easylistchina.txt: 2143) +.badmintoncn.com/cbo_gg/ +# ||backchina.com/banners/ (easylistchina.txt: 2142) +.backchina.com/banners/ +# ||babytreeimg.com/img/promo/ (easylistchina.txt: 2141) +.babytreeimg.com/img/promo/ +# ||babyhome.com.tw/slot_gateway.php? (easylistchina.txt: 2140) +.babyhome.com.tw/slot_gateway\.php\? +# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina.txt: 2139) +.babyhome.com.tw/lib/iframe\.php\?u= +# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina.txt: 2138) +.babyhome.com.tw/2015/mid_autumn/ +# ||baby-kingdom.com/reqwads? (easylistchina.txt: 2137) +.baby-kingdom.com/reqwads\? +# ||baby-kingdom.com/reqsads? (easylistchina.txt: 2136) +.baby-kingdom.com/reqsads\? +# ||b5m.com/static/html/*/popup.html? (easylistchina.txt: 2135) +.b5m.com/static/html/.*/popup\.html\? +# ||b5m.com/images/banner.jpg (easylistchina.txt: 2134) +.b5m.com/images/banner\.jpg +# ||azhibo.com/images/2015/edge-bg.png (easylistchina.txt: 2133) +.azhibo.com/images/2015/edge-bg\.png +# ||ayxz.com/images/VStart.gif (easylistchina.txt: 2132) +.ayxz.com/images/VStart\.gif +# ||ayxz.com/images/enkj_small.gif (easylistchina.txt: 2131) +.ayxz.com/images/enkj_small\.gif +# ||ayxz.com/images/$script (easylistchina.txt: 2130) +.ayxz.com/images/ +# ||awaker.hk/wp-content/uploads/ok/ (easylistchina.txt: 2129) +.awaker.hk/wp-content/uploads/ok/ +# ||avseesee.com/twad (easylistchina.txt: 2128) +.avseesee.com/twad +# ||avseesee.com/htmls/vlinks.html (easylistchina.txt: 2127) +.avseesee.com/htmls/vlinks\.html +# ||avseesee.com/amandison.php (easylistchina.txt: 2126) +.avseesee.com/amandison\.php +# ||avonline.org/js/jquery.colorbox- (easylistchina.txt: 2125) +.avonline.org/js/jquery\.colorbox- +# ||avlang33.com/js/float.js (easylistchina.txt: 2124) +.avlang33.com/js/float\.js +# ||avcity.twavtv.com/js/twavt.js (easylistchina.txt: 2123) +.avcity.twavtv.com/js/twavt\.js +# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina.txt: 2122) +.autos.udn.com/topic/car/include/ad\.jsp +# ||autoimg.cn/engine/root/fggxl.js (easylistchina.txt: 2121) +.autoimg.cn/engine/root/fggxl\.js +# ||autoimg.cn/ad.js (easylistchina.txt: 2120) +.autoimg.cn/ad\.js +# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina.txt: 2119) +.autohome.com.cn/Ashx/public/HeaderLayerRecApp\.ashx\? +# ||autofan.com.cn/zhaoning/GG- (easylistchina.txt: 2118) +.autofan.com.cn/zhaoning/GG- +# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina.txt: 2117) +.autofan.com.cn/zhaoning/20.*\.jpg +# ||autofan.com.cn/zhaoning/*.gif (easylistchina.txt: 2116) +.autofan.com.cn/zhaoning/.*\.gif +# ||auto-online.com.tw/vendor_data/ (easylistchina.txt: 2115) +.auto-online.com.tw/vendor_data/ +# ||att.ydss.cn/attachments/portal/ (easylistchina.txt: 2114) +.att.ydss.cn/attachments/portal/ +# ||atm.youku.com^ (easylistchina.txt: 2113) +.atm.youku.com +# ||asxxg.cn/Public/config/Couplet/ (easylistchina.txt: 2112) +.asxxg.cn/Public/config/Couplet/ +# ||aspjzy.com/jsweb/js/ (easylistchina.txt: 2111) +.aspjzy.com/jsweb/js/ +# ||asp300.com/2012js/ (easylistchina.txt: 2110) +.asp300.com/2012js/ +# ||asp300.com/2012adjs/ (easylistchina.txt: 2109) +.asp300.com/2012adjs/ +# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina.txt: 2108) +.asimgs.pplive.cn +# ||asia-home.com.cn/js/yt/ytadshow (easylistchina.txt: 2107) +.asia-home.com.cn/js/yt/ytadshow +# ||ashow.pcpop.com^ (easylistchina.txt: 2106) +.ashow.pcpop.com +# ||as.sinahk.net^ (easylistchina.txt: 2105) +.as.sinahk.net +# ||article.pchome.net/Index.php?c=Intel& (easylistchina.txt: 2104) +.article.pchome.net/Index\.php\?c=Intel& +# ||arpun.com/arpun/softinfo (easylistchina.txt: 2103) +.arpun.com/arpun/softinfo +# ||ark.letv.com/s?vid= (easylistchina.txt: 2102) +.ark.letv.com/s\?vid= +# ||ark.letv.com/s?res= (easylistchina.txt: 2101) +.ark.letv.com/s\?res= +# ||aqy103.com/js/aqy/ (easylistchina.txt: 2100) +.aqy103.com/js/aqy/ +# ||aqy102.com/js/aqy/ (easylistchina.txt: 2099) +.aqy102.com/js/aqy/ +# ||aqlife.com/data/attachment/portal/ (easylistchina.txt: 2098) +.aqlife.com/data/attachment/portal/ +# ||appinn.com^*/licaifan. (easylistchina.txt: 2097) +.appinn.com/.*/licaifan\. +# ||appinn.com/images/201509/wd.png (easylistchina.txt: 2096) +.appinn.com/images/201509/wd\.png +# ||app.acm.dzwww.com^ (easylistchina.txt: 2095) +.app.acm.dzwww.com +# ||app-g.39.net/NNN/ (easylistchina.txt: 2094) +.app-g.39.net/NNN/ +# ||apihousefun.yam.com/news.php (easylistchina.txt: 2093) +.apihousefun.yam.com/news\.php +# ||aoye.cc/js/footer.js (easylistchina.txt: 2092) +.aoye.cc/js/footer\.js +# ||anywlan.com/link/xcloud.jpg (easylistchina.txt: 2091) +.anywlan.com/link/xcloud\.jpg +# ||anywlan.com/link/*.gif (easylistchina.txt: 2090) +.anywlan.com/link/.*\.gif +# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina.txt: 2089) +.anquan.org/static/user_upload/zorro/.*/%E5%93% +# ||anquan.org/static/user_upload/*/cloud (easylistchina.txt: 2088) +.anquan.org/static/user_upload/.*/cloud +# ||anquan.org/static/profile/images/qq-banner.png (easylistchina.txt: 2087) +.anquan.org/static/profile/images/qq-banner\.png +# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina.txt: 2086) +.anquan.org/static/auth/images/ppb_cert/qq-browser\.jpg +# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina.txt: 2085) +.anhuinews.com/zhuyeguanli/.*ad/ +# ||anhuinews.com/include/ (easylistchina.txt: 2084) +.anhuinews.com/include/ +# ||angpic.3g.net.cn/ai/ (easylistchina.txt: 2083) +.angpic.3g.net.cn/ai/ +# ||an7.tv/Runtime/js/ (easylistchina.txt: 2082) +.an7.tv/Runtime/js/ +# ||amd.cn/yyets.js (easylistchina.txt: 2081) +.amd.cn/yyets\.js +# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina.txt: 2080) +.am.zdnet.com.cn/www/images/ +# ||am.szhome.com^ (easylistchina.txt: 2079) +.am.szhome.com +# ||am.6park.com^ (easylistchina.txt: 2078) +.am.6park.com +# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina.txt: 2077) +.alu.cn/aluTrade/Fragments/ListAdvertisementProducts\. +# ||alu.cn/2011/images/conglin.gif (easylistchina.txt: 2076) +.alu.cn/2011/images/conglin\.gif +# ||alu.cn*/aluad/ (easylistchina.txt: 2075) +.alu.cn*./(.*/)?aluad/ +# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina.txt: 2074) +.allbeauty.com.tw/GoldPrice/.*_CF\.php +# ||alixixi.com/adsview/ (easylistchina.txt: 2073) +.alixixi.com/adsview/ +# ||alifeifei.net/s/*.js (easylistchina.txt: 2072) +.alifeifei.net/s/.*\.js +# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina.txt: 2068) +.alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100\.jpg +# ||alicdn.com/tps/*-950-90. (easylistchina.txt: 2067) +.alicdn.com/tps/.*-950-90\. +# ||ali213.net/static/js/kv (easylistchina.txt: 2066) +.ali213.net/static/js/kv +# ||ali213.net/static/js/kktv (easylistchina.txt: 2065) +.ali213.net/static/js/kktv +# ||ali213.net/static/js/*_ali213tv.js (easylistchina.txt: 2064) +.ali213.net/static/js/.*_ali213tv\.js +# ||ali213.net/images/promotion/ (easylistchina.txt: 2063) +.ali213.net/images/promotion/ +# ||ali213.net/css/data/promotion.css (easylistchina.txt: 2062) +.ali213.net/css/data/promotion\.css +# ||alexa.cn/ad$subdocument (easylistchina.txt: 2061) +.alexa.cn/ad +# ||alabout.com/images/*.gif (easylistchina.txt: 2060) +.alabout.com/images/.*\.gif +# ||aknba.com/cache/ads.js (easylistchina.txt: 2059) +.aknba.com/cache/ads\.js +# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina.txt: 2058) +.akjunshi.com/resource/s/data_js_mil/right_twtj\.js +# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina.txt: 2057) +.akjunshi.com/resource/s/data_js_mil/aksqgg\.js +# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina.txt: 2056) +.ak47fuli.net/wp-content/uploads/20.*\.gif +# ||ak47fuli.net/fd.js (easylistchina.txt: 2055) +.ak47fuli.net/fd\.js +# ||ajiang.net/b4_dnslak.png (easylistchina.txt: 2054) +.ajiang.net/b4_dnslak\.png +# ||aiyuke.com/index.php?c=position& (easylistchina.txt: 2053) +.aiyuke.com/index\.php\?c=position& +# ||aiyidu.com/aiyidu/adver/ (easylistchina.txt: 2052) +.aiyidu.com/aiyidu/adver/ +# ||aituan.com/at/bbs_gg/ (easylistchina.txt: 2051) +.aituan.com/at/bbs_gg/ +# ||airenti.in^$script (easylistchina.txt: 2050) +.airenti.in +# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina.txt: 2049) +.aipai.com/common/i0uat4jq/play/item\.html +# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina.txt: 2048) +.aipai.com/common/html/commonAdForTfansTo\.html +# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina.txt: 2047) +.aipai.com/app/www/templates/common/ifr/fans_640_40\.html +# ||aipai.com/app/www/templates/common/*_videos_ (easylistchina.txt: 2046) +.aipai.com/app/www/templates/common/.*_videos_ +# ||ainunu.com/vad.js (easylistchina.txt: 2045) +.ainunu.com/vad\.js +# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina.txt: 2044) +.aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76\.gif +# ||aijiatxt.com/js/gg.js (easylistchina.txt: 2043) +.aijiatxt.com/js/gg\.js +# ||aijiatxt.com/js/float.js (easylistchina.txt: 2042) +.aijiatxt.com/js/float\.js +# ||aijiatxt.com/images/dudu.gif (easylistchina.txt: 2041) +.aijiatxt.com/images/dudu\.gif +# ||aijiatxt.com/images/90.jpg (easylistchina.txt: 2040) +.aijiatxt.com/images/90\.jpg +# ||aijiatxt.com/images/300.jpg (easylistchina.txt: 2039) +.aijiatxt.com/images/300\.jpg +# ||aid.chinayk.com^ (easylistchina.txt: 2038) +.aid.chinayk.com +# ||aibang.com/?area=ajax&cmd=adv& (easylistchina.txt: 2037) +.aibang.com/\?area=ajax&cmd=adv& +# ||ai.bioon.com^ (easylistchina.txt: 2036) +.ai.bioon.com +# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina.txt: 2035) +.ahtv.cn/publishsys/data/template/1/3/images/zgyd_ +# ||ahlife.com/skin/hftogo/js/ (easylistchina.txt: 2034) +.ahlife.com/skin/hftogo/js/ +# ||ahlife.com/api.php?mod=adv& (easylistchina.txt: 2033) +.ahlife.com/api\.php\?mod=adv& +# ||ah.sina.com.cn/iframe/ (easylistchina.txt: 2032) +.ah.sina.com.cn/iframe/ +# ||afpcreative.wasu.cn^ (easylistchina.txt: 2031) +.afpcreative.wasu.cn +# ||afp.wasu.cn^ (easylistchina.txt: 2030) +.afp.wasu.cn +# ||afp.chinanews.com^ (easylistchina.txt: 2029) +.afp.chinanews.com +# ||afocus.com.cn/s? (easylistchina.txt: 2028) +.afocus.com.cn/s\? +# ||adwordsing.com/img/2.jpg (easylistchina.txt: 2027) +.adwordsing.com/img/2\.jpg +# ||adwordsing.com/img/1.jpg (easylistchina.txt: 2026) +.adwordsing.com/img/1\.jpg +# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina.txt: 2025) +.advideoadmin.appledaily.com.tw/ov_player/ +# ||adsproject.nownews.com^$subdocument (easylistchina.txt: 2024) +.adsproject.nownews.com +# ||adspending01.bwnet.com.tw^ (easylistchina.txt: 2023) +.adspending01.bwnet.com.tw +# ||adsclick.yx.js.cn^ (easylistchina.txt: 2022) +.adsclick.yx.js.cn +# ||adpubs.yaolan.com^ (easylistchina.txt: 2021) +.adpubs.yaolan.com +# ||adpub.yaolan.com^ (easylistchina.txt: 2020) +.adpub.yaolan.com +# ||adp.cnool.net^ (easylistchina.txt: 2019) +.adp.cnool.net +# ||adnetpub.yaolan.com^ (easylistchina.txt: 2018) +.adnetpub.yaolan.com +# ||admin6.com/templates/index/default/images/100060.gif (easylistchina.txt: 2017) +.admin6.com/templates/index/default/images/100060\.gif +# ||admin5.com/lib/js/*_article (easylistchina.txt: 2016) +.admin5.com/lib/js/.*_article +# ||admin5.com/hezuo/action/ (easylistchina.txt: 2015) +.admin5.com/hezuo/action/ +# ||admin5.com/extras/ (easylistchina.txt: 2014) +.admin5.com/extras/ +# ||admin5.com/daohang/ (easylistchina.txt: 2013) +.admin5.com/daohang/ +# ||admin5.com/bd360qq/action/ (easylistchina.txt: 2012) +.admin5.com/bd360qq/action/ +# ||admin5.com/a5dao/ (easylistchina.txt: 2011) +.admin5.com/a5dao/ +# ||admin10000.com/skin/lagou_ (easylistchina.txt: 2010) +.admin10000.com/skin/lagou_ +# ||admd.yam.com^ (easylistchina.txt: 2009) +.admd.yam.com +# ||admaimai.com/inc/adv (easylistchina.txt: 2008) +.admaimai.com/inc/adv +# ||adm.zzfish.cn^ (easylistchina.txt: 2007) +.adm.zzfish.cn +# ||adm.zbinfo.net^ (easylistchina.txt: 2006) +.adm.zbinfo.net +# ||adm.xmfish.com^ (easylistchina.txt: 2005) +.adm.xmfish.com +# ||adm.qzbbs.com^ (easylistchina.txt: 2004) +.adm.qzbbs.com +# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina.txt: 2003) +.adm.leju.sina.com.cn/get_abp_list/ +# ||adm.jjj8.cn^ (easylistchina.txt: 2002) +.adm.jjj8.cn +# ||adm.funshion.com^ (easylistchina.txt: 2001) +.adm.funshion.com +# ||adm.bbcss.com^ (easylistchina.txt: 2000) +.adm.bbcss.com +# ||adm.86wan.com^ (easylistchina.txt: 1999) +.adm.86wan.com +# ||adm.72zx.com^ (easylistchina.txt: 1998) +.adm.72zx.com +# ||adm.265g.com^ (easylistchina.txt: 1997) +.adm.265g.com +# ||adm*.autoimg.cn^$object (easylistchina.txt: 1996) +.adm*./.*\.autoimg\.cn[^\w%.-] +.adm*.autoimg.cn +# ||adk.funshion.com^ (easylistchina.txt: 1995) +.adk.funshion.com +# ||adi*.cnool.net^ (easylistchina.txt: 1994) +.adi*./.*\.cnool\.net[^\w%.-] +.adi*.cnool.net +# ||adhome.1fangchan.com^ (easylistchina.txt: 1993) +.adhome.1fangchan.com +# ||adf.dahe.cn^ (easylistchina.txt: 1992) +.adf.dahe.cn +# ||add.freeimg8.com^ (easylistchina.txt: 1991) +.add.freeimg8.com +# ||add.dz19.net^ (easylistchina.txt: 1990) +.add.dz19.net +# ||adadmin.house365.com^ (easylistchina.txt: 1989) +.adadmin.house365.com +# ||ad.bjmama.net^ (easylistchina.txt: 1988) +.ad.bjmama.net +# ||ad.17173.com^ (easylistchina.txt: 1987) +.ad.17173.com +# ||ad.12306.cn/res/*.html (easylistchina.txt: 1986) +.ad.12306.cn/res/.*\.html +# ||actoys.net/statics/js/index/ad.js (easylistchina.txt: 1985) +.actoys.net/statics/js/index/ad\.js +# ||actoys.net/js/beitou.js (easylistchina.txt: 1984) +.actoys.net/js/beitou\.js +# ||actoys.net/index.php?m=poster& (easylistchina.txt: 1983) +.actoys.net/index\.php\?m=poster& +# ||act.chinatimes.com/aimg/ (easylistchina.txt: 1982) +.act.chinatimes.com/aimg/ +# ||acsystem.wasu.cn^ (easylistchina.txt: 1981) +.acsystem.wasu.cn +# ||acode.b2b.cn/JS/ (easylistchina.txt: 1980) +.acode.b2b.cn/JS/ +# ||acg.bz/2.gif (easylistchina.txt: 1978) +.acg.bz/2\.gif +# ||acg.bz/1.jpg (easylistchina.txt: 1977) +.acg.bz/1\.jpg +# ||acg.178.com/s/manhua218_140.html (easylistchina.txt: 1975) +.acg.178.com/s/manhua218_140\.html +# ||acg.178.com/201302/t_ (easylistchina.txt: 1974) +.acg.178.com/201302/t_ +# ||acfun.tv/adnew.aspx?id= (easylistchina.txt: 1973) +.acfun.tv/adnew\.aspx\?id= +# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina.txt: 1972) +.ac.tc.qq.com/store_file_download\?.*&dir_path=/admin/swf/ +# ||abcde.cn/2014images/*96060.jpg (easylistchina.txt: 1971) +.abcde.cn/2014images/.*96060\.jpg +# ||abc.hkepc.com^ (easylistchina.txt: 1970) +.abc.hkepc.com +# ||ab.ahlife.com^*.swf (easylistchina.txt: 1969) +.ab.ahlife.com/.*\.swf +# ||a67.com/a/*.js (easylistchina.txt: 1968) +.a67.com/a/.*\.js +# ||a6.hujiang.com^ (easylistchina.txt: 1967) +.a6.hujiang.com +# ||a5.yeshj.com^ (easylistchina.txt: 1966) +.a5.yeshj.com +# ||a4.yeshj.com^ (easylistchina.txt: 1965) +.a4.yeshj.com +# ||a2.b310.com^ (easylistchina.txt: 1964) +.a2.b310.com +# ||a.xizi.com^ (easylistchina.txt: 1963) +.a.xizi.com +# ||a.kbcool.com/Mon_*.swf (easylistchina.txt: 1962) +.a.kbcool.com/Mon_.*\.swf +# ||a.jiaodong.net/a/2013/ (easylistchina.txt: 1961) +.a.jiaodong.net/a/2013/ +# ||a.game.qidian.com/Show.aspx? (easylistchina.txt: 1960) +.a.game.qidian.com/Show\.aspx\? +# ||a.game.qidian.com/material/xs.js (easylistchina.txt: 1959) +.a.game.qidian.com/material/xs\.js +# ||a.game.qidian.com/Layout.aspx? (easylistchina.txt: 1958) +.a.game.qidian.com/Layout\.aspx\? +# ||a.baomihua.com^ (easylistchina.txt: 1957) +.a.baomihua.com +# ||a-m-s.poco.cn^ (easylistchina.txt: 1956) +.a-m-s.poco.cn +# ||9ye.com/Files/Editor/ad/ (easylistchina.txt: 1955) +.9ye.com/Files/Editor/ad/ +# ||9w1an.com/special/ (easylistchina.txt: 1954) +.9w1an.com/special/ +# ||9upk.com/js/$subdocument (easylistchina.txt: 1953) +.9upk.com/js/ +# ||9upk.com/images/95050.gif (easylistchina.txt: 1952) +.9upk.com/images/95050\.gif +# ||9sky.com/_gg/ (easylistchina.txt: 1951) +.9sky.com/_gg/ +# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina.txt: 1950) +.9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00\.jpg +# ||9lala.com/js/ (easylistchina.txt: 1949) +.9lala.com/js/ +# ||9kjj.com/images/*.gif (easylistchina.txt: 1948) +.9kjj.com/images/.*\.gif +# ||9ist.com/others/ad/ (easylistchina.txt: 1947) +.9ist.com/others/ad/ +# ||9ihome.com/info/ADTopvnet/ (easylistchina.txt: 1946) +.9ihome.com/info/ADTopvnet/ +# ||9ihome.com/adimgs/ (easylistchina.txt: 1945) +.9ihome.com/adimgs/ +# ||9ht.com/skin2012/js/tlAd.js (easylistchina.txt: 1944) +.9ht.com/skin2012/js/tlAd\.js +# ||9ez.me/embd.php?type= (easylistchina.txt: 1943) +.9ez.me/embd\.php\?type= +# ||9duw.com/pic/ (easylistchina.txt: 1942) +.9duw.com/pic/ +# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina.txt: 1941) +.9db.cc/wp-content/themes/xiucaozuo/js/ifphone\.js +# ||99ting.cn/image/*.gif (easylistchina.txt: 1940) +.99ting.cn/image/.*\.gif +# ||99ting.cn/789uc/gg.js (easylistchina.txt: 1939) +.99ting.cn/789uc/gg\.js +# ||99tianji.com/hack/kaifubiao.js (easylistchina.txt: 1938) +.99tianji.com/hack/kaifubiao\.js +# ||99mst.com/upfiles/adv/main02.jpg (easylistchina.txt: 1937) +.99mst.com/upfiles/adv/main02\.jpg +# ||99danji.com/otherhtml/ (easylistchina.txt: 1936) +.99danji.com/otherhtml/ +# ||99btgc01.info/uploads/*.gif (easylistchina.txt: 1935) +.99btgc01.info/uploads/.*\.gif +# ||999sdh.com/tu/*.js (easylistchina.txt: 1934) +.999sdh.com/tu/.*\.js +# ||99770.cc^$subdocument (easylistchina.txt: 1933) +.99770.cc +# ||9938.net/video/tvg/hot.js (easylistchina.txt: 1932) +.9938.net/video/tvg/hot\.js +# ||9938.net/video/tvg/footer.js (easylistchina.txt: 1931) +.9938.net/video/tvg/footer\.js +# ||97aa1.com/g/ (easylistchina.txt: 1930) +.97aa1.com/g/ +# ||973.com/xyx/p.js (easylistchina.txt: 1929) +.973.com/xyx/p\.js +# ||969g.com/common/iframe/ (easylistchina.txt: 1928) +.969g.com/common/iframe/ +# ||966266.com/a-d/ (easylistchina.txt: 1927) +.966266.com/a-d/ +# ||962.net/skin/library/js/bt-index.js (easylistchina.txt: 1926) +.962.net/skin/library/js/bt-index\.js +# ||962.net/show/index_ (easylistchina.txt: 1925) +.962.net/show/index_ +# ||962.net/show/cms_$script (easylistchina.txt: 1924) +.962.net/show/cms_ +# ||962.net/show/bt.js (easylistchina.txt: 1923) +.962.net/show/bt\.js +# ||962.net/show/all_$script (easylistchina.txt: 1922) +.962.net/show/all_ +# ||962.net/show/all.js (easylistchina.txt: 1921) +.962.net/show/all\.js +# ||96.43.97.243^ (easylistchina.txt: 1920) +.96.43.97.243 +# ||9553.com/otherhtml/ (easylistchina.txt: 1919) +.9553.com/otherhtml/ +# ||94994.com*/js/plugin/shoppingMall/ (easylistchina.txt: 1918) +.94994.com*./(.*/)?js/plugin/shoppingMall/ +# ||93t.cc/template/93t/images/41550.gif (easylistchina.txt: 1917) +.93t.cc/template/93t/images/41550\.gif +# ||93994.com/templets/images/dashan.jpg (easylistchina.txt: 1916) +.93994.com/templets/images/dashan\.jpg +# ||92wav.com/rj/*.gif (easylistchina.txt: 1915) +.92wav.com/rj/.*\.gif +# ||92dp.com/home/showg?id= (easylistchina.txt: 1914) +.92dp.com/home/showg\?id= +# ||92dp.com/dianping/videoad (easylistchina.txt: 1913) +.92dp.com/dianping/videoad +# ||91danji.com/js/lmt.js (easylistchina.txt: 1912) +.91danji.com/js/lmt\.js +# ||91danji.com/images/*.jpg (easylistchina.txt: 1911) +.91danji.com/images/.*\.jpg +# ||91danji.com/asset/temp/91danji- (easylistchina.txt: 1910) +.91danji.com/asset/temp/91danji- +# ||918999.com/xjgg/ (easylistchina.txt: 1909) +.918999.com/xjgg/ +# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina.txt: 1908) +.91.com/uploads/game/.*-%E5%B9%BF%E5%91%8A\. +# ||91.com/hezuo/ (easylistchina.txt: 1907) +.91.com/hezuo/ +# ||91.com/*/hezuo/ (easylistchina.txt: 1906) +.91.com/.*/hezuo/ +# ||90zy.cn/data/attachment/portal/ (easylistchina.txt: 1905) +.90zy.cn/data/attachment/portal/ +# ||90oo.com/tp/w981.gif (easylistchina.txt: 1904) +.90oo.com/tp/w981\.gif +# ||90oo.com/tp/msn.jpg (easylistchina.txt: 1903) +.90oo.com/tp/msn\.jpg +# ||90oo.com/tp/js (easylistchina.txt: 1902) +.90oo.com/tp/js +# ||90oo.com/tp/hg (easylistchina.txt: 1901) +.90oo.com/tp/hg +# ||90oo.com/tp/down.gif (easylistchina.txt: 1900) +.90oo.com/tp/down\.gif +# ||90oo.com/tp/90232.jpg (easylistchina.txt: 1899) +.90oo.com/tp/90232\.jpg +# ||90oo.com/tp/40 (easylistchina.txt: 1898) +.90oo.com/tp/40 +# ||90oo.com/tp/*980.gif (easylistchina.txt: 1897) +.90oo.com/tp/.*980\.gif +# ||90bifen.net/images/c_ad_ (easylistchina.txt: 1896) +.90bifen.net/images/c_ad_ +# ||9091tv.com/Runtime/js/vod (easylistchina.txt: 1895) +.9091tv.com/Runtime/js/vod +# ||9091tv.com/Runtime/js/topguanggao (easylistchina.txt: 1894) +.9091tv.com/Runtime/js/topguanggao +# ||9091tv.com/hhhh.htm (easylistchina.txt: 1893) +.9091tv.com/hhhh\.htm +# ||9091tv.com/dy/mtu.swf (easylistchina.txt: 1892) +.9091tv.com/dy/mtu\.swf +# ||9000wy.com/style/js/2015content.js (easylistchina.txt: 1891) +.9000wy.com/style/js/2015content\.js +# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina.txt: 1890) +.900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi\.gif +# ||8vod.net/detail/vod_*.js (easylistchina.txt: 1889) +.8vod.net/detail/vod_.*\.js +# ||8vod.net/detail/play_*.js (easylistchina.txt: 1888) +.8vod.net/detail/play_.*\.js +# ||8jkx.com^ (easylistchina.txt: 1886) +.8jkx.com +# ||8dyun.com/*.php$script (easylistchina.txt: 1885) +.8dyun.com/.*\.php +# ||8d8d.me/images/dealer.gif (easylistchina.txt: 1884) +.8d8d.me/images/dealer\.gif +# ||88liu.com/data/attachment/portal/ (easylistchina.txt: 1883) +.88liu.com/data/attachment/portal/ +# ||88gs.com/agfile/ (easylistchina.txt: 1882) +.88gs.com/agfile/ +# ||88448.com/images/gj/ (easylistchina.txt: 1881) +.88448.com/images/gj/ +# ||880fg.com/css/*.js (easylistchina.txt: 1880) +.880fg.com/css/.*\.js +# ||87994.com/images/rili.gif (easylistchina.txt: 1879) +.87994.com/images/rili\.gif +# ||86file.megajoy.com^ (easylistchina.txt: 1878) +.86file.megajoy.com +# ||8684.com/com/sys_ad_ (easylistchina.txt: 1877) +.8684.com/com/sys_ad_ +# ||8684.com/baidu/c.js (easylistchina.txt: 1876) +.8684.com/baidu/c\.js +# ||8684.com/20150123/f3d37541.jpg (easylistchina.txt: 1875) +.8684.com/20150123/f3d37541\.jpg +# ||8684.cn/id/ad_ (easylistchina.txt: 1874) +.8684.cn/id/ad_ +# ||8683ys.com/template/380x60.gif (easylistchina.txt: 1873) +.8683ys.com/template/380x60\.gif +# ||86696.com/images/indexad.jpg (easylistchina.txt: 1872) +.86696.com/images/indexad\.jpg +# ||855699.com^*qq.js (easylistchina.txt: 1871) +.855699.com/.*qq\.js +# ||855699.com/piao.js (easylistchina.txt: 1870) +.855699.com/piao\.js +# ||83133.com/api/ (easylistchina.txt: 1869) +.83133.com/api/ +# ||81qi.com/d/js/ (easylistchina.txt: 1868) +.81qi.com/d/js/ +# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina.txt: 1867) +.81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02\.jpg +# ||80txt.com/js3*.gif (easylistchina.txt: 1866) +.80txt.com/js3.*\.gif +# ||801.tianyaui.com^ (easylistchina.txt: 1865) +.801.tianyaui.com +# ||800j.com.cn/index.php?m=poster& (easylistchina.txt: 1864) +.800j.com.cn/index\.php\?m=poster& +# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina.txt: 1863) +.800j.com.cn/api\.php\?op=itemtopbanner& +# ||800j.com.cn/2014ad/ (easylistchina.txt: 1862) +.800j.com.cn/2014ad/ +# ||800j.com.cn/2013ad/ (easylistchina.txt: 1861) +.800j.com.cn/2013ad/ +# ||8*.tianya.cn^ (easylistchina.txt: 1860) +.8*./.*\.tianya\.cn[^\w%.-] +.8*.tianya.cn +# ||7y7.com/js/7y7.ad. (easylistchina.txt: 1859) +.7y7.com/js/7y7\.ad\. +# ||7xdown.com/youid/ (easylistchina.txt: 1858) +.7xdown.com/youid/ +# ||7xdown.com/idcgg/ (easylistchina.txt: 1857) +.7xdown.com/idcgg/ +# ||7vk.com/detail/ (easylistchina.txt: 1856) +.7vk.com/detail/ +# ||7scs.com/js/TOP.js (easylistchina.txt: 1855) +.7scs.com/js/TOP\.js +# ||7mad.7m.cn^ (easylistchina.txt: 1854) +.7mad.7m.cn +# ||7m.cn/v2/js/analysebanner.js (easylistchina.txt: 1853) +.7m.cn/v2/js/analysebanner\.js +# ||7m.cn/analyse/include/*_ (easylistchina.txt: 1852) +.7m.cn/analyse/include/.*_ +# ||7kankan.com/scripts/new/indext (easylistchina.txt: 1851) +.7kankan.com/scripts/new/indext +# ||7kankan.com/c/123.gif (easylistchina.txt: 1850) +.7kankan.com/c/123\.gif +# ||7k7k.com/loading/loading.htm (easylistchina.txt: 1849) +.7k7k.com/loading/loading\.htm +# ||7k7k.com/ad-*.htm (easylistchina.txt: 1848) +.7k7k.com/ad-.*\.htm +# ||7edown.com/greensoft/js/ (easylistchina.txt: 1847) +.7edown.com/greensoft/js/ +# ||7dsw.com/web8/js/ (easylistchina.txt: 1846) +.7dsw.com/web8/js/ +# ||7c.com/7c_*.html? (easylistchina.txt: 1845) +.7c.com/7c_.*\.html\? +# ||79pan.com/gao.gif (easylistchina.txt: 1844) +.79pan.com/gao\.gif +# ||78land.com/js/fumeiti.js (easylistchina.txt: 1843) +.78land.com/js/fumeiti\.js +# ||78dm.net/images/mingren250.jpg (easylistchina.txt: 1842) +.78dm.net/images/mingren250\.jpg +# ||789pan.com/templates/default/images/kuping.gif (easylistchina.txt: 1841) +.789pan.com/templates/default/images/kuping\.gif +# ||77kp.com/bd/ (easylistchina.txt: 1840) +.77kp.com/bd/ +# ||77bike.com/img/tern.swf (easylistchina.txt: 1839) +.77bike.com/img/tern\.swf +# ||77bike.com/img/sticker.gif (easylistchina.txt: 1838) +.77bike.com/img/sticker\.gif +# ||77bike.com/img/fsir.gif (easylistchina.txt: 1837) +.77bike.com/img/fsir\.gif +# ||777g.me/cs/ (easylistchina.txt: 1836) +.777g.me/cs/ +# ||77119.com/js/ (easylistchina.txt: 1835) +.77119.com/js/ +# ||76xh.com/skin/zxf/js/ad (easylistchina.txt: 1834) +.76xh.com/skin/zxf/js/ad +# ||766.com/upbox2/js/*.js (easylistchina.txt: 1833) +.766.com/upbox2/js/.*\.js +# ||76.73.85.179/js/v1.js (easylistchina.txt: 1832) +.76.73.85.179/js/v1\.js +# ||75.125.41.29:8080/ (easylistchina.txt: 1831) +.75.125.41.29:8080 +# ||73p37.com/js/top (easylistchina.txt: 1830) +.73p37.com/js/top +# ||73p37.com/js/playad.html (easylistchina.txt: 1829) +.73p37.com/js/playad\.html +# ||73p37.com/js/bottomall.js (easylistchina.txt: 1828) +.73p37.com/js/bottomall\.js +# ||72bbb.com/images/12.gif (easylistchina.txt: 1827) +.72bbb.com/images/12\.gif +# ||726w.com/sohu.html (easylistchina.txt: 1826) +.726w.com/sohu\.html +# ||70.86.24.120:8060/ (easylistchina.txt: 1825) +.70.86.24.120:8060 +# ||6vhao.com/d/f*.js (easylistchina.txt: 1824) +.6vhao.com/d/f.*\.js +# ||6vhao.com/d/960.js (easylistchina.txt: 1823) +.6vhao.com/d/960\.js +# ||6vdy.com/d/f*.js (easylistchina.txt: 1822) +.6vdy.com/d/f.*\.js +# ||6vdy.com/d/960.js (easylistchina.txt: 1821) +.6vdy.com/d/960\.js +# ||6park.com^$subdocument (easylistchina.txt: 1820) +.6park.com +# ||6park.com/wap/ (easylistchina.txt: 1819) +.6park.com/wap/ +# ||6park.com/parks/$script (easylistchina.txt: 1818) +.6park.com/parks/ +# ||6park.com/news/$script (easylistchina.txt: 1817) +.6park.com/news/ +# ||6park.com/img/15.png (easylistchina.txt: 1816) +.6park.com/img/15\.png +# ||6ddd.com/js/myfiles/down_ (easylistchina.txt: 1815) +.6ddd.com/js/myfiles/down_ +# ||6ddd.com/js/myfiles/banner.js (easylistchina.txt: 1814) +.6ddd.com/js/myfiles/banner\.js +# ||6d245gxt.52pk.com^ (easylistchina.txt: 1813) +.6d245gxt.52pk.com +# ||69nh.com/detail/player_ (easylistchina.txt: 1812) +.69nh.com/detail/player_ +# ||6949.com/ggs_ (easylistchina.txt: 1811) +.6949.com/ggs_ +# ||6949.com/640x44.htm (easylistchina.txt: 1810) +.6949.com/640x44\.htm +# ||69.30.217.155^*.png (easylistchina.txt: 1809) +.69.30.217.155/.*\.png +# ||68design.net/inc/news. (easylistchina.txt: 1808) +.68design.net/inc/news\. +# ||676000.com/001.htm (easylistchina.txt: 1807) +.676000.com/001\.htm +# ||67.159.44.187/js/v1.js (easylistchina.txt: 1806) +.67.159.44.187/js/v1\.js +# ||66ys.cc/d/$script (easylistchina.txt: 1805) +.66ys.cc/d/ +# ||66xinxin.com/js/ads888/ (easylistchina.txt: 1804) +.66xinxin.com/js/ads888/ +# ||66wz.com/data/attachment/portal/ (easylistchina.txt: 1803) +.66wz.com/data/attachment/portal/ +# ||66wz.com/adv2/ (easylistchina.txt: 1802) +.66wz.com/adv2/ +# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina.txt: 1801) +.66wz.com/48aa9454edd446fbef0df9e9aa5997f4\.gif +# ||66rd.cn^*96060 (easylistchina.txt: 1800) +.66rd.cn/.*96060 +# ||66rd.cn^*120250. (easylistchina.txt: 1799) +.66rd.cn/.*120250\. +# ||66rd.cn^*100060. (easylistchina.txt: 1798) +.66rd.cn/.*100060\. +# ||66rd.cn^*1000300. (easylistchina.txt: 1797) +.66rd.cn/.*1000300\. +# ||66rd.cn/pic/rdwmh800.gif (easylistchina.txt: 1796) +.66rd.cn/pic/rdwmh800\.gif +# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina.txt: 1795) +.66rd.cn/pic/rdrccs2014\.jpg +# ||66rd.cn/pic/itv130.jpg (easylistchina.txt: 1794) +.66rd.cn/pic/itv130\.jpg +# ||66rd.cn/pic/*1000. (easylistchina.txt: 1793) +.66rd.cn/pic/.*1000\. +# ||66rd.cn/js/foot.js (easylistchina.txt: 1792) +.66rd.cn/js/foot\.js +# ||66ip.cn/klz/953X164.gif (easylistchina.txt: 1791) +.66ip.cn/klz/953X164\.gif +# ||66ip.cn/common/img/yaoyao.jpg (easylistchina.txt: 1790) +.66ip.cn/common/img/yaoyao\.jpg +# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina.txt: 1789) +.66hbo.com/images/new1/uploads/index_banner/.*\.jpg +# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina.txt: 1788) +.66hbo.com/images/new1/uploads/index_banner/.*\.gif +# ||66e.cc/d/$script (easylistchina.txt: 1787) +.66e.cc/d/ +# ||666pan.com/666a/ (easylistchina.txt: 1786) +.666pan.com/666a/ +# ||6665432.com^*.gif (easylistchina.txt: 1785) +.6665432.com/.*\.gif +# ||66384.com/templets/SWFad (easylistchina.txt: 1784) +.66384.com/templets/SWFad +# ||66384.com/templets/js/stats.js (easylistchina.txt: 1783) +.66384.com/templets/js/stats\.js +# ||6620070.com/js/ (easylistchina.txt: 1782) +.6620070.com/js/ +# ||66.fmx.cn/js/ (easylistchina.txt: 1781) +.66.fmx.cn/js/ +# ||654mmm.com^ (easylistchina.txt: 1780) +.654mmm.com +# ||62422.cn/js/inc/13.swf (easylistchina.txt: 1779) +.62422.cn/js/inc/13\.swf +# ||62422.cn/ggimg/ (easylistchina.txt: 1778) +.62422.cn/ggimg/ +# ||61.235.249.195^*/Default.aspx?id= (easylistchina.txt: 1777) +.61.235.249.195/.*/Default\.aspx\?id= +# ||61.164.108.184^*.swf (easylistchina.txt: 1776) +.61.164.108.184/.*\.swf +# ||61.164.108.184^*.gif (easylistchina.txt: 1775) +.61.164.108.184/.*\.gif +# ||61.164.108.104:4275/*.gif (easylistchina.txt: 1774) +.61.164.108.104:4275/.*\.gif +# ||61.147.92.251:81/120x160.asp (easylistchina.txt: 1773) +.61.147.92.251:81/120x160\.asp +# ||61.143.225.176:818/nowscore/ (easylistchina.txt: 1772) +.61.143.225.176:818/nowscore/ +# ||60808.org/a/*.jpg (easylistchina.txt: 1771) +.60808.org/a/.*\.jpg +# ||600km.com/template/*/ad/ (easylistchina.txt: 1770) +.600km.com/template/.*/ad/ +# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina.txt: 1769) +.600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ +# ||6.gy/wp-content/uploads/*/ad (easylistchina.txt: 1768) +.6.gy/wp-content/uploads/.*/ad +# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina.txt: 1767) +.6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40\.jpg +# ||6.cn/coop/pub/getRand.php? (easylistchina.txt: 1766) +.6.cn/coop/pub/getRand\.php\? +# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina.txt: 1765) +.6.cn/coop/pub/getMiniPage\.php\?src= +# ||5ydj.com/js/shop.js (easylistchina.txt: 1764) +.5ydj.com/js/shop\.js +# ||5ydj.com/js/hometj.js (easylistchina.txt: 1763) +.5ydj.com/js/hometj\.js +# ||5ydj.com/images/banner/ (easylistchina.txt: 1762) +.5ydj.com/images/banner/ +# ||5y9nfpes.52pk.com^ (easylistchina.txt: 1761) +.5y9nfpes.52pk.com +# ||5vdd.com/opear.jpg (easylistchina.txt: 1760) +.5vdd.com/opear\.jpg +# ||5vdd.com/iqiyi.jpg (easylistchina.txt: 1759) +.5vdd.com/iqiyi\.jpg +# ||5vdd.com/ie.gif (easylistchina.txt: 1758) +.5vdd.com/ie\.gif +# ||5vdd.com/2345ws.jpg (easylistchina.txt: 1757) +.5vdd.com/2345ws\.jpg +# ||5tps.com/js/bo_al.js (easylistchina.txt: 1756) +.5tps.com/js/bo_al\.js +# ||5tps.com/js/al_ (easylistchina.txt: 1755) +.5tps.com/js/al_ +# ||5moe.com/player/ad.xml (easylistchina.txt: 1754) +.5moe.com/player/ad\.xml +# ||5iyq.com/skin/default/js/topad (easylistchina.txt: 1753) +.5iyq.com/skin/default/js/topad +# ||5ips.net/love/ (easylistchina.txt: 1752) +.5ips.net/love/ +# ||5imx.com/BBS/image/img/ (easylistchina.txt: 1751) +.5imx.com/BBS/image/img/ +# ||5imx.com/BBS/image/image/ (easylistchina.txt: 1750) +.5imx.com/BBS/image/image/ +# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina.txt: 1749) +.5imx.com/BBS/data/attachment/common/news/ +# ||5ilog.com/qq/js/jsgg.js (easylistchina.txt: 1748) +.5ilog.com/qq/js/jsgg\.js +# ||5icool.org/uploadfile/poster/1080x60. (easylistchina.txt: 1747) +.5icool.org/uploadfile/poster/1080x60\. +# ||5i.com/include/js/ad_ (easylistchina.txt: 1746) +.5i.com/include/js/ad_ +# ||5i.com/images/5ibbtangct.js (easylistchina.txt: 1745) +.5i.com/images/5ibbtangct\.js +# ||5dmail.net/js/ (easylistchina.txt: 1744) +.5dmail.net/js/ +# ||5dmail.net/image/ORF_1000.gif (easylistchina.txt: 1743) +.5dmail.net/image/ORF_1000\.gif +# ||5dmail.net/image/ad_ (easylistchina.txt: 1742) +.5dmail.net/image/ad_ +# ||5dmail.net/image/$object (easylistchina.txt: 1741) +.5dmail.net/image/ +# ||5adm.net/79070.gif (easylistchina.txt: 1740) +.5adm.net/79070\.gif +# ||5944.net/source/css/images/ad_ (easylistchina.txt: 1739) +.5944.net/source/css/images/ad_ +# ||592siwa.com/tools/ (easylistchina.txt: 1738) +.592siwa.com/tools/ +# ||591hx.com/zyrk_dy/gwjl.html (easylistchina.txt: 1737) +.591hx.com/zyrk_dy/gwjl\.html +# ||591hx.com/lunbo/ (easylistchina.txt: 1736) +.591hx.com/lunbo/ +# ||591hx.com/js/floatbox.js (easylistchina.txt: 1735) +.591hx.com/js/floatbox\.js +# ||591hx.com/js/dll.js (easylistchina.txt: 1734) +.591hx.com/js/dll\.js +# ||591hx.com/images/0000.jpg (easylistchina.txt: 1733) +.591hx.com/images/0000\.jpg +# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina.txt: 1732) +.59.36.101.209:888/link/vc_280x192\.gif +# ||58cdn.com.cn/ds/tgbrand/ (easylistchina.txt: 1731) +.58cdn.com.cn/ds/tgbrand/ +# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina.txt: 1730) +# ||58.com/ui7/*banner_ (easylistchina.txt: 1729) +.58.com/ui7/.*banner_ +# ||58.com/show/ads? (easylistchina.txt: 1728) +.58.com/show/ads\? +# ||58.com/ds/tgbrand/ (easylistchina.txt: 1727) +.58.com/ds/tgbrand/ +# ||58.com/ds/jinrong/ban/ (easylistchina.txt: 1726) +.58.com/ds/jinrong/ban/ +# ||576tv.com/Scripts/home.js (easylistchina.txt: 1725) +.576tv.com/Scripts/home\.js +# ||56img.com^*/search-engine-promotion.js (easylistchina.txt: 1724) +.56img.com/.*/search-engine-promotion\.js +# ||56img.com^*/baidu-promotion.js (easylistchina.txt: 1723) +.56img.com/.*/baidu-promotion\.js +# ||56ads.com/js/main.js (easylistchina.txt: 1722) +.56ads.com/js/main\.js +# ||56.com/js/promo/ (easylistchina.txt: 1721) +.56.com/js/promo/ +# ||55music.net/dazhe.jpg (easylistchina.txt: 1720) +.55music.net/dazhe\.jpg +# ||55aaee.com/detail/ (easylistchina.txt: 1719) +.55aaee.com/detail/ +# ||55125.cn/ggclass/ (easylistchina.txt: 1718) +.55125.cn/ggclass/ +# ||54new.com/da/ (easylistchina.txt: 1716) +.54new.com/da/ +# ||543et.com/detail/ (easylistchina.txt: 1715) +.543et.com/detail/ +# ||5399.com/poster_js/ (easylistchina.txt: 1714) +.5399.com/poster_js/ +# ||52zy.com/other/js/ (easylistchina.txt: 1713) +.52zy.com/other/js/ +# ||52wmb.com/2014js/GG_ (easylistchina.txt: 1712) +.52wmb.com/2014js/GG_ +# ||52waha.com/static/js/function_bbs.js (easylistchina.txt: 1711) +.52waha.com/static/js/function_bbs\.js +# ||52verycd.com/9241505.gif (easylistchina.txt: 1710) +.52verycd.com/9241505\.gif +# ||52tian.net/qq/ (easylistchina.txt: 1709) +.52tian.net/qq/ +# ||52solution.com/js/duilian-bbs.js (easylistchina.txt: 1708) +.52solution.com/js/duilian-bbs\.js +# ||52rd.com/Pic2/*_600_60. (easylistchina.txt: 1707) +.52rd.com/Pic2/.*_600_60\. +# ||52rd.com/Pic/Click/ (easylistchina.txt: 1706) +.52rd.com/Pic/Click/ +# ||52pk.com/jkjs/imp- (easylistchina.txt: 1705) +.52pk.com/jkjs/imp- +# ||52kdm.com/static/52kdm/m/ (easylistchina.txt: 1704) +.52kdm.com/static/52kdm/m/ +# ||52jt.net/images/banner_taozhuang.jpg (easylistchina.txt: 1703) +.52jt.net/images/banner_taozhuang\.jpg +# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina.txt: 1702) +.52jifenbao.net/wp-content/uploads/2014/04/xinren\.jpg +# ||52hardware.com/topic/a2 (easylistchina.txt: 1701) +.52hardware.com/topic/a2 +# ||52hardware.com/images/baimg/ (easylistchina.txt: 1700) +.52hardware.com/images/baimg/ +# ||52fanquan.com/index.php?i= (easylistchina.txt: 1699) +.52fanquan.com/index\.php\?i= +# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina.txt: 1698) +.52che.com/NewLocal/TemplateHtml/headflash1_ +# ||52che.com/Inc/FooterComm_ (easylistchina.txt: 1697) +.52che.com/Inc/FooterComm_ +# ||52ch.net/data/attachment/portal/ (easylistchina.txt: 1696) +.52ch.net/data/attachment/portal/ +# ||52ch.net/data/advimg/ (easylistchina.txt: 1695) +.52ch.net/data/advimg/ +# ||521000.com/com/BBS_AD. (easylistchina.txt: 1694) +.521000.com/com/BBS_AD\. +# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina.txt: 1693) +.521000.com/bbs/inc/Dv_Adv\.js +# ||520rr.com*/baidu/ (easylistchina.txt: 1692) +.520rr.com*./(.*/)?baidu/ +# ||520kankan.com/960x80.gif (easylistchina.txt: 1691) +.520kankan.com/960x80\.gif +# ||520bdy.com/images/888.jpg (easylistchina.txt: 1690) +.520bdy.com/images/888\.jpg +# ||51zxw.net/images/zhaopin.jpg (easylistchina.txt: 1689) +.51zxw.net/images/zhaopin\.jpg +# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina.txt: 1688) +.51zxw.net/fzsplayer/adtextzxw\.asp\? +# ||51zxw.net/adad/ (easylistchina.txt: 1687) +.51zxw.net/adad/ +# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina.txt: 1686) +.51ztzj.com/res/web/img/pic/inshow\.jpg +# ||51ztzj.com/res/web/img/download_sign (easylistchina.txt: 1685) +.51ztzj.com/res/web/img/download_sign +# ||51ztzj.com/js/you.js (easylistchina.txt: 1684) +.51ztzj.com/js/you\.js +# ||51xxs.com/users/public/*.swf (easylistchina.txt: 1683) +.51xxs.com/users/public/.*\.swf +# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina.txt: 1682) +.51xuediannao.com/plus/mytag_js\.php\?aid= +# ||51wan.com/web/v1/index/images/spec/ (easylistchina.txt: 1681) +.51wan.com/web/v1/index/images/spec/ +# ||51wan.com/img/js/xyadjs_ (easylistchina.txt: 1680) +.51wan.com/img/js/xyadjs_ +# ||51testing.com/imagesnew/indextop.jpg (easylistchina.txt: 1679) +.51testing.com/imagesnew/indextop\.jpg +# ||51testing.com/imagesnew/960x101.jpg (easylistchina.txt: 1678) +.51testing.com/imagesnew/960x101\.jpg +# ||51testing.com/imagesnew/642x53.gif (easylistchina.txt: 1677) +.51testing.com/imagesnew/642x53\.gif +# ||51testing.com/imagesnew/307x90.gif (easylistchina.txt: 1676) +.51testing.com/imagesnew/307x90\.gif +# ||51testing.com/imagesnew/*.swf (easylistchina.txt: 1675) +.51testing.com/imagesnew/.*\.swf +# ||51testing.com/images/sz51com.swf (easylistchina.txt: 1674) +.51testing.com/images/sz51com\.swf +# ||51test.net/js_new/baidu/ (easylistchina.txt: 1673) +.51test.net/js_new/baidu/ +# ||51test.net/js_new/*_right_middle.js (easylistchina.txt: 1672) +.51test.net/js_new/.*_right_middle\.js +# ||51test.net/js_new/*_content_up.js (easylistchina.txt: 1671) +.51test.net/js_new/.*_content_up\.js +# ||51test.net/js_new/*_content_down.js (easylistchina.txt: 1670) +.51test.net/js_new/.*_content_down\.js +# ||51test.net/js_new/*_banner.js (easylistchina.txt: 1669) +.51test.net/js_new/.*_banner\.js +# ||51test.net/baiduunion/ (easylistchina.txt: 1668) +.51test.net/baiduunion/ +# ||51t.com^$subdocument (easylistchina.txt: 1667) +.51t.com +# ||51ou.com/images/taoping (easylistchina.txt: 1666) +.51ou.com/images/taoping +# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina.txt: 1665) +.51netu.com.cn/index\.php/index/advShow\?adpid= +# ||51img.ajiang.net^*.gif (easylistchina.txt: 1663) +.51img.ajiang.net/.*\.gif +# ||51hanhua.com/2013/ (easylistchina.txt: 1662) +.51hanhua.com/2013/ +# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina.txt: 1661) +.51gugu.com/popwin/AutoHAdShow\.aspx +# ||51gaojian.com/js/tj.js (easylistchina.txt: 1660) +.51gaojian.com/js/tj\.js +# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina.txt: 1659) +.51fanli.net/misc/images/invite-v4/banner\.gif +# ||51cto.com/js/blog_top_list.php (easylistchina.txt: 1658) +.51cto.com/js/blog_top_list\.php +# ||51credit.com/credit/images/*/xyb (easylistchina.txt: 1657) +.51credit.com/credit/images/.*/xyb +# ||51bczx.com/js/float.js (easylistchina.txt: 1656) +.51bczx.com/js/float\.js +# ||51bczx.com/img/51bczx/ (easylistchina.txt: 1655) +.51bczx.com/img/51bczx/ +# ||51bczx.com/attachment/Mon_ (easylistchina.txt: 1654) +.51bczx.com/attachment/Mon_ +# ||51ape.com/d/js/ (easylistchina.txt: 1653) +.51ape.com/d/js/ +# ||5185.cc/forum/*.gif (easylistchina.txt: 1652) +.5185.cc/forum/.*\.gif +# ||5184.com/gk2014/ebuy (easylistchina.txt: 1651) +.5184.com/gk2014/ebuy +# ||5184.com/gk2014/*_315. (easylistchina.txt: 1650) +.5184.com/gk2014/.*_315\. +# ||5184.com/gk20*_240. (easylistchina.txt: 1649) +.5184.com/gk20.*_240\. +# ||5184.com/container/html/news_view_gg (easylistchina.txt: 1648) +.5184.com/container/html/news_view_gg +# ||51688.cc/ya/ (easylistchina.txt: 1647) +.51688.cc/ya/ +# ||512ms.com/js/index_ggw_show.js (easylistchina.txt: 1646) +.512ms.com/js/index_ggw_show\.js +# ||51.com/up/bdfmt/ (easylistchina.txt: 1645) +.51.com/up/bdfmt/ +# ||506ys.com/js/200.js (easylistchina.txt: 1644) +.506ys.com/js/200\.js +# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina.txt: 1643) +.5068.com/uploads/allimg/150116/71_150116175734_1\.jpg +# ||5011.net/template/images/*0.gif (easylistchina.txt: 1642) +.5011.net/template/images/.*0\.gif +# ||500xxxx.com/go.js (easylistchina.txt: 1641) +.500xxxx.com/go\.js +# ||50.7.31.230/ads_ (easylistchina.txt: 1640) +.50.7.31.230/ads_ +# ||4kong.com/xk.jpg (easylistchina.txt: 1639) +.4kong.com/xk\.jpg +# ||46g.cn/images/top.gif (easylistchina.txt: 1638) +.46g.cn/images/top\.gif +# ||464mnk.com/templets/new/static/js/common.js (easylistchina.txt: 1637) +.464mnk.com/templets/new/static/js/common\.js +# ||44921.cn/ajsv1/flashad_ (easylistchina.txt: 1636) +.44921.cn/ajsv1/flashad_ +# ||4399.com/loadimg/loading.htm (easylistchina.txt: 1635) +.4399.com/loadimg/loading\.htm +# ||4399.com/loadimg/iframe_ (easylistchina.txt: 1634) +.4399.com/loadimg/iframe_ +# ||4399.com/expire1day/ (easylistchina.txt: 1633) +.4399.com/expire1day/ +# ||4399.com/baiduad/ (easylistchina.txt: 1632) +.4399.com/baiduad/ +# ||40wan.com/js/www2/ (easylistchina.txt: 1631) +.40wan.com/js/www2/ +# ||40407.com/templets/default/images/index.js (easylistchina.txt: 1630) +.40407.com/templets/default/images/index\.js +# ||40407.com/plus_rpad_ (easylistchina.txt: 1629) +.40407.com/plus_rpad_ +# ||40407.com/plus/rpad/ (easylistchina.txt: 1628) +.40407.com/plus/rpad/ +# ||40407.com/plus/pthc/zqdl.php? (easylistchina.txt: 1627) +.40407.com/plus/pthc/zqdl\.php\? +# ||4020.la/hi/ (easylistchina.txt: 1626) +.4020.la/hi/ +# ||400516.com/data/attachment/album/ (easylistchina.txt: 1625) +.400516.com/data/attachment/album/ +# ||3sjt.com/3sjtimg/ (easylistchina.txt: 1624) +.3sjt.com/3sjtimg/ +# ||3qdati.com/gg.gif (easylistchina.txt: 1623) +.3qdati.com/gg\.gif +# ||3qcc.com/js/bb.js (easylistchina.txt: 1622) +.3qcc.com/js/bb\.js +# ||3h3.com/js/show/ (easylistchina.txt: 1621) +.3h3.com/js/show/ +# ||3h3.com/js/listad.js (easylistchina.txt: 1620) +.3h3.com/js/listad\.js +# ||3h3.com/js/homepage.js (easylistchina.txt: 1619) +.3h3.com/js/homepage\.js +# ||3g.cn/js/noblockme/ (easylistchina.txt: 1618) +.3g.cn/js/noblockme/ +# ||3dm.huya.com^ (easylistchina.txt: 1617) +.3dm.huya.com +# ||3dezu.cn/zt/8866.gif (easylistchina.txt: 1616) +.3dezu.cn/zt/8866\.gif +# ||3d66.com/gx2013g/ (easylistchina.txt: 1615) +.3d66.com/gx2013g/ +# ||3d66.com/gg-swf/ (easylistchina.txt: 1614) +.3d66.com/gg-swf/ +# ||3boys2girls.com^$subdocument (easylistchina.txt: 1613) +.3boys2girls.com +# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina.txt: 1612) +.3boys2girls.com/templates/default/2013/life/160b5\.js +# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina.txt: 1611) +.3boys2girls.com/newfile/image2010/banner_housead_ +# ||3987.com/images/ (easylistchina.txt: 1610) +.3987.com/images/ +# ||39.net/rel/k13.php?adid= (easylistchina.txt: 1609) +.39.net/rel/k13\.php\?adid= +# ||39.net/js/google/ (easylistchina.txt: 1608) +.39.net/js/google/ +# ||39.net/js/baidu/ (easylistchina.txt: 1607) +.39.net/js/baidu/ +# ||39.net/creative/ (easylistchina.txt: 1606) +.39.net/creative/ +# ||39.net/client/39/c.js (easylistchina.txt: 1605) +.39.net/client/39/c\.js +# ||38v.com/38v-b.gif (easylistchina.txt: 1604) +.38v.com/38v-b\.gif +# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina.txt: 1603) +.36tv.cn/statics/images/jinhuatv/ad +# ||36tv.cn/ad_pic/ (easylistchina.txt: 1602) +.36tv.cn/ad_pic/ +# ||36dm.com/js/nu (easylistchina.txt: 1601) +.36dm.com/js/nu +# ||36dm.com/images/*acgsou.gif (easylistchina.txt: 1600) +.36dm.com/images/.*acgsou\.gif +# ||365xs.org/js/xiayizhang.js (easylistchina.txt: 1599) +.365xs.org/js/xiayizhang\.js +# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina.txt: 1598) +.365kl.net/template/eis_x3_city_a_1/eis/baobao\.gif +# ||3634.com/qq/ (easylistchina.txt: 1597) +.3634.com/qq/ +# ||360safego.com^ (easylistchina.txt: 1596) +.360safego.com +# ||360kan.com/special/iframe/ (easylistchina.txt: 1595) +.360kan.com/special/iframe/ +# ||360bo.cc/js/float.js (easylistchina.txt: 1594) +.360bo.cc/js/float\.js +# ||360.cn/index/showjokes?callback= (easylistchina.txt: 1593) +.360.cn/index/showjokes\?callback= +# ||360.cn/festival_zone.html (easylistchina.txt: 1592) +.360.cn/festival_zone\.html +# ||360-bo.com/js/float2.js (easylistchina.txt: 1591) +.360-bo.com/js/float2\.js +# ||360-bo.com/js/float.js (easylistchina.txt: 1590) +.360-bo.com/js/float\.js +# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina.txt: 1589) +.356ys.com/template/tieniudy/images/g_js/ +# ||3520.cc/js/3520/ (easylistchina.txt: 1588) +.3520.cc/js/3520/ +# ||3464.com/Script/RightWindows.js (easylistchina.txt: 1587) +.3464.com/Script/RightWindows\.js +# ||33xs.com/js/mg (easylistchina.txt: 1586) +.33xs.com/js/mg +# ||33xs.com/js/g (easylistchina.txt: 1585) +.33xs.com/js/g +# ||33xs.com/js/d.js (easylistchina.txt: 1584) +.33xs.com/js/d\.js +# ||33xs.com/hot/ (easylistchina.txt: 1583) +.33xs.com/hot/ +# ||33lc.com/lvcha/jquery.gotop.js (easylistchina.txt: 1582) +.33lc.com/lvcha/jquery\.gotop\.js +# ||33av.net/Uploads/ad/ (easylistchina.txt: 1581) +.33av.net/Uploads/ad/ +# ||3399.com/Common/OnlineServer.html (easylistchina.txt: 1580) +.3399.com/Common/OnlineServer\.html +# ||3399.com/act/fk/ (easylistchina.txt: 1579) +.3399.com/act/fk/ +# ||3399.com/act/5599/js/kuang (easylistchina.txt: 1578) +.3399.com/act/5599/js/kuang +# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina.txt: 1577) +.33.autoimg.cn/t/Adhtmlnet/.*\.swf +# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina.txt: 1576) +.33.autoimg.cn/t/Adhtmlnet/.*\.jpg +# ||33.autoimg.cn/homeurl/*.js (easylistchina.txt: 1575) +.33.autoimg.cn/homeurl/.*\.js +# ||33.autohome.com.cn^$object,script (easylistchina.txt: 1574) +.33.autohome.com.cn +# ||32666.com/img/ (easylistchina.txt: 1573) +.32666.com/img/ +# ||32666.com/ads/ (easylistchina.txt: 1572) +.32666.com/ads/ +# ||324324.cn/zz/ (easylistchina.txt: 1571) +.324324.cn/zz/ +# ||3199.cn/ggs_ (easylistchina.txt: 1570) +.3199.cn/ggs_ +# ||315che.com/upload_img/aimg/ (easylistchina.txt: 1569) +.315che.com/upload_img/aimg/ +# ||315che.com/addata/ (easylistchina.txt: 1568) +.315che.com/addata/ +# ||3155.com/js/ifile (easylistchina.txt: 1567) +.3155.com/js/ifile +# ||310v.com/js/f2.js.js (easylistchina.txt: 1566) +.310v.com/js/f2\.js\.js +# ||310v.com/images/wap_520x60.gif (easylistchina.txt: 1565) +.310v.com/images/wap_520x60\.gif +# ||310v.com/images/tmp_adpic (easylistchina.txt: 1564) +.310v.com/images/tmp_adpic +# ||310v.com/images/lingdai.gif (easylistchina.txt: 1563) +.310v.com/images/lingdai\.gif +# ||310v.com/adh.js (easylistchina.txt: 1562) +.310v.com/adh\.js +# ||2zzt.com/images/ (easylistchina.txt: 1561) +.2zzt.com/images/ +# ||2ujj.com/js/bo.js (easylistchina.txt: 1560) +.2ujj.com/js/bo\.js +# ||2u.com.cn/js/2012_movie.js (easylistchina.txt: 1559) +.2u.com.cn/js/2012_movie\.js +# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina.txt: 1558) +.2u-img.com.cn/modules/38_module_images/4747\.jpg +# ||2muslim.com/data/attachment/portal/ (easylistchina.txt: 1557) +.2muslim.com/data/attachment/portal/ +# ||2chcn.com/img/3171150.jpg (easylistchina.txt: 1556) +.2chcn.com/img/3171150\.jpg +# ||2chcn.com/img/*336x280 (easylistchina.txt: 1555) +.2chcn.com/img/.*336x280 +# ||2ccc.com/images/WebXone.gif (easylistchina.txt: 1554) +.2ccc.com/images/WebXone\.gif +# ||2ccc.com/images/sino.gif (easylistchina.txt: 1553) +.2ccc.com/images/sino\.gif +# ||2ccc.com/images/show/ (easylistchina.txt: 1552) +.2ccc.com/images/show/ +# ||2btu.com/gg.jpg (easylistchina.txt: 1551) +.2btu.com/gg\.jpg +# ||28hse.com/adsman/www/images/ (easylistchina.txt: 1550) +.28hse.com/adsman/www/images/ +# ||27.255.67.120^ (easylistchina.txt: 1549) +.27.255.67.120 +# ||268de.com/js/ (easylistchina.txt: 1548) +.268de.com/js/ +# ||265.com/static/pages/img/*_ads. (easylistchina.txt: 1547) +.265.com/static/pages/img/.*_ads\. +# ||25xz.com/degeye.gif (easylistchina.txt: 1546) +.25xz.com/degeye\.gif +# ||25xz.com/ads/ (easylistchina.txt: 1545) +.25xz.com/ads/ +# ||258zb.com/jsData/users.aspx (easylistchina.txt: 1544) +.258zb.com/jsData/users\.aspx +# ||2500sz.com^*/655x60. (easylistchina.txt: 1543) +.2500sz.com/.*/655x60\. +# ||2500sz.com/site/ (easylistchina.txt: 1542) +.2500sz.com/site/ +# ||2500sz.com/ad20 (easylistchina.txt: 1541) +.2500sz.com/ad20 +# ||23zw.com/sda/mediav.html (easylistchina.txt: 1540) +.23zw.com/sda/mediav\.html +# ||23youku.com/Runtime/js/ (easylistchina.txt: 1539) +.23youku.com/Runtime/js/ +# ||23wx.com/scripts/style_tan.js (easylistchina.txt: 1538) +.23wx.com/scripts/style_tan\.js +# ||23sc.cn*/007/js/$script (easylistchina.txt: 1537) +.23sc.cn*./(.*/)?007/js/ +# ||2345.com/xiaoimg/swf/flash/ (easylistchina.txt: 1536) +.2345.com/xiaoimg/swf/flash/ +# ||2345.com/right/site/like/gul_default.js (easylistchina.txt: 1535) +.2345.com/right/site/like/gul_default\.js +# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina.txt: 1534) +.2345.com/jifenimg/img/common/logo\.png +# ||2345.com/images/tgPic/gameTmp- (easylistchina.txt: 1533) +.2345.com/images/tgPic/gameTmp- +# ||2345.com/duoteimg/duotehtml/ (easylistchina.txt: 1532) +.2345.com/duoteimg/duotehtml/ +# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina.txt: 1531) +.2345.com/dianyingimg/tv/ivy/taobao/ +# ||2345.com/dianyingimg/ads/ (easylistchina.txt: 1530) +.2345.com/dianyingimg/ads/ +# ||2345.com/data/part/part_*_bottom (easylistchina.txt: 1529) +.2345.com/data/part/part_.*_bottom +# ||2345.com/data/part/part_*_bann (easylistchina.txt: 1528) +.2345.com/data/part/part_.*_bann +# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina.txt: 1527) +.2300sjz.com/liv_loadfile/folder81/fold +# ||22mt.la/bookpic/00*.jpg (easylistchina.txt: 1526) +.22mt.la/bookpic/00.*\.jpg +# ||2258.com/new_static/*/ad/ (easylistchina.txt: 1525) +.2258.com/new_static/.*/ad/ +# ||2233777.com/bak/ad/ (easylistchina.txt: 1524) +.2233777.com/bak/ad/ +# ||222.47.26.21/m.js (easylistchina.txt: 1523) +.222.47.26.21/m\.js +# ||222.45.224.77^*.js (easylistchina.txt: 1522) +.222.45.224.77/.*\.js +# ||222.33.59.55/show.js (easylistchina.txt: 1521) +.222.33.59.55/show\.js +# ||221.5.69.52^*.js (easylistchina.txt: 1520) +.221.5.69.52/.*\.js +# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina.txt: 1519) +.2200book.com/themes/v2/images/frxz_tonglan\.gif +# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina.txt: 1518) +.2200book.com/configs/article/pagebottom1yc\.js +# ||21yq.com/mg/21yq/ (easylistchina.txt: 1517) +.21yq.com/mg/21yq/ +# ||21uscity.com/zonelist.php (easylistchina.txt: 1516) +.21uscity.com/zonelist\.php +# ||21edu8.com/js/mymoney/ (easylistchina.txt: 1515) +.21edu8.com/js/mymoney/ +# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina.txt: 1514) +.21cnimg.com/zt/she/2015/shetext/she\.jpg +# ||219.238.159.182^*.html (easylistchina.txt: 1513) +.219.238.159.182/.*\.html +# ||219.238.159.181^*.html (easylistchina.txt: 1512) +.219.238.159.181/.*\.html +# ||219.153.41.175/*.js (easylistchina.txt: 1511) +.219.153.41.175/.*\.js +# ||219.153.41.154/v1/ (easylistchina.txt: 1510) +.219.153.41.154/v1/ +# ||21394.com/weizi.js (easylistchina.txt: 1509) +.21394.com/weizi\.js +# ||211600.com/images/portal/ (easylistchina.txt: 1508) +.211600.com/images/portal/ +# ||211600.com/data/attachment/portal/ (easylistchina.txt: 1507) +.211600.com/data/attachment/portal/ +# ||204.12.228.236^*.png (easylistchina.txt: 1506) +.204.12.228.236/.*\.png +# ||204.12.228.235^*.png (easylistchina.txt: 1505) +.204.12.228.235/.*\.png +# ||201*.myhard.com^ (easylistchina.txt: 1504) +.201*./.*\.myhard\.com[^\w%.-] +.201*.myhard.com +# ||201*.073img.com^ (easylistchina.txt: 1503) +.201*./.*\.073img\.com[^\w%.-] +.201*.073img.com +# ||2008xxx.com:888 (easylistchina.txt: 1502) +.2008xxx.com:888*. +# ||1pad.cn/ahead/01.gif (easylistchina.txt: 1501) +.1pad.cn/ahead/01\.gif +# ||1m1m.cn/bar/ (easylistchina.txt: 1500) +.1m1m.cn/bar/ +# ||1kejian.com/js/topA.js (easylistchina.txt: 1499) +.1kejian.com/js/topA\.js +# ||1fun.com.hk/bb/189X180B.swf (easylistchina.txt: 1498) +.1fun.com.hk/bb/189X180B\.swf +# ||1dot.cn/spider/1dotAd.php (easylistchina.txt: 1497) +.1dot.cn/spider/1dotAd\.php +# ||19iiii.info/js/tonglan.js (easylistchina.txt: 1496) +.19iiii.info/js/tonglan\.js +# ||19iiii.info/js/foot.js (easylistchina.txt: 1495) +.19iiii.info/js/foot\.js +# ||19iiii.info/js/dl.js (easylistchina.txt: 1494) +.19iiii.info/js/dl\.js +# ||19iiii.info/js/dingbu.js (easylistchina.txt: 1493) +.19iiii.info/js/dingbu\.js +# ||198zone.com/images/*noad.jpg (easylistchina.txt: 1492) +.198zone.com/images/.*noad\.jpg +# ||198.40.56.242/ad/ (easylistchina.txt: 1491) +.198.40.56.242/ad/ +# ||198.40.52.11^ (easylistchina.txt: 1490) +.198.40.52.11 +# ||192.74.239.161/ad960.js (easylistchina.txt: 1489) +.192.74.239.161/ad960\.js +# ||18avday.*/aa/ (easylistchina.txt: 1488) +.18avday.*./(.*/)?aa/ +# ||189so.cn^$subdocument (easylistchina.txt: 1487) +.189so.cn +# ||189so.cn/pop.html (easylistchina.txt: 1486) +.189so.cn/pop\.html +# ||189so.cn/images/qz270x280.jpg (easylistchina.txt: 1485) +.189so.cn/images/qz270x280\.jpg +# ||189so.cn/images/960x60 (easylistchina.txt: 1484) +.189so.cn/images/960x60 +# ||189.cn/dns/ (easylistchina.txt: 1483) +.189.cn/dns/ +# ||18888.com^*/Mon_*.gif (easylistchina.txt: 1482) +.18888.com/.*/Mon_.*\.gif +# ||183yf.cn/img/nz.png (easylistchina.txt: 1481) +.183yf.cn/img/nz\.png +# ||183.136.168.78:8082/ad/ (easylistchina.txt: 1480) +.183.136.168.78:8082/ad/ +# ||182.92.234.239^*.html (easylistchina.txt: 1479) +.182.92.234.239/.*\.html +# ||180.96.27.85^*.htm (easylistchina.txt: 1478) +.180.96.27.85/.*\.htm +# ||17yy.com/style/ifra_ad/ (easylistchina.txt: 1477) +.17yy.com/style/ifra_ad/ +# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina.txt: 1476) +.17ok.com/focus/images/wenchouxiangmu\.gif +# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina.txt: 1475) +.17ok.com/focus/3j_right_jdt\.shtml +# ||17kqw.com/*.gif (easylistchina.txt: 1474) +.17kqw.com/.*\.gif +# ||17kk.cc/scriptAD/ (easylistchina.txt: 1473) +.17kk.cc/scriptAD/ +# ||17huohu.com/img/skin/qnh/ (easylistchina.txt: 1472) +.17huohu.com/img/skin/qnh/ +# ||17dm.com/s/common/js/*AD.js (easylistchina.txt: 1471) +.17dm.com/s/common/js/.*AD\.js +# ||17ce.com/118/t_banner.html (easylistchina.txt: 1470) +.17ce.com/118/t_banner\.html +# ||178.com/glr.js (easylistchina.txt: 1469) +.178.com/glr\.js +# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina.txt: 1468) +.178.com/dota/201409/205976017190/205976025825\.jpg +# ||17558.net/youdiancms.gif (easylistchina.txt: 1467) +.17558.net/youdiancms\.gif +# ||17558.net/daozeiyuanma1.gif (easylistchina.txt: 1466) +.17558.net/daozeiyuanma1\.gif +# ||174.123.15.43:8080 (easylistchina.txt: 1465) +.174.123.15.43:8080*. +# ||173kt.com/images/ad (easylistchina.txt: 1464) +.173kt.com/images/ad +# ||173kt.com/ads/ (easylistchina.txt: 1463) +.173kt.com/ads/ +# ||173.255.143.197^*.png (easylistchina.txt: 1462) +.173.255.143.197/.*\.png +# ||173.255.139.114^$subdocument (easylistchina.txt: 1461) +.173.255.139.114 +# ||173.208.177.227^*.gif (easylistchina.txt: 1460) +.173.208.177.227/.*\.gif +# ||173.208.177.227/tool/xuanfusige.js (easylistchina.txt: 1459) +.173.208.177.227/tool/xuanfusige\.js +# ||172.15.2.28:3438/*.js (easylistchina.txt: 1458) +.172.15.2.28:3438/.*\.js +# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina.txt: 1457) +.17173cdn.com/.*/flash/OnLineTime\.swf +# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina.txt: 1456) +.17173cdn.com/js/play/page/pThridPlayerAd\.js +# ||17173cdn.com/css/live/business (easylistchina.txt: 1455) +.17173cdn.com/css/live/business +# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina.txt: 1454) +.17173cdn.com/a/www/index/.*/js/ggcommon +# ||17173cdn.com/a/lib/vda/seed.js (easylistchina.txt: 1453) +.17173cdn.com/a/lib/vda/seed\.js +# ||17173.com/new/ (easylistchina.txt: 1452) +.17173.com/new/ +# ||17173.com/if/ (easylistchina.txt: 1451) +.17173.com/if/ +# ||17173.com/bd/ifm/allyes/ (easylistchina.txt: 1450) +.17173.com/bd/ifm/allyes/ +# ||17173.com/advideo/ (easylistchina.txt: 1449) +.17173.com/advideo/ +# ||17173.com/2013/new/channel-float.js (easylistchina.txt: 1448) +.17173.com/2013/new/channel-float\.js +# ||16sucai.com/images/46060_ (easylistchina.txt: 1447) +.16sucai.com/images/46060_ +# ||16sucai.com/ads/ (easylistchina.txt: 1446) +.16sucai.com/ads/ +# ||168gamer.com/static/js/cpa.js (easylistchina.txt: 1445) +.168gamer.com/static/js/cpa\.js +# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina.txt: 1444) +.168gamer.com/plugin\.php\?id=cstdio_ads: +# ||168gamer.com/apii.php?mod=js&bid= (easylistchina.txt: 1443) +.168gamer.com/apii\.php\?mod=js&bid= +# ||16888.com/ajax/loadcardata.php (easylistchina.txt: 1442) +.16888.com/ajax/loadcardata\.php +# ||1688.com.au/site1/1688ad/ (easylistchina.txt: 1441) +.1688.com.au/site1/1688ad/ +# ||1684.cc/js/1684/ (easylistchina.txt: 1440) +.1684.cc/js/1684/ +# ||168.it168.com^$script (easylistchina.txt: 1439) +.168.it168.com +# ||1677.net/js/gb*.js (easylistchina.txt: 1438) +.1677.net/js/gb.*\.js +# ||1677.net/js/cad*.js (easylistchina.txt: 1437) +.1677.net/js/cad.*\.js +# ||1677.net/js/ad*.js (easylistchina.txt: 1436) +.1677.net/js/ad.*\.js +# ||163disk.com/static/www/ (easylistchina.txt: 1435) +.163disk.com/static/www/ +# ||163disk.com/static/images/tu.gif (easylistchina.txt: 1434) +.163disk.com/static/images/tu\.gif +# ||163disk.com/static/images/DING.gif (easylistchina.txt: 1433) +.163disk.com/static/images/DING\.gif +# ||163disk.com/pic/960x90- (easylistchina.txt: 1432) +.163disk.com/pic/960x90- +# ||163.com/special/*_taobao. (easylistchina.txt: 1431) +.163.com/special/.*_taobao\. +# ||163.com/special/*_ad_ (easylistchina.txt: 1430) +.163.com/special/.*_ad_ +# ||163.com/special/*/topbg.js (easylistchina.txt: 1429) +.163.com/special/.*/topbg\.js +# ||163.com/special/*/tonglan1.js (easylistchina.txt: 1428) +.163.com/special/.*/tonglan1\.js +# ||163.com/special/*/ted_vad. (easylistchina.txt: 1427) +.163.com/special/.*/ted_vad\. +# ||163.com/special/*/scroolAd (easylistchina.txt: 1426) +.163.com/special/.*/scroolAd +# ||163.com/special/*/beitou.js (easylistchina.txt: 1425) +.163.com/special/.*/beitou\.js +# ||163.com/special/*/ace_downbig.js (easylistchina.txt: 1424) +.163.com/special/.*/ace_downbig\.js +# ||163.com/get.do?*=themeHandler. (easylistchina.txt: 1422) +.163.com/get\.do\?.*=themeHandler\. +# ||162wp.com/ipc/11.gif (easylistchina.txt: 1421) +.162wp.com/ipc/11\.gif +# ||162wp.com/e/data/images/pixviewer.swf (easylistchina.txt: 1420) +.162wp.com/e/data/images/pixviewer\.swf +# ||1616.net/jd/i_ (easylistchina.txt: 1419) +.1616.net/jd/i_ +# ||1616.net/jd/data/index/indexad.json (easylistchina.txt: 1418) +.1616.net/jd/data/index/indexad\.json +# ||15w.com/pages/adlive. (easylistchina.txt: 1417) +.15w.com/pages/adlive\. +# ||15w.com/flash/ (easylistchina.txt: 1416) +.15w.com/flash/ +# ||15w.com/call/webjs/60.js (easylistchina.txt: 1415) +.15w.com/call/webjs/60\.js +# ||1518.com/ss/ (easylistchina.txt: 1414) +.1518.com/ss/ +# ||141h.com/data/attachment/noblock/cf/ (easylistchina.txt: 1413) +.141h.com/data/attachment/noblock/cf/ +# ||1382014.co/980X45.gif (easylistchina.txt: 1412) +.1382014.co/980X45\.gif +# ||135qp.com/sjzswf/banner.swf (easylistchina.txt: 1411) +.135qp.com/sjzswf/banner\.swf +# ||133uu.com/html/ (easylistchina.txt: 1410) +.133uu.com/html/ +# ||131458.com/union/ (easylistchina.txt: 1409) +.131458.com/union/ +# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina.txt: 1408) +.131.com/test2/2014/09/04/201409041715356f5\.jpg +# ||131.com/js/131InsideAD$script (easylistchina.txt: 1407) +.131.com/js/131InsideAD +# ||131.com/home/resouces/js/ (easylistchina.txt: 1406) +.131.com/home/resouces/js/ +# ||131.com/common/alertwindow.html (easylistchina.txt: 1405) +.131.com/common/alertwindow\.html +# ||127.net/m/*/promPic.jpg (easylistchina.txt: 1404) +.127.net/m/.*/promPic\.jpg +# ||127.net/external/js6promote (easylistchina.txt: 1403) +.127.net/external/js6promote +# ||126xz.com/www/all_guanggao.js (easylistchina.txt: 1402) +.126xz.com/www/all_guanggao\.js +# ||126disk.com/templates/mobile/2345t.png (easylistchina.txt: 1401) +.126disk.com/templates/mobile/2345t\.png +# ||126.net/house/sjz/xt/ (easylistchina.txt: 1400) +.126.net/house/sjz/xt/ +# ||126.net/house/sjz/flash/ (easylistchina.txt: 1399) +.126.net/house/sjz/flash/ +# ||126.net/house/sjz/*96070 (easylistchina.txt: 1398) +.126.net/house/sjz/.*96070 +# ||126.net/house/hrb/js/ (easylistchina.txt: 1397) +.126.net/house/hrb/js/ +# ||126.net/house/hrb/flash/*X (easylistchina.txt: 1396) +.126.net/house/hrb/flash/.*X +# ||126.net/house/hangzhou/ad/ (easylistchina.txt: 1395) +.126.net/house/hangzhou/ad/ +# ||126.net/house/chengdu/flash/*+ (easylistchina.txt: 1394) +.126.net/house/chengdu/flash/.*\+ +# ||126.com/get.do?*=themeHandler. (easylistchina.txt: 1393) +.126.com/get\.do\?.*=themeHandler\. +# ||125.46.61.28^ (easylistchina.txt: 1392) +.125.46.61.28 +# ||123cha.com/2568 (easylistchina.txt: 1391) +.123cha.com/2568 +# ||123564.com/js/plaza.js (easylistchina.txt: 1390) +.123564.com/js/plaza\.js +# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina.txt: 1389) +.123.sogou.com/nstatic/img/jiao\.swf +# ||122.228.236.165^ (easylistchina.txt: 1388) +.122.228.236.165 +# ||122.225.103.*.htm (easylistchina.txt: 1387) +.122.225.103.*./.*\.htm +.122.225.103.*.htm*. +# ||121zou.com^$subdocument (easylistchina.txt: 1386) +.121zou.com +# ||121down.com/img/*.js (easylistchina.txt: 1385) +.121down.com/img/.*\.js +# ||121.41.60.207/m?t= (easylistchina.txt: 1384) +.121.41.60.207/m\?t= +# ||121.40.136.114^*.htm (easylistchina.txt: 1383) +.121.40.136.114/.*\.htm +# ||120bo.com/ggimg/ (easylistchina.txt: 1382) +.120bo.com/ggimg/ +# ||120askimages.com/ask/js/*x.js (easylistchina.txt: 1381) +.120askimages.com/ask/js/.*x\.js +# ||120.27.34.156^ (easylistchina.txt: 1380) +.120.27.34.156 +# ||11hhww.com/java/xia1.js (easylistchina.txt: 1379) +.11hhww.com/java/xia1\.js +# ||11hhww.com/java/shang1.js (easylistchina.txt: 1378) +.11hhww.com/java/shang1\.js +# ||11hhww.com/java/cpm (easylistchina.txt: 1377) +.11hhww.com/java/cpm +# ||119xiazai.com^$subdocument (easylistchina.txt: 1376) +.119xiazai.com +# ||119g.com/fanwan1/dibubanner.js (easylistchina.txt: 1375) +.119g.com/fanwan1/dibubanner\.js +# ||119g.com/fanwan/ (easylistchina.txt: 1374) +.119g.com/fanwan/ +# ||119.167.73.60/m_code/ (easylistchina.txt: 1373) +.119.167.73.60/m_code/ +# ||115mm.com/js/ (easylistchina.txt: 1372) +.115mm.com/js/ +# ||115img.com/static/pc/d_127.html (easylistchina.txt: 1371) +.115img.com/static/pc/d_127\.html +# ||115.29.46.146^$subdocument (easylistchina.txt: 1370) +.115.29.46.146 +# ||115.29.141.121:8086/js/wp.js (easylistchina.txt: 1369) +.115.29.141.121:8086/js/wp\.js +# ||115.28.6.94:8090/js/s (easylistchina.txt: 1368) +.115.28.6.94:8090/js/s +# ||115.28.114.149^*_proxy. (easylistchina.txt: 1367) +.115.28.114.149/.*_proxy\. +# ||114so.cn^$subdocument (easylistchina.txt: 1366) +.114so.cn +# ||114so.cn/js/nm*.js (easylistchina.txt: 1365) +.114so.cn/js/nm.*\.js +# ||114fw.com/dagg/ (easylistchina.txt: 1364) +.114fw.com/dagg/ +# ||113.17.188.44/*.js (easylistchina.txt: 1363) +.113.17.188.44/.*\.js +# ||112.126.66.58^*?mid= (easylistchina.txt: 1362) +.112.126.66.58/.*\?mid= +# ||111cn.net/v8/fun.js (easylistchina.txt: 1361) +.111cn.net/v8/fun\.js +# ||111cn.net/js/v8/page_ (easylistchina.txt: 1360) +.111cn.net/js/v8/page_ +# ||111cn.net/js/v8/body (easylistchina.txt: 1359) +.111cn.net/js/v8/body +# ||111cn.net/js/v8/art_ (easylistchina.txt: 1358) +.111cn.net/js/v8/art_ +# ||111cn.net/js/downc*.js (easylistchina.txt: 1357) +.111cn.net/js/downc.*\.js +# ||111cn.net/images/v8/vip.jpg (easylistchina.txt: 1356) +.111cn.net/images/v8/vip\.jpg +# ||111cn.net/gg_ad/ (easylistchina.txt: 1355) +.111cn.net/gg_ad/ +# ||11.mydrivers.com/news/google468x60.js (easylistchina.txt: 1354) +.11.mydrivers.com/news/google468x60\.js +# ||11.mydrivers.com/news/03.js (easylistchina.txt: 1353) +.11.mydrivers.com/news/03\.js +# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina.txt: 1352) +.11.mydrivers.com/myfiles/myfiles100.*\.js +# ||11.mydrivers.com/myfiles/0*.js (easylistchina.txt: 1351) +.11.mydrivers.com/myfiles/0.*\.js +# ||11.mydrivers.com/drivers/ (easylistchina.txt: 1350) +.11.mydrivers.com/drivers/ +# ||10yan.com/mmm/ (easylistchina.txt: 1349) +.10yan.com/mmm/ +# ||10pan.cc/rili.gif (easylistchina.txt: 1348) +.10pan.cc/rili\.gif +# ||10pan.*/adblockTester/ (easylistchina.txt: 1347) +.10pan.*./(.*/)?adblockTester/ +# ||10jqka.com.cn/public/stock/red.html? (easylistchina.txt: 1346) +.10jqka.com.cn/public/stock/red\.html\? +# ||1080pba.com/templets/default/images/8.gif (easylistchina.txt: 1345) +.1080pba.com/templets/default/images/8\.gif +# ||1080pba.com/templets/default/images/4.gif (easylistchina.txt: 1344) +.1080pba.com/templets/default/images/4\.gif +# ||1080pba.com/templets/default/images/3.gif (easylistchina.txt: 1343) +.1080pba.com/templets/default/images/3\.gif +# ||1080pba.com/templets/default/images/2.gif (easylistchina.txt: 1342) +.1080pba.com/templets/default/images/2\.gif +# ||1080pba.com/templets/default/images/1.gif (easylistchina.txt: 1341) +.1080pba.com/templets/default/images/1\.gif +# ||1080pba.com/templets/default/images/02.gif (easylistchina.txt: 1340) +.1080pba.com/templets/default/images/02\.gif +# ||108.171.248.234^ (easylistchina.txt: 1339) +.108.171.248.234 +# ||107.182.131.103/cache/?q=/images/ (easylistchina.txt: 1338) +.107.182.131.103/cache/\?q=/images/ +# ||106.184.7.176/shuang11/ (easylistchina.txt: 1337) +.106.184.7.176/shuang11/ +# ||103.225.198.230:8080/index.html (easylistchina.txt: 1336) +.103.225.198.230:8080/index\.html +# ||102tv.cn/js/index_*.js (easylistchina.txt: 1335) +.102tv.cn/js/index_.*\.js +# ||102tv.cn/js/desktop.js (easylistchina.txt: 1334) +.102tv.cn/js/desktop\.js +# ||102tv.cn/js/ad*.js (easylistchina.txt: 1333) +.102tv.cn/js/ad.*\.js +# ||101.78.195.135/js/ (easylistchina.txt: 1332) +.101.78.195.135/js/ +# ||100ksw.com/ksbd/ksbdparad.js (easylistchina.txt: 1331) +.100ksw.com/ksbd/ksbdparad\.js +# ||100ksw.com/include/ksbdfd.js (easylistchina.txt: 1330) +.100ksw.com/include/ksbdfd\.js +# ||10000sb.com/4gbct.js (easylistchina.txt: 1329) +.10000sb.com/4gbct\.js +# ||0dian8.org/data/js/ (easylistchina.txt: 1328) +.0dian8.org/data/js/ +# ||07908.com/images/ (easylistchina.txt: 1327) +.07908.com/images/ +# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina.txt: 1326) +.0772fang.com/assets/js/Newhouse/inserAds\.js +# ||0772fang.com/assets/js/imgorflash.js (easylistchina.txt: 1325) +.0772fang.com/assets/js/imgorflash\.js +# ||076299.cn/images/flash/20 (easylistchina.txt: 1324) +.076299.cn/images/flash/20 +# ||0758net.com/data/attachment/portal/ (easylistchina.txt: 1323) +.0758net.com/data/attachment/portal/ +# ||0756.la/ad-htm/ (easylistchina.txt: 1322) +.0756.la/ad-htm/ +# ||073img.com^*/rich.js (easylistchina.txt: 1321) +.073img.com/.*/rich\.js +# ||0668gz.com/data/attachment/portal/ (easylistchina.txt: 1320) +.0668gz.com/data/attachment/portal/ +# ||060s.com/my_ad/ (easylistchina.txt: 1319) +.060s.com/my_ad/ +# ||05sun.com/js/downinfo.js (easylistchina.txt: 1318) +.05sun.com/js/downinfo\.js +# ||05sun.com/js/comm.js (easylistchina.txt: 1317) +.05sun.com/js/comm\.js +# ||0597ok.com/ilike/597/ (easylistchina.txt: 1316) +.0597ok.com/ilike/597/ +# ||0597kk.com/js/float.js (easylistchina.txt: 1315) +.0597kk.com/js/float\.js +# ||0579.cn/SHow/Showplacenew.aspx (easylistchina.txt: 1314) +.0579.cn/SHow/Showplacenew\.aspx +# ||0579.cn/images/bg.gif (easylistchina.txt: 1313) +.0579.cn/images/bg\.gif +# ||0575bbs.com/updateimeags/ (easylistchina.txt: 1312) +.0575bbs.com/updateimeags/ +# ||0575bbs.com/js/float.js (easylistchina.txt: 1311) +.0575bbs.com/js/float\.js +# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina.txt: 1310) +.0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph\.gif +# ||05096.com/jsdoc/ad.html (easylistchina.txt: 1309) +.05096.com/jsdoc/ad\.html +# ||0471.so/Public/config/Couplet/Index (easylistchina.txt: 1308) +.0471.so/Public/config/Couplet/Index +# ||0460.com/js/txtrec.js (easylistchina.txt: 1307) +.0460.com/js/txtrec\.js +# ||0460.com/images/banner/ (easylistchina.txt: 1306) +.0460.com/images/banner/ +# ||0452e.com/js/float.js (easylistchina.txt: 1305) +.0452e.com/js/float\.js +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina.txt: 1304) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=zhuangx +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina.txt: 1303) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=topslide +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina.txt: 1302) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=classify +# ||0439.com/html/js/tuiguang.js (easylistchina.txt: 1301) +.0439.com/html/js/tuiguang\.js +# ||0439.com/html/js/ad_r_300x220.js (easylistchina.txt: 1300) +.0439.com/html/js/ad_r_300x220\.js +# ||03jd.cn/data/attachment/portal/ (easylistchina.txt: 1299) +.03jd.cn/data/attachment/portal/ +# ||0379home.com/images/fullscreen_ (easylistchina.txt: 1298) +.0379home.com/images/fullscreen_ +# ||0379home.com/2014/js/beside.js (easylistchina.txt: 1297) +.0379home.com/2014/js/beside\.js +# ||0379home.com/2014/js/ad_pic.js (easylistchina.txt: 1296) +.0379home.com/2014/js/ad_pic\.js +# ||027down.com/images/banner760-60.gif (easylistchina.txt: 1295) +.027down.com/images/banner760-60\.gif +# ||022net.com/main/browse_yme.js (easylistchina.txt: 1294) +.022net.com/main/browse_yme\.js +# ||022net.com/js/mhtml/phtml07.html (easylistchina.txt: 1293) +.022net.com/js/mhtml/phtml07\.html +# ||022net.com/js/mhtml/phtml04.html (easylistchina.txt: 1292) +.022net.com/js/mhtml/phtml04\.html +# ||022net.com/js/mhtml/phtml03.html (easylistchina.txt: 1291) +.022net.com/js/mhtml/phtml03\.html +# ||021wudi.com/admguan- (easylistchina.txt: 1290) +.021wudi.com/admguan- +# ||020.com/960_70 (easylistchina.txt: 1289) +.020.com/960_70 +# ||007.mx/flv/ (easylistchina.txt: 1288) +.007.mx/flv/ +# ||005.tv:60000/ad.js (easylistchina.txt: 1287) +.005.tv:60000/ad\.js +# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina.txt: 1286) +.005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm\.jpg +# ||00170017.net/Public/images/ (easylistchina.txt: 1284) +.00170017.net/Public/images/ +# ||00170017.net/Public/dzb_gg.js (easylistchina.txt: 1283) +.00170017.net/Public/dzb_gg\.js +# |http://www.i-ab.co/zz/ (easylistchina.txt: 1282) +www.i-ab.co/zz/ +# |http://*/ad_bj.js? (easylistchina.txt: 1274) +/(.*/)?ad_bj\.js\? +# |http://*.7m.cn/b/ (easylistchina.txt: 1272) +/.*\.7m\.cn/b/ +.*.7m.cn/b/ +# _yad_jsonp_ (easylistchina.txt: 1266) +/.*_yad_jsonp_ +# _vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1265) +/.*_vmind\.qqvideo\.tc\.qq\.com[^\w%.-] +# _!!1731999033. (easylistchina.txt: 1263) +/.*_!!1731999033\. +# ^zhuanqian/adall.js (easylistchina.txt: 1262) +/(.*[^\w%.-])?zhuanqian/adall\.js +# ?method=baidu.ting.commercial.tactics& (easylistchina.txt: 1261) +/.*\?method=baidu\.ting\.commercial\.tactics& +# :88/lighttpd/default/ (easylistchina.txt: 1260) +/.*:88/lighttpd/default/ +# /yythems/images/tuiguang.png (easylistchina.txt: 1259) +/(.*/)?yythems/images/tuiguang\.png +# /yythems/images/1213.gif (easylistchina.txt: 1258) +/(.*/)?yythems/images/1213\.gif +# /ysm/ewdna/* (easylistchina.txt: 1257) +/(.*/)?ysm/ewdna/.* +# /ysm.ezprice.net/* (easylistchina.txt: 1256) +/(.*/)?ysm\.ezprice\.net/.* +ysm.ezprice.net/.* +# /youxituoluo/images/text_top_ (easylistchina.txt: 1255) +/(.*/)?youxituoluo/images/text_top_ +# /xiao1234.com/ads/* (easylistchina.txt: 1251) +/(.*/)?xiao1234\.com/ads/.* +xiao1234.com/ads/.* +# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina.txt: 1248) +/(.*/)?www\.soft4fun\.net/wp-content/uploads/.*_banner +www.soft4fun.net/wp-content/uploads/.*_banner +# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina.txt: 1247) +/(.*/)?www\.kocpc\.com\.tw/wp-content/uploads/.*\.gif +www.kocpc.com.tw/wp-content/uploads/.*\.gif +# /wangyuedeux/imgs/youlian.png (easylistchina.txt: 1242) +/(.*/)?wangyuedeux/imgs/youlian\.png +# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina.txt: 1241) +/(.*/)?wangyuedeux/imgs/wangzhuano\.jpg +# /vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1240) +/(.*/)?vmind\.qqvideo\.tc\.qq\.com[^\w%.-] +vmind.qqvideo.tc.qq.com +# /uniontgm.cmb. (easylistchina.txt: 1238) +/(.*/)?uniontgm\.cmb\. +uniontgm.cmb.*. +# /tonghuacun/skin/zxf/kan_hree.js (easylistchina.txt: 1236) +/(.*/)?tonghuacun/skin/zxf/kan_hree\.js +# /sznews/images/bbsgg (easylistchina.txt: 1233) +/(.*/)?sznews/images/bbsgg +# /static/btmeegg/* (easylistchina.txt: 1230) +/(.*/)?static/btmeegg/.* +# /sinaLoginReward2014_comment. (easylistchina.txt: 1227) +/(.*/)?sinaLoginReward2014_comment\. +# /sinaLoginReward2014. (easylistchina.txt: 1226) +/(.*/)?sinaLoginReward2014\. +sinaLoginReward2014.*. +# /sc_ifeng/* (easylistchina.txt: 1224) +/(.*/)?sc_ifeng/.* +# /pub/news/gzrb/*$script (easylistchina.txt: 1222) +/(.*/)?pub/news/gzrb/.* +# /opbb/obpp.tpl (easylistchina.txt: 1220) +/(.*/)?opbb/obpp\.tpl +# /opbb/float.js (easylistchina.txt: 1219) +/(.*/)?opbb/float\.js +# /nowscore/ad/* (easylistchina.txt: 1218) +/(.*/)?nowscore/ad/.* +# /nimabdd_1010/*baidu (easylistchina.txt: 1217) +/(.*/)?nimabdd_1010/.*baidu +# /newhuagg/index_ (easylistchina.txt: 1215) +/(.*/)?newhuagg/index_ +# /newhuagg/*_right (easylistchina.txt: 1214) +/(.*/)?newhuagg/.*_right +# /nddailyfile/webadv/* (easylistchina.txt: 1213) +/(.*/)?nddailyfile/webadv/.* +# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina.txt: 1211) +/(.*/)?msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d\.jpg +# /moneymaker/js/videoplayer.js (easylistchina.txt: 1210) +/(.*/)?moneymaker/js/videoplayer\.js +# /moneymaker/js/tmpp.js (easylistchina.txt: 1209) +/(.*/)?moneymaker/js/tmpp\.js +# /moneymaker/js/kppp.js (easylistchina.txt: 1208) +/(.*/)?moneymaker/js/kppp\.js +# /moneymaker/js/fkpp.js (easylistchina.txt: 1207) +/(.*/)?moneymaker/js/fkpp\.js +# /moneymaker/images/*.gif (easylistchina.txt: 1206) +/(.*/)?moneymaker/images/.*\.gif +# /modules/video/player/nuevo/midroll.php? (easylistchina.txt: 1205) +/(.*/)?modules/video/player/nuevo/midroll\.php\? +# /kocpc.myweb.hinet.net^ (easylistchina.txt: 1202) +/(.*/)?kocpc\.myweb\.hinet\.net[^\w%.-] +kocpc.myweb.hinet.net +# /images/amsun100.png (easylistchina.txt: 1182) +/(.*/)?images/amsun100\.png +# /ifengRotatorAd.js (easylistchina.txt: 1176) +/(.*/)?ifengRotatorAd\.js +ifengRotatorAd.js*. +# /html/taobao_focus_ (easylistchina.txt: 1175) +/(.*/)?html/taobao_focus_ +# /homead/*_appledaily_bg. (easylistchina.txt: 1173) +/(.*/)?homead/.*_appledaily_bg\. +# /gyw_index/*/images/ad_ (easylistchina.txt: 1172) +/(.*/)?gyw_index/.*/images/ad_ +# /game/aplus/pptv/* (easylistchina.txt: 1167) +/(.*/)?game/aplus/pptv/.* +# /front/adv/getpmadvlist (easylistchina.txt: 1166) +/(.*/)?front/adv/getpmadvlist +# /dhfun_ad/* (easylistchina.txt: 1163) +/(.*/)?dhfun_ad/.* +# /comiis_yccs/ads/* (easylistchina.txt: 1158) +/(.*/)?comiis_yccs/ads/.* +# /cari/daybanner/* (easylistchina.txt: 1157) +/(.*/)?cari/daybanner/.* +# /cari/banner/* (easylistchina.txt: 1156) +/(.*/)?cari/banner/.* +# /avshow_cn1.gif (easylistchina.txt: 1149) +/(.*/)?avshow_cn1\.gif +# /Atemplate/dd_1010/baidu (easylistchina.txt: 1146) +/(.*/)?Atemplate/dd_1010/baidu +# /Aemplate/dd_1010/baidu (easylistchina.txt: 1142) +/(.*/)?Aemplate/dd_1010/baidu +# /adscript/crazyad.js (easylistchina.txt: 1140) +/(.*/)?adscript/crazyad\.js +# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina.txt: 1139) +/(.*/)?Addsa\.dsj/Bsdd_1010/.*Baidu +Addsa.dsj/Bsdd_1010/.*Baidu +# /adcg/* (easylistchina.txt: 1138) +/(.*/)?adcg/.* +# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina.txt: 1135) +/(.*/)?a83b3cdeacac5a503717469ca5084ebc\. +a83b3cdeacac5a503717469ca5084ebc.*. +# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina.txt: 1130) +/(.*/)?934b2bc8de85e32ae7588f2eb955ee36\. +934b2bc8de85e32ae7588f2eb955ee36.*. +# /52meiju_7 (easylistchina.txt: 1129) +/(.*/)?52meiju_7 +# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina.txt: 1128) +/(.*/)?435f1c6f9f6b545254a00e426b9aeae1\. +435f1c6f9f6b545254a00e426b9aeae1.*. +# /404.safedog.cn/sitedog_stat_new.html (easylistchina.txt: 1127) +/(.*/)?404\.safedog\.cn/sitedog_stat_new\.html +404.safedog.cn/sitedog_stat_new\.html +# /2tu/heisiwang.js (easylistchina.txt: 1126) +/(.*/)?2tu/heisiwang\.js +# /2tu/ads/* (easylistchina.txt: 1125) +/(.*/)?2tu/ads/.* +# /200804ad/* (easylistchina.txt: 1123) +/(.*/)?200804ad/.* +# /18touch-guanggao. (easylistchina.txt: 1122) +/(.*/)?18touch-guanggao\. +18touch-guanggao.*. +# /10jqka_info/html/ad_ (easylistchina.txt: 1121) +/(.*/)?10jqka_info/html/ad_ +# .niusnews.com/upload/banners/ (easylistchina.txt: 1120) +/.*\.niusnews\.com/upload/banners/ +.*.niusnews.com/upload/banners/ +# .adsame.libaclub.com^ (easylistchina.txt: 1113) +/.*\.adsame\.libaclub\.com[^\w%.-] +.*.adsame.libaclub.com +# .543evv.com/js/config.js (easylistchina.txt: 1112) +/.*\.543evv\.com/js/config\.js +.*.543evv.com/js/config\.js +# ||zhubajie.com/?fromcode=$popup (easylistchina.txt: 1110) +.zhubajie.com/\?fromcode= +# ||yy18.info/yyrethanks18.$popup (easylistchina.txt: 1109) +.yy18.info/yyrethanks18\. +# ||vnet.cn^*.html?$popup,third-party (easylistchina.txt: 1106) +.vnet.cn/.*\.html\? +# ||todayapp.cc^$popup,third-party (easylistchina.txt: 1105) +.todayapp.cc +# ||t-movies.com.tw/pop.asp$popup (easylistchina.txt: 1102) +.t-movies.com.tw/pop\.asp +# ||son999.com^$popup,third-party (easylistchina.txt: 1101) +.son999.com +# ||sohu.com/i/?pvid=$popup (easylistchina.txt: 1100) +.sohu.com/i/\?pvid= +# ||smartor.org/iclk/?zoneid=$popup (easylistchina.txt: 1099) +.smartor.org/iclk/\?zoneid= +# ||qidian.com/showavd.$popup (easylistchina.txt: 1098) +.qidian.com/showavd\. +# ||moe.005.tv^$popup,third-party (easylistchina.txt: 1096) +.moe.005.tv +# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina.txt: 1094) +.kuai.xunlei.com/do_e_mu\?data= +# ||jjwxc.net/jjad*.html$popup (easylistchina.txt: 1092) +.jjwxc.net/jjad.*\.html +# ||iswan.cn^$popup,third-party (easylistchina.txt: 1091) +.iswan.cn +# ||iqiyi.com/track$popup (easylistchina.txt: 1090) +.iqiyi.com/track +# ||ihualun.com^$popup (easylistchina.txt: 1089) +.ihualun.com +# ||hinet.net/product/promotion/$popup (easylistchina.txt: 1088) +.hinet.net/product/promotion/ +# ||greenet.cn^*_popu_$popup (easylistchina.txt: 1087) +.greenet.cn/.*_popu_ +# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina.txt: 1086) +.gd.ct10000.com/.*/push/ +# ||gd.189.cn^*/push/$popup,third-party (easylistchina.txt: 1085) +.gd.189.cn/.*/push/ +# ||gd.189.cn/push/$popup,third-party (easylistchina.txt: 1084) +.gd.189.cn/push/ +# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina.txt: 1083) +.gd.189.cn/gz/promotion/ +# ||gd.189.cn/ad/$popup,third-party (easylistchina.txt: 1082) +.gd.189.cn/ad/ +# ||gamer.com.tw/adcounter.$popup (easylistchina.txt: 1081) +.gamer.com.tw/adcounter\. +# ||dhqp68.com^$popup,third-party (easylistchina.txt: 1080) +.dhqp68.com +# ||c.admaster.com.cn^$popup (easylistchina.txt: 1079) +.c.admaster.com.cn +# ||baidu.com/baidu.php?url=$popup (easylistchina.txt: 1078) +.baidu.com/baidu\.php\?url= +# ||baidu.com/adrc.$popup (easylistchina.txt: 1077) +.baidu.com/adrc\. +# ||ark.letv.com/t?$popup (easylistchina.txt: 1076) +.ark.letv.com/t\? +# ||aiwanma99.com^$popup (easylistchina.txt: 1075) +.aiwanma99.com +# ||ad.189so.cn^$popup (easylistchina.txt: 1074) +.ad.189so.cn +# ||9100300.com^$popup (easylistchina.txt: 1072) +.9100300.com +# ||133gp.com^$popup (easylistchina.txt: 1070) +.133gp.com +# ||093game.com^$popup,third-party (easylistchina.txt: 1068) +.093game.com +# /pushstart.aspx?$popup,third-party (easylistchina.txt: 1066) +/(.*/)?pushstart\.aspx\? +# /pushportal/PushPortalServer$popup,third-party (easylistchina.txt: 1065) +/(.*/)?pushportal/PushPortalServer +# /portalwlanad/pages/*$popup (easylistchina.txt: 1064) +/(.*/)?portalwlanad/pages/.* +# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina.txt: 1062) +/(.*/)?BadwebRemindPage\.aspx\?param= +# .com/?Intr=$popup,third-party (easylistchina.txt: 1060) +/.*\.com/\?Intr= +.*.com/\?Intr= +# .com/?aff=$popup,third-party (easylistchina.txt: 1059) +/.*\.com/\?aff= +.*.com/\?aff= +# .189.gd^*.html?p=$popup,third-party (easylistchina.txt: 1058) +/.*\.189\.gd[^\w%.-].*\.html\?p= +.*.189.gd/.*\.html\?p= +# ||zytwq.net^$third-party (easylistchina.txt: 1056) +.zytwq.net +# ||ztdsp.com^$third-party (easylistchina.txt: 1055) +.ztdsp.com +# ||zp265.com^$third-party (easylistchina.txt: 1054) +.zp265.com +# ||zp22938576.com^ (easylistchina.txt: 1053) +.zp22938576.com +# ||zj66.net^$third-party (easylistchina.txt: 1052) +.zj66.net +# ||zgyiyi.com^$third-party (easylistchina.txt: 1051) +.zgyiyi.com +# ||zgunion.cn^ (easylistchina.txt: 1050) +.zgunion.cn +# ||zgksb.com^ (easylistchina.txt: 1049) +.zgksb.com +# ||ze5.com^$third-party (easylistchina.txt: 1048) +.ze5.com +# ||zd6789.com^$third-party (easylistchina.txt: 1047) +.zd6789.com +# ||zampdsp.com^$third-party (easylistchina.txt: 1046) +.zampdsp.com +# ||zampda.net^$third-party (easylistchina.txt: 1045) +.zampda.net +# ||yzxls.com^$third-party (easylistchina.txt: 1044) +.yzxls.com +# ||yyp17.com^ (easylistchina.txt: 1043) +.yyp17.com +# ||yxdyk.com^$script,third-party (easylistchina.txt: 1042) +.yxdyk.com +# ||yunfanlm.com^$third-party (easylistchina.txt: 1041) +.yunfanlm.com +# ||yule8.net^ (easylistchina.txt: 1040) +.yule8.net +# ||yuanhsu.com^$third-party (easylistchina.txt: 1039) +.yuanhsu.com +# ||ysm.ezprice.net^$third-party (easylistchina.txt: 1038) +.ysm.ezprice.net +# ||yqw88.com^ (easylistchina.txt: 1037) +.yqw88.com +# ||yoyi.tv^$third-party (easylistchina.txt: 1036) +.yoyi.tv +# ||yoyi.com.cn^$third-party (easylistchina.txt: 1035) +.yoyi.com.cn +# ||youxicool.net^$third-party (easylistchina.txt: 1034) +.youxicool.net +# ||youle55.com^$third-party (easylistchina.txt: 1033) +.youle55.com +# ||youbet8.com^$third-party (easylistchina.txt: 1032) +.youbet8.com +# ||yongv.com^$third-party (easylistchina.txt: 1031) +.yongv.com +# ||ymcqb.com^ (easylistchina.txt: 1030) +.ymcqb.com +# ||yk0712.com^ (easylistchina.txt: 1029) +.yk0712.com +# ||yiwad.com^$third-party (easylistchina.txt: 1028) +.yiwad.com +# ||yiqifa.com^*.js$third-party (easylistchina.txt: 1027) +.yiqifa.com/.*\.js +# ||yiqifa.com^$subdocument (easylistchina.txt: 1026) +.yiqifa.com +# ||yiiwoo.com^$third-party (easylistchina.txt: 1025) +.yiiwoo.com +# ||yigao.com^$third-party (easylistchina.txt: 1024) +.yigao.com +# ||ye3.com^$third-party (easylistchina.txt: 1023) +.ye3.com +# ||ydcpc.com^$third-party (easylistchina.txt: 1022) +.ydcpc.com +# ||xzyituo.com^ (easylistchina.txt: 1021) +.xzyituo.com +# ||xzdchl.com^$third-party (easylistchina.txt: 1020) +.xzdchl.com +# ||xxad.cc^ (easylistchina.txt: 1019) +.xxad.cc +# ||xtxa.net^ (easylistchina.txt: 1018) +.xtxa.net +# ||xsu.cc^$third-party (easylistchina.txt: 1017) +.xsu.cc +# ||xp3366.com^$third-party (easylistchina.txt: 1016) +.xp3366.com +# ||xhmrv.com^ (easylistchina.txt: 1015) +.xhmrv.com +# ||xe2c.com^$third-party (easylistchina.txt: 1014) +.xe2c.com +# ||xdwan.com^$third-party (easylistchina.txt: 1013) +.xdwan.com +# ||xcy8.com^ (easylistchina.txt: 1012) +.xcy8.com +# ||xchgx.com^ (easylistchina.txt: 1011) +.xchgx.com +# ||xajx.com^$third-party (easylistchina.txt: 1010) +.xajx.com +# ||xabaitai.com^ (easylistchina.txt: 1009) +.xabaitai.com +# ||xa9t.com^ (easylistchina.txt: 1008) +.xa9t.com +# ||x9377a.com^ (easylistchina.txt: 1007) +.x9377a.com +# ||wudang05.com^$third-party (easylistchina.txt: 1006) +.wudang05.com +# ||ws341.com^ (easylistchina.txt: 1005) +.ws341.com +# ||wqzyt.net^$third-party (easylistchina.txt: 1004) +.wqzyt.net +# ||wqsph.net^ (easylistchina.txt: 1003) +.wqsph.net +# ||wo685.com^$third-party (easylistchina.txt: 1002) +.wo685.com +# ||wit.qq.com^$third-party (easylistchina.txt: 1001) +.wit.qq.com +# ||winvestern.com.cn^ (easylistchina.txt: 1000) +.winvestern.com.cn +# ||widget.ezprice.com.tw^$third-party (easylistchina.txt: 999) +.widget.ezprice.com.tw +# ||weizhanle.com^$third-party (easylistchina.txt: 998) +.weizhanle.com +# ||weddingeeos.com^$third-party (easylistchina.txt: 997) +.weddingeeos.com +# ||weareqy.com^$third-party (easylistchina.txt: 996) +.weareqy.com +# ||wdzsb.com.cn^ (easylistchina.txt: 995) +.wdzsb.com.cn +# ||w65p.com^ (easylistchina.txt: 994) +.w65p.com +# ||vsnoon.com^$third-party (easylistchina.txt: 993) +.vsnoon.com +# ||vpie.net^$third-party (easylistchina.txt: 992) +.vpie.net +# ||visadd.com^$third-party (easylistchina.txt: 991) +.visadd.com +# ||victorjx.com^ (easylistchina.txt: 990) +.victorjx.com +# ||vf5c.com^$third-party (easylistchina.txt: 989) +.vf5c.com +# ||vamaker.com^$third-party (easylistchina.txt: 988) +.vamaker.com +# ||v707070.com^ (easylistchina.txt: 987) +.v707070.com +# ||v-links.net^$third-party (easylistchina.txt: 986) +.v-links.net +# ||urlad.com.tw^$third-party (easylistchina.txt: 985) +.urlad.com.tw +# ||uoyrsd.com^ (easylistchina.txt: 984) +.uoyrsd.com +# ||unionsky2.cn^$third-party (easylistchina.txt: 983) +.unionsky2.cn +# ||unionsky.cn^$third-party (easylistchina.txt: 982) +.unionsky.cn +# ||unionli.com^$third-party (easylistchina.txt: 981) +.unionli.com +# ||unionbig.com^$third-party (easylistchina.txt: 980) +.unionbig.com +# ||union009.com^$third-party (easylistchina.txt: 979) +.union009.com +# ||union.$third-party (easylistchina.txt: 978) +.union.*. +# ||unimhk.com^$third-party (easylistchina.txt: 977) +.unimhk.com +# ||ulink.cc^$third-party (easylistchina.txt: 976) +.ulink.cc +# ||ujian.cc^$third-party (easylistchina.txt: 975) +.ujian.cc +# ||ufstone.com^$third-party (easylistchina.txt: 974) +.ufstone.com +# ||ueadlian.com^$third-party (easylistchina.txt: 973) +.ueadlian.com +# ||ubmcmm.baidustatic.com^ (easylistchina.txt: 972) +.ubmcmm.baidustatic.com +# ||u88.cn^$third-party (easylistchina.txt: 971) +.u88.cn +# ||u.801t.com^$third-party (easylistchina.txt: 970) +.u.801t.com +# ||txkjad.com^$third-party (easylistchina.txt: 969) +.txkjad.com +# ||twrank.com^$third-party (easylistchina.txt: 968) +.twrank.com +# ||twm.com.tw^$third-party (easylistchina.txt: 967) +.twm.com.tw +# ||twcczhu.com^$third-party (easylistchina.txt: 966) +.twcczhu.com +# ||twb98.com^$third-party (easylistchina.txt: 965) +.twb98.com +# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 964) +.tw-cm.ysm.yahoo.com +# ||tukj.net^$third-party (easylistchina.txt: 963) +.tukj.net +# ||tripadvisor.com^$third-party (easylistchina.txt: 962) +.tripadvisor.com +# ||toy9090.com^$third-party (easylistchina.txt: 961) +.toy9090.com +# ||toufangke.com^$third-party (easylistchina.txt: 960) +.toufangke.com +# ||top888.com^$third-party (easylistchina.txt: 959) +.top888.com +# ||toourbb.com^ (easylistchina.txt: 958) +.toourbb.com +# ||tk001.com^$third-party (easylistchina.txt: 957) +.tk001.com +# ||tg.1155t.cn^ (easylistchina.txt: 956) +.tg.1155t.cn +# ||tebaidu.cn^$third-party (easylistchina.txt: 955) +.tebaidu.cn +# ||tdayi.com^ (easylistchina.txt: 954) +.tdayi.com +# ||tc600.com^ (easylistchina.txt: 953) +.tc600.com +# ||tbjfw.com^$third-party (easylistchina.txt: 952) +.tbjfw.com +# ||taotu001.com^$third-party (easylistchina.txt: 951) +.taotu001.com +# ||taobaoij.com: (easylistchina.txt: 950) +# ||tanchuang002.info^$third-party (easylistchina.txt: 947) +.tanchuang002.info +# ||tad.suning.com^ (easylistchina.txt: 946) +.tad.suning.com +# ||taat00889.com^ (easylistchina.txt: 945) +.taat00889.com +# ||ta80.com^$third-party (easylistchina.txt: 944) +.ta80.com +# ||t70123.com^ (easylistchina.txt: 943) +.t70123.com +# ||t3nlink.com^$third-party (easylistchina.txt: 942) +.t3nlink.com +# ||superfish.com^$third-party (easylistchina.txt: 941) +.superfish.com +# ||sunjianhao.com^ (easylistchina.txt: 940) +.sunjianhao.com +# ||stnts.com^$third-party (easylistchina.txt: 939) +.stnts.com +# ||star8.net^$third-party (easylistchina.txt: 938) +.star8.net +# ||sstc360.com^ (easylistchina.txt: 937) +.sstc360.com +# ||sphwq.net^$third-party (easylistchina.txt: 936) +.sphwq.net +# ||spcode.baidu.com^ (easylistchina.txt: 935) +.spcode.baidu.com +# ||souacode.com^$third-party (easylistchina.txt: 934) +.souacode.com +# ||sosobook.cn^$third-party (easylistchina.txt: 933) +.sosobook.cn +# ||socdm.com^ (easylistchina.txt: 932) +.socdm.com +# ||snyu.com^$third-party (easylistchina.txt: 931) +.snyu.com +# ||snxyf.com^$third-party (easylistchina.txt: 930) +.snxyf.com +# ||sin114.com^$third-party (easylistchina.txt: 929) +.sin114.com +# ||si9377.com^ (easylistchina.txt: 928) +.si9377.com +# ||show.kc.taotaosou.com^ (easylistchina.txt: 927) +.show.kc.taotaosou.com +# ||sharele.cn^$third-party (easylistchina.txt: 926) +.sharele.cn +# ||sharedaddomain.com^ (easylistchina.txt: 925) +.sharedaddomain.com +# ||sgbfjs.info^ (easylistchina.txt: 924) +.sgbfjs.info +# ||sexy-more.com^$third-party (easylistchina.txt: 923) +.sexy-more.com +# ||sales-frontier.com^$third-party (easylistchina.txt: 922) +.sales-frontier.com +# ||s17cnzz.com^$third-party (easylistchina.txt: 921) +.s17cnzz.com +# ||rwjfs.com^ (easylistchina.txt: 920) +.rwjfs.com +# ||ruxianke.com^ (easylistchina.txt: 919) +.ruxianke.com +# ||ruanwenclub.com^$third-party (easylistchina.txt: 918) +.ruanwenclub.com +# ||rsccs.com^$third-party (easylistchina.txt: 917) +.rsccs.com +# ||re.taotaosou.com^ (easylistchina.txt: 916) +.re.taotaosou.com +# ||rbc.cn^$third-party (easylistchina.txt: 915) +.rbc.cn +# ||qucaigg.com^ (easylistchina.txt: 914) +.qucaigg.com +# ||qubilou.com^$third-party (easylistchina.txt: 913) +.qubilou.com +# ||qtmojo.com^$third-party (easylistchina.txt: 912) +.qtmojo.com +# ||qq4g.cn^$third-party (easylistchina.txt: 911) +.qq4g.cn +# ||qiyou.com^$third-party (easylistchina.txt: 910) +.qiyou.com +# ||qiqiww.com^ (easylistchina.txt: 909) +.qiqiww.com +# ||qidou.com^$third-party (easylistchina.txt: 908) +.qidou.com +# ||prohost.com.tw^$third-party (easylistchina.txt: 907) +.prohost.com.tw +# ||pro.cn^$third-party (easylistchina.txt: 906) +.pro.cn +# ||poxzyu.com^$third-party (easylistchina.txt: 905) +.poxzyu.com +# ||pos.baidu.com^ (easylistchina.txt: 904) +.pos.baidu.com +# ||pdsjycm.com^ (easylistchina.txt: 903) +.pdsjycm.com +# ||pagechoice.net^$third-party (easylistchina.txt: 902) +.pagechoice.net +# ||p3tt.com^ (easylistchina.txt: 901) +.p3tt.com +# ||p0y.cn^*.swf (easylistchina.txt: 900) +.p0y.cn/.*\.swf +# ||p0y.cn^$image (easylistchina.txt: 899) +.p0y.cn +# ||onetad.com^$third-party (easylistchina.txt: 898) +.onetad.com +# ||okokw.com^$third-party (easylistchina.txt: 897) +.okokw.com +# ||okm918.com^ (easylistchina.txt: 896) +.okm918.com +# ||oikxlcv.wang^ (easylistchina.txt: 895) +.oikxlcv.wang +# ||octopuspop.com^$third-party (easylistchina.txt: 893) +.octopuspop.com +# ||o091i.com^$third-party (easylistchina.txt: 892) +.o091i.com +# ||notice.uchome.manyou.com^ (easylistchina.txt: 891) +.notice.uchome.manyou.com +# ||niuza.com^$image,subdocument,third-party (easylistchina.txt: 890) +.niuza.com +# ||niuxgame77.com^ (easylistchina.txt: 889) +.niuxgame77.com +# ||niurenw.com^$third-party (easylistchina.txt: 888) +.niurenw.com +# ||ni22.com^$third-party (easylistchina.txt: 887) +.ni22.com +# ||nextcps.com^ (easylistchina.txt: 886) +.nextcps.com +# ||news.tagtoo.co^$third-party (easylistchina.txt: 885) +.news.tagtoo.co +# ||myzwqwe12.com^$third-party (easylistchina.txt: 884) +.myzwqwe12.com +# ||mytanwan.com^$third-party (easylistchina.txt: 883) +.mytanwan.com +# ||mycctvmedia.com^$third-party (easylistchina.txt: 882) +.mycctvmedia.com +# ||mtxsk.com^$third-party (easylistchina.txt: 881) +.mtxsk.com +# ||mscimg.com^ (easylistchina.txt: 880) +.mscimg.com +# ||moogos.com^$third-party (easylistchina.txt: 879) +.moogos.com +# ||moodoocrv.com.cn^ (easylistchina.txt: 878) +.moodoocrv.com.cn +# ||mobads.baidu.com^$third-party (easylistchina.txt: 877) +.mobads.baidu.com +# ||mlt01.com^ (easylistchina.txt: 876) +.mlt01.com +# ||miaozhen.com^$third-party (easylistchina.txt: 875) +.miaozhen.com +# ||mgwl668.com^$third-party (easylistchina.txt: 874) +.mgwl668.com +# ||mediav.com^$third-party (easylistchina.txt: 873) +.mediav.com +# ||media8.cn^$third-party (easylistchina.txt: 872) +.media8.cn +# ||mathtag.com^$third-party (easylistchina.txt: 871) +.mathtag.com +# ||mathads.com^ (easylistchina.txt: 870) +.mathads.com +# ||mamamiyu.com^$third-party (easylistchina.txt: 869) +.mamamiyu.com +# ||mainbx.com^ (easylistchina.txt: 868) +.mainbx.com +# ||lzmm8.com^ (easylistchina.txt: 867) +.lzmm8.com +# ||lx167.com^$third-party (easylistchina.txt: 866) +.lx167.com +# ||lv711.net^$third-party (easylistchina.txt: 865) +.lv711.net +# ||lnr1.com^$third-party (easylistchina.txt: 864) +.lnr1.com +# ||lishuanghao.com^ (easylistchina.txt: 863) +.lishuanghao.com +# ||linkvans.com^$third-party (easylistchina.txt: 862) +.linkvans.com +# ||lhzly.com^$third-party (easylistchina.txt: 860) +.lhzly.com +# ||le4le.com^ (easylistchina.txt: 859) +.le4le.com +# ||le123.cn^$third-party (easylistchina.txt: 858) +.le123.cn +# ||lajizhan.org^ (easylistchina.txt: 857) +.lajizhan.org +# ||kuaizitech.com^$third-party (easylistchina.txt: 856) +.kuaizitech.com +# ||ku9377.com^ (easylistchina.txt: 855) +.ku9377.com +# ||ku63.com^$third-party (easylistchina.txt: 854) +.ku63.com +# ||kmadou.com^ (easylistchina.txt: 853) +.kmadou.com +# ||kingwam.com^ (easylistchina.txt: 852) +.kingwam.com +# ||kiees.com^$image,subdocument,third-party (easylistchina.txt: 851) +.kiees.com +# ||keyyou.net^ (easylistchina.txt: 850) +.keyyou.net +# ||keyrun.cn^$third-party (easylistchina.txt: 849) +.keyrun.cn +# ||keydot.net^$third-party (easylistchina.txt: 848) +.keydot.net +# ||kejet.$third-party (easylistchina.txt: 847) +.kejet.*. +# ||kefeng56.com^$third-party (easylistchina.txt: 846) +.kefeng56.com +# ||kdly.net^$third-party (easylistchina.txt: 845) +.kdly.net +# ||kaixinjiehun.com^$third-party (easylistchina.txt: 844) +.kaixinjiehun.com +# ||jxjzny.com^ (easylistchina.txt: 843) +.jxjzny.com +# ||jwqj.net^ (easylistchina.txt: 842) +.jwqj.net +# ||jusha.com^$third-party (easylistchina.txt: 841) +.jusha.com +# ||junnew.com^$third-party (easylistchina.txt: 840) +.junnew.com +# ||juandou.com^$third-party (easylistchina.txt: 839) +.juandou.com +# ||ju33.com^$third-party (easylistchina.txt: 838) +.ju33.com +# ||jtxh.net^$third-party (easylistchina.txt: 837) +.jtxh.net +# ||jsyd139.com^$third-party (easylistchina.txt: 836) +.jsyd139.com +# ||jsmbaidu.com^$third-party (easylistchina.txt: 835) +.jsmbaidu.com +# ||jsjxhd.com^$third-party (easylistchina.txt: 834) +.jsjxhd.com +# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina.txt: 833) +.js-apac-ss.ysm.yahoo.com +# ||jointreport-switch.com^$third-party (easylistchina.txt: 832) +.jointreport-switch.com +# ||johtzj.com^ (easylistchina.txt: 831) +.johtzj.com +# ||jntmedia.cn^$third-party (easylistchina.txt: 830) +.jntmedia.cn +# ||jnrsjm.com^ (easylistchina.txt: 829) +.jnrsjm.com +# ||jlssbz.com^ (easylistchina.txt: 828) +.jlssbz.com +# ||jk939.com^ (easylistchina.txt: 827) +.jk939.com +# ||jiyou2014.com^ (easylistchina.txt: 826) +.jiyou2014.com +# ||jixing8.net^$third-party (easylistchina.txt: 825) +.jixing8.net +# ||jixing8.com^$third-party (easylistchina.txt: 824) +.jixing8.com +# ||jisucn.com^$third-party (easylistchina.txt: 823) +.jisucn.com +# ||jiankang13.com^$third-party (easylistchina.txt: 822) +.jiankang13.com +# ||jianglishi.cn^$third-party (easylistchina.txt: 821) +.jianglishi.cn +# ||jiangcao.com^$third-party (easylistchina.txt: 820) +.jiangcao.com +# ||jhzl001.com^ (easylistchina.txt: 819) +.jhzl001.com +# ||jdlhg.com^ (easylistchina.txt: 818) +.jdlhg.com +# ||jczzjx.com^ (easylistchina.txt: 817) +.jczzjx.com +# ||j8j9.com^$third-party (easylistchina.txt: 816) +.j8j9.com +# ||itechwall.com^$third-party (easylistchina.txt: 815) +.itechwall.com +# ||istreamsche.com^$third-party (easylistchina.txt: 814) +.istreamsche.com +# ||is686.com^$third-party (easylistchina.txt: 813) +.is686.com +# ||iprefer.com.tw^$third-party (easylistchina.txt: 812) +.iprefer.com.tw +# ||instreet.cn^$third-party (easylistchina.txt: 811) +.instreet.cn +# ||index8.cn^$third-party (easylistchina.txt: 810) +.index8.cn +# ||img80.net^ (easylistchina.txt: 809) +.img80.net +# ||ihualun.com^ (easylistchina.txt: 807) +.ihualun.com +# ||iguang.tw^$third-party (easylistchina.txt: 806) +.iguang.tw +# ||iee5.com^$third-party (easylistchina.txt: 805) +.iee5.com +# ||icast.cn^$third-party (easylistchina.txt: 804) +.icast.cn +# ||i3z.cn^$third-party (easylistchina.txt: 803) +.i3z.cn +# ||i3818.com^ (easylistchina.txt: 802) +.i3818.com +# ||i000o.com^$third-party (easylistchina.txt: 801) +.i000o.com +# ||hxqu.com^$third-party (easylistchina.txt: 800) +.hxqu.com +# ||humanding.com^ (easylistchina.txt: 799) +.humanding.com +# ||hsmkj.net^$third-party (easylistchina.txt: 798) +.hsmkj.net +# ||hr44.com^ (easylistchina.txt: 797) +.hr44.com +# ||hn163fck.com^$third-party (easylistchina.txt: 796) +.hn163fck.com +# ||hmp33.com^ (easylistchina.txt: 795) +.hmp33.com +# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 794) +.hk-cm.ysm.yahoo.com +# ||hfjuki.com^ (easylistchina.txt: 793) +.hfjuki.com +# ||heima8.com^$third-party (easylistchina.txt: 792) +.heima8.com +# ||hauchi.com.tw^$third-party (easylistchina.txt: 791) +.hauchi.com.tw +# ||haoyiwang.net^$third-party (easylistchina.txt: 790) +.haoyiwang.net +# ||haomm.com^$third-party (easylistchina.txt: 789) +.haomm.com +# ||haolew.com^ (easylistchina.txt: 788) +.haolew.com +# ||haohaowan8.com^ (easylistchina.txt: 787) +.haohaowan8.com +# ||haoba.info^$third-party (easylistchina.txt: 786) +.haoba.info +# ||hao123union.baidu.com^$third-party (easylistchina.txt: 785) +.hao123union.baidu.com +# ||hao123rt.com^ (easylistchina.txt: 784) +.hao123rt.com +# ||haiyunx.com^$third-party (easylistchina.txt: 783) +.haiyunx.com +# ||gzqudou.com^ (easylistchina.txt: 782) +.gzqudou.com +# ||gzmjnx.cn^ (easylistchina.txt: 781) +.gzmjnx.cn +# ||gzbywl.com^$third-party (easylistchina.txt: 780) +.gzbywl.com +# ||guduopu.com^ (easylistchina.txt: 779) +.guduopu.com +# ||gs307.com^$third-party (easylistchina.txt: 778) +.gs307.com +# ||gotonav.com^$third-party (easylistchina.txt: 777) +.gotonav.com +# ||gohappy.com.tw^$third-party (easylistchina.txt: 776) +.gohappy.com.tw +# ||gm682.com^ (easylistchina.txt: 775) +.gm682.com +# ||ggmm777.com^$third-party (easylistchina.txt: 774) +.ggmm777.com +# ||gf1353.com^$third-party (easylistchina.txt: 773) +.gf1353.com +# ||gf1352.com^ (easylistchina.txt: 772) +.gf1352.com +# ||gf108.com^ (easylistchina.txt: 771) +.gf108.com +# ||geotmt.com^$third-party (easylistchina.txt: 770) +.geotmt.com +# ||gdxxb.com^$third-party (easylistchina.txt: 769) +.gdxxb.com +# ||gansha.co^$third-party (easylistchina.txt: 768) +.gansha.co +# ||gameone.com^$third-party (easylistchina.txt: 767) +.gameone.com +# ||gamecps.com^$third-party (easylistchina.txt: 766) +.gamecps.com +# ||game3737.com^$third-party (easylistchina.txt: 765) +.game3737.com +# ||g35.cc^$third-party (easylistchina.txt: 764) +.g35.cc +# ||fxxgw.com^$third-party (easylistchina.txt: 763) +.fxxgw.com +# ||fv99.com^ (easylistchina.txt: 762) +.fv99.com +# ||fu68.com^ (easylistchina.txt: 761) +.fu68.com +# ||fmad.cc^$third-party (easylistchina.txt: 760) +.fmad.cc +# ||fjmeyer.com^ (easylistchina.txt: 759) +.fjmeyer.com +# ||feitian001.com^$third-party (easylistchina.txt: 758) +.feitian001.com +# ||fd7c.com^ (easylistchina.txt: 757) +.fd7c.com +# ||fadama.com^$third-party (easylistchina.txt: 756) +.fadama.com +# ||f8272.com^$third-party (easylistchina.txt: 755) +.f8272.com +# ||f70123.com^ (easylistchina.txt: 754) +.f70123.com +# ||f6ce.com^ (easylistchina.txt: 753) +.f6ce.com +# ||f1190.com^ (easylistchina.txt: 752) +.f1190.com +# ||eyouv.cn^$third-party (easylistchina.txt: 751) +.eyouv.cn +# ||emarbox.com^$third-party (easylistchina.txt: 750) +.emarbox.com +# ||elsad.tw^$third-party (easylistchina.txt: 749) +.elsad.tw +# ||ejin56.com^$third-party (easylistchina.txt: 748) +.ejin56.com +# ||eiv.baidu.com^ (easylistchina.txt: 747) +.eiv.baidu.com +# ||egooad.com^$third-party (easylistchina.txt: 746) +.egooad.com +# ||eeyy.com^$third-party (easylistchina.txt: 745) +.eeyy.com +# ||ecuc123.net^ (easylistchina.txt: 744) +.ecuc123.net +# ||easou.com^$third-party (easylistchina.txt: 743) +.easou.com +# ||ea3721.com^$third-party (easylistchina.txt: 742) +.ea3721.com +# ||e719.net^ (easylistchina.txt: 741) +.e719.net +# ||e708.net^ (easylistchina.txt: 740) +.e708.net +# ||e70123.com^ (easylistchina.txt: 739) +.e70123.com +# ||e701.net^ (easylistchina.txt: 738) +.e701.net +# ||dxssiyi.com^ (easylistchina.txt: 737) +.dxssiyi.com +# ||dxpmedia.com^$third-party (easylistchina.txt: 736) +.dxpmedia.com +# ||dw998.com^ (easylistchina.txt: 735) +.dw998.com +# ||dvr8.com^ (easylistchina.txt: 734) +.dvr8.com +# ||dushimj.com^$third-party (easylistchina.txt: 733) +.dushimj.com +# ||duiwai.baidu.com^ (easylistchina.txt: 732) +.duiwai.baidu.com +# ||dszm163.com^$third-party (easylistchina.txt: 731) +.dszm163.com +# ||drmcmm.baidu.com^ (easylistchina.txt: 730) +.drmcmm.baidu.com +# ||dreamfull.cn^ (easylistchina.txt: 729) +.dreamfull.cn +# ||doubleadv.com^$third-party (easylistchina.txt: 728) +.doubleadv.com +# ||dou777.com^ (easylistchina.txt: 727) +.dou777.com +# ||dmtrck.com^$third-party (easylistchina.txt: 725) +.dmtrck.com +# ||dlads.cn^$third-party (easylistchina.txt: 724) +.dlads.cn +# ||displink.com^$third-party (easylistchina.txt: 723) +.displink.com +# ||dianxin.com^$third-party (easylistchina.txt: 722) +.dianxin.com +# ||dian500.com^$third-party (easylistchina.txt: 721) +.dian500.com +# ||dddddd.net^$third-party (easylistchina.txt: 720) +.dddddd.net +# ||datafastguru.info^ (easylistchina.txt: 719) +.datafastguru.info +# ||dashet.com^ (easylistchina.txt: 718) +.dashet.com +# ||d8360.com^$third-party (easylistchina.txt: 717) +.d8360.com +# ||d1ad.com^$third-party (easylistchina.txt: 716) +.d1ad.com +# ||czpwm.com^ (easylistchina.txt: 715) +.czpwm.com +# ||czpush.com^ (easylistchina.txt: 714) +.czpush.com +# ||cyacc.com^ (easylistchina.txt: 713) +.cyacc.com +# ||ctsywy.com^ (easylistchina.txt: 712) +.ctsywy.com +# ||csqiulong.com^ (easylistchina.txt: 711) +.csqiulong.com +# ||csbew.com^$third-party (easylistchina.txt: 710) +.csbew.com +# ||csad.cc^$third-party (easylistchina.txt: 709) +.csad.cc +# ||cs.37see.com^$third-party (easylistchina.txt: 708) +.cs.37see.com +# ||crdrjs.info^ (easylistchina.txt: 707) +.crdrjs.info +# ||crazymike.tw^$third-party (easylistchina.txt: 706) +.crazymike.tw +# ||cpva.cc^ (easylistchina.txt: 705) +.cpva.cc +# ||cpv6.com^ (easylistchina.txt: 704) +.cpv6.com +# ||cpro.baidustatic.com^ (easylistchina.txt: 703) +.cpro.baidustatic.com +# ||cpro.baidu.com^ (easylistchina.txt: 702) +.cpro.baidu.com +# ||cpms.cc^ (easylistchina.txt: 701) +.cpms.cc +# ||cpcv.cc^ (easylistchina.txt: 700) +.cpcv.cc +# ||coinadv.com^$third-party (easylistchina.txt: 699) +.coinadv.com +# ||code668.com^ (easylistchina.txt: 698) +.code668.com +# ||cnzz.com.so^ (easylistchina.txt: 697) +.cnzz.com.so +# ||cnxad.net^ (easylistchina.txt: 696) +.cnxad.net +# ||cnxad.com^$third-party (easylistchina.txt: 695) +.cnxad.com +# ||cloudad.asia^$third-party (easylistchina.txt: 694) +.cloudad.asia +# ||cjlaoshi.com^$third-party (easylistchina.txt: 693) +.cjlaoshi.com +# ||chinesean.com^$third-party (easylistchina.txt: 692) +.chinesean.com +# ||chinauma.net^$third-party (easylistchina.txt: 691) +.chinauma.net +# ||chapm.com^$third-party (easylistchina.txt: 690) +.chapm.com +# ||chanet.com.cn^$third-party (easylistchina.txt: 689) +.chanet.com.cn +# ||cbjs.baidu.com^ (easylistchina.txt: 688) +.cbjs.baidu.com +# ||cb.baidu.com^ (easylistchina.txt: 687) +.cb.baidu.com +# ||caob5.info^ (easylistchina.txt: 686) +.caob5.info +# ||cangnews.com^ (easylistchina.txt: 685) +.cangnews.com +# ||c.91wan.com^$third-party (easylistchina.txt: 684) +.c.91wan.com +# ||btyou.com^$third-party (easylistchina.txt: 683) +.btyou.com +# ||books.com.tw/exep/ap/$third-party (easylistchina.txt: 682) +.books.com.tw/exep/ap/ +# ||bloggerads.net^$third-party (easylistchina.txt: 681) +.bloggerads.net +# ||blogad.com.tw^$third-party (easylistchina.txt: 680) +.blogad.com.tw +# ||biddingx.com^$third-party (easylistchina.txt: 679) +.biddingx.com +# ||behe.com^$third-party (easylistchina.txt: 678) +.behe.com +# ||baodaozhan.cn^$third-party (easylistchina.txt: 677) +.baodaozhan.cn +# ||bang5mai.com^$third-party (easylistchina.txt: 676) +.bang5mai.com +# ||baidu360haosou.info^$third-party (easylistchina.txt: 675) +.baidu360haosou.info +# ||b5h7.com^$third-party (easylistchina.txt: 674) +.b5h7.com +# ||av8d.net^$third-party (easylistchina.txt: 673) +.av8d.net +# ||at98.com^ (easylistchina.txt: 672) +.at98.com +# ||at918.com^$third-party (easylistchina.txt: 671) +.at918.com +# ||aralego.com^ (easylistchina.txt: 670) +.aralego.com +# ||aoparking.com^$third-party (easylistchina.txt: 669) +.aoparking.com +# ||andmejs.com^$third-party (easylistchina.txt: 668) +.andmejs.com +# ||amazingmagics.com^ (easylistchina.txt: 667) +.amazingmagics.com +# ||allyes.$third-party (easylistchina.txt: 666) +.allyes.*. +# ||aliyunxin.com^ (easylistchina.txt: 665) +.aliyunxin.com +# ||aliyuncss.com^ (easylistchina.txt: 664) +.aliyuncss.com +# ||ajhdf.com^$third-party (easylistchina.txt: 662) +.ajhdf.com +# ||ajaxcdn.org^ (easylistchina.txt: 661) +.ajaxcdn.org +# ||aimato.com^$third-party (easylistchina.txt: 660) +.aimato.com +# ||aidaicn.com^$third-party (easylistchina.txt: 659) +.aidaicn.com +# ||agrantsem.com^$third-party (easylistchina.txt: 658) +.agrantsem.com +# ||affiliate.rakuten.co.jp^$third-party (easylistchina.txt: 657) +.affiliate.rakuten.co.jp +# ||adyun.com^$third-party (easylistchina.txt: 656) +.adyun.com +# ||adxiaozi.com^$third-party (easylistchina.txt: 655) +.adxiaozi.com +# ||adver.com.tw^$third-party (easylistchina.txt: 654) +.adver.com.tw +# ||adunioncode.com^$third-party (easylistchina.txt: 653) +.adunioncode.com +# ||adt100.com^$third-party (easylistchina.txt: 652) +.adt100.com +# ||adsbro.com^$third-party (easylistchina.txt: 651) +.adsbro.com +# ||adsage.com^$third-party (easylistchina.txt: 650) +.adsage.com +# ||ads.uc.cn^ (easylistchina.txt: 649) +.ads.uc.cn +# ||adpush.cn^$third-party (easylistchina.txt: 648) +.adpush.cn +# ||adpro.cn^$third-party (easylistchina.txt: 647) +.adpro.cn +# ||admin6.com^$third-party (easylistchina.txt: 646) +.admin6.com +# ||adm.cnzz.net^$third-party (easylistchina.txt: 645) +.adm.cnzz.net +# ||adm-cnzz.net^ (easylistchina.txt: 644) +.adm-cnzz.net +# ||adkongjian.com^$third-party (easylistchina.txt: 643) +.adkongjian.com +# ||adingo.jp^$third-party (easylistchina.txt: 642) +.adingo.jp +# ||adhouyi.com^$third-party (easylistchina.txt: 641) +.adhouyi.com +# ||adconfer.com^$third-party (easylistchina.txt: 640) +.adconfer.com +# ||adchina.cc^$third-party (easylistchina.txt: 639) +.adchina.cc +# ||adcenter.conn.tw^$third-party (easylistchina.txt: 638) +.adcenter.conn.tw +# ||adbxb.com^$third-party (easylistchina.txt: 637) +.adbxb.com +# ||ad8.cc^$third-party (easylistchina.txt: 636) +.ad8.cc +# ||ad000000.com^ (easylistchina.txt: 635) +.ad000000.com +# ||ad-plus.cn^$third-party (easylistchina.txt: 634) +.ad-plus.cn +# ||acs86.com^$third-party (easylistchina.txt: 633) +.acs86.com +# ||acgbase.com^$third-party (easylistchina.txt: 632) +.acgbase.com +# ||a907907.com^ (easylistchina.txt: 631) +.a907907.com +# ||a7shun.com^$third-party (easylistchina.txt: 630) +.a7shun.com +# ||a3p4.com^$third-party (easylistchina.txt: 629) +.a3p4.com +# ||9xu.com^$third-party (easylistchina.txt: 628) +.9xu.com +# ||9w1an.com^$third-party (easylistchina.txt: 627) +.9w1an.com +# ||9ead.com^$third-party (easylistchina.txt: 626) +.9ead.com +# ||9718.com^$third-party (easylistchina.txt: 625) +.9718.com +# ||9519.net^$third-party (easylistchina.txt: 624) +.9519.net +# ||9377os.com^ (easylistchina.txt: 623) +.9377os.com +# ||9377ku.com^ (easylistchina.txt: 622) +.9377ku.com +# ||9377co.com^ (easylistchina.txt: 621) +.9377co.com +# ||91zgm.com^ (easylistchina.txt: 620) +.91zgm.com +# ||91ysa.com^ (easylistchina.txt: 619) +.91ysa.com +# ||9158918.com^$third-party (easylistchina.txt: 618) +.9158918.com +# ||913h6.cn^$third-party (easylistchina.txt: 617) +.913h6.cn +# ||911.cc^$third-party (easylistchina.txt: 616) +.911.cc +# ||8ox.cn^$third-party (easylistchina.txt: 615) +.8ox.cn +# ||8le8le.com^$third-party (easylistchina.txt: 614) +.8le8le.com +# ||892155.com^ (easylistchina.txt: 613) +.892155.com +# ||8910ad.com^$third-party (easylistchina.txt: 612) +.8910ad.com +# ||88rpg.net^ (easylistchina.txt: 611) +.88rpg.net +# ||88cpc.com^$third-party (easylistchina.txt: 610) +.88cpc.com +# ||85tgw.com^ (easylistchina.txt: 609) +.85tgw.com +# ||81c.cn^ (easylistchina.txt: 608) +.81c.cn +# ||7xz3.com^ (easylistchina.txt: 607) +.7xz3.com +# ||7wen.cn^ (easylistchina.txt: 606) +.7wen.cn +# ||7o2o.com^$third-party (easylistchina.txt: 605) +.7o2o.com +# ||7clink.com^$third-party (easylistchina.txt: 604) +.7clink.com +# ||7bwan.com^$third-party (easylistchina.txt: 603) +.7bwan.com +# ||788xj.com^$third-party (easylistchina.txt: 602) +.788xj.com +# ||77power.com^ (easylistchina.txt: 601) +.77power.com +# ||71sem.com^ (easylistchina.txt: 600) +.71sem.com +# ||710070.com^$third-party (easylistchina.txt: 599) +.710070.com +# ||70e.com^$third-party (easylistchina.txt: 598) +.70e.com +# ||6dvip.com^ (easylistchina.txt: 597) +.6dvip.com +# ||6dad.com^$third-party (easylistchina.txt: 596) +.6dad.com +# ||68665565.com^ (easylistchina.txt: 595) +.68665565.com +# ||685wo.com^$script,third-party (easylistchina.txt: 594) +.685wo.com +# ||67lm.com^$third-party (easylistchina.txt: 593) +.67lm.com +# ||66san.com^ (easylistchina.txt: 592) +.66san.com +# ||668559.com^$third-party (easylistchina.txt: 591) +.668559.com +# ||63kc.com^$third-party (easylistchina.txt: 590) +.63kc.com +# ||61.152.223.15^ (easylistchina.txt: 589) +.61.152.223.15 +# ||5mnh.com^$third-party (easylistchina.txt: 588) +.5mnh.com +# ||58.215.179.159^ (easylistchina.txt: 587) +.58.215.179.159 +# ||565882.com^$third-party (easylistchina.txt: 586) +.565882.com +# ||5399.com^$third-party (easylistchina.txt: 585) +.5399.com +# ||52kmk.com^ (easylistchina.txt: 584) +.52kmk.com +# ||52kmh.com^$third-party (easylistchina.txt: 583) +.52kmh.com +# ||526d.com^$third-party (easylistchina.txt: 582) +.526d.com +# ||51ads.com^$third-party (easylistchina.txt: 581) +.51ads.com +# ||4kt2.com^$subdocument (easylistchina.txt: 580) +.4kt2.com +# ||4936.cn^$third-party (easylistchina.txt: 579) +.4936.cn +# ||44pv.com^$third-party (easylistchina.txt: 578) +.44pv.com +# ||3p-link.com^$third-party (easylistchina.txt: 577) +.3p-link.com +# ||3g.990.net^ (easylistchina.txt: 576) +.3g.990.net +# ||3dwwwgame.com^$third-party (easylistchina.txt: 575) +.3dwwwgame.com +# ||3alian.net^$third-party (easylistchina.txt: 574) +.3alian.net +# ||3975lm.com^$third-party (easylistchina.txt: 573) +.3975lm.com +# ||38ra.com^$third-party (easylistchina.txt: 572) +.38ra.com +# ||3839168.com^$third-party (easylistchina.txt: 571) +.3839168.com +# ||3808010.com/code$third-party (easylistchina.txt: 570) +.3808010.com/code +# ||37cs.com^$third-party (easylistchina.txt: 569) +.37cs.com +# ||36pn.com^ (easylistchina.txt: 568) +.36pn.com +# ||366safego.com^ (easylistchina.txt: 567) +.366safego.com +# ||365safego.com^ (easylistchina.txt: 566) +.365safego.com +# ||365bibi.com^ (easylistchina.txt: 565) +.365bibi.com +# ||36500.net^$third-party (easylistchina.txt: 564) +.36500.net +# ||36500.com^$third-party (easylistchina.txt: 563) +.36500.com +# ||360doo.com^$third-party (easylistchina.txt: 562) +.360doo.com +# ||360baidus.com^ (easylistchina.txt: 561) +.360baidus.com +# ||3600ys.com^$third-party (easylistchina.txt: 560) +.3600ys.com +# ||3399.com/act/$third-party (easylistchina.txt: 559) +.3399.com/act/ +# ||32414.com^$third-party (easylistchina.txt: 558) +.32414.com +# ||321tui.com^$third-party (easylistchina.txt: 557) +.321tui.com +# ||321tui.cn^$third-party (easylistchina.txt: 556) +.321tui.cn +# ||2m2n.com^ (easylistchina.txt: 555) +.2m2n.com +# ||2529.com^$third-party (easylistchina.txt: 554) +.2529.com +# ||23kmm.com^$third-party (easylistchina.txt: 553) +.23kmm.com +# ||235123.net^$third-party (easylistchina.txt: 552) +.235123.net +# ||221.204.213.222^ (easylistchina.txt: 551) +.221.204.213.222 +# ||220.115.251.25^ (easylistchina.txt: 550) +.220.115.251.25 +# ||219.234.83.60^ (easylistchina.txt: 549) +.219.234.83.60 +# ||218.26.217.*.html (easylistchina.txt: 548) +.218.26.217.*./.*\.html +.218.26.217.*.html*. +# ||217wo.com^$third-party (easylistchina.txt: 547) +.217wo.com +# ||2155ec.com^$third-party (easylistchina.txt: 546) +.2155ec.com +# ||211.167.105.131^ (easylistchina.txt: 545) +.211.167.105.131 +# ||210.65.10.32^$third-party (easylistchina.txt: 544) +.210.65.10.32 +# ||2012ui.com^ (easylistchina.txt: 543) +.2012ui.com +# ||201071.com^ (easylistchina.txt: 542) +.201071.com +# ||1v7.cn^$third-party (easylistchina.txt: 541) +.1v7.cn +# ||1qwe3r.com^$third-party (easylistchina.txt: 540) +.1qwe3r.com +# ||1lo0.net^$third-party (easylistchina.txt: 539) +.1lo0.net +# ||1l1.cc^ (easylistchina.txt: 538) +.1l1.cc +# ||182.92.81.104^ (easylistchina.txt: 537) +.182.92.81.104 +# ||1503.net/code/ (easylistchina.txt: 536) +.1503.net/code/ +# ||139site.com^$third-party (easylistchina.txt: 535) +.139site.com +# ||139.159.32.82^ (easylistchina.txt: 534) +.139.159.32.82 +# ||12l22.net^$third-party (easylistchina.txt: 533) +.12l22.net +# ||123hala.com^ (easylistchina.txt: 532) +.123hala.com +# ||122.227.254.195^ (easylistchina.txt: 531) +.122.227.254.195 +# ||1188.com^$third-party (easylistchina.txt: 530) +.1188.com +# ||118114.cn^$third-party (easylistchina.txt: 529) +.118114.cn +# ||116.55.227.242^ (easylistchina.txt: 528) +.116.55.227.242 +# ||1133.cc^$third-party (easylistchina.txt: 526) +.1133.cc +# ||112.124.98.75^ (easylistchina.txt: 525) +.112.124.98.75 +# ||111111qb.com^ (easylistchina.txt: 524) +.111111qb.com +# ||111.175.219.7^ (easylistchina.txt: 523) +.111.175.219.7 +# ||110160.com^$third-party (easylistchina.txt: 522) +.110160.com +# ||106.187.95.251^ (easylistchina.txt: 521) +.106.187.95.251 +# ||104.195.62.12^ (easylistchina.txt: 520) +.104.195.62.12 +# ||103.249.111.179^$third-party (easylistchina.txt: 519) +.103.249.111.179 +# ||100cpc.com^$third-party (easylistchina.txt: 518) +.100cpc.com +# ||0xxd.com^ (easylistchina.txt: 517) +.0xxd.com +# ||0756j.com^$third-party (easylistchina.txt: 516) +.0756j.com +# ||0591101.com^$third-party (easylistchina.txt: 515) +.0591101.com +# ||033.com^$third-party (easylistchina.txt: 514) +.033.com +# |http://tk.*.php?id=*&step= (easylistchina.txt: 513) +tk.*./.*\.php\?id=.*&step= +# |http://tk.*.php?id=*&s=$script (easylistchina.txt: 512) +tk.*./.*\.php\?id=.*&s= +# |http://p.*.com/view.php?uid=$script,third-party (easylistchina.txt: 511) +p.*./.*\.com/view\.php\?uid= +p.*.com/view\.php\?uid= +# |http://1.3.0.10^ (easylistchina.txt: 510) +1.3.0.10 +# |http://*:*/s.php?id=$script,third-party (easylistchina.txt: 509) +/.*:.*/s\.php\?id= +.*:*./(.*/)?s\.php\?id= +# |http://*//s.php?id=$script,third-party (easylistchina.txt: 508) +/(.*/)?/s\.php\?id= +# |http://*.tw/s.php?id=$script,third-party (easylistchina.txt: 507) +/.*\.tw/s\.php\?id= +.*.tw/s\.php\?id= +# |http://*.info/s.php?id=$script,third-party (easylistchina.txt: 506) +/.*\.info/s\.php\?id= +.*.info/s\.php\?id= +# |http://*.com/s.php?id=$script,third-party (easylistchina.txt: 505) +/.*\.com/s\.php\?id= +.*.com/s\.php\?id= +# |http://*.cn/s.php?id=$script,third-party (easylistchina.txt: 504) +/.*\.cn/s\.php\?id= +.*.cn/s\.php\?id= +# |http://*.cc/s.php?id=$script,third-party (easylistchina.txt: 503) +/.*\.cc/s\.php\?id= +.*.cc/s\.php\?id= +# :9001/code/ (easylistchina.txt: 502) +/.*:9001/code/ +# :8080/js/v2.1.js$third-party (easylistchina.txt: 501) +/.*:8080/js/v2\.1\.js +# :8080/js/v1.js$third-party (easylistchina.txt: 500) +/.*:8080/js/v1\.js +# /v.php?z=$script,third-party (easylistchina.txt: 499) +/(.*/)?v\.php\?z= +# /tourl.html?url= (easylistchina.txt: 498) +/(.*/)?tourl\.html\?url= +# /svr/popwin.aspx?$third-party (easylistchina.txt: 497) +/(.*/)?svr/popwin\.aspx\? +# /pge/?s=$third-party (easylistchina.txt: 496) +/(.*/)?pge/\?s= +# /pd2.js$third-party (easylistchina.txt: 495) +/(.*/)?pd2\.js +pd2.js*. +# /pagecpv/* (easylistchina.txt: 494) +/(.*/)?pagecpv/.* +# /page/s.php?s=$third-party (easylistchina.txt: 493) +/(.*/)?page/s\.php\?s= +# /page/index.php?s=$third-party (easylistchina.txt: 492) +/(.*/)?page/index\.php\?s= +# /page/?s=$third-party (easylistchina.txt: 491) +/(.*/)?page/\?s= +# /mshow.aspx?AID= (easylistchina.txt: 490) +/(.*/)?mshow\.aspx\?AID= +# /mobile/mads.js (easylistchina.txt: 489) +/(.*/)?mobile/mads\.js +# /js/cpv_dl.js (easylistchina.txt: 488) +/(.*/)?js/cpv_dl\.js +# /i.php?z=$script,third-party (easylistchina.txt: 487) +/(.*/)?i\.php\?z= +# /floatingcontent/*$third-party (easylistchina.txt: 486) +/(.*/)?floatingcontent/.* +# /cpm/i.ashx? (easylistchina.txt: 485) +/(.*/)?cpm/i\.ashx\? +# /code/popjs. (easylistchina.txt: 484) +/(.*/)?code/popjs\. +# /code/pop_cpf. (easylistchina.txt: 483) +/(.*/)?code/pop_cpf\. +# /code/mypop.asp? (easylistchina.txt: 482) +/(.*/)?code/mypop\.asp\? +# /code/cpv.asp? (easylistchina.txt: 481) +/(.*/)?code/cpv\.asp\? +# /code/cpm.asp? (easylistchina.txt: 480) +/(.*/)?code/cpm\.asp\? +# /code/cpc.asp? (easylistchina.txt: 479) +/(.*/)?code/cpc\.asp\? +# /center?advId= (easylistchina.txt: 478) +/(.*/)?center\?advId= +# /AShow.aspx?AID= (easylistchina.txt: 477) +/(.*/)?AShow\.aspx\?AID= +# /adscpc/* (easylistchina.txt: 476) +/(.*/)?adscpc/.* +# /99vjj/*$third-party (easylistchina.txt: 475) +/(.*/)?99vjj/.* +# .com/mediaController.php?pid=$script,third-party (easylistchina.txt: 474) +/.*\.com/mediaController\.php\?pid= +.*.com/mediaController\.php\?pid= +# |http://ad. (easylistchina.txt: 269) +ad.*. +# |http://acs. (easylistchina.txt: 268) +acs.*. +# |http://*/s.js?sp=*&r=$third-party (easylistchina.txt: 267) +/(.*/)?s\.js\?sp=.*&r= +# |http://*/js/tc.js (easylistchina.txt: 266) +/(.*/)?js/tc\.js +# |http://*/js/ad/ (easylistchina.txt: 265) +/(.*/)?js/ad/ +# |http://*/gg3. (easylistchina.txt: 263) +/(.*/)?gg3\. +# |http://*/gg2. (easylistchina.txt: 262) +/(.*/)?gg2\. +# |http://*/gg1. (easylistchina.txt: 261) +/(.*/)?gg1\. +# |http://*/ad.js?v= (easylistchina.txt: 259) +/(.*/)?ad\.js\?v= +# |http://*/ad.js?sn= (easylistchina.txt: 258) +/(.*/)?ad\.js\?sn= +# |http://*/ad.*.js?v=*&sp= (easylistchina.txt: 257) +/(.*/)?ad\..*\.js\?v=.*&sp= +# |http://*/*_ad.js (easylistchina.txt: 256) +/(.*/)?.*_ad\.js +# |http://*.us/ad/ (easylistchina.txt: 255) +/.*\.us/ad/ +.*.us/ad/ +# |http://*.tv/ad/ (easylistchina.txt: 253) +/.*\.tv/ad/ +.*.tv/ad/ +# |http://*.in/ad/ (easylistchina.txt: 252) +/.*\.in/ad/ +.*.in/ad/ +# |http://*.hk/ad/ (easylistchina.txt: 251) +/.*\.hk/ad/ +.*.hk/ad/ +# |http://*.cn/ad/ (easylistchina.txt: 250) +/.*\.cn/ad/ +.*.cn/ad/ +# |http://*.cc/ad/ (easylistchina.txt: 249) +/.*\.cc/ad/ +.*.cc/ad/ +# _mobilebanner_v1_550x60.jpg (easylistchina.txt: 248) +/.*_mobilebanner_v1_550x60\.jpg +# _billboard_320x100.iframe. (easylistchina.txt: 247) +/.*_billboard_320x100\.iframe\. +# =loginExtAD. (easylistchina.txt: 246) +/.*=loginExtAD\. +# :8898/ads_ (easylistchina.txt: 245) +/.*:8898/ads_ +# :8080/ad/ (easylistchina.txt: 244) +/.*:8080/ad/ +# :1010/openV5.js (easylistchina.txt: 243) +/.*:1010/openV5\.js +# /zzhzad/* (easylistchina.txt: 242) +/(.*/)?zzhzad/.* +# /znds/images/dangbeigif.gif (easylistchina.txt: 241) +/(.*/)?znds/images/dangbeigif\.gif +# /xianxiashijie_ad.png (easylistchina.txt: 240) +/(.*/)?xianxiashijie_ad\.png +# /wy96ad/* (easylistchina.txt: 239) +/(.*/)?wy96ad/.* +# /wp-content/themes/iMovies/js/tc_ (easylistchina.txt: 238) +/(.*/)?wp-content/themes/iMovies/js/tc_ +# /W3Cfuns_Adv/* (easylistchina.txt: 237) +/(.*/)?W3Cfuns_Adv/.* +# /uedbet/pause. (easylistchina.txt: 236) +/(.*/)?uedbet/pause\. +# /u/_sponsor/* (easylistchina.txt: 235) +/(.*/)?u/_sponsor/.* +# /tuiguang/* (easylistchina.txt: 234) +/(.*/)?tuiguang/.* +# /ttmeiju/images/ts.gif (easylistchina.txt: 233) +/(.*/)?ttmeiju/images/ts\.gif +# /tmall11nov2015-2.jpg (easylistchina.txt: 232) +/(.*/)?tmall11nov2015-2\.jpg +tmall11nov2015-2.jpg*. +# /tigtag_custom/include/popup. (easylistchina.txt: 231) +/(.*/)?tigtag_custom/include/popup\. +# /tigtag_custom/include/couplet. (easylistchina.txt: 230) +/(.*/)?tigtag_custom/include/couplet\. +# /tigtag_custom/*_banner (easylistchina.txt: 229) +/(.*/)?tigtag_custom/.*_banner +# /template/gg.js (easylistchina.txt: 228) +/(.*/)?template/gg\.js +# /taobaoad.html (easylistchina.txt: 227) +/(.*/)?taobaoad\.html +taobaoad.html*. +# /tanchuang. (easylistchina.txt: 226) +/(.*/)?tanchuang\. +tanchuang.*. +# /tanad.js (easylistchina.txt: 225) +/(.*/)?tanad\.js +tanad.js*. +# /tan.js (easylistchina.txt: 224) +/(.*/)?tan\.js +tan.js*. +# /taihai/v2014/images/index/aa_10. (easylistchina.txt: 223) +/(.*/)?taihai/v2014/images/index/aa_10\. +# /sygg/* (easylistchina.txt: 222) +/(.*/)?sygg/.* +# /sxgg/13 (easylistchina.txt: 221) +/(.*/)?sxgg/13 +# /sxgg/12.js (easylistchina.txt: 220) +/(.*/)?sxgg/12\.js +# /static/adsview/* (easylistchina.txt: 219) +/(.*/)?static/adsview/.* +# /ssdxad.swf (easylistchina.txt: 218) +/(.*/)?ssdxad\.swf +ssdxad.swf*. +# /source/plugin/mama_tips/* (easylistchina.txt: 217) +/(.*/)?source/plugin/mama_tips/.* +# /sogouAD. (easylistchina.txt: 216) +/(.*/)?sogouAD\. +sogouAD.*. +# /show.js?sp=*&oid= (easylistchina.txt: 215) +/(.*/)?show\.js\?sp=.*&oid= +# /Runtime/js/top960.js (easylistchina.txt: 214) +/(.*/)?Runtime/js/top960\.js +# /runtime/js/index960.js (easylistchina.txt: 213) +/(.*/)?runtime/js/index960\.js +# /qqyouyuead/* (easylistchina.txt: 212) +/(.*/)?qqyouyuead/.* +# /qqlive/conf/playerlottery/* (easylistchina.txt: 211) +/(.*/)?qqlive/conf/playerlottery/.* +# /qqguojiad/* (easylistchina.txt: 210) +/(.*/)?qqguojiad/.* +# /qpxl.js (easylistchina.txt: 209) +/(.*/)?qpxl\.js +qpxl.js*. +# /QianFanAdPalyer. (easylistchina.txt: 208) +/(.*/)?QianFanAdPalyer\. +QianFanAdPalyer.*. +# /proxy.html?id= (easylistchina.txt: 207) +/(.*/)?proxy\.html\?id= +# /proxy.htm?id= (easylistchina.txt: 206) +/(.*/)?proxy\.htm\?id= +# /pop_DJ2010.swf (easylistchina.txt: 205) +/(.*/)?pop_DJ2010\.swf +# /plugin.php?id=popad_7ree& (easylistchina.txt: 204) +/(.*/)?plugin\.php\?id=popad_7ree& +# /pic/ad/* (easylistchina.txt: 202) +/(.*/)?pic/ad/.* +# /piaofu.js (easylistchina.txt: 201) +/(.*/)?piaofu\.js +piaofu.js*. +# /pc/Tpl/baibaipc/js/* (easylistchina.txt: 200) +/(.*/)?pc/Tpl/baibaipc/js/.* +# /pc/Tpl/baibaipc//js/* (easylistchina.txt: 199) +/(.*/)?pc/Tpl/baibaipc//js/.* +# /paypic/* (easylistchina.txt: 198) +/(.*/)?paypic/.* +# /newsyd/templates/sponsor/* (easylistchina.txt: 197) +/(.*/)?newsyd/templates/sponsor/.* +# /new_site_topad^ (easylistchina.txt: 196) +/(.*/)?new_site_topad[^\w%.-] +# /nanrenpeng/ads/* (easylistchina.txt: 195) +/(.*/)?nanrenpeng/ads/.* +# /myimg/alimama2014.html (easylistchina.txt: 194) +/(.*/)?myimg/alimama2014\.html +# /moneymaker-banners/ads_ (easylistchina.txt: 193) +/(.*/)?moneymaker-banners/ads_ +# /module/adsview/* (easylistchina.txt: 192) +/(.*/)?module/adsview/.* +# /main/s? (easylistchina.txt: 191) +/(.*/)?main/s\? +# /main.js?v=*&sp=*&ty= (easylistchina.txt: 190) +/(.*/)?main\.js\?v=.*&sp=.*&ty= +# /lfadvertise.js (easylistchina.txt: 189) +/(.*/)?lfadvertise\.js +lfadvertise.js*. +# /lfAD2v1.1.js (easylistchina.txt: 188) +/(.*/)?lfAD2v1\.1\.js +lfAD2v1.1.js*. +# /lenovo/pc/all.js (easylistchina.txt: 187) +/(.*/)?lenovo/pc/all\.js +# /kuaiyun-728-91. (easylistchina.txt: 186) +/(.*/)?kuaiyun-728-91\. +kuaiyun-728-91.*. +# /k960g90. (easylistchina.txt: 185) +/(.*/)?k960g90\. +k960g90.*. +# /k300g250. (easylistchina.txt: 184) +/(.*/)?k300g250\. +k300g250.*. +# /k120g270. (easylistchina.txt: 183) +/(.*/)?k120g270\. +k120g270.*. +# /jumbo_banner_Gif_ (easylistchina.txt: 182) +/(.*/)?jumbo_banner_Gif_ +# /jsadv/* (easylistchina.txt: 181) +/(.*/)?jsadv/.* +# /js/utils78.js (easylistchina.txt: 180) +/(.*/)?js/utils78\.js +# /js/utils51.js (easylistchina.txt: 179) +/(.*/)?js/utils51\.js +# /js/guanggao_gg.js (easylistchina.txt: 178) +/(.*/)?js/guanggao_gg\.js +# /js/bocaiadv. (easylistchina.txt: 177) +/(.*/)?js/bocaiadv\. +# /js/ads/zuoxiajiao.js (easylistchina.txt: 176) +/(.*/)?js/ads/zuoxiajiao\.js +# /js/ads/youxiajiao.js (easylistchina.txt: 175) +/(.*/)?js/ads/youxiajiao\.js +# /js/ads/yezi (easylistchina.txt: 174) +/(.*/)?js/ads/yezi +# /js/ads/to (easylistchina.txt: 173) +/(.*/)?js/ads/to +# /js/ads/piao.js (easylistchina.txt: 172) +/(.*/)?js/ads/piao\.js +# /js/ads/neiye (easylistchina.txt: 171) +/(.*/)?js/ads/neiye +# /js/ads/dui.js (easylistchina.txt: 170) +/(.*/)?js/ads/dui\.js +# /ina_ad_ (easylistchina.txt: 169) +/(.*/)?ina_ad_ +# /h/k.php?u=*&l=*&v=$third-party (easylistchina.txt: 168) +/(.*/)?h/k\.php\?u=.*&l=.*&v= +# /guanggao2. (easylistchina.txt: 167) +/(.*/)?guanggao2\. +guanggao2.*. +# /guanggao/* (easylistchina.txt: 166) +/(.*/)?guanggao/.* +# /guanggao. (easylistchina.txt: 165) +/(.*/)?guanggao\. +guanggao.*. +# /guangg/* (easylistchina.txt: 164) +/(.*/)?guangg/.* +# /guangao/* (easylistchina.txt: 163) +/(.*/)?guangao/.* +# /guang/930x90. (easylistchina.txt: 162) +/(.*/)?guang/930x90\. +# /ggtp/* (easylistchina.txt: 161) +/(.*/)?ggtp/.* +# /ggpic/* (easylistchina.txt: 160) +/(.*/)?ggpic/.* +# /ggjs/* (easylistchina.txt: 159) +/(.*/)?ggjs/.* +# /ggao/* (easylistchina.txt: 158) +/(.*/)?ggao/.* +# /ggao. (easylistchina.txt: 157) +/(.*/)?ggao\. +ggao.*. +# /ggad/* (easylistchina.txt: 156) +/(.*/)?ggad/.* +# /gg5. (easylistchina.txt: 155) +/(.*/)?gg5\. +gg5.*. +# /gg4. (easylistchina.txt: 154) +/(.*/)?gg4\. +gg4.*. +# /gaog/* (easylistchina.txt: 153) +/(.*/)?gaog/.* +# /floatad2. (easylistchina.txt: 152) +/(.*/)?floatad2\. +floatad2.*. +# /float_r.js (easylistchina.txt: 150) +/(.*/)?float_r\.js +# /ettoday/gemini/* (easylistchina.txt: 149) +/(.*/)?ettoday/gemini/.* +# /dy_66jjss/* (easylistchina.txt: 148) +/(.*/)?dy_66jjss/.* +# /duilian_gg. (easylistchina.txt: 147) +/(.*/)?duilian_gg\. +# /duilian2. (easylistchina.txt: 146) +/(.*/)?duilian2\. +duilian2.*. +# /diantan.js (easylistchina.txt: 144) +/(.*/)?diantan\.js +diantan.js*. +# /data/cache/myad- (easylistchina.txt: 143) +/(.*/)?data/cache/myad- +# /data/ad/* (easylistchina.txt: 142) +/(.*/)?data/ad/.* +# /cpro/ui/* (easylistchina.txt: 141) +/(.*/)?cpro/ui/.* +# /content/plugins/em_ad/* (easylistchina.txt: 140) +/(.*/)?content/plugins/em_ad/.* +# /common/cf/*$image,object (easylistchina.txt: 139) +/(.*/)?common/cf/.* +# /comiis_kmsjx3hlx/ads/* (easylistchina.txt: 138) +/(.*/)?comiis_kmsjx3hlx/ads/.* +# /comiis_19lou/ads/* (easylistchina.txt: 137) +/(.*/)?comiis_19lou/ads/.* +# /clicktotal/ClickTotal.js (easylistchina.txt: 136) +/(.*/)?clicktotal/ClickTotal\.js +# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina.txt: 135) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*pagead2\. +# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina.txt: 134) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*p\.tanx\.com +# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina.txt: 133) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.overture\.com +# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina.txt: 132) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.humanding\.com +# /caiguu_gg_ (easylistchina.txt: 131) +/(.*/)?caiguu_gg_ +# /caches/poster_js/* (easylistchina.txt: 130) +/(.*/)?caches/poster_js/.* +# /cache/ad_js/* (easylistchina.txt: 129) +/(.*/)?cache/ad_js/.* +# /btba/ad/* (easylistchina.txt: 128) +/(.*/)?btba/ad/.* +# /botad.html (easylistchina.txt: 127) +/(.*/)?botad\.html +botad.html*. +# /bbh_ad_ (easylistchina.txt: 126) +/(.*/)?bbh_ad_ +# /bbh_ad. (easylistchina.txt: 125) +/(.*/)?bbh_ad\. +# /Banner-pcbeta- (easylistchina.txt: 124) +/(.*/)?Banner-pcbeta- +Banner-pcbeta-*. +# /aoyou372down300_ (easylistchina.txt: 123) +/(.*/)?aoyou372down300_ +# /ajds/* (easylistchina.txt: 122) +/(.*/)?ajds/.* +# /aipaiPlayFull2.js?0. (easylistchina.txt: 121) +/(.*/)?aipaiPlayFull2\.js\?0\. +# /adx-exchange. (easylistchina.txt: 120) +/(.*/)?adx-exchange\. +adx-exchange.*. +# /advpic/* (easylistchina.txt: 119) +/(.*/)?advpic/.* +# /AdverJS/* (easylistchina.txt: 118) +/(.*/)?AdverJS/.* +# /adpv?cn= (easylistchina.txt: 117) +/(.*/)?adpv\?cn= +# /adpuba/* (easylistchina.txt: 116) +/(.*/)?adpuba/.* +# /adpro.js (easylistchina.txt: 115) +/(.*/)?adpro\.js +adpro.js*. +# /adpfile/* (easylistchina.txt: 114) +/(.*/)?adpfile/.* +# /adintrs/* (easylistchina.txt: 113) +/(.*/)?adintrs/.* +# /adblockTester2.js (easylistchina.txt: 112) +/(.*/)?adblockTester2\.js +adblockTester2.js*. +# /adblockTester1.js (easylistchina.txt: 111) +/(.*/)?adblockTester1\.js +adblockTester1.js*. +# /adblockTester.js (easylistchina.txt: 110) +/(.*/)?adblockTester\.js +adblockTester.js*. +# /AD2v1.1.js (easylistchina.txt: 109) +/(.*/)?AD2v1\.1\.js +AD2v1.1.js*. +# /acmsd/* (easylistchina.txt: 108) +/(.*/)?acmsd/.* +# /a/p?adid= (easylistchina.txt: 107) +/(.*/)?a/p\?adid= +# /9115gg/* (easylistchina.txt: 106) +/(.*/)?9115gg/.* +# /119g/640x60_ (easylistchina.txt: 105) +/(.*/)?119g/640x60_ +# .us/js/ads/ (easylistchina.txt: 104) +/.*\.us/js/ads/ +.*.us/js/ads/ +# .net/js/ads/ (easylistchina.txt: 103) +/.*\.net/js/ads/ +.*.net/js/ads/ +# .js?advertID= (easylistchina.txt: 102) +/.*\.js\?advertID= +# .info/js/alls_top.js (easylistchina.txt: 101) +/.*\.info/js/alls_top\.js +.*.info/js/alls_top\.js +# .info/js/alls_foot.js (easylistchina.txt: 100) +/.*\.info/js/alls_foot\.js +.*.info/js/alls_foot\.js +# .info/js/ads/ (easylistchina.txt: 99) +/.*\.info/js/ads/ +.*.info/js/ads/ +# .info/ad/ (easylistchina.txt: 98) +/.*\.info/ad/ +.*.info/ad/ +# .info/ad.js (easylistchina.txt: 97) +/.*\.info/ad\.js +.*.info/ad\.js +# .in/js/ads/ (easylistchina.txt: 96) +/.*\.in/js/ads/ +.*.in/js/ads/ +# .com/vodad.js (easylistchina.txt: 95) +/.*\.com/vodad\.js +.*.com/vodad\.js +# .com/pc/ad/ (easylistchina.txt: 94) +/.*\.com/pc/ad/ +.*.com/pc/ad/ +# .com/js/alls_top.js (easylistchina.txt: 93) +/.*\.com/js/alls_top\.js +.*.com/js/alls_top\.js +# .com/js/alls_foot.js (easylistchina.txt: 92) +/.*\.com/js/alls_foot\.js +.*.com/js/alls_foot\.js +# .com/js/ad_ (easylistchina.txt: 91) +/.*\.com/js/ad_ +.*.com/js/ad_ +# .com/a_d/ (easylistchina.txt: 90) +/.*\.com/a_d/ +.*.com/a_d/ +# .co/js/ads/ (easylistchina.txt: 89) +/.*\.co/js/ads/ +.*.co/js/ads/ +# .cn/js/ads/ (easylistchina.txt: 88) +/.*\.cn/js/ads/ +.*.cn/js/ads/ +# .cn/ads/ (easylistchina.txt: 87) +/.*\.cn/ads/ +.*.cn/ads/ +# .cc/js/ads/ (easylistchina.txt: 86) +/.*\.cc/js/ads/ +.*.cc/js/ads/ +# .bl.test15. (easylistchina.txt: 85) +/.*\.bl\.test15\. +.*.bl.test15.*. +# ||yy32.com^$third-party (easylistchina.txt: 82) +.yy32.com +# ||xq12.com^$third-party (easylistchina.txt: 81) +.xq12.com +# ||xixianad.com^$third-party (easylistchina.txt: 80) +.xixianad.com +# ||wofan.net^$third-party (easylistchina.txt: 79) +.wofan.net +# ||v.xi666.com^$third-party (easylistchina.txt: 78) +.v.xi666.com +# ||ugoooo.com^$third-party (easylistchina.txt: 77) +.ugoooo.com +# ||uctrac.com^$third-party (easylistchina.txt: 76) +.uctrac.com +# ||ubcpm.com^$third-party (easylistchina.txt: 75) +.ubcpm.com +# ||tuiguang.178.com^ (easylistchina.txt: 74) +.tuiguang.178.com +# ||szvr.com^$third-party (easylistchina.txt: 73) +.szvr.com +# ||sitemaji.com^$third-party (easylistchina.txt: 72) +.sitemaji.com +# ||samboc.com^$third-party (easylistchina.txt: 71) +.samboc.com +# ||s.yimg.com/ja/ap/tw/js/ (easylistchina.txt: 69) +.s.yimg.com/ja/ap/tw/js/ +# ||rekanw.com^$third-party (easylistchina.txt: 68) +.rekanw.com +# ||rayli.com.cn^$third-party (easylistchina.txt: 67) +.rayli.com.cn +# ||qling.com^$third-party (easylistchina.txt: 66) +.qling.com +# ||oeya.com^$third-party (easylistchina.txt: 65) +.oeya.com +# ||niwota.com^$third-party (easylistchina.txt: 64) +.niwota.com +# ||mosa86.com^$third-party (easylistchina.txt: 63) +.mosa86.com +# ||lu.sogou.com^$subdocument (easylistchina.txt: 62) +.lu.sogou.com +# ||log.interest.mix.sina.com.cn^ (easylistchina.txt: 61) +.log.interest.mix.sina.com.cn +# ||lm.35.com^$third-party (easylistchina.txt: 60) +.lm.35.com +# ||lianjie.phpwind.com^$third-party (easylistchina.txt: 59) +.lianjie.phpwind.com +# ||kuqi.com^$third-party (easylistchina.txt: 58) +.kuqi.com +# ||kuaiwan.com^$third-party (easylistchina.txt: 57) +.kuaiwan.com +# ||image.qndown.com^$third-party (easylistchina.txt: 56) +.image.qndown.com +# ||ilepai.com^$third-party (easylistchina.txt: 55) +.ilepai.com +# ||ifocus.cn^$third-party (easylistchina.txt: 54) +.ifocus.cn +# ||hz3137.com^$third-party (easylistchina.txt: 53) +.hz3137.com +# ||housefun.com.tw^$third-party (easylistchina.txt: 52) +.housefun.com.tw +# ||hiad.myweb.hinet.net^ (easylistchina.txt: 51) +.hiad.myweb.hinet.net +# ||googleadsl.com^$third-party (easylistchina.txt: 50) +.googleadsl.com +# ||flashwing.net^$third-party (easylistchina.txt: 49) +.flashwing.net +# ||ee4kdushuba.com^$third-party (easylistchina.txt: 48) +.ee4kdushuba.com +# ||dingge.cc^$third-party (easylistchina.txt: 47) +.dingge.cc +# ||dian5000.com^$third-party (easylistchina.txt: 46) +.dian5000.com +# ||cpm360.com^$third-party (easylistchina.txt: 45) +.cpm360.com +# ||caiyifz.com^$third-party (easylistchina.txt: 44) +.caiyifz.com +# ||buzzads.com^$third-party (easylistchina.txt: 43) +.buzzads.com +# ||boosj.com^$third-party (easylistchina.txt: 42) +.boosj.com +# ||bmw100.cn^$third-party (easylistchina.txt: 41) +.bmw100.cn +# ||blog.xuite.net/_public/js/ysmad.js (easylistchina.txt: 40) +.blog.xuite.net/_public/js/ysmad\.js +# ||baitaiad.com^$third-party (easylistchina.txt: 39) +.baitaiad.com +# ||artxun.com^$third-party (easylistchina.txt: 38) +.artxun.com +# ||aifei.info^$third-party (easylistchina.txt: 37) +.aifei.info +# ||ads80.com^$third-party (easylistchina.txt: 36) +.ads80.com +# ||adrs.sdo.com^ (easylistchina.txt: 35) +.adrs.sdo.com +# ||admaji.com^$third-party (easylistchina.txt: 34) +.admaji.com +# ||a.youdao.com^ (easylistchina.txt: 33) +.a.youdao.com +# ||77zhuan.com^$third-party (easylistchina.txt: 32) +.77zhuan.com +# ||7794.com^$third-party (easylistchina.txt: 31) +.7794.com +# ||52lover.info^$third-party (easylistchina.txt: 30) +.52lover.info +# ||49ko.com^$third-party (easylistchina.txt: 29) +.49ko.com +# ||37pk49.com^$third-party (easylistchina.txt: 28) +.37pk49.com +# ||1x3x.com^$third-party (easylistchina.txt: 27) +.1x3x.com +# ||12291.com^$third-party (easylistchina.txt: 26) +.12291.com +# ||116b.com^$third-party (easylistchina.txt: 25) +.116b.com +# ||114lm.com^$third-party (easylistchina.txt: 24) +.114lm.com +# /tan1.js (easylistchina.txt: 18) +/(.*/)?tan1\.js +tan1.js*. +# /attachments/ad/* (easylistchina.txt: 17) +/(.*/)?attachments/ad/.* +# /adflash/* (easylistchina.txt: 16) +/(.*/)?adflash/.* + +#ab2p-block-dnt-R1 +{+client-header-tagger{ab2p-block-dnt-R1} \ +} +# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tb001.xyz|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina.txt: 1177) +/(.*/)?images/.*\.gif + +#ab2p-block-dnt-R2 +{+client-header-tagger{ab2p-block-dnt-R2} \ +} +# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tb001.xyz|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina.txt: 4590) +.sinaimg.cn/.*\.gif + +#ab2p-block-dnt-R3 +{+client-header-tagger{ab2p-block-dnt-R3} \ +} +# ||chinaacc.com^$domain=100ksw.com (easylistchina.txt: 2414) +.chinaacc.com + +#ab2p-block-dnt-R4 +{+client-header-tagger{ab2p-block-dnt-R4} \ +} +# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina.txt: 1184) +/(.*/)?images/moe + +#ab2p-block-dnt-R5 +{+client-header-tagger{ab2p-block-dnt-R5} \ +} +# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina.txt: 1159) +/(.*/)?config\. +config.*. + +#ab2p-block-dnt-R6 +{+client-header-tagger{ab2p-block-dnt-R6} \ +} +# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina.txt: 1228) +/(.*/)?Sitefiles/.* + +#ab2p-block-dnt-R7 +{+client-header-tagger{ab2p-block-dnt-R7} \ +} +# ||sohucs.com^*_gif$domain=12580sky.com (easylistchina.txt: 4633) +.sohucs.com/.*_gif + +#ab2p-block-dnt-R8 +{+client-header-tagger{ab2p-block-dnt-R8} \ +} +# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina.txt: 1118) +/.*\.gif$ +.*.gif + +#ab2p-block-dnt-R9 +{+client-header-tagger{ab2p-block-dnt-R9} \ +} +# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina.txt: 1116) +/.*\.com/x/ +.*.com/x/ + +#ab2p-block-dnt-R10 +{+client-header-tagger{ab2p-block-dnt-R10} \ +} +# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina.txt: 1279) +/(.*/)?ts\.js + +#ab2p-block-dnt-R11 +{+client-header-tagger{ab2p-block-dnt-R11} \ +} +# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina.txt: 4822) +.tinypic.com + +#ab2p-block-dnt-R12 +{+client-header-tagger{ab2p-block-dnt-R12} \ +} +# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84fn.com|99ee1.com|99re5.com|99rr6.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|caoliuzx.com|cililian.me|fdzone.org|izzs.cc|jisuzhibo.net|links.hjav.in|liulanmi.com|sbme.me|taohuazu.tw|thzhd.net|ttdyy.tv|xinqixi.com|xxxbt.com|youb444.com|zhiboche.com (easylistchina.txt: 4589) +.sinaimg.cn + +#ab2p-block-dnt-R13 +{+client-header-tagger{ab2p-block-dnt-R13} \ +} +# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1229) +/(.*/)?skin/tb12/.* +# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1192) +/(.*/)?img/skin/.*_bg\. + +#ab2p-block-dnt-R14 +{+client-header-tagger{ab2p-block-dnt-R14} \ +} +# |http:$script,domain=189so.cn (easylistchina.txt: 1269) + +#ab2p-block-dnt-R15 +{+client-header-tagger{ab2p-block-dnt-R15} \ +} +# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina.txt: 3456) +.imgmega.com/i/.*\.gif + +#ab2p-block-dnt-R16 +{+client-header-tagger{ab2p-block-dnt-R16} \ +} +# ||imgur.com^*.gif$domain=18p2p.com (easylistchina.txt: 3468) +.imgur.com/.*\.gif + +#ab2p-block-dnt-R17 +{+client-header-tagger{ab2p-block-dnt-R17} \ +} +# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina.txt: 2388) +.cdndm.com/3/2015/ + +#ab2p-block-dnt-R18 +{+client-header-tagger{ab2p-block-dnt-R18} \ +} +# |http://*/adblock$domain=26766.com (easylistchina.txt: 1275) +/(.*/)?adblock + +#ab2p-block-dnt-R19 +{+client-header-tagger{ab2p-block-dnt-R19} \ +} +# /the_top$domain=28188.com|28188.net (easylistchina.txt: 1235) +/(.*/)?the_top +# /banner.js$domain=28188.com|28188.net (easylistchina.txt: 1151) +/(.*/)?banner\.js +banner.js*. + +#ab2p-block-dnt-R20 +{+client-header-tagger{ab2p-block-dnt-R20} \ +} +# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina.txt: 4564) +.sinaimg.cn/large/ + +#ab2p-block-dnt-R21 +{+client-header-tagger{ab2p-block-dnt-R21} \ +} +# ||qpic.cn^$domain=360-bo.com|pptiyu.com (easylistchina.txt: 4318) +.qpic.cn + +#ab2p-block-dnt-R22 +{+client-header-tagger{ab2p-block-dnt-R22} \ +} +# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina.txt: 1136) +/(.*/)?ad2014\.js +ad2014.js*. + +#ab2p-block-dnt-R23 +{+client-header-tagger{ab2p-block-dnt-R23} \ +} +# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina.txt: 1212) +/(.*/)?mydisplay\.php\?i= + +#ab2p-block-dnt-R24 +{+client-header-tagger{ab2p-block-dnt-R24} \ +} +# /xiaoshuo.js$domain=45zw.com (easylistchina.txt: 1252) +/(.*/)?xiaoshuo\.js +xiaoshuo.js*. + +#ab2p-block-dnt-R25 +{+client-header-tagger{ab2p-block-dnt-R25} \ +} +# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1180) +/(.*/)?images/888\.gif +# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1178) +/(.*/)?images/.*gamble +# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1170) +/(.*/)?gennie_b\.htm + +#ab2p-block-dnt-R26 +{+client-header-tagger{ab2p-block-dnt-R26} \ +} +# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina.txt: 1193) +/(.*/)?ipower\.htm +ipower.htm*. + +#ab2p-block-dnt-R27 +{+client-header-tagger{ab2p-block-dnt-R27} \ +} +# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina.txt: 1196) +/(.*/)?js/gTool\.js + +#ab2p-block-dnt-R28 +{+client-header-tagger{ab2p-block-dnt-R28} \ +} +# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|downhhh.com|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina.txt: 1067) + +#ab2p-block-dnt-R29 +{+client-header-tagger{ab2p-block-dnt-R29} \ +} +# ||wal8.com^$domain=52jifenbao.net (easylistchina.txt: 4974) +.wal8.com +# ||qiniudn.com^$domain=52jifenbao.net (easylistchina.txt: 4283) +.qiniudn.com + +#ab2p-block-dnt-R30 +{+client-header-tagger{ab2p-block-dnt-R30} \ +} +# ||tietuku.com^$domain=5ydj.com|99ee1.com|99re5.com|99rr6.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina.txt: 4793) +.tietuku.com + +#ab2p-block-dnt-R31 +{+client-header-tagger{ab2p-block-dnt-R31} \ +} +# ||media.*.gif$domain=6668.se (easylistchina.txt: 3913) +.media.*./.*\.gif +.media.*.gif*. + +#ab2p-block-dnt-R32 +{+client-header-tagger{ab2p-block-dnt-R32} \ +} +# /js/top.js$domain=8comic.com|comicvip.com (easylistchina.txt: 1198) +/(.*/)?js/top\.js + +#ab2p-block-dnt-R33 +{+client-header-tagger{ab2p-block-dnt-R33} \ +} +# ||meimb.com^$domain=94as.com (easylistchina.txt: 3919) +.meimb.com + +#ab2p-block-dnt-R34 +{+client-header-tagger{ab2p-block-dnt-R34} \ +} +# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1278) +/(.*/)?t\.js +# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1277) +/(.*/)?p +# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1201) +/(.*/)?jsc/stat\.js +# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1200) +/(.*/)?jsc/Copy\.js +# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1199) +/(.*/)?jsc/book_ + +#ab2p-block-dnt-R35 +{+client-header-tagger{ab2p-block-dnt-R35} \ +} +# ||chuantu.biz^$domain=99ee1.com|99re5.com|99rr6.com (easylistchina.txt: 2461) +.chuantu.biz + +#ab2p-block-dnt-R36 +{+client-header-tagger{ab2p-block-dnt-R36} \ +} +# |http:$image,third-party,domain=99files.net (easylistchina.txt: 1268) + +#ab2p-block-dnt-R37 +{+client-header-tagger{ab2p-block-dnt-R37} \ +} +# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina.txt: 1104) +.taobao.com + +#ab2p-block-dnt-R38 +{+client-header-tagger{ab2p-block-dnt-R38} \ +} +# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina.txt: 4572) +.sinaimg.cn/large/ec76730dgw + +#ab2p-block-dnt-R39 +{+client-header-tagger{ab2p-block-dnt-R39} \ +} +# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina.txt: 1281) +t.cn + +#ab2p-block-dnt-R40 +{+client-header-tagger{ab2p-block-dnt-R40} \ +} +# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina.txt: 1061) +/(.*/)?\? + +#ab2p-block-dnt-R41 +{+client-header-tagger{ab2p-block-dnt-R41} \ +} +# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1124) +/(.*/)?2015new\.js +2015new.js*. + +#ab2p-block-dnt-R42 +{+client-header-tagger{ab2p-block-dnt-R42} \ +} +# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1273) +/(.*/)?83/ + +#ab2p-block-dnt-R43 +{+client-header-tagger{ab2p-block-dnt-R43} \ +} +# ||bp.blogspot.com^$domain=avmimi.com (easylistchina.txt: 2297) +.bp.blogspot.com + +#ab2p-block-dnt-R44 +{+client-header-tagger{ab2p-block-dnt-R44} \ +} +# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina.txt: 4740) +.taobaocdn.com/imgextra/ + +#ab2p-block-dnt-R45 +{+client-header-tagger{ab2p-block-dnt-R45} \ +} +# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina.txt: 4912) +.upload.chinaz.com/20.*\.gif + +#ab2p-block-dnt-R46 +{+client-header-tagger{ab2p-block-dnt-R46} \ +} +# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina.txt: 3428) +.img.china.alibaba.com/img/ibank/ + +#ab2p-block-dnt-R47 +{+client-header-tagger{ab2p-block-dnt-R47} \ +} +# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina.txt: 1174) +/(.*/)?house/images/.* + +#ab2p-block-dnt-R48 +{+client-header-tagger{ab2p-block-dnt-R48} \ +} +# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina.txt: 1280) +rc.sz.zj.cn/.*\.swf + +#ab2p-block-dnt-R49 +{+client-header-tagger{ab2p-block-dnt-R49} \ +} +# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina.txt: 3954) +.momoshop.com.tw/league/ + +#ab2p-block-dnt-R50 +{+client-header-tagger{ab2p-block-dnt-R50} \ +} +# ||acg.tv^$object,domain=bilibili.com (easylistchina.txt: 1979) +.acg.tv + +#ab2p-block-dnt-R51 +{+client-header-tagger{ab2p-block-dnt-R51} \ +} +# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina.txt: 3149) +.hdslb.com/u_user/ + +#ab2p-block-dnt-R52 +{+client-header-tagger{ab2p-block-dnt-R52} \ +} +# /images/tuangou$domain=bjxxw.com (easylistchina.txt: 1185) +/(.*/)?images/tuangou + +#ab2p-block-dnt-R53 +{+client-header-tagger{ab2p-block-dnt-R53} \ +} +# ||85rere.com^$popup,domain=btbbt.cc (easylistchina.txt: 1071) +.85rere.com + +#ab2p-block-dnt-R54 +{+client-header-tagger{ab2p-block-dnt-R54} \ +} +# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina.txt: 1234) +/(.*/)?tb780x90\.gif +tb780x90.gif*. + +#ab2p-block-dnt-R55 +{+client-header-tagger{ab2p-block-dnt-R55} \ +} +# /d125.260.gif$domain=btup.net (easylistchina.txt: 1161) +/(.*/)?d125\.260\.gif +d125.260.gif*. + +#ab2p-block-dnt-R56 +{+client-header-tagger{ab2p-block-dnt-R56} \ +} +# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina.txt: 1168) +/(.*/)?gamepic/.* + +#ab2p-block-dnt-R57 +{+client-header-tagger{ab2p-block-dnt-R57} \ +} +# ||duapp.com^$domain=ccav1.com (easylistchina.txt: 2726) +.duapp.com + +#ab2p-block-dnt-R58 +{+client-header-tagger{ab2p-block-dnt-R58} \ +} +# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina.txt: 1270) + +#ab2p-block-dnt-R59 +{+client-header-tagger{ab2p-block-dnt-R59} \ +} +# |http://*/bn/$domain=chimatong.com (easylistchina.txt: 1276) +/(.*/)?bn/ + +#ab2p-block-dnt-R60 +{+client-header-tagger{ab2p-block-dnt-R60} \ +} +# /sda/*$domain=chineseinla.com (easylistchina.txt: 1225) +/(.*/)?sda/.* +# /images/content/1436/*$domain=chineseinla.com (easylistchina.txt: 1183) +/(.*/)?images/content/1436/.* + +#ab2p-block-dnt-R61 +{+client-header-tagger{ab2p-block-dnt-R61} \ +} +# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina.txt: 5276) +.youtube.com/embed/.*&autoplay=1& + +#ab2p-block-dnt-R62 +{+client-header-tagger{ab2p-block-dnt-R62} \ +} +# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina.txt: 4743) +.taobaocdn.com + +#ab2p-block-dnt-R63 +{+client-header-tagger{ab2p-block-dnt-R63} \ +} +# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina.txt: 4864) +.tw.partner.buy.yahoo.com + +#ab2p-block-dnt-R64 +{+client-header-tagger{ab2p-block-dnt-R64} \ +} +# /assets/images/banner$domain=cpbl.com.tw (easylistchina.txt: 1144) +/(.*/)?assets/images/banner + +#ab2p-block-dnt-R65 +{+client-header-tagger{ab2p-block-dnt-R65} \ +} +# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina.txt: 1155) +/(.*/)?biz_icon/.* + +#ab2p-block-dnt-R66 +{+client-header-tagger{ab2p-block-dnt-R66} \ +} +# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina.txt: 4366) +.rakuten-static.com +# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina.txt: 4184) +.pic.pimg.tw/cwyuni/.*\.gif\?v= + +#ab2p-block-dnt-R67 +{+client-header-tagger{ab2p-block-dnt-R67} \ +} +# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina.txt: 4577) +.sinaimg.cn/mw1024/6283e.*\.jpg +# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina.txt: 4001) +.mygeek.cn/pic_ + +#ab2p-block-dnt-R68 +{+client-header-tagger{ab2p-block-dnt-R68} \ +} +# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina.txt: 1285) +.005.tv/data/attachment/forum/.*\.gif + +#ab2p-block-dnt-R69 +{+client-header-tagger{ab2p-block-dnt-R69} \ +} +# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina.txt: 1141) +/(.*/)?aeiou/.* + +#ab2p-block-dnt-R70 +{+client-header-tagger{ab2p-block-dnt-R70} \ +} +# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina.txt: 1250) +/(.*/)?wxhfm\.html +wxhfm.html*. +# /wxh.js$domain=dm5.com|dm5.hk (easylistchina.txt: 1249) +/(.*/)?wxh\.js +wxh.js*. + +#ab2p-block-dnt-R71 +{+client-header-tagger{ab2p-block-dnt-R71} \ +} +# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina.txt: 4742) +.taobaocdn.com + +#ab2p-block-dnt-R72 +{+client-header-tagger{ab2p-block-dnt-R72} \ +} +# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina.txt: 1152) +/(.*/)?banner/.* + +#ab2p-block-dnt-R73 +{+client-header-tagger{ab2p-block-dnt-R73} \ +} +# ||1.baidu.com^$popup,domain=douban.com (easylistchina.txt: 1069) +.1.baidu.com + +#ab2p-block-dnt-R74 +{+client-header-tagger{ab2p-block-dnt-R74} \ +} +# /static/media/curl.swf$domain=duba.com (easylistchina.txt: 1231) +/(.*/)?static/media/curl\.swf + +#ab2p-block-dnt-R75 +{+client-header-tagger{ab2p-block-dnt-R75} \ +} +# |http:$domain=e.70e.com|e701.net (easylistchina.txt: 1267) + +#ab2p-block-dnt-R76 +{+client-header-tagger{ab2p-block-dnt-R76} \ +} +# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina.txt: 1164) +/(.*/)?EZ-YAHOO/.* + +#ab2p-block-dnt-R77 +{+client-header-tagger{ab2p-block-dnt-R77} \ +} +# /pagead/*$domain=fankudo.com (easylistchina.txt: 1221) +/(.*/)?pagead/.* + +#ab2p-block-dnt-R78 +{+client-header-tagger{ab2p-block-dnt-R78} \ +} +# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina.txt: 1160) +/(.*/)?cooperation/.* + +#ab2p-block-dnt-R79 +{+client-header-tagger{ab2p-block-dnt-R79} \ +} +# ||k.youku.com^$domain=flvcd.com (easylistchina.txt: 3690) +.k.youku.com + +#ab2p-block-dnt-R80 +{+client-header-tagger{ab2p-block-dnt-R80} \ +} +# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina.txt: 2474) +.cj.qidian.com/Picture/ + +#ab2p-block-dnt-R81 +{+client-header-tagger{ab2p-block-dnt-R81} \ +} +# /jquery.$domain=game.macx.cn (easylistchina.txt: 1194) +/(.*/)?jquery\. +jquery.*. + +#ab2p-block-dnt-R82 +{+client-header-tagger{ab2p-block-dnt-R82} \ +} +# ||8kele.com^$~collapse,domain=gamer.com.tw (easylistchina.txt: 1887) +.8kele.com +# /web/ad/*$domain=gamer.com.tw (easylistchina.txt: 1243) +/(.*/)?web/ad/.* +# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1169) +/(.*/)?gamer/.* +# /baha/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1150) +/(.*/)?baha/.* + +#ab2p-block-dnt-R83 +{+client-header-tagger{ab2p-block-dnt-R83} \ +} +# /marketing/cover/*$domain=geekpark.net (easylistchina.txt: 1204) +/(.*/)?marketing/cover/.* + +#ab2p-block-dnt-R84 +{+client-header-tagger{ab2p-block-dnt-R84} \ +} +# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina.txt: 3475) +.info.lm.tv.sohu.com + +#ab2p-block-dnt-R85 +{+client-header-tagger{ab2p-block-dnt-R85} \ +} +# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina.txt: 4835) +.top.taobao.com/interface_v2\.php\? + +#ab2p-block-dnt-R86 +{+client-header-tagger{ab2p-block-dnt-R86} \ +} +# /bao/uploaded/*$domain=hacg.lol (easylistchina.txt: 1154) +/(.*/)?bao/uploaded/.* +# ||taobao.com$popup,domain=hacg.lol (easylistchina.txt: 1103) +.taobao.com*. + +#ab2p-block-dnt-R87 +{+client-header-tagger{ab2p-block-dnt-R87} \ +} +# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina.txt: 1181) +/(.*/)?Images/ak47/.* + +#ab2p-block-dnt-R88 +{+client-header-tagger{ab2p-block-dnt-R88} \ +} +# ||51img1.com^$domain=hdscg.com (easylistchina.txt: 1664) +.51img1.com + +#ab2p-block-dnt-R89 +{+client-header-tagger{ab2p-block-dnt-R89} \ +} +# ||xldytt.com^$popup,domain=henbt.com (easylistchina.txt: 1107) +.xldytt.com + +#ab2p-block-dnt-R90 +{+client-header-tagger{ab2p-block-dnt-R90} \ +} +# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina.txt: 4431) +.s.yimg.com/ja/ap/ + +#ab2p-block-dnt-R91 +{+client-header-tagger{ab2p-block-dnt-R91} \ +} +# /nfs/ad/*$domain=hkbici.com (easylistchina.txt: 1216) +/(.*/)?nfs/ad/.* +# /attachment/ad/*$domain=hkbici.com (easylistchina.txt: 1147) +/(.*/)?attachment/ad/.* + +#ab2p-block-dnt-R92 +{+client-header-tagger{ab2p-block-dnt-R92} \ +} +# ||megalife.com.hk^$domain=hkgolden.com (easylistchina.txt: 3916) +.megalife.com.hk + +#ab2p-block-dnt-R93 +{+client-header-tagger{ab2p-block-dnt-R93} \ +} +# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk (easylistchina.txt: 1271) + +#ab2p-block-dnt-R94 +{+client-header-tagger{ab2p-block-dnt-R94} \ +} +# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina.txt: 1423) +.163.com/special/ + +#ab2p-block-dnt-R95 +{+client-header-tagger{ab2p-block-dnt-R95} \ +} +# ||alicdn.com^*.jpg$domain=htai.me (easylistchina.txt: 2071) +.alicdn.com/.*\.jpg +# ||alicdn.com^*.gif$domain=htai.me (easylistchina.txt: 2070) +.alicdn.com/.*\.gif + +#ab2p-block-dnt-R96 +{+client-header-tagger{ab2p-block-dnt-R96} \ +} +# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina.txt: 3527) +.item.taobao.com + +#ab2p-block-dnt-R97 +{+client-header-tagger{ab2p-block-dnt-R97} \ +} +# /tres/recommend/*$domain=ifeng.com (easylistchina.txt: 1237) +/(.*/)?tres/recommend/.* + +#ab2p-block-dnt-R98 +{+client-header-tagger{ab2p-block-dnt-R98} \ +} +# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina.txt: 1133) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ +/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf +# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina.txt: 1095) +.miaozhen.com + +#ab2p-block-dnt-R99 +{+client-header-tagger{ab2p-block-dnt-R99} \ +} +# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina.txt: 1134) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ +/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) + +#ab2p-block-dnt-R100 +{+client-header-tagger{ab2p-block-dnt-R100} \ +} +# ||imgchr.com^$domain=iyejie.com (easylistchina.txt: 3453) +.imgchr.com + +#ab2p-block-dnt-R101 +{+client-header-tagger{ab2p-block-dnt-R101} \ +} +# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina.txt: 4392) +.riju.com/pr/ +# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina.txt: 3630) +.jpunion.com +# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1191) +/(.*/)?img/kana\.jpg +# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1190) +/(.*/)?img/disc\.jpg + +#ab2p-block-dnt-R102 +{+client-header-tagger{ab2p-block-dnt-R102} \ +} +# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina.txt: 4321) +.qq.com/bqq_qfpic/ + +#ab2p-block-dnt-R103 +{+client-header-tagger{ab2p-block-dnt-R103} \ +} +# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina.txt: 1132) +/(.*/)?\?age=1& + +#ab2p-block-dnt-R104 +{+client-header-tagger{ab2p-block-dnt-R104} \ +} +# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina.txt: 1187) +/(.*/)?img/.*\.gif + +#ab2p-block-dnt-R105 +{+client-header-tagger{ab2p-block-dnt-R105} \ +} +# .fancybox.$domain=life.com.tw (easylistchina.txt: 1117) +/.*\.fancybox\. +.*.fancybox.*. + +#ab2p-block-dnt-R106 +{+client-header-tagger{ab2p-block-dnt-R106} \ +} +# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina.txt: 4795) +.tietuku.com/.*\.gif + +#ab2p-block-dnt-R107 +{+client-header-tagger{ab2p-block-dnt-R107} \ +} +# ||gp.jstv.com^$domain=live.jstv.com (easylistchina.txt: 3028) +.gp.jstv.com + +#ab2p-block-dnt-R108 +{+client-header-tagger{ab2p-block-dnt-R108} \ +} +# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina.txt: 1162) +/(.*/)?da\.aspx$ +da.aspx + +#ab2p-block-dnt-R109 +{+client-header-tagger{ab2p-block-dnt-R109} \ +} +# /js/index_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1197) +/(.*/)?js/index_ +# .com/js/l_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1114) +/.*\.com/js/l_ +.*.com/js/l_ + +#ab2p-block-dnt-R110 +{+client-header-tagger{ab2p-block-dnt-R110} \ +} +# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina.txt: 1717) +.55.la/anonymous/banner/ + +#ab2p-block-dnt-R111 +{+client-header-tagger{ab2p-block-dnt-R111} \ +} +# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina.txt: 4131) +.pchome.com.tw/iframe/ + +#ab2p-block-dnt-R112 +{+client-header-tagger{ab2p-block-dnt-R112} \ +} +# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina.txt: 3591) +.jiaoyou8.com + +#ab2p-block-dnt-R113 +{+client-header-tagger{ab2p-block-dnt-R113} \ +} +# ||picuphost.com^$domain=mmload.info (easylistchina.txt: 4195) +.picuphost.com + +#ab2p-block-dnt-R114 +{+client-header-tagger{ab2p-block-dnt-R114} \ +} +# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina.txt: 3300) +.i.alipayobjects.com/i/ecmng/ + +#ab2p-block-dnt-R115 +{+client-header-tagger{ab2p-block-dnt-R115} \ +} +# /js/adBom.js$domain=myqcloud.com (easylistchina.txt: 1195) +/(.*/)?js/adBom\.js + +#ab2p-block-dnt-R116 +{+client-header-tagger{ab2p-block-dnt-R116} \ +} +# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina.txt: 5067) +.www.china.com.cn/node_ + +#ab2p-block-dnt-R117 +{+client-header-tagger{ab2p-block-dnt-R117} \ +} +# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina.txt: 1264) +/.*_iframe\.htm$ + +#ab2p-block-dnt-R118 +{+client-header-tagger{ab2p-block-dnt-R118} \ +} +# .com/tps/$domain=ocucn.com (easylistchina.txt: 1115) +/.*\.com/tps/ +.*.com/tps/ + +#ab2p-block-dnt-R119 +{+client-header-tagger{ab2p-block-dnt-R119} \ +} +# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina.txt: 1239) +/(.*/)?upload/gad/.* + +#ab2p-block-dnt-R120 +{+client-header-tagger{ab2p-block-dnt-R120} \ +} +# ||baidu.com^$domain=pos.baidu.com (easylistchina.txt: 2177) +.baidu.com + +#ab2p-block-dnt-R121 +{+client-header-tagger{ab2p-block-dnt-R121} \ +} +# ||imgbus.com^$domain=qiannao.com|ref.so (easylistchina.txt: 3450) +.imgbus.com + +#ab2p-block-dnt-R122 +{+client-header-tagger{ab2p-block-dnt-R122} \ +} +# /950-90.gif$domain=qire213.com (easylistchina.txt: 1131) +/(.*/)?950-90\.gif +950-90.gif*. + +#ab2p-block-dnt-R123 +{+client-header-tagger{ab2p-block-dnt-R123} \ +} +# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1253) +/(.*/)?xybgg\.gif +xybgg.gif*. +# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1189) +/(.*/)?img/br650\.gif +# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1188) +/(.*/)?img/br300\.gif + +#ab2p-block-dnt-R124 +{+client-header-tagger{ab2p-block-dnt-R124} \ +} +# ||howbbs.net^$domain=ref.so (easylistchina.txt: 3245) +.howbbs.net + +#ab2p-block-dnt-R125 +{+client-header-tagger{ab2p-block-dnt-R125} \ +} +# /afp/*$domain=scol.com.cn (easylistchina.txt: 1143) +/(.*/)?afp/.* + +#ab2p-block-dnt-R126 +{+client-header-tagger{ab2p-block-dnt-R126} \ +} +# /images/20$domain=sex169.info|sex169.org (easylistchina.txt: 1179) +/(.*/)?images/20 + +#ab2p-block-dnt-R127 +{+client-header-tagger{ab2p-block-dnt-R127} \ +} +# ||iweek.ly^$domain=share.popgo.org (easylistchina.txt: 3556) +.iweek.ly + +#ab2p-block-dnt-R128 +{+client-header-tagger{ab2p-block-dnt-R128} \ +} +# ||url.cn^$domain=shuajizhijia.com (easylistchina.txt: 4915) +.url.cn + +#ab2p-block-dnt-R129 +{+client-header-tagger{ab2p-block-dnt-R129} \ +} +# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina.txt: 4794) +.tietuku.com + +#ab2p-block-dnt-R130 +{+client-header-tagger{ab2p-block-dnt-R130} \ +} +# /ycpiframe.aspx$domain=strtv.cn (easylistchina.txt: 1254) +/(.*/)?ycpiframe\.aspx +ycpiframe.aspx*. + +#ab2p-block-dnt-R131 +{+client-header-tagger{ab2p-block-dnt-R131} \ +} +# /sungg/*$domain=sun0769.com (easylistchina.txt: 1232) +/(.*/)?sungg/.* + +#ab2p-block-dnt-R132 +{+client-header-tagger{ab2p-block-dnt-R132} \ +} +# ||junph.cn^$domain=tiexue.net (easylistchina.txt: 3665) +.junph.cn + +#ab2p-block-dnt-R133 +{+client-header-tagger{ab2p-block-dnt-R133} \ +} +# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina.txt: 5293) +.yupoo.com/3126961304/ + +#ab2p-block-dnt-R134 +{+client-header-tagger{ab2p-block-dnt-R134} \ +} +# /img/*$image,domain=txzqw.com (easylistchina.txt: 1186) +/(.*/)?img/.* +# /gif/*$image,domain=txzqw.com (easylistchina.txt: 1171) +/(.*/)?gif/.* + +#ab2p-block-dnt-R135 +{+client-header-tagger{ab2p-block-dnt-R135} \ +} +# /lagou-$domain=uisdc.com (easylistchina.txt: 1203) +/(.*/)?lagou- +lagou-*. + +#ab2p-block-dnt-R136 +{+client-header-tagger{ab2p-block-dnt-R136} \ +} +# /bannerpic/*$domain=uopera.net (easylistchina.txt: 1153) +/(.*/)?bannerpic/.* + +#ab2p-block-dnt-R137 +{+client-header-tagger{ab2p-block-dnt-R137} \ +} +# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina.txt: 4465) +.sdo.com + +#ab2p-block-dnt-R138 +{+client-header-tagger{ab2p-block-dnt-R138} \ +} +# /friends/*$image,domain=v2ex.com (easylistchina.txt: 1165) +/(.*/)?friends/.* +# /assets/sidebar/*$domain=v2ex.com (easylistchina.txt: 1145) +/(.*/)?assets/sidebar/.* + +#ab2p-block-dnt-R139 +{+client-header-tagger{ab2p-block-dnt-R139} \ +} +# ||alicdn.com^$domain=wangyueblog.com|xiadele.com|xm9x.net (easylistchina.txt: 2069) +.alicdn.com + +#ab2p-block-dnt-R140 +{+client-header-tagger{ab2p-block-dnt-R140} \ +} +# ||imgur.com^$domain=wgun.net (easylistchina.txt: 3467) +.imgur.com + +#ab2p-block-dnt-R141 +{+client-header-tagger{ab2p-block-dnt-R141} \ +} +# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina.txt: 4914) +.uploadhouse.com/.*\.gif + +#ab2p-block-dnt-R142 +{+client-header-tagger{ab2p-block-dnt-R142} \ +} +# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina.txt: 1246) +/(.*/)?wp-content/uploads/.*vpn +# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina.txt: 1245) +/(.*/)?wp-content/uploads/.*hidemyass +# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina.txt: 1244) +/(.*/)?Webbanner_ +# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina.txt: 1137) +/(.*/)?ad_nydus\.png + +#ab2p-block-dnt-R143 +{+client-header-tagger{ab2p-block-dnt-R143} \ +} +# /attachment/album/*$domain=www.52hardware.com (easylistchina.txt: 1148) +/(.*/)?attachment/album/.* + +#ab2p-block-dnt-R144 +{+client-header-tagger{ab2p-block-dnt-R144} \ +} +# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina.txt: 5407) +.zsg.kimi.com.tw +# .html|$domain=www.gamer.com.tw (easylistchina.txt: 1119) +/.*\.html$ +.*.html + +#ab2p-block-dnt-R145 +{+client-header-tagger{ab2p-block-dnt-R145} \ +} +# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina.txt: 4065) +.nmgnews.com.cn/swf/0/10/ + +#ab2p-block-dnt-R146 +{+client-header-tagger{ab2p-block-dnt-R146} \ +} +# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina.txt: 3420) +.img*./.*\.itiexue\.net/2.*\.gif +.img*.itiexue.net/2.*\.gif + +#ab2p-block-dnt-R147 +{+client-header-tagger{ab2p-block-dnt-R147} \ +} +# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1108) +.xmds.opd2c.com +# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1097) +.moezone.taobao.com +# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1073) +.acgpost.taobao.com +# /item.htm?$popup,domain=www.tsdm.net (easylistchina.txt: 1063) +/(.*/)?item\.htm\? + +#ab2p-block-dnt-R148 +{+client-header-tagger{ab2p-block-dnt-R148} \ +} +# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina.txt: 5311) +.yytcdn.com/swf/plugins_new\.xml\? + +#ab2p-block-dnt-R149 +{+client-header-tagger{ab2p-block-dnt-R149} \ +} +# /r/video/*$domain=youxi.baidu.com (easylistchina.txt: 1223) +/(.*/)?r/video/.* + +#ab2p-block-dnt-R150 +{+client-header-tagger{ab2p-block-dnt-R150} \ +} +# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina.txt: 3021) +.googleusercontent.com/.*=w800-h352-no + +#ab2p-block-dnt-R151 +{+client-header-tagger{ab2p-block-dnt-R151} \ +} +# ||srcdd.com^$domain=zasv.com (easylistchina.txt: 4650) +.srcdd.com + +#ab2p-block-dnt-R152 +{+client-header-tagger{ab2p-block-dnt-R152} \ +} +# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina.txt: 1093) +.kanzipai.com + +#ab2p-block-dnt-Rn153 +{+client-header-tagger{ab2p-block-dnt-Rn153} \ +} +# |http://*/gg/$domain=~11185.cn (easylistchina.txt: 260) +/(.*/)?gg/ + +#ab2p-block-dnt-Rn154 +{+client-header-tagger{ab2p-block-dnt-Rn154} \ +} +# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina.txt: 808) +.img.uu1001.cn + +#ab2p-block-dnt-Rn155 +{+client-header-tagger{ab2p-block-dnt-Rn155} \ +} +# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina.txt: 948) +.tanx.com + +#ab2p-block-dnt-Rn156 +{+client-header-tagger{ab2p-block-dnt-Rn156} \ +} +# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina.txt: 949) +.taobao.com/go/ + +#ab2p-block-dnt-Rn157 +{+client-header-tagger{ab2p-block-dnt-Rn157} \ +} +# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina.txt: 663) +.alimama.cn + +#ab2p-block-dnt-Rn158 +{+client-header-tagger{ab2p-block-dnt-Rn158} \ +} +# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina.txt: 1976) +.acg.178.com/.*/t_ + +#ab2p-block-dnt-Rn159 +{+client-header-tagger{ab2p-block-dnt-Rn159} \ +} +# /duilian.$domain=~duilian.msra.cn (easylistchina.txt: 145) +/(.*/)?duilian\. +duilian.*. + +#ab2p-block-dnt-Rn160 +{+client-header-tagger{ab2p-block-dnt-Rn160} \ +} +# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina.txt: 894) +.offcn.com + +#ab2p-block-dnt-Rn161 +{+client-header-tagger{ab2p-block-dnt-Rn161} \ +} +# /floatad.$domain=~fwxgx.com (easylistchina.txt: 151) +/(.*/)?floatad\. +floatad.*. + +#ab2p-block-dnt-Rn162 +{+client-header-tagger{ab2p-block-dnt-Rn162} \ +} +# |http://gg.$third-party,domain=~guagua.cn (easylistchina.txt: 270) +gg.*. + +#ab2p-block-dnt-Rn163 +{+client-header-tagger{ab2p-block-dnt-Rn163} \ +} +# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina.txt: 4399) +.rm.sina.com.cn + +#ab2p-block-dnt-Rn164 +{+client-header-tagger{ab2p-block-dnt-Rn164} \ +} +# ||lianmeng.360.cn^$domain=~lianmeng.360.cn (easylistchina.txt: 861) +.lianmeng.360.cn + +#ab2p-block-dnt-Rn165 +{+client-header-tagger{ab2p-block-dnt-Rn165} \ +} +# ||bahamut.com.tw^*/2KU/*?v=$~collapse,image,domain=~m.gamer.com.tw (easylistchina.txt: 2144) +.bahamut.com.tw/.*/2KU/.*\?v= + +#ab2p-block-dnt-Rn166 +{+client-header-tagger{ab2p-block-dnt-Rn166} \ +} +# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina.txt: 254) +/.*\.tw/ad/ +.*.tw/ad/ + +#ab2p-block-dnt-Rn167 +{+client-header-tagger{ab2p-block-dnt-Rn167} \ +} +# |http://*/js/ad.$domain=~sac.net.cn (easylistchina.txt: 264) +/(.*/)?js/ad\. + +#ab2p-block-dnt-Rn168 +{+client-header-tagger{ab2p-block-dnt-Rn168} \ +} +# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina.txt: 726) +.dotmore.com.tw + +#ab2p-block-dnt-Rn169 +{+client-header-tagger{ab2p-block-dnt-Rn169} \ +} +# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina.txt: 4978) +.wan.sogoucdn.com/cdn/flash/ + +#ab2p-block-dnt-Rn170 +{+client-header-tagger{ab2p-block-dnt-Rn170} \ +} +# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina.txt: 3355) +.ifengimg.com/mappa/ + +#ab2p-block-dnt-Rn171 +{+client-header-tagger{ab2p-block-dnt-Rn171} \ +} +# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina.txt: 70) +.s.yimg.com/.*/flash_general_ + +#ab2p-block-dnt-Rn172 +{+client-header-tagger{ab2p-block-dnt-Rn172} \ +} +# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina.txt: 4047) +.news.sina.com.cn/pfpnews/js/libweb\.js +# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina.txt: 2579) +.d5.sina.com.cn + +#ab2p-block-dnt-Rn173 +{+client-header-tagger{ab2p-block-dnt-Rn173} \ +} +# ||yimg.com/no/$domain=~yahoo.com (easylistchina.txt: 5236) +.yimg.com/no/ + +#ab2p-block-dnt-Rn174 +{+client-header-tagger{ab2p-block-dnt-Rn174} \ +} +# /picad/*$domain=~ychr.com (easylistchina.txt: 203) +/(.*/)?picad/.* + +#ab2p-block-dnt-Rn175 +{+client-header-tagger{ab2p-block-dnt-Rn175} \ +} +# ||114la.com^$third-party,domain=~ylmf.com (easylistchina.txt: 527) +.114la.com + +#ab2p-block-elem +{ \ +} +TAG:^ab2p-block-elem$ +# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina.txt: 10478) +.hjfile.cn/analytics/site/TrackEvent\.js +# ||hdsrc-a.akamaihd.net^ (easylistchina.txt: 10441) +.hdsrc-a.akamaihd.net +# ||hdapp1008-a.akamaihd.net^ (easylistchina.txt: 10440) +.hdapp1008-a.akamaihd.net +# ||hdapp1003-a.akamaihd.net^ (easylistchina.txt: 10439) +.hdapp1003-a.akamaihd.net +# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina.txt: 10438) +.commondisplay-a.akamaihd.net/cri/.*\.htm\?cat= +# ||akamaihd.net^*/sid.html?p= (easylistchina.txt: 10437) +.akamaihd.net/.*/sid\.html\?p= +# ||akamaihd.net^*/gsd.html?d= (easylistchina.txt: 10436) +.akamaihd.net/.*/gsd\.html\?d= +# ||146.148.85.61^ (easylistchina.txt: 10435) +.146.148.85.61 +# ||2chcn.com/img/japanese-a.png (easylistchina.txt: 5426) +.2chcn.com/img/japanese-a\.png +# ||zzz4.com/JS_AD/ (easylistchina.txt: 5425) +.zzz4.com/JS_AD/ +# ||zzsky.cn/images/zzskycom_ (easylistchina.txt: 5424) +.zzsky.cn/images/zzskycom_ +# ||zznews.cn/home/js/duilian1.js (easylistchina.txt: 5423) +.zznews.cn/home/js/duilian1\.js +# ||zzidc.com^*0.gif (easylistchina.txt: 5422) +.zzidc.com/.*0\.gif +# ||zzidc.com/img/ (easylistchina.txt: 5421) +.zzidc.com/img/ +# ||zzc.cn/b/ (easylistchina.txt: 5420) +.zzc.cn/b/ +# ||zxip.com/2013_ad/ (easylistchina.txt: 5419) +.zxip.com/2013_ad/ +# ||zuoche.com/promo/*.jspx (easylistchina.txt: 5418) +.zuoche.com/promo/.*\.jspx +# ||zuiben.com/a/ (easylistchina.txt: 5417) +.zuiben.com/a/ +# ||zt220.com/zzs/ (easylistchina.txt: 5416) +.zt220.com/zzs/ +# ||zt2088.com^ (easylistchina.txt: 5415) +.zt2088.com +# ||zt.iciba.com/guess/images/900.jpg (easylistchina.txt: 5414) +.zt.iciba.com/guess/images/900\.jpg +# ||zt.chuanke.com/?mod= (easylistchina.txt: 5413) +.zt.chuanke.com/\?mod= +# ||zsnews.cn/v.*=300&height=225& (easylistchina.txt: 5412) +.zsnews.cn/v\..*=300&height=225& +# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina.txt: 5411) +.zsnews.cn/JSFUN/AdvFun/ +# ||zsnews.cn/js/adControl- (easylistchina.txt: 5410) +.zsnews.cn/js/adControl- +# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina.txt: 5409) +.zsnews.cn/Components/2013ZSNEWS/ +# ||zsjjob.com/user/member/google.htm (easylistchina.txt: 5408) +.zsjjob.com/user/member/google\.htm +# ||zp365.com/newImages/201*.swf (easylistchina.txt: 5406) +.zp365.com/newImages/201.*\.swf +# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina.txt: 5405) +.zoopda.com/thumbs/.*_w_680_mh_120\. +# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina.txt: 5404) +.zoopda.com/thumbs/.*_w_250_mh_250\. +# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina.txt: 5403) +.zongheng.com/zhuanti/2014/active/js/active\.js +# ||zongheng.com/v2014/js/mod/bad.js (easylistchina.txt: 5402) +.zongheng.com/v2014/js/mod/bad\.js +# ||zongheng.com/upload/recommend/game/ (easylistchina.txt: 5401) +.zongheng.com/upload/recommend/game/ +# ||zongheng.com/ajax/recommend.game. (easylistchina.txt: 5400) +.zongheng.com/ajax/recommend\.game\. +# ||zolsky.com^*ad/*.js (easylistchina.txt: 5399) +.zolsky.com/.*ad/.*\.js +# ||zol.com.cn/intelcorp/ (easylistchina.txt: 5398) +.zol.com.cn/intelcorp/ +# ||zol.com.cn/adrs/ (easylistchina.txt: 5397) +.zol.com.cn/adrs/ +# ||zol-img.com.cn/soft/114ad_ (easylistchina.txt: 5396) +.zol-img.com.cn/soft/114ad_ +# ||zol-img.com.cn/201*/gt (easylistchina.txt: 5395) +.zol-img.com.cn/201.*/gt +# ||zo66.com^ (easylistchina.txt: 5394) +.zo66.com +# ||znz888.cn/modblock/ (easylistchina.txt: 5393) +.znz888.cn/modblock/ +# ||zk168.com.cn/js/sy (easylistchina.txt: 5392) +.zk168.com.cn/js/sy +# ||zk168.com.cn/js/s.js (easylistchina.txt: 5391) +.zk168.com.cn/js/s\.js +# ||zk168.com.cn/js/fwpd.js (easylistchina.txt: 5390) +.zk168.com.cn/js/fwpd\.js +# ||zk168.com.cn/js/b.js (easylistchina.txt: 5389) +.zk168.com.cn/js/b\.js +# ||zk168.com.cn/js/300gg.js (easylistchina.txt: 5388) +.zk168.com.cn/js/300gg\.js +# ||zjphoto.yinsha.com/upload/swf/ (easylistchina.txt: 5387) +.zjphoto.yinsha.com/upload/swf/ +# ||zjol.com.cn/js/duilian/ (easylistchina.txt: 5386) +.zjol.com.cn/js/duilian/ +# ||zjjzx.cn/img/zt/yd/ (easylistchina.txt: 5385) +.zjjzx.cn/img/zt/yd/ +# ||zjjzx.cn*/push/ (easylistchina.txt: 5384) +.zjjzx.cn*./(.*/)?push/ +# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina.txt: 5383) +.zjg.js.cn/Template/Ant/Js/tonglang\.js +# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina.txt: 5382) +.zjg.js.cn/Public/config/Couplet/Index4 +# ||zjbdt.com/onexgadimgs/ (easylistchina.txt: 5381) +.zjbdt.com/onexgadimgs/ +# ||zj.cn^*/AD?location= (easylistchina.txt: 5380) +.zj.cn/.*/AD\?location= +# ||ziti.jz123.cn/js/ (easylistchina.txt: 5379) +.ziti.jz123.cn/js/ +# ||zisai.com/2014.ad/ (easylistchina.txt: 5378) +.zisai.com/2014\.ad/ +# ||zisai.com/2013.ad/ (easylistchina.txt: 5377) +.zisai.com/2013\.ad/ +# ||zimuzu.tv/rrlx (easylistchina.txt: 5376) +.zimuzu.tv/rrlx +# ||zimuzu.tv/public/rooms? (easylistchina.txt: 5375) +.zimuzu.tv/public/rooms\? +# ||zhzyw.org/js/InsertJS.js (easylistchina.txt: 5374) +.zhzyw.org/js/InsertJS\.js +# ||zhyjw.com/xiala/ (easylistchina.txt: 5373) +.zhyjw.com/xiala/ +# ||zhyjw.com/IAA/ (easylistchina.txt: 5372) +.zhyjw.com/IAA/ +# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina.txt: 5371) +.zhulong.com/poster/get\?positions_name=ZY_SP_300 +# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina.txt: 5370) +.zhulong.com/poster/get\?positions_name=ZY_JZ_300_02 +# ||zhulong.com/poster/get?*_960 (easylistchina.txt: 5369) +.zhulong.com/poster/get\?.*_960 +# ||zhulang.com/ad_js/ (easylistchina.txt: 5368) +.zhulang.com/ad_js/ +# ||zhujiangroad.com/js/alltop.js (easylistchina.txt: 5367) +.zhujiangroad.com/js/alltop\.js +# ||zhuishu.com/js/fy (easylistchina.txt: 5366) +.zhuishu.com/js/fy +# ||zhuishu.com/js/bd (easylistchina.txt: 5365) +.zhuishu.com/js/bd +# ||zhuanyewanjia.com/upload/show/ (easylistchina.txt: 5364) +.zhuanyewanjia.com/upload/show/ +# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina.txt: 5363) +.zhuankeba.net/rw/tyrw/top\.jpg +# ||zhoushan.cn/new.js (easylistchina.txt: 5362) +.zhoushan.cn/new\.js +# ||zhongzi.in/static/ko/ (easylistchina.txt: 5361) +.zhongzi.in/static/ko/ +# ||zhlzw.com/wlles/2015/995XX.js (easylistchina.txt: 5360) +.zhlzw.com/wlles/2015/995XX\.js +# ||zhijia.com/hd/*.swf (easylistchina.txt: 5359) +.zhijia.com/hd/.*\.swf +# ||zhihu.com/node/Banner? (easylistchina.txt: 5358) +.zhihu.com/node/Banner\? +# ||zhibowu.com/js/ad (easylistchina.txt: 5357) +.zhibowu.com/js/ad +# ||zhibok8.com/js/scroll.js (easylistchina.txt: 5356) +.zhibok8.com/js/scroll\.js +# ||zhibok8.com/js/ding.js (easylistchina.txt: 5355) +.zhibok8.com/js/ding\.js +# ||zhiboba.cc/js/pic.js (easylistchina.txt: 5354) +.zhiboba.cc/js/pic\.js +# ||zhibo8.cc/js/float.js (easylistchina.txt: 5353) +.zhibo8.cc/js/float\.js +# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina.txt: 5352) +.zhenjiang365.cn/bbsimg/lphyslideshower\.swf +# ||zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9.jpg (easylistchina.txt: 5351) +.zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9\.jpg +# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina.txt: 5350) +.zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d\.gif +# ||zhenjiang365.cn/*/ad_ (easylistchina.txt: 5349) +.zhenjiang365.cn/.*/ad_ +# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina.txt: 5348) +.zhaozi.cn/d/js/mini/extended87\.js +# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina.txt: 5347) +.zhaojiao.net/templets/default/js/AD_flay\.js +# ||zhao.265g.com/cache/kfbftop.html (easylistchina.txt: 5346) +.zhao.265g.com/cache/kfbftop\.html +# ||zhanqi.tv/uploads/*/ads-*.swf (easylistchina.txt: 5345) +.zhanqi.tv/uploads/.*/ads-.*\.swf +# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina.txt: 5344) +.zhangge.net/wp-content/uploads/files/esx\.jpg +# ||zhandi.cc/Runtime/js/index (easylistchina.txt: 5343) +.zhandi.cc/Runtime/js/index +# ||zhandi.cc/Runtime/js/900 (easylistchina.txt: 5342) +.zhandi.cc/Runtime/js/900 +# ||zhandi.cc/Runtime/js/*vod (easylistchina.txt: 5341) +.zhandi.cc/Runtime/js/.*vod +# ||zhainanba.org/ac/ (easylistchina.txt: 5340) +.zhainanba.org/ac/ +# ||zgjm.org/data/cache/mytag-30.htm (easylistchina.txt: 5339) +.zgjm.org/data/cache/mytag-30\.htm +# ||zgjm.org/data/cache/mytag-24.htm (easylistchina.txt: 5338) +.zgjm.org/data/cache/mytag-24\.htm +# ||zfs.cn/data/attachment/portal/ (easylistchina.txt: 5337) +.zfs.cn/data/attachment/portal/ +# ||zfs.cn/8th/ (easylistchina.txt: 5336) +.zfs.cn/8th/ +# ||zeyi.cc/js/2412/ (easylistchina.txt: 5335) +.zeyi.cc/js/2412/ +# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina.txt: 5334) +.zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605\.gif +# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina.txt: 5333) +.zdfans.com/wp-content/upgrade/doujind\.gif +# ||zdfans.com/Picture/2345 (easylistchina.txt: 5332) +.zdfans.com/Picture/2345 +# ||zdfans.com/adsens/kiees.jpg (easylistchina.txt: 5331) +.zdfans.com/adsens/kiees\.jpg +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina.txt: 5330) +.zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317\.aspx +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina.txt: 5329) +.zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0\.aspx +# ||zchot.com/images/jiaoyou (easylistchina.txt: 5328) +.zchot.com/images/jiaoyou +# ||zc173.com/pp/ (easylistchina.txt: 5327) +.zc173.com/pp/ +# ||zc173.com/173fee/ (easylistchina.txt: 5326) +.zc173.com/173fee/ +# ||zb7.com/static/archy/ad/ (easylistchina.txt: 5325) +.zb7.com/static/archy/ad/ +# ||zasv.com/baiya.jpg (easylistchina.txt: 5324) +.zasv.com/baiya\.jpg +# ||zaobao.com/ssi/bizp/ (easylistchina.txt: 5323) +.zaobao.com/ssi/bizp/ +# ||zalra.qiniudn.com/zhou2.jpg (easylistchina.txt: 5322) +.zalra.qiniudn.com/zhou2\.jpg +# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina.txt: 5321) +.zalra.cn/wp-content/uploads/2014/05/xs009\.jpg +# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina.txt: 5320) +.zalra.cn/wp-content/uploads/2014/05/adsj\.png +# ||z63.org/wp-content/themes/z63/img/s- (easylistchina.txt: 5319) +.z63.org/wp-content/themes/z63/img/s- +# ||z4bbs.com/adst/ (easylistchina.txt: 5318) +.z4bbs.com/adst/ +# ||yzz.cn/home/theme/popwin/ (easylistchina.txt: 5317) +.yzz.cn/home/theme/popwin/ +# ||yzz.cn/global_gg/ (easylistchina.txt: 5316) +.yzz.cn/global_gg/ +# ||yzwb.com/js/ppaa.js (easylistchina.txt: 5315) +.yzwb.com/js/ppaa\.js +# ||yzwb.com/js/AD (easylistchina.txt: 5314) +.yzwb.com/js/AD +# ||yzwb.com/images/ad_ (easylistchina.txt: 5313) +.yzwb.com/images/ad_ +# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina.txt: 5312) +.yytcdn.com/user/bugles/.*_.*x.*\.jpg +# ||yytcdn.com/others/avt/*_1 (easylistchina.txt: 5310) +.yytcdn.com/others/avt/.*_1 +# ||yytcdn.com/others/*_175x660. (easylistchina.txt: 5309) +.yytcdn.com/others/.*_175x660\. +# ||yytcdn.com/headfile/avt/ (easylistchina.txt: 5308) +.yytcdn.com/headfile/avt/ +# ||yy521.com/qq/qq.js (easylistchina.txt: 5307) +.yy521.com/qq/qq\.js +# ||yy521.com/js/baidu (easylistchina.txt: 5306) +.yy521.com/js/baidu +# ||yy18.info/yyads/ (easylistchina.txt: 5305) +.yy18.info/yyads/ +# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina.txt: 5304) +.yxlady.com/skin/yx2014/mm/inpage/ny/ +# ||yxlady.com/cdd/ (easylistchina.txt: 5303) +.yxlady.com/cdd/ +# ||yxdown.com/ghtml/ (easylistchina.txt: 5302) +.yxdown.com/ghtml/ +# ||yxdd.com^$subdocument (easylistchina.txt: 5301) +.yxdd.com +# ||yxad.com/yxad/ (easylistchina.txt: 5300) +.yxad.com/yxad/ +# ||yxad.com/sg/ (easylistchina.txt: 5299) +.yxad.com/sg/ +# ||yxad.com/js/lady.gif (easylistchina.txt: 5298) +.yxad.com/js/lady\.gif +# ||yxad.com/baidu/ (easylistchina.txt: 5297) +.yxad.com/baidu/ +# ||yupoo.com/ttmeiju/FgIoBTXx/4uIfH.jpg (easylistchina.txt: 5296) +.yupoo.com/ttmeiju/FgIoBTXx/4uIfH\.jpg +# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina.txt: 5295) +.yupoo.com/ttmeiju/F5TrKJL8/medish\.jpg +# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina.txt: 5294) +.yupoo.com/ttmeiju/F5aQAmuW/XKgx\.gif +# ||yunupload.net/jsa/ (easylistchina.txt: 5292) +.yunupload.net/jsa/ +# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina.txt: 5291) +.yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead\.jpg +# ||yundianb.com/tu/jia.gif (easylistchina.txt: 5290) +.yundianb.com/tu/jia\.gif +# ||yundianb.com/hao/ (easylistchina.txt: 5289) +.yundianb.com/hao/ +# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina.txt: 5288) +.yundasys.com:1602/wsd/ykjcx/ +# ||yunaw.qiniudn.com/tuixiao.png (easylistchina.txt: 5287) +.yunaw.qiniudn.com/tuixiao\.png +# ||yubei8.com/img/ (easylistchina.txt: 5286) +.yubei8.com/img/ +# ||yubei8.com/boximg/ (easylistchina.txt: 5285) +.yubei8.com/boximg/ +# ||yto.net.cn/gw/chajian/ (easylistchina.txt: 5284) +.yto.net.cn/gw/chajian/ +# ||ytbbs.com/images/index/ (easylistchina.txt: 5283) +.ytbbs.com/images/index/ +# ||ysxs8.com/ysgg/ (easylistchina.txt: 5282) +.ysxs8.com/ysgg/ +# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina.txt: 5281) +.youxituoluo.com/wp-content/uploads/2015/09/20150914175545748\.jpg +# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina.txt: 5280) +.youxituoluo.com/wp-content/uploads/2015/07/20150724152002343\.jpg +# ||youxiaxiazai.com/dm/ (easylistchina.txt: 5279) +.youxiaxiazai.com/dm/ +# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina.txt: 5278) +.youxiaxiazai.com/db_top/index_top\.htm +# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina.txt: 5277) +.youxi.baidu.com/tips/bdtips_min\.js +# ||youthwant.com.tw/scripts/youthad.js (easylistchina.txt: 5275) +.youthwant.com.tw/scripts/youthad\.js +# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina.txt: 5274) +.youthwant.com.tw/S_YahooContentMatch1\. +# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina.txt: 5273) +.youthwant.com.tw/images/mot_ad\.jpg +# ||youthwant.com.tw/event/*/swf/970x (easylistchina.txt: 5272) +.youthwant.com.tw/event/.*/swf/970x +# ||youthwant.com.tw/dodo.php?adjs= (easylistchina.txt: 5271) +.youthwant.com.tw/dodo\.php\?adjs= +# ||youth.cn/qwtf2015/ (easylistchina.txt: 5270) +.youth.cn/qwtf2015/ +# ||youth.cn/images/public_ (easylistchina.txt: 5269) +.youth.cn/images/public_ +# ||youth.cn/images/m.js (easylistchina.txt: 5268) +.youth.cn/images/m\.js +# ||youth.cn/images/c.js (easylistchina.txt: 5267) +.youth.cn/images/c\.js +# ||youth.cn/hezuo/index.js (easylistchina.txt: 5266) +.youth.cn/hezuo/index\.js +# ||youth.cn/ggw/dep_ggw/ (easylistchina.txt: 5265) +.youth.cn/ggw/dep_ggw/ +# ||youqu.net/js/ (easylistchina.txt: 5264) +.youqu.net/js/ +# ||you85.cn^*/z*.js (easylistchina.txt: 5263) +.you85.cn/.*/z.*\.js +# ||you85.cn^*/vip.js (easylistchina.txt: 5262) +.you85.cn/.*/vip\.js +# ||you85.cn^*/dib.js (easylistchina.txt: 5261) +.you85.cn/.*/dib\.js +# ||you85.cn/i360/ (easylistchina.txt: 5260) +.you85.cn/i360/ +# ||you85.cn/cc/ (easylistchina.txt: 5259) +.you85.cn/cc/ +# ||yooread.com/skin/js/common.js (easylistchina.txt: 5258) +.yooread.com/skin/js/common\.js +# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina.txt: 5257) +.ynzd.org/dict/uploads/20111007/ad_710\.jpg +# ||ylzx8.cn/style/js/sad.js (easylistchina.txt: 5256) +.ylzx8.cn/style/js/sad\.js +# ||ylnet.com.cn/inc/ad$subdocument (easylistchina.txt: 5255) +.ylnet.com.cn/inc/ad +# ||ylnet.com.cn/gj.js (easylistchina.txt: 5254) +.ylnet.com.cn/gj\.js +# ||ylnet.com.cn/dl*.js (easylistchina.txt: 5253) +.ylnet.com.cn/dl.*\.js +# ||ylnet.com.cn/201*/rh/ (easylistchina.txt: 5252) +.ylnet.com.cn/201.*/rh/ +# ||yktj.yzz.cn^ (easylistchina.txt: 5251) +.yktj.yzz.cn +# ||yjhas.net^$image (easylistchina.txt: 5250) +.yjhas.net +# ||yizhai.net/myjs/f*.js (easylistchina.txt: 5249) +.yizhai.net/myjs/f.*\.js +# ||yiyipan.com/images/12.gif (easylistchina.txt: 5248) +.yiyipan.com/images/12\.gif +# ||yixiaoba.com/juxiao.html (easylistchina.txt: 5247) +.yixiaoba.com/juxiao\.html +# ||yixiaoba.com/js/yxb_normal.js (easylistchina.txt: 5246) +.yixiaoba.com/js/yxb_normal\.js +# ||yiweimei.net/css/logo.gif (easylistchina.txt: 5245) +.yiweimei.net/css/logo\.gif +# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina.txt: 5244) +.yinyuetai.com/proment/get-play-medias\?json=true&position=preroll +# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina.txt: 5243) +.yinyuetai.com/proment/get-play-medias\?.*&position=pauseroll +# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina.txt: 5242) +.yinyuetai.com/proment/get-play-medias\?.*&position=overlay +# ||yinyuetai.com/partner/$object-subrequest (easylistchina.txt: 5241) +.yinyuetai.com/partner/ +# ||yinhangkahao.com/go/ (easylistchina.txt: 5240) +.yinhangkahao.com/go/ +# ||yinfu.cc/sid/*.js (easylistchina.txt: 5239) +.yinfu.cc/sid/.*\.js +# ||yinduabc.com/res_base/*/makemoney/ (easylistchina.txt: 5238) +.yinduabc.com/res_base/.*/makemoney/ +# ||yimuhe.com/n_ad/ (easylistchina.txt: 5237) +.yimuhe.com/n_ad/ +# ||yimg.com/ja/ap/*_wallpaper (easylistchina.txt: 5235) +.yimg.com/ja/ap/.*_wallpaper +# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina.txt: 5234) +.yimg.com/ja/ap/.*/hk_rm_umu_ +# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina.txt: 5233) +.yimg.com/cv/ae/tw/bwchou/bubble_ +# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina.txt: 5232) +.yimg.com/cv/ae/tw/bwchou/728x210\. +# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina.txt: 5231) +.yimg.com/cv/ae/default/.*_STATIC-JPEG_ +# ||yimg.com/bf/homerun/ysm_ (easylistchina.txt: 5230) +.yimg.com/bf/homerun/ysm_ +# ||yiku51.com/xinzeng/js/ (easylistchina.txt: 5229) +.yiku51.com/xinzeng/js/ +# ||ygdy8.com/jsy/ (easylistchina.txt: 5228) +.ygdy8.com/jsy/ +# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina.txt: 5227) +.yeyou.com/2013/new/yeyou-float-window\.js +# ||yesky.com/monitorjs/imp- (easylistchina.txt: 5226) +.yesky.com/monitorjs/imp- +# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina.txt: 5225) +.yeeyi.com/bbs/api\.php\?mod=js&bid= +# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina.txt: 5224) +.ydstatic.com/fanxian/minisite/promotion/ +# ||yczbb.com/ggimg/ (easylistchina.txt: 5223) +.yczbb.com/ggimg/ +# ||ychr.com/dlad.js (easylistchina.txt: 5222) +.ychr.com/dlad\.js +# ||ybvv.com*/aimg/ (easylistchina.txt: 5221) +.ybvv.com*./(.*/)?aimg/ +# ||yb983.com/skin/yb983V2013/ad/ (easylistchina.txt: 5220) +.yb983.com/skin/yb983V2013/ad/ +# ||yawin.cn/inc/indexad.js (easylistchina.txt: 5219) +.yawin.cn/inc/indexad\.js +# ||yaolanimage.cn/cms/image/960-90 (easylistchina.txt: 5218) +.yaolanimage.cn/cms/image/960-90 +# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina.txt: 5217) +.yaolanimage.cn/assets/ask/js/ask_video_popup\.js +# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina.txt: 5216) +.yaolan.com/wenku_debris/time_debris/images/mary +# ||yaojixiu.com/960x100.gif (easylistchina.txt: 5215) +.yaojixiu.com/960x100\.gif +# ||yanu.qiniudn.com/270300.jpg (easylistchina.txt: 5214) +.yanu.qiniudn.com/270300\.jpg +# ||yanu.qiniudn.com/*x60. (easylistchina.txt: 5213) +.yanu.qiniudn.com/.*x60\. +# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina.txt: 5212) +.yanqing888.me/script/Read_Fee_Bottom\.js +# ||yanqing888.me/script/fanye (easylistchina.txt: 5211) +.yanqing888.me/script/fanye +# ||yanjiao.com/zt/indexad/ (easylistchina.txt: 5210) +.yanjiao.com/zt/indexad/ +# ||yam.com/ad_yam/ (easylistchina.txt: 5209) +.yam.com/ad_yam/ +# ||yaerwen.com/5200js/59.js (easylistchina.txt: 5208) +.yaerwen.com/5200js/59\.js +# ||y80s.org:85/upload/468-60 (easylistchina.txt: 5207) +.y80s.org:85/upload/468-60 +# ||y80s.org:85/img/960x90.gif (easylistchina.txt: 5206) +.y80s.org:85/img/960x90\.gif +# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina.txt: 5205) +.y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32\.jpg +# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina.txt: 5204) +.xz7.com/up/UploadPic/2014-5/201452517141272046\.gif +# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina.txt: 5203) +.xz7.com/up/UploadPic/2014-5/201452517124193056\.gif +# ||xz7.com/js/xia (easylistchina.txt: 5202) +.xz7.com/js/xia +# ||xz7.com/js/top2.js (easylistchina.txt: 5201) +.xz7.com/js/top2\.js +# ||xz7.com/js/jctj.js (easylistchina.txt: 5200) +.xz7.com/js/jctj\.js +# ||xz7.com/js/gg_ (easylistchina.txt: 5199) +.xz7.com/js/gg_ +# ||xz7.com/js/bann (easylistchina.txt: 5198) +.xz7.com/js/bann +# ||xz7.com/js/3000.js (easylistchina.txt: 5197) +.xz7.com/js/3000\.js +# ||xyzc.cn/js/pfgg.js (easylistchina.txt: 5196) +.xyzc.cn/js/pfgg\.js +# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina.txt: 5195) +.xyfdcw.com.cn/userfiles/flash/ +# ||xxx169.org^$third-party (easylistchina.txt: 5194) +.xxx169.org +# ||xxsy.net/js/xxsypop (easylistchina.txt: 5193) +.xxsy.net/js/xxsypop +# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina.txt: 5192) +.xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71\.jpg +# ||xxhh.com/xh.js (easylistchina.txt: 5191) +.xxhh.com/xh\.js +# ||xxdm.org/js/union/ (easylistchina.txt: 5190) +.xxdm.org/js/union/ +# ||xxdm.com/js/union/ (easylistchina.txt: 5189) +.xxdm.com/js/union/ +# ||xx978.info/images/468-60OK.gif (easylistchina.txt: 5188) +.xx978.info/images/468-60OK\.gif +# ||xv98.com/js/hengfu (easylistchina.txt: 5187) +.xv98.com/js/hengfu +# ||xv98.com/js/daohang (easylistchina.txt: 5186) +.xv98.com/js/daohang +# ||xunzai.com/www/all_common.js (easylistchina.txt: 5185) +.xunzai.com/www/all_common\.js +# ||xunzai.com/static/wwwimg/ (easylistchina.txt: 5184) +.xunzai.com/static/wwwimg/ +# ||xunzai.com/static/www/ku360300.jpg (easylistchina.txt: 5183) +.xunzai.com/static/www/ku360300\.jpg +# ||xunying.com^*/ww (easylistchina.txt: 5182) +.xunying.com/.*/ww +# ||xunleisousuo.com/byou.php (easylistchina.txt: 5181) +.xunleisousuo.com/byou\.php +# ||xunleipu.com/a-d-j-s/ (easylistchina.txt: 5180) +.xunleipu.com/a-d-j-s/ +# ||xunleihd.com/image/*maose (easylistchina.txt: 5179) +.xunleihd.com/image/.*maose +# ||xunleihao.com/a-d-j-s/ (easylistchina.txt: 5178) +.xunleihao.com/a-d-j-s/ +# ||xun9u.com/css/js/text_link.js (easylistchina.txt: 5177) +.xun9u.com/css/js/text_link\.js +# ||xue163.com/ajs/end (easylistchina.txt: 5176) +.xue163.com/ajs/end +# ||xs8.cn/xs8_stat.js (easylistchina.txt: 5175) +.xs8.cn/xs8_stat\.js +# ||xs.houyi.baofeng.net^ (easylistchina.txt: 5174) +.xs.houyi.baofeng.net +# ||xpgod.com/UploadPic/xpgod/ (easylistchina.txt: 5173) +.xpgod.com/UploadPic/xpgod/ +# ||xpgod.com/bui/ (easylistchina.txt: 5172) +.xpgod.com/bui/ +# ||xp85.com/statics/js/all.js (easylistchina.txt: 5171) +.xp85.com/statics/js/all\.js +# ||xp811.com/img/xitong.gif (easylistchina.txt: 5170) +.xp811.com/img/xitong\.gif +# ||xp510.com/skin/wdsj.gif (easylistchina.txt: 5169) +.xp510.com/skin/wdsj\.gif +# ||xntk.net^$script (easylistchina.txt: 5168) +.xntk.net +# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina.txt: 5167) +.xnnews.com.cn/templets/js/wzydl\.js +# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina.txt: 5166) +.xnnews.com.cn/templets/js/smsline_double\.js +# ||xnnews.com.cn/Templets/js/*link (easylistchina.txt: 5165) +.xnnews.com.cn/Templets/js/.*link +# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina.txt: 5164) +.xnnews.com.cn/Templets/image/zyyy\.swf +# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina.txt: 5163) +.xnnews.com.cn/templets/image/mpljj\.jpg +# ||xnnews.com.cn/templets/image/*gg (easylistchina.txt: 5162) +.xnnews.com.cn/templets/image/.*gg +# ||xnnews.com.cn/images/yr_wsm.js (easylistchina.txt: 5161) +.xnnews.com.cn/images/yr_wsm\.js +# ||xmfish.com/chanel/www/cpm.html (easylistchina.txt: 5160) +.xmfish.com/chanel/www/cpm\.html +# ||xlpu.cc/adv/ (easylistchina.txt: 5159) +.xlpu.cc/adv/ +# ||xkxs.org/js/tongji.js (easylistchina.txt: 5158) +.xkxs.org/js/tongji\.js +# ||xkxs.org/js/tl (easylistchina.txt: 5157) +.xkxs.org/js/tl +# ||xkxs.org/js/bd (easylistchina.txt: 5156) +.xkxs.org/js/bd +# ||xkhouse.com/xkhouse/ggvert/ (easylistchina.txt: 5155) +.xkhouse.com/xkhouse/ggvert/ +# ||xkhouse.com/display/displaygg/ (easylistchina.txt: 5154) +.xkhouse.com/display/displaygg/ +# ||xizi.com/js/rotator.js (easylistchina.txt: 5153) +.xizi.com/js/rotator\.js +# ||xizi.com/a/ (easylistchina.txt: 5152) +.xizi.com/a/ +# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina.txt: 5151) +.xizhongzi.net/bootstrap/dist/img/ +# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina.txt: 5150) +.xiu8.com/baidu-tieba/.*&forum_name= +# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina.txt: 5149) +.xitong8.com/theme/default/images/index_13\.jpg +# ||xitong8.com/theme/default/images/725x90.gif (easylistchina.txt: 5148) +.xitong8.com/theme/default/images/725x90\.gif +# ||xitek.com/idzone/ (easylistchina.txt: 5147) +.xitek.com/idzone/ +# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina.txt: 5146) +.xinyi.com/Template/Ant/Js/tonglang\.js +# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina.txt: 5145) +.xinyi.com/Public/config/Couplet/Index41\.js +# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina.txt: 5144) +.xinyi.com/Public/config/Couplet/Index40\.js +# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina.txt: 5143) +.xinyi.com/Public/config/Couplet/Index39\.js +# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina.txt: 5142) +.xinyi.com/Public/config/Couplet/Index100\.js +# ||xinminweekly.com.cn/images/index-985x93- (easylistchina.txt: 5141) +.xinminweekly.com.cn/images/index-985x93- +# ||xinminweekly.com.cn/images/*-banner (easylistchina.txt: 5140) +.xinminweekly.com.cn/images/.*-banner +# ||xinmin.cn/framepage/yqLink1.htm (easylistchina.txt: 5139) +.xinmin.cn/framepage/yqLink1\.htm +# ||xinmin.cn/framepage/top (easylistchina.txt: 5138) +.xinmin.cn/framepage/top +# ||xinmin.cn/framepage/left1.htm (easylistchina.txt: 5137) +.xinmin.cn/framepage/left1\.htm +# ||xinmin.cn/framepage/foot1.htm (easylistchina.txt: 5136) +.xinmin.cn/framepage/foot1\.htm +# ||xinku.tv/asd/ (easylistchina.txt: 5135) +.xinku.tv/asd/ +# ||xinjs.cn/2010/yf (easylistchina.txt: 5134) +.xinjs.cn/2010/yf +# ||xinji.org/js/float.js (easylistchina.txt: 5133) +.xinji.org/js/float\.js +# ||xinhuanet.com^*_tl_$script (easylistchina.txt: 5132) +.xinhuanet.com/.*_tl_ +# ||xinhuanet.com^*/ad_ (easylistchina.txt: 5131) +.xinhuanet.com/.*/ad_ +# ||xinhuanet.com/v2/ads/ (easylistchina.txt: 5130) +.xinhuanet.com/v2/ads/ +# ||xinhuanet.com/v/script/coupletAd.js (easylistchina.txt: 5129) +.xinhuanet.com/v/script/coupletAd\.js +# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina.txt: 5128) +.xinhuanet.com/titlepic/111243292_title1n\.jpg +# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina.txt: 5127) +.xinhuanet.com/statics/imags/zgyd_ +# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina.txt: 5126) +.xinhuanet.com/plugs/szzc630x80\.jpg +# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina.txt: 5125) +.xinhuanet.com/jjimages/jc/js/fla\.js +# ||xinhuanet.com/images2015/index980 (easylistchina.txt: 5124) +.xinhuanet.com/images2015/index980 +# ||xinhuanet.com/images/ggdl.jpg (easylistchina.txt: 5123) +.xinhuanet.com/images/ggdl\.jpg +# ||xinhuanet.com/classad/ (easylistchina.txt: 5122) +.xinhuanet.com/classad/ +# ||xinhuanet.com/adxl/ (easylistchina.txt: 5121) +.xinhuanet.com/adxl/ +# ||xinhuanet.com/2015ad/ (easylistchina.txt: 5120) +.xinhuanet.com/2015ad/ +# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina.txt: 5119) +.xinhuanet.com/2015/html2015/xhfloatAdv\.html +# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina.txt: 5118) +.xinhuanet.com/2014xb/html/if_gg\.htm +# ||xinhuanet.com/2014/imgad/ (easylistchina.txt: 5117) +.xinhuanet.com/2014/imgad/ +# ||xinhuanet.com/2014/iframe/AD- (easylistchina.txt: 5116) +.xinhuanet.com/2014/iframe/AD- +# ||xinhuanet.com/2013images/ltxl.gif (easylistchina.txt: 5115) +.xinhuanet.com/2013images/ltxl\.gif +# ||xinhuanet.com/2013images/jfzj.swf (easylistchina.txt: 5114) +.xinhuanet.com/2013images/jfzj\.swf +# ||xinhuanet.com/*/ad20 (easylistchina.txt: 5113) +.xinhuanet.com/.*/ad20 +# ||xinbiqi.com/js/pc_ads.js (easylistchina.txt: 5112) +.xinbiqi.com/js/pc_ads\.js +# ||xilu.com/js/bd.js (easylistchina.txt: 5111) +.xilu.com/js/bd\.js +# ||xilu.com/iframe/pagepic/ (easylistchina.txt: 5110) +.xilu.com/iframe/pagepic/ +# ||xilinjie.com/partner/ (easylistchina.txt: 5109) +.xilinjie.com/partner/ +# ||xigua110.com/a/ (easylistchina.txt: 5108) +.xigua110.com/a/ +# ||xiazaiba.com/uploadfiles/ads/ (easylistchina.txt: 5107) +.xiazaiba.com/uploadfiles/ads/ +# ||xiaopi.com/500/ (easylistchina.txt: 5106) +.xiaopi.com/500/ +# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina.txt: 5105) +.xiaomengku.com/static/template/cms/v3/js/activity\.js +# ||xiaoliaolianmeng.com^$subdocument (easylistchina.txt: 5104) +.xiaoliaolianmeng.com +# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina.txt: 5103) +.xiaoliaolianmeng.com/pic/weipinhui/ +# ||xiangmucangku.com/uploads/allimg/ (easylistchina.txt: 5102) +.xiangmucangku.com/uploads/allimg/ +# ||xiangai365.com/ad_js/ (easylistchina.txt: 5101) +.xiangai365.com/ad_js/ +# ||xiancn.com^*/adv_content/ (easylistchina.txt: 5100) +.xiancn.com/.*/adv_content/ +# ||xiami.com/player/iframe-adm? (easylistchina.txt: 5099) +.xiami.com/player/iframe-adm\? +# ||xhub.cn/tanchu.js (easylistchina.txt: 5098) +.xhub.cn/tanchu\.js +# ||xgrb.cn/newad/ (easylistchina.txt: 5097) +.xgrb.cn/newad/ +# ||xghylt.com/newad/ (easylistchina.txt: 5096) +.xghylt.com/newad/ +# ||xghylt.com/api.php?mod=ad&adid= (easylistchina.txt: 5095) +.xghylt.com/api\.php\?mod=ad&adid= +# ||xemh.com/other/*_ads (easylistchina.txt: 5094) +.xemh.com/other/.*_ads +# ||xdowns.com/js/lefttuijian.js (easylistchina.txt: 5093) +.xdowns.com/js/lefttuijian\.js +# ||xdowns.com/info.js (easylistchina.txt: 5092) +.xdowns.com/info\.js +# ||xdowns.com/ggco.js (easylistchina.txt: 5091) +.xdowns.com/ggco\.js +# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina.txt: 5090) +.xdkb.net/index/temp/3813\.files/banner\.jpg +# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina.txt: 5089) +.xdjishu.com/_uploadfile/image/20150722/20150722164052_98036\.gif +# ||xdf.cn/v4/js/leyus/ (easylistchina.txt: 5088) +.xdf.cn/v4/js/leyus/ +# ||xdf.cn/v4/js/adm- (easylistchina.txt: 5087) +.xdf.cn/v4/js/adm- +# ||xdf.cn/v4/images/index/ads/ (easylistchina.txt: 5086) +.xdf.cn/v4/images/index/ads/ +# ||xdcad.net/source/plugin/disad/disad.js (easylistchina.txt: 5085) +.xdcad.net/source/plugin/disad/disad\.js +# ||xczhibo.com/xml/ (easylistchina.txt: 5084) +.xczhibo.com/xml/ +# ||xc.macd.cn^ (easylistchina.txt: 5083) +.xc.macd.cn +# ||xb2s.com:8080/mjq.js (easylistchina.txt: 5082) +.xb2s.com:8080/mjq\.js +# ||xav*.com/js/float.js (easylistchina.txt: 5081) +.xav*./.*\.com/js/float\.js +.xav*.com/js/float\.js +# ||xav*.com/attachment/Mon_ (easylistchina.txt: 5080) +.xav*./.*\.com/attachment/Mon_ +.xav*.com/attachment/Mon_ +# ||xav*.com/ad1/ (easylistchina.txt: 5079) +.xav*./.*\.com/ad1/ +.xav*.com/ad1/ +# ||x.jd.com/static/js/cpc.js (easylistchina.txt: 5078) +.x.jd.com/static/js/cpc\.js +# ||x.jd.com/static/js/auto.js (easylistchina.txt: 5077) +.x.jd.com/static/js/auto\.js +# ||x.itiexue.net/html/$script (easylistchina.txt: 5076) +.x.itiexue.net/html/ +# ||wzbh.org/imgad/ (easylistchina.txt: 5075) +.wzbh.org/imgad/ +# ||wyzu.cn/js/3.js (easylistchina.txt: 5074) +.wyzu.cn/js/3\.js +# ||wyh.tv/image/upload/ad/ (easylistchina.txt: 5073) +.wyh.tv/image/upload/ad/ +# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina.txt: 5072) +.wxrb.com/g/js/baidu\.cbjs\.m\.js +# ||wxdown.net/images/*.gif (easylistchina.txt: 5071) +.wxdown.net/images/.*\.gif +# ||wx.sina.com.cn/iframe/pdps/ (easylistchina.txt: 5070) +.wx.sina.com.cn/iframe/pdps/ +# ||wx.56.com/youxitg/ (easylistchina.txt: 5069) +.wx.56.com/youxitg/ +# ||wwwcdn.kimiss.net/btn/ (easylistchina.txt: 5068) +.wwwcdn.kimiss.net/btn/ +# ||www.111cn.net/pic/ (easylistchina.txt: 5066) +.www.111cn.net/pic/ +# ||www-dnwx-com.anquanbao.cn/pic (easylistchina.txt: 5065) +.www-dnwx-com.anquanbao.cn/pic +# ||wuyou.*/0000/banner.gif (easylistchina.txt: 5064) +.wuyou.*./(.*/)?0000/banner\.gif +# ||wuxi.cn/index.php?m=poster& (easylistchina.txt: 5063) +.wuxi.cn/index\.php\?m=poster& +# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina.txt: 5062) +.wuseng.com/templets/default/statics/js/mm\.js +# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina.txt: 5061) +.wumii.com/ext/widget/hot\.htm\?prefix=http://blog\.const\.net\.cn& +# ||wumii.cn/site_images/c/ (easylistchina.txt: 5060) +.wumii.cn/site_images/c/ +# ||wuhan.net.cn/show.html (easylistchina.txt: 5059) +.wuhan.net.cn/show\.html +# ||wuhan.net.cn/guanggaojs/ (easylistchina.txt: 5058) +.wuhan.net.cn/guanggaojs/ +# ||wudilong.com/ssb/include/js/php.js (easylistchina.txt: 5057) +.wudilong.com/ssb/include/js/php\.js +# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina.txt: 5056) +.wszhibo.com/xml/tvAdtext\.ashx +# ||wszhibo.com/Uploadfiles/*.gif (easylistchina.txt: 5055) +.wszhibo.com/Uploadfiles/.*\.gif +# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina.txt: 5054) +.wpjam.qiniudn.com/wpjam/banner/.*g$ +# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina.txt: 5053) +.woxiu.com/xapi/offsite_swf_more\.php\? +# ||woxiu.com/xapi/get_pre_config.php (easylistchina.txt: 5052) +.woxiu.com/xapi/get_pre_config\.php +# ||wowody.net/public/wowo/2345.html (easylistchina.txt: 5051) +.wowody.net/public/wowo/2345\.html +# ||wowody.net/public/wowo/*play_ (easylistchina.txt: 5050) +.wowody.net/public/wowo/.*play_ +# ||woshipm.com/wp-files/*qidian (easylistchina.txt: 5049) +.woshipm.com/wp-files/.*qidian +# ||wo318.com/template/ (easylistchina.txt: 5048) +.wo318.com/template/ +# ||wo318.com/sjs/km/xixitv.js (easylistchina.txt: 5047) +.wo318.com/sjs/km/xixitv\.js +# ||wo318.com/good/ (easylistchina.txt: 5046) +.wo318.com/good/ +# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina.txt: 5045) +.wlnews.zjol.com.cn/wlrb/bbs/ +# ||wlnews.zjol.com.cn/bbs/ (easylistchina.txt: 5044) +.wlnews.zjol.com.cn/bbs/ +# ||wishdown.com/images/*.gif (easylistchina.txt: 5043) +.wishdown.com/images/.*\.gif +# ||winvvv.com^$subdocument (easylistchina.txt: 5042) +.winvvv.com +# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina.txt: 5041) +.winba.me/wp-content/uploads/2015/10/image\.jpg +# ||winba.me/wp-content/uploads/*/QQ% (easylistchina.txt: 5040) +.winba.me/wp-content/uploads/.*/QQ% +# ||winba.me/wp-content/uploads/*/300x300. (easylistchina.txt: 5039) +.winba.me/wp-content/uploads/.*/300x300\. +# ||whsfzx.com/jj/ (easylistchina.txt: 5038) +.whsfzx.com/jj/ +# ||whsfzx.com/img/top.js (easylistchina.txt: 5037) +.whsfzx.com/img/top\.js +# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina.txt: 5036) +.whqyw.com/file/upload/201408/01/09-41-45-92-1\.jpg +# ||wholehk.com/madads$subdocument (easylistchina.txt: 5035) +.wholehk.com/madads +# ||whnews.cn/wh_public/dl/ (easylistchina.txt: 5034) +.whnews.cn/wh_public/dl/ +# ||whnews.cn/news/data/*/pf.js (easylistchina.txt: 5033) +.whnews.cn/news/data/.*/pf\.js +# ||whinfo.net.cn/ad20 (easylistchina.txt: 5032) +.whinfo.net.cn/ad20 +# ||wgun.net/data/yahoo_ad.html (easylistchina.txt: 5031) +.wgun.net/data/yahoo_ad\.html +# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina.txt: 5030) +.wfcmw.cn/cmw_2015/ad/flash/ +# ||weste.net/js/showpagead.js (easylistchina.txt: 5029) +.weste.net/js/showpagead\.js +# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina.txt: 5028) +.wenyoutai.com/template/comiis_xwyt/ads/ +# ||wenxuecity.com/service/ad/ (easylistchina.txt: 5027) +.wenxuecity.com/service/ad/ +# ||wenwo.com^*/js/common/adAudit. (easylistchina.txt: 5026) +.wenwo.com/.*/js/common/adAudit\. +# ||wenku8.com/banner.jpg (easylistchina.txt: 5025) +.wenku8.com/banner\.jpg +# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina.txt: 5024) +.wendu.cn/templates/wzdsb/js/yanue\.pop\.js +# ||wendellyu.com/banner/ (easylistchina.txt: 5023) +.wendellyu.com/banner/ +# ||weixin.qqday.com/js/tj.js (easylistchina.txt: 5022) +.weixin.qqday.com/js/tj\.js +# ||weixin.qqday.com/js/rb.js (easylistchina.txt: 5021) +.weixin.qqday.com/js/rb\.js +# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina.txt: 5020) +.weiqitv.com/Uploads/20140721/53cca3becc50b\.jpg +# ||weiqitv.com/Uploads/185_440_ (easylistchina.txt: 5019) +.weiqitv.com/Uploads/185_440_ +# ||weiqitv.com/Public/img/kt.jpg (easylistchina.txt: 5018) +.weiqitv.com/Public/img/kt\.jpg +# ||weidea.net/wp-content/host_ads.png (easylistchina.txt: 5017) +.weidea.net/wp-content/host_ads\.png +# ||weidea.net/wp-content/ads_img/ (easylistchina.txt: 5016) +.weidea.net/wp-content/ads_img/ +# ||weibo.com/images/ad_ (easylistchina.txt: 5015) +.weibo.com/images/ad_ +# ||wei2008.com/js/t_win (easylistchina.txt: 5014) +.wei2008.com/js/t_win +# ||wei2008.com/js/list_gg.js (easylistchina.txt: 5013) +.wei2008.com/js/list_gg\.js +# ||wei2008.com/js/index_ (easylistchina.txt: 5012) +.wei2008.com/js/index_ +# ||wei2008.com/js/img (easylistchina.txt: 5011) +.wei2008.com/js/img +# ||wei2008.com/js/down (easylistchina.txt: 5010) +.wei2008.com/js/down +# ||wei2008.com/js/copyright (easylistchina.txt: 5009) +.wei2008.com/js/copyright +# ||wei2008.com/js/960X90 (easylistchina.txt: 5008) +.wei2008.com/js/960X90 +# ||wehefei.com/uploadfile/flashad/ (easylistchina.txt: 5007) +.wehefei.com/uploadfile/flashad/ +# ||wehefei.com/htmlphp/tmall/ (easylistchina.txt: 5006) +.wehefei.com/htmlphp/tmall/ +# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina.txt: 5005) +.weeiy.com/wp-content/uploads/2013/12/2345ie\.jpg +# ||webkaka.com/script/duilian_ (easylistchina.txt: 5004) +.webkaka.com/script/duilian_ +# ||webkaka.com*/click/$image (easylistchina.txt: 5003) +.webkaka.com*./(.*/)?click/ +# ||webjx.com/zanzhushang/ (easylistchina.txt: 5002) +.webjx.com/zanzhushang/ +# ||webacg.com/http/js/1.js (easylistchina.txt: 5001) +.webacg.com/http/js/1\.js +# ||webacg.com/data/js/ (easylistchina.txt: 5000) +.webacg.com/data/js/ +# ||web.900.la^ (easylistchina.txt: 4999) +.web.900.la +# ||weathercn.com/m_mobile/ad_image/ (easylistchina.txt: 4998) +.weathercn.com/m_mobile/ad_image/ +# ||we54.com/poster/ (easylistchina.txt: 4997) +.we54.com/poster/ +# ||we54.com/54index_ad/ (easylistchina.txt: 4996) +.we54.com/54index_ad/ +# ||wdown.cn/falala/ (easylistchina.txt: 4995) +.wdown.cn/falala/ +# ||wdlm.cn/img/ad1/ (easylistchina.txt: 4994) +.wdlm.cn/img/ad1/ +# ||wd147.com/templets/mm/js/cs.js (easylistchina.txt: 4993) +.wd147.com/templets/mm/js/cs\.js +# ||wbzol.com/show/images/show.htm (easylistchina.txt: 4992) +.wbzol.com/show/images/show\.htm +# ||wanwan.sina.com.cn/third_party/ (easylistchina.txt: 4991) +.wanwan.sina.com.cn/third_party/ +# ||wannianli.com.cn/style/ad_ (easylistchina.txt: 4990) +.wannianli.com.cn/style/ad_ +# ||wangyouxs.com/A/$script (easylistchina.txt: 4989) +.wangyouxs.com/A/ +# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina.txt: 4988) +.wangpanwu.com/images/zhuolaoshigg\.gif +# ||wangpanwu.com/images/*guanggao (easylistchina.txt: 4987) +.wangpanwu.com/images/.*guanggao +# ||wangjing.cn/upload/ftp/ad/ (easylistchina.txt: 4986) +.wangjing.cn/upload/ftp/ad/ +# ||wangjing.cn/images/js/YlFloat.js (easylistchina.txt: 4985) +.wangjing.cn/images/js/YlFloat\.js +# ||wangjing.cn/iframe/zhounian.php? (easylistchina.txt: 4984) +.wangjing.cn/iframe/zhounian\.php\? +# ||wangjing.cn*/upload/com/ (easylistchina.txt: 4983) +.wangjing.cn*./(.*/)?upload/com/ +# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina.txt: 4982) +.wanghualang.com/wp-content/gallery/thumbnail/.*-ad\. +# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina.txt: 4981) +.wanghualang.com/wp-content/gallery/resource/wp\.png +# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina.txt: 4980) +.wanghualang.com/wp-content/gallery/resource/Aliyun- +# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina.txt: 4979) +.wangdaizhijia.com/data/attachment/portal/ +# ||wan.sogou.com/static/fragment/ (easylistchina.txt: 4977) +.wan.sogou.com/static/fragment/ +# ||wan.sogou.com/pop/ (easylistchina.txt: 4976) +.wan.sogou.com/pop/ +# ||wan.sogou.com/cdn/$subdocument (easylistchina.txt: 4975) +.wan.sogou.com/cdn/ +# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina.txt: 4973) +.wa.kuwo.cn/lyrics/img/kwgg/ +# ||w010w.com.cn^$subdocument (easylistchina.txt: 4972) +.w010w.com.cn +# ||vvvdj.com/sms/ (easylistchina.txt: 4971) +.vvvdj.com/sms/ +# ||vvshu.com/images/cp_ (easylistchina.txt: 4970) +.vvshu.com/images/cp_ +# ||vvpan.com^*/zsz (easylistchina.txt: 4969) +.vvpan.com/.*/zsz +# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina.txt: 4968) +.vvpan.com/templates/32666/imgs/down001\.gif +# ||vupload.duowan.com^ (easylistchina.txt: 4967) +.vupload.duowan.com +# ||vpser.b0.upaiyun.com^$image (easylistchina.txt: 4966) +.vpser.b0.upaiyun.com +# ||voc.com.cn/Frame/qqms_cs.html (easylistchina.txt: 4965) +.voc.com.cn/Frame/qqms_cs\.html +# ||voc.com.cn/adsClick/ (easylistchina.txt: 4964) +.voc.com.cn/adsClick/ +# ||vnet.cn^*.html (easylistchina.txt: 4963) +.vnet.cn/.*\.html +# ||vkeke.net/public/agd (easylistchina.txt: 4962) +.vkeke.net/public/agd +# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina.txt: 4961) +.vjie.com/templates/lieqi/js/_banner\.js +# ||vista.tuwan.com/s.js (easylistchina.txt: 4960) +.vista.tuwan.com/s\.js +# ||vista.tgbusdata.cn/s.js (easylistchina.txt: 4959) +.vista.tgbusdata.cn/s\.js +# ||vista.tgbus.com/s.js (easylistchina.txt: 4958) +.vista.tgbus.com/s\.js +# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina.txt: 4957) +.vista.tgbus.com/data\.ashx[^\w%.-].*_SINGLE_SETJSONADSLOT +# ||visit-japan.jp/parts/visitjapan_f35_170_170.jpg (easylistchina.txt: 4956) +.visit-japan.jp/parts/visitjapan_f35_170_170\.jpg +# ||vipcn.com/images/jk500.gif (easylistchina.txt: 4955) +.vipcn.com/images/jk500\.gif +# ||vipcn.com/images/cfdh*.gif (easylistchina.txt: 4954) +.vipcn.com/images/cfdh.*\.gif +# ||vipcn.com/hezuo/ (easylistchina.txt: 4953) +.vipcn.com/hezuo/ +# ||vip.luanren.com/data/*.swf (easylistchina.txt: 4952) +.vip.luanren.com/data/.*\.swf +# ||videowood.tv/popjavascript (easylistchina.txt: 4951) +.videowood.tv/popjavascript +# ||videowood.me/assets/js/popup.js (easylistchina.txt: 4950) +.videowood.me/assets/js/popup\.js +# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina.txt: 4949) +.videospeedy.com/Res/images/wuy0u\.jpg +# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4948) +.video.sdo.com/index\.php\?m=poster&c=index&a=show_poster&id= +# ||vhiphop.qiniudn.com/cloth (easylistchina.txt: 4947) +.vhiphop.qiniudn.com/cloth +# ||vgugu.com/iframes/xp- (easylistchina.txt: 4946) +.vgugu.com/iframes/xp- +# ||verypsp.com:8081/sy.jpg (easylistchina.txt: 4945) +.verypsp.com:8081/sy\.jpg +# ||veryim.net^*/1111 (easylistchina.txt: 4944) +.veryim.net/.*/1111 +# ||veryhuo.com/plus/js/ (easylistchina.txt: 4943) +.veryhuo.com/plus/js/ +# ||vdisk.cn/img/dcr2.gif (easylistchina.txt: 4942) +.vdisk.cn/img/dcr2\.gif +# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina.txt: 4941) +.vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49\.gif +# ||vas.funshion.com^ (easylistchina.txt: 4940) +.vas.funshion.com +# ||vansky.com/index_files/*.gif (easylistchina.txt: 4939) +.vansky.com/index_files/.*\.gif +# ||vansky.com/images/goldenflat2.jpg (easylistchina.txt: 4938) +.vansky.com/images/goldenflat2\.jpg +# ||vansky.com/images/banner.gif (easylistchina.txt: 4937) +.vansky.com/images/banner\.gif +# ||vanpeople.com/images_site/adb/ (easylistchina.txt: 4936) +.vanpeople.com/images_site/adb/ +# ||vanpeople.com/ad$subdocument (easylistchina.txt: 4935) +.vanpeople.com/ad +# ||van698.com/api.php?mod=js&bid=369 (easylistchina.txt: 4934) +.van698.com/api\.php\?mod=js&bid=369 +# ||v8gay.com/apps/misc.php?action=advert& (easylistchina.txt: 4933) +.v8gay.com/apps/misc\.php\?action=advert& +# ||v1.cn/cms/*/js/ad_new.js (easylistchina.txt: 4932) +.v1.cn/cms/.*/js/ad_new\.js +# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina.txt: 4931) +.v.huanqiu.com/tres/xml/vda\.xml +# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina.txt: 4930) +.v.beta.yinyuetai.com/swf/plugins_new\.xml\? +# ||v-56.com^ (easylistchina.txt: 4929) +.v-56.com +# ||uzzf.com/js/top_970.js (easylistchina.txt: 4928) +.uzzf.com/js/top_970\.js +# ||uzzf.com/js/down_ (easylistchina.txt: 4927) +.uzzf.com/js/down_ +# ||uzzf.com/js/all.js (easylistchina.txt: 4926) +.uzzf.com/js/all\.js +# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina.txt: 4925) +.uwants.com/dfp_forum\.php\?au=Uwants_Web_ +# ||uuu9.tieba.com^$subdocument (easylistchina.txt: 4924) +.uuu9.tieba.com +# ||uuu9.com/yoyo_ (easylistchina.txt: 4923) +.uuu9.com/yoyo_ +# ||uuu9.com/stat/shouye/ (easylistchina.txt: 4922) +.uuu9.com/stat/shouye/ +# ||uuu9.com/news/css/news_content_in.js (easylistchina.txt: 4921) +.uuu9.com/news/css/news_content_in\.js +# ||uuu9.com/360adtest/ (easylistchina.txt: 4919) +.uuu9.com/360adtest/ +# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina.txt: 4918) +.uschinapress.com/2015/0115/1421375153170\.gif +# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina.txt: 4917) +.uschinapress.com/2014/0922/1411428929105\.png +# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina.txt: 4916) +.uschinapress.com/2014/0702/1404347291600\.gif +# ||upload.jjxw.cn^*.swf (easylistchina.txt: 4913) +.upload.jjxw.cn/.*\.swf +# ||upantool.com/playing/ (easylistchina.txt: 4911) +.upantool.com/playing/ +# ||upan.so/templates/default/images/sir.gif (easylistchina.txt: 4910) +.upan.so/templates/default/images/sir\.gif +# ||upan.cc/images/pay/ (easylistchina.txt: 4909) +.upan.cc/images/pay/ +# ||upaiyun.com/css88/*/728 (easylistchina.txt: 4908) +.upaiyun.com/css88/.*/728 +# ||upaiyun.com/css88/*/680 (easylistchina.txt: 4907) +.upaiyun.com/css88/.*/680 +# ||upaiyun.com/css88/*/250 (easylistchina.txt: 4906) +.upaiyun.com/css88/.*/250 +# ||upaiyun.com/css88/*/1008 (easylistchina.txt: 4905) +.upaiyun.com/css88/.*/1008 +# ||up.qingdaonews.com/up/$object,script (easylistchina.txt: 4904) +.up.qingdaonews.com/up/ +# ||up.hiao.com^ (easylistchina.txt: 4903) +.up.hiao.com +# ||untitled.dwstatic.com^ (easylistchina.txt: 4902) +.untitled.dwstatic.com +# ||union.china.com.cn^ (easylistchina.txt: 4901) +.union.china.com.cn +# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina.txt: 4900) +.uisdc.com/wp-content/uploads/2013/08/sitestar +# ||uho.com.tw^$subdocument (easylistchina.txt: 4899) +.uho.com.tw +# ||uho.com.tw/kid-ad/ (easylistchina.txt: 4898) +.uho.com.tw/kid-ad/ +# ||uho.com.tw/images/rosewater.jpg (easylistchina.txt: 4897) +.uho.com.tw/images/rosewater\.jpg +# ||uedfa.net/Static/imgs/affiliate/ (easylistchina.txt: 4896) +.uedfa.net/Static/imgs/affiliate/ +# ||udn.com^*/ad/ (easylistchina.txt: 4895) +.udn.com/.*/ad/ +# ||udn.com/SSI/neckFrame (easylistchina.txt: 4894) +.udn.com/SSI/neckFrame +# ||udn.com/common/iframe/ (easylistchina.txt: 4893) +.udn.com/common/iframe/ +# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina.txt: 4892) +.udn.com/2010MAIN/inc/t03-CMS\.html +# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina.txt: 4891) +.udn.com.tw/upf/2014_sales/travel/cheesead\.html +# ||ucbug.com/templets/default/js/sharp.js (easylistchina.txt: 4890) +.ucbug.com/templets/default/js/sharp\.js +# ||ucbug.com/js/tongl.js (easylistchina.txt: 4889) +.ucbug.com/js/tongl\.js +# ||ucbug.com/js/tlys.js (easylistchina.txt: 4888) +.ucbug.com/js/tlys\.js +# ||ucbug.com/js/left.js (easylistchina.txt: 4887) +.ucbug.com/js/left\.js +# ||uc8.cc/_style/2013/js/all.js (easylistchina.txt: 4886) +.uc8.cc/_style/2013/js/all\.js +# ||u8xs.com/js/yuedu_ (easylistchina.txt: 4885) +.u8xs.com/js/yuedu_ +# ||u8xs.com/js/box_ (easylistchina.txt: 4884) +.u8xs.com/js/box_ +# ||u148.net/images/sponsor- (easylistchina.txt: 4883) +.u148.net/images/sponsor- +# ||u.riju.com/click.php (easylistchina.txt: 4882) +.u.riju.com/click\.php +# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina.txt: 4881) +.u.ctrip.com/showcaseadvertisementsit/ +# ||u.cnzol.com^ (easylistchina.txt: 4880) +.u.cnzol.com +# ||u.63kc.com^ (easylistchina.txt: 4879) +.u.63kc.com +# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina.txt: 4878) +.tzfdc.com/Images/09/flv/flv_index\.js +# ||tzfdc.com/fdcSell/ (easylistchina.txt: 4877) +.tzfdc.com/fdcSell/ +# ||tzfdc.com.cn/userfiles/flash/ (easylistchina.txt: 4876) +.tzfdc.com.cn/userfiles/flash/ +# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina.txt: 4875) +.tyyhhdf.com/upload/1/148781/images/2015.*\.gif +# ||ty121.cn/IAA/ (easylistchina.txt: 4874) +.ty121.cn/IAA/ +# ||txzqw.com/js/float.js (easylistchina.txt: 4873) +.txzqw.com/js/float\.js +# ||txtyd.com/js/*box.js (easylistchina.txt: 4872) +.txtyd.com/js/.*box\.js +# ||txtbbs.com/data/txtbbs/ (easylistchina.txt: 4871) +.txtbbs.com/data/txtbbs/ +# ||txooo.com^*/zdl.jpg (easylistchina.txt: 4870) +.txooo.com/.*/zdl\.jpg +# ||txooo.com^*/ydl.jpg (easylistchina.txt: 4869) +.txooo.com/.*/ydl\.jpg +# ||txahz.com/static/image/tp/ (easylistchina.txt: 4868) +.txahz.com/static/image/tp/ +# ||twunbbs.com/images/ (easylistchina.txt: 4867) +.twunbbs.com/images/ +# ||twfuwu.info^*.gif (easylistchina.txt: 4866) +.twfuwu.info/.*\.gif +# ||twavtv.com/js/jquery.colorbox (easylistchina.txt: 4865) +.twavtv.com/js/jquery\.colorbox +# ||tw.buy.yahoo.com/?z= (easylistchina.txt: 4863) +.tw.buy.yahoo.com/\?z= +# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina.txt: 4862) +.tw.beanfun.com/bfweb/NEW/commonlogin +# ||tvnmg.com/banner/ (easylistchina.txt: 4861) +.tvnmg.com/banner/ +# ||tvf4.com^$subdocument (easylistchina.txt: 4860) +.tvf4.com +# ||tvf4.com/1/mugua.js (easylistchina.txt: 4859) +.tvf4.com/1/mugua\.js +# ||tv6080.com/qqt/ (easylistchina.txt: 4858) +.tv6080.com/qqt/ +# ||tv6080.com/520/index.htm (easylistchina.txt: 4857) +.tv6080.com/520/index\.htm +# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina.txt: 4856) +.tv380.com/ovp/ovp_home/.*/adi/ +# ||tuwan.com/templet/lol/temp/ (easylistchina.txt: 4855) +.tuwan.com/templet/lol/temp/ +# ||tui22.com/images/g.js (easylistchina.txt: 4854) +.tui22.com/images/g\.js +# ||tui22.com/images/dibu.js (easylistchina.txt: 4853) +.tui22.com/images/dibu\.js +# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina.txt: 4852) +.tui18.com/source/plugin/yl_curtain/template/yl_curtain\. +# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina.txt: 4851) +.tuhaoylw.com/upload/1/18591636/images/.*\.gif +# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina.txt: 4850) +.tudouui.com/tspecial/assets/PauseContainer\.swf +# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4849) +.tucao.tv/index\.php\?m=poster&c=index&a=show_poster&id= +# ||tucao.cc/index.php?m=poster& (easylistchina.txt: 4848) +.tucao.cc/index\.php\?m=poster& +# ||tuan.cs090.com/gettuan.php? (easylistchina.txt: 4847) +.tuan.cs090.com/gettuan\.php\? +# ||ttrar.com/js/ (easylistchina.txt: 4846) +.ttrar.com/js/ +# ||ttkdex.com/ttkdweb/page/image/query (easylistchina.txt: 4845) +.ttkdex.com/ttkdweb/page/image/query +# ||ttcy.com/style/image/gg_ (easylistchina.txt: 4844) +.ttcy.com/style/image/gg_ +# ||tt7z.com/js/ (easylistchina.txt: 4843) +.tt7z.com/js/ +# ||tt1069.com/bbs/zgg_ (easylistchina.txt: 4842) +.tt1069.com/bbs/zgg_ +# ||ts.cn^*/site1/$object (easylistchina.txt: 4841) +.ts.cn/.*/site1/ +# ||tp.sgcn.com^ (easylistchina.txt: 4840) +.tp.sgcn.com +# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina.txt: 4839) +.totuwo.com/wp-content/uploads/20.*\.gif +# ||totheglory.im/pic/ttg_ (easylistchina.txt: 4838) +.totheglory.im/pic/ttg_ +# ||totheglory.im/pic/ttg- (easylistchina.txt: 4837) +.totheglory.im/pic/ttg- +# ||totheglory.im/pic/fangtuo.jpg (easylistchina.txt: 4836) +.totheglory.im/pic/fangtuo\.jpg +# ||tonnn.com/promotion2/*.js (easylistchina.txt: 4834) +.tonnn.com/promotion2/.*\.js +# ||tongzhuo100.com/img/jianzhi.gif (easylistchina.txt: 4833) +.tongzhuo100.com/img/jianzhi\.gif +# ||tompda.com^$object (easylistchina.txt: 4832) +.tompda.com +# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina.txt: 4831) +.tompda.com/tupian/2013-03-15/300\.jpg +# ||tompda.com/images/2014/800*.gif (easylistchina.txt: 4830) +.tompda.com/images/2014/800.*\.gif +# ||tompda.com/dev/bbsadv/ (easylistchina.txt: 4829) +.tompda.com/dev/bbsadv/ +# ||tom.com/templets/tomwq/ad/ (easylistchina.txt: 4828) +.tom.com/templets/tomwq/ad/ +# ||toastoven.net/cdn/adx/ (easylistchina.txt: 4827) +.toastoven.net/cdn/adx/ +# ||tntdown.com/News/js/C_ (easylistchina.txt: 4826) +.tntdown.com/News/js/C_ +# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina.txt: 4825) +.tmbbs.com/data/attachment/portal/.*\.swf +# ||tk.504pk.com^ (easylistchina.txt: 4824) +.tk.504pk.com +# ||tjzan.com/wxpic/asianyi.gif (easylistchina.txt: 4823) +.tjzan.com/wxpic/asianyi\.gif +# ||tingvoa.com/images/top_600_80.js (easylistchina.txt: 4821) +.tingvoa.com/images/top_600_80\.js +# ||tingvoa.com/images/*img.js (easylistchina.txt: 4820) +.tingvoa.com/images/.*img\.js +# ||tingroom.com/tingroom/ad/ (easylistchina.txt: 4819) +.tingroom.com/tingroom/ad/ +# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina.txt: 4818) +.tingroom.com/skin/pt/images/tingroombanner\.gif +# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina.txt: 4817) +.tingroom.com/skin/dy/images/enread\.jpg +# ||tingroom.com/skin/dy/images/2400200 (easylistchina.txt: 4816) +.tingroom.com/skin/dy/images/2400200 +# ||tingroom.com/skin/*/js/ad_ (easylistchina.txt: 4815) +.tingroom.com/skin/.*/js/ad_ +# ||tingroom.com/images/z923.js (easylistchina.txt: 4814) +.tingroom.com/images/z923\.js +# ||tingroom.com/images/qsbdc.gif (easylistchina.txt: 4813) +.tingroom.com/images/qsbdc\.gif +# ||tingroom.com/images/hy*.js (easylistchina.txt: 4812) +.tingroom.com/images/hy.*\.js +# ||tingroom.com/file/A*.js (easylistchina.txt: 4811) +.tingroom.com/file/A.*\.js +# ||tingchina.com/js/dp468 (easylistchina.txt: 4810) +.tingchina.com/js/dp468 +# ||tingchina.com/js/allad.js (easylistchina.txt: 4809) +.tingchina.com/js/allad\.js +# ||tingchina.com/js/990 (easylistchina.txt: 4808) +.tingchina.com/js/990 +# ||tingchina.com/js/760 (easylistchina.txt: 4807) +.tingchina.com/js/760 +# ||tingchina.com/js/*220- (easylistchina.txt: 4806) +.tingchina.com/js/.*220- +# ||timedg.com/hfhtml/baiduad.html? (easylistchina.txt: 4805) +.timedg.com/hfhtml/baiduad\.html\? +# ||tigtag.com/ttad/ (easylistchina.txt: 4804) +.tigtag.com/ttad/ +# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina.txt: 4803) +.tigtag.com/styles/phpcms/js/tigtag/ads\.js +# ||tigtag.com/r/Adv/ (easylistchina.txt: 4802) +.tigtag.com/r/Adv/ +# ||tigtag.com/images/pic1/ (easylistchina.txt: 4801) +.tigtag.com/images/pic1/ +# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina.txt: 4800) +.tigerbrokers.com/activity/quotation/cnbeta/ +# ||tiexue.net/tsetforiph/ (easylistchina.txt: 4799) +.tiexue.net/tsetforiph/ +# ||tiexue.net/test*.aspx (easylistchina.txt: 4798) +.tiexue.net/test.*\.aspx +# ||tiexue.net/post2gg/ (easylistchina.txt: 4797) +.tiexue.net/post2gg/ +# ||tiexue.net/domain-policy/ (easylistchina.txt: 4796) +.tiexue.net/domain-policy/ +# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina.txt: 4792) +.tietuku.com/0bb9bfe57636dc55\.jpg +# ||tieba.baidu.com/f/urlcheck? (easylistchina.txt: 4791) +.tieba.baidu.com/f/urlcheck\? +# ||tibet.news.cn/zhuye/images/wangqun (easylistchina.txt: 4790) +.tibet.news.cn/zhuye/images/wangqun +# ||tianyaui.com/qy/adsame/ads.js (easylistchina.txt: 4789) +.tianyaui.com/qy/adsame/ads\.js +# ||tianyaui.com/gamify/broadcast/js/ (easylistchina.txt: 4788) +.tianyaui.com/gamify/broadcast/js/ +# ||tianya.cn/images/ad950x90.jpg (easylistchina.txt: 4787) +.tianya.cn/images/ad950x90\.jpg +# ||tiantiandy.com/ad-js/ (easylistchina.txt: 4786) +.tiantiandy.com/ad-js/ +# ||tiantian.tv/sda/$image (easylistchina.txt: 4785) +.tiantian.tv/sda/ +# ||tiantian.tv/js/banner.js (easylistchina.txt: 4784) +.tiantian.tv/js/banner\.js +# ||tiantian.tv/api/autosda.php (easylistchina.txt: 4783) +.tiantian.tv/api/autosda\.php +# ||tiansin.com/wp-adsense/ (easylistchina.txt: 4782) +.tiansin.com/wp-adsense/ +# ||tianshui.com.cn/yb.html (easylistchina.txt: 4781) +.tianshui.com.cn/yb\.html +# ||tianshui.com.cn/sd.swf (easylistchina.txt: 4780) +.tianshui.com.cn/sd\.swf +# ||tianshui.com.cn/Scripts/AC_ (easylistchina.txt: 4779) +.tianshui.com.cn/Scripts/AC_ +# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina.txt: 4778) +.tianshui.com.cn/newimages/xhglj\.swf +# ||tianshui.com.cn/newbg.jpg (easylistchina.txt: 4777) +.tianshui.com.cn/newbg\.jpg +# ||tianshi2.com/images/ (easylistchina.txt: 4776) +.tianshi2.com/images/ +# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina.txt: 4775) +.tianqi.com/templates/huoche/js/hcgg\.js +# ||tianqi.com/static/js/gg (easylistchina.txt: 4774) +.tianqi.com/static/js/gg +# ||tianqi.com/js/gg.js (easylistchina.txt: 4773) +.tianqi.com/js/gg\.js +# ||tianmu.com/js/qq.js (easylistchina.txt: 4772) +.tianmu.com/js/qq\.js +# ||tianmu.com/abbsd/ (easylistchina.txt: 4771) +.tianmu.com/abbsd/ +# ||tianjinwe.com/together/szbz/ (easylistchina.txt: 4770) +.tianjinwe.com/together/szbz/ +# ||tianjinwe.com/images/qssx/ (easylistchina.txt: 4769) +.tianjinwe.com/images/qssx/ +# ||tianjimedia.com/s?z= (easylistchina.txt: 4768) +.tianjimedia.com/s\?z= +# ||thisav.com/windowfiles/dhtmlwindow (easylistchina.txt: 4767) +.thisav.com/windowfiles/dhtmlwindow +# ||thisav.com/js/*float (easylistchina.txt: 4766) +.thisav.com/js/.*float +# ||thethirdmedia.com/a1/*960x (easylistchina.txt: 4765) +.thethirdmedia.com/a1/.*960x +# ||tgbus.com/sf/taobao/ (easylistchina.txt: 4764) +.tgbus.com/sf/taobao/ +# ||tgbus.com/search/article_endcontent_google.htm (easylistchina.txt: 4763) +.tgbus.com/search/article_endcontent_google\.htm +# ||tg.delnapb.com^ (easylistchina.txt: 4762) +.tg.delnapb.com +# ||tfg2.com/images/upfile/AD/ (easylistchina.txt: 4761) +.tfg2.com/images/upfile/AD/ +# ||tf.360.cn^ (easylistchina.txt: 4760) +.tf.360.cn +# ||techweb.com.cn^*aliyun (easylistchina.txt: 4759) +.techweb.com.cn/.*aliyun +# ||tcmap.com.cn/js/b_ (easylistchina.txt: 4758) +.tcmap.com.cn/js/b_ +# ||tc.cn/news/images/right.jpg (easylistchina.txt: 4757) +.tc.cn/news/images/right\.jpg +# ||tc.cn/news/images/h.jpg (easylistchina.txt: 4756) +.tc.cn/news/images/h\.jpg +# ||tc.cn/g/upload/ (easylistchina.txt: 4755) +.tc.cn/g/upload/ +# ||tc.cn/g/dl.ashx? (easylistchina.txt: 4754) +.tc.cn/g/dl\.ashx\? +# ||tc.cn/ad123/ (easylistchina.txt: 4753) +.tc.cn/ad123/ +# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina.txt: 4752) +.tbcdn.cn/mm/tanxssp-custom/sina_ +# ||tasteforlife.com.tw^$subdocument (easylistchina.txt: 4751) +.tasteforlife.com.tw +# ||taoyoudu.com/img/top.jpg (easylistchina.txt: 4750) +.taoyoudu.com/img/top\.jpg +# ||taohuazu.tw/tool/ (easylistchina.txt: 4749) +.taohuazu.tw/tool/ +# ||taohua.me/tool/taohuazu.js (easylistchina.txt: 4748) +.taohua.me/tool/taohuazu\.js +# ||taoguba.com.cn/js/tgbduilian (easylistchina.txt: 4747) +.taoguba.com.cn/js/tgbduilian +# ||taoguba.com.cn/js/hezuo/ (easylistchina.txt: 4746) +.taoguba.com.cn/js/hezuo/ +# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina.txt: 4745) +.taoguba.com.cn/img/2015/08/26/oh5555jfx48p\.jpg +# ||taodake.com/taodake_img/Images/union/ (easylistchina.txt: 4744) +.taodake.com/taodake_img/Images/union/ +# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina.txt: 4741) +.taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450\.jpg_670x670\.jpg +# ||talkforex.com/data/attachment/portal/ (easylistchina.txt: 4739) +.talkforex.com/data/attachment/portal/ +# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina.txt: 4738) +.taizhou.com.cn/.*/3890\.files/xchad\.jpg +# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina.txt: 4737) +.taizhou.com.cn/52\.files/c1_20150423\.swf +# ||taizhou.com.cn/52.files/a*20 (easylistchina.txt: 4736) +.taizhou.com.cn/52\.files/a.*20 +# ||taiwandaily.net/uploadimages% (easylistchina.txt: 4735) +.taiwandaily.net/uploadimages% +# ||taiwan.cn/images/tw_ad_ (easylistchina.txt: 4734) +.taiwan.cn/images/tw_ad_ +# ||taihe.net/js/ad (easylistchina.txt: 4733) +.taihe.net/js/ad +# ||taihainet.com/biz/ (easylistchina.txt: 4732) +.taihainet.com/biz/ +# ||t259.net/js/click_showclose.js (easylistchina.txt: 4731) +.t259.net/js/click_showclose\.js +# ||t259.net/images/*.gif (easylistchina.txt: 4730) +.t259.net/images/.*\.gif +# ||t.58xs.com/hot/ (easylistchina.txt: 4729) +.t.58xs.com/hot/ +# ||sztaofang.com/out/Out_BBs.asp (easylistchina.txt: 4728) +.sztaofang.com/out/Out_BBs\.asp +# ||sznews.com/css/$script (easylistchina.txt: 4727) +.sznews.com/css/ +# ||sznews.com/*.files/$image,object (easylistchina.txt: 4726) +.sznews.com/.*\.files/ +# ||szhk.com/include/taobao (easylistchina.txt: 4725) +.szhk.com/include/taobao +# ||szhk.com/iframe/ (easylistchina.txt: 4724) +.szhk.com/iframe/ +# ||szhk.com/ads/ (easylistchina.txt: 4723) +.szhk.com/ads/ +# ||szhk.com/565.jpg (easylistchina.txt: 4722) +.szhk.com/565\.jpg +# ||sz1001.net^*/soft_*.js (easylistchina.txt: 4721) +.sz1001.net/.*/soft_.*\.js +# ||sz1001.net/ab1/index*.js (easylistchina.txt: 4720) +.sz1001.net/ab1/index.*\.js +# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina.txt: 4719) +.sz.zj.cn/info\.php\?fid= +# ||sz.zj.cn/2013-dh.asp (easylistchina.txt: 4718) +.sz.zj.cn/2013-dh\.asp +# ||synacast.com^ (easylistchina.txt: 4717) +.synacast.com +# ||sydneytoday.com/sponsor/ (easylistchina.txt: 4716) +.sydneytoday.com/sponsor/ +# ||syd.com.cn/pic_index/lalian (easylistchina.txt: 4715) +.syd.com.cn/pic_index/lalian +# ||syd.com.cn/pic_index/duilian (easylistchina.txt: 4714) +.syd.com.cn/pic_index/duilian +# ||sy.ln.cn/08gg/ (easylistchina.txt: 4713) +.sy.ln.cn/08gg/ +# ||sxrom.com/images/zz.jpg (easylistchina.txt: 4712) +.sxrom.com/images/zz\.jpg +# ||sxrom.com/images/download/top (easylistchina.txt: 4711) +.sxrom.com/images/download/top +# ||sxrom.com/images/9.js (easylistchina.txt: 4710) +.sxrom.com/images/9\.js +# ||sxrom.com/images/79.gif (easylistchina.txt: 4709) +.sxrom.com/images/79\.gif +# ||sxrb.com/upload/js/xww_ (easylistchina.txt: 4708) +.sxrb.com/upload/js/xww_ +# ||sx566.com^*/zsz (easylistchina.txt: 4707) +.sx566.com/.*/zsz +# ||sx566.com/ads/ (easylistchina.txt: 4706) +.sx566.com/ads/ +# ||supfree.net/images/otop.js (easylistchina.txt: 4705) +.supfree.net/images/otop\.js +# ||super.kdnet.net^ (easylistchina.txt: 4704) +.super.kdnet.net +# ||super.cat898.com^ (easylistchina.txt: 4703) +.super.cat898.com +# ||suimeng.com/js/html/yuedu (easylistchina.txt: 4702) +.suimeng.com/js/html/yuedu +# ||sufile.com/jsa/ (easylistchina.txt: 4701) +.sufile.com/jsa/ +# ||sudupan.com^*.gif (easylistchina.txt: 4700) +.sudupan.com/.*\.gif +# ||sudupan.com/380.jpg (easylistchina.txt: 4699) +.sudupan.com/380\.jpg +# ||sucaijiayuan.com/uploads/ad/ (easylistchina.txt: 4698) +.sucaijiayuan.com/uploads/ad/ +# ||sub.powerapple.com^ (easylistchina.txt: 4697) +.sub.powerapple.com +# ||su.bdimg.com/static/dspui/js/ (easylistchina.txt: 4696) +.su.bdimg.com/static/dspui/js/ +# ||strtv.cn/publicimg/sitelink/ (easylistchina.txt: 4695) +.strtv.cn/publicimg/sitelink/ +# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina.txt: 4694) +.strip.taobaocdn.com/tfscom/ +# ||storm.mg/ad? (easylistchina.txt: 4693) +.storm.mg/ad\? +# ||storetorrent.org/static/js/best (easylistchina.txt: 4692) +.storetorrent.org/static/js/best +# ||storetorrent.org/static/best/795X60.gif (easylistchina.txt: 4691) +.storetorrent.org/static/best/795X60\.gif +# ||stockstar.com/*DUILIAN&t= (easylistchina.txt: 4690) +.stockstar.com/.*DUILIAN&t= +# ||sto.cn*/temp/adv.jpg (easylistchina.txt: 4689) +.sto.cn*./(.*/)?temp/adv\.jpg +# ||stnn.cc/images/xy/yy.swf (easylistchina.txt: 4688) +.stnn.cc/images/xy/yy\.swf +# ||stnn.cc/images/xy/y0*.jpg (easylistchina.txt: 4687) +.stnn.cc/images/xy/y0.*\.jpg +# ||stnn.cc/images/xy/640_100/ (easylistchina.txt: 4686) +.stnn.cc/images/xy/640_100/ +# ||stnn.cc/images/xy/300$subdocument (easylistchina.txt: 4685) +.stnn.cc/images/xy/300 +# ||stnn.cc/images/xy/*x80$image,object (easylistchina.txt: 4684) +.stnn.cc/images/xy/.*x80 +# ||stnn.cc/images/xy/*80px (easylistchina.txt: 4683) +.stnn.cc/images/xy/.*80px +# ||stheadline.com^*/right_promo.js (easylistchina.txt: 4682) +.stheadline.com/.*/right_promo\.js +# ||stheadline.com/*banner$script (easylistchina.txt: 4681) +.stheadline.com/.*banner +# ||steamcn.com/img/lancai_ (easylistchina.txt: 4680) +.steamcn.com/img/lancai_ +# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina.txt: 4679) +.steachs.com/wp-content/uploads/2015/12/nippon\.gif +# ||stcn.com/common/flash/aigu.swf (easylistchina.txt: 4678) +.stcn.com/common/flash/aigu\.swf +# ||stats.chinaz.com/tool_img/ (easylistchina.txt: 4677) +.stats.chinaz.com/tool_img/ +# ||stats.chinaz.com/tool/ (easylistchina.txt: 4676) +.stats.chinaz.com/tool/ +# ||static.zongheng.com^*/index_r_b.js (easylistchina.txt: 4675) +.static.zongheng.com/.*/index_r_b\.js +# ||static.zongheng.com/upload/zhds/ (easylistchina.txt: 4674) +.static.zongheng.com/upload/zhds/ +# ||static.zongheng.com/upload/hzds/ (easylistchina.txt: 4673) +.static.zongheng.com/upload/hzds/ +# ||static.zongheng.com/upload/ad/ (easylistchina.txt: 4672) +.static.zongheng.com/upload/ad/ +# ||static.wenxiu.com/js/top.js (easylistchina.txt: 4671) +.static.wenxiu.com/js/top\.js +# ||static.tianyaui.com^*/stat_20080313.js (easylistchina.txt: 4670) +.static.tianyaui.com/.*/stat_20080313\.js +# ||static.imanke.com/imanke/pigbbs.js (easylistchina.txt: 4669) +.static.imanke.com/imanke/pigbbs\.js +# ||static.imanke.com/imanke/m/ (easylistchina.txt: 4668) +.static.imanke.com/imanke/m/ +# ||static.fzdm.com/top (easylistchina.txt: 4667) +.static.fzdm.com/top +# ||static.fzdm.com/ispop.js (easylistchina.txt: 4666) +.static.fzdm.com/ispop\.js +# ||static.fzdm.com/foot (easylistchina.txt: 4665) +.static.fzdm.com/foot +# ||static.doyouhike.net/partner/ (easylistchina.txt: 4664) +.static.doyouhike.net/partner/ +# ||static.d.lecai.com/js/*m.js (easylistchina.txt: 4663) +.static.d.lecai.com/js/.*m\.js +# ||static.colayun.com/images/vip.png (easylistchina.txt: 4662) +.static.colayun.com/images/vip\.png +# ||static.coladrive.com/images/vip.png (easylistchina.txt: 4661) +.static.coladrive.com/images/vip\.png +# ||static.aizhan.com/jsa/ (easylistchina.txt: 4660) +.static.aizhan.com/jsa/ +# ||starnnews.com/banner/ (easylistchina.txt: 4659) +.starnnews.com/banner/ +# ||starbaby.cn/bookconnector/ (easylistchina.txt: 4658) +.starbaby.cn/bookconnector/ +# ||starbaby.cn/adconnector/ (easylistchina.txt: 4657) +.starbaby.cn/adconnector/ +# ||ssnn.net^*-200-250.jpg (easylistchina.txt: 4656) +.ssnn.net/.*-200-250\.jpg +# ||srzc.com^*/zwfjs/ (easylistchina.txt: 4655) +.srzc.com/.*/zwfjs/ +# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina.txt: 4654) +.srzc.com/templets/srxw/img/000ad\.jpg +# ||srzc.com/js/gelao/ (easylistchina.txt: 4653) +.srzc.com/js/gelao/ +# ||srzc.com/js/Adsjs/ (easylistchina.txt: 4652) +.srzc.com/js/Adsjs/ +# ||srzc.com/images/*.swf (easylistchina.txt: 4651) +.srzc.com/images/.*\.swf +# ||sportsv.net/dist/ads/ (easylistchina.txt: 4649) +.sportsv.net/dist/ads/ +# ||spn.com.cn/media/jackmm.js (easylistchina.txt: 4648) +.spn.com.cn/media/jackmm\.js +# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina.txt: 4647) +.spn.com.cn/admin_new/imgs/b2\.jpg +# ||spbonow.com/UploadFiles/20$image (easylistchina.txt: 4646) +.spbonow.com/UploadFiles/20 +# ||spbonow.com/js/float.js (easylistchina.txt: 4645) +.spbonow.com/js/float\.js +# ||spbonow.com/images/fyt.gif (easylistchina.txt: 4644) +.spbonow.com/images/fyt\.gif +# ||sozi.cn/templets/sozi/js/js.js (easylistchina.txt: 4643) +.sozi.cn/templets/sozi/js/js\.js +# ||soxia.cc/img/baoyue*.gif (easylistchina.txt: 4642) +.soxia.cc/img/baoyue.*\.gif +# ||southmoney.com/page/top (easylistchina.txt: 4641) +.southmoney.com/page/top +# ||southmoney.com/page/inc/ (easylistchina.txt: 4640) +.southmoney.com/page/inc/ +# ||source.qunar.com/site/images/wns/ (easylistchina.txt: 4639) +.source.qunar.com/site/images/wns/ +# ||soso.com/baike/js/ad_ (easylistchina.txt: 4638) +.soso.com/baike/js/ad_ +# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina.txt: 4637) +.sootoo.com/son_media/msg/2010/11/16/30324\.jpg +# ||sooopu.com/js/contentad330.js (easylistchina.txt: 4636) +.sooopu.com/js/contentad330\.js +# ||sooopu.com/js/*950.js (easylistchina.txt: 4635) +.sooopu.com/js/.*950\.js +# ||sooopu.com/images/web/cg328/cg.js (easylistchina.txt: 4634) +.sooopu.com/images/web/cg328/cg\.js +# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina.txt: 4632) +.sohu.com/interaction/get/getListByVidForVrs\.do\? +# ||sohu.com/adgtr/ (easylistchina.txt: 4631) +.sohu.com/adgtr/ +# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina.txt: 4630) +.sohu.com.cn/ppp/bms/bms\.popup\. +# ||sogou.com/skins/images/skinlist_ad. (easylistchina.txt: 4629) +.sogou.com/skins/images/skinlist_ad\. +# ||sogou.com/images/galaxy.jpg (easylistchina.txt: 4628) +.sogou.com/images/galaxy\.jpg +# ||softhy.net/hp/ (easylistchina.txt: 4627) +.softhy.net/hp/ +# ||soft711.com/2013/ (easylistchina.txt: 4626) +.soft711.com/2013/ +# ||soft.mumayi.net/js/ (easylistchina.txt: 4625) +.soft.mumayi.net/js/ +# ||soft.mumayi.net/images/download.gif (easylistchina.txt: 4624) +.soft.mumayi.net/images/download\.gif +# ||soaspx.com/images/iiszj.gif (easylistchina.txt: 4623) +.soaspx.com/images/iiszj\.gif +# ||soaspx.com/images/hws.gif (easylistchina.txt: 4622) +.soaspx.com/images/hws\.gif +# ||so100.cn/images/newshead.htm (easylistchina.txt: 4621) +.so100.cn/images/newshead\.htm +# ||so100.cn/images/a*.js (easylistchina.txt: 4620) +.so100.cn/images/a.*\.js +# ||so.open.163.com/v/list.htm?pid= (easylistchina.txt: 4619) +.so.open.163.com/v/list\.htm\?pid= +# ||so.6949.com^ (easylistchina.txt: 4618) +.so.6949.com +# ||snybw.com/images/*-banner. (easylistchina.txt: 4617) +.snybw.com/images/.*-banner\. +# ||smzy.com^*970.js (easylistchina.txt: 4616) +.smzy.com/.*970\.js +# ||smzy.com^*/webtg (easylistchina.txt: 4615) +.smzy.com/.*/webtg +# ||slooti.com/upload/30/38/1446711674.gif (easylistchina.txt: 4614) +.slooti.com/upload/30/38/1446711674\.gif +# ||slit.cn/slgg/ (easylistchina.txt: 4613) +.slit.cn/slgg/ +# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina.txt: 4612) +.slit.cn/skin/slitsk/js/dlad\.js +# ||slit.cn/d/js/images/thea (easylistchina.txt: 4611) +.slit.cn/d/js/images/thea +# ||skinme.cc/assets/images/banner_ (easylistchina.txt: 4610) +.skinme.cc/assets/images/banner_ +# ||skinme.cc*/assets/images/*0.swf (easylistchina.txt: 4609) +.skinme.cc*./(.*/)?assets/images/.*0\.swf +# ||skdh2.com/tp/ (easylistchina.txt: 4608) +.skdh2.com/tp/ +# ||skdh1.com/tp/ (easylistchina.txt: 4607) +.skdh1.com/tp/ +# ||skdh.net^*980 (easylistchina.txt: 4606) +.skdh.net/.*980 +# ||skdh.net/zuo.js (easylistchina.txt: 4605) +.skdh.net/zuo\.js +# ||skads.gxsky.com^$script (easylistchina.txt: 4604) +.skads.gxsky.com +# ||sjzdaily.com.cn/sjznewsad/ (easylistchina.txt: 4603) +.sjzdaily.com.cn/sjznewsad/ +# ||sjzbus.com.cn/advimg/ (easylistchina.txt: 4602) +.sjzbus.com.cn/advimg/ +# ||sjyws.sjyws.com^*.gif (easylistchina.txt: 4601) +.sjyws.sjyws.com/.*\.gif +# ||siyu88.net/g$subdocument (easylistchina.txt: 4600) +.siyu88.net/g +# ||siyu88.cn/xl/ (easylistchina.txt: 4599) +.siyu88.cn/xl/ +# ||sisiww.com/yezicheng_ad/ (easylistchina.txt: 4598) +.sisiww.com/yezicheng_ad/ +# ||sisiww.com/6786526.gif (easylistchina.txt: 4597) +.sisiww.com/6786526\.gif +# ||sinolub.com/data/js/*.js (easylistchina.txt: 4596) +.sinolub.com/data/js/.*\.js +# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina.txt: 4595) +.sinajs.cn/t6/home/js/pl/guide/bigday/ +# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina.txt: 4594) +.sinajs.cn/t6/home/js/pl/guide/adforfqy/ +# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina.txt: 4593) +.sinajs.cn/t4/apps/publicity/static/wbad\.js +# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina.txt: 4592) +.sinajs.cn/blog7style/images/activity/app_tuiguang/ +# ||sinaimg.cn^*/deco/$script (easylistchina.txt: 4591) +.sinaimg.cn/.*/deco/ +# ||sinaimg.cn/unipro/ (easylistchina.txt: 4588) +.sinaimg.cn/unipro/ +# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina.txt: 4587) +.sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82\.gif +# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina.txt: 4586) +.sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj\.jpg +# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina.txt: 4585) +.sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn\.jpg +# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina.txt: 4584) +.sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh\.jpg +# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina.txt: 4583) +.sinaimg.cn/mw690/a6a976a2.*j207e02a +# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina.txt: 4582) +.sinaimg.cn/mw690/a1916e89gw1dye4d74zmij\.jpg +# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina.txt: 4581) +.sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj\.jpg +# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina.txt: 4580) +.sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi\.jpg +# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina.txt: 4579) +.sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu\.jpg +# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina.txt: 4578) +.sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina.txt: 4576) +.sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81\.gif +# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina.txt: 4575) +.sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina.txt: 4574) +.sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina.txt: 4573) +.sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf\.jpg +# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina.txt: 4571) +.sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt\.gif +# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina.txt: 4570) +.sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y\.jpg +# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina.txt: 4569) +.sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r\.gif +# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina.txt: 4568) +.sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5\.jpg +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina.txt: 4567) +.sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts\.jpg +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina.txt: 4566) +.sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta\.jpg +# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina.txt: 4565) +.sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy\.gif +# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina.txt: 4563) +.sinaimg.cn/jslib/kuozhanad\.js +# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina.txt: 4562) +.sinaimg.cn/finance/zwy/sidead_ +# ||sinaimg.cn/cj/dfz_ad/ (easylistchina.txt: 4561) +.sinaimg.cn/cj/dfz_ad/ +# ||sina.com/rm/ (easylistchina.txt: 4560) +.sina.com/rm/ +# ||sina.com/assets/js/dart/ (easylistchina.txt: 4559) +.sina.com/assets/js/dart/ +# ||sina.com/ads/ (easylistchina.txt: 4558) +.sina.com/ads/ +# ||sina.com.tw^$subdocument (easylistchina.txt: 4557) +.sina.com.tw +# ||sina.com.tw/game_data/adsbro_ (easylistchina.txt: 4556) +.sina.com.tw/game_data/adsbro_ +# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina.txt: 4555) +.sina.com.cn/tgy/pop_js/ad\.js +# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina.txt: 4554) +.sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90\.gif +# ||sina.com.cn/NewIndexAdStart.js (easylistchina.txt: 4553) +.sina.com.cn/NewIndexAdStart\.js +# ||sina.com.cn/litong/ (easylistchina.txt: 4552) +.sina.com.cn/litong/ +# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina.txt: 4551) +.sina.com.cn/js/87/20140101/hongbao/ +# ||sina.com.cn/js/*/bgads.js (easylistchina.txt: 4550) +.sina.com.cn/js/.*/bgads\.js +# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina.txt: 4549) +.sina.com.cn/js/.*/AdvertisingByNewIndex_ +# ||sina.com.cn/131/20150515/266.js (easylistchina.txt: 4548) +.sina.com.cn/131/20150515/266\.js +# ||sina.cn/adfront/deliver.php? (easylistchina.txt: 4547) +.sina.cn/adfront/deliver\.php\? +# ||simplecd.me/static/js/adcpm.js (easylistchina.txt: 4546) +.simplecd.me/static/js/adcpm\.js +# ||shxd.net/img/myad.gif (easylistchina.txt: 4545) +.shxd.net/img/myad\.gif +# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina.txt: 4544) +.shuyeer.com/views/default/mnstyle/hot/gg\.js +# ||shuyeer.com/views/default/images/close.gif (easylistchina.txt: 4543) +.shuyeer.com/views/default/images/close\.gif +# ||shuyeer.com/dlr.html (easylistchina.txt: 4542) +.shuyeer.com/dlr\.html +# ||shuqi6.com/static/jquery/gg.js (easylistchina.txt: 4541) +.shuqi6.com/static/jquery/gg\.js +# ||shumimi.com/js/a3.js (easylistchina.txt: 4540) +.shumimi.com/js/a3\.js +# ||shumimi.com/js/a2.js (easylistchina.txt: 4539) +.shumimi.com/js/a2\.js +# ||shumimi.com/js/a1.js (easylistchina.txt: 4538) +.shumimi.com/js/a1\.js +# ||shumimi.com/js/a0 (easylistchina.txt: 4537) +.shumimi.com/js/a0 +# ||shulink.com/js/pagetop5.js (easylistchina.txt: 4536) +.shulink.com/js/pagetop5\.js +# ||shulihua.net/js/yegonggao.js (easylistchina.txt: 4535) +.shulihua.net/js/yegonggao\.js +# ||shulihua.net/js/topcen.js (easylistchina.txt: 4534) +.shulihua.net/js/topcen\.js +# ||shulihua.net/js/gzlishigoogle.js (easylistchina.txt: 4533) +.shulihua.net/js/gzlishigoogle\.js +# ||shulihua.net/js/gzlishi468google.js (easylistchina.txt: 4532) +.shulihua.net/js/gzlishi468google\.js +# ||shuhe.cc/ssi/ (easylistchina.txt: 4531) +.shuhe.cc/ssi/ +# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina.txt: 4530) +.shuajizhijia.com/uploads/allimg/141121/1_1702554911\.jpg +# ||shuajizhijia.com/static/js/rightdown.js (easylistchina.txt: 4529) +.shuajizhijia.com/static/js/rightdown\.js +# ||shuaijiao.com/statics/js/adv0.js (easylistchina.txt: 4528) +.shuaijiao.com/statics/js/adv0\.js +# ||shows.21cn.com^ (easylistchina.txt: 4527) +.shows.21cn.com +# ||showbean.net:8081/cpma.js (easylistchina.txt: 4526) +.showbean.net:8081/cpma\.js +# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina.txt: 4525) +.shouyoutv.com/assets/api/web/v4/js/global_head\.js +# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina.txt: 4524) +.shouyou.com/2013/new/shouyou-duilian\.js +# ||shoudian.org/diantong/sunwayman*.gif (easylistchina.txt: 4523) +.shoudian.org/diantong/sunwayman.*\.gif +# ||shmet.com/js/shmetAd.js (easylistchina.txt: 4522) +.shmet.com/js/shmetAd\.js +# ||shmet.com/images/zz250x80.jpg (easylistchina.txt: 4521) +.shmet.com/images/zz250x80\.jpg +# ||shmet.com/images/20120213ad/ (easylistchina.txt: 4520) +.shmet.com/images/20120213ad/ +# ||shmet.com/images/150x150newsshmet.jpg (easylistchina.txt: 4519) +.shmet.com/images/150x150newsshmet\.jpg +# ||shmet.com/images/1000x90newshmet.swf (easylistchina.txt: 4518) +.shmet.com/images/1000x90newshmet\.swf +# ||shm.com.cn/js/load.swf (easylistchina.txt: 4517) +.shm.com.cn/js/load\.swf +# ||shm.com.cn/css/m.js (easylistchina.txt: 4516) +.shm.com.cn/css/m\.js +# ||shm.com.cn/content/con*.js (easylistchina.txt: 4515) +.shm.com.cn/content/con.*\.js +# ||shfq.com/data/attachment/portal/ (easylistchina.txt: 4514) +.shfq.com/data/attachment/portal/ +# ||shenmeshi.com/googlejs/ziding1.js (easylistchina.txt: 4513) +.shenmeshi.com/googlejs/ziding1\.js +# ||shenmaxiaoshuo.com/js/mu.js (easylistchina.txt: 4512) +.shenmaxiaoshuo.com/js/mu\.js +# ||shenmaxiaoshuo.com/js/lu.js (easylistchina.txt: 4511) +.shenmaxiaoshuo.com/js/lu\.js +# ||shenmaxiaoshuo.com/js/hf (easylistchina.txt: 4510) +.shenmaxiaoshuo.com/js/hf +# ||shenleyuni.com^ (easylistchina.txt: 4509) +.shenleyuni.com +# ||shejizhan.org/images/myssh (easylistchina.txt: 4508) +.shejizhan.org/images/myssh +# ||shehuitu.com/jsjs/ (easylistchina.txt: 4507) +.shehuitu.com/jsjs/ +# ||shbear.com^*/ad/ (easylistchina.txt: 4506) +.shbear.com/.*/ad/ +# ||share.gzdsw.com^ (easylistchina.txt: 4505) +.share.gzdsw.com +# ||share.dmhy.*/*?$image (easylistchina.txt: 4504) +.share.dmhy.*./(.*/)?.*\? +# ||shaoxing.com.cn^*gg. (easylistchina.txt: 4503) +.shaoxing.com.cn/.*gg\. +# ||shaoxing.com.cn/6201.files/*.swf (easylistchina.txt: 4502) +.shaoxing.com.cn/6201\.files/.*\.swf +# ||shanhe.cc/Scripts/main-pf.js (easylistchina.txt: 4501) +.shanhe.cc/Scripts/main-pf\.js +# ||shanhe.cc/Scripts/ads_dl.js (easylistchina.txt: 4500) +.shanhe.cc/Scripts/ads_dl\.js +# ||shanhe.cc/index.php?m=poster& (easylistchina.txt: 4499) +.shanhe.cc/index\.php\?m=poster& +# ||shangdu.com/tpnews/dazhe.gif (easylistchina.txt: 4498) +.shangdu.com/tpnews/dazhe\.gif +# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina.txt: 4497) +.shangdu.com/newfile2007/ad/tu/flash/3dboard\.swf +# ||shangdu.com/lyinfo/ad/ (easylistchina.txt: 4496) +.shangdu.com/lyinfo/ad/ +# ||shangdu.com/comiis_ad/ (easylistchina.txt: 4495) +.shangdu.com/comiis_ad/ +# ||shangdu.com/bbs/1005010601.js (easylistchina.txt: 4494) +.shangdu.com/bbs/1005010601\.js +# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina.txt: 4493) +.shangdu.com/2013pic/kuahailong\.jpg +# ||shangdu.com/2013pic/09cn.jpg (easylistchina.txt: 4492) +.shangdu.com/2013pic/09cn\.jpg +# ||shangdu.com/1002/1002031301.js (easylistchina.txt: 4491) +.shangdu.com/1002/1002031301\.js +# ||shangdu.com/1002/1002030901.js (easylistchina.txt: 4490) +.shangdu.com/1002/1002030901\.js +# ||shangdu.com/1002/1002030801.js (easylistchina.txt: 4489) +.shangdu.com/1002/1002030801\.js +# ||shangdu.com/1002/1002030101.js (easylistchina.txt: 4488) +.shangdu.com/1002/1002030101\.js +# ||shang.hlgnet.net/code/ (easylistchina.txt: 4487) +.shang.hlgnet.net/code/ +# ||shang.hlgnet.com/code/ (easylistchina.txt: 4486) +.shang.hlgnet.com/code/ +# ||shabc.net/shyk/swt/swt_yh.js (easylistchina.txt: 4485) +.shabc.net/shyk/swt/swt_yh\.js +# ||sh114so.com^$subdocument (easylistchina.txt: 4484) +.sh114so.com +# ||sh114so.com/js/nm*.js (easylistchina.txt: 4483) +.sh114so.com/js/nm.*\.js +# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina.txt: 4482) +.sh.sina.com.cn/js/441/ZwyArticle_commo_23\.js +# ||sh.sina.com.cn/iframe/522/ (easylistchina.txt: 4481) +.sh.sina.com.cn/iframe/522/ +# ||sgg.southcn.com^ (easylistchina.txt: 4480) +.sgg.southcn.com +# ||sg169.com/uploadfile/*.swf (easylistchina.txt: 4479) +.sg169.com/uploadfile/.*\.swf +# ||sg169.com/uploadfile/*.gif (easylistchina.txt: 4478) +.sg169.com/uploadfile/.*\.gif +# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina.txt: 4477) +.sf-express.com/cn/sc/\.galleries/sfbest/.*_right_sc\. +# ||sexbarss.net/wap/ (easylistchina.txt: 4476) +.sexbarss.net/wap/ +# ||sentsin.qiniudn.com/ad_ (easylistchina.txt: 4475) +.sentsin.qiniudn.com/ad_ +# ||sejie2.us/images/*.gif (easylistchina.txt: 4474) +.sejie2.us/images/.*\.gif +# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina.txt: 4473) +.secretmine.net/wp-content/uploads/2015/07/youdaoxiazai\.jpg +# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina.txt: 4472) +.secretmine.net/wp-content/uploads/2015/07/A- +# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina.txt: 4471) +.secretmine.net/wp-content/uploads/.*/610x80 +# ||secretmine.net/wp-content/uploads/*-960 (easylistchina.txt: 4470) +.secretmine.net/wp-content/uploads/.*-960 +# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina.txt: 4469) +.secretmine.net/wp-content/uploads/.*-300-25\. +# ||sdzbcg.com/images/sdfhyl (easylistchina.txt: 4468) +.sdzbcg.com/images/sdfhyl +# ||sdzbcg.com/images/jnmy (easylistchina.txt: 4467) +.sdzbcg.com/images/jnmy +# ||sdzbcg.com/images/ggwzz.jpg (easylistchina.txt: 4466) +.sdzbcg.com/images/ggwzz\.jpg +# ||sdo.com/static/image/mkads/ (easylistchina.txt: 4464) +.sdo.com/static/image/mkads/ +# ||sdktu.com/js/alpha.js (easylistchina.txt: 4463) +.sdktu.com/js/alpha\.js +# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina.txt: 4462) +.sdgundam.cn/upload/2015-07/dcfea62708a21351\.jpg +# ||sdgundam.cn/js/duilian3.js (easylistchina.txt: 4461) +.sdgundam.cn/js/duilian3\.js +# ||sd888.org/house/flash/ (easylistchina.txt: 4460) +.sd888.org/house/flash/ +# ||sd888.org/flash/ (easylistchina.txt: 4459) +.sd888.org/flash/ +# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina.txt: 4458) +.sd.xinhuanet.com/2014xb/images/shanhang\.gif +# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina.txt: 4457) +.sd.xinhuanet.com/2014xb/html/albbg\.htm +# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina.txt: 4456) +.sd.xinhuanet.com/2014xb/flash/ +# ||scsn.cn/Public/config/Couplet/Index (easylistchina.txt: 4455) +.scsn.cn/Public/config/Couplet/Index +# ||scsn.cn/Public/config/Couplet/16.js (easylistchina.txt: 4454) +.scsn.cn/Public/config/Couplet/16\.js +# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina.txt: 4453) +.script.cmfu.com/Script/GameAdAptationInfo\.js +# ||script.cmfu.com/ADScript/ (easylistchina.txt: 4452) +.script.cmfu.com/ADScript/ +# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina.txt: 4451) +.scol.com.cn/scol-3/js/08scol_text_ +# ||scol.com.cn/js/def_ (easylistchina.txt: 4450) +.scol.com.cn/js/def_ +# ||sc.tom.com^ (easylistchina.txt: 4449) +.sc.tom.com +# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina.txt: 4448) +.sc.chinaiiss.com/do\.php\?do=ad& +# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina.txt: 4447) +.saydigi.com/wp-content/uploads/2015/01/gogo\.png +# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina.txt: 4446) +.saydigi.com/wp-content/uploads/2014/01/mii2\.gif +# ||saydigi.com/wp-content/uploads/*-banner (easylistchina.txt: 4445) +.saydigi.com/wp-content/uploads/.*-banner +# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina.txt: 4444) +.saydigi.com/wp-content/uploads/.*-240x250\. +# ||sax.sina.com.cn/crossdomain.xml (easylistchina.txt: 4443) +.sax.sina.com.cn/crossdomain\.xml +# ||same.stockstar.com^ (easylistchina.txt: 4442) +.same.stockstar.com +# ||same.eastmoney.com^ (easylistchina.txt: 4441) +.same.eastmoney.com +# ||same.chinadaily.com.cn^ (easylistchina.txt: 4440) +.same.chinadaily.com.cn +# ||same*.jrj.com.cn^$script,subdocument (easylistchina.txt: 4439) +.same*./.*\.jrj\.com\.cn[^\w%.-] +.same*.jrj.com.cn +# ||sam*.baby-kingdom.com^ (easylistchina.txt: 4438) +.sam*./.*\.baby-kingdom\.com[^\w%.-] +.sam*.baby-kingdom.com +# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina.txt: 4437) +.saibeinews.com/index\.php\?m=poster&c=index&a=show_poster& +# ||safedom.net/edm/ad/ (easylistchina.txt: 4436) +.safedom.net/edm/ad/ +# ||s8bbs.com/g.php? (easylistchina.txt: 4435) +.s8bbs.com/g\.php\? +# ||s1979.com/html/ad_js/ (easylistchina.txt: 4434) +.s1979.com/html/ad_js/ +# ||s1.pplive.cn/sta.js (easylistchina.txt: 4433) +.s1.pplive.cn/sta\.js +# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina.txt: 4432) +.s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226\.js +# ||s.yimg.com/gs/apex/ (easylistchina.txt: 4430) +.s.yimg.com/gs/apex/ +# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina.txt: 4429) +.s.video.sina.com.cn/video/play\?video_id=249750205& +# ||s.u17t.com/leaflet/upload/ (easylistchina.txt: 4428) +.s.u17t.com/leaflet/upload/ +# ||s.tankr.net/s/$script (easylistchina.txt: 4427) +.s.tankr.net/s/ +# ||s.tankr.net/n/ (easylistchina.txt: 4426) +.s.tankr.net/n/ +# ||s-msn.com/portal/xiatui.js (easylistchina.txt: 4425) +.s-msn.com/portal/xiatui\.js +# ||s-msn.com/portal/hp/2015/807.html (easylistchina.txt: 4424) +.s-msn.com/portal/hp/2015/807\.html +# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina.txt: 4423) +.s-msn.com/msnportal/hp/luckyday/ +# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina.txt: 4422) +.rznews.cn/viscms/r/cms/rzw/rzxw/images/.*\.swf +# ||ruten.com.tw/js/gads_ (easylistchina.txt: 4421) +.ruten.com.tw/js/gads_ +# ||ruten.com.tw/js/ahd_ (easylistchina.txt: 4420) +.ruten.com.tw/js/ahd_ +# ||runsky.com/html/*_index_ (easylistchina.txt: 4419) +.runsky.com/html/.*_index_ +# ||runsky.com/bbsadv- (easylistchina.txt: 4418) +.runsky.com/bbsadv- +# ||runmang.com/img/ (easylistchina.txt: 4417) +.runmang.com/img/ +# ||runbt.com/js/ad (easylistchina.txt: 4416) +.runbt.com/js/ad +# ||runbt.com/image/ad_ (easylistchina.txt: 4415) +.runbt.com/image/ad_ +# ||ruian86.com/img/y13/ (easylistchina.txt: 4414) +.ruian86.com/img/y13/ +# ||ruian.com/img/y13/ (easylistchina.txt: 4413) +.ruian.com/img/y13/ +# ||rugao35.com/Public/config/Couplet/Index (easylistchina.txt: 4412) +.rugao35.com/Public/config/Couplet/Index +# ||ruanyifeng.com/blog/images/sup_ (easylistchina.txt: 4411) +.ruanyifeng.com/blog/images/sup_ +# ||ruanyifeng.com/blog/images/ad_ (easylistchina.txt: 4410) +.ruanyifeng.com/blog/images/ad_ +# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina.txt: 4409) +.ruanjianxiaozi.qiniudn.com +# ||ruan8.com/img/head.js (easylistchina.txt: 4408) +.ruan8.com/img/head\.js +# ||ruan8.com/img/foot.js (easylistchina.txt: 4407) +.ruan8.com/img/foot\.js +# ||rtbs.cn/bi.js (easylistchina.txt: 4406) +.rtbs.cn/bi\.js +# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina.txt: 4405) +.rshhy.com/uploads/allimg/130517/1_1834445801\.jpg +# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina.txt: 4404) +.rshhy.com/templets/default/images/zhixiao01\.jpg +# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina.txt: 4403) +.rshhy.com/templets/default/images/paimai01\.jpg +# ||rsdown.cn/static/t/ (easylistchina.txt: 4402) +.rsdown.cn/static/t/ +# ||rsccs.com/code/ (easylistchina.txt: 4401) +.rsccs.com/code/ +# ||rosmm.com/ad_js/ (easylistchina.txt: 4400) +.rosmm.com/ad_js/ +# ||rkanr.com/data/cpcache/cp*.js (easylistchina.txt: 4398) +.rkanr.com/data/cpcache/cp.*\.js +# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina.txt: 4397) +.rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6\.jpg +# ||rizhao.net/html/js/main.js (easylistchina.txt: 4396) +.rizhao.net/html/js/main\.js +# ||rising.com.cn/weblog/ (easylistchina.txt: 4395) +.rising.com.cn/weblog/ +# ||rising.cn^*/pic-ad/ (easylistchina.txt: 4394) +.rising.cn/.*/pic-ad/ +# ||ringhk.com/adves/ (easylistchina.txt: 4393) +.ringhk.com/adves/ +# ||right.com.cn/logo/*.gif (easylistchina.txt: 4391) +.right.com.cn/logo/.*\.gif +# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina.txt: 4390) +.right.com.cn/forum/static/image/common/logo\.gif +# ||rh.qq.com^ (easylistchina.txt: 4389) +.rh.qq.com +# ||rfidworld.com.cn/js/c.html (easylistchina.txt: 4388) +.rfidworld.com.cn/js/c\.html +# ||rfidworld.com.cn/js/b.js (easylistchina.txt: 4387) +.rfidworld.com.cn/js/b\.js +# ||rfidworld.com.cn/js/a.js (easylistchina.txt: 4386) +.rfidworld.com.cn/js/a\.js +# ||res.ythouse.com/image/index/2012/ (easylistchina.txt: 4385) +.res.ythouse.com/image/index/2012/ +# ||res.hunantv.com^ (easylistchina.txt: 4384) +.res.hunantv.com +# ||res.cngoldres.com/web/js/*_advs.js (easylistchina.txt: 4383) +.res.cngoldres.com/web/js/.*_advs\.js +# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina.txt: 4382) +.res.cngoldres.com/web/index/img/.*_ad_ +# ||repian.com/a/ (easylistchina.txt: 4381) +.repian.com/a/ +# ||rentiyishu99.net/f.js (easylistchina.txt: 4380) +.rentiyishu99.net/f\.js +# ||rentiyishu99.net/e.js (easylistchina.txt: 4379) +.rentiyishu99.net/e\.js +# ||rentiyishu99.net/d.js (easylistchina.txt: 4378) +.rentiyishu99.net/d\.js +# ||rentiyishu99.net/b.js (easylistchina.txt: 4377) +.rentiyishu99.net/b\.js +# ||rentiyishu99.net/a.js (easylistchina.txt: 4376) +.rentiyishu99.net/a\.js +# ||rentiyishu.org/*.js (easylistchina.txt: 4375) +.rentiyishu.org/.*\.js +# ||renrencd.com/static/images/*_adv. (easylistchina.txt: 4374) +.renrencd.com/static/images/.*_adv\. +# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina.txt: 4373) +.renren.com/pages/seo/reg_seo_pop\.js +# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina.txt: 4372) +.ref.so/templates/ref/images/client/tg.*\.jpg +# ||readnovel.com/js/$subdocument (easylistchina.txt: 4371) +.readnovel.com/js/ +# ||read.2200book.com/images/bloading.gif (easylistchina.txt: 4370) +.read.2200book.com/images/bloading\.gif +# ||rar8.net/htmljs/ (easylistchina.txt: 4369) +.rar8.net/htmljs/ +# ||ranwen.org/ssi/ (easylistchina.txt: 4368) +.ranwen.org/ssi/ +# ||ranwen.net/ssi/ (easylistchina.txt: 4367) +.ranwen.net/ssi/ +# ||rainmall.com/tv/js/bofang (easylistchina.txt: 4365) +.rainmall.com/tv/js/bofang +# ||rainmall.com/tv/js/ad (easylistchina.txt: 4364) +.rainmall.com/tv/js/ad +# ||r3.ykimg.com/crossdomain.xml (easylistchina.txt: 4363) +.r3.ykimg.com/crossdomain\.xml +# ||qzzn.com/statics/ (easylistchina.txt: 4362) +.qzzn.com/statics/ +# ||qzwb.com^*.swf| (easylistchina.txt: 4361) +.qzwb.com/.*\.swf$ +# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina.txt: 4360) +.qzwb.com/gb/img/9465\.files/1G3G\.gif +# ||qzss.cn/ssad (easylistchina.txt: 4359) +.qzss.cn/ssad +# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina.txt: 4358) +.qzs.qq.com/qzone/biz/res/v\.swf\?loc= +# ||qzntv.com^*.swf| (easylistchina.txt: 4357) +.qzntv.com/.*\.swf$ +# ||qz828.com/css/2010/script/*ad (easylistchina.txt: 4356) +.qz828.com/css/2010/script/.*ad +# ||qutuku.com/qutu/good.js (easylistchina.txt: 4355) +.qutuku.com/qutu/good\.js +# ||qunaso.cn/Data/upload/ad/ (easylistchina.txt: 4354) +.qunaso.cn/Data/upload/ad/ +# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina.txt: 4353) +.qunar.com/vataplan\?framId=ifrNTOPAD& +# ||qunar.com/vataframe/b.html? (easylistchina.txt: 4352) +.qunar.com/vataframe/b\.html\? +# ||qunar.com/vata?chan= (easylistchina.txt: 4351) +.qunar.com/vata\?chan= +# ||qunar.com/render/*Advertisement.jsp? (easylistchina.txt: 4350) +.qunar.com/render/.*Advertisement\.jsp\? +# ||quledu.com/js/nrh.js (easylistchina.txt: 4349) +.quledu.com/js/nrh\.js +# ||qtfy30.cn/980-90.gif (easylistchina.txt: 4348) +.qtfy30.cn/980-90\.gif +# ||qtfy30.cn/680_*.gif (easylistchina.txt: 4347) +.qtfy30.cn/680_.*\.gif +# ||qstatic.com/baike/js/ad_ (easylistchina.txt: 4346) +.qstatic.com/baike/js/ad_ +# ||qscjw.com/uploads/590.gif (easylistchina.txt: 4345) +.qscjw.com/uploads/590\.gif +# ||qqzuqiu.com/?a=check& (easylistchina.txt: 4344) +.qqzuqiu.com/\?a=check& +# ||qqyy.com/js/public_end_add.js (easylistchina.txt: 4343) +.qqyy.com/js/public_end_add\.js +# ||qqyy.com/js/commAdv (easylistchina.txt: 4342) +.qqyy.com/js/commAdv +# ||qqtz.com/ad$subdocument (easylistchina.txt: 4341) +.qqtz.com/ad +# ||qqread.com/swf/ (easylistchina.txt: 4340) +.qqread.com/swf/ +# ||qqread.com/*js/$script (easylistchina.txt: 4339) +.qqread.com/.*js/ +# ||qqmcc.org/biz/home_top_960x90.html (easylistchina.txt: 4338) +.qqmcc.org/biz/home_top_960x90\.html +# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina.txt: 4337) +.qqkj.cn/js/qqkjnew/lanmuzhuantitongji\.js +# ||qqjia.com/images/ad (easylistchina.txt: 4336) +.qqjia.com/images/ad +# ||qqjia.com/dan.js (easylistchina.txt: 4335) +.qqjia.com/dan\.js +# ||qqhjy.com/soft/Upload*.gif (easylistchina.txt: 4334) +.qqhjy.com/soft/Upload.*\.gif +# ||qqcyl.net/js/*.html (easylistchina.txt: 4333) +.qqcyl.net/js/.*\.html +# ||qqcyl.com/js/*.html (easylistchina.txt: 4332) +.qqcyl.com/js/.*\.html +# ||qqcf.com/js/Content_Get.js (easylistchina.txt: 4331) +.qqcf.com/js/Content_Get\.js +# ||qq260.com/shout.js (easylistchina.txt: 4330) +.qq260.com/shout\.js +# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina.txt: 4329) +.qq.com/qzone/biz/gdt/display/positions/waicai/ +# ||qq.com/playgame/videoweb/ (easylistchina.txt: 4328) +.qq.com/playgame/videoweb/ +# ||qq.com/PL_adT.htm (easylistchina.txt: 4327) +.qq.com/PL_adT\.htm +# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina.txt: 4326) +.qq.com/minivideo_v1/vd/res/enttencentvideo\.xml +# ||qq.com/livemsg? (easylistchina.txt: 4325) +.qq.com/livemsg\? +# ||qq.com/Index/getAdsAndHotspot (easylistchina.txt: 4324) +.qq.com/Index/getAdsAndHotspot +# ||qq.com/game/footerbar$subdocument (easylistchina.txt: 4323) +.qq.com/game/footerbar +# ||qq.com/coral/ADS (easylistchina.txt: 4322) +.qq.com/coral/ADS +# ||qq.com/bbs/bbs_topgg.htm (easylistchina.txt: 4320) +.qq.com/bbs/bbs_topgg\.htm +# ||qq.com/article_qq/ad_article_qq/ (easylistchina.txt: 4319) +.qq.com/article_qq/ad_article_qq/ +# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina.txt: 4317) +.qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 +# ||qmi.cc/tester/tester.js (easylistchina.txt: 4316) +.qmi.cc/tester/tester\.js +# ||qk101.com/life/ (easylistchina.txt: 4315) +.qk101.com/life/ +# ||qjis.com/js/qjis_nr.js (easylistchina.txt: 4314) +.qjis.com/js/qjis_nr\.js +# ||qiyun.org/images/js/tpl/ (easylistchina.txt: 4313) +.qiyun.org/images/js/tpl/ +# ||qiyun.org/images/js/*.htm (easylistchina.txt: 4312) +.qiyun.org/images/js/.*\.htm +# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina.txt: 4311) +.qiyipic.com/zongyi/fix/runningman20141008_bg03\.jpg +# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina.txt: 4310) +.qiyipic.com/zongyi/fix/runningman20141008_bg02\.jpg +# ||qiyipic.com/zongyi/fix/mxdj (easylistchina.txt: 4309) +.qiyipic.com/zongyi/fix/mxdj +# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina.txt: 4308) +.qiyipic.com/zongyi/.*Banner01\.jpg +# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina.txt: 4307) +.qiyipic.com/common/fix/wh-leftbanner\.jpg +# ||qiyipic.com/common/fix/rebull_ (easylistchina.txt: 4306) +.qiyipic.com/common/fix/rebull_ +# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina.txt: 4305) +.qiyipic.com/common/fix/dasdasdasdk\.jpg +# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina.txt: 4304) +.qiyipic.com/common/20150528/diyizhuanqu\.jpg +# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina.txt: 4303) +.qiyipic.com/common/20141021/sanjiukehuzhuanqu\.jpg +# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina.txt: 4302) +.qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79\.png +# ||qiyipic.com/common/*tonglan (easylistchina.txt: 4301) +.qiyipic.com/common/.*tonglan +# ||qiyipic.com/common/*_aLink (easylistchina.txt: 4300) +.qiyipic.com/common/.*_aLink +# ||qiyipic.com/common/*980x (easylistchina.txt: 4299) +.qiyipic.com/common/.*980x +# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina.txt: 4298) +.qiyipic.com/common/.*/kehuzhuanqu +# ||qiyipic.com/common/*/banner.jpg (easylistchina.txt: 4297) +.qiyipic.com/common/.*/banner\.jpg +# ||qiyipic.com/common/*/baiyao. (easylistchina.txt: 4296) +.qiyipic.com/common/.*/baiyao\. +# ||qiyipic.com/common/*/980 (easylistchina.txt: 4295) +.qiyipic.com/common/.*/980 +# ||qiyipic.com/common/*/255x205 (easylistchina.txt: 4294) +.qiyipic.com/common/.*/255x205 +# ||qiyipic.com/common/*/250230. (easylistchina.txt: 4293) +.qiyipic.com/common/.*/250230\. +# ||qiyipic.com/common/*/250-230. (easylistchina.txt: 4292) +.qiyipic.com/common/.*/250-230\. +# ||qiyipic.com/common/*/225x230.jpg (easylistchina.txt: 4291) +.qiyipic.com/common/.*/225x230\.jpg +# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina.txt: 4290) +.qiyipic.com/common/.*%E9%80%9A%E6%A0%8F +# ||qiyipic.com/common/$object-subrequest (easylistchina.txt: 4289) +.qiyipic.com/common/ +# ||qiuziti.com/meitu/ddd.gif (easylistchina.txt: 4288) +.qiuziti.com/meitu/ddd\.gif +# ||qiuziti.com/img/rightp20.gif (easylistchina.txt: 4287) +.qiuziti.com/img/rightp20\.gif +# ||qiuyi.cn/qiuyi/cooper/ (easylistchina.txt: 4286) +.qiuyi.cn/qiuyi/cooper/ +# ||qitete.com/sp/ (easylistchina.txt: 4285) +.qitete.com/sp/ +# ||qiqibu.com/js/*.gif (easylistchina.txt: 4284) +.qiqibu.com/js/.*\.gif +# ||qingkong.net/a/980x90_1.jpg (easylistchina.txt: 4282) +.qingkong.net/a/980x90_1\.jpg +# ||qingkai.com/gg_img/ (easylistchina.txt: 4281) +.qingkai.com/gg_img/ +# ||qingkai.com/2009/html/top.htm (easylistchina.txt: 4280) +.qingkai.com/2009/html/top\.htm +# ||qimm.org/Uploads/ad/ (easylistchina.txt: 4279) +.qimm.org/Uploads/ad/ +# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina.txt: 4278) +.qilanxiaozhu.*./(.*/)?data/attachment/portal/ +# ||qikuyou.com/images/images/250.png (easylistchina.txt: 4277) +.qikuyou.com/images/images/250\.png +# ||qihoo.com/hot/text.html?site= (easylistchina.txt: 4276) +.qihoo.com/hot/text\.html\?site= +# ||qihaa.cn/js/ (easylistchina.txt: 4275) +.qihaa.cn/js/ +# ||qidian.com/ploy/cloudary08/ (easylistchina.txt: 4274) +.qidian.com/ploy/cloudary08/ +# ||qidian.com/ploy/*swf (easylistchina.txt: 4273) +.qidian.com/ploy/.*swf +# ||qidian.com/Javascript/usia (easylistchina.txt: 4272) +.qidian.com/Javascript/usia +# ||qidian.com/javascript/SNDAADAltern.js (easylistchina.txt: 4271) +.qidian.com/javascript/SNDAADAltern\.js +# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina.txt: 4270) +.qidian.com/Javascript/NewSNDAPop\.js +# ||qidian.com/Javascript/ksjlajUysi (easylistchina.txt: 4269) +.qidian.com/Javascript/ksjlajUysi +# ||qidian.com/Javascript/kiywyq_ (easylistchina.txt: 4268) +.qidian.com/Javascript/kiywyq_ +# ||qidian.com/Javascript/DoublePop.js (easylistchina.txt: 4267) +.qidian.com/Javascript/DoublePop\.js +# ||qidian.com/Images/book_*_other (easylistchina.txt: 4266) +.qidian.com/Images/book_.*_other +# ||qianzhan.com/html/*_txtlinks.html (easylistchina.txt: 4265) +.qianzhan.com/html/.*_txtlinks\.html +# ||qianmu.org/resource/js/jquery.ads.js (easylistchina.txt: 4264) +.qianmu.org/resource/js/jquery\.ads\.js +# ||qianlong.com/vda/$script (easylistchina.txt: 4263) +.qianlong.com/vda/ +# ||qiangdiao.com/pr.png (easylistchina.txt: 4262) +.qiangdiao.com/pr\.png +# ||qhnews.com/tupian/ (easylistchina.txt: 4261) +.qhnews.com/tupian/ +# ||qhimg.com/t01752fdc322b424d08.jpg (easylistchina.txt: 4260) +.qhimg.com/t01752fdc322b424d08\.jpg +# ||qhimg.com/t01119598c484b6ca8e.jpg (easylistchina.txt: 4259) +.qhimg.com/t01119598c484b6ca8e\.jpg +# ||qhimg.com/t0107605853c9b6d004.jpg (easylistchina.txt: 4258) +.qhimg.com/t0107605853c9b6d004\.jpg +# ||qfans.net/js/open (easylistchina.txt: 4257) +.qfans.net/js/open +# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina.txt: 4256) +.qdmm.com/javascript/SNDAADAltern\.js +# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina.txt: 4255) +.qdmm.com/javascript/NewSNDAPop\.js +# ||qdjimo.com/html/js/ (easylistchina.txt: 4254) +.qdjimo.com/html/js/ +# ||qbox.me/ftq_ (easylistchina.txt: 4253) +.qbox.me/ftq_ +# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina.txt: 4252) +.qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo\.jpg +# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina.txt: 4251) +.qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6\.gif +# ||q.cn/images/notepad.gif (easylistchina.txt: 4250) +.q.cn/images/notepad\.gif +# ||q.cn/images/floater_ (easylistchina.txt: 4249) +.q.cn/images/floater_ +# ||q-touch.com.tw^$subdocument (easylistchina.txt: 4248) +.q-touch.com.tw +# ||pzzc.net/data/attachment/ad2/ (easylistchina.txt: 4247) +.pzzc.net/data/attachment/ad2/ +# ||pzxw.cn/1212banner (easylistchina.txt: 4246) +.pzxw.cn/1212banner +# ||putonghua520.com/skins/10ym/tj (easylistchina.txt: 4245) +.putonghua520.com/skins/10ym/tj +# ||putonghua520.com/skins/10ym/123.jpg (easylistchina.txt: 4244) +.putonghua520.com/skins/10ym/123\.jpg +# ||publish.ad.youth.cn^ (easylistchina.txt: 4243) +.publish.ad.youth.cn +# ||publicize.liao1.com^ (easylistchina.txt: 4242) +.publicize.liao1.com +# ||pub.sxrtv.com/crossdomain.xml (easylistchina.txt: 4241) +.pub.sxrtv.com/crossdomain\.xml +# ||pub.stockstar.com/feedback/ (easylistchina.txt: 4240) +.pub.stockstar.com/feedback/ +# ||pub.mop.com^ (easylistchina.txt: 4239) +.pub.mop.com +# ||pub.funshion.com^ (easylistchina.txt: 4238) +.pub.funshion.com +# ||ptfish.com/08html/ (easylistchina.txt: 4237) +.ptfish.com/08html/ +# ||ptfish.com/*/ad$image,object (easylistchina.txt: 4236) +.ptfish.com/.*/ad +# ||ptbus.com/s.js (easylistchina.txt: 4235) +.ptbus.com/s\.js +# ||ptbs.sme.gov.cn/images/231.gif (easylistchina.txt: 4234) +.ptbs.sme.gov.cn/images/231\.gif +# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina.txt: 4233) +.pstatp.com/resource/toutiao_wap/static/js/lib/ads_ +# ||ps123.net/MyFile/ (easylistchina.txt: 4232) +.ps123.net/MyFile/ +# ||property.hk/ad_$script (easylistchina.txt: 4231) +.property.hk/ad_ +# ||pro.iweihai.cn^ (easylistchina.txt: 4230) +.pro.iweihai.cn +# ||price.com.hk/scripts/ysm.js (easylistchina.txt: 4229) +.price.com.hk/scripts/ysm\.js +# ||price.com.hk/dfp_price.php? (easylistchina.txt: 4228) +.price.com.hk/dfp_price\.php\? +# ||prettyvirgin.com/js/show.html (easylistchina.txt: 4227) +.prettyvirgin.com/js/show\.html +# ||prettyvirgin.com/images/banners/ (easylistchina.txt: 4226) +.prettyvirgin.com/images/banners/ +# ||pptiyu.com/index/js/float.js (easylistchina.txt: 4225) +.pptiyu.com/index/js/float\.js +# ||ppsj.com.cn/ppsj728.gif (easylistchina.txt: 4224) +.ppsj.com.cn/ppsj728\.gif +# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina.txt: 4223) +.ppsj.com.cn/images/usa_250_120\.gif +# ||ppsj.com.cn/images/ppsj300.gif (easylistchina.txt: 4222) +.ppsj.com.cn/images/ppsj300\.gif +# ||pp.7060.la^ (easylistchina.txt: 4221) +.pp.7060.la +# ||poxiao.com/template/default/images/12345.js (easylistchina.txt: 4220) +.poxiao.com/template/default/images/12345\.js +# ||poster.weather.com.cn^ (easylistchina.txt: 4219) +.poster.weather.com.cn +# ||poppur.com/banner/962x100.gif (easylistchina.txt: 4218) +.poppur.com/banner/962x100\.gif +# ||popme.163.com/js/vedioad_ (easylistchina.txt: 4217) +.popme.163.com/js/vedioad_ +# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina.txt: 4216) +.poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408\.jpg +# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina.txt: 4215) +.poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067\.gif +# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina.txt: 4214) +.poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072\.gif +# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina.txt: 4213) +.poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064\.jpg +# ||plurk.com/Ads/ (easylistchina.txt: 4212) +.plurk.com/Ads/ +# ||playgm.cn/data/attachment/portal/ (easylistchina.txt: 4211) +.playgm.cn/data/attachment/portal/ +# ||playad.xjmg.com^ (easylistchina.txt: 4210) +.playad.xjmg.com +# ||pjtime.com/js/show_ad (easylistchina.txt: 4209) +.pjtime.com/js/show_ad +# ||pixfs.net/js/mib_falcon. (easylistchina.txt: 4208) +.pixfs.net/js/mib_falcon\. +# ||pixfs.net/js/mib.min.js (easylistchina.txt: 4207) +.pixfs.net/js/mib\.min\.js +# ||pipi.cn/player/ (easylistchina.txt: 4206) +.pipi.cn/player/ +# ||pingpang.info/uploadfile/tsp.gif (easylistchina.txt: 4205) +.pingpang.info/uploadfile/tsp\.gif +# ||pingpang.info/uploadfile/butterfly.gif (easylistchina.txt: 4204) +.pingpang.info/uploadfile/butterfly\.gif +# ||pingpang.info/uploadfile/950X90B.gif (easylistchina.txt: 4203) +.pingpang.info/uploadfile/950X90B\.gif +# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina.txt: 4202) +.pingpang.info/themes/v1\.0/images/yasaka\. +# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina.txt: 4201) +.pingpang.info/bbs/UploadFile/2014-5/201455214543955851\.gif +# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina.txt: 4200) +.pingpang.info/bbs/UploadFile/2014-11/20141113852238131\.jpg +# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina.txt: 4199) +.pingpang.info/bbs/UploadFile/2013-11/xiom\.gif +# ||pingpang.info/banner/ (easylistchina.txt: 4198) +.pingpang.info/banner/ +# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina.txt: 4197) +.pimg.tw/ifans/1399368662-4247048381\.png +# ||pifa.fobshanghai.com/link/ (easylistchina.txt: 4196) +.pifa.fobshanghai.com/link/ +# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina.txt: 4194) +.pics.wanlibo.com/js/pagemodulestat\.js +# ||pic.zol-img.com.cn^*/box (easylistchina.txt: 4193) +.pic.zol-img.com.cn/.*/box +# ||pic.zol-img.com.cn^$object (easylistchina.txt: 4192) +.pic.zol-img.com.cn +# ||pic.zol-img.com.cn/20*backgrou (easylistchina.txt: 4191) +.pic.zol-img.com.cn/20.*backgrou +# ||pic.yupoo.com/showflash/ (easylistchina.txt: 4190) +.pic.yupoo.com/showflash/ +# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina.txt: 4189) +.pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3\.gif +# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina.txt: 4188) +.pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR\.png +# ||pic.xgo-img.com.cn^ (easylistchina.txt: 4187) +.pic.xgo-img.com.cn +# ||pic.wpdaxue.com^*.js (easylistchina.txt: 4186) +.pic.wpdaxue.com/.*\.js +# ||pic.taian.com^ (easylistchina.txt: 4185) +.pic.taian.com +# ||pic.jd-bbs.com^*.swf (easylistchina.txt: 4183) +.pic.jd-bbs.com/.*\.swf +# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina.txt: 4182) +.pic.gongkong.com/UploadPic/gongkong/ +# ||pic.fengniao.com^ (easylistchina.txt: 4181) +.pic.fengniao.com +# ||pic.ea3w.com^ (easylistchina.txt: 4180) +.pic.ea3w.com +# ||pic.959.cn/media/js/ (easylistchina.txt: 4179) +.pic.959.cn/media/js/ +# ||pic.2u.com.cn^ (easylistchina.txt: 4178) +.pic.2u.com.cn +# ||pic.111cn.net^ (easylistchina.txt: 4177) +.pic.111cn.net +# ||pic.0597kk.com^ (easylistchina.txt: 4176) +.pic.0597kk.com +# ||piaoliang.com/js/gg.js (easylistchina.txt: 4175) +.piaoliang.com/js/gg\.js +# ||piaohua.com/js/yzz/$script (easylistchina.txt: 4174) +.piaohua.com/js/yzz/ +# ||piaohua.com/js/wlfloat.js (easylistchina.txt: 4173) +.piaohua.com/js/wlfloat\.js +# ||piaodown.com/other/*.js (easylistchina.txt: 4172) +.piaodown.com/other/.*\.js +# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina.txt: 4171) +.piao.com.cn/Flash/Scripts/FloatLeftRight_ +# ||phpfans.net/image/sponsors/ (easylistchina.txt: 4170) +.phpfans.net/image/sponsors/ +# ||phpcms.cn/statics/images/video/ad (easylistchina.txt: 4169) +.phpcms.cn/statics/images/video/ad +# ||phpad.cqnews.net^ (easylistchina.txt: 4168) +.phpad.cqnews.net +# ||photofans.cn/cooperator/banner/ (easylistchina.txt: 4167) +.photofans.cn/cooperator/banner/ +# ||photo.erji.com^*.swf (easylistchina.txt: 4166) +.photo.erji.com/.*\.swf +# ||photo.erji.com^*.gif (easylistchina.txt: 4165) +.photo.erji.com/.*\.gif +# ||photo.erji.com/saha.jpg (easylistchina.txt: 4164) +.photo.erji.com/saha\.jpg +# ||pharmnet.com.cn/js/float_div.js (easylistchina.txt: 4163) +.pharmnet.com.cn/js/float_div\.js +# ||pharmnet.com.cn/cnbanner/ (easylistchina.txt: 4162) +.pharmnet.com.cn/cnbanner/ +# ||ph66.com/js/float.js (easylistchina.txt: 4161) +.ph66.com/js/float\.js +# ||ph66.com/bbsgg/ (easylistchina.txt: 4160) +.ph66.com/bbsgg/ +# ||ph66.com/attachment/*.swf (easylistchina.txt: 4159) +.ph66.com/attachment/.*\.swf +# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina.txt: 4158) +.pgzhibo.com/uploads/image/20150902/1441126837\.jpg +# ||pgzhibo.com/uploads/image/20*.gif (easylistchina.txt: 4157) +.pgzhibo.com/uploads/image/20.*\.gif +# ||pg.udn.com/BT/*.swf (easylistchina.txt: 4156) +.pg.udn.com/BT/.*\.swf +# ||pfp.sina.com.cn^$script,subdocument (easylistchina.txt: 4155) +.pfp.sina.com.cn +# ||pfizer.com.tw^$subdocument (easylistchina.txt: 4154) +.pfizer.com.tw +# ||people.com.cn/img/gjt/ (easylistchina.txt: 4153) +.people.com.cn/img/gjt/ +# ||people.com.cn/img/2013people/wza/domready (easylistchina.txt: 4152) +.people.com.cn/img/2013people/wza/domready +# ||people.com.cn/adv/ (easylistchina.txt: 4151) +.people.com.cn/adv/ +# ||people.cn^*/js/m.js (easylistchina.txt: 4150) +.people.cn/.*/js/m\.js +# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina.txt: 4149) +.penglai.com.cn/UploadFile/image/.*\.gif +# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina.txt: 4148) +.peasyun.com/Uploads/Thumbs/advs_ +# ||pd.xxhh.com/list.js (easylistchina.txt: 4147) +.pd.xxhh.com/list\.js +# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina.txt: 4146) +.pcworld.com.cn/Article/UploadFiles/201403/2014031016150885\.jpg +# ||pcstore.com.tw/css/myacc_init.js (easylistchina.txt: 4145) +.pcstore.com.tw/css/myacc_init\.js +# ||pcs1.app.joy.cn^ (easylistchina.txt: 4144) +.pcs1.app.joy.cn +# ||pcpp.com.cn/news/ad/ (easylistchina.txt: 4143) +.pcpp.com.cn/news/ad/ +# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina.txt: 4142) +.pcpp.com.cn/news/a/.*_article_right\.html +# ||pcpp.com.cn*/pcpp.jpg (easylistchina.txt: 4141) +.pcpp.com.cn*./(.*/)?pcpp\.jpg +# ||pconline.com.cn/test/*.html? (easylistchina.txt: 4140) +.pconline.com.cn/test/.*\.html\? +# ||pconline.com.cn/pconline/download/fz/ (easylistchina.txt: 4139) +.pconline.com.cn/pconline/download/fz/ +# ||pconline.com.cn/js/ivy.js (easylistchina.txt: 4138) +.pconline.com.cn/js/ivy\.js +# ||pconline.com.cn/js/ad_ (easylistchina.txt: 4137) +.pconline.com.cn/js/ad_ +# ||pconline.com.cn/intelcorefamily/ (easylistchina.txt: 4136) +.pconline.com.cn/intelcorefamily/ +# ||pconline.com.cn/download/*/intf*.js (easylistchina.txt: 4135) +.pconline.com.cn/download/.*/intf.*\.js +# ||pconline.com.cn/_hux_/ (easylistchina.txt: 4134) +.pconline.com.cn/_hux_/ +# ||pcjishu.com/other/yj300x3006.jpg (easylistchina.txt: 4133) +.pcjishu.com/other/yj300x3006\.jpg +# ||pchome.com.tw/js/idlead.js (easylistchina.txt: 4132) +.pchome.com.tw/js/idlead\.js +# ||pcgames.com.cn/jctj/ (easylistchina.txt: 4130) +.pcgames.com.cn/jctj/ +# ||pcgames.com.cn/g/ (easylistchina.txt: 4129) +.pcgames.com.cn/g/ +# ||pcgames.com.cn/download/newnq/ (easylistchina.txt: 4128) +.pcgames.com.cn/download/newnq/ +# ||pccoo.cn/js/dlv1.0.js (easylistchina.txt: 4127) +.pccoo.cn/js/dlv1\.0\.js +# ||pcbeta.com/static/image/microsoftstore/ (easylistchina.txt: 4126) +.pcbeta.com/static/image/microsoftstore/ +# ||pc3w.com/js/ (easylistchina.txt: 4125) +.pc3w.com/js/ +# ||pc141.com/statics/new_img/info_left.png (easylistchina.txt: 4124) +.pc141.com/statics/new_img/info_left\.png +# ||pc0359.cn/js/un.js (easylistchina.txt: 4123) +.pc0359.cn/js/un\.js +# ||pc0359.cn/data/xzb_haha.js (easylistchina.txt: 4122) +.pc0359.cn/data/xzb_haha\.js +# ||panzz.com/file/ads/ (easylistchina.txt: 4121) +.panzz.com/file/ads/ +# ||panpan.org/templets/ad/ (easylistchina.txt: 4120) +.panpan.org/templets/ad/ +# ||panpan.org/plus/img/ (easylistchina.txt: 4119) +.panpan.org/plus/img/ +# ||panpan.org/other/ (easylistchina.txt: 4118) +.panpan.org/other/ +# ||panpan.org/js/google (easylistchina.txt: 4117) +.panpan.org/js/google +# ||panda.kdnet.net^ (easylistchina.txt: 4116) +.panda.kdnet.net +# ||p8u.hinet.net^ (easylistchina.txt: 4115) +.p8u.hinet.net +# ||p4p.sina.com.cn^ (easylistchina.txt: 4114) +.p4p.sina.com.cn +# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina.txt: 4113) +.p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124\.jpg +# ||p.zol.com.cn/download/detail.js (easylistchina.txt: 4112) +.p.zol.com.cn/download/detail\.js +# ||p.zol-img.com.cn^ (easylistchina.txt: 4111) +.p.zol-img.com.cn +# ||p.szonline.net^ (easylistchina.txt: 4110) +.p.szonline.net +# ||p.kugou.com/?id= (easylistchina.txt: 4109) +.p.kugou.com/\?id= +# ||p.aty.sohu.com/p?cat= (easylistchina.txt: 4108) +.p.aty.sohu.com/p\?cat= +# ||p.37youyou.com/*.jpg (easylistchina.txt: 4107) +.p.37youyou.com/.*\.jpg +# ||oyksoft.com/show/s.php/ (easylistchina.txt: 4106) +.oyksoft.com/show/s\.php/ +# ||overseaschinesemedia.com/img/*.gif (easylistchina.txt: 4105) +.overseaschinesemedia.com/img/.*\.gif +# ||ouyaoxiazai.com^$script,subdocument (easylistchina.txt: 4104) +.ouyaoxiazai.com +# ||outofmemory.cn/static/tgs/ (easylistchina.txt: 4103) +.outofmemory.cn/static/tgs/ +# ||ousns.net/daohang/ (easylistchina.txt: 4102) +.ousns.net/daohang/ +# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina.txt: 4101) +.oschina.net/uploads/cooperation/.*_banner_ +# ||oschina.net/uploads/ad/ (easylistchina.txt: 4100) +.oschina.net/uploads/ad/ +# ||orzx.im/js/*pop (easylistchina.txt: 4099) +.orzx.im/js/.*pop +# ||orzx.im/Document/union/ (easylistchina.txt: 4098) +.orzx.im/Document/union/ +# ||orzx.im/Document/recommend/flashpoint.html (easylistchina.txt: 4097) +.orzx.im/Document/recommend/flashpoint\.html +# ||orsoon.com//images/ku86.jpg (easylistchina.txt: 4096) +# ||orsoon.com*/zhuanti/ (easylistchina.txt: 4095) +.orsoon.com*./(.*/)?zhuanti/ +# ||open-open.com^*_banner. (easylistchina.txt: 4094) +.open-open.com/.*_banner\. +# ||open-open.com/lag336x280.png (easylistchina.txt: 4093) +.open-open.com/lag336x280\.png +# ||open-open.com/jp72890.jpg (easylistchina.txt: 4092) +.open-open.com/jp72890\.jpg +# ||open-open.com/jp240200.jpg (easylistchina.txt: 4091) +.open-open.com/jp240200\.jpg +# ||open-open.com/j300250n.jpg (easylistchina.txt: 4090) +.open-open.com/j300250n\.jpg +# ||onlinedown.net/zhuangjiad/ (easylistchina.txt: 4089) +.onlinedown.net/zhuangjiad/ +# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina.txt: 4088) +.onlinedown.net/newhuagg/.*_pic_ +# ||online.cq.cn/huodong/css/ (easylistchina.txt: 4087) +.online.cq.cn/huodong/css/ +# ||online.cq.cn/commonweb/commonright/right_side (easylistchina.txt: 4086) +.online.cq.cn/commonweb/commonright/right_side +# ||onegreen.net/MyFile/ (easylistchina.txt: 4085) +.onegreen.net/MyFile/ +# ||onedala.tv/uploads/banner/ (easylistchina.txt: 4084) +.onedala.tv/uploads/banner/ +# ||on.cc/js/v2/iframe_ysm_ (easylistchina.txt: 4083) +.on.cc/js/v2/iframe_ysm_ +# ||okbmf.com^*950_120 (easylistchina.txt: 4082) +.okbmf.com/.*950_120 +# ||ok.432kkk.com^ (easylistchina.txt: 4081) +.ok.432kkk.com +# ||oiihk.com/anime/cm.js (easylistchina.txt: 4080) +.oiihk.com/anime/cm\.js +# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina.txt: 4079) +.ofweek.com/StaticPage/gongkong/ad_ +# ||ofweek.com/pop/ad/ (easylistchina.txt: 4078) +.ofweek.com/pop/ad/ +# ||oa.hinews.cn/work/img/ (easylistchina.txt: 4077) +.oa.hinews.cn/work/img/ +# ||nvsheng.com/js/gg.js (easylistchina.txt: 4076) +.nvsheng.com/js/gg\.js +# ||nutrimate.com.tw^$subdocument (easylistchina.txt: 4075) +.nutrimate.com.tw +# ||nttpcs.cn/ax/incoto.gif (easylistchina.txt: 4074) +.nttpcs.cn/ax/incoto\.gif +# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina.txt: 4073) +.ntpcb.com/html/channel/citypark/images/p83_temp_ +# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina.txt: 4072) +.ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168\.png +# ||nownews.com/include_house/product.html (easylistchina.txt: 4071) +.nownews.com/include_house/product\.html +# ||nownews.com/events/ (easylistchina.txt: 4070) +.nownews.com/events/ +# ||nokiacn.net/gg*.htm (easylistchina.txt: 4069) +.nokiacn.net/gg.*\.htm +# ||nokiacn.net/baidu.htm (easylistchina.txt: 4068) +.nokiacn.net/baidu\.htm +# ||no1.168abc.net/upload/ (easylistchina.txt: 4067) +.no1.168abc.net/upload/ +# ||nnnews.net/public/xqymgg/ (easylistchina.txt: 4066) +.nnnews.net/public/xqymgg/ +# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina.txt: 4064) +.njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds +# ||niwozhi.net/960x90.gif (easylistchina.txt: 4063) +.niwozhi.net/960x90\.gif +# ||niutuku.com/skin/style2013/ad/ (easylistchina.txt: 4062) +.niutuku.com/skin/style2013/ad/ +# ||niu20.com/g/ (easylistchina.txt: 4061) +.niu20.com/g/ +# ||ngacn.cc/common_res/js_adscommon.js (easylistchina.txt: 4060) +.ngacn.cc/common_res/js_adscommon\.js +# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina.txt: 4059) +.nextmedia.com/web_images/recruit_banner\.jpg +# ||nexoncn.com/img/pic/rili.gif (easylistchina.txt: 4058) +.nexoncn.com/img/pic/rili\.gif +# ||newssc.org/2014images/cd*yy (easylistchina.txt: 4057) +.newssc.org/2014images/cd.*yy +# ||newssc.org/2014images/1378110741538.jpg (easylistchina.txt: 4056) +.newssc.org/2014images/1378110741538\.jpg +# ||newsmth.net/nForum/files/adv/ (easylistchina.txt: 4055) +.newsmth.net/nForum/files/adv/ +# ||newsmth.net/nForum/baiduunion/ (easylistchina.txt: 4054) +.newsmth.net/nForum/baiduunion/ +# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina.txt: 4053) +.newsgroup.la/search/ysm/pam430x80\.swf +# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina.txt: 4052) +.newsgroup.la/ad/yahoo/fad\.gif +# ||news18a.com/image/ad_ina/ (easylistchina.txt: 4051) +.news18a.com/image/ad_ina/ +# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina.txt: 4050) +.news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c\.png +# ||news.tom.com/v2008.js (easylistchina.txt: 4049) +.news.tom.com/v2008\.js +# ||news.sina.com.tw/js/ti.js (easylistchina.txt: 4048) +.news.sina.com.tw/js/ti\.js +# ||news.sina.com.cn/js/792/*head*.js (easylistchina.txt: 4046) +.news.sina.com.cn/js/792/.*head.*\.js +# ||news.hz66.com/IAA/201111/ (easylistchina.txt: 4045) +.news.hz66.com/IAA/201111/ +# ||news.cn/news/ad/ (easylistchina.txt: 4044) +.news.cn/news/ad/ +# ||news.cn/forum/script/float2.js (easylistchina.txt: 4043) +.news.cn/forum/script/float2\.js +# ||news.0898.net/NMediaFile/*.swf (easylistchina.txt: 4042) +.news.0898.net/NMediaFile/.*\.swf +# ||news.0898.net/NMediaFile/*.gif (easylistchina.txt: 4041) +.news.0898.net/NMediaFile/.*\.gif +# ||newhua.com/newhuagg/gg_search_ (easylistchina.txt: 4040) +.newhua.com/newhuagg/gg_search_ +# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina.txt: 4039) +.new-icon.ol-img.com/jslib/ad_new\.js +# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina.txt: 4038) +.new-icon.ol-img.com/jslib/ad\.down\.js +# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina.txt: 4037) +.new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao\.jpg +# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina.txt: 4036) +.netdna-cdn.com/wp-content/plugins/popover/ +# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina.txt: 4035) +.neotv.com.cn/images/avs/tc/tc\.js +# ||nen.com.cn/service/js/beitou (easylistchina.txt: 4034) +.nen.com.cn/service/js/beitou +# ||nen.com.cn/eap/ (easylistchina.txt: 4033) +.nen.com.cn/eap/ +# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina.txt: 4032) +.neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b\.jpg +# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina.txt: 4031) +.ncnews.com.cn/statics/js/ban/ix/ban +# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina.txt: 4030) +.ncnews.com.cn/statics/images/2015/ban/dh\.swf +# ||ncdiy.com/webindex/300-250AD.swf (easylistchina.txt: 4029) +.ncdiy.com/webindex/300-250AD\.swf +# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina.txt: 4028) +.nba.weibo.com/images/bg/bg_heat\.jpg +# ||nb155.com/images/mysshok.png (easylistchina.txt: 4027) +.nb155.com/images/mysshok\.png +# ||narutom.com/v2/v/$subdocument (easylistchina.txt: 4026) +.narutom.com/v2/v/ +# ||narutom.com/v2/js/ca.js (easylistchina.txt: 4025) +.narutom.com/v2/js/ca\.js +# ||narutom.com/js/jsg2.js (easylistchina.txt: 4024) +.narutom.com/js/jsg2\.js +# ||nanrenwo.net/theme/2013/js/top.js (easylistchina.txt: 4023) +.nanrenwo.net/theme/2013/js/top\.js +# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina.txt: 4022) +.nanrenwo.net/theme/2013/js/popup.*\.js +# ||nanrenshu.com/rmb/st_dh.js (easylistchina.txt: 4021) +.nanrenshu.com/rmb/st_dh\.js +# ||nanren400.com/goto/ (easylistchina.txt: 4020) +.nanren400.com/goto/ +# ||nanhai.hinews.cn/zt/img/ (easylistchina.txt: 4019) +.nanhai.hinews.cn/zt/img/ +# ||namipan.cc/includes/js/digg.js (easylistchina.txt: 4018) +.namipan.cc/includes/js/digg\.js +# ||namipan.cc/baidu/ (easylistchina.txt: 4017) +.namipan.cc/baidu/ +# ||najiadian.cn/shuang11.js (easylistchina.txt: 4016) +.najiadian.cn/shuang11\.js +# ||n2.hk/promo/ (easylistchina.txt: 4015) +.n2.hk/promo/ +# ||mzyz.com/image*/tj/ (easylistchina.txt: 4014) +.mzyz.com/image.*/tj/ +# ||mzyfz.*/modules/46/ (easylistchina.txt: 4013) +.mzyfz.*./(.*/)?modules/46/ +# ||mywpku.com/adminvm.jpg (easylistchina.txt: 4012) +.mywpku.com/adminvm\.jpg +# ||mywpku.com/*-banner. (easylistchina.txt: 4011) +.mywpku.com/.*-banner\. +# ||myt520.com/images/jiaoyou (easylistchina.txt: 4010) +.myt520.com/images/jiaoyou +# ||myt520.com/images/4493.jpg (easylistchina.txt: 4009) +.myt520.com/images/4493\.jpg +# ||myqcloud.com/js/easou.js (easylistchina.txt: 4008) +.myqcloud.com/js/easou\.js +# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina.txt: 4007) +.mymusic.net.tw/upload/mobile_web_tmp/indexad01\. +# ||myhard.com/s?z= (easylistchina.txt: 4006) +.myhard.com/s\?z= +# ||myhack58.com/js/top (easylistchina.txt: 4005) +.myhack58.com/js/top +# ||myhack58.com/js/banner.js (easylistchina.txt: 4004) +.myhack58.com/js/banner\.js +# ||myhack58.com/acdb02/ (easylistchina.txt: 4003) +.myhack58.com/acdb02/ +# ||myhack58.com/abcd01/ (easylistchina.txt: 4002) +.myhack58.com/abcd01/ +# ||mydrivers.com/www/2015/s1120151105.png (easylistchina.txt: 4000) +.mydrivers.com/www/2015/s1120151105\.png +# ||mydrivers.com/www/*-1000x90. (easylistchina.txt: 3999) +.mydrivers.com/www/.*-1000x90\. +# ||mycodes.net/js/hf_txt.js (easylistchina.txt: 3998) +.mycodes.net/js/hf_txt\.js +# ||mycodes.net/js/down_txt.js (easylistchina.txt: 3997) +.mycodes.net/js/down_txt\.js +# ||mycodes.net/js/$image (easylistchina.txt: 3996) +.mycodes.net/js/ +# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina.txt: 3995) +.mybjx.net/theme/default/js/common/mtibjx\.js +# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina.txt: 3994) +.mybjx.net/theme/default/js/common/duilianchn\.js +# ||myad.toocle.com^ (easylistchina.txt: 3993) +.myad.toocle.com +# ||my0832.com/xyz/upload/ (easylistchina.txt: 3992) +.my0832.com/xyz/upload/ +# ||my0511.com/aadd/ (easylistchina.txt: 3991) +.my0511.com/aadd/ +# ||my0511.com/*/ad_ (easylistchina.txt: 3990) +.my0511.com/.*/ad_ +# ||mxwz.com/swf/yidong2015.swf (easylistchina.txt: 3989) +.mxwz.com/swf/yidong2015\.swf +# ||mwsl.qiniudn.com/250x250- (easylistchina.txt: 3988) +.mwsl.qiniudn.com/250x250- +# ||mw6.me/images/*.gif (easylistchina.txt: 3987) +.mw6.me/images/.*\.gif +# ||muyuge.net/js/bb/ (easylistchina.txt: 3986) +.muyuge.net/js/bb/ +# ||muyuge.com/js/KillABP.js (easylistchina.txt: 3985) +.muyuge.com/js/KillABP\.js +# ||muyuge.com/js/bb/ (easylistchina.txt: 3984) +.muyuge.com/js/bb/ +# ||mtrend.cn/images/prome/ (easylistchina.txt: 3983) +.mtrend.cn/images/prome/ +# ||mtksj.com/images/ad1225.jpg (easylistchina.txt: 3982) +.mtksj.com/images/ad1225\.jpg +# ||mtime.cn/tg/ (easylistchina.txt: 3981) +.mtime.cn/tg/ +# ||mt30.com/ok/ (easylistchina.txt: 3980) +.mt30.com/ok/ +# ||msn.ynet.com/vtui_js01.js (easylistchina.txt: 3979) +.msn.ynet.com/vtui_js01\.js +# ||msn.people.com.cn/css/2010tianrun/ (easylistchina.txt: 3978) +.msn.people.com.cn/css/2010tianrun/ +# ||msn.com/homep_ad (easylistchina.txt: 3977) +.msn.com/homep_ad +# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina.txt: 3976) +.mscbsc.com/gbook/telecomhr292x90\.gif +# ||ms211.com/js/tf.js (easylistchina.txt: 3975) +.ms211.com/js/tf\.js +# ||ms211.com/about/$subdocument (easylistchina.txt: 3974) +.ms211.com/about/ +# ||ms211.com/211tf/ (easylistchina.txt: 3973) +.ms211.com/211tf/ +# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina.txt: 3972) +.mracg.com/data/attachment/portal/201412/17/ +# ||mql5.com/10/0/*.gif (easylistchina.txt: 3971) +.mql5.com/10/0/.*\.gif +# ||mp3.haogeba.com^$image,object (easylistchina.txt: 3970) +.mp3.haogeba.com +# ||motorfans.com.cn/iggs_system/ (easylistchina.txt: 3969) +.motorfans.com.cn/iggs_system/ +# ||motorfans.com.cn/igg/ (easylistchina.txt: 3968) +.motorfans.com.cn/igg/ +# ||moratame.tw/img/contents/banner (easylistchina.txt: 3967) +.moratame.tw/img/contents/banner +# ||mopxing.com/skin/sex/js/*content (easylistchina.txt: 3966) +.mopxing.com/skin/sex/js/.*content +# ||mopxing.com/skin/sex/js/*banner (easylistchina.txt: 3965) +.mopxing.com/skin/sex/js/.*banner +# ||mopxing.com/skin/sex/js/*ad (easylistchina.txt: 3964) +.mopxing.com/skin/sex/js/.*ad +# ||mopimg.cn/dc/ (easylistchina.txt: 3963) +.mopimg.cn/dc/ +# ||moonbt.com/template/skin1/images/g_js/ (easylistchina.txt: 3962) +.moonbt.com/template/skin1/images/g_js/ +# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina.txt: 3961) +.moonbbs.com/static/image/banner/fashionmoon\.png +# ||moonbbs.com/data/attachment/portal/ (easylistchina.txt: 3960) +.moonbbs.com/data/attachment/portal/ +# ||monnsutogatya.com/himg/monst/ (easylistchina.txt: 3959) +.monnsutogatya.com/himg/monst/ +# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina.txt: 3958) +.moneyweekly.com.tw/Uploads/AD/.*970x +# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina.txt: 3957) +.moneyweekly.com.tw/UC/JQueryJson\.aspx/MwAD +# ||money.qz828.com^ (easylistchina.txt: 3956) +.money.qz828.com +# ||money.bumimi.com^ (easylistchina.txt: 3955) +.money.bumimi.com +# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina.txt: 3953) +.momoshop.com.tw/goods/GoodsDetail\.jsp\? +# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina.txt: 3952) +.moe123.com/static/img/2014_fattycat\.jpg +# ||moe.la/images/banner/ (easylistchina.txt: 3951) +.moe.la/images/banner/ +# ||moe.fm/public/images/fm/promotion_ (easylistchina.txt: 3950) +.moe.fm/public/images/fm/promotion_ +# ||mobile01.com/300x100.swf (easylistchina.txt: 3949) +.mobile01.com/300x100\.swf +# ||mnw.cn/script/info/baiduadm.html? (easylistchina.txt: 3948) +.mnw.cn/script/info/baiduadm\.html\? +# ||mmtalk.net/images/banner (easylistchina.txt: 3947) +.mmtalk.net/images/banner +# ||mm387.com/images/*.gif (easylistchina.txt: 3946) +.mm387.com/images/.*\.gif +# ||mlbuy.com/gg.js (easylistchina.txt: 3945) +.mlbuy.com/gg\.js +# ||miyun360.com/data/attachment/portal/ (easylistchina.txt: 3944) +.miyun360.com/data/attachment/portal/ +# ||mitbbs.com/ad_ (easylistchina.txt: 3943) +.mitbbs.com/ad_ +# ||mitbbs.ca/ad_ (easylistchina.txt: 3942) +.mitbbs.ca/ad_ +# ||mitbbs.*/servicedata/static_ad.php (easylistchina.txt: 3941) +.mitbbs.*./(.*/)?servicedata/static_ad\.php +# ||missyuan.com/sy/ (easylistchina.txt: 3940) +.missyuan.com/sy/ +# ||misaka.cn^*/600px- (easylistchina.txt: 3939) +.misaka.cn/.*/600px- +# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina.txt: 3938) +.mimg.127.net/ggimg/all/img18/140218_yixin_780x96\.jpg +# ||miljinhua.com/GD/ (easylistchina.txt: 3937) +.miljinhua.com/GD/ +# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina.txt: 3936) +.mil.news.sina.com.cn/iframe/109/2013/1015/hotpic\.html +# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina.txt: 3935) +.mil.news.sina.com.cn/iframe/109/2012/1024/photo\.html +# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina.txt: 3934) +.mil.news.sina.com.cn/iframe/.*/slideiframe\.html +# ||mifengtd.cn/ad- (easylistchina.txt: 3933) +.mifengtd.cn/ad- +# ||midifan.com/aaa/ (easylistchina.txt: 3932) +.midifan.com/aaa/ +# ||microcontrol.cn/HomeImages/AD/ (easylistchina.txt: 3931) +.microcontrol.cn/HomeImages/AD/ +# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina.txt: 3930) +.microcontrol.cn/bbs/images/AD755_150\.swf +# ||mianbao99.com/bd/ (easylistchina.txt: 3929) +.mianbao99.com/bd/ +# ||mianbao99.com/a/mianbao/indextan.js (easylistchina.txt: 3928) +.mianbao99.com/a/mianbao/indextan\.js +# ||mhhf.net/fserFiles/711x90.jpg (easylistchina.txt: 3927) +.mhhf.net/fserFiles/711x90\.jpg +# ||mgbbs.cn/js/float.js (easylistchina.txt: 3926) +.mgbbs.cn/js/float\.js +# ||mfxp.com/images/ (easylistchina.txt: 3925) +.mfxp.com/images/ +# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina.txt: 3924) +.mfacelive.com/Scripts/social/openchannel_min\.js +# ||meizhou.com/images/topbanner (easylistchina.txt: 3923) +.meizhou.com/images/topbanner +# ||meitu.com/js/floatxiuxiu.js (easylistchina.txt: 3922) +.meitu.com/js/floatxiuxiu\.js +# ||meishichina.com/v3/ (easylistchina.txt: 3921) +.meishichina.com/v3/ +# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina.txt: 3920) +.meinv.com/templates/meinv/js/.*_banner\.js +# ||meiliren.net/tuijs/ (easylistchina.txt: 3918) +.meiliren.net/tuijs/ +# ||meilele.com/js/recad. (easylistchina.txt: 3917) +.meilele.com/js/recad\. +# ||medsci.cn/aimgs/$script (easylistchina.txt: 3915) +.medsci.cn/aimgs/ +# ||media.cheshi-img.com^ (easylistchina.txt: 3914) +.media.cheshi-img.com +# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina.txt: 3912) +.mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ +# ||mcncc.com/yeyou/gg.js (easylistchina.txt: 3911) +.mcncc.com/yeyou/gg\.js +# ||mcncc.com/yeyou/*.htm (easylistchina.txt: 3910) +.mcncc.com/yeyou/.*\.htm +# ||mbalib.com/wiki/common/wikibits.js (easylistchina.txt: 3909) +.mbalib.com/wiki/common/wikibits\.js +# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina.txt: 3908) +.maxthonimg.com/cp/ad/1420792739\.jpg +# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina.txt: 3907) +.maxthonimg.com/cp/ad/1420765807\.jpg +# ||mat1.gtimg.com/ent/flash/*300 (easylistchina.txt: 3906) +.mat1.gtimg.com/ent/flash/.*300 +# ||mat1.gtimg.com/cq/flash/ (easylistchina.txt: 3905) +.mat1.gtimg.com/cq/flash/ +# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina.txt: 3904) +.mat1.gtimg.com/2014/webtips/ola2014tips +# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina.txt: 3903) +.mat1.gtimg.com/2014/vikkydu/GA/haier +# ||masok.cn/red/ (easylistchina.txt: 3902) +.masok.cn/red/ +# ||masadora.net/kakusan- (easylistchina.txt: 3901) +.masadora.net/kakusan- +# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina.txt: 3900) +.marstv.com/uploadfile/game/20150728/1438055654\.png +# ||market.duowan.com^ (easylistchina.txt: 3899) +.market.duowan.com +# ||market.21cn.com^ (easylistchina.txt: 3898) +.market.21cn.com +# ||market.178.com^ (easylistchina.txt: 3897) +.market.178.com +# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina.txt: 3896) +.maolihui.com/wp-content/themes/miaonew/images/adb +# ||manage.wdfans.cn^ (easylistchina.txt: 3895) +.manage.wdfans.cn +# ||manads.static.olcdn.com^ (easylistchina.txt: 3894) +.manads.static.olcdn.com +# ||mall.xinkuaituan.com/zhuanti/ (easylistchina.txt: 3893) +.mall.xinkuaituan.com/zhuanti/ +# ||maituan.com/admin/indexflash/pic/gg (easylistchina.txt: 3892) +.maituan.com/admin/indexflash/pic/gg +# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina.txt: 3891) +.maipiao.96900.com.cn/jtjt/js/jtjtgg\.js +# ||maipiao.96900.com.cn/js/indexgg (easylistchina.txt: 3890) +.maipiao.96900.com.cn/js/indexgg +# ||mail.qq.com/lview? (easylistchina.txt: 3889) +.mail.qq.com/lview\? +# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina.txt: 3888) +.mail.pchome.com.tw/img/classifieds/300120\.gif +# ||mahua.com/www/default/js/replace_ab.js (easylistchina.txt: 3887) +.mahua.com/www/default/js/replace_ab\.js +# ||mahua.com/www/default/js/mahua_show.js (easylistchina.txt: 3886) +.mahua.com/www/default/js/mahua_show\.js +# ||mahua.com/api/$subdocument (easylistchina.txt: 3885) +.mahua.com/api/ +# ||macx.cn/js/f.txt.js (easylistchina.txt: 3884) +.macx.cn/js/f\.txt\.js +# ||macd.cn/macd-topads.html (easylistchina.txt: 3883) +.macd.cn/macd-topads\.html +# ||macappbox.com/d/file/p/*.gif (easylistchina.txt: 3882) +.macappbox.com/d/file/p/.*\.gif +# ||ma.baiducdn2.com^*/main.js?t= (easylistchina.txt: 3881) +.ma.baiducdn2.com/.*/main\.js\?t= +# ||m1905.com/asp_js/k.js (easylistchina.txt: 3880) +.m1905.com/asp_js/k\.js +# ||m1905.cn/images/video/BannerImg (easylistchina.txt: 3879) +.m1905.cn/images/video/BannerImg +# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina.txt: 3878) +.m1905.cn/images/bg_index_hgn\.jpg +# ||m1905.cn/afp/mdsfw.js (easylistchina.txt: 3877) +.m1905.cn/afp/mdsfw\.js +# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina.txt: 3876) +.m.tiebaimg.com/timg\?wapp[^\w%.-].*imgtype=0 +# ||m.aty.sohu.com^ (easylistchina.txt: 3875) +.m.aty.sohu.com +# ||lzqss.net/data/attachment/portal/ (easylistchina.txt: 3874) +.lzqss.net/data/attachment/portal/ +# ||lzep.cn^*/2014ad/ (easylistchina.txt: 3873) +.lzep.cn/.*/2014ad/ +# ||lzep.cn^*/2013ad/ (easylistchina.txt: 3872) +.lzep.cn/.*/2013ad/ +# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina.txt: 3871) +.lzep.cn/uploadfile/hftv/2014/0901/20140901044836216\.jpg +# ||lzep.cn/images/*/ad (easylistchina.txt: 3870) +.lzep.cn/images/.*/ad +# ||lzep.cn/ep/sda/*_300X (easylistchina.txt: 3869) +.lzep.cn/ep/sda/.*_300X +# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina.txt: 3868) +.lzep.cn/ep/sda/.*_1000x60_ +# ||lzep.cn/ep/old/finance/ad (easylistchina.txt: 3867) +.lzep.cn/ep/old/finance/ad +# ||lzep.cn/ep/js/index_window.js (easylistchina.txt: 3866) +.lzep.cn/ep/js/index_window\.js +# ||lzep.cn/ep/ads/ (easylistchina.txt: 3865) +.lzep.cn/ep/ads/ +# ||lzep.cn/data/js/1*.js (easylistchina.txt: 3864) +.lzep.cn/data/js/1.*\.js +# ||lz.chinanews.com/images/flash/00.swf (easylistchina.txt: 3863) +.lz.chinanews.com/images/flash/00\.swf +# ||lywww.com/index_topa.php (easylistchina.txt: 3862) +.lywww.com/index_topa\.php +# ||lywww.com/header_pic.php (easylistchina.txt: 3861) +.lywww.com/header_pic\.php +# ||lywww.com/data/js/3 (easylistchina.txt: 3860) +.lywww.com/data/js/3 +# ||lywww.com/data/js/2 (easylistchina.txt: 3859) +.lywww.com/data/js/2 +# ||lywww.com/data/js/1 (easylistchina.txt: 3858) +.lywww.com/data/js/1 +# ||lywww.com/data/js.php?id= (easylistchina.txt: 3857) +.lywww.com/data/js\.php\?id= +# ||lyd.com.cn^*950-90. (easylistchina.txt: 3856) +.lyd.com.cn/.*950-90\. +# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina.txt: 3855) +.ly.shangdu.com/lyinfo/zlwz/flash/ +# ||ly.js.cn/adv/ (easylistchina.txt: 3854) +.ly.js.cn/adv/ +# ||lxty66.com/js/float.js (easylistchina.txt: 3853) +.lxty66.com/js/float\.js +# ||lxting.com^ (easylistchina.txt: 3852) +.lxting.com +# ||luuu1.com/g/ (easylistchina.txt: 3851) +.luuu1.com/g/ +# ||luckstatic.v1.cn/st/10000/ (easylistchina.txt: 3850) +.luckstatic.v1.cn/st/10000/ +# ||ltxszw.com/js/350.png (easylistchina.txt: 3849) +.ltxszw.com/js/350\.png +# ||ltwbook.com/js/l_ (easylistchina.txt: 3848) +.ltwbook.com/js/l_ +# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina.txt: 3847) +.lrjz100.u.qiniudn.com/rmb/bxd\.jpg +# ||loveshang.com/pic/*.swf (easylistchina.txt: 3846) +.loveshang.com/pic/.*\.swf +# ||lotour.com/Honda/ad/ (easylistchina.txt: 3845) +.lotour.com/Honda/ad/ +# ||look4lib.com/js/bnr_ (easylistchina.txt: 3844) +.look4lib.com/js/bnr_ +# ||longyu.cc/bucket/flash/ (easylistchina.txt: 3843) +.longyu.cc/bucket/flash/ +# ||longyu.cc/adg/ (easylistchina.txt: 3842) +.longyu.cc/adg/ +# ||longbahao.com/js/ad- (easylistchina.txt: 3841) +.longbahao.com/js/ad- +# ||longbahao.com/asd.js (easylistchina.txt: 3840) +.longbahao.com/asd\.js +# ||loldk.com/res/media/fanxing_ (easylistchina.txt: 3839) +.loldk.com/res/media/fanxing_ +# ||lofter.com/mailEntryMobile.do (easylistchina.txt: 3838) +.lofter.com/mailEntryMobile\.do +# ||lofter.com/mailEntry.do?*ad= (easylistchina.txt: 3837) +.lofter.com/mailEntry\.do\?.*ad= +# ||lnzq5.com/js/shuanglian.js (easylistchina.txt: 3836) +.lnzq5.com/js/shuanglian\.js +# ||lnd.com.cn/site1/*.swf (easylistchina.txt: 3835) +.lnd.com.cn/site1/.*\.swf +# ||ln.xinhuanet.com/inc/ (easylistchina.txt: 3834) +.ln.xinhuanet.com/inc/ +# ||ljia.net/vipflash/pop_footer.js (easylistchina.txt: 3833) +.ljia.net/vipflash/pop_footer\.js +# ||liyuanwang.com/nongli.gif (easylistchina.txt: 3832) +.liyuanwang.com/nongli\.gif +# ||livefilestore.com^*/imj160x200.gif (easylistchina.txt: 3831) +.livefilestore.com/.*/imj160x200\.gif +# ||liveany.com/images/8d8d.gif (easylistchina.txt: 3830) +.liveany.com/images/8d8d\.gif +# ||linuxidc.com/linuxfile/y9.js (easylistchina.txt: 3829) +.linuxidc.com/linuxfile/y9\.js +# ||linuxidc.com/linuxfile/list (easylistchina.txt: 3828) +.linuxidc.com/linuxfile/list +# ||linuxidc.com/linuxfile/linux$script (easylistchina.txt: 3827) +.linuxidc.com/linuxfile/linux +# ||linuxeden.com/plus/web_js.php (easylistchina.txt: 3826) +.linuxeden.com/plus/web_js\.php +# ||linkwan.com/gb/javascript/c5- (easylistchina.txt: 3825) +.linkwan.com/gb/javascript/c5- +# ||linkwan.com/gb/javascript/b4.js (easylistchina.txt: 3824) +.linkwan.com/gb/javascript/b4\.js +# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina.txt: 3823) +.linkwan.com/gb/broadmeter/speed/cp\.js +# ||links.cn/mmshow (easylistchina.txt: 3822) +.links.cn/mmshow +# ||linkhelper.cn/mmshow (easylistchina.txt: 3821) +.linkhelper.cn/mmshow +# ||link.fobshanghai.com^ (easylistchina.txt: 3820) +.link.fobshanghai.com +# ||lingdian98.com^ (easylistchina.txt: 3819) +.lingdian98.com +# ||life.e0575.com^ (easylistchina.txt: 3818) +.life.e0575.com +# ||liepin.com/event/jobadver/ (easylistchina.txt: 3817) +.liepin.com/event/jobadver/ +# ||licai18.com/pic/*.swf (easylistchina.txt: 3816) +.licai18.com/pic/.*\.swf +# ||licai18.com/bk/$object (easylistchina.txt: 3815) +.licai18.com/bk/ +# ||liba.com/ads/ (easylistchina.txt: 3814) +.liba.com/ads/ +# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina.txt: 3813) +.liaoxuefeng.com/files/attachments/00144.*/0 +# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina.txt: 3812) +.liaoing.com/image/picture_g/zhengzhou/index/.*\.swf +# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina.txt: 3811) +.liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng\.swf +# ||liaoing.com/egou/ (easylistchina.txt: 3810) +.liaoing.com/egou/ +# ||liao1.com/publicize/file/news_detail_ (easylistchina.txt: 3809) +.liao1.com/publicize/file/news_detail_ +# ||liao1.com/js/floatVideoAd.js (easylistchina.txt: 3808) +.liao1.com/js/floatVideoAd\.js +# ||liangzijie.com/Runtime/ (easylistchina.txt: 3807) +.liangzijie.com/Runtime/ +# ||liangjan.com/style/img/banner (easylistchina.txt: 3806) +.liangjan.com/style/img/banner +# ||liangjan.com/js/show_ (easylistchina.txt: 3805) +.liangjan.com/js/show_ +# ||liangchan.net/adf/ (easylistchina.txt: 3804) +.liangchan.net/adf/ +# ||liangchan.net/aaddaadd/ (easylistchina.txt: 3803) +.liangchan.net/aaddaadd/ +# ||lh168.net^*/attachment/portal/ (easylistchina.txt: 3802) +.lh168.net/.*/attachment/portal/ +# ||lh168.net/extra/ads/ (easylistchina.txt: 3801) +.lh168.net/extra/ads/ +# ||lezhuan.com/js/spread.js (easylistchina.txt: 3800) +.lezhuan.com/js/spread\.js +# ||letvimg.com^*_phone/ (easylistchina.txt: 3799) +.letvimg.com/.*_phone/ +# ||letvimg.com^*/108x70$object (easylistchina.txt: 3798) +.letvimg.com/.*/108x70 +# ||letvimg.com/img/201503/19/uc1/ (easylistchina.txt: 3797) +.letvimg.com/img/201503/19/uc1/ +# ||letvimg.com/gugwl/*.swf (easylistchina.txt: 3796) +.letvimg.com/gugwl/.*\.swf +# ||letvimg.com*gugwl/$object-subrequest (easylistchina.txt: 3795) +.letvimg.com*./.*gugwl/ +.letvimg.com*gugwl +# ||letvcdn.com/js/*_focus_flash.js (easylistchina.txt: 3794) +.letvcdn.com/js/.*_focus_flash\.js +# ||letv.com/s?ark=*&cis= (easylistchina.txt: 3793) +.letv.com/s\?ark=.*&cis= +# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina.txt: 3792) +.letv.com/pzt/hyhmzq/index\.shtml +# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina.txt: 3791) +.letsebuy.com/static/image/common/dm_cn_130\.jpg +# ||leshen.com/skin/m/action/ad. (easylistchina.txt: 3790) +.leshen.com/skin/m/action/ad\. +# ||lepan.cc/images/yd/ (easylistchina.txt: 3789) +.lepan.cc/images/yd/ +# ||lelevod.com/js/abc/t (easylistchina.txt: 3788) +.lelevod.com/js/abc/t +# ||lelevod.com/js/abc/p (easylistchina.txt: 3787) +.lelevod.com/js/abc/p +# ||lekan.com^*&stopTime= (easylistchina.txt: 3786) +.lekan.com/.*&stopTime= +# ||leiting001.com/bg/ltgg/ (easylistchina.txt: 3785) +.leiting001.com/bg/ltgg/ +# ||leiqun.snxyf.com^ (easylistchina.txt: 3784) +.leiqun.snxyf.com +# ||lecai.com/page/zhuanti/baidu/ (easylistchina.txt: 3783) +.lecai.com/page/zhuanti/baidu/ +# ||ld0766.com/*20*a/ (easylistchina.txt: 3782) +.ld0766.com/.*20.*a/ +# ||lbx777.com/z_gegz/pic/ (easylistchina.txt: 3781) +.lbx777.com/z_gegz/pic/ +# ||lbx777.*/css/lbxgg02 (easylistchina.txt: 3780) +.lbx777.*./(.*/)?css/lbxgg02 +# ||lbx777.*/css/300.js (easylistchina.txt: 3779) +.lbx777.*./(.*/)?css/300\.js +# ||lawtv.com.cn/skin/stop.swf (easylistchina.txt: 3778) +.lawtv.com.cn/skin/stop\.swf +# ||law-lib.com/2009_ad/ (easylistchina.txt: 3777) +.law-lib.com/2009_ad/ +# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina.txt: 3776) +.laozuo.org/wp-content/themes/weisaysimple/js/single-bottom\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina.txt: 3775) +.laozuo.org/wp-content/themes/weisaysimple/js/sidebar +# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina.txt: 3774) +.laozuo.org/wp-content/themes/weisaysimple/js/index-top\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina.txt: 3773) +.laozuo.org/wp-content/themes/weisaysimple/js/content40width\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina.txt: 3772) +.laozuo.org/wp-content/themes/weisaysimple/js/banner\.js +# ||laoyuegou.com/js/*_couplet_ (easylistchina.txt: 3771) +.laoyuegou.com/js/.*_couplet_ +# ||laoyuegou.com/img/*/banner/ (easylistchina.txt: 3770) +.laoyuegou.com/img/.*/banner/ +# ||laonanren.com/oldman/ (easylistchina.txt: 3769) +.laonanren.com/oldman/ +# ||laogu.com/my/ad (easylistchina.txt: 3768) +.laogu.com/my/ad +# ||laogu.com/laogubbs/my/ (easylistchina.txt: 3767) +.laogu.com/laogubbs/my/ +# ||laod.cn/wp-content/uploads/*/AD (easylistchina.txt: 3766) +.laod.cn/wp-content/uploads/.*/AD +# ||lanxicy.com/images/rili.gif (easylistchina.txt: 3765) +.lanxicy.com/images/rili\.gif +# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina.txt: 3764) +.lanrenzhijia.com/uploads/ibeifeng +# ||langya.cn/images/ad_down.js (easylistchina.txt: 3763) +.langya.cn/images/ad_down\.js +# ||langya.cn/2014html/ad/ (easylistchina.txt: 3762) +.langya.cn/2014html/ad/ +# ||langya.cn/2014html/2014ad_ (easylistchina.txt: 3761) +.langya.cn/2014html/2014ad_ +# ||langxi.org/langxi/*900$image,object (easylistchina.txt: 3760) +.langxi.org/langxi/.*900 +# ||language-center.com.tw/udn/ (easylistchina.txt: 3759) +.language-center.com.tw/udn/ +# ||landiannews.com/tui/ (easylistchina.txt: 3758) +.landiannews.com/tui/ +# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina.txt: 3757) +.lancdn.com/diannet/media1/diannet_tool_336_280_ +# ||laixi.com/tp/20 (easylistchina.txt: 3756) +.laixi.com/tp/20 +# ||lagou.com/js/cooperation/ (easylistchina.txt: 3755) +.lagou.com/js/cooperation/ +# ||lady8844.com/IMAGE/$~image (easylistchina.txt: 3754) +.lady8844.com/IMAGE/ +# ||lady1314.com.cn/addata/ (easylistchina.txt: 3753) +.lady1314.com.cn/addata/ +# ||lady100.net/top.js (easylistchina.txt: 3752) +.lady100.net/top\.js +# ||lady100.net/760-90.js (easylistchina.txt: 3751) +.lady100.net/760-90\.js +# ||l7po.com/templates/ff_style/led/ (easylistchina.txt: 3750) +.l7po.com/templates/ff_style/led/ +# ||l7po.com/images/tree/ (easylistchina.txt: 3749) +.l7po.com/images/tree/ +# ||l.qq.com/lview? (easylistchina.txt: 3748) +.l.qq.com/lview\? +# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina.txt: 3747) +.kyocdn.com/upload/1316059709x983128031\.gif +# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina.txt: 3746) +.kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv\.jpg +# ||kviso.com/ddnew/kviso (easylistchina.txt: 3745) +.kviso.com/ddnew/kviso +# ||kutj.com/*/*x80.jpg (easylistchina.txt: 3744) +.kutj.com/.*/.*x80\.jpg +# ||kukudm.com/js/play- (easylistchina.txt: 3743) +.kukudm.com/js/play- +# ||kukudm.com/js/comic- (easylistchina.txt: 3742) +.kukudm.com/js/comic- +# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina.txt: 3741) +# ||kuaihou.com/c/you1.js (easylistchina.txt: 3740) +.kuaihou.com/c/you1\.js +# ||kuaihou.com/c/shuoming.js (easylistchina.txt: 3739) +.kuaihou.com/c/shuoming\.js +# ||kuaihei.com/js/xiazaishang.js (easylistchina.txt: 3738) +.kuaihei.com/js/xiazaishang\.js +# ||kuaihei.com/js/view.js (easylistchina.txt: 3737) +.kuaihei.com/js/view\.js +# ||kuaihei.com/js/980 (easylistchina.txt: 3736) +.kuaihei.com/js/980 +# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina.txt: 3735) +.ku6cdn.com/comm/v/0\.1\.0/mm\.png +# ||ku6.com^*/index.shtml (easylistchina.txt: 3734) +.ku6.com/.*/index\.shtml +# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina.txt: 3733) +.ktzhk.com/plugins/cache_template/adv_3b2g\.js +# ||ktzhk.com/file/adv/ (easylistchina.txt: 3732) +.ktzhk.com/file/adv/ +# ||ktkkt.com/js/cnbeta/ (easylistchina.txt: 3731) +.ktkkt.com/js/cnbeta/ +# ||kt51.com/app.js (easylistchina.txt: 3730) +.kt51.com/app\.js +# ||ksvcd.com/images/ (easylistchina.txt: 3729) +.ksvcd.com/images/ +# ||ks.js.cn*/yytf/$object,script (easylistchina.txt: 3728) +.ks.js.cn*./(.*/)?yytf/ +# ||kp52.cc/data/attachment/portal/ (easylistchina.txt: 3727) +.kp52.cc/data/attachment/portal/ +# ||koopan.com/%5Cad/ (easylistchina.txt: 3726) +.koopan.com/%5Cad/ +# ||knnwdyou.com^ (easylistchina.txt: 3725) +.knnwdyou.com +# ||kmplayer.cn/include/jscript/*-b.js (easylistchina.txt: 3724) +.kmplayer.cn/include/jscript/.*-b\.js +# ||kmplayer.cn/include/jscript/*-a.js (easylistchina.txt: 3723) +.kmplayer.cn/include/jscript/.*-a\.js +# ||klss.cn/jc/ (easylistchina.txt: 3722) +.klss.cn/jc/ +# ||klgwdh.com/pp.php (easylistchina.txt: 3721) +.klgwdh.com/pp\.php +# ||kkkmh.com/javascripts/abcde/ (easylistchina.txt: 3720) +.kkkmh.com/javascripts/abcde/ +# ||kkkmh.com/iframe/ (easylistchina.txt: 3719) +.kkkmh.com/iframe/ +# ||kk55.net/beitou.js (easylistchina.txt: 3718) +.kk55.net/beitou\.js +# ||kikicici.com/up_files/2013-11-25/ (easylistchina.txt: 3717) +.kikicici.com/up_files/2013-11-25/ +# ||kiees.cn/img/nz.png (easylistchina.txt: 3716) +.kiees.cn/img/nz\.png +# ||kiees.cn/img/jm.png (easylistchina.txt: 3715) +.kiees.cn/img/jm\.png +# ||kfs.io/article5/global/*/original.gif (easylistchina.txt: 3714) +.kfs.io/article5/global/.*/original\.gif +# ||kf.abab.com/index.php? (easylistchina.txt: 3713) +.kf.abab.com/index\.php\? +# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina.txt: 3712) +.keywin.org/templates/kw_v2/images/youbianad\.png +# ||key8.com/cache/www/banner_ (easylistchina.txt: 3711) +.key8.com/cache/www/banner_ +# ||kelepan.com/yunfaka.gif (easylistchina.txt: 3710) +.kelepan.com/yunfaka\.gif +# ||kelepan.com/cp (easylistchina.txt: 3709) +.kelepan.com/cp +# ||kekenet.com/images/*990 (easylistchina.txt: 3708) +.kekenet.com/images/.*990 +# ||kekenet.com/images/*980 (easylistchina.txt: 3707) +.kekenet.com/images/.*980 +# ||kekenet.com/Images/*/tom640X40.gif (easylistchina.txt: 3706) +.kekenet.com/Images/.*/tom640X40\.gif +# ||kekenet.com/images/*/tom468X60.gif (easylistchina.txt: 3705) +.kekenet.com/images/.*/tom468X60\.gif +# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina.txt: 3704) +.kdhome.net/templets/default/img/bottomadv\.jpg +# ||kcjc.net/data/attachment/portal/ (easylistchina.txt: 3703) +.kcjc.net/data/attachment/portal/ +# ||kcjc.net/960$image (easylistchina.txt: 3702) +.kcjc.net/960 +# ||kanpp.net/Uploads/ad/ (easylistchina.txt: 3701) +.kanpp.net/Uploads/ad/ +# ||kankanmi.com/js/zjgg (easylistchina.txt: 3700) +.kankanmi.com/js/zjgg +# ||kan84.net/js/bdgg/ (easylistchina.txt: 3699) +.kan84.net/js/bdgg/ +# ||kan300.com/js/union/ (easylistchina.txt: 3698) +.kan300.com/js/union/ +# ||kamlm.com/kmgg (easylistchina.txt: 3697) +.kamlm.com/kmgg +# ||kaixin001.com.cn/js/cpm- (easylistchina.txt: 3696) +.kaixin001.com.cn/js/cpm- +# ||kaikaimao.net/static/zx.jpg (easylistchina.txt: 3695) +.kaikaimao.net/static/zx\.jpg +# ||k886.net/comic-toplist (easylistchina.txt: 3694) +.k886.net/comic-toplist +# ||k7mm.com/js/t*.js (easylistchina.txt: 3693) +.k7mm.com/js/t.*\.js +# ||k618.cn/tlgg/ (easylistchina.txt: 3692) +.k618.cn/tlgg/ +# ||k618.cn/gg$image (easylistchina.txt: 3691) +.k618.cn/gg +# ||jznews.com.cn/js/topad (easylistchina.txt: 3689) +.jznews.com.cn/js/topad +# ||jznews.com.cn/js/n_two.js (easylistchina.txt: 3688) +.jznews.com.cn/js/n_two\.js +# ||jznews.com.cn/js/adtwo.js (easylistchina.txt: 3687) +.jznews.com.cn/js/adtwo\.js +# ||jznews.com.cn/js/*_tc.js (easylistchina.txt: 3686) +.jznews.com.cn/js/.*_tc\.js +# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina.txt: 3685) +.jznews.com.cn/comnews/js/ad_tanchuang\.js +# ||jzhome.cn/Public/Js/top.js (easylistchina.txt: 3684) +.jzhome.cn/Public/Js/top\.js +# ||jzhome.cn/Public/images/jyt.gif (easylistchina.txt: 3683) +.jzhome.cn/Public/images/jyt\.gif +# ||jz5u.com/new/ (easylistchina.txt: 3682) +.jz5u.com/new/ +# ||jz5u.com/js/tl$script (easylistchina.txt: 3681) +.jz5u.com/js/tl +# ||jz123.cn/kanli/ (easylistchina.txt: 3680) +.jz123.cn/kanli/ +# ||jxold.com/index.php?m=poster& (easylistchina.txt: 3679) +.jxold.com/index\.php\?m=poster& +# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina.txt: 3678) +.jxnews.com.cn/jxcn/con_ad_title\.js +# ||jxgdw.com/images/jdgg.jpg (easylistchina.txt: 3677) +.jxgdw.com/images/jdgg\.jpg +# ||jxgdw.com/2013images/ad/ (easylistchina.txt: 3676) +.jxgdw.com/2013images/ad/ +# ||jxdown.com/statics/js/all.js (easylistchina.txt: 3675) +.jxdown.com/statics/js/all\.js +# ||jxcn.cn/js/hotpic_ (easylistchina.txt: 3674) +.jxcn.cn/js/hotpic_ +# ||jxcn.cn/images/banner/ (easylistchina.txt: 3673) +.jxcn.cn/images/banner/ +# ||jxad.jx163.com^ (easylistchina.txt: 3672) +.jxad.jx163.com +# ||jx.xinhuanet.com/*banner/ (easylistchina.txt: 3671) +.jx.xinhuanet.com/.*banner/ +# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina.txt: 3670) +.juxiangyou.com/images/tgsc/960x80\.gif +# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina.txt: 3669) +.juxiangyou.com/images/tgsc/250x250\.gif +# ||juxia.com/public/js/juxia.js (easylistchina.txt: 3668) +.juxia.com/public/js/juxia\.js +# ||juxia.com/public/js/foot.js (easylistchina.txt: 3667) +.juxia.com/public/js/foot\.js +# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina.txt: 3666) +.junpinzhi.cn/qixing365/attachment/portal/ +# ||juksy.com/scripts/jquery.blockUI.js (easylistchina.txt: 3664) +.juksy.com/scripts/jquery\.blockUI\.js +# ||jtyskq.com^*/js/_a.js (easylistchina.txt: 3663) +.jtyskq.com/.*/js/_a\.js +# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina.txt: 3662) +.jthysh.com/uploadfile/poster/trt\.swf +# ||jswangpan.com/haha728.gif (easylistchina.txt: 3661) +.jswangpan.com/haha728\.gif +# ||jswangpan.com/3*.gif (easylistchina.txt: 3660) +.jswangpan.com/3.*\.gif +# ||jsw.com.cn^*/index.htm (easylistchina.txt: 3659) +.jsw.com.cn/.*/index\.htm +# ||jstv.com/static_files/zones/87/ (easylistchina.txt: 3658) +.jstv.com/static_files/zones/87/ +# ||jstv.com/static_files/zones/165/165.js (easylistchina.txt: 3657) +.jstv.com/static_files/zones/165/165\.js +# ||jstv.com//static_files/zones/132/132.js (easylistchina.txt: 3656) +# ||jsshuba.com/js/tongji.js (easylistchina.txt: 3655) +.jsshuba.com/js/tongji\.js +# ||jsshuba.com/js/gg.js (easylistchina.txt: 3654) +.jsshuba.com/js/gg\.js +# ||jsshuba.com/js/bdhengfu.js (easylistchina.txt: 3653) +.jsshuba.com/js/bdhengfu\.js +# ||js0573.com/images/cus/ (easylistchina.txt: 3652) +.js0573.com/images/cus/ +# ||js.youxi369.com^ (easylistchina.txt: 3651) +.js.youxi369.com +# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina.txt: 3650) +.js.tv.itc.cn/site/play/v.*/vip_discount_ +# ||js.tv.itc.cn/gg$script (easylistchina.txt: 3649) +.js.tv.itc.cn/gg +# ||js.tlt.cn/js/ (easylistchina.txt: 3648) +.js.tlt.cn/js/ +# ||js.shiwt.com/110.js (easylistchina.txt: 3647) +.js.shiwt.com/110\.js +# ||js.pub.tom.com^ (easylistchina.txt: 3646) +.js.pub.tom.com +# ||js.mumayi.net/jiujiang (easylistchina.txt: 3645) +.js.mumayi.net/jiujiang +# ||js.mumayi.net/9495.gif (easylistchina.txt: 3644) +.js.mumayi.net/9495\.gif +# ||js.mumayi.net/76090.gif (easylistchina.txt: 3643) +.js.mumayi.net/76090\.gif +# ||js.leshen.com^ (easylistchina.txt: 3642) +.js.leshen.com +# ||js.duotegame.com^ (easylistchina.txt: 3641) +.js.duotegame.com +# ||js.bxwns.com^ (easylistchina.txt: 3640) +.js.bxwns.com +# ||js.bju888.com^ (easylistchina.txt: 3639) +.js.bju888.com +# ||js.4738.com/newda/img/994_90_ (easylistchina.txt: 3638) +.js.4738.com/newda/img/994_90_ +# ||js-1.pchome.net^ (easylistchina.txt: 3637) +.js-1.pchome.net +# ||jrjimg.cn/homev2/ad/ (easylistchina.txt: 3636) +.jrjimg.cn/homev2/ad/ +# ||jrjimg.cn/aigu/adcj.jpg (easylistchina.txt: 3635) +.jrjimg.cn/aigu/adcj\.jpg +# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina.txt: 3634) +.jrj.com.cn/iframe/zjgjs\.html\? +# ||jq22.com/assets/ad.png (easylistchina.txt: 3633) +.jq22.com/assets/ad\.png +# ||jpwind.com^*/scroll.js (easylistchina.txt: 3632) +.jpwind.com/.*/scroll\.js +# ||jpwind.com/images/partner/ (easylistchina.txt: 3631) +.jpwind.com/images/partner/ +# ||jpskb.com/Img/dianyuan.gif (easylistchina.txt: 3629) +.jpskb.com/Img/dianyuan\.gif +# ||jpskb.com/Img/7day_ (easylistchina.txt: 3628) +.jpskb.com/Img/7day_ +# ||jpskb.com/Img/439911.jpg (easylistchina.txt: 3627) +.jpskb.com/Img/439911\.jpg +# ||jpskb.com/Img/*_ad_ (easylistchina.txt: 3626) +.jpskb.com/Img/.*_ad_ +# ||jpseek.com/pr/click2.jpg (easylistchina.txt: 3625) +.jpseek.com/pr/click2\.jpg +# ||joyes.com/image/06.jpg (easylistchina.txt: 3624) +.joyes.com/image/06\.jpg +# ||jobtong.com/openSiteAd? (easylistchina.txt: 3623) +.jobtong.com/openSiteAd\? +# ||jnnews.tv/indexad/ (easylistchina.txt: 3622) +.jnnews.tv/indexad/ +# ||jn256.com^*_gg (easylistchina.txt: 3621) +.jn256.com/.*_gg +# ||jn256.com^*/index_fu (easylistchina.txt: 3620) +.jn256.com/.*/index_fu +# ||jn256.com/gg_index/ (easylistchina.txt: 3619) +.jn256.com/gg_index/ +# ||jmsyzj.com^ (easylistchina.txt: 3618) +.jmsyzj.com +# ||jmhfw.com/zt/*.swf (easylistchina.txt: 3617) +.jmhfw.com/zt/.*\.swf +# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina.txt: 3616) +.jmhfw.com/index\.php\?/ajax/get_adv/ +# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina.txt: 3615) +.jlpcn.net/template/paody/aaaa/all-top\.js +# ||jkforum.net/template/default/common/attachAD (easylistchina.txt: 3614) +.jkforum.net/template/default/common/attachAD +# ||jjwxc.net/images/wap/wap.gif (easylistchina.txt: 3613) +.jjwxc.net/images/wap/wap\.gif +# ||jjjgame.com/images/ad11.jpg (easylistchina.txt: 3612) +.jjjgame.com/images/ad11\.jpg +# ||jjjaaa.com/aaa/ (easylistchina.txt: 3611) +.jjjaaa.com/aaa/ +# ||jjbt4.com/600x60.gif (easylistchina.txt: 3610) +.jjbt4.com/600x60\.gif +# ||jj59.com/sy/ibanner.js (easylistchina.txt: 3609) +.jj59.com/sy/ibanner\.js +# ||jj59.com/sy/banner.js (easylistchina.txt: 3608) +.jj59.com/sy/banner\.js +# ||jj20.com/js/yx (easylistchina.txt: 3607) +.jj20.com/js/yx +# ||jj20.com/js/x (easylistchina.txt: 3606) +.jj20.com/js/x +# ||jj20.com/images/960-60.gif (easylistchina.txt: 3605) +.jj20.com/images/960-60\.gif +# ||jj.5ccc.net/scripts/new/ (easylistchina.txt: 3604) +.jj.5ccc.net/scripts/new/ +# ||jiyingdm.com/js/loadingshow.html (easylistchina.txt: 3603) +.jiyingdm.com/js/loadingshow\.html +# ||jitapu.com/inc/adv (easylistchina.txt: 3602) +.jitapu.com/inc/adv +# ||jisuxz.com/2747/ (easylistchina.txt: 3601) +.jisuxz.com/2747/ +# ||jirou.com/plus/mytag_js.php (easylistchina.txt: 3600) +.jirou.com/plus/mytag_js\.php +# ||jinzhuedu.com/k/img/swt.png (easylistchina.txt: 3599) +.jinzhuedu.com/k/img/swt\.png +# ||jinyici.com/qq.js (easylistchina.txt: 3598) +.jinyici.com/qq\.js +# ||jinhongweiqi.com/cache/ads.js (easylistchina.txt: 3597) +.jinhongweiqi.com/cache/ads\.js +# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina.txt: 3596) +.jinghua.cn/lib/js/news/ad_jh\.html +# ||jinbw.com.cn/img/ (easylistchina.txt: 3595) +.jinbw.com.cn/img/ +# ||jiasule.com/static/js/http_error.js (easylistchina.txt: 3594) +.jiasule.com/static/js/http_error\.js +# ||jiasuba.com/js/jjrjtg.js (easylistchina.txt: 3593) +.jiasuba.com/js/jjrjtg\.js +# ||jiaoyu.baidu.com/tieba/ (easylistchina.txt: 3592) +.jiaoyu.baidu.com/tieba/ +# ||jiaonan.net/index.php?m=poster& (easylistchina.txt: 3590) +.jiaonan.net/index\.php\?m=poster& +# ||jiaodong.net/a/js/ (easylistchina.txt: 3589) +.jiaodong.net/a/js/ +# ||jianshen114.com/images/Advistings/ (easylistchina.txt: 3588) +.jianshen114.com/images/Advistings/ +# ||jianhucheng.com/data/attachment/portal/ (easylistchina.txt: 3587) +.jianhucheng.com/data/attachment/portal/ +# ||jianglishi.cn/app/static/images/ad_ (easylistchina.txt: 3586) +.jianglishi.cn/app/static/images/ad_ +# ||jiangcao.com/pic/ (easylistchina.txt: 3585) +.jiangcao.com/pic/ +# ||jiancai365.cn/lbad.gif (easylistchina.txt: 3584) +.jiancai365.cn/lbad\.gif +# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina.txt: 3583) +.jgzj.net/bbs/attachments/month_1111/ +# ||jdxsw.net/js/insidebox.js (easylistchina.txt: 3582) +.jdxsw.net/js/insidebox\.js +# ||jdxsw.net/201400/ (easylistchina.txt: 3581) +.jdxsw.net/201400/ +# ||jdcjsr.com^*/jdcgg/ (easylistchina.txt: 3580) +.jdcjsr.com/.*/jdcgg/ +# ||jdcjsr.com/images/zzgg/ (easylistchina.txt: 3579) +.jdcjsr.com/images/zzgg/ +# ||jd.com/exsites?spread_type= (easylistchina.txt: 3578) +.jd.com/exsites\?spread_type= +# ||jbyf.net^*_Ad/ (easylistchina.txt: 3577) +.jbyf.net/.*_Ad/ +# ||jbyf.net/JS/9 (easylistchina.txt: 3576) +.jbyf.net/JS/9 +# ||jbyf.net/JS/6 (easylistchina.txt: 3575) +.jbyf.net/JS/6 +# ||jbyf.net/JS/1 (easylistchina.txt: 3574) +.jbyf.net/JS/1 +# ||jb51.net/js/Dowplayjb51 (easylistchina.txt: 3573) +.jb51.net/js/Dowplayjb51 +# ||jb51.net/2012js/ (easylistchina.txt: 3572) +.jb51.net/2012js/ +# ||javlibrary.com/js/bnr_ (easylistchina.txt: 3571) +.javlibrary.com/js/bnr_ +# ||javlib3.com/js/bnr_ (easylistchina.txt: 3570) +.javlib3.com/js/bnr_ +# ||javjunkies.com/FL$subdocument (easylistchina.txt: 3569) +.javjunkies.com/FL +# ||jav2lib.com/js/bnr_ (easylistchina.txt: 3568) +.jav2lib.com/js/bnr_ +# ||jandan.com/static/gggg/ (easylistchina.txt: 3567) +.jandan.com/static/gggg/ +# ||ja.gamersky.com^ (easylistchina.txt: 3566) +.ja.gamersky.com +# ||j.6avz.com^ (easylistchina.txt: 3565) +.j.6avz.com +# ||izzs.cc/wp-content/mm/ (easylistchina.txt: 3564) +.izzs.cc/wp-content/mm/ +# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina.txt: 3563) +.izt8.com/iztwp/images/hk-250\.jpg +# ||iyejie.com/xydlad.js (easylistchina.txt: 3562) +.iyejie.com/xydlad\.js +# ||iyejie.com/1024code.gif (easylistchina.txt: 3561) +.iyejie.com/1024code\.gif +# ||iyaya.info/newmshow.php (easylistchina.txt: 3560) +.iyaya.info/newmshow\.php +# ||iyaxin.com/assert/js/m.js (easylistchina.txt: 3559) +.iyaxin.com/assert/js/m\.js +# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina.txt: 3558) +.ixiumei.com/otherhtml/zd800-100\.jpg +# ||iweihai.cn/js/float.js (easylistchina.txt: 3557) +.iweihai.cn/js/float\.js +# ||iwanad.baidu.com^ (easylistchina.txt: 3555) +.iwanad.baidu.com +# ||ivsoo.com/template/ivsoos.jpg (easylistchina.txt: 3554) +.ivsoo.com/template/ivsoos\.jpg +# ||itxtbook.com/game/images/kuping (easylistchina.txt: 3553) +.itxtbook.com/game/images/kuping +# ||itv.hexun.com (easylistchina.txt: 3552) +.itv.hexun.com*. +# ||itpub.net/popwin_js.php? (easylistchina.txt: 3551) +.itpub.net/popwin_js\.php\? +# ||itopdog.cn/js/you.js (easylistchina.txt: 3550) +.itopdog.cn/js/you\.js +# ||itopdog.cn/itopdog/d*.js (easylistchina.txt: 3549) +.itopdog.cn/itopdog/d.*\.js +# ||itongcheng.cc/amm/ (easylistchina.txt: 3548) +.itongcheng.cc/amm/ +# ||itocp.com/html/gk/topic/topicmain.html (easylistchina.txt: 3547) +.itocp.com/html/gk/topic/topicmain\.html +# ||itocp.com/html/gk/*/204x (easylistchina.txt: 3546) +.itocp.com/html/gk/.*/204x +# ||itocp.com/html/gk/*/*x50. (easylistchina.txt: 3545) +.itocp.com/html/gk/.*/.*x50\. +# ||itmxc.com/mxckb.gif (easylistchina.txt: 3544) +.itmxc.com/mxckb\.gif +# ||itmxc.com/mxc-news/960x (easylistchina.txt: 3543) +.itmxc.com/mxc-news/960x +# ||itmsc.cn/files/*/ad0 (easylistchina.txt: 3542) +.itmsc.cn/files/.*/ad0 +# ||itjsb.com/file/script/qipai.js (easylistchina.txt: 3541) +.itjsb.com/file/script/qipai\.js +# ||itjsb.com/file/script/A27.js (easylistchina.txt: 3540) +.itjsb.com/file/script/A27\.js +# ||itjkr.com/upload/ad/ (easylistchina.txt: 3539) +.itjkr.com/upload/ad/ +# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina.txt: 3538) +.itiexue.net/.*\.gif\?w=1500&h=1500 +# ||itiexue.net/domain-policy/ (easylistchina.txt: 3537) +.itiexue.net/domain-policy/ +# ||ithome.com/js/win8china.js (easylistchina.txt: 3536) +.ithome.com/js/win8china\.js +# ||ithome.com/js/win7china.js (easylistchina.txt: 3535) +.ithome.com/js/win7china\.js +# ||ithome.com/js/recommend.js (easylistchina.txt: 3534) +.ithome.com/js/recommend\.js +# ||ithome.com/js/money/ (easylistchina.txt: 3533) +.ithome.com/js/money/ +# ||ithome.com/js/*/toutiao.js (easylistchina.txt: 3532) +.ithome.com/js/.*/toutiao\.js +# ||ithome.com/images/v2.3/11index.png (easylistchina.txt: 3531) +.ithome.com/images/v2\.3/11index\.png +# ||ithome.com/images/partner/ (easylistchina.txt: 3530) +.ithome.com/images/partner/ +# ||ithome.com/html/$xmlhttprequest (easylistchina.txt: 3529) +.ithome.com/html/ +# ||iteye.com/iframe_ggbd/ (easylistchina.txt: 3528) +.iteye.com/iframe_ggbd/ +# ||itc.cn^*_ad/src/*.swf (easylistchina.txt: 3526) +.itc.cn/.*_ad/src/.*\.swf +# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina.txt: 3525) +.itc.cn/activity/activity_js/changyan_config_ +# ||itc.cn/?prod=rtb& (easylistchina.txt: 3524) +.itc.cn/\?prod=rtb& +# ||itc.*^prod=ad& (easylistchina.txt: 3523) +.itc.*./(.*[^\w%.-])?prod=ad& +# ||itavcn.com/pic/news/*305X80.swf (easylistchina.txt: 3522) +.itavcn.com/pic/news/.*305X80\.swf +# ||itavcn.com/images/2014/ad_ (easylistchina.txt: 3521) +.itavcn.com/images/2014/ad_ +# ||itavcn.com/images/2013/ad_ (easylistchina.txt: 3520) +.itavcn.com/images/2013/ad_ +# ||itavcn.com/images/2012/ad_ (easylistchina.txt: 3519) +.itavcn.com/images/2012/ad_ +# ||itavcn.com/images/2011/101902.swf (easylistchina.txt: 3518) +.itavcn.com/images/2011/101902\.swf +# ||itavcn.com/images/*300300.swf (easylistchina.txt: 3517) +.itavcn.com/images/.*300300\.swf +# ||itavcn.com/images/*-banners722-90. (easylistchina.txt: 3516) +.itavcn.com/images/.*-banners722-90\. +# ||italk.yinsha.com/god/ (easylistchina.txt: 3515) +.italk.yinsha.com/god/ +# ||it168.com/factory/ad/ (easylistchina.txt: 3514) +.it168.com/factory/ad/ +# ||it165.net/index.php?m=poster& (easylistchina.txt: 3513) +.it165.net/index\.php\?m=poster& +# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina.txt: 3512) +.it.com.cn/test/cj/2015/03/06/10/1424032881\.jpg +# ||it.com.cn/js/*art (easylistchina.txt: 3511) +.it.com.cn/js/.*art +# ||it.com.cn/dy4*/js/youx.js (easylistchina.txt: 3510) +.it.com.cn/dy4.*/js/youx\.js +# ||it.com.cn/dy4*/js/*0 (easylistchina.txt: 3509) +.it.com.cn/dy4.*/js/.*0 +# ||isso.com.cn/upload_image/A-D/ (easylistchina.txt: 3508) +.isso.com.cn/upload_image/A-D/ +# ||isso.com.cn/ggimage/*.swf (easylistchina.txt: 3507) +.isso.com.cn/ggimage/.*\.swf +# ||isso.com.cn/club/adv2Tools.js (easylistchina.txt: 3506) +.isso.com.cn/club/adv2Tools\.js +# ||ishangman.com/images/aismd/ (easylistchina.txt: 3505) +.ishangman.com/images/aismd/ +# ||iqshw.com/d/js/m/thea (easylistchina.txt: 3504) +.iqshw.com/d/js/m/thea +# ||iqiyi.com/show2?a=qc_ (easylistchina.txt: 3503) +.iqiyi.com/show2\?a=qc_ +# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina.txt: 3502) +.iqiyi.com/player/cupid/common/flash980100\.swf +# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina.txt: 3501) +.iqiyi.com/player/cupid/.*/pageer\.swf +# ||iqiyi.com/player/common/rebull (easylistchina.txt: 3500) +.iqiyi.com/player/common/rebull +# ||iqiyi.com/player/common/adflash (easylistchina.txt: 3499) +.iqiyi.com/player/common/adflash +# ||iqiyi.com/player/*/bannery.swf (easylistchina.txt: 3498) +.iqiyi.com/player/.*/bannery\.swf +# ||iqiyi.com/player/*/a.swf (easylistchina.txt: 3497) +.iqiyi.com/player/.*/a\.swf +# ||iqiyi.com/marketing/*/oppo. (easylistchina.txt: 3496) +.iqiyi.com/marketing/.*/oppo\. +# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina.txt: 3495) +.iqiyi.com/common/flashplayer/.*980-100 +# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina.txt: 3494) +.iqiyi.com/common/flashplayer/.*250%C3%97230\.swf +# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina.txt: 3493) +.iqiyi.com/common/flashplayer/.*/pause\.swf +# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina.txt: 3492) +.iqiyi.com/common/flashplayer/.*/pageer\.swf +# ||iqiyi.com/common/flashplayer/*/980 (easylistchina.txt: 3491) +.iqiyi.com/common/flashplayer/.*/980 +# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina.txt: 3490) +.iqiyi.com/common/flashplayer/.*-banner- +# ||iqiyi.com/common/flashplayer*_1380x (easylistchina.txt: 3489) +.iqiyi.com/common/flashplayer.*_1380x +# ||iq33.com/skin/logo2015/ (easylistchina.txt: 3488) +.iq33.com/skin/logo2015/ +# ||ipeen.com.tw/photo/ad/ (easylistchina.txt: 3487) +.ipeen.com.tw/photo/ad/ +# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina.txt: 3486) +.ipeen.com.tw/js/frame/ad-actions\.js +# ||iour.co/wp-content/uploads/ (easylistchina.txt: 3485) +.iour.co/wp-content/uploads/ +# ||iour.co/ads.js (easylistchina.txt: 3484) +.iour.co/ads\.js +# ||iour.co/ad_dl.js (easylistchina.txt: 3483) +.iour.co/ad_dl\.js +# ||inte.sogou.com^ (easylistchina.txt: 3482) +.inte.sogou.com +# ||inlishui.com/index.php?m=poster& (easylistchina.txt: 3481) +.inlishui.com/index\.php\?m=poster& +# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina.txt: 3480) +.inhe.net/Uploadfiles/ad_2014/ +# ||inhe.net/javascript/Jsduilian (easylistchina.txt: 3479) +.inhe.net/javascript/Jsduilian +# ||inhe.net/javascript/ad_js/ (easylistchina.txt: 3478) +.inhe.net/javascript/ad_js/ +# ||inhe.*/Uploadfiles/adpublish (easylistchina.txt: 3477) +.inhe.*./(.*/)?Uploadfiles/adpublish +# ||info.vip.iqiyi.com/promotion/ (easylistchina.txt: 3476) +.info.vip.iqiyi.com/promotion/ +# ||info.btc123.com/images/antiBlock/$image (easylistchina.txt: 3474) +.info.btc123.com/images/antiBlock/ +# ||info-database.csdn.net/Upload/$image,third-party (easylistchina.txt: 3473) +.info-database.csdn.net/Upload/ +# ||inc.tgbus.com/frame/youxi.html (easylistchina.txt: 3472) +.inc.tgbus.com/frame/youxi\.html +# ||impservice*.youdao.com^ (easylistchina.txt: 3471) +.impservice*./.*\.youdao\.com[^\w%.-] +.impservice*.youdao.com +# ||impservice*.yodao.com^ (easylistchina.txt: 3470) +.impservice*./.*\.yodao\.com[^\w%.-] +.impservice*.yodao.com +# ||imp3.net/data/js$script (easylistchina.txt: 3469) +.imp3.net/data/js +# ||imgur.com/Za3ll.gif (easylistchina.txt: 3466) +.imgur.com/Za3ll\.gif +# ||imgur.com/rTqveeX.jpg (easylistchina.txt: 3465) +.imgur.com/rTqveeX\.jpg +# ||imgur.com/pBL7joM.gif (easylistchina.txt: 3464) +.imgur.com/pBL7joM\.gif +# ||imgur.com/iKkoHkn.jpg (easylistchina.txt: 3463) +.imgur.com/iKkoHkn\.jpg +# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina.txt: 3462) +.imgsrc.baidu.com/tieba/pic/item/ +# ||imgs.cc/images/ad_ (easylistchina.txt: 3461) +.imgs.cc/images/ad_ +# ||imgout.ph.126.net^*/950-90.jpg (easylistchina.txt: 3460) +.imgout.ph.126.net/.*/950-90\.jpg +# ||imgout.ph.126.net^*/700x80.jpg (easylistchina.txt: 3459) +.imgout.ph.126.net/.*/700x80\.jpg +# ||imgout.ph.126.net^*/355-310.jpg (easylistchina.txt: 3458) +.imgout.ph.126.net/.*/355-310\.jpg +# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina.txt: 3457) +.imgn.jiatx.com/jiatx/mall/outer/ +# ||imgkdiyoub999.com/ok/ (easylistchina.txt: 3455) +.imgkdiyoub999.com/ok/ +# ||imgf.gamersky.com^$image (easylistchina.txt: 3454) +.imgf.gamersky.com +# ||imgchili.net/media/top.gif (easylistchina.txt: 3452) +.imgchili.net/media/top\.gif +# ||imgchili.net/media/image*.gif (easylistchina.txt: 3451) +.imgchili.net/media/image.*\.gif +# ||img2.www.fmdisk.com^ (easylistchina.txt: 3449) +.img2.www.fmdisk.com +# ||img2.win007.com/image/*.jpg (easylistchina.txt: 3448) +.img2.win007.com/image/.*\.jpg +# ||img2.e0575.com//upload/adv/ (easylistchina.txt: 3447) +# ||img2.e0575.com*/upload/image/ (easylistchina.txt: 3446) +.img2.e0575.com*./(.*/)?upload/image/ +# ||img2.126.net^ (easylistchina.txt: 3445) +.img2.126.net +# ||img1.jczqw.com/img/ (easylistchina.txt: 3444) +.img1.jczqw.com/img/ +# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina.txt: 3443) +.img1.efu.com.cn/upfile/bew/.*\.swf +# ||img1.autofan.com.cn/swf/ (easylistchina.txt: 3442) +.img1.autofan.com.cn/swf/ +# ||img1.126.net^ (easylistchina.txt: 3441) +.img1.126.net +# ||img.ybbbs.com/2015/ (easylistchina.txt: 3440) +.img.ybbbs.com/2015/ +# ||img.ybbbs.com/2014/ (easylistchina.txt: 3439) +.img.ybbbs.com/2014/ +# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina.txt: 3438) +.img.wangxiao.cn/images/big_ad\.jpg +# ||img.taoguba.com.cn/images/$object (easylistchina.txt: 3437) +.img.taoguba.com.cn/images/ +# ||img.sz.js.cn/wj/ (easylistchina.txt: 3436) +.img.sz.js.cn/wj/ +# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina.txt: 3435) +.img.kuai.xunlei.com/img/v2/fen/ +# ||img.jb51.net^$script (easylistchina.txt: 3434) +.img.jb51.net +# ||img.ifeng.com/tres/html/ (easylistchina.txt: 3433) +.img.ifeng.com/tres/html/ +# ||img.hexun.com*/wszj/js.js (easylistchina.txt: 3432) +.img.hexun.com*./(.*/)?wszj/js\.js +# ||img.eol.cn/images/ed/$~image (easylistchina.txt: 3431) +.img.eol.cn/images/ed/ +# ||img.cqsq.com/s/temp/ (easylistchina.txt: 3430) +.img.cqsq.com/s/temp/ +# ||img.cngba.com/da/ (easylistchina.txt: 3429) +.img.cngba.com/da/ +# ||img.9duw.com^ (easylistchina.txt: 3427) +.img.9duw.com +# ||img.90bfw.com^*.gif (easylistchina.txt: 3426) +.img.90bfw.com/.*\.gif +# ||img.86wan.com/img2/top.jpg (easylistchina.txt: 3425) +.img.86wan.com/img2/top\.jpg +# ||img.6park.com/img/$image (easylistchina.txt: 3424) +.img.6park.com/img/ +# ||img.3sjt.com^ (easylistchina.txt: 3423) +.img.3sjt.com +# ||img*.win007.com/image/*.gif (easylistchina.txt: 3422) +.img*./.*\.win007\.com/image/.*\.gif +.img*.win007.com/image/.*\.gif +# ||img*.titan007.com/image/*.gif (easylistchina.txt: 3421) +.img*./.*\.titan007\.com/image/.*\.gif +.img*.titan007.com/image/.*\.gif +# ||img*.bet007.com/image/*.gif (easylistchina.txt: 3419) +.img*./.*\.bet007\.com/image/.*\.gif +.img*.bet007.com/image/.*\.gif +# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina.txt: 3418) +.imeee.cn/DA_HTML/bottom_960x90\.html +# ||imeee.cn/DA_HTML/*.js (easylistchina.txt: 3417) +.imeee.cn/DA_HTML/.*\.js +# ||imanke.com/static/player/loading/imanke.html (easylistchina.txt: 3416) +.imanke.com/static/player/loading/imanke\.html +# ||imanhua.com^*/nmoneys/ (easylistchina.txt: 3415) +.imanhua.com/.*/nmoneys/ +# ||imanhua.com^*/money/ (easylistchina.txt: 3414) +.imanhua.com/.*/money/ +# ||images.sohu.com/ytv/*.swf (easylistchina.txt: 3413) +.images.sohu.com/ytv/.*\.swf +# ||images.sohu.com/ytv/*.jpg (easylistchina.txt: 3412) +.images.sohu.com/ytv/.*\.jpg +# ||images.sohu.com/cs/ (easylistchina.txt: 3411) +.images.sohu.com/cs/ +# ||images.sohu.com/bill/ (easylistchina.txt: 3410) +.images.sohu.com/bill/ +# ||images.mydrivers.com/2009 (easylistchina.txt: 3409) +.images.mydrivers.com/2009 +# ||images.jurong.cn/bbs/ (easylistchina.txt: 3408) +.images.jurong.cn/bbs/ +# ||images.gxsky.com^ (easylistchina.txt: 3407) +.images.gxsky.com +# ||images.dayoo.com/dywimg/ (easylistchina.txt: 3406) +.images.dayoo.com/dywimg/ +# ||images.chinaz.com^ (easylistchina.txt: 3405) +.images.chinaz.com +# ||images.china.cn^*first/$subdocument (easylistchina.txt: 3404) +.images.china.cn/.*first/ +# ||image.wenweipo.com/*/ad_ (easylistchina.txt: 3403) +.image.wenweipo.com/.*/ad_ +# ||image.sportscn.com/other/live/ (easylistchina.txt: 3402) +.image.sportscn.com/other/live/ +# ||image.seowhy.com/bbs/20 (easylistchina.txt: 3401) +.image.seowhy.com/bbs/20 +# ||image.lepan.cc^ (easylistchina.txt: 3400) +.image.lepan.cc +# ||image.hh010.com^ (easylistchina.txt: 3399) +.image.hh010.com +# ||image.9duw.com^ (easylistchina.txt: 3398) +.image.9duw.com +# ||image.6park.com^ (easylistchina.txt: 3397) +.image.6park.com +# ||im286.com/images/37cs.gif (easylistchina.txt: 3396) +.im286.com/images/37cs\.gif +# ||im286.com/286/ (easylistchina.txt: 3395) +.im286.com/286/ +# ||im.zww.im/images/ (easylistchina.txt: 3394) +.im.zww.im/images/ +# ||ilovecao.com^*.gif (easylistchina.txt: 3393) +.ilovecao.com/.*\.gif +# ||ilikecao.com^*.gif (easylistchina.txt: 3392) +.ilikecao.com/.*\.gif +# ||ikaka.com/globalad/ (easylistchina.txt: 3391) +.ikaka.com/globalad/ +# ||ijia360.com/data/poster/ (easylistchina.txt: 3390) +.ijia360.com/data/poster/ +# ||ihref.com/ihref_gg/ (easylistchina.txt: 3389) +.ihref.com/ihref_gg/ +# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina.txt: 3388) +.iguang.tw/bm/seo_rotation/html/js/ +# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina.txt: 3387) +.iguaji.com/wp-content/uploads/.*/ttzad +# ||iggyy8.com/js/v/ (easylistchina.txt: 3386) +.iggyy8.com/js/v/ +# ||ifxtx.com^*589x60. (easylistchina.txt: 3385) +.ifxtx.com/.*589x60\. +# ||ifxtx.com/tp/ (easylistchina.txt: 3384) +.ifxtx.com/tp/ +# ||ifxtx.com/js/ad-02.js (easylistchina.txt: 3383) +.ifxtx.com/js/ad-02\.js +# ||ifx.aifang.com^ (easylistchina.txt: 3382) +.ifx.aifang.com +# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina.txt: 3381) +.ifood1.com/aobntech/pic/9300\.jpg +# ||ifonce.com/813.gif (easylistchina.txt: 3380) +.ifonce.com/813\.gif +# ||ifengimg.com^*Float$script (easylistchina.txt: 3379) +.ifengimg.com/.*Float +# ||ifengimg.com^*couplet$script (easylistchina.txt: 3378) +.ifengimg.com/.*couplet +# ||ifengimg.com^*/yingguang- (easylistchina.txt: 3377) +.ifengimg.com/.*/yingguang- +# ||ifengimg.com^*/sparta.js (easylistchina.txt: 3376) +.ifengimg.com/.*/sparta\.js +# ||ifengimg.com^*/shfwq (easylistchina.txt: 3375) +.ifengimg.com/.*/shfwq +# ||ifengimg.com^*/rdn_*.js? (easylistchina.txt: 3374) +.ifengimg.com/.*/rdn_.*\.js\? +# ||ifengimg.com^*/pan.js (easylistchina.txt: 3373) +.ifengimg.com/.*/pan\.js +# ||ifengimg.com^*/iframe_load_ (easylistchina.txt: 3372) +.ifengimg.com/.*/iframe_load_ +# ||ifengimg.com^*/hover.js (easylistchina.txt: 3371) +.ifengimg.com/.*/hover\.js +# ||ifengimg.com^*/hddw- (easylistchina.txt: 3370) +.ifengimg.com/.*/hddw- +# ||ifengimg.com^*/fullscreen (easylistchina.txt: 3369) +.ifengimg.com/.*/fullscreen +# ||ifengimg.com^*/backwindow.js (easylistchina.txt: 3368) +.ifengimg.com/.*/backwindow\.js +# ||ifengimg.com^*/aplayer.xml (easylistchina.txt: 3367) +.ifengimg.com/.*/aplayer\.xml +# ||ifengimg.com^*/300-300. (easylistchina.txt: 3366) +.ifengimg.com/.*/300-300\. +# ||ifengimg.com^*/300-300- (easylistchina.txt: 3365) +.ifengimg.com/.*/300-300- +# ||ifengimg.com^*/1000X90- (easylistchina.txt: 3364) +.ifengimg.com/.*/1000X90- +# ||ifengimg.com^*/1000-90- (easylistchina.txt: 3363) +.ifengimg.com/.*/1000-90- +# ||ifengimg.com^*/100-100- (easylistchina.txt: 3362) +.ifengimg.com/.*/100-100- +# ||ifengimg.com^*-gewindow- (easylistchina.txt: 3361) +.ifengimg.com/.*-gewindow- +# ||ifengimg.com/zhishaofei/js/ (easylistchina.txt: 3360) +.ifengimg.com/zhishaofei/js/ +# ||ifengimg.com/xingzhao/JS/ (easylistchina.txt: 3359) +.ifengimg.com/xingzhao/JS/ +# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina.txt: 3358) +.ifengimg.com/tres/js/.*/idemin_noif\.js +# ||ifengimg.com/static/news/js/advtrack (easylistchina.txt: 3357) +.ifengimg.com/static/news/js/advtrack +# ||ifengimg.com/neiqian/*/embed.js (easylistchina.txt: 3356) +.ifengimg.com/neiqian/.*/embed\.js +# ||ifengimg.com/iis/iis_ (easylistchina.txt: 3354) +.ifengimg.com/iis/iis_ +# ||ifengimg.com/ifengimcp/pic/*_w750_h112. (easylistchina.txt: 3353) +.ifengimg.com/ifengimcp/pic/.*_w750_h112\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina.txt: 3352) +.ifengimg.com/ifengimcp/pic/.*_w640_h130\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina.txt: 3351) +.ifengimg.com/ifengimcp/pic/.*_w640_h120\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina.txt: 3350) +.ifengimg.com/ifengimcp/pic/.*_w320_h48\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina.txt: 3349) +.ifengimg.com/ifengimcp/pic/.*_w320_h330\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina.txt: 3348) +.ifengimg.com/ifengimcp/pic/.*_w320_h210\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina.txt: 3347) +.ifengimg.com/ifengimcp/pic/.*_w320_h120\. +# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina.txt: 3346) +.ifengimg.com/ifengimcp/pic/.*_w300_h65\. +# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina.txt: 3345) +.ifengimg.com/ifengimcp/pic/.*_w24_h100\. +# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina.txt: 3344) +.ifengimg.com/ifengimcp/pic/.*_w130_h100\. +# ||ifengimg.com/ifeng/sources/ (easylistchina.txt: 3343) +.ifengimg.com/ifeng/sources/ +# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina.txt: 3342) +.ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1\.jpg +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina.txt: 3341) +.ifengimg.com/29daa33abbbc4bbc/2015/7/titad\.gif +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina.txt: 3340) +.ifengimg.com/29daa33abbbc4bbc/2015/7/aogute\.gif +# ||ifengimg.com/*/taobaopudi/ (easylistchina.txt: 3339) +.ifengimg.com/.*/taobaopudi/ +# ||ifeng.com^*&ADUNITID= (easylistchina.txt: 3338) +.ifeng.com/.*&ADUNITID= +# ||ifeng.com/wapAdversApi? (easylistchina.txt: 3337) +.ifeng.com/wapAdversApi\? +# ||ifeng.com/statics/comment_baidu.html (easylistchina.txt: 3336) +.ifeng.com/statics/comment_baidu\.html +# ||ifeng.com/ssi-incs/ (easylistchina.txt: 3335) +.ifeng.com/ssi-incs/ +# ||ifeng.com/showjs?*apids= (easylistchina.txt: 3334) +.ifeng.com/showjs\?.*apids= +# ||ifeng.com/iframe/toquickbet (easylistchina.txt: 3333) +.ifeng.com/iframe/toquickbet +# ||ifeng.com/iframe/quickbet (easylistchina.txt: 3332) +.ifeng.com/iframe/quickbet +# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina.txt: 3331) +.ifeng.com/bbsfile/js/ifeng_tip\.js +# ||ifeng.com/a_if/taobao- (easylistchina.txt: 3330) +.ifeng.com/a_if/taobao- +# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina.txt: 3329) +.ifanr.cn/wp-content/uploads/2015/12/xc90\.jpg +# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina.txt: 3328) +.ietv.cc/Runtime/Js/web_bug\.js +# ||ietv.cc/Runtime/Js/vod (easylistchina.txt: 3327) +.ietv.cc/Runtime/Js/vod +# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina.txt: 3326) +.ietv.cc/min/b=Runtime/Js&f= +# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina.txt: 3325) +.iefans.net/wp-content/uploads/2009/js/llq/2345llq\.gif +# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina.txt: 3324) +.iefans.net/wp-content/uploads/2009/03/UCbanner\.gif +# ||ieche.com/InAds/ (easylistchina.txt: 3323) +.ieche.com/InAds/ +# ||ieche.com/global/*/ad/ (easylistchina.txt: 3322) +.ieche.com/global/.*/ad/ +# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina.txt: 3321) +.ie.5500w.com/market/404230/pop_browser\.js +# ||idcxr.com/images/ad (easylistchina.txt: 3320) +.idcxr.com/images/ad +# ||idcquan.com/linux/cio_new.html (easylistchina.txt: 3319) +.idcquan.com/linux/cio_new\.html +# ||idcot.com^ (easylistchina.txt: 3318) +.idcot.com +# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina.txt: 3317) +.idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff\.png +# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina.txt: 3316) +.idanmu.com/wp-content/themes/wpbangumi/images/assets/ +# ||icnkr.com/data/attachment/portal/ (easylistchina.txt: 3315) +.icnkr.com/data/attachment/portal/ +# ||icnkr.com/cnkradv/ (easylistchina.txt: 3314) +.icnkr.com/cnkradv/ +# ||icili.com/cpma.js (easylistchina.txt: 3313) +.icili.com/cpma\.js +# ||iciba.com/web/co/ci/ (easylistchina.txt: 3312) +.iciba.com/web/co/ci/ +# ||iciba.com/static/images/double11_ (easylistchina.txt: 3311) +.iciba.com/static/images/double11_ +# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina.txt: 3310) +.ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi\.jpg +# ||ibook8.com/xia*.js (easylistchina.txt: 3309) +.ibook8.com/xia.*\.js +# ||ibook8.com/js/b*.js (easylistchina.txt: 3308) +.ibook8.com/js/b.*\.js +# ||ibook8.com*/piao*.js (easylistchina.txt: 3307) +.ibook8.com*./(.*/)?piao.*\.js +# ||iapp.com.tw/iapp_ad.php (easylistchina.txt: 3306) +.iapp.com.tw/iapp_ad\.php +# ||iapolo.com/myjs/ (easylistchina.txt: 3305) +.iapolo.com/myjs/ +# ||iads.xinmin.cn^ (easylistchina.txt: 3304) +.iads.xinmin.cn +# ||i322.com/ad_avshow/ (easylistchina.txt: 3303) +.i322.com/ad_avshow/ +# ||i.syasn.com^ (easylistchina.txt: 3302) +.i.syasn.com +# ||i.fgi.tw/images/survey_of_woman (easylistchina.txt: 3301) +.i.fgi.tw/images/survey_of_woman +# ||i.168img.com^$image,object (easylistchina.txt: 3299) +.i.168img.com +# ||i.168gamer.$image,object (easylistchina.txt: 3298) +.i.168gamer.*. +# ||i-part.com.tw/js2/newShineStar (easylistchina.txt: 3297) +.i-part.com.tw/js2/newShineStar +# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina.txt: 3296) +.i-part.com.tw/images2/index/HouseStar/ +# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina.txt: 3295) +.i-part.com.tw/hookimg/23892_14367801811\.jpg +# ||i-gamer.net/promo_ (easylistchina.txt: 3294) +.i-gamer.net/promo_ +# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina.txt: 3293) +.i-gamer.net/image/banner_tag_726x100\.jpg +# ||hzhyhm.com^ (easylistchina.txt: 3292) +.hzhyhm.com +# ||hz.shouyoutv.com^ (easylistchina.txt: 3291) +.hz.shouyoutv.com +# ||hybbs.com/i/$image,object (easylistchina.txt: 3290) +.hybbs.com/i/ +# ||hxyl.net/hydzsw.jpg (easylistchina.txt: 3289) +.hxyl.net/hydzsw\.jpg +# ||hxsxw.com/js/float.js (easylistchina.txt: 3288) +.hxsxw.com/js/float\.js +# ||hxsxw.com/gg*.gif (easylistchina.txt: 3287) +.hxsxw.com/gg.*\.gif +# ||hxsd.com/templets/js/looyu_pop.js (easylistchina.txt: 3286) +.hxsd.com/templets/js/looyu_pop\.js +# ||hxsame.hexun.com (easylistchina.txt: 3285) +.hxsame.hexun.com*. +# ||hxjs.tool.hexun.com (easylistchina.txt: 3284) +.hxjs.tool.hexun.com*. +# ||hx95.com/images/vip.gif (easylistchina.txt: 3283) +.hx95.com/images/vip\.gif +# ||hx95.com/images/sn88.gif (easylistchina.txt: 3282) +.hx95.com/images/sn88\.gif +# ||huxiu.com/static/js/jobAds/ (easylistchina.txt: 3281) +.huxiu.com/static/js/jobAds/ +# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina.txt: 3280) +.hutc.zj.cn/skins/hutc2012/js/fp\.js +# ||hur.cn/AhurD/*.gif (easylistchina.txt: 3279) +.hur.cn/AhurD/.*\.gif +# ||huoyan.tv/yb/img/*.gif (easylistchina.txt: 3278) +.huoyan.tv/yb/img/.*\.gif +# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina.txt: 3277) +.huoxingyu.com/images/hxy_350_330\.gif +# ||huoche.net/Images/pc/ad_ (easylistchina.txt: 3276) +.huoche.net/Images/pc/ad_ +# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina.txt: 3275) +.hunantv.com/ui/2014/images/hao123\.jpg +# ||huizu100.com/data/attachment/portal/ (easylistchina.txt: 3274) +.huizu100.com/data/attachment/portal/ +# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina.txt: 3273) +.huizhou.cn/webfile/.*/images/scroll\.js +# ||huihuige.com/images/affiliates/*_250_250 (easylistchina.txt: 3272) +.huihuige.com/images/affiliates/.*_250_250 +# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina.txt: 3271) +.hudong.pl.youku.com/interact/web/get/timeLinePlugin\? +# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina.txt: 3270) +.hudong.pl.youku.com/interact/player/get/plugins\? +# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina.txt: 3269) +.huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default\.jpg +# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina.txt: 3268) +.huanqiukexue.com/uploads/images/hqkx_11\.jpg +# ||huanqiu.com^*/js/swt.js (easylistchina.txt: 3267) +.huanqiu.com/.*/js/swt\.js +# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina.txt: 3266) +.huanqiu.com/script/HuanQiuAllBottom\.Js +# ||huanqiu.com/resource/js/base.js (easylistchina.txt: 3265) +.huanqiu.com/resource/js/base\.js +# ||hualongxiang.com/lib/clientShow.js (easylistchina.txt: 3264) +.hualongxiang.com/lib/clientShow\.js +# ||hualady.com/static/ (easylistchina.txt: 3263) +.hualady.com/static/ +# ||huainet.com/index_tg/js/txg.js (easylistchina.txt: 3262) +.huainet.com/index_tg/js/txg\.js +# ||huaiduoduo.info/Runtime/js/ (easylistchina.txt: 3261) +.huaiduoduo.info/Runtime/js/ +# ||huacolor.com/nei/ (easylistchina.txt: 3260) +.huacolor.com/nei/ +# ||huacolor.com/daocaoren/ (easylistchina.txt: 3259) +.huacolor.com/daocaoren/ +# ||huacolor.com/all/ (easylistchina.txt: 3258) +.huacolor.com/all/ +# ||huabian.com/hb/ad/ (easylistchina.txt: 3257) +.huabian.com/hb/ad/ +# ||httpcn.com^*950_120 (easylistchina.txt: 3256) +.httpcn.com/.*950_120 +# ||httpcn.com/tg/ (easylistchina.txt: 3255) +.httpcn.com/tg/ +# ||httpcn.com/include/ad1/ (easylistchina.txt: 3254) +.httpcn.com/include/ad1/ +# ||httpcn.com/Images/banner (easylistchina.txt: 3253) +.httpcn.com/Images/banner +# ||httpcn.com/images/adpic2014/ad (easylistchina.txt: 3252) +.httpcn.com/images/adpic2014/ad +# ||httpcn.com/images/ad_ (easylistchina.txt: 3251) +.httpcn.com/images/ad_ +# ||htpc1.com/iBT/tools/ (easylistchina.txt: 3250) +.htpc1.com/iBT/tools/ +# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina.txt: 3249) +.hs.cnfol.com/Cm/Imgs/Load\.gif +# ||hrtsea.com/936x90.gif (easylistchina.txt: 3248) +.hrtsea.com/936x90\.gif +# ||hqdoor.com/Web/ (easylistchina.txt: 3247) +.hqdoor.com/Web/ +# ||hqcx.net/index.php?m=poster& (easylistchina.txt: 3246) +.hqcx.net/index\.php\?m=poster& +# ||how361.com/images/letou/xsbanner.gif (easylistchina.txt: 3244) +.how361.com/images/letou/xsbanner\.gif +# ||how361.com/images/letou/20130111.gif (easylistchina.txt: 3243) +.how361.com/images/letou/20130111\.gif +# ||how361.com/data/js.php?id= (easylistchina.txt: 3242) +.how361.com/data/js\.php\?id= +# ||houyi.baofeng.net^*.html (easylistchina.txt: 3241) +.houyi.baofeng.net/.*\.html +# ||house365.com/js/lbpopup.js (easylistchina.txt: 3240) +.house365.com/js/lbpopup\.js +# ||house365.com/*ads/201 (easylistchina.txt: 3239) +.house365.com/.*ads/201 +# ||house.sina.com.cn/2.0/ads/ (easylistchina.txt: 3238) +.house.sina.com.cn/2\.0/ads/ +# ||house.sina.com.cn/2.0/abp/ (easylistchina.txt: 3237) +.house.sina.com.cn/2\.0/abp/ +# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina.txt: 3236) +.house.shangdu.com/house/js/fmt_swf/ +# ||house.shangdu.com/d/file/p/*.swf (easylistchina.txt: 3235) +.house.shangdu.com/d/file/p/.*\.swf +# ||house.jschina.com.cn/userfiles/flash/ (easylistchina.txt: 3234) +.house.jschina.com.cn/userfiles/flash/ +# ||house.inhe.net/javascript/flashdiv.js (easylistchina.txt: 3233) +.house.inhe.net/javascript/flashdiv\.js +# ||house.163.com/special/*/dbhg.js (easylistchina.txt: 3232) +.house.163.com/special/.*/dbhg\.js +# ||houdao.com/images/xxd.jpg (easylistchina.txt: 3231) +.houdao.com/images/xxd\.jpg +# ||houdao.com/images/tophd.jpg (easylistchina.txt: 3230) +.houdao.com/images/tophd\.jpg +# ||houdao.com/images/ktpd.jpg (easylistchina.txt: 3229) +.houdao.com/images/ktpd\.jpg +# ||houdao.com/images/houdaov3/ban.png (easylistchina.txt: 3228) +.houdao.com/images/houdaov3/ban\.png +# ||houdao.com/bans/ (easylistchina.txt: 3227) +.houdao.com/bans/ +# ||hoto.cn/source/img/index_ (easylistchina.txt: 3226) +.hoto.cn/source/img/index_ +# ||hotavxxx.com/images/*96 (easylistchina.txt: 3225) +.hotavxxx.com/images/.*96 +# ||hot.580k.com/share/Ad_ (easylistchina.txt: 3224) +.hot.580k.com/share/Ad_ +# ||hoopchina.com.cn/web/ad/ (easylistchina.txt: 3223) +.hoopchina.com.cn/web/ad/ +# ||hoopchina.com.cn/topn$subdocument (easylistchina.txt: 3222) +.hoopchina.com.cn/topn +# ||hongxiu.com/images/home20140530.gif (easylistchina.txt: 3221) +.hongxiu.com/images/home20140530\.gif +# ||hongshu.com/hs/ (easylistchina.txt: 3220) +.hongshu.com/hs/ +# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina.txt: 3219) +.hongdou.gxnews.com.cn/upload/index/ +# ||hn-pc.com/css/Fun_Div.js (easylistchina.txt: 3218) +.hn-pc.com/css/Fun_Div\.js +# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina.txt: 3217) +.hkwb.net/extra/1992\.files/hengda\.gif +# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina.txt: 3216) +.hkwb.net/extra/1992\.files/2015yeshu\.swf +# ||hktvmall.com/api/preroll/getList? (easylistchina.txt: 3215) +.hktvmall.com/api/preroll/getList\? +# ||hkslg.com/gaogao/ (easylistchina.txt: 3214) +.hkslg.com/gaogao/ +# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina.txt: 3213) +.hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner\.jpg +# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina.txt: 3212) +.hkitblog.com/logo/hkitblog_zh\.jpg +# ||hkheadline.com^*/right_promo.js (easylistchina.txt: 3211) +.hkheadline.com/.*/right_promo\.js +# ||hkheadline.com/*promo/ (easylistchina.txt: 3210) +.hkheadline.com/.*promo/ +# ||hkheadline.com/*banner$script (easylistchina.txt: 3209) +.hkheadline.com/.*banner +# ||hkgolden.com/yahoo_ad (easylistchina.txt: 3208) +.hkgolden.com/yahoo_ad +# ||hkgolden.com/mtg/ (easylistchina.txt: 3207) +.hkgolden.com/mtg/ +# ||hkgolden.com/hkg.js (easylistchina.txt: 3206) +.hkgolden.com/hkg\.js +# ||hkgolden.com/google_ad (easylistchina.txt: 3205) +.hkgolden.com/google_ad +# ||hkepc.com/prepared/images/b608.png (easylistchina.txt: 3204) +.hkepc.com/prepared/images/b608\.png +# ||hkepc.com/forum/api/unimhk_ (easylistchina.txt: 3203) +.hkepc.com/forum/api/unimhk_ +# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina.txt: 3202) +.hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852\.swf +# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina.txt: 3201) +.hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515\.jpg +# ||hk-pub.com/forum/images/banner/ (easylistchina.txt: 3200) +.hk-pub.com/forum/images/banner/ +# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina.txt: 3199) +.hk-pub.com/forum/images/2009/home_advc\.jpg +# ||hk-bici.com/data/attachment/ad/ (easylistchina.txt: 3198) +.hk-bici.com/data/attachment/ad/ +# ||hjdn.cn/img/hjgq.gif (easylistchina.txt: 3197) +.hjdn.cn/img/hjgq\.gif +# ||hjav.org/wp-content/uploads/ (easylistchina.txt: 3196) +.hjav.org/wp-content/uploads/ +# ||hjav.org/ads.js (easylistchina.txt: 3195) +.hjav.org/ads\.js +# ||hjav.in/wp-content/uploads/ (easylistchina.txt: 3194) +.hjav.in/wp-content/uploads/ +# ||hjav.in/ads.js (easylistchina.txt: 3193) +.hjav.in/ads\.js +# ||hjav.in/ad_dl.js (easylistchina.txt: 3192) +.hjav.in/ad_dl\.js +# ||hipowerd.com/outbound/images/*_banner. (easylistchina.txt: 3191) +.hipowerd.com/outbound/images/.*_banner\. +# ||hinews.cn/swf/0/*.swf (easylistchina.txt: 3190) +.hinews.cn/swf/0/.*\.swf +# ||hinews.cn/out/$script (easylistchina.txt: 3189) +.hinews.cn/out/ +# ||hinews.cn/js/09page/10pagesjbtj (easylistchina.txt: 3188) +.hinews.cn/js/09page/10pagesjbtj +# ||hinews.cn/eweb/img/*/1000x (easylistchina.txt: 3187) +.hinews.cn/eweb/img/.*/1000x +# ||hinet.net/radio/getAdcode.do (easylistchina.txt: 3186) +.hinet.net/radio/getAdcode\.do +# ||hifidiy.net/www/*/hivi_ (easylistchina.txt: 3185) +.hifidiy.net/www/.*/hivi_ +# ||hiao.com/node/node_27508.htm (easylistchina.txt: 3184) +.hiao.com/node/node_27508\.htm +# ||hiad.vmall.com^ (easylistchina.txt: 3183) +.hiad.vmall.com +# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina.txt: 3182) +.hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942\.jpg +# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina.txt: 3181) +.hi.people.com.cn/NMediaFile/.*\.gif +# ||hi.people.com.cn/NMediaFile/$object (easylistchina.txt: 3180) +.hi.people.com.cn/NMediaFile/ +# ||hhmanhua.net/jsc/stat.js (easylistchina.txt: 3179) +.hhmanhua.net/jsc/stat\.js +# ||hhmanhua.net/jsc/book_ (easylistchina.txt: 3178) +.hhmanhua.net/jsc/book_ +# ||hhmanhua.net/hh/h*.js (easylistchina.txt: 3177) +.hhmanhua.net/hh/h.*\.js +# ||hhcomic.com/hh/h*.js (easylistchina.txt: 3176) +.hhcomic.com/hh/h.*\.js +# ||hfchenming.com.cn/ad.html (easylistchina.txt: 3175) +.hfchenming.com.cn/ad\.html +# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina.txt: 3174) +.hf365.com/0/14/60/93/14609355_921128\.jpg +# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina.txt: 3173) +.hf365.com/0/14/31/00/14310068_933922\.png +# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina.txt: 3172) +.hf365.com/0/13/79/87/13798795_912593\.jpg +# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina.txt: 3171) +# ||hexunimg.cn/m/images/ad_ (easylistchina.txt: 3170) +.hexunimg.cn/m/images/ad_ +# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina.txt: 3169) +.hexun.com*./(.*/)?hx_news/hx_news_finalpage\.js +# ||heshan.gov.cn/JS/ddgg.js (easylistchina.txt: 3168) +.heshan.gov.cn/JS/ddgg\.js +# ||henghost.com^$third-party (easylistchina.txt: 3167) +.henghost.com +# ||henan100.com^*/ad_article/ (easylistchina.txt: 3166) +.henan100.com/.*/ad_article/ +# ||henan.sina.com.cn/iframe/7/ (easylistchina.txt: 3165) +.henan.sina.com.cn/iframe/7/ +# ||heitu5.com/js/heituad/ (easylistchina.txt: 3164) +.heitu5.com/js/heituad/ +# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina.txt: 3163) +.heikexs.com/wp-content/themes/Duoxs.*/js/ +# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina.txt: 3162) +.heiguang.com/statics/201404/img/tiop-1\.jpg +# ||heiguang.com/f/uad/ (easylistchina.txt: 3161) +.heiguang.com/f/uad/ +# ||hego123.net/top.js (easylistchina.txt: 3160) +.hego123.net/top\.js +# ||hego123.net/760-90.js (easylistchina.txt: 3159) +.hego123.net/760-90\.js +# ||hefei.cc/templates/default/index_ad (easylistchina.txt: 3158) +.hefei.cc/templates/default/index_ad +# ||hebnews.cn/27510.files/baidu.js (easylistchina.txt: 3157) +.hebnews.cn/27510\.files/baidu\.js +# ||hebei.com.cn/sys/online_calc.js (easylistchina.txt: 3156) +.hebei.com.cn/sys/online_calc\.js +# ||hebei.com.cn/swf/ (easylistchina.txt: 3155) +.hebei.com.cn/swf/ +# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina.txt: 3154) +.hebei.com.cn/js/leftrightdown_piaofu_ad_js\.js +# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina.txt: 3153) +.hebei.com.cn/js/duilian_four_ad_js\.js +# ||hebei.com.cn/eap/ (easylistchina.txt: 3152) +.hebei.com.cn/eap/ +# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina.txt: 3151) +.hdzc.net/statics/images/lamu/mhs\.swf +# ||hdsq.cc/data/attachment/portal/ (easylistchina.txt: 3150) +.hdsq.cc/data/attachment/portal/ +# ||hdsky.me/adv/ (easylistchina.txt: 3148) +.hdsky.me/adv/ +# ||hdpfans.com/images/icons/*x75. (easylistchina.txt: 3147) +.hdpfans.com/images/icons/.*x75\. +# ||hdpfans.com/images/icons/*x70. (easylistchina.txt: 3146) +.hdpfans.com/images/icons/.*x70\. +# ||hdpfans.com/images/icons/*x60. (easylistchina.txt: 3145) +.hdpfans.com/images/icons/.*x60\. +# ||hdpfans.com/images/hotapp/ (easylistchina.txt: 3144) +.hdpfans.com/images/hotapp/ +# ||hdarea.co/pic/2222.gif (easylistchina.txt: 3143) +.hdarea.co/pic/2222\.gif +# ||hdad.baike.com^ (easylistchina.txt: 3142) +.hdad.baike.com +# ||hd62.com/img/ (easylistchina.txt: 3141) +.hd62.com/img/ +# ||hd180.com/js/ (easylistchina.txt: 3140) +.hd180.com/js/ +# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina.txt: 3139) +.hc360.com/security/201409/201409021830024990\.jpg +# ||hc360.com/security/201311/201311151050289368.swf (easylistchina.txt: 3138) +.hc360.com/security/201311/201311151050289368\.swf +# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina.txt: 3137) +.hc360.com/news/201207/201207241712413488\.jpg +# ||hc360.com/list/iframe_right_ad_ (easylistchina.txt: 3136) +.hc360.com/list/iframe_right_ad_ +# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina.txt: 3135) +.hc360.com/list/iframe_end_textadv\.shtml +# ||hc360.com/list/iframe_2012ad_ (easylistchina.txt: 3134) +.hc360.com/list/iframe_2012ad_ +# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina.txt: 3133) +.hc360.com/list/iframe_2011hezuo\.shtml +# ||hc360.com/js/hcpop_ (easylistchina.txt: 3132) +.hc360.com/js/hcpop_ +# ||hc360.com/js/*hezuo.js (easylistchina.txt: 3131) +.hc360.com/js/.*hezuo\.js +# ||hc360.com/images/14826/289x90.jpg (easylistchina.txt: 3130) +.hc360.com/images/14826/289x90\.jpg +# ||hbrc.com/bd1.html (easylistchina.txt: 3129) +.hbrc.com/bd1\.html +# ||haxiu.com/data/cache/myadn- (easylistchina.txt: 3128) +.haxiu.com/data/cache/myadn- +# ||happydown.com^$script,subdocument (easylistchina.txt: 3127) +.happydown.com +# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina.txt: 3126) +.haoyu.me/wp-content/uploads/2013/12/aliyun\.jpg +# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina.txt: 3125) +.haoyu.me/wp-content/uploads/2013/08/interserver-vps1\.gif +# ||haoxxoo.com/player/ad.html (easylistchina.txt: 3124) +.haoxxoo.com/player/ad\.html +# ||haowj.com.cn/d/js/outsidead/ (easylistchina.txt: 3123) +.haowj.com.cn/d/js/outsidead/ +# ||haoring03.com/ads/ (easylistchina.txt: 3122) +.haoring03.com/ads/ +# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina.txt: 3121) +.haokan5.com/js/haokanjs/youxiajiao\.js +# ||haokan5.com/js/haokanjs/tj.js (easylistchina.txt: 3120) +.haokan5.com/js/haokanjs/tj\.js +# ||haokan5.com/js/haokanjs/playa (easylistchina.txt: 3119) +.haokan5.com/js/haokanjs/playa +# ||haokan5.com/js/haokanjs/2014_ (easylistchina.txt: 3118) +.haokan5.com/js/haokanjs/2014_ +# ||haoghost.com/js/hy_cpc_print.js (easylistchina.txt: 3117) +.haoghost.com/js/hy_cpc_print\.js +# ||haofu1.com/images/*.gif (easylistchina.txt: 3116) +.haofu1.com/images/.*\.gif +# ||haofs.com/haofs/ggapi.asp (easylistchina.txt: 3115) +.haofs.com/haofs/ggapi\.asp +# ||haodai.com/src/i/lianmeng/ad/ (easylistchina.txt: 3114) +.haodai.com/src/i/lianmeng/ad/ +# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina.txt: 3113) +.haochi123.com/Js/Fun_Effects_HT9\.js +# ||haochi123.com/J_Box/Inc_ (easylistchina.txt: 3112) +.haochi123.com/J_Box/Inc_ +# ||hao6666.info^*.js (easylistchina.txt: 3111) +.hao6666.info/.*\.js +# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina.txt: 3110) +.hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT\.js +# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina.txt: 3109) +.hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43\.png +# ||hao123img.com/res/ecom/ (easylistchina.txt: 3108) +.hao123img.com/res/ecom/ +# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina.txt: 3107) +.hao123.com/data/v/stuff\.php\?.*_forhao123Adv +# ||hao123.cn/images/vip.png (easylistchina.txt: 3106) +.hao123.cn/images/vip\.png +# ||hao.rising.cn/images/nsdgg.jpg (easylistchina.txt: 3105) +.hao.rising.cn/images/nsdgg\.jpg +# ||hao.rising.cn/catalog/bottom.html (easylistchina.txt: 3104) +.hao.rising.cn/catalog/bottom\.html +# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina.txt: 3103) +.hanzify.*./(.*/)?Main/Template/Images/chinabank\.gif +# ||hangzhou.com.cn/inc_hzw/ (easylistchina.txt: 3102) +.hangzhou.com.cn/inc_hzw/ +# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina.txt: 3101) +.hangzhou.com.cn/images/flashyingpian\.swf +# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina.txt: 3100) +.hangzhou.com.cn/extra/flash/hzwarticle300\.swf +# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina.txt: 3099) +.hanfanba.com/template/hanfanba/img/tb- +# ||haiwainet.cn/json/news (easylistchina.txt: 3098) +.haiwainet.cn/json/news +# ||haiwainet.cn*/k.js (easylistchina.txt: 3097) +.haiwainet.cn*./(.*/)?k\.js +# ||hahade.com/tpl/*.html (easylistchina.txt: 3096) +.hahade.com/tpl/.*\.html +# ||haha.mx/upload/data/list_sidebar_ (easylistchina.txt: 3095) +.haha.mx/upload/data/list_sidebar_ +# ||haha.mx/upload/data/detail_ (easylistchina.txt: 3094) +.haha.mx/upload/data/detail_ +# ||haha.mx/images/market/ (easylistchina.txt: 3093) +.haha.mx/images/market/ +# ||haha.mx/images/banner/vipp.jpg (easylistchina.txt: 3092) +.haha.mx/images/banner/vipp\.jpg +# ||haha.mx/images/banner/tmall11.png (easylistchina.txt: 3091) +.haha.mx/images/banner/tmall11\.png +# ||haha.mx/images/banner/jd.jpg (easylistchina.txt: 3090) +.haha.mx/images/banner/jd\.jpg +# ||hackp.com/xiaojiu/ (easylistchina.txt: 3089) +.hackp.com/xiaojiu/ +# ||hackp.com/wz/ (easylistchina.txt: 3088) +.hackp.com/wz/ +# ||hacken.cc/file/ads/ (easylistchina.txt: 3087) +.hacken.cc/file/ads/ +# ||hackbase.com/vip/topbanner.html (easylistchina.txt: 3086) +.hackbase.com/vip/topbanner\.html +# ||hackbase.com/2009/bingdun2009.jpg (easylistchina.txt: 3085) +.hackbase.com/2009/bingdun2009\.jpg +# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina.txt: 3084) +.gzdaily.dayoo.com/tpl/banner.*\.swf +# ||gzcol.com/uploads/ad/ (easylistchina.txt: 3083) +.gzcol.com/uploads/ad/ +# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina.txt: 3082) +.gz.xinhuanet.com/2012image/mt\.swf +# ||gywb.cn/gggl/ (easylistchina.txt: 3081) +.gywb.cn/gggl/ +# ||gywb.cn/cs_mulu/ (easylistchina.txt: 3080) +.gywb.cn/cs_mulu/ +# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina.txt: 3079) +.gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09\.jpg +# ||gxorg.com/index.php?m=poster& (easylistchina.txt: 3078) +.gxorg.com/index\.php\?m=poster& +# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina.txt: 3077) +.gxnews.com.cn/clientscript/index_duilian_ +# ||gxnews.com.cn/cache/wwwads.js (easylistchina.txt: 3076) +.gxnews.com.cn/cache/wwwads\.js +# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina.txt: 3075) +.gx.xinhuanet.com/images2007/banner\.htm +# ||guyizhou.cn/temp/top_banner_ (easylistchina.txt: 3074) +.guyizhou.cn/temp/top_banner_ +# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina.txt: 3073) +.gusuwang.com/ymsextweb/javascript/gs +# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina.txt: 3072) +.gusuwang.com/ymsextweb/images/index/ist_t\.jpg +# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina.txt: 3071) +.gusuwang.com/ymsextweb/fullggw/ +# ||gusuwang.com/api/gsw_ (easylistchina.txt: 3070) +.gusuwang.com/api/gsw_ +# ||guqu.net/Cooperate/ (easylistchina.txt: 3069) +.guqu.net/Cooperate/ +# ||guokr.com/baidu-cbjs/ (easylistchina.txt: 3068) +.guokr.com/baidu-cbjs/ +# ||guofs.com/images/you.js (easylistchina.txt: 3067) +.guofs.com/images/you\.js +# ||guofs.com/images/578-60.gif (easylistchina.txt: 3066) +.guofs.com/images/578-60\.gif +# ||guitarchina.com/1/ww2014 (easylistchina.txt: 3065) +.guitarchina.com/1/ww2014 +# ||guess.h.qhimg.com^ (easylistchina.txt: 3064) +.guess.h.qhimg.com +# ||gucheng.com/2015/z4/ (easylistchina.txt: 3063) +.gucheng.com/2015/z4/ +# ||gucheng.com/2015/mst/ (easylistchina.txt: 3062) +.gucheng.com/2015/mst/ +# ||guahao.com/iwant/ads? (easylistchina.txt: 3061) +.guahao.com/iwant/ads\? +# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina.txt: 3060) +.gtv.com.cn/public/images/2014-06/15/110_89471402801935\.jpg +# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina.txt: 3059) +.gtv.com.cn/public/images/2014-03/20/71_12931395286234\.jpg +# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina.txt: 3058) +.gtv.com.cn/public/images/2014-01/26/97_76841390730340\.jpg +# ||gtimg.com^*/adv/ (easylistchina.txt: 3057) +.gtimg.com/.*/adv/ +# ||gtimg.com^*/ad/ (easylistchina.txt: 3056) +.gtimg.com/.*/ad/ +# ||gtimg.com/www/test/300_250.swf (easylistchina.txt: 3055) +.gtimg.com/www/test/300_250\.swf +# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina.txt: 3054) +.gtimg.com/web/default_fodders/300x600_ +# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina.txt: 3053) +.gtimg.com/v/pics/hv1/88/83/1734/112774603\.jpg +# ||gtimg.com/qqlive/ (easylistchina.txt: 3052) +.gtimg.com/qqlive/ +# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina.txt: 3051) +.gtimg.com/newsapp_ls/0/27161189/0 +# ||gtimg.com/news/news/2014ad/ (easylistchina.txt: 3050) +.gtimg.com/news/news/2014ad/ +# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina.txt: 3049) +.gtimg.com/ent/final2009/dp_tebu_logo\.png +# ||gtimg.com/comic/richmedia/ (easylistchina.txt: 3048) +.gtimg.com/comic/richmedia/ +# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina.txt: 3047) +.gtimg.com/comic/pics/hv1/29/74/1631/106074674\.jpg +# ||gter.net^*adv (easylistchina.txt: 3046) +.gter.net/.*adv +# ||gt.yy.com^ (easylistchina.txt: 3045) +.gt.yy.com +# ||gsspcln.jp^ (easylistchina.txt: 3044) +.gsspcln.jp +# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina.txt: 3043) +.gscn.com.cn/pic/0/10/34/27/10342786_994137\.gif +# ||gscn.com.cn/home/images/advscroll.js (easylistchina.txt: 3042) +.gscn.com.cn/home/images/advscroll\.js +# ||groupa.onlylady.com^ (easylistchina.txt: 3041) +.groupa.onlylady.com +# ||greenxiazai.com/jsgreen/ (easylistchina.txt: 3040) +.greenxiazai.com/jsgreen/ +# ||greenxiazai.com/greenjs/ (easylistchina.txt: 3039) +.greenxiazai.com/greenjs/ +# ||greenxf.com/js/main.js (easylistchina.txt: 3038) +.greenxf.com/js/main\.js +# ||greenxf.com/img/46860.gif (easylistchina.txt: 3037) +.greenxf.com/img/46860\.gif +# ||greenxf.com/asp/ (easylistchina.txt: 3036) +.greenxf.com/asp/ +# ||greatwuyi.com/tplimg/1.files/ad (easylistchina.txt: 3035) +.greatwuyi.com/tplimg/1\.files/ad +# ||gqgc.sz.zj.cn^ (easylistchina.txt: 3034) +.gqgc.sz.zj.cn +# ||gpxz.com/skins/gupuxiazai/soft (easylistchina.txt: 3033) +.gpxz.com/skins/gupuxiazai/soft +# ||gpxz.com/js2/ (easylistchina.txt: 3032) +.gpxz.com/js2/ +# ||gpsdlm.com/images/lm2.jpg (easylistchina.txt: 3031) +.gpsdlm.com/images/lm2\.jpg +# ||gpsdlm.com/images/jdyigou.jpg (easylistchina.txt: 3030) +.gpsdlm.com/images/jdyigou\.jpg +# ||gpcxw.com/file/js/img/*.gif (easylistchina.txt: 3029) +.gpcxw.com/file/js/img/.*\.gif +# ||goyeah.com/homepage.html (easylistchina.txt: 3027) +.goyeah.com/homepage\.html +# ||goto.www.iciba.com^ (easylistchina.txt: 3026) +.goto.www.iciba.com +# ||gope.cn/1commonfile/guidebar/ (easylistchina.txt: 3025) +.gope.cn/1commonfile/guidebar/ +# ||gope.cn/1commonfile/*.swf (easylistchina.txt: 3024) +.gope.cn/1commonfile/.*\.swf +# ||gope.cn/1commonfile/*.htm (easylistchina.txt: 3023) +.gope.cn/1commonfile/.*\.htm +# ||gope.cn/1commonfile/*.gif (easylistchina.txt: 3022) +.gope.cn/1commonfile/.*\.gif +# ||goods.tudou.com/api? (easylistchina.txt: 3020) +.goods.tudou.com/api\? +# ||good.gd/js/loadpopads.aspx (easylistchina.txt: 3019) +.good.gd/js/loadpopads\.aspx +# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina.txt: 3018) +.good.gd/good\.gd/js/downloadPrograss\.js +# ||gohubei.com/img/zhuna.gif (easylistchina.txt: 3017) +.gohubei.com/img/zhuna\.gif +# ||gohubei.com/img/tuniu.jpg (easylistchina.txt: 3016) +.gohubei.com/img/tuniu\.jpg +# ||go2tutor.com/lifebox.asp (easylistchina.txt: 3015) +.go2tutor.com/lifebox\.asp +# ||go.hangzhou.com.cn^ (easylistchina.txt: 3014) +.go.hangzhou.com.cn +# ||gmw.cn/banner/ (easylistchina.txt: 3013) +.gmw.cn/banner/ +# ||gminfo.cn/qds/gmszyy.swf (easylistchina.txt: 3012) +.gminfo.cn/qds/gmszyy\.swf +# ||gminfo.cn/js/ad- (easylistchina.txt: 3011) +.gminfo.cn/js/ad- +# ||gminfo.cn/flash/ (easylistchina.txt: 3010) +.gminfo.cn/flash/ +# ||gmbuluo.com/js/yxj (easylistchina.txt: 3009) +.gmbuluo.com/js/yxj +# ||gmbuluo.com/js/shouye (easylistchina.txt: 3008) +.gmbuluo.com/js/shouye +# ||gmbuluo.com/js/liebiao (easylistchina.txt: 3007) +.gmbuluo.com/js/liebiao +# ||gmbbk.cn/jj/ (easylistchina.txt: 3006) +.gmbbk.cn/jj/ +# ||gmbbk.cn/img/top.js (easylistchina.txt: 3005) +.gmbbk.cn/img/top\.js +# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina.txt: 3004) +.global.tianyaui.com/global/wizard/js/wizard\.js +# ||github.io/2048/full/meta/cmpay.gif (easylistchina.txt: 3003) +.github.io/2048/full/meta/cmpay\.gif +# ||gimhoy.com/201404/cute.jpg (easylistchina.txt: 3002) +.gimhoy.com/201404/cute\.jpg +# ||gigacircle.com/images/*720X85. (easylistchina.txt: 3001) +.gigacircle.com/images/.*720X85\. +# ||gigacircle.com/images/*250X250. (easylistchina.txt: 3000) +.gigacircle.com/images/.*250X250\. +# ||ghostxp3.com/xf.js (easylistchina.txt: 2999) +.ghostxp3.com/xf\.js +# ||ghoffice.com/bbs/js/float.js (easylistchina.txt: 2998) +.ghoffice.com/bbs/js/float\.js +# ||ghjie.com/JS/youcegg.js (easylistchina.txt: 2997) +.ghjie.com/JS/youcegg\.js +# ||ghjie.com/images/2012/images/bg (easylistchina.txt: 2996) +.ghjie.com/images/2012/images/bg +# ||ggyq.xdkb.net^ (easylistchina.txt: 2995) +.ggyq.xdkb.net +# ||ggw.watertu.com^ (easylistchina.txt: 2994) +.ggw.watertu.com +# ||ggw.gusuwang.com^ (easylistchina.txt: 2993) +.ggw.gusuwang.com +# ||ggg.zj.com^ (easylistchina.txt: 2992) +.ggg.zj.com +# ||gg163.net/js/gg163ad.js (easylistchina.txt: 2991) +.gg163.net/js/gg163ad\.js +# ||gg163.net/js/163bbsad.js (easylistchina.txt: 2990) +.gg163.net/js/163bbsad\.js +# ||gg163.net/gpimages/ad33.gif (easylistchina.txt: 2989) +.gg163.net/gpimages/ad33\.gif +# ||gg163.net/gpimages/22.gif (easylistchina.txt: 2988) +.gg163.net/gpimages/22\.gif +# ||gg163.net/2015ad/ (easylistchina.txt: 2987) +.gg163.net/2015ad/ +# ||gg163.net/2014ad/ (easylistchina.txt: 2986) +.gg163.net/2014ad/ +# ||gg163.net/2013ad/ (easylistchina.txt: 2985) +.gg163.net/2013ad/ +# ||gg163.net/2012ad/ (easylistchina.txt: 2984) +.gg163.net/2012ad/ +# ||gg.yxdown.com^ (easylistchina.txt: 2983) +.gg.yxdown.com +# ||gg.sonhoo.com^ (easylistchina.txt: 2982) +.gg.sonhoo.com +# ||gg.kugou.com^ (easylistchina.txt: 2981) +.gg.kugou.com +# ||gg.gao7.com^ (easylistchina.txt: 2980) +.gg.gao7.com +# ||gg.cs090.com^ (easylistchina.txt: 2979) +.gg.cs090.com +# ||gg.bxwx5.com^ (easylistchina.txt: 2978) +.gg.bxwx5.com +# ||gg.18183.com^ (easylistchina.txt: 2977) +.gg.18183.com +# ||gg.0598yu.com^ (easylistchina.txt: 2976) +.gg.0598yu.com +# ||gg-art.com/anod/ (easylistchina.txt: 2975) +.gg-art.com/anod/ +# ||gfan.com/press/ (easylistchina.txt: 2974) +.gfan.com/press/ +# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina.txt: 2973) +.gfan.com/plugin\.php\?id=gfan_viewpic:gfan_adView +# ||gezila.com/gimg/yinsu (easylistchina.txt: 2972) +.gezila.com/gimg/yinsu +# ||gexing.com/j/??zmask.js,easing.js? (easylistchina.txt: 2971) +.gexing.com/j/\?\?zmask\.js,easing\.js\? +# ||gexing.com/api/api_get_tankuang.php? (easylistchina.txt: 2970) +.gexing.com/api/api_get_tankuang\.php\? +# ||gexing.com.cn^*/images/jr.jpg (easylistchina.txt: 2969) +.gexing.com.cn/.*/images/jr\.jpg +# ||gexing.com.cn^*/images/1a.jpg (easylistchina.txt: 2968) +.gexing.com.cn/.*/images/1a\.jpg +# ||get.766.com^ (easylistchina.txt: 2967) +.get.766.com +# ||geiliwx.com/read/ad$script (easylistchina.txt: 2966) +.geiliwx.com/read/ad +# ||gdt.qq.com^ (easylistchina.txt: 2965) +.gdt.qq.com +# ||gdmm.com/Public/config/Couplet/Index (easylistchina.txt: 2964) +.gdmm.com/Public/config/Couplet/Index +# ||gdmm.com/mybt/ (easylistchina.txt: 2963) +.gdmm.com/mybt/ +# ||gdmm.com/js/images/z.swf (easylistchina.txt: 2962) +.gdmm.com/js/images/z\.swf +# ||gdmm.com/js/images/y.swf (easylistchina.txt: 2961) +.gdmm.com/js/images/y\.swf +# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina.txt: 2960) +.gdaily.org/wp-content/uploads/an-temp/ +# ||gd.sina.com.cn/iframe/22/ (easylistchina.txt: 2959) +.gd.sina.com.cn/iframe/22/ +# ||gd.ct10000.com/js/ecssstat.js (easylistchina.txt: 2958) +.gd.ct10000.com/js/ecssstat\.js +# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina.txt: 2957) +.gaofen.com/source/plugin/gaofen_ad/ +# ||ganjituiguang.ganji.com^ (easylistchina.txt: 2956) +.ganjituiguang.ganji.com +# ||ganjistatic1.com^*/adm/ (easylistchina.txt: 2955) +.ganjistatic1.com/.*/adm/ +# ||ganjistatic1.com^*-banner- (easylistchina.txt: 2954) +.ganjistatic1.com/.*-banner- +# ||ganji.com/content.php (easylistchina.txt: 2953) +.ganji.com/content\.php +# ||ganbingw.com/images/top960.jpg (easylistchina.txt: 2952) +.ganbingw.com/images/top960\.jpg +# ||gamme.com.tw/ga/ (easylistchina.txt: 2951) +.gamme.com.tw/ga/ +# ||games.ifeng.com^$subdocument (easylistchina.txt: 2950) +.games.ifeng.com +# ||gamersky.com^*.htm$subdocument (easylistchina.txt: 2949) +.gamersky.com/.*\.htm +# ||gamersky.com/piaofu*/ (easylistchina.txt: 2948) +.gamersky.com/piaofu.*/ +# ||gamersky.com/img/ (easylistchina.txt: 2947) +.gamersky.com/img/ +# ||gamersky.com/gsinc/content_bg.js (easylistchina.txt: 2946) +.gamersky.com/gsinc/content_bg\.js +# ||gamersky.com/g/gamerskyflash.js (easylistchina.txt: 2945) +.gamersky.com/g/gamerskyflash\.js +# ||gamersky.com/bgpic/ (easylistchina.txt: 2944) +.gamersky.com/bgpic/ +# ||gamefy.cn/cookiead.php (easylistchina.txt: 2943) +.gamefy.cn/cookiead\.php +# ||gameapps.hk/js/determine_page_ (easylistchina.txt: 2942) +.gameapps.hk/js/determine_page_ +# ||gameapps.hk/js/content_ (easylistchina.txt: 2941) +.gameapps.hk/js/content_ +# ||gameapps.hk/images/apps/ad/ (easylistchina.txt: 2940) +.gameapps.hk/images/apps/ad/ +# ||game.466.com^$third-party (easylistchina.txt: 2939) +.game.466.com +# ||gagays.com/site/ad300x300 (easylistchina.txt: 2938) +.gagays.com/site/ad300x300 +# ||g4.beva.com/data-js- (easylistchina.txt: 2937) +.g4.beva.com/data-js- +# ||g2.ousns.net^ (easylistchina.txt: 2936) +.g2.ousns.net +# ||g1080.com/js/cache_bg.js (easylistchina.txt: 2935) +.g1080.com/js/cache_bg\.js +# ||g1.0573ren.com^ (easylistchina.txt: 2934) +.g1.0573ren.com +# ||g.rexian.net.cn/js/ (easylistchina.txt: 2933) +.g.rexian.net.cn/js/ +# ||g.ousns.net^ (easylistchina.txt: 2932) +.g.ousns.net +# ||g.jinti.com/f/a/a (easylistchina.txt: 2931) +.g.jinti.com/f/a/a +# ||g.hsw.cn^ (easylistchina.txt: 2930) +.g.hsw.cn +# ||g.gxorg.com^ (easylistchina.txt: 2929) +.g.gxorg.com +# ||g.cnzz.cn/Static/js/*- (easylistchina.txt: 2928) +.g.cnzz.cn/Static/js/.*- +# ||g.163.com/*&affiliate= (easylistchina.txt: 2927) +.g.163.com/.*&affiliate= +# ||fzpchome.com/txt/$script (easylistchina.txt: 2926) +.fzpchome.com/txt/ +# ||fzlol.com/images/$script (easylistchina.txt: 2925) +.fzlol.com/images/ +# ||fzbm.com/bbs/static/js/bma.js (easylistchina.txt: 2924) +.fzbm.com/bbs/static/js/bma\.js +# ||fxxz.com/show/ (easylistchina.txt: 2923) +.fxxz.com/show/ +# ||fxpan.com/sina.jpg (easylistchina.txt: 2922) +.fxpan.com/sina\.jpg +# ||fx678.com/proxy (easylistchina.txt: 2921) +.fx678.com/proxy +# ||fx678.com/js/baidu_ (easylistchina.txt: 2920) +.fx678.com/js/baidu_ +# ||fx114.net/images/bangbaotao.jpg (easylistchina.txt: 2919) +.fx114.net/images/bangbaotao\.jpg +# ||fwxgx.com/u/ad/show_type/ (easylistchina.txt: 2918) +.fwxgx.com/u/ad/show_type/ +# ||funtude.com/include/inc/ad_data. (easylistchina.txt: 2917) +.funtude.com/include/inc/ad_data\. +# ||func.tw/image/func2.png (easylistchina.txt: 2916) +.func.tw/image/func2\.png +# ||fun.ynet.com^ (easylistchina.txt: 2915) +.fun.ynet.com +# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina.txt: 2914) +.fumanhua.com/template/.*/images/g_js/ +# ||fullyu.com/js-lib/jquery.modal. (easylistchina.txt: 2913) +.fullyu.com/js-lib/jquery\.modal\. +# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina.txt: 2912) +.fulitie.org/wp-content/themes/D8_4\.0/js/guanbi-no\.js +# ||fulidang.com/ads/ (easylistchina.txt: 2911) +.fulidang.com/ads/ +# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina.txt: 2910) +.fububu.com/zb_users/THEME/LuSongSong/style/ads/ +# ||ftchinese.com/m/marketing/ad.html (easylistchina.txt: 2909) +.ftchinese.com/m/marketing/ad\.html +# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina.txt: 2908) +.fspcdn.com/main/fis/js/v11/play/pop-ad_ +# ||fsehome.com/images/ad_tan.js (easylistchina.txt: 2907) +.fsehome.com/images/ad_tan\.js +# ||freep.cn/lianjie/qqtongji.js (easylistchina.txt: 2906) +.freep.cn/lianjie/qqtongji\.js +# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina.txt: 2905) +.freep.cn/3tb_1408171239008bu7512293\.jpg +# ||free9.net/myc/myc.js (easylistchina.txt: 2904) +.free9.net/myc/myc\.js +# ||free9.net/images/pic/dhc2013.gif (easylistchina.txt: 2903) +.free9.net/images/pic/dhc2013\.gif +# ||fragment.firefoxchina.cn/html/ (easylistchina.txt: 2902) +.fragment.firefoxchina.cn/html/ +# ||fpdisplay.com/upload/n_ad/ (easylistchina.txt: 2901) +.fpdisplay.com/upload/n_ad/ +# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina.txt: 2900) +.fpdisplay.com/templates/default/js/palyflash_ +# ||fpdisplay.com/images/*960X30. (easylistchina.txt: 2899) +.fpdisplay.com/images/.*960X30\. +# ||fpdisplay.com/images/*960X230. (easylistchina.txt: 2898) +.fpdisplay.com/images/.*960X230\. +# ||forum.techweb.com.cn/advtcnt.php (easylistchina.txt: 2897) +.forum.techweb.com.cn/advtcnt\.php +# ||forum.51nb.com/images/ (easylistchina.txt: 2896) +.forum.51nb.com/images/ +# ||focus.cn/common/js/adm (easylistchina.txt: 2895) +.focus.cn/common/js/adm +# ||fmdisk.com/templates/yythems/images/qq (easylistchina.txt: 2894) +.fmdisk.com/templates/yythems/images/qq +# ||fmdisk.com/ima/ (easylistchina.txt: 2893) +.fmdisk.com/ima/ +# ||float.sandai.net^$object-subrequest (easylistchina.txt: 2892) +.float.sandai.net +# ||flighty.cn/templets/images/2345- (easylistchina.txt: 2891) +.flighty.cn/templets/images/2345- +# ||flighty.cn/images/kiees.jpg (easylistchina.txt: 2890) +.flighty.cn/images/kiees\.jpg +# ||flash8.net/flash8_a_d_s/ (easylistchina.txt: 2889) +.flash8.net/flash8_a_d_s/ +# ||flash.mycar168.com/data/js/ (easylistchina.txt: 2888) +.flash.mycar168.com/data/js/ +# ||fjlyfdc.com.cn/hxhad/ (easylistchina.txt: 2887) +.fjlyfdc.com.cn/hxhad/ +# ||fj007.com/money/ (easylistchina.txt: 2886) +.fj007.com/money/ +# ||fj.sina.com.cn/iframe/63/ (easylistchina.txt: 2885) +.fj.sina.com.cn/iframe/63/ +# ||firefoxchina.cn^*_topbanner (easylistchina.txt: 2884) +.firefoxchina.cn/.*_topbanner +# ||firefoxchina.cn^*_couplet (easylistchina.txt: 2883) +.firefoxchina.cn/.*_couplet +# ||firefoxchina.cn^*49560. (easylistchina.txt: 2882) +.firefoxchina.cn/.*49560\. +# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina.txt: 2881) +.firefoxchina.cn/res/js/fchina_video-min\.js +# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina.txt: 2880) +.firefoxchina.cn/2014/.*_foxphone\.png +# ||files.webcars.com.cn^*.swf?link= (easylistchina.txt: 2879) +.files.webcars.com.cn/.*\.swf\?link= +# ||files.nyaa.se/a*.$image (easylistchina.txt: 2878) +.files.nyaa.se/a.*\. +# ||files.nyaa.eu/a*.$image (easylistchina.txt: 2877) +.files.nyaa.eu/a.*\. +# ||file.ws.126.net/house/nj/*.swf (easylistchina.txt: 2876) +.file.ws.126.net/house/nj/.*\.swf +# ||file.ws.126.net/house/jn/*.swf (easylistchina.txt: 2875) +.file.ws.126.net/house/jn/.*\.swf +# ||file.ws.126.net/house/*/js/tc_ (easylistchina.txt: 2874) +.file.ws.126.net/house/.*/js/tc_ +# ||file.shmet.com/images/ (easylistchina.txt: 2873) +.file.shmet.com/images/ +# ||file.cloud.sogou.com/*/superzone/ (easylistchina.txt: 2872) +.file.cloud.sogou.com/.*/superzone/ +# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina.txt: 2871) +.fhm.com.tw/js/colorbox/jquery\.colorbox\.js +# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina.txt: 2870) +.fhm.com.tw/fhm_upload/full_ad_ +# ||fg.cc/logo/xierguanggao. (easylistchina.txt: 2869) +.fg.cc/logo/xierguanggao\. +# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina.txt: 2868) +.feng.com/aodoo3/view\.php\?what=zone:16& +# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina.txt: 2867) +.feng.com/aodoo3/view\.php\?what=zone:13& +# ||feihu.la/Runtime/js/vod (easylistchina.txt: 2866) +.feihu.la/Runtime/js/vod +# ||feedss.com/uploadfile/ad/ (easylistchina.txt: 2865) +.feedss.com/uploadfile/ad/ +# ||fdc.my0511.com^$script (easylistchina.txt: 2864) +.fdc.my0511.com +# ||fdc.com.cn^*adv (easylistchina.txt: 2863) +.fdc.com.cn/.*adv +# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina.txt: 2862) +.fdc.com.cn/cms/js/home_js/.*_move_ +# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina.txt: 2861) +.fdc.com.cn/cms/js/bbs/dl\.js +# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina.txt: 2860) +.fdc.com.cn/cms/js/bbs/bbstonglan\.js +# ||faxingw.cn/js/wenba.js (easylistchina.txt: 2859) +.faxingw.cn/js/wenba\.js +# ||faxingw.cn/js/jiafa (easylistchina.txt: 2858) +.faxingw.cn/js/jiafa +# ||faxingw.cn/js/detailgcbox.js (easylistchina.txt: 2857) +.faxingw.cn/js/detailgcbox\.js +# ||faxingw.cn/js/*gg (easylistchina.txt: 2856) +.faxingw.cn/js/.*gg +# ||faxingw.cn/js/*ad (easylistchina.txt: 2855) +.faxingw.cn/js/.*ad +# ||faxingw.cn/js/*0 (easylistchina.txt: 2854) +.faxingw.cn/js/.*0 +# ||fantizi5.com/js/baiduad (easylistchina.txt: 2853) +.fantizi5.com/js/baiduad +# ||fantizi5.com/js/ad*.js (easylistchina.txt: 2852) +.fantizi5.com/js/ad.*\.js +# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina.txt: 2851) +.fanhaobao.net/wp-content/themes/xiu/js/single\.js +# ||fang99.com/JavaScript/advjs/ (easylistchina.txt: 2850) +.fang99.com/JavaScript/advjs/ +# ||fang.com/afp/door/ (easylistchina.txt: 2849) +.fang.com/afp/door/ +# ||fancai.com/Images/2014*.gif (easylistchina.txt: 2848) +.fancai.com/Images/2014.*\.gif +# ||familydoctor.com.cn/aiframe/ (easylistchina.txt: 2847) +.familydoctor.com.cn/aiframe/ +# ||faidns.com/image/site/faiscoAd/ (easylistchina.txt: 2846) +.faidns.com/image/site/faiscoAd/ +# ||ezprice.com.tw/js/*_ysm_ (easylistchina.txt: 2845) +.ezprice.com.tw/js/.*_ysm_ +# ||ezprice.com.tw/ezysm/ (easylistchina.txt: 2844) +.ezprice.com.tw/ezysm/ +# ||ezaozi.com/detail/*.js (easylistchina.txt: 2843) +.ezaozi.com/detail/.*\.js +# ||eyuyao.com/yyad/ (easylistchina.txt: 2842) +.eyuyao.com/yyad/ +# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina.txt: 2841) +.eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash\.jpg +# ||ettoday.net^*/ad/ (easylistchina.txt: 2840) +.ettoday.net/.*/ad/ +# ||ettoday.net/events/ad-tab/ (easylistchina.txt: 2839) +.ettoday.net/events/ad-tab/ +# ||ettoday.net/banners/ (easylistchina.txt: 2838) +.ettoday.net/banners/ +# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina.txt: 2837) +.etnet.com.hk/www/tc/stocks/ads/ +# ||etnet.com.hk/ad2014/ (easylistchina.txt: 2836) +.etnet.com.hk/ad2014/ +# ||etf88.com/swf/ (easylistchina.txt: 2835) +.etf88.com/swf/ +# ||etf88.com/jjb/*_ad$script (easylistchina.txt: 2834) +.etf88.com/jjb/.*_ad +# ||etest8.com/subcatejs/158/utitle158.js (easylistchina.txt: 2833) +.etest8.com/subcatejs/158/utitle158\.js +# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina.txt: 2832) +.etest8.com/subcatejs/158/tg158_330x190\.js +# ||etest8.com/style/full_floating.js (easylistchina.txt: 2831) +.etest8.com/style/full_floating\.js +# ||etest8.com/style/950x90_2.js (easylistchina.txt: 2830) +.etest8.com/style/950x90_2\.js +# ||etdown.net/images/ad1 (easylistchina.txt: 2829) +.etdown.net/images/ad1 +# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina.txt: 2828) +.eprice.com.tw/js/swfobject-2\.3\.js +# ||eprice.com.tw/img/tw_m/ad/ (easylistchina.txt: 2827) +.eprice.com.tw/img/tw_m/ad/ +# ||eprice.com.tw/img/dis/file/ (easylistchina.txt: 2826) +.eprice.com.tw/img/dis/file/ +# ||eprice.cn/image/upload/ad/ (easylistchina.txt: 2825) +.eprice.cn/image/upload/ad/ +# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina.txt: 2824) +.epinv.com/wp-content/themes/ep/tu/yinshu\.gif +# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina.txt: 2823) +.epinv.com/wp-content/themes/ep/tu/.*250\.js +# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina.txt: 2822) +.epinv.com/wp-content/themes/ep/js/single\.js +# ||eol.cn/js/global/jQuery_ads.js (easylistchina.txt: 2821) +.eol.cn/js/global/jQuery_ads\.js +# ||eol.cn/js/eol/ (easylistchina.txt: 2820) +.eol.cn/js/eol/ +# ||entry.baidu.com/rp/home? (easylistchina.txt: 2819) +.entry.baidu.com/rp/home\? +# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina.txt: 2818) +.enshi.cn/userfiles/esrb/ +# ||enread.com/img/185-50.gif (easylistchina.txt: 2817) +.enread.com/img/185-50\.gif +# ||enjoy101.org/hk_rm_tab_ (easylistchina.txt: 2816) +.enjoy101.org/hk_rm_tab_ +# ||enet.com.cn/mem_str_zoneid= (easylistchina.txt: 2815) +.enet.com.cn/mem_str_zoneid= +# ||enet.com.cn/home/v6/includes/adv/ (easylistchina.txt: 2814) +.enet.com.cn/home/v6/includes/adv/ +# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina.txt: 2813) +.enet.com.cn/eschool/includes/gdtup/tu6/slide\.js +# ||ems183.cn/images/kiees (easylistchina.txt: 2812) +.ems183.cn/images/kiees +# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina.txt: 2811) +.embest-tech.cn/js/jquery\.blockUI\.js +# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina.txt: 2810) +.emarketing.bot.com.tw/output/vi\.aspx\? +# ||elecfans.com/images2012/pcb.gif (easylistchina.txt: 2809) +.elecfans.com/images2012/pcb\.gif +# ||elecfans.com/baidu_m.html (easylistchina.txt: 2808) +.elecfans.com/baidu_m\.html +# ||eeyy.com/uploadfile/img/beitou (easylistchina.txt: 2807) +.eeyy.com/uploadfile/img/beitou +# ||eeyy.com/templates/js/other/yxj.js (easylistchina.txt: 2806) +.eeyy.com/templates/js/other/yxj\.js +# ||eeyy.com/otherhtml/js/ad650.js (easylistchina.txt: 2805) +.eeyy.com/otherhtml/js/ad650\.js +# ||eeee42.com/Ads/ (easylistchina.txt: 2804) +.eeee42.com/Ads/ +# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina.txt: 2803) +.eduuu.com/gaokao/2015/bannerDaili\.js +# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina.txt: 2802) +.educity.cn/self_text/text_disp\.aspx\?id= +# ||edu24ol.com/web_news/js/1100.jpg (easylistchina.txt: 2801) +.edu24ol.com/web_news/js/1100\.jpg +# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina.txt: 2800) +.edu24ol.com/web_news/images/cj_news\.jpg +# ||edu03.com/data/js.php?id= (easylistchina.txt: 2799) +.edu03.com/data/js\.php\?id= +# ||ecmb.bdimg.com^ (easylistchina.txt: 2798) +.ecmb.bdimg.com +# ||ecma.bdimg.com^ (easylistchina.txt: 2797) +.ecma.bdimg.com +# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina.txt: 2796) +.ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb\.jpg +# ||ebrun.com/jfile/position/js/*.js (easylistchina.txt: 2795) +.ebrun.com/jfile/position/js/.*\.js +# ||ebrun.com/jfile/lagou.js (easylistchina.txt: 2794) +.ebrun.com/jfile/lagou\.js +# ||ebp.renren.com^ (easylistchina.txt: 2793) +.ebp.renren.com +# ||ebiotrade.com/web_images/*.swf (easylistchina.txt: 2792) +.ebiotrade.com/web_images/.*\.swf +# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina.txt: 2791) +.ebiotrade.com/newsf/js/news_top_banner\.js +# ||ebiotrade.com/newsf/js/inpic.js (easylistchina.txt: 2790) +.ebiotrade.com/newsf/js/inpic\.js +# ||ebiotrade.com/jslibrary/js (easylistchina.txt: 2789) +.ebiotrade.com/jslibrary/js +# ||eat-travel.com.tw^$third-party (easylistchina.txt: 2788) +.eat-travel.com.tw +# ||eastmoney.com/js/headbiggg_ (easylistchina.txt: 2787) +.eastmoney.com/js/headbiggg_ +# ||eastlady.cn/cssjs/indextopad.js (easylistchina.txt: 2786) +.eastlady.cn/cssjs/indextopad\.js +# ||eastlady.cn/cssjs/indexgg.js (easylistchina.txt: 2785) +.eastlady.cn/cssjs/indexgg\.js +# ||eastlady.cn/cssjs/indexbaner (easylistchina.txt: 2784) +.eastlady.cn/cssjs/indexbaner +# ||eastday.com/k.js (easylistchina.txt: 2783) +.eastday.com/k\.js +# ||easou.com/online/banner/ (easylistchina.txt: 2782) +.easou.com/online/banner/ +# ||easou.com/brandImage/ad/ (easylistchina.txt: 2781) +.easou.com/brandImage/ad/ +# ||eap.enorth.com.cn^ (easylistchina.txt: 2780) +.eap.enorth.com.cn +# ||eap.big5.enorth.com.cn^ (easylistchina.txt: 2779) +.eap.big5.enorth.com.cn +# ||e399.com/html/ (easylistchina.txt: 2778) +.e399.com/html/ +# ||e23.cn/js/aaa.js (easylistchina.txt: 2777) +.e23.cn/js/aaa\.js +# ||e0575.com/pic/AD_ (easylistchina.txt: 2776) +.e0575.com/pic/AD_ +# ||e0575.com/attachment/image/20160106024028_1.jpg (easylistchina.txt: 2775) +.e0575.com/attachment/image/20160106024028_1\.jpg +# ||e0575.com/attachment/image/*_flash.swf (easylistchina.txt: 2774) +.e0575.com/attachment/image/.*_flash\.swf +# ||e0575.cn/js/float.js (easylistchina.txt: 2773) +.e0575.cn/js/float\.js +# ||e0575.cn/js/advBigPopup/ (easylistchina.txt: 2772) +.e0575.cn/js/advBigPopup/ +# ||e0575.cn/images/v1/dl/ (easylistchina.txt: 2771) +.e0575.cn/images/v1/dl/ +# ||e0421.com/css/js/tl (easylistchina.txt: 2770) +.e0421.com/css/js/tl +# ||e0421.com/css/js/bd (easylistchina.txt: 2769) +.e0421.com/css/js/bd +# ||e0421.com/*tj.js (easylistchina.txt: 2768) +.e0421.com/.*tj\.js +# ||e.yycqc.com^ (easylistchina.txt: 2767) +.e.yycqc.com +# ||e.hnr.cn/choose/view/ (easylistchina.txt: 2766) +.e.hnr.cn/choose/view/ +# ||e.changyan.sohu.com/dataService/getData? (easylistchina.txt: 2765) +.e.changyan.sohu.com/dataService/getData\? +# ||dzwww.com/k.js (easylistchina.txt: 2764) +.dzwww.com/k\.js +# ||dzwww.com/images/W020140912508314044024.gif (easylistchina.txt: 2763) +.dzwww.com/images/W020140912508314044024\.gif +# ||dzwww.com/data/js/asp_$script (easylistchina.txt: 2762) +.dzwww.com/data/js/asp_ +# ||dz320.com/desktop (easylistchina.txt: 2761) +.dz320.com/desktop +# ||dytt8.net/js2/ (easylistchina.txt: 2760) +.dytt8.net/js2/ +# ||dyhjw.com/dyhjw/left/new.js (easylistchina.txt: 2759) +.dyhjw.com/dyhjw/left/new\.js +# ||dyhjw.com/dyhjw/4.htm (easylistchina.txt: 2758) +.dyhjw.com/dyhjw/4\.htm +# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina.txt: 2757) +.dyhjw.com/dyhjw/1/3/471\.gif +# ||dyhjw.com/dyhjw/1.htm (easylistchina.txt: 2756) +.dyhjw.com/dyhjw/1\.htm +# ||dydh.tv/statics/js/tuku (easylistchina.txt: 2755) +.dydh.tv/statics/js/tuku +# ||dydh.tv/img/960.gif (easylistchina.txt: 2754) +.dydh.tv/img/960\.gif +# ||dydh.tv/img/384.gif (easylistchina.txt: 2753) +.dydh.tv/img/384\.gif +# ||dydh.tv/img/2345.gif (easylistchina.txt: 2752) +.dydh.tv/img/2345\.gif +# ||dy2018.com/dianyq/ (easylistchina.txt: 2751) +.dy2018.com/dianyq/ +# ||dxrc.cn/images/sy.gif (easylistchina.txt: 2750) +.dxrc.cn/images/sy\.gif +# ||dxrc.cn/ad1/ (easylistchina.txt: 2749) +.dxrc.cn/ad1/ +# ||dxlwwang.com/style/js/jeminMain. (easylistchina.txt: 2748) +.dxlwwang.com/style/js/jeminMain\. +# ||dxlwwang.com/style/images/bar (easylistchina.txt: 2747) +.dxlwwang.com/style/images/bar +# ||dxlwwang.com/contact_js/contact.js (easylistchina.txt: 2746) +.dxlwwang.com/contact_js/contact\.js +# ||dwstatic.com^*/p/livetip/ (easylistchina.txt: 2745) +.dwstatic.com/.*/p/livetip/ +# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina.txt: 2744) +.dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1\.js +# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina.txt: 2743) +.dwstatic.com/amkit/p/duya/special/list-notice/banner-app\.jpg +# ||dw138.com/a12345/ (easylistchina.txt: 2742) +.dw138.com/a12345/ +# ||dvser.china.com^ (easylistchina.txt: 2741) +.dvser.china.com +# ||dvs.china.com^ (easylistchina.txt: 2740) +.dvs.china.com +# ||dvbcn.com/yinyong/show/news_right_ (easylistchina.txt: 2739) +.dvbcn.com/yinyong/show/news_right_ +# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina.txt: 2738) +.dvbcn.com/uploadfile/2015/0202/20150202050700880\.png +# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina.txt: 2737) +.dvbcn.com/phpcms/templates/2012/news\.html +# ||dvbcn.com/index.php?m=poster& (easylistchina.txt: 2736) +.dvbcn.com/index\.php\?m=poster& +# ||dushiwenxue.com/add/ (easylistchina.txt: 2735) +.dushiwenxue.com/add/ +# ||dup.baidustatic.com/js/ (easylistchina.txt: 2734) +.dup.baidustatic.com/js/ +# ||duoxiai.com.cn/imgad/ (easylistchina.txt: 2733) +.duoxiai.com.cn/imgad/ +# ||duowan.com/s/yuanbao-entrance.js (easylistchina.txt: 2732) +.duowan.com/s/yuanbao-entrance\.js +# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina.txt: 2731) +.duowan.com/lgn/x/images/lgnadv/ +# ||duonao.tv/upload/image/*.swf (easylistchina.txt: 2730) +.duonao.tv/upload/image/.*\.swf +# ||duonao.tv/upload/image/*.gif (easylistchina.txt: 2729) +.duonao.tv/upload/image/.*\.gif +# ||duonao.tv//upload/$object-subrequest (easylistchina.txt: 2728) +# ||duba.com/static/v3/images/*.swf (easylistchina.txt: 2727) +.duba.com/static/v3/images/.*\.swf +# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina.txt: 2725) +.dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q\.jpg +# ||drupalchina.cn/sites/default/files/osforce- (easylistchina.txt: 2724) +.drupalchina.cn/sites/default/files/osforce- +# ||drupalchina.cn/sites/default/files/lagou- (easylistchina.txt: 2723) +.drupalchina.cn/sites/default/files/lagou- +# ||drupalchina.cn/sites/default/files/banner/ (easylistchina.txt: 2722) +.drupalchina.cn/sites/default/files/banner/ +# ||drivergenius.com/inc/driverwwwad.js (easylistchina.txt: 2721) +.drivergenius.com/inc/driverwwwad\.js +# ||dre8.com/tieba/zh-tb/so.html (easylistchina.txt: 2720) +.dre8.com/tieba/zh-tb/so\.html +# ||dqdm.com/js/dqdm/nei960 (easylistchina.txt: 2719) +.dqdm.com/js/dqdm/nei960 +# ||dpfile.com/pc/trip/*(600x400) (easylistchina.txt: 2718) +.dpfile.com/pc/trip/.*\(600x400\) +# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina.txt: 2717) +.doyo.cn/Tpl/web/Public/images/material/www_couplets/ +# ||downza.cn/html/skin/default/ad/ (easylistchina.txt: 2716) +.downza.cn/html/skin/default/ad/ +# ||downyi.com/tg/ (easylistchina.txt: 2715) +.downyi.com/tg/ +# ||downxia.com/zejs/soft (easylistchina.txt: 2714) +.downxia.com/zejs/soft +# ||downxia.com/zejs/ad (easylistchina.txt: 2713) +.downxia.com/zejs/ad +# ||downxia.com/haojs/ (easylistchina.txt: 2712) +.downxia.com/haojs/ +# ||downxia.com/dgjs/download.js (easylistchina.txt: 2711) +.downxia.com/dgjs/download\.js +# ||download.game.yy.com/resource/fodder/*.flv (easylistchina.txt: 2710) +.download.game.yy.com/resource/fodder/.*\.flv +# ||download.game.yy.com/crossdomain.xml (easylistchina.txt: 2709) +.download.game.yy.com/crossdomain\.xml +# ||downkr.com/statics/js/all.js (easylistchina.txt: 2708) +.downkr.com/statics/js/all\.js +# ||downcc.com/js/66060.gif (easylistchina.txt: 2707) +.downcc.com/js/66060\.gif +# ||downbank.cn/soft6/ (easylistchina.txt: 2706) +.downbank.cn/soft6/ +# ||downbank.cn/s1/ (easylistchina.txt: 2705) +.downbank.cn/s1/ +# ||downbank.cn/jkzm/ (easylistchina.txt: 2704) +.downbank.cn/jkzm/ +# ||down12.com/htmlg/D*.js (easylistchina.txt: 2703) +.down12.com/htmlg/D.*\.js +# ||down.it168.com/ggimg/ (easylistchina.txt: 2702) +.down.it168.com/ggimg/ +# ||down.admin5.com/z/ (easylistchina.txt: 2701) +.down.admin5.com/z/ +# ||douyutv.com/upload/signs/*.swf (easylistchina.txt: 2700) +.douyutv.com/upload/signs/.*\.swf +# ||douguo.net/upload/post/d/ (easylistchina.txt: 2699) +.douguo.net/upload/post/d/ +# ||doubleclick.tv002.com^ (easylistchina.txt: 2698) +.doubleclick.tv002.com +# ||doubanio.com^*/js/ad. (easylistchina.txt: 2697) +.doubanio.com/.*/js/ad\. +# ||douban.com^*/rda/$object-subrequest (easylistchina.txt: 2696) +.douban.com/.*/rda/ +# ||douban.com^*/fm_bgad.js (easylistchina.txt: 2695) +.douban.com/.*/fm_bgad\.js +# ||douban.com/view/dale-online/dale_ad (easylistchina.txt: 2694) +.douban.com/view/dale-online/dale_ad +# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina.txt: 2693) +.douban.com/\?unit=dale_movie_trailer_after_play& +# ||dota2.uuu9.com^$subdocument (easylistchina.txt: 2692) +.dota2.uuu9.com +# ||dospy.com/hezuo/ (easylistchina.txt: 2691) +.dospy.com/hezuo/ +# ||dongfangtai.com/js/duil.js (easylistchina.txt: 2690) +.dongfangtai.com/js/duil\.js +# ||domeng.cn/js/index_ (easylistchina.txt: 2689) +.domeng.cn/js/index_ +# ||dolphin.ftimg.net/s? (easylistchina.txt: 2688) +.dolphin.ftimg.net/s\? +# ||dol.tianya.cn/s?z=tianya&c= (easylistchina.txt: 2687) +.dol.tianya.cn/s\?z=tianya&c= +# ||doguo.com/api/vip_discount.js (easylistchina.txt: 2686) +.doguo.com/api/vip_discount\.js +# ||dodo8.com/inc/$script (easylistchina.txt: 2685) +.dodo8.com/inc/ +# ||docin.com/jsp_cn/ad/ (easylistchina.txt: 2684) +.docin.com/jsp_cn/ad/ +# ||docin.com/docin_adv/ (easylistchina.txt: 2683) +.docin.com/docin_adv/ +# ||docin.com/app/a_d/ (easylistchina.txt: 2682) +.docin.com/app/a_d/ +# ||doc88.com/assets/js/myad.js (easylistchina.txt: 2681) +.doc88.com/assets/js/myad\.js +# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina.txt: 2680) +.do189.com/zb_users/theme/duoyi/style/images/.*\.gif +# ||dnwx.com/pic_ad/ (easylistchina.txt: 2679) +.dnwx.com/pic_ad/ +# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina.txt: 2678) +.dnwx.com/pic/xitongba-468-2\.gif +# ||dnwx.com/pic/lg.gif (easylistchina.txt: 2677) +.dnwx.com/pic/lg\.gif +# ||dnwx.com/pic/*_978x (easylistchina.txt: 2676) +.dnwx.com/pic/.*_978x +# ||dnwx.com/pic/*-960x60. (easylistchina.txt: 2675) +.dnwx.com/pic/.*-960x60\. +# ||dnwx.com*/ad$image (easylistchina.txt: 2674) +.dnwx.com*./(.*/)?ad +# ||dnvod.eu/upload/image/*.swf (easylistchina.txt: 2673) +.dnvod.eu/upload/image/.*\.swf +# ||dnvod.eu/upload/image/*.gif (easylistchina.txt: 2672) +.dnvod.eu/upload/image/.*\.gif +# ||dnvod.eu//upload/$object-subrequest (easylistchina.txt: 2671) +# ||dnpz.net/templets/images/lunbo/ (easylistchina.txt: 2670) +.dnpz.net/templets/images/lunbo/ +# ||dngame.eu/dngcenter/default.aspx (easylistchina.txt: 2669) +.dngame.eu/dngcenter/default\.aspx +# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina.txt: 2668) +.dn-ttdaili.qbox.me/bdqb/ +# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina.txt: 2667) +.dn-cnodestatic.qbox.me/public/images/.*-banner- +# ||dmmfx.com.au/dmm-tag/ (easylistchina.txt: 2666) +.dmmfx.com.au/dmm-tag/ +# ||dmhua.net/js/bd_ (easylistchina.txt: 2665) +.dmhua.net/js/bd_ +# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina.txt: 2664) +.dmfans.net/template/haokandemanhhua/images/g_js/ +# ||dm530.com/pic/fgr/*.js (easylistchina.txt: 2663) +.dm530.com/pic/fgr/.*\.js +# ||dm456.com/m/ (easylistchina.txt: 2662) +.dm456.com/m/ +# ||dm456.com/install/loading.html (easylistchina.txt: 2661) +.dm456.com/install/loading\.html +# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina.txt: 2660) +.dl-l-tax.gov.cn/js/2floating\.js +# ||djwma.com/tc.js (easylistchina.txt: 2659) +.djwma.com/tc\.js +# ||djwma.com/qq.jpg (easylistchina.txt: 2658) +.djwma.com/qq\.jpg +# ||djwma.com/960*.gif (easylistchina.txt: 2657) +.djwma.com/960.*\.gif +# ||djwma.com/760*.gif (easylistchina.txt: 2656) +.djwma.com/760.*\.gif +# ||djkk.com/ak/ (easylistchina.txt: 2655) +.djkk.com/ak/ +# ||djccc.com/js/c*.js (easylistchina.txt: 2654) +.djccc.com/js/c.*\.js +# ||djccc.com/js/b*.js (easylistchina.txt: 2653) +.djccc.com/js/b.*\.js +# ||djccc.com/js/a*.js (easylistchina.txt: 2652) +.djccc.com/js/a.*\.js +# ||dj97.com/js/list_right_ (easylistchina.txt: 2651) +.dj97.com/js/list_right_ +# ||dj520.com/js/stj.js (easylistchina.txt: 2650) +.dj520.com/js/stj\.js +# ||divcss5.com/wy/top465.js (easylistchina.txt: 2649) +.divcss5.com/wy/top465\.js +# ||divcss5.com*/liping/ (easylistchina.txt: 2648) +.divcss5.com*./(.*/)?liping/ +# ||divcss5.com*/ibeifeng/ (easylistchina.txt: 2647) +.divcss5.com*./(.*/)?ibeifeng/ +# ||divcss5.com*/enkj/ (easylistchina.txt: 2646) +.divcss5.com*./(.*/)?enkj/ +# ||disk1.net/i/2/900%C3%9740.gif (easylistchina.txt: 2645) +.disk1.net/i/2/900%C3%9740\.gif +# ||discuzlab.com/data/attachment/portal/ (easylistchina.txt: 2644) +.discuzlab.com/data/attachment/portal/ +# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina.txt: 2643) +.discuz.gtimg.cn/cloud/scripts/discuz_tips\.js +# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina.txt: 2642) +.discuss.com.hk/dfp_forum\.php\?au=Discuss_Web_ +# ||dioguitar23.*/images/*.gif (easylistchina.txt: 2641) +.dioguitar23.*./(.*/)?images/.*\.gif +# ||dilidili.com/js/w*.js (easylistchina.txt: 2640) +.dilidili.com/js/w.*\.js +# ||dilidili.com/js/right (easylistchina.txt: 2639) +.dilidili.com/js/right +# ||dilidili.com/js/index.js (easylistchina.txt: 2638) +.dilidili.com/js/index\.js +# ||dig.chouti.com/advert (easylistchina.txt: 2637) +.dig.chouti.com/advert +# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina.txt: 2636) +.didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D\.png +# ||didamoe.com/js/xuanfu.js (easylistchina.txt: 2635) +.didamoe.com/js/xuanfu\.js +# ||didamoe.com/js/play_ (easylistchina.txt: 2634) +.didamoe.com/js/play_ +# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina.txt: 2633) +.dichan.com.au/newhouse/pinnacle/images/bcastr3\.swf +# ||diannaoxitong.com/js/*.gif (easylistchina.txt: 2632) +.diannaoxitong.com/js/.*\.gif +# ||dg.073img.com^ (easylistchina.txt: 2631) +.dg.073img.com +# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina.txt: 2630) +.dfcfw.com/js/tg/rightAd_v2\.js +# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina.txt: 2629) +.dfcfw.com/js/pinzhong/bdbottom_ +# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina.txt: 2628) +.dfcfw.com/js/pinzhong/bd_pz_side_ +# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina.txt: 2627) +.dfcfw.com/js/.*/emfloatmedia_ +# ||dfad.dfdaily.com^ (easylistchina.txt: 2626) +.dfad.dfdaily.com +# ||deyangs.com/img/ (easylistchina.txt: 2625) +.deyangs.com/img/ +# ||dexiazai.com/333.jpg (easylistchina.txt: 2624) +.dexiazai.com/333\.jpg +# ||dexiazai.com/222.jpg (easylistchina.txt: 2623) +.dexiazai.com/222\.jpg +# ||dexiazai.com/111.jpg (easylistchina.txt: 2622) +.dexiazai.com/111\.jpg +# ||der4545.com/ok/ (easylistchina.txt: 2621) +.der4545.com/ok/ +# ||demo.528500.com^*.swf (easylistchina.txt: 2620) +.demo.528500.com/.*\.swf +# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina.txt: 2619) +.dealmoon.com/upload/dealmoon_app\.jpg +# ||dealmoon.com/images/n/creditcard-160.png (easylistchina.txt: 2618) +.dealmoon.com/images/n/creditcard-160\.png +# ||dealmoon.com/hotdeals/ (easylistchina.txt: 2617) +.dealmoon.com/hotdeals/ +# ||dealmoon.com/data/app/banners/ (easylistchina.txt: 2616) +.dealmoon.com/data/app/banners/ +# ||de.as.pptv.com^ (easylistchina.txt: 2615) +.de.as.pptv.com +# ||ddooo.com/viewimg.asp?img= (easylistchina.txt: 2614) +.ddooo.com/viewimg\.asp\?img= +# ||ddooo.com/js/ (easylistchina.txt: 2613) +.ddooo.com/js/ +# ||ddooo.com/duoduo/ (easylistchina.txt: 2612) +.ddooo.com/duoduo/ +# ||ddooo.com/ddjs/ (easylistchina.txt: 2611) +.ddooo.com/ddjs/ +# ||ddheli.com/k.js (easylistchina.txt: 2610) +.ddheli.com/k\.js +# ||dddbbb.net^$script,subdocument (easylistchina.txt: 2609) +.dddbbb.net +# ||dd.xdnice.com^ (easylistchina.txt: 2608) +.dd.xdnice.com +# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina.txt: 2607) +.dclick.autonet.com.tw/90/AC_RunActiveContent\.js +# ||dcfever.com/campaigns/ (easylistchina.txt: 2606) +.dcfever.com/campaigns/ +# ||dbw.cn/js/cp.js (easylistchina.txt: 2605) +.dbw.cn/js/cp\.js +# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina.txt: 2604) +.dbw.cn/eap/js/hl/hlj_ad +# ||dbw.cn/eap/js/db/dbwad_ (easylistchina.txt: 2603) +.dbw.cn/eap/js/db/dbwad_ +# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina.txt: 2602) +.dbw.cn/0/07/18/40/7184029_146090\.jpg +# ||db28.cn/cache/ads.js (easylistchina.txt: 2601) +.db28.cn/cache/ads\.js +# ||dashuye.com/data/cache/myad*.htm (easylistchina.txt: 2600) +.dashuye.com/data/cache/myad.*\.htm +# ||dashi.com/static/images/root_banner.jpg (easylistchina.txt: 2599) +.dashi.com/static/images/root_banner\.jpg +# ||dashi.com/static/images/old_phone.jpg (easylistchina.txt: 2598) +.dashi.com/static/images/old_phone\.jpg +# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina.txt: 2597) +.dashi.com/static/images/jiaocheng_ad\.jpg +# ||dasai8.com/js/duilianjs.js (easylistchina.txt: 2596) +.dasai8.com/js/duilianjs\.js +# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina.txt: 2595) +.daqianduan.com/wp-content/uploads/.*lagou +# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina.txt: 2594) +.daqianduan.com/wp-content/uploads/.*/ads.*\.jpg +# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina.txt: 2593) +.daqianduan.com/wp-content/uploads/.*/ad- +# ||daohangtx.com/jishudaohang/indextop.js (easylistchina.txt: 2592) +.daohangtx.com/jishudaohang/indextop\.js +# ||danyang.com/statics/banner.swf (easylistchina.txt: 2591) +.danyang.com/statics/banner\.swf +# ||danlan.org/KFC/ (easylistchina.txt: 2590) +.danlan.org/KFC/ +# ||daimabiji.com/images/17558/198zone.gif (easylistchina.txt: 2589) +.daimabiji.com/images/17558/198zone\.gif +# ||dailynews.sina.com/gb/ads/ (easylistchina.txt: 2588) +.dailynews.sina.com/gb/ads/ +# ||dailyfx.com.hk/ext/lang-ad (easylistchina.txt: 2587) +.dailyfx.com.hk/ext/lang-ad +# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina.txt: 2586) +.dabin69.com/template/comiis_ydzx/ads/topad01\.jpg +# ||dabin69.com/data/attachment/portal/ (easylistchina.txt: 2585) +.dabin69.com/data/attachment/portal/ +# ||dabaoku.com^$object,script,subdocument (easylistchina.txt: 2584) +.dabaoku.com +# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina.txt: 2583) +.da-fan-shu.cn/images/kuaijie\.jpg +# ||d7w.net/static/d7wad/ (easylistchina.txt: 2582) +.d7w.net/static/d7wad/ +# ||d7ol.com/pics/ad/ (easylistchina.txt: 2581) +.d7ol.com/pics/ad/ +# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2580) +.d5.sina.com.cn +# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2578) +.d4.sina.com.cn +# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2577) +.d3.sina.com.cn +# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2576) +.d2.sina.com.cn +# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2575) +.d1.sina.com.cn +# ||d1.shenchuang.com/a.htm (easylistchina.txt: 2574) +.d1.shenchuang.com/a\.htm +# ||d0.xcar.com.cn^ (easylistchina.txt: 2573) +.d0.xcar.com.cn +# ||d.taomato.com^ (easylistchina.txt: 2572) +.d.taomato.com +# ||d.pixiv.org/show?zone_id= (easylistchina.txt: 2571) +.d.pixiv.org/show\?zone_id= +# ||d.5.to^$subdocument (easylistchina.txt: 2570) +.d.5.to +# ||d.39.net/a.htm? (easylistchina.txt: 2569) +.d.39.net/a\.htm\? +# ||d.107788.com^ (easylistchina.txt: 2568) +.d.107788.com +# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina.txt: 2567) +.cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6\.jpg +# ||cyzone.cn^*/js/m.js (easylistchina.txt: 2566) +.cyzone.cn/.*/js/m\.js +# ||cye.com.cn/JS/AdsJS/ (easylistchina.txt: 2565) +.cye.com.cn/JS/AdsJS/ +# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina.txt: 2564) +.cxzyw.com/upload/1/148966/images/.*\.gif +# ||cww.net.cn/UpLoadFile/*.swf (easylistchina.txt: 2563) +.cww.net.cn/UpLoadFile/.*\.swf +# ||cww.net.cn/include/show.asp?boardID= (easylistchina.txt: 2562) +.cww.net.cn/include/show\.asp\?boardID= +# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina.txt: 2561) +.cwan.com/templets/webgame/misc/js/indextip\.js +# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina.txt: 2560) +.cwan.com/templets/shouye/misc/js/suspend\.js +# ||ctrip.com/amd/*960x90. (easylistchina.txt: 2559) +.ctrip.com/amd/.*960x90\. +# ||ctpan.com/vip.js (easylistchina.txt: 2558) +.ctpan.com/vip\.js +# ||ctpan.com/statics/js/adt (easylistchina.txt: 2557) +.ctpan.com/statics/js/adt +# ||ctpan.com/cp (easylistchina.txt: 2556) +.ctpan.com/cp +# ||csdn.net/sda/Topic (easylistchina.txt: 2555) +.csdn.net/sda/Topic +# ||csdn.net/msg.popup.js (easylistchina.txt: 2554) +.csdn.net/msg\.popup\.js +# ||csdn.net/ggmm/ (easylistchina.txt: 2553) +.csdn.net/ggmm/ +# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina.txt: 2552) +.csai.cn/xiaohua/js/xiaohua\.js +# ||cs360.cn/js/search_zcw.js (easylistchina.txt: 2551) +.cs360.cn/js/search_zcw\.js +# ||cs.com.cn/csad/ (easylistchina.txt: 2550) +.cs.com.cn/csad/ +# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina.txt: 2549) +.creativetop.com/cn/pic/laogu_adv\.gif +# ||creaders.net*/ad_func.js (easylistchina.txt: 2548) +.creaders.net*./(.*/)?ad_func\.js +# ||cr173.com/show/ (easylistchina.txt: 2547) +.cr173.com/show/ +# ||cr173.com/js/ (easylistchina.txt: 2546) +.cr173.com/js/ +# ||cqwb.com.cn/skin/ggimages/ (easylistchina.txt: 2545) +.cqwb.com.cn/skin/ggimages/ +# ||cqvip.com/viewserver/ViewAD (easylistchina.txt: 2544) +.cqvip.com/viewserver/ViewAD +# ||cqnews.net:8080/vplayerAdv/ (easylistchina.txt: 2543) +.cqnews.net:8080/vplayerAdv/ +# ||cqfishing.net/data/attachment/portal/ (easylistchina.txt: 2542) +.cqfishing.net/data/attachment/portal/ +# ||cps.okbuy.com^ (easylistchina.txt: 2541) +.cps.okbuy.com +# ||cpplay.com/inc/ (easylistchina.txt: 2540) +.cpplay.com/inc/ +# ||cpbl-elta.cdn.hinet.net/web/images/beer.jpg (easylistchina.txt: 2539) +.cpbl-elta.cdn.hinet.net/web/images/beer\.jpg +# ||cpbl-elta.cdn.hinet.net/web/images/ad_ (easylistchina.txt: 2538) +.cpbl-elta.cdn.hinet.net/web/images/ad_ +# ||cp126.com/img/ad0 (easylistchina.txt: 2537) +.cp126.com/img/ad0 +# ||cp126.com/888zr11.gif (easylistchina.txt: 2536) +.cp126.com/888zr11\.gif +# ||cp.ifeng.com/iframe/getiframe (easylistchina.txt: 2535) +.cp.ifeng.com/iframe/getiframe +# ||cooltu.com/mp/ (easylistchina.txt: 2534) +.cooltu.com/mp/ +# ||coolaler.com.tw^*_340x80. (easylistchina.txt: 2533) +.coolaler.com.tw/.*_340x80\. +# ||coolaler.com.tw^*_300x100. (easylistchina.txt: 2532) +.coolaler.com.tw/.*_300x100\. +# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina.txt: 2531) +.cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ +# ||content.xilu.com^$object (easylistchina.txt: 2530) +.content.xilu.com +# ||com.webmasterhome.cn/a1- (easylistchina.txt: 2529) +.com.webmasterhome.cn/a1- +# ||colayun.com/cola3/newdown/join.png (easylistchina.txt: 2528) +.colayun.com/cola3/newdown/join\.png +# ||coladrive.com/cola3/newdown/join.png (easylistchina.txt: 2527) +.coladrive.com/cola3/newdown/join\.png +# ||codepub.com/wuse/pic/ (easylistchina.txt: 2526) +.codepub.com/wuse/pic/ +# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina.txt: 2525) +.codepub.com/file/code/20141225/142856140\.jpg +# ||codeforge.cn/images/banner.gif (easylistchina.txt: 2524) +.codeforge.cn/images/banner\.gif +# ||cococomic.com/g/ (easylistchina.txt: 2523) +.cococomic.com/g/ +# ||cnzzla.com/public/scripts/money.js (easylistchina.txt: 2522) +.cnzzla.com/public/scripts/money\.js +# ||cnzol.com/template/style/images/wlfloat.js (easylistchina.txt: 2520) +.cnzol.com/template/style/images/wlfloat\.js +# ||cnzol.com/template/style/images/lcdl.js (easylistchina.txt: 2519) +.cnzol.com/template/style/images/lcdl\.js +# ||cnzol.com/page/ (easylistchina.txt: 2518) +.cnzol.com/page/ +# ||cnwnews.com/gg200903/nrzs.js (easylistchina.txt: 2517) +.cnwnews.com/gg200903/nrzs\.js +# ||cnwnews.com/gg200903/nry02.js (easylistchina.txt: 2516) +.cnwnews.com/gg200903/nry02\.js +# ||cntvboxnow.com//ads_ (easylistchina.txt: 2515) +# ||cntv.cn/hezuo/ (easylistchina.txt: 2514) +.cntv.cn/hezuo/ +# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina.txt: 2513) +.cnstock.com/image/201511/26/20151126105158298\.jpg +# ||cnsofas.com/loldytt/js/ (easylistchina.txt: 2512) +.cnsofas.com/loldytt/js/ +# ||cnsat.net/Pictuer/ (easylistchina.txt: 2511) +.cnsat.net/Pictuer/ +# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina.txt: 2510) +.cnr.cn/cnrxwph/iframe/tpdy/ +# ||cnnb.com.cn/images/14ny_1.gif (easylistchina.txt: 2509) +.cnnb.com.cn/images/14ny_1\.gif +# ||cnnb.com.cn/image/xhhc71.gif (easylistchina.txt: 2508) +.cnnb.com.cn/image/xhhc71\.gif +# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina.txt: 2507) +.cnmoad.com/wp-content/uploads/2015/02/lomark_banner\.png +# ||cnmo-img.com.cn/oddjs/ (easylistchina.txt: 2506) +.cnmo-img.com.cn/oddjs/ +# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina.txt: 2505) +# ||cnkang.com/zixun/nanke/ (easylistchina.txt: 2504) +.cnkang.com/zixun/nanke/ +# ||cnkang.com/images/sy (easylistchina.txt: 2503) +.cnkang.com/images/sy +# ||cnkang.com/images/*756.jpg (easylistchina.txt: 2502) +.cnkang.com/images/.*756\.jpg +# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina.txt: 2501) +.cnkang.com/cs/images0410/fengxiong\.jpg +# ||cnjxol.com/include/2011/index/js/index.js (easylistchina.txt: 2500) +.cnjxol.com/include/2011/index/js/index\.js +# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina.txt: 2499) +.cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414\.swf +# ||cnjxol.com/*.files/sian.gif (easylistchina.txt: 2498) +.cnjxol.com/.*\.files/sian\.gif +# ||cnhubei.com*/g2 (easylistchina.txt: 2497) +.cnhubei.com*./(.*/)?g2 +# ||cngsf.com/images/336_280.gif (easylistchina.txt: 2496) +.cngsf.com/images/336_280\.gif +# ||cngsf.com/baidu.htm (easylistchina.txt: 2495) +.cngsf.com/baidu\.htm +# ||cngoldres.com/advservice/ (easylistchina.txt: 2494) +.cngoldres.com/advservice/ +# ||cndesign.com/img/1200x100.jpg (easylistchina.txt: 2493) +.cndesign.com/img/1200x100\.jpg +# ||cndesign.com/Content/img/356x80_ (easylistchina.txt: 2492) +.cndesign.com/Content/img/356x80_ +# ||cndesign.com/Content/img/175x60_ (easylistchina.txt: 2491) +.cndesign.com/Content/img/175x60_ +# ||cndesign.com/Content/img/*x90_ (easylistchina.txt: 2490) +.cndesign.com/Content/img/.*x90_ +# ||cncrk.com/505/ (easylistchina.txt: 2489) +.cncrk.com/505/ +# ||cnchu.com/aps/ (easylistchina.txt: 2488) +.cnchu.com/aps/ +# ||cnbetacdn.com/banner (easylistchina.txt: 2487) +.cnbetacdn.com/banner +# ||cnbetacdn.com/320-50. (easylistchina.txt: 2486) +.cnbetacdn.com/320-50\. +# ||cnbeta.com/jobs/list_? (easylistchina.txt: 2485) +.cnbeta.com/jobs/list_\? +# ||cnbeta.com/assets/js/pages/google.js (easylistchina.txt: 2484) +.cnbeta.com/assets/js/pages/google\.js +# ||cnbeta.com/assets/images/*_670_90. (easylistchina.txt: 2483) +.cnbeta.com/assets/images/.*_670_90\. +# ||cna5.net/skins/js/ (easylistchina.txt: 2482) +.cna5.net/skins/js/ +# ||cmsjs.eastmoney.com^$subdocument (easylistchina.txt: 2481) +.cmsjs.eastmoney.com +# ||cmhello.com/2015/10/hc.jpg (easylistchina.txt: 2480) +.cmhello.com/2015/10/hc\.jpg +# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina.txt: 2479) +.club.pchome.net/.*/localexchange\.php +# ||clouddn.com/960x60.gif (easylistchina.txt: 2478) +.clouddn.com/960x60\.gif +# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina.txt: 2477) +.clm02.com/2014-A/FB-6-14-AA1\.jpg +# ||cjn.cn^*/ad/ (easylistchina.txt: 2476) +.cjn.cn/.*/ad/ +# ||cj.qidian.com^$object,subdocument (easylistchina.txt: 2475) +.cj.qidian.com +# ||citysbs.com^*swf (easylistchina.txt: 2473) +.citysbs.com/.*swf +# ||citysbs.com/no/*/980x (easylistchina.txt: 2472) +.citysbs.com/no/.*/980x +# ||citysbs.com/no/*/800x90- (easylistchina.txt: 2471) +.citysbs.com/no/.*/800x90- +# ||citysbs.com/no/*/650x50- (easylistchina.txt: 2470) +.citysbs.com/no/.*/650x50- +# ||citysbs.com/no/*/1190x60- (easylistchina.txt: 2469) +.citysbs.com/no/.*/1190x60- +# ||citysbs.com/chongqing/*/1920x179- (easylistchina.txt: 2468) +.citysbs.com/chongqing/.*/1920x179- +# ||cishuge.com/static/js/xiaoshuo.js (easylistchina.txt: 2467) +.cishuge.com/static/js/xiaoshuo\.js +# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina.txt: 2466) +.cilook.net/cilookinc/isee5_950x60\.gif +# ||chunxiao.tv/1.aspx (easylistchina.txt: 2465) +.chunxiao.tv/1\.aspx +# ||chuixue.com/template/*/images/g_js/show_ (easylistchina.txt: 2464) +.chuixue.com/template/.*/images/g_js/show_ +# ||chuixue.com/jsa/ (easylistchina.txt: 2463) +.chuixue.com/jsa/ +# ||chubun.com/images/banners/ (easylistchina.txt: 2462) +.chubun.com/images/banners/ +# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina.txt: 2460) +.chuangshi.qq.com/upload/cmsv2/Banner/ +# ||chrome007.com/images/goodxxxx.jpg (easylistchina.txt: 2459) +.chrome007.com/images/goodxxxx\.jpg +# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina.txt: 2458) +.chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ +# ||chosun.com/images/banner/ (easylistchina.txt: 2457) +.chosun.com/images/banner/ +# ||chiphell.com/activity/ (easylistchina.txt: 2456) +.chiphell.com/activity/ +# ||chinaz.com/temp_upfile/ads/ (easylistchina.txt: 2455) +.chinaz.com/temp_upfile/ads/ +# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina.txt: 2454) +.chinaz.com/site_view/alexa_ad\.jpg +# ||chinaz.com/site_view/2z.cn.gif (easylistchina.txt: 2453) +.chinaz.com/site_view/2z\.cn\.gif +# ||chinaz.com/newshome/ (easylistchina.txt: 2452) +.chinaz.com/newshome/ +# ||chinaz.com/ip_gadsense.js (easylistchina.txt: 2451) +.chinaz.com/ip_gadsense\.js +# ||chinaz.com/imagead/ (easylistchina.txt: 2450) +.chinaz.com/imagead/ +# ||chinaz.com/alexa/wz.js (easylistchina.txt: 2449) +.chinaz.com/alexa/wz\.js +# ||chinaz.com/alexa/word3.htm (easylistchina.txt: 2448) +.chinaz.com/alexa/word3\.htm +# ||chinaz.com/alexa/pic.js (easylistchina.txt: 2447) +.chinaz.com/alexa/pic\.js +# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina.txt: 2446) +.chinaz.com/2015/0113/1421112175579\.jpg +# ||chinaz.com/2011code_images/topright.js (easylistchina.txt: 2445) +.chinaz.com/2011code_images/topright\.js +# ||chinaz.com/2011code_images/soft (easylistchina.txt: 2444) +.chinaz.com/2011code_images/soft +# ||chinaz.com/2011code_images/A_ (easylistchina.txt: 2443) +.chinaz.com/2011code_images/A_ +# ||chinayes.com/Include%5Cad%5C (easylistchina.txt: 2442) +.chinayes.com/Include%5Cad%5C +# ||chinawmrc.com/images/end.js (easylistchina.txt: 2441) +.chinawmrc.com/images/end\.js +# ||chinatimes.com/Scripts/onead_ (easylistchina.txt: 2440) +.chinatimes.com/Scripts/onead_ +# ||chinatimes.com/Scripts/bennerad. (easylistchina.txt: 2439) +.chinatimes.com/Scripts/bennerad\. +# ||chinatimes.com/ads/forums/carouselad.js (easylistchina.txt: 2438) +.chinatimes.com/ads/forums/carouselad\.js +# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina.txt: 2437) +.chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo\.js +# ||chinatimes.com/2007Cti/ (easylistchina.txt: 2436) +.chinatimes.com/2007Cti/ +# ||chinaso.com/iframe336/ (easylistchina.txt: 2435) +.chinaso.com/iframe336/ +# ||chinasexq.com/js/ad (easylistchina.txt: 2434) +.chinasexq.com/js/ad +# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina.txt: 2433) +.chinaqking.com/userUpload/jobApply2\.jpg +# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina.txt: 2432) +.chinaqking.com/images/qkw/jobApply1\.jpg +# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina.txt: 2431) +.chinaqking.com/images/newPage/zhaopin\.jpg +# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina.txt: 2430) +.chinaqking.com/images/newPage/JLW\.jpg +# ||chinanews.com/shipin/sptp.xml (easylistchina.txt: 2429) +.chinanews.com/shipin/sptp\.xml +# ||chinanews.com/images/images/Sadv (easylistchina.txt: 2428) +.chinanews.com/images/images/Sadv +# ||chinanews.com/images/*/gaobang. (easylistchina.txt: 2427) +.chinanews.com/images/.*/gaobang\. +# ||chinanews.com.cn/ad2015/ (easylistchina.txt: 2426) +.chinanews.com.cn/ad2015/ +# ||chinairn.com/images3/*ads (easylistchina.txt: 2425) +.chinairn.com/images3/.*ads +# ||chinaiiss.com/js/function.ad.js (easylistchina.txt: 2424) +.chinaiiss.com/js/function\.ad\.js +# ||chinaiiss.com/js/float.js (easylistchina.txt: 2423) +.chinaiiss.com/js/float\.js +# ||chinaiiss.com/images/jianyu_erweima (easylistchina.txt: 2422) +.chinaiiss.com/images/jianyu_erweima +# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina.txt: 2421) +.chinaiiss.com/attachment/linkimg/201306/19/142826_845\.jpg +# ||chinafpd.net/js/2012-10/ (easylistchina.txt: 2420) +.chinafpd.net/js/2012-10/ +# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina.txt: 2419) +.chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13\.jpg +# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina.txt: 2418) +.chinadaily.com.cn/micro-reading/dzh/bd-taofang\.gif +# ||chinachugui.com/jsfiles/aods/ (easylistchina.txt: 2417) +.chinachugui.com/jsfiles/aods/ +# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina.txt: 2416) +.chinacar.com.cn/zhuanyongche/images/wintip_ +# ||chinabyte.com/w/$subdocument (easylistchina.txt: 2415) +.chinabyte.com/w/ +# ||chinaacc.com/lamu/dl- (easylistchina.txt: 2413) +.chinaacc.com/lamu/dl- +# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina.txt: 2412) +.china.com/zh_cn/plugin/all/hezuo360/ +# ||china.com/zh_cn/etc/gghead (easylistchina.txt: 2411) +.china.com/zh_cn/etc/gghead +# ||china.com/zh_cn/ads/ (easylistchina.txt: 2410) +.china.com/zh_cn/ads/ +# ||china.com/jsfiles/gotopgg/ (easylistchina.txt: 2409) +.china.com/jsfiles/gotopgg/ +# ||china.com.cn/youxi.swf (easylistchina.txt: 2408) +.china.com.cn/youxi\.swf +# ||china.com.cn/statics/js/js_vag/ (easylistchina.txt: 2407) +.china.com.cn/statics/js/js_vag/ +# ||china.com.cn/food/node_7094923.htm (easylistchina.txt: 2406) +.china.com.cn/food/node_7094923\.htm +# ||china.com.cn/2015ads/ (easylistchina.txt: 2405) +.china.com.cn/2015ads/ +# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina.txt: 2404) +.china.cn/images1/ch/2014first/20140422gq\.js +# ||china.chemnet.com/cnbanner/ (easylistchina.txt: 2403) +.china.chemnet.com/cnbanner/ +# ||chidir.com^ (easylistchina.txt: 2402) +.chidir.com +# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina.txt: 2401) +.chewen.com/pics/2013/09/13/02013091317191365\.jpg +# ||chengruide.com/js/union_junshiqu.js (easylistchina.txt: 2400) +.chengruide.com/js/union_junshiqu\.js +# ||chemnet.com/js/float_div.js (easylistchina.txt: 2399) +.chemnet.com/js/float_div\.js +# ||cheers.com.tw/js-lib/fancybox/ (easylistchina.txt: 2398) +.cheers.com.tw/js-lib/fancybox/ +# ||chddh.com*/A*D/ (easylistchina.txt: 2397) +.chddh.com*./(.*/)?A.*D/ +# ||chcj.net/comiis_ad/ (easylistchina.txt: 2396) +.chcj.net/comiis_ad/ +# ||chaling.cn/images/*.gif (easylistchina.txt: 2395) +.chaling.cn/images/.*\.gif +# ||chaling.cn/data/attachment/portal/ (easylistchina.txt: 2394) +.chaling.cn/data/attachment/portal/ +# ||chakd.com/images/xitie160x60.gif (easylistchina.txt: 2393) +.chakd.com/images/xitie160x60\.gif +# ||cfanclub.net/lmimages/yinsub.gif (easylistchina.txt: 2392) +.cfanclub.net/lmimages/yinsub\.gif +# ||centoscn.com/money/ (easylistchina.txt: 2391) +.centoscn.com/money/ +# ||cdyee.com/external/5070.files/ad/ (easylistchina.txt: 2390) +.cdyee.com/external/5070\.files/ad/ +# ||cdndm.com^*/js/newtc.js (easylistchina.txt: 2389) +.cdndm.com/.*/js/newtc\.js +# ||cdn.wdlm.cn^ (easylistchina.txt: 2387) +.cdn.wdlm.cn +# ||cdn.shdsp.net/ad (easylistchina.txt: 2386) +.cdn.shdsp.net/ad +# ||cdn.galacg.me/img/*.jpg (easylistchina.txt: 2385) +.cdn.galacg.me/img/.*\.jpg +# ||cdn.galacg.me/img/*.gif (easylistchina.txt: 2384) +.cdn.galacg.me/img/.*\.gif +# ||cdn.dfile.cn/slot/ (easylistchina.txt: 2383) +.cdn.dfile.cn/slot/ +# ||ccwzz.cc/dmf.js (easylistchina.txt: 2382) +.ccwzz.cc/dmf\.js +# ||ccvcd.com/images/ (easylistchina.txt: 2381) +.ccvcd.com/images/ +# ||cctv5.name/js/*foot.js (easylistchina.txt: 2380) +.cctv5.name/js/.*foot\.js +# ||cctv5.name/data/js/ (easylistchina.txt: 2379) +.cctv5.name/data/js/ +# ||cctv.com/Library/a2.js (easylistchina.txt: 2378) +.cctv.com/Library/a2\.js +# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina.txt: 2377) +.cctime.com/UpLoadFile/2012/11/7/201211733483705\.gif +# ||cctime.com/UpLoadFile/201$object (easylistchina.txt: 2376) +.cctime.com/UpLoadFile/201 +# ||ccoo.cn/webdiy/$subdocument (easylistchina.txt: 2375) +.ccoo.cn/webdiy/ +# ||ccoo.cn/js/dlv*.js (easylistchina.txt: 2374) +.ccoo.cn/js/dlv.*\.js +# ||ccidnet.com/nav/dia_ (easylistchina.txt: 2373) +.ccidnet.com/nav/dia_ +# ||cccdv.com/js/*0- (easylistchina.txt: 2372) +.cccdv.com/js/.*0- +# ||ccb.com.cn/V5/images5/right0.gif (easylistchina.txt: 2371) +.ccb.com.cn/V5/images5/right0\.gif +# ||ccb.com.cn/V5/images5/left0.gif (easylistchina.txt: 2370) +.ccb.com.cn/V5/images5/left0\.gif +# ||ccav1.me/block.js (easylistchina.txt: 2369) +.ccav1.me/block\.js +# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina.txt: 2368) +.ccav1.com/wp-content/uploads/an-temp/ +# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina.txt: 2367) +.ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao\.jpg +# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina.txt: 2366) +.cbfw.cn/gonggong/js/cf_flash\.js +# ||cari.com.my/static/appbanner (easylistchina.txt: 2365) +.cari.com.my/static/appbanner +# ||caoimg.com/images/ (easylistchina.txt: 2364) +.caoimg.com/images/ +# ||camster.com/promos/ (easylistchina.txt: 2363) +.camster.com/promos/ +# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina.txt: 2362) +.caipiao.cntv.cn/website/cntv/box_news\.shtml +# ||caikuu.com/ckimages/*_zg (easylistchina.txt: 2361) +.caikuu.com/ckimages/.*_zg +# ||caikuu.com/ckimages/*_gg (easylistchina.txt: 2360) +.caikuu.com/ckimages/.*_gg +# ||cachead.com^ (easylistchina.txt: 2359) +.cachead.com +# ||cacafly.net^ (easylistchina.txt: 2358) +.cacafly.net +# ||caamei.com/k.js (easylistchina.txt: 2357) +.caamei.com/k\.js +# ||c4d.cn/api.php?mod=ad&adid= (easylistchina.txt: 2356) +.c4d.cn/api\.php\?mod=ad&adid= +# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina.txt: 2355) +.c2cc.cn/images/images2011/ads_bigbg\.jpg +# ||c2cc.cn/c2ccgg/ (easylistchina.txt: 2354) +.c2cc.cn/c2ccgg/ +# ||c2000.cn/c2000/ (easylistchina.txt: 2353) +.c2000.cn/c2000/ +# ||c168c.com/*adv/ (easylistchina.txt: 2352) +.c168c.com/.*adv/ +# ||c114.net/js/channel.js (easylistchina.txt: 2351) +.c114.net/js/channel\.js +# ||c114.net/images/c114/ad_ (easylistchina.txt: 2350) +.c114.net/images/c114/ad_ +# ||c114.net/default_inc/a/images/ (easylistchina.txt: 2349) +.c114.net/default_inc/a/images/ +# ||c114.net*/images_a/*.swf (easylistchina.txt: 2348) +.c114.net*./(.*/)?images_a/.*\.swf +# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina.txt: 2347) +.c1.74ch.com/u/mpf/xyz/fi/ZpE3T72\.gif +# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina.txt: 2346) +.c1.74ch.com/u/mpf/xyz/fi/bVE3T72\.gif +# ||c.quwenjiemi.com^*.js?version= (easylistchina.txt: 2345) +.c.quwenjiemi.com/.*\.js\?version= +# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina.txt: 2344) +.c-ctrip.com/rk/201411/c580x145\.jpg +# ||bzfl1.cc/da*.gif (easylistchina.txt: 2343) +.bzfl1.cc/da.*\.gif +# ||bzfl.cc/da*.gif (easylistchina.txt: 2342) +.bzfl.cc/da.*\.gif +# ||bytravel.cn/js/s_ (easylistchina.txt: 2341) +.bytravel.cn/js/s_ +# ||bytravel.cn/js/b_ (easylistchina.txt: 2340) +.bytravel.cn/js/b_ +# ||bytravel.cn/js/ad_ (easylistchina.txt: 2339) +.bytravel.cn/js/ad_ +# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina.txt: 2338) +.bytravel.cn/images/t/usa_250_120\.gif +# ||bytravel.cn/images/cus/ (easylistchina.txt: 2337) +.bytravel.cn/images/cus/ +# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina.txt: 2336) +.bxwxtxt.com/a/bxwx/indextan\.js +# ||bxwx.org/myabc/ (easylistchina.txt: 2335) +.bxwx.org/myabc/ +# ||bxwx.org/js/box_ (easylistchina.txt: 2334) +.bxwx.org/js/box_ +# ||bxwx.org/js/$subdocument (easylistchina.txt: 2333) +.bxwx.org/js/ +# ||bxwx.org/caipiao.js (easylistchina.txt: 2332) +.bxwx.org/caipiao\.js +# ||bxwx.org/1.js (easylistchina.txt: 2331) +.bxwx.org/1\.js +# ||bx0635.com/tx/vip.gif (easylistchina.txt: 2330) +.bx0635.com/tx/vip\.gif +# ||bx0635.com/downimg/ban.gif (easylistchina.txt: 2329) +.bx0635.com/downimg/ban\.gif +# ||bx0635.com/downimg/2000.gif (easylistchina.txt: 2328) +.bx0635.com/downimg/2000\.gif +# ||buzzhand.com/images/$subdocument (easylistchina.txt: 2327) +.buzzhand.com/images/ +# ||buytong.cn/images/*%*.swf (easylistchina.txt: 2326) +.buytong.cn/images/.*%.*\.swf +# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina.txt: 2325) +.buyhouse.yam.com/plugin/newsplugin\.php +# ||buy.sina.com.tw/js/sina_popup.php (easylistchina.txt: 2324) +.buy.sina.com.tw/js/sina_popup\.php +# ||business.92wy.com^ (easylistchina.txt: 2323) +.business.92wy.com +# ||bunnybee.com.tw/bee/$subdocument (easylistchina.txt: 2322) +.bunnybee.com.tw/bee/ +# ||bukade.com/tpl/2/loading.html (easylistchina.txt: 2321) +.bukade.com/tpl/2/loading\.html +# ||bukade.com/js/tj2.js (easylistchina.txt: 2320) +.bukade.com/js/tj2\.js +# ||bukade.com/js/b_ (easylistchina.txt: 2319) +.bukade.com/js/b_ +# ||bukade.com/js/*_p_ (easylistchina.txt: 2318) +.bukade.com/js/.*_p_ +# ||bttiantang.cc/static/wen (easylistchina.txt: 2317) +.bttiantang.cc/static/wen +# ||bttiantang.cc/static/*quan.js (easylistchina.txt: 2316) +.bttiantang.cc/static/.*quan\.js +# ||btshark.com/static/img/*300x250. (easylistchina.txt: 2315) +.btshark.com/static/img/.*300x250\. +# ||btn.pchome.net^ (easylistchina.txt: 2314) +.btn.pchome.net +# ||btn.onlylady.com^ (easylistchina.txt: 2313) +.btn.onlylady.com +# ||btkuaisou.com/ac/ (easylistchina.txt: 2312) +.btkuaisou.com/ac/ +# ||btks.me/pingbi (easylistchina.txt: 2311) +.btks.me/pingbi +# ||btks.me/js/ac (easylistchina.txt: 2310) +.btks.me/js/ac +# ||btks.me/ac/ (easylistchina.txt: 2309) +.btks.me/ac/ +# ||bthand.com/static/650-80.swf (easylistchina.txt: 2308) +.bthand.com/static/650-80\.swf +# ||btcherry.com/images/gaoqing.png (easylistchina.txt: 2307) +.btcherry.com/images/gaoqing\.png +# ||btcherry.com/images/ad_ (easylistchina.txt: 2306) +.btcherry.com/images/ad_ +# ||btbook.net/static/img/880X60.gif (easylistchina.txt: 2305) +.btbook.net/static/img/880X60\.gif +# ||btbbt.cc/jslb.js (easylistchina.txt: 2304) +.btbbt.cc/jslb\.js +# ||btago.com/static/banner/ (easylistchina.txt: 2303) +.btago.com/static/banner/ +# ||bt977.com/Public/images/ad (easylistchina.txt: 2302) +.bt977.com/Public/images/ad +# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina.txt: 2301) +.bt1023.com/tpl/template/image/guanggao1\.gif +# ||bs028.com/js/inc/ (easylistchina.txt: 2300) +.bs028.com/js/inc/ +# ||bs.baidu.com/app-ads% (easylistchina.txt: 2299) +.bs.baidu.com/app-ads% +# ||brand.sogou.com/micro?yyid= (easylistchina.txt: 2298) +.brand.sogou.com/micro\?yyid= +# ||books.com.tw/web/apActivityStick? (easylistchina.txt: 2296) +.books.com.tw/web/apActivityStick\? +# ||bookgew.com/zj85/ (easylistchina.txt: 2295) +.bookgew.com/zj85/ +# ||bookgew.com/ml85/ (easylistchina.txt: 2294) +.bookgew.com/ml85/ +# ||bookgew.com/hz1/tcby.js (easylistchina.txt: 2293) +.bookgew.com/hz1/tcby\.js +# ||bookbao.cc/js/ (easylistchina.txt: 2292) +.bookbao.cc/js/ +# ||bookabc.net/js/xian (easylistchina.txt: 2291) +.bookabc.net/js/xian +# ||bookabc.net/js/tt.js (easylistchina.txt: 2290) +.bookabc.net/js/tt\.js +# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina.txt: 2289) +.bomb01.com/fancybox/jquery\.fancybox\. +# ||bnext.com.tw/static/web/all.js (easylistchina.txt: 2288) +.bnext.com.tw/static/web/all\.js +# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina.txt: 2287) +.bmp1.ali213.net/pubjs/index_sc_utf8\.js +# ||bmp1.ali213.net/js/ (easylistchina.txt: 2286) +.bmp1.ali213.net/js/ +# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina.txt: 2285) +.bmp.ali213.net/pubjs/SetScreen\.js +# ||bmp.ali213.net/js/ (easylistchina.txt: 2284) +.bmp.ali213.net/js/ +# ||blueidea.com/js/ajs.js (easylistchina.txt: 2283) +.blueidea.com/js/ajs\.js +# ||blueidea.com/2012/sdong/sdo.gif (easylistchina.txt: 2282) +.blueidea.com/2012/sdong/sdo\.gif +# ||blogspot.com^*/s1600/orig.gif (easylistchina.txt: 2281) +.blogspot.com/.*/s1600/orig\.gif +# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina.txt: 2280) +.blog.tianya.cn/tuijian/tanchu\.js +# ||blog.china.com/u/dvpush/$subdocument (easylistchina.txt: 2279) +.blog.china.com/u/dvpush/ +# ||blog.51cto.com/js/poptop.js (easylistchina.txt: 2278) +.blog.51cto.com/js/poptop\.js +# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina.txt: 2277) +.bkjia.com/bkjia/js/subnavtop\.js +# ||bkjia.com/bkjia/js/banner (easylistchina.txt: 2276) +.bkjia.com/bkjia/js/banner +# ||bkjia.com/bkjia/js/art_rightad (easylistchina.txt: 2275) +.bkjia.com/bkjia/js/art_rightad +# ||bkill.com/images/di.js (easylistchina.txt: 2274) +.bkill.com/images/di\.js +# ||bkill.com/css/abc/ (easylistchina.txt: 2273) +.bkill.com/css/abc/ +# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina.txt: 2272) +.bjxxw.com/themes/portal/local/special_.*\.swf +# ||bjmxw.net/bd/ (easylistchina.txt: 2271) +.bjmxw.net/bd/ +# ||bjmama.net/a/spc_ (easylistchina.txt: 2270) +.bjmama.net/a/spc_ +# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina.txt: 2269) +.bjhjyd.gov.cn/templates/default/www/js/float\.js +# ||biz37.net^*.swf?uid= (easylistchina.txt: 2268) +.biz37.net/.*\.swf\?uid= +# ||biz.weibo.com^ (easylistchina.txt: 2267) +.biz.weibo.com +# ||biz.lyd.com.cn/20 (easylistchina.txt: 2266) +.biz.lyd.com.cn/20 +# ||biz.gexing.com^ (easylistchina.txt: 2265) +.biz.gexing.com +# ||biz*.sandai.net^ (easylistchina.txt: 2264) +.biz*./.*\.sandai\.net[^\w%.-] +.biz*.sandai.net +# ||bitscn.com/js/a2 (easylistchina.txt: 2263) +.bitscn.com/js/a2 +# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina.txt: 2262) +.bitautoimg.com/ResourceFiles/0/3/167/20151207103257620\.jpg +# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina.txt: 2261) +.bitautoimg.com/ResourceFiles/0/.*\.swf +# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina.txt: 2260) +.bitautoimg.com/ResourceFiles/0/.*\.gif +# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina.txt: 2259) +.bitauto.com/ResourceFiles/play/play\.swf +# ||bitauto.com/js/sense*.js (easylistchina.txt: 2258) +.bitauto.com/js/sense.*\.js +# ||biquge5.com/jquery/ (easylistchina.txt: 2257) +.biquge5.com/jquery/ +# ||biquge.so/kinpo/% (easylistchina.txt: 2256) +.biquge.so/kinpo/% +# ||biqi.me/Public/js/page_gg_ (easylistchina.txt: 2255) +.biqi.me/Public/js/page_gg_ +# ||biqi.me/Public/js/page_ad_ (easylistchina.txt: 2254) +.biqi.me/Public/js/page_ad_ +# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina.txt: 2253) +.bio-equip.com/uploadimages/peiqing\.gif +# ||bio-equip.com/images/esco06.swf (easylistchina.txt: 2252) +.bio-equip.com/images/esco06\.swf +# ||bio-equip.com/dimgs/ (easylistchina.txt: 2251) +.bio-equip.com/dimgs/ +# ||bio-equip.com/dimg/ (easylistchina.txt: 2250) +.bio-equip.com/dimg/ +# ||binhuo.com/bhjs/ (easylistchina.txt: 2249) +.binhuo.com/bhjs/ +# ||bh111.com/js/tan_ (easylistchina.txt: 2248) +.bh111.com/js/tan_ +# ||bh111.com/flash/*+ (easylistchina.txt: 2247) +.bh111.com/flash/.*\+ +# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina.txt: 2246) +.bfpgf.com/wp-content/uploads/2015/08/360dxs\.jpg +# ||bforu.info/images/ali.gif (easylistchina.txt: 2245) +.bforu.info/images/ali\.gif +# ||bforu.info/03.jpg (easylistchina.txt: 2244) +.bforu.info/03\.jpg +# ||bfooru.info/images/*.gif (easylistchina.txt: 2243) +.bfooru.info/images/.*\.gif +# ||bfooru.info/03.jpg (easylistchina.txt: 2242) +.bfooru.info/03\.jpg +# ||bestvogue.com/fans/ (easylistchina.txt: 2241) +.bestvogue.com/fans/ +# ||besc.baidustatic.com^ (easylistchina.txt: 2240) +.besc.baidustatic.com +# ||bendibao.com/mo/adm_iframe.htm? (easylistchina.txt: 2239) +.bendibao.com/mo/adm_iframe\.htm\? +# ||bendibao.com*/tuangou.gif (easylistchina.txt: 2238) +.bendibao.com*./(.*/)?tuangou\.gif +# ||bejson.com/imgs/tuo.png (easylistchina.txt: 2237) +.bejson.com/imgs/tuo\.png +# ||bejson.com/imgs/qiniu (easylistchina.txt: 2236) +.bejson.com/imgs/qiniu +# ||bejson.com/imgs/j950-90.jpg (easylistchina.txt: 2235) +.bejson.com/imgs/j950-90\.jpg +# ||bejson.com/imgs/beifen (easylistchina.txt: 2234) +.bejson.com/imgs/beifen +# ||beiwo.tv/Runtime/js/list01.js (easylistchina.txt: 2233) +.beiwo.tv/Runtime/js/list01\.js +# ||beijing-air.com/images/a/j (easylistchina.txt: 2232) +.beijing-air.com/images/a/j +# ||bego.cc/img/ (easylistchina.txt: 2231) +.bego.cc/img/ +# ||beephone.com.tw/ad-yahoo.php (easylistchina.txt: 2230) +.beephone.com.tw/ad-yahoo\.php +# ||beephone.com.tw/ad-middle.php (easylistchina.txt: 2229) +.beephone.com.tw/ad-middle\.php +# ||beareyes.com.cn^*/ad/ (easylistchina.txt: 2228) +.beareyes.com.cn/.*/ad/ +# ||beanfun.com/playweb/adpicpage.htm (easylistchina.txt: 2227) +.beanfun.com/playweb/adpicpage\.htm +# ||bdstatic.com^*/tam-ogel/ (easylistchina.txt: 2226) +.bdstatic.com/.*/tam-ogel/ +# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina.txt: 2225) +.bdstatic.com/tb/zt/tengfei/gzdialog\.jpg +# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina.txt: 2224) +.bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f\.jpg +# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina.txt: 2223) +.bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac\.jpg +# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina.txt: 2222) +.bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ +# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina.txt: 2221) +.bdstatic.com/tb/cms/ngmis/file_1417585299140\.jpg +# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina.txt: 2220) +.bdstatic.com/tb/cms/ngmis/file_1417585294569\.jpg +# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina.txt: 2219) +.bdstatic.com/tb/cms/img/tieba_index_banner960x90\.png +# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina.txt: 2218) +.bdstatic.com/tb/cms/forum_skin/file_1442399443261\.jpg +# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina.txt: 2217) +.bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api\.js +# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina.txt: 2216) +.bdstatic.com/tb/cms/com/game/couplet_ +# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina.txt: 2215) +.bdstatic.com/tb/cms/activity_head/file_ +# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina.txt: 2214) +.bdstatic.com/tb/%E8%B4%B4%E5%90%A7- +# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina.txt: 2213) +.bdstatic.com/static/article/widget/left-promo/ +# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina.txt: 2212) +.bdstatic.com/player/t/j/TvKa94eY\.js +# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina.txt: 2211) +.bdstatic.com/player/t/j/Cj2XuDf6\.js +# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina.txt: 2210) +.bdstatic.com/player/t/j/AEoIJIPB\.js +# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina.txt: 2209) +.bdstatic.com/pc_static/detail/game_promotion/ +# ||bdstatic.com/img/image/su/ (easylistchina.txt: 2208) +.bdstatic.com/img/image/su/ +# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina.txt: 2207) +.bdstatic.com/api_hao123AdvHeader\.js +# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina.txt: 2206) +.bdinfo.net/bdinfo_skin/xlsgg\.js +# ||bdimg.com/site/games/yxtg/*.js (easylistchina.txt: 2205) +.bdimg.com/site/games/yxtg/.*\.js +# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina.txt: 2204) +.bdimg.com/newmap/static/common/images/nav-ad_ +# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina.txt: 2203) +.bdimg.com/brands/yxtg/source/juhe-v2\.js +# ||bcok.com^$subdocument (easylistchina.txt: 2202) +.bcok.com +# ||bccn.net/aaa/ (easylistchina.txt: 2201) +.bccn.net/aaa/ +# ||bcc.com.tw/imgs/adv/ (easylistchina.txt: 2200) +.bcc.com.tw/imgs/adv/ +# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina.txt: 2199) +.bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c\.jpg +# ||bbs.xiashanet.com/js/adsview.js (easylistchina.txt: 2198) +.bbs.xiashanet.com/js/adsview\.js +# ||bbs.xbaodi.com/plugin.php (easylistchina.txt: 2197) +.bbs.xbaodi.com/plugin\.php +# ||bbs.winning11cn.com/temp/*.gif (easylistchina.txt: 2196) +.bbs.winning11cn.com/temp/.*\.gif +# ||bbs.voc.com.cn/s.js (easylistchina.txt: 2195) +.bbs.voc.com.cn/s\.js +# ||bbs.hotavxxx.com/images/201*.gif (easylistchina.txt: 2194) +.bbs.hotavxxx.com/images/201.*\.gif +# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina.txt: 2193) +.bbs.fengbao.com/image/bingzuan925X80\.jpg +# ||bbs.a9vg.com/showit/img_show.php (easylistchina.txt: 2192) +.bbs.a9vg.com/showit/img_show\.php +# ||baoliny.com/js/jing.js (easylistchina.txt: 2191) +.baoliny.com/js/jing\.js +# ||baofeng.com/src/ad.js (easylistchina.txt: 2190) +.baofeng.com/src/ad\.js +# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina.txt: 2189) +.bang5mai.com/upload/plugin/assets/main/js/b5m\.adv\.js +# ||bamuyu.com/skin/js/bgad.js (easylistchina.txt: 2188) +.bamuyu.com/skin/js/bgad\.js +# ||ballive.com/addm/ (easylistchina.txt: 2187) +.ballive.com/addm/ +# ||baiy.net:88/a/ (easylistchina.txt: 2186) +.baiy.net:88/a/ +# ||baixing.com/bb/*/?category= (easylistchina.txt: 2185) +.baixing.com/bb/.*/\?category= +# ||baishulou.net/html/ (easylistchina.txt: 2184) +.baishulou.net/html/ +# ||baishuku.com/news/$script (easylistchina.txt: 2183) +.baishuku.com/news/ +# ||baike.com/iframeheightforad. (easylistchina.txt: 2182) +.baike.com/iframeheightforad\. +# ||baike.com/3g/ads/ (easylistchina.txt: 2181) +.baike.com/3g/ads/ +# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina.txt: 2180) +.baifen.music.baidu.com/api/v1/.*\?format=jsonp& +# ||baidud.cn/aoao/down_ (easylistchina.txt: 2179) +.baidud.cn/aoao/down_ +# ||baidu.com^*/interface/ad? (easylistchina.txt: 2178) +.baidu.com/.*/interface/ad\? +# ||baidu.com/WerbungAjax/getTonglan? (easylistchina.txt: 2176) +.baidu.com/WerbungAjax/getTonglan\? +# ||baidu.com/WerbungAjax/getBeitou? (easylistchina.txt: 2175) +.baidu.com/WerbungAjax/getBeitou\? +# ||baidu.com/videoapi/?*_ad_promote& (easylistchina.txt: 2174) +.baidu.com/videoapi/\?.*_ad_promote& +# ||baidu.com/videoadv.js (easylistchina.txt: 2173) +.baidu.com/videoadv\.js +# ||baidu.com/ur/scun?di=contentunion (easylistchina.txt: 2172) +.baidu.com/ur/scun\?di=contentunion +# ||baidu.com/tequan/adpadmin_feed/ (easylistchina.txt: 2171) +.baidu.com/tequan/adpadmin_feed/ +# ||baidu.com/tbliveact/data/xiu8/ (easylistchina.txt: 2170) +.baidu.com/tbliveact/data/xiu8/ +# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina.txt: 2169) +.baidu.com/tb/zt/wen_da_pc\.html +# ||baidu.com/tb/zt/spread/ (easylistchina.txt: 2168) +.baidu.com/tb/zt/spread/ +# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina.txt: 2167) +.baidu.com/tb/static-common/swf/worldcup_main\.swf +# ||baidu.com/tb/cms/game/*_banner_ (easylistchina.txt: 2166) +.baidu.com/tb/cms/game/.*_banner_ +# ||baidu.com/tb/cms/game/*_banner. (easylistchina.txt: 2165) +.baidu.com/tb/cms/game/.*_banner\. +# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina.txt: 2164) +.baidu.com/tb/cms/forum_skin/file_ +# ||baidu.com/staticapi/misadlist. (easylistchina.txt: 2163) +.baidu.com/staticapi/misadlist\. +# ||baidu.com/staticapi/hotnews_new. (easylistchina.txt: 2162) +.baidu.com/staticapi/hotnews_new\. +# ||baidu.com/static/yuntu-ad/ (easylistchina.txt: 2161) +.baidu.com/static/yuntu-ad/ +# ||baidu.com/static/html/cbjs.html (easylistchina.txt: 2160) +.baidu.com/static/html/cbjs\.html +# ||baidu.com/showbrand/sponsor_ (easylistchina.txt: 2159) +.baidu.com/showbrand/sponsor_ +# ||baidu.com/showbrand/banner_ (easylistchina.txt: 2158) +.baidu.com/showbrand/banner_ +# ||baidu.com/show/livevideo/getStreamConf? (easylistchina.txt: 2157) +.baidu.com/show/livevideo/getStreamConf\? +# ||baidu.com/rmaAjax/getGame? (easylistchina.txt: 2156) +.baidu.com/rmaAjax/getGame\? +# ||baidu.com/resource/tuisong/ (easylistchina.txt: 2155) +.baidu.com/resource/tuisong/ +# ||baidu.com/resource/baichuan/ (easylistchina.txt: 2154) +.baidu.com/resource/baichuan/ +# ||baidu.com/resource/ads/ (easylistchina.txt: 2153) +.baidu.com/resource/ads/ +# ||baidu.com/img/iknow/wenku*85. (easylistchina.txt: 2152) +.baidu.com/img/iknow/wenku.*85\. +# ||baidu.com/game/asset/common/performance. (easylistchina.txt: 2151) +.baidu.com/game/asset/common/performance\. +# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina.txt: 2150) +.baidu.com/fanyiapp/image/wise_banner_ +# ||baidu.com/event/img/zwdzjs.jpg (easylistchina.txt: 2149) +.baidu.com/event/img/zwdzjs\.jpg +# ||baidu.com/ecom$image,script (easylistchina.txt: 2148) +.baidu.com/ecom +# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina.txt: 2147) +.baidu.com/cms/rc/adSideConfig\.json\? +# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina.txt: 2146) +.baidu.com/brands/yxtg/source/yxCoupletsAd\.js +# ||baidu.com/api/proxyapi?tag=adv& (easylistchina.txt: 2145) +.baidu.com/api/proxyapi\?tag=adv& +# ||badmintoncn.com/cbo_gg/ (easylistchina.txt: 2143) +.badmintoncn.com/cbo_gg/ +# ||backchina.com/banners/ (easylistchina.txt: 2142) +.backchina.com/banners/ +# ||babytreeimg.com/img/promo/ (easylistchina.txt: 2141) +.babytreeimg.com/img/promo/ +# ||babyhome.com.tw/slot_gateway.php? (easylistchina.txt: 2140) +.babyhome.com.tw/slot_gateway\.php\? +# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina.txt: 2139) +.babyhome.com.tw/lib/iframe\.php\?u= +# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina.txt: 2138) +.babyhome.com.tw/2015/mid_autumn/ +# ||baby-kingdom.com/reqwads? (easylistchina.txt: 2137) +.baby-kingdom.com/reqwads\? +# ||baby-kingdom.com/reqsads? (easylistchina.txt: 2136) +.baby-kingdom.com/reqsads\? +# ||b5m.com/static/html/*/popup.html? (easylistchina.txt: 2135) +.b5m.com/static/html/.*/popup\.html\? +# ||b5m.com/images/banner.jpg (easylistchina.txt: 2134) +.b5m.com/images/banner\.jpg +# ||azhibo.com/images/2015/edge-bg.png (easylistchina.txt: 2133) +.azhibo.com/images/2015/edge-bg\.png +# ||ayxz.com/images/VStart.gif (easylistchina.txt: 2132) +.ayxz.com/images/VStart\.gif +# ||ayxz.com/images/enkj_small.gif (easylistchina.txt: 2131) +.ayxz.com/images/enkj_small\.gif +# ||ayxz.com/images/$script (easylistchina.txt: 2130) +.ayxz.com/images/ +# ||awaker.hk/wp-content/uploads/ok/ (easylistchina.txt: 2129) +.awaker.hk/wp-content/uploads/ok/ +# ||avseesee.com/twad (easylistchina.txt: 2128) +.avseesee.com/twad +# ||avseesee.com/htmls/vlinks.html (easylistchina.txt: 2127) +.avseesee.com/htmls/vlinks\.html +# ||avseesee.com/amandison.php (easylistchina.txt: 2126) +.avseesee.com/amandison\.php +# ||avonline.org/js/jquery.colorbox- (easylistchina.txt: 2125) +.avonline.org/js/jquery\.colorbox- +# ||avlang33.com/js/float.js (easylistchina.txt: 2124) +.avlang33.com/js/float\.js +# ||avcity.twavtv.com/js/twavt.js (easylistchina.txt: 2123) +.avcity.twavtv.com/js/twavt\.js +# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina.txt: 2122) +.autos.udn.com/topic/car/include/ad\.jsp +# ||autoimg.cn/engine/root/fggxl.js (easylistchina.txt: 2121) +.autoimg.cn/engine/root/fggxl\.js +# ||autoimg.cn/ad.js (easylistchina.txt: 2120) +.autoimg.cn/ad\.js +# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina.txt: 2119) +.autohome.com.cn/Ashx/public/HeaderLayerRecApp\.ashx\? +# ||autofan.com.cn/zhaoning/GG- (easylistchina.txt: 2118) +.autofan.com.cn/zhaoning/GG- +# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina.txt: 2117) +.autofan.com.cn/zhaoning/20.*\.jpg +# ||autofan.com.cn/zhaoning/*.gif (easylistchina.txt: 2116) +.autofan.com.cn/zhaoning/.*\.gif +# ||auto-online.com.tw/vendor_data/ (easylistchina.txt: 2115) +.auto-online.com.tw/vendor_data/ +# ||att.ydss.cn/attachments/portal/ (easylistchina.txt: 2114) +.att.ydss.cn/attachments/portal/ +# ||atm.youku.com^ (easylistchina.txt: 2113) +.atm.youku.com +# ||asxxg.cn/Public/config/Couplet/ (easylistchina.txt: 2112) +.asxxg.cn/Public/config/Couplet/ +# ||aspjzy.com/jsweb/js/ (easylistchina.txt: 2111) +.aspjzy.com/jsweb/js/ +# ||asp300.com/2012js/ (easylistchina.txt: 2110) +.asp300.com/2012js/ +# ||asp300.com/2012adjs/ (easylistchina.txt: 2109) +.asp300.com/2012adjs/ +# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina.txt: 2108) +.asimgs.pplive.cn +# ||asia-home.com.cn/js/yt/ytadshow (easylistchina.txt: 2107) +.asia-home.com.cn/js/yt/ytadshow +# ||ashow.pcpop.com^ (easylistchina.txt: 2106) +.ashow.pcpop.com +# ||as.sinahk.net^ (easylistchina.txt: 2105) +.as.sinahk.net +# ||article.pchome.net/Index.php?c=Intel& (easylistchina.txt: 2104) +.article.pchome.net/Index\.php\?c=Intel& +# ||arpun.com/arpun/softinfo (easylistchina.txt: 2103) +.arpun.com/arpun/softinfo +# ||ark.letv.com/s?vid= (easylistchina.txt: 2102) +.ark.letv.com/s\?vid= +# ||ark.letv.com/s?res= (easylistchina.txt: 2101) +.ark.letv.com/s\?res= +# ||aqy103.com/js/aqy/ (easylistchina.txt: 2100) +.aqy103.com/js/aqy/ +# ||aqy102.com/js/aqy/ (easylistchina.txt: 2099) +.aqy102.com/js/aqy/ +# ||aqlife.com/data/attachment/portal/ (easylistchina.txt: 2098) +.aqlife.com/data/attachment/portal/ +# ||appinn.com^*/licaifan. (easylistchina.txt: 2097) +.appinn.com/.*/licaifan\. +# ||appinn.com/images/201509/wd.png (easylistchina.txt: 2096) +.appinn.com/images/201509/wd\.png +# ||app.acm.dzwww.com^ (easylistchina.txt: 2095) +.app.acm.dzwww.com +# ||app-g.39.net/NNN/ (easylistchina.txt: 2094) +.app-g.39.net/NNN/ +# ||apihousefun.yam.com/news.php (easylistchina.txt: 2093) +.apihousefun.yam.com/news\.php +# ||aoye.cc/js/footer.js (easylistchina.txt: 2092) +.aoye.cc/js/footer\.js +# ||anywlan.com/link/xcloud.jpg (easylistchina.txt: 2091) +.anywlan.com/link/xcloud\.jpg +# ||anywlan.com/link/*.gif (easylistchina.txt: 2090) +.anywlan.com/link/.*\.gif +# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina.txt: 2089) +.anquan.org/static/user_upload/zorro/.*/%E5%93% +# ||anquan.org/static/user_upload/*/cloud (easylistchina.txt: 2088) +.anquan.org/static/user_upload/.*/cloud +# ||anquan.org/static/profile/images/qq-banner.png (easylistchina.txt: 2087) +.anquan.org/static/profile/images/qq-banner\.png +# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina.txt: 2086) +.anquan.org/static/auth/images/ppb_cert/qq-browser\.jpg +# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina.txt: 2085) +.anhuinews.com/zhuyeguanli/.*ad/ +# ||anhuinews.com/include/ (easylistchina.txt: 2084) +.anhuinews.com/include/ +# ||angpic.3g.net.cn/ai/ (easylistchina.txt: 2083) +.angpic.3g.net.cn/ai/ +# ||an7.tv/Runtime/js/ (easylistchina.txt: 2082) +.an7.tv/Runtime/js/ +# ||amd.cn/yyets.js (easylistchina.txt: 2081) +.amd.cn/yyets\.js +# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina.txt: 2080) +.am.zdnet.com.cn/www/images/ +# ||am.szhome.com^ (easylistchina.txt: 2079) +.am.szhome.com +# ||am.6park.com^ (easylistchina.txt: 2078) +.am.6park.com +# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina.txt: 2077) +.alu.cn/aluTrade/Fragments/ListAdvertisementProducts\. +# ||alu.cn/2011/images/conglin.gif (easylistchina.txt: 2076) +.alu.cn/2011/images/conglin\.gif +# ||alu.cn*/aluad/ (easylistchina.txt: 2075) +.alu.cn*./(.*/)?aluad/ +# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina.txt: 2074) +.allbeauty.com.tw/GoldPrice/.*_CF\.php +# ||alixixi.com/adsview/ (easylistchina.txt: 2073) +.alixixi.com/adsview/ +# ||alifeifei.net/s/*.js (easylistchina.txt: 2072) +.alifeifei.net/s/.*\.js +# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina.txt: 2068) +.alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100\.jpg +# ||alicdn.com/tps/*-950-90. (easylistchina.txt: 2067) +.alicdn.com/tps/.*-950-90\. +# ||ali213.net/static/js/kv (easylistchina.txt: 2066) +.ali213.net/static/js/kv +# ||ali213.net/static/js/kktv (easylistchina.txt: 2065) +.ali213.net/static/js/kktv +# ||ali213.net/static/js/*_ali213tv.js (easylistchina.txt: 2064) +.ali213.net/static/js/.*_ali213tv\.js +# ||ali213.net/images/promotion/ (easylistchina.txt: 2063) +.ali213.net/images/promotion/ +# ||ali213.net/css/data/promotion.css (easylistchina.txt: 2062) +.ali213.net/css/data/promotion\.css +# ||alexa.cn/ad$subdocument (easylistchina.txt: 2061) +.alexa.cn/ad +# ||alabout.com/images/*.gif (easylistchina.txt: 2060) +.alabout.com/images/.*\.gif +# ||aknba.com/cache/ads.js (easylistchina.txt: 2059) +.aknba.com/cache/ads\.js +# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina.txt: 2058) +.akjunshi.com/resource/s/data_js_mil/right_twtj\.js +# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina.txt: 2057) +.akjunshi.com/resource/s/data_js_mil/aksqgg\.js +# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina.txt: 2056) +.ak47fuli.net/wp-content/uploads/20.*\.gif +# ||ak47fuli.net/fd.js (easylistchina.txt: 2055) +.ak47fuli.net/fd\.js +# ||ajiang.net/b4_dnslak.png (easylistchina.txt: 2054) +.ajiang.net/b4_dnslak\.png +# ||aiyuke.com/index.php?c=position& (easylistchina.txt: 2053) +.aiyuke.com/index\.php\?c=position& +# ||aiyidu.com/aiyidu/adver/ (easylistchina.txt: 2052) +.aiyidu.com/aiyidu/adver/ +# ||aituan.com/at/bbs_gg/ (easylistchina.txt: 2051) +.aituan.com/at/bbs_gg/ +# ||airenti.in^$script (easylistchina.txt: 2050) +.airenti.in +# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina.txt: 2049) +.aipai.com/common/i0uat4jq/play/item\.html +# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina.txt: 2048) +.aipai.com/common/html/commonAdForTfansTo\.html +# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina.txt: 2047) +.aipai.com/app/www/templates/common/ifr/fans_640_40\.html +# ||aipai.com/app/www/templates/common/*_videos_ (easylistchina.txt: 2046) +.aipai.com/app/www/templates/common/.*_videos_ +# ||ainunu.com/vad.js (easylistchina.txt: 2045) +.ainunu.com/vad\.js +# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina.txt: 2044) +.aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76\.gif +# ||aijiatxt.com/js/gg.js (easylistchina.txt: 2043) +.aijiatxt.com/js/gg\.js +# ||aijiatxt.com/js/float.js (easylistchina.txt: 2042) +.aijiatxt.com/js/float\.js +# ||aijiatxt.com/images/dudu.gif (easylistchina.txt: 2041) +.aijiatxt.com/images/dudu\.gif +# ||aijiatxt.com/images/90.jpg (easylistchina.txt: 2040) +.aijiatxt.com/images/90\.jpg +# ||aijiatxt.com/images/300.jpg (easylistchina.txt: 2039) +.aijiatxt.com/images/300\.jpg +# ||aid.chinayk.com^ (easylistchina.txt: 2038) +.aid.chinayk.com +# ||aibang.com/?area=ajax&cmd=adv& (easylistchina.txt: 2037) +.aibang.com/\?area=ajax&cmd=adv& +# ||ai.bioon.com^ (easylistchina.txt: 2036) +.ai.bioon.com +# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina.txt: 2035) +.ahtv.cn/publishsys/data/template/1/3/images/zgyd_ +# ||ahlife.com/skin/hftogo/js/ (easylistchina.txt: 2034) +.ahlife.com/skin/hftogo/js/ +# ||ahlife.com/api.php?mod=adv& (easylistchina.txt: 2033) +.ahlife.com/api\.php\?mod=adv& +# ||ah.sina.com.cn/iframe/ (easylistchina.txt: 2032) +.ah.sina.com.cn/iframe/ +# ||afpcreative.wasu.cn^ (easylistchina.txt: 2031) +.afpcreative.wasu.cn +# ||afp.wasu.cn^ (easylistchina.txt: 2030) +.afp.wasu.cn +# ||afp.chinanews.com^ (easylistchina.txt: 2029) +.afp.chinanews.com +# ||afocus.com.cn/s? (easylistchina.txt: 2028) +.afocus.com.cn/s\? +# ||adwordsing.com/img/2.jpg (easylistchina.txt: 2027) +.adwordsing.com/img/2\.jpg +# ||adwordsing.com/img/1.jpg (easylistchina.txt: 2026) +.adwordsing.com/img/1\.jpg +# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina.txt: 2025) +.advideoadmin.appledaily.com.tw/ov_player/ +# ||adsproject.nownews.com^$subdocument (easylistchina.txt: 2024) +.adsproject.nownews.com +# ||adspending01.bwnet.com.tw^ (easylistchina.txt: 2023) +.adspending01.bwnet.com.tw +# ||adsclick.yx.js.cn^ (easylistchina.txt: 2022) +.adsclick.yx.js.cn +# ||adpubs.yaolan.com^ (easylistchina.txt: 2021) +.adpubs.yaolan.com +# ||adpub.yaolan.com^ (easylistchina.txt: 2020) +.adpub.yaolan.com +# ||adp.cnool.net^ (easylistchina.txt: 2019) +.adp.cnool.net +# ||adnetpub.yaolan.com^ (easylistchina.txt: 2018) +.adnetpub.yaolan.com +# ||admin6.com/templates/index/default/images/100060.gif (easylistchina.txt: 2017) +.admin6.com/templates/index/default/images/100060\.gif +# ||admin5.com/lib/js/*_article (easylistchina.txt: 2016) +.admin5.com/lib/js/.*_article +# ||admin5.com/hezuo/action/ (easylistchina.txt: 2015) +.admin5.com/hezuo/action/ +# ||admin5.com/extras/ (easylistchina.txt: 2014) +.admin5.com/extras/ +# ||admin5.com/daohang/ (easylistchina.txt: 2013) +.admin5.com/daohang/ +# ||admin5.com/bd360qq/action/ (easylistchina.txt: 2012) +.admin5.com/bd360qq/action/ +# ||admin5.com/a5dao/ (easylistchina.txt: 2011) +.admin5.com/a5dao/ +# ||admin10000.com/skin/lagou_ (easylistchina.txt: 2010) +.admin10000.com/skin/lagou_ +# ||admd.yam.com^ (easylistchina.txt: 2009) +.admd.yam.com +# ||admaimai.com/inc/adv (easylistchina.txt: 2008) +.admaimai.com/inc/adv +# ||adm.zzfish.cn^ (easylistchina.txt: 2007) +.adm.zzfish.cn +# ||adm.zbinfo.net^ (easylistchina.txt: 2006) +.adm.zbinfo.net +# ||adm.xmfish.com^ (easylistchina.txt: 2005) +.adm.xmfish.com +# ||adm.qzbbs.com^ (easylistchina.txt: 2004) +.adm.qzbbs.com +# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina.txt: 2003) +.adm.leju.sina.com.cn/get_abp_list/ +# ||adm.jjj8.cn^ (easylistchina.txt: 2002) +.adm.jjj8.cn +# ||adm.funshion.com^ (easylistchina.txt: 2001) +.adm.funshion.com +# ||adm.bbcss.com^ (easylistchina.txt: 2000) +.adm.bbcss.com +# ||adm.86wan.com^ (easylistchina.txt: 1999) +.adm.86wan.com +# ||adm.72zx.com^ (easylistchina.txt: 1998) +.adm.72zx.com +# ||adm.265g.com^ (easylistchina.txt: 1997) +.adm.265g.com +# ||adm*.autoimg.cn^$object (easylistchina.txt: 1996) +.adm*./.*\.autoimg\.cn[^\w%.-] +.adm*.autoimg.cn +# ||adk.funshion.com^ (easylistchina.txt: 1995) +.adk.funshion.com +# ||adi*.cnool.net^ (easylistchina.txt: 1994) +.adi*./.*\.cnool\.net[^\w%.-] +.adi*.cnool.net +# ||adhome.1fangchan.com^ (easylistchina.txt: 1993) +.adhome.1fangchan.com +# ||adf.dahe.cn^ (easylistchina.txt: 1992) +.adf.dahe.cn +# ||add.freeimg8.com^ (easylistchina.txt: 1991) +.add.freeimg8.com +# ||add.dz19.net^ (easylistchina.txt: 1990) +.add.dz19.net +# ||adadmin.house365.com^ (easylistchina.txt: 1989) +.adadmin.house365.com +# ||ad.bjmama.net^ (easylistchina.txt: 1988) +.ad.bjmama.net +# ||ad.17173.com^ (easylistchina.txt: 1987) +.ad.17173.com +# ||ad.12306.cn/res/*.html (easylistchina.txt: 1986) +.ad.12306.cn/res/.*\.html +# ||actoys.net/statics/js/index/ad.js (easylistchina.txt: 1985) +.actoys.net/statics/js/index/ad\.js +# ||actoys.net/js/beitou.js (easylistchina.txt: 1984) +.actoys.net/js/beitou\.js +# ||actoys.net/index.php?m=poster& (easylistchina.txt: 1983) +.actoys.net/index\.php\?m=poster& +# ||act.chinatimes.com/aimg/ (easylistchina.txt: 1982) +.act.chinatimes.com/aimg/ +# ||acsystem.wasu.cn^ (easylistchina.txt: 1981) +.acsystem.wasu.cn +# ||acode.b2b.cn/JS/ (easylistchina.txt: 1980) +.acode.b2b.cn/JS/ +# ||acg.bz/2.gif (easylistchina.txt: 1978) +.acg.bz/2\.gif +# ||acg.bz/1.jpg (easylistchina.txt: 1977) +.acg.bz/1\.jpg +# ||acg.178.com/s/manhua218_140.html (easylistchina.txt: 1975) +.acg.178.com/s/manhua218_140\.html +# ||acg.178.com/201302/t_ (easylistchina.txt: 1974) +.acg.178.com/201302/t_ +# ||acfun.tv/adnew.aspx?id= (easylistchina.txt: 1973) +.acfun.tv/adnew\.aspx\?id= +# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina.txt: 1972) +.ac.tc.qq.com/store_file_download\?.*&dir_path=/admin/swf/ +# ||abcde.cn/2014images/*96060.jpg (easylistchina.txt: 1971) +.abcde.cn/2014images/.*96060\.jpg +# ||abc.hkepc.com^ (easylistchina.txt: 1970) +.abc.hkepc.com +# ||ab.ahlife.com^*.swf (easylistchina.txt: 1969) +.ab.ahlife.com/.*\.swf +# ||a67.com/a/*.js (easylistchina.txt: 1968) +.a67.com/a/.*\.js +# ||a6.hujiang.com^ (easylistchina.txt: 1967) +.a6.hujiang.com +# ||a5.yeshj.com^ (easylistchina.txt: 1966) +.a5.yeshj.com +# ||a4.yeshj.com^ (easylistchina.txt: 1965) +.a4.yeshj.com +# ||a2.b310.com^ (easylistchina.txt: 1964) +.a2.b310.com +# ||a.xizi.com^ (easylistchina.txt: 1963) +.a.xizi.com +# ||a.kbcool.com/Mon_*.swf (easylistchina.txt: 1962) +.a.kbcool.com/Mon_.*\.swf +# ||a.jiaodong.net/a/2013/ (easylistchina.txt: 1961) +.a.jiaodong.net/a/2013/ +# ||a.game.qidian.com/Show.aspx? (easylistchina.txt: 1960) +.a.game.qidian.com/Show\.aspx\? +# ||a.game.qidian.com/material/xs.js (easylistchina.txt: 1959) +.a.game.qidian.com/material/xs\.js +# ||a.game.qidian.com/Layout.aspx? (easylistchina.txt: 1958) +.a.game.qidian.com/Layout\.aspx\? +# ||a.baomihua.com^ (easylistchina.txt: 1957) +.a.baomihua.com +# ||a-m-s.poco.cn^ (easylistchina.txt: 1956) +.a-m-s.poco.cn +# ||9ye.com/Files/Editor/ad/ (easylistchina.txt: 1955) +.9ye.com/Files/Editor/ad/ +# ||9w1an.com/special/ (easylistchina.txt: 1954) +.9w1an.com/special/ +# ||9upk.com/js/$subdocument (easylistchina.txt: 1953) +.9upk.com/js/ +# ||9upk.com/images/95050.gif (easylistchina.txt: 1952) +.9upk.com/images/95050\.gif +# ||9sky.com/_gg/ (easylistchina.txt: 1951) +.9sky.com/_gg/ +# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina.txt: 1950) +.9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00\.jpg +# ||9lala.com/js/ (easylistchina.txt: 1949) +.9lala.com/js/ +# ||9kjj.com/images/*.gif (easylistchina.txt: 1948) +.9kjj.com/images/.*\.gif +# ||9ist.com/others/ad/ (easylistchina.txt: 1947) +.9ist.com/others/ad/ +# ||9ihome.com/info/ADTopvnet/ (easylistchina.txt: 1946) +.9ihome.com/info/ADTopvnet/ +# ||9ihome.com/adimgs/ (easylistchina.txt: 1945) +.9ihome.com/adimgs/ +# ||9ht.com/skin2012/js/tlAd.js (easylistchina.txt: 1944) +.9ht.com/skin2012/js/tlAd\.js +# ||9ez.me/embd.php?type= (easylistchina.txt: 1943) +.9ez.me/embd\.php\?type= +# ||9duw.com/pic/ (easylistchina.txt: 1942) +.9duw.com/pic/ +# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina.txt: 1941) +.9db.cc/wp-content/themes/xiucaozuo/js/ifphone\.js +# ||99ting.cn/image/*.gif (easylistchina.txt: 1940) +.99ting.cn/image/.*\.gif +# ||99ting.cn/789uc/gg.js (easylistchina.txt: 1939) +.99ting.cn/789uc/gg\.js +# ||99tianji.com/hack/kaifubiao.js (easylistchina.txt: 1938) +.99tianji.com/hack/kaifubiao\.js +# ||99mst.com/upfiles/adv/main02.jpg (easylistchina.txt: 1937) +.99mst.com/upfiles/adv/main02\.jpg +# ||99danji.com/otherhtml/ (easylistchina.txt: 1936) +.99danji.com/otherhtml/ +# ||99btgc01.info/uploads/*.gif (easylistchina.txt: 1935) +.99btgc01.info/uploads/.*\.gif +# ||999sdh.com/tu/*.js (easylistchina.txt: 1934) +.999sdh.com/tu/.*\.js +# ||99770.cc^$subdocument (easylistchina.txt: 1933) +.99770.cc +# ||9938.net/video/tvg/hot.js (easylistchina.txt: 1932) +.9938.net/video/tvg/hot\.js +# ||9938.net/video/tvg/footer.js (easylistchina.txt: 1931) +.9938.net/video/tvg/footer\.js +# ||97aa1.com/g/ (easylistchina.txt: 1930) +.97aa1.com/g/ +# ||973.com/xyx/p.js (easylistchina.txt: 1929) +.973.com/xyx/p\.js +# ||969g.com/common/iframe/ (easylistchina.txt: 1928) +.969g.com/common/iframe/ +# ||966266.com/a-d/ (easylistchina.txt: 1927) +.966266.com/a-d/ +# ||962.net/skin/library/js/bt-index.js (easylistchina.txt: 1926) +.962.net/skin/library/js/bt-index\.js +# ||962.net/show/index_ (easylistchina.txt: 1925) +.962.net/show/index_ +# ||962.net/show/cms_$script (easylistchina.txt: 1924) +.962.net/show/cms_ +# ||962.net/show/bt.js (easylistchina.txt: 1923) +.962.net/show/bt\.js +# ||962.net/show/all_$script (easylistchina.txt: 1922) +.962.net/show/all_ +# ||962.net/show/all.js (easylistchina.txt: 1921) +.962.net/show/all\.js +# ||96.43.97.243^ (easylistchina.txt: 1920) +.96.43.97.243 +# ||9553.com/otherhtml/ (easylistchina.txt: 1919) +.9553.com/otherhtml/ +# ||94994.com*/js/plugin/shoppingMall/ (easylistchina.txt: 1918) +.94994.com*./(.*/)?js/plugin/shoppingMall/ +# ||93t.cc/template/93t/images/41550.gif (easylistchina.txt: 1917) +.93t.cc/template/93t/images/41550\.gif +# ||93994.com/templets/images/dashan.jpg (easylistchina.txt: 1916) +.93994.com/templets/images/dashan\.jpg +# ||92wav.com/rj/*.gif (easylistchina.txt: 1915) +.92wav.com/rj/.*\.gif +# ||92dp.com/home/showg?id= (easylistchina.txt: 1914) +.92dp.com/home/showg\?id= +# ||92dp.com/dianping/videoad (easylistchina.txt: 1913) +.92dp.com/dianping/videoad +# ||91danji.com/js/lmt.js (easylistchina.txt: 1912) +.91danji.com/js/lmt\.js +# ||91danji.com/images/*.jpg (easylistchina.txt: 1911) +.91danji.com/images/.*\.jpg +# ||91danji.com/asset/temp/91danji- (easylistchina.txt: 1910) +.91danji.com/asset/temp/91danji- +# ||918999.com/xjgg/ (easylistchina.txt: 1909) +.918999.com/xjgg/ +# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina.txt: 1908) +.91.com/uploads/game/.*-%E5%B9%BF%E5%91%8A\. +# ||91.com/hezuo/ (easylistchina.txt: 1907) +.91.com/hezuo/ +# ||91.com/*/hezuo/ (easylistchina.txt: 1906) +.91.com/.*/hezuo/ +# ||90zy.cn/data/attachment/portal/ (easylistchina.txt: 1905) +.90zy.cn/data/attachment/portal/ +# ||90oo.com/tp/w981.gif (easylistchina.txt: 1904) +.90oo.com/tp/w981\.gif +# ||90oo.com/tp/msn.jpg (easylistchina.txt: 1903) +.90oo.com/tp/msn\.jpg +# ||90oo.com/tp/js (easylistchina.txt: 1902) +.90oo.com/tp/js +# ||90oo.com/tp/hg (easylistchina.txt: 1901) +.90oo.com/tp/hg +# ||90oo.com/tp/down.gif (easylistchina.txt: 1900) +.90oo.com/tp/down\.gif +# ||90oo.com/tp/90232.jpg (easylistchina.txt: 1899) +.90oo.com/tp/90232\.jpg +# ||90oo.com/tp/40 (easylistchina.txt: 1898) +.90oo.com/tp/40 +# ||90oo.com/tp/*980.gif (easylistchina.txt: 1897) +.90oo.com/tp/.*980\.gif +# ||90bifen.net/images/c_ad_ (easylistchina.txt: 1896) +.90bifen.net/images/c_ad_ +# ||9091tv.com/Runtime/js/vod (easylistchina.txt: 1895) +.9091tv.com/Runtime/js/vod +# ||9091tv.com/Runtime/js/topguanggao (easylistchina.txt: 1894) +.9091tv.com/Runtime/js/topguanggao +# ||9091tv.com/hhhh.htm (easylistchina.txt: 1893) +.9091tv.com/hhhh\.htm +# ||9091tv.com/dy/mtu.swf (easylistchina.txt: 1892) +.9091tv.com/dy/mtu\.swf +# ||9000wy.com/style/js/2015content.js (easylistchina.txt: 1891) +.9000wy.com/style/js/2015content\.js +# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina.txt: 1890) +.900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi\.gif +# ||8vod.net/detail/vod_*.js (easylistchina.txt: 1889) +.8vod.net/detail/vod_.*\.js +# ||8vod.net/detail/play_*.js (easylistchina.txt: 1888) +.8vod.net/detail/play_.*\.js +# ||8jkx.com^ (easylistchina.txt: 1886) +.8jkx.com +# ||8dyun.com/*.php$script (easylistchina.txt: 1885) +.8dyun.com/.*\.php +# ||8d8d.me/images/dealer.gif (easylistchina.txt: 1884) +.8d8d.me/images/dealer\.gif +# ||88liu.com/data/attachment/portal/ (easylistchina.txt: 1883) +.88liu.com/data/attachment/portal/ +# ||88gs.com/agfile/ (easylistchina.txt: 1882) +.88gs.com/agfile/ +# ||88448.com/images/gj/ (easylistchina.txt: 1881) +.88448.com/images/gj/ +# ||880fg.com/css/*.js (easylistchina.txt: 1880) +.880fg.com/css/.*\.js +# ||87994.com/images/rili.gif (easylistchina.txt: 1879) +.87994.com/images/rili\.gif +# ||86file.megajoy.com^ (easylistchina.txt: 1878) +.86file.megajoy.com +# ||8684.com/com/sys_ad_ (easylistchina.txt: 1877) +.8684.com/com/sys_ad_ +# ||8684.com/baidu/c.js (easylistchina.txt: 1876) +.8684.com/baidu/c\.js +# ||8684.com/20150123/f3d37541.jpg (easylistchina.txt: 1875) +.8684.com/20150123/f3d37541\.jpg +# ||8684.cn/id/ad_ (easylistchina.txt: 1874) +.8684.cn/id/ad_ +# ||8683ys.com/template/380x60.gif (easylistchina.txt: 1873) +.8683ys.com/template/380x60\.gif +# ||86696.com/images/indexad.jpg (easylistchina.txt: 1872) +.86696.com/images/indexad\.jpg +# ||855699.com^*qq.js (easylistchina.txt: 1871) +.855699.com/.*qq\.js +# ||855699.com/piao.js (easylistchina.txt: 1870) +.855699.com/piao\.js +# ||83133.com/api/ (easylistchina.txt: 1869) +.83133.com/api/ +# ||81qi.com/d/js/ (easylistchina.txt: 1868) +.81qi.com/d/js/ +# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina.txt: 1867) +.81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02\.jpg +# ||80txt.com/js3*.gif (easylistchina.txt: 1866) +.80txt.com/js3.*\.gif +# ||801.tianyaui.com^ (easylistchina.txt: 1865) +.801.tianyaui.com +# ||800j.com.cn/index.php?m=poster& (easylistchina.txt: 1864) +.800j.com.cn/index\.php\?m=poster& +# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina.txt: 1863) +.800j.com.cn/api\.php\?op=itemtopbanner& +# ||800j.com.cn/2014ad/ (easylistchina.txt: 1862) +.800j.com.cn/2014ad/ +# ||800j.com.cn/2013ad/ (easylistchina.txt: 1861) +.800j.com.cn/2013ad/ +# ||8*.tianya.cn^ (easylistchina.txt: 1860) +.8*./.*\.tianya\.cn[^\w%.-] +.8*.tianya.cn +# ||7y7.com/js/7y7.ad. (easylistchina.txt: 1859) +.7y7.com/js/7y7\.ad\. +# ||7xdown.com/youid/ (easylistchina.txt: 1858) +.7xdown.com/youid/ +# ||7xdown.com/idcgg/ (easylistchina.txt: 1857) +.7xdown.com/idcgg/ +# ||7vk.com/detail/ (easylistchina.txt: 1856) +.7vk.com/detail/ +# ||7scs.com/js/TOP.js (easylistchina.txt: 1855) +.7scs.com/js/TOP\.js +# ||7mad.7m.cn^ (easylistchina.txt: 1854) +.7mad.7m.cn +# ||7m.cn/v2/js/analysebanner.js (easylistchina.txt: 1853) +.7m.cn/v2/js/analysebanner\.js +# ||7m.cn/analyse/include/*_ (easylistchina.txt: 1852) +.7m.cn/analyse/include/.*_ +# ||7kankan.com/scripts/new/indext (easylistchina.txt: 1851) +.7kankan.com/scripts/new/indext +# ||7kankan.com/c/123.gif (easylistchina.txt: 1850) +.7kankan.com/c/123\.gif +# ||7k7k.com/loading/loading.htm (easylistchina.txt: 1849) +.7k7k.com/loading/loading\.htm +# ||7k7k.com/ad-*.htm (easylistchina.txt: 1848) +.7k7k.com/ad-.*\.htm +# ||7edown.com/greensoft/js/ (easylistchina.txt: 1847) +.7edown.com/greensoft/js/ +# ||7dsw.com/web8/js/ (easylistchina.txt: 1846) +.7dsw.com/web8/js/ +# ||7c.com/7c_*.html? (easylistchina.txt: 1845) +.7c.com/7c_.*\.html\? +# ||79pan.com/gao.gif (easylistchina.txt: 1844) +.79pan.com/gao\.gif +# ||78land.com/js/fumeiti.js (easylistchina.txt: 1843) +.78land.com/js/fumeiti\.js +# ||78dm.net/images/mingren250.jpg (easylistchina.txt: 1842) +.78dm.net/images/mingren250\.jpg +# ||789pan.com/templates/default/images/kuping.gif (easylistchina.txt: 1841) +.789pan.com/templates/default/images/kuping\.gif +# ||77kp.com/bd/ (easylistchina.txt: 1840) +.77kp.com/bd/ +# ||77bike.com/img/tern.swf (easylistchina.txt: 1839) +.77bike.com/img/tern\.swf +# ||77bike.com/img/sticker.gif (easylistchina.txt: 1838) +.77bike.com/img/sticker\.gif +# ||77bike.com/img/fsir.gif (easylistchina.txt: 1837) +.77bike.com/img/fsir\.gif +# ||777g.me/cs/ (easylistchina.txt: 1836) +.777g.me/cs/ +# ||77119.com/js/ (easylistchina.txt: 1835) +.77119.com/js/ +# ||76xh.com/skin/zxf/js/ad (easylistchina.txt: 1834) +.76xh.com/skin/zxf/js/ad +# ||766.com/upbox2/js/*.js (easylistchina.txt: 1833) +.766.com/upbox2/js/.*\.js +# ||76.73.85.179/js/v1.js (easylistchina.txt: 1832) +.76.73.85.179/js/v1\.js +# ||75.125.41.29:8080/ (easylistchina.txt: 1831) +.75.125.41.29:8080 +# ||73p37.com/js/top (easylistchina.txt: 1830) +.73p37.com/js/top +# ||73p37.com/js/playad.html (easylistchina.txt: 1829) +.73p37.com/js/playad\.html +# ||73p37.com/js/bottomall.js (easylistchina.txt: 1828) +.73p37.com/js/bottomall\.js +# ||72bbb.com/images/12.gif (easylistchina.txt: 1827) +.72bbb.com/images/12\.gif +# ||726w.com/sohu.html (easylistchina.txt: 1826) +.726w.com/sohu\.html +# ||70.86.24.120:8060/ (easylistchina.txt: 1825) +.70.86.24.120:8060 +# ||6vhao.com/d/f*.js (easylistchina.txt: 1824) +.6vhao.com/d/f.*\.js +# ||6vhao.com/d/960.js (easylistchina.txt: 1823) +.6vhao.com/d/960\.js +# ||6vdy.com/d/f*.js (easylistchina.txt: 1822) +.6vdy.com/d/f.*\.js +# ||6vdy.com/d/960.js (easylistchina.txt: 1821) +.6vdy.com/d/960\.js +# ||6park.com^$subdocument (easylistchina.txt: 1820) +.6park.com +# ||6park.com/wap/ (easylistchina.txt: 1819) +.6park.com/wap/ +# ||6park.com/parks/$script (easylistchina.txt: 1818) +.6park.com/parks/ +# ||6park.com/news/$script (easylistchina.txt: 1817) +.6park.com/news/ +# ||6park.com/img/15.png (easylistchina.txt: 1816) +.6park.com/img/15\.png +# ||6ddd.com/js/myfiles/down_ (easylistchina.txt: 1815) +.6ddd.com/js/myfiles/down_ +# ||6ddd.com/js/myfiles/banner.js (easylistchina.txt: 1814) +.6ddd.com/js/myfiles/banner\.js +# ||6d245gxt.52pk.com^ (easylistchina.txt: 1813) +.6d245gxt.52pk.com +# ||69nh.com/detail/player_ (easylistchina.txt: 1812) +.69nh.com/detail/player_ +# ||6949.com/ggs_ (easylistchina.txt: 1811) +.6949.com/ggs_ +# ||6949.com/640x44.htm (easylistchina.txt: 1810) +.6949.com/640x44\.htm +# ||69.30.217.155^*.png (easylistchina.txt: 1809) +.69.30.217.155/.*\.png +# ||68design.net/inc/news. (easylistchina.txt: 1808) +.68design.net/inc/news\. +# ||676000.com/001.htm (easylistchina.txt: 1807) +.676000.com/001\.htm +# ||67.159.44.187/js/v1.js (easylistchina.txt: 1806) +.67.159.44.187/js/v1\.js +# ||66ys.cc/d/$script (easylistchina.txt: 1805) +.66ys.cc/d/ +# ||66xinxin.com/js/ads888/ (easylistchina.txt: 1804) +.66xinxin.com/js/ads888/ +# ||66wz.com/data/attachment/portal/ (easylistchina.txt: 1803) +.66wz.com/data/attachment/portal/ +# ||66wz.com/adv2/ (easylistchina.txt: 1802) +.66wz.com/adv2/ +# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina.txt: 1801) +.66wz.com/48aa9454edd446fbef0df9e9aa5997f4\.gif +# ||66rd.cn^*96060 (easylistchina.txt: 1800) +.66rd.cn/.*96060 +# ||66rd.cn^*120250. (easylistchina.txt: 1799) +.66rd.cn/.*120250\. +# ||66rd.cn^*100060. (easylistchina.txt: 1798) +.66rd.cn/.*100060\. +# ||66rd.cn^*1000300. (easylistchina.txt: 1797) +.66rd.cn/.*1000300\. +# ||66rd.cn/pic/rdwmh800.gif (easylistchina.txt: 1796) +.66rd.cn/pic/rdwmh800\.gif +# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina.txt: 1795) +.66rd.cn/pic/rdrccs2014\.jpg +# ||66rd.cn/pic/itv130.jpg (easylistchina.txt: 1794) +.66rd.cn/pic/itv130\.jpg +# ||66rd.cn/pic/*1000. (easylistchina.txt: 1793) +.66rd.cn/pic/.*1000\. +# ||66rd.cn/js/foot.js (easylistchina.txt: 1792) +.66rd.cn/js/foot\.js +# ||66ip.cn/klz/953X164.gif (easylistchina.txt: 1791) +.66ip.cn/klz/953X164\.gif +# ||66ip.cn/common/img/yaoyao.jpg (easylistchina.txt: 1790) +.66ip.cn/common/img/yaoyao\.jpg +# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina.txt: 1789) +.66hbo.com/images/new1/uploads/index_banner/.*\.jpg +# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina.txt: 1788) +.66hbo.com/images/new1/uploads/index_banner/.*\.gif +# ||66e.cc/d/$script (easylistchina.txt: 1787) +.66e.cc/d/ +# ||666pan.com/666a/ (easylistchina.txt: 1786) +.666pan.com/666a/ +# ||6665432.com^*.gif (easylistchina.txt: 1785) +.6665432.com/.*\.gif +# ||66384.com/templets/SWFad (easylistchina.txt: 1784) +.66384.com/templets/SWFad +# ||66384.com/templets/js/stats.js (easylistchina.txt: 1783) +.66384.com/templets/js/stats\.js +# ||6620070.com/js/ (easylistchina.txt: 1782) +.6620070.com/js/ +# ||66.fmx.cn/js/ (easylistchina.txt: 1781) +.66.fmx.cn/js/ +# ||654mmm.com^ (easylistchina.txt: 1780) +.654mmm.com +# ||62422.cn/js/inc/13.swf (easylistchina.txt: 1779) +.62422.cn/js/inc/13\.swf +# ||62422.cn/ggimg/ (easylistchina.txt: 1778) +.62422.cn/ggimg/ +# ||61.235.249.195^*/Default.aspx?id= (easylistchina.txt: 1777) +.61.235.249.195/.*/Default\.aspx\?id= +# ||61.164.108.184^*.swf (easylistchina.txt: 1776) +.61.164.108.184/.*\.swf +# ||61.164.108.184^*.gif (easylistchina.txt: 1775) +.61.164.108.184/.*\.gif +# ||61.164.108.104:4275/*.gif (easylistchina.txt: 1774) +.61.164.108.104:4275/.*\.gif +# ||61.147.92.251:81/120x160.asp (easylistchina.txt: 1773) +.61.147.92.251:81/120x160\.asp +# ||61.143.225.176:818/nowscore/ (easylistchina.txt: 1772) +.61.143.225.176:818/nowscore/ +# ||60808.org/a/*.jpg (easylistchina.txt: 1771) +.60808.org/a/.*\.jpg +# ||600km.com/template/*/ad/ (easylistchina.txt: 1770) +.600km.com/template/.*/ad/ +# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina.txt: 1769) +.600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ +# ||6.gy/wp-content/uploads/*/ad (easylistchina.txt: 1768) +.6.gy/wp-content/uploads/.*/ad +# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina.txt: 1767) +.6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40\.jpg +# ||6.cn/coop/pub/getRand.php? (easylistchina.txt: 1766) +.6.cn/coop/pub/getRand\.php\? +# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina.txt: 1765) +.6.cn/coop/pub/getMiniPage\.php\?src= +# ||5ydj.com/js/shop.js (easylistchina.txt: 1764) +.5ydj.com/js/shop\.js +# ||5ydj.com/js/hometj.js (easylistchina.txt: 1763) +.5ydj.com/js/hometj\.js +# ||5ydj.com/images/banner/ (easylistchina.txt: 1762) +.5ydj.com/images/banner/ +# ||5y9nfpes.52pk.com^ (easylistchina.txt: 1761) +.5y9nfpes.52pk.com +# ||5vdd.com/opear.jpg (easylistchina.txt: 1760) +.5vdd.com/opear\.jpg +# ||5vdd.com/iqiyi.jpg (easylistchina.txt: 1759) +.5vdd.com/iqiyi\.jpg +# ||5vdd.com/ie.gif (easylistchina.txt: 1758) +.5vdd.com/ie\.gif +# ||5vdd.com/2345ws.jpg (easylistchina.txt: 1757) +.5vdd.com/2345ws\.jpg +# ||5tps.com/js/bo_al.js (easylistchina.txt: 1756) +.5tps.com/js/bo_al\.js +# ||5tps.com/js/al_ (easylistchina.txt: 1755) +.5tps.com/js/al_ +# ||5moe.com/player/ad.xml (easylistchina.txt: 1754) +.5moe.com/player/ad\.xml +# ||5iyq.com/skin/default/js/topad (easylistchina.txt: 1753) +.5iyq.com/skin/default/js/topad +# ||5ips.net/love/ (easylistchina.txt: 1752) +.5ips.net/love/ +# ||5imx.com/BBS/image/img/ (easylistchina.txt: 1751) +.5imx.com/BBS/image/img/ +# ||5imx.com/BBS/image/image/ (easylistchina.txt: 1750) +.5imx.com/BBS/image/image/ +# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina.txt: 1749) +.5imx.com/BBS/data/attachment/common/news/ +# ||5ilog.com/qq/js/jsgg.js (easylistchina.txt: 1748) +.5ilog.com/qq/js/jsgg\.js +# ||5icool.org/uploadfile/poster/1080x60. (easylistchina.txt: 1747) +.5icool.org/uploadfile/poster/1080x60\. +# ||5i.com/include/js/ad_ (easylistchina.txt: 1746) +.5i.com/include/js/ad_ +# ||5i.com/images/5ibbtangct.js (easylistchina.txt: 1745) +.5i.com/images/5ibbtangct\.js +# ||5dmail.net/js/ (easylistchina.txt: 1744) +.5dmail.net/js/ +# ||5dmail.net/image/ORF_1000.gif (easylistchina.txt: 1743) +.5dmail.net/image/ORF_1000\.gif +# ||5dmail.net/image/ad_ (easylistchina.txt: 1742) +.5dmail.net/image/ad_ +# ||5dmail.net/image/$object (easylistchina.txt: 1741) +.5dmail.net/image/ +# ||5adm.net/79070.gif (easylistchina.txt: 1740) +.5adm.net/79070\.gif +# ||5944.net/source/css/images/ad_ (easylistchina.txt: 1739) +.5944.net/source/css/images/ad_ +# ||592siwa.com/tools/ (easylistchina.txt: 1738) +.592siwa.com/tools/ +# ||591hx.com/zyrk_dy/gwjl.html (easylistchina.txt: 1737) +.591hx.com/zyrk_dy/gwjl\.html +# ||591hx.com/lunbo/ (easylistchina.txt: 1736) +.591hx.com/lunbo/ +# ||591hx.com/js/floatbox.js (easylistchina.txt: 1735) +.591hx.com/js/floatbox\.js +# ||591hx.com/js/dll.js (easylistchina.txt: 1734) +.591hx.com/js/dll\.js +# ||591hx.com/images/0000.jpg (easylistchina.txt: 1733) +.591hx.com/images/0000\.jpg +# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina.txt: 1732) +.59.36.101.209:888/link/vc_280x192\.gif +# ||58cdn.com.cn/ds/tgbrand/ (easylistchina.txt: 1731) +.58cdn.com.cn/ds/tgbrand/ +# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina.txt: 1730) +# ||58.com/ui7/*banner_ (easylistchina.txt: 1729) +.58.com/ui7/.*banner_ +# ||58.com/show/ads? (easylistchina.txt: 1728) +.58.com/show/ads\? +# ||58.com/ds/tgbrand/ (easylistchina.txt: 1727) +.58.com/ds/tgbrand/ +# ||58.com/ds/jinrong/ban/ (easylistchina.txt: 1726) +.58.com/ds/jinrong/ban/ +# ||576tv.com/Scripts/home.js (easylistchina.txt: 1725) +.576tv.com/Scripts/home\.js +# ||56img.com^*/search-engine-promotion.js (easylistchina.txt: 1724) +.56img.com/.*/search-engine-promotion\.js +# ||56img.com^*/baidu-promotion.js (easylistchina.txt: 1723) +.56img.com/.*/baidu-promotion\.js +# ||56ads.com/js/main.js (easylistchina.txt: 1722) +.56ads.com/js/main\.js +# ||56.com/js/promo/ (easylistchina.txt: 1721) +.56.com/js/promo/ +# ||55music.net/dazhe.jpg (easylistchina.txt: 1720) +.55music.net/dazhe\.jpg +# ||55aaee.com/detail/ (easylistchina.txt: 1719) +.55aaee.com/detail/ +# ||55125.cn/ggclass/ (easylistchina.txt: 1718) +.55125.cn/ggclass/ +# ||54new.com/da/ (easylistchina.txt: 1716) +.54new.com/da/ +# ||543et.com/detail/ (easylistchina.txt: 1715) +.543et.com/detail/ +# ||5399.com/poster_js/ (easylistchina.txt: 1714) +.5399.com/poster_js/ +# ||52zy.com/other/js/ (easylistchina.txt: 1713) +.52zy.com/other/js/ +# ||52wmb.com/2014js/GG_ (easylistchina.txt: 1712) +.52wmb.com/2014js/GG_ +# ||52waha.com/static/js/function_bbs.js (easylistchina.txt: 1711) +.52waha.com/static/js/function_bbs\.js +# ||52verycd.com/9241505.gif (easylistchina.txt: 1710) +.52verycd.com/9241505\.gif +# ||52tian.net/qq/ (easylistchina.txt: 1709) +.52tian.net/qq/ +# ||52solution.com/js/duilian-bbs.js (easylistchina.txt: 1708) +.52solution.com/js/duilian-bbs\.js +# ||52rd.com/Pic2/*_600_60. (easylistchina.txt: 1707) +.52rd.com/Pic2/.*_600_60\. +# ||52rd.com/Pic/Click/ (easylistchina.txt: 1706) +.52rd.com/Pic/Click/ +# ||52pk.com/jkjs/imp- (easylistchina.txt: 1705) +.52pk.com/jkjs/imp- +# ||52kdm.com/static/52kdm/m/ (easylistchina.txt: 1704) +.52kdm.com/static/52kdm/m/ +# ||52jt.net/images/banner_taozhuang.jpg (easylistchina.txt: 1703) +.52jt.net/images/banner_taozhuang\.jpg +# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina.txt: 1702) +.52jifenbao.net/wp-content/uploads/2014/04/xinren\.jpg +# ||52hardware.com/topic/a2 (easylistchina.txt: 1701) +.52hardware.com/topic/a2 +# ||52hardware.com/images/baimg/ (easylistchina.txt: 1700) +.52hardware.com/images/baimg/ +# ||52fanquan.com/index.php?i= (easylistchina.txt: 1699) +.52fanquan.com/index\.php\?i= +# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina.txt: 1698) +.52che.com/NewLocal/TemplateHtml/headflash1_ +# ||52che.com/Inc/FooterComm_ (easylistchina.txt: 1697) +.52che.com/Inc/FooterComm_ +# ||52ch.net/data/attachment/portal/ (easylistchina.txt: 1696) +.52ch.net/data/attachment/portal/ +# ||52ch.net/data/advimg/ (easylistchina.txt: 1695) +.52ch.net/data/advimg/ +# ||521000.com/com/BBS_AD. (easylistchina.txt: 1694) +.521000.com/com/BBS_AD\. +# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina.txt: 1693) +.521000.com/bbs/inc/Dv_Adv\.js +# ||520rr.com*/baidu/ (easylistchina.txt: 1692) +.520rr.com*./(.*/)?baidu/ +# ||520kankan.com/960x80.gif (easylistchina.txt: 1691) +.520kankan.com/960x80\.gif +# ||520bdy.com/images/888.jpg (easylistchina.txt: 1690) +.520bdy.com/images/888\.jpg +# ||51zxw.net/images/zhaopin.jpg (easylistchina.txt: 1689) +.51zxw.net/images/zhaopin\.jpg +# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina.txt: 1688) +.51zxw.net/fzsplayer/adtextzxw\.asp\? +# ||51zxw.net/adad/ (easylistchina.txt: 1687) +.51zxw.net/adad/ +# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina.txt: 1686) +.51ztzj.com/res/web/img/pic/inshow\.jpg +# ||51ztzj.com/res/web/img/download_sign (easylistchina.txt: 1685) +.51ztzj.com/res/web/img/download_sign +# ||51ztzj.com/js/you.js (easylistchina.txt: 1684) +.51ztzj.com/js/you\.js +# ||51xxs.com/users/public/*.swf (easylistchina.txt: 1683) +.51xxs.com/users/public/.*\.swf +# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina.txt: 1682) +.51xuediannao.com/plus/mytag_js\.php\?aid= +# ||51wan.com/web/v1/index/images/spec/ (easylistchina.txt: 1681) +.51wan.com/web/v1/index/images/spec/ +# ||51wan.com/img/js/xyadjs_ (easylistchina.txt: 1680) +.51wan.com/img/js/xyadjs_ +# ||51testing.com/imagesnew/indextop.jpg (easylistchina.txt: 1679) +.51testing.com/imagesnew/indextop\.jpg +# ||51testing.com/imagesnew/960x101.jpg (easylistchina.txt: 1678) +.51testing.com/imagesnew/960x101\.jpg +# ||51testing.com/imagesnew/642x53.gif (easylistchina.txt: 1677) +.51testing.com/imagesnew/642x53\.gif +# ||51testing.com/imagesnew/307x90.gif (easylistchina.txt: 1676) +.51testing.com/imagesnew/307x90\.gif +# ||51testing.com/imagesnew/*.swf (easylistchina.txt: 1675) +.51testing.com/imagesnew/.*\.swf +# ||51testing.com/images/sz51com.swf (easylistchina.txt: 1674) +.51testing.com/images/sz51com\.swf +# ||51test.net/js_new/baidu/ (easylistchina.txt: 1673) +.51test.net/js_new/baidu/ +# ||51test.net/js_new/*_right_middle.js (easylistchina.txt: 1672) +.51test.net/js_new/.*_right_middle\.js +# ||51test.net/js_new/*_content_up.js (easylistchina.txt: 1671) +.51test.net/js_new/.*_content_up\.js +# ||51test.net/js_new/*_content_down.js (easylistchina.txt: 1670) +.51test.net/js_new/.*_content_down\.js +# ||51test.net/js_new/*_banner.js (easylistchina.txt: 1669) +.51test.net/js_new/.*_banner\.js +# ||51test.net/baiduunion/ (easylistchina.txt: 1668) +.51test.net/baiduunion/ +# ||51t.com^$subdocument (easylistchina.txt: 1667) +.51t.com +# ||51ou.com/images/taoping (easylistchina.txt: 1666) +.51ou.com/images/taoping +# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina.txt: 1665) +.51netu.com.cn/index\.php/index/advShow\?adpid= +# ||51img.ajiang.net^*.gif (easylistchina.txt: 1663) +.51img.ajiang.net/.*\.gif +# ||51hanhua.com/2013/ (easylistchina.txt: 1662) +.51hanhua.com/2013/ +# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina.txt: 1661) +.51gugu.com/popwin/AutoHAdShow\.aspx +# ||51gaojian.com/js/tj.js (easylistchina.txt: 1660) +.51gaojian.com/js/tj\.js +# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina.txt: 1659) +.51fanli.net/misc/images/invite-v4/banner\.gif +# ||51cto.com/js/blog_top_list.php (easylistchina.txt: 1658) +.51cto.com/js/blog_top_list\.php +# ||51credit.com/credit/images/*/xyb (easylistchina.txt: 1657) +.51credit.com/credit/images/.*/xyb +# ||51bczx.com/js/float.js (easylistchina.txt: 1656) +.51bczx.com/js/float\.js +# ||51bczx.com/img/51bczx/ (easylistchina.txt: 1655) +.51bczx.com/img/51bczx/ +# ||51bczx.com/attachment/Mon_ (easylistchina.txt: 1654) +.51bczx.com/attachment/Mon_ +# ||51ape.com/d/js/ (easylistchina.txt: 1653) +.51ape.com/d/js/ +# ||5185.cc/forum/*.gif (easylistchina.txt: 1652) +.5185.cc/forum/.*\.gif +# ||5184.com/gk2014/ebuy (easylistchina.txt: 1651) +.5184.com/gk2014/ebuy +# ||5184.com/gk2014/*_315. (easylistchina.txt: 1650) +.5184.com/gk2014/.*_315\. +# ||5184.com/gk20*_240. (easylistchina.txt: 1649) +.5184.com/gk20.*_240\. +# ||5184.com/container/html/news_view_gg (easylistchina.txt: 1648) +.5184.com/container/html/news_view_gg +# ||51688.cc/ya/ (easylistchina.txt: 1647) +.51688.cc/ya/ +# ||512ms.com/js/index_ggw_show.js (easylistchina.txt: 1646) +.512ms.com/js/index_ggw_show\.js +# ||51.com/up/bdfmt/ (easylistchina.txt: 1645) +.51.com/up/bdfmt/ +# ||506ys.com/js/200.js (easylistchina.txt: 1644) +.506ys.com/js/200\.js +# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina.txt: 1643) +.5068.com/uploads/allimg/150116/71_150116175734_1\.jpg +# ||5011.net/template/images/*0.gif (easylistchina.txt: 1642) +.5011.net/template/images/.*0\.gif +# ||500xxxx.com/go.js (easylistchina.txt: 1641) +.500xxxx.com/go\.js +# ||50.7.31.230/ads_ (easylistchina.txt: 1640) +.50.7.31.230/ads_ +# ||4kong.com/xk.jpg (easylistchina.txt: 1639) +.4kong.com/xk\.jpg +# ||46g.cn/images/top.gif (easylistchina.txt: 1638) +.46g.cn/images/top\.gif +# ||464mnk.com/templets/new/static/js/common.js (easylistchina.txt: 1637) +.464mnk.com/templets/new/static/js/common\.js +# ||44921.cn/ajsv1/flashad_ (easylistchina.txt: 1636) +.44921.cn/ajsv1/flashad_ +# ||4399.com/loadimg/loading.htm (easylistchina.txt: 1635) +.4399.com/loadimg/loading\.htm +# ||4399.com/loadimg/iframe_ (easylistchina.txt: 1634) +.4399.com/loadimg/iframe_ +# ||4399.com/expire1day/ (easylistchina.txt: 1633) +.4399.com/expire1day/ +# ||4399.com/baiduad/ (easylistchina.txt: 1632) +.4399.com/baiduad/ +# ||40wan.com/js/www2/ (easylistchina.txt: 1631) +.40wan.com/js/www2/ +# ||40407.com/templets/default/images/index.js (easylistchina.txt: 1630) +.40407.com/templets/default/images/index\.js +# ||40407.com/plus_rpad_ (easylistchina.txt: 1629) +.40407.com/plus_rpad_ +# ||40407.com/plus/rpad/ (easylistchina.txt: 1628) +.40407.com/plus/rpad/ +# ||40407.com/plus/pthc/zqdl.php? (easylistchina.txt: 1627) +.40407.com/plus/pthc/zqdl\.php\? +# ||4020.la/hi/ (easylistchina.txt: 1626) +.4020.la/hi/ +# ||400516.com/data/attachment/album/ (easylistchina.txt: 1625) +.400516.com/data/attachment/album/ +# ||3sjt.com/3sjtimg/ (easylistchina.txt: 1624) +.3sjt.com/3sjtimg/ +# ||3qdati.com/gg.gif (easylistchina.txt: 1623) +.3qdati.com/gg\.gif +# ||3qcc.com/js/bb.js (easylistchina.txt: 1622) +.3qcc.com/js/bb\.js +# ||3h3.com/js/show/ (easylistchina.txt: 1621) +.3h3.com/js/show/ +# ||3h3.com/js/listad.js (easylistchina.txt: 1620) +.3h3.com/js/listad\.js +# ||3h3.com/js/homepage.js (easylistchina.txt: 1619) +.3h3.com/js/homepage\.js +# ||3g.cn/js/noblockme/ (easylistchina.txt: 1618) +.3g.cn/js/noblockme/ +# ||3dm.huya.com^ (easylistchina.txt: 1617) +.3dm.huya.com +# ||3dezu.cn/zt/8866.gif (easylistchina.txt: 1616) +.3dezu.cn/zt/8866\.gif +# ||3d66.com/gx2013g/ (easylistchina.txt: 1615) +.3d66.com/gx2013g/ +# ||3d66.com/gg-swf/ (easylistchina.txt: 1614) +.3d66.com/gg-swf/ +# ||3boys2girls.com^$subdocument (easylistchina.txt: 1613) +.3boys2girls.com +# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina.txt: 1612) +.3boys2girls.com/templates/default/2013/life/160b5\.js +# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina.txt: 1611) +.3boys2girls.com/newfile/image2010/banner_housead_ +# ||3987.com/images/ (easylistchina.txt: 1610) +.3987.com/images/ +# ||39.net/rel/k13.php?adid= (easylistchina.txt: 1609) +.39.net/rel/k13\.php\?adid= +# ||39.net/js/google/ (easylistchina.txt: 1608) +.39.net/js/google/ +# ||39.net/js/baidu/ (easylistchina.txt: 1607) +.39.net/js/baidu/ +# ||39.net/creative/ (easylistchina.txt: 1606) +.39.net/creative/ +# ||39.net/client/39/c.js (easylistchina.txt: 1605) +.39.net/client/39/c\.js +# ||38v.com/38v-b.gif (easylistchina.txt: 1604) +.38v.com/38v-b\.gif +# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina.txt: 1603) +.36tv.cn/statics/images/jinhuatv/ad +# ||36tv.cn/ad_pic/ (easylistchina.txt: 1602) +.36tv.cn/ad_pic/ +# ||36dm.com/js/nu (easylistchina.txt: 1601) +.36dm.com/js/nu +# ||36dm.com/images/*acgsou.gif (easylistchina.txt: 1600) +.36dm.com/images/.*acgsou\.gif +# ||365xs.org/js/xiayizhang.js (easylistchina.txt: 1599) +.365xs.org/js/xiayizhang\.js +# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina.txt: 1598) +.365kl.net/template/eis_x3_city_a_1/eis/baobao\.gif +# ||3634.com/qq/ (easylistchina.txt: 1597) +.3634.com/qq/ +# ||360safego.com^ (easylistchina.txt: 1596) +.360safego.com +# ||360kan.com/special/iframe/ (easylistchina.txt: 1595) +.360kan.com/special/iframe/ +# ||360bo.cc/js/float.js (easylistchina.txt: 1594) +.360bo.cc/js/float\.js +# ||360.cn/index/showjokes?callback= (easylistchina.txt: 1593) +.360.cn/index/showjokes\?callback= +# ||360.cn/festival_zone.html (easylistchina.txt: 1592) +.360.cn/festival_zone\.html +# ||360-bo.com/js/float2.js (easylistchina.txt: 1591) +.360-bo.com/js/float2\.js +# ||360-bo.com/js/float.js (easylistchina.txt: 1590) +.360-bo.com/js/float\.js +# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina.txt: 1589) +.356ys.com/template/tieniudy/images/g_js/ +# ||3520.cc/js/3520/ (easylistchina.txt: 1588) +.3520.cc/js/3520/ +# ||3464.com/Script/RightWindows.js (easylistchina.txt: 1587) +.3464.com/Script/RightWindows\.js +# ||33xs.com/js/mg (easylistchina.txt: 1586) +.33xs.com/js/mg +# ||33xs.com/js/g (easylistchina.txt: 1585) +.33xs.com/js/g +# ||33xs.com/js/d.js (easylistchina.txt: 1584) +.33xs.com/js/d\.js +# ||33xs.com/hot/ (easylistchina.txt: 1583) +.33xs.com/hot/ +# ||33lc.com/lvcha/jquery.gotop.js (easylistchina.txt: 1582) +.33lc.com/lvcha/jquery\.gotop\.js +# ||33av.net/Uploads/ad/ (easylistchina.txt: 1581) +.33av.net/Uploads/ad/ +# ||3399.com/Common/OnlineServer.html (easylistchina.txt: 1580) +.3399.com/Common/OnlineServer\.html +# ||3399.com/act/fk/ (easylistchina.txt: 1579) +.3399.com/act/fk/ +# ||3399.com/act/5599/js/kuang (easylistchina.txt: 1578) +.3399.com/act/5599/js/kuang +# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina.txt: 1577) +.33.autoimg.cn/t/Adhtmlnet/.*\.swf +# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina.txt: 1576) +.33.autoimg.cn/t/Adhtmlnet/.*\.jpg +# ||33.autoimg.cn/homeurl/*.js (easylistchina.txt: 1575) +.33.autoimg.cn/homeurl/.*\.js +# ||33.autohome.com.cn^$object,script (easylistchina.txt: 1574) +.33.autohome.com.cn +# ||32666.com/img/ (easylistchina.txt: 1573) +.32666.com/img/ +# ||32666.com/ads/ (easylistchina.txt: 1572) +.32666.com/ads/ +# ||324324.cn/zz/ (easylistchina.txt: 1571) +.324324.cn/zz/ +# ||3199.cn/ggs_ (easylistchina.txt: 1570) +.3199.cn/ggs_ +# ||315che.com/upload_img/aimg/ (easylistchina.txt: 1569) +.315che.com/upload_img/aimg/ +# ||315che.com/addata/ (easylistchina.txt: 1568) +.315che.com/addata/ +# ||3155.com/js/ifile (easylistchina.txt: 1567) +.3155.com/js/ifile +# ||310v.com/js/f2.js.js (easylistchina.txt: 1566) +.310v.com/js/f2\.js\.js +# ||310v.com/images/wap_520x60.gif (easylistchina.txt: 1565) +.310v.com/images/wap_520x60\.gif +# ||310v.com/images/tmp_adpic (easylistchina.txt: 1564) +.310v.com/images/tmp_adpic +# ||310v.com/images/lingdai.gif (easylistchina.txt: 1563) +.310v.com/images/lingdai\.gif +# ||310v.com/adh.js (easylistchina.txt: 1562) +.310v.com/adh\.js +# ||2zzt.com/images/ (easylistchina.txt: 1561) +.2zzt.com/images/ +# ||2ujj.com/js/bo.js (easylistchina.txt: 1560) +.2ujj.com/js/bo\.js +# ||2u.com.cn/js/2012_movie.js (easylistchina.txt: 1559) +.2u.com.cn/js/2012_movie\.js +# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina.txt: 1558) +.2u-img.com.cn/modules/38_module_images/4747\.jpg +# ||2muslim.com/data/attachment/portal/ (easylistchina.txt: 1557) +.2muslim.com/data/attachment/portal/ +# ||2chcn.com/img/3171150.jpg (easylistchina.txt: 1556) +.2chcn.com/img/3171150\.jpg +# ||2chcn.com/img/*336x280 (easylistchina.txt: 1555) +.2chcn.com/img/.*336x280 +# ||2ccc.com/images/WebXone.gif (easylistchina.txt: 1554) +.2ccc.com/images/WebXone\.gif +# ||2ccc.com/images/sino.gif (easylistchina.txt: 1553) +.2ccc.com/images/sino\.gif +# ||2ccc.com/images/show/ (easylistchina.txt: 1552) +.2ccc.com/images/show/ +# ||2btu.com/gg.jpg (easylistchina.txt: 1551) +.2btu.com/gg\.jpg +# ||28hse.com/adsman/www/images/ (easylistchina.txt: 1550) +.28hse.com/adsman/www/images/ +# ||27.255.67.120^ (easylistchina.txt: 1549) +.27.255.67.120 +# ||268de.com/js/ (easylistchina.txt: 1548) +.268de.com/js/ +# ||265.com/static/pages/img/*_ads. (easylistchina.txt: 1547) +.265.com/static/pages/img/.*_ads\. +# ||25xz.com/degeye.gif (easylistchina.txt: 1546) +.25xz.com/degeye\.gif +# ||25xz.com/ads/ (easylistchina.txt: 1545) +.25xz.com/ads/ +# ||258zb.com/jsData/users.aspx (easylistchina.txt: 1544) +.258zb.com/jsData/users\.aspx +# ||2500sz.com^*/655x60. (easylistchina.txt: 1543) +.2500sz.com/.*/655x60\. +# ||2500sz.com/site/ (easylistchina.txt: 1542) +.2500sz.com/site/ +# ||2500sz.com/ad20 (easylistchina.txt: 1541) +.2500sz.com/ad20 +# ||23zw.com/sda/mediav.html (easylistchina.txt: 1540) +.23zw.com/sda/mediav\.html +# ||23youku.com/Runtime/js/ (easylistchina.txt: 1539) +.23youku.com/Runtime/js/ +# ||23wx.com/scripts/style_tan.js (easylistchina.txt: 1538) +.23wx.com/scripts/style_tan\.js +# ||23sc.cn*/007/js/$script (easylistchina.txt: 1537) +.23sc.cn*./(.*/)?007/js/ +# ||2345.com/xiaoimg/swf/flash/ (easylistchina.txt: 1536) +.2345.com/xiaoimg/swf/flash/ +# ||2345.com/right/site/like/gul_default.js (easylistchina.txt: 1535) +.2345.com/right/site/like/gul_default\.js +# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina.txt: 1534) +.2345.com/jifenimg/img/common/logo\.png +# ||2345.com/images/tgPic/gameTmp- (easylistchina.txt: 1533) +.2345.com/images/tgPic/gameTmp- +# ||2345.com/duoteimg/duotehtml/ (easylistchina.txt: 1532) +.2345.com/duoteimg/duotehtml/ +# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina.txt: 1531) +.2345.com/dianyingimg/tv/ivy/taobao/ +# ||2345.com/dianyingimg/ads/ (easylistchina.txt: 1530) +.2345.com/dianyingimg/ads/ +# ||2345.com/data/part/part_*_bottom (easylistchina.txt: 1529) +.2345.com/data/part/part_.*_bottom +# ||2345.com/data/part/part_*_bann (easylistchina.txt: 1528) +.2345.com/data/part/part_.*_bann +# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina.txt: 1527) +.2300sjz.com/liv_loadfile/folder81/fold +# ||22mt.la/bookpic/00*.jpg (easylistchina.txt: 1526) +.22mt.la/bookpic/00.*\.jpg +# ||2258.com/new_static/*/ad/ (easylistchina.txt: 1525) +.2258.com/new_static/.*/ad/ +# ||2233777.com/bak/ad/ (easylistchina.txt: 1524) +.2233777.com/bak/ad/ +# ||222.47.26.21/m.js (easylistchina.txt: 1523) +.222.47.26.21/m\.js +# ||222.45.224.77^*.js (easylistchina.txt: 1522) +.222.45.224.77/.*\.js +# ||222.33.59.55/show.js (easylistchina.txt: 1521) +.222.33.59.55/show\.js +# ||221.5.69.52^*.js (easylistchina.txt: 1520) +.221.5.69.52/.*\.js +# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina.txt: 1519) +.2200book.com/themes/v2/images/frxz_tonglan\.gif +# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina.txt: 1518) +.2200book.com/configs/article/pagebottom1yc\.js +# ||21yq.com/mg/21yq/ (easylistchina.txt: 1517) +.21yq.com/mg/21yq/ +# ||21uscity.com/zonelist.php (easylistchina.txt: 1516) +.21uscity.com/zonelist\.php +# ||21edu8.com/js/mymoney/ (easylistchina.txt: 1515) +.21edu8.com/js/mymoney/ +# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina.txt: 1514) +.21cnimg.com/zt/she/2015/shetext/she\.jpg +# ||219.238.159.182^*.html (easylistchina.txt: 1513) +.219.238.159.182/.*\.html +# ||219.238.159.181^*.html (easylistchina.txt: 1512) +.219.238.159.181/.*\.html +# ||219.153.41.175/*.js (easylistchina.txt: 1511) +.219.153.41.175/.*\.js +# ||219.153.41.154/v1/ (easylistchina.txt: 1510) +.219.153.41.154/v1/ +# ||21394.com/weizi.js (easylistchina.txt: 1509) +.21394.com/weizi\.js +# ||211600.com/images/portal/ (easylistchina.txt: 1508) +.211600.com/images/portal/ +# ||211600.com/data/attachment/portal/ (easylistchina.txt: 1507) +.211600.com/data/attachment/portal/ +# ||204.12.228.236^*.png (easylistchina.txt: 1506) +.204.12.228.236/.*\.png +# ||204.12.228.235^*.png (easylistchina.txt: 1505) +.204.12.228.235/.*\.png +# ||201*.myhard.com^ (easylistchina.txt: 1504) +.201*./.*\.myhard\.com[^\w%.-] +.201*.myhard.com +# ||201*.073img.com^ (easylistchina.txt: 1503) +.201*./.*\.073img\.com[^\w%.-] +.201*.073img.com +# ||2008xxx.com:888 (easylistchina.txt: 1502) +.2008xxx.com:888*. +# ||1pad.cn/ahead/01.gif (easylistchina.txt: 1501) +.1pad.cn/ahead/01\.gif +# ||1m1m.cn/bar/ (easylistchina.txt: 1500) +.1m1m.cn/bar/ +# ||1kejian.com/js/topA.js (easylistchina.txt: 1499) +.1kejian.com/js/topA\.js +# ||1fun.com.hk/bb/189X180B.swf (easylistchina.txt: 1498) +.1fun.com.hk/bb/189X180B\.swf +# ||1dot.cn/spider/1dotAd.php (easylistchina.txt: 1497) +.1dot.cn/spider/1dotAd\.php +# ||19iiii.info/js/tonglan.js (easylistchina.txt: 1496) +.19iiii.info/js/tonglan\.js +# ||19iiii.info/js/foot.js (easylistchina.txt: 1495) +.19iiii.info/js/foot\.js +# ||19iiii.info/js/dl.js (easylistchina.txt: 1494) +.19iiii.info/js/dl\.js +# ||19iiii.info/js/dingbu.js (easylistchina.txt: 1493) +.19iiii.info/js/dingbu\.js +# ||198zone.com/images/*noad.jpg (easylistchina.txt: 1492) +.198zone.com/images/.*noad\.jpg +# ||198.40.56.242/ad/ (easylistchina.txt: 1491) +.198.40.56.242/ad/ +# ||198.40.52.11^ (easylistchina.txt: 1490) +.198.40.52.11 +# ||192.74.239.161/ad960.js (easylistchina.txt: 1489) +.192.74.239.161/ad960\.js +# ||18avday.*/aa/ (easylistchina.txt: 1488) +.18avday.*./(.*/)?aa/ +# ||189so.cn^$subdocument (easylistchina.txt: 1487) +.189so.cn +# ||189so.cn/pop.html (easylistchina.txt: 1486) +.189so.cn/pop\.html +# ||189so.cn/images/qz270x280.jpg (easylistchina.txt: 1485) +.189so.cn/images/qz270x280\.jpg +# ||189so.cn/images/960x60 (easylistchina.txt: 1484) +.189so.cn/images/960x60 +# ||189.cn/dns/ (easylistchina.txt: 1483) +.189.cn/dns/ +# ||18888.com^*/Mon_*.gif (easylistchina.txt: 1482) +.18888.com/.*/Mon_.*\.gif +# ||183yf.cn/img/nz.png (easylistchina.txt: 1481) +.183yf.cn/img/nz\.png +# ||183.136.168.78:8082/ad/ (easylistchina.txt: 1480) +.183.136.168.78:8082/ad/ +# ||182.92.234.239^*.html (easylistchina.txt: 1479) +.182.92.234.239/.*\.html +# ||180.96.27.85^*.htm (easylistchina.txt: 1478) +.180.96.27.85/.*\.htm +# ||17yy.com/style/ifra_ad/ (easylistchina.txt: 1477) +.17yy.com/style/ifra_ad/ +# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina.txt: 1476) +.17ok.com/focus/images/wenchouxiangmu\.gif +# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina.txt: 1475) +.17ok.com/focus/3j_right_jdt\.shtml +# ||17kqw.com/*.gif (easylistchina.txt: 1474) +.17kqw.com/.*\.gif +# ||17kk.cc/scriptAD/ (easylistchina.txt: 1473) +.17kk.cc/scriptAD/ +# ||17huohu.com/img/skin/qnh/ (easylistchina.txt: 1472) +.17huohu.com/img/skin/qnh/ +# ||17dm.com/s/common/js/*AD.js (easylistchina.txt: 1471) +.17dm.com/s/common/js/.*AD\.js +# ||17ce.com/118/t_banner.html (easylistchina.txt: 1470) +.17ce.com/118/t_banner\.html +# ||178.com/glr.js (easylistchina.txt: 1469) +.178.com/glr\.js +# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina.txt: 1468) +.178.com/dota/201409/205976017190/205976025825\.jpg +# ||17558.net/youdiancms.gif (easylistchina.txt: 1467) +.17558.net/youdiancms\.gif +# ||17558.net/daozeiyuanma1.gif (easylistchina.txt: 1466) +.17558.net/daozeiyuanma1\.gif +# ||174.123.15.43:8080 (easylistchina.txt: 1465) +.174.123.15.43:8080*. +# ||173kt.com/images/ad (easylistchina.txt: 1464) +.173kt.com/images/ad +# ||173kt.com/ads/ (easylistchina.txt: 1463) +.173kt.com/ads/ +# ||173.255.143.197^*.png (easylistchina.txt: 1462) +.173.255.143.197/.*\.png +# ||173.255.139.114^$subdocument (easylistchina.txt: 1461) +.173.255.139.114 +# ||173.208.177.227^*.gif (easylistchina.txt: 1460) +.173.208.177.227/.*\.gif +# ||173.208.177.227/tool/xuanfusige.js (easylistchina.txt: 1459) +.173.208.177.227/tool/xuanfusige\.js +# ||172.15.2.28:3438/*.js (easylistchina.txt: 1458) +.172.15.2.28:3438/.*\.js +# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina.txt: 1457) +.17173cdn.com/.*/flash/OnLineTime\.swf +# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina.txt: 1456) +.17173cdn.com/js/play/page/pThridPlayerAd\.js +# ||17173cdn.com/css/live/business (easylistchina.txt: 1455) +.17173cdn.com/css/live/business +# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina.txt: 1454) +.17173cdn.com/a/www/index/.*/js/ggcommon +# ||17173cdn.com/a/lib/vda/seed.js (easylistchina.txt: 1453) +.17173cdn.com/a/lib/vda/seed\.js +# ||17173.com/new/ (easylistchina.txt: 1452) +.17173.com/new/ +# ||17173.com/if/ (easylistchina.txt: 1451) +.17173.com/if/ +# ||17173.com/bd/ifm/allyes/ (easylistchina.txt: 1450) +.17173.com/bd/ifm/allyes/ +# ||17173.com/advideo/ (easylistchina.txt: 1449) +.17173.com/advideo/ +# ||17173.com/2013/new/channel-float.js (easylistchina.txt: 1448) +.17173.com/2013/new/channel-float\.js +# ||16sucai.com/images/46060_ (easylistchina.txt: 1447) +.16sucai.com/images/46060_ +# ||16sucai.com/ads/ (easylistchina.txt: 1446) +.16sucai.com/ads/ +# ||168gamer.com/static/js/cpa.js (easylistchina.txt: 1445) +.168gamer.com/static/js/cpa\.js +# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina.txt: 1444) +.168gamer.com/plugin\.php\?id=cstdio_ads: +# ||168gamer.com/apii.php?mod=js&bid= (easylistchina.txt: 1443) +.168gamer.com/apii\.php\?mod=js&bid= +# ||16888.com/ajax/loadcardata.php (easylistchina.txt: 1442) +.16888.com/ajax/loadcardata\.php +# ||1688.com.au/site1/1688ad/ (easylistchina.txt: 1441) +.1688.com.au/site1/1688ad/ +# ||1684.cc/js/1684/ (easylistchina.txt: 1440) +.1684.cc/js/1684/ +# ||168.it168.com^$script (easylistchina.txt: 1439) +.168.it168.com +# ||1677.net/js/gb*.js (easylistchina.txt: 1438) +.1677.net/js/gb.*\.js +# ||1677.net/js/cad*.js (easylistchina.txt: 1437) +.1677.net/js/cad.*\.js +# ||1677.net/js/ad*.js (easylistchina.txt: 1436) +.1677.net/js/ad.*\.js +# ||163disk.com/static/www/ (easylistchina.txt: 1435) +.163disk.com/static/www/ +# ||163disk.com/static/images/tu.gif (easylistchina.txt: 1434) +.163disk.com/static/images/tu\.gif +# ||163disk.com/static/images/DING.gif (easylistchina.txt: 1433) +.163disk.com/static/images/DING\.gif +# ||163disk.com/pic/960x90- (easylistchina.txt: 1432) +.163disk.com/pic/960x90- +# ||163.com/special/*_taobao. (easylistchina.txt: 1431) +.163.com/special/.*_taobao\. +# ||163.com/special/*_ad_ (easylistchina.txt: 1430) +.163.com/special/.*_ad_ +# ||163.com/special/*/topbg.js (easylistchina.txt: 1429) +.163.com/special/.*/topbg\.js +# ||163.com/special/*/tonglan1.js (easylistchina.txt: 1428) +.163.com/special/.*/tonglan1\.js +# ||163.com/special/*/ted_vad. (easylistchina.txt: 1427) +.163.com/special/.*/ted_vad\. +# ||163.com/special/*/scroolAd (easylistchina.txt: 1426) +.163.com/special/.*/scroolAd +# ||163.com/special/*/beitou.js (easylistchina.txt: 1425) +.163.com/special/.*/beitou\.js +# ||163.com/special/*/ace_downbig.js (easylistchina.txt: 1424) +.163.com/special/.*/ace_downbig\.js +# ||163.com/get.do?*=themeHandler. (easylistchina.txt: 1422) +.163.com/get\.do\?.*=themeHandler\. +# ||162wp.com/ipc/11.gif (easylistchina.txt: 1421) +.162wp.com/ipc/11\.gif +# ||162wp.com/e/data/images/pixviewer.swf (easylistchina.txt: 1420) +.162wp.com/e/data/images/pixviewer\.swf +# ||1616.net/jd/i_ (easylistchina.txt: 1419) +.1616.net/jd/i_ +# ||1616.net/jd/data/index/indexad.json (easylistchina.txt: 1418) +.1616.net/jd/data/index/indexad\.json +# ||15w.com/pages/adlive. (easylistchina.txt: 1417) +.15w.com/pages/adlive\. +# ||15w.com/flash/ (easylistchina.txt: 1416) +.15w.com/flash/ +# ||15w.com/call/webjs/60.js (easylistchina.txt: 1415) +.15w.com/call/webjs/60\.js +# ||1518.com/ss/ (easylistchina.txt: 1414) +.1518.com/ss/ +# ||141h.com/data/attachment/noblock/cf/ (easylistchina.txt: 1413) +.141h.com/data/attachment/noblock/cf/ +# ||1382014.co/980X45.gif (easylistchina.txt: 1412) +.1382014.co/980X45\.gif +# ||135qp.com/sjzswf/banner.swf (easylistchina.txt: 1411) +.135qp.com/sjzswf/banner\.swf +# ||133uu.com/html/ (easylistchina.txt: 1410) +.133uu.com/html/ +# ||131458.com/union/ (easylistchina.txt: 1409) +.131458.com/union/ +# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina.txt: 1408) +.131.com/test2/2014/09/04/201409041715356f5\.jpg +# ||131.com/js/131InsideAD$script (easylistchina.txt: 1407) +.131.com/js/131InsideAD +# ||131.com/home/resouces/js/ (easylistchina.txt: 1406) +.131.com/home/resouces/js/ +# ||131.com/common/alertwindow.html (easylistchina.txt: 1405) +.131.com/common/alertwindow\.html +# ||127.net/m/*/promPic.jpg (easylistchina.txt: 1404) +.127.net/m/.*/promPic\.jpg +# ||127.net/external/js6promote (easylistchina.txt: 1403) +.127.net/external/js6promote +# ||126xz.com/www/all_guanggao.js (easylistchina.txt: 1402) +.126xz.com/www/all_guanggao\.js +# ||126disk.com/templates/mobile/2345t.png (easylistchina.txt: 1401) +.126disk.com/templates/mobile/2345t\.png +# ||126.net/house/sjz/xt/ (easylistchina.txt: 1400) +.126.net/house/sjz/xt/ +# ||126.net/house/sjz/flash/ (easylistchina.txt: 1399) +.126.net/house/sjz/flash/ +# ||126.net/house/sjz/*96070 (easylistchina.txt: 1398) +.126.net/house/sjz/.*96070 +# ||126.net/house/hrb/js/ (easylistchina.txt: 1397) +.126.net/house/hrb/js/ +# ||126.net/house/hrb/flash/*X (easylistchina.txt: 1396) +.126.net/house/hrb/flash/.*X +# ||126.net/house/hangzhou/ad/ (easylistchina.txt: 1395) +.126.net/house/hangzhou/ad/ +# ||126.net/house/chengdu/flash/*+ (easylistchina.txt: 1394) +.126.net/house/chengdu/flash/.*\+ +# ||126.com/get.do?*=themeHandler. (easylistchina.txt: 1393) +.126.com/get\.do\?.*=themeHandler\. +# ||125.46.61.28^ (easylistchina.txt: 1392) +.125.46.61.28 +# ||123cha.com/2568 (easylistchina.txt: 1391) +.123cha.com/2568 +# ||123564.com/js/plaza.js (easylistchina.txt: 1390) +.123564.com/js/plaza\.js +# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina.txt: 1389) +.123.sogou.com/nstatic/img/jiao\.swf +# ||122.228.236.165^ (easylistchina.txt: 1388) +.122.228.236.165 +# ||122.225.103.*.htm (easylistchina.txt: 1387) +.122.225.103.*./.*\.htm +.122.225.103.*.htm*. +# ||121zou.com^$subdocument (easylistchina.txt: 1386) +.121zou.com +# ||121down.com/img/*.js (easylistchina.txt: 1385) +.121down.com/img/.*\.js +# ||121.41.60.207/m?t= (easylistchina.txt: 1384) +.121.41.60.207/m\?t= +# ||121.40.136.114^*.htm (easylistchina.txt: 1383) +.121.40.136.114/.*\.htm +# ||120bo.com/ggimg/ (easylistchina.txt: 1382) +.120bo.com/ggimg/ +# ||120askimages.com/ask/js/*x.js (easylistchina.txt: 1381) +.120askimages.com/ask/js/.*x\.js +# ||120.27.34.156^ (easylistchina.txt: 1380) +.120.27.34.156 +# ||11hhww.com/java/xia1.js (easylistchina.txt: 1379) +.11hhww.com/java/xia1\.js +# ||11hhww.com/java/shang1.js (easylistchina.txt: 1378) +.11hhww.com/java/shang1\.js +# ||11hhww.com/java/cpm (easylistchina.txt: 1377) +.11hhww.com/java/cpm +# ||119xiazai.com^$subdocument (easylistchina.txt: 1376) +.119xiazai.com +# ||119g.com/fanwan1/dibubanner.js (easylistchina.txt: 1375) +.119g.com/fanwan1/dibubanner\.js +# ||119g.com/fanwan/ (easylistchina.txt: 1374) +.119g.com/fanwan/ +# ||119.167.73.60/m_code/ (easylistchina.txt: 1373) +.119.167.73.60/m_code/ +# ||115mm.com/js/ (easylistchina.txt: 1372) +.115mm.com/js/ +# ||115img.com/static/pc/d_127.html (easylistchina.txt: 1371) +.115img.com/static/pc/d_127\.html +# ||115.29.46.146^$subdocument (easylistchina.txt: 1370) +.115.29.46.146 +# ||115.29.141.121:8086/js/wp.js (easylistchina.txt: 1369) +.115.29.141.121:8086/js/wp\.js +# ||115.28.6.94:8090/js/s (easylistchina.txt: 1368) +.115.28.6.94:8090/js/s +# ||115.28.114.149^*_proxy. (easylistchina.txt: 1367) +.115.28.114.149/.*_proxy\. +# ||114so.cn^$subdocument (easylistchina.txt: 1366) +.114so.cn +# ||114so.cn/js/nm*.js (easylistchina.txt: 1365) +.114so.cn/js/nm.*\.js +# ||114fw.com/dagg/ (easylistchina.txt: 1364) +.114fw.com/dagg/ +# ||113.17.188.44/*.js (easylistchina.txt: 1363) +.113.17.188.44/.*\.js +# ||112.126.66.58^*?mid= (easylistchina.txt: 1362) +.112.126.66.58/.*\?mid= +# ||111cn.net/v8/fun.js (easylistchina.txt: 1361) +.111cn.net/v8/fun\.js +# ||111cn.net/js/v8/page_ (easylistchina.txt: 1360) +.111cn.net/js/v8/page_ +# ||111cn.net/js/v8/body (easylistchina.txt: 1359) +.111cn.net/js/v8/body +# ||111cn.net/js/v8/art_ (easylistchina.txt: 1358) +.111cn.net/js/v8/art_ +# ||111cn.net/js/downc*.js (easylistchina.txt: 1357) +.111cn.net/js/downc.*\.js +# ||111cn.net/images/v8/vip.jpg (easylistchina.txt: 1356) +.111cn.net/images/v8/vip\.jpg +# ||111cn.net/gg_ad/ (easylistchina.txt: 1355) +.111cn.net/gg_ad/ +# ||11.mydrivers.com/news/google468x60.js (easylistchina.txt: 1354) +.11.mydrivers.com/news/google468x60\.js +# ||11.mydrivers.com/news/03.js (easylistchina.txt: 1353) +.11.mydrivers.com/news/03\.js +# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina.txt: 1352) +.11.mydrivers.com/myfiles/myfiles100.*\.js +# ||11.mydrivers.com/myfiles/0*.js (easylistchina.txt: 1351) +.11.mydrivers.com/myfiles/0.*\.js +# ||11.mydrivers.com/drivers/ (easylistchina.txt: 1350) +.11.mydrivers.com/drivers/ +# ||10yan.com/mmm/ (easylistchina.txt: 1349) +.10yan.com/mmm/ +# ||10pan.cc/rili.gif (easylistchina.txt: 1348) +.10pan.cc/rili\.gif +# ||10pan.*/adblockTester/ (easylistchina.txt: 1347) +.10pan.*./(.*/)?adblockTester/ +# ||10jqka.com.cn/public/stock/red.html? (easylistchina.txt: 1346) +.10jqka.com.cn/public/stock/red\.html\? +# ||1080pba.com/templets/default/images/8.gif (easylistchina.txt: 1345) +.1080pba.com/templets/default/images/8\.gif +# ||1080pba.com/templets/default/images/4.gif (easylistchina.txt: 1344) +.1080pba.com/templets/default/images/4\.gif +# ||1080pba.com/templets/default/images/3.gif (easylistchina.txt: 1343) +.1080pba.com/templets/default/images/3\.gif +# ||1080pba.com/templets/default/images/2.gif (easylistchina.txt: 1342) +.1080pba.com/templets/default/images/2\.gif +# ||1080pba.com/templets/default/images/1.gif (easylistchina.txt: 1341) +.1080pba.com/templets/default/images/1\.gif +# ||1080pba.com/templets/default/images/02.gif (easylistchina.txt: 1340) +.1080pba.com/templets/default/images/02\.gif +# ||108.171.248.234^ (easylistchina.txt: 1339) +.108.171.248.234 +# ||107.182.131.103/cache/?q=/images/ (easylistchina.txt: 1338) +.107.182.131.103/cache/\?q=/images/ +# ||106.184.7.176/shuang11/ (easylistchina.txt: 1337) +.106.184.7.176/shuang11/ +# ||103.225.198.230:8080/index.html (easylistchina.txt: 1336) +.103.225.198.230:8080/index\.html +# ||102tv.cn/js/index_*.js (easylistchina.txt: 1335) +.102tv.cn/js/index_.*\.js +# ||102tv.cn/js/desktop.js (easylistchina.txt: 1334) +.102tv.cn/js/desktop\.js +# ||102tv.cn/js/ad*.js (easylistchina.txt: 1333) +.102tv.cn/js/ad.*\.js +# ||101.78.195.135/js/ (easylistchina.txt: 1332) +.101.78.195.135/js/ +# ||100ksw.com/ksbd/ksbdparad.js (easylistchina.txt: 1331) +.100ksw.com/ksbd/ksbdparad\.js +# ||100ksw.com/include/ksbdfd.js (easylistchina.txt: 1330) +.100ksw.com/include/ksbdfd\.js +# ||10000sb.com/4gbct.js (easylistchina.txt: 1329) +.10000sb.com/4gbct\.js +# ||0dian8.org/data/js/ (easylistchina.txt: 1328) +.0dian8.org/data/js/ +# ||07908.com/images/ (easylistchina.txt: 1327) +.07908.com/images/ +# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina.txt: 1326) +.0772fang.com/assets/js/Newhouse/inserAds\.js +# ||0772fang.com/assets/js/imgorflash.js (easylistchina.txt: 1325) +.0772fang.com/assets/js/imgorflash\.js +# ||076299.cn/images/flash/20 (easylistchina.txt: 1324) +.076299.cn/images/flash/20 +# ||0758net.com/data/attachment/portal/ (easylistchina.txt: 1323) +.0758net.com/data/attachment/portal/ +# ||0756.la/ad-htm/ (easylistchina.txt: 1322) +.0756.la/ad-htm/ +# ||073img.com^*/rich.js (easylistchina.txt: 1321) +.073img.com/.*/rich\.js +# ||0668gz.com/data/attachment/portal/ (easylistchina.txt: 1320) +.0668gz.com/data/attachment/portal/ +# ||060s.com/my_ad/ (easylistchina.txt: 1319) +.060s.com/my_ad/ +# ||05sun.com/js/downinfo.js (easylistchina.txt: 1318) +.05sun.com/js/downinfo\.js +# ||05sun.com/js/comm.js (easylistchina.txt: 1317) +.05sun.com/js/comm\.js +# ||0597ok.com/ilike/597/ (easylistchina.txt: 1316) +.0597ok.com/ilike/597/ +# ||0597kk.com/js/float.js (easylistchina.txt: 1315) +.0597kk.com/js/float\.js +# ||0579.cn/SHow/Showplacenew.aspx (easylistchina.txt: 1314) +.0579.cn/SHow/Showplacenew\.aspx +# ||0579.cn/images/bg.gif (easylistchina.txt: 1313) +.0579.cn/images/bg\.gif +# ||0575bbs.com/updateimeags/ (easylistchina.txt: 1312) +.0575bbs.com/updateimeags/ +# ||0575bbs.com/js/float.js (easylistchina.txt: 1311) +.0575bbs.com/js/float\.js +# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina.txt: 1310) +.0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph\.gif +# ||05096.com/jsdoc/ad.html (easylistchina.txt: 1309) +.05096.com/jsdoc/ad\.html +# ||0471.so/Public/config/Couplet/Index (easylistchina.txt: 1308) +.0471.so/Public/config/Couplet/Index +# ||0460.com/js/txtrec.js (easylistchina.txt: 1307) +.0460.com/js/txtrec\.js +# ||0460.com/images/banner/ (easylistchina.txt: 1306) +.0460.com/images/banner/ +# ||0452e.com/js/float.js (easylistchina.txt: 1305) +.0452e.com/js/float\.js +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina.txt: 1304) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=zhuangx +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina.txt: 1303) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=topslide +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina.txt: 1302) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=classify +# ||0439.com/html/js/tuiguang.js (easylistchina.txt: 1301) +.0439.com/html/js/tuiguang\.js +# ||0439.com/html/js/ad_r_300x220.js (easylistchina.txt: 1300) +.0439.com/html/js/ad_r_300x220\.js +# ||03jd.cn/data/attachment/portal/ (easylistchina.txt: 1299) +.03jd.cn/data/attachment/portal/ +# ||0379home.com/images/fullscreen_ (easylistchina.txt: 1298) +.0379home.com/images/fullscreen_ +# ||0379home.com/2014/js/beside.js (easylistchina.txt: 1297) +.0379home.com/2014/js/beside\.js +# ||0379home.com/2014/js/ad_pic.js (easylistchina.txt: 1296) +.0379home.com/2014/js/ad_pic\.js +# ||027down.com/images/banner760-60.gif (easylistchina.txt: 1295) +.027down.com/images/banner760-60\.gif +# ||022net.com/main/browse_yme.js (easylistchina.txt: 1294) +.022net.com/main/browse_yme\.js +# ||022net.com/js/mhtml/phtml07.html (easylistchina.txt: 1293) +.022net.com/js/mhtml/phtml07\.html +# ||022net.com/js/mhtml/phtml04.html (easylistchina.txt: 1292) +.022net.com/js/mhtml/phtml04\.html +# ||022net.com/js/mhtml/phtml03.html (easylistchina.txt: 1291) +.022net.com/js/mhtml/phtml03\.html +# ||021wudi.com/admguan- (easylistchina.txt: 1290) +.021wudi.com/admguan- +# ||020.com/960_70 (easylistchina.txt: 1289) +.020.com/960_70 +# ||007.mx/flv/ (easylistchina.txt: 1288) +.007.mx/flv/ +# ||005.tv:60000/ad.js (easylistchina.txt: 1287) +.005.tv:60000/ad\.js +# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina.txt: 1286) +.005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm\.jpg +# ||00170017.net/Public/images/ (easylistchina.txt: 1284) +.00170017.net/Public/images/ +# ||00170017.net/Public/dzb_gg.js (easylistchina.txt: 1283) +.00170017.net/Public/dzb_gg\.js +# |http://www.i-ab.co/zz/ (easylistchina.txt: 1282) +www.i-ab.co/zz/ +# |http://*/ad_bj.js? (easylistchina.txt: 1274) +/(.*/)?ad_bj\.js\? +# |http://*.7m.cn/b/ (easylistchina.txt: 1272) +/.*\.7m\.cn/b/ +.*.7m.cn/b/ +# _yad_jsonp_ (easylistchina.txt: 1266) +/.*_yad_jsonp_ +# _vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1265) +/.*_vmind\.qqvideo\.tc\.qq\.com[^\w%.-] +# _!!1731999033. (easylistchina.txt: 1263) +/.*_!!1731999033\. +# ^zhuanqian/adall.js (easylistchina.txt: 1262) +/(.*[^\w%.-])?zhuanqian/adall\.js +# ?method=baidu.ting.commercial.tactics& (easylistchina.txt: 1261) +/.*\?method=baidu\.ting\.commercial\.tactics& +# :88/lighttpd/default/ (easylistchina.txt: 1260) +/.*:88/lighttpd/default/ +# /yythems/images/tuiguang.png (easylistchina.txt: 1259) +/(.*/)?yythems/images/tuiguang\.png +# /yythems/images/1213.gif (easylistchina.txt: 1258) +/(.*/)?yythems/images/1213\.gif +# /ysm/ewdna/* (easylistchina.txt: 1257) +/(.*/)?ysm/ewdna/.* +# /ysm.ezprice.net/* (easylistchina.txt: 1256) +/(.*/)?ysm\.ezprice\.net/.* +ysm.ezprice.net/.* +# /youxituoluo/images/text_top_ (easylistchina.txt: 1255) +/(.*/)?youxituoluo/images/text_top_ +# /xiao1234.com/ads/* (easylistchina.txt: 1251) +/(.*/)?xiao1234\.com/ads/.* +xiao1234.com/ads/.* +# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina.txt: 1248) +/(.*/)?www\.soft4fun\.net/wp-content/uploads/.*_banner +www.soft4fun.net/wp-content/uploads/.*_banner +# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina.txt: 1247) +/(.*/)?www\.kocpc\.com\.tw/wp-content/uploads/.*\.gif +www.kocpc.com.tw/wp-content/uploads/.*\.gif +# /wangyuedeux/imgs/youlian.png (easylistchina.txt: 1242) +/(.*/)?wangyuedeux/imgs/youlian\.png +# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina.txt: 1241) +/(.*/)?wangyuedeux/imgs/wangzhuano\.jpg +# /vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1240) +/(.*/)?vmind\.qqvideo\.tc\.qq\.com[^\w%.-] +vmind.qqvideo.tc.qq.com +# /uniontgm.cmb. (easylistchina.txt: 1238) +/(.*/)?uniontgm\.cmb\. +uniontgm.cmb.*. +# /tonghuacun/skin/zxf/kan_hree.js (easylistchina.txt: 1236) +/(.*/)?tonghuacun/skin/zxf/kan_hree\.js +# /sznews/images/bbsgg (easylistchina.txt: 1233) +/(.*/)?sznews/images/bbsgg +# /static/btmeegg/* (easylistchina.txt: 1230) +/(.*/)?static/btmeegg/.* +# /sinaLoginReward2014_comment. (easylistchina.txt: 1227) +/(.*/)?sinaLoginReward2014_comment\. +# /sinaLoginReward2014. (easylistchina.txt: 1226) +/(.*/)?sinaLoginReward2014\. +sinaLoginReward2014.*. +# /sc_ifeng/* (easylistchina.txt: 1224) +/(.*/)?sc_ifeng/.* +# /pub/news/gzrb/*$script (easylistchina.txt: 1222) +/(.*/)?pub/news/gzrb/.* +# /opbb/obpp.tpl (easylistchina.txt: 1220) +/(.*/)?opbb/obpp\.tpl +# /opbb/float.js (easylistchina.txt: 1219) +/(.*/)?opbb/float\.js +# /nowscore/ad/* (easylistchina.txt: 1218) +/(.*/)?nowscore/ad/.* +# /nimabdd_1010/*baidu (easylistchina.txt: 1217) +/(.*/)?nimabdd_1010/.*baidu +# /newhuagg/index_ (easylistchina.txt: 1215) +/(.*/)?newhuagg/index_ +# /newhuagg/*_right (easylistchina.txt: 1214) +/(.*/)?newhuagg/.*_right +# /nddailyfile/webadv/* (easylistchina.txt: 1213) +/(.*/)?nddailyfile/webadv/.* +# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina.txt: 1211) +/(.*/)?msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d\.jpg +# /moneymaker/js/videoplayer.js (easylistchina.txt: 1210) +/(.*/)?moneymaker/js/videoplayer\.js +# /moneymaker/js/tmpp.js (easylistchina.txt: 1209) +/(.*/)?moneymaker/js/tmpp\.js +# /moneymaker/js/kppp.js (easylistchina.txt: 1208) +/(.*/)?moneymaker/js/kppp\.js +# /moneymaker/js/fkpp.js (easylistchina.txt: 1207) +/(.*/)?moneymaker/js/fkpp\.js +# /moneymaker/images/*.gif (easylistchina.txt: 1206) +/(.*/)?moneymaker/images/.*\.gif +# /modules/video/player/nuevo/midroll.php? (easylistchina.txt: 1205) +/(.*/)?modules/video/player/nuevo/midroll\.php\? +# /kocpc.myweb.hinet.net^ (easylistchina.txt: 1202) +/(.*/)?kocpc\.myweb\.hinet\.net[^\w%.-] +kocpc.myweb.hinet.net +# /images/amsun100.png (easylistchina.txt: 1182) +/(.*/)?images/amsun100\.png +# /ifengRotatorAd.js (easylistchina.txt: 1176) +/(.*/)?ifengRotatorAd\.js +ifengRotatorAd.js*. +# /html/taobao_focus_ (easylistchina.txt: 1175) +/(.*/)?html/taobao_focus_ +# /homead/*_appledaily_bg. (easylistchina.txt: 1173) +/(.*/)?homead/.*_appledaily_bg\. +# /gyw_index/*/images/ad_ (easylistchina.txt: 1172) +/(.*/)?gyw_index/.*/images/ad_ +# /game/aplus/pptv/* (easylistchina.txt: 1167) +/(.*/)?game/aplus/pptv/.* +# /front/adv/getpmadvlist (easylistchina.txt: 1166) +/(.*/)?front/adv/getpmadvlist +# /dhfun_ad/* (easylistchina.txt: 1163) +/(.*/)?dhfun_ad/.* +# /comiis_yccs/ads/* (easylistchina.txt: 1158) +/(.*/)?comiis_yccs/ads/.* +# /cari/daybanner/* (easylistchina.txt: 1157) +/(.*/)?cari/daybanner/.* +# /cari/banner/* (easylistchina.txt: 1156) +/(.*/)?cari/banner/.* +# /avshow_cn1.gif (easylistchina.txt: 1149) +/(.*/)?avshow_cn1\.gif +# /Atemplate/dd_1010/baidu (easylistchina.txt: 1146) +/(.*/)?Atemplate/dd_1010/baidu +# /Aemplate/dd_1010/baidu (easylistchina.txt: 1142) +/(.*/)?Aemplate/dd_1010/baidu +# /adscript/crazyad.js (easylistchina.txt: 1140) +/(.*/)?adscript/crazyad\.js +# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina.txt: 1139) +/(.*/)?Addsa\.dsj/Bsdd_1010/.*Baidu +Addsa.dsj/Bsdd_1010/.*Baidu +# /adcg/* (easylistchina.txt: 1138) +/(.*/)?adcg/.* +# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina.txt: 1135) +/(.*/)?a83b3cdeacac5a503717469ca5084ebc\. +a83b3cdeacac5a503717469ca5084ebc.*. +# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina.txt: 1130) +/(.*/)?934b2bc8de85e32ae7588f2eb955ee36\. +934b2bc8de85e32ae7588f2eb955ee36.*. +# /52meiju_7 (easylistchina.txt: 1129) +/(.*/)?52meiju_7 +# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina.txt: 1128) +/(.*/)?435f1c6f9f6b545254a00e426b9aeae1\. +435f1c6f9f6b545254a00e426b9aeae1.*. +# /404.safedog.cn/sitedog_stat_new.html (easylistchina.txt: 1127) +/(.*/)?404\.safedog\.cn/sitedog_stat_new\.html +404.safedog.cn/sitedog_stat_new\.html +# /2tu/heisiwang.js (easylistchina.txt: 1126) +/(.*/)?2tu/heisiwang\.js +# /2tu/ads/* (easylistchina.txt: 1125) +/(.*/)?2tu/ads/.* +# /200804ad/* (easylistchina.txt: 1123) +/(.*/)?200804ad/.* +# /18touch-guanggao. (easylistchina.txt: 1122) +/(.*/)?18touch-guanggao\. +18touch-guanggao.*. +# /10jqka_info/html/ad_ (easylistchina.txt: 1121) +/(.*/)?10jqka_info/html/ad_ +# .niusnews.com/upload/banners/ (easylistchina.txt: 1120) +/.*\.niusnews\.com/upload/banners/ +.*.niusnews.com/upload/banners/ +# .adsame.libaclub.com^ (easylistchina.txt: 1113) +/.*\.adsame\.libaclub\.com[^\w%.-] +.*.adsame.libaclub.com +# .543evv.com/js/config.js (easylistchina.txt: 1112) +/.*\.543evv\.com/js/config\.js +.*.543evv.com/js/config\.js +# ||zhubajie.com/?fromcode=$popup (easylistchina.txt: 1110) +.zhubajie.com/\?fromcode= +# ||yy18.info/yyrethanks18.$popup (easylistchina.txt: 1109) +.yy18.info/yyrethanks18\. +# ||vnet.cn^*.html?$popup,third-party (easylistchina.txt: 1106) +.vnet.cn/.*\.html\? +# ||todayapp.cc^$popup,third-party (easylistchina.txt: 1105) +.todayapp.cc +# ||t-movies.com.tw/pop.asp$popup (easylistchina.txt: 1102) +.t-movies.com.tw/pop\.asp +# ||son999.com^$popup,third-party (easylistchina.txt: 1101) +.son999.com +# ||sohu.com/i/?pvid=$popup (easylistchina.txt: 1100) +.sohu.com/i/\?pvid= +# ||smartor.org/iclk/?zoneid=$popup (easylistchina.txt: 1099) +.smartor.org/iclk/\?zoneid= +# ||qidian.com/showavd.$popup (easylistchina.txt: 1098) +.qidian.com/showavd\. +# ||moe.005.tv^$popup,third-party (easylistchina.txt: 1096) +.moe.005.tv +# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina.txt: 1094) +.kuai.xunlei.com/do_e_mu\?data= +# ||jjwxc.net/jjad*.html$popup (easylistchina.txt: 1092) +.jjwxc.net/jjad.*\.html +# ||iswan.cn^$popup,third-party (easylistchina.txt: 1091) +.iswan.cn +# ||iqiyi.com/track$popup (easylistchina.txt: 1090) +.iqiyi.com/track +# ||ihualun.com^$popup (easylistchina.txt: 1089) +.ihualun.com +# ||hinet.net/product/promotion/$popup (easylistchina.txt: 1088) +.hinet.net/product/promotion/ +# ||greenet.cn^*_popu_$popup (easylistchina.txt: 1087) +.greenet.cn/.*_popu_ +# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina.txt: 1086) +.gd.ct10000.com/.*/push/ +# ||gd.189.cn^*/push/$popup,third-party (easylistchina.txt: 1085) +.gd.189.cn/.*/push/ +# ||gd.189.cn/push/$popup,third-party (easylistchina.txt: 1084) +.gd.189.cn/push/ +# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina.txt: 1083) +.gd.189.cn/gz/promotion/ +# ||gd.189.cn/ad/$popup,third-party (easylistchina.txt: 1082) +.gd.189.cn/ad/ +# ||gamer.com.tw/adcounter.$popup (easylistchina.txt: 1081) +.gamer.com.tw/adcounter\. +# ||dhqp68.com^$popup,third-party (easylistchina.txt: 1080) +.dhqp68.com +# ||c.admaster.com.cn^$popup (easylistchina.txt: 1079) +.c.admaster.com.cn +# ||baidu.com/baidu.php?url=$popup (easylistchina.txt: 1078) +.baidu.com/baidu\.php\?url= +# ||baidu.com/adrc.$popup (easylistchina.txt: 1077) +.baidu.com/adrc\. +# ||ark.letv.com/t?$popup (easylistchina.txt: 1076) +.ark.letv.com/t\? +# ||aiwanma99.com^$popup (easylistchina.txt: 1075) +.aiwanma99.com +# ||ad.189so.cn^$popup (easylistchina.txt: 1074) +.ad.189so.cn +# ||9100300.com^$popup (easylistchina.txt: 1072) +.9100300.com +# ||133gp.com^$popup (easylistchina.txt: 1070) +.133gp.com +# ||093game.com^$popup,third-party (easylistchina.txt: 1068) +.093game.com +# /pushstart.aspx?$popup,third-party (easylistchina.txt: 1066) +/(.*/)?pushstart\.aspx\? +# /pushportal/PushPortalServer$popup,third-party (easylistchina.txt: 1065) +/(.*/)?pushportal/PushPortalServer +# /portalwlanad/pages/*$popup (easylistchina.txt: 1064) +/(.*/)?portalwlanad/pages/.* +# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina.txt: 1062) +/(.*/)?BadwebRemindPage\.aspx\?param= +# .com/?Intr=$popup,third-party (easylistchina.txt: 1060) +/.*\.com/\?Intr= +.*.com/\?Intr= +# .com/?aff=$popup,third-party (easylistchina.txt: 1059) +/.*\.com/\?aff= +.*.com/\?aff= +# .189.gd^*.html?p=$popup,third-party (easylistchina.txt: 1058) +/.*\.189\.gd[^\w%.-].*\.html\?p= +.*.189.gd/.*\.html\?p= +# ||zytwq.net^$third-party (easylistchina.txt: 1056) +.zytwq.net +# ||ztdsp.com^$third-party (easylistchina.txt: 1055) +.ztdsp.com +# ||zp265.com^$third-party (easylistchina.txt: 1054) +.zp265.com +# ||zp22938576.com^ (easylistchina.txt: 1053) +.zp22938576.com +# ||zj66.net^$third-party (easylistchina.txt: 1052) +.zj66.net +# ||zgyiyi.com^$third-party (easylistchina.txt: 1051) +.zgyiyi.com +# ||zgunion.cn^ (easylistchina.txt: 1050) +.zgunion.cn +# ||zgksb.com^ (easylistchina.txt: 1049) +.zgksb.com +# ||ze5.com^$third-party (easylistchina.txt: 1048) +.ze5.com +# ||zd6789.com^$third-party (easylistchina.txt: 1047) +.zd6789.com +# ||zampdsp.com^$third-party (easylistchina.txt: 1046) +.zampdsp.com +# ||zampda.net^$third-party (easylistchina.txt: 1045) +.zampda.net +# ||yzxls.com^$third-party (easylistchina.txt: 1044) +.yzxls.com +# ||yyp17.com^ (easylistchina.txt: 1043) +.yyp17.com +# ||yxdyk.com^$script,third-party (easylistchina.txt: 1042) +.yxdyk.com +# ||yunfanlm.com^$third-party (easylistchina.txt: 1041) +.yunfanlm.com +# ||yule8.net^ (easylistchina.txt: 1040) +.yule8.net +# ||yuanhsu.com^$third-party (easylistchina.txt: 1039) +.yuanhsu.com +# ||ysm.ezprice.net^$third-party (easylistchina.txt: 1038) +.ysm.ezprice.net +# ||yqw88.com^ (easylistchina.txt: 1037) +.yqw88.com +# ||yoyi.tv^$third-party (easylistchina.txt: 1036) +.yoyi.tv +# ||yoyi.com.cn^$third-party (easylistchina.txt: 1035) +.yoyi.com.cn +# ||youxicool.net^$third-party (easylistchina.txt: 1034) +.youxicool.net +# ||youle55.com^$third-party (easylistchina.txt: 1033) +.youle55.com +# ||youbet8.com^$third-party (easylistchina.txt: 1032) +.youbet8.com +# ||yongv.com^$third-party (easylistchina.txt: 1031) +.yongv.com +# ||ymcqb.com^ (easylistchina.txt: 1030) +.ymcqb.com +# ||yk0712.com^ (easylistchina.txt: 1029) +.yk0712.com +# ||yiwad.com^$third-party (easylistchina.txt: 1028) +.yiwad.com +# ||yiqifa.com^*.js$third-party (easylistchina.txt: 1027) +.yiqifa.com/.*\.js +# ||yiqifa.com^$subdocument (easylistchina.txt: 1026) +.yiqifa.com +# ||yiiwoo.com^$third-party (easylistchina.txt: 1025) +.yiiwoo.com +# ||yigao.com^$third-party (easylistchina.txt: 1024) +.yigao.com +# ||ye3.com^$third-party (easylistchina.txt: 1023) +.ye3.com +# ||ydcpc.com^$third-party (easylistchina.txt: 1022) +.ydcpc.com +# ||xzyituo.com^ (easylistchina.txt: 1021) +.xzyituo.com +# ||xzdchl.com^$third-party (easylistchina.txt: 1020) +.xzdchl.com +# ||xxad.cc^ (easylistchina.txt: 1019) +.xxad.cc +# ||xtxa.net^ (easylistchina.txt: 1018) +.xtxa.net +# ||xsu.cc^$third-party (easylistchina.txt: 1017) +.xsu.cc +# ||xp3366.com^$third-party (easylistchina.txt: 1016) +.xp3366.com +# ||xhmrv.com^ (easylistchina.txt: 1015) +.xhmrv.com +# ||xe2c.com^$third-party (easylistchina.txt: 1014) +.xe2c.com +# ||xdwan.com^$third-party (easylistchina.txt: 1013) +.xdwan.com +# ||xcy8.com^ (easylistchina.txt: 1012) +.xcy8.com +# ||xchgx.com^ (easylistchina.txt: 1011) +.xchgx.com +# ||xajx.com^$third-party (easylistchina.txt: 1010) +.xajx.com +# ||xabaitai.com^ (easylistchina.txt: 1009) +.xabaitai.com +# ||xa9t.com^ (easylistchina.txt: 1008) +.xa9t.com +# ||x9377a.com^ (easylistchina.txt: 1007) +.x9377a.com +# ||wudang05.com^$third-party (easylistchina.txt: 1006) +.wudang05.com +# ||ws341.com^ (easylistchina.txt: 1005) +.ws341.com +# ||wqzyt.net^$third-party (easylistchina.txt: 1004) +.wqzyt.net +# ||wqsph.net^ (easylistchina.txt: 1003) +.wqsph.net +# ||wo685.com^$third-party (easylistchina.txt: 1002) +.wo685.com +# ||wit.qq.com^$third-party (easylistchina.txt: 1001) +.wit.qq.com +# ||winvestern.com.cn^ (easylistchina.txt: 1000) +.winvestern.com.cn +# ||widget.ezprice.com.tw^$third-party (easylistchina.txt: 999) +.widget.ezprice.com.tw +# ||weizhanle.com^$third-party (easylistchina.txt: 998) +.weizhanle.com +# ||weddingeeos.com^$third-party (easylistchina.txt: 997) +.weddingeeos.com +# ||weareqy.com^$third-party (easylistchina.txt: 996) +.weareqy.com +# ||wdzsb.com.cn^ (easylistchina.txt: 995) +.wdzsb.com.cn +# ||w65p.com^ (easylistchina.txt: 994) +.w65p.com +# ||vsnoon.com^$third-party (easylistchina.txt: 993) +.vsnoon.com +# ||vpie.net^$third-party (easylistchina.txt: 992) +.vpie.net +# ||visadd.com^$third-party (easylistchina.txt: 991) +.visadd.com +# ||victorjx.com^ (easylistchina.txt: 990) +.victorjx.com +# ||vf5c.com^$third-party (easylistchina.txt: 989) +.vf5c.com +# ||vamaker.com^$third-party (easylistchina.txt: 988) +.vamaker.com +# ||v707070.com^ (easylistchina.txt: 987) +.v707070.com +# ||v-links.net^$third-party (easylistchina.txt: 986) +.v-links.net +# ||urlad.com.tw^$third-party (easylistchina.txt: 985) +.urlad.com.tw +# ||uoyrsd.com^ (easylistchina.txt: 984) +.uoyrsd.com +# ||unionsky2.cn^$third-party (easylistchina.txt: 983) +.unionsky2.cn +# ||unionsky.cn^$third-party (easylistchina.txt: 982) +.unionsky.cn +# ||unionli.com^$third-party (easylistchina.txt: 981) +.unionli.com +# ||unionbig.com^$third-party (easylistchina.txt: 980) +.unionbig.com +# ||union009.com^$third-party (easylistchina.txt: 979) +.union009.com +# ||union.$third-party (easylistchina.txt: 978) +.union.*. +# ||unimhk.com^$third-party (easylistchina.txt: 977) +.unimhk.com +# ||ulink.cc^$third-party (easylistchina.txt: 976) +.ulink.cc +# ||ujian.cc^$third-party (easylistchina.txt: 975) +.ujian.cc +# ||ufstone.com^$third-party (easylistchina.txt: 974) +.ufstone.com +# ||ueadlian.com^$third-party (easylistchina.txt: 973) +.ueadlian.com +# ||ubmcmm.baidustatic.com^ (easylistchina.txt: 972) +.ubmcmm.baidustatic.com +# ||u88.cn^$third-party (easylistchina.txt: 971) +.u88.cn +# ||u.801t.com^$third-party (easylistchina.txt: 970) +.u.801t.com +# ||txkjad.com^$third-party (easylistchina.txt: 969) +.txkjad.com +# ||twrank.com^$third-party (easylistchina.txt: 968) +.twrank.com +# ||twm.com.tw^$third-party (easylistchina.txt: 967) +.twm.com.tw +# ||twcczhu.com^$third-party (easylistchina.txt: 966) +.twcczhu.com +# ||twb98.com^$third-party (easylistchina.txt: 965) +.twb98.com +# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 964) +.tw-cm.ysm.yahoo.com +# ||tukj.net^$third-party (easylistchina.txt: 963) +.tukj.net +# ||tripadvisor.com^$third-party (easylistchina.txt: 962) +.tripadvisor.com +# ||toy9090.com^$third-party (easylistchina.txt: 961) +.toy9090.com +# ||toufangke.com^$third-party (easylistchina.txt: 960) +.toufangke.com +# ||top888.com^$third-party (easylistchina.txt: 959) +.top888.com +# ||toourbb.com^ (easylistchina.txt: 958) +.toourbb.com +# ||tk001.com^$third-party (easylistchina.txt: 957) +.tk001.com +# ||tg.1155t.cn^ (easylistchina.txt: 956) +.tg.1155t.cn +# ||tebaidu.cn^$third-party (easylistchina.txt: 955) +.tebaidu.cn +# ||tdayi.com^ (easylistchina.txt: 954) +.tdayi.com +# ||tc600.com^ (easylistchina.txt: 953) +.tc600.com +# ||tbjfw.com^$third-party (easylistchina.txt: 952) +.tbjfw.com +# ||taotu001.com^$third-party (easylistchina.txt: 951) +.taotu001.com +# ||taobaoij.com: (easylistchina.txt: 950) +# ||tanchuang002.info^$third-party (easylistchina.txt: 947) +.tanchuang002.info +# ||tad.suning.com^ (easylistchina.txt: 946) +.tad.suning.com +# ||taat00889.com^ (easylistchina.txt: 945) +.taat00889.com +# ||ta80.com^$third-party (easylistchina.txt: 944) +.ta80.com +# ||t70123.com^ (easylistchina.txt: 943) +.t70123.com +# ||t3nlink.com^$third-party (easylistchina.txt: 942) +.t3nlink.com +# ||superfish.com^$third-party (easylistchina.txt: 941) +.superfish.com +# ||sunjianhao.com^ (easylistchina.txt: 940) +.sunjianhao.com +# ||stnts.com^$third-party (easylistchina.txt: 939) +.stnts.com +# ||star8.net^$third-party (easylistchina.txt: 938) +.star8.net +# ||sstc360.com^ (easylistchina.txt: 937) +.sstc360.com +# ||sphwq.net^$third-party (easylistchina.txt: 936) +.sphwq.net +# ||spcode.baidu.com^ (easylistchina.txt: 935) +.spcode.baidu.com +# ||souacode.com^$third-party (easylistchina.txt: 934) +.souacode.com +# ||sosobook.cn^$third-party (easylistchina.txt: 933) +.sosobook.cn +# ||socdm.com^ (easylistchina.txt: 932) +.socdm.com +# ||snyu.com^$third-party (easylistchina.txt: 931) +.snyu.com +# ||snxyf.com^$third-party (easylistchina.txt: 930) +.snxyf.com +# ||sin114.com^$third-party (easylistchina.txt: 929) +.sin114.com +# ||si9377.com^ (easylistchina.txt: 928) +.si9377.com +# ||show.kc.taotaosou.com^ (easylistchina.txt: 927) +.show.kc.taotaosou.com +# ||sharele.cn^$third-party (easylistchina.txt: 926) +.sharele.cn +# ||sharedaddomain.com^ (easylistchina.txt: 925) +.sharedaddomain.com +# ||sgbfjs.info^ (easylistchina.txt: 924) +.sgbfjs.info +# ||sexy-more.com^$third-party (easylistchina.txt: 923) +.sexy-more.com +# ||sales-frontier.com^$third-party (easylistchina.txt: 922) +.sales-frontier.com +# ||s17cnzz.com^$third-party (easylistchina.txt: 921) +.s17cnzz.com +# ||rwjfs.com^ (easylistchina.txt: 920) +.rwjfs.com +# ||ruxianke.com^ (easylistchina.txt: 919) +.ruxianke.com +# ||ruanwenclub.com^$third-party (easylistchina.txt: 918) +.ruanwenclub.com +# ||rsccs.com^$third-party (easylistchina.txt: 917) +.rsccs.com +# ||re.taotaosou.com^ (easylistchina.txt: 916) +.re.taotaosou.com +# ||rbc.cn^$third-party (easylistchina.txt: 915) +.rbc.cn +# ||qucaigg.com^ (easylistchina.txt: 914) +.qucaigg.com +# ||qubilou.com^$third-party (easylistchina.txt: 913) +.qubilou.com +# ||qtmojo.com^$third-party (easylistchina.txt: 912) +.qtmojo.com +# ||qq4g.cn^$third-party (easylistchina.txt: 911) +.qq4g.cn +# ||qiyou.com^$third-party (easylistchina.txt: 910) +.qiyou.com +# ||qiqiww.com^ (easylistchina.txt: 909) +.qiqiww.com +# ||qidou.com^$third-party (easylistchina.txt: 908) +.qidou.com +# ||prohost.com.tw^$third-party (easylistchina.txt: 907) +.prohost.com.tw +# ||pro.cn^$third-party (easylistchina.txt: 906) +.pro.cn +# ||poxzyu.com^$third-party (easylistchina.txt: 905) +.poxzyu.com +# ||pos.baidu.com^ (easylistchina.txt: 904) +.pos.baidu.com +# ||pdsjycm.com^ (easylistchina.txt: 903) +.pdsjycm.com +# ||pagechoice.net^$third-party (easylistchina.txt: 902) +.pagechoice.net +# ||p3tt.com^ (easylistchina.txt: 901) +.p3tt.com +# ||p0y.cn^*.swf (easylistchina.txt: 900) +.p0y.cn/.*\.swf +# ||p0y.cn^$image (easylistchina.txt: 899) +.p0y.cn +# ||onetad.com^$third-party (easylistchina.txt: 898) +.onetad.com +# ||okokw.com^$third-party (easylistchina.txt: 897) +.okokw.com +# ||okm918.com^ (easylistchina.txt: 896) +.okm918.com +# ||oikxlcv.wang^ (easylistchina.txt: 895) +.oikxlcv.wang +# ||octopuspop.com^$third-party (easylistchina.txt: 893) +.octopuspop.com +# ||o091i.com^$third-party (easylistchina.txt: 892) +.o091i.com +# ||notice.uchome.manyou.com^ (easylistchina.txt: 891) +.notice.uchome.manyou.com +# ||niuza.com^$image,subdocument,third-party (easylistchina.txt: 890) +.niuza.com +# ||niuxgame77.com^ (easylistchina.txt: 889) +.niuxgame77.com +# ||niurenw.com^$third-party (easylistchina.txt: 888) +.niurenw.com +# ||ni22.com^$third-party (easylistchina.txt: 887) +.ni22.com +# ||nextcps.com^ (easylistchina.txt: 886) +.nextcps.com +# ||news.tagtoo.co^$third-party (easylistchina.txt: 885) +.news.tagtoo.co +# ||myzwqwe12.com^$third-party (easylistchina.txt: 884) +.myzwqwe12.com +# ||mytanwan.com^$third-party (easylistchina.txt: 883) +.mytanwan.com +# ||mycctvmedia.com^$third-party (easylistchina.txt: 882) +.mycctvmedia.com +# ||mtxsk.com^$third-party (easylistchina.txt: 881) +.mtxsk.com +# ||mscimg.com^ (easylistchina.txt: 880) +.mscimg.com +# ||moogos.com^$third-party (easylistchina.txt: 879) +.moogos.com +# ||moodoocrv.com.cn^ (easylistchina.txt: 878) +.moodoocrv.com.cn +# ||mobads.baidu.com^$third-party (easylistchina.txt: 877) +.mobads.baidu.com +# ||mlt01.com^ (easylistchina.txt: 876) +.mlt01.com +# ||miaozhen.com^$third-party (easylistchina.txt: 875) +.miaozhen.com +# ||mgwl668.com^$third-party (easylistchina.txt: 874) +.mgwl668.com +# ||mediav.com^$third-party (easylistchina.txt: 873) +.mediav.com +# ||media8.cn^$third-party (easylistchina.txt: 872) +.media8.cn +# ||mathtag.com^$third-party (easylistchina.txt: 871) +.mathtag.com +# ||mathads.com^ (easylistchina.txt: 870) +.mathads.com +# ||mamamiyu.com^$third-party (easylistchina.txt: 869) +.mamamiyu.com +# ||mainbx.com^ (easylistchina.txt: 868) +.mainbx.com +# ||lzmm8.com^ (easylistchina.txt: 867) +.lzmm8.com +# ||lx167.com^$third-party (easylistchina.txt: 866) +.lx167.com +# ||lv711.net^$third-party (easylistchina.txt: 865) +.lv711.net +# ||lnr1.com^$third-party (easylistchina.txt: 864) +.lnr1.com +# ||lishuanghao.com^ (easylistchina.txt: 863) +.lishuanghao.com +# ||linkvans.com^$third-party (easylistchina.txt: 862) +.linkvans.com +# ||lhzly.com^$third-party (easylistchina.txt: 860) +.lhzly.com +# ||le4le.com^ (easylistchina.txt: 859) +.le4le.com +# ||le123.cn^$third-party (easylistchina.txt: 858) +.le123.cn +# ||lajizhan.org^ (easylistchina.txt: 857) +.lajizhan.org +# ||kuaizitech.com^$third-party (easylistchina.txt: 856) +.kuaizitech.com +# ||ku9377.com^ (easylistchina.txt: 855) +.ku9377.com +# ||ku63.com^$third-party (easylistchina.txt: 854) +.ku63.com +# ||kmadou.com^ (easylistchina.txt: 853) +.kmadou.com +# ||kingwam.com^ (easylistchina.txt: 852) +.kingwam.com +# ||kiees.com^$image,subdocument,third-party (easylistchina.txt: 851) +.kiees.com +# ||keyyou.net^ (easylistchina.txt: 850) +.keyyou.net +# ||keyrun.cn^$third-party (easylistchina.txt: 849) +.keyrun.cn +# ||keydot.net^$third-party (easylistchina.txt: 848) +.keydot.net +# ||kejet.$third-party (easylistchina.txt: 847) +.kejet.*. +# ||kefeng56.com^$third-party (easylistchina.txt: 846) +.kefeng56.com +# ||kdly.net^$third-party (easylistchina.txt: 845) +.kdly.net +# ||kaixinjiehun.com^$third-party (easylistchina.txt: 844) +.kaixinjiehun.com +# ||jxjzny.com^ (easylistchina.txt: 843) +.jxjzny.com +# ||jwqj.net^ (easylistchina.txt: 842) +.jwqj.net +# ||jusha.com^$third-party (easylistchina.txt: 841) +.jusha.com +# ||junnew.com^$third-party (easylistchina.txt: 840) +.junnew.com +# ||juandou.com^$third-party (easylistchina.txt: 839) +.juandou.com +# ||ju33.com^$third-party (easylistchina.txt: 838) +.ju33.com +# ||jtxh.net^$third-party (easylistchina.txt: 837) +.jtxh.net +# ||jsyd139.com^$third-party (easylistchina.txt: 836) +.jsyd139.com +# ||jsmbaidu.com^$third-party (easylistchina.txt: 835) +.jsmbaidu.com +# ||jsjxhd.com^$third-party (easylistchina.txt: 834) +.jsjxhd.com +# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina.txt: 833) +.js-apac-ss.ysm.yahoo.com +# ||jointreport-switch.com^$third-party (easylistchina.txt: 832) +.jointreport-switch.com +# ||johtzj.com^ (easylistchina.txt: 831) +.johtzj.com +# ||jntmedia.cn^$third-party (easylistchina.txt: 830) +.jntmedia.cn +# ||jnrsjm.com^ (easylistchina.txt: 829) +.jnrsjm.com +# ||jlssbz.com^ (easylistchina.txt: 828) +.jlssbz.com +# ||jk939.com^ (easylistchina.txt: 827) +.jk939.com +# ||jiyou2014.com^ (easylistchina.txt: 826) +.jiyou2014.com +# ||jixing8.net^$third-party (easylistchina.txt: 825) +.jixing8.net +# ||jixing8.com^$third-party (easylistchina.txt: 824) +.jixing8.com +# ||jisucn.com^$third-party (easylistchina.txt: 823) +.jisucn.com +# ||jiankang13.com^$third-party (easylistchina.txt: 822) +.jiankang13.com +# ||jianglishi.cn^$third-party (easylistchina.txt: 821) +.jianglishi.cn +# ||jiangcao.com^$third-party (easylistchina.txt: 820) +.jiangcao.com +# ||jhzl001.com^ (easylistchina.txt: 819) +.jhzl001.com +# ||jdlhg.com^ (easylistchina.txt: 818) +.jdlhg.com +# ||jczzjx.com^ (easylistchina.txt: 817) +.jczzjx.com +# ||j8j9.com^$third-party (easylistchina.txt: 816) +.j8j9.com +# ||itechwall.com^$third-party (easylistchina.txt: 815) +.itechwall.com +# ||istreamsche.com^$third-party (easylistchina.txt: 814) +.istreamsche.com +# ||is686.com^$third-party (easylistchina.txt: 813) +.is686.com +# ||iprefer.com.tw^$third-party (easylistchina.txt: 812) +.iprefer.com.tw +# ||instreet.cn^$third-party (easylistchina.txt: 811) +.instreet.cn +# ||index8.cn^$third-party (easylistchina.txt: 810) +.index8.cn +# ||img80.net^ (easylistchina.txt: 809) +.img80.net +# ||ihualun.com^ (easylistchina.txt: 807) +.ihualun.com +# ||iguang.tw^$third-party (easylistchina.txt: 806) +.iguang.tw +# ||iee5.com^$third-party (easylistchina.txt: 805) +.iee5.com +# ||icast.cn^$third-party (easylistchina.txt: 804) +.icast.cn +# ||i3z.cn^$third-party (easylistchina.txt: 803) +.i3z.cn +# ||i3818.com^ (easylistchina.txt: 802) +.i3818.com +# ||i000o.com^$third-party (easylistchina.txt: 801) +.i000o.com +# ||hxqu.com^$third-party (easylistchina.txt: 800) +.hxqu.com +# ||humanding.com^ (easylistchina.txt: 799) +.humanding.com +# ||hsmkj.net^$third-party (easylistchina.txt: 798) +.hsmkj.net +# ||hr44.com^ (easylistchina.txt: 797) +.hr44.com +# ||hn163fck.com^$third-party (easylistchina.txt: 796) +.hn163fck.com +# ||hmp33.com^ (easylistchina.txt: 795) +.hmp33.com +# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 794) +.hk-cm.ysm.yahoo.com +# ||hfjuki.com^ (easylistchina.txt: 793) +.hfjuki.com +# ||heima8.com^$third-party (easylistchina.txt: 792) +.heima8.com +# ||hauchi.com.tw^$third-party (easylistchina.txt: 791) +.hauchi.com.tw +# ||haoyiwang.net^$third-party (easylistchina.txt: 790) +.haoyiwang.net +# ||haomm.com^$third-party (easylistchina.txt: 789) +.haomm.com +# ||haolew.com^ (easylistchina.txt: 788) +.haolew.com +# ||haohaowan8.com^ (easylistchina.txt: 787) +.haohaowan8.com +# ||haoba.info^$third-party (easylistchina.txt: 786) +.haoba.info +# ||hao123union.baidu.com^$third-party (easylistchina.txt: 785) +.hao123union.baidu.com +# ||hao123rt.com^ (easylistchina.txt: 784) +.hao123rt.com +# ||haiyunx.com^$third-party (easylistchina.txt: 783) +.haiyunx.com +# ||gzqudou.com^ (easylistchina.txt: 782) +.gzqudou.com +# ||gzmjnx.cn^ (easylistchina.txt: 781) +.gzmjnx.cn +# ||gzbywl.com^$third-party (easylistchina.txt: 780) +.gzbywl.com +# ||guduopu.com^ (easylistchina.txt: 779) +.guduopu.com +# ||gs307.com^$third-party (easylistchina.txt: 778) +.gs307.com +# ||gotonav.com^$third-party (easylistchina.txt: 777) +.gotonav.com +# ||gohappy.com.tw^$third-party (easylistchina.txt: 776) +.gohappy.com.tw +# ||gm682.com^ (easylistchina.txt: 775) +.gm682.com +# ||ggmm777.com^$third-party (easylistchina.txt: 774) +.ggmm777.com +# ||gf1353.com^$third-party (easylistchina.txt: 773) +.gf1353.com +# ||gf1352.com^ (easylistchina.txt: 772) +.gf1352.com +# ||gf108.com^ (easylistchina.txt: 771) +.gf108.com +# ||geotmt.com^$third-party (easylistchina.txt: 770) +.geotmt.com +# ||gdxxb.com^$third-party (easylistchina.txt: 769) +.gdxxb.com +# ||gansha.co^$third-party (easylistchina.txt: 768) +.gansha.co +# ||gameone.com^$third-party (easylistchina.txt: 767) +.gameone.com +# ||gamecps.com^$third-party (easylistchina.txt: 766) +.gamecps.com +# ||game3737.com^$third-party (easylistchina.txt: 765) +.game3737.com +# ||g35.cc^$third-party (easylistchina.txt: 764) +.g35.cc +# ||fxxgw.com^$third-party (easylistchina.txt: 763) +.fxxgw.com +# ||fv99.com^ (easylistchina.txt: 762) +.fv99.com +# ||fu68.com^ (easylistchina.txt: 761) +.fu68.com +# ||fmad.cc^$third-party (easylistchina.txt: 760) +.fmad.cc +# ||fjmeyer.com^ (easylistchina.txt: 759) +.fjmeyer.com +# ||feitian001.com^$third-party (easylistchina.txt: 758) +.feitian001.com +# ||fd7c.com^ (easylistchina.txt: 757) +.fd7c.com +# ||fadama.com^$third-party (easylistchina.txt: 756) +.fadama.com +# ||f8272.com^$third-party (easylistchina.txt: 755) +.f8272.com +# ||f70123.com^ (easylistchina.txt: 754) +.f70123.com +# ||f6ce.com^ (easylistchina.txt: 753) +.f6ce.com +# ||f1190.com^ (easylistchina.txt: 752) +.f1190.com +# ||eyouv.cn^$third-party (easylistchina.txt: 751) +.eyouv.cn +# ||emarbox.com^$third-party (easylistchina.txt: 750) +.emarbox.com +# ||elsad.tw^$third-party (easylistchina.txt: 749) +.elsad.tw +# ||ejin56.com^$third-party (easylistchina.txt: 748) +.ejin56.com +# ||eiv.baidu.com^ (easylistchina.txt: 747) +.eiv.baidu.com +# ||egooad.com^$third-party (easylistchina.txt: 746) +.egooad.com +# ||eeyy.com^$third-party (easylistchina.txt: 745) +.eeyy.com +# ||ecuc123.net^ (easylistchina.txt: 744) +.ecuc123.net +# ||easou.com^$third-party (easylistchina.txt: 743) +.easou.com +# ||ea3721.com^$third-party (easylistchina.txt: 742) +.ea3721.com +# ||e719.net^ (easylistchina.txt: 741) +.e719.net +# ||e708.net^ (easylistchina.txt: 740) +.e708.net +# ||e70123.com^ (easylistchina.txt: 739) +.e70123.com +# ||e701.net^ (easylistchina.txt: 738) +.e701.net +# ||dxssiyi.com^ (easylistchina.txt: 737) +.dxssiyi.com +# ||dxpmedia.com^$third-party (easylistchina.txt: 736) +.dxpmedia.com +# ||dw998.com^ (easylistchina.txt: 735) +.dw998.com +# ||dvr8.com^ (easylistchina.txt: 734) +.dvr8.com +# ||dushimj.com^$third-party (easylistchina.txt: 733) +.dushimj.com +# ||duiwai.baidu.com^ (easylistchina.txt: 732) +.duiwai.baidu.com +# ||dszm163.com^$third-party (easylistchina.txt: 731) +.dszm163.com +# ||drmcmm.baidu.com^ (easylistchina.txt: 730) +.drmcmm.baidu.com +# ||dreamfull.cn^ (easylistchina.txt: 729) +.dreamfull.cn +# ||doubleadv.com^$third-party (easylistchina.txt: 728) +.doubleadv.com +# ||dou777.com^ (easylistchina.txt: 727) +.dou777.com +# ||dmtrck.com^$third-party (easylistchina.txt: 725) +.dmtrck.com +# ||dlads.cn^$third-party (easylistchina.txt: 724) +.dlads.cn +# ||displink.com^$third-party (easylistchina.txt: 723) +.displink.com +# ||dianxin.com^$third-party (easylistchina.txt: 722) +.dianxin.com +# ||dian500.com^$third-party (easylistchina.txt: 721) +.dian500.com +# ||dddddd.net^$third-party (easylistchina.txt: 720) +.dddddd.net +# ||datafastguru.info^ (easylistchina.txt: 719) +.datafastguru.info +# ||dashet.com^ (easylistchina.txt: 718) +.dashet.com +# ||d8360.com^$third-party (easylistchina.txt: 717) +.d8360.com +# ||d1ad.com^$third-party (easylistchina.txt: 716) +.d1ad.com +# ||czpwm.com^ (easylistchina.txt: 715) +.czpwm.com +# ||czpush.com^ (easylistchina.txt: 714) +.czpush.com +# ||cyacc.com^ (easylistchina.txt: 713) +.cyacc.com +# ||ctsywy.com^ (easylistchina.txt: 712) +.ctsywy.com +# ||csqiulong.com^ (easylistchina.txt: 711) +.csqiulong.com +# ||csbew.com^$third-party (easylistchina.txt: 710) +.csbew.com +# ||csad.cc^$third-party (easylistchina.txt: 709) +.csad.cc +# ||cs.37see.com^$third-party (easylistchina.txt: 708) +.cs.37see.com +# ||crdrjs.info^ (easylistchina.txt: 707) +.crdrjs.info +# ||crazymike.tw^$third-party (easylistchina.txt: 706) +.crazymike.tw +# ||cpva.cc^ (easylistchina.txt: 705) +.cpva.cc +# ||cpv6.com^ (easylistchina.txt: 704) +.cpv6.com +# ||cpro.baidustatic.com^ (easylistchina.txt: 703) +.cpro.baidustatic.com +# ||cpro.baidu.com^ (easylistchina.txt: 702) +.cpro.baidu.com +# ||cpms.cc^ (easylistchina.txt: 701) +.cpms.cc +# ||cpcv.cc^ (easylistchina.txt: 700) +.cpcv.cc +# ||coinadv.com^$third-party (easylistchina.txt: 699) +.coinadv.com +# ||code668.com^ (easylistchina.txt: 698) +.code668.com +# ||cnzz.com.so^ (easylistchina.txt: 697) +.cnzz.com.so +# ||cnxad.net^ (easylistchina.txt: 696) +.cnxad.net +# ||cnxad.com^$third-party (easylistchina.txt: 695) +.cnxad.com +# ||cloudad.asia^$third-party (easylistchina.txt: 694) +.cloudad.asia +# ||cjlaoshi.com^$third-party (easylistchina.txt: 693) +.cjlaoshi.com +# ||chinesean.com^$third-party (easylistchina.txt: 692) +.chinesean.com +# ||chinauma.net^$third-party (easylistchina.txt: 691) +.chinauma.net +# ||chapm.com^$third-party (easylistchina.txt: 690) +.chapm.com +# ||chanet.com.cn^$third-party (easylistchina.txt: 689) +.chanet.com.cn +# ||cbjs.baidu.com^ (easylistchina.txt: 688) +.cbjs.baidu.com +# ||cb.baidu.com^ (easylistchina.txt: 687) +.cb.baidu.com +# ||caob5.info^ (easylistchina.txt: 686) +.caob5.info +# ||cangnews.com^ (easylistchina.txt: 685) +.cangnews.com +# ||c.91wan.com^$third-party (easylistchina.txt: 684) +.c.91wan.com +# ||btyou.com^$third-party (easylistchina.txt: 683) +.btyou.com +# ||books.com.tw/exep/ap/$third-party (easylistchina.txt: 682) +.books.com.tw/exep/ap/ +# ||bloggerads.net^$third-party (easylistchina.txt: 681) +.bloggerads.net +# ||blogad.com.tw^$third-party (easylistchina.txt: 680) +.blogad.com.tw +# ||biddingx.com^$third-party (easylistchina.txt: 679) +.biddingx.com +# ||behe.com^$third-party (easylistchina.txt: 678) +.behe.com +# ||baodaozhan.cn^$third-party (easylistchina.txt: 677) +.baodaozhan.cn +# ||bang5mai.com^$third-party (easylistchina.txt: 676) +.bang5mai.com +# ||baidu360haosou.info^$third-party (easylistchina.txt: 675) +.baidu360haosou.info +# ||b5h7.com^$third-party (easylistchina.txt: 674) +.b5h7.com +# ||av8d.net^$third-party (easylistchina.txt: 673) +.av8d.net +# ||at98.com^ (easylistchina.txt: 672) +.at98.com +# ||at918.com^$third-party (easylistchina.txt: 671) +.at918.com +# ||aralego.com^ (easylistchina.txt: 670) +.aralego.com +# ||aoparking.com^$third-party (easylistchina.txt: 669) +.aoparking.com +# ||andmejs.com^$third-party (easylistchina.txt: 668) +.andmejs.com +# ||amazingmagics.com^ (easylistchina.txt: 667) +.amazingmagics.com +# ||allyes.$third-party (easylistchina.txt: 666) +.allyes.*. +# ||aliyunxin.com^ (easylistchina.txt: 665) +.aliyunxin.com +# ||aliyuncss.com^ (easylistchina.txt: 664) +.aliyuncss.com +# ||ajhdf.com^$third-party (easylistchina.txt: 662) +.ajhdf.com +# ||ajaxcdn.org^ (easylistchina.txt: 661) +.ajaxcdn.org +# ||aimato.com^$third-party (easylistchina.txt: 660) +.aimato.com +# ||aidaicn.com^$third-party (easylistchina.txt: 659) +.aidaicn.com +# ||agrantsem.com^$third-party (easylistchina.txt: 658) +.agrantsem.com +# ||affiliate.rakuten.co.jp^$third-party (easylistchina.txt: 657) +.affiliate.rakuten.co.jp +# ||adyun.com^$third-party (easylistchina.txt: 656) +.adyun.com +# ||adxiaozi.com^$third-party (easylistchina.txt: 655) +.adxiaozi.com +# ||adver.com.tw^$third-party (easylistchina.txt: 654) +.adver.com.tw +# ||adunioncode.com^$third-party (easylistchina.txt: 653) +.adunioncode.com +# ||adt100.com^$third-party (easylistchina.txt: 652) +.adt100.com +# ||adsbro.com^$third-party (easylistchina.txt: 651) +.adsbro.com +# ||adsage.com^$third-party (easylistchina.txt: 650) +.adsage.com +# ||ads.uc.cn^ (easylistchina.txt: 649) +.ads.uc.cn +# ||adpush.cn^$third-party (easylistchina.txt: 648) +.adpush.cn +# ||adpro.cn^$third-party (easylistchina.txt: 647) +.adpro.cn +# ||admin6.com^$third-party (easylistchina.txt: 646) +.admin6.com +# ||adm.cnzz.net^$third-party (easylistchina.txt: 645) +.adm.cnzz.net +# ||adm-cnzz.net^ (easylistchina.txt: 644) +.adm-cnzz.net +# ||adkongjian.com^$third-party (easylistchina.txt: 643) +.adkongjian.com +# ||adingo.jp^$third-party (easylistchina.txt: 642) +.adingo.jp +# ||adhouyi.com^$third-party (easylistchina.txt: 641) +.adhouyi.com +# ||adconfer.com^$third-party (easylistchina.txt: 640) +.adconfer.com +# ||adchina.cc^$third-party (easylistchina.txt: 639) +.adchina.cc +# ||adcenter.conn.tw^$third-party (easylistchina.txt: 638) +.adcenter.conn.tw +# ||adbxb.com^$third-party (easylistchina.txt: 637) +.adbxb.com +# ||ad8.cc^$third-party (easylistchina.txt: 636) +.ad8.cc +# ||ad000000.com^ (easylistchina.txt: 635) +.ad000000.com +# ||ad-plus.cn^$third-party (easylistchina.txt: 634) +.ad-plus.cn +# ||acs86.com^$third-party (easylistchina.txt: 633) +.acs86.com +# ||acgbase.com^$third-party (easylistchina.txt: 632) +.acgbase.com +# ||a907907.com^ (easylistchina.txt: 631) +.a907907.com +# ||a7shun.com^$third-party (easylistchina.txt: 630) +.a7shun.com +# ||a3p4.com^$third-party (easylistchina.txt: 629) +.a3p4.com +# ||9xu.com^$third-party (easylistchina.txt: 628) +.9xu.com +# ||9w1an.com^$third-party (easylistchina.txt: 627) +.9w1an.com +# ||9ead.com^$third-party (easylistchina.txt: 626) +.9ead.com +# ||9718.com^$third-party (easylistchina.txt: 625) +.9718.com +# ||9519.net^$third-party (easylistchina.txt: 624) +.9519.net +# ||9377os.com^ (easylistchina.txt: 623) +.9377os.com +# ||9377ku.com^ (easylistchina.txt: 622) +.9377ku.com +# ||9377co.com^ (easylistchina.txt: 621) +.9377co.com +# ||91zgm.com^ (easylistchina.txt: 620) +.91zgm.com +# ||91ysa.com^ (easylistchina.txt: 619) +.91ysa.com +# ||9158918.com^$third-party (easylistchina.txt: 618) +.9158918.com +# ||913h6.cn^$third-party (easylistchina.txt: 617) +.913h6.cn +# ||911.cc^$third-party (easylistchina.txt: 616) +.911.cc +# ||8ox.cn^$third-party (easylistchina.txt: 615) +.8ox.cn +# ||8le8le.com^$third-party (easylistchina.txt: 614) +.8le8le.com +# ||892155.com^ (easylistchina.txt: 613) +.892155.com +# ||8910ad.com^$third-party (easylistchina.txt: 612) +.8910ad.com +# ||88rpg.net^ (easylistchina.txt: 611) +.88rpg.net +# ||88cpc.com^$third-party (easylistchina.txt: 610) +.88cpc.com +# ||85tgw.com^ (easylistchina.txt: 609) +.85tgw.com +# ||81c.cn^ (easylistchina.txt: 608) +.81c.cn +# ||7xz3.com^ (easylistchina.txt: 607) +.7xz3.com +# ||7wen.cn^ (easylistchina.txt: 606) +.7wen.cn +# ||7o2o.com^$third-party (easylistchina.txt: 605) +.7o2o.com +# ||7clink.com^$third-party (easylistchina.txt: 604) +.7clink.com +# ||7bwan.com^$third-party (easylistchina.txt: 603) +.7bwan.com +# ||788xj.com^$third-party (easylistchina.txt: 602) +.788xj.com +# ||77power.com^ (easylistchina.txt: 601) +.77power.com +# ||71sem.com^ (easylistchina.txt: 600) +.71sem.com +# ||710070.com^$third-party (easylistchina.txt: 599) +.710070.com +# ||70e.com^$third-party (easylistchina.txt: 598) +.70e.com +# ||6dvip.com^ (easylistchina.txt: 597) +.6dvip.com +# ||6dad.com^$third-party (easylistchina.txt: 596) +.6dad.com +# ||68665565.com^ (easylistchina.txt: 595) +.68665565.com +# ||685wo.com^$script,third-party (easylistchina.txt: 594) +.685wo.com +# ||67lm.com^$third-party (easylistchina.txt: 593) +.67lm.com +# ||66san.com^ (easylistchina.txt: 592) +.66san.com +# ||668559.com^$third-party (easylistchina.txt: 591) +.668559.com +# ||63kc.com^$third-party (easylistchina.txt: 590) +.63kc.com +# ||61.152.223.15^ (easylistchina.txt: 589) +.61.152.223.15 +# ||5mnh.com^$third-party (easylistchina.txt: 588) +.5mnh.com +# ||58.215.179.159^ (easylistchina.txt: 587) +.58.215.179.159 +# ||565882.com^$third-party (easylistchina.txt: 586) +.565882.com +# ||5399.com^$third-party (easylistchina.txt: 585) +.5399.com +# ||52kmk.com^ (easylistchina.txt: 584) +.52kmk.com +# ||52kmh.com^$third-party (easylistchina.txt: 583) +.52kmh.com +# ||526d.com^$third-party (easylistchina.txt: 582) +.526d.com +# ||51ads.com^$third-party (easylistchina.txt: 581) +.51ads.com +# ||4kt2.com^$subdocument (easylistchina.txt: 580) +.4kt2.com +# ||4936.cn^$third-party (easylistchina.txt: 579) +.4936.cn +# ||44pv.com^$third-party (easylistchina.txt: 578) +.44pv.com +# ||3p-link.com^$third-party (easylistchina.txt: 577) +.3p-link.com +# ||3g.990.net^ (easylistchina.txt: 576) +.3g.990.net +# ||3dwwwgame.com^$third-party (easylistchina.txt: 575) +.3dwwwgame.com +# ||3alian.net^$third-party (easylistchina.txt: 574) +.3alian.net +# ||3975lm.com^$third-party (easylistchina.txt: 573) +.3975lm.com +# ||38ra.com^$third-party (easylistchina.txt: 572) +.38ra.com +# ||3839168.com^$third-party (easylistchina.txt: 571) +.3839168.com +# ||3808010.com/code$third-party (easylistchina.txt: 570) +.3808010.com/code +# ||37cs.com^$third-party (easylistchina.txt: 569) +.37cs.com +# ||36pn.com^ (easylistchina.txt: 568) +.36pn.com +# ||366safego.com^ (easylistchina.txt: 567) +.366safego.com +# ||365safego.com^ (easylistchina.txt: 566) +.365safego.com +# ||365bibi.com^ (easylistchina.txt: 565) +.365bibi.com +# ||36500.net^$third-party (easylistchina.txt: 564) +.36500.net +# ||36500.com^$third-party (easylistchina.txt: 563) +.36500.com +# ||360doo.com^$third-party (easylistchina.txt: 562) +.360doo.com +# ||360baidus.com^ (easylistchina.txt: 561) +.360baidus.com +# ||3600ys.com^$third-party (easylistchina.txt: 560) +.3600ys.com +# ||3399.com/act/$third-party (easylistchina.txt: 559) +.3399.com/act/ +# ||32414.com^$third-party (easylistchina.txt: 558) +.32414.com +# ||321tui.com^$third-party (easylistchina.txt: 557) +.321tui.com +# ||321tui.cn^$third-party (easylistchina.txt: 556) +.321tui.cn +# ||2m2n.com^ (easylistchina.txt: 555) +.2m2n.com +# ||2529.com^$third-party (easylistchina.txt: 554) +.2529.com +# ||23kmm.com^$third-party (easylistchina.txt: 553) +.23kmm.com +# ||235123.net^$third-party (easylistchina.txt: 552) +.235123.net +# ||221.204.213.222^ (easylistchina.txt: 551) +.221.204.213.222 +# ||220.115.251.25^ (easylistchina.txt: 550) +.220.115.251.25 +# ||219.234.83.60^ (easylistchina.txt: 549) +.219.234.83.60 +# ||218.26.217.*.html (easylistchina.txt: 548) +.218.26.217.*./.*\.html +.218.26.217.*.html*. +# ||217wo.com^$third-party (easylistchina.txt: 547) +.217wo.com +# ||2155ec.com^$third-party (easylistchina.txt: 546) +.2155ec.com +# ||211.167.105.131^ (easylistchina.txt: 545) +.211.167.105.131 +# ||210.65.10.32^$third-party (easylistchina.txt: 544) +.210.65.10.32 +# ||2012ui.com^ (easylistchina.txt: 543) +.2012ui.com +# ||201071.com^ (easylistchina.txt: 542) +.201071.com +# ||1v7.cn^$third-party (easylistchina.txt: 541) +.1v7.cn +# ||1qwe3r.com^$third-party (easylistchina.txt: 540) +.1qwe3r.com +# ||1lo0.net^$third-party (easylistchina.txt: 539) +.1lo0.net +# ||1l1.cc^ (easylistchina.txt: 538) +.1l1.cc +# ||182.92.81.104^ (easylistchina.txt: 537) +.182.92.81.104 +# ||1503.net/code/ (easylistchina.txt: 536) +.1503.net/code/ +# ||139site.com^$third-party (easylistchina.txt: 535) +.139site.com +# ||139.159.32.82^ (easylistchina.txt: 534) +.139.159.32.82 +# ||12l22.net^$third-party (easylistchina.txt: 533) +.12l22.net +# ||123hala.com^ (easylistchina.txt: 532) +.123hala.com +# ||122.227.254.195^ (easylistchina.txt: 531) +.122.227.254.195 +# ||1188.com^$third-party (easylistchina.txt: 530) +.1188.com +# ||118114.cn^$third-party (easylistchina.txt: 529) +.118114.cn +# ||116.55.227.242^ (easylistchina.txt: 528) +.116.55.227.242 +# ||1133.cc^$third-party (easylistchina.txt: 526) +.1133.cc +# ||112.124.98.75^ (easylistchina.txt: 525) +.112.124.98.75 +# ||111111qb.com^ (easylistchina.txt: 524) +.111111qb.com +# ||111.175.219.7^ (easylistchina.txt: 523) +.111.175.219.7 +# ||110160.com^$third-party (easylistchina.txt: 522) +.110160.com +# ||106.187.95.251^ (easylistchina.txt: 521) +.106.187.95.251 +# ||104.195.62.12^ (easylistchina.txt: 520) +.104.195.62.12 +# ||103.249.111.179^$third-party (easylistchina.txt: 519) +.103.249.111.179 +# ||100cpc.com^$third-party (easylistchina.txt: 518) +.100cpc.com +# ||0xxd.com^ (easylistchina.txt: 517) +.0xxd.com +# ||0756j.com^$third-party (easylistchina.txt: 516) +.0756j.com +# ||0591101.com^$third-party (easylistchina.txt: 515) +.0591101.com +# ||033.com^$third-party (easylistchina.txt: 514) +.033.com +# |http://tk.*.php?id=*&step= (easylistchina.txt: 513) +tk.*./.*\.php\?id=.*&step= +# |http://tk.*.php?id=*&s=$script (easylistchina.txt: 512) +tk.*./.*\.php\?id=.*&s= +# |http://p.*.com/view.php?uid=$script,third-party (easylistchina.txt: 511) +p.*./.*\.com/view\.php\?uid= +p.*.com/view\.php\?uid= +# |http://1.3.0.10^ (easylistchina.txt: 510) +1.3.0.10 +# |http://*:*/s.php?id=$script,third-party (easylistchina.txt: 509) +/.*:.*/s\.php\?id= +.*:*./(.*/)?s\.php\?id= +# |http://*//s.php?id=$script,third-party (easylistchina.txt: 508) +/(.*/)?/s\.php\?id= +# |http://*.tw/s.php?id=$script,third-party (easylistchina.txt: 507) +/.*\.tw/s\.php\?id= +.*.tw/s\.php\?id= +# |http://*.info/s.php?id=$script,third-party (easylistchina.txt: 506) +/.*\.info/s\.php\?id= +.*.info/s\.php\?id= +# |http://*.com/s.php?id=$script,third-party (easylistchina.txt: 505) +/.*\.com/s\.php\?id= +.*.com/s\.php\?id= +# |http://*.cn/s.php?id=$script,third-party (easylistchina.txt: 504) +/.*\.cn/s\.php\?id= +.*.cn/s\.php\?id= +# |http://*.cc/s.php?id=$script,third-party (easylistchina.txt: 503) +/.*\.cc/s\.php\?id= +.*.cc/s\.php\?id= +# :9001/code/ (easylistchina.txt: 502) +/.*:9001/code/ +# :8080/js/v2.1.js$third-party (easylistchina.txt: 501) +/.*:8080/js/v2\.1\.js +# :8080/js/v1.js$third-party (easylistchina.txt: 500) +/.*:8080/js/v1\.js +# /v.php?z=$script,third-party (easylistchina.txt: 499) +/(.*/)?v\.php\?z= +# /tourl.html?url= (easylistchina.txt: 498) +/(.*/)?tourl\.html\?url= +# /svr/popwin.aspx?$third-party (easylistchina.txt: 497) +/(.*/)?svr/popwin\.aspx\? +# /pge/?s=$third-party (easylistchina.txt: 496) +/(.*/)?pge/\?s= +# /pd2.js$third-party (easylistchina.txt: 495) +/(.*/)?pd2\.js +pd2.js*. +# /pagecpv/* (easylistchina.txt: 494) +/(.*/)?pagecpv/.* +# /page/s.php?s=$third-party (easylistchina.txt: 493) +/(.*/)?page/s\.php\?s= +# /page/index.php?s=$third-party (easylistchina.txt: 492) +/(.*/)?page/index\.php\?s= +# /page/?s=$third-party (easylistchina.txt: 491) +/(.*/)?page/\?s= +# /mshow.aspx?AID= (easylistchina.txt: 490) +/(.*/)?mshow\.aspx\?AID= +# /mobile/mads.js (easylistchina.txt: 489) +/(.*/)?mobile/mads\.js +# /js/cpv_dl.js (easylistchina.txt: 488) +/(.*/)?js/cpv_dl\.js +# /i.php?z=$script,third-party (easylistchina.txt: 487) +/(.*/)?i\.php\?z= +# /floatingcontent/*$third-party (easylistchina.txt: 486) +/(.*/)?floatingcontent/.* +# /cpm/i.ashx? (easylistchina.txt: 485) +/(.*/)?cpm/i\.ashx\? +# /code/popjs. (easylistchina.txt: 484) +/(.*/)?code/popjs\. +# /code/pop_cpf. (easylistchina.txt: 483) +/(.*/)?code/pop_cpf\. +# /code/mypop.asp? (easylistchina.txt: 482) +/(.*/)?code/mypop\.asp\? +# /code/cpv.asp? (easylistchina.txt: 481) +/(.*/)?code/cpv\.asp\? +# /code/cpm.asp? (easylistchina.txt: 480) +/(.*/)?code/cpm\.asp\? +# /code/cpc.asp? (easylistchina.txt: 479) +/(.*/)?code/cpc\.asp\? +# /center?advId= (easylistchina.txt: 478) +/(.*/)?center\?advId= +# /AShow.aspx?AID= (easylistchina.txt: 477) +/(.*/)?AShow\.aspx\?AID= +# /adscpc/* (easylistchina.txt: 476) +/(.*/)?adscpc/.* +# /99vjj/*$third-party (easylistchina.txt: 475) +/(.*/)?99vjj/.* +# .com/mediaController.php?pid=$script,third-party (easylistchina.txt: 474) +/.*\.com/mediaController\.php\?pid= +.*.com/mediaController\.php\?pid= +# |http://ad. (easylistchina.txt: 269) +ad.*. +# |http://acs. (easylistchina.txt: 268) +acs.*. +# |http://*/s.js?sp=*&r=$third-party (easylistchina.txt: 267) +/(.*/)?s\.js\?sp=.*&r= +# |http://*/js/tc.js (easylistchina.txt: 266) +/(.*/)?js/tc\.js +# |http://*/js/ad/ (easylistchina.txt: 265) +/(.*/)?js/ad/ +# |http://*/gg3. (easylistchina.txt: 263) +/(.*/)?gg3\. +# |http://*/gg2. (easylistchina.txt: 262) +/(.*/)?gg2\. +# |http://*/gg1. (easylistchina.txt: 261) +/(.*/)?gg1\. +# |http://*/ad.js?v= (easylistchina.txt: 259) +/(.*/)?ad\.js\?v= +# |http://*/ad.js?sn= (easylistchina.txt: 258) +/(.*/)?ad\.js\?sn= +# |http://*/ad.*.js?v=*&sp= (easylistchina.txt: 257) +/(.*/)?ad\..*\.js\?v=.*&sp= +# |http://*/*_ad.js (easylistchina.txt: 256) +/(.*/)?.*_ad\.js +# |http://*.us/ad/ (easylistchina.txt: 255) +/.*\.us/ad/ +.*.us/ad/ +# |http://*.tv/ad/ (easylistchina.txt: 253) +/.*\.tv/ad/ +.*.tv/ad/ +# |http://*.in/ad/ (easylistchina.txt: 252) +/.*\.in/ad/ +.*.in/ad/ +# |http://*.hk/ad/ (easylistchina.txt: 251) +/.*\.hk/ad/ +.*.hk/ad/ +# |http://*.cn/ad/ (easylistchina.txt: 250) +/.*\.cn/ad/ +.*.cn/ad/ +# |http://*.cc/ad/ (easylistchina.txt: 249) +/.*\.cc/ad/ +.*.cc/ad/ +# _mobilebanner_v1_550x60.jpg (easylistchina.txt: 248) +/.*_mobilebanner_v1_550x60\.jpg +# _billboard_320x100.iframe. (easylistchina.txt: 247) +/.*_billboard_320x100\.iframe\. +# =loginExtAD. (easylistchina.txt: 246) +/.*=loginExtAD\. +# :8898/ads_ (easylistchina.txt: 245) +/.*:8898/ads_ +# :8080/ad/ (easylistchina.txt: 244) +/.*:8080/ad/ +# :1010/openV5.js (easylistchina.txt: 243) +/.*:1010/openV5\.js +# /zzhzad/* (easylistchina.txt: 242) +/(.*/)?zzhzad/.* +# /znds/images/dangbeigif.gif (easylistchina.txt: 241) +/(.*/)?znds/images/dangbeigif\.gif +# /xianxiashijie_ad.png (easylistchina.txt: 240) +/(.*/)?xianxiashijie_ad\.png +# /wy96ad/* (easylistchina.txt: 239) +/(.*/)?wy96ad/.* +# /wp-content/themes/iMovies/js/tc_ (easylistchina.txt: 238) +/(.*/)?wp-content/themes/iMovies/js/tc_ +# /W3Cfuns_Adv/* (easylistchina.txt: 237) +/(.*/)?W3Cfuns_Adv/.* +# /uedbet/pause. (easylistchina.txt: 236) +/(.*/)?uedbet/pause\. +# /u/_sponsor/* (easylistchina.txt: 235) +/(.*/)?u/_sponsor/.* +# /tuiguang/* (easylistchina.txt: 234) +/(.*/)?tuiguang/.* +# /ttmeiju/images/ts.gif (easylistchina.txt: 233) +/(.*/)?ttmeiju/images/ts\.gif +# /tmall11nov2015-2.jpg (easylistchina.txt: 232) +/(.*/)?tmall11nov2015-2\.jpg +tmall11nov2015-2.jpg*. +# /tigtag_custom/include/popup. (easylistchina.txt: 231) +/(.*/)?tigtag_custom/include/popup\. +# /tigtag_custom/include/couplet. (easylistchina.txt: 230) +/(.*/)?tigtag_custom/include/couplet\. +# /tigtag_custom/*_banner (easylistchina.txt: 229) +/(.*/)?tigtag_custom/.*_banner +# /template/gg.js (easylistchina.txt: 228) +/(.*/)?template/gg\.js +# /taobaoad.html (easylistchina.txt: 227) +/(.*/)?taobaoad\.html +taobaoad.html*. +# /tanchuang. (easylistchina.txt: 226) +/(.*/)?tanchuang\. +tanchuang.*. +# /tanad.js (easylistchina.txt: 225) +/(.*/)?tanad\.js +tanad.js*. +# /tan.js (easylistchina.txt: 224) +/(.*/)?tan\.js +tan.js*. +# /taihai/v2014/images/index/aa_10. (easylistchina.txt: 223) +/(.*/)?taihai/v2014/images/index/aa_10\. +# /sygg/* (easylistchina.txt: 222) +/(.*/)?sygg/.* +# /sxgg/13 (easylistchina.txt: 221) +/(.*/)?sxgg/13 +# /sxgg/12.js (easylistchina.txt: 220) +/(.*/)?sxgg/12\.js +# /static/adsview/* (easylistchina.txt: 219) +/(.*/)?static/adsview/.* +# /ssdxad.swf (easylistchina.txt: 218) +/(.*/)?ssdxad\.swf +ssdxad.swf*. +# /source/plugin/mama_tips/* (easylistchina.txt: 217) +/(.*/)?source/plugin/mama_tips/.* +# /sogouAD. (easylistchina.txt: 216) +/(.*/)?sogouAD\. +sogouAD.*. +# /show.js?sp=*&oid= (easylistchina.txt: 215) +/(.*/)?show\.js\?sp=.*&oid= +# /Runtime/js/top960.js (easylistchina.txt: 214) +/(.*/)?Runtime/js/top960\.js +# /runtime/js/index960.js (easylistchina.txt: 213) +/(.*/)?runtime/js/index960\.js +# /qqyouyuead/* (easylistchina.txt: 212) +/(.*/)?qqyouyuead/.* +# /qqlive/conf/playerlottery/* (easylistchina.txt: 211) +/(.*/)?qqlive/conf/playerlottery/.* +# /qqguojiad/* (easylistchina.txt: 210) +/(.*/)?qqguojiad/.* +# /qpxl.js (easylistchina.txt: 209) +/(.*/)?qpxl\.js +qpxl.js*. +# /QianFanAdPalyer. (easylistchina.txt: 208) +/(.*/)?QianFanAdPalyer\. +QianFanAdPalyer.*. +# /proxy.html?id= (easylistchina.txt: 207) +/(.*/)?proxy\.html\?id= +# /proxy.htm?id= (easylistchina.txt: 206) +/(.*/)?proxy\.htm\?id= +# /pop_DJ2010.swf (easylistchina.txt: 205) +/(.*/)?pop_DJ2010\.swf +# /plugin.php?id=popad_7ree& (easylistchina.txt: 204) +/(.*/)?plugin\.php\?id=popad_7ree& +# /pic/ad/* (easylistchina.txt: 202) +/(.*/)?pic/ad/.* +# /piaofu.js (easylistchina.txt: 201) +/(.*/)?piaofu\.js +piaofu.js*. +# /pc/Tpl/baibaipc/js/* (easylistchina.txt: 200) +/(.*/)?pc/Tpl/baibaipc/js/.* +# /pc/Tpl/baibaipc//js/* (easylistchina.txt: 199) +/(.*/)?pc/Tpl/baibaipc//js/.* +# /paypic/* (easylistchina.txt: 198) +/(.*/)?paypic/.* +# /newsyd/templates/sponsor/* (easylistchina.txt: 197) +/(.*/)?newsyd/templates/sponsor/.* +# /new_site_topad^ (easylistchina.txt: 196) +/(.*/)?new_site_topad[^\w%.-] +# /nanrenpeng/ads/* (easylistchina.txt: 195) +/(.*/)?nanrenpeng/ads/.* +# /myimg/alimama2014.html (easylistchina.txt: 194) +/(.*/)?myimg/alimama2014\.html +# /moneymaker-banners/ads_ (easylistchina.txt: 193) +/(.*/)?moneymaker-banners/ads_ +# /module/adsview/* (easylistchina.txt: 192) +/(.*/)?module/adsview/.* +# /main/s? (easylistchina.txt: 191) +/(.*/)?main/s\? +# /main.js?v=*&sp=*&ty= (easylistchina.txt: 190) +/(.*/)?main\.js\?v=.*&sp=.*&ty= +# /lfadvertise.js (easylistchina.txt: 189) +/(.*/)?lfadvertise\.js +lfadvertise.js*. +# /lfAD2v1.1.js (easylistchina.txt: 188) +/(.*/)?lfAD2v1\.1\.js +lfAD2v1.1.js*. +# /lenovo/pc/all.js (easylistchina.txt: 187) +/(.*/)?lenovo/pc/all\.js +# /kuaiyun-728-91. (easylistchina.txt: 186) +/(.*/)?kuaiyun-728-91\. +kuaiyun-728-91.*. +# /k960g90. (easylistchina.txt: 185) +/(.*/)?k960g90\. +k960g90.*. +# /k300g250. (easylistchina.txt: 184) +/(.*/)?k300g250\. +k300g250.*. +# /k120g270. (easylistchina.txt: 183) +/(.*/)?k120g270\. +k120g270.*. +# /jumbo_banner_Gif_ (easylistchina.txt: 182) +/(.*/)?jumbo_banner_Gif_ +# /jsadv/* (easylistchina.txt: 181) +/(.*/)?jsadv/.* +# /js/utils78.js (easylistchina.txt: 180) +/(.*/)?js/utils78\.js +# /js/utils51.js (easylistchina.txt: 179) +/(.*/)?js/utils51\.js +# /js/guanggao_gg.js (easylistchina.txt: 178) +/(.*/)?js/guanggao_gg\.js +# /js/bocaiadv. (easylistchina.txt: 177) +/(.*/)?js/bocaiadv\. +# /js/ads/zuoxiajiao.js (easylistchina.txt: 176) +/(.*/)?js/ads/zuoxiajiao\.js +# /js/ads/youxiajiao.js (easylistchina.txt: 175) +/(.*/)?js/ads/youxiajiao\.js +# /js/ads/yezi (easylistchina.txt: 174) +/(.*/)?js/ads/yezi +# /js/ads/to (easylistchina.txt: 173) +/(.*/)?js/ads/to +# /js/ads/piao.js (easylistchina.txt: 172) +/(.*/)?js/ads/piao\.js +# /js/ads/neiye (easylistchina.txt: 171) +/(.*/)?js/ads/neiye +# /js/ads/dui.js (easylistchina.txt: 170) +/(.*/)?js/ads/dui\.js +# /ina_ad_ (easylistchina.txt: 169) +/(.*/)?ina_ad_ +# /h/k.php?u=*&l=*&v=$third-party (easylistchina.txt: 168) +/(.*/)?h/k\.php\?u=.*&l=.*&v= +# /guanggao2. (easylistchina.txt: 167) +/(.*/)?guanggao2\. +guanggao2.*. +# /guanggao/* (easylistchina.txt: 166) +/(.*/)?guanggao/.* +# /guanggao. (easylistchina.txt: 165) +/(.*/)?guanggao\. +guanggao.*. +# /guangg/* (easylistchina.txt: 164) +/(.*/)?guangg/.* +# /guangao/* (easylistchina.txt: 163) +/(.*/)?guangao/.* +# /guang/930x90. (easylistchina.txt: 162) +/(.*/)?guang/930x90\. +# /ggtp/* (easylistchina.txt: 161) +/(.*/)?ggtp/.* +# /ggpic/* (easylistchina.txt: 160) +/(.*/)?ggpic/.* +# /ggjs/* (easylistchina.txt: 159) +/(.*/)?ggjs/.* +# /ggao/* (easylistchina.txt: 158) +/(.*/)?ggao/.* +# /ggao. (easylistchina.txt: 157) +/(.*/)?ggao\. +ggao.*. +# /ggad/* (easylistchina.txt: 156) +/(.*/)?ggad/.* +# /gg5. (easylistchina.txt: 155) +/(.*/)?gg5\. +gg5.*. +# /gg4. (easylistchina.txt: 154) +/(.*/)?gg4\. +gg4.*. +# /gaog/* (easylistchina.txt: 153) +/(.*/)?gaog/.* +# /floatad2. (easylistchina.txt: 152) +/(.*/)?floatad2\. +floatad2.*. +# /float_r.js (easylistchina.txt: 150) +/(.*/)?float_r\.js +# /ettoday/gemini/* (easylistchina.txt: 149) +/(.*/)?ettoday/gemini/.* +# /dy_66jjss/* (easylistchina.txt: 148) +/(.*/)?dy_66jjss/.* +# /duilian_gg. (easylistchina.txt: 147) +/(.*/)?duilian_gg\. +# /duilian2. (easylistchina.txt: 146) +/(.*/)?duilian2\. +duilian2.*. +# /diantan.js (easylistchina.txt: 144) +/(.*/)?diantan\.js +diantan.js*. +# /data/cache/myad- (easylistchina.txt: 143) +/(.*/)?data/cache/myad- +# /data/ad/* (easylistchina.txt: 142) +/(.*/)?data/ad/.* +# /cpro/ui/* (easylistchina.txt: 141) +/(.*/)?cpro/ui/.* +# /content/plugins/em_ad/* (easylistchina.txt: 140) +/(.*/)?content/plugins/em_ad/.* +# /common/cf/*$image,object (easylistchina.txt: 139) +/(.*/)?common/cf/.* +# /comiis_kmsjx3hlx/ads/* (easylistchina.txt: 138) +/(.*/)?comiis_kmsjx3hlx/ads/.* +# /comiis_19lou/ads/* (easylistchina.txt: 137) +/(.*/)?comiis_19lou/ads/.* +# /clicktotal/ClickTotal.js (easylistchina.txt: 136) +/(.*/)?clicktotal/ClickTotal\.js +# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina.txt: 135) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*pagead2\. +# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina.txt: 134) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*p\.tanx\.com +# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina.txt: 133) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.overture\.com +# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina.txt: 132) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.humanding\.com +# /caiguu_gg_ (easylistchina.txt: 131) +/(.*/)?caiguu_gg_ +# /caches/poster_js/* (easylistchina.txt: 130) +/(.*/)?caches/poster_js/.* +# /cache/ad_js/* (easylistchina.txt: 129) +/(.*/)?cache/ad_js/.* +# /btba/ad/* (easylistchina.txt: 128) +/(.*/)?btba/ad/.* +# /botad.html (easylistchina.txt: 127) +/(.*/)?botad\.html +botad.html*. +# /bbh_ad_ (easylistchina.txt: 126) +/(.*/)?bbh_ad_ +# /bbh_ad. (easylistchina.txt: 125) +/(.*/)?bbh_ad\. +# /Banner-pcbeta- (easylistchina.txt: 124) +/(.*/)?Banner-pcbeta- +Banner-pcbeta-*. +# /aoyou372down300_ (easylistchina.txt: 123) +/(.*/)?aoyou372down300_ +# /ajds/* (easylistchina.txt: 122) +/(.*/)?ajds/.* +# /aipaiPlayFull2.js?0. (easylistchina.txt: 121) +/(.*/)?aipaiPlayFull2\.js\?0\. +# /adx-exchange. (easylistchina.txt: 120) +/(.*/)?adx-exchange\. +adx-exchange.*. +# /advpic/* (easylistchina.txt: 119) +/(.*/)?advpic/.* +# /AdverJS/* (easylistchina.txt: 118) +/(.*/)?AdverJS/.* +# /adpv?cn= (easylistchina.txt: 117) +/(.*/)?adpv\?cn= +# /adpuba/* (easylistchina.txt: 116) +/(.*/)?adpuba/.* +# /adpro.js (easylistchina.txt: 115) +/(.*/)?adpro\.js +adpro.js*. +# /adpfile/* (easylistchina.txt: 114) +/(.*/)?adpfile/.* +# /adintrs/* (easylistchina.txt: 113) +/(.*/)?adintrs/.* +# /adblockTester2.js (easylistchina.txt: 112) +/(.*/)?adblockTester2\.js +adblockTester2.js*. +# /adblockTester1.js (easylistchina.txt: 111) +/(.*/)?adblockTester1\.js +adblockTester1.js*. +# /adblockTester.js (easylistchina.txt: 110) +/(.*/)?adblockTester\.js +adblockTester.js*. +# /AD2v1.1.js (easylistchina.txt: 109) +/(.*/)?AD2v1\.1\.js +AD2v1.1.js*. +# /acmsd/* (easylistchina.txt: 108) +/(.*/)?acmsd/.* +# /a/p?adid= (easylistchina.txt: 107) +/(.*/)?a/p\?adid= +# /9115gg/* (easylistchina.txt: 106) +/(.*/)?9115gg/.* +# /119g/640x60_ (easylistchina.txt: 105) +/(.*/)?119g/640x60_ +# .us/js/ads/ (easylistchina.txt: 104) +/.*\.us/js/ads/ +.*.us/js/ads/ +# .net/js/ads/ (easylistchina.txt: 103) +/.*\.net/js/ads/ +.*.net/js/ads/ +# .js?advertID= (easylistchina.txt: 102) +/.*\.js\?advertID= +# .info/js/alls_top.js (easylistchina.txt: 101) +/.*\.info/js/alls_top\.js +.*.info/js/alls_top\.js +# .info/js/alls_foot.js (easylistchina.txt: 100) +/.*\.info/js/alls_foot\.js +.*.info/js/alls_foot\.js +# .info/js/ads/ (easylistchina.txt: 99) +/.*\.info/js/ads/ +.*.info/js/ads/ +# .info/ad/ (easylistchina.txt: 98) +/.*\.info/ad/ +.*.info/ad/ +# .info/ad.js (easylistchina.txt: 97) +/.*\.info/ad\.js +.*.info/ad\.js +# .in/js/ads/ (easylistchina.txt: 96) +/.*\.in/js/ads/ +.*.in/js/ads/ +# .com/vodad.js (easylistchina.txt: 95) +/.*\.com/vodad\.js +.*.com/vodad\.js +# .com/pc/ad/ (easylistchina.txt: 94) +/.*\.com/pc/ad/ +.*.com/pc/ad/ +# .com/js/alls_top.js (easylistchina.txt: 93) +/.*\.com/js/alls_top\.js +.*.com/js/alls_top\.js +# .com/js/alls_foot.js (easylistchina.txt: 92) +/.*\.com/js/alls_foot\.js +.*.com/js/alls_foot\.js +# .com/js/ad_ (easylistchina.txt: 91) +/.*\.com/js/ad_ +.*.com/js/ad_ +# .com/a_d/ (easylistchina.txt: 90) +/.*\.com/a_d/ +.*.com/a_d/ +# .co/js/ads/ (easylistchina.txt: 89) +/.*\.co/js/ads/ +.*.co/js/ads/ +# .cn/js/ads/ (easylistchina.txt: 88) +/.*\.cn/js/ads/ +.*.cn/js/ads/ +# .cn/ads/ (easylistchina.txt: 87) +/.*\.cn/ads/ +.*.cn/ads/ +# .cc/js/ads/ (easylistchina.txt: 86) +/.*\.cc/js/ads/ +.*.cc/js/ads/ +# .bl.test15. (easylistchina.txt: 85) +/.*\.bl\.test15\. +.*.bl.test15.*. +# ||yy32.com^$third-party (easylistchina.txt: 82) +.yy32.com +# ||xq12.com^$third-party (easylistchina.txt: 81) +.xq12.com +# ||xixianad.com^$third-party (easylistchina.txt: 80) +.xixianad.com +# ||wofan.net^$third-party (easylistchina.txt: 79) +.wofan.net +# ||v.xi666.com^$third-party (easylistchina.txt: 78) +.v.xi666.com +# ||ugoooo.com^$third-party (easylistchina.txt: 77) +.ugoooo.com +# ||uctrac.com^$third-party (easylistchina.txt: 76) +.uctrac.com +# ||ubcpm.com^$third-party (easylistchina.txt: 75) +.ubcpm.com +# ||tuiguang.178.com^ (easylistchina.txt: 74) +.tuiguang.178.com +# ||szvr.com^$third-party (easylistchina.txt: 73) +.szvr.com +# ||sitemaji.com^$third-party (easylistchina.txt: 72) +.sitemaji.com +# ||samboc.com^$third-party (easylistchina.txt: 71) +.samboc.com +# ||s.yimg.com/ja/ap/tw/js/ (easylistchina.txt: 69) +.s.yimg.com/ja/ap/tw/js/ +# ||rekanw.com^$third-party (easylistchina.txt: 68) +.rekanw.com +# ||rayli.com.cn^$third-party (easylistchina.txt: 67) +.rayli.com.cn +# ||qling.com^$third-party (easylistchina.txt: 66) +.qling.com +# ||oeya.com^$third-party (easylistchina.txt: 65) +.oeya.com +# ||niwota.com^$third-party (easylistchina.txt: 64) +.niwota.com +# ||mosa86.com^$third-party (easylistchina.txt: 63) +.mosa86.com +# ||lu.sogou.com^$subdocument (easylistchina.txt: 62) +.lu.sogou.com +# ||log.interest.mix.sina.com.cn^ (easylistchina.txt: 61) +.log.interest.mix.sina.com.cn +# ||lm.35.com^$third-party (easylistchina.txt: 60) +.lm.35.com +# ||lianjie.phpwind.com^$third-party (easylistchina.txt: 59) +.lianjie.phpwind.com +# ||kuqi.com^$third-party (easylistchina.txt: 58) +.kuqi.com +# ||kuaiwan.com^$third-party (easylistchina.txt: 57) +.kuaiwan.com +# ||image.qndown.com^$third-party (easylistchina.txt: 56) +.image.qndown.com +# ||ilepai.com^$third-party (easylistchina.txt: 55) +.ilepai.com +# ||ifocus.cn^$third-party (easylistchina.txt: 54) +.ifocus.cn +# ||hz3137.com^$third-party (easylistchina.txt: 53) +.hz3137.com +# ||housefun.com.tw^$third-party (easylistchina.txt: 52) +.housefun.com.tw +# ||hiad.myweb.hinet.net^ (easylistchina.txt: 51) +.hiad.myweb.hinet.net +# ||googleadsl.com^$third-party (easylistchina.txt: 50) +.googleadsl.com +# ||flashwing.net^$third-party (easylistchina.txt: 49) +.flashwing.net +# ||ee4kdushuba.com^$third-party (easylistchina.txt: 48) +.ee4kdushuba.com +# ||dingge.cc^$third-party (easylistchina.txt: 47) +.dingge.cc +# ||dian5000.com^$third-party (easylistchina.txt: 46) +.dian5000.com +# ||cpm360.com^$third-party (easylistchina.txt: 45) +.cpm360.com +# ||caiyifz.com^$third-party (easylistchina.txt: 44) +.caiyifz.com +# ||buzzads.com^$third-party (easylistchina.txt: 43) +.buzzads.com +# ||boosj.com^$third-party (easylistchina.txt: 42) +.boosj.com +# ||bmw100.cn^$third-party (easylistchina.txt: 41) +.bmw100.cn +# ||blog.xuite.net/_public/js/ysmad.js (easylistchina.txt: 40) +.blog.xuite.net/_public/js/ysmad\.js +# ||baitaiad.com^$third-party (easylistchina.txt: 39) +.baitaiad.com +# ||artxun.com^$third-party (easylistchina.txt: 38) +.artxun.com +# ||aifei.info^$third-party (easylistchina.txt: 37) +.aifei.info +# ||ads80.com^$third-party (easylistchina.txt: 36) +.ads80.com +# ||adrs.sdo.com^ (easylistchina.txt: 35) +.adrs.sdo.com +# ||admaji.com^$third-party (easylistchina.txt: 34) +.admaji.com +# ||a.youdao.com^ (easylistchina.txt: 33) +.a.youdao.com +# ||77zhuan.com^$third-party (easylistchina.txt: 32) +.77zhuan.com +# ||7794.com^$third-party (easylistchina.txt: 31) +.7794.com +# ||52lover.info^$third-party (easylistchina.txt: 30) +.52lover.info +# ||49ko.com^$third-party (easylistchina.txt: 29) +.49ko.com +# ||37pk49.com^$third-party (easylistchina.txt: 28) +.37pk49.com +# ||1x3x.com^$third-party (easylistchina.txt: 27) +.1x3x.com +# ||12291.com^$third-party (easylistchina.txt: 26) +.12291.com +# ||116b.com^$third-party (easylistchina.txt: 25) +.116b.com +# ||114lm.com^$third-party (easylistchina.txt: 24) +.114lm.com +# /tan1.js (easylistchina.txt: 18) +/(.*/)?tan1\.js +tan1.js*. +# /attachments/ad/* (easylistchina.txt: 17) +/(.*/)?attachments/ad/.* +# /adflash/* (easylistchina.txt: 16) +/(.*/)?adflash/.* + +#ab2p-block-elem-R1 +{+client-header-tagger{ab2p-block-elem-R1} \ +} +# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tb001.xyz|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina.txt: 1177) +/(.*/)?images/.*\.gif + +#ab2p-block-elem-R2 +{+client-header-tagger{ab2p-block-elem-R2} \ +} +# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tb001.xyz|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina.txt: 4590) +.sinaimg.cn/.*\.gif + +#ab2p-block-elem-R3 +{+client-header-tagger{ab2p-block-elem-R3} \ +} +# ||chinaacc.com^$domain=100ksw.com (easylistchina.txt: 2414) +.chinaacc.com + +#ab2p-block-elem-R4 +{+client-header-tagger{ab2p-block-elem-R4} \ +} +# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina.txt: 1184) +/(.*/)?images/moe + +#ab2p-block-elem-R5 +{+client-header-tagger{ab2p-block-elem-R5} \ +} +# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina.txt: 1159) +/(.*/)?config\. +config.*. + +#ab2p-block-elem-R6 +{+client-header-tagger{ab2p-block-elem-R6} \ +} +# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina.txt: 1228) +/(.*/)?Sitefiles/.* + +#ab2p-block-elem-R7 +{+client-header-tagger{ab2p-block-elem-R7} \ +} +# ||sohucs.com^*_gif$domain=12580sky.com (easylistchina.txt: 4633) +.sohucs.com/.*_gif + +#ab2p-block-elem-R8 +{+client-header-tagger{ab2p-block-elem-R8} \ +} +# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina.txt: 1118) +/.*\.gif$ +.*.gif + +#ab2p-block-elem-R9 +{+client-header-tagger{ab2p-block-elem-R9} \ +} +# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina.txt: 1116) +/.*\.com/x/ +.*.com/x/ + +#ab2p-block-elem-R10 +{+client-header-tagger{ab2p-block-elem-R10} \ +} +# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina.txt: 1279) +/(.*/)?ts\.js + +#ab2p-block-elem-R11 +{+client-header-tagger{ab2p-block-elem-R11} \ +} +# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina.txt: 4822) +.tinypic.com + +#ab2p-block-elem-R12 +{+client-header-tagger{ab2p-block-elem-R12} \ +} +# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84fn.com|99ee1.com|99re5.com|99rr6.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|caoliuzx.com|cililian.me|fdzone.org|izzs.cc|jisuzhibo.net|links.hjav.in|liulanmi.com|sbme.me|taohuazu.tw|thzhd.net|ttdyy.tv|xinqixi.com|xxxbt.com|youb444.com|zhiboche.com (easylistchina.txt: 4589) +.sinaimg.cn + +#ab2p-block-elem-R13 +{+client-header-tagger{ab2p-block-elem-R13} \ +} +# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1229) +/(.*/)?skin/tb12/.* +# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1192) +/(.*/)?img/skin/.*_bg\. + +#ab2p-block-elem-R14 +{+client-header-tagger{ab2p-block-elem-R14} \ +} +# |http:$script,domain=189so.cn (easylistchina.txt: 1269) + +#ab2p-block-elem-R15 +{+client-header-tagger{ab2p-block-elem-R15} \ +} +# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina.txt: 3456) +.imgmega.com/i/.*\.gif + +#ab2p-block-elem-R16 +{+client-header-tagger{ab2p-block-elem-R16} \ +} +# ||imgur.com^*.gif$domain=18p2p.com (easylistchina.txt: 3468) +.imgur.com/.*\.gif + +#ab2p-block-elem-R17 +{+client-header-tagger{ab2p-block-elem-R17} \ +} +# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina.txt: 2388) +.cdndm.com/3/2015/ + +#ab2p-block-elem-R18 +{+client-header-tagger{ab2p-block-elem-R18} \ +} +# |http://*/adblock$domain=26766.com (easylistchina.txt: 1275) +/(.*/)?adblock + +#ab2p-block-elem-R19 +{+client-header-tagger{ab2p-block-elem-R19} \ +} +# /the_top$domain=28188.com|28188.net (easylistchina.txt: 1235) +/(.*/)?the_top +# /banner.js$domain=28188.com|28188.net (easylistchina.txt: 1151) +/(.*/)?banner\.js +banner.js*. + +#ab2p-block-elem-R20 +{+client-header-tagger{ab2p-block-elem-R20} \ +} +# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina.txt: 4564) +.sinaimg.cn/large/ + +#ab2p-block-elem-R21 +{+client-header-tagger{ab2p-block-elem-R21} \ +} +# ||qpic.cn^$domain=360-bo.com|pptiyu.com (easylistchina.txt: 4318) +.qpic.cn + +#ab2p-block-elem-R22 +{+client-header-tagger{ab2p-block-elem-R22} \ +} +# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina.txt: 1136) +/(.*/)?ad2014\.js +ad2014.js*. + +#ab2p-block-elem-R23 +{+client-header-tagger{ab2p-block-elem-R23} \ +} +# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina.txt: 1212) +/(.*/)?mydisplay\.php\?i= + +#ab2p-block-elem-R24 +{+client-header-tagger{ab2p-block-elem-R24} \ +} +# /xiaoshuo.js$domain=45zw.com (easylistchina.txt: 1252) +/(.*/)?xiaoshuo\.js +xiaoshuo.js*. + +#ab2p-block-elem-R25 +{+client-header-tagger{ab2p-block-elem-R25} \ +} +# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1180) +/(.*/)?images/888\.gif +# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1178) +/(.*/)?images/.*gamble +# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1170) +/(.*/)?gennie_b\.htm + +#ab2p-block-elem-R26 +{+client-header-tagger{ab2p-block-elem-R26} \ +} +# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina.txt: 1193) +/(.*/)?ipower\.htm +ipower.htm*. + +#ab2p-block-elem-R27 +{+client-header-tagger{ab2p-block-elem-R27} \ +} +# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina.txt: 1196) +/(.*/)?js/gTool\.js + +#ab2p-block-elem-R28 +{+client-header-tagger{ab2p-block-elem-R28} \ +} +# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|downhhh.com|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina.txt: 1067) + +#ab2p-block-elem-R29 +{+client-header-tagger{ab2p-block-elem-R29} \ +} +# ||wal8.com^$domain=52jifenbao.net (easylistchina.txt: 4974) +.wal8.com +# ||qiniudn.com^$domain=52jifenbao.net (easylistchina.txt: 4283) +.qiniudn.com + +#ab2p-block-elem-R30 +{+client-header-tagger{ab2p-block-elem-R30} \ +} +# ||tietuku.com^$domain=5ydj.com|99ee1.com|99re5.com|99rr6.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina.txt: 4793) +.tietuku.com + +#ab2p-block-elem-R31 +{+client-header-tagger{ab2p-block-elem-R31} \ +} +# ||media.*.gif$domain=6668.se (easylistchina.txt: 3913) +.media.*./.*\.gif +.media.*.gif*. + +#ab2p-block-elem-R32 +{+client-header-tagger{ab2p-block-elem-R32} \ +} +# /js/top.js$domain=8comic.com|comicvip.com (easylistchina.txt: 1198) +/(.*/)?js/top\.js + +#ab2p-block-elem-R33 +{+client-header-tagger{ab2p-block-elem-R33} \ +} +# ||meimb.com^$domain=94as.com (easylistchina.txt: 3919) +.meimb.com + +#ab2p-block-elem-R34 +{+client-header-tagger{ab2p-block-elem-R34} \ +} +# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1278) +/(.*/)?t\.js +# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1277) +/(.*/)?p +# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1201) +/(.*/)?jsc/stat\.js +# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1200) +/(.*/)?jsc/Copy\.js +# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1199) +/(.*/)?jsc/book_ + +#ab2p-block-elem-R35 +{+client-header-tagger{ab2p-block-elem-R35} \ +} +# ||chuantu.biz^$domain=99ee1.com|99re5.com|99rr6.com (easylistchina.txt: 2461) +.chuantu.biz + +#ab2p-block-elem-R36 +{+client-header-tagger{ab2p-block-elem-R36} \ +} +# |http:$image,third-party,domain=99files.net (easylistchina.txt: 1268) + +#ab2p-block-elem-R37 +{+client-header-tagger{ab2p-block-elem-R37} \ +} +# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina.txt: 1104) +.taobao.com + +#ab2p-block-elem-R38 +{+client-header-tagger{ab2p-block-elem-R38} \ +} +# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina.txt: 4572) +.sinaimg.cn/large/ec76730dgw + +#ab2p-block-elem-R39 +{+client-header-tagger{ab2p-block-elem-R39} \ +} +# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina.txt: 1281) +t.cn + +#ab2p-block-elem-R40 +{+client-header-tagger{ab2p-block-elem-R40} \ +} +# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina.txt: 1061) +/(.*/)?\? + +#ab2p-block-elem-R41 +{+client-header-tagger{ab2p-block-elem-R41} \ +} +# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1124) +/(.*/)?2015new\.js +2015new.js*. + +#ab2p-block-elem-R42 +{+client-header-tagger{ab2p-block-elem-R42} \ +} +# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1273) +/(.*/)?83/ + +#ab2p-block-elem-R43 +{+client-header-tagger{ab2p-block-elem-R43} \ +} +# ||bp.blogspot.com^$domain=avmimi.com (easylistchina.txt: 2297) +.bp.blogspot.com + +#ab2p-block-elem-R44 +{+client-header-tagger{ab2p-block-elem-R44} \ +} +# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina.txt: 4740) +.taobaocdn.com/imgextra/ + +#ab2p-block-elem-R45 +{+client-header-tagger{ab2p-block-elem-R45} \ +} +# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina.txt: 4912) +.upload.chinaz.com/20.*\.gif + +#ab2p-block-elem-R46 +{+client-header-tagger{ab2p-block-elem-R46} \ +} +# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina.txt: 3428) +.img.china.alibaba.com/img/ibank/ + +#ab2p-block-elem-R47 +{+client-header-tagger{ab2p-block-elem-R47} \ +} +# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina.txt: 1174) +/(.*/)?house/images/.* + +#ab2p-block-elem-R48 +{+client-header-tagger{ab2p-block-elem-R48} \ +} +# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina.txt: 1280) +rc.sz.zj.cn/.*\.swf + +#ab2p-block-elem-R49 +{+client-header-tagger{ab2p-block-elem-R49} \ +} +# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina.txt: 3954) +.momoshop.com.tw/league/ + +#ab2p-block-elem-R50 +{+client-header-tagger{ab2p-block-elem-R50} \ +} +# ||acg.tv^$object,domain=bilibili.com (easylistchina.txt: 1979) +.acg.tv + +#ab2p-block-elem-R51 +{+client-header-tagger{ab2p-block-elem-R51} \ +} +# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina.txt: 3149) +.hdslb.com/u_user/ + +#ab2p-block-elem-R52 +{+client-header-tagger{ab2p-block-elem-R52} \ +} +# /images/tuangou$domain=bjxxw.com (easylistchina.txt: 1185) +/(.*/)?images/tuangou + +#ab2p-block-elem-R53 +{+client-header-tagger{ab2p-block-elem-R53} \ +} +# ||85rere.com^$popup,domain=btbbt.cc (easylistchina.txt: 1071) +.85rere.com + +#ab2p-block-elem-R54 +{+client-header-tagger{ab2p-block-elem-R54} \ +} +# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina.txt: 1234) +/(.*/)?tb780x90\.gif +tb780x90.gif*. + +#ab2p-block-elem-R55 +{+client-header-tagger{ab2p-block-elem-R55} \ +} +# /d125.260.gif$domain=btup.net (easylistchina.txt: 1161) +/(.*/)?d125\.260\.gif +d125.260.gif*. + +#ab2p-block-elem-R56 +{+client-header-tagger{ab2p-block-elem-R56} \ +} +# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina.txt: 1168) +/(.*/)?gamepic/.* + +#ab2p-block-elem-R57 +{+client-header-tagger{ab2p-block-elem-R57} \ +} +# ||duapp.com^$domain=ccav1.com (easylistchina.txt: 2726) +.duapp.com + +#ab2p-block-elem-R58 +{+client-header-tagger{ab2p-block-elem-R58} \ +} +# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina.txt: 1270) + +#ab2p-block-elem-R59 +{+client-header-tagger{ab2p-block-elem-R59} \ +} +# |http://*/bn/$domain=chimatong.com (easylistchina.txt: 1276) +/(.*/)?bn/ + +#ab2p-block-elem-R60 +{+client-header-tagger{ab2p-block-elem-R60} \ +} +# /sda/*$domain=chineseinla.com (easylistchina.txt: 1225) +/(.*/)?sda/.* +# /images/content/1436/*$domain=chineseinla.com (easylistchina.txt: 1183) +/(.*/)?images/content/1436/.* + +#ab2p-block-elem-R61 +{+client-header-tagger{ab2p-block-elem-R61} \ +} +# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina.txt: 5276) +.youtube.com/embed/.*&autoplay=1& + +#ab2p-block-elem-R62 +{+client-header-tagger{ab2p-block-elem-R62} \ +} +# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina.txt: 4743) +.taobaocdn.com + +#ab2p-block-elem-R63 +{+client-header-tagger{ab2p-block-elem-R63} \ +} +# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina.txt: 4864) +.tw.partner.buy.yahoo.com + +#ab2p-block-elem-R64 +{+client-header-tagger{ab2p-block-elem-R64} \ +} +# /assets/images/banner$domain=cpbl.com.tw (easylistchina.txt: 1144) +/(.*/)?assets/images/banner + +#ab2p-block-elem-R65 +{+client-header-tagger{ab2p-block-elem-R65} \ +} +# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina.txt: 1155) +/(.*/)?biz_icon/.* + +#ab2p-block-elem-R66 +{+client-header-tagger{ab2p-block-elem-R66} \ +} +# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina.txt: 4366) +.rakuten-static.com +# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina.txt: 4184) +.pic.pimg.tw/cwyuni/.*\.gif\?v= + +#ab2p-block-elem-R67 +{+client-header-tagger{ab2p-block-elem-R67} \ +} +# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina.txt: 4577) +.sinaimg.cn/mw1024/6283e.*\.jpg +# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina.txt: 4001) +.mygeek.cn/pic_ + +#ab2p-block-elem-R68 +{+client-header-tagger{ab2p-block-elem-R68} \ +} +# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina.txt: 1285) +.005.tv/data/attachment/forum/.*\.gif + +#ab2p-block-elem-R69 +{+client-header-tagger{ab2p-block-elem-R69} \ +} +# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina.txt: 1141) +/(.*/)?aeiou/.* + +#ab2p-block-elem-R70 +{+client-header-tagger{ab2p-block-elem-R70} \ +} +# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina.txt: 1250) +/(.*/)?wxhfm\.html +wxhfm.html*. +# /wxh.js$domain=dm5.com|dm5.hk (easylistchina.txt: 1249) +/(.*/)?wxh\.js +wxh.js*. + +#ab2p-block-elem-R71 +{+client-header-tagger{ab2p-block-elem-R71} \ +} +# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina.txt: 4742) +.taobaocdn.com + +#ab2p-block-elem-R72 +{+client-header-tagger{ab2p-block-elem-R72} \ +} +# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina.txt: 1152) +/(.*/)?banner/.* + +#ab2p-block-elem-R73 +{+client-header-tagger{ab2p-block-elem-R73} \ +} +# ||1.baidu.com^$popup,domain=douban.com (easylistchina.txt: 1069) +.1.baidu.com + +#ab2p-block-elem-R74 +{+client-header-tagger{ab2p-block-elem-R74} \ +} +# /static/media/curl.swf$domain=duba.com (easylistchina.txt: 1231) +/(.*/)?static/media/curl\.swf + +#ab2p-block-elem-R75 +{+client-header-tagger{ab2p-block-elem-R75} \ +} +# |http:$domain=e.70e.com|e701.net (easylistchina.txt: 1267) + +#ab2p-block-elem-R76 +{+client-header-tagger{ab2p-block-elem-R76} \ +} +# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina.txt: 1164) +/(.*/)?EZ-YAHOO/.* + +#ab2p-block-elem-R77 +{+client-header-tagger{ab2p-block-elem-R77} \ +} +# /pagead/*$domain=fankudo.com (easylistchina.txt: 1221) +/(.*/)?pagead/.* + +#ab2p-block-elem-R78 +{+client-header-tagger{ab2p-block-elem-R78} \ +} +# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina.txt: 1160) +/(.*/)?cooperation/.* + +#ab2p-block-elem-R79 +{+client-header-tagger{ab2p-block-elem-R79} \ +} +# ||k.youku.com^$domain=flvcd.com (easylistchina.txt: 3690) +.k.youku.com + +#ab2p-block-elem-R80 +{+client-header-tagger{ab2p-block-elem-R80} \ +} +# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina.txt: 2474) +.cj.qidian.com/Picture/ + +#ab2p-block-elem-R81 +{+client-header-tagger{ab2p-block-elem-R81} \ +} +# /jquery.$domain=game.macx.cn (easylistchina.txt: 1194) +/(.*/)?jquery\. +jquery.*. + +#ab2p-block-elem-R82 +{+client-header-tagger{ab2p-block-elem-R82} \ +} +# ||8kele.com^$~collapse,domain=gamer.com.tw (easylistchina.txt: 1887) +.8kele.com +# /web/ad/*$domain=gamer.com.tw (easylistchina.txt: 1243) +/(.*/)?web/ad/.* +# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1169) +/(.*/)?gamer/.* +# /baha/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1150) +/(.*/)?baha/.* + +#ab2p-block-elem-R83 +{+client-header-tagger{ab2p-block-elem-R83} \ +} +# /marketing/cover/*$domain=geekpark.net (easylistchina.txt: 1204) +/(.*/)?marketing/cover/.* + +#ab2p-block-elem-R84 +{+client-header-tagger{ab2p-block-elem-R84} \ +} +# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina.txt: 3475) +.info.lm.tv.sohu.com + +#ab2p-block-elem-R85 +{+client-header-tagger{ab2p-block-elem-R85} \ +} +# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina.txt: 4835) +.top.taobao.com/interface_v2\.php\? + +#ab2p-block-elem-R86 +{+client-header-tagger{ab2p-block-elem-R86} \ +} +# /bao/uploaded/*$domain=hacg.lol (easylistchina.txt: 1154) +/(.*/)?bao/uploaded/.* +# ||taobao.com$popup,domain=hacg.lol (easylistchina.txt: 1103) +.taobao.com*. + +#ab2p-block-elem-R87 +{+client-header-tagger{ab2p-block-elem-R87} \ +} +# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina.txt: 1181) +/(.*/)?Images/ak47/.* + +#ab2p-block-elem-R88 +{+client-header-tagger{ab2p-block-elem-R88} \ +} +# ||51img1.com^$domain=hdscg.com (easylistchina.txt: 1664) +.51img1.com + +#ab2p-block-elem-R89 +{+client-header-tagger{ab2p-block-elem-R89} \ +} +# ||xldytt.com^$popup,domain=henbt.com (easylistchina.txt: 1107) +.xldytt.com + +#ab2p-block-elem-R90 +{+client-header-tagger{ab2p-block-elem-R90} \ +} +# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina.txt: 4431) +.s.yimg.com/ja/ap/ + +#ab2p-block-elem-R91 +{+client-header-tagger{ab2p-block-elem-R91} \ +} +# /nfs/ad/*$domain=hkbici.com (easylistchina.txt: 1216) +/(.*/)?nfs/ad/.* +# /attachment/ad/*$domain=hkbici.com (easylistchina.txt: 1147) +/(.*/)?attachment/ad/.* + +#ab2p-block-elem-R92 +{+client-header-tagger{ab2p-block-elem-R92} \ +} +# ||megalife.com.hk^$domain=hkgolden.com (easylistchina.txt: 3916) +.megalife.com.hk + +#ab2p-block-elem-R93 +{+client-header-tagger{ab2p-block-elem-R93} \ +} +# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk (easylistchina.txt: 1271) + +#ab2p-block-elem-R94 +{+client-header-tagger{ab2p-block-elem-R94} \ +} +# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina.txt: 1423) +.163.com/special/ + +#ab2p-block-elem-R95 +{+client-header-tagger{ab2p-block-elem-R95} \ +} +# ||alicdn.com^*.jpg$domain=htai.me (easylistchina.txt: 2071) +.alicdn.com/.*\.jpg +# ||alicdn.com^*.gif$domain=htai.me (easylistchina.txt: 2070) +.alicdn.com/.*\.gif + +#ab2p-block-elem-R96 +{+client-header-tagger{ab2p-block-elem-R96} \ +} +# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina.txt: 3527) +.item.taobao.com + +#ab2p-block-elem-R97 +{+client-header-tagger{ab2p-block-elem-R97} \ +} +# /tres/recommend/*$domain=ifeng.com (easylistchina.txt: 1237) +/(.*/)?tres/recommend/.* + +#ab2p-block-elem-R98 +{+client-header-tagger{ab2p-block-elem-R98} \ +} +# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina.txt: 1133) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ +/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf +# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina.txt: 1095) +.miaozhen.com + +#ab2p-block-elem-R99 +{+client-header-tagger{ab2p-block-elem-R99} \ +} +# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina.txt: 1134) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ +/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) + +#ab2p-block-elem-R100 +{+client-header-tagger{ab2p-block-elem-R100} \ +} +# ||imgchr.com^$domain=iyejie.com (easylistchina.txt: 3453) +.imgchr.com + +#ab2p-block-elem-R101 +{+client-header-tagger{ab2p-block-elem-R101} \ +} +# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina.txt: 4392) +.riju.com/pr/ +# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina.txt: 3630) +.jpunion.com +# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1191) +/(.*/)?img/kana\.jpg +# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1190) +/(.*/)?img/disc\.jpg + +#ab2p-block-elem-R102 +{+client-header-tagger{ab2p-block-elem-R102} \ +} +# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina.txt: 4321) +.qq.com/bqq_qfpic/ + +#ab2p-block-elem-R103 +{+client-header-tagger{ab2p-block-elem-R103} \ +} +# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina.txt: 1132) +/(.*/)?\?age=1& + +#ab2p-block-elem-R104 +{+client-header-tagger{ab2p-block-elem-R104} \ +} +# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina.txt: 1187) +/(.*/)?img/.*\.gif + +#ab2p-block-elem-R105 +{+client-header-tagger{ab2p-block-elem-R105} \ +} +# .fancybox.$domain=life.com.tw (easylistchina.txt: 1117) +/.*\.fancybox\. +.*.fancybox.*. + +#ab2p-block-elem-R106 +{+client-header-tagger{ab2p-block-elem-R106} \ +} +# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina.txt: 4795) +.tietuku.com/.*\.gif + +#ab2p-block-elem-R107 +{+client-header-tagger{ab2p-block-elem-R107} \ +} +# ||gp.jstv.com^$domain=live.jstv.com (easylistchina.txt: 3028) +.gp.jstv.com + +#ab2p-block-elem-R108 +{+client-header-tagger{ab2p-block-elem-R108} \ +} +# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina.txt: 1162) +/(.*/)?da\.aspx$ +da.aspx + +#ab2p-block-elem-R109 +{+client-header-tagger{ab2p-block-elem-R109} \ +} +# /js/index_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1197) +/(.*/)?js/index_ +# .com/js/l_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1114) +/.*\.com/js/l_ +.*.com/js/l_ + +#ab2p-block-elem-R110 +{+client-header-tagger{ab2p-block-elem-R110} \ +} +# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina.txt: 1717) +.55.la/anonymous/banner/ + +#ab2p-block-elem-R111 +{+client-header-tagger{ab2p-block-elem-R111} \ +} +# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina.txt: 4131) +.pchome.com.tw/iframe/ + +#ab2p-block-elem-R112 +{+client-header-tagger{ab2p-block-elem-R112} \ +} +# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina.txt: 3591) +.jiaoyou8.com + +#ab2p-block-elem-R113 +{+client-header-tagger{ab2p-block-elem-R113} \ +} +# ||picuphost.com^$domain=mmload.info (easylistchina.txt: 4195) +.picuphost.com + +#ab2p-block-elem-R114 +{+client-header-tagger{ab2p-block-elem-R114} \ +} +# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina.txt: 3300) +.i.alipayobjects.com/i/ecmng/ + +#ab2p-block-elem-R115 +{+client-header-tagger{ab2p-block-elem-R115} \ +} +# /js/adBom.js$domain=myqcloud.com (easylistchina.txt: 1195) +/(.*/)?js/adBom\.js + +#ab2p-block-elem-R116 +{+client-header-tagger{ab2p-block-elem-R116} \ +} +# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina.txt: 5067) +.www.china.com.cn/node_ + +#ab2p-block-elem-R117 +{+client-header-tagger{ab2p-block-elem-R117} \ +} +# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina.txt: 1264) +/.*_iframe\.htm$ + +#ab2p-block-elem-R118 +{+client-header-tagger{ab2p-block-elem-R118} \ +} +# .com/tps/$domain=ocucn.com (easylistchina.txt: 1115) +/.*\.com/tps/ +.*.com/tps/ + +#ab2p-block-elem-R119 +{+client-header-tagger{ab2p-block-elem-R119} \ +} +# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina.txt: 1239) +/(.*/)?upload/gad/.* + +#ab2p-block-elem-R120 +{+client-header-tagger{ab2p-block-elem-R120} \ +} +# ||baidu.com^$domain=pos.baidu.com (easylistchina.txt: 2177) +.baidu.com + +#ab2p-block-elem-R121 +{+client-header-tagger{ab2p-block-elem-R121} \ +} +# ||imgbus.com^$domain=qiannao.com|ref.so (easylistchina.txt: 3450) +.imgbus.com + +#ab2p-block-elem-R122 +{+client-header-tagger{ab2p-block-elem-R122} \ +} +# /950-90.gif$domain=qire213.com (easylistchina.txt: 1131) +/(.*/)?950-90\.gif +950-90.gif*. + +#ab2p-block-elem-R123 +{+client-header-tagger{ab2p-block-elem-R123} \ +} +# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1253) +/(.*/)?xybgg\.gif +xybgg.gif*. +# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1189) +/(.*/)?img/br650\.gif +# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1188) +/(.*/)?img/br300\.gif + +#ab2p-block-elem-R124 +{+client-header-tagger{ab2p-block-elem-R124} \ +} +# ||howbbs.net^$domain=ref.so (easylistchina.txt: 3245) +.howbbs.net + +#ab2p-block-elem-R125 +{+client-header-tagger{ab2p-block-elem-R125} \ +} +# /afp/*$domain=scol.com.cn (easylistchina.txt: 1143) +/(.*/)?afp/.* + +#ab2p-block-elem-R126 +{+client-header-tagger{ab2p-block-elem-R126} \ +} +# /images/20$domain=sex169.info|sex169.org (easylistchina.txt: 1179) +/(.*/)?images/20 + +#ab2p-block-elem-R127 +{+client-header-tagger{ab2p-block-elem-R127} \ +} +# ||iweek.ly^$domain=share.popgo.org (easylistchina.txt: 3556) +.iweek.ly + +#ab2p-block-elem-R128 +{+client-header-tagger{ab2p-block-elem-R128} \ +} +# ||url.cn^$domain=shuajizhijia.com (easylistchina.txt: 4915) +.url.cn + +#ab2p-block-elem-R129 +{+client-header-tagger{ab2p-block-elem-R129} \ +} +# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina.txt: 4794) +.tietuku.com + +#ab2p-block-elem-R130 +{+client-header-tagger{ab2p-block-elem-R130} \ +} +# /ycpiframe.aspx$domain=strtv.cn (easylistchina.txt: 1254) +/(.*/)?ycpiframe\.aspx +ycpiframe.aspx*. + +#ab2p-block-elem-R131 +{+client-header-tagger{ab2p-block-elem-R131} \ +} +# /sungg/*$domain=sun0769.com (easylistchina.txt: 1232) +/(.*/)?sungg/.* + +#ab2p-block-elem-R132 +{+client-header-tagger{ab2p-block-elem-R132} \ +} +# ||junph.cn^$domain=tiexue.net (easylistchina.txt: 3665) +.junph.cn + +#ab2p-block-elem-R133 +{+client-header-tagger{ab2p-block-elem-R133} \ +} +# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina.txt: 5293) +.yupoo.com/3126961304/ + +#ab2p-block-elem-R134 +{+client-header-tagger{ab2p-block-elem-R134} \ +} +# /img/*$image,domain=txzqw.com (easylistchina.txt: 1186) +/(.*/)?img/.* +# /gif/*$image,domain=txzqw.com (easylistchina.txt: 1171) +/(.*/)?gif/.* + +#ab2p-block-elem-R135 +{+client-header-tagger{ab2p-block-elem-R135} \ +} +# /lagou-$domain=uisdc.com (easylistchina.txt: 1203) +/(.*/)?lagou- +lagou-*. + +#ab2p-block-elem-R136 +{+client-header-tagger{ab2p-block-elem-R136} \ +} +# /bannerpic/*$domain=uopera.net (easylistchina.txt: 1153) +/(.*/)?bannerpic/.* + +#ab2p-block-elem-R137 +{+client-header-tagger{ab2p-block-elem-R137} \ +} +# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina.txt: 4465) +.sdo.com + +#ab2p-block-elem-R138 +{+client-header-tagger{ab2p-block-elem-R138} \ +} +# /friends/*$image,domain=v2ex.com (easylistchina.txt: 1165) +/(.*/)?friends/.* +# /assets/sidebar/*$domain=v2ex.com (easylistchina.txt: 1145) +/(.*/)?assets/sidebar/.* + +#ab2p-block-elem-R139 +{+client-header-tagger{ab2p-block-elem-R139} \ +} +# ||alicdn.com^$domain=wangyueblog.com|xiadele.com|xm9x.net (easylistchina.txt: 2069) +.alicdn.com + +#ab2p-block-elem-R140 +{+client-header-tagger{ab2p-block-elem-R140} \ +} +# ||imgur.com^$domain=wgun.net (easylistchina.txt: 3467) +.imgur.com + +#ab2p-block-elem-R141 +{+client-header-tagger{ab2p-block-elem-R141} \ +} +# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina.txt: 4914) +.uploadhouse.com/.*\.gif + +#ab2p-block-elem-R142 +{+client-header-tagger{ab2p-block-elem-R142} \ +} +# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina.txt: 1246) +/(.*/)?wp-content/uploads/.*vpn +# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina.txt: 1245) +/(.*/)?wp-content/uploads/.*hidemyass +# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina.txt: 1244) +/(.*/)?Webbanner_ +# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina.txt: 1137) +/(.*/)?ad_nydus\.png + +#ab2p-block-elem-R143 +{+client-header-tagger{ab2p-block-elem-R143} \ +} +# /attachment/album/*$domain=www.52hardware.com (easylistchina.txt: 1148) +/(.*/)?attachment/album/.* + +#ab2p-block-elem-R144 +{+client-header-tagger{ab2p-block-elem-R144} \ +} +# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina.txt: 5407) +.zsg.kimi.com.tw +# .html|$domain=www.gamer.com.tw (easylistchina.txt: 1119) +/.*\.html$ +.*.html + +#ab2p-block-elem-R145 +{+client-header-tagger{ab2p-block-elem-R145} \ +} +# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina.txt: 4065) +.nmgnews.com.cn/swf/0/10/ + +#ab2p-block-elem-R146 +{+client-header-tagger{ab2p-block-elem-R146} \ +} +# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina.txt: 3420) +.img*./.*\.itiexue\.net/2.*\.gif +.img*.itiexue.net/2.*\.gif + +#ab2p-block-elem-R147 +{+client-header-tagger{ab2p-block-elem-R147} \ +} +# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1108) +.xmds.opd2c.com +# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1097) +.moezone.taobao.com +# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1073) +.acgpost.taobao.com +# /item.htm?$popup,domain=www.tsdm.net (easylistchina.txt: 1063) +/(.*/)?item\.htm\? + +#ab2p-block-elem-R148 +{+client-header-tagger{ab2p-block-elem-R148} \ +} +# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina.txt: 5311) +.yytcdn.com/swf/plugins_new\.xml\? + +#ab2p-block-elem-R149 +{+client-header-tagger{ab2p-block-elem-R149} \ +} +# /r/video/*$domain=youxi.baidu.com (easylistchina.txt: 1223) +/(.*/)?r/video/.* + +#ab2p-block-elem-R150 +{+client-header-tagger{ab2p-block-elem-R150} \ +} +# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina.txt: 3021) +.googleusercontent.com/.*=w800-h352-no + +#ab2p-block-elem-R151 +{+client-header-tagger{ab2p-block-elem-R151} \ +} +# ||srcdd.com^$domain=zasv.com (easylistchina.txt: 4650) +.srcdd.com + +#ab2p-block-elem-R152 +{+client-header-tagger{ab2p-block-elem-R152} \ +} +# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina.txt: 1093) +.kanzipai.com + +#ab2p-block-elem-Rn153 +{+client-header-tagger{ab2p-block-elem-Rn153} \ +} +# |http://*/gg/$domain=~11185.cn (easylistchina.txt: 260) +/(.*/)?gg/ + +#ab2p-block-elem-Rn154 +{+client-header-tagger{ab2p-block-elem-Rn154} \ +} +# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina.txt: 808) +.img.uu1001.cn + +#ab2p-block-elem-Rn155 +{+client-header-tagger{ab2p-block-elem-Rn155} \ +} +# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina.txt: 948) +.tanx.com + +#ab2p-block-elem-Rn156 +{+client-header-tagger{ab2p-block-elem-Rn156} \ +} +# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina.txt: 949) +.taobao.com/go/ + +#ab2p-block-elem-Rn157 +{+client-header-tagger{ab2p-block-elem-Rn157} \ +} +# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina.txt: 663) +.alimama.cn + +#ab2p-block-elem-Rn158 +{+client-header-tagger{ab2p-block-elem-Rn158} \ +} +# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina.txt: 1976) +.acg.178.com/.*/t_ + +#ab2p-block-elem-Rn159 +{+client-header-tagger{ab2p-block-elem-Rn159} \ +} +# /duilian.$domain=~duilian.msra.cn (easylistchina.txt: 145) +/(.*/)?duilian\. +duilian.*. + +#ab2p-block-elem-Rn160 +{+client-header-tagger{ab2p-block-elem-Rn160} \ +} +# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina.txt: 894) +.offcn.com + +#ab2p-block-elem-Rn161 +{+client-header-tagger{ab2p-block-elem-Rn161} \ +} +# /floatad.$domain=~fwxgx.com (easylistchina.txt: 151) +/(.*/)?floatad\. +floatad.*. + +#ab2p-block-elem-Rn162 +{+client-header-tagger{ab2p-block-elem-Rn162} \ +} +# |http://gg.$third-party,domain=~guagua.cn (easylistchina.txt: 270) +gg.*. + +#ab2p-block-elem-Rn163 +{+client-header-tagger{ab2p-block-elem-Rn163} \ +} +# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina.txt: 4399) +.rm.sina.com.cn + +#ab2p-block-elem-Rn164 +{+client-header-tagger{ab2p-block-elem-Rn164} \ +} +# ||lianmeng.360.cn^$domain=~lianmeng.360.cn (easylistchina.txt: 861) +.lianmeng.360.cn + +#ab2p-block-elem-Rn165 +{+client-header-tagger{ab2p-block-elem-Rn165} \ +} +# ||bahamut.com.tw^*/2KU/*?v=$~collapse,image,domain=~m.gamer.com.tw (easylistchina.txt: 2144) +.bahamut.com.tw/.*/2KU/.*\?v= + +#ab2p-block-elem-Rn166 +{+client-header-tagger{ab2p-block-elem-Rn166} \ +} +# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina.txt: 254) +/.*\.tw/ad/ +.*.tw/ad/ + +#ab2p-block-elem-Rn167 +{+client-header-tagger{ab2p-block-elem-Rn167} \ +} +# |http://*/js/ad.$domain=~sac.net.cn (easylistchina.txt: 264) +/(.*/)?js/ad\. + +#ab2p-block-elem-Rn168 +{+client-header-tagger{ab2p-block-elem-Rn168} \ +} +# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina.txt: 726) +.dotmore.com.tw + +#ab2p-block-elem-Rn169 +{+client-header-tagger{ab2p-block-elem-Rn169} \ +} +# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina.txt: 4978) +.wan.sogoucdn.com/cdn/flash/ + +#ab2p-block-elem-Rn170 +{+client-header-tagger{ab2p-block-elem-Rn170} \ +} +# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina.txt: 3355) +.ifengimg.com/mappa/ + +#ab2p-block-elem-Rn171 +{+client-header-tagger{ab2p-block-elem-Rn171} \ +} +# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina.txt: 70) +.s.yimg.com/.*/flash_general_ + +#ab2p-block-elem-Rn172 +{+client-header-tagger{ab2p-block-elem-Rn172} \ +} +# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina.txt: 4047) +.news.sina.com.cn/pfpnews/js/libweb\.js +# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina.txt: 2579) +.d5.sina.com.cn + +#ab2p-block-elem-Rn173 +{+client-header-tagger{ab2p-block-elem-Rn173} \ +} +# ||yimg.com/no/$domain=~yahoo.com (easylistchina.txt: 5236) +.yimg.com/no/ + +#ab2p-block-elem-Rn174 +{+client-header-tagger{ab2p-block-elem-Rn174} \ +} +# /picad/*$domain=~ychr.com (easylistchina.txt: 203) +/(.*/)?picad/.* + +#ab2p-block-elem-Rn175 +{+client-header-tagger{ab2p-block-elem-Rn175} \ +} +# ||114la.com^$third-party,domain=~ylmf.com (easylistchina.txt: 527) +.114la.com + +#ab2p-block-request +{+block{ adblock rules } \ ++server-header-tagger{ab2p-block-s} \ +} +TAG:^ab2p-block-request$ +# ||hjfile.cn/analytics/site/TrackEvent.js (easylistchina.txt: 10478) +.hjfile.cn/analytics/site/TrackEvent\.js +# ||hdsrc-a.akamaihd.net^ (easylistchina.txt: 10441) +.hdsrc-a.akamaihd.net +# ||hdapp1008-a.akamaihd.net^ (easylistchina.txt: 10440) +.hdapp1008-a.akamaihd.net +# ||hdapp1003-a.akamaihd.net^ (easylistchina.txt: 10439) +.hdapp1003-a.akamaihd.net +# ||commondisplay-a.akamaihd.net/cri/*.htm?cat= (easylistchina.txt: 10438) +.commondisplay-a.akamaihd.net/cri/.*\.htm\?cat= +# ||akamaihd.net^*/sid.html?p= (easylistchina.txt: 10437) +.akamaihd.net/.*/sid\.html\?p= +# ||akamaihd.net^*/gsd.html?d= (easylistchina.txt: 10436) +.akamaihd.net/.*/gsd\.html\?d= +# ||146.148.85.61^ (easylistchina.txt: 10435) +.146.148.85.61 +# ||2chcn.com/img/japanese-a.png (easylistchina.txt: 5426) +.2chcn.com/img/japanese-a\.png +# ||zzz4.com/JS_AD/ (easylistchina.txt: 5425) +.zzz4.com/JS_AD/ +# ||zzsky.cn/images/zzskycom_ (easylistchina.txt: 5424) +.zzsky.cn/images/zzskycom_ +# ||zznews.cn/home/js/duilian1.js (easylistchina.txt: 5423) +.zznews.cn/home/js/duilian1\.js +# ||zzidc.com^*0.gif (easylistchina.txt: 5422) +.zzidc.com/.*0\.gif +# ||zzidc.com/img/ (easylistchina.txt: 5421) +.zzidc.com/img/ +# ||zzc.cn/b/ (easylistchina.txt: 5420) +.zzc.cn/b/ +# ||zxip.com/2013_ad/ (easylistchina.txt: 5419) +.zxip.com/2013_ad/ +# ||zuoche.com/promo/*.jspx (easylistchina.txt: 5418) +.zuoche.com/promo/.*\.jspx +# ||zuiben.com/a/ (easylistchina.txt: 5417) +.zuiben.com/a/ +# ||zt220.com/zzs/ (easylistchina.txt: 5416) +.zt220.com/zzs/ +# ||zt2088.com^ (easylistchina.txt: 5415) +.zt2088.com +# ||zt.iciba.com/guess/images/900.jpg (easylistchina.txt: 5414) +.zt.iciba.com/guess/images/900\.jpg +# ||zt.chuanke.com/?mod= (easylistchina.txt: 5413) +.zt.chuanke.com/\?mod= +# ||zsnews.cn/v.*=300&height=225& (easylistchina.txt: 5412) +.zsnews.cn/v\..*=300&height=225& +# ||zsnews.cn/JSFUN/AdvFun/ (easylistchina.txt: 5411) +.zsnews.cn/JSFUN/AdvFun/ +# ||zsnews.cn/js/adControl- (easylistchina.txt: 5410) +.zsnews.cn/js/adControl- +# ||zsnews.cn/Components/2013ZSNEWS/ (easylistchina.txt: 5409) +.zsnews.cn/Components/2013ZSNEWS/ +# ||zsjjob.com/user/member/google.htm (easylistchina.txt: 5408) +.zsjjob.com/user/member/google\.htm +# ||zp365.com/newImages/201*.swf (easylistchina.txt: 5406) +.zp365.com/newImages/201.*\.swf +# ||zoopda.com/thumbs/*_w_680_mh_120. (easylistchina.txt: 5405) +.zoopda.com/thumbs/.*_w_680_mh_120\. +# ||zoopda.com/thumbs/*_w_250_mh_250. (easylistchina.txt: 5404) +.zoopda.com/thumbs/.*_w_250_mh_250\. +# ||zongheng.com/zhuanti/2014/active/js/active.js (easylistchina.txt: 5403) +.zongheng.com/zhuanti/2014/active/js/active\.js +# ||zongheng.com/v2014/js/mod/bad.js (easylistchina.txt: 5402) +.zongheng.com/v2014/js/mod/bad\.js +# ||zongheng.com/upload/recommend/game/ (easylistchina.txt: 5401) +.zongheng.com/upload/recommend/game/ +# ||zongheng.com/ajax/recommend.game. (easylistchina.txt: 5400) +.zongheng.com/ajax/recommend\.game\. +# ||zolsky.com^*ad/*.js (easylistchina.txt: 5399) +.zolsky.com/.*ad/.*\.js +# ||zol.com.cn/intelcorp/ (easylistchina.txt: 5398) +.zol.com.cn/intelcorp/ +# ||zol.com.cn/adrs/ (easylistchina.txt: 5397) +.zol.com.cn/adrs/ +# ||zol-img.com.cn/soft/114ad_ (easylistchina.txt: 5396) +.zol-img.com.cn/soft/114ad_ +# ||zol-img.com.cn/201*/gt (easylistchina.txt: 5395) +.zol-img.com.cn/201.*/gt +# ||zo66.com^ (easylistchina.txt: 5394) +.zo66.com +# ||znz888.cn/modblock/ (easylistchina.txt: 5393) +.znz888.cn/modblock/ +# ||zk168.com.cn/js/sy (easylistchina.txt: 5392) +.zk168.com.cn/js/sy +# ||zk168.com.cn/js/s.js (easylistchina.txt: 5391) +.zk168.com.cn/js/s\.js +# ||zk168.com.cn/js/fwpd.js (easylistchina.txt: 5390) +.zk168.com.cn/js/fwpd\.js +# ||zk168.com.cn/js/b.js (easylistchina.txt: 5389) +.zk168.com.cn/js/b\.js +# ||zk168.com.cn/js/300gg.js (easylistchina.txt: 5388) +.zk168.com.cn/js/300gg\.js +# ||zjphoto.yinsha.com/upload/swf/ (easylistchina.txt: 5387) +.zjphoto.yinsha.com/upload/swf/ +# ||zjol.com.cn/js/duilian/ (easylistchina.txt: 5386) +.zjol.com.cn/js/duilian/ +# ||zjjzx.cn/img/zt/yd/ (easylistchina.txt: 5385) +.zjjzx.cn/img/zt/yd/ +# ||zjjzx.cn*/push/ (easylistchina.txt: 5384) +.zjjzx.cn*./(.*/)?push/ +# ||zjg.js.cn/Template/Ant/Js/tonglang.js (easylistchina.txt: 5383) +.zjg.js.cn/Template/Ant/Js/tonglang\.js +# ||zjg.js.cn/Public/config/Couplet/Index4 (easylistchina.txt: 5382) +.zjg.js.cn/Public/config/Couplet/Index4 +# ||zjbdt.com/onexgadimgs/ (easylistchina.txt: 5381) +.zjbdt.com/onexgadimgs/ +# ||zj.cn^*/AD?location= (easylistchina.txt: 5380) +.zj.cn/.*/AD\?location= +# ||ziti.jz123.cn/js/ (easylistchina.txt: 5379) +.ziti.jz123.cn/js/ +# ||zisai.com/2014.ad/ (easylistchina.txt: 5378) +.zisai.com/2014\.ad/ +# ||zisai.com/2013.ad/ (easylistchina.txt: 5377) +.zisai.com/2013\.ad/ +# ||zimuzu.tv/rrlx (easylistchina.txt: 5376) +.zimuzu.tv/rrlx +# ||zimuzu.tv/public/rooms? (easylistchina.txt: 5375) +.zimuzu.tv/public/rooms\? +# ||zhzyw.org/js/InsertJS.js (easylistchina.txt: 5374) +.zhzyw.org/js/InsertJS\.js +# ||zhyjw.com/xiala/ (easylistchina.txt: 5373) +.zhyjw.com/xiala/ +# ||zhyjw.com/IAA/ (easylistchina.txt: 5372) +.zhyjw.com/IAA/ +# ||zhulong.com/poster/get?positions_name=ZY_SP_300 (easylistchina.txt: 5371) +.zhulong.com/poster/get\?positions_name=ZY_SP_300 +# ||zhulong.com/poster/get?positions_name=ZY_JZ_300_02 (easylistchina.txt: 5370) +.zhulong.com/poster/get\?positions_name=ZY_JZ_300_02 +# ||zhulong.com/poster/get?*_960 (easylistchina.txt: 5369) +.zhulong.com/poster/get\?.*_960 +# ||zhulang.com/ad_js/ (easylistchina.txt: 5368) +.zhulang.com/ad_js/ +# ||zhujiangroad.com/js/alltop.js (easylistchina.txt: 5367) +.zhujiangroad.com/js/alltop\.js +# ||zhuishu.com/js/fy (easylistchina.txt: 5366) +.zhuishu.com/js/fy +# ||zhuishu.com/js/bd (easylistchina.txt: 5365) +.zhuishu.com/js/bd +# ||zhuanyewanjia.com/upload/show/ (easylistchina.txt: 5364) +.zhuanyewanjia.com/upload/show/ +# ||zhuankeba.net/rw/tyrw/top.jpg (easylistchina.txt: 5363) +.zhuankeba.net/rw/tyrw/top\.jpg +# ||zhoushan.cn/new.js (easylistchina.txt: 5362) +.zhoushan.cn/new\.js +# ||zhongzi.in/static/ko/ (easylistchina.txt: 5361) +.zhongzi.in/static/ko/ +# ||zhlzw.com/wlles/2015/995XX.js (easylistchina.txt: 5360) +.zhlzw.com/wlles/2015/995XX\.js +# ||zhijia.com/hd/*.swf (easylistchina.txt: 5359) +.zhijia.com/hd/.*\.swf +# ||zhihu.com/node/Banner? (easylistchina.txt: 5358) +.zhihu.com/node/Banner\? +# ||zhibowu.com/js/ad (easylistchina.txt: 5357) +.zhibowu.com/js/ad +# ||zhibok8.com/js/scroll.js (easylistchina.txt: 5356) +.zhibok8.com/js/scroll\.js +# ||zhibok8.com/js/ding.js (easylistchina.txt: 5355) +.zhibok8.com/js/ding\.js +# ||zhiboba.cc/js/pic.js (easylistchina.txt: 5354) +.zhiboba.cc/js/pic\.js +# ||zhibo8.cc/js/float.js (easylistchina.txt: 5353) +.zhibo8.cc/js/float\.js +# ||zhenjiang365.cn/bbsimg/lphyslideshower.swf (easylistchina.txt: 5352) +.zhenjiang365.cn/bbsimg/lphyslideshower\.swf +# ||zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9.jpg (easylistchina.txt: 5351) +.zhenjiang365.cn/bbsatt/day_151214/15121400314df2347d2e4286f9\.jpg +# ||zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d.gif (easylistchina.txt: 5350) +.zhenjiang365.cn/bbsatt/day_120827/1208271004af7c25b6e3d4fa1d\.gif +# ||zhenjiang365.cn/*/ad_ (easylistchina.txt: 5349) +.zhenjiang365.cn/.*/ad_ +# ||zhaozi.cn/d/js/mini/extended87.js (easylistchina.txt: 5348) +.zhaozi.cn/d/js/mini/extended87\.js +# ||zhaojiao.net/templets/default/js/AD_flay.js (easylistchina.txt: 5347) +.zhaojiao.net/templets/default/js/AD_flay\.js +# ||zhao.265g.com/cache/kfbftop.html (easylistchina.txt: 5346) +.zhao.265g.com/cache/kfbftop\.html +# ||zhanqi.tv/uploads/*/ads-*.swf (easylistchina.txt: 5345) +.zhanqi.tv/uploads/.*/ads-.*\.swf +# ||zhangge.net/wp-content/uploads/files/esx.jpg (easylistchina.txt: 5344) +.zhangge.net/wp-content/uploads/files/esx\.jpg +# ||zhandi.cc/Runtime/js/index (easylistchina.txt: 5343) +.zhandi.cc/Runtime/js/index +# ||zhandi.cc/Runtime/js/900 (easylistchina.txt: 5342) +.zhandi.cc/Runtime/js/900 +# ||zhandi.cc/Runtime/js/*vod (easylistchina.txt: 5341) +.zhandi.cc/Runtime/js/.*vod +# ||zhainanba.org/ac/ (easylistchina.txt: 5340) +.zhainanba.org/ac/ +# ||zgjm.org/data/cache/mytag-30.htm (easylistchina.txt: 5339) +.zgjm.org/data/cache/mytag-30\.htm +# ||zgjm.org/data/cache/mytag-24.htm (easylistchina.txt: 5338) +.zgjm.org/data/cache/mytag-24\.htm +# ||zfs.cn/data/attachment/portal/ (easylistchina.txt: 5337) +.zfs.cn/data/attachment/portal/ +# ||zfs.cn/8th/ (easylistchina.txt: 5336) +.zfs.cn/8th/ +# ||zeyi.cc/js/2412/ (easylistchina.txt: 5335) +.zeyi.cc/js/2412/ +# ||zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605.gif (easylistchina.txt: 5334) +.zeekmagazine.com/wp-content/uploads/2014/11/1415542059-b2dde396c63609053175855ef4590605\.gif +# ||zdfans.com/wp-content/upgrade/doujind.gif (easylistchina.txt: 5333) +.zdfans.com/wp-content/upgrade/doujind\.gif +# ||zdfans.com/Picture/2345 (easylistchina.txt: 5332) +.zdfans.com/Picture/2345 +# ||zdfans.com/adsens/kiees.jpg (easylistchina.txt: 5331) +.zdfans.com/adsens/kiees\.jpg +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317.aspx (easylistchina.txt: 5330) +.zdface.com/Controls/ChannelHot/ChannelHotTypeID8ClassID317\.aspx +# ||zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0.aspx (easylistchina.txt: 5329) +.zdface.com/Controls/ChannelHot/ChannelHotTypeID19ClassID0\.aspx +# ||zchot.com/images/jiaoyou (easylistchina.txt: 5328) +.zchot.com/images/jiaoyou +# ||zc173.com/pp/ (easylistchina.txt: 5327) +.zc173.com/pp/ +# ||zc173.com/173fee/ (easylistchina.txt: 5326) +.zc173.com/173fee/ +# ||zb7.com/static/archy/ad/ (easylistchina.txt: 5325) +.zb7.com/static/archy/ad/ +# ||zasv.com/baiya.jpg (easylistchina.txt: 5324) +.zasv.com/baiya\.jpg +# ||zaobao.com/ssi/bizp/ (easylistchina.txt: 5323) +.zaobao.com/ssi/bizp/ +# ||zalra.qiniudn.com/zhou2.jpg (easylistchina.txt: 5322) +.zalra.qiniudn.com/zhou2\.jpg +# ||zalra.cn/wp-content/uploads/2014/05/xs009.jpg (easylistchina.txt: 5321) +.zalra.cn/wp-content/uploads/2014/05/xs009\.jpg +# ||zalra.cn/wp-content/uploads/2014/05/adsj.png (easylistchina.txt: 5320) +.zalra.cn/wp-content/uploads/2014/05/adsj\.png +# ||z63.org/wp-content/themes/z63/img/s- (easylistchina.txt: 5319) +.z63.org/wp-content/themes/z63/img/s- +# ||z4bbs.com/adst/ (easylistchina.txt: 5318) +.z4bbs.com/adst/ +# ||yzz.cn/home/theme/popwin/ (easylistchina.txt: 5317) +.yzz.cn/home/theme/popwin/ +# ||yzz.cn/global_gg/ (easylistchina.txt: 5316) +.yzz.cn/global_gg/ +# ||yzwb.com/js/ppaa.js (easylistchina.txt: 5315) +.yzwb.com/js/ppaa\.js +# ||yzwb.com/js/AD (easylistchina.txt: 5314) +.yzwb.com/js/AD +# ||yzwb.com/images/ad_ (easylistchina.txt: 5313) +.yzwb.com/images/ad_ +# ||yytcdn.com/user/bugles/*_*x*.jpg (easylistchina.txt: 5312) +.yytcdn.com/user/bugles/.*_.*x.*\.jpg +# ||yytcdn.com/others/avt/*_1 (easylistchina.txt: 5310) +.yytcdn.com/others/avt/.*_1 +# ||yytcdn.com/others/*_175x660. (easylistchina.txt: 5309) +.yytcdn.com/others/.*_175x660\. +# ||yytcdn.com/headfile/avt/ (easylistchina.txt: 5308) +.yytcdn.com/headfile/avt/ +# ||yy521.com/qq/qq.js (easylistchina.txt: 5307) +.yy521.com/qq/qq\.js +# ||yy521.com/js/baidu (easylistchina.txt: 5306) +.yy521.com/js/baidu +# ||yy18.info/yyads/ (easylistchina.txt: 5305) +.yy18.info/yyads/ +# ||yxlady.com/skin/yx2014/mm/inpage/ny/ (easylistchina.txt: 5304) +.yxlady.com/skin/yx2014/mm/inpage/ny/ +# ||yxlady.com/cdd/ (easylistchina.txt: 5303) +.yxlady.com/cdd/ +# ||yxdown.com/ghtml/ (easylistchina.txt: 5302) +.yxdown.com/ghtml/ +# ||yxad.com/yxad/ (easylistchina.txt: 5300) +.yxad.com/yxad/ +# ||yxad.com/sg/ (easylistchina.txt: 5299) +.yxad.com/sg/ +# ||yxad.com/js/lady.gif (easylistchina.txt: 5298) +.yxad.com/js/lady\.gif +# ||yxad.com/baidu/ (easylistchina.txt: 5297) +.yxad.com/baidu/ +# ||yupoo.com/ttmeiju/FgIoBTXx/4uIfH.jpg (easylistchina.txt: 5296) +.yupoo.com/ttmeiju/FgIoBTXx/4uIfH\.jpg +# ||yupoo.com/ttmeiju/F5TrKJL8/medish.jpg (easylistchina.txt: 5295) +.yupoo.com/ttmeiju/F5TrKJL8/medish\.jpg +# ||yupoo.com/ttmeiju/F5aQAmuW/XKgx.gif (easylistchina.txt: 5294) +.yupoo.com/ttmeiju/F5aQAmuW/XKgx\.gif +# ||yunupload.net/jsa/ (easylistchina.txt: 5292) +.yunupload.net/jsa/ +# ||yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead.jpg (easylistchina.txt: 5291) +.yunmayi.com/upload/2015/04/14/b5d2b4c37af3f4d4c6af5831422b1ead\.jpg +# ||yundianb.com/tu/jia.gif (easylistchina.txt: 5290) +.yundianb.com/tu/jia\.gif +# ||yundianb.com/hao/ (easylistchina.txt: 5289) +.yundianb.com/hao/ +# ||yundasys.com:1602/wsd/ykjcx/ (easylistchina.txt: 5288) +.yundasys.com:1602/wsd/ykjcx/ +# ||yunaw.qiniudn.com/tuixiao.png (easylistchina.txt: 5287) +.yunaw.qiniudn.com/tuixiao\.png +# ||yubei8.com/img/ (easylistchina.txt: 5286) +.yubei8.com/img/ +# ||yubei8.com/boximg/ (easylistchina.txt: 5285) +.yubei8.com/boximg/ +# ||yto.net.cn/gw/chajian/ (easylistchina.txt: 5284) +.yto.net.cn/gw/chajian/ +# ||ytbbs.com/images/index/ (easylistchina.txt: 5283) +.ytbbs.com/images/index/ +# ||ysxs8.com/ysgg/ (easylistchina.txt: 5282) +.ysxs8.com/ysgg/ +# ||youxituoluo.com/wp-content/uploads/2015/09/20150914175545748.jpg (easylistchina.txt: 5281) +.youxituoluo.com/wp-content/uploads/2015/09/20150914175545748\.jpg +# ||youxituoluo.com/wp-content/uploads/2015/07/20150724152002343.jpg (easylistchina.txt: 5280) +.youxituoluo.com/wp-content/uploads/2015/07/20150724152002343\.jpg +# ||youxiaxiazai.com/dm/ (easylistchina.txt: 5279) +.youxiaxiazai.com/dm/ +# ||youxiaxiazai.com/db_top/index_top.htm (easylistchina.txt: 5278) +.youxiaxiazai.com/db_top/index_top\.htm +# ||youxi.baidu.com/tips/bdtips_min.js (easylistchina.txt: 5277) +.youxi.baidu.com/tips/bdtips_min\.js +# ||youthwant.com.tw/scripts/youthad.js (easylistchina.txt: 5275) +.youthwant.com.tw/scripts/youthad\.js +# ||youthwant.com.tw/S_YahooContentMatch1. (easylistchina.txt: 5274) +.youthwant.com.tw/S_YahooContentMatch1\. +# ||youthwant.com.tw/images/mot_ad.jpg (easylistchina.txt: 5273) +.youthwant.com.tw/images/mot_ad\.jpg +# ||youthwant.com.tw/event/*/swf/970x (easylistchina.txt: 5272) +.youthwant.com.tw/event/.*/swf/970x +# ||youthwant.com.tw/dodo.php?adjs= (easylistchina.txt: 5271) +.youthwant.com.tw/dodo\.php\?adjs= +# ||youth.cn/qwtf2015/ (easylistchina.txt: 5270) +.youth.cn/qwtf2015/ +# ||youth.cn/images/public_ (easylistchina.txt: 5269) +.youth.cn/images/public_ +# ||youth.cn/images/m.js (easylistchina.txt: 5268) +.youth.cn/images/m\.js +# ||youth.cn/images/c.js (easylistchina.txt: 5267) +.youth.cn/images/c\.js +# ||youth.cn/hezuo/index.js (easylistchina.txt: 5266) +.youth.cn/hezuo/index\.js +# ||youth.cn/ggw/dep_ggw/ (easylistchina.txt: 5265) +.youth.cn/ggw/dep_ggw/ +# ||youqu.net/js/ (easylistchina.txt: 5264) +.youqu.net/js/ +# ||you85.cn^*/z*.js (easylistchina.txt: 5263) +.you85.cn/.*/z.*\.js +# ||you85.cn^*/vip.js (easylistchina.txt: 5262) +.you85.cn/.*/vip\.js +# ||you85.cn^*/dib.js (easylistchina.txt: 5261) +.you85.cn/.*/dib\.js +# ||you85.cn/i360/ (easylistchina.txt: 5260) +.you85.cn/i360/ +# ||you85.cn/cc/ (easylistchina.txt: 5259) +.you85.cn/cc/ +# ||yooread.com/skin/js/common.js (easylistchina.txt: 5258) +.yooread.com/skin/js/common\.js +# ||ynzd.org/dict/uploads/20111007/ad_710.jpg (easylistchina.txt: 5257) +.ynzd.org/dict/uploads/20111007/ad_710\.jpg +# ||ylzx8.cn/style/js/sad.js (easylistchina.txt: 5256) +.ylzx8.cn/style/js/sad\.js +# ||ylnet.com.cn/gj.js (easylistchina.txt: 5254) +.ylnet.com.cn/gj\.js +# ||ylnet.com.cn/dl*.js (easylistchina.txt: 5253) +.ylnet.com.cn/dl.*\.js +# ||ylnet.com.cn/201*/rh/ (easylistchina.txt: 5252) +.ylnet.com.cn/201.*/rh/ +# ||yktj.yzz.cn^ (easylistchina.txt: 5251) +.yktj.yzz.cn +# ||yizhai.net/myjs/f*.js (easylistchina.txt: 5249) +.yizhai.net/myjs/f.*\.js +# ||yiyipan.com/images/12.gif (easylistchina.txt: 5248) +.yiyipan.com/images/12\.gif +# ||yixiaoba.com/juxiao.html (easylistchina.txt: 5247) +.yixiaoba.com/juxiao\.html +# ||yixiaoba.com/js/yxb_normal.js (easylistchina.txt: 5246) +.yixiaoba.com/js/yxb_normal\.js +# ||yiweimei.net/css/logo.gif (easylistchina.txt: 5245) +.yiweimei.net/css/logo\.gif +# ||yinyuetai.com/proment/get-play-medias?json=true&position=preroll (easylistchina.txt: 5244) +.yinyuetai.com/proment/get-play-medias\?json=true&position=preroll +# ||yinyuetai.com/proment/get-play-medias?*&position=pauseroll (easylistchina.txt: 5243) +.yinyuetai.com/proment/get-play-medias\?.*&position=pauseroll +# ||yinyuetai.com/proment/get-play-medias?*&position=overlay (easylistchina.txt: 5242) +.yinyuetai.com/proment/get-play-medias\?.*&position=overlay +# ||yinhangkahao.com/go/ (easylistchina.txt: 5240) +.yinhangkahao.com/go/ +# ||yinfu.cc/sid/*.js (easylistchina.txt: 5239) +.yinfu.cc/sid/.*\.js +# ||yinduabc.com/res_base/*/makemoney/ (easylistchina.txt: 5238) +.yinduabc.com/res_base/.*/makemoney/ +# ||yimuhe.com/n_ad/ (easylistchina.txt: 5237) +.yimuhe.com/n_ad/ +# ||yimg.com/ja/ap/*_wallpaper (easylistchina.txt: 5235) +.yimg.com/ja/ap/.*_wallpaper +# ||yimg.com/ja/ap/*/hk_rm_umu_ (easylistchina.txt: 5234) +.yimg.com/ja/ap/.*/hk_rm_umu_ +# ||yimg.com/cv/ae/tw/bwchou/bubble_ (easylistchina.txt: 5233) +.yimg.com/cv/ae/tw/bwchou/bubble_ +# ||yimg.com/cv/ae/tw/bwchou/728x210. (easylistchina.txt: 5232) +.yimg.com/cv/ae/tw/bwchou/728x210\. +# ||yimg.com/cv/ae/default/*_STATIC-JPEG_ (easylistchina.txt: 5231) +.yimg.com/cv/ae/default/.*_STATIC-JPEG_ +# ||yimg.com/bf/homerun/ysm_ (easylistchina.txt: 5230) +.yimg.com/bf/homerun/ysm_ +# ||yiku51.com/xinzeng/js/ (easylistchina.txt: 5229) +.yiku51.com/xinzeng/js/ +# ||ygdy8.com/jsy/ (easylistchina.txt: 5228) +.ygdy8.com/jsy/ +# ||yeyou.com/2013/new/yeyou-float-window.js (easylistchina.txt: 5227) +.yeyou.com/2013/new/yeyou-float-window\.js +# ||yesky.com/monitorjs/imp- (easylistchina.txt: 5226) +.yesky.com/monitorjs/imp- +# ||yeeyi.com/bbs/api.php?mod=js&bid= (easylistchina.txt: 5225) +.yeeyi.com/bbs/api\.php\?mod=js&bid= +# ||ydstatic.com/fanxian/minisite/promotion/ (easylistchina.txt: 5224) +.ydstatic.com/fanxian/minisite/promotion/ +# ||yczbb.com/ggimg/ (easylistchina.txt: 5223) +.yczbb.com/ggimg/ +# ||ychr.com/dlad.js (easylistchina.txt: 5222) +.ychr.com/dlad\.js +# ||ybvv.com*/aimg/ (easylistchina.txt: 5221) +.ybvv.com*./(.*/)?aimg/ +# ||yb983.com/skin/yb983V2013/ad/ (easylistchina.txt: 5220) +.yb983.com/skin/yb983V2013/ad/ +# ||yawin.cn/inc/indexad.js (easylistchina.txt: 5219) +.yawin.cn/inc/indexad\.js +# ||yaolanimage.cn/cms/image/960-90 (easylistchina.txt: 5218) +.yaolanimage.cn/cms/image/960-90 +# ||yaolanimage.cn/assets/ask/js/ask_video_popup.js (easylistchina.txt: 5217) +.yaolanimage.cn/assets/ask/js/ask_video_popup\.js +# ||yaolan.com/wenku_debris/time_debris/images/mary (easylistchina.txt: 5216) +.yaolan.com/wenku_debris/time_debris/images/mary +# ||yaojixiu.com/960x100.gif (easylistchina.txt: 5215) +.yaojixiu.com/960x100\.gif +# ||yanu.qiniudn.com/270300.jpg (easylistchina.txt: 5214) +.yanu.qiniudn.com/270300\.jpg +# ||yanu.qiniudn.com/*x60. (easylistchina.txt: 5213) +.yanu.qiniudn.com/.*x60\. +# ||yanqing888.me/script/Read_Fee_Bottom.js (easylistchina.txt: 5212) +.yanqing888.me/script/Read_Fee_Bottom\.js +# ||yanqing888.me/script/fanye (easylistchina.txt: 5211) +.yanqing888.me/script/fanye +# ||yanjiao.com/zt/indexad/ (easylistchina.txt: 5210) +.yanjiao.com/zt/indexad/ +# ||yam.com/ad_yam/ (easylistchina.txt: 5209) +.yam.com/ad_yam/ +# ||yaerwen.com/5200js/59.js (easylistchina.txt: 5208) +.yaerwen.com/5200js/59\.js +# ||y80s.org:85/upload/468-60 (easylistchina.txt: 5207) +.y80s.org:85/upload/468-60 +# ||y80s.org:85/img/960x90.gif (easylistchina.txt: 5206) +.y80s.org:85/img/960x90\.gif +# ||y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg (easylistchina.txt: 5205) +.y2.ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32\.jpg +# ||xz7.com/up/UploadPic/2014-5/201452517141272046.gif (easylistchina.txt: 5204) +.xz7.com/up/UploadPic/2014-5/201452517141272046\.gif +# ||xz7.com/up/UploadPic/2014-5/201452517124193056.gif (easylistchina.txt: 5203) +.xz7.com/up/UploadPic/2014-5/201452517124193056\.gif +# ||xz7.com/js/xia (easylistchina.txt: 5202) +.xz7.com/js/xia +# ||xz7.com/js/top2.js (easylistchina.txt: 5201) +.xz7.com/js/top2\.js +# ||xz7.com/js/jctj.js (easylistchina.txt: 5200) +.xz7.com/js/jctj\.js +# ||xz7.com/js/gg_ (easylistchina.txt: 5199) +.xz7.com/js/gg_ +# ||xz7.com/js/bann (easylistchina.txt: 5198) +.xz7.com/js/bann +# ||xz7.com/js/3000.js (easylistchina.txt: 5197) +.xz7.com/js/3000\.js +# ||xyzc.cn/js/pfgg.js (easylistchina.txt: 5196) +.xyzc.cn/js/pfgg\.js +# ||xyfdcw.com.cn/userfiles/flash/ (easylistchina.txt: 5195) +.xyfdcw.com.cn/userfiles/flash/ +# ||xxsy.net/js/xxsypop (easylistchina.txt: 5193) +.xxsy.net/js/xxsypop +# ||xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71.jpg (easylistchina.txt: 5192) +.xxs8.com/data/attachment/forum/201308/02/154213bpecdb6qly7fgv71\.jpg +# ||xxhh.com/xh.js (easylistchina.txt: 5191) +.xxhh.com/xh\.js +# ||xxdm.org/js/union/ (easylistchina.txt: 5190) +.xxdm.org/js/union/ +# ||xxdm.com/js/union/ (easylistchina.txt: 5189) +.xxdm.com/js/union/ +# ||xx978.info/images/468-60OK.gif (easylistchina.txt: 5188) +.xx978.info/images/468-60OK\.gif +# ||xv98.com/js/hengfu (easylistchina.txt: 5187) +.xv98.com/js/hengfu +# ||xv98.com/js/daohang (easylistchina.txt: 5186) +.xv98.com/js/daohang +# ||xunzai.com/www/all_common.js (easylistchina.txt: 5185) +.xunzai.com/www/all_common\.js +# ||xunzai.com/static/wwwimg/ (easylistchina.txt: 5184) +.xunzai.com/static/wwwimg/ +# ||xunzai.com/static/www/ku360300.jpg (easylistchina.txt: 5183) +.xunzai.com/static/www/ku360300\.jpg +# ||xunying.com^*/ww (easylistchina.txt: 5182) +.xunying.com/.*/ww +# ||xunleisousuo.com/byou.php (easylistchina.txt: 5181) +.xunleisousuo.com/byou\.php +# ||xunleipu.com/a-d-j-s/ (easylistchina.txt: 5180) +.xunleipu.com/a-d-j-s/ +# ||xunleihd.com/image/*maose (easylistchina.txt: 5179) +.xunleihd.com/image/.*maose +# ||xunleihao.com/a-d-j-s/ (easylistchina.txt: 5178) +.xunleihao.com/a-d-j-s/ +# ||xun9u.com/css/js/text_link.js (easylistchina.txt: 5177) +.xun9u.com/css/js/text_link\.js +# ||xue163.com/ajs/end (easylistchina.txt: 5176) +.xue163.com/ajs/end +# ||xs8.cn/xs8_stat.js (easylistchina.txt: 5175) +.xs8.cn/xs8_stat\.js +# ||xs.houyi.baofeng.net^ (easylistchina.txt: 5174) +.xs.houyi.baofeng.net +# ||xpgod.com/UploadPic/xpgod/ (easylistchina.txt: 5173) +.xpgod.com/UploadPic/xpgod/ +# ||xpgod.com/bui/ (easylistchina.txt: 5172) +.xpgod.com/bui/ +# ||xp85.com/statics/js/all.js (easylistchina.txt: 5171) +.xp85.com/statics/js/all\.js +# ||xp811.com/img/xitong.gif (easylistchina.txt: 5170) +.xp811.com/img/xitong\.gif +# ||xp510.com/skin/wdsj.gif (easylistchina.txt: 5169) +.xp510.com/skin/wdsj\.gif +# ||xnnews.com.cn/templets/js/wzydl.js (easylistchina.txt: 5167) +.xnnews.com.cn/templets/js/wzydl\.js +# ||xnnews.com.cn/templets/js/smsline_double.js (easylistchina.txt: 5166) +.xnnews.com.cn/templets/js/smsline_double\.js +# ||xnnews.com.cn/Templets/js/*link (easylistchina.txt: 5165) +.xnnews.com.cn/Templets/js/.*link +# ||xnnews.com.cn/Templets/image/zyyy.swf (easylistchina.txt: 5164) +.xnnews.com.cn/Templets/image/zyyy\.swf +# ||xnnews.com.cn/templets/image/mpljj.jpg (easylistchina.txt: 5163) +.xnnews.com.cn/templets/image/mpljj\.jpg +# ||xnnews.com.cn/templets/image/*gg (easylistchina.txt: 5162) +.xnnews.com.cn/templets/image/.*gg +# ||xnnews.com.cn/images/yr_wsm.js (easylistchina.txt: 5161) +.xnnews.com.cn/images/yr_wsm\.js +# ||xmfish.com/chanel/www/cpm.html (easylistchina.txt: 5160) +.xmfish.com/chanel/www/cpm\.html +# ||xlpu.cc/adv/ (easylistchina.txt: 5159) +.xlpu.cc/adv/ +# ||xkxs.org/js/tongji.js (easylistchina.txt: 5158) +.xkxs.org/js/tongji\.js +# ||xkxs.org/js/tl (easylistchina.txt: 5157) +.xkxs.org/js/tl +# ||xkxs.org/js/bd (easylistchina.txt: 5156) +.xkxs.org/js/bd +# ||xkhouse.com/xkhouse/ggvert/ (easylistchina.txt: 5155) +.xkhouse.com/xkhouse/ggvert/ +# ||xkhouse.com/display/displaygg/ (easylistchina.txt: 5154) +.xkhouse.com/display/displaygg/ +# ||xizi.com/js/rotator.js (easylistchina.txt: 5153) +.xizi.com/js/rotator\.js +# ||xizi.com/a/ (easylistchina.txt: 5152) +.xizi.com/a/ +# ||xizhongzi.net/bootstrap/dist/img/ (easylistchina.txt: 5151) +.xizhongzi.net/bootstrap/dist/img/ +# ||xiu8.com/baidu-tieba/*&forum_name= (easylistchina.txt: 5150) +.xiu8.com/baidu-tieba/.*&forum_name= +# ||xitong8.com/theme/default/images/index_13.jpg (easylistchina.txt: 5149) +.xitong8.com/theme/default/images/index_13\.jpg +# ||xitong8.com/theme/default/images/725x90.gif (easylistchina.txt: 5148) +.xitong8.com/theme/default/images/725x90\.gif +# ||xitek.com/idzone/ (easylistchina.txt: 5147) +.xitek.com/idzone/ +# ||xinyi.com/Template/Ant/Js/tonglang.js (easylistchina.txt: 5146) +.xinyi.com/Template/Ant/Js/tonglang\.js +# ||xinyi.com/Public/config/Couplet/Index41.js (easylistchina.txt: 5145) +.xinyi.com/Public/config/Couplet/Index41\.js +# ||xinyi.com/Public/config/Couplet/Index40.js (easylistchina.txt: 5144) +.xinyi.com/Public/config/Couplet/Index40\.js +# ||xinyi.com/Public/config/Couplet/Index39.js (easylistchina.txt: 5143) +.xinyi.com/Public/config/Couplet/Index39\.js +# ||xinyi.com/Public/config/Couplet/Index100.js (easylistchina.txt: 5142) +.xinyi.com/Public/config/Couplet/Index100\.js +# ||xinminweekly.com.cn/images/index-985x93- (easylistchina.txt: 5141) +.xinminweekly.com.cn/images/index-985x93- +# ||xinminweekly.com.cn/images/*-banner (easylistchina.txt: 5140) +.xinminweekly.com.cn/images/.*-banner +# ||xinmin.cn/framepage/yqLink1.htm (easylistchina.txt: 5139) +.xinmin.cn/framepage/yqLink1\.htm +# ||xinmin.cn/framepage/top (easylistchina.txt: 5138) +.xinmin.cn/framepage/top +# ||xinmin.cn/framepage/left1.htm (easylistchina.txt: 5137) +.xinmin.cn/framepage/left1\.htm +# ||xinmin.cn/framepage/foot1.htm (easylistchina.txt: 5136) +.xinmin.cn/framepage/foot1\.htm +# ||xinku.tv/asd/ (easylistchina.txt: 5135) +.xinku.tv/asd/ +# ||xinjs.cn/2010/yf (easylistchina.txt: 5134) +.xinjs.cn/2010/yf +# ||xinji.org/js/float.js (easylistchina.txt: 5133) +.xinji.org/js/float\.js +# ||xinhuanet.com^*/ad_ (easylistchina.txt: 5131) +.xinhuanet.com/.*/ad_ +# ||xinhuanet.com/v2/ads/ (easylistchina.txt: 5130) +.xinhuanet.com/v2/ads/ +# ||xinhuanet.com/v/script/coupletAd.js (easylistchina.txt: 5129) +.xinhuanet.com/v/script/coupletAd\.js +# ||xinhuanet.com/titlepic/111243292_title1n.jpg (easylistchina.txt: 5128) +.xinhuanet.com/titlepic/111243292_title1n\.jpg +# ||xinhuanet.com/statics/imags/zgyd_ (easylistchina.txt: 5127) +.xinhuanet.com/statics/imags/zgyd_ +# ||xinhuanet.com/plugs/szzc630x80.jpg (easylistchina.txt: 5126) +.xinhuanet.com/plugs/szzc630x80\.jpg +# ||xinhuanet.com/jjimages/jc/js/fla.js (easylistchina.txt: 5125) +.xinhuanet.com/jjimages/jc/js/fla\.js +# ||xinhuanet.com/images2015/index980 (easylistchina.txt: 5124) +.xinhuanet.com/images2015/index980 +# ||xinhuanet.com/images/ggdl.jpg (easylistchina.txt: 5123) +.xinhuanet.com/images/ggdl\.jpg +# ||xinhuanet.com/classad/ (easylistchina.txt: 5122) +.xinhuanet.com/classad/ +# ||xinhuanet.com/adxl/ (easylistchina.txt: 5121) +.xinhuanet.com/adxl/ +# ||xinhuanet.com/2015ad/ (easylistchina.txt: 5120) +.xinhuanet.com/2015ad/ +# ||xinhuanet.com/2015/html2015/xhfloatAdv.html (easylistchina.txt: 5119) +.xinhuanet.com/2015/html2015/xhfloatAdv\.html +# ||xinhuanet.com/2014xb/html/if_gg.htm (easylistchina.txt: 5118) +.xinhuanet.com/2014xb/html/if_gg\.htm +# ||xinhuanet.com/2014/imgad/ (easylistchina.txt: 5117) +.xinhuanet.com/2014/imgad/ +# ||xinhuanet.com/2014/iframe/AD- (easylistchina.txt: 5116) +.xinhuanet.com/2014/iframe/AD- +# ||xinhuanet.com/2013images/ltxl.gif (easylistchina.txt: 5115) +.xinhuanet.com/2013images/ltxl\.gif +# ||xinhuanet.com/2013images/jfzj.swf (easylistchina.txt: 5114) +.xinhuanet.com/2013images/jfzj\.swf +# ||xinhuanet.com/*/ad20 (easylistchina.txt: 5113) +.xinhuanet.com/.*/ad20 +# ||xinbiqi.com/js/pc_ads.js (easylistchina.txt: 5112) +.xinbiqi.com/js/pc_ads\.js +# ||xilu.com/js/bd.js (easylistchina.txt: 5111) +.xilu.com/js/bd\.js +# ||xilu.com/iframe/pagepic/ (easylistchina.txt: 5110) +.xilu.com/iframe/pagepic/ +# ||xilinjie.com/partner/ (easylistchina.txt: 5109) +.xilinjie.com/partner/ +# ||xigua110.com/a/ (easylistchina.txt: 5108) +.xigua110.com/a/ +# ||xiazaiba.com/uploadfiles/ads/ (easylistchina.txt: 5107) +.xiazaiba.com/uploadfiles/ads/ +# ||xiaopi.com/500/ (easylistchina.txt: 5106) +.xiaopi.com/500/ +# ||xiaomengku.com/static/template/cms/v3/js/activity.js (easylistchina.txt: 5105) +.xiaomengku.com/static/template/cms/v3/js/activity\.js +# ||xiaoliaolianmeng.com/pic/weipinhui/ (easylistchina.txt: 5103) +.xiaoliaolianmeng.com/pic/weipinhui/ +# ||xiangmucangku.com/uploads/allimg/ (easylistchina.txt: 5102) +.xiangmucangku.com/uploads/allimg/ +# ||xiangai365.com/ad_js/ (easylistchina.txt: 5101) +.xiangai365.com/ad_js/ +# ||xiancn.com^*/adv_content/ (easylistchina.txt: 5100) +.xiancn.com/.*/adv_content/ +# ||xiami.com/player/iframe-adm? (easylistchina.txt: 5099) +.xiami.com/player/iframe-adm\? +# ||xhub.cn/tanchu.js (easylistchina.txt: 5098) +.xhub.cn/tanchu\.js +# ||xgrb.cn/newad/ (easylistchina.txt: 5097) +.xgrb.cn/newad/ +# ||xghylt.com/newad/ (easylistchina.txt: 5096) +.xghylt.com/newad/ +# ||xghylt.com/api.php?mod=ad&adid= (easylistchina.txt: 5095) +.xghylt.com/api\.php\?mod=ad&adid= +# ||xemh.com/other/*_ads (easylistchina.txt: 5094) +.xemh.com/other/.*_ads +# ||xdowns.com/js/lefttuijian.js (easylistchina.txt: 5093) +.xdowns.com/js/lefttuijian\.js +# ||xdowns.com/info.js (easylistchina.txt: 5092) +.xdowns.com/info\.js +# ||xdowns.com/ggco.js (easylistchina.txt: 5091) +.xdowns.com/ggco\.js +# ||xdkb.net/index/temp/3813.files/banner.jpg (easylistchina.txt: 5090) +.xdkb.net/index/temp/3813\.files/banner\.jpg +# ||xdjishu.com/_uploadfile/image/20150722/20150722164052_98036.gif (easylistchina.txt: 5089) +.xdjishu.com/_uploadfile/image/20150722/20150722164052_98036\.gif +# ||xdf.cn/v4/js/leyus/ (easylistchina.txt: 5088) +.xdf.cn/v4/js/leyus/ +# ||xdf.cn/v4/js/adm- (easylistchina.txt: 5087) +.xdf.cn/v4/js/adm- +# ||xdf.cn/v4/images/index/ads/ (easylistchina.txt: 5086) +.xdf.cn/v4/images/index/ads/ +# ||xdcad.net/source/plugin/disad/disad.js (easylistchina.txt: 5085) +.xdcad.net/source/plugin/disad/disad\.js +# ||xczhibo.com/xml/ (easylistchina.txt: 5084) +.xczhibo.com/xml/ +# ||xc.macd.cn^ (easylistchina.txt: 5083) +.xc.macd.cn +# ||xb2s.com:8080/mjq.js (easylistchina.txt: 5082) +.xb2s.com:8080/mjq\.js +# ||xav*.com/js/float.js (easylistchina.txt: 5081) +.xav*./.*\.com/js/float\.js +.xav*.com/js/float\.js +# ||xav*.com/attachment/Mon_ (easylistchina.txt: 5080) +.xav*./.*\.com/attachment/Mon_ +.xav*.com/attachment/Mon_ +# ||xav*.com/ad1/ (easylistchina.txt: 5079) +.xav*./.*\.com/ad1/ +.xav*.com/ad1/ +# ||x.jd.com/static/js/cpc.js (easylistchina.txt: 5078) +.x.jd.com/static/js/cpc\.js +# ||x.jd.com/static/js/auto.js (easylistchina.txt: 5077) +.x.jd.com/static/js/auto\.js +# ||wzbh.org/imgad/ (easylistchina.txt: 5075) +.wzbh.org/imgad/ +# ||wyzu.cn/js/3.js (easylistchina.txt: 5074) +.wyzu.cn/js/3\.js +# ||wyh.tv/image/upload/ad/ (easylistchina.txt: 5073) +.wyh.tv/image/upload/ad/ +# ||wxrb.com/g/js/baidu.cbjs.m.js (easylistchina.txt: 5072) +.wxrb.com/g/js/baidu\.cbjs\.m\.js +# ||wxdown.net/images/*.gif (easylistchina.txt: 5071) +.wxdown.net/images/.*\.gif +# ||wx.sina.com.cn/iframe/pdps/ (easylistchina.txt: 5070) +.wx.sina.com.cn/iframe/pdps/ +# ||wx.56.com/youxitg/ (easylistchina.txt: 5069) +.wx.56.com/youxitg/ +# ||wwwcdn.kimiss.net/btn/ (easylistchina.txt: 5068) +.wwwcdn.kimiss.net/btn/ +# ||www.111cn.net/pic/ (easylistchina.txt: 5066) +.www.111cn.net/pic/ +# ||www-dnwx-com.anquanbao.cn/pic (easylistchina.txt: 5065) +.www-dnwx-com.anquanbao.cn/pic +# ||wuyou.*/0000/banner.gif (easylistchina.txt: 5064) +.wuyou.*./(.*/)?0000/banner\.gif +# ||wuxi.cn/index.php?m=poster& (easylistchina.txt: 5063) +.wuxi.cn/index\.php\?m=poster& +# ||wuseng.com/templets/default/statics/js/mm.js (easylistchina.txt: 5062) +.wuseng.com/templets/default/statics/js/mm\.js +# ||wumii.com/ext/widget/hot.htm?prefix=http://blog.const.net.cn& (easylistchina.txt: 5061) +.wumii.com/ext/widget/hot\.htm\?prefix=http://blog\.const\.net\.cn& +# ||wumii.cn/site_images/c/ (easylistchina.txt: 5060) +.wumii.cn/site_images/c/ +# ||wuhan.net.cn/show.html (easylistchina.txt: 5059) +.wuhan.net.cn/show\.html +# ||wuhan.net.cn/guanggaojs/ (easylistchina.txt: 5058) +.wuhan.net.cn/guanggaojs/ +# ||wudilong.com/ssb/include/js/php.js (easylistchina.txt: 5057) +.wudilong.com/ssb/include/js/php\.js +# ||wszhibo.com/xml/tvAdtext.ashx (easylistchina.txt: 5056) +.wszhibo.com/xml/tvAdtext\.ashx +# ||wszhibo.com/Uploadfiles/*.gif (easylistchina.txt: 5055) +.wszhibo.com/Uploadfiles/.*\.gif +# ||wpjam.qiniudn.com/wpjam/banner/*g| (easylistchina.txt: 5054) +.wpjam.qiniudn.com/wpjam/banner/.*g$ +# ||woxiu.com/xapi/offsite_swf_more.php? (easylistchina.txt: 5053) +.woxiu.com/xapi/offsite_swf_more\.php\? +# ||woxiu.com/xapi/get_pre_config.php (easylistchina.txt: 5052) +.woxiu.com/xapi/get_pre_config\.php +# ||wowody.net/public/wowo/2345.html (easylistchina.txt: 5051) +.wowody.net/public/wowo/2345\.html +# ||wowody.net/public/wowo/*play_ (easylistchina.txt: 5050) +.wowody.net/public/wowo/.*play_ +# ||woshipm.com/wp-files/*qidian (easylistchina.txt: 5049) +.woshipm.com/wp-files/.*qidian +# ||wo318.com/template/ (easylistchina.txt: 5048) +.wo318.com/template/ +# ||wo318.com/sjs/km/xixitv.js (easylistchina.txt: 5047) +.wo318.com/sjs/km/xixitv\.js +# ||wo318.com/good/ (easylistchina.txt: 5046) +.wo318.com/good/ +# ||wlnews.zjol.com.cn/wlrb/bbs/ (easylistchina.txt: 5045) +.wlnews.zjol.com.cn/wlrb/bbs/ +# ||wlnews.zjol.com.cn/bbs/ (easylistchina.txt: 5044) +.wlnews.zjol.com.cn/bbs/ +# ||wishdown.com/images/*.gif (easylistchina.txt: 5043) +.wishdown.com/images/.*\.gif +# ||winba.me/wp-content/uploads/2015/10/image.jpg (easylistchina.txt: 5041) +.winba.me/wp-content/uploads/2015/10/image\.jpg +# ||winba.me/wp-content/uploads/*/QQ% (easylistchina.txt: 5040) +.winba.me/wp-content/uploads/.*/QQ% +# ||winba.me/wp-content/uploads/*/300x300. (easylistchina.txt: 5039) +.winba.me/wp-content/uploads/.*/300x300\. +# ||whsfzx.com/jj/ (easylistchina.txt: 5038) +.whsfzx.com/jj/ +# ||whsfzx.com/img/top.js (easylistchina.txt: 5037) +.whsfzx.com/img/top\.js +# ||whqyw.com/file/upload/201408/01/09-41-45-92-1.jpg (easylistchina.txt: 5036) +.whqyw.com/file/upload/201408/01/09-41-45-92-1\.jpg +# ||whnews.cn/wh_public/dl/ (easylistchina.txt: 5034) +.whnews.cn/wh_public/dl/ +# ||whnews.cn/news/data/*/pf.js (easylistchina.txt: 5033) +.whnews.cn/news/data/.*/pf\.js +# ||whinfo.net.cn/ad20 (easylistchina.txt: 5032) +.whinfo.net.cn/ad20 +# ||wgun.net/data/yahoo_ad.html (easylistchina.txt: 5031) +.wgun.net/data/yahoo_ad\.html +# ||wfcmw.cn/cmw_2015/ad/flash/ (easylistchina.txt: 5030) +.wfcmw.cn/cmw_2015/ad/flash/ +# ||weste.net/js/showpagead.js (easylistchina.txt: 5029) +.weste.net/js/showpagead\.js +# ||wenyoutai.com/template/comiis_xwyt/ads/ (easylistchina.txt: 5028) +.wenyoutai.com/template/comiis_xwyt/ads/ +# ||wenxuecity.com/service/ad/ (easylistchina.txt: 5027) +.wenxuecity.com/service/ad/ +# ||wenwo.com^*/js/common/adAudit. (easylistchina.txt: 5026) +.wenwo.com/.*/js/common/adAudit\. +# ||wenku8.com/banner.jpg (easylistchina.txt: 5025) +.wenku8.com/banner\.jpg +# ||wendu.cn/templates/wzdsb/js/yanue.pop.js (easylistchina.txt: 5024) +.wendu.cn/templates/wzdsb/js/yanue\.pop\.js +# ||wendellyu.com/banner/ (easylistchina.txt: 5023) +.wendellyu.com/banner/ +# ||weixin.qqday.com/js/tj.js (easylistchina.txt: 5022) +.weixin.qqday.com/js/tj\.js +# ||weixin.qqday.com/js/rb.js (easylistchina.txt: 5021) +.weixin.qqday.com/js/rb\.js +# ||weiqitv.com/Uploads/20140721/53cca3becc50b.jpg (easylistchina.txt: 5020) +.weiqitv.com/Uploads/20140721/53cca3becc50b\.jpg +# ||weiqitv.com/Uploads/185_440_ (easylistchina.txt: 5019) +.weiqitv.com/Uploads/185_440_ +# ||weiqitv.com/Public/img/kt.jpg (easylistchina.txt: 5018) +.weiqitv.com/Public/img/kt\.jpg +# ||weidea.net/wp-content/host_ads.png (easylistchina.txt: 5017) +.weidea.net/wp-content/host_ads\.png +# ||weidea.net/wp-content/ads_img/ (easylistchina.txt: 5016) +.weidea.net/wp-content/ads_img/ +# ||weibo.com/images/ad_ (easylistchina.txt: 5015) +.weibo.com/images/ad_ +# ||wei2008.com/js/t_win (easylistchina.txt: 5014) +.wei2008.com/js/t_win +# ||wei2008.com/js/list_gg.js (easylistchina.txt: 5013) +.wei2008.com/js/list_gg\.js +# ||wei2008.com/js/index_ (easylistchina.txt: 5012) +.wei2008.com/js/index_ +# ||wei2008.com/js/img (easylistchina.txt: 5011) +.wei2008.com/js/img +# ||wei2008.com/js/down (easylistchina.txt: 5010) +.wei2008.com/js/down +# ||wei2008.com/js/copyright (easylistchina.txt: 5009) +.wei2008.com/js/copyright +# ||wei2008.com/js/960X90 (easylistchina.txt: 5008) +.wei2008.com/js/960X90 +# ||wehefei.com/uploadfile/flashad/ (easylistchina.txt: 5007) +.wehefei.com/uploadfile/flashad/ +# ||wehefei.com/htmlphp/tmall/ (easylistchina.txt: 5006) +.wehefei.com/htmlphp/tmall/ +# ||weeiy.com/wp-content/uploads/2013/12/2345ie.jpg (easylistchina.txt: 5005) +.weeiy.com/wp-content/uploads/2013/12/2345ie\.jpg +# ||webkaka.com/script/duilian_ (easylistchina.txt: 5004) +.webkaka.com/script/duilian_ +# ||webjx.com/zanzhushang/ (easylistchina.txt: 5002) +.webjx.com/zanzhushang/ +# ||webacg.com/http/js/1.js (easylistchina.txt: 5001) +.webacg.com/http/js/1\.js +# ||webacg.com/data/js/ (easylistchina.txt: 5000) +.webacg.com/data/js/ +# ||web.900.la^ (easylistchina.txt: 4999) +.web.900.la +# ||weathercn.com/m_mobile/ad_image/ (easylistchina.txt: 4998) +.weathercn.com/m_mobile/ad_image/ +# ||we54.com/poster/ (easylistchina.txt: 4997) +.we54.com/poster/ +# ||we54.com/54index_ad/ (easylistchina.txt: 4996) +.we54.com/54index_ad/ +# ||wdown.cn/falala/ (easylistchina.txt: 4995) +.wdown.cn/falala/ +# ||wdlm.cn/img/ad1/ (easylistchina.txt: 4994) +.wdlm.cn/img/ad1/ +# ||wd147.com/templets/mm/js/cs.js (easylistchina.txt: 4993) +.wd147.com/templets/mm/js/cs\.js +# ||wbzol.com/show/images/show.htm (easylistchina.txt: 4992) +.wbzol.com/show/images/show\.htm +# ||wanwan.sina.com.cn/third_party/ (easylistchina.txt: 4991) +.wanwan.sina.com.cn/third_party/ +# ||wannianli.com.cn/style/ad_ (easylistchina.txt: 4990) +.wannianli.com.cn/style/ad_ +# ||wangpanwu.com/images/zhuolaoshigg.gif (easylistchina.txt: 4988) +.wangpanwu.com/images/zhuolaoshigg\.gif +# ||wangpanwu.com/images/*guanggao (easylistchina.txt: 4987) +.wangpanwu.com/images/.*guanggao +# ||wangjing.cn/upload/ftp/ad/ (easylistchina.txt: 4986) +.wangjing.cn/upload/ftp/ad/ +# ||wangjing.cn/images/js/YlFloat.js (easylistchina.txt: 4985) +.wangjing.cn/images/js/YlFloat\.js +# ||wangjing.cn/iframe/zhounian.php? (easylistchina.txt: 4984) +.wangjing.cn/iframe/zhounian\.php\? +# ||wangjing.cn*/upload/com/ (easylistchina.txt: 4983) +.wangjing.cn*./(.*/)?upload/com/ +# ||wanghualang.com/wp-content/gallery/thumbnail/*-ad. (easylistchina.txt: 4982) +.wanghualang.com/wp-content/gallery/thumbnail/.*-ad\. +# ||wanghualang.com/wp-content/gallery/resource/wp.png (easylistchina.txt: 4981) +.wanghualang.com/wp-content/gallery/resource/wp\.png +# ||wanghualang.com/wp-content/gallery/resource/Aliyun- (easylistchina.txt: 4980) +.wanghualang.com/wp-content/gallery/resource/Aliyun- +# ||wangdaizhijia.com/data/attachment/portal/ (easylistchina.txt: 4979) +.wangdaizhijia.com/data/attachment/portal/ +# ||wan.sogou.com/static/fragment/ (easylistchina.txt: 4977) +.wan.sogou.com/static/fragment/ +# ||wan.sogou.com/pop/ (easylistchina.txt: 4976) +.wan.sogou.com/pop/ +# ||wa.kuwo.cn/lyrics/img/kwgg/ (easylistchina.txt: 4973) +.wa.kuwo.cn/lyrics/img/kwgg/ +# ||vvvdj.com/sms/ (easylistchina.txt: 4971) +.vvvdj.com/sms/ +# ||vvshu.com/images/cp_ (easylistchina.txt: 4970) +.vvshu.com/images/cp_ +# ||vvpan.com^*/zsz (easylistchina.txt: 4969) +.vvpan.com/.*/zsz +# ||vvpan.com/templates/32666/imgs/down001.gif (easylistchina.txt: 4968) +.vvpan.com/templates/32666/imgs/down001\.gif +# ||vupload.duowan.com^ (easylistchina.txt: 4967) +.vupload.duowan.com +# ||voc.com.cn/Frame/qqms_cs.html (easylistchina.txt: 4965) +.voc.com.cn/Frame/qqms_cs\.html +# ||voc.com.cn/adsClick/ (easylistchina.txt: 4964) +.voc.com.cn/adsClick/ +# ||vnet.cn^*.html (easylistchina.txt: 4963) +.vnet.cn/.*\.html +# ||vkeke.net/public/agd (easylistchina.txt: 4962) +.vkeke.net/public/agd +# ||vjie.com/templates/lieqi/js/_banner.js (easylistchina.txt: 4961) +.vjie.com/templates/lieqi/js/_banner\.js +# ||vista.tuwan.com/s.js (easylistchina.txt: 4960) +.vista.tuwan.com/s\.js +# ||vista.tgbusdata.cn/s.js (easylistchina.txt: 4959) +.vista.tgbusdata.cn/s\.js +# ||vista.tgbus.com/s.js (easylistchina.txt: 4958) +.vista.tgbus.com/s\.js +# ||vista.tgbus.com/data.ashx^*_SINGLE_SETJSONADSLOT (easylistchina.txt: 4957) +.vista.tgbus.com/data\.ashx[^\w%.-].*_SINGLE_SETJSONADSLOT +# ||visit-japan.jp/parts/visitjapan_f35_170_170.jpg (easylistchina.txt: 4956) +.visit-japan.jp/parts/visitjapan_f35_170_170\.jpg +# ||vipcn.com/images/jk500.gif (easylistchina.txt: 4955) +.vipcn.com/images/jk500\.gif +# ||vipcn.com/images/cfdh*.gif (easylistchina.txt: 4954) +.vipcn.com/images/cfdh.*\.gif +# ||vipcn.com/hezuo/ (easylistchina.txt: 4953) +.vipcn.com/hezuo/ +# ||vip.luanren.com/data/*.swf (easylistchina.txt: 4952) +.vip.luanren.com/data/.*\.swf +# ||videowood.tv/popjavascript (easylistchina.txt: 4951) +.videowood.tv/popjavascript +# ||videowood.me/assets/js/popup.js (easylistchina.txt: 4950) +.videowood.me/assets/js/popup\.js +# ||videospeedy.com/Res/images/wuy0u.jpg (easylistchina.txt: 4949) +.videospeedy.com/Res/images/wuy0u\.jpg +# ||video.sdo.com/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4948) +.video.sdo.com/index\.php\?m=poster&c=index&a=show_poster&id= +# ||vhiphop.qiniudn.com/cloth (easylistchina.txt: 4947) +.vhiphop.qiniudn.com/cloth +# ||vgugu.com/iframes/xp- (easylistchina.txt: 4946) +.vgugu.com/iframes/xp- +# ||verypsp.com:8081/sy.jpg (easylistchina.txt: 4945) +.verypsp.com:8081/sy\.jpg +# ||veryim.net^*/1111 (easylistchina.txt: 4944) +.veryim.net/.*/1111 +# ||veryhuo.com/plus/js/ (easylistchina.txt: 4943) +.veryhuo.com/plus/js/ +# ||vdisk.cn/img/dcr2.gif (easylistchina.txt: 4942) +.vdisk.cn/img/dcr2\.gif +# ||vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49.gif (easylistchina.txt: 4941) +.vc52.cn/data/attachment/forum/201407/28/115351zb26p62jojh6oo49\.gif +# ||vas.funshion.com^ (easylistchina.txt: 4940) +.vas.funshion.com +# ||vansky.com/index_files/*.gif (easylistchina.txt: 4939) +.vansky.com/index_files/.*\.gif +# ||vansky.com/images/goldenflat2.jpg (easylistchina.txt: 4938) +.vansky.com/images/goldenflat2\.jpg +# ||vansky.com/images/banner.gif (easylistchina.txt: 4937) +.vansky.com/images/banner\.gif +# ||vanpeople.com/images_site/adb/ (easylistchina.txt: 4936) +.vanpeople.com/images_site/adb/ +# ||van698.com/api.php?mod=js&bid=369 (easylistchina.txt: 4934) +.van698.com/api\.php\?mod=js&bid=369 +# ||v8gay.com/apps/misc.php?action=advert& (easylistchina.txt: 4933) +.v8gay.com/apps/misc\.php\?action=advert& +# ||v1.cn/cms/*/js/ad_new.js (easylistchina.txt: 4932) +.v1.cn/cms/.*/js/ad_new\.js +# ||v.huanqiu.com/tres/xml/vda.xml (easylistchina.txt: 4931) +.v.huanqiu.com/tres/xml/vda\.xml +# ||v.beta.yinyuetai.com/swf/plugins_new.xml? (easylistchina.txt: 4930) +.v.beta.yinyuetai.com/swf/plugins_new\.xml\? +# ||v-56.com^ (easylistchina.txt: 4929) +.v-56.com +# ||uzzf.com/js/top_970.js (easylistchina.txt: 4928) +.uzzf.com/js/top_970\.js +# ||uzzf.com/js/down_ (easylistchina.txt: 4927) +.uzzf.com/js/down_ +# ||uzzf.com/js/all.js (easylistchina.txt: 4926) +.uzzf.com/js/all\.js +# ||uwants.com/dfp_forum.php?au=Uwants_Web_ (easylistchina.txt: 4925) +.uwants.com/dfp_forum\.php\?au=Uwants_Web_ +# ||uuu9.com/yoyo_ (easylistchina.txt: 4923) +.uuu9.com/yoyo_ +# ||uuu9.com/stat/shouye/ (easylistchina.txt: 4922) +.uuu9.com/stat/shouye/ +# ||uuu9.com/news/css/news_content_in.js (easylistchina.txt: 4921) +.uuu9.com/news/css/news_content_in\.js +# ||uuu9.com/360adtest/ (easylistchina.txt: 4919) +.uuu9.com/360adtest/ +# ||uschinapress.com/2015/0115/1421375153170.gif (easylistchina.txt: 4918) +.uschinapress.com/2015/0115/1421375153170\.gif +# ||uschinapress.com/2014/0922/1411428929105.png (easylistchina.txt: 4917) +.uschinapress.com/2014/0922/1411428929105\.png +# ||uschinapress.com/2014/0702/1404347291600.gif (easylistchina.txt: 4916) +.uschinapress.com/2014/0702/1404347291600\.gif +# ||upload.jjxw.cn^*.swf (easylistchina.txt: 4913) +.upload.jjxw.cn/.*\.swf +# ||upantool.com/playing/ (easylistchina.txt: 4911) +.upantool.com/playing/ +# ||upan.so/templates/default/images/sir.gif (easylistchina.txt: 4910) +.upan.so/templates/default/images/sir\.gif +# ||upan.cc/images/pay/ (easylistchina.txt: 4909) +.upan.cc/images/pay/ +# ||upaiyun.com/css88/*/728 (easylistchina.txt: 4908) +.upaiyun.com/css88/.*/728 +# ||upaiyun.com/css88/*/680 (easylistchina.txt: 4907) +.upaiyun.com/css88/.*/680 +# ||upaiyun.com/css88/*/250 (easylistchina.txt: 4906) +.upaiyun.com/css88/.*/250 +# ||upaiyun.com/css88/*/1008 (easylistchina.txt: 4905) +.upaiyun.com/css88/.*/1008 +# ||up.hiao.com^ (easylistchina.txt: 4903) +.up.hiao.com +# ||untitled.dwstatic.com^ (easylistchina.txt: 4902) +.untitled.dwstatic.com +# ||union.china.com.cn^ (easylistchina.txt: 4901) +.union.china.com.cn +# ||uisdc.com/wp-content/uploads/2013/08/sitestar (easylistchina.txt: 4900) +.uisdc.com/wp-content/uploads/2013/08/sitestar +# ||uho.com.tw/kid-ad/ (easylistchina.txt: 4898) +.uho.com.tw/kid-ad/ +# ||uho.com.tw/images/rosewater.jpg (easylistchina.txt: 4897) +.uho.com.tw/images/rosewater\.jpg +# ||uedfa.net/Static/imgs/affiliate/ (easylistchina.txt: 4896) +.uedfa.net/Static/imgs/affiliate/ +# ||udn.com^*/ad/ (easylistchina.txt: 4895) +.udn.com/.*/ad/ +# ||udn.com/SSI/neckFrame (easylistchina.txt: 4894) +.udn.com/SSI/neckFrame +# ||udn.com/common/iframe/ (easylistchina.txt: 4893) +.udn.com/common/iframe/ +# ||udn.com/2010MAIN/inc/t03-CMS.html (easylistchina.txt: 4892) +.udn.com/2010MAIN/inc/t03-CMS\.html +# ||udn.com.tw/upf/2014_sales/travel/cheesead.html (easylistchina.txt: 4891) +.udn.com.tw/upf/2014_sales/travel/cheesead\.html +# ||ucbug.com/templets/default/js/sharp.js (easylistchina.txt: 4890) +.ucbug.com/templets/default/js/sharp\.js +# ||ucbug.com/js/tongl.js (easylistchina.txt: 4889) +.ucbug.com/js/tongl\.js +# ||ucbug.com/js/tlys.js (easylistchina.txt: 4888) +.ucbug.com/js/tlys\.js +# ||ucbug.com/js/left.js (easylistchina.txt: 4887) +.ucbug.com/js/left\.js +# ||uc8.cc/_style/2013/js/all.js (easylistchina.txt: 4886) +.uc8.cc/_style/2013/js/all\.js +# ||u8xs.com/js/yuedu_ (easylistchina.txt: 4885) +.u8xs.com/js/yuedu_ +# ||u8xs.com/js/box_ (easylistchina.txt: 4884) +.u8xs.com/js/box_ +# ||u148.net/images/sponsor- (easylistchina.txt: 4883) +.u148.net/images/sponsor- +# ||u.riju.com/click.php (easylistchina.txt: 4882) +.u.riju.com/click\.php +# ||u.ctrip.com/showcaseadvertisementsit/ (easylistchina.txt: 4881) +.u.ctrip.com/showcaseadvertisementsit/ +# ||u.cnzol.com^ (easylistchina.txt: 4880) +.u.cnzol.com +# ||u.63kc.com^ (easylistchina.txt: 4879) +.u.63kc.com +# ||tzfdc.com/Images/09/flv/flv_index.js (easylistchina.txt: 4878) +.tzfdc.com/Images/09/flv/flv_index\.js +# ||tzfdc.com/fdcSell/ (easylistchina.txt: 4877) +.tzfdc.com/fdcSell/ +# ||tzfdc.com.cn/userfiles/flash/ (easylistchina.txt: 4876) +.tzfdc.com.cn/userfiles/flash/ +# ||tyyhhdf.com/upload/1/148781/images/2015*.gif (easylistchina.txt: 4875) +.tyyhhdf.com/upload/1/148781/images/2015.*\.gif +# ||ty121.cn/IAA/ (easylistchina.txt: 4874) +.ty121.cn/IAA/ +# ||txzqw.com/js/float.js (easylistchina.txt: 4873) +.txzqw.com/js/float\.js +# ||txtyd.com/js/*box.js (easylistchina.txt: 4872) +.txtyd.com/js/.*box\.js +# ||txtbbs.com/data/txtbbs/ (easylistchina.txt: 4871) +.txtbbs.com/data/txtbbs/ +# ||txooo.com^*/zdl.jpg (easylistchina.txt: 4870) +.txooo.com/.*/zdl\.jpg +# ||txooo.com^*/ydl.jpg (easylistchina.txt: 4869) +.txooo.com/.*/ydl\.jpg +# ||txahz.com/static/image/tp/ (easylistchina.txt: 4868) +.txahz.com/static/image/tp/ +# ||twunbbs.com/images/ (easylistchina.txt: 4867) +.twunbbs.com/images/ +# ||twfuwu.info^*.gif (easylistchina.txt: 4866) +.twfuwu.info/.*\.gif +# ||twavtv.com/js/jquery.colorbox (easylistchina.txt: 4865) +.twavtv.com/js/jquery\.colorbox +# ||tw.buy.yahoo.com/?z= (easylistchina.txt: 4863) +.tw.buy.yahoo.com/\?z= +# ||tw.beanfun.com/bfweb/NEW/commonlogin (easylistchina.txt: 4862) +.tw.beanfun.com/bfweb/NEW/commonlogin +# ||tvnmg.com/banner/ (easylistchina.txt: 4861) +.tvnmg.com/banner/ +# ||tvf4.com/1/mugua.js (easylistchina.txt: 4859) +.tvf4.com/1/mugua\.js +# ||tv6080.com/qqt/ (easylistchina.txt: 4858) +.tv6080.com/qqt/ +# ||tv6080.com/520/index.htm (easylistchina.txt: 4857) +.tv6080.com/520/index\.htm +# ||tv380.com/ovp/ovp_home/*/adi/ (easylistchina.txt: 4856) +.tv380.com/ovp/ovp_home/.*/adi/ +# ||tuwan.com/templet/lol/temp/ (easylistchina.txt: 4855) +.tuwan.com/templet/lol/temp/ +# ||tui22.com/images/g.js (easylistchina.txt: 4854) +.tui22.com/images/g\.js +# ||tui22.com/images/dibu.js (easylistchina.txt: 4853) +.tui22.com/images/dibu\.js +# ||tui18.com/source/plugin/yl_curtain/template/yl_curtain. (easylistchina.txt: 4852) +.tui18.com/source/plugin/yl_curtain/template/yl_curtain\. +# ||tuhaoylw.com/upload/1/18591636/images/*.gif (easylistchina.txt: 4851) +.tuhaoylw.com/upload/1/18591636/images/.*\.gif +# ||tudouui.com/tspecial/assets/PauseContainer.swf (easylistchina.txt: 4850) +.tudouui.com/tspecial/assets/PauseContainer\.swf +# ||tucao.tv/index.php?m=poster&c=index&a=show_poster&id= (easylistchina.txt: 4849) +.tucao.tv/index\.php\?m=poster&c=index&a=show_poster&id= +# ||tucao.cc/index.php?m=poster& (easylistchina.txt: 4848) +.tucao.cc/index\.php\?m=poster& +# ||tuan.cs090.com/gettuan.php? (easylistchina.txt: 4847) +.tuan.cs090.com/gettuan\.php\? +# ||ttrar.com/js/ (easylistchina.txt: 4846) +.ttrar.com/js/ +# ||ttkdex.com/ttkdweb/page/image/query (easylistchina.txt: 4845) +.ttkdex.com/ttkdweb/page/image/query +# ||ttcy.com/style/image/gg_ (easylistchina.txt: 4844) +.ttcy.com/style/image/gg_ +# ||tt7z.com/js/ (easylistchina.txt: 4843) +.tt7z.com/js/ +# ||tt1069.com/bbs/zgg_ (easylistchina.txt: 4842) +.tt1069.com/bbs/zgg_ +# ||tp.sgcn.com^ (easylistchina.txt: 4840) +.tp.sgcn.com +# ||totuwo.com/wp-content/uploads/20*.gif (easylistchina.txt: 4839) +.totuwo.com/wp-content/uploads/20.*\.gif +# ||totheglory.im/pic/ttg_ (easylistchina.txt: 4838) +.totheglory.im/pic/ttg_ +# ||totheglory.im/pic/ttg- (easylistchina.txt: 4837) +.totheglory.im/pic/ttg- +# ||totheglory.im/pic/fangtuo.jpg (easylistchina.txt: 4836) +.totheglory.im/pic/fangtuo\.jpg +# ||tonnn.com/promotion2/*.js (easylistchina.txt: 4834) +.tonnn.com/promotion2/.*\.js +# ||tongzhuo100.com/img/jianzhi.gif (easylistchina.txt: 4833) +.tongzhuo100.com/img/jianzhi\.gif +# ||tompda.com/tupian/2013-03-15/300.jpg (easylistchina.txt: 4831) +.tompda.com/tupian/2013-03-15/300\.jpg +# ||tompda.com/images/2014/800*.gif (easylistchina.txt: 4830) +.tompda.com/images/2014/800.*\.gif +# ||tompda.com/dev/bbsadv/ (easylistchina.txt: 4829) +.tompda.com/dev/bbsadv/ +# ||tom.com/templets/tomwq/ad/ (easylistchina.txt: 4828) +.tom.com/templets/tomwq/ad/ +# ||toastoven.net/cdn/adx/ (easylistchina.txt: 4827) +.toastoven.net/cdn/adx/ +# ||tntdown.com/News/js/C_ (easylistchina.txt: 4826) +.tntdown.com/News/js/C_ +# ||tmbbs.com/data/attachment/portal/*.swf (easylistchina.txt: 4825) +.tmbbs.com/data/attachment/portal/.*\.swf +# ||tk.504pk.com^ (easylistchina.txt: 4824) +.tk.504pk.com +# ||tjzan.com/wxpic/asianyi.gif (easylistchina.txt: 4823) +.tjzan.com/wxpic/asianyi\.gif +# ||tingvoa.com/images/top_600_80.js (easylistchina.txt: 4821) +.tingvoa.com/images/top_600_80\.js +# ||tingvoa.com/images/*img.js (easylistchina.txt: 4820) +.tingvoa.com/images/.*img\.js +# ||tingroom.com/tingroom/ad/ (easylistchina.txt: 4819) +.tingroom.com/tingroom/ad/ +# ||tingroom.com/skin/pt/images/tingroombanner.gif (easylistchina.txt: 4818) +.tingroom.com/skin/pt/images/tingroombanner\.gif +# ||tingroom.com/skin/dy/images/enread.jpg (easylistchina.txt: 4817) +.tingroom.com/skin/dy/images/enread\.jpg +# ||tingroom.com/skin/dy/images/2400200 (easylistchina.txt: 4816) +.tingroom.com/skin/dy/images/2400200 +# ||tingroom.com/skin/*/js/ad_ (easylistchina.txt: 4815) +.tingroom.com/skin/.*/js/ad_ +# ||tingroom.com/images/z923.js (easylistchina.txt: 4814) +.tingroom.com/images/z923\.js +# ||tingroom.com/images/qsbdc.gif (easylistchina.txt: 4813) +.tingroom.com/images/qsbdc\.gif +# ||tingroom.com/images/hy*.js (easylistchina.txt: 4812) +.tingroom.com/images/hy.*\.js +# ||tingroom.com/file/A*.js (easylistchina.txt: 4811) +.tingroom.com/file/A.*\.js +# ||tingchina.com/js/dp468 (easylistchina.txt: 4810) +.tingchina.com/js/dp468 +# ||tingchina.com/js/allad.js (easylistchina.txt: 4809) +.tingchina.com/js/allad\.js +# ||tingchina.com/js/990 (easylistchina.txt: 4808) +.tingchina.com/js/990 +# ||tingchina.com/js/760 (easylistchina.txt: 4807) +.tingchina.com/js/760 +# ||tingchina.com/js/*220- (easylistchina.txt: 4806) +.tingchina.com/js/.*220- +# ||timedg.com/hfhtml/baiduad.html? (easylistchina.txt: 4805) +.timedg.com/hfhtml/baiduad\.html\? +# ||tigtag.com/ttad/ (easylistchina.txt: 4804) +.tigtag.com/ttad/ +# ||tigtag.com/styles/phpcms/js/tigtag/ads.js (easylistchina.txt: 4803) +.tigtag.com/styles/phpcms/js/tigtag/ads\.js +# ||tigtag.com/r/Adv/ (easylistchina.txt: 4802) +.tigtag.com/r/Adv/ +# ||tigtag.com/images/pic1/ (easylistchina.txt: 4801) +.tigtag.com/images/pic1/ +# ||tigerbrokers.com/activity/quotation/cnbeta/ (easylistchina.txt: 4800) +.tigerbrokers.com/activity/quotation/cnbeta/ +# ||tiexue.net/tsetforiph/ (easylistchina.txt: 4799) +.tiexue.net/tsetforiph/ +# ||tiexue.net/test*.aspx (easylistchina.txt: 4798) +.tiexue.net/test.*\.aspx +# ||tiexue.net/post2gg/ (easylistchina.txt: 4797) +.tiexue.net/post2gg/ +# ||tiexue.net/domain-policy/ (easylistchina.txt: 4796) +.tiexue.net/domain-policy/ +# ||tietuku.com/0bb9bfe57636dc55.jpg (easylistchina.txt: 4792) +.tietuku.com/0bb9bfe57636dc55\.jpg +# ||tieba.baidu.com/f/urlcheck? (easylistchina.txt: 4791) +.tieba.baidu.com/f/urlcheck\? +# ||tibet.news.cn/zhuye/images/wangqun (easylistchina.txt: 4790) +.tibet.news.cn/zhuye/images/wangqun +# ||tianyaui.com/qy/adsame/ads.js (easylistchina.txt: 4789) +.tianyaui.com/qy/adsame/ads\.js +# ||tianyaui.com/gamify/broadcast/js/ (easylistchina.txt: 4788) +.tianyaui.com/gamify/broadcast/js/ +# ||tianya.cn/images/ad950x90.jpg (easylistchina.txt: 4787) +.tianya.cn/images/ad950x90\.jpg +# ||tiantiandy.com/ad-js/ (easylistchina.txt: 4786) +.tiantiandy.com/ad-js/ +# ||tiantian.tv/js/banner.js (easylistchina.txt: 4784) +.tiantian.tv/js/banner\.js +# ||tiantian.tv/api/autosda.php (easylistchina.txt: 4783) +.tiantian.tv/api/autosda\.php +# ||tiansin.com/wp-adsense/ (easylistchina.txt: 4782) +.tiansin.com/wp-adsense/ +# ||tianshui.com.cn/yb.html (easylistchina.txt: 4781) +.tianshui.com.cn/yb\.html +# ||tianshui.com.cn/sd.swf (easylistchina.txt: 4780) +.tianshui.com.cn/sd\.swf +# ||tianshui.com.cn/Scripts/AC_ (easylistchina.txt: 4779) +.tianshui.com.cn/Scripts/AC_ +# ||tianshui.com.cn/newimages/xhglj.swf (easylistchina.txt: 4778) +.tianshui.com.cn/newimages/xhglj\.swf +# ||tianshui.com.cn/newbg.jpg (easylistchina.txt: 4777) +.tianshui.com.cn/newbg\.jpg +# ||tianshi2.com/images/ (easylistchina.txt: 4776) +.tianshi2.com/images/ +# ||tianqi.com/templates/huoche/js/hcgg.js (easylistchina.txt: 4775) +.tianqi.com/templates/huoche/js/hcgg\.js +# ||tianqi.com/static/js/gg (easylistchina.txt: 4774) +.tianqi.com/static/js/gg +# ||tianqi.com/js/gg.js (easylistchina.txt: 4773) +.tianqi.com/js/gg\.js +# ||tianmu.com/js/qq.js (easylistchina.txt: 4772) +.tianmu.com/js/qq\.js +# ||tianmu.com/abbsd/ (easylistchina.txt: 4771) +.tianmu.com/abbsd/ +# ||tianjinwe.com/together/szbz/ (easylistchina.txt: 4770) +.tianjinwe.com/together/szbz/ +# ||tianjinwe.com/images/qssx/ (easylistchina.txt: 4769) +.tianjinwe.com/images/qssx/ +# ||tianjimedia.com/s?z= (easylistchina.txt: 4768) +.tianjimedia.com/s\?z= +# ||thisav.com/windowfiles/dhtmlwindow (easylistchina.txt: 4767) +.thisav.com/windowfiles/dhtmlwindow +# ||thisav.com/js/*float (easylistchina.txt: 4766) +.thisav.com/js/.*float +# ||thethirdmedia.com/a1/*960x (easylistchina.txt: 4765) +.thethirdmedia.com/a1/.*960x +# ||tgbus.com/sf/taobao/ (easylistchina.txt: 4764) +.tgbus.com/sf/taobao/ +# ||tgbus.com/search/article_endcontent_google.htm (easylistchina.txt: 4763) +.tgbus.com/search/article_endcontent_google\.htm +# ||tg.delnapb.com^ (easylistchina.txt: 4762) +.tg.delnapb.com +# ||tfg2.com/images/upfile/AD/ (easylistchina.txt: 4761) +.tfg2.com/images/upfile/AD/ +# ||tf.360.cn^ (easylistchina.txt: 4760) +.tf.360.cn +# ||techweb.com.cn^*aliyun (easylistchina.txt: 4759) +.techweb.com.cn/.*aliyun +# ||tcmap.com.cn/js/b_ (easylistchina.txt: 4758) +.tcmap.com.cn/js/b_ +# ||tc.cn/news/images/right.jpg (easylistchina.txt: 4757) +.tc.cn/news/images/right\.jpg +# ||tc.cn/news/images/h.jpg (easylistchina.txt: 4756) +.tc.cn/news/images/h\.jpg +# ||tc.cn/g/upload/ (easylistchina.txt: 4755) +.tc.cn/g/upload/ +# ||tc.cn/g/dl.ashx? (easylistchina.txt: 4754) +.tc.cn/g/dl\.ashx\? +# ||tc.cn/ad123/ (easylistchina.txt: 4753) +.tc.cn/ad123/ +# ||tbcdn.cn/mm/tanxssp-custom/sina_ (easylistchina.txt: 4752) +.tbcdn.cn/mm/tanxssp-custom/sina_ +# ||taoyoudu.com/img/top.jpg (easylistchina.txt: 4750) +.taoyoudu.com/img/top\.jpg +# ||taohuazu.tw/tool/ (easylistchina.txt: 4749) +.taohuazu.tw/tool/ +# ||taohua.me/tool/taohuazu.js (easylistchina.txt: 4748) +.taohua.me/tool/taohuazu\.js +# ||taoguba.com.cn/js/tgbduilian (easylistchina.txt: 4747) +.taoguba.com.cn/js/tgbduilian +# ||taoguba.com.cn/js/hezuo/ (easylistchina.txt: 4746) +.taoguba.com.cn/js/hezuo/ +# ||taoguba.com.cn/img/2015/08/26/oh5555jfx48p.jpg (easylistchina.txt: 4745) +.taoguba.com.cn/img/2015/08/26/oh5555jfx48p\.jpg +# ||taodake.com/taodake_img/Images/union/ (easylistchina.txt: 4744) +.taodake.com/taodake_img/Images/union/ +# ||taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450.jpg_670x670.jpg (easylistchina.txt: 4741) +.taobaocdn.com/tps/i1/TB14t03FVXXXXapaXXX8EsMMFXX-1680-450\.jpg_670x670\.jpg +# ||talkforex.com/data/attachment/portal/ (easylistchina.txt: 4739) +.talkforex.com/data/attachment/portal/ +# ||taizhou.com.cn^*/3890.files/xchad.jpg (easylistchina.txt: 4738) +.taizhou.com.cn/.*/3890\.files/xchad\.jpg +# ||taizhou.com.cn/52.files/c1_20150423.swf (easylistchina.txt: 4737) +.taizhou.com.cn/52\.files/c1_20150423\.swf +# ||taizhou.com.cn/52.files/a*20 (easylistchina.txt: 4736) +.taizhou.com.cn/52\.files/a.*20 +# ||taiwandaily.net/uploadimages% (easylistchina.txt: 4735) +.taiwandaily.net/uploadimages% +# ||taiwan.cn/images/tw_ad_ (easylistchina.txt: 4734) +.taiwan.cn/images/tw_ad_ +# ||taihe.net/js/ad (easylistchina.txt: 4733) +.taihe.net/js/ad +# ||taihainet.com/biz/ (easylistchina.txt: 4732) +.taihainet.com/biz/ +# ||t259.net/js/click_showclose.js (easylistchina.txt: 4731) +.t259.net/js/click_showclose\.js +# ||t259.net/images/*.gif (easylistchina.txt: 4730) +.t259.net/images/.*\.gif +# ||t.58xs.com/hot/ (easylistchina.txt: 4729) +.t.58xs.com/hot/ +# ||sztaofang.com/out/Out_BBs.asp (easylistchina.txt: 4728) +.sztaofang.com/out/Out_BBs\.asp +# ||szhk.com/include/taobao (easylistchina.txt: 4725) +.szhk.com/include/taobao +# ||szhk.com/iframe/ (easylistchina.txt: 4724) +.szhk.com/iframe/ +# ||szhk.com/ads/ (easylistchina.txt: 4723) +.szhk.com/ads/ +# ||szhk.com/565.jpg (easylistchina.txt: 4722) +.szhk.com/565\.jpg +# ||sz1001.net^*/soft_*.js (easylistchina.txt: 4721) +.sz1001.net/.*/soft_.*\.js +# ||sz1001.net/ab1/index*.js (easylistchina.txt: 4720) +.sz1001.net/ab1/index.*\.js +# ||sz.zj.cn/2013-dh.asp (easylistchina.txt: 4718) +.sz.zj.cn/2013-dh\.asp +# ||synacast.com^ (easylistchina.txt: 4717) +.synacast.com +# ||sydneytoday.com/sponsor/ (easylistchina.txt: 4716) +.sydneytoday.com/sponsor/ +# ||syd.com.cn/pic_index/lalian (easylistchina.txt: 4715) +.syd.com.cn/pic_index/lalian +# ||syd.com.cn/pic_index/duilian (easylistchina.txt: 4714) +.syd.com.cn/pic_index/duilian +# ||sy.ln.cn/08gg/ (easylistchina.txt: 4713) +.sy.ln.cn/08gg/ +# ||sxrom.com/images/zz.jpg (easylistchina.txt: 4712) +.sxrom.com/images/zz\.jpg +# ||sxrom.com/images/download/top (easylistchina.txt: 4711) +.sxrom.com/images/download/top +# ||sxrom.com/images/9.js (easylistchina.txt: 4710) +.sxrom.com/images/9\.js +# ||sxrom.com/images/79.gif (easylistchina.txt: 4709) +.sxrom.com/images/79\.gif +# ||sxrb.com/upload/js/xww_ (easylistchina.txt: 4708) +.sxrb.com/upload/js/xww_ +# ||sx566.com^*/zsz (easylistchina.txt: 4707) +.sx566.com/.*/zsz +# ||sx566.com/ads/ (easylistchina.txt: 4706) +.sx566.com/ads/ +# ||supfree.net/images/otop.js (easylistchina.txt: 4705) +.supfree.net/images/otop\.js +# ||super.kdnet.net^ (easylistchina.txt: 4704) +.super.kdnet.net +# ||super.cat898.com^ (easylistchina.txt: 4703) +.super.cat898.com +# ||suimeng.com/js/html/yuedu (easylistchina.txt: 4702) +.suimeng.com/js/html/yuedu +# ||sufile.com/jsa/ (easylistchina.txt: 4701) +.sufile.com/jsa/ +# ||sudupan.com^*.gif (easylistchina.txt: 4700) +.sudupan.com/.*\.gif +# ||sudupan.com/380.jpg (easylistchina.txt: 4699) +.sudupan.com/380\.jpg +# ||sucaijiayuan.com/uploads/ad/ (easylistchina.txt: 4698) +.sucaijiayuan.com/uploads/ad/ +# ||sub.powerapple.com^ (easylistchina.txt: 4697) +.sub.powerapple.com +# ||su.bdimg.com/static/dspui/js/ (easylistchina.txt: 4696) +.su.bdimg.com/static/dspui/js/ +# ||strtv.cn/publicimg/sitelink/ (easylistchina.txt: 4695) +.strtv.cn/publicimg/sitelink/ +# ||storm.mg/ad? (easylistchina.txt: 4693) +.storm.mg/ad\? +# ||storetorrent.org/static/js/best (easylistchina.txt: 4692) +.storetorrent.org/static/js/best +# ||storetorrent.org/static/best/795X60.gif (easylistchina.txt: 4691) +.storetorrent.org/static/best/795X60\.gif +# ||stockstar.com/*DUILIAN&t= (easylistchina.txt: 4690) +.stockstar.com/.*DUILIAN&t= +# ||sto.cn*/temp/adv.jpg (easylistchina.txt: 4689) +.sto.cn*./(.*/)?temp/adv\.jpg +# ||stnn.cc/images/xy/yy.swf (easylistchina.txt: 4688) +.stnn.cc/images/xy/yy\.swf +# ||stnn.cc/images/xy/y0*.jpg (easylistchina.txt: 4687) +.stnn.cc/images/xy/y0.*\.jpg +# ||stnn.cc/images/xy/640_100/ (easylistchina.txt: 4686) +.stnn.cc/images/xy/640_100/ +# ||stnn.cc/images/xy/*80px (easylistchina.txt: 4683) +.stnn.cc/images/xy/.*80px +# ||stheadline.com^*/right_promo.js (easylistchina.txt: 4682) +.stheadline.com/.*/right_promo\.js +# ||steamcn.com/img/lancai_ (easylistchina.txt: 4680) +.steamcn.com/img/lancai_ +# ||steachs.com/wp-content/uploads/2015/12/nippon.gif (easylistchina.txt: 4679) +.steachs.com/wp-content/uploads/2015/12/nippon\.gif +# ||stcn.com/common/flash/aigu.swf (easylistchina.txt: 4678) +.stcn.com/common/flash/aigu\.swf +# ||stats.chinaz.com/tool_img/ (easylistchina.txt: 4677) +.stats.chinaz.com/tool_img/ +# ||stats.chinaz.com/tool/ (easylistchina.txt: 4676) +.stats.chinaz.com/tool/ +# ||static.zongheng.com^*/index_r_b.js (easylistchina.txt: 4675) +.static.zongheng.com/.*/index_r_b\.js +# ||static.zongheng.com/upload/zhds/ (easylistchina.txt: 4674) +.static.zongheng.com/upload/zhds/ +# ||static.zongheng.com/upload/hzds/ (easylistchina.txt: 4673) +.static.zongheng.com/upload/hzds/ +# ||static.zongheng.com/upload/ad/ (easylistchina.txt: 4672) +.static.zongheng.com/upload/ad/ +# ||static.wenxiu.com/js/top.js (easylistchina.txt: 4671) +.static.wenxiu.com/js/top\.js +# ||static.tianyaui.com^*/stat_20080313.js (easylistchina.txt: 4670) +.static.tianyaui.com/.*/stat_20080313\.js +# ||static.imanke.com/imanke/pigbbs.js (easylistchina.txt: 4669) +.static.imanke.com/imanke/pigbbs\.js +# ||static.imanke.com/imanke/m/ (easylistchina.txt: 4668) +.static.imanke.com/imanke/m/ +# ||static.fzdm.com/top (easylistchina.txt: 4667) +.static.fzdm.com/top +# ||static.fzdm.com/ispop.js (easylistchina.txt: 4666) +.static.fzdm.com/ispop\.js +# ||static.fzdm.com/foot (easylistchina.txt: 4665) +.static.fzdm.com/foot +# ||static.doyouhike.net/partner/ (easylistchina.txt: 4664) +.static.doyouhike.net/partner/ +# ||static.d.lecai.com/js/*m.js (easylistchina.txt: 4663) +.static.d.lecai.com/js/.*m\.js +# ||static.colayun.com/images/vip.png (easylistchina.txt: 4662) +.static.colayun.com/images/vip\.png +# ||static.coladrive.com/images/vip.png (easylistchina.txt: 4661) +.static.coladrive.com/images/vip\.png +# ||static.aizhan.com/jsa/ (easylistchina.txt: 4660) +.static.aizhan.com/jsa/ +# ||starnnews.com/banner/ (easylistchina.txt: 4659) +.starnnews.com/banner/ +# ||starbaby.cn/bookconnector/ (easylistchina.txt: 4658) +.starbaby.cn/bookconnector/ +# ||starbaby.cn/adconnector/ (easylistchina.txt: 4657) +.starbaby.cn/adconnector/ +# ||ssnn.net^*-200-250.jpg (easylistchina.txt: 4656) +.ssnn.net/.*-200-250\.jpg +# ||srzc.com^*/zwfjs/ (easylistchina.txt: 4655) +.srzc.com/.*/zwfjs/ +# ||srzc.com/templets/srxw/img/000ad.jpg (easylistchina.txt: 4654) +.srzc.com/templets/srxw/img/000ad\.jpg +# ||srzc.com/js/gelao/ (easylistchina.txt: 4653) +.srzc.com/js/gelao/ +# ||srzc.com/js/Adsjs/ (easylistchina.txt: 4652) +.srzc.com/js/Adsjs/ +# ||srzc.com/images/*.swf (easylistchina.txt: 4651) +.srzc.com/images/.*\.swf +# ||sportsv.net/dist/ads/ (easylistchina.txt: 4649) +.sportsv.net/dist/ads/ +# ||spn.com.cn/media/jackmm.js (easylistchina.txt: 4648) +.spn.com.cn/media/jackmm\.js +# ||spn.com.cn/admin_new/imgs/b2.jpg (easylistchina.txt: 4647) +.spn.com.cn/admin_new/imgs/b2\.jpg +# ||spbonow.com/js/float.js (easylistchina.txt: 4645) +.spbonow.com/js/float\.js +# ||spbonow.com/images/fyt.gif (easylistchina.txt: 4644) +.spbonow.com/images/fyt\.gif +# ||sozi.cn/templets/sozi/js/js.js (easylistchina.txt: 4643) +.sozi.cn/templets/sozi/js/js\.js +# ||soxia.cc/img/baoyue*.gif (easylistchina.txt: 4642) +.soxia.cc/img/baoyue.*\.gif +# ||southmoney.com/page/top (easylistchina.txt: 4641) +.southmoney.com/page/top +# ||southmoney.com/page/inc/ (easylistchina.txt: 4640) +.southmoney.com/page/inc/ +# ||source.qunar.com/site/images/wns/ (easylistchina.txt: 4639) +.source.qunar.com/site/images/wns/ +# ||soso.com/baike/js/ad_ (easylistchina.txt: 4638) +.soso.com/baike/js/ad_ +# ||sootoo.com/son_media/msg/2010/11/16/30324.jpg (easylistchina.txt: 4637) +.sootoo.com/son_media/msg/2010/11/16/30324\.jpg +# ||sooopu.com/js/contentad330.js (easylistchina.txt: 4636) +.sooopu.com/js/contentad330\.js +# ||sooopu.com/js/*950.js (easylistchina.txt: 4635) +.sooopu.com/js/.*950\.js +# ||sooopu.com/images/web/cg328/cg.js (easylistchina.txt: 4634) +.sooopu.com/images/web/cg328/cg\.js +# ||sohu.com/interaction/get/getListByVidForVrs.do? (easylistchina.txt: 4632) +.sohu.com/interaction/get/getListByVidForVrs\.do\? +# ||sohu.com/adgtr/ (easylistchina.txt: 4631) +.sohu.com/adgtr/ +# ||sohu.com.cn/ppp/bms/bms.popup. (easylistchina.txt: 4630) +.sohu.com.cn/ppp/bms/bms\.popup\. +# ||sogou.com/skins/images/skinlist_ad. (easylistchina.txt: 4629) +.sogou.com/skins/images/skinlist_ad\. +# ||sogou.com/images/galaxy.jpg (easylistchina.txt: 4628) +.sogou.com/images/galaxy\.jpg +# ||softhy.net/hp/ (easylistchina.txt: 4627) +.softhy.net/hp/ +# ||soft711.com/2013/ (easylistchina.txt: 4626) +.soft711.com/2013/ +# ||soft.mumayi.net/js/ (easylistchina.txt: 4625) +.soft.mumayi.net/js/ +# ||soft.mumayi.net/images/download.gif (easylistchina.txt: 4624) +.soft.mumayi.net/images/download\.gif +# ||soaspx.com/images/iiszj.gif (easylistchina.txt: 4623) +.soaspx.com/images/iiszj\.gif +# ||soaspx.com/images/hws.gif (easylistchina.txt: 4622) +.soaspx.com/images/hws\.gif +# ||so100.cn/images/newshead.htm (easylistchina.txt: 4621) +.so100.cn/images/newshead\.htm +# ||so100.cn/images/a*.js (easylistchina.txt: 4620) +.so100.cn/images/a.*\.js +# ||so.open.163.com/v/list.htm?pid= (easylistchina.txt: 4619) +.so.open.163.com/v/list\.htm\?pid= +# ||so.6949.com^ (easylistchina.txt: 4618) +.so.6949.com +# ||snybw.com/images/*-banner. (easylistchina.txt: 4617) +.snybw.com/images/.*-banner\. +# ||smzy.com^*970.js (easylistchina.txt: 4616) +.smzy.com/.*970\.js +# ||smzy.com^*/webtg (easylistchina.txt: 4615) +.smzy.com/.*/webtg +# ||slooti.com/upload/30/38/1446711674.gif (easylistchina.txt: 4614) +.slooti.com/upload/30/38/1446711674\.gif +# ||slit.cn/slgg/ (easylistchina.txt: 4613) +.slit.cn/slgg/ +# ||slit.cn/skin/slitsk/js/dlad.js (easylistchina.txt: 4612) +.slit.cn/skin/slitsk/js/dlad\.js +# ||slit.cn/d/js/images/thea (easylistchina.txt: 4611) +.slit.cn/d/js/images/thea +# ||skinme.cc/assets/images/banner_ (easylistchina.txt: 4610) +.skinme.cc/assets/images/banner_ +# ||skinme.cc*/assets/images/*0.swf (easylistchina.txt: 4609) +.skinme.cc*./(.*/)?assets/images/.*0\.swf +# ||skdh2.com/tp/ (easylistchina.txt: 4608) +.skdh2.com/tp/ +# ||skdh1.com/tp/ (easylistchina.txt: 4607) +.skdh1.com/tp/ +# ||skdh.net^*980 (easylistchina.txt: 4606) +.skdh.net/.*980 +# ||skdh.net/zuo.js (easylistchina.txt: 4605) +.skdh.net/zuo\.js +# ||sjzdaily.com.cn/sjznewsad/ (easylistchina.txt: 4603) +.sjzdaily.com.cn/sjznewsad/ +# ||sjzbus.com.cn/advimg/ (easylistchina.txt: 4602) +.sjzbus.com.cn/advimg/ +# ||sjyws.sjyws.com^*.gif (easylistchina.txt: 4601) +.sjyws.sjyws.com/.*\.gif +# ||siyu88.cn/xl/ (easylistchina.txt: 4599) +.siyu88.cn/xl/ +# ||sisiww.com/yezicheng_ad/ (easylistchina.txt: 4598) +.sisiww.com/yezicheng_ad/ +# ||sisiww.com/6786526.gif (easylistchina.txt: 4597) +.sisiww.com/6786526\.gif +# ||sinolub.com/data/js/*.js (easylistchina.txt: 4596) +.sinolub.com/data/js/.*\.js +# ||sinajs.cn/t6/home/js/pl/guide/bigday/ (easylistchina.txt: 4595) +.sinajs.cn/t6/home/js/pl/guide/bigday/ +# ||sinajs.cn/t6/home/js/pl/guide/adforfqy/ (easylistchina.txt: 4594) +.sinajs.cn/t6/home/js/pl/guide/adforfqy/ +# ||sinajs.cn/t4/apps/publicity/static/wbad.js (easylistchina.txt: 4593) +.sinajs.cn/t4/apps/publicity/static/wbad\.js +# ||sinajs.cn/blog7style/images/activity/app_tuiguang/ (easylistchina.txt: 4592) +.sinajs.cn/blog7style/images/activity/app_tuiguang/ +# ||sinaimg.cn/unipro/ (easylistchina.txt: 4588) +.sinaimg.cn/unipro/ +# ||sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82.gif (easylistchina.txt: 4587) +.sinaimg.cn/mw690/e75a115bgw1eon8cd6uvlg208c04kk82\.gif +# ||sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj.jpg (easylistchina.txt: 4586) +.sinaimg.cn/mw690/a6a976a2tw1e2naxcbjyoj\.jpg +# ||sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn.jpg (easylistchina.txt: 4585) +.sinaimg.cn/mw690/a6a976a2jw1eptzya6d9cj20go01odgn\.jpg +# ||sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh.jpg (easylistchina.txt: 4584) +.sinaimg.cn/mw690/a6a976a2gw1eq3au2wh1wj20h802ijrh\.jpg +# ||sinaimg.cn/mw690/a6a976a2*j207e02a (easylistchina.txt: 4583) +.sinaimg.cn/mw690/a6a976a2.*j207e02a +# ||sinaimg.cn/mw690/a1916e89gw1dye4d74zmij.jpg (easylistchina.txt: 4582) +.sinaimg.cn/mw690/a1916e89gw1dye4d74zmij\.jpg +# ||sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj.jpg (easylistchina.txt: 4581) +.sinaimg.cn/mw690/a1916e89gw1dye4d6qvyaj\.jpg +# ||sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi.jpg (easylistchina.txt: 4580) +.sinaimg.cn/mw690/7d1c8e96gw1ehjblxlj39j206y06ydgi\.jpg +# ||sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu.jpg (easylistchina.txt: 4579) +.sinaimg.cn/mw1024/7c06ba81gw1esqt86wir9j20h80460tu\.jpg +# ||sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z.jpg (easylistchina.txt: 4578) +.sinaimg.cn/mw1024/6283e751gw1ev7zda6i7oj20i202st8z\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81.gif (easylistchina.txt: 4576) +.sinaimg.cn/large/ed5e6a1djw1eqp5sh98uvg208c06ye81\.gif +# ||sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3.jpg (easylistchina.txt: 4575) +.sinaimg.cn/large/ed5e6a1djw1eqklc2eicfj20r802idh3\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze.jpg (easylistchina.txt: 4574) +.sinaimg.cn/large/ed5e6a1djw1eqk2p0g0q5j20hs03m3ze\.jpg +# ||sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf.jpg (easylistchina.txt: 4573) +.sinaimg.cn/large/ed5e6a1djw1eqk0bw8xjsj208c03m0tf\.jpg +# ||sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt.gif (easylistchina.txt: 4571) +.sinaimg.cn/large/dd602f03jw1ex34eqejscg20u0028glt\.gif +# ||sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y.jpg (easylistchina.txt: 4570) +.sinaimg.cn/large/d3a48243tw1e9ku3qboj1j207e02aq2y\.jpg +# ||sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r.gif (easylistchina.txt: 4569) +.sinaimg.cn/large/68299a77jw1eu2f2opaakg205k05k74r\.gif +# ||sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5.jpg (easylistchina.txt: 4568) +.sinaimg.cn/large/005yyi5Jjw1eo0a59ak40j30oq02imy5\.jpg +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts.jpg (easylistchina.txt: 4567) +.sinaimg.cn/large/005x4Y8Zgw1eqq4k2d5hsj306y06y0ts\.jpg +# ||sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta.jpg (easylistchina.txt: 4566) +.sinaimg.cn/large/005x4Y8Zgw1eqq4gg0a1oj306y06y0ta\.jpg +# ||sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy.gif (easylistchina.txt: 4565) +.sinaimg.cn/large/005EuLLtgw1eji5kzbgvlg30r801ogpy\.gif +# ||sinaimg.cn/jslib/kuozhanad.js (easylistchina.txt: 4563) +.sinaimg.cn/jslib/kuozhanad\.js +# ||sinaimg.cn/finance/zwy/sidead_ (easylistchina.txt: 4562) +.sinaimg.cn/finance/zwy/sidead_ +# ||sinaimg.cn/cj/dfz_ad/ (easylistchina.txt: 4561) +.sinaimg.cn/cj/dfz_ad/ +# ||sina.com/rm/ (easylistchina.txt: 4560) +.sina.com/rm/ +# ||sina.com/assets/js/dart/ (easylistchina.txt: 4559) +.sina.com/assets/js/dart/ +# ||sina.com/ads/ (easylistchina.txt: 4558) +.sina.com/ads/ +# ||sina.com.tw/game_data/adsbro_ (easylistchina.txt: 4556) +.sina.com.tw/game_data/adsbro_ +# ||sina.com.cn/tgy/pop_js/ad.js (easylistchina.txt: 4555) +.sina.com.cn/tgy/pop_js/ad\.js +# ||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif (easylistchina.txt: 4554) +.sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90\.gif +# ||sina.com.cn/NewIndexAdStart.js (easylistchina.txt: 4553) +.sina.com.cn/NewIndexAdStart\.js +# ||sina.com.cn/litong/ (easylistchina.txt: 4552) +.sina.com.cn/litong/ +# ||sina.com.cn/js/87/20140101/hongbao/ (easylistchina.txt: 4551) +.sina.com.cn/js/87/20140101/hongbao/ +# ||sina.com.cn/js/*/bgads.js (easylistchina.txt: 4550) +.sina.com.cn/js/.*/bgads\.js +# ||sina.com.cn/js/*/AdvertisingByNewIndex_ (easylistchina.txt: 4549) +.sina.com.cn/js/.*/AdvertisingByNewIndex_ +# ||sina.com.cn/131/20150515/266.js (easylistchina.txt: 4548) +.sina.com.cn/131/20150515/266\.js +# ||sina.cn/adfront/deliver.php? (easylistchina.txt: 4547) +.sina.cn/adfront/deliver\.php\? +# ||simplecd.me/static/js/adcpm.js (easylistchina.txt: 4546) +.simplecd.me/static/js/adcpm\.js +# ||shxd.net/img/myad.gif (easylistchina.txt: 4545) +.shxd.net/img/myad\.gif +# ||shuyeer.com/views/default/mnstyle/hot/gg.js (easylistchina.txt: 4544) +.shuyeer.com/views/default/mnstyle/hot/gg\.js +# ||shuyeer.com/views/default/images/close.gif (easylistchina.txt: 4543) +.shuyeer.com/views/default/images/close\.gif +# ||shuyeer.com/dlr.html (easylistchina.txt: 4542) +.shuyeer.com/dlr\.html +# ||shuqi6.com/static/jquery/gg.js (easylistchina.txt: 4541) +.shuqi6.com/static/jquery/gg\.js +# ||shumimi.com/js/a3.js (easylistchina.txt: 4540) +.shumimi.com/js/a3\.js +# ||shumimi.com/js/a2.js (easylistchina.txt: 4539) +.shumimi.com/js/a2\.js +# ||shumimi.com/js/a1.js (easylistchina.txt: 4538) +.shumimi.com/js/a1\.js +# ||shumimi.com/js/a0 (easylistchina.txt: 4537) +.shumimi.com/js/a0 +# ||shulink.com/js/pagetop5.js (easylistchina.txt: 4536) +.shulink.com/js/pagetop5\.js +# ||shulihua.net/js/yegonggao.js (easylistchina.txt: 4535) +.shulihua.net/js/yegonggao\.js +# ||shulihua.net/js/topcen.js (easylistchina.txt: 4534) +.shulihua.net/js/topcen\.js +# ||shulihua.net/js/gzlishigoogle.js (easylistchina.txt: 4533) +.shulihua.net/js/gzlishigoogle\.js +# ||shulihua.net/js/gzlishi468google.js (easylistchina.txt: 4532) +.shulihua.net/js/gzlishi468google\.js +# ||shuhe.cc/ssi/ (easylistchina.txt: 4531) +.shuhe.cc/ssi/ +# ||shuajizhijia.com/uploads/allimg/141121/1_1702554911.jpg (easylistchina.txt: 4530) +.shuajizhijia.com/uploads/allimg/141121/1_1702554911\.jpg +# ||shuajizhijia.com/static/js/rightdown.js (easylistchina.txt: 4529) +.shuajizhijia.com/static/js/rightdown\.js +# ||shuaijiao.com/statics/js/adv0.js (easylistchina.txt: 4528) +.shuaijiao.com/statics/js/adv0\.js +# ||shows.21cn.com^ (easylistchina.txt: 4527) +.shows.21cn.com +# ||showbean.net:8081/cpma.js (easylistchina.txt: 4526) +.showbean.net:8081/cpma\.js +# ||shouyoutv.com/assets/api/web/v4/js/global_head.js (easylistchina.txt: 4525) +.shouyoutv.com/assets/api/web/v4/js/global_head\.js +# ||shouyou.com/2013/new/shouyou-duilian.js (easylistchina.txt: 4524) +.shouyou.com/2013/new/shouyou-duilian\.js +# ||shoudian.org/diantong/sunwayman*.gif (easylistchina.txt: 4523) +.shoudian.org/diantong/sunwayman.*\.gif +# ||shmet.com/js/shmetAd.js (easylistchina.txt: 4522) +.shmet.com/js/shmetAd\.js +# ||shmet.com/images/zz250x80.jpg (easylistchina.txt: 4521) +.shmet.com/images/zz250x80\.jpg +# ||shmet.com/images/20120213ad/ (easylistchina.txt: 4520) +.shmet.com/images/20120213ad/ +# ||shmet.com/images/150x150newsshmet.jpg (easylistchina.txt: 4519) +.shmet.com/images/150x150newsshmet\.jpg +# ||shmet.com/images/1000x90newshmet.swf (easylistchina.txt: 4518) +.shmet.com/images/1000x90newshmet\.swf +# ||shm.com.cn/js/load.swf (easylistchina.txt: 4517) +.shm.com.cn/js/load\.swf +# ||shm.com.cn/css/m.js (easylistchina.txt: 4516) +.shm.com.cn/css/m\.js +# ||shm.com.cn/content/con*.js (easylistchina.txt: 4515) +.shm.com.cn/content/con.*\.js +# ||shfq.com/data/attachment/portal/ (easylistchina.txt: 4514) +.shfq.com/data/attachment/portal/ +# ||shenmeshi.com/googlejs/ziding1.js (easylistchina.txt: 4513) +.shenmeshi.com/googlejs/ziding1\.js +# ||shenmaxiaoshuo.com/js/mu.js (easylistchina.txt: 4512) +.shenmaxiaoshuo.com/js/mu\.js +# ||shenmaxiaoshuo.com/js/lu.js (easylistchina.txt: 4511) +.shenmaxiaoshuo.com/js/lu\.js +# ||shenmaxiaoshuo.com/js/hf (easylistchina.txt: 4510) +.shenmaxiaoshuo.com/js/hf +# ||shenleyuni.com^ (easylistchina.txt: 4509) +.shenleyuni.com +# ||shejizhan.org/images/myssh (easylistchina.txt: 4508) +.shejizhan.org/images/myssh +# ||shehuitu.com/jsjs/ (easylistchina.txt: 4507) +.shehuitu.com/jsjs/ +# ||shbear.com^*/ad/ (easylistchina.txt: 4506) +.shbear.com/.*/ad/ +# ||share.gzdsw.com^ (easylistchina.txt: 4505) +.share.gzdsw.com +# ||shaoxing.com.cn^*gg. (easylistchina.txt: 4503) +.shaoxing.com.cn/.*gg\. +# ||shaoxing.com.cn/6201.files/*.swf (easylistchina.txt: 4502) +.shaoxing.com.cn/6201\.files/.*\.swf +# ||shanhe.cc/Scripts/main-pf.js (easylistchina.txt: 4501) +.shanhe.cc/Scripts/main-pf\.js +# ||shanhe.cc/Scripts/ads_dl.js (easylistchina.txt: 4500) +.shanhe.cc/Scripts/ads_dl\.js +# ||shanhe.cc/index.php?m=poster& (easylistchina.txt: 4499) +.shanhe.cc/index\.php\?m=poster& +# ||shangdu.com/tpnews/dazhe.gif (easylistchina.txt: 4498) +.shangdu.com/tpnews/dazhe\.gif +# ||shangdu.com/newfile2007/ad/tu/flash/3dboard.swf (easylistchina.txt: 4497) +.shangdu.com/newfile2007/ad/tu/flash/3dboard\.swf +# ||shangdu.com/lyinfo/ad/ (easylistchina.txt: 4496) +.shangdu.com/lyinfo/ad/ +# ||shangdu.com/comiis_ad/ (easylistchina.txt: 4495) +.shangdu.com/comiis_ad/ +# ||shangdu.com/bbs/1005010601.js (easylistchina.txt: 4494) +.shangdu.com/bbs/1005010601\.js +# ||shangdu.com/2013pic/kuahailong.jpg (easylistchina.txt: 4493) +.shangdu.com/2013pic/kuahailong\.jpg +# ||shangdu.com/2013pic/09cn.jpg (easylistchina.txt: 4492) +.shangdu.com/2013pic/09cn\.jpg +# ||shangdu.com/1002/1002031301.js (easylistchina.txt: 4491) +.shangdu.com/1002/1002031301\.js +# ||shangdu.com/1002/1002030901.js (easylistchina.txt: 4490) +.shangdu.com/1002/1002030901\.js +# ||shangdu.com/1002/1002030801.js (easylistchina.txt: 4489) +.shangdu.com/1002/1002030801\.js +# ||shangdu.com/1002/1002030101.js (easylistchina.txt: 4488) +.shangdu.com/1002/1002030101\.js +# ||shang.hlgnet.net/code/ (easylistchina.txt: 4487) +.shang.hlgnet.net/code/ +# ||shang.hlgnet.com/code/ (easylistchina.txt: 4486) +.shang.hlgnet.com/code/ +# ||shabc.net/shyk/swt/swt_yh.js (easylistchina.txt: 4485) +.shabc.net/shyk/swt/swt_yh\.js +# ||sh114so.com/js/nm*.js (easylistchina.txt: 4483) +.sh114so.com/js/nm.*\.js +# ||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js (easylistchina.txt: 4482) +.sh.sina.com.cn/js/441/ZwyArticle_commo_23\.js +# ||sh.sina.com.cn/iframe/522/ (easylistchina.txt: 4481) +.sh.sina.com.cn/iframe/522/ +# ||sgg.southcn.com^ (easylistchina.txt: 4480) +.sgg.southcn.com +# ||sg169.com/uploadfile/*.swf (easylistchina.txt: 4479) +.sg169.com/uploadfile/.*\.swf +# ||sg169.com/uploadfile/*.gif (easylistchina.txt: 4478) +.sg169.com/uploadfile/.*\.gif +# ||sf-express.com/cn/sc/.galleries/sfbest/*_right_sc. (easylistchina.txt: 4477) +.sf-express.com/cn/sc/\.galleries/sfbest/.*_right_sc\. +# ||sexbarss.net/wap/ (easylistchina.txt: 4476) +.sexbarss.net/wap/ +# ||sentsin.qiniudn.com/ad_ (easylistchina.txt: 4475) +.sentsin.qiniudn.com/ad_ +# ||sejie2.us/images/*.gif (easylistchina.txt: 4474) +.sejie2.us/images/.*\.gif +# ||secretmine.net/wp-content/uploads/2015/07/youdaoxiazai.jpg (easylistchina.txt: 4473) +.secretmine.net/wp-content/uploads/2015/07/youdaoxiazai\.jpg +# ||secretmine.net/wp-content/uploads/2015/07/A- (easylistchina.txt: 4472) +.secretmine.net/wp-content/uploads/2015/07/A- +# ||secretmine.net/wp-content/uploads/*/610x80 (easylistchina.txt: 4471) +.secretmine.net/wp-content/uploads/.*/610x80 +# ||secretmine.net/wp-content/uploads/*-960 (easylistchina.txt: 4470) +.secretmine.net/wp-content/uploads/.*-960 +# ||secretmine.net/wp-content/uploads/*-300-25. (easylistchina.txt: 4469) +.secretmine.net/wp-content/uploads/.*-300-25\. +# ||sdzbcg.com/images/sdfhyl (easylistchina.txt: 4468) +.sdzbcg.com/images/sdfhyl +# ||sdzbcg.com/images/jnmy (easylistchina.txt: 4467) +.sdzbcg.com/images/jnmy +# ||sdzbcg.com/images/ggwzz.jpg (easylistchina.txt: 4466) +.sdzbcg.com/images/ggwzz\.jpg +# ||sdo.com/static/image/mkads/ (easylistchina.txt: 4464) +.sdo.com/static/image/mkads/ +# ||sdktu.com/js/alpha.js (easylistchina.txt: 4463) +.sdktu.com/js/alpha\.js +# ||sdgundam.cn/upload/2015-07/dcfea62708a21351.jpg (easylistchina.txt: 4462) +.sdgundam.cn/upload/2015-07/dcfea62708a21351\.jpg +# ||sdgundam.cn/js/duilian3.js (easylistchina.txt: 4461) +.sdgundam.cn/js/duilian3\.js +# ||sd888.org/house/flash/ (easylistchina.txt: 4460) +.sd888.org/house/flash/ +# ||sd888.org/flash/ (easylistchina.txt: 4459) +.sd888.org/flash/ +# ||sd.xinhuanet.com/2014xb/images/shanhang.gif (easylistchina.txt: 4458) +.sd.xinhuanet.com/2014xb/images/shanhang\.gif +# ||sd.xinhuanet.com/2014xb/html/albbg.htm (easylistchina.txt: 4457) +.sd.xinhuanet.com/2014xb/html/albbg\.htm +# ||sd.xinhuanet.com/2014xb/flash/ (easylistchina.txt: 4456) +.sd.xinhuanet.com/2014xb/flash/ +# ||scsn.cn/Public/config/Couplet/Index (easylistchina.txt: 4455) +.scsn.cn/Public/config/Couplet/Index +# ||scsn.cn/Public/config/Couplet/16.js (easylistchina.txt: 4454) +.scsn.cn/Public/config/Couplet/16\.js +# ||script.cmfu.com/Script/GameAdAptationInfo.js (easylistchina.txt: 4453) +.script.cmfu.com/Script/GameAdAptationInfo\.js +# ||script.cmfu.com/ADScript/ (easylistchina.txt: 4452) +.script.cmfu.com/ADScript/ +# ||scol.com.cn/scol-3/js/08scol_text_ (easylistchina.txt: 4451) +.scol.com.cn/scol-3/js/08scol_text_ +# ||scol.com.cn/js/def_ (easylistchina.txt: 4450) +.scol.com.cn/js/def_ +# ||sc.tom.com^ (easylistchina.txt: 4449) +.sc.tom.com +# ||sc.chinaiiss.com/do.php?do=ad& (easylistchina.txt: 4448) +.sc.chinaiiss.com/do\.php\?do=ad& +# ||saydigi.com/wp-content/uploads/2015/01/gogo.png (easylistchina.txt: 4447) +.saydigi.com/wp-content/uploads/2015/01/gogo\.png +# ||saydigi.com/wp-content/uploads/2014/01/mii2.gif (easylistchina.txt: 4446) +.saydigi.com/wp-content/uploads/2014/01/mii2\.gif +# ||saydigi.com/wp-content/uploads/*-banner (easylistchina.txt: 4445) +.saydigi.com/wp-content/uploads/.*-banner +# ||saydigi.com/wp-content/uploads/*-240x250. (easylistchina.txt: 4444) +.saydigi.com/wp-content/uploads/.*-240x250\. +# ||sax.sina.com.cn/crossdomain.xml (easylistchina.txt: 4443) +.sax.sina.com.cn/crossdomain\.xml +# ||same.stockstar.com^ (easylistchina.txt: 4442) +.same.stockstar.com +# ||same.eastmoney.com^ (easylistchina.txt: 4441) +.same.eastmoney.com +# ||same.chinadaily.com.cn^ (easylistchina.txt: 4440) +.same.chinadaily.com.cn +# ||sam*.baby-kingdom.com^ (easylistchina.txt: 4438) +.sam*./.*\.baby-kingdom\.com[^\w%.-] +.sam*.baby-kingdom.com +# ||saibeinews.com/index.php?m=poster&c=index&a=show_poster& (easylistchina.txt: 4437) +.saibeinews.com/index\.php\?m=poster&c=index&a=show_poster& +# ||safedom.net/edm/ad/ (easylistchina.txt: 4436) +.safedom.net/edm/ad/ +# ||s8bbs.com/g.php? (easylistchina.txt: 4435) +.s8bbs.com/g\.php\? +# ||s1979.com/html/ad_js/ (easylistchina.txt: 4434) +.s1979.com/html/ad_js/ +# ||s1.pplive.cn/sta.js (easylistchina.txt: 4433) +.s1.pplive.cn/sta\.js +# ||s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226.js (easylistchina.txt: 4432) +.s.yimg.com/ja/ap/hk/rm/hk_rm_tab_20140226\.js +# ||s.yimg.com/gs/apex/ (easylistchina.txt: 4430) +.s.yimg.com/gs/apex/ +# ||s.video.sina.com.cn/video/play?video_id=249750205& (easylistchina.txt: 4429) +.s.video.sina.com.cn/video/play\?video_id=249750205& +# ||s.u17t.com/leaflet/upload/ (easylistchina.txt: 4428) +.s.u17t.com/leaflet/upload/ +# ||s.tankr.net/n/ (easylistchina.txt: 4426) +.s.tankr.net/n/ +# ||s-msn.com/portal/xiatui.js (easylistchina.txt: 4425) +.s-msn.com/portal/xiatui\.js +# ||s-msn.com/portal/hp/2015/807.html (easylistchina.txt: 4424) +.s-msn.com/portal/hp/2015/807\.html +# ||s-msn.com/msnportal/hp/luckyday/ (easylistchina.txt: 4423) +.s-msn.com/msnportal/hp/luckyday/ +# ||rznews.cn/viscms/r/cms/rzw/rzxw/images/*.swf (easylistchina.txt: 4422) +.rznews.cn/viscms/r/cms/rzw/rzxw/images/.*\.swf +# ||ruten.com.tw/js/gads_ (easylistchina.txt: 4421) +.ruten.com.tw/js/gads_ +# ||ruten.com.tw/js/ahd_ (easylistchina.txt: 4420) +.ruten.com.tw/js/ahd_ +# ||runsky.com/html/*_index_ (easylistchina.txt: 4419) +.runsky.com/html/.*_index_ +# ||runsky.com/bbsadv- (easylistchina.txt: 4418) +.runsky.com/bbsadv- +# ||runmang.com/img/ (easylistchina.txt: 4417) +.runmang.com/img/ +# ||runbt.com/js/ad (easylistchina.txt: 4416) +.runbt.com/js/ad +# ||runbt.com/image/ad_ (easylistchina.txt: 4415) +.runbt.com/image/ad_ +# ||ruian86.com/img/y13/ (easylistchina.txt: 4414) +.ruian86.com/img/y13/ +# ||ruian.com/img/y13/ (easylistchina.txt: 4413) +.ruian.com/img/y13/ +# ||rugao35.com/Public/config/Couplet/Index (easylistchina.txt: 4412) +.rugao35.com/Public/config/Couplet/Index +# ||ruanyifeng.com/blog/images/sup_ (easylistchina.txt: 4411) +.ruanyifeng.com/blog/images/sup_ +# ||ruanyifeng.com/blog/images/ad_ (easylistchina.txt: 4410) +.ruanyifeng.com/blog/images/ad_ +# ||ruan8.com/img/head.js (easylistchina.txt: 4408) +.ruan8.com/img/head\.js +# ||ruan8.com/img/foot.js (easylistchina.txt: 4407) +.ruan8.com/img/foot\.js +# ||rtbs.cn/bi.js (easylistchina.txt: 4406) +.rtbs.cn/bi\.js +# ||rshhy.com/uploads/allimg/130517/1_1834445801.jpg (easylistchina.txt: 4405) +.rshhy.com/uploads/allimg/130517/1_1834445801\.jpg +# ||rshhy.com/templets/default/images/zhixiao01.jpg (easylistchina.txt: 4404) +.rshhy.com/templets/default/images/zhixiao01\.jpg +# ||rshhy.com/templets/default/images/paimai01.jpg (easylistchina.txt: 4403) +.rshhy.com/templets/default/images/paimai01\.jpg +# ||rsdown.cn/static/t/ (easylistchina.txt: 4402) +.rsdown.cn/static/t/ +# ||rsccs.com/code/ (easylistchina.txt: 4401) +.rsccs.com/code/ +# ||rosmm.com/ad_js/ (easylistchina.txt: 4400) +.rosmm.com/ad_js/ +# ||rkanr.com/data/cpcache/cp*.js (easylistchina.txt: 4398) +.rkanr.com/data/cpcache/cp.*\.js +# ||rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6.jpg (easylistchina.txt: 4397) +.rkanr.cn/upload/2013/12/31/165683e8-bab4-4c6a-b28b-22ca7a60c1f6\.jpg +# ||rizhao.net/html/js/main.js (easylistchina.txt: 4396) +.rizhao.net/html/js/main\.js +# ||rising.com.cn/weblog/ (easylistchina.txt: 4395) +.rising.com.cn/weblog/ +# ||rising.cn^*/pic-ad/ (easylistchina.txt: 4394) +.rising.cn/.*/pic-ad/ +# ||ringhk.com/adves/ (easylistchina.txt: 4393) +.ringhk.com/adves/ +# ||right.com.cn/logo/*.gif (easylistchina.txt: 4391) +.right.com.cn/logo/.*\.gif +# ||right.com.cn/forum/static/image/common/logo.gif (easylistchina.txt: 4390) +.right.com.cn/forum/static/image/common/logo\.gif +# ||rh.qq.com^ (easylistchina.txt: 4389) +.rh.qq.com +# ||rfidworld.com.cn/js/c.html (easylistchina.txt: 4388) +.rfidworld.com.cn/js/c\.html +# ||rfidworld.com.cn/js/b.js (easylistchina.txt: 4387) +.rfidworld.com.cn/js/b\.js +# ||rfidworld.com.cn/js/a.js (easylistchina.txt: 4386) +.rfidworld.com.cn/js/a\.js +# ||res.ythouse.com/image/index/2012/ (easylistchina.txt: 4385) +.res.ythouse.com/image/index/2012/ +# ||res.hunantv.com^ (easylistchina.txt: 4384) +.res.hunantv.com +# ||res.cngoldres.com/web/js/*_advs.js (easylistchina.txt: 4383) +.res.cngoldres.com/web/js/.*_advs\.js +# ||res.cngoldres.com/web/index/img/*_ad_ (easylistchina.txt: 4382) +.res.cngoldres.com/web/index/img/.*_ad_ +# ||repian.com/a/ (easylistchina.txt: 4381) +.repian.com/a/ +# ||rentiyishu99.net/f.js (easylistchina.txt: 4380) +.rentiyishu99.net/f\.js +# ||rentiyishu99.net/e.js (easylistchina.txt: 4379) +.rentiyishu99.net/e\.js +# ||rentiyishu99.net/d.js (easylistchina.txt: 4378) +.rentiyishu99.net/d\.js +# ||rentiyishu99.net/b.js (easylistchina.txt: 4377) +.rentiyishu99.net/b\.js +# ||rentiyishu99.net/a.js (easylistchina.txt: 4376) +.rentiyishu99.net/a\.js +# ||rentiyishu.org/*.js (easylistchina.txt: 4375) +.rentiyishu.org/.*\.js +# ||renrencd.com/static/images/*_adv. (easylistchina.txt: 4374) +.renrencd.com/static/images/.*_adv\. +# ||renren.com/pages/seo/reg_seo_pop.js (easylistchina.txt: 4373) +.renren.com/pages/seo/reg_seo_pop\.js +# ||ref.so/templates/ref/images/client/tg*.jpg (easylistchina.txt: 4372) +.ref.so/templates/ref/images/client/tg.*\.jpg +# ||read.2200book.com/images/bloading.gif (easylistchina.txt: 4370) +.read.2200book.com/images/bloading\.gif +# ||rar8.net/htmljs/ (easylistchina.txt: 4369) +.rar8.net/htmljs/ +# ||ranwen.org/ssi/ (easylistchina.txt: 4368) +.ranwen.org/ssi/ +# ||ranwen.net/ssi/ (easylistchina.txt: 4367) +.ranwen.net/ssi/ +# ||rainmall.com/tv/js/bofang (easylistchina.txt: 4365) +.rainmall.com/tv/js/bofang +# ||rainmall.com/tv/js/ad (easylistchina.txt: 4364) +.rainmall.com/tv/js/ad +# ||r3.ykimg.com/crossdomain.xml (easylistchina.txt: 4363) +.r3.ykimg.com/crossdomain\.xml +# ||qzzn.com/statics/ (easylistchina.txt: 4362) +.qzzn.com/statics/ +# ||qzwb.com^*.swf| (easylistchina.txt: 4361) +.qzwb.com/.*\.swf$ +# ||qzwb.com/gb/img/9465.files/1G3G.gif (easylistchina.txt: 4360) +.qzwb.com/gb/img/9465\.files/1G3G\.gif +# ||qzss.cn/ssad (easylistchina.txt: 4359) +.qzss.cn/ssad +# ||qzntv.com^*.swf| (easylistchina.txt: 4357) +.qzntv.com/.*\.swf$ +# ||qz828.com/css/2010/script/*ad (easylistchina.txt: 4356) +.qz828.com/css/2010/script/.*ad +# ||qutuku.com/qutu/good.js (easylistchina.txt: 4355) +.qutuku.com/qutu/good\.js +# ||qunaso.cn/Data/upload/ad/ (easylistchina.txt: 4354) +.qunaso.cn/Data/upload/ad/ +# ||qunar.com/vataplan?framId=ifrNTOPAD& (easylistchina.txt: 4353) +.qunar.com/vataplan\?framId=ifrNTOPAD& +# ||qunar.com/vataframe/b.html? (easylistchina.txt: 4352) +.qunar.com/vataframe/b\.html\? +# ||qunar.com/vata?chan= (easylistchina.txt: 4351) +.qunar.com/vata\?chan= +# ||qunar.com/render/*Advertisement.jsp? (easylistchina.txt: 4350) +.qunar.com/render/.*Advertisement\.jsp\? +# ||quledu.com/js/nrh.js (easylistchina.txt: 4349) +.quledu.com/js/nrh\.js +# ||qtfy30.cn/980-90.gif (easylistchina.txt: 4348) +.qtfy30.cn/980-90\.gif +# ||qtfy30.cn/680_*.gif (easylistchina.txt: 4347) +.qtfy30.cn/680_.*\.gif +# ||qstatic.com/baike/js/ad_ (easylistchina.txt: 4346) +.qstatic.com/baike/js/ad_ +# ||qscjw.com/uploads/590.gif (easylistchina.txt: 4345) +.qscjw.com/uploads/590\.gif +# ||qqzuqiu.com/?a=check& (easylistchina.txt: 4344) +.qqzuqiu.com/\?a=check& +# ||qqyy.com/js/public_end_add.js (easylistchina.txt: 4343) +.qqyy.com/js/public_end_add\.js +# ||qqyy.com/js/commAdv (easylistchina.txt: 4342) +.qqyy.com/js/commAdv +# ||qqread.com/swf/ (easylistchina.txt: 4340) +.qqread.com/swf/ +# ||qqmcc.org/biz/home_top_960x90.html (easylistchina.txt: 4338) +.qqmcc.org/biz/home_top_960x90\.html +# ||qqkj.cn/js/qqkjnew/lanmuzhuantitongji.js (easylistchina.txt: 4337) +.qqkj.cn/js/qqkjnew/lanmuzhuantitongji\.js +# ||qqjia.com/images/ad (easylistchina.txt: 4336) +.qqjia.com/images/ad +# ||qqjia.com/dan.js (easylistchina.txt: 4335) +.qqjia.com/dan\.js +# ||qqhjy.com/soft/Upload*.gif (easylistchina.txt: 4334) +.qqhjy.com/soft/Upload.*\.gif +# ||qqcyl.net/js/*.html (easylistchina.txt: 4333) +.qqcyl.net/js/.*\.html +# ||qqcyl.com/js/*.html (easylistchina.txt: 4332) +.qqcyl.com/js/.*\.html +# ||qqcf.com/js/Content_Get.js (easylistchina.txt: 4331) +.qqcf.com/js/Content_Get\.js +# ||qq260.com/shout.js (easylistchina.txt: 4330) +.qq260.com/shout\.js +# ||qq.com/qzone/biz/gdt/display/positions/waicai/ (easylistchina.txt: 4329) +.qq.com/qzone/biz/gdt/display/positions/waicai/ +# ||qq.com/playgame/videoweb/ (easylistchina.txt: 4328) +.qq.com/playgame/videoweb/ +# ||qq.com/PL_adT.htm (easylistchina.txt: 4327) +.qq.com/PL_adT\.htm +# ||qq.com/minivideo_v1/vd/res/enttencentvideo.xml (easylistchina.txt: 4326) +.qq.com/minivideo_v1/vd/res/enttencentvideo\.xml +# ||qq.com/livemsg? (easylistchina.txt: 4325) +.qq.com/livemsg\? +# ||qq.com/Index/getAdsAndHotspot (easylistchina.txt: 4324) +.qq.com/Index/getAdsAndHotspot +# ||qq.com/coral/ADS (easylistchina.txt: 4322) +.qq.com/coral/ADS +# ||qq.com/bbs/bbs_topgg.htm (easylistchina.txt: 4320) +.qq.com/bbs/bbs_topgg\.htm +# ||qq.com/article_qq/ad_article_qq/ (easylistchina.txt: 4319) +.qq.com/article_qq/ad_article_qq/ +# ||qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 (easylistchina.txt: 4317) +.qpic.cn/mblogpic/47a05e3dca9d6bc9e20e/2000 +# ||qmi.cc/tester/tester.js (easylistchina.txt: 4316) +.qmi.cc/tester/tester\.js +# ||qk101.com/life/ (easylistchina.txt: 4315) +.qk101.com/life/ +# ||qjis.com/js/qjis_nr.js (easylistchina.txt: 4314) +.qjis.com/js/qjis_nr\.js +# ||qiyun.org/images/js/tpl/ (easylistchina.txt: 4313) +.qiyun.org/images/js/tpl/ +# ||qiyun.org/images/js/*.htm (easylistchina.txt: 4312) +.qiyun.org/images/js/.*\.htm +# ||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg (easylistchina.txt: 4311) +.qiyipic.com/zongyi/fix/runningman20141008_bg03\.jpg +# ||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg (easylistchina.txt: 4310) +.qiyipic.com/zongyi/fix/runningman20141008_bg02\.jpg +# ||qiyipic.com/zongyi/fix/mxdj (easylistchina.txt: 4309) +.qiyipic.com/zongyi/fix/mxdj +# ||qiyipic.com/zongyi/*Banner01.jpg (easylistchina.txt: 4308) +.qiyipic.com/zongyi/.*Banner01\.jpg +# ||qiyipic.com/common/fix/wh-leftbanner.jpg (easylistchina.txt: 4307) +.qiyipic.com/common/fix/wh-leftbanner\.jpg +# ||qiyipic.com/common/fix/rebull_ (easylistchina.txt: 4306) +.qiyipic.com/common/fix/rebull_ +# ||qiyipic.com/common/fix/dasdasdasdk.jpg (easylistchina.txt: 4305) +.qiyipic.com/common/fix/dasdasdasdk\.jpg +# ||qiyipic.com/common/20150528/diyizhuanqu.jpg (easylistchina.txt: 4304) +.qiyipic.com/common/20150528/diyizhuanqu\.jpg +# ||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg (easylistchina.txt: 4303) +.qiyipic.com/common/20141021/sanjiukehuzhuanqu\.jpg +# ||qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79.png (easylistchina.txt: 4302) +.qiyipic.com/common/20140814/d68d9651bac24228996dd7a19f269d79\.png +# ||qiyipic.com/common/*tonglan (easylistchina.txt: 4301) +.qiyipic.com/common/.*tonglan +# ||qiyipic.com/common/*_aLink (easylistchina.txt: 4300) +.qiyipic.com/common/.*_aLink +# ||qiyipic.com/common/*980x (easylistchina.txt: 4299) +.qiyipic.com/common/.*980x +# ||qiyipic.com/common/*/kehuzhuanqu (easylistchina.txt: 4298) +.qiyipic.com/common/.*/kehuzhuanqu +# ||qiyipic.com/common/*/banner.jpg (easylistchina.txt: 4297) +.qiyipic.com/common/.*/banner\.jpg +# ||qiyipic.com/common/*/baiyao. (easylistchina.txt: 4296) +.qiyipic.com/common/.*/baiyao\. +# ||qiyipic.com/common/*/980 (easylistchina.txt: 4295) +.qiyipic.com/common/.*/980 +# ||qiyipic.com/common/*/255x205 (easylistchina.txt: 4294) +.qiyipic.com/common/.*/255x205 +# ||qiyipic.com/common/*/250230. (easylistchina.txt: 4293) +.qiyipic.com/common/.*/250230\. +# ||qiyipic.com/common/*/250-230. (easylistchina.txt: 4292) +.qiyipic.com/common/.*/250-230\. +# ||qiyipic.com/common/*/225x230.jpg (easylistchina.txt: 4291) +.qiyipic.com/common/.*/225x230\.jpg +# ||qiyipic.com/common/*%E9%80%9A%E6%A0%8F (easylistchina.txt: 4290) +.qiyipic.com/common/.*%E9%80%9A%E6%A0%8F +# ||qiuziti.com/meitu/ddd.gif (easylistchina.txt: 4288) +.qiuziti.com/meitu/ddd\.gif +# ||qiuziti.com/img/rightp20.gif (easylistchina.txt: 4287) +.qiuziti.com/img/rightp20\.gif +# ||qiuyi.cn/qiuyi/cooper/ (easylistchina.txt: 4286) +.qiuyi.cn/qiuyi/cooper/ +# ||qitete.com/sp/ (easylistchina.txt: 4285) +.qitete.com/sp/ +# ||qiqibu.com/js/*.gif (easylistchina.txt: 4284) +.qiqibu.com/js/.*\.gif +# ||qingkong.net/a/980x90_1.jpg (easylistchina.txt: 4282) +.qingkong.net/a/980x90_1\.jpg +# ||qingkai.com/gg_img/ (easylistchina.txt: 4281) +.qingkai.com/gg_img/ +# ||qingkai.com/2009/html/top.htm (easylistchina.txt: 4280) +.qingkai.com/2009/html/top\.htm +# ||qimm.org/Uploads/ad/ (easylistchina.txt: 4279) +.qimm.org/Uploads/ad/ +# ||qilanxiaozhu.*/data/attachment/portal/ (easylistchina.txt: 4278) +.qilanxiaozhu.*./(.*/)?data/attachment/portal/ +# ||qikuyou.com/images/images/250.png (easylistchina.txt: 4277) +.qikuyou.com/images/images/250\.png +# ||qihoo.com/hot/text.html?site= (easylistchina.txt: 4276) +.qihoo.com/hot/text\.html\?site= +# ||qihaa.cn/js/ (easylistchina.txt: 4275) +.qihaa.cn/js/ +# ||qidian.com/ploy/cloudary08/ (easylistchina.txt: 4274) +.qidian.com/ploy/cloudary08/ +# ||qidian.com/ploy/*swf (easylistchina.txt: 4273) +.qidian.com/ploy/.*swf +# ||qidian.com/Javascript/usia (easylistchina.txt: 4272) +.qidian.com/Javascript/usia +# ||qidian.com/javascript/SNDAADAltern.js (easylistchina.txt: 4271) +.qidian.com/javascript/SNDAADAltern\.js +# ||qidian.com/Javascript/NewSNDAPop.js (easylistchina.txt: 4270) +.qidian.com/Javascript/NewSNDAPop\.js +# ||qidian.com/Javascript/ksjlajUysi (easylistchina.txt: 4269) +.qidian.com/Javascript/ksjlajUysi +# ||qidian.com/Javascript/kiywyq_ (easylistchina.txt: 4268) +.qidian.com/Javascript/kiywyq_ +# ||qidian.com/Javascript/DoublePop.js (easylistchina.txt: 4267) +.qidian.com/Javascript/DoublePop\.js +# ||qidian.com/Images/book_*_other (easylistchina.txt: 4266) +.qidian.com/Images/book_.*_other +# ||qianzhan.com/html/*_txtlinks.html (easylistchina.txt: 4265) +.qianzhan.com/html/.*_txtlinks\.html +# ||qianmu.org/resource/js/jquery.ads.js (easylistchina.txt: 4264) +.qianmu.org/resource/js/jquery\.ads\.js +# ||qiangdiao.com/pr.png (easylistchina.txt: 4262) +.qiangdiao.com/pr\.png +# ||qhnews.com/tupian/ (easylistchina.txt: 4261) +.qhnews.com/tupian/ +# ||qhimg.com/t01752fdc322b424d08.jpg (easylistchina.txt: 4260) +.qhimg.com/t01752fdc322b424d08\.jpg +# ||qhimg.com/t01119598c484b6ca8e.jpg (easylistchina.txt: 4259) +.qhimg.com/t01119598c484b6ca8e\.jpg +# ||qhimg.com/t0107605853c9b6d004.jpg (easylistchina.txt: 4258) +.qhimg.com/t0107605853c9b6d004\.jpg +# ||qfans.net/js/open (easylistchina.txt: 4257) +.qfans.net/js/open +# ||qdmm.com/javascript/SNDAADAltern.js (easylistchina.txt: 4256) +.qdmm.com/javascript/SNDAADAltern\.js +# ||qdmm.com/javascript/NewSNDAPop.js (easylistchina.txt: 4255) +.qdmm.com/javascript/NewSNDAPop\.js +# ||qdjimo.com/html/js/ (easylistchina.txt: 4254) +.qdjimo.com/html/js/ +# ||qbox.me/ftq_ (easylistchina.txt: 4253) +.qbox.me/ftq_ +# ||qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo.jpg (easylistchina.txt: 4252) +.qbaobei.com/data/attachment/portal/201310/23/171915wh3ox3oiwck3dwxo\.jpg +# ||qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6.gif (easylistchina.txt: 4251) +.qbaobei.com/data/attachment/portal/201310/23/171807xmyi29gah8cypbh6\.gif +# ||q.cn/images/notepad.gif (easylistchina.txt: 4250) +.q.cn/images/notepad\.gif +# ||q.cn/images/floater_ (easylistchina.txt: 4249) +.q.cn/images/floater_ +# ||pzzc.net/data/attachment/ad2/ (easylistchina.txt: 4247) +.pzzc.net/data/attachment/ad2/ +# ||pzxw.cn/1212banner (easylistchina.txt: 4246) +.pzxw.cn/1212banner +# ||putonghua520.com/skins/10ym/tj (easylistchina.txt: 4245) +.putonghua520.com/skins/10ym/tj +# ||putonghua520.com/skins/10ym/123.jpg (easylistchina.txt: 4244) +.putonghua520.com/skins/10ym/123\.jpg +# ||publish.ad.youth.cn^ (easylistchina.txt: 4243) +.publish.ad.youth.cn +# ||publicize.liao1.com^ (easylistchina.txt: 4242) +.publicize.liao1.com +# ||pub.sxrtv.com/crossdomain.xml (easylistchina.txt: 4241) +.pub.sxrtv.com/crossdomain\.xml +# ||pub.stockstar.com/feedback/ (easylistchina.txt: 4240) +.pub.stockstar.com/feedback/ +# ||pub.mop.com^ (easylistchina.txt: 4239) +.pub.mop.com +# ||pub.funshion.com^ (easylistchina.txt: 4238) +.pub.funshion.com +# ||ptfish.com/08html/ (easylistchina.txt: 4237) +.ptfish.com/08html/ +# ||ptbus.com/s.js (easylistchina.txt: 4235) +.ptbus.com/s\.js +# ||ptbs.sme.gov.cn/images/231.gif (easylistchina.txt: 4234) +.ptbs.sme.gov.cn/images/231\.gif +# ||pstatp.com/resource/toutiao_wap/static/js/lib/ads_ (easylistchina.txt: 4233) +.pstatp.com/resource/toutiao_wap/static/js/lib/ads_ +# ||ps123.net/MyFile/ (easylistchina.txt: 4232) +.ps123.net/MyFile/ +# ||pro.iweihai.cn^ (easylistchina.txt: 4230) +.pro.iweihai.cn +# ||price.com.hk/scripts/ysm.js (easylistchina.txt: 4229) +.price.com.hk/scripts/ysm\.js +# ||price.com.hk/dfp_price.php? (easylistchina.txt: 4228) +.price.com.hk/dfp_price\.php\? +# ||prettyvirgin.com/js/show.html (easylistchina.txt: 4227) +.prettyvirgin.com/js/show\.html +# ||prettyvirgin.com/images/banners/ (easylistchina.txt: 4226) +.prettyvirgin.com/images/banners/ +# ||pptiyu.com/index/js/float.js (easylistchina.txt: 4225) +.pptiyu.com/index/js/float\.js +# ||ppsj.com.cn/ppsj728.gif (easylistchina.txt: 4224) +.ppsj.com.cn/ppsj728\.gif +# ||ppsj.com.cn/images/usa_250_120.gif (easylistchina.txt: 4223) +.ppsj.com.cn/images/usa_250_120\.gif +# ||ppsj.com.cn/images/ppsj300.gif (easylistchina.txt: 4222) +.ppsj.com.cn/images/ppsj300\.gif +# ||pp.7060.la^ (easylistchina.txt: 4221) +.pp.7060.la +# ||poxiao.com/template/default/images/12345.js (easylistchina.txt: 4220) +.poxiao.com/template/default/images/12345\.js +# ||poster.weather.com.cn^ (easylistchina.txt: 4219) +.poster.weather.com.cn +# ||poppur.com/banner/962x100.gif (easylistchina.txt: 4218) +.poppur.com/banner/962x100\.gif +# ||popme.163.com/js/vedioad_ (easylistchina.txt: 4217) +.popme.163.com/js/vedioad_ +# ||poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408.jpg (easylistchina.txt: 4216) +.poco.cn/mypoco/myphoto/20141026/22/594663442014102622174408\.jpg +# ||poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067.gif (easylistchina.txt: 4215) +.poco.cn/mypoco/myphoto/20140423/19/5589980820140423191248067\.gif +# ||poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072.gif (easylistchina.txt: 4214) +.poco.cn/mypoco/myphoto/20140418/18/5589980820140418182334072\.gif +# ||poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064.jpg (easylistchina.txt: 4213) +.poco.cn/mypoco/myphoto/20140330/21/5589980820140330214657064\.jpg +# ||plurk.com/Ads/ (easylistchina.txt: 4212) +.plurk.com/Ads/ +# ||playgm.cn/data/attachment/portal/ (easylistchina.txt: 4211) +.playgm.cn/data/attachment/portal/ +# ||playad.xjmg.com^ (easylistchina.txt: 4210) +.playad.xjmg.com +# ||pjtime.com/js/show_ad (easylistchina.txt: 4209) +.pjtime.com/js/show_ad +# ||pixfs.net/js/mib_falcon. (easylistchina.txt: 4208) +.pixfs.net/js/mib_falcon\. +# ||pixfs.net/js/mib.min.js (easylistchina.txt: 4207) +.pixfs.net/js/mib\.min\.js +# ||pipi.cn/player/ (easylistchina.txt: 4206) +.pipi.cn/player/ +# ||pingpang.info/uploadfile/tsp.gif (easylistchina.txt: 4205) +.pingpang.info/uploadfile/tsp\.gif +# ||pingpang.info/uploadfile/butterfly.gif (easylistchina.txt: 4204) +.pingpang.info/uploadfile/butterfly\.gif +# ||pingpang.info/uploadfile/950X90B.gif (easylistchina.txt: 4203) +.pingpang.info/uploadfile/950X90B\.gif +# ||pingpang.info/themes/v1.0/images/yasaka. (easylistchina.txt: 4202) +.pingpang.info/themes/v1\.0/images/yasaka\. +# ||pingpang.info/bbs/UploadFile/2014-5/201455214543955851.gif (easylistchina.txt: 4201) +.pingpang.info/bbs/UploadFile/2014-5/201455214543955851\.gif +# ||pingpang.info/bbs/UploadFile/2014-11/20141113852238131.jpg (easylistchina.txt: 4200) +.pingpang.info/bbs/UploadFile/2014-11/20141113852238131\.jpg +# ||pingpang.info/bbs/UploadFile/2013-11/xiom.gif (easylistchina.txt: 4199) +.pingpang.info/bbs/UploadFile/2013-11/xiom\.gif +# ||pingpang.info/banner/ (easylistchina.txt: 4198) +.pingpang.info/banner/ +# ||pimg.tw/ifans/1399368662-4247048381.png (easylistchina.txt: 4197) +.pimg.tw/ifans/1399368662-4247048381\.png +# ||pifa.fobshanghai.com/link/ (easylistchina.txt: 4196) +.pifa.fobshanghai.com/link/ +# ||pics.wanlibo.com/js/pagemodulestat.js (easylistchina.txt: 4194) +.pics.wanlibo.com/js/pagemodulestat\.js +# ||pic.zol-img.com.cn^*/box (easylistchina.txt: 4193) +.pic.zol-img.com.cn/.*/box +# ||pic.zol-img.com.cn/20*backgrou (easylistchina.txt: 4191) +.pic.zol-img.com.cn/20.*backgrou +# ||pic.yupoo.com/showflash/ (easylistchina.txt: 4190) +.pic.yupoo.com/showflash/ +# ||pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3.gif (easylistchina.txt: 4189) +.pic.yupoo.com/heidongke_v/Dz3G6aBA/kSHc3\.gif +# ||pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR.png (easylistchina.txt: 4188) +.pic.yupoo.com/heidongke_v/DMI8TWao/11YsLR\.png +# ||pic.xgo-img.com.cn^ (easylistchina.txt: 4187) +.pic.xgo-img.com.cn +# ||pic.wpdaxue.com^*.js (easylistchina.txt: 4186) +.pic.wpdaxue.com/.*\.js +# ||pic.taian.com^ (easylistchina.txt: 4185) +.pic.taian.com +# ||pic.jd-bbs.com^*.swf (easylistchina.txt: 4183) +.pic.jd-bbs.com/.*\.swf +# ||pic.gongkong.com/UploadPic/gongkong/ (easylistchina.txt: 4182) +.pic.gongkong.com/UploadPic/gongkong/ +# ||pic.fengniao.com^ (easylistchina.txt: 4181) +.pic.fengniao.com +# ||pic.ea3w.com^ (easylistchina.txt: 4180) +.pic.ea3w.com +# ||pic.959.cn/media/js/ (easylistchina.txt: 4179) +.pic.959.cn/media/js/ +# ||pic.2u.com.cn^ (easylistchina.txt: 4178) +.pic.2u.com.cn +# ||pic.111cn.net^ (easylistchina.txt: 4177) +.pic.111cn.net +# ||pic.0597kk.com^ (easylistchina.txt: 4176) +.pic.0597kk.com +# ||piaoliang.com/js/gg.js (easylistchina.txt: 4175) +.piaoliang.com/js/gg\.js +# ||piaohua.com/js/wlfloat.js (easylistchina.txt: 4173) +.piaohua.com/js/wlfloat\.js +# ||piaodown.com/other/*.js (easylistchina.txt: 4172) +.piaodown.com/other/.*\.js +# ||piao.com.cn/Flash/Scripts/FloatLeftRight_ (easylistchina.txt: 4171) +.piao.com.cn/Flash/Scripts/FloatLeftRight_ +# ||phpfans.net/image/sponsors/ (easylistchina.txt: 4170) +.phpfans.net/image/sponsors/ +# ||phpcms.cn/statics/images/video/ad (easylistchina.txt: 4169) +.phpcms.cn/statics/images/video/ad +# ||phpad.cqnews.net^ (easylistchina.txt: 4168) +.phpad.cqnews.net +# ||photofans.cn/cooperator/banner/ (easylistchina.txt: 4167) +.photofans.cn/cooperator/banner/ +# ||photo.erji.com^*.swf (easylistchina.txt: 4166) +.photo.erji.com/.*\.swf +# ||photo.erji.com^*.gif (easylistchina.txt: 4165) +.photo.erji.com/.*\.gif +# ||photo.erji.com/saha.jpg (easylistchina.txt: 4164) +.photo.erji.com/saha\.jpg +# ||pharmnet.com.cn/js/float_div.js (easylistchina.txt: 4163) +.pharmnet.com.cn/js/float_div\.js +# ||pharmnet.com.cn/cnbanner/ (easylistchina.txt: 4162) +.pharmnet.com.cn/cnbanner/ +# ||ph66.com/js/float.js (easylistchina.txt: 4161) +.ph66.com/js/float\.js +# ||ph66.com/bbsgg/ (easylistchina.txt: 4160) +.ph66.com/bbsgg/ +# ||ph66.com/attachment/*.swf (easylistchina.txt: 4159) +.ph66.com/attachment/.*\.swf +# ||pgzhibo.com/uploads/image/20150902/1441126837.jpg (easylistchina.txt: 4158) +.pgzhibo.com/uploads/image/20150902/1441126837\.jpg +# ||pgzhibo.com/uploads/image/20*.gif (easylistchina.txt: 4157) +.pgzhibo.com/uploads/image/20.*\.gif +# ||pg.udn.com/BT/*.swf (easylistchina.txt: 4156) +.pg.udn.com/BT/.*\.swf +# ||people.com.cn/img/gjt/ (easylistchina.txt: 4153) +.people.com.cn/img/gjt/ +# ||people.com.cn/img/2013people/wza/domready (easylistchina.txt: 4152) +.people.com.cn/img/2013people/wza/domready +# ||people.com.cn/adv/ (easylistchina.txt: 4151) +.people.com.cn/adv/ +# ||people.cn^*/js/m.js (easylistchina.txt: 4150) +.people.cn/.*/js/m\.js +# ||penglai.com.cn/UploadFile/image/*.gif (easylistchina.txt: 4149) +.penglai.com.cn/UploadFile/image/.*\.gif +# ||peasyun.com/Uploads/Thumbs/advs_ (easylistchina.txt: 4148) +.peasyun.com/Uploads/Thumbs/advs_ +# ||pd.xxhh.com/list.js (easylistchina.txt: 4147) +.pd.xxhh.com/list\.js +# ||pcworld.com.cn/Article/UploadFiles/201403/2014031016150885.jpg (easylistchina.txt: 4146) +.pcworld.com.cn/Article/UploadFiles/201403/2014031016150885\.jpg +# ||pcstore.com.tw/css/myacc_init.js (easylistchina.txt: 4145) +.pcstore.com.tw/css/myacc_init\.js +# ||pcs1.app.joy.cn^ (easylistchina.txt: 4144) +.pcs1.app.joy.cn +# ||pcpp.com.cn/news/ad/ (easylistchina.txt: 4143) +.pcpp.com.cn/news/ad/ +# ||pcpp.com.cn/news/a/*_article_right.html (easylistchina.txt: 4142) +.pcpp.com.cn/news/a/.*_article_right\.html +# ||pcpp.com.cn*/pcpp.jpg (easylistchina.txt: 4141) +.pcpp.com.cn*./(.*/)?pcpp\.jpg +# ||pconline.com.cn/test/*.html? (easylistchina.txt: 4140) +.pconline.com.cn/test/.*\.html\? +# ||pconline.com.cn/pconline/download/fz/ (easylistchina.txt: 4139) +.pconline.com.cn/pconline/download/fz/ +# ||pconline.com.cn/js/ivy.js (easylistchina.txt: 4138) +.pconline.com.cn/js/ivy\.js +# ||pconline.com.cn/js/ad_ (easylistchina.txt: 4137) +.pconline.com.cn/js/ad_ +# ||pconline.com.cn/intelcorefamily/ (easylistchina.txt: 4136) +.pconline.com.cn/intelcorefamily/ +# ||pconline.com.cn/download/*/intf*.js (easylistchina.txt: 4135) +.pconline.com.cn/download/.*/intf.*\.js +# ||pconline.com.cn/_hux_/ (easylistchina.txt: 4134) +.pconline.com.cn/_hux_/ +# ||pcjishu.com/other/yj300x3006.jpg (easylistchina.txt: 4133) +.pcjishu.com/other/yj300x3006\.jpg +# ||pchome.com.tw/js/idlead.js (easylistchina.txt: 4132) +.pchome.com.tw/js/idlead\.js +# ||pcgames.com.cn/jctj/ (easylistchina.txt: 4130) +.pcgames.com.cn/jctj/ +# ||pcgames.com.cn/g/ (easylistchina.txt: 4129) +.pcgames.com.cn/g/ +# ||pcgames.com.cn/download/newnq/ (easylistchina.txt: 4128) +.pcgames.com.cn/download/newnq/ +# ||pccoo.cn/js/dlv1.0.js (easylistchina.txt: 4127) +.pccoo.cn/js/dlv1\.0\.js +# ||pcbeta.com/static/image/microsoftstore/ (easylistchina.txt: 4126) +.pcbeta.com/static/image/microsoftstore/ +# ||pc3w.com/js/ (easylistchina.txt: 4125) +.pc3w.com/js/ +# ||pc141.com/statics/new_img/info_left.png (easylistchina.txt: 4124) +.pc141.com/statics/new_img/info_left\.png +# ||pc0359.cn/js/un.js (easylistchina.txt: 4123) +.pc0359.cn/js/un\.js +# ||pc0359.cn/data/xzb_haha.js (easylistchina.txt: 4122) +.pc0359.cn/data/xzb_haha\.js +# ||panzz.com/file/ads/ (easylistchina.txt: 4121) +.panzz.com/file/ads/ +# ||panpan.org/templets/ad/ (easylistchina.txt: 4120) +.panpan.org/templets/ad/ +# ||panpan.org/plus/img/ (easylistchina.txt: 4119) +.panpan.org/plus/img/ +# ||panpan.org/other/ (easylistchina.txt: 4118) +.panpan.org/other/ +# ||panpan.org/js/google (easylistchina.txt: 4117) +.panpan.org/js/google +# ||panda.kdnet.net^ (easylistchina.txt: 4116) +.panda.kdnet.net +# ||p8u.hinet.net^ (easylistchina.txt: 4115) +.p8u.hinet.net +# ||p4p.sina.com.cn^ (easylistchina.txt: 4114) +.p4p.sina.com.cn +# ||p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124.jpg (easylistchina.txt: 4113) +.p3.img.cctvpic.com/photoAlbum/page/performance/img/2013/11/20/1384944092228_124\.jpg +# ||p.zol.com.cn/download/detail.js (easylistchina.txt: 4112) +.p.zol.com.cn/download/detail\.js +# ||p.zol-img.com.cn^ (easylistchina.txt: 4111) +.p.zol-img.com.cn +# ||p.szonline.net^ (easylistchina.txt: 4110) +.p.szonline.net +# ||p.kugou.com/?id= (easylistchina.txt: 4109) +.p.kugou.com/\?id= +# ||p.aty.sohu.com/p?cat= (easylistchina.txt: 4108) +.p.aty.sohu.com/p\?cat= +# ||p.37youyou.com/*.jpg (easylistchina.txt: 4107) +.p.37youyou.com/.*\.jpg +# ||oyksoft.com/show/s.php/ (easylistchina.txt: 4106) +.oyksoft.com/show/s\.php/ +# ||overseaschinesemedia.com/img/*.gif (easylistchina.txt: 4105) +.overseaschinesemedia.com/img/.*\.gif +# ||outofmemory.cn/static/tgs/ (easylistchina.txt: 4103) +.outofmemory.cn/static/tgs/ +# ||ousns.net/daohang/ (easylistchina.txt: 4102) +.ousns.net/daohang/ +# ||oschina.net/uploads/cooperation/*_banner_ (easylistchina.txt: 4101) +.oschina.net/uploads/cooperation/.*_banner_ +# ||oschina.net/uploads/ad/ (easylistchina.txt: 4100) +.oschina.net/uploads/ad/ +# ||orzx.im/js/*pop (easylistchina.txt: 4099) +.orzx.im/js/.*pop +# ||orzx.im/Document/union/ (easylistchina.txt: 4098) +.orzx.im/Document/union/ +# ||orzx.im/Document/recommend/flashpoint.html (easylistchina.txt: 4097) +.orzx.im/Document/recommend/flashpoint\.html +# ||orsoon.com//images/ku86.jpg (easylistchina.txt: 4096) +# ||orsoon.com*/zhuanti/ (easylistchina.txt: 4095) +.orsoon.com*./(.*/)?zhuanti/ +# ||open-open.com^*_banner. (easylistchina.txt: 4094) +.open-open.com/.*_banner\. +# ||open-open.com/lag336x280.png (easylistchina.txt: 4093) +.open-open.com/lag336x280\.png +# ||open-open.com/jp72890.jpg (easylistchina.txt: 4092) +.open-open.com/jp72890\.jpg +# ||open-open.com/jp240200.jpg (easylistchina.txt: 4091) +.open-open.com/jp240200\.jpg +# ||open-open.com/j300250n.jpg (easylistchina.txt: 4090) +.open-open.com/j300250n\.jpg +# ||onlinedown.net/zhuangjiad/ (easylistchina.txt: 4089) +.onlinedown.net/zhuangjiad/ +# ||online.cq.cn/huodong/css/ (easylistchina.txt: 4087) +.online.cq.cn/huodong/css/ +# ||online.cq.cn/commonweb/commonright/right_side (easylistchina.txt: 4086) +.online.cq.cn/commonweb/commonright/right_side +# ||onegreen.net/MyFile/ (easylistchina.txt: 4085) +.onegreen.net/MyFile/ +# ||onedala.tv/uploads/banner/ (easylistchina.txt: 4084) +.onedala.tv/uploads/banner/ +# ||on.cc/js/v2/iframe_ysm_ (easylistchina.txt: 4083) +.on.cc/js/v2/iframe_ysm_ +# ||okbmf.com^*950_120 (easylistchina.txt: 4082) +.okbmf.com/.*950_120 +# ||ok.432kkk.com^ (easylistchina.txt: 4081) +.ok.432kkk.com +# ||oiihk.com/anime/cm.js (easylistchina.txt: 4080) +.oiihk.com/anime/cm\.js +# ||ofweek.com/StaticPage/gongkong/ad_ (easylistchina.txt: 4079) +.ofweek.com/StaticPage/gongkong/ad_ +# ||ofweek.com/pop/ad/ (easylistchina.txt: 4078) +.ofweek.com/pop/ad/ +# ||oa.hinews.cn/work/img/ (easylistchina.txt: 4077) +.oa.hinews.cn/work/img/ +# ||nvsheng.com/js/gg.js (easylistchina.txt: 4076) +.nvsheng.com/js/gg\.js +# ||nttpcs.cn/ax/incoto.gif (easylistchina.txt: 4074) +.nttpcs.cn/ax/incoto\.gif +# ||ntpcb.com/html/channel/citypark/images/p83_temp_ (easylistchina.txt: 4073) +.ntpcb.com/html/channel/citypark/images/p83_temp_ +# ||ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168.png (easylistchina.txt: 4072) +.ntpcb.com/attachment/photo/Mon_1504/480_b4401429264247e2f342edd7ba168\.png +# ||nownews.com/include_house/product.html (easylistchina.txt: 4071) +.nownews.com/include_house/product\.html +# ||nownews.com/events/ (easylistchina.txt: 4070) +.nownews.com/events/ +# ||nokiacn.net/gg*.htm (easylistchina.txt: 4069) +.nokiacn.net/gg.*\.htm +# ||nokiacn.net/baidu.htm (easylistchina.txt: 4068) +.nokiacn.net/baidu\.htm +# ||no1.168abc.net/upload/ (easylistchina.txt: 4067) +.no1.168abc.net/upload/ +# ||nnnews.net/public/xqymgg/ (easylistchina.txt: 4066) +.nnnews.net/public/xqymgg/ +# ||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds (easylistchina.txt: 4064) +.njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds +# ||niwozhi.net/960x90.gif (easylistchina.txt: 4063) +.niwozhi.net/960x90\.gif +# ||niutuku.com/skin/style2013/ad/ (easylistchina.txt: 4062) +.niutuku.com/skin/style2013/ad/ +# ||niu20.com/g/ (easylistchina.txt: 4061) +.niu20.com/g/ +# ||ngacn.cc/common_res/js_adscommon.js (easylistchina.txt: 4060) +.ngacn.cc/common_res/js_adscommon\.js +# ||nextmedia.com/web_images/recruit_banner.jpg (easylistchina.txt: 4059) +.nextmedia.com/web_images/recruit_banner\.jpg +# ||nexoncn.com/img/pic/rili.gif (easylistchina.txt: 4058) +.nexoncn.com/img/pic/rili\.gif +# ||newssc.org/2014images/cd*yy (easylistchina.txt: 4057) +.newssc.org/2014images/cd.*yy +# ||newssc.org/2014images/1378110741538.jpg (easylistchina.txt: 4056) +.newssc.org/2014images/1378110741538\.jpg +# ||newsmth.net/nForum/files/adv/ (easylistchina.txt: 4055) +.newsmth.net/nForum/files/adv/ +# ||newsmth.net/nForum/baiduunion/ (easylistchina.txt: 4054) +.newsmth.net/nForum/baiduunion/ +# ||newsgroup.la/search/ysm/pam430x80.swf (easylistchina.txt: 4053) +.newsgroup.la/search/ysm/pam430x80\.swf +# ||newsgroup.la/ad/yahoo/fad.gif (easylistchina.txt: 4052) +.newsgroup.la/ad/yahoo/fad\.gif +# ||news18a.com/image/ad_ina/ (easylistchina.txt: 4051) +.news18a.com/image/ad_ina/ +# ||news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c.png (easylistchina.txt: 4050) +.news.xdkb.net/img/attachement/png/site2/20130603/3859f9e3a59613168bea0c\.png +# ||news.tom.com/v2008.js (easylistchina.txt: 4049) +.news.tom.com/v2008\.js +# ||news.sina.com.tw/js/ti.js (easylistchina.txt: 4048) +.news.sina.com.tw/js/ti\.js +# ||news.sina.com.cn/js/792/*head*.js (easylistchina.txt: 4046) +.news.sina.com.cn/js/792/.*head.*\.js +# ||news.hz66.com/IAA/201111/ (easylistchina.txt: 4045) +.news.hz66.com/IAA/201111/ +# ||news.cn/news/ad/ (easylistchina.txt: 4044) +.news.cn/news/ad/ +# ||news.cn/forum/script/float2.js (easylistchina.txt: 4043) +.news.cn/forum/script/float2\.js +# ||news.0898.net/NMediaFile/*.swf (easylistchina.txt: 4042) +.news.0898.net/NMediaFile/.*\.swf +# ||news.0898.net/NMediaFile/*.gif (easylistchina.txt: 4041) +.news.0898.net/NMediaFile/.*\.gif +# ||newhua.com/newhuagg/gg_search_ (easylistchina.txt: 4040) +.newhua.com/newhuagg/gg_search_ +# ||new-icon.ol-img.com/jslib/ad_new.js (easylistchina.txt: 4039) +.new-icon.ol-img.com/jslib/ad_new\.js +# ||new-icon.ol-img.com/jslib/ad.down.js (easylistchina.txt: 4038) +.new-icon.ol-img.com/jslib/ad\.down\.js +# ||new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao.jpg (easylistchina.txt: 4037) +.new-icon.ol-img.com/article/xinjiemeng/img/728x90gaoxiao\.jpg +# ||netdna-cdn.com/wp-content/plugins/popover/ (easylistchina.txt: 4036) +.netdna-cdn.com/wp-content/plugins/popover/ +# ||neotv.com.cn/images/avs/tc/tc.js (easylistchina.txt: 4035) +.neotv.com.cn/images/avs/tc/tc\.js +# ||nen.com.cn/service/js/beitou (easylistchina.txt: 4034) +.nen.com.cn/service/js/beitou +# ||nen.com.cn/eap/ (easylistchina.txt: 4033) +.nen.com.cn/eap/ +# ||neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b.jpg (easylistchina.txt: 4032) +.neihanshe.cn/upload/2014-09-24/46d6992067f9ad73daffac4cd519e11b\.jpg +# ||ncnews.com.cn/statics/js/ban/ix/ban (easylistchina.txt: 4031) +.ncnews.com.cn/statics/js/ban/ix/ban +# ||ncnews.com.cn/statics/images/2015/ban/dh.swf (easylistchina.txt: 4030) +.ncnews.com.cn/statics/images/2015/ban/dh\.swf +# ||ncdiy.com/webindex/300-250AD.swf (easylistchina.txt: 4029) +.ncdiy.com/webindex/300-250AD\.swf +# ||nba.weibo.com/images/bg/bg_heat.jpg (easylistchina.txt: 4028) +.nba.weibo.com/images/bg/bg_heat\.jpg +# ||nb155.com/images/mysshok.png (easylistchina.txt: 4027) +.nb155.com/images/mysshok\.png +# ||narutom.com/v2/js/ca.js (easylistchina.txt: 4025) +.narutom.com/v2/js/ca\.js +# ||narutom.com/js/jsg2.js (easylistchina.txt: 4024) +.narutom.com/js/jsg2\.js +# ||nanrenwo.net/theme/2013/js/top.js (easylistchina.txt: 4023) +.nanrenwo.net/theme/2013/js/top\.js +# ||nanrenwo.net/theme/2013/js/popup*.js (easylistchina.txt: 4022) +.nanrenwo.net/theme/2013/js/popup.*\.js +# ||nanrenshu.com/rmb/st_dh.js (easylistchina.txt: 4021) +.nanrenshu.com/rmb/st_dh\.js +# ||nanren400.com/goto/ (easylistchina.txt: 4020) +.nanren400.com/goto/ +# ||nanhai.hinews.cn/zt/img/ (easylistchina.txt: 4019) +.nanhai.hinews.cn/zt/img/ +# ||namipan.cc/includes/js/digg.js (easylistchina.txt: 4018) +.namipan.cc/includes/js/digg\.js +# ||namipan.cc/baidu/ (easylistchina.txt: 4017) +.namipan.cc/baidu/ +# ||najiadian.cn/shuang11.js (easylistchina.txt: 4016) +.najiadian.cn/shuang11\.js +# ||n2.hk/promo/ (easylistchina.txt: 4015) +.n2.hk/promo/ +# ||mzyz.com/image*/tj/ (easylistchina.txt: 4014) +.mzyz.com/image.*/tj/ +# ||mzyfz.*/modules/46/ (easylistchina.txt: 4013) +.mzyfz.*./(.*/)?modules/46/ +# ||mywpku.com/adminvm.jpg (easylistchina.txt: 4012) +.mywpku.com/adminvm\.jpg +# ||mywpku.com/*-banner. (easylistchina.txt: 4011) +.mywpku.com/.*-banner\. +# ||myt520.com/images/jiaoyou (easylistchina.txt: 4010) +.myt520.com/images/jiaoyou +# ||myt520.com/images/4493.jpg (easylistchina.txt: 4009) +.myt520.com/images/4493\.jpg +# ||myqcloud.com/js/easou.js (easylistchina.txt: 4008) +.myqcloud.com/js/easou\.js +# ||mymusic.net.tw/upload/mobile_web_tmp/indexad01. (easylistchina.txt: 4007) +.mymusic.net.tw/upload/mobile_web_tmp/indexad01\. +# ||myhard.com/s?z= (easylistchina.txt: 4006) +.myhard.com/s\?z= +# ||myhack58.com/js/top (easylistchina.txt: 4005) +.myhack58.com/js/top +# ||myhack58.com/js/banner.js (easylistchina.txt: 4004) +.myhack58.com/js/banner\.js +# ||myhack58.com/acdb02/ (easylistchina.txt: 4003) +.myhack58.com/acdb02/ +# ||myhack58.com/abcd01/ (easylistchina.txt: 4002) +.myhack58.com/abcd01/ +# ||mydrivers.com/www/2015/s1120151105.png (easylistchina.txt: 4000) +.mydrivers.com/www/2015/s1120151105\.png +# ||mydrivers.com/www/*-1000x90. (easylistchina.txt: 3999) +.mydrivers.com/www/.*-1000x90\. +# ||mycodes.net/js/hf_txt.js (easylistchina.txt: 3998) +.mycodes.net/js/hf_txt\.js +# ||mycodes.net/js/down_txt.js (easylistchina.txt: 3997) +.mycodes.net/js/down_txt\.js +# ||mybjx.net/theme/default/js/common/mtibjx.js (easylistchina.txt: 3995) +.mybjx.net/theme/default/js/common/mtibjx\.js +# ||mybjx.net/theme/default/js/common/duilianchn.js (easylistchina.txt: 3994) +.mybjx.net/theme/default/js/common/duilianchn\.js +# ||myad.toocle.com^ (easylistchina.txt: 3993) +.myad.toocle.com +# ||my0832.com/xyz/upload/ (easylistchina.txt: 3992) +.my0832.com/xyz/upload/ +# ||my0511.com/aadd/ (easylistchina.txt: 3991) +.my0511.com/aadd/ +# ||my0511.com/*/ad_ (easylistchina.txt: 3990) +.my0511.com/.*/ad_ +# ||mxwz.com/swf/yidong2015.swf (easylistchina.txt: 3989) +.mxwz.com/swf/yidong2015\.swf +# ||mwsl.qiniudn.com/250x250- (easylistchina.txt: 3988) +.mwsl.qiniudn.com/250x250- +# ||mw6.me/images/*.gif (easylistchina.txt: 3987) +.mw6.me/images/.*\.gif +# ||muyuge.net/js/bb/ (easylistchina.txt: 3986) +.muyuge.net/js/bb/ +# ||muyuge.com/js/KillABP.js (easylistchina.txt: 3985) +.muyuge.com/js/KillABP\.js +# ||muyuge.com/js/bb/ (easylistchina.txt: 3984) +.muyuge.com/js/bb/ +# ||mtrend.cn/images/prome/ (easylistchina.txt: 3983) +.mtrend.cn/images/prome/ +# ||mtksj.com/images/ad1225.jpg (easylistchina.txt: 3982) +.mtksj.com/images/ad1225\.jpg +# ||mtime.cn/tg/ (easylistchina.txt: 3981) +.mtime.cn/tg/ +# ||mt30.com/ok/ (easylistchina.txt: 3980) +.mt30.com/ok/ +# ||msn.ynet.com/vtui_js01.js (easylistchina.txt: 3979) +.msn.ynet.com/vtui_js01\.js +# ||msn.people.com.cn/css/2010tianrun/ (easylistchina.txt: 3978) +.msn.people.com.cn/css/2010tianrun/ +# ||msn.com/homep_ad (easylistchina.txt: 3977) +.msn.com/homep_ad +# ||mscbsc.com/gbook/telecomhr292x90.gif (easylistchina.txt: 3976) +.mscbsc.com/gbook/telecomhr292x90\.gif +# ||ms211.com/js/tf.js (easylistchina.txt: 3975) +.ms211.com/js/tf\.js +# ||ms211.com/211tf/ (easylistchina.txt: 3973) +.ms211.com/211tf/ +# ||mracg.com/data/attachment/portal/201412/17/ (easylistchina.txt: 3972) +.mracg.com/data/attachment/portal/201412/17/ +# ||mql5.com/10/0/*.gif (easylistchina.txt: 3971) +.mql5.com/10/0/.*\.gif +# ||motorfans.com.cn/iggs_system/ (easylistchina.txt: 3969) +.motorfans.com.cn/iggs_system/ +# ||motorfans.com.cn/igg/ (easylistchina.txt: 3968) +.motorfans.com.cn/igg/ +# ||moratame.tw/img/contents/banner (easylistchina.txt: 3967) +.moratame.tw/img/contents/banner +# ||mopxing.com/skin/sex/js/*content (easylistchina.txt: 3966) +.mopxing.com/skin/sex/js/.*content +# ||mopxing.com/skin/sex/js/*banner (easylistchina.txt: 3965) +.mopxing.com/skin/sex/js/.*banner +# ||mopxing.com/skin/sex/js/*ad (easylistchina.txt: 3964) +.mopxing.com/skin/sex/js/.*ad +# ||mopimg.cn/dc/ (easylistchina.txt: 3963) +.mopimg.cn/dc/ +# ||moonbt.com/template/skin1/images/g_js/ (easylistchina.txt: 3962) +.moonbt.com/template/skin1/images/g_js/ +# ||moonbbs.com/static/image/banner/fashionmoon.png (easylistchina.txt: 3961) +.moonbbs.com/static/image/banner/fashionmoon\.png +# ||moonbbs.com/data/attachment/portal/ (easylistchina.txt: 3960) +.moonbbs.com/data/attachment/portal/ +# ||monnsutogatya.com/himg/monst/ (easylistchina.txt: 3959) +.monnsutogatya.com/himg/monst/ +# ||moneyweekly.com.tw/Uploads/AD/*970x (easylistchina.txt: 3958) +.moneyweekly.com.tw/Uploads/AD/.*970x +# ||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD (easylistchina.txt: 3957) +.moneyweekly.com.tw/UC/JQueryJson\.aspx/MwAD +# ||money.qz828.com^ (easylistchina.txt: 3956) +.money.qz828.com +# ||money.bumimi.com^ (easylistchina.txt: 3955) +.money.bumimi.com +# ||moe123.com/static/img/2014_fattycat.jpg (easylistchina.txt: 3952) +.moe123.com/static/img/2014_fattycat\.jpg +# ||moe.la/images/banner/ (easylistchina.txt: 3951) +.moe.la/images/banner/ +# ||moe.fm/public/images/fm/promotion_ (easylistchina.txt: 3950) +.moe.fm/public/images/fm/promotion_ +# ||mobile01.com/300x100.swf (easylistchina.txt: 3949) +.mobile01.com/300x100\.swf +# ||mnw.cn/script/info/baiduadm.html? (easylistchina.txt: 3948) +.mnw.cn/script/info/baiduadm\.html\? +# ||mmtalk.net/images/banner (easylistchina.txt: 3947) +.mmtalk.net/images/banner +# ||mm387.com/images/*.gif (easylistchina.txt: 3946) +.mm387.com/images/.*\.gif +# ||mlbuy.com/gg.js (easylistchina.txt: 3945) +.mlbuy.com/gg\.js +# ||miyun360.com/data/attachment/portal/ (easylistchina.txt: 3944) +.miyun360.com/data/attachment/portal/ +# ||mitbbs.com/ad_ (easylistchina.txt: 3943) +.mitbbs.com/ad_ +# ||mitbbs.ca/ad_ (easylistchina.txt: 3942) +.mitbbs.ca/ad_ +# ||mitbbs.*/servicedata/static_ad.php (easylistchina.txt: 3941) +.mitbbs.*./(.*/)?servicedata/static_ad\.php +# ||missyuan.com/sy/ (easylistchina.txt: 3940) +.missyuan.com/sy/ +# ||misaka.cn^*/600px- (easylistchina.txt: 3939) +.misaka.cn/.*/600px- +# ||mimg.127.net/ggimg/all/img18/140218_yixin_780x96.jpg (easylistchina.txt: 3938) +.mimg.127.net/ggimg/all/img18/140218_yixin_780x96\.jpg +# ||miljinhua.com/GD/ (easylistchina.txt: 3937) +.miljinhua.com/GD/ +# ||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html (easylistchina.txt: 3936) +.mil.news.sina.com.cn/iframe/109/2013/1015/hotpic\.html +# ||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html (easylistchina.txt: 3935) +.mil.news.sina.com.cn/iframe/109/2012/1024/photo\.html +# ||mil.news.sina.com.cn/iframe/*/slideiframe.html (easylistchina.txt: 3934) +.mil.news.sina.com.cn/iframe/.*/slideiframe\.html +# ||mifengtd.cn/ad- (easylistchina.txt: 3933) +.mifengtd.cn/ad- +# ||midifan.com/aaa/ (easylistchina.txt: 3932) +.midifan.com/aaa/ +# ||microcontrol.cn/HomeImages/AD/ (easylistchina.txt: 3931) +.microcontrol.cn/HomeImages/AD/ +# ||microcontrol.cn/bbs/images/AD755_150.swf (easylistchina.txt: 3930) +.microcontrol.cn/bbs/images/AD755_150\.swf +# ||mianbao99.com/bd/ (easylistchina.txt: 3929) +.mianbao99.com/bd/ +# ||mianbao99.com/a/mianbao/indextan.js (easylistchina.txt: 3928) +.mianbao99.com/a/mianbao/indextan\.js +# ||mhhf.net/fserFiles/711x90.jpg (easylistchina.txt: 3927) +.mhhf.net/fserFiles/711x90\.jpg +# ||mgbbs.cn/js/float.js (easylistchina.txt: 3926) +.mgbbs.cn/js/float\.js +# ||mfxp.com/images/ (easylistchina.txt: 3925) +.mfxp.com/images/ +# ||mfacelive.com/Scripts/social/openchannel_min.js (easylistchina.txt: 3924) +.mfacelive.com/Scripts/social/openchannel_min\.js +# ||meizhou.com/images/topbanner (easylistchina.txt: 3923) +.meizhou.com/images/topbanner +# ||meitu.com/js/floatxiuxiu.js (easylistchina.txt: 3922) +.meitu.com/js/floatxiuxiu\.js +# ||meishichina.com/v3/ (easylistchina.txt: 3921) +.meishichina.com/v3/ +# ||meinv.com/templates/meinv/js/*_banner.js (easylistchina.txt: 3920) +.meinv.com/templates/meinv/js/.*_banner\.js +# ||meiliren.net/tuijs/ (easylistchina.txt: 3918) +.meiliren.net/tuijs/ +# ||meilele.com/js/recad. (easylistchina.txt: 3917) +.meilele.com/js/recad\. +# ||media.cheshi-img.com^ (easylistchina.txt: 3914) +.media.cheshi-img.com +# ||mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ (easylistchina.txt: 3912) +.mcxiaobu.com/zb_users/theme/LuSongSong/style/ads/ +# ||mcncc.com/yeyou/gg.js (easylistchina.txt: 3911) +.mcncc.com/yeyou/gg\.js +# ||mcncc.com/yeyou/*.htm (easylistchina.txt: 3910) +.mcncc.com/yeyou/.*\.htm +# ||mbalib.com/wiki/common/wikibits.js (easylistchina.txt: 3909) +.mbalib.com/wiki/common/wikibits\.js +# ||maxthonimg.com/cp/ad/1420792739.jpg (easylistchina.txt: 3908) +.maxthonimg.com/cp/ad/1420792739\.jpg +# ||maxthonimg.com/cp/ad/1420765807.jpg (easylistchina.txt: 3907) +.maxthonimg.com/cp/ad/1420765807\.jpg +# ||mat1.gtimg.com/ent/flash/*300 (easylistchina.txt: 3906) +.mat1.gtimg.com/ent/flash/.*300 +# ||mat1.gtimg.com/cq/flash/ (easylistchina.txt: 3905) +.mat1.gtimg.com/cq/flash/ +# ||mat1.gtimg.com/2014/webtips/ola2014tips (easylistchina.txt: 3904) +.mat1.gtimg.com/2014/webtips/ola2014tips +# ||mat1.gtimg.com/2014/vikkydu/GA/haier (easylistchina.txt: 3903) +.mat1.gtimg.com/2014/vikkydu/GA/haier +# ||masok.cn/red/ (easylistchina.txt: 3902) +.masok.cn/red/ +# ||masadora.net/kakusan- (easylistchina.txt: 3901) +.masadora.net/kakusan- +# ||marstv.com/uploadfile/game/20150728/1438055654.png (easylistchina.txt: 3900) +.marstv.com/uploadfile/game/20150728/1438055654\.png +# ||market.duowan.com^ (easylistchina.txt: 3899) +.market.duowan.com +# ||market.21cn.com^ (easylistchina.txt: 3898) +.market.21cn.com +# ||market.178.com^ (easylistchina.txt: 3897) +.market.178.com +# ||maolihui.com/wp-content/themes/miaonew/images/adb (easylistchina.txt: 3896) +.maolihui.com/wp-content/themes/miaonew/images/adb +# ||manage.wdfans.cn^ (easylistchina.txt: 3895) +.manage.wdfans.cn +# ||manads.static.olcdn.com^ (easylistchina.txt: 3894) +.manads.static.olcdn.com +# ||mall.xinkuaituan.com/zhuanti/ (easylistchina.txt: 3893) +.mall.xinkuaituan.com/zhuanti/ +# ||maituan.com/admin/indexflash/pic/gg (easylistchina.txt: 3892) +.maituan.com/admin/indexflash/pic/gg +# ||maipiao.96900.com.cn/jtjt/js/jtjtgg.js (easylistchina.txt: 3891) +.maipiao.96900.com.cn/jtjt/js/jtjtgg\.js +# ||maipiao.96900.com.cn/js/indexgg (easylistchina.txt: 3890) +.maipiao.96900.com.cn/js/indexgg +# ||mail.qq.com/lview? (easylistchina.txt: 3889) +.mail.qq.com/lview\? +# ||mail.pchome.com.tw/img/classifieds/300120.gif (easylistchina.txt: 3888) +.mail.pchome.com.tw/img/classifieds/300120\.gif +# ||mahua.com/www/default/js/replace_ab.js (easylistchina.txt: 3887) +.mahua.com/www/default/js/replace_ab\.js +# ||mahua.com/www/default/js/mahua_show.js (easylistchina.txt: 3886) +.mahua.com/www/default/js/mahua_show\.js +# ||macx.cn/js/f.txt.js (easylistchina.txt: 3884) +.macx.cn/js/f\.txt\.js +# ||macd.cn/macd-topads.html (easylistchina.txt: 3883) +.macd.cn/macd-topads\.html +# ||macappbox.com/d/file/p/*.gif (easylistchina.txt: 3882) +.macappbox.com/d/file/p/.*\.gif +# ||ma.baiducdn2.com^*/main.js?t= (easylistchina.txt: 3881) +.ma.baiducdn2.com/.*/main\.js\?t= +# ||m1905.com/asp_js/k.js (easylistchina.txt: 3880) +.m1905.com/asp_js/k\.js +# ||m1905.cn/images/video/BannerImg (easylistchina.txt: 3879) +.m1905.cn/images/video/BannerImg +# ||m1905.cn/images/bg_index_hgn.jpg (easylistchina.txt: 3878) +.m1905.cn/images/bg_index_hgn\.jpg +# ||m1905.cn/afp/mdsfw.js (easylistchina.txt: 3877) +.m1905.cn/afp/mdsfw\.js +# ||m.aty.sohu.com^ (easylistchina.txt: 3875) +.m.aty.sohu.com +# ||lzqss.net/data/attachment/portal/ (easylistchina.txt: 3874) +.lzqss.net/data/attachment/portal/ +# ||lzep.cn^*/2014ad/ (easylistchina.txt: 3873) +.lzep.cn/.*/2014ad/ +# ||lzep.cn^*/2013ad/ (easylistchina.txt: 3872) +.lzep.cn/.*/2013ad/ +# ||lzep.cn/uploadfile/hftv/2014/0901/20140901044836216.jpg (easylistchina.txt: 3871) +.lzep.cn/uploadfile/hftv/2014/0901/20140901044836216\.jpg +# ||lzep.cn/images/*/ad (easylistchina.txt: 3870) +.lzep.cn/images/.*/ad +# ||lzep.cn/ep/sda/*_300X (easylistchina.txt: 3869) +.lzep.cn/ep/sda/.*_300X +# ||lzep.cn/ep/sda/*_1000x60_ (easylistchina.txt: 3868) +.lzep.cn/ep/sda/.*_1000x60_ +# ||lzep.cn/ep/old/finance/ad (easylistchina.txt: 3867) +.lzep.cn/ep/old/finance/ad +# ||lzep.cn/ep/js/index_window.js (easylistchina.txt: 3866) +.lzep.cn/ep/js/index_window\.js +# ||lzep.cn/ep/ads/ (easylistchina.txt: 3865) +.lzep.cn/ep/ads/ +# ||lzep.cn/data/js/1*.js (easylistchina.txt: 3864) +.lzep.cn/data/js/1.*\.js +# ||lz.chinanews.com/images/flash/00.swf (easylistchina.txt: 3863) +.lz.chinanews.com/images/flash/00\.swf +# ||lywww.com/index_topa.php (easylistchina.txt: 3862) +.lywww.com/index_topa\.php +# ||lywww.com/header_pic.php (easylistchina.txt: 3861) +.lywww.com/header_pic\.php +# ||lywww.com/data/js/3 (easylistchina.txt: 3860) +.lywww.com/data/js/3 +# ||lywww.com/data/js/2 (easylistchina.txt: 3859) +.lywww.com/data/js/2 +# ||lywww.com/data/js/1 (easylistchina.txt: 3858) +.lywww.com/data/js/1 +# ||lywww.com/data/js.php?id= (easylistchina.txt: 3857) +.lywww.com/data/js\.php\?id= +# ||lyd.com.cn^*950-90. (easylistchina.txt: 3856) +.lyd.com.cn/.*950-90\. +# ||ly.js.cn/adv/ (easylistchina.txt: 3854) +.ly.js.cn/adv/ +# ||lxty66.com/js/float.js (easylistchina.txt: 3853) +.lxty66.com/js/float\.js +# ||lxting.com^ (easylistchina.txt: 3852) +.lxting.com +# ||luuu1.com/g/ (easylistchina.txt: 3851) +.luuu1.com/g/ +# ||luckstatic.v1.cn/st/10000/ (easylistchina.txt: 3850) +.luckstatic.v1.cn/st/10000/ +# ||ltxszw.com/js/350.png (easylistchina.txt: 3849) +.ltxszw.com/js/350\.png +# ||ltwbook.com/js/l_ (easylistchina.txt: 3848) +.ltwbook.com/js/l_ +# ||lrjz100.u.qiniudn.com/rmb/bxd.jpg (easylistchina.txt: 3847) +.lrjz100.u.qiniudn.com/rmb/bxd\.jpg +# ||loveshang.com/pic/*.swf (easylistchina.txt: 3846) +.loveshang.com/pic/.*\.swf +# ||lotour.com/Honda/ad/ (easylistchina.txt: 3845) +.lotour.com/Honda/ad/ +# ||look4lib.com/js/bnr_ (easylistchina.txt: 3844) +.look4lib.com/js/bnr_ +# ||longyu.cc/bucket/flash/ (easylistchina.txt: 3843) +.longyu.cc/bucket/flash/ +# ||longyu.cc/adg/ (easylistchina.txt: 3842) +.longyu.cc/adg/ +# ||longbahao.com/js/ad- (easylistchina.txt: 3841) +.longbahao.com/js/ad- +# ||longbahao.com/asd.js (easylistchina.txt: 3840) +.longbahao.com/asd\.js +# ||loldk.com/res/media/fanxing_ (easylistchina.txt: 3839) +.loldk.com/res/media/fanxing_ +# ||lofter.com/mailEntryMobile.do (easylistchina.txt: 3838) +.lofter.com/mailEntryMobile\.do +# ||lofter.com/mailEntry.do?*ad= (easylistchina.txt: 3837) +.lofter.com/mailEntry\.do\?.*ad= +# ||lnzq5.com/js/shuanglian.js (easylistchina.txt: 3836) +.lnzq5.com/js/shuanglian\.js +# ||lnd.com.cn/site1/*.swf (easylistchina.txt: 3835) +.lnd.com.cn/site1/.*\.swf +# ||ln.xinhuanet.com/inc/ (easylistchina.txt: 3834) +.ln.xinhuanet.com/inc/ +# ||ljia.net/vipflash/pop_footer.js (easylistchina.txt: 3833) +.ljia.net/vipflash/pop_footer\.js +# ||liyuanwang.com/nongli.gif (easylistchina.txt: 3832) +.liyuanwang.com/nongli\.gif +# ||livefilestore.com^*/imj160x200.gif (easylistchina.txt: 3831) +.livefilestore.com/.*/imj160x200\.gif +# ||liveany.com/images/8d8d.gif (easylistchina.txt: 3830) +.liveany.com/images/8d8d\.gif +# ||linuxidc.com/linuxfile/y9.js (easylistchina.txt: 3829) +.linuxidc.com/linuxfile/y9\.js +# ||linuxidc.com/linuxfile/list (easylistchina.txt: 3828) +.linuxidc.com/linuxfile/list +# ||linuxeden.com/plus/web_js.php (easylistchina.txt: 3826) +.linuxeden.com/plus/web_js\.php +# ||linkwan.com/gb/javascript/c5- (easylistchina.txt: 3825) +.linkwan.com/gb/javascript/c5- +# ||linkwan.com/gb/javascript/b4.js (easylistchina.txt: 3824) +.linkwan.com/gb/javascript/b4\.js +# ||linkwan.com/gb/broadmeter/speed/cp.js (easylistchina.txt: 3823) +.linkwan.com/gb/broadmeter/speed/cp\.js +# ||links.cn/mmshow (easylistchina.txt: 3822) +.links.cn/mmshow +# ||linkhelper.cn/mmshow (easylistchina.txt: 3821) +.linkhelper.cn/mmshow +# ||link.fobshanghai.com^ (easylistchina.txt: 3820) +.link.fobshanghai.com +# ||lingdian98.com^ (easylistchina.txt: 3819) +.lingdian98.com +# ||life.e0575.com^ (easylistchina.txt: 3818) +.life.e0575.com +# ||liepin.com/event/jobadver/ (easylistchina.txt: 3817) +.liepin.com/event/jobadver/ +# ||licai18.com/pic/*.swf (easylistchina.txt: 3816) +.licai18.com/pic/.*\.swf +# ||liba.com/ads/ (easylistchina.txt: 3814) +.liba.com/ads/ +# ||liaoxuefeng.com/files/attachments/00144*/0 (easylistchina.txt: 3813) +.liaoxuefeng.com/files/attachments/00144.*/0 +# ||liaoing.com/image/picture_g/zhengzhou/index/*.swf (easylistchina.txt: 3812) +.liaoing.com/image/picture_g/zhengzhou/index/.*\.swf +# ||liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng.swf (easylistchina.txt: 3811) +.liaoing.com/haibao/2013/800zhinengsuo_0702/zhineng\.swf +# ||liaoing.com/egou/ (easylistchina.txt: 3810) +.liaoing.com/egou/ +# ||liao1.com/publicize/file/news_detail_ (easylistchina.txt: 3809) +.liao1.com/publicize/file/news_detail_ +# ||liao1.com/js/floatVideoAd.js (easylistchina.txt: 3808) +.liao1.com/js/floatVideoAd\.js +# ||liangzijie.com/Runtime/ (easylistchina.txt: 3807) +.liangzijie.com/Runtime/ +# ||liangjan.com/style/img/banner (easylistchina.txt: 3806) +.liangjan.com/style/img/banner +# ||liangjan.com/js/show_ (easylistchina.txt: 3805) +.liangjan.com/js/show_ +# ||liangchan.net/adf/ (easylistchina.txt: 3804) +.liangchan.net/adf/ +# ||liangchan.net/aaddaadd/ (easylistchina.txt: 3803) +.liangchan.net/aaddaadd/ +# ||lh168.net^*/attachment/portal/ (easylistchina.txt: 3802) +.lh168.net/.*/attachment/portal/ +# ||lh168.net/extra/ads/ (easylistchina.txt: 3801) +.lh168.net/extra/ads/ +# ||lezhuan.com/js/spread.js (easylistchina.txt: 3800) +.lezhuan.com/js/spread\.js +# ||letvimg.com^*_phone/ (easylistchina.txt: 3799) +.letvimg.com/.*_phone/ +# ||letvimg.com/img/201503/19/uc1/ (easylistchina.txt: 3797) +.letvimg.com/img/201503/19/uc1/ +# ||letvimg.com/gugwl/*.swf (easylistchina.txt: 3796) +.letvimg.com/gugwl/.*\.swf +# ||letvcdn.com/js/*_focus_flash.js (easylistchina.txt: 3794) +.letvcdn.com/js/.*_focus_flash\.js +# ||letv.com/s?ark=*&cis= (easylistchina.txt: 3793) +.letv.com/s\?ark=.*&cis= +# ||letv.com/pzt/hyhmzq/index.shtml (easylistchina.txt: 3792) +.letv.com/pzt/hyhmzq/index\.shtml +# ||letsebuy.com/static/image/common/dm_cn_130.jpg (easylistchina.txt: 3791) +.letsebuy.com/static/image/common/dm_cn_130\.jpg +# ||leshen.com/skin/m/action/ad. (easylistchina.txt: 3790) +.leshen.com/skin/m/action/ad\. +# ||lepan.cc/images/yd/ (easylistchina.txt: 3789) +.lepan.cc/images/yd/ +# ||lelevod.com/js/abc/t (easylistchina.txt: 3788) +.lelevod.com/js/abc/t +# ||lelevod.com/js/abc/p (easylistchina.txt: 3787) +.lelevod.com/js/abc/p +# ||lekan.com^*&stopTime= (easylistchina.txt: 3786) +.lekan.com/.*&stopTime= +# ||leiting001.com/bg/ltgg/ (easylistchina.txt: 3785) +.leiting001.com/bg/ltgg/ +# ||leiqun.snxyf.com^ (easylistchina.txt: 3784) +.leiqun.snxyf.com +# ||lecai.com/page/zhuanti/baidu/ (easylistchina.txt: 3783) +.lecai.com/page/zhuanti/baidu/ +# ||ld0766.com/*20*a/ (easylistchina.txt: 3782) +.ld0766.com/.*20.*a/ +# ||lbx777.com/z_gegz/pic/ (easylistchina.txt: 3781) +.lbx777.com/z_gegz/pic/ +# ||lbx777.*/css/lbxgg02 (easylistchina.txt: 3780) +.lbx777.*./(.*/)?css/lbxgg02 +# ||lbx777.*/css/300.js (easylistchina.txt: 3779) +.lbx777.*./(.*/)?css/300\.js +# ||lawtv.com.cn/skin/stop.swf (easylistchina.txt: 3778) +.lawtv.com.cn/skin/stop\.swf +# ||law-lib.com/2009_ad/ (easylistchina.txt: 3777) +.law-lib.com/2009_ad/ +# ||laozuo.org/wp-content/themes/weisaysimple/js/single-bottom.js (easylistchina.txt: 3776) +.laozuo.org/wp-content/themes/weisaysimple/js/single-bottom\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/sidebar (easylistchina.txt: 3775) +.laozuo.org/wp-content/themes/weisaysimple/js/sidebar +# ||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js (easylistchina.txt: 3774) +.laozuo.org/wp-content/themes/weisaysimple/js/index-top\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js (easylistchina.txt: 3773) +.laozuo.org/wp-content/themes/weisaysimple/js/content40width\.js +# ||laozuo.org/wp-content/themes/weisaysimple/js/banner.js (easylistchina.txt: 3772) +.laozuo.org/wp-content/themes/weisaysimple/js/banner\.js +# ||laoyuegou.com/js/*_couplet_ (easylistchina.txt: 3771) +.laoyuegou.com/js/.*_couplet_ +# ||laoyuegou.com/img/*/banner/ (easylistchina.txt: 3770) +.laoyuegou.com/img/.*/banner/ +# ||laonanren.com/oldman/ (easylistchina.txt: 3769) +.laonanren.com/oldman/ +# ||laogu.com/my/ad (easylistchina.txt: 3768) +.laogu.com/my/ad +# ||laogu.com/laogubbs/my/ (easylistchina.txt: 3767) +.laogu.com/laogubbs/my/ +# ||laod.cn/wp-content/uploads/*/AD (easylistchina.txt: 3766) +.laod.cn/wp-content/uploads/.*/AD +# ||lanxicy.com/images/rili.gif (easylistchina.txt: 3765) +.lanxicy.com/images/rili\.gif +# ||lanrenzhijia.com/uploads/ibeifeng (easylistchina.txt: 3764) +.lanrenzhijia.com/uploads/ibeifeng +# ||langya.cn/images/ad_down.js (easylistchina.txt: 3763) +.langya.cn/images/ad_down\.js +# ||langya.cn/2014html/ad/ (easylistchina.txt: 3762) +.langya.cn/2014html/ad/ +# ||langya.cn/2014html/2014ad_ (easylistchina.txt: 3761) +.langya.cn/2014html/2014ad_ +# ||language-center.com.tw/udn/ (easylistchina.txt: 3759) +.language-center.com.tw/udn/ +# ||landiannews.com/tui/ (easylistchina.txt: 3758) +.landiannews.com/tui/ +# ||lancdn.com/diannet/media1/diannet_tool_336_280_ (easylistchina.txt: 3757) +.lancdn.com/diannet/media1/diannet_tool_336_280_ +# ||laixi.com/tp/20 (easylistchina.txt: 3756) +.laixi.com/tp/20 +# ||lagou.com/js/cooperation/ (easylistchina.txt: 3755) +.lagou.com/js/cooperation/ +# ||lady1314.com.cn/addata/ (easylistchina.txt: 3753) +.lady1314.com.cn/addata/ +# ||lady100.net/top.js (easylistchina.txt: 3752) +.lady100.net/top\.js +# ||lady100.net/760-90.js (easylistchina.txt: 3751) +.lady100.net/760-90\.js +# ||l7po.com/templates/ff_style/led/ (easylistchina.txt: 3750) +.l7po.com/templates/ff_style/led/ +# ||l7po.com/images/tree/ (easylistchina.txt: 3749) +.l7po.com/images/tree/ +# ||l.qq.com/lview? (easylistchina.txt: 3748) +.l.qq.com/lview\? +# ||kyocdn.com/upload/1316059709x983128031.gif (easylistchina.txt: 3747) +.kyocdn.com/upload/1316059709x983128031\.gif +# ||kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv.jpg (easylistchina.txt: 3746) +.kyocdn.com/forum/201312/20/151925t52ey4l34ck0lkgv\.jpg +# ||kviso.com/ddnew/kviso (easylistchina.txt: 3745) +.kviso.com/ddnew/kviso +# ||kutj.com/*/*x80.jpg (easylistchina.txt: 3744) +.kutj.com/.*/.*x80\.jpg +# ||kukudm.com/js/play- (easylistchina.txt: 3743) +.kukudm.com/js/play- +# ||kukudm.com/js/comic- (easylistchina.txt: 3742) +.kukudm.com/js/comic- +# ||kuaile222.com//template/cpanew/images/796054.gif (easylistchina.txt: 3741) +# ||kuaihou.com/c/you1.js (easylistchina.txt: 3740) +.kuaihou.com/c/you1\.js +# ||kuaihou.com/c/shuoming.js (easylistchina.txt: 3739) +.kuaihou.com/c/shuoming\.js +# ||kuaihei.com/js/xiazaishang.js (easylistchina.txt: 3738) +.kuaihei.com/js/xiazaishang\.js +# ||kuaihei.com/js/view.js (easylistchina.txt: 3737) +.kuaihei.com/js/view\.js +# ||kuaihei.com/js/980 (easylistchina.txt: 3736) +.kuaihei.com/js/980 +# ||ku6cdn.com/comm/v/0.1.0/mm.png (easylistchina.txt: 3735) +.ku6cdn.com/comm/v/0\.1\.0/mm\.png +# ||ku6.com^*/index.shtml (easylistchina.txt: 3734) +.ku6.com/.*/index\.shtml +# ||ktzhk.com/plugins/cache_template/adv_3b2g.js (easylistchina.txt: 3733) +.ktzhk.com/plugins/cache_template/adv_3b2g\.js +# ||ktzhk.com/file/adv/ (easylistchina.txt: 3732) +.ktzhk.com/file/adv/ +# ||ktkkt.com/js/cnbeta/ (easylistchina.txt: 3731) +.ktkkt.com/js/cnbeta/ +# ||kt51.com/app.js (easylistchina.txt: 3730) +.kt51.com/app\.js +# ||ksvcd.com/images/ (easylistchina.txt: 3729) +.ksvcd.com/images/ +# ||kp52.cc/data/attachment/portal/ (easylistchina.txt: 3727) +.kp52.cc/data/attachment/portal/ +# ||koopan.com/%5Cad/ (easylistchina.txt: 3726) +.koopan.com/%5Cad/ +# ||knnwdyou.com^ (easylistchina.txt: 3725) +.knnwdyou.com +# ||kmplayer.cn/include/jscript/*-b.js (easylistchina.txt: 3724) +.kmplayer.cn/include/jscript/.*-b\.js +# ||kmplayer.cn/include/jscript/*-a.js (easylistchina.txt: 3723) +.kmplayer.cn/include/jscript/.*-a\.js +# ||klss.cn/jc/ (easylistchina.txt: 3722) +.klss.cn/jc/ +# ||klgwdh.com/pp.php (easylistchina.txt: 3721) +.klgwdh.com/pp\.php +# ||kkkmh.com/javascripts/abcde/ (easylistchina.txt: 3720) +.kkkmh.com/javascripts/abcde/ +# ||kkkmh.com/iframe/ (easylistchina.txt: 3719) +.kkkmh.com/iframe/ +# ||kk55.net/beitou.js (easylistchina.txt: 3718) +.kk55.net/beitou\.js +# ||kikicici.com/up_files/2013-11-25/ (easylistchina.txt: 3717) +.kikicici.com/up_files/2013-11-25/ +# ||kiees.cn/img/nz.png (easylistchina.txt: 3716) +.kiees.cn/img/nz\.png +# ||kiees.cn/img/jm.png (easylistchina.txt: 3715) +.kiees.cn/img/jm\.png +# ||kfs.io/article5/global/*/original.gif (easylistchina.txt: 3714) +.kfs.io/article5/global/.*/original\.gif +# ||kf.abab.com/index.php? (easylistchina.txt: 3713) +.kf.abab.com/index\.php\? +# ||keywin.org/templates/kw_v2/images/youbianad.png (easylistchina.txt: 3712) +.keywin.org/templates/kw_v2/images/youbianad\.png +# ||key8.com/cache/www/banner_ (easylistchina.txt: 3711) +.key8.com/cache/www/banner_ +# ||kelepan.com/yunfaka.gif (easylistchina.txt: 3710) +.kelepan.com/yunfaka\.gif +# ||kelepan.com/cp (easylistchina.txt: 3709) +.kelepan.com/cp +# ||kekenet.com/images/*990 (easylistchina.txt: 3708) +.kekenet.com/images/.*990 +# ||kekenet.com/images/*980 (easylistchina.txt: 3707) +.kekenet.com/images/.*980 +# ||kekenet.com/Images/*/tom640X40.gif (easylistchina.txt: 3706) +.kekenet.com/Images/.*/tom640X40\.gif +# ||kekenet.com/images/*/tom468X60.gif (easylistchina.txt: 3705) +.kekenet.com/images/.*/tom468X60\.gif +# ||kdhome.net/templets/default/img/bottomadv.jpg (easylistchina.txt: 3704) +.kdhome.net/templets/default/img/bottomadv\.jpg +# ||kcjc.net/data/attachment/portal/ (easylistchina.txt: 3703) +.kcjc.net/data/attachment/portal/ +# ||kanpp.net/Uploads/ad/ (easylistchina.txt: 3701) +.kanpp.net/Uploads/ad/ +# ||kankanmi.com/js/zjgg (easylistchina.txt: 3700) +.kankanmi.com/js/zjgg +# ||kan84.net/js/bdgg/ (easylistchina.txt: 3699) +.kan84.net/js/bdgg/ +# ||kan300.com/js/union/ (easylistchina.txt: 3698) +.kan300.com/js/union/ +# ||kamlm.com/kmgg (easylistchina.txt: 3697) +.kamlm.com/kmgg +# ||kaixin001.com.cn/js/cpm- (easylistchina.txt: 3696) +.kaixin001.com.cn/js/cpm- +# ||kaikaimao.net/static/zx.jpg (easylistchina.txt: 3695) +.kaikaimao.net/static/zx\.jpg +# ||k886.net/comic-toplist (easylistchina.txt: 3694) +.k886.net/comic-toplist +# ||k7mm.com/js/t*.js (easylistchina.txt: 3693) +.k7mm.com/js/t.*\.js +# ||k618.cn/tlgg/ (easylistchina.txt: 3692) +.k618.cn/tlgg/ +# ||jznews.com.cn/js/topad (easylistchina.txt: 3689) +.jznews.com.cn/js/topad +# ||jznews.com.cn/js/n_two.js (easylistchina.txt: 3688) +.jznews.com.cn/js/n_two\.js +# ||jznews.com.cn/js/adtwo.js (easylistchina.txt: 3687) +.jznews.com.cn/js/adtwo\.js +# ||jznews.com.cn/js/*_tc.js (easylistchina.txt: 3686) +.jznews.com.cn/js/.*_tc\.js +# ||jznews.com.cn/comnews/js/ad_tanchuang.js (easylistchina.txt: 3685) +.jznews.com.cn/comnews/js/ad_tanchuang\.js +# ||jzhome.cn/Public/Js/top.js (easylistchina.txt: 3684) +.jzhome.cn/Public/Js/top\.js +# ||jzhome.cn/Public/images/jyt.gif (easylistchina.txt: 3683) +.jzhome.cn/Public/images/jyt\.gif +# ||jz5u.com/new/ (easylistchina.txt: 3682) +.jz5u.com/new/ +# ||jz123.cn/kanli/ (easylistchina.txt: 3680) +.jz123.cn/kanli/ +# ||jxold.com/index.php?m=poster& (easylistchina.txt: 3679) +.jxold.com/index\.php\?m=poster& +# ||jxnews.com.cn/jxcn/con_ad_title.js (easylistchina.txt: 3678) +.jxnews.com.cn/jxcn/con_ad_title\.js +# ||jxgdw.com/images/jdgg.jpg (easylistchina.txt: 3677) +.jxgdw.com/images/jdgg\.jpg +# ||jxgdw.com/2013images/ad/ (easylistchina.txt: 3676) +.jxgdw.com/2013images/ad/ +# ||jxdown.com/statics/js/all.js (easylistchina.txt: 3675) +.jxdown.com/statics/js/all\.js +# ||jxcn.cn/js/hotpic_ (easylistchina.txt: 3674) +.jxcn.cn/js/hotpic_ +# ||jxcn.cn/images/banner/ (easylistchina.txt: 3673) +.jxcn.cn/images/banner/ +# ||jxad.jx163.com^ (easylistchina.txt: 3672) +.jxad.jx163.com +# ||jx.xinhuanet.com/*banner/ (easylistchina.txt: 3671) +.jx.xinhuanet.com/.*banner/ +# ||juxiangyou.com/images/tgsc/960x80.gif (easylistchina.txt: 3670) +.juxiangyou.com/images/tgsc/960x80\.gif +# ||juxiangyou.com/images/tgsc/250x250.gif (easylistchina.txt: 3669) +.juxiangyou.com/images/tgsc/250x250\.gif +# ||juxia.com/public/js/juxia.js (easylistchina.txt: 3668) +.juxia.com/public/js/juxia\.js +# ||juxia.com/public/js/foot.js (easylistchina.txt: 3667) +.juxia.com/public/js/foot\.js +# ||junpinzhi.cn/qixing365/attachment/portal/ (easylistchina.txt: 3666) +.junpinzhi.cn/qixing365/attachment/portal/ +# ||juksy.com/scripts/jquery.blockUI.js (easylistchina.txt: 3664) +.juksy.com/scripts/jquery\.blockUI\.js +# ||jtyskq.com^*/js/_a.js (easylistchina.txt: 3663) +.jtyskq.com/.*/js/_a\.js +# ||jthysh.com/uploadfile/poster/trt.swf (easylistchina.txt: 3662) +.jthysh.com/uploadfile/poster/trt\.swf +# ||jswangpan.com/haha728.gif (easylistchina.txt: 3661) +.jswangpan.com/haha728\.gif +# ||jswangpan.com/3*.gif (easylistchina.txt: 3660) +.jswangpan.com/3.*\.gif +# ||jsw.com.cn^*/index.htm (easylistchina.txt: 3659) +.jsw.com.cn/.*/index\.htm +# ||jstv.com/static_files/zones/87/ (easylistchina.txt: 3658) +.jstv.com/static_files/zones/87/ +# ||jstv.com/static_files/zones/165/165.js (easylistchina.txt: 3657) +.jstv.com/static_files/zones/165/165\.js +# ||jstv.com//static_files/zones/132/132.js (easylistchina.txt: 3656) +# ||jsshuba.com/js/tongji.js (easylistchina.txt: 3655) +.jsshuba.com/js/tongji\.js +# ||jsshuba.com/js/gg.js (easylistchina.txt: 3654) +.jsshuba.com/js/gg\.js +# ||jsshuba.com/js/bdhengfu.js (easylistchina.txt: 3653) +.jsshuba.com/js/bdhengfu\.js +# ||js0573.com/images/cus/ (easylistchina.txt: 3652) +.js0573.com/images/cus/ +# ||js.youxi369.com^ (easylistchina.txt: 3651) +.js.youxi369.com +# ||js.tv.itc.cn/site/play/v*/vip_discount_ (easylistchina.txt: 3650) +.js.tv.itc.cn/site/play/v.*/vip_discount_ +# ||js.tlt.cn/js/ (easylistchina.txt: 3648) +.js.tlt.cn/js/ +# ||js.shiwt.com/110.js (easylistchina.txt: 3647) +.js.shiwt.com/110\.js +# ||js.pub.tom.com^ (easylistchina.txt: 3646) +.js.pub.tom.com +# ||js.mumayi.net/jiujiang (easylistchina.txt: 3645) +.js.mumayi.net/jiujiang +# ||js.mumayi.net/9495.gif (easylistchina.txt: 3644) +.js.mumayi.net/9495\.gif +# ||js.mumayi.net/76090.gif (easylistchina.txt: 3643) +.js.mumayi.net/76090\.gif +# ||js.leshen.com^ (easylistchina.txt: 3642) +.js.leshen.com +# ||js.duotegame.com^ (easylistchina.txt: 3641) +.js.duotegame.com +# ||js.bxwns.com^ (easylistchina.txt: 3640) +.js.bxwns.com +# ||js.bju888.com^ (easylistchina.txt: 3639) +.js.bju888.com +# ||js.4738.com/newda/img/994_90_ (easylistchina.txt: 3638) +.js.4738.com/newda/img/994_90_ +# ||js-1.pchome.net^ (easylistchina.txt: 3637) +.js-1.pchome.net +# ||jrjimg.cn/homev2/ad/ (easylistchina.txt: 3636) +.jrjimg.cn/homev2/ad/ +# ||jrjimg.cn/aigu/adcj.jpg (easylistchina.txt: 3635) +.jrjimg.cn/aigu/adcj\.jpg +# ||jrj.com.cn/iframe/zjgjs.html? (easylistchina.txt: 3634) +.jrj.com.cn/iframe/zjgjs\.html\? +# ||jq22.com/assets/ad.png (easylistchina.txt: 3633) +.jq22.com/assets/ad\.png +# ||jpwind.com^*/scroll.js (easylistchina.txt: 3632) +.jpwind.com/.*/scroll\.js +# ||jpwind.com/images/partner/ (easylistchina.txt: 3631) +.jpwind.com/images/partner/ +# ||jpskb.com/Img/dianyuan.gif (easylistchina.txt: 3629) +.jpskb.com/Img/dianyuan\.gif +# ||jpskb.com/Img/7day_ (easylistchina.txt: 3628) +.jpskb.com/Img/7day_ +# ||jpskb.com/Img/439911.jpg (easylistchina.txt: 3627) +.jpskb.com/Img/439911\.jpg +# ||jpskb.com/Img/*_ad_ (easylistchina.txt: 3626) +.jpskb.com/Img/.*_ad_ +# ||jpseek.com/pr/click2.jpg (easylistchina.txt: 3625) +.jpseek.com/pr/click2\.jpg +# ||joyes.com/image/06.jpg (easylistchina.txt: 3624) +.joyes.com/image/06\.jpg +# ||jobtong.com/openSiteAd? (easylistchina.txt: 3623) +.jobtong.com/openSiteAd\? +# ||jnnews.tv/indexad/ (easylistchina.txt: 3622) +.jnnews.tv/indexad/ +# ||jn256.com^*_gg (easylistchina.txt: 3621) +.jn256.com/.*_gg +# ||jn256.com^*/index_fu (easylistchina.txt: 3620) +.jn256.com/.*/index_fu +# ||jn256.com/gg_index/ (easylistchina.txt: 3619) +.jn256.com/gg_index/ +# ||jmsyzj.com^ (easylistchina.txt: 3618) +.jmsyzj.com +# ||jmhfw.com/zt/*.swf (easylistchina.txt: 3617) +.jmhfw.com/zt/.*\.swf +# ||jmhfw.com/index.php?/ajax/get_adv/ (easylistchina.txt: 3616) +.jmhfw.com/index\.php\?/ajax/get_adv/ +# ||jlpcn.net/template/paody/aaaa/all-top.js (easylistchina.txt: 3615) +.jlpcn.net/template/paody/aaaa/all-top\.js +# ||jkforum.net/template/default/common/attachAD (easylistchina.txt: 3614) +.jkforum.net/template/default/common/attachAD +# ||jjwxc.net/images/wap/wap.gif (easylistchina.txt: 3613) +.jjwxc.net/images/wap/wap\.gif +# ||jjjgame.com/images/ad11.jpg (easylistchina.txt: 3612) +.jjjgame.com/images/ad11\.jpg +# ||jjjaaa.com/aaa/ (easylistchina.txt: 3611) +.jjjaaa.com/aaa/ +# ||jjbt4.com/600x60.gif (easylistchina.txt: 3610) +.jjbt4.com/600x60\.gif +# ||jj59.com/sy/ibanner.js (easylistchina.txt: 3609) +.jj59.com/sy/ibanner\.js +# ||jj59.com/sy/banner.js (easylistchina.txt: 3608) +.jj59.com/sy/banner\.js +# ||jj20.com/js/yx (easylistchina.txt: 3607) +.jj20.com/js/yx +# ||jj20.com/js/x (easylistchina.txt: 3606) +.jj20.com/js/x +# ||jj20.com/images/960-60.gif (easylistchina.txt: 3605) +.jj20.com/images/960-60\.gif +# ||jj.5ccc.net/scripts/new/ (easylistchina.txt: 3604) +.jj.5ccc.net/scripts/new/ +# ||jiyingdm.com/js/loadingshow.html (easylistchina.txt: 3603) +.jiyingdm.com/js/loadingshow\.html +# ||jitapu.com/inc/adv (easylistchina.txt: 3602) +.jitapu.com/inc/adv +# ||jisuxz.com/2747/ (easylistchina.txt: 3601) +.jisuxz.com/2747/ +# ||jirou.com/plus/mytag_js.php (easylistchina.txt: 3600) +.jirou.com/plus/mytag_js\.php +# ||jinzhuedu.com/k/img/swt.png (easylistchina.txt: 3599) +.jinzhuedu.com/k/img/swt\.png +# ||jinyici.com/qq.js (easylistchina.txt: 3598) +.jinyici.com/qq\.js +# ||jinhongweiqi.com/cache/ads.js (easylistchina.txt: 3597) +.jinhongweiqi.com/cache/ads\.js +# ||jinghua.cn/lib/js/news/ad_jh.html (easylistchina.txt: 3596) +.jinghua.cn/lib/js/news/ad_jh\.html +# ||jinbw.com.cn/img/ (easylistchina.txt: 3595) +.jinbw.com.cn/img/ +# ||jiasule.com/static/js/http_error.js (easylistchina.txt: 3594) +.jiasule.com/static/js/http_error\.js +# ||jiasuba.com/js/jjrjtg.js (easylistchina.txt: 3593) +.jiasuba.com/js/jjrjtg\.js +# ||jiaoyu.baidu.com/tieba/ (easylistchina.txt: 3592) +.jiaoyu.baidu.com/tieba/ +# ||jiaonan.net/index.php?m=poster& (easylistchina.txt: 3590) +.jiaonan.net/index\.php\?m=poster& +# ||jiaodong.net/a/js/ (easylistchina.txt: 3589) +.jiaodong.net/a/js/ +# ||jianshen114.com/images/Advistings/ (easylistchina.txt: 3588) +.jianshen114.com/images/Advistings/ +# ||jianhucheng.com/data/attachment/portal/ (easylistchina.txt: 3587) +.jianhucheng.com/data/attachment/portal/ +# ||jianglishi.cn/app/static/images/ad_ (easylistchina.txt: 3586) +.jianglishi.cn/app/static/images/ad_ +# ||jiangcao.com/pic/ (easylistchina.txt: 3585) +.jiangcao.com/pic/ +# ||jiancai365.cn/lbad.gif (easylistchina.txt: 3584) +.jiancai365.cn/lbad\.gif +# ||jgzj.net/bbs/attachments/month_1111/ (easylistchina.txt: 3583) +.jgzj.net/bbs/attachments/month_1111/ +# ||jdxsw.net/js/insidebox.js (easylistchina.txt: 3582) +.jdxsw.net/js/insidebox\.js +# ||jdxsw.net/201400/ (easylistchina.txt: 3581) +.jdxsw.net/201400/ +# ||jdcjsr.com^*/jdcgg/ (easylistchina.txt: 3580) +.jdcjsr.com/.*/jdcgg/ +# ||jdcjsr.com/images/zzgg/ (easylistchina.txt: 3579) +.jdcjsr.com/images/zzgg/ +# ||jd.com/exsites?spread_type= (easylistchina.txt: 3578) +.jd.com/exsites\?spread_type= +# ||jbyf.net^*_Ad/ (easylistchina.txt: 3577) +.jbyf.net/.*_Ad/ +# ||jbyf.net/JS/9 (easylistchina.txt: 3576) +.jbyf.net/JS/9 +# ||jbyf.net/JS/6 (easylistchina.txt: 3575) +.jbyf.net/JS/6 +# ||jbyf.net/JS/1 (easylistchina.txt: 3574) +.jbyf.net/JS/1 +# ||jb51.net/js/Dowplayjb51 (easylistchina.txt: 3573) +.jb51.net/js/Dowplayjb51 +# ||jb51.net/2012js/ (easylistchina.txt: 3572) +.jb51.net/2012js/ +# ||javlibrary.com/js/bnr_ (easylistchina.txt: 3571) +.javlibrary.com/js/bnr_ +# ||javlib3.com/js/bnr_ (easylistchina.txt: 3570) +.javlib3.com/js/bnr_ +# ||jav2lib.com/js/bnr_ (easylistchina.txt: 3568) +.jav2lib.com/js/bnr_ +# ||jandan.com/static/gggg/ (easylistchina.txt: 3567) +.jandan.com/static/gggg/ +# ||ja.gamersky.com^ (easylistchina.txt: 3566) +.ja.gamersky.com +# ||j.6avz.com^ (easylistchina.txt: 3565) +.j.6avz.com +# ||izzs.cc/wp-content/mm/ (easylistchina.txt: 3564) +.izzs.cc/wp-content/mm/ +# ||izt8.com/iztwp/images/hk-250.jpg (easylistchina.txt: 3563) +.izt8.com/iztwp/images/hk-250\.jpg +# ||iyejie.com/xydlad.js (easylistchina.txt: 3562) +.iyejie.com/xydlad\.js +# ||iyejie.com/1024code.gif (easylistchina.txt: 3561) +.iyejie.com/1024code\.gif +# ||iyaya.info/newmshow.php (easylistchina.txt: 3560) +.iyaya.info/newmshow\.php +# ||iyaxin.com/assert/js/m.js (easylistchina.txt: 3559) +.iyaxin.com/assert/js/m\.js +# ||ixiumei.com/otherhtml/zd800-100.jpg (easylistchina.txt: 3558) +.ixiumei.com/otherhtml/zd800-100\.jpg +# ||iweihai.cn/js/float.js (easylistchina.txt: 3557) +.iweihai.cn/js/float\.js +# ||iwanad.baidu.com^ (easylistchina.txt: 3555) +.iwanad.baidu.com +# ||ivsoo.com/template/ivsoos.jpg (easylistchina.txt: 3554) +.ivsoo.com/template/ivsoos\.jpg +# ||itxtbook.com/game/images/kuping (easylistchina.txt: 3553) +.itxtbook.com/game/images/kuping +# ||itv.hexun.com (easylistchina.txt: 3552) +.itv.hexun.com*. +# ||itpub.net/popwin_js.php? (easylistchina.txt: 3551) +.itpub.net/popwin_js\.php\? +# ||itopdog.cn/js/you.js (easylistchina.txt: 3550) +.itopdog.cn/js/you\.js +# ||itopdog.cn/itopdog/d*.js (easylistchina.txt: 3549) +.itopdog.cn/itopdog/d.*\.js +# ||itongcheng.cc/amm/ (easylistchina.txt: 3548) +.itongcheng.cc/amm/ +# ||itocp.com/html/gk/topic/topicmain.html (easylistchina.txt: 3547) +.itocp.com/html/gk/topic/topicmain\.html +# ||itocp.com/html/gk/*/204x (easylistchina.txt: 3546) +.itocp.com/html/gk/.*/204x +# ||itocp.com/html/gk/*/*x50. (easylistchina.txt: 3545) +.itocp.com/html/gk/.*/.*x50\. +# ||itmxc.com/mxckb.gif (easylistchina.txt: 3544) +.itmxc.com/mxckb\.gif +# ||itmxc.com/mxc-news/960x (easylistchina.txt: 3543) +.itmxc.com/mxc-news/960x +# ||itmsc.cn/files/*/ad0 (easylistchina.txt: 3542) +.itmsc.cn/files/.*/ad0 +# ||itjsb.com/file/script/qipai.js (easylistchina.txt: 3541) +.itjsb.com/file/script/qipai\.js +# ||itjsb.com/file/script/A27.js (easylistchina.txt: 3540) +.itjsb.com/file/script/A27\.js +# ||itjkr.com/upload/ad/ (easylistchina.txt: 3539) +.itjkr.com/upload/ad/ +# ||itiexue.net^*.gif?w=1500&h=1500 (easylistchina.txt: 3538) +.itiexue.net/.*\.gif\?w=1500&h=1500 +# ||itiexue.net/domain-policy/ (easylistchina.txt: 3537) +.itiexue.net/domain-policy/ +# ||ithome.com/js/win8china.js (easylistchina.txt: 3536) +.ithome.com/js/win8china\.js +# ||ithome.com/js/win7china.js (easylistchina.txt: 3535) +.ithome.com/js/win7china\.js +# ||ithome.com/js/recommend.js (easylistchina.txt: 3534) +.ithome.com/js/recommend\.js +# ||ithome.com/js/money/ (easylistchina.txt: 3533) +.ithome.com/js/money/ +# ||ithome.com/js/*/toutiao.js (easylistchina.txt: 3532) +.ithome.com/js/.*/toutiao\.js +# ||ithome.com/images/v2.3/11index.png (easylistchina.txt: 3531) +.ithome.com/images/v2\.3/11index\.png +# ||ithome.com/images/partner/ (easylistchina.txt: 3530) +.ithome.com/images/partner/ +# ||iteye.com/iframe_ggbd/ (easylistchina.txt: 3528) +.iteye.com/iframe_ggbd/ +# ||itc.cn^*_ad/src/*.swf (easylistchina.txt: 3526) +.itc.cn/.*_ad/src/.*\.swf +# ||itc.cn/activity/activity_js/changyan_config_ (easylistchina.txt: 3525) +.itc.cn/activity/activity_js/changyan_config_ +# ||itc.cn/?prod=rtb& (easylistchina.txt: 3524) +.itc.cn/\?prod=rtb& +# ||itc.*^prod=ad& (easylistchina.txt: 3523) +.itc.*./(.*[^\w%.-])?prod=ad& +# ||itavcn.com/pic/news/*305X80.swf (easylistchina.txt: 3522) +.itavcn.com/pic/news/.*305X80\.swf +# ||itavcn.com/images/2014/ad_ (easylistchina.txt: 3521) +.itavcn.com/images/2014/ad_ +# ||itavcn.com/images/2013/ad_ (easylistchina.txt: 3520) +.itavcn.com/images/2013/ad_ +# ||itavcn.com/images/2012/ad_ (easylistchina.txt: 3519) +.itavcn.com/images/2012/ad_ +# ||itavcn.com/images/2011/101902.swf (easylistchina.txt: 3518) +.itavcn.com/images/2011/101902\.swf +# ||itavcn.com/images/*300300.swf (easylistchina.txt: 3517) +.itavcn.com/images/.*300300\.swf +# ||itavcn.com/images/*-banners722-90. (easylistchina.txt: 3516) +.itavcn.com/images/.*-banners722-90\. +# ||italk.yinsha.com/god/ (easylistchina.txt: 3515) +.italk.yinsha.com/god/ +# ||it168.com/factory/ad/ (easylistchina.txt: 3514) +.it168.com/factory/ad/ +# ||it165.net/index.php?m=poster& (easylistchina.txt: 3513) +.it165.net/index\.php\?m=poster& +# ||it.com.cn/test/cj/2015/03/06/10/1424032881.jpg (easylistchina.txt: 3512) +.it.com.cn/test/cj/2015/03/06/10/1424032881\.jpg +# ||it.com.cn/js/*art (easylistchina.txt: 3511) +.it.com.cn/js/.*art +# ||it.com.cn/dy4*/js/youx.js (easylistchina.txt: 3510) +.it.com.cn/dy4.*/js/youx\.js +# ||it.com.cn/dy4*/js/*0 (easylistchina.txt: 3509) +.it.com.cn/dy4.*/js/.*0 +# ||isso.com.cn/upload_image/A-D/ (easylistchina.txt: 3508) +.isso.com.cn/upload_image/A-D/ +# ||isso.com.cn/ggimage/*.swf (easylistchina.txt: 3507) +.isso.com.cn/ggimage/.*\.swf +# ||isso.com.cn/club/adv2Tools.js (easylistchina.txt: 3506) +.isso.com.cn/club/adv2Tools\.js +# ||ishangman.com/images/aismd/ (easylistchina.txt: 3505) +.ishangman.com/images/aismd/ +# ||iqshw.com/d/js/m/thea (easylistchina.txt: 3504) +.iqshw.com/d/js/m/thea +# ||iqiyi.com/show2?a=qc_ (easylistchina.txt: 3503) +.iqiyi.com/show2\?a=qc_ +# ||iqiyi.com/player/cupid/common/flash980100.swf (easylistchina.txt: 3502) +.iqiyi.com/player/cupid/common/flash980100\.swf +# ||iqiyi.com/player/cupid/*/pageer.swf (easylistchina.txt: 3501) +.iqiyi.com/player/cupid/.*/pageer\.swf +# ||iqiyi.com/player/common/rebull (easylistchina.txt: 3500) +.iqiyi.com/player/common/rebull +# ||iqiyi.com/player/common/adflash (easylistchina.txt: 3499) +.iqiyi.com/player/common/adflash +# ||iqiyi.com/player/*/bannery.swf (easylistchina.txt: 3498) +.iqiyi.com/player/.*/bannery\.swf +# ||iqiyi.com/player/*/a.swf (easylistchina.txt: 3497) +.iqiyi.com/player/.*/a\.swf +# ||iqiyi.com/marketing/*/oppo. (easylistchina.txt: 3496) +.iqiyi.com/marketing/.*/oppo\. +# ||iqiyi.com/common/flashplayer/*980-100 (easylistchina.txt: 3495) +.iqiyi.com/common/flashplayer/.*980-100 +# ||iqiyi.com/common/flashplayer/*250%C3%97230.swf (easylistchina.txt: 3494) +.iqiyi.com/common/flashplayer/.*250%C3%97230\.swf +# ||iqiyi.com/common/flashplayer/*/pause.swf (easylistchina.txt: 3493) +.iqiyi.com/common/flashplayer/.*/pause\.swf +# ||iqiyi.com/common/flashplayer/*/pageer.swf (easylistchina.txt: 3492) +.iqiyi.com/common/flashplayer/.*/pageer\.swf +# ||iqiyi.com/common/flashplayer/*/980 (easylistchina.txt: 3491) +.iqiyi.com/common/flashplayer/.*/980 +# ||iqiyi.com/common/flashplayer/*-banner- (easylistchina.txt: 3490) +.iqiyi.com/common/flashplayer/.*-banner- +# ||iqiyi.com/common/flashplayer*_1380x (easylistchina.txt: 3489) +.iqiyi.com/common/flashplayer.*_1380x +# ||iq33.com/skin/logo2015/ (easylistchina.txt: 3488) +.iq33.com/skin/logo2015/ +# ||ipeen.com.tw/photo/ad/ (easylistchina.txt: 3487) +.ipeen.com.tw/photo/ad/ +# ||ipeen.com.tw/js/frame/ad-actions.js (easylistchina.txt: 3486) +.ipeen.com.tw/js/frame/ad-actions\.js +# ||iour.co/wp-content/uploads/ (easylistchina.txt: 3485) +.iour.co/wp-content/uploads/ +# ||iour.co/ads.js (easylistchina.txt: 3484) +.iour.co/ads\.js +# ||iour.co/ad_dl.js (easylistchina.txt: 3483) +.iour.co/ad_dl\.js +# ||inte.sogou.com^ (easylistchina.txt: 3482) +.inte.sogou.com +# ||inlishui.com/index.php?m=poster& (easylistchina.txt: 3481) +.inlishui.com/index\.php\?m=poster& +# ||inhe.net/Uploadfiles/ad_2014/ (easylistchina.txt: 3480) +.inhe.net/Uploadfiles/ad_2014/ +# ||inhe.net/javascript/Jsduilian (easylistchina.txt: 3479) +.inhe.net/javascript/Jsduilian +# ||inhe.net/javascript/ad_js/ (easylistchina.txt: 3478) +.inhe.net/javascript/ad_js/ +# ||inhe.*/Uploadfiles/adpublish (easylistchina.txt: 3477) +.inhe.*./(.*/)?Uploadfiles/adpublish +# ||info.vip.iqiyi.com/promotion/ (easylistchina.txt: 3476) +.info.vip.iqiyi.com/promotion/ +# ||inc.tgbus.com/frame/youxi.html (easylistchina.txt: 3472) +.inc.tgbus.com/frame/youxi\.html +# ||impservice*.youdao.com^ (easylistchina.txt: 3471) +.impservice*./.*\.youdao\.com[^\w%.-] +.impservice*.youdao.com +# ||impservice*.yodao.com^ (easylistchina.txt: 3470) +.impservice*./.*\.yodao\.com[^\w%.-] +.impservice*.yodao.com +# ||imgur.com/Za3ll.gif (easylistchina.txt: 3466) +.imgur.com/Za3ll\.gif +# ||imgur.com/rTqveeX.jpg (easylistchina.txt: 3465) +.imgur.com/rTqveeX\.jpg +# ||imgur.com/pBL7joM.gif (easylistchina.txt: 3464) +.imgur.com/pBL7joM\.gif +# ||imgur.com/iKkoHkn.jpg (easylistchina.txt: 3463) +.imgur.com/iKkoHkn\.jpg +# ||imgs.cc/images/ad_ (easylistchina.txt: 3461) +.imgs.cc/images/ad_ +# ||imgout.ph.126.net^*/950-90.jpg (easylistchina.txt: 3460) +.imgout.ph.126.net/.*/950-90\.jpg +# ||imgout.ph.126.net^*/700x80.jpg (easylistchina.txt: 3459) +.imgout.ph.126.net/.*/700x80\.jpg +# ||imgout.ph.126.net^*/355-310.jpg (easylistchina.txt: 3458) +.imgout.ph.126.net/.*/355-310\.jpg +# ||imgn.jiatx.com/jiatx/mall/outer/ (easylistchina.txt: 3457) +.imgn.jiatx.com/jiatx/mall/outer/ +# ||imgkdiyoub999.com/ok/ (easylistchina.txt: 3455) +.imgkdiyoub999.com/ok/ +# ||imgchili.net/media/top.gif (easylistchina.txt: 3452) +.imgchili.net/media/top\.gif +# ||imgchili.net/media/image*.gif (easylistchina.txt: 3451) +.imgchili.net/media/image.*\.gif +# ||img2.www.fmdisk.com^ (easylistchina.txt: 3449) +.img2.www.fmdisk.com +# ||img2.win007.com/image/*.jpg (easylistchina.txt: 3448) +.img2.win007.com/image/.*\.jpg +# ||img2.e0575.com//upload/adv/ (easylistchina.txt: 3447) +# ||img2.e0575.com*/upload/image/ (easylistchina.txt: 3446) +.img2.e0575.com*./(.*/)?upload/image/ +# ||img2.126.net^ (easylistchina.txt: 3445) +.img2.126.net +# ||img1.jczqw.com/img/ (easylistchina.txt: 3444) +.img1.jczqw.com/img/ +# ||img1.efu.com.cn/upfile/bew/*.swf (easylistchina.txt: 3443) +.img1.efu.com.cn/upfile/bew/.*\.swf +# ||img1.autofan.com.cn/swf/ (easylistchina.txt: 3442) +.img1.autofan.com.cn/swf/ +# ||img1.126.net^ (easylistchina.txt: 3441) +.img1.126.net +# ||img.ybbbs.com/2015/ (easylistchina.txt: 3440) +.img.ybbbs.com/2015/ +# ||img.ybbbs.com/2014/ (easylistchina.txt: 3439) +.img.ybbbs.com/2014/ +# ||img.wangxiao.cn/images/big_ad.jpg (easylistchina.txt: 3438) +.img.wangxiao.cn/images/big_ad\.jpg +# ||img.sz.js.cn/wj/ (easylistchina.txt: 3436) +.img.sz.js.cn/wj/ +# ||img.kuai.xunlei.com/img/v2/fen/ (easylistchina.txt: 3435) +.img.kuai.xunlei.com/img/v2/fen/ +# ||img.ifeng.com/tres/html/ (easylistchina.txt: 3433) +.img.ifeng.com/tres/html/ +# ||img.hexun.com*/wszj/js.js (easylistchina.txt: 3432) +.img.hexun.com*./(.*/)?wszj/js\.js +# ||img.cqsq.com/s/temp/ (easylistchina.txt: 3430) +.img.cqsq.com/s/temp/ +# ||img.cngba.com/da/ (easylistchina.txt: 3429) +.img.cngba.com/da/ +# ||img.9duw.com^ (easylistchina.txt: 3427) +.img.9duw.com +# ||img.90bfw.com^*.gif (easylistchina.txt: 3426) +.img.90bfw.com/.*\.gif +# ||img.86wan.com/img2/top.jpg (easylistchina.txt: 3425) +.img.86wan.com/img2/top\.jpg +# ||img.3sjt.com^ (easylistchina.txt: 3423) +.img.3sjt.com +# ||img*.win007.com/image/*.gif (easylistchina.txt: 3422) +.img*./.*\.win007\.com/image/.*\.gif +.img*.win007.com/image/.*\.gif +# ||img*.titan007.com/image/*.gif (easylistchina.txt: 3421) +.img*./.*\.titan007\.com/image/.*\.gif +.img*.titan007.com/image/.*\.gif +# ||img*.bet007.com/image/*.gif (easylistchina.txt: 3419) +.img*./.*\.bet007\.com/image/.*\.gif +.img*.bet007.com/image/.*\.gif +# ||imeee.cn/DA_HTML/bottom_960x90.html (easylistchina.txt: 3418) +.imeee.cn/DA_HTML/bottom_960x90\.html +# ||imeee.cn/DA_HTML/*.js (easylistchina.txt: 3417) +.imeee.cn/DA_HTML/.*\.js +# ||imanke.com/static/player/loading/imanke.html (easylistchina.txt: 3416) +.imanke.com/static/player/loading/imanke\.html +# ||imanhua.com^*/nmoneys/ (easylistchina.txt: 3415) +.imanhua.com/.*/nmoneys/ +# ||imanhua.com^*/money/ (easylistchina.txt: 3414) +.imanhua.com/.*/money/ +# ||images.sohu.com/ytv/*.swf (easylistchina.txt: 3413) +.images.sohu.com/ytv/.*\.swf +# ||images.sohu.com/ytv/*.jpg (easylistchina.txt: 3412) +.images.sohu.com/ytv/.*\.jpg +# ||images.sohu.com/cs/ (easylistchina.txt: 3411) +.images.sohu.com/cs/ +# ||images.sohu.com/bill/ (easylistchina.txt: 3410) +.images.sohu.com/bill/ +# ||images.mydrivers.com/2009 (easylistchina.txt: 3409) +.images.mydrivers.com/2009 +# ||images.jurong.cn/bbs/ (easylistchina.txt: 3408) +.images.jurong.cn/bbs/ +# ||images.gxsky.com^ (easylistchina.txt: 3407) +.images.gxsky.com +# ||images.dayoo.com/dywimg/ (easylistchina.txt: 3406) +.images.dayoo.com/dywimg/ +# ||images.chinaz.com^ (easylistchina.txt: 3405) +.images.chinaz.com +# ||image.wenweipo.com/*/ad_ (easylistchina.txt: 3403) +.image.wenweipo.com/.*/ad_ +# ||image.sportscn.com/other/live/ (easylistchina.txt: 3402) +.image.sportscn.com/other/live/ +# ||image.seowhy.com/bbs/20 (easylistchina.txt: 3401) +.image.seowhy.com/bbs/20 +# ||image.lepan.cc^ (easylistchina.txt: 3400) +.image.lepan.cc +# ||image.hh010.com^ (easylistchina.txt: 3399) +.image.hh010.com +# ||image.9duw.com^ (easylistchina.txt: 3398) +.image.9duw.com +# ||image.6park.com^ (easylistchina.txt: 3397) +.image.6park.com +# ||im286.com/images/37cs.gif (easylistchina.txt: 3396) +.im286.com/images/37cs\.gif +# ||im286.com/286/ (easylistchina.txt: 3395) +.im286.com/286/ +# ||im.zww.im/images/ (easylistchina.txt: 3394) +.im.zww.im/images/ +# ||ilovecao.com^*.gif (easylistchina.txt: 3393) +.ilovecao.com/.*\.gif +# ||ilikecao.com^*.gif (easylistchina.txt: 3392) +.ilikecao.com/.*\.gif +# ||ikaka.com/globalad/ (easylistchina.txt: 3391) +.ikaka.com/globalad/ +# ||ijia360.com/data/poster/ (easylistchina.txt: 3390) +.ijia360.com/data/poster/ +# ||ihref.com/ihref_gg/ (easylistchina.txt: 3389) +.ihref.com/ihref_gg/ +# ||iguang.tw/bm/seo_rotation/html/js/ (easylistchina.txt: 3388) +.iguang.tw/bm/seo_rotation/html/js/ +# ||iguaji.com/wp-content/uploads/*/ttzad (easylistchina.txt: 3387) +.iguaji.com/wp-content/uploads/.*/ttzad +# ||iggyy8.com/js/v/ (easylistchina.txt: 3386) +.iggyy8.com/js/v/ +# ||ifxtx.com^*589x60. (easylistchina.txt: 3385) +.ifxtx.com/.*589x60\. +# ||ifxtx.com/tp/ (easylistchina.txt: 3384) +.ifxtx.com/tp/ +# ||ifxtx.com/js/ad-02.js (easylistchina.txt: 3383) +.ifxtx.com/js/ad-02\.js +# ||ifx.aifang.com^ (easylistchina.txt: 3382) +.ifx.aifang.com +# ||ifood1.com/aobntech/pic/9300.jpg (easylistchina.txt: 3381) +.ifood1.com/aobntech/pic/9300\.jpg +# ||ifonce.com/813.gif (easylistchina.txt: 3380) +.ifonce.com/813\.gif +# ||ifengimg.com^*/yingguang- (easylistchina.txt: 3377) +.ifengimg.com/.*/yingguang- +# ||ifengimg.com^*/sparta.js (easylistchina.txt: 3376) +.ifengimg.com/.*/sparta\.js +# ||ifengimg.com^*/shfwq (easylistchina.txt: 3375) +.ifengimg.com/.*/shfwq +# ||ifengimg.com^*/rdn_*.js? (easylistchina.txt: 3374) +.ifengimg.com/.*/rdn_.*\.js\? +# ||ifengimg.com^*/pan.js (easylistchina.txt: 3373) +.ifengimg.com/.*/pan\.js +# ||ifengimg.com^*/iframe_load_ (easylistchina.txt: 3372) +.ifengimg.com/.*/iframe_load_ +# ||ifengimg.com^*/hover.js (easylistchina.txt: 3371) +.ifengimg.com/.*/hover\.js +# ||ifengimg.com^*/hddw- (easylistchina.txt: 3370) +.ifengimg.com/.*/hddw- +# ||ifengimg.com^*/fullscreen (easylistchina.txt: 3369) +.ifengimg.com/.*/fullscreen +# ||ifengimg.com^*/backwindow.js (easylistchina.txt: 3368) +.ifengimg.com/.*/backwindow\.js +# ||ifengimg.com^*/aplayer.xml (easylistchina.txt: 3367) +.ifengimg.com/.*/aplayer\.xml +# ||ifengimg.com^*/300-300. (easylistchina.txt: 3366) +.ifengimg.com/.*/300-300\. +# ||ifengimg.com^*/300-300- (easylistchina.txt: 3365) +.ifengimg.com/.*/300-300- +# ||ifengimg.com^*/1000X90- (easylistchina.txt: 3364) +.ifengimg.com/.*/1000X90- +# ||ifengimg.com^*/1000-90- (easylistchina.txt: 3363) +.ifengimg.com/.*/1000-90- +# ||ifengimg.com^*/100-100- (easylistchina.txt: 3362) +.ifengimg.com/.*/100-100- +# ||ifengimg.com^*-gewindow- (easylistchina.txt: 3361) +.ifengimg.com/.*-gewindow- +# ||ifengimg.com/zhishaofei/js/ (easylistchina.txt: 3360) +.ifengimg.com/zhishaofei/js/ +# ||ifengimg.com/xingzhao/JS/ (easylistchina.txt: 3359) +.ifengimg.com/xingzhao/JS/ +# ||ifengimg.com/tres/js/*/idemin_noif.js (easylistchina.txt: 3358) +.ifengimg.com/tres/js/.*/idemin_noif\.js +# ||ifengimg.com/static/news/js/advtrack (easylistchina.txt: 3357) +.ifengimg.com/static/news/js/advtrack +# ||ifengimg.com/neiqian/*/embed.js (easylistchina.txt: 3356) +.ifengimg.com/neiqian/.*/embed\.js +# ||ifengimg.com/iis/iis_ (easylistchina.txt: 3354) +.ifengimg.com/iis/iis_ +# ||ifengimg.com/ifengimcp/pic/*_w750_h112. (easylistchina.txt: 3353) +.ifengimg.com/ifengimcp/pic/.*_w750_h112\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h130. (easylistchina.txt: 3352) +.ifengimg.com/ifengimcp/pic/.*_w640_h130\. +# ||ifengimg.com/ifengimcp/pic/*_w640_h120. (easylistchina.txt: 3351) +.ifengimg.com/ifengimcp/pic/.*_w640_h120\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h48. (easylistchina.txt: 3350) +.ifengimg.com/ifengimcp/pic/.*_w320_h48\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h330. (easylistchina.txt: 3349) +.ifengimg.com/ifengimcp/pic/.*_w320_h330\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h210. (easylistchina.txt: 3348) +.ifengimg.com/ifengimcp/pic/.*_w320_h210\. +# ||ifengimg.com/ifengimcp/pic/*_w320_h120. (easylistchina.txt: 3347) +.ifengimg.com/ifengimcp/pic/.*_w320_h120\. +# ||ifengimg.com/ifengimcp/pic/*_w300_h65. (easylistchina.txt: 3346) +.ifengimg.com/ifengimcp/pic/.*_w300_h65\. +# ||ifengimg.com/ifengimcp/pic/*_w24_h100. (easylistchina.txt: 3345) +.ifengimg.com/ifengimcp/pic/.*_w24_h100\. +# ||ifengimg.com/ifengimcp/pic/*_w130_h100. (easylistchina.txt: 3344) +.ifengimg.com/ifengimcp/pic/.*_w130_h100\. +# ||ifengimg.com/ifeng/sources/ (easylistchina.txt: 3343) +.ifengimg.com/ifeng/sources/ +# ||ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1.jpg (easylistchina.txt: 3342) +.ifengimg.com/b19bb4f38bab25e6/2015/0902/rdn_55e6a85ecb3a1\.jpg +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif (easylistchina.txt: 3341) +.ifengimg.com/29daa33abbbc4bbc/2015/7/titad\.gif +# ||ifengimg.com/29daa33abbbc4bbc/2015/7/aogute.gif (easylistchina.txt: 3340) +.ifengimg.com/29daa33abbbc4bbc/2015/7/aogute\.gif +# ||ifengimg.com/*/taobaopudi/ (easylistchina.txt: 3339) +.ifengimg.com/.*/taobaopudi/ +# ||ifeng.com^*&ADUNITID= (easylistchina.txt: 3338) +.ifeng.com/.*&ADUNITID= +# ||ifeng.com/wapAdversApi? (easylistchina.txt: 3337) +.ifeng.com/wapAdversApi\? +# ||ifeng.com/statics/comment_baidu.html (easylistchina.txt: 3336) +.ifeng.com/statics/comment_baidu\.html +# ||ifeng.com/ssi-incs/ (easylistchina.txt: 3335) +.ifeng.com/ssi-incs/ +# ||ifeng.com/showjs?*apids= (easylistchina.txt: 3334) +.ifeng.com/showjs\?.*apids= +# ||ifeng.com/iframe/toquickbet (easylistchina.txt: 3333) +.ifeng.com/iframe/toquickbet +# ||ifeng.com/iframe/quickbet (easylistchina.txt: 3332) +.ifeng.com/iframe/quickbet +# ||ifeng.com/bbsfile/js/ifeng_tip.js (easylistchina.txt: 3331) +.ifeng.com/bbsfile/js/ifeng_tip\.js +# ||ifeng.com/a_if/taobao- (easylistchina.txt: 3330) +.ifeng.com/a_if/taobao- +# ||ifanr.cn/wp-content/uploads/2015/12/xc90.jpg (easylistchina.txt: 3329) +.ifanr.cn/wp-content/uploads/2015/12/xc90\.jpg +# ||ietv.cc/Runtime/Js/web_bug.js (easylistchina.txt: 3328) +.ietv.cc/Runtime/Js/web_bug\.js +# ||ietv.cc/Runtime/Js/vod (easylistchina.txt: 3327) +.ietv.cc/Runtime/Js/vod +# ||ietv.cc/min/b=Runtime/Js&f= (easylistchina.txt: 3326) +.ietv.cc/min/b=Runtime/Js&f= +# ||iefans.net/wp-content/uploads/2009/js/llq/2345llq.gif (easylistchina.txt: 3325) +.iefans.net/wp-content/uploads/2009/js/llq/2345llq\.gif +# ||iefans.net/wp-content/uploads/2009/03/UCbanner.gif (easylistchina.txt: 3324) +.iefans.net/wp-content/uploads/2009/03/UCbanner\.gif +# ||ieche.com/InAds/ (easylistchina.txt: 3323) +.ieche.com/InAds/ +# ||ieche.com/global/*/ad/ (easylistchina.txt: 3322) +.ieche.com/global/.*/ad/ +# ||ie.5500w.com/market/404230/pop_browser.js (easylistchina.txt: 3321) +.ie.5500w.com/market/404230/pop_browser\.js +# ||idcxr.com/images/ad (easylistchina.txt: 3320) +.idcxr.com/images/ad +# ||idcquan.com/linux/cio_new.html (easylistchina.txt: 3319) +.idcquan.com/linux/cio_new\.html +# ||idcot.com^ (easylistchina.txt: 3318) +.idcot.com +# ||idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff.png (easylistchina.txt: 3317) +.idaybreak.com/wp-content/uploads/idaybreak_cloudleft_aff\.png +# ||idanmu.com/wp-content/themes/wpbangumi/images/assets/ (easylistchina.txt: 3316) +.idanmu.com/wp-content/themes/wpbangumi/images/assets/ +# ||icnkr.com/data/attachment/portal/ (easylistchina.txt: 3315) +.icnkr.com/data/attachment/portal/ +# ||icnkr.com/cnkradv/ (easylistchina.txt: 3314) +.icnkr.com/cnkradv/ +# ||icili.com/cpma.js (easylistchina.txt: 3313) +.icili.com/cpma\.js +# ||iciba.com/web/co/ci/ (easylistchina.txt: 3312) +.iciba.com/web/co/ci/ +# ||iciba.com/static/images/double11_ (easylistchina.txt: 3311) +.iciba.com/static/images/double11_ +# ||ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi.jpg (easylistchina.txt: 3310) +.ibtzz.com/wordpress/wp-content/themes/NewsPro2/images/guozi\.jpg +# ||ibook8.com/xia*.js (easylistchina.txt: 3309) +.ibook8.com/xia.*\.js +# ||ibook8.com/js/b*.js (easylistchina.txt: 3308) +.ibook8.com/js/b.*\.js +# ||ibook8.com*/piao*.js (easylistchina.txt: 3307) +.ibook8.com*./(.*/)?piao.*\.js +# ||iapp.com.tw/iapp_ad.php (easylistchina.txt: 3306) +.iapp.com.tw/iapp_ad\.php +# ||iapolo.com/myjs/ (easylistchina.txt: 3305) +.iapolo.com/myjs/ +# ||iads.xinmin.cn^ (easylistchina.txt: 3304) +.iads.xinmin.cn +# ||i322.com/ad_avshow/ (easylistchina.txt: 3303) +.i322.com/ad_avshow/ +# ||i.syasn.com^ (easylistchina.txt: 3302) +.i.syasn.com +# ||i.fgi.tw/images/survey_of_woman (easylistchina.txt: 3301) +.i.fgi.tw/images/survey_of_woman +# ||i-part.com.tw/js2/newShineStar (easylistchina.txt: 3297) +.i-part.com.tw/js2/newShineStar +# ||i-part.com.tw/images2/index/HouseStar/ (easylistchina.txt: 3296) +.i-part.com.tw/images2/index/HouseStar/ +# ||i-part.com.tw/hookimg/23892_14367801811.jpg (easylistchina.txt: 3295) +.i-part.com.tw/hookimg/23892_14367801811\.jpg +# ||i-gamer.net/promo_ (easylistchina.txt: 3294) +.i-gamer.net/promo_ +# ||i-gamer.net/image/banner_tag_726x100.jpg (easylistchina.txt: 3293) +.i-gamer.net/image/banner_tag_726x100\.jpg +# ||hzhyhm.com^ (easylistchina.txt: 3292) +.hzhyhm.com +# ||hz.shouyoutv.com^ (easylistchina.txt: 3291) +.hz.shouyoutv.com +# ||hxyl.net/hydzsw.jpg (easylistchina.txt: 3289) +.hxyl.net/hydzsw\.jpg +# ||hxsxw.com/js/float.js (easylistchina.txt: 3288) +.hxsxw.com/js/float\.js +# ||hxsxw.com/gg*.gif (easylistchina.txt: 3287) +.hxsxw.com/gg.*\.gif +# ||hxsd.com/templets/js/looyu_pop.js (easylistchina.txt: 3286) +.hxsd.com/templets/js/looyu_pop\.js +# ||hxsame.hexun.com (easylistchina.txt: 3285) +.hxsame.hexun.com*. +# ||hxjs.tool.hexun.com (easylistchina.txt: 3284) +.hxjs.tool.hexun.com*. +# ||hx95.com/images/vip.gif (easylistchina.txt: 3283) +.hx95.com/images/vip\.gif +# ||hx95.com/images/sn88.gif (easylistchina.txt: 3282) +.hx95.com/images/sn88\.gif +# ||huxiu.com/static/js/jobAds/ (easylistchina.txt: 3281) +.huxiu.com/static/js/jobAds/ +# ||hutc.zj.cn/skins/hutc2012/js/fp.js (easylistchina.txt: 3280) +.hutc.zj.cn/skins/hutc2012/js/fp\.js +# ||hur.cn/AhurD/*.gif (easylistchina.txt: 3279) +.hur.cn/AhurD/.*\.gif +# ||huoyan.tv/yb/img/*.gif (easylistchina.txt: 3278) +.huoyan.tv/yb/img/.*\.gif +# ||huoxingyu.com/images/hxy_350_330.gif (easylistchina.txt: 3277) +.huoxingyu.com/images/hxy_350_330\.gif +# ||huoche.net/Images/pc/ad_ (easylistchina.txt: 3276) +.huoche.net/Images/pc/ad_ +# ||hunantv.com/ui/2014/images/hao123.jpg (easylistchina.txt: 3275) +.hunantv.com/ui/2014/images/hao123\.jpg +# ||huizu100.com/data/attachment/portal/ (easylistchina.txt: 3274) +.huizu100.com/data/attachment/portal/ +# ||huizhou.cn/webfile/*/images/scroll.js (easylistchina.txt: 3273) +.huizhou.cn/webfile/.*/images/scroll\.js +# ||huihuige.com/images/affiliates/*_250_250 (easylistchina.txt: 3272) +.huihuige.com/images/affiliates/.*_250_250 +# ||hudong.pl.youku.com/interact/web/get/timeLinePlugin? (easylistchina.txt: 3271) +.hudong.pl.youku.com/interact/web/get/timeLinePlugin\? +# ||hudong.pl.youku.com/interact/player/get/plugins? (easylistchina.txt: 3270) +.hudong.pl.youku.com/interact/player/get/plugins\? +# ||huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default.jpg (easylistchina.txt: 3269) +.huaxieyu.com/wp-content/themes/HotNewspro20140605/images/default\.jpg +# ||huanqiukexue.com/uploads/images/hqkx_11.jpg (easylistchina.txt: 3268) +.huanqiukexue.com/uploads/images/hqkx_11\.jpg +# ||huanqiu.com^*/js/swt.js (easylistchina.txt: 3267) +.huanqiu.com/.*/js/swt\.js +# ||huanqiu.com/script/HuanQiuAllBottom.Js (easylistchina.txt: 3266) +.huanqiu.com/script/HuanQiuAllBottom\.Js +# ||huanqiu.com/resource/js/base.js (easylistchina.txt: 3265) +.huanqiu.com/resource/js/base\.js +# ||hualongxiang.com/lib/clientShow.js (easylistchina.txt: 3264) +.hualongxiang.com/lib/clientShow\.js +# ||hualady.com/static/ (easylistchina.txt: 3263) +.hualady.com/static/ +# ||huainet.com/index_tg/js/txg.js (easylistchina.txt: 3262) +.huainet.com/index_tg/js/txg\.js +# ||huaiduoduo.info/Runtime/js/ (easylistchina.txt: 3261) +.huaiduoduo.info/Runtime/js/ +# ||huacolor.com/nei/ (easylistchina.txt: 3260) +.huacolor.com/nei/ +# ||huacolor.com/daocaoren/ (easylistchina.txt: 3259) +.huacolor.com/daocaoren/ +# ||huacolor.com/all/ (easylistchina.txt: 3258) +.huacolor.com/all/ +# ||huabian.com/hb/ad/ (easylistchina.txt: 3257) +.huabian.com/hb/ad/ +# ||httpcn.com^*950_120 (easylistchina.txt: 3256) +.httpcn.com/.*950_120 +# ||httpcn.com/tg/ (easylistchina.txt: 3255) +.httpcn.com/tg/ +# ||httpcn.com/include/ad1/ (easylistchina.txt: 3254) +.httpcn.com/include/ad1/ +# ||httpcn.com/Images/banner (easylistchina.txt: 3253) +.httpcn.com/Images/banner +# ||httpcn.com/images/adpic2014/ad (easylistchina.txt: 3252) +.httpcn.com/images/adpic2014/ad +# ||httpcn.com/images/ad_ (easylistchina.txt: 3251) +.httpcn.com/images/ad_ +# ||htpc1.com/iBT/tools/ (easylistchina.txt: 3250) +.htpc1.com/iBT/tools/ +# ||hs.cnfol.com/Cm/Imgs/Load.gif (easylistchina.txt: 3249) +.hs.cnfol.com/Cm/Imgs/Load\.gif +# ||hrtsea.com/936x90.gif (easylistchina.txt: 3248) +.hrtsea.com/936x90\.gif +# ||hqdoor.com/Web/ (easylistchina.txt: 3247) +.hqdoor.com/Web/ +# ||hqcx.net/index.php?m=poster& (easylistchina.txt: 3246) +.hqcx.net/index\.php\?m=poster& +# ||how361.com/images/letou/xsbanner.gif (easylistchina.txt: 3244) +.how361.com/images/letou/xsbanner\.gif +# ||how361.com/images/letou/20130111.gif (easylistchina.txt: 3243) +.how361.com/images/letou/20130111\.gif +# ||how361.com/data/js.php?id= (easylistchina.txt: 3242) +.how361.com/data/js\.php\?id= +# ||houyi.baofeng.net^*.html (easylistchina.txt: 3241) +.houyi.baofeng.net/.*\.html +# ||house365.com/js/lbpopup.js (easylistchina.txt: 3240) +.house365.com/js/lbpopup\.js +# ||house365.com/*ads/201 (easylistchina.txt: 3239) +.house365.com/.*ads/201 +# ||house.sina.com.cn/2.0/ads/ (easylistchina.txt: 3238) +.house.sina.com.cn/2\.0/ads/ +# ||house.sina.com.cn/2.0/abp/ (easylistchina.txt: 3237) +.house.sina.com.cn/2\.0/abp/ +# ||house.shangdu.com/house/js/fmt_swf/ (easylistchina.txt: 3236) +.house.shangdu.com/house/js/fmt_swf/ +# ||house.shangdu.com/d/file/p/*.swf (easylistchina.txt: 3235) +.house.shangdu.com/d/file/p/.*\.swf +# ||house.jschina.com.cn/userfiles/flash/ (easylistchina.txt: 3234) +.house.jschina.com.cn/userfiles/flash/ +# ||house.inhe.net/javascript/flashdiv.js (easylistchina.txt: 3233) +.house.inhe.net/javascript/flashdiv\.js +# ||house.163.com/special/*/dbhg.js (easylistchina.txt: 3232) +.house.163.com/special/.*/dbhg\.js +# ||houdao.com/images/xxd.jpg (easylistchina.txt: 3231) +.houdao.com/images/xxd\.jpg +# ||houdao.com/images/tophd.jpg (easylistchina.txt: 3230) +.houdao.com/images/tophd\.jpg +# ||houdao.com/images/ktpd.jpg (easylistchina.txt: 3229) +.houdao.com/images/ktpd\.jpg +# ||houdao.com/images/houdaov3/ban.png (easylistchina.txt: 3228) +.houdao.com/images/houdaov3/ban\.png +# ||houdao.com/bans/ (easylistchina.txt: 3227) +.houdao.com/bans/ +# ||hoto.cn/source/img/index_ (easylistchina.txt: 3226) +.hoto.cn/source/img/index_ +# ||hotavxxx.com/images/*96 (easylistchina.txt: 3225) +.hotavxxx.com/images/.*96 +# ||hot.580k.com/share/Ad_ (easylistchina.txt: 3224) +.hot.580k.com/share/Ad_ +# ||hoopchina.com.cn/web/ad/ (easylistchina.txt: 3223) +.hoopchina.com.cn/web/ad/ +# ||hongxiu.com/images/home20140530.gif (easylistchina.txt: 3221) +.hongxiu.com/images/home20140530\.gif +# ||hongshu.com/hs/ (easylistchina.txt: 3220) +.hongshu.com/hs/ +# ||hn-pc.com/css/Fun_Div.js (easylistchina.txt: 3218) +.hn-pc.com/css/Fun_Div\.js +# ||hkwb.net/extra/1992.files/hengda.gif (easylistchina.txt: 3217) +.hkwb.net/extra/1992\.files/hengda\.gif +# ||hkwb.net/extra/1992.files/2015yeshu.swf (easylistchina.txt: 3216) +.hkwb.net/extra/1992\.files/2015yeshu\.swf +# ||hktvmall.com/api/preroll/getList? (easylistchina.txt: 3215) +.hktvmall.com/api/preroll/getList\? +# ||hkslg.com/gaogao/ (easylistchina.txt: 3214) +.hkslg.com/gaogao/ +# ||hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner.jpg (easylistchina.txt: 3213) +.hkitblog.com/wp-content/uploads/2015/08/hkit-blog-banner\.jpg +# ||hkitblog.com/logo/hkitblog_zh.jpg (easylistchina.txt: 3212) +.hkitblog.com/logo/hkitblog_zh\.jpg +# ||hkheadline.com^*/right_promo.js (easylistchina.txt: 3211) +.hkheadline.com/.*/right_promo\.js +# ||hkheadline.com/*promo/ (easylistchina.txt: 3210) +.hkheadline.com/.*promo/ +# ||hkgolden.com/yahoo_ad (easylistchina.txt: 3208) +.hkgolden.com/yahoo_ad +# ||hkgolden.com/mtg/ (easylistchina.txt: 3207) +.hkgolden.com/mtg/ +# ||hkgolden.com/hkg.js (easylistchina.txt: 3206) +.hkgolden.com/hkg\.js +# ||hkgolden.com/google_ad (easylistchina.txt: 3205) +.hkgolden.com/google_ad +# ||hkepc.com/prepared/images/b608.png (easylistchina.txt: 3204) +.hkepc.com/prepared/images/b608\.png +# ||hkepc.com/forum/api/unimhk_ (easylistchina.txt: 3203) +.hkepc.com/forum/api/unimhk_ +# ||hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852.swf (easylistchina.txt: 3202) +.hkcna.hk/upload/6/2011/0909/U127P22T6D70F98DT20110914111852\.swf +# ||hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515.jpg (easylistchina.txt: 3201) +.hkcna.hk/upload/6/2011/0608/U139P22T6D51F96DT20110608114515\.jpg +# ||hk-pub.com/forum/images/banner/ (easylistchina.txt: 3200) +.hk-pub.com/forum/images/banner/ +# ||hk-pub.com/forum/images/2009/home_advc.jpg (easylistchina.txt: 3199) +.hk-pub.com/forum/images/2009/home_advc\.jpg +# ||hk-bici.com/data/attachment/ad/ (easylistchina.txt: 3198) +.hk-bici.com/data/attachment/ad/ +# ||hjdn.cn/img/hjgq.gif (easylistchina.txt: 3197) +.hjdn.cn/img/hjgq\.gif +# ||hjav.org/wp-content/uploads/ (easylistchina.txt: 3196) +.hjav.org/wp-content/uploads/ +# ||hjav.org/ads.js (easylistchina.txt: 3195) +.hjav.org/ads\.js +# ||hjav.in/wp-content/uploads/ (easylistchina.txt: 3194) +.hjav.in/wp-content/uploads/ +# ||hjav.in/ads.js (easylistchina.txt: 3193) +.hjav.in/ads\.js +# ||hjav.in/ad_dl.js (easylistchina.txt: 3192) +.hjav.in/ad_dl\.js +# ||hipowerd.com/outbound/images/*_banner. (easylistchina.txt: 3191) +.hipowerd.com/outbound/images/.*_banner\. +# ||hinews.cn/swf/0/*.swf (easylistchina.txt: 3190) +.hinews.cn/swf/0/.*\.swf +# ||hinews.cn/js/09page/10pagesjbtj (easylistchina.txt: 3188) +.hinews.cn/js/09page/10pagesjbtj +# ||hinews.cn/eweb/img/*/1000x (easylistchina.txt: 3187) +.hinews.cn/eweb/img/.*/1000x +# ||hinet.net/radio/getAdcode.do (easylistchina.txt: 3186) +.hinet.net/radio/getAdcode\.do +# ||hifidiy.net/www/*/hivi_ (easylistchina.txt: 3185) +.hifidiy.net/www/.*/hivi_ +# ||hiao.com/node/node_27508.htm (easylistchina.txt: 3184) +.hiao.com/node/node_27508\.htm +# ||hiad.vmall.com^ (easylistchina.txt: 3183) +.hiad.vmall.com +# ||hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942.jpg (easylistchina.txt: 3182) +.hi.people.com.cn/NMediaFile/2013/0929/LOCAL201309291733411880780280942\.jpg +# ||hi.people.com.cn/NMediaFile/*.gif (easylistchina.txt: 3181) +.hi.people.com.cn/NMediaFile/.*\.gif +# ||hhmanhua.net/jsc/stat.js (easylistchina.txt: 3179) +.hhmanhua.net/jsc/stat\.js +# ||hhmanhua.net/jsc/book_ (easylistchina.txt: 3178) +.hhmanhua.net/jsc/book_ +# ||hhmanhua.net/hh/h*.js (easylistchina.txt: 3177) +.hhmanhua.net/hh/h.*\.js +# ||hhcomic.com/hh/h*.js (easylistchina.txt: 3176) +.hhcomic.com/hh/h.*\.js +# ||hfchenming.com.cn/ad.html (easylistchina.txt: 3175) +.hfchenming.com.cn/ad\.html +# ||hf365.com/0/14/60/93/14609355_921128.jpg (easylistchina.txt: 3174) +.hf365.com/0/14/60/93/14609355_921128\.jpg +# ||hf365.com/0/14/31/00/14310068_933922.png (easylistchina.txt: 3173) +.hf365.com/0/14/31/00/14310068_933922\.png +# ||hf365.com/0/13/79/87/13798795_912593.jpg (easylistchina.txt: 3172) +.hf365.com/0/13/79/87/13798795_912593\.jpg +# ||hf365.com//js/zt/dhmc_lrtk.js (easylistchina.txt: 3171) +# ||hexunimg.cn/m/images/ad_ (easylistchina.txt: 3170) +.hexunimg.cn/m/images/ad_ +# ||hexun.com*/hx_news/hx_news_finalpage.js (easylistchina.txt: 3169) +.hexun.com*./(.*/)?hx_news/hx_news_finalpage\.js +# ||heshan.gov.cn/JS/ddgg.js (easylistchina.txt: 3168) +.heshan.gov.cn/JS/ddgg\.js +# ||henan100.com^*/ad_article/ (easylistchina.txt: 3166) +.henan100.com/.*/ad_article/ +# ||henan.sina.com.cn/iframe/7/ (easylistchina.txt: 3165) +.henan.sina.com.cn/iframe/7/ +# ||heitu5.com/js/heituad/ (easylistchina.txt: 3164) +.heitu5.com/js/heituad/ +# ||heikexs.com/wp-content/themes/Duoxs*/js/ (easylistchina.txt: 3163) +.heikexs.com/wp-content/themes/Duoxs.*/js/ +# ||heiguang.com/statics/201404/img/tiop-1.jpg (easylistchina.txt: 3162) +.heiguang.com/statics/201404/img/tiop-1\.jpg +# ||heiguang.com/f/uad/ (easylistchina.txt: 3161) +.heiguang.com/f/uad/ +# ||hego123.net/top.js (easylistchina.txt: 3160) +.hego123.net/top\.js +# ||hego123.net/760-90.js (easylistchina.txt: 3159) +.hego123.net/760-90\.js +# ||hefei.cc/templates/default/index_ad (easylistchina.txt: 3158) +.hefei.cc/templates/default/index_ad +# ||hebnews.cn/27510.files/baidu.js (easylistchina.txt: 3157) +.hebnews.cn/27510\.files/baidu\.js +# ||hebei.com.cn/sys/online_calc.js (easylistchina.txt: 3156) +.hebei.com.cn/sys/online_calc\.js +# ||hebei.com.cn/swf/ (easylistchina.txt: 3155) +.hebei.com.cn/swf/ +# ||hebei.com.cn/js/leftrightdown_piaofu_ad_js.js (easylistchina.txt: 3154) +.hebei.com.cn/js/leftrightdown_piaofu_ad_js\.js +# ||hebei.com.cn/js/duilian_four_ad_js.js (easylistchina.txt: 3153) +.hebei.com.cn/js/duilian_four_ad_js\.js +# ||hebei.com.cn/eap/ (easylistchina.txt: 3152) +.hebei.com.cn/eap/ +# ||hdzc.net/statics/images/lamu/mhs.swf (easylistchina.txt: 3151) +.hdzc.net/statics/images/lamu/mhs\.swf +# ||hdsq.cc/data/attachment/portal/ (easylistchina.txt: 3150) +.hdsq.cc/data/attachment/portal/ +# ||hdsky.me/adv/ (easylistchina.txt: 3148) +.hdsky.me/adv/ +# ||hdpfans.com/images/icons/*x75. (easylistchina.txt: 3147) +.hdpfans.com/images/icons/.*x75\. +# ||hdpfans.com/images/icons/*x70. (easylistchina.txt: 3146) +.hdpfans.com/images/icons/.*x70\. +# ||hdpfans.com/images/icons/*x60. (easylistchina.txt: 3145) +.hdpfans.com/images/icons/.*x60\. +# ||hdpfans.com/images/hotapp/ (easylistchina.txt: 3144) +.hdpfans.com/images/hotapp/ +# ||hdarea.co/pic/2222.gif (easylistchina.txt: 3143) +.hdarea.co/pic/2222\.gif +# ||hdad.baike.com^ (easylistchina.txt: 3142) +.hdad.baike.com +# ||hd62.com/img/ (easylistchina.txt: 3141) +.hd62.com/img/ +# ||hd180.com/js/ (easylistchina.txt: 3140) +.hd180.com/js/ +# ||hc360.com/security/201409/201409021830024990.jpg (easylistchina.txt: 3139) +.hc360.com/security/201409/201409021830024990\.jpg +# ||hc360.com/security/201311/201311151050289368.swf (easylistchina.txt: 3138) +.hc360.com/security/201311/201311151050289368\.swf +# ||hc360.com/news/201207/201207241712413488.jpg (easylistchina.txt: 3137) +.hc360.com/news/201207/201207241712413488\.jpg +# ||hc360.com/list/iframe_right_ad_ (easylistchina.txt: 3136) +.hc360.com/list/iframe_right_ad_ +# ||hc360.com/list/iframe_end_textadv.shtml (easylistchina.txt: 3135) +.hc360.com/list/iframe_end_textadv\.shtml +# ||hc360.com/list/iframe_2012ad_ (easylistchina.txt: 3134) +.hc360.com/list/iframe_2012ad_ +# ||hc360.com/list/iframe_2011hezuo.shtml (easylistchina.txt: 3133) +.hc360.com/list/iframe_2011hezuo\.shtml +# ||hc360.com/js/hcpop_ (easylistchina.txt: 3132) +.hc360.com/js/hcpop_ +# ||hc360.com/js/*hezuo.js (easylistchina.txt: 3131) +.hc360.com/js/.*hezuo\.js +# ||hc360.com/images/14826/289x90.jpg (easylistchina.txt: 3130) +.hc360.com/images/14826/289x90\.jpg +# ||hbrc.com/bd1.html (easylistchina.txt: 3129) +.hbrc.com/bd1\.html +# ||haxiu.com/data/cache/myadn- (easylistchina.txt: 3128) +.haxiu.com/data/cache/myadn- +# ||haoyu.me/wp-content/uploads/2013/12/aliyun.jpg (easylistchina.txt: 3126) +.haoyu.me/wp-content/uploads/2013/12/aliyun\.jpg +# ||haoyu.me/wp-content/uploads/2013/08/interserver-vps1.gif (easylistchina.txt: 3125) +.haoyu.me/wp-content/uploads/2013/08/interserver-vps1\.gif +# ||haoxxoo.com/player/ad.html (easylistchina.txt: 3124) +.haoxxoo.com/player/ad\.html +# ||haowj.com.cn/d/js/outsidead/ (easylistchina.txt: 3123) +.haowj.com.cn/d/js/outsidead/ +# ||haoring03.com/ads/ (easylistchina.txt: 3122) +.haoring03.com/ads/ +# ||haokan5.com/js/haokanjs/youxiajiao.js (easylistchina.txt: 3121) +.haokan5.com/js/haokanjs/youxiajiao\.js +# ||haokan5.com/js/haokanjs/tj.js (easylistchina.txt: 3120) +.haokan5.com/js/haokanjs/tj\.js +# ||haokan5.com/js/haokanjs/playa (easylistchina.txt: 3119) +.haokan5.com/js/haokanjs/playa +# ||haokan5.com/js/haokanjs/2014_ (easylistchina.txt: 3118) +.haokan5.com/js/haokanjs/2014_ +# ||haoghost.com/js/hy_cpc_print.js (easylistchina.txt: 3117) +.haoghost.com/js/hy_cpc_print\.js +# ||haofu1.com/images/*.gif (easylistchina.txt: 3116) +.haofu1.com/images/.*\.gif +# ||haofs.com/haofs/ggapi.asp (easylistchina.txt: 3115) +.haofs.com/haofs/ggapi\.asp +# ||haodai.com/src/i/lianmeng/ad/ (easylistchina.txt: 3114) +.haodai.com/src/i/lianmeng/ad/ +# ||haochi123.com/Js/Fun_Effects_HT9.js (easylistchina.txt: 3113) +.haochi123.com/Js/Fun_Effects_HT9\.js +# ||haochi123.com/J_Box/Inc_ (easylistchina.txt: 3112) +.haochi123.com/J_Box/Inc_ +# ||hao6666.info^*.js (easylistchina.txt: 3111) +.hao6666.info/.*\.js +# ||hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT.js (easylistchina.txt: 3110) +.hao123img.com/v4/__/jM/qP/dF/kT/__jMqPdFkT\.js +# ||hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43.png (easylistchina.txt: 3109) +.hao123img.com/res/r/image/2015-11-06/0fb652e99f82c02bdcde57fa78074a43\.png +# ||hao123img.com/res/ecom/ (easylistchina.txt: 3108) +.hao123img.com/res/ecom/ +# ||hao123.com/data/v/stuff.php?*_forhao123Adv (easylistchina.txt: 3107) +.hao123.com/data/v/stuff\.php\?.*_forhao123Adv +# ||hao123.cn/images/vip.png (easylistchina.txt: 3106) +.hao123.cn/images/vip\.png +# ||hao.rising.cn/images/nsdgg.jpg (easylistchina.txt: 3105) +.hao.rising.cn/images/nsdgg\.jpg +# ||hao.rising.cn/catalog/bottom.html (easylistchina.txt: 3104) +.hao.rising.cn/catalog/bottom\.html +# ||hanzify.*/Main/Template/Images/chinabank.gif (easylistchina.txt: 3103) +.hanzify.*./(.*/)?Main/Template/Images/chinabank\.gif +# ||hangzhou.com.cn/inc_hzw/ (easylistchina.txt: 3102) +.hangzhou.com.cn/inc_hzw/ +# ||hangzhou.com.cn/images/flashyingpian.swf (easylistchina.txt: 3101) +.hangzhou.com.cn/images/flashyingpian\.swf +# ||hangzhou.com.cn/extra/flash/hzwarticle300.swf (easylistchina.txt: 3100) +.hangzhou.com.cn/extra/flash/hzwarticle300\.swf +# ||hanfanba.com/template/hanfanba/img/tb- (easylistchina.txt: 3099) +.hanfanba.com/template/hanfanba/img/tb- +# ||haiwainet.cn/json/news (easylistchina.txt: 3098) +.haiwainet.cn/json/news +# ||haiwainet.cn*/k.js (easylistchina.txt: 3097) +.haiwainet.cn*./(.*/)?k\.js +# ||hahade.com/tpl/*.html (easylistchina.txt: 3096) +.hahade.com/tpl/.*\.html +# ||haha.mx/upload/data/list_sidebar_ (easylistchina.txt: 3095) +.haha.mx/upload/data/list_sidebar_ +# ||haha.mx/upload/data/detail_ (easylistchina.txt: 3094) +.haha.mx/upload/data/detail_ +# ||haha.mx/images/market/ (easylistchina.txt: 3093) +.haha.mx/images/market/ +# ||haha.mx/images/banner/vipp.jpg (easylistchina.txt: 3092) +.haha.mx/images/banner/vipp\.jpg +# ||haha.mx/images/banner/tmall11.png (easylistchina.txt: 3091) +.haha.mx/images/banner/tmall11\.png +# ||haha.mx/images/banner/jd.jpg (easylistchina.txt: 3090) +.haha.mx/images/banner/jd\.jpg +# ||hackp.com/xiaojiu/ (easylistchina.txt: 3089) +.hackp.com/xiaojiu/ +# ||hackp.com/wz/ (easylistchina.txt: 3088) +.hackp.com/wz/ +# ||hacken.cc/file/ads/ (easylistchina.txt: 3087) +.hacken.cc/file/ads/ +# ||hackbase.com/vip/topbanner.html (easylistchina.txt: 3086) +.hackbase.com/vip/topbanner\.html +# ||hackbase.com/2009/bingdun2009.jpg (easylistchina.txt: 3085) +.hackbase.com/2009/bingdun2009\.jpg +# ||gzdaily.dayoo.com/tpl/banner*.swf (easylistchina.txt: 3084) +.gzdaily.dayoo.com/tpl/banner.*\.swf +# ||gzcol.com/uploads/ad/ (easylistchina.txt: 3083) +.gzcol.com/uploads/ad/ +# ||gz.xinhuanet.com/2012image/mt.swf (easylistchina.txt: 3082) +.gz.xinhuanet.com/2012image/mt\.swf +# ||gywb.cn/gggl/ (easylistchina.txt: 3081) +.gywb.cn/gggl/ +# ||gywb.cn/cs_mulu/ (easylistchina.txt: 3080) +.gywb.cn/cs_mulu/ +# ||gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09.jpg (easylistchina.txt: 3079) +.gywb.cn/content/attachement/jpg/site2/20140901/50465d69af2b156e340c09\.jpg +# ||gxorg.com/index.php?m=poster& (easylistchina.txt: 3078) +.gxorg.com/index\.php\?m=poster& +# ||gxnews.com.cn/clientscript/index_duilian_ (easylistchina.txt: 3077) +.gxnews.com.cn/clientscript/index_duilian_ +# ||gxnews.com.cn/cache/wwwads.js (easylistchina.txt: 3076) +.gxnews.com.cn/cache/wwwads\.js +# ||gx.xinhuanet.com/images2007/banner.htm (easylistchina.txt: 3075) +.gx.xinhuanet.com/images2007/banner\.htm +# ||guyizhou.cn/temp/top_banner_ (easylistchina.txt: 3074) +.guyizhou.cn/temp/top_banner_ +# ||gusuwang.com/ymsextweb/javascript/gs (easylistchina.txt: 3073) +.gusuwang.com/ymsextweb/javascript/gs +# ||gusuwang.com/ymsextweb/images/index/ist_t.jpg (easylistchina.txt: 3072) +.gusuwang.com/ymsextweb/images/index/ist_t\.jpg +# ||gusuwang.com/ymsextweb/fullggw/ (easylistchina.txt: 3071) +.gusuwang.com/ymsextweb/fullggw/ +# ||gusuwang.com/api/gsw_ (easylistchina.txt: 3070) +.gusuwang.com/api/gsw_ +# ||guqu.net/Cooperate/ (easylistchina.txt: 3069) +.guqu.net/Cooperate/ +# ||guokr.com/baidu-cbjs/ (easylistchina.txt: 3068) +.guokr.com/baidu-cbjs/ +# ||guofs.com/images/you.js (easylistchina.txt: 3067) +.guofs.com/images/you\.js +# ||guofs.com/images/578-60.gif (easylistchina.txt: 3066) +.guofs.com/images/578-60\.gif +# ||guitarchina.com/1/ww2014 (easylistchina.txt: 3065) +.guitarchina.com/1/ww2014 +# ||guess.h.qhimg.com^ (easylistchina.txt: 3064) +.guess.h.qhimg.com +# ||gucheng.com/2015/z4/ (easylistchina.txt: 3063) +.gucheng.com/2015/z4/ +# ||gucheng.com/2015/mst/ (easylistchina.txt: 3062) +.gucheng.com/2015/mst/ +# ||guahao.com/iwant/ads? (easylistchina.txt: 3061) +.guahao.com/iwant/ads\? +# ||gtv.com.cn/public/images/2014-06/15/110_89471402801935.jpg (easylistchina.txt: 3060) +.gtv.com.cn/public/images/2014-06/15/110_89471402801935\.jpg +# ||gtv.com.cn/public/images/2014-03/20/71_12931395286234.jpg (easylistchina.txt: 3059) +.gtv.com.cn/public/images/2014-03/20/71_12931395286234\.jpg +# ||gtv.com.cn/public/images/2014-01/26/97_76841390730340.jpg (easylistchina.txt: 3058) +.gtv.com.cn/public/images/2014-01/26/97_76841390730340\.jpg +# ||gtimg.com^*/adv/ (easylistchina.txt: 3057) +.gtimg.com/.*/adv/ +# ||gtimg.com^*/ad/ (easylistchina.txt: 3056) +.gtimg.com/.*/ad/ +# ||gtimg.com/www/test/300_250.swf (easylistchina.txt: 3055) +.gtimg.com/www/test/300_250\.swf +# ||gtimg.com/web/default_fodders/300x600_$~collapse (easylistchina.txt: 3054) +.gtimg.com/web/default_fodders/300x600_ +# ||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg (easylistchina.txt: 3053) +.gtimg.com/v/pics/hv1/88/83/1734/112774603\.jpg +# ||gtimg.com/qqlive/ (easylistchina.txt: 3052) +.gtimg.com/qqlive/ +# ||gtimg.com/newsapp_ls/0/27161189/0 (easylistchina.txt: 3051) +.gtimg.com/newsapp_ls/0/27161189/0 +# ||gtimg.com/news/news/2014ad/ (easylistchina.txt: 3050) +.gtimg.com/news/news/2014ad/ +# ||gtimg.com/ent/final2009/dp_tebu_logo.png (easylistchina.txt: 3049) +.gtimg.com/ent/final2009/dp_tebu_logo\.png +# ||gtimg.com/comic/richmedia/ (easylistchina.txt: 3048) +.gtimg.com/comic/richmedia/ +# ||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg (easylistchina.txt: 3047) +.gtimg.com/comic/pics/hv1/29/74/1631/106074674\.jpg +# ||gter.net^*adv (easylistchina.txt: 3046) +.gter.net/.*adv +# ||gt.yy.com^ (easylistchina.txt: 3045) +.gt.yy.com +# ||gsspcln.jp^ (easylistchina.txt: 3044) +.gsspcln.jp +# ||gscn.com.cn/pic/0/10/34/27/10342786_994137.gif (easylistchina.txt: 3043) +.gscn.com.cn/pic/0/10/34/27/10342786_994137\.gif +# ||gscn.com.cn/home/images/advscroll.js (easylistchina.txt: 3042) +.gscn.com.cn/home/images/advscroll\.js +# ||groupa.onlylady.com^ (easylistchina.txt: 3041) +.groupa.onlylady.com +# ||greenxiazai.com/jsgreen/ (easylistchina.txt: 3040) +.greenxiazai.com/jsgreen/ +# ||greenxiazai.com/greenjs/ (easylistchina.txt: 3039) +.greenxiazai.com/greenjs/ +# ||greenxf.com/js/main.js (easylistchina.txt: 3038) +.greenxf.com/js/main\.js +# ||greenxf.com/img/46860.gif (easylistchina.txt: 3037) +.greenxf.com/img/46860\.gif +# ||greenxf.com/asp/ (easylistchina.txt: 3036) +.greenxf.com/asp/ +# ||greatwuyi.com/tplimg/1.files/ad (easylistchina.txt: 3035) +.greatwuyi.com/tplimg/1\.files/ad +# ||gqgc.sz.zj.cn^ (easylistchina.txt: 3034) +.gqgc.sz.zj.cn +# ||gpxz.com/skins/gupuxiazai/soft (easylistchina.txt: 3033) +.gpxz.com/skins/gupuxiazai/soft +# ||gpxz.com/js2/ (easylistchina.txt: 3032) +.gpxz.com/js2/ +# ||gpsdlm.com/images/lm2.jpg (easylistchina.txt: 3031) +.gpsdlm.com/images/lm2\.jpg +# ||gpsdlm.com/images/jdyigou.jpg (easylistchina.txt: 3030) +.gpsdlm.com/images/jdyigou\.jpg +# ||gpcxw.com/file/js/img/*.gif (easylistchina.txt: 3029) +.gpcxw.com/file/js/img/.*\.gif +# ||goyeah.com/homepage.html (easylistchina.txt: 3027) +.goyeah.com/homepage\.html +# ||goto.www.iciba.com^ (easylistchina.txt: 3026) +.goto.www.iciba.com +# ||gope.cn/1commonfile/guidebar/ (easylistchina.txt: 3025) +.gope.cn/1commonfile/guidebar/ +# ||gope.cn/1commonfile/*.swf (easylistchina.txt: 3024) +.gope.cn/1commonfile/.*\.swf +# ||gope.cn/1commonfile/*.htm (easylistchina.txt: 3023) +.gope.cn/1commonfile/.*\.htm +# ||gope.cn/1commonfile/*.gif (easylistchina.txt: 3022) +.gope.cn/1commonfile/.*\.gif +# ||goods.tudou.com/api? (easylistchina.txt: 3020) +.goods.tudou.com/api\? +# ||good.gd/js/loadpopads.aspx (easylistchina.txt: 3019) +.good.gd/js/loadpopads\.aspx +# ||good.gd/good.gd/js/downloadPrograss.js (easylistchina.txt: 3018) +.good.gd/good\.gd/js/downloadPrograss\.js +# ||gohubei.com/img/zhuna.gif (easylistchina.txt: 3017) +.gohubei.com/img/zhuna\.gif +# ||gohubei.com/img/tuniu.jpg (easylistchina.txt: 3016) +.gohubei.com/img/tuniu\.jpg +# ||go2tutor.com/lifebox.asp (easylistchina.txt: 3015) +.go2tutor.com/lifebox\.asp +# ||go.hangzhou.com.cn^ (easylistchina.txt: 3014) +.go.hangzhou.com.cn +# ||gmw.cn/banner/ (easylistchina.txt: 3013) +.gmw.cn/banner/ +# ||gminfo.cn/qds/gmszyy.swf (easylistchina.txt: 3012) +.gminfo.cn/qds/gmszyy\.swf +# ||gminfo.cn/js/ad- (easylistchina.txt: 3011) +.gminfo.cn/js/ad- +# ||gminfo.cn/flash/ (easylistchina.txt: 3010) +.gminfo.cn/flash/ +# ||gmbuluo.com/js/yxj (easylistchina.txt: 3009) +.gmbuluo.com/js/yxj +# ||gmbuluo.com/js/shouye (easylistchina.txt: 3008) +.gmbuluo.com/js/shouye +# ||gmbuluo.com/js/liebiao (easylistchina.txt: 3007) +.gmbuluo.com/js/liebiao +# ||gmbbk.cn/jj/ (easylistchina.txt: 3006) +.gmbbk.cn/jj/ +# ||gmbbk.cn/img/top.js (easylistchina.txt: 3005) +.gmbbk.cn/img/top\.js +# ||global.tianyaui.com/global/wizard/js/wizard.js (easylistchina.txt: 3004) +.global.tianyaui.com/global/wizard/js/wizard\.js +# ||github.io/2048/full/meta/cmpay.gif (easylistchina.txt: 3003) +.github.io/2048/full/meta/cmpay\.gif +# ||gimhoy.com/201404/cute.jpg (easylistchina.txt: 3002) +.gimhoy.com/201404/cute\.jpg +# ||gigacircle.com/images/*720X85. (easylistchina.txt: 3001) +.gigacircle.com/images/.*720X85\. +# ||gigacircle.com/images/*250X250. (easylistchina.txt: 3000) +.gigacircle.com/images/.*250X250\. +# ||ghostxp3.com/xf.js (easylistchina.txt: 2999) +.ghostxp3.com/xf\.js +# ||ghoffice.com/bbs/js/float.js (easylistchina.txt: 2998) +.ghoffice.com/bbs/js/float\.js +# ||ghjie.com/JS/youcegg.js (easylistchina.txt: 2997) +.ghjie.com/JS/youcegg\.js +# ||ghjie.com/images/2012/images/bg (easylistchina.txt: 2996) +.ghjie.com/images/2012/images/bg +# ||ggyq.xdkb.net^ (easylistchina.txt: 2995) +.ggyq.xdkb.net +# ||ggw.watertu.com^ (easylistchina.txt: 2994) +.ggw.watertu.com +# ||ggw.gusuwang.com^ (easylistchina.txt: 2993) +.ggw.gusuwang.com +# ||ggg.zj.com^ (easylistchina.txt: 2992) +.ggg.zj.com +# ||gg163.net/js/gg163ad.js (easylistchina.txt: 2991) +.gg163.net/js/gg163ad\.js +# ||gg163.net/js/163bbsad.js (easylistchina.txt: 2990) +.gg163.net/js/163bbsad\.js +# ||gg163.net/gpimages/ad33.gif (easylistchina.txt: 2989) +.gg163.net/gpimages/ad33\.gif +# ||gg163.net/gpimages/22.gif (easylistchina.txt: 2988) +.gg163.net/gpimages/22\.gif +# ||gg163.net/2015ad/ (easylistchina.txt: 2987) +.gg163.net/2015ad/ +# ||gg163.net/2014ad/ (easylistchina.txt: 2986) +.gg163.net/2014ad/ +# ||gg163.net/2013ad/ (easylistchina.txt: 2985) +.gg163.net/2013ad/ +# ||gg163.net/2012ad/ (easylistchina.txt: 2984) +.gg163.net/2012ad/ +# ||gg.yxdown.com^ (easylistchina.txt: 2983) +.gg.yxdown.com +# ||gg.sonhoo.com^ (easylistchina.txt: 2982) +.gg.sonhoo.com +# ||gg.kugou.com^ (easylistchina.txt: 2981) +.gg.kugou.com +# ||gg.gao7.com^ (easylistchina.txt: 2980) +.gg.gao7.com +# ||gg.cs090.com^ (easylistchina.txt: 2979) +.gg.cs090.com +# ||gg.bxwx5.com^ (easylistchina.txt: 2978) +.gg.bxwx5.com +# ||gg.18183.com^ (easylistchina.txt: 2977) +.gg.18183.com +# ||gg.0598yu.com^ (easylistchina.txt: 2976) +.gg.0598yu.com +# ||gg-art.com/anod/ (easylistchina.txt: 2975) +.gg-art.com/anod/ +# ||gfan.com/press/ (easylistchina.txt: 2974) +.gfan.com/press/ +# ||gfan.com/plugin.php?id=gfan_viewpic:gfan_adView (easylistchina.txt: 2973) +.gfan.com/plugin\.php\?id=gfan_viewpic:gfan_adView +# ||gezila.com/gimg/yinsu (easylistchina.txt: 2972) +.gezila.com/gimg/yinsu +# ||gexing.com/j/??zmask.js,easing.js? (easylistchina.txt: 2971) +.gexing.com/j/\?\?zmask\.js,easing\.js\? +# ||gexing.com/api/api_get_tankuang.php? (easylistchina.txt: 2970) +.gexing.com/api/api_get_tankuang\.php\? +# ||gexing.com.cn^*/images/jr.jpg (easylistchina.txt: 2969) +.gexing.com.cn/.*/images/jr\.jpg +# ||gexing.com.cn^*/images/1a.jpg (easylistchina.txt: 2968) +.gexing.com.cn/.*/images/1a\.jpg +# ||get.766.com^ (easylistchina.txt: 2967) +.get.766.com +# ||gdt.qq.com^ (easylistchina.txt: 2965) +.gdt.qq.com +# ||gdmm.com/Public/config/Couplet/Index (easylistchina.txt: 2964) +.gdmm.com/Public/config/Couplet/Index +# ||gdmm.com/mybt/ (easylistchina.txt: 2963) +.gdmm.com/mybt/ +# ||gdmm.com/js/images/z.swf (easylistchina.txt: 2962) +.gdmm.com/js/images/z\.swf +# ||gdmm.com/js/images/y.swf (easylistchina.txt: 2961) +.gdmm.com/js/images/y\.swf +# ||gdaily.org/wp-content/uploads/an-temp/ (easylistchina.txt: 2960) +.gdaily.org/wp-content/uploads/an-temp/ +# ||gd.sina.com.cn/iframe/22/ (easylistchina.txt: 2959) +.gd.sina.com.cn/iframe/22/ +# ||gd.ct10000.com/js/ecssstat.js (easylistchina.txt: 2958) +.gd.ct10000.com/js/ecssstat\.js +# ||gaofen.com/source/plugin/gaofen_ad/ (easylistchina.txt: 2957) +.gaofen.com/source/plugin/gaofen_ad/ +# ||ganjituiguang.ganji.com^ (easylistchina.txt: 2956) +.ganjituiguang.ganji.com +# ||ganjistatic1.com^*/adm/ (easylistchina.txt: 2955) +.ganjistatic1.com/.*/adm/ +# ||ganjistatic1.com^*-banner- (easylistchina.txt: 2954) +.ganjistatic1.com/.*-banner- +# ||ganji.com/content.php (easylistchina.txt: 2953) +.ganji.com/content\.php +# ||ganbingw.com/images/top960.jpg (easylistchina.txt: 2952) +.ganbingw.com/images/top960\.jpg +# ||gamme.com.tw/ga/ (easylistchina.txt: 2951) +.gamme.com.tw/ga/ +# ||gamersky.com/piaofu*/ (easylistchina.txt: 2948) +.gamersky.com/piaofu.*/ +# ||gamersky.com/img/ (easylistchina.txt: 2947) +.gamersky.com/img/ +# ||gamersky.com/gsinc/content_bg.js (easylistchina.txt: 2946) +.gamersky.com/gsinc/content_bg\.js +# ||gamersky.com/g/gamerskyflash.js (easylistchina.txt: 2945) +.gamersky.com/g/gamerskyflash\.js +# ||gamersky.com/bgpic/ (easylistchina.txt: 2944) +.gamersky.com/bgpic/ +# ||gamefy.cn/cookiead.php (easylistchina.txt: 2943) +.gamefy.cn/cookiead\.php +# ||gameapps.hk/js/determine_page_ (easylistchina.txt: 2942) +.gameapps.hk/js/determine_page_ +# ||gameapps.hk/js/content_ (easylistchina.txt: 2941) +.gameapps.hk/js/content_ +# ||gameapps.hk/images/apps/ad/ (easylistchina.txt: 2940) +.gameapps.hk/images/apps/ad/ +# ||gagays.com/site/ad300x300 (easylistchina.txt: 2938) +.gagays.com/site/ad300x300 +# ||g4.beva.com/data-js- (easylistchina.txt: 2937) +.g4.beva.com/data-js- +# ||g2.ousns.net^ (easylistchina.txt: 2936) +.g2.ousns.net +# ||g1080.com/js/cache_bg.js (easylistchina.txt: 2935) +.g1080.com/js/cache_bg\.js +# ||g1.0573ren.com^ (easylistchina.txt: 2934) +.g1.0573ren.com +# ||g.rexian.net.cn/js/ (easylistchina.txt: 2933) +.g.rexian.net.cn/js/ +# ||g.ousns.net^ (easylistchina.txt: 2932) +.g.ousns.net +# ||g.jinti.com/f/a/a (easylistchina.txt: 2931) +.g.jinti.com/f/a/a +# ||g.hsw.cn^ (easylistchina.txt: 2930) +.g.hsw.cn +# ||g.gxorg.com^ (easylistchina.txt: 2929) +.g.gxorg.com +# ||g.cnzz.cn/Static/js/*- (easylistchina.txt: 2928) +.g.cnzz.cn/Static/js/.*- +# ||g.163.com/*&affiliate= (easylistchina.txt: 2927) +.g.163.com/.*&affiliate= +# ||fzbm.com/bbs/static/js/bma.js (easylistchina.txt: 2924) +.fzbm.com/bbs/static/js/bma\.js +# ||fxxz.com/show/ (easylistchina.txt: 2923) +.fxxz.com/show/ +# ||fxpan.com/sina.jpg (easylistchina.txt: 2922) +.fxpan.com/sina\.jpg +# ||fx678.com/proxy (easylistchina.txt: 2921) +.fx678.com/proxy +# ||fx678.com/js/baidu_ (easylistchina.txt: 2920) +.fx678.com/js/baidu_ +# ||fx114.net/images/bangbaotao.jpg (easylistchina.txt: 2919) +.fx114.net/images/bangbaotao\.jpg +# ||fwxgx.com/u/ad/show_type/ (easylistchina.txt: 2918) +.fwxgx.com/u/ad/show_type/ +# ||funtude.com/include/inc/ad_data. (easylistchina.txt: 2917) +.funtude.com/include/inc/ad_data\. +# ||func.tw/image/func2.png (easylistchina.txt: 2916) +.func.tw/image/func2\.png +# ||fun.ynet.com^ (easylistchina.txt: 2915) +.fun.ynet.com +# ||fullyu.com/js-lib/jquery.modal. (easylistchina.txt: 2913) +.fullyu.com/js-lib/jquery\.modal\. +# ||fulitie.org/wp-content/themes/D8_4.0/js/guanbi-no.js (easylistchina.txt: 2912) +.fulitie.org/wp-content/themes/D8_4\.0/js/guanbi-no\.js +# ||fulidang.com/ads/ (easylistchina.txt: 2911) +.fulidang.com/ads/ +# ||fububu.com/zb_users/THEME/LuSongSong/style/ads/ (easylistchina.txt: 2910) +.fububu.com/zb_users/THEME/LuSongSong/style/ads/ +# ||ftchinese.com/m/marketing/ad.html (easylistchina.txt: 2909) +.ftchinese.com/m/marketing/ad\.html +# ||fspcdn.com/main/fis/js/v11/play/pop-ad_ (easylistchina.txt: 2908) +.fspcdn.com/main/fis/js/v11/play/pop-ad_ +# ||fsehome.com/images/ad_tan.js (easylistchina.txt: 2907) +.fsehome.com/images/ad_tan\.js +# ||freep.cn/lianjie/qqtongji.js (easylistchina.txt: 2906) +.freep.cn/lianjie/qqtongji\.js +# ||freep.cn/3tb_1408171239008bu7512293.jpg (easylistchina.txt: 2905) +.freep.cn/3tb_1408171239008bu7512293\.jpg +# ||free9.net/myc/myc.js (easylistchina.txt: 2904) +.free9.net/myc/myc\.js +# ||free9.net/images/pic/dhc2013.gif (easylistchina.txt: 2903) +.free9.net/images/pic/dhc2013\.gif +# ||fragment.firefoxchina.cn/html/ (easylistchina.txt: 2902) +.fragment.firefoxchina.cn/html/ +# ||fpdisplay.com/upload/n_ad/ (easylistchina.txt: 2901) +.fpdisplay.com/upload/n_ad/ +# ||fpdisplay.com/templates/default/js/palyflash_ (easylistchina.txt: 2900) +.fpdisplay.com/templates/default/js/palyflash_ +# ||fpdisplay.com/images/*960X30. (easylistchina.txt: 2899) +.fpdisplay.com/images/.*960X30\. +# ||fpdisplay.com/images/*960X230. (easylistchina.txt: 2898) +.fpdisplay.com/images/.*960X230\. +# ||forum.techweb.com.cn/advtcnt.php (easylistchina.txt: 2897) +.forum.techweb.com.cn/advtcnt\.php +# ||forum.51nb.com/images/ (easylistchina.txt: 2896) +.forum.51nb.com/images/ +# ||focus.cn/common/js/adm (easylistchina.txt: 2895) +.focus.cn/common/js/adm +# ||fmdisk.com/templates/yythems/images/qq (easylistchina.txt: 2894) +.fmdisk.com/templates/yythems/images/qq +# ||fmdisk.com/ima/ (easylistchina.txt: 2893) +.fmdisk.com/ima/ +# ||flighty.cn/templets/images/2345- (easylistchina.txt: 2891) +.flighty.cn/templets/images/2345- +# ||flighty.cn/images/kiees.jpg (easylistchina.txt: 2890) +.flighty.cn/images/kiees\.jpg +# ||flash8.net/flash8_a_d_s/ (easylistchina.txt: 2889) +.flash8.net/flash8_a_d_s/ +# ||flash.mycar168.com/data/js/ (easylistchina.txt: 2888) +.flash.mycar168.com/data/js/ +# ||fjlyfdc.com.cn/hxhad/ (easylistchina.txt: 2887) +.fjlyfdc.com.cn/hxhad/ +# ||fj007.com/money/ (easylistchina.txt: 2886) +.fj007.com/money/ +# ||fj.sina.com.cn/iframe/63/ (easylistchina.txt: 2885) +.fj.sina.com.cn/iframe/63/ +# ||firefoxchina.cn^*_topbanner (easylistchina.txt: 2884) +.firefoxchina.cn/.*_topbanner +# ||firefoxchina.cn^*_couplet (easylistchina.txt: 2883) +.firefoxchina.cn/.*_couplet +# ||firefoxchina.cn^*49560. (easylistchina.txt: 2882) +.firefoxchina.cn/.*49560\. +# ||firefoxchina.cn/res/js/fchina_video-min.js (easylistchina.txt: 2881) +.firefoxchina.cn/res/js/fchina_video-min\.js +# ||firefoxchina.cn/2014/*_foxphone.png (easylistchina.txt: 2880) +.firefoxchina.cn/2014/.*_foxphone\.png +# ||files.webcars.com.cn^*.swf?link= (easylistchina.txt: 2879) +.files.webcars.com.cn/.*\.swf\?link= +# ||file.ws.126.net/house/nj/*.swf (easylistchina.txt: 2876) +.file.ws.126.net/house/nj/.*\.swf +# ||file.ws.126.net/house/jn/*.swf (easylistchina.txt: 2875) +.file.ws.126.net/house/jn/.*\.swf +# ||file.ws.126.net/house/*/js/tc_ (easylistchina.txt: 2874) +.file.ws.126.net/house/.*/js/tc_ +# ||file.shmet.com/images/ (easylistchina.txt: 2873) +.file.shmet.com/images/ +# ||file.cloud.sogou.com/*/superzone/ (easylistchina.txt: 2872) +.file.cloud.sogou.com/.*/superzone/ +# ||fhm.com.tw/js/colorbox/jquery.colorbox.js (easylistchina.txt: 2871) +.fhm.com.tw/js/colorbox/jquery\.colorbox\.js +# ||fhm.com.tw/fhm_upload/full_ad_ (easylistchina.txt: 2870) +.fhm.com.tw/fhm_upload/full_ad_ +# ||fg.cc/logo/xierguanggao. (easylistchina.txt: 2869) +.fg.cc/logo/xierguanggao\. +# ||feng.com/aodoo3/view.php?what=zone:16& (easylistchina.txt: 2868) +.feng.com/aodoo3/view\.php\?what=zone:16& +# ||feng.com/aodoo3/view.php?what=zone:13& (easylistchina.txt: 2867) +.feng.com/aodoo3/view\.php\?what=zone:13& +# ||feihu.la/Runtime/js/vod (easylistchina.txt: 2866) +.feihu.la/Runtime/js/vod +# ||feedss.com/uploadfile/ad/ (easylistchina.txt: 2865) +.feedss.com/uploadfile/ad/ +# ||fdc.com.cn^*adv (easylistchina.txt: 2863) +.fdc.com.cn/.*adv +# ||fdc.com.cn/cms/js/home_js/*_move_ (easylistchina.txt: 2862) +.fdc.com.cn/cms/js/home_js/.*_move_ +# ||fdc.com.cn/cms/js/bbs/dl.js (easylistchina.txt: 2861) +.fdc.com.cn/cms/js/bbs/dl\.js +# ||fdc.com.cn/cms/js/bbs/bbstonglan.js (easylistchina.txt: 2860) +.fdc.com.cn/cms/js/bbs/bbstonglan\.js +# ||faxingw.cn/js/wenba.js (easylistchina.txt: 2859) +.faxingw.cn/js/wenba\.js +# ||faxingw.cn/js/jiafa (easylistchina.txt: 2858) +.faxingw.cn/js/jiafa +# ||faxingw.cn/js/detailgcbox.js (easylistchina.txt: 2857) +.faxingw.cn/js/detailgcbox\.js +# ||faxingw.cn/js/*gg (easylistchina.txt: 2856) +.faxingw.cn/js/.*gg +# ||faxingw.cn/js/*ad (easylistchina.txt: 2855) +.faxingw.cn/js/.*ad +# ||faxingw.cn/js/*0 (easylistchina.txt: 2854) +.faxingw.cn/js/.*0 +# ||fantizi5.com/js/baiduad (easylistchina.txt: 2853) +.fantizi5.com/js/baiduad +# ||fantizi5.com/js/ad*.js (easylistchina.txt: 2852) +.fantizi5.com/js/ad.*\.js +# ||fanhaobao.net/wp-content/themes/xiu/js/single.js (easylistchina.txt: 2851) +.fanhaobao.net/wp-content/themes/xiu/js/single\.js +# ||fang99.com/JavaScript/advjs/ (easylistchina.txt: 2850) +.fang99.com/JavaScript/advjs/ +# ||fang.com/afp/door/ (easylistchina.txt: 2849) +.fang.com/afp/door/ +# ||fancai.com/Images/2014*.gif (easylistchina.txt: 2848) +.fancai.com/Images/2014.*\.gif +# ||familydoctor.com.cn/aiframe/ (easylistchina.txt: 2847) +.familydoctor.com.cn/aiframe/ +# ||faidns.com/image/site/faiscoAd/ (easylistchina.txt: 2846) +.faidns.com/image/site/faiscoAd/ +# ||ezprice.com.tw/js/*_ysm_ (easylistchina.txt: 2845) +.ezprice.com.tw/js/.*_ysm_ +# ||ezprice.com.tw/ezysm/ (easylistchina.txt: 2844) +.ezprice.com.tw/ezysm/ +# ||ezaozi.com/detail/*.js (easylistchina.txt: 2843) +.ezaozi.com/detail/.*\.js +# ||eyuyao.com/yyad/ (easylistchina.txt: 2842) +.eyuyao.com/yyad/ +# ||eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash.jpg (easylistchina.txt: 2841) +.eyuyan.com/attachment/thumb/Mon_1105/158_25295_7df7dd1884b0ash\.jpg +# ||ettoday.net^*/ad/ (easylistchina.txt: 2840) +.ettoday.net/.*/ad/ +# ||ettoday.net/events/ad-tab/ (easylistchina.txt: 2839) +.ettoday.net/events/ad-tab/ +# ||ettoday.net/banners/ (easylistchina.txt: 2838) +.ettoday.net/banners/ +# ||etnet.com.hk/www/tc/stocks/ads/ (easylistchina.txt: 2837) +.etnet.com.hk/www/tc/stocks/ads/ +# ||etnet.com.hk/ad2014/ (easylistchina.txt: 2836) +.etnet.com.hk/ad2014/ +# ||etf88.com/swf/ (easylistchina.txt: 2835) +.etf88.com/swf/ +# ||etest8.com/subcatejs/158/utitle158.js (easylistchina.txt: 2833) +.etest8.com/subcatejs/158/utitle158\.js +# ||etest8.com/subcatejs/158/tg158_330x190.js (easylistchina.txt: 2832) +.etest8.com/subcatejs/158/tg158_330x190\.js +# ||etest8.com/style/full_floating.js (easylistchina.txt: 2831) +.etest8.com/style/full_floating\.js +# ||etest8.com/style/950x90_2.js (easylistchina.txt: 2830) +.etest8.com/style/950x90_2\.js +# ||etdown.net/images/ad1 (easylistchina.txt: 2829) +.etdown.net/images/ad1 +# ||eprice.com.tw/js/swfobject-2.3.js (easylistchina.txt: 2828) +.eprice.com.tw/js/swfobject-2\.3\.js +# ||eprice.com.tw/img/tw_m/ad/ (easylistchina.txt: 2827) +.eprice.com.tw/img/tw_m/ad/ +# ||eprice.com.tw/img/dis/file/ (easylistchina.txt: 2826) +.eprice.com.tw/img/dis/file/ +# ||eprice.cn/image/upload/ad/ (easylistchina.txt: 2825) +.eprice.cn/image/upload/ad/ +# ||epinv.com/wp-content/themes/ep/tu/yinshu.gif (easylistchina.txt: 2824) +.epinv.com/wp-content/themes/ep/tu/yinshu\.gif +# ||epinv.com/wp-content/themes/ep/tu/*250.js (easylistchina.txt: 2823) +.epinv.com/wp-content/themes/ep/tu/.*250\.js +# ||epinv.com/wp-content/themes/ep/js/single.js (easylistchina.txt: 2822) +.epinv.com/wp-content/themes/ep/js/single\.js +# ||eol.cn/js/global/jQuery_ads.js (easylistchina.txt: 2821) +.eol.cn/js/global/jQuery_ads\.js +# ||eol.cn/js/eol/ (easylistchina.txt: 2820) +.eol.cn/js/eol/ +# ||entry.baidu.com/rp/home? (easylistchina.txt: 2819) +.entry.baidu.com/rp/home\? +# ||enread.com/img/185-50.gif (easylistchina.txt: 2817) +.enread.com/img/185-50\.gif +# ||enjoy101.org/hk_rm_tab_ (easylistchina.txt: 2816) +.enjoy101.org/hk_rm_tab_ +# ||enet.com.cn/mem_str_zoneid= (easylistchina.txt: 2815) +.enet.com.cn/mem_str_zoneid= +# ||enet.com.cn/home/v6/includes/adv/ (easylistchina.txt: 2814) +.enet.com.cn/home/v6/includes/adv/ +# ||enet.com.cn/eschool/includes/gdtup/tu6/slide.js (easylistchina.txt: 2813) +.enet.com.cn/eschool/includes/gdtup/tu6/slide\.js +# ||ems183.cn/images/kiees (easylistchina.txt: 2812) +.ems183.cn/images/kiees +# ||embest-tech.cn/js/jquery.blockUI.js (easylistchina.txt: 2811) +.embest-tech.cn/js/jquery\.blockUI\.js +# ||emarketing.bot.com.tw/output/vi.aspx? (easylistchina.txt: 2810) +.emarketing.bot.com.tw/output/vi\.aspx\? +# ||elecfans.com/images2012/pcb.gif (easylistchina.txt: 2809) +.elecfans.com/images2012/pcb\.gif +# ||elecfans.com/baidu_m.html (easylistchina.txt: 2808) +.elecfans.com/baidu_m\.html +# ||eeyy.com/uploadfile/img/beitou (easylistchina.txt: 2807) +.eeyy.com/uploadfile/img/beitou +# ||eeyy.com/templates/js/other/yxj.js (easylistchina.txt: 2806) +.eeyy.com/templates/js/other/yxj\.js +# ||eeyy.com/otherhtml/js/ad650.js (easylistchina.txt: 2805) +.eeyy.com/otherhtml/js/ad650\.js +# ||eeee42.com/Ads/ (easylistchina.txt: 2804) +.eeee42.com/Ads/ +# ||eduuu.com/gaokao/2015/bannerDaili.js (easylistchina.txt: 2803) +.eduuu.com/gaokao/2015/bannerDaili\.js +# ||educity.cn/self_text/text_disp.aspx?id= (easylistchina.txt: 2802) +.educity.cn/self_text/text_disp\.aspx\?id= +# ||edu24ol.com/web_news/js/1100.jpg (easylistchina.txt: 2801) +.edu24ol.com/web_news/js/1100\.jpg +# ||edu24ol.com/web_news/images/cj_news.jpg (easylistchina.txt: 2800) +.edu24ol.com/web_news/images/cj_news\.jpg +# ||edu03.com/data/js.php?id= (easylistchina.txt: 2799) +.edu03.com/data/js\.php\?id= +# ||ecmb.bdimg.com^ (easylistchina.txt: 2798) +.ecmb.bdimg.com +# ||ecma.bdimg.com^ (easylistchina.txt: 2797) +.ecma.bdimg.com +# ||ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb.jpg (easylistchina.txt: 2796) +.ebuk.cn/d/file/p/20131102/01e3e09c7c0677dc0a3d0115da4517eb\.jpg +# ||ebrun.com/jfile/position/js/*.js (easylistchina.txt: 2795) +.ebrun.com/jfile/position/js/.*\.js +# ||ebrun.com/jfile/lagou.js (easylistchina.txt: 2794) +.ebrun.com/jfile/lagou\.js +# ||ebp.renren.com^ (easylistchina.txt: 2793) +.ebp.renren.com +# ||ebiotrade.com/web_images/*.swf (easylistchina.txt: 2792) +.ebiotrade.com/web_images/.*\.swf +# ||ebiotrade.com/newsf/js/news_top_banner.js (easylistchina.txt: 2791) +.ebiotrade.com/newsf/js/news_top_banner\.js +# ||ebiotrade.com/newsf/js/inpic.js (easylistchina.txt: 2790) +.ebiotrade.com/newsf/js/inpic\.js +# ||ebiotrade.com/jslibrary/js (easylistchina.txt: 2789) +.ebiotrade.com/jslibrary/js +# ||eastmoney.com/js/headbiggg_ (easylistchina.txt: 2787) +.eastmoney.com/js/headbiggg_ +# ||eastlady.cn/cssjs/indextopad.js (easylistchina.txt: 2786) +.eastlady.cn/cssjs/indextopad\.js +# ||eastlady.cn/cssjs/indexgg.js (easylistchina.txt: 2785) +.eastlady.cn/cssjs/indexgg\.js +# ||eastlady.cn/cssjs/indexbaner (easylistchina.txt: 2784) +.eastlady.cn/cssjs/indexbaner +# ||eastday.com/k.js (easylistchina.txt: 2783) +.eastday.com/k\.js +# ||easou.com/online/banner/ (easylistchina.txt: 2782) +.easou.com/online/banner/ +# ||easou.com/brandImage/ad/ (easylistchina.txt: 2781) +.easou.com/brandImage/ad/ +# ||eap.enorth.com.cn^ (easylistchina.txt: 2780) +.eap.enorth.com.cn +# ||eap.big5.enorth.com.cn^ (easylistchina.txt: 2779) +.eap.big5.enorth.com.cn +# ||e399.com/html/ (easylistchina.txt: 2778) +.e399.com/html/ +# ||e23.cn/js/aaa.js (easylistchina.txt: 2777) +.e23.cn/js/aaa\.js +# ||e0575.com/pic/AD_ (easylistchina.txt: 2776) +.e0575.com/pic/AD_ +# ||e0575.com/attachment/image/20160106024028_1.jpg (easylistchina.txt: 2775) +.e0575.com/attachment/image/20160106024028_1\.jpg +# ||e0575.com/attachment/image/*_flash.swf (easylistchina.txt: 2774) +.e0575.com/attachment/image/.*_flash\.swf +# ||e0575.cn/js/float.js (easylistchina.txt: 2773) +.e0575.cn/js/float\.js +# ||e0575.cn/js/advBigPopup/ (easylistchina.txt: 2772) +.e0575.cn/js/advBigPopup/ +# ||e0575.cn/images/v1/dl/ (easylistchina.txt: 2771) +.e0575.cn/images/v1/dl/ +# ||e0421.com/css/js/tl (easylistchina.txt: 2770) +.e0421.com/css/js/tl +# ||e0421.com/css/js/bd (easylistchina.txt: 2769) +.e0421.com/css/js/bd +# ||e0421.com/*tj.js (easylistchina.txt: 2768) +.e0421.com/.*tj\.js +# ||e.yycqc.com^ (easylistchina.txt: 2767) +.e.yycqc.com +# ||e.hnr.cn/choose/view/ (easylistchina.txt: 2766) +.e.hnr.cn/choose/view/ +# ||e.changyan.sohu.com/dataService/getData? (easylistchina.txt: 2765) +.e.changyan.sohu.com/dataService/getData\? +# ||dzwww.com/k.js (easylistchina.txt: 2764) +.dzwww.com/k\.js +# ||dzwww.com/images/W020140912508314044024.gif (easylistchina.txt: 2763) +.dzwww.com/images/W020140912508314044024\.gif +# ||dz320.com/desktop (easylistchina.txt: 2761) +.dz320.com/desktop +# ||dytt8.net/js2/ (easylistchina.txt: 2760) +.dytt8.net/js2/ +# ||dyhjw.com/dyhjw/left/new.js (easylistchina.txt: 2759) +.dyhjw.com/dyhjw/left/new\.js +# ||dyhjw.com/dyhjw/4.htm (easylistchina.txt: 2758) +.dyhjw.com/dyhjw/4\.htm +# ||dyhjw.com/dyhjw/1/3/471.gif (easylistchina.txt: 2757) +.dyhjw.com/dyhjw/1/3/471\.gif +# ||dyhjw.com/dyhjw/1.htm (easylistchina.txt: 2756) +.dyhjw.com/dyhjw/1\.htm +# ||dydh.tv/statics/js/tuku (easylistchina.txt: 2755) +.dydh.tv/statics/js/tuku +# ||dydh.tv/img/960.gif (easylistchina.txt: 2754) +.dydh.tv/img/960\.gif +# ||dydh.tv/img/384.gif (easylistchina.txt: 2753) +.dydh.tv/img/384\.gif +# ||dydh.tv/img/2345.gif (easylistchina.txt: 2752) +.dydh.tv/img/2345\.gif +# ||dy2018.com/dianyq/ (easylistchina.txt: 2751) +.dy2018.com/dianyq/ +# ||dxrc.cn/images/sy.gif (easylistchina.txt: 2750) +.dxrc.cn/images/sy\.gif +# ||dxrc.cn/ad1/ (easylistchina.txt: 2749) +.dxrc.cn/ad1/ +# ||dxlwwang.com/style/js/jeminMain. (easylistchina.txt: 2748) +.dxlwwang.com/style/js/jeminMain\. +# ||dxlwwang.com/style/images/bar (easylistchina.txt: 2747) +.dxlwwang.com/style/images/bar +# ||dxlwwang.com/contact_js/contact.js (easylistchina.txt: 2746) +.dxlwwang.com/contact_js/contact\.js +# ||dwstatic.com^*/p/livetip/ (easylistchina.txt: 2745) +.dwstatic.com/.*/p/livetip/ +# ||dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1.js (easylistchina.txt: 2744) +.dwstatic.com/f=amkit/p/duya/special/box-gift/room-gift_v1\.js +# ||dwstatic.com/amkit/p/duya/special/list-notice/banner-app.jpg (easylistchina.txt: 2743) +.dwstatic.com/amkit/p/duya/special/list-notice/banner-app\.jpg +# ||dw138.com/a12345/ (easylistchina.txt: 2742) +.dw138.com/a12345/ +# ||dvser.china.com^ (easylistchina.txt: 2741) +.dvser.china.com +# ||dvs.china.com^ (easylistchina.txt: 2740) +.dvs.china.com +# ||dvbcn.com/yinyong/show/news_right_ (easylistchina.txt: 2739) +.dvbcn.com/yinyong/show/news_right_ +# ||dvbcn.com/uploadfile/2015/0202/20150202050700880.png (easylistchina.txt: 2738) +.dvbcn.com/uploadfile/2015/0202/20150202050700880\.png +# ||dvbcn.com/phpcms/templates/2012/news.html (easylistchina.txt: 2737) +.dvbcn.com/phpcms/templates/2012/news\.html +# ||dvbcn.com/index.php?m=poster& (easylistchina.txt: 2736) +.dvbcn.com/index\.php\?m=poster& +# ||dushiwenxue.com/add/ (easylistchina.txt: 2735) +.dushiwenxue.com/add/ +# ||dup.baidustatic.com/js/ (easylistchina.txt: 2734) +.dup.baidustatic.com/js/ +# ||duoxiai.com.cn/imgad/ (easylistchina.txt: 2733) +.duoxiai.com.cn/imgad/ +# ||duowan.com/s/yuanbao-entrance.js (easylistchina.txt: 2732) +.duowan.com/s/yuanbao-entrance\.js +# ||duowan.com/lgn/x/images/lgnadv/ (easylistchina.txt: 2731) +.duowan.com/lgn/x/images/lgnadv/ +# ||duonao.tv/upload/image/*.swf (easylistchina.txt: 2730) +.duonao.tv/upload/image/.*\.swf +# ||duonao.tv/upload/image/*.gif (easylistchina.txt: 2729) +.duonao.tv/upload/image/.*\.gif +# ||duba.com/static/v3/images/*.swf (easylistchina.txt: 2727) +.duba.com/static/v3/images/.*\.swf +# ||dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q.jpg (easylistchina.txt: 2725) +.dt123.net/fj/attachment/portal/201410/15/174736bs1sqrroxhsoz33q\.jpg +# ||drupalchina.cn/sites/default/files/osforce- (easylistchina.txt: 2724) +.drupalchina.cn/sites/default/files/osforce- +# ||drupalchina.cn/sites/default/files/lagou- (easylistchina.txt: 2723) +.drupalchina.cn/sites/default/files/lagou- +# ||drupalchina.cn/sites/default/files/banner/ (easylistchina.txt: 2722) +.drupalchina.cn/sites/default/files/banner/ +# ||drivergenius.com/inc/driverwwwad.js (easylistchina.txt: 2721) +.drivergenius.com/inc/driverwwwad\.js +# ||dre8.com/tieba/zh-tb/so.html (easylistchina.txt: 2720) +.dre8.com/tieba/zh-tb/so\.html +# ||dqdm.com/js/dqdm/nei960 (easylistchina.txt: 2719) +.dqdm.com/js/dqdm/nei960 +# ||dpfile.com/pc/trip/*(600x400) (easylistchina.txt: 2718) +.dpfile.com/pc/trip/.*\(600x400\) +# ||doyo.cn/Tpl/web/Public/images/material/www_couplets/ (easylistchina.txt: 2717) +.doyo.cn/Tpl/web/Public/images/material/www_couplets/ +# ||downza.cn/html/skin/default/ad/ (easylistchina.txt: 2716) +.downza.cn/html/skin/default/ad/ +# ||downyi.com/tg/ (easylistchina.txt: 2715) +.downyi.com/tg/ +# ||downxia.com/zejs/soft (easylistchina.txt: 2714) +.downxia.com/zejs/soft +# ||downxia.com/zejs/ad (easylistchina.txt: 2713) +.downxia.com/zejs/ad +# ||downxia.com/haojs/ (easylistchina.txt: 2712) +.downxia.com/haojs/ +# ||downxia.com/dgjs/download.js (easylistchina.txt: 2711) +.downxia.com/dgjs/download\.js +# ||download.game.yy.com/resource/fodder/*.flv (easylistchina.txt: 2710) +.download.game.yy.com/resource/fodder/.*\.flv +# ||download.game.yy.com/crossdomain.xml (easylistchina.txt: 2709) +.download.game.yy.com/crossdomain\.xml +# ||downkr.com/statics/js/all.js (easylistchina.txt: 2708) +.downkr.com/statics/js/all\.js +# ||downcc.com/js/66060.gif (easylistchina.txt: 2707) +.downcc.com/js/66060\.gif +# ||downbank.cn/soft6/ (easylistchina.txt: 2706) +.downbank.cn/soft6/ +# ||downbank.cn/s1/ (easylistchina.txt: 2705) +.downbank.cn/s1/ +# ||downbank.cn/jkzm/ (easylistchina.txt: 2704) +.downbank.cn/jkzm/ +# ||down12.com/htmlg/D*.js (easylistchina.txt: 2703) +.down12.com/htmlg/D.*\.js +# ||down.it168.com/ggimg/ (easylistchina.txt: 2702) +.down.it168.com/ggimg/ +# ||down.admin5.com/z/ (easylistchina.txt: 2701) +.down.admin5.com/z/ +# ||douyutv.com/upload/signs/*.swf (easylistchina.txt: 2700) +.douyutv.com/upload/signs/.*\.swf +# ||douguo.net/upload/post/d/ (easylistchina.txt: 2699) +.douguo.net/upload/post/d/ +# ||doubleclick.tv002.com^ (easylistchina.txt: 2698) +.doubleclick.tv002.com +# ||doubanio.com^*/js/ad. (easylistchina.txt: 2697) +.doubanio.com/.*/js/ad\. +# ||douban.com^*/fm_bgad.js (easylistchina.txt: 2695) +.douban.com/.*/fm_bgad\.js +# ||douban.com/view/dale-online/dale_ad (easylistchina.txt: 2694) +.douban.com/view/dale-online/dale_ad +# ||douban.com/?unit=dale_movie_trailer_after_play& (easylistchina.txt: 2693) +.douban.com/\?unit=dale_movie_trailer_after_play& +# ||dospy.com/hezuo/ (easylistchina.txt: 2691) +.dospy.com/hezuo/ +# ||dongfangtai.com/js/duil.js (easylistchina.txt: 2690) +.dongfangtai.com/js/duil\.js +# ||domeng.cn/js/index_ (easylistchina.txt: 2689) +.domeng.cn/js/index_ +# ||dolphin.ftimg.net/s? (easylistchina.txt: 2688) +.dolphin.ftimg.net/s\? +# ||dol.tianya.cn/s?z=tianya&c= (easylistchina.txt: 2687) +.dol.tianya.cn/s\?z=tianya&c= +# ||doguo.com/api/vip_discount.js (easylistchina.txt: 2686) +.doguo.com/api/vip_discount\.js +# ||docin.com/jsp_cn/ad/ (easylistchina.txt: 2684) +.docin.com/jsp_cn/ad/ +# ||docin.com/docin_adv/ (easylistchina.txt: 2683) +.docin.com/docin_adv/ +# ||docin.com/app/a_d/ (easylistchina.txt: 2682) +.docin.com/app/a_d/ +# ||doc88.com/assets/js/myad.js (easylistchina.txt: 2681) +.doc88.com/assets/js/myad\.js +# ||do189.com/zb_users/theme/duoyi/style/images/*.gif (easylistchina.txt: 2680) +.do189.com/zb_users/theme/duoyi/style/images/.*\.gif +# ||dnwx.com/pic_ad/ (easylistchina.txt: 2679) +.dnwx.com/pic_ad/ +# ||dnwx.com/pic/xitongba-468-2.gif (easylistchina.txt: 2678) +.dnwx.com/pic/xitongba-468-2\.gif +# ||dnwx.com/pic/lg.gif (easylistchina.txt: 2677) +.dnwx.com/pic/lg\.gif +# ||dnwx.com/pic/*_978x (easylistchina.txt: 2676) +.dnwx.com/pic/.*_978x +# ||dnwx.com/pic/*-960x60. (easylistchina.txt: 2675) +.dnwx.com/pic/.*-960x60\. +# ||dnvod.eu/upload/image/*.swf (easylistchina.txt: 2673) +.dnvod.eu/upload/image/.*\.swf +# ||dnvod.eu/upload/image/*.gif (easylistchina.txt: 2672) +.dnvod.eu/upload/image/.*\.gif +# ||dnpz.net/templets/images/lunbo/ (easylistchina.txt: 2670) +.dnpz.net/templets/images/lunbo/ +# ||dngame.eu/dngcenter/default.aspx (easylistchina.txt: 2669) +.dngame.eu/dngcenter/default\.aspx +# ||dn-ttdaili.qbox.me/bdqb/ (easylistchina.txt: 2668) +.dn-ttdaili.qbox.me/bdqb/ +# ||dn-cnodestatic.qbox.me/public/images/*-banner- (easylistchina.txt: 2667) +.dn-cnodestatic.qbox.me/public/images/.*-banner- +# ||dmmfx.com.au/dmm-tag/ (easylistchina.txt: 2666) +.dmmfx.com.au/dmm-tag/ +# ||dmhua.net/js/bd_ (easylistchina.txt: 2665) +.dmhua.net/js/bd_ +# ||dmfans.net/template/haokandemanhhua/images/g_js/ (easylistchina.txt: 2664) +.dmfans.net/template/haokandemanhhua/images/g_js/ +# ||dm530.com/pic/fgr/*.js (easylistchina.txt: 2663) +.dm530.com/pic/fgr/.*\.js +# ||dm456.com/m/ (easylistchina.txt: 2662) +.dm456.com/m/ +# ||dm456.com/install/loading.html (easylistchina.txt: 2661) +.dm456.com/install/loading\.html +# ||dl-l-tax.gov.cn/js/2floating.js (easylistchina.txt: 2660) +.dl-l-tax.gov.cn/js/2floating\.js +# ||djwma.com/tc.js (easylistchina.txt: 2659) +.djwma.com/tc\.js +# ||djwma.com/qq.jpg (easylistchina.txt: 2658) +.djwma.com/qq\.jpg +# ||djwma.com/960*.gif (easylistchina.txt: 2657) +.djwma.com/960.*\.gif +# ||djwma.com/760*.gif (easylistchina.txt: 2656) +.djwma.com/760.*\.gif +# ||djkk.com/ak/ (easylistchina.txt: 2655) +.djkk.com/ak/ +# ||djccc.com/js/c*.js (easylistchina.txt: 2654) +.djccc.com/js/c.*\.js +# ||djccc.com/js/b*.js (easylistchina.txt: 2653) +.djccc.com/js/b.*\.js +# ||djccc.com/js/a*.js (easylistchina.txt: 2652) +.djccc.com/js/a.*\.js +# ||dj97.com/js/list_right_ (easylistchina.txt: 2651) +.dj97.com/js/list_right_ +# ||dj520.com/js/stj.js (easylistchina.txt: 2650) +.dj520.com/js/stj\.js +# ||divcss5.com/wy/top465.js (easylistchina.txt: 2649) +.divcss5.com/wy/top465\.js +# ||divcss5.com*/liping/ (easylistchina.txt: 2648) +.divcss5.com*./(.*/)?liping/ +# ||divcss5.com*/ibeifeng/ (easylistchina.txt: 2647) +.divcss5.com*./(.*/)?ibeifeng/ +# ||divcss5.com*/enkj/ (easylistchina.txt: 2646) +.divcss5.com*./(.*/)?enkj/ +# ||disk1.net/i/2/900%C3%9740.gif (easylistchina.txt: 2645) +.disk1.net/i/2/900%C3%9740\.gif +# ||discuzlab.com/data/attachment/portal/ (easylistchina.txt: 2644) +.discuzlab.com/data/attachment/portal/ +# ||discuz.gtimg.cn/cloud/scripts/discuz_tips.js (easylistchina.txt: 2643) +.discuz.gtimg.cn/cloud/scripts/discuz_tips\.js +# ||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ (easylistchina.txt: 2642) +.discuss.com.hk/dfp_forum\.php\?au=Discuss_Web_ +# ||dioguitar23.*/images/*.gif (easylistchina.txt: 2641) +.dioguitar23.*./(.*/)?images/.*\.gif +# ||dilidili.com/js/w*.js (easylistchina.txt: 2640) +.dilidili.com/js/w.*\.js +# ||dilidili.com/js/right (easylistchina.txt: 2639) +.dilidili.com/js/right +# ||dilidili.com/js/index.js (easylistchina.txt: 2638) +.dilidili.com/js/index\.js +# ||dig.chouti.com/advert (easylistchina.txt: 2637) +.dig.chouti.com/advert +# ||didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D.png (easylistchina.txt: 2636) +.didown.com/static/3C1A676E432C49A19F74EF3A64E5DE7D\.png +# ||didamoe.com/js/xuanfu.js (easylistchina.txt: 2635) +.didamoe.com/js/xuanfu\.js +# ||didamoe.com/js/play_ (easylistchina.txt: 2634) +.didamoe.com/js/play_ +# ||dichan.com.au/newhouse/pinnacle/images/bcastr3.swf (easylistchina.txt: 2633) +.dichan.com.au/newhouse/pinnacle/images/bcastr3\.swf +# ||diannaoxitong.com/js/*.gif (easylistchina.txt: 2632) +.diannaoxitong.com/js/.*\.gif +# ||dg.073img.com^ (easylistchina.txt: 2631) +.dg.073img.com +# ||dfcfw.com/js/tg/rightAd_v2.js (easylistchina.txt: 2630) +.dfcfw.com/js/tg/rightAd_v2\.js +# ||dfcfw.com/js/pinzhong/bdbottom_ (easylistchina.txt: 2629) +.dfcfw.com/js/pinzhong/bdbottom_ +# ||dfcfw.com/js/pinzhong/bd_pz_side_ (easylistchina.txt: 2628) +.dfcfw.com/js/pinzhong/bd_pz_side_ +# ||dfcfw.com/js/*/emfloatmedia_ (easylistchina.txt: 2627) +.dfcfw.com/js/.*/emfloatmedia_ +# ||dfad.dfdaily.com^ (easylistchina.txt: 2626) +.dfad.dfdaily.com +# ||deyangs.com/img/ (easylistchina.txt: 2625) +.deyangs.com/img/ +# ||dexiazai.com/333.jpg (easylistchina.txt: 2624) +.dexiazai.com/333\.jpg +# ||dexiazai.com/222.jpg (easylistchina.txt: 2623) +.dexiazai.com/222\.jpg +# ||dexiazai.com/111.jpg (easylistchina.txt: 2622) +.dexiazai.com/111\.jpg +# ||der4545.com/ok/ (easylistchina.txt: 2621) +.der4545.com/ok/ +# ||demo.528500.com^*.swf (easylistchina.txt: 2620) +.demo.528500.com/.*\.swf +# ||dealmoon.com/upload/dealmoon_app.jpg (easylistchina.txt: 2619) +.dealmoon.com/upload/dealmoon_app\.jpg +# ||dealmoon.com/images/n/creditcard-160.png (easylistchina.txt: 2618) +.dealmoon.com/images/n/creditcard-160\.png +# ||dealmoon.com/hotdeals/ (easylistchina.txt: 2617) +.dealmoon.com/hotdeals/ +# ||dealmoon.com/data/app/banners/ (easylistchina.txt: 2616) +.dealmoon.com/data/app/banners/ +# ||de.as.pptv.com^ (easylistchina.txt: 2615) +.de.as.pptv.com +# ||ddooo.com/viewimg.asp?img= (easylistchina.txt: 2614) +.ddooo.com/viewimg\.asp\?img= +# ||ddooo.com/js/ (easylistchina.txt: 2613) +.ddooo.com/js/ +# ||ddooo.com/duoduo/ (easylistchina.txt: 2612) +.ddooo.com/duoduo/ +# ||ddooo.com/ddjs/ (easylistchina.txt: 2611) +.ddooo.com/ddjs/ +# ||ddheli.com/k.js (easylistchina.txt: 2610) +.ddheli.com/k\.js +# ||dd.xdnice.com^ (easylistchina.txt: 2608) +.dd.xdnice.com +# ||dclick.autonet.com.tw/90/AC_RunActiveContent.js (easylistchina.txt: 2607) +.dclick.autonet.com.tw/90/AC_RunActiveContent\.js +# ||dcfever.com/campaigns/ (easylistchina.txt: 2606) +.dcfever.com/campaigns/ +# ||dbw.cn/js/cp.js (easylistchina.txt: 2605) +.dbw.cn/js/cp\.js +# ||dbw.cn/eap/js/hl/hlj_ad (easylistchina.txt: 2604) +.dbw.cn/eap/js/hl/hlj_ad +# ||dbw.cn/eap/js/db/dbwad_ (easylistchina.txt: 2603) +.dbw.cn/eap/js/db/dbwad_ +# ||dbw.cn/0/07/18/40/7184029_146090.jpg (easylistchina.txt: 2602) +.dbw.cn/0/07/18/40/7184029_146090\.jpg +# ||db28.cn/cache/ads.js (easylistchina.txt: 2601) +.db28.cn/cache/ads\.js +# ||dashuye.com/data/cache/myad*.htm (easylistchina.txt: 2600) +.dashuye.com/data/cache/myad.*\.htm +# ||dashi.com/static/images/root_banner.jpg (easylistchina.txt: 2599) +.dashi.com/static/images/root_banner\.jpg +# ||dashi.com/static/images/old_phone.jpg (easylistchina.txt: 2598) +.dashi.com/static/images/old_phone\.jpg +# ||dashi.com/static/images/jiaocheng_ad.jpg (easylistchina.txt: 2597) +.dashi.com/static/images/jiaocheng_ad\.jpg +# ||dasai8.com/js/duilianjs.js (easylistchina.txt: 2596) +.dasai8.com/js/duilianjs\.js +# ||daqianduan.com/wp-content/uploads/*lagou (easylistchina.txt: 2595) +.daqianduan.com/wp-content/uploads/.*lagou +# ||daqianduan.com/wp-content/uploads/*/ads*.jpg (easylistchina.txt: 2594) +.daqianduan.com/wp-content/uploads/.*/ads.*\.jpg +# ||daqianduan.com/wp-content/uploads/*/ad- (easylistchina.txt: 2593) +.daqianduan.com/wp-content/uploads/.*/ad- +# ||daohangtx.com/jishudaohang/indextop.js (easylistchina.txt: 2592) +.daohangtx.com/jishudaohang/indextop\.js +# ||danyang.com/statics/banner.swf (easylistchina.txt: 2591) +.danyang.com/statics/banner\.swf +# ||danlan.org/KFC/ (easylistchina.txt: 2590) +.danlan.org/KFC/ +# ||daimabiji.com/images/17558/198zone.gif (easylistchina.txt: 2589) +.daimabiji.com/images/17558/198zone\.gif +# ||dailynews.sina.com/gb/ads/ (easylistchina.txt: 2588) +.dailynews.sina.com/gb/ads/ +# ||dailyfx.com.hk/ext/lang-ad (easylistchina.txt: 2587) +.dailyfx.com.hk/ext/lang-ad +# ||dabin69.com/template/comiis_ydzx/ads/topad01.jpg (easylistchina.txt: 2586) +.dabin69.com/template/comiis_ydzx/ads/topad01\.jpg +# ||dabin69.com/data/attachment/portal/ (easylistchina.txt: 2585) +.dabin69.com/data/attachment/portal/ +# ||da-fan-shu.cn/images/kuaijie.jpg (easylistchina.txt: 2583) +.da-fan-shu.cn/images/kuaijie\.jpg +# ||d7w.net/static/d7wad/ (easylistchina.txt: 2582) +.d7w.net/static/d7wad/ +# ||d7ol.com/pics/ad/ (easylistchina.txt: 2581) +.d7ol.com/pics/ad/ +# ||d1.shenchuang.com/a.htm (easylistchina.txt: 2574) +.d1.shenchuang.com/a\.htm +# ||d0.xcar.com.cn^ (easylistchina.txt: 2573) +.d0.xcar.com.cn +# ||d.taomato.com^ (easylistchina.txt: 2572) +.d.taomato.com +# ||d.pixiv.org/show?zone_id= (easylistchina.txt: 2571) +.d.pixiv.org/show\?zone_id= +# ||d.39.net/a.htm? (easylistchina.txt: 2569) +.d.39.net/a\.htm\? +# ||d.107788.com^ (easylistchina.txt: 2568) +.d.107788.com +# ||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg (easylistchina.txt: 2567) +.cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6\.jpg +# ||cyzone.cn^*/js/m.js (easylistchina.txt: 2566) +.cyzone.cn/.*/js/m\.js +# ||cye.com.cn/JS/AdsJS/ (easylistchina.txt: 2565) +.cye.com.cn/JS/AdsJS/ +# ||cxzyw.com/upload/1/148966/images/*.gif (easylistchina.txt: 2564) +.cxzyw.com/upload/1/148966/images/.*\.gif +# ||cww.net.cn/UpLoadFile/*.swf (easylistchina.txt: 2563) +.cww.net.cn/UpLoadFile/.*\.swf +# ||cww.net.cn/include/show.asp?boardID= (easylistchina.txt: 2562) +.cww.net.cn/include/show\.asp\?boardID= +# ||cwan.com/templets/webgame/misc/js/indextip.js (easylistchina.txt: 2561) +.cwan.com/templets/webgame/misc/js/indextip\.js +# ||cwan.com/templets/shouye/misc/js/suspend.js (easylistchina.txt: 2560) +.cwan.com/templets/shouye/misc/js/suspend\.js +# ||ctrip.com/amd/*960x90. (easylistchina.txt: 2559) +.ctrip.com/amd/.*960x90\. +# ||ctpan.com/vip.js (easylistchina.txt: 2558) +.ctpan.com/vip\.js +# ||ctpan.com/statics/js/adt (easylistchina.txt: 2557) +.ctpan.com/statics/js/adt +# ||ctpan.com/cp (easylistchina.txt: 2556) +.ctpan.com/cp +# ||csdn.net/sda/Topic (easylistchina.txt: 2555) +.csdn.net/sda/Topic +# ||csdn.net/msg.popup.js (easylistchina.txt: 2554) +.csdn.net/msg\.popup\.js +# ||csdn.net/ggmm/ (easylistchina.txt: 2553) +.csdn.net/ggmm/ +# ||csai.cn/xiaohua/js/xiaohua.js (easylistchina.txt: 2552) +.csai.cn/xiaohua/js/xiaohua\.js +# ||cs360.cn/js/search_zcw.js (easylistchina.txt: 2551) +.cs360.cn/js/search_zcw\.js +# ||cs.com.cn/csad/ (easylistchina.txt: 2550) +.cs.com.cn/csad/ +# ||creativetop.com/cn/pic/laogu_adv.gif (easylistchina.txt: 2549) +.creativetop.com/cn/pic/laogu_adv\.gif +# ||creaders.net*/ad_func.js (easylistchina.txt: 2548) +.creaders.net*./(.*/)?ad_func\.js +# ||cr173.com/show/ (easylistchina.txt: 2547) +.cr173.com/show/ +# ||cr173.com/js/ (easylistchina.txt: 2546) +.cr173.com/js/ +# ||cqwb.com.cn/skin/ggimages/ (easylistchina.txt: 2545) +.cqwb.com.cn/skin/ggimages/ +# ||cqvip.com/viewserver/ViewAD (easylistchina.txt: 2544) +.cqvip.com/viewserver/ViewAD +# ||cqnews.net:8080/vplayerAdv/ (easylistchina.txt: 2543) +.cqnews.net:8080/vplayerAdv/ +# ||cqfishing.net/data/attachment/portal/ (easylistchina.txt: 2542) +.cqfishing.net/data/attachment/portal/ +# ||cps.okbuy.com^ (easylistchina.txt: 2541) +.cps.okbuy.com +# ||cpplay.com/inc/ (easylistchina.txt: 2540) +.cpplay.com/inc/ +# ||cpbl-elta.cdn.hinet.net/web/images/beer.jpg (easylistchina.txt: 2539) +.cpbl-elta.cdn.hinet.net/web/images/beer\.jpg +# ||cpbl-elta.cdn.hinet.net/web/images/ad_ (easylistchina.txt: 2538) +.cpbl-elta.cdn.hinet.net/web/images/ad_ +# ||cp126.com/img/ad0 (easylistchina.txt: 2537) +.cp126.com/img/ad0 +# ||cp126.com/888zr11.gif (easylistchina.txt: 2536) +.cp126.com/888zr11\.gif +# ||cp.ifeng.com/iframe/getiframe (easylistchina.txt: 2535) +.cp.ifeng.com/iframe/getiframe +# ||cooltu.com/mp/ (easylistchina.txt: 2534) +.cooltu.com/mp/ +# ||coolaler.com.tw^*_340x80. (easylistchina.txt: 2533) +.coolaler.com.tw/.*_340x80\. +# ||coolaler.com.tw^*_300x100. (easylistchina.txt: 2532) +.coolaler.com.tw/.*_300x100\. +# ||cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ (easylistchina.txt: 2531) +.cool3c.com/sites/all/themes/coolthemes/cwww/ysm_ +# ||com.webmasterhome.cn/a1- (easylistchina.txt: 2529) +.com.webmasterhome.cn/a1- +# ||colayun.com/cola3/newdown/join.png (easylistchina.txt: 2528) +.colayun.com/cola3/newdown/join\.png +# ||coladrive.com/cola3/newdown/join.png (easylistchina.txt: 2527) +.coladrive.com/cola3/newdown/join\.png +# ||codepub.com/wuse/pic/ (easylistchina.txt: 2526) +.codepub.com/wuse/pic/ +# ||codepub.com/file/code/20141225/142856140.jpg (easylistchina.txt: 2525) +.codepub.com/file/code/20141225/142856140\.jpg +# ||codeforge.cn/images/banner.gif (easylistchina.txt: 2524) +.codeforge.cn/images/banner\.gif +# ||cococomic.com/g/ (easylistchina.txt: 2523) +.cococomic.com/g/ +# ||cnzzla.com/public/scripts/money.js (easylistchina.txt: 2522) +.cnzzla.com/public/scripts/money\.js +# ||cnzol.com/template/style/images/wlfloat.js (easylistchina.txt: 2520) +.cnzol.com/template/style/images/wlfloat\.js +# ||cnzol.com/template/style/images/lcdl.js (easylistchina.txt: 2519) +.cnzol.com/template/style/images/lcdl\.js +# ||cnzol.com/page/ (easylistchina.txt: 2518) +.cnzol.com/page/ +# ||cnwnews.com/gg200903/nrzs.js (easylistchina.txt: 2517) +.cnwnews.com/gg200903/nrzs\.js +# ||cnwnews.com/gg200903/nry02.js (easylistchina.txt: 2516) +.cnwnews.com/gg200903/nry02\.js +# ||cntvboxnow.com//ads_ (easylistchina.txt: 2515) +# ||cntv.cn/hezuo/ (easylistchina.txt: 2514) +.cntv.cn/hezuo/ +# ||cnstock.com/image/201511/26/20151126105158298.jpg (easylistchina.txt: 2513) +.cnstock.com/image/201511/26/20151126105158298\.jpg +# ||cnsofas.com/loldytt/js/ (easylistchina.txt: 2512) +.cnsofas.com/loldytt/js/ +# ||cnsat.net/Pictuer/ (easylistchina.txt: 2511) +.cnsat.net/Pictuer/ +# ||cnr.cn/cnrxwph/iframe/tpdy/ (easylistchina.txt: 2510) +.cnr.cn/cnrxwph/iframe/tpdy/ +# ||cnnb.com.cn/images/14ny_1.gif (easylistchina.txt: 2509) +.cnnb.com.cn/images/14ny_1\.gif +# ||cnnb.com.cn/image/xhhc71.gif (easylistchina.txt: 2508) +.cnnb.com.cn/image/xhhc71\.gif +# ||cnmoad.com/wp-content/uploads/2015/02/lomark_banner.png (easylistchina.txt: 2507) +.cnmoad.com/wp-content/uploads/2015/02/lomark_banner\.png +# ||cnmo-img.com.cn/oddjs/ (easylistchina.txt: 2506) +.cnmo-img.com.cn/oddjs/ +# ||cnliti.com//template/xtfuf_black/images/img/m3ph73.png (easylistchina.txt: 2505) +# ||cnkang.com/zixun/nanke/ (easylistchina.txt: 2504) +.cnkang.com/zixun/nanke/ +# ||cnkang.com/images/sy (easylistchina.txt: 2503) +.cnkang.com/images/sy +# ||cnkang.com/images/*756.jpg (easylistchina.txt: 2502) +.cnkang.com/images/.*756\.jpg +# ||cnkang.com/cs/images0410/fengxiong.jpg (easylistchina.txt: 2501) +.cnkang.com/cs/images0410/fengxiong\.jpg +# ||cnjxol.com/include/2011/index/js/index.js (easylistchina.txt: 2500) +.cnjxol.com/include/2011/index/js/index\.js +# ||cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414.swf (easylistchina.txt: 2499) +.cnjxol.com/Files/Editor/flash/%E4%BF%AE%E6%94%B90414\.swf +# ||cnjxol.com/*.files/sian.gif (easylistchina.txt: 2498) +.cnjxol.com/.*\.files/sian\.gif +# ||cnhubei.com*/g2 (easylistchina.txt: 2497) +.cnhubei.com*./(.*/)?g2 +# ||cngsf.com/images/336_280.gif (easylistchina.txt: 2496) +.cngsf.com/images/336_280\.gif +# ||cngsf.com/baidu.htm (easylistchina.txt: 2495) +.cngsf.com/baidu\.htm +# ||cngoldres.com/advservice/ (easylistchina.txt: 2494) +.cngoldres.com/advservice/ +# ||cndesign.com/img/1200x100.jpg (easylistchina.txt: 2493) +.cndesign.com/img/1200x100\.jpg +# ||cndesign.com/Content/img/356x80_ (easylistchina.txt: 2492) +.cndesign.com/Content/img/356x80_ +# ||cndesign.com/Content/img/175x60_ (easylistchina.txt: 2491) +.cndesign.com/Content/img/175x60_ +# ||cndesign.com/Content/img/*x90_ (easylistchina.txt: 2490) +.cndesign.com/Content/img/.*x90_ +# ||cncrk.com/505/ (easylistchina.txt: 2489) +.cncrk.com/505/ +# ||cnchu.com/aps/ (easylistchina.txt: 2488) +.cnchu.com/aps/ +# ||cnbetacdn.com/banner (easylistchina.txt: 2487) +.cnbetacdn.com/banner +# ||cnbetacdn.com/320-50. (easylistchina.txt: 2486) +.cnbetacdn.com/320-50\. +# ||cnbeta.com/jobs/list_? (easylistchina.txt: 2485) +.cnbeta.com/jobs/list_\? +# ||cnbeta.com/assets/js/pages/google.js (easylistchina.txt: 2484) +.cnbeta.com/assets/js/pages/google\.js +# ||cnbeta.com/assets/images/*_670_90. (easylistchina.txt: 2483) +.cnbeta.com/assets/images/.*_670_90\. +# ||cna5.net/skins/js/ (easylistchina.txt: 2482) +.cna5.net/skins/js/ +# ||cmhello.com/2015/10/hc.jpg (easylistchina.txt: 2480) +.cmhello.com/2015/10/hc\.jpg +# ||clouddn.com/960x60.gif (easylistchina.txt: 2478) +.clouddn.com/960x60\.gif +# ||clm02.com/2014-A/FB-6-14-AA1.jpg (easylistchina.txt: 2477) +.clm02.com/2014-A/FB-6-14-AA1\.jpg +# ||cjn.cn^*/ad/ (easylistchina.txt: 2476) +.cjn.cn/.*/ad/ +# ||citysbs.com^*swf (easylistchina.txt: 2473) +.citysbs.com/.*swf +# ||citysbs.com/no/*/980x (easylistchina.txt: 2472) +.citysbs.com/no/.*/980x +# ||citysbs.com/no/*/800x90- (easylistchina.txt: 2471) +.citysbs.com/no/.*/800x90- +# ||citysbs.com/no/*/650x50- (easylistchina.txt: 2470) +.citysbs.com/no/.*/650x50- +# ||citysbs.com/no/*/1190x60- (easylistchina.txt: 2469) +.citysbs.com/no/.*/1190x60- +# ||citysbs.com/chongqing/*/1920x179- (easylistchina.txt: 2468) +.citysbs.com/chongqing/.*/1920x179- +# ||cishuge.com/static/js/xiaoshuo.js (easylistchina.txt: 2467) +.cishuge.com/static/js/xiaoshuo\.js +# ||cilook.net/cilookinc/isee5_950x60.gif (easylistchina.txt: 2466) +.cilook.net/cilookinc/isee5_950x60\.gif +# ||chunxiao.tv/1.aspx (easylistchina.txt: 2465) +.chunxiao.tv/1\.aspx +# ||chuixue.com/template/*/images/g_js/show_ (easylistchina.txt: 2464) +.chuixue.com/template/.*/images/g_js/show_ +# ||chuixue.com/jsa/ (easylistchina.txt: 2463) +.chuixue.com/jsa/ +# ||chubun.com/images/banners/ (easylistchina.txt: 2462) +.chubun.com/images/banners/ +# ||chuangshi.qq.com/upload/cmsv2/Banner/ (easylistchina.txt: 2460) +.chuangshi.qq.com/upload/cmsv2/Banner/ +# ||chrome007.com/images/goodxxxx.jpg (easylistchina.txt: 2459) +.chrome007.com/images/goodxxxx\.jpg +# ||chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ (easylistchina.txt: 2458) +.chotee.com/wp-content/uploads/2015/apple-back-to-school-2015/ +# ||chosun.com/images/banner/ (easylistchina.txt: 2457) +.chosun.com/images/banner/ +# ||chiphell.com/activity/ (easylistchina.txt: 2456) +.chiphell.com/activity/ +# ||chinaz.com/temp_upfile/ads/ (easylistchina.txt: 2455) +.chinaz.com/temp_upfile/ads/ +# ||chinaz.com/site_view/alexa_ad.jpg (easylistchina.txt: 2454) +.chinaz.com/site_view/alexa_ad\.jpg +# ||chinaz.com/site_view/2z.cn.gif (easylistchina.txt: 2453) +.chinaz.com/site_view/2z\.cn\.gif +# ||chinaz.com/newshome/ (easylistchina.txt: 2452) +.chinaz.com/newshome/ +# ||chinaz.com/ip_gadsense.js (easylistchina.txt: 2451) +.chinaz.com/ip_gadsense\.js +# ||chinaz.com/imagead/ (easylistchina.txt: 2450) +.chinaz.com/imagead/ +# ||chinaz.com/alexa/wz.js (easylistchina.txt: 2449) +.chinaz.com/alexa/wz\.js +# ||chinaz.com/alexa/word3.htm (easylistchina.txt: 2448) +.chinaz.com/alexa/word3\.htm +# ||chinaz.com/alexa/pic.js (easylistchina.txt: 2447) +.chinaz.com/alexa/pic\.js +# ||chinaz.com/2015/0113/1421112175579.jpg (easylistchina.txt: 2446) +.chinaz.com/2015/0113/1421112175579\.jpg +# ||chinaz.com/2011code_images/topright.js (easylistchina.txt: 2445) +.chinaz.com/2011code_images/topright\.js +# ||chinaz.com/2011code_images/soft (easylistchina.txt: 2444) +.chinaz.com/2011code_images/soft +# ||chinaz.com/2011code_images/A_ (easylistchina.txt: 2443) +.chinaz.com/2011code_images/A_ +# ||chinayes.com/Include%5Cad%5C (easylistchina.txt: 2442) +.chinayes.com/Include%5Cad%5C +# ||chinawmrc.com/images/end.js (easylistchina.txt: 2441) +.chinawmrc.com/images/end\.js +# ||chinatimes.com/Scripts/onead_ (easylistchina.txt: 2440) +.chinatimes.com/Scripts/onead_ +# ||chinatimes.com/Scripts/bennerad. (easylistchina.txt: 2439) +.chinatimes.com/Scripts/bennerad\. +# ||chinatimes.com/ads/forums/carouselad.js (easylistchina.txt: 2438) +.chinatimes.com/ads/forums/carouselad\.js +# ||chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo.js (easylistchina.txt: 2437) +.chinatimes.com/2009Cti/cthead/Scripts-utf8/yahoo\.js +# ||chinatimes.com/2007Cti/ (easylistchina.txt: 2436) +.chinatimes.com/2007Cti/ +# ||chinaso.com/iframe336/ (easylistchina.txt: 2435) +.chinaso.com/iframe336/ +# ||chinasexq.com/js/ad (easylistchina.txt: 2434) +.chinasexq.com/js/ad +# ||chinaqking.com/userUpload/jobApply2.jpg (easylistchina.txt: 2433) +.chinaqking.com/userUpload/jobApply2\.jpg +# ||chinaqking.com/images/qkw/jobApply1.jpg (easylistchina.txt: 2432) +.chinaqking.com/images/qkw/jobApply1\.jpg +# ||chinaqking.com/images/newPage/zhaopin.jpg (easylistchina.txt: 2431) +.chinaqking.com/images/newPage/zhaopin\.jpg +# ||chinaqking.com/images/newPage/JLW.jpg (easylistchina.txt: 2430) +.chinaqking.com/images/newPage/JLW\.jpg +# ||chinanews.com/shipin/sptp.xml (easylistchina.txt: 2429) +.chinanews.com/shipin/sptp\.xml +# ||chinanews.com/images/images/Sadv (easylistchina.txt: 2428) +.chinanews.com/images/images/Sadv +# ||chinanews.com/images/*/gaobang. (easylistchina.txt: 2427) +.chinanews.com/images/.*/gaobang\. +# ||chinanews.com.cn/ad2015/ (easylistchina.txt: 2426) +.chinanews.com.cn/ad2015/ +# ||chinairn.com/images3/*ads (easylistchina.txt: 2425) +.chinairn.com/images3/.*ads +# ||chinaiiss.com/js/function.ad.js (easylistchina.txt: 2424) +.chinaiiss.com/js/function\.ad\.js +# ||chinaiiss.com/js/float.js (easylistchina.txt: 2423) +.chinaiiss.com/js/float\.js +# ||chinaiiss.com/images/jianyu_erweima (easylistchina.txt: 2422) +.chinaiiss.com/images/jianyu_erweima +# ||chinaiiss.com/attachment/linkimg/201306/19/142826_845.jpg (easylistchina.txt: 2421) +.chinaiiss.com/attachment/linkimg/201306/19/142826_845\.jpg +# ||chinafpd.net/js/2012-10/ (easylistchina.txt: 2420) +.chinafpd.net/js/2012-10/ +# ||chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13.jpg (easylistchina.txt: 2419) +.chinafix.com.cn/data/attachment/portal/201409/22/155241di5o5rprppr5ii13\.jpg +# ||chinadaily.com.cn/micro-reading/dzh/bd-taofang.gif (easylistchina.txt: 2418) +.chinadaily.com.cn/micro-reading/dzh/bd-taofang\.gif +# ||chinachugui.com/jsfiles/aods/ (easylistchina.txt: 2417) +.chinachugui.com/jsfiles/aods/ +# ||chinacar.com.cn/zhuanyongche/images/wintip_ (easylistchina.txt: 2416) +.chinacar.com.cn/zhuanyongche/images/wintip_ +# ||chinaacc.com/lamu/dl- (easylistchina.txt: 2413) +.chinaacc.com/lamu/dl- +# ||china.com/zh_cn/plugin/all/hezuo360/ (easylistchina.txt: 2412) +.china.com/zh_cn/plugin/all/hezuo360/ +# ||china.com/zh_cn/etc/gghead (easylistchina.txt: 2411) +.china.com/zh_cn/etc/gghead +# ||china.com/zh_cn/ads/ (easylistchina.txt: 2410) +.china.com/zh_cn/ads/ +# ||china.com/jsfiles/gotopgg/ (easylistchina.txt: 2409) +.china.com/jsfiles/gotopgg/ +# ||china.com.cn/youxi.swf (easylistchina.txt: 2408) +.china.com.cn/youxi\.swf +# ||china.com.cn/statics/js/js_vag/ (easylistchina.txt: 2407) +.china.com.cn/statics/js/js_vag/ +# ||china.com.cn/food/node_7094923.htm (easylistchina.txt: 2406) +.china.com.cn/food/node_7094923\.htm +# ||china.com.cn/2015ads/ (easylistchina.txt: 2405) +.china.com.cn/2015ads/ +# ||china.cn/images1/ch/2014first/20140422gq.js (easylistchina.txt: 2404) +.china.cn/images1/ch/2014first/20140422gq\.js +# ||china.chemnet.com/cnbanner/ (easylistchina.txt: 2403) +.china.chemnet.com/cnbanner/ +# ||chidir.com^ (easylistchina.txt: 2402) +.chidir.com +# ||chewen.com/pics/2013/09/13/02013091317191365.jpg (easylistchina.txt: 2401) +.chewen.com/pics/2013/09/13/02013091317191365\.jpg +# ||chengruide.com/js/union_junshiqu.js (easylistchina.txt: 2400) +.chengruide.com/js/union_junshiqu\.js +# ||chemnet.com/js/float_div.js (easylistchina.txt: 2399) +.chemnet.com/js/float_div\.js +# ||cheers.com.tw/js-lib/fancybox/ (easylistchina.txt: 2398) +.cheers.com.tw/js-lib/fancybox/ +# ||chddh.com*/A*D/ (easylistchina.txt: 2397) +.chddh.com*./(.*/)?A.*D/ +# ||chcj.net/comiis_ad/ (easylistchina.txt: 2396) +.chcj.net/comiis_ad/ +# ||chaling.cn/images/*.gif (easylistchina.txt: 2395) +.chaling.cn/images/.*\.gif +# ||chaling.cn/data/attachment/portal/ (easylistchina.txt: 2394) +.chaling.cn/data/attachment/portal/ +# ||chakd.com/images/xitie160x60.gif (easylistchina.txt: 2393) +.chakd.com/images/xitie160x60\.gif +# ||cfanclub.net/lmimages/yinsub.gif (easylistchina.txt: 2392) +.cfanclub.net/lmimages/yinsub\.gif +# ||centoscn.com/money/ (easylistchina.txt: 2391) +.centoscn.com/money/ +# ||cdyee.com/external/5070.files/ad/ (easylistchina.txt: 2390) +.cdyee.com/external/5070\.files/ad/ +# ||cdndm.com^*/js/newtc.js (easylistchina.txt: 2389) +.cdndm.com/.*/js/newtc\.js +# ||cdn.wdlm.cn^ (easylistchina.txt: 2387) +.cdn.wdlm.cn +# ||cdn.shdsp.net/ad (easylistchina.txt: 2386) +.cdn.shdsp.net/ad +# ||cdn.galacg.me/img/*.jpg (easylistchina.txt: 2385) +.cdn.galacg.me/img/.*\.jpg +# ||cdn.galacg.me/img/*.gif (easylistchina.txt: 2384) +.cdn.galacg.me/img/.*\.gif +# ||cdn.dfile.cn/slot/ (easylistchina.txt: 2383) +.cdn.dfile.cn/slot/ +# ||ccwzz.cc/dmf.js (easylistchina.txt: 2382) +.ccwzz.cc/dmf\.js +# ||ccvcd.com/images/ (easylistchina.txt: 2381) +.ccvcd.com/images/ +# ||cctv5.name/js/*foot.js (easylistchina.txt: 2380) +.cctv5.name/js/.*foot\.js +# ||cctv5.name/data/js/ (easylistchina.txt: 2379) +.cctv5.name/data/js/ +# ||cctv.com/Library/a2.js (easylistchina.txt: 2378) +.cctv.com/Library/a2\.js +# ||cctime.com/UpLoadFile/2012/11/7/201211733483705.gif (easylistchina.txt: 2377) +.cctime.com/UpLoadFile/2012/11/7/201211733483705\.gif +# ||ccoo.cn/js/dlv*.js (easylistchina.txt: 2374) +.ccoo.cn/js/dlv.*\.js +# ||ccidnet.com/nav/dia_ (easylistchina.txt: 2373) +.ccidnet.com/nav/dia_ +# ||cccdv.com/js/*0- (easylistchina.txt: 2372) +.cccdv.com/js/.*0- +# ||ccb.com.cn/V5/images5/right0.gif (easylistchina.txt: 2371) +.ccb.com.cn/V5/images5/right0\.gif +# ||ccb.com.cn/V5/images5/left0.gif (easylistchina.txt: 2370) +.ccb.com.cn/V5/images5/left0\.gif +# ||ccav1.me/block.js (easylistchina.txt: 2369) +.ccav1.me/block\.js +# ||ccav1.com/wp-content/uploads/an-temp/ (easylistchina.txt: 2368) +.ccav1.com/wp-content/uploads/an-temp/ +# ||ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao.jpg (easylistchina.txt: 2367) +.ccav1.com/wp-content/themes/BYMT/images/mengmengdeguanggao\.jpg +# ||cbfw.cn/gonggong/js/cf_flash.js (easylistchina.txt: 2366) +.cbfw.cn/gonggong/js/cf_flash\.js +# ||cari.com.my/static/appbanner (easylistchina.txt: 2365) +.cari.com.my/static/appbanner +# ||caoimg.com/images/ (easylistchina.txt: 2364) +.caoimg.com/images/ +# ||camster.com/promos/ (easylistchina.txt: 2363) +.camster.com/promos/ +# ||caipiao.cntv.cn/website/cntv/box_news.shtml (easylistchina.txt: 2362) +.caipiao.cntv.cn/website/cntv/box_news\.shtml +# ||caikuu.com/ckimages/*_zg (easylistchina.txt: 2361) +.caikuu.com/ckimages/.*_zg +# ||caikuu.com/ckimages/*_gg (easylistchina.txt: 2360) +.caikuu.com/ckimages/.*_gg +# ||cachead.com^ (easylistchina.txt: 2359) +.cachead.com +# ||cacafly.net^ (easylistchina.txt: 2358) +.cacafly.net +# ||caamei.com/k.js (easylistchina.txt: 2357) +.caamei.com/k\.js +# ||c4d.cn/api.php?mod=ad&adid= (easylistchina.txt: 2356) +.c4d.cn/api\.php\?mod=ad&adid= +# ||c2cc.cn/images/images2011/ads_bigbg.jpg (easylistchina.txt: 2355) +.c2cc.cn/images/images2011/ads_bigbg\.jpg +# ||c2cc.cn/c2ccgg/ (easylistchina.txt: 2354) +.c2cc.cn/c2ccgg/ +# ||c2000.cn/c2000/ (easylistchina.txt: 2353) +.c2000.cn/c2000/ +# ||c168c.com/*adv/ (easylistchina.txt: 2352) +.c168c.com/.*adv/ +# ||c114.net/js/channel.js (easylistchina.txt: 2351) +.c114.net/js/channel\.js +# ||c114.net/images/c114/ad_ (easylistchina.txt: 2350) +.c114.net/images/c114/ad_ +# ||c114.net/default_inc/a/images/ (easylistchina.txt: 2349) +.c114.net/default_inc/a/images/ +# ||c114.net*/images_a/*.swf (easylistchina.txt: 2348) +.c114.net*./(.*/)?images_a/.*\.swf +# ||c1.74ch.com/u/mpf/xyz/fi/ZpE3T72.gif (easylistchina.txt: 2347) +.c1.74ch.com/u/mpf/xyz/fi/ZpE3T72\.gif +# ||c1.74ch.com/u/mpf/xyz/fi/bVE3T72.gif (easylistchina.txt: 2346) +.c1.74ch.com/u/mpf/xyz/fi/bVE3T72\.gif +# ||c.quwenjiemi.com^*.js?version= (easylistchina.txt: 2345) +.c.quwenjiemi.com/.*\.js\?version= +# ||c-ctrip.com/rk/201411/c580x145.jpg (easylistchina.txt: 2344) +.c-ctrip.com/rk/201411/c580x145\.jpg +# ||bzfl1.cc/da*.gif (easylistchina.txt: 2343) +.bzfl1.cc/da.*\.gif +# ||bzfl.cc/da*.gif (easylistchina.txt: 2342) +.bzfl.cc/da.*\.gif +# ||bytravel.cn/js/s_ (easylistchina.txt: 2341) +.bytravel.cn/js/s_ +# ||bytravel.cn/js/b_ (easylistchina.txt: 2340) +.bytravel.cn/js/b_ +# ||bytravel.cn/js/ad_ (easylistchina.txt: 2339) +.bytravel.cn/js/ad_ +# ||bytravel.cn/images/t/usa_250_120.gif (easylistchina.txt: 2338) +.bytravel.cn/images/t/usa_250_120\.gif +# ||bytravel.cn/images/cus/ (easylistchina.txt: 2337) +.bytravel.cn/images/cus/ +# ||bxwxtxt.com/a/bxwx/indextan.js (easylistchina.txt: 2336) +.bxwxtxt.com/a/bxwx/indextan\.js +# ||bxwx.org/myabc/ (easylistchina.txt: 2335) +.bxwx.org/myabc/ +# ||bxwx.org/js/box_ (easylistchina.txt: 2334) +.bxwx.org/js/box_ +# ||bxwx.org/caipiao.js (easylistchina.txt: 2332) +.bxwx.org/caipiao\.js +# ||bxwx.org/1.js (easylistchina.txt: 2331) +.bxwx.org/1\.js +# ||bx0635.com/tx/vip.gif (easylistchina.txt: 2330) +.bx0635.com/tx/vip\.gif +# ||bx0635.com/downimg/ban.gif (easylistchina.txt: 2329) +.bx0635.com/downimg/ban\.gif +# ||bx0635.com/downimg/2000.gif (easylistchina.txt: 2328) +.bx0635.com/downimg/2000\.gif +# ||buytong.cn/images/*%*.swf (easylistchina.txt: 2326) +.buytong.cn/images/.*%.*\.swf +# ||buyhouse.yam.com/plugin/newsplugin.php (easylistchina.txt: 2325) +.buyhouse.yam.com/plugin/newsplugin\.php +# ||buy.sina.com.tw/js/sina_popup.php (easylistchina.txt: 2324) +.buy.sina.com.tw/js/sina_popup\.php +# ||business.92wy.com^ (easylistchina.txt: 2323) +.business.92wy.com +# ||bukade.com/tpl/2/loading.html (easylistchina.txt: 2321) +.bukade.com/tpl/2/loading\.html +# ||bukade.com/js/tj2.js (easylistchina.txt: 2320) +.bukade.com/js/tj2\.js +# ||bukade.com/js/b_ (easylistchina.txt: 2319) +.bukade.com/js/b_ +# ||bukade.com/js/*_p_ (easylistchina.txt: 2318) +.bukade.com/js/.*_p_ +# ||bttiantang.cc/static/wen (easylistchina.txt: 2317) +.bttiantang.cc/static/wen +# ||bttiantang.cc/static/*quan.js (easylistchina.txt: 2316) +.bttiantang.cc/static/.*quan\.js +# ||btshark.com/static/img/*300x250. (easylistchina.txt: 2315) +.btshark.com/static/img/.*300x250\. +# ||btn.pchome.net^ (easylistchina.txt: 2314) +.btn.pchome.net +# ||btn.onlylady.com^ (easylistchina.txt: 2313) +.btn.onlylady.com +# ||btkuaisou.com/ac/ (easylistchina.txt: 2312) +.btkuaisou.com/ac/ +# ||btks.me/pingbi (easylistchina.txt: 2311) +.btks.me/pingbi +# ||btks.me/js/ac (easylistchina.txt: 2310) +.btks.me/js/ac +# ||btks.me/ac/ (easylistchina.txt: 2309) +.btks.me/ac/ +# ||bthand.com/static/650-80.swf (easylistchina.txt: 2308) +.bthand.com/static/650-80\.swf +# ||btcherry.com/images/gaoqing.png (easylistchina.txt: 2307) +.btcherry.com/images/gaoqing\.png +# ||btcherry.com/images/ad_ (easylistchina.txt: 2306) +.btcherry.com/images/ad_ +# ||btbook.net/static/img/880X60.gif (easylistchina.txt: 2305) +.btbook.net/static/img/880X60\.gif +# ||btbbt.cc/jslb.js (easylistchina.txt: 2304) +.btbbt.cc/jslb\.js +# ||btago.com/static/banner/ (easylistchina.txt: 2303) +.btago.com/static/banner/ +# ||bt977.com/Public/images/ad (easylistchina.txt: 2302) +.bt977.com/Public/images/ad +# ||bt1023.com/tpl/template/image/guanggao1.gif (easylistchina.txt: 2301) +.bt1023.com/tpl/template/image/guanggao1\.gif +# ||bs028.com/js/inc/ (easylistchina.txt: 2300) +.bs028.com/js/inc/ +# ||bs.baidu.com/app-ads% (easylistchina.txt: 2299) +.bs.baidu.com/app-ads% +# ||brand.sogou.com/micro?yyid= (easylistchina.txt: 2298) +.brand.sogou.com/micro\?yyid= +# ||books.com.tw/web/apActivityStick? (easylistchina.txt: 2296) +.books.com.tw/web/apActivityStick\? +# ||bookgew.com/zj85/ (easylistchina.txt: 2295) +.bookgew.com/zj85/ +# ||bookgew.com/ml85/ (easylistchina.txt: 2294) +.bookgew.com/ml85/ +# ||bookgew.com/hz1/tcby.js (easylistchina.txt: 2293) +.bookgew.com/hz1/tcby\.js +# ||bookbao.cc/js/ (easylistchina.txt: 2292) +.bookbao.cc/js/ +# ||bookabc.net/js/xian (easylistchina.txt: 2291) +.bookabc.net/js/xian +# ||bookabc.net/js/tt.js (easylistchina.txt: 2290) +.bookabc.net/js/tt\.js +# ||bomb01.com/fancybox/jquery.fancybox. (easylistchina.txt: 2289) +.bomb01.com/fancybox/jquery\.fancybox\. +# ||bnext.com.tw/static/web/all.js (easylistchina.txt: 2288) +.bnext.com.tw/static/web/all\.js +# ||bmp1.ali213.net/pubjs/index_sc_utf8.js (easylistchina.txt: 2287) +.bmp1.ali213.net/pubjs/index_sc_utf8\.js +# ||bmp1.ali213.net/js/ (easylistchina.txt: 2286) +.bmp1.ali213.net/js/ +# ||bmp.ali213.net/pubjs/SetScreen.js (easylistchina.txt: 2285) +.bmp.ali213.net/pubjs/SetScreen\.js +# ||bmp.ali213.net/js/ (easylistchina.txt: 2284) +.bmp.ali213.net/js/ +# ||blueidea.com/js/ajs.js (easylistchina.txt: 2283) +.blueidea.com/js/ajs\.js +# ||blueidea.com/2012/sdong/sdo.gif (easylistchina.txt: 2282) +.blueidea.com/2012/sdong/sdo\.gif +# ||blogspot.com^*/s1600/orig.gif (easylistchina.txt: 2281) +.blogspot.com/.*/s1600/orig\.gif +# ||blog.tianya.cn/tuijian/tanchu.js (easylistchina.txt: 2280) +.blog.tianya.cn/tuijian/tanchu\.js +# ||blog.51cto.com/js/poptop.js (easylistchina.txt: 2278) +.blog.51cto.com/js/poptop\.js +# ||bkjia.com/bkjia/js/subnavtop.js (easylistchina.txt: 2277) +.bkjia.com/bkjia/js/subnavtop\.js +# ||bkjia.com/bkjia/js/banner (easylistchina.txt: 2276) +.bkjia.com/bkjia/js/banner +# ||bkjia.com/bkjia/js/art_rightad (easylistchina.txt: 2275) +.bkjia.com/bkjia/js/art_rightad +# ||bkill.com/images/di.js (easylistchina.txt: 2274) +.bkill.com/images/di\.js +# ||bkill.com/css/abc/ (easylistchina.txt: 2273) +.bkill.com/css/abc/ +# ||bjxxw.com/themes/portal/local/special_*.swf (easylistchina.txt: 2272) +.bjxxw.com/themes/portal/local/special_.*\.swf +# ||bjmxw.net/bd/ (easylistchina.txt: 2271) +.bjmxw.net/bd/ +# ||bjmama.net/a/spc_ (easylistchina.txt: 2270) +.bjmama.net/a/spc_ +# ||bjhjyd.gov.cn/templates/default/www/js/float.js (easylistchina.txt: 2269) +.bjhjyd.gov.cn/templates/default/www/js/float\.js +# ||biz37.net^*.swf?uid= (easylistchina.txt: 2268) +.biz37.net/.*\.swf\?uid= +# ||biz.weibo.com^ (easylistchina.txt: 2267) +.biz.weibo.com +# ||biz.lyd.com.cn/20 (easylistchina.txt: 2266) +.biz.lyd.com.cn/20 +# ||biz.gexing.com^ (easylistchina.txt: 2265) +.biz.gexing.com +# ||biz*.sandai.net^ (easylistchina.txt: 2264) +.biz*./.*\.sandai\.net[^\w%.-] +.biz*.sandai.net +# ||bitscn.com/js/a2 (easylistchina.txt: 2263) +.bitscn.com/js/a2 +# ||bitautoimg.com/ResourceFiles/0/3/167/20151207103257620.jpg (easylistchina.txt: 2262) +.bitautoimg.com/ResourceFiles/0/3/167/20151207103257620\.jpg +# ||bitautoimg.com/ResourceFiles/0/*.swf (easylistchina.txt: 2261) +.bitautoimg.com/ResourceFiles/0/.*\.swf +# ||bitautoimg.com/ResourceFiles/0/*.gif (easylistchina.txt: 2260) +.bitautoimg.com/ResourceFiles/0/.*\.gif +# ||bitauto.com/ResourceFiles/play/play.swf (easylistchina.txt: 2259) +.bitauto.com/ResourceFiles/play/play\.swf +# ||bitauto.com/js/sense*.js (easylistchina.txt: 2258) +.bitauto.com/js/sense.*\.js +# ||biquge5.com/jquery/ (easylistchina.txt: 2257) +.biquge5.com/jquery/ +# ||biquge.so/kinpo/% (easylistchina.txt: 2256) +.biquge.so/kinpo/% +# ||biqi.me/Public/js/page_gg_ (easylistchina.txt: 2255) +.biqi.me/Public/js/page_gg_ +# ||biqi.me/Public/js/page_ad_ (easylistchina.txt: 2254) +.biqi.me/Public/js/page_ad_ +# ||bio-equip.com/uploadimages/peiqing.gif (easylistchina.txt: 2253) +.bio-equip.com/uploadimages/peiqing\.gif +# ||bio-equip.com/images/esco06.swf (easylistchina.txt: 2252) +.bio-equip.com/images/esco06\.swf +# ||bio-equip.com/dimgs/ (easylistchina.txt: 2251) +.bio-equip.com/dimgs/ +# ||bio-equip.com/dimg/ (easylistchina.txt: 2250) +.bio-equip.com/dimg/ +# ||binhuo.com/bhjs/ (easylistchina.txt: 2249) +.binhuo.com/bhjs/ +# ||bh111.com/js/tan_ (easylistchina.txt: 2248) +.bh111.com/js/tan_ +# ||bh111.com/flash/*+ (easylistchina.txt: 2247) +.bh111.com/flash/.*\+ +# ||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg (easylistchina.txt: 2246) +.bfpgf.com/wp-content/uploads/2015/08/360dxs\.jpg +# ||bforu.info/images/ali.gif (easylistchina.txt: 2245) +.bforu.info/images/ali\.gif +# ||bforu.info/03.jpg (easylistchina.txt: 2244) +.bforu.info/03\.jpg +# ||bfooru.info/images/*.gif (easylistchina.txt: 2243) +.bfooru.info/images/.*\.gif +# ||bfooru.info/03.jpg (easylistchina.txt: 2242) +.bfooru.info/03\.jpg +# ||bestvogue.com/fans/ (easylistchina.txt: 2241) +.bestvogue.com/fans/ +# ||besc.baidustatic.com^ (easylistchina.txt: 2240) +.besc.baidustatic.com +# ||bendibao.com/mo/adm_iframe.htm? (easylistchina.txt: 2239) +.bendibao.com/mo/adm_iframe\.htm\? +# ||bendibao.com*/tuangou.gif (easylistchina.txt: 2238) +.bendibao.com*./(.*/)?tuangou\.gif +# ||bejson.com/imgs/tuo.png (easylistchina.txt: 2237) +.bejson.com/imgs/tuo\.png +# ||bejson.com/imgs/qiniu (easylistchina.txt: 2236) +.bejson.com/imgs/qiniu +# ||bejson.com/imgs/j950-90.jpg (easylistchina.txt: 2235) +.bejson.com/imgs/j950-90\.jpg +# ||bejson.com/imgs/beifen (easylistchina.txt: 2234) +.bejson.com/imgs/beifen +# ||beiwo.tv/Runtime/js/list01.js (easylistchina.txt: 2233) +.beiwo.tv/Runtime/js/list01\.js +# ||beijing-air.com/images/a/j (easylistchina.txt: 2232) +.beijing-air.com/images/a/j +# ||bego.cc/img/ (easylistchina.txt: 2231) +.bego.cc/img/ +# ||beephone.com.tw/ad-yahoo.php (easylistchina.txt: 2230) +.beephone.com.tw/ad-yahoo\.php +# ||beephone.com.tw/ad-middle.php (easylistchina.txt: 2229) +.beephone.com.tw/ad-middle\.php +# ||beareyes.com.cn^*/ad/ (easylistchina.txt: 2228) +.beareyes.com.cn/.*/ad/ +# ||beanfun.com/playweb/adpicpage.htm (easylistchina.txt: 2227) +.beanfun.com/playweb/adpicpage\.htm +# ||bdstatic.com^*/tam-ogel/ (easylistchina.txt: 2226) +.bdstatic.com/.*/tam-ogel/ +# ||bdstatic.com/tb/zt/tengfei/gzdialog.jpg (easylistchina.txt: 2225) +.bdstatic.com/tb/zt/tengfei/gzdialog\.jpg +# ||bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f.jpg (easylistchina.txt: 2224) +.bdstatic.com/tb/r/image/2014-12-30/fa718abe3e4418298f785734279a2e8f\.jpg +# ||bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac.jpg (easylistchina.txt: 2223) +.bdstatic.com/tb/r/image/2014-12-03/87ae5de2d732714bb6dd4ff6ab1e50ac\.jpg +# ||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ (easylistchina.txt: 2222) +.bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ +# ||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg (easylistchina.txt: 2221) +.bdstatic.com/tb/cms/ngmis/file_1417585299140\.jpg +# ||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg (easylistchina.txt: 2220) +.bdstatic.com/tb/cms/ngmis/file_1417585294569\.jpg +# ||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png (easylistchina.txt: 2219) +.bdstatic.com/tb/cms/img/tieba_index_banner960x90\.png +# ||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg (easylistchina.txt: 2218) +.bdstatic.com/tb/cms/forum_skin/file_1442399443261\.jpg +# ||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js (easylistchina.txt: 2217) +.bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api\.js +# ||bdstatic.com/tb/cms/com/game/couplet_ (easylistchina.txt: 2216) +.bdstatic.com/tb/cms/com/game/couplet_ +# ||bdstatic.com/tb/cms/activity_head/file_ (easylistchina.txt: 2215) +.bdstatic.com/tb/cms/activity_head/file_ +# ||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- (easylistchina.txt: 2214) +.bdstatic.com/tb/%E8%B4%B4%E5%90%A7- +# ||bdstatic.com/static/article/widget/left-promo/ (easylistchina.txt: 2213) +.bdstatic.com/static/article/widget/left-promo/ +# ||bdstatic.com/player/t/j/TvKa94eY.js (easylistchina.txt: 2212) +.bdstatic.com/player/t/j/TvKa94eY\.js +# ||bdstatic.com/player/t/j/Cj2XuDf6.js (easylistchina.txt: 2211) +.bdstatic.com/player/t/j/Cj2XuDf6\.js +# ||bdstatic.com/player/t/j/AEoIJIPB.js (easylistchina.txt: 2210) +.bdstatic.com/player/t/j/AEoIJIPB\.js +# ||bdstatic.com/pc_static/detail/game_promotion/ (easylistchina.txt: 2209) +.bdstatic.com/pc_static/detail/game_promotion/ +# ||bdstatic.com/img/image/su/ (easylistchina.txt: 2208) +.bdstatic.com/img/image/su/ +# ||bdstatic.com/api_hao123AdvHeader.js (easylistchina.txt: 2207) +.bdstatic.com/api_hao123AdvHeader\.js +# ||bdinfo.net/bdinfo_skin/xlsgg.js (easylistchina.txt: 2206) +.bdinfo.net/bdinfo_skin/xlsgg\.js +# ||bdimg.com/site/games/yxtg/*.js (easylistchina.txt: 2205) +.bdimg.com/site/games/yxtg/.*\.js +# ||bdimg.com/newmap/static/common/images/nav-ad_ (easylistchina.txt: 2204) +.bdimg.com/newmap/static/common/images/nav-ad_ +# ||bdimg.com/brands/yxtg/source/juhe-v2.js (easylistchina.txt: 2203) +.bdimg.com/brands/yxtg/source/juhe-v2\.js +# ||bccn.net/aaa/ (easylistchina.txt: 2201) +.bccn.net/aaa/ +# ||bcc.com.tw/imgs/adv/ (easylistchina.txt: 2200) +.bcc.com.tw/imgs/adv/ +# ||bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c.jpg (easylistchina.txt: 2199) +.bbs.yhcgo.com/attachment/Mon_1112/74_1_5c13cbc5db6ba7c\.jpg +# ||bbs.xiashanet.com/js/adsview.js (easylistchina.txt: 2198) +.bbs.xiashanet.com/js/adsview\.js +# ||bbs.xbaodi.com/plugin.php (easylistchina.txt: 2197) +.bbs.xbaodi.com/plugin\.php +# ||bbs.winning11cn.com/temp/*.gif (easylistchina.txt: 2196) +.bbs.winning11cn.com/temp/.*\.gif +# ||bbs.voc.com.cn/s.js (easylistchina.txt: 2195) +.bbs.voc.com.cn/s\.js +# ||bbs.hotavxxx.com/images/201*.gif (easylistchina.txt: 2194) +.bbs.hotavxxx.com/images/201.*\.gif +# ||bbs.fengbao.com/image/bingzuan925X80.jpg (easylistchina.txt: 2193) +.bbs.fengbao.com/image/bingzuan925X80\.jpg +# ||bbs.a9vg.com/showit/img_show.php (easylistchina.txt: 2192) +.bbs.a9vg.com/showit/img_show\.php +# ||baoliny.com/js/jing.js (easylistchina.txt: 2191) +.baoliny.com/js/jing\.js +# ||baofeng.com/src/ad.js (easylistchina.txt: 2190) +.baofeng.com/src/ad\.js +# ||bang5mai.com/upload/plugin/assets/main/js/b5m.adv.js (easylistchina.txt: 2189) +.bang5mai.com/upload/plugin/assets/main/js/b5m\.adv\.js +# ||bamuyu.com/skin/js/bgad.js (easylistchina.txt: 2188) +.bamuyu.com/skin/js/bgad\.js +# ||ballive.com/addm/ (easylistchina.txt: 2187) +.ballive.com/addm/ +# ||baiy.net:88/a/ (easylistchina.txt: 2186) +.baiy.net:88/a/ +# ||baixing.com/bb/*/?category= (easylistchina.txt: 2185) +.baixing.com/bb/.*/\?category= +# ||baishulou.net/html/ (easylistchina.txt: 2184) +.baishulou.net/html/ +# ||baike.com/iframeheightforad. (easylistchina.txt: 2182) +.baike.com/iframeheightforad\. +# ||baike.com/3g/ads/ (easylistchina.txt: 2181) +.baike.com/3g/ads/ +# ||baifen.music.baidu.com/api/v1/*?format=jsonp& (easylistchina.txt: 2180) +.baifen.music.baidu.com/api/v1/.*\?format=jsonp& +# ||baidud.cn/aoao/down_ (easylistchina.txt: 2179) +.baidud.cn/aoao/down_ +# ||baidu.com^*/interface/ad? (easylistchina.txt: 2178) +.baidu.com/.*/interface/ad\? +# ||baidu.com/WerbungAjax/getTonglan? (easylistchina.txt: 2176) +.baidu.com/WerbungAjax/getTonglan\? +# ||baidu.com/WerbungAjax/getBeitou? (easylistchina.txt: 2175) +.baidu.com/WerbungAjax/getBeitou\? +# ||baidu.com/videoapi/?*_ad_promote& (easylistchina.txt: 2174) +.baidu.com/videoapi/\?.*_ad_promote& +# ||baidu.com/videoadv.js (easylistchina.txt: 2173) +.baidu.com/videoadv\.js +# ||baidu.com/ur/scun?di=contentunion (easylistchina.txt: 2172) +.baidu.com/ur/scun\?di=contentunion +# ||baidu.com/tequan/adpadmin_feed/ (easylistchina.txt: 2171) +.baidu.com/tequan/adpadmin_feed/ +# ||baidu.com/tbliveact/data/xiu8/ (easylistchina.txt: 2170) +.baidu.com/tbliveact/data/xiu8/ +# ||baidu.com/tb/zt/wen_da_pc.html (easylistchina.txt: 2169) +.baidu.com/tb/zt/wen_da_pc\.html +# ||baidu.com/tb/zt/spread/ (easylistchina.txt: 2168) +.baidu.com/tb/zt/spread/ +# ||baidu.com/tb/static-common/swf/worldcup_main.swf (easylistchina.txt: 2167) +.baidu.com/tb/static-common/swf/worldcup_main\.swf +# ||baidu.com/tb/cms/game/*_banner_ (easylistchina.txt: 2166) +.baidu.com/tb/cms/game/.*_banner_ +# ||baidu.com/tb/cms/game/*_banner. (easylistchina.txt: 2165) +.baidu.com/tb/cms/game/.*_banner\. +# ||baidu.com/tb/cms/forum_skin/file_ (easylistchina.txt: 2164) +.baidu.com/tb/cms/forum_skin/file_ +# ||baidu.com/staticapi/misadlist. (easylistchina.txt: 2163) +.baidu.com/staticapi/misadlist\. +# ||baidu.com/staticapi/hotnews_new. (easylistchina.txt: 2162) +.baidu.com/staticapi/hotnews_new\. +# ||baidu.com/static/yuntu-ad/ (easylistchina.txt: 2161) +.baidu.com/static/yuntu-ad/ +# ||baidu.com/static/html/cbjs.html (easylistchina.txt: 2160) +.baidu.com/static/html/cbjs\.html +# ||baidu.com/showbrand/sponsor_ (easylistchina.txt: 2159) +.baidu.com/showbrand/sponsor_ +# ||baidu.com/showbrand/banner_ (easylistchina.txt: 2158) +.baidu.com/showbrand/banner_ +# ||baidu.com/show/livevideo/getStreamConf? (easylistchina.txt: 2157) +.baidu.com/show/livevideo/getStreamConf\? +# ||baidu.com/rmaAjax/getGame? (easylistchina.txt: 2156) +.baidu.com/rmaAjax/getGame\? +# ||baidu.com/resource/tuisong/ (easylistchina.txt: 2155) +.baidu.com/resource/tuisong/ +# ||baidu.com/resource/baichuan/ (easylistchina.txt: 2154) +.baidu.com/resource/baichuan/ +# ||baidu.com/resource/ads/ (easylistchina.txt: 2153) +.baidu.com/resource/ads/ +# ||baidu.com/img/iknow/wenku*85. (easylistchina.txt: 2152) +.baidu.com/img/iknow/wenku.*85\. +# ||baidu.com/game/asset/common/performance. (easylistchina.txt: 2151) +.baidu.com/game/asset/common/performance\. +# ||baidu.com/fanyiapp/image/wise_banner_ (easylistchina.txt: 2150) +.baidu.com/fanyiapp/image/wise_banner_ +# ||baidu.com/event/img/zwdzjs.jpg (easylistchina.txt: 2149) +.baidu.com/event/img/zwdzjs\.jpg +# ||baidu.com/cms/rc/adSideConfig.json? (easylistchina.txt: 2147) +.baidu.com/cms/rc/adSideConfig\.json\? +# ||baidu.com/brands/yxtg/source/yxCoupletsAd.js (easylistchina.txt: 2146) +.baidu.com/brands/yxtg/source/yxCoupletsAd\.js +# ||baidu.com/api/proxyapi?tag=adv& (easylistchina.txt: 2145) +.baidu.com/api/proxyapi\?tag=adv& +# ||badmintoncn.com/cbo_gg/ (easylistchina.txt: 2143) +.badmintoncn.com/cbo_gg/ +# ||backchina.com/banners/ (easylistchina.txt: 2142) +.backchina.com/banners/ +# ||babytreeimg.com/img/promo/ (easylistchina.txt: 2141) +.babytreeimg.com/img/promo/ +# ||babyhome.com.tw/slot_gateway.php? (easylistchina.txt: 2140) +.babyhome.com.tw/slot_gateway\.php\? +# ||babyhome.com.tw/lib/iframe.php?u= (easylistchina.txt: 2139) +.babyhome.com.tw/lib/iframe\.php\?u= +# ||babyhome.com.tw/2015/mid_autumn/ (easylistchina.txt: 2138) +.babyhome.com.tw/2015/mid_autumn/ +# ||baby-kingdom.com/reqwads? (easylistchina.txt: 2137) +.baby-kingdom.com/reqwads\? +# ||baby-kingdom.com/reqsads? (easylistchina.txt: 2136) +.baby-kingdom.com/reqsads\? +# ||b5m.com/static/html/*/popup.html? (easylistchina.txt: 2135) +.b5m.com/static/html/.*/popup\.html\? +# ||b5m.com/images/banner.jpg (easylistchina.txt: 2134) +.b5m.com/images/banner\.jpg +# ||azhibo.com/images/2015/edge-bg.png (easylistchina.txt: 2133) +.azhibo.com/images/2015/edge-bg\.png +# ||ayxz.com/images/VStart.gif (easylistchina.txt: 2132) +.ayxz.com/images/VStart\.gif +# ||ayxz.com/images/enkj_small.gif (easylistchina.txt: 2131) +.ayxz.com/images/enkj_small\.gif +# ||awaker.hk/wp-content/uploads/ok/ (easylistchina.txt: 2129) +.awaker.hk/wp-content/uploads/ok/ +# ||avseesee.com/twad (easylistchina.txt: 2128) +.avseesee.com/twad +# ||avseesee.com/htmls/vlinks.html (easylistchina.txt: 2127) +.avseesee.com/htmls/vlinks\.html +# ||avseesee.com/amandison.php (easylistchina.txt: 2126) +.avseesee.com/amandison\.php +# ||avonline.org/js/jquery.colorbox- (easylistchina.txt: 2125) +.avonline.org/js/jquery\.colorbox- +# ||avlang33.com/js/float.js (easylistchina.txt: 2124) +.avlang33.com/js/float\.js +# ||avcity.twavtv.com/js/twavt.js (easylistchina.txt: 2123) +.avcity.twavtv.com/js/twavt\.js +# ||autos.udn.com/topic/car/include/ad.jsp (easylistchina.txt: 2122) +.autos.udn.com/topic/car/include/ad\.jsp +# ||autoimg.cn/engine/root/fggxl.js (easylistchina.txt: 2121) +.autoimg.cn/engine/root/fggxl\.js +# ||autoimg.cn/ad.js (easylistchina.txt: 2120) +.autoimg.cn/ad\.js +# ||autohome.com.cn/Ashx/public/HeaderLayerRecApp.ashx? (easylistchina.txt: 2119) +.autohome.com.cn/Ashx/public/HeaderLayerRecApp\.ashx\? +# ||autofan.com.cn/zhaoning/GG- (easylistchina.txt: 2118) +.autofan.com.cn/zhaoning/GG- +# ||autofan.com.cn/zhaoning/20*.jpg (easylistchina.txt: 2117) +.autofan.com.cn/zhaoning/20.*\.jpg +# ||autofan.com.cn/zhaoning/*.gif (easylistchina.txt: 2116) +.autofan.com.cn/zhaoning/.*\.gif +# ||auto-online.com.tw/vendor_data/ (easylistchina.txt: 2115) +.auto-online.com.tw/vendor_data/ +# ||att.ydss.cn/attachments/portal/ (easylistchina.txt: 2114) +.att.ydss.cn/attachments/portal/ +# ||atm.youku.com^ (easylistchina.txt: 2113) +.atm.youku.com +# ||asxxg.cn/Public/config/Couplet/ (easylistchina.txt: 2112) +.asxxg.cn/Public/config/Couplet/ +# ||aspjzy.com/jsweb/js/ (easylistchina.txt: 2111) +.aspjzy.com/jsweb/js/ +# ||asp300.com/2012js/ (easylistchina.txt: 2110) +.asp300.com/2012js/ +# ||asp300.com/2012adjs/ (easylistchina.txt: 2109) +.asp300.com/2012adjs/ +# ||asia-home.com.cn/js/yt/ytadshow (easylistchina.txt: 2107) +.asia-home.com.cn/js/yt/ytadshow +# ||ashow.pcpop.com^ (easylistchina.txt: 2106) +.ashow.pcpop.com +# ||as.sinahk.net^ (easylistchina.txt: 2105) +.as.sinahk.net +# ||article.pchome.net/Index.php?c=Intel& (easylistchina.txt: 2104) +.article.pchome.net/Index\.php\?c=Intel& +# ||arpun.com/arpun/softinfo (easylistchina.txt: 2103) +.arpun.com/arpun/softinfo +# ||ark.letv.com/s?vid= (easylistchina.txt: 2102) +.ark.letv.com/s\?vid= +# ||ark.letv.com/s?res= (easylistchina.txt: 2101) +.ark.letv.com/s\?res= +# ||aqy103.com/js/aqy/ (easylistchina.txt: 2100) +.aqy103.com/js/aqy/ +# ||aqy102.com/js/aqy/ (easylistchina.txt: 2099) +.aqy102.com/js/aqy/ +# ||aqlife.com/data/attachment/portal/ (easylistchina.txt: 2098) +.aqlife.com/data/attachment/portal/ +# ||appinn.com^*/licaifan. (easylistchina.txt: 2097) +.appinn.com/.*/licaifan\. +# ||appinn.com/images/201509/wd.png (easylistchina.txt: 2096) +.appinn.com/images/201509/wd\.png +# ||app.acm.dzwww.com^ (easylistchina.txt: 2095) +.app.acm.dzwww.com +# ||app-g.39.net/NNN/ (easylistchina.txt: 2094) +.app-g.39.net/NNN/ +# ||apihousefun.yam.com/news.php (easylistchina.txt: 2093) +.apihousefun.yam.com/news\.php +# ||aoye.cc/js/footer.js (easylistchina.txt: 2092) +.aoye.cc/js/footer\.js +# ||anywlan.com/link/xcloud.jpg (easylistchina.txt: 2091) +.anywlan.com/link/xcloud\.jpg +# ||anywlan.com/link/*.gif (easylistchina.txt: 2090) +.anywlan.com/link/.*\.gif +# ||anquan.org/static/user_upload/zorro/*/%E5%93% (easylistchina.txt: 2089) +.anquan.org/static/user_upload/zorro/.*/%E5%93% +# ||anquan.org/static/user_upload/*/cloud (easylistchina.txt: 2088) +.anquan.org/static/user_upload/.*/cloud +# ||anquan.org/static/profile/images/qq-banner.png (easylistchina.txt: 2087) +.anquan.org/static/profile/images/qq-banner\.png +# ||anquan.org/static/auth/images/ppb_cert/qq-browser.jpg (easylistchina.txt: 2086) +.anquan.org/static/auth/images/ppb_cert/qq-browser\.jpg +# ||anhuinews.com/zhuyeguanli/*ad/ (easylistchina.txt: 2085) +.anhuinews.com/zhuyeguanli/.*ad/ +# ||anhuinews.com/include/ (easylistchina.txt: 2084) +.anhuinews.com/include/ +# ||angpic.3g.net.cn/ai/ (easylistchina.txt: 2083) +.angpic.3g.net.cn/ai/ +# ||an7.tv/Runtime/js/ (easylistchina.txt: 2082) +.an7.tv/Runtime/js/ +# ||amd.cn/yyets.js (easylistchina.txt: 2081) +.amd.cn/yyets\.js +# ||am.szhome.com^ (easylistchina.txt: 2079) +.am.szhome.com +# ||am.6park.com^ (easylistchina.txt: 2078) +.am.6park.com +# ||alu.cn/aluTrade/Fragments/ListAdvertisementProducts. (easylistchina.txt: 2077) +.alu.cn/aluTrade/Fragments/ListAdvertisementProducts\. +# ||alu.cn/2011/images/conglin.gif (easylistchina.txt: 2076) +.alu.cn/2011/images/conglin\.gif +# ||alu.cn*/aluad/ (easylistchina.txt: 2075) +.alu.cn*./(.*/)?aluad/ +# ||allbeauty.com.tw/GoldPrice/*_CF.php (easylistchina.txt: 2074) +.allbeauty.com.tw/GoldPrice/.*_CF\.php +# ||alixixi.com/adsview/ (easylistchina.txt: 2073) +.alixixi.com/adsview/ +# ||alifeifei.net/s/*.js (easylistchina.txt: 2072) +.alifeifei.net/s/.*\.js +# ||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg (easylistchina.txt: 2068) +.alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100\.jpg +# ||alicdn.com/tps/*-950-90. (easylistchina.txt: 2067) +.alicdn.com/tps/.*-950-90\. +# ||ali213.net/static/js/kv (easylistchina.txt: 2066) +.ali213.net/static/js/kv +# ||ali213.net/static/js/kktv (easylistchina.txt: 2065) +.ali213.net/static/js/kktv +# ||ali213.net/static/js/*_ali213tv.js (easylistchina.txt: 2064) +.ali213.net/static/js/.*_ali213tv\.js +# ||ali213.net/images/promotion/ (easylistchina.txt: 2063) +.ali213.net/images/promotion/ +# ||ali213.net/css/data/promotion.css (easylistchina.txt: 2062) +.ali213.net/css/data/promotion\.css +# ||alabout.com/images/*.gif (easylistchina.txt: 2060) +.alabout.com/images/.*\.gif +# ||aknba.com/cache/ads.js (easylistchina.txt: 2059) +.aknba.com/cache/ads\.js +# ||akjunshi.com/resource/s/data_js_mil/right_twtj.js (easylistchina.txt: 2058) +.akjunshi.com/resource/s/data_js_mil/right_twtj\.js +# ||akjunshi.com/resource/s/data_js_mil/aksqgg.js (easylistchina.txt: 2057) +.akjunshi.com/resource/s/data_js_mil/aksqgg\.js +# ||ak47fuli.net/wp-content/uploads/20*.gif (easylistchina.txt: 2056) +.ak47fuli.net/wp-content/uploads/20.*\.gif +# ||ak47fuli.net/fd.js (easylistchina.txt: 2055) +.ak47fuli.net/fd\.js +# ||ajiang.net/b4_dnslak.png (easylistchina.txt: 2054) +.ajiang.net/b4_dnslak\.png +# ||aiyuke.com/index.php?c=position& (easylistchina.txt: 2053) +.aiyuke.com/index\.php\?c=position& +# ||aiyidu.com/aiyidu/adver/ (easylistchina.txt: 2052) +.aiyidu.com/aiyidu/adver/ +# ||aituan.com/at/bbs_gg/ (easylistchina.txt: 2051) +.aituan.com/at/bbs_gg/ +# ||aipai.com/common/i0uat4jq/play/item.html (easylistchina.txt: 2049) +.aipai.com/common/i0uat4jq/play/item\.html +# ||aipai.com/common/html/commonAdForTfansTo.html (easylistchina.txt: 2048) +.aipai.com/common/html/commonAdForTfansTo\.html +# ||aipai.com/app/www/templates/common/ifr/fans_640_40.html (easylistchina.txt: 2047) +.aipai.com/app/www/templates/common/ifr/fans_640_40\.html +# ||aipai.com/app/www/templates/common/*_videos_ (easylistchina.txt: 2046) +.aipai.com/app/www/templates/common/.*_videos_ +# ||ainunu.com/vad.js (easylistchina.txt: 2045) +.ainunu.com/vad\.js +# ||aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76.gif (easylistchina.txt: 2044) +.aikongke.com/wp-content/uploads/2014/06/0f000KdGOFFPAF_yxHIN76\.gif +# ||aijiatxt.com/js/gg.js (easylistchina.txt: 2043) +.aijiatxt.com/js/gg\.js +# ||aijiatxt.com/js/float.js (easylistchina.txt: 2042) +.aijiatxt.com/js/float\.js +# ||aijiatxt.com/images/dudu.gif (easylistchina.txt: 2041) +.aijiatxt.com/images/dudu\.gif +# ||aijiatxt.com/images/90.jpg (easylistchina.txt: 2040) +.aijiatxt.com/images/90\.jpg +# ||aijiatxt.com/images/300.jpg (easylistchina.txt: 2039) +.aijiatxt.com/images/300\.jpg +# ||aid.chinayk.com^ (easylistchina.txt: 2038) +.aid.chinayk.com +# ||aibang.com/?area=ajax&cmd=adv& (easylistchina.txt: 2037) +.aibang.com/\?area=ajax&cmd=adv& +# ||ai.bioon.com^ (easylistchina.txt: 2036) +.ai.bioon.com +# ||ahtv.cn/publishsys/data/template/1/3/images/zgyd_ (easylistchina.txt: 2035) +.ahtv.cn/publishsys/data/template/1/3/images/zgyd_ +# ||ahlife.com/skin/hftogo/js/ (easylistchina.txt: 2034) +.ahlife.com/skin/hftogo/js/ +# ||ahlife.com/api.php?mod=adv& (easylistchina.txt: 2033) +.ahlife.com/api\.php\?mod=adv& +# ||ah.sina.com.cn/iframe/ (easylistchina.txt: 2032) +.ah.sina.com.cn/iframe/ +# ||afpcreative.wasu.cn^ (easylistchina.txt: 2031) +.afpcreative.wasu.cn +# ||afp.wasu.cn^ (easylistchina.txt: 2030) +.afp.wasu.cn +# ||afp.chinanews.com^ (easylistchina.txt: 2029) +.afp.chinanews.com +# ||afocus.com.cn/s? (easylistchina.txt: 2028) +.afocus.com.cn/s\? +# ||adwordsing.com/img/2.jpg (easylistchina.txt: 2027) +.adwordsing.com/img/2\.jpg +# ||adwordsing.com/img/1.jpg (easylistchina.txt: 2026) +.adwordsing.com/img/1\.jpg +# ||advideoadmin.appledaily.com.tw/ov_player/ (easylistchina.txt: 2025) +.advideoadmin.appledaily.com.tw/ov_player/ +# ||adspending01.bwnet.com.tw^ (easylistchina.txt: 2023) +.adspending01.bwnet.com.tw +# ||adsclick.yx.js.cn^ (easylistchina.txt: 2022) +.adsclick.yx.js.cn +# ||adpubs.yaolan.com^ (easylistchina.txt: 2021) +.adpubs.yaolan.com +# ||adpub.yaolan.com^ (easylistchina.txt: 2020) +.adpub.yaolan.com +# ||adp.cnool.net^ (easylistchina.txt: 2019) +.adp.cnool.net +# ||adnetpub.yaolan.com^ (easylistchina.txt: 2018) +.adnetpub.yaolan.com +# ||admin6.com/templates/index/default/images/100060.gif (easylistchina.txt: 2017) +.admin6.com/templates/index/default/images/100060\.gif +# ||admin5.com/lib/js/*_article (easylistchina.txt: 2016) +.admin5.com/lib/js/.*_article +# ||admin5.com/hezuo/action/ (easylistchina.txt: 2015) +.admin5.com/hezuo/action/ +# ||admin5.com/extras/ (easylistchina.txt: 2014) +.admin5.com/extras/ +# ||admin5.com/daohang/ (easylistchina.txt: 2013) +.admin5.com/daohang/ +# ||admin5.com/bd360qq/action/ (easylistchina.txt: 2012) +.admin5.com/bd360qq/action/ +# ||admin5.com/a5dao/ (easylistchina.txt: 2011) +.admin5.com/a5dao/ +# ||admin10000.com/skin/lagou_ (easylistchina.txt: 2010) +.admin10000.com/skin/lagou_ +# ||admd.yam.com^ (easylistchina.txt: 2009) +.admd.yam.com +# ||admaimai.com/inc/adv (easylistchina.txt: 2008) +.admaimai.com/inc/adv +# ||adm.zzfish.cn^ (easylistchina.txt: 2007) +.adm.zzfish.cn +# ||adm.zbinfo.net^ (easylistchina.txt: 2006) +.adm.zbinfo.net +# ||adm.xmfish.com^ (easylistchina.txt: 2005) +.adm.xmfish.com +# ||adm.qzbbs.com^ (easylistchina.txt: 2004) +.adm.qzbbs.com +# ||adm.leju.sina.com.cn/get_abp_list/ (easylistchina.txt: 2003) +.adm.leju.sina.com.cn/get_abp_list/ +# ||adm.jjj8.cn^ (easylistchina.txt: 2002) +.adm.jjj8.cn +# ||adm.funshion.com^ (easylistchina.txt: 2001) +.adm.funshion.com +# ||adm.bbcss.com^ (easylistchina.txt: 2000) +.adm.bbcss.com +# ||adm.86wan.com^ (easylistchina.txt: 1999) +.adm.86wan.com +# ||adm.72zx.com^ (easylistchina.txt: 1998) +.adm.72zx.com +# ||adm.265g.com^ (easylistchina.txt: 1997) +.adm.265g.com +# ||adk.funshion.com^ (easylistchina.txt: 1995) +.adk.funshion.com +# ||adi*.cnool.net^ (easylistchina.txt: 1994) +.adi*./.*\.cnool\.net[^\w%.-] +.adi*.cnool.net +# ||adhome.1fangchan.com^ (easylistchina.txt: 1993) +.adhome.1fangchan.com +# ||adf.dahe.cn^ (easylistchina.txt: 1992) +.adf.dahe.cn +# ||add.freeimg8.com^ (easylistchina.txt: 1991) +.add.freeimg8.com +# ||add.dz19.net^ (easylistchina.txt: 1990) +.add.dz19.net +# ||adadmin.house365.com^ (easylistchina.txt: 1989) +.adadmin.house365.com +# ||ad.bjmama.net^ (easylistchina.txt: 1988) +.ad.bjmama.net +# ||ad.17173.com^ (easylistchina.txt: 1987) +.ad.17173.com +# ||ad.12306.cn/res/*.html (easylistchina.txt: 1986) +.ad.12306.cn/res/.*\.html +# ||actoys.net/statics/js/index/ad.js (easylistchina.txt: 1985) +.actoys.net/statics/js/index/ad\.js +# ||actoys.net/js/beitou.js (easylistchina.txt: 1984) +.actoys.net/js/beitou\.js +# ||actoys.net/index.php?m=poster& (easylistchina.txt: 1983) +.actoys.net/index\.php\?m=poster& +# ||act.chinatimes.com/aimg/ (easylistchina.txt: 1982) +.act.chinatimes.com/aimg/ +# ||acsystem.wasu.cn^ (easylistchina.txt: 1981) +.acsystem.wasu.cn +# ||acode.b2b.cn/JS/ (easylistchina.txt: 1980) +.acode.b2b.cn/JS/ +# ||acg.bz/2.gif (easylistchina.txt: 1978) +.acg.bz/2\.gif +# ||acg.bz/1.jpg (easylistchina.txt: 1977) +.acg.bz/1\.jpg +# ||acg.178.com/s/manhua218_140.html (easylistchina.txt: 1975) +.acg.178.com/s/manhua218_140\.html +# ||acg.178.com/201302/t_ (easylistchina.txt: 1974) +.acg.178.com/201302/t_ +# ||acfun.tv/adnew.aspx?id= (easylistchina.txt: 1973) +.acfun.tv/adnew\.aspx\?id= +# ||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ (easylistchina.txt: 1972) +.ac.tc.qq.com/store_file_download\?.*&dir_path=/admin/swf/ +# ||abcde.cn/2014images/*96060.jpg (easylistchina.txt: 1971) +.abcde.cn/2014images/.*96060\.jpg +# ||abc.hkepc.com^ (easylistchina.txt: 1970) +.abc.hkepc.com +# ||ab.ahlife.com^*.swf (easylistchina.txt: 1969) +.ab.ahlife.com/.*\.swf +# ||a67.com/a/*.js (easylistchina.txt: 1968) +.a67.com/a/.*\.js +# ||a6.hujiang.com^ (easylistchina.txt: 1967) +.a6.hujiang.com +# ||a5.yeshj.com^ (easylistchina.txt: 1966) +.a5.yeshj.com +# ||a4.yeshj.com^ (easylistchina.txt: 1965) +.a4.yeshj.com +# ||a2.b310.com^ (easylistchina.txt: 1964) +.a2.b310.com +# ||a.xizi.com^ (easylistchina.txt: 1963) +.a.xizi.com +# ||a.kbcool.com/Mon_*.swf (easylistchina.txt: 1962) +.a.kbcool.com/Mon_.*\.swf +# ||a.jiaodong.net/a/2013/ (easylistchina.txt: 1961) +.a.jiaodong.net/a/2013/ +# ||a.game.qidian.com/Show.aspx? (easylistchina.txt: 1960) +.a.game.qidian.com/Show\.aspx\? +# ||a.game.qidian.com/material/xs.js (easylistchina.txt: 1959) +.a.game.qidian.com/material/xs\.js +# ||a.game.qidian.com/Layout.aspx? (easylistchina.txt: 1958) +.a.game.qidian.com/Layout\.aspx\? +# ||a.baomihua.com^ (easylistchina.txt: 1957) +.a.baomihua.com +# ||a-m-s.poco.cn^ (easylistchina.txt: 1956) +.a-m-s.poco.cn +# ||9ye.com/Files/Editor/ad/ (easylistchina.txt: 1955) +.9ye.com/Files/Editor/ad/ +# ||9w1an.com/special/ (easylistchina.txt: 1954) +.9w1an.com/special/ +# ||9upk.com/images/95050.gif (easylistchina.txt: 1952) +.9upk.com/images/95050\.gif +# ||9sky.com/_gg/ (easylistchina.txt: 1951) +.9sky.com/_gg/ +# ||9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00.jpg (easylistchina.txt: 1950) +.9pan.net/filestores/2013/06/10/f2d0e7719e89e5cc4417a563fd012f00\.jpg +# ||9lala.com/js/ (easylistchina.txt: 1949) +.9lala.com/js/ +# ||9kjj.com/images/*.gif (easylistchina.txt: 1948) +.9kjj.com/images/.*\.gif +# ||9ist.com/others/ad/ (easylistchina.txt: 1947) +.9ist.com/others/ad/ +# ||9ihome.com/info/ADTopvnet/ (easylistchina.txt: 1946) +.9ihome.com/info/ADTopvnet/ +# ||9ihome.com/adimgs/ (easylistchina.txt: 1945) +.9ihome.com/adimgs/ +# ||9ht.com/skin2012/js/tlAd.js (easylistchina.txt: 1944) +.9ht.com/skin2012/js/tlAd\.js +# ||9ez.me/embd.php?type= (easylistchina.txt: 1943) +.9ez.me/embd\.php\?type= +# ||9duw.com/pic/ (easylistchina.txt: 1942) +.9duw.com/pic/ +# ||9db.cc/wp-content/themes/xiucaozuo/js/ifphone.js (easylistchina.txt: 1941) +.9db.cc/wp-content/themes/xiucaozuo/js/ifphone\.js +# ||99ting.cn/image/*.gif (easylistchina.txt: 1940) +.99ting.cn/image/.*\.gif +# ||99ting.cn/789uc/gg.js (easylistchina.txt: 1939) +.99ting.cn/789uc/gg\.js +# ||99tianji.com/hack/kaifubiao.js (easylistchina.txt: 1938) +.99tianji.com/hack/kaifubiao\.js +# ||99mst.com/upfiles/adv/main02.jpg (easylistchina.txt: 1937) +.99mst.com/upfiles/adv/main02\.jpg +# ||99danji.com/otherhtml/ (easylistchina.txt: 1936) +.99danji.com/otherhtml/ +# ||99btgc01.info/uploads/*.gif (easylistchina.txt: 1935) +.99btgc01.info/uploads/.*\.gif +# ||999sdh.com/tu/*.js (easylistchina.txt: 1934) +.999sdh.com/tu/.*\.js +# ||9938.net/video/tvg/hot.js (easylistchina.txt: 1932) +.9938.net/video/tvg/hot\.js +# ||9938.net/video/tvg/footer.js (easylistchina.txt: 1931) +.9938.net/video/tvg/footer\.js +# ||97aa1.com/g/ (easylistchina.txt: 1930) +.97aa1.com/g/ +# ||973.com/xyx/p.js (easylistchina.txt: 1929) +.973.com/xyx/p\.js +# ||969g.com/common/iframe/ (easylistchina.txt: 1928) +.969g.com/common/iframe/ +# ||966266.com/a-d/ (easylistchina.txt: 1927) +.966266.com/a-d/ +# ||962.net/skin/library/js/bt-index.js (easylistchina.txt: 1926) +.962.net/skin/library/js/bt-index\.js +# ||962.net/show/index_ (easylistchina.txt: 1925) +.962.net/show/index_ +# ||962.net/show/bt.js (easylistchina.txt: 1923) +.962.net/show/bt\.js +# ||962.net/show/all.js (easylistchina.txt: 1921) +.962.net/show/all\.js +# ||96.43.97.243^ (easylistchina.txt: 1920) +.96.43.97.243 +# ||9553.com/otherhtml/ (easylistchina.txt: 1919) +.9553.com/otherhtml/ +# ||94994.com*/js/plugin/shoppingMall/ (easylistchina.txt: 1918) +.94994.com*./(.*/)?js/plugin/shoppingMall/ +# ||93t.cc/template/93t/images/41550.gif (easylistchina.txt: 1917) +.93t.cc/template/93t/images/41550\.gif +# ||93994.com/templets/images/dashan.jpg (easylistchina.txt: 1916) +.93994.com/templets/images/dashan\.jpg +# ||92wav.com/rj/*.gif (easylistchina.txt: 1915) +.92wav.com/rj/.*\.gif +# ||92dp.com/home/showg?id= (easylistchina.txt: 1914) +.92dp.com/home/showg\?id= +# ||92dp.com/dianping/videoad (easylistchina.txt: 1913) +.92dp.com/dianping/videoad +# ||91danji.com/js/lmt.js (easylistchina.txt: 1912) +.91danji.com/js/lmt\.js +# ||91danji.com/images/*.jpg (easylistchina.txt: 1911) +.91danji.com/images/.*\.jpg +# ||91danji.com/asset/temp/91danji- (easylistchina.txt: 1910) +.91danji.com/asset/temp/91danji- +# ||918999.com/xjgg/ (easylistchina.txt: 1909) +.918999.com/xjgg/ +# ||91.com/uploads/game/*-%E5%B9%BF%E5%91%8A. (easylistchina.txt: 1908) +.91.com/uploads/game/.*-%E5%B9%BF%E5%91%8A\. +# ||91.com/hezuo/ (easylistchina.txt: 1907) +.91.com/hezuo/ +# ||91.com/*/hezuo/ (easylistchina.txt: 1906) +.91.com/.*/hezuo/ +# ||90zy.cn/data/attachment/portal/ (easylistchina.txt: 1905) +.90zy.cn/data/attachment/portal/ +# ||90oo.com/tp/w981.gif (easylistchina.txt: 1904) +.90oo.com/tp/w981\.gif +# ||90oo.com/tp/msn.jpg (easylistchina.txt: 1903) +.90oo.com/tp/msn\.jpg +# ||90oo.com/tp/js (easylistchina.txt: 1902) +.90oo.com/tp/js +# ||90oo.com/tp/hg (easylistchina.txt: 1901) +.90oo.com/tp/hg +# ||90oo.com/tp/down.gif (easylistchina.txt: 1900) +.90oo.com/tp/down\.gif +# ||90oo.com/tp/90232.jpg (easylistchina.txt: 1899) +.90oo.com/tp/90232\.jpg +# ||90oo.com/tp/40 (easylistchina.txt: 1898) +.90oo.com/tp/40 +# ||90oo.com/tp/*980.gif (easylistchina.txt: 1897) +.90oo.com/tp/.*980\.gif +# ||90bifen.net/images/c_ad_ (easylistchina.txt: 1896) +.90bifen.net/images/c_ad_ +# ||9091tv.com/Runtime/js/vod (easylistchina.txt: 1895) +.9091tv.com/Runtime/js/vod +# ||9091tv.com/Runtime/js/topguanggao (easylistchina.txt: 1894) +.9091tv.com/Runtime/js/topguanggao +# ||9091tv.com/hhhh.htm (easylistchina.txt: 1893) +.9091tv.com/hhhh\.htm +# ||9091tv.com/dy/mtu.swf (easylistchina.txt: 1892) +.9091tv.com/dy/mtu\.swf +# ||9000wy.com/style/js/2015content.js (easylistchina.txt: 1891) +.9000wy.com/style/js/2015content\.js +# ||900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi.gif (easylistchina.txt: 1890) +.900.la/imgs/cda7c9a0-9f34-421b-a0fe-03740c1b42d3/2015-04-05/ji0gu3xi\.gif +# ||8vod.net/detail/vod_*.js (easylistchina.txt: 1889) +.8vod.net/detail/vod_.*\.js +# ||8vod.net/detail/play_*.js (easylistchina.txt: 1888) +.8vod.net/detail/play_.*\.js +# ||8jkx.com^ (easylistchina.txt: 1886) +.8jkx.com +# ||8d8d.me/images/dealer.gif (easylistchina.txt: 1884) +.8d8d.me/images/dealer\.gif +# ||88liu.com/data/attachment/portal/ (easylistchina.txt: 1883) +.88liu.com/data/attachment/portal/ +# ||88gs.com/agfile/ (easylistchina.txt: 1882) +.88gs.com/agfile/ +# ||88448.com/images/gj/ (easylistchina.txt: 1881) +.88448.com/images/gj/ +# ||880fg.com/css/*.js (easylistchina.txt: 1880) +.880fg.com/css/.*\.js +# ||87994.com/images/rili.gif (easylistchina.txt: 1879) +.87994.com/images/rili\.gif +# ||86file.megajoy.com^ (easylistchina.txt: 1878) +.86file.megajoy.com +# ||8684.com/com/sys_ad_ (easylistchina.txt: 1877) +.8684.com/com/sys_ad_ +# ||8684.com/baidu/c.js (easylistchina.txt: 1876) +.8684.com/baidu/c\.js +# ||8684.com/20150123/f3d37541.jpg (easylistchina.txt: 1875) +.8684.com/20150123/f3d37541\.jpg +# ||8684.cn/id/ad_ (easylistchina.txt: 1874) +.8684.cn/id/ad_ +# ||8683ys.com/template/380x60.gif (easylistchina.txt: 1873) +.8683ys.com/template/380x60\.gif +# ||86696.com/images/indexad.jpg (easylistchina.txt: 1872) +.86696.com/images/indexad\.jpg +# ||855699.com^*qq.js (easylistchina.txt: 1871) +.855699.com/.*qq\.js +# ||855699.com/piao.js (easylistchina.txt: 1870) +.855699.com/piao\.js +# ||83133.com/api/ (easylistchina.txt: 1869) +.83133.com/api/ +# ||81qi.com/d/js/ (easylistchina.txt: 1868) +.81qi.com/d/js/ +# ||81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02.jpg (easylistchina.txt: 1867) +.81.cn/attachement/jpg/site351/20140721/082e5f135a1a15370c4b02\.jpg +# ||80txt.com/js3*.gif (easylistchina.txt: 1866) +.80txt.com/js3.*\.gif +# ||801.tianyaui.com^ (easylistchina.txt: 1865) +.801.tianyaui.com +# ||800j.com.cn/index.php?m=poster& (easylistchina.txt: 1864) +.800j.com.cn/index\.php\?m=poster& +# ||800j.com.cn/api.php?op=itemtopbanner& (easylistchina.txt: 1863) +.800j.com.cn/api\.php\?op=itemtopbanner& +# ||800j.com.cn/2014ad/ (easylistchina.txt: 1862) +.800j.com.cn/2014ad/ +# ||800j.com.cn/2013ad/ (easylistchina.txt: 1861) +.800j.com.cn/2013ad/ +# ||8*.tianya.cn^ (easylistchina.txt: 1860) +.8*./.*\.tianya\.cn[^\w%.-] +.8*.tianya.cn +# ||7y7.com/js/7y7.ad. (easylistchina.txt: 1859) +.7y7.com/js/7y7\.ad\. +# ||7xdown.com/youid/ (easylistchina.txt: 1858) +.7xdown.com/youid/ +# ||7xdown.com/idcgg/ (easylistchina.txt: 1857) +.7xdown.com/idcgg/ +# ||7vk.com/detail/ (easylistchina.txt: 1856) +.7vk.com/detail/ +# ||7scs.com/js/TOP.js (easylistchina.txt: 1855) +.7scs.com/js/TOP\.js +# ||7mad.7m.cn^ (easylistchina.txt: 1854) +.7mad.7m.cn +# ||7m.cn/v2/js/analysebanner.js (easylistchina.txt: 1853) +.7m.cn/v2/js/analysebanner\.js +# ||7m.cn/analyse/include/*_ (easylistchina.txt: 1852) +.7m.cn/analyse/include/.*_ +# ||7kankan.com/scripts/new/indext (easylistchina.txt: 1851) +.7kankan.com/scripts/new/indext +# ||7kankan.com/c/123.gif (easylistchina.txt: 1850) +.7kankan.com/c/123\.gif +# ||7k7k.com/loading/loading.htm (easylistchina.txt: 1849) +.7k7k.com/loading/loading\.htm +# ||7k7k.com/ad-*.htm (easylistchina.txt: 1848) +.7k7k.com/ad-.*\.htm +# ||7edown.com/greensoft/js/ (easylistchina.txt: 1847) +.7edown.com/greensoft/js/ +# ||7dsw.com/web8/js/ (easylistchina.txt: 1846) +.7dsw.com/web8/js/ +# ||7c.com/7c_*.html? (easylistchina.txt: 1845) +.7c.com/7c_.*\.html\? +# ||79pan.com/gao.gif (easylistchina.txt: 1844) +.79pan.com/gao\.gif +# ||78land.com/js/fumeiti.js (easylistchina.txt: 1843) +.78land.com/js/fumeiti\.js +# ||78dm.net/images/mingren250.jpg (easylistchina.txt: 1842) +.78dm.net/images/mingren250\.jpg +# ||789pan.com/templates/default/images/kuping.gif (easylistchina.txt: 1841) +.789pan.com/templates/default/images/kuping\.gif +# ||77kp.com/bd/ (easylistchina.txt: 1840) +.77kp.com/bd/ +# ||77bike.com/img/tern.swf (easylistchina.txt: 1839) +.77bike.com/img/tern\.swf +# ||77bike.com/img/sticker.gif (easylistchina.txt: 1838) +.77bike.com/img/sticker\.gif +# ||77bike.com/img/fsir.gif (easylistchina.txt: 1837) +.77bike.com/img/fsir\.gif +# ||777g.me/cs/ (easylistchina.txt: 1836) +.777g.me/cs/ +# ||77119.com/js/ (easylistchina.txt: 1835) +.77119.com/js/ +# ||76xh.com/skin/zxf/js/ad (easylistchina.txt: 1834) +.76xh.com/skin/zxf/js/ad +# ||766.com/upbox2/js/*.js (easylistchina.txt: 1833) +.766.com/upbox2/js/.*\.js +# ||76.73.85.179/js/v1.js (easylistchina.txt: 1832) +.76.73.85.179/js/v1\.js +# ||75.125.41.29:8080/ (easylistchina.txt: 1831) +.75.125.41.29:8080 +# ||73p37.com/js/top (easylistchina.txt: 1830) +.73p37.com/js/top +# ||73p37.com/js/playad.html (easylistchina.txt: 1829) +.73p37.com/js/playad\.html +# ||73p37.com/js/bottomall.js (easylistchina.txt: 1828) +.73p37.com/js/bottomall\.js +# ||72bbb.com/images/12.gif (easylistchina.txt: 1827) +.72bbb.com/images/12\.gif +# ||726w.com/sohu.html (easylistchina.txt: 1826) +.726w.com/sohu\.html +# ||70.86.24.120:8060/ (easylistchina.txt: 1825) +.70.86.24.120:8060 +# ||6vhao.com/d/f*.js (easylistchina.txt: 1824) +.6vhao.com/d/f.*\.js +# ||6vhao.com/d/960.js (easylistchina.txt: 1823) +.6vhao.com/d/960\.js +# ||6vdy.com/d/f*.js (easylistchina.txt: 1822) +.6vdy.com/d/f.*\.js +# ||6vdy.com/d/960.js (easylistchina.txt: 1821) +.6vdy.com/d/960\.js +# ||6park.com/wap/ (easylistchina.txt: 1819) +.6park.com/wap/ +# ||6park.com/img/15.png (easylistchina.txt: 1816) +.6park.com/img/15\.png +# ||6ddd.com/js/myfiles/down_ (easylistchina.txt: 1815) +.6ddd.com/js/myfiles/down_ +# ||6ddd.com/js/myfiles/banner.js (easylistchina.txt: 1814) +.6ddd.com/js/myfiles/banner\.js +# ||6d245gxt.52pk.com^ (easylistchina.txt: 1813) +.6d245gxt.52pk.com +# ||69nh.com/detail/player_ (easylistchina.txt: 1812) +.69nh.com/detail/player_ +# ||6949.com/ggs_ (easylistchina.txt: 1811) +.6949.com/ggs_ +# ||6949.com/640x44.htm (easylistchina.txt: 1810) +.6949.com/640x44\.htm +# ||69.30.217.155^*.png (easylistchina.txt: 1809) +.69.30.217.155/.*\.png +# ||68design.net/inc/news. (easylistchina.txt: 1808) +.68design.net/inc/news\. +# ||676000.com/001.htm (easylistchina.txt: 1807) +.676000.com/001\.htm +# ||67.159.44.187/js/v1.js (easylistchina.txt: 1806) +.67.159.44.187/js/v1\.js +# ||66xinxin.com/js/ads888/ (easylistchina.txt: 1804) +.66xinxin.com/js/ads888/ +# ||66wz.com/data/attachment/portal/ (easylistchina.txt: 1803) +.66wz.com/data/attachment/portal/ +# ||66wz.com/adv2/ (easylistchina.txt: 1802) +.66wz.com/adv2/ +# ||66wz.com/48aa9454edd446fbef0df9e9aa5997f4.gif (easylistchina.txt: 1801) +.66wz.com/48aa9454edd446fbef0df9e9aa5997f4\.gif +# ||66rd.cn^*96060 (easylistchina.txt: 1800) +.66rd.cn/.*96060 +# ||66rd.cn^*120250. (easylistchina.txt: 1799) +.66rd.cn/.*120250\. +# ||66rd.cn^*100060. (easylistchina.txt: 1798) +.66rd.cn/.*100060\. +# ||66rd.cn^*1000300. (easylistchina.txt: 1797) +.66rd.cn/.*1000300\. +# ||66rd.cn/pic/rdwmh800.gif (easylistchina.txt: 1796) +.66rd.cn/pic/rdwmh800\.gif +# ||66rd.cn/pic/rdrccs2014.jpg (easylistchina.txt: 1795) +.66rd.cn/pic/rdrccs2014\.jpg +# ||66rd.cn/pic/itv130.jpg (easylistchina.txt: 1794) +.66rd.cn/pic/itv130\.jpg +# ||66rd.cn/pic/*1000. (easylistchina.txt: 1793) +.66rd.cn/pic/.*1000\. +# ||66rd.cn/js/foot.js (easylistchina.txt: 1792) +.66rd.cn/js/foot\.js +# ||66ip.cn/klz/953X164.gif (easylistchina.txt: 1791) +.66ip.cn/klz/953X164\.gif +# ||66ip.cn/common/img/yaoyao.jpg (easylistchina.txt: 1790) +.66ip.cn/common/img/yaoyao\.jpg +# ||66hbo.com/images/new1/uploads/index_banner/*.jpg (easylistchina.txt: 1789) +.66hbo.com/images/new1/uploads/index_banner/.*\.jpg +# ||66hbo.com/images/new1/uploads/index_banner/*.gif$~collapse (easylistchina.txt: 1788) +.66hbo.com/images/new1/uploads/index_banner/.*\.gif +# ||666pan.com/666a/ (easylistchina.txt: 1786) +.666pan.com/666a/ +# ||6665432.com^*.gif (easylistchina.txt: 1785) +.6665432.com/.*\.gif +# ||66384.com/templets/SWFad (easylistchina.txt: 1784) +.66384.com/templets/SWFad +# ||66384.com/templets/js/stats.js (easylistchina.txt: 1783) +.66384.com/templets/js/stats\.js +# ||6620070.com/js/ (easylistchina.txt: 1782) +.6620070.com/js/ +# ||66.fmx.cn/js/ (easylistchina.txt: 1781) +.66.fmx.cn/js/ +# ||654mmm.com^ (easylistchina.txt: 1780) +.654mmm.com +# ||62422.cn/js/inc/13.swf (easylistchina.txt: 1779) +.62422.cn/js/inc/13\.swf +# ||62422.cn/ggimg/ (easylistchina.txt: 1778) +.62422.cn/ggimg/ +# ||61.235.249.195^*/Default.aspx?id= (easylistchina.txt: 1777) +.61.235.249.195/.*/Default\.aspx\?id= +# ||61.164.108.184^*.swf (easylistchina.txt: 1776) +.61.164.108.184/.*\.swf +# ||61.164.108.184^*.gif (easylistchina.txt: 1775) +.61.164.108.184/.*\.gif +# ||61.164.108.104:4275/*.gif (easylistchina.txt: 1774) +.61.164.108.104:4275/.*\.gif +# ||61.147.92.251:81/120x160.asp (easylistchina.txt: 1773) +.61.147.92.251:81/120x160\.asp +# ||61.143.225.176:818/nowscore/ (easylistchina.txt: 1772) +.61.143.225.176:818/nowscore/ +# ||60808.org/a/*.jpg (easylistchina.txt: 1771) +.60808.org/a/.*\.jpg +# ||600km.com/template/*/ad/ (easylistchina.txt: 1770) +.600km.com/template/.*/ad/ +# ||600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ (easylistchina.txt: 1769) +.600km.com/source/plugin/rsf_elasticity_pull_screen_adv/ +# ||6.gy/wp-content/uploads/*/ad (easylistchina.txt: 1768) +.6.gy/wp-content/uploads/.*/ad +# ||6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40.jpg (easylistchina.txt: 1767) +.6.cn/cvbnm/62/5c/26/76db16b5ca7d2253c88c3cc9795f4a40\.jpg +# ||6.cn/coop/pub/getRand.php? (easylistchina.txt: 1766) +.6.cn/coop/pub/getRand\.php\? +# ||6.cn/coop/pub/getMiniPage.php?src= (easylistchina.txt: 1765) +.6.cn/coop/pub/getMiniPage\.php\?src= +# ||5ydj.com/js/shop.js (easylistchina.txt: 1764) +.5ydj.com/js/shop\.js +# ||5ydj.com/js/hometj.js (easylistchina.txt: 1763) +.5ydj.com/js/hometj\.js +# ||5ydj.com/images/banner/ (easylistchina.txt: 1762) +.5ydj.com/images/banner/ +# ||5y9nfpes.52pk.com^ (easylistchina.txt: 1761) +.5y9nfpes.52pk.com +# ||5vdd.com/opear.jpg (easylistchina.txt: 1760) +.5vdd.com/opear\.jpg +# ||5vdd.com/iqiyi.jpg (easylistchina.txt: 1759) +.5vdd.com/iqiyi\.jpg +# ||5vdd.com/ie.gif (easylistchina.txt: 1758) +.5vdd.com/ie\.gif +# ||5vdd.com/2345ws.jpg (easylistchina.txt: 1757) +.5vdd.com/2345ws\.jpg +# ||5tps.com/js/bo_al.js (easylistchina.txt: 1756) +.5tps.com/js/bo_al\.js +# ||5tps.com/js/al_ (easylistchina.txt: 1755) +.5tps.com/js/al_ +# ||5moe.com/player/ad.xml (easylistchina.txt: 1754) +.5moe.com/player/ad\.xml +# ||5iyq.com/skin/default/js/topad (easylistchina.txt: 1753) +.5iyq.com/skin/default/js/topad +# ||5ips.net/love/ (easylistchina.txt: 1752) +.5ips.net/love/ +# ||5imx.com/BBS/image/img/ (easylistchina.txt: 1751) +.5imx.com/BBS/image/img/ +# ||5imx.com/BBS/image/image/ (easylistchina.txt: 1750) +.5imx.com/BBS/image/image/ +# ||5imx.com/BBS/data/attachment/common/news/ (easylistchina.txt: 1749) +.5imx.com/BBS/data/attachment/common/news/ +# ||5ilog.com/qq/js/jsgg.js (easylistchina.txt: 1748) +.5ilog.com/qq/js/jsgg\.js +# ||5icool.org/uploadfile/poster/1080x60. (easylistchina.txt: 1747) +.5icool.org/uploadfile/poster/1080x60\. +# ||5i.com/include/js/ad_ (easylistchina.txt: 1746) +.5i.com/include/js/ad_ +# ||5i.com/images/5ibbtangct.js (easylistchina.txt: 1745) +.5i.com/images/5ibbtangct\.js +# ||5dmail.net/js/ (easylistchina.txt: 1744) +.5dmail.net/js/ +# ||5dmail.net/image/ORF_1000.gif (easylistchina.txt: 1743) +.5dmail.net/image/ORF_1000\.gif +# ||5dmail.net/image/ad_ (easylistchina.txt: 1742) +.5dmail.net/image/ad_ +# ||5adm.net/79070.gif (easylistchina.txt: 1740) +.5adm.net/79070\.gif +# ||5944.net/source/css/images/ad_ (easylistchina.txt: 1739) +.5944.net/source/css/images/ad_ +# ||592siwa.com/tools/ (easylistchina.txt: 1738) +.592siwa.com/tools/ +# ||591hx.com/zyrk_dy/gwjl.html (easylistchina.txt: 1737) +.591hx.com/zyrk_dy/gwjl\.html +# ||591hx.com/lunbo/ (easylistchina.txt: 1736) +.591hx.com/lunbo/ +# ||591hx.com/js/floatbox.js (easylistchina.txt: 1735) +.591hx.com/js/floatbox\.js +# ||591hx.com/js/dll.js (easylistchina.txt: 1734) +.591hx.com/js/dll\.js +# ||591hx.com/images/0000.jpg (easylistchina.txt: 1733) +.591hx.com/images/0000\.jpg +# ||59.36.101.209:888/link/vc_280x192.gif (easylistchina.txt: 1732) +.59.36.101.209:888/link/vc_280x192\.gif +# ||58cdn.com.cn/ds/tgbrand/ (easylistchina.txt: 1731) +.58cdn.com.cn/ds/tgbrand/ +# ||58cdn.com.cn//ui6/index/13.jpg (easylistchina.txt: 1730) +# ||58.com/ui7/*banner_ (easylistchina.txt: 1729) +.58.com/ui7/.*banner_ +# ||58.com/show/ads? (easylistchina.txt: 1728) +.58.com/show/ads\? +# ||58.com/ds/tgbrand/ (easylistchina.txt: 1727) +.58.com/ds/tgbrand/ +# ||58.com/ds/jinrong/ban/ (easylistchina.txt: 1726) +.58.com/ds/jinrong/ban/ +# ||576tv.com/Scripts/home.js (easylistchina.txt: 1725) +.576tv.com/Scripts/home\.js +# ||56img.com^*/search-engine-promotion.js (easylistchina.txt: 1724) +.56img.com/.*/search-engine-promotion\.js +# ||56img.com^*/baidu-promotion.js (easylistchina.txt: 1723) +.56img.com/.*/baidu-promotion\.js +# ||56ads.com/js/main.js (easylistchina.txt: 1722) +.56ads.com/js/main\.js +# ||56.com/js/promo/ (easylistchina.txt: 1721) +.56.com/js/promo/ +# ||55music.net/dazhe.jpg (easylistchina.txt: 1720) +.55music.net/dazhe\.jpg +# ||55aaee.com/detail/ (easylistchina.txt: 1719) +.55aaee.com/detail/ +# ||55125.cn/ggclass/ (easylistchina.txt: 1718) +.55125.cn/ggclass/ +# ||54new.com/da/ (easylistchina.txt: 1716) +.54new.com/da/ +# ||543et.com/detail/ (easylistchina.txt: 1715) +.543et.com/detail/ +# ||5399.com/poster_js/ (easylistchina.txt: 1714) +.5399.com/poster_js/ +# ||52zy.com/other/js/ (easylistchina.txt: 1713) +.52zy.com/other/js/ +# ||52wmb.com/2014js/GG_ (easylistchina.txt: 1712) +.52wmb.com/2014js/GG_ +# ||52waha.com/static/js/function_bbs.js (easylistchina.txt: 1711) +.52waha.com/static/js/function_bbs\.js +# ||52verycd.com/9241505.gif (easylistchina.txt: 1710) +.52verycd.com/9241505\.gif +# ||52tian.net/qq/ (easylistchina.txt: 1709) +.52tian.net/qq/ +# ||52solution.com/js/duilian-bbs.js (easylistchina.txt: 1708) +.52solution.com/js/duilian-bbs\.js +# ||52rd.com/Pic2/*_600_60. (easylistchina.txt: 1707) +.52rd.com/Pic2/.*_600_60\. +# ||52rd.com/Pic/Click/ (easylistchina.txt: 1706) +.52rd.com/Pic/Click/ +# ||52pk.com/jkjs/imp- (easylistchina.txt: 1705) +.52pk.com/jkjs/imp- +# ||52kdm.com/static/52kdm/m/ (easylistchina.txt: 1704) +.52kdm.com/static/52kdm/m/ +# ||52jt.net/images/banner_taozhuang.jpg (easylistchina.txt: 1703) +.52jt.net/images/banner_taozhuang\.jpg +# ||52jifenbao.net/wp-content/uploads/2014/04/xinren.jpg (easylistchina.txt: 1702) +.52jifenbao.net/wp-content/uploads/2014/04/xinren\.jpg +# ||52hardware.com/topic/a2 (easylistchina.txt: 1701) +.52hardware.com/topic/a2 +# ||52hardware.com/images/baimg/ (easylistchina.txt: 1700) +.52hardware.com/images/baimg/ +# ||52fanquan.com/index.php?i= (easylistchina.txt: 1699) +.52fanquan.com/index\.php\?i= +# ||52che.com/NewLocal/TemplateHtml/headflash1_ (easylistchina.txt: 1698) +.52che.com/NewLocal/TemplateHtml/headflash1_ +# ||52che.com/Inc/FooterComm_ (easylistchina.txt: 1697) +.52che.com/Inc/FooterComm_ +# ||52ch.net/data/attachment/portal/ (easylistchina.txt: 1696) +.52ch.net/data/attachment/portal/ +# ||52ch.net/data/advimg/ (easylistchina.txt: 1695) +.52ch.net/data/advimg/ +# ||521000.com/com/BBS_AD. (easylistchina.txt: 1694) +.521000.com/com/BBS_AD\. +# ||521000.com/bbs/inc/Dv_Adv.js (easylistchina.txt: 1693) +.521000.com/bbs/inc/Dv_Adv\.js +# ||520rr.com*/baidu/ (easylistchina.txt: 1692) +.520rr.com*./(.*/)?baidu/ +# ||520kankan.com/960x80.gif (easylistchina.txt: 1691) +.520kankan.com/960x80\.gif +# ||520bdy.com/images/888.jpg (easylistchina.txt: 1690) +.520bdy.com/images/888\.jpg +# ||51zxw.net/images/zhaopin.jpg (easylistchina.txt: 1689) +.51zxw.net/images/zhaopin\.jpg +# ||51zxw.net/fzsplayer/adtextzxw.asp? (easylistchina.txt: 1688) +.51zxw.net/fzsplayer/adtextzxw\.asp\? +# ||51zxw.net/adad/ (easylistchina.txt: 1687) +.51zxw.net/adad/ +# ||51ztzj.com/res/web/img/pic/inshow.jpg (easylistchina.txt: 1686) +.51ztzj.com/res/web/img/pic/inshow\.jpg +# ||51ztzj.com/res/web/img/download_sign (easylistchina.txt: 1685) +.51ztzj.com/res/web/img/download_sign +# ||51ztzj.com/js/you.js (easylistchina.txt: 1684) +.51ztzj.com/js/you\.js +# ||51xxs.com/users/public/*.swf (easylistchina.txt: 1683) +.51xxs.com/users/public/.*\.swf +# ||51xuediannao.com/plus/mytag_js.php?aid= (easylistchina.txt: 1682) +.51xuediannao.com/plus/mytag_js\.php\?aid= +# ||51wan.com/web/v1/index/images/spec/ (easylistchina.txt: 1681) +.51wan.com/web/v1/index/images/spec/ +# ||51wan.com/img/js/xyadjs_ (easylistchina.txt: 1680) +.51wan.com/img/js/xyadjs_ +# ||51testing.com/imagesnew/indextop.jpg (easylistchina.txt: 1679) +.51testing.com/imagesnew/indextop\.jpg +# ||51testing.com/imagesnew/960x101.jpg (easylistchina.txt: 1678) +.51testing.com/imagesnew/960x101\.jpg +# ||51testing.com/imagesnew/642x53.gif (easylistchina.txt: 1677) +.51testing.com/imagesnew/642x53\.gif +# ||51testing.com/imagesnew/307x90.gif (easylistchina.txt: 1676) +.51testing.com/imagesnew/307x90\.gif +# ||51testing.com/imagesnew/*.swf (easylistchina.txt: 1675) +.51testing.com/imagesnew/.*\.swf +# ||51testing.com/images/sz51com.swf (easylistchina.txt: 1674) +.51testing.com/images/sz51com\.swf +# ||51test.net/js_new/baidu/ (easylistchina.txt: 1673) +.51test.net/js_new/baidu/ +# ||51test.net/js_new/*_right_middle.js (easylistchina.txt: 1672) +.51test.net/js_new/.*_right_middle\.js +# ||51test.net/js_new/*_content_up.js (easylistchina.txt: 1671) +.51test.net/js_new/.*_content_up\.js +# ||51test.net/js_new/*_content_down.js (easylistchina.txt: 1670) +.51test.net/js_new/.*_content_down\.js +# ||51test.net/js_new/*_banner.js (easylistchina.txt: 1669) +.51test.net/js_new/.*_banner\.js +# ||51test.net/baiduunion/ (easylistchina.txt: 1668) +.51test.net/baiduunion/ +# ||51ou.com/images/taoping (easylistchina.txt: 1666) +.51ou.com/images/taoping +# ||51netu.com.cn/index.php/index/advShow?adpid= (easylistchina.txt: 1665) +.51netu.com.cn/index\.php/index/advShow\?adpid= +# ||51img.ajiang.net^*.gif (easylistchina.txt: 1663) +.51img.ajiang.net/.*\.gif +# ||51hanhua.com/2013/ (easylistchina.txt: 1662) +.51hanhua.com/2013/ +# ||51gugu.com/popwin/AutoHAdShow.aspx (easylistchina.txt: 1661) +.51gugu.com/popwin/AutoHAdShow\.aspx +# ||51gaojian.com/js/tj.js (easylistchina.txt: 1660) +.51gaojian.com/js/tj\.js +# ||51fanli.net/misc/images/invite-v4/banner.gif (easylistchina.txt: 1659) +.51fanli.net/misc/images/invite-v4/banner\.gif +# ||51cto.com/js/blog_top_list.php (easylistchina.txt: 1658) +.51cto.com/js/blog_top_list\.php +# ||51credit.com/credit/images/*/xyb (easylistchina.txt: 1657) +.51credit.com/credit/images/.*/xyb +# ||51bczx.com/js/float.js (easylistchina.txt: 1656) +.51bczx.com/js/float\.js +# ||51bczx.com/img/51bczx/ (easylistchina.txt: 1655) +.51bczx.com/img/51bczx/ +# ||51bczx.com/attachment/Mon_ (easylistchina.txt: 1654) +.51bczx.com/attachment/Mon_ +# ||51ape.com/d/js/ (easylistchina.txt: 1653) +.51ape.com/d/js/ +# ||5185.cc/forum/*.gif (easylistchina.txt: 1652) +.5185.cc/forum/.*\.gif +# ||5184.com/gk2014/ebuy (easylistchina.txt: 1651) +.5184.com/gk2014/ebuy +# ||5184.com/gk2014/*_315. (easylistchina.txt: 1650) +.5184.com/gk2014/.*_315\. +# ||5184.com/gk20*_240. (easylistchina.txt: 1649) +.5184.com/gk20.*_240\. +# ||5184.com/container/html/news_view_gg (easylistchina.txt: 1648) +.5184.com/container/html/news_view_gg +# ||51688.cc/ya/ (easylistchina.txt: 1647) +.51688.cc/ya/ +# ||512ms.com/js/index_ggw_show.js (easylistchina.txt: 1646) +.512ms.com/js/index_ggw_show\.js +# ||51.com/up/bdfmt/ (easylistchina.txt: 1645) +.51.com/up/bdfmt/ +# ||506ys.com/js/200.js (easylistchina.txt: 1644) +.506ys.com/js/200\.js +# ||5068.com/uploads/allimg/150116/71_150116175734_1.jpg (easylistchina.txt: 1643) +.5068.com/uploads/allimg/150116/71_150116175734_1\.jpg +# ||5011.net/template/images/*0.gif (easylistchina.txt: 1642) +.5011.net/template/images/.*0\.gif +# ||500xxxx.com/go.js (easylistchina.txt: 1641) +.500xxxx.com/go\.js +# ||50.7.31.230/ads_ (easylistchina.txt: 1640) +.50.7.31.230/ads_ +# ||4kong.com/xk.jpg (easylistchina.txt: 1639) +.4kong.com/xk\.jpg +# ||46g.cn/images/top.gif (easylistchina.txt: 1638) +.46g.cn/images/top\.gif +# ||464mnk.com/templets/new/static/js/common.js (easylistchina.txt: 1637) +.464mnk.com/templets/new/static/js/common\.js +# ||44921.cn/ajsv1/flashad_ (easylistchina.txt: 1636) +.44921.cn/ajsv1/flashad_ +# ||4399.com/loadimg/loading.htm (easylistchina.txt: 1635) +.4399.com/loadimg/loading\.htm +# ||4399.com/loadimg/iframe_ (easylistchina.txt: 1634) +.4399.com/loadimg/iframe_ +# ||4399.com/expire1day/ (easylistchina.txt: 1633) +.4399.com/expire1day/ +# ||4399.com/baiduad/ (easylistchina.txt: 1632) +.4399.com/baiduad/ +# ||40wan.com/js/www2/ (easylistchina.txt: 1631) +.40wan.com/js/www2/ +# ||40407.com/templets/default/images/index.js (easylistchina.txt: 1630) +.40407.com/templets/default/images/index\.js +# ||40407.com/plus_rpad_ (easylistchina.txt: 1629) +.40407.com/plus_rpad_ +# ||40407.com/plus/rpad/ (easylistchina.txt: 1628) +.40407.com/plus/rpad/ +# ||40407.com/plus/pthc/zqdl.php? (easylistchina.txt: 1627) +.40407.com/plus/pthc/zqdl\.php\? +# ||4020.la/hi/ (easylistchina.txt: 1626) +.4020.la/hi/ +# ||400516.com/data/attachment/album/ (easylistchina.txt: 1625) +.400516.com/data/attachment/album/ +# ||3sjt.com/3sjtimg/ (easylistchina.txt: 1624) +.3sjt.com/3sjtimg/ +# ||3qdati.com/gg.gif (easylistchina.txt: 1623) +.3qdati.com/gg\.gif +# ||3qcc.com/js/bb.js (easylistchina.txt: 1622) +.3qcc.com/js/bb\.js +# ||3h3.com/js/show/ (easylistchina.txt: 1621) +.3h3.com/js/show/ +# ||3h3.com/js/listad.js (easylistchina.txt: 1620) +.3h3.com/js/listad\.js +# ||3h3.com/js/homepage.js (easylistchina.txt: 1619) +.3h3.com/js/homepage\.js +# ||3g.cn/js/noblockme/ (easylistchina.txt: 1618) +.3g.cn/js/noblockme/ +# ||3dm.huya.com^ (easylistchina.txt: 1617) +.3dm.huya.com +# ||3dezu.cn/zt/8866.gif (easylistchina.txt: 1616) +.3dezu.cn/zt/8866\.gif +# ||3d66.com/gx2013g/ (easylistchina.txt: 1615) +.3d66.com/gx2013g/ +# ||3d66.com/gg-swf/ (easylistchina.txt: 1614) +.3d66.com/gg-swf/ +# ||3boys2girls.com/templates/default/2013/life/160b5.js (easylistchina.txt: 1612) +.3boys2girls.com/templates/default/2013/life/160b5\.js +# ||3boys2girls.com/newfile/image2010/banner_housead_ (easylistchina.txt: 1611) +.3boys2girls.com/newfile/image2010/banner_housead_ +# ||3987.com/images/ (easylistchina.txt: 1610) +.3987.com/images/ +# ||39.net/rel/k13.php?adid= (easylistchina.txt: 1609) +.39.net/rel/k13\.php\?adid= +# ||39.net/js/google/ (easylistchina.txt: 1608) +.39.net/js/google/ +# ||39.net/js/baidu/ (easylistchina.txt: 1607) +.39.net/js/baidu/ +# ||39.net/creative/ (easylistchina.txt: 1606) +.39.net/creative/ +# ||39.net/client/39/c.js (easylistchina.txt: 1605) +.39.net/client/39/c\.js +# ||38v.com/38v-b.gif (easylistchina.txt: 1604) +.38v.com/38v-b\.gif +# ||36tv.cn/statics/images/jinhuatv/ad (easylistchina.txt: 1603) +.36tv.cn/statics/images/jinhuatv/ad +# ||36tv.cn/ad_pic/ (easylistchina.txt: 1602) +.36tv.cn/ad_pic/ +# ||36dm.com/js/nu (easylistchina.txt: 1601) +.36dm.com/js/nu +# ||36dm.com/images/*acgsou.gif (easylistchina.txt: 1600) +.36dm.com/images/.*acgsou\.gif +# ||365xs.org/js/xiayizhang.js (easylistchina.txt: 1599) +.365xs.org/js/xiayizhang\.js +# ||365kl.net/template/eis_x3_city_a_1/eis/baobao.gif (easylistchina.txt: 1598) +.365kl.net/template/eis_x3_city_a_1/eis/baobao\.gif +# ||3634.com/qq/ (easylistchina.txt: 1597) +.3634.com/qq/ +# ||360safego.com^ (easylistchina.txt: 1596) +.360safego.com +# ||360kan.com/special/iframe/ (easylistchina.txt: 1595) +.360kan.com/special/iframe/ +# ||360bo.cc/js/float.js (easylistchina.txt: 1594) +.360bo.cc/js/float\.js +# ||360.cn/index/showjokes?callback= (easylistchina.txt: 1593) +.360.cn/index/showjokes\?callback= +# ||360.cn/festival_zone.html (easylistchina.txt: 1592) +.360.cn/festival_zone\.html +# ||360-bo.com/js/float2.js (easylistchina.txt: 1591) +.360-bo.com/js/float2\.js +# ||360-bo.com/js/float.js (easylistchina.txt: 1590) +.360-bo.com/js/float\.js +# ||356ys.com/template/tieniudy/images/g_js/ (easylistchina.txt: 1589) +.356ys.com/template/tieniudy/images/g_js/ +# ||3520.cc/js/3520/ (easylistchina.txt: 1588) +.3520.cc/js/3520/ +# ||3464.com/Script/RightWindows.js (easylistchina.txt: 1587) +.3464.com/Script/RightWindows\.js +# ||33xs.com/js/mg (easylistchina.txt: 1586) +.33xs.com/js/mg +# ||33xs.com/js/g (easylistchina.txt: 1585) +.33xs.com/js/g +# ||33xs.com/js/d.js (easylistchina.txt: 1584) +.33xs.com/js/d\.js +# ||33xs.com/hot/ (easylistchina.txt: 1583) +.33xs.com/hot/ +# ||33lc.com/lvcha/jquery.gotop.js (easylistchina.txt: 1582) +.33lc.com/lvcha/jquery\.gotop\.js +# ||33av.net/Uploads/ad/ (easylistchina.txt: 1581) +.33av.net/Uploads/ad/ +# ||3399.com/Common/OnlineServer.html (easylistchina.txt: 1580) +.3399.com/Common/OnlineServer\.html +# ||3399.com/act/fk/ (easylistchina.txt: 1579) +.3399.com/act/fk/ +# ||3399.com/act/5599/js/kuang (easylistchina.txt: 1578) +.3399.com/act/5599/js/kuang +# ||33.autoimg.cn/t/Adhtmlnet/*.swf (easylistchina.txt: 1577) +.33.autoimg.cn/t/Adhtmlnet/.*\.swf +# ||33.autoimg.cn/t/Adhtmlnet/*.jpg (easylistchina.txt: 1576) +.33.autoimg.cn/t/Adhtmlnet/.*\.jpg +# ||33.autoimg.cn/homeurl/*.js (easylistchina.txt: 1575) +.33.autoimg.cn/homeurl/.*\.js +# ||32666.com/img/ (easylistchina.txt: 1573) +.32666.com/img/ +# ||32666.com/ads/ (easylistchina.txt: 1572) +.32666.com/ads/ +# ||324324.cn/zz/ (easylistchina.txt: 1571) +.324324.cn/zz/ +# ||3199.cn/ggs_ (easylistchina.txt: 1570) +.3199.cn/ggs_ +# ||315che.com/upload_img/aimg/ (easylistchina.txt: 1569) +.315che.com/upload_img/aimg/ +# ||315che.com/addata/ (easylistchina.txt: 1568) +.315che.com/addata/ +# ||3155.com/js/ifile (easylistchina.txt: 1567) +.3155.com/js/ifile +# ||310v.com/js/f2.js.js (easylistchina.txt: 1566) +.310v.com/js/f2\.js\.js +# ||310v.com/images/wap_520x60.gif (easylistchina.txt: 1565) +.310v.com/images/wap_520x60\.gif +# ||310v.com/images/tmp_adpic (easylistchina.txt: 1564) +.310v.com/images/tmp_adpic +# ||310v.com/images/lingdai.gif (easylistchina.txt: 1563) +.310v.com/images/lingdai\.gif +# ||310v.com/adh.js (easylistchina.txt: 1562) +.310v.com/adh\.js +# ||2zzt.com/images/ (easylistchina.txt: 1561) +.2zzt.com/images/ +# ||2ujj.com/js/bo.js (easylistchina.txt: 1560) +.2ujj.com/js/bo\.js +# ||2u.com.cn/js/2012_movie.js (easylistchina.txt: 1559) +.2u.com.cn/js/2012_movie\.js +# ||2u-img.com.cn/modules/38_module_images/4747.jpg (easylistchina.txt: 1558) +.2u-img.com.cn/modules/38_module_images/4747\.jpg +# ||2muslim.com/data/attachment/portal/ (easylistchina.txt: 1557) +.2muslim.com/data/attachment/portal/ +# ||2chcn.com/img/3171150.jpg (easylistchina.txt: 1556) +.2chcn.com/img/3171150\.jpg +# ||2chcn.com/img/*336x280 (easylistchina.txt: 1555) +.2chcn.com/img/.*336x280 +# ||2ccc.com/images/WebXone.gif (easylistchina.txt: 1554) +.2ccc.com/images/WebXone\.gif +# ||2ccc.com/images/sino.gif (easylistchina.txt: 1553) +.2ccc.com/images/sino\.gif +# ||2ccc.com/images/show/ (easylistchina.txt: 1552) +.2ccc.com/images/show/ +# ||2btu.com/gg.jpg (easylistchina.txt: 1551) +.2btu.com/gg\.jpg +# ||28hse.com/adsman/www/images/ (easylistchina.txt: 1550) +.28hse.com/adsman/www/images/ +# ||27.255.67.120^ (easylistchina.txt: 1549) +.27.255.67.120 +# ||268de.com/js/ (easylistchina.txt: 1548) +.268de.com/js/ +# ||265.com/static/pages/img/*_ads. (easylistchina.txt: 1547) +.265.com/static/pages/img/.*_ads\. +# ||25xz.com/degeye.gif (easylistchina.txt: 1546) +.25xz.com/degeye\.gif +# ||25xz.com/ads/ (easylistchina.txt: 1545) +.25xz.com/ads/ +# ||258zb.com/jsData/users.aspx (easylistchina.txt: 1544) +.258zb.com/jsData/users\.aspx +# ||2500sz.com^*/655x60. (easylistchina.txt: 1543) +.2500sz.com/.*/655x60\. +# ||2500sz.com/site/ (easylistchina.txt: 1542) +.2500sz.com/site/ +# ||2500sz.com/ad20 (easylistchina.txt: 1541) +.2500sz.com/ad20 +# ||23zw.com/sda/mediav.html (easylistchina.txt: 1540) +.23zw.com/sda/mediav\.html +# ||23youku.com/Runtime/js/ (easylistchina.txt: 1539) +.23youku.com/Runtime/js/ +# ||23wx.com/scripts/style_tan.js (easylistchina.txt: 1538) +.23wx.com/scripts/style_tan\.js +# ||2345.com/xiaoimg/swf/flash/ (easylistchina.txt: 1536) +.2345.com/xiaoimg/swf/flash/ +# ||2345.com/right/site/like/gul_default.js (easylistchina.txt: 1535) +.2345.com/right/site/like/gul_default\.js +# ||2345.com/images/tgPic/gameTmp- (easylistchina.txt: 1533) +.2345.com/images/tgPic/gameTmp- +# ||2345.com/duoteimg/duotehtml/ (easylistchina.txt: 1532) +.2345.com/duoteimg/duotehtml/ +# ||2345.com/dianyingimg/tv/ivy/taobao/ (easylistchina.txt: 1531) +.2345.com/dianyingimg/tv/ivy/taobao/ +# ||2345.com/dianyingimg/ads/ (easylistchina.txt: 1530) +.2345.com/dianyingimg/ads/ +# ||2345.com/data/part/part_*_bottom (easylistchina.txt: 1529) +.2345.com/data/part/part_.*_bottom +# ||2345.com/data/part/part_*_bann (easylistchina.txt: 1528) +.2345.com/data/part/part_.*_bann +# ||2300sjz.com/liv_loadfile/folder81/fold (easylistchina.txt: 1527) +.2300sjz.com/liv_loadfile/folder81/fold +# ||22mt.la/bookpic/00*.jpg (easylistchina.txt: 1526) +.22mt.la/bookpic/00.*\.jpg +# ||2258.com/new_static/*/ad/ (easylistchina.txt: 1525) +.2258.com/new_static/.*/ad/ +# ||2233777.com/bak/ad/ (easylistchina.txt: 1524) +.2233777.com/bak/ad/ +# ||222.47.26.21/m.js (easylistchina.txt: 1523) +.222.47.26.21/m\.js +# ||222.45.224.77^*.js (easylistchina.txt: 1522) +.222.45.224.77/.*\.js +# ||222.33.59.55/show.js (easylistchina.txt: 1521) +.222.33.59.55/show\.js +# ||221.5.69.52^*.js (easylistchina.txt: 1520) +.221.5.69.52/.*\.js +# ||2200book.com/themes/v2/images/frxz_tonglan.gif (easylistchina.txt: 1519) +.2200book.com/themes/v2/images/frxz_tonglan\.gif +# ||2200book.com/configs/article/pagebottom1yc.js (easylistchina.txt: 1518) +.2200book.com/configs/article/pagebottom1yc\.js +# ||21yq.com/mg/21yq/ (easylistchina.txt: 1517) +.21yq.com/mg/21yq/ +# ||21uscity.com/zonelist.php (easylistchina.txt: 1516) +.21uscity.com/zonelist\.php +# ||21edu8.com/js/mymoney/ (easylistchina.txt: 1515) +.21edu8.com/js/mymoney/ +# ||21cnimg.com/zt/she/2015/shetext/she.jpg (easylistchina.txt: 1514) +.21cnimg.com/zt/she/2015/shetext/she\.jpg +# ||219.238.159.182^*.html (easylistchina.txt: 1513) +.219.238.159.182/.*\.html +# ||219.238.159.181^*.html (easylistchina.txt: 1512) +.219.238.159.181/.*\.html +# ||219.153.41.175/*.js (easylistchina.txt: 1511) +.219.153.41.175/.*\.js +# ||219.153.41.154/v1/ (easylistchina.txt: 1510) +.219.153.41.154/v1/ +# ||21394.com/weizi.js (easylistchina.txt: 1509) +.21394.com/weizi\.js +# ||211600.com/images/portal/ (easylistchina.txt: 1508) +.211600.com/images/portal/ +# ||211600.com/data/attachment/portal/ (easylistchina.txt: 1507) +.211600.com/data/attachment/portal/ +# ||204.12.228.236^*.png (easylistchina.txt: 1506) +.204.12.228.236/.*\.png +# ||204.12.228.235^*.png (easylistchina.txt: 1505) +.204.12.228.235/.*\.png +# ||201*.myhard.com^ (easylistchina.txt: 1504) +.201*./.*\.myhard\.com[^\w%.-] +.201*.myhard.com +# ||201*.073img.com^ (easylistchina.txt: 1503) +.201*./.*\.073img\.com[^\w%.-] +.201*.073img.com +# ||2008xxx.com:888 (easylistchina.txt: 1502) +.2008xxx.com:888*. +# ||1pad.cn/ahead/01.gif (easylistchina.txt: 1501) +.1pad.cn/ahead/01\.gif +# ||1m1m.cn/bar/ (easylistchina.txt: 1500) +.1m1m.cn/bar/ +# ||1kejian.com/js/topA.js (easylistchina.txt: 1499) +.1kejian.com/js/topA\.js +# ||1fun.com.hk/bb/189X180B.swf (easylistchina.txt: 1498) +.1fun.com.hk/bb/189X180B\.swf +# ||1dot.cn/spider/1dotAd.php (easylistchina.txt: 1497) +.1dot.cn/spider/1dotAd\.php +# ||19iiii.info/js/tonglan.js (easylistchina.txt: 1496) +.19iiii.info/js/tonglan\.js +# ||19iiii.info/js/foot.js (easylistchina.txt: 1495) +.19iiii.info/js/foot\.js +# ||19iiii.info/js/dl.js (easylistchina.txt: 1494) +.19iiii.info/js/dl\.js +# ||19iiii.info/js/dingbu.js (easylistchina.txt: 1493) +.19iiii.info/js/dingbu\.js +# ||198zone.com/images/*noad.jpg (easylistchina.txt: 1492) +.198zone.com/images/.*noad\.jpg +# ||198.40.56.242/ad/ (easylistchina.txt: 1491) +.198.40.56.242/ad/ +# ||198.40.52.11^ (easylistchina.txt: 1490) +.198.40.52.11 +# ||192.74.239.161/ad960.js (easylistchina.txt: 1489) +.192.74.239.161/ad960\.js +# ||18avday.*/aa/ (easylistchina.txt: 1488) +.18avday.*./(.*/)?aa/ +# ||189so.cn/pop.html (easylistchina.txt: 1486) +.189so.cn/pop\.html +# ||189so.cn/images/qz270x280.jpg (easylistchina.txt: 1485) +.189so.cn/images/qz270x280\.jpg +# ||189so.cn/images/960x60 (easylistchina.txt: 1484) +.189so.cn/images/960x60 +# ||189.cn/dns/ (easylistchina.txt: 1483) +.189.cn/dns/ +# ||18888.com^*/Mon_*.gif (easylistchina.txt: 1482) +.18888.com/.*/Mon_.*\.gif +# ||183yf.cn/img/nz.png (easylistchina.txt: 1481) +.183yf.cn/img/nz\.png +# ||183.136.168.78:8082/ad/ (easylistchina.txt: 1480) +.183.136.168.78:8082/ad/ +# ||182.92.234.239^*.html (easylistchina.txt: 1479) +.182.92.234.239/.*\.html +# ||180.96.27.85^*.htm (easylistchina.txt: 1478) +.180.96.27.85/.*\.htm +# ||17yy.com/style/ifra_ad/ (easylistchina.txt: 1477) +.17yy.com/style/ifra_ad/ +# ||17ok.com/focus/images/wenchouxiangmu.gif (easylistchina.txt: 1476) +.17ok.com/focus/images/wenchouxiangmu\.gif +# ||17ok.com/focus/3j_right_jdt.shtml (easylistchina.txt: 1475) +.17ok.com/focus/3j_right_jdt\.shtml +# ||17kqw.com/*.gif (easylistchina.txt: 1474) +.17kqw.com/.*\.gif +# ||17kk.cc/scriptAD/ (easylistchina.txt: 1473) +.17kk.cc/scriptAD/ +# ||17huohu.com/img/skin/qnh/ (easylistchina.txt: 1472) +.17huohu.com/img/skin/qnh/ +# ||17dm.com/s/common/js/*AD.js (easylistchina.txt: 1471) +.17dm.com/s/common/js/.*AD\.js +# ||17ce.com/118/t_banner.html (easylistchina.txt: 1470) +.17ce.com/118/t_banner\.html +# ||178.com/glr.js (easylistchina.txt: 1469) +.178.com/glr\.js +# ||178.com/dota/201409/205976017190/205976025825.jpg (easylistchina.txt: 1468) +.178.com/dota/201409/205976017190/205976025825\.jpg +# ||17558.net/youdiancms.gif (easylistchina.txt: 1467) +.17558.net/youdiancms\.gif +# ||17558.net/daozeiyuanma1.gif (easylistchina.txt: 1466) +.17558.net/daozeiyuanma1\.gif +# ||174.123.15.43:8080 (easylistchina.txt: 1465) +.174.123.15.43:8080*. +# ||173kt.com/images/ad (easylistchina.txt: 1464) +.173kt.com/images/ad +# ||173kt.com/ads/ (easylistchina.txt: 1463) +.173kt.com/ads/ +# ||173.255.143.197^*.png (easylistchina.txt: 1462) +.173.255.143.197/.*\.png +# ||173.208.177.227^*.gif (easylistchina.txt: 1460) +.173.208.177.227/.*\.gif +# ||173.208.177.227/tool/xuanfusige.js (easylistchina.txt: 1459) +.173.208.177.227/tool/xuanfusige\.js +# ||172.15.2.28:3438/*.js (easylistchina.txt: 1458) +.172.15.2.28:3438/.*\.js +# ||17173cdn.com^*/flash/OnLineTime.swf (easylistchina.txt: 1457) +.17173cdn.com/.*/flash/OnLineTime\.swf +# ||17173cdn.com/js/play/page/pThridPlayerAd.js (easylistchina.txt: 1456) +.17173cdn.com/js/play/page/pThridPlayerAd\.js +# ||17173cdn.com/css/live/business (easylistchina.txt: 1455) +.17173cdn.com/css/live/business +# ||17173cdn.com/a/www/index/*/js/ggcommon (easylistchina.txt: 1454) +.17173cdn.com/a/www/index/.*/js/ggcommon +# ||17173cdn.com/a/lib/vda/seed.js (easylistchina.txt: 1453) +.17173cdn.com/a/lib/vda/seed\.js +# ||17173.com/new/ (easylistchina.txt: 1452) +.17173.com/new/ +# ||17173.com/if/ (easylistchina.txt: 1451) +.17173.com/if/ +# ||17173.com/bd/ifm/allyes/ (easylistchina.txt: 1450) +.17173.com/bd/ifm/allyes/ +# ||17173.com/advideo/ (easylistchina.txt: 1449) +.17173.com/advideo/ +# ||17173.com/2013/new/channel-float.js (easylistchina.txt: 1448) +.17173.com/2013/new/channel-float\.js +# ||16sucai.com/images/46060_ (easylistchina.txt: 1447) +.16sucai.com/images/46060_ +# ||16sucai.com/ads/ (easylistchina.txt: 1446) +.16sucai.com/ads/ +# ||168gamer.com/static/js/cpa.js (easylistchina.txt: 1445) +.168gamer.com/static/js/cpa\.js +# ||168gamer.com/plugin.php?id=cstdio_ads: (easylistchina.txt: 1444) +.168gamer.com/plugin\.php\?id=cstdio_ads: +# ||168gamer.com/apii.php?mod=js&bid= (easylistchina.txt: 1443) +.168gamer.com/apii\.php\?mod=js&bid= +# ||16888.com/ajax/loadcardata.php (easylistchina.txt: 1442) +.16888.com/ajax/loadcardata\.php +# ||1688.com.au/site1/1688ad/ (easylistchina.txt: 1441) +.1688.com.au/site1/1688ad/ +# ||1684.cc/js/1684/ (easylistchina.txt: 1440) +.1684.cc/js/1684/ +# ||1677.net/js/gb*.js (easylistchina.txt: 1438) +.1677.net/js/gb.*\.js +# ||1677.net/js/cad*.js (easylistchina.txt: 1437) +.1677.net/js/cad.*\.js +# ||1677.net/js/ad*.js (easylistchina.txt: 1436) +.1677.net/js/ad.*\.js +# ||163disk.com/static/www/ (easylistchina.txt: 1435) +.163disk.com/static/www/ +# ||163disk.com/static/images/tu.gif (easylistchina.txt: 1434) +.163disk.com/static/images/tu\.gif +# ||163disk.com/static/images/DING.gif (easylistchina.txt: 1433) +.163disk.com/static/images/DING\.gif +# ||163disk.com/pic/960x90- (easylistchina.txt: 1432) +.163disk.com/pic/960x90- +# ||163.com/special/*_taobao. (easylistchina.txt: 1431) +.163.com/special/.*_taobao\. +# ||163.com/special/*_ad_ (easylistchina.txt: 1430) +.163.com/special/.*_ad_ +# ||163.com/special/*/topbg.js (easylistchina.txt: 1429) +.163.com/special/.*/topbg\.js +# ||163.com/special/*/tonglan1.js (easylistchina.txt: 1428) +.163.com/special/.*/tonglan1\.js +# ||163.com/special/*/ted_vad. (easylistchina.txt: 1427) +.163.com/special/.*/ted_vad\. +# ||163.com/special/*/scroolAd (easylistchina.txt: 1426) +.163.com/special/.*/scroolAd +# ||163.com/special/*/beitou.js (easylistchina.txt: 1425) +.163.com/special/.*/beitou\.js +# ||163.com/special/*/ace_downbig.js (easylistchina.txt: 1424) +.163.com/special/.*/ace_downbig\.js +# ||163.com/get.do?*=themeHandler. (easylistchina.txt: 1422) +.163.com/get\.do\?.*=themeHandler\. +# ||162wp.com/ipc/11.gif (easylistchina.txt: 1421) +.162wp.com/ipc/11\.gif +# ||162wp.com/e/data/images/pixviewer.swf (easylistchina.txt: 1420) +.162wp.com/e/data/images/pixviewer\.swf +# ||1616.net/jd/i_ (easylistchina.txt: 1419) +.1616.net/jd/i_ +# ||1616.net/jd/data/index/indexad.json (easylistchina.txt: 1418) +.1616.net/jd/data/index/indexad\.json +# ||15w.com/pages/adlive. (easylistchina.txt: 1417) +.15w.com/pages/adlive\. +# ||15w.com/flash/ (easylistchina.txt: 1416) +.15w.com/flash/ +# ||15w.com/call/webjs/60.js (easylistchina.txt: 1415) +.15w.com/call/webjs/60\.js +# ||1518.com/ss/ (easylistchina.txt: 1414) +.1518.com/ss/ +# ||141h.com/data/attachment/noblock/cf/ (easylistchina.txt: 1413) +.141h.com/data/attachment/noblock/cf/ +# ||1382014.co/980X45.gif (easylistchina.txt: 1412) +.1382014.co/980X45\.gif +# ||135qp.com/sjzswf/banner.swf (easylistchina.txt: 1411) +.135qp.com/sjzswf/banner\.swf +# ||133uu.com/html/ (easylistchina.txt: 1410) +.133uu.com/html/ +# ||131458.com/union/ (easylistchina.txt: 1409) +.131458.com/union/ +# ||131.com/test2/2014/09/04/201409041715356f5.jpg (easylistchina.txt: 1408) +.131.com/test2/2014/09/04/201409041715356f5\.jpg +# ||131.com/home/resouces/js/ (easylistchina.txt: 1406) +.131.com/home/resouces/js/ +# ||131.com/common/alertwindow.html (easylistchina.txt: 1405) +.131.com/common/alertwindow\.html +# ||127.net/m/*/promPic.jpg (easylistchina.txt: 1404) +.127.net/m/.*/promPic\.jpg +# ||127.net/external/js6promote (easylistchina.txt: 1403) +.127.net/external/js6promote +# ||126xz.com/www/all_guanggao.js (easylistchina.txt: 1402) +.126xz.com/www/all_guanggao\.js +# ||126disk.com/templates/mobile/2345t.png (easylistchina.txt: 1401) +.126disk.com/templates/mobile/2345t\.png +# ||126.net/house/sjz/xt/ (easylistchina.txt: 1400) +.126.net/house/sjz/xt/ +# ||126.net/house/sjz/flash/ (easylistchina.txt: 1399) +.126.net/house/sjz/flash/ +# ||126.net/house/sjz/*96070 (easylistchina.txt: 1398) +.126.net/house/sjz/.*96070 +# ||126.net/house/hrb/js/ (easylistchina.txt: 1397) +.126.net/house/hrb/js/ +# ||126.net/house/hrb/flash/*X (easylistchina.txt: 1396) +.126.net/house/hrb/flash/.*X +# ||126.net/house/hangzhou/ad/ (easylistchina.txt: 1395) +.126.net/house/hangzhou/ad/ +# ||126.net/house/chengdu/flash/*+ (easylistchina.txt: 1394) +.126.net/house/chengdu/flash/.*\+ +# ||126.com/get.do?*=themeHandler. (easylistchina.txt: 1393) +.126.com/get\.do\?.*=themeHandler\. +# ||125.46.61.28^ (easylistchina.txt: 1392) +.125.46.61.28 +# ||123cha.com/2568 (easylistchina.txt: 1391) +.123cha.com/2568 +# ||123564.com/js/plaza.js (easylistchina.txt: 1390) +.123564.com/js/plaza\.js +# ||123.sogou.com/nstatic/img/jiao.swf (easylistchina.txt: 1389) +.123.sogou.com/nstatic/img/jiao\.swf +# ||122.228.236.165^ (easylistchina.txt: 1388) +.122.228.236.165 +# ||122.225.103.*.htm (easylistchina.txt: 1387) +.122.225.103.*./.*\.htm +.122.225.103.*.htm*. +# ||121down.com/img/*.js (easylistchina.txt: 1385) +.121down.com/img/.*\.js +# ||121.41.60.207/m?t= (easylistchina.txt: 1384) +.121.41.60.207/m\?t= +# ||121.40.136.114^*.htm (easylistchina.txt: 1383) +.121.40.136.114/.*\.htm +# ||120bo.com/ggimg/ (easylistchina.txt: 1382) +.120bo.com/ggimg/ +# ||120askimages.com/ask/js/*x.js (easylistchina.txt: 1381) +.120askimages.com/ask/js/.*x\.js +# ||120.27.34.156^ (easylistchina.txt: 1380) +.120.27.34.156 +# ||11hhww.com/java/xia1.js (easylistchina.txt: 1379) +.11hhww.com/java/xia1\.js +# ||11hhww.com/java/shang1.js (easylistchina.txt: 1378) +.11hhww.com/java/shang1\.js +# ||11hhww.com/java/cpm (easylistchina.txt: 1377) +.11hhww.com/java/cpm +# ||119g.com/fanwan1/dibubanner.js (easylistchina.txt: 1375) +.119g.com/fanwan1/dibubanner\.js +# ||119g.com/fanwan/ (easylistchina.txt: 1374) +.119g.com/fanwan/ +# ||119.167.73.60/m_code/ (easylistchina.txt: 1373) +.119.167.73.60/m_code/ +# ||115mm.com/js/ (easylistchina.txt: 1372) +.115mm.com/js/ +# ||115img.com/static/pc/d_127.html (easylistchina.txt: 1371) +.115img.com/static/pc/d_127\.html +# ||115.29.141.121:8086/js/wp.js (easylistchina.txt: 1369) +.115.29.141.121:8086/js/wp\.js +# ||115.28.6.94:8090/js/s (easylistchina.txt: 1368) +.115.28.6.94:8090/js/s +# ||115.28.114.149^*_proxy. (easylistchina.txt: 1367) +.115.28.114.149/.*_proxy\. +# ||114so.cn/js/nm*.js (easylistchina.txt: 1365) +.114so.cn/js/nm.*\.js +# ||114fw.com/dagg/ (easylistchina.txt: 1364) +.114fw.com/dagg/ +# ||113.17.188.44/*.js (easylistchina.txt: 1363) +.113.17.188.44/.*\.js +# ||112.126.66.58^*?mid= (easylistchina.txt: 1362) +.112.126.66.58/.*\?mid= +# ||111cn.net/v8/fun.js (easylistchina.txt: 1361) +.111cn.net/v8/fun\.js +# ||111cn.net/js/v8/page_ (easylistchina.txt: 1360) +.111cn.net/js/v8/page_ +# ||111cn.net/js/v8/body (easylistchina.txt: 1359) +.111cn.net/js/v8/body +# ||111cn.net/js/v8/art_ (easylistchina.txt: 1358) +.111cn.net/js/v8/art_ +# ||111cn.net/js/downc*.js (easylistchina.txt: 1357) +.111cn.net/js/downc.*\.js +# ||111cn.net/images/v8/vip.jpg (easylistchina.txt: 1356) +.111cn.net/images/v8/vip\.jpg +# ||111cn.net/gg_ad/ (easylistchina.txt: 1355) +.111cn.net/gg_ad/ +# ||11.mydrivers.com/news/google468x60.js (easylistchina.txt: 1354) +.11.mydrivers.com/news/google468x60\.js +# ||11.mydrivers.com/news/03.js (easylistchina.txt: 1353) +.11.mydrivers.com/news/03\.js +# ||11.mydrivers.com/myfiles/myfiles100*.js (easylistchina.txt: 1352) +.11.mydrivers.com/myfiles/myfiles100.*\.js +# ||11.mydrivers.com/myfiles/0*.js (easylistchina.txt: 1351) +.11.mydrivers.com/myfiles/0.*\.js +# ||11.mydrivers.com/drivers/ (easylistchina.txt: 1350) +.11.mydrivers.com/drivers/ +# ||10yan.com/mmm/ (easylistchina.txt: 1349) +.10yan.com/mmm/ +# ||10pan.cc/rili.gif (easylistchina.txt: 1348) +.10pan.cc/rili\.gif +# ||10pan.*/adblockTester/ (easylistchina.txt: 1347) +.10pan.*./(.*/)?adblockTester/ +# ||10jqka.com.cn/public/stock/red.html? (easylistchina.txt: 1346) +.10jqka.com.cn/public/stock/red\.html\? +# ||1080pba.com/templets/default/images/8.gif (easylistchina.txt: 1345) +.1080pba.com/templets/default/images/8\.gif +# ||1080pba.com/templets/default/images/4.gif (easylistchina.txt: 1344) +.1080pba.com/templets/default/images/4\.gif +# ||1080pba.com/templets/default/images/3.gif (easylistchina.txt: 1343) +.1080pba.com/templets/default/images/3\.gif +# ||1080pba.com/templets/default/images/2.gif (easylistchina.txt: 1342) +.1080pba.com/templets/default/images/2\.gif +# ||1080pba.com/templets/default/images/1.gif (easylistchina.txt: 1341) +.1080pba.com/templets/default/images/1\.gif +# ||1080pba.com/templets/default/images/02.gif (easylistchina.txt: 1340) +.1080pba.com/templets/default/images/02\.gif +# ||108.171.248.234^ (easylistchina.txt: 1339) +.108.171.248.234 +# ||107.182.131.103/cache/?q=/images/ (easylistchina.txt: 1338) +.107.182.131.103/cache/\?q=/images/ +# ||106.184.7.176/shuang11/ (easylistchina.txt: 1337) +.106.184.7.176/shuang11/ +# ||103.225.198.230:8080/index.html (easylistchina.txt: 1336) +.103.225.198.230:8080/index\.html +# ||102tv.cn/js/index_*.js (easylistchina.txt: 1335) +.102tv.cn/js/index_.*\.js +# ||102tv.cn/js/desktop.js (easylistchina.txt: 1334) +.102tv.cn/js/desktop\.js +# ||102tv.cn/js/ad*.js (easylistchina.txt: 1333) +.102tv.cn/js/ad.*\.js +# ||101.78.195.135/js/ (easylistchina.txt: 1332) +.101.78.195.135/js/ +# ||100ksw.com/ksbd/ksbdparad.js (easylistchina.txt: 1331) +.100ksw.com/ksbd/ksbdparad\.js +# ||100ksw.com/include/ksbdfd.js (easylistchina.txt: 1330) +.100ksw.com/include/ksbdfd\.js +# ||10000sb.com/4gbct.js (easylistchina.txt: 1329) +.10000sb.com/4gbct\.js +# ||0dian8.org/data/js/ (easylistchina.txt: 1328) +.0dian8.org/data/js/ +# ||07908.com/images/ (easylistchina.txt: 1327) +.07908.com/images/ +# ||0772fang.com/assets/js/Newhouse/inserAds.js (easylistchina.txt: 1326) +.0772fang.com/assets/js/Newhouse/inserAds\.js +# ||0772fang.com/assets/js/imgorflash.js (easylistchina.txt: 1325) +.0772fang.com/assets/js/imgorflash\.js +# ||076299.cn/images/flash/20 (easylistchina.txt: 1324) +.076299.cn/images/flash/20 +# ||0758net.com/data/attachment/portal/ (easylistchina.txt: 1323) +.0758net.com/data/attachment/portal/ +# ||0756.la/ad-htm/ (easylistchina.txt: 1322) +.0756.la/ad-htm/ +# ||073img.com^*/rich.js (easylistchina.txt: 1321) +.073img.com/.*/rich\.js +# ||0668gz.com/data/attachment/portal/ (easylistchina.txt: 1320) +.0668gz.com/data/attachment/portal/ +# ||060s.com/my_ad/ (easylistchina.txt: 1319) +.060s.com/my_ad/ +# ||05sun.com/js/downinfo.js (easylistchina.txt: 1318) +.05sun.com/js/downinfo\.js +# ||05sun.com/js/comm.js (easylistchina.txt: 1317) +.05sun.com/js/comm\.js +# ||0597ok.com/ilike/597/ (easylistchina.txt: 1316) +.0597ok.com/ilike/597/ +# ||0597kk.com/js/float.js (easylistchina.txt: 1315) +.0597kk.com/js/float\.js +# ||0579.cn/SHow/Showplacenew.aspx (easylistchina.txt: 1314) +.0579.cn/SHow/Showplacenew\.aspx +# ||0579.cn/images/bg.gif (easylistchina.txt: 1313) +.0579.cn/images/bg\.gif +# ||0575bbs.com/updateimeags/ (easylistchina.txt: 1312) +.0575bbs.com/updateimeags/ +# ||0575bbs.com/js/float.js (easylistchina.txt: 1311) +.0575bbs.com/js/float\.js +# ||0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph.gif (easylistchina.txt: 1310) +.0517w.com/data/attachment/portal/201503/24/224451ru3pp3pbuu15ucph\.gif +# ||05096.com/jsdoc/ad.html (easylistchina.txt: 1309) +.05096.com/jsdoc/ad\.html +# ||0471.so/Public/config/Couplet/Index (easylistchina.txt: 1308) +.0471.so/Public/config/Couplet/Index +# ||0460.com/js/txtrec.js (easylistchina.txt: 1307) +.0460.com/js/txtrec\.js +# ||0460.com/images/banner/ (easylistchina.txt: 1306) +.0460.com/images/banner/ +# ||0452e.com/js/float.js (easylistchina.txt: 1305) +.0452e.com/js/float\.js +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=zhuangx (easylistchina.txt: 1304) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=zhuangx +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=topslide (easylistchina.txt: 1303) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=topslide +# ||0439.com/wtj/homepage/handler/guangg.ashx?ut=classify (easylistchina.txt: 1302) +.0439.com/wtj/homepage/handler/guangg\.ashx\?ut=classify +# ||0439.com/html/js/tuiguang.js (easylistchina.txt: 1301) +.0439.com/html/js/tuiguang\.js +# ||0439.com/html/js/ad_r_300x220.js (easylistchina.txt: 1300) +.0439.com/html/js/ad_r_300x220\.js +# ||03jd.cn/data/attachment/portal/ (easylistchina.txt: 1299) +.03jd.cn/data/attachment/portal/ +# ||0379home.com/images/fullscreen_ (easylistchina.txt: 1298) +.0379home.com/images/fullscreen_ +# ||0379home.com/2014/js/beside.js (easylistchina.txt: 1297) +.0379home.com/2014/js/beside\.js +# ||0379home.com/2014/js/ad_pic.js (easylistchina.txt: 1296) +.0379home.com/2014/js/ad_pic\.js +# ||027down.com/images/banner760-60.gif (easylistchina.txt: 1295) +.027down.com/images/banner760-60\.gif +# ||022net.com/main/browse_yme.js (easylistchina.txt: 1294) +.022net.com/main/browse_yme\.js +# ||022net.com/js/mhtml/phtml07.html (easylistchina.txt: 1293) +.022net.com/js/mhtml/phtml07\.html +# ||022net.com/js/mhtml/phtml04.html (easylistchina.txt: 1292) +.022net.com/js/mhtml/phtml04\.html +# ||022net.com/js/mhtml/phtml03.html (easylistchina.txt: 1291) +.022net.com/js/mhtml/phtml03\.html +# ||021wudi.com/admguan- (easylistchina.txt: 1290) +.021wudi.com/admguan- +# ||020.com/960_70 (easylistchina.txt: 1289) +.020.com/960_70 +# ||007.mx/flv/ (easylistchina.txt: 1288) +.007.mx/flv/ +# ||005.tv:60000/ad.js (easylistchina.txt: 1287) +.005.tv:60000/ad\.js +# ||005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm.jpg (easylistchina.txt: 1286) +.005.tv/data/attachment/forum/201511/24/161840xuimuuaq9sro1brm\.jpg +# ||00170017.net/Public/images/ (easylistchina.txt: 1284) +.00170017.net/Public/images/ +# ||00170017.net/Public/dzb_gg.js (easylistchina.txt: 1283) +.00170017.net/Public/dzb_gg\.js +# |http://www.i-ab.co/zz/ (easylistchina.txt: 1282) +www.i-ab.co/zz/ +# |http://*/ad_bj.js? (easylistchina.txt: 1274) +/(.*/)?ad_bj\.js\? +# |http://*.7m.cn/b/ (easylistchina.txt: 1272) +/.*\.7m\.cn/b/ +.*.7m.cn/b/ +# _yad_jsonp_ (easylistchina.txt: 1266) +/.*_yad_jsonp_ +# _vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1265) +/.*_vmind\.qqvideo\.tc\.qq\.com[^\w%.-] +# _!!1731999033. (easylistchina.txt: 1263) +/.*_!!1731999033\. +# ^zhuanqian/adall.js (easylistchina.txt: 1262) +/(.*[^\w%.-])?zhuanqian/adall\.js +# ?method=baidu.ting.commercial.tactics& (easylistchina.txt: 1261) +/.*\?method=baidu\.ting\.commercial\.tactics& +# :88/lighttpd/default/ (easylistchina.txt: 1260) +/.*:88/lighttpd/default/ +# /yythems/images/tuiguang.png (easylistchina.txt: 1259) +/(.*/)?yythems/images/tuiguang\.png +# /yythems/images/1213.gif (easylistchina.txt: 1258) +/(.*/)?yythems/images/1213\.gif +# /ysm/ewdna/* (easylistchina.txt: 1257) +/(.*/)?ysm/ewdna/.* +# /ysm.ezprice.net/* (easylistchina.txt: 1256) +/(.*/)?ysm\.ezprice\.net/.* +ysm.ezprice.net/.* +# /youxituoluo/images/text_top_ (easylistchina.txt: 1255) +/(.*/)?youxituoluo/images/text_top_ +# /xiao1234.com/ads/* (easylistchina.txt: 1251) +/(.*/)?xiao1234\.com/ads/.* +xiao1234.com/ads/.* +# /www.soft4fun.net/wp-content/uploads/*_banner (easylistchina.txt: 1248) +/(.*/)?www\.soft4fun\.net/wp-content/uploads/.*_banner +www.soft4fun.net/wp-content/uploads/.*_banner +# /www.kocpc.com.tw/wp-content/uploads/*.gif (easylistchina.txt: 1247) +/(.*/)?www\.kocpc\.com\.tw/wp-content/uploads/.*\.gif +www.kocpc.com.tw/wp-content/uploads/.*\.gif +# /wangyuedeux/imgs/youlian.png (easylistchina.txt: 1242) +/(.*/)?wangyuedeux/imgs/youlian\.png +# /wangyuedeux/imgs/wangzhuano.jpg (easylistchina.txt: 1241) +/(.*/)?wangyuedeux/imgs/wangzhuano\.jpg +# /vmind.qqvideo.tc.qq.com^ (easylistchina.txt: 1240) +/(.*/)?vmind\.qqvideo\.tc\.qq\.com[^\w%.-] +vmind.qqvideo.tc.qq.com +# /uniontgm.cmb. (easylistchina.txt: 1238) +/(.*/)?uniontgm\.cmb\. +uniontgm.cmb.*. +# /tonghuacun/skin/zxf/kan_hree.js (easylistchina.txt: 1236) +/(.*/)?tonghuacun/skin/zxf/kan_hree\.js +# /sznews/images/bbsgg (easylistchina.txt: 1233) +/(.*/)?sznews/images/bbsgg +# /static/btmeegg/* (easylistchina.txt: 1230) +/(.*/)?static/btmeegg/.* +# /sinaLoginReward2014_comment. (easylistchina.txt: 1227) +/(.*/)?sinaLoginReward2014_comment\. +# /sinaLoginReward2014. (easylistchina.txt: 1226) +/(.*/)?sinaLoginReward2014\. +sinaLoginReward2014.*. +# /sc_ifeng/* (easylistchina.txt: 1224) +/(.*/)?sc_ifeng/.* +# /opbb/obpp.tpl (easylistchina.txt: 1220) +/(.*/)?opbb/obpp\.tpl +# /opbb/float.js (easylistchina.txt: 1219) +/(.*/)?opbb/float\.js +# /nowscore/ad/* (easylistchina.txt: 1218) +/(.*/)?nowscore/ad/.* +# /nimabdd_1010/*baidu (easylistchina.txt: 1217) +/(.*/)?nimabdd_1010/.*baidu +# /newhuagg/index_ (easylistchina.txt: 1215) +/(.*/)?newhuagg/index_ +# /newhuagg/*_right (easylistchina.txt: 1214) +/(.*/)?newhuagg/.*_right +# /nddailyfile/webadv/* (easylistchina.txt: 1213) +/(.*/)?nddailyfile/webadv/.* +# /msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d.jpg (easylistchina.txt: 1211) +/(.*/)?msnportal/wp/2014/08/29/742784a6-b14f-420b-80cc-d6bd0be6b15d\.jpg +# /moneymaker/js/videoplayer.js (easylistchina.txt: 1210) +/(.*/)?moneymaker/js/videoplayer\.js +# /moneymaker/js/tmpp.js (easylistchina.txt: 1209) +/(.*/)?moneymaker/js/tmpp\.js +# /moneymaker/js/kppp.js (easylistchina.txt: 1208) +/(.*/)?moneymaker/js/kppp\.js +# /moneymaker/js/fkpp.js (easylistchina.txt: 1207) +/(.*/)?moneymaker/js/fkpp\.js +# /moneymaker/images/*.gif (easylistchina.txt: 1206) +/(.*/)?moneymaker/images/.*\.gif +# /modules/video/player/nuevo/midroll.php? (easylistchina.txt: 1205) +/(.*/)?modules/video/player/nuevo/midroll\.php\? +# /kocpc.myweb.hinet.net^ (easylistchina.txt: 1202) +/(.*/)?kocpc\.myweb\.hinet\.net[^\w%.-] +kocpc.myweb.hinet.net +# /images/amsun100.png (easylistchina.txt: 1182) +/(.*/)?images/amsun100\.png +# /ifengRotatorAd.js (easylistchina.txt: 1176) +/(.*/)?ifengRotatorAd\.js +ifengRotatorAd.js*. +# /html/taobao_focus_ (easylistchina.txt: 1175) +/(.*/)?html/taobao_focus_ +# /homead/*_appledaily_bg. (easylistchina.txt: 1173) +/(.*/)?homead/.*_appledaily_bg\. +# /gyw_index/*/images/ad_ (easylistchina.txt: 1172) +/(.*/)?gyw_index/.*/images/ad_ +# /game/aplus/pptv/* (easylistchina.txt: 1167) +/(.*/)?game/aplus/pptv/.* +# /front/adv/getpmadvlist (easylistchina.txt: 1166) +/(.*/)?front/adv/getpmadvlist +# /dhfun_ad/* (easylistchina.txt: 1163) +/(.*/)?dhfun_ad/.* +# /comiis_yccs/ads/* (easylistchina.txt: 1158) +/(.*/)?comiis_yccs/ads/.* +# /cari/daybanner/* (easylistchina.txt: 1157) +/(.*/)?cari/daybanner/.* +# /cari/banner/* (easylistchina.txt: 1156) +/(.*/)?cari/banner/.* +# /avshow_cn1.gif (easylistchina.txt: 1149) +/(.*/)?avshow_cn1\.gif +# /Atemplate/dd_1010/baidu (easylistchina.txt: 1146) +/(.*/)?Atemplate/dd_1010/baidu +# /Aemplate/dd_1010/baidu (easylistchina.txt: 1142) +/(.*/)?Aemplate/dd_1010/baidu +# /adscript/crazyad.js (easylistchina.txt: 1140) +/(.*/)?adscript/crazyad\.js +# /Addsa.dsj/Bsdd_1010/*Baidu (easylistchina.txt: 1139) +/(.*/)?Addsa\.dsj/Bsdd_1010/.*Baidu +Addsa.dsj/Bsdd_1010/.*Baidu +# /adcg/* (easylistchina.txt: 1138) +/(.*/)?adcg/.* +# /a83b3cdeacac5a503717469ca5084ebc. (easylistchina.txt: 1135) +/(.*/)?a83b3cdeacac5a503717469ca5084ebc\. +a83b3cdeacac5a503717469ca5084ebc.*. +# /934b2bc8de85e32ae7588f2eb955ee36. (easylistchina.txt: 1130) +/(.*/)?934b2bc8de85e32ae7588f2eb955ee36\. +934b2bc8de85e32ae7588f2eb955ee36.*. +# /52meiju_7 (easylistchina.txt: 1129) +/(.*/)?52meiju_7 +# /435f1c6f9f6b545254a00e426b9aeae1. (easylistchina.txt: 1128) +/(.*/)?435f1c6f9f6b545254a00e426b9aeae1\. +435f1c6f9f6b545254a00e426b9aeae1.*. +# /404.safedog.cn/sitedog_stat_new.html (easylistchina.txt: 1127) +/(.*/)?404\.safedog\.cn/sitedog_stat_new\.html +404.safedog.cn/sitedog_stat_new\.html +# /2tu/heisiwang.js (easylistchina.txt: 1126) +/(.*/)?2tu/heisiwang\.js +# /2tu/ads/* (easylistchina.txt: 1125) +/(.*/)?2tu/ads/.* +# /200804ad/* (easylistchina.txt: 1123) +/(.*/)?200804ad/.* +# /18touch-guanggao. (easylistchina.txt: 1122) +/(.*/)?18touch-guanggao\. +18touch-guanggao.*. +# /10jqka_info/html/ad_ (easylistchina.txt: 1121) +/(.*/)?10jqka_info/html/ad_ +# .niusnews.com/upload/banners/ (easylistchina.txt: 1120) +/.*\.niusnews\.com/upload/banners/ +.*.niusnews.com/upload/banners/ +# .adsame.libaclub.com^ (easylistchina.txt: 1113) +/.*\.adsame\.libaclub\.com[^\w%.-] +.*.adsame.libaclub.com +# .543evv.com/js/config.js (easylistchina.txt: 1112) +/.*\.543evv\.com/js/config\.js +.*.543evv.com/js/config\.js +# ||zhubajie.com/?fromcode=$popup (easylistchina.txt: 1110) +.zhubajie.com/\?fromcode= +# ||yy18.info/yyrethanks18.$popup (easylistchina.txt: 1109) +.yy18.info/yyrethanks18\. +# ||t-movies.com.tw/pop.asp$popup (easylistchina.txt: 1102) +.t-movies.com.tw/pop\.asp +# ||sohu.com/i/?pvid=$popup (easylistchina.txt: 1100) +.sohu.com/i/\?pvid= +# ||smartor.org/iclk/?zoneid=$popup (easylistchina.txt: 1099) +.smartor.org/iclk/\?zoneid= +# ||qidian.com/showavd.$popup (easylistchina.txt: 1098) +.qidian.com/showavd\. +# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina.txt: 1094) +.kuai.xunlei.com/do_e_mu\?data= +# ||jjwxc.net/jjad*.html$popup (easylistchina.txt: 1092) +.jjwxc.net/jjad.*\.html +# ||iqiyi.com/track$popup (easylistchina.txt: 1090) +.iqiyi.com/track +# ||ihualun.com^$popup (easylistchina.txt: 1089) +.ihualun.com +# ||hinet.net/product/promotion/$popup (easylistchina.txt: 1088) +.hinet.net/product/promotion/ +# ||greenet.cn^*_popu_$popup (easylistchina.txt: 1087) +.greenet.cn/.*_popu_ +# ||gamer.com.tw/adcounter.$popup (easylistchina.txt: 1081) +.gamer.com.tw/adcounter\. +# ||c.admaster.com.cn^$popup (easylistchina.txt: 1079) +.c.admaster.com.cn +# ||baidu.com/baidu.php?url=$popup (easylistchina.txt: 1078) +.baidu.com/baidu\.php\?url= +# ||baidu.com/adrc.$popup (easylistchina.txt: 1077) +.baidu.com/adrc\. +# ||ark.letv.com/t?$popup (easylistchina.txt: 1076) +.ark.letv.com/t\? +# ||aiwanma99.com^$popup (easylistchina.txt: 1075) +.aiwanma99.com +# ||ad.189so.cn^$popup (easylistchina.txt: 1074) +.ad.189so.cn +# ||9100300.com^$popup (easylistchina.txt: 1072) +.9100300.com +# ||133gp.com^$popup (easylistchina.txt: 1070) +.133gp.com +# /portalwlanad/pages/*$popup (easylistchina.txt: 1064) +/(.*/)?portalwlanad/pages/.* +# ||zp22938576.com^ (easylistchina.txt: 1053) +.zp22938576.com +# ||zgunion.cn^ (easylistchina.txt: 1050) +.zgunion.cn +# ||zgksb.com^ (easylistchina.txt: 1049) +.zgksb.com +# ||yyp17.com^ (easylistchina.txt: 1043) +.yyp17.com +# ||yule8.net^ (easylistchina.txt: 1040) +.yule8.net +# ||yqw88.com^ (easylistchina.txt: 1037) +.yqw88.com +# ||ymcqb.com^ (easylistchina.txt: 1030) +.ymcqb.com +# ||yk0712.com^ (easylistchina.txt: 1029) +.yk0712.com +# ||xzyituo.com^ (easylistchina.txt: 1021) +.xzyituo.com +# ||xxad.cc^ (easylistchina.txt: 1019) +.xxad.cc +# ||xtxa.net^ (easylistchina.txt: 1018) +.xtxa.net +# ||xhmrv.com^ (easylistchina.txt: 1015) +.xhmrv.com +# ||xcy8.com^ (easylistchina.txt: 1012) +.xcy8.com +# ||xchgx.com^ (easylistchina.txt: 1011) +.xchgx.com +# ||xabaitai.com^ (easylistchina.txt: 1009) +.xabaitai.com +# ||xa9t.com^ (easylistchina.txt: 1008) +.xa9t.com +# ||x9377a.com^ (easylistchina.txt: 1007) +.x9377a.com +# ||ws341.com^ (easylistchina.txt: 1005) +.ws341.com +# ||wqsph.net^ (easylistchina.txt: 1003) +.wqsph.net +# ||winvestern.com.cn^ (easylistchina.txt: 1000) +.winvestern.com.cn +# ||wdzsb.com.cn^ (easylistchina.txt: 995) +.wdzsb.com.cn +# ||w65p.com^ (easylistchina.txt: 994) +.w65p.com +# ||victorjx.com^ (easylistchina.txt: 990) +.victorjx.com +# ||v707070.com^ (easylistchina.txt: 987) +.v707070.com +# ||uoyrsd.com^ (easylistchina.txt: 984) +.uoyrsd.com +# ||ubmcmm.baidustatic.com^ (easylistchina.txt: 972) +.ubmcmm.baidustatic.com +# ||toourbb.com^ (easylistchina.txt: 958) +.toourbb.com +# ||tg.1155t.cn^ (easylistchina.txt: 956) +.tg.1155t.cn +# ||tdayi.com^ (easylistchina.txt: 954) +.tdayi.com +# ||tc600.com^ (easylistchina.txt: 953) +.tc600.com +# ||taobaoij.com: (easylistchina.txt: 950) +# ||tad.suning.com^ (easylistchina.txt: 946) +.tad.suning.com +# ||taat00889.com^ (easylistchina.txt: 945) +.taat00889.com +# ||t70123.com^ (easylistchina.txt: 943) +.t70123.com +# ||sunjianhao.com^ (easylistchina.txt: 940) +.sunjianhao.com +# ||sstc360.com^ (easylistchina.txt: 937) +.sstc360.com +# ||spcode.baidu.com^ (easylistchina.txt: 935) +.spcode.baidu.com +# ||socdm.com^ (easylistchina.txt: 932) +.socdm.com +# ||si9377.com^ (easylistchina.txt: 928) +.si9377.com +# ||show.kc.taotaosou.com^ (easylistchina.txt: 927) +.show.kc.taotaosou.com +# ||sharedaddomain.com^ (easylistchina.txt: 925) +.sharedaddomain.com +# ||sgbfjs.info^ (easylistchina.txt: 924) +.sgbfjs.info +# ||rwjfs.com^ (easylistchina.txt: 920) +.rwjfs.com +# ||ruxianke.com^ (easylistchina.txt: 919) +.ruxianke.com +# ||re.taotaosou.com^ (easylistchina.txt: 916) +.re.taotaosou.com +# ||qucaigg.com^ (easylistchina.txt: 914) +.qucaigg.com +# ||qiqiww.com^ (easylistchina.txt: 909) +.qiqiww.com +# ||pos.baidu.com^ (easylistchina.txt: 904) +.pos.baidu.com +# ||pdsjycm.com^ (easylistchina.txt: 903) +.pdsjycm.com +# ||p3tt.com^ (easylistchina.txt: 901) +.p3tt.com +# ||p0y.cn^*.swf (easylistchina.txt: 900) +.p0y.cn/.*\.swf +# ||okm918.com^ (easylistchina.txt: 896) +.okm918.com +# ||oikxlcv.wang^ (easylistchina.txt: 895) +.oikxlcv.wang +# ||notice.uchome.manyou.com^ (easylistchina.txt: 891) +.notice.uchome.manyou.com +# ||niuxgame77.com^ (easylistchina.txt: 889) +.niuxgame77.com +# ||nextcps.com^ (easylistchina.txt: 886) +.nextcps.com +# ||mscimg.com^ (easylistchina.txt: 880) +.mscimg.com +# ||moodoocrv.com.cn^ (easylistchina.txt: 878) +.moodoocrv.com.cn +# ||mlt01.com^ (easylistchina.txt: 876) +.mlt01.com +# ||mathads.com^ (easylistchina.txt: 870) +.mathads.com +# ||mainbx.com^ (easylistchina.txt: 868) +.mainbx.com +# ||lzmm8.com^ (easylistchina.txt: 867) +.lzmm8.com +# ||lishuanghao.com^ (easylistchina.txt: 863) +.lishuanghao.com +# ||le4le.com^ (easylistchina.txt: 859) +.le4le.com +# ||lajizhan.org^ (easylistchina.txt: 857) +.lajizhan.org +# ||ku9377.com^ (easylistchina.txt: 855) +.ku9377.com +# ||kmadou.com^ (easylistchina.txt: 853) +.kmadou.com +# ||kingwam.com^ (easylistchina.txt: 852) +.kingwam.com +# ||keyyou.net^ (easylistchina.txt: 850) +.keyyou.net +# ||jxjzny.com^ (easylistchina.txt: 843) +.jxjzny.com +# ||jwqj.net^ (easylistchina.txt: 842) +.jwqj.net +# ||johtzj.com^ (easylistchina.txt: 831) +.johtzj.com +# ||jnrsjm.com^ (easylistchina.txt: 829) +.jnrsjm.com +# ||jlssbz.com^ (easylistchina.txt: 828) +.jlssbz.com +# ||jk939.com^ (easylistchina.txt: 827) +.jk939.com +# ||jiyou2014.com^ (easylistchina.txt: 826) +.jiyou2014.com +# ||jhzl001.com^ (easylistchina.txt: 819) +.jhzl001.com +# ||jdlhg.com^ (easylistchina.txt: 818) +.jdlhg.com +# ||jczzjx.com^ (easylistchina.txt: 817) +.jczzjx.com +# ||img80.net^ (easylistchina.txt: 809) +.img80.net +# ||ihualun.com^ (easylistchina.txt: 807) +.ihualun.com +# ||i3818.com^ (easylistchina.txt: 802) +.i3818.com +# ||humanding.com^ (easylistchina.txt: 799) +.humanding.com +# ||hr44.com^ (easylistchina.txt: 797) +.hr44.com +# ||hmp33.com^ (easylistchina.txt: 795) +.hmp33.com +# ||hfjuki.com^ (easylistchina.txt: 793) +.hfjuki.com +# ||haolew.com^ (easylistchina.txt: 788) +.haolew.com +# ||haohaowan8.com^ (easylistchina.txt: 787) +.haohaowan8.com +# ||hao123rt.com^ (easylistchina.txt: 784) +.hao123rt.com +# ||gzqudou.com^ (easylistchina.txt: 782) +.gzqudou.com +# ||gzmjnx.cn^ (easylistchina.txt: 781) +.gzmjnx.cn +# ||guduopu.com^ (easylistchina.txt: 779) +.guduopu.com +# ||gm682.com^ (easylistchina.txt: 775) +.gm682.com +# ||gf1352.com^ (easylistchina.txt: 772) +.gf1352.com +# ||gf108.com^ (easylistchina.txt: 771) +.gf108.com +# ||fv99.com^ (easylistchina.txt: 762) +.fv99.com +# ||fu68.com^ (easylistchina.txt: 761) +.fu68.com +# ||fjmeyer.com^ (easylistchina.txt: 759) +.fjmeyer.com +# ||fd7c.com^ (easylistchina.txt: 757) +.fd7c.com +# ||f70123.com^ (easylistchina.txt: 754) +.f70123.com +# ||f6ce.com^ (easylistchina.txt: 753) +.f6ce.com +# ||f1190.com^ (easylistchina.txt: 752) +.f1190.com +# ||eiv.baidu.com^ (easylistchina.txt: 747) +.eiv.baidu.com +# ||ecuc123.net^ (easylistchina.txt: 744) +.ecuc123.net +# ||e719.net^ (easylistchina.txt: 741) +.e719.net +# ||e708.net^ (easylistchina.txt: 740) +.e708.net +# ||e70123.com^ (easylistchina.txt: 739) +.e70123.com +# ||e701.net^ (easylistchina.txt: 738) +.e701.net +# ||dxssiyi.com^ (easylistchina.txt: 737) +.dxssiyi.com +# ||dw998.com^ (easylistchina.txt: 735) +.dw998.com +# ||dvr8.com^ (easylistchina.txt: 734) +.dvr8.com +# ||duiwai.baidu.com^ (easylistchina.txt: 732) +.duiwai.baidu.com +# ||drmcmm.baidu.com^ (easylistchina.txt: 730) +.drmcmm.baidu.com +# ||dreamfull.cn^ (easylistchina.txt: 729) +.dreamfull.cn +# ||dou777.com^ (easylistchina.txt: 727) +.dou777.com +# ||datafastguru.info^ (easylistchina.txt: 719) +.datafastguru.info +# ||dashet.com^ (easylistchina.txt: 718) +.dashet.com +# ||czpwm.com^ (easylistchina.txt: 715) +.czpwm.com +# ||czpush.com^ (easylistchina.txt: 714) +.czpush.com +# ||cyacc.com^ (easylistchina.txt: 713) +.cyacc.com +# ||ctsywy.com^ (easylistchina.txt: 712) +.ctsywy.com +# ||csqiulong.com^ (easylistchina.txt: 711) +.csqiulong.com +# ||crdrjs.info^ (easylistchina.txt: 707) +.crdrjs.info +# ||cpva.cc^ (easylistchina.txt: 705) +.cpva.cc +# ||cpv6.com^ (easylistchina.txt: 704) +.cpv6.com +# ||cpro.baidustatic.com^ (easylistchina.txt: 703) +.cpro.baidustatic.com +# ||cpro.baidu.com^ (easylistchina.txt: 702) +.cpro.baidu.com +# ||cpms.cc^ (easylistchina.txt: 701) +.cpms.cc +# ||cpcv.cc^ (easylistchina.txt: 700) +.cpcv.cc +# ||code668.com^ (easylistchina.txt: 698) +.code668.com +# ||cnzz.com.so^ (easylistchina.txt: 697) +.cnzz.com.so +# ||cnxad.net^ (easylistchina.txt: 696) +.cnxad.net +# ||cbjs.baidu.com^ (easylistchina.txt: 688) +.cbjs.baidu.com +# ||cb.baidu.com^ (easylistchina.txt: 687) +.cb.baidu.com +# ||caob5.info^ (easylistchina.txt: 686) +.caob5.info +# ||cangnews.com^ (easylistchina.txt: 685) +.cangnews.com +# ||at98.com^ (easylistchina.txt: 672) +.at98.com +# ||aralego.com^ (easylistchina.txt: 670) +.aralego.com +# ||amazingmagics.com^ (easylistchina.txt: 667) +.amazingmagics.com +# ||aliyunxin.com^ (easylistchina.txt: 665) +.aliyunxin.com +# ||aliyuncss.com^ (easylistchina.txt: 664) +.aliyuncss.com +# ||ajaxcdn.org^ (easylistchina.txt: 661) +.ajaxcdn.org +# ||ads.uc.cn^ (easylistchina.txt: 649) +.ads.uc.cn +# ||adm-cnzz.net^ (easylistchina.txt: 644) +.adm-cnzz.net +# ||ad000000.com^ (easylistchina.txt: 635) +.ad000000.com +# ||a907907.com^ (easylistchina.txt: 631) +.a907907.com +# ||9377os.com^ (easylistchina.txt: 623) +.9377os.com +# ||9377ku.com^ (easylistchina.txt: 622) +.9377ku.com +# ||9377co.com^ (easylistchina.txt: 621) +.9377co.com +# ||91zgm.com^ (easylistchina.txt: 620) +.91zgm.com +# ||91ysa.com^ (easylistchina.txt: 619) +.91ysa.com +# ||892155.com^ (easylistchina.txt: 613) +.892155.com +# ||88rpg.net^ (easylistchina.txt: 611) +.88rpg.net +# ||85tgw.com^ (easylistchina.txt: 609) +.85tgw.com +# ||81c.cn^ (easylistchina.txt: 608) +.81c.cn +# ||7xz3.com^ (easylistchina.txt: 607) +.7xz3.com +# ||7wen.cn^ (easylistchina.txt: 606) +.7wen.cn +# ||77power.com^ (easylistchina.txt: 601) +.77power.com +# ||71sem.com^ (easylistchina.txt: 600) +.71sem.com +# ||6dvip.com^ (easylistchina.txt: 597) +.6dvip.com +# ||68665565.com^ (easylistchina.txt: 595) +.68665565.com +# ||66san.com^ (easylistchina.txt: 592) +.66san.com +# ||61.152.223.15^ (easylistchina.txt: 589) +.61.152.223.15 +# ||58.215.179.159^ (easylistchina.txt: 587) +.58.215.179.159 +# ||52kmk.com^ (easylistchina.txt: 584) +.52kmk.com +# ||3g.990.net^ (easylistchina.txt: 576) +.3g.990.net +# ||36pn.com^ (easylistchina.txt: 568) +.36pn.com +# ||366safego.com^ (easylistchina.txt: 567) +.366safego.com +# ||365safego.com^ (easylistchina.txt: 566) +.365safego.com +# ||365bibi.com^ (easylistchina.txt: 565) +.365bibi.com +# ||360baidus.com^ (easylistchina.txt: 561) +.360baidus.com +# ||2m2n.com^ (easylistchina.txt: 555) +.2m2n.com +# ||221.204.213.222^ (easylistchina.txt: 551) +.221.204.213.222 +# ||220.115.251.25^ (easylistchina.txt: 550) +.220.115.251.25 +# ||219.234.83.60^ (easylistchina.txt: 549) +.219.234.83.60 +# ||218.26.217.*.html (easylistchina.txt: 548) +.218.26.217.*./.*\.html +.218.26.217.*.html*. +# ||211.167.105.131^ (easylistchina.txt: 545) +.211.167.105.131 +# ||2012ui.com^ (easylistchina.txt: 543) +.2012ui.com +# ||201071.com^ (easylistchina.txt: 542) +.201071.com +# ||1l1.cc^ (easylistchina.txt: 538) +.1l1.cc +# ||182.92.81.104^ (easylistchina.txt: 537) +.182.92.81.104 +# ||1503.net/code/ (easylistchina.txt: 536) +.1503.net/code/ +# ||139.159.32.82^ (easylistchina.txt: 534) +.139.159.32.82 +# ||123hala.com^ (easylistchina.txt: 532) +.123hala.com +# ||122.227.254.195^ (easylistchina.txt: 531) +.122.227.254.195 +# ||116.55.227.242^ (easylistchina.txt: 528) +.116.55.227.242 +# ||112.124.98.75^ (easylistchina.txt: 525) +.112.124.98.75 +# ||111111qb.com^ (easylistchina.txt: 524) +.111111qb.com +# ||111.175.219.7^ (easylistchina.txt: 523) +.111.175.219.7 +# ||106.187.95.251^ (easylistchina.txt: 521) +.106.187.95.251 +# ||104.195.62.12^ (easylistchina.txt: 520) +.104.195.62.12 +# ||0xxd.com^ (easylistchina.txt: 517) +.0xxd.com +# |http://tk.*.php?id=*&step= (easylistchina.txt: 513) +tk.*./.*\.php\?id=.*&step= +# |http://1.3.0.10^ (easylistchina.txt: 510) +1.3.0.10 +# :9001/code/ (easylistchina.txt: 502) +/.*:9001/code/ +# /tourl.html?url= (easylistchina.txt: 498) +/(.*/)?tourl\.html\?url= +# /pagecpv/* (easylistchina.txt: 494) +/(.*/)?pagecpv/.* +# /mshow.aspx?AID= (easylistchina.txt: 490) +/(.*/)?mshow\.aspx\?AID= +# /mobile/mads.js (easylistchina.txt: 489) +/(.*/)?mobile/mads\.js +# /js/cpv_dl.js (easylistchina.txt: 488) +/(.*/)?js/cpv_dl\.js +# /cpm/i.ashx? (easylistchina.txt: 485) +/(.*/)?cpm/i\.ashx\? +# /code/popjs. (easylistchina.txt: 484) +/(.*/)?code/popjs\. +# /code/pop_cpf. (easylistchina.txt: 483) +/(.*/)?code/pop_cpf\. +# /code/mypop.asp? (easylistchina.txt: 482) +/(.*/)?code/mypop\.asp\? +# /code/cpv.asp? (easylistchina.txt: 481) +/(.*/)?code/cpv\.asp\? +# /code/cpm.asp? (easylistchina.txt: 480) +/(.*/)?code/cpm\.asp\? +# /code/cpc.asp? (easylistchina.txt: 479) +/(.*/)?code/cpc\.asp\? +# /center?advId= (easylistchina.txt: 478) +/(.*/)?center\?advId= +# /AShow.aspx?AID= (easylistchina.txt: 477) +/(.*/)?AShow\.aspx\?AID= +# /adscpc/* (easylistchina.txt: 476) +/(.*/)?adscpc/.* +# |http://ad. (easylistchina.txt: 269) +ad.*. +# |http://acs. (easylistchina.txt: 268) +acs.*. +# |http://*/js/tc.js (easylistchina.txt: 266) +/(.*/)?js/tc\.js +# |http://*/js/ad/ (easylistchina.txt: 265) +/(.*/)?js/ad/ +# |http://*/gg3. (easylistchina.txt: 263) +/(.*/)?gg3\. +# |http://*/gg2. (easylistchina.txt: 262) +/(.*/)?gg2\. +# |http://*/gg1. (easylistchina.txt: 261) +/(.*/)?gg1\. +# |http://*/ad.js?v= (easylistchina.txt: 259) +/(.*/)?ad\.js\?v= +# |http://*/ad.js?sn= (easylistchina.txt: 258) +/(.*/)?ad\.js\?sn= +# |http://*/ad.*.js?v=*&sp= (easylistchina.txt: 257) +/(.*/)?ad\..*\.js\?v=.*&sp= +# |http://*/*_ad.js (easylistchina.txt: 256) +/(.*/)?.*_ad\.js +# |http://*.us/ad/ (easylistchina.txt: 255) +/.*\.us/ad/ +.*.us/ad/ +# |http://*.tv/ad/ (easylistchina.txt: 253) +/.*\.tv/ad/ +.*.tv/ad/ +# |http://*.in/ad/ (easylistchina.txt: 252) +/.*\.in/ad/ +.*.in/ad/ +# |http://*.hk/ad/ (easylistchina.txt: 251) +/.*\.hk/ad/ +.*.hk/ad/ +# |http://*.cn/ad/ (easylistchina.txt: 250) +/.*\.cn/ad/ +.*.cn/ad/ +# |http://*.cc/ad/ (easylistchina.txt: 249) +/.*\.cc/ad/ +.*.cc/ad/ +# _mobilebanner_v1_550x60.jpg (easylistchina.txt: 248) +/.*_mobilebanner_v1_550x60\.jpg +# _billboard_320x100.iframe. (easylistchina.txt: 247) +/.*_billboard_320x100\.iframe\. +# =loginExtAD. (easylistchina.txt: 246) +/.*=loginExtAD\. +# :8898/ads_ (easylistchina.txt: 245) +/.*:8898/ads_ +# :8080/ad/ (easylistchina.txt: 244) +/.*:8080/ad/ +# :1010/openV5.js (easylistchina.txt: 243) +/.*:1010/openV5\.js +# /zzhzad/* (easylistchina.txt: 242) +/(.*/)?zzhzad/.* +# /znds/images/dangbeigif.gif (easylistchina.txt: 241) +/(.*/)?znds/images/dangbeigif\.gif +# /xianxiashijie_ad.png (easylistchina.txt: 240) +/(.*/)?xianxiashijie_ad\.png +# /wy96ad/* (easylistchina.txt: 239) +/(.*/)?wy96ad/.* +# /wp-content/themes/iMovies/js/tc_ (easylistchina.txt: 238) +/(.*/)?wp-content/themes/iMovies/js/tc_ +# /W3Cfuns_Adv/* (easylistchina.txt: 237) +/(.*/)?W3Cfuns_Adv/.* +# /uedbet/pause. (easylistchina.txt: 236) +/(.*/)?uedbet/pause\. +# /u/_sponsor/* (easylistchina.txt: 235) +/(.*/)?u/_sponsor/.* +# /tuiguang/* (easylistchina.txt: 234) +/(.*/)?tuiguang/.* +# /ttmeiju/images/ts.gif (easylistchina.txt: 233) +/(.*/)?ttmeiju/images/ts\.gif +# /tmall11nov2015-2.jpg (easylistchina.txt: 232) +/(.*/)?tmall11nov2015-2\.jpg +tmall11nov2015-2.jpg*. +# /tigtag_custom/include/popup. (easylistchina.txt: 231) +/(.*/)?tigtag_custom/include/popup\. +# /tigtag_custom/include/couplet. (easylistchina.txt: 230) +/(.*/)?tigtag_custom/include/couplet\. +# /tigtag_custom/*_banner (easylistchina.txt: 229) +/(.*/)?tigtag_custom/.*_banner +# /template/gg.js (easylistchina.txt: 228) +/(.*/)?template/gg\.js +# /taobaoad.html (easylistchina.txt: 227) +/(.*/)?taobaoad\.html +taobaoad.html*. +# /tanchuang. (easylistchina.txt: 226) +/(.*/)?tanchuang\. +tanchuang.*. +# /tanad.js (easylistchina.txt: 225) +/(.*/)?tanad\.js +tanad.js*. +# /tan.js (easylistchina.txt: 224) +/(.*/)?tan\.js +tan.js*. +# /taihai/v2014/images/index/aa_10. (easylistchina.txt: 223) +/(.*/)?taihai/v2014/images/index/aa_10\. +# /sygg/* (easylistchina.txt: 222) +/(.*/)?sygg/.* +# /sxgg/13 (easylistchina.txt: 221) +/(.*/)?sxgg/13 +# /sxgg/12.js (easylistchina.txt: 220) +/(.*/)?sxgg/12\.js +# /static/adsview/* (easylistchina.txt: 219) +/(.*/)?static/adsview/.* +# /ssdxad.swf (easylistchina.txt: 218) +/(.*/)?ssdxad\.swf +ssdxad.swf*. +# /source/plugin/mama_tips/* (easylistchina.txt: 217) +/(.*/)?source/plugin/mama_tips/.* +# /sogouAD. (easylistchina.txt: 216) +/(.*/)?sogouAD\. +sogouAD.*. +# /show.js?sp=*&oid= (easylistchina.txt: 215) +/(.*/)?show\.js\?sp=.*&oid= +# /Runtime/js/top960.js (easylistchina.txt: 214) +/(.*/)?Runtime/js/top960\.js +# /runtime/js/index960.js (easylistchina.txt: 213) +/(.*/)?runtime/js/index960\.js +# /qqyouyuead/* (easylistchina.txt: 212) +/(.*/)?qqyouyuead/.* +# /qqlive/conf/playerlottery/* (easylistchina.txt: 211) +/(.*/)?qqlive/conf/playerlottery/.* +# /qqguojiad/* (easylistchina.txt: 210) +/(.*/)?qqguojiad/.* +# /qpxl.js (easylistchina.txt: 209) +/(.*/)?qpxl\.js +qpxl.js*. +# /QianFanAdPalyer. (easylistchina.txt: 208) +/(.*/)?QianFanAdPalyer\. +QianFanAdPalyer.*. +# /proxy.html?id= (easylistchina.txt: 207) +/(.*/)?proxy\.html\?id= +# /proxy.htm?id= (easylistchina.txt: 206) +/(.*/)?proxy\.htm\?id= +# /pop_DJ2010.swf (easylistchina.txt: 205) +/(.*/)?pop_DJ2010\.swf +# /plugin.php?id=popad_7ree& (easylistchina.txt: 204) +/(.*/)?plugin\.php\?id=popad_7ree& +# /pic/ad/* (easylistchina.txt: 202) +/(.*/)?pic/ad/.* +# /piaofu.js (easylistchina.txt: 201) +/(.*/)?piaofu\.js +piaofu.js*. +# /pc/Tpl/baibaipc/js/* (easylistchina.txt: 200) +/(.*/)?pc/Tpl/baibaipc/js/.* +# /pc/Tpl/baibaipc//js/* (easylistchina.txt: 199) +/(.*/)?pc/Tpl/baibaipc//js/.* +# /paypic/* (easylistchina.txt: 198) +/(.*/)?paypic/.* +# /newsyd/templates/sponsor/* (easylistchina.txt: 197) +/(.*/)?newsyd/templates/sponsor/.* +# /new_site_topad^ (easylistchina.txt: 196) +/(.*/)?new_site_topad[^\w%.-] +# /nanrenpeng/ads/* (easylistchina.txt: 195) +/(.*/)?nanrenpeng/ads/.* +# /myimg/alimama2014.html (easylistchina.txt: 194) +/(.*/)?myimg/alimama2014\.html +# /moneymaker-banners/ads_ (easylistchina.txt: 193) +/(.*/)?moneymaker-banners/ads_ +# /module/adsview/* (easylistchina.txt: 192) +/(.*/)?module/adsview/.* +# /main/s? (easylistchina.txt: 191) +/(.*/)?main/s\? +# /main.js?v=*&sp=*&ty= (easylistchina.txt: 190) +/(.*/)?main\.js\?v=.*&sp=.*&ty= +# /lfadvertise.js (easylistchina.txt: 189) +/(.*/)?lfadvertise\.js +lfadvertise.js*. +# /lfAD2v1.1.js (easylistchina.txt: 188) +/(.*/)?lfAD2v1\.1\.js +lfAD2v1.1.js*. +# /lenovo/pc/all.js (easylistchina.txt: 187) +/(.*/)?lenovo/pc/all\.js +# /kuaiyun-728-91. (easylistchina.txt: 186) +/(.*/)?kuaiyun-728-91\. +kuaiyun-728-91.*. +# /k960g90. (easylistchina.txt: 185) +/(.*/)?k960g90\. +k960g90.*. +# /k300g250. (easylistchina.txt: 184) +/(.*/)?k300g250\. +k300g250.*. +# /k120g270. (easylistchina.txt: 183) +/(.*/)?k120g270\. +k120g270.*. +# /jumbo_banner_Gif_ (easylistchina.txt: 182) +/(.*/)?jumbo_banner_Gif_ +# /jsadv/* (easylistchina.txt: 181) +/(.*/)?jsadv/.* +# /js/utils78.js (easylistchina.txt: 180) +/(.*/)?js/utils78\.js +# /js/utils51.js (easylistchina.txt: 179) +/(.*/)?js/utils51\.js +# /js/guanggao_gg.js (easylistchina.txt: 178) +/(.*/)?js/guanggao_gg\.js +# /js/bocaiadv. (easylistchina.txt: 177) +/(.*/)?js/bocaiadv\. +# /js/ads/zuoxiajiao.js (easylistchina.txt: 176) +/(.*/)?js/ads/zuoxiajiao\.js +# /js/ads/youxiajiao.js (easylistchina.txt: 175) +/(.*/)?js/ads/youxiajiao\.js +# /js/ads/yezi (easylistchina.txt: 174) +/(.*/)?js/ads/yezi +# /js/ads/to (easylistchina.txt: 173) +/(.*/)?js/ads/to +# /js/ads/piao.js (easylistchina.txt: 172) +/(.*/)?js/ads/piao\.js +# /js/ads/neiye (easylistchina.txt: 171) +/(.*/)?js/ads/neiye +# /js/ads/dui.js (easylistchina.txt: 170) +/(.*/)?js/ads/dui\.js +# /ina_ad_ (easylistchina.txt: 169) +/(.*/)?ina_ad_ +# /guanggao2. (easylistchina.txt: 167) +/(.*/)?guanggao2\. +guanggao2.*. +# /guanggao/* (easylistchina.txt: 166) +/(.*/)?guanggao/.* +# /guanggao. (easylistchina.txt: 165) +/(.*/)?guanggao\. +guanggao.*. +# /guangg/* (easylistchina.txt: 164) +/(.*/)?guangg/.* +# /guangao/* (easylistchina.txt: 163) +/(.*/)?guangao/.* +# /guang/930x90. (easylistchina.txt: 162) +/(.*/)?guang/930x90\. +# /ggtp/* (easylistchina.txt: 161) +/(.*/)?ggtp/.* +# /ggpic/* (easylistchina.txt: 160) +/(.*/)?ggpic/.* +# /ggjs/* (easylistchina.txt: 159) +/(.*/)?ggjs/.* +# /ggao/* (easylistchina.txt: 158) +/(.*/)?ggao/.* +# /ggao. (easylistchina.txt: 157) +/(.*/)?ggao\. +ggao.*. +# /ggad/* (easylistchina.txt: 156) +/(.*/)?ggad/.* +# /gg5. (easylistchina.txt: 155) +/(.*/)?gg5\. +gg5.*. +# /gg4. (easylistchina.txt: 154) +/(.*/)?gg4\. +gg4.*. +# /gaog/* (easylistchina.txt: 153) +/(.*/)?gaog/.* +# /floatad2. (easylistchina.txt: 152) +/(.*/)?floatad2\. +floatad2.*. +# /float_r.js (easylistchina.txt: 150) +/(.*/)?float_r\.js +# /ettoday/gemini/* (easylistchina.txt: 149) +/(.*/)?ettoday/gemini/.* +# /dy_66jjss/* (easylistchina.txt: 148) +/(.*/)?dy_66jjss/.* +# /duilian_gg. (easylistchina.txt: 147) +/(.*/)?duilian_gg\. +# /duilian2. (easylistchina.txt: 146) +/(.*/)?duilian2\. +duilian2.*. +# /diantan.js (easylistchina.txt: 144) +/(.*/)?diantan\.js +diantan.js*. +# /data/cache/myad- (easylistchina.txt: 143) +/(.*/)?data/cache/myad- +# /data/ad/* (easylistchina.txt: 142) +/(.*/)?data/ad/.* +# /cpro/ui/* (easylistchina.txt: 141) +/(.*/)?cpro/ui/.* +# /content/plugins/em_ad/* (easylistchina.txt: 140) +/(.*/)?content/plugins/em_ad/.* +# /comiis_kmsjx3hlx/ads/* (easylistchina.txt: 138) +/(.*/)?comiis_kmsjx3hlx/ads/.* +# /comiis_19lou/ads/* (easylistchina.txt: 137) +/(.*/)?comiis_19lou/ads/.* +# /clicktotal/ClickTotal.js (easylistchina.txt: 136) +/(.*/)?clicktotal/ClickTotal\.js +# /cdn-cgi/pe/bag2?r[]=*pagead2. (easylistchina.txt: 135) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*pagead2\. +# /cdn-cgi/pe/bag2?r[]=*p.tanx.com (easylistchina.txt: 134) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*p\.tanx\.com +# /cdn-cgi/pe/bag2?r[]=*.overture.com (easylistchina.txt: 133) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.overture\.com +# /cdn-cgi/pe/bag2?r[]=*.humanding.com (easylistchina.txt: 132) +/(.*/)?cdn-cgi/pe/bag2\?r\[\]=.*\.humanding\.com +# /caiguu_gg_ (easylistchina.txt: 131) +/(.*/)?caiguu_gg_ +# /caches/poster_js/* (easylistchina.txt: 130) +/(.*/)?caches/poster_js/.* +# /cache/ad_js/* (easylistchina.txt: 129) +/(.*/)?cache/ad_js/.* +# /btba/ad/* (easylistchina.txt: 128) +/(.*/)?btba/ad/.* +# /botad.html (easylistchina.txt: 127) +/(.*/)?botad\.html +botad.html*. +# /bbh_ad_ (easylistchina.txt: 126) +/(.*/)?bbh_ad_ +# /bbh_ad. (easylistchina.txt: 125) +/(.*/)?bbh_ad\. +# /Banner-pcbeta- (easylistchina.txt: 124) +/(.*/)?Banner-pcbeta- +Banner-pcbeta-*. +# /aoyou372down300_ (easylistchina.txt: 123) +/(.*/)?aoyou372down300_ +# /ajds/* (easylistchina.txt: 122) +/(.*/)?ajds/.* +# /aipaiPlayFull2.js?0. (easylistchina.txt: 121) +/(.*/)?aipaiPlayFull2\.js\?0\. +# /adx-exchange. (easylistchina.txt: 120) +/(.*/)?adx-exchange\. +adx-exchange.*. +# /advpic/* (easylistchina.txt: 119) +/(.*/)?advpic/.* +# /AdverJS/* (easylistchina.txt: 118) +/(.*/)?AdverJS/.* +# /adpv?cn= (easylistchina.txt: 117) +/(.*/)?adpv\?cn= +# /adpuba/* (easylistchina.txt: 116) +/(.*/)?adpuba/.* +# /adpro.js (easylistchina.txt: 115) +/(.*/)?adpro\.js +adpro.js*. +# /adpfile/* (easylistchina.txt: 114) +/(.*/)?adpfile/.* +# /adintrs/* (easylistchina.txt: 113) +/(.*/)?adintrs/.* +# /adblockTester2.js (easylistchina.txt: 112) +/(.*/)?adblockTester2\.js +adblockTester2.js*. +# /adblockTester1.js (easylistchina.txt: 111) +/(.*/)?adblockTester1\.js +adblockTester1.js*. +# /adblockTester.js (easylistchina.txt: 110) +/(.*/)?adblockTester\.js +adblockTester.js*. +# /AD2v1.1.js (easylistchina.txt: 109) +/(.*/)?AD2v1\.1\.js +AD2v1.1.js*. +# /acmsd/* (easylistchina.txt: 108) +/(.*/)?acmsd/.* +# /a/p?adid= (easylistchina.txt: 107) +/(.*/)?a/p\?adid= +# /9115gg/* (easylistchina.txt: 106) +/(.*/)?9115gg/.* +# /119g/640x60_ (easylistchina.txt: 105) +/(.*/)?119g/640x60_ +# .us/js/ads/ (easylistchina.txt: 104) +/.*\.us/js/ads/ +.*.us/js/ads/ +# .net/js/ads/ (easylistchina.txt: 103) +/.*\.net/js/ads/ +.*.net/js/ads/ +# .js?advertID= (easylistchina.txt: 102) +/.*\.js\?advertID= +# .info/js/alls_top.js (easylistchina.txt: 101) +/.*\.info/js/alls_top\.js +.*.info/js/alls_top\.js +# .info/js/alls_foot.js (easylistchina.txt: 100) +/.*\.info/js/alls_foot\.js +.*.info/js/alls_foot\.js +# .info/js/ads/ (easylistchina.txt: 99) +/.*\.info/js/ads/ +.*.info/js/ads/ +# .info/ad/ (easylistchina.txt: 98) +/.*\.info/ad/ +.*.info/ad/ +# .info/ad.js (easylistchina.txt: 97) +/.*\.info/ad\.js +.*.info/ad\.js +# .in/js/ads/ (easylistchina.txt: 96) +/.*\.in/js/ads/ +.*.in/js/ads/ +# .com/vodad.js (easylistchina.txt: 95) +/.*\.com/vodad\.js +.*.com/vodad\.js +# .com/pc/ad/ (easylistchina.txt: 94) +/.*\.com/pc/ad/ +.*.com/pc/ad/ +# .com/js/alls_top.js (easylistchina.txt: 93) +/.*\.com/js/alls_top\.js +.*.com/js/alls_top\.js +# .com/js/alls_foot.js (easylistchina.txt: 92) +/.*\.com/js/alls_foot\.js +.*.com/js/alls_foot\.js +# .com/js/ad_ (easylistchina.txt: 91) +/.*\.com/js/ad_ +.*.com/js/ad_ +# .com/a_d/ (easylistchina.txt: 90) +/.*\.com/a_d/ +.*.com/a_d/ +# .co/js/ads/ (easylistchina.txt: 89) +/.*\.co/js/ads/ +.*.co/js/ads/ +# .cn/js/ads/ (easylistchina.txt: 88) +/.*\.cn/js/ads/ +.*.cn/js/ads/ +# .cn/ads/ (easylistchina.txt: 87) +/.*\.cn/ads/ +.*.cn/ads/ +# .cc/js/ads/ (easylistchina.txt: 86) +/.*\.cc/js/ads/ +.*.cc/js/ads/ +# .bl.test15. (easylistchina.txt: 85) +/.*\.bl\.test15\. +.*.bl.test15.*. +# ||tuiguang.178.com^ (easylistchina.txt: 74) +.tuiguang.178.com +# ||s.yimg.com/ja/ap/tw/js/ (easylistchina.txt: 69) +.s.yimg.com/ja/ap/tw/js/ +# ||log.interest.mix.sina.com.cn^ (easylistchina.txt: 61) +.log.interest.mix.sina.com.cn +# ||hiad.myweb.hinet.net^ (easylistchina.txt: 51) +.hiad.myweb.hinet.net +# ||blog.xuite.net/_public/js/ysmad.js (easylistchina.txt: 40) +.blog.xuite.net/_public/js/ysmad\.js +# ||adrs.sdo.com^ (easylistchina.txt: 35) +.adrs.sdo.com +# ||a.youdao.com^ (easylistchina.txt: 33) +.a.youdao.com +# /tan1.js (easylistchina.txt: 18) +/(.*/)?tan1\.js +tan1.js*. +# /attachments/ad/* (easylistchina.txt: 17) +/(.*/)?attachments/ad/.* +# /adflash/* (easylistchina.txt: 16) +/(.*/)?adflash/.* + +#ab2p-block-request-Aaisv-Caisv +{+client-header-tagger{ab2p-block-request-Aaisv} \ + +server-header-tagger{ab2p-block-request-Caisv} \ +} +# ||sznews.com/*.files/$image,object (easylistchina.txt: 4726) +.sznews.com/.*\.files/ +# ||stnn.cc/images/xy/*x80$image,object (easylistchina.txt: 4684) +.stnn.cc/images/xy/.*x80 +# ||ptfish.com/*/ad$image,object (easylistchina.txt: 4236) +.ptfish.com/.*/ad +# ||mp3.haogeba.com^$image,object (easylistchina.txt: 3970) +.mp3.haogeba.com +# ||langxi.org/langxi/*900$image,object (easylistchina.txt: 3760) +.langxi.org/langxi/.*900 +# ||i.168img.com^$image,object (easylistchina.txt: 3299) +.i.168img.com +# ||i.168gamer.$image,object (easylistchina.txt: 3298) +.i.168gamer.*. +# ||hybbs.com/i/$image,object (easylistchina.txt: 3290) +.hybbs.com/i/ +# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina.txt: 2080) +.am.zdnet.com.cn/www/images/ +# /common/cf/*$image,object (easylistchina.txt: 139) +/(.*/)?common/cf/.* + +#ab2p-block-request-Aajosv-Cajosv +{+client-header-tagger{ab2p-block-request-Aajosv} \ + +server-header-tagger{ab2p-block-request-Cajosv} \ +} +# ||d5.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2580) +.d5.sina.com.cn +# ||d4.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2578) +.d4.sina.com.cn +# ||d3.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2577) +.d3.sina.com.cn +# ||d2.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2576) +.d2.sina.com.cn +# ||d1.sina.com.cn^$object,object-subrequest,script (easylistchina.txt: 2575) +.d1.sina.com.cn + +#ab2p-block-request-Aajsv-Cajsv +{+client-header-tagger{ab2p-block-request-Aajsv} \ + +server-header-tagger{ab2p-block-request-Cajsv} \ +} +# ||up.qingdaonews.com/up/$object,script (easylistchina.txt: 4904) +.up.qingdaonews.com/up/ +# ||ks.js.cn*/yytf/$object,script (easylistchina.txt: 3728) +.ks.js.cn*./(.*/)?yytf/ +# ||dabaoku.com^$object,script,subdocument (easylistchina.txt: 2584) +.dabaoku.com +# ||33.autohome.com.cn^$object,script (easylistchina.txt: 1574) +.33.autohome.com.cn + +#ab2p-block-request-Aaosv-Caosv +{+client-header-tagger{ab2p-block-request-Aaosv} \ + +server-header-tagger{ab2p-block-request-Caosv} \ +} +# ||asimgs.pplive.cn^$object,object-subrequest (easylistchina.txt: 2108) +.asimgs.pplive.cn + +#ab2p-block-request-Aaov-Caov +{+client-header-tagger{ab2p-block-request-Aaov} \ + +server-header-tagger{ab2p-block-request-Caov} \ +} +TAG:^ab2p-block-request-Aaov-Caov$ +# ||yinyuetai.com/partner/$object-subrequest (easylistchina.txt: 5241) +.yinyuetai.com/partner/ +# ||qzs.qq.com/qzone/biz/res/v.swf?loc=$object-subrequest (easylistchina.txt: 4358) +.qzs.qq.com/qzone/biz/res/v\.swf\?loc= +# ||qiyipic.com/common/$object-subrequest (easylistchina.txt: 4289) +.qiyipic.com/common/ +# ||letvimg.com*gugwl/$object-subrequest (easylistchina.txt: 3795) +.letvimg.com*./.*gugwl/ +.letvimg.com*gugwl +# ||float.sandai.net^$object-subrequest (easylistchina.txt: 2892) +.float.sandai.net +# ||duonao.tv//upload/$object-subrequest (easylistchina.txt: 2728) +# ||douban.com^*/rda/$object-subrequest (easylistchina.txt: 2696) +.douban.com/.*/rda/ +# ||dnvod.eu//upload/$object-subrequest (easylistchina.txt: 2671) + +#ab2p-block-request-Aaov-Caov-when-R51 +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R51} \ +} +# ||hdslb.com/u_user/$object-subrequest,domain=bilibili.com|bilibili.tv|kankanews.com (easylistchina.txt: 3149) +.hdslb.com/u_user/ + +#ab2p-block-request-Aaov-Caov-when-R129 +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R129} \ +} +# ||tietuku.com^$object-subrequest,domain=skyerblog.com (easylistchina.txt: 4794) +.tietuku.com + +#ab2p-block-request-Aaov-Caov-when-R137 +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R137} \ +} +# ||sdo.com^$object-subrequest,domain=v.ku6.com (easylistchina.txt: 4465) +.sdo.com + +#ab2p-block-request-Aasv-Casv +{+client-header-tagger{ab2p-block-request-Aasv} \ + +server-header-tagger{ab2p-block-request-Casv} \ +} +TAG:^ab2p-block-request-Aasv-Casv$ +# ||ts.cn^*/site1/$object (easylistchina.txt: 4841) +.ts.cn/.*/site1/ +# ||tompda.com^$object (easylistchina.txt: 4832) +.tompda.com +# ||pic.zol-img.com.cn^$object (easylistchina.txt: 4192) +.pic.zol-img.com.cn +# ||ly.shangdu.com/lyinfo/zlwz/flash/$object (easylistchina.txt: 3855) +.ly.shangdu.com/lyinfo/zlwz/flash/ +# ||licai18.com/bk/$object (easylistchina.txt: 3815) +.licai18.com/bk/ +# ||letvimg.com^*/108x70$object (easylistchina.txt: 3798) +.letvimg.com/.*/108x70 +# ||img.taoguba.com.cn/images/$object (easylistchina.txt: 3437) +.img.taoguba.com.cn/images/ +# ||hi.people.com.cn/NMediaFile/$object (easylistchina.txt: 3180) +.hi.people.com.cn/NMediaFile/ +# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina.txt: 2818) +.enshi.cn/userfiles/esrb/ +# ||content.xilu.com^$object (easylistchina.txt: 2530) +.content.xilu.com +# ||cj.qidian.com^$object,subdocument (easylistchina.txt: 2475) +.cj.qidian.com +# ||cctime.com/UpLoadFile/201$object (easylistchina.txt: 2376) +.cctime.com/UpLoadFile/201 +# ||adm*.autoimg.cn^$object (easylistchina.txt: 1996) +.adm*./.*\.autoimg\.cn[^\w%.-] +.adm*.autoimg.cn +# ||5dmail.net/image/$object (easylistchina.txt: 1741) +.5dmail.net/image/ + +#ab2p-block-request-Aasv-Casv-when-R50 +{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R50} \ +} +# ||acg.tv^$object,domain=bilibili.com (easylistchina.txt: 1979) +.acg.tv + +#ab2p-block-request-Aasv-Casv-when-R145 +{+client-header-tagger{ab2p-block-request-Aasv-Casv-when-R145} \ +} +# ||nmgnews.com.cn/swf/0/10/$object,domain=www.nmgnews.com.cn (easylistchina.txt: 4065) +.nmgnews.com.cn/swf/0/10/ + +#ab2p-block-request-Ai-Ci +{+client-header-tagger{ab2p-block-request-Ai} \ + +server-header-tagger{ab2p-block-request-Ci} \ +} +TAG:^ab2p-block-request-Ai-Ci$ +# ||yjhas.net^$image (easylistchina.txt: 5250) +.yjhas.net +# ||webkaka.com*/click/$image (easylistchina.txt: 5003) +.webkaka.com*./(.*/)?click/ +# ||vpser.b0.upaiyun.com^$image (easylistchina.txt: 4966) +.vpser.b0.upaiyun.com +# ||tiantian.tv/sda/$image (easylistchina.txt: 4785) +.tiantian.tv/sda/ +# ||spbonow.com/UploadFiles/20$image (easylistchina.txt: 4646) +.spbonow.com/UploadFiles/20 +# ||share.dmhy.*/*?$image (easylistchina.txt: 4504) +.share.dmhy.*./(.*/)?.*\? +# ||ruanjianxiaozi.qiniudn.com^$image (easylistchina.txt: 4409) +.ruanjianxiaozi.qiniudn.com +# ||mycodes.net/js/$image (easylistchina.txt: 3996) +.mycodes.net/js/ +# ||m.tiebaimg.com/timg?wapp^*imgtype=0$image (easylistchina.txt: 3876) +.m.tiebaimg.com/timg\?wapp[^\w%.-].*imgtype=0 +# ||kcjc.net/960$image (easylistchina.txt: 3702) +.kcjc.net/960 +# ||k618.cn/gg$image (easylistchina.txt: 3691) +.k618.cn/gg +# ||info.btc123.com/images/antiBlock/$image (easylistchina.txt: 3474) +.info.btc123.com/images/antiBlock/ +# ||imgsrc.baidu.com/tieba/pic/item/$image (easylistchina.txt: 3462) +.imgsrc.baidu.com/tieba/pic/item/ +# ||imgf.gamersky.com^$image (easylistchina.txt: 3454) +.imgf.gamersky.com +# ||img.6park.com/img/$image (easylistchina.txt: 3424) +.img.6park.com/img/ +# ||files.nyaa.se/a*.$image (easylistchina.txt: 2878) +.files.nyaa.se/a.*\. +# ||files.nyaa.eu/a*.$image (easylistchina.txt: 2877) +.files.nyaa.eu/a.*\. +# ||dnwx.com*/ad$image (easylistchina.txt: 2674) +.dnwx.com*./(.*/)?ad +# ||p0y.cn^$image (easylistchina.txt: 899) +.p0y.cn + +#ab2p-block-request-Ai-Ci-when-R176t +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R176t} \ +} +# |http:$image,third-party,domain=99files.net (easylistchina.txt: 1268) + +#ab2p-block-request-Ai-Ci-when-R62 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R62} \ +} +# ||taobaocdn.com^$image,domain=cnblogs.com (easylistchina.txt: 4743) +.taobaocdn.com + +#ab2p-block-request-Ai-Ci-when-R114 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R114} \ +} +# ||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com (easylistchina.txt: 3300) +.i.alipayobjects.com/i/ecmng/ + +#ab2p-block-request-Ai-Ci-when-R134 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R134} \ +} +# /img/*$image,domain=txzqw.com (easylistchina.txt: 1186) +/(.*/)?img/.* +# /gif/*$image,domain=txzqw.com (easylistchina.txt: 1171) +/(.*/)?gif/.* + +#ab2p-block-request-Ai-Ci-when-R138 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R138} \ +} +# /friends/*$image,domain=v2ex.com (easylistchina.txt: 1165) +/(.*/)?friends/.* + +#ab2p-block-request-Ai-Ci-when-Rn165 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rn165} \ +} +# ||bahamut.com.tw^*/2KU/*?v=$~collapse,image,domain=~m.gamer.com.tw (easylistchina.txt: 2144) +.bahamut.com.tw/.*/2KU/.*\?v= + +#ab2p-block-request-Ai-Ci-when-Rn172 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rn172} \ +} +# ||d5.sina.com.cn^$image,domain=~www.sina.com.cn (easylistchina.txt: 2579) +.d5.sina.com.cn + +#ab2p-block-request-Ai-Ci-when-Rt +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rt} \ +} +# ||info-database.csdn.net/Upload/$image,third-party (easylistchina.txt: 3473) +.info-database.csdn.net/Upload/ +# ||niuza.com^$image,subdocument,third-party (easylistchina.txt: 890) +.niuza.com +# ||kiees.com^$image,subdocument,third-party (easylistchina.txt: 851) +.kiees.com + +#ab2p-block-request-Aij-Cij +{+client-header-tagger{ab2p-block-request-Aij} \ + +server-header-tagger{ab2p-block-request-Cij} \ +} +# ||baidu.com/ecom$image,script (easylistchina.txt: 2148) +.baidu.com/ecom + +#ab2p-block-request-Aj-Cj +{+client-header-tagger{ab2p-block-request-Aj} \ + +server-header-tagger{ab2p-block-request-Cj} \ +} +TAG:^ab2p-block-request-Aj-Cj$ +# ||xntk.net^$script (easylistchina.txt: 5168) +.xntk.net +# ||xinhuanet.com^*_tl_$script (easylistchina.txt: 5132) +.xinhuanet.com/.*_tl_ +# ||x.itiexue.net/html/$script (easylistchina.txt: 5076) +.x.itiexue.net/html/ +# ||wangyouxs.com/A/$script (easylistchina.txt: 4989) +.wangyouxs.com/A/ +# ||sznews.com/css/$script (easylistchina.txt: 4727) +.sznews.com/css/ +# ||stheadline.com/*banner$script (easylistchina.txt: 4681) +.stheadline.com/.*banner +# ||skads.gxsky.com^$script (easylistchina.txt: 4604) +.skads.gxsky.com +# ||sinaimg.cn^*/deco/$script (easylistchina.txt: 4591) +.sinaimg.cn/.*/deco/ +# ||same*.jrj.com.cn^$script,subdocument (easylistchina.txt: 4439) +.same*./.*\.jrj\.com\.cn[^\w%.-] +.same*.jrj.com.cn +# ||s.tankr.net/s/$script (easylistchina.txt: 4427) +.s.tankr.net/s/ +# ||qqread.com/*js/$script (easylistchina.txt: 4339) +.qqread.com/.*js/ +# ||qianlong.com/vda/$script (easylistchina.txt: 4263) +.qianlong.com/vda/ +# ||property.hk/ad_$script (easylistchina.txt: 4231) +.property.hk/ad_ +# ||piaohua.com/js/yzz/$script (easylistchina.txt: 4174) +.piaohua.com/js/yzz/ +# ||pfp.sina.com.cn^$script,subdocument (easylistchina.txt: 4155) +.pfp.sina.com.cn +# ||ouyaoxiazai.com^$script,subdocument (easylistchina.txt: 4104) +.ouyaoxiazai.com +# ||onlinedown.net/newhuagg/*_pic_$script (easylistchina.txt: 4088) +.onlinedown.net/newhuagg/.*_pic_ +# ||medsci.cn/aimgs/$script (easylistchina.txt: 3915) +.medsci.cn/aimgs/ +# ||linuxidc.com/linuxfile/linux$script (easylistchina.txt: 3827) +.linuxidc.com/linuxfile/linux +# ||jz5u.com/js/tl$script (easylistchina.txt: 3681) +.jz5u.com/js/tl +# ||js.tv.itc.cn/gg$script (easylistchina.txt: 3649) +.js.tv.itc.cn/gg +# ||imp3.net/data/js$script (easylistchina.txt: 3469) +.imp3.net/data/js +# ||img.jb51.net^$script (easylistchina.txt: 3434) +.img.jb51.net +# ||ifengimg.com^*Float$script (easylistchina.txt: 3379) +.ifengimg.com/.*Float +# ||ifengimg.com^*couplet$script (easylistchina.txt: 3378) +.ifengimg.com/.*couplet +# ||hkheadline.com/*banner$script (easylistchina.txt: 3209) +.hkheadline.com/.*banner +# ||hinews.cn/out/$script (easylistchina.txt: 3189) +.hinews.cn/out/ +# ||happydown.com^$script,subdocument (easylistchina.txt: 3127) +.happydown.com +# ||geiliwx.com/read/ad$script (easylistchina.txt: 2966) +.geiliwx.com/read/ad +# ||fzpchome.com/txt/$script (easylistchina.txt: 2926) +.fzpchome.com/txt/ +# ||fzlol.com/images/$script (easylistchina.txt: 2925) +.fzlol.com/images/ +# ||fdc.my0511.com^$script (easylistchina.txt: 2864) +.fdc.my0511.com +# ||etf88.com/jjb/*_ad$script (easylistchina.txt: 2834) +.etf88.com/jjb/.*_ad +# ||dzwww.com/data/js/asp_$script (easylistchina.txt: 2762) +.dzwww.com/data/js/asp_ +# ||dodo8.com/inc/$script (easylistchina.txt: 2685) +.dodo8.com/inc/ +# ||dddbbb.net^$script,subdocument (easylistchina.txt: 2609) +.dddbbb.net +# ||baishuku.com/news/$script (easylistchina.txt: 2183) +.baishuku.com/news/ +# ||ayxz.com/images/$script (easylistchina.txt: 2130) +.ayxz.com/images/ +# ||airenti.in^$script (easylistchina.txt: 2050) +.airenti.in +# ||962.net/show/cms_$script (easylistchina.txt: 1924) +.962.net/show/cms_ +# ||962.net/show/all_$script (easylistchina.txt: 1922) +.962.net/show/all_ +# ||8dyun.com/*.php$script (easylistchina.txt: 1885) +.8dyun.com/.*\.php +# ||6park.com/parks/$script (easylistchina.txt: 1818) +.6park.com/parks/ +# ||6park.com/news/$script (easylistchina.txt: 1817) +.6park.com/news/ +# ||66ys.cc/d/$script (easylistchina.txt: 1805) +.66ys.cc/d/ +# ||66e.cc/d/$script (easylistchina.txt: 1787) +.66e.cc/d/ +# ||23sc.cn*/007/js/$script (easylistchina.txt: 1537) +.23sc.cn*./(.*/)?007/js/ +# ||168.it168.com^$script (easylistchina.txt: 1439) +.168.it168.com +# ||131.com/js/131InsideAD$script (easylistchina.txt: 1407) +.131.com/js/131InsideAD +# /pub/news/gzrb/*$script (easylistchina.txt: 1222) +/(.*/)?pub/news/gzrb/.* +# |http://tk.*.php?id=*&s=$script (easylistchina.txt: 512) +tk.*./.*\.php\?id=.*&s= + +#ab2p-block-request-Aj-Cj-when-R14 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R14} \ +} +# |http:$script,domain=189so.cn (easylistchina.txt: 1269) + +#ab2p-block-request-Aj-Cj-when-R34 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R34} \ +} +# |http://*/p$script,domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1277) +/(.*/)?p + +#ab2p-block-request-Aj-Cj-when-R177t +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R177t} \ +} +# |http:$script,third-party,domain=ccav1.com|ypan.cc (easylistchina.txt: 1270) + +#ab2p-block-request-Aj-Cj-when-R78 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R78} \ +} +# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina.txt: 1160) +/(.*/)?cooperation/.* + +#ab2p-block-request-Aj-Cj-when-R90 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R90} \ +} +# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina.txt: 4431) +.s.yimg.com/ja/ap/ + +#ab2p-block-request-Aj-Cj-when-Rt +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-Rt} \ +} +# ||yxdyk.com^$script,third-party (easylistchina.txt: 1042) +.yxdyk.com +# ||685wo.com^$script,third-party (easylistchina.txt: 594) +.685wo.com +# |http://p.*.com/view.php?uid=$script,third-party (easylistchina.txt: 511) +p.*./.*\.com/view\.php\?uid= +p.*.com/view\.php\?uid= +# |http://*:*/s.php?id=$script,third-party (easylistchina.txt: 509) +/.*:.*/s\.php\?id= +.*:*./(.*/)?s\.php\?id= +# |http://*//s.php?id=$script,third-party (easylistchina.txt: 508) +/(.*/)?/s\.php\?id= +# |http://*.tw/s.php?id=$script,third-party (easylistchina.txt: 507) +/.*\.tw/s\.php\?id= +.*.tw/s\.php\?id= +# |http://*.info/s.php?id=$script,third-party (easylistchina.txt: 506) +/.*\.info/s\.php\?id= +.*.info/s\.php\?id= +# |http://*.com/s.php?id=$script,third-party (easylistchina.txt: 505) +/.*\.com/s\.php\?id= +.*.com/s\.php\?id= +# |http://*.cn/s.php?id=$script,third-party (easylistchina.txt: 504) +/.*\.cn/s\.php\?id= +.*.cn/s\.php\?id= +# |http://*.cc/s.php?id=$script,third-party (easylistchina.txt: 503) +/.*\.cc/s\.php\?id= +.*.cc/s\.php\?id= +# /v.php?z=$script,third-party (easylistchina.txt: 499) +/(.*/)?v\.php\?z= +# /i.php?z=$script,third-party (easylistchina.txt: 487) +/(.*/)?i\.php\?z= +# .com/mediaController.php?pid=$script,third-party (easylistchina.txt: 474) +/.*\.com/mediaController\.php\?pid= +.*.com/mediaController\.php\?pid= + +#ab2p-block-request-Anaov-Cnaov-Xx +{+client-header-tagger{ab2p-block-request-Anaov} \ + +server-header-tagger{ab2p-block-request-Cnaov} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +# ||hongdou.gxnews.com.cn/upload/index/$~object-subrequest (easylistchina.txt: 3219) +.hongdou.gxnews.com.cn/upload/index/ + +#ab2p-block-request-Anhm-Cnhm +{+client-header-tagger{ab2p-block-request-Anhm} \ + +server-header-tagger{ab2p-block-request-Cnhm} \ +} +TAG:^ab2p-block-request-Anhm-Cnhm$ + +#ab2p-block-request-Anhm-Cnhm-when-Rn178t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn178t} \ +} +# ||tanx.com^$third-party,domain=~1688.com|~alimama.com|~taobao.com|~tmall.com (easylistchina.txt: 948) +.tanx.com + +#ab2p-block-request-Anhm-Cnhm-when-Rn179t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn179t} \ +} +# ||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com (easylistchina.txt: 808) +.img.uu1001.cn + +#ab2p-block-request-Anhm-Cnhm-when-Rn180t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn180t} \ +} +# ||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com (easylistchina.txt: 949) +.taobao.com/go/ + +#ab2p-block-request-Anhm-Cnhm-when-Rn181t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn181t} \ +} +# ||alimama.cn^$third-party,domain=~alimama.com|~budou.com|~foctop.com|~hetongal.ac.cn|~ith8.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~taobao.com.cn|~youhuiyouhui.com.cn (easylistchina.txt: 663) +.alimama.cn + +#ab2p-block-request-Anhm-Cnhm-when-Rn182t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn182t} \ +} +# ||offcn.com^$third-party,domain=~eoffcn.com (easylistchina.txt: 894) +.offcn.com + +#ab2p-block-request-Anhm-Cnhm-when-Rn183t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn183t} \ +} +# |http://gg.$third-party,domain=~guagua.cn (easylistchina.txt: 270) +gg.*. + +#ab2p-block-request-Anhm-Cnhm-when-Rn184t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn184t} \ +} +# ||dotmore.com.tw^$third-party,domain=~savebar.com.tw (easylistchina.txt: 726) +.dotmore.com.tw + +#ab2p-block-request-Anhm-Cnhm-when-Rn185t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn185t} \ +} +# ||114la.com^$third-party,domain=~ylmf.com (easylistchina.txt: 527) +.114la.com + +#ab2p-block-request-Anhm-Cnhm-when-Rt +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rt} \ +} +# ||xxx169.org^$third-party (easylistchina.txt: 5194) +.xxx169.org +# ||henghost.com^$third-party (easylistchina.txt: 3167) +.henghost.com +# ||game.466.com^$third-party (easylistchina.txt: 2939) +.game.466.com +# ||eat-travel.com.tw^$third-party (easylistchina.txt: 2788) +.eat-travel.com.tw +# ||2345.com/jifenimg/img/common/logo.png$third-party (easylistchina.txt: 1534) +.2345.com/jifenimg/img/common/logo\.png +# ||zytwq.net^$third-party (easylistchina.txt: 1056) +.zytwq.net +# ||ztdsp.com^$third-party (easylistchina.txt: 1055) +.ztdsp.com +# ||zp265.com^$third-party (easylistchina.txt: 1054) +.zp265.com +# ||zj66.net^$third-party (easylistchina.txt: 1052) +.zj66.net +# ||zgyiyi.com^$third-party (easylistchina.txt: 1051) +.zgyiyi.com +# ||ze5.com^$third-party (easylistchina.txt: 1048) +.ze5.com +# ||zd6789.com^$third-party (easylistchina.txt: 1047) +.zd6789.com +# ||zampdsp.com^$third-party (easylistchina.txt: 1046) +.zampdsp.com +# ||zampda.net^$third-party (easylistchina.txt: 1045) +.zampda.net +# ||yzxls.com^$third-party (easylistchina.txt: 1044) +.yzxls.com +# ||yunfanlm.com^$third-party (easylistchina.txt: 1041) +.yunfanlm.com +# ||yuanhsu.com^$third-party (easylistchina.txt: 1039) +.yuanhsu.com +# ||ysm.ezprice.net^$third-party (easylistchina.txt: 1038) +.ysm.ezprice.net +# ||yoyi.tv^$third-party (easylistchina.txt: 1036) +.yoyi.tv +# ||yoyi.com.cn^$third-party (easylistchina.txt: 1035) +.yoyi.com.cn +# ||youxicool.net^$third-party (easylistchina.txt: 1034) +.youxicool.net +# ||youle55.com^$third-party (easylistchina.txt: 1033) +.youle55.com +# ||youbet8.com^$third-party (easylistchina.txt: 1032) +.youbet8.com +# ||yongv.com^$third-party (easylistchina.txt: 1031) +.yongv.com +# ||yiwad.com^$third-party (easylistchina.txt: 1028) +.yiwad.com +# ||yiqifa.com^*.js$third-party (easylistchina.txt: 1027) +.yiqifa.com/.*\.js +# ||yiiwoo.com^$third-party (easylistchina.txt: 1025) +.yiiwoo.com +# ||yigao.com^$third-party (easylistchina.txt: 1024) +.yigao.com +# ||ye3.com^$third-party (easylistchina.txt: 1023) +.ye3.com +# ||ydcpc.com^$third-party (easylistchina.txt: 1022) +.ydcpc.com +# ||xzdchl.com^$third-party (easylistchina.txt: 1020) +.xzdchl.com +# ||xsu.cc^$third-party (easylistchina.txt: 1017) +.xsu.cc +# ||xp3366.com^$third-party (easylistchina.txt: 1016) +.xp3366.com +# ||xe2c.com^$third-party (easylistchina.txt: 1014) +.xe2c.com +# ||xdwan.com^$third-party (easylistchina.txt: 1013) +.xdwan.com +# ||xajx.com^$third-party (easylistchina.txt: 1010) +.xajx.com +# ||wudang05.com^$third-party (easylistchina.txt: 1006) +.wudang05.com +# ||wqzyt.net^$third-party (easylistchina.txt: 1004) +.wqzyt.net +# ||wo685.com^$third-party (easylistchina.txt: 1002) +.wo685.com +# ||wit.qq.com^$third-party (easylistchina.txt: 1001) +.wit.qq.com +# ||widget.ezprice.com.tw^$third-party (easylistchina.txt: 999) +.widget.ezprice.com.tw +# ||weizhanle.com^$third-party (easylistchina.txt: 998) +.weizhanle.com +# ||weddingeeos.com^$third-party (easylistchina.txt: 997) +.weddingeeos.com +# ||weareqy.com^$third-party (easylistchina.txt: 996) +.weareqy.com +# ||vsnoon.com^$third-party (easylistchina.txt: 993) +.vsnoon.com +# ||vpie.net^$third-party (easylistchina.txt: 992) +.vpie.net +# ||visadd.com^$third-party (easylistchina.txt: 991) +.visadd.com +# ||vf5c.com^$third-party (easylistchina.txt: 989) +.vf5c.com +# ||vamaker.com^$third-party (easylistchina.txt: 988) +.vamaker.com +# ||v-links.net^$third-party (easylistchina.txt: 986) +.v-links.net +# ||urlad.com.tw^$third-party (easylistchina.txt: 985) +.urlad.com.tw +# ||unionsky2.cn^$third-party (easylistchina.txt: 983) +.unionsky2.cn +# ||unionsky.cn^$third-party (easylistchina.txt: 982) +.unionsky.cn +# ||unionli.com^$third-party (easylistchina.txt: 981) +.unionli.com +# ||unionbig.com^$third-party (easylistchina.txt: 980) +.unionbig.com +# ||union009.com^$third-party (easylistchina.txt: 979) +.union009.com +# ||union.$third-party (easylistchina.txt: 978) +.union.*. +# ||unimhk.com^$third-party (easylistchina.txt: 977) +.unimhk.com +# ||ulink.cc^$third-party (easylistchina.txt: 976) +.ulink.cc +# ||ujian.cc^$third-party (easylistchina.txt: 975) +.ujian.cc +# ||ufstone.com^$third-party (easylistchina.txt: 974) +.ufstone.com +# ||ueadlian.com^$third-party (easylistchina.txt: 973) +.ueadlian.com +# ||u88.cn^$third-party (easylistchina.txt: 971) +.u88.cn +# ||u.801t.com^$third-party (easylistchina.txt: 970) +.u.801t.com +# ||txkjad.com^$third-party (easylistchina.txt: 969) +.txkjad.com +# ||twrank.com^$third-party (easylistchina.txt: 968) +.twrank.com +# ||twm.com.tw^$third-party (easylistchina.txt: 967) +.twm.com.tw +# ||twcczhu.com^$third-party (easylistchina.txt: 966) +.twcczhu.com +# ||twb98.com^$third-party (easylistchina.txt: 965) +.twb98.com +# ||tw-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 964) +.tw-cm.ysm.yahoo.com +# ||tukj.net^$third-party (easylistchina.txt: 963) +.tukj.net +# ||tripadvisor.com^$third-party (easylistchina.txt: 962) +.tripadvisor.com +# ||toy9090.com^$third-party (easylistchina.txt: 961) +.toy9090.com +# ||toufangke.com^$third-party (easylistchina.txt: 960) +.toufangke.com +# ||top888.com^$third-party (easylistchina.txt: 959) +.top888.com +# ||tk001.com^$third-party (easylistchina.txt: 957) +.tk001.com +# ||tebaidu.cn^$third-party (easylistchina.txt: 955) +.tebaidu.cn +# ||tbjfw.com^$third-party (easylistchina.txt: 952) +.tbjfw.com +# ||taotu001.com^$third-party (easylistchina.txt: 951) +.taotu001.com +# ||tanchuang002.info^$third-party (easylistchina.txt: 947) +.tanchuang002.info +# ||ta80.com^$third-party (easylistchina.txt: 944) +.ta80.com +# ||t3nlink.com^$third-party (easylistchina.txt: 942) +.t3nlink.com +# ||superfish.com^$third-party (easylistchina.txt: 941) +.superfish.com +# ||stnts.com^$third-party (easylistchina.txt: 939) +.stnts.com +# ||star8.net^$third-party (easylistchina.txt: 938) +.star8.net +# ||sphwq.net^$third-party (easylistchina.txt: 936) +.sphwq.net +# ||souacode.com^$third-party (easylistchina.txt: 934) +.souacode.com +# ||sosobook.cn^$third-party (easylistchina.txt: 933) +.sosobook.cn +# ||snyu.com^$third-party (easylistchina.txt: 931) +.snyu.com +# ||snxyf.com^$third-party (easylistchina.txt: 930) +.snxyf.com +# ||sin114.com^$third-party (easylistchina.txt: 929) +.sin114.com +# ||sharele.cn^$third-party (easylistchina.txt: 926) +.sharele.cn +# ||sexy-more.com^$third-party (easylistchina.txt: 923) +.sexy-more.com +# ||sales-frontier.com^$third-party (easylistchina.txt: 922) +.sales-frontier.com +# ||s17cnzz.com^$third-party (easylistchina.txt: 921) +.s17cnzz.com +# ||ruanwenclub.com^$third-party (easylistchina.txt: 918) +.ruanwenclub.com +# ||rsccs.com^$third-party (easylistchina.txt: 917) +.rsccs.com +# ||rbc.cn^$third-party (easylistchina.txt: 915) +.rbc.cn +# ||qubilou.com^$third-party (easylistchina.txt: 913) +.qubilou.com +# ||qtmojo.com^$third-party (easylistchina.txt: 912) +.qtmojo.com +# ||qq4g.cn^$third-party (easylistchina.txt: 911) +.qq4g.cn +# ||qiyou.com^$third-party (easylistchina.txt: 910) +.qiyou.com +# ||qidou.com^$third-party (easylistchina.txt: 908) +.qidou.com +# ||prohost.com.tw^$third-party (easylistchina.txt: 907) +.prohost.com.tw +# ||pro.cn^$third-party (easylistchina.txt: 906) +.pro.cn +# ||poxzyu.com^$third-party (easylistchina.txt: 905) +.poxzyu.com +# ||pagechoice.net^$third-party (easylistchina.txt: 902) +.pagechoice.net +# ||onetad.com^$third-party (easylistchina.txt: 898) +.onetad.com +# ||okokw.com^$third-party (easylistchina.txt: 897) +.okokw.com +# ||octopuspop.com^$third-party (easylistchina.txt: 893) +.octopuspop.com +# ||o091i.com^$third-party (easylistchina.txt: 892) +.o091i.com +# ||niurenw.com^$third-party (easylistchina.txt: 888) +.niurenw.com +# ||ni22.com^$third-party (easylistchina.txt: 887) +.ni22.com +# ||news.tagtoo.co^$third-party (easylistchina.txt: 885) +.news.tagtoo.co +# ||myzwqwe12.com^$third-party (easylistchina.txt: 884) +.myzwqwe12.com +# ||mytanwan.com^$third-party (easylistchina.txt: 883) +.mytanwan.com +# ||mycctvmedia.com^$third-party (easylistchina.txt: 882) +.mycctvmedia.com +# ||mtxsk.com^$third-party (easylistchina.txt: 881) +.mtxsk.com +# ||moogos.com^$third-party (easylistchina.txt: 879) +.moogos.com +# ||mobads.baidu.com^$third-party (easylistchina.txt: 877) +.mobads.baidu.com +# ||miaozhen.com^$third-party (easylistchina.txt: 875) +.miaozhen.com +# ||mgwl668.com^$third-party (easylistchina.txt: 874) +.mgwl668.com +# ||mediav.com^$third-party (easylistchina.txt: 873) +.mediav.com +# ||media8.cn^$third-party (easylistchina.txt: 872) +.media8.cn +# ||mathtag.com^$third-party (easylistchina.txt: 871) +.mathtag.com +# ||mamamiyu.com^$third-party (easylistchina.txt: 869) +.mamamiyu.com +# ||lx167.com^$third-party (easylistchina.txt: 866) +.lx167.com +# ||lv711.net^$third-party (easylistchina.txt: 865) +.lv711.net +# ||lnr1.com^$third-party (easylistchina.txt: 864) +.lnr1.com +# ||linkvans.com^$third-party (easylistchina.txt: 862) +.linkvans.com +# ||lhzly.com^$third-party (easylistchina.txt: 860) +.lhzly.com +# ||le123.cn^$third-party (easylistchina.txt: 858) +.le123.cn +# ||kuaizitech.com^$third-party (easylistchina.txt: 856) +.kuaizitech.com +# ||ku63.com^$third-party (easylistchina.txt: 854) +.ku63.com +# ||keyrun.cn^$third-party (easylistchina.txt: 849) +.keyrun.cn +# ||keydot.net^$third-party (easylistchina.txt: 848) +.keydot.net +# ||kejet.$third-party (easylistchina.txt: 847) +.kejet.*. +# ||kefeng56.com^$third-party (easylistchina.txt: 846) +.kefeng56.com +# ||kdly.net^$third-party (easylistchina.txt: 845) +.kdly.net +# ||kaixinjiehun.com^$third-party (easylistchina.txt: 844) +.kaixinjiehun.com +# ||jusha.com^$third-party (easylistchina.txt: 841) +.jusha.com +# ||junnew.com^$third-party (easylistchina.txt: 840) +.junnew.com +# ||juandou.com^$third-party (easylistchina.txt: 839) +.juandou.com +# ||ju33.com^$third-party (easylistchina.txt: 838) +.ju33.com +# ||jtxh.net^$third-party (easylistchina.txt: 837) +.jtxh.net +# ||jsyd139.com^$third-party (easylistchina.txt: 836) +.jsyd139.com +# ||jsmbaidu.com^$third-party (easylistchina.txt: 835) +.jsmbaidu.com +# ||jsjxhd.com^$third-party (easylistchina.txt: 834) +.jsjxhd.com +# ||js-apac-ss.ysm.yahoo.com^$third-party (easylistchina.txt: 833) +.js-apac-ss.ysm.yahoo.com +# ||jointreport-switch.com^$third-party (easylistchina.txt: 832) +.jointreport-switch.com +# ||jntmedia.cn^$third-party (easylistchina.txt: 830) +.jntmedia.cn +# ||jixing8.net^$third-party (easylistchina.txt: 825) +.jixing8.net +# ||jixing8.com^$third-party (easylistchina.txt: 824) +.jixing8.com +# ||jisucn.com^$third-party (easylistchina.txt: 823) +.jisucn.com +# ||jiankang13.com^$third-party (easylistchina.txt: 822) +.jiankang13.com +# ||jianglishi.cn^$third-party (easylistchina.txt: 821) +.jianglishi.cn +# ||jiangcao.com^$third-party (easylistchina.txt: 820) +.jiangcao.com +# ||j8j9.com^$third-party (easylistchina.txt: 816) +.j8j9.com +# ||itechwall.com^$third-party (easylistchina.txt: 815) +.itechwall.com +# ||istreamsche.com^$third-party (easylistchina.txt: 814) +.istreamsche.com +# ||is686.com^$third-party (easylistchina.txt: 813) +.is686.com +# ||iprefer.com.tw^$third-party (easylistchina.txt: 812) +.iprefer.com.tw +# ||instreet.cn^$third-party (easylistchina.txt: 811) +.instreet.cn +# ||index8.cn^$third-party (easylistchina.txt: 810) +.index8.cn +# ||iguang.tw^$third-party (easylistchina.txt: 806) +.iguang.tw +# ||iee5.com^$third-party (easylistchina.txt: 805) +.iee5.com +# ||icast.cn^$third-party (easylistchina.txt: 804) +.icast.cn +# ||i3z.cn^$third-party (easylistchina.txt: 803) +.i3z.cn +# ||i000o.com^$third-party (easylistchina.txt: 801) +.i000o.com +# ||hxqu.com^$third-party (easylistchina.txt: 800) +.hxqu.com +# ||hsmkj.net^$third-party (easylistchina.txt: 798) +.hsmkj.net +# ||hn163fck.com^$third-party (easylistchina.txt: 796) +.hn163fck.com +# ||hk-cm.ysm.yahoo.com^$third-party (easylistchina.txt: 794) +.hk-cm.ysm.yahoo.com +# ||heima8.com^$third-party (easylistchina.txt: 792) +.heima8.com +# ||hauchi.com.tw^$third-party (easylistchina.txt: 791) +.hauchi.com.tw +# ||haoyiwang.net^$third-party (easylistchina.txt: 790) +.haoyiwang.net +# ||haomm.com^$third-party (easylistchina.txt: 789) +.haomm.com +# ||haoba.info^$third-party (easylistchina.txt: 786) +.haoba.info +# ||hao123union.baidu.com^$third-party (easylistchina.txt: 785) +.hao123union.baidu.com +# ||haiyunx.com^$third-party (easylistchina.txt: 783) +.haiyunx.com +# ||gzbywl.com^$third-party (easylistchina.txt: 780) +.gzbywl.com +# ||gs307.com^$third-party (easylistchina.txt: 778) +.gs307.com +# ||gotonav.com^$third-party (easylistchina.txt: 777) +.gotonav.com +# ||gohappy.com.tw^$third-party (easylistchina.txt: 776) +.gohappy.com.tw +# ||ggmm777.com^$third-party (easylistchina.txt: 774) +.ggmm777.com +# ||gf1353.com^$third-party (easylistchina.txt: 773) +.gf1353.com +# ||geotmt.com^$third-party (easylistchina.txt: 770) +.geotmt.com +# ||gdxxb.com^$third-party (easylistchina.txt: 769) +.gdxxb.com +# ||gansha.co^$third-party (easylistchina.txt: 768) +.gansha.co +# ||gameone.com^$third-party (easylistchina.txt: 767) +.gameone.com +# ||gamecps.com^$third-party (easylistchina.txt: 766) +.gamecps.com +# ||game3737.com^$third-party (easylistchina.txt: 765) +.game3737.com +# ||g35.cc^$third-party (easylistchina.txt: 764) +.g35.cc +# ||fxxgw.com^$third-party (easylistchina.txt: 763) +.fxxgw.com +# ||fmad.cc^$third-party (easylistchina.txt: 760) +.fmad.cc +# ||feitian001.com^$third-party (easylistchina.txt: 758) +.feitian001.com +# ||fadama.com^$third-party (easylistchina.txt: 756) +.fadama.com +# ||f8272.com^$third-party (easylistchina.txt: 755) +.f8272.com +# ||eyouv.cn^$third-party (easylistchina.txt: 751) +.eyouv.cn +# ||emarbox.com^$third-party (easylistchina.txt: 750) +.emarbox.com +# ||elsad.tw^$third-party (easylistchina.txt: 749) +.elsad.tw +# ||ejin56.com^$third-party (easylistchina.txt: 748) +.ejin56.com +# ||egooad.com^$third-party (easylistchina.txt: 746) +.egooad.com +# ||eeyy.com^$third-party (easylistchina.txt: 745) +.eeyy.com +# ||easou.com^$third-party (easylistchina.txt: 743) +.easou.com +# ||ea3721.com^$third-party (easylistchina.txt: 742) +.ea3721.com +# ||dxpmedia.com^$third-party (easylistchina.txt: 736) +.dxpmedia.com +# ||dushimj.com^$third-party (easylistchina.txt: 733) +.dushimj.com +# ||dszm163.com^$third-party (easylistchina.txt: 731) +.dszm163.com +# ||doubleadv.com^$third-party (easylistchina.txt: 728) +.doubleadv.com +# ||dmtrck.com^$third-party (easylistchina.txt: 725) +.dmtrck.com +# ||dlads.cn^$third-party (easylistchina.txt: 724) +.dlads.cn +# ||displink.com^$third-party (easylistchina.txt: 723) +.displink.com +# ||dianxin.com^$third-party (easylistchina.txt: 722) +.dianxin.com +# ||dian500.com^$third-party (easylistchina.txt: 721) +.dian500.com +# ||dddddd.net^$third-party (easylistchina.txt: 720) +.dddddd.net +# ||d8360.com^$third-party (easylistchina.txt: 717) +.d8360.com +# ||d1ad.com^$third-party (easylistchina.txt: 716) +.d1ad.com +# ||csbew.com^$third-party (easylistchina.txt: 710) +.csbew.com +# ||csad.cc^$third-party (easylistchina.txt: 709) +.csad.cc +# ||cs.37see.com^$third-party (easylistchina.txt: 708) +.cs.37see.com +# ||crazymike.tw^$third-party (easylistchina.txt: 706) +.crazymike.tw +# ||coinadv.com^$third-party (easylistchina.txt: 699) +.coinadv.com +# ||cnxad.com^$third-party (easylistchina.txt: 695) +.cnxad.com +# ||cloudad.asia^$third-party (easylistchina.txt: 694) +.cloudad.asia +# ||cjlaoshi.com^$third-party (easylistchina.txt: 693) +.cjlaoshi.com +# ||chinesean.com^$third-party (easylistchina.txt: 692) +.chinesean.com +# ||chinauma.net^$third-party (easylistchina.txt: 691) +.chinauma.net +# ||chapm.com^$third-party (easylistchina.txt: 690) +.chapm.com +# ||chanet.com.cn^$third-party (easylistchina.txt: 689) +.chanet.com.cn +# ||c.91wan.com^$third-party (easylistchina.txt: 684) +.c.91wan.com +# ||btyou.com^$third-party (easylistchina.txt: 683) +.btyou.com +# ||books.com.tw/exep/ap/$third-party (easylistchina.txt: 682) +.books.com.tw/exep/ap/ +# ||bloggerads.net^$third-party (easylistchina.txt: 681) +.bloggerads.net +# ||blogad.com.tw^$third-party (easylistchina.txt: 680) +.blogad.com.tw +# ||biddingx.com^$third-party (easylistchina.txt: 679) +.biddingx.com +# ||behe.com^$third-party (easylistchina.txt: 678) +.behe.com +# ||baodaozhan.cn^$third-party (easylistchina.txt: 677) +.baodaozhan.cn +# ||bang5mai.com^$third-party (easylistchina.txt: 676) +.bang5mai.com +# ||baidu360haosou.info^$third-party (easylistchina.txt: 675) +.baidu360haosou.info +# ||b5h7.com^$third-party (easylistchina.txt: 674) +.b5h7.com +# ||av8d.net^$third-party (easylistchina.txt: 673) +.av8d.net +# ||at918.com^$third-party (easylistchina.txt: 671) +.at918.com +# ||aoparking.com^$third-party (easylistchina.txt: 669) +.aoparking.com +# ||andmejs.com^$third-party (easylistchina.txt: 668) +.andmejs.com +# ||allyes.$third-party (easylistchina.txt: 666) +.allyes.*. +# ||ajhdf.com^$third-party (easylistchina.txt: 662) +.ajhdf.com +# ||aimato.com^$third-party (easylistchina.txt: 660) +.aimato.com +# ||aidaicn.com^$third-party (easylistchina.txt: 659) +.aidaicn.com +# ||agrantsem.com^$third-party (easylistchina.txt: 658) +.agrantsem.com +# ||affiliate.rakuten.co.jp^$third-party (easylistchina.txt: 657) +.affiliate.rakuten.co.jp +# ||adyun.com^$third-party (easylistchina.txt: 656) +.adyun.com +# ||adxiaozi.com^$third-party (easylistchina.txt: 655) +.adxiaozi.com +# ||adver.com.tw^$third-party (easylistchina.txt: 654) +.adver.com.tw +# ||adunioncode.com^$third-party (easylistchina.txt: 653) +.adunioncode.com +# ||adt100.com^$third-party (easylistchina.txt: 652) +.adt100.com +# ||adsbro.com^$third-party (easylistchina.txt: 651) +.adsbro.com +# ||adsage.com^$third-party (easylistchina.txt: 650) +.adsage.com +# ||adpush.cn^$third-party (easylistchina.txt: 648) +.adpush.cn +# ||adpro.cn^$third-party (easylistchina.txt: 647) +.adpro.cn +# ||admin6.com^$third-party (easylistchina.txt: 646) +.admin6.com +# ||adm.cnzz.net^$third-party (easylistchina.txt: 645) +.adm.cnzz.net +# ||adkongjian.com^$third-party (easylistchina.txt: 643) +.adkongjian.com +# ||adingo.jp^$third-party (easylistchina.txt: 642) +.adingo.jp +# ||adhouyi.com^$third-party (easylistchina.txt: 641) +.adhouyi.com +# ||adconfer.com^$third-party (easylistchina.txt: 640) +.adconfer.com +# ||adchina.cc^$third-party (easylistchina.txt: 639) +.adchina.cc +# ||adcenter.conn.tw^$third-party (easylistchina.txt: 638) +.adcenter.conn.tw +# ||adbxb.com^$third-party (easylistchina.txt: 637) +.adbxb.com +# ||ad8.cc^$third-party (easylistchina.txt: 636) +.ad8.cc +# ||ad-plus.cn^$third-party (easylistchina.txt: 634) +.ad-plus.cn +# ||acs86.com^$third-party (easylistchina.txt: 633) +.acs86.com +# ||acgbase.com^$third-party (easylistchina.txt: 632) +.acgbase.com +# ||a7shun.com^$third-party (easylistchina.txt: 630) +.a7shun.com +# ||a3p4.com^$third-party (easylistchina.txt: 629) +.a3p4.com +# ||9xu.com^$third-party (easylistchina.txt: 628) +.9xu.com +# ||9w1an.com^$third-party (easylistchina.txt: 627) +.9w1an.com +# ||9ead.com^$third-party (easylistchina.txt: 626) +.9ead.com +# ||9718.com^$third-party (easylistchina.txt: 625) +.9718.com +# ||9519.net^$third-party (easylistchina.txt: 624) +.9519.net +# ||9158918.com^$third-party (easylistchina.txt: 618) +.9158918.com +# ||913h6.cn^$third-party (easylistchina.txt: 617) +.913h6.cn +# ||911.cc^$third-party (easylistchina.txt: 616) +.911.cc +# ||8ox.cn^$third-party (easylistchina.txt: 615) +.8ox.cn +# ||8le8le.com^$third-party (easylistchina.txt: 614) +.8le8le.com +# ||8910ad.com^$third-party (easylistchina.txt: 612) +.8910ad.com +# ||88cpc.com^$third-party (easylistchina.txt: 610) +.88cpc.com +# ||7o2o.com^$third-party (easylistchina.txt: 605) +.7o2o.com +# ||7clink.com^$third-party (easylistchina.txt: 604) +.7clink.com +# ||7bwan.com^$third-party (easylistchina.txt: 603) +.7bwan.com +# ||788xj.com^$third-party (easylistchina.txt: 602) +.788xj.com +# ||710070.com^$third-party (easylistchina.txt: 599) +.710070.com +# ||70e.com^$third-party (easylistchina.txt: 598) +.70e.com +# ||6dad.com^$third-party (easylistchina.txt: 596) +.6dad.com +# ||67lm.com^$third-party (easylistchina.txt: 593) +.67lm.com +# ||668559.com^$third-party (easylistchina.txt: 591) +.668559.com +# ||63kc.com^$third-party (easylistchina.txt: 590) +.63kc.com +# ||5mnh.com^$third-party (easylistchina.txt: 588) +.5mnh.com +# ||565882.com^$third-party (easylistchina.txt: 586) +.565882.com +# ||5399.com^$third-party (easylistchina.txt: 585) +.5399.com +# ||52kmh.com^$third-party (easylistchina.txt: 583) +.52kmh.com +# ||526d.com^$third-party (easylistchina.txt: 582) +.526d.com +# ||51ads.com^$third-party (easylistchina.txt: 581) +.51ads.com +# ||4936.cn^$third-party (easylistchina.txt: 579) +.4936.cn +# ||44pv.com^$third-party (easylistchina.txt: 578) +.44pv.com +# ||3p-link.com^$third-party (easylistchina.txt: 577) +.3p-link.com +# ||3dwwwgame.com^$third-party (easylistchina.txt: 575) +.3dwwwgame.com +# ||3alian.net^$third-party (easylistchina.txt: 574) +.3alian.net +# ||3975lm.com^$third-party (easylistchina.txt: 573) +.3975lm.com +# ||38ra.com^$third-party (easylistchina.txt: 572) +.38ra.com +# ||3839168.com^$third-party (easylistchina.txt: 571) +.3839168.com +# ||3808010.com/code$third-party (easylistchina.txt: 570) +.3808010.com/code +# ||37cs.com^$third-party (easylistchina.txt: 569) +.37cs.com +# ||36500.net^$third-party (easylistchina.txt: 564) +.36500.net +# ||36500.com^$third-party (easylistchina.txt: 563) +.36500.com +# ||360doo.com^$third-party (easylistchina.txt: 562) +.360doo.com +# ||3600ys.com^$third-party (easylistchina.txt: 560) +.3600ys.com +# ||3399.com/act/$third-party (easylistchina.txt: 559) +.3399.com/act/ +# ||32414.com^$third-party (easylistchina.txt: 558) +.32414.com +# ||321tui.com^$third-party (easylistchina.txt: 557) +.321tui.com +# ||321tui.cn^$third-party (easylistchina.txt: 556) +.321tui.cn +# ||2529.com^$third-party (easylistchina.txt: 554) +.2529.com +# ||23kmm.com^$third-party (easylistchina.txt: 553) +.23kmm.com +# ||235123.net^$third-party (easylistchina.txt: 552) +.235123.net +# ||217wo.com^$third-party (easylistchina.txt: 547) +.217wo.com +# ||2155ec.com^$third-party (easylistchina.txt: 546) +.2155ec.com +# ||210.65.10.32^$third-party (easylistchina.txt: 544) +.210.65.10.32 +# ||1v7.cn^$third-party (easylistchina.txt: 541) +.1v7.cn +# ||1qwe3r.com^$third-party (easylistchina.txt: 540) +.1qwe3r.com +# ||1lo0.net^$third-party (easylistchina.txt: 539) +.1lo0.net +# ||139site.com^$third-party (easylistchina.txt: 535) +.139site.com +# ||12l22.net^$third-party (easylistchina.txt: 533) +.12l22.net +# ||1188.com^$third-party (easylistchina.txt: 530) +.1188.com +# ||118114.cn^$third-party (easylistchina.txt: 529) +.118114.cn +# ||1133.cc^$third-party (easylistchina.txt: 526) +.1133.cc +# ||110160.com^$third-party (easylistchina.txt: 522) +.110160.com +# ||103.249.111.179^$third-party (easylistchina.txt: 519) +.103.249.111.179 +# ||100cpc.com^$third-party (easylistchina.txt: 518) +.100cpc.com +# ||0756j.com^$third-party (easylistchina.txt: 516) +.0756j.com +# ||0591101.com^$third-party (easylistchina.txt: 515) +.0591101.com +# ||033.com^$third-party (easylistchina.txt: 514) +.033.com +# :8080/js/v2.1.js$third-party (easylistchina.txt: 501) +/.*:8080/js/v2\.1\.js +# :8080/js/v1.js$third-party (easylistchina.txt: 500) +/.*:8080/js/v1\.js +# /svr/popwin.aspx?$third-party (easylistchina.txt: 497) +/(.*/)?svr/popwin\.aspx\? +# /pge/?s=$third-party (easylistchina.txt: 496) +/(.*/)?pge/\?s= +# /pd2.js$third-party (easylistchina.txt: 495) +/(.*/)?pd2\.js +pd2.js*. +# /page/s.php?s=$third-party (easylistchina.txt: 493) +/(.*/)?page/s\.php\?s= +# /page/index.php?s=$third-party (easylistchina.txt: 492) +/(.*/)?page/index\.php\?s= +# /page/?s=$third-party (easylistchina.txt: 491) +/(.*/)?page/\?s= +# /floatingcontent/*$third-party (easylistchina.txt: 486) +/(.*/)?floatingcontent/.* +# /99vjj/*$third-party (easylistchina.txt: 475) +/(.*/)?99vjj/.* +# |http://*/s.js?sp=*&r=$third-party (easylistchina.txt: 267) +/(.*/)?s\.js\?sp=.*&r= +# /h/k.php?u=*&l=*&v=$third-party (easylistchina.txt: 168) +/(.*/)?h/k\.php\?u=.*&l=.*&v= +# ||yy32.com^$third-party (easylistchina.txt: 82) +.yy32.com +# ||xq12.com^$third-party (easylistchina.txt: 81) +.xq12.com +# ||xixianad.com^$third-party (easylistchina.txt: 80) +.xixianad.com +# ||wofan.net^$third-party (easylistchina.txt: 79) +.wofan.net +# ||v.xi666.com^$third-party (easylistchina.txt: 78) +.v.xi666.com +# ||ugoooo.com^$third-party (easylistchina.txt: 77) +.ugoooo.com +# ||uctrac.com^$third-party (easylistchina.txt: 76) +.uctrac.com +# ||ubcpm.com^$third-party (easylistchina.txt: 75) +.ubcpm.com +# ||szvr.com^$third-party (easylistchina.txt: 73) +.szvr.com +# ||sitemaji.com^$third-party (easylistchina.txt: 72) +.sitemaji.com +# ||samboc.com^$third-party (easylistchina.txt: 71) +.samboc.com +# ||rekanw.com^$third-party (easylistchina.txt: 68) +.rekanw.com +# ||rayli.com.cn^$third-party (easylistchina.txt: 67) +.rayli.com.cn +# ||qling.com^$third-party (easylistchina.txt: 66) +.qling.com +# ||oeya.com^$third-party (easylistchina.txt: 65) +.oeya.com +# ||niwota.com^$third-party (easylistchina.txt: 64) +.niwota.com +# ||mosa86.com^$third-party (easylistchina.txt: 63) +.mosa86.com +# ||lm.35.com^$third-party (easylistchina.txt: 60) +.lm.35.com +# ||lianjie.phpwind.com^$third-party (easylistchina.txt: 59) +.lianjie.phpwind.com +# ||kuqi.com^$third-party (easylistchina.txt: 58) +.kuqi.com +# ||kuaiwan.com^$third-party (easylistchina.txt: 57) +.kuaiwan.com +# ||image.qndown.com^$third-party (easylistchina.txt: 56) +.image.qndown.com +# ||ilepai.com^$third-party (easylistchina.txt: 55) +.ilepai.com +# ||ifocus.cn^$third-party (easylistchina.txt: 54) +.ifocus.cn +# ||hz3137.com^$third-party (easylistchina.txt: 53) +.hz3137.com +# ||housefun.com.tw^$third-party (easylistchina.txt: 52) +.housefun.com.tw +# ||googleadsl.com^$third-party (easylistchina.txt: 50) +.googleadsl.com +# ||flashwing.net^$third-party (easylistchina.txt: 49) +.flashwing.net +# ||ee4kdushuba.com^$third-party (easylistchina.txt: 48) +.ee4kdushuba.com +# ||dingge.cc^$third-party (easylistchina.txt: 47) +.dingge.cc +# ||dian5000.com^$third-party (easylistchina.txt: 46) +.dian5000.com +# ||cpm360.com^$third-party (easylistchina.txt: 45) +.cpm360.com +# ||caiyifz.com^$third-party (easylistchina.txt: 44) +.caiyifz.com +# ||buzzads.com^$third-party (easylistchina.txt: 43) +.buzzads.com +# ||boosj.com^$third-party (easylistchina.txt: 42) +.boosj.com +# ||bmw100.cn^$third-party (easylistchina.txt: 41) +.bmw100.cn +# ||baitaiad.com^$third-party (easylistchina.txt: 39) +.baitaiad.com +# ||artxun.com^$third-party (easylistchina.txt: 38) +.artxun.com +# ||aifei.info^$third-party (easylistchina.txt: 37) +.aifei.info +# ||ads80.com^$third-party (easylistchina.txt: 36) +.ads80.com +# ||admaji.com^$third-party (easylistchina.txt: 34) +.admaji.com +# ||77zhuan.com^$third-party (easylistchina.txt: 32) +.77zhuan.com +# ||7794.com^$third-party (easylistchina.txt: 31) +.7794.com +# ||52lover.info^$third-party (easylistchina.txt: 30) +.52lover.info +# ||49ko.com^$third-party (easylistchina.txt: 29) +.49ko.com +# ||37pk49.com^$third-party (easylistchina.txt: 28) +.37pk49.com +# ||1x3x.com^$third-party (easylistchina.txt: 27) +.1x3x.com +# ||12291.com^$third-party (easylistchina.txt: 26) +.12291.com +# ||116b.com^$third-party (easylistchina.txt: 25) +.116b.com +# ||114lm.com^$third-party (easylistchina.txt: 24) +.114lm.com + +#ab2p-block-request-Ani-Cni-Xx +{+client-header-tagger{ab2p-block-request-Ani} \ + +server-header-tagger{ab2p-block-request-Cni} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +# ||lady8844.com/IMAGE/$~image (easylistchina.txt: 3754) +.lady8844.com/IMAGE/ +# ||img.eol.cn/images/ed/$~image (easylistchina.txt: 3431) +.img.eol.cn/images/ed/ + +#ab2p-block-request-R1 +{+client-header-tagger{ab2p-block-request-R1} \ +} +# /images/*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|67.228.203.174|74bao.com|75ri.com|83bao.com|96ri.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|gan80.com|gantube.com|gao08.com|gao1024.com|iu91.co|lang.pe|lang00.com|lang51.com|maichun5.info|men00.com|men40.com|men55.com|men70.com|men81.com|myhhg.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|sejie.com|sejie3.us|tb001.xyz|tube1024.com|tubewan.com|ukhuaren.co|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com|yh1.info|yh10.info (easylistchina.txt: 1177) +/(.*/)?images/.*\.gif + +#ab2p-block-request-R2 +{+client-header-tagger{ab2p-block-request-R2} \ +} +# ||sinaimg.cn^*.gif$domain=00fuck.com|01fuck.com|1024.pe|1024bao.com|20fuck.com|20men.com|22fuck.com|32cao.com|33fuck.com|42bao.com|44fuck.com|66fuck.com|74bao.com|75ri.com|83bao.com|96ri.com|97aa1.com|atao.biz|bao36.com|bao85.com|baoxxx.com|cao71.com|cao89.com|caoporn.com|cp001.xyz|down40.com|fuck01.com|fuck44.com|fuckhao.com|fulitie.org|gan80.com|gantube.com|gao08.com|gao1024.com|lang.pe|lang00.com|lang51.com|men00.com|men40.com|men55.com|men70.com|men81.com|porncao.com|pornhao.com|ri1024.com|ri15.com|ri69.com|ri86.com|ri96.com|rifuck.com|tb001.xyz|tube1024.com|tubewan.com|vgan.pw|vlook.xyz|wan1024.com|wanfuck.com|xxxgao.com (easylistchina.txt: 4590) +.sinaimg.cn/.*\.gif + +#ab2p-block-request-R3 +{+client-header-tagger{ab2p-block-request-R3} \ +} +# ||chinaacc.com^$domain=100ksw.com (easylistchina.txt: 2414) +.chinaacc.com + +#ab2p-block-request-R4 +{+client-header-tagger{ab2p-block-request-R4} \ +} +# /images/moe$domain=104.237.154.90|106.186.21.182|north-plus.net|soul-plus.net (easylistchina.txt: 1184) +/(.*/)?images/moe + +#ab2p-block-request-R5 +{+client-header-tagger{ab2p-block-request-R5} \ +} +# /config.$domain=12345xo.com|123gbgb.com|123ksks.com|216xx.com|263kk.com|44rbrb.com|66ctct.com|828ee.com|832ee.com|90yb.com|970b.com|987abc.com|99ksks.com|auau88.com|etet666.com|xbxb123.com|yeyeqi7.com (easylistchina.txt: 1159) +/(.*/)?config\. +config.*. + +#ab2p-block-request-R7 +{+client-header-tagger{ab2p-block-request-R7} \ +} +# ||sohucs.com^*_gif$domain=12580sky.com (easylistchina.txt: 4633) +.sohucs.com/.*_gif + +#ab2p-block-request-R8 +{+client-header-tagger{ab2p-block-request-R8} \ +} +# .gif|$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com|51dll.com|newstorrentsspace.info|tianyatorrents.info (easylistchina.txt: 1118) +/.*\.gif$ +.*.gif + +#ab2p-block-request-R9 +{+client-header-tagger{ab2p-block-request-R9} \ +} +# .com/x/$domain=17173.com|17173.tv.sohu.com (easylistchina.txt: 1116) +/.*\.com/x/ +.*.com/x/ + +#ab2p-block-request-R10 +{+client-header-tagger{ab2p-block-request-R10} \ +} +# |http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com (easylistchina.txt: 1279) +/(.*/)?ts\.js + +#ab2p-block-request-R11 +{+client-header-tagger{ab2p-block-request-R11} \ +} +# ||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|aisex.com|fdzone.org|jandown.com|mimima.com (easylistchina.txt: 4822) +.tinypic.com + +#ab2p-block-request-R12 +{+client-header-tagger{ab2p-block-request-R12} \ +} +# ||sinaimg.cn^$domain=174.139.109.38|208.94.244.98|360bifen.cc|360bifen.com|360bo.cc|500xxxx.com|84fn.com|99ee1.com|99re5.com|99rr6.com|ac168.info|aisex.com|bejson.com|bt177.com|btago.com|btshare.net|btshark.com|btup.net|caoliuzx.com|cililian.me|fdzone.org|izzs.cc|jisuzhibo.net|links.hjav.in|liulanmi.com|sbme.me|taohuazu.tw|thzhd.net|ttdyy.tv|xinqixi.com|xxxbt.com|youb444.com|zhiboche.com (easylistchina.txt: 4589) +.sinaimg.cn + +#ab2p-block-request-R13 +{+client-header-tagger{ab2p-block-request-R13} \ +} +# /skin/tb12/*$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1229) +/(.*/)?skin/tb12/.* +# /img/skin/*_bg.$domain=17huohu.com|firefox.com.cn|firefoxchina.cn (easylistchina.txt: 1192) +/(.*/)?img/skin/.*_bg\. + +#ab2p-block-request-R15 +{+client-header-tagger{ab2p-block-request-R15} \ +} +# ||imgmega.com/i/*.gif$domain=18avhub.com|18avtube.com|mm-cg.com (easylistchina.txt: 3456) +.imgmega.com/i/.*\.gif + +#ab2p-block-request-R16 +{+client-header-tagger{ab2p-block-request-R16} \ +} +# ||imgur.com^*.gif$domain=18p2p.com (easylistchina.txt: 3468) +.imgur.com/.*\.gif + +#ab2p-block-request-R17 +{+client-header-tagger{ab2p-block-request-R17} \ +} +# ||cdndm.com/3/2015/$domain=1kkk.com|dm5.com (easylistchina.txt: 2388) +.cdndm.com/3/2015/ + +#ab2p-block-request-R18 +{+client-header-tagger{ab2p-block-request-R18} \ +} +# |http://*/adblock$domain=26766.com (easylistchina.txt: 1275) +/(.*/)?adblock + +#ab2p-block-request-R19 +{+client-header-tagger{ab2p-block-request-R19} \ +} +# /the_top$domain=28188.com|28188.net (easylistchina.txt: 1235) +/(.*/)?the_top +# /banner.js$domain=28188.com|28188.net (easylistchina.txt: 1151) +/(.*/)?banner\.js +banner.js*. + +#ab2p-block-request-R20 +{+client-header-tagger{ab2p-block-request-R20} \ +} +# ||sinaimg.cn/large/$domain=360-bo.com|chakd.com|kiees.cn|kqiuba.com|lueqiu.com|macappbox.com|pptiyu.com|qqzhibo.net (easylistchina.txt: 4564) +.sinaimg.cn/large/ + +#ab2p-block-request-R21 +{+client-header-tagger{ab2p-block-request-R21} \ +} +# ||qpic.cn^$domain=360-bo.com|pptiyu.com (easylistchina.txt: 4318) +.qpic.cn + +#ab2p-block-request-R22 +{+client-header-tagger{ab2p-block-request-R22} \ +} +# /ad2014.js$domain=39xs.net|checheng123.com|haodu5.com (easylistchina.txt: 1136) +/(.*/)?ad2014\.js +ad2014.js*. + +#ab2p-block-request-R23 +{+client-header-tagger{ab2p-block-request-R23} \ +} +# /mydisplay.php?i=$domain=400gb.com|bego.cc|ctfile.com|pipipan.com (easylistchina.txt: 1212) +/(.*/)?mydisplay\.php\?i= + +#ab2p-block-request-R24 +{+client-header-tagger{ab2p-block-request-R24} \ +} +# /xiaoshuo.js$domain=45zw.com (easylistchina.txt: 1252) +/(.*/)?xiaoshuo\.js +xiaoshuo.js*. + +#ab2p-block-request-R25 +{+client-header-tagger{ab2p-block-request-R25} \ +} +# /images/888.gif$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1180) +/(.*/)?images/888\.gif +# /images/*gamble$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1178) +/(.*/)?images/.*gamble +# /gennie_b.htm$domain=50.7.31.228|50.7.31.230|tvboxnow.com (easylistchina.txt: 1170) +/(.*/)?gennie_b\.htm + +#ab2p-block-request-R26 +{+client-header-tagger{ab2p-block-request-R26} \ +} +# /ipower.htm$domain=50.7.31.230|tvboxnow.com (easylistchina.txt: 1193) +/(.*/)?ipower\.htm +ipower.htm*. + +#ab2p-block-request-R27 +{+client-header-tagger{ab2p-block-request-R27} \ +} +# /js/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com (easylistchina.txt: 1196) +/(.*/)?js/gTool\.js + +#ab2p-block-request-R186t +{+client-header-tagger{ab2p-block-request-R186t} \ +} +# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|downhhh.com|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina.txt: 1067) + +#ab2p-block-request-R29 +{+client-header-tagger{ab2p-block-request-R29} \ +} +# ||wal8.com^$domain=52jifenbao.net (easylistchina.txt: 4974) +.wal8.com +# ||qiniudn.com^$domain=52jifenbao.net (easylistchina.txt: 4283) +.qiniudn.com + +#ab2p-block-request-R30 +{+client-header-tagger{ab2p-block-request-R30} \ +} +# ||tietuku.com^$domain=5ydj.com|99ee1.com|99re5.com|99rr6.com|btago.com|btbook.net|btshark.org|cnmkv.com|fulisuo1.com|hdbiger.org|kisssub.org|papa1024.com|potplayer.org|qqhzg.com|qqjishu.net|ruoren.com|souxue8.net|totuwo.com|xiaodao.la|xiaodaoyl.com|yunaw.com (easylistchina.txt: 4793) +.tietuku.com + +#ab2p-block-request-R31 +{+client-header-tagger{ab2p-block-request-R31} \ +} +# ||media.*.gif$domain=6668.se (easylistchina.txt: 3913) +.media.*./.*\.gif +.media.*.gif*. + +#ab2p-block-request-R32 +{+client-header-tagger{ab2p-block-request-R32} \ +} +# /js/top.js$domain=8comic.com|comicvip.com (easylistchina.txt: 1198) +/(.*/)?js/top\.js + +#ab2p-block-request-R33 +{+client-header-tagger{ab2p-block-request-R33} \ +} +# ||meimb.com^$domain=94as.com (easylistchina.txt: 3919) +.meimb.com + +#ab2p-block-request-R34 +{+client-header-tagger{ab2p-block-request-R34} \ +} +# |http://*/t.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1278) +/(.*/)?t\.js +# /jsc/stat.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1201) +/(.*/)?jsc/stat\.js +# /jsc/Copy.js$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1200) +/(.*/)?jsc/Copy\.js +# /jsc/book_$domain=99770.cc|99comic.com|99manga.com (easylistchina.txt: 1199) +/(.*/)?jsc/book_ + +#ab2p-block-request-R35 +{+client-header-tagger{ab2p-block-request-R35} \ +} +# ||chuantu.biz^$domain=99ee1.com|99re5.com|99rr6.com (easylistchina.txt: 2461) +.chuantu.biz + +#ab2p-block-request-R37 +{+client-header-tagger{ab2p-block-request-R37} \ +} +# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina.txt: 1104) +.taobao.com + +#ab2p-block-request-R38 +{+client-header-tagger{ab2p-block-request-R38} \ +} +# ||sinaimg.cn/large/ec76730dgw$domain=acg18.me (easylistchina.txt: 4572) +.sinaimg.cn/large/ec76730dgw + +#ab2p-block-request-R39 +{+client-header-tagger{ab2p-block-request-R39} \ +} +# |http://t.cn/$domain=ady8.info|aikuhu.com|cctv5bo.com (easylistchina.txt: 1281) +t.cn + +#ab2p-block-request-R40 +{+client-header-tagger{ab2p-block-request-R40} \ +} +# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina.txt: 1061) +/(.*/)?\? + +#ab2p-block-request-R41 +{+client-header-tagger{ab2p-block-request-R41} \ +} +# /2015new.js$domain=am5200.com|baby360.ru|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1124) +/(.*/)?2015new\.js +2015new.js*. + +#ab2p-block-request-R42 +{+client-header-tagger{ab2p-block-request-R42} \ +} +# |http://*/83/$domain=am5200.com|haowan.ru|kv130.com|kv700.com|we5200.com|we560.com (easylistchina.txt: 1273) +/(.*/)?83/ + +#ab2p-block-request-R43 +{+client-header-tagger{ab2p-block-request-R43} \ +} +# ||bp.blogspot.com^$domain=avmimi.com (easylistchina.txt: 2297) +.bp.blogspot.com + +#ab2p-block-request-R44 +{+client-header-tagger{ab2p-block-request-R44} \ +} +# ||taobaocdn.com/imgextra/$domain=backtrack.org.cn (easylistchina.txt: 4740) +.taobaocdn.com/imgextra/ + +#ab2p-block-request-R45 +{+client-header-tagger{ab2p-block-request-R45} \ +} +# ||upload.chinaz.com/20*.gif$domain=bbs.chinaz.com (easylistchina.txt: 4912) +.upload.chinaz.com/20.*\.gif + +#ab2p-block-request-R46 +{+client-header-tagger{ab2p-block-request-R46} \ +} +# ||img.china.alibaba.com/img/ibank/$domain=bbs.fobshanghai.com (easylistchina.txt: 3428) +.img.china.alibaba.com/img/ibank/ + +#ab2p-block-request-R47 +{+client-header-tagger{ab2p-block-request-R47} \ +} +# /house/images/*$domain=bbs.linyiren.com|www.linyiren.com (easylistchina.txt: 1174) +/(.*/)?house/images/.* + +#ab2p-block-request-R48 +{+client-header-tagger{ab2p-block-request-R48} \ +} +# |http://rc.sz.zj.cn/*.swf$domain=bbs.sz.zj.cn (easylistchina.txt: 1280) +rc.sz.zj.cn/.*\.swf + +#ab2p-block-request-R49 +{+client-header-tagger{ab2p-block-request-R49} \ +} +# ||momoshop.com.tw/league/$domain=beephone.com.tw (easylistchina.txt: 3954) +.momoshop.com.tw/league/ + +#ab2p-block-request-R52 +{+client-header-tagger{ab2p-block-request-R52} \ +} +# /images/tuangou$domain=bjxxw.com (easylistchina.txt: 1185) +/(.*/)?images/tuangou + +#ab2p-block-request-R53 +{+client-header-tagger{ab2p-block-request-R53} \ +} +# ||85rere.com^$popup,domain=btbbt.cc (easylistchina.txt: 1071) +.85rere.com + +#ab2p-block-request-R54 +{+client-header-tagger{ab2p-block-request-R54} \ +} +# /tb780x90.gif$domain=btmee.com|btmee.net (easylistchina.txt: 1234) +/(.*/)?tb780x90\.gif +tb780x90.gif*. + +#ab2p-block-request-R55 +{+client-header-tagger{ab2p-block-request-R55} \ +} +# /d125.260.gif$domain=btup.net (easylistchina.txt: 1161) +/(.*/)?d125\.260\.gif +d125.260.gif*. + +#ab2p-block-request-R56 +{+client-header-tagger{ab2p-block-request-R56} \ +} +# /gamepic/*$domain=cartoomad.com|cartoonad.com|cartoonmad.com (easylistchina.txt: 1168) +/(.*/)?gamepic/.* + +#ab2p-block-request-R57 +{+client-header-tagger{ab2p-block-request-R57} \ +} +# ||duapp.com^$domain=ccav1.com (easylistchina.txt: 2726) +.duapp.com + +#ab2p-block-request-R59 +{+client-header-tagger{ab2p-block-request-R59} \ +} +# |http://*/bn/$domain=chimatong.com (easylistchina.txt: 1276) +/(.*/)?bn/ + +#ab2p-block-request-R60 +{+client-header-tagger{ab2p-block-request-R60} \ +} +# /sda/*$domain=chineseinla.com (easylistchina.txt: 1225) +/(.*/)?sda/.* +# /images/content/1436/*$domain=chineseinla.com (easylistchina.txt: 1183) +/(.*/)?images/content/1436/.* + +#ab2p-block-request-R61 +{+client-header-tagger{ab2p-block-request-R61} \ +} +# ||youtube.com/embed/*&autoplay=1&$domain=ck101.com (easylistchina.txt: 5276) +.youtube.com/embed/.*&autoplay=1& + +#ab2p-block-request-R63 +{+client-header-tagger{ab2p-block-request-R63} \ +} +# ||tw.partner.buy.yahoo.com^$domain=cool3c.com (easylistchina.txt: 4864) +.tw.partner.buy.yahoo.com + +#ab2p-block-request-R64 +{+client-header-tagger{ab2p-block-request-R64} \ +} +# /assets/images/banner$domain=cpbl.com.tw (easylistchina.txt: 1144) +/(.*/)?assets/images/banner + +#ab2p-block-request-R65 +{+client-header-tagger{ab2p-block-request-R65} \ +} +# /biz_icon/*$domain=cs090.com|wm090.com (easylistchina.txt: 1155) +/(.*/)?biz_icon/.* + +#ab2p-block-request-R66 +{+client-header-tagger{ab2p-block-request-R66} \ +} +# ||rakuten-static.com^$domain=cwyuni.tw (easylistchina.txt: 4366) +.rakuten-static.com +# ||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw (easylistchina.txt: 4184) +.pic.pimg.tw/cwyuni/.*\.gif\?v= + +#ab2p-block-request-R67 +{+client-header-tagger{ab2p-block-request-R67} \ +} +# ||sinaimg.cn/mw1024/6283e*.jpg$domain=dapenti.com (easylistchina.txt: 4577) +.sinaimg.cn/mw1024/6283e.*\.jpg +# ||mygeek.cn/pic_$domain=dapenti.com (easylistchina.txt: 4001) +.mygeek.cn/pic_ + +#ab2p-block-request-R68 +{+client-header-tagger{ab2p-block-request-R68} \ +} +# ||005.tv/data/attachment/forum/*.gif$domain=dilidili.com (easylistchina.txt: 1285) +.005.tv/data/attachment/forum/.*\.gif + +#ab2p-block-request-R69 +{+client-header-tagger{ab2p-block-request-R69} \ +} +# /aeiou/*$domain=discuss.com.hk|uwants.com (easylistchina.txt: 1141) +/(.*/)?aeiou/.* + +#ab2p-block-request-R70 +{+client-header-tagger{ab2p-block-request-R70} \ +} +# /wxhfm.html$domain=dm5.com|dm5.hk (easylistchina.txt: 1250) +/(.*/)?wxhfm\.html +wxhfm.html*. +# /wxh.js$domain=dm5.com|dm5.hk (easylistchina.txt: 1249) +/(.*/)?wxh\.js +wxh.js*. + +#ab2p-block-request-R71 +{+client-header-tagger{ab2p-block-request-R71} \ +} +# ||taobaocdn.com^$domain=dnwx.com|snybw.com (easylistchina.txt: 4742) +.taobaocdn.com + +#ab2p-block-request-R72 +{+client-header-tagger{ab2p-block-request-R72} \ +} +# /banner/*$domain=dolc.de|dolc.info|leiphone.com (easylistchina.txt: 1152) +/(.*/)?banner/.* + +#ab2p-block-request-R73 +{+client-header-tagger{ab2p-block-request-R73} \ +} +# ||1.baidu.com^$popup,domain=douban.com (easylistchina.txt: 1069) +.1.baidu.com + +#ab2p-block-request-R74 +{+client-header-tagger{ab2p-block-request-R74} \ +} +# /static/media/curl.swf$domain=duba.com (easylistchina.txt: 1231) +/(.*/)?static/media/curl\.swf + +#ab2p-block-request-R75 +{+client-header-tagger{ab2p-block-request-R75} \ +} +# |http:$domain=e.70e.com|e701.net (easylistchina.txt: 1267) + +#ab2p-block-request-R76 +{+client-header-tagger{ab2p-block-request-R76} \ +} +# /EZ-YAHOO/*$domain=ezvivi.com (easylistchina.txt: 1164) +/(.*/)?EZ-YAHOO/.* + +#ab2p-block-request-R77 +{+client-header-tagger{ab2p-block-request-R77} \ +} +# /pagead/*$domain=fankudo.com (easylistchina.txt: 1221) +/(.*/)?pagead/.* + +#ab2p-block-request-R79 +{+client-header-tagger{ab2p-block-request-R79} \ +} +# ||k.youku.com^$domain=flvcd.com (easylistchina.txt: 3690) +.k.youku.com + +#ab2p-block-request-R80 +{+client-header-tagger{ab2p-block-request-R80} \ +} +# ||cj.qidian.com/Picture/$domain=forum.qidian.com|sosu.qidian.com (easylistchina.txt: 2474) +.cj.qidian.com/Picture/ + +#ab2p-block-request-R81 +{+client-header-tagger{ab2p-block-request-R81} \ +} +# /jquery.$domain=game.macx.cn (easylistchina.txt: 1194) +/(.*/)?jquery\. +jquery.*. + +#ab2p-block-request-R82 +{+client-header-tagger{ab2p-block-request-R82} \ +} +# ||8kele.com^$~collapse,domain=gamer.com.tw (easylistchina.txt: 1887) +.8kele.com +# /web/ad/*$domain=gamer.com.tw (easylistchina.txt: 1243) +/(.*/)?web/ad/.* + +#ab2p-block-request-R83 +{+client-header-tagger{ab2p-block-request-R83} \ +} +# /marketing/cover/*$domain=geekpark.net (easylistchina.txt: 1204) +/(.*/)?marketing/cover/.* + +#ab2p-block-request-R84 +{+client-header-tagger{ab2p-block-request-R84} \ +} +# ||info.lm.tv.sohu.com^$domain=gezila.com (easylistchina.txt: 3475) +.info.lm.tv.sohu.com + +#ab2p-block-request-R85 +{+client-header-tagger{ab2p-block-request-R85} \ +} +# ||top.taobao.com/interface_v2.php?$domain=gougousoso.com (easylistchina.txt: 4835) +.top.taobao.com/interface_v2\.php\? + +#ab2p-block-request-R86 +{+client-header-tagger{ab2p-block-request-R86} \ +} +# /bao/uploaded/*$domain=hacg.lol (easylistchina.txt: 1154) +/(.*/)?bao/uploaded/.* +# ||taobao.com$popup,domain=hacg.lol (easylistchina.txt: 1103) +.taobao.com*. + +#ab2p-block-request-R87 +{+client-header-tagger{ab2p-block-request-R87} \ +} +# /Images/ak47/*$domain=hanzify.net|hanzify.org (easylistchina.txt: 1181) +/(.*/)?Images/ak47/.* + +#ab2p-block-request-R88 +{+client-header-tagger{ab2p-block-request-R88} \ +} +# ||51img1.com^$domain=hdscg.com (easylistchina.txt: 1664) +.51img1.com + +#ab2p-block-request-R89 +{+client-header-tagger{ab2p-block-request-R89} \ +} +# ||xldytt.com^$popup,domain=henbt.com (easylistchina.txt: 1107) +.xldytt.com + +#ab2p-block-request-R91 +{+client-header-tagger{ab2p-block-request-R91} \ +} +# /nfs/ad/*$domain=hkbici.com (easylistchina.txt: 1216) +/(.*/)?nfs/ad/.* +# /attachment/ad/*$domain=hkbici.com (easylistchina.txt: 1147) +/(.*/)?attachment/ad/.* + +#ab2p-block-request-R92 +{+client-header-tagger{ab2p-block-request-R92} \ +} +# ||megalife.com.hk^$domain=hkgolden.com (easylistchina.txt: 3916) +.megalife.com.hk + +#ab2p-block-request-R95 +{+client-header-tagger{ab2p-block-request-R95} \ +} +# ||alicdn.com^*.jpg$domain=htai.me (easylistchina.txt: 2071) +.alicdn.com/.*\.jpg +# ||alicdn.com^*.gif$domain=htai.me (easylistchina.txt: 2070) +.alicdn.com/.*\.gif + +#ab2p-block-request-R96 +{+client-header-tagger{ab2p-block-request-R96} \ +} +# ||item.taobao.com^$domain=iask.sina.com.cn (easylistchina.txt: 3527) +.item.taobao.com + +#ab2p-block-request-R97 +{+client-header-tagger{ab2p-block-request-R97} \ +} +# /tres/recommend/*$domain=ifeng.com (easylistchina.txt: 1237) +/(.*/)?tres/recommend/.* + +#ab2p-block-request-R98 +{+client-header-tagger{ab2p-block-request-R98} \ +} +# /^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf/$domain=iqiyi.com (easylistchina.txt: 1133) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.iqiyi\\\.com\\/common\\/flashplayer\\/\[0-9\]\{8\}/\[0-9a-z\]\{32\}\.swf/ +/^http:\/\/www\.iqiyi\.com\/common\/flashplayer\/[0-9]{8}/[0-9a-z]{32}.swf +# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina.txt: 1095) +.miaozhen.com + +#ab2p-block-request-R99 +{+client-header-tagger{ab2p-block-request-R99} \ +} +# /^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg)/$domain=itjsb.com (easylistchina.txt: 1134) +/(.*/)?[^\w%.-]http:\\/\\/www\\\.itjsb\\\.com\\/\[a-z0-9A-Z\]\+\\\.\(gif\|jpg\)/ +/^http:\/\/www\.itjsb\.com\/[a-z0-9A-Z]+\.(gif|jpg) + +#ab2p-block-request-R100 +{+client-header-tagger{ab2p-block-request-R100} \ +} +# ||imgchr.com^$domain=iyejie.com (easylistchina.txt: 3453) +.imgchr.com + +#ab2p-block-request-R101 +{+client-header-tagger{ab2p-block-request-R101} \ +} +# ||riju.com/pr/$domain=jpfans.com|jpseek.com (easylistchina.txt: 4392) +.riju.com/pr/ +# ||jpunion.com^$domain=jpfans.com|jpseek.com (easylistchina.txt: 3630) +.jpunion.com +# /img/kana.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1191) +/(.*/)?img/kana\.jpg +# /img/disc.jpg$domain=jpfans.com|jpseek.com (easylistchina.txt: 1190) +/(.*/)?img/disc\.jpg + +#ab2p-block-request-R102 +{+client-header-tagger{ab2p-block-request-R102} \ +} +# ||qq.com/bqq_qfpic/$domain=keywin.org (easylistchina.txt: 4321) +.qq.com/bqq_qfpic/ + +#ab2p-block-request-R103 +{+client-header-tagger{ab2p-block-request-R103} \ +} +# /?age=1&$domain=kxddd.com|scokl.com|see3r.com|shcle.com|shclk.com|ttft.in|xhcbb.com|yzhlive.com (easylistchina.txt: 1132) +/(.*/)?\?age=1& + +#ab2p-block-request-R104 +{+client-header-tagger{ab2p-block-request-R104} \ +} +# /img/*.gif$domain=lepan.cc|sx566.com|vvpan.com (easylistchina.txt: 1187) +/(.*/)?img/.*\.gif + +#ab2p-block-request-R105 +{+client-header-tagger{ab2p-block-request-R105} \ +} +# .fancybox.$domain=life.com.tw (easylistchina.txt: 1117) +/.*\.fancybox\. +.*.fancybox.*. + +#ab2p-block-request-R106 +{+client-header-tagger{ab2p-block-request-R106} \ +} +# ||tietuku.com^*.gif$domain=lightnovel.cn|xdjishu.com (easylistchina.txt: 4795) +.tietuku.com/.*\.gif + +#ab2p-block-request-R107 +{+client-header-tagger{ab2p-block-request-R107} \ +} +# ||gp.jstv.com^$domain=live.jstv.com (easylistchina.txt: 3028) +.gp.jstv.com + +#ab2p-block-request-R108 +{+client-header-tagger{ab2p-block-request-R108} \ +} +# /da.aspx|$domain=live8bo.com|live8bo.net|live8bo1.com|zqzq.com (easylistchina.txt: 1162) +/(.*/)?da\.aspx$ +da.aspx + +#ab2p-block-request-R109 +{+client-header-tagger{ab2p-block-request-R109} \ +} +# /js/index_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1197) +/(.*/)?js/index_ +# .com/js/l_$domain=ltwbook.com|ltxsw.com|ltxszw.com (easylistchina.txt: 1114) +/.*\.com/js/l_ +.*.com/js/l_ + +#ab2p-block-request-R110 +{+client-header-tagger{ab2p-block-request-R110} \ +} +# ||55.la/anonymous/banner/$domain=lxty66.com (easylistchina.txt: 1717) +.55.la/anonymous/banner/ + +#ab2p-block-request-R111 +{+client-header-tagger{ab2p-block-request-R111} \ +} +# ||pchome.com.tw/iframe/$domain=mail.pchome.com.tw (easylistchina.txt: 4131) +.pchome.com.tw/iframe/ + +#ab2p-block-request-R112 +{+client-header-tagger{ab2p-block-request-R112} \ +} +# ||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com (easylistchina.txt: 3591) +.jiaoyou8.com + +#ab2p-block-request-R113 +{+client-header-tagger{ab2p-block-request-R113} \ +} +# ||picuphost.com^$domain=mmload.info (easylistchina.txt: 4195) +.picuphost.com + +#ab2p-block-request-R115 +{+client-header-tagger{ab2p-block-request-R115} \ +} +# /js/adBom.js$domain=myqcloud.com (easylistchina.txt: 1195) +/(.*/)?js/adBom\.js + +#ab2p-block-request-R116 +{+client-header-tagger{ab2p-block-request-R116} \ +} +# ||www.china.com.cn/node_$domain=news.china.com.cn (easylistchina.txt: 5067) +.www.china.com.cn/node_ + +#ab2p-block-request-R117 +{+client-header-tagger{ab2p-block-request-R117} \ +} +# _iframe.htm|$domain=news.cn|xinhuanet.com (easylistchina.txt: 1264) +/.*_iframe\.htm$ + +#ab2p-block-request-R118 +{+client-header-tagger{ab2p-block-request-R118} \ +} +# .com/tps/$domain=ocucn.com (easylistchina.txt: 1115) +/.*\.com/tps/ +.*.com/tps/ + +#ab2p-block-request-R119 +{+client-header-tagger{ab2p-block-request-R119} \ +} +# /upload/gad/*$domain=pbzy.com|shanzhaiben.com (easylistchina.txt: 1239) +/(.*/)?upload/gad/.* + +#ab2p-block-request-R120 +{+client-header-tagger{ab2p-block-request-R120} \ +} +# ||baidu.com^$domain=pos.baidu.com (easylistchina.txt: 2177) +.baidu.com + +#ab2p-block-request-R121 +{+client-header-tagger{ab2p-block-request-R121} \ +} +# ||imgbus.com^$domain=qiannao.com|ref.so (easylistchina.txt: 3450) +.imgbus.com + +#ab2p-block-request-R122 +{+client-header-tagger{ab2p-block-request-R122} \ +} +# /950-90.gif$domain=qire213.com (easylistchina.txt: 1131) +/(.*/)?950-90\.gif +950-90.gif*. + +#ab2p-block-request-R123 +{+client-header-tagger{ab2p-block-request-R123} \ +} +# /xybgg.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1253) +/(.*/)?xybgg\.gif +xybgg.gif*. +# /img/br650.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1189) +/(.*/)?img/br650\.gif +# /img/br300.gif$domain=qzntv.com|qzwb.com (easylistchina.txt: 1188) +/(.*/)?img/br300\.gif + +#ab2p-block-request-R124 +{+client-header-tagger{ab2p-block-request-R124} \ +} +# ||howbbs.net^$domain=ref.so (easylistchina.txt: 3245) +.howbbs.net + +#ab2p-block-request-R125 +{+client-header-tagger{ab2p-block-request-R125} \ +} +# /afp/*$domain=scol.com.cn (easylistchina.txt: 1143) +/(.*/)?afp/.* + +#ab2p-block-request-R126 +{+client-header-tagger{ab2p-block-request-R126} \ +} +# /images/20$domain=sex169.info|sex169.org (easylistchina.txt: 1179) +/(.*/)?images/20 + +#ab2p-block-request-R127 +{+client-header-tagger{ab2p-block-request-R127} \ +} +# ||iweek.ly^$domain=share.popgo.org (easylistchina.txt: 3556) +.iweek.ly + +#ab2p-block-request-R128 +{+client-header-tagger{ab2p-block-request-R128} \ +} +# ||url.cn^$domain=shuajizhijia.com (easylistchina.txt: 4915) +.url.cn + +#ab2p-block-request-R130 +{+client-header-tagger{ab2p-block-request-R130} \ +} +# /ycpiframe.aspx$domain=strtv.cn (easylistchina.txt: 1254) +/(.*/)?ycpiframe\.aspx +ycpiframe.aspx*. + +#ab2p-block-request-R131 +{+client-header-tagger{ab2p-block-request-R131} \ +} +# /sungg/*$domain=sun0769.com (easylistchina.txt: 1232) +/(.*/)?sungg/.* + +#ab2p-block-request-R132 +{+client-header-tagger{ab2p-block-request-R132} \ +} +# ||junph.cn^$domain=tiexue.net (easylistchina.txt: 3665) +.junph.cn + +#ab2p-block-request-R133 +{+client-header-tagger{ab2p-block-request-R133} \ +} +# ||yupoo.com/3126961304/$domain=ttmeiju.com (easylistchina.txt: 5293) +.yupoo.com/3126961304/ + +#ab2p-block-request-R135 +{+client-header-tagger{ab2p-block-request-R135} \ +} +# /lagou-$domain=uisdc.com (easylistchina.txt: 1203) +/(.*/)?lagou- +lagou-*. + +#ab2p-block-request-R136 +{+client-header-tagger{ab2p-block-request-R136} \ +} +# /bannerpic/*$domain=uopera.net (easylistchina.txt: 1153) +/(.*/)?bannerpic/.* + +#ab2p-block-request-R138 +{+client-header-tagger{ab2p-block-request-R138} \ +} +# /assets/sidebar/*$domain=v2ex.com (easylistchina.txt: 1145) +/(.*/)?assets/sidebar/.* + +#ab2p-block-request-R139 +{+client-header-tagger{ab2p-block-request-R139} \ +} +# ||alicdn.com^$domain=wangyueblog.com|xiadele.com|xm9x.net (easylistchina.txt: 2069) +.alicdn.com + +#ab2p-block-request-R140 +{+client-header-tagger{ab2p-block-request-R140} \ +} +# ||imgur.com^$domain=wgun.net (easylistchina.txt: 3467) +.imgur.com + +#ab2p-block-request-R141 +{+client-header-tagger{ab2p-block-request-R141} \ +} +# ||uploadhouse.com^*.gif$domain=wishct.com (easylistchina.txt: 4914) +.uploadhouse.com/.*\.gif + +#ab2p-block-request-R142 +{+client-header-tagger{ab2p-block-request-R142} \ +} +# /wp-content/uploads/*vpn$domain=wowrk.com|x-berry.com (easylistchina.txt: 1246) +/(.*/)?wp-content/uploads/.*vpn +# /wp-content/uploads/*hidemyass$domain=wowrk.com|x-berry.com (easylistchina.txt: 1245) +/(.*/)?wp-content/uploads/.*hidemyass +# /Webbanner_$domain=wowrk.com|x-berry.com (easylistchina.txt: 1244) +/(.*/)?Webbanner_ +# /ad_nydus.png$domain=wowrk.com|x-berry.com (easylistchina.txt: 1137) +/(.*/)?ad_nydus\.png + +#ab2p-block-request-R143 +{+client-header-tagger{ab2p-block-request-R143} \ +} +# /attachment/album/*$domain=www.52hardware.com (easylistchina.txt: 1148) +/(.*/)?attachment/album/.* + +#ab2p-block-request-R144 +{+client-header-tagger{ab2p-block-request-R144} \ +} +# ||zsg.kimi.com.tw^$domain=www.gamer.com.tw (easylistchina.txt: 5407) +.zsg.kimi.com.tw +# .html|$domain=www.gamer.com.tw (easylistchina.txt: 1119) +/.*\.html$ +.*.html + +#ab2p-block-request-R146 +{+client-header-tagger{ab2p-block-request-R146} \ +} +# ||img*.itiexue.net/2*.gif$domain=www.tiexue.net (easylistchina.txt: 3420) +.img*./.*\.itiexue\.net/2.*\.gif +.img*.itiexue.net/2.*\.gif + +#ab2p-block-request-R147 +{+client-header-tagger{ab2p-block-request-R147} \ +} +# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1108) +.xmds.opd2c.com +# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1097) +.moezone.taobao.com +# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1073) +.acgpost.taobao.com +# /item.htm?$popup,domain=www.tsdm.net (easylistchina.txt: 1063) +/(.*/)?item\.htm\? + +#ab2p-block-request-R148 +{+client-header-tagger{ab2p-block-request-R148} \ +} +# ||yytcdn.com/swf/plugins_new.xml?$domain=yinyuetai.com (easylistchina.txt: 5311) +.yytcdn.com/swf/plugins_new\.xml\? + +#ab2p-block-request-R149 +{+client-header-tagger{ab2p-block-request-R149} \ +} +# /r/video/*$domain=youxi.baidu.com (easylistchina.txt: 1223) +/(.*/)?r/video/.* + +#ab2p-block-request-R150 +{+client-header-tagger{ab2p-block-request-R150} \ +} +# ||googleusercontent.com^*=w800-h352-no$domain=yuyu780906.blogspot.com|yuyu780906.blogspot.hk|yuyu780906.blogspot.tw (easylistchina.txt: 3021) +.googleusercontent.com/.*=w800-h352-no + +#ab2p-block-request-R151 +{+client-header-tagger{ab2p-block-request-R151} \ +} +# ||srcdd.com^$domain=zasv.com (easylistchina.txt: 4650) +.srcdd.com + +#ab2p-block-request-R152 +{+client-header-tagger{ab2p-block-request-R152} \ +} +# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina.txt: 1093) +.kanzipai.com + +#ab2p-block-request-Rn153 +{+client-header-tagger{ab2p-block-request-Rn153} \ +} +# |http://*/gg/$domain=~11185.cn (easylistchina.txt: 260) +/(.*/)?gg/ + +#ab2p-block-request-Rn159 +{+client-header-tagger{ab2p-block-request-Rn159} \ +} +# /duilian.$domain=~duilian.msra.cn (easylistchina.txt: 145) +/(.*/)?duilian\. +duilian.*. + +#ab2p-block-request-Rn161 +{+client-header-tagger{ab2p-block-request-Rn161} \ +} +# /floatad.$domain=~fwxgx.com (easylistchina.txt: 151) +/(.*/)?floatad\. +floatad.*. + +#ab2p-block-request-Rn163 +{+client-header-tagger{ab2p-block-request-Rn163} \ +} +# ||rm.sina.com.cn^$domain=~lady.weibo.com (easylistchina.txt: 4399) +.rm.sina.com.cn + +#ab2p-block-request-Rn164 +{+client-header-tagger{ab2p-block-request-Rn164} \ +} +# ||lianmeng.360.cn^$domain=~lianmeng.360.cn (easylistchina.txt: 861) +.lianmeng.360.cn + +#ab2p-block-request-Rn166 +{+client-header-tagger{ab2p-block-request-Rn166} \ +} +# |http://*.tw/ad/$domain=~ruten.com.tw (easylistchina.txt: 254) +/.*\.tw/ad/ +.*.tw/ad/ + +#ab2p-block-request-Rn167 +{+client-header-tagger{ab2p-block-request-Rn167} \ +} +# |http://*/js/ad.$domain=~sac.net.cn (easylistchina.txt: 264) +/(.*/)?js/ad\. + +#ab2p-block-request-Rn169 +{+client-header-tagger{ab2p-block-request-Rn169} \ +} +# ||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com (easylistchina.txt: 4978) +.wan.sogoucdn.com/cdn/flash/ + +#ab2p-block-request-Rn170 +{+client-header-tagger{ab2p-block-request-Rn170} \ +} +# ||ifengimg.com/mappa/$domain=~tech.ifeng.com (easylistchina.txt: 3355) +.ifengimg.com/mappa/ + +#ab2p-block-request-Rn171 +{+client-header-tagger{ab2p-block-request-Rn171} \ +} +# ||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com (easylistchina.txt: 70) +.s.yimg.com/.*/flash_general_ + +#ab2p-block-request-Rn172 +{+client-header-tagger{ab2p-block-request-Rn172} \ +} +# ||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn (easylistchina.txt: 4047) +.news.sina.com.cn/pfpnews/js/libweb\.js + +#ab2p-block-request-Rn173 +{+client-header-tagger{ab2p-block-request-Rn173} \ +} +# ||yimg.com/no/$domain=~yahoo.com (easylistchina.txt: 5236) +.yimg.com/no/ + +#ab2p-block-request-Rn174 +{+client-header-tagger{ab2p-block-request-Rn174} \ +} +# /picad/*$domain=~ychr.com (easylistchina.txt: 203) +/(.*/)?picad/.* + +#ab2p-block-request-Rt +{+client-header-tagger{ab2p-block-request-Rt} \ +} +# ||vnet.cn^*.html?$popup,third-party (easylistchina.txt: 1106) +.vnet.cn/.*\.html\? +# ||todayapp.cc^$popup,third-party (easylistchina.txt: 1105) +.todayapp.cc +# ||son999.com^$popup,third-party (easylistchina.txt: 1101) +.son999.com +# ||moe.005.tv^$popup,third-party (easylistchina.txt: 1096) +.moe.005.tv +# ||iswan.cn^$popup,third-party (easylistchina.txt: 1091) +.iswan.cn +# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina.txt: 1086) +.gd.ct10000.com/.*/push/ +# ||gd.189.cn^*/push/$popup,third-party (easylistchina.txt: 1085) +.gd.189.cn/.*/push/ +# ||gd.189.cn/push/$popup,third-party (easylistchina.txt: 1084) +.gd.189.cn/push/ +# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina.txt: 1083) +.gd.189.cn/gz/promotion/ +# ||gd.189.cn/ad/$popup,third-party (easylistchina.txt: 1082) +.gd.189.cn/ad/ +# ||dhqp68.com^$popup,third-party (easylistchina.txt: 1080) +.dhqp68.com +# ||093game.com^$popup,third-party (easylistchina.txt: 1068) +.093game.com +# /pushstart.aspx?$popup,third-party (easylistchina.txt: 1066) +/(.*/)?pushstart\.aspx\? +# /pushportal/PushPortalServer$popup,third-party (easylistchina.txt: 1065) +/(.*/)?pushportal/PushPortalServer +# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina.txt: 1062) +/(.*/)?BadwebRemindPage\.aspx\?param= +# .com/?Intr=$popup,third-party (easylistchina.txt: 1060) +/.*\.com/\?Intr= +.*.com/\?Intr= +# .com/?aff=$popup,third-party (easylistchina.txt: 1059) +/.*\.com/\?aff= +.*.com/\?aff= +# .189.gd^*.html?p=$popup,third-party (easylistchina.txt: 1058) +/.*\.189\.gd[^\w%.-].*\.html\?p= +.*.189.gd/.*\.html\?p= + +#ab2p-block-request-Xx +{+client-header-tagger{ab2p-block-request-Xx} \ +} +# ||ithome.com/html/$xmlhttprequest (easylistchina.txt: 3529) +.ithome.com/html/ + +#ab2p-block-xframe +{+server-header-filter{ab2p-xframe-filter} \ +} +TAG:^ab2p-block-xframe$ +# ||yxdd.com^$subdocument (easylistchina.txt: 5301) +.yxdd.com +# ||ylnet.com.cn/inc/ad$subdocument (easylistchina.txt: 5255) +.ylnet.com.cn/inc/ad +# ||xiaoliaolianmeng.com^$subdocument (easylistchina.txt: 5104) +.xiaoliaolianmeng.com +# ||winvvv.com^$subdocument (easylistchina.txt: 5042) +.winvvv.com +# ||wholehk.com/madads$subdocument (easylistchina.txt: 5035) +.wholehk.com/madads +# ||wan.sogou.com/cdn/$subdocument (easylistchina.txt: 4975) +.wan.sogou.com/cdn/ +# ||w010w.com.cn^$subdocument (easylistchina.txt: 4972) +.w010w.com.cn +# ||vanpeople.com/ad$subdocument (easylistchina.txt: 4935) +.vanpeople.com/ad +# ||uuu9.tieba.com^$subdocument (easylistchina.txt: 4924) +.uuu9.tieba.com +# ||uho.com.tw^$subdocument (easylistchina.txt: 4899) +.uho.com.tw +# ||tvf4.com^$subdocument (easylistchina.txt: 4860) +.tvf4.com +# ||tasteforlife.com.tw^$subdocument (easylistchina.txt: 4751) +.tasteforlife.com.tw +# ||sz.zj.cn/info.php?fid=$subdocument (easylistchina.txt: 4719) +.sz.zj.cn/info\.php\?fid= +# ||strip.taobaocdn.com/tfscom/$subdocument (easylistchina.txt: 4694) +.strip.taobaocdn.com/tfscom/ +# ||stnn.cc/images/xy/300$subdocument (easylistchina.txt: 4685) +.stnn.cc/images/xy/300 +# ||siyu88.net/g$subdocument (easylistchina.txt: 4600) +.siyu88.net/g +# ||sina.com.tw^$subdocument (easylistchina.txt: 4557) +.sina.com.tw +# ||sh114so.com^$subdocument (easylistchina.txt: 4484) +.sh114so.com +# ||same*.jrj.com.cn^$script,subdocument (easylistchina.txt: 4439) +.same*./.*\.jrj\.com\.cn[^\w%.-] +.same*.jrj.com.cn +# ||readnovel.com/js/$subdocument (easylistchina.txt: 4371) +.readnovel.com/js/ +# ||qqtz.com/ad$subdocument (easylistchina.txt: 4341) +.qqtz.com/ad +# ||qq.com/game/footerbar$subdocument (easylistchina.txt: 4323) +.qq.com/game/footerbar +# ||q-touch.com.tw^$subdocument (easylistchina.txt: 4248) +.q-touch.com.tw +# ||pfp.sina.com.cn^$script,subdocument (easylistchina.txt: 4155) +.pfp.sina.com.cn +# ||pfizer.com.tw^$subdocument (easylistchina.txt: 4154) +.pfizer.com.tw +# ||ouyaoxiazai.com^$script,subdocument (easylistchina.txt: 4104) +.ouyaoxiazai.com +# ||nutrimate.com.tw^$subdocument (easylistchina.txt: 4075) +.nutrimate.com.tw +# ||narutom.com/v2/v/$subdocument (easylistchina.txt: 4026) +.narutom.com/v2/v/ +# ||ms211.com/about/$subdocument (easylistchina.txt: 3974) +.ms211.com/about/ +# ||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument (easylistchina.txt: 3953) +.momoshop.com.tw/goods/GoodsDetail\.jsp\? +# ||mahua.com/api/$subdocument (easylistchina.txt: 3885) +.mahua.com/api/ +# ||javjunkies.com/FL$subdocument (easylistchina.txt: 3569) +.javjunkies.com/FL +# ||images.china.cn^*first/$subdocument (easylistchina.txt: 3404) +.images.china.cn/.*first/ +# ||hoopchina.com.cn/topn$subdocument (easylistchina.txt: 3222) +.hoopchina.com.cn/topn +# ||happydown.com^$script,subdocument (easylistchina.txt: 3127) +.happydown.com +# ||games.ifeng.com^$subdocument (easylistchina.txt: 2950) +.games.ifeng.com +# ||gamersky.com^*.htm$subdocument (easylistchina.txt: 2949) +.gamersky.com/.*\.htm +# ||fumanhua.com/template/*/images/g_js/$subdocument (easylistchina.txt: 2914) +.fumanhua.com/template/.*/images/g_js/ +# ||enshi.cn/userfiles/esrb/$object,subdocument (easylistchina.txt: 2818) +.enshi.cn/userfiles/esrb/ +# ||dota2.uuu9.com^$subdocument (easylistchina.txt: 2692) +.dota2.uuu9.com +# ||dddbbb.net^$script,subdocument (easylistchina.txt: 2609) +.dddbbb.net +# ||dabaoku.com^$object,script,subdocument (easylistchina.txt: 2584) +.dabaoku.com +# ||d.5.to^$subdocument (easylistchina.txt: 2570) +.d.5.to +# ||cmsjs.eastmoney.com^$subdocument (easylistchina.txt: 2481) +.cmsjs.eastmoney.com +# ||club.pchome.net/*/localexchange.php$subdocument (easylistchina.txt: 2479) +.club.pchome.net/.*/localexchange\.php +# ||cj.qidian.com^$object,subdocument (easylistchina.txt: 2475) +.cj.qidian.com +# ||chinabyte.com/w/$subdocument (easylistchina.txt: 2415) +.chinabyte.com/w/ +# ||ccoo.cn/webdiy/$subdocument (easylistchina.txt: 2375) +.ccoo.cn/webdiy/ +# ||bxwx.org/js/$subdocument (easylistchina.txt: 2333) +.bxwx.org/js/ +# ||buzzhand.com/images/$subdocument (easylistchina.txt: 2327) +.buzzhand.com/images/ +# ||bunnybee.com.tw/bee/$subdocument (easylistchina.txt: 2322) +.bunnybee.com.tw/bee/ +# ||blog.china.com/u/dvpush/$subdocument (easylistchina.txt: 2279) +.blog.china.com/u/dvpush/ +# ||bcok.com^$subdocument (easylistchina.txt: 2202) +.bcok.com +# ||am.zdnet.com.cn/www/images/$image,object,subdocument (easylistchina.txt: 2080) +.am.zdnet.com.cn/www/images/ +# ||alexa.cn/ad$subdocument (easylistchina.txt: 2061) +.alexa.cn/ad +# ||adsproject.nownews.com^$subdocument (easylistchina.txt: 2024) +.adsproject.nownews.com +# ||9upk.com/js/$subdocument (easylistchina.txt: 1953) +.9upk.com/js/ +# ||99770.cc^$subdocument (easylistchina.txt: 1933) +.99770.cc +# ||6park.com^$subdocument (easylistchina.txt: 1820) +.6park.com +# ||51t.com^$subdocument (easylistchina.txt: 1667) +.51t.com +# ||3boys2girls.com^$subdocument (easylistchina.txt: 1613) +.3boys2girls.com +# ||189so.cn^$subdocument (easylistchina.txt: 1487) +.189so.cn +# ||173.255.139.114^$subdocument (easylistchina.txt: 1461) +.173.255.139.114 +# ||121zou.com^$subdocument (easylistchina.txt: 1386) +.121zou.com +# ||119xiazai.com^$subdocument (easylistchina.txt: 1376) +.119xiazai.com +# ||115.29.46.146^$subdocument (easylistchina.txt: 1370) +.115.29.46.146 +# ||114so.cn^$subdocument (easylistchina.txt: 1366) +.114so.cn +# ||yiqifa.com^$subdocument (easylistchina.txt: 1026) +.yiqifa.com +# ||4kt2.com^$subdocument (easylistchina.txt: 580) +.4kt2.com +# ||lu.sogou.com^$subdocument (easylistchina.txt: 62) +.lu.sogou.com + +#ab2p-block-xframe-R6 +{+client-header-tagger{ab2p-block-xframe-R6} \ +} +# /Sitefiles/*$subdocument,domain=123du.cc|bokon.net (easylistchina.txt: 1228) +/(.*/)?Sitefiles/.* + +#ab2p-block-xframe-R78 +{+client-header-tagger{ab2p-block-xframe-R78} \ +} +# /cooperation/*$script,subdocument,domain=firefox.huanqiu.com (easylistchina.txt: 1160) +/(.*/)?cooperation/.* + +#ab2p-block-xframe-R82 +{+client-header-tagger{ab2p-block-xframe-R82} \ +} +# /gamer/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1169) +/(.*/)?gamer/.* +# /baha/*$subdocument,domain=gamer.com.tw (easylistchina.txt: 1150) +/(.*/)?baha/.* + +#ab2p-block-xframe-R90 +{+client-header-tagger{ab2p-block-xframe-R90} \ +} +# ||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.stock.yahoo.com (easylistchina.txt: 4431) +.s.yimg.com/ja/ap/ + +#ab2p-block-xframe-R93 +{+client-header-tagger{ab2p-block-xframe-R93} \ +} +# |http:$subdocument,domain=howbbs.com|pc6.com|tytl.tk (easylistchina.txt: 1271) + +#ab2p-block-xframe-R94 +{+client-header-tagger{ab2p-block-xframe-R94} \ +} +# ||163.com/special/$subdocument,domain=hrb.house.163.com (easylistchina.txt: 1423) +.163.com/special/ + +#ab2p-block-xframe-Rn158 +{+client-header-tagger{ab2p-block-xframe-Rn158} \ +} +# ||acg.178.com^*/t_$subdocument,domain=~dmzj.com (easylistchina.txt: 1976) +.acg.178.com/.*/t_ + +#ab2p-block-xframe-Rt +{+client-header-tagger{ab2p-block-xframe-Rt} \ +} +# ||niuza.com^$image,subdocument,third-party (easylistchina.txt: 890) +.niuza.com +# ||kiees.com^$image,subdocument,third-party (easylistchina.txt: 851) +.kiees.com + +#ab2p-block-xpopup +{+filter{ab2p-popup-filter} \ +} +TAG:^ab2p-block-xpopup$ +# ||zhubajie.com/?fromcode=$popup (easylistchina.txt: 1110) +.zhubajie.com/\?fromcode= +# ||yy18.info/yyrethanks18.$popup (easylistchina.txt: 1109) +.yy18.info/yyrethanks18\. +# ||t-movies.com.tw/pop.asp$popup (easylistchina.txt: 1102) +.t-movies.com.tw/pop\.asp +# ||sohu.com/i/?pvid=$popup (easylistchina.txt: 1100) +.sohu.com/i/\?pvid= +# ||smartor.org/iclk/?zoneid=$popup (easylistchina.txt: 1099) +.smartor.org/iclk/\?zoneid= +# ||qidian.com/showavd.$popup (easylistchina.txt: 1098) +.qidian.com/showavd\. +# ||kuai.xunlei.com/do_e_mu?data=$popup (easylistchina.txt: 1094) +.kuai.xunlei.com/do_e_mu\?data= +# ||jjwxc.net/jjad*.html$popup (easylistchina.txt: 1092) +.jjwxc.net/jjad.*\.html +# ||iqiyi.com/track$popup (easylistchina.txt: 1090) +.iqiyi.com/track +# ||ihualun.com^$popup (easylistchina.txt: 1089) +.ihualun.com +# ||hinet.net/product/promotion/$popup (easylistchina.txt: 1088) +.hinet.net/product/promotion/ +# ||greenet.cn^*_popu_$popup (easylistchina.txt: 1087) +.greenet.cn/.*_popu_ +# ||gamer.com.tw/adcounter.$popup (easylistchina.txt: 1081) +.gamer.com.tw/adcounter\. +# ||c.admaster.com.cn^$popup (easylistchina.txt: 1079) +.c.admaster.com.cn +# ||baidu.com/baidu.php?url=$popup (easylistchina.txt: 1078) +.baidu.com/baidu\.php\?url= +# ||baidu.com/adrc.$popup (easylistchina.txt: 1077) +.baidu.com/adrc\. +# ||ark.letv.com/t?$popup (easylistchina.txt: 1076) +.ark.letv.com/t\? +# ||aiwanma99.com^$popup (easylistchina.txt: 1075) +.aiwanma99.com +# ||ad.189so.cn^$popup (easylistchina.txt: 1074) +.ad.189so.cn +# ||9100300.com^$popup (easylistchina.txt: 1072) +.9100300.com +# ||133gp.com^$popup (easylistchina.txt: 1070) +.133gp.com +# /portalwlanad/pages/*$popup (easylistchina.txt: 1064) +/(.*/)?portalwlanad/pages/.* + +#ab2p-block-xpopup-R186t +{+client-header-tagger{ab2p-block-xpopup-R186t} \ +} +# |http:$popup,third-party,domain=520ccc.cc|5278.cc|5278bbs.com|67.212.233.37|99files.net|bfooru.info|bforu.info|byhh.org|downhhh.com|jandown.com|javjunkies.com|jxedt.com|kxddd.com|lamp99.com|mimima.com|rmdown.com|scokl.com|see3r.com|shcle.com|shclk.com|tenitt.info|ttft.in|xhcbb.com|xunfs.com|yzhlive.com (easylistchina.txt: 1067) + +#ab2p-block-xpopup-R37 +{+client-header-tagger{ab2p-block-xpopup-R37} \ +} +# ||taobao.com^$popup,domain=aadaili.com|ppdaili.com (easylistchina.txt: 1104) +.taobao.com + +#ab2p-block-xpopup-R40 +{+client-header-tagger{ab2p-block-xpopup-R40} \ +} +# /?$popup,domain=allanalpass.com|amy.gs|any.gs|cash4files.com|deb.gs|dyo.gs|eafyfsuh.net|filesonthe.net|galleries.bz|goneviral.com|linkbucks.com|megaline.co|miniurls.co|picbucks.com|qqc.co|rqq.co|sasontnwc.net|seriousdeals.net|theseblogs.com|tinylinks.co|tnabucks.com|tubeviral.com|ultrafiles.net|urlbeat.net|whackyvidz.com|yyv.co|zff.co (easylistchina.txt: 1061) +/(.*/)?\? + +#ab2p-block-xpopup-R53 +{+client-header-tagger{ab2p-block-xpopup-R53} \ +} +# ||85rere.com^$popup,domain=btbbt.cc (easylistchina.txt: 1071) +.85rere.com + +#ab2p-block-xpopup-R73 +{+client-header-tagger{ab2p-block-xpopup-R73} \ +} +# ||1.baidu.com^$popup,domain=douban.com (easylistchina.txt: 1069) +.1.baidu.com + +#ab2p-block-xpopup-R86 +{+client-header-tagger{ab2p-block-xpopup-R86} \ +} +# ||taobao.com$popup,domain=hacg.lol (easylistchina.txt: 1103) +.taobao.com*. + +#ab2p-block-xpopup-R89 +{+client-header-tagger{ab2p-block-xpopup-R89} \ +} +# ||xldytt.com^$popup,domain=henbt.com (easylistchina.txt: 1107) +.xldytt.com + +#ab2p-block-xpopup-R98 +{+client-header-tagger{ab2p-block-xpopup-R98} \ +} +# ||miaozhen.com^$popup,domain=iqiyi.com (easylistchina.txt: 1095) +.miaozhen.com + +#ab2p-block-xpopup-R147 +{+client-header-tagger{ab2p-block-xpopup-R147} \ +} +# ||xmds.opd2c.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1108) +.xmds.opd2c.com +# ||moezone.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1097) +.moezone.taobao.com +# ||acgpost.taobao.com^$popup,domain=www.tsdm.net (easylistchina.txt: 1073) +.acgpost.taobao.com +# /item.htm?$popup,domain=www.tsdm.net (easylistchina.txt: 1063) +/(.*/)?item\.htm\? + +#ab2p-block-xpopup-R152 +{+client-header-tagger{ab2p-block-xpopup-R152} \ +} +# ||kanzipai.com^$popup,domain=zhongzi.in (easylistchina.txt: 1093) +.kanzipai.com + +#ab2p-block-xpopup-Rt +{+client-header-tagger{ab2p-block-xpopup-Rt} \ +} +# ||vnet.cn^*.html?$popup,third-party (easylistchina.txt: 1106) +.vnet.cn/.*\.html\? +# ||todayapp.cc^$popup,third-party (easylistchina.txt: 1105) +.todayapp.cc +# ||son999.com^$popup,third-party (easylistchina.txt: 1101) +.son999.com +# ||moe.005.tv^$popup,third-party (easylistchina.txt: 1096) +.moe.005.tv +# ||iswan.cn^$popup,third-party (easylistchina.txt: 1091) +.iswan.cn +# ||gd.ct10000.com^*/push/$popup,third-party (easylistchina.txt: 1086) +.gd.ct10000.com/.*/push/ +# ||gd.189.cn^*/push/$popup,third-party (easylistchina.txt: 1085) +.gd.189.cn/.*/push/ +# ||gd.189.cn/push/$popup,third-party (easylistchina.txt: 1084) +.gd.189.cn/push/ +# ||gd.189.cn/gz/promotion/$popup,third-party (easylistchina.txt: 1083) +.gd.189.cn/gz/promotion/ +# ||gd.189.cn/ad/$popup,third-party (easylistchina.txt: 1082) +.gd.189.cn/ad/ +# ||dhqp68.com^$popup,third-party (easylistchina.txt: 1080) +.dhqp68.com +# ||093game.com^$popup,third-party (easylistchina.txt: 1068) +.093game.com +# /pushstart.aspx?$popup,third-party (easylistchina.txt: 1066) +/(.*/)?pushstart\.aspx\? +# /pushportal/PushPortalServer$popup,third-party (easylistchina.txt: 1065) +/(.*/)?pushportal/PushPortalServer +# /BadwebRemindPage.aspx?param=$popup,third-party (easylistchina.txt: 1062) +/(.*/)?BadwebRemindPage\.aspx\?param= +# .com/?Intr=$popup,third-party (easylistchina.txt: 1060) +/.*\.com/\?Intr= +.*.com/\?Intr= +# .com/?aff=$popup,third-party (easylistchina.txt: 1059) +/.*\.com/\?aff= +.*.com/\?aff= +# .189.gd^*.html?p=$popup,third-party (easylistchina.txt: 1058) +/.*\.189\.gd[^\w%.-].*\.html\?p= +.*.189.gd/.*\.html\?p= + +#-ab2p-unblock-dnt-nR +{-client-header-tagger{ab2p-unblock-dnt-nR} \ +} +TAG:^-ab2p-unblock-dnt-nR$ + +#-ab2p-unblock-elem-nR +{-client-header-tagger{ab2p-unblock-elem-nR} \ +} +TAG:^-ab2p-unblock-elem-nR$ + +#-ab2p-unblock-request-Aj-Cj-Xx-when-nR +{-client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-nR} \ +} +TAG:^-ab2p-unblock-request-Aj-Cj-Xx-when-nR$ + +#-ab2p-unblock-request-nC +{-server-header-tagger{ab2p-unblock-request-nC} \ +} +TAG:^-ab2p-unblock-request-nC$ + +#-ab2p-unblock-request-nR +{-client-header-tagger{ab2p-unblock-request-nR} \ +} +TAG:^-ab2p-unblock-request-nR$ + +#ab2p-unblock-dnt +{ \ +} +TAG:^ab2p-unblock-dnt$ +# @@||tmall.com/add? (easylistchina.txt: 10477) +.tmall.com/add\? +# @@||tbcdn.cn^*/click_track.js (easylistchina.txt: 10476) +.tbcdn.cn/.*/click_track\.js +# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina.txt: 10474) +.stjscn.s-msn.com/portal/hp/2011/udctrack\. +# @@||pingjs.qq.com/ping.js (easylistchina.txt: 10468) +.pingjs.qq.com/ping\.js +# @@||msn.wrating.com/a1.js (easylistchina.txt: 10466) +.msn.wrating.com/a1\.js +# @@||jd.com/setCookie? (easylistchina.txt: 10465) +.jd.com/setCookie\? +# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina.txt: 10463) +.guahao.cn/common/js/plugins/fingerprint\.js +# @@||g.alicdn.com^*/banner_ad_ (easylistchina.txt: 10458) +.g.alicdn.com/.*/banner_ad_ +# @@||count.video.sina.com.cn^*?video_ids= (easylistchina.txt: 10456) +.count.video.sina.com.cn/.*\?video_ids= +# @@||bagehd.com/iplookup. (easylistchina.txt: 10455) +.bagehd.com/iplookup\. +# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina.txt: 10454) +.autohome.com.cn/javascript/fingerprint\.js +# @@||analytics.163.com/ntes.js (easylistchina.txt: 10453) +.analytics.163.com/ntes\.js +# @@||alicdn.com^*/click_track.js (easylistchina.txt: 10452) +.alicdn.com/.*/click_track\.js +# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina.txt: 10451) +.aixifan.com/dotnet/20130418/script/fingerprint\. +# @@||7m.cn/v2/js/analyse.js (easylistchina.txt: 10450) +.7m.cn/v2/js/analyse\.js +# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina.txt: 10443) +.xnimg.cn/.*/nx/ugc/share/js/hotlist\.js +# @@||zjol.com.cn^*/index.jsp?newsid=$elemhide (easylistchina.txt: 10432) +.zjol.com.cn/.*/index\.jsp\?newsid= +# @@||zhibowu.com/ad2.htm (easylistchina.txt: 10431) +.zhibowu.com/ad2\.htm +# @@||zhaopin.cn^*/adbox_ (easylistchina.txt: 10430) +.zhaopin.cn/.*/adbox_ +# @@||zhaopin.cn/js/app/popShow. (easylistchina.txt: 10429) +.zhaopin.cn/js/app/popShow\. +# @@||youku.com^*^showAd (easylistchina.txt: 10428) +.youku.com/.*[^\w%.-]showAd +# @@||youku.com^*^adshow (easylistchina.txt: 10427) +.youku.com/.*[^\w%.-]adshow +# @@||yiqifa.com/ad_images/$~third-party (easylistchina.txt: 10425) +.yiqifa.com/ad_images/ +# @@||yinfu.cc/sid/function (easylistchina.txt: 10424) +.yinfu.cc/sid/function +# @@||yinfu.cc/sid/*play (easylistchina.txt: 10423) +.yinfu.cc/sid/.*play +# @@||yimuhe.com/n_js/advertiser.js (easylistchina.txt: 10422) +.yimuhe.com/n_js/advertiser\.js +# @@||yimg.jp/combo?*/ad/ (easylistchina.txt: 10421) +.yimg.jp/combo\?.*/ad/ +# @@||ydxxt.com/ad/ (easylistchina.txt: 10419) +.ydxxt.com/ad/ +# @@||yawin.cn/ad/$object-subrequest (easylistchina.txt: 10418) +.yawin.cn/ad/ +# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10417) +.xunleipu.com/a-d-j-s/a-d-7\.js +# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10416) +.xunleihao.com/a-d-j-s/a-d-7\.js +# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina.txt: 10415) +.xnimg.cn/n/apps/profile/modules/tuiguang/ +# @@||xintaoke.com/images/gg/*.jpg (easylistchina.txt: 10414) +.xintaoke.com/images/gg/.*\.jpg +# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina.txt: 10413) +.xinhuanet.com/2014/imgad/FS_2014weixin\.jpg +# @@||wubisheng.cn/style/pagead2.js (easylistchina.txt: 10412) +.wubisheng.cn/style/pagead2\.js +# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina.txt: 10411) +.wubisheng.cn/style/adsbygoogle\.js +# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina.txt: 10410) +.woxiu.com/xapi/offsite_swf_more\.php\?.*&type= +# @@||wowsai.com/data/files/ad/ (easylistchina.txt: 10409) +.wowsai.com/data/files/ad/ +# @@||wishdown.com/images/logo.gif (easylistchina.txt: 10408) +.wishdown.com/images/logo\.gif +# @@||win007.com/images/ad/qiu (easylistchina.txt: 10407) +.win007.com/images/ad/qiu +# @@||win007.com/image/75338867887z.gif (easylistchina.txt: 10406) +.win007.com/image/75338867887z\.gif +# @@||wholehk.com/madads728.htm (easylistchina.txt: 10405) +.wholehk.com/madads728\.htm +# @@||wholehk.com/adsbygoogle.js (easylistchina.txt: 10404) +.wholehk.com/adsbygoogle\.js +# @@||wfcmw.cn^*.radio. (easylistchina.txt: 10403) +.wfcmw.cn/.*\.radio\. +# @@||weibo.com/api/weipan/getAds (easylistchina.txt: 10402) +.weibo.com/api/weipan/getAds +# @@||webcrow.jp/adjs/ncskt.js (easylistchina.txt: 10401) +.webcrow.jp/adjs/ncskt\.js +# @@||veimg.cn/AdsShow/ (easylistchina.txt: 10400) +.veimg.cn/AdsShow/ +# @@||v1.cn/player/cloud/cloud_player (easylistchina.txt: 10399) +.v1.cn/player/cloud/cloud_player +# @@||v.rbc.cn/ad/ (easylistchina.txt: 10398) +.v.rbc.cn/ad/ +# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina.txt: 10397) +.up2stream.com/vjs/plugin/css/ads\.css +# @@||union.m.jd.com/click/ (easylistchina.txt: 10396) +.union.m.jd.com/click/ +# @@||union.easypass.cn/block/ (easylistchina.txt: 10395) +.union.easypass.cn/block/ +# @@||union.click.jd.com^ (easylistchina.txt: 10394) +.union.click.jd.com +# @@||union.bokecc.com/servlet/getvideofile? (easylistchina.txt: 10393) +.union.bokecc.com/servlet/getvideofile\? +# @@||union.bokecc.com/player? (easylistchina.txt: 10392) +.union.bokecc.com/player\? +# @@||union.bokecc.com/flash/$object (easylistchina.txt: 10391) +.union.bokecc.com/flash/ +# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina.txt: 10389) +.ujinbi.com/UpLoadFile/guanggao/ +# @@||ujinbi.com/AD/ (easylistchina.txt: 10388) +.ujinbi.com/AD/ +# @@||u9pan.com/images/ads/ (easylistchina.txt: 10386) +.u9pan.com/images/ads/ +# @@||tt1069.com/advert.js (easylistchina.txt: 10384) +.tt1069.com/advert\.js +# @@||toy9090.com^*/NR.gif (easylistchina.txt: 10383) +.toy9090.com/.*/NR\.gif +# @@||toy9090.com^*/NL.gif (easylistchina.txt: 10382) +.toy9090.com/.*/NL\.gif +# @@||totheglory.im/pic/ttg_logo (easylistchina.txt: 10381) +.totheglory.im/pic/ttg_logo +# @@||tompda.com/images/pix.swf (easylistchina.txt: 10380) +.tompda.com/images/pix\.swf +# @@||tmall.com/go/*/banner.php (easylistchina.txt: 10379) +.tmall.com/go/.*/banner\.php +# @@||tenpay.com^*?ADTAG= (easylistchina.txt: 10378) +.tenpay.com/.*\?ADTAG= +# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina.txt: 10377) +.tenpay.com/v2\.0/main/creditcard/portal_rpm_apply\.shtml +# @@||taobao.com^*&adgroupid= (easylistchina.txt: 10375) +.taobao.com/.*&adgroupid= +# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina.txt: 10374) +.taobao.com/go/app/tmall/login-api\.php\? +# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina.txt: 10373) +.tansuo.cntv.cn/.*/tansuo_Advertise\.js +# @@||sx566.com/templates/default/images/ad (easylistchina.txt: 10371) +.sx566.com/templates/default/images/ad +# @@||sudupan.com^*/*.gif (easylistchina.txt: 10370) +.sudupan.com/.*/.*\.gif +# @@||static.hdslb.com/ad-images/$image (easylistchina.txt: 10368) +.static.hdslb.com/ad-images/ +# @@||static.atm.youku.com^*.swf (easylistchina.txt: 10367) +.static.atm.youku.com/.*\.swf +# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina.txt: 10366) +.spbonow.com/UploadFiles/201505/2015051853456325\.gif +# @@||spbonow.com/images/ads/logo.gif (easylistchina.txt: 10365) +.spbonow.com/images/ads/logo\.gif +# @@||sjsmitaa.org/bin/showads. (easylistchina.txt: 10364) +.sjsmitaa.org/bin/showads\. +# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina.txt: 10363) +.sinaimg.cn/.*/deco/.*/sinaObj\.js +# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina.txt: 10361) +.sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra\.gif +# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina.txt: 10360) +.sinaimg.cn/dy/deco/.*/js/require\.js +# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina.txt: 10359) +.sinaimg.cn/dy/deco/.*/js/base\.js +# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina.txt: 10357) +.sinaimg.cn/ad/adimage/50x50_ +# @@||sina.com.hk^*_ads.cgi (easylistchina.txt: 10356) +.sina.com.hk/.*_ads\.cgi +# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina.txt: 10355) +.sina.com.cn/litong/zhitou/pic/close- +# @@||simba.taobao.com/?name=mcad$script (easylistchina.txt: 10354) +.simba.taobao.com/\?name=mcad +# @@||share.dmhy.*/generate-captcha? (easylistchina.txt: 10353) +.share.dmhy.*./(.*/)?generate-captcha\? +# @@||sf-express.com/.galleries/advertisement/ (easylistchina.txt: 10352) +.sf-express.com/\.galleries/advertisement/ +# @@||serve.netsh.org^$elemhide (easylistchina.txt: 10351) +.serve.netsh.org +# @@||selfimg.com.cn/?? (easylistchina.txt: 10350) +.selfimg.com.cn/\?\? +# @@||sdc.pingan.com^$~image (easylistchina.txt: 10349) +.sdc.pingan.com +# @@||sc.jb51.net/adimg/*.jpg (easylistchina.txt: 10348) +.sc.jb51.net/adimg/.*\.jpg +# @@||sakai.club/advertisement.js (easylistchina.txt: 10347) +.sakai.club/advertisement\.js +# @@||sakai-hk.com/advertisement.js (easylistchina.txt: 10346) +.sakai-hk.com/advertisement\.js +# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina.txt: 10345) +.saibeinews.com/index\.php\?m=poster&c=index&a=show_poster&id=2 +# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina.txt: 10343) +.ruten.com.tw/js/jquery\.ruten\.supertop_ad\.js +# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina.txt: 10341) +.regapi.37.com/api/p_register\.php\?login_account= +# @@||ref.so/templates/ref/short_show/adview_ (easylistchina.txt: 10340) +.ref.so/templates/ref/short_show/adview_ +# @@||rakuya.com.tw^*/common_ad. (easylistchina.txt: 10339) +.rakuya.com.tw/.*/common_ad\. +# @@||quwenjiemi.com/105.js? (easylistchina.txt: 10338) +.quwenjiemi.com/105\.js\? +# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina.txt: 10337) +.qqread.com/swf/qqread_rollpic\.swf +# @@||qq.com^*?ADTAG= (easylistchina.txt: 10336) +.qq.com/.*\?ADTAG= +# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina.txt: 10335) +.qq.com/server/website/CommWebGameSelect_ad\.js +# @@||qq.com/bossweb/jifen/ (easylistchina.txt: 10334) +.qq.com/bossweb/jifen/ +# @@||qiyipic.com/common/fix/pub_images/ (easylistchina.txt: 10333) +.qiyipic.com/common/fix/pub_images/ +# @@||qingdaoport.net/adv/random.jsp (easylistchina.txt: 10332) +.qingdaoport.net/adv/random\.jsp +# @@||qingcheng.com^*/ad (easylistchina.txt: 10331) +.qingcheng.com/.*/ad +# @@||qikuyou.com/images/js/adv.js (easylistchina.txt: 10330) +.qikuyou.com/images/js/adv\.js +# @@||qidian.com/ploy/20*.swf (easylistchina.txt: 10329) +.qidian.com/ploy/20.*\.swf +# @@||pub.alimama.com/common/adzone/ (easylistchina.txt: 10328) +.pub.alimama.com/common/adzone/ +# @@||ps123.net/MyFile/toptxt.js (easylistchina.txt: 10327) +.ps123.net/MyFile/toptxt\.js +# @@||pos.baidu.com/acom?di=u1840644& (easylistchina.txt: 10325) +.pos.baidu.com/acom\?di=u1840644& +# @@||pos.baidu.com/acom?di=u1705639& (easylistchina.txt: 10324) +.pos.baidu.com/acom\?di=u1705639& +# @@||pos.baidu.com/acom?di=u1671167& (easylistchina.txt: 10323) +.pos.baidu.com/acom\?di=u1671167& +# @@||pos.baidu.com/acom?di=u1460926& (easylistchina.txt: 10322) +.pos.baidu.com/acom\?di=u1460926& +# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina.txt: 10320) +.pmm.people.com.cn/main/s\?user=people\|homepage\|2013juxing +# @@||piccool.com/2home/phpAdsNew/ (easylistchina.txt: 10319) +.piccool.com/2home/phpAdsNew/ +# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina.txt: 10318) +.pic.zol-img.com.cn/2009/pix_index\.swf +# @@||photo.erji.com/tb/*.gif (easylistchina.txt: 10317) +.photo.erji.com/tb/.*\.gif +# @@||pep.com.cn/rjs/guanggao/ (easylistchina.txt: 10316) +.pep.com.cn/rjs/guanggao/ +# @@||ouyaoxiazai.com/shouyead.js (easylistchina.txt: 10312) +.ouyaoxiazai.com/shouyead\.js +# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina.txt: 10311) +.ooomm.com/ad/Whoyao_logo114\.png +# @@||ooomm.com/ad/icon/ (easylistchina.txt: 10310) +.ooomm.com/ad/icon/ +# @@||online.unionpay.com/ads/$script (easylistchina.txt: 10309) +.online.unionpay.com/ads/ +# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina.txt: 10308) +.omusic.com.tw/backend/uploadpic/adindex/ +# @@||newxing.com/a_d/downAddress.js (easylistchina.txt: 10307) +.newxing.com/a_d/downAddress\.js +# @@||news.u17i.com/advert/ (easylistchina.txt: 10306) +.news.u17i.com/advert/ +# @@||new7574.u.qiniudn.com^*^ad (easylistchina.txt: 10305) +.new7574.u.qiniudn.com/.*[^\w%.-]ad +# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina.txt: 10304) +.netded.com/plus/ad_js\.php\?aid=3$ +# @@||naruto.hk/ad/uy.js (easylistchina.txt: 10303) +.naruto.hk/ad/uy\.js +# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina.txt: 10302) +.mymusic.net.tw/js/ad/index_1\.js +# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina.txt: 10301) +.muzhiwan.com/forum\.php\?.*=300x250& +# @@||monnsutogatya.com^$elemhide (easylistchina.txt: 10300) +.monnsutogatya.com +# @@||mnighthk.net^$elemhide (easylistchina.txt: 10299) +.mnighthk.net +# @@||mnighthk.net/template/*/ad (easylistchina.txt: 10298) +.mnighthk.net/template/.*/ad +# @@||mm.maxthon.cn/ad/ (easylistchina.txt: 10297) +.mm.maxthon.cn/ad/ +# @@||miaozhen.com^*/m.suning. (easylistchina.txt: 10296) +.miaozhen.com/.*/m\.suning\. +# @@||meizu.com/fileserver/ad/img/ (easylistchina.txt: 10295) +.meizu.com/fileserver/ad/img/ +# @@||meiziweibo.com^$elemhide (easylistchina.txt: 10294) +.meiziweibo.com +# @@||ltxhcz.com/skin/default/images/ (easylistchina.txt: 10292) +.ltxhcz.com/skin/default/images/ +# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina.txt: 10291) +.life.tenpay.com/res/ad/cellphone/js/down_for_app\.js +# @@||letvcloud.com^*&showAd= (easylistchina.txt: 10289) +.letvcloud.com/.*&showAd= +# @@||letv.com*/tuiguang/$subdocument (easylistchina.txt: 10288) +.letv.com*./(.*/)?tuiguang/ +# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina.txt: 10286) +.l.qq.com/livemsg\?ty=web&ad_type= +# @@||kukuplay.com/upload/*.*.swf (easylistchina.txt: 10285) +.kukuplay.com/upload/.*\..*\.swf +# @@||joy.cn/service.php?*&showad= (easylistchina.txt: 10281) +.joy.cn/service\.php\?.*&showad= +# @@||jjjgame.com/plus/ad_ (easylistchina.txt: 10280) +.jjjgame.com/plus/ad_ +# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina.txt: 10279) +.jj.5ccc.net/scripts/new/pagetop\.js +# @@||jinhongweiqi.com/ad/update/ (easylistchina.txt: 10278) +.jinhongweiqi.com/ad/update/ +# @@||itjsb.com/bg.gif (easylistchina.txt: 10276) +.itjsb.com/bg\.gif +# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina.txt: 10275) +.itiexue.net/js/tiexue/statistic/wwwindex/ +# @@||indeep.com.tw^*/Showad. (easylistchina.txt: 10271) +.indeep.com.tw/.*/Showad\. +# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina.txt: 10270) +.indeep.com.tw/Images/Upload/AdPic/ +# @@||indeep.com.tw/images/ad.swf? (easylistchina.txt: 10269) +.indeep.com.tw/images/ad\.swf\? +# @@||img.ybbbs.com/2014/*app (easylistchina.txt: 10268) +.img.ybbbs.com/2014/.*app +# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina.txt: 10264) +.icbc.com.cn/Portal_Resources/Common/AdRes/ +# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina.txt: 10263) +.icbc.com.cn/Portal_Resources/Common/AdCss/ +# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina.txt: 10262) +.icbc.com.cn/ICBC_ADJS/ +# @@||icbc.com.cn/icbc/include/AD_ (easylistchina.txt: 10261) +.icbc.com.cn/icbc/include/AD_ +# @@||ibf.tw^$elemhide (easylistchina.txt: 10260) +.ibf.tw +# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina.txt: 10259) +.i3.sinaimg.cn/video/deco/2013/0325/js/ +# @@||hunantv.com/FrameWork/AFP/ (easylistchina.txt: 10258) +.hunantv.com/FrameWork/AFP/ +# @@||huelead.com/images/*ad (easylistchina.txt: 10257) +.huelead.com/images/.*ad +# @@||hkjc.com/banners/ (easylistchina.txt: 10256) +.hkjc.com/banners/ +# @@||hhtt.cn/web.php/ad/show (easylistchina.txt: 10255) +.hhtt.cn/web\.php/ad/show +# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina.txt: 10254) +.hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg\.js +# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina.txt: 10253) +.heikexs.com/wp-content/themes/Duoxs.*/js/user\.js +# @@||guancha.cn/ad/m_ (easylistchina.txt: 10251) +.guancha.cn/ad/m_ +# @@||gqzzw.com*/adview_ (easylistchina.txt: 10250) +.gqzzw.com*./(.*/)?adview_ +# @@||gqdzs.com*/adview_ (easylistchina.txt: 10249) +.gqdzs.com*./(.*/)?adview_ +# @@||gpsdlm.com/images/ad. (easylistchina.txt: 10248) +.gpsdlm.com/images/ad\. +# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina.txt: 10247) +.gov.cn/scripts/Comm/AdRotator\.js +# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina.txt: 10246) +.go.goyeah.com/adpolestar/ +# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina.txt: 10245) +.gg1z.com/statics/gg/greendown/logo\.gif +# @@||gg.yxdown.com/count/countzt.js (easylistchina.txt: 10244) +.gg.yxdown.com/count/countzt\.js +# @@||gg.img123456.com^ (easylistchina.txt: 10242) +.gg.img123456.com +# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina.txt: 10241) +.ganji.com/findjob/send_resume\..*&ad_type= +# @@||gamersky.com^*/dhgame_ (easylistchina.txt: 10240) +.gamersky.com/.*/dhgame_ +# @@||game.sina.com.tw/game_data/advertise/ (easylistchina.txt: 10239) +.game.sina.com.tw/game_data/advertise/ +# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina.txt: 10238) +.g.tbcdn.cn/tb/mercury/.*/ads/index\. +# @@||g.alicdn.com/??*/criteo (easylistchina.txt: 10237) +.g.alicdn.com/\?\?.*/criteo +# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina.txt: 10236) +.g.163.com/jr\?site=netease&affiliate=freemail +# @@||forum.51nb.com/images/*/ (easylistchina.txt: 10235) +.forum.51nb.com/images/.*/ +# @@||fharr.com^$generichide (easylistchina.txt: 10234) +.fharr.com +# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina.txt: 10232) +.esquirehk.com/action/adtag/\(type\)/googletag/\(method\)/async +# @@||emome.net/files/advertising/ (easylistchina.txt: 10231) +.emome.net/files/advertising/ +# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina.txt: 10230) +.eiv.baidu.com/hmt/icon/21\.gif +# @@||edgesuite.net^*/ad.css? (easylistchina.txt: 10229) +.edgesuite.net/.*/ad\.css\? +# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina.txt: 10228) +.eden.org.tw/themes/liger/images/banner_ +# @@||eden.org.tw*/script/ad_banner/ (easylistchina.txt: 10227) +.eden.org.tw*./(.*/)?script/ad_banner/ +# @@||ecma.bdimg.com/holmes/*.svg (easylistchina.txt: 10226) +.ecma.bdimg.com/holmes/.*\.svg +# @@||ecitic.com/eshop/advertise/ (easylistchina.txt: 10225) +.ecitic.com/eshop/advertise/ +# @@||ecitic.com/ads_ (easylistchina.txt: 10224) +.ecitic.com/ads_ +# @@||ebiotrade.com/jslibrary/js44.js (easylistchina.txt: 10223) +.ebiotrade.com/jslibrary/js44\.js +# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina.txt: 10218) +.e.cn.miaozhen.com/r/k=.*=http +# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina.txt: 10217) +.dzwww.com/ad/jsfiles/fillCon\.js +# @@||dvs.china.com/crossdomain.xml (easylistchina.txt: 10216) +.dvs.china.com/crossdomain\.xml +# @@||dvs.china.com/adv1.xml (easylistchina.txt: 10215) +.dvs.china.com/adv1\.xml +# @@||dvbcn.com/caches/poster_js/23.js (easylistchina.txt: 10214) +.dvbcn.com/caches/poster_js/23\.js +# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina.txt: 10213) +.dushiwenxue.com/add/article/pagetop\.js +# @@||duba.net/common/cf/common_6545_icon. (easylistchina.txt: 10212) +.duba.net/common/cf/common_6545_icon\. +# @@||downbank.cn/s1/yl.js (easylistchina.txt: 10211) +.downbank.cn/s1/yl\.js +# @@||down.cc/down/js/ad.js (easylistchina.txt: 10210) +.down.cc/down/js/ad\.js +# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina.txt: 10209) +.do189.com/zb_users/theme/duoyi/style/images/text_bg\.gif +# @@||dnvod.eu/ads/$object-subrequest (easylistchina.txt: 10208) +.dnvod.eu/ads/ +# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina.txt: 10207) +.disney.com.tw/tv/global/swf/banner728x90\.swf +# @@||dilidili.com/js/week.js (easylistchina.txt: 10206) +.dilidili.com/js/week\.js +# @@||daoju.qq.com/time/*/js/ad/ (easylistchina.txt: 10205) +.daoju.qq.com/time/.*/js/ad/ +# @@||damai.cn^*/TopAd/ (easylistchina.txt: 10204) +.damai.cn/.*/TopAd/ +# @@||cztv.com/player/*.swf?ad= (easylistchina.txt: 10203) +.cztv.com/player/.*\.swf\?ad= +# @@||csbew.com/FrameWork/AFP/ (easylistchina.txt: 10201) +.csbew.com/FrameWork/AFP/ +# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina.txt: 10200) +.cq.qq.com/js/cody/.*scroll_ad\.js +# @@||costco.com.tw/jsps/website/*AD (easylistchina.txt: 10197) +.costco.com.tw/jsps/website/.*AD +# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina.txt: 10196) +.content.s8bbs.com/ad/bbs/.*\.jpg +# @@||cntv.cn^*_ad.js (easylistchina.txt: 10195) +.cntv.cn/.*_ad\.js +# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina.txt: 10194) +.cnsofas.com/loldytt/js/jquery\.js +# @@||cnr.cn/gg/ (easylistchina.txt: 10193) +.cnr.cn/gg/ +# @@||cmbchina.com/ads/ (easylistchina.txt: 10192) +.cmbchina.com/ads/ +# @@||click.union.vip.com^ (easylistchina.txt: 10191) +.click.union.vip.com +# @@||click.union.jd.com^ (easylistchina.txt: 10190) +.click.union.jd.com +# @@||citysbs.com^*/swfupload/ (easylistchina.txt: 10189) +.citysbs.com/.*/swfupload/ +# @@||chinahr.com/images/phpads/ (easylistchina.txt: 10188) +.chinahr.com/images/phpads/ +# @@||cdn.wdlm.cn^*/ (easylistchina.txt: 10187) +.cdn.wdlm.cn/.*/ +# @@||cb.baidu.com/ecom?di=943217& (easylistchina.txt: 10182) +.cb.baidu.com/ecom\?di=943217& +# @@||cb.baidu.com/ecom?di=893557& (easylistchina.txt: 10181) +.cb.baidu.com/ecom\?di=893557& +# @@||cb.baidu.com/ecom?di=817641& (easylistchina.txt: 10180) +.cb.baidu.com/ecom\?di=817641& +# @@||cb.baidu.com/ecom?di=654997& (easylistchina.txt: 10179) +.cb.baidu.com/ecom\?di=654997& +# @@||cb.baidu.com/ecom?di=373107& (easylistchina.txt: 10178) +.cb.baidu.com/ecom\?di=373107& +# @@||cb.baidu.com/ecom?di=106878& (easylistchina.txt: 10177) +.cb.baidu.com/ecom\?di=106878& +# @@||buy.ccb.com/public/js/ad.js (easylistchina.txt: 10173) +.buy.ccb.com/public/js/ad\.js +# @@||briian.com/advert. (easylistchina.txt: 10172) +.briian.com/advert\. +# @@||blimage.com/picserver/ggpic/ (easylistchina.txt: 10171) +.blimage.com/picserver/ggpic/ +# @@||blemall.com^$elemhide (easylistchina.txt: 10170) +.blemall.com +# @@||biz.gexing.com/bottom_ (easylistchina.txt: 10169) +.biz.gexing.com/bottom_ +# @@||biquge5.com/jquery/biquge.js (easylistchina.txt: 10168) +.biquge5.com/jquery/biquge\.js +# @@||bingfeng.tw^$elemhide (easylistchina.txt: 10167) +.bingfeng.tw +# @@||beanfun.com/ADClient/ (easylistchina.txt: 10166) +.beanfun.com/ADClient/ +# @@||bdstatic.com/??*, (easylistchina.txt: 10165) +.bdstatic.com/\?\?.*, +# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina.txt: 10163) +.bbs.yantuchina.com/gg/tmp/hong\.gif +# @@||banma.com/statics/js/?? (easylistchina.txt: 10162) +.banma.com/statics/js/\?\? +# @@||bahamut.com.tw/JS/ad/mobileBigBanner.js (easylistchina.txt: 10161) +.bahamut.com.tw/JS/ad/mobileBigBanner\.js +# @@||atm.youku.com/cast/getFlvUrl. (easylistchina.txt: 10160) +.atm.youku.com/cast/getFlvUrl\. +# @@||astyle.alicdn.com/?? (easylistchina.txt: 10159) +.astyle.alicdn.com/\?\? +# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina.txt: 10158) +.aspjzy.com/jsweb/js/hotsearch\.js +# @@||aqy103.com/js/aqy/main.js (easylistchina.txt: 10156) +.aqy103.com/js/aqy/main\.js +# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina.txt: 10155) +.appledaily.com.hk/admedia/ +# @@||appbyme.com^*/Advertisement.css (easylistchina.txt: 10154) +.appbyme.com/.*/Advertisement\.css +# @@||appbyme.com/adclient/ (easylistchina.txt: 10153) +.appbyme.com/adclient/ +# @@||angpic.3g.net.cn/ai/*/ (easylistchina.txt: 10152) +.angpic.3g.net.cn/ai/.*/ +# @@||airenti.in/*/$script (easylistchina.txt: 10149) +.airenti.in/.*/ +# @@||advertise.shijue.cvidea.cn^ (easylistchina.txt: 10148) +.advertise.shijue.cvidea.cn +# @@||advert.kf5.com^ (easylistchina.txt: 10147) +.advert.kf5.com +# @@||ads.i8.com.cn/hd/dzs/ (easylistchina.txt: 10143) +.ads.i8.com.cn/hd/dzs/ +# @@||adjs.8591.com.tw^$script (easylistchina.txt: 10139) +.adjs.8591.com.tw +# @@||addon.discuz.com/resource/*/ad (easylistchina.txt: 10138) +.addon.discuz.com/resource/.*/ad +# @@||adcdn.pingan.com^ (easylistchina.txt: 10137) +.adcdn.pingan.com +# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina.txt: 10136) +.ad1.nownews.com/ads\.php\?ownerid=1335 +# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina.txt: 10135) +.ad1.nownews.com/ads\.php\?ownerid=1334 +# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina.txt: 10134) +.ad1.nownews.com/ads\.php\?ownerid=1333 +# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina.txt: 10133) +.ad1.nownews.com/ads\.php\?ownerid=1332 +# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina.txt: 10132) +.ad1.nownews.com/ads\.php\?ownerid=1331 +# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina.txt: 10131) +.ad1.nownews.com/ads\.php\?ownerid=1325 +# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina.txt: 10130) +.ad1.nownews.com/ads\.php\?ownerid=1324 +# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina.txt: 10129) +.ad1.nownews.com/ads\.php\?ownerid=1323 +# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina.txt: 10128) +.ad1.nownews.com/ads\.php\?ownerid=1322 +# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina.txt: 10127) +.ad1.nownews.com/ads\.php\?ownerid=1321 +# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina.txt: 10126) +.ad1.nownews.com/ads\.php\?ownerid=1294 +# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina.txt: 10125) +.ad1.nownews.com/.*\.php\?ownerid=1355 +# @@||ad.thsi.cn/siteHome/ (easylistchina.txt: 10123) +.ad.thsi.cn/siteHome/ +# @@||ad.qyer.com^ (easylistchina.txt: 10122) +.ad.qyer.com +# @@||ad.ourgame.com^ (easylistchina.txt: 10121) +.ad.ourgame.com +# @@||ad.kazakinfo.com^ (easylistchina.txt: 10120) +.ad.kazakinfo.com +# @@||ad.jz123.cn^ (easylistchina.txt: 10119) +.ad.jz123.cn +# @@||ad.damai.cn^ (easylistchina.txt: 10117) +.ad.damai.cn +# @@||ad.abchina.com^ (easylistchina.txt: 10115) +.ad.abchina.com +# @@||ad.10010.com^ (easylistchina.txt: 10112) +.ad.10010.com +# @@||abchina.com^*/images/ad. (easylistchina.txt: 10110) +.abchina.com/.*/images/ad\. +# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina.txt: 10109) +.a.banggo.com/Ad/getAdPosList\.shtml +# @@||99ting.cn/image/ding.gif (easylistchina.txt: 10106) +.99ting.cn/image/ding\.gif +# @@||95599.cn^*/images/ad. (easylistchina.txt: 10105) +.95599.cn/.*/images/ad\. +# @@||8591.com.tw^*/buyAd.css (easylistchina.txt: 10104) +.8591.com.tw/.*/buyAd\.css +# @@||7vk.com/detail/shehuipinlun.js (easylistchina.txt: 10103) +.7vk.com/detail/shehuipinlun\.js +# @@||7s8.net/image/ads/ (easylistchina.txt: 10102) +.7s8.net/image/ads/ +# @@||77119.com/js/fenxiang.js (easylistchina.txt: 10101) +.77119.com/js/fenxiang\.js +# @@||75.125.41.29:8080/*/ (easylistchina.txt: 10100) +.75.125.41.29:8080/.*/ +# @@||70.86.24.120:8060/*/ (easylistchina.txt: 10097) +.70.86.24.120:8060/.*/ +# @@||61ef.cn/upfiles/gg/ (easylistchina.txt: 10096) +.61ef.cn/upfiles/gg/ +# @@||61.164.108.184/tb/*.gif (easylistchina.txt: 10095) +.61.164.108.184/tb/.*\.gif +# @@||61.164.108.104:4275/*/*.gif (easylistchina.txt: 10094) +.61.164.108.104:4275/.*/.*\.gif +# @@||58cdn.com.cn/tuiguang/center/ (easylistchina.txt: 10092) +.58cdn.com.cn/tuiguang/center/ +# @@||58.com/adJump?adType= (easylistchina.txt: 10090) +.58.com/adJump\?adType= +# @@||52zy.com/gg/ (easylistchina.txt: 10089) +.52zy.com/gg/ +# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina.txt: 10088) +.52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b\.png +# @@||51img1.com/??*/adsys. (easylistchina.txt: 10087) +.51img1.com/\?\?.*/adsys\. +# @@||51hanhua.com/2013/brtxt.js (easylistchina.txt: 10086) +.51hanhua.com/2013/brtxt\.js +# @@||360buyimg.com^*?? (easylistchina.txt: 10084) +.360buyimg.com/.*\?\? +# @@||3399.com/DataTransfer/Advertisement/ (easylistchina.txt: 10081) +.3399.com/DataTransfer/Advertisement/ +# @@||33.autohome.com.cn/njs/newget.js (easylistchina.txt: 10080) +.33.autohome.com.cn/njs/newget\.js +# @@||33.autohome.com.cn/njs/10055.js (easylistchina.txt: 10079) +.33.autohome.com.cn/njs/10055\.js +# @@||2kandy.com^$generichide (easylistchina.txt: 10078) +.2kandy.com +# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina.txt: 10077) +.2kandy.com/source/plugin/fieah_blockadblock/ +# @@||221.7.250.35/caches/poster_js/21.js (easylistchina.txt: 10076) +.221.7.250.35/caches/poster_js/21\.js +# @@||192.168.*/advertising_$stylesheet (easylistchina.txt: 10075) +.192.168.*./(.*/)?advertising_ +# @@||192.168.*.1/userRpm/Index.$elemhide (easylistchina.txt: 10074) +.192.168.*./.*\.1/userRpm/Index\. +.192.168.*.1/userRpm/Index\. +# @@||189.cn^$generichide (easylistchina.txt: 10073) +.189.cn +# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina.txt: 10072) +.189.cn/activity/adzh2015/js/ad\.js +# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina.txt: 10071) +.17kk.cc/scriptAD/other/new_manhua\.html +# @@||177mh.com/img_v1/bbad.gif (easylistchina.txt: 10070) +.177mh.com/img_v1/bbad\.gif +# @@||17173.com/x/flash800500.js (easylistchina.txt: 10069) +.17173.com/x/flash800500\.js +# @@||16888.com/dist/js/?? (easylistchina.txt: 10068) +.16888.com/dist/js/\?\? +# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina.txt: 10067) +.131js.131.com/home/resouces/js/index_20120420\.js +# @@||123dhang.com/supo/advertisement.js (easylistchina.txt: 10065) +.123dhang.com/supo/advertisement\.js +# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina.txt: 10064) +.12306.cn/otn/resources/images/pic/new-ad +# @@||113.com.tw/www/image/index-ad.png (easylistchina.txt: 10063) +.113.com.tw/www/image/index-ad\.png +# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina.txt: 10062) +.107.182.131.103/cache/\?q=/images/.*/ +# @@||10086.cn^$generichide (easylistchina.txt: 10060) +.10086.cn +# @@||10010.com^*/ad/ (easylistchina.txt: 10059) +.10010.com/.*/ad/ +# @@||10010.com^*/ad. (easylistchina.txt: 10058) +.10010.com/.*/ad\. +# @@||060s.com/images_ad/*.png (easylistchina.txt: 10057) +.060s.com/images_ad/.*\.png +# @@|http://tieba.baidu.com/|$genericblock (easylistchina.txt: 10056) +tieba.baidu.com/$ +# @@|http://*/gg/*.css (easylistchina.txt: 10055) +/(.*/)?gg/.*\.css +# @@u-ads.adap.tv*youku.com (easylistchina.txt: 10049) +/.*u-ads\.adap\.tv.*youku\.com +.*u-ads.adap.tv*./.*youku\.com +.*u-ads.adap.tv*youku.com*. +# @@/ttkdweb/page/js/ad.js (easylistchina.txt: 10040) +/(.*/)?ttkdweb/page/js/ad\.js +# @@/page/adv.html?advId=$subdocument (easylistchina.txt: 10031) +/(.*/)?page/adv\.html\?advId= +# @@/data/attachment/*_300_250_ (easylistchina.txt: 10018) +/(.*/)?data/attachment/.*_300_250_ +# @@/cntv_Advertise.js (easylistchina.txt: 10015) +/(.*/)?cntv_Advertise\.js +# @@/appledaily/homead/*_ad_logo. (easylistchina.txt: 10011) +/(.*/)?appledaily/homead/.*_ad_logo\. +# @@/32666/images/ad (easylistchina.txt: 9980) +/(.*/)?32666/images/ad +# @@/2kuai/images/ad (easylistchina.txt: 9979) +/(.*/)?2kuai/images/ad +# @@.tudouui.com^*&adSourceId= (easylistchina.txt: 9977) +/.*\.tudouui\.com[^\w%.-].*&adSourceId= +.*.tudouui.com/.*&adSourceId= +# @@.s1979.com/ad/ad*.mp4 (easylistchina.txt: 9976) +/.*\.s1979\.com/ad/ad.*\.mp4 +.*.s1979.com/ad/ad.*\.mp4 +# @@.jstv.com/c/gg/ (easylistchina.txt: 9975) +/.*\.jstv\.com/c/gg/ +.*.jstv.com/c/gg/ +# @@.cntv.cn/adplayer/ (easylistchina.txt: 9970) +/.*\.cntv\.cn/adplayer/ +.*.cntv.cn/adplayer/ +# @@.beautifulphoto.net/ads/music (easylistchina.txt: 9969) +/.*\.beautifulphoto\.net/ads/music +.*.beautifulphoto.net/ads/music +# @@&adf=dalian_300x250_ (easylistchina.txt: 9967) +/.*&adf=dalian_300x250_ +# @@||union.bokecc.com/crossdomain.xml (easylistchina.txt: 21) +.union.bokecc.com/crossdomain\.xml +# @@||poster.weather.com.cn/p_files/base/$image (easylistchina.txt: 20) +.poster.weather.com.cn/p_files/base/ +# @@||hichannel.hinet.net^$object-subrequest (easylistchina.txt: 19) +.hichannel.hinet.net + +#ab2p-unblock-dnt-R189 +{+client-header-tagger{ab2p-unblock-dnt-R189} \ +} +# @@.com/ad.$domain=0379home.com (easylistchina.txt: 9971) +/.*\.com/ad\. +.*.com/ad\. + +#ab2p-unblock-dnt-R190 +{+client-header-tagger{ab2p-unblock-dnt-R190} \ +} +# @@||10086.cn^*/ad$domain=10086.cn (easylistchina.txt: 10061) +.10086.cn/.*/ad + +#ab2p-unblock-dnt-R191 +{+client-header-tagger{ab2p-unblock-dnt-R191} \ +} +# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina.txt: 10024) +/(.*/)?images/ad + +#ab2p-unblock-dnt-R192 +{+client-header-tagger{ab2p-unblock-dnt-R192} \ +} +# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina.txt: 10199) +.cpro.baidustatic.com/cpro/ui/c\.js + +#ab2p-unblock-dnt-R193 +{+client-header-tagger{ab2p-unblock-dnt-R193} \ +} +# @@/advertise.$domain=123.138.234.240 (easylistchina.txt: 10002) +/(.*/)?advertise\. +advertise.*. + +#ab2p-unblock-dnt-R194 +{+client-header-tagger{ab2p-unblock-dnt-R194} \ +} +# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina.txt: 10141) +.adm.cnzz.net/js/abase\.js +# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina.txt: 10140) +.adm.cnzz.net/appgcm\.php\?sid=244627& + +#ab2p-unblock-dnt-R195 +{+client-header-tagger{ab2p-unblock-dnt-R195} \ +} +# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|keenfine.com|mahua.com (easylistchina.txt: 10008) +/(.*/)?adview_pic_ + +#ab2p-unblock-dnt-R196 +{+client-header-tagger{ab2p-unblock-dnt-R196} \ +} +# @@?sid=ads$domain=126.com|mail.163.com (easylistchina.txt: 10048) +/.*\?sid=ads + +#ab2p-unblock-dnt-R197 +{+client-header-tagger{ab2p-unblock-dnt-R197} \ +} +# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina.txt: 10066) +.127.0.0.1/admin/admin_ad\.php\? + +#ab2p-unblock-dnt-R198 +{+client-header-tagger{ab2p-unblock-dnt-R198} \ +} +# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 10017) +/(.*/)?css/ad\. +# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 9978) +/(.*/)?168logo\.gif +168logo.gif*. + +#ab2p-unblock-dnt-R199 +{+client-header-tagger{ab2p-unblock-dnt-R199} \ +} +# @@/cms/ads/*$domain=17.com (easylistchina.txt: 10014) +/(.*/)?cms/ads/.* + +#ab2p-unblock-dnt-R200 +{+client-header-tagger{ab2p-unblock-dnt-R200} \ +} +# @@/ads/*$domain=189.cn (easylistchina.txt: 9994) +/(.*/)?ads/.* + +#ab2p-unblock-dnt-R201 +{+client-header-tagger{ab2p-unblock-dnt-R201} \ +} +# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina.txt: 10033) +/(.*/)?pop\.js$ +pop.js + +#ab2p-unblock-dnt-R202 +{+client-header-tagger{ab2p-unblock-dnt-R202} \ +} +# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina.txt: 10022) +/(.*/)?ima/.*ad\. + +#ab2p-unblock-dnt-R203 +{+client-header-tagger{ab2p-unblock-dnt-R203} \ +} +# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina.txt: 9968) +/.*&adurl=http:// + +#ab2p-unblock-dnt-R204 +{+client-header-tagger{ab2p-unblock-dnt-R204} \ +} +# @@/assets/adv/*$domain=4008927927.cn (easylistchina.txt: 10012) +/(.*/)?assets/adv/.* + +#ab2p-unblock-dnt-R205 +{+client-header-tagger{ab2p-unblock-dnt-R205} \ +} +# @@||5060.com^$elemhide,domain=5060.com (easylistchina.txt: 10085) +.5060.com + +#ab2p-unblock-dnt-R206 +{+client-header-tagger{ab2p-unblock-dnt-R206} \ +} +# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina.txt: 10198) +.cpro.baidu.com/cpro/ui/c\.js + +#ab2p-unblock-dnt-R207 +{+client-header-tagger{ab2p-unblock-dnt-R207} \ +} +# @@||5i5j.*/images/ad$domain=5i5j.com (easylistchina.txt: 10093) +.5i5j.*./(.*/)?images/ad + +#ab2p-unblock-dnt-R208 +{+client-header-tagger{ab2p-unblock-dnt-R208} \ +} +# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina.txt: 10184) +.cbjs.baidu.com/js/o\.js + +#ab2p-unblock-dnt-R209 +{+client-header-tagger{ab2p-unblock-dnt-R209} \ +} +# @@/common/cf/*$domain=66u.com|dataguru.cn|oneplusbbs.com|readboy.com (easylistchina.txt: 10016) +/(.*/)?common/cf/.* + +#ab2p-unblock-dnt-R210 +{+client-header-tagger{ab2p-unblock-dnt-R210} \ +} +# @@/images/*/*.gif$domain=67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina.txt: 10023) +/(.*/)?images/.*/.*\.gif + +#ab2p-unblock-dnt-R211 +{+client-header-tagger{ab2p-unblock-dnt-R211} \ +} +# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina.txt: 10434) +/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ +/\.7k7k.com\/(?!(ad|load)) + +#ab2p-unblock-dnt-R212 +{+client-header-tagger{ab2p-unblock-dnt-R212} \ +} +# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina.txt: 9981) +/(.*/)?ad_file/.* + +#ab2p-unblock-dnt-R213 +{+client-header-tagger{ab2p-unblock-dnt-R213} \ +} +# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina.txt: 10287) +.l.qq.com/lview\? +# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina.txt: 10277) +.j.wit.qq.com/sc/crystal_ad\.js\? + +#ab2p-unblock-dnt-R214 +{+client-header-tagger{ab2p-unblock-dnt-R214} \ +} +# @@/ad_images/*$domain=88box.com (easylistchina.txt: 9982) +/(.*/)?ad_images/.* + +#ab2p-unblock-dnt-R215 +{+client-header-tagger{ab2p-unblock-dnt-R215} \ +} +# @@.com/ads/$domain=88boxjx.com (easylistchina.txt: 9973) +/.*\.com/ads/ +.*.com/ads/ + +#ab2p-unblock-dnt-R216 +{+client-header-tagger{ab2p-unblock-dnt-R216} \ +} +# @@/web/ads/*$domain=95516.com (easylistchina.txt: 10042) +/(.*/)?web/ads/.* + +#ab2p-unblock-dnt-R217 +{+client-header-tagger{ab2p-unblock-dnt-R217} \ +} +# @@/images/ad/*$domain=9588.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|snh48.com|sozi.cn|tingbook.com (easylistchina.txt: 10025) +/(.*/)?images/ad/.* + +#ab2p-unblock-dnt-R218 +{+client-header-tagger{ab2p-unblock-dnt-R218} \ +} +# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina.txt: 10326) +.pos.baidu.com/ecom\? + +#ab2p-unblock-dnt-R219 +{+client-header-tagger{ab2p-unblock-dnt-R219} \ +} +# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina.txt: 10116) +.ad.alimama.com + +#ab2p-unblock-dnt-R220 +{+client-header-tagger{ab2p-unblock-dnt-R220} \ +} +# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina.txt: 10111) +.ad-specs.guoshipartners.com/static/js/isip\.js + +#ab2p-unblock-dnt-R221 +{+client-header-tagger{ab2p-unblock-dnt-R221} \ +} +# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina.txt: 10272) +.inskinmedia.com/.*/js/base/api/ + +#ab2p-unblock-dnt-R222 +{+client-header-tagger{ab2p-unblock-dnt-R222} \ +} +# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina.txt: 10426) +.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js + +#ab2p-unblock-dnt-R223 +{+client-header-tagger{ab2p-unblock-dnt-R223} \ +} +# @@/adbanner/*$image,domain=books.com.tw (easylistchina.txt: 9983) +/(.*/)?adbanner/.* + +#ab2p-unblock-dnt-R224 +{+client-header-tagger{ab2p-unblock-dnt-R224} \ +} +# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina.txt: 10091) +.58.com/ds/tgbrand/ + +#ab2p-unblock-dnt-R225 +{+client-header-tagger{ab2p-unblock-dnt-R225} \ +} +# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina.txt: 10000) +/(.*/)?advert/.* + +#ab2p-unblock-dnt-R60 +{+client-header-tagger{ab2p-unblock-dnt-R60} \ +} +# @@/sda/weixin$domain=chineseinla.com (easylistchina.txt: 10036) +/(.*/)?sda/weixin + +#ab2p-unblock-dnt-R226 +{+client-header-tagger{ab2p-unblock-dnt-R226} \ +} +# @@/adfile/*$domain=cidianwang.com (easylistchina.txt: 9986) +/(.*/)?adfile/.* + +#ab2p-unblock-dnt-R227 +{+client-header-tagger{ab2p-unblock-dnt-R227} \ +} +# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina.txt: 10321) +.pos.baidu.com/acom\?di= +# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina.txt: 10029) +/(.*/)?js/ad_test\.js + +#ab2p-unblock-dnt-R228 +{+client-header-tagger{ab2p-unblock-dnt-R228} \ +} +# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina.txt: 10183) +.cbjs.baidu.com/js/m\.js + +#ab2p-unblock-dnt-R229 +{+client-header-tagger{ab2p-unblock-dnt-R229} \ +} +# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina.txt: 10175) +.cb.baidu.com/ecom\? + +#ab2p-unblock-dnt-R230 +{+client-header-tagger{ab2p-unblock-dnt-R230} \ +} +# @@/adpic/*$domain=czsrc.com|nieyou.com (easylistchina.txt: 9993) +/(.*/)?adpic/.* + +#ab2p-unblock-dnt-R231 +{+client-header-tagger{ab2p-unblock-dnt-R231} \ +} +# @@||mediav.com^$domain=dev.360.cn (easylistchina.txt: 10293) +.mediav.com + +#ab2p-unblock-dnt-R232 +{+client-header-tagger{ab2p-unblock-dnt-R232} \ +} +# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina.txt: 10009) +/(.*/)?advs/.* + +#ab2p-unblock-dnt-R233 +{+client-header-tagger{ab2p-unblock-dnt-R233} \ +} +# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina.txt: 10314) +.pagead2.googlesyndication.com/pagead/show_ads\.js + +#ab2p-unblock-dnt-R234 +{+client-header-tagger{ab2p-unblock-dnt-R234} \ +} +# @@/adframe.$domain=dnvod.eu (easylistchina.txt: 9987) +/(.*/)?adframe\. +adframe.*. + +#ab2p-unblock-dnt-R235 +{+client-header-tagger{ab2p-unblock-dnt-R235} \ +} +# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina.txt: 10041) +/(.*/)?upload/ads/.*\.jpg + +#ab2p-unblock-dnt-R236 +{+client-header-tagger{ab2p-unblock-dnt-R236} \ +} +# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina.txt: 10054) +/(.*/)?AD/ + +#ab2p-unblock-dnt-R237 +{+client-header-tagger{ab2p-unblock-dnt-R237} \ +} +# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina.txt: 10186) +.cbjs.baidu.com + +#ab2p-unblock-dnt-R238 +{+client-header-tagger{ab2p-unblock-dnt-R238} \ +} +# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina.txt: 10176) +.cb.baidu.com/ecom\?di= + +#ab2p-unblock-dnt-R239 +{+client-header-tagger{ab2p-unblock-dnt-R239} \ +} +# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina.txt: 10387) +.ubmcmm.baidustatic.com + +#ab2p-unblock-dnt-R240 +{+client-header-tagger{ab2p-unblock-dnt-R240} \ +} +# @@/img/ad/*$domain=exp.qq.com (easylistchina.txt: 10026) +/(.*/)?img/ad/.* + +#ab2p-unblock-dnt-R241 +{+client-header-tagger{ab2p-unblock-dnt-R241} \ +} +# @@/advertisement.js$domain=fharr.com|gimhoy.com (easylistchina.txt: 10005) +/(.*/)?advertisement\.js +advertisement.js*. + +#ab2p-unblock-dnt-R242 +{+client-header-tagger{ab2p-unblock-dnt-R242} \ +} +# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina.txt: 10358) +.sinaimg.cn/cj/deco/ + +#ab2p-unblock-dnt-R243 +{+client-header-tagger{ab2p-unblock-dnt-R243} \ +} +# @@||artxun.com^$domain=findart.com.cn (easylistchina.txt: 10157) +.artxun.com + +#ab2p-unblock-dnt-R244 +{+client-header-tagger{ab2p-unblock-dnt-R244} \ +} +# @@||f70123.com^$script,domain=flv.tv (easylistchina.txt: 10233) +.f70123.com +# @@||e719.net^$script,domain=flv.tv (easylistchina.txt: 10222) +.e719.net +# @@||e70123.com^$script,domain=flv.tv (easylistchina.txt: 10221) +.e70123.com +# @@||e701.net^*=60&$subdocument,domain=flv.tv (easylistchina.txt: 10220) +.e701.net/.*=60& +# @@||e701.net^$script,domain=flv.tv (easylistchina.txt: 10219) +.e701.net +# @@||70e.com^$script,domain=flv.tv (easylistchina.txt: 10099) +.70e.com +# @@=300&$subdocument,domain=flv.tv (easylistchina.txt: 10044) +/.*=300& + +#ab2p-unblock-dnt-R245 +{+client-header-tagger{ab2p-unblock-dnt-R245} \ +} +# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina.txt: 10273) +.inte.sogou.com/ask\?id= +# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina.txt: 10267) +.images.sohu.com/cs/ + +#ab2p-unblock-dnt-R246 +{+client-header-tagger{ab2p-unblock-dnt-R246} \ +} +# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina.txt: 10274) +.itc.cn/public_photo/advert/ + +#ab2p-unblock-dnt-R247 +{+client-header-tagger{ab2p-unblock-dnt-R247} \ +} +# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina.txt: 10445) +/.*\.com%2Fanalytics\.js + +#ab2p-unblock-dnt-R248 +{+client-header-tagger{ab2p-unblock-dnt-R248} \ +} +# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina.txt: 10013) +/(.*/)?bag2\?r\[\]=.*&r\[\]= + +#ab2p-unblock-dnt-R249 +{+client-header-tagger{ab2p-unblock-dnt-R249} \ +} +# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina.txt: 10344) +.s.lianmeng.360.cn +# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina.txt: 10290) +.lianmeng.360.cn/searchthrow/.*&w=960& + +#ab2p-unblock-dnt-R250 +{+client-header-tagger{ab2p-unblock-dnt-R250} \ +} +# @@/Advertisement.$domain=gametower.com.tw (easylistchina.txt: 10004) +/(.*/)?Advertisement\. +Advertisement.*. + +#ab2p-unblock-dnt-R251 +{+client-header-tagger{ab2p-unblock-dnt-R251} \ +} +# @@|http://*/??$domain=gome.com.cn (easylistchina.txt: 10052) +/(.*/)?\?\? + +#ab2p-unblock-dnt-R252 +{+client-header-tagger{ab2p-unblock-dnt-R252} \ +} +# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina.txt: 10174) +.cache.adm.cnzz.net + +#ab2p-unblock-dnt-R253 +{+client-header-tagger{ab2p-unblock-dnt-R253} \ +} +# @@/flash/ad/*$domain=haitao.com (easylistchina.txt: 10019) +/(.*/)?flash/ad/.* + +#ab2p-unblock-dnt-R254 +{+client-header-tagger{ab2p-unblock-dnt-R254} \ +} +# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina.txt: 9972) +/.*\.com/ad/ +.*.com/ad/ + +#ab2p-unblock-dnt-R255 +{+client-header-tagger{ab2p-unblock-dnt-R255} \ +} +# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina.txt: 10470) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-dnt-R256 +{+client-header-tagger{ab2p-unblock-dnt-R256} \ +} +# @@/advertising/*$domain=houdask.com (easylistchina.txt: 10007) +/(.*/)?advertising/.* + +#ab2p-unblock-dnt-R257 +{+client-header-tagger{ab2p-unblock-dnt-R257} \ +} +# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina.txt: 10046) +/.*\?adType= + +#ab2p-unblock-dnt-R258 +{+client-header-tagger{ab2p-unblock-dnt-R258} \ +} +# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina.txt: 10021) +/(.*/)?guanggao/.* + +#ab2p-unblock-dnt-R259 +{+client-header-tagger{ab2p-unblock-dnt-R259} \ +} +# @@||a.alimama.cn/tkapi$domain=ieeee.com (easylistchina.txt: 10108) +.a.alimama.cn/tkapi + +#ab2p-unblock-dnt-R260 +{+client-header-tagger{ab2p-unblock-dnt-R260} \ +} +# @@/Public/ad/*$domain=ihold.cc (easylistchina.txt: 10035) +/(.*/)?Public/ad/.* + +#ab2p-unblock-dnt-R261 +{+client-header-tagger{ab2p-unblock-dnt-R261} \ +} +# @@||hm.baidu.com^$domain=ihome99.com (easylistchina.txt: 10464) +.hm.baidu.com + +#ab2p-unblock-dnt-R262 +{+client-header-tagger{ab2p-unblock-dnt-R262} \ +} +# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina.txt: 9992) +/(.*/)?ADmediaJS/panda0305_1972_11454_12120_ + +#ab2p-unblock-dnt-R263 +{+client-header-tagger{ab2p-unblock-dnt-R263} \ +} +# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina.txt: 10006) +/(.*/)?advertisement/.* + +#ab2p-unblock-dnt-R264 +{+client-header-tagger{ab2p-unblock-dnt-R264} \ +} +# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina.txt: 10113) +.ad.3.cn/ads/mgets\? + +#ab2p-unblock-dnt-R265 +{+client-header-tagger{ab2p-unblock-dnt-R265} \ +} +# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina.txt: 10114) +.ad.3.cn/flags/mgets\? +# @@||360buyimg.com/ads/$domain=jd.com (easylistchina.txt: 10083) +.360buyimg.com/ads/ +# @@||360buyimg.com/ad/$domain=jd.com (easylistchina.txt: 10082) +.360buyimg.com/ad/ +# @@&ad_width=810&$domain=jd.com (easylistchina.txt: 9966) +/.*&ad_width=810& +# @@&ad_width=590&$domain=jd.com (easylistchina.txt: 9965) +/.*&ad_width=590& + +#ab2p-unblock-dnt-R266 +{+client-header-tagger{ab2p-unblock-dnt-R266} \ +} +# @@|http:$image,script,domain=jjcast.com (easylistchina.txt: 10050) + +#ab2p-unblock-dnt-R267 +{+client-header-tagger{ab2p-unblock-dnt-R267} \ +} +# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina.txt: 10151) +.allyes.com.cn/player/AllyesAdPlayerV1\.swf\? + +#ab2p-unblock-dnt-R268 +{+client-header-tagger{ab2p-unblock-dnt-R268} \ +} +# @@||js.adm.cnzz.net^$domain=keenfine.com|xoyo.com (easylistchina.txt: 10282) +.js.adm.cnzz.net + +#ab2p-unblock-dnt-R269 +{+client-header-tagger{ab2p-unblock-dnt-R269} \ +} +# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina.txt: 10460) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R270 +{+client-header-tagger{ab2p-unblock-dnt-R270} \ +} +# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina.txt: 10283) +.kbcool.com/advpic/ + +#ab2p-unblock-dnt-R271 +{+client-header-tagger{ab2p-unblock-dnt-R271} \ +} +# @@/adimg/*$domain=laniqu.com|veryeast.cn (easylistchina.txt: 9990) +/(.*/)?adimg/.* + +#ab2p-unblock-dnt-R272 +{+client-header-tagger{ab2p-unblock-dnt-R272} \ +} +# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina.txt: 10313) +.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js + +#ab2p-unblock-dnt-R273 +{+client-header-tagger{ab2p-unblock-dnt-R273} \ +} +# @@/adsame.$domain=liba.com|libaclub.com (easylistchina.txt: 9995) +/(.*/)?adsame\. +adsame.*. + +#ab2p-unblock-dnt-R274 +{+client-header-tagger{ab2p-unblock-dnt-R274} \ +} +# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina.txt: 10369) +.stockstar.com/ad/ + +#ab2p-unblock-dnt-R275 +{+client-header-tagger{ab2p-unblock-dnt-R275} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina.txt: 10469) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-dnt-R276 +{+client-header-tagger{ab2p-unblock-dnt-R276} \ +} +# @@/adsbox.$domain=long7.qq.com (easylistchina.txt: 9996) +/(.*/)?adsbox\. +adsbox.*. + +#ab2p-unblock-dnt-R277 +{+client-header-tagger{ab2p-unblock-dnt-R277} \ +} +# @@||csbew.com^$domain=longbl.com (easylistchina.txt: 10202) +.csbew.com + +#ab2p-unblock-dnt-R278 +{+client-header-tagger{ab2p-unblock-dnt-R278} \ +} +# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina.txt: 9974) +/.*\.com/adv/ +.*.com/adv/ + +#ab2p-unblock-dnt-R279 +{+client-header-tagger{ab2p-unblock-dnt-R279} \ +} +# @@|http://*/ad$domain=meiziweibo.com (easylistchina.txt: 10053) +/(.*/)?ad + +#ab2p-unblock-dnt-R280 +{+client-header-tagger{ab2p-unblock-dnt-R280} \ +} +# @@/AdShow/*$domain=mndxy.org (easylistchina.txt: 9999) +/(.*/)?AdShow/.* + +#ab2p-unblock-dnt-R281 +{+client-header-tagger{ab2p-unblock-dnt-R281} \ +} +# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina.txt: 10124) +.ad.unimhk.com/show\.php\? + +#ab2p-unblock-dnt-R282 +{+client-header-tagger{ab2p-unblock-dnt-R282} \ +} +# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina.txt: 10164) +.bdimg.com/advert/js/advert\.js + +#ab2p-unblock-dnt-R283 +{+client-header-tagger{ab2p-unblock-dnt-R283} \ +} +# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina.txt: 10045) +/.*=mywebloadt1& + +#ab2p-unblock-dnt-R284 +{+client-header-tagger{ab2p-unblock-dnt-R284} \ +} +# @@/urchin.js$domain=on.cc (easylistchina.txt: 10449) +/(.*/)?urchin\.js +urchin.js*. +# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina.txt: 10448) +/(.*/)?hitCount_ +# @@/hitCount.$script,domain=on.cc (easylistchina.txt: 10447) +/(.*/)?hitCount\. +hitCount.*. + +#ab2p-unblock-dnt-R285 +{+client-header-tagger{ab2p-unblock-dnt-R285} \ +} +# @@/ADImages/*$domain=p9.com.tw (easylistchina.txt: 9989) +/(.*/)?ADImages/.* + +#ab2p-unblock-dnt-R286 +{+client-header-tagger{ab2p-unblock-dnt-R286} \ +} +# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina.txt: 10027) +/(.*/)?img/ad_ + +#ab2p-unblock-dnt-R287 +{+client-header-tagger{ab2p-unblock-dnt-R287} \ +} +# @@/store_ad/*$domain=pcstore.com.tw (easylistchina.txt: 10039) +/(.*/)?store_ad/.* + +#ab2p-unblock-dnt-R288 +{+client-header-tagger{ab2p-unblock-dnt-R288} \ +} +# @@/advert_$domain=pisen.com.cn|wb.qq.com (easylistchina.txt: 10001) +/(.*/)?advert_ + +#ab2p-unblock-dnt-R289 +{+client-header-tagger{ab2p-unblock-dnt-R289} \ +} +# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina.txt: 9998) +/(.*/)?adsense/.* + +#ab2p-unblock-dnt-R290 +{+client-header-tagger{ab2p-unblock-dnt-R290} \ +} +# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina.txt: 10185) +.cbjs.baidu.com/js/s\.js + +#ab2p-unblock-dnt-R291 +{+client-header-tagger{ab2p-unblock-dnt-R291} \ +} +# @@?bannerId=$domain=qbao.com (easylistchina.txt: 10047) +/.*\?bannerId= + +#ab2p-unblock-dnt-R292 +{+client-header-tagger{ab2p-unblock-dnt-R292} \ +} +# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina.txt: 10475) +.tajs.qq.com/stats\? + +#ab2p-unblock-dnt-R293 +{+client-header-tagger{ab2p-unblock-dnt-R293} \ +} +# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina.txt: 10145) +.ads.rakuya.com.tw + +#ab2p-unblock-dnt-R294 +{+client-header-tagger{ab2p-unblock-dnt-R294} \ +} +# @@/pub/ad/*$domain=ruten.com.tw (easylistchina.txt: 10034) +/(.*/)?pub/ad/.* + +#ab2p-unblock-dnt-R295 +{+client-header-tagger{ab2p-unblock-dnt-R295} \ +} +# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina.txt: 10051) +# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina.txt: 10038) +/(.*/)?show_ads_impl\.js +# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina.txt: 10020) +/(.*/)?g\.doubleclick\.net\.js\? +# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina.txt: 9997) +/(.*/)?adsbygoogle\. +adsbygoogle.*. +# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina.txt: 9991) +/(.*/)?adlogger_tracker\.php + +#ab2p-unblock-dnt-R296 +{+client-header-tagger{ab2p-unblock-dnt-R296} \ +} +# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina.txt: 10003) +/(.*/)?advertise/.* + +#ab2p-unblock-dnt-R297 +{+client-header-tagger{ab2p-unblock-dnt-R297} \ +} +# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina.txt: 10472) +.sina.com.cn/iplookup/iplookup\.php\? + +#ab2p-unblock-dnt-R298 +{+client-header-tagger{ab2p-unblock-dnt-R298} \ +} +# @@||gg.woniu.com^$domain=snail.com (easylistchina.txt: 10243) +.gg.woniu.com + +#ab2p-unblock-dnt-R299 +{+client-header-tagger{ab2p-unblock-dnt-R299} \ +} +# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina.txt: 10462) +.googletagmanager.com/gtm\.js\? +# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina.txt: 10461) +.google-analytics.com/plugins/ua/linkid\.js + +#ab2p-unblock-dnt-R300 +{+client-header-tagger{ab2p-unblock-dnt-R300} \ +} +# @@||keyrun.cn^$script,domain=sx566.com (easylistchina.txt: 10284) +.keyrun.cn + +#ab2p-unblock-dnt-R301 +{+client-header-tagger{ab2p-unblock-dnt-R301} \ +} +# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina.txt: 10372) +.szhr.com.cn + +#ab2p-unblock-dnt-R302 +{+client-header-tagger{ab2p-unblock-dnt-R302} \ +} +# @@||alimama.com^$domain=tanx.com (easylistchina.txt: 10150) +.alimama.com +# @@/adx.$domain=tanx.com (easylistchina.txt: 10010) +/(.*/)?adx\. +adx.*. + +#ab2p-unblock-dnt-R303 +{+client-header-tagger{ab2p-unblock-dnt-R303} \ +} +# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10467) +.opehs.tanx.com/ex\? +# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10457) +.ecpm.tanx.com/ex\? + +#ab2p-unblock-dnt-R304 +{+client-header-tagger{ab2p-unblock-dnt-R304} \ +} +# @@||tdx.com.cn/images/*ad$domain=tdx.com.cn (easylistchina.txt: 10376) +.tdx.com.cn/images/.*ad + +#ab2p-unblock-dnt-R305 +{+client-header-tagger{ab2p-unblock-dnt-R305} \ +} +# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina.txt: 10028) +/(.*/)?img_ad/.* + +#ab2p-unblock-dnt-R306 +{+client-header-tagger{ab2p-unblock-dnt-R306} \ +} +# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina.txt: 10315) +.partner.googleadservices.com/gpt/pubads_impl_ +# @@||ads.$domain=tvb.com (easylistchina.txt: 10142) +.ads.*. + +#ab2p-unblock-dnt-R307 +{+client-header-tagger{ab2p-unblock-dnt-R307} \ +} +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=tw.autos.yahoo.com|tw.buy.yahoo.com (easylistchina.txt: 10459) +.geo.query.yahoo.com + +#ab2p-unblock-dnt-R308 +{+client-header-tagger{ab2p-unblock-dnt-R308} \ +} +# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina.txt: 10385) +.tw.m.yimg.com/res/ads/ + +#ab2p-unblock-dnt-R309 +{+client-header-tagger{ab2p-unblock-dnt-R309} \ +} +# @@||union.$domain=union.163.com (easylistchina.txt: 10390) +.union.*. + +#ab2p-unblock-dnt-R310 +{+client-header-tagger{ab2p-unblock-dnt-R310} \ +} +# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina.txt: 10362) +.sinaimg.cn/unipro/pub/suda_m_v629\.js + +#ab2p-unblock-dnt-R311 +{+client-header-tagger{ab2p-unblock-dnt-R311} \ +} +# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina.txt: 10144) +.ads.myopen.vip.com + +#ab2p-unblock-dnt-R312 +{+client-header-tagger{ab2p-unblock-dnt-R312} \ +} +# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina.txt: 10252) +.hd.duba.net/vip\.ijinshan\.com/repository/ad-images/ + +#ab2p-unblock-dnt-R313 +{+client-header-tagger{ab2p-unblock-dnt-R313} \ +} +# @@/AdImage/*$domain=wacom.tw (easylistchina.txt: 9988) +/(.*/)?AdImage/.* + +#ab2p-unblock-dnt-R314 +{+client-header-tagger{ab2p-unblock-dnt-R314} \ +} +# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina.txt: 10098) +.70e.com/js/2013_new\.js + +#ab2p-unblock-dnt-R315 +{+client-header-tagger{ab2p-unblock-dnt-R315} \ +} +# @@/show_ad_$domain=wb.qq.com (easylistchina.txt: 10037) +/(.*/)?show_ad_ + +#ab2p-unblock-dnt-R316 +{+client-header-tagger{ab2p-unblock-dnt-R316} \ +} +# @@/LoadAds.$domain=webcars.com.cn (easylistchina.txt: 10030) +/(.*/)?LoadAds\. +LoadAds.*. + +#ab2p-unblock-dnt-R317 +{+client-header-tagger{ab2p-unblock-dnt-R317} \ +} +# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina.txt: 10342) +.rm.sina.com.cn/minisite/ + +#ab2p-unblock-dnt-R318 +{+client-header-tagger{ab2p-unblock-dnt-R318} \ +} +# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina.txt: 10473) +.sinajs.cn/open/analytics/js/suda\.js + +#ab2p-unblock-dnt-R319 +{+client-header-tagger{ab2p-unblock-dnt-R319} \ +} +# @@||adsense.woso.cn^$domain=woso.cn (easylistchina.txt: 10146) +.adsense.woso.cn + +#ab2p-unblock-dnt-R320 +{+client-header-tagger{ab2p-unblock-dnt-R320} \ +} +# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina.txt: 10266) +.ifengimg.com/ifeng/sources/region_ +# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina.txt: 10265) +.ifengimg.com/ifeng/sources/inice_ + +#ab2p-unblock-dnt-R321 +{+client-header-tagger{ab2p-unblock-dnt-R321} \ +} +# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina.txt: 10471) +.simba.taobao.com/\?name=tcmad& + +#ab2p-unblock-dnt-R322 +{+client-header-tagger{ab2p-unblock-dnt-R322} \ +} +# @@&ad_type=$domain=x.jd.com (easylistchina.txt: 9964) +/.*&ad_type= + +#ab2p-unblock-dnt-R323 +{+client-header-tagger{ab2p-unblock-dnt-R323} \ +} +# @@/analytics.php?$domain=xcar.com.cn (easylistchina.txt: 10446) +/(.*/)?analytics\.php\? + +#ab2p-unblock-dnt-R324 +{+client-header-tagger{ab2p-unblock-dnt-R324} \ +} +# @@/addata.$domain=xdf.cn (easylistchina.txt: 9985) +/(.*/)?addata\. +addata.*. + +#ab2p-unblock-dnt-R325 +{+client-header-tagger{ab2p-unblock-dnt-R325} \ +} +# @@/adblock.js$domain=xingk.cc (easylistchina.txt: 9984) +/(.*/)?adblock\.js +adblock.js*. + +#ab2p-unblock-dnt-R326 +{+client-header-tagger{ab2p-unblock-dnt-R326} \ +} +# @@/PIC/AD/*$domain=ybjk.com (easylistchina.txt: 10032) +/(.*/)?PIC/AD/.* + +#ab2p-unblock-dnt-R327 +{+client-header-tagger{ab2p-unblock-dnt-R327} \ +} +# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina.txt: 10107) +.a.ads.cn.miaozhen.com + +#ab2p-unblock-dnt-R328 +{+client-header-tagger{ab2p-unblock-dnt-R328} \ +} +# @@/webThunderDetect.$domain=ypan.cc (easylistchina.txt: 10043) +/(.*/)?webThunderDetect\. +webThunderDetect.*. + +#ab2p-unblock-dnt-R329 +{+client-header-tagger{ab2p-unblock-dnt-R329} \ +} +# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina.txt: 10118) +.ad.doubleclick.net/ddm/adi/.*\.ZALORA\.COM\.HK + +#ab2p-unblock-dnt-nR-Rn187 +{+client-header-tagger{ab2p-unblock-dnt-Rn187} \ + +client-header-tagger{ab2p-unblock-dnt-nR} \ +} +# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina.txt: 10420) +.yimg.com/zz/combo\?.*&.*\.css + +#ab2p-unblock-elem +{-filter{ab2p-elemhide-filter} \ +} +TAG:^ab2p-unblock-elem$ +# @@||tmall.com/add? (easylistchina.txt: 10477) +.tmall.com/add\? +# @@||tbcdn.cn^*/click_track.js (easylistchina.txt: 10476) +.tbcdn.cn/.*/click_track\.js +# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina.txt: 10474) +.stjscn.s-msn.com/portal/hp/2011/udctrack\. +# @@||pingjs.qq.com/ping.js (easylistchina.txt: 10468) +.pingjs.qq.com/ping\.js +# @@||msn.wrating.com/a1.js (easylistchina.txt: 10466) +.msn.wrating.com/a1\.js +# @@||jd.com/setCookie? (easylistchina.txt: 10465) +.jd.com/setCookie\? +# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina.txt: 10463) +.guahao.cn/common/js/plugins/fingerprint\.js +# @@||g.alicdn.com^*/banner_ad_ (easylistchina.txt: 10458) +.g.alicdn.com/.*/banner_ad_ +# @@||count.video.sina.com.cn^*?video_ids= (easylistchina.txt: 10456) +.count.video.sina.com.cn/.*\?video_ids= +# @@||bagehd.com/iplookup. (easylistchina.txt: 10455) +.bagehd.com/iplookup\. +# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina.txt: 10454) +.autohome.com.cn/javascript/fingerprint\.js +# @@||analytics.163.com/ntes.js (easylistchina.txt: 10453) +.analytics.163.com/ntes\.js +# @@||alicdn.com^*/click_track.js (easylistchina.txt: 10452) +.alicdn.com/.*/click_track\.js +# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina.txt: 10451) +.aixifan.com/dotnet/20130418/script/fingerprint\. +# @@||7m.cn/v2/js/analyse.js (easylistchina.txt: 10450) +.7m.cn/v2/js/analyse\.js +# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina.txt: 10443) +.xnimg.cn/.*/nx/ugc/share/js/hotlist\.js +# @@||zhibowu.com/ad2.htm (easylistchina.txt: 10431) +.zhibowu.com/ad2\.htm +# @@||zhaopin.cn^*/adbox_ (easylistchina.txt: 10430) +.zhaopin.cn/.*/adbox_ +# @@||zhaopin.cn/js/app/popShow. (easylistchina.txt: 10429) +.zhaopin.cn/js/app/popShow\. +# @@||youku.com^*^showAd (easylistchina.txt: 10428) +.youku.com/.*[^\w%.-]showAd +# @@||youku.com^*^adshow (easylistchina.txt: 10427) +.youku.com/.*[^\w%.-]adshow +# @@||yiqifa.com/ad_images/$~third-party (easylistchina.txt: 10425) +.yiqifa.com/ad_images/ +# @@||yinfu.cc/sid/function (easylistchina.txt: 10424) +.yinfu.cc/sid/function +# @@||yinfu.cc/sid/*play (easylistchina.txt: 10423) +.yinfu.cc/sid/.*play +# @@||yimuhe.com/n_js/advertiser.js (easylistchina.txt: 10422) +.yimuhe.com/n_js/advertiser\.js +# @@||yimg.jp/combo?*/ad/ (easylistchina.txt: 10421) +.yimg.jp/combo\?.*/ad/ +# @@||ydxxt.com/ad/ (easylistchina.txt: 10419) +.ydxxt.com/ad/ +# @@||yawin.cn/ad/$object-subrequest (easylistchina.txt: 10418) +.yawin.cn/ad/ +# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10417) +.xunleipu.com/a-d-j-s/a-d-7\.js +# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10416) +.xunleihao.com/a-d-j-s/a-d-7\.js +# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina.txt: 10415) +.xnimg.cn/n/apps/profile/modules/tuiguang/ +# @@||xintaoke.com/images/gg/*.jpg (easylistchina.txt: 10414) +.xintaoke.com/images/gg/.*\.jpg +# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina.txt: 10413) +.xinhuanet.com/2014/imgad/FS_2014weixin\.jpg +# @@||wubisheng.cn/style/pagead2.js (easylistchina.txt: 10412) +.wubisheng.cn/style/pagead2\.js +# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina.txt: 10411) +.wubisheng.cn/style/adsbygoogle\.js +# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina.txt: 10410) +.woxiu.com/xapi/offsite_swf_more\.php\?.*&type= +# @@||wowsai.com/data/files/ad/ (easylistchina.txt: 10409) +.wowsai.com/data/files/ad/ +# @@||wishdown.com/images/logo.gif (easylistchina.txt: 10408) +.wishdown.com/images/logo\.gif +# @@||win007.com/images/ad/qiu (easylistchina.txt: 10407) +.win007.com/images/ad/qiu +# @@||win007.com/image/75338867887z.gif (easylistchina.txt: 10406) +.win007.com/image/75338867887z\.gif +# @@||wholehk.com/madads728.htm (easylistchina.txt: 10405) +.wholehk.com/madads728\.htm +# @@||wholehk.com/adsbygoogle.js (easylistchina.txt: 10404) +.wholehk.com/adsbygoogle\.js +# @@||wfcmw.cn^*.radio. (easylistchina.txt: 10403) +.wfcmw.cn/.*\.radio\. +# @@||weibo.com/api/weipan/getAds (easylistchina.txt: 10402) +.weibo.com/api/weipan/getAds +# @@||webcrow.jp/adjs/ncskt.js (easylistchina.txt: 10401) +.webcrow.jp/adjs/ncskt\.js +# @@||veimg.cn/AdsShow/ (easylistchina.txt: 10400) +.veimg.cn/AdsShow/ +# @@||v1.cn/player/cloud/cloud_player (easylistchina.txt: 10399) +.v1.cn/player/cloud/cloud_player +# @@||v.rbc.cn/ad/ (easylistchina.txt: 10398) +.v.rbc.cn/ad/ +# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina.txt: 10397) +.up2stream.com/vjs/plugin/css/ads\.css +# @@||union.m.jd.com/click/ (easylistchina.txt: 10396) +.union.m.jd.com/click/ +# @@||union.easypass.cn/block/ (easylistchina.txt: 10395) +.union.easypass.cn/block/ +# @@||union.click.jd.com^ (easylistchina.txt: 10394) +.union.click.jd.com +# @@||union.bokecc.com/servlet/getvideofile? (easylistchina.txt: 10393) +.union.bokecc.com/servlet/getvideofile\? +# @@||union.bokecc.com/player? (easylistchina.txt: 10392) +.union.bokecc.com/player\? +# @@||union.bokecc.com/flash/$object (easylistchina.txt: 10391) +.union.bokecc.com/flash/ +# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina.txt: 10389) +.ujinbi.com/UpLoadFile/guanggao/ +# @@||ujinbi.com/AD/ (easylistchina.txt: 10388) +.ujinbi.com/AD/ +# @@||u9pan.com/images/ads/ (easylistchina.txt: 10386) +.u9pan.com/images/ads/ +# @@||tt1069.com/advert.js (easylistchina.txt: 10384) +.tt1069.com/advert\.js +# @@||toy9090.com^*/NR.gif (easylistchina.txt: 10383) +.toy9090.com/.*/NR\.gif +# @@||toy9090.com^*/NL.gif (easylistchina.txt: 10382) +.toy9090.com/.*/NL\.gif +# @@||totheglory.im/pic/ttg_logo (easylistchina.txt: 10381) +.totheglory.im/pic/ttg_logo +# @@||tompda.com/images/pix.swf (easylistchina.txt: 10380) +.tompda.com/images/pix\.swf +# @@||tmall.com/go/*/banner.php (easylistchina.txt: 10379) +.tmall.com/go/.*/banner\.php +# @@||tenpay.com^*?ADTAG= (easylistchina.txt: 10378) +.tenpay.com/.*\?ADTAG= +# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina.txt: 10377) +.tenpay.com/v2\.0/main/creditcard/portal_rpm_apply\.shtml +# @@||taobao.com^*&adgroupid= (easylistchina.txt: 10375) +.taobao.com/.*&adgroupid= +# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina.txt: 10374) +.taobao.com/go/app/tmall/login-api\.php\? +# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina.txt: 10373) +.tansuo.cntv.cn/.*/tansuo_Advertise\.js +# @@||sx566.com/templates/default/images/ad (easylistchina.txt: 10371) +.sx566.com/templates/default/images/ad +# @@||sudupan.com^*/*.gif (easylistchina.txt: 10370) +.sudupan.com/.*/.*\.gif +# @@||static.hdslb.com/ad-images/$image (easylistchina.txt: 10368) +.static.hdslb.com/ad-images/ +# @@||static.atm.youku.com^*.swf (easylistchina.txt: 10367) +.static.atm.youku.com/.*\.swf +# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina.txt: 10366) +.spbonow.com/UploadFiles/201505/2015051853456325\.gif +# @@||spbonow.com/images/ads/logo.gif (easylistchina.txt: 10365) +.spbonow.com/images/ads/logo\.gif +# @@||sjsmitaa.org/bin/showads. (easylistchina.txt: 10364) +.sjsmitaa.org/bin/showads\. +# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina.txt: 10363) +.sinaimg.cn/.*/deco/.*/sinaObj\.js +# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina.txt: 10361) +.sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra\.gif +# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina.txt: 10360) +.sinaimg.cn/dy/deco/.*/js/require\.js +# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina.txt: 10359) +.sinaimg.cn/dy/deco/.*/js/base\.js +# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina.txt: 10357) +.sinaimg.cn/ad/adimage/50x50_ +# @@||sina.com.hk^*_ads.cgi (easylistchina.txt: 10356) +.sina.com.hk/.*_ads\.cgi +# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina.txt: 10355) +.sina.com.cn/litong/zhitou/pic/close- +# @@||simba.taobao.com/?name=mcad$script (easylistchina.txt: 10354) +.simba.taobao.com/\?name=mcad +# @@||share.dmhy.*/generate-captcha? (easylistchina.txt: 10353) +.share.dmhy.*./(.*/)?generate-captcha\? +# @@||sf-express.com/.galleries/advertisement/ (easylistchina.txt: 10352) +.sf-express.com/\.galleries/advertisement/ +# @@||selfimg.com.cn/?? (easylistchina.txt: 10350) +.selfimg.com.cn/\?\? +# @@||sdc.pingan.com^$~image (easylistchina.txt: 10349) +.sdc.pingan.com +# @@||sc.jb51.net/adimg/*.jpg (easylistchina.txt: 10348) +.sc.jb51.net/adimg/.*\.jpg +# @@||sakai.club/advertisement.js (easylistchina.txt: 10347) +.sakai.club/advertisement\.js +# @@||sakai-hk.com/advertisement.js (easylistchina.txt: 10346) +.sakai-hk.com/advertisement\.js +# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina.txt: 10345) +.saibeinews.com/index\.php\?m=poster&c=index&a=show_poster&id=2 +# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina.txt: 10343) +.ruten.com.tw/js/jquery\.ruten\.supertop_ad\.js +# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina.txt: 10341) +.regapi.37.com/api/p_register\.php\?login_account= +# @@||ref.so/templates/ref/short_show/adview_ (easylistchina.txt: 10340) +.ref.so/templates/ref/short_show/adview_ +# @@||rakuya.com.tw^*/common_ad. (easylistchina.txt: 10339) +.rakuya.com.tw/.*/common_ad\. +# @@||quwenjiemi.com/105.js? (easylistchina.txt: 10338) +.quwenjiemi.com/105\.js\? +# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina.txt: 10337) +.qqread.com/swf/qqread_rollpic\.swf +# @@||qq.com^*?ADTAG= (easylistchina.txt: 10336) +.qq.com/.*\?ADTAG= +# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina.txt: 10335) +.qq.com/server/website/CommWebGameSelect_ad\.js +# @@||qq.com/bossweb/jifen/ (easylistchina.txt: 10334) +.qq.com/bossweb/jifen/ +# @@||qiyipic.com/common/fix/pub_images/ (easylistchina.txt: 10333) +.qiyipic.com/common/fix/pub_images/ +# @@||qingdaoport.net/adv/random.jsp (easylistchina.txt: 10332) +.qingdaoport.net/adv/random\.jsp +# @@||qingcheng.com^*/ad (easylistchina.txt: 10331) +.qingcheng.com/.*/ad +# @@||qikuyou.com/images/js/adv.js (easylistchina.txt: 10330) +.qikuyou.com/images/js/adv\.js +# @@||qidian.com/ploy/20*.swf (easylistchina.txt: 10329) +.qidian.com/ploy/20.*\.swf +# @@||pub.alimama.com/common/adzone/ (easylistchina.txt: 10328) +.pub.alimama.com/common/adzone/ +# @@||ps123.net/MyFile/toptxt.js (easylistchina.txt: 10327) +.ps123.net/MyFile/toptxt\.js +# @@||pos.baidu.com/acom?di=u1840644& (easylistchina.txt: 10325) +.pos.baidu.com/acom\?di=u1840644& +# @@||pos.baidu.com/acom?di=u1705639& (easylistchina.txt: 10324) +.pos.baidu.com/acom\?di=u1705639& +# @@||pos.baidu.com/acom?di=u1671167& (easylistchina.txt: 10323) +.pos.baidu.com/acom\?di=u1671167& +# @@||pos.baidu.com/acom?di=u1460926& (easylistchina.txt: 10322) +.pos.baidu.com/acom\?di=u1460926& +# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina.txt: 10320) +.pmm.people.com.cn/main/s\?user=people\|homepage\|2013juxing +# @@||piccool.com/2home/phpAdsNew/ (easylistchina.txt: 10319) +.piccool.com/2home/phpAdsNew/ +# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina.txt: 10318) +.pic.zol-img.com.cn/2009/pix_index\.swf +# @@||photo.erji.com/tb/*.gif (easylistchina.txt: 10317) +.photo.erji.com/tb/.*\.gif +# @@||pep.com.cn/rjs/guanggao/ (easylistchina.txt: 10316) +.pep.com.cn/rjs/guanggao/ +# @@||ouyaoxiazai.com/shouyead.js (easylistchina.txt: 10312) +.ouyaoxiazai.com/shouyead\.js +# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina.txt: 10311) +.ooomm.com/ad/Whoyao_logo114\.png +# @@||ooomm.com/ad/icon/ (easylistchina.txt: 10310) +.ooomm.com/ad/icon/ +# @@||online.unionpay.com/ads/$script (easylistchina.txt: 10309) +.online.unionpay.com/ads/ +# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina.txt: 10308) +.omusic.com.tw/backend/uploadpic/adindex/ +# @@||newxing.com/a_d/downAddress.js (easylistchina.txt: 10307) +.newxing.com/a_d/downAddress\.js +# @@||news.u17i.com/advert/ (easylistchina.txt: 10306) +.news.u17i.com/advert/ +# @@||new7574.u.qiniudn.com^*^ad (easylistchina.txt: 10305) +.new7574.u.qiniudn.com/.*[^\w%.-]ad +# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina.txt: 10304) +.netded.com/plus/ad_js\.php\?aid=3$ +# @@||naruto.hk/ad/uy.js (easylistchina.txt: 10303) +.naruto.hk/ad/uy\.js +# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina.txt: 10302) +.mymusic.net.tw/js/ad/index_1\.js +# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina.txt: 10301) +.muzhiwan.com/forum\.php\?.*=300x250& +# @@||mnighthk.net/template/*/ad (easylistchina.txt: 10298) +.mnighthk.net/template/.*/ad +# @@||mm.maxthon.cn/ad/ (easylistchina.txt: 10297) +.mm.maxthon.cn/ad/ +# @@||miaozhen.com^*/m.suning. (easylistchina.txt: 10296) +.miaozhen.com/.*/m\.suning\. +# @@||meizu.com/fileserver/ad/img/ (easylistchina.txt: 10295) +.meizu.com/fileserver/ad/img/ +# @@||ltxhcz.com/skin/default/images/ (easylistchina.txt: 10292) +.ltxhcz.com/skin/default/images/ +# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina.txt: 10291) +.life.tenpay.com/res/ad/cellphone/js/down_for_app\.js +# @@||letvcloud.com^*&showAd= (easylistchina.txt: 10289) +.letvcloud.com/.*&showAd= +# @@||letv.com*/tuiguang/$subdocument (easylistchina.txt: 10288) +.letv.com*./(.*/)?tuiguang/ +# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina.txt: 10286) +.l.qq.com/livemsg\?ty=web&ad_type= +# @@||kukuplay.com/upload/*.*.swf (easylistchina.txt: 10285) +.kukuplay.com/upload/.*\..*\.swf +# @@||joy.cn/service.php?*&showad= (easylistchina.txt: 10281) +.joy.cn/service\.php\?.*&showad= +# @@||jjjgame.com/plus/ad_ (easylistchina.txt: 10280) +.jjjgame.com/plus/ad_ +# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina.txt: 10279) +.jj.5ccc.net/scripts/new/pagetop\.js +# @@||jinhongweiqi.com/ad/update/ (easylistchina.txt: 10278) +.jinhongweiqi.com/ad/update/ +# @@||itjsb.com/bg.gif (easylistchina.txt: 10276) +.itjsb.com/bg\.gif +# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina.txt: 10275) +.itiexue.net/js/tiexue/statistic/wwwindex/ +# @@||indeep.com.tw^*/Showad. (easylistchina.txt: 10271) +.indeep.com.tw/.*/Showad\. +# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina.txt: 10270) +.indeep.com.tw/Images/Upload/AdPic/ +# @@||indeep.com.tw/images/ad.swf? (easylistchina.txt: 10269) +.indeep.com.tw/images/ad\.swf\? +# @@||img.ybbbs.com/2014/*app (easylistchina.txt: 10268) +.img.ybbbs.com/2014/.*app +# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina.txt: 10264) +.icbc.com.cn/Portal_Resources/Common/AdRes/ +# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina.txt: 10263) +.icbc.com.cn/Portal_Resources/Common/AdCss/ +# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina.txt: 10262) +.icbc.com.cn/ICBC_ADJS/ +# @@||icbc.com.cn/icbc/include/AD_ (easylistchina.txt: 10261) +.icbc.com.cn/icbc/include/AD_ +# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina.txt: 10259) +.i3.sinaimg.cn/video/deco/2013/0325/js/ +# @@||hunantv.com/FrameWork/AFP/ (easylistchina.txt: 10258) +.hunantv.com/FrameWork/AFP/ +# @@||huelead.com/images/*ad (easylistchina.txt: 10257) +.huelead.com/images/.*ad +# @@||hkjc.com/banners/ (easylistchina.txt: 10256) +.hkjc.com/banners/ +# @@||hhtt.cn/web.php/ad/show (easylistchina.txt: 10255) +.hhtt.cn/web\.php/ad/show +# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina.txt: 10254) +.hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg\.js +# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina.txt: 10253) +.heikexs.com/wp-content/themes/Duoxs.*/js/user\.js +# @@||guancha.cn/ad/m_ (easylistchina.txt: 10251) +.guancha.cn/ad/m_ +# @@||gqzzw.com*/adview_ (easylistchina.txt: 10250) +.gqzzw.com*./(.*/)?adview_ +# @@||gqdzs.com*/adview_ (easylistchina.txt: 10249) +.gqdzs.com*./(.*/)?adview_ +# @@||gpsdlm.com/images/ad. (easylistchina.txt: 10248) +.gpsdlm.com/images/ad\. +# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina.txt: 10247) +.gov.cn/scripts/Comm/AdRotator\.js +# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina.txt: 10246) +.go.goyeah.com/adpolestar/ +# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina.txt: 10245) +.gg1z.com/statics/gg/greendown/logo\.gif +# @@||gg.yxdown.com/count/countzt.js (easylistchina.txt: 10244) +.gg.yxdown.com/count/countzt\.js +# @@||gg.img123456.com^ (easylistchina.txt: 10242) +.gg.img123456.com +# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina.txt: 10241) +.ganji.com/findjob/send_resume\..*&ad_type= +# @@||gamersky.com^*/dhgame_ (easylistchina.txt: 10240) +.gamersky.com/.*/dhgame_ +# @@||game.sina.com.tw/game_data/advertise/ (easylistchina.txt: 10239) +.game.sina.com.tw/game_data/advertise/ +# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina.txt: 10238) +.g.tbcdn.cn/tb/mercury/.*/ads/index\. +# @@||g.alicdn.com/??*/criteo (easylistchina.txt: 10237) +.g.alicdn.com/\?\?.*/criteo +# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina.txt: 10236) +.g.163.com/jr\?site=netease&affiliate=freemail +# @@||forum.51nb.com/images/*/ (easylistchina.txt: 10235) +.forum.51nb.com/images/.*/ +# @@||fharr.com^$generichide (easylistchina.txt: 10234) +.fharr.com +# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina.txt: 10232) +.esquirehk.com/action/adtag/\(type\)/googletag/\(method\)/async +# @@||emome.net/files/advertising/ (easylistchina.txt: 10231) +.emome.net/files/advertising/ +# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina.txt: 10230) +.eiv.baidu.com/hmt/icon/21\.gif +# @@||edgesuite.net^*/ad.css? (easylistchina.txt: 10229) +.edgesuite.net/.*/ad\.css\? +# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina.txt: 10228) +.eden.org.tw/themes/liger/images/banner_ +# @@||eden.org.tw*/script/ad_banner/ (easylistchina.txt: 10227) +.eden.org.tw*./(.*/)?script/ad_banner/ +# @@||ecma.bdimg.com/holmes/*.svg (easylistchina.txt: 10226) +.ecma.bdimg.com/holmes/.*\.svg +# @@||ecitic.com/eshop/advertise/ (easylistchina.txt: 10225) +.ecitic.com/eshop/advertise/ +# @@||ecitic.com/ads_ (easylistchina.txt: 10224) +.ecitic.com/ads_ +# @@||ebiotrade.com/jslibrary/js44.js (easylistchina.txt: 10223) +.ebiotrade.com/jslibrary/js44\.js +# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina.txt: 10218) +.e.cn.miaozhen.com/r/k=.*=http +# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina.txt: 10217) +.dzwww.com/ad/jsfiles/fillCon\.js +# @@||dvs.china.com/crossdomain.xml (easylistchina.txt: 10216) +.dvs.china.com/crossdomain\.xml +# @@||dvs.china.com/adv1.xml (easylistchina.txt: 10215) +.dvs.china.com/adv1\.xml +# @@||dvbcn.com/caches/poster_js/23.js (easylistchina.txt: 10214) +.dvbcn.com/caches/poster_js/23\.js +# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina.txt: 10213) +.dushiwenxue.com/add/article/pagetop\.js +# @@||duba.net/common/cf/common_6545_icon. (easylistchina.txt: 10212) +.duba.net/common/cf/common_6545_icon\. +# @@||downbank.cn/s1/yl.js (easylistchina.txt: 10211) +.downbank.cn/s1/yl\.js +# @@||down.cc/down/js/ad.js (easylistchina.txt: 10210) +.down.cc/down/js/ad\.js +# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina.txt: 10209) +.do189.com/zb_users/theme/duoyi/style/images/text_bg\.gif +# @@||dnvod.eu/ads/$object-subrequest (easylistchina.txt: 10208) +.dnvod.eu/ads/ +# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina.txt: 10207) +.disney.com.tw/tv/global/swf/banner728x90\.swf +# @@||dilidili.com/js/week.js (easylistchina.txt: 10206) +.dilidili.com/js/week\.js +# @@||daoju.qq.com/time/*/js/ad/ (easylistchina.txt: 10205) +.daoju.qq.com/time/.*/js/ad/ +# @@||damai.cn^*/TopAd/ (easylistchina.txt: 10204) +.damai.cn/.*/TopAd/ +# @@||cztv.com/player/*.swf?ad= (easylistchina.txt: 10203) +.cztv.com/player/.*\.swf\?ad= +# @@||csbew.com/FrameWork/AFP/ (easylistchina.txt: 10201) +.csbew.com/FrameWork/AFP/ +# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina.txt: 10200) +.cq.qq.com/js/cody/.*scroll_ad\.js +# @@||costco.com.tw/jsps/website/*AD (easylistchina.txt: 10197) +.costco.com.tw/jsps/website/.*AD +# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina.txt: 10196) +.content.s8bbs.com/ad/bbs/.*\.jpg +# @@||cntv.cn^*_ad.js (easylistchina.txt: 10195) +.cntv.cn/.*_ad\.js +# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina.txt: 10194) +.cnsofas.com/loldytt/js/jquery\.js +# @@||cnr.cn/gg/ (easylistchina.txt: 10193) +.cnr.cn/gg/ +# @@||cmbchina.com/ads/ (easylistchina.txt: 10192) +.cmbchina.com/ads/ +# @@||click.union.vip.com^ (easylistchina.txt: 10191) +.click.union.vip.com +# @@||click.union.jd.com^ (easylistchina.txt: 10190) +.click.union.jd.com +# @@||citysbs.com^*/swfupload/ (easylistchina.txt: 10189) +.citysbs.com/.*/swfupload/ +# @@||chinahr.com/images/phpads/ (easylistchina.txt: 10188) +.chinahr.com/images/phpads/ +# @@||cdn.wdlm.cn^*/ (easylistchina.txt: 10187) +.cdn.wdlm.cn/.*/ +# @@||cb.baidu.com/ecom?di=943217& (easylistchina.txt: 10182) +.cb.baidu.com/ecom\?di=943217& +# @@||cb.baidu.com/ecom?di=893557& (easylistchina.txt: 10181) +.cb.baidu.com/ecom\?di=893557& +# @@||cb.baidu.com/ecom?di=817641& (easylistchina.txt: 10180) +.cb.baidu.com/ecom\?di=817641& +# @@||cb.baidu.com/ecom?di=654997& (easylistchina.txt: 10179) +.cb.baidu.com/ecom\?di=654997& +# @@||cb.baidu.com/ecom?di=373107& (easylistchina.txt: 10178) +.cb.baidu.com/ecom\?di=373107& +# @@||cb.baidu.com/ecom?di=106878& (easylistchina.txt: 10177) +.cb.baidu.com/ecom\?di=106878& +# @@||buy.ccb.com/public/js/ad.js (easylistchina.txt: 10173) +.buy.ccb.com/public/js/ad\.js +# @@||briian.com/advert. (easylistchina.txt: 10172) +.briian.com/advert\. +# @@||blimage.com/picserver/ggpic/ (easylistchina.txt: 10171) +.blimage.com/picserver/ggpic/ +# @@||biz.gexing.com/bottom_ (easylistchina.txt: 10169) +.biz.gexing.com/bottom_ +# @@||biquge5.com/jquery/biquge.js (easylistchina.txt: 10168) +.biquge5.com/jquery/biquge\.js +# @@||beanfun.com/ADClient/ (easylistchina.txt: 10166) +.beanfun.com/ADClient/ +# @@||bdstatic.com/??*, (easylistchina.txt: 10165) +.bdstatic.com/\?\?.*, +# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina.txt: 10163) +.bbs.yantuchina.com/gg/tmp/hong\.gif +# @@||banma.com/statics/js/?? (easylistchina.txt: 10162) +.banma.com/statics/js/\?\? +# @@||bahamut.com.tw/JS/ad/mobileBigBanner.js (easylistchina.txt: 10161) +.bahamut.com.tw/JS/ad/mobileBigBanner\.js +# @@||atm.youku.com/cast/getFlvUrl. (easylistchina.txt: 10160) +.atm.youku.com/cast/getFlvUrl\. +# @@||astyle.alicdn.com/?? (easylistchina.txt: 10159) +.astyle.alicdn.com/\?\? +# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina.txt: 10158) +.aspjzy.com/jsweb/js/hotsearch\.js +# @@||aqy103.com/js/aqy/main.js (easylistchina.txt: 10156) +.aqy103.com/js/aqy/main\.js +# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina.txt: 10155) +.appledaily.com.hk/admedia/ +# @@||appbyme.com^*/Advertisement.css (easylistchina.txt: 10154) +.appbyme.com/.*/Advertisement\.css +# @@||appbyme.com/adclient/ (easylistchina.txt: 10153) +.appbyme.com/adclient/ +# @@||angpic.3g.net.cn/ai/*/ (easylistchina.txt: 10152) +.angpic.3g.net.cn/ai/.*/ +# @@||airenti.in/*/$script (easylistchina.txt: 10149) +.airenti.in/.*/ +# @@||advertise.shijue.cvidea.cn^ (easylistchina.txt: 10148) +.advertise.shijue.cvidea.cn +# @@||advert.kf5.com^ (easylistchina.txt: 10147) +.advert.kf5.com +# @@||ads.i8.com.cn/hd/dzs/ (easylistchina.txt: 10143) +.ads.i8.com.cn/hd/dzs/ +# @@||adjs.8591.com.tw^$script (easylistchina.txt: 10139) +.adjs.8591.com.tw +# @@||addon.discuz.com/resource/*/ad (easylistchina.txt: 10138) +.addon.discuz.com/resource/.*/ad +# @@||adcdn.pingan.com^ (easylistchina.txt: 10137) +.adcdn.pingan.com +# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina.txt: 10136) +.ad1.nownews.com/ads\.php\?ownerid=1335 +# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina.txt: 10135) +.ad1.nownews.com/ads\.php\?ownerid=1334 +# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina.txt: 10134) +.ad1.nownews.com/ads\.php\?ownerid=1333 +# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina.txt: 10133) +.ad1.nownews.com/ads\.php\?ownerid=1332 +# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina.txt: 10132) +.ad1.nownews.com/ads\.php\?ownerid=1331 +# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina.txt: 10131) +.ad1.nownews.com/ads\.php\?ownerid=1325 +# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina.txt: 10130) +.ad1.nownews.com/ads\.php\?ownerid=1324 +# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina.txt: 10129) +.ad1.nownews.com/ads\.php\?ownerid=1323 +# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina.txt: 10128) +.ad1.nownews.com/ads\.php\?ownerid=1322 +# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina.txt: 10127) +.ad1.nownews.com/ads\.php\?ownerid=1321 +# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina.txt: 10126) +.ad1.nownews.com/ads\.php\?ownerid=1294 +# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina.txt: 10125) +.ad1.nownews.com/.*\.php\?ownerid=1355 +# @@||ad.thsi.cn/siteHome/ (easylistchina.txt: 10123) +.ad.thsi.cn/siteHome/ +# @@||ad.qyer.com^ (easylistchina.txt: 10122) +.ad.qyer.com +# @@||ad.ourgame.com^ (easylistchina.txt: 10121) +.ad.ourgame.com +# @@||ad.kazakinfo.com^ (easylistchina.txt: 10120) +.ad.kazakinfo.com +# @@||ad.jz123.cn^ (easylistchina.txt: 10119) +.ad.jz123.cn +# @@||ad.damai.cn^ (easylistchina.txt: 10117) +.ad.damai.cn +# @@||ad.abchina.com^ (easylistchina.txt: 10115) +.ad.abchina.com +# @@||ad.10010.com^ (easylistchina.txt: 10112) +.ad.10010.com +# @@||abchina.com^*/images/ad. (easylistchina.txt: 10110) +.abchina.com/.*/images/ad\. +# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina.txt: 10109) +.a.banggo.com/Ad/getAdPosList\.shtml +# @@||99ting.cn/image/ding.gif (easylistchina.txt: 10106) +.99ting.cn/image/ding\.gif +# @@||95599.cn^*/images/ad. (easylistchina.txt: 10105) +.95599.cn/.*/images/ad\. +# @@||8591.com.tw^*/buyAd.css (easylistchina.txt: 10104) +.8591.com.tw/.*/buyAd\.css +# @@||7vk.com/detail/shehuipinlun.js (easylistchina.txt: 10103) +.7vk.com/detail/shehuipinlun\.js +# @@||7s8.net/image/ads/ (easylistchina.txt: 10102) +.7s8.net/image/ads/ +# @@||77119.com/js/fenxiang.js (easylistchina.txt: 10101) +.77119.com/js/fenxiang\.js +# @@||75.125.41.29:8080/*/ (easylistchina.txt: 10100) +.75.125.41.29:8080/.*/ +# @@||70.86.24.120:8060/*/ (easylistchina.txt: 10097) +.70.86.24.120:8060/.*/ +# @@||61ef.cn/upfiles/gg/ (easylistchina.txt: 10096) +.61ef.cn/upfiles/gg/ +# @@||61.164.108.184/tb/*.gif (easylistchina.txt: 10095) +.61.164.108.184/tb/.*\.gif +# @@||61.164.108.104:4275/*/*.gif (easylistchina.txt: 10094) +.61.164.108.104:4275/.*/.*\.gif +# @@||58cdn.com.cn/tuiguang/center/ (easylistchina.txt: 10092) +.58cdn.com.cn/tuiguang/center/ +# @@||58.com/adJump?adType= (easylistchina.txt: 10090) +.58.com/adJump\?adType= +# @@||52zy.com/gg/ (easylistchina.txt: 10089) +.52zy.com/gg/ +# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina.txt: 10088) +.52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b\.png +# @@||51img1.com/??*/adsys. (easylistchina.txt: 10087) +.51img1.com/\?\?.*/adsys\. +# @@||51hanhua.com/2013/brtxt.js (easylistchina.txt: 10086) +.51hanhua.com/2013/brtxt\.js +# @@||360buyimg.com^*?? (easylistchina.txt: 10084) +.360buyimg.com/.*\?\? +# @@||3399.com/DataTransfer/Advertisement/ (easylistchina.txt: 10081) +.3399.com/DataTransfer/Advertisement/ +# @@||33.autohome.com.cn/njs/newget.js (easylistchina.txt: 10080) +.33.autohome.com.cn/njs/newget\.js +# @@||33.autohome.com.cn/njs/10055.js (easylistchina.txt: 10079) +.33.autohome.com.cn/njs/10055\.js +# @@||2kandy.com^$generichide (easylistchina.txt: 10078) +.2kandy.com +# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina.txt: 10077) +.2kandy.com/source/plugin/fieah_blockadblock/ +# @@||221.7.250.35/caches/poster_js/21.js (easylistchina.txt: 10076) +.221.7.250.35/caches/poster_js/21\.js +# @@||192.168.*/advertising_$stylesheet (easylistchina.txt: 10075) +.192.168.*./(.*/)?advertising_ +# @@||189.cn^$generichide (easylistchina.txt: 10073) +.189.cn +# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina.txt: 10072) +.189.cn/activity/adzh2015/js/ad\.js +# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina.txt: 10071) +.17kk.cc/scriptAD/other/new_manhua\.html +# @@||177mh.com/img_v1/bbad.gif (easylistchina.txt: 10070) +.177mh.com/img_v1/bbad\.gif +# @@||17173.com/x/flash800500.js (easylistchina.txt: 10069) +.17173.com/x/flash800500\.js +# @@||16888.com/dist/js/?? (easylistchina.txt: 10068) +.16888.com/dist/js/\?\? +# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina.txt: 10067) +.131js.131.com/home/resouces/js/index_20120420\.js +# @@||123dhang.com/supo/advertisement.js (easylistchina.txt: 10065) +.123dhang.com/supo/advertisement\.js +# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina.txt: 10064) +.12306.cn/otn/resources/images/pic/new-ad +# @@||113.com.tw/www/image/index-ad.png (easylistchina.txt: 10063) +.113.com.tw/www/image/index-ad\.png +# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina.txt: 10062) +.107.182.131.103/cache/\?q=/images/.*/ +# @@||10086.cn^$generichide (easylistchina.txt: 10060) +.10086.cn +# @@||10010.com^*/ad/ (easylistchina.txt: 10059) +.10010.com/.*/ad/ +# @@||10010.com^*/ad. (easylistchina.txt: 10058) +.10010.com/.*/ad\. +# @@||060s.com/images_ad/*.png (easylistchina.txt: 10057) +.060s.com/images_ad/.*\.png +# @@|http://tieba.baidu.com/|$genericblock (easylistchina.txt: 10056) +tieba.baidu.com/$ +# @@|http://*/gg/*.css (easylistchina.txt: 10055) +/(.*/)?gg/.*\.css +# @@u-ads.adap.tv*youku.com (easylistchina.txt: 10049) +/.*u-ads\.adap\.tv.*youku\.com +.*u-ads.adap.tv*./.*youku\.com +.*u-ads.adap.tv*youku.com*. +# @@/ttkdweb/page/js/ad.js (easylistchina.txt: 10040) +/(.*/)?ttkdweb/page/js/ad\.js +# @@/page/adv.html?advId=$subdocument (easylistchina.txt: 10031) +/(.*/)?page/adv\.html\?advId= +# @@/data/attachment/*_300_250_ (easylistchina.txt: 10018) +/(.*/)?data/attachment/.*_300_250_ +# @@/cntv_Advertise.js (easylistchina.txt: 10015) +/(.*/)?cntv_Advertise\.js +# @@/appledaily/homead/*_ad_logo. (easylistchina.txt: 10011) +/(.*/)?appledaily/homead/.*_ad_logo\. +# @@/32666/images/ad (easylistchina.txt: 9980) +/(.*/)?32666/images/ad +# @@/2kuai/images/ad (easylistchina.txt: 9979) +/(.*/)?2kuai/images/ad +# @@.tudouui.com^*&adSourceId= (easylistchina.txt: 9977) +/.*\.tudouui\.com[^\w%.-].*&adSourceId= +.*.tudouui.com/.*&adSourceId= +# @@.s1979.com/ad/ad*.mp4 (easylistchina.txt: 9976) +/.*\.s1979\.com/ad/ad.*\.mp4 +.*.s1979.com/ad/ad.*\.mp4 +# @@.jstv.com/c/gg/ (easylistchina.txt: 9975) +/.*\.jstv\.com/c/gg/ +.*.jstv.com/c/gg/ +# @@.cntv.cn/adplayer/ (easylistchina.txt: 9970) +/.*\.cntv\.cn/adplayer/ +.*.cntv.cn/adplayer/ +# @@.beautifulphoto.net/ads/music (easylistchina.txt: 9969) +/.*\.beautifulphoto\.net/ads/music +.*.beautifulphoto.net/ads/music +# @@&adf=dalian_300x250_ (easylistchina.txt: 9967) +/.*&adf=dalian_300x250_ +# @@||union.bokecc.com/crossdomain.xml (easylistchina.txt: 21) +.union.bokecc.com/crossdomain\.xml +# @@||poster.weather.com.cn/p_files/base/$image (easylistchina.txt: 20) +.poster.weather.com.cn/p_files/base/ +# @@||hichannel.hinet.net^$object-subrequest (easylistchina.txt: 19) +.hichannel.hinet.net + +#ab2p-unblock-elem-R189 +{+client-header-tagger{ab2p-unblock-elem-R189} \ +} +# @@.com/ad.$domain=0379home.com (easylistchina.txt: 9971) +/.*\.com/ad\. +.*.com/ad\. + +#ab2p-unblock-elem-R190 +{+client-header-tagger{ab2p-unblock-elem-R190} \ +} +# @@||10086.cn^*/ad$domain=10086.cn (easylistchina.txt: 10061) +.10086.cn/.*/ad + +#ab2p-unblock-elem-R191 +{+client-header-tagger{ab2p-unblock-elem-R191} \ +} +# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina.txt: 10024) +/(.*/)?images/ad + +#ab2p-unblock-elem-R192 +{+client-header-tagger{ab2p-unblock-elem-R192} \ +} +# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina.txt: 10199) +.cpro.baidustatic.com/cpro/ui/c\.js + +#ab2p-unblock-elem-R193 +{+client-header-tagger{ab2p-unblock-elem-R193} \ +} +# @@/advertise.$domain=123.138.234.240 (easylistchina.txt: 10002) +/(.*/)?advertise\. +advertise.*. + +#ab2p-unblock-elem-R194 +{+client-header-tagger{ab2p-unblock-elem-R194} \ +} +# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina.txt: 10141) +.adm.cnzz.net/js/abase\.js +# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina.txt: 10140) +.adm.cnzz.net/appgcm\.php\?sid=244627& + +#ab2p-unblock-elem-R195 +{+client-header-tagger{ab2p-unblock-elem-R195} \ +} +# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|keenfine.com|mahua.com (easylistchina.txt: 10008) +/(.*/)?adview_pic_ + +#ab2p-unblock-elem-R196 +{+client-header-tagger{ab2p-unblock-elem-R196} \ +} +# @@?sid=ads$domain=126.com|mail.163.com (easylistchina.txt: 10048) +/.*\?sid=ads + +#ab2p-unblock-elem-R197 +{+client-header-tagger{ab2p-unblock-elem-R197} \ +} +# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina.txt: 10066) +.127.0.0.1/admin/admin_ad\.php\? + +#ab2p-unblock-elem-R198 +{+client-header-tagger{ab2p-unblock-elem-R198} \ +} +# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 10017) +/(.*/)?css/ad\. +# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 9978) +/(.*/)?168logo\.gif +168logo.gif*. + +#ab2p-unblock-elem-R199 +{+client-header-tagger{ab2p-unblock-elem-R199} \ +} +# @@/cms/ads/*$domain=17.com (easylistchina.txt: 10014) +/(.*/)?cms/ads/.* + +#ab2p-unblock-elem-R200 +{+client-header-tagger{ab2p-unblock-elem-R200} \ +} +# @@/ads/*$domain=189.cn (easylistchina.txt: 9994) +/(.*/)?ads/.* + +#ab2p-unblock-elem-R201 +{+client-header-tagger{ab2p-unblock-elem-R201} \ +} +# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina.txt: 10033) +/(.*/)?pop\.js$ +pop.js + +#ab2p-unblock-elem-R202 +{+client-header-tagger{ab2p-unblock-elem-R202} \ +} +# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina.txt: 10022) +/(.*/)?ima/.*ad\. + +#ab2p-unblock-elem-R203 +{+client-header-tagger{ab2p-unblock-elem-R203} \ +} +# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina.txt: 9968) +/.*&adurl=http:// + +#ab2p-unblock-elem-R204 +{+client-header-tagger{ab2p-unblock-elem-R204} \ +} +# @@/assets/adv/*$domain=4008927927.cn (easylistchina.txt: 10012) +/(.*/)?assets/adv/.* + +#ab2p-unblock-elem-R206 +{+client-header-tagger{ab2p-unblock-elem-R206} \ +} +# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina.txt: 10198) +.cpro.baidu.com/cpro/ui/c\.js + +#ab2p-unblock-elem-R207 +{+client-header-tagger{ab2p-unblock-elem-R207} \ +} +# @@||5i5j.*/images/ad$domain=5i5j.com (easylistchina.txt: 10093) +.5i5j.*./(.*/)?images/ad + +#ab2p-unblock-elem-R208 +{+client-header-tagger{ab2p-unblock-elem-R208} \ +} +# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina.txt: 10184) +.cbjs.baidu.com/js/o\.js + +#ab2p-unblock-elem-R209 +{+client-header-tagger{ab2p-unblock-elem-R209} \ +} +# @@/common/cf/*$domain=66u.com|dataguru.cn|oneplusbbs.com|readboy.com (easylistchina.txt: 10016) +/(.*/)?common/cf/.* + +#ab2p-unblock-elem-R210 +{+client-header-tagger{ab2p-unblock-elem-R210} \ +} +# @@/images/*/*.gif$domain=67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina.txt: 10023) +/(.*/)?images/.*/.*\.gif + +#ab2p-unblock-elem-R211 +{+client-header-tagger{ab2p-unblock-elem-R211} \ +} +# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina.txt: 10434) +/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ +/\.7k7k.com\/(?!(ad|load)) + +#ab2p-unblock-elem-R212 +{+client-header-tagger{ab2p-unblock-elem-R212} \ +} +# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina.txt: 9981) +/(.*/)?ad_file/.* + +#ab2p-unblock-elem-R213 +{+client-header-tagger{ab2p-unblock-elem-R213} \ +} +# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina.txt: 10287) +.l.qq.com/lview\? +# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina.txt: 10277) +.j.wit.qq.com/sc/crystal_ad\.js\? + +#ab2p-unblock-elem-R214 +{+client-header-tagger{ab2p-unblock-elem-R214} \ +} +# @@/ad_images/*$domain=88box.com (easylistchina.txt: 9982) +/(.*/)?ad_images/.* + +#ab2p-unblock-elem-R215 +{+client-header-tagger{ab2p-unblock-elem-R215} \ +} +# @@.com/ads/$domain=88boxjx.com (easylistchina.txt: 9973) +/.*\.com/ads/ +.*.com/ads/ + +#ab2p-unblock-elem-R216 +{+client-header-tagger{ab2p-unblock-elem-R216} \ +} +# @@/web/ads/*$domain=95516.com (easylistchina.txt: 10042) +/(.*/)?web/ads/.* + +#ab2p-unblock-elem-R217 +{+client-header-tagger{ab2p-unblock-elem-R217} \ +} +# @@/images/ad/*$domain=9588.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|snh48.com|sozi.cn|tingbook.com (easylistchina.txt: 10025) +/(.*/)?images/ad/.* + +#ab2p-unblock-elem-R218 +{+client-header-tagger{ab2p-unblock-elem-R218} \ +} +# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina.txt: 10326) +.pos.baidu.com/ecom\? + +#ab2p-unblock-elem-R219 +{+client-header-tagger{ab2p-unblock-elem-R219} \ +} +# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina.txt: 10116) +.ad.alimama.com + +#ab2p-unblock-elem-R220 +{+client-header-tagger{ab2p-unblock-elem-R220} \ +} +# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina.txt: 10111) +.ad-specs.guoshipartners.com/static/js/isip\.js + +#ab2p-unblock-elem-R221 +{+client-header-tagger{ab2p-unblock-elem-R221} \ +} +# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina.txt: 10272) +.inskinmedia.com/.*/js/base/api/ + +#ab2p-unblock-elem-R222 +{+client-header-tagger{ab2p-unblock-elem-R222} \ +} +# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina.txt: 10426) +.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js + +#ab2p-unblock-elem-R223 +{+client-header-tagger{ab2p-unblock-elem-R223} \ +} +# @@/adbanner/*$image,domain=books.com.tw (easylistchina.txt: 9983) +/(.*/)?adbanner/.* + +#ab2p-unblock-elem-R224 +{+client-header-tagger{ab2p-unblock-elem-R224} \ +} +# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina.txt: 10091) +.58.com/ds/tgbrand/ + +#ab2p-unblock-elem-R225 +{+client-header-tagger{ab2p-unblock-elem-R225} \ +} +# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina.txt: 10000) +/(.*/)?advert/.* + +#ab2p-unblock-elem-R60 +{+client-header-tagger{ab2p-unblock-elem-R60} \ +} +# @@/sda/weixin$domain=chineseinla.com (easylistchina.txt: 10036) +/(.*/)?sda/weixin + +#ab2p-unblock-elem-R226 +{+client-header-tagger{ab2p-unblock-elem-R226} \ +} +# @@/adfile/*$domain=cidianwang.com (easylistchina.txt: 9986) +/(.*/)?adfile/.* + +#ab2p-unblock-elem-R227 +{+client-header-tagger{ab2p-unblock-elem-R227} \ +} +# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina.txt: 10321) +.pos.baidu.com/acom\?di= +# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina.txt: 10029) +/(.*/)?js/ad_test\.js + +#ab2p-unblock-elem-R228 +{+client-header-tagger{ab2p-unblock-elem-R228} \ +} +# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina.txt: 10183) +.cbjs.baidu.com/js/m\.js + +#ab2p-unblock-elem-R229 +{+client-header-tagger{ab2p-unblock-elem-R229} \ +} +# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina.txt: 10175) +.cb.baidu.com/ecom\? + +#ab2p-unblock-elem-R230 +{+client-header-tagger{ab2p-unblock-elem-R230} \ +} +# @@/adpic/*$domain=czsrc.com|nieyou.com (easylistchina.txt: 9993) +/(.*/)?adpic/.* + +#ab2p-unblock-elem-R231 +{+client-header-tagger{ab2p-unblock-elem-R231} \ +} +# @@||mediav.com^$domain=dev.360.cn (easylistchina.txt: 10293) +.mediav.com + +#ab2p-unblock-elem-R232 +{+client-header-tagger{ab2p-unblock-elem-R232} \ +} +# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina.txt: 10009) +/(.*/)?advs/.* + +#ab2p-unblock-elem-R233 +{+client-header-tagger{ab2p-unblock-elem-R233} \ +} +# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina.txt: 10314) +.pagead2.googlesyndication.com/pagead/show_ads\.js + +#ab2p-unblock-elem-R234 +{+client-header-tagger{ab2p-unblock-elem-R234} \ +} +# @@/adframe.$domain=dnvod.eu (easylistchina.txt: 9987) +/(.*/)?adframe\. +adframe.*. + +#ab2p-unblock-elem-R235 +{+client-header-tagger{ab2p-unblock-elem-R235} \ +} +# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina.txt: 10041) +/(.*/)?upload/ads/.*\.jpg + +#ab2p-unblock-elem-R236 +{+client-header-tagger{ab2p-unblock-elem-R236} \ +} +# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina.txt: 10054) +/(.*/)?AD/ + +#ab2p-unblock-elem-R237 +{+client-header-tagger{ab2p-unblock-elem-R237} \ +} +# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina.txt: 10186) +.cbjs.baidu.com + +#ab2p-unblock-elem-R238 +{+client-header-tagger{ab2p-unblock-elem-R238} \ +} +# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina.txt: 10176) +.cb.baidu.com/ecom\?di= + +#ab2p-unblock-elem-R239 +{+client-header-tagger{ab2p-unblock-elem-R239} \ +} +# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina.txt: 10387) +.ubmcmm.baidustatic.com + +#ab2p-unblock-elem-R240 +{+client-header-tagger{ab2p-unblock-elem-R240} \ +} +# @@/img/ad/*$domain=exp.qq.com (easylistchina.txt: 10026) +/(.*/)?img/ad/.* + +#ab2p-unblock-elem-R241 +{+client-header-tagger{ab2p-unblock-elem-R241} \ +} +# @@/advertisement.js$domain=fharr.com|gimhoy.com (easylistchina.txt: 10005) +/(.*/)?advertisement\.js +advertisement.js*. + +#ab2p-unblock-elem-R242 +{+client-header-tagger{ab2p-unblock-elem-R242} \ +} +# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina.txt: 10358) +.sinaimg.cn/cj/deco/ + +#ab2p-unblock-elem-R243 +{+client-header-tagger{ab2p-unblock-elem-R243} \ +} +# @@||artxun.com^$domain=findart.com.cn (easylistchina.txt: 10157) +.artxun.com + +#ab2p-unblock-elem-R244 +{+client-header-tagger{ab2p-unblock-elem-R244} \ +} +# @@||f70123.com^$script,domain=flv.tv (easylistchina.txt: 10233) +.f70123.com +# @@||e719.net^$script,domain=flv.tv (easylistchina.txt: 10222) +.e719.net +# @@||e70123.com^$script,domain=flv.tv (easylistchina.txt: 10221) +.e70123.com +# @@||e701.net^*=60&$subdocument,domain=flv.tv (easylistchina.txt: 10220) +.e701.net/.*=60& +# @@||e701.net^$script,domain=flv.tv (easylistchina.txt: 10219) +.e701.net +# @@||70e.com^$script,domain=flv.tv (easylistchina.txt: 10099) +.70e.com +# @@=300&$subdocument,domain=flv.tv (easylistchina.txt: 10044) +/.*=300& + +#ab2p-unblock-elem-R245 +{+client-header-tagger{ab2p-unblock-elem-R245} \ +} +# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina.txt: 10273) +.inte.sogou.com/ask\?id= +# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina.txt: 10267) +.images.sohu.com/cs/ + +#ab2p-unblock-elem-R246 +{+client-header-tagger{ab2p-unblock-elem-R246} \ +} +# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina.txt: 10274) +.itc.cn/public_photo/advert/ + +#ab2p-unblock-elem-R247 +{+client-header-tagger{ab2p-unblock-elem-R247} \ +} +# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina.txt: 10445) +/.*\.com%2Fanalytics\.js + +#ab2p-unblock-elem-R248 +{+client-header-tagger{ab2p-unblock-elem-R248} \ +} +# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina.txt: 10013) +/(.*/)?bag2\?r\[\]=.*&r\[\]= + +#ab2p-unblock-elem-R249 +{+client-header-tagger{ab2p-unblock-elem-R249} \ +} +# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina.txt: 10344) +.s.lianmeng.360.cn +# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina.txt: 10290) +.lianmeng.360.cn/searchthrow/.*&w=960& + +#ab2p-unblock-elem-R250 +{+client-header-tagger{ab2p-unblock-elem-R250} \ +} +# @@/Advertisement.$domain=gametower.com.tw (easylistchina.txt: 10004) +/(.*/)?Advertisement\. +Advertisement.*. + +#ab2p-unblock-elem-R251 +{+client-header-tagger{ab2p-unblock-elem-R251} \ +} +# @@|http://*/??$domain=gome.com.cn (easylistchina.txt: 10052) +/(.*/)?\?\? + +#ab2p-unblock-elem-R252 +{+client-header-tagger{ab2p-unblock-elem-R252} \ +} +# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina.txt: 10174) +.cache.adm.cnzz.net + +#ab2p-unblock-elem-R253 +{+client-header-tagger{ab2p-unblock-elem-R253} \ +} +# @@/flash/ad/*$domain=haitao.com (easylistchina.txt: 10019) +/(.*/)?flash/ad/.* + +#ab2p-unblock-elem-R254 +{+client-header-tagger{ab2p-unblock-elem-R254} \ +} +# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina.txt: 9972) +/.*\.com/ad/ +.*.com/ad/ + +#ab2p-unblock-elem-R255 +{+client-header-tagger{ab2p-unblock-elem-R255} \ +} +# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina.txt: 10470) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-elem-R256 +{+client-header-tagger{ab2p-unblock-elem-R256} \ +} +# @@/advertising/*$domain=houdask.com (easylistchina.txt: 10007) +/(.*/)?advertising/.* + +#ab2p-unblock-elem-R257 +{+client-header-tagger{ab2p-unblock-elem-R257} \ +} +# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina.txt: 10046) +/.*\?adType= + +#ab2p-unblock-elem-R258 +{+client-header-tagger{ab2p-unblock-elem-R258} \ +} +# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina.txt: 10021) +/(.*/)?guanggao/.* + +#ab2p-unblock-elem-R259 +{+client-header-tagger{ab2p-unblock-elem-R259} \ +} +# @@||a.alimama.cn/tkapi$domain=ieeee.com (easylistchina.txt: 10108) +.a.alimama.cn/tkapi + +#ab2p-unblock-elem-R260 +{+client-header-tagger{ab2p-unblock-elem-R260} \ +} +# @@/Public/ad/*$domain=ihold.cc (easylistchina.txt: 10035) +/(.*/)?Public/ad/.* + +#ab2p-unblock-elem-R261 +{+client-header-tagger{ab2p-unblock-elem-R261} \ +} +# @@||hm.baidu.com^$domain=ihome99.com (easylistchina.txt: 10464) +.hm.baidu.com + +#ab2p-unblock-elem-R262 +{+client-header-tagger{ab2p-unblock-elem-R262} \ +} +# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina.txt: 9992) +/(.*/)?ADmediaJS/panda0305_1972_11454_12120_ + +#ab2p-unblock-elem-R263 +{+client-header-tagger{ab2p-unblock-elem-R263} \ +} +# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina.txt: 10006) +/(.*/)?advertisement/.* + +#ab2p-unblock-elem-R264 +{+client-header-tagger{ab2p-unblock-elem-R264} \ +} +# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina.txt: 10113) +.ad.3.cn/ads/mgets\? + +#ab2p-unblock-elem-R265 +{+client-header-tagger{ab2p-unblock-elem-R265} \ +} +# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina.txt: 10114) +.ad.3.cn/flags/mgets\? +# @@||360buyimg.com/ads/$domain=jd.com (easylistchina.txt: 10083) +.360buyimg.com/ads/ +# @@||360buyimg.com/ad/$domain=jd.com (easylistchina.txt: 10082) +.360buyimg.com/ad/ +# @@&ad_width=810&$domain=jd.com (easylistchina.txt: 9966) +/.*&ad_width=810& +# @@&ad_width=590&$domain=jd.com (easylistchina.txt: 9965) +/.*&ad_width=590& + +#ab2p-unblock-elem-R266 +{+client-header-tagger{ab2p-unblock-elem-R266} \ +} +# @@|http:$image,script,domain=jjcast.com (easylistchina.txt: 10050) + +#ab2p-unblock-elem-R267 +{+client-header-tagger{ab2p-unblock-elem-R267} \ +} +# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina.txt: 10151) +.allyes.com.cn/player/AllyesAdPlayerV1\.swf\? + +#ab2p-unblock-elem-R268 +{+client-header-tagger{ab2p-unblock-elem-R268} \ +} +# @@||js.adm.cnzz.net^$domain=keenfine.com|xoyo.com (easylistchina.txt: 10282) +.js.adm.cnzz.net + +#ab2p-unblock-elem-R269 +{+client-header-tagger{ab2p-unblock-elem-R269} \ +} +# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina.txt: 10460) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R270 +{+client-header-tagger{ab2p-unblock-elem-R270} \ +} +# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina.txt: 10283) +.kbcool.com/advpic/ + +#ab2p-unblock-elem-R271 +{+client-header-tagger{ab2p-unblock-elem-R271} \ +} +# @@/adimg/*$domain=laniqu.com|veryeast.cn (easylistchina.txt: 9990) +/(.*/)?adimg/.* + +#ab2p-unblock-elem-R272 +{+client-header-tagger{ab2p-unblock-elem-R272} \ +} +# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina.txt: 10313) +.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js + +#ab2p-unblock-elem-R273 +{+client-header-tagger{ab2p-unblock-elem-R273} \ +} +# @@/adsame.$domain=liba.com|libaclub.com (easylistchina.txt: 9995) +/(.*/)?adsame\. +adsame.*. + +#ab2p-unblock-elem-R274 +{+client-header-tagger{ab2p-unblock-elem-R274} \ +} +# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina.txt: 10369) +.stockstar.com/ad/ + +#ab2p-unblock-elem-R275 +{+client-header-tagger{ab2p-unblock-elem-R275} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina.txt: 10469) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-elem-R276 +{+client-header-tagger{ab2p-unblock-elem-R276} \ +} +# @@/adsbox.$domain=long7.qq.com (easylistchina.txt: 9996) +/(.*/)?adsbox\. +adsbox.*. + +#ab2p-unblock-elem-R277 +{+client-header-tagger{ab2p-unblock-elem-R277} \ +} +# @@||csbew.com^$domain=longbl.com (easylistchina.txt: 10202) +.csbew.com + +#ab2p-unblock-elem-R278 +{+client-header-tagger{ab2p-unblock-elem-R278} \ +} +# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina.txt: 9974) +/.*\.com/adv/ +.*.com/adv/ + +#ab2p-unblock-elem-R279 +{+client-header-tagger{ab2p-unblock-elem-R279} \ +} +# @@|http://*/ad$domain=meiziweibo.com (easylistchina.txt: 10053) +/(.*/)?ad + +#ab2p-unblock-elem-R280 +{+client-header-tagger{ab2p-unblock-elem-R280} \ +} +# @@/AdShow/*$domain=mndxy.org (easylistchina.txt: 9999) +/(.*/)?AdShow/.* + +#ab2p-unblock-elem-R281 +{+client-header-tagger{ab2p-unblock-elem-R281} \ +} +# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina.txt: 10124) +.ad.unimhk.com/show\.php\? + +#ab2p-unblock-elem-R282 +{+client-header-tagger{ab2p-unblock-elem-R282} \ +} +# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina.txt: 10164) +.bdimg.com/advert/js/advert\.js + +#ab2p-unblock-elem-R283 +{+client-header-tagger{ab2p-unblock-elem-R283} \ +} +# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina.txt: 10045) +/.*=mywebloadt1& + +#ab2p-unblock-elem-R284 +{+client-header-tagger{ab2p-unblock-elem-R284} \ +} +# @@/urchin.js$domain=on.cc (easylistchina.txt: 10449) +/(.*/)?urchin\.js +urchin.js*. +# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina.txt: 10448) +/(.*/)?hitCount_ +# @@/hitCount.$script,domain=on.cc (easylistchina.txt: 10447) +/(.*/)?hitCount\. +hitCount.*. + +#ab2p-unblock-elem-R285 +{+client-header-tagger{ab2p-unblock-elem-R285} \ +} +# @@/ADImages/*$domain=p9.com.tw (easylistchina.txt: 9989) +/(.*/)?ADImages/.* + +#ab2p-unblock-elem-R286 +{+client-header-tagger{ab2p-unblock-elem-R286} \ +} +# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina.txt: 10027) +/(.*/)?img/ad_ + +#ab2p-unblock-elem-R287 +{+client-header-tagger{ab2p-unblock-elem-R287} \ +} +# @@/store_ad/*$domain=pcstore.com.tw (easylistchina.txt: 10039) +/(.*/)?store_ad/.* + +#ab2p-unblock-elem-R288 +{+client-header-tagger{ab2p-unblock-elem-R288} \ +} +# @@/advert_$domain=pisen.com.cn|wb.qq.com (easylistchina.txt: 10001) +/(.*/)?advert_ + +#ab2p-unblock-elem-R289 +{+client-header-tagger{ab2p-unblock-elem-R289} \ +} +# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina.txt: 9998) +/(.*/)?adsense/.* + +#ab2p-unblock-elem-R290 +{+client-header-tagger{ab2p-unblock-elem-R290} \ +} +# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina.txt: 10185) +.cbjs.baidu.com/js/s\.js + +#ab2p-unblock-elem-R291 +{+client-header-tagger{ab2p-unblock-elem-R291} \ +} +# @@?bannerId=$domain=qbao.com (easylistchina.txt: 10047) +/.*\?bannerId= + +#ab2p-unblock-elem-R292 +{+client-header-tagger{ab2p-unblock-elem-R292} \ +} +# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina.txt: 10475) +.tajs.qq.com/stats\? + +#ab2p-unblock-elem-R293 +{+client-header-tagger{ab2p-unblock-elem-R293} \ +} +# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina.txt: 10145) +.ads.rakuya.com.tw + +#ab2p-unblock-elem-R294 +{+client-header-tagger{ab2p-unblock-elem-R294} \ +} +# @@/pub/ad/*$domain=ruten.com.tw (easylistchina.txt: 10034) +/(.*/)?pub/ad/.* + +#ab2p-unblock-elem-R295 +{+client-header-tagger{ab2p-unblock-elem-R295} \ +} +# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina.txt: 10051) +# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina.txt: 10038) +/(.*/)?show_ads_impl\.js +# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina.txt: 10020) +/(.*/)?g\.doubleclick\.net\.js\? +# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina.txt: 9997) +/(.*/)?adsbygoogle\. +adsbygoogle.*. +# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina.txt: 9991) +/(.*/)?adlogger_tracker\.php + +#ab2p-unblock-elem-R296 +{+client-header-tagger{ab2p-unblock-elem-R296} \ +} +# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina.txt: 10003) +/(.*/)?advertise/.* + +#ab2p-unblock-elem-R297 +{+client-header-tagger{ab2p-unblock-elem-R297} \ +} +# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina.txt: 10472) +.sina.com.cn/iplookup/iplookup\.php\? + +#ab2p-unblock-elem-R298 +{+client-header-tagger{ab2p-unblock-elem-R298} \ +} +# @@||gg.woniu.com^$domain=snail.com (easylistchina.txt: 10243) +.gg.woniu.com + +#ab2p-unblock-elem-R299 +{+client-header-tagger{ab2p-unblock-elem-R299} \ +} +# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina.txt: 10462) +.googletagmanager.com/gtm\.js\? +# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina.txt: 10461) +.google-analytics.com/plugins/ua/linkid\.js + +#ab2p-unblock-elem-R300 +{+client-header-tagger{ab2p-unblock-elem-R300} \ +} +# @@||keyrun.cn^$script,domain=sx566.com (easylistchina.txt: 10284) +.keyrun.cn + +#ab2p-unblock-elem-R301 +{+client-header-tagger{ab2p-unblock-elem-R301} \ +} +# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina.txt: 10372) +.szhr.com.cn + +#ab2p-unblock-elem-R302 +{+client-header-tagger{ab2p-unblock-elem-R302} \ +} +# @@||alimama.com^$domain=tanx.com (easylistchina.txt: 10150) +.alimama.com +# @@/adx.$domain=tanx.com (easylistchina.txt: 10010) +/(.*/)?adx\. +adx.*. + +#ab2p-unblock-elem-R303 +{+client-header-tagger{ab2p-unblock-elem-R303} \ +} +# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10467) +.opehs.tanx.com/ex\? +# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10457) +.ecpm.tanx.com/ex\? + +#ab2p-unblock-elem-R304 +{+client-header-tagger{ab2p-unblock-elem-R304} \ +} +# @@||tdx.com.cn/images/*ad$domain=tdx.com.cn (easylistchina.txt: 10376) +.tdx.com.cn/images/.*ad + +#ab2p-unblock-elem-R305 +{+client-header-tagger{ab2p-unblock-elem-R305} \ +} +# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina.txt: 10028) +/(.*/)?img_ad/.* + +#ab2p-unblock-elem-R306 +{+client-header-tagger{ab2p-unblock-elem-R306} \ +} +# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina.txt: 10315) +.partner.googleadservices.com/gpt/pubads_impl_ +# @@||ads.$domain=tvb.com (easylistchina.txt: 10142) +.ads.*. + +#ab2p-unblock-elem-R307 +{+client-header-tagger{ab2p-unblock-elem-R307} \ +} +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=tw.autos.yahoo.com|tw.buy.yahoo.com (easylistchina.txt: 10459) +.geo.query.yahoo.com + +#ab2p-unblock-elem-R308 +{+client-header-tagger{ab2p-unblock-elem-R308} \ +} +# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina.txt: 10385) +.tw.m.yimg.com/res/ads/ + +#ab2p-unblock-elem-R309 +{+client-header-tagger{ab2p-unblock-elem-R309} \ +} +# @@||union.$domain=union.163.com (easylistchina.txt: 10390) +.union.*. + +#ab2p-unblock-elem-R310 +{+client-header-tagger{ab2p-unblock-elem-R310} \ +} +# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina.txt: 10362) +.sinaimg.cn/unipro/pub/suda_m_v629\.js + +#ab2p-unblock-elem-R311 +{+client-header-tagger{ab2p-unblock-elem-R311} \ +} +# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina.txt: 10144) +.ads.myopen.vip.com + +#ab2p-unblock-elem-R312 +{+client-header-tagger{ab2p-unblock-elem-R312} \ +} +# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina.txt: 10252) +.hd.duba.net/vip\.ijinshan\.com/repository/ad-images/ + +#ab2p-unblock-elem-R313 +{+client-header-tagger{ab2p-unblock-elem-R313} \ +} +# @@/AdImage/*$domain=wacom.tw (easylistchina.txt: 9988) +/(.*/)?AdImage/.* + +#ab2p-unblock-elem-R314 +{+client-header-tagger{ab2p-unblock-elem-R314} \ +} +# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina.txt: 10098) +.70e.com/js/2013_new\.js + +#ab2p-unblock-elem-R315 +{+client-header-tagger{ab2p-unblock-elem-R315} \ +} +# @@/show_ad_$domain=wb.qq.com (easylistchina.txt: 10037) +/(.*/)?show_ad_ + +#ab2p-unblock-elem-R316 +{+client-header-tagger{ab2p-unblock-elem-R316} \ +} +# @@/LoadAds.$domain=webcars.com.cn (easylistchina.txt: 10030) +/(.*/)?LoadAds\. +LoadAds.*. + +#ab2p-unblock-elem-R317 +{+client-header-tagger{ab2p-unblock-elem-R317} \ +} +# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina.txt: 10342) +.rm.sina.com.cn/minisite/ + +#ab2p-unblock-elem-R318 +{+client-header-tagger{ab2p-unblock-elem-R318} \ +} +# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina.txt: 10473) +.sinajs.cn/open/analytics/js/suda\.js + +#ab2p-unblock-elem-R319 +{+client-header-tagger{ab2p-unblock-elem-R319} \ +} +# @@||adsense.woso.cn^$domain=woso.cn (easylistchina.txt: 10146) +.adsense.woso.cn + +#ab2p-unblock-elem-R320 +{+client-header-tagger{ab2p-unblock-elem-R320} \ +} +# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina.txt: 10266) +.ifengimg.com/ifeng/sources/region_ +# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina.txt: 10265) +.ifengimg.com/ifeng/sources/inice_ + +#ab2p-unblock-elem-R321 +{+client-header-tagger{ab2p-unblock-elem-R321} \ +} +# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina.txt: 10471) +.simba.taobao.com/\?name=tcmad& + +#ab2p-unblock-elem-R322 +{+client-header-tagger{ab2p-unblock-elem-R322} \ +} +# @@&ad_type=$domain=x.jd.com (easylistchina.txt: 9964) +/.*&ad_type= + +#ab2p-unblock-elem-R323 +{+client-header-tagger{ab2p-unblock-elem-R323} \ +} +# @@/analytics.php?$domain=xcar.com.cn (easylistchina.txt: 10446) +/(.*/)?analytics\.php\? + +#ab2p-unblock-elem-R324 +{+client-header-tagger{ab2p-unblock-elem-R324} \ +} +# @@/addata.$domain=xdf.cn (easylistchina.txt: 9985) +/(.*/)?addata\. +addata.*. + +#ab2p-unblock-elem-R325 +{+client-header-tagger{ab2p-unblock-elem-R325} \ +} +# @@/adblock.js$domain=xingk.cc (easylistchina.txt: 9984) +/(.*/)?adblock\.js +adblock.js*. + +#ab2p-unblock-elem-R326 +{+client-header-tagger{ab2p-unblock-elem-R326} \ +} +# @@/PIC/AD/*$domain=ybjk.com (easylistchina.txt: 10032) +/(.*/)?PIC/AD/.* + +#ab2p-unblock-elem-R327 +{+client-header-tagger{ab2p-unblock-elem-R327} \ +} +# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina.txt: 10107) +.a.ads.cn.miaozhen.com + +#ab2p-unblock-elem-R328 +{+client-header-tagger{ab2p-unblock-elem-R328} \ +} +# @@/webThunderDetect.$domain=ypan.cc (easylistchina.txt: 10043) +/(.*/)?webThunderDetect\. +webThunderDetect.*. + +#ab2p-unblock-elem-R329 +{+client-header-tagger{ab2p-unblock-elem-R329} \ +} +# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina.txt: 10118) +.ad.doubleclick.net/ddm/adi/.*\.ZALORA\.COM\.HK + +#ab2p-unblock-elem-nR-Rn187 +{+client-header-tagger{ab2p-unblock-elem-Rn187} \ + +client-header-tagger{ab2p-unblock-elem-nR} \ +} +# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina.txt: 10420) +.yimg.com/zz/combo\?.*&.*\.css + +#ab2p-unblock-request +{-block \ +-server-header-tagger{ab2p-block-s} \ ++server-header-tagger{ab2p-unblock-d} \ ++server-header-tagger{ab2p-unblock-s} \ ++client-header-tagger{ab2b-unblock-u} \ +} +TAG:^ab2p-unblock-request$ +# @@||tmall.com/add? (easylistchina.txt: 10477) +.tmall.com/add\? +# @@||tbcdn.cn^*/click_track.js (easylistchina.txt: 10476) +.tbcdn.cn/.*/click_track\.js +# @@||stjscn.s-msn.com/portal/hp/2011/udctrack. (easylistchina.txt: 10474) +.stjscn.s-msn.com/portal/hp/2011/udctrack\. +# @@||pingjs.qq.com/ping.js (easylistchina.txt: 10468) +.pingjs.qq.com/ping\.js +# @@||msn.wrating.com/a1.js (easylistchina.txt: 10466) +.msn.wrating.com/a1\.js +# @@||jd.com/setCookie? (easylistchina.txt: 10465) +.jd.com/setCookie\? +# @@||guahao.cn/common/js/plugins/fingerprint.js (easylistchina.txt: 10463) +.guahao.cn/common/js/plugins/fingerprint\.js +# @@||g.alicdn.com^*/banner_ad_ (easylistchina.txt: 10458) +.g.alicdn.com/.*/banner_ad_ +# @@||count.video.sina.com.cn^*?video_ids= (easylistchina.txt: 10456) +.count.video.sina.com.cn/.*\?video_ids= +# @@||bagehd.com/iplookup. (easylistchina.txt: 10455) +.bagehd.com/iplookup\. +# @@||autohome.com.cn/javascript/fingerprint.js (easylistchina.txt: 10454) +.autohome.com.cn/javascript/fingerprint\.js +# @@||analytics.163.com/ntes.js (easylistchina.txt: 10453) +.analytics.163.com/ntes\.js +# @@||alicdn.com^*/click_track.js (easylistchina.txt: 10452) +.alicdn.com/.*/click_track\.js +# @@||aixifan.com/dotnet/20130418/script/fingerprint. (easylistchina.txt: 10451) +.aixifan.com/dotnet/20130418/script/fingerprint\. +# @@||7m.cn/v2/js/analyse.js (easylistchina.txt: 10450) +.7m.cn/v2/js/analyse\.js +# @@||xnimg.cn^*/nx/ugc/share/js/hotlist.js (easylistchina.txt: 10443) +.xnimg.cn/.*/nx/ugc/share/js/hotlist\.js +# @@||zjol.com.cn^*/index.jsp?newsid=$elemhide (easylistchina.txt: 10432) +.zjol.com.cn/.*/index\.jsp\?newsid= +# @@||zhibowu.com/ad2.htm (easylistchina.txt: 10431) +.zhibowu.com/ad2\.htm +# @@||zhaopin.cn^*/adbox_ (easylistchina.txt: 10430) +.zhaopin.cn/.*/adbox_ +# @@||zhaopin.cn/js/app/popShow. (easylistchina.txt: 10429) +.zhaopin.cn/js/app/popShow\. +# @@||youku.com^*^showAd (easylistchina.txt: 10428) +.youku.com/.*[^\w%.-]showAd +# @@||youku.com^*^adshow (easylistchina.txt: 10427) +.youku.com/.*[^\w%.-]adshow +# @@||yinfu.cc/sid/function (easylistchina.txt: 10424) +.yinfu.cc/sid/function +# @@||yinfu.cc/sid/*play (easylistchina.txt: 10423) +.yinfu.cc/sid/.*play +# @@||yimuhe.com/n_js/advertiser.js (easylistchina.txt: 10422) +.yimuhe.com/n_js/advertiser\.js +# @@||yimg.jp/combo?*/ad/ (easylistchina.txt: 10421) +.yimg.jp/combo\?.*/ad/ +# @@||ydxxt.com/ad/ (easylistchina.txt: 10419) +.ydxxt.com/ad/ +# @@||xunleipu.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10417) +.xunleipu.com/a-d-j-s/a-d-7\.js +# @@||xunleihao.com/a-d-j-s/a-d-7.js (easylistchina.txt: 10416) +.xunleihao.com/a-d-j-s/a-d-7\.js +# @@||xnimg.cn/n/apps/profile/modules/tuiguang/ (easylistchina.txt: 10415) +.xnimg.cn/n/apps/profile/modules/tuiguang/ +# @@||xintaoke.com/images/gg/*.jpg (easylistchina.txt: 10414) +.xintaoke.com/images/gg/.*\.jpg +# @@||xinhuanet.com/2014/imgad/FS_2014weixin.jpg (easylistchina.txt: 10413) +.xinhuanet.com/2014/imgad/FS_2014weixin\.jpg +# @@||wubisheng.cn/style/pagead2.js (easylistchina.txt: 10412) +.wubisheng.cn/style/pagead2\.js +# @@||wubisheng.cn/style/adsbygoogle.js (easylistchina.txt: 10411) +.wubisheng.cn/style/adsbygoogle\.js +# @@||woxiu.com/xapi/offsite_swf_more.php?*&type= (easylistchina.txt: 10410) +.woxiu.com/xapi/offsite_swf_more\.php\?.*&type= +# @@||wowsai.com/data/files/ad/ (easylistchina.txt: 10409) +.wowsai.com/data/files/ad/ +# @@||wishdown.com/images/logo.gif (easylistchina.txt: 10408) +.wishdown.com/images/logo\.gif +# @@||win007.com/images/ad/qiu (easylistchina.txt: 10407) +.win007.com/images/ad/qiu +# @@||win007.com/image/75338867887z.gif (easylistchina.txt: 10406) +.win007.com/image/75338867887z\.gif +# @@||wholehk.com/madads728.htm (easylistchina.txt: 10405) +.wholehk.com/madads728\.htm +# @@||wholehk.com/adsbygoogle.js (easylistchina.txt: 10404) +.wholehk.com/adsbygoogle\.js +# @@||wfcmw.cn^*.radio. (easylistchina.txt: 10403) +.wfcmw.cn/.*\.radio\. +# @@||weibo.com/api/weipan/getAds (easylistchina.txt: 10402) +.weibo.com/api/weipan/getAds +# @@||webcrow.jp/adjs/ncskt.js (easylistchina.txt: 10401) +.webcrow.jp/adjs/ncskt\.js +# @@||veimg.cn/AdsShow/ (easylistchina.txt: 10400) +.veimg.cn/AdsShow/ +# @@||v1.cn/player/cloud/cloud_player (easylistchina.txt: 10399) +.v1.cn/player/cloud/cloud_player +# @@||v.rbc.cn/ad/ (easylistchina.txt: 10398) +.v.rbc.cn/ad/ +# @@||up2stream.com/vjs/plugin/css/ads.css (easylistchina.txt: 10397) +.up2stream.com/vjs/plugin/css/ads\.css +# @@||union.m.jd.com/click/ (easylistchina.txt: 10396) +.union.m.jd.com/click/ +# @@||union.easypass.cn/block/ (easylistchina.txt: 10395) +.union.easypass.cn/block/ +# @@||union.click.jd.com^ (easylistchina.txt: 10394) +.union.click.jd.com +# @@||union.bokecc.com/servlet/getvideofile? (easylistchina.txt: 10393) +.union.bokecc.com/servlet/getvideofile\? +# @@||union.bokecc.com/player? (easylistchina.txt: 10392) +.union.bokecc.com/player\? +# @@||ujinbi.com/UpLoadFile/guanggao/ (easylistchina.txt: 10389) +.ujinbi.com/UpLoadFile/guanggao/ +# @@||ujinbi.com/AD/ (easylistchina.txt: 10388) +.ujinbi.com/AD/ +# @@||u9pan.com/images/ads/ (easylistchina.txt: 10386) +.u9pan.com/images/ads/ +# @@||tt1069.com/advert.js (easylistchina.txt: 10384) +.tt1069.com/advert\.js +# @@||toy9090.com^*/NR.gif (easylistchina.txt: 10383) +.toy9090.com/.*/NR\.gif +# @@||toy9090.com^*/NL.gif (easylistchina.txt: 10382) +.toy9090.com/.*/NL\.gif +# @@||totheglory.im/pic/ttg_logo (easylistchina.txt: 10381) +.totheglory.im/pic/ttg_logo +# @@||tompda.com/images/pix.swf (easylistchina.txt: 10380) +.tompda.com/images/pix\.swf +# @@||tmall.com/go/*/banner.php (easylistchina.txt: 10379) +.tmall.com/go/.*/banner\.php +# @@||tenpay.com^*?ADTAG= (easylistchina.txt: 10378) +.tenpay.com/.*\?ADTAG= +# @@||tenpay.com/v2.0/main/creditcard/portal_rpm_apply.shtml (easylistchina.txt: 10377) +.tenpay.com/v2\.0/main/creditcard/portal_rpm_apply\.shtml +# @@||taobao.com^*&adgroupid= (easylistchina.txt: 10375) +.taobao.com/.*&adgroupid= +# @@||taobao.com/go/app/tmall/login-api.php? (easylistchina.txt: 10374) +.taobao.com/go/app/tmall/login-api\.php\? +# @@||tansuo.cntv.cn^*/tansuo_Advertise.js (easylistchina.txt: 10373) +.tansuo.cntv.cn/.*/tansuo_Advertise\.js +# @@||sx566.com/templates/default/images/ad (easylistchina.txt: 10371) +.sx566.com/templates/default/images/ad +# @@||sudupan.com^*/*.gif (easylistchina.txt: 10370) +.sudupan.com/.*/.*\.gif +# @@||static.atm.youku.com^*.swf (easylistchina.txt: 10367) +.static.atm.youku.com/.*\.swf +# @@||spbonow.com/UploadFiles/201505/2015051853456325.gif (easylistchina.txt: 10366) +.spbonow.com/UploadFiles/201505/2015051853456325\.gif +# @@||spbonow.com/images/ads/logo.gif (easylistchina.txt: 10365) +.spbonow.com/images/ads/logo\.gif +# @@||sjsmitaa.org/bin/showads. (easylistchina.txt: 10364) +.sjsmitaa.org/bin/showads\. +# @@||sinaimg.cn^*/deco/*/sinaObj.js (easylistchina.txt: 10363) +.sinaimg.cn/.*/deco/.*/sinaObj\.js +# @@||sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra.gif (easylistchina.txt: 10361) +.sinaimg.cn/large/696b3be5jw1eiuo9zjz34g206e01yjra\.gif +# @@||sinaimg.cn/dy/deco/*/js/require.js (easylistchina.txt: 10360) +.sinaimg.cn/dy/deco/.*/js/require\.js +# @@||sinaimg.cn/dy/deco/*/js/base.js (easylistchina.txt: 10359) +.sinaimg.cn/dy/deco/.*/js/base\.js +# @@||sinaimg.cn/ad/adimage/50x50_ (easylistchina.txt: 10357) +.sinaimg.cn/ad/adimage/50x50_ +# @@||sina.com.hk^*_ads.cgi (easylistchina.txt: 10356) +.sina.com.hk/.*_ads\.cgi +# @@||sina.com.cn/litong/zhitou/pic/close- (easylistchina.txt: 10355) +.sina.com.cn/litong/zhitou/pic/close- +# @@||share.dmhy.*/generate-captcha? (easylistchina.txt: 10353) +.share.dmhy.*./(.*/)?generate-captcha\? +# @@||sf-express.com/.galleries/advertisement/ (easylistchina.txt: 10352) +.sf-express.com/\.galleries/advertisement/ +# @@||serve.netsh.org^$elemhide (easylistchina.txt: 10351) +.serve.netsh.org +# @@||selfimg.com.cn/?? (easylistchina.txt: 10350) +.selfimg.com.cn/\?\? +# @@||sc.jb51.net/adimg/*.jpg (easylistchina.txt: 10348) +.sc.jb51.net/adimg/.*\.jpg +# @@||sakai.club/advertisement.js (easylistchina.txt: 10347) +.sakai.club/advertisement\.js +# @@||sakai-hk.com/advertisement.js (easylistchina.txt: 10346) +.sakai-hk.com/advertisement\.js +# @@||saibeinews.com/index.php?m=poster&c=index&a=show_poster&id=2 (easylistchina.txt: 10345) +.saibeinews.com/index\.php\?m=poster&c=index&a=show_poster&id=2 +# @@||ruten.com.tw/js/jquery.ruten.supertop_ad.js (easylistchina.txt: 10343) +.ruten.com.tw/js/jquery\.ruten\.supertop_ad\.js +# @@||regapi.37.com/api/p_register.php?login_account= (easylistchina.txt: 10341) +.regapi.37.com/api/p_register\.php\?login_account= +# @@||ref.so/templates/ref/short_show/adview_ (easylistchina.txt: 10340) +.ref.so/templates/ref/short_show/adview_ +# @@||rakuya.com.tw^*/common_ad. (easylistchina.txt: 10339) +.rakuya.com.tw/.*/common_ad\. +# @@||quwenjiemi.com/105.js? (easylistchina.txt: 10338) +.quwenjiemi.com/105\.js\? +# @@||qqread.com/swf/qqread_rollpic.swf (easylistchina.txt: 10337) +.qqread.com/swf/qqread_rollpic\.swf +# @@||qq.com^*?ADTAG= (easylistchina.txt: 10336) +.qq.com/.*\?ADTAG= +# @@||qq.com/server/website/CommWebGameSelect_ad.js (easylistchina.txt: 10335) +.qq.com/server/website/CommWebGameSelect_ad\.js +# @@||qq.com/bossweb/jifen/ (easylistchina.txt: 10334) +.qq.com/bossweb/jifen/ +# @@||qiyipic.com/common/fix/pub_images/ (easylistchina.txt: 10333) +.qiyipic.com/common/fix/pub_images/ +# @@||qingdaoport.net/adv/random.jsp (easylistchina.txt: 10332) +.qingdaoport.net/adv/random\.jsp +# @@||qingcheng.com^*/ad (easylistchina.txt: 10331) +.qingcheng.com/.*/ad +# @@||qikuyou.com/images/js/adv.js (easylistchina.txt: 10330) +.qikuyou.com/images/js/adv\.js +# @@||qidian.com/ploy/20*.swf (easylistchina.txt: 10329) +.qidian.com/ploy/20.*\.swf +# @@||pub.alimama.com/common/adzone/ (easylistchina.txt: 10328) +.pub.alimama.com/common/adzone/ +# @@||ps123.net/MyFile/toptxt.js (easylistchina.txt: 10327) +.ps123.net/MyFile/toptxt\.js +# @@||pos.baidu.com/acom?di=u1840644& (easylistchina.txt: 10325) +.pos.baidu.com/acom\?di=u1840644& +# @@||pos.baidu.com/acom?di=u1705639& (easylistchina.txt: 10324) +.pos.baidu.com/acom\?di=u1705639& +# @@||pos.baidu.com/acom?di=u1671167& (easylistchina.txt: 10323) +.pos.baidu.com/acom\?di=u1671167& +# @@||pos.baidu.com/acom?di=u1460926& (easylistchina.txt: 10322) +.pos.baidu.com/acom\?di=u1460926& +# @@||pmm.people.com.cn/main/s?user=people|homepage|2013juxing (easylistchina.txt: 10320) +.pmm.people.com.cn/main/s\?user=people\|homepage\|2013juxing +# @@||piccool.com/2home/phpAdsNew/ (easylistchina.txt: 10319) +.piccool.com/2home/phpAdsNew/ +# @@||pic.zol-img.com.cn/2009/pix_index.swf (easylistchina.txt: 10318) +.pic.zol-img.com.cn/2009/pix_index\.swf +# @@||photo.erji.com/tb/*.gif (easylistchina.txt: 10317) +.photo.erji.com/tb/.*\.gif +# @@||pep.com.cn/rjs/guanggao/ (easylistchina.txt: 10316) +.pep.com.cn/rjs/guanggao/ +# @@||ouyaoxiazai.com/shouyead.js (easylistchina.txt: 10312) +.ouyaoxiazai.com/shouyead\.js +# @@||ooomm.com/ad/Whoyao_logo114.png (easylistchina.txt: 10311) +.ooomm.com/ad/Whoyao_logo114\.png +# @@||ooomm.com/ad/icon/ (easylistchina.txt: 10310) +.ooomm.com/ad/icon/ +# @@||omusic.com.tw/backend/uploadpic/adindex/ (easylistchina.txt: 10308) +.omusic.com.tw/backend/uploadpic/adindex/ +# @@||newxing.com/a_d/downAddress.js (easylistchina.txt: 10307) +.newxing.com/a_d/downAddress\.js +# @@||news.u17i.com/advert/ (easylistchina.txt: 10306) +.news.u17i.com/advert/ +# @@||new7574.u.qiniudn.com^*^ad (easylistchina.txt: 10305) +.new7574.u.qiniudn.com/.*[^\w%.-]ad +# @@||netded.com/plus/ad_js.php?aid=3| (easylistchina.txt: 10304) +.netded.com/plus/ad_js\.php\?aid=3$ +# @@||naruto.hk/ad/uy.js (easylistchina.txt: 10303) +.naruto.hk/ad/uy\.js +# @@||mymusic.net.tw/js/ad/index_1.js (easylistchina.txt: 10302) +.mymusic.net.tw/js/ad/index_1\.js +# @@||muzhiwan.com/forum.php?*=300x250& (easylistchina.txt: 10301) +.muzhiwan.com/forum\.php\?.*=300x250& +# @@||monnsutogatya.com^$elemhide (easylistchina.txt: 10300) +.monnsutogatya.com +# @@||mnighthk.net^$elemhide (easylistchina.txt: 10299) +.mnighthk.net +# @@||mnighthk.net/template/*/ad (easylistchina.txt: 10298) +.mnighthk.net/template/.*/ad +# @@||mm.maxthon.cn/ad/ (easylistchina.txt: 10297) +.mm.maxthon.cn/ad/ +# @@||miaozhen.com^*/m.suning. (easylistchina.txt: 10296) +.miaozhen.com/.*/m\.suning\. +# @@||meizu.com/fileserver/ad/img/ (easylistchina.txt: 10295) +.meizu.com/fileserver/ad/img/ +# @@||meiziweibo.com^$elemhide (easylistchina.txt: 10294) +.meiziweibo.com +# @@||ltxhcz.com/skin/default/images/ (easylistchina.txt: 10292) +.ltxhcz.com/skin/default/images/ +# @@||life.tenpay.com/res/ad/cellphone/js/down_for_app.js (easylistchina.txt: 10291) +.life.tenpay.com/res/ad/cellphone/js/down_for_app\.js +# @@||letvcloud.com^*&showAd= (easylistchina.txt: 10289) +.letvcloud.com/.*&showAd= +# @@||l.qq.com/livemsg?ty=web&ad_type= (easylistchina.txt: 10286) +.l.qq.com/livemsg\?ty=web&ad_type= +# @@||kukuplay.com/upload/*.*.swf (easylistchina.txt: 10285) +.kukuplay.com/upload/.*\..*\.swf +# @@||joy.cn/service.php?*&showad= (easylistchina.txt: 10281) +.joy.cn/service\.php\?.*&showad= +# @@||jjjgame.com/plus/ad_ (easylistchina.txt: 10280) +.jjjgame.com/plus/ad_ +# @@||jj.5ccc.net/scripts/new/pagetop.js (easylistchina.txt: 10279) +.jj.5ccc.net/scripts/new/pagetop\.js +# @@||jinhongweiqi.com/ad/update/ (easylistchina.txt: 10278) +.jinhongweiqi.com/ad/update/ +# @@||itjsb.com/bg.gif (easylistchina.txt: 10276) +.itjsb.com/bg\.gif +# @@||itiexue.net/js/tiexue/statistic/wwwindex/ (easylistchina.txt: 10275) +.itiexue.net/js/tiexue/statistic/wwwindex/ +# @@||indeep.com.tw^*/Showad. (easylistchina.txt: 10271) +.indeep.com.tw/.*/Showad\. +# @@||indeep.com.tw/Images/Upload/AdPic/ (easylistchina.txt: 10270) +.indeep.com.tw/Images/Upload/AdPic/ +# @@||indeep.com.tw/images/ad.swf? (easylistchina.txt: 10269) +.indeep.com.tw/images/ad\.swf\? +# @@||img.ybbbs.com/2014/*app (easylistchina.txt: 10268) +.img.ybbbs.com/2014/.*app +# @@||icbc.com.cn/Portal_Resources/Common/AdRes/ (easylistchina.txt: 10264) +.icbc.com.cn/Portal_Resources/Common/AdRes/ +# @@||icbc.com.cn/Portal_Resources/Common/AdCss/ (easylistchina.txt: 10263) +.icbc.com.cn/Portal_Resources/Common/AdCss/ +# @@||icbc.com.cn/ICBC_ADJS/ (easylistchina.txt: 10262) +.icbc.com.cn/ICBC_ADJS/ +# @@||icbc.com.cn/icbc/include/AD_ (easylistchina.txt: 10261) +.icbc.com.cn/icbc/include/AD_ +# @@||ibf.tw^$elemhide (easylistchina.txt: 10260) +.ibf.tw +# @@||i3.sinaimg.cn/video/deco/2013/0325/js/ (easylistchina.txt: 10259) +.i3.sinaimg.cn/video/deco/2013/0325/js/ +# @@||hunantv.com/FrameWork/AFP/ (easylistchina.txt: 10258) +.hunantv.com/FrameWork/AFP/ +# @@||huelead.com/images/*ad (easylistchina.txt: 10257) +.huelead.com/images/.*ad +# @@||hkjc.com/banners/ (easylistchina.txt: 10256) +.hkjc.com/banners/ +# @@||hhtt.cn/web.php/ad/show (easylistchina.txt: 10255) +.hhtt.cn/web\.php/ad/show +# @@||hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg.js (easylistchina.txt: 10254) +.hh010.com/static/js/adsbygoogle_ad_adview_pic_cpc_cpm_cpa_guanggao_gg\.js +# @@||heikexs.com/wp-content/themes/Duoxs*/js/user.js (easylistchina.txt: 10253) +.heikexs.com/wp-content/themes/Duoxs.*/js/user\.js +# @@||guancha.cn/ad/m_ (easylistchina.txt: 10251) +.guancha.cn/ad/m_ +# @@||gqzzw.com*/adview_ (easylistchina.txt: 10250) +.gqzzw.com*./(.*/)?adview_ +# @@||gqdzs.com*/adview_ (easylistchina.txt: 10249) +.gqdzs.com*./(.*/)?adview_ +# @@||gpsdlm.com/images/ad. (easylistchina.txt: 10248) +.gpsdlm.com/images/ad\. +# @@||gov.cn/scripts/Comm/AdRotator.js (easylistchina.txt: 10247) +.gov.cn/scripts/Comm/AdRotator\.js +# @@||gg1z.com/statics/gg/greendown/logo.gif (easylistchina.txt: 10245) +.gg1z.com/statics/gg/greendown/logo\.gif +# @@||gg.yxdown.com/count/countzt.js (easylistchina.txt: 10244) +.gg.yxdown.com/count/countzt\.js +# @@||gg.img123456.com^ (easylistchina.txt: 10242) +.gg.img123456.com +# @@||ganji.com/findjob/send_resume.*&ad_type= (easylistchina.txt: 10241) +.ganji.com/findjob/send_resume\..*&ad_type= +# @@||gamersky.com^*/dhgame_ (easylistchina.txt: 10240) +.gamersky.com/.*/dhgame_ +# @@||game.sina.com.tw/game_data/advertise/ (easylistchina.txt: 10239) +.game.sina.com.tw/game_data/advertise/ +# @@||g.tbcdn.cn/tb/mercury/*/ads/index. (easylistchina.txt: 10238) +.g.tbcdn.cn/tb/mercury/.*/ads/index\. +# @@||g.alicdn.com/??*/criteo (easylistchina.txt: 10237) +.g.alicdn.com/\?\?.*/criteo +# @@||g.163.com/jr?site=netease&affiliate=freemail (easylistchina.txt: 10236) +.g.163.com/jr\?site=netease&affiliate=freemail +# @@||forum.51nb.com/images/*/ (easylistchina.txt: 10235) +.forum.51nb.com/images/.*/ +# @@||fharr.com^$generichide (easylistchina.txt: 10234) +.fharr.com +# @@||esquirehk.com/action/adtag/(type)/googletag/(method)/async (easylistchina.txt: 10232) +.esquirehk.com/action/adtag/\(type\)/googletag/\(method\)/async +# @@||emome.net/files/advertising/ (easylistchina.txt: 10231) +.emome.net/files/advertising/ +# @@||eiv.baidu.com/hmt/icon/21.gif (easylistchina.txt: 10230) +.eiv.baidu.com/hmt/icon/21\.gif +# @@||edgesuite.net^*/ad.css? (easylistchina.txt: 10229) +.edgesuite.net/.*/ad\.css\? +# @@||eden.org.tw/themes/liger/images/banner_ (easylistchina.txt: 10228) +.eden.org.tw/themes/liger/images/banner_ +# @@||eden.org.tw*/script/ad_banner/ (easylistchina.txt: 10227) +.eden.org.tw*./(.*/)?script/ad_banner/ +# @@||ecma.bdimg.com/holmes/*.svg (easylistchina.txt: 10226) +.ecma.bdimg.com/holmes/.*\.svg +# @@||ecitic.com/eshop/advertise/ (easylistchina.txt: 10225) +.ecitic.com/eshop/advertise/ +# @@||ecitic.com/ads_ (easylistchina.txt: 10224) +.ecitic.com/ads_ +# @@||ebiotrade.com/jslibrary/js44.js (easylistchina.txt: 10223) +.ebiotrade.com/jslibrary/js44\.js +# @@||e.cn.miaozhen.com/r/k=*=http (easylistchina.txt: 10218) +.e.cn.miaozhen.com/r/k=.*=http +# @@||dzwww.com/ad/jsfiles/fillCon.js (easylistchina.txt: 10217) +.dzwww.com/ad/jsfiles/fillCon\.js +# @@||dvs.china.com/crossdomain.xml (easylistchina.txt: 10216) +.dvs.china.com/crossdomain\.xml +# @@||dvs.china.com/adv1.xml (easylistchina.txt: 10215) +.dvs.china.com/adv1\.xml +# @@||dvbcn.com/caches/poster_js/23.js (easylistchina.txt: 10214) +.dvbcn.com/caches/poster_js/23\.js +# @@||dushiwenxue.com/add/article/pagetop.js (easylistchina.txt: 10213) +.dushiwenxue.com/add/article/pagetop\.js +# @@||duba.net/common/cf/common_6545_icon. (easylistchina.txt: 10212) +.duba.net/common/cf/common_6545_icon\. +# @@||downbank.cn/s1/yl.js (easylistchina.txt: 10211) +.downbank.cn/s1/yl\.js +# @@||down.cc/down/js/ad.js (easylistchina.txt: 10210) +.down.cc/down/js/ad\.js +# @@||do189.com/zb_users/theme/duoyi/style/images/text_bg.gif (easylistchina.txt: 10209) +.do189.com/zb_users/theme/duoyi/style/images/text_bg\.gif +# @@||disney.com.tw/tv/global/swf/banner728x90.swf (easylistchina.txt: 10207) +.disney.com.tw/tv/global/swf/banner728x90\.swf +# @@||dilidili.com/js/week.js (easylistchina.txt: 10206) +.dilidili.com/js/week\.js +# @@||daoju.qq.com/time/*/js/ad/ (easylistchina.txt: 10205) +.daoju.qq.com/time/.*/js/ad/ +# @@||damai.cn^*/TopAd/ (easylistchina.txt: 10204) +.damai.cn/.*/TopAd/ +# @@||cztv.com/player/*.swf?ad= (easylistchina.txt: 10203) +.cztv.com/player/.*\.swf\?ad= +# @@||csbew.com/FrameWork/AFP/ (easylistchina.txt: 10201) +.csbew.com/FrameWork/AFP/ +# @@||cq.qq.com/js/cody/*scroll_ad.js (easylistchina.txt: 10200) +.cq.qq.com/js/cody/.*scroll_ad\.js +# @@||costco.com.tw/jsps/website/*AD (easylistchina.txt: 10197) +.costco.com.tw/jsps/website/.*AD +# @@||content.s8bbs.com/ad/bbs/*.jpg (easylistchina.txt: 10196) +.content.s8bbs.com/ad/bbs/.*\.jpg +# @@||cntv.cn^*_ad.js (easylistchina.txt: 10195) +.cntv.cn/.*_ad\.js +# @@||cnsofas.com/loldytt/js/jquery.js (easylistchina.txt: 10194) +.cnsofas.com/loldytt/js/jquery\.js +# @@||cnr.cn/gg/ (easylistchina.txt: 10193) +.cnr.cn/gg/ +# @@||cmbchina.com/ads/ (easylistchina.txt: 10192) +.cmbchina.com/ads/ +# @@||click.union.vip.com^ (easylistchina.txt: 10191) +.click.union.vip.com +# @@||click.union.jd.com^ (easylistchina.txt: 10190) +.click.union.jd.com +# @@||citysbs.com^*/swfupload/ (easylistchina.txt: 10189) +.citysbs.com/.*/swfupload/ +# @@||chinahr.com/images/phpads/ (easylistchina.txt: 10188) +.chinahr.com/images/phpads/ +# @@||cdn.wdlm.cn^*/ (easylistchina.txt: 10187) +.cdn.wdlm.cn/.*/ +# @@||cb.baidu.com/ecom?di=943217& (easylistchina.txt: 10182) +.cb.baidu.com/ecom\?di=943217& +# @@||cb.baidu.com/ecom?di=893557& (easylistchina.txt: 10181) +.cb.baidu.com/ecom\?di=893557& +# @@||cb.baidu.com/ecom?di=817641& (easylistchina.txt: 10180) +.cb.baidu.com/ecom\?di=817641& +# @@||cb.baidu.com/ecom?di=654997& (easylistchina.txt: 10179) +.cb.baidu.com/ecom\?di=654997& +# @@||cb.baidu.com/ecom?di=373107& (easylistchina.txt: 10178) +.cb.baidu.com/ecom\?di=373107& +# @@||cb.baidu.com/ecom?di=106878& (easylistchina.txt: 10177) +.cb.baidu.com/ecom\?di=106878& +# @@||buy.ccb.com/public/js/ad.js (easylistchina.txt: 10173) +.buy.ccb.com/public/js/ad\.js +# @@||briian.com/advert. (easylistchina.txt: 10172) +.briian.com/advert\. +# @@||blimage.com/picserver/ggpic/ (easylistchina.txt: 10171) +.blimage.com/picserver/ggpic/ +# @@||blemall.com^$elemhide (easylistchina.txt: 10170) +.blemall.com +# @@||biz.gexing.com/bottom_ (easylistchina.txt: 10169) +.biz.gexing.com/bottom_ +# @@||biquge5.com/jquery/biquge.js (easylistchina.txt: 10168) +.biquge5.com/jquery/biquge\.js +# @@||bingfeng.tw^$elemhide (easylistchina.txt: 10167) +.bingfeng.tw +# @@||beanfun.com/ADClient/ (easylistchina.txt: 10166) +.beanfun.com/ADClient/ +# @@||bdstatic.com/??*, (easylistchina.txt: 10165) +.bdstatic.com/\?\?.*, +# @@||bbs.yantuchina.com/gg/tmp/hong.gif (easylistchina.txt: 10163) +.bbs.yantuchina.com/gg/tmp/hong\.gif +# @@||banma.com/statics/js/?? (easylistchina.txt: 10162) +.banma.com/statics/js/\?\? +# @@||bahamut.com.tw/JS/ad/mobileBigBanner.js (easylistchina.txt: 10161) +.bahamut.com.tw/JS/ad/mobileBigBanner\.js +# @@||atm.youku.com/cast/getFlvUrl. (easylistchina.txt: 10160) +.atm.youku.com/cast/getFlvUrl\. +# @@||astyle.alicdn.com/?? (easylistchina.txt: 10159) +.astyle.alicdn.com/\?\? +# @@||aspjzy.com/jsweb/js/hotsearch.js (easylistchina.txt: 10158) +.aspjzy.com/jsweb/js/hotsearch\.js +# @@||aqy103.com/js/aqy/main.js (easylistchina.txt: 10156) +.aqy103.com/js/aqy/main\.js +# @@||appbyme.com^*/Advertisement.css (easylistchina.txt: 10154) +.appbyme.com/.*/Advertisement\.css +# @@||appbyme.com/adclient/ (easylistchina.txt: 10153) +.appbyme.com/adclient/ +# @@||angpic.3g.net.cn/ai/*/ (easylistchina.txt: 10152) +.angpic.3g.net.cn/ai/.*/ +# @@||advertise.shijue.cvidea.cn^ (easylistchina.txt: 10148) +.advertise.shijue.cvidea.cn +# @@||advert.kf5.com^ (easylistchina.txt: 10147) +.advert.kf5.com +# @@||ads.i8.com.cn/hd/dzs/ (easylistchina.txt: 10143) +.ads.i8.com.cn/hd/dzs/ +# @@||addon.discuz.com/resource/*/ad (easylistchina.txt: 10138) +.addon.discuz.com/resource/.*/ad +# @@||adcdn.pingan.com^ (easylistchina.txt: 10137) +.adcdn.pingan.com +# @@||ad1.nownews.com/ads.php?ownerid=1335 (easylistchina.txt: 10136) +.ad1.nownews.com/ads\.php\?ownerid=1335 +# @@||ad1.nownews.com/ads.php?ownerid=1334 (easylistchina.txt: 10135) +.ad1.nownews.com/ads\.php\?ownerid=1334 +# @@||ad1.nownews.com/ads.php?ownerid=1333 (easylistchina.txt: 10134) +.ad1.nownews.com/ads\.php\?ownerid=1333 +# @@||ad1.nownews.com/ads.php?ownerid=1332 (easylistchina.txt: 10133) +.ad1.nownews.com/ads\.php\?ownerid=1332 +# @@||ad1.nownews.com/ads.php?ownerid=1331 (easylistchina.txt: 10132) +.ad1.nownews.com/ads\.php\?ownerid=1331 +# @@||ad1.nownews.com/ads.php?ownerid=1325 (easylistchina.txt: 10131) +.ad1.nownews.com/ads\.php\?ownerid=1325 +# @@||ad1.nownews.com/ads.php?ownerid=1324 (easylistchina.txt: 10130) +.ad1.nownews.com/ads\.php\?ownerid=1324 +# @@||ad1.nownews.com/ads.php?ownerid=1323 (easylistchina.txt: 10129) +.ad1.nownews.com/ads\.php\?ownerid=1323 +# @@||ad1.nownews.com/ads.php?ownerid=1322 (easylistchina.txt: 10128) +.ad1.nownews.com/ads\.php\?ownerid=1322 +# @@||ad1.nownews.com/ads.php?ownerid=1321 (easylistchina.txt: 10127) +.ad1.nownews.com/ads\.php\?ownerid=1321 +# @@||ad1.nownews.com/ads.php?ownerid=1294 (easylistchina.txt: 10126) +.ad1.nownews.com/ads\.php\?ownerid=1294 +# @@||ad1.nownews.com/*.php?ownerid=1355 (easylistchina.txt: 10125) +.ad1.nownews.com/.*\.php\?ownerid=1355 +# @@||ad.thsi.cn/siteHome/ (easylistchina.txt: 10123) +.ad.thsi.cn/siteHome/ +# @@||ad.qyer.com^ (easylistchina.txt: 10122) +.ad.qyer.com +# @@||ad.ourgame.com^ (easylistchina.txt: 10121) +.ad.ourgame.com +# @@||ad.kazakinfo.com^ (easylistchina.txt: 10120) +.ad.kazakinfo.com +# @@||ad.jz123.cn^ (easylistchina.txt: 10119) +.ad.jz123.cn +# @@||ad.damai.cn^ (easylistchina.txt: 10117) +.ad.damai.cn +# @@||ad.abchina.com^ (easylistchina.txt: 10115) +.ad.abchina.com +# @@||ad.10010.com^ (easylistchina.txt: 10112) +.ad.10010.com +# @@||abchina.com^*/images/ad. (easylistchina.txt: 10110) +.abchina.com/.*/images/ad\. +# @@||a.banggo.com/Ad/getAdPosList.shtml (easylistchina.txt: 10109) +.a.banggo.com/Ad/getAdPosList\.shtml +# @@||99ting.cn/image/ding.gif (easylistchina.txt: 10106) +.99ting.cn/image/ding\.gif +# @@||95599.cn^*/images/ad. (easylistchina.txt: 10105) +.95599.cn/.*/images/ad\. +# @@||8591.com.tw^*/buyAd.css (easylistchina.txt: 10104) +.8591.com.tw/.*/buyAd\.css +# @@||7vk.com/detail/shehuipinlun.js (easylistchina.txt: 10103) +.7vk.com/detail/shehuipinlun\.js +# @@||7s8.net/image/ads/ (easylistchina.txt: 10102) +.7s8.net/image/ads/ +# @@||77119.com/js/fenxiang.js (easylistchina.txt: 10101) +.77119.com/js/fenxiang\.js +# @@||75.125.41.29:8080/*/ (easylistchina.txt: 10100) +.75.125.41.29:8080/.*/ +# @@||70.86.24.120:8060/*/ (easylistchina.txt: 10097) +.70.86.24.120:8060/.*/ +# @@||61ef.cn/upfiles/gg/ (easylistchina.txt: 10096) +.61ef.cn/upfiles/gg/ +# @@||61.164.108.184/tb/*.gif (easylistchina.txt: 10095) +.61.164.108.184/tb/.*\.gif +# @@||61.164.108.104:4275/*/*.gif (easylistchina.txt: 10094) +.61.164.108.104:4275/.*/.*\.gif +# @@||58cdn.com.cn/tuiguang/center/ (easylistchina.txt: 10092) +.58cdn.com.cn/tuiguang/center/ +# @@||58.com/adJump?adType= (easylistchina.txt: 10090) +.58.com/adJump\?adType= +# @@||52zy.com/gg/ (easylistchina.txt: 10089) +.52zy.com/gg/ +# @@||52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b.png (easylistchina.txt: 10088) +.52ch.net/data/attachment/portal/201502/12/205202f34vy0p5g7q7bd0b\.png +# @@||51img1.com/??*/adsys. (easylistchina.txt: 10087) +.51img1.com/\?\?.*/adsys\. +# @@||51hanhua.com/2013/brtxt.js (easylistchina.txt: 10086) +.51hanhua.com/2013/brtxt\.js +# @@||360buyimg.com^*?? (easylistchina.txt: 10084) +.360buyimg.com/.*\?\? +# @@||3399.com/DataTransfer/Advertisement/ (easylistchina.txt: 10081) +.3399.com/DataTransfer/Advertisement/ +# @@||33.autohome.com.cn/njs/newget.js (easylistchina.txt: 10080) +.33.autohome.com.cn/njs/newget\.js +# @@||33.autohome.com.cn/njs/10055.js (easylistchina.txt: 10079) +.33.autohome.com.cn/njs/10055\.js +# @@||2kandy.com^$generichide (easylistchina.txt: 10078) +.2kandy.com +# @@||2kandy.com/source/plugin/fieah_blockadblock/ (easylistchina.txt: 10077) +.2kandy.com/source/plugin/fieah_blockadblock/ +# @@||221.7.250.35/caches/poster_js/21.js (easylistchina.txt: 10076) +.221.7.250.35/caches/poster_js/21\.js +# @@||192.168.*.1/userRpm/Index.$elemhide (easylistchina.txt: 10074) +.192.168.*./.*\.1/userRpm/Index\. +.192.168.*.1/userRpm/Index\. +# @@||189.cn^$generichide (easylistchina.txt: 10073) +.189.cn +# @@||189.cn/activity/adzh2015/js/ad.js (easylistchina.txt: 10072) +.189.cn/activity/adzh2015/js/ad\.js +# @@||17kk.cc/scriptAD/other/new_manhua.html (easylistchina.txt: 10071) +.17kk.cc/scriptAD/other/new_manhua\.html +# @@||177mh.com/img_v1/bbad.gif (easylistchina.txt: 10070) +.177mh.com/img_v1/bbad\.gif +# @@||17173.com/x/flash800500.js (easylistchina.txt: 10069) +.17173.com/x/flash800500\.js +# @@||16888.com/dist/js/?? (easylistchina.txt: 10068) +.16888.com/dist/js/\?\? +# @@||131js.131.com/home/resouces/js/index_20120420.js (easylistchina.txt: 10067) +.131js.131.com/home/resouces/js/index_20120420\.js +# @@||123dhang.com/supo/advertisement.js (easylistchina.txt: 10065) +.123dhang.com/supo/advertisement\.js +# @@||12306.cn/otn/resources/images/pic/new-ad (easylistchina.txt: 10064) +.12306.cn/otn/resources/images/pic/new-ad +# @@||113.com.tw/www/image/index-ad.png (easylistchina.txt: 10063) +.113.com.tw/www/image/index-ad\.png +# @@||107.182.131.103/cache/?q=/images/*/ (easylistchina.txt: 10062) +.107.182.131.103/cache/\?q=/images/.*/ +# @@||10086.cn^$generichide (easylistchina.txt: 10060) +.10086.cn +# @@||10010.com^*/ad/ (easylistchina.txt: 10059) +.10010.com/.*/ad/ +# @@||10010.com^*/ad. (easylistchina.txt: 10058) +.10010.com/.*/ad\. +# @@||060s.com/images_ad/*.png (easylistchina.txt: 10057) +.060s.com/images_ad/.*\.png +# @@|http://tieba.baidu.com/|$genericblock (easylistchina.txt: 10056) +tieba.baidu.com/$ +# @@|http://*/gg/*.css (easylistchina.txt: 10055) +/(.*/)?gg/.*\.css +# @@u-ads.adap.tv*youku.com (easylistchina.txt: 10049) +/.*u-ads\.adap\.tv.*youku\.com +.*u-ads.adap.tv*./.*youku\.com +.*u-ads.adap.tv*youku.com*. +# @@/ttkdweb/page/js/ad.js (easylistchina.txt: 10040) +/(.*/)?ttkdweb/page/js/ad\.js +# @@/data/attachment/*_300_250_ (easylistchina.txt: 10018) +/(.*/)?data/attachment/.*_300_250_ +# @@/cntv_Advertise.js (easylistchina.txt: 10015) +/(.*/)?cntv_Advertise\.js +# @@/appledaily/homead/*_ad_logo. (easylistchina.txt: 10011) +/(.*/)?appledaily/homead/.*_ad_logo\. +# @@/32666/images/ad (easylistchina.txt: 9980) +/(.*/)?32666/images/ad +# @@/2kuai/images/ad (easylistchina.txt: 9979) +/(.*/)?2kuai/images/ad +# @@.tudouui.com^*&adSourceId= (easylistchina.txt: 9977) +/.*\.tudouui\.com[^\w%.-].*&adSourceId= +.*.tudouui.com/.*&adSourceId= +# @@.s1979.com/ad/ad*.mp4 (easylistchina.txt: 9976) +/.*\.s1979\.com/ad/ad.*\.mp4 +.*.s1979.com/ad/ad.*\.mp4 +# @@.jstv.com/c/gg/ (easylistchina.txt: 9975) +/.*\.jstv\.com/c/gg/ +.*.jstv.com/c/gg/ +# @@.cntv.cn/adplayer/ (easylistchina.txt: 9970) +/.*\.cntv\.cn/adplayer/ +.*.cntv.cn/adplayer/ +# @@.beautifulphoto.net/ads/music (easylistchina.txt: 9969) +/.*\.beautifulphoto\.net/ads/music +.*.beautifulphoto.net/ads/music +# @@&adf=dalian_300x250_ (easylistchina.txt: 9967) +/.*&adf=dalian_300x250_ +# @@||union.bokecc.com/crossdomain.xml (easylistchina.txt: 21) +.union.bokecc.com/crossdomain\.xml + +#ab2p-unblock-request-Aaov-Caov +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov} \ + +server-header-tagger{ab2p-unblock-request-Caov} \ +} +# @@||yawin.cn/ad/$object-subrequest (easylistchina.txt: 10418) +.yawin.cn/ad/ +# @@||go.goyeah.com/adpolestar/$object-subrequest (easylistchina.txt: 10246) +.go.goyeah.com/adpolestar/ +# @@||dnvod.eu/ads/$object-subrequest (easylistchina.txt: 10208) +.dnvod.eu/ads/ +# @@||appledaily.com.hk/admedia/$object-subrequest (easylistchina.txt: 10155) +.appledaily.com.hk/admedia/ +# @@||hichannel.hinet.net^$object-subrequest (easylistchina.txt: 19) +.hichannel.hinet.net + +#ab2p-unblock-request-Aasv-Casv +{-block \ + +client-header-tagger{ab2p-unblock-request-Aasv} \ + +server-header-tagger{ab2p-unblock-request-Casv} \ +} +# @@||union.bokecc.com/flash/$object (easylistchina.txt: 10391) +.union.bokecc.com/flash/ + +#ab2p-unblock-request-Ac-Cc +{-block \ + +client-header-tagger{ab2p-unblock-request-Ac} \ + +server-header-tagger{ab2p-unblock-request-Cc} \ +} +# @@||192.168.*/advertising_$stylesheet (easylistchina.txt: 10075) +.192.168.*./(.*/)?advertising_ + +#ab2p-unblock-request-Ahm-Chm +{-block \ + +client-header-tagger{ab2p-unblock-request-Ahm} \ + +server-header-tagger{ab2p-unblock-request-Chm} \ +} +TAG:^ab2p-unblock-request-Ahm-Chm$ + +#ab2p-unblock-request-Ahm-Chm-when-R219 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R219} \ +} +# @@||ad.alimama.com^$document,domain=ad.alimama.com (easylistchina.txt: 10116) +.ad.alimama.com + +#ab2p-unblock-request-Ahm-Chm-when-R301 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R301} \ +} +# @@||szhr.com.cn^$document,domain=szhr.com.cn (easylistchina.txt: 10372) +.szhr.com.cn + +#ab2p-unblock-request-Ahm-Chm-when-R329 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ahm-Chm-when-R329} \ +} +# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina.txt: 10118) +.ad.doubleclick.net/ddm/adi/.*\.ZALORA\.COM\.HK + +#ab2p-unblock-request-Ai-Ci +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai} \ + +server-header-tagger{ab2p-unblock-request-Ci} \ +} +TAG:^ab2p-unblock-request-Ai-Ci$ +# @@||static.hdslb.com/ad-images/$image (easylistchina.txt: 10368) +.static.hdslb.com/ad-images/ +# @@||poster.weather.com.cn/p_files/base/$image (easylistchina.txt: 20) +.poster.weather.com.cn/p_files/base/ + +#ab2p-unblock-request-Ai-Ci-when-R223 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R223} \ +} +# @@/adbanner/*$image,domain=books.com.tw (easylistchina.txt: 9983) +/(.*/)?adbanner/.* + +#ab2p-unblock-request-Ai-Ci-when-R312 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R312} \ +} +# @@||hd.duba.net/vip.ijinshan.com/repository/ad-images/$image,domain=vip.ijinshan.com (easylistchina.txt: 10252) +.hd.duba.net/vip\.ijinshan\.com/repository/ad-images/ + +#ab2p-unblock-request-Aij-Cij +{-block \ + +client-header-tagger{ab2p-unblock-request-Aij} \ + +server-header-tagger{ab2p-unblock-request-Cij} \ +} +TAG:^ab2p-unblock-request-Aij-Cij$ + +#ab2p-unblock-request-Aij-Cij-when-R266 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aij-Cij-when-R266} \ +} +# @@|http:$image,script,domain=jjcast.com (easylistchina.txt: 10050) + +#ab2p-unblock-request-Aj-Cj +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj} \ + +server-header-tagger{ab2p-unblock-request-Cj} \ +} +TAG:^ab2p-unblock-request-Aj-Cj$ +# @@||simba.taobao.com/?name=mcad$script (easylistchina.txt: 10354) +.simba.taobao.com/\?name=mcad +# @@||online.unionpay.com/ads/$script (easylistchina.txt: 10309) +.online.unionpay.com/ads/ +# @@||airenti.in/*/$script (easylistchina.txt: 10149) +.airenti.in/.*/ +# @@||adjs.8591.com.tw^$script (easylistchina.txt: 10139) +.adjs.8591.com.tw + +#ab2p-unblock-request-Aj-Cj-Xx +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj} \ + +server-header-tagger{ab2p-unblock-request-Cj} \ + +client-header-tagger{ab2p-unblock-request-Xx} \ +} +TAG:^ab2p-unblock-request-Aj-Cj-Xx$ + +#ab2p-unblock-request-Aj-Cj-Xx-when-nR-R188nt +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-R188nt} \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-Xx-when-nR} \ +} +# @@|http:$script,~third-party,xmlhttprequest,domain=serve.netsh.org (easylistchina.txt: 10051) + +#ab2p-unblock-request-Aj-Cj-when-R242 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R242} \ +} +# @@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn (easylistchina.txt: 10358) +.sinaimg.cn/cj/deco/ + +#ab2p-unblock-request-Aj-Cj-when-R244 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R244} \ +} +# @@||f70123.com^$script,domain=flv.tv (easylistchina.txt: 10233) +.f70123.com +# @@||e719.net^$script,domain=flv.tv (easylistchina.txt: 10222) +.e719.net +# @@||e70123.com^$script,domain=flv.tv (easylistchina.txt: 10221) +.e70123.com +# @@||e701.net^$script,domain=flv.tv (easylistchina.txt: 10219) +.e701.net +# @@||70e.com^$script,domain=flv.tv (easylistchina.txt: 10099) +.70e.com + +#ab2p-unblock-request-Aj-Cj-when-R264 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R264} \ +} +# @@||ad.3.cn/ads/mgets?$script,domain=item.jd.com (easylistchina.txt: 10113) +.ad.3.cn/ads/mgets\? + +#ab2p-unblock-request-Aj-Cj-when-R284 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R284} \ +} +# @@/hitCount.$script,domain=on.cc (easylistchina.txt: 10447) +/(.*/)?hitCount\. +hitCount.*. + +#ab2p-unblock-request-Aj-Cj-when-R300 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R300} \ +} +# @@||keyrun.cn^$script,domain=sx566.com (easylistchina.txt: 10284) +.keyrun.cn + +#ab2p-unblock-request-Ani-nC-Cni-Xx +{-block \ + +client-header-tagger{ab2p-unblock-request-Ani} \ + +server-header-tagger{ab2p-unblock-request-Cni} \ + +server-header-tagger{ab2p-unblock-request-nC} \ + +client-header-tagger{ab2p-unblock-request-Xx} \ +} +# @@||sdc.pingan.com^$~image (easylistchina.txt: 10349) +.sdc.pingan.com + +#ab2p-unblock-request-R189 +{-block \ + +client-header-tagger{ab2p-unblock-request-R189} \ +} +# @@.com/ad.$domain=0379home.com (easylistchina.txt: 9971) +/.*\.com/ad\. +.*.com/ad\. + +#ab2p-unblock-request-R190 +{-block \ + +client-header-tagger{ab2p-unblock-request-R190} \ +} +# @@||10086.cn^*/ad$domain=10086.cn (easylistchina.txt: 10061) +.10086.cn/.*/ad + +#ab2p-unblock-request-R191 +{-block \ + +client-header-tagger{ab2p-unblock-request-R191} \ +} +# @@/images/ad$domain=10pan.cc|77pan.cc|789disc.cc|789pan.cc|huimeiku.com|ifonce.com (easylistchina.txt: 10024) +/(.*/)?images/ad + +#ab2p-unblock-request-R192 +{-block \ + +client-header-tagger{ab2p-unblock-request-R192} \ +} +# @@||cpro.baidustatic.com/cpro/ui/c.js$domain=121.40.92.135|7958.com.cn|9duli.com|coladrive.com|colayun.com|dlzyw.com|ffpan.com|gqpdf.com|gqzzw.com|l7po.com|pctowap.com (easylistchina.txt: 10199) +.cpro.baidustatic.com/cpro/ui/c\.js + +#ab2p-unblock-request-R193 +{-block \ + +client-header-tagger{ab2p-unblock-request-R193} \ +} +# @@/advertise.$domain=123.138.234.240 (easylistchina.txt: 10002) +/(.*/)?advertise\. +advertise.*. + +#ab2p-unblock-request-R194 +{-block \ + +client-header-tagger{ab2p-unblock-request-R194} \ +} +# @@||adm.cnzz.net/js/abase.js$domain=123564.com (easylistchina.txt: 10141) +.adm.cnzz.net/js/abase\.js +# @@||adm.cnzz.net/appgcm.php?sid=244627&$domain=123564.com (easylistchina.txt: 10140) +.adm.cnzz.net/appgcm\.php\?sid=244627& + +#ab2p-unblock-request-R195 +{-block \ + +client-header-tagger{ab2p-unblock-request-R195} \ +} +# @@/adview_pic_$domain=123564.com|btbt.tv|fxpan.com|jkpan.com|keenfine.com|mahua.com (easylistchina.txt: 10008) +/(.*/)?adview_pic_ + +#ab2p-unblock-request-R196 +{-block \ + +client-header-tagger{ab2p-unblock-request-R196} \ +} +# @@?sid=ads$domain=126.com|mail.163.com (easylistchina.txt: 10048) +/.*\?sid=ads + +#ab2p-unblock-request-R197 +{-block \ + +client-header-tagger{ab2p-unblock-request-R197} \ +} +# @@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 (easylistchina.txt: 10066) +.127.0.0.1/admin/admin_ad\.php\? + +#ab2p-unblock-request-R198 +{-block \ + +client-header-tagger{ab2p-unblock-request-R198} \ +} +# @@/css/ad.$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 10017) +/(.*/)?css/ad\. +# @@/168logo.gif$domain=16668.biz|16668.cc|16668.com|16668.net|16668.org|16668tu.com (easylistchina.txt: 9978) +/(.*/)?168logo\.gif +168logo.gif*. + +#ab2p-unblock-request-R199 +{-block \ + +client-header-tagger{ab2p-unblock-request-R199} \ +} +# @@/cms/ads/*$domain=17.com (easylistchina.txt: 10014) +/(.*/)?cms/ads/.* + +#ab2p-unblock-request-R200 +{-block \ + +client-header-tagger{ab2p-unblock-request-R200} \ +} +# @@/ads/*$domain=189.cn (easylistchina.txt: 9994) +/(.*/)?ads/.* + +#ab2p-unblock-request-R201 +{-block \ + +client-header-tagger{ab2p-unblock-request-R201} \ +} +# @@/pop.js|$domain=189.cn|ali213.net|coolpad.com (easylistchina.txt: 10033) +/(.*/)?pop\.js$ +pop.js + +#ab2p-unblock-request-R202 +{-block \ + +client-header-tagger{ab2p-unblock-request-R202} \ +} +# @@/ima/*ad.$domain=21394.com|94pan.com|fmdisk.com|fmdisk.net|fmpan.com (easylistchina.txt: 10022) +/(.*/)?ima/.*ad\. + +#ab2p-unblock-request-R203 +{-block \ + +client-header-tagger{ab2p-unblock-request-R203} \ +} +# @@&adurl=http://$domain=360bifen.cc|360bifen.com (easylistchina.txt: 9968) +/.*&adurl=http:// + +#ab2p-unblock-request-R204 +{-block \ + +client-header-tagger{ab2p-unblock-request-R204} \ +} +# @@/assets/adv/*$domain=4008927927.cn (easylistchina.txt: 10012) +/(.*/)?assets/adv/.* + +#ab2p-unblock-request-R205 +{-block \ + +client-header-tagger{ab2p-unblock-request-R205} \ +} +# @@||5060.com^$elemhide,domain=5060.com (easylistchina.txt: 10085) +.5060.com + +#ab2p-unblock-request-R206 +{-block \ + +client-header-tagger{ab2p-unblock-request-R206} \ +} +# @@||cpro.baidu.com/cpro/ui/c.js$domain=520tingshu.com (easylistchina.txt: 10198) +.cpro.baidu.com/cpro/ui/c\.js + +#ab2p-unblock-request-R207 +{-block \ + +client-header-tagger{ab2p-unblock-request-R207} \ +} +# @@||5i5j.*/images/ad$domain=5i5j.com (easylistchina.txt: 10093) +.5i5j.*./(.*/)?images/ad + +#ab2p-unblock-request-R208 +{-block \ + +client-header-tagger{ab2p-unblock-request-R208} \ +} +# @@||cbjs.baidu.com/js/o.js$domain=666ccc.com|g3000.com.cn|hfchenming.com.cn|missioncouver.com.cn|op.52pk.com|yue365.com (easylistchina.txt: 10184) +.cbjs.baidu.com/js/o\.js + +#ab2p-unblock-request-R209 +{-block \ + +client-header-tagger{ab2p-unblock-request-R209} \ +} +# @@/common/cf/*$domain=66u.com|dataguru.cn|oneplusbbs.com|readboy.com (easylistchina.txt: 10016) +/(.*/)?common/cf/.* + +#ab2p-unblock-request-R210 +{-block \ + +client-header-tagger{ab2p-unblock-request-R210} \ +} +# @@/images/*/*.gif$domain=67.228.203.174|iu91.co|maichun5.info|myhhg.com|sejie.com|sejie3.us|ukhuaren.co|yh1.info|yh10.info (easylistchina.txt: 10023) +/(.*/)?images/.*/.*\.gif + +#ab2p-unblock-request-R211 +{-block \ + +client-header-tagger{ab2p-unblock-request-R211} \ +} +# @@/\.7k7k.com\/(?!(ad|load))/$domain=7k7k.com (easylistchina.txt: 10434) +/(.*/)?\\\.7k7k\.com\\/\(\?!\(ad\|load\)\)/ +/\.7k7k.com\/(?!(ad|load)) + +#ab2p-unblock-request-R212 +{-block \ + +client-header-tagger{ab2p-unblock-request-R212} \ +} +# @@/ad_file/*$domain=7net.com.tw|ibon.com.tw|pxmart.com.tw (easylistchina.txt: 9981) +/(.*/)?ad_file/.* + +#ab2p-unblock-request-R213 +{-block \ + +client-header-tagger{ab2p-unblock-request-R213} \ +} +# @@||l.qq.com/lview?$domain=888.sports.qq.com (easylistchina.txt: 10287) +.l.qq.com/lview\? +# @@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com (easylistchina.txt: 10277) +.j.wit.qq.com/sc/crystal_ad\.js\? + +#ab2p-unblock-request-R214 +{-block \ + +client-header-tagger{ab2p-unblock-request-R214} \ +} +# @@/ad_images/*$domain=88box.com (easylistchina.txt: 9982) +/(.*/)?ad_images/.* + +#ab2p-unblock-request-R215 +{-block \ + +client-header-tagger{ab2p-unblock-request-R215} \ +} +# @@.com/ads/$domain=88boxjx.com (easylistchina.txt: 9973) +/.*\.com/ads/ +.*.com/ads/ + +#ab2p-unblock-request-R216 +{-block \ + +client-header-tagger{ab2p-unblock-request-R216} \ +} +# @@/web/ads/*$domain=95516.com (easylistchina.txt: 10042) +/(.*/)?web/ads/.* + +#ab2p-unblock-request-R217 +{-block \ + +client-header-tagger{ab2p-unblock-request-R217} \ +} +# @@/images/ad/*$domain=9588.com|dod-tec.com|gueizu.com|landtop.com.tw|ourgame.com|pro-partner.com.tw|snh48.com|sozi.cn|tingbook.com (easylistchina.txt: 10025) +/(.*/)?images/ad/.* + +#ab2p-unblock-request-R218 +{-block \ + +client-header-tagger{ab2p-unblock-request-R218} \ +} +# @@||pos.baidu.com/ecom?$domain=9duli.com (easylistchina.txt: 10326) +.pos.baidu.com/ecom\? + +#ab2p-unblock-request-R220 +{-block \ + +client-header-tagger{ab2p-unblock-request-R220} \ +} +# @@||ad-specs.guoshipartners.com/static/js/isip.js$domain=appledaily.com.tw (easylistchina.txt: 10111) +.ad-specs.guoshipartners.com/static/js/isip\.js + +#ab2p-unblock-request-R221 +{-block \ + +client-header-tagger{ab2p-unblock-request-R221} \ +} +# @@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com (easylistchina.txt: 10272) +.inskinmedia.com/.*/js/base/api/ + +#ab2p-unblock-request-R222 +{-block \ + +client-header-tagger{ab2p-unblock-request-R222} \ +} +# @@||yktj.yzz.cn/htmldata/mds/yzz_single_gg.js$domain=bbs.yzz.cn (easylistchina.txt: 10426) +.yktj.yzz.cn/htmldata/mds/yzz_single_gg\.js + +#ab2p-unblock-request-R224 +{-block \ + +client-header-tagger{ab2p-unblock-request-R224} \ +} +# @@||58.com/ds/tgbrand/$domain=brandsales.58.com (easylistchina.txt: 10091) +.58.com/ds/tgbrand/ + +#ab2p-unblock-request-R225 +{-block \ + +client-header-tagger{ab2p-unblock-request-R225} \ +} +# @@/advert/*$domain=cctcw.cn|juxiangyou.com|locuspublishing.com (easylistchina.txt: 10000) +/(.*/)?advert/.* + +#ab2p-unblock-request-R60 +{-block \ + +client-header-tagger{ab2p-unblock-request-R60} \ +} +# @@/sda/weixin$domain=chineseinla.com (easylistchina.txt: 10036) +/(.*/)?sda/weixin + +#ab2p-unblock-request-R226 +{-block \ + +client-header-tagger{ab2p-unblock-request-R226} \ +} +# @@/adfile/*$domain=cidianwang.com (easylistchina.txt: 9986) +/(.*/)?adfile/.* + +#ab2p-unblock-request-R227 +{-block \ + +client-header-tagger{ab2p-unblock-request-R227} \ +} +# @@||pos.baidu.com/acom?di=$domain=coladrive.com|colayun.com (easylistchina.txt: 10321) +.pos.baidu.com/acom\?di= +# @@/js/ad_test.js$domain=coladrive.com|colayun.com (easylistchina.txt: 10029) +/(.*/)?js/ad_test\.js + +#ab2p-unblock-request-R228 +{-block \ + +client-header-tagger{ab2p-unblock-request-R228} \ +} +# @@||cbjs.baidu.com/js/m.js$domain=coladrive.com|colayun.com|fxpan.com|kuakao.com|pctowap.com|pic.tiexue.net|shushu5.com|shushuw.cn|xdf.cn (easylistchina.txt: 10183) +.cbjs.baidu.com/js/m\.js + +#ab2p-unblock-request-R229 +{-block \ + +client-header-tagger{ab2p-unblock-request-R229} \ +} +# @@||cb.baidu.com/ecom?$domain=coladrive.com|colayun.com|pctowap.com|play.yue365.com|shushuw.cn (easylistchina.txt: 10175) +.cb.baidu.com/ecom\? + +#ab2p-unblock-request-R230 +{-block \ + +client-header-tagger{ab2p-unblock-request-R230} \ +} +# @@/adpic/*$domain=czsrc.com|nieyou.com (easylistchina.txt: 9993) +/(.*/)?adpic/.* + +#ab2p-unblock-request-R231 +{-block \ + +client-header-tagger{ab2p-unblock-request-R231} \ +} +# @@||mediav.com^$domain=dev.360.cn (easylistchina.txt: 10293) +.mediav.com + +#ab2p-unblock-request-R232 +{-block \ + +client-header-tagger{ab2p-unblock-request-R232} \ +} +# @@/advs/*$domain=dianxinos.com|gotobuy.com.tw|haseemobile.net|lklm.com|re-vat.com|sj-touch.com (easylistchina.txt: 10009) +/(.*/)?advs/.* + +#ab2p-unblock-request-R233 +{-block \ + +client-header-tagger{ab2p-unblock-request-R233} \ +} +# @@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=discuss.com.hk|knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|tu265.com|wholehk.com (easylistchina.txt: 10314) +.pagead2.googlesyndication.com/pagead/show_ads\.js + +#ab2p-unblock-request-R234 +{-block \ + +client-header-tagger{ab2p-unblock-request-R234} \ +} +# @@/adframe.$domain=dnvod.eu (easylistchina.txt: 9987) +/(.*/)?adframe\. +adframe.*. + +#ab2p-unblock-request-R235 +{-block \ + +client-header-tagger{ab2p-unblock-request-R235} \ +} +# @@/upload/ads/*.jpg$domain=dnvod.eu|duonao.tv (easylistchina.txt: 10041) +/(.*/)?upload/ads/.*\.jpg + +#ab2p-unblock-request-R236 +{-block \ + +client-header-tagger{ab2p-unblock-request-R236} \ +} +# @@|http://*/AD/$domain=dou6.cc|ff7.cc|kk369.net|uuu123.net (easylistchina.txt: 10054) +/(.*/)?AD/ + +#ab2p-unblock-request-R237 +{-block \ + +client-header-tagger{ab2p-unblock-request-R237} \ +} +# @@||cbjs.baidu.com^$domain=excelhome.net (easylistchina.txt: 10186) +.cbjs.baidu.com + +#ab2p-unblock-request-R238 +{-block \ + +client-header-tagger{ab2p-unblock-request-R238} \ +} +# @@||cb.baidu.com/ecom?di=$domain=excelhome.net|fxpan.com|kuakao.com|xdf.cn (easylistchina.txt: 10176) +.cb.baidu.com/ecom\?di= + +#ab2p-unblock-request-R239 +{-block \ + +client-header-tagger{ab2p-unblock-request-R239} \ +} +# @@||ubmcmm.baidustatic.com^$domain=excelhome.net|xdf.cn (easylistchina.txt: 10387) +.ubmcmm.baidustatic.com + +#ab2p-unblock-request-R240 +{-block \ + +client-header-tagger{ab2p-unblock-request-R240} \ +} +# @@/img/ad/*$domain=exp.qq.com (easylistchina.txt: 10026) +/(.*/)?img/ad/.* + +#ab2p-unblock-request-R241 +{-block \ + +client-header-tagger{ab2p-unblock-request-R241} \ +} +# @@/advertisement.js$domain=fharr.com|gimhoy.com (easylistchina.txt: 10005) +/(.*/)?advertisement\.js +advertisement.js*. + +#ab2p-unblock-request-R243 +{-block \ + +client-header-tagger{ab2p-unblock-request-R243} \ +} +# @@||artxun.com^$domain=findart.com.cn (easylistchina.txt: 10157) +.artxun.com + +#ab2p-unblock-request-R245 +{-block \ + +client-header-tagger{ab2p-unblock-request-R245} \ +} +# @@||inte.sogou.com/ask?id=$domain=fmdisk.com (easylistchina.txt: 10273) +.inte.sogou.com/ask\?id= +# @@||images.sohu.com/cs/$domain=fmdisk.com (easylistchina.txt: 10267) +.images.sohu.com/cs/ + +#ab2p-unblock-request-R246 +{-block \ + +client-header-tagger{ab2p-unblock-request-R246} \ +} +# @@||itc.cn/public_photo/advert/$domain=focus.cn (easylistchina.txt: 10274) +.itc.cn/public_photo/advert/ + +#ab2p-unblock-request-R247 +{-block \ + +client-header-tagger{ab2p-unblock-request-R247} \ +} +# @@.com%2Fanalytics.js$domain=free.com.tw (easylistchina.txt: 10445) +/.*\.com%2Fanalytics\.js + +#ab2p-unblock-request-R248 +{-block \ + +client-header-tagger{ab2p-unblock-request-R248} \ +} +# @@/bag2?r[]=*&r[]=$domain=free.com.tw|macx.cn (easylistchina.txt: 10013) +/(.*/)?bag2\?r\[\]=.*&r\[\]= + +#ab2p-unblock-request-R249 +{-block \ + +client-header-tagger{ab2p-unblock-request-R249} \ +} +# @@||s.lianmeng.360.cn^$domain=fxpan.com (easylistchina.txt: 10344) +.s.lianmeng.360.cn +# @@||lianmeng.360.cn/searchthrow/*&w=960&$domain=fxpan.com (easylistchina.txt: 10290) +.lianmeng.360.cn/searchthrow/.*&w=960& + +#ab2p-unblock-request-R250 +{-block \ + +client-header-tagger{ab2p-unblock-request-R250} \ +} +# @@/Advertisement.$domain=gametower.com.tw (easylistchina.txt: 10004) +/(.*/)?Advertisement\. +Advertisement.*. + +#ab2p-unblock-request-R251 +{-block \ + +client-header-tagger{ab2p-unblock-request-R251} \ +} +# @@|http://*/??$domain=gome.com.cn (easylistchina.txt: 10052) +/(.*/)?\?\? + +#ab2p-unblock-request-R252 +{-block \ + +client-header-tagger{ab2p-unblock-request-R252} \ +} +# @@||cache.adm.cnzz.net^$domain=gx.91s.org|xoyo.com (easylistchina.txt: 10174) +.cache.adm.cnzz.net + +#ab2p-unblock-request-R253 +{-block \ + +client-header-tagger{ab2p-unblock-request-R253} \ +} +# @@/flash/ad/*$domain=haitao.com (easylistchina.txt: 10019) +/(.*/)?flash/ad/.* + +#ab2p-unblock-request-R254 +{-block \ + +client-header-tagger{ab2p-unblock-request-R254} \ +} +# @@.com/ad/$domain=hanjuwang.com|kuakao.com|studioclassroom.com (easylistchina.txt: 9972) +/.*\.com/ad/ +.*.com/ad/ + +#ab2p-unblock-request-R255 +{-block \ + +client-header-tagger{ab2p-unblock-request-R255} \ +} +# @@||scorecardresearch.com/beacon.js$domain=hktvmall.com (easylistchina.txt: 10470) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-request-R256 +{-block \ + +client-header-tagger{ab2p-unblock-request-R256} \ +} +# @@/advertising/*$domain=houdask.com (easylistchina.txt: 10007) +/(.*/)?advertising/.* + +#ab2p-unblock-request-R257 +{-block \ + +client-header-tagger{ab2p-unblock-request-R257} \ +} +# @@?adType=$domain=huazhu.com|taotaosou.com (easylistchina.txt: 10046) +/.*\?adType= + +#ab2p-unblock-request-R258 +{-block \ + +client-header-tagger{ab2p-unblock-request-R258} \ +} +# @@/guanggao/*$domain=icbc.com.cn|igame.qq.com|tuan.duba.com (easylistchina.txt: 10021) +/(.*/)?guanggao/.* + +#ab2p-unblock-request-R259 +{-block \ + +client-header-tagger{ab2p-unblock-request-R259} \ +} +# @@||a.alimama.cn/tkapi$domain=ieeee.com (easylistchina.txt: 10108) +.a.alimama.cn/tkapi + +#ab2p-unblock-request-R260 +{-block \ + +client-header-tagger{ab2p-unblock-request-R260} \ +} +# @@/Public/ad/*$domain=ihold.cc (easylistchina.txt: 10035) +/(.*/)?Public/ad/.* + +#ab2p-unblock-request-R261 +{-block \ + +client-header-tagger{ab2p-unblock-request-R261} \ +} +# @@||hm.baidu.com^$domain=ihome99.com (easylistchina.txt: 10464) +.hm.baidu.com + +#ab2p-unblock-request-R262 +{-block \ + +client-header-tagger{ab2p-unblock-request-R262} \ +} +# @@/ADmediaJS/panda0305_1972_11454_12120_$domain=ilowkey.net (easylistchina.txt: 9992) +/(.*/)?ADmediaJS/panda0305_1972_11454_12120_ + +#ab2p-unblock-request-R263 +{-block \ + +client-header-tagger{ab2p-unblock-request-R263} \ +} +# @@/advertisement/*$domain=ininin.com|muyingzhijia.com (easylistchina.txt: 10006) +/(.*/)?advertisement/.* + +#ab2p-unblock-request-R265 +{-block \ + +client-header-tagger{ab2p-unblock-request-R265} \ +} +# @@||ad.3.cn/flags/mgets?$domain=jd.com (easylistchina.txt: 10114) +.ad.3.cn/flags/mgets\? +# @@||360buyimg.com/ads/$domain=jd.com (easylistchina.txt: 10083) +.360buyimg.com/ads/ +# @@||360buyimg.com/ad/$domain=jd.com (easylistchina.txt: 10082) +.360buyimg.com/ad/ +# @@&ad_width=810&$domain=jd.com (easylistchina.txt: 9966) +/.*&ad_width=810& +# @@&ad_width=590&$domain=jd.com (easylistchina.txt: 9965) +/.*&ad_width=590& + +#ab2p-unblock-request-R267 +{-block \ + +client-header-tagger{ab2p-unblock-request-R267} \ +} +# @@||allyes.com.cn/player/AllyesAdPlayerV1.swf?$domain=jstv.com (easylistchina.txt: 10151) +.allyes.com.cn/player/AllyesAdPlayerV1\.swf\? + +#ab2p-unblock-request-R268 +{-block \ + +client-header-tagger{ab2p-unblock-request-R268} \ +} +# @@||js.adm.cnzz.net^$domain=keenfine.com|xoyo.com (easylistchina.txt: 10282) +.js.adm.cnzz.net + +#ab2p-unblock-request-R269 +{-block \ + +client-header-tagger{ab2p-unblock-request-R269} \ +} +# @@||google-analytics.com/analytics.js$domain=komica.org|support.amd.com (easylistchina.txt: 10460) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R270 +{-block \ + +client-header-tagger{ab2p-unblock-request-R270} \ +} +# @@||kbcool.com/advpic/$domain=ks.js.cn (easylistchina.txt: 10283) +.kbcool.com/advpic/ + +#ab2p-unblock-request-R271 +{-block \ + +client-header-tagger{ab2p-unblock-request-R271} \ +} +# @@/adimg/*$domain=laniqu.com|veryeast.cn (easylistchina.txt: 9990) +/(.*/)?adimg/.* + +#ab2p-unblock-request-R272 +{-block \ + +client-header-tagger{ab2p-unblock-request-R272} \ +} +# @@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lepan.cc|monnsutogatya.com|scholar.glgoo.org|zdaili.net (easylistchina.txt: 10313) +.pagead2.googlesyndication.com/pagead/js/adsbygoogle\.js + +#ab2p-unblock-request-R273 +{-block \ + +client-header-tagger{ab2p-unblock-request-R273} \ +} +# @@/adsame.$domain=liba.com|libaclub.com (easylistchina.txt: 9995) +/(.*/)?adsame\. +adsame.*. + +#ab2p-unblock-request-R274 +{-block \ + +client-header-tagger{ab2p-unblock-request-R274} \ +} +# @@||stockstar.com/ad/$domain=live.stockstar.com (easylistchina.txt: 10369) +.stockstar.com/ad/ + +#ab2p-unblock-request-R275 +{-block \ + +client-header-tagger{ab2p-unblock-request-R275} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=lol.qq.com (easylistchina.txt: 10469) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-request-R276 +{-block \ + +client-header-tagger{ab2p-unblock-request-R276} \ +} +# @@/adsbox.$domain=long7.qq.com (easylistchina.txt: 9996) +/(.*/)?adsbox\. +adsbox.*. + +#ab2p-unblock-request-R277 +{-block \ + +client-header-tagger{ab2p-unblock-request-R277} \ +} +# @@||csbew.com^$domain=longbl.com (easylistchina.txt: 10202) +.csbew.com + +#ab2p-unblock-request-R278 +{-block \ + +client-header-tagger{ab2p-unblock-request-R278} \ +} +# @@.com/adv/$domain=manhua.weibo.com|my.ctrip.com (easylistchina.txt: 9974) +/.*\.com/adv/ +.*.com/adv/ + +#ab2p-unblock-request-R279 +{-block \ + +client-header-tagger{ab2p-unblock-request-R279} \ +} +# @@|http://*/ad$domain=meiziweibo.com (easylistchina.txt: 10053) +/(.*/)?ad + +#ab2p-unblock-request-R280 +{-block \ + +client-header-tagger{ab2p-unblock-request-R280} \ +} +# @@/AdShow/*$domain=mndxy.org (easylistchina.txt: 9999) +/(.*/)?AdShow/.* + +#ab2p-unblock-request-R281 +{-block \ + +client-header-tagger{ab2p-unblock-request-R281} \ +} +# @@||ad.unimhk.com/show.php?$domain=mnighthk.net (easylistchina.txt: 10124) +.ad.unimhk.com/show\.php\? + +#ab2p-unblock-request-R282 +{-block \ + +client-header-tagger{ab2p-unblock-request-R282} \ +} +# @@||bdimg.com/advert/js/advert.js$domain=music.baidu.com (easylistchina.txt: 10164) +.bdimg.com/advert/js/advert\.js + +#ab2p-unblock-request-R283 +{-block \ + +client-header-tagger{ab2p-unblock-request-R283} \ +} +# @@=mywebloadt1&$domain=myweb.hinet.net (easylistchina.txt: 10045) +/.*=mywebloadt1& + +#ab2p-unblock-request-R284 +{-block \ + +client-header-tagger{ab2p-unblock-request-R284} \ +} +# @@/urchin.js$domain=on.cc (easylistchina.txt: 10449) +/(.*/)?urchin\.js +urchin.js*. + +#ab2p-unblock-request-R285 +{-block \ + +client-header-tagger{ab2p-unblock-request-R285} \ +} +# @@/ADImages/*$domain=p9.com.tw (easylistchina.txt: 9989) +/(.*/)?ADImages/.* + +#ab2p-unblock-request-R286 +{-block \ + +client-header-tagger{ab2p-unblock-request-R286} \ +} +# @@/img/ad_$domain=p9.com.tw|ruten.com.tw (easylistchina.txt: 10027) +/(.*/)?img/ad_ + +#ab2p-unblock-request-R287 +{-block \ + +client-header-tagger{ab2p-unblock-request-R287} \ +} +# @@/store_ad/*$domain=pcstore.com.tw (easylistchina.txt: 10039) +/(.*/)?store_ad/.* + +#ab2p-unblock-request-R288 +{-block \ + +client-header-tagger{ab2p-unblock-request-R288} \ +} +# @@/advert_$domain=pisen.com.cn|wb.qq.com (easylistchina.txt: 10001) +/(.*/)?advert_ + +#ab2p-unblock-request-R289 +{-block \ + +client-header-tagger{ab2p-unblock-request-R289} \ +} +# @@/adsense/*$domain=piseneasy.com|taobao.com (easylistchina.txt: 9998) +/(.*/)?adsense/.* + +#ab2p-unblock-request-R290 +{-block \ + +client-header-tagger{ab2p-unblock-request-R290} \ +} +# @@||cbjs.baidu.com/js/s.js$domain=play.yue365.com (easylistchina.txt: 10185) +.cbjs.baidu.com/js/s\.js + +#ab2p-unblock-request-R291 +{-block \ + +client-header-tagger{ab2p-unblock-request-R291} \ +} +# @@?bannerId=$domain=qbao.com (easylistchina.txt: 10047) +/.*\?bannerId= + +#ab2p-unblock-request-R292 +{-block \ + +client-header-tagger{ab2p-unblock-request-R292} \ +} +# @@||tajs.qq.com/stats?$domain=qq.com (easylistchina.txt: 10475) +.tajs.qq.com/stats\? + +#ab2p-unblock-request-R293 +{-block \ + +client-header-tagger{ab2p-unblock-request-R293} \ +} +# @@||ads.rakuya.com.tw^$domain=rakuya.com.tw (easylistchina.txt: 10145) +.ads.rakuya.com.tw + +#ab2p-unblock-request-R294 +{-block \ + +client-header-tagger{ab2p-unblock-request-R294} \ +} +# @@/pub/ad/*$domain=ruten.com.tw (easylistchina.txt: 10034) +/(.*/)?pub/ad/.* + +#ab2p-unblock-request-R295 +{-block \ + +client-header-tagger{ab2p-unblock-request-R295} \ +} +# @@/show_ads_impl.js$domain=serve.netsh.org (easylistchina.txt: 10038) +/(.*/)?show_ads_impl\.js +# @@/g.doubleclick.net.js?$domain=serve.netsh.org (easylistchina.txt: 10020) +/(.*/)?g\.doubleclick\.net\.js\? +# @@/adsbygoogle.$domain=serve.netsh.org (easylistchina.txt: 9997) +/(.*/)?adsbygoogle\. +adsbygoogle.*. +# @@/adlogger_tracker.php$domain=serve.netsh.org (easylistchina.txt: 9991) +/(.*/)?adlogger_tracker\.php + +#ab2p-unblock-request-R296 +{-block \ + +client-header-tagger{ab2p-unblock-request-R296} \ +} +# @@/advertise/*$domain=sfbuy.com|suning.com (easylistchina.txt: 10003) +/(.*/)?advertise/.* + +#ab2p-unblock-request-R297 +{-block \ + +client-header-tagger{ab2p-unblock-request-R297} \ +} +# @@||sina.com.cn/iplookup/iplookup.php?$domain=sina.com.cn (easylistchina.txt: 10472) +.sina.com.cn/iplookup/iplookup\.php\? + +#ab2p-unblock-request-R298 +{-block \ + +client-header-tagger{ab2p-unblock-request-R298} \ +} +# @@||gg.woniu.com^$domain=snail.com (easylistchina.txt: 10243) +.gg.woniu.com + +#ab2p-unblock-request-R299 +{-block \ + +client-header-tagger{ab2p-unblock-request-R299} \ +} +# @@||googletagmanager.com/gtm.js?$domain=support.amd.com (easylistchina.txt: 10462) +.googletagmanager.com/gtm\.js\? +# @@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com (easylistchina.txt: 10461) +.google-analytics.com/plugins/ua/linkid\.js + +#ab2p-unblock-request-R302 +{-block \ + +client-header-tagger{ab2p-unblock-request-R302} \ +} +# @@||alimama.com^$domain=tanx.com (easylistchina.txt: 10150) +.alimama.com +# @@/adx.$domain=tanx.com (easylistchina.txt: 10010) +/(.*/)?adx\. +adx.*. + +#ab2p-unblock-request-R303 +{-block \ + +client-header-tagger{ab2p-unblock-request-R303} \ +} +# @@||opehs.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10467) +.opehs.tanx.com/ex\? +# @@||ecpm.tanx.com/ex?$domain=taobao.com (easylistchina.txt: 10457) +.ecpm.tanx.com/ex\? + +#ab2p-unblock-request-R304 +{-block \ + +client-header-tagger{ab2p-unblock-request-R304} \ +} +# @@||tdx.com.cn/images/*ad$domain=tdx.com.cn (easylistchina.txt: 10376) +.tdx.com.cn/images/.*ad + +#ab2p-unblock-request-R305 +{-block \ + +client-header-tagger{ab2p-unblock-request-R305} \ +} +# @@/img_ad/*$domain=tkec.com.tw|yy960.com (easylistchina.txt: 10028) +/(.*/)?img_ad/.* + +#ab2p-unblock-request-R306 +{-block \ + +client-header-tagger{ab2p-unblock-request-R306} \ +} +# @@||partner.googleadservices.com/gpt/pubads_impl_$domain=tvb.com (easylistchina.txt: 10315) +.partner.googleadservices.com/gpt/pubads_impl_ +# @@||ads.$domain=tvb.com (easylistchina.txt: 10142) +.ads.*. + +#ab2p-unblock-request-R308 +{-block \ + +client-header-tagger{ab2p-unblock-request-R308} \ +} +# @@||tw.m.yimg.com/res/ads/$domain=tw.buy.yahoo.com (easylistchina.txt: 10385) +.tw.m.yimg.com/res/ads/ + +#ab2p-unblock-request-R309 +{-block \ + +client-header-tagger{ab2p-unblock-request-R309} \ +} +# @@||union.$domain=union.163.com (easylistchina.txt: 10390) +.union.*. + +#ab2p-unblock-request-R310 +{-block \ + +client-header-tagger{ab2p-unblock-request-R310} \ +} +# @@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn (easylistchina.txt: 10362) +.sinaimg.cn/unipro/pub/suda_m_v629\.js + +#ab2p-unblock-request-R311 +{-block \ + +client-header-tagger{ab2p-unblock-request-R311} \ +} +# @@||ads.myopen.vip.com^$domain=vip.com (easylistchina.txt: 10144) +.ads.myopen.vip.com + +#ab2p-unblock-request-R313 +{-block \ + +client-header-tagger{ab2p-unblock-request-R313} \ +} +# @@/AdImage/*$domain=wacom.tw (easylistchina.txt: 9988) +/(.*/)?AdImage/.* + +#ab2p-unblock-request-R314 +{-block \ + +client-header-tagger{ab2p-unblock-request-R314} \ +} +# @@||70e.com/js/2013_new.js$domain=wanweidao.com (easylistchina.txt: 10098) +.70e.com/js/2013_new\.js + +#ab2p-unblock-request-R315 +{-block \ + +client-header-tagger{ab2p-unblock-request-R315} \ +} +# @@/show_ad_$domain=wb.qq.com (easylistchina.txt: 10037) +/(.*/)?show_ad_ + +#ab2p-unblock-request-R316 +{-block \ + +client-header-tagger{ab2p-unblock-request-R316} \ +} +# @@/LoadAds.$domain=webcars.com.cn (easylistchina.txt: 10030) +/(.*/)?LoadAds\. +LoadAds.*. + +#ab2p-unblock-request-R317 +{-block \ + +client-header-tagger{ab2p-unblock-request-R317} \ +} +# @@||rm.sina.com.cn/minisite/$domain=weibo.com (easylistchina.txt: 10342) +.rm.sina.com.cn/minisite/ + +#ab2p-unblock-request-R318 +{-block \ + +client-header-tagger{ab2p-unblock-request-R318} \ +} +# @@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com (easylistchina.txt: 10473) +.sinajs.cn/open/analytics/js/suda\.js + +#ab2p-unblock-request-R319 +{-block \ + +client-header-tagger{ab2p-unblock-request-R319} \ +} +# @@||adsense.woso.cn^$domain=woso.cn (easylistchina.txt: 10146) +.adsense.woso.cn + +#ab2p-unblock-request-R320 +{-block \ + +client-header-tagger{ab2p-unblock-request-R320} \ +} +# @@||ifengimg.com/ifeng/sources/region_$domain=www.ifeng.com (easylistchina.txt: 10266) +.ifengimg.com/ifeng/sources/region_ +# @@||ifengimg.com/ifeng/sources/inice_$domain=www.ifeng.com (easylistchina.txt: 10265) +.ifengimg.com/ifeng/sources/inice_ + +#ab2p-unblock-request-R321 +{-block \ + +client-header-tagger{ab2p-unblock-request-R321} \ +} +# @@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com (easylistchina.txt: 10471) +.simba.taobao.com/\?name=tcmad& + +#ab2p-unblock-request-R322 +{-block \ + +client-header-tagger{ab2p-unblock-request-R322} \ +} +# @@&ad_type=$domain=x.jd.com (easylistchina.txt: 9964) +/.*&ad_type= + +#ab2p-unblock-request-R323 +{-block \ + +client-header-tagger{ab2p-unblock-request-R323} \ +} +# @@/analytics.php?$domain=xcar.com.cn (easylistchina.txt: 10446) +/(.*/)?analytics\.php\? + +#ab2p-unblock-request-R324 +{-block \ + +client-header-tagger{ab2p-unblock-request-R324} \ +} +# @@/addata.$domain=xdf.cn (easylistchina.txt: 9985) +/(.*/)?addata\. +addata.*. + +#ab2p-unblock-request-R325 +{-block \ + +client-header-tagger{ab2p-unblock-request-R325} \ +} +# @@/adblock.js$domain=xingk.cc (easylistchina.txt: 9984) +/(.*/)?adblock\.js +adblock.js*. + +#ab2p-unblock-request-R326 +{-block \ + +client-header-tagger{ab2p-unblock-request-R326} \ +} +# @@/PIC/AD/*$domain=ybjk.com (easylistchina.txt: 10032) +/(.*/)?PIC/AD/.* + +#ab2p-unblock-request-R327 +{-block \ + +client-header-tagger{ab2p-unblock-request-R327} \ +} +# @@||a.ads.cn.miaozhen.com^$domain=youku.com (easylistchina.txt: 10107) +.a.ads.cn.miaozhen.com + +#ab2p-unblock-request-R328 +{-block \ + +client-header-tagger{ab2p-unblock-request-R328} \ +} +# @@/webThunderDetect.$domain=ypan.cc (easylistchina.txt: 10043) +/(.*/)?webThunderDetect\. +webThunderDetect.*. + +#ab2p-unblock-request-Xx +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx} \ +} +TAG:^ab2p-unblock-request-Xx$ + +#ab2p-unblock-request-Xx-when-R284 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R284} \ +} +# @@/hitCount_$xmlhttprequest,domain=on.cc (easylistchina.txt: 10448) +/(.*/)?hitCount_ + +#ab2p-unblock-request-Xx-when-R307 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R307} \ +} +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=tw.autos.yahoo.com|tw.buy.yahoo.com (easylistchina.txt: 10459) +.geo.query.yahoo.com + +#ab2p-unblock-request-nR-Rn187 +{-block \ + +client-header-tagger{ab2p-unblock-request-Rn187} \ + +client-header-tagger{ab2p-unblock-request-nR} \ +} +# @@||yimg.com/zz/combo?*&*.css$domain=~search.yahoo.com (easylistchina.txt: 10420) +.yimg.com/zz/combo\?.*&.*\.css + +#ab2p-unblock-request-nR-Rnt +{-block \ + +client-header-tagger{ab2p-unblock-request-Rnt} \ + +client-header-tagger{ab2p-unblock-request-nR} \ +} +# @@||yiqifa.com/ad_images/$~third-party (easylistchina.txt: 10425) +.yiqifa.com/ad_images/ + +#ab2p-unblock-xframe +{-server-header-filter{ab2p-xframe-filter} \ +} +TAG:^ab2p-unblock-xframe$ +# @@||letv.com*/tuiguang/$subdocument (easylistchina.txt: 10288) +.letv.com*./(.*/)?tuiguang/ +# @@/page/adv.html?advId=$subdocument (easylistchina.txt: 10031) +/(.*/)?page/adv\.html\?advId= + +#ab2p-unblock-xframe-R244 +{+client-header-tagger{ab2p-unblock-xframe-R244} \ +} +# @@||e701.net^*=60&$subdocument,domain=flv.tv (easylistchina.txt: 10220) +.e701.net/.*=60& +# @@=300&$subdocument,domain=flv.tv (easylistchina.txt: 10044) +/.*=300& + +#ab2p-unblock-xframe-R329 +{+client-header-tagger{ab2p-unblock-xframe-R329} \ +} +# @@||ad.doubleclick.net/ddm/adi/*.ZALORA.COM.HK$document,subdocument,domain=zalora.com.hk (easylistchina.txt: 10118) +.ad.doubleclick.net/ddm/adi/.*\.ZALORA\.COM\.HK diff --git a/1_9.r18_plugin/ad_plug/rule1/ab2p.filter b/1_9.r18_plugin/ad_plug/rule1/ab2p.filter new file mode 100644 index 0000000..3e6c207 --- /dev/null +++ b/1_9.r18_plugin/ad_plug/rule1/ab2p.filter @@ -0,0 +1,3120 @@ +#AbBlock generated filters -- don't edit -- +#----- source ----- +#Title: EasyList China +#Url: https://easylist-downloads.adblockplus.org/easylistchina.txt +#Last modified: 29 Jan 2016 15:51 UTC +#Expires: 96 hours +#Version: 201601291533 +#License: https://easylist-downloads.adblockplus.org/COPYING +#Homepage: http://abpchina.org/forum/ +#------- end ------ + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R1 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tb001\.xyz|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R10 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R100 +s@^referer(?=:[^\n]*[./](?:iyejie\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R101 +s@^referer(?=:[^\n]*[./](?:jpfans\.com|jpseek\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R102 +s@^referer(?=:[^\n]*[./](?:keywin\.org)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R103 +s@^referer(?=:[^\n]*[./](?:kxddd\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|ttft\.in|xhcbb\.com|yzhlive\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R104 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|sx566\.com|vvpan\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R105 +s@^referer(?=:[^\n]*[./](?:life\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R106 +s@^referer(?=:[^\n]*[./](?:lightnovel\.cn|xdjishu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R107 +s@^referer(?=:[^\n]*[./](?:live\.jstv\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R108 +s@^referer(?=:[^\n]*[./](?:live8bo\.com|live8bo\.net|live8bo1\.com|zqzq\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R109 +s@^referer(?=:[^\n]*[./](?:ltwbook\.com|ltxsw\.com|ltxszw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R11 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R110 +s@^referer(?=:[^\n]*[./](?:lxty66\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R111 +s@^referer(?=:[^\n]*[./](?:mail\.pchome\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R112 +s@^referer(?=:[^\n]*[./](?:mitbbs\.ca|mitbbs\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R113 +s@^referer(?=:[^\n]*[./](?:mmload\.info)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R114 +s@^referer(?=:[^\n]*[./](?:my\.alipay\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R115 +s@^referer(?=:[^\n]*[./](?:myqcloud\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R116 +s@^referer(?=:[^\n]*[./](?:news\.china\.com\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R117 +s@^referer(?=:[^\n]*[./](?:news\.cn|xinhuanet\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R118 +s@^referer(?=:[^\n]*[./](?:ocucn\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R119 +s@^referer(?=:[^\n]*[./](?:pbzy\.com|shanzhaiben\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R12 +s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84fn\.com|99ee1\.com|99re5\.com|99rr6\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|caoliuzx\.com|cililian\.me|fdzone\.org|izzs\.cc|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|sbme\.me|taohuazu\.tw|thzhd\.net|ttdyy\.tv|xinqixi\.com|xxxbt\.com|youb444\.com|zhiboche\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R120 +s@^referer(?=:[^\n]*[./](?:pos\.baidu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R121 +s@^referer(?=:[^\n]*[./](?:qiannao\.com|ref\.so)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R122 +s@^referer(?=:[^\n]*[./](?:qire213\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R123 +s@^referer(?=:[^\n]*[./](?:qzntv\.com|qzwb\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R124 +s@^referer(?=:[^\n]*[./](?:ref\.so)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R125 +s@^referer(?=:[^\n]*[./](?:scol\.com\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R126 +s@^referer(?=:[^\n]*[./](?:sex169\.info|sex169\.org)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R127 +s@^referer(?=:[^\n]*[./](?:share\.popgo\.org)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R128 +s@^referer(?=:[^\n]*[./](?:shuajizhijia\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R129 +s@^referer(?=:[^\n]*[./](?:skyerblog\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R13 +s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R130 +s@^referer(?=:[^\n]*[./](?:strtv\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R131 +s@^referer(?=:[^\n]*[./](?:sun0769\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R132 +s@^referer(?=:[^\n]*[./](?:tiexue\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R133 +s@^referer(?=:[^\n]*[./](?:ttmeiju\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R134 +s@^referer(?=:[^\n]*[./](?:txzqw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R135 +s@^referer(?=:[^\n]*[./](?:uisdc\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R136 +s@^referer(?=:[^\n]*[./](?:uopera\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R137 +s@^referer(?=:[^\n]*[./](?:v\.ku6\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R138 +s@^referer(?=:[^\n]*[./](?:v2ex\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R139 +s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com|xm9x\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R14 +s@^referer(?=:[^\n]*[./](?:189so\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R140 +s@^referer(?=:[^\n]*[./](?:wgun\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R141 +s@^referer(?=:[^\n]*[./](?:wishct\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R142 +s@^referer(?=:[^\n]*[./](?:wowrk\.com|x-berry\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R143 +s@^referer(?=:[^\n]*[./](?:www\.52hardware\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R144 +s@^referer(?=:[^\n]*[./](?:www\.gamer\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R145 +s@^referer(?=:[^\n]*[./](?:www\.nmgnews\.com\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R146 +s@^referer(?=:[^\n]*[./](?:www\.tiexue\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R147 +s@^referer(?=:[^\n]*[./](?:www\.tsdm\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R148 +s@^referer(?=:[^\n]*[./](?:yinyuetai\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R149 +s@^referer(?=:[^\n]*[./](?:youxi\.baidu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R15 +s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R150 +s@^referer(?=:[^\n]*[./](?:yuyu780906\.blogspot\.com|yuyu780906\.blogspot\.hk|yuyu780906\.blogspot\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R151 +s@^referer(?=:[^\n]*[./](?:zasv\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R152 +s@^referer(?=:[^\n]*[./](?:zhongzi\.in)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R16 +s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R17 +s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R18 +s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R19 +s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R2 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tb001\.xyz|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R20 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R21 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|pptiyu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R22 +s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R23 +s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R24 +s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R25 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R26 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R27 +s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R28 +s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|downhhh\.com|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R29 +s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R3 +s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R30 +s@^referer(?=:[^\n]*[./](?:5ydj\.com|99ee1\.com|99re5\.com|99rr6\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R31 +s@^referer(?=:[^\n]*[./](?:6668\.se)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R32 +s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R33 +s@^referer(?=:[^\n]*[./](?:94as\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R34 +s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R35 +s@^referer(?=:[^\n]*[./](?:99ee1\.com|99re5\.com|99rr6\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R36 +s@^referer(?=:[^\n]*[./](?:99files\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R37 +s@^referer(?=:[^\n]*[./](?:aadaili\.com|ppdaili\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R38 +s@^referer(?=:[^\n]*[./](?:acg18\.me)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R39 +s@^referer(?=:[^\n]*[./](?:ady8\.info|aikuhu\.com|cctv5bo\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R4 +s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R40 +s@^referer(?=:[^\n]*[./](?:allanalpass\.com|amy\.gs|any\.gs|cash4files\.com|deb\.gs|dyo\.gs|eafyfsuh\.net|filesonthe\.net|galleries\.bz|goneviral\.com|linkbucks\.com|megaline\.co|miniurls\.co|picbucks\.com|qqc\.co|rqq\.co|sasontnwc\.net|seriousdeals\.net|theseblogs\.com|tinylinks\.co|tnabucks\.com|tubeviral\.com|ultrafiles\.net|urlbeat\.net|whackyvidz\.com|yyv\.co|zff\.co)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R41 +s@^referer(?=:[^\n]*[./](?:am5200\.com|baby360\.ru|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R42 +s@^referer(?=:[^\n]*[./](?:am5200\.com|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R43 +s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R44 +s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R45 +s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R46 +s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R47 +s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R48 +s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R49 +s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R5 +s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R50 +s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R51 +s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R52 +s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R53 +s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R54 +s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R55 +s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R56 +s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R57 +s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R58 +s@^referer(?=:[^\n]*[./](?:ccav1\.com|ypan\.cc)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R59 +s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R6 +s@^referer(?=:[^\n]*[./](?:123du\.cc|bokon\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R61 +s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R62 +s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R63 +s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R64 +s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R65 +s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R66 +s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R67 +s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R68 +s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R69 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R7 +s@^referer(?=:[^\n]*[./](?:12580sky\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R70 +s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R71 +s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R72 +s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R73 +s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R74 +s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R75 +s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R76 +s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R77 +s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R78 +s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R79 +s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R8 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R80 +s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R81 +s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R82 +s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R83 +s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R84 +s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R85 +s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R86 +s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R87 +s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R88 +s@^referer(?=:[^\n]*[./](?:hdscg\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R89 +s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R9 +s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R90 +s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R91 +s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R92 +s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R93 +s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R94 +s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R95 +s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R96 +s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R97 +s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R98 +s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R99 +s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn153 +s@^referer(?!:[^\n]*[./](?:11185\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn154 +s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn155 +s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com|tmall\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn156 +s@^referer(?!:[^\n]*[./](?:alimama\.com|alitrip\.com|tanx\.com|tmall\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn157 +s@^referer(?!:[^\n]*[./](?:alimama\.com|budou\.com|foctop\.com|hetongal\.ac\.cn|ith8\.com|meidebi\.com|qinqintejia\.com|tanx\.com|taobao\.com|taobao\.com\.cn|youhuiyouhui\.com\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn158 +s@^referer(?!:[^\n]*[./](?:dmzj\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn159 +s@^referer(?!:[^\n]*[./](?:duilian\.msra\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn160 +s@^referer(?!:[^\n]*[./](?:eoffcn\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn161 +s@^referer(?!:[^\n]*[./](?:fwxgx\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn162 +s@^referer(?!:[^\n]*[./](?:guagua\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn163 +s@^referer(?!:[^\n]*[./](?:lady\.weibo\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn164 +s@^referer(?!:[^\n]*[./](?:lianmeng\.360\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn165 +s@^referer(?!:[^\n]*[./](?:m\.gamer\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn166 +s@^referer(?!:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn167 +s@^referer(?!:[^\n]*[./](?:sac\.net\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn168 +s@^referer(?!:[^\n]*[./](?:savebar\.com\.tw)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn169 +s@^referer(?!:[^\n]*[./](?:sogou\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn170 +s@^referer(?!:[^\n]*[./](?:tech\.ifeng\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn171 +s@^referer(?!:[^\n]*[./](?:tw\.yahoo\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn172 +s@^referer(?!:[^\n]*[./](?:www\.sina\.com\.cn)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn173 +s@^referer(?!:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn174 +s@^referer(?!:[^\n]*[./](?:ychr\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn175 +s@^referer(?!:[^\n]*[./](?:ylmf\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R1 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tb001\.xyz|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R10 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R100 +s@^referer(?=:[^\n]*[./](?:iyejie\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R101 +s@^referer(?=:[^\n]*[./](?:jpfans\.com|jpseek\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R102 +s@^referer(?=:[^\n]*[./](?:keywin\.org)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R103 +s@^referer(?=:[^\n]*[./](?:kxddd\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|ttft\.in|xhcbb\.com|yzhlive\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R104 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|sx566\.com|vvpan\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R105 +s@^referer(?=:[^\n]*[./](?:life\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R106 +s@^referer(?=:[^\n]*[./](?:lightnovel\.cn|xdjishu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R107 +s@^referer(?=:[^\n]*[./](?:live\.jstv\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R108 +s@^referer(?=:[^\n]*[./](?:live8bo\.com|live8bo\.net|live8bo1\.com|zqzq\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R109 +s@^referer(?=:[^\n]*[./](?:ltwbook\.com|ltxsw\.com|ltxszw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R11 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R110 +s@^referer(?=:[^\n]*[./](?:lxty66\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R111 +s@^referer(?=:[^\n]*[./](?:mail\.pchome\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R112 +s@^referer(?=:[^\n]*[./](?:mitbbs\.ca|mitbbs\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R113 +s@^referer(?=:[^\n]*[./](?:mmload\.info)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R114 +s@^referer(?=:[^\n]*[./](?:my\.alipay\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R115 +s@^referer(?=:[^\n]*[./](?:myqcloud\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R116 +s@^referer(?=:[^\n]*[./](?:news\.china\.com\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R117 +s@^referer(?=:[^\n]*[./](?:news\.cn|xinhuanet\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R118 +s@^referer(?=:[^\n]*[./](?:ocucn\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R119 +s@^referer(?=:[^\n]*[./](?:pbzy\.com|shanzhaiben\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R12 +s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84fn\.com|99ee1\.com|99re5\.com|99rr6\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|caoliuzx\.com|cililian\.me|fdzone\.org|izzs\.cc|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|sbme\.me|taohuazu\.tw|thzhd\.net|ttdyy\.tv|xinqixi\.com|xxxbt\.com|youb444\.com|zhiboche\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R120 +s@^referer(?=:[^\n]*[./](?:pos\.baidu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R121 +s@^referer(?=:[^\n]*[./](?:qiannao\.com|ref\.so)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R122 +s@^referer(?=:[^\n]*[./](?:qire213\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R123 +s@^referer(?=:[^\n]*[./](?:qzntv\.com|qzwb\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R124 +s@^referer(?=:[^\n]*[./](?:ref\.so)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R125 +s@^referer(?=:[^\n]*[./](?:scol\.com\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R126 +s@^referer(?=:[^\n]*[./](?:sex169\.info|sex169\.org)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R127 +s@^referer(?=:[^\n]*[./](?:share\.popgo\.org)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R128 +s@^referer(?=:[^\n]*[./](?:shuajizhijia\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R129 +s@^referer(?=:[^\n]*[./](?:skyerblog\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R13 +s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R130 +s@^referer(?=:[^\n]*[./](?:strtv\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R131 +s@^referer(?=:[^\n]*[./](?:sun0769\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R132 +s@^referer(?=:[^\n]*[./](?:tiexue\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R133 +s@^referer(?=:[^\n]*[./](?:ttmeiju\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R134 +s@^referer(?=:[^\n]*[./](?:txzqw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R135 +s@^referer(?=:[^\n]*[./](?:uisdc\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R136 +s@^referer(?=:[^\n]*[./](?:uopera\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R137 +s@^referer(?=:[^\n]*[./](?:v\.ku6\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R138 +s@^referer(?=:[^\n]*[./](?:v2ex\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R139 +s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com|xm9x\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R14 +s@^referer(?=:[^\n]*[./](?:189so\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R140 +s@^referer(?=:[^\n]*[./](?:wgun\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R141 +s@^referer(?=:[^\n]*[./](?:wishct\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R142 +s@^referer(?=:[^\n]*[./](?:wowrk\.com|x-berry\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R143 +s@^referer(?=:[^\n]*[./](?:www\.52hardware\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R144 +s@^referer(?=:[^\n]*[./](?:www\.gamer\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R145 +s@^referer(?=:[^\n]*[./](?:www\.nmgnews\.com\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R146 +s@^referer(?=:[^\n]*[./](?:www\.tiexue\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R147 +s@^referer(?=:[^\n]*[./](?:www\.tsdm\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R148 +s@^referer(?=:[^\n]*[./](?:yinyuetai\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R149 +s@^referer(?=:[^\n]*[./](?:youxi\.baidu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R15 +s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R150 +s@^referer(?=:[^\n]*[./](?:yuyu780906\.blogspot\.com|yuyu780906\.blogspot\.hk|yuyu780906\.blogspot\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R151 +s@^referer(?=:[^\n]*[./](?:zasv\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R152 +s@^referer(?=:[^\n]*[./](?:zhongzi\.in)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R16 +s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R17 +s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R18 +s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R19 +s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R2 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tb001\.xyz|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R20 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R21 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|pptiyu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R22 +s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R23 +s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R24 +s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R25 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R26 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R27 +s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R28 +s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|downhhh\.com|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R29 +s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R3 +s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R30 +s@^referer(?=:[^\n]*[./](?:5ydj\.com|99ee1\.com|99re5\.com|99rr6\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R31 +s@^referer(?=:[^\n]*[./](?:6668\.se)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R32 +s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R33 +s@^referer(?=:[^\n]*[./](?:94as\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R34 +s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R35 +s@^referer(?=:[^\n]*[./](?:99ee1\.com|99re5\.com|99rr6\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R36 +s@^referer(?=:[^\n]*[./](?:99files\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R37 +s@^referer(?=:[^\n]*[./](?:aadaili\.com|ppdaili\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R38 +s@^referer(?=:[^\n]*[./](?:acg18\.me)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R39 +s@^referer(?=:[^\n]*[./](?:ady8\.info|aikuhu\.com|cctv5bo\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R4 +s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R40 +s@^referer(?=:[^\n]*[./](?:allanalpass\.com|amy\.gs|any\.gs|cash4files\.com|deb\.gs|dyo\.gs|eafyfsuh\.net|filesonthe\.net|galleries\.bz|goneviral\.com|linkbucks\.com|megaline\.co|miniurls\.co|picbucks\.com|qqc\.co|rqq\.co|sasontnwc\.net|seriousdeals\.net|theseblogs\.com|tinylinks\.co|tnabucks\.com|tubeviral\.com|ultrafiles\.net|urlbeat\.net|whackyvidz\.com|yyv\.co|zff\.co)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R41 +s@^referer(?=:[^\n]*[./](?:am5200\.com|baby360\.ru|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R42 +s@^referer(?=:[^\n]*[./](?:am5200\.com|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R43 +s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R44 +s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R45 +s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R46 +s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R47 +s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R48 +s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R49 +s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R5 +s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R50 +s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R51 +s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R52 +s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R53 +s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R54 +s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R55 +s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R56 +s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R57 +s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R58 +s@^referer(?=:[^\n]*[./](?:ccav1\.com|ypan\.cc)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R59 +s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R6 +s@^referer(?=:[^\n]*[./](?:123du\.cc|bokon\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R61 +s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R62 +s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R63 +s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R64 +s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R65 +s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R66 +s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R67 +s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R68 +s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R69 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R7 +s@^referer(?=:[^\n]*[./](?:12580sky\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R70 +s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R71 +s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R72 +s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R73 +s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R74 +s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R75 +s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R76 +s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R77 +s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R78 +s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R79 +s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R8 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R80 +s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R81 +s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R82 +s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R83 +s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R84 +s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R85 +s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R86 +s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R87 +s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R88 +s@^referer(?=:[^\n]*[./](?:hdscg\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R89 +s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R9 +s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R90 +s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R91 +s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R92 +s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R93 +s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R94 +s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R95 +s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R96 +s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R97 +s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R98 +s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R99 +s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn153 +s@^referer(?!:[^\n]*[./](?:11185\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn154 +s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn155 +s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com|tmall\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn156 +s@^referer(?!:[^\n]*[./](?:alimama\.com|alitrip\.com|tanx\.com|tmall\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn157 +s@^referer(?!:[^\n]*[./](?:alimama\.com|budou\.com|foctop\.com|hetongal\.ac\.cn|ith8\.com|meidebi\.com|qinqintejia\.com|tanx\.com|taobao\.com|taobao\.com\.cn|youhuiyouhui\.com\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn158 +s@^referer(?!:[^\n]*[./](?:dmzj\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn159 +s@^referer(?!:[^\n]*[./](?:duilian\.msra\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn160 +s@^referer(?!:[^\n]*[./](?:eoffcn\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn161 +s@^referer(?!:[^\n]*[./](?:fwxgx\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn162 +s@^referer(?!:[^\n]*[./](?:guagua\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn163 +s@^referer(?!:[^\n]*[./](?:lady\.weibo\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn164 +s@^referer(?!:[^\n]*[./](?:lianmeng\.360\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn165 +s@^referer(?!:[^\n]*[./](?:m\.gamer\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn166 +s@^referer(?!:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn167 +s@^referer(?!:[^\n]*[./](?:sac\.net\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn168 +s@^referer(?!:[^\n]*[./](?:savebar\.com\.tw)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn169 +s@^referer(?!:[^\n]*[./](?:sogou\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn170 +s@^referer(?!:[^\n]*[./](?:tech\.ifeng\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn171 +s@^referer(?!:[^\n]*[./](?:tw\.yahoo\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn172 +s@^referer(?!:[^\n]*[./](?:www\.sina\.com\.cn)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn173 +s@^referer(?!:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn174 +s@^referer(?!:[^\n]*[./](?:ychr\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn175 +s@^referer(?!:[^\n]*[./](?:ylmf\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaisv +s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aajosv +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aajsv +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaosv +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R129 +s@^referer(?=:[^\n]*[./](?:skyerblog\.com)):.*@ab2p-block-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R137 +s@^referer(?=:[^\n]*[./](?:v\.ku6\.com)):.*@ab2p-block-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R51 +s@^referer(?=:[^\n]*[./](?:bilibili\.com|bilibili\.tv|kankanews\.com)):.*@ab2p-block-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R145 +s@^referer(?=:[^\n]*[./](?:www\.nmgnews\.com\.cn)):.*@ab2p-block-request-Aasv-Casv@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv-Casv-when-R50 +s@^referer(?=:[^\n]*[./](?:bilibili\.com)):.*@ab2p-block-request-Aasv-Casv@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai +s@^accept(?=:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R114 +s@^referer(?=:[^\n]*[./](?:my\.alipay\.com)):.*@ab2p-block-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R134 +s@^referer(?=:[^\n]*[./](?:txzqw\.com)):.*@ab2p-block-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R138 +s@^referer(?=:[^\n]*[./](?:v2ex\.com)):.*@ab2p-block-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R176t +s@^referer:.*@$&\t$host@Di +s@^referer(?=:[^\n]*[./](?:99files\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Ai-Ci@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R62 +s@^referer(?=:[^\n]*[./](?:cnblogs\.com)):.*@ab2p-block-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rn165 +s@^referer(?!:[^\n]*[./](?:m\.gamer\.com\.tw)):.*@ab2p-block-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rn172 +s@^referer(?!:[^\n]*[./](?:www\.sina\.com\.cn)):.*@ab2p-block-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Ai-Ci@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aij +s@^accept(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj +s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R14 +s@^referer(?=:[^\n]*[./](?:189so\.cn)):.*@ab2p-block-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R177t +s@^referer:.*@$&\t$host@Di +s@^referer(?=:[^\n]*[./](?:ccav1\.com|ypan\.cc))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R34 +s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R78 +s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R90 +s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anaov +s@^accept(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm +s@^accept(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn178t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com|tmall\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn179t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:1688\.com|alimama\.com|taobao\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn180t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:alimama\.com|alitrip\.com|tanx\.com|tmall\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn181t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:alimama\.com|budou\.com|foctop\.com|hetongal\.ac\.cn|ith8\.com|meidebi\.com|qinqintejia\.com|tanx\.com|taobao\.com|taobao\.com\.cn|youhuiyouhui\.com\.cn))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn182t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:eoffcn\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn183t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:guagua\.cn))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn184t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:savebar\.com\.tw))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn185t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:ylmf\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ani +s@^accept(?!:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Caisv +s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cajosv +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cajsv +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Caosv +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Caov +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Casv +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Ci +s@^content-type(?=:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cij +s@^content-type(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cj +s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnaov +s@^content-type(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnhm +s@^content-type(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cni +s@^content-type(?!:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R1 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|67\.228\.203\.174|74bao\.com|75ri\.com|83bao\.com|96ri\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|iu91\.co|lang\.pe|lang00\.com|lang51\.com|maichun5\.info|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|myhhg\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|sejie\.com|sejie3\.us|tb001\.xyz|tube1024\.com|tubewan\.com|ukhuaren\.co|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com|yh1\.info|yh10\.info)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R10 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R100 +s@^referer(?=:[^\n]*[./](?:iyejie\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R101 +s@^referer(?=:[^\n]*[./](?:jpfans\.com|jpseek\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R102 +s@^referer(?=:[^\n]*[./](?:keywin\.org)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R103 +s@^referer(?=:[^\n]*[./](?:kxddd\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|ttft\.in|xhcbb\.com|yzhlive\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R104 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|sx566\.com|vvpan\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R105 +s@^referer(?=:[^\n]*[./](?:life\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R106 +s@^referer(?=:[^\n]*[./](?:lightnovel\.cn|xdjishu\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R107 +s@^referer(?=:[^\n]*[./](?:live\.jstv\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R108 +s@^referer(?=:[^\n]*[./](?:live8bo\.com|live8bo\.net|live8bo1\.com|zqzq\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R109 +s@^referer(?=:[^\n]*[./](?:ltwbook\.com|ltxsw\.com|ltxszw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R11 +s@^referer(?=:[^\n]*[./](?:172\.86\.179\.138|208\.94\.244\.100|208\.94\.244\.98|a88\.us|ac168\.info|aisex\.com|fdzone\.org|jandown\.com|mimima\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R110 +s@^referer(?=:[^\n]*[./](?:lxty66\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R111 +s@^referer(?=:[^\n]*[./](?:mail\.pchome\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R112 +s@^referer(?=:[^\n]*[./](?:mitbbs\.ca|mitbbs\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R113 +s@^referer(?=:[^\n]*[./](?:mmload\.info)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R115 +s@^referer(?=:[^\n]*[./](?:myqcloud\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R116 +s@^referer(?=:[^\n]*[./](?:news\.china\.com\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R117 +s@^referer(?=:[^\n]*[./](?:news\.cn|xinhuanet\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R118 +s@^referer(?=:[^\n]*[./](?:ocucn\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R119 +s@^referer(?=:[^\n]*[./](?:pbzy\.com|shanzhaiben\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R12 +s@^referer(?=:[^\n]*[./](?:174\.139\.109\.38|208\.94\.244\.98|360bifen\.cc|360bifen\.com|360bo\.cc|500xxxx\.com|84fn\.com|99ee1\.com|99re5\.com|99rr6\.com|ac168\.info|aisex\.com|bejson\.com|bt177\.com|btago\.com|btshare\.net|btshark\.com|btup\.net|caoliuzx\.com|cililian\.me|fdzone\.org|izzs\.cc|jisuzhibo\.net|links\.hjav\.in|liulanmi\.com|sbme\.me|taohuazu\.tw|thzhd\.net|ttdyy\.tv|xinqixi\.com|xxxbt\.com|youb444\.com|zhiboche\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R120 +s@^referer(?=:[^\n]*[./](?:pos\.baidu\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R121 +s@^referer(?=:[^\n]*[./](?:qiannao\.com|ref\.so)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R122 +s@^referer(?=:[^\n]*[./](?:qire213\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R123 +s@^referer(?=:[^\n]*[./](?:qzntv\.com|qzwb\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R124 +s@^referer(?=:[^\n]*[./](?:ref\.so)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R125 +s@^referer(?=:[^\n]*[./](?:scol\.com\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R126 +s@^referer(?=:[^\n]*[./](?:sex169\.info|sex169\.org)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R127 +s@^referer(?=:[^\n]*[./](?:share\.popgo\.org)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R128 +s@^referer(?=:[^\n]*[./](?:shuajizhijia\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R13 +s@^referer(?=:[^\n]*[./](?:17huohu\.com|firefox\.com\.cn|firefoxchina\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R130 +s@^referer(?=:[^\n]*[./](?:strtv\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R131 +s@^referer(?=:[^\n]*[./](?:sun0769\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R132 +s@^referer(?=:[^\n]*[./](?:tiexue\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R133 +s@^referer(?=:[^\n]*[./](?:ttmeiju\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R135 +s@^referer(?=:[^\n]*[./](?:uisdc\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R136 +s@^referer(?=:[^\n]*[./](?:uopera\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R138 +s@^referer(?=:[^\n]*[./](?:v2ex\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R139 +s@^referer(?=:[^\n]*[./](?:wangyueblog\.com|xiadele\.com|xm9x\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R140 +s@^referer(?=:[^\n]*[./](?:wgun\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R141 +s@^referer(?=:[^\n]*[./](?:wishct\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R142 +s@^referer(?=:[^\n]*[./](?:wowrk\.com|x-berry\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R143 +s@^referer(?=:[^\n]*[./](?:www\.52hardware\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R144 +s@^referer(?=:[^\n]*[./](?:www\.gamer\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R146 +s@^referer(?=:[^\n]*[./](?:www\.tiexue\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R147 +s@^referer(?=:[^\n]*[./](?:www\.tsdm\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R148 +s@^referer(?=:[^\n]*[./](?:yinyuetai\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R149 +s@^referer(?=:[^\n]*[./](?:youxi\.baidu\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R15 +s@^referer(?=:[^\n]*[./](?:18avhub\.com|18avtube\.com|mm-cg\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R150 +s@^referer(?=:[^\n]*[./](?:yuyu780906\.blogspot\.com|yuyu780906\.blogspot\.hk|yuyu780906\.blogspot\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R151 +s@^referer(?=:[^\n]*[./](?:zasv\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R152 +s@^referer(?=:[^\n]*[./](?:zhongzi\.in)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R16 +s@^referer(?=:[^\n]*[./](?:18p2p\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R17 +s@^referer(?=:[^\n]*[./](?:1kkk\.com|dm5\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R18 +s@^referer(?=:[^\n]*[./](?:26766\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R186t +s@^referer:.*@$&\t$host@Di +s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|downhhh\.com|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-R19 +s@^referer(?=:[^\n]*[./](?:28188\.com|28188\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R2 +s@^referer(?=:[^\n]*[./](?:00fuck\.com|01fuck\.com|1024\.pe|1024bao\.com|20fuck\.com|20men\.com|22fuck\.com|32cao\.com|33fuck\.com|42bao\.com|44fuck\.com|66fuck\.com|74bao\.com|75ri\.com|83bao\.com|96ri\.com|97aa1\.com|atao\.biz|bao36\.com|bao85\.com|baoxxx\.com|cao71\.com|cao89\.com|caoporn\.com|cp001\.xyz|down40\.com|fuck01\.com|fuck44\.com|fuckhao\.com|fulitie\.org|gan80\.com|gantube\.com|gao08\.com|gao1024\.com|lang\.pe|lang00\.com|lang51\.com|men00\.com|men40\.com|men55\.com|men70\.com|men81\.com|porncao\.com|pornhao\.com|ri1024\.com|ri15\.com|ri69\.com|ri86\.com|ri96\.com|rifuck\.com|tb001\.xyz|tube1024\.com|tubewan\.com|vgan\.pw|vlook\.xyz|wan1024\.com|wanfuck\.com|xxxgao\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R20 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|chakd\.com|kiees\.cn|kqiuba\.com|lueqiu\.com|macappbox\.com|pptiyu\.com|qqzhibo\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R21 +s@^referer(?=:[^\n]*[./](?:360-bo\.com|pptiyu\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R22 +s@^referer(?=:[^\n]*[./](?:39xs\.net|checheng123\.com|haodu5\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R23 +s@^referer(?=:[^\n]*[./](?:400gb\.com|bego\.cc|ctfile\.com|pipipan\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R24 +s@^referer(?=:[^\n]*[./](?:45zw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R25 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.228|50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R26 +s@^referer(?=:[^\n]*[./](?:50\.7\.31\.230|tvboxnow\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R27 +s@^referer(?=:[^\n]*[./](?:51live\.com|52waha\.com|ccav5\.com|zhibo7\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R29 +s@^referer(?=:[^\n]*[./](?:52jifenbao\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R3 +s@^referer(?=:[^\n]*[./](?:100ksw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R30 +s@^referer(?=:[^\n]*[./](?:5ydj\.com|99ee1\.com|99re5\.com|99rr6\.com|btago\.com|btbook\.net|btshark\.org|cnmkv\.com|fulisuo1\.com|hdbiger\.org|kisssub\.org|papa1024\.com|potplayer\.org|qqhzg\.com|qqjishu\.net|ruoren\.com|souxue8\.net|totuwo\.com|xiaodao\.la|xiaodaoyl\.com|yunaw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R31 +s@^referer(?=:[^\n]*[./](?:6668\.se)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R32 +s@^referer(?=:[^\n]*[./](?:8comic\.com|comicvip\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R33 +s@^referer(?=:[^\n]*[./](?:94as\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R34 +s@^referer(?=:[^\n]*[./](?:99770\.cc|99comic\.com|99manga\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R35 +s@^referer(?=:[^\n]*[./](?:99ee1\.com|99re5\.com|99rr6\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R37 +s@^referer(?=:[^\n]*[./](?:aadaili\.com|ppdaili\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R38 +s@^referer(?=:[^\n]*[./](?:acg18\.me)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R39 +s@^referer(?=:[^\n]*[./](?:ady8\.info|aikuhu\.com|cctv5bo\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R4 +s@^referer(?=:[^\n]*[./](?:104\.237\.154\.90|106\.186\.21\.182|north-plus\.net|soul-plus\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R40 +s@^referer(?=:[^\n]*[./](?:allanalpass\.com|amy\.gs|any\.gs|cash4files\.com|deb\.gs|dyo\.gs|eafyfsuh\.net|filesonthe\.net|galleries\.bz|goneviral\.com|linkbucks\.com|megaline\.co|miniurls\.co|picbucks\.com|qqc\.co|rqq\.co|sasontnwc\.net|seriousdeals\.net|theseblogs\.com|tinylinks\.co|tnabucks\.com|tubeviral\.com|ultrafiles\.net|urlbeat\.net|whackyvidz\.com|yyv\.co|zff\.co)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R41 +s@^referer(?=:[^\n]*[./](?:am5200\.com|baby360\.ru|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R42 +s@^referer(?=:[^\n]*[./](?:am5200\.com|haowan\.ru|kv130\.com|kv700\.com|we5200\.com|we560\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R43 +s@^referer(?=:[^\n]*[./](?:avmimi\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R44 +s@^referer(?=:[^\n]*[./](?:backtrack\.org\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R45 +s@^referer(?=:[^\n]*[./](?:bbs\.chinaz\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R46 +s@^referer(?=:[^\n]*[./](?:bbs\.fobshanghai\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R47 +s@^referer(?=:[^\n]*[./](?:bbs\.linyiren\.com|www\.linyiren\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R48 +s@^referer(?=:[^\n]*[./](?:bbs\.sz\.zj\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R49 +s@^referer(?=:[^\n]*[./](?:beephone\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R5 +s@^referer(?=:[^\n]*[./](?:12345xo\.com|123gbgb\.com|123ksks\.com|216xx\.com|263kk\.com|44rbrb\.com|66ctct\.com|828ee\.com|832ee\.com|90yb\.com|970b\.com|987abc\.com|99ksks\.com|auau88\.com|etet666\.com|xbxb123\.com|yeyeqi7\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R52 +s@^referer(?=:[^\n]*[./](?:bjxxw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R53 +s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R54 +s@^referer(?=:[^\n]*[./](?:btmee\.com|btmee\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R55 +s@^referer(?=:[^\n]*[./](?:btup\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R56 +s@^referer(?=:[^\n]*[./](?:cartoomad\.com|cartoonad\.com|cartoonmad\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R57 +s@^referer(?=:[^\n]*[./](?:ccav1\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R59 +s@^referer(?=:[^\n]*[./](?:chimatong\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R61 +s@^referer(?=:[^\n]*[./](?:ck101\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R63 +s@^referer(?=:[^\n]*[./](?:cool3c\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R64 +s@^referer(?=:[^\n]*[./](?:cpbl\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R65 +s@^referer(?=:[^\n]*[./](?:cs090\.com|wm090\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R66 +s@^referer(?=:[^\n]*[./](?:cwyuni\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R67 +s@^referer(?=:[^\n]*[./](?:dapenti\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R68 +s@^referer(?=:[^\n]*[./](?:dilidili\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R69 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|uwants\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R7 +s@^referer(?=:[^\n]*[./](?:12580sky\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R70 +s@^referer(?=:[^\n]*[./](?:dm5\.com|dm5\.hk)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R71 +s@^referer(?=:[^\n]*[./](?:dnwx\.com|snybw\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R72 +s@^referer(?=:[^\n]*[./](?:dolc\.de|dolc\.info|leiphone\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R73 +s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R74 +s@^referer(?=:[^\n]*[./](?:duba\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R75 +s@^referer(?=:[^\n]*[./](?:e\.70e\.com|e701\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R76 +s@^referer(?=:[^\n]*[./](?:ezvivi\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R77 +s@^referer(?=:[^\n]*[./](?:fankudo\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R79 +s@^referer(?=:[^\n]*[./](?:flvcd\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R8 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com|51dll\.com|newstorrentsspace\.info|tianyatorrents\.info)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R80 +s@^referer(?=:[^\n]*[./](?:forum\.qidian\.com|sosu\.qidian\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R81 +s@^referer(?=:[^\n]*[./](?:game\.macx\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R82 +s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R83 +s@^referer(?=:[^\n]*[./](?:geekpark\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R84 +s@^referer(?=:[^\n]*[./](?:gezila\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R85 +s@^referer(?=:[^\n]*[./](?:gougousoso\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R86 +s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R87 +s@^referer(?=:[^\n]*[./](?:hanzify\.net|hanzify\.org)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R88 +s@^referer(?=:[^\n]*[./](?:hdscg\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R89 +s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R9 +s@^referer(?=:[^\n]*[./](?:17173\.com|17173\.tv\.sohu\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R91 +s@^referer(?=:[^\n]*[./](?:hkbici\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R92 +s@^referer(?=:[^\n]*[./](?:hkgolden\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R95 +s@^referer(?=:[^\n]*[./](?:htai\.me)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R96 +s@^referer(?=:[^\n]*[./](?:iask\.sina\.com\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R97 +s@^referer(?=:[^\n]*[./](?:ifeng\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R98 +s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R99 +s@^referer(?=:[^\n]*[./](?:itjsb\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn153 +s@^referer(?!:[^\n]*[./](?:11185\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn159 +s@^referer(?!:[^\n]*[./](?:duilian\.msra\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn161 +s@^referer(?!:[^\n]*[./](?:fwxgx\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn163 +s@^referer(?!:[^\n]*[./](?:lady\.weibo\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn164 +s@^referer(?!:[^\n]*[./](?:lianmeng\.360\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn166 +s@^referer(?!:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn167 +s@^referer(?!:[^\n]*[./](?:sac\.net\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn169 +s@^referer(?!:[^\n]*[./](?:sogou\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn170 +s@^referer(?!:[^\n]*[./](?:tech\.ifeng\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn171 +s@^referer(?!:[^\n]*[./](?:tw\.yahoo\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn172 +s@^referer(?!:[^\n]*[./](?:www\.sina\.com\.cn)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn173 +s@^referer(?!:[^\n]*[./](?:yahoo\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn174 +s@^referer(?!:[^\n]*[./](?:ychr\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Xx +s@^x-requested-with(?=:\s*(?:xmlhttprequest)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R6 +s@^referer(?=:[^\n]*[./](?:123du\.cc|bokon\.net)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R78 +s@^referer(?=:[^\n]*[./](?:firefox\.huanqiu\.com)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R82 +s@^referer(?=:[^\n]*[./](?:gamer\.com\.tw)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R90 +s@^referer(?=:[^\n]*[./](?:hk\.news\.yahoo\.com|hk\.yahoo\.com|tw\.stock\.yahoo\.com)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R93 +s@^referer(?=:[^\n]*[./](?:howbbs\.com|pc6\.com|tytl\.tk)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-R94 +s@^referer(?=:[^\n]*[./](?:hrb\.house\.163\.com)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-Rn158 +s@^referer(?!:[^\n]*[./](?:dmzj\.com)):.*@ab2p-block-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R147 +s@^referer(?=:[^\n]*[./](?:www\.tsdm\.net)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R152 +s@^referer(?=:[^\n]*[./](?:zhongzi\.in)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R186t +s@^referer:.*@$&\t$host@Di +s@^referer(?=:[^\n]*[./](?:520ccc\.cc|5278\.cc|5278bbs\.com|67\.212\.233\.37|99files\.net|bfooru\.info|bforu\.info|byhh\.org|downhhh\.com|jandown\.com|javjunkies\.com|jxedt\.com|kxddd\.com|lamp99\.com|mimima\.com|rmdown\.com|scokl\.com|see3r\.com|shcle\.com|shclk\.com|tenitt\.info|ttft\.in|xhcbb\.com|xunfs\.com|yzhlive\.com))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R37 +s@^referer(?=:[^\n]*[./](?:aadaili\.com|ppdaili\.com)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R40 +s@^referer(?=:[^\n]*[./](?:allanalpass\.com|amy\.gs|any\.gs|cash4files\.com|deb\.gs|dyo\.gs|eafyfsuh\.net|filesonthe\.net|galleries\.bz|goneviral\.com|linkbucks\.com|megaline\.co|miniurls\.co|picbucks\.com|qqc\.co|rqq\.co|sasontnwc\.net|seriousdeals\.net|theseblogs\.com|tinylinks\.co|tnabucks\.com|tubeviral\.com|ultrafiles\.net|urlbeat\.net|whackyvidz\.com|yyv\.co|zff\.co)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R53 +s@^referer(?=:[^\n]*[./](?:btbbt\.cc)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R73 +s@^referer(?=:[^\n]*[./](?:douban\.com)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R86 +s@^referer(?=:[^\n]*[./](?:hacg\.lol)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R89 +s@^referer(?=:[^\n]*[./](?:henbt\.com)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-R98 +s@^referer(?=:[^\n]*[./](?:iqiyi\.com)):.*@ab2p-block-xpopup@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xpopup-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xpopup@i + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R189 +s@^referer(?=:[^\n]*[./](?:0379home\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R190 +s@^referer(?=:[^\n]*[./](?:10086\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R191 +s@^referer(?=:[^\n]*[./](?:10pan\.cc|77pan\.cc|789disc\.cc|789pan\.cc|huimeiku\.com|ifonce\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R192 +s@^referer(?=:[^\n]*[./](?:121\.40\.92\.135|7958\.com\.cn|9duli\.com|coladrive\.com|colayun\.com|dlzyw\.com|ffpan\.com|gqpdf\.com|gqzzw\.com|l7po\.com|pctowap\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R193 +s@^referer(?=:[^\n]*[./](?:123\.138\.234\.240)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R194 +s@^referer(?=:[^\n]*[./](?:123564\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R195 +s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|keenfine\.com|mahua\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R196 +s@^referer(?=:[^\n]*[./](?:126\.com|mail\.163\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R197 +s@^referer(?=:[^\n]*[./](?:127\.0\.0\.1)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R198 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R199 +s@^referer(?=:[^\n]*[./](?:17\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R200 +s@^referer(?=:[^\n]*[./](?:189\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R201 +s@^referer(?=:[^\n]*[./](?:189\.cn|ali213\.net|coolpad\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R202 +s@^referer(?=:[^\n]*[./](?:21394\.com|94pan\.com|fmdisk\.com|fmdisk\.net|fmpan\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R203 +s@^referer(?=:[^\n]*[./](?:360bifen\.cc|360bifen\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R204 +s@^referer(?=:[^\n]*[./](?:4008927927\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R205 +s@^referer(?=:[^\n]*[./](?:5060\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R206 +s@^referer(?=:[^\n]*[./](?:520tingshu\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R207 +s@^referer(?=:[^\n]*[./](?:5i5j\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R208 +s@^referer(?=:[^\n]*[./](?:666ccc\.com|g3000\.com\.cn|hfchenming\.com\.cn|missioncouver\.com\.cn|op\.52pk\.com|yue365\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R209 +s@^referer(?=:[^\n]*[./](?:66u\.com|dataguru\.cn|oneplusbbs\.com|readboy\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R210 +s@^referer(?=:[^\n]*[./](?:67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R211 +s@^referer(?=:[^\n]*[./](?:7k7k\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R212 +s@^referer(?=:[^\n]*[./](?:7net\.com\.tw|ibon\.com\.tw|pxmart\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R213 +s@^referer(?=:[^\n]*[./](?:888\.sports\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R214 +s@^referer(?=:[^\n]*[./](?:88box\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R215 +s@^referer(?=:[^\n]*[./](?:88boxjx\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R216 +s@^referer(?=:[^\n]*[./](?:95516\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R217 +s@^referer(?=:[^\n]*[./](?:9588\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R218 +s@^referer(?=:[^\n]*[./](?:9duli\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R219 +s@^referer(?=:[^\n]*[./](?:ad\.alimama\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R220 +s@^referer(?=:[^\n]*[./](?:appledaily\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R221 +s@^referer(?=:[^\n]*[./](?:appledaily\.com|nextmedia\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R222 +s@^referer(?=:[^\n]*[./](?:bbs\.yzz\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R223 +s@^referer(?=:[^\n]*[./](?:books\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R224 +s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R225 +s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R226 +s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R227 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R228 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R229 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R230 +s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R231 +s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R232 +s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R233 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R234 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R235 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R236 +s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R237 +s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R238 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R239 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R240 +s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R241 +s@^referer(?=:[^\n]*[./](?:fharr\.com|gimhoy\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R242 +s@^referer(?=:[^\n]*[./](?:finance\.sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R243 +s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R244 +s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R245 +s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R246 +s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R247 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R248 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R249 +s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R250 +s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R251 +s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R252 +s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R253 +s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R254 +s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R255 +s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R256 +s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R257 +s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R258 +s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R259 +s@^referer(?=:[^\n]*[./](?:ieeee\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R260 +s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R261 +s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R262 +s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R263 +s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R264 +s@^referer(?=:[^\n]*[./](?:item\.jd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R265 +s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R266 +s@^referer(?=:[^\n]*[./](?:jjcast\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R267 +s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R268 +s@^referer(?=:[^\n]*[./](?:keenfine\.com|xoyo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R269 +s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R270 +s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R271 +s@^referer(?=:[^\n]*[./](?:laniqu\.com|veryeast\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R272 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R273 +s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R274 +s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R275 +s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R276 +s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R277 +s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R278 +s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R279 +s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R280 +s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R281 +s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R282 +s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R283 +s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R284 +s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R285 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R286 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R287 +s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R288 +s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn|wb\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R289 +s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R290 +s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R291 +s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R292 +s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R293 +s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R294 +s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R295 +s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R296 +s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R297 +s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R298 +s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R299 +s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R300 +s@^referer(?=:[^\n]*[./](?:sx566\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R301 +s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R302 +s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R303 +s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R304 +s@^referer(?=:[^\n]*[./](?:tdx\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R305 +s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R306 +s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R307 +s@^referer(?=:[^\n]*[./](?:tw\.autos\.yahoo\.com|tw\.buy\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R308 +s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R309 +s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R310 +s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R311 +s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R312 +s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R313 +s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R314 +s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R315 +s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R316 +s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R317 +s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R318 +s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R319 +s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R320 +s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R321 +s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R322 +s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R323 +s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R324 +s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R325 +s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R326 +s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R327 +s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R328 +s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R329 +s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-Rn187 +s@^referer(?!:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti +s@^referer:.*@-ab2p-unblock-dnt-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-nR +s@^.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R189 +s@^referer(?=:[^\n]*[./](?:0379home\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R190 +s@^referer(?=:[^\n]*[./](?:10086\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R191 +s@^referer(?=:[^\n]*[./](?:10pan\.cc|77pan\.cc|789disc\.cc|789pan\.cc|huimeiku\.com|ifonce\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R192 +s@^referer(?=:[^\n]*[./](?:121\.40\.92\.135|7958\.com\.cn|9duli\.com|coladrive\.com|colayun\.com|dlzyw\.com|ffpan\.com|gqpdf\.com|gqzzw\.com|l7po\.com|pctowap\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R193 +s@^referer(?=:[^\n]*[./](?:123\.138\.234\.240)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R194 +s@^referer(?=:[^\n]*[./](?:123564\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R195 +s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|keenfine\.com|mahua\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R196 +s@^referer(?=:[^\n]*[./](?:126\.com|mail\.163\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R197 +s@^referer(?=:[^\n]*[./](?:127\.0\.0\.1)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R198 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R199 +s@^referer(?=:[^\n]*[./](?:17\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R200 +s@^referer(?=:[^\n]*[./](?:189\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R201 +s@^referer(?=:[^\n]*[./](?:189\.cn|ali213\.net|coolpad\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R202 +s@^referer(?=:[^\n]*[./](?:21394\.com|94pan\.com|fmdisk\.com|fmdisk\.net|fmpan\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R203 +s@^referer(?=:[^\n]*[./](?:360bifen\.cc|360bifen\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R204 +s@^referer(?=:[^\n]*[./](?:4008927927\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R206 +s@^referer(?=:[^\n]*[./](?:520tingshu\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R207 +s@^referer(?=:[^\n]*[./](?:5i5j\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R208 +s@^referer(?=:[^\n]*[./](?:666ccc\.com|g3000\.com\.cn|hfchenming\.com\.cn|missioncouver\.com\.cn|op\.52pk\.com|yue365\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R209 +s@^referer(?=:[^\n]*[./](?:66u\.com|dataguru\.cn|oneplusbbs\.com|readboy\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R210 +s@^referer(?=:[^\n]*[./](?:67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R211 +s@^referer(?=:[^\n]*[./](?:7k7k\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R212 +s@^referer(?=:[^\n]*[./](?:7net\.com\.tw|ibon\.com\.tw|pxmart\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R213 +s@^referer(?=:[^\n]*[./](?:888\.sports\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R214 +s@^referer(?=:[^\n]*[./](?:88box\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R215 +s@^referer(?=:[^\n]*[./](?:88boxjx\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R216 +s@^referer(?=:[^\n]*[./](?:95516\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R217 +s@^referer(?=:[^\n]*[./](?:9588\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R218 +s@^referer(?=:[^\n]*[./](?:9duli\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R219 +s@^referer(?=:[^\n]*[./](?:ad\.alimama\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R220 +s@^referer(?=:[^\n]*[./](?:appledaily\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R221 +s@^referer(?=:[^\n]*[./](?:appledaily\.com|nextmedia\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R222 +s@^referer(?=:[^\n]*[./](?:bbs\.yzz\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R223 +s@^referer(?=:[^\n]*[./](?:books\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R224 +s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R225 +s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R226 +s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R227 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R228 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R229 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R230 +s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R231 +s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R232 +s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R233 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R234 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R235 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R236 +s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R237 +s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R238 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R239 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R240 +s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R241 +s@^referer(?=:[^\n]*[./](?:fharr\.com|gimhoy\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R242 +s@^referer(?=:[^\n]*[./](?:finance\.sina\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R243 +s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R244 +s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R245 +s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R246 +s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R247 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R248 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R249 +s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R250 +s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R251 +s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R252 +s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R253 +s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R254 +s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R255 +s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R256 +s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R257 +s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R258 +s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R259 +s@^referer(?=:[^\n]*[./](?:ieeee\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R260 +s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R261 +s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R262 +s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R263 +s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R264 +s@^referer(?=:[^\n]*[./](?:item\.jd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R265 +s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R266 +s@^referer(?=:[^\n]*[./](?:jjcast\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R267 +s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R268 +s@^referer(?=:[^\n]*[./](?:keenfine\.com|xoyo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R269 +s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R270 +s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R271 +s@^referer(?=:[^\n]*[./](?:laniqu\.com|veryeast\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R272 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R273 +s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R274 +s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R275 +s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R276 +s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R277 +s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R278 +s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R279 +s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R280 +s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R281 +s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R282 +s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R283 +s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R284 +s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R285 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R286 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R287 +s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R288 +s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn|wb\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R289 +s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R290 +s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R291 +s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R292 +s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R293 +s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R294 +s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R295 +s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R296 +s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R297 +s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R298 +s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R299 +s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R300 +s@^referer(?=:[^\n]*[./](?:sx566\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R301 +s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R302 +s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R303 +s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R304 +s@^referer(?=:[^\n]*[./](?:tdx\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R305 +s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R306 +s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R307 +s@^referer(?=:[^\n]*[./](?:tw\.autos\.yahoo\.com|tw\.buy\.yahoo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R308 +s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R309 +s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R310 +s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R311 +s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R312 +s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R313 +s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R314 +s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R315 +s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R316 +s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R317 +s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R318 +s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R319 +s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R320 +s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R321 +s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R322 +s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R323 +s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R324 +s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R325 +s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R326 +s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R327 +s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R328 +s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R329 +s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-Rn187 +s@^referer(?!:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-unblock-elem@Ti +s@^referer:.*@-ab2p-unblock-elem-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-nR +s@^.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ac +s@^accept(?=:[\s\w]*(?:\/css)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm +s@^accept(?=:[\s\w]*(?:\/html|\/xml)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R219 +s@^referer(?=:[^\n]*[./](?:ad\.alimama\.com)):.*@ab2p-unblock-request-Ahm-Chm@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R301 +s@^referer(?=:[^\n]*[./](?:szhr\.com\.cn)):.*@ab2p-unblock-request-Ahm-Chm@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ahm-Chm-when-R329 +s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-request-Ahm-Chm@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai +s@^accept(?=:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R223 +s@^referer(?=:[^\n]*[./](?:books\.com\.tw)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R312 +s@^referer(?=:[^\n]*[./](?:vip\.ijinshan\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij +s@^accept(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aij-Cij-when-R266 +s@^referer(?=:[^\n]*[./](?:jjcast\.com)):.*@ab2p-unblock-request-Aij-Cij@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj +s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-R188nt +s@^referer:.*@$&\t$host@Di +s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org))(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj-Xx@i +s@^referer:.*@-ab2p-unblock-request-Aj-Cj-Xx-when-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-Xx-when-nR +s@^.*@ab2p-unblock-request-Aj-Cj-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R242 +s@^referer(?=:[^\n]*[./](?:finance\.sina\.com\.cn)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R244 +s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R264 +s@^referer(?=:[^\n]*[./](?:item\.jd\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R284 +s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R300 +s@^referer(?=:[^\n]*[./](?:sx566\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ani +s@^accept(?!:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Caov +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Casv +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Cc +s@^content-type(?=:[\s\w]*(?:\/css)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Chm +s@^content-type(?=:[\s\w]*(?:\/html|\/xml)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Ci +s@^content-type(?=:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Cij +s@^content-type(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Cj +s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Cni +s@^content-type(?!:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti +s@^content-type:.*@-ab2p-unblock-request-nC@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R189 +s@^referer(?=:[^\n]*[./](?:0379home\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R190 +s@^referer(?=:[^\n]*[./](?:10086\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R191 +s@^referer(?=:[^\n]*[./](?:10pan\.cc|77pan\.cc|789disc\.cc|789pan\.cc|huimeiku\.com|ifonce\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R192 +s@^referer(?=:[^\n]*[./](?:121\.40\.92\.135|7958\.com\.cn|9duli\.com|coladrive\.com|colayun\.com|dlzyw\.com|ffpan\.com|gqpdf\.com|gqzzw\.com|l7po\.com|pctowap\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R193 +s@^referer(?=:[^\n]*[./](?:123\.138\.234\.240)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R194 +s@^referer(?=:[^\n]*[./](?:123564\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R195 +s@^referer(?=:[^\n]*[./](?:123564\.com|btbt\.tv|fxpan\.com|jkpan\.com|keenfine\.com|mahua\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R196 +s@^referer(?=:[^\n]*[./](?:126\.com|mail\.163\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R197 +s@^referer(?=:[^\n]*[./](?:127\.0\.0\.1)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R198 +s@^referer(?=:[^\n]*[./](?:16668\.biz|16668\.cc|16668\.com|16668\.net|16668\.org|16668tu\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R199 +s@^referer(?=:[^\n]*[./](?:17\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R200 +s@^referer(?=:[^\n]*[./](?:189\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R201 +s@^referer(?=:[^\n]*[./](?:189\.cn|ali213\.net|coolpad\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R202 +s@^referer(?=:[^\n]*[./](?:21394\.com|94pan\.com|fmdisk\.com|fmdisk\.net|fmpan\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R203 +s@^referer(?=:[^\n]*[./](?:360bifen\.cc|360bifen\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R204 +s@^referer(?=:[^\n]*[./](?:4008927927\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R205 +s@^referer(?=:[^\n]*[./](?:5060\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R206 +s@^referer(?=:[^\n]*[./](?:520tingshu\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R207 +s@^referer(?=:[^\n]*[./](?:5i5j\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R208 +s@^referer(?=:[^\n]*[./](?:666ccc\.com|g3000\.com\.cn|hfchenming\.com\.cn|missioncouver\.com\.cn|op\.52pk\.com|yue365\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R209 +s@^referer(?=:[^\n]*[./](?:66u\.com|dataguru\.cn|oneplusbbs\.com|readboy\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R210 +s@^referer(?=:[^\n]*[./](?:67\.228\.203\.174|iu91\.co|maichun5\.info|myhhg\.com|sejie\.com|sejie3\.us|ukhuaren\.co|yh1\.info|yh10\.info)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R211 +s@^referer(?=:[^\n]*[./](?:7k7k\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R212 +s@^referer(?=:[^\n]*[./](?:7net\.com\.tw|ibon\.com\.tw|pxmart\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R213 +s@^referer(?=:[^\n]*[./](?:888\.sports\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R214 +s@^referer(?=:[^\n]*[./](?:88box\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R215 +s@^referer(?=:[^\n]*[./](?:88boxjx\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R216 +s@^referer(?=:[^\n]*[./](?:95516\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R217 +s@^referer(?=:[^\n]*[./](?:9588\.com|dod-tec\.com|gueizu\.com|landtop\.com\.tw|ourgame\.com|pro-partner\.com\.tw|snh48\.com|sozi\.cn|tingbook\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R218 +s@^referer(?=:[^\n]*[./](?:9duli\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R220 +s@^referer(?=:[^\n]*[./](?:appledaily\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R221 +s@^referer(?=:[^\n]*[./](?:appledaily\.com|nextmedia\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R222 +s@^referer(?=:[^\n]*[./](?:bbs\.yzz\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R224 +s@^referer(?=:[^\n]*[./](?:brandsales\.58\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R225 +s@^referer(?=:[^\n]*[./](?:cctcw\.cn|juxiangyou\.com|locuspublishing\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R226 +s@^referer(?=:[^\n]*[./](?:cidianwang\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R227 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R228 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|fxpan\.com|kuakao\.com|pctowap\.com|pic\.tiexue\.net|shushu5\.com|shushuw\.cn|xdf\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R229 +s@^referer(?=:[^\n]*[./](?:coladrive\.com|colayun\.com|pctowap\.com|play\.yue365\.com|shushuw\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R230 +s@^referer(?=:[^\n]*[./](?:czsrc\.com|nieyou\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R231 +s@^referer(?=:[^\n]*[./](?:dev\.360\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R232 +s@^referer(?=:[^\n]*[./](?:dianxinos\.com|gotobuy\.com\.tw|haseemobile\.net|lklm\.com|re-vat\.com|sj-touch\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R233 +s@^referer(?=:[^\n]*[./](?:discuss\.com\.hk|knowlet3389\.blogspot\.com|knowlet3389\.blogspot\.hk|knowlet3389\.blogspot\.jp|knowlet3389\.blogspot\.tw|mnighthk\.net|tu265\.com|wholehk\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R234 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R235 +s@^referer(?=:[^\n]*[./](?:dnvod\.eu|duonao\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R236 +s@^referer(?=:[^\n]*[./](?:dou6\.cc|ff7\.cc|kk369\.net|uuu123\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R237 +s@^referer(?=:[^\n]*[./](?:excelhome\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R238 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|fxpan\.com|kuakao\.com|xdf\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R239 +s@^referer(?=:[^\n]*[./](?:excelhome\.net|xdf\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R240 +s@^referer(?=:[^\n]*[./](?:exp\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R241 +s@^referer(?=:[^\n]*[./](?:fharr\.com|gimhoy\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R243 +s@^referer(?=:[^\n]*[./](?:findart\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R245 +s@^referer(?=:[^\n]*[./](?:fmdisk\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R246 +s@^referer(?=:[^\n]*[./](?:focus\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R247 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R248 +s@^referer(?=:[^\n]*[./](?:free\.com\.tw|macx\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R249 +s@^referer(?=:[^\n]*[./](?:fxpan\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R250 +s@^referer(?=:[^\n]*[./](?:gametower\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R251 +s@^referer(?=:[^\n]*[./](?:gome\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R252 +s@^referer(?=:[^\n]*[./](?:gx\.91s\.org|xoyo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R253 +s@^referer(?=:[^\n]*[./](?:haitao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R254 +s@^referer(?=:[^\n]*[./](?:hanjuwang\.com|kuakao\.com|studioclassroom\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R255 +s@^referer(?=:[^\n]*[./](?:hktvmall\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R256 +s@^referer(?=:[^\n]*[./](?:houdask\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R257 +s@^referer(?=:[^\n]*[./](?:huazhu\.com|taotaosou\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R258 +s@^referer(?=:[^\n]*[./](?:icbc\.com\.cn|igame\.qq\.com|tuan\.duba\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R259 +s@^referer(?=:[^\n]*[./](?:ieeee\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R260 +s@^referer(?=:[^\n]*[./](?:ihold\.cc)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R261 +s@^referer(?=:[^\n]*[./](?:ihome99\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R262 +s@^referer(?=:[^\n]*[./](?:ilowkey\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R263 +s@^referer(?=:[^\n]*[./](?:ininin\.com|muyingzhijia\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R265 +s@^referer(?=:[^\n]*[./](?:jd\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R267 +s@^referer(?=:[^\n]*[./](?:jstv\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R268 +s@^referer(?=:[^\n]*[./](?:keenfine\.com|xoyo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R269 +s@^referer(?=:[^\n]*[./](?:komica\.org|support\.amd\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R270 +s@^referer(?=:[^\n]*[./](?:ks\.js\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R271 +s@^referer(?=:[^\n]*[./](?:laniqu\.com|veryeast\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R272 +s@^referer(?=:[^\n]*[./](?:lepan\.cc|monnsutogatya\.com|scholar\.glgoo\.org|zdaili\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R273 +s@^referer(?=:[^\n]*[./](?:liba\.com|libaclub\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R274 +s@^referer(?=:[^\n]*[./](?:live\.stockstar\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R275 +s@^referer(?=:[^\n]*[./](?:lol\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R276 +s@^referer(?=:[^\n]*[./](?:long7\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R277 +s@^referer(?=:[^\n]*[./](?:longbl\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R278 +s@^referer(?=:[^\n]*[./](?:manhua\.weibo\.com|my\.ctrip\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R279 +s@^referer(?=:[^\n]*[./](?:meiziweibo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R280 +s@^referer(?=:[^\n]*[./](?:mndxy\.org)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R281 +s@^referer(?=:[^\n]*[./](?:mnighthk\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R282 +s@^referer(?=:[^\n]*[./](?:music\.baidu\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R283 +s@^referer(?=:[^\n]*[./](?:myweb\.hinet\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R284 +s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R285 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R286 +s@^referer(?=:[^\n]*[./](?:p9\.com\.tw|ruten\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R287 +s@^referer(?=:[^\n]*[./](?:pcstore\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R288 +s@^referer(?=:[^\n]*[./](?:pisen\.com\.cn|wb\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R289 +s@^referer(?=:[^\n]*[./](?:piseneasy\.com|taobao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R290 +s@^referer(?=:[^\n]*[./](?:play\.yue365\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R291 +s@^referer(?=:[^\n]*[./](?:qbao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R292 +s@^referer(?=:[^\n]*[./](?:qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R293 +s@^referer(?=:[^\n]*[./](?:rakuya\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R294 +s@^referer(?=:[^\n]*[./](?:ruten\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R295 +s@^referer(?=:[^\n]*[./](?:serve\.netsh\.org)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R296 +s@^referer(?=:[^\n]*[./](?:sfbuy\.com|suning\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R297 +s@^referer(?=:[^\n]*[./](?:sina\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R298 +s@^referer(?=:[^\n]*[./](?:snail\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R299 +s@^referer(?=:[^\n]*[./](?:support\.amd\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R302 +s@^referer(?=:[^\n]*[./](?:tanx\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R303 +s@^referer(?=:[^\n]*[./](?:taobao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R304 +s@^referer(?=:[^\n]*[./](?:tdx\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R305 +s@^referer(?=:[^\n]*[./](?:tkec\.com\.tw|yy960\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R306 +s@^referer(?=:[^\n]*[./](?:tvb\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R308 +s@^referer(?=:[^\n]*[./](?:tw\.buy\.yahoo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R309 +s@^referer(?=:[^\n]*[./](?:union\.163\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R310 +s@^referer(?=:[^\n]*[./](?:video\.sina\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R311 +s@^referer(?=:[^\n]*[./](?:vip\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R313 +s@^referer(?=:[^\n]*[./](?:wacom\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R314 +s@^referer(?=:[^\n]*[./](?:wanweidao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R315 +s@^referer(?=:[^\n]*[./](?:wb\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R316 +s@^referer(?=:[^\n]*[./](?:webcars\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R317 +s@^referer(?=:[^\n]*[./](?:weibo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R318 +s@^referer(?=:[^\n]*[./](?:weibo\.com))(?!:[^\n]*[./](?:widget\.weibo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R319 +s@^referer(?=:[^\n]*[./](?:woso\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R320 +s@^referer(?=:[^\n]*[./](?:www\.ifeng\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R321 +s@^referer(?=:[^\n]*[./](?:www\.taobao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R322 +s@^referer(?=:[^\n]*[./](?:x\.jd\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R323 +s@^referer(?=:[^\n]*[./](?:xcar\.com\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R324 +s@^referer(?=:[^\n]*[./](?:xdf\.cn)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R325 +s@^referer(?=:[^\n]*[./](?:xingk\.cc)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R326 +s@^referer(?=:[^\n]*[./](?:ybjk\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R327 +s@^referer(?=:[^\n]*[./](?:youku\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R328 +s@^referer(?=:[^\n]*[./](?:ypan\.cc)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R60 +s@^referer(?=:[^\n]*[./](?:chineseinla\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Rn187 +s@^referer(?!:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-unblock-request@Ti +s@^referer:.*@-ab2p-unblock-request-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Rnt +s@^referer:.*@$&\t$host@Di +s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request@i +s@^referer:.*@-ab2p-unblock-request-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx +s@^x-requested-with(?=:\s*(?:xmlhttprequest)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R284 +s@^referer(?=:[^\n]*[./](?:on\.cc)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R307 +s@^referer(?=:[^\n]*[./](?:tw\.autos\.yahoo\.com|tw\.buy\.yahoo\.com)):.*@ab2p-unblock-request-Xx@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-nC +s@^.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-nR +s@^.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R244 +s@^referer(?=:[^\n]*[./](?:flv\.tv)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R329 +s@^referer(?=:[^\n]*[./](?:zalora\.com\.hk)):.*@ab2p-unblock-xframe@Ti diff --git a/1_9.r18_plugin/ad_plug/rule1/ab2p.system.action b/1_9.r18_plugin/ad_plug/rule1/ab2p.system.action new file mode 100644 index 0000000..4c516de --- /dev/null +++ b/1_9.r18_plugin/ad_plug/rule1/ab2p.system.action @@ -0,0 +1,32 @@ +#AbBlock system actions -- don't edit -- + +{+set-image-blocker{blank} \ + +filter{ab2p-elemhide-filter} \ + +client-header-tagger{ab2p-elemhide-check-debug} \ + +client-header-tagger{ab2p-handle-as-image-c} \ + +server-header-tagger{ab2p-handle-as-image-s}} +/ + +{-filter{ab2p-elemhide-filter} \ + +filter{ab2p-elemhide-filter-debug}} +TAG:^ab2p-elemhide-filter-debug$ + +{+handle-as-image} +TAG:^ab2p-handle-as-image$ + +{+block{ adblock rules }} +TAG:^ab2p-block-s$ + +{-block} +TAG:^ab2p-unblock-u$ + +{-block} +TAG:^ab2p-unblock-d$ + +{-block} +TAG:^ab2p-unblock-s$ + +#workaround for gzip handling privoxy bugs +{ +prevent-compression } + *.yahoo.com + *.amazon.com diff --git a/1_9.r18_plugin/ad_plug/rule1/ab2p.system.filter b/1_9.r18_plugin/ad_plug/rule1/ab2p.system.filter new file mode 100644 index 0000000..57302f9 --- /dev/null +++ b/1_9.r18_plugin/ad_plug/rule1/ab2p.system.filter @@ -0,0 +1,39 @@ +#AbBlock system filters -- don't edit -- + + +SERVER-HEADER-TAGGER: ab2p-block-s +s@.*@ab2p-block-s@Ti + + +CLIENT-HEADER-TAGGER: ab2b-unblock-u +s@user-agent.*@ab2p-unblock-u@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-d +s@date.*@ab2p-unblock-d@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-s +s@server.*@ab2p-unblock-s@Ti + + +SERVER-HEADER-TAGGER: ab2p-handle-as-image-s +s@^content-type(?=:[\s\w]*image\/):.*@ab2p-handle-as-image@Ti + +CLIENT-HEADER-TAGGER: ab2p-handle-as-image-c +s@^accept(?=:[\s\w]*image\/):.*@ab2p-handle-as-image@Ti + +SERVER-HEADER-FILTER: ab2p-xframe-filter +s@.*\sHTTP\/1.*@$&\r\nX-Frame-Options: DENY@i + +CLIENT-HEADER-TAGGER: ab2p-elemhide-check-debug +s@^cookie:.*ab2p-elemhide-filter-debug=true(?:;|$).*@ab2p-elemhide-filter-debug@Ti + +FILTER: ab2p-elemhide-filter +s@[^'"\s]\s*]*>(?=\s*[^'"\s])@$&@iUD + +FILTER: ab2p-elemhide-filter-debug +s@[^'"\s]\s*]*>(?=\s*[^'"\s])@$&@iUD + +FILTER: ab2p-popup-filter +s@[^'"\s]\s*]*>(?=\s*[^'"\s])@$&@iUD + + diff --git a/1_9.r18_plugin/ad_plug/rule2/ab2p.action b/1_9.r18_plugin/ad_plug/rule2/ab2p.action new file mode 100644 index 0000000..214b970 --- /dev/null +++ b/1_9.r18_plugin/ad_plug/rule2/ab2p.action @@ -0,0 +1,74476 @@ +#AbBlock generated actions -- don't edit -- +#----- source ----- +#Title: EasyPrivacy +#Url: https://easylist-downloads.adblockplus.org/easyprivacy.txt +#Last modified: 29 Jan 2016 16:01 UTC +#Expires: 96 hours +#Version: 201601291601 +#License: https://easylist-downloads.adblockplus.org/COPYING +#Homepage: https://easylist.adblockplus.org/ +#------- end ------ + +#-ab2p-block-request-nX +{-client-header-tagger{ab2p-block-request-nX} \ +} +TAG:^-ab2p-block-request-nX$ + +#ab2p-block-dnt +{+add-header{DNT: 1} \ +} +TAG:^ab2p-block-dnt$ +# ||target.ukr.net^ (easyprivacy.txt: 10158) +.target.ukr.net +# ||piccy.org.ua/c? (easyprivacy.txt: 10157) +.piccy.org.ua/c\? +# ||piccy.info/c? (easyprivacy.txt: 10156) +.piccy.info/c\? +# ||meta.ua/c.asp? (easyprivacy.txt: 10155) +.meta.ua/c\.asp\? +# ||hit.meta.ua^ (easyprivacy.txt: 10154) +.hit.meta.ua +# ||counter.ukr.net^ (easyprivacy.txt: 10153) +.counter.ukr.net +# ||at.ua/stat/ (easyprivacy.txt: 10152) +.at.ua/stat/ +# |http://r.i.ua/s? (easyprivacy.txt: 10151) +r.i.ua/s\? +# ||p.milliyet.com.tr^ (easyprivacy.txt: 10149) +.p.milliyet.com.tr +# ||haberler.com/dinamik/ (easyprivacy.txt: 10148) +.haberler.com/dinamik/ +# ||c.gazetevatan.com^ (easyprivacy.txt: 10147) +.c.gazetevatan.com +# ||prod-metro-collector.cloudapp.net^ (easyprivacy.txt: 10145) +.prod-metro-collector.cloudapp.net +# ||prisjakt.nu/js.php?p=trafikfonden (easyprivacy.txt: 10144) +.prisjakt.nu/js\.php\?p=trafikfonden +# ||fusion.bonniertidskrifter.se^ (easyprivacy.txt: 10143) +.fusion.bonniertidskrifter.se +# ||blocket.se/js/trafikfonden.js (easyprivacy.txt: 10142) +.blocket.se/js/trafikfonden\.js +# ||beacon.mtgx.tv^ (easyprivacy.txt: 10141) +.beacon.mtgx.tv +# ||analytics.codigo.se^ (easyprivacy.txt: 10140) +.analytics.codigo.se +# ||trrsf.com/metrics/ (easyprivacy.txt: 10138) +.trrsf.com/metrics/ +# ||terra.com^*/td.asp?bstat (easyprivacy.txt: 10137) +.terra.com/.*/td\.asp\?bstat +# ||terra.com/js/metrics/ (easyprivacy.txt: 10136) +.terra.com/js/metrics/ +# ||terra.com.mx^*/metrics_end.js (easyprivacy.txt: 10135) +.terra.com.mx/.*/metrics_end\.js +# ||terra.com.mx^*/metrics_begin.js (easyprivacy.txt: 10134) +.terra.com.mx/.*/metrics_begin\.js +# ||terra.com.mx/js/metricspar_ (easyprivacy.txt: 10133) +.terra.com.mx/js/metricspar_ +# ||t13.cl/hit/ (easyprivacy.txt: 10132) +.t13.cl/hit/ +# ||stats.milenio.com^ (easyprivacy.txt: 10131) +.stats.milenio.com +# ||hits.antena3.com^ (easyprivacy.txt: 10130) +.hits.antena3.com +# ||g.siliconweek.es^ (easyprivacy.txt: 10129) +.g.siliconweek.es +# ||fls-eu.amazon.es^ (easyprivacy.txt: 10128) +.fls-eu.amazon.es +# ||estadonline.publiguias.cl^ (easyprivacy.txt: 10127) +.estadonline.publiguias.cl +# ||estadisticas.lanacion.com.ar^ (easyprivacy.txt: 10126) +.estadisticas.lanacion.com.ar +# ||esmas.com/scripts/esmas_stats.js (easyprivacy.txt: 10125) +.esmas.com/scripts/esmas_stats\.js +# ||coletor.terra.com^ (easyprivacy.txt: 10124) +.coletor.terra.com +# ||analytics.infobae.com^ (easyprivacy.txt: 10123) +.analytics.infobae.com +# ||24ur.com/bin/player/?mod=statistics& (easyprivacy.txt: 10121) +.24ur.com/bin/player/\?mod=statistics& +# ||trak-analytics.blic.rs^ (easyprivacy.txt: 10119) +.trak-analytics.blic.rs +# ||yast.rutube.ru^ (easyprivacy.txt: 10117) +.yast.rutube.ru +# ||yandex.ru/clck/ (easyprivacy.txt: 10116) +.yandex.ru/clck/ +# ||vedomosti.ru/boom? (easyprivacy.txt: 10115) +.vedomosti.ru/boom\? +# ||stats.lifenews.ru^ (easyprivacy.txt: 10114) +.stats.lifenews.ru +# ||stat.lenta.ru^ (easyprivacy.txt: 10113) +.stat.lenta.ru +# ||rutube.ru/img/playerstats.gif? (easyprivacy.txt: 10112) +.rutube.ru/img/playerstats\.gif\? +# ||rutube.ru/dbg/player_stat? (easyprivacy.txt: 10111) +.rutube.ru/dbg/player_stat\? +# ||rutube.ru/counters.html? (easyprivacy.txt: 10110) +.rutube.ru/counters\.html\? +# ||rbc.ru/count/ (easyprivacy.txt: 10109) +.rbc.ru/count/ +# ||rbc.ru/click? (easyprivacy.txt: 10108) +.rbc.ru/click\? +# ||montblanc.lenta.ru^ (easyprivacy.txt: 10107) +.montblanc.lenta.ru +# ||mail.ru/counter? (easyprivacy.txt: 10106) +.mail.ru/counter\? +# ||mail.ru/count/ (easyprivacy.txt: 10105) +.mail.ru/count/ +# ||kommersant.ru/a.asp?p= (easyprivacy.txt: 10104) +.kommersant.ru/a\.asp\?p= +# ||kiks.yandex.ru^ (easyprivacy.txt: 10103) +.kiks.yandex.ru +# ||ad7.bigmir.net^ (easyprivacy.txt: 10102) +.ad7.bigmir.net +# ||uv.terra.com.br^ (easyprivacy.txt: 10100) +.uv.terra.com.br +# ||urchin.estadao.com.br^ (easyprivacy.txt: 10099) +.urchin.estadao.com.br +# ||uol.com.br/stats? (easyprivacy.txt: 10098) +.uol.com.br/stats\? +# ||tracker.bt.uol.com.br^ (easyprivacy.txt: 10097) +.tracker.bt.uol.com.br +# ||sl.pt/wa.gif? (easyprivacy.txt: 10096) +.sl.pt/wa\.gif\? +# ||sapo.*/clk?u= (easyprivacy.txt: 10095) +.sapo.*./(.*/)?clk\?u= +# ||rtp.pt/common/js/analytics.js (easyprivacy.txt: 10094) +.rtp.pt/common/js/analytics\.js +# ||metrics.uol.com.br^ (easyprivacy.txt: 10093) +.metrics.uol.com.br +# ||log.r7.com^ (easyprivacy.txt: 10092) +.log.r7.com +# ||lancenet.com.br/pw.js (easyprivacy.txt: 10091) +.lancenet.com.br/pw\.js +# ||iol.pt/js/analytics.js (easyprivacy.txt: 10090) +.iol.pt/js/analytics\.js +# ||g.bitmag.com.br^ (easyprivacy.txt: 10089) +.g.bitmag.com.br +# ||g.bit.pt^ (easyprivacy.txt: 10088) +.g.bit.pt +# ||dna.uol.com.br^ (easyprivacy.txt: 10087) +.dna.uol.com.br +# ||dejavu.mercadolivre.com.br^ (easyprivacy.txt: 10086) +.dejavu.mercadolivre.com.br +# ||click.uol.com.br^ (easyprivacy.txt: 10085) +.click.uol.com.br +# ||wp.pl/?rid= (easyprivacy.txt: 10083) +.wp.pl/\?rid= +# ||stats.teledyski.info^ (easyprivacy.txt: 10082) +.stats.teledyski.info +# ||squid.gazeta.pl/bdtrck/ (easyprivacy.txt: 10081) +.squid.gazeta.pl/bdtrck/ +# ||rek.www.wp.pl^ (easyprivacy.txt: 10080) +.rek.www.wp.pl +# ||nasza-klasa.pl^*/pp_gemius (easyprivacy.txt: 10079) +.nasza-klasa.pl/.*/pp_gemius +# ||mklik.gazeta.pl^ (easyprivacy.txt: 10078) +.mklik.gazeta.pl +# ||kropka.onet.pl^ (easyprivacy.txt: 10077) +.kropka.onet.pl +# ||dot.wp.pl^ (easyprivacy.txt: 10076) +.dot.wp.pl +# ||analytics.gazeta.pl^ (easyprivacy.txt: 10075) +.analytics.gazeta.pl +# |http://x.o2.pl^ (easyprivacy.txt: 10074) +x.o2.pl +# ||irib.ir/counter/stat.js (easyprivacy.txt: 10072) +.irib.ir/counter/stat\.js +# ||irib.ir/count.php? (easyprivacy.txt: 10071) +.irib.ir/count\.php\? +# ||webhit.aftenposten.no^ (easyprivacy.txt: 10069) +.webhit.aftenposten.no +# ||vg.no/stats/ (easyprivacy.txt: 10068) +.vg.no/stats/ +# ||nrk.no^*/stats/ (easyprivacy.txt: 10067) +.nrk.no/.*/stats/ +# ||fusion.nettavisen.no^ (easyprivacy.txt: 10066) +.fusion.nettavisen.no +# ||click.vgnett.no^ (easyprivacy.txt: 10065) +.click.vgnett.no +# ||tanks.lv/top/stats.php (easyprivacy.txt: 10063) +.tanks.lv/top/stats\.php +# ||t.delfi.lv/_a? (easyprivacy.txt: 10062) +.t.delfi.lv/_a\? +# ||stats.tunt.lv^ (easyprivacy.txt: 10061) +.stats.tunt.lv +# ||ss.lv/counter/ (easyprivacy.txt: 10060) +.ss.lv/counter/ +# ||reklama.lv/services/espy.php (easyprivacy.txt: 10059) +.reklama.lv/services/espy\.php +# ||insbergs.lv/ins_statistics/ (easyprivacy.txt: 10058) +.insbergs.lv/ins_statistics/ +# ||inbox.lv^*/ga.js (easyprivacy.txt: 10057) +.inbox.lv/.*/ga\.js +# ||e-spy.petit.lv^ (easyprivacy.txt: 10056) +.e-spy.petit.lv +# ||diena.lv/statistics/ (easyprivacy.txt: 10055) +.diena.lv/statistics/ +# ||delphi.lv/t/t.js (easyprivacy.txt: 10054) +.delphi.lv/t/t\.js +# ||delfi.lv/t/p.js (easyprivacy.txt: 10053) +.delfi.lv/t/p\.js +# ||cv.ee/static/stat.php (easyprivacy.txt: 10052) +.cv.ee/static/stat\.php +# ||ytn.co.kr/_comm/ylog.php? (easyprivacy.txt: 10050) +.ytn.co.kr/_comm/ylog\.php\? +# ||naver.com/PostView.nhn?$image (easyprivacy.txt: 10049) +.naver.com/PostView\.nhn\? +# ||lcs.naver.com^ (easyprivacy.txt: 10048) +.lcs.naver.com +# ||hitweb2.chosun.com^ (easyprivacy.txt: 10047) +.hitweb2.chosun.com +# ||hits.zdnet.co.kr^ (easyprivacy.txt: 10046) +.hits.zdnet.co.kr +# ||gather.hankyung.com^ (easyprivacy.txt: 10045) +.gather.hankyung.com +# ||chosun.com/hitlog/ (easyprivacy.txt: 10044) +.chosun.com/hitlog/ +# ||yahoo.co.jp/b?p= (easyprivacy.txt: 10041) +.yahoo.co.jp/b\?p= +# ||visit.geocities.jp^ (easyprivacy.txt: 10040) +.visit.geocities.jp +# ||seesaawiki.jp/img/rainman.gif? (easyprivacy.txt: 10039) +.seesaawiki.jp/img/rainman\.gif\? +# ||mainichi.jp^*/null.gif? (easyprivacy.txt: 10038) +.mainichi.jp/.*/null\.gif\? +# ||i2i.jp/bin/ (easyprivacy.txt: 10037) +.i2i.jp/bin/ +# ||goo.ne.jp^*/vltracedmd.js (easyprivacy.txt: 10036) +.goo.ne.jp/.*/vltracedmd\.js +# ||fujitv.co.jp/pc/space.gif? (easyprivacy.txt: 10035) +.fujitv.co.jp/pc/space\.gif\? +# ||fls-fe.amazon.co.jp^ (easyprivacy.txt: 10034) +.fls-fe.amazon.co.jp +# ||carview.co.jp/include_api/log/ (easyprivacy.txt: 10033) +.carview.co.jp/include_api/log/ +# ||analyzer2.fc2.com^ (easyprivacy.txt: 10032) +.analyzer2.fc2.com +# ||analyzer.fc2.com^ (easyprivacy.txt: 10031) +.analyzer.fc2.com +# ||analytics.cocolog-nifty.com^ (easyprivacy.txt: 10030) +.analytics.cocolog-nifty.com +# ||ameblo.jp/accesslog/ (easyprivacy.txt: 10029) +.ameblo.jp/accesslog/ +# ||yachtingnetwork.it/stat/ (easyprivacy.txt: 10027) +.yachtingnetwork.it/stat/ +# ||volkswagen-italia.it^*/tracking/ (easyprivacy.txt: 10026) +.volkswagen-italia.it/.*/tracking/ +# ||virgilio.it/clientinfo.gif? (easyprivacy.txt: 10025) +.virgilio.it/clientinfo\.gif\? +# ||videogame.it/a/logview/ (easyprivacy.txt: 10024) +.videogame.it/a/logview/ +# ||video.mediaset.it/polymediashowanalytics/ (easyprivacy.txt: 10023) +.video.mediaset.it/polymediashowanalytics/ +# ||trk.m.libero.it^ (easyprivacy.txt: 10022) +.trk.m.libero.it +# ||tracking.gruppo.mps.it^ (easyprivacy.txt: 10021) +.tracking.gruppo.mps.it +# ||track.tesiteca.it^ (easyprivacy.txt: 10020) +.track.tesiteca.it +# ||topolino.it^*/omniture.php? (easyprivacy.txt: 10019) +.topolino.it/.*/omniture\.php\? +# ||tiscali.it/banner-tiscali/stats.html? (easyprivacy.txt: 10018) +.tiscali.it/banner-tiscali/stats\.html\? +# ||stats.splinder.com^ (easyprivacy.txt: 10017) +.stats.splinder.com +# ||spaziogames.it/ajax/player_impression.ashx? (easyprivacy.txt: 10016) +.spaziogames.it/ajax/player_impression\.ashx\? +# ||smsaffari.it/count_new.php? (easyprivacy.txt: 10015) +.smsaffari.it/count_new\.php\? +# ||siteinfo.libero.it^ (easyprivacy.txt: 10014) +.siteinfo.libero.it +# ||servizi.unionesarda.it/controlli/ (easyprivacy.txt: 10013) +.servizi.unionesarda.it/controlli/ +# ||seat.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10012) +.seat.it/cgi-bin/getcod\.cgi\? +# ||quattroruote.it/log.htm? (easyprivacy.txt: 10011) +.quattroruote.it/log\.htm\? +# ||pornolupo.org/track.js (easyprivacy.txt: 10010) +.pornolupo.org/track\.js +# ||paginegialle.it/cgi-bin/jimpres.cgi? (easyprivacy.txt: 10009) +.paginegialle.it/cgi-bin/jimpres\.cgi\? +# ||paginegialle.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10008) +.paginegialle.it/cgi-bin/getcod\.cgi\? +# ||mtv.it/flux/trackingcodes/ (easyprivacy.txt: 10007) +.mtv.it/flux/trackingcodes/ +# ||mediaset.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10006) +.mediaset.it/cgi-bin/getcod\.cgi\? +# ||livestats.la7.tv^ (easyprivacy.txt: 10005) +.livestats.la7.tv +# ||libero.it^*/counter.php? (easyprivacy.txt: 10004) +.libero.it/.*/counter\.php\? +# ||libero.it/search/abin/ajaxtrace? (easyprivacy.txt: 10003) +.libero.it/search/abin/ajaxtrace\? +# ||libero.it/cgi-bin/cdcountersp.cgi? (easyprivacy.txt: 10002) +.libero.it/cgi-bin/cdcountersp\.cgi\? +# ||libero.it/cgi-bin/cdcounter.cgi? (easyprivacy.txt: 10001) +.libero.it/cgi-bin/cdcounter\.cgi\? +# ||libero.it/cgi-bin/ajaxtrace? (easyprivacy.txt: 10000) +.libero.it/cgi-bin/ajaxtrace\? +# ||libero.it//js/comscore/ (easyprivacy.txt: 9999) +# ||la7.tv/ricerca/livestats.php? (easyprivacy.txt: 9998) +.la7.tv/ricerca/livestats\.php\? +# ||la7.it/js-live/nielsen1.js (easyprivacy.txt: 9997) +.la7.it/js-live/nielsen1\.js +# ||la7.it/js-live/livestats.js (easyprivacy.txt: 9996) +.la7.it/js-live/livestats\.js +# ||joka.it/inquiero/isapi/csf.dll? (easyprivacy.txt: 9995) +.joka.it/inquiero/isapi/csf\.dll\? +# ||getscreensaver.it/statistiche/ (easyprivacy.txt: 9994) +.getscreensaver.it/statistiche/ +# ||gazzetta.it^*/stats.php? (easyprivacy.txt: 9993) +.gazzetta.it/.*/stats\.php\? +# ||g.techweekeurope.it^ (easyprivacy.txt: 9992) +.g.techweekeurope.it +# ||fls-eu.amazon.it^ (easyprivacy.txt: 9991) +.fls-eu.amazon.it +# ||emng.libero.it^ (easyprivacy.txt: 9990) +.emng.libero.it +# ||deagostinipassion.it/collezioni/analytics.js (easyprivacy.txt: 9989) +.deagostinipassion.it/collezioni/analytics\.js +# ||click.tv.repubblica.it^ (easyprivacy.txt: 9988) +.click.tv.repubblica.it +# ||ciao.it/flextag/ (easyprivacy.txt: 9987) +.ciao.it/flextag/ +# ||c-date.it^*/tracking2/tr.js (easyprivacy.txt: 9986) +.c-date.it/.*/tracking2/tr\.js +# ||c-date.it/tracking? (easyprivacy.txt: 9985) +.c-date.it/tracking\? +# ||bachecaannunci.it/statins3.php? (easyprivacy.txt: 9984) +.bachecaannunci.it/statins3\.php\? +# ||analytics.tio.ch^ (easyprivacy.txt: 9983) +.analytics.tio.ch +# ||altervista.org^*/tb_hits_ (easyprivacy.txt: 9982) +.altervista.org/.*/tb_hits_ +# ||altervista.org/stats/ (easyprivacy.txt: 9981) +.altervista.org/stats/ +# ||altervista.org/js_tags/contatore.js (easyprivacy.txt: 9980) +.altervista.org/js_tags/contatore\.js +# ||altervista.org/js/contatore.js (easyprivacy.txt: 9979) +.altervista.org/js/contatore\.js +# ||altervista.org/fcgi/counter.pl? (easyprivacy.txt: 9978) +.altervista.org/fcgi/counter\.pl\? +# ||videa.hu/flvplayer_setcookie.php? (easyprivacy.txt: 9976) +.videa.hu/flvplayer_setcookie\.php\? +# ||walla.co.il/impression/ (easyprivacy.txt: 9974) +.walla.co.il/impression/ +# ||walla.co.il/CountsHP.asp? (easyprivacy.txt: 9973) +.walla.co.il/CountsHP\.asp\? +# ||stats.mako.co.il^ (easyprivacy.txt: 9972) +.stats.mako.co.il +# ||nana10.co.il/statistics/ (easyprivacy.txt: 9971) +.nana10.co.il/statistics/ +# ||inn.co.il/Controls/HPJS.ashx?act=log (easyprivacy.txt: 9970) +.inn.co.il/Controls/HPJS\.ashx\?act=log +# ||events.walla.co.il/events.asp (easyprivacy.txt: 9969) +.events.walla.co.il/events\.asp +# ||cellstats.mako.co.il^ (easyprivacy.txt: 9968) +.cellstats.mako.co.il +# ||bravo.israelweather.co.il^ (easyprivacy.txt: 9967) +.bravo.israelweather.co.il +# ||vidads.gr/imp/ (easyprivacy.txt: 9965) +.vidads.gr/imp/ +# ||ts.fi^*/spring.js (easyprivacy.txt: 9963) +.ts.fi/.*/spring\.js +# ||tiede.fi^*/zig.js (easyprivacy.txt: 9962) +.tiede.fi/.*/zig\.js +# ||stat.mtv3.fi^ (easyprivacy.txt: 9961) +.stat.mtv3.fi +# ||snstatic.fi^*/zig.js (easyprivacy.txt: 9960) +.snstatic.fi/.*/zig\.js +# ||sanoma.fi^*/zig.js (easyprivacy.txt: 9959) +.sanoma.fi/.*/zig\.js +# ||oikotie.fi^*/zig.js (easyprivacy.txt: 9958) +.oikotie.fi/.*/zig\.js +# ||mtv3.fi/remarketing.js (easyprivacy.txt: 9957) +.mtv3.fi/remarketing\.js +# ||iltasanomat.fi^*/zig_c.min.js (easyprivacy.txt: 9956) +.iltasanomat.fi/.*/zig_c\.min\.js +# ||huuto.net/js/analytic/ (easyprivacy.txt: 9955) +.huuto.net/js/analytic/ +# ||autobild.fi/zig.js (easyprivacy.txt: 9954) +.autobild.fi/zig\.js +# ||analytics.sanoma.fi^ (easyprivacy.txt: 9953) +.analytics.sanoma.fi +# ||3t.fi^*/zig.js (easyprivacy.txt: 9952) +.3t.fi/.*/zig\.js +# ||webstatistieken.xs4all.nl^ (easyprivacy.txt: 9950) +.webstatistieken.xs4all.nl +# ||vroom.be^*/stats.php? (easyprivacy.txt: 9949) +.vroom.be/.*/stats\.php\? +# ||vroom.be^*/stats.js? (easyprivacy.txt: 9948) +.vroom.be/.*/stats\.js\? +# ||simyo.nl/js/tracking.js? (easyprivacy.txt: 9947) +.simyo.nl/js/tracking\.js\? +# ||sanoma.nl/pixel/ (easyprivacy.txt: 9946) +.sanoma.nl/pixel/ +# ||rtl.nl/system/track/ (easyprivacy.txt: 9945) +.rtl.nl/system/track/ +# ||marktplaats.nl/add_counter_image. (easyprivacy.txt: 9944) +.marktplaats.nl/add_counter_image\. +# ||logs.ggweb.nl^ (easyprivacy.txt: 9943) +.logs.ggweb.nl +# ||klik.nrc.nl/ping? (easyprivacy.txt: 9942) +.klik.nrc.nl/ping\? +# ||o2.cz^*-ga_o2cz_bundle.js? (easyprivacy.txt: 9940) +.o2.cz/.*-ga_o2cz_bundle\.js\? +# ||kbmg.cz/tracker.js (easyprivacy.txt: 9939) +.kbmg.cz/tracker\.js +# ||blesk.cz/js/tracker.js (easyprivacy.txt: 9938) +.blesk.cz/js/tracker\.js +# ||jutarnji.hr/template/js/eph_analytics.js (easyprivacy.txt: 9936) +.jutarnji.hr/template/js/eph_analytics\.js +# ||dnevnik.hr/bin/usrtrck-new.php? (easyprivacy.txt: 9935) +.dnevnik.hr/bin/usrtrck-new\.php\? +# ||youku.com^*/click.php? (easyprivacy.txt: 9933) +.youku.com/.*/click\.php\? +# ||youku.com/yplaylog? (easyprivacy.txt: 9932) +.youku.com/yplaylog\? +# ||youku.com/ykvvlog? (easyprivacy.txt: 9931) +.youku.com/ykvvlog\? +# ||youku.com/compvlog? (easyprivacy.txt: 9930) +.youku.com/compvlog\? +# ||youdao.com/imp/cac.js (easyprivacy.txt: 9929) +.youdao.com/imp/cac\.js +# ||youdao.com/cf.gif? (easyprivacy.txt: 9928) +.youdao.com/cf\.gif\? +# ||wumii.com/images/pixel.png (easyprivacy.txt: 9927) +.wumii.com/images/pixel\.png +# ||wenku.baidu.com/tongji/ (easyprivacy.txt: 9926) +.wenku.baidu.com/tongji/ +# ||webstat.kuwo.cn^ (easyprivacy.txt: 9925) +.webstat.kuwo.cn +# ||webclick.yeshj.com^ (easyprivacy.txt: 9924) +.webclick.yeshj.com +# ||weather.com.cn/a1.js (easyprivacy.txt: 9923) +.weather.com.cn/a1\.js +# ||vatrack.hinet.net^ (easyprivacy.txt: 9922) +.vatrack.hinet.net +# ||v.blog.sohu.com/dostat.do? (easyprivacy.txt: 9921) +.v.blog.sohu.com/dostat\.do\? +# ||utrack.hexun.com^ (easyprivacy.txt: 9920) +.utrack.hexun.com +# ||unstat.baidu.com^$~subdocument (easyprivacy.txt: 9919) +.unstat.baidu.com +# ||uestat.video.qiyi.com^ (easyprivacy.txt: 9918) +.uestat.video.qiyi.com +# ||tv.sohu.com/upload/trace/ (easyprivacy.txt: 9917) +.tv.sohu.com/upload/trace/ +# ||tracker.live.tudou.com^ (easyprivacy.txt: 9916) +.tracker.live.tudou.com +# ||top.baidu.com/js/nsclick.js (easyprivacy.txt: 9915) +.top.baidu.com/js/nsclick\.js +# ||tongji2.vip.duba.net/__infoc.gif? (easyprivacy.txt: 9914) +.tongji2.vip.duba.net/__infoc\.gif\? +# ||tmall.com/add? (easyprivacy.txt: 9913) +.tmall.com/add\? +# ||titan24.com/scripts/stats.js (easyprivacy.txt: 9912) +.titan24.com/scripts/stats\.js +# ||tinglog.baidu.com^ (easyprivacy.txt: 9911) +.tinglog.baidu.com +# ||tf.360.cn^ (easyprivacy.txt: 9910) +.tf.360.cn +# ||stats.tudou.com^ (easyprivacy.txt: 9909) +.stats.tudou.com +# ||stats.autohome.com.cn^ (easyprivacy.txt: 9908) +.stats.autohome.com.cn +# ||statistic.takungpao.com^ (easyprivacy.txt: 9907) +.statistic.takungpao.com +# ||statistic.qzone.qq.com^ (easyprivacy.txt: 9906) +.statistic.qzone.qq.com +# ||static.qiyi.com/js/pingback/ (easyprivacy.txt: 9905) +.static.qiyi.com/js/pingback/ +# ||stat.zol.com.cn^ (easyprivacy.txt: 9904) +.stat.zol.com.cn +# ||stat.xunlei.com^ (easyprivacy.txt: 9903) +.stat.xunlei.com +# ||stat.uuu9.com^ (easyprivacy.txt: 9902) +.stat.uuu9.com +# ||stat.tudou.com^ (easyprivacy.txt: 9901) +.stat.tudou.com +# ||stat.tianya.cn^ (easyprivacy.txt: 9900) +.stat.tianya.cn +# ||stat.stheadline.com^ (easyprivacy.txt: 9899) +.stat.stheadline.com +# ||stat.pptv.com^ (easyprivacy.txt: 9898) +.stat.pptv.com +# ||stat.ppstream.com^ (easyprivacy.txt: 9897) +.stat.ppstream.com +# ||stat.ku6.com^ (easyprivacy.txt: 9896) +.stat.ku6.com +# ||stat.iteye.com^ (easyprivacy.txt: 9895) +.stat.iteye.com +# ||stat.hudong.com^ (easyprivacy.txt: 9894) +.stat.hudong.com +# ||stat.funshion.net^ (easyprivacy.txt: 9893) +.stat.funshion.net +# ||stat.caijing.com.cn^ (easyprivacy.txt: 9892) +.stat.caijing.com.cn +# ||stat.bilibili.tv^ (easyprivacy.txt: 9891) +.stat.bilibili.tv +# ||stat.55bbs.com^ (easyprivacy.txt: 9890) +.stat.55bbs.com +# ||stat.1688.com^ (easyprivacy.txt: 9889) +.stat.1688.com +# ||stadig.ifeng.com^ (easyprivacy.txt: 9888) +.stadig.ifeng.com +# ||sta.ifeng.com^ (easyprivacy.txt: 9887) +.sta.ifeng.com +# ||st.vq.ku6.cn^ (easyprivacy.txt: 9886) +.st.vq.ku6.cn +# ||soufun.com/stats/ (easyprivacy.txt: 9885) +.soufun.com/stats/ +# ||soufun.com/click/ (easyprivacy.txt: 9884) +.soufun.com/click/ +# ||sohu.com/pv? (easyprivacy.txt: 9883) +.sohu.com/pv\? +# ||sohu.com/ctr.gif? (easyprivacy.txt: 9882) +.sohu.com/ctr\.gif\? +# ||sohu.com.cn/hdpb.gif? (easyprivacy.txt: 9881) +.sohu.com.cn/hdpb\.gif\? +# ||shrek.6.cn^ (easyprivacy.txt: 9880) +.shrek.6.cn +# ||sclick.baidu.com^ (easyprivacy.txt: 9879) +.sclick.baidu.com +# ||s.renren.com^ (easyprivacy.txt: 9878) +.s.renren.com +# ||s.qhupdate.com^ (easyprivacy.txt: 9877) +.s.qhupdate.com +# ||s.pixfs.net/visitor.pixplug.in/ (easyprivacy.txt: 9876) +.s.pixfs.net/visitor\.pixplug\.in/ +# ||s.pixfs.net/js/pixlogger.min.js (easyprivacy.txt: 9875) +.s.pixfs.net/js/pixlogger\.min\.js +# ||s.360.cn^ (easyprivacy.txt: 9874) +.s.360.cn +# ||rgd.com.cn/counter/ (easyprivacy.txt: 9873) +.rgd.com.cn/counter/ +# ||report.qq.com^ (easyprivacy.txt: 9872) +.report.qq.com +# ||rcgi.video.qq.com^ (easyprivacy.txt: 9871) +.rcgi.video.qq.com +# ||ranking.ynet.com^ (easyprivacy.txt: 9870) +.ranking.ynet.com +# ||qq.com/p? (easyprivacy.txt: 9869) +.qq.com/p\? +# ||pingjs.qq.com^ (easyprivacy.txt: 9868) +.pingjs.qq.com +# ||pingback.sogou.com^ (easyprivacy.txt: 9867) +.pingback.sogou.com +# ||pb.i.sogou.com^ (easyprivacy.txt: 9866) +.pb.i.sogou.com +# ||pan.baidu.com/api/analytics? (easyprivacy.txt: 9865) +.pan.baidu.com/api/analytics\? +# ||p-log.ykimg.com^ (easyprivacy.txt: 9864) +.p-log.ykimg.com +# ||on.cc^*/checkrev.gif? (easyprivacy.txt: 9863) +.on.cc/.*/checkrev\.gif\? +# ||nstat.tudou.com^ (easyprivacy.txt: 9862) +.nstat.tudou.com +# ||nextmedia.com/1x1.gif? (easyprivacy.txt: 9861) +.nextmedia.com/1x1\.gif\? +# ||narutom.com/stat.js (easyprivacy.txt: 9860) +.narutom.com/stat\.js +# ||luobo.tv/staticts.html (easyprivacy.txt: 9859) +.luobo.tv/staticts\.html +# ||logstat.caixin.com^ (easyprivacy.txt: 9858) +.logstat.caixin.com +# ||logs.live.tudou.com^ (easyprivacy.txt: 9857) +.logs.live.tudou.com +# ||logs.51cto.com^ (easyprivacy.txt: 9856) +.logs.51cto.com +# ||loginlog.sdo.com^ (easyprivacy.txt: 9855) +.loginlog.sdo.com +# ||log1.17173.com^ (easyprivacy.txt: 9854) +.log1.17173.com +# ||log.ynet.com^ (easyprivacy.txt: 9853) +.log.ynet.com +# ||log.kuwo.cn^ (easyprivacy.txt: 9852) +.log.kuwo.cn +# ||log.51cto.com^ (easyprivacy.txt: 9851) +.log.51cto.com +# ||log*.ku6.com^ (easyprivacy.txt: 9850) +.log*./.*\.ku6\.com[^\w%.-] +.log*.ku6.com +# ||ku6.com/ku6.gif? (easyprivacy.txt: 9849) +.ku6.com/ku6\.gif\? +# ||jscss.kdslife.com/club/html/count/PChome_Count.js (easyprivacy.txt: 9848) +.jscss.kdslife.com/club/html/count/PChome_Count\.js +# ||js.soufunimg.com/count/ (easyprivacy.txt: 9847) +.js.soufunimg.com/count/ +# ||js.sohu.com/wrating0820.js (easyprivacy.txt: 9846) +.js.sohu.com/wrating0820\.js +# ||js.sohu.com/track/ (easyprivacy.txt: 9845) +.js.sohu.com/track/ +# ||js.kuwo.cn/stat/ (easyprivacy.txt: 9844) +.js.kuwo.cn/stat/ +# ||hk.ndx.nextmedia.com^ (easyprivacy.txt: 9843) +.hk.ndx.nextmedia.com +# ||his.tv.sohu.com/his/ping.do? (easyprivacy.txt: 9842) +.his.tv.sohu.com/his/ping\.do\? +# ||hdslb.com/images/isptrack.js (easyprivacy.txt: 9841) +.hdslb.com/images/isptrack\.js +# ||fls-cn.amazon.cn^ (easyprivacy.txt: 9840) +.fls-cn.amazon.cn +# ||firefoxchina.cn/*/trac.js (easyprivacy.txt: 9839) +.firefoxchina.cn/.*/trac\.js +# ||eclick.baidu.com^ (easyprivacy.txt: 9838) +.eclick.baidu.com +# ||ebook.tianya.cn/js/stat.js (easyprivacy.txt: 9837) +.ebook.tianya.cn/js/stat\.js +# ||eastmoney.com/counter.js? (easyprivacy.txt: 9836) +.eastmoney.com/counter\.js\? +# ||dwtracking.sdo.com^ (easyprivacy.txt: 9835) +.dwtracking.sdo.com +# ||duowan.com/public/s/market_count.js (easyprivacy.txt: 9834) +.duowan.com/public/s/market_count\.js +# ||duowan.com/duowan.js (easyprivacy.txt: 9833) +.duowan.com/duowan\.js +# ||docin.com/app/playerLoadLog/ (easyprivacy.txt: 9832) +.docin.com/app/playerLoadLog/ +# ||dmtracking.1688.com^ (easyprivacy.txt: 9831) +.dmtracking.1688.com +# ||dj.renren.com^ (easyprivacy.txt: 9830) +.dj.renren.com +# ||dc.letv.com^ (easyprivacy.txt: 9829) +.dc.letv.com +# ||dayoo.com/sta/da.js (easyprivacy.txt: 9828) +.dayoo.com/sta/da\.js +# ||cri.cn/wrating.js (easyprivacy.txt: 9827) +.cri.cn/wrating\.js +# ||cri.cn/a1.js (easyprivacy.txt: 9826) +.cri.cn/a1\.js +# ||counter.sina.com.cn/moodq? (easyprivacy.txt: 9825) +.counter.sina.com.cn/moodq\? +# ||count5.pconline.com.cn^ (easyprivacy.txt: 9824) +.count5.pconline.com.cn +# ||count.vrs.sohu.com^$object-subrequest (easyprivacy.txt: 9823) +.count.vrs.sohu.com +# ||count.video.sina.com.cn^ (easyprivacy.txt: 9822) +.count.video.sina.com.cn +# ||count.qiannao.com^ (easyprivacy.txt: 9821) +.count.qiannao.com +# ||count.newhua.com^ (easyprivacy.txt: 9820) +.count.newhua.com +# ||count.kandian.com^$object-subrequest (easyprivacy.txt: 9819) +.count.kandian.com +# ||count.joy.cn^ (easyprivacy.txt: 9818) +.count.joy.cn +# ||cnzz.com/stat. (easyprivacy.txt: 9817) +.cnzz.com/stat\. +# ||clkstat.qihoo.com^ (easyprivacy.txt: 9816) +.clkstat.qihoo.com +# ||cdn.baidupcs.com/monitor.jpg? (easyprivacy.txt: 9815) +.cdn.baidupcs.com/monitor\.jpg\? +# ||cast.ra.icast.cn^ (easyprivacy.txt: 9814) +.cast.ra.icast.cn +# ||btrace.qq.com^ (easyprivacy.txt: 9813) +.btrace.qq.com +# ||baofeng.com/script/baidu_ (easyprivacy.txt: 9812) +.baofeng.com/script/baidu_ +# ||baidu.com^*/w.gif? (easyprivacy.txt: 9811) +.baidu.com/.*/w\.gif\? +# ||baidu.com^*/s.gif? (easyprivacy.txt: 9810) +.baidu.com/.*/s\.gif\? +# ||baidu.com^*/c.gif? (easyprivacy.txt: 9809) +.baidu.com/.*/c\.gif\? +# ||baidu.com/tb/pms/img/st.gif? (easyprivacy.txt: 9808) +.baidu.com/tb/pms/img/st\.gif\? +# ||atm.youku.com^ (easyprivacy.txt: 9807) +.atm.youku.com +# ||analytics.zhihu.com^ (easyprivacy.txt: 9806) +.analytics.zhihu.com +# ||analytics.nextmedia.com^ (easyprivacy.txt: 9805) +.analytics.nextmedia.com +# ||analytics.163.com^ (easyprivacy.txt: 9804) +.analytics.163.com +# ||analy.qq.com^ (easyprivacy.txt: 9803) +.analy.qq.com +# ||adgeo.163.com^ (easyprivacy.txt: 9802) +.adgeo.163.com +# ||acfun.tv/api/count.aspx (easyprivacy.txt: 9801) +.acfun.tv/api/count\.aspx +# ||99sushe.com^*/stat.js (easyprivacy.txt: 9800) +.99sushe.com/.*/stat\.js +# ||591.com.tw/action/stat/ (easyprivacy.txt: 9799) +.591.com.tw/action/stat/ +# ||56img.com/script/fn/stat/ (easyprivacy.txt: 9798) +.56img.com/script/fn/stat/ +# ||55bbs.com/pv.js (easyprivacy.txt: 9797) +.55bbs.com/pv\.js +# ||17173.com/ping.js (easyprivacy.txt: 9796) +.17173.com/ping\.js +# ||counter.search.bg^ (easyprivacy.txt: 9793) +.counter.search.bg +# ||ratteb.com/js.js (easyprivacy.txt: 9791) +.ratteb.com/js\.js +# ||zonecss.fr/images/statscreen.gif? (easyprivacy.txt: 9789) +.zonecss.fr/images/statscreen\.gif\? +# ||zonecss.fr/images/stat_robocop.gif? (easyprivacy.txt: 9788) +.zonecss.fr/images/stat_robocop\.gif\? +# ||virginmobile.fr/ea.js (easyprivacy.txt: 9787) +.virginmobile.fr/ea\.js +# ||unblog.fr/cu.js (easyprivacy.txt: 9786) +.unblog.fr/cu\.js +# ||tracking.ha.rueducommerce.fr^ (easyprivacy.txt: 9785) +.tracking.ha.rueducommerce.fr +# ||tracking.cdiscount.com^ (easyprivacy.txt: 9784) +.tracking.cdiscount.com +# ||tracker.cds-tracking.com^ (easyprivacy.txt: 9783) +.tracker.cds-tracking.com +# ||tracker-id.cdiscount.com^ (easyprivacy.txt: 9782) +.tracker-id.cdiscount.com +# ||surace-jujitsu.fr/outils/compteur_php/ (easyprivacy.txt: 9781) +.surace-jujitsu.fr/outils/compteur_php/ +# ||stats1x1.kapaza.be^ (easyprivacy.txt: 9780) +.stats1x1.kapaza.be +# ||stat.webevolutis.com^ (easyprivacy.txt: 9779) +.stat.webevolutis.com +# ||sport365.fr/ea.js (easyprivacy.txt: 9778) +.sport365.fr/ea\.js +# ||sfr.fr/js/pent-stats.jsp (easyprivacy.txt: 9777) +.sfr.fr/js/pent-stats\.jsp +# ||rtl.fr/stats/ (easyprivacy.txt: 9776) +.rtl.fr/stats/ +# ||rtl.be^*/trkfblk.js (easyprivacy.txt: 9775) +.rtl.be/.*/trkfblk\.js +# ||r.orange.fr^ (easyprivacy.txt: 9774) +.r.orange.fr +# ||pagesjaunes.fr/crmmetrix/ (easyprivacy.txt: 9773) +.pagesjaunes.fr/crmmetrix/ +# ||pagesjaunes.fr/bva/track.js (easyprivacy.txt: 9772) +.pagesjaunes.fr/bva/track\.js +# ||p.pagesjaunes.fr^ (easyprivacy.txt: 9771) +.p.pagesjaunes.fr +# ||ovni9.com/suggestion/stats/ (easyprivacy.txt: 9770) +.ovni9.com/suggestion/stats/ +# ||orange.fr/track? (easyprivacy.txt: 9769) +.orange.fr/track\? +# ||nouvelobs.com/trafiz- (easyprivacy.txt: 9768) +.nouvelobs.com/trafiz- +# ||nouvelobs.com/tools/csrum.php (easyprivacy.txt: 9767) +.nouvelobs.com/tools/csrum\.php +# ||nouvelobs.com/scripts/stats.php? (easyprivacy.txt: 9766) +.nouvelobs.com/scripts/stats\.php\? +# ||lemde.fr^*/xiti/ (easyprivacy.txt: 9765) +.lemde.fr/.*/xiti/ +# ||lemde.fr^*/tracking/ (easyprivacy.txt: 9764) +.lemde.fr/.*/tracking/ +# ||lemde.fr^*/metrics/ (easyprivacy.txt: 9763) +.lemde.fr/.*/metrics/ +# ||lecho.be/fb/? (easyprivacy.txt: 9762) +.lecho.be/fb/\? +# ||lavenircdn.net^*/analytics.js? (easyprivacy.txt: 9761) +.lavenircdn.net/.*/analytics\.js\? +# ||hit.leboncoin.fr^ (easyprivacy.txt: 9760) +.hit.leboncoin.fr +# ||gstat.orange.fr^ (easyprivacy.txt: 9759) +.gstat.orange.fr +# ||grazia.fr/ea.js (easyprivacy.txt: 9758) +.grazia.fr/ea\.js +# ||g.itespresso.fr^ (easyprivacy.txt: 9757) +.g.itespresso.fr +# ||fls-eu.amazon.fr^ (easyprivacy.txt: 9756) +.fls-eu.amazon.fr +# ||eultech.fnac.com^ (easyprivacy.txt: 9755) +.eultech.fnac.com +# ||editeurjavascript.com/hit-parade.php (easyprivacy.txt: 9754) +.editeurjavascript.com/hit-parade\.php +# ||ea.rueducommerce.fr^ (easyprivacy.txt: 9753) +.ea.rueducommerce.fr +# ||ea.monsieurmanuel.com^ (easyprivacy.txt: 9752) +.ea.monsieurmanuel.com +# ||ea.lexpress.fr^ (easyprivacy.txt: 9751) +.ea.lexpress.fr +# ||ea.jeuxvideopc.com^ (easyprivacy.txt: 9750) +.ea.jeuxvideopc.com +# ||ea.clubic.com^ (easyprivacy.txt: 9749) +.ea.clubic.com +# ||developpez.com/public/js/track.js (easyprivacy.txt: 9748) +.developpez.com/public/js/track\.js +# ||clubic.com/editorial/publier_count.php? (easyprivacy.txt: 9747) +.clubic.com/editorial/publier_count\.php\? +# ||bloguez.com/manager/compteurs/ (easyprivacy.txt: 9746) +.bloguez.com/manager/compteurs/ +# ||azurewebsites.net^*/mnr-mediametrie-tracking- (easyprivacy.txt: 9745) +.azurewebsites.net/.*/mnr-mediametrie-tracking- +# ||arte.tv/includes/xiti/ (easyprivacy.txt: 9744) +.arte.tv/includes/xiti/ +# ||allocine.fr/ws/geocoding.ashx (easyprivacy.txt: 9743) +.allocine.fr/ws/geocoding\.ashx +# ||zeit.de/js/rsa2.js (easyprivacy.txt: 9741) +.zeit.de/js/rsa2\.js +# ||zeit.de/js/rsa.js (easyprivacy.txt: 9740) +.zeit.de/js/rsa\.js +# ||zdf.de^*/trackingivw? (easyprivacy.txt: 9739) +.zdf.de/.*/trackingivw\? +# ||zdf.de^*/tracking? (easyprivacy.txt: 9738) +.zdf.de/.*/tracking\? +# ||xtranews.de/counter/ (easyprivacy.txt: 9737) +.xtranews.de/counter/ +# ||xara.hse24.de^ (easyprivacy.txt: 9736) +.xara.hse24.de +# ||wiwo.de/analytics/ (easyprivacy.txt: 9735) +.wiwo.de/analytics/ +# ||wirtschaftspresse.biz/pshb? (easyprivacy.txt: 9734) +.wirtschaftspresse.biz/pshb\? +# ||wienerzeitung.at/__webtrends/ (easyprivacy.txt: 9733) +.wienerzeitung.at/__webtrends/ +# ||wetter.de/js/tracking.js (easyprivacy.txt: 9732) +.wetter.de/js/tracking\.js +# ||wer-weiss-was.de/indication/clue_*.gif? (easyprivacy.txt: 9731) +.wer-weiss-was.de/indication/clue_.*\.gif\? +# ||webts.adac.de^ (easyprivacy.txt: 9730) +.webts.adac.de +# ||webnews.de^*/loglib.js (easyprivacy.txt: 9729) +.webnews.de/.*/loglib\.js +# ||web.de/pic? (easyprivacy.txt: 9728) +.web.de/pic\? +# ||web.de/ivw/cp/ (easyprivacy.txt: 9727) +.web.de/ivw/cp/ +# ||web-track.telekom-dienste.de^ (easyprivacy.txt: 9726) +.web-track.telekom-dienste.de +# ||wdm.map24.com^ (easyprivacy.txt: 9725) +.wdm.map24.com +# ||viviano.de/cgi-bin/stat_gateway.cgi? (easyprivacy.txt: 9724) +.viviano.de/cgi-bin/stat_gateway\.cgi\? +# ||vip.de^*/tracking.js (easyprivacy.txt: 9723) +.vip.de/.*/tracking\.js +# ||unser-star-fuer-oslo.de^*/stats.php (easyprivacy.txt: 9722) +.unser-star-fuer-oslo.de/.*/stats\.php +# ||ui-portal.de/brbtpixel/ (easyprivacy.txt: 9721) +.ui-portal.de/brbtpixel/ +# ||tvcommunity.at/filmpicture.aspx?count=1& (easyprivacy.txt: 9720) +.tvcommunity.at/filmpicture\.aspx\?count=1& +# ||ts.rtl.de^ (easyprivacy.txt: 9719) +.ts.rtl.de +# ||ts.otto.de^ (easyprivacy.txt: 9718) +.ts.otto.de +# ||ts.faz.net^ (easyprivacy.txt: 9717) +.ts.faz.net +# ||tracking.tchibo.de^ (easyprivacy.txt: 9716) +.tracking.tchibo.de +# ||tracking.statravel.de^ (easyprivacy.txt: 9715) +.tracking.statravel.de +# ||tracking.sport1.de^ (easyprivacy.txt: 9714) +.tracking.sport1.de +# ||tracking.oe24.at^ (easyprivacy.txt: 9713) +.tracking.oe24.at +# ||tracking.netbank.de^ (easyprivacy.txt: 9712) +.tracking.netbank.de +# ||tracking.mobile.de^ (easyprivacy.txt: 9711) +.tracking.mobile.de +# ||tracking.kurier.at^ (easyprivacy.txt: 9710) +.tracking.kurier.at +# ||tracking.hrs.de^ (easyprivacy.txt: 9709) +.tracking.hrs.de +# ||tracking.beilagen-prospekte.de^ (easyprivacy.txt: 9708) +.tracking.beilagen-prospekte.de +# ||tracking.autoscout24.com^ (easyprivacy.txt: 9707) +.tracking.autoscout24.com +# ||trackerstatistik.init-ag.de^ (easyprivacy.txt: 9706) +.trackerstatistik.init-ag.de +# ||track.cinestar.de^ (easyprivacy.txt: 9705) +.track.cinestar.de +# ||tr.werkenntwen.de^ (easyprivacy.txt: 9704) +.tr.werkenntwen.de +# ||topnews.de^*/aws.cgi? (easyprivacy.txt: 9703) +.topnews.de/.*/aws\.cgi\? +# ||topnews.de/aws.js (easyprivacy.txt: 9702) +.topnews.de/aws\.js +# ||textundblog.de/powercounter.js (easyprivacy.txt: 9701) +.textundblog.de/powercounter\.js +# ||talkline.de^*/count.talkline.js (easyprivacy.txt: 9700) +.talkline.de/.*/count\.talkline\.js +# ||tagesspiegel.de/analytics/ (easyprivacy.txt: 9699) +.tagesspiegel.de/analytics/ +# ||t-online.de^*/stats.js?track= (easyprivacy.txt: 9698) +.t-online.de/.*/stats\.js\?track= +# ||t-online.de^*/noresult.js?track= (easyprivacy.txt: 9697) +.t-online.de/.*/noresult\.js\?track= +# ||superfunblog.com/stats/stats.php (easyprivacy.txt: 9696) +.superfunblog.com/stats/stats\.php +# ||suite101.de/tracking/ (easyprivacy.txt: 9695) +.suite101.de/tracking/ +# ||suedkurier.de/al/analytics/ (easyprivacy.txt: 9694) +.suedkurier.de/al/analytics/ +# ||stats.daserste.de^ (easyprivacy.txt: 9693) +.stats.daserste.de +# ||stats.bmw.de^ (easyprivacy.txt: 9692) +.stats.bmw.de +# ||stargate-planet.de^*counter*/c$image,script (easyprivacy.txt: 9691) +.stargate-planet.de/.*counter.*/c +# ||sportal.de/js/cf.analytics.js (easyprivacy.txt: 9690) +.sportal.de/js/cf\.analytics\.js +# ||spiegel.de^*/statistic/ (easyprivacy.txt: 9689) +.spiegel.de/.*/statistic/ +# ||shortnews.de/iframes/view_news.cfm? (easyprivacy.txt: 9688) +.shortnews.de/iframes/view_news\.cfm\? +# ||secreta.de/tinc? (easyprivacy.txt: 9687) +.secreta.de/tinc\? +# ||salzburg.com/nwas/count.php? (easyprivacy.txt: 9686) +.salzburg.com/nwas/count\.php\? +# ||s.fsphp.t-online.de^ (easyprivacy.txt: 9685) +.s.fsphp.t-online.de +# ||rwt.reichelt.de^ (easyprivacy.txt: 9684) +.rwt.reichelt.de +# ||rtlradio.lu/stats.php? (easyprivacy.txt: 9683) +.rtlradio.lu/stats\.php\? +# ||rtlradio.de/stats.php? (easyprivacy.txt: 9682) +.rtlradio.de/stats\.php\? +# ||rtl.de/tools/count/ (easyprivacy.txt: 9681) +.rtl.de/tools/count/ +# ||rtl.de/count/ut/x.gif? (easyprivacy.txt: 9680) +.rtl.de/count/ut/x\.gif\? +# ||rl.heise.de^ (easyprivacy.txt: 9679) +.rl.heise.de +# ||rhein-zeitung.de^*/picksel/ (easyprivacy.txt: 9678) +.rhein-zeitung.de/.*/picksel/ +# ||remixshare.com/stat/ (easyprivacy.txt: 9677) +.remixshare.com/stat/ +# ||rem-track.bild.de^ (easyprivacy.txt: 9676) +.rem-track.bild.de +# ||quoka.de^*/wtlog_02.js (easyprivacy.txt: 9675) +.quoka.de/.*/wtlog_02\.js +# ||pxc.otto.de^ (easyprivacy.txt: 9674) +.pxc.otto.de +# ||putpat.tv/tracking? (easyprivacy.txt: 9673) +.putpat.tv/tracking\? +# ||prophet.heise.de^ (easyprivacy.txt: 9672) +.prophet.heise.de +# ||proactive.base.de^ (easyprivacy.txt: 9671) +.proactive.base.de +# ||preisvergleich.de/setcookie/ (easyprivacy.txt: 9670) +.preisvergleich.de/setcookie/ +# ||powercount.jswelt.de^ (easyprivacy.txt: 9669) +.powercount.jswelt.de +# ||postbank.de^*/pb_trackingclientstat_js.js (easyprivacy.txt: 9668) +.postbank.de/.*/pb_trackingclientstat_js\.js +# ||postbank.de^*/pb_tracking_js.js (easyprivacy.txt: 9667) +.postbank.de/.*/pb_tracking_js\.js +# ||pooltrax.com/stats/ (easyprivacy.txt: 9666) +.pooltrax.com/stats/ +# ||pnn.de/counter/ (easyprivacy.txt: 9665) +.pnn.de/counter/ +# ||playomat.de/sfye_noscript.php? (easyprivacy.txt: 9664) +.playomat.de/sfye_noscript\.php\? +# ||pixel.prosieben.de^ (easyprivacy.txt: 9663) +.pixel.prosieben.de +# ||pixel.bild.de^ (easyprivacy.txt: 9662) +.pixel.bild.de +# ||pixel.1und1.de^ (easyprivacy.txt: 9661) +.pixel.1und1.de +# ||pix.friendscout24.de^ (easyprivacy.txt: 9660) +.pix.friendscout24.de +# ||pcwelt.de^*/pic.gif? (easyprivacy.txt: 9659) +.pcwelt.de/.*/pic\.gif\? +# ||pcgames.de^*/remotecampaigntracker.php (easyprivacy.txt: 9658) +.pcgames.de/.*/remotecampaigntracker\.php +# ||pcfreunde.de/wb. (easyprivacy.txt: 9657) +.pcfreunde.de/wb\. +# ||passul.t-online.de^ (easyprivacy.txt: 9656) +.passul.t-online.de +# ||pap.zalando.de^ (easyprivacy.txt: 9655) +.pap.zalando.de +# ||otto.de^*/beacons/ (easyprivacy.txt: 9654) +.otto.de/.*/beacons/ +# ||otto.de/tr/p.gif? (easyprivacy.txt: 9653) +.otto.de/tr/p\.gif\? +# ||otto.de/servlet/landmarkservlet? (easyprivacy.txt: 9652) +.otto.de/servlet/landmarkservlet\? +# ||otik.de/tracker/ (easyprivacy.txt: 9651) +.otik.de/tracker/ +# ||orf.at/ivwscript.js (easyprivacy.txt: 9650) +.orf.at/ivwscript\.js +# ||o2online.de^*/psyma/ (easyprivacy.txt: 9649) +.o2online.de/.*/psyma/ +# ||nzz.ch/statistic? (easyprivacy.txt: 9648) +.nzz.ch/statistic\? +# ||nzz.ch/statistic/ (easyprivacy.txt: 9647) +.nzz.ch/statistic/ +# ||npage.de/get_statistics.php? (easyprivacy.txt: 9646) +.npage.de/get_statistics\.php\? +# ||noz.de/tracking/ (easyprivacy.txt: 9645) +.noz.de/tracking/ +# ||nox.to/files/frame.htm (easyprivacy.txt: 9644) +.nox.to/files/frame\.htm +# ||nowonscreen.com/statistik_ (easyprivacy.txt: 9643) +.nowonscreen.com/statistik_ +# ||nickles.de/ivw/ (easyprivacy.txt: 9642) +.nickles.de/ivw/ +# ||news.ch/newslogbug.asp? (easyprivacy.txt: 9641) +.news.ch/newslogbug\.asp\? +# ||n24.de^*/tracking.js (easyprivacy.txt: 9640) +.n24.de/.*/tracking\.js +# ||myvideo.de/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9639) +.myvideo.de/dynamic/mingreport\.php +# ||myvideo.ch/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9638) +.myvideo.ch/dynamic/mingreport\.php +# ||myvideo.at/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9637) +.myvideo.at/dynamic/mingreport\.php +# ||musik4fun.com/ga.php? (easyprivacy.txt: 9636) +.musik4fun.com/ga\.php\? +# ||multicounter.de^$third-party (easyprivacy.txt: 9635) +.multicounter.de +# ||muensterland.de^*/zaehlpixel.php? (easyprivacy.txt: 9634) +.muensterland.de/.*/zaehlpixel\.php\? +# ||msxstudios.de^*/system/stats/ (easyprivacy.txt: 9633) +.msxstudios.de/.*/system/stats/ +# ||msn.com^*/detrack.js (easyprivacy.txt: 9632) +.msn.com/.*/detrack\.js +# ||ms.computerbild.de^ (easyprivacy.txt: 9631) +.ms.computerbild.de +# ||mopo.de/uid/ (easyprivacy.txt: 9630) +.mopo.de/uid/ +# ||mobilcom-debitel.de/track/ (easyprivacy.txt: 9629) +.mobilcom-debitel.de/track/ +# ||mm.welt.de^ (easyprivacy.txt: 9628) +.mm.welt.de +# ||mikrocontroller.net^*/count_view/ (easyprivacy.txt: 9627) +.mikrocontroller.net/.*/count_view/ +# ||merkur.de/connector.php? (easyprivacy.txt: 9626) +.merkur.de/connector\.php\? +# ||meinestadt.de^*/tracking/ (easyprivacy.txt: 9625) +.meinestadt.de/.*/tracking/ +# ||medizinauskunft.de/logger/ (easyprivacy.txt: 9624) +.medizinauskunft.de/logger/ +# ||manager-magazin.de/js/http/*,testat_ (easyprivacy.txt: 9623) +.manager-magazin.de/js/http/.*,testat_ +# ||magnus.de^*/pic.gif? (easyprivacy.txt: 9622) +.magnus.de/.*/pic\.gif\? +# ||macwelt.de/images/pic.gif? (easyprivacy.txt: 9621) +.macwelt.de/images/pic\.gif\? +# ||macnews.de/logreferrer.php (easyprivacy.txt: 9620) +.macnews.de/logreferrer\.php +# ||lokalisten.de/tracking.gif (easyprivacy.txt: 9619) +.lokalisten.de/tracking\.gif +# ||logging.wilmaa.com^ (easyprivacy.txt: 9618) +.logging.wilmaa.com +# ||log.wilmaa.com^ (easyprivacy.txt: 9617) +.log.wilmaa.com +# ||log.sz-online.de^ (easyprivacy.txt: 9616) +.log.sz-online.de +# ||log.suchen.de^ (easyprivacy.txt: 9615) +.log.suchen.de +# ||laut.de^*/analyse.gif? (easyprivacy.txt: 9614) +.laut.de/.*/analyse\.gif\? +# ||krissi-ist-weg.de/ce_vcounter/ (easyprivacy.txt: 9613) +.krissi-ist-weg.de/ce_vcounter/ +# ||koins.de/screen.js (easyprivacy.txt: 9612) +.koins.de/screen\.js +# ||kicker.de^*/videocount? (easyprivacy.txt: 9611) +.kicker.de/.*/videocount\? +# ||k-play.de/screen.js (easyprivacy.txt: 9610) +.k-play.de/screen\.js +# ||k-foren.de/screen.js (easyprivacy.txt: 9609) +.k-foren.de/screen\.js +# ||k-files.de/screen.js (easyprivacy.txt: 9608) +.k-files.de/screen\.js +# ||jolie.de^*/pic.gif? (easyprivacy.txt: 9607) +.jolie.de/.*/pic\.gif\? +# ||jobanova.de/stats.php? (easyprivacy.txt: 9606) +.jobanova.de/stats\.php\? +# ||ht4u.net^*/blackpixel2.php (easyprivacy.txt: 9605) +.ht4u.net/.*/blackpixel2\.php +# ||horizont.net/stats/ (easyprivacy.txt: 9604) +.horizont.net/stats/ +# ||homepage-baukasten.de/cookie.php? (easyprivacy.txt: 9603) +.homepage-baukasten.de/cookie\.php\? +# ||hdm-stuttgart.de/count.cgi? (easyprivacy.txt: 9602) +.hdm-stuttgart.de/count\.cgi\? +# ||hartgeld.com^*/count.cgi? (easyprivacy.txt: 9601) +.hartgeld.com/.*/count\.cgi\? +# ||hardwareschotte.de/na/mdc.php? (easyprivacy.txt: 9600) +.hardwareschotte.de/na/mdc\.php\? +# ||hardwarelabs.de/stat/ (easyprivacy.txt: 9599) +.hardwarelabs.de/stat/ +# ||hardware-infos.com/counter/ (easyprivacy.txt: 9598) +.hardware-infos.com/counter/ +# ||handelsblatt.com/analytics/ (easyprivacy.txt: 9597) +.handelsblatt.com/analytics/ +# ||goyellow.de/trackbrowser.jsp (easyprivacy.txt: 9596) +.goyellow.de/trackbrowser\.jsp +# ||golem.de/staticrl/scripts/golem_cpxl_ (easyprivacy.txt: 9595) +.golem.de/staticrl/scripts/golem_cpxl_ +# ||golem.de/staticrl/scripts/golem_cpx_ (easyprivacy.txt: 9594) +.golem.de/staticrl/scripts/golem_cpx_ +# ||go.bluewin.ch^ (easyprivacy.txt: 9593) +.go.bluewin.ch +# ||giessener-anzeiger.de/stat/ (easyprivacy.txt: 9592) +.giessener-anzeiger.de/stat/ +# ||gg24.de^*/count.cgi? (easyprivacy.txt: 9591) +.gg24.de/.*/count\.cgi\? +# ||gets.faz.net^ (easyprivacy.txt: 9590) +.gets.faz.net +# ||gamestar.de/_misc/tracking/ (easyprivacy.txt: 9589) +.gamestar.de/_misc/tracking/ +# ||gamepro.de^*/visitcount.js (easyprivacy.txt: 9588) +.gamepro.de/.*/visitcount\.js +# ||gala.de/js/tracking- (easyprivacy.txt: 9587) +.gala.de/js/tracking- +# ||g.silicon.de^ (easyprivacy.txt: 9586) +.g.silicon.de +# ||ftd.de^*/track.php? (easyprivacy.txt: 9585) +.ftd.de/.*/track\.php\? +# ||fr-online.de/analytics/ (easyprivacy.txt: 9584) +.fr-online.de/analytics/ +# ||fls-eu.amazon.de^ (easyprivacy.txt: 9583) +.fls-eu.amazon.de +# ||fireball.de/statistikframe.asp? (easyprivacy.txt: 9582) +.fireball.de/statistikframe\.asp\? +# ||feed-reader.net/tracking.php (easyprivacy.txt: 9581) +.feed-reader.net/tracking\.php +# ||faz.net^*/smarttag.js (easyprivacy.txt: 9580) +.faz.net/.*/smarttag\.js +# ||faz.net^*/ivw/ (easyprivacy.txt: 9579) +.faz.net/.*/ivw/ +# ||fanfiktion.de^*/s.js (easyprivacy.txt: 9578) +.fanfiktion.de/.*/s\.js +# ||extszm.web.de^ (easyprivacy.txt: 9577) +.extszm.web.de +# ||express.de/analytics/ (easyprivacy.txt: 9576) +.express.de/analytics/ +# ||event.dkb.de^ (easyprivacy.txt: 9575) +.event.dkb.de +# ||elitepartner.de/km/tcnt.do? (easyprivacy.txt: 9574) +.elitepartner.de/km/tcnt\.do\? +# ||elektromobil-dresden.de/tinc? (easyprivacy.txt: 9573) +.elektromobil-dresden.de/tinc\? +# ||dw-eu.com.com^ (easyprivacy.txt: 9572) +.dw-eu.com.com +# ||dsltarife.net/statistik/ (easyprivacy.txt: 9571) +.dsltarife.net/statistik/ +# ||dsltarife.net/ddd.js (easyprivacy.txt: 9570) +.dsltarife.net/ddd\.js +# ||dpm.bluray-disc.de^ (easyprivacy.txt: 9569) +.dpm.bluray-disc.de +# ||dnews.de^*/arnostat302.js (easyprivacy.txt: 9568) +.dnews.de/.*/arnostat302\.js +# ||digital-zoom.de/counter.js (easyprivacy.txt: 9567) +.digital-zoom.de/counter\.js +# ||diepresse.com/files/stats-extensions/ (easyprivacy.txt: 9566) +.diepresse.com/files/stats-extensions/ +# ||diegesellschafter.de^*/flashimg.php? (easyprivacy.txt: 9565) +.diegesellschafter.de/.*/flashimg\.php\? +# ||dfs.de^*/webbug.js (easyprivacy.txt: 9564) +.dfs.de/.*/webbug\.js +# ||dforum.net/counter/ (easyprivacy.txt: 9563) +.dforum.net/counter/ +# ||derwesten.de^*/omsv.js (easyprivacy.txt: 9562) +.derwesten.de/.*/omsv\.js +# ||derwesten.de^*/click.js (easyprivacy.txt: 9561) +.derwesten.de/.*/click\.js +# ||derwesten.de/stats/ (easyprivacy.txt: 9560) +.derwesten.de/stats/ +# ||derwesten.de/files1/js/fktwe4.js (easyprivacy.txt: 9559) +.derwesten.de/files1/js/fktwe4\.js +# ||dejure.org/cgi-bin/zux2? (easyprivacy.txt: 9558) +.dejure.org/cgi-bin/zux2\? +# ||dat.de/inc/count.js (easyprivacy.txt: 9557) +.dat.de/inc/count\.js +# ||dastelefonbuch.de^*/wws.js (easyprivacy.txt: 9556) +.dastelefonbuch.de/.*/wws\.js +# ||dasoertliche.de/wws/ (easyprivacy.txt: 9555) +.dasoertliche.de/wws/ +# ||daparto.de/track- (easyprivacy.txt: 9554) +.daparto.de/track- +# ||dada.net^*/nedstat_sitestat.js (easyprivacy.txt: 9553) +.dada.net/.*/nedstat_sitestat\.js +# ||dab-bank.de/img/dummy.gif (easyprivacy.txt: 9552) +.dab-bank.de/img/dummy\.gif +# ||cpxl.golem.de^ (easyprivacy.txt: 9551) +.cpxl.golem.de +# ||cpx.golem.de^ (easyprivacy.txt: 9550) +.cpx.golem.de +# ||cpix.daserste.de^ (easyprivacy.txt: 9549) +.cpix.daserste.de +# ||counter.zeit.de^ (easyprivacy.txt: 9548) +.counter.zeit.de +# ||count.spiegel.de^ (easyprivacy.txt: 9547) +.count.spiegel.de +# ||count.rtl.de^ (easyprivacy.txt: 9546) +.count.rtl.de +# ||count.merian.de^ (easyprivacy.txt: 9545) +.count.merian.de +# ||computerbild.de/images/pic.gif? (easyprivacy.txt: 9544) +.computerbild.de/images/pic\.gif\? +# ||computerbase.mobi/stats.php? (easyprivacy.txt: 9543) +.computerbase.mobi/stats\.php\? +# ||computerbase.de/stats.php? (easyprivacy.txt: 9542) +.computerbase.de/stats\.php\? +# ||commerzbank.de/companion/cnt.php? (easyprivacy.txt: 9541) +.commerzbank.de/companion/cnt\.php\? +# ||comdirect.de/ccf/img/ecrm2.gif? (easyprivacy.txt: 9540) +.comdirect.de/ccf/img/ecrm2\.gif\? +# ||citybeat.de/include/cbtracker. (easyprivacy.txt: 9539) +.citybeat.de/include/cbtracker\. +# ||chip.de^*_tracking/ (easyprivacy.txt: 9538) +.chip.de/.*_tracking/ +# ||chip.de^*/tracking.js (easyprivacy.txt: 9537) +.chip.de/.*/tracking\.js +# ||chip.de^*/pic.gif? (easyprivacy.txt: 9536) +.chip.de/.*/pic\.gif\? +# ||chip.de^*/hook-tracking.js (easyprivacy.txt: 9535) +.chip.de/.*/hook-tracking\.js +# ||chefkoch.de^*/pixel/ (easyprivacy.txt: 9534) +.chefkoch.de/.*/pixel/ +# ||chefkoch.de/statistic_service/ (easyprivacy.txt: 9533) +.chefkoch.de/statistic_service/ +# ||chefkoch.de/counter (easyprivacy.txt: 9532) +.chefkoch.de/counter +# ||center.tv/counter/ (easyprivacy.txt: 9531) +.center.tv/counter/ +# ||cct2.o2online.de^ (easyprivacy.txt: 9530) +.cct2.o2online.de +# ||cc.zeit.de^ (easyprivacy.txt: 9529) +.cc.zeit.de +# ||c.perlentaucher.de^ (easyprivacy.txt: 9528) +.c.perlentaucher.de +# ||bz-berlin.de/_stats/ (easyprivacy.txt: 9527) +.bz-berlin.de/_stats/ +# ||braunschweiger-zeitung.de/stats/ (easyprivacy.txt: 9526) +.braunschweiger-zeitung.de/stats/ +# ||br.de/dotrack/pixel.png? (easyprivacy.txt: 9525) +.br.de/dotrack/pixel\.png\? +# ||boss.berlinonline.de^ (easyprivacy.txt: 9524) +.boss.berlinonline.de +# ||boersennews.de/js/lib/BnPageTracker.js (easyprivacy.txt: 9523) +.boersennews.de/js/lib/BnPageTracker\.js +# ||boerse.de^*/log.jphp (easyprivacy.txt: 9522) +.boerse.de/.*/log\.jphp +# ||bluray-disc.de/user_check.php? (easyprivacy.txt: 9521) +.bluray-disc.de/user_check\.php\? +# ||bitreactor.to/counter/ (easyprivacy.txt: 9520) +.bitreactor.to/counter/ +# ||billiger.de/trackimg.gif? (easyprivacy.txt: 9519) +.billiger.de/trackimg\.gif\? +# ||billiger.de/js/statistik.js (easyprivacy.txt: 9518) +.billiger.de/js/statistik\.js +# ||bild.de^*-linktracking^$script (easyprivacy.txt: 9517) +.bild.de/.*-linktracking[^\w%.-] +# ||bild.de/code/linktracking,*.js (easyprivacy.txt: 9516) +.bild.de/code/linktracking,.*\.js +# ||bild.de/code/jiffy,*.js (easyprivacy.txt: 9515) +.bild.de/code/jiffy,.*\.js +# ||berlinonline.de^*/cp.php? (easyprivacy.txt: 9514) +.berlinonline.de/.*/cp\.php\? +# ||berliner-zeitung.de/analytics/ (easyprivacy.txt: 9513) +.berliner-zeitung.de/analytics/ +# ||baur.de/servlet/LandmarkServlet? (easyprivacy.txt: 9512) +.baur.de/servlet/LandmarkServlet\? +# ||autobild.de/images/pic.gif? (easyprivacy.txt: 9511) +.autobild.de/images/pic\.gif\? +# ||auto-motor-und-sport.de/images/pic.gif? (easyprivacy.txt: 9510) +.auto-motor-und-sport.de/images/pic\.gif\? +# ||arte.tv^*=countstats, (easyprivacy.txt: 9509) +.arte.tv/.*=countstats, +# ||arlt.com^*/econda/ (easyprivacy.txt: 9508) +.arlt.com/.*/econda/ +# ||aol.de/track/ (easyprivacy.txt: 9507) +.aol.de/track/ +# ||aol.de/cnt/ (easyprivacy.txt: 9506) +.aol.de/cnt/ +# ||antenne.de^*/ivw_reload.js (easyprivacy.txt: 9505) +.antenne.de/.*/ivw_reload\.js +# ||analytics.solidbau.at^ (easyprivacy.txt: 9504) +.analytics.solidbau.at +# ||analytics.industriemagazin.net^ (easyprivacy.txt: 9503) +.analytics.industriemagazin.net +# ||ac.mz-web.de^ (easyprivacy.txt: 9502) +.ac.mz-web.de +# ||ac.express.de^ (easyprivacy.txt: 9501) +.ac.express.de +# ||ac.berlinonline.de^ (easyprivacy.txt: 9500) +.ac.berlinonline.de +# ||abakus.freenet.de^ (easyprivacy.txt: 9499) +.abakus.freenet.de +# ||ab-in-den-urlaub.de/usertracking/ (easyprivacy.txt: 9498) +.ab-in-den-urlaub.de/usertracking/ +# ||ab-in-den-urlaub.de/resources/cjs/?f=/resources/cjs/tracking/ (easyprivacy.txt: 9497) +.ab-in-den-urlaub.de/resources/cjs/\?f=/resources/cjs/tracking/ +# ||4players.de^*/foreplaypixel.js (easyprivacy.txt: 9494) +.4players.de/.*/foreplaypixel\.js +# ||radio-canada.ca/omniture/omni_stats_base.js? (easyprivacy.txt: 9490) +.radio-canada.ca/omniture/omni_stats_base\.js\? +# ||yell.com/js/omniture-H.25.js (easyprivacy.txt: 9488) +.yell.com/js/omniture-H\.25\.js +# ||westernunion.*/_globalAssets/js/omniture/AppMeasurement.js (easyprivacy.txt: 9486) +.westernunion.*./(.*/)?_globalAssets/js/omniture/AppMeasurement\.js +# ||vmware.com/files/templates/inc/s_code_my.js (easyprivacy.txt: 9485) +.vmware.com/files/templates/inc/s_code_my\.js +# ||vitacost.com/Javascripts/s_code.js (easyprivacy.txt: 9484) +.vitacost.com/Javascripts/s_code\.js +# ||ssl-images-amazon.com^*/wcs-help-omniture-$script (easyprivacy.txt: 9482) +.ssl-images-amazon.com/.*/wcs-help-omniture- +# ||sltrib.com/csp/mediapool/sites/Shared/assets/csp/includes/omniture/SiteCatalystCode_H_17.js (easyprivacy.txt: 9481) +.sltrib.com/csp/mediapool/sites/Shared/assets/csp/includes/omniture/SiteCatalystCode_H_17\.js +# ||sephora.com/javascripts/analytics/wa2.js (easyprivacy.txt: 9478) +.sephora.com/javascripts/analytics/wa2\.js +# ||riverisland.com^*/s_code.min.omniture_$script (easyprivacy.txt: 9477) +.riverisland.com/.*/s_code\.min\.omniture_ +# ||redbox.com^*/scripts/s_code.js (easyprivacy.txt: 9476) +.redbox.com/.*/scripts/s_code\.js +# ||r7.com/scode/s_code_portal_$script (easyprivacy.txt: 9475) +.r7.com/scode/s_code_portal_ +# ||playstation.com/pscomauth/groups/public/documents/webasset/community_secured_s_code.js (easyprivacy.txt: 9474) +.playstation.com/pscomauth/groups/public/documents/webasset/community_secured_s_code\.js +# ||philly.com/includes/s_code.js (easyprivacy.txt: 9473) +.philly.com/includes/s_code\.js +# ||paypal.com/acquisition-app/static/js/s_code.js (easyprivacy.txt: 9472) +.paypal.com/acquisition-app/static/js/s_code\.js +# ||nyteknik.se/ver02/javascript/2012_s_code_global.js (easyprivacy.txt: 9471) +.nyteknik.se/ver02/javascript/2012_s_code_global\.js +# ||navyfederal.org/js/s_code.js (easyprivacy.txt: 9469) +.navyfederal.org/js/s_code\.js +# ||mnginteractive.com/live/omniture/sccore_NEW_JRC.js (easyprivacy.txt: 9468) +.mnginteractive.com/live/omniture/sccore_NEW_JRC\.js +# ||mnginteractive.com/live/js/omniture/SiteCatalystCode_H_22_1_NC.js (easyprivacy.txt: 9464) +.mnginteractive.com/live/js/omniture/SiteCatalystCode_H_22_1_NC\.js +# ||michaelkors.com/common/js/extern/omniture/s_code.js (easyprivacy.txt: 9463) +.michaelkors.com/common/js/extern/omniture/s_code\.js +# ||mercuryinsurance.com/static/js/s_code.js (easyprivacy.txt: 9462) +.mercuryinsurance.com/static/js/s_code\.js +# ||mercola.com/Assets/js/omniture/sitecatalyst/mercola_s_code.js (easyprivacy.txt: 9461) +.mercola.com/Assets/js/omniture/sitecatalyst/mercola_s_code\.js +# ||mercedes-benz.ca/js/omniture.js (easyprivacy.txt: 9460) +.mercedes-benz.ca/js/omniture\.js +# ||loc.gov/js/*/s_code.js (easyprivacy.txt: 9459) +.loc.gov/js/.*/s_code\.js +# ||lexus.com/lexus-share/js/tracking_omn/s_code.js (easyprivacy.txt: 9458) +.lexus.com/lexus-share/js/tracking_omn/s_code\.js +# ||images-amazon.com/images/*/wcs-help-omniture/wcs-help-omniture-$script (easyprivacy.txt: 9456) +.images-amazon.com/images/.*/wcs-help-omniture/wcs-help-omniture- +# ||hayneedle.com/js/s_code.min.*.js (easyprivacy.txt: 9455) +.hayneedle.com/js/s_code\.min\..*\.js +# ||ge.com/sites/all/themes/ge_2012/assets/js/bin/s_code.js (easyprivacy.txt: 9454) +.ge.com/sites/all/themes/ge_2012/assets/js/bin/s_code\.js +# ||expressen.se/static/scripts/s_code.js? (easyprivacy.txt: 9453) +.expressen.se/static/scripts/s_code\.js\? +# ||eltiempo.com/js/produccion/s_code_*.js (easyprivacy.txt: 9452) +.eltiempo.com/js/produccion/s_code_.*\.js +# ||disneylandparis.fr^*/s_code.js (easyprivacy.txt: 9450) +.disneylandparis.fr/.*/s_code\.js +# ||csmonitor.com/extension/csm_base/design/standard/javascript/adobe/s_code.js (easyprivacy.txt: 9448) +.csmonitor.com/extension/csm_base/design/standard/javascript/adobe/s_code\.js +# ||csmonitor.com/extension/csm_base/design/csm_design/javascript/omniture/s_code.js (easyprivacy.txt: 9447) +.csmonitor.com/extension/csm_base/design/csm_design/javascript/omniture/s_code\.js +# ||consumerreports.org^*/s_code.js (easyprivacy.txt: 9446) +.consumerreports.org/.*/s_code\.js +# ||chip.de/js/omniture_somtr_code_vH.25.js (easyprivacy.txt: 9445) +.chip.de/js/omniture_somtr_code_vH\.25\.js +# ||bleacherreport.net/pkg/javascripts/*_omniture.js (easyprivacy.txt: 9443) +.bleacherreport.net/pkg/javascripts/.*_omniture\.js +# ||bitdefender.com/resources/scripts/omniture/*/code.js (easyprivacy.txt: 9442) +.bitdefender.com/resources/scripts/omniture/.*/code\.js +# ||aircanada.com/shared/common/sitecatalyst/s_code.js (easyprivacy.txt: 9440) +.aircanada.com/shared/common/sitecatalyst/s_code\.js +# ||aeroplan.com/static/js/omniture/s_code_prod.js (easyprivacy.txt: 9438) +.aeroplan.com/static/js/omniture/s_code_prod\.js +# ||adobe.com^*/omniture_s_code.js (easyprivacy.txt: 9437) +.adobe.com/.*/omniture_s_code\.js +# ||zylom.com^*/tracking_spotlight.js (easyprivacy.txt: 9434) +.zylom.com/.*/tracking_spotlight\.js +# ||zylom.com^*/global_tracking.jsp? (easyprivacy.txt: 9433) +.zylom.com/.*/global_tracking\.jsp\? +# ||zylom.com/pixel.jsp (easyprivacy.txt: 9432) +.zylom.com/pixel\.jsp +# ||zwire.com/gen/qc/qualitycontrol.cfm (easyprivacy.txt: 9431) +.zwire.com/gen/qc/qualitycontrol\.cfm +# ||zvents.com/zat? (easyprivacy.txt: 9430) +.zvents.com/zat\? +# ||zvents.com/za? (easyprivacy.txt: 9429) +.zvents.com/za\? +# ||zvents.com/partner_json/ (easyprivacy.txt: 9428) +.zvents.com/partner_json/ +# ||zulily.com/action/track? (easyprivacy.txt: 9427) +.zulily.com/action/track\? +# ||zoomin.tv/impressionsplayers/ (easyprivacy.txt: 9426) +.zoomin.tv/impressionsplayers/ +# ||zoomin.tv/impressions/ (easyprivacy.txt: 9425) +.zoomin.tv/impressions/ +# ||zmags.com/CommunityAnalyticsTracking (easyprivacy.txt: 9424) +.zmags.com/CommunityAnalyticsTracking +# ||zedo.com/img/bh.gif? (easyprivacy.txt: 9423) +.zedo.com/img/bh\.gif\? +# ||zdnet.com/wi? (easyprivacy.txt: 9422) +.zdnet.com/wi\? +# ||zawya.com^*/logFile.cfm? (easyprivacy.txt: 9421) +.zawya.com/.*/logFile\.cfm\? +# ||zawya.com/zscripts/ajaxztrack.cfm? (easyprivacy.txt: 9420) +.zawya.com/zscripts/ajaxztrack\.cfm\? +# ||zappos.com/onload.cgi? (easyprivacy.txt: 9419) +.zappos.com/onload\.cgi\? +# ||zap2it.com^*/editorial-partner/ (easyprivacy.txt: 9418) +.zap2it.com/.*/editorial-partner/ +# ||zap.dw-world.de^$image (easyprivacy.txt: 9417) +.zap.dw-world.de +# ||yyv.co/track/ (easyprivacy.txt: 9416) +.yyv.co/track/ +# ||yupptv.com/yupptvreports/stats.php^ (easyprivacy.txt: 9415) +.yupptv.com/yupptvreports/stats\.php[^\w%.-] +# ||yuku.com/stats? (easyprivacy.txt: 9414) +.yuku.com/stats\? +# ||ypcdn.com/webyp/javascripts/client_side_analytics_ (easyprivacy.txt: 9413) +.ypcdn.com/webyp/javascripts/client_side_analytics_ +# ||youtube.com/stream_204? (easyprivacy.txt: 9412) +.youtube.com/stream_204\? +# ||youtube.com/set_awesome? (easyprivacy.txt: 9411) +.youtube.com/set_awesome\? +# ||youtube.com/s? (easyprivacy.txt: 9410) +.youtube.com/s\? +# ||youtube.com/ptracking? (easyprivacy.txt: 9409) +.youtube.com/ptracking\? +# ||youtube.com/player_204? (easyprivacy.txt: 9408) +.youtube.com/player_204\? +# ||youtube.com/live_204? (easyprivacy.txt: 9407) +.youtube.com/live_204\? +# ||youtube.com/get_video? (easyprivacy.txt: 9406) +.youtube.com/get_video\? +# ||youtube.com/gen_204?$~xmlhttprequest (easyprivacy.txt: 9405) +.youtube.com/gen_204\? +# ||youtube.com/api/stats/ads? (easyprivacy.txt: 9404) +.youtube.com/api/stats/ads\? +# ||youtube-nocookie.com/robots.txt? (easyprivacy.txt: 9403) +.youtube-nocookie.com/robots\.txt\? +# ||youtube-nocookie.com/ptracking? (easyprivacy.txt: 9402) +.youtube-nocookie.com/ptracking\? +# ||youtube-nocookie.com/gen_204? (easyprivacy.txt: 9401) +.youtube-nocookie.com/gen_204\? +# ||youtube-nocookie.com/device_204? (easyprivacy.txt: 9400) +.youtube-nocookie.com/device_204\? +# ||yourtv.com.au/share/com/js/fb_google_intercept.js (easyprivacy.txt: 9399) +.yourtv.com.au/share/com/js/fb_google_intercept\.js +# ||youronlinechoices.com/activity/ (easyprivacy.txt: 9398) +.youronlinechoices.com/activity/ +# ||yourfilehost.com/counter.htm (easyprivacy.txt: 9397) +.yourfilehost.com/counter\.htm +# ||youporn.com^*/tracker.js (easyprivacy.txt: 9396) +.youporn.com/.*/tracker\.js +# ||younewstv.com/js/easyxdm.min.js (easyprivacy.txt: 9395) +.younewstv.com/js/easyxdm\.min\.js +# ||youandyourwedding.co.uk^*/socialtracking/ (easyprivacy.txt: 9394) +.youandyourwedding.co.uk/.*/socialtracking/ +# ||youandyourwedding.co.uk^*/EAS_tag. (easyprivacy.txt: 9393) +.youandyourwedding.co.uk/.*/EAS_tag\. +# ||yopmail.com/c.swf (easyprivacy.txt: 9392) +.yopmail.com/c\.swf +# ||yoox.com^*/yoox/ga.js (easyprivacy.txt: 9391) +.yoox.com/.*/yoox/ga\.js +# ||yobt.tv/js/timerotation*.js (easyprivacy.txt: 9390) +.yobt.tv/js/timerotation.*\.js +# ||ynuf.alibaba.com^ (easyprivacy.txt: 9389) +.ynuf.alibaba.com +# ||yimg.com^*/ywa.js (easyprivacy.txt: 9388) +.yimg.com/.*/ywa\.js +# ||yimg.com^*/yabcs.js (easyprivacy.txt: 9387) +.yimg.com/.*/yabcs\.js +# ||yimg.com^*/swfproxy-$object (easyprivacy.txt: 9386) +.yimg.com/.*/swfproxy- +# ||yimg.com/nq/ued/assets/flash/wsclient_ (easyprivacy.txt: 9385) +.yimg.com/nq/ued/assets/flash/wsclient_ +# ||yelp.ie/spice? (easyprivacy.txt: 9384) +.yelp.ie/spice\? +# ||yelp.com/spice? (easyprivacy.txt: 9383) +.yelp.com/spice\? +# ||yelp.com.au/spice? (easyprivacy.txt: 9382) +.yelp.com.au/spice\? +# ||yelp.co.uk/spice? (easyprivacy.txt: 9381) +.yelp.co.uk/spice\? +# ||yelp.ca/spice? (easyprivacy.txt: 9380) +.yelp.ca/spice\? +# ||yellowpages.com/proxy/turn_tags/ (easyprivacy.txt: 9379) +.yellowpages.com/proxy/turn_tags/ +# ||yellowpages.com/proxy/envoy/ (easyprivacy.txt: 9378) +.yellowpages.com/proxy/envoy/ +# ||yellowpages.com/images/li.gif? (easyprivacy.txt: 9377) +.yellowpages.com/images/li\.gif\? +# ||yellowpages.co.in/trac/ (easyprivacy.txt: 9376) +.yellowpages.co.in/trac/ +# ||yahooapis.com/get/Valueclick/CapAnywhere.getAnnotationCallback? (easyprivacy.txt: 9374) +.yahooapis.com/get/Valueclick/CapAnywhere\.getAnnotationCallback\? +# ||yahoo.net^*/hittail.js (easyprivacy.txt: 9373) +.yahoo.net/.*/hittail\.js +# ||yahoo.com^*/ultLog? (easyprivacy.txt: 9372) +.yahoo.com/.*/ultLog\? +# ||yahoo.com^*/rt.gif? (easyprivacy.txt: 9371) +.yahoo.com/.*/rt\.gif\? +# ||yahoo.com^*/pageview/ (easyprivacy.txt: 9370) +.yahoo.com/.*/pageview/ +# ||yahoo.com/yi?bv= (easyprivacy.txt: 9369) +.yahoo.com/yi\?bv= +# ||yahoo.com/track/ (easyprivacy.txt: 9368) +.yahoo.com/track/ +# ||yahoo.com/sig=$image (easyprivacy.txt: 9367) +.yahoo.com/sig= +# ||yahoo.com/serv?s (easyprivacy.txt: 9366) +.yahoo.com/serv\?s +# ||yahoo.com/perf.gif? (easyprivacy.txt: 9365) +.yahoo.com/perf\.gif\? +# ||yahoo.com/p.gif; (easyprivacy.txt: 9364) +.yahoo.com/p\.gif; +# ||yahoo.com/neo/ymstat (easyprivacy.txt: 9363) +.yahoo.com/neo/ymstat +# ||yahoo.com/neo/ygbeacon/ (easyprivacy.txt: 9362) +.yahoo.com/neo/ygbeacon/ +# ||yahoo.com/neo/stat (easyprivacy.txt: 9361) +.yahoo.com/neo/stat +# ||yahoo.com/beacon/ (easyprivacy.txt: 9360) +.yahoo.com/beacon/ +# ||yahoo.com/b? (easyprivacy.txt: 9359) +.yahoo.com/b\? +# ||yahoo.com/_td_api/beacon/ (easyprivacy.txt: 9358) +.yahoo.com/_td_api/beacon/ +# ||yahoo.com/__perf_log_ (easyprivacy.txt: 9357) +.yahoo.com/__perf_log_ +# ||xnxx.com/in.php?referer (easyprivacy.txt: 9356) +.xnxx.com/in\.php\?referer +# ||xing.com/collect/ (easyprivacy.txt: 9355) +.xing.com/collect/ +# ||xhcdn.com/js/track.min.js? (easyprivacy.txt: 9354) +.xhcdn.com/js/track\.min\.js\? +# ||xhcdn.com/js/analytics.js? (easyprivacy.txt: 9353) +.xhcdn.com/js/analytics\.js\? +# ||xhamster.com/cnt.php? (easyprivacy.txt: 9352) +.xhamster.com/cnt\.php\? +# ||xhamster.com/ajax.php?act=track_event (easyprivacy.txt: 9351) +.xhamster.com/ajax\.php\?act=track_event +# ||xbox.com^*/vortex_tracking.js (easyprivacy.txt: 9350) +.xbox.com/.*/vortex_tracking\.js +# ||wzus1.thesaurus.com^ (easyprivacy.txt: 9349) +.wzus1.thesaurus.com +# ||wzus1.reference.com^ (easyprivacy.txt: 9348) +.wzus1.reference.com +# ||wzus1.ask.com^ (easyprivacy.txt: 9347) +.wzus1.ask.com +# ||wzus.askkids.com^ (easyprivacy.txt: 9346) +.wzus.askkids.com +# ||www.imdb.*/rd/?q= (easyprivacy.txt: 9345) +.www.imdb.*./(.*/)?rd/\?q= +# ||www.google.*/imghover?$image (easyprivacy.txt: 9344) +.www.google.*./(.*/)?imghover\? +# ||www.google.*/imgevent?$script (easyprivacy.txt: 9343) +.www.google.*./(.*/)?imgevent\? +# ||wwe.com/sites/all/modules/wwe/wwe_analytics/ (easyprivacy.txt: 9342) +.wwe.com/sites/all/modules/wwe/wwe_analytics/ +# ||wusstrack.wunderground.com^ (easyprivacy.txt: 9341) +.wusstrack.wunderground.com +# ||wunderground.com/tag.php (easyprivacy.txt: 9340) +.wunderground.com/tag\.php +# ||wtk.db.com^ (easyprivacy.txt: 9339) +.wtk.db.com +# ||ws.yellowpages.ca^ (easyprivacy.txt: 9338) +.ws.yellowpages.ca +# ||ws.md/c.png? (easyprivacy.txt: 9337) +.ws.md/c\.png\? +# ||ws.elance.com^*&referrer= (easyprivacy.txt: 9336) +.ws.elance.com/.*&referrer= +# ||wowwiki.com/__onedot? (easyprivacy.txt: 9335) +.wowwiki.com/__onedot\? +# ||wovencube.com/track/ (easyprivacy.txt: 9334) +.wovencube.com/track/ +# ||worldvision.org/kana/wvcg_wvorg.asp? (easyprivacy.txt: 9333) +.worldvision.org/kana/wvcg_wvorg\.asp\? +# ||worldreviewer.com/_search/tracker.png? (easyprivacy.txt: 9332) +.worldreviewer.com/_search/tracker\.png\? +# ||worldnow.com/global/tools/video/Namespace_VideoReporting_DW.js (easyprivacy.txt: 9331) +.worldnow.com/global/tools/video/Namespace_VideoReporting_DW\.js +# ||worldnow.com/ajax?callback=po_a&$xmlhttprequest (easyprivacy.txt: 9330) +.worldnow.com/ajax\?callback=po_a& +# ||worldgolf.com^*/js/track.js (easyprivacy.txt: 9329) +.worldgolf.com/.*/js/track\.js +# ||worksheetsengine.com/fd/ls/l? (easyprivacy.txt: 9328) +.worksheetsengine.com/fd/ls/l\? +# ||wnd.com/s.js (easyprivacy.txt: 9327) +.wnd.com/s\.js +# ||witn.com/g/g/button/ (easyprivacy.txt: 9326) +.witn.com/g/g/button/ +# ||wired.com^*/js/tracking.js (easyprivacy.txt: 9325) +.wired.com/.*/js/tracking\.js +# ||wired.com/tracker.js (easyprivacy.txt: 9324) +.wired.com/tracker\.js +# ||wired.com/js/stats/ (easyprivacy.txt: 9323) +.wired.com/js/stats/ +# ||wired.com/event? (easyprivacy.txt: 9322) +.wired.com/event\? +# ||wired.com/ecom/ (easyprivacy.txt: 9321) +.wired.com/ecom/ +# ||wired.co.uk^*/Statistics/ (easyprivacy.txt: 9320) +.wired.co.uk/.*/Statistics/ +# ||winter.metacafe.com^ (easyprivacy.txt: 9319) +.winter.metacafe.com +# ||windowsphone.com/scripts/siteTracking.js (easyprivacy.txt: 9318) +.windowsphone.com/scripts/siteTracking\.js +# ||wikipedia.org/beacon/ (easyprivacy.txt: 9317) +.wikipedia.org/beacon/ +# ||wikio.com/shopping/tracking/hit.jsp? (easyprivacy.txt: 9316) +.wikio.com/shopping/tracking/hit\.jsp\? +# ||wikinvest.com/plugin/api.php?*=metricld& (easyprivacy.txt: 9315) +.wikinvest.com/plugin/api\.php\?.*=metricld& +# ||wikimedia.org/wiki/Special:RecordImpression? (easyprivacy.txt: 9314) +.wikimedia.org/wiki/Special:RecordImpression\? +# ||wikihow.com/x/collect? (easyprivacy.txt: 9313) +.wikihow.com/x/collect\? +# ||whstatic.com^*/ga.js? (easyprivacy.txt: 9312) +.whstatic.com/.*/ga\.js\? +# ||whoson.smcorp.com^ (easyprivacy.txt: 9311) +.whoson.smcorp.com +# ||whatcar.com/Client/Stats/ (easyprivacy.txt: 9310) +.whatcar.com/Client/Stats/ +# ||wellsphere.com/?hit= (easyprivacy.txt: 9309) +.wellsphere.com/\?hit= +# ||wellness.com/proxy.asp (easyprivacy.txt: 9308) +.wellness.com/proxy\.asp +# ||wego.com/farmer/ (easyprivacy.txt: 9307) +.wego.com/farmer/ +# ||weeklyblitz.net/tracker.js (easyprivacy.txt: 9306) +.weeklyblitz.net/tracker\.js +# ||webyclip.com/WebyClipAnalytics.html (easyprivacy.txt: 9305) +.webyclip.com/WebyClipAnalytics\.html +# ||webstats.perfectworld.com^ (easyprivacy.txt: 9304) +.webstats.perfectworld.com +# ||webssearches.com/__kl.gif? (easyprivacy.txt: 9303) +.webssearches.com/__kl\.gif\? +# ||webring.com/cgi-bin/logit? (easyprivacy.txt: 9302) +.webring.com/cgi-bin/logit\? +# ||webmonkey.com/js/stats/ (easyprivacy.txt: 9301) +.webmonkey.com/js/stats/ +# ||webmd.com^*/tools/dsppixels.js (easyprivacy.txt: 9300) +.webmd.com/.*/tools/dsppixels\.js +# ||webmd.com/pixel/ (easyprivacy.txt: 9299) +.webmd.com/pixel/ +# ||webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/oas35.js (easyprivacy.txt: 9298) +.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/oas35\.js +# ||weblogger01.data.disney.com^ (easyprivacy.txt: 9297) +.weblogger01.data.disney.com +# ||weblog.strawberrynet.com^ (easyprivacy.txt: 9296) +.weblog.strawberrynet.com +# ||webjam.com/Actions/Hit.jam? (easyprivacy.txt: 9295) +.webjam.com/Actions/Hit\.jam\? +# ||webcrawler.com/__kl.gif (easyprivacy.txt: 9294) +.webcrawler.com/__kl\.gif +# ||webcollage.net/apps/el? (easyprivacy.txt: 9293) +.webcollage.net/apps/el\? +# ||webcamgalore.com/aslog.js (easyprivacy.txt: 9292) +.webcamgalore.com/aslog\.js +# ||web.hbr.org/test/whoami.php (easyprivacy.txt: 9291) +.web.hbr.org/test/whoami\.php +# ||web-t.9gag.com^ (easyprivacy.txt: 9290) +.web-t.9gag.com +# ||web-18.com/common/w18a26062012143253_min.js (easyprivacy.txt: 9289) +.web-18.com/common/w18a26062012143253_min\.js +# ||weather.com^*/makeRequest- (easyprivacy.txt: 9288) +.weather.com/.*/makeRequest- +# ||weather.com/pagelet/metrics/ (easyprivacy.txt: 9287) +.weather.com/pagelet/metrics/ +# ||wcnc.com/g/g/button/ (easyprivacy.txt: 9286) +.wcnc.com/g/g/button/ +# ||wbr.com/open.aspx? (easyprivacy.txt: 9285) +.wbr.com/open\.aspx\? +# ||wavescape.mobi/rest/track/ (easyprivacy.txt: 9284) +.wavescape.mobi/rest/track/ +# ||watson.live.com^ (easyprivacy.txt: 9283) +.watson.live.com +# ||watchmouse.com^*/jsrum/ (easyprivacy.txt: 9282) +.watchmouse.com/.*/jsrum/ +# ||washingtonpost.com^*/one.gif? (easyprivacy.txt: 9281) +.washingtonpost.com/.*/one\.gif\? +# ||washingtonpost.com/wp-srv/javascript/placeSiteMetrix. (easyprivacy.txt: 9280) +.washingtonpost.com/wp-srv/javascript/placeSiteMetrix\. +# ||washingtonpost.com/rw/sites/twpweb/js/init/init.track-header-1.0.0.js (easyprivacy.txt: 9279) +.washingtonpost.com/rw/sites/twpweb/js/init/init\.track-header-1\.0\.0\.js +# ||warp.prnewswire.co.uk^ (easyprivacy.txt: 9278) +.warp.prnewswire.co.uk +# ||wallpaperstock.net/partners.js (easyprivacy.txt: 9277) +.wallpaperstock.net/partners\.js +# ||walletpop.com/track/ (easyprivacy.txt: 9276) +.walletpop.com/track/ +# ||wallcannrewards.com^*/index.php? (easyprivacy.txt: 9275) +.wallcannrewards.com/.*/index\.php\? +# ||wachovia.com^*/stats.js (easyprivacy.txt: 9274) +.wachovia.com/.*/stats\.js +# ||wa.ui-portal.de^ (easyprivacy.txt: 9273) +.wa.ui-portal.de +# ||wa.metro.co.uk^ (easyprivacy.txt: 9272) +.wa.metro.co.uk +# ||w88.go.com^ (easyprivacy.txt: 9271) +.w88.go.com +# ||vzaar.com/libs/stats/ (easyprivacy.txt: 9270) +.vzaar.com/libs/stats/ +# ||vstats.digitaltrends.com^ (easyprivacy.txt: 9269) +.vstats.digitaltrends.com +# ||vstat.vidigy.com^ (easyprivacy.txt: 9268) +.vstat.vidigy.com +# ||vs4food.com/ERA/era_rl.aspx (easyprivacy.txt: 9267) +.vs4food.com/ERA/era_rl\.aspx +# ||vs.target.com^ (easyprivacy.txt: 9266) +.vs.target.com +# ||voyeurhit.com/js/a2210.js (easyprivacy.txt: 9265) +.voyeurhit.com/js/a2210\.js +# ||voyages-sncf.com^*/vsca.js (easyprivacy.txt: 9264) +.voyages-sncf.com/.*/vsca\.js +# ||votigo.com/contests/t/ (easyprivacy.txt: 9263) +.votigo.com/contests/t/ +# ||vogue.co.uk/_/logic/statistics.js (easyprivacy.txt: 9262) +.vogue.co.uk/_/logic/statistics\.js +# ||vodpod.com/stats/ (easyprivacy.txt: 9261) +.vodpod.com/stats/ +# ||vnunet.com^*/wunderloop/ (easyprivacy.txt: 9260) +.vnunet.com/.*/wunderloop/ +# ||vmware.com/files/include/ga/ (easyprivacy.txt: 9259) +.vmware.com/files/include/ga/ +# ||vixy.net/fb-traffic-pop.js (easyprivacy.txt: 9258) +.vixy.net/fb-traffic-pop\.js +# ||vitamine.networldmedia.net^ (easyprivacy.txt: 9257) +.vitamine.networldmedia.net +# ||visualware.com/vvv? (easyprivacy.txt: 9256) +.visualware.com/vvv\? +# ||visitors.sourcingmap.com^ (easyprivacy.txt: 9255) +.visitors.sourcingmap.com +# ||visit.theglobeandmail.com^ (easyprivacy.txt: 9254) +.visit.theglobeandmail.com +# ||visit.mobot.net^ (easyprivacy.txt: 9253) +.visit.mobot.net +# ||visit.dealspwn.com^ (easyprivacy.txt: 9252) +.visit.dealspwn.com +# ||virtualearth.net/mapcontrol/*/veapiAnalytics.js (easyprivacy.txt: 9251) +.virtualearth.net/mapcontrol/.*/veapiAnalytics\.js +# ||virginholidays.co.uk/_assets/js/dc_storm/track.js (easyprivacy.txt: 9250) +.virginholidays.co.uk/_assets/js/dc_storm/track\.js +# ||viralogy.com/javascript/viralogy_tracker.js (easyprivacy.txt: 9249) +.viralogy.com/javascript/viralogy_tracker\.js +# ||viralnova.com/track.php (easyprivacy.txt: 9248) +.viralnova.com/track\.php +# ||vimeo.com/log/outro_displayed (easyprivacy.txt: 9247) +.vimeo.com/log/outro_displayed +# ||villarenters.com/inttrack.aspx (easyprivacy.txt: 9246) +.villarenters.com/inttrack\.aspx +# ||vietnamnet.vn^*/tracking.js (easyprivacy.txt: 9245) +.vietnamnet.vn/.*/tracking\.js +# ||vidxden.com^*/tracker.js (easyprivacy.txt: 9244) +.vidxden.com/.*/tracker\.js +# ||vidx.to/php/count.php? (easyprivacy.txt: 9243) +.vidx.to/php/count\.php\? +# ||videotracker.washingtonpost.com^ (easyprivacy.txt: 9242) +.videotracker.washingtonpost.com +# ||videopremium.tv/dev/tr.js (easyprivacy.txt: 9241) +.videopremium.tv/dev/tr\.js +# ||videoplaza.com/proxy/tracker? (easyprivacy.txt: 9240) +.videoplaza.com/proxy/tracker\? +# ||video.syfy.com/lg.php (easyprivacy.txt: 9239) +.video.syfy.com/lg\.php +# ||video.nbc.com^*/metrics_viral.xml (easyprivacy.txt: 9238) +.video.nbc.com/.*/metrics_viral\.xml +# ||video.msn.com/frauddetect.aspx? (easyprivacy.txt: 9237) +.video.msn.com/frauddetect\.aspx\? +# ||video-stats.video.google.com^ (easyprivacy.txt: 9236) +.video-stats.video.google.com +# ||vid.io^*/mejs-feature-analytics.js (easyprivacy.txt: 9235) +.vid.io/.*/mejs-feature-analytics\.js +# ||victoriassecret.com/m/a.gif? (easyprivacy.txt: 9234) +.victoriassecret.com/m/a\.gif\? +# ||vice.com*/tracker.html (easyprivacy.txt: 9233) +.vice.com*./(.*/)?tracker\.html +# ||vice.com*/mb_tracker.html (easyprivacy.txt: 9232) +.vice.com*./(.*/)?mb_tracker\.html +# ||viamichelin.de^*/stats.js (easyprivacy.txt: 9231) +.viamichelin.de/.*/stats\.js +# ||viamichelin.co.uk^*/stats.js (easyprivacy.txt: 9230) +.viamichelin.co.uk/.*/stats\.js +# ||vevo.com/audit.ashx? (easyprivacy.txt: 9229) +.vevo.com/audit\.ashx\? +# ||vertical-stats.huffingtonpost.com^ (easyprivacy.txt: 9228) +.vertical-stats.huffingtonpost.com +# ||verizonwireless.com/mpel.js? (easyprivacy.txt: 9227) +.verizonwireless.com/mpel\.js\? +# ||venere.com/common/js/track.js (easyprivacy.txt: 9226) +.venere.com/common/js/track\.js +# ||velaro.com/lf/monitor2.aspx? (easyprivacy.txt: 9225) +.velaro.com/lf/monitor2\.aspx\? +# ||vcstar.com/metrics/ (easyprivacy.txt: 9224) +.vcstar.com/metrics/ +# ||vbs.tv/tracker.html (easyprivacy.txt: 9223) +.vbs.tv/tracker\.html +# ||vator.tv/tracking/ (easyprivacy.txt: 9222) +.vator.tv/tracking/ +# ||validome.org/valilogger/track.js (easyprivacy.txt: 9221) +.validome.org/valilogger/track\.js +# ||v.fwmrm.net/ad/*slotImpression (easyprivacy.txt: 9220) +.v.fwmrm.net/ad/.*slotImpression +# ||v.fwmrm.net/ad/*defaultImpression (easyprivacy.txt: 9219) +.v.fwmrm.net/ad/.*defaultImpression +# ||uts-rss.crystalmedianetworks.com/track.php? (easyprivacy.txt: 9218) +.uts-rss.crystalmedianetworks.com/track\.php\? +# ||ut.ratepoint.com^ (easyprivacy.txt: 9217) +.ut.ratepoint.com +# ||usps.com/survey/ (easyprivacy.txt: 9216) +.usps.com/survey/ +# ||usnews.com/static/scripts/Analytics.js (easyprivacy.txt: 9215) +.usnews.com/static/scripts/Analytics\.js +# ||userfly.com^ (easyprivacy.txt: 9214) +.userfly.com +# ||usell.com/bug.gif? (easyprivacy.txt: 9213) +.usell.com/bug\.gif\? +# ||usage.zattoo.com/?adblock= (easyprivacy.txt: 9212) +.usage.zattoo.com/\?adblock= +# ||urlcheck.hulu.com^ (easyprivacy.txt: 9211) +.urlcheck.hulu.com +# ||urchin-tracker.bigpoint.net^ (easyprivacy.txt: 9210) +.urchin-tracker.bigpoint.net +# ||urbanlist.com/event/track-first-view/ (easyprivacy.txt: 9209) +.urbanlist.com/event/track-first-view/ +# ||uptpro.homestead.com^ (easyprivacy.txt: 9208) +.uptpro.homestead.com +# ||upsellit.com^*/visitor? (easyprivacy.txt: 9207) +.upsellit.com/.*/visitor\? +# ||upromise.com/js/csgather.js (easyprivacy.txt: 9206) +.upromise.com/js/csgather\.js +# ||upornia.com/js/0818.js (easyprivacy.txt: 9205) +.upornia.com/js/0818\.js +# ||uploadrocket.net/downloadfiles.php?*&ip (easyprivacy.txt: 9204) +.uploadrocket.net/downloadfiles\.php\?.*&ip +# ||upi.com/*/stat/ (easyprivacy.txt: 9203) +.upi.com/.*/stat/ +# ||up.nytimes.com^ (easyprivacy.txt: 9202) +.up.nytimes.com +# ||up.boston.com^ (easyprivacy.txt: 9201) +.up.boston.com +# ||unrulymedia.com/loader-analytics.html (easyprivacy.txt: 9200) +.unrulymedia.com/loader-analytics\.html +# ||unrealmarketing.com/js/unrealGTS.js (easyprivacy.txt: 9199) +.unrealmarketing.com/js/unrealGTS\.js +# ||united.com^*/hp_mediaplexunited.html (easyprivacy.txt: 9198) +.united.com/.*/hp_mediaplexunited\.html +# ||unisys.com^*/tracking.js (easyprivacy.txt: 9197) +.unisys.com/.*/tracking\.js +# ||unisys.com^*/dcsMultiTrackFastSearch. (easyprivacy.txt: 9196) +.unisys.com/.*/dcsMultiTrackFastSearch\. +# ||unisys.com^*/dcsMultiTrack.js (easyprivacy.txt: 9195) +.unisys.com/.*/dcsMultiTrack\.js +# ||unionleader.com/js/ul/ga.js (easyprivacy.txt: 9194) +.unionleader.com/js/ul/ga\.js +# ||unicornapp.com^*/Metrics/ (easyprivacy.txt: 9193) +.unicornapp.com/.*/Metrics/ +# ||ultra-gamerz-zone.cz.cc/b/stats? (easyprivacy.txt: 9192) +.ultra-gamerz-zone.cz.cc/b/stats\? +# ||ultimedia.com/deliver/statistiques/ (easyprivacy.txt: 9191) +.ultimedia.com/deliver/statistiques/ +# ||ulogin.ru/stats.html (easyprivacy.txt: 9190) +.ulogin.ru/stats\.html +# ||ui-portal.com/1and1/mailcom/s? (easyprivacy.txt: 9189) +.ui-portal.com/1and1/mailcom/s\? +# ||ucoz.com/stat/ (easyprivacy.txt: 9188) +.ucoz.com/stat/ +# ||u.tv/utvplayer/everywhere/tracking.aspx? (easyprivacy.txt: 9187) +.u.tv/utvplayer/everywhere/tracking\.aspx\? +# ||u.bb/omni*.swf| (easyprivacy.txt: 9186) +.u.bb/omni.*\.swf$ +# ||typepad.com/t/stats? (easyprivacy.txt: 9185) +.typepad.com/t/stats\? +# ||txn.thenewsroom.com^ (easyprivacy.txt: 9184) +.txn.thenewsroom.com +# ||twitvid.com/mediaplayer/players/tracker.swf (easyprivacy.txt: 9183) +.twitvid.com/mediaplayer/players/tracker\.swf +# ||twitvid.com/api/tracking.php$object-subrequest (easyprivacy.txt: 9182) +.twitvid.com/api/tracking\.php +# ||twitter.com^*/log.json? (easyprivacy.txt: 9181) +.twitter.com/.*/log\.json\? +# ||twitter.com^*.gif? (easyprivacy.txt: 9180) +.twitter.com/.*\.gif\? +# ||twitter.com/scribes/ (easyprivacy.txt: 9179) +.twitter.com/scribes/ +# ||twitter.com/scribe? (easyprivacy.txt: 9178) +.twitter.com/scribe\? +# ||twitter.com/abacus? (easyprivacy.txt: 9177) +.twitter.com/abacus\? +# ||twitch.tv/track/ (easyprivacy.txt: 9176) +.twitch.tv/track/ +# ||twimbow.com/serverreq/twbtracker.php$xmlhttprequest (easyprivacy.txt: 9175) +.twimbow.com/serverreq/twbtracker\.php +# ||tweako.com/imp.php (easyprivacy.txt: 9174) +.tweako.com/imp\.php +# ||tw.i.hulu.com^ (easyprivacy.txt: 9173) +.tw.i.hulu.com +# ||tvshark.com/stats.js (easyprivacy.txt: 9172) +.tvshark.com/stats\.js +# ||tvnz.co.nz/stylesheets/tvnz/lib/js/analytics.js? (easyprivacy.txt: 9171) +.tvnz.co.nz/stylesheets/tvnz/lib/js/analytics\.js\? +# ||tv-links.eu/qtt_spacer.gif (easyprivacy.txt: 9170) +.tv-links.eu/qtt_spacer\.gif +# ||turnsocial.com/track/ (easyprivacy.txt: 9169) +.turnsocial.com/track/ +# ||turn.com/js/module.tracking.js (easyprivacy.txt: 9168) +.turn.com/js/module\.tracking\.js +# ||tumblr.com/impixu? (easyprivacy.txt: 9167) +.tumblr.com/impixu\? +# ||tumblr.com/analytics.html (easyprivacy.txt: 9166) +.tumblr.com/analytics\.html +# ||tubepornclassic.com/js/111.js (easyprivacy.txt: 9165) +.tubepornclassic.com/js/111\.js +# ||tubeplus.me/imp.php? (easyprivacy.txt: 9164) +.tubeplus.me/imp\.php\? +# ||tubeplus.me/geoip.php? (easyprivacy.txt: 9163) +.tubeplus.me/geoip\.php\? +# ||ttxm.co.uk^*/log.js (easyprivacy.txt: 9162) +.ttxm.co.uk/.*/log\.js +# ||tsn.ua/svc/video/stat/ (easyprivacy.txt: 9161) +.tsn.ua/svc/video/stat/ +# ||tscapeplay.com/pvim? (easyprivacy.txt: 9160) +.tscapeplay.com/pvim\? +# ||tscapeplay.com/msvp.php? (easyprivacy.txt: 9159) +.tscapeplay.com/msvp\.php\? +# ||truthdig.com/?ACT= (easyprivacy.txt: 9158) +.truthdig.com/\?ACT= +# ||truste.com/notice?*consent-track (easyprivacy.txt: 9157) +.truste.com/notice\?.*consent-track +# ||truste.com/common/js/ga.js (easyprivacy.txt: 9156) +.truste.com/common/js/ga\.js +# ||trueffect.underarmour.com^ (easyprivacy.txt: 9155) +.trueffect.underarmour.com +# ||truecar.com/tct? (easyprivacy.txt: 9154) +.truecar.com/tct\? +# ||trovus.co.uk/tracker/ (easyprivacy.txt: 9153) +.trovus.co.uk/tracker/ +# ||trove.com/identity/public/visitor/ (easyprivacy.txt: 9152) +.trove.com/identity/public/visitor/ +# ||tripadvisor.com/uvpages/page_moniker.html (easyprivacy.txt: 9151) +.tripadvisor.com/uvpages/page_moniker\.html +# ||tripadvisor.*/PageMoniker? (easyprivacy.txt: 9150) +.tripadvisor.*./(.*/)?PageMoniker\? +# ||triond.com/cntimp? (easyprivacy.txt: 9149) +.triond.com/cntimp\? +# ||trialpay.com/mi/ (easyprivacy.txt: 9148) +.trialpay.com/mi/ +# ||triadretail.com^*/roverTrack.js (easyprivacy.txt: 9147) +.triadretail.com/.*/roverTrack\.js +# ||treato.com/api/analytics? (easyprivacy.txt: 9146) +.treato.com/api/analytics\? +# ||treatme.co.nz^*/Census.js (easyprivacy.txt: 9145) +.treatme.co.nz/.*/Census\.js +# ||tre.emv3.com/P? (easyprivacy.txt: 9144) +.tre.emv3.com/P\? +# ||trck.sixt.com^ (easyprivacy.txt: 9143) +.trck.sixt.com +# ||trb.com/hive/swf/analytics.swf (easyprivacy.txt: 9142) +.trb.com/hive/swf/analytics\.swf +# ||trax.tvguide.com^ (easyprivacy.txt: 9141) +.trax.tvguide.com +# ||traktr.news.com.au^ (easyprivacy.txt: 9140) +.traktr.news.com.au +# ||trainup.com/inc/TUPTracking.js (easyprivacy.txt: 9139) +.trainup.com/inc/TUPTracking\.js +# ||traffic.tuberip.com^ (easyprivacy.txt: 9138) +.traffic.tuberip.com +# ||traffic.buyservices.com^ (easyprivacy.txt: 9137) +.traffic.buyservices.com +# ||trade-it.co.uk/counter/ (easyprivacy.txt: 9136) +.trade-it.co.uk/counter/ +# ||trackpm.shop2market.com^ (easyprivacy.txt: 9135) +.trackpm.shop2market.com +# ||tracking.yourfilehost.com^ (easyprivacy.txt: 9134) +.tracking.yourfilehost.com +# ||tracking.ustream.tv^ (easyprivacy.txt: 9133) +.tracking.ustream.tv +# ||tracking.unrealengine.com^ (easyprivacy.txt: 9132) +.tracking.unrealengine.com +# ||tracking.ukwm.co.uk^ (easyprivacy.txt: 9131) +.tracking.ukwm.co.uk +# ||tracking.times247.com^ (easyprivacy.txt: 9130) +.tracking.times247.com +# ||tracking.tidalhifi.com^ (easyprivacy.txt: 9129) +.tracking.tidalhifi.com +# ||tracking.softwareprojects.com^ (easyprivacy.txt: 9128) +.tracking.softwareprojects.com +# ||tracking.shoptogether.buy.com^ (easyprivacy.txt: 9127) +.tracking.shoptogether.buy.com +# ||tracking.resumecompanion.com^ (easyprivacy.txt: 9126) +.tracking.resumecompanion.com +# ||tracking.realtor.com^ (easyprivacy.txt: 9125) +.tracking.realtor.com +# ||tracking.olx.com^ (easyprivacy.txt: 9124) +.tracking.olx.com +# ||tracking.olx-st.com^ (easyprivacy.txt: 9123) +.tracking.olx-st.com +# ||tracking.mycapture.com^ (easyprivacy.txt: 9122) +.tracking.mycapture.com +# ||tracking.moneyam.com^ (easyprivacy.txt: 9121) +.tracking.moneyam.com +# ||tracking.military.com^ (easyprivacy.txt: 9120) +.tracking.military.com +# ||tracking.koego.com^ (easyprivacy.txt: 9119) +.tracking.koego.com +# ||tracking.hsn.com^ (easyprivacy.txt: 9118) +.tracking.hsn.com +# ||tracking.goodgamestudios.com^ (easyprivacy.txt: 9117) +.tracking.goodgamestudios.com +# ||tracking.gfycat.com/viewCount/ (easyprivacy.txt: 9116) +.tracking.gfycat.com/viewCount/ +# ||tracking.eurosport.com^ (easyprivacy.txt: 9115) +.tracking.eurosport.com +# ||tracking.conduit.com^ (easyprivacy.txt: 9114) +.tracking.conduit.com +# ||tracking.chacha.com^ (easyprivacy.txt: 9113) +.tracking.chacha.com +# ||tracking.carsales.com.au^ (easyprivacy.txt: 9112) +.tracking.carsales.com.au +# ||tracking.carprices.com^ (easyprivacy.txt: 9111) +.tracking.carprices.com +# ||tracking.battleon.com^ (easyprivacy.txt: 9110) +.tracking.battleon.com +# ||tracking.batanga.com^ (easyprivacy.txt: 9109) +.tracking.batanga.com +# ||tracking.ancestry.com^ (easyprivacy.txt: 9108) +.tracking.ancestry.com +# ||tracker.wordstream.com^ (easyprivacy.txt: 9107) +.tracker.wordstream.com +# ||tracker.washtimes.com^ (easyprivacy.txt: 9106) +.tracker.washtimes.com +# ||tracker.uprinting.com^ (easyprivacy.txt: 9105) +.tracker.uprinting.com +# ||tracker.revip.info^ (easyprivacy.txt: 9104) +.tracker.revip.info +# ||tracker.redditmedia.com^ (easyprivacy.txt: 9103) +.tracker.redditmedia.com +# ||tracker.realclearpolitics.com^ (easyprivacy.txt: 9102) +.tracker.realclearpolitics.com +# ||tracker.pinnaclesports.com^ (easyprivacy.txt: 9101) +.tracker.pinnaclesports.com +# ||tracker.mattel.com^ (easyprivacy.txt: 9100) +.tracker.mattel.com +# ||tracker.joost.com^ (easyprivacy.txt: 9099) +.tracker.joost.com +# ||tracker.cpapath.com^ (easyprivacy.txt: 9098) +.tracker.cpapath.com +# ||tracker.calameo.com^ (easyprivacy.txt: 9097) +.tracker.calameo.com +# ||tracker.anandtech.com^ (easyprivacy.txt: 9096) +.tracker.anandtech.com +# ||track.zomato.com^ (easyprivacy.txt: 9095) +.track.zomato.com +# ||track.zalando. (easyprivacy.txt: 9094) +.track.zalando.*. +# ||track.wildblue.com^ (easyprivacy.txt: 9093) +.track.wildblue.com +# ||track.websiteceo.com^ (easyprivacy.txt: 9092) +.track.websiteceo.com +# ||track.webgains.com^ (easyprivacy.txt: 9091) +.track.webgains.com +# ||track.slideshare.net^ (easyprivacy.txt: 9090) +.track.slideshare.net +# ||track.pushbullet.com^ (easyprivacy.txt: 9089) +.track.pushbullet.com +# ||track.promptfile.com^ (easyprivacy.txt: 9088) +.track.promptfile.com +# ||track.ning.com^ (easyprivacy.txt: 9087) +.track.ning.com +# ||track.netzero.net^ (easyprivacy.txt: 9086) +.track.netzero.net +# ||track.hubspot.com^ (easyprivacy.txt: 9085) +.track.hubspot.com +# ||track.gawker.com^ (easyprivacy.txt: 9084) +.track.gawker.com +# ||track.fxstreet.com^ (easyprivacy.txt: 9083) +.track.fxstreet.com +# ||track.ft.com^ (easyprivacy.txt: 9082) +.track.ft.com +# ||track.engagesciences.com^ (easyprivacy.txt: 9081) +.track.engagesciences.com +# ||track.collegehumor.com^ (easyprivacy.txt: 9080) +.track.collegehumor.com +# ||track.codepen.io^ (easyprivacy.txt: 9079) +.track.codepen.io +# ||track.cbs.com^ (easyprivacy.txt: 9078) +.track.cbs.com +# ||track.catalogs.com^ (easyprivacy.txt: 9077) +.track.catalogs.com +# ||track.briskfile.com^ (easyprivacy.txt: 9076) +.track.briskfile.com +# ||tracer.perezhilton.com^ (easyprivacy.txt: 9075) +.tracer.perezhilton.com +# ||tracelog.www.alibaba.com^ (easyprivacy.txt: 9074) +.tracelog.www.alibaba.com +# ||tqn.com/px/? (easyprivacy.txt: 9073) +.tqn.com/px/\? +# ||toyota.com/analytics/ (easyprivacy.txt: 9072) +.toyota.com/analytics/ +# ||tottenhamhotspur.com/media/javascript/google/ (easyprivacy.txt: 9071) +.tottenhamhotspur.com/media/javascript/google/ +# ||totalporn.com/videos/tracking/?url= (easyprivacy.txt: 9070) +.totalporn.com/videos/tracking/\?url= +# ||total.shanghaidaily.com^ (easyprivacy.txt: 9069) +.total.shanghaidaily.com +# ||toshibadirect.com^*/remarketing_google.js (easyprivacy.txt: 9068) +.toshibadirect.com/.*/remarketing_google\.js +# ||torrentz.ph/ping? (easyprivacy.txt: 9067) +.torrentz.ph/ping\? +# ||torrentz.me/ping? (easyprivacy.txt: 9066) +.torrentz.me/ping\? +# ||torrentz.li/ping? (easyprivacy.txt: 9065) +.torrentz.li/ping\? +# ||torrentz.in/ping? (easyprivacy.txt: 9064) +.torrentz.in/ping\? +# ||torrentz.eu/ping? (easyprivacy.txt: 9063) +.torrentz.eu/ping\? +# ||topix.com/t6track/ (easyprivacy.txt: 9062) +.topix.com/t6track/ +# ||top.wn.com^ (easyprivacy.txt: 9061) +.top.wn.com +# ||tmagazine.com/js/track_ (easyprivacy.txt: 9060) +.tmagazine.com/js/track_ +# ||tk.kargo.com^ (easyprivacy.txt: 9059) +.tk.kargo.com +# ||tivo.com/__ssobj/track? (easyprivacy.txt: 9058) +.tivo.com/__ssobj/track\? +# ||tinypic.com/track.php? (easyprivacy.txt: 9057) +.tinypic.com/track\.php\? +# ||tinypic.com/api.php?*&action=track$object-subrequest (easyprivacy.txt: 9056) +.tinypic.com/api\.php\?.*&action=track +# ||timestrends.timesnow.tv^ (easyprivacy.txt: 9055) +.timestrends.timesnow.tv +# ||timestrends.indiatimes.com^ (easyprivacy.txt: 9054) +.timestrends.indiatimes.com +# ||timesrecordnews.com/metrics/ (easyprivacy.txt: 9053) +.timesrecordnews.com/metrics/ +# ||timeslogtn.timesnow.tv^ (easyprivacy.txt: 9052) +.timeslogtn.timesnow.tv +# ||tidaltv.com/Ping.aspx (easyprivacy.txt: 9051) +.tidaltv.com/Ping\.aspx +# ||tickco.com/track.js (easyprivacy.txt: 9050) +.tickco.com/track\.js +# ||tiaa-cref.org^*/js_tiaacref_analytics. (easyprivacy.txt: 9049) +.tiaa-cref.org/.*/js_tiaacref_analytics\. +# ||ti.com/assets/js/headerfooter/$script (easyprivacy.txt: 9048) +.ti.com/assets/js/headerfooter/ +# ||thrillist.com/track (easyprivacy.txt: 9047) +.thrillist.com/track +# ||thinkgeek.com/js/rts.js (easyprivacy.txt: 9046) +.thinkgeek.com/js/rts\.js +# ||theweek.com/decor/track/ (easyprivacy.txt: 9045) +.theweek.com/decor/track/ +# ||thesmokinggun.com^*/jsmd.js (easyprivacy.txt: 9044) +.thesmokinggun.com/.*/jsmd\.js +# ||theseforums.com/track/ (easyprivacy.txt: 9043) +.theseforums.com/track/ +# ||thesaurus.com/track/ (easyprivacy.txt: 9042) +.thesaurus.com/track/ +# ||theolivepress.es/cdn-cgi/cl/ (easyprivacy.txt: 9041) +.theolivepress.es/cdn-cgi/cl/ +# ||thenewsroom.com//playerreporting/ (easyprivacy.txt: 9040) +# ||thelocal.se/scripts/sstat_plugin.js (easyprivacy.txt: 9039) +.thelocal.se/scripts/sstat_plugin\.js +# ||thelocal.se/log/? (easyprivacy.txt: 9038) +.thelocal.se/log/\? +# ||thelocal.de/marketplace/log/? (easyprivacy.txt: 9037) +.thelocal.de/marketplace/log/\? +# ||thelocal.de/log/? (easyprivacy.txt: 9036) +.thelocal.de/log/\? +# ||thejournal.ie/i.php (easyprivacy.txt: 9035) +.thejournal.ie/i\.php +# ||thejc.com/metatraffic2/ (easyprivacy.txt: 9034) +.thejc.com/metatraffic2/ +# ||thegumtree.com^*/tracking.js (easyprivacy.txt: 9033) +.thegumtree.com/.*/tracking\.js +# ||thegameslist.com/wb/t.gif (easyprivacy.txt: 9032) +.thegameslist.com/wb/t\.gif +# ||thefrisky.com/?act= (easyprivacy.txt: 9031) +.thefrisky.com/\?act= +# ||thefreedictionary.com^*/track.ashx? (easyprivacy.txt: 9030) +.thefreedictionary.com/.*/track\.ashx\? +# ||thefreedictionary.com/x/tp.ashx (easyprivacy.txt: 9029) +.thefreedictionary.com/x/tp\.ashx +# ||thefind.com/page/sizelog? (easyprivacy.txt: 9028) +.thefind.com/page/sizelog\? +# ||thefilter.com^*/CaptureRest.ashx?cmd= (easyprivacy.txt: 9027) +.thefilter.com/.*/CaptureRest\.ashx\?cmd= +# ||thefashionspot.com^*/pb.track.js (easyprivacy.txt: 9026) +.thefashionspot.com/.*/pb\.track\.js +# ||thedeal.com/oas_ (easyprivacy.txt: 9025) +.thedeal.com/oas_ +# ||thecreatorsproject.com/tracker.html (easyprivacy.txt: 9024) +.thecreatorsproject.com/tracker\.html +# ||theconversation.com/javascripts/lib/content_tracker_hook.js (easyprivacy.txt: 9023) +.theconversation.com/javascripts/lib/content_tracker_hook\.js +# ||theage.com.au^*/behave.js (easyprivacy.txt: 9022) +.theage.com.au/.*/behave\.js +# ||the42.ie/i.php (easyprivacy.txt: 9021) +.the42.ie/i\.php +# ||tgw.com/1/t.gif (easyprivacy.txt: 9020) +.tgw.com/1/t\.gif +# ||tfl.gov.uk/tfl-global/scripts/stats.js (easyprivacy.txt: 9019) +.tfl.gov.uk/tfl-global/scripts/stats\.js +# ||tfl.gov.uk/tfl-global/scripts/stats-config.js (easyprivacy.txt: 9018) +.tfl.gov.uk/tfl-global/scripts/stats-config\.js +# ||texaco.co.uk/trackingcode.js (easyprivacy.txt: 9017) +.texaco.co.uk/trackingcode\.js +# ||tesco.com/cgi-bin3/buyrate?type= (easyprivacy.txt: 9016) +.tesco.com/cgi-bin3/buyrate\?type= +# ||telegraph.co.uk^*/tmglmultitrackselector.js (easyprivacy.txt: 9015) +.telegraph.co.uk/.*/tmglmultitrackselector\.js +# ||ted1.metro.co.uk^ (easyprivacy.txt: 9014) +.ted1.metro.co.uk +# ||ted.metro.co.uk^ (easyprivacy.txt: 9013) +.ted.metro.co.uk +# ||ted.dailymail.co.uk^ (easyprivacy.txt: 9012) +.ted.dailymail.co.uk +# ||tdwaterhouse.co.uk^*/track.js (easyprivacy.txt: 9011) +.tdwaterhouse.co.uk/.*/track\.js +# ||tdwaterhouse.ca/includes/javascript/rtesurvey.js (easyprivacy.txt: 9010) +.tdwaterhouse.ca/includes/javascript/rtesurvey\.js +# ||tcpalm.com/metrics/ (easyprivacy.txt: 9009) +.tcpalm.com/metrics/ +# ||tcog.news.com.au^$~xmlhttprequest (easyprivacy.txt: 9008) +.tcog.news.com.au +# ||tck.bangbros.com^ (easyprivacy.txt: 9007) +.tck.bangbros.com +# ||tarot.com/stats/ (easyprivacy.txt: 9006) +.tarot.com/stats/ +# ||targetspot.com/track/ (easyprivacy.txt: 9005) +.targetspot.com/track/ +# ||target.com/ci/$script (easyprivacy.txt: 9004) +.target.com/ci/ +# ||talktalk.co.uk^*/tracking/ (easyprivacy.txt: 9003) +.talktalk.co.uk/.*/tracking/ +# ||talktalk.co.uk^*/log.html (easyprivacy.txt: 9002) +.talktalk.co.uk/.*/log\.html +# ||tags.transportdirect.info^ (easyprivacy.txt: 9001) +.tags.transportdirect.info +# ||tags.news.com.au^ (easyprivacy.txt: 9000) +.tags.news.com.au +# ||tags.msnbc.com^ (easyprivacy.txt: 8999) +.tags.msnbc.com +# ||tag-stats.huffpost.com^ (easyprivacy.txt: 8998) +.tag-stats.huffpost.com +# ||tacobell.com/tb_files/js/tracker.js (easyprivacy.txt: 8997) +.tacobell.com/tb_files/js/tracker\.js +# ||tab.co.nz/track? (easyprivacy.txt: 8996) +.tab.co.nz/track\? +# ||t3.com/js/trackers.js (easyprivacy.txt: 8995) +.t3.com/js/trackers\.js +# ||t2.huluim.com^ (easyprivacy.txt: 8994) +.t2.huluim.com +# ||t2.hulu.com^ (easyprivacy.txt: 8993) +.t2.hulu.com +# ||t.vimeo.com^ (easyprivacy.txt: 8992) +.t.vimeo.com +# ||t.paypal.com^ (easyprivacy.txt: 8991) +.t.paypal.com +# ||t.kck.st^ (easyprivacy.txt: 8990) +.t.kck.st +# ||t.hulu.com/beacon/ (easyprivacy.txt: 8989) +.t.hulu.com/beacon/ +# ||t.eharmony.com^ (easyprivacy.txt: 8988) +.t.eharmony.com +# ||t.dailymail.co.uk^ (easyprivacy.txt: 8987) +.t.dailymail.co.uk +# ||t.9gag.com^ (easyprivacy.txt: 8986) +.t.9gag.com +# ||t-ak.hulu.com^ (easyprivacy.txt: 8985) +.t-ak.hulu.com +# ||sysomos.com/track/ (easyprivacy.txt: 8984) +.sysomos.com/track/ +# ||surveys.cnet.com^ (easyprivacy.txt: 8983) +.surveys.cnet.com +# ||superpages.com/ct/clickThrough? (easyprivacy.txt: 8982) +.superpages.com/ct/clickThrough\? +# ||supermediastore.com/web/track? (easyprivacy.txt: 8981) +.supermediastore.com/web/track\? +# ||sundayskylb1.com/sst.gif? (easyprivacy.txt: 8980) +.sundayskylb1.com/sst\.gif\? +# ||sun.com/share/metrics/ (easyprivacy.txt: 8979) +.sun.com/share/metrics/ +# ||suite101.com/tracking/ (easyprivacy.txt: 8978) +.suite101.com/tracking/ +# ||sugarvine.com/inc/tracking.asp (easyprivacy.txt: 8977) +.sugarvine.com/inc/tracking\.asp +# ||sugar.gameforge.com^ (easyprivacy.txt: 8976) +.sugar.gameforge.com +# ||sublimevideo.net/_.gif (easyprivacy.txt: 8975) +.sublimevideo.net/_\.gif +# ||stylelist.com/ping?ts= (easyprivacy.txt: 8974) +.stylelist.com/ping\?ts= +# ||stuff.co.nz^*/track.min.js (easyprivacy.txt: 8973) +.stuff.co.nz/.*/track\.min\.js +# ||stuff.co.nz/track/ (easyprivacy.txt: 8972) +.stuff.co.nz/track/ +# ||stuff.afterdawn.com/views.cfm (easyprivacy.txt: 8971) +.stuff.afterdawn.com/views\.cfm +# ||studyisland.com^*/ga.js (easyprivacy.txt: 8970) +.studyisland.com/.*/ga\.js +# ||stribe.com/00/logs? (easyprivacy.txt: 8969) +.stribe.com/00/logs\? +# ||streetfire.net/handlers/logstreamfileimpression.ashx? (easyprivacy.txt: 8968) +.streetfire.net/handlers/logstreamfileimpression\.ashx\? +# ||streetfire.net/flash/trackingutility.swf (easyprivacy.txt: 8967) +.streetfire.net/flash/trackingutility\.swf +# ||streetdirectory.com/tracking/ (easyprivacy.txt: 8966) +.streetdirectory.com/tracking/ +# ||streamstats1.blinkx.com^ (easyprivacy.txt: 8965) +.streamstats1.blinkx.com +# ||stratfor.com/js/linktracker.js (easyprivacy.txt: 8964) +.stratfor.com/js/linktracker\.js +# ||storewidesearch.com/imn/mn.gif? (easyprivacy.txt: 8963) +.storewidesearch.com/imn/mn\.gif\? +# ||storenvy.com/tracking/ (easyprivacy.txt: 8962) +.storenvy.com/tracking/ +# ||store.yahoo.net^*/ywa.js (easyprivacy.txt: 8961) +.store.yahoo.net/.*/ywa\.js +# ||stomp.com.sg/site/servlet/tracker (easyprivacy.txt: 8960) +.stomp.com.sg/site/servlet/tracker +# ||stocktwits.com/spaceape-web.gif? (easyprivacy.txt: 8959) +.stocktwits.com/spaceape-web\.gif\? +# ||stickpage.com/counter.php (easyprivacy.txt: 8958) +.stickpage.com/counter\.php +# ||stg.nytimes.com^ (easyprivacy.txt: 8957) +.stg.nytimes.com +# ||stcollection.moneysupermarket.com^ (easyprivacy.txt: 8956) +.stcollection.moneysupermarket.com +# ||stbt.coupons.com^ (easyprivacy.txt: 8955) +.stbt.coupons.com +# ||stattrack.0catch.com^ (easyprivacy.txt: 8954) +.stattrack.0catch.com +# ||statstracker.celebrity-gossip.net^ (easyprivacy.txt: 8953) +.statstracker.celebrity-gossip.net +# ||stats.zmags.com^ (easyprivacy.txt: 8952) +.stats.zmags.com +# ||stats.ynet.co.il^ (easyprivacy.txt: 8951) +.stats.ynet.co.il +# ||stats.wwitv.com^ (easyprivacy.txt: 8950) +.stats.wwitv.com +# ||stats.wwd.com^ (easyprivacy.txt: 8949) +.stats.wwd.com +# ||stats.wordpress.com^ (easyprivacy.txt: 8948) +.stats.wordpress.com +# ||stats.vulture.com^ (easyprivacy.txt: 8947) +.stats.vulture.com +# ||stats.visistat.com^ (easyprivacy.txt: 8946) +.stats.visistat.com +# ||stats.video.search.yahoo.com^ (easyprivacy.txt: 8945) +.stats.video.search.yahoo.com +# ||stats.uswitch.com^ (easyprivacy.txt: 8944) +.stats.uswitch.com +# ||stats.townnews.com^ (easyprivacy.txt: 8943) +.stats.townnews.com +# ||stats.suite101.com^ (easyprivacy.txt: 8942) +.stats.suite101.com +# ||stats.storify.com^ (easyprivacy.txt: 8941) +.stats.storify.com +# ||stats.someecards.com^ (easyprivacy.txt: 8940) +.stats.someecards.com +# ||stats.slideshare.net^ (easyprivacy.txt: 8939) +.stats.slideshare.net +# ||stats.slashgear.com^ (easyprivacy.txt: 8938) +.stats.slashgear.com +# ||stats.shoppydoo.com^ (easyprivacy.txt: 8937) +.stats.shoppydoo.com +# ||stats.sharenet.co.za^ (easyprivacy.txt: 8936) +.stats.sharenet.co.za +# ||stats.searchsight.com^ (easyprivacy.txt: 8935) +.stats.searchsight.com +# ||stats.searchftps.org^ (easyprivacy.txt: 8934) +.stats.searchftps.org +# ||stats.redditmedia.com^ (easyprivacy.txt: 8933) +.stats.redditmedia.com +# ||stats.radiostreamlive.com^ (easyprivacy.txt: 8932) +.stats.radiostreamlive.com +# ||stats.pusher.com^ (easyprivacy.txt: 8931) +.stats.pusher.com +# ||stats.propublica.org^ (easyprivacy.txt: 8930) +.stats.propublica.org +# ||stats.piaggio.com^ (easyprivacy.txt: 8929) +.stats.piaggio.com +# ||stats.paypal.com^ (easyprivacy.txt: 8928) +.stats.paypal.com +# ||stats.paste2.org^ (easyprivacy.txt: 8927) +.stats.paste2.org +# ||stats.pandora.com^ (easyprivacy.txt: 8926) +.stats.pandora.com +# ||stats.nymag.com^ (easyprivacy.txt: 8925) +.stats.nymag.com +# ||stats.mehrnews.com^ (easyprivacy.txt: 8924) +.stats.mehrnews.com +# ||stats.macmillanusa.com^ (easyprivacy.txt: 8923) +.stats.macmillanusa.com +# ||stats.ibtimes.co.in^ (easyprivacy.txt: 8922) +.stats.ibtimes.co.in +# ||stats.harpercollins.com^ (easyprivacy.txt: 8921) +.stats.harpercollins.com +# ||stats.firedrive.com^ (easyprivacy.txt: 8920) +.stats.firedrive.com +# ||stats.farfetch.com^ (easyprivacy.txt: 8919) +.stats.farfetch.com +# ||stats.eyeviewdigital.com^ (easyprivacy.txt: 8918) +.stats.eyeviewdigital.com +# ||stats.europe.newsweek.com^ (easyprivacy.txt: 8917) +.stats.europe.newsweek.com +# ||stats.ebay.com^ (easyprivacy.txt: 8916) +.stats.ebay.com +# ||stats.clear-media.com^ (easyprivacy.txt: 8915) +.stats.clear-media.com +# ||stats.christianpost.com^ (easyprivacy.txt: 8914) +.stats.christianpost.com +# ||stats.cardschat.com^ (easyprivacy.txt: 8913) +.stats.cardschat.com +# ||stats.break.com^ (easyprivacy.txt: 8912) +.stats.break.com +# ||stats.blogg.se^ (easyprivacy.txt: 8911) +.stats.blogg.se +# ||stats.binki.es^ (easyprivacy.txt: 8910) +.stats.binki.es +# ||stats.behance.net^ (easyprivacy.txt: 8909) +.stats.behance.net +# ||stats.bbc.co.uk^ (easyprivacy.txt: 8908) +.stats.bbc.co.uk +# ||stats.avg.com^ (easyprivacy.txt: 8907) +.stats.avg.com +# ||stats.articlesbase.com^ (easyprivacy.txt: 8906) +.stats.articlesbase.com +# ||stats.aplus.com^ (easyprivacy.txt: 8905) +.stats.aplus.com +# ||statravel.com^*/Javascript/wt_gets.js (easyprivacy.txt: 8904) +.statravel.com/.*/Javascript/wt_gets\.js +# ||statravel.co.uk/static/uk_division_web_live/Javascript/wt_gets.js (easyprivacy.txt: 8903) +.statravel.co.uk/static/uk_division_web_live/Javascript/wt_gets\.js +# ||statistics.crowdynews.com^ (easyprivacy.txt: 8902) +.statistics.crowdynews.com +# ||staticworld.net/pixel.gif (easyprivacy.txt: 8901) +.staticworld.net/pixel\.gif +# ||staticwhich.co.uk/assets/*/track.js (easyprivacy.txt: 8900) +.staticwhich.co.uk/assets/.*/track\.js +# ||staticlp.com/analytics/ (easyprivacy.txt: 8899) +.staticlp.com/analytics/ +# ||staticice.com.au/cgi-bin/stats.cgi? (easyprivacy.txt: 8898) +.staticice.com.au/cgi-bin/stats\.cgi\? +# ||static.ow.ly^*/click.gz.js (easyprivacy.txt: 8897) +.static.ow.ly/.*/click\.gz\.js +# ||statesmanjournal.com^*/articlepageview.php? (easyprivacy.txt: 8896) +.statesmanjournal.com/.*/articlepageview\.php\? +# ||stat.torrentbar.com^ (easyprivacy.txt: 8895) +.stat.torrentbar.com +# ||stat.ruvr.ru^ (easyprivacy.txt: 8894) +.stat.ruvr.ru +# ||stat.dealtime.com^ (easyprivacy.txt: 8893) +.stat.dealtime.com +# ||stat.alibaba.com^ (easyprivacy.txt: 8892) +.stat.alibaba.com +# ||startpage.*/pelp? (easyprivacy.txt: 8891) +.startpage.*./(.*/)?pelp\? +# ||startpage.*/elp? (easyprivacy.txt: 8890) +.startpage.*./(.*/)?elp\? +# ||startpage.*/do/avt?$image (easyprivacy.txt: 8889) +.startpage.*./(.*/)?do/avt\? +# ||ssl-stats.wordpress.com^ (easyprivacy.txt: 8888) +.ssl-stats.wordpress.com +# ||srt.pch.com^ (easyprivacy.txt: 8887) +.srt.pch.com +# ||squidoo.com/track/ (easyprivacy.txt: 8886) +.squidoo.com/track/ +# ||spotlight.accuweather.com^ (easyprivacy.txt: 8885) +.spotlight.accuweather.com +# ||sportingnews.com/px/ (easyprivacy.txt: 8884) +.sportingnews.com/px/ +# ||sporcle.com/adn/yaktrack.php? (easyprivacy.txt: 8883) +.sporcle.com/adn/yaktrack\.php\? +# ||spoonful.com^*/tracking.js (easyprivacy.txt: 8882) +.spoonful.com/.*/tracking\.js +# ||splurgy.com/bacon/*_ct.gif$image (easyprivacy.txt: 8881) +.splurgy.com/bacon/.*_ct\.gif +# ||spinmediacdn.com/clarity.min.js (easyprivacy.txt: 8880) +.spinmediacdn.com/clarity\.min\.js +# ||spinmedia.com/clarity.min.js (easyprivacy.txt: 8879) +.spinmedia.com/clarity\.min\.js +# ||spinback.com/spinback/event/impression/ (easyprivacy.txt: 8878) +.spinback.com/spinback/event/impression/ +# ||spiegel.com/spacer.gif? (easyprivacy.txt: 8877) +.spiegel.com/spacer\.gif\? +# ||speakertext.com/analytics/ (easyprivacy.txt: 8876) +.speakertext.com/analytics/ +# ||spanids.thesaurus.com^ (easyprivacy.txt: 8875) +.spanids.thesaurus.com +# ||spanids.reference.com^ (easyprivacy.txt: 8874) +.spanids.reference.com +# ||spanids.dictionary.com^ (easyprivacy.txt: 8873) +.spanids.dictionary.com +# ||spade.twitch.tv^ (easyprivacy.txt: 8872) +.spade.twitch.tv +# ||sp.udimg.com^ (easyprivacy.txt: 8871) +.sp.udimg.com +# ||sovereignbank.com/utils/track.asp (easyprivacy.txt: 8870) +.sovereignbank.com/utils/track\.asp +# ||sourceforge.net/log/ (easyprivacy.txt: 8869) +.sourceforge.net/log/ +# ||sourceforge.net/images/mlopen_post.html? (easyprivacy.txt: 8868) +.sourceforge.net/images/mlopen_post\.html\? +# ||soonnight.com/stats.htm (easyprivacy.txt: 8867) +.soonnight.com/stats\.htm +# ||sony-europe.com/tr/p.gif? (easyprivacy.txt: 8866) +.sony-europe.com/tr/p\.gif\? +# ||somniture.theglobeandmail.com^ (easyprivacy.txt: 8865) +.somniture.theglobeandmail.com +# ||sofascore.com/geoip.js (easyprivacy.txt: 8864) +.sofascore.com/geoip\.js +# ||soe.com/js/web-platform/web-data-tracker.js (easyprivacy.txt: 8863) +.soe.com/js/web-platform/web-data-tracker\.js +# ||socialstreamingplayer.crystalmedianetworks.com/tracker/ (easyprivacy.txt: 8862) +.socialstreamingplayer.crystalmedianetworks.com/tracker/ +# ||socialcodedev.com/pixel/ (easyprivacy.txt: 8861) +.socialcodedev.com/pixel/ +# ||snowplow-collector.sugarops.com^ (easyprivacy.txt: 8860) +.snowplow-collector.sugarops.com +# ||snorgtees.com/js/digitalbasement/conversion.js (easyprivacy.txt: 8859) +.snorgtees.com/js/digitalbasement/conversion\.js +# ||snippets.mozilla.com^ (easyprivacy.txt: 8858) +.snippets.mozilla.com +# ||snakesworld.com/cgi-bin/hitometer/ (easyprivacy.txt: 8857) +.snakesworld.com/cgi-bin/hitometer/ +# ||smetrics.delta.com^ (easyprivacy.txt: 8856) +.smetrics.delta.com +# ||smartname.com/scripts/cookies.js (easyprivacy.txt: 8855) +.smartname.com/scripts/cookies\.js +# ||smallcapnetwork.com^*/viewtracker/ (easyprivacy.txt: 8854) +.smallcapnetwork.com/.*/viewtracker/ +# ||slide.com/tracker/ (easyprivacy.txt: 8853) +.slide.com/tracker/ +# ||slashgear.com/stats/ (easyprivacy.txt: 8852) +.slashgear.com/stats/ +# ||slacker.com/beacon/page/$image (easyprivacy.txt: 8851) +.slacker.com/beacon/page/ +# ||skyrock.net/stats/ (easyprivacy.txt: 8850) +.skyrock.net/stats/ +# ||skyrock.net/js/stats_blog.js (easyprivacy.txt: 8849) +.skyrock.net/js/stats_blog\.js +# ||skyrock.net/img/pix.gif (easyprivacy.txt: 8848) +.skyrock.net/img/pix\.gif +# ||skypeassets.com^*/track_channel.js (easyprivacy.txt: 8847) +.skypeassets.com/.*/track_channel\.js +# ||skypeassets.com^*/inclient/ (easyprivacy.txt: 8846) +.skypeassets.com/.*/inclient/ +# ||skypeassets.com/i/js/jquery/tracking.js (easyprivacy.txt: 8845) +.skypeassets.com/i/js/jquery/tracking\.js +# ||skype.com^*/track_channel.js (easyprivacy.txt: 8844) +.skype.com/.*/track_channel\.js +# ||skype.com^*/inclient/ (easyprivacy.txt: 8843) +.skype.com/.*/inclient/ +# ||sky.com^*/incomeGeneratingDevicesExpanding.js (easyprivacy.txt: 8842) +.sky.com/.*/incomeGeneratingDevicesExpanding\.js +# ||sky.com^*/hightrafficsurveycode.js (easyprivacy.txt: 8841) +.sky.com/.*/hightrafficsurveycode\.js +# ||sixpack.udimg.com^ (easyprivacy.txt: 8840) +.sixpack.udimg.com +# ||sitemeter.com/meter.asp (easyprivacy.txt: 8839) +.sitemeter.com/meter\.asp +# ||sitelife.ehow.com^ (easyprivacy.txt: 8838) +.sitelife.ehow.com +# ||singer22-static.com/stat/ (easyprivacy.txt: 8837) +.singer22-static.com/stat/ +# ||simplyhired.com^*/hit? (easyprivacy.txt: 8836) +.simplyhired.com/.*/hit\? +# ||similarsites.com/sbbgate.aspx/ (easyprivacy.txt: 8835) +.similarsites.com/sbbgate\.aspx/ +# ||sidebar.issuu.com^ (easyprivacy.txt: 8834) +.sidebar.issuu.com +# ||siberiantimes.com/counter/ (easyprivacy.txt: 8833) +.siberiantimes.com/counter/ +# ||shvoong.com/images/spacer.gif (easyprivacy.txt: 8832) +.shvoong.com/images/spacer\.gif +# ||shutterstock.com/b.png? (easyprivacy.txt: 8831) +.shutterstock.com/b\.png\? +# ||shutterfly.com^*/pageloadtime.gif? (easyprivacy.txt: 8830) +.shutterfly.com/.*/pageloadtime\.gif\? +# ||showstreet.com/log/ (easyprivacy.txt: 8829) +.showstreet.com/log/ +# ||shoutcast.com/traffic/? (easyprivacy.txt: 8828) +.shoutcast.com/traffic/\? +# ||shopzilla-images.com/s2static/*/js/tracker.js (easyprivacy.txt: 8827) +.shopzilla-images.com/s2static/.*/js/tracker\.js +# ||shopsubmit.co.uk/visitor.ashx (easyprivacy.txt: 8826) +.shopsubmit.co.uk/visitor\.ashx +# ||shopping.com/pixel/ (easyprivacy.txt: 8825) +.shopping.com/pixel/ +# ||shoplocal.com/dot_clear.gif? (easyprivacy.txt: 8824) +.shoplocal.com/dot_clear\.gif\? +# ||shopify.com/track.js (easyprivacy.txt: 8823) +.shopify.com/track\.js +# ||shopautoweek.com/js/modules/tracker.js (easyprivacy.txt: 8822) +.shopautoweek.com/js/modules/tracker\.js +# ||shoes.com/WebServices/ClientLogging. (easyprivacy.txt: 8821) +.shoes.com/WebServices/ClientLogging\. +# ||sharecast.com/counter.php (easyprivacy.txt: 8820) +.sharecast.com/counter\.php +# ||shareaholic.com^*/bake.gif? (easyprivacy.txt: 8819) +.shareaholic.com/.*/bake\.gif\? +# ||sh.st/bundles/smeweb/img/tracking- (easyprivacy.txt: 8818) +.sh.st/bundles/smeweb/img/tracking- +# ||sex-flow.com/js/error.js (easyprivacy.txt: 8817) +.sex-flow.com/js/error\.js +# ||sevenload.com/som_ (easyprivacy.txt: 8816) +.sevenload.com/som_ +# ||sevenload.com/blank.gif? (easyprivacy.txt: 8815) +.sevenload.com/blank\.gif\? +# ||session-tracker.badcreditloans.com^ (easyprivacy.txt: 8814) +.session-tracker.badcreditloans.com +# ||servicetick.com^ (easyprivacy.txt: 8813) +.servicetick.com +# ||servedby.yell.com/t.js?cq (easyprivacy.txt: 8812) +.servedby.yell.com/t\.js\?cq +# ||seoquake.com/seoadv/audience/3.gif (easyprivacy.txt: 8811) +.seoquake.com/seoadv/audience/3\.gif +# ||sense.dailymotion.com^ (easyprivacy.txt: 8810) +.sense.dailymotion.com +# ||sella.co.nz^*/sella_stats_ (easyprivacy.txt: 8809) +.sella.co.nz/.*/sella_stats_ +# ||selfip.org/counter/ (easyprivacy.txt: 8808) +.selfip.org/counter/ +# ||seeclickfix.com^*/text_widgets_analytics.html (easyprivacy.txt: 8807) +.seeclickfix.com/.*/text_widgets_analytics\.html +# ||securepaynet.net/image.aspx? (easyprivacy.txt: 8806) +.securepaynet.net/image\.aspx\? +# ||secondspace.com^*/blank.gif (easyprivacy.txt: 8805) +.secondspace.com/.*/blank\.gif +# ||seatgeek.com/tracker.gif? (easyprivacy.txt: 8804) +.seatgeek.com/tracker\.gif\? +# ||seatgeek.com/sixpack/participate? (easyprivacy.txt: 8803) +.seatgeek.com/sixpack/participate\? +# ||searchenginewatch.com/utils/article_track/ (easyprivacy.txt: 8802) +.searchenginewatch.com/utils/article_track/ +# ||search.yahoo.com/ra/click? (easyprivacy.txt: 8801) +.search.yahoo.com/ra/click\? +# ||search.usa.gov/javascripts/stats.js (easyprivacy.txt: 8800) +.search.usa.gov/javascripts/stats\.js +# ||search.firstplace.com^*pageview (easyprivacy.txt: 8799) +.search.firstplace.com/.*pageview +# ||search.ch/audit/ (easyprivacy.txt: 8798) +.search.ch/audit/ +# ||sdc.com/sdcdata.js (easyprivacy.txt: 8797) +.sdc.com/sdcdata\.js +# ||scripts.snowball.com/scripts/images/pixy.gif (easyprivacy.txt: 8796) +.scripts.snowball.com/scripts/images/pixy\.gif +# ||scriptlance.com/cgi-bin/freelancers/ref_click.cgi? (easyprivacy.txt: 8795) +.scriptlance.com/cgi-bin/freelancers/ref_click\.cgi\? +# ||scribol.com/traffix-tracker.gif (easyprivacy.txt: 8794) +.scribol.com/traffix-tracker\.gif +# ||scribe.twitter.com^ (easyprivacy.txt: 8793) +.scribe.twitter.com +# ||scribd.com^*/tracker.gif? (easyprivacy.txt: 8792) +.scribd.com/.*/tracker\.gif\? +# ||scout.rollcall.com^ (easyprivacy.txt: 8791) +.scout.rollcall.com +# ||scout.lexisnexis.com^ (easyprivacy.txt: 8790) +.scout.lexisnexis.com +# ||scotts.com/smg/js/omni/customTracking.js (easyprivacy.txt: 8789) +.scotts.com/smg/js/omni/customTracking\.js +# ||scoot.co.uk/ajax/log_serps.php (easyprivacy.txt: 8788) +.scoot.co.uk/ajax/log_serps\.php +# ||scoop.co.nz/images/pixel.gif (easyprivacy.txt: 8787) +.scoop.co.nz/images/pixel\.gif +# ||sciencedaily.com/cache.php? (easyprivacy.txt: 8786) +.sciencedaily.com/cache\.php\? +# ||sciencedaily.com/blank.htm (easyprivacy.txt: 8785) +.sciencedaily.com/blank\.htm +# ||sbs.com.au/js/tracking/ (easyprivacy.txt: 8784) +.sbs.com.au/js/tracking/ +# ||sb.vevo.com^ (easyprivacy.txt: 8783) +.sb.vevo.com +# ||sayac.hurriyettv.com^ (easyprivacy.txt: 8782) +.sayac.hurriyettv.com +# ||satellite-tv-guides.com/stat/ (easyprivacy.txt: 8781) +.satellite-tv-guides.com/stat/ +# ||sap.com/global/ui/js/trackinghelper.js (easyprivacy.txt: 8780) +.sap.com/global/ui/js/trackinghelper\.js +# ||sana.newsinc.com.s3.amazonaws.com^ (easyprivacy.txt: 8779) +.sana.newsinc.com.s3.amazonaws.com +# ||samsung.com^*/scripts/tracking.js (easyprivacy.txt: 8778) +.samsung.com/.*/scripts/tracking\.js +# ||salsitasoft.com/view.gif? (easyprivacy.txt: 8777) +.salsitasoft.com/view\.gif\? +# ||sagepub.com^*/login_hit_hidden.gif? (easyprivacy.txt: 8776) +.sagepub.com/.*/login_hit_hidden\.gif\? +# ||sabc.co.za/SABC/analytics/ (easyprivacy.txt: 8775) +.sabc.co.za/SABC/analytics/ +# ||sabah.com.tr/StatisticImage/ (easyprivacy.txt: 8774) +.sabah.com.tr/StatisticImage/ +# ||sabah.com.tr/Statistic/ (easyprivacy.txt: 8773) +.sabah.com.tr/Statistic/ +# ||sa.squareup.com^ (easyprivacy.txt: 8772) +.sa.squareup.com +# ||sa.bbc.com^ (easyprivacy.txt: 8771) +.sa.bbc.com +# ||sa.bbc.co.uk^ (easyprivacy.txt: 8770) +.sa.bbc.co.uk +# ||s2.youtube.com^ (easyprivacy.txt: 8769) +.s2.youtube.com +# ||s.youtube.com^ (easyprivacy.txt: 8768) +.s.youtube.com +# ||s.infogr.am^ (easyprivacy.txt: 8767) +.s.infogr.am +# ||s-msn.com/s/js/loader/activity/trackloader.min.js (easyprivacy.txt: 8766) +.s-msn.com/s/js/loader/activity/trackloader\.min\.js +# ||s-msn.com/br/gbl/js/2/report.js (easyprivacy.txt: 8764) +.s-msn.com/br/gbl/js/2/report\.js +# ||russellgrant.com/hostedsearch/panelcounter.aspx (easyprivacy.txt: 8763) +.russellgrant.com/hostedsearch/panelcounter\.aspx +# ||runnersworld.com^*/universalpixel.html (easyprivacy.txt: 8762) +.runnersworld.com/.*/universalpixel\.html +# ||rte.ie/player/playertracker.js (easyprivacy.txt: 8761) +.rte.ie/player/playertracker\.js +# ||rta.dailymail.co.uk^ (easyprivacy.txt: 8760) +.rta.dailymail.co.uk +# ||rt.rakuten.co.jp^ (easyprivacy.txt: 8759) +.rt.rakuten.co.jp +# ||rt.prnewswire.com^ (easyprivacy.txt: 8758) +.rt.prnewswire.com +# ||rsys2.net/pub/as? (easyprivacy.txt: 8757) +.rsys2.net/pub/as\? +# ||rsscache.com/Section/Stats/ (easyprivacy.txt: 8756) +.rsscache.com/Section/Stats/ +# ||rs.mail.ru^ (easyprivacy.txt: 8755) +.rs.mail.ru +# ||rover.ebay.com.au^*&cguid= (easyprivacy.txt: 8754) +.rover.ebay.com.au/.*&cguid= +# ||rover.ebay.$image,object,script (easyprivacy.txt: 8753) +.rover.ebay.*. +# ||rottentomatoes.com/tracking/ (easyprivacy.txt: 8752) +.rottentomatoes.com/tracking/ +# ||roll.bankofamerica.com^ (easyprivacy.txt: 8751) +.roll.bankofamerica.com +# ||rok.com.com^ (easyprivacy.txt: 8750) +.rok.com.com +# ||roadandtrack.com^*/RTdartSite.js (easyprivacy.txt: 8749) +.roadandtrack.com/.*/RTdartSite\.js +# ||ro89.com/hitme.php? (easyprivacy.txt: 8748) +.ro89.com/hitme\.php\? +# ||rkdms.com/sid.gif? (easyprivacy.txt: 8747) +.rkdms.com/sid\.gif\? +# ||rkdms.com/order.gif? (easyprivacy.txt: 8746) +.rkdms.com/order\.gif\? +# ||riverisland.com^*/mindshare.min.js (easyprivacy.txt: 8745) +.riverisland.com/.*/mindshare\.min\.js +# ||ritzcarlton.com/ritz/crossDomainTracking.mi? (easyprivacy.txt: 8744) +.ritzcarlton.com/ritz/crossDomainTracking\.mi\? +# ||rismedia.com/tracking.js (easyprivacy.txt: 8743) +.rismedia.com/tracking\.js +# ||ripe.net/1x1.gif? (easyprivacy.txt: 8742) +.ripe.net/1x1\.gif\? +# ||ringcentral.com/misc/se_track.asp (easyprivacy.txt: 8741) +.ringcentral.com/misc/se_track\.asp +# ||rightstuf.com/phplive/ajax/footprints.php (easyprivacy.txt: 8740) +.rightstuf.com/phplive/ajax/footprints\.php +# ||rightmove.co.uk/ps/images/logging/timer.gif? (easyprivacy.txt: 8739) +.rightmove.co.uk/ps/images/logging/timer\.gif\? +# ||rgbstock.com/logsearch/ (easyprivacy.txt: 8738) +.rgbstock.com/logsearch/ +# ||revsci.tvguide.com^ (easyprivacy.txt: 8737) +.revsci.tvguide.com +# ||reutersmedia.net^*/tracker-article*.js (easyprivacy.txt: 8736) +.reutersmedia.net/.*/tracker-article.*\.js +# ||reutersmedia.net^*/px.js (easyprivacy.txt: 8735) +.reutersmedia.net/.*/px\.js +# ||reuters.com^*/widget-rta-poc.js (easyprivacy.txt: 8734) +.reuters.com/.*/widget-rta-poc\.js +# ||reuters.com^*/tracker_video.js (easyprivacy.txt: 8733) +.reuters.com/.*/tracker_video\.js +# ||reuters.com^*/rcom-wt-mlt.js (easyprivacy.txt: 8732) +.reuters.com/.*/rcom-wt-mlt\.js +# ||reuters.com/tracker/ (easyprivacy.txt: 8731) +.reuters.com/tracker/ +# ||reuters.com/pulse/$script (easyprivacy.txt: 8730) +.reuters.com/pulse/ +# ||retrevo.com/search/v2/jsp/blank.jsp? (easyprivacy.txt: 8729) +.retrevo.com/search/v2/jsp/blank\.jsp\? +# ||retrevo.com/m/vm/tracking/ (easyprivacy.txt: 8728) +.retrevo.com/m/vm/tracking/ +# ||resellerclub.com/helpdesk/visitor/index.php?$image (easyprivacy.txt: 8727) +.resellerclub.com/helpdesk/visitor/index\.php\? +# ||researchchannel.co.za/count.php? (easyprivacy.txt: 8726) +.researchchannel.co.za/count\.php\? +# ||request.issuu.com^ (easyprivacy.txt: 8725) +.request.issuu.com +# ||reporting.wilkinsonplus.com^ (easyprivacy.txt: 8724) +.reporting.wilkinsonplus.com +# ||reporting.theonion.com^ (easyprivacy.txt: 8723) +.reporting.theonion.com +# ||reporting.onthebeach.co.uk^ (easyprivacy.txt: 8722) +.reporting.onthebeach.co.uk +# ||reporting.flymonarch.com^ (easyprivacy.txt: 8721) +.reporting.flymonarch.com +# ||reporternews.com/metrics/ (easyprivacy.txt: 8720) +.reporternews.com/metrics/ +# ||reporter-times.com/js/tk.js? (easyprivacy.txt: 8719) +.reporter-times.com/js/tk\.js\? +# ||report.shell.com^ (easyprivacy.txt: 8718) +.report.shell.com +# ||rent.com/track/visit/ (easyprivacy.txt: 8717) +.rent.com/track/visit/ +# ||rel.msn.com^ (easyprivacy.txt: 8716) +.rel.msn.com +# ||register.it/scripts/track_ (easyprivacy.txt: 8715) +.register.it/scripts/track_ +# ||refinery29.com/api/stats? (easyprivacy.txt: 8714) +.refinery29.com/api/stats\? +# ||reference.com/track/ (easyprivacy.txt: 8713) +.reference.com/track/ +# ||redtube.com^*/jscount.php (easyprivacy.txt: 8712) +.redtube.com/.*/jscount\.php +# ||redtube.com/trackplay? (easyprivacy.txt: 8711) +.redtube.com/trackplay\? +# ||redtube.com/trackimps (easyprivacy.txt: 8710) +.redtube.com/trackimps +# ||redtube.com/stats/ (easyprivacy.txt: 8709) +.redtube.com/stats/ +# ||redtube.com/pix.php (easyprivacy.txt: 8708) +.redtube.com/pix\.php +# ||redtube.com/js/track.js (easyprivacy.txt: 8707) +.redtube.com/js/track\.js +# ||redtube.com/blockcount| (easyprivacy.txt: 8706) +.redtube.com/blockcount$ +# ||redtube.com/_status/pixa.php (easyprivacy.txt: 8705) +.redtube.com/_status/pixa\.php +# ||redtube.com/_status/pix.php (easyprivacy.txt: 8704) +.redtube.com/_status/pix\.php +# ||rediff.com^*/?rkey= (easyprivacy.txt: 8703) +.rediff.com/.*/\?rkey= +# ||redeye.williamhill.com^ (easyprivacy.txt: 8702) +.redeye.williamhill.com +# ||reddit.com/static/pixel.png (easyprivacy.txt: 8701) +.reddit.com/static/pixel\.png +# ||redding.com/metrics/ (easyprivacy.txt: 8700) +.redding.com/metrics/ +# ||recommendation.24.com^ (easyprivacy.txt: 8699) +.recommendation.24.com +# ||recomendedsite.com/addon/upixel/ (easyprivacy.txt: 8698) +.recomendedsite.com/addon/upixel/ +# ||reco.hardsextube.com^ (easyprivacy.txt: 8697) +.reco.hardsextube.com +# ||realitytvworld.com/images/pixel.gif (easyprivacy.txt: 8696) +.realitytvworld.com/images/pixel\.gif +# ||real.com^*/track.png? (easyprivacy.txt: 8695) +.real.com/.*/track\.png\? +# ||real.com^*/track.htm? (easyprivacy.txt: 8694) +.real.com/.*/track\.htm\? +# ||real.com^*/pixel? (easyprivacy.txt: 8693) +.real.com/.*/pixel\? +# ||reachlocal.com/js/tracklandingpage.js (easyprivacy.txt: 8692) +.reachlocal.com/js/tracklandingpage\.js +# ||rd.meebo.com^ (easyprivacy.txt: 8691) +.rd.meebo.com +# ||rbl.ms/spacer.gif?$image (easyprivacy.txt: 8690) +.rbl.ms/spacer\.gif\? +# ||razor.tv/site/servlet/tracker.jsp (easyprivacy.txt: 8689) +.razor.tv/site/servlet/tracker\.jsp +# ||rat.rakuten.co.jp^ (easyprivacy.txt: 8688) +.rat.rakuten.co.jp +# ||rarefilmfinder.com^*/cnt-gif1x1.php (easyprivacy.txt: 8687) +.rarefilmfinder.com/.*/cnt-gif1x1\.php +# ||rangers.co.uk^*/tracking.js (easyprivacy.txt: 8686) +.rangers.co.uk/.*/tracking\.js +# ||ralphlauren.com^*/icg.metrics.js (easyprivacy.txt: 8685) +.ralphlauren.com/.*/icg\.metrics\.js +# ||rakuten-static.com/com/rat/ (easyprivacy.txt: 8684) +.rakuten-static.com/com/rat/ +# ||rainbow-uk.mythings.com^ (easyprivacy.txt: 8683) +.rainbow-uk.mythings.com +# ||radioplayer.co.uk/v3/analytics.html? (easyprivacy.txt: 8682) +.radioplayer.co.uk/v3/analytics\.html\? +# ||radio.cz/assets/js/analytics.js (easyprivacy.txt: 8681) +.radio.cz/assets/js/analytics\.js +# ||radio-canada.ca/lib/TrueSight/markerFile.gif? (easyprivacy.txt: 8680) +.radio-canada.ca/lib/TrueSight/markerFile\.gif\? +# ||racinguk.com/images/home_sponsors/ (easyprivacy.txt: 8679) +.racinguk.com/images/home_sponsors/ +# ||racingbase.com/tracking_fetchinfo.aspx? (easyprivacy.txt: 8678) +.racingbase.com/tracking_fetchinfo\.aspx\? +# ||r.bbci.co.uk^ (easyprivacy.txt: 8677) +.r.bbci.co.uk +# ||quotesonic.com/vendor/pixel.cfm (easyprivacy.txt: 8676) +.quotesonic.com/vendor/pixel\.cfm +# ||quintcareers.4jobs.com/Common/JavaScript/functions.tracking.js (easyprivacy.txt: 8675) +.quintcareers.4jobs.com/Common/JavaScript/functions\.tracking\.js +# ||quickmeme.com/tracker/ (easyprivacy.txt: 8674) +.quickmeme.com/tracker/ +# ||quibids.com^*/pixels/ (easyprivacy.txt: 8673) +.quibids.com/.*/pixels/ +# ||questionmarket.com/static/ (easyprivacy.txt: 8672) +.questionmarket.com/static/ +# ||questionmarket.com/adsc/ (easyprivacy.txt: 8671) +.questionmarket.com/adsc/ +# ||quantserve.com/pixel; (easyprivacy.txt: 8670) +.quantserve.com/pixel; +# ||qbn.com/media/static/js/ga.js (easyprivacy.txt: 8669) +.qbn.com/media/static/js/ga\.js +# ||q.stripe.com^ (easyprivacy.txt: 8668) +.q.stripe.com +# ||pw.org/sites/all/*/ga.js (easyprivacy.txt: 8667) +.pw.org/sites/all/.*/ga\.js +# ||pvstat.china.cn^ (easyprivacy.txt: 8666) +.pvstat.china.cn +# ||puritan.com/images/pixels/ (easyprivacy.txt: 8665) +.puritan.com/images/pixels/ +# ||pulse-analytics-beacon.reutersmedia.net^ (easyprivacy.txt: 8664) +.pulse-analytics-beacon.reutersmedia.net +# ||pubarticles.com/add_hits_by_user_click.php (easyprivacy.txt: 8663) +.pubarticles.com/add_hits_by_user_click\.php +# ||pubarticles.com/_hits.php? (easyprivacy.txt: 8662) +.pubarticles.com/_hits\.php\? +# ||ps-deals.com/aggbug.aspx (easyprivacy.txt: 8661) +.ps-deals.com/aggbug\.aspx +# ||prudential.com^*/metrics_1px.gif? (easyprivacy.txt: 8660) +.prudential.com/.*/metrics_1px\.gif\? +# ||proxypage.msn.com^ (easyprivacy.txt: 8659) +.proxypage.msn.com +# ||prosper.com/referrals/ (easyprivacy.txt: 8658) +.prosper.com/referrals/ +# ||prospects.ac.uk/assets/js/prospectsWebTrends.js (easyprivacy.txt: 8657) +.prospects.ac.uk/assets/js/prospectsWebTrends\.js +# ||propertyfinder.ae/js/ga.js (easyprivacy.txt: 8656) +.propertyfinder.ae/js/ga\.js +# ||prontohome.com/permuto.do (easyprivacy.txt: 8655) +.prontohome.com/permuto\.do +# ||projop.dnsalias.com/intranet-crm-tracking/ (easyprivacy.txt: 8654) +.projop.dnsalias.com/intranet-crm-tracking/ +# ||proac.nationwide.com^ (easyprivacy.txt: 8653) +.proac.nationwide.com +# ||prnewswire.com/rt.gif? (easyprivacy.txt: 8652) +.prnewswire.com/rt\.gif\? +# ||prnewswire.com/rit.gif? (easyprivacy.txt: 8651) +.prnewswire.com/rit\.gif\? +# ||princetonreview.com/logging/ (easyprivacy.txt: 8650) +.princetonreview.com/logging/ +# ||pricegrabber.com/analytics.php (easyprivacy.txt: 8649) +.pricegrabber.com/analytics\.php +# ||presstv.ir/stat/ (easyprivacy.txt: 8648) +.presstv.ir/stat/ +# ||presentationtracking.netflix.com^ (easyprivacy.txt: 8647) +.presentationtracking.netflix.com +# ||pp-serve.newsinc.com^ (easyprivacy.txt: 8646) +.pp-serve.newsinc.com +# ||powerreviews.com^*/ph.gif? (easyprivacy.txt: 8645) +.powerreviews.com/.*/ph\.gif\? +# ||pound.buzzfeed.com^ (easyprivacy.txt: 8644) +.pound.buzzfeed.com +# ||potterybarnkids.com/pkimgs/*/external/thirdparty.js (easyprivacy.txt: 8643) +.potterybarnkids.com/pkimgs/.*/external/thirdparty\.js +# ||potterybarn.com/pbimgs/*/external/thirdparty.js (easyprivacy.txt: 8642) +.potterybarn.com/pbimgs/.*/external/thirdparty\.js +# ||porndoo.com/lib/ajax/track.php (easyprivacy.txt: 8641) +.porndoo.com/lib/ajax/track\.php +# ||popcap.com^*/interstitial_zones.js (easyprivacy.txt: 8640) +.popcap.com/.*/interstitial_zones\.js +# ||polity.org.za/count.php? (easyprivacy.txt: 8639) +.polity.org.za/count\.php\? +# ||pokernews.com/track-views.php? (easyprivacy.txt: 8638) +.pokernews.com/track-views\.php\? +# ||pnet.co.za/js/ga.js (easyprivacy.txt: 8637) +.pnet.co.za/js/ga\.js +# ||pluto.airbnb.com^*.php?uuid= (easyprivacy.txt: 8636) +.pluto.airbnb.com/.*\.php\?uuid= +# ||plentyoffish.com/tracking.js (easyprivacy.txt: 8635) +.plentyoffish.com/tracking\.js +# ||playstation.com/beacon/ (easyprivacy.txt: 8634) +.playstation.com/beacon/ +# ||playserver1.com/analytics/ (easyprivacy.txt: 8633) +.playserver1.com/analytics/ +# ||playlist.com/scripts/remote_logger.js (easyprivacy.txt: 8632) +.playlist.com/scripts/remote_logger\.js +# ||playdom.com/affl/show_pixel? (easyprivacy.txt: 8631) +.playdom.com/affl/show_pixel\? +# ||playboy.com/libs/analytics/ (easyprivacy.txt: 8630) +.playboy.com/libs/analytics/ +# ||play.com/sitetrak/ (easyprivacy.txt: 8629) +.play.com/sitetrak/ +# ||play.com/analytics/ (easyprivacy.txt: 8628) +.play.com/analytics/ +# ||pixiedust.buzzfeed.com^ (easyprivacy.txt: 8627) +.pixiedust.buzzfeed.com +# ||pixels.livingsocial.com^ (easyprivacy.txt: 8626) +.pixels.livingsocial.com +# ||pixel.staging.tree.com^ (easyprivacy.txt: 8625) +.pixel.staging.tree.com +# ||pixel.redditmedia.com^ (easyprivacy.txt: 8624) +.pixel.redditmedia.com +# ||pixel.reddit.com^ (easyprivacy.txt: 8623) +.pixel.reddit.com +# ||pixel.propublica.org^ (easyprivacy.txt: 8622) +.pixel.propublica.org +# ||pixel.pcworld.com^ (easyprivacy.txt: 8621) +.pixel.pcworld.com +# ||pixel.newsdiscover.com.au^ (easyprivacy.txt: 8620) +.pixel.newsdiscover.com.au +# ||pixel.klout.com^ (easyprivacy.txt: 8619) +.pixel.klout.com +# ||pixel.honestjohn.co.uk^ (easyprivacy.txt: 8618) +.pixel.honestjohn.co.uk +# ||pixel.facebook.com^ (easyprivacy.txt: 8617) +.pixel.facebook.com +# ||pixel.digitalspy.co.uk^ (easyprivacy.txt: 8616) +.pixel.digitalspy.co.uk +# ||pixel.buzzfeed.com^ (easyprivacy.txt: 8615) +.pixel.buzzfeed.com +# ||pixazza.com/track/ (easyprivacy.txt: 8614) +.pixazza.com/track/ +# ||pix.gfycat.com^ (easyprivacy.txt: 8613) +.pix.gfycat.com +# ||pix.eads.com^ (easyprivacy.txt: 8612) +.pix.eads.com +# ||pipl.com/rd/? (easyprivacy.txt: 8611) +.pipl.com/rd/\? +# ||pipeline.realtime.active.com^ (easyprivacy.txt: 8610) +.pipeline.realtime.active.com +# ||pings.blip.tv^ (easyprivacy.txt: 8609) +.pings.blip.tv +# ||ping.buto.tv^ (easyprivacy.txt: 8608) +.ping.buto.tv +# ||pictopia.com^*/hb.gif? (easyprivacy.txt: 8607) +.pictopia.com/.*/hb\.gif\? +# ||pichunter.com/logs/ (easyprivacy.txt: 8606) +.pichunter.com/logs/ +# ||picbucks.com/track/ (easyprivacy.txt: 8605) +.picbucks.com/track/ +# ||picapp.com/empty.gif? (easyprivacy.txt: 8604) +.picapp.com/empty\.gif\? +# ||pi.feedsportal.com^ (easyprivacy.txt: 8603) +.pi.feedsportal.com +# ||photographyblog.com/?ACT (easyprivacy.txt: 8602) +.photographyblog.com/\?ACT +# ||photobucket.com^*/tracklite.php (easyprivacy.txt: 8601) +.photobucket.com/.*/tracklite\.php +# ||photobucket.com^*/api.php?*&method=track& (easyprivacy.txt: 8600) +.photobucket.com/.*/api\.php\?.*&method=track& +# ||photobucket.com/track/ (easyprivacy.txt: 8599) +.photobucket.com/track/ +# ||photobucket.com/ss/open.php? (easyprivacy.txt: 8598) +.photobucket.com/ss/open\.php\? +# ||phonedog.com/geo.php (easyprivacy.txt: 8597) +.phonedog.com/geo\.php +# ||petri.co.il/akit/? (easyprivacy.txt: 8596) +.petri.co.il/akit/\? +# ||petplanet.co.uk^*/js/ga.js (easyprivacy.txt: 8595) +.petplanet.co.uk/.*/js/ga\.js +# ||petersons.com^*/trackFunctionsBeta.asp (easyprivacy.txt: 8594) +.petersons.com/.*/trackFunctionsBeta\.asp +# ||petersons.com^*/trackBeta.asp (easyprivacy.txt: 8593) +.petersons.com/.*/trackBeta\.asp +# ||performances.bestofmedia.com^ (easyprivacy.txt: 8592) +.performances.bestofmedia.com +# ||perfectmarket.com/pm/track? (easyprivacy.txt: 8591) +.perfectmarket.com/pm/track\? +# ||perezhilton.com^*/stat/ (easyprivacy.txt: 8590) +.perezhilton.com/.*/stat/ +# ||perezhilton.com/services/geo/ (easyprivacy.txt: 8589) +.perezhilton.com/services/geo/ +# ||perezhilton.com/gtjs.php (easyprivacy.txt: 8588) +.perezhilton.com/gtjs\.php +# ||pepsi.com/js/pepsi_tracking.js (easyprivacy.txt: 8587) +.pepsi.com/js/pepsi_tracking\.js +# ||pearltrees.com/s/track? (easyprivacy.txt: 8586) +.pearltrees.com/s/track\? +# ||peacocks.co.uk^*/analytics.js (easyprivacy.txt: 8585) +.peacocks.co.uk/.*/analytics\.js +# ||pcp001.com/media/globalPixel.js (easyprivacy.txt: 8584) +.pcp001.com/media/globalPixel\.js +# ||pcmag.com/rview/$image (easyprivacy.txt: 8583) +.pcmag.com/rview/ +# ||pclick.yahoo.com^ (easyprivacy.txt: 8582) +.pclick.yahoo.com +# ||pclick.internal.yahoo.com^ (easyprivacy.txt: 8581) +.pclick.internal.yahoo.com +# ||pclick.europe.yahoo.com^ (easyprivacy.txt: 8580) +.pclick.europe.yahoo.com +# ||pckeeper.com^*/pixels/ (easyprivacy.txt: 8579) +.pckeeper.com/.*/pixels/ +# ||pch.com^*/SpectrumAnalytics.js? (easyprivacy.txt: 8578) +.pch.com/.*/SpectrumAnalytics\.js\? +# ||pch.com^*/scripts/Analytics/ (easyprivacy.txt: 8577) +.pch.com/.*/scripts/Analytics/ +# ||paypal.com/webapps/beaconweb/ (easyprivacy.txt: 8575) +.paypal.com/webapps/beaconweb/ +# ||partners.mysavings.com^ (easyprivacy.txt: 8574) +.partners.mysavings.com +# ||partners.badongo.com^ (easyprivacy.txt: 8573) +.partners.badongo.com +# ||paper.li/javascripts/analytics.js (easyprivacy.txt: 8572) +.paper.li/javascripts/analytics\.js +# ||papajohns.com/index_files/activityi_data/ct-*.js (easyprivacy.txt: 8571) +.papajohns.com/index_files/activityi_data/ct-.*\.js +# ||papajohns.com/index_files/activityi.html (easyprivacy.txt: 8570) +.papajohns.com/index_files/activityi\.html +# ||pajamasmedia.com/stats/ (easyprivacy.txt: 8569) +.pajamasmedia.com/stats/ +# ||pages03.net/WTS/event.jpeg? (easyprivacy.txt: 8568) +.pages03.net/WTS/event\.jpeg\? +# ||p.ctpost.com/article?i= (easyprivacy.txt: 8567) +.p.ctpost.com/article\?i= +# ||overstock.com/uniquecount (easyprivacy.txt: 8566) +.overstock.com/uniquecount +# ||overstock.com/dlp?cci=$image (easyprivacy.txt: 8565) +.overstock.com/dlp\?cci= +# ||overclock.net/p/$image (easyprivacy.txt: 8564) +.overclock.net/p/ +# ||ostkcdn.com/js/p13n.js (easyprivacy.txt: 8563) +.ostkcdn.com/js/p13n\.js +# ||oscars.org/scripts/wt_include2.js (easyprivacy.txt: 8562) +.oscars.org/scripts/wt_include2\.js +# ||oscars.org/scripts/wt_include1.js (easyprivacy.txt: 8561) +.oscars.org/scripts/wt_include1\.js +# ||osalt.com/js/track.js (easyprivacy.txt: 8560) +.osalt.com/js/track\.js +# ||origin.chron.com^ (easyprivacy.txt: 8559) +.origin.chron.com +# ||origin-tracking.trulia.com^ (easyprivacy.txt: 8558) +.origin-tracking.trulia.com +# ||orange.co.uk/jsincludes/webtrends*.js (easyprivacy.txt: 8557) +.orange.co.uk/jsincludes/webtrends.*\.js +# ||orain.org/w/index.php/Special:RecordImpression? (easyprivacy.txt: 8556) +.orain.org/w/index\.php/Special:RecordImpression\? +# ||optionsxpress.com^*/tracking.js (easyprivacy.txt: 8555) +.optionsxpress.com/.*/tracking\.js +# ||optimum.net^*=pageview& (easyprivacy.txt: 8554) +.optimum.net/.*=pageview& +# ||optimizely.com/js/geo.js (easyprivacy.txt: 8553) +.optimizely.com/js/geo\.js +# ||optimize-stats.voxmedia.com^ (easyprivacy.txt: 8552) +.optimize-stats.voxmedia.com +# ||ophan.guardian.co.uk^ (easyprivacy.txt: 8551) +.ophan.guardian.co.uk +# ||opera.com/js/sfga.js (easyprivacy.txt: 8550) +.opera.com/js/sfga\.js +# ||openuniversity.co.uk/marketing/ (easyprivacy.txt: 8549) +.openuniversity.co.uk/marketing/ +# ||open.mkt1397.com^ (easyprivacy.txt: 8548) +.open.mkt1397.com +# ||oodle.com/js/suntracking.js (easyprivacy.txt: 8547) +.oodle.com/js/suntracking\.js +# ||oodle.co.uk/event/track-first-view/ (easyprivacy.txt: 8546) +.oodle.co.uk/event/track-first-view/ +# ||onetravel.com/TrackOnetravelAds.js (easyprivacy.txt: 8545) +.onetravel.com/TrackOnetravelAds\.js +# ||omniture.theglobeandmail.com^ (easyprivacy.txt: 8544) +.omniture.theglobeandmail.com +# ||omniture.stuff.co.nz^ (easyprivacy.txt: 8543) +.omniture.stuff.co.nz +# ||om.cbsi.com^ (easyprivacy.txt: 8542) +.om.cbsi.com +# ||olark.com/track/ (easyprivacy.txt: 8541) +.olark.com/track/ +# ||olark.com/nrpc/c?c=create$script (easyprivacy.txt: 8540) +.olark.com/nrpc/c\?c=create +# ||okcupid.com/poststat? (easyprivacy.txt: 8539) +.okcupid.com/poststat\? +# ||ok.co.uk/tracking/ (easyprivacy.txt: 8538) +.ok.co.uk/tracking/ +# ||oimg.mobile.cnbc.com^ (easyprivacy.txt: 8537) +.oimg.mobile.cnbc.com +# ||oimg.m.cnbc.com^ (easyprivacy.txt: 8536) +.oimg.m.cnbc.com +# ||officelivecontent.com^*/Survey/ (easyprivacy.txt: 8535) +.officelivecontent.com/.*/Survey/ +# ||officedepot.com/at/rules_*.js$script (easyprivacy.txt: 8534) +.officedepot.com/at/rules_.*\.js +# ||offers.keynote.com/wt/ (easyprivacy.txt: 8533) +.offers.keynote.com/wt/ +# ||ocregister.com/za? (easyprivacy.txt: 8532) +.ocregister.com/za\? +# ||oasisactive.com/pixels.cfm (easyprivacy.txt: 8531) +.oasisactive.com/pixels\.cfm +# ||nzs.com/sliscripts_ (easyprivacy.txt: 8530) +.nzs.com/sliscripts_ +# ||nzpages.co.nz^*/track.js (easyprivacy.txt: 8529) +.nzpages.co.nz/.*/track\.js +# ||nzonscreen.com/track_video_item (easyprivacy.txt: 8528) +.nzonscreen.com/track_video_item +# ||nzbsrus.com/tracker/ (easyprivacy.txt: 8527) +.nzbsrus.com/tracker/ +# ||nytimes.com/js/mtr.js (easyprivacy.txt: 8526) +.nytimes.com/js/mtr\.js +# ||nytimes.com/?url*&referrer$script (easyprivacy.txt: 8525) +.nytimes.com/\?url.*&referrer +# ||nyt.com/js/mtr.js (easyprivacy.txt: 8524) +.nyt.com/js/mtr\.js +# ||nysun.com/tracker.js (easyprivacy.txt: 8523) +.nysun.com/tracker\.js +# ||nyse.com^*/stats/ (easyprivacy.txt: 8522) +.nyse.com/.*/stats/ +# ||nymag.com^*/analytics.js (easyprivacy.txt: 8521) +.nymag.com/.*/analytics\.js +# ||nymag.com/js/2/metrony (easyprivacy.txt: 8520) +.nymag.com/js/2/metrony +# ||nydailynews.com^*/tracker.js (easyprivacy.txt: 8519) +.nydailynews.com/.*/tracker\.js +# ||nydailynews.com/tracker.js (easyprivacy.txt: 8518) +.nydailynews.com/tracker\.js +# ||novinite.com/tz.php (easyprivacy.txt: 8517) +.novinite.com/tz\.php +# ||novell.com^*/metrics.js (easyprivacy.txt: 8516) +.novell.com/.*/metrics\.js +# ||novatech.co.uk^*/tracking? (easyprivacy.txt: 8515) +.novatech.co.uk/.*/tracking\? +# ||nova.pub/track.php? (easyprivacy.txt: 8514) +.nova.pub/track\.php\? +# ||nola.com/dhtml/stats/ (easyprivacy.txt: 8513) +.nola.com/dhtml/stats/ +# ||nola.com/content/*/tracklinks.js (easyprivacy.txt: 8512) +.nola.com/content/.*/tracklinks\.js +# ||nola.com/cgi-bin/stats/ (easyprivacy.txt: 8511) +.nola.com/cgi-bin/stats/ +# ||noip.com/images/em.php?$image (easyprivacy.txt: 8510) +.noip.com/images/em\.php\? +# ||nmtracking.netflix.com^ (easyprivacy.txt: 8509) +.nmtracking.netflix.com +# ||nm.newegg.com^ (easyprivacy.txt: 8508) +.nm.newegg.com +# ||nj.com/dhtml/stats/ (easyprivacy.txt: 8507) +.nj.com/dhtml/stats/ +# ||nj.com/cgi-bin/stats/ (easyprivacy.txt: 8506) +.nj.com/cgi-bin/stats/ +# ||ning.com^*/ga/ga.js (easyprivacy.txt: 8505) +.ning.com/.*/ga/ga\.js +# ||ninemsn.com.au^*.tracking.udc. (easyprivacy.txt: 8504) +.ninemsn.com.au/.*\.tracking\.udc\. +# ||nike.com/cms/analytics-store-desktop.js (easyprivacy.txt: 8503) +.nike.com/cms/analytics-store-desktop\.js +# ||nih.gov/share/scripts/survey.js (easyprivacy.txt: 8502) +.nih.gov/share/scripts/survey\.js +# ||nih.gov/medlineplus/images/mplus_en_survey.js (easyprivacy.txt: 8501) +.nih.gov/medlineplus/images/mplus_en_survey\.js +# ||nickjr.co.uk/global/js/tracking.js (easyprivacy.txt: 8500) +.nickjr.co.uk/global/js/tracking\.js +# ||nick.com/common/images/spacer.gif? (easyprivacy.txt: 8499) +.nick.com/common/images/spacer\.gif\? +# ||nick.co.uk/global/js/tracking.js (easyprivacy.txt: 8498) +.nick.co.uk/global/js/tracking\.js +# ||nhk.jp^*/bc.gif? (easyprivacy.txt: 8497) +.nhk.jp/.*/bc\.gif\? +# ||nfl.com/imp? (easyprivacy.txt: 8496) +.nfl.com/imp\? +# ||next.co.uk/log.php (easyprivacy.txt: 8495) +.next.co.uk/log\.php +# ||newswire.ca/rt.gif? (easyprivacy.txt: 8494) +.newswire.ca/rt\.gif\? +# ||newstatesman.com/js/NewStatesmanSDC.js (easyprivacy.txt: 8493) +.newstatesman.com/js/NewStatesmanSDC\.js +# ||newsletter.mybboard.net/open.php? (easyprivacy.txt: 8492) +.newsletter.mybboard.net/open\.php\? +# ||newsinc.com/players/report.xml?$image (easyprivacy.txt: 8491) +.newsinc.com/players/report\.xml\? +# ||newser.com/utility.aspx? (easyprivacy.txt: 8490) +.newser.com/utility\.aspx\? +# ||newscom.com/js/v2/ga.js (easyprivacy.txt: 8489) +.newscom.com/js/v2/ga\.js +# ||newsarama.com/common/track.php (easyprivacy.txt: 8488) +.newsarama.com/common/track\.php +# ||news9.com/beacon/ (easyprivacy.txt: 8487) +.news9.com/beacon/ +# ||news.com.au/tracking/ (easyprivacy.txt: 8486) +.news.com.au/tracking/ +# ||news.com.au/track/ (easyprivacy.txt: 8485) +.news.com.au/track/ +# ||news.cn/webdig.js (easyprivacy.txt: 8484) +.news.cn/webdig\.js +# ||news-leader.com^*/analytics.js (easyprivacy.txt: 8483) +.news-leader.com/.*/analytics\.js +# ||newegg.com/TrackingWeb/ (easyprivacy.txt: 8482) +.newegg.com/TrackingWeb/ +# ||newegg.com/common/thirdparty/$subdocument (easyprivacy.txt: 8481) +.newegg.com/common/thirdparty/ +# ||netzero.net/account/event.do?$image (easyprivacy.txt: 8480) +.netzero.net/account/event\.do\? +# ||netmag.co.uk/matchbox/traffic/ (easyprivacy.txt: 8479) +.netmag.co.uk/matchbox/traffic/ +# ||netlog.com/track (easyprivacy.txt: 8478) +.netlog.com/track +# ||netflix.com/RegisterActionImpression? (easyprivacy.txt: 8477) +.netflix.com/RegisterActionImpression\? +# ||netflix.com/LogCustomerEvent? (easyprivacy.txt: 8476) +.netflix.com/LogCustomerEvent\? +# ||netflix.com/ichnaea/log (easyprivacy.txt: 8475) +.netflix.com/ichnaea/log +# ||netflix.com/EpicCounter? (easyprivacy.txt: 8474) +.netflix.com/EpicCounter\? +# ||netflix.com/beacons?*&ssizeCat=*&vsizeCat= (easyprivacy.txt: 8473) +.netflix.com/beacons\?.*&ssizeCat=.*&vsizeCat= +# ||net-a-porter.com/intl/trackpage.nap? (easyprivacy.txt: 8472) +.net-a-porter.com/intl/trackpage\.nap\? +# ||ned.itv.com^ (easyprivacy.txt: 8471) +.ned.itv.com +# ||neatorama.com/story/view/*.gif?hash (easyprivacy.txt: 8470) +.neatorama.com/story/view/.*\.gif\?hash +# ||ndtv.com/Status24x7.lv? (easyprivacy.txt: 8469) +.ndtv.com/Status24x7\.lv\? +# ||ncsoft.com/tracker.js (easyprivacy.txt: 8468) +.ncsoft.com/tracker\.js +# ||nbcudigitaladops.com/hosted/js/*_com_header.js (easyprivacy.txt: 8467) +.nbcudigitaladops.com/hosted/js/.*_com_header\.js +# ||nbcudigitaladops.com/hosted/js/*_com.js (easyprivacy.txt: 8466) +.nbcudigitaladops.com/hosted/js/.*_com\.js +# ||nbcnews.com^*/analytics.js (easyprivacy.txt: 8465) +.nbcnews.com/.*/analytics\.js +# ||nb.myspace.com^ (easyprivacy.txt: 8464) +.nb.myspace.com +# ||navlog.channel4.com^ (easyprivacy.txt: 8463) +.navlog.channel4.com +# ||naukrigulf.com^*/bms_display.php (easyprivacy.txt: 8462) +.naukrigulf.com/.*/bms_display\.php +# ||naukrigulf.com/logger/ (easyprivacy.txt: 8461) +.naukrigulf.com/logger/ +# ||naukri.com/advertiser/ (easyprivacy.txt: 8460) +.naukri.com/advertiser/ +# ||naughtydog.com/beacon/ (easyprivacy.txt: 8459) +.naughtydog.com/beacon/ +# ||nature.com^*/marker-file.nocache? (easyprivacy.txt: 8458) +.nature.com/.*/marker-file\.nocache\? +# ||naturalnews.com/NNAnalytics/ (easyprivacy.txt: 8457) +.naturalnews.com/NNAnalytics/ +# ||nationmobi.com/*/analyse.php (easyprivacy.txt: 8456) +.nationmobi.com/.*/analyse\.php +# ||nationalpayday.com/MAPProc.aspx? (easyprivacy.txt: 8455) +.nationalpayday.com/MAPProc\.aspx\? +# ||nationalpayday.com/1pix.gif (easyprivacy.txt: 8454) +.nationalpayday.com/1pix\.gif +# ||nationalgeographic.com/stats/ax/ (easyprivacy.txt: 8453) +.nationalgeographic.com/stats/ax/ +# ||naptol.com/usr/local/csp/staticContent/js/ga.js (easyprivacy.txt: 8452) +.naptol.com/usr/local/csp/staticContent/js/ga\.js +# ||naplesnews.com/metrics/ (easyprivacy.txt: 8451) +.naplesnews.com/metrics/ +# ||nabble.com/static/analytics.js (easyprivacy.txt: 8450) +.nabble.com/static/analytics\.js +# ||mywebsearch.com^*/mws_bw.gif? (easyprivacy.txt: 8449) +.mywebsearch.com/.*/mws_bw\.gif\? +# ||mywebsearch.com/anx.gif? (easyprivacy.txt: 8448) +.mywebsearch.com/anx\.gif\? +# ||mytravel.co.uk/thomascooktrack.gif? (easyprivacy.txt: 8447) +.mytravel.co.uk/thomascooktrack\.gif\? +# ||myspace.com/isf.gif? (easyprivacy.txt: 8446) +.myspace.com/isf\.gif\? +# ||myspace.com/beacon/ (easyprivacy.txt: 8445) +.myspace.com/beacon/ +# ||mypoints.com/js/*ga.js? (easyprivacy.txt: 8444) +.mypoints.com/js/.*ga\.js\? +# ||mypaydayloan.com/setc.asp? (easyprivacy.txt: 8443) +.mypaydayloan.com/setc\.asp\? +# ||myfitnesspal.com/assets/mfp_localytics.js (easyprivacy.txt: 8442) +.myfitnesspal.com/assets/mfp_localytics\.js +# ||musicstack.com/livezilla/server.php?request=track (easyprivacy.txt: 8441) +.musicstack.com/livezilla/server\.php\?request=track +# ||multiupload.com/extreme/?*&ref=$subdocument (easyprivacy.txt: 8440) +.multiupload.com/extreme/\?.*&ref= +# ||multiply.com/common/dot_clear.gif (easyprivacy.txt: 8439) +.multiply.com/common/dot_clear\.gif +# ||mtoza.vzaar.com^ (easyprivacy.txt: 8438) +.mtoza.vzaar.com +# ||mto.mediatakeout.com/viewer? (easyprivacy.txt: 8437) +.mto.mediatakeout.com/viewer\? +# ||msxml.excite.com/*.gif? (easyprivacy.txt: 8436) +.msxml.excite.com/.*\.gif\? +# ||msnbc.msn.com^*/analytics.js (easyprivacy.txt: 8435) +.msnbc.msn.com/.*/analytics\.js +# ||msn.com^*/track.js (easyprivacy.txt: 8434) +.msn.com/.*/track\.js +# ||msn.com^*/report.js (easyprivacy.txt: 8433) +.msn.com/.*/report\.js +# ||msn.com/tracker/ (easyprivacy.txt: 8432) +.msn.com/tracker/ +# ||msn.com/script/tracking*.js (easyprivacy.txt: 8431) +.msn.com/script/tracking.*\.js +# ||msn.com/ro.aspx? (easyprivacy.txt: 8430) +.msn.com/ro\.aspx\? +# ||msn.co.nz/share/long_cache/js/tracking/ (easyprivacy.txt: 8429) +.msn.co.nz/share/long_cache/js/tracking/ +# ||msecnd.net^*/wt.js? (easyprivacy.txt: 8428) +.msecnd.net/.*/wt\.js\? +# ||mp3lyrics.org^*/cnt.php? (easyprivacy.txt: 8427) +.mp3lyrics.org/.*/cnt\.php\? +# ||mp3lyrics.org/trk/trk.php? (easyprivacy.txt: 8426) +.mp3lyrics.org/trk/trk\.php\? +# ||mp.twitch.tv^ (easyprivacy.txt: 8425) +.mp.twitch.tv +# ||mozilla.org/includes/min/*=js_stats (easyprivacy.txt: 8424) +.mozilla.org/includes/min/.*=js_stats +# ||mozilla.net^*/webtrends/ (easyprivacy.txt: 8423) +.mozilla.net/.*/webtrends/ +# ||mozilla.com/js/track.js (easyprivacy.txt: 8422) +.mozilla.com/js/track\.js +# ||movieclips.com/api/v1/player/test? (easyprivacy.txt: 8421) +.movieclips.com/api/v1/player/test\? +# ||mov-world.net/counter/ (easyprivacy.txt: 8420) +.mov-world.net/counter/ +# ||mortgage101.com/tracking/ (easyprivacy.txt: 8419) +.mortgage101.com/tracking/ +# ||monstercrawler.com/__kl.gif (easyprivacy.txt: 8418) +.monstercrawler.com/__kl\.gif +# ||monova.org/js/ga.js (easyprivacy.txt: 8417) +.monova.org/js/ga\.js +# ||monkeyquest.com/monkeyquest/static/js/ga.js (easyprivacy.txt: 8416) +.monkeyquest.com/monkeyquest/static/js/ga\.js +# ||monitor.co.ug/analytics/ (easyprivacy.txt: 8415) +.monitor.co.ug/analytics/ +# ||moneysupermarket.com^*/ProphetInsert.js (easyprivacy.txt: 8414) +.moneysupermarket.com/.*/ProphetInsert\.js +# ||momtastic.com/libraries/pebblebed/js/pb.track.js (easyprivacy.txt: 8413) +.momtastic.com/libraries/pebblebed/js/pb\.track\.js +# ||modernsalon.com/includes/sc_video_tracking.js (easyprivacy.txt: 8412) +.modernsalon.com/includes/sc_video_tracking\.js +# ||mod.uk/js/tracker.js (easyprivacy.txt: 8411) +.mod.uk/js/tracker\.js +# ||ml.com/js/ml_dcs_tag_ (easyprivacy.txt: 8410) +.ml.com/js/ml_dcs_tag_ +# ||mitpress.mit.edu/wusage_screen_properties.gif (easyprivacy.txt: 8409) +.mitpress.mit.edu/wusage_screen_properties\.gif +# ||mirror.co.uk^*/stats/ (easyprivacy.txt: 8408) +.mirror.co.uk/.*/stats/ +# ||mint.boingboing.net^ (easyprivacy.txt: 8407) +.mint.boingboing.net +# ||miniusa.com^*/trackDeeplink.gif? (easyprivacy.txt: 8406) +.miniusa.com/.*/trackDeeplink\.gif\? +# ||miniurls.co/track/ (easyprivacy.txt: 8405) +.miniurls.co/track/ +# ||miningweekly.com/count.php? (easyprivacy.txt: 8404) +.miningweekly.com/count\.php\? +# ||miniclip.com^*/swhsproxy.swf? (easyprivacy.txt: 8403) +.miniclip.com/.*/swhsproxy\.swf\? +# ||military.com^*/statistic? (easyprivacy.txt: 8402) +.military.com/.*/statistic\? +# ||military.com/Scripts/mnfooter.js (easyprivacy.txt: 8401) +.military.com/Scripts/mnfooter\.js +# ||military.com/cgi-bin/redlog2.cgi? (easyprivacy.txt: 8400) +.military.com/cgi-bin/redlog2\.cgi\? +# ||microsoft.com^*/surveytrigger.js (easyprivacy.txt: 8399) +.microsoft.com/.*/surveytrigger\.js +# ||microsoft.com^*/bimapping.js (easyprivacy.txt: 8398) +.microsoft.com/.*/bimapping\.js +# ||microsoft.com/LTS/default.aspx (easyprivacy.txt: 8397) +.microsoft.com/LTS/default\.aspx +# ||microsoft.com/library/svy/ (easyprivacy.txt: 8396) +.microsoft.com/library/svy/ +# ||microsoft.com/getsilverlight/scripts/Tracker.js (easyprivacy.txt: 8395) +.microsoft.com/getsilverlight/scripts/Tracker\.js +# ||microsoft.com/getsilverlight/scripts/silverlight/SilverlightAtlas-MSCOM-Tracking.js (easyprivacy.txt: 8394) +.microsoft.com/getsilverlight/scripts/silverlight/SilverlightAtlas-MSCOM-Tracking\.js +# ||microsoft.com/blankpixel.gif (easyprivacy.txt: 8393) +.microsoft.com/blankpixel\.gif +# ||mf2fm.com/php/stats.php? (easyprivacy.txt: 8392) +.mf2fm.com/php/stats\.php\? +# ||metroweekly.com/tools/blog_add_visitor/ (easyprivacy.txt: 8391) +.metroweekly.com/tools/blog_add_visitor/ +# ||metro.us/api/trackPage/ (easyprivacy.txt: 8390) +.metro.us/api/trackPage/ +# ||metrics.washingtonpost.com^ (easyprivacy.txt: 8389) +.metrics.washingtonpost.com +# ||metrics.ted.com^ (easyprivacy.txt: 8388) +.metrics.ted.com +# ||metrics.tbliab.net^ (easyprivacy.txt: 8387) +.metrics.tbliab.net +# ||metrics.extremetech.com^ (easyprivacy.txt: 8386) +.metrics.extremetech.com +# ||metrics.ee.co.uk^ (easyprivacy.txt: 8385) +.metrics.ee.co.uk +# ||metrics.dailymotion.com^ (easyprivacy.txt: 8384) +.metrics.dailymotion.com +# ||metrics.cnn.com^ (easyprivacy.txt: 8383) +.metrics.cnn.com +# ||metrics.aws.sitepoint.com^ (easyprivacy.txt: 8382) +.metrics.aws.sitepoint.com +# ||metrics.apartments.com^ (easyprivacy.txt: 8381) +.metrics.apartments.com +# ||metric.inetcore.com^ (easyprivacy.txt: 8380) +.metric.inetcore.com +# ||metric.gstatic.com^ (easyprivacy.txt: 8379) +.metric.gstatic.com +# ||metric*.rediff.com^ (easyprivacy.txt: 8378) +.metric*./.*\.rediff\.com[^\w%.-] +.metric*.rediff.com +# ||meter-svc.nytimes.com^ (easyprivacy.txt: 8377) +.meter-svc.nytimes.com +# ||metacrawler.com/__kl.gif (easyprivacy.txt: 8376) +.metacrawler.com/__kl\.gif +# ||metacafe.com^*/statsrecorder.php? (easyprivacy.txt: 8375) +.metacafe.com/.*/statsrecorder\.php\? +# ||metacafe.com/services/fplayer/report.php? (easyprivacy.txt: 8374) +.metacafe.com/services/fplayer/report\.php\? +# ||met-art.com/visit.js (easyprivacy.txt: 8373) +.met-art.com/visit\.js +# ||merck.com/js/mercktracker.js (easyprivacy.txt: 8372) +.merck.com/js/mercktracker\.js +# ||merchantcircle.com/static/track.js (easyprivacy.txt: 8371) +.merchantcircle.com/static/track\.js +# ||mercent.com/js/tracker.js (easyprivacy.txt: 8370) +.mercent.com/js/tracker\.js +# ||medscape.com/pi/1x1/pv/profreg-1x1.gif (easyprivacy.txt: 8369) +.medscape.com/pi/1x1/pv/profreg-1x1\.gif +# ||mediaplex.com^*/universal.html (easyprivacy.txt: 8368) +.mediaplex.com/.*/universal\.html +# ||mediabistro.com/blogshare/js/trackingheader.js (easyprivacy.txt: 8367) +.mediabistro.com/blogshare/js/trackingheader\.js +# ||media-imdb.com^*/adblock.swf (easyprivacy.txt: 8366) +.media-imdb.com/.*/adblock\.swf +# ||media-imdb.com/images/*/imdbads/js/beacon-$script (easyprivacy.txt: 8365) +.media-imdb.com/images/.*/imdbads/js/beacon- +# ||mdmpix.com/js/connector.php? (easyprivacy.txt: 8364) +.mdmpix.com/js/connector\.php\? +# ||mayoclinic.org/js/tracker.js (easyprivacy.txt: 8363) +.mayoclinic.org/js/tracker\.js +# ||mayoclinic.org/js/gconversion.js (easyprivacy.txt: 8362) +.mayoclinic.org/js/gconversion\.js +# ||mate1.com^*/reg.logging.js (easyprivacy.txt: 8361) +.mate1.com/.*/reg\.logging\.js +# ||mate1.com^*/iframe/pixel/ (easyprivacy.txt: 8360) +.mate1.com/.*/iframe/pixel/ +# ||mastercard.com^*/Analytics/ (easyprivacy.txt: 8359) +.mastercard.com/.*/Analytics/ +# ||mastercard.com/dynamictag.swf (easyprivacy.txt: 8358) +.mastercard.com/dynamictag\.swf +# ||mashable.com/pv.xml (easyprivacy.txt: 8357) +.mashable.com/pv\.xml +# ||marriott.com^*/mi_customer_survey.js (easyprivacy.txt: 8356) +.marriott.com/.*/mi_customer_survey\.js +# ||marketwire.com/accesstracking/ (easyprivacy.txt: 8355) +.marketwire.com/accesstracking/ +# ||marketing.nodesource.com^ (easyprivacy.txt: 8354) +.marketing.nodesource.com +# ||marketing.kalahari.net^ (easyprivacy.txt: 8353) +.marketing.kalahari.net +# ||maps.nokia.com^*/tracking.c.js (easyprivacy.txt: 8352) +.maps.nokia.com/.*/tracking\.c\.js +# ||manta.com/sbb? (easyprivacy.txt: 8351) +.manta.com/sbb\? +# ||mansion.com/collect.js? (easyprivacy.txt: 8350) +.mansion.com/collect\.js\? +# ||malibubright.com/krtrk/ (easyprivacy.txt: 8349) +.malibubright.com/krtrk/ +# ||mailings.gmx.net/action/view/$image (easyprivacy.txt: 8348) +.mailings.gmx.net/action/view/ +# ||mailer.atlassian.com/open.aspx? (easyprivacy.txt: 8347) +.mailer.atlassian.com/open\.aspx\? +# ||mail.yahoo.com/dc/rs?log= (easyprivacy.txt: 8346) +.mail.yahoo.com/dc/rs\?log= +# ||mail.advantagebusinessmedia.com/open.aspx (easyprivacy.txt: 8345) +.mail.advantagebusinessmedia.com/open\.aspx +# ||madthumbs.com/tlog.php (easyprivacy.txt: 8344) +.madthumbs.com/tlog\.php +# ||ly.lygo.com^*/jquery.lycostrack.js (easyprivacy.txt: 8343) +.ly.lygo.com/.*/jquery\.lycostrack\.js +# ||luxurylink.com/t/hpr.php? (easyprivacy.txt: 8342) +.luxurylink.com/t/hpr\.php\? +# ||lucidchart.com/analytics_ (easyprivacy.txt: 8341) +.lucidchart.com/analytics_ +# ||lslmetrics.djlmgdigital.com^ (easyprivacy.txt: 8340) +.lslmetrics.djlmgdigital.com +# ||lsam.research.microsoft.com^ (easyprivacy.txt: 8339) +.lsam.research.microsoft.com +# ||lovefilm.com^*/lf-perf-beacon.png (easyprivacy.txt: 8338) +.lovefilm.com/.*/lf-perf-beacon\.png +# ||lovefilm.com/lovefilm/images/dot.gif (easyprivacy.txt: 8337) +.lovefilm.com/lovefilm/images/dot\.gif +# ||lovefilm.com/api/ioko/log/ (easyprivacy.txt: 8336) +.lovefilm.com/api/ioko/log/ +# ||lolbin.net/stats.php (easyprivacy.txt: 8335) +.lolbin.net/stats\.php +# ||logs.dashlane.com^ (easyprivacy.txt: 8334) +.logs.dashlane.com +# ||logmein.com/scripts/Tracking/ (easyprivacy.txt: 8333) +.logmein.com/scripts/Tracking/ +# ||loglady.publicbroadcasting.net^ (easyprivacy.txt: 8332) +.loglady.publicbroadcasting.net +# ||loggingservices.tribune.com^ (easyprivacy.txt: 8331) +.loggingservices.tribune.com +# ||logger.dailymotion.com^ (easyprivacy.txt: 8330) +.logger.dailymotion.com +# ||logger-*.dailymotion.com^ (easyprivacy.txt: 8329) +.logger-*./.*\.dailymotion\.com[^\w%.-] +.logger-*.dailymotion.com +# ||log.vdn.apps.cntv.cn^ (easyprivacy.txt: 8328) +.log.vdn.apps.cntv.cn +# ||log.player.cntv.cn/stat.html? (easyprivacy.txt: 8327) +.log.player.cntv.cn/stat\.html\? +# ||log.optimizely.com^ (easyprivacy.txt: 8326) +.log.optimizely.com +# ||log.newsvine.com^ (easyprivacy.txt: 8325) +.log.newsvine.com +# ||log.go.com^ (easyprivacy.txt: 8324) +.log.go.com +# ||log.deutschegrammophon.com^ (easyprivacy.txt: 8323) +.log.deutschegrammophon.com +# ||log.data.disney.com^ (easyprivacy.txt: 8322) +.log.data.disney.com +# ||loc.gov/js/ga.js (easyprivacy.txt: 8321) +.loc.gov/js/ga\.js +# ||lm.pcworld.com/db/*/1.gif (easyprivacy.txt: 8320) +.lm.pcworld.com/db/.*/1\.gif +# ||livesupport.zol.co.zw/image_tracker.php? (easyprivacy.txt: 8319) +.livesupport.zol.co.zw/image_tracker\.php\? +# ||livestream.com^*/analytics/ (easyprivacy.txt: 8318) +.livestream.com/.*/analytics/ +# ||livestation.com^*/statistics.swf (easyprivacy.txt: 8317) +.livestation.com/.*/statistics\.swf +# ||livestation.com^*/akamaimediaanalytics.swf (easyprivacy.txt: 8316) +.livestation.com/.*/akamaimediaanalytics\.swf +# ||liveperson.net/hc/*/?visitor= (easyprivacy.txt: 8315) +.liveperson.net/hc/.*/\?visitor= +# ||livejournal.com/ljcounter/? (easyprivacy.txt: 8314) +.livejournal.com/ljcounter/\? +# ||livedoor.com/counter/ (easyprivacy.txt: 8313) +.livedoor.com/counter/ +# ||live.philips.com^ (easyprivacy.txt: 8312) +.live.philips.com +# ||live.com/handlers/watson.mvc? (easyprivacy.txt: 8311) +.live.com/handlers/watson\.mvc\? +# ||live-audience.dailymotion.com^ (easyprivacy.txt: 8310) +.live-audience.dailymotion.com +# ||list.ru/counter? (easyprivacy.txt: 8309) +.list.ru/counter\? +# ||lipsy.co.uk/_assets/images/skin/tracking/ (easyprivacy.txt: 8308) +.lipsy.co.uk/_assets/images/skin/tracking/ +# ||linuxtoday.com/hqxapi/ (easyprivacy.txt: 8307) +.linuxtoday.com/hqxapi/ +# ||linkpuls.idg.no^ (easyprivacy.txt: 8306) +.linkpuls.idg.no +# ||linkedin.com^*/tracker.gif? (easyprivacy.txt: 8305) +.linkedin.com/.*/tracker\.gif\? +# ||linkedin.com/mob/tracking (easyprivacy.txt: 8304) +.linkedin.com/mob/tracking +# ||linkedin.com/analytics/ (easyprivacy.txt: 8303) +.linkedin.com/analytics/ +# ||linkbucks.com/track/ (easyprivacy.txt: 8302) +.linkbucks.com/track/ +# ||linkbucks.com/clean.aspx?task=record$image (easyprivacy.txt: 8301) +.linkbucks.com/clean\.aspx\?task=record +# ||link.ex.fm/img/*.gif (easyprivacy.txt: 8300) +.link.ex.fm/img/.*\.gif +# ||link.codeyear.com/img/ (easyprivacy.txt: 8299) +.link.codeyear.com/img/ +# ||linguee.com*/white_pixel.gif? (easyprivacy.txt: 8298) +.linguee.com*./(.*/)?white_pixel\.gif\? +# ||lilb2.shutterstock.com^ (easyprivacy.txt: 8297) +.lilb2.shutterstock.com +# ||likes.com/api/track_pv (easyprivacy.txt: 8296) +.likes.com/api/track_pv +# ||lifehacker.com^*/trackers.html (easyprivacy.txt: 8295) +.lifehacker.com/.*/trackers\.html +# ||lifehacker.com/at.js.php (easyprivacy.txt: 8294) +.lifehacker.com/at\.js\.php +# ||life.com/sm-stat/ (easyprivacy.txt: 8293) +.life.com/sm-stat/ +# ||lh.secure.yahoo.com^ (easyprivacy.txt: 8292) +.lh.secure.yahoo.com +# ||lexus.com/lexus-share/js/campaign_tracking.js (easyprivacy.txt: 8291) +.lexus.com/lexus-share/js/campaign_tracking\.js +# ||letitbit.net/counter/ (easyprivacy.txt: 8290) +.letitbit.net/counter/ +# ||letitbit.net/atercattus/letitbit/counter/? (easyprivacy.txt: 8289) +.letitbit.net/atercattus/letitbit/counter/\? +# ||lendingtree.com/javascript/tracking.js (easyprivacy.txt: 8288) +.lendingtree.com/javascript/tracking\.js +# ||lendingtree.com/forms/eventtracking? (easyprivacy.txt: 8287) +.lendingtree.com/forms/eventtracking\? +# ||legalmatch.com/scripts/lmtracker.js (easyprivacy.txt: 8286) +.legalmatch.com/scripts/lmtracker\.js +# ||latimes.com/images/pixel.gif (easyprivacy.txt: 8285) +.latimes.com/images/pixel\.gif +# ||landrover.com/system/logging/ (easyprivacy.txt: 8284) +.landrover.com/system/logging/ +# ||lancasteronline.com/javascript/ga.php (easyprivacy.txt: 8283) +.lancasteronline.com/javascript/ga\.php +# ||l.5min.com^ (easyprivacy.txt: 8282) +.l.5min.com +# ||kyte.tv/flash/MarbachMetricsProvider.swf (easyprivacy.txt: 8281) +.kyte.tv/flash/MarbachMetricsProvider\.swf +# ||kyte.tv/flash/MarbachMetricsOmniture.swf (easyprivacy.txt: 8280) +.kyte.tv/flash/MarbachMetricsOmniture\.swf +# ||kotaku.com^*/trackers.html (easyprivacy.txt: 8279) +.kotaku.com/.*/trackers\.html +# ||kotaku.com/at.js.php (easyprivacy.txt: 8278) +.kotaku.com/at\.js\.php +# ||kosmix.com^*.txt?pvid= (easyprivacy.txt: 8277) +.kosmix.com/.*\.txt\?pvid= +# ||kodakgallery.com^*/analytics_ (easyprivacy.txt: 8276) +.kodakgallery.com/.*/analytics_ +# ||knoxnews.com/metrics/ (easyprivacy.txt: 8275) +.knoxnews.com/metrics/ +# ||klout.com/ka.js (easyprivacy.txt: 8274) +.klout.com/ka\.js +# ||kloth.net/images/pixel.gif (easyprivacy.txt: 8273) +.kloth.net/images/pixel\.gif +# ||klm.com/travel/generic/static/js/measure_async.js (easyprivacy.txt: 8272) +.klm.com/travel/generic/static/js/measure_async\.js +# ||kksou.com^*/record.php? (easyprivacy.txt: 8271) +.kksou.com/.*/record\.php\? +# ||kitsapsun.com/metrics/ (easyprivacy.txt: 8270) +.kitsapsun.com/metrics/ +# ||king.com/boxes/trackingCode.jsp (easyprivacy.txt: 8269) +.king.com/boxes/trackingCode\.jsp +# ||kinesisproxy.hearstlabs.com^ (easyprivacy.txt: 8268) +.kinesisproxy.hearstlabs.com +# ||killerstartups.com^*/adsensev (easyprivacy.txt: 8267) +.killerstartups.com/.*/adsensev +# ||kelkoo.com/kk_track? (easyprivacy.txt: 8266) +.kelkoo.com/kk_track\? +# ||kelkoo.co.uk^*/tracker/ (easyprivacy.txt: 8265) +.kelkoo.co.uk/.*/tracker/ +# ||kelkoo.co.uk/kk_track? (easyprivacy.txt: 8264) +.kelkoo.co.uk/kk_track\? +# ||kayak.com/k/redirect/tracking? (easyprivacy.txt: 8263) +.kayak.com/k/redirect/tracking\? +# ||kalahari.net/includes/swatag.js (easyprivacy.txt: 8262) +.kalahari.net/includes/swatag\.js +# ||justanswer.com/ja_services/processes/log.asmx/ (easyprivacy.txt: 8261) +.justanswer.com/ja_services/processes/log\.asmx/ +# ||justanswer.com/browsercheck/ (easyprivacy.txt: 8260) +.justanswer.com/browsercheck/ +# ||juno.com/start/javascript.do?message=$image (easyprivacy.txt: 8259) +.juno.com/start/javascript\.do\?message= +# ||jtv.com^*/__analytics-tracking? (easyprivacy.txt: 8258) +.jtv.com/.*/__analytics-tracking\? +# ||jpmorgan.co.uk/tagging/ (easyprivacy.txt: 8257) +.jpmorgan.co.uk/tagging/ +# ||jokeroo.com/i/.gif (easyprivacy.txt: 8256) +.jokeroo.com/i/\.gif +# ||joins.com/hc.aspx? (easyprivacy.txt: 8255) +.joins.com/hc\.aspx\? +# ||johansens.com^*/LogPageView (easyprivacy.txt: 8254) +.johansens.com/.*/LogPageView +# ||jobthread.com/t/ (easyprivacy.txt: 8253) +.jobthread.com/t/ +# ||jobthread.com/js/t.js (easyprivacy.txt: 8252) +.jobthread.com/js/t\.js +# ||jobscentral.com.sg/cb_transfer.php (easyprivacy.txt: 8251) +.jobscentral.com.sg/cb_transfer\.php +# ||jezebel.com^*/trackers.html (easyprivacy.txt: 8250) +.jezebel.com/.*/trackers\.html +# ||jezebel.com/at.js.php (easyprivacy.txt: 8249) +.jezebel.com/at\.js\.php +# ||jeuxjeux2.com/stats.php (easyprivacy.txt: 8248) +.jeuxjeux2.com/stats\.php +# ||jetsetter.com/tracker.php (easyprivacy.txt: 8247) +.jetsetter.com/tracker\.php +# ||jessops.com/js/JessopsTracking. (easyprivacy.txt: 8246) +.jessops.com/js/JessopsTracking\. +# ||javhd.com/click/ (easyprivacy.txt: 8245) +.javhd.com/click/ +# ||jaludo.com/pm.php? (easyprivacy.txt: 8244) +.jaludo.com/pm\.php\? +# ||jalopnik.com^*/trackers.html (easyprivacy.txt: 8243) +.jalopnik.com/.*/trackers\.html +# ||jalopnik.com/at.js.php (easyprivacy.txt: 8242) +.jalopnik.com/at\.js\.php +# ||jal.co.jp/common_rn/js/rtam.js (easyprivacy.txt: 8241) +.jal.co.jp/common_rn/js/rtam\.js +# ||jakpost.net/jptracker/ (easyprivacy.txt: 8240) +.jakpost.net/jptracker/ +# ||jack.allday.com^ (easyprivacy.txt: 8239) +.jack.allday.com +# ||ixs1.net/s/ (easyprivacy.txt: 8238) +.ixs1.net/s/ +# ||ixquick.*/pelp? (easyprivacy.txt: 8237) +.ixquick.*./(.*/)?pelp\? +# ||ixquick.*/elp? (easyprivacy.txt: 8236) +.ixquick.*./(.*/)?elp\? +# ||ixquick.*/do/avt?$image (easyprivacy.txt: 8235) +.ixquick.*./(.*/)?do/avt\? +# ||itv.com/_app/cmn/js/bcm.js (easyprivacy.txt: 8234) +.itv.com/_app/cmn/js/bcm\.js +# ||itp.net/ga.js (easyprivacy.txt: 8233) +.itp.net/ga\.js +# ||issn.org/isens_marker.php? (easyprivacy.txt: 8232) +.issn.org/isens_marker\.php\? +# ||irs.gov/js/irs_reporting_cookie.js (easyprivacy.txt: 8231) +.irs.gov/js/irs_reporting_cookie\.js +# ||ipetitions.com/img.php? (easyprivacy.txt: 8230) +.ipetitions.com/img\.php\? +# ||ip-adress.com/gl?r= (easyprivacy.txt: 8229) +.ip-adress.com/gl\?r= +# ||io9.com^*/trackers.html (easyprivacy.txt: 8228) +.io9.com/.*/trackers\.html +# ||io9.com/at.js.php (easyprivacy.txt: 8227) +.io9.com/at\.js\.php +# ||investegate.co.uk/Weblogs/IGLog.aspx? (easyprivacy.txt: 8226) +.investegate.co.uk/Weblogs/IGLog\.aspx\? +# ||intent.cbsi.com^ (easyprivacy.txt: 8225) +.intent.cbsi.com +# ||intensedebate.com/empty.php (easyprivacy.txt: 8224) +.intensedebate.com/empty\.php +# ||intelli.ageuk.org.uk^ (easyprivacy.txt: 8223) +.intelli.ageuk.org.uk +# ||insynchq.com/wf/open? (easyprivacy.txt: 8222) +.insynchq.com/wf/open\? +# ||instyle.co.uk^*/tracking.js (easyprivacy.txt: 8221) +.instyle.co.uk/.*/tracking\.js +# ||instructables.com/counter (easyprivacy.txt: 8220) +.instructables.com/counter +# ||insire.com/imp? (easyprivacy.txt: 8219) +.insire.com/imp\? +# ||insidesoci.al/track (easyprivacy.txt: 8218) +.insidesoci.al/track +# ||insideline.com^*/edw1x1.gif (easyprivacy.txt: 8217) +.insideline.com/.*/edw1x1\.gif +# ||insideline.com^*/dart1x1.gif (easyprivacy.txt: 8216) +.insideline.com/.*/dart1x1\.gif +# ||inquiries.redhat.com^ (easyprivacy.txt: 8215) +.inquiries.redhat.com +# ||inq.com/tagserver/logging/log4js (easyprivacy.txt: 8214) +.inq.com/tagserver/logging/log4js +# ||ino.com/img/sites/mkt/click.gif (easyprivacy.txt: 8213) +.ino.com/img/sites/mkt/click\.gif +# ||inmagine.com/j/ga.js (easyprivacy.txt: 8212) +.inmagine.com/j/ga\.js +# ||ingest.onion.com^ (easyprivacy.txt: 8211) +.ingest.onion.com +# ||infusionextreme.com/tracker/ (easyprivacy.txt: 8210) +.infusionextreme.com/tracker/ +# ||infospace.com^*=pageview& (easyprivacy.txt: 8209) +.infospace.com/.*=pageview& +# ||informer.com/statistic? (easyprivacy.txt: 8208) +.informer.com/statistic\? +# ||infoq.com/scripts/tracker.js (easyprivacy.txt: 8207) +.infoq.com/scripts/tracker\.js +# ||infomine.com/imcounter.js (easyprivacy.txt: 8206) +.infomine.com/imcounter\.js +# ||infogr.am/js/metrics.js (easyprivacy.txt: 8205) +.infogr.am/js/metrics\.js +# ||influxer.onion.com^ (easyprivacy.txt: 8204) +.influxer.onion.com +# ||indiatimes.com/trackjs10. (easyprivacy.txt: 8203) +.indiatimes.com/trackjs10\. +# ||independentmail.com/metrics/ (easyprivacy.txt: 8202) +.independentmail.com/metrics/ +# ||indeed.com/rpc/preccount? (easyprivacy.txt: 8201) +.indeed.com/rpc/preccount\? +# ||imx.comedycentral.com^ (easyprivacy.txt: 8200) +.imx.comedycentral.com +# ||imonitor.dhgate.com^ (easyprivacy.txt: 8199) +.imonitor.dhgate.com +# ||immassets.s3.amazonaws.com^ (easyprivacy.txt: 8198) +.immassets.s3.amazonaws.com +# ||imgur.com/lumbar.gif? (easyprivacy.txt: 8197) +.imgur.com/lumbar\.gif\? +# ||imgur.com/imageview.gif? (easyprivacy.txt: 8196) +.imgur.com/imageview\.gif\? +# ||imgur.com/albumview.gif? (easyprivacy.txt: 8195) +.imgur.com/albumview\.gif\? +# ||imgtrack.domainmarket.com^ (easyprivacy.txt: 8194) +.imgtrack.domainmarket.com +# ||imdb.com/video/*metrics? (easyprivacy.txt: 8193) +.imdb.com/video/.*metrics\? +# ||imdb.com/video/*/metrics_ (easyprivacy.txt: 8192) +.imdb.com/video/.*/metrics_ +# ||imdb.com/twilight/? (easyprivacy.txt: 8191) +.imdb.com/twilight/\? +# ||imdb.com/rd/?q (easyprivacy.txt: 8190) +.imdb.com/rd/\?q +# ||imagetwist.com/?op= (easyprivacy.txt: 8189) +.imagetwist.com/\?op= +# ||images.military.com/pixel.gif (easyprivacy.txt: 8188) +.images.military.com/pixel\.gif +# ||images-amazon.com^*/clog/clog-platform*.js$script (easyprivacy.txt: 8187) +.images-amazon.com/.*/clog/clog-platform.*\.js +# ||images-amazon.com^*/ClientSideMetricsAUIJavascript*.js (easyprivacy.txt: 8186) +.images-amazon.com/.*/ClientSideMetricsAUIJavascript.*\.js +# ||image.providesupport.com/cmd/ (easyprivacy.txt: 8184) +.image.providesupport.com/cmd/ +# ||iheart.com/tracking/ (easyprivacy.txt: 8183) +.iheart.com/tracking/ +# ||ign.com/global/analytics/drones.js (easyprivacy.txt: 8182) +.ign.com/global/analytics/drones\.js +# ||iedc.fitbit.com^ (easyprivacy.txt: 8181) +.iedc.fitbit.com +# ||id.localsearch.ch^ (easyprivacy.txt: 8180) +.id.localsearch.ch +# ||id.google.*/verify/*.gif (easyprivacy.txt: 8179) +.id.google.*./(.*/)?verify/.*\.gif +# ||id.allegisgroup.com^ (easyprivacy.txt: 8178) +.id.allegisgroup.com +# ||icq.com/search/js/stats.js (easyprivacy.txt: 8177) +.icq.com/search/js/stats\.js +# ||ibtimes.com/player/stats.swf$object-subrequest (easyprivacy.txt: 8176) +.ibtimes.com/player/stats\.swf +# ||ibs.indiatimes.com^ (easyprivacy.txt: 8175) +.ibs.indiatimes.com +# ||ibm.com/gateway/? (easyprivacy.txt: 8174) +.ibm.com/gateway/\? +# ||ibm.com/common/stats/ (easyprivacy.txt: 8173) +.ibm.com/common/stats/ +# ||iberia.com^*/ga/ga.js (easyprivacy.txt: 8172) +.iberia.com/.*/ga/ga\.js +# ||ibeat.indiatimes.com^ (easyprivacy.txt: 8171) +.ibeat.indiatimes.com +# ||iafrica.com/php-bin/iac/readcnt.php? (easyprivacy.txt: 8170) +.iafrica.com/php-bin/iac/readcnt\.php\? +# ||i365.com^*/pv.aspx? (easyprivacy.txt: 8169) +.i365.com/.*/pv\.aspx\? +# ||i.walmartimages.com/i/icon/ (easyprivacy.txt: 8168) +.i.walmartimages.com/i/icon/ +# ||i-am-bored.com/cah.asp (easyprivacy.txt: 8167) +.i-am-bored.com/cah\.asp +# ||i-am-bored.com/cad.asp (easyprivacy.txt: 8166) +.i-am-bored.com/cad\.asp +# ||hwscdn.com^*/brands_analytics.js (easyprivacy.txt: 8165) +.hwscdn.com/.*/brands_analytics\.js +# ||hwscdn.com/analytics.js (easyprivacy.txt: 8164) +.hwscdn.com/analytics\.js +# ||humanclick.com/hc/*/?visitor= (easyprivacy.txt: 8163) +.humanclick.com/hc/.*/\?visitor= +# ||huluim.com^*/sitetracking/ (easyprivacy.txt: 8162) +.huluim.com/.*/sitetracking/ +# ||huluim.com/*&beaconevent$image,object-subrequest,~third-party (easyprivacy.txt: 8161) +.huluim.com/.*&beaconevent +# ||hulu.com^*/sitetracking/ (easyprivacy.txt: 8160) +.hulu.com/.*/sitetracking/ +# ||hulu.com^*/recommendationTracking/tracking? (easyprivacy.txt: 8159) +.hulu.com/.*/recommendationTracking/tracking\? +# ||hulu.com^*/potentialbugtracking/dropframes? (easyprivacy.txt: 8158) +.hulu.com/.*/potentialbugtracking/dropframes\? +# ||hulu.com^*/potentialbugtracking/contentplaybackresume? (easyprivacy.txt: 8157) +.hulu.com/.*/potentialbugtracking/contentplaybackresume\? +# ||hulu.com^*/potentialbugtracking/bigdropframes? (easyprivacy.txt: 8156) +.hulu.com/.*/potentialbugtracking/bigdropframes\? +# ||hulu.com^*/plustracking/ (easyprivacy.txt: 8155) +.hulu.com/.*/plustracking/ +# ||hulu.com^*/external_beacon.swf (easyprivacy.txt: 8154) +.hulu.com/.*/external_beacon\.swf +# ||hulu.com/watch/*track.url-1.com (easyprivacy.txt: 8153) +.hulu.com/watch/.*track\.url-1\.com +# ||hulu.com/guid.swf (easyprivacy.txt: 8152) +.hulu.com/guid\.swf +# ||hulu.com/google_conversion_video_view_tracking.html (easyprivacy.txt: 8151) +.hulu.com/google_conversion_video_view_tracking\.html +# ||hulu.com/beaconservice.swf (easyprivacy.txt: 8150) +.hulu.com/beaconservice\.swf +# ||hulu.com/beacon/v3/playback? (easyprivacy.txt: 8149) +.hulu.com/beacon/v3/playback\? +# ||hulu.com/beacon/v3/error? (easyprivacy.txt: 8148) +.hulu.com/beacon/v3/error\? +# ||hulu.com/*&beaconevent$image,object-subrequest,~third-party (easyprivacy.txt: 8147) +.hulu.com/.*&beaconevent +# ||hulkshare.com/stats.php (easyprivacy.txt: 8146) +.hulkshare.com/stats\.php +# ||hulkshare.com/ajax/tracker.php (easyprivacy.txt: 8145) +.hulkshare.com/ajax/tracker\.php +# ||hugedomains.com/metrics/ (easyprivacy.txt: 8144) +.hugedomains.com/metrics/ +# ||huffingtonpost.com/traffic/ (easyprivacy.txt: 8143) +.huffingtonpost.com/traffic/ +# ||huffingtonpost.com/include/geopromo.php (easyprivacy.txt: 8142) +.huffingtonpost.com/include/geopromo\.php +# ||huffingtonpost.com/geopromo/ (easyprivacy.txt: 8141) +.huffingtonpost.com/geopromo/ +# ||hubpages.com/c/*.gif? (easyprivacy.txt: 8140) +.hubpages.com/c/.*\.gif\? +# ||hsn.com/code/pix.aspx (easyprivacy.txt: 8139) +.hsn.com/code/pix\.aspx +# ||hrblock.com/includes/pixel/ (easyprivacy.txt: 8138) +.hrblock.com/includes/pixel/ +# ||hp.com^*/bootstrap/metrics.js (easyprivacy.txt: 8137) +.hp.com/.*/bootstrap/metrics\.js +# ||howtogeek.com/public/stats.php (easyprivacy.txt: 8136) +.howtogeek.com/public/stats\.php +# ||howcast.com/images/h.gif (easyprivacy.txt: 8135) +.howcast.com/images/h\.gif +# ||hoverstock.com/boomerang? (easyprivacy.txt: 8134) +.hoverstock.com/boomerang\? +# ||houzz.com/js/log? (easyprivacy.txt: 8133) +.houzz.com/js/log\? +# ||hothardware.com/stats/ (easyprivacy.txt: 8132) +.hothardware.com/stats/ +# ||hotelplanner.com/TT.cfm (easyprivacy.txt: 8131) +.hotelplanner.com/TT\.cfm +# ||hostels.com/includes/thing.php? (easyprivacy.txt: 8130) +.hostels.com/includes/thing\.php\? +# ||hostels.com/includes/lb.php? (easyprivacy.txt: 8129) +.hostels.com/includes/lb\.php\? +# ||hostelbookers.com/track/request/ (easyprivacy.txt: 8128) +.hostelbookers.com/track/request/ +# ||hoseasons.co.uk/tracking/js.html? (easyprivacy.txt: 8127) +.hoseasons.co.uk/tracking/js\.html\? +# ||honda.ca/_Global/js/includes/tracker.js (easyprivacy.txt: 8126) +.honda.ca/_Global/js/includes/tracker\.js +# ||homesalez.com/itop/hits.php (easyprivacy.txt: 8125) +.homesalez.com/itop/hits\.php +# ||homeaway.com^*/tracking-home.html (easyprivacy.txt: 8124) +.homeaway.com/.*/tracking-home\.html +# ||holiday-rentals.co.uk^*/tracking-home.html (easyprivacy.txt: 8123) +.holiday-rentals.co.uk/.*/tracking-home\.html +# ||holiday-rentals.co.uk/thirdparty/tag (easyprivacy.txt: 8122) +.holiday-rentals.co.uk/thirdparty/tag +# ||hobsons.co.uk^*/WebBeacon.aspx? (easyprivacy.txt: 8121) +.hobsons.co.uk/.*/WebBeacon\.aspx\? +# ||hitcount.heraldm.com^ (easyprivacy.txt: 8120) +.hitcount.heraldm.com +# ||higheredjobs.com/ClickThru/ (easyprivacy.txt: 8119) +.higheredjobs.com/ClickThru/ +# ||hexus.net/trk/$image (easyprivacy.txt: 8118) +.hexus.net/trk/ +# ||herold.at/images/stathbd.gif? (easyprivacy.txt: 8117) +.herold.at/images/stathbd\.gif\? +# ||heroku.com/track.js (easyprivacy.txt: 8116) +.heroku.com/track\.js +# ||heraldtimesonline.com/js/tk.js (easyprivacy.txt: 8115) +.heraldtimesonline.com/js/tk\.js +# ||helium.com/javascripts/helium-beacons.js (easyprivacy.txt: 8114) +.helium.com/javascripts/helium-beacons\.js +# ||heapanalytics.com/h?$image (easyprivacy.txt: 8113) +.heapanalytics.com/h\? +# ||healthcarejobsite.com/Common/JavaScript/functions.tracking.js (easyprivacy.txt: 8112) +.healthcarejobsite.com/Common/JavaScript/functions\.tracking\.js +# ||hdzog.com/js/1308.js (easyprivacy.txt: 8111) +.hdzog.com/js/1308\.js +# ||hclips.com/js/0818.js (easyprivacy.txt: 8110) +.hclips.com/js/0818\.js +# ||haxx.ly/counter/ (easyprivacy.txt: 8109) +.haxx.ly/counter/ +# ||harvester.hbpl.co.uk^ (easyprivacy.txt: 8108) +.harvester.hbpl.co.uk +# ||harvester.eu.square-enix.com^ (easyprivacy.txt: 8107) +.harvester.eu.square-enix.com +# ||harrisbank.com^*/zig.js (easyprivacy.txt: 8106) +.harrisbank.com/.*/zig\.js +# ||hanksgalleries.com/stxt/counter.php? (easyprivacy.txt: 8105) +.hanksgalleries.com/stxt/counter\.php\? +# ||h.cliphunter.com^ (easyprivacy.txt: 8104) +.h.cliphunter.com +# ||groupon.com/tracking (easyprivacy.txt: 8103) +.groupon.com/tracking +# ||groupon.com/analytic/ (easyprivacy.txt: 8102) +.groupon.com/analytic/ +# ||gq-magazine.co.uk^*/LogPageView (easyprivacy.txt: 8101) +.gq-magazine.co.uk/.*/LogPageView +# ||gov.in/js/ga.js (easyprivacy.txt: 8100) +.gov.in/js/ga\.js +# ||gosanangelo.com/metrics/ (easyprivacy.txt: 8099) +.gosanangelo.com/metrics/ +# ||gorillanation.com^*/flowplayer.ganalytics.swf (easyprivacy.txt: 8098) +.gorillanation.com/.*/flowplayer\.ganalytics\.swf +# ||googlelabs.com/log/ (easyprivacy.txt: 8097) +.googlelabs.com/log/ +# ||google.com^*/viewerimpressions? (easyprivacy.txt: 8096) +.google.com/.*/viewerimpressions\? +# ||google.com^*/urchin_post.js (easyprivacy.txt: 8095) +.google.com/.*/urchin_post\.js +# ||google.com^*/log? (easyprivacy.txt: 8094) +.google.com/.*/log\? +# ||google.com^*/dlpageping? (easyprivacy.txt: 8093) +.google.com/.*/dlpageping\? +# ||google.com/uploadstats|$xmlhttprequest (easyprivacy.txt: 8092) +.google.com/uploadstats$ +# ||google.com/support/webmasters/api/metrics?$script (easyprivacy.txt: 8091) +.google.com/support/webmasters/api/metrics\? +# ||google.com/stream_204? (easyprivacy.txt: 8090) +.google.com/stream_204\? +# ||google.com/reader/logging? (easyprivacy.txt: 8089) +.google.com/reader/logging\? +# ||google.*/stats?frame= (easyprivacy.txt: 8088) +.google.*./(.*/)?stats\?frame= +# ||google.*/logxhraction? (easyprivacy.txt: 8087) +.google.*./(.*/)?logxhraction\? +# ||google.*/log204? (easyprivacy.txt: 8086) +.google.*./(.*/)?log204\? +# ||google.*/gwt/x/ts? (easyprivacy.txt: 8085) +.google.*./(.*/)?gwt/x/ts\? +# ||google.*/gen_204?$~xmlhttprequest (easyprivacy.txt: 8084) +.google.*./(.*/)?gen_204\? +# ||google.*/gen204? (easyprivacy.txt: 8083) +.google.*./(.*/)?gen204\? +# ||google.*/client_204? (easyprivacy.txt: 8082) +.google.*./(.*/)?client_204\? +# ||google.*/api/sclk? (easyprivacy.txt: 8081) +.google.*./(.*/)?api/sclk\? +# ||golfsmith.com/ci/ (easyprivacy.txt: 8080) +.golfsmith.com/ci/ +# ||godaddy.com/pageevents.aspx (easyprivacy.txt: 8079) +.godaddy.com/pageevents\.aspx +# ||godaddy.com/image.aspx? (easyprivacy.txt: 8078) +.godaddy.com/image\.aspx\? +# ||go.theregister.com^$image (easyprivacy.txt: 8077) +.go.theregister.com +# ||go.com^*/analytics.js (easyprivacy.txt: 8076) +.go.com/.*/analytics\.js +# ||go.com/stat/ (easyprivacy.txt: 8075) +.go.com/stat/ +# ||go.com/globalelements/utils/tracking (easyprivacy.txt: 8074) +.go.com/globalelements/utils/tracking +# ||gmonitor.aliimg.com^ (easyprivacy.txt: 8073) +.gmonitor.aliimg.com +# ||globester.com^*/track.js (easyprivacy.txt: 8072) +.globester.com/.*/track\.js +# ||globes.co.il/shared/s.ashx? (easyprivacy.txt: 8071) +.globes.co.il/shared/s\.ashx\? +# ||globes.co.il/ga.asp (easyprivacy.txt: 8070) +.globes.co.il/ga\.asp +# ||glean.pop6.com^ (easyprivacy.txt: 8069) +.glean.pop6.com +# ||glamourmagazine.co.uk^*/LogPageView (easyprivacy.txt: 8068) +.glamourmagazine.co.uk/.*/LogPageView +# ||gizmodo.com^*/trackers.html (easyprivacy.txt: 8067) +.gizmodo.com/.*/trackers\.html +# ||gizmodo.com/at.js.php (easyprivacy.txt: 8066) +.gizmodo.com/at\.js\.php +# ||github.com/_stats (easyprivacy.txt: 8065) +.github.com/_stats +# ||github.com/_private/browser/stats (easyprivacy.txt: 8064) +.github.com/_private/browser/stats +# ||gigya.com/js/gigyaGAIntegration.js (easyprivacy.txt: 8063) +.gigya.com/js/gigyaGAIntegration\.js +# ||giganews.com/images/rpp.gif (easyprivacy.txt: 8062) +.giganews.com/images/rpp\.gif +# ||giffgaff.com/r/?id= (easyprivacy.txt: 8061) +.giffgaff.com/r/\?id= +# ||geovisites.com^*/geouser.js (easyprivacy.txt: 8060) +.geovisites.com/.*/geouser\.js +# ||geoiplookup.wikimedia.org^ (easyprivacy.txt: 8059) +.geoiplookup.wikimedia.org +# ||geoip.viamichelin.com^ (easyprivacy.txt: 8058) +.geoip.viamichelin.com +# ||geoip.syracuse.com^ (easyprivacy.txt: 8057) +.geoip.syracuse.com +# ||geoip.silive.com^ (easyprivacy.txt: 8056) +.geoip.silive.com +# ||geoip.pennlive.com^ (easyprivacy.txt: 8055) +.geoip.pennlive.com +# ||geoip.oregonlive.com^ (easyprivacy.txt: 8054) +.geoip.oregonlive.com +# ||geoip.nola.com^ (easyprivacy.txt: 8053) +.geoip.nola.com +# ||geoip.nj.com^ (easyprivacy.txt: 8052) +.geoip.nj.com +# ||geoip.mlive.com^ (easyprivacy.txt: 8051) +.geoip.mlive.com +# ||geoip.masslive.com^ (easyprivacy.txt: 8050) +.geoip.masslive.com +# ||geoip.lehighvalleylive.com^ (easyprivacy.txt: 8049) +.geoip.lehighvalleylive.com +# ||geoip.gulflive.com^ (easyprivacy.txt: 8048) +.geoip.gulflive.com +# ||geoip.cleveland.com^ (easyprivacy.txt: 8047) +.geoip.cleveland.com +# ||geoip.al.com^ (easyprivacy.txt: 8046) +.geoip.al.com +# ||geoip-lookup.vice.com^ (easyprivacy.txt: 8045) +.geoip-lookup.vice.com +# ||geobeacon.ign.com^ (easyprivacy.txt: 8044) +.geobeacon.ign.com +# ||geo.yahoo.com^ (easyprivacy.txt: 8043) +.geo.yahoo.com +# ||geo.play.it^ (easyprivacy.txt: 8042) +.geo.play.it +# ||geo.perezhilton.com^ (easyprivacy.txt: 8041) +.geo.perezhilton.com +# ||geo.mozilla.org^ (easyprivacy.txt: 8040) +.geo.mozilla.org +# ||geo.metronews.ca^ (easyprivacy.txt: 8039) +.geo.metronews.ca +# ||geo.homepage-web.com^ (easyprivacy.txt: 8038) +.geo.homepage-web.com +# ||geo.hltv.org^ (easyprivacy.txt: 8037) +.geo.hltv.org +# ||general-search.com/stat (easyprivacy.txt: 8036) +.general-search.com/stat +# ||general-files.com/stat (easyprivacy.txt: 8035) +.general-files.com/stat +# ||geico.com/vs/track2.js? (easyprivacy.txt: 8034) +.geico.com/vs/track2\.js\? +# ||geek.com/js/zdgurgle/ (easyprivacy.txt: 8033) +.geek.com/js/zdgurgle/ +# ||gawker.com^*/trackers.html (easyprivacy.txt: 8032) +.gawker.com/.*/trackers\.html +# ||gawker.com/at.js.php (easyprivacy.txt: 8031) +.gawker.com/at\.js\.php +# ||gawker.com/?op=hyperion_useragent_data (easyprivacy.txt: 8030) +.gawker.com/\?op=hyperion_useragent_data +# ||gardenweb.com^*/iv_header.js (easyprivacy.txt: 8029) +.gardenweb.com/.*/iv_header\.js +# ||gardenweb.com^*/iv_footer.js (easyprivacy.txt: 8028) +.gardenweb.com/.*/iv_footer\.js +# ||gamezone.com/site/linktracker.js (easyprivacy.txt: 8027) +.gamezone.com/site/linktracker\.js +# ||gamezone.com/?act= (easyprivacy.txt: 8026) +.gamezone.com/\?act= +# ||gametrailers.com/neo/stats/ (easyprivacy.txt: 8025) +.gametrailers.com/neo/stats/ +# ||gamespot.com/cgi/chkpt.php? (easyprivacy.txt: 8024) +.gamespot.com/cgi/chkpt\.php\? +# ||gamesgames.com/WebAnalysis/ (easyprivacy.txt: 8023) +.gamesgames.com/WebAnalysis/ +# ||gamerdeals.net/aggbug.aspx (easyprivacy.txt: 8022) +.gamerdeals.net/aggbug\.aspx +# ||gamefront.com/wp-content/plugins/tracker/ (easyprivacy.txt: 8021) +.gamefront.com/wp-content/plugins/tracker/ +# ||gallup.wn.com/1x1.gif (easyprivacy.txt: 8020) +.gallup.wn.com/1x1\.gif +# ||galleries.bz/track/ (easyprivacy.txt: 8019) +.galleries.bz/track/ +# ||gaiaonline.com/internal/mkt_t.php? (easyprivacy.txt: 8018) +.gaiaonline.com/internal/mkt_t\.php\? +# ||ga.canoe.ca^ (easyprivacy.txt: 8017) +.ga.canoe.ca +# ||g2a-com.newsletter.com.pl^$image,third-party (easyprivacy.txt: 8016) +.g2a-com.newsletter.com.pl +# ||g.techweekeurope.co.uk^ (easyprivacy.txt: 8015) +.g.techweekeurope.co.uk +# ||g.msn.com^ (easyprivacy.txt: 8014) +.g.msn.com +# ||fwmrm.net^*/AnalyticsExtension. (easyprivacy.txt: 8013) +.fwmrm.net/.*/AnalyticsExtension\. +# ||furk.net/counter.yadro.ru/ (easyprivacy.txt: 8012) +.furk.net/counter\.yadro\.ru/ +# ||funbrain.com/a2.gif (easyprivacy.txt: 8011) +.funbrain.com/a2\.gif +# ||fujifilm.com/js/shared/analyzer.js (easyprivacy.txt: 8010) +.fujifilm.com/js/shared/analyzer\.js +# ||ft.com^*/ft-tracking.js (easyprivacy.txt: 8009) +.ft.com/.*/ft-tracking\.js +# ||ft.com/conker/service/pageview? (easyprivacy.txt: 8008) +.ft.com/conker/service/pageview\? +# ||frstatic.net^*/tracking.js (easyprivacy.txt: 8007) +.frstatic.net/.*/tracking\.js +# ||frontdoor.com/_track? (easyprivacy.txt: 8006) +.frontdoor.com/_track\? +# ||frog.wix.com^ (easyprivacy.txt: 8005) +.frog.wix.com +# ||fresh.techdirt.com^ (easyprivacy.txt: 8004) +.fresh.techdirt.com +# ||freeones.com^*/cd/?cookies= (easyprivacy.txt: 8003) +.freeones.com/.*/cd/\?cookies= +# ||freeones.com/cd/?cookies= (easyprivacy.txt: 8002) +.freeones.com/cd/\?cookies= +# ||freemeteo.com^*/searchlog.asp? (easyprivacy.txt: 8001) +.freemeteo.com/.*/searchlog\.asp\? +# ||freemeteo.com^*/log.asp? (easyprivacy.txt: 8000) +.freemeteo.com/.*/log\.asp\? +# ||freelotto.com/offer.asp?offer=$image (easyprivacy.txt: 7999) +.freelotto.com/offer\.asp\?offer= +# ||freedownloadscenter.com^*/empty.gif? (easyprivacy.txt: 7998) +.freedownloadscenter.com/.*/empty\.gif\? +# ||freecause.com^*.png? (easyprivacy.txt: 7997) +.freecause.com/.*\.png\? +# ||freebiesms.com/tracker.aspx? (easyprivacy.txt: 7996) +.freebiesms.com/tracker\.aspx\? +# ||freebase.com/log? (easyprivacy.txt: 7995) +.freebase.com/log\? +# ||freean.us/track/ (easyprivacy.txt: 7994) +.freean.us/track/ +# ||free-tv-video-online.me/resources/js/counter.js (easyprivacy.txt: 7993) +.free-tv-video-online.me/resources/js/counter\.js +# ||free-tv-video-online.me/imp.php? (easyprivacy.txt: 7992) +.free-tv-video-online.me/imp\.php\? +# ||freaksofcock.com/track/ (easyprivacy.txt: 7991) +.freaksofcock.com/track/ +# ||foxtel.com.au/cms/fragments/corp_analytics/ (easyprivacy.txt: 7990) +.foxtel.com.au/cms/fragments/corp_analytics/ +# ||foxadd.com/addon/upixel/ (easyprivacy.txt: 7989) +.foxadd.com/addon/upixel/ +# ||foursquare.com^*/wtrack? (easyprivacy.txt: 7988) +.foursquare.com/.*/wtrack\? +# ||foursquare.com^*/logger? (easyprivacy.txt: 7987) +.foursquare.com/.*/logger\? +# ||fotothing.com/space.gif? (easyprivacy.txt: 7986) +.fotothing.com/space\.gif\? +# ||fostersbeer.com/js/tracking.js (easyprivacy.txt: 7985) +.fostersbeer.com/js/tracking\.js +# ||ford.com/ngtemplates/ngassets/ford/general/scripts/js/galleryMetrics.js (easyprivacy.txt: 7984) +.ford.com/ngtemplates/ngassets/ford/general/scripts/js/galleryMetrics\.js +# ||ford.com/ngtemplates/ngassets/com/forddirect/ng/newMetrics.js (easyprivacy.txt: 7983) +.ford.com/ngtemplates/ngassets/com/forddirect/ng/newMetrics\.js +# ||forbes.com^*/track.php? (easyprivacy.txt: 7982) +.forbes.com/.*/track\.php\? +# ||forbes.com/fps/cookie_backup.php? (easyprivacy.txt: 7981) +.forbes.com/fps/cookie_backup\.php\? +# ||fool.com/tracking/ (easyprivacy.txt: 7980) +.fool.com/tracking/ +# ||foodnavigator.com/tracker/ (easyprivacy.txt: 7979) +.foodnavigator.com/tracker/ +# ||foodcouture.net/public_html/ra/script.php$script (easyprivacy.txt: 7978) +.foodcouture.net/public_html/ra/script\.php +# ||fncstatic.com/static/all/js/geo.js (easyprivacy.txt: 7977) +.fncstatic.com/static/all/js/geo\.js +# ||flyjazz.ca/ow_ga.js (easyprivacy.txt: 7976) +.flyjazz.ca/ow_ga\.js +# ||flybmi.com/livetrack/ (easyprivacy.txt: 7975) +.flybmi.com/livetrack/ +# ||fls-na.amazon.ca^ (easyprivacy.txt: 7974) +.fls-na.amazon.ca +# ||fls-eu.amazon.co.uk^ (easyprivacy.txt: 7973) +.fls-eu.amazon.co.uk +# ||flixster.com^*/pixels? (easyprivacy.txt: 7972) +.flixster.com/.*/pixels\? +# ||flixist.com/img2.phtml (easyprivacy.txt: 7971) +.flixist.com/img2\.phtml +# ||flipkart.com/bbeacon.php? (easyprivacy.txt: 7970) +.flipkart.com/bbeacon\.php\? +# ||flipkart.com/ajaxlog/visitIdlog? (easyprivacy.txt: 7969) +.flipkart.com/ajaxlog/visitIdlog\? +# ||flipboard.com/usage? (easyprivacy.txt: 7968) +.flipboard.com/usage\? +# ||fling.com/zeftour/t_i.php? (easyprivacy.txt: 7967) +.fling.com/zeftour/t_i\.php\? +# ||flickr.com/beacon_page_timings.gne (easyprivacy.txt: 7966) +.flickr.com/beacon_page_timings\.gne +# ||flagfox.net/js/analytics.js (easyprivacy.txt: 7965) +.flagfox.net/js/analytics\.js +# ||financialstandardnews.com^*/webstats/ (easyprivacy.txt: 7964) +.financialstandardnews.com/.*/webstats/ +# ||financeglobe.com/Visit/ (easyprivacy.txt: 7963) +.financeglobe.com/Visit/ +# ||filmlinks4u.net/twatch/jslogger.php (easyprivacy.txt: 7962) +.filmlinks4u.net/twatch/jslogger\.php +# ||fightforthefuture.org/wf/open? (easyprivacy.txt: 7961) +.fightforthefuture.org/wf/open\? +# ||felitb.rightinthebox.com^ (easyprivacy.txt: 7960) +.felitb.rightinthebox.com +# ||feedsportal.com/c/ (easyprivacy.txt: 7959) +.feedsportal.com/c/ +# ||feeds.timesonline.co.uk^*/mf.gif (easyprivacy.txt: 7958) +.feeds.timesonline.co.uk/.*/mf\.gif +# ||feeds.feedblitz.com/~/i/ (easyprivacy.txt: 7957) +.feeds.feedblitz.com/~/i/ +# ||feedburner.com/~r/ (easyprivacy.txt: 7956) +.feedburner.com/~r/ +# ||fccbrea.org/javascript/stats.js (easyprivacy.txt: 7955) +.fccbrea.org/javascript/stats\.js +# ||fc2.com/counter_img.php? (easyprivacy.txt: 7954) +.fc2.com/counter_img\.php\? +# ||fc2.com/counter.php? (easyprivacy.txt: 7953) +.fc2.com/counter\.php\? +# ||fc2.com/analyze.js (easyprivacy.txt: 7952) +.fc2.com/analyze\.js +# ||fc2.com/ana2/ (easyprivacy.txt: 7951) +.fc2.com/ana2/ +# ||fc2.com/ana/ (easyprivacy.txt: 7950) +.fc2.com/ana/ +# ||favicon.co.uk/stat/ (easyprivacy.txt: 7949) +.favicon.co.uk/stat/ +# ||fastexercise.com/logging.js (easyprivacy.txt: 7948) +.fastexercise.com/logging\.js +# ||fast.forbes.com^ (easyprivacy.txt: 7947) +.fast.forbes.com +# ||farsnews.com/stcs.js.aspx? (easyprivacy.txt: 7946) +.farsnews.com/stcs\.js\.aspx\? +# ||farmville.com/trackaction.php? (easyprivacy.txt: 7945) +.farmville.com/trackaction\.php\? +# ||fark.com/cgi/ll.pl? (easyprivacy.txt: 7944) +.fark.com/cgi/ll\.pl\? +# ||farecompare.com/trackstar/ (easyprivacy.txt: 7943) +.farecompare.com/trackstar/ +# ||farecompare.com/resources/ga/ga.js (easyprivacy.txt: 7942) +.farecompare.com/resources/ga/ga\.js +# ||fantom-xp.org^*/toprefs.php? (easyprivacy.txt: 7941) +.fantom-xp.org/.*/toprefs\.php\? +# ||fantasticfiction.co.uk/cgi-bin/checker.cgi (easyprivacy.txt: 7940) +.fantasticfiction.co.uk/cgi-bin/checker\.cgi +# ||fanhow.com/script/tracker.js (easyprivacy.txt: 7939) +.fanhow.com/script/tracker\.js +# ||fanfiction.net/eye/ (easyprivacy.txt: 7938) +.fanfiction.net/eye/ +# ||facebook.com^*/impression_logging/ (easyprivacy.txt: 7937) +.facebook.com/.*/impression_logging/ +# ||facebook.com/search/web/instrumentation.php? (easyprivacy.txt: 7936) +.facebook.com/search/web/instrumentation\.php\? +# ||facebook.com/friends/requests/log_impressions (easyprivacy.txt: 7935) +.facebook.com/friends/requests/log_impressions +# ||facebook.com/ct.php (easyprivacy.txt: 7934) +.facebook.com/ct\.php +# ||facebook.com/ajax/*logging (easyprivacy.txt: 7933) +.facebook.com/ajax/.*logging +# ||facebook.com/ajax/*/log.php (easyprivacy.txt: 7932) +.facebook.com/ajax/.*/log\.php +# ||f.staticlp.com^ (easyprivacy.txt: 7931) +.f.staticlp.com +# ||f-secure.com^*/wtsdc.js (easyprivacy.txt: 7930) +.f-secure.com/.*/wtsdc\.js +# ||ezinearticles.com/encrypt/blank.gif? (easyprivacy.txt: 7929) +.ezinearticles.com/encrypt/blank\.gif\? +# ||ezinearticles.com/blank/ (easyprivacy.txt: 7928) +.ezinearticles.com/blank/ +# ||ez.no/statjs/ (easyprivacy.txt: 7927) +.ez.no/statjs/ +# ||extremetech.com^*/ga.js (easyprivacy.txt: 7926) +.extremetech.com/.*/ga\.js +# ||extremetech.com/sac/mostclicked/$script (easyprivacy.txt: 7925) +.extremetech.com/sac/mostclicked/ +# ||experts-exchange.com/pageloaded.jsp? (easyprivacy.txt: 7924) +.experts-exchange.com/pageloaded\.jsp\? +# ||experiandirect.com/javascripts/tracking.js (easyprivacy.txt: 7923) +.experiandirect.com/javascripts/tracking\.js +# ||expdb2.msn.com^ (easyprivacy.txt: 7922) +.expdb2.msn.com +# ||expbl2ro.xbox.com^ (easyprivacy.txt: 7921) +.expbl2ro.xbox.com +# ||exelate.com/pixel? (easyprivacy.txt: 7920) +.exelate.com/pixel\? +# ||excite.com/tr.js (easyprivacy.txt: 7919) +.excite.com/tr\.js +# ||excite.com/__kl.gif? (easyprivacy.txt: 7918) +.excite.com/__kl\.gif\? +# ||exchangeandmart.co.uk/js/ga.js (easyprivacy.txt: 7917) +.exchangeandmart.co.uk/js/ga\.js +# ||examiner.com/sites/all/modules/custom/ex_stats/ (easyprivacy.txt: 7916) +.examiner.com/sites/all/modules/custom/ex_stats/ +# ||exalead.com/search/pixel-ref/ (easyprivacy.txt: 7915) +.exalead.com/search/pixel-ref/ +# ||ex.ua/counter/ (easyprivacy.txt: 7914) +.ex.ua/counter/ +# ||eweek.com/hqxapi/ (easyprivacy.txt: 7913) +.eweek.com/hqxapi/ +# ||evisit.exeter.ac.uk^ (easyprivacy.txt: 7912) +.evisit.exeter.ac.uk +# ||everythinggirl.com/assets/tracker/ (easyprivacy.txt: 7911) +.everythinggirl.com/assets/tracker/ +# ||eventtracker.elitedaily.com^ (easyprivacy.txt: 7910) +.eventtracker.elitedaily.com +# ||eventlogger.soundcloud.com^ (easyprivacy.txt: 7909) +.eventlogger.soundcloud.com +# ||euroleague.tv^*/tracking.js (easyprivacy.txt: 7908) +.euroleague.tv/.*/tracking\.js +# ||eulerian.splendia.com/ea.js (easyprivacy.txt: 7907) +.eulerian.splendia.com/ea\.js +# ||etui.fs.ml.com^ (easyprivacy.txt: 7906) +.etui.fs.ml.com +# ||etonline.com/media/*/ctvconviva.swf (easyprivacy.txt: 7905) +.etonline.com/media/.*/ctvconviva\.swf +# ||et.nytimes.com^ (easyprivacy.txt: 7904) +.et.nytimes.com +# ||esure.com/cgi-bin/rr.cgi/images/blank.gif? (easyprivacy.txt: 7903) +.esure.com/cgi-bin/rr\.cgi/images/blank\.gif\? +# ||esupport.com/ea/analyze.js (easyprivacy.txt: 7902) +.esupport.com/ea/analyze\.js +# ||espncdn.com^*.tracking.js (easyprivacy.txt: 7901) +.espncdn.com/.*\.tracking\.js +# ||es.puritan.com^ (easyprivacy.txt: 7900) +.es.puritan.com +# ||eporner.com/stats/ (easyprivacy.txt: 7899) +.eporner.com/stats/ +# ||epinions.com/js/triggerParams.js (easyprivacy.txt: 7898) +.epinions.com/js/triggerParams\.js +# ||epinions.com/js/stdLauncher.js (easyprivacy.txt: 7897) +.epinions.com/js/stdLauncher\.js +# ||entry-stats.huffingtonpost.com^ (easyprivacy.txt: 7896) +.entry-stats.huffingtonpost.com +# ||entensity.net/pages/c.htm (easyprivacy.txt: 7895) +.entensity.net/pages/c\.htm +# ||enlightenment.secureshoppingbasket.com^ (easyprivacy.txt: 7894) +.enlightenment.secureshoppingbasket.com +# ||engineeringnews.co.za/count.php? (easyprivacy.txt: 7893) +.engineeringnews.co.za/count\.php\? +# ||engadget.com/traffic/? (easyprivacy.txt: 7892) +.engadget.com/traffic/\? +# ||encrypted.google.*/url?$image (easyprivacy.txt: 7891) +.encrypted.google.*./(.*/)?url\? +# ||encrypted.google.*/imghover?$image (easyprivacy.txt: 7890) +.encrypted.google.*./(.*/)?imghover\? +# ||encrypted.google.*/imgevent?$script (easyprivacy.txt: 7889) +.encrypted.google.*./(.*/)?imgevent\? +# ||emv3.com/HO?$image (easyprivacy.txt: 7888) +.emv3.com/HO\? +# ||emv2.com/P? (easyprivacy.txt: 7887) +.emv2.com/P\? +# ||emv2.com/HO? (easyprivacy.txt: 7886) +.emv2.com/HO\? +# ||emarketing.rmauctions.com^ (easyprivacy.txt: 7885) +.emarketing.rmauctions.com +# ||email.aol.com/cgi-bin*/flosensing? (easyprivacy.txt: 7884) +.email.aol.com/cgi-bin.*/flosensing\? +# ||email-wildstar-online.com/1x1.dyn? (easyprivacy.txt: 7883) +.email-wildstar-online.com/1x1\.dyn\? +# ||email-tickets.com/dt?e=PageView (easyprivacy.txt: 7882) +.email-tickets.com/dt\?e=PageView +# ||elsevier.com/pageReport? (easyprivacy.txt: 7881) +.elsevier.com/pageReport\? +# ||elance.com^*/emc.php? (easyprivacy.txt: 7880) +.elance.com/.*/emc\.php\? +# ||ehow.com/services/jslogging/log/? (easyprivacy.txt: 7879) +.ehow.com/services/jslogging/log/\? +# ||egg.com/rum/data.gif? (easyprivacy.txt: 7878) +.egg.com/rum/data\.gif\? +# ||efukt.com^*?hub= (easyprivacy.txt: 7877) +.efukt.com/.*\?hub= +# ||edweek.org/js/sc.js (easyprivacy.txt: 7876) +.edweek.org/js/sc\.js +# ||edw.edmunds.com^ (easyprivacy.txt: 7875) +.edw.edmunds.com +# ||edvantage.com.sg/site/servlet/tracker.jsp (easyprivacy.txt: 7874) +.edvantage.com.sg/site/servlet/tracker\.jsp +# ||edutrek.com/wgsltrk.php?$image (easyprivacy.txt: 7873) +.edutrek.com/wgsltrk\.php\? +# ||ednetz.de/api/public/socialmediacounter. (easyprivacy.txt: 7872) +.ednetz.de/api/public/socialmediacounter\. +# ||edmunds.com^*/edw1x1.gif (easyprivacy.txt: 7871) +.edmunds.com/.*/edw1x1\.gif +# ||edmunds.com^*/dart1x1.gif (easyprivacy.txt: 7870) +.edmunds.com/.*/dart1x1\.gif +# ||edmunds.com/api/logTime? (easyprivacy.txt: 7869) +.edmunds.com/api/logTime\? +# ||edgecastcdn.net^*/pixel_1.png? (easyprivacy.txt: 7868) +.edgecastcdn.net/.*/pixel_1\.png\? +# ||ectnews.com/shared/missing.gif? (easyprivacy.txt: 7866) +.ectnews.com/shared/missing\.gif\? +# ||ec2-prod-tracker.babelgum.com^ (easyprivacy.txt: 7865) +.ec2-prod-tracker.babelgum.com +# ||ebayobjects.com/*;dc_pixel_url=$image (easyprivacy.txt: 7864) +.ebayobjects.com/.*;dc_pixel_url= +# ||ebay.com/op/t.do?event (easyprivacy.txt: 7863) +.ebay.com/op/t\.do\?event +# ||ebay-us.com/fp/ (easyprivacy.txt: 7862) +.ebay-us.com/fp/ +# ||easy2.com^*/logging/ (easyprivacy.txt: 7861) +.easy2.com/.*/logging/ +# ||eafyfsuh.net/track/ (easyprivacy.txt: 7860) +.eafyfsuh.net/track/ +# ||ea.pixmania. (easyprivacy.txt: 7859) +.ea.pixmania.*. +# ||dyo.gs/track/ (easyprivacy.txt: 7858) +.dyo.gs/track/ +# ||dx.com/?utm_rid= (easyprivacy.txt: 7857) +.dx.com/\?utm_rid= +# ||dw.de^*/run.dw? (easyprivacy.txt: 7856) +.dw.de/.*/run\.dw\? +# ||dw.cnet.com^ (easyprivacy.txt: 7855) +.dw.cnet.com +# ||dvdempire.com/include/user/empty2.asp? (easyprivacy.txt: 7854) +.dvdempire.com/include/user/empty2\.asp\? +# ||dvdempire.com/images/empty2.asp (easyprivacy.txt: 7853) +.dvdempire.com/images/empty2\.asp +# ||dump8.com/js/stat.php (easyprivacy.txt: 7852) +.dump8.com/js/stat\.php +# ||dsm.com^*/searchenginetracking.js (easyprivacy.txt: 7851) +.dsm.com/.*/searchenginetracking\.js +# ||dslreports.com/tp? (easyprivacy.txt: 7850) +.dslreports.com/tp\? +# ||drpeterjones.com/stats/ (easyprivacy.txt: 7849) +.drpeterjones.com/stats/ +# ||dropbox.com/web_timing_log (easyprivacy.txt: 7848) +.dropbox.com/web_timing_log +# ||dropbox.com/el/?b=open: (easyprivacy.txt: 7847) +.dropbox.com/el/\?b=open: +# ||dominos.co.uk^*/universal.html? (easyprivacy.txt: 7846) +.dominos.co.uk/.*/universal\.html\? +# ||domaintools.com/tracker.php (easyprivacy.txt: 7845) +.domaintools.com/tracker\.php +# ||domaintools.com/buffer.pgif? (easyprivacy.txt: 7844) +.domaintools.com/buffer\.pgif\? +# ||domainit.com/scripts/track.js (easyprivacy.txt: 7843) +.domainit.com/scripts/track\.js +# ||dogpile.com/__kl.gif (easyprivacy.txt: 7842) +.dogpile.com/__kl\.gif +# ||docstoc.com/metrics/ (easyprivacy.txt: 7841) +.docstoc.com/metrics/ +# ||docs.google.com/stat|$xmlhttprequest (easyprivacy.txt: 7840) +.docs.google.com/stat$ +# ||dmtrk.com/*/o.gif (easyprivacy.txt: 7839) +.dmtrk.com/.*/o\.gif +# ||dmtracking2.alibaba.com^ (easyprivacy.txt: 7838) +.dmtracking2.alibaba.com +# ||dmeserv.newsinc.com^ (easyprivacy.txt: 7837) +.dmeserv.newsinc.com +# ||djtunes.com^*&__utma= (easyprivacy.txt: 7835) +.djtunes.com/.*&__utma= +# ||divxden.com^*/tracker.js (easyprivacy.txt: 7834) +.divxden.com/.*/tracker\.js +# ||displaymate.com/cgi-bin/stat/ (easyprivacy.txt: 7833) +.displaymate.com/cgi-bin/stat/ +# ||dippic.com/cgi-bin/index_dl.cgi? (easyprivacy.txt: 7832) +.dippic.com/cgi-bin/index_dl\.cgi\? +# ||digitalspy.co.uk/gip1.php (easyprivacy.txt: 7831) +.digitalspy.co.uk/gip1\.php +# ||digitalriver.com^*/globaltracking (easyprivacy.txt: 7830) +.digitalriver.com/.*/globaltracking +# ||digitalchocolate.com/event/track? (easyprivacy.txt: 7829) +.digitalchocolate.com/event/track\? +# ||diet.rodale.com^ (easyprivacy.txt: 7828) +.diet.rodale.com +# ||dictionary.com/track/ (easyprivacy.txt: 7827) +.dictionary.com/track/ +# ||diag.doba.com^ (easyprivacy.txt: 7826) +.diag.doba.com +# ||dfiles.ru//view.gif? (easyprivacy.txt: 7825) +# ||dfiles.eu//view.gif? (easyprivacy.txt: 7824) +# ||destructoid.com/img2.phtml? (easyprivacy.txt: 7823) +.destructoid.com/img2\.phtml\? +# ||despegar.com/t? (easyprivacy.txt: 7822) +.despegar.com/t\? +# ||designtaxi.com/tracker.php (easyprivacy.txt: 7821) +.designtaxi.com/tracker\.php +# ||derkeiler.com/gam/tag.js (easyprivacy.txt: 7820) +.derkeiler.com/gam/tag\.js +# ||depositfiles.com/view.gif? (easyprivacy.txt: 7819) +.depositfiles.com/view\.gif\? +# ||depositfiles.com//view.gif? (easyprivacy.txt: 7818) +# ||dell.com/metrics/ (easyprivacy.txt: 7817) +.dell.com/metrics/ +# ||dell.com/images/global/js/s_metrics*.js (easyprivacy.txt: 7816) +.dell.com/images/global/js/s_metrics.*\.js +# ||debtconsolidationcare.com/affiliate/tracker/ (easyprivacy.txt: 7815) +.debtconsolidationcare.com/affiliate/tracker/ +# ||dealnews.com/lw/ul.php? (easyprivacy.txt: 7814) +.dealnews.com/lw/ul\.php\? +# ||deadspin.com^*/trackers.html (easyprivacy.txt: 7813) +.deadspin.com/.*/trackers\.html +# ||deadspin.com/at.js.php (easyprivacy.txt: 7812) +.deadspin.com/at\.js\.php +# ||dcs.maxthon.com^ (easyprivacy.txt: 7811) +.dcs.maxthon.com +# ||dcs.mattel.com^ (easyprivacy.txt: 7810) +.dcs.mattel.com +# ||db.com^*/stats.js? (easyprivacy.txt: 7809) +.db.com/.*/stats\.js\? +# ||daum.net^*/dwi.js (easyprivacy.txt: 7808) +.daum.net/.*/dwi\.js +# ||datehookup.com/strk/dateadvertreg? (easyprivacy.txt: 7807) +.datehookup.com/strk/dateadvertreg\? +# ||datacollector.coin.scribol.com^ (easyprivacy.txt: 7806) +.datacollector.coin.scribol.com +# ||data.ryanair.com^ (easyprivacy.txt: 7805) +.data.ryanair.com +# ||data.ninemsn.com.au/*GetAdCalls (easyprivacy.txt: 7804) +.data.ninemsn.com.au/.*GetAdCalls +# ||dailymotion.com^*/tag.gif? (easyprivacy.txt: 7803) +.dailymotion.com/.*/tag\.gif\? +# ||dailymotion.com/track/ (easyprivacy.txt: 7802) +.dailymotion.com/track/ +# ||dailymotion.com/track- (easyprivacy.txt: 7801) +.dailymotion.com/track- +# ||dailymotion.com/logger/$object-subrequest (easyprivacy.txt: 7800) +.dailymotion.com/logger/ +# ||dailymail.co.uk/tracking/ (easyprivacy.txt: 7799) +.dailymail.co.uk/tracking/ +# ||dailyfinance.com/tmfstatic/vs.gif? (easyprivacy.txt: 7798) +.dailyfinance.com/tmfstatic/vs\.gif\? +# ||dabs.com/AbacusTest/clientinfo_bk.gif (easyprivacy.txt: 7797) +.dabs.com/AbacusTest/clientinfo_bk\.gif +# ||da.virginmedia.com^ (easyprivacy.txt: 7796) +.da.virginmedia.com +# ||cyberlink.com/analytics/ (easyprivacy.txt: 7795) +.cyberlink.com/analytics/ +# ||cybercoders.com/js/tracker.js (easyprivacy.txt: 7794) +.cybercoders.com/js/tracker\.js +# ||cyanogenmod.com/tracking.js (easyprivacy.txt: 7793) +.cyanogenmod.com/tracking\.js +# ||customerservicejobs.com/common/track/ (easyprivacy.txt: 7792) +.customerservicejobs.com/common/track/ +# ||current.com/tracking.htm? (easyprivacy.txt: 7791) +.current.com/tracking\.htm\? +# ||ctscdn.com/content/tracking- (easyprivacy.txt: 7790) +.ctscdn.com/content/tracking- +# ||ct.cnet.com/opens? (easyprivacy.txt: 7789) +.ct.cnet.com/opens\? +# ||ct.buzzfeed.com^ (easyprivacy.txt: 7788) +.ct.buzzfeed.com +# ||crunchyroll.com^*/breadcrumb.js (easyprivacy.txt: 7787) +.crunchyroll.com/.*/breadcrumb\.js +# ||crunchyroll.com/tracker (easyprivacy.txt: 7786) +.crunchyroll.com/tracker +# ||crunchsports.com/tracking_fetchinfo.aspx? (easyprivacy.txt: 7785) +.crunchsports.com/tracking_fetchinfo\.aspx\? +# ||crowdignite.com/img/l.gif (easyprivacy.txt: 7784) +.crowdignite.com/img/l\.gif +# ||creditcards.com/sb.php? (easyprivacy.txt: 7783) +.creditcards.com/sb\.php\? +# ||creditcards.com/actions/page_view.php? (easyprivacy.txt: 7782) +.creditcards.com/actions/page_view\.php\? +# ||creativecommons.org^*/triples? (easyprivacy.txt: 7781) +.creativecommons.org/.*/triples\? +# ||creativecommons.org/elog/ (easyprivacy.txt: 7780) +.creativecommons.org/elog/ +# ||crackle.com/tracking/ (easyprivacy.txt: 7779) +.crackle.com/tracking/ +# ||cracked.com/tracking/ (easyprivacy.txt: 7778) +.cracked.com/tracking/ +# ||coveritlive.com/1/sts/view? (easyprivacy.txt: 7777) +.coveritlive.com/1/sts/view\? +# ||coursera.org/wf/open? (easyprivacy.txt: 7776) +.coursera.org/wf/open\? +# ||courierpress.com/metrics/ (easyprivacy.txt: 7775) +.courierpress.com/metrics/ +# ||coupons.com/pmm.asp (easyprivacy.txt: 7774) +.coupons.com/pmm\.asp +# ||counter.theconversation.edu.au^ (easyprivacy.txt: 7773) +.counter.theconversation.edu.au +# ||counter.sina.com.cn^ (easyprivacy.txt: 7772) +.counter.sina.com.cn +# ||counter.promodeejay.net^ (easyprivacy.txt: 7771) +.counter.promodeejay.net +# ||counter.entertainmentwise.com^ (easyprivacy.txt: 7770) +.counter.entertainmentwise.com +# ||count.rin.ru^ (easyprivacy.txt: 7769) +.count.rin.ru +# ||count.prx.org^ (easyprivacy.txt: 7768) +.count.prx.org +# ||count.livetv.sx^ (easyprivacy.txt: 7767) +.count.livetv.sx +# ||count.livetv.ru^ (easyprivacy.txt: 7766) +.count.livetv.ru +# ||cosmopolitan.co.za/rest/track/ (easyprivacy.txt: 7765) +.cosmopolitan.co.za/rest/track/ +# ||cooliris.com/shared/stats/ (easyprivacy.txt: 7764) +.cooliris.com/shared/stats/ +# ||coolertracks.emailroi.com^ (easyprivacy.txt: 7763) +.coolertracks.emailroi.com +# ||cooksunited.co.uk^*/pixel/ (easyprivacy.txt: 7762) +.cooksunited.co.uk/.*/pixel/ +# ||cooksunited.co.uk/counter*.php? (easyprivacy.txt: 7761) +.cooksunited.co.uk/counter.*\.php\? +# ||consumerreports.org^*/js/conversion.js (easyprivacy.txt: 7760) +.consumerreports.org/.*/js/conversion\.js +# ||confirm-referer.glrsales.com^ (easyprivacy.txt: 7759) +.confirm-referer.glrsales.com +# ||computing.co.uk^*/webtrends.js (easyprivacy.txt: 7758) +.computing.co.uk/.*/webtrends\.js +# ||computerarts.co.uk/*.php?cmd=site-stats (easyprivacy.txt: 7757) +.computerarts.co.uk/.*\.php\?cmd=site-stats +# ||comms-web-tracking.uswitchinternal.com^ (easyprivacy.txt: 7756) +.comms-web-tracking.uswitchinternal.com +# ||commercialappeal.com/metrics/ (easyprivacy.txt: 7755) +.commercialappeal.com/metrics/ +# ||commentarymagazine.com^*/track.asp? (easyprivacy.txt: 7754) +.commentarymagazine.com/.*/track\.asp\? +# ||collegehumor.com/track.php? (easyprivacy.txt: 7753) +.collegehumor.com/track\.php\? +# ||collector.trendmd.com^ (easyprivacy.txt: 7752) +.collector.trendmd.com +# ||collector.tescocompare.com^ (easyprivacy.txt: 7751) +.collector.tescocompare.com +# ||collector.statowl.com^ (easyprivacy.txt: 7750) +.collector.statowl.com +# ||collector.shopstream.co^ (easyprivacy.txt: 7749) +.collector.shopstream.co +# ||collector.kstptv5.com^ (easyprivacy.txt: 7748) +.collector.kstptv5.com +# ||collector.ksax.com^ (easyprivacy.txt: 7747) +.collector.ksax.com +# ||collector.githubapp.com^ (easyprivacy.txt: 7746) +.collector.githubapp.com +# ||collector-cdn.github.com^ (easyprivacy.txt: 7745) +.collector-cdn.github.com +# ||collection.theaa.com^ (easyprivacy.txt: 7744) +.collection.theaa.com +# ||collect2.sas.com^ (easyprivacy.txt: 7743) +.collect2.sas.com +# ||collect.sas.com^ (easyprivacy.txt: 7742) +.collect.sas.com +# ||collarity.com/ucs/tracker.js (easyprivacy.txt: 7741) +.collarity.com/ucs/tracker\.js +# ||codeweblog.com/js/count.js (easyprivacy.txt: 7740) +.codeweblog.com/js/count\.js +# ||codecguide.com/stats.js (easyprivacy.txt: 7739) +.codecguide.com/stats\.js +# ||cnt.vivatube.com^ (easyprivacy.txt: 7738) +.cnt.vivatube.com +# ||cnt.nuvid.com^ (easyprivacy.txt: 7737) +.cnt.nuvid.com +# ||cnt.nicemix.com^ (easyprivacy.txt: 7736) +.cnt.nicemix.com +# ||cmstrendslog.timesnow.tv^ (easyprivacy.txt: 7735) +.cmstrendslog.timesnow.tv +# ||cmstrendslog.indiatimes.com^ (easyprivacy.txt: 7734) +.cmstrendslog.indiatimes.com +# ||clvk.viki.io^ (easyprivacy.txt: 7733) +.clvk.viki.io +# ||cls.ichotelsgroup.com^ (easyprivacy.txt: 7732) +.cls.ichotelsgroup.com +# ||cloudfront.net/vis_opt_no_jquery.js (easyprivacy.txt: 7731) +.cloudfront.net/vis_opt_no_jquery\.js +# ||cloudfront.net/vis_opt.js (easyprivacy.txt: 7730) +.cloudfront.net/vis_opt\.js +# ||cloudfront.net/m/princess/ae.live.js (easyprivacy.txt: 7727) +.cloudfront.net/m/princess/ae\.live\.js +# ||cloudfront.net/m/princess/ae.js (easyprivacy.txt: 7726) +.cloudfront.net/m/princess/ae\.js +# ||cloudfront.net/bbc-filter.js (easyprivacy.txt: 7724) +.cloudfront.net/bbc-filter\.js +# ||cloudfront.net/amznUrchin.js (easyprivacy.txt: 7723) +.cloudfront.net/amznUrchin\.js +# ||cloudfront.net/1x1.gif? (easyprivacy.txt: 7722) +.cloudfront.net/1x1\.gif\? +# ||clog.go.com^ (easyprivacy.txt: 7721) +.clog.go.com +# ||clkstat.china.cn^ (easyprivacy.txt: 7720) +.clkstat.china.cn +# ||clk.about.com^ (easyprivacy.txt: 7719) +.clk.about.com +# ||climatedesk.org*/pixel.gif (easyprivacy.txt: 7718) +.climatedesk.org*./(.*/)?pixel\.gif +# ||clicks.traffictrader.net^ (easyprivacy.txt: 7717) +.clicks.traffictrader.net +# ||clicks.hurriyet.com.tr^ (easyprivacy.txt: 7716) +.clicks.hurriyet.com.tr +# ||click2.cafepress.com^ (easyprivacy.txt: 7715) +.click2.cafepress.com +# ||click.news.imdb.com/open.aspx? (easyprivacy.txt: 7714) +.click.news.imdb.com/open\.aspx\? +# ||click.mmosite.com^ (easyprivacy.txt: 7713) +.click.mmosite.com +# ||click.engage.xbox.com^ (easyprivacy.txt: 7712) +.click.engage.xbox.com +# ||click.aliexpress.com^ (easyprivacy.txt: 7711) +.click.aliexpress.com +# ||clck.yandex.com^ (easyprivacy.txt: 7710) +.clck.yandex.com +# ||cl.ly/metrics? (easyprivacy.txt: 7709) +.cl.ly/metrics\? +# ||cl.expedia.com^ (easyprivacy.txt: 7708) +.cl.expedia.com +# ||cjtube.com/tp/*.php (easyprivacy.txt: 7707) +.cjtube.com/tp/.*\.php +# ||ciao.co.uk/flextag/ (easyprivacy.txt: 7706) +.ciao.co.uk/flextag/ +# ||chunk.bustle.com^ (easyprivacy.txt: 7705) +.chunk.bustle.com +# ||chud.com/community/p/ (easyprivacy.txt: 7704) +.chud.com/community/p/ +# ||chron.com/javascript/cider/ (easyprivacy.txt: 7703) +.chron.com/javascript/cider/ +# ||christianpost.com/count.php? (easyprivacy.txt: 7702) +.christianpost.com/count\.php\? +# ||chkpt.zdnet.com^ (easyprivacy.txt: 7701) +.chkpt.zdnet.com +# ||chip.eu^*/pic.gif? (easyprivacy.txt: 7700) +.chip.eu/.*/pic\.gif\? +# ||chinanews.com:8090/rpc/p.jsp? (easyprivacy.txt: 7699) +.chinanews.com:8090/rpc/p\.jsp\? +# ||china.com^*/endpage_footer.js (easyprivacy.txt: 7698) +.china.com/.*/endpage_footer\.js +# ||china.com/statistic.js (easyprivacy.txt: 7697) +.china.com/statistic\.js +# ||chelseafc.com^*/tracking.js (easyprivacy.txt: 7696) +.chelseafc.com/.*/tracking\.js +# ||cheezburger.com/api/visitor (easyprivacy.txt: 7695) +.cheezburger.com/api/visitor +# ||cheapsalesconsulting.com/adaptive.php? (easyprivacy.txt: 7694) +.cheapsalesconsulting.com/adaptive\.php\? +# ||cheapflights.com/ic/*.gif? (easyprivacy.txt: 7693) +.cheapflights.com/ic/.*\.gif\? +# ||charter.com/static/scripts/mock/tracking.js (easyprivacy.txt: 7692) +.charter.com/static/scripts/mock/tracking\.js +# ||channel4.com/foresee_c4/ (easyprivacy.txt: 7691) +.channel4.com/foresee_c4/ +# ||chanel.com/js/flashtrack.js (easyprivacy.txt: 7690) +.chanel.com/js/flashtrack\.js +# ||cgi.nch.com.au^*&referrer (easyprivacy.txt: 7689) +.cgi.nch.com.au/.*&referrer +# ||cfr.org/js/ga.*js (easyprivacy.txt: 7688) +.cfr.org/js/ga\..*js +# ||cert.org/images/1pxinv.gif (easyprivacy.txt: 7687) +.cert.org/images/1pxinv\.gif +# ||cellstores.com/tracking/ (easyprivacy.txt: 7686) +.cellstores.com/tracking/ +# ||cdnstats.tube8.com^ (easyprivacy.txt: 7685) +.cdnstats.tube8.com +# ||cd.musicmass.com^ (easyprivacy.txt: 7684) +.cd.musicmass.com +# ||cctv.com^*/SnoopStat? (easyprivacy.txt: 7683) +.cctv.com/.*/SnoopStat\? +# ||cclickvidservgs.com/mattel/cclick.js (easyprivacy.txt: 7682) +.cclickvidservgs.com/mattel/cclick\.js +# ||cbssports.com/common/p? (easyprivacy.txt: 7681) +.cbssports.com/common/p\? +# ||cbsnews.com/i/trk/ (easyprivacy.txt: 7680) +.cbsnews.com/i/trk/ +# ||cbslocal.com^*/cbs1x1.gif? (easyprivacy.txt: 7679) +.cbslocal.com/.*/cbs1x1\.gif\? +# ||cbsimg.net/js/cbsi/dw.js (easyprivacy.txt: 7678) +.cbsimg.net/js/cbsi/dw\.js +# ||cbs.wondershare.com^ (easyprivacy.txt: 7677) +.cbs.wondershare.com +# ||cbs.com/assets/js/*AdvCookie.js (easyprivacy.txt: 7676) +.cbs.com/assets/js/.*AdvCookie\.js +# ||cbox.ws^*/relay.swf?host= (easyprivacy.txt: 7675) +.cbox.ws/.*/relay\.swf\?host= +# ||cbox.ws/box/relay.swf? (easyprivacy.txt: 7674) +.cbox.ws/box/relay\.swf\? +# ||cbc.ca/g/stats/ (easyprivacy.txt: 7673) +.cbc.ca/g/stats/ +# ||cbc.ca/g/i/intercept.js (easyprivacy.txt: 7672) +.cbc.ca/g/i/intercept\.js +# ||cartoonnetwork.com^*/brandcma.js (easyprivacy.txt: 7671) +.cartoonnetwork.com/.*/brandcma\.js +# ||cartoonnetwork.com/tools/js/clickmap/ (easyprivacy.txt: 7670) +.cartoonnetwork.com/tools/js/clickmap/ +# ||cartier.co.uk^*/eyeblaster. (easyprivacy.txt: 7669) +.cartier.co.uk/.*/eyeblaster\. +# ||cars.com^*/analytics.js (easyprivacy.txt: 7668) +.cars.com/.*/analytics\.js +# ||carmax.com/ping? (easyprivacy.txt: 7667) +.carmax.com/ping\? +# ||carmagazine.co.uk^*/tracking.js (easyprivacy.txt: 7666) +.carmagazine.co.uk/.*/tracking\.js +# ||cardstore.com/affiliate.jsp? (easyprivacy.txt: 7665) +.cardstore.com/affiliate\.jsp\? +# ||cardomain.com/js/tibbylog.js? (easyprivacy.txt: 7664) +.cardomain.com/js/tibbylog\.js\? +# ||capitalone.com/tracker/ (easyprivacy.txt: 7663) +.capitalone.com/tracker/ +# ||canoe.ca/generix/ga.js (easyprivacy.txt: 7662) +.canoe.ca/generix/ga\.js +# ||candy.com/3droi/ (easyprivacy.txt: 7661) +.candy.com/3droi/ +# ||caller.com/metrics/ (easyprivacy.txt: 7660) +.caller.com/metrics/ +# ||caixin.com/webjs/common/caixinlog.js (easyprivacy.txt: 7659) +.caixin.com/webjs/common/caixinlog\.js +# ||c.ypcdn.com^*/webyp?rid= (easyprivacy.txt: 7658) +.c.ypcdn.com/.*/webyp\?rid= +# ||c.x.oanda.com^ (easyprivacy.txt: 7657) +.c.x.oanda.com +# ||c.newsinc.com^ (easyprivacy.txt: 7656) +.c.newsinc.com +# ||c.microsoft.com^ (easyprivacy.txt: 7655) +.c.microsoft.com +# ||buzzurl.jp/api/counter/ (easyprivacy.txt: 7654) +.buzzurl.jp/api/counter/ +# ||buzzfeed.com^*/tracker.js (easyprivacy.txt: 7653) +.buzzfeed.com/.*/tracker\.js +# ||buzzfeed.com^*/small.gif? (easyprivacy.txt: 7652) +.buzzfeed.com/.*/small\.gif\? +# ||buzzfed.com^*/pound.js (easyprivacy.txt: 7651) +.buzzfed.com/.*/pound\.js +# ||buzzfed.com/pixel? (easyprivacy.txt: 7650) +.buzzfed.com/pixel\? +# ||buzzamedia.com/js/track.js (easyprivacy.txt: 7649) +.buzzamedia.com/js/track\.js +# ||buto.tv/track/ (easyprivacy.txt: 7648) +.buto.tv/track/ +# ||businessseek.biz/cgi-bin/*.pl?trans.gif&ref= (easyprivacy.txt: 7647) +.businessseek.biz/cgi-bin/.*\.pl\?trans\.gif&ref= +# ||businessinsider.com^*/track.js (easyprivacy.txt: 7646) +.businessinsider.com/.*/track\.js +# ||businessinsider.com/tracker.js (easyprivacy.txt: 7645) +.businessinsider.com/tracker\.js +# ||business.com/images2/anal.gif? (easyprivacy.txt: 7644) +.business.com/images2/anal\.gif\? +# ||bulgari.com/bulgari/wireframe_script/BulgariGa.js (easyprivacy.txt: 7643) +.bulgari.com/bulgari/wireframe_script/BulgariGa\.js +# ||brobible.com/?ACT (easyprivacy.txt: 7642) +.brobible.com/\?ACT +# ||broadbandchoices.co.uk/track.js (easyprivacy.txt: 7641) +.broadbandchoices.co.uk/track\.js +# ||britannica.com/webstats/ (easyprivacy.txt: 7640) +.britannica.com/webstats/ +# ||brightcove.com/1pix.gif? (easyprivacy.txt: 7639) +.brightcove.com/1pix\.gif\? +# ||bridgetrack.com/track/ (easyprivacy.txt: 7638) +.bridgetrack.com/track/ +# ||bridgetrack.com/site/ (easyprivacy.txt: 7637) +.bridgetrack.com/site/ +# ||branica.com/counter.php? (easyprivacy.txt: 7636) +.branica.com/counter\.php\? +# ||brandrepublic.com/session-img/ (easyprivacy.txt: 7635) +.brandrepublic.com/session-img/ +# ||bostonglobe.com/statistics? (easyprivacy.txt: 7634) +.bostonglobe.com/statistics\? +# ||boston.com/upixel/ (easyprivacy.txt: 7633) +.boston.com/upixel/ +# ||booking.com/logo? (easyprivacy.txt: 7632) +.booking.com/logo\? +# ||booking.com/js_tracking? (easyprivacy.txt: 7631) +.booking.com/js_tracking\? +# ||boats.com/images/tracking/ (easyprivacy.txt: 7630) +.boats.com/images/tracking/ +# ||boards.ie/timing.php? (easyprivacy.txt: 7629) +.boards.ie/timing\.php\? +# ||bmocorpmc.com^*/zig.js (easyprivacy.txt: 7628) +.bmocorpmc.com/.*/zig\.js +# ||bluenile.com/track/ (easyprivacy.txt: 7627) +.bluenile.com/track/ +# ||bluenile.co.uk/track/ (easyprivacy.txt: 7626) +.bluenile.co.uk/track/ +# ||bluenile.ca/track/ (easyprivacy.txt: 7625) +.bluenile.ca/track/ +# ||bloxcms.com^*/tracker.js (easyprivacy.txt: 7624) +.bloxcms.com/.*/tracker\.js +# ||bloomberg.com/apps/data?referrer (easyprivacy.txt: 7623) +.bloomberg.com/apps/data\?referrer +# ||blip.tv/engagement? (easyprivacy.txt: 7622) +.blip.tv/engagement\? +# ||blinkbox.com/tracking (easyprivacy.txt: 7621) +.blinkbox.com/tracking +# ||blick.ch/stats/ (easyprivacy.txt: 7620) +.blick.ch/stats/ +# ||blekko.com/a/track? (easyprivacy.txt: 7619) +.blekko.com/a/track\? +# ||blastro.com/log_player_actions.php (easyprivacy.txt: 7618) +.blastro.com/log_player_actions\.php +# ||blankfire.com^*_.gif (easyprivacy.txt: 7617) +.blankfire.com/.*_\.gif +# ||blackplanet.com/images/shim.gif (easyprivacy.txt: 7616) +.blackplanet.com/images/shim\.gif +# ||bits.wikimedia.org/geoiplookup (easyprivacy.txt: 7615) +.bits.wikimedia.org/geoiplookup +# ||bit.ehow.com^ (easyprivacy.txt: 7614) +.bit.ehow.com +# ||birthvillage.com/watcher/ (easyprivacy.txt: 7613) +.birthvillage.com/watcher/ +# ||biosphoto.com^*/stats/ (easyprivacy.txt: 7612) +.biosphoto.com/.*/stats/ +# ||bing.com^*/GLinkPing.aspx (easyprivacy.txt: 7611) +.bing.com/.*/GLinkPing\.aspx +# ||bing.com/widget/metrics.js (easyprivacy.txt: 7610) +.bing.com/widget/metrics\.js +# ||bing.com/partner/primedns (easyprivacy.txt: 7609) +.bing.com/partner/primedns +# ||bing.com/fd/ls/ (easyprivacy.txt: 7608) +.bing.com/fd/ls/ +# ||binaries4all.nl/misc/misc.php?*&url=http (easyprivacy.txt: 7607) +.binaries4all.nl/misc/misc\.php\?.*&url=http +# ||bidz.com/contentarea/BidzHomePixel (easyprivacy.txt: 7606) +.bidz.com/contentarea/BidzHomePixel +# ||bi.medscape.com^ (easyprivacy.txt: 7605) +.bi.medscape.com +# ||bhg.com^*/tracking-data? (easyprivacy.txt: 7604) +.bhg.com/.*/tracking-data\? +# ||beyond.com/common/track/trackgeneral.asp (easyprivacy.txt: 7603) +.beyond.com/common/track/trackgeneral\.asp +# ||betway.com/snowflake/? (easyprivacy.txt: 7602) +.betway.com/snowflake/\? +# ||betfair.com/1x1.gif (easyprivacy.txt: 7601) +.betfair.com/1x1\.gif +# ||bestofmedia.com/sfp/js/boomerang/ (easyprivacy.txt: 7600) +.bestofmedia.com/sfp/js/boomerang/ +# ||bestofmedia.com/i/tomsguide/a.gif (easyprivacy.txt: 7599) +.bestofmedia.com/i/tomsguide/a\.gif +# ||bermudasun.bm/stats/ (easyprivacy.txt: 7598) +.bermudasun.bm/stats/ +# ||bench.uc.cn^ (easyprivacy.txt: 7597) +.bench.uc.cn +# ||beacons.helium.com^ (easyprivacy.txt: 7596) +.beacons.helium.com +# ||beacon.www.theguardian.com^ (easyprivacy.txt: 7595) +.beacon.www.theguardian.com +# ||beacon.walmart.com^ (easyprivacy.txt: 7594) +.beacon.walmart.com +# ||beacon.search.yahoo.com^ (easyprivacy.txt: 7593) +.beacon.search.yahoo.com +# ||beacon.nuskin.com^ (easyprivacy.txt: 7592) +.beacon.nuskin.com +# ||beacon.lycos.com^ (easyprivacy.txt: 7591) +.beacon.lycos.com +# ||beacon.indieclicktv.com^ (easyprivacy.txt: 7590) +.beacon.indieclicktv.com +# ||beacon.examiner.com^ (easyprivacy.txt: 7589) +.beacon.examiner.com +# ||beacon.ehow.com^ (easyprivacy.txt: 7588) +.beacon.ehow.com +# ||beacon-1.newrelic.com^ (easyprivacy.txt: 7587) +.beacon-1.newrelic.com +# ||bdonline.co.uk/bps_sv.gif? (easyprivacy.txt: 7586) +.bdonline.co.uk/bps_sv\.gif\? +# ||bcm.itv.com^ (easyprivacy.txt: 7585) +.bcm.itv.com +# ||bc.yahoo.com^ (easyprivacy.txt: 7584) +.bc.yahoo.com +# ||bbc.co.uk^*/vs.js (easyprivacy.txt: 7582) +.bbc.co.uk/.*/vs\.js +# ||bbc.co.uk^*/tracker.js (easyprivacy.txt: 7581) +.bbc.co.uk/.*/tracker\.js +# ||bbc.co.uk^*/livestats_v1_1.js (easyprivacy.txt: 7580) +.bbc.co.uk/.*/livestats_v1_1\.js +# ||bbc.co.uk^*/livestats.js (easyprivacy.txt: 7579) +.bbc.co.uk/.*/livestats\.js +# ||bbc.co.uk^*/linktrack.js (easyprivacy.txt: 7578) +.bbc.co.uk/.*/linktrack\.js +# ||bbc.co.uk/zaguk.gif? (easyprivacy.txt: 7577) +.bbc.co.uk/zaguk\.gif\? +# ||bbc.co.uk/click/img/ (easyprivacy.txt: 7576) +.bbc.co.uk/click/img/ +# ||bbc.co.uk/cbbc/statstracker/ (easyprivacy.txt: 7575) +.bbc.co.uk/cbbc/statstracker/ +# ||bbc.co.uk/analytics? (easyprivacy.txt: 7574) +.bbc.co.uk/analytics\? +# ||bayer.com^*/sp.gif? (easyprivacy.txt: 7573) +.bayer.com/.*/sp\.gif\? +# ||baxter.com/includes/wtss.js (easyprivacy.txt: 7572) +.baxter.com/includes/wtss\.js +# ||bats.video.yahoo.com^ (easyprivacy.txt: 7571) +.bats.video.yahoo.com +# ||bat.adforum.com^ (easyprivacy.txt: 7570) +.bat.adforum.com +# ||barrons.com^*/blank.htm (easyprivacy.txt: 7569) +.barrons.com/.*/blank\.htm +# ||barneys.com^*/__analytics-tracking? (easyprivacy.txt: 7568) +.barneys.com/.*/__analytics-tracking\? +# ||barneys.com/spacer.gif? (easyprivacy.txt: 7567) +.barneys.com/spacer\.gif\? +# ||barnesandnoble.com/Analytics/ (easyprivacy.txt: 7566) +.barnesandnoble.com/Analytics/ +# ||barclaycard.co.uk/cs/static/js/esurveys/esurveys.js (easyprivacy.txt: 7565) +.barclaycard.co.uk/cs/static/js/esurveys/esurveys\.js +# ||barcelo.com^*/Tracking.js (easyprivacy.txt: 7564) +.barcelo.com/.*/Tracking\.js +# ||bangkokpost.com/spac/spac.js (easyprivacy.txt: 7563) +.bangkokpost.com/spac/spac\.js +# ||banggood.com/?p= (easyprivacy.txt: 7562) +.banggood.com/\?p= +# ||bandstores.co.uk/tracking/scripts/ (easyprivacy.txt: 7561) +.bandstores.co.uk/tracking/scripts/ +# ||baidu.com/js/log.js (easyprivacy.txt: 7560) +.baidu.com/js/log\.js +# ||baidu.com/ecom? (easyprivacy.txt: 7559) +.baidu.com/ecom\? +# ||b.photobucket.com^$~object-subrequest (easyprivacy.txt: 7558) +.b.photobucket.com +# ||b.myspace.com^ (easyprivacy.txt: 7557) +.b.myspace.com +# ||b.imwx.com^ (easyprivacy.txt: 7556) +.b.imwx.com +# ||b.huffingtonpost.com^ (easyprivacy.txt: 7555) +.b.huffingtonpost.com +# ||azfamily.com/images/pixel.gif (easyprivacy.txt: 7554) +.azfamily.com/images/pixel\.gif +# ||axa.com/elements/js/wreport.js (easyprivacy.txt: 7553) +.axa.com/elements/js/wreport\.js +# ||avstop.com^*/poll.gif? (easyprivacy.txt: 7552) +.avstop.com/.*/poll\.gif\? +# ||aviva.co.uk/metrics/ (easyprivacy.txt: 7551) +.aviva.co.uk/metrics/ +# ||avitop.com^*/hitlist.asp (easyprivacy.txt: 7550) +.avitop.com/.*/hitlist\.asp +# ||avira.com/site/datatracking? (easyprivacy.txt: 7549) +.avira.com/site/datatracking\? +# ||avg.com^*/stats.js (easyprivacy.txt: 7548) +.avg.com/.*/stats\.js +# ||autotrader.co.za/log/ (easyprivacy.txt: 7547) +.autotrader.co.za/log/ +# ||autotrader.co.uk/page-tracking/ (easyprivacy.txt: 7546) +.autotrader.co.uk/page-tracking/ +# ||autosite.com/scripts/markerfile.bin? (easyprivacy.txt: 7545) +.autosite.com/scripts/markerfile\.bin\? +# ||autopartswarehouse.com/thirdparty/tracker? (easyprivacy.txt: 7544) +.autopartswarehouse.com/thirdparty/tracker\? +# ||autobytel.com/content/shared/markerfile.bin (easyprivacy.txt: 7543) +.autobytel.com/content/shared/markerfile\.bin +# ||autoblog.com/traffic/ (easyprivacy.txt: 7542) +.autoblog.com/traffic/ +# ||auriq.com/asp/aq_tag. (easyprivacy.txt: 7541) +.auriq.com/asp/aq_tag\. +# ||audiusa.com/us/brand/en.usertracking_javascript.js (easyprivacy.txt: 7540) +.audiusa.com/us/brand/en\.usertracking_javascript\.js +# ||audit.pcadvisor.co.uk^ (easyprivacy.txt: 7539) +.audit.pcadvisor.co.uk +# ||audit.macworld.co.uk^ (easyprivacy.txt: 7538) +.audit.macworld.co.uk +# ||attachmate.com*/pv.aspx? (easyprivacy.txt: 7537) +.attachmate.com*./(.*/)?pv\.aspx\? +# ||att.com/csct.gif? (easyprivacy.txt: 7536) +.att.com/csct\.gif\? +# ||atracktive.collegehumor.com^ (easyprivacy.txt: 7535) +.atracktive.collegehumor.com +# ||atrack.art.com^ (easyprivacy.txt: 7534) +.atrack.art.com +# ||atrack.allposters.com^ (easyprivacy.txt: 7533) +.atrack.allposters.com +# ||atlas.astrology.com^ (easyprivacy.txt: 7532) +.atlas.astrology.com +# ||atlantis.com/_scripts/tsedge/pagemarker.gif? (easyprivacy.txt: 7531) +.atlantis.com/_scripts/tsedge/pagemarker\.gif\? +# ||atlantafalcons.com/wp-content/*/metrics.js (easyprivacy.txt: 7530) +.atlantafalcons.com/wp-content/.*/metrics\.js +# ||athena.mysmartprice.info^ (easyprivacy.txt: 7529) +.athena.mysmartprice.info +# ||atax.teamxbox.com^ (easyprivacy.txt: 7528) +.atax.teamxbox.com +# ||atax.ign.com^ (easyprivacy.txt: 7527) +.atax.ign.com +# ||atax.gamestats.com^ (easyprivacy.txt: 7526) +.atax.gamestats.com +# ||atax.gamespy.com^ (easyprivacy.txt: 7525) +.atax.gamespy.com +# ||atax.gamermetrics.com^ (easyprivacy.txt: 7524) +.atax.gamermetrics.com +# ||astrology.com/visits/ (easyprivacy.txt: 7523) +.astrology.com/visits/ +# ||associatedcontent.com/action_cookie (easyprivacy.txt: 7522) +.associatedcontent.com/action_cookie +# ||assets.olark.com^ (easyprivacy.txt: 7521) +.assets.olark.com +# ||askmen.com/tracking/ (easyprivacy.txt: 7520) +.askmen.com/tracking/ +# ||askamum.co.uk/Shared/js/tracking.js (easyprivacy.txt: 7519) +.askamum.co.uk/Shared/js/tracking\.js +# ||ask.com/servlets/ulog? (easyprivacy.txt: 7518) +.ask.com/servlets/ulog\? +# ||asianblast.com/statx/ (easyprivacy.txt: 7517) +.asianblast.com/statx/ +# ||ashleymadison.com/app/public/track.p? (easyprivacy.txt: 7516) +.ashleymadison.com/app/public/track\.p\? +# ||art.com/asp/UTERecording.asp (easyprivacy.txt: 7515) +.art.com/asp/UTERecording\.asp +# ||art.com/asp/robot/ (easyprivacy.txt: 7514) +.art.com/asp/robot/ +# ||art.co.uk/asp/robot/ (easyprivacy.txt: 7513) +.art.co.uk/asp/robot/ +# ||arstechnica.com^*/|$object (easyprivacy.txt: 7512) +.arstechnica.com/.*/$ +# ||arstechnica.com^*.gif?id= (easyprivacy.txt: 7511) +.arstechnica.com/.*\.gif\?id= +# ||arstechnica.com/|$object (easyprivacy.txt: 7510) +.arstechnica.com/$ +# ||arstechnica.com/services/incr.php?stats$xmlhttprequest (easyprivacy.txt: 7509) +.arstechnica.com/services/incr\.php\?stats +# ||arstechnica.com/dragons/breath.gif (easyprivacy.txt: 7508) +.arstechnica.com/dragons/breath\.gif +# ||arstechnica.com/*.ars$object (easyprivacy.txt: 7507) +.arstechnica.com/.*\.ars +# ||arstechnica.co.uk/services/incr.php?stats$xmlhttprequest (easyprivacy.txt: 7506) +.arstechnica.co.uk/services/incr\.php\?stats +# ||armystudyguide.com/hqxapi/it? (easyprivacy.txt: 7505) +.armystudyguide.com/hqxapi/it\? +# ||archive.org/static/js/analytics.js (easyprivacy.txt: 7504) +.archive.org/static/js/analytics\.js +# ||appspot.com/tracking/ (easyprivacy.txt: 7503) +.appspot.com/tracking/ +# ||applifier.com/users/tracking? (easyprivacy.txt: 7502) +.applifier.com/users/tracking\? +# ||applegate.co.uk/javascript/dcs/track.js (easyprivacy.txt: 7501) +.applegate.co.uk/javascript/dcs/track\.js +# ||apple.com^*/spacer2.gif? (easyprivacy.txt: 7500) +.apple.com/.*/spacer2\.gif\? +# ||apphit.com/js/count.js (easyprivacy.txt: 7499) +.apphit.com/js/count\.js +# ||api.tinypic.com/api.php?action=track (easyprivacy.txt: 7498) +.api.tinypic.com/api\.php\?action=track +# ||apartments.com^*/al.gif? (easyprivacy.txt: 7497) +.apartments.com/.*/al\.gif\? +# ||ap.org^*/webtrendsap_hosted.js (easyprivacy.txt: 7496) +.ap.org/.*/webtrendsap_hosted\.js +# ||ap.org^*/blank.gif? (easyprivacy.txt: 7495) +.ap.org/.*/blank\.gif\? +# ||aol.com/track/ (easyprivacy.txt: 7494) +.aol.com/track/ +# ||aol.com/metrics/ (easyprivacy.txt: 7493) +.aol.com/metrics/ +# ||aol.com/master/? (easyprivacy.txt: 7492) +.aol.com/master/\? +# ||aol.com/beacons/ (easyprivacy.txt: 7491) +.aol.com/beacons/ +# ||aol.com/articles/traffic/ (easyprivacy.txt: 7490) +.aol.com/articles/traffic/ +# ||aol.co.uk/track/ (easyprivacy.txt: 7489) +.aol.co.uk/track/ +# ||aol.ca/track/ (easyprivacy.txt: 7488) +.aol.ca/track/ +# ||any.gs/track/ (easyprivacy.txt: 7487) +.any.gs/track/ +# ||answers.com/resources/tac.html (easyprivacy.txt: 7486) +.answers.com/resources/tac\.html +# ||anp.se/track? (easyprivacy.txt: 7485) +.anp.se/track\? +# ||anntaylor.com/webassets/*/page_code.js (easyprivacy.txt: 7484) +.anntaylor.com/webassets/.*/page_code\.js +# ||angelfire.com/cgi-bin/count.cgi (easyprivacy.txt: 7483) +.angelfire.com/cgi-bin/count\.cgi +# ||androidfilehost.com/libs/otf/stats.otf.php? (easyprivacy.txt: 7482) +.androidfilehost.com/libs/otf/stats\.otf\.php\? +# ||androidcommunity.com/ws/?js (easyprivacy.txt: 7481) +.androidcommunity.com/ws/\?js +# ||analyzer52.fc2.com^ (easyprivacy.txt: 7480) +.analyzer52.fc2.com +# ||analyze.yahooapis.com^ (easyprivacy.txt: 7479) +.analyze.yahooapis.com +# ||analytics.yahoo.com^ (easyprivacy.txt: 7478) +.analytics.yahoo.com +# ||analytics.whatculture.com^ (easyprivacy.txt: 7477) +.analytics.whatculture.com +# ||analytics.wetpaint.me^ (easyprivacy.txt: 7476) +.analytics.wetpaint.me +# ||analytics.us.archive.org^ (easyprivacy.txt: 7475) +.analytics.us.archive.org +# ||analytics.upworthy.com^ (easyprivacy.txt: 7474) +.analytics.upworthy.com +# ||analytics.twitter.com^ (easyprivacy.txt: 7473) +.analytics.twitter.com +# ||analytics.thenest.com^ (easyprivacy.txt: 7472) +.analytics.thenest.com +# ||analytics.teespring.com^ (easyprivacy.txt: 7471) +.analytics.teespring.com +# ||analytics.services.distractify.com^ (easyprivacy.txt: 7470) +.analytics.services.distractify.com +# ||analytics.omgpop.com/log (easyprivacy.txt: 7469) +.analytics.omgpop.com/log +# ||analytics.newsinc.com^ (easyprivacy.txt: 7468) +.analytics.newsinc.com +# ||analytics.msnbc.msn.com^ (easyprivacy.txt: 7467) +.analytics.msnbc.msn.com +# ||analytics.mindjolt.com^ (easyprivacy.txt: 7466) +.analytics.mindjolt.com +# ||analytics.localytics.com^ (easyprivacy.txt: 7465) +.analytics.localytics.com +# ||analytics.ifood.tv^ (easyprivacy.txt: 7464) +.analytics.ifood.tv +# ||analytics.gorillanation.com^ (easyprivacy.txt: 7463) +.analytics.gorillanation.com +# ||analytics.go.com^ (easyprivacy.txt: 7462) +.analytics.go.com +# ||analytics.femalefirst.co.uk^ (easyprivacy.txt: 7461) +.analytics.femalefirst.co.uk +# ||analytics.bloomberg.com^ (easyprivacy.txt: 7460) +.analytics.bloomberg.com +# ||analytics.archive.org^ (easyprivacy.txt: 7459) +.analytics.archive.org +# ||analytics.adfreetime.com^ (easyprivacy.txt: 7458) +.analytics.adfreetime.com +# ||analytic.imlive.com^ (easyprivacy.txt: 7457) +.analytic.imlive.com +# ||analysis.focalprice.com^ (easyprivacy.txt: 7456) +.analysis.focalprice.com +# ||amy.gs/track/ (easyprivacy.txt: 7455) +.amy.gs/track/ +# ||amp.virginmedia.com^ (easyprivacy.txt: 7454) +.amp.virginmedia.com +# ||amd.com/us/as/vwo/vwo_ (easyprivacy.txt: 7453) +.amd.com/us/as/vwo/vwo_ +# ||amcnets.com/cgi-bin/true-ip.cgi (easyprivacy.txt: 7452) +.amcnets.com/cgi-bin/true-ip\.cgi +# ||amazonsupply.com/uedata? (easyprivacy.txt: 7451) +.amazonsupply.com/uedata\? +# ||amazonaws.com^*/pzyche.js (easyprivacy.txt: 7450) +.amazonaws.com/.*/pzyche\.js +# ||amazonaws.com/tracking.relead.js (easyprivacy.txt: 7449) +.amazonaws.com/tracking\.relead\.js +# ||amazonaws.com/beacon/vtpixpc.gif? (easyprivacy.txt: 7448) +.amazonaws.com/beacon/vtpixpc\.gif\? +# ||amazon.com^*/vap-metrics/ (easyprivacy.txt: 7447) +.amazon.com/.*/vap-metrics/ +# ||amazon.com^*/amazon-clicks/ (easyprivacy.txt: 7446) +.amazon.com/.*/amazon-clicks/ +# ||amazon.com/gp/yourstore/recs/ (easyprivacy.txt: 7445) +.amazon.com/gp/yourstore/recs/ +# ||amazon.com/gp/forum/email/tracking? (easyprivacy.txt: 7444) +.amazon.com/gp/forum/email/tracking\? +# ||amazon.com/clog/ (easyprivacy.txt: 7443) +.amazon.com/clog/ +# ||amazon.*/uedata/ (easyprivacy.txt: 7442) +.amazon.*./(.*/)?uedata/ +# ||alot.com/tb/cookiewriter.php? (easyprivacy.txt: 7441) +.alot.com/tb/cookiewriter\.php\? +# ||alot.com/js/tracking.js (easyprivacy.txt: 7440) +.alot.com/js/tracking\.js +# ||allvoices.com/track_page (easyprivacy.txt: 7439) +.allvoices.com/track_page +# ||allmovieportal.com/hostpagescript.js (easyprivacy.txt: 7438) +.allmovieportal.com/hostpagescript\.js +# ||allmodern.com^*/sessioned_reqs.asp? (easyprivacy.txt: 7437) +.allmodern.com/.*/sessioned_reqs\.asp\? +# ||alliance-leicester.co.uk/assets/jslib/sitetracker21.js (easyprivacy.txt: 7436) +.alliance-leicester.co.uk/assets/jslib/sitetracker21\.js +# ||allexperts.com/px/ (easyprivacy.txt: 7435) +.allexperts.com/px/ +# ||allcarpictures.com/stat/ (easyprivacy.txt: 7434) +.allcarpictures.com/stat/ +# ||allafrica.com^*/s_trans_nc.gif? (easyprivacy.txt: 7433) +.allafrica.com/.*/s_trans_nc\.gif\? +# ||allafrica.com^*/s_trans.gif? (easyprivacy.txt: 7432) +.allafrica.com/.*/s_trans\.gif\? +# ||allafrica.com^*/s-trans.gif? (easyprivacy.txt: 7431) +.allafrica.com/.*/s-trans\.gif\? +# ||allafrica.com/img/static/s_trans_nc.gif (easyprivacy.txt: 7430) +.allafrica.com/img/static/s_trans_nc\.gif +# ||alipay.com/web/bi.do?ref= (easyprivacy.txt: 7429) +.alipay.com/web/bi\.do\?ref= +# ||aliexpress.com/js/beacon_ (easyprivacy.txt: 7428) +.aliexpress.com/js/beacon_ +# ||alibi.com/tracker.gif? (easyprivacy.txt: 7427) +.alibi.com/tracker\.gif\? +# ||alibaba.com/js/beacon_ (easyprivacy.txt: 7426) +.alibaba.com/js/beacon_ +# ||alarabiya.net^*/googleid.js (easyprivacy.txt: 7425) +.alarabiya.net/.*/googleid\.js +# ||alarabiya.net/track_content_ (easyprivacy.txt: 7424) +.alarabiya.net/track_content_ +# ||akamaihd.net/pixelkabam/ (easyprivacy.txt: 7423) +.akamaihd.net/pixelkabam/ +# ||akamai.net^*/button.clickability.com/ (easyprivacy.txt: 7422) +.akamai.net/.*/button\.clickability\.com/ +# ||airspacemag.com/g/g/button/ (easyprivacy.txt: 7421) +.airspacemag.com/g/g/button/ +# ||airfrance.com/s/?tcs= (easyprivacy.txt: 7420) +.airfrance.com/s/\?tcs= +# ||agoda.net/js/abtest/analytics.js (easyprivacy.txt: 7419) +.agoda.net/js/abtest/analytics\.js +# ||agendize.com/analytics.js (easyprivacy.txt: 7418) +.agendize.com/analytics\.js +# ||afterdawn.com/views.cfm? (easyprivacy.txt: 7417) +.afterdawn.com/views\.cfm\? +# ||affiliates.treasureisland.com^ (easyprivacy.txt: 7416) +.affiliates.treasureisland.com +# ||affiliates.myfax.com^ (easyprivacy.txt: 7415) +.affiliates.myfax.com +# ||affiliates.mozy.com^ (easyprivacy.txt: 7414) +.affiliates.mozy.com +# ||affiliates.londonmarketing.com^ (easyprivacy.txt: 7413) +.affiliates.londonmarketing.com +# ||affiliates.genealogybank.com^ (easyprivacy.txt: 7412) +.affiliates.genealogybank.com +# ||affiliate.resellerclub.com^ (easyprivacy.txt: 7411) +.affiliate.resellerclub.com +# ||affiliate.productreview.com.au^ (easyprivacy.txt: 7410) +.affiliate.productreview.com.au +# ||affiliate.mercola.com^ (easyprivacy.txt: 7409) +.affiliate.mercola.com +# ||adwiretracker.fwix.com^ (easyprivacy.txt: 7407) +.adwiretracker.fwix.com +# ||advfn.com/space.gif? (easyprivacy.txt: 7406) +.advfn.com/space\.gif\? +# ||advancedtracker.appspot.com^ (easyprivacy.txt: 7405) +.advancedtracker.appspot.com +# ||advancedmp3players.co.uk/support/visitor/index.php? (easyprivacy.txt: 7404) +.advancedmp3players.co.uk/support/visitor/index\.php\? +# ||adv.drtuber.com^ (easyprivacy.txt: 7403) +.adv.drtuber.com +# ||adprimemedia.com^*/video_report/videoReport.php? (easyprivacy.txt: 7402) +.adprimemedia.com/.*/video_report/videoReport\.php\? +# ||adprimemedia.com^*/video_report/attemptAdReport.php? (easyprivacy.txt: 7401) +.adprimemedia.com/.*/video_report/attemptAdReport\.php\? +# ||adidas.com^*/analytics/ (easyprivacy.txt: 7400) +.adidas.com/.*/analytics/ +# ||adidas.com/analytics/ (easyprivacy.txt: 7399) +.adidas.com/analytics/ +# ||adguru.guruji.com^ (easyprivacy.txt: 7398) +.adguru.guruji.com +# ||adf.ly/omni*.swf (easyprivacy.txt: 7397) +.adf.ly/omni.*\.swf +# ||adapd.com/addon/upixel/ (easyprivacy.txt: 7396) +.adapd.com/addon/upixel/ +# ||ad2links.com/lpajax.php? (easyprivacy.txt: 7395) +.ad2links.com/lpajax\.php\? +# ||acura.ca/_Global/js/includes/tracker.js (easyprivacy.txt: 7394) +.acura.ca/_Global/js/includes/tracker\.js +# ||activity.homescape.com^ (easyprivacy.txt: 7393) +.activity.homescape.com +# ||activity.frequency.com^ (easyprivacy.txt: 7392) +.activity.frequency.com +# ||acronymfinder.com/~/st/af.js (easyprivacy.txt: 7391) +.acronymfinder.com/~/st/af\.js +# ||acookie.alibaba.com^ (easyprivacy.txt: 7390) +.acookie.alibaba.com +# ||aclu.org/aclu_statistics_image.php (easyprivacy.txt: 7389) +.aclu.org/aclu_statistics_image\.php +# ||aclst.com/ping.php? (easyprivacy.txt: 7388) +.aclst.com/ping\.php\? +# ||accuterm.com/data/stat.js (easyprivacy.txt: 7387) +.accuterm.com/data/stat\.js +# ||accuratefiles.com/stat (easyprivacy.txt: 7386) +.accuratefiles.com/stat +# ||accuradio.com/static/track/ (easyprivacy.txt: 7385) +.accuradio.com/static/track/ +# ||accountnow.com/SyslogWriter.ashx (easyprivacy.txt: 7384) +.accountnow.com/SyslogWriter\.ashx +# ||academia.edu/record_hit (easyprivacy.txt: 7383) +.academia.edu/record_hit +# ||about.me/wf/open? (easyprivacy.txt: 7382) +.about.me/wf/open\? +# ||abebooks.com/timer.gif? (easyprivacy.txt: 7381) +.abebooks.com/timer\.gif\? +# ||abc.net.au^*/stats/ (easyprivacy.txt: 7380) +.abc.net.au/.*/stats/ +# ||abc.net.au/counters/ (easyprivacy.txt: 7379) +.abc.net.au/counters/ +# ||a7.org/infol.php? (easyprivacy.txt: 7378) +.a7.org/infol\.php\? +# ||a.jango.com^ (easyprivacy.txt: 7377) +.a.jango.com +# ||a.huluad.com/beacons/ (easyprivacy.txt: 7376) +.a.huluad.com/beacons/ +# ||9msn.com.au^*.tracking.udc. (easyprivacy.txt: 7375) +.9msn.com.au/.*\.tracking\.udc\. +# ||9msn.com.au/share/com/js/fb_google_intercept.js (easyprivacy.txt: 7374) +.9msn.com.au/share/com/js/fb_google_intercept\.js +# ||79.125.21.168/i.gif? (easyprivacy.txt: 7372) +.79.125.21.168/i\.gif\? +# ||6waves.com/trker/ (easyprivacy.txt: 7371) +.6waves.com/trker/ +# ||5min.com/PSRs? (easyprivacy.txt: 7369) +.5min.com/PSRs\? +# ||5min.com/PSRq? (easyprivacy.txt: 7368) +.5min.com/PSRq\? +# ||4info.com/alert/listeners/ (easyprivacy.txt: 7366) +.4info.com/alert/listeners/ +# ||4hds.com/js/camstats.js (easyprivacy.txt: 7365) +.4hds.com/js/camstats\.js +# ||3dcartstores.com/3droi/monstertrack.asp (easyprivacy.txt: 7364) +.3dcartstores.com/3droi/monstertrack\.asp +# ||37signals.com/ga.js (easyprivacy.txt: 7363) +.37signals.com/ga\.js +# ||24hourfitness.com/includes/script/siteTracking.js (easyprivacy.txt: 7362) +.24hourfitness.com/includes/script/siteTracking\.js +# ||24caratleeds.co.uk/tr/laredoute/carat_laredoute_ (easyprivacy.txt: 7361) +.24caratleeds.co.uk/tr/laredoute/carat_laredoute_ +# ||1e400.net/tracking.js (easyprivacy.txt: 7359) +.1e400.net/tracking\.js +# ||192.com/log/ (easyprivacy.txt: 7357) +.192.com/log/ +# ||123rf.com/tk/ (easyprivacy.txt: 7356) +.123rf.com/tk/ +# ||123rf.com/j/ga.js (easyprivacy.txt: 7355) +.123rf.com/j/ga\.js +# ||123greetings.com/usr-bin/view_sent.pl? (easyprivacy.txt: 7354) +.123greetings.com/usr-bin/view_sent\.pl\? +# ||top.zp.ua/counter/ (easyprivacy.txt: 7349) +.top.zp.ua/counter/ +# ||mgz.com.ua/counter.php? (easyprivacy.txt: 7348) +.mgz.com.ua/counter\.php\? +# ||metalportal.com.ua/count.php? (easyprivacy.txt: 7347) +.metalportal.com.ua/count\.php\? +# ||counter.opinion.com.ua^ (easyprivacy.txt: 7346) +.counter.opinion.com.ua +# ||vizzit.se^$third-party (easyprivacy.txt: 7344) +.vizzit.se +# ||stats.dominoplaza.com^ (easyprivacy.txt: 7343) +.stats.dominoplaza.com +# ||counter.mtgnewmedia.se^ (easyprivacy.txt: 7342) +.counter.mtgnewmedia.se +# ||collector.schibsted.io^ (easyprivacy.txt: 7341) +.collector.schibsted.io +# ||cis.schibsted.com^ (easyprivacy.txt: 7340) +.cis.schibsted.com +# ||aftonbladet.se/blogportal/view/statistics?$third-party (easyprivacy.txt: 7339) +.aftonbladet.se/blogportal/view/statistics\? +# ||tracker.lgcontent.cl^ (easyprivacy.txt: 7337) +.tracker.lgcontent.cl +# ||track.bluecompany.cl^ (easyprivacy.txt: 7336) +.track.bluecompany.cl +# ||stats.miarroba.info^ (easyprivacy.txt: 7335) +.stats.miarroba.info +# ||stats.lnol.com.ar^ (easyprivacy.txt: 7334) +.stats.lnol.com.ar +# ||reachandrich.antevenio.com^ (easyprivacy.txt: 7333) +.reachandrich.antevenio.com +# ||maik.ff-bt.net^ (easyprivacy.txt: 7332) +.maik.ff-bt.net +# ||leadzu.com^$third-party (easyprivacy.txt: 7331) +.leadzu.com +# ||hits.eluniversal.com.mx^ (easyprivacy.txt: 7330) +.hits.eluniversal.com.mx +# ||epimg.net/js/vr/vrs. (easyprivacy.txt: 7329) +.epimg.net/js/vr/vrs\. +# ||contadores.miarroba.es^ (easyprivacy.txt: 7328) +.contadores.miarroba.es +# ||contadores.miarroba.com^ (easyprivacy.txt: 7327) +.contadores.miarroba.com +# ||interseek.si^*/visit.js (easyprivacy.txt: 7325) +.interseek.si/.*/visit\.js +# ||stat.ringier.sk^ (easyprivacy.txt: 7323) +.stat.ringier.sk +# ||events.ocdn.eu^ (easyprivacy.txt: 7321) +.events.ocdn.eu +# ||csr.onet.pl^ (easyprivacy.txt: 7320) +.csr.onet.pl +# ||clk.onet.pl^ (easyprivacy.txt: 7319) +.clk.onet.pl +# ||zahodi-ka.ru^*/schet.cgi? (easyprivacy.txt: 7317) +.zahodi-ka.ru/.*/schet\.cgi\? +# ||zahodi-ka.ru/ic/index_cnt.fcgi? (easyprivacy.txt: 7316) +.zahodi-ka.ru/ic/index_cnt\.fcgi\? +# ||yandex.ru/metrika/ (easyprivacy.txt: 7315) +.yandex.ru/metrika/ +# ||yandex.ru/cycounter? (easyprivacy.txt: 7314) +.yandex.ru/cycounter\? +# ||yandeg.ru/count/ (easyprivacy.txt: 7313) +.yandeg.ru/count/ +# ||xn--e1aaipcdgnfsn.su^*/counter.php (easyprivacy.txt: 7312) +.xn--e1aaipcdgnfsn.su/.*/counter\.php +# ||wmtools.ru/counter.php? (easyprivacy.txt: 7311) +.wmtools.ru/counter\.php\? +# ||webtrack.biz^$third-party (easyprivacy.txt: 7310) +.webtrack.biz +# ||wapson.ru/counter.php? (easyprivacy.txt: 7309) +.wapson.ru/counter\.php\? +# ||viewstat.promoblocks.ru^ (easyprivacy.txt: 7308) +.viewstat.promoblocks.ru +# ||uptolike.com/widgets/*/imp? (easyprivacy.txt: 7307) +.uptolike.com/widgets/.*/imp\? +# ||upstats.yadro.ru^ (easyprivacy.txt: 7306) +.upstats.yadro.ru +# ||ulogin.ru/js/stats.js (easyprivacy.txt: 7305) +.ulogin.ru/js/stats\.js +# ||traktor.ru^*/counter.php? (easyprivacy.txt: 7304) +.traktor.ru/.*/counter\.php\? +# ||track.rtb-media.ru^ (easyprivacy.txt: 7303) +.track.rtb-media.ru +# ||track.revolvermarketing.ru^ (easyprivacy.txt: 7302) +.track.revolvermarketing.ru +# ||top.sec.uz^ (easyprivacy.txt: 7301) +.top.sec.uz +# ||top.elec.ru^ (easyprivacy.txt: 7300) +.top.elec.ru +# ||top.bur-bur.ru^ (easyprivacy.txt: 7299) +.top.bur-bur.ru +# ||tbe.tom.ru^ (easyprivacy.txt: 7298) +.tbe.tom.ru +# ||target.smi2.net^ (easyprivacy.txt: 7297) +.target.smi2.net +# ||t.pusk.ru^ (easyprivacy.txt: 7296) +.t.pusk.ru +# ||stats.internet-yadro.com^ (easyprivacy.txt: 7295) +.stats.internet-yadro.com +# ||stat.tvigle.ru^ (easyprivacy.txt: 7294) +.stat.tvigle.ru +# ||stat.rum.cdnvideo.ru^ (easyprivacy.txt: 7293) +.stat.rum.cdnvideo.ru +# ||stat.radar.imgsmail.ru^ (easyprivacy.txt: 7292) +.stat.radar.imgsmail.ru +# ||stat-counter.tass-online.ru^ (easyprivacy.txt: 7291) +.stat-counter.tass-online.ru +# ||stat-22.medialand.ru^ (easyprivacy.txt: 7290) +.stat-22.medialand.ru +# ||stainlesssteel.ru/counter.php? (easyprivacy.txt: 7289) +.stainlesssteel.ru/counter\.php\? +# ||sishik.ru/counter.php? (easyprivacy.txt: 7288) +.sishik.ru/counter\.php\? +# ||service-stat.tbn.ru^ (easyprivacy.txt: 7287) +.service-stat.tbn.ru +# ||sepyra.com^$third-party (easyprivacy.txt: 7286) +.sepyra.com +# ||scounter.rambler.ru^ (easyprivacy.txt: 7285) +.scounter.rambler.ru +# ||scnt.rambler.ru^ (easyprivacy.txt: 7284) +.scnt.rambler.ru +# ||s.holm.ru/stat/ (easyprivacy.txt: 7283) +.s.holm.ru/stat/ +# ||s.agava.ru^ (easyprivacy.txt: 7282) +.s.agava.ru +# ||rustopweb.ru/cnt.php? (easyprivacy.txt: 7281) +.rustopweb.ru/cnt\.php\? +# ||recordvideo.me/1x1.png? (easyprivacy.txt: 7280) +.recordvideo.me/1x1\.png\? +# ||rbc.magna.ru^ (easyprivacy.txt: 7279) +.rbc.magna.ru +# ||rambler.ru/counter.js (easyprivacy.txt: 7278) +.rambler.ru/counter\.js +# ||properm.ru/top/counter_new.php? (easyprivacy.txt: 7277) +.properm.ru/top/counter_new\.php\? +# ||promworld.ru^*/counter.php? (easyprivacy.txt: 7276) +.promworld.ru/.*/counter\.php\? +# ||prompages.ru/top/ (easyprivacy.txt: 7275) +.prompages.ru/top/ +# ||pluso.ru/ping.php? (easyprivacy.txt: 7274) +.pluso.ru/ping\.php\? +# ||pluso.ru/counter.php? (easyprivacy.txt: 7273) +.pluso.ru/counter\.php\? +# ||penza-online.ru^*/userstats.pl? (easyprivacy.txt: 7272) +.penza-online.ru/.*/userstats\.pl\? +# ||optimizavr.ru/counter.php? (easyprivacy.txt: 7271) +.optimizavr.ru/counter\.php\? +# ||open.ua/stat/ (easyprivacy.txt: 7270) +.open.ua/stat/ +# ||onlines.su/counter.php? (easyprivacy.txt: 7269) +.onlines.su/counter\.php\? +# ||odessaaccommodations.com/counter.php (easyprivacy.txt: 7268) +.odessaaccommodations.com/counter\.php +# ||niknok.ru/count.asp? (easyprivacy.txt: 7267) +.niknok.ru/count\.asp\? +# ||myrealty.su/counter/ (easyprivacy.txt: 7266) +.myrealty.su/counter/ +# ||mymetal.ru/counter/ (easyprivacy.txt: 7265) +.mymetal.ru/counter/ +# ||mymed.su/counter/ (easyprivacy.txt: 7264) +.mymed.su/counter/ +# ||montblanc.rambler.ru^ (easyprivacy.txt: 7263) +.montblanc.rambler.ru +# ||mobtop.ru/c/$third-party (easyprivacy.txt: 7262) +.mobtop.ru/c/ +# ||metka.ru/counter/ (easyprivacy.txt: 7261) +.metka.ru/counter/ +# ||medorgs.ru/js/counterlog_img.js (easyprivacy.txt: 7260) +.medorgs.ru/js/counterlog_img\.js +# ||mediaplus.fm/cntr.php? (easyprivacy.txt: 7259) +.mediaplus.fm/cntr\.php\? +# ||linestudio.ru/counter/ (easyprivacy.txt: 7258) +.linestudio.ru/counter/ +# ||kvartirant.ru/counter.php? (easyprivacy.txt: 7257) +.kvartirant.ru/counter\.php\? +# ||karelia.info/counter/ (easyprivacy.txt: 7256) +.karelia.info/counter/ +# ||izhevskinfo.ru/count/ (easyprivacy.txt: 7255) +.izhevskinfo.ru/count/ +# ||inforotor.net/rotor/ (easyprivacy.txt: 7254) +.inforotor.net/rotor/ +# ||infopolit.com/counter/ (easyprivacy.txt: 7253) +.infopolit.com/counter/ +# ||ifolder.ru/stat/? (easyprivacy.txt: 7252) +.ifolder.ru/stat/\? +# ||hubrus.com^$third-party (easyprivacy.txt: 7251) +.hubrus.com +# ||gde.ru/isapi/tracker.dll? (easyprivacy.txt: 7250) +.gde.ru/isapi/tracker\.dll\? +# ||gainings.biz/counter.php? (easyprivacy.txt: 7249) +.gainings.biz/counter\.php\? +# ||emoment.net/cnt/ (easyprivacy.txt: 7248) +.emoment.net/cnt/ +# ||dp.ru/counter.gif? (easyprivacy.txt: 7247) +.dp.ru/counter\.gif\? +# ||counter.wapstart.ru^ (easyprivacy.txt: 7246) +.counter.wapstart.ru +# ||counter.tovarro.com^ (easyprivacy.txt: 7245) +.counter.tovarro.com +# ||counter.rian.ru^ (easyprivacy.txt: 7244) +.counter.rian.ru +# ||counter.pr-cy.ru^ (easyprivacy.txt: 7243) +.counter.pr-cy.ru +# ||counter.photopulse.ru^ (easyprivacy.txt: 7242) +.counter.photopulse.ru +# ||counter.nn.ru^ (easyprivacy.txt: 7241) +.counter.nn.ru +# ||counter.megaindex.ru^ (easyprivacy.txt: 7240) +.counter.megaindex.ru +# ||counter.amik.ru^ (easyprivacy.txt: 7239) +.counter.amik.ru +# ||count.yandeg.ru^ (easyprivacy.txt: 7238) +.count.yandeg.ru +# ||cnt.rate.ru^ (easyprivacy.txt: 7237) +.cnt.rate.ru +# ||cnt.rambler.ru^ (easyprivacy.txt: 7236) +.cnt.rambler.ru +# ||cnt.nov.ru^ (easyprivacy.txt: 7235) +.cnt.nov.ru +# ||cnt.logoslovo.ru^ (easyprivacy.txt: 7234) +.cnt.logoslovo.ru +# ||cnstats.cdev.eu^ (easyprivacy.txt: 7233) +.cnstats.cdev.eu +# ||climatecontrol.ru/counters/ (easyprivacy.txt: 7232) +.climatecontrol.ru/counters/ +# ||clck.yandex.ru^$~other (easyprivacy.txt: 7231) +.clck.yandex.ru +# ||c.bigmir.net^ (easyprivacy.txt: 7230) +.c.bigmir.net +# ||bs.yandex.ru^ (easyprivacy.txt: 7229) +.bs.yandex.ru +# ||bioraywaterrank.ru/count/ (easyprivacy.txt: 7228) +.bioraywaterrank.ru/count/ +# ||bigday.ru/counter.php? (easyprivacy.txt: 7227) +.bigday.ru/counter\.php\? +# ||awaps.yandex.ru^ (easyprivacy.txt: 7226) +.awaps.yandex.ru +# ||autoretro.com.ua/smtop/ (easyprivacy.txt: 7225) +.autoretro.com.ua/smtop/ +# ||anycent.com/analytics/ (easyprivacy.txt: 7224) +.anycent.com/analytics/ +# ||all-top.ru/cgi-bin/topcount.cgi? (easyprivacy.txt: 7223) +.all-top.ru/cgi-bin/topcount\.cgi\? +# ||agates.ru/counters/ (easyprivacy.txt: 7222) +.agates.ru/counters/ +# ||adlik.akavita.com/bin/lik? (easyprivacy.txt: 7221) +.adlik.akavita.com/bin/lik\? +# ||7host.ru/tr/*?r=$third-party (easyprivacy.txt: 7220) +.7host.ru/tr/.*\?r= +# ||1in.kz/counter? (easyprivacy.txt: 7219) +.1in.kz/counter\? +# ||top.skyzone.ro^ (easyprivacy.txt: 7217) +.top.skyzone.ro +# ||t5.ro/static/$third-party (easyprivacy.txt: 7216) +.t5.ro/static/ +# ||xl.pt/api/stats.ashx? (easyprivacy.txt: 7214) +.xl.pt/api/stats\.ashx\? +# ||webstats.sapo.pt^ (easyprivacy.txt: 7213) +.webstats.sapo.pt +# ||track.e7r.com.br^ (easyprivacy.txt: 7212) +.track.e7r.com.br +# ||terra.com.br/metrics/ (easyprivacy.txt: 7211) +.terra.com.br/metrics/ +# ||statig.com.br/pub/setCookie.js? (easyprivacy.txt: 7210) +.statig.com.br/pub/setCookie\.js\? +# ||lomadee.com/loc/$third-party (easyprivacy.txt: 7209) +.lomadee.com/loc/ +# ||jsuol.com/rm/clicklogger_ (easyprivacy.txt: 7208) +.jsuol.com/rm/clicklogger_ +# ||hitserver.ibope.com.br^ (easyprivacy.txt: 7207) +.hitserver.ibope.com.br +# ||contadorgratis.web-kit.org^ (easyprivacy.txt: 7206) +.contadorgratis.web-kit.org +# ||wymiana.org/stat/ (easyprivacy.txt: 7204) +.wymiana.org/stat/ +# ||tracking.novem.pl^ (easyprivacy.txt: 7203) +.tracking.novem.pl +# ||statystyki.panelek.com^ (easyprivacy.txt: 7202) +.statystyki.panelek.com +# ||stats.media.onet.pl^ (easyprivacy.txt: 7201) +.stats.media.onet.pl +# ||stats.asp24.pl^ (easyprivacy.txt: 7200) +.stats.asp24.pl +# ||liczniki.org/hit.php (easyprivacy.txt: 7199) +.liczniki.org/hit\.php +# ||cafenews.pl/mpl/static/static.js? (easyprivacy.txt: 7198) +.cafenews.pl/mpl/static/static\.js\? +# ||webhit.snd.no^ (easyprivacy.txt: 7196) +.webhit.snd.no +# ||engage-cdn.schibsted.media^ (easyprivacy.txt: 7195) +.engage-cdn.schibsted.media +# ||top.dkd.lt^$third-party (easyprivacy.txt: 7193) +.top.dkd.lt +# ||top.dating.lt^$third-party (easyprivacy.txt: 7192) +.top.dating.lt +# ||top.chebra.lt^$third-party (easyprivacy.txt: 7191) +.top.chebra.lt +# ||hits.sys.lv^ (easyprivacy.txt: 7189) +.hits.sys.lv +# ||counter.hackers.lv^ (easyprivacy.txt: 7188) +.counter.hackers.lv +# ||naver.net/wcslog.js (easyprivacy.txt: 7186) +.naver.net/wcslog\.js +# ||cafe24.com/weblog.js (easyprivacy.txt: 7185) +.cafe24.com/weblog\.js +# ||yahoo.co.jp/js/s_retargeting.js (easyprivacy.txt: 7182) +.yahoo.co.jp/js/s_retargeting\.js +# ||yahoo.co.jp/js/retargeting.js (easyprivacy.txt: 7181) +.yahoo.co.jp/js/retargeting\.js +# ||yahoo-search.jp/img/bcn.gif? (easyprivacy.txt: 7180) +.yahoo-search.jp/img/bcn\.gif\? +# ||webtracker.jp^$third-party (easyprivacy.txt: 7179) +.webtracker.jp +# ||userdive.com^$third-party (easyprivacy.txt: 7178) +.userdive.com +# ||trck.dlpo.jp^ (easyprivacy.txt: 7177) +.trck.dlpo.jp +# ||seesaa.jp/ot_square.pl? (easyprivacy.txt: 7176) +.seesaa.jp/ot_square\.pl\? +# ||rd.rakuten.co.jp^ (easyprivacy.txt: 7175) +.rd.rakuten.co.jp +# ||otoshiana.com/ufo/ (easyprivacy.txt: 7174) +.otoshiana.com/ufo/ +# ||mofa.go.jp^*/count.cgi? (easyprivacy.txt: 7173) +.mofa.go.jp/.*/count\.cgi\? +# ||lcs.livedoor.net^ (easyprivacy.txt: 7172) +.lcs.livedoor.net +# ||l.popin.cc^ (easyprivacy.txt: 7171) +.l.popin.cc +# ||imgstat.ameba.jp^$third-party (easyprivacy.txt: 7170) +.imgstat.ameba.jp +# ||counter2.blog.livedoor.com^ (easyprivacy.txt: 7169) +.counter2.blog.livedoor.com +# ||clickanalyzer.jp^$third-party (easyprivacy.txt: 7168) +.clickanalyzer.jp +# ||analyzer51.fc2.com^ (easyprivacy.txt: 7167) +.analyzer51.fc2.com +# ||analysis.shinobi.jp^ (easyprivacy.txt: 7166) +.analysis.shinobi.jp +# ||wmtools.it/wmtcounter.php? (easyprivacy.txt: 7163) +.wmtools.it/wmtcounter\.php\? +# ||websolutions.it/statistiche/ (easyprivacy.txt: 7162) +.websolutions.it/statistiche/ +# ||webbificio.com/wm.asp? (easyprivacy.txt: 7161) +.webbificio.com/wm\.asp\? +# ||webbificio.com/add.asp? (easyprivacy.txt: 7160) +.webbificio.com/add\.asp\? +# ||ts.blogo.it^ (easyprivacy.txt: 7159) +.ts.blogo.it +# ||tracy.sadv.dadapro.com^ (easyprivacy.txt: 7158) +.tracy.sadv.dadapro.com +# ||tracks.arubamediamarketing.it^ (easyprivacy.txt: 7157) +.tracks.arubamediamarketing.it +# ||tracking.conversionlab.it^ (easyprivacy.txt: 7156) +.tracking.conversionlab.it +# ||tracking.conversion-lab.it^ (easyprivacy.txt: 7155) +.tracking.conversion-lab.it +# ||tracker.bestshopping.com^ (easyprivacy.txt: 7154) +.tracker.bestshopping.com +# ||track.youniversalmedia.com^ (easyprivacy.txt: 7153) +.track.youniversalmedia.com +# ||track.adintend.com^ (easyprivacy.txt: 7152) +.track.adintend.com +# ||tr.bt.matrixspa.it^ (easyprivacy.txt: 7151) +.tr.bt.matrixspa.it +# ||top100.tuttoperinternet.it^ (easyprivacy.txt: 7150) +.top100.tuttoperinternet.it +# ||top100.mrwebmaster.it^ (easyprivacy.txt: 7149) +.top100.mrwebmaster.it +# ||stats2.*.fdnames.com^ (easyprivacy.txt: 7148) +.stats2.*./.*\.fdnames\.com[^\w%.-] +.stats2.*.fdnames.com +# ||stats.technopia.it^ (easyprivacy.txt: 7147) +.stats.technopia.it +# ||stats.rcsobjects.it^ (easyprivacy.txt: 7146) +.stats.rcsobjects.it +# ||stats.itsol.it^ (easyprivacy.txt: 7145) +.stats.itsol.it +# ||stat.webtool.it^ (easyprivacy.txt: 7144) +.stat.webtool.it +# ||stat.freetool.it^ (easyprivacy.txt: 7143) +.stat.freetool.it +# ||stat.acca.it^ (easyprivacy.txt: 7142) +.stat.acca.it +# ||shinystat.lvlar.com^ (easyprivacy.txt: 7141) +.shinystat.lvlar.com +# ||sembox.it/js/sembox-tracking.js (easyprivacy.txt: 7140) +.sembox.it/js/sembox-tracking\.js +# ||rd.alice.it^ (easyprivacy.txt: 7139) +.rd.alice.it +# ||rcsmetrics.it^ (easyprivacy.txt: 7138) +.rcsmetrics.it +# ||quinet.it/counter/ (easyprivacy.txt: 7137) +.quinet.it/counter/ +# ||plug.it^*/tracking_ (easyprivacy.txt: 7136) +.plug.it/.*/tracking_ +# ||plug.it/tracks/ (easyprivacy.txt: 7135) +.plug.it/tracks/ +# ||noicattolici.it/x_visite/ (easyprivacy.txt: 7134) +.noicattolici.it/x_visite/ +# ||net-parade.it/tracker/ (easyprivacy.txt: 7133) +.net-parade.it/tracker/ +# ||nanostats.nanopress.it^ (easyprivacy.txt: 7132) +.nanostats.nanopress.it +# ||nanopress.it/lab.js (easyprivacy.txt: 7131) +.nanopress.it/lab\.js +# ||mytictac.com^*/pointeur.gif? (easyprivacy.txt: 7130) +.mytictac.com/.*/pointeur\.gif\? +# ||mrwebmaster.it/work/stats.php? (easyprivacy.txt: 7129) +.mrwebmaster.it/work/stats\.php\? +# ||mibatech.com/track/ (easyprivacy.txt: 7128) +.mibatech.com/track/ +# ||log.superweb.ws^ (easyprivacy.txt: 7127) +.log.superweb.ws +# ||livestats.matrix.it^ (easyprivacy.txt: 7126) +.livestats.matrix.it +# ||httdev.it/e/c? (easyprivacy.txt: 7125) +.httdev.it/e/c\? +# ||glomera.com/stats (easyprivacy.txt: 7124) +.glomera.com/stats +# ||gazzettaobjects.it^*/tracking/ (easyprivacy.txt: 7123) +.gazzettaobjects.it/.*/tracking/ +# ||fcstats.altervista.org^$third-party (easyprivacy.txt: 7122) +.fcstats.altervista.org +# ||evnt.iol.it^ (easyprivacy.txt: 7121) +.evnt.iol.it +# ||eageweb.com/stats.php (easyprivacy.txt: 7120) +.eageweb.com/stats\.php +# ||eageweb.com/count2.php? (easyprivacy.txt: 7119) +.eageweb.com/count2\.php\? +# ||eageweb.com/count.php? (easyprivacy.txt: 7118) +.eageweb.com/count\.php\? +# ||eage.it/count2.php? (easyprivacy.txt: 7117) +.eage.it/count2\.php\? +# ||diritalia.com^*/seosensor.js (easyprivacy.txt: 7116) +.diritalia.com/.*/seosensor\.js +# ||digiland.it/count.cgi? (easyprivacy.txt: 7115) +.digiland.it/count\.cgi\? +# ||dd3p.com/sensor/ddsense.aspx? (easyprivacy.txt: 7114) +.dd3p.com/sensor/ddsense\.aspx\? +# ||counter.ksm.it^ (easyprivacy.txt: 7113) +.counter.ksm.it +# ||corriereobjects.it^*/tracking/ (easyprivacy.txt: 7112) +.corriereobjects.it/.*/tracking/ +# ||contatore-di-visite.campusanuncios.com^ (easyprivacy.txt: 7111) +.contatore-di-visite.campusanuncios.com +# ||click.kataweb.it^ (easyprivacy.txt: 7110) +.click.kataweb.it +# ||bstracker.blogspirit.net^ (easyprivacy.txt: 7109) +.bstracker.blogspirit.net +# ||audienceserver.aws.forebase.com^ (easyprivacy.txt: 7108) +.audienceserver.aws.forebase.com +# ||aruba.it/servlet/counterserver? (easyprivacy.txt: 7107) +.aruba.it/servlet/counterserver\? +# ||analytics.linkwelove.com^ (easyprivacy.txt: 7106) +.analytics.linkwelove.com +# ||analytics.digitouch.it^ (easyprivacy.txt: 7105) +.analytics.digitouch.it +# ||alice.it/cnt/ (easyprivacy.txt: 7104) +.alice.it/cnt/ +# ||91.196.216.64^ (easyprivacy.txt: 7103) +.91.196.216.64 +# ||4me.it^*/incrementVisits_get? (easyprivacy.txt: 7102) +.4me.it/.*/incrementVisits_get\? +# ||videostat.index.hu^ (easyprivacy.txt: 7100) +.videostat.index.hu +# ||videostat-new.index.hu^ (easyprivacy.txt: 7099) +.videostat-new.index.hu +# ||pagerank.g-easy.hu^ (easyprivacy.txt: 7098) +.pagerank.g-easy.hu +# ||gpr.hu/pr.pr? (easyprivacy.txt: 7097) +.gpr.hu/pr\.pr\? +# ||walla.co.il/stats/ (easyprivacy.txt: 7095) +.walla.co.il/stats/ +# ||stats.e-go.gr^ (easyprivacy.txt: 7093) +.stats.e-go.gr +# ||analyticsv2.dol.gr^ (easyprivacy.txt: 7092) +.analyticsv2.dol.gr +# ||analytics.dol.gr^ (easyprivacy.txt: 7091) +.analytics.dol.gr +# ||links.boom.ge^ (easyprivacy.txt: 7089) +.links.boom.ge +# ||counter.top.ge^$third-party (easyprivacy.txt: 7088) +.counter.top.ge +# ||sestatic.fi^*/zig.js (easyprivacy.txt: 7086) +.sestatic.fi/.*/zig\.js +# ||inpref.s3.amazonaws.com^$third-party (easyprivacy.txt: 7085) +.inpref.s3.amazonaws.com +# ||log.ee/count.php? (easyprivacy.txt: 7083) +.log.ee/count\.php\? +# ||counter.zone.ee^$third-party (easyprivacy.txt: 7082) +.counter.zone.ee +# ||statistics.rbi-nl.com^ (easyprivacy.txt: 7080) +.statistics.rbi-nl.com +# ||marktplaats.net/cnt/ (easyprivacy.txt: 7079) +.marktplaats.net/cnt/ +# ||hottraffic.nl^$third-party (easyprivacy.txt: 7078) +.hottraffic.nl +# ||cookies.reedbusiness.nl^ (easyprivacy.txt: 7077) +.cookies.reedbusiness.nl +# ||c.pebblemedia.be^ (easyprivacy.txt: 7076) +.c.pebblemedia.be +# ||bbvms.com/zone/js/zonestats.js (easyprivacy.txt: 7075) +.bbvms.com/zone/js/zonestats\.js +# ||analytics.belgacom.be^ (easyprivacy.txt: 7074) +.analytics.belgacom.be +# ||wwwportal.dk/statistik.php (easyprivacy.txt: 7071) +.wwwportal.dk/statistik\.php +# ||wee.dk/modules/$third-party (easyprivacy.txt: 7070) +.wee.dk/modules/ +# ||ubt.berlingskemedia.net^ (easyprivacy.txt: 7069) +.ubt.berlingskemedia.net +# ||newbie.dk^*/counter.php? (easyprivacy.txt: 7068) +.newbie.dk/.*/counter\.php\? +# ||newbie.dk/topref.php? (easyprivacy.txt: 7067) +.newbie.dk/topref\.php\? +# ||counter.nope.dk^$third-party (easyprivacy.txt: 7066) +.counter.nope.dk +# ||blogtoppen.dk^*/bt_tracker.js (easyprivacy.txt: 7065) +.blogtoppen.dk/.*/bt_tracker\.js +# ||t.leady.cz^ (easyprivacy.txt: 7063) +.t.leady.cz +# ||stats.mf.cz^ (easyprivacy.txt: 7062) +.stats.mf.cz +# ||stat.ringier.cz^$third-party (easyprivacy.txt: 7061) +.stat.ringier.cz +# ||log.idnes.cz^ (easyprivacy.txt: 7060) +.log.idnes.cz +# ||h.imedia.cz^ (easyprivacy.txt: 7059) +.h.imedia.cz +# ||counter.cnw.cz^ (easyprivacy.txt: 7058) +.counter.cnw.cz +# ||tracking.vid4u.org^ (easyprivacy.txt: 7056) +.tracking.vid4u.org +# ||yigouw.com/c.js (easyprivacy.txt: 7054) +.yigouw.com/c\.js +# ||v.emedia.cn^ (easyprivacy.txt: 7053) +.v.emedia.cn +# ||traffic.bokecc.com^ (easyprivacy.txt: 7052) +.traffic.bokecc.com +# ||tracking.cat898.com^ (easyprivacy.txt: 7051) +.tracking.cat898.com +# ||track.ra.icast.cn^ (easyprivacy.txt: 7050) +.track.ra.icast.cn +# ||toruk.tanx.com^ (easyprivacy.txt: 7049) +.toruk.tanx.com +# ||tns.simba.taobao.com^ (easyprivacy.txt: 7048) +.tns.simba.taobao.com +# ||tanx.com/t/tanxcollect.js (easyprivacy.txt: 7047) +.tanx.com/t/tanxcollect\.js +# ||tanx.com/t/tanxclick.js (easyprivacy.txt: 7046) +.tanx.com/t/tanxclick\.js +# ||t.hypers.com.cn^ (easyprivacy.txt: 7045) +.t.hypers.com.cn +# ||stat.ws.126.net^ (easyprivacy.txt: 7044) +.stat.ws.126.net +# ||sohu.com/pvpb.gif? (easyprivacy.txt: 7043) +.sohu.com/pvpb\.gif\? +# ||sobeycloud.com/Services/Stat. (easyprivacy.txt: 7042) +.sobeycloud.com/Services/Stat\. +# ||sitemaji.com/nownews.php? (easyprivacy.txt: 7041) +.sitemaji.com/nownews\.php\? +# ||r.sax.sina.com.cn^ (easyprivacy.txt: 7040) +.r.sax.sina.com.cn +# ||pos.baidu.com^ (easyprivacy.txt: 7039) +.pos.baidu.com +# ||n.yunshipei.com^ (easyprivacy.txt: 7038) +.n.yunshipei.com +# ||mlt01.com/cmp.htm$third-party (easyprivacy.txt: 7037) +.mlt01.com/cmp\.htm +# ||look.urs.tw^$third-party (easyprivacy.txt: 7036) +.look.urs.tw +# ||log.v.iask.com^ (easyprivacy.txt: 7035) +.log.v.iask.com +# ||log.hiiir.com^ (easyprivacy.txt: 7034) +.log.hiiir.com +# ||js.static.m1905.cn/pingd.js (easyprivacy.txt: 7033) +.js.static.m1905.cn/pingd\.js +# ||js.letvcdn.com/js/*/stats/ (easyprivacy.txt: 7032) +.js.letvcdn.com/js/.*/stats/ +# ||ifengimg.com/sta_collection.*.js (easyprivacy.txt: 7031) +.ifengimg.com/sta_collection\..*\.js +# ||haostat.qihoo.com^ (easyprivacy.txt: 7030) +.haostat.qihoo.com +# ||etwun.com:8080/counter.php? (easyprivacy.txt: 7029) +.etwun.com:8080/counter\.php\? +# ||dw.cbsi.com.cn^$third-party (easyprivacy.txt: 7028) +.dw.cbsi.com.cn +# ||css.aliyun.com^$third-party (easyprivacy.txt: 7027) +.css.aliyun.com +# ||csdn.net^*/counter.js (easyprivacy.txt: 7026) +.csdn.net/.*/counter\.js +# ||csbew.com^$third-party (easyprivacy.txt: 7025) +.csbew.com +# ||cri.cn/js/a1.js (easyprivacy.txt: 7024) +.cri.cn/js/a1\.js +# ||counter.csdn.net^$script (easyprivacy.txt: 7023) +.counter.csdn.net +# ||cnzz.com/c.php? (easyprivacy.txt: 7022) +.cnzz.com/c\.php\? +# ||cms.grandcloud.cn^$third-party (easyprivacy.txt: 7021) +.cms.grandcloud.cn +# ||click.bokecc.com^ (easyprivacy.txt: 7020) +.click.bokecc.com +# ||changyan.sohu.com/stat/ (easyprivacy.txt: 7019) +.changyan.sohu.com/stat/ +# ||cdnmaster.com/sitemaster/sm360.js (easyprivacy.txt: 7018) +.cdnmaster.com/sitemaster/sm360\.js +# ||cdn.hiido.cn^$third-party (easyprivacy.txt: 7017) +.cdn.hiido.cn +# ||cbsi.com.cn/js/dw.js (easyprivacy.txt: 7016) +.cbsi.com.cn/js/dw\.js +# ||bzclk.baidu.com^ (easyprivacy.txt: 7015) +.bzclk.baidu.com +# ||bokecc.com/flash/timerecorder? (easyprivacy.txt: 7014) +.bokecc.com/flash/timerecorder\? +# ||bokecc.com/flash/playlog? (easyprivacy.txt: 7013) +.bokecc.com/flash/playlog\? +# ||beacon.sina.com.cn^ (easyprivacy.txt: 7012) +.beacon.sina.com.cn +# ||baidu.com/js/o.js (easyprivacy.txt: 7011) +.baidu.com/js/o\.js +# ||baidu.com/js/m.js (easyprivacy.txt: 7010) +.baidu.com/js/m\.js +# ||baidu.com/hm.gif? (easyprivacy.txt: 7009) +.baidu.com/hm\.gif\? +# ||baidu.com/h.js? (easyprivacy.txt: 7008) +.baidu.com/h\.js\? +# ||baidu.com/cpro/ui/f.js (easyprivacy.txt: 7007) +.baidu.com/cpro/ui/f\.js +# ||baidu.com/cpro/ui/c.js (easyprivacy.txt: 7006) +.baidu.com/cpro/ui/c\.js +# ||analytics.21cn.com^ (easyprivacy.txt: 7005) +.analytics.21cn.com +# ||alipay.com/common/um/lsa.swf (easyprivacy.txt: 7004) +.alipay.com/common/um/lsa\.swf +# ||alimama.cn/inf.js (easyprivacy.txt: 7003) +.alimama.cn/inf\.js +# ||360.cn/mapping_service? (easyprivacy.txt: 7002) +.360.cn/mapping_service\? +# ||aff*.kolektiva.net^ (easyprivacy.txt: 7000) +.aff*./.*\.kolektiva\.net[^\w%.-] +.aff*.kolektiva.net +# ||minsk-in.net/counter.php? (easyprivacy.txt: 6998) +.minsk-in.net/counter\.php\? +# ||zebestof.com^$third-party (easyprivacy.txt: 6996) +.zebestof.com +# ||woopic.com/Magic/o_vr.js (easyprivacy.txt: 6995) +.woopic.com/Magic/o_vr\.js +# ||wifeo.com/compteurs/$third-party (easyprivacy.txt: 6994) +.wifeo.com/compteurs/ +# ||webtutoriaux.com/services/compteur-visiteurs/index.php?$third-party (easyprivacy.txt: 6993) +.webtutoriaux.com/services/compteur-visiteurs/index\.php\? +# ||webreseau.com/impression.asp? (easyprivacy.txt: 6992) +.webreseau.com/impression\.asp\? +# ||veoxa.com/get_trackingcode. (easyprivacy.txt: 6991) +.veoxa.com/get_trackingcode\. +# ||tsphone.biz/pixelvoleur.jpg? (easyprivacy.txt: 6990) +.tsphone.biz/pixelvoleur\.jpg\? +# ||trk.adbutter.net^ (easyprivacy.txt: 6989) +.trk.adbutter.net +# ||tracking.veille-referencement.com^ (easyprivacy.txt: 6988) +.tracking.veille-referencement.com +# ||tracking.netvigie.com^ (easyprivacy.txt: 6987) +.tracking.netvigie.com +# ||tracking.ecookie.fr^ (easyprivacy.txt: 6986) +.tracking.ecookie.fr +# ||track.byzon.swelen.net^$third-party (easyprivacy.txt: 6985) +.track.byzon.swelen.net +# ||tr.cloud-media.fr^ (easyprivacy.txt: 6984) +.tr.cloud-media.fr +# ||t.planvip.fr^$third-party (easyprivacy.txt: 6983) +.t.planvip.fr +# ||stats.buzzea.com^ (easyprivacy.txt: 6982) +.stats.buzzea.com +# ||stat.prsmedia.fr^ (easyprivacy.txt: 6981) +.stat.prsmedia.fr +# ||service-webmaster.fr/cpt-visites/$third-party (easyprivacy.txt: 6980) +.service-webmaster.fr/cpt-visites/ +# ||scriptsgratuits.com/sg/stats/ (easyprivacy.txt: 6979) +.scriptsgratuits.com/sg/stats/ +# ||piximedia.com^$third-party (easyprivacy.txt: 6978) +.piximedia.com +# ||pagesjaunes.fr/stat/ (easyprivacy.txt: 6977) +.pagesjaunes.fr/stat/ +# ||nws.naltis.com^ (easyprivacy.txt: 6976) +.nws.naltis.com +# ||nvc.n1bus-exp.com^ (easyprivacy.txt: 6975) +.nvc.n1bus-exp.com +# ||neteventsmedia.be/hit.cfm? (easyprivacy.txt: 6974) +.neteventsmedia.be/hit\.cfm\? +# ||makazi.com/tracker- (easyprivacy.txt: 6973) +.makazi.com/tracker- +# ||m6web.fr/statsd/ (easyprivacy.txt: 6972) +.m6web.fr/statsd/ +# ||live-medias.net/button.php?$third-party (easyprivacy.txt: 6971) +.live-medias.net/button\.php\? +# ||linguee.fr/white_pixel.gif (easyprivacy.txt: 6970) +.linguee.fr/white_pixel\.gif +# ||i-services.net^*/compteur.php? (easyprivacy.txt: 6969) +.i-services.net/.*/compteur\.php\? +# ||free.fr/services/compteur_page.php? (easyprivacy.txt: 6968) +.free.fr/services/compteur_page\.php\? +# ||free.fr/cgi-bin/wwwcount.cgi? (easyprivacy.txt: 6967) +.free.fr/cgi-bin/wwwcount\.cgi\? +# ||email-reflex.com^$third-party (easyprivacy.txt: 6966) +.email-reflex.com +# ||e.funnymel.com^$third-party (easyprivacy.txt: 6965) +.e.funnymel.com +# ||e-pagerank.fr/bouton.gif?$third-party (easyprivacy.txt: 6964) +.e-pagerank.fr/bouton\.gif\? +# ||devtribu.fr/t.php? (easyprivacy.txt: 6963) +.devtribu.fr/t\.php\? +# ||da-kolkoz.com/da-top/track/ (easyprivacy.txt: 6962) +.da-kolkoz.com/da-top/track/ +# ||cdn-analytics.ladmedia.fr^ (easyprivacy.txt: 6961) +.cdn-analytics.ladmedia.fr +# ||calotag.com^$third-party (easyprivacy.txt: 6960) +.calotag.com +# ||btstats.devtribu.fr^ (easyprivacy.txt: 6959) +.btstats.devtribu.fr +# ||blogrankings.com/img_$third-party (easyprivacy.txt: 6958) +.blogrankings.com/img_ +# ||blogoutils.com/online-$third-party (easyprivacy.txt: 6957) +.blogoutils.com/online- +# ||bbtrack.net^$third-party (easyprivacy.txt: 6956) +.bbtrack.net +# ||analytics.ladmedia.fr^ (easyprivacy.txt: 6955) +.analytics.ladmedia.fr +# ||analytics.freespee.com^ (easyprivacy.txt: 6954) +.analytics.freespee.com +# ||affiliation.planethoster.info^$third-party (easyprivacy.txt: 6953) +.affiliation.planethoster.info +# ||abs.proxistore.com^ (easyprivacy.txt: 6952) +.abs.proxistore.com +# ||01net.com/track/ (easyprivacy.txt: 6951) +.01net.com/track/ +# ||shofonline.org/javashofnet/ti.js (easyprivacy.txt: 6949) +.shofonline.org/javashofnet/ti\.js +# ||analytics.traidnt.net^ (easyprivacy.txt: 6948) +.analytics.traidnt.net +# ||zs.dhl.de^ (easyprivacy.txt: 6946) +.zs.dhl.de +# ||xnewsletter.de/count/counter.php? (easyprivacy.txt: 6945) +.xnewsletter.de/count/counter\.php\? +# ||x.bloggurat.net^ (easyprivacy.txt: 6944) +.x.bloggurat.net +# ||wrmwb.7val.com^ (easyprivacy.txt: 6943) +.wrmwb.7val.com +# ||wieistmeineip.de/ip-address/$third-party (easyprivacy.txt: 6942) +.wieistmeineip.de/ip-address/ +# ||webstatistik.odav.de^$third-party (easyprivacy.txt: 6941) +.webstatistik.odav.de +# ||webcounter.goweb.de^ (easyprivacy.txt: 6940) +.webcounter.goweb.de +# ||vtrtl.de^ (easyprivacy.txt: 6939) +.vtrtl.de +# ||verticalnetwork.de/scripts/*/immer_oben.js (easyprivacy.txt: 6938) +.verticalnetwork.de/scripts/.*/immer_oben\.js +# ||vertical-n.de/scripts/*/immer_oben.js (easyprivacy.txt: 6937) +.vertical-n.de/scripts/.*/immer_oben\.js +# ||veeseo.com^*/view/$image (easyprivacy.txt: 6936) +.veeseo.com/.*/view/ +# ||veeseo.com^*/url.gif? (easyprivacy.txt: 6935) +.veeseo.com/.*/url\.gif\? +# ||uni-leipzig.de^*/stats/ (easyprivacy.txt: 6934) +.uni-leipzig.de/.*/stats/ +# ||uni-duesseldorf.de/cgi-bin/nph-count? (easyprivacy.txt: 6933) +.uni-duesseldorf.de/cgi-bin/nph-count\? +# ||trck.spoteffects.net^ (easyprivacy.txt: 6932) +.trck.spoteffects.net +# ||traffic.brand-wall.net^ (easyprivacy.txt: 6931) +.traffic.brand-wall.net +# ||tracking.srv2.de^ (easyprivacy.txt: 6930) +.tracking.srv2.de +# ||tracking.sim-technik.de^ (easyprivacy.txt: 6929) +.tracking.sim-technik.de +# ||tracking.s24.com^ (easyprivacy.txt: 6928) +.tracking.s24.com +# ||tracking.rtl.de^ (easyprivacy.txt: 6927) +.tracking.rtl.de +# ||tracking.rce.veeseo.com^ (easyprivacy.txt: 6926) +.tracking.rce.veeseo.com +# ||tracking.promiflash.de^ (easyprivacy.txt: 6925) +.tracking.promiflash.de +# ||tracking.netzathleten-media.de^ (easyprivacy.txt: 6924) +.tracking.netzathleten-media.de +# ||tracking.mvsuite.de^ (easyprivacy.txt: 6923) +.tracking.mvsuite.de +# ||tracking.mindshare.de^ (easyprivacy.txt: 6922) +.tracking.mindshare.de +# ||tracking.ladies.de^ (easyprivacy.txt: 6921) +.tracking.ladies.de +# ||tracking.hi-pi.com^ (easyprivacy.txt: 6920) +.tracking.hi-pi.com +# ||tracking.hannoversche.de^ (easyprivacy.txt: 6919) +.tracking.hannoversche.de +# ||tracking.gameforge.de^ (easyprivacy.txt: 6918) +.tracking.gameforge.de +# ||tracking.ddd.de^ (easyprivacy.txt: 6917) +.tracking.ddd.de +# ||tracking.base.de^ (easyprivacy.txt: 6916) +.tracking.base.de +# ||tracking-rce.veeseo.com^ (easyprivacy.txt: 6915) +.tracking-rce.veeseo.com +# ||tracker.winload.de^ (easyprivacy.txt: 6914) +.tracker.winload.de +# ||tracker.netdisk.de^ (easyprivacy.txt: 6913) +.tracker.netdisk.de +# ||tracker.euroweb.net^ (easyprivacy.txt: 6912) +.tracker.euroweb.net +# ||track2.mycliplister.com^ (easyprivacy.txt: 6911) +.track2.mycliplister.com +# ||track2.dulingo.com^ (easyprivacy.txt: 6910) +.track2.dulingo.com +# ||top50-solar.de/solarcount/ (easyprivacy.txt: 6909) +.top50-solar.de/solarcount/ +# ||teleboy.ch/misc/tracker/track.php?id= (easyprivacy.txt: 6908) +.teleboy.ch/misc/tracker/track\.php\?id= +# ||strongvpn.com/aff/ (easyprivacy.txt: 6907) +.strongvpn.com/aff/ +# ||stilanzeigen.net/track/ (easyprivacy.txt: 6906) +.stilanzeigen.net/track/ +# ||stats2.algo.at^$third-party (easyprivacy.txt: 6905) +.stats2.algo.at +# ||stats.urban-media.com^ (easyprivacy.txt: 6904) +.stats.urban-media.com +# ||stats.united-domains.de^ (easyprivacy.txt: 6903) +.stats.united-domains.de +# ||stats.nekapuzer.at^$third-party (easyprivacy.txt: 6902) +.stats.nekapuzer.at +# ||stats.ilsemedia.nl^ (easyprivacy.txt: 6901) +.stats.ilsemedia.nl +# ||stats.frankfurterneuepresse.de^ (easyprivacy.txt: 6900) +.stats.frankfurterneuepresse.de +# ||stats.fittkaumaass.de^ (easyprivacy.txt: 6899) +.stats.fittkaumaass.de +# ||stats.digital-natives.de^ (easyprivacy.txt: 6898) +.stats.digital-natives.de +# ||stats.clickforknowledge.com^ (easyprivacy.txt: 6897) +.stats.clickforknowledge.com +# ||stats.blogoscoop.net^ (easyprivacy.txt: 6896) +.stats.blogoscoop.net +# ||stats.av.de^ (easyprivacy.txt: 6895) +.stats.av.de +# ||statistik.simaja.de^ (easyprivacy.txt: 6894) +.statistik.simaja.de +# ||statistik.motorpresse.de^$third-party (easyprivacy.txt: 6893) +.statistik.motorpresse.de +# ||statistics.klicktel.de^ (easyprivacy.txt: 6892) +.statistics.klicktel.de +# ||stat4.edev.at^ (easyprivacy.txt: 6891) +.stat4.edev.at +# ||stat.clichehosting.de^ (easyprivacy.txt: 6890) +.stat.clichehosting.de +# ||ss4w.de/counter.php? (easyprivacy.txt: 6889) +.ss4w.de/counter\.php\? +# ||spox.com/pub/js/track.js (easyprivacy.txt: 6888) +.spox.com/pub/js/track\.js +# ||skoom.de/gratis-counter/ (easyprivacy.txt: 6887) +.skoom.de/gratis-counter/ +# ||sim-technik.de/dvs.gif? (easyprivacy.txt: 6886) +.sim-technik.de/dvs\.gif\? +# ||sett.i12.de^ (easyprivacy.txt: 6885) +.sett.i12.de +# ||serverkompetenz.net/cpx.php? (easyprivacy.txt: 6884) +.serverkompetenz.net/cpx\.php\? +# ||sec-web.com/stats/ (easyprivacy.txt: 6883) +.sec-web.com/stats/ +# ||script.idgentertainment.de/gt.js (easyprivacy.txt: 6882) +.script.idgentertainment.de/gt\.js +# ||retresco.de^*/stats/$third-party (easyprivacy.txt: 6881) +.retresco.de/.*/stats/ +# ||rc.aol.de^*/getrcmd.js (easyprivacy.txt: 6880) +.rc.aol.de/.*/getrcmd\.js +# ||pyroactive.de/counter/ (easyprivacy.txt: 6879) +.pyroactive.de/counter/ +# ||plista.com/iframeShowItem.php (easyprivacy.txt: 6878) +.plista.com/iframeShowItem\.php +# ||plista.com/getuid? (easyprivacy.txt: 6877) +.plista.com/getuid\? +# ||pixel.nbsp.de^ (easyprivacy.txt: 6876) +.pixel.nbsp.de +# ||pixel.holtzbrinckdigital.info^ (easyprivacy.txt: 6875) +.pixel.holtzbrinckdigital.info +# ||pix.news.at^ (easyprivacy.txt: 6874) +.pix.news.at +# ||onlyfree.de^*/counterservice/ (easyprivacy.txt: 6873) +.onlyfree.de/.*/counterservice/ +# ||onlinepresse.info/counter.php? (easyprivacy.txt: 6872) +.onlinepresse.info/counter\.php\? +# ||onlex.de/_counter.php (easyprivacy.txt: 6871) +.onlex.de/_counter\.php +# ||omniture.eaeurope.eu^ (easyprivacy.txt: 6870) +.omniture.eaeurope.eu +# ||oe-static.de^*/wws.js (easyprivacy.txt: 6869) +.oe-static.de/.*/wws\.js +# ||o2online.de^*/postview.gif? (easyprivacy.txt: 6868) +.o2online.de/.*/postview\.gif\? +# ||o2online.de/impression.php? (easyprivacy.txt: 6867) +.o2online.de/impression\.php\? +# ||ntmb.de/count.html? (easyprivacy.txt: 6866) +.ntmb.de/count\.html\? +# ||newelements.de/tracker/ (easyprivacy.txt: 6865) +.newelements.de/tracker/ +# ||nametec.de/cp/ (easyprivacy.txt: 6864) +.nametec.de/cp/ +# ||myv-img.de/m2/e? (easyprivacy.txt: 6863) +.myv-img.de/m2/e\? +# ||mqs.ioam.de^ (easyprivacy.txt: 6862) +.mqs.ioam.de +# ||movad.de/c.ount? (easyprivacy.txt: 6861) +.movad.de/c\.ount\? +# ||mlm.de/pagerank-ranking/ (easyprivacy.txt: 6860) +.mlm.de/pagerank-ranking/ +# ||mlm.de/counter/ (easyprivacy.txt: 6859) +.mlm.de/counter/ +# ||mindwerk.net/zaehlpixel.php? (easyprivacy.txt: 6858) +.mindwerk.net/zaehlpixel\.php\? +# ||met.vgwort.de^ (easyprivacy.txt: 6857) +.met.vgwort.de +# ||mehrwertdienstekompetenz.de/cp/$third-party (easyprivacy.txt: 6856) +.mehrwertdienstekompetenz.de/cp/ +# ||mastertag.kpcustomer.de^ (easyprivacy.txt: 6855) +.mastertag.kpcustomer.de +# ||mapandroute.de/log.xhr? (easyprivacy.txt: 6854) +.mapandroute.de/log\.xhr\? +# ||lr-port.de/tracker/ (easyprivacy.txt: 6853) +.lr-port.de/tracker/ +# ||log.worldsoft-cms.info^ (easyprivacy.txt: 6852) +.log.worldsoft-cms.info +# ||liveviewer.ez.no^ (easyprivacy.txt: 6851) +.liveviewer.ez.no +# ||live.ec2.cxo.name^ (easyprivacy.txt: 6850) +.live.ec2.cxo.name +# ||kt-g.de/counter.php? (easyprivacy.txt: 6849) +.kt-g.de/counter\.php\? +# ||kontextr.eu/content/track? (easyprivacy.txt: 6848) +.kontextr.eu/content/track\? +# ||koe-vip.com/statistik/ (easyprivacy.txt: 6847) +.koe-vip.com/statistik/ +# ||ivw.fem.com^ (easyprivacy.txt: 6846) +.ivw.fem.com +# ||ivw.dumontreise.de^ (easyprivacy.txt: 6845) +.ivw.dumontreise.de +# ||ivw.discover-outdoor.de^ (easyprivacy.txt: 6844) +.ivw.discover-outdoor.de +# ||ioam.de/tx.io? (easyprivacy.txt: 6843) +.ioam.de/tx\.io\? +# ||ioam.de/aid.io? (easyprivacy.txt: 6842) +.ioam.de/aid\.io\? +# ||ioam.de/? (easyprivacy.txt: 6841) +.ioam.de/\? +# ||insene.de/tag/$third-party (easyprivacy.txt: 6840) +.insene.de/tag/ +# ||info.elba.at^$third-party (easyprivacy.txt: 6839) +.info.elba.at +# ||im.aol.de^ (easyprivacy.txt: 6838) +.im.aol.de +# ||house27.ch/counter/ (easyprivacy.txt: 6837) +.house27.ch/counter/ +# ||hittracker.org/counter.php (easyprivacy.txt: 6836) +.hittracker.org/counter\.php +# ||hittracker.org/count.php (easyprivacy.txt: 6835) +.hittracker.org/count\.php +# ||global-media.de^*/track/ai.img (easyprivacy.txt: 6834) +.global-media.de/.*/track/ai\.img +# ||gibts-hier.com/counter.php (easyprivacy.txt: 6833) +.gibts-hier.com/counter\.php +# ||geo.mtvnn.com^ (easyprivacy.txt: 6832) +.geo.mtvnn.com +# ||gand.de/null.gif? (easyprivacy.txt: 6831) +.gand.de/null\.gif\? +# ||gameforge.de/init.gif? (easyprivacy.txt: 6830) +.gameforge.de/init\.gif\? +# ||frontlineshop.com/tr/p.gif?uid= (easyprivacy.txt: 6829) +.frontlineshop.com/tr/p\.gif\?uid= +# ||frontlineshop.com/ev/co/frontline?*&uid= (easyprivacy.txt: 6828) +.frontlineshop.com/ev/co/frontline\?.*&uid= +# ||filmaster.tv^*/flm.tracker.min.js (easyprivacy.txt: 6827) +.filmaster.tv/.*/flm\.tracker\.min\.js +# ||fc.webmasterpro.de^$third-party (easyprivacy.txt: 6826) +.fc.webmasterpro.de +# ||export.newscube.de^ (easyprivacy.txt: 6825) +.export.newscube.de +# ||events.snacktv.de^ (easyprivacy.txt: 6824) +.events.snacktv.de +# ||events.kaloo.ga^$third-party (easyprivacy.txt: 6823) +.events.kaloo.ga +# ||datacomm.ch^*/count.cgi? (easyprivacy.txt: 6822) +.datacomm.ch/.*/count\.cgi\? +# ||data.econa.com^ (easyprivacy.txt: 6821) +.data.econa.com +# ||ctr.nmg.de^$third-party (easyprivacy.txt: 6820) +.ctr.nmg.de +# ||ctr-opc.nmg.de^ (easyprivacy.txt: 6819) +.ctr-opc.nmg.de +# ||ctr-iwb.nmg.de^ (easyprivacy.txt: 6818) +.ctr-iwb.nmg.de +# ||counter.webmart.de^ (easyprivacy.txt: 6817) +.counter.webmart.de +# ||counter.blogoscoop.net^ (easyprivacy.txt: 6816) +.counter.blogoscoop.net +# ||counter.1i.kz^ (easyprivacy.txt: 6815) +.counter.1i.kz +# ||count.snacktv.de^ (easyprivacy.txt: 6814) +.count.snacktv.de +# ||count.asnetworks.de^ (easyprivacy.txt: 6813) +.count.asnetworks.de +# ||confido.dyndns.org^*/dot.php? (easyprivacy.txt: 6812) +.confido.dyndns.org/.*/dot\.php\? +# ||computerfrage.net^*/blank.gif? (easyprivacy.txt: 6811) +.computerfrage.net/.*/blank\.gif\? +# ||com.econa.com^ (easyprivacy.txt: 6810) +.com.econa.com +# ||collect.finanzen.net^ (easyprivacy.txt: 6809) +.collect.finanzen.net +# ||cloudfront.net/customers/24868.min.js (easyprivacy.txt: 6808) +.cloudfront.net/customers/24868\.min\.js +# ||clipkit.de/metrics? (easyprivacy.txt: 6807) +.clipkit.de/metrics\? +# ||cgicounter.onlinehome.de^ (easyprivacy.txt: 6806) +.cgicounter.onlinehome.de +# ||captcha-ad.com/stats/ (easyprivacy.txt: 6805) +.captcha-ad.com/stats/ +# ||bt.ilsemedia.nl^ (easyprivacy.txt: 6804) +.bt.ilsemedia.nl +# ||beenetworks.net/traffic (easyprivacy.txt: 6803) +.beenetworks.net/traffic +# ||bcs-computersysteme.com/cgi-local/hiddencounter/ (easyprivacy.txt: 6802) +.bcs-computersysteme.com/cgi-local/hiddencounter/ +# ||audimark.de/tracking/ (easyprivacy.txt: 6801) +.audimark.de/tracking/ +# ||asci.freenet.de^ (easyprivacy.txt: 6800) +.asci.freenet.de +# ||andyhoppe.com/count/ (easyprivacy.txt: 6799) +.andyhoppe.com/count/ +# ||analytics.unister-gmbh.de^ (easyprivacy.txt: 6798) +.analytics.unister-gmbh.de +# ||analytics.loop-cloud.de^$third-party (easyprivacy.txt: 6797) +.analytics.loop-cloud.de +# ||analytics.gameforge.de^ (easyprivacy.txt: 6796) +.analytics.gameforge.de +# ||analytics.cnd-motionmedia.de^$third-party (easyprivacy.txt: 6795) +.analytics.cnd-motionmedia.de +# ||analytics-static.unister-gmbh.de^ (easyprivacy.txt: 6794) +.analytics-static.unister-gmbh.de +# ||agitos.de/content/track? (easyprivacy.txt: 6793) +.agitos.de/content/track\? +# ||aftonbladet.se/trafikfonden/ (easyprivacy.txt: 6792) +.aftonbladet.se/trafikfonden/ +# ||adm24.de/hp_counter/$third-party (easyprivacy.txt: 6791) +.adm24.de/hp_counter/ +# ||adc-srv.net/retargeting.php (easyprivacy.txt: 6790) +.adc-srv.net/retargeting\.php +# ||zope.net^*/ghs_wa.js (easyprivacy.txt: 6786) +.zope.net/.*/ghs_wa\.js +# ||zoover.co.uk/tracking/ (easyprivacy.txt: 6785) +.zoover.co.uk/tracking/ +# ||ziffprod.com^*/zdcse.min.js?referrer= (easyprivacy.txt: 6784) +.ziffprod.com/.*/zdcse\.min\.js\?referrer= +# ||ywxi.net/meter/ (easyprivacy.txt: 6783) +.ywxi.net/meter/ +# ||ypcdn.com/*/webyp? (easyprivacy.txt: 6782) +.ypcdn.com/.*/webyp\? +# ||yospace.com/csm/analytics; (easyprivacy.txt: 6781) +.yospace.com/csm/analytics; +# ||yimg.com^*/l?ig=$image (easyprivacy.txt: 6780) +.yimg.com/.*/l\?ig= +# ||yimg.com/wi/ytc.js (easyprivacy.txt: 6779) +.yimg.com/wi/ytc\.js +# ||yext.com/plpixel? (easyprivacy.txt: 6778) +.yext.com/plpixel\? +# ||yellowpages.com^*.gif?tid$third-party (easyprivacy.txt: 6777) +.yellowpages.com/.*\.gif\?tid +# ||yellowbrix.com/images/content/cimage.gif? (easyprivacy.txt: 6776) +.yellowbrix.com/images/content/cimage\.gif\? +# ||yarpp.org/pixels/ (easyprivacy.txt: 6775) +.yarpp.org/pixels/ +# ||yapi.awe.sm^$third-party (easyprivacy.txt: 6774) +.yapi.awe.sm +# ||x.weather.com^ (easyprivacy.txt: 6773) +.x.weather.com +# ||wvnetworkmedia.org/min/? (easyprivacy.txt: 6772) +.wvnetworkmedia.org/min/\? +# ||wunderloop.aol.co.uk^ (easyprivacy.txt: 6771) +.wunderloop.aol.co.uk +# ||wstat.wibiya.com^ (easyprivacy.txt: 6770) +.wstat.wibiya.com +# ||wsj.net/MW5/content/analytics/hooks.js (easyprivacy.txt: 6769) +.wsj.net/MW5/content/analytics/hooks\.js +# ||wsf.com/tracking/$third-party (easyprivacy.txt: 6768) +.wsf.com/tracking/ +# ||wsb.aracert.com^ (easyprivacy.txt: 6767) +.wsb.aracert.com +# ||ws.amazon.com/widgets/*=gettrackingid| (easyprivacy.txt: 6766) +.ws.amazon.com/widgets/.*=gettrackingid$ +# ||wpdigital.net/metrics/ (easyprivacy.txt: 6765) +.wpdigital.net/metrics/ +# ||wp-stat.s3.amazonaws.com^ (easyprivacy.txt: 6764) +.wp-stat.s3.amazonaws.com +# ||worldssl.net/reporting.js$third-party (easyprivacy.txt: 6763) +.worldssl.net/reporting\.js +# ||woolik.com^*^tracker^ (easyprivacy.txt: 6762) +.woolik.com/.*[^\w%.-]tracker[^\w%.-] +# ||woolik.com/__el.gif? (easyprivacy.txt: 6761) +.woolik.com/__el\.gif\? +# ||wn.com/count.js (easyprivacy.txt: 6760) +.wn.com/count\.js +# ||win.staticstuff.net^ (easyprivacy.txt: 6759) +.win.staticstuff.net +# ||wikinvest.com^*/errorlogger.php? (easyprivacy.txt: 6758) +.wikinvest.com/.*/errorlogger\.php\? +# ||wikinvest.com/plugin/*=metricpv (easyprivacy.txt: 6757) +.wikinvest.com/plugin/.*=metricpv +# ||widgetserver.com^*/quantcast.swf (easyprivacy.txt: 6756) +.widgetserver.com/.*/quantcast\.swf +# ||widgetserver.com^*/image.gif? (easyprivacy.txt: 6755) +.widgetserver.com/.*/image\.gif\? +# ||widgetserver.com/t/ (easyprivacy.txt: 6754) +.widgetserver.com/t/ +# ||widgetserver.com/metrics/ (easyprivacy.txt: 6753) +.widgetserver.com/metrics/ +# ||widgethost.com/pax/counter.js? (easyprivacy.txt: 6752) +.widgethost.com/pax/counter\.js\? +# ||widgetbox.com/syndication/track/ (easyprivacy.txt: 6751) +.widgetbox.com/syndication/track/ +# ||widget.quantcast.com^ (easyprivacy.txt: 6750) +.widget.quantcast.com +# ||widget.perfectmarket.com^ (easyprivacy.txt: 6749) +.widget.perfectmarket.com +# ||widgeo.net/tracking.php? (easyprivacy.txt: 6748) +.widgeo.net/tracking\.php\? +# ||widgeo.net/hitparade.php (easyprivacy.txt: 6747) +.widgeo.net/hitparade\.php +# ||widgeo.net/geocompteur/ (easyprivacy.txt: 6746) +.widgeo.net/geocompteur/ +# ||widgeo.net/compteur.php? (easyprivacy.txt: 6745) +.widgeo.net/compteur\.php\? +# ||wibiya-june-new-log.conduit-data.com^ (easyprivacy.txt: 6744) +.wibiya-june-new-log.conduit-data.com +# ||wibiya-actions.conduit-data.com^ (easyprivacy.txt: 6743) +.wibiya-actions.conduit-data.com +# ||whosread.com/counter/ (easyprivacy.txt: 6742) +.whosread.com/counter/ +# ||whoson.creativemark.co.uk^$third-party (easyprivacy.txt: 6741) +.whoson.creativemark.co.uk +# ||whatismyip.akamai.com^ (easyprivacy.txt: 6740) +.whatismyip.akamai.com +# ||wetpaint.com^*/track? (easyprivacy.txt: 6739) +.wetpaint.com/.*/track\? +# ||webzel.com/counter/ (easyprivacy.txt: 6738) +.webzel.com/counter/ +# ||webworx24.co.uk/123trace.php (easyprivacy.txt: 6737) +.webworx24.co.uk/123trace\.php +# ||webvoo.com^*/logtodb. (easyprivacy.txt: 6736) +.webvoo.com/.*/logtodb\. +# ||webvoo.com/wt/Track.aspx (easyprivacy.txt: 6735) +.webvoo.com/wt/Track\.aspx +# ||webtracker.educationconnection.com^ (easyprivacy.txt: 6734) +.webtracker.educationconnection.com +# ||webtracker.apicasystem.com^ (easyprivacy.txt: 6733) +.webtracker.apicasystem.com +# ||webterren.com/webdig.js? (easyprivacy.txt: 6732) +.webterren.com/webdig\.js\? +# ||webstats.thaindian.com^ (easyprivacy.txt: 6731) +.webstats.thaindian.com +# ||webstats.seoinc.com^ (easyprivacy.txt: 6730) +.webstats.seoinc.com +# ||webstats.motigo.com^$third-party (easyprivacy.txt: 6729) +.webstats.motigo.com +# ||webservices.websitepros.com^ (easyprivacy.txt: 6728) +.webservices.websitepros.com +# ||weblogger-dynamic-lb.playdom.com^ (easyprivacy.txt: 6727) +.weblogger-dynamic-lb.playdom.com +# ||weblog.livesport.eu^ (easyprivacy.txt: 6726) +.weblog.livesport.eu +# ||webeffective.keynote.com^ (easyprivacy.txt: 6725) +.webeffective.keynote.com +# ||webcare.byside.com^$third-party (easyprivacy.txt: 6724) +.webcare.byside.com +# ||web1.51.la^ (easyprivacy.txt: 6723) +.web1.51.la +# ||web-soft.in/counters/ (easyprivacy.txt: 6722) +.web-soft.in/counters/ +# ||weather.ca/counter.gif? (easyprivacy.txt: 6721) +.weather.ca/counter\.gif\? +# ||watch.teroti.com^$third-party (easyprivacy.txt: 6720) +.watch.teroti.com +# ||wantlive.com/pixel/ (easyprivacy.txt: 6719) +.wantlive.com/pixel/ +# ||w88.m.espn.go.com^ (easyprivacy.txt: 6717) +.w88.m.espn.go.com +# ||w3track.com/newtrk/$third-party (easyprivacy.txt: 6716) +.w3track.com/newtrk/ +# ||vwdealerdigital.com/cdn/sd.js (easyprivacy.txt: 6715) +.vwdealerdigital.com/cdn/sd\.js +# ||vvhp.net/read/view.gif (easyprivacy.txt: 6714) +.vvhp.net/read/view\.gif +# ||vtracking.in.com^ (easyprivacy.txt: 6713) +.vtracking.in.com +# ||vtnlog-*.elb.amazonaws.com^ (easyprivacy.txt: 6712) +.vtnlog-*./.*\.elb\.amazonaws\.com[^\w%.-] +.vtnlog-*.elb.amazonaws.com +# ||vra.outbrain.com^$third-party (easyprivacy.txt: 6711) +.vra.outbrain.com +# ||vpoweb.com/counter.php? (easyprivacy.txt: 6710) +.vpoweb.com/counter\.php\? +# ||voxmedia.com/beacon-min.js (easyprivacy.txt: 6709) +.voxmedia.com/beacon-min\.js +# ||voss.collegehumor.com^ (easyprivacy.txt: 6708) +.voss.collegehumor.com +# ||vmixcore.com/vmixcore/playlog? (easyprivacy.txt: 6707) +.vmixcore.com/vmixcore/playlog\? +# ||vk.com/videostats.php (easyprivacy.txt: 6706) +.vk.com/videostats\.php +# ||vk.com/rtrg? (easyprivacy.txt: 6705) +.vk.com/rtrg\? +# ||vizury.com/analyze/ (easyprivacy.txt: 6704) +.vizury.com/analyze/ +# ||viximo.com/1px.gif? (easyprivacy.txt: 6703) +.viximo.com/1px\.gif\? +# ||vivociti.com/images/$third-party (easyprivacy.txt: 6702) +.vivociti.com/images/ +# ||visualstudio.com/v2/track$third-party (easyprivacy.txt: 6701) +.visualstudio.com/v2/track +# ||visualstudio.com/_da.gif? (easyprivacy.txt: 6700) +.visualstudio.com/_da\.gif\? +# ||visual.ly/track.php? (easyprivacy.txt: 6699) +.visual.ly/track\.php\? +# ||visit.webhosting.yahoo.com^ (easyprivacy.txt: 6698) +.visit.webhosting.yahoo.com +# ||visit.geocities.com^ (easyprivacy.txt: 6697) +.visit.geocities.com +# ||visa.com/logging/logEvent$third-party (easyprivacy.txt: 6696) +.visa.com/logging/logEvent +# ||virtueworldwide.com/ga-test/ (easyprivacy.txt: 6695) +.virtueworldwide.com/ga-test/ +# ||virtualearth.net^*/loggingservice/ (easyprivacy.txt: 6694) +.virtualearth.net/.*/loggingservice/ +# ||virginmedia.com^*/analytics/ (easyprivacy.txt: 6693) +.virginmedia.com/.*/analytics/ +# ||virgingames.com/tracker/ (easyprivacy.txt: 6692) +.virgingames.com/tracker/ +# ||vindicosuite.com/xumo/swf/$third-party (easyprivacy.txt: 6691) +.vindicosuite.com/xumo/swf/ +# ||vindicosuite.com/tracking/ (easyprivacy.txt: 6690) +.vindicosuite.com/tracking/ +# ||vindicosuite.com/track/ (easyprivacy.txt: 6689) +.vindicosuite.com/track/ +# ||viglink.com/api/ping$third-party (easyprivacy.txt: 6688) +.viglink.com/api/ping +# ||videopress.com/plugins/stats/ (easyprivacy.txt: 6687) +.videopress.com/plugins/stats/ +# ||videoplaza.tv/proxy/tracker^$object-subrequest (easyprivacy.txt: 6686) +.videoplaza.tv/proxy/tracker[^\w%.-] +# ||videoplaza.com/proxy/distributor/$object-subrequest (easyprivacy.txt: 6685) +.videoplaza.com/proxy/distributor/ +# ||video.msn.com/report.aspx? (easyprivacy.txt: 6684) +.video.msn.com/report\.aspx\? +# ||video.google.com/api/stats/ (easyprivacy.txt: 6683) +.video.google.com/api/stats/ +# ||video-ad-stats.googlesyndication.com^ (easyprivacy.txt: 6682) +.video-ad-stats.googlesyndication.com +# ||verticalacuity.com/vat/ (easyprivacy.txt: 6681) +.verticalacuity.com/vat/ +# ||verticalacuity.com/varw/sendEvent? (easyprivacy.txt: 6680) +.verticalacuity.com/varw/sendEvent\? +# ||vertical-stats.huffpost.com^ (easyprivacy.txt: 6679) +.vertical-stats.huffpost.com +# ||ventunotech.com/beacon/ (easyprivacy.txt: 6678) +.ventunotech.com/beacon/ +# ||veeseo.com/tracking/ (easyprivacy.txt: 6677) +.veeseo.com/tracking/ +# ||vds_dyn.rightster.com/v/*?rand= (easyprivacy.txt: 6676) +# ||vast.com/vimpressions.js$third-party (easyprivacy.txt: 6675) +.vast.com/vimpressions\.js +# ||vapedia.com^*/largebanner. (easyprivacy.txt: 6674) +.vapedia.com/.*/largebanner\. +# ||vanilladev.com/analytics. (easyprivacy.txt: 6673) +.vanilladev.com/analytics\. +# ||v.giantrealm.com/players/stats.swf? (easyprivacy.txt: 6672) +.v.giantrealm.com/players/stats\.swf\? +# ||uservoice.com^*/track.js (easyprivacy.txt: 6671) +.uservoice.com/.*/track\.js +# ||userlog.synapseip.tv^ (easyprivacy.txt: 6670) +.userlog.synapseip.tv +# ||urc.taboolasyndication.com^ (easyprivacy.txt: 6669) +.urc.taboolasyndication.com +# ||upt.graphiq.com^ (easyprivacy.txt: 6668) +.upt.graphiq.com +# ||upcat.custvox.org/survey/*/countOpen.gif (easyprivacy.txt: 6667) +.upcat.custvox.org/survey/.*/countOpen\.gif +# ||ultimatebootcd.com/tracker/ (easyprivacy.txt: 6666) +.ultimatebootcd.com/tracker/ +# ||uknetguide.co.uk/user.js? (easyprivacy.txt: 6665) +.uknetguide.co.uk/user\.js\? +# ||uim.tifbs.net^ (easyprivacy.txt: 6664) +.uim.tifbs.net +# ||ui-portal.com^*;ns_referrer= (easyprivacy.txt: 6663) +.ui-portal.com/.*;ns_referrer= +# ||ucounter.ucoz.net^ (easyprivacy.txt: 6662) +.ucounter.ucoz.net +# ||typepad.com^*/stats?$third-party (easyprivacy.txt: 6661) +.typepad.com/.*/stats\? +# ||txn.grabnetworks.com^ (easyprivacy.txt: 6660) +.txn.grabnetworks.com +# ||twitvid.com^*/tracker.swf$third-party (easyprivacy.txt: 6659) +.twitvid.com/.*/tracker\.swf +# ||twitter.com/scribe/ (easyprivacy.txt: 6658) +.twitter.com/scribe/ +# ||twitter.com/oct.js (easyprivacy.txt: 6657) +.twitter.com/oct\.js +# ||twitter.com/i/jot (easyprivacy.txt: 6656) +.twitter.com/i/jot +# ||twimg.com/jot? (easyprivacy.txt: 6655) +.twimg.com/jot\? +# ||turnto.com/webEvent/$third-party (easyprivacy.txt: 6654) +.turnto.com/webEvent/ +# ||turner.com^*/1pixel.gif? (easyprivacy.txt: 6653) +.turner.com/.*/1pixel\.gif\? +# ||ttwbs.channelintelligence.com^$third-party (easyprivacy.txt: 6652) +.ttwbs.channelintelligence.com +# ||tsk5.com/17*?*=ex- (easyprivacy.txt: 6651) +.tsk5.com/17.*\?.*=ex- +# ||ts.tradetracker.net^ (easyprivacy.txt: 6650) +.ts.tradetracker.net +# ||trustsquare.net/trafficmonitor/ (easyprivacy.txt: 6649) +.trustsquare.net/trafficmonitor/ +# ||trumba.com/et.aspx?$third-party (easyprivacy.txt: 6648) +.trumba.com/et\.aspx\? +# ||trove.com^*&uid=$image (easyprivacy.txt: 6647) +.trove.com/.*&uid= +# ||trk.vindicosuite.com^ (easyprivacy.txt: 6646) +.trk.vindicosuite.com +# ||trk.vidible.tv^ (easyprivacy.txt: 6645) +.trk.vidible.tv +# ||trk.sele.co^ (easyprivacy.txt: 6644) +.trk.sele.co +# ||trk.pswec.com^$third-party (easyprivacy.txt: 6643) +.trk.pswec.com +# ||trk.bhs4.com^ (easyprivacy.txt: 6642) +.trk.bhs4.com +# ||trk*.vidible.tv^ (easyprivacy.txt: 6641) +.trk*./.*\.vidible\.tv[^\w%.-] +.trk*.vidible.tv +# ||tritondigital.net/activity.php? (easyprivacy.txt: 6640) +.tritondigital.net/activity\.php\? +# ||tritondigital.com/ltjs.php (easyprivacy.txt: 6639) +.tritondigital.com/ltjs\.php +# ||triad.technorati.com^ (easyprivacy.txt: 6638) +.triad.technorati.com +# ||trf.intuitwebsites.com^ (easyprivacy.txt: 6637) +.trf.intuitwebsites.com +# ||tree-pixel-log.s3.amazonaws.com^ (easyprivacy.txt: 6636) +.tree-pixel-log.s3.amazonaws.com +# ||tredir.go.com/capmon/GetDE?$third-party (easyprivacy.txt: 6635) +.tredir.go.com/capmon/GetDE\? +# ||trax.dirxion.com^ (easyprivacy.txt: 6634) +.trax.dirxion.com +# ||travpan.com/out/$third-party (easyprivacy.txt: 6633) +.travpan.com/out/ +# ||traq.li/tracker/ (easyprivacy.txt: 6632) +.traq.li/tracker/ +# ||trakksocial.googlecode.com^$third-party (easyprivacy.txt: 6631) +.trakksocial.googlecode.com +# ||traffic.shareaholic.com^ (easyprivacy.txt: 6630) +.traffic.shareaholic.com +# ||traffic.pubexchange.com^ (easyprivacy.txt: 6629) +.traffic.pubexchange.com +# ||traffic.prod.cobaltgroup.com^ (easyprivacy.txt: 6628) +.traffic.prod.cobaltgroup.com +# ||traffic.belaydevelopment.com^$third-party (easyprivacy.txt: 6627) +.traffic.belaydevelopment.com +# ||traffic.acwebconnecting.com^ (easyprivacy.txt: 6626) +.traffic.acwebconnecting.com +# ||tracksys.developlabs.net^ (easyprivacy.txt: 6625) +.tracksys.developlabs.net +# ||trackingdev.nixxie.com^ (easyprivacy.txt: 6624) +.trackingdev.nixxie.com +# ||tracking2.interweave.com^$third-party (easyprivacy.txt: 6623) +.tracking2.interweave.com +# ||tracking2.channeladvisor.com^ (easyprivacy.txt: 6622) +.tracking2.channeladvisor.com +# ||tracking.worldmedia.net^$third-party (easyprivacy.txt: 6621) +.tracking.worldmedia.net +# ||tracking.waterfrontmedia.com^ (easyprivacy.txt: 6620) +.tracking.waterfrontmedia.com +# ||tracking.tradeking.com^ (easyprivacy.txt: 6619) +.tracking.tradeking.com +# ||tracking.thehut.net^ (easyprivacy.txt: 6618) +.tracking.thehut.net +# ||tracking.theeword.co.uk^ (easyprivacy.txt: 6617) +.tracking.theeword.co.uk +# ||tracking.synthasite.net^ (easyprivacy.txt: 6616) +.tracking.synthasite.net +# ||tracking.sponsorpay.com^$third-party (easyprivacy.txt: 6615) +.tracking.sponsorpay.com +# ||tracking.sokrati.com^ (easyprivacy.txt: 6614) +.tracking.sokrati.com +# ||tracking.skyword.com^$third-party (easyprivacy.txt: 6613) +.tracking.skyword.com +# ||tracking.sembox.it^$third-party (easyprivacy.txt: 6612) +.tracking.sembox.it +# ||tracking.searchmarketing.com^ (easyprivacy.txt: 6611) +.tracking.searchmarketing.com +# ||tracking.rapidape.com^ (easyprivacy.txt: 6610) +.tracking.rapidape.com +# ||tracking.quisma.com^ (easyprivacy.txt: 6609) +.tracking.quisma.com +# ||tracking.quillion.com^ (easyprivacy.txt: 6608) +.tracking.quillion.com +# ||tracking.practicefusion.com^$third-party (easyprivacy.txt: 6607) +.tracking.practicefusion.com +# ||tracking.plattformad.com^$third-party (easyprivacy.txt: 6606) +.tracking.plattformad.com +# ||tracking.performgroup.com^ (easyprivacy.txt: 6605) +.tracking.performgroup.com +# ||tracking.musixmatch.com^ (easyprivacy.txt: 6604) +.tracking.musixmatch.com +# ||tracking.maxcdn.com^$third-party (easyprivacy.txt: 6603) +.tracking.maxcdn.com +# ||tracking.m6r.eu^ (easyprivacy.txt: 6602) +.tracking.m6r.eu +# ||tracking.livingsocial.com^ (easyprivacy.txt: 6601) +.tracking.livingsocial.com +# ||tracking.listhub.net^ (easyprivacy.txt: 6600) +.tracking.listhub.net +# ||tracking.lengow.com^ (easyprivacy.txt: 6599) +.tracking.lengow.com +# ||tracking.keywee.co^ (easyprivacy.txt: 6598) +.tracking.keywee.co +# ||tracking.jotform.com^ (easyprivacy.txt: 6597) +.tracking.jotform.com +# ||tracking.interweave.com^$third-party (easyprivacy.txt: 6596) +.tracking.interweave.com +# ||tracking.i-click.com.hk^ (easyprivacy.txt: 6595) +.tracking.i-click.com.hk +# ||tracking.godatafeed.com^ (easyprivacy.txt: 6594) +.tracking.godatafeed.com +# ||tracking.fits.me^$third-party (easyprivacy.txt: 6593) +.tracking.fits.me +# ||tracking.feedperfect.com^ (easyprivacy.txt: 6592) +.tracking.feedperfect.com +# ||tracking.fccinteractive.com^$third-party (easyprivacy.txt: 6591) +.tracking.fccinteractive.com +# ||tracking.fanbridge.com^ (easyprivacy.txt: 6590) +.tracking.fanbridge.com +# ||tracking.ehavior.net^ (easyprivacy.txt: 6589) +.tracking.ehavior.net +# ||tracking.edvisors.com^$third-party (easyprivacy.txt: 6588) +.tracking.edvisors.com +# ||tracking.dsmmadvantage.com^ (easyprivacy.txt: 6587) +.tracking.dsmmadvantage.com +# ||tracking.drsfostersmith.com^$third-party (easyprivacy.txt: 6586) +.tracking.drsfostersmith.com +# ||tracking.dealerwebwatcher.com^ (easyprivacy.txt: 6585) +.tracking.dealerwebwatcher.com +# ||tracking.cmjump.com.au^ (easyprivacy.txt: 6584) +.tracking.cmjump.com.au +# ||tracking.cmcigroup.com^ (easyprivacy.txt: 6583) +.tracking.cmcigroup.com +# ||tracking.bidmizer.com^$third-party (easyprivacy.txt: 6582) +.tracking.bidmizer.com +# ||tracking.badgeville.com^$third-party (easyprivacy.txt: 6581) +.tracking.badgeville.com +# ||tracking.allposters.com^ (easyprivacy.txt: 6580) +.tracking.allposters.com +# ||trackicollect.ibase.fr^$third-party (easyprivacy.txt: 6579) +.trackicollect.ibase.fr +# ||tracker2.apollo-mail.net^ (easyprivacy.txt: 6578) +.tracker2.apollo-mail.net +# ||tracker.vreveal.com^ (easyprivacy.txt: 6577) +.tracker.vreveal.com +# ||tracker.u-link.me^$third-party (easyprivacy.txt: 6576) +.tracker.u-link.me +# ||tracker.twenga. (easyprivacy.txt: 6575) +.tracker.twenga.*. +# ||tracker.timesgroup.com^ (easyprivacy.txt: 6574) +.tracker.timesgroup.com +# ||tracker.seoboost.net^$third-party (easyprivacy.txt: 6573) +.tracker.seoboost.net +# ||tracker.roitesting.com^ (easyprivacy.txt: 6572) +.tracker.roitesting.com +# ||tracker.neon-images.com^ (easyprivacy.txt: 6571) +.tracker.neon-images.com +# ||tracker.myseofriend.net^$third-party (easyprivacy.txt: 6570) +.tracker.myseofriend.net +# ||tracker.mtrax.net^ (easyprivacy.txt: 6569) +.tracker.mtrax.net +# ||tracker.mgnetwork.com^ (easyprivacy.txt: 6568) +.tracker.mgnetwork.com +# ||tracker.marinsoftware.com^ (easyprivacy.txt: 6567) +.tracker.marinsoftware.com +# ||tracker.keywordintent.com^ (easyprivacy.txt: 6566) +.tracker.keywordintent.com +# ||tracker.issuu.com^ (easyprivacy.txt: 6565) +.tracker.issuu.com +# ||tracker.iqnomy.com^ (easyprivacy.txt: 6564) +.tracker.iqnomy.com +# ||tracker.icerocket.com^ (easyprivacy.txt: 6563) +.tracker.icerocket.com +# ||tracker.financialcontent.com^ (easyprivacy.txt: 6562) +.tracker.financialcontent.com +# ||tracker.everestnutrition.com^ (easyprivacy.txt: 6561) +.tracker.everestnutrition.com +# ||tracker.downdetector.com^ (easyprivacy.txt: 6560) +.tracker.downdetector.com +# ||tracker.beezup.com^ (easyprivacy.txt: 6559) +.tracker.beezup.com +# ||track.yieldsoftware.com^ (easyprivacy.txt: 6558) +.track.yieldsoftware.com +# ||track.written.com^ (easyprivacy.txt: 6557) +.track.written.com +# ||track.vscash.com^ (easyprivacy.txt: 6556) +.track.vscash.com +# ||track.untd.com^ (easyprivacy.txt: 6555) +.track.untd.com +# ||track.td3x.com^ (easyprivacy.txt: 6554) +.track.td3x.com +# ||track.strife.com^ (easyprivacy.txt: 6553) +.track.strife.com +# ||track.sprinklecontent.com^ (easyprivacy.txt: 6552) +.track.sprinklecontent.com +# ||track.social.com^ (easyprivacy.txt: 6551) +.track.social.com +# ||track.sitetag.us^ (easyprivacy.txt: 6550) +.track.sitetag.us +# ||track.sigfig.com^ (easyprivacy.txt: 6549) +.track.sigfig.com +# ||track.shop2market.com^ (easyprivacy.txt: 6548) +.track.shop2market.com +# ||track.securedvisit.com^ (easyprivacy.txt: 6547) +.track.securedvisit.com +# ||track.searchignite.com^ (easyprivacy.txt: 6546) +.track.searchignite.com +# ||track.ringcentral.com^ (easyprivacy.txt: 6545) +.track.ringcentral.com +# ||track.qoof.com^ (easyprivacy.txt: 6544) +.track.qoof.com +# ||track.qcri.org^ (easyprivacy.txt: 6543) +.track.qcri.org +# ||track.propelplus.com^ (easyprivacy.txt: 6542) +.track.propelplus.com +# ||track.parse.ly^ (easyprivacy.txt: 6541) +.track.parse.ly +# ||track.omg2.com^ (easyprivacy.txt: 6540) +.track.omg2.com +# ||track.mycliplister.com^ (easyprivacy.txt: 6539) +.track.mycliplister.com +# ||track.mybloglog.com^ (easyprivacy.txt: 6538) +.track.mybloglog.com +# ||track.linksynergy.com^$third-party (easyprivacy.txt: 6537) +.track.linksynergy.com +# ||track.leadin.com^ (easyprivacy.txt: 6536) +.track.leadin.com +# ||track.juno.com^ (easyprivacy.txt: 6535) +.track.juno.com +# ||track.gridlockparadise.com^ (easyprivacy.txt: 6534) +.track.gridlockparadise.com +# ||track.g-bot.net^ (easyprivacy.txt: 6533) +.track.g-bot.net +# ||track.digitalriver.com^ (easyprivacy.txt: 6532) +.track.digitalriver.com +# ||track.did-it.com^ (easyprivacy.txt: 6531) +.track.did-it.com +# ||track.captivate.ai^ (easyprivacy.txt: 6530) +.track.captivate.ai +# ||track.cafemomstatic.com^ (easyprivacy.txt: 6529) +.track.cafemomstatic.com +# ||track.bannedcelebs.com^ (easyprivacy.txt: 6528) +.track.bannedcelebs.com +# ||track.atgstores.com^$third-party (easyprivacy.txt: 6527) +.track.atgstores.com +# ||track.addevent.com^ (easyprivacy.txt: 6526) +.track.addevent.com +# ||track.99acres.com^ (easyprivacy.txt: 6525) +.track.99acres.com +# ||trace.qq.com^$third-party (easyprivacy.txt: 6524) +.trace.qq.com +# ||tr.webantenna.info^ (easyprivacy.txt: 6523) +.tr.webantenna.info +# ||tr.interlake.net^ (easyprivacy.txt: 6522) +.tr.interlake.net +# ||tr.advance.net^ (easyprivacy.txt: 6521) +.tr.advance.net +# ||tr-metrics.loomia.com^ (easyprivacy.txt: 6520) +.tr-metrics.loomia.com +# ||tout.com/tracker.js (easyprivacy.txt: 6519) +.tout.com/tracker\.js +# ||tourradar.com/def/partner?$third-party (easyprivacy.txt: 6518) +.tourradar.com/def/partner\? +# ||touchcommerce.com/tagserver/logging/ (easyprivacy.txt: 6517) +.touchcommerce.com/tagserver/logging/ +# ||totallylayouts.com^*/visitor-counter/counter.js (easyprivacy.txt: 6516) +.totallylayouts.com/.*/visitor-counter/counter\.js +# ||totallylayouts.com^*/users-online-counter/online.js (easyprivacy.txt: 6515) +.totallylayouts.com/.*/users-online-counter/online\.js +# ||totallylayouts.com/online-users-counter/$third-party (easyprivacy.txt: 6514) +.totallylayouts.com/online-users-counter/ +# ||totallylayouts.com/hit-counter/$third-party (easyprivacy.txt: 6513) +.totallylayouts.com/hit-counter/ +# ||topix.net/t6track/ (easyprivacy.txt: 6512) +.topix.net/t6track/ +# ||top-fwz1.mail.ru^ (easyprivacy.txt: 6511) +.top-fwz1.mail.ru +# ||tm.tradetracker.net^ (easyprivacy.txt: 6510) +.tm.tradetracker.net +# ||tl.tradetracker.net^ (easyprivacy.txt: 6509) +.tl.tradetracker.net +# ||tinyurl.com/pixel.gif/ (easyprivacy.txt: 6508) +.tinyurl.com/pixel\.gif/ +# ||tinypass.com^*/track? (easyprivacy.txt: 6507) +.tinypass.com/.*/track\? +# ||timeinc.net^*/peopleas2artracker_v1.swf (easyprivacy.txt: 6506) +.timeinc.net/.*/peopleas2artracker_v1\.swf +# ||time.chtah.com/a/*/spacer.gif (easyprivacy.txt: 6505) +.time.chtah.com/a/.*/spacer\.gif +# ||thismoment.com/tracking/ (easyprivacy.txt: 6504) +.thismoment.com/tracking/ +# ||thinairsoftware.net/OWYPTracker.aspx? (easyprivacy.txt: 6503) +.thinairsoftware.net/OWYPTracker\.aspx\? +# ||thetradedesk-tags.s3.amazonaws.com^ (easyprivacy.txt: 6502) +.thetradedesk-tags.s3.amazonaws.com +# ||thespringbox.com/analytics/ (easyprivacy.txt: 6501) +.thespringbox.com/analytics/ +# ||thepornstarlist.com/lo/lo/track.php? (easyprivacy.txt: 6500) +.thepornstarlist.com/lo/lo/track\.php\? +# ||themesltd.com/online-users-counter/$third-party (easyprivacy.txt: 6499) +.themesltd.com/online-users-counter/ +# ||themesltd.com/hit-counter/$third-party (easyprivacy.txt: 6498) +.themesltd.com/hit-counter/ +# ||thefilter.com^*?extanonid=$~script (easyprivacy.txt: 6497) +.thefilter.com/.*\?extanonid= +# ||the-group.net/aether/ (easyprivacy.txt: 6496) +.the-group.net/aether/ +# ||techweb.com/beacon/ (easyprivacy.txt: 6495) +.techweb.com/beacon/ +# ||technorati.com/technoratimedia-pixel.js (easyprivacy.txt: 6494) +.technorati.com/technoratimedia-pixel\.js +# ||tc.airfrance.com^ (easyprivacy.txt: 6493) +.tc.airfrance.com +# ||targeting.wpdigital.net^ (easyprivacy.txt: 6492) +.targeting.wpdigital.net +# ||target.fark.com^ (easyprivacy.txt: 6491) +.target.fark.com +# ||tags.master-perf-tools.com^ (easyprivacy.txt: 6490) +.tags.master-perf-tools.com +# ||tagcdn.com/pix/? (easyprivacy.txt: 6489) +.tagcdn.com/pix/\? +# ||tag.sonymusic.com^ (easyprivacy.txt: 6488) +.tag.sonymusic.com +# ||tag.myplay.com^ (easyprivacy.txt: 6487) +.tag.myplay.com +# ||tag.email-attitude.com^ (easyprivacy.txt: 6486) +.tag.email-attitude.com +# ||taboolasyndication.com^*/log/ (easyprivacy.txt: 6485) +.taboolasyndication.com/.*/log/ +# ||taboolasyndication.com/log/ (easyprivacy.txt: 6484) +.taboolasyndication.com/log/ +# ||taboola.com^*/log/ (easyprivacy.txt: 6483) +.taboola.com/.*/log/ +# ||t2.t2b.click^ (easyprivacy.txt: 6482) +.t2.t2b.click +# ||t.ymlp275.net^$third-party (easyprivacy.txt: 6481) +.t.ymlp275.net +# ||t.theoutplay.com^ (easyprivacy.txt: 6480) +.t.theoutplay.com +# ||t.pswec.com^ (easyprivacy.txt: 6479) +.t.pswec.com +# ||t.powerreviews.com^$third-party (easyprivacy.txt: 6478) +.t.powerreviews.com +# ||t.menepe.com^ (easyprivacy.txt: 6477) +.t.menepe.com +# ||t.mail.sony-europe.com/r/? (easyprivacy.txt: 6476) +.t.mail.sony-europe.com/r/\? +# ||t.flux.com^ (easyprivacy.txt: 6475) +.t.flux.com +# ||t.dgm-au.com^$third-party (easyprivacy.txt: 6474) +.t.dgm-au.com +# ||t.devnet.com^$third-party (easyprivacy.txt: 6473) +.t.devnet.com +# ||t.cfjump.com^ (easyprivacy.txt: 6472) +.t.cfjump.com +# ||t.bimvid.com^ (easyprivacy.txt: 6471) +.t.bimvid.com +# ||t-staging.powerreviews.com^ (easyprivacy.txt: 6470) +.t-staging.powerreviews.com +# ||systemmonitoring.badgeville.com^ (easyprivacy.txt: 6469) +.systemmonitoring.badgeville.com +# ||synergizeonline.net/trackpoint/ (easyprivacy.txt: 6468) +.synergizeonline.net/trackpoint/ +# ||sync.adap.tv^ (easyprivacy.txt: 6467) +.sync.adap.tv +# ||swiftypecdn.com/te.js$third-party (easyprivacy.txt: 6466) +.swiftypecdn.com/te\.js +# ||swiftypecdn.com/cc.js$third-party (easyprivacy.txt: 6465) +.swiftypecdn.com/cc\.js +# ||survey.io/log? (easyprivacy.txt: 6464) +.survey.io/log\? +# ||survey.interquest.com^ (easyprivacy.txt: 6463) +.survey.interquest.com +# ||sumome.com/apps/heatmaps/ (easyprivacy.txt: 6462) +.sumome.com/apps/heatmaps/ +# ||sumome.com/apps/contentanalytics/ (easyprivacy.txt: 6461) +.sumome.com/apps/contentanalytics/ +# ||sumome.com/api/event/? (easyprivacy.txt: 6460) +.sumome.com/api/event/\? +# ||sulia.com/papi/sulia_partner.js/$third-party (easyprivacy.txt: 6459) +.sulia.com/papi/sulia_partner\.js/ +# ||sugarops.com/w?action=impression$third-party (easyprivacy.txt: 6458) +.sugarops.com/w\?action=impression +# ||su.pr/hosted_js$third-party (easyprivacy.txt: 6457) +.su.pr/hosted_js +# ||su.addthis.com^ (easyprivacy.txt: 6456) +.su.addthis.com +# ||streamads.com/view? (easyprivacy.txt: 6455) +.streamads.com/view\? +# ||stileproject.com/vhtk/ (easyprivacy.txt: 6454) +.stileproject.com/vhtk/ +# ||statt-collect.herokuapp.com^ (easyprivacy.txt: 6453) +.statt-collect.herokuapp.com +# ||statsrv.451.com^ (easyprivacy.txt: 6452) +.statsrv.451.com +# ||statsdev.treesd.com^ (easyprivacy.txt: 6451) +.statsdev.treesd.com +# ||statsadv.dadapro.com^$third-party (easyprivacy.txt: 6450) +.statsadv.dadapro.com +# ||stats3.unrulymedia.com^ (easyprivacy.txt: 6449) +.stats3.unrulymedia.com +# ||stats2.lightningcast.net^ (easyprivacy.txt: 6448) +.stats2.lightningcast.net +# ||stats1.tune.pk^ (easyprivacy.txt: 6447) +.stats1.tune.pk +# ||stats.yourminis.com^ (easyprivacy.txt: 6446) +.stats.yourminis.com +# ||stats.wp.com^ (easyprivacy.txt: 6445) +.stats.wp.com +# ||stats.whicdn.com^$third-party (easyprivacy.txt: 6444) +.stats.whicdn.com +# ||stats.webstarts.com^$third-party (easyprivacy.txt: 6443) +.stats.webstarts.com +# ||stats.webs.com^ (easyprivacy.txt: 6442) +.stats.webs.com +# ||stats.vodpod.com^ (easyprivacy.txt: 6441) +.stats.vodpod.com +# ||stats.viddler.com^ (easyprivacy.txt: 6440) +.stats.viddler.com +# ||stats.twistage.com^ (easyprivacy.txt: 6439) +.stats.twistage.com +# ||stats.topofblogs.com^ (easyprivacy.txt: 6438) +.stats.topofblogs.com +# ||stats.svpply.com^ (easyprivacy.txt: 6437) +.stats.svpply.com +# ||stats.surfaid.ihost.com^ (easyprivacy.txt: 6436) +.stats.surfaid.ihost.com +# ||stats.staging.suite101.com^ (easyprivacy.txt: 6435) +.stats.staging.suite101.com +# ||stats.snappytv.com^ (easyprivacy.txt: 6434) +.stats.snappytv.com +# ||stats.snacktools.net^ (easyprivacy.txt: 6433) +.stats.snacktools.net +# ||stats.smartclip.net^ (easyprivacy.txt: 6432) +.stats.smartclip.net +# ||stats.shopify.com^ (easyprivacy.txt: 6431) +.stats.shopify.com +# ||stats.screenresolution.org/get.php$image,third-party (easyprivacy.txt: 6430) +.stats.screenresolution.org/get\.php +# ||stats.sawlive.tv^ (easyprivacy.txt: 6429) +.stats.sawlive.tv +# ||stats.sa-as.com^ (easyprivacy.txt: 6428) +.stats.sa-as.com +# ||stats.ref2000.com^ (easyprivacy.txt: 6427) +.stats.ref2000.com +# ||stats.qmerce.com^ (easyprivacy.txt: 6426) +.stats.qmerce.com +# ||stats.polldaddy.com^ (easyprivacy.txt: 6425) +.stats.polldaddy.com +# ||stats.ozwebsites.biz^ (easyprivacy.txt: 6424) +.stats.ozwebsites.biz +# ||stats.olark.com^ (easyprivacy.txt: 6423) +.stats.olark.com +# ||stats.netbopdev.co.uk^ (easyprivacy.txt: 6422) +.stats.netbopdev.co.uk +# ||stats.nebula.fi^ (easyprivacy.txt: 6421) +.stats.nebula.fi +# ||stats.manticoretechnology.com^ (easyprivacy.txt: 6420) +.stats.manticoretechnology.com +# ||stats.magnify.net^ (easyprivacy.txt: 6419) +.stats.magnify.net +# ||stats.lotlinx.com^ (easyprivacy.txt: 6418) +.stats.lotlinx.com +# ||stats.load.com^ (easyprivacy.txt: 6417) +.stats.load.com +# ||stats.lightningcast.net^ (easyprivacy.txt: 6416) +.stats.lightningcast.net +# ||stats.kaltura.com^ (easyprivacy.txt: 6415) +.stats.kaltura.com +# ||stats.itweb.co.za^ (easyprivacy.txt: 6414) +.stats.itweb.co.za +# ||stats.inergizedigitalmedia.com^ (easyprivacy.txt: 6413) +.stats.inergizedigitalmedia.com +# ||stats.indexstats.com^ (easyprivacy.txt: 6412) +.stats.indexstats.com +# ||stats.highwire.com^ (easyprivacy.txt: 6411) +.stats.highwire.com +# ||stats.geegain.com^ (easyprivacy.txt: 6410) +.stats.geegain.com +# ||stats.g.doubleclick.net^ (easyprivacy.txt: 6409) +.stats.g.doubleclick.net +# ||stats.free-rein.net^ (easyprivacy.txt: 6408) +.stats.free-rein.net +# ||stats.edicy.com^ (easyprivacy.txt: 6407) +.stats.edicy.com +# ||stats.directnic.com^ (easyprivacy.txt: 6406) +.stats.directnic.com +# ||stats.dice.com^ (easyprivacy.txt: 6405) +.stats.dice.com +# ||stats.datahjaelp.net^ (easyprivacy.txt: 6404) +.stats.datahjaelp.net +# ||stats.complex.com^ (easyprivacy.txt: 6403) +.stats.complex.com +# ||stats.cnevids.com^ (easyprivacy.txt: 6402) +.stats.cnevids.com +# ||stats.cloudwp.io^ (easyprivacy.txt: 6401) +.stats.cloudwp.io +# ||stats.clipprtv.com^$third-party (easyprivacy.txt: 6400) +.stats.clipprtv.com +# ||stats.clickability.com^ (easyprivacy.txt: 6399) +.stats.clickability.com +# ||stats.cdn.playfair.co.za^ (easyprivacy.txt: 6398) +.stats.cdn.playfair.co.za +# ||stats.cdn.pfn.bz^ (easyprivacy.txt: 6397) +.stats.cdn.pfn.bz +# ||stats.bluebillywig.com^ (easyprivacy.txt: 6396) +.stats.bluebillywig.com +# ||stats.bitgravity.com^ (easyprivacy.txt: 6395) +.stats.bitgravity.com +# ||stats.big-boards.com^ (easyprivacy.txt: 6394) +.stats.big-boards.com +# ||stats.adm-vids.com^ (easyprivacy.txt: 6393) +.stats.adm-vids.com +# ||stats.24.com^ (easyprivacy.txt: 6392) +.stats.24.com +# ||stats-newyork1.bloxcms.com^ (easyprivacy.txt: 6391) +.stats-newyork1.bloxcms.com +# ||statm.the-adult-company.com^ (easyprivacy.txt: 6390) +.statm.the-adult-company.com +# ||statking.net^*/count.js (easyprivacy.txt: 6389) +.statking.net/.*/count\.js +# ||statistics.wibiya.com^ (easyprivacy.txt: 6388) +.statistics.wibiya.com +# ||statistics.tattermedia.com^ (easyprivacy.txt: 6387) +.statistics.tattermedia.com +# ||statistics.m0lxcdn.kukuplay.com^$third-party (easyprivacy.txt: 6386) +.statistics.m0lxcdn.kukuplay.com +# ||statistics.infowap.info^ (easyprivacy.txt: 6385) +.statistics.infowap.info +# ||static.parsely.com^$third-party (easyprivacy.txt: 6384) +.static.parsely.com +# ||statdb.pressflex.com^ (easyprivacy.txt: 6383) +.statdb.pressflex.com +# ||stat.web-regie.com^ (easyprivacy.txt: 6382) +.stat.web-regie.com +# ||stat.to.cupidplc.com^$third-party (easyprivacy.txt: 6381) +.stat.to.cupidplc.com +# ||stat.segitek.hu^ (easyprivacy.txt: 6380) +.stat.segitek.hu +# ||stat.pladform.ru^ (easyprivacy.txt: 6379) +.stat.pladform.ru +# ||stat.php-d.com^ (easyprivacy.txt: 6378) +.stat.php-d.com +# ||stat.itp-nyc.com^ (easyprivacy.txt: 6377) +.stat.itp-nyc.com +# ||stat.ed.cupidplc.com^ (easyprivacy.txt: 6376) +.stat.ed.cupidplc.com +# ||stat.easydate.biz^ (easyprivacy.txt: 6375) +.stat.easydate.biz +# ||st.dynamicyield.com^$third-party (easyprivacy.txt: 6374) +.st.dynamicyield.com +# ||spread.ly^*/statistics.php (easyprivacy.txt: 6372) +.spread.ly/.*/statistics\.php +# ||spoods.rce.veeseo.com^ (easyprivacy.txt: 6371) +.spoods.rce.veeseo.com +# ||spinmediacdn.com/clarity-*.js (easyprivacy.txt: 6370) +.spinmediacdn.com/clarity-.*\.js +# ||speedtrap.shopdirect.com^ (easyprivacy.txt: 6369) +.speedtrap.shopdirect.com +# ||speedtestbeta.com/*.gif?cb$third-party (easyprivacy.txt: 6368) +.speedtestbeta.com/.*\.gif\?cb +# ||sparklit.com/counter/ (easyprivacy.txt: 6367) +.sparklit.com/counter/ +# ||spaceprogram.com/webstats/ (easyprivacy.txt: 6366) +.spaceprogram.com/webstats/ +# ||spacedust.netmediaeurope.com^ (easyprivacy.txt: 6365) +.spacedust.netmediaeurope.com +# ||southafricahome.com/statsmodulev2/ (easyprivacy.txt: 6364) +.southafricahome.com/statsmodulev2/ +# ||sourceforge.net/tracker/$~xmlhttprequest (easyprivacy.txt: 6363) +.sourceforge.net/tracker/ +# ||soundcloud.com^*/plays?referer= (easyprivacy.txt: 6362) +.soundcloud.com/.*/plays\?referer= +# ||sohu.com/stat/ (easyprivacy.txt: 6361) +.sohu.com/stat/ +# ||socialreader.com^*?event=email_open^$image (easyprivacy.txt: 6360) +.socialreader.com/.*\?event=email_open[^\w%.-] +# ||snazzyspace.com/generators/viewer-counter/counter.php$third-party (easyprivacy.txt: 6359) +.snazzyspace.com/generators/viewer-counter/counter\.php +# ||snaps.vidiemi.com^$third-party (easyprivacy.txt: 6358) +.snaps.vidiemi.com +# ||smartertravel.com/ext/pixel/ (easyprivacy.txt: 6357) +.smartertravel.com/ext/pixel/ +# ||slidesharecdn.com/images/1x1.gif? (easyprivacy.txt: 6356) +.slidesharecdn.com/images/1x1\.gif\? +# ||slidedeck.com^$image,third-party (easyprivacy.txt: 6355) +.slidedeck.com +# ||sli-spark.com/b.png$third-party (easyprivacy.txt: 6354) +.sli-spark.com/b\.png +# ||skysa.com/tracker/ (easyprivacy.txt: 6353) +.skysa.com/tracker/ +# ||skimresources.com/api/ref-banners.js (easyprivacy.txt: 6352) +.skimresources.com/api/ref-banners\.js +# ||sitereports.officelive.com^ (easyprivacy.txt: 6351) +.sitereports.officelive.com +# ||siteintercept*.qualtrics.com^$third-party (easyprivacy.txt: 6350) +.siteintercept*./.*\.qualtrics\.com[^\w%.-] +.siteintercept*.qualtrics.com +# ||sinajs.cn/open/analytics/ (easyprivacy.txt: 6349) +.sinajs.cn/open/analytics/ +# ||signup.advance.net^*affiliate (easyprivacy.txt: 6348) +.signup.advance.net/.*affiliate +# ||sightmaxondemand.com/wreal/sightmaxagentinterface/monitor.smjs (easyprivacy.txt: 6347) +.sightmaxondemand.com/wreal/sightmaxagentinterface/monitor\.smjs +# ||sig.gamerdna.com^$third-party (easyprivacy.txt: 6346) +.sig.gamerdna.com +# ||shoplocal.com/it.ashx? (easyprivacy.txt: 6345) +.shoplocal.com/it\.ashx\? +# ||shareit.com/affiliate.html$third-party (easyprivacy.txt: 6344) +.shareit.com/affiliate\.html +# ||shareholder.com/track/ (easyprivacy.txt: 6343) +.shareholder.com/track/ +# ||shareaholic.com/partners.js (easyprivacy.txt: 6342) +.shareaholic.com/partners\.js +# ||shareaholic.com/analytics_ (easyprivacy.txt: 6341) +.shareaholic.com/analytics_ +# ||sftrack.searchforce.net^ (easyprivacy.txt: 6340) +.sftrack.searchforce.net +# ||sendtonews.com/player/loggingajax.php? (easyprivacy.txt: 6339) +.sendtonews.com/player/loggingajax\.php\? +# ||segments.adap.tv^$third-party (easyprivacy.txt: 6338) +.segments.adap.tv +# ||seg.sharethis.com^ (easyprivacy.txt: 6337) +.seg.sharethis.com +# ||secureprovide1.com/*=tracking$image (easyprivacy.txt: 6336) +.secureprovide1.com/.*=tracking +# ||secure.ifbyphone.com^$third-party (easyprivacy.txt: 6335) +.secure.ifbyphone.com +# ||secure.ed4.net/GSI/$third-party (easyprivacy.txt: 6334) +.secure.ed4.net/GSI/ +# ||searchstats.usa.gov^ (easyprivacy.txt: 6333) +.searchstats.usa.gov +# ||searchmaestros.com/trackpoint/ (easyprivacy.txt: 6332) +.searchmaestros.com/trackpoint/ +# ||searchcompletion.com/BannerHandler.ashx (easyprivacy.txt: 6331) +.searchcompletion.com/BannerHandler\.ashx +# ||search.mediatarget.net^$third-party (easyprivacy.txt: 6330) +.search.mediatarget.net +# ||scripts.psyma.com^ (easyprivacy.txt: 6329) +.scripts.psyma.com +# ||scribol.com/traffix/widget_tracker/ (easyprivacy.txt: 6328) +.scribol.com/traffix/widget_tracker/ +# ||scout.haymarketmedia.com^$third-party (easyprivacy.txt: 6327) +.scout.haymarketmedia.com +# ||saymedia.com/latest/tetrapak.js (easyprivacy.txt: 6326) +.saymedia.com/latest/tetrapak\.js +# ||sawpf.com/1.0.js$third-party (easyprivacy.txt: 6325) +.sawpf.com/1\.0\.js +# ||sana.newsinc.com^ (easyprivacy.txt: 6324) +.sana.newsinc.com +# ||salesforce.com/sfga.js (easyprivacy.txt: 6323) +.salesforce.com/sfga\.js +# ||sadv.dadapro.com^$third-party (easyprivacy.txt: 6322) +.sadv.dadapro.com +# ||saaspire.net/pxl/$third-party (easyprivacy.txt: 6321) +.saaspire.net/pxl/ +# ||s5labs.io/common/i?impressionId$image (easyprivacy.txt: 6320) +.s5labs.io/common/i\?impressionId +# ||s3-tracking.synthasite.net.s3.amazonaws.com^ (easyprivacy.txt: 6319) +.s3-tracking.synthasite.net.s3.amazonaws.com +# ||s.sniphub.com^ (easyprivacy.txt: 6318) +.s.sniphub.com +# ||s.clickability.com^ (easyprivacy.txt: 6317) +.s.clickability.com +# ||ru4.com/click? (easyprivacy.txt: 6316) +.ru4.com/click\? +# ||rtt.campanja.com^ (easyprivacy.txt: 6315) +.rtt.campanja.com +# ||rs.sinajs.cn^ (easyprivacy.txt: 6314) +.rs.sinajs.cn +# ||royalecms.com/statistics.php? (easyprivacy.txt: 6313) +.royalecms.com/statistics\.php\? +# ||rokt.com/pixel/ (easyprivacy.txt: 6312) +.rokt.com/pixel/ +# ||roitrack.addlvr.com^ (easyprivacy.txt: 6311) +.roitrack.addlvr.com +# ||rodalenl.com/imp?$third-party (easyprivacy.txt: 6310) +.rodalenl.com/imp\? +# ||richrelevance.com/rrserver/tracking? (easyprivacy.txt: 6309) +.richrelevance.com/rrserver/tracking\? +# ||rich-agent.s3.amazonaws.com^ (easyprivacy.txt: 6308) +.rich-agent.s3.amazonaws.com +# ||ria.ru/js/counter.js (easyprivacy.txt: 6307) +.ria.ru/js/counter\.js +# ||rhapsody.com^*/pixel? (easyprivacy.txt: 6306) +.rhapsody.com/.*/pixel\? +# ||reverbnation.com/widgets/trk/ (easyprivacy.txt: 6305) +.reverbnation.com/widgets/trk/ +# ||researchintel.com^$third-party (easyprivacy.txt: 6304) +.researchintel.com +# ||reports.tstlabs.co.uk^ (easyprivacy.txt: 6303) +.reports.tstlabs.co.uk +# ||reports.pagesuite-professional.co.uk^ (easyprivacy.txt: 6302) +.reports.pagesuite-professional.co.uk +# ||reports.maxperview.com^ (easyprivacy.txt: 6301) +.reports.maxperview.com +# ||reportinglogger.my.rightster.com^ (easyprivacy.txt: 6300) +.reportinglogger.my.rightster.com +# ||reporting.singlefeed.com^ (easyprivacy.txt: 6299) +.reporting.singlefeed.com +# ||reporting.reactlite.com^$third-party (easyprivacy.txt: 6298) +.reporting.reactlite.com +# ||reporting.handll.net^ (easyprivacy.txt: 6297) +.reporting.handll.net +# ||report.downloastar.com^ (easyprivacy.txt: 6296) +.report.downloastar.com +# ||replyat.com/gadgetpagecounter*.asp? (easyprivacy.txt: 6295) +.replyat.com/gadgetpagecounter.*\.asp\? +# ||referrer.disqus.com^ (easyprivacy.txt: 6294) +.referrer.disqus.com +# ||reevoo.com^*/track/ (easyprivacy.txt: 6293) +.reevoo.com/.*/track/ +# ||reevoo.com/track_url/ (easyprivacy.txt: 6292) +.reevoo.com/track_url/ +# ||reevoo.com/track/ (easyprivacy.txt: 6291) +.reevoo.com/track/ +# ||redplum.com^*&pixid=$third-party (easyprivacy.txt: 6290) +.redplum.com/.*&pixid= +# ||redir.widdit.com^$third-party (easyprivacy.txt: 6289) +.redir.widdit.com +# ||recs.atgsvcs.com^$third-party (easyprivacy.txt: 6288) +.recs.atgsvcs.com +# ||realtidbits.com^*/analytics.js (easyprivacy.txt: 6287) +.realtidbits.com/.*/analytics\.js +# ||realplayer.com^*/pixel? (easyprivacy.txt: 6286) +.realplayer.com/.*/pixel\? +# ||readcube.com/tracking/ (easyprivacy.txt: 6285) +.readcube.com/tracking/ +# ||readcube.com/ping? (easyprivacy.txt: 6284) +.readcube.com/ping\? +# ||rbl.ms/res/users/tracking/ (easyprivacy.txt: 6283) +.rbl.ms/res/users/tracking/ +# ||radiocompanion.com/count.php? (easyprivacy.txt: 6282) +.radiocompanion.com/count\.php\? +# ||rackcdn.com^*/analytics.js (easyprivacy.txt: 6281) +.rackcdn.com/.*/analytics\.js +# ||rackcdn.com/knotice.api.js (easyprivacy.txt: 6279) +.rackcdn.com/knotice\.api\.js +# ||rackcdn.com/icon2.gif? (easyprivacy.txt: 6278) +.rackcdn.com/icon2\.gif\? +# ||rackcdn.com/easie.js (easyprivacy.txt: 6277) +.rackcdn.com/easie\.js +# ||rackcdn.com/1x1.gif? (easyprivacy.txt: 6276) +.rackcdn.com/1x1\.gif\? +# ||ra.ripple6.com^ (easyprivacy.txt: 6275) +.ra.ripple6.com +# ||r.ypcdn.com^*/rtd?ptid$image (easyprivacy.txt: 6274) +.r.ypcdn.com/.*/rtd\?ptid +# ||r.msn.com^ (easyprivacy.txt: 6273) +.r.msn.com +# ||quisma.com/tracking/ (easyprivacy.txt: 6272) +.quisma.com/tracking/ +# ||qubitanalytics.appspot.com^ (easyprivacy.txt: 6271) +.qubitanalytics.appspot.com +# ||qualtrics.com^*/metrics (easyprivacy.txt: 6270) +.qualtrics.com/.*/metrics +# ||qq.com/stats? (easyprivacy.txt: 6269) +.qq.com/stats\? +# ||qq.com/ping.js? (easyprivacy.txt: 6268) +.qq.com/ping\.js\? +# ||qq.com/heatmap/ (easyprivacy.txt: 6267) +.qq.com/heatmap/ +# ||qos.video.yimg.com^ (easyprivacy.txt: 6266) +.qos.video.yimg.com +# ||qlog.adap.tv^$object-subrequest (easyprivacy.txt: 6265) +.qlog.adap.tv +# ||px.topspin.net^ (easyprivacy.txt: 6264) +.px.topspin.net +# ||px.owneriq.net^ (easyprivacy.txt: 6263) +.px.owneriq.net +# ||px.excitedigitalmedia.com^ (easyprivacy.txt: 6262) +.px.excitedigitalmedia.com +# ||px.dynamicyield.com^$third-party (easyprivacy.txt: 6261) +.px.dynamicyield.com +# ||pussy.org^*/track.php (easyprivacy.txt: 6260) +.pussy.org/.*/track\.php +# ||pussy.org^*.cgi?pid= (easyprivacy.txt: 6259) +.pussy.org/.*\.cgi\?pid= +# ||purevideo.com^*/pvshim.gif? (easyprivacy.txt: 6258) +.purevideo.com/.*/pvshim\.gif\? +# ||publish.pizzazzemail.com^$third-party (easyprivacy.txt: 6257) +.publish.pizzazzemail.com +# ||publicbroadcasting.net/analytics/ (easyprivacy.txt: 6256) +.publicbroadcasting.net/analytics/ +# ||pub.sheknows.com^ (easyprivacy.txt: 6255) +.pub.sheknows.com +# ||ptsc.shoplocal.com^ (easyprivacy.txt: 6254) +.ptsc.shoplocal.com +# ||pt.crossmediaservices.com^ (easyprivacy.txt: 6253) +.pt.crossmediaservices.com +# ||pswec.com/px/$third-party (easyprivacy.txt: 6252) +.pswec.com/px/ +# ||prstats.postrelease.com^ (easyprivacy.txt: 6251) +.prstats.postrelease.com +# ||proxify.com/xyz.php$third-party (easyprivacy.txt: 6250) +.proxify.com/xyz\.php +# ||providence.voxmedia.com^$third-party (easyprivacy.txt: 6249) +.providence.voxmedia.com +# ||propelplus.com/track/$third-party (easyprivacy.txt: 6248) +.propelplus.com/track/ +# ||projop.dnsalias.com^$third-party (easyprivacy.txt: 6247) +.projop.dnsalias.com +# ||projecthaile.com/js/trb-1.js (easyprivacy.txt: 6246) +.projecthaile.com/js/trb-1\.js +# ||production.mcs.delve.cust.lldns.net^ (easyprivacy.txt: 6245) +.production.mcs.delve.cust.lldns.net +# ||production-mcs.lvp.llnw.net^ (easyprivacy.txt: 6244) +.production-mcs.lvp.llnw.net +# ||production-eqbc.lvp.llnw.net^ (easyprivacy.txt: 6243) +.production-eqbc.lvp.llnw.net +# ||privacytool.org/AnonymityChecker/js/fontdetect.js$third-party (easyprivacy.txt: 6242) +.privacytool.org/AnonymityChecker/js/fontdetect\.js +# ||print2webcorp.com/mkt3/_js/p2w_tracker.js (easyprivacy.txt: 6241) +.print2webcorp.com/mkt3/_js/p2w_tracker\.js +# ||praekelt.com^*/webtracker.js (easyprivacy.txt: 6240) +.praekelt.com/.*/webtracker\.js +# ||pr.blogflux.com^ (easyprivacy.txt: 6239) +.pr.blogflux.com +# ||ppx.com/tracking/ (easyprivacy.txt: 6238) +.ppx.com/tracking/ +# ||powersearch.us.com^ (easyprivacy.txt: 6237) +.powersearch.us.com +# ||poweredbyeden.com/widget/tracker/ (easyprivacy.txt: 6236) +.poweredbyeden.com/widget/tracker/ +# ||potaroo.net/1x1.png? (easyprivacy.txt: 6235) +.potaroo.net/1x1\.png\? +# ||postpixel.vindicosuite.com^ (easyprivacy.txt: 6234) +.postpixel.vindicosuite.com +# ||postageapp.com/receipt/$third-party (easyprivacy.txt: 6233) +.postageapp.com/receipt/ +# ||pornhost.com/count_hit_player.php (easyprivacy.txt: 6232) +.pornhost.com/count_hit_player\.php +# ||pong.production.gannettdigital.com^ (easyprivacy.txt: 6231) +.pong.production.gannettdigital.com +# ||pmetrics.performancing.com^ (easyprivacy.txt: 6230) +.pmetrics.performancing.com +# ||plugins.longtailvideo.com/yourlytics (easyprivacy.txt: 6229) +.plugins.longtailvideo.com/yourlytics +# ||plugins.longtailvideo.com/googlytics (easyprivacy.txt: 6228) +.plugins.longtailvideo.com/googlytics +# ||playtomic.com/Tracker/ (easyprivacy.txt: 6227) +.playtomic.com/Tracker/ +# ||player.ooyala.com/errors/report? (easyprivacy.txt: 6226) +.player.ooyala.com/errors/report\? +# ||platform.twitter.com/impressions.js$third-party (easyprivacy.txt: 6225) +.platform.twitter.com/impressions\.js +# ||platform.communicatorcorp.com^$third-party (easyprivacy.txt: 6224) +.platform.communicatorcorp.com +# ||planet49.com/log/ (easyprivacy.txt: 6223) +.planet49.com/log/ +# ||pixhosting.com/ct/jct.php? (easyprivacy.txt: 6222) +.pixhosting.com/ct/jct\.php\? +# ||pixels.youknowbest.com^$third-party (easyprivacy.txt: 6221) +.pixels.youknowbest.com +# ||pixel.yola.com^ (easyprivacy.txt: 6220) +.pixel.yola.com +# ||pixel.yabidos.com^ (easyprivacy.txt: 6219) +.pixel.yabidos.com +# ||pixel.xmladfeed.com^$third-party (easyprivacy.txt: 6218) +.pixel.xmladfeed.com +# ||pixel.wp.com^ (easyprivacy.txt: 6217) +.pixel.wp.com +# ||pixel.vmm-satellite2.com^ (easyprivacy.txt: 6216) +.pixel.vmm-satellite2.com +# ||pixel.tree.com^ (easyprivacy.txt: 6215) +.pixel.tree.com +# ||pixel.solvemedia.com^ (easyprivacy.txt: 6214) +.pixel.solvemedia.com +# ||pixel.newsdata.com.au^ (easyprivacy.txt: 6213) +.pixel.newsdata.com.au +# ||pixel.newscred.com^ (easyprivacy.txt: 6212) +.pixel.newscred.com +# ||pixel.indieclicktv.com/annonymous/ (easyprivacy.txt: 6211) +.pixel.indieclicktv.com/annonymous/ +# ||pixel.glimr.io^ (easyprivacy.txt: 6210) +.pixel.glimr.io +# ||pixel.fanbridge.com^ (easyprivacy.txt: 6209) +.pixel.fanbridge.com +# ||pixel.condenastdigital.com^ (easyprivacy.txt: 6208) +.pixel.condenastdigital.com +# ||pixel.colorupmedia.com^ (easyprivacy.txt: 6207) +.pixel.colorupmedia.com +# ||pix.speedbit.com^$third-party (easyprivacy.txt: 6206) +.pix.speedbit.com +# ||pix.impdesk.com^ (easyprivacy.txt: 6205) +.pix.impdesk.com +# ||pipedream.wistia.com^ (easyprivacy.txt: 6204) +.pipedream.wistia.com +# ||pings.conviva.com^ (easyprivacy.txt: 6203) +.pings.conviva.com +# ||ping.smyte.com^ (easyprivacy.txt: 6202) +.ping.smyte.com +# ||ping.rasset.ie^ (easyprivacy.txt: 6201) +.ping.rasset.ie +# ||ping.hellobar.com^ (easyprivacy.txt: 6200) +.ping.hellobar.com +# ||ping.dozuki.com^ (easyprivacy.txt: 6199) +.ping.dozuki.com +# ||ping.aclst.com^ (easyprivacy.txt: 6198) +.ping.aclst.com +# ||pianomedia.biz/uid/$script (easyprivacy.txt: 6197) +.pianomedia.biz/uid/ +# ||piano-media.com/uid/$third-party (easyprivacy.txt: 6196) +.piano-media.com/uid/ +# ||piano-media.com/ping (easyprivacy.txt: 6195) +.piano-media.com/ping +# ||piano-media.com/bucket/novosense.swf$third-party (easyprivacy.txt: 6194) +.piano-media.com/bucket/novosense\.swf +# ||piano-media.com/auth/index.php? (easyprivacy.txt: 6193) +.piano-media.com/auth/index\.php\? +# ||phoenix.untd.com^ (easyprivacy.txt: 6192) +.phoenix.untd.com +# ||phncdn.com/js/ssig_helper.js (easyprivacy.txt: 6191) +.phncdn.com/js/ssig_helper\.js +# ||pg.buzzfeed.com^ (easyprivacy.txt: 6190) +.pg.buzzfeed.com +# ||pf.aclst.com^$third-party (easyprivacy.txt: 6189) +.pf.aclst.com +# ||petitionermaster.appspot.com^ (easyprivacy.txt: 6188) +.petitionermaster.appspot.com +# ||pebed.dm.gg^ (easyprivacy.txt: 6187) +.pebed.dm.gg +# ||pcrl.co/js/jstracker.min.js (easyprivacy.txt: 6186) +.pcrl.co/js/jstracker\.min\.js +# ||pcmag.com/rvb/$image (easyprivacy.txt: 6185) +.pcmag.com/rvb/ +# ||paypalobjects.com^*/pixel.gif (easyprivacy.txt: 6184) +.paypalobjects.com/.*/pixel\.gif +# ||paypal.com^*/pixel.gif$third-party (easyprivacy.txt: 6183) +.paypal.com/.*/pixel\.gif +# ||passport.pfn.bz^ (easyprivacy.txt: 6182) +.passport.pfn.bz +# ||partypoker.com^*/tracking- (easyprivacy.txt: 6181) +.partypoker.com/.*/tracking- +# ||partners.thefilter.com^ (easyprivacy.txt: 6180) +.partners.thefilter.com +# ||partner.cynapse.com^ (easyprivacy.txt: 6179) +.partner.cynapse.com +# ||pair.com/itero/tracker_ftc/ (easyprivacy.txt: 6178) +.pair.com/itero/tracker_ftc/ +# ||pageturnpro.com/tracker.aspx? (easyprivacy.txt: 6177) +.pageturnpro.com/tracker\.aspx\? +# ||p0.com/1x1 (easyprivacy.txt: 6176) +.p0.com/1x1 +# ||p.yotpo.com^ (easyprivacy.txt: 6175) +.p.yotpo.com +# ||p.po.st^*&vguid= (easyprivacy.txt: 6174) +.p.po.st/.*&vguid= +# ||p.po.st^*&pub= (easyprivacy.txt: 6173) +.p.po.st/.*&pub= +# ||p.po.st/p?t=view&$third-party (easyprivacy.txt: 6172) +.p.po.st/p\?t=view& +# ||p.po.st/p?pub= (easyprivacy.txt: 6171) +.p.po.st/p\?pub= +# ||p.dsero.net^ (easyprivacy.txt: 6170) +.p.dsero.net +# ||p.delivery.net^$third-party (easyprivacy.txt: 6169) +.p.delivery.net +# ||outbrain.com^*/widgetStatistics.js (easyprivacy.txt: 6168) +.outbrain.com/.*/widgetStatistics\.js +# ||orts.wixawin.com^$third-party (easyprivacy.txt: 6167) +.orts.wixawin.com +# ||ora.tv/j/ora_evttracking.js (easyprivacy.txt: 6166) +.ora.tv/j/ora_evttracking\.js +# ||optimizely.appspot.com^$third-party (easyprivacy.txt: 6165) +.optimizely.appspot.com +# ||ophan.co.uk/t.gif? (easyprivacy.txt: 6164) +.ophan.co.uk/t\.gif\? +# ||open.delivery.net^ (easyprivacy.txt: 6163) +.open.delivery.net +# ||ooyala.com^*/report?log (easyprivacy.txt: 6162) +.ooyala.com/.*/report\?log +# ||ooyala.com/verify? (easyprivacy.txt: 6161) +.ooyala.com/verify\? +# ||ooyala.com/sas/analytics? (easyprivacy.txt: 6160) +.ooyala.com/sas/analytics\? +# ||ooyala.com/authorized?analytics (easyprivacy.txt: 6159) +.ooyala.com/authorized\?analytics +# ||ooyala.com/3rdparty/comscore_ (easyprivacy.txt: 6158) +.ooyala.com/3rdparty/comscore_ +# ||oogala.com/impression.php? (easyprivacy.txt: 6157) +.oogala.com/impression\.php\? +# ||onsugar.com/static/ck.php? (easyprivacy.txt: 6156) +.onsugar.com/static/ck\.php\? +# ||onespot-tracking.herokuapp.com^ (easyprivacy.txt: 6155) +.onespot-tracking.herokuapp.com +# ||onescreen.net/os/static/pixels/ (easyprivacy.txt: 6154) +.onescreen.net/os/static/pixels/ +# ||om.1and1.co.uk^ (easyprivacy.txt: 6153) +.om.1and1.co.uk +# ||ohnorobot.com/verify.pl? (easyprivacy.txt: 6152) +.ohnorobot.com/verify\.pl\? +# ||offers.keynote.com^$third-party (easyprivacy.txt: 6151) +.offers.keynote.com +# ||offermatica.intuit.com^ (easyprivacy.txt: 6150) +.offermatica.intuit.com +# ||oddcast.com/event.php?$object-subrequest (easyprivacy.txt: 6149) +.oddcast.com/event\.php\? +# ||octopart-analytics.com^$third-party (easyprivacy.txt: 6148) +.octopart-analytics.com +# ||ocp.cnettv.com^*/Request.jsp? (easyprivacy.txt: 6147) +.ocp.cnettv.com/.*/Request\.jsp\? +# ||observer.ip-label.net^ (easyprivacy.txt: 6146) +.observer.ip-label.net +# ||o.aolcdn.com/js/mg1.js (easyprivacy.txt: 6145) +.o.aolcdn.com/js/mg1\.js +# ||o.addthis.com^ (easyprivacy.txt: 6144) +.o.addthis.com +# ||nude.hu/html/track.js (easyprivacy.txt: 6143) +.nude.hu/html/track\.js +# ||nspmotion.com/tracking/ (easyprivacy.txt: 6142) +.nspmotion.com/tracking/ +# ||nsdsvc.com/scripts/action-tracker.js (easyprivacy.txt: 6141) +.nsdsvc.com/scripts/action-tracker\.js +# ||ns.rvmkitt.com^ (easyprivacy.txt: 6140) +.ns.rvmkitt.com +# ||nova.dice.net^ (easyprivacy.txt: 6139) +.nova.dice.net +# ||nonxt1.c.youtube.com^$third-party (easyprivacy.txt: 6138) +.nonxt1.c.youtube.com +# ||nol.yahoo.com^ (easyprivacy.txt: 6137) +.nol.yahoo.com +# ||ninja.onap.io^ (easyprivacy.txt: 6136) +.ninja.onap.io +# ||newsletters.nationalgeographic.com^$image,third-party (easyprivacy.txt: 6135) +.newsletters.nationalgeographic.com +# ||newsletters.infoworld.com/db/$image,third-party (easyprivacy.txt: 6134) +.newsletters.infoworld.com/db/ +# ||newsanalytics.com.au^$third-party (easyprivacy.txt: 6133) +.newsanalytics.com.au +# ||neulion.vo.llnwd.net^*/track.js (easyprivacy.txt: 6132) +.neulion.vo.llnwd.net/.*/track\.js +# ||netscape.com/c.cgi? (easyprivacy.txt: 6131) +.netscape.com/c\.cgi\? +# ||netne.net/stats/ (easyprivacy.txt: 6130) +.netne.net/stats/ +# ||netbiscuits.net^*/analytics/ (easyprivacy.txt: 6129) +.netbiscuits.net/.*/analytics/ +# ||netalpaca.com/beacon (easyprivacy.txt: 6128) +.netalpaca.com/beacon +# ||neon-lab.com/neonbctracker.js (easyprivacy.txt: 6127) +.neon-lab.com/neonbctracker\.js +# ||neocounter.neoworx-blog-tools.net^ (easyprivacy.txt: 6126) +.neocounter.neoworx-blog-tools.net +# ||nbcudigitaladops.com/hosted/housepix.gif (easyprivacy.txt: 6125) +.nbcudigitaladops.com/hosted/housepix\.gif +# ||navlink.com/__utmala.js (easyprivacy.txt: 6124) +.navlink.com/__utmala\.js +# ||nastydollars.com/trk/ (easyprivacy.txt: 6123) +.nastydollars.com/trk/ +# ||mysociety.org/track/ (easyprivacy.txt: 6122) +.mysociety.org/track/ +# ||mysdcc.sdccd.edu^*/.log/ (easyprivacy.txt: 6121) +.mysdcc.sdccd.edu/.*/\.log/ +# ||myscoop-tracking.googlecode.com^$third-party (easyprivacy.txt: 6120) +.myscoop-tracking.googlecode.com +# ||mymarketing.co.il/Include/tracker.js (easyprivacy.txt: 6119) +.mymarketing.co.il/Include/tracker\.js +# ||myfreecams.com/mfc2/lib/o-mfccore.js (easyprivacy.txt: 6118) +.myfreecams.com/mfc2/lib/o-mfccore\.js +# ||myblueday.com^*/count.asp? (easyprivacy.txt: 6117) +.myblueday.com/.*/count\.asp\? +# ||mxmfb.com/rsps/img/ (easyprivacy.txt: 6116) +.mxmfb.com/rsps/img/ +# ||museter.com/track.php? (easyprivacy.txt: 6115) +.museter.com/track\.php\? +# ||mtvnservices.com/metrics/ (easyprivacy.txt: 6114) +.mtvnservices.com/metrics/ +# ||mtvnservices.com/aria/uuid.html (easyprivacy.txt: 6113) +.mtvnservices.com/aria/uuid\.html +# ||mtv.com^*spacer.gif? (easyprivacy.txt: 6112) +.mtv.com/.*spacer\.gif\? +# ||mts.mansion.com^$third-party (easyprivacy.txt: 6111) +.mts.mansion.com +# ||msecnd.net/scripts/a/ai.0.js (easyprivacy.txt: 6110) +.msecnd.net/scripts/a/ai\.0\.js +# ||msecnd.net/jscripts/HA-$script (easyprivacy.txt: 6109) +.msecnd.net/jscripts/HA- +# ||mozilla.org/page/*/open.gif$third-party (easyprivacy.txt: 6108) +.mozilla.org/page/.*/open\.gif +# ||modules.ooyala.com^*/analytics- (easyprivacy.txt: 6107) +.modules.ooyala.com/.*/analytics- +# ||mochiads.com/clk/ (easyprivacy.txt: 6106) +.mochiads.com/clk/ +# ||mmpstats.mirror-image.com^ (easyprivacy.txt: 6105) +.mmpstats.mirror-image.com +# ||mmi.bemobile.ua^ (easyprivacy.txt: 6104) +.mmi.bemobile.ua +# ||mlweb.dmlab.hu^ (easyprivacy.txt: 6103) +.mlweb.dmlab.hu +# ||ml.com/enterprisetagging/ (easyprivacy.txt: 6102) +.ml.com/enterprisetagging/ +# ||mkcms.com/stats.js (easyprivacy.txt: 6101) +.mkcms.com/stats\.js +# ||mitel.marketbright.com^ (easyprivacy.txt: 6100) +.mitel.marketbright.com +# ||mint.good.is^ (easyprivacy.txt: 6099) +.mint.good.is +# ||metro-trending-*.amazonaws.com^$third-party (easyprivacy.txt: 6098) +.metro-trending-*./.*\.amazonaws\.com[^\w%.-] +.metro-trending-*.amazonaws.com +# ||metrixlablw.customers.luna.net^ (easyprivacy.txt: 6097) +.metrixlablw.customers.luna.net +# ||metrics.wikinvest.com^ (easyprivacy.txt: 6096) +.metrics.wikinvest.com +# ||metrics.upcload.com^ (easyprivacy.txt: 6095) +.metrics.upcload.com +# ||metrics.toptenreviews.com^ (easyprivacy.txt: 6094) +.metrics.toptenreviews.com +# ||metrics.sonymusicd2c.com^ (easyprivacy.txt: 6093) +.metrics.sonymusicd2c.com +# ||metrics.seenon.com^ (easyprivacy.txt: 6092) +.metrics.seenon.com +# ||metrics.scribblelive.com^ (easyprivacy.txt: 6091) +.metrics.scribblelive.com +# ||metrics.loomia.com^ (easyprivacy.txt: 6090) +.metrics.loomia.com +# ||metrics.feedroom.com^ (easyprivacy.txt: 6089) +.metrics.feedroom.com +# ||metrics.el-mundo.net^ (easyprivacy.txt: 6088) +.metrics.el-mundo.net +# ||metrics.ctvdigital.net^ (easyprivacy.txt: 6087) +.metrics.ctvdigital.net +# ||metrics.chmedia.com^ (easyprivacy.txt: 6086) +.metrics.chmedia.com +# ||metrics.brightcove.com^ (easyprivacy.txt: 6085) +.metrics.brightcove.com +# ||metrics-api.librato.com^ (easyprivacy.txt: 6084) +.metrics-api.librato.com +# ||metric.nwsource.com^ (easyprivacy.txt: 6083) +.metric.nwsource.com +# ||metering.pagesuite.com^$third-party (easyprivacy.txt: 6082) +.metering.pagesuite.com +# ||metaffiliation.com^*^mclic= (easyprivacy.txt: 6081) +.metaffiliation.com/.*[^\w%.-]mclic= +# ||metabroadcast.com^*/log? (easyprivacy.txt: 6080) +.metabroadcast.com/.*/log\? +# ||merchenta.com/track/ (easyprivacy.txt: 6079) +.merchenta.com/track/ +# ||meebo.com/cim/sandbox.php? (easyprivacy.txt: 6078) +.meebo.com/cim/sandbox\.php\? +# ||mediego.com/tracker.js$third-party (easyprivacy.txt: 6077) +.mediego.com/tracker\.js +# ||mediaplex.com^*?mpt= (easyprivacy.txt: 6076) +.mediaplex.com/.*\?mpt= +# ||mediapartner.bigpoint.net^$third-party (easyprivacy.txt: 6075) +.mediapartner.bigpoint.net +# ||mediametrics.mpsa.com^ (easyprivacy.txt: 6074) +.mediametrics.mpsa.com +# ||mediaite.com^*/track/ (easyprivacy.txt: 6073) +.mediaite.com/.*/track/ +# ||mediabong.net/t/ (easyprivacy.txt: 6072) +.mediabong.net/t/ +# ||mediabong.com/t/ (easyprivacy.txt: 6071) +.mediabong.com/t/ +# ||media-imdb.com/twilight/? (easyprivacy.txt: 6070) +.media-imdb.com/twilight/\? +# ||mdctrail.com/b.ashx$third-party (easyprivacy.txt: 6069) +.mdctrail.com/b\.ashx +# ||mcssl.com^*/track.ashx? (easyprivacy.txt: 6068) +.mcssl.com/.*/track\.ashx\? +# ||mcs.delvenetworks.com^ (easyprivacy.txt: 6067) +.mcs.delvenetworks.com +# ||mc.yandex.ru^ (easyprivacy.txt: 6066) +.mc.yandex.ru +# ||mbsvr.net/js/tracker/ (easyprivacy.txt: 6065) +.mbsvr.net/js/tracker/ +# ||maxmind.com^*/geoip2.js (easyprivacy.txt: 6064) +.maxmind.com/.*/geoip2\.js +# ||maxmind.com^*/geoip.js (easyprivacy.txt: 6063) +.maxmind.com/.*/geoip\.js +# ||maxmind.com/js/device.js$third-party (easyprivacy.txt: 6062) +.maxmind.com/js/device\.js +# ||maxmind.com/app/$third-party (easyprivacy.txt: 6061) +.maxmind.com/app/ +# ||mashery.com/analytics/ (easyprivacy.txt: 6060) +.mashery.com/analytics/ +# ||marketinghub.hp.com^ (easyprivacy.txt: 6059) +.marketinghub.hp.com +# ||mansion.com/mts.tracker.js (easyprivacy.txt: 6058) +.mansion.com/mts\.tracker\.js +# ||mandrillapp.com/track/ (easyprivacy.txt: 6057) +.mandrillapp.com/track/ +# ||manager.tagcommander.com/utils/privacyHit.php?$third-party (easyprivacy.txt: 6056) +.manager.tagcommander.com/utils/privacyHit\.php\? +# ||mailmax.co.nz/login/open.php$third-party (easyprivacy.txt: 6055) +.mailmax.co.nz/login/open\.php +# ||mail.ru/k? (easyprivacy.txt: 6054) +.mail.ru/k\? +# ||mail.ebay.com/img/*.gif (easyprivacy.txt: 6053) +.mail.ebay.com/img/.*\.gif +# ||mail-app.com/pvtracker/ (easyprivacy.txt: 6052) +.mail-app.com/pvtracker/ +# ||magnify360-cdn.s3.amazonaws.com^ (easyprivacy.txt: 6051) +.magnify360-cdn.s3.amazonaws.com +# ||magnify.net/decor/track/ (easyprivacy.txt: 6050) +.magnify.net/decor/track/ +# ||m30w.net/engine/$image,third-party (easyprivacy.txt: 6049) +.m30w.net/engine/ +# ||m.trb.com^ (easyprivacy.txt: 6048) +.m.trb.com +# ||m.addthisedge.com^$third-party (easyprivacy.txt: 6047) +.m.addthisedge.com +# ||lycos.com/hb.js (easyprivacy.txt: 6046) +.lycos.com/hb\.js +# ||lunametrics.wpengine.netdna-cdn.com^ (easyprivacy.txt: 6045) +.lunametrics.wpengine.netdna-cdn.com +# ||luminate.com/track/ (easyprivacy.txt: 6044) +.luminate.com/track/ +# ||ltassrv.com/track/ (easyprivacy.txt: 6043) +.ltassrv.com/track/ +# ||lt.tritondigital.com^ (easyprivacy.txt: 6042) +.lt.tritondigital.com +# ||lsimg.net^*/vs.js (easyprivacy.txt: 6041) +.lsimg.net/.*/vs\.js +# ||lp.vadio.com^ (easyprivacy.txt: 6040) +.lp.vadio.com +# ||loxodo-analytics.ext.nile.works^ (easyprivacy.txt: 6039) +.loxodo-analytics.ext.nile.works +# ||loop11.com^$third-party (easyprivacy.txt: 6038) +.loop11.com +# ||loomia.com^*/setcookie.html (easyprivacy.txt: 6037) +.loomia.com/.*/setcookie\.html +# ||longurl.it/_t.gif?$third-party (easyprivacy.txt: 6036) +.longurl.it/_t\.gif\? +# ||longtailvideo.com^*/yourlytics- (easyprivacy.txt: 6035) +.longtailvideo.com/.*/yourlytics- +# ||logssl.enquisite.com^ (easyprivacy.txt: 6034) +.logssl.enquisite.com +# ||logs.vmixcore.com^ (easyprivacy.txt: 6033) +.logs.vmixcore.com +# ||logs.thebloggernetwork.com^ (easyprivacy.txt: 6032) +.logs.thebloggernetwork.com +# ||logs.spilgames.com^ (easyprivacy.txt: 6031) +.logs.spilgames.com +# ||loggingapi.spingo.com^ (easyprivacy.txt: 6030) +.loggingapi.spingo.com +# ||logging.carambo.la^ (easyprivacy.txt: 6029) +.logging.carambo.la +# ||logger.sociablelabs.com^ (easyprivacy.txt: 6028) +.logger.sociablelabs.com +# ||logger.logidea.info^ (easyprivacy.txt: 6027) +.logger.logidea.info +# ||log1.survey.io^ (easyprivacy.txt: 6026) +.log1.survey.io +# ||log000.goo.ne.jp^$third-party (easyprivacy.txt: 6025) +.log000.goo.ne.jp +# ||log.prezi.com^ (easyprivacy.txt: 6024) +.log.prezi.com +# ||log.pinterest.com^ (easyprivacy.txt: 6023) +.log.pinterest.com +# ||log.outbrain.com^ (easyprivacy.txt: 6022) +.log.outbrain.com +# ||log.olark.com^ (easyprivacy.txt: 6021) +.log.olark.com +# ||log.liverail.com^ (easyprivacy.txt: 6020) +.log.liverail.com +# ||log.kukuplay.com^$third-party (easyprivacy.txt: 6019) +.log.kukuplay.com +# ||log.kibboko.com^ (easyprivacy.txt: 6018) +.log.kibboko.com +# ||log.invodo.com^ (easyprivacy.txt: 6017) +.log.invodo.com +# ||log.ideamelt.com^ (easyprivacy.txt: 6016) +.log.ideamelt.com +# ||log.adap.tv^$object-subrequest (easyprivacy.txt: 6015) +.log.adap.tv +# ||log-*.previewnetworks.com^ (easyprivacy.txt: 6014) +.log-*./.*\.previewnetworks\.com[^\w%.-] +.log-*.previewnetworks.com +# ||lockerz.com/1x1.gif? (easyprivacy.txt: 6013) +.lockerz.com/1x1\.gif\? +# ||location3.com/analytics/ (easyprivacy.txt: 6012) +.location3.com/analytics/ +# ||livestats.kaltura.com^ (easyprivacy.txt: 6011) +.livestats.kaltura.com +# ||liverail.com/track/? (easyprivacy.txt: 6010) +.liverail.com/track/\? +# ||liverail.com/?metric= (easyprivacy.txt: 6009) +.liverail.com/\?metric= +# ||livehelpnow.net/lhn/jsutil/getinvitationmessage.aspx? (easyprivacy.txt: 6008) +.livehelpnow.net/lhn/jsutil/getinvitationmessage\.aspx\? +# ||livefyre.com^*/tracking/ (easyprivacy.txt: 6007) +.livefyre.com/.*/tracking/ +# ||livefyre.com^*/tracker.js (easyprivacy.txt: 6006) +.livefyre.com/.*/tracker\.js +# ||livefyre.com/tracking/ (easyprivacy.txt: 6005) +.livefyre.com/tracking/ +# ||livefyre.com/libs/tracker/ (easyprivacy.txt: 6004) +.livefyre.com/libs/tracker/ +# ||livecounter.theyosh.nl^ (easyprivacy.txt: 6003) +.livecounter.theyosh.nl +# ||livechatinc.com^*/control.cgi? (easyprivacy.txt: 6002) +.livechatinc.com/.*/control\.cgi\? +# ||live2support.com^*/js_lstrk. (easyprivacy.txt: 6001) +.live2support.com/.*/js_lstrk\. +# ||list.fightforthefuture.org/mpss/o/*/o.gif (easyprivacy.txt: 6000) +.list.fightforthefuture.org/mpss/o/.*/o\.gif +# ||list-manage.com/track/ (easyprivacy.txt: 5999) +.list-manage.com/track/ +# ||linkwithin.com/pixel.png (easyprivacy.txt: 5998) +.linkwithin.com/pixel\.png +# ||linkedin.com/lite/rum-track?$image,third-party (easyprivacy.txt: 5997) +.linkedin.com/lite/rum-track\? +# ||linkedin.com/emimp/$image (easyprivacy.txt: 5996) +.linkedin.com/emimp/ +# ||linkbucks.com/visitScript/ (easyprivacy.txt: 5995) +.linkbucks.com/visitScript/ +# ||link.informer.com^ (easyprivacy.txt: 5994) +.link.informer.com +# ||link.indiegogo.com/img/ (easyprivacy.txt: 5993) +.link.indiegogo.com/img/ +# ||link.huffingtonpost.com^$third-party (easyprivacy.txt: 5992) +.link.huffingtonpost.com +# ||link.americastestkitchencorp.com^ (easyprivacy.txt: 5991) +.link.americastestkitchencorp.com +# ||lingows.appspot.com/page_data/? (easyprivacy.txt: 5990) +.lingows.appspot.com/page_data/\? +# ||lijit.com^*.containertag.min.js$third-party (easyprivacy.txt: 5989) +.lijit.com/.*\.containertag\.min\.js +# ||lijit.com/res/images/wijitTrack.gif (easyprivacy.txt: 5988) +.lijit.com/res/images/wijitTrack\.gif +# ||lijit.com/ip.php? (easyprivacy.txt: 5987) +.lijit.com/ip\.php\? +# ||lijit.com/blog_wijits?*=trakr& (easyprivacy.txt: 5986) +.lijit.com/blog_wijits\?.*=trakr& +# ||lela.com/api/v2/tracking.js (easyprivacy.txt: 5985) +.lela.com/api/v2/tracking\.js +# ||legacy.com^*/unicaclicktracking.js? (easyprivacy.txt: 5984) +.legacy.com/.*/unicaclicktracking\.js\? +# ||legacy.com/globalscripts/tracking/ (easyprivacy.txt: 5983) +.legacy.com/globalscripts/tracking/ +# ||lederer.nl/incl/stats.js.php? (easyprivacy.txt: 5982) +.lederer.nl/incl/stats\.js\.php\? +# ||leadvision.dotmailer.co.uk^$third-party (easyprivacy.txt: 5981) +.leadvision.dotmailer.co.uk +# ||leadtracking.plumvoice.com^ (easyprivacy.txt: 5980) +.leadtracking.plumvoice.com +# ||leadpages.net^*/tracking.js (easyprivacy.txt: 5979) +.leadpages.net/.*/tracking\.js +# ||lct.salesforce.com^$third-party (easyprivacy.txt: 5978) +.lct.salesforce.com +# ||laurel.rovicorp.com^ (easyprivacy.txt: 5977) +.laurel.rovicorp.com +# ||laurel.macrovision.com^ (easyprivacy.txt: 5976) +.laurel.macrovision.com +# ||l.sharethis.com^ (easyprivacy.txt: 5975) +.l.sharethis.com +# ||l.player.ooyala.com^ (easyprivacy.txt: 5974) +.l.player.ooyala.com +# ||l.ooyala.com^ (easyprivacy.txt: 5973) +.l.ooyala.com +# ||l.fairblocker.com^$third-party (easyprivacy.txt: 5972) +.l.fairblocker.com +# ||l.coincident.tv^ (easyprivacy.txt: 5971) +.l.coincident.tv +# ||l-host.net/etn/omnilog? (easyprivacy.txt: 5970) +.l-host.net/etn/omnilog\? +# ||kiwari.com^*/impressions.asp? (easyprivacy.txt: 5969) +.kiwari.com/.*/impressions\.asp\? +# ||keyword.daumdn.com^ (easyprivacy.txt: 5968) +.keyword.daumdn.com +# ||keywee.co/analytics.js? (easyprivacy.txt: 5967) +.keywee.co/analytics\.js\? +# ||key4web.com^*/set_cookie_by_referer/ (easyprivacy.txt: 5966) +.key4web.com/.*/set_cookie_by_referer/ +# ||kdpgroupe.com/ea.js (easyprivacy.txt: 5965) +.kdpgroupe.com/ea\.js +# ||kbb.com/partner/$third-party (easyprivacy.txt: 5964) +.kbb.com/partner/ +# ||kaltura.com^*/statisticsPlugin.swf (easyprivacy.txt: 5963) +.kaltura.com/.*/statisticsPlugin\.swf +# ||kalstats.kaltura.com^ (easyprivacy.txt: 5962) +.kalstats.kaltura.com +# ||k7-labelgroup.com/g.html?uid=$image (easyprivacy.txt: 5961) +.k7-labelgroup.com/g\.html\?uid= +# ||jsrdn.com/i/1.gif? (easyprivacy.txt: 5960) +.jsrdn.com/i/1\.gif\? +# ||jotform.io/getReferrer/$third-party (easyprivacy.txt: 5959) +.jotform.io/getReferrer/ +# ||join-safe.com/tracking/ (easyprivacy.txt: 5958) +.join-safe.com/tracking/ +# ||jobvite.com/analytics.js (easyprivacy.txt: 5957) +.jobvite.com/analytics\.js +# ||jobs.hrkspjbs.com^ (easyprivacy.txt: 5956) +.jobs.hrkspjbs.com +# ||javascriptcounter.appspot.com^ (easyprivacy.txt: 5955) +.javascriptcounter.appspot.com +# ||jangomail.com^*?UID$third-party (easyprivacy.txt: 5954) +.jangomail.com/.*\?UID +# ||jailbaitchan.com/tp/ (easyprivacy.txt: 5953) +.jailbaitchan.com/tp/ +# ||iyisayfa.net/inc.php? (easyprivacy.txt: 5952) +.iyisayfa.net/inc\.php\? +# ||itracking.fccinteractive.com^ (easyprivacy.txt: 5951) +.itracking.fccinteractive.com +# ||isacglobal.com/sa.js (easyprivacy.txt: 5950) +.isacglobal.com/sa\.js +# ||intuitwebsites.com/tracking/ (easyprivacy.txt: 5949) +.intuitwebsites.com/tracking/ +# ||internetfuel.com/tracking/ (easyprivacy.txt: 5948) +.internetfuel.com/tracking/ +# ||interestsearch.net/videoTracker.js? (easyprivacy.txt: 5947) +.interestsearch.net/videoTracker\.js\? +# ||intensedebate.com/widgets/blogstats/ (easyprivacy.txt: 5945) +.intensedebate.com/widgets/blogstats/ +# ||intensedebate.com/remotevisit.php? (easyprivacy.txt: 5944) +.intensedebate.com/remotevisit\.php\? +# ||intelligencefocus.com^*/websensor.aspx? (easyprivacy.txt: 5943) +.intelligencefocus.com/.*/websensor\.aspx\? +# ||intelligencefocus.com^*/sensor.js (easyprivacy.txt: 5942) +.intelligencefocus.com/.*/sensor\.js +# ||intelligence.dgmsearchlab.com^ (easyprivacy.txt: 5941) +.intelligence.dgmsearchlab.com +# ||installiq.com/Pixels/ (easyprivacy.txt: 5940) +.installiq.com/Pixels/ +# ||insnw.net/instart/js/instart.js (easyprivacy.txt: 5939) +.insnw.net/instart/js/instart\.js +# ||insnw.net/assets/dsc/dsc.fingerprint- (easyprivacy.txt: 5938) +.insnw.net/assets/dsc/dsc\.fingerprint- +# ||insights.gravity.com^ (easyprivacy.txt: 5937) +.insights.gravity.com +# ||insight.mintel.com^$third-party (easyprivacy.txt: 5936) +.insight.mintel.com +# ||inq.com^*/onEvent?_ (easyprivacy.txt: 5935) +.inq.com/.*/onEvent\?_ +# ||inq.com/tagserver/tracking/ (easyprivacy.txt: 5934) +.inq.com/tagserver/tracking/ +# ||inq.com/tagserver/logging/ (easyprivacy.txt: 5933) +.inq.com/tagserver/logging/ +# ||inphonic.com/tracking/ (easyprivacy.txt: 5932) +.inphonic.com/tracking/ +# ||infusionsoft.com^*/getTrackingCode? (easyprivacy.txt: 5931) +.infusionsoft.com/.*/getTrackingCode\? +# ||infosniper.net/locate-ip-on-map.php (easyprivacy.txt: 5930) +.infosniper.net/locate-ip-on-map\.php +# ||infogr.am/logger.php? (easyprivacy.txt: 5929) +.infogr.am/logger\.php\? +# ||ind.sh/view.php?$third-party (easyprivacy.txt: 5928) +.ind.sh/view\.php\? +# ||inboxtag.com/tag.swf (easyprivacy.txt: 5927) +.inboxtag.com/tag\.swf +# ||impi.tv/trackvideo.aspx? (easyprivacy.txt: 5926) +.impi.tv/trackvideo\.aspx\? +# ||imp.pix.com^ (easyprivacy.txt: 5925) +.imp.pix.com +# ||imp.constantcontact.com^$third-party (easyprivacy.txt: 5924) +.imp.constantcontact.com +# ||imp.clickability.com^$third-party (easyprivacy.txt: 5923) +.imp.clickability.com +# ||imp.affiliator.com^$third-party (easyprivacy.txt: 5922) +.imp.affiliator.com +# ||imghostsrc.com/counter.php? (easyprivacy.txt: 5921) +.imghostsrc.com/counter\.php\? +# ||imgfarm.com^*/mw.gif?$third-party (easyprivacy.txt: 5920) +.imgfarm.com/.*/mw\.gif\? +# ||imgfarm.com/images/trk/myexcitetr.gif? (easyprivacy.txt: 5919) +.imgfarm.com/images/trk/myexcitetr\.gif\? +# ||imgfarm.com/images/nocache/tr/*.gif?$image (easyprivacy.txt: 5918) +.imgfarm.com/images/nocache/tr/.*\.gif\? +# ||imageshack.us^*/thpix.gif (easyprivacy.txt: 5917) +.imageshack.us/.*/thpix\.gif +# ||images-amazon.com^*/AnalyticsReporter- (easyprivacy.txt: 5916) +.images-amazon.com/.*/AnalyticsReporter- +# ||images-amazon.com^*/Analytics- (easyprivacy.txt: 5915) +.images-amazon.com/.*/Analytics- +# ||images-amazon.com^*/1x1_trans.gif (easyprivacy.txt: 5914) +.images-amazon.com/.*/1x1_trans\.gif +# ||images-amazon.com/images^*/analytics/$third-party (easyprivacy.txt: 5913) +.images-amazon.com/images[^\w%.-].*/analytics/ +# ||images-amazon.com/images/*/third-party/tracker$third-party (easyprivacy.txt: 5912) +.images-amazon.com/images/.*/third-party/tracker +# ||images-amazon.com/images/*/ga.js$third-party (easyprivacy.txt: 5911) +.images-amazon.com/images/.*/ga\.js +# ||imagepix.okoshechka.net^*/?sid= (easyprivacy.txt: 5910) +.imagepix.okoshechka.net/.*/\?sid= +# ||imagedoll.com^$subdocument,third-party (easyprivacy.txt: 5909) +.imagedoll.com +# ||ihstats.cloudapp.net^$third-party (easyprivacy.txt: 5908) +.ihstats.cloudapp.net +# ||icbdr.com/images/pixel.gif (easyprivacy.txt: 5907) +.icbdr.com/images/pixel\.gif +# ||i.s-microsoft.com/wedcs/ms.js (easyprivacy.txt: 5906) +.i.s-microsoft.com/wedcs/ms\.js +# ||i-stats.ieurop.net^ (easyprivacy.txt: 5905) +.i-stats.ieurop.net +# ||hubspot.com/tracking/ (easyprivacy.txt: 5904) +.hubspot.com/tracking/ +# ||hubspot.com/cs/loader-v2.js (easyprivacy.txt: 5903) +.hubspot.com/cs/loader-v2\.js +# ||hubspot.com/analytics/ (easyprivacy.txt: 5902) +.hubspot.com/analytics/ +# ||hqq.tv/js/counters.js (easyprivacy.txt: 5901) +.hqq.tv/js/counters\.js +# ||hostingtoolbox.com/bin/Count.cgi? (easyprivacy.txt: 5900) +.hostingtoolbox.com/bin/Count\.cgi\? +# ||hornymatches.com^*/visit.php? (easyprivacy.txt: 5899) +.hornymatches.com/.*/visit\.php\? +# ||hop.clickbank.net^ (easyprivacy.txt: 5898) +.hop.clickbank.net +# ||homestore.com/srv/ (easyprivacy.txt: 5897) +.homestore.com/srv/ +# ||hm.baidu.com^$third-party (easyprivacy.txt: 5896) +.hm.baidu.com +# ||hits.informer.com^ (easyprivacy.txt: 5895) +.hits.informer.com +# ||hits.dealer.com^ (easyprivacy.txt: 5894) +.hits.dealer.com +# ||hits-*.iubenda.com^ (easyprivacy.txt: 5893) +.hits-*./.*\.iubenda\.com[^\w%.-] +.hits-*.iubenda.com +# ||hi.hellobar.com^ (easyprivacy.txt: 5892) +.hi.hellobar.com +# ||hgcdn.net/?$third-party (easyprivacy.txt: 5891) +.hgcdn.net/\? +# ||heroku.com/?callback=getip$third-party (easyprivacy.txt: 5890) +.heroku.com/\?callback=getip +# ||hellobar.com/ping? (easyprivacy.txt: 5889) +.hellobar.com/ping\? +# ||hearstmags.com^*/hdm-lib_hearstuser_proxy.html$third-party (easyprivacy.txt: 5888) +.hearstmags.com/.*/hdm-lib_hearstuser_proxy\.html +# ||heals.msgfocus.com^$third-party (easyprivacy.txt: 5887) +.heals.msgfocus.com +# ||haymarket.com/injector/deliver/ (easyprivacy.txt: 5886) +.haymarket.com/injector/deliver/ +# ||hasbro.com/includes/js/metrics/ (easyprivacy.txt: 5885) +.hasbro.com/includes/js/metrics/ +# ||harvester.ext.square-enix-europe.com^ (easyprivacy.txt: 5884) +.harvester.ext.square-enix-europe.com +# ||gubagoo.com/modules/tracking/ (easyprivacy.txt: 5883) +.gubagoo.com/modules/tracking/ +# ||gu-pix.appspot.com^$third-party (easyprivacy.txt: 5882) +.gu-pix.appspot.com +# ||gstatic.com/gen_204? (easyprivacy.txt: 5881) +.gstatic.com/gen_204\? +# ||gstatic.com/gadf/ga_dyn.js (easyprivacy.txt: 5880) +.gstatic.com/gadf/ga_dyn\.js +# ||gscounters.us1.gigya.com^ (easyprivacy.txt: 5879) +.gscounters.us1.gigya.com +# ||gscounters.gigya.com^ (easyprivacy.txt: 5878) +.gscounters.gigya.com +# ||gscounters.eu1.gigya.com^ (easyprivacy.txt: 5877) +.gscounters.eu1.gigya.com +# ||gridsumdissector.com/gs.gif? (easyprivacy.txt: 5876) +.gridsumdissector.com/gs\.gif\? +# ||gravity.com^*/beacons/ (easyprivacy.txt: 5875) +.gravity.com/.*/beacons/ +# ||grabnetworks.com/ping? (easyprivacy.txt: 5874) +.grabnetworks.com/ping\? +# ||grabnetworks.com/beacons/ (easyprivacy.txt: 5873) +.grabnetworks.com/beacons/ +# ||gowatchit.com^*/tracking/ (easyprivacy.txt: 5872) +.gowatchit.com/.*/tracking/ +# ||gotmojo.com/track/ (easyprivacy.txt: 5871) +.gotmojo.com/track/ +# ||gotdns.com/track/blank.aspx? (easyprivacy.txt: 5870) +.gotdns.com/track/blank\.aspx\? +# ||goroost.com/api/pageview? (easyprivacy.txt: 5869) +.goroost.com/api/pageview\? +# ||googleusercontent.com/tracker/ (easyprivacy.txt: 5868) +.googleusercontent.com/tracker/ +# ||googlecode.com^*/tracker.js (easyprivacy.txt: 5867) +.googlecode.com/.*/tracker\.js +# ||googleapis.com^*/gen_204? (easyprivacy.txt: 5866) +.googleapis.com/.*/gen_204\? +# ||godaddy.com/js/gdwebbeacon.js (easyprivacy.txt: 5865) +.godaddy.com/js/gdwebbeacon\.js +# ||goaww.com/stats.php (easyprivacy.txt: 5864) +.goaww.com/stats\.php +# ||goals.ar.gy/bug.gif? (easyprivacy.txt: 5863) +.goals.ar.gy/bug\.gif\? +# ||goadv.com^*/track.js (easyprivacy.txt: 5862) +.goadv.com/.*/track\.js +# ||go.toutapp.com^$third-party (easyprivacy.txt: 5861) +.go.toutapp.com +# ||go.optifuze.com^ (easyprivacy.txt: 5860) +.go.optifuze.com +# ||go-stats.dlinkddns.com^$third-party (easyprivacy.txt: 5859) +.go-stats.dlinkddns.com +# ||glbdns.microsoft.com^ (easyprivacy.txt: 5858) +.glbdns.microsoft.com +# ||glam.com/ctagsimgcmd.act? (easyprivacy.txt: 5857) +.glam.com/ctagsimgcmd\.act\? +# ||glam.com/cece/agof/ (easyprivacy.txt: 5856) +.glam.com/cece/agof/ +# ||github.com/notifications/beacon/ (easyprivacy.txt: 5855) +.github.com/notifications/beacon/ +# ||gigya.com^*/cimp.gif? (easyprivacy.txt: 5854) +.gigya.com/.*/cimp\.gif\? +# ||getrockerbox.com/pixel? (easyprivacy.txt: 5853) +.getrockerbox.com/pixel\? +# ||getpos.de/ext/ (easyprivacy.txt: 5852) +.getpos.de/ext/ +# ||getkudos.me/a?$image (easyprivacy.txt: 5851) +.getkudos.me/a\? +# ||getglue.com^*/count? (easyprivacy.txt: 5850) +.getglue.com/.*/count\? +# ||geoservice.curse.com^ (easyprivacy.txt: 5849) +.geoservice.curse.com +# ||geolocation.performgroup.com^ (easyprivacy.txt: 5848) +.geolocation.performgroup.com +# ||geoip.taskforce.is^ (easyprivacy.txt: 5847) +.geoip.taskforce.is +# ||geobar.ziffdavisinternational.com^ (easyprivacy.txt: 5846) +.geobar.ziffdavisinternational.com +# ||geo.query.yahoo.com^ (easyprivacy.txt: 5845) +.geo.query.yahoo.com +# ||geo.q5media.net^ (easyprivacy.txt: 5844) +.geo.q5media.net +# ||geo.ltassrv.com^ (easyprivacy.txt: 5843) +.geo.ltassrv.com +# ||geo.kontagent.net^ (easyprivacy.txt: 5842) +.geo.kontagent.net +# ||geo.gexo.com/geo.js$third-party (easyprivacy.txt: 5841) +.geo.gexo.com/geo\.js +# ||geo.ertya.com^ (easyprivacy.txt: 5840) +.geo.ertya.com +# ||geckofoot.com/gfvisitormap.aspx? (easyprivacy.txt: 5839) +.geckofoot.com/gfvisitormap\.aspx\? +# ||geckofoot.com/gfcounterimg.aspx? (easyprivacy.txt: 5838) +.geckofoot.com/gfcounterimg\.aspx\? +# ||gcion.com/gcion.ashx? (easyprivacy.txt: 5837) +.gcion.com/gcion\.ashx\? +# ||gatehousemedia.com/wickedlocal/ip.js (easyprivacy.txt: 5836) +.gatehousemedia.com/wickedlocal/ip\.js +# ||gamegecko.com/gametrack? (easyprivacy.txt: 5835) +.gamegecko.com/gametrack\? +# ||ga.webdigi.co.uk^ (easyprivacy.txt: 5834) +.ga.webdigi.co.uk +# ||ga-beacon.appspot.com^ (easyprivacy.txt: 5833) +.ga-beacon.appspot.com +# ||g.delivery.net^$third-party (easyprivacy.txt: 5832) +.g.delivery.net +# ||fyre.co^*/tracking/ (easyprivacy.txt: 5831) +.fyre.co/.*/tracking/ +# ||fwix.com^*/trackclicks_ (easyprivacy.txt: 5830) +.fwix.com/.*/trackclicks_ +# ||fwix.com/ref.js (easyprivacy.txt: 5829) +.fwix.com/ref\.js +# ||ftimg.net/js/log.js? (easyprivacy.txt: 5828) +.ftimg.net/js/log\.js\? +# ||friends.totallynsfw.com^ (easyprivacy.txt: 5826) +.friends.totallynsfw.com +# ||freehostedscripts.net^*.php?site=*&s=*&h=$third-party (easyprivacy.txt: 5825) +.freehostedscripts.net/.*\.php\?site=.*&s=.*&h= +# ||freedom.com^*/analytics/ (easyprivacy.txt: 5824) +.freedom.com/.*/analytics/ +# ||freedom.com^*/analytic/ (easyprivacy.txt: 5823) +.freedom.com/.*/analytic/ +# ||freecurrencyrates.com/statgif. (easyprivacy.txt: 5822) +.freecurrencyrates.com/statgif\. +# ||foxcontent.com/tracking/ (easyprivacy.txt: 5821) +.foxcontent.com/tracking/ +# ||forms.aweber.com^*/displays.htm?id= (easyprivacy.txt: 5820) +.forms.aweber.com/.*/displays\.htm\?id= +# ||footballmedia.com/tracking/ (easyprivacy.txt: 5819) +.footballmedia.com/tracking/ +# ||fonts.com/t/trackingCode.js (easyprivacy.txt: 5818) +.fonts.com/t/trackingCode\.js +# ||followistic.com/widget/stat/ (easyprivacy.txt: 5817) +.followistic.com/widget/stat/ +# ||flux.com/geo.html? (easyprivacy.txt: 5816) +.flux.com/geo\.html\? +# ||fls-na.amazon.com^ (easyprivacy.txt: 5815) +.fls-na.amazon.com +# ||flixster.com^*/analytics. (easyprivacy.txt: 5814) +.flixster.com/.*/analytics\. +# ||fliqz.com/metrics/$~object-subrequest (easyprivacy.txt: 5813) +.fliqz.com/metrics/ +# ||flex.msn.com/mstag/ (easyprivacy.txt: 5812) +.flex.msn.com/mstag/ +# ||flashstats.libsyn.com^ (easyprivacy.txt: 5811) +.flashstats.libsyn.com +# ||flashi.tv/histats.php? (easyprivacy.txt: 5810) +.flashi.tv/histats\.php\? +# ||filesonic.com/referral/$third-party (easyprivacy.txt: 5809) +.filesonic.com/referral/ +# ||filament-stats.herokuapp.com^ (easyprivacy.txt: 5808) +.filament-stats.herokuapp.com +# ||feedsportal.com^*/1x1.gif? (easyprivacy.txt: 5807) +.feedsportal.com/.*/1x1\.gif\? +# ||feedcat.net/button/ (easyprivacy.txt: 5806) +.feedcat.net/button/ +# ||feedblitz.com^*.gif?$third-party (easyprivacy.txt: 5805) +.feedblitz.com/.*\.gif\? +# ||feedblitz.com/imp?$third-party (easyprivacy.txt: 5804) +.feedblitz.com/imp\? +# ||feed.informer.com/fdstats (easyprivacy.txt: 5803) +.feed.informer.com/fdstats +# ||fastcounter.onlinehoster.net^ (easyprivacy.txt: 5802) +.fastcounter.onlinehoster.net +# ||fastcounter.bcentral.com^ (easyprivacy.txt: 5801) +.fastcounter.bcentral.com +# ||fairfax.com.au/js/track/ (easyprivacy.txt: 5800) +.fairfax.com.au/js/track/ +# ||facebook.com^*/tracking.js$third-party (easyprivacy.txt: 5799) +.facebook.com/.*/tracking\.js +# ||facebook.com/tr? (easyprivacy.txt: 5798) +.facebook.com/tr\? +# ||facebook.com/tr/? (easyprivacy.txt: 5797) +.facebook.com/tr/\? +# ||facebook.com/offsite_event.php$third-party (easyprivacy.txt: 5796) +.facebook.com/offsite_event\.php +# ||facebook.com/js/conversions/tracking.js (easyprivacy.txt: 5795) +.facebook.com/js/conversions/tracking\.js +# ||facebook.com/fr/u.php? (easyprivacy.txt: 5794) +.facebook.com/fr/u\.php\? +# ||facebook.com/email_open_log_pic.php (easyprivacy.txt: 5793) +.facebook.com/email_open_log_pic\.php +# ||facebook.com/common/scribe_endpoint.php (easyprivacy.txt: 5792) +.facebook.com/common/scribe_endpoint\.php +# ||facebook.com/brandlift.php (easyprivacy.txt: 5791) +.facebook.com/brandlift\.php +# ||facebook.com*/impression.php (easyprivacy.txt: 5790) +.facebook.com*./(.*/)?impression\.php +# ||exct.net/open.aspx? (easyprivacy.txt: 5789) +.exct.net/open\.aspx\? +# ||evt.collarity.com^$image (easyprivacy.txt: 5788) +.evt.collarity.com +# ||evri.com/analytics/ (easyprivacy.txt: 5787) +.evri.com/analytics/ +# ||eveonline.com/redir.asp$third-party (easyprivacy.txt: 5786) +.eveonline.com/redir\.asp +# ||eventtracker.videostrip.com^$third-party (easyprivacy.txt: 5785) +.eventtracker.videostrip.com +# ||events.realgravity.com^ (easyprivacy.txt: 5784) +.events.realgravity.com +# ||events.marquee-cdn.net^ (easyprivacy.txt: 5783) +.events.marquee-cdn.net +# ||events.jotform.com^ (easyprivacy.txt: 5782) +.events.jotform.com +# ||events.eyeviewdigital.com^*.gif?r= (easyprivacy.txt: 5781) +.events.eyeviewdigital.com/.*\.gif\?r= +# ||eventlog.inspsearchapi.com^ (easyprivacy.txt: 5780) +.eventlog.inspsearchapi.com +# ||eventlog.inspsearch.com^ (easyprivacy.txt: 5779) +.eventlog.inspsearch.com +# ||event.trove.com^ (easyprivacy.txt: 5778) +.event.trove.com +# ||event.previewnetworks.com^ (easyprivacy.txt: 5777) +.event.previewnetworks.com +# ||event.loyalty.bigdoor.com^$third-party (easyprivacy.txt: 5776) +.event.loyalty.bigdoor.com +# ||eulerian.sarenza.com/collector/ (easyprivacy.txt: 5775) +.eulerian.sarenza.com/collector/ +# ||etoro.com/tradesmonitor/ (easyprivacy.txt: 5774) +.etoro.com/tradesmonitor/ +# ||etc.grab.com^$image,third-party (easyprivacy.txt: 5773) +.etc.grab.com +# ||etahub.com^*/track?site_id (easyprivacy.txt: 5772) +.etahub.com/.*/track\?site_id +# ||et.grabnetworks.com^ (easyprivacy.txt: 5771) +.et.grabnetworks.com +# ||eservicesanalytics.com.au^ (easyprivacy.txt: 5770) +.eservicesanalytics.com.au +# ||erne.co/tags? (easyprivacy.txt: 5769) +.erne.co/tags\? +# ||epromote.co.za/track/ (easyprivacy.txt: 5768) +.epromote.co.za/track/ +# ||entry-stats.huffpost.com^ (easyprivacy.txt: 5767) +.entry-stats.huffpost.com +# ||ensighten.com/error/e.php? (easyprivacy.txt: 5766) +.ensighten.com/error/e\.php\? +# ||enews.pcmag.com/db/$third-party (easyprivacy.txt: 5765) +.enews.pcmag.com/db/ +# ||emsecure.net/optiext/webtracker.dll (easyprivacy.txt: 5764) +.emsecure.net/optiext/webtracker\.dll +# ||emihosting.com^*/tracking/ (easyprivacy.txt: 5763) +.emihosting.com/.*/tracking/ +# ||embed.docstoc.com/Flash.asmx/StoreReffer? (easyprivacy.txt: 5762) +.embed.docstoc.com/Flash\.asmx/StoreReffer\? +# ||emarketeer.com/tracker/ (easyprivacy.txt: 5761) +.emarketeer.com/tracker/ +# ||email.mediafire.com/wf/open?$third-party (easyprivacy.txt: 5760) +.email.mediafire.com/wf/open\? +# ||email-edg.paypal.com/o/$image (easyprivacy.txt: 5759) +.email-edg.paypal.com/o/ +# ||els-cdn.com^*/analytics.js (easyprivacy.txt: 5758) +.els-cdn.com/.*/analytics\.js +# ||elb.amazonaws.com/small.gif? (easyprivacy.txt: 5757) +.elb.amazonaws.com/small\.gif\? +# ||elb.amazonaws.com/partner.gif? (easyprivacy.txt: 5756) +.elb.amazonaws.com/partner\.gif\? +# ||elb.amazonaws.com/g.aspx?surl= (easyprivacy.txt: 5755) +.elb.amazonaws.com/g\.aspx\?surl= +# ||elb.amazonaws.com/?page=$image (easyprivacy.txt: 5754) +.elb.amazonaws.com/\?page= +# ||edw.insideline.com^$third-party (easyprivacy.txt: 5753) +.edw.insideline.com +# ||edgesuite.net^*/googleanalyt (easyprivacy.txt: 5752) +.edgesuite.net/.*/googleanalyt +# ||edge.sqweb.com^ (easyprivacy.txt: 5751) +.edge.sqweb.com +# ||edge.bredg.com^$third-party (easyprivacy.txt: 5750) +.edge.bredg.com +# ||ecustomeropinions.com^*/i.php? (easyprivacy.txt: 5749) +.ecustomeropinions.com/.*/i\.php\? +# ||ecustomeropinions.com/survey/nojs.php? (easyprivacy.txt: 5748) +.ecustomeropinions.com/survey/nojs\.php\? +# ||ecommstats.s3.amazonaws.com^$third-party (easyprivacy.txt: 5747) +.ecommstats.s3.amazonaws.com +# ||ebaystatic.com^*/tracking_RaptorheaderJS.js (easyprivacy.txt: 5746) +.ebaystatic.com/.*/tracking_RaptorheaderJS\.js +# ||ebaystatic.com^*/rover_$script (easyprivacy.txt: 5745) +.ebaystatic.com/.*/rover_ +# ||ebayrtm.com/rtm?RtmCmd&a=img&$image (easyprivacy.txt: 5744) +.ebayrtm.com/rtm\?RtmCmd&a=img& +# ||ebay.northernhost.com^ (easyprivacy.txt: 5743) +.ebay.northernhost.com +# ||e.ebidtech.com/cv/ (easyprivacy.txt: 5742) +.e.ebidtech.com/cv/ +# ||e-merchant.com/^*/edr.js$third-party (easyprivacy.txt: 5741) +.e-merchant.com/[^\w%.-].*/edr\.js +# ||e-activist.com^*/broadcast.record.message.open.do? (easyprivacy.txt: 5740) +.e-activist.com/.*/broadcast\.record\.message\.open\.do\? +# ||dzxxxg6ij9u99.cloudfront.net^ (easyprivacy.txt: 5739) +.dzxxxg6ij9u99.cloudfront.net +# ||dw.com.com^ (easyprivacy.txt: 5738) +.dw.com.com +# ||dw.cbsi.com^ (easyprivacy.txt: 5737) +.dw.cbsi.com +# ||dufue2m4sondk.cloudfront.net^ (easyprivacy.txt: 5736) +.dufue2m4sondk.cloudfront.net +# ||du8783wkf05yr.cloudfront.net^$third-party (easyprivacy.txt: 5735) +.du8783wkf05yr.cloudfront.net +# ||dtym7iokkjlif.cloudfront.net/dough/ (easyprivacy.txt: 5734) +.dtym7iokkjlif.cloudfront.net/dough/ +# ||dt.sellpoint.net^ (easyprivacy.txt: 5733) +.dt.sellpoint.net +# ||ds-aksb-a.akamaihd.net^ (easyprivacy.txt: 5732) +.ds-aksb-a.akamaihd.net +# ||dreamhost.com/*.cgi?$image,third-party (easyprivacy.txt: 5731) +.dreamhost.com/.*\.cgi\? +# ||doug1izaerwt3.cloudfront.net^ (easyprivacy.txt: 5730) +.doug1izaerwt3.cloudfront.net +# ||domodomain.com^*/ddsense.aspx? (easyprivacy.txt: 5729) +.domodomain.com/.*/ddsense\.aspx\? +# ||dnn506yrbagrg.cloudfront.net^ (easyprivacy.txt: 5728) +.dnn506yrbagrg.cloudfront.net +# ||dn-net.com/cc.js (easyprivacy.txt: 5727) +.dn-net.com/cc\.js +# ||dmdentertainment.com^*/video_debug.gif? (easyprivacy.txt: 5726) +.dmdentertainment.com/.*/video_debug\.gif\? +# ||dmcdn.net/behavior/ (easyprivacy.txt: 5725) +.dmcdn.net/behavior/ +# ||dl1d2m8ri9v3j.cloudfront.net^ (easyprivacy.txt: 5724) +.dl1d2m8ri9v3j.cloudfront.net +# ||dkj2m377b0yzw.cloudfront.net^ (easyprivacy.txt: 5723) +.dkj2m377b0yzw.cloudfront.net +# ||djibeacon.djns.com^ (easyprivacy.txt: 5722) +.djibeacon.djns.com +# ||distillery.wistia.com^ (easyprivacy.txt: 5721) +.distillery.wistia.com +# ||disqus.com/stats.html (easyprivacy.txt: 5720) +.disqus.com/stats\.html +# ||disqus.com/event.js?$script (easyprivacy.txt: 5719) +.disqus.com/event\.js\? +# ||disqus.com/api/ping?$third-party (easyprivacy.txt: 5718) +.disqus.com/api/ping\? +# ||discoverymail.com/a/*/spacer.gif (easyprivacy.txt: 5717) +.discoverymail.com/a/.*/spacer\.gif +# ||dirt.dennis.co.uk^ (easyprivacy.txt: 5716) +.dirt.dennis.co.uk +# ||directnews.co.uk/feedtrack/ (easyprivacy.txt: 5715) +.directnews.co.uk/feedtrack/ +# ||digitalgov.gov/Universal-Federated-Analytics-Min.js (easyprivacy.txt: 5714) +.digitalgov.gov/Universal-Federated-Analytics-Min\.js +# ||digimedia.com/pageviews.php? (easyprivacy.txt: 5713) +.digimedia.com/pageviews\.php\? +# ||dialglobal.com^*/Log.aspx? (easyprivacy.txt: 5712) +.dialglobal.com/.*/Log\.aspx\? +# ||dfdbz2tdq3k01.cloudfront.net^ (easyprivacy.txt: 5711) +.dfdbz2tdq3k01.cloudfront.net +# ||dfanalytics.dealerfire.com^ (easyprivacy.txt: 5710) +.dfanalytics.dealerfire.com +# ||detect.ergebnis-dienst.de^ (easyprivacy.txt: 5709) +.detect.ergebnis-dienst.de +# ||desert.ru/tracking/ (easyprivacy.txt: 5708) +.desert.ru/tracking/ +# ||demandmedia.s3.amazonaws.com^$third-party (easyprivacy.txt: 5707) +.demandmedia.s3.amazonaws.com +# ||demandmedia.com/wm.js (easyprivacy.txt: 5706) +.demandmedia.com/wm\.js +# ||delvenetworks.com/player/plugins/analytics/ (easyprivacy.txt: 5705) +.delvenetworks.com/player/plugins/analytics/ +# ||dell.com/TAG/tag.aspx?$third-party (easyprivacy.txt: 5704) +.dell.com/TAG/tag\.aspx\? +# ||delivra.com/tracking/$third-party (easyprivacy.txt: 5703) +.delivra.com/tracking/ +# ||deb.gs/track/ (easyprivacy.txt: 5702) +.deb.gs/track/ +# ||dealerfire.com/analytics/ (easyprivacy.txt: 5701) +.dealerfire.com/analytics/ +# ||dealer.com^*/tracking/ (easyprivacy.txt: 5700) +.dealer.com/.*/tracking/ +# ||dc8na2hxrj29i.cloudfront.net^ (easyprivacy.txt: 5699) +.dc8na2hxrj29i.cloudfront.net +# ||daylogs.com/counter/ (easyprivacy.txt: 5698) +.daylogs.com/counter/ +# ||datam8.co.nz^$third-party (easyprivacy.txt: 5697) +.datam8.co.nz +# ||datacollect*.abtasty.com^$third-party (easyprivacy.txt: 5696) +.datacollect*./.*\.abtasty\.com[^\w%.-] +.datacollect*.abtasty.com +# ||data.marketgid.com^$third-party (easyprivacy.txt: 5695) +.data.marketgid.com +# ||data.imakenews.com^$third-party (easyprivacy.txt: 5694) +.data.imakenews.com +# ||data.fotorama.io/?$third-party (easyprivacy.txt: 5693) +.data.fotorama.io/\? +# ||data.beyond.com^$third-party (easyprivacy.txt: 5692) +.data.beyond.com +# ||data.alexa.com^ (easyprivacy.txt: 5691) +.data.alexa.com +# ||daq0d0aotgq0f.cloudfront.net^ (easyprivacy.txt: 5690) +.daq0d0aotgq0f.cloudfront.net +# ||dailymotion-ams.gravityrd-services.com^ (easyprivacy.txt: 5689) +.dailymotion-ams.gravityrd-services.com +# ||d9lq0o81skkdj.cloudfront.net^ (easyprivacy.txt: 5688) +.d9lq0o81skkdj.cloudfront.net +# ||d81mfvml8p5ml.cloudfront.net^ (easyprivacy.txt: 5687) +.d81mfvml8p5ml.cloudfront.net +# ||d6jkenny8w8yo.cloudfront.net^ (easyprivacy.txt: 5686) +.d6jkenny8w8yo.cloudfront.net +# ||d5i9o0tpq9sa1.cloudfront.net^ (easyprivacy.txt: 5685) +.d5i9o0tpq9sa1.cloudfront.net +# ||d4ax0r5detcsu.cloudfront.net^ (easyprivacy.txt: 5684) +.d4ax0r5detcsu.cloudfront.net +# ||d3s7ggfq1s6jlj.cloudfront.net^ (easyprivacy.txt: 5683) +.d3s7ggfq1s6jlj.cloudfront.net +# ||d3qxef4rp70elm.cloudfront.net/m.js (easyprivacy.txt: 5682) +.d3qxef4rp70elm.cloudfront.net/m\.js +# ||d3ojzyhbolvoi5.cloudfront.net^ (easyprivacy.txt: 5681) +.d3ojzyhbolvoi5.cloudfront.net +# ||d3l3lkinz3f56t.cloudfront.net^ (easyprivacy.txt: 5680) +.d3l3lkinz3f56t.cloudfront.net +# ||d3hr5gm0wlxm5h.cloudfront.net^ (easyprivacy.txt: 5679) +.d3hr5gm0wlxm5h.cloudfront.net +# ||d3h1v5cflrhzi4.cloudfront.net^ (easyprivacy.txt: 5678) +.d3h1v5cflrhzi4.cloudfront.net +# ||d3ezl4ajpp2zy8.cloudfront.net^ (easyprivacy.txt: 5677) +.d3ezl4ajpp2zy8.cloudfront.net +# ||d3cxv97fi8q177.cloudfront.net^ (easyprivacy.txt: 5676) +.d3cxv97fi8q177.cloudfront.net +# ||d3avqv6zaxegeu.cloudfront.net^ (easyprivacy.txt: 5675) +.d3avqv6zaxegeu.cloudfront.net +# ||d3a2okcloueqyx.cloudfront.net^ (easyprivacy.txt: 5674) +.d3a2okcloueqyx.cloudfront.net +# ||d396ihyrqc81w.cloudfront.net^ (easyprivacy.txt: 5673) +.d396ihyrqc81w.cloudfront.net +# ||d36wtdrdo22bqa.cloudfront.net^ (easyprivacy.txt: 5672) +.d36wtdrdo22bqa.cloudfront.net +# ||d36lvucg9kzous.cloudfront.net^ (easyprivacy.txt: 5671) +.d36lvucg9kzous.cloudfront.net +# ||d34ko97cxuv4p7.cloudfront.net^ (easyprivacy.txt: 5670) +.d34ko97cxuv4p7.cloudfront.net +# ||d33im0067v833a.cloudfront.net^ (easyprivacy.txt: 5669) +.d33im0067v833a.cloudfront.net +# ||d3135glefggiep.cloudfront.net^ (easyprivacy.txt: 5668) +.d3135glefggiep.cloudfront.net +# ||d303e3cdddb4ded4b6ff495a7b496ed5.s3.amazonaws.com^ (easyprivacy.txt: 5667) +.d303e3cdddb4ded4b6ff495a7b496ed5.s3.amazonaws.com +# ||d2xgf76oeu9pbh.cloudfront.net^ (easyprivacy.txt: 5666) +.d2xgf76oeu9pbh.cloudfront.net +# ||d2tgfbvjf3q6hn.cloudfront.net^ (easyprivacy.txt: 5665) +.d2tgfbvjf3q6hn.cloudfront.net +# ||d2so4705rl485y.cloudfront.net^ (easyprivacy.txt: 5664) +.d2so4705rl485y.cloudfront.net +# ||d2ry9vue95px0b.cloudfront.net^ (easyprivacy.txt: 5663) +.d2ry9vue95px0b.cloudfront.net +# ||d2oh4tlt9mrke9.cloudfront.net^ (easyprivacy.txt: 5662) +.d2oh4tlt9mrke9.cloudfront.net +# ||d2nxi61n77zqpl.cloudfront.net^ (easyprivacy.txt: 5661) +.d2nxi61n77zqpl.cloudfront.net +# ||d2nq0f8d9ofdwv.cloudfront.net/track.js (easyprivacy.txt: 5660) +.d2nq0f8d9ofdwv.cloudfront.net/track\.js +# ||d2kmrmwhq7wkvs.cloudfront.net^ (easyprivacy.txt: 5659) +.d2kmrmwhq7wkvs.cloudfront.net +# ||d2gfi8ctn6kki7.cloudfront.net^ (easyprivacy.txt: 5658) +.d2gfi8ctn6kki7.cloudfront.net +# ||d2d5uvkqie1lr5.cloudfront.net^*/analytics. (easyprivacy.txt: 5657) +.d2d5uvkqie1lr5.cloudfront.net/.*/analytics\. +# ||d2d5uvkqie1lr5.cloudfront.net^*/analytics- (easyprivacy.txt: 5656) +.d2d5uvkqie1lr5.cloudfront.net/.*/analytics- +# ||d28g9g3vb08y70.cloudfront.net^ (easyprivacy.txt: 5655) +.d28g9g3vb08y70.cloudfront.net +# ||d27s92d8z1yatv.cloudfront.net/js/jquery.jw.analitycs.js (easyprivacy.txt: 5654) +.d27s92d8z1yatv.cloudfront.net/js/jquery\.jw\.analitycs\.js +# ||d23p9gffjvre9v.cloudfront.net^ (easyprivacy.txt: 5653) +.d23p9gffjvre9v.cloudfront.net +# ||d21o24qxwf7uku.cloudfront.net^ (easyprivacy.txt: 5652) +.d21o24qxwf7uku.cloudfront.net +# ||d1z2jf7jlzjs58.cloudfront.net^ (easyprivacy.txt: 5651) +.d1z2jf7jlzjs58.cloudfront.net +# ||d1yu5hbtu8mng9.cloudfront.net^ (easyprivacy.txt: 5650) +.d1yu5hbtu8mng9.cloudfront.net +# ||d1wscoizcbxzhp.cloudfront.net^ (easyprivacy.txt: 5649) +.d1wscoizcbxzhp.cloudfront.net +# ||d1ros97qkrwjf5.cloudfront.net^ (easyprivacy.txt: 5648) +.d1ros97qkrwjf5.cloudfront.net +# ||d1rgnfh960lz2b.cloudfront.net^ (easyprivacy.txt: 5647) +.d1rgnfh960lz2b.cloudfront.net +# ||d1r27qvpjiaqj3.cloudfront.net^ (easyprivacy.txt: 5646) +.d1r27qvpjiaqj3.cloudfront.net +# ||d1qpxk1wfeh8v1.cloudfront.net^ (easyprivacy.txt: 5645) +.d1qpxk1wfeh8v1.cloudfront.net +# ||d1nh2vjpqpfnin.cloudfront.net^ (easyprivacy.txt: 5644) +.d1nh2vjpqpfnin.cloudfront.net +# ||d1lm7kd3bd3yo9.cloudfront.net^ (easyprivacy.txt: 5643) +.d1lm7kd3bd3yo9.cloudfront.net +# ||d1ivexoxmp59q7.cloudfront.net^*/live.js (easyprivacy.txt: 5642) +.d1ivexoxmp59q7.cloudfront.net/.*/live\.js +# ||d1gp8joe0evc8s.cloudfront.net^ (easyprivacy.txt: 5641) +.d1gp8joe0evc8s.cloudfront.net +# ||d1clufhfw8sswh.cloudfront.net^ (easyprivacy.txt: 5640) +.d1clufhfw8sswh.cloudfront.net +# ||d1clfvuu2240eh.cloudfront.net^ (easyprivacy.txt: 5639) +.d1clfvuu2240eh.cloudfront.net +# ||d1cerpgff739r9.cloudfront.net^ (easyprivacy.txt: 5638) +.d1cerpgff739r9.cloudfront.net +# ||d1cdnlzf6usiff.cloudfront.net^ (easyprivacy.txt: 5637) +.d1cdnlzf6usiff.cloudfront.net +# ||d169bbxks24g2u.cloudfront.net^ (easyprivacy.txt: 5636) +.d169bbxks24g2u.cloudfront.net +# ||d.shareaholic.com^ (easyprivacy.txt: 5635) +.d.shareaholic.com +# ||d.rcmd.jp^$image (easyprivacy.txt: 5634) +.d.rcmd.jp +# ||cx.atdmt.com^ (easyprivacy.txt: 5633) +.cx.atdmt.com +# ||customerlobby.com/ctrack- (easyprivacy.txt: 5632) +.customerlobby.com/ctrack- +# ||curate.nestedmedia.com^ (easyprivacy.txt: 5631) +.curate.nestedmedia.com +# ||cumulus-cloud.com/trackers/ (easyprivacy.txt: 5630) +.cumulus-cloud.com/trackers/ +# ||cts.vresp.com^ (easyprivacy.txt: 5629) +.cts.vresp.com +# ||cts.channelintelligence.com^$third-party (easyprivacy.txt: 5628) +.cts.channelintelligence.com +# ||cts.businesswire.com^$third-party (easyprivacy.txt: 5627) +.cts.businesswire.com +# ||cts-secure.channelintelligence.com^$third-party (easyprivacy.txt: 5626) +.cts-secure.channelintelligence.com +# ||cts-log.channelintelligence.com^$third-party (easyprivacy.txt: 5625) +.cts-log.channelintelligence.com +# ||ct.thegear-box.com^$third-party (easyprivacy.txt: 5624) +.ct.thegear-box.com +# ||ct.pinterest.com^ (easyprivacy.txt: 5623) +.ct.pinterest.com +# ||ct.needlive.com^ (easyprivacy.txt: 5622) +.ct.needlive.com +# ||ct.itbusinessedge.com^$third-party (easyprivacy.txt: 5621) +.ct.itbusinessedge.com +# ||ct.eid.co.nz^$third-party (easyprivacy.txt: 5620) +.ct.eid.co.nz +# ||csi.gstatic.com^ (easyprivacy.txt: 5619) +.csi.gstatic.com +# ||crowdfactory.com/tracker/ (easyprivacy.txt: 5618) +.crowdfactory.com/tracker/ +# ||crm-vwg.com/tracker/ (easyprivacy.txt: 5617) +.crm-vwg.com/tracker/ +# ||creativecdn.com/tags? (easyprivacy.txt: 5616) +.creativecdn.com/tags\? +# ||creativecdn.com/pix/? (easyprivacy.txt: 5615) +.creativecdn.com/pix/\? +# ||cr.loszona.com^$third-party (easyprivacy.txt: 5614) +.cr.loszona.com +# ||counters.gigya.com^ (easyprivacy.txt: 5613) +.counters.gigya.com +# ||counters.freewebs.com^ (easyprivacy.txt: 5612) +.counters.freewebs.com +# ||counter.yadro.ru^ (easyprivacy.txt: 5611) +.counter.yadro.ru +# ||counter.webmasters.bpath.com^ (easyprivacy.txt: 5610) +.counter.webmasters.bpath.com +# ||counter.webcom.com^ (easyprivacy.txt: 5609) +.counter.webcom.com +# ||counter.sparklit.com^ (easyprivacy.txt: 5608) +.counter.sparklit.com +# ||counter.scribblelive.net^ (easyprivacy.txt: 5607) +.counter.scribblelive.net +# ||counter.scribblelive.com^ (easyprivacy.txt: 5606) +.counter.scribblelive.com +# ||counter.rambler.ru^ (easyprivacy.txt: 5605) +.counter.rambler.ru +# ||counter.powweb.com^ (easyprivacy.txt: 5604) +.counter.powweb.com +# ||counter.pax.com^ (easyprivacy.txt: 5603) +.counter.pax.com +# ||counter.pagesview.com^ (easyprivacy.txt: 5602) +.counter.pagesview.com +# ||counter.mgaserv.com^ (easyprivacy.txt: 5601) +.counter.mgaserv.com +# ||counter.maases.com^ (easyprivacy.txt: 5600) +.counter.maases.com +# ||counter.hyipexplorer.com^ (easyprivacy.txt: 5599) +.counter.hyipexplorer.com +# ||counter.htmlvalidator.com^ (easyprivacy.txt: 5598) +.counter.htmlvalidator.com +# ||counter.cam-content.com^ (easyprivacy.txt: 5597) +.counter.cam-content.com +# ||counter.bloke.com^ (easyprivacy.txt: 5596) +.counter.bloke.com +# ||count.paycounter.com^ (easyprivacy.txt: 5595) +.count.paycounter.com +# ||count.me.uk^ (easyprivacy.txt: 5594) +.count.me.uk +# ||count.channeladvisor.com^ (easyprivacy.txt: 5593) +.count.channeladvisor.com +# ||count.carrierzone.com^ (easyprivacy.txt: 5592) +.count.carrierzone.com +# ||cookiex.ngd.yahoo.com^ (easyprivacy.txt: 5591) +.cookiex.ngd.yahoo.com +# ||cookies.livepartners.com^ (easyprivacy.txt: 5590) +.cookies.livepartners.com +# ||control.cityofcairns.com^$third-party (easyprivacy.txt: 5589) +.control.cityofcairns.com +# ||control.adap.tv^$object-subrequest (easyprivacy.txt: 5588) +.control.adap.tv +# ||content.cpcache.com^*/js/ga.js (easyprivacy.txt: 5587) +.content.cpcache.com/.*/js/ga\.js +# ||contactatonce.com/VisitorContext.aspx? (easyprivacy.txt: 5586) +.contactatonce.com/VisitorContext\.aspx\? +# ||concur.com/open.aspx? (easyprivacy.txt: 5585) +.concur.com/open\.aspx\? +# ||compendiumblog.com/js/stats.js (easyprivacy.txt: 5584) +.compendiumblog.com/js/stats\.js +# ||communicatorcorp.com^*/conversiontracking.js (easyprivacy.txt: 5583) +.communicatorcorp.com/.*/conversiontracking\.js +# ||comic-rocket.com/metrics.js (easyprivacy.txt: 5582) +.comic-rocket.com/metrics\.js +# ||comet.ibsrv.net^ (easyprivacy.txt: 5581) +.comet.ibsrv.net +# ||collector.nextguide.tv^ (easyprivacy.txt: 5580) +.collector.nextguide.tv +# ||collector.apester.com^ (easyprivacy.txt: 5579) +.collector.apester.com +# ||collector.air.tv^ (easyprivacy.txt: 5578) +.collector.air.tv +# ||collection.acromas.com^ (easyprivacy.txt: 5577) +.collection.acromas.com +# ||collect.igodigital.com^ (easyprivacy.txt: 5576) +.collect.igodigital.com +# ||coinbase.com/assets/application-*.js$third-party (easyprivacy.txt: 5575) +.coinbase.com/assets/application-.*\.js +# ||cnt.mastorage.net^ (easyprivacy.txt: 5574) +.cnt.mastorage.net +# ||cnt.3dmy.net^ (easyprivacy.txt: 5573) +.cnt.3dmy.net +# ||cnpapers.com/scripts/library/ (easyprivacy.txt: 5572) +.cnpapers.com/scripts/library/ +# ||cnevids.com/metrics/ (easyprivacy.txt: 5571) +.cnevids.com/metrics/ +# ||cnetcontent.com/log? (easyprivacy.txt: 5570) +.cnetcontent.com/log\? +# ||cms-pixel.crowdreport.com^ (easyprivacy.txt: 5569) +.cms-pixel.crowdreport.com +# ||cmmeglobal.com^*/page-view? (easyprivacy.txt: 5568) +.cmmeglobal.com/.*/page-view\? +# ||cmmeglobal.com/evt? (easyprivacy.txt: 5567) +.cmmeglobal.com/evt\? +# ||cm.g.doubleclick.net^ (easyprivacy.txt: 5566) +.cm.g.doubleclick.net +# ||cloudfront.net/tracker.js (easyprivacy.txt: 5565) +.cloudfront.net/tracker\.js +# ||cloudfront.net/trackb.html (easyprivacy.txt: 5564) +.cloudfront.net/trackb\.html +# ||cloudfront.net/track? (easyprivacy.txt: 5563) +.cloudfront.net/track\? +# ||cloudfront.net/track.html (easyprivacy.txt: 5562) +.cloudfront.net/track\.html +# ||cloudfront.net/sso.js (easyprivacy.txt: 5561) +.cloudfront.net/sso\.js +# ||cloudfront.net/sentinel.js (easyprivacy.txt: 5560) +.cloudfront.net/sentinel\.js +# ||cloudfront.net/rum/bacon.min.js (easyprivacy.txt: 5559) +.cloudfront.net/rum/bacon\.min\.js +# ||cloudfront.net/pt1x1.gif (easyprivacy.txt: 5558) +.cloudfront.net/pt1x1\.gif +# ||cloudfront.net/performable/ (easyprivacy.txt: 5557) +.cloudfront.net/performable/ +# ||cloudfront.net/log.js? (easyprivacy.txt: 5556) +.cloudfront.net/log\.js\? +# ||cloudfront.net/js/reach.js (easyprivacy.txt: 5555) +.cloudfront.net/js/reach\.js +# ||cloudfront.net/dough/*/recipe.js (easyprivacy.txt: 5554) +.cloudfront.net/dough/.*/recipe\.js +# ||cloudfront.net/code/keen-2.1.0-min.js (easyprivacy.txt: 5553) +.cloudfront.net/code/keen-2\.1\.0-min\.js +# ||cloudfront.net/bti/ (easyprivacy.txt: 5552) +.cloudfront.net/bti/ +# ||cloudfront.net/autotracker. (easyprivacy.txt: 5551) +.cloudfront.net/autotracker\. +# ||cloudfront.net/analyticsengine/ (easyprivacy.txt: 5550) +.cloudfront.net/analyticsengine/ +# ||cloudfront.net/analytics.js (easyprivacy.txt: 5549) +.cloudfront.net/analytics\.js +# ||cloudfront.net/abw.js (easyprivacy.txt: 5548) +.cloudfront.net/abw\.js +# ||cloudfront.net*/trk.js (easyprivacy.txt: 5547) +.cloudfront.net*./(.*/)?trk\.js +# ||cloudfront.net*/tracker.js (easyprivacy.txt: 5546) +.cloudfront.net*./(.*/)?tracker\.js +# ||cloudfront.net*/sp.js (easyprivacy.txt: 5545) +.cloudfront.net*./(.*/)?sp\.js +# ||cloudfront.net*/keywee.min.js (easyprivacy.txt: 5544) +.cloudfront.net*./(.*/)?keywee\.min\.js +# ||cloudfront-labs.amazonaws.com^ (easyprivacy.txt: 5543) +.cloudfront-labs.amazonaws.com +# ||cloudapp.net/l/ (easyprivacy.txt: 5542) +.cloudapp.net/l/ +# ||clnk.me/_t.gif? (easyprivacy.txt: 5541) +.clnk.me/_t\.gif\? +# ||clipsyndicate.com/cs_api/cliplog? (easyprivacy.txt: 5540) +.clipsyndicate.com/cs_api/cliplog\? +# ||clientstat.castup.net^ (easyprivacy.txt: 5539) +.clientstat.castup.net +# ||client.tahono.com^$third-party (easyprivacy.txt: 5538) +.client.tahono.com +# ||clicktracks.aristotle.net^ (easyprivacy.txt: 5537) +.clicktracks.aristotle.net +# ||clicktracker.iscan.nl^ (easyprivacy.txt: 5536) +.clicktracker.iscan.nl +# ||clickthru.lefbc.com^$third-party (easyprivacy.txt: 5535) +.clickthru.lefbc.com +# ||clicktalecdn.sslcs.cdngc.net^ (easyprivacy.txt: 5534) +.clicktalecdn.sslcs.cdngc.net +# ||clicktale.pantherssl.com^ (easyprivacy.txt: 5533) +.clicktale.pantherssl.com +# ||clickstream.loomia.com^ (easyprivacy.txt: 5532) +.clickstream.loomia.com +# ||clicks.dealer.com^ (easyprivacy.txt: 5531) +.clicks.dealer.com +# ||clicker.com^*pageurl$third-party (easyprivacy.txt: 5530) +.clicker.com/.*pageurl +# ||clickchatsold.com/d0/ (easyprivacy.txt: 5529) +.clickchatsold.com/d0/ +# ||click1.online.vulture.com^$image,third-party (easyprivacy.txt: 5528) +.click1.online.vulture.com +# ||click1.email.nymagazine.com^$third-party (easyprivacy.txt: 5527) +.click1.email.nymagazine.com +# ||click.rssfwd.com^$third-party (easyprivacy.txt: 5526) +.click.rssfwd.com +# ||click.geopaysys.com^ (easyprivacy.txt: 5525) +.click.geopaysys.com +# ||click.email.*/open.aspx? (easyprivacy.txt: 5524) +.click.email.*./(.*/)?open\.aspx\? +# ||click.aristotle.net^$third-party (easyprivacy.txt: 5523) +.click.aristotle.net +# ||click.appinthestore.com^ (easyprivacy.txt: 5522) +.click.appinthestore.com +# ||clearspring.com/t/ (easyprivacy.txt: 5521) +.clearspring.com/t/ +# ||clearspring.com/at/ (easyprivacy.txt: 5520) +.clearspring.com/at/ +# ||citysearch.com/tracker/ (easyprivacy.txt: 5519) +.citysearch.com/tracker/ +# ||citygridmedia.com/tracker/ (easyprivacy.txt: 5518) +.citygridmedia.com/tracker/ +# ||circonus.com/hit? (easyprivacy.txt: 5517) +.circonus.com/hit\? +# ||chtah.net/a/*/spacer.gif$third-party (easyprivacy.txt: 5516) +.chtah.net/a/.*/spacer\.gif +# ||chtah.net/a/*/spacer-0.gif$third-party (easyprivacy.txt: 5515) +.chtah.net/a/.*/spacer-0\.gif +# ||chtah.com^*/1x1.gif (easyprivacy.txt: 5514) +.chtah.com/.*/1x1\.gif +# ||chtah.com/a/*/spacer-0.gif$third-party (easyprivacy.txt: 5513) +.chtah.com/a/.*/spacer-0\.gif +# ||choicestream.com^*/pixel/ (easyprivacy.txt: 5512) +.choicestream.com/.*/pixel/ +# ||chartaca.com.s3.amazonaws.com^ (easyprivacy.txt: 5511) +.chartaca.com.s3.amazonaws.com +# ||chanalytics.merchantadvantage.com^ (easyprivacy.txt: 5510) +.chanalytics.merchantadvantage.com +# ||cgicounter.puretec.de^ (easyprivacy.txt: 5509) +.cgicounter.puretec.de +# ||cgicounter.oneandone.co.uk^ (easyprivacy.txt: 5508) +.cgicounter.oneandone.co.uk +# ||cf.overblog.com^ (easyprivacy.txt: 5507) +.cf.overblog.com +# ||centerix.ru^*/count.msl? (easyprivacy.txt: 5506) +.centerix.ru/.*/count\.msl\? +# ||ce.lijit.com^ (easyprivacy.txt: 5505) +.ce.lijit.com +# ||cdnplanet.com/static/rum/rum.js (easyprivacy.txt: 5504) +.cdnplanet.com/static/rum/rum\.js +# ||cdnma.com/apps/capture.js (easyprivacy.txt: 5503) +.cdnma.com/apps/capture\.js +# ||cdn.trafficexchangelist.com^$third-party (easyprivacy.txt: 5502) +.cdn.trafficexchangelist.com +# ||cdn.pubexchange.com/modules/partner/$script (easyprivacy.txt: 5501) +.cdn.pubexchange.com/modules/partner/ +# ||cc.swiftype.com^ (easyprivacy.txt: 5500) +.cc.swiftype.com +# ||caspionlog.appspot.com^ (easyprivacy.txt: 5499) +.caspionlog.appspot.com +# ||carl.pubsvs.com^ (easyprivacy.txt: 5498) +.carl.pubsvs.com +# ||carambo.la/logging/ (easyprivacy.txt: 5497) +.carambo.la/logging/ +# ||carambo.la/analytics/ (easyprivacy.txt: 5496) +.carambo.la/analytics/ +# ||capture.camify.com/dc? (easyprivacy.txt: 5495) +.capture.camify.com/dc\? +# ||capture.bi.movideo.com/dc? (easyprivacy.txt: 5494) +.capture.bi.movideo.com/dc\? +# ||canvas-usage-v2.conduit-data.com^ (easyprivacy.txt: 5493) +.canvas-usage-v2.conduit-data.com +# ||canvas-ping.conduit-data.com^ (easyprivacy.txt: 5492) +.canvas-ping.conduit-data.com +# ||cadreon.s3.amazonaws.com^ (easyprivacy.txt: 5491) +.cadreon.s3.amazonaws.com +# ||cache2.delvenetworks.com^ (easyprivacy.txt: 5490) +.cache2.delvenetworks.com +# ||c3metrics.medifast1.com^ (easyprivacy.txt: 5489) +.c3metrics.medifast1.com +# ||c2s-openrtb.liverail.com^ (easyprivacy.txt: 5488) +.c2s-openrtb.liverail.com +# ||c.ypcdn.com^*?ptid (easyprivacy.txt: 5487) +.c.ypcdn.com/.*\?ptid +# ||c.ypcdn.com^*&ptid (easyprivacy.txt: 5486) +.c.ypcdn.com/.*&ptid +# ||c.wen.ru^ (easyprivacy.txt: 5485) +.c.wen.ru +# ||c.homestore.com^ (easyprivacy.txt: 5484) +.c.homestore.com +# ||c.compete.com^ (easyprivacy.txt: 5483) +.c.compete.com +# ||bzpics.com/jslib/st.js? (easyprivacy.txt: 5482) +.bzpics.com/jslib/st\.js\? +# ||bzgint.com/CUNCollector/ (easyprivacy.txt: 5481) +.bzgint.com/CUNCollector/ +# ||buzzbox.buzzfeed.com^ (easyprivacy.txt: 5480) +.buzzbox.buzzfeed.com +# ||business.sharedcount.com^$third-party (easyprivacy.txt: 5479) +.business.sharedcount.com +# ||bumpin.com^*/analytics.html (easyprivacy.txt: 5478) +.bumpin.com/.*/analytics\.html +# ||bufferapp.com/wf/open?upn=$third-party (easyprivacy.txt: 5477) +.bufferapp.com/wf/open\?upn= +# ||btn.clickability.com^ (easyprivacy.txt: 5476) +.btn.clickability.com +# ||browserscope.org/user/beacon/ (easyprivacy.txt: 5475) +.browserscope.org/user/beacon/ +# ||bright.bncnt.com^ (easyprivacy.txt: 5474) +.bright.bncnt.com +# ||breakmedia.com/track.jpg? (easyprivacy.txt: 5473) +.breakmedia.com/track\.jpg\? +# ||breakingburner.com/stats.html? (easyprivacy.txt: 5472) +.breakingburner.com/stats\.html\? +# ||break.com/break/js/brktrkr.js$third-party (easyprivacy.txt: 5471) +.break.com/break/js/brktrkr\.js +# ||break.com/apextracker/ (easyprivacy.txt: 5470) +.break.com/apextracker/ +# ||bravenet.com/counter/ (easyprivacy.txt: 5469) +.bravenet.com/counter/ +# ||brandaffinity.net/icetrack/ (easyprivacy.txt: 5468) +.brandaffinity.net/icetrack/ +# ||bpath.com/count.dll? (easyprivacy.txt: 5467) +.bpath.com/count\.dll\? +# ||bobparsons.com/image.aspx? (easyprivacy.txt: 5466) +.bobparsons.com/image\.aspx\? +# ||bmw.com^*/tracking_add_ons.js (easyprivacy.txt: 5465) +.bmw.com/.*/tracking_add_ons\.js +# ||blogblog.com/tracker/ (easyprivacy.txt: 5464) +.blogblog.com/tracker/ +# ||blinkx.com/thirdparty/iab/$third-party (easyprivacy.txt: 5463) +.blinkx.com/thirdparty/iab/ +# ||blamcity.com/log/ (easyprivacy.txt: 5462) +.blamcity.com/log/ +# ||bizsolutions.strands.com^ (easyprivacy.txt: 5461) +.bizsolutions.strands.com +# ||bizrate.com^*/survey_ (easyprivacy.txt: 5460) +.bizrate.com/.*/survey_ +# ||bizrate.co.uk/js/survey_ (easyprivacy.txt: 5459) +.bizrate.co.uk/js/survey_ +# ||bizrate-images.com^*/tracker.js (easyprivacy.txt: 5458) +.bizrate-images.com/.*/tracker\.js +# ||bizrate-images.co.uk^*/tracker.js (easyprivacy.txt: 5457) +.bizrate-images.co.uk/.*/tracker\.js +# ||bitgravity.com^*/tracking/ (easyprivacy.txt: 5456) +.bitgravity.com/.*/tracking/ +# ||bitgravity.com/b.gif$third-party (easyprivacy.txt: 5455) +.bitgravity.com/b\.gif +# ||bit.ly/stats? (easyprivacy.txt: 5454) +.bit.ly/stats\? +# ||bing.com/bat.js (easyprivacy.txt: 5453) +.bing.com/bat\.js +# ||bing.com/action/ (easyprivacy.txt: 5452) +.bing.com/action/ +# ||bing-int.com/bat.js (easyprivacy.txt: 5451) +.bing-int.com/bat\.js +# ||bin.clearspring.*/b.swf (easyprivacy.txt: 5450) +.bin.clearspring.*./(.*/)?b\.swf +# ||bidsystem.com/ppc/sendtracker.aspx? (easyprivacy.txt: 5449) +.bidsystem.com/ppc/sendtracker\.aspx\? +# ||bid.g.doubleclick.net^ (easyprivacy.txt: 5448) +.bid.g.doubleclick.net +# ||bibzopl.com/in.php (easyprivacy.txt: 5447) +.bibzopl.com/in\.php +# ||bfnsoftware.com^*/environment.cgi? (easyprivacy.txt: 5446) +.bfnsoftware.com/.*/environment\.cgi\? +# ||bestweb.net/cgi-bin/count.cgi? (easyprivacy.txt: 5445) +.bestweb.net/cgi-bin/count\.cgi\? +# ||bestofmedia.com^*/beacons/$~image (easyprivacy.txt: 5444) +.bestofmedia.com/.*/beacons/ +# ||beacons.brandads.net^ (easyprivacy.txt: 5443) +.beacons.brandads.net +# ||beacon2.indieclicktv.com^$third-party (easyprivacy.txt: 5442) +.beacon2.indieclicktv.com +# ||beacon2.indieclick.com^ (easyprivacy.txt: 5441) +.beacon2.indieclick.com +# ||beacon.thred.woven.com^ (easyprivacy.txt: 5440) +.beacon.thred.woven.com +# ||beacon.sojern.com^ (easyprivacy.txt: 5439) +.beacon.sojern.com +# ||beacon.securestudies.com^ (easyprivacy.txt: 5438) +.beacon.securestudies.com +# ||beacon.riskified.com^ (easyprivacy.txt: 5437) +.beacon.riskified.com +# ||beacon.richrelevance.com^ (easyprivacy.txt: 5436) +.beacon.richrelevance.com +# ||beacon.livefyre.com^ (easyprivacy.txt: 5435) +.beacon.livefyre.com +# ||beacon.indieclick.com^ (easyprivacy.txt: 5434) +.beacon.indieclick.com +# ||beacon.heliumnetwork.com^ (easyprivacy.txt: 5433) +.beacon.heliumnetwork.com +# ||beacon.guim.co.uk^ (easyprivacy.txt: 5432) +.beacon.guim.co.uk +# ||beacon.gcion.com^ (easyprivacy.txt: 5431) +.beacon.gcion.com +# ||beacon.errorception.com^ (easyprivacy.txt: 5430) +.beacon.errorception.com +# ||beacon.affil.walmart.com^ (easyprivacy.txt: 5429) +.beacon.affil.walmart.com +# ||bc.geocities. (easyprivacy.txt: 5428) +.bc.geocities.*. +# ||bazaarvoice.com^*/magpie.js (easyprivacy.txt: 5427) +.bazaarvoice.com/.*/magpie\.js +# ||bazaarvoice.com/sid.gif (easyprivacy.txt: 5426) +.bazaarvoice.com/sid\.gif +# ||barium.cheezdev.com^ (easyprivacy.txt: 5425) +.barium.cheezdev.com +# ||bango.net/id/*.gif? (easyprivacy.txt: 5424) +.bango.net/id/.*\.gif\? +# ||bango.net/exid/*.gif? (easyprivacy.txt: 5423) +.bango.net/exid/.*\.gif\? +# ||babm.texthelp.com^ (easyprivacy.txt: 5422) +.babm.texthelp.com +# ||b5media.com/bbpixel.php (easyprivacy.txt: 5421) +.b5media.com/bbpixel\.php +# ||b.bedop.com^ (easyprivacy.txt: 5420) +.b.bedop.com +# ||axislogger.appspot.com^ (easyprivacy.txt: 5419) +.axislogger.appspot.com +# ||aweber.com/form/displays.htm?$image (easyprivacy.txt: 5418) +.aweber.com/form/displays\.htm\? +# ||awe.sm/conversions/ (easyprivacy.txt: 5417) +.awe.sm/conversions/ +# ||autoline-top.com/counter.php? (easyprivacy.txt: 5416) +.autoline-top.com/counter\.php\? +# ||audit.median.hu^ (easyprivacy.txt: 5415) +.audit.median.hu +# ||audit.303br.net^ (easyprivacy.txt: 5414) +.audit.303br.net +# ||audienceinsights.net^$third-party (easyprivacy.txt: 5413) +.audienceinsights.net +# ||audienceapi.newsdiscover.com.au^$third-party (easyprivacy.txt: 5412) +.audienceapi.newsdiscover.com.au +# ||auctiva.com/Default.aspx?query (easyprivacy.txt: 5411) +.auctiva.com/Default\.aspx\?query +# ||attributiontrackingga.googlecode.com^ (easyprivacy.txt: 5410) +.attributiontrackingga.googlecode.com +# ||atdmt.com/mstag/ (easyprivacy.txt: 5409) +.atdmt.com/mstag/ +# ||atdmt.com/jaction/ (easyprivacy.txt: 5408) +.atdmt.com/jaction/ +# ||atdmt.com/iaction/ (easyprivacy.txt: 5407) +.atdmt.com/iaction/ +# ||atdmt.com/action/ (easyprivacy.txt: 5406) +.atdmt.com/action/ +# ||asterpix.com/tagcloudview/ (easyprivacy.txt: 5405) +.asterpix.com/tagcloudview/ +# ||assoc-amazon.*^e/ir?t=$image (easyprivacy.txt: 5404) +.assoc-amazon.*./(.*[^\w%.-])?e/ir\?t= +# ||ask.com^*/i.gif? (easyprivacy.txt: 5403) +.ask.com/.*/i\.gif\? +# ||aserve.directorym.com^ (easyprivacy.txt: 5402) +.aserve.directorym.com +# ||arclk.net/trax? (easyprivacy.txt: 5401) +.arclk.net/trax\? +# ||archive.org/includes/analytics.js (easyprivacy.txt: 5400) +.archive.org/includes/analytics\.js +# ||apture.com/v3/?5=%7b%22stats%22$xmlhttprequest (easyprivacy.txt: 5399) +.apture.com/v3/\?5=%7b%22stats%22 +# ||appspot.com/api/track/ (easyprivacy.txt: 5398) +.appspot.com/api/track/ +# ||appsolutions.com/hitme?$third-party (easyprivacy.txt: 5397) +.appsolutions.com/hitme\? +# ||appliedsemantics.com/images/x.gif (easyprivacy.txt: 5396) +.appliedsemantics.com/images/x\.gif +# ||appdynamics.com/geo/$third-party (easyprivacy.txt: 5395) +.appdynamics.com/geo/ +# ||app.yesware.com/t/$third-party (easyprivacy.txt: 5394) +.app.yesware.com/t/ +# ||app.pendo.io/data/ptm.gif (easyprivacy.txt: 5393) +.app.pendo.io/data/ptm\.gif +# ||app.insightgrit.com^ (easyprivacy.txt: 5392) +.app.insightgrit.com +# ||app.cdn-cs.com/__t.png? (easyprivacy.txt: 5391) +.app.cdn-cs.com/__t\.png\? +# ||app.bronto.com^ (easyprivacy.txt: 5390) +.app.bronto.com +# ||apnic.net/1x1.png?$third-party (easyprivacy.txt: 5389) +.apnic.net/1x1\.png\? +# ||api.wipmania.com^ (easyprivacy.txt: 5388) +.api.wipmania.com +# ||api.fyreball.com^ (easyprivacy.txt: 5387) +.api.fyreball.com +# ||api.collarity.com/cws/*http (easyprivacy.txt: 5386) +.api.collarity.com/cws/.*http +# ||api.choicestream.com/instr/ccm/ (easyprivacy.txt: 5385) +.api.choicestream.com/instr/ccm/ +# ||api.bit.ly/*/clicks?$third-party (easyprivacy.txt: 5384) +.api.bit.ly/.*/clicks\? +# ||api.awe.sm/stats/$third-party (easyprivacy.txt: 5383) +.api.awe.sm/stats/ +# ||api-ping.intercom.io^ (easyprivacy.txt: 5382) +.api-ping.intercom.io +# ||aolcdn.com/omniunih_int.js (easyprivacy.txt: 5381) +.aolcdn.com/omniunih_int\.js +# ||aolcdn.com/js/mg2.js (easyprivacy.txt: 5380) +.aolcdn.com/js/mg2\.js +# ||aolanswers.com/wtrack/ (easyprivacy.txt: 5379) +.aolanswers.com/wtrack/ +# ||aol.com/ping? (easyprivacy.txt: 5378) +.aol.com/ping\? +# ||anvato.com/anvatoloader.swf?analytics= (easyprivacy.txt: 5377) +.anvato.com/anvatoloader\.swf\?analytics= +# ||analyzer.qmerce.com^ (easyprivacy.txt: 5376) +.analyzer.qmerce.com +# ||analyze.full-marke.com^ (easyprivacy.txt: 5375) +.analyze.full-marke.com +# ||analyticsengine.s3.amazonaws.com^ (easyprivacy.txt: 5374) +.analyticsengine.s3.amazonaws.com +# ||analytics.yolacdn.net^ (easyprivacy.txt: 5373) +.analytics.yolacdn.net +# ||analytics.yola.net^ (easyprivacy.txt: 5372) +.analytics.yola.net +# ||analytics.wildtangent.com^ (easyprivacy.txt: 5371) +.analytics.wildtangent.com +# ||analytics.websolute.it^ (easyprivacy.txt: 5370) +.analytics.websolute.it +# ||analytics.urx.io^ (easyprivacy.txt: 5369) +.analytics.urx.io +# ||analytics.tribeca.vidavee.com^ (easyprivacy.txt: 5368) +.analytics.tribeca.vidavee.com +# ||analytics.tout.com^ (easyprivacy.txt: 5367) +.analytics.tout.com +# ||analytics.themarketiq.com^ (easyprivacy.txt: 5366) +.analytics.themarketiq.com +# ||analytics.strangeloopnetworks.com^ (easyprivacy.txt: 5365) +.analytics.strangeloopnetworks.com +# ||analytics.stg.springboardvideo.com^ (easyprivacy.txt: 5364) +.analytics.stg.springboardvideo.com +# ||analytics.springboardvideo.com^ (easyprivacy.txt: 5363) +.analytics.springboardvideo.com +# ||analytics.sonymusic.com^ (easyprivacy.txt: 5362) +.analytics.sonymusic.com +# ||analytics.sitewit.com^ (easyprivacy.txt: 5361) +.analytics.sitewit.com +# ||analytics.shareaholic.com^ (easyprivacy.txt: 5360) +.analytics.shareaholic.com +# ||analytics.rogersmedia.com^ (easyprivacy.txt: 5359) +.analytics.rogersmedia.com +# ||analytics.reyrey.net^ (easyprivacy.txt: 5358) +.analytics.reyrey.net +# ||analytics.revee.com^ (easyprivacy.txt: 5357) +.analytics.revee.com +# ||analytics.radiatemedia.com^ (easyprivacy.txt: 5356) +.analytics.radiatemedia.com +# ||analytics.r17.com^ (easyprivacy.txt: 5355) +.analytics.r17.com +# ||analytics.prod.aws.ecnext.net^ (easyprivacy.txt: 5354) +.analytics.prod.aws.ecnext.net +# ||analytics.piksel.com^ (easyprivacy.txt: 5353) +.analytics.piksel.com +# ||analytics.photorank.me^ (easyprivacy.txt: 5352) +.analytics.photorank.me +# ||analytics.performable.com^ (easyprivacy.txt: 5351) +.analytics.performable.com +# ||analytics.orenshmu.com^ (easyprivacy.txt: 5350) +.analytics.orenshmu.com +# ||analytics.optilead.co.uk^ (easyprivacy.txt: 5349) +.analytics.optilead.co.uk +# ||analytics.onlyonlinemarketing.com^ (easyprivacy.txt: 5348) +.analytics.onlyonlinemarketing.com +# ||analytics.mlstatic.com^ (easyprivacy.txt: 5347) +.analytics.mlstatic.com +# ||analytics.matchbin.com^ (easyprivacy.txt: 5346) +.analytics.matchbin.com +# ||analytics.live.com^ (easyprivacy.txt: 5345) +.analytics.live.com +# ||analytics.kapost.com^ (easyprivacy.txt: 5344) +.analytics.kapost.com +# ||analytics.hpprintx.com^ (easyprivacy.txt: 5343) +.analytics.hpprintx.com +# ||analytics.hosting24.com^ (easyprivacy.txt: 5342) +.analytics.hosting24.com +# ||analytics.gvim.mobi^ (easyprivacy.txt: 5341) +.analytics.gvim.mobi +# ||analytics.fairfax.com.au^ (easyprivacy.txt: 5340) +.analytics.fairfax.com.au +# ||analytics.episodic.com^ (easyprivacy.txt: 5339) +.analytics.episodic.com +# ||analytics.edgesuite.net^ (easyprivacy.txt: 5338) +.analytics.edgesuite.net +# ||analytics.edgekey.net^ (easyprivacy.txt: 5337) +.analytics.edgekey.net +# ||analytics.dev.springboardvideo.com^ (easyprivacy.txt: 5336) +.analytics.dev.springboardvideo.com +# ||analytics.datahc.com^ (easyprivacy.txt: 5335) +.analytics.datahc.com +# ||analytics.cynapse.com^ (easyprivacy.txt: 5334) +.analytics.cynapse.com +# ||analytics.convertlanguage.com^ (easyprivacy.txt: 5333) +.analytics.convertlanguage.com +# ||analytics.conmio.com^ (easyprivacy.txt: 5332) +.analytics.conmio.com +# ||analytics.cmg.net^ (easyprivacy.txt: 5331) +.analytics.cmg.net +# ||analytics.closealert.com^ (easyprivacy.txt: 5330) +.analytics.closealert.com +# ||analytics.clickpathmedia.com^ (easyprivacy.txt: 5329) +.analytics.clickpathmedia.com +# ||analytics.bigcommerce.com^ (easyprivacy.txt: 5328) +.analytics.bigcommerce.com +# ||analytics.aweber.com^ (easyprivacy.txt: 5327) +.analytics.aweber.com +# ||analytics.atomiconline.com^ (easyprivacy.txt: 5326) +.analytics.atomiconline.com +# ||analytics.artirix.com^ (easyprivacy.txt: 5325) +.analytics.artirix.com +# ||analytics.apnewsregistry.com^ (easyprivacy.txt: 5324) +.analytics.apnewsregistry.com +# ||analytics.adeevo.com^ (easyprivacy.txt: 5323) +.analytics.adeevo.com +# ||analytics.abacast.com^ (easyprivacy.txt: 5322) +.analytics.abacast.com +# ||analytics-v2.anvato.com^ (easyprivacy.txt: 5321) +.analytics-v2.anvato.com +# ||analytics-beacon-*.amazonaws.com^ (easyprivacy.txt: 5320) +.analytics-beacon-*./.*\.amazonaws\.com[^\w%.-] +.analytics-beacon-*.amazonaws.com +# ||analyticapi.pho.fm^ (easyprivacy.txt: 5319) +.analyticapi.pho.fm +# ||analytic.xingcloud.com^$third-party (easyprivacy.txt: 5318) +.analytic.xingcloud.com +# ||analytic.pho.fm^ (easyprivacy.txt: 5317) +.analytic.pho.fm +# ||an.yandex.ru^ (easyprivacy.txt: 5316) +.an.yandex.ru +# ||ams.addflow.ru^ (easyprivacy.txt: 5315) +.ams.addflow.ru +# ||amplifypixel.outbrain.com^ (easyprivacy.txt: 5314) +.amplifypixel.outbrain.com +# ||amazonaws.com^*.kissmetrics.com/ (easyprivacy.txt: 5312) +.amazonaws.com/.*\.kissmetrics\.com/ +# ||amazonaws.com^*.kissinsights.com/ (easyprivacy.txt: 5311) +.amazonaws.com/.*\.kissinsights\.com/ +# ||amazonaws.com/wgntrk/ (easyprivacy.txt: 5310) +.amazonaws.com/wgntrk/ +# ||amazonaws.com/statics.reedge.com/ (easyprivacy.txt: 5309) +.amazonaws.com/statics\.reedge\.com/ +# ||amazonaws.com/searchdiscovery-satellite-production/ (easyprivacy.txt: 5308) +.amazonaws.com/searchdiscovery-satellite-production/ +# ||amazonaws.com/new.cetrk.com/ (easyprivacy.txt: 5307) +.amazonaws.com/new\.cetrk\.com/ +# ||amazonaws.com/ki.js/ (easyprivacy.txt: 5305) +.amazonaws.com/ki\.js/ +# ||amazonaws.com/js/reach.js (easyprivacy.txt: 5304) +.amazonaws.com/js/reach\.js +# ||amazonaws.com/initialize/$third-party (easyprivacy.txt: 5303) +.amazonaws.com/initialize/ +# ||amazonaws.com/g.aspx$third-party (easyprivacy.txt: 5302) +.amazonaws.com/g\.aspx +# ||amazonaws.com/cdn.barilliance.com/ (easyprivacy.txt: 5300) +.amazonaws.com/cdn\.barilliance\.com/ +# ||amazonaws.com/amacrpr/crpr.js (easyprivacy.txt: 5299) +.amazonaws.com/amacrpr/crpr\.js +# ||amazonaws.com/?wsid= (easyprivacy.txt: 5298) +.amazonaws.com/\?wsid= +# ||amazon.com/gp/*&linkCode$third-party (easyprivacy.txt: 5297) +.amazon.com/gp/.*&linkCode +# ||amazon.*/gp/r.html?R=$image (easyprivacy.txt: 5296) +.amazon.*./(.*/)?gp/r\.html\?R= +# ||amatomu.com/log.php? (easyprivacy.txt: 5295) +.amatomu.com/log\.php\? +# ||amatomu.com/link/log/ (easyprivacy.txt: 5294) +.amatomu.com/link/log/ +# ||alphasitebuilder.co.za/tracker/ (easyprivacy.txt: 5293) +.alphasitebuilder.co.za/tracker/ +# ||allanalpass.com/track/ (easyprivacy.txt: 5292) +.allanalpass.com/track/ +# ||aliyun.com/actionlog/ (easyprivacy.txt: 5291) +.aliyun.com/actionlog/ +# ||alipay.com/service/clear.png? (easyprivacy.txt: 5290) +.alipay.com/service/clear\.png\? +# ||alicdn.com/alilog/ (easyprivacy.txt: 5289) +.alicdn.com/alilog/ +# ||alexa.com/traffic/ (easyprivacy.txt: 5288) +.alexa.com/traffic/ +# ||alenty.com/trk/ (easyprivacy.txt: 5287) +.alenty.com/trk/ +# ||aksb-a.akamaihd.net^ (easyprivacy.txt: 5286) +.aksb-a.akamaihd.net +# ||akatracking.esearchvision.com^ (easyprivacy.txt: 5285) +.akatracking.esearchvision.com +# ||akanoo.com/tracker/ (easyprivacy.txt: 5284) +.akanoo.com/tracker/ +# ||akamai.net^*/sitetracking/ (easyprivacy.txt: 5283) +.akamai.net/.*/sitetracking/ +# ||akamai.net^*/a.visualrevenue.com/ (easyprivacy.txt: 5282) +.akamai.net/.*/a\.visualrevenue\.com/ +# ||akamai.net/chartbeat. (easyprivacy.txt: 5281) +.akamai.net/chartbeat\. +# ||akamai.net/*.babylon.com/trans_box/ (easyprivacy.txt: 5280) +.akamai.net/.*\.babylon\.com/trans_box/ +# ||akamai.com/crs/lgsitewise.js (easyprivacy.txt: 5279) +.akamai.com/crs/lgsitewise\.js +# ||aiya.com.cn/stat.js (easyprivacy.txt: 5278) +.aiya.com.cn/stat\.js +# ||agendize.com^*/counts.jsp? (easyprivacy.txt: 5277) +.agendize.com/.*/counts\.jsp\? +# ||afrigator.com/track/ (easyprivacy.txt: 5276) +.afrigator.com/track/ +# ||affl.sucuri.net^ (easyprivacy.txt: 5275) +.affl.sucuri.net +# ||affilired.com/analytic/$third-party (easyprivacy.txt: 5274) +.affilired.com/analytic/ +# ||affiliates.swappernet.com^ (easyprivacy.txt: 5273) +.affiliates.swappernet.com +# ||affiliates.spark.net^$third-party (easyprivacy.txt: 5272) +.affiliates.spark.net +# ||affiliates.minglematch.com^$third-party (easyprivacy.txt: 5271) +.affiliates.minglematch.com +# ||affiliates.mgmmirage.com^ (easyprivacy.txt: 5270) +.affiliates.mgmmirage.com +# ||affiliate.mediatemple.net^$~third-party (easyprivacy.txt: 5269) +.affiliate.mediatemple.net +# ||affiliate.iamplify.com^ (easyprivacy.txt: 5268) +.affiliate.iamplify.com +# ||adultmastercash.com/e1.php$third-party (easyprivacy.txt: 5267) +.adultmastercash.com/e1\.php +# ||adtrack.calls.net^$third-party (easyprivacy.txt: 5266) +.adtrack.calls.net +# ||adsimg.com/js/analytics.js? (easyprivacy.txt: 5265) +.adsimg.com/js/analytics\.js\? +# ||ads.bridgetrack.com^$image (easyprivacy.txt: 5264) +.ads.bridgetrack.com +# ||admission.net^*/displaytracker.js (easyprivacy.txt: 5263) +.admission.net/.*/displaytracker\.js +# ||adlog.com.com^ (easyprivacy.txt: 5262) +.adlog.com.com +# ||adg.bzgint.com^ (easyprivacy.txt: 5261) +.adg.bzgint.com +# ||adf.ly/ad/conv? (easyprivacy.txt: 5260) +.adf.ly/ad/conv\? +# ||addtoany.com/menu/transparent.gif (easyprivacy.txt: 5259) +.addtoany.com/menu/transparent\.gif +# ||addthisedge.com/live/ (easyprivacy.txt: 5258) +.addthisedge.com/live/ +# ||addthiscdn.com/live/ (easyprivacy.txt: 5257) +.addthiscdn.com/live/ +# ||addthiscdn.com/*.gif?uid= (easyprivacy.txt: 5256) +.addthiscdn.com/.*\.gif\?uid= +# ||addthis.com^*/p.json?*&ref= (easyprivacy.txt: 5255) +.addthis.com/.*/p\.json\?.*&ref= +# ||addthis.com/red/p.png? (easyprivacy.txt: 5254) +.addthis.com/red/p\.png\? +# ||addthis.com/red/$script,third-party (easyprivacy.txt: 5253) +.addthis.com/red/ +# ||addthis.com/live/ (easyprivacy.txt: 5252) +.addthis.com/live/ +# ||addthis.com/at/ (easyprivacy.txt: 5251) +.addthis.com/at/ +# ||addnow.com/tracker/ (easyprivacy.txt: 5250) +.addnow.com/tracker/ +# ||adchemy-content.com^*/tracking.js (easyprivacy.txt: 5249) +.adchemy-content.com/.*/tracking\.js +# ||ad.atdmt.com/s/ (easyprivacy.txt: 5248) +.ad.atdmt.com/s/ +# ||ad.atdmt.com/m/ (easyprivacy.txt: 5247) +.ad.atdmt.com/m/ +# ||ad.atdmt.com/i/img/ (easyprivacy.txt: 5246) +.ad.atdmt.com/i/img/ +# ||ad.atdmt.com/i/go; (easyprivacy.txt: 5245) +.ad.atdmt.com/i/go; +# ||ad.atdmt.com/i/*= (easyprivacy.txt: 5244) +.ad.atdmt.com/i/.*= +# ||ad.atdmt.com/e/ (easyprivacy.txt: 5243) +.ad.atdmt.com/e/ +# ||ad.atdmt.com/c/ (easyprivacy.txt: 5242) +.ad.atdmt.com/c/ +# ||ad.aloodo.com^$third-party (easyprivacy.txt: 5241) +.ad.aloodo.com +# ||actonservice.com^*/tracker/ (easyprivacy.txt: 5240) +.actonservice.com/.*/tracker/ +# ||activities.niagara.comedycentral.com^ (easyprivacy.txt: 5239) +.activities.niagara.comedycentral.com +# ||activetracker.activehotels.com^$third-party (easyprivacy.txt: 5238) +.activetracker.activehotels.com +# ||activecommerce.net/collector.gif (easyprivacy.txt: 5237) +.activecommerce.net/collector\.gif +# ||acs86.com/t.js (easyprivacy.txt: 5236) +.acs86.com/t\.js +# ||acount.alley.ws^$third-party (easyprivacy.txt: 5235) +.acount.alley.ws +# ||acces-charme.com/fakebar/track.php? (easyprivacy.txt: 5234) +.acces-charme.com/fakebar/track\.php\? +# ||abc.hearst.co.uk^$third-party (easyprivacy.txt: 5233) +.abc.hearst.co.uk +# ||aao.org/aao/sdc/track.js (easyprivacy.txt: 5232) +.aao.org/aao/sdc/track\.js +# ||aan.amazon.com^$third-party (easyprivacy.txt: 5231) +.aan.amazon.com +# ||aaa.aj5.info^ (easyprivacy.txt: 5230) +.aaa.aj5.info +# ||a2a.lockerz.com^ (easyprivacy.txt: 5229) +.a2a.lockerz.com +# ||a.unanimis.co.uk^ (easyprivacy.txt: 5228) +.a.unanimis.co.uk +# ||a.mobify.com^$third-party (easyprivacy.txt: 5227) +.a.mobify.com +# ||9msn.com.au^*/tracking/ (easyprivacy.txt: 5226) +.9msn.com.au/.*/tracking/ +# ||9fine.ru/js/counter. (easyprivacy.txt: 5225) +.9fine.ru/js/counter\. +# ||99widgets.com/counters/ (easyprivacy.txt: 5224) +.99widgets.com/counters/ +# ||88.208.248.58/tracking/ (easyprivacy.txt: 5222) +.88.208.248.58/tracking/ +# ||6waves.com/edm.php?uid=$image (easyprivacy.txt: 5220) +.6waves.com/edm\.php\?uid= +# ||5min.com/flashcookie/StorageCookieSWF_ (easyprivacy.txt: 5217) +.5min.com/flashcookie/StorageCookieSWF_ +# ||5251.net/stat.jsp? (easyprivacy.txt: 5214) +.5251.net/stat\.jsp\? +# ||51network.com^$third-party (easyprivacy.txt: 5213) +.51network.com +# ||4theclueless.com/adlogger/ (easyprivacy.txt: 5211) +.4theclueless.com/adlogger/ +# ||3crowd.com^*/3c1px.gif (easyprivacy.txt: 5210) +.3crowd.com/.*/3c1px\.gif +# ||208.91.157.30/viewtrack/ (easyprivacy.txt: 5204) +.208.91.157.30/viewtrack/ +# ||198.101.148.38/update_counter.php (easyprivacy.txt: 5201) +.198.101.148.38/update_counter\.php +# ||184.73.203.249/i.gif? (easyprivacy.txt: 5197) +.184.73.203.249/i\.gif\? +# ||148.251.8.156/track.js (easyprivacy.txt: 5188) +.148.251.8.156/track\.js +# ||123myp.co.uk/ip-address/ (easyprivacy.txt: 5187) +.123myp.co.uk/ip-address/ +# ||101apps.com/tracker.ashx? (easyprivacy.txt: 5184) +.101apps.com/tracker\.ashx\? +# |http://l2.io/ip.js$third-party (easyprivacy.txt: 5183) +l2.io/ip\.js +# ||gostats.vn^$third-party (easyprivacy.txt: 5180) +.gostats.vn +# ||weblog.com.ua^$third-party (easyprivacy.txt: 5178) +.weblog.com.ua +# ||uapoisk.net^$third-party (easyprivacy.txt: 5177) +.uapoisk.net +# ||mycounter.ua^$third-party (easyprivacy.txt: 5176) +.mycounter.ua +# ||mycounter.com.ua^$third-party (easyprivacy.txt: 5175) +.mycounter.com.ua +# |http://r.i.ua^$third-party (easyprivacy.txt: 5174) +r.i.ua +# ||zirve100.com^$third-party (easyprivacy.txt: 5172) +.zirve100.com +# ||webservis.gen.tr^$third-party (easyprivacy.txt: 5171) +.webservis.gen.tr +# ||sitetistik.com^$third-party (easyprivacy.txt: 5170) +.sitetistik.com +# ||sayyac.net^$third-party (easyprivacy.txt: 5169) +.sayyac.net +# ||sayyac.com^$third-party (easyprivacy.txt: 5168) +.sayyac.com +# ||realist.gen.tr^$third-party (easyprivacy.txt: 5167) +.realist.gen.tr +# ||onlinewebstat.com^$third-party (easyprivacy.txt: 5166) +.onlinewebstat.com +# ||truehits3.gits.net.th^$third-party (easyprivacy.txt: 5164) +.truehits3.gits.net.th +# ||truehits.net^$third-party (easyprivacy.txt: 5163) +.truehits.net +# ||tracker.stats.in.th^$third-party (easyprivacy.txt: 5162) +.tracker.stats.in.th +# ||d-stats.com^$third-party (easyprivacy.txt: 5161) +.d-stats.com +# ||webserviceaward.com^$third-party (easyprivacy.txt: 5159) +.webserviceaward.com +# ||vastpaketet.se^$third-party (easyprivacy.txt: 5158) +.vastpaketet.se +# ||spklw.com^$third-party (easyprivacy.txt: 5157) +.spklw.com +# ||research-int.se^$third-party (easyprivacy.txt: 5156) +.research-int.se +# ||publish-int.se^$third-party (easyprivacy.txt: 5155) +.publish-int.se +# ||prospecteye.com^$third-party (easyprivacy.txt: 5154) +.prospecteye.com +# ||adtraction.com^$third-party (easyprivacy.txt: 5153) +.adtraction.com +# ||adsettings.com^$third-party (easyprivacy.txt: 5152) +.adsettings.com +# ||micodigo.com^$third-party (easyprivacy.txt: 5150) +.micodigo.com +# ||mabaya.com^$third-party (easyprivacy.txt: 5149) +.mabaya.com +# ||intrastats.com^$third-party (easyprivacy.txt: 5148) +.intrastats.com +# ||hits.e.cl^$third-party (easyprivacy.txt: 5147) +.hits.e.cl +# ||hit.copesa.cl^$third-party (easyprivacy.txt: 5146) +.hit.copesa.cl +# ||estadisticasgratis.es^$third-party (easyprivacy.txt: 5145) +.estadisticasgratis.es +# ||estadisticasgratis.com^$third-party (easyprivacy.txt: 5144) +.estadisticasgratis.com +# ||eresmas.net^$third-party (easyprivacy.txt: 5143) +.eresmas.net +# ||delidatax.net^$third-party (easyprivacy.txt: 5142) +.delidatax.net +# ||contadorweb.com^$third-party (easyprivacy.txt: 5141) +.contadorweb.com +# ||contadorgratis.es^$third-party (easyprivacy.txt: 5140) +.contadorgratis.es +# ||contadorgratis.com^$third-party (easyprivacy.txt: 5139) +.contadorgratis.com +# ||contadordevisitas.es^$third-party (easyprivacy.txt: 5138) +.contadordevisitas.es +# ||certifica.com^$third-party (easyprivacy.txt: 5137) +.certifica.com +# ||toplist.sk^$third-party (easyprivacy.txt: 5135) +.toplist.sk +# ||pocitadlo.sk^$third-party (easyprivacy.txt: 5134) +.pocitadlo.sk +# ||idot.cz^$third-party (easyprivacy.txt: 5133) +.idot.cz +# ||blogtraffic.sg^$third-party (easyprivacy.txt: 5131) +.blogtraffic.sg +# ||zero.kz^$third-party (easyprivacy.txt: 5129) +.zero.kz +# ||www.rt-ns.ru^$third-party (easyprivacy.txt: 5128) +.www.rt-ns.ru +# ||webvisor.ru^$third-party (easyprivacy.txt: 5127) +.webvisor.ru +# ||webtalking.ru^$third-party (easyprivacy.txt: 5126) +.webtalking.ru +# ||webest.info^$third-party (easyprivacy.txt: 5125) +.webest.info +# ||web-visor.com^$third-party (easyprivacy.txt: 5124) +.web-visor.com +# ||warlog.ru^$third-party (easyprivacy.txt: 5123) +.warlog.ru +# ||vologda-info.ru^$third-party (easyprivacy.txt: 5122) +.vologda-info.ru +# ||volgograd-info.ru^$third-party (easyprivacy.txt: 5121) +.volgograd-info.ru +# ||vira.ru^$third-party (easyprivacy.txt: 5120) +.vira.ru +# ||vidigital.ru^$third-party (easyprivacy.txt: 5119) +.vidigital.ru +# ||uzrating.com^$third-party (easyprivacy.txt: 5118) +.uzrating.com +# ||uptolike.com^$third-party (easyprivacy.txt: 5117) +.uptolike.com +# ||uarating.com^$third-party (easyprivacy.txt: 5116) +.uarating.com +# ||toptracker.ru^$third-party (easyprivacy.txt: 5115) +.toptracker.ru +# ||tbex.ru^$third-party (easyprivacy.txt: 5114) +.tbex.ru +# ||stattds.club^$third-party (easyprivacy.txt: 5113) +.stattds.club +# ||stat24.ru^$third-party (easyprivacy.txt: 5112) +.stat24.ru +# ||skylog.kz^$third-party (easyprivacy.txt: 5111) +.skylog.kz +# ||site-submit.com.ua^$third-party (easyprivacy.txt: 5110) +.site-submit.com.ua +# ||serating.ru^$third-party (easyprivacy.txt: 5109) +.serating.ru +# ||seo-master.net^$third-party (easyprivacy.txt: 5108) +.seo-master.net +# ||sensor.org.ua^$third-party (easyprivacy.txt: 5107) +.sensor.org.ua +# ||sarov.ws^$third-party (easyprivacy.txt: 5106) +.sarov.ws +# ||quick-counter.net^$third-party (easyprivacy.txt: 5105) +.quick-counter.net +# ||proext.com^$third-party (easyprivacy.txt: 5104) +.proext.com +# ||pmbox.biz^$third-party (easyprivacy.txt: 5103) +.pmbox.biz +# ||personage.name^$third-party (easyprivacy.txt: 5102) +.personage.name +# ||openstat.net^$third-party (easyprivacy.txt: 5101) +.openstat.net +# ||onthe.io^$third-party (easyprivacy.txt: 5100) +.onthe.io +# ||mystat-in.net^$third-party (easyprivacy.txt: 5099) +.mystat-in.net +# ||musiccounter.ru^$third-party (easyprivacy.txt: 5098) +.musiccounter.ru +# ||mokuz.ru^$third-party (easyprivacy.txt: 5097) +.mokuz.ru +# ||mediatoday.ru^$third-party (easyprivacy.txt: 5096) +.mediatoday.ru +# ||mediaplan.ru^$third-party (easyprivacy.txt: 5095) +.mediaplan.ru +# ||mediametrics.ru^$third-party (easyprivacy.txt: 5094) +.mediametrics.ru +# ||lugansk-info.ru^$third-party (easyprivacy.txt: 5093) +.lugansk-info.ru +# ||lookmy.info^$third-party (easyprivacy.txt: 5092) +.lookmy.info +# ||logz.ru^$third-party (easyprivacy.txt: 5091) +.logz.ru +# ||logxp.ru^$third-party (easyprivacy.txt: 5090) +.logxp.ru +# ||logua.com^$third-party (easyprivacy.txt: 5089) +.logua.com +# ||logger.su^$third-party (easyprivacy.txt: 5088) +.logger.su +# ||listtop.ru^$third-party (easyprivacy.txt: 5087) +.listtop.ru +# ||lentainform.com^$third-party (easyprivacy.txt: 5086) +.lentainform.com +# ||kmindex.ru^$third-party (easyprivacy.txt: 5085) +.kmindex.ru +# ||jetcounter.ru^$third-party (easyprivacy.txt: 5084) +.jetcounter.ru +# ||iryazan.ru^$third-party (easyprivacy.txt: 5083) +.iryazan.ru +# ||intergid.ru^$third-party (easyprivacy.txt: 5082) +.intergid.ru +# ||infostroy.nnov.ru^$third-party (easyprivacy.txt: 5081) +.infostroy.nnov.ru +# ||imrk.net^$third-party (easyprivacy.txt: 5080) +.imrk.net +# ||idntfy.ru^$third-party (easyprivacy.txt: 5079) +.idntfy.ru +# ||hsdn.org^$third-party (easyprivacy.txt: 5078) +.hsdn.org +# ||hotlog.ru^$third-party (easyprivacy.txt: 5077) +.hotlog.ru +# ||hitmir.ru^$third-party (easyprivacy.txt: 5076) +.hitmir.ru +# ||gostats.ru^$third-party (easyprivacy.txt: 5075) +.gostats.ru +# ||gdeslon.ru^$third-party (easyprivacy.txt: 5074) +.gdeslon.ru +# ||faststart.ru^$third-party (easyprivacy.txt: 5073) +.faststart.ru +# ||e-kuzbass.ru^$third-party (easyprivacy.txt: 5072) +.e-kuzbass.ru +# ||digitaltarget.ru^$third-party (easyprivacy.txt: 5071) +.digitaltarget.ru +# ||cnstats.ru^$third-party (easyprivacy.txt: 5070) +.cnstats.ru +# ||clubcollector.com^$third-party (easyprivacy.txt: 5069) +.clubcollector.com +# ||cityua.net^$third-party (easyprivacy.txt: 5068) +.cityua.net +# ||botscanner.com^$third-party (easyprivacy.txt: 5067) +.botscanner.com +# ||apkonline.ru^$third-party (easyprivacy.txt: 5066) +.apkonline.ru +# ||announcement.ru^$third-party (easyprivacy.txt: 5065) +.announcement.ru +# ||a-counter.kiev.ua^$third-party (easyprivacy.txt: 5064) +.a-counter.kiev.ua +# ||a-counter.com.ua^$third-party (easyprivacy.txt: 5063) +.a-counter.com.ua +# ||24log.ru^$third-party (easyprivacy.txt: 5062) +.24log.ru +# ||zontera.com^$third-party (easyprivacy.txt: 5060) +.zontera.com +# ||trafix.ro^$third-party (easyprivacy.txt: 5059) +.trafix.ro +# ||trafic.ro^$third-party (easyprivacy.txt: 5058) +.trafic.ro +# ||top-ro.ro^$third-party (easyprivacy.txt: 5057) +.top-ro.ro +# ||statistics.ro^$third-party (easyprivacy.txt: 5056) +.statistics.ro +# ||hit100.ro^$third-party (easyprivacy.txt: 5055) +.hit100.ro +# ||gtop.ro^$third-party (easyprivacy.txt: 5054) +.gtop.ro +# ||brat-online.ro^$third-party (easyprivacy.txt: 5053) +.brat-online.ro +# ||best-top.ro^$third-party (easyprivacy.txt: 5052) +.best-top.ro +# ||tailtarget.com^$third-party (easyprivacy.txt: 5050) +.tailtarget.com +# ||popstats.com.br^$third-party (easyprivacy.txt: 5049) +.popstats.com.br +# ||marktest.pt^$third-party (easyprivacy.txt: 5048) +.marktest.pt +# ||way2traffic.com^$third-party (easyprivacy.txt: 5046) +.way2traffic.com +# ||tagcdn.com^$third-party (easyprivacy.txt: 5045) +.tagcdn.com +# ||stat.pl^$third-party (easyprivacy.txt: 5044) +.stat.pl +# ||stat.4u.pl^$third-party (easyprivacy.txt: 5043) +.stat.4u.pl +# ||rejestr.org^$third-party (easyprivacy.txt: 5042) +.rejestr.org +# ||ngastatic.com^$third-party (easyprivacy.txt: 5041) +.ngastatic.com +# ||ngacm.com^$third-party (easyprivacy.txt: 5040) +.ngacm.com +# ||legenhit.com^$third-party (easyprivacy.txt: 5039) +.legenhit.com +# ||hub.com.pl^$third-party (easyprivacy.txt: 5038) +.hub.com.pl +# ||gostats.pl^$third-party (easyprivacy.txt: 5037) +.gostats.pl +# ||gemius.pl^$third-party (easyprivacy.txt: 5036) +.gemius.pl +# ||clickonometrics.pl^$third-party (easyprivacy.txt: 5035) +.clickonometrics.pl +# ||adstat.4u.pl^$third-party (easyprivacy.txt: 5034) +.adstat.4u.pl +# ||webgozar.ir^$third-party (easyprivacy.txt: 5032) +.webgozar.ir +# ||webgozar.com^$third-party (easyprivacy.txt: 5031) +.webgozar.com +# ||tinystat.ir^$third-party (easyprivacy.txt: 5030) +.tinystat.ir +# ||persianstat.ir^$third-party (easyprivacy.txt: 5029) +.persianstat.ir +# ||persianstat.com^$third-party (easyprivacy.txt: 5028) +.persianstat.com +# ||melatstat.com^$third-party (easyprivacy.txt: 5027) +.melatstat.com +# ||xtractor.no^$third-party (easyprivacy.txt: 5025) +.xtractor.no +# ||webstat.no^$third-party (easyprivacy.txt: 5024) +.webstat.no +# ||trafikkfondet.no^$third-party (easyprivacy.txt: 5023) +.trafikkfondet.no +# ||de17a.com^$third-party (easyprivacy.txt: 5022) +.de17a.com +# ||www.hey.lt^$third-party (easyprivacy.txt: 5020) +.www.hey.lt +# ||webstatistika.lt^$third-party (easyprivacy.txt: 5019) +.webstatistika.lt +# ||visits.lt^$third-party (easyprivacy.txt: 5018) +.visits.lt +# ||stats.lt^$third-party (easyprivacy.txt: 5017) +.stats.lt +# ||reitingas.lt^$third-party (easyprivacy.txt: 5016) +.reitingas.lt +# ||easy.lv^$third-party (easyprivacy.txt: 5015) +.easy.lv +# ||wos.lv^$third-party (easyprivacy.txt: 5013) +.wos.lv +# ||webstatistika.lv^$third-party (easyprivacy.txt: 5012) +.webstatistika.lv +# ||topsite.lv^$third-party (easyprivacy.txt: 5011) +.topsite.lv +# ||top.lv^$third-party (easyprivacy.txt: 5010) +.top.lv +# ||stats4u.lv^$third-party (easyprivacy.txt: 5009) +.stats4u.lv +# ||statistika.lv^$third-party (easyprivacy.txt: 5008) +.statistika.lv +# ||reitingi.lv^$third-party (easyprivacy.txt: 5007) +.reitingi.lv +# ||puls.lv^$third-party (easyprivacy.txt: 5006) +.puls.lv +# ||on-line.lv^$third-party (easyprivacy.txt: 5005) +.on-line.lv +# ||erotop.lv^$third-party (easyprivacy.txt: 5004) +.erotop.lv +# ||cms.lv^$third-party (easyprivacy.txt: 5003) +.cms.lv +# ||logger.co.kr^$third-party (easyprivacy.txt: 5001) +.logger.co.kr +# ||ziyu.net^$third-party (easyprivacy.txt: 4999) +.ziyu.net +# ||trackfeed.com^$third-party (easyprivacy.txt: 4998) +.trackfeed.com +# ||rtoaster.jp^$third-party (easyprivacy.txt: 4997) +.rtoaster.jp +# ||research-artisan.com^$third-party (easyprivacy.txt: 4996) +.research-artisan.com +# ||owldata.com^$third-party (easyprivacy.txt: 4995) +.owldata.com +# ||omiki.com^$third-party (easyprivacy.txt: 4994) +.omiki.com +# ||mobylog.jp^$third-party (easyprivacy.txt: 4993) +.mobylog.jp +# ||japanmetrix.jp^$third-party (easyprivacy.txt: 4992) +.japanmetrix.jp +# ||i2i.jp^$third-party (easyprivacy.txt: 4991) +.i2i.jp +# ||hitgraph.jp^$third-party (easyprivacy.txt: 4990) +.hitgraph.jp +# ||gmodmp.jp^$third-party (easyprivacy.txt: 4989) +.gmodmp.jp +# ||fout.jp^$third-party (easyprivacy.txt: 4988) +.fout.jp +# ||eco-tag.jp^$third-party (easyprivacy.txt: 4987) +.eco-tag.jp +# ||e-kaiseki.com^$third-party (easyprivacy.txt: 4986) +.e-kaiseki.com +# ||cosmi.io^$third-party (easyprivacy.txt: 4985) +.cosmi.io +# ||blogranking.net^$third-party (easyprivacy.txt: 4984) +.blogranking.net +# ||beanscattering.jp^$third-party (easyprivacy.txt: 4983) +.beanscattering.jp +# ||a-cast.jp^$third-party (easyprivacy.txt: 4982) +.a-cast.jp +# ||zt-dst.com^$third-party (easyprivacy.txt: 4980) +.zt-dst.com +# ||wstatslive.com^$third-party (easyprivacy.txt: 4979) +.wstatslive.com +# ||whoseesyou.com^$third-party (easyprivacy.txt: 4978) +.whoseesyou.com +# ||webtraffstats.net^$third-party (easyprivacy.txt: 4977) +.webtraffstats.net +# ||webmobile.ws^$third-party (easyprivacy.txt: 4976) +.webmobile.ws +# ||webmeter.ws^$third-party (easyprivacy.txt: 4975) +.webmeter.ws +# ||vivistats.com^$third-party (easyprivacy.txt: 4974) +.vivistats.com +# ||ultrastats.it^$third-party (easyprivacy.txt: 4973) +.ultrastats.it +# ||trackset.it^$third-party (easyprivacy.txt: 4972) +.trackset.it +# ||thestat.net^$third-party (easyprivacy.txt: 4971) +.thestat.net +# ||tetigi.com^$third-party (easyprivacy.txt: 4970) +.tetigi.com +# ||superstat.info^$third-party (easyprivacy.txt: 4969) +.superstat.info +# ||statsview.it^$third-party (easyprivacy.txt: 4968) +.statsview.it +# ||statsforever.com^$third-party (easyprivacy.txt: 4967) +.statsforever.com +# ||statsadvance-01.net^$third-party (easyprivacy.txt: 4966) +.statsadvance-01.net +# ||statistichegratis.net^$third-party (easyprivacy.txt: 4965) +.statistichegratis.net +# ||statistiche.ws^$third-party (easyprivacy.txt: 4964) +.statistiche.ws +# ||statistiche.it^$third-party (easyprivacy.txt: 4963) +.statistiche.it +# ||statistiche-free.com^$third-party (easyprivacy.txt: 4962) +.statistiche-free.com +# ||specialstat.com^$third-party (easyprivacy.txt: 4961) +.specialstat.com +# ||shinystat.it^$third-party (easyprivacy.txt: 4960) +.shinystat.it +# ||prostats.it^$third-party (easyprivacy.txt: 4959) +.prostats.it +# ||pagerankfree.com^$third-party (easyprivacy.txt: 4958) +.pagerankfree.com +# ||ntlab.org^$third-party (easyprivacy.txt: 4957) +.ntlab.org +# ||ninestats.com^$third-party (easyprivacy.txt: 4956) +.ninestats.com +# ||mystat.it^$third-party (easyprivacy.txt: 4955) +.mystat.it +# ||megastat.net^$third-party (easyprivacy.txt: 4954) +.megastat.net +# ||laserstat.com^$third-party (easyprivacy.txt: 4953) +.laserstat.com +# ||keyxel.com^$third-party (easyprivacy.txt: 4952) +.keyxel.com +# ||italianadirectory.com^$third-party (easyprivacy.txt: 4951) +.italianadirectory.com +# ||ipfrom.com^$third-party (easyprivacy.txt: 4950) +.ipfrom.com +# ||imetrix.it^$third-party (easyprivacy.txt: 4949) +.imetrix.it +# ||hitcountersonline.com^$third-party (easyprivacy.txt: 4948) +.hitcountersonline.com +# ||hiperstat.com^$third-party (easyprivacy.txt: 4947) +.hiperstat.com +# ||geocontatore.com^$third-party (easyprivacy.txt: 4946) +.geocontatore.com +# ||freestats.ws^$third-party (easyprivacy.txt: 4945) +.freestats.ws +# ||freestats.tv^$third-party (easyprivacy.txt: 4944) +.freestats.tv +# ||freestats.tk^$third-party (easyprivacy.txt: 4943) +.freestats.tk +# ||freestats.org^$third-party (easyprivacy.txt: 4942) +.freestats.org +# ||freestats.net^$third-party (easyprivacy.txt: 4941) +.freestats.net +# ||freestats.me^$third-party (easyprivacy.txt: 4940) +.freestats.me +# ||freestats.biz^$third-party (easyprivacy.txt: 4939) +.freestats.biz +# ||freestat.ws^$third-party (easyprivacy.txt: 4938) +.freestat.ws +# ||freecounter.it^$third-party (easyprivacy.txt: 4937) +.freecounter.it +# ||digital-metric.com^$third-party (easyprivacy.txt: 4936) +.digital-metric.com +# ||cuntador.com^$third-party (easyprivacy.txt: 4935) +.cuntador.com +# ||contatoreaccessi.com^$third-party (easyprivacy.txt: 4934) +.contatoreaccessi.com +# ||avstat.it^$third-party (easyprivacy.txt: 4933) +.avstat.it +# ||accessi.it^$third-party (easyprivacy.txt: 4932) +.accessi.it +# ||0stats.com^$third-party (easyprivacy.txt: 4931) +.0stats.com +# ||modernus.is^$third-party (easyprivacy.txt: 4929) +.modernus.is +# ||mystat.hu^$third-party (easyprivacy.txt: 4927) +.mystat.hu +# ||hirmatrix.hu^$third-party (easyprivacy.txt: 4926) +.hirmatrix.hu +# ||gpr.hu^$third-party (easyprivacy.txt: 4925) +.gpr.hu +# ||hetchi.com^$third-party (easyprivacy.txt: 4923) +.hetchi.com +# ||enter-system.com^$third-party (easyprivacy.txt: 4922) +.enter-system.com +# ||hotstats.gr^$third-party (easyprivacy.txt: 4920) +.hotstats.gr +# ||vihtori-analytics.fi^$third-party (easyprivacy.txt: 4918) +.vihtori-analytics.fi +# ||tracking*.euroads.fi^$third-party (easyprivacy.txt: 4917) +.tracking*./.*\.euroads\.fi[^\w%.-] +.tracking*.euroads.fi +# ||stat.www.fi^$third-party (easyprivacy.txt: 4916) +.stat.www.fi +# ||netmonitor.fi^$third-party (easyprivacy.txt: 4915) +.netmonitor.fi +# ||m-brain.fi^$third-party (easyprivacy.txt: 4914) +.m-brain.fi +# ||kavijaseuranta.fi^$third-party (easyprivacy.txt: 4913) +.kavijaseuranta.fi +# ||inpref.com^$third-party (easyprivacy.txt: 4912) +.inpref.com +# ||gallupnet.fi^$third-party (easyprivacy.txt: 4911) +.gallupnet.fi +# ||frosmo.com^$third-party (easyprivacy.txt: 4910) +.frosmo.com +# ||mediaindex.ee^$third-party (easyprivacy.txt: 4908) +.mediaindex.ee +# ||counter.ok.ee^$third-party (easyprivacy.txt: 4907) +.counter.ok.ee +# ||traffic4u.nl^$third-party (easyprivacy.txt: 4905) +.traffic4u.nl +# ||svtrd.com^$third-party (easyprivacy.txt: 4904) +.svtrd.com +# ||stealth.nl^$third-party (easyprivacy.txt: 4903) +.stealth.nl +# ||mystats.nl^$third-party (easyprivacy.txt: 4902) +.mystats.nl +# ||mtrack.nl^$third-party (easyprivacy.txt: 4901) +.mtrack.nl +# ||metriweb.be^$third-party (easyprivacy.txt: 4900) +.metriweb.be +# ||istats.nl^$third-party (easyprivacy.txt: 4899) +.istats.nl +# ||active24stats.nl^$third-party (easyprivacy.txt: 4898) +.active24stats.nl +# ||zipstat.dk^$third-party (easyprivacy.txt: 4896) +.zipstat.dk +# ||tns-gallup.dk^$third-party (easyprivacy.txt: 4895) +.tns-gallup.dk +# ||sitechart.dk^$third-party (easyprivacy.txt: 4894) +.sitechart.dk +# ||peakcounter.dk^$third-party (easyprivacy.txt: 4893) +.peakcounter.dk +# ||parameter.dk^$third-party (easyprivacy.txt: 4892) +.parameter.dk +# ||netstats.dk^$third-party (easyprivacy.txt: 4891) +.netstats.dk +# ||netminers.dk^$third-party (easyprivacy.txt: 4890) +.netminers.dk +# ||ncom.dk^$third-party (easyprivacy.txt: 4889) +.ncom.dk +# ||livewebstats.dk^$third-party (easyprivacy.txt: 4888) +.livewebstats.dk +# ||livecounter.dk^$third-party (easyprivacy.txt: 4887) +.livecounter.dk +# ||infocollect.dk^$third-party (easyprivacy.txt: 4886) +.infocollect.dk +# ||hitcount.dk^$third-party (easyprivacy.txt: 4885) +.hitcount.dk +# ||gixmo.dk^$third-party (easyprivacy.txt: 4884) +.gixmo.dk +# ||euroads.dk^$third-party (easyprivacy.txt: 4883) +.euroads.dk +# ||chart.dk^$third-party (easyprivacy.txt: 4882) +.chart.dk +# ||andersenit.dk^$third-party (easyprivacy.txt: 4881) +.andersenit.dk +# ||agillic.eu^$third-party (easyprivacy.txt: 4880) +.agillic.eu +# ||toplist.cz^$third-party (easyprivacy.txt: 4878) +.toplist.cz +# ||pocitadlo.cz^$third-party (easyprivacy.txt: 4877) +.pocitadlo.cz +# ||netagent.cz^$third-party (easyprivacy.txt: 4876) +.netagent.cz +# ||navrcholu.cz^$third-party (easyprivacy.txt: 4875) +.navrcholu.cz +# ||monkeytracker.cz^$third-party (easyprivacy.txt: 4874) +.monkeytracker.cz +# ||lookit.cz^$third-party (easyprivacy.txt: 4873) +.lookit.cz +# ||itop.cz^$third-party (easyprivacy.txt: 4872) +.itop.cz +# ||ibillboard.com^$third-party (easyprivacy.txt: 4871) +.ibillboard.com +# ||xclaimwords.net^$third-party (easyprivacy.txt: 4869) +.xclaimwords.net +# ||dotmetrics.net^$third-party (easyprivacy.txt: 4868) +.dotmetrics.net +# ||ztcadx.com^$third-party (easyprivacy.txt: 4866) +.ztcadx.com +# ||zampda.net^$third-party (easyprivacy.txt: 4865) +.zampda.net +# ||yigao.com^$third-party (easyprivacy.txt: 4864) +.yigao.com +# ||vdoing.com^$third-party (easyprivacy.txt: 4863) +.vdoing.com +# ||vamaker.com^$third-party (easyprivacy.txt: 4862) +.vamaker.com +# ||users.51.la^$third-party (easyprivacy.txt: 4861) +.users.51.la +# ||tovery.net^$third-party (easyprivacy.txt: 4860) +.tovery.net +# ||topsem.com^$third-party (easyprivacy.txt: 4859) +.topsem.com +# ||top-bloggers.com^$third-party (easyprivacy.txt: 4858) +.top-bloggers.com +# ||sitebot.cn^$third-party (easyprivacy.txt: 4857) +.sitebot.cn +# ||sagetrc.com^$third-party (easyprivacy.txt: 4856) +.sagetrc.com +# ||pixanalytics.com^$third-party (easyprivacy.txt: 4855) +.pixanalytics.com +# ||phpstat.com^$third-party (easyprivacy.txt: 4854) +.phpstat.com +# ||oadz.com^$third-party (easyprivacy.txt: 4853) +.oadz.com +# ||mmstat.com^$third-party (easyprivacy.txt: 4852) +.mmstat.com +# ||mediav.com^$third-party (easyprivacy.txt: 4851) +.mediav.com +# ||jiankongbao.com^$third-party (easyprivacy.txt: 4850) +.jiankongbao.com +# ||irs09.com^$third-party (easyprivacy.txt: 4849) +.irs09.com +# ||irs01.$third-party (easyprivacy.txt: 4848) +.irs01.*. +# ||hotrank.com.tw^$third-party (easyprivacy.txt: 4847) +.hotrank.com.tw +# ||gtags.net^$third-party (easyprivacy.txt: 4846) +.gtags.net +# ||gridsum.com^$third-party (easyprivacy.txt: 4845) +.gridsum.com +# ||gostats.cn^$third-party (easyprivacy.txt: 4844) +.gostats.cn +# ||eyeota.net^$third-party (easyprivacy.txt: 4843) +.eyeota.net +# ||emarbox.com^$third-party (easyprivacy.txt: 4842) +.emarbox.com +# ||datamaster.com.cn^$third-party (easyprivacy.txt: 4841) +.datamaster.com.cn +# ||cnzz.net^$third-party (easyprivacy.txt: 4840) +.cnzz.net +# ||clicki.cn^$third-party (easyprivacy.txt: 4839) +.clicki.cn +# ||blogtw.net^$third-party (easyprivacy.txt: 4838) +.blogtw.net +# ||blog104.com^$third-party (easyprivacy.txt: 4837) +.blog104.com +# ||baifendian.com^$third-party (easyprivacy.txt: 4836) +.baifendian.com +# ||admaster.com.cn^$third-party (easyprivacy.txt: 4835) +.admaster.com.cn +# ||acs86.com^$third-party (easyprivacy.txt: 4834) +.acs86.com +# ||99click.com^$third-party (easyprivacy.txt: 4833) +.99click.com +# ||51yes.com^$third-party (easyprivacy.txt: 4832) +.51yes.com +# ||50bang.org^$third-party (easyprivacy.txt: 4831) +.50bang.org +# ||tyxo.bg^$third-party (easyprivacy.txt: 4828) +.tyxo.bg +# ||trafit.com^$third-party (easyprivacy.txt: 4827) +.trafit.com +# ||circle.am^$third-party (easyprivacy.txt: 4825) +.circle.am +# ||x-traceur.com^$third-party (easyprivacy.txt: 4823) +.x-traceur.com +# ||wysistat.com^$third-party (easyprivacy.txt: 4822) +.wysistat.com +# ||webcompteur.com^$third-party (easyprivacy.txt: 4821) +.webcompteur.com +# ||trafiz.net^$third-party (easyprivacy.txt: 4820) +.trafiz.net +# ||track.effiliation.com^$third-party (easyprivacy.txt: 4819) +.track.effiliation.com +# ||toc.io^$third-party (easyprivacy.txt: 4818) +.toc.io +# ||tnsinternet.be^$third-party (easyprivacy.txt: 4817) +.tnsinternet.be +# ||titag.com^$third-party (easyprivacy.txt: 4816) +.titag.com +# ||stats.fr^$third-party (easyprivacy.txt: 4815) +.stats.fr +# ||semiocast.com^$third-party (easyprivacy.txt: 4814) +.semiocast.com +# ||reseau-pub.com^$third-party (easyprivacy.txt: 4813) +.reseau-pub.com +# ||ownpage.fr^$third-party (easyprivacy.txt: 4812) +.ownpage.fr +# ||netquattro.com/stats/ (easyprivacy.txt: 4811) +.netquattro.com/stats/ +# ||ncdnprorogeraie.lol^$third-party (easyprivacy.txt: 4810) +.ncdnprorogeraie.lol +# ||mmtro.com^$third-party (easyprivacy.txt: 4809) +.mmtro.com +# ||megast.at^$third-party (easyprivacy.txt: 4808) +.megast.at +# ||mastertag.effiliation.com^$third-party (easyprivacy.txt: 4807) +.mastertag.effiliation.com +# ||livestats.fr^$third-party (easyprivacy.txt: 4806) +.livestats.fr +# ||libstat.com^$third-party (easyprivacy.txt: 4805) +.libstat.com +# ||leadium.com^$third-party (easyprivacy.txt: 4804) +.leadium.com +# ||kameleoon.com^$third-party (easyprivacy.txt: 4803) +.kameleoon.com +# ||graphinsider.com^$third-party (easyprivacy.txt: 4802) +.graphinsider.com +# ||goyavelab.com^$third-party (easyprivacy.txt: 4801) +.goyavelab.com +# ||geocompteur.com^$third-party (easyprivacy.txt: 4800) +.geocompteur.com +# ||ferank.fr^$third-party (easyprivacy.txt: 4799) +.ferank.fr +# ||ezakus.net^$third-party (easyprivacy.txt: 4798) +.ezakus.net +# ||estat.com^$third-party (easyprivacy.txt: 4797) +.estat.com +# ||emailretargeting.com^$third-party (easyprivacy.txt: 4796) +.emailretargeting.com +# ||edt02.net^$third-party (easyprivacy.txt: 4795) +.edt02.net +# ||deliv.lexpress.fr^$third-party (easyprivacy.txt: 4794) +.deliv.lexpress.fr +# ||countus.fr^$third-party (easyprivacy.txt: 4793) +.countus.fr +# ||count.fr^$third-party (easyprivacy.txt: 4792) +.count.fr +# ||compteur.com^$third-party (easyprivacy.txt: 4791) +.compteur.com +# ||compteur-gratuit.org^$third-party (easyprivacy.txt: 4790) +.compteur-gratuit.org +# ||casualstat.com^$third-party (easyprivacy.txt: 4789) +.casualstat.com +# ||canalstat.com^$third-party (easyprivacy.txt: 4788) +.canalstat.com +# ||atraxio.com^$third-party (easyprivacy.txt: 4787) +.atraxio.com +# ||antvoice.com^$third-party (easyprivacy.txt: 4786) +.antvoice.com +# ||alkemics.com^$third-party (easyprivacy.txt: 4785) +.alkemics.com +# ||affilizr.com^$third-party (easyprivacy.txt: 4784) +.affilizr.com +# ||abcompteur.com^$third-party (easyprivacy.txt: 4783) +.abcompteur.com +# ||123compteur.com^$third-party (easyprivacy.txt: 4782) +.123compteur.com +# ||zaehler.tv^$third-party (easyprivacy.txt: 4780) +.zaehler.tv +# ||yoochoose.net^$third-party (easyprivacy.txt: 4779) +.yoochoose.net +# ||xplosion.de^$third-party (easyprivacy.txt: 4778) +.xplosion.de +# ||xl-counti.com^$third-party (easyprivacy.txt: 4777) +.xl-counti.com +# ||xhit.com^$third-party (easyprivacy.txt: 4776) +.xhit.com +# ||xcounter.ch^$third-party (easyprivacy.txt: 4775) +.xcounter.ch +# ||xa-counter.com^$third-party (easyprivacy.txt: 4774) +.xa-counter.com +# ||wipe.de^$~script,third-party (easyprivacy.txt: 4773) +.wipe.de +# ||wemfbox.ch^$third-party (easyprivacy.txt: 4772) +.wemfbox.ch +# ||welt-der-links.de^$third-party (easyprivacy.txt: 4771) +.welt-der-links.de +# ||wecount4u.com^$third-party (easyprivacy.txt: 4770) +.wecount4u.com +# ||webttracking.de^$third-party (easyprivacy.txt: 4769) +.webttracking.de +# ||webtrekk.net^$third-party (easyprivacy.txt: 4768) +.webtrekk.net +# ||webtrekk.de^$third-party (easyprivacy.txt: 4767) +.webtrekk.de +# ||webtrekk-us.net^$third-party (easyprivacy.txt: 4766) +.webtrekk-us.net +# ||websitesampling.com^$third-party (easyprivacy.txt: 4765) +.websitesampling.com +# ||webprospector.de^$third-party (easyprivacy.txt: 4764) +.webprospector.de +# ||weblist.de^$third-party (easyprivacy.txt: 4763) +.weblist.de +# ||webkatalog.li^$third-party (easyprivacy.txt: 4762) +.webkatalog.li +# ||webhits.de^$third-party (easyprivacy.txt: 4761) +.webhits.de +# ||web-controlling.org^$third-party (easyprivacy.txt: 4760) +.web-controlling.org +# ||visitor-stats.de^$third-party (easyprivacy.txt: 4759) +.visitor-stats.de +# ||vinsight.de^$third-party (easyprivacy.txt: 4758) +.vinsight.de +# ||viewar.org^$third-party (easyprivacy.txt: 4757) +.viewar.org +# ||videos.oms.eu^$third-party (easyprivacy.txt: 4756) +.videos.oms.eu +# ||video.oms.eu^$third-party (easyprivacy.txt: 4755) +.video.oms.eu +# ||verypopularwebsite.com^$third-party (easyprivacy.txt: 4754) +.verypopularwebsite.com +# ||urstats.de^$third-party (easyprivacy.txt: 4753) +.urstats.de +# ||up-rank.com^$third-party (easyprivacy.txt: 4752) +.up-rank.com +# ||universaltrackingcontainer.com^$third-party (easyprivacy.txt: 4751) +.universaltrackingcontainer.com +# ||trkme.net^$third-party (easyprivacy.txt: 4750) +.trkme.net +# ||trendcounter.de^$third-party (easyprivacy.txt: 4749) +.trendcounter.de +# ||trbo.com^$third-party (easyprivacy.txt: 4748) +.trbo.com +# ||trafficmaxx.de^$third-party (easyprivacy.txt: 4747) +.trafficmaxx.de +# ||trackfreundlich.de^$third-party (easyprivacy.txt: 4746) +.trackfreundlich.de +# ||topstat.com^$third-party (easyprivacy.txt: 4745) +.topstat.com +# ||toplist100.org^$third-party (easyprivacy.txt: 4744) +.toplist100.org +# ||tophits4u.de^$third-party (easyprivacy.txt: 4743) +.tophits4u.de +# ||tisoomi-services.com^$third-party (easyprivacy.txt: 4742) +.tisoomi-services.com +# ||teriotracker.de^$third-party (easyprivacy.txt: 4741) +.teriotracker.de +# ||tausch-link.de^$third-party (easyprivacy.txt: 4740) +.tausch-link.de +# ||tamedia.ch^$third-party (easyprivacy.txt: 4739) +.tamedia.ch +# ||t4ft.de^$third-party (easyprivacy.txt: 4738) +.t4ft.de +# ||sunios.de^$third-party (easyprivacy.txt: 4737) +.sunios.de +# ||suchmaschinen-ranking-hits.de^$third-party (easyprivacy.txt: 4736) +.suchmaschinen-ranking-hits.de +# ||stroeerdigitalmedia.de^$third-party (easyprivacy.txt: 4735) +.stroeerdigitalmedia.de +# ||stats4free.de^$third-party (easyprivacy.txt: 4734) +.stats4free.de +# ||stats.de^$third-party (easyprivacy.txt: 4733) +.stats.de +# ||statistiq.com^$third-party (easyprivacy.txt: 4732) +.statistiq.com +# ||statistik-gallup.net^$third-party (easyprivacy.txt: 4731) +.statistik-gallup.net +# ||static-fra.de^*/tracking.js (easyprivacy.txt: 4730) +.static-fra.de/.*/tracking\.js +# ||static-fra.de^*/targeting.js (easyprivacy.txt: 4729) +.static-fra.de/.*/targeting\.js +# ||ssl4stats.de^$third-party (easyprivacy.txt: 4728) +.ssl4stats.de +# ||spring-tns.net^$third-party (easyprivacy.txt: 4727) +.spring-tns.net +# ||sponsorcounter.de^$third-party (easyprivacy.txt: 4726) +.sponsorcounter.de +# ||spider-mich.com^$third-party (easyprivacy.txt: 4725) +.spider-mich.com +# ||spelar.org^$third-party (easyprivacy.txt: 4724) +.spelar.org +# ||speedtracker.de^$third-party (easyprivacy.txt: 4723) +.speedtracker.de +# ||speedcounter.net^$third-party (easyprivacy.txt: 4722) +.speedcounter.net +# ||speedcount.de^$third-party (easyprivacy.txt: 4721) +.speedcount.de +# ||spacehits.net^$third-party (easyprivacy.txt: 4720) +.spacehits.net +# ||space-link.de^$third-party (easyprivacy.txt: 4719) +.space-link.de +# ||slogantrend.de^$third-party (easyprivacy.txt: 4718) +.slogantrend.de +# ||sitebro.de^$third-party (easyprivacy.txt: 4717) +.sitebro.de +# ||sensic.net^$third-party (easyprivacy.txt: 4716) +.sensic.net +# ||semtracker.de^$third-party (easyprivacy.txt: 4715) +.semtracker.de +# ||seitwert.de^$third-party (easyprivacy.txt: 4714) +.seitwert.de +# ||sedotracker.de^$third-party (easyprivacy.txt: 4713) +.sedotracker.de +# ||scriptil.com^$third-party (easyprivacy.txt: 4712) +.scriptil.com +# ||royalcount.de^$third-party (easyprivacy.txt: 4711) +.royalcount.de +# ||roitracking.net^$third-party (easyprivacy.txt: 4710) +.roitracking.net +# ||rightstats.com^$third-party (easyprivacy.txt: 4709) +.rightstats.com +# ||research.de.com^$third-party (easyprivacy.txt: 4708) +.research.de.com +# ||refinedads.com^$third-party (easyprivacy.txt: 4707) +.refinedads.com +# ||ranklink.de^$third-party (easyprivacy.txt: 4706) +.ranklink.de +# ||rankings24.de^$third-party (easyprivacy.txt: 4705) +.rankings24.de +# ||ranking-links.de^$third-party (easyprivacy.txt: 4704) +.ranking-links.de +# ||ranking-it.de^$third-party (easyprivacy.txt: 4703) +.ranking-it.de +# ||ranking-hits.de^$third-party (easyprivacy.txt: 4702) +.ranking-hits.de +# ||ranking-counter.de^$third-party (easyprivacy.txt: 4701) +.ranking-counter.de +# ||ranking-charts.de^$third-party (easyprivacy.txt: 4700) +.ranking-charts.de +# ||rankchamp.de^$third-party (easyprivacy.txt: 4699) +.rankchamp.de +# ||rank4all.eu^$third-party (easyprivacy.txt: 4698) +.rank4all.eu +# ||rank-power.com^$third-party (easyprivacy.txt: 4697) +.rank-power.com +# ||r.movad.de^$third-party (easyprivacy.txt: 4696) +.r.movad.de +# ||propagerank.de^$third-party (easyprivacy.txt: 4695) +.propagerank.de +# ||productsup.com^$third-party (easyprivacy.txt: 4694) +.productsup.com +# ||prnetwork.de^$third-party (easyprivacy.txt: 4693) +.prnetwork.de +# ||pr-update.biz^$third-party (easyprivacy.txt: 4692) +.pr-update.biz +# ||pr-textlink.de^$third-party (easyprivacy.txt: 4691) +.pr-textlink.de +# ||pr-sunshine.de^$third-party (easyprivacy.txt: 4690) +.pr-sunshine.de +# ||pr-rang.de^$third-party (easyprivacy.txt: 4689) +.pr-rang.de +# ||pr-linktausch.de^$third-party (easyprivacy.txt: 4688) +.pr-linktausch.de +# ||pr-link.eu^$third-party (easyprivacy.txt: 4687) +.pr-link.eu +# ||pr-chart.de^$third-party (easyprivacy.txt: 4686) +.pr-chart.de +# ||pr-chart.com^$third-party (easyprivacy.txt: 4685) +.pr-chart.com +# ||ppro.de^$third-party (easyprivacy.txt: 4684) +.ppro.de +# ||powercount.com^$third-party (easyprivacy.txt: 4683) +.powercount.com +# ||powerbar-pagerank.de^$third-party (easyprivacy.txt: 4682) +.powerbar-pagerank.de +# ||plexworks.de^$third-party (easyprivacy.txt: 4681) +.plexworks.de +# ||pimpmypr.de^$third-party (easyprivacy.txt: 4680) +.pimpmypr.de +# ||pc-agency24.de^$third-party (easyprivacy.txt: 4679) +.pc-agency24.de +# ||pageranking.li^$third-party (easyprivacy.txt: 4678) +.pageranking.li +# ||pageranking-counter.de^$third-party (easyprivacy.txt: 4677) +.pageranking-counter.de +# ||pagerank4you.eu^$third-party (easyprivacy.txt: 4676) +.pagerank4you.eu +# ||pagerank-suchmaschine.de^$third-party (easyprivacy.txt: 4675) +.pagerank-suchmaschine.de +# ||pagerank-online.eu^$third-party (easyprivacy.txt: 4674) +.pagerank-online.eu +# ||pagerank-linkverzeichnis.de^$third-party (easyprivacy.txt: 4673) +.pagerank-linkverzeichnis.de +# ||pagerank-hamburg.de^$third-party (easyprivacy.txt: 4672) +.pagerank-hamburg.de +# ||pagerank-backlink.eu^$third-party (easyprivacy.txt: 4671) +.pagerank-backlink.eu +# ||page-hit.de^$third-party (easyprivacy.txt: 4670) +.page-hit.de +# ||ourstats.de^$third-party (easyprivacy.txt: 4669) +.ourstats.de +# ||osxau.de^$third-party (easyprivacy.txt: 4668) +.osxau.de +# ||org-dot-com.com^$third-party (easyprivacy.txt: 4667) +.org-dot-com.com +# ||optimierung-der-website.de^$third-party (easyprivacy.txt: 4666) +.optimierung-der-website.de +# ||oewabox.at^$third-party (easyprivacy.txt: 4665) +.oewabox.at +# ||observare.de^$third-party (easyprivacy.txt: 4664) +.observare.de +# ||northclick-statistiken.de^$third-party (easyprivacy.txt: 4663) +.northclick-statistiken.de +# ||netzstat.ch^$third-party (easyprivacy.txt: 4662) +.netzstat.ch +# ||netzaehler.de^$third-party (easyprivacy.txt: 4661) +.netzaehler.de +# ||netupdater.info^$third-party (easyprivacy.txt: 4660) +.netupdater.info +# ||netdebit-counter.de^$third-party (easyprivacy.txt: 4659) +.netdebit-counter.de +# ||netcounter.de^$third-party (easyprivacy.txt: 4658) +.netcounter.de +# ||mysumo.de^$third-party (easyprivacy.txt: 4657) +.mysumo.de +# ||my-stats.info^$third-party (easyprivacy.txt: 4656) +.my-stats.info +# ||my-ranking.de^$third-party (easyprivacy.txt: 4655) +.my-ranking.de +# ||mr-rank.de^$third-party (easyprivacy.txt: 4654) +.mr-rank.de +# ||mpwe.net^$third-party (easyprivacy.txt: 4653) +.mpwe.net +# ||motorpresse-statistik.de^$third-party (easyprivacy.txt: 4652) +.motorpresse-statistik.de +# ||mitmeisseln.de^$third-party (easyprivacy.txt: 4651) +.mitmeisseln.de +# ||microcounter.de^$third-party (easyprivacy.txt: 4650) +.microcounter.de +# ||metalyzer.com^$third-party (easyprivacy.txt: 4648) +.metalyzer.com +# ||mengis-linden.org^$third-party (easyprivacy.txt: 4647) +.mengis-linden.org +# ||meetrics.net^$third-party (easyprivacy.txt: 4646) +.meetrics.net +# ||marketing-page.de^$third-party (easyprivacy.txt: 4645) +.marketing-page.de +# ||m-pathy.com^$third-party (easyprivacy.txt: 4644) +.m-pathy.com +# ||losecounter.de^$third-party (easyprivacy.txt: 4643) +.losecounter.de +# ||liverank.org^$third-party (easyprivacy.txt: 4642) +.liverank.org +# ||linktausch.li^$third-party (easyprivacy.txt: 4641) +.linktausch.li +# ||linktausch-pagerank.de^$third-party (easyprivacy.txt: 4640) +.linktausch-pagerank.de +# ||link-empfehlen24.de^$third-party (easyprivacy.txt: 4639) +.link-empfehlen24.de +# ||leserservice-tracking.de^$third-party (easyprivacy.txt: 4638) +.leserservice-tracking.de +# ||lddt.de^$third-party (easyprivacy.txt: 4637) +.lddt.de +# ||kupona.de^$third-party (easyprivacy.txt: 4636) +.kupona.de +# ||kostenlose-counter.com^$third-party (easyprivacy.txt: 4635) +.kostenlose-counter.com +# ||kono-research.de^$third-party (easyprivacy.txt: 4634) +.kono-research.de +# ||klamm-counter.de^$third-party (easyprivacy.txt: 4633) +.klamm-counter.de +# ||keytrack.de^$third-party (easyprivacy.txt: 4632) +.keytrack.de +# ||iyi.net^$third-party (easyprivacy.txt: 4631) +.iyi.net +# ||ivwbox.de^$third-party (easyprivacy.txt: 4630) +.ivwbox.de +# ||iptrack.biz^$third-party (easyprivacy.txt: 4629) +.iptrack.biz +# ||ipcounter.net^$third-party (easyprivacy.txt: 4628) +.ipcounter.net +# ||ipcount.net^$third-party (easyprivacy.txt: 4627) +.ipcount.net +# ||interhits.de^$third-party (easyprivacy.txt: 4626) +.interhits.de +# ||interaktiv-net.de^$third-party (easyprivacy.txt: 4625) +.interaktiv-net.de +# ||intelliad.de^$third-party (easyprivacy.txt: 4624) +.intelliad.de +# ||intelliad-tracking.com^$third-party (easyprivacy.txt: 4623) +.intelliad-tracking.com +# ||ingenioustech.biz^$third-party (easyprivacy.txt: 4622) +.ingenioustech.biz +# ||inet-tracker.de^$third-party (easyprivacy.txt: 4621) +.inet-tracker.de +# ||imcht.net^$third-party (easyprivacy.txt: 4620) +.imcht.net +# ||iivt.com^$third-party (easyprivacy.txt: 4619) +.iivt.com +# ||hung.ch^$third-party (easyprivacy.txt: 4618) +.hung.ch +# ||hotcounter.de^$third-party (easyprivacy.txt: 4617) +.hotcounter.de +# ||hot-count.com^$third-party (easyprivacy.txt: 4616) +.hot-count.com +# ||hitmaster.de^$third-party (easyprivacy.txt: 4615) +.hitmaster.de +# ||hiddencounter.de^$third-party (easyprivacy.txt: 4614) +.hiddencounter.de +# ||grfz.de^$third-party (easyprivacy.txt: 4613) +.grfz.de +# ||greatviews.de^$third-party (easyprivacy.txt: 4612) +.greatviews.de +# ||gratisbacklink.de^$third-party (easyprivacy.txt: 4611) +.gratisbacklink.de +# ||gratis-counter-gratis.de^$third-party (easyprivacy.txt: 4610) +.gratis-counter-gratis.de +# ||gratis-besucherzaehler.de^$third-party (easyprivacy.txt: 4609) +.gratis-besucherzaehler.de +# ||gostats.de^$third-party (easyprivacy.txt: 4608) +.gostats.de +# ||google-rank.org^$third-party (easyprivacy.txt: 4607) +.google-rank.org +# ||google-pr7.de^$third-party (easyprivacy.txt: 4606) +.google-pr7.de +# ||gezaehlt.de^$third-party (easyprivacy.txt: 4605) +.gezaehlt.de +# ||getcounter.de^$third-party (easyprivacy.txt: 4604) +.getcounter.de +# ||generaltracking.de^$third-party (easyprivacy.txt: 4603) +.generaltracking.de +# ||gacela.eu^$third-party (easyprivacy.txt: 4602) +.gacela.eu +# ||fun-hits.com^$third-party (easyprivacy.txt: 4601) +.fun-hits.com +# ||fremaks.net^$third-party (easyprivacy.txt: 4600) +.fremaks.net +# ||freihit.de^$third-party (easyprivacy.txt: 4599) +.freihit.de +# ||freetracker.biz^$third-party (easyprivacy.txt: 4598) +.freetracker.biz +# ||free-counters.net^$third-party (easyprivacy.txt: 4597) +.free-counters.net +# ||fixcounter.com^$third-party (easyprivacy.txt: 4596) +.fixcounter.com +# ||fastcounter.de^$third-party (easyprivacy.txt: 4595) +.fastcounter.de +# ||faibl.org^$third-party (easyprivacy.txt: 4594) +.faibl.org +# ||exmarkt.de^$third-party (easyprivacy.txt: 4593) +.exmarkt.de +# ||exapxl.de^$third-party (easyprivacy.txt: 4592) +.exapxl.de +# ||exactag.com^$third-party (easyprivacy.txt: 4591) +.exactag.com +# ||eurocounter.com^$third-party (easyprivacy.txt: 4590) +.eurocounter.com +# ||euro-pr.eu^$third-party (easyprivacy.txt: 4589) +.euro-pr.eu +# ||etracking24.de^$third-party (easyprivacy.txt: 4588) +.etracking24.de +# ||etracker.de^$third-party (easyprivacy.txt: 4587) +.etracker.de +# ||erotikcounter.org^$third-party (easyprivacy.txt: 4586) +.erotikcounter.org +# ||emetriq.de^$third-party (easyprivacy.txt: 4585) +.emetriq.de +# ||edtp.de^$third-party (easyprivacy.txt: 4584) +.edtp.de +# ||edococounter.de^$third-party (easyprivacy.txt: 4583) +.edococounter.de +# ||econda-monitor.de^$third-party (easyprivacy.txt: 4582) +.econda-monitor.de +# ||easytracking.de^$third-party (easyprivacy.txt: 4581) +.easytracking.de +# ||eanalyzer.de^$third-party (easyprivacy.txt: 4580) +.eanalyzer.de +# ||durocount.com^$third-party (easyprivacy.txt: 4579) +.durocount.com +# ||dreamcounter.de^$third-party (easyprivacy.txt: 4578) +.dreamcounter.de +# ||dk-statistik.de^$third-party (easyprivacy.txt: 4577) +.dk-statistik.de +# ||divolution.com^$third-party (easyprivacy.txt: 4576) +.divolution.com +# ||directcounter.de^$third-party (easyprivacy.txt: 4575) +.directcounter.de +# ||digidip.net^$third-party (easyprivacy.txt: 4574) +.digidip.net +# ||die-rankliste.com^$third-party (easyprivacy.txt: 4573) +.die-rankliste.com +# ||cya1t.net^$third-party (easyprivacy.txt: 4572) +.cya1t.net +# ||cptrack.de^$third-party (easyprivacy.txt: 4571) +.cptrack.de +# ||countyou.de^$third-party (easyprivacy.txt: 4570) +.countyou.de +# ||countok.de^$third-party (easyprivacy.txt: 4569) +.countok.de +# ||counto.de^$third-party (easyprivacy.txt: 4568) +.counto.de +# ||countnow.de^$third-party (easyprivacy.txt: 4567) +.countnow.de +# ||countit.ch^$third-party (easyprivacy.txt: 4566) +.countit.ch +# ||countino.de^$third-party (easyprivacy.txt: 4565) +.countino.de +# ||countimo.de^$third-party (easyprivacy.txt: 4564) +.countimo.de +# ||counti.de^$third-party (easyprivacy.txt: 4563) +.counti.de +# ||counthis.com^$third-party (easyprivacy.txt: 4562) +.counthis.com +# ||counterstatistik.de^$third-party (easyprivacy.txt: 4561) +.counterstatistik.de +# ||counterstation.de^$third-party (easyprivacy.txt: 4560) +.counterstation.de +# ||counterserver.de^$third-party (easyprivacy.txt: 4559) +.counterserver.de +# ||counterseite.de^$third-party (easyprivacy.txt: 4558) +.counterseite.de +# ||counteronline.de^$third-party (easyprivacy.txt: 4557) +.counteronline.de +# ||counterlevel.de^$third-party (easyprivacy.txt: 4556) +.counterlevel.de +# ||countercity.net^$third-party (easyprivacy.txt: 4555) +.countercity.net +# ||countercity.de^$third-party (easyprivacy.txt: 4554) +.countercity.de +# ||counter4all.de^$third-party (easyprivacy.txt: 4553) +.counter4all.de +# ||counter27.ch^$third-party (easyprivacy.txt: 4552) +.counter27.ch +# ||counter.de^$third-party (easyprivacy.txt: 4551) +.counter.de +# ||counter-treff.de^$third-party (easyprivacy.txt: 4550) +.counter-treff.de +# ||counter-pagerank.de^$third-party (easyprivacy.txt: 4549) +.counter-pagerank.de +# ||counter-kostenlos.net^$third-party (easyprivacy.txt: 4548) +.counter-kostenlos.net +# ||counter-kostenlos.info^$third-party (easyprivacy.txt: 4547) +.counter-kostenlos.info +# ||counter-gratis.com^$third-party (easyprivacy.txt: 4546) +.counter-gratis.com +# ||counter-go.de^$third-party (easyprivacy.txt: 4545) +.counter-go.de +# ||counter-city.de^$third-party (easyprivacy.txt: 4544) +.counter-city.de +# ||counted.at^$third-party (easyprivacy.txt: 4543) +.counted.at +# ||countar.de^$third-party (easyprivacy.txt: 4542) +.countar.de +# ||count24.de^$third-party (easyprivacy.txt: 4541) +.count24.de +# ||count.im^$third-party (easyprivacy.txt: 4540) +.count.im +# ||clickmap.ch^$third-party (easyprivacy.txt: 4539) +.clickmap.ch +# ||checkeffect.at^$third-party (easyprivacy.txt: 4538) +.checkeffect.at +# ||bonuscounter.de^$third-party (easyprivacy.txt: 4537) +.bonuscounter.de +# ||bonitrust.de^$third-party (easyprivacy.txt: 4536) +.bonitrust.de +# ||bluecounter.de^$third-party (easyprivacy.txt: 4535) +.bluecounter.de +# ||blogverzeichnis.eu^$third-party (easyprivacy.txt: 4534) +.blogverzeichnis.eu +# ||blogtraffic.de^$third-party (easyprivacy.txt: 4533) +.blogtraffic.de +# ||bloggerei.de^$third-party (easyprivacy.txt: 4532) +.bloggerei.de +# ||bloggeramt.de^$third-party (easyprivacy.txt: 4531) +.bloggeramt.de +# ||blogcounter.de^$third-party (easyprivacy.txt: 4530) +.blogcounter.de +# ||blogcounter.com^$third-party (easyprivacy.txt: 4529) +.blogcounter.com +# ||blog-webkatalog.de^$third-party (easyprivacy.txt: 4528) +.blog-webkatalog.de +# ||blog-o-rama.de^$third-party (easyprivacy.txt: 4527) +.blog-o-rama.de +# ||betarget.de^$third-party (easyprivacy.txt: 4526) +.betarget.de +# ||besucherzahlen.com^$third-party (easyprivacy.txt: 4525) +.besucherzahlen.com +# ||besucherzaehler.org^$third-party (easyprivacy.txt: 4524) +.besucherzaehler.org +# ||besucherzaehler-zugriffszaehler.de^$third-party (easyprivacy.txt: 4523) +.besucherzaehler-zugriffszaehler.de +# ||besucherzaehler-homepage.de^$third-party (easyprivacy.txt: 4522) +.besucherzaehler-homepage.de +# ||besucherzaehler-counter.de^$third-party (easyprivacy.txt: 4521) +.besucherzaehler-counter.de +# ||besucherstats.de^$third-party (easyprivacy.txt: 4520) +.besucherstats.de +# ||beliebtestewebseite.de^$third-party (easyprivacy.txt: 4519) +.beliebtestewebseite.de +# ||belboon.de^$third-party (easyprivacy.txt: 4518) +.belboon.de +# ||bekannt-im-web.de^$third-party (easyprivacy.txt: 4517) +.bekannt-im-web.de +# ||backlinktausch.biz^$third-party (easyprivacy.txt: 4516) +.backlinktausch.biz +# ||backlinks.li^$third-party (easyprivacy.txt: 4515) +.backlinks.li +# ||backlinkprofi.info^$third-party (easyprivacy.txt: 4514) +.backlinkprofi.info +# ||backlinkdino.de^$third-party (easyprivacy.txt: 4513) +.backlinkdino.de +# ||backlink-umsonst.de^$third-party (easyprivacy.txt: 4512) +.backlink-umsonst.de +# ||backlink-test.de^$third-party (easyprivacy.txt: 4511) +.backlink-test.de +# ||avencio.de^$third-party (easyprivacy.txt: 4510) +.avencio.de +# ||audiencemanager.de^$third-party (easyprivacy.txt: 4509) +.audiencemanager.de +# ||atsfi.de^$third-party (easyprivacy.txt: 4508) +.atsfi.de +# ||anormal-tracker.de^$third-party (easyprivacy.txt: 4507) +.anormal-tracker.de +# ||andyhoppe.com^$third-party (easyprivacy.txt: 4506) +.andyhoppe.com +# ||analytics.rechtslupe.org^ (easyprivacy.txt: 4505) +.analytics.rechtslupe.org +# ||adzoe.de^$third-party (easyprivacy.txt: 4504) +.adzoe.de +# ||adtraxx.de^$third-party (easyprivacy.txt: 4503) +.adtraxx.de +# ||adrank24.de^$third-party (easyprivacy.txt: 4502) +.adrank24.de +# ||addcontrol.net^$third-party (easyprivacy.txt: 4501) +.addcontrol.net +# ||adclear.net^$third-party (easyprivacy.txt: 4500) +.adclear.net +# ||adc-serv.net^$third-party (easyprivacy.txt: 4499) +.adc-serv.net +# ||active-tracking.de^$third-party (easyprivacy.txt: 4498) +.active-tracking.de +# ||actionallocator.com^$third-party (easyprivacy.txt: 4497) +.actionallocator.com +# ||abcounter.de^$third-party (easyprivacy.txt: 4496) +.abcounter.de +# ||4stats.de^$third-party (easyprivacy.txt: 4495) +.4stats.de +# ||24log.de^$third-party (easyprivacy.txt: 4494) +.24log.de +# ||12mnkys.com^$third-party (easyprivacy.txt: 4491) +.12mnkys.com +# ||123-counter.de^$third-party (easyprivacy.txt: 4490) +.123-counter.de +# ||zroitracker.com^$third-party (easyprivacy.txt: 4486) +.zroitracker.com +# ||zqtk.net^$third-party (easyprivacy.txt: 4485) +.zqtk.net +# ||zowary.com^$third-party (easyprivacy.txt: 4484) +.zowary.com +# ||zoosnet.net^$third-party (easyprivacy.txt: 4483) +.zoosnet.net +# ||zoomino.com^$third-party (easyprivacy.txt: 4482) +.zoomino.com +# ||zoomflow.com^$third-party (easyprivacy.txt: 4481) +.zoomflow.com +# ||zoomanalytics.co^$third-party (easyprivacy.txt: 4480) +.zoomanalytics.co +# ||zesep.com^$third-party (easyprivacy.txt: 4479) +.zesep.com +# ||zenlivestats.com^$third-party (easyprivacy.txt: 4478) +.zenlivestats.com +# ||zdtag.com^$third-party (easyprivacy.txt: 4477) +.zdtag.com +# ||zdbb.net^$third-party (easyprivacy.txt: 4476) +.zdbb.net +# ||zanox.com^$third-party (easyprivacy.txt: 4475) +.zanox.com +# ||zanox-affiliate.de^$third-party (easyprivacy.txt: 4474) +.zanox-affiliate.de +# ||youramigo.com^$third-party (easyprivacy.txt: 4473) +.youramigo.com +# ||your-counter.be^$third-party (easyprivacy.txt: 4472) +.your-counter.be +# ||youmetrix.co.uk^$third-party (easyprivacy.txt: 4471) +.youmetrix.co.uk +# ||yjtag.jp^$third-party (easyprivacy.txt: 4470) +.yjtag.jp +# ||yieldsoftware.com^$third-party (easyprivacy.txt: 4469) +.yieldsoftware.com +# ||yieldify.com^$third-party (easyprivacy.txt: 4468) +.yieldify.com +# ||yieldbot.com^$third-party (easyprivacy.txt: 4467) +.yieldbot.com +# ||yellowbrix.com^$third-party (easyprivacy.txt: 4466) +.yellowbrix.com +# ||ycctrk.co.uk^$third-party (easyprivacy.txt: 4465) +.ycctrk.co.uk +# ||ybotvisit.com^$third-party (easyprivacy.txt: 4464) +.ybotvisit.com +# ||yaudience.com^$third-party (easyprivacy.txt: 4463) +.yaudience.com +# ||yamanoha.com^$third-party (easyprivacy.txt: 4462) +.yamanoha.com +# ||y-track.com^$third-party (easyprivacy.txt: 4461) +.y-track.com +# ||xyztraffic.com^$third-party (easyprivacy.txt: 4460) +.xyztraffic.com +# ||xxxcounter.com^$third-party (easyprivacy.txt: 4459) +.xxxcounter.com +# ||xtremline.com^$third-party (easyprivacy.txt: 4458) +.xtremline.com +# ||xref.io^$third-party (easyprivacy.txt: 4457) +.xref.io +# ||xiti.com^$third-party (easyprivacy.txt: 4456) +.xiti.com +# ||xg4ken.com^$third-party (easyprivacy.txt: 4455) +.xg4ken.com +# ||xclk-integracion.com^$third-party (easyprivacy.txt: 4454) +.xclk-integracion.com +# ||x-stat.de^$third-party (easyprivacy.txt: 4453) +.x-stat.de +# ||wzrkt.com^$third-party (easyprivacy.txt: 4452) +.wzrkt.com +# ||wzrk.co^$third-party (easyprivacy.txt: 4451) +.wzrk.co +# ||wywyuserservice.com^$third-party (easyprivacy.txt: 4450) +.wywyuserservice.com +# ||wywy.com^$third-party (easyprivacy.txt: 4449) +.wywy.com +# ||wwwstats.info^$third-party (easyprivacy.txt: 4448) +.wwwstats.info +# ||www-path.com^$third-party (easyprivacy.txt: 4447) +.www-path.com +# ||wunderloop.net^$third-party (easyprivacy.txt: 4446) +.wunderloop.net +# ||wundercounter.com^$third-party (easyprivacy.txt: 4445) +.wundercounter.com +# ||wtstats.com^$third-party (easyprivacy.txt: 4444) +.wtstats.com +# ||wtp101.com^$third-party (easyprivacy.txt: 4443) +.wtp101.com +# ||wt-safetag.com^$third-party (easyprivacy.txt: 4442) +.wt-safetag.com +# ||wt-eu02.net^$third-party (easyprivacy.txt: 4441) +.wt-eu02.net +# ||wredint.com^$third-party (easyprivacy.txt: 4440) +.wredint.com +# ||wrating.com^$third-party (easyprivacy.txt: 4439) +.wrating.com +# ||wpdstat.com^$third-party (easyprivacy.txt: 4438) +.wpdstat.com +# ||wp-stats.com^$third-party (easyprivacy.txt: 4437) +.wp-stats.com +# ||wowanalytics.co.uk^$third-party (easyprivacy.txt: 4436) +.wowanalytics.co.uk +# ||worldlogger.com^$third-party (easyprivacy.txt: 4435) +.worldlogger.com +# ||worldgravity.com^$third-party (easyprivacy.txt: 4434) +.worldgravity.com +# ||woopra.com^$third-party (easyprivacy.txt: 4433) +.woopra.com +# ||woopra-ns.com^$third-party (easyprivacy.txt: 4432) +.woopra-ns.com +# ||wishloop.com^$third-party (easyprivacy.txt: 4431) +.wishloop.com +# ||wiredminds.de^$third-party (easyprivacy.txt: 4430) +.wiredminds.de +# ||wildxtraffic.com^$third-party (easyprivacy.txt: 4429) +.wildxtraffic.com +# ||wikiodeliv.com^$third-party (easyprivacy.txt: 4428) +.wikiodeliv.com +# ||wikia-beacon.com^$third-party (easyprivacy.txt: 4427) +.wikia-beacon.com +# ||whoson.com^$third-party (easyprivacy.txt: 4426) +.whoson.com +# ||whosclickingwho.com^$third-party (easyprivacy.txt: 4425) +.whosclickingwho.com +# ||whoisvisiting.com^$third-party (easyprivacy.txt: 4424) +.whoisvisiting.com +# ||whoisonline.net^$third-party (easyprivacy.txt: 4423) +.whoisonline.net +# ||whoaremyfriends.net^$third-party (easyprivacy.txt: 4422) +.whoaremyfriends.net +# ||whoaremyfriends.com^$third-party (easyprivacy.txt: 4421) +.whoaremyfriends.com +# ||whitepixel.com^$third-party (easyprivacy.txt: 4420) +.whitepixel.com +# ||whackedmedia.com^$third-party (easyprivacy.txt: 4419) +.whackedmedia.com +# ||weesh.co.uk^$third-party (easyprivacy.txt: 4418) +.weesh.co.uk +# ||webtuna.com^$third-party (easyprivacy.txt: 4417) +.webtuna.com +# ||webtrendslive.com^$third-party (easyprivacy.txt: 4416) +.webtrendslive.com +# ||webtrends.com^$third-party (easyprivacy.txt: 4415) +.webtrends.com +# ||webtrekk-asia.net^$third-party (easyprivacy.txt: 4414) +.webtrekk-asia.net +# ||webtraxs.com^$third-party (easyprivacy.txt: 4413) +.webtraxs.com +# ||webtraffiq.com^$third-party (easyprivacy.txt: 4412) +.webtraffiq.com +# ||webtrafficagents.com^$third-party (easyprivacy.txt: 4411) +.webtrafficagents.com +# ||webtraffic.se^$third-party (easyprivacy.txt: 4410) +.webtraffic.se +# ||webstats4u.com^$third-party (easyprivacy.txt: 4409) +.webstats4u.com +# ||webstats.com^$third-party (easyprivacy.txt: 4408) +.webstats.com +# ||webstat.se^$third-party (easyprivacy.txt: 4407) +.webstat.se +# ||webstat.net^$third-party (easyprivacy.txt: 4406) +.webstat.net +# ||webstat.com^$third-party (easyprivacy.txt: 4405) +.webstat.com +# ||webspectator.com^$third-party (easyprivacy.txt: 4404) +.webspectator.com +# ||websitewelcome.com^$third-party (easyprivacy.txt: 4403) +.websitewelcome.com +# ||websiteperform.com^$third-party (easyprivacy.txt: 4402) +.websiteperform.com +# ||websiteonlinecounter.com^$third-party (easyprivacy.txt: 4401) +.websiteonlinecounter.com +# ||websiteceo.com^$third-party (easyprivacy.txt: 4400) +.websiteceo.com +# ||website-hit-counters.com^$third-party (easyprivacy.txt: 4399) +.website-hit-counters.com +# ||webmasterplan.com^$third-party (easyprivacy.txt: 4398) +.webmasterplan.com +# ||weblytics.io^$third-party (easyprivacy.txt: 4397) +.weblytics.io +# ||webleads-tracker.com^$third-party (easyprivacy.txt: 4396) +.webleads-tracker.com +# ||webiqonline.com^$third-party (easyprivacy.txt: 4395) +.webiqonline.com +# ||webglstats.com^$third-party (easyprivacy.txt: 4394) +.webglstats.com +# ||webforensics.co.uk^$third-party (easyprivacy.txt: 4393) +.webforensics.co.uk +# ||webflowmetrics.com^$third-party (easyprivacy.txt: 4392) +.webflowmetrics.com +# ||webcounter.ws^$third-party (easyprivacy.txt: 4391) +.webcounter.ws +# ||webcounter.co.za^$third-party (easyprivacy.txt: 4390) +.webcounter.co.za +# ||webclicktracker.com^$third-party (easyprivacy.txt: 4389) +.webclicktracker.com +# ||webalytics.pw^$third-party (easyprivacy.txt: 4388) +.webalytics.pw +# ||web-stat.net^$third-party (easyprivacy.txt: 4387) +.web-stat.net +# ||web-stat.com^$third-party (easyprivacy.txt: 4386) +.web-stat.com +# ||web-counter.net^$third-party (easyprivacy.txt: 4385) +.web-counter.net +# ||web-boosting.net^$third-party (easyprivacy.txt: 4384) +.web-boosting.net +# ||waudit.cz^$third-party (easyprivacy.txt: 4383) +.waudit.cz +# ||waplog.net^$third-party (easyprivacy.txt: 4382) +.waplog.net +# ||w55c.net^$third-party (easyprivacy.txt: 4381) +.w55c.net +# ||w3counter.com^$third-party (easyprivacy.txt: 4380) +.w3counter.com +# ||vtracker.net^$third-party (easyprivacy.txt: 4379) +.vtracker.net +# ||vstats.co^$third-party (easyprivacy.txt: 4378) +.vstats.co +# ||votistics.com^$third-party (easyprivacy.txt: 4377) +.votistics.com +# ||voodooalerts.com^$third-party (easyprivacy.txt: 4376) +.voodooalerts.com +# ||voicefive.com^$third-party (easyprivacy.txt: 4375) +.voicefive.com +# ||vmtrk.com^$third-party (easyprivacy.txt: 4374) +.vmtrk.com +# ||vmmpxl.com^$third-party (easyprivacy.txt: 4373) +.vmmpxl.com +# ||vmm-satellite2.com^$third-party (easyprivacy.txt: 4372) +.vmm-satellite2.com +# ||vmm-satellite1.com^$third-party (easyprivacy.txt: 4371) +.vmm-satellite1.com +# ||vizury.com^$third-party (easyprivacy.txt: 4370) +.vizury.com +# ||vizisense.net^$third-party (easyprivacy.txt: 4369) +.vizisense.net +# ||vivocha.com^$third-party (easyprivacy.txt: 4368) +.vivocha.com +# ||visualwebsiteoptimizer.com^$third-party (easyprivacy.txt: 4367) +.visualwebsiteoptimizer.com +# ||visualrevenue.com^$third-party (easyprivacy.txt: 4366) +.visualrevenue.com +# ||visualdna.com^$third-party (easyprivacy.txt: 4365) +.visualdna.com +# ||visualdna-stats.com^$third-party (easyprivacy.txt: 4364) +.visualdna-stats.com +# ||visitstreamer.com^$third-party (easyprivacy.txt: 4363) +.visitstreamer.com +# ||visitorville.com^$third-party (easyprivacy.txt: 4362) +.visitorville.com +# ||visitortracklog.com^$third-party (easyprivacy.txt: 4361) +.visitortracklog.com +# ||visitorprofiler.com^$third-party (easyprivacy.txt: 4360) +.visitorprofiler.com +# ||visitorpath.com^$third-party (easyprivacy.txt: 4359) +.visitorpath.com +# ||visitorjs.com^$third-party (easyprivacy.txt: 4358) +.visitorjs.com +# ||visitorinspector.com^$third-party (easyprivacy.txt: 4357) +.visitorinspector.com +# ||visitorglobe.com^$third-party (easyprivacy.txt: 4356) +.visitorglobe.com +# ||visitor-track.com^$third-party (easyprivacy.txt: 4355) +.visitor-track.com +# ||visitlog.net^$third-party (easyprivacy.txt: 4354) +.visitlog.net +# ||visistat.com^$third-party (easyprivacy.txt: 4353) +.visistat.com +# ||visioncriticalpanels.com^$third-party (easyprivacy.txt: 4352) +.visioncriticalpanels.com +# ||visibli.com^$third-party (easyprivacy.txt: 4351) +.visibli.com +# ||visiblemeasures.com/swf/as3/as3sohandler.swf$object-subrequest,third-party (easyprivacy.txt: 4350) +.visiblemeasures.com/swf/as3/as3sohandler\.swf +# ||visiblemeasures.com/swf/*/vmcdmplugin.swf?key*pixel$object-subrequest (easyprivacy.txt: 4349) +.visiblemeasures.com/swf/.*/vmcdmplugin\.swf\?key.*pixel +# ||visiblemeasures.com/log?$object-subrequest,third-party (easyprivacy.txt: 4348) +.visiblemeasures.com/log\? +# ||visibility-stats.com^$third-party (easyprivacy.txt: 4347) +.visibility-stats.com +# ||virtualnet.co.uk^$third-party (easyprivacy.txt: 4346) +.virtualnet.co.uk +# ||virool.com^$third-party (easyprivacy.txt: 4345) +.virool.com +# ||viralninjas.com^$third-party (easyprivacy.txt: 4344) +.viralninjas.com +# ||vinlens.com^$third-party (easyprivacy.txt: 4343) +.vinlens.com +# ||vigo.ru^$third-party (easyprivacy.txt: 4342) +.vigo.ru +# ||videostat.com^$third-party (easyprivacy.txt: 4341) +.videostat.com +# ||vertster.com^$third-party (easyprivacy.txt: 4340) +.vertster.com +# ||verticalsearchworks.com^$third-party (easyprivacy.txt: 4339) +.verticalsearchworks.com +# ||verticalscope.com^$third-party (easyprivacy.txt: 4338) +.verticalscope.com +# ||vertical-leap.net^$third-party (easyprivacy.txt: 4337) +.vertical-leap.net +# ||vertical-leap.co.uk^$third-party (easyprivacy.txt: 4336) +.vertical-leap.co.uk +# ||ventivmedia.com^$third-party (easyprivacy.txt: 4335) +.ventivmedia.com +# ||vendri.io^$third-party (easyprivacy.txt: 4334) +.vendri.io +# ||velaro.com^$third-party (easyprivacy.txt: 4333) +.velaro.com +# ||veinteractive.com^$third-party (easyprivacy.txt: 4332) +.veinteractive.com +# ||veduy.com^$third-party (easyprivacy.txt: 4331) +.veduy.com +# ||vdna-assets.com^$third-party (easyprivacy.txt: 4330) +.vdna-assets.com +# ||vbanalytics.com^$third-party (easyprivacy.txt: 4329) +.vbanalytics.com +# ||vantage-media.net^$third-party (easyprivacy.txt: 4328) +.vantage-media.net +# ||valuedopinions.co.uk^$third-party (easyprivacy.txt: 4327) +.valuedopinions.co.uk +# ||usuarios-online.com^$third-party (easyprivacy.txt: 4326) +.usuarios-online.com +# ||userzoom.com^$third-party (easyprivacy.txt: 4325) +.userzoom.com +# ||userreport.com^$third-party (easyprivacy.txt: 4324) +.userreport.com +# ||useronlinecounter.com^$third-party (easyprivacy.txt: 4323) +.useronlinecounter.com +# ||userneeds.dk^$third-party (easyprivacy.txt: 4322) +.userneeds.dk +# ||userlook.com^$third-party (easyprivacy.txt: 4321) +.userlook.com +# ||userdmp.com^$third-party (easyprivacy.txt: 4320) +.userdmp.com +# ||usercycle.com^$third-party (easyprivacy.txt: 4319) +.usercycle.com +# ||userchecker.info^$third-party (easyprivacy.txt: 4318) +.userchecker.info +# ||usabilla.com^$third-party (easyprivacy.txt: 4317) +.usabilla.com +# ||usabilitytools.com^$third-party (easyprivacy.txt: 4316) +.usabilitytools.com +# ||urlself.com^$third-party (easyprivacy.txt: 4315) +.urlself.com +# ||urlbrief.com^$third-party (easyprivacy.txt: 4314) +.urlbrief.com +# ||uralweb.ru^$third-party (easyprivacy.txt: 4313) +.uralweb.ru +# ||uptracs.com^$third-party (easyprivacy.txt: 4312) +.uptracs.com +# ||uptimeviewer.com^$third-party (easyprivacy.txt: 4311) +.uptimeviewer.com +# ||upstats.ru^$third-party (easyprivacy.txt: 4310) +.upstats.ru +# ||unicaondemand.com^$third-party (easyprivacy.txt: 4309) +.unicaondemand.com +# ||umbel.com^$third-party (easyprivacy.txt: 4308) +.umbel.com +# ||ukrre-tea.info^$third-party (easyprivacy.txt: 4307) +.ukrre-tea.info +# ||ugdturner.com^$third-party (easyprivacy.txt: 4306) +.ugdturner.com +# ||ubertracking.info^$third-party (easyprivacy.txt: 4305) +.ubertracking.info +# ||ubertags.com^$third-party (easyprivacy.txt: 4304) +.ubertags.com +# ||uadx.com^$third-party (easyprivacy.txt: 4303) +.uadx.com +# ||u5e.com^$third-party (easyprivacy.txt: 4302) +.u5e.com +# ||tynt.com^$third-party (easyprivacy.txt: 4301) +.tynt.com +# ||tylere.net^$third-party (easyprivacy.txt: 4300) +.tylere.net +# ||twopointo.io^$third-party (easyprivacy.txt: 4299) +.twopointo.io +# ||twcount.com^$third-party (easyprivacy.txt: 4298) +.twcount.com +# ||tubetrafficcash.com^$third-party (easyprivacy.txt: 4297) +.tubetrafficcash.com +# ||tsw0.com^$third-party (easyprivacy.txt: 4296) +.tsw0.com +# ||tstlabs.co.uk^$third-party (easyprivacy.txt: 4295) +.tstlabs.co.uk +# ||tsk5.com^$third-party (easyprivacy.txt: 4294) +.tsk5.com +# ||tsk4.com^$third-party (easyprivacy.txt: 4293) +.tsk4.com +# ||tscounter.com^$third-party (easyprivacy.txt: 4292) +.tscounter.com +# ||tscapeplay.com^$third-party (easyprivacy.txt: 4291) +.tscapeplay.com +# ||truehits1.gits.net.th^$third-party (easyprivacy.txt: 4290) +.truehits1.gits.net.th +# ||truehits.in.th^$third-party (easyprivacy.txt: 4289) +.truehits.in.th +# ||tru.am^$third-party (easyprivacy.txt: 4288) +.tru.am +# ||trovus.co.uk^$third-party (easyprivacy.txt: 4287) +.trovus.co.uk +# ||trkjmp.com^$third-party (easyprivacy.txt: 4286) +.trkjmp.com +# ||triggit.com^$third-party (easyprivacy.txt: 4285) +.triggit.com +# ||triggertag.gorillanation.com^$third-party (easyprivacy.txt: 4284) +.triggertag.gorillanation.com +# ||triggeredmessaging.com^$third-party (easyprivacy.txt: 4283) +.triggeredmessaging.com +# ||trendcounter.com^$third-party (easyprivacy.txt: 4282) +.trendcounter.com +# ||trekmedia.net^$third-party (easyprivacy.txt: 4281) +.trekmedia.net +# ||treehousei.com^$third-party (easyprivacy.txt: 4280) +.treehousei.com +# ||trakzor.com^$third-party (easyprivacy.txt: 4279) +.trakzor.com +# ||trakken.de^$third-party (easyprivacy.txt: 4278) +.trakken.de +# ||trailheadapp.com^$third-party (easyprivacy.txt: 4277) +.trailheadapp.com +# ||trail-web.com^$third-party (easyprivacy.txt: 4276) +.trail-web.com +# ||trafinfo.info^$third-party (easyprivacy.txt: 4275) +.trafinfo.info +# ||traffikcntr.com^$third-party (easyprivacy.txt: 4274) +.traffikcntr.com +# ||trafficregenerator.com^$third-party (easyprivacy.txt: 4273) +.trafficregenerator.com +# ||trafficjoint.com^$third-party (easyprivacy.txt: 4272) +.trafficjoint.com +# ||trafficfacts.com^$third-party (easyprivacy.txt: 4271) +.trafficfacts.com +# ||trafficengine.net^$third-party (easyprivacy.txt: 4270) +.trafficengine.net +# ||trafficby.net^$third-party (easyprivacy.txt: 4269) +.trafficby.net +# ||trafex.net^$third-party (easyprivacy.txt: 4268) +.trafex.net +# ||tradescape.biz^$third-party (easyprivacy.txt: 4267) +.tradescape.biz +# ||tradelab.fr^$third-party (easyprivacy.txt: 4266) +.tradelab.fr +# ||tradedoubler.com^$third-party (easyprivacy.txt: 4265) +.tradedoubler.com +# ||trackyourstats.com^$third-party (easyprivacy.txt: 4264) +.trackyourstats.com +# ||trackword.biz^$third-party (easyprivacy.txt: 4263) +.trackword.biz +# ||trackvoluum.com^$third-party (easyprivacy.txt: 4262) +.trackvoluum.com +# ||tracktrk.net^$third-party (easyprivacy.txt: 4261) +.tracktrk.net +# ||tracksy.com^$third-party (easyprivacy.txt: 4260) +.tracksy.com +# ||trackset.com^$third-party (easyprivacy.txt: 4259) +.trackset.com +# ||trackmyweb.net^$third-party (easyprivacy.txt: 4258) +.trackmyweb.net +# ||trackkas.com^$third-party (easyprivacy.txt: 4257) +.trackkas.com +# ||trackjs.com^$third-party (easyprivacy.txt: 4256) +.trackjs.com +# ||trackinglabs.com^$third-party (easyprivacy.txt: 4255) +.trackinglabs.com +# ||tracking202.com^$third-party (easyprivacy.txt: 4254) +.tracking202.com +# ||tracking100.com^$third-party (easyprivacy.txt: 4253) +.tracking100.com +# ||trackedweb.net^$third-party (easyprivacy.txt: 4252) +.trackedweb.net +# ||trackedlink.net^$third-party (easyprivacy.txt: 4251) +.trackedlink.net +# ||trackeame.com^$third-party (easyprivacy.txt: 4250) +.trackeame.com +# ||trackdiscovery.net^$third-party (easyprivacy.txt: 4249) +.trackdiscovery.net +# ||trackconsole.com^$third-party (easyprivacy.txt: 4248) +.trackconsole.com +# ||trackcmp.net^$third-party (easyprivacy.txt: 4247) +.trackcmp.net +# ||trackcdn.com^$third-party (easyprivacy.txt: 4246) +.trackcdn.com +# ||trackbar.info^$third-party (easyprivacy.txt: 4245) +.trackbar.info +# ||trackalyzer.com^$third-party (easyprivacy.txt: 4244) +.trackalyzer.com +# ||track2.me^$third-party (easyprivacy.txt: 4243) +.track2.me +# ||traceworks.com^$third-party (easyprivacy.txt: 4242) +.traceworks.com +# ||tracetracking.net^$third-party (easyprivacy.txt: 4241) +.tracetracking.net +# ||tracer.jp^$third-party (easyprivacy.txt: 4240) +.tracer.jp +# ||tracemyip.org^$third-party (easyprivacy.txt: 4239) +.tracemyip.org +# ||tracelytics.com^$third-party (easyprivacy.txt: 4238) +.tracelytics.com +# ||trace-2000.com^$third-party (easyprivacy.txt: 4237) +.trace-2000.com +# ||tracc.it^$third-party (easyprivacy.txt: 4236) +.tracc.it +# ||touchclarity.com^$third-party (easyprivacy.txt: 4235) +.touchclarity.com +# ||toro-tags.com^$third-party (easyprivacy.txt: 4234) +.toro-tags.com +# ||torbit.com^$third-party (easyprivacy.txt: 4233) +.torbit.com +# ||topofblogs.com^$third-party (easyprivacy.txt: 4232) +.topofblogs.com +# ||topmalaysia.com^$third-party (easyprivacy.txt: 4231) +.topmalaysia.com +# ||toplist.eu^$third-party (easyprivacy.txt: 4230) +.toplist.eu +# ||topdepo.com^$third-party (easyprivacy.txt: 4229) +.topdepo.com +# ||topblogging.com^$third-party (easyprivacy.txt: 4228) +.topblogging.com +# ||topblogarea.com^$third-party (easyprivacy.txt: 4227) +.topblogarea.com +# ||top100webshops.com^$third-party (easyprivacy.txt: 4226) +.top100webshops.com +# ||top100bloggers.com^$third-party (easyprivacy.txt: 4225) +.top100bloggers.com +# ||tns-cs.net^$third-party (easyprivacy.txt: 4224) +.tns-cs.net +# ||tns-counter.ru^$third-party (easyprivacy.txt: 4223) +.tns-counter.ru +# ||tmvtp.com^$third-party (easyprivacy.txt: 4222) +.tmvtp.com +# ||tmpjmp.com^$third-party (easyprivacy.txt: 4221) +.tmpjmp.com +# ||tm1-001.com^$third-party (easyprivacy.txt: 4220) +.tm1-001.com +# ||tl813.com^$third-party (easyprivacy.txt: 4219) +.tl813.com +# ||tiser.com.au^$third-party (easyprivacy.txt: 4218) +.tiser.com.au +# ||tinycounter.com^$third-party (easyprivacy.txt: 4217) +.tinycounter.com +# ||thespecialsearch.com^$third-party (easyprivacy.txt: 4216) +.thespecialsearch.com +# ||thesearchagency.net^$third-party (easyprivacy.txt: 4215) +.thesearchagency.net +# ||thermstats.com^$third-party (easyprivacy.txt: 4214) +.thermstats.com +# ||thefreehitcounter.com^$third-party (easyprivacy.txt: 4213) +.thefreehitcounter.com +# ||thecounter.com^$third-party (easyprivacy.txt: 4212) +.thecounter.com +# ||thebrighttag.com^$third-party (easyprivacy.txt: 4211) +.thebrighttag.com +# ||thebestlinks.com^$third-party (easyprivacy.txt: 4210) +.thebestlinks.com +# ||theadex.com^$third-party (easyprivacy.txt: 4209) +.theadex.com +# ||tetoolbox.com^$third-party (easyprivacy.txt: 4208) +.tetoolbox.com +# ||terabytemedia.com^$third-party (easyprivacy.txt: 4207) +.terabytemedia.com +# ||tentaculos.net^$third-party (easyprivacy.txt: 4206) +.tentaculos.net +# ||tendatta.com^$third-party (easyprivacy.txt: 4205) +.tendatta.com +# ||tellaparts.com^$third-party (easyprivacy.txt: 4204) +.tellaparts.com +# ||tellapart.com^$third-party (easyprivacy.txt: 4203) +.tellapart.com +# ||teljari.is^$third-party (easyprivacy.txt: 4202) +.teljari.is +# ||telize.com^$third-party (easyprivacy.txt: 4201) +.telize.com +# ||telemetrytaxonomy.net^$third-party (easyprivacy.txt: 4200) +.telemetrytaxonomy.net +# ||tealiumiq.com^$third-party (easyprivacy.txt: 4199) +.tealiumiq.com +# ||tdstats.com^$third-party (easyprivacy.txt: 4198) +.tdstats.com +# ||tctm.co^$third-party (easyprivacy.txt: 4197) +.tctm.co +# ||tcimg.com^$third-party (easyprivacy.txt: 4196) +.tcimg.com +# ||tcactivity.net^$third-party (easyprivacy.txt: 4195) +.tcactivity.net +# ||targetfuel.com^$third-party (easyprivacy.txt: 4194) +.targetfuel.com +# ||tapstream.com^$third-party (easyprivacy.txt: 4193) +.tapstream.com +# ||taps.io^$third-party (easyprivacy.txt: 4192) +.taps.io +# ||tapfiliate.com^$third-party (easyprivacy.txt: 4191) +.tapfiliate.com +# ||tagtray.com^$third-party (easyprivacy.txt: 4190) +.tagtray.com +# ||tagsrvcs.com^$third-party (easyprivacy.txt: 4189) +.tagsrvcs.com +# ||tagifydiageo.com^$third-party (easyprivacy.txt: 4188) +.tagifydiageo.com +# ||tagcommander.com^$third-party (easyprivacy.txt: 4187) +.tagcommander.com +# ||tag4arm.com^$third-party (easyprivacy.txt: 4186) +.tag4arm.com +# ||t-analytics.com^$third-party (easyprivacy.txt: 4185) +.t-analytics.com +# ||sysomos.com^$third-party (easyprivacy.txt: 4184) +.sysomos.com +# ||synthasite.net^$third-party (easyprivacy.txt: 4183) +.synthasite.net +# ||synergy-sync.com^$third-party (easyprivacy.txt: 4182) +.synergy-sync.com +# ||synergy-e.com^$third-party (easyprivacy.txt: 4181) +.synergy-e.com +# ||sxtracking.com^$third-party (easyprivacy.txt: 4180) +.sxtracking.com +# ||swoopgrid.com^$third-party (easyprivacy.txt: 4179) +.swoopgrid.com +# ||swiss-counter.com^$third-party (easyprivacy.txt: 4178) +.swiss-counter.com +# ||swfstats.com^$third-party (easyprivacy.txt: 4177) +.swfstats.com +# ||swcs.jp^$third-party (easyprivacy.txt: 4176) +.swcs.jp +# ||survicate.com^$third-party (easyprivacy.txt: 4175) +.survicate.com +# ||surveywriter.com^$third-party (easyprivacy.txt: 4174) +.surveywriter.com +# ||surveyscout.com^$third-party (easyprivacy.txt: 4173) +.surveyscout.com +# ||surfertracker.com^$third-party (easyprivacy.txt: 4172) +.surfertracker.com +# ||surfcounters.com^$third-party (easyprivacy.txt: 4171) +.surfcounters.com +# ||supert.ag^$third-party (easyprivacy.txt: 4170) +.supert.ag +# ||superstats.com^$third-party (easyprivacy.txt: 4169) +.superstats.com +# ||supercounters.com^$third-party (easyprivacy.txt: 4168) +.supercounters.com +# ||sundaysky.com^$third-party (easyprivacy.txt: 4167) +.sundaysky.com +# ||summitemarketinganalytics.com^$third-party (easyprivacy.txt: 4166) +.summitemarketinganalytics.com +# ||subtraxion.com^$third-party (easyprivacy.txt: 4165) +.subtraxion.com +# ||submitnet.net^$third-party (easyprivacy.txt: 4164) +.submitnet.net +# ||sub2tech.com^$third-party (easyprivacy.txt: 4163) +.sub2tech.com +# ||strs.jp^$third-party (easyprivacy.txt: 4162) +.strs.jp +# ||stormiq.com^$third-party (easyprivacy.txt: 4161) +.stormiq.com +# ||stormcontainertag.com^$third-party (easyprivacy.txt: 4160) +.stormcontainertag.com +# ||stippleit.com^$third-party (easyprivacy.txt: 4159) +.stippleit.com +# ||stellaservice.com^$third-party (easyprivacy.txt: 4158) +.stellaservice.com +# ||steelhousemedia.com^$third-party (easyprivacy.txt: 4157) +.steelhousemedia.com +# ||stcounter.com^$third-party (easyprivacy.txt: 4156) +.stcounter.com +# ||stcllctrs.com^$third-party (easyprivacy.txt: 4155) +.stcllctrs.com +# ||statuncore.com^$third-party (easyprivacy.txt: 4154) +.statuncore.com +# ||statun.com^$third-party (easyprivacy.txt: 4153) +.statun.com +# ||stattrax.com^$third-party (easyprivacy.txt: 4152) +.stattrax.com +# ||stattooz.com^$third-party (easyprivacy.txt: 4151) +.stattooz.com +# ||statswave.com^$third-party (easyprivacy.txt: 4150) +.statswave.com +# ||statssheet.com^$third-party (easyprivacy.txt: 4149) +.statssheet.com +# ||statsrely.com^$third-party (easyprivacy.txt: 4148) +.statsrely.com +# ||statsmachine.com^$third-party (easyprivacy.txt: 4147) +.statsmachine.com +# ||statsit.com^$third-party (easyprivacy.txt: 4146) +.statsit.com +# ||statsinsight.com^$third-party (easyprivacy.txt: 4145) +.statsinsight.com +# ||statsimg.com^$third-party (easyprivacy.txt: 4144) +.statsimg.com +# ||statsbox.nl^$third-party (easyprivacy.txt: 4143) +.statsbox.nl +# ||stats4you.com^$third-party (easyprivacy.txt: 4142) +.stats4you.com +# ||stats4all.com^$third-party (easyprivacy.txt: 4141) +.stats4all.com +# ||stats2513.com^$third-party (easyprivacy.txt: 4140) +.stats2513.com +# ||stats21.com^$third-party (easyprivacy.txt: 4139) +.stats21.com +# ||stats2.com^$third-party (easyprivacy.txt: 4138) +.stats2.com +# ||stats.cz^$third-party (easyprivacy.txt: 4137) +.stats.cz +# ||stats-analytics.info^$third-party (easyprivacy.txt: 4136) +.stats-analytics.info +# ||statowl.com^$third-party (easyprivacy.txt: 4135) +.statowl.com +# ||statistx.com^$third-party (easyprivacy.txt: 4134) +.statistx.com +# ||statistiche-web.com^$third-party (easyprivacy.txt: 4133) +.statistiche-web.com +# ||statisfy.net^$third-party (easyprivacy.txt: 4132) +.statisfy.net +# ||stathound.com^$third-party (easyprivacy.txt: 4131) +.stathound.com +# ||stathat.com^$third-party (easyprivacy.txt: 4130) +.stathat.com +# ||statcounters.info^$third-party (easyprivacy.txt: 4129) +.statcounters.info +# ||statcounterfree.com^$third-party (easyprivacy.txt: 4128) +.statcounterfree.com +# ||statcounter.com^$third-party (easyprivacy.txt: 4127) +.statcounter.com +# ||statcount.com^$third-party (easyprivacy.txt: 4126) +.statcount.com +# ||stat24.com^$third-party (easyprivacy.txt: 4125) +.stat24.com +# ||stat08.com^$third-party (easyprivacy.txt: 4124) +.stat08.com +# ||startstat.ru^$third-party (easyprivacy.txt: 4123) +.startstat.ru +# ||srpx.net^$third-party (easyprivacy.txt: 4122) +.srpx.net +# ||squidanalytics.com^$third-party (easyprivacy.txt: 4121) +.squidanalytics.com +# ||spywords.com^$third-party (easyprivacy.txt: 4120) +.spywords.com +# ||spylog.ru^$third-party (easyprivacy.txt: 4119) +.spylog.ru +# ||spylog.com^$third-party (easyprivacy.txt: 4118) +.spylog.com +# ||spycounter.net^$third-party (easyprivacy.txt: 4117) +.spycounter.net +# ||sptag3.com^$third-party (easyprivacy.txt: 4116) +.sptag3.com +# ||sptag2.com^$third-party (easyprivacy.txt: 4115) +.sptag2.com +# ||sptag1.com^$third-party (easyprivacy.txt: 4114) +.sptag1.com +# ||sptag.com^$third-party (easyprivacy.txt: 4113) +.sptag.com +# ||springserve.com^$third-party (easyprivacy.txt: 4112) +.springserve.com +# ||springmetrics.com^$third-party (easyprivacy.txt: 4111) +.springmetrics.com +# ||spring.de^$third-party (easyprivacy.txt: 4110) +.spring.de +# ||spotmx.com^$third-party (easyprivacy.txt: 4109) +.spotmx.com +# ||sponsored.com^$third-party (easyprivacy.txt: 4108) +.sponsored.com +# ||spn.ee^$third-party (easyprivacy.txt: 4107) +.spn.ee +# ||spn-twr-14.com^$third-party (easyprivacy.txt: 4106) +.spn-twr-14.com +# ||splyt.com^$third-party (easyprivacy.txt: 4105) +.splyt.com +# ||splurgi.com^$third-party (easyprivacy.txt: 4104) +.splurgi.com +# ||splittag.com^$third-party (easyprivacy.txt: 4103) +.splittag.com +# ||speed-trap.com^$third-party (easyprivacy.txt: 4102) +.speed-trap.com +# ||spectate.com^$third-party (easyprivacy.txt: 4101) +.spectate.com +# ||sophus3.com^$third-party (easyprivacy.txt: 4100) +.sophus3.com +# ||sometrics.com^$third-party (easyprivacy.txt: 4099) +.sometrics.com +# ||sokrati.com^$third-party (easyprivacy.txt: 4098) +.sokrati.com +# ||softonic-analytics.net^$third-party (easyprivacy.txt: 4097) +.softonic-analytics.net +# ||sodoit.com^$third-party (easyprivacy.txt: 4096) +.sodoit.com +# ||socketanalytics.com^$third-party (easyprivacy.txt: 4095) +.socketanalytics.com +# ||socialtrack.net^$third-party (easyprivacy.txt: 4094) +.socialtrack.net +# ||socialtrack.co^$third-party (easyprivacy.txt: 4093) +.socialtrack.co +# ||socialprofitmachine.com^$third-party (easyprivacy.txt: 4092) +.socialprofitmachine.com +# ||snowsignal.com^$third-party (easyprivacy.txt: 4091) +.snowsignal.com +# ||snoobi.com^$third-party (easyprivacy.txt: 4090) +.snoobi.com +# ||sniphub.com^$third-party (easyprivacy.txt: 4089) +.sniphub.com +# ||sniperlog.ru^$third-party (easyprivacy.txt: 4088) +.sniperlog.ru +# ||smrtlnks.com^$third-party (easyprivacy.txt: 4087) +.smrtlnks.com +# ||smileyhost.net^$third-party (easyprivacy.txt: 4086) +.smileyhost.net +# ||smfsvc.com^$third-party (easyprivacy.txt: 4085) +.smfsvc.com +# ||smartzonessva.com^$third-party (easyprivacy.txt: 4084) +.smartzonessva.com +# ||smartracker.net^$third-party (easyprivacy.txt: 4083) +.smartracker.net +# ||smarterremarketer.net^$third-party (easyprivacy.txt: 4082) +.smarterremarketer.net +# ||smarterhq.io^$third-party (easyprivacy.txt: 4081) +.smarterhq.io +# ||smart-ip.net^$third-party (easyprivacy.txt: 4080) +.smart-ip.net +# ||smallseotools.com^$third-party (easyprivacy.txt: 4079) +.smallseotools.com +# ||slingpic.com^$third-party (easyprivacy.txt: 4078) +.slingpic.com +# ||sl-ct5.com^$third-party (easyprivacy.txt: 4077) +.sl-ct5.com +# ||skyglue.com^$third-party (easyprivacy.txt: 4076) +.skyglue.com +# ||skimresources.com^$third-party (easyprivacy.txt: 4075) +.skimresources.com +# ||sitetraq.nl^$third-party (easyprivacy.txt: 4074) +.sitetraq.nl +# ||sitetracker.com^$third-party (easyprivacy.txt: 4073) +.sitetracker.com +# ||sitetagger.co.uk^$third-party (easyprivacy.txt: 4072) +.sitetagger.co.uk +# ||sitetag.us^$third-party (easyprivacy.txt: 4071) +.sitetag.us +# ||sitestat.com^$third-party (easyprivacy.txt: 4070) +.sitestat.com +# ||sitereport.org^$third-party (easyprivacy.txt: 4069) +.sitereport.org +# ||sitemeter.com^$third-party (easyprivacy.txt: 4068) +.sitemeter.com +# ||sitelinktrack.com^$third-party (easyprivacy.txt: 4067) +.sitelinktrack.com +# ||siteimprove.com^$third-party (easyprivacy.txt: 4066) +.siteimprove.com +# ||sitecompass.com^$third-party (easyprivacy.txt: 4065) +.sitecompass.com +# ||sitebro.tw^$third-party (easyprivacy.txt: 4064) +.sitebro.tw +# ||sitebro.net^$third-party (easyprivacy.txt: 4063) +.sitebro.net +# ||sitebro.com^$third-party (easyprivacy.txt: 4062) +.sitebro.com +# ||siteapps.com^$third-party (easyprivacy.txt: 4061) +.siteapps.com +# ||singlefeed.com^$third-party (easyprivacy.txt: 4060) +.singlefeed.com +# ||simplycast.us^$third-party (easyprivacy.txt: 4059) +.simplycast.us +# ||simpli.fi^$third-party (easyprivacy.txt: 4058) +.simpli.fi +# ||simplereach.com^$third-party (easyprivacy.txt: 4057) +.simplereach.com +# ||simplehitcounter.com^$third-party (easyprivacy.txt: 4056) +.simplehitcounter.com +# ||silverpush.co^$third-party (easyprivacy.txt: 4055) +.silverpush.co +# ||silverpop.com^$third-party (easyprivacy.txt: 4054) +.silverpop.com +# ||signup-way.com^$third-party (easyprivacy.txt: 4053) +.signup-way.com +# ||siftscience.com^$third-party (easyprivacy.txt: 4052) +.siftscience.com +# ||shrinktheweb.com^$third-party (easyprivacy.txt: 4051) +.shrinktheweb.com +# ||showroomlogic.com^$third-party (easyprivacy.txt: 4050) +.showroomlogic.com +# ||shippinginsights.com^$third-party (easyprivacy.txt: 4049) +.shippinginsights.com +# ||shinystat.com^$third-party (easyprivacy.txt: 4048) +.shinystat.com +# ||sharpspring.com^$third-party (easyprivacy.txt: 4047) +.sharpspring.com +# ||sf14g.com^$third-party (easyprivacy.txt: 4046) +.sf14g.com +# ||sexystat.com^$third-party (easyprivacy.txt: 4045) +.sexystat.com +# ||sexcounter.com^$third-party (easyprivacy.txt: 4044) +.sexcounter.com +# ||sessioncam.com^$third-party (easyprivacy.txt: 4043) +.sessioncam.com +# ||servustats.com^$third-party (easyprivacy.txt: 4042) +.servustats.com +# ||servinator.pw^$third-party (easyprivacy.txt: 4041) +.servinator.pw +# ||servestats.com^$third-party (easyprivacy.txt: 4040) +.servestats.com +# ||serious-partners.com^$third-party (easyprivacy.txt: 4039) +.serious-partners.com +# ||seoradar.ro^$third-party (easyprivacy.txt: 4038) +.seoradar.ro +# ||seoparts.net^$third-party (easyprivacy.txt: 4037) +.seoparts.net +# ||seomoz.org^$third-party (easyprivacy.txt: 4036) +.seomoz.org +# ||seomonitor.ro^$third-party (easyprivacy.txt: 4035) +.seomonitor.ro +# ||sendtraffic.com^$third-party (easyprivacy.txt: 4034) +.sendtraffic.com +# ||semasio.net^$third-party (easyprivacy.txt: 4033) +.semasio.net +# ||semanticverses.com^$third-party (easyprivacy.txt: 4032) +.semanticverses.com +# ||sellpoints.com^$third-party (easyprivacy.txt: 4031) +.sellpoints.com +# ||selaris.com^$third-party (easyprivacy.txt: 4030) +.selaris.com +# ||segmentify.com^$third-party (easyprivacy.txt: 4029) +.segmentify.com +# ||segment.io^$third-party (easyprivacy.txt: 4028) +.segment.io +# ||segment.com^$third-party (easyprivacy.txt: 4027) +.segment.com +# ||segment-analytics.com^$third-party (easyprivacy.txt: 4026) +.segment-analytics.com +# ||seewhy.com^$third-party (easyprivacy.txt: 4025) +.seewhy.com +# ||seehits.com^$third-party (easyprivacy.txt: 4024) +.seehits.com +# ||sedotracker.com^$third-party (easyprivacy.txt: 4023) +.sedotracker.com +# ||securepaths.com^$third-party (easyprivacy.txt: 4022) +.securepaths.com +# ||secure-pixel.com^$third-party (easyprivacy.txt: 4021) +.secure-pixel.com +# ||searchplow.com^$third-party (easyprivacy.txt: 4020) +.searchplow.com +# ||searchignite.com^$third-party (easyprivacy.txt: 4019) +.searchignite.com +# ||searchfeed.com^$third-party (easyprivacy.txt: 4018) +.searchfeed.com +# ||sddan.com^$third-party (easyprivacy.txt: 4017) +.sddan.com +# ||scriptshead.com^$third-party (easyprivacy.txt: 4016) +.scriptshead.com +# ||scripts21.com^$third-party (easyprivacy.txt: 4015) +.scripts21.com +# ||script.ag^$third-party (easyprivacy.txt: 4014) +.script.ag +# ||scrippscontroller.com^$third-party (easyprivacy.txt: 4013) +.scrippscontroller.com +# ||scoutanalytics.net^$third-party (easyprivacy.txt: 4012) +.scoutanalytics.net +# ||scorecardresearch.com^$third-party (easyprivacy.txt: 4011) +.scorecardresearch.com +# ||sciencerevenue.com^$third-party (easyprivacy.txt: 4010) +.sciencerevenue.com +# ||schoolyeargo.com^$third-party (easyprivacy.txt: 4009) +.schoolyeargo.com +# ||scastnet.com^$third-party (easyprivacy.txt: 4008) +.scastnet.com +# ||scarabresearch.com^$third-party (easyprivacy.txt: 4007) +.scarabresearch.com +# ||scaledb.com^$third-party (easyprivacy.txt: 4006) +.scaledb.com +# ||sbdtds.com^$third-party (easyprivacy.txt: 4005) +.sbdtds.com +# ||sayutracking.co.uk^$third-party (easyprivacy.txt: 4004) +.sayutracking.co.uk +# ||sas15k01.com^$third-party (easyprivacy.txt: 4003) +.sas15k01.com +# ||sarevtop.com^$third-party (easyprivacy.txt: 4002) +.sarevtop.com +# ||sapha.com^$third-party (easyprivacy.txt: 4001) +.sapha.com +# ||saletrack.co.uk^$third-party (easyprivacy.txt: 4000) +.saletrack.co.uk +# ||sajari.com^$third-party (easyprivacy.txt: 3999) +.sajari.com +# ||sageanalyst.net^$third-party (easyprivacy.txt: 3998) +.sageanalyst.net +# ||s3s-main.net^$third-party (easyprivacy.txt: 3997) +.s3s-main.net +# ||rztrkr.com^$third-party (easyprivacy.txt: 3996) +.rztrkr.com +# ||rumanalytics.com^$third-party (easyprivacy.txt: 3995) +.rumanalytics.com +# ||ru4.com^$third-party (easyprivacy.txt: 3994) +.ru4.com +# ||rtrk.co.nz^$third-party (easyprivacy.txt: 3993) +.rtrk.co.nz +# ||rtfn.net^$third-party (easyprivacy.txt: 3992) +.rtfn.net +# ||rsvpgenius.com^$third-party (easyprivacy.txt: 3991) +.rsvpgenius.com +# ||rs6.net^$third-party (easyprivacy.txt: 3990) +.rs6.net +# ||rs0.co.uk^$third-party (easyprivacy.txt: 3989) +.rs0.co.uk +# ||rrimpl.com^$third-party (easyprivacy.txt: 3988) +.rrimpl.com +# ||rollingcounters.com^$third-party (easyprivacy.txt: 3987) +.rollingcounters.com +# ||roivista.com^$third-party (easyprivacy.txt: 3986) +.roivista.com +# ||roitesting.com^$third-party (easyprivacy.txt: 3985) +.roitesting.com +# ||roispy.com^$third-party (easyprivacy.txt: 3984) +.roispy.com +# ||roiservice.com^$third-party (easyprivacy.txt: 3983) +.roiservice.com +# ||roia.biz^$third-party (easyprivacy.txt: 3982) +.roia.biz +# ||roi-rocket.net^$third-party (easyprivacy.txt: 3981) +.roi-rocket.net +# ||roi-pro.com^$third-party (easyprivacy.txt: 3980) +.roi-pro.com +# ||rnlabs.com^$third-party (easyprivacy.txt: 3979) +.rnlabs.com +# ||rng-snp-003.com^$third-party (easyprivacy.txt: 3978) +.rng-snp-003.com +# ||rnengage.com^$third-party (easyprivacy.txt: 3977) +.rnengage.com +# ||rmtag.com^$third-party (easyprivacy.txt: 3976) +.rmtag.com +# ||rlcdn.com^$third-party (easyprivacy.txt: 3975) +.rlcdn.com +# ||rktu.com^$third-party (easyprivacy.txt: 3974) +.rktu.com +# ||rkdms.com^$third-party (easyprivacy.txt: 3973) +.rkdms.com +# ||ritecounter.com^$third-party (easyprivacy.txt: 3972) +.ritecounter.com +# ||richmetrics.com^$third-party (easyprivacy.txt: 3971) +.richmetrics.com +# ||richard-group.com^$third-party (easyprivacy.txt: 3970) +.richard-group.com +# ||riastats.com^$third-party (easyprivacy.txt: 3969) +.riastats.com +# ||rhinoseo.com^$third-party (easyprivacy.txt: 3968) +.rhinoseo.com +# ||rfihub.com^$third-party (easyprivacy.txt: 3967) +.rfihub.com +# ||reztrack.com^$third-party (easyprivacy.txt: 3966) +.reztrack.com +# ||rewardtv.com^$third-party (easyprivacy.txt: 3965) +.rewardtv.com +# ||revsw.net^$third-party (easyprivacy.txt: 3964) +.revsw.net +# ||revolvermaps.com^$third-party (easyprivacy.txt: 3963) +.revolvermaps.com +# ||revenuewire.net^$third-party (easyprivacy.txt: 3962) +.revenuewire.net +# ||revenuescience.com^$third-party (easyprivacy.txt: 3961) +.revenuescience.com +# ||revenuepilot.com^$third-party (easyprivacy.txt: 3960) +.revenuepilot.com +# ||revdn.net^$third-party (easyprivacy.txt: 3959) +.revdn.net +# ||retags.us^$third-party (easyprivacy.txt: 3958) +.retags.us +# ||responsetap.com^$third-party (easyprivacy.txt: 3957) +.responsetap.com +# ||reson8.com^$third-party (easyprivacy.txt: 3956) +.reson8.com +# ||researchnow.co.uk^$third-party (easyprivacy.txt: 3955) +.researchnow.co.uk +# ||research-tool.com^$third-party (easyprivacy.txt: 3954) +.research-tool.com +# ||res-x.com^$third-party (easyprivacy.txt: 3953) +.res-x.com +# ||remarketstats.com^$third-party (easyprivacy.txt: 3952) +.remarketstats.com +# ||relmaxtop.com^$third-party (easyprivacy.txt: 3951) +.relmaxtop.com +# ||reliablecounter.com^$third-party (easyprivacy.txt: 3950) +.reliablecounter.com +# ||relead.com^$third-party (easyprivacy.txt: 3949) +.relead.com +# ||reinvigorate.net^$third-party (easyprivacy.txt: 3948) +.reinvigorate.net +# ||refersion.com^$third-party (easyprivacy.txt: 3947) +.refersion.com +# ||referrer.org^$third-party (easyprivacy.txt: 3946) +.referrer.org +# ||referlytics.com^$third-party (easyprivacy.txt: 3945) +.referlytics.com +# ||referforex.com^$third-party (easyprivacy.txt: 3944) +.referforex.com +# ||referer.org^$third-party (easyprivacy.txt: 3943) +.referer.org +# ||reedge.com^$third-party (easyprivacy.txt: 3942) +.reedge.com +# ||reedbusiness.net^$third-party (easyprivacy.txt: 3941) +.reedbusiness.net +# ||redstatcounter.com^$third-party (easyprivacy.txt: 3940) +.redstatcounter.com +# ||redcounter.net^$third-party (easyprivacy.txt: 3939) +.redcounter.net +# ||recoset.com^$third-party (easyprivacy.txt: 3938) +.recoset.com +# ||realtracker.com^$third-party (easyprivacy.txt: 3937) +.realtracker.com +# ||realtimewebstats.net^$third-party (easyprivacy.txt: 3936) +.realtimewebstats.net +# ||realtimeplease.com^$third-party (easyprivacy.txt: 3935) +.realtimeplease.com +# ||realcounters.com^$third-party (easyprivacy.txt: 3934) +.realcounters.com +# ||realcounter.eu^$third-party (easyprivacy.txt: 3933) +.realcounter.eu +# ||real5traf.ru^$third-party (easyprivacy.txt: 3932) +.real5traf.ru +# ||readnotify.com^$third-party (easyprivacy.txt: 3931) +.readnotify.com +# ||readertracking.com^$third-party (easyprivacy.txt: 3930) +.readertracking.com +# ||reactful.com^$third-party (easyprivacy.txt: 3929) +.reactful.com +# ||reachsocket.com^$third-party (easyprivacy.txt: 3928) +.reachsocket.com +# ||reachforce.com^$third-party (easyprivacy.txt: 3927) +.reachforce.com +# ||rating.in^$third-party (easyprivacy.txt: 3926) +.rating.in +# ||rapidtrk.net^$third-party (easyprivacy.txt: 3925) +.rapidtrk.net +# ||rapidstats.net^$third-party (easyprivacy.txt: 3924) +.rapidstats.net +# ||rapidcounter.com^$third-party (easyprivacy.txt: 3923) +.rapidcounter.com +# ||rankinteractive.com^$third-party (easyprivacy.txt: 3922) +.rankinteractive.com +# ||rankingpartner.com^$third-party (easyprivacy.txt: 3921) +.rankingpartner.com +# ||rank-hits.com^$third-party (easyprivacy.txt: 3920) +.rank-hits.com +# ||rampmetrics.com^$third-party (easyprivacy.txt: 3919) +.rampmetrics.com +# ||radiomanlibya.com^$third-party (easyprivacy.txt: 3918) +.radiomanlibya.com +# ||radarurl.com^$third-party (easyprivacy.txt: 3917) +.radarurl.com +# ||radarstats.com^$third-party (easyprivacy.txt: 3916) +.radarstats.com +# ||r7ls.net^$third-party (easyprivacy.txt: 3915) +.r7ls.net +# ||qzlog.com^$third-party (easyprivacy.txt: 3914) +.qzlog.com +# ||quintelligence.com^$third-party (easyprivacy.txt: 3913) +.quintelligence.com +# ||quillion.com^$third-party (easyprivacy.txt: 3912) +.quillion.com +# ||questradeaffiliates.com^$third-party (easyprivacy.txt: 3911) +.questradeaffiliates.com +# ||questionpro.com^$third-party (easyprivacy.txt: 3910) +.questionpro.com +# ||qubitproducts.com^$third-party (easyprivacy.txt: 3909) +.qubitproducts.com +# ||quantserve.com^*^a=$object-subrequest,third-party (easyprivacy.txt: 3908) +.quantserve.com/.*[^\w%.-]a= +# ||quantserve.com^*.swf?$object-subrequest,third-party (easyprivacy.txt: 3907) +.quantserve.com/.*\.swf\? +# ||quantserve.com^$~object-subrequest,third-party (easyprivacy.txt: 3906) +.quantserve.com +# ||quantserve.com/pixel/$object-subrequest,third-party (easyprivacy.txt: 3905) +.quantserve.com/pixel/ +# ||quantserve.com/api/ (easyprivacy.txt: 3904) +.quantserve.com/api/ +# ||qsstats.com^$third-party (easyprivacy.txt: 3903) +.qsstats.com +# ||qoijertneio.com^$third-party (easyprivacy.txt: 3902) +.qoijertneio.com +# ||qdtracking.com^$third-party (easyprivacy.txt: 3901) +.qdtracking.com +# ||qbop.com^$third-party (easyprivacy.txt: 3900) +.qbop.com +# ||qbaka.net^$third-party (easyprivacy.txt: 3899) +.qbaka.net +# ||q-stats.nl^$third-party (easyprivacy.txt: 3898) +.q-stats.nl +# ||q-counter.com^$third-party (easyprivacy.txt: 3897) +.q-counter.com +# ||pzkysq.pink^$third-party (easyprivacy.txt: 3896) +.pzkysq.pink +# ||putags.com^$third-party (easyprivacy.txt: 3895) +.putags.com +# ||purevideo.com^$third-party (easyprivacy.txt: 3894) +.purevideo.com +# ||pureairhits.com^$third-party (easyprivacy.txt: 3893) +.pureairhits.com +# ||pulsemaps.com^$third-party (easyprivacy.txt: 3892) +.pulsemaps.com +# ||pulselog.com^$third-party (easyprivacy.txt: 3891) +.pulselog.com +# ||pulleymarketing.com^$third-party (easyprivacy.txt: 3890) +.pulleymarketing.com +# ||publishflow.com^$third-party (easyprivacy.txt: 3889) +.publishflow.com +# ||ptrk-wn.com^$third-party (easyprivacy.txt: 3888) +.ptrk-wn.com +# ||ptp123.com^$third-party (easyprivacy.txt: 3887) +.ptp123.com +# ||pto-slb-09.com^$third-party (easyprivacy.txt: 3886) +.pto-slb-09.com +# ||ptengine.com^$third-party (easyprivacy.txt: 3885) +.ptengine.com +# ||psyma-statistics.com^$third-party (easyprivacy.txt: 3884) +.psyma-statistics.com +# ||pstats.com^$third-party (easyprivacy.txt: 3883) +.pstats.com +# ||prtracker.com^$third-party (easyprivacy.txt: 3882) +.prtracker.com +# ||proxad.net^$third-party (easyprivacy.txt: 3881) +.proxad.net +# ||provenpixel.com^$third-party (easyprivacy.txt: 3880) +.provenpixel.com +# ||proofpositivemedia.com^$third-party (easyprivacy.txt: 3879) +.proofpositivemedia.com +# ||promotionengine.com^$third-party (easyprivacy.txt: 3878) +.promotionengine.com +# ||projectsunblock.com^$third-party (easyprivacy.txt: 3877) +.projectsunblock.com +# ||projecthaile.com^$third-party (easyprivacy.txt: 3876) +.projecthaile.com +# ||profilesnitch.com^$third-party (easyprivacy.txt: 3875) +.profilesnitch.com +# ||profilertracking3.com^$third-party (easyprivacy.txt: 3874) +.profilertracking3.com +# ||proclivitysystems.com^$third-party (easyprivacy.txt: 3873) +.proclivitysystems.com +# ||prnx.net^$third-party (easyprivacy.txt: 3872) +.prnx.net +# ||primetag.net^$third-party (easyprivacy.txt: 3871) +.primetag.net +# ||prfct.co^$third-party (easyprivacy.txt: 3870) +.prfct.co +# ||predictiveresponse.net^$third-party (easyprivacy.txt: 3869) +.predictiveresponse.net +# ||predictivedna.com^$third-party (easyprivacy.txt: 3868) +.predictivedna.com +# ||predicta.net^$third-party (easyprivacy.txt: 3867) +.predicta.net +# ||precisioncounter.com^$third-party (easyprivacy.txt: 3866) +.precisioncounter.com +# ||prchecker.info^$third-party (easyprivacy.txt: 3865) +.prchecker.info +# ||ppctracking.net^$third-party (easyprivacy.txt: 3864) +.ppctracking.net +# ||ppclocation.biz^$third-party (easyprivacy.txt: 3863) +.ppclocation.biz +# ||postclickmarketing.com^$third-party (easyprivacy.txt: 3862) +.postclickmarketing.com +# ||postaffiliatepro.com^$third-party (easyprivacy.txt: 3861) +.postaffiliatepro.com +# ||posst.co^$third-party (easyprivacy.txt: 3860) +.posst.co +# ||porngraph.com^$third-party (easyprivacy.txt: 3859) +.porngraph.com +# ||populr.me^$third-party (easyprivacy.txt: 3858) +.populr.me +# ||popsample.com^$third-party (easyprivacy.txt: 3857) +.popsample.com +# ||polarmobile.com^$third-party (easyprivacy.txt: 3856) +.polarmobile.com +# ||pointomatic.com^$third-party (easyprivacy.txt: 3855) +.pointomatic.com +# ||pm14.com^$third-party (easyprivacy.txt: 3854) +.pm14.com +# ||pm0.net^$third-party (easyprivacy.txt: 3853) +.pm0.net +# ||plwosvr.net^$third-party (easyprivacy.txt: 3852) +.plwosvr.net +# ||plugin.ws^$third-party (easyprivacy.txt: 3851) +.plugin.ws +# ||plexop.com^$third-party (easyprivacy.txt: 3850) +.plexop.com +# ||pleisty.com^$third-party (easyprivacy.txt: 3849) +.pleisty.com +# ||plecki.com^$third-party (easyprivacy.txt: 3848) +.plecki.com +# ||placemypixel.com^$third-party (easyprivacy.txt: 3847) +.placemypixel.com +# ||pixelsnippet.com^$third-party (easyprivacy.txt: 3846) +.pixelsnippet.com +# ||pixelrevenue.com^$third-party (easyprivacy.txt: 3845) +.pixelrevenue.com +# ||pixelinteractivemedia.com^$third-party (easyprivacy.txt: 3844) +.pixelinteractivemedia.com +# ||pixeleze.com^$third-party (easyprivacy.txt: 3843) +.pixeleze.com +# ||pixel.watch^$third-party (easyprivacy.txt: 3842) +.pixel.watch +# ||pixel.parsely.com^$third-party (easyprivacy.txt: 3841) +.pixel.parsely.com +# ||pixel.ad^$third-party (easyprivacy.txt: 3840) +.pixel.ad +# ||pingomatic.com^$third-party (easyprivacy.txt: 3839) +.pingomatic.com +# ||pingil.com^$third-party (easyprivacy.txt: 3838) +.pingil.com +# ||pingdom.net^$third-party (easyprivacy.txt: 3837) +.pingdom.net +# ||pingagenow.com^$third-party (easyprivacy.txt: 3836) +.pingagenow.com +# ||ping-fast.com^$third-party (easyprivacy.txt: 3835) +.ping-fast.com +# ||pikzor.com^$third-party (easyprivacy.txt: 3834) +.pikzor.com +# ||pickzor.com^$third-party (easyprivacy.txt: 3833) +.pickzor.com +# ||phone-analytics.com^$third-party (easyprivacy.txt: 3832) +.phone-analytics.com +# ||phonalytics.com^$third-party (easyprivacy.txt: 3831) +.phonalytics.com +# ||petametrics.com^$third-party (easyprivacy.txt: 3830) +.petametrics.com +# ||personyze.com^$third-party (easyprivacy.txt: 3829) +.personyze.com +# ||perion.com^$third-party (easyprivacy.txt: 3828) +.perion.com +# ||performtracking.com^$third-party (easyprivacy.txt: 3827) +.performtracking.com +# ||performancerevenues.com^$third-party (easyprivacy.txt: 3826) +.performancerevenues.com +# ||perfiliate.com^$third-party (easyprivacy.txt: 3825) +.perfiliate.com +# ||perfectaudience.com^$third-party (easyprivacy.txt: 3824) +.perfectaudience.com +# ||perfdrive.com^$third-party (easyprivacy.txt: 3823) +.perfdrive.com +# ||percentmobile.com^$third-party (easyprivacy.txt: 3822) +.percentmobile.com +# ||peerius.com^$third-party (easyprivacy.txt: 3821) +.peerius.com +# ||pcspeedup.com^$third-party (easyprivacy.txt: 3820) +.pcspeedup.com +# ||pclicks.com^$third-party (easyprivacy.txt: 3819) +.pclicks.com +# ||pathful.com^$third-party (easyprivacy.txt: 3818) +.pathful.com +# ||pass-1234.com^$third-party (easyprivacy.txt: 3817) +.pass-1234.com +# ||parrable.com^$third-party (easyprivacy.txt: 3816) +.parrable.com +# ||parklogic.com^$third-party (easyprivacy.txt: 3815) +.parklogic.com +# ||pardot.com^$third-party (easyprivacy.txt: 3814) +.pardot.com +# ||paidstats.com^$third-party (easyprivacy.txt: 3813) +.paidstats.com +# ||pages05.net^$third-party (easyprivacy.txt: 3812) +.pages05.net +# ||pagefair.com^$third-party (easyprivacy.txt: 3811) +.pagefair.com +# ||pa-oa.com^$third-party (easyprivacy.txt: 3810) +.pa-oa.com +# ||p0.raasnet.com^$third-party (easyprivacy.txt: 3809) +.p0.raasnet.com +# ||p.raasnet.com^$third-party (easyprivacy.txt: 3808) +.p.raasnet.com +# ||p.l1v.ly^$third-party (easyprivacy.txt: 3807) +.p.l1v.ly +# ||p-td.com^$third-party (easyprivacy.txt: 3806) +.p-td.com +# ||oxidy.com^$third-party (easyprivacy.txt: 3805) +.oxidy.com +# ||overstat.com^$third-party (easyprivacy.txt: 3804) +.overstat.com +# ||outboundlink.me^$third-party (easyprivacy.txt: 3803) +.outboundlink.me +# ||ournet-analytics.com^$third-party (easyprivacy.txt: 3802) +.ournet-analytics.com +# ||otracking.com^$third-party (easyprivacy.txt: 3801) +.otracking.com +# ||otoshiana.com^$third-party (easyprivacy.txt: 3800) +.otoshiana.com +# ||ospserver.net^$third-party (easyprivacy.txt: 3799) +.ospserver.net +# ||orcapia.com^$third-party (easyprivacy.txt: 3798) +.orcapia.com +# ||oranges88.com^$third-party (easyprivacy.txt: 3797) +.oranges88.com +# ||optreadetrus.info^$third-party (easyprivacy.txt: 3796) +.optreadetrus.info +# ||optorb.com^$third-party (easyprivacy.txt: 3795) +.optorb.com +# ||optin-machine.com^$third-party (easyprivacy.txt: 3794) +.optin-machine.com +# ||optimost.com^$third-party (easyprivacy.txt: 3793) +.optimost.com +# ||optimizely.com^$third-party (easyprivacy.txt: 3792) +.optimizely.com +# ||optimix.asia^$third-party (easyprivacy.txt: 3791) +.optimix.asia +# ||optimahub.com^$third-party (easyprivacy.txt: 3790) +.optimahub.com +# ||optify.net^$third-party (easyprivacy.txt: 3789) +.optify.net +# ||oproi.com^$third-party (easyprivacy.txt: 3788) +.oproi.com +# ||openxtracker.com^$third-party (easyprivacy.txt: 3787) +.openxtracker.com +# ||openvenue.com^$third-party (easyprivacy.txt: 3786) +.openvenue.com +# ||opentracker.net^$third-party (easyprivacy.txt: 3785) +.opentracker.net +# ||openhit.com^$third-party (easyprivacy.txt: 3784) +.openhit.com +# ||openclick.com^$third-party (easyprivacy.txt: 3783) +.openclick.com +# ||opbandit.com^$third-party (easyprivacy.txt: 3782) +.opbandit.com +# ||onlysix.co.uk^$third-party (easyprivacy.txt: 3781) +.onlysix.co.uk +# ||online-right-now.net^$third-party (easyprivacy.txt: 3780) +.online-right-now.net +# ||online-metrix.net^$third-party (easyprivacy.txt: 3779) +.online-metrix.net +# ||online-media-stats.com^$third-party (easyprivacy.txt: 3778) +.online-media-stats.com +# ||ongsono.com^$third-party (easyprivacy.txt: 3777) +.ongsono.com +# ||onetag-sys.com^$third-party (easyprivacy.txt: 3776) +.onetag-sys.com +# ||onestat.com^$third-party (easyprivacy.txt: 3775) +.onestat.com +# ||onelink-translations.com^$third-party (easyprivacy.txt: 3774) +.onelink-translations.com +# ||onefeed.co.uk^$third-party (easyprivacy.txt: 3773) +.onefeed.co.uk +# ||omtrdc.net^$third-party (easyprivacy.txt: 3772) +.omtrdc.net +# ||omnitagjs.com^$third-party (easyprivacy.txt: 3771) +.omnitagjs.com +# ||omkt.co^$third-party (easyprivacy.txt: 3770) +.omkt.co +# ||omguk.com^$third-party (easyprivacy.txt: 3769) +.omguk.com +# ||omgpm.com^$third-party (easyprivacy.txt: 3768) +.omgpm.com +# ||ometria.com^$third-party (easyprivacy.txt: 3767) +.ometria.com +# ||omeda.com^$third-party (easyprivacy.txt: 3766) +.omeda.com +# ||ojrq.net^$third-party (easyprivacy.txt: 3765) +.ojrq.net +# ||oidah.com^$third-party (easyprivacy.txt: 3764) +.oidah.com +# ||ohmystats.com^$third-party (easyprivacy.txt: 3763) +.ohmystats.com +# ||ogt.jp^$third-party (easyprivacy.txt: 3762) +.ogt.jp +# ||offerstrategy.com^$third-party (easyprivacy.txt: 3761) +.offerstrategy.com +# ||offerpoint.net^$third-party (easyprivacy.txt: 3760) +.offerpoint.net +# ||offermatica.com^$third-party (easyprivacy.txt: 3759) +.offermatica.com +# ||odoscope.com^$third-party (easyprivacy.txt: 3758) +.odoscope.com +# ||odesaconflate.com^$third-party (easyprivacy.txt: 3757) +.odesaconflate.com +# ||od.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 3756) +.od.visiblemeasures.com +# ||observerapp.com^$third-party (easyprivacy.txt: 3755) +.observerapp.com +# ||nytlog.com^$third-party (easyprivacy.txt: 3754) +.nytlog.com +# ||numerino.cz^$third-party (easyprivacy.txt: 3753) +.numerino.cz +# ||nuggad.net^$third-party (easyprivacy.txt: 3752) +.nuggad.net +# ||nudatasecurity.com^$third-party (easyprivacy.txt: 3751) +.nudatasecurity.com +# ||nuconomy.com^$third-party (easyprivacy.txt: 3750) +.nuconomy.com +# ||nstracking.com^$third-party (easyprivacy.txt: 3749) +.nstracking.com +# ||ns1p.net^$third-party (easyprivacy.txt: 3748) +.ns1p.net +# ||nr7.us^$third-party (easyprivacy.txt: 3747) +.nr7.us +# ||nr-data.net^$third-party (easyprivacy.txt: 3746) +.nr-data.net +# ||nprove.com^$third-party (easyprivacy.txt: 3745) +.nprove.com +# ||npario-inc.net^$third-party (easyprivacy.txt: 3744) +.npario-inc.net +# ||nowinteract.com^$third-party (easyprivacy.txt: 3743) +.nowinteract.com +# ||nordicresearch.com^$third-party (easyprivacy.txt: 3742) +.nordicresearch.com +# ||noowho.com^$third-party (easyprivacy.txt: 3741) +.noowho.com +# ||nik.io^$third-party (easyprivacy.txt: 3740) +.nik.io +# ||niftymaps.com^$third-party (easyprivacy.txt: 3739) +.niftymaps.com +# ||nicewii.com^$third-party (easyprivacy.txt: 3738) +.nicewii.com +# ||ngmco.net^$third-party (easyprivacy.txt: 3737) +.ngmco.net +# ||nextstat.com^$third-party (easyprivacy.txt: 3736) +.nextstat.com +# ||nexeps.com^$third-party (easyprivacy.txt: 3735) +.nexeps.com +# ||newtrackmedia.com^$third-party (easyprivacy.txt: 3734) +.newtrackmedia.com +# ||newstatscounter.info^$third-party (easyprivacy.txt: 3733) +.newstatscounter.info +# ||newscurve.com^$third-party (easyprivacy.txt: 3732) +.newscurve.com +# ||newrelic.com^$third-party (easyprivacy.txt: 3731) +.newrelic.com +# ||newpoints.info^$third-party (easyprivacy.txt: 3730) +.newpoints.info +# ||netratings.com^$third-party (easyprivacy.txt: 3729) +.netratings.com +# ||netmng.com^$third-party (easyprivacy.txt: 3728) +.netmng.com +# ||netmining.com^$third-party (easyprivacy.txt: 3727) +.netmining.com +# ||netgraviton.net^$third-party (easyprivacy.txt: 3726) +.netgraviton.net +# ||netflame.cc^$third-party (easyprivacy.txt: 3725) +.netflame.cc +# ||netclickstats.com^$third-party (easyprivacy.txt: 3724) +.netclickstats.com +# ||netapplications.com^$third-party (easyprivacy.txt: 3723) +.netapplications.com +# ||netaffiliation.com^$script,third-party (easyprivacy.txt: 3722) +.netaffiliation.com +# ||net-filter.com^$third-party (easyprivacy.txt: 3721) +.net-filter.com +# ||nestedmedia.com^$third-party (easyprivacy.txt: 3720) +.nestedmedia.com +# ||neon-lab.com^$third-party (easyprivacy.txt: 3719) +.neon-lab.com +# ||neki.org^$third-party (easyprivacy.txt: 3718) +.neki.org +# ||nedstatpro.net^$third-party (easyprivacy.txt: 3717) +.nedstatpro.net +# ||nedstatbasic.net^$third-party (easyprivacy.txt: 3716) +.nedstatbasic.net +# ||nedstat.net^$third-party (easyprivacy.txt: 3715) +.nedstat.net +# ||nedstat.com^$third-party (easyprivacy.txt: 3714) +.nedstat.com +# ||neatstats.com^$third-party (easyprivacy.txt: 3713) +.neatstats.com +# ||naytev.com^$third-party (easyprivacy.txt: 3712) +.naytev.com +# ||navegg.com^$third-party (easyprivacy.txt: 3711) +.navegg.com +# ||navdmp.com^$third-party (easyprivacy.txt: 3710) +.navdmp.com +# ||naturaltracking.com^$third-party (easyprivacy.txt: 3709) +.naturaltracking.com +# ||natpal.com^$third-party (easyprivacy.txt: 3708) +.natpal.com +# ||nalook.com^$third-party (easyprivacy.txt: 3707) +.nalook.com +# ||nakanohito.jp^$third-party (easyprivacy.txt: 3706) +.nakanohito.jp +# ||naj.sk^$third-party (easyprivacy.txt: 3705) +.naj.sk +# ||naayna.com^$third-party (easyprivacy.txt: 3704) +.naayna.com +# ||mywebstats.org^$third-party (easyprivacy.txt: 3703) +.mywebstats.org +# ||mywebstats.com.au^$third-party (easyprivacy.txt: 3702) +.mywebstats.com.au +# ||myusersonline.com^$third-party (easyprivacy.txt: 3701) +.myusersonline.com +# ||mytictac.com^$third-party (easyprivacy.txt: 3700) +.mytictac.com +# ||mysitetraffic.net^$third-party (easyprivacy.txt: 3699) +.mysitetraffic.net +# ||myseostats.com^$third-party (easyprivacy.txt: 3698) +.myseostats.com +# ||myroitracking.com^$third-party (easyprivacy.txt: 3697) +.myroitracking.com +# ||myreferer.com^$third-party (easyprivacy.txt: 3696) +.myreferer.com +# ||mypagerank.net^$third-party (easyprivacy.txt: 3695) +.mypagerank.net +# ||myomnistar.com^$third-party (easyprivacy.txt: 3694) +.myomnistar.com +# ||myntelligence.com^$third-party (easyprivacy.txt: 3693) +.myntelligence.com +# ||mynewcounter.com^$third-party (easyprivacy.txt: 3692) +.mynewcounter.com +# ||myfastcounter.com^$third-party (easyprivacy.txt: 3691) +.myfastcounter.com +# ||mybloglog.com^$third-party (easyprivacy.txt: 3690) +.mybloglog.com +# ||myaffiliateprogram.com^$third-party (easyprivacy.txt: 3689) +.myaffiliateprogram.com +# ||mxptint.net^$third-party (easyprivacy.txt: 3688) +.mxptint.net +# ||mxpnl.com^$third-party (easyprivacy.txt: 3687) +.mxpnl.com +# ||mxcdn.net^$third-party (easyprivacy.txt: 3686) +.mxcdn.net +# ||mvtracker.com^$third-party (easyprivacy.txt: 3685) +.mvtracker.com +# ||mvilivestats.com^$third-party (easyprivacy.txt: 3684) +.mvilivestats.com +# ||mucocutaneousmyrmecophaga.com^$third-party (easyprivacy.txt: 3683) +.mucocutaneousmyrmecophaga.com +# ||mtrics.cdc.gov^$third-party (easyprivacy.txt: 3682) +.mtrics.cdc.gov +# ||mtracking.com^$third-party (easyprivacy.txt: 3681) +.mtracking.com +# ||mstracker.net^$third-party (easyprivacy.txt: 3680) +.mstracker.net +# ||msgtag.com^$third-party (easyprivacy.txt: 3679) +.msgtag.com +# ||msgapp.com^$third-party (easyprivacy.txt: 3678) +.msgapp.com +# ||mpstat.us^$third-party (easyprivacy.txt: 3677) +.mpstat.us +# ||mplxtms.com^$third-party (easyprivacy.txt: 3676) +.mplxtms.com +# ||movable-ink-6710.com^$third-party (easyprivacy.txt: 3675) +.movable-ink-6710.com +# ||mousetrace.com^$third-party (easyprivacy.txt: 3674) +.mousetrace.com +# ||mousestats.com^$third-party (easyprivacy.txt: 3673) +.mousestats.com +# ||mouseflow.com^$third-party (easyprivacy.txt: 3672) +.mouseflow.com +# ||motrixi.com^$third-party (easyprivacy.txt: 3671) +.motrixi.com +# ||monitus.net^$third-party (easyprivacy.txt: 3670) +.monitus.net +# ||monitis.com^$third-party (easyprivacy.txt: 3669) +.monitis.com +# ||mongoosemetrics.com^$third-party (easyprivacy.txt: 3668) +.mongoosemetrics.com +# ||monetate.net^$third-party (easyprivacy.txt: 3667) +.monetate.net +# ||mochibot.com^$third-party (easyprivacy.txt: 3666) +.mochibot.com +# ||mobalyzer.net^$third-party (easyprivacy.txt: 3665) +.mobalyzer.net +# ||mmi-agency.com^$third-party (easyprivacy.txt: 3664) +.mmi-agency.com +# ||mmetrix.mobi^$third-party (easyprivacy.txt: 3663) +.mmetrix.mobi +# ||mm7.net^$third-party (easyprivacy.txt: 3662) +.mm7.net +# ||mlstat.com^$third-party (easyprivacy.txt: 3661) +.mlstat.com +# ||mlno6.com^$third-party (easyprivacy.txt: 3660) +.mlno6.com +# ||mletracker.com^$third-party (easyprivacy.txt: 3659) +.mletracker.com +# ||mlclick.com^$third-party (easyprivacy.txt: 3658) +.mlclick.com +# ||ml314.com^$third-party (easyprivacy.txt: 3657) +.ml314.com +# ||mktoresp.com^$third-party (easyprivacy.txt: 3656) +.mktoresp.com +# ||mkt941.com^$third-party (easyprivacy.txt: 3655) +.mkt941.com +# ||mkt51.net^$third-party (easyprivacy.txt: 3654) +.mkt51.net +# ||mkt3261.com^$third-party (easyprivacy.txt: 3653) +.mkt3261.com +# ||mixpanel.com^$third-party (easyprivacy.txt: 3652) +.mixpanel.com +# ||minewhat.com^$third-party (easyprivacy.txt: 3651) +.minewhat.com +# ||millioncounter.com^$third-party (easyprivacy.txt: 3650) +.millioncounter.com +# ||midkotatraffic.net^$third-party (easyprivacy.txt: 3649) +.midkotatraffic.net +# ||midas-i.com^$third-party (easyprivacy.txt: 3648) +.midas-i.com +# ||mialbj6.com^$third-party (easyprivacy.txt: 3647) +.mialbj6.com +# ||mezzobit.com^$third-party (easyprivacy.txt: 3646) +.mezzobit.com +# ||metricsdirect.com^$third-party (easyprivacy.txt: 3645) +.metricsdirect.com +# ||meteorsolutions.com^$third-party (easyprivacy.txt: 3644) +.meteorsolutions.com +# ||metakeyproducer.com^$third-party (easyprivacy.txt: 3643) +.metakeyproducer.com +# ||mercent.com^$third-party (easyprivacy.txt: 3642) +.mercent.com +# ||mercadoclics.com^$third-party (easyprivacy.txt: 3641) +.mercadoclics.com +# ||memecounter.com^$third-party (easyprivacy.txt: 3640) +.memecounter.com +# ||mega-stats.com^$third-party (easyprivacy.txt: 3639) +.mega-stats.com +# ||mediaseeding.com^$third-party (easyprivacy.txt: 3638) +.mediaseeding.com +# ||mediaplex.com^$third-party (easyprivacy.txt: 3637) +.mediaplex.com +# ||mediagauge.com^$third-party (easyprivacy.txt: 3636) +.mediagauge.com +# ||mediaforgews.com^$third-party (easyprivacy.txt: 3635) +.mediaforgews.com +# ||mediaarmor.com^$third-party (easyprivacy.txt: 3634) +.mediaarmor.com +# ||measuremap.com^$third-party (easyprivacy.txt: 3633) +.measuremap.com +# ||measure.ly^$third-party (easyprivacy.txt: 3632) +.measure.ly +# ||mdotlabs.com^$third-party (easyprivacy.txt: 3631) +.mdotlabs.com +# ||md-ia.info^$third-party (easyprivacy.txt: 3630) +.md-ia.info +# ||mbww.com^$third-party (easyprivacy.txt: 3629) +.mbww.com +# ||mbsy.co^$third-party (easyprivacy.txt: 3628) +.mbsy.co +# ||mbotvisit.com^$third-party (easyprivacy.txt: 3627) +.mbotvisit.com +# ||mb4a.com^$third-party (easyprivacy.txt: 3626) +.mb4a.com +# ||maxymiser.net^$third-party (easyprivacy.txt: 3625) +.maxymiser.net +# ||maxymiser.com^$third-party (easyprivacy.txt: 3624) +.maxymiser.com +# ||maxtracker.net^$third-party (easyprivacy.txt: 3623) +.maxtracker.net +# ||mathtag.com^$third-party (easyprivacy.txt: 3622) +.mathtag.com +# ||matheranalytics.com^$third-party (easyprivacy.txt: 3621) +.matheranalytics.com +# ||masterstats.com^$third-party (easyprivacy.txt: 3620) +.masterstats.com +# ||martianstats.com^$third-party (easyprivacy.txt: 3619) +.martianstats.com +# ||marketo.net^$third-party (easyprivacy.txt: 3618) +.marketo.net +# ||marketizator.com^$third-party (easyprivacy.txt: 3617) +.marketizator.com +# ||market2lead.com^$third-party (easyprivacy.txt: 3616) +.market2lead.com +# ||market015.com^$third-party (easyprivacy.txt: 3615) +.market015.com +# ||marinsm.com^$third-party (easyprivacy.txt: 3614) +.marinsm.com +# ||mapmyuser.com^$third-party (easyprivacy.txt: 3613) +.mapmyuser.com +# ||maploco.com^$third-party (easyprivacy.txt: 3612) +.maploco.com +# ||mailstat.us^$third-party (easyprivacy.txt: 3611) +.mailstat.us +# ||magnify360.com^$third-party (easyprivacy.txt: 3610) +.magnify360.com +# ||magnetmail1.net^$third-party (easyprivacy.txt: 3609) +.magnetmail1.net +# ||magiq.com^$third-party (easyprivacy.txt: 3608) +.magiq.com +# ||lytiks.com^$third-party (easyprivacy.txt: 3607) +.lytiks.com +# ||lytics.io^$third-party (easyprivacy.txt: 3606) +.lytics.io +# ||lypn.net^$third-party (easyprivacy.txt: 3605) +.lypn.net +# ||lypn.com^$third-party (easyprivacy.txt: 3604) +.lypn.com +# ||lymantriacypresdoctrine.biz^$third-party (easyprivacy.txt: 3603) +.lymantriacypresdoctrine.biz +# ||lxtrack.com^$third-party (easyprivacy.txt: 3602) +.lxtrack.com +# ||luminate.com^$third-party (easyprivacy.txt: 3601) +.luminate.com +# ||lumatag.co.uk^$third-party (easyprivacy.txt: 3600) +.lumatag.co.uk +# ||luckyorange.com^$third-party (easyprivacy.txt: 3599) +.luckyorange.com +# ||lucidel.com^$third-party (easyprivacy.txt: 3598) +.lucidel.com +# ||lsfinteractive.com^$third-party (easyprivacy.txt: 3597) +.lsfinteractive.com +# ||lporirxe.com^$third-party (easyprivacy.txt: 3596) +.lporirxe.com +# ||lpbeta.com^$third-party (easyprivacy.txt: 3595) +.lpbeta.com +# ||lp4.io^$third-party (easyprivacy.txt: 3594) +.lp4.io +# ||losstrack.com^$third-party (easyprivacy.txt: 3593) +.losstrack.com +# ||lopley.com^$third-party (easyprivacy.txt: 3592) +.lopley.com +# ||loopfuse.net^$third-party (easyprivacy.txt: 3591) +.loopfuse.net +# ||lookery.com^$third-party (easyprivacy.txt: 3590) +.lookery.com +# ||lognormal.net^$third-party (easyprivacy.txt: 3589) +.lognormal.net +# ||loggly.com^$third-party (easyprivacy.txt: 3588) +.loggly.com +# ||logentries.com^$third-party (easyprivacy.txt: 3587) +.logentries.com +# ||logdy.com^$third-party (easyprivacy.txt: 3586) +.logdy.com +# ||logcounter.com^$third-party (easyprivacy.txt: 3585) +.logcounter.com +# ||logaholic.com^$third-party (easyprivacy.txt: 3584) +.logaholic.com +# ||lockview.cn^$third-party (easyprivacy.txt: 3583) +.lockview.cn +# ||localytics.com^$third-party (easyprivacy.txt: 3582) +.localytics.com +# ||lloogg.com^$third-party (easyprivacy.txt: 3581) +.lloogg.com +# ||livestat.com^$third-party (easyprivacy.txt: 3580) +.livestat.com +# ||livehit.net^$third-party (easyprivacy.txt: 3579) +.livehit.net +# ||livecount.fr^$third-party (easyprivacy.txt: 3578) +.livecount.fr +# ||listrakbi.com^$third-party (easyprivacy.txt: 3577) +.listrakbi.com +# ||linkxchanger.com^$third-party (easyprivacy.txt: 3576) +.linkxchanger.com +# ||linkpulse.com^$third-party (easyprivacy.txt: 3575) +.linkpulse.com +# ||link-smart.com^$third-party (easyprivacy.txt: 3574) +.link-smart.com +# ||linezing.com^$third-party (easyprivacy.txt: 3573) +.linezing.com +# ||lijit.com^$third-party (easyprivacy.txt: 3572) +.lijit.com +# ||liadm.com^$third-party (easyprivacy.txt: 3571) +.liadm.com +# ||lfov.net^$third-party (easyprivacy.txt: 3570) +.lfov.net +# ||lexity.com^$third-party (easyprivacy.txt: 3569) +.lexity.com +# ||levexis.com^$third-party (easyprivacy.txt: 3568) +.levexis.com +# ||letterboxtrail.com^$third-party (easyprivacy.txt: 3567) +.letterboxtrail.com +# ||les-experts.com^$third-party (easyprivacy.txt: 3566) +.les-experts.com +# ||legolas-media.com^$third-party (easyprivacy.txt: 3565) +.legolas-media.com +# ||leadsius.com^$third-party (easyprivacy.txt: 3564) +.leadsius.com +# ||leadmanagerfx.com^$third-party (easyprivacy.txt: 3563) +.leadmanagerfx.com +# ||leadlife.com^$third-party (easyprivacy.txt: 3562) +.leadlife.com +# ||leadintelligence.co.uk^$third-party (easyprivacy.txt: 3561) +.leadintelligence.co.uk +# ||leadid.com^$third-party (easyprivacy.txt: 3560) +.leadid.com +# ||leadformix.com^$third-party (easyprivacy.txt: 3559) +.leadformix.com +# ||leadforensics.com^$third-party (easyprivacy.txt: 3558) +.leadforensics.com +# ||leadforce1.com^$third-party (easyprivacy.txt: 3557) +.leadforce1.com +# ||lead-tracking.biz^$third-party (easyprivacy.txt: 3556) +.lead-tracking.biz +# ||lead-converter.com^$third-party (easyprivacy.txt: 3555) +.lead-converter.com +# ||lead-123.com^$third-party (easyprivacy.txt: 3554) +.lead-123.com +# ||landingpg.com^$third-party (easyprivacy.txt: 3553) +.landingpg.com +# ||l2.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 3552) +.l2.visiblemeasures.com +# ||ksyrium0014.com^$third-party (easyprivacy.txt: 3551) +.ksyrium0014.com +# ||krxd.net^$third-party (easyprivacy.txt: 3550) +.krxd.net +# ||kopsil.com^$third-party (easyprivacy.txt: 3549) +.kopsil.com +# ||kontagent.net^$third-party (easyprivacy.txt: 3548) +.kontagent.net +# ||komtrack.com^$third-party (easyprivacy.txt: 3547) +.komtrack.com +# ||knowledgevine.net^$third-party (easyprivacy.txt: 3546) +.knowledgevine.net +# ||klldabck.com^$third-party (easyprivacy.txt: 3545) +.klldabck.com +# ||klert.com^$third-party (easyprivacy.txt: 3544) +.klert.com +# ||kitcode.net^$third-party (easyprivacy.txt: 3543) +.kitcode.net +# ||kitbit.net^$third-party (easyprivacy.txt: 3542) +.kitbit.net +# ||kisstesting.com^$third-party (easyprivacy.txt: 3541) +.kisstesting.com +# ||kissmetrics.com^$third-party (easyprivacy.txt: 3540) +.kissmetrics.com +# ||killerwebstats.com^$third-party (easyprivacy.txt: 3539) +.killerwebstats.com +# ||kieden.com^$third-party (easyprivacy.txt: 3538) +.kieden.com +# ||keywordstrategy.org^$third-party (easyprivacy.txt: 3537) +.keywordstrategy.org +# ||keywordmax.com^$third-party (easyprivacy.txt: 3536) +.keywordmax.com +# ||keymetric.net^$third-party (easyprivacy.txt: 3535) +.keymetric.net +# ||keyade.com^$third-party (easyprivacy.txt: 3534) +.keyade.com +# ||kampyle.com^$third-party (easyprivacy.txt: 3532) +.kampyle.com +# ||jwmstats.com^$third-party (easyprivacy.txt: 3531) +.jwmstats.com +# ||justuno.com^$third-party (easyprivacy.txt: 3530) +.justuno.com +# ||jumptime.com^$third-party (easyprivacy.txt: 3529) +.jumptime.com +# ||jump-time.net^$third-party (easyprivacy.txt: 3528) +.jump-time.net +# ||jstracker.com^$third-party (easyprivacy.txt: 3527) +.jstracker.com +# ||jsonip.com^$third-party (easyprivacy.txt: 3526) +.jsonip.com +# ||jsid.info^$third-party (easyprivacy.txt: 3525) +.jsid.info +# ||jscounter.com^$third-party (easyprivacy.txt: 3524) +.jscounter.com +# ||jirafe.com^$third-party (easyprivacy.txt: 3523) +.jirafe.com +# ||jimdo-stats.com^$third-party (easyprivacy.txt: 3522) +.jimdo-stats.com +# ||izearanks.com^$third-party (easyprivacy.txt: 3521) +.izearanks.com +# ||izea.com^$third-party (easyprivacy.txt: 3520) +.izea.com +# ||ixiaa.com^$third-party (easyprivacy.txt: 3519) +.ixiaa.com +# ||iwebtrack.com^$third-party (easyprivacy.txt: 3518) +.iwebtrack.com +# ||ivcbrasil.org.br^$third-party (easyprivacy.txt: 3517) +.ivcbrasil.org.br +# ||itrackerpro.com^$third-party (easyprivacy.txt: 3516) +.itrackerpro.com +# ||istrack.com^$third-party (easyprivacy.txt: 3515) +.istrack.com +# ||ist-track.com^$third-party (easyprivacy.txt: 3514) +.ist-track.com +# ||irelandmetrix.ie^$third-party (easyprivacy.txt: 3513) +.irelandmetrix.ie +# ||iraiser.eu^$third-party (easyprivacy.txt: 3512) +.iraiser.eu +# ||iqfp1.com^$third-party (easyprivacy.txt: 3511) +.iqfp1.com +# ||ipv6monitoring.eu^$third-party (easyprivacy.txt: 3510) +.ipv6monitoring.eu +# ||ipstat.com^$third-party (easyprivacy.txt: 3509) +.ipstat.com +# ||ipro.com^$third-party (easyprivacy.txt: 3508) +.ipro.com +# ||iplocationtools.com^$third-party (easyprivacy.txt: 3507) +.iplocationtools.com +# ||ipinyou.com.cn^$third-party (easyprivacy.txt: 3506) +.ipinyou.com.cn +# ||ipinfodb.com^$third-party (easyprivacy.txt: 3505) +.ipinfodb.com +# ||ipinfo.io^$third-party (easyprivacy.txt: 3504) +.ipinfo.io +# ||ipinfo.info^$third-party (easyprivacy.txt: 3503) +.ipinfo.info +# ||ipfingerprint.com^$third-party (easyprivacy.txt: 3502) +.ipfingerprint.com +# ||iperceptions.com^$third-party (easyprivacy.txt: 3501) +.iperceptions.com +# ||ipcounter.de^$third-party (easyprivacy.txt: 3500) +.ipcounter.de +# ||ipcatch.com^$third-party (easyprivacy.txt: 3499) +.ipcatch.com +# ||ipaddresslabs.com^$third-party (easyprivacy.txt: 3498) +.ipaddresslabs.com +# ||ip2phrase.com^$third-party (easyprivacy.txt: 3497) +.ip2phrase.com +# ||ip2map.com^$third-party (easyprivacy.txt: 3496) +.ip2map.com +# ||ip2location.com^$third-party (easyprivacy.txt: 3495) +.ip2location.com +# ||ip-label.net^$third-party (easyprivacy.txt: 3494) +.ip-label.net +# ||ip-api.com^$third-party (easyprivacy.txt: 3493) +.ip-api.com +# ||invoc.us^$third-party (easyprivacy.txt: 3492) +.invoc.us +# ||invitemedia.com^$third-party (easyprivacy.txt: 3491) +.invitemedia.com +# ||intervigil.com^$third-party (easyprivacy.txt: 3490) +.intervigil.com +# ||intermundomedia.com^$third-party (easyprivacy.txt: 3489) +.intermundomedia.com +# ||interceptum.com^$third-party (easyprivacy.txt: 3488) +.interceptum.com +# ||intelligencefocus.com^$third-party (easyprivacy.txt: 3487) +.intelligencefocus.com +# ||intelli-tracker.com^$third-party (easyprivacy.txt: 3486) +.intelli-tracker.com +# ||intelli-direct.com^$third-party (easyprivacy.txt: 3485) +.intelli-direct.com +# ||intelimet.com^$third-party (easyprivacy.txt: 3484) +.intelimet.com +# ||intelevance.com^$third-party (easyprivacy.txt: 3483) +.intelevance.com +# ||instore.biz^$third-party (easyprivacy.txt: 3482) +.instore.biz +# ||instadia.net^$third-party (easyprivacy.txt: 3481) +.instadia.net +# ||inspectlet.com^$third-party (easyprivacy.txt: 3480) +.inspectlet.com +# ||insitemetrics.com^$third-party (easyprivacy.txt: 3479) +.insitemetrics.com +# ||insigit.com^$third-party (easyprivacy.txt: 3478) +.insigit.com +# ||insightgrit.com^$third-party (easyprivacy.txt: 3477) +.insightgrit.com +# ||insightera.com^$third-party (easyprivacy.txt: 3476) +.insightera.com +# ||inside-graph.com^$third-party (easyprivacy.txt: 3475) +.inside-graph.com +# ||inpwrd.com^$third-party (easyprivacy.txt: 3474) +.inpwrd.com +# ||inphonic.com^$third-party (easyprivacy.txt: 3473) +.inphonic.com +# ||innovateads.com^$third-party (easyprivacy.txt: 3472) +.innovateads.com +# ||inimbus.com.au^$third-party (easyprivacy.txt: 3471) +.inimbus.com.au +# ||influid.co^$third-party (easyprivacy.txt: 3470) +.influid.co +# ||inflectionpointmedia.com^$third-party (easyprivacy.txt: 3469) +.inflectionpointmedia.com +# ||infinity-tracking.net^$third-party (easyprivacy.txt: 3468) +.infinity-tracking.net +# ||infinigraph.com^$third-party (easyprivacy.txt: 3467) +.infinigraph.com +# ||inferclick.com^$third-party (easyprivacy.txt: 3466) +.inferclick.com +# ||ineedhits.com^$third-party (easyprivacy.txt: 3465) +.ineedhits.com +# ||individuad.net^$third-party (easyprivacy.txt: 3464) +.individuad.net +# ||indicia.com^$third-party (easyprivacy.txt: 3463) +.indicia.com +# ||indextools.com^$third-party (easyprivacy.txt: 3462) +.indextools.com +# ||indexstats.com^$third-party (easyprivacy.txt: 3461) +.indexstats.com +# ||incentivesnetwork.net^$third-party (easyprivacy.txt: 3460) +.incentivesnetwork.net +# ||inboxtag.com^$third-party (easyprivacy.txt: 3459) +.inboxtag.com +# ||imrworldwide.com^$third-party (easyprivacy.txt: 3458) +.imrworldwide.com +# ||imrtrack.com^$third-party (easyprivacy.txt: 3457) +.imrtrack.com +# ||impcounter.com^$third-party (easyprivacy.txt: 3456) +.impcounter.com +# ||immanalytics.com^$third-party (easyprivacy.txt: 3455) +.immanalytics.com +# ||imanginatium.com^$third-party (easyprivacy.txt: 3454) +.imanginatium.com +# ||ilogbox.com^$third-party (easyprivacy.txt: 3453) +.ilogbox.com +# ||illumenix.com^$third-party (easyprivacy.txt: 3452) +.illumenix.com +# ||iljmp.com^$third-party (easyprivacy.txt: 3451) +.iljmp.com +# ||ijncw.tv^$third-party (easyprivacy.txt: 3450) +.ijncw.tv +# ||igaming.biz^$third-party (easyprivacy.txt: 3449) +.igaming.biz +# ||ifactz.com^$third-party (easyprivacy.txt: 3448) +.ifactz.com +# ||iesnare.com^$third-party (easyprivacy.txt: 3447) +.iesnare.com +# ||idtargeting.com^$third-party (easyprivacy.txt: 3446) +.idtargeting.com +# ||idio.co^$third-party (easyprivacy.txt: 3445) +.idio.co +# ||ideoclick.com^$third-party (easyprivacy.txt: 3444) +.ideoclick.com +# ||icstats.nl^$third-party (easyprivacy.txt: 3443) +.icstats.nl +# ||ics0.com^$third-party (easyprivacy.txt: 3442) +.ics0.com +# ||iclive.com^$third-party (easyprivacy.txt: 3441) +.iclive.com +# ||ic-live.com^$third-party (easyprivacy.txt: 3440) +.ic-live.com +# ||ibpxl.net^$third-party (easyprivacy.txt: 3439) +.ibpxl.net +# ||ibpxl.com^$third-party (easyprivacy.txt: 3438) +.ibpxl.com +# ||ib-ibi.com^$third-party (easyprivacy.txt: 3437) +.ib-ibi.com +# ||i-stats.com^$third-party (easyprivacy.txt: 3436) +.i-stats.com +# ||hypestat.com^$third-party (easyprivacy.txt: 3435) +.hypestat.com +# ||hyperactivate.com^$third-party (easyprivacy.txt: 3434) +.hyperactivate.com +# ||hyfntrak.com^$third-party (easyprivacy.txt: 3433) +.hyfntrak.com +# ||hxtrack.com^$third-party (easyprivacy.txt: 3432) +.hxtrack.com +# ||hwpub.com^$third-party (easyprivacy.txt: 3431) +.hwpub.com +# ||hurterkranach.net^$third-party (easyprivacy.txt: 3430) +.hurterkranach.net +# ||hurra.com^$third-party (easyprivacy.txt: 3429) +.hurra.com +# ||hunt-leads.com^$third-party (easyprivacy.txt: 3428) +.hunt-leads.com +# ||humanclick.com^$third-party (easyprivacy.txt: 3427) +.humanclick.com +# ||hscta.net^$third-party (easyprivacy.txt: 3426) +.hscta.net +# ||hs-analytics.net^$third-party (easyprivacy.txt: 3425) +.hs-analytics.net +# ||hqhrt.com^$third-party (easyprivacy.txt: 3424) +.hqhrt.com +# ||hotjar.com^$third-party (easyprivacy.txt: 3423) +.hotjar.com +# ||hoststats.info^$third-party (easyprivacy.txt: 3422) +.hoststats.info +# ||hostip.info^$third-party (easyprivacy.txt: 3421) +.hostip.info +# ||host-tracker.com^$third-party (easyprivacy.txt: 3420) +.host-tracker.com +# ||hopurl.org^$third-party (easyprivacy.txt: 3419) +.hopurl.org +# ||homechader.com^$third-party (easyprivacy.txt: 3418) +.homechader.com +# ||hlserve.com^$third-party (easyprivacy.txt: 3417) +.hlserve.com +# ||hitwebcounter.com^$third-party (easyprivacy.txt: 3416) +.hitwebcounter.com +# ||hitwake.com^$third-party (easyprivacy.txt: 3415) +.hitwake.com +# ||hittracker.com^$third-party (easyprivacy.txt: 3414) +.hittracker.com +# ||hittail.com^$third-party (easyprivacy.txt: 3413) +.hittail.com +# ||hitsprocessor.com^$third-party (easyprivacy.txt: 3412) +.hitsprocessor.com +# ||hitsniffer.com^$third-party (easyprivacy.txt: 3411) +.hitsniffer.com +# ||hitslog.com^$third-party (easyprivacy.txt: 3410) +.hitslog.com +# ||hitslink.com^$third-party (easyprivacy.txt: 3409) +.hitslink.com +# ||hits2u.com^$third-party (easyprivacy.txt: 3408) +.hits2u.com +# ||hits.io^$third-party (easyprivacy.txt: 3407) +.hits.io +# ||hitmaze-counters.net^$third-party (easyprivacy.txt: 3406) +.hitmaze-counters.net +# ||hitmatic.com^$third-party (easyprivacy.txt: 3405) +.hitmatic.com +# ||hitfarm.com^$third-party (easyprivacy.txt: 3404) +.hitfarm.com +# ||hitcounterstats.com^$third-party (easyprivacy.txt: 3403) +.hitcounterstats.com +# ||hitbox.com^$third-party (easyprivacy.txt: 3402) +.hitbox.com +# ||hit2map.com^$third-party (easyprivacy.txt: 3401) +.hit2map.com +# ||hit-parade.com^$third-party (easyprivacy.txt: 3400) +.hit-parade.com +# ||hit-counts.com^$third-party (easyprivacy.txt: 3399) +.hit-counts.com +# ||hit-counters.net^$third-party (easyprivacy.txt: 3398) +.hit-counters.net +# ||hit-counter.info^$third-party (easyprivacy.txt: 3397) +.hit-counter.info +# ||hit-counter-download.com^$third-party (easyprivacy.txt: 3396) +.hit-counter-download.com +# ||histats.com^$third-party (easyprivacy.txt: 3395) +.histats.com +# ||highmetrics.com^$third-party (easyprivacy.txt: 3394) +.highmetrics.com +# ||higherengine.com^$third-party (easyprivacy.txt: 3393) +.higherengine.com +# ||hiconversion.com^$third-party (easyprivacy.txt: 3392) +.hiconversion.com +# ||heystaks.com^$third-party (easyprivacy.txt: 3391) +.heystaks.com +# ||hentaicounter.com^$third-party (easyprivacy.txt: 3390) +.hentaicounter.com +# ||hellosherpa.com^$third-party (easyprivacy.txt: 3389) +.hellosherpa.com +# ||heatmap.it^$third-party (easyprivacy.txt: 3388) +.heatmap.it +# ||heapanalytics.com^$third-party (easyprivacy.txt: 3387) +.heapanalytics.com +# ||haymarket.com^$third-party (easyprivacy.txt: 3386) +.haymarket.com +# ||haveamint.com^$third-party (easyprivacy.txt: 3385) +.haveamint.com +# ||haraju.co^$third-party (easyprivacy.txt: 3384) +.haraju.co +# ||halstats.com^$third-party (easyprivacy.txt: 3383) +.halstats.com +# ||halldata.com^$third-party (easyprivacy.txt: 3382) +.halldata.com +# ||h4k5.com^$third-party (easyprivacy.txt: 3381) +.h4k5.com +# ||gvisit.com^$third-party (easyprivacy.txt: 3380) +.gvisit.com +# ||guanoo.net^$third-party (easyprivacy.txt: 3379) +.guanoo.net +# ||gtopstats.com^$third-party (easyprivacy.txt: 3378) +.gtopstats.com +# ||gtcslt-di2.com^$third-party (easyprivacy.txt: 3377) +.gtcslt-di2.com +# ||gstats.cn^$third-party (easyprivacy.txt: 3376) +.gstats.cn +# ||gssprt.jp^$third-party (easyprivacy.txt: 3375) +.gssprt.jp +# ||gsspat.jp^$third-party (easyprivacy.txt: 3374) +.gsspat.jp +# ||gsimedia.net^$third-party (easyprivacy.txt: 3373) +.gsimedia.net +# ||gsecondscreen.com^$third-party (easyprivacy.txt: 3372) +.gsecondscreen.com +# ||grepdata.com^$third-party (easyprivacy.txt: 3371) +.grepdata.com +# ||gravity4.com^$third-party (easyprivacy.txt: 3370) +.gravity4.com +# ||grapheffect.com^$third-party (easyprivacy.txt: 3369) +.grapheffect.com +# ||govmetric.com^$third-party (easyprivacy.txt: 3368) +.govmetric.com +# ||gostats.ro^$third-party (easyprivacy.txt: 3367) +.gostats.ro +# ||gostats.com^$third-party (easyprivacy.txt: 3366) +.gostats.com +# ||gosquared.com^$third-party (easyprivacy.txt: 3365) +.gosquared.com +# ||gooo.al^$third-party (easyprivacy.txt: 3364) +.gooo.al +# ||googletagmanager.com/gtm.js?$third-party (easyprivacy.txt: 3363) +.googletagmanager.com/gtm\.js\? +# ||googlerank.info^$third-party (easyprivacy.txt: 3362) +.googlerank.info +# ||googleadservices.com^$third-party (easyprivacy.txt: 3361) +.googleadservices.com +# ||google-analytics.com/siteopt.js? (easyprivacy.txt: 3360) +.google-analytics.com/siteopt\.js\? +# ||google-analytics.com/r/collect? (easyprivacy.txt: 3359) +.google-analytics.com/r/collect\? +# ||google-analytics.com/plugins/ (easyprivacy.txt: 3358) +.google-analytics.com/plugins/ +# ||google-analytics.com/ga_exp.js (easyprivacy.txt: 3357) +.google-analytics.com/ga_exp\.js +# ||google-analytics.com/cx/api.js (easyprivacy.txt: 3356) +.google-analytics.com/cx/api\.js +# ||google-analytics.com/collect (easyprivacy.txt: 3355) +.google-analytics.com/collect +# ||google-analytics.com/analytics.js (easyprivacy.txt: 3354) +.google-analytics.com/analytics\.js +# ||goodcounter.org^$third-party (easyprivacy.txt: 3353) +.goodcounter.org +# ||goneviral.com^$third-party (easyprivacy.txt: 3352) +.goneviral.com +# ||goldstats.com^$third-party (easyprivacy.txt: 3351) +.goldstats.com +# ||goingup.com^$third-party (easyprivacy.txt: 3350) +.goingup.com +# ||godhat.com^$third-party (easyprivacy.txt: 3349) +.godhat.com +# ||goaltraffic.com^$third-party (easyprivacy.txt: 3348) +.goaltraffic.com +# ||go-mpulse.net^$third-party (easyprivacy.txt: 3347) +.go-mpulse.net +# ||globetrackr.com^$third-party (easyprivacy.txt: 3346) +.globetrackr.com +# ||globel.co.uk^$third-party (easyprivacy.txt: 3345) +.globel.co.uk +# ||globase.com^$third-party (easyprivacy.txt: 3344) +.globase.com +# ||globalviptraffic.com^$third-party (easyprivacy.txt: 3343) +.globalviptraffic.com +# ||glbtracker.com^$third-party (easyprivacy.txt: 3342) +.glbtracker.com +# ||glanceguide.com^$third-party (easyprivacy.txt: 3341) +.glanceguide.com +# ||gigcount.com^$third-party (easyprivacy.txt: 3340) +.gigcount.com +# ||gez.io^$third-party (easyprivacy.txt: 3339) +.gez.io +# ||getstatistics.se^$third-party (easyprivacy.txt: 3338) +.getstatistics.se +# ||getsmartcontent.com^$third-party (easyprivacy.txt: 3337) +.getsmartcontent.com +# ||getfreebl.com^$third-party (easyprivacy.txt: 3336) +.getfreebl.com +# ||getclicky.com^$third-party (easyprivacy.txt: 3335) +.getclicky.com +# ||getbackstory.com^$third-party (easyprivacy.txt: 3334) +.getbackstory.com +# ||georiot.com^$third-party (easyprivacy.txt: 3333) +.georiot.com +# ||geobytes.com^$third-party (easyprivacy.txt: 3332) +.geobytes.com +# ||genieesspv.jp^$third-party (easyprivacy.txt: 3331) +.genieesspv.jp +# ||gemtrackers.com^$third-party (easyprivacy.txt: 3330) +.gemtrackers.com +# ||gbotvisit.com^$third-party (easyprivacy.txt: 3329) +.gbotvisit.com +# ||gaug.es^$third-party (easyprivacy.txt: 3328) +.gaug.es +# ||fyreball.com^$third-party (easyprivacy.txt: 3327) +.fyreball.com +# ||fuziontech.net^$third-party (easyprivacy.txt: 3326) +.fuziontech.net +# ||fusestats.com^$third-party (easyprivacy.txt: 3325) +.fusestats.com +# ||funstage.com^$third-party (easyprivacy.txt: 3324) +.funstage.com +# ||funneld.com^$third-party (easyprivacy.txt: 3323) +.funneld.com +# ||fueldeck.com^$third-party (easyprivacy.txt: 3322) +.fueldeck.com +# ||ftbpro.com^$third-party (easyprivacy.txt: 3321) +.ftbpro.com +# ||fshka.com^$third-party (easyprivacy.txt: 3320) +.fshka.com +# ||fruitflan.com^$third-party (easyprivacy.txt: 3319) +.fruitflan.com +# ||friendbuy.com^$third-party (easyprivacy.txt: 3318) +.friendbuy.com +# ||freshplum.com^$third-party (easyprivacy.txt: 3317) +.freshplum.com +# ||freshcounter.com^$third-party (easyprivacy.txt: 3316) +.freshcounter.com +# ||frescoerspica.com^$third-party (easyprivacy.txt: 3315) +.frescoerspica.com +# ||freeweblogger.com^$third-party (easyprivacy.txt: 3314) +.freeweblogger.com +# ||freeusersonline.com^$third-party (easyprivacy.txt: 3313) +.freeusersonline.com +# ||freetrafficsystem.com^$third-party (easyprivacy.txt: 3312) +.freetrafficsystem.com +# ||freestats.com^$third-party (easyprivacy.txt: 3311) +.freestats.com +# ||freesitemapgenerator.com^$third-party (easyprivacy.txt: 3310) +.freesitemapgenerator.com +# ||freeonlineusers.com^$third-party (easyprivacy.txt: 3309) +.freeonlineusers.com +# ||freelogs.com^$third-party (easyprivacy.txt: 3308) +.freelogs.com +# ||freehitscounter.org^$third-party (easyprivacy.txt: 3307) +.freehitscounter.org +# ||freegeoip.net^$third-party (easyprivacy.txt: 3306) +.freegeoip.net +# ||freecounterstat.com^$third-party (easyprivacy.txt: 3305) +.freecounterstat.com +# ||freecountercode.com^$third-party (easyprivacy.txt: 3304) +.freecountercode.com +# ||freebloghitcounter.com^$third-party (easyprivacy.txt: 3303) +.freebloghitcounter.com +# ||free-website-statistics.com^$third-party (easyprivacy.txt: 3302) +.free-website-statistics.com +# ||free-website-hit-counters.com^$third-party (easyprivacy.txt: 3301) +.free-website-hit-counters.com +# ||free-counters.co.uk^$third-party (easyprivacy.txt: 3300) +.free-counters.co.uk +# ||free-counter.com^$third-party (easyprivacy.txt: 3299) +.free-counter.com +# ||free-counter.co.uk^$third-party (easyprivacy.txt: 3298) +.free-counter.co.uk +# ||fqtag.com^$third-party (easyprivacy.txt: 3297) +.fqtag.com +# ||fprnt.com^$third-party (easyprivacy.txt: 3296) +.fprnt.com +# ||fpctraffic2.com^$third-party (easyprivacy.txt: 3295) +.fpctraffic2.com +# ||foundry42.com^$third-party (easyprivacy.txt: 3294) +.foundry42.com +# ||forter.com^$third-party (easyprivacy.txt: 3293) +.forter.com +# ||formisimo.com^$third-party (easyprivacy.txt: 3292) +.formisimo.com +# ||formalyzer.com^$third-party (easyprivacy.txt: 3291) +.formalyzer.com +# ||foreseeresults.com^$third-party (easyprivacy.txt: 3290) +.foreseeresults.com +# ||forensics1000.com^$third-party (easyprivacy.txt: 3289) +.forensics1000.com +# ||force24.co.uk^$third-party (easyprivacy.txt: 3288) +.force24.co.uk +# ||footprintlive.com^$third-party (easyprivacy.txt: 3287) +.footprintlive.com +# ||followercounter.com^$third-party (easyprivacy.txt: 3286) +.followercounter.com +# ||flyingpt.com^$third-party (easyprivacy.txt: 3285) +.flyingpt.com +# ||flxpxl.com^$third-party (easyprivacy.txt: 3284) +.flxpxl.com +# ||flx1.com^$third-party (easyprivacy.txt: 3283) +.flx1.com +# ||flurry.com^$third-party (easyprivacy.txt: 3282) +.flurry.com +# ||fluencymedia.com^$third-party (easyprivacy.txt: 3281) +.fluencymedia.com +# ||fluctuo.com^$third-party (easyprivacy.txt: 3280) +.fluctuo.com +# ||flowstats.net^$third-party (easyprivacy.txt: 3279) +.flowstats.net +# ||flixsyndication.net^$third-party (easyprivacy.txt: 3278) +.flixsyndication.net +# ||flixfacts.com^$third-party (easyprivacy.txt: 3277) +.flixfacts.com +# ||flixfacts.co.uk^$third-party (easyprivacy.txt: 3276) +.flixfacts.co.uk +# ||flixcar.com^$third-party (easyprivacy.txt: 3275) +.flixcar.com +# ||flix360.com^$third-party (easyprivacy.txt: 3274) +.flix360.com +# ||flcounter.com^$third-party (easyprivacy.txt: 3273) +.flcounter.com +# ||flashgamestats.com^$third-party (easyprivacy.txt: 3272) +.flashgamestats.com +# ||flashadengine.com^$third-party (easyprivacy.txt: 3271) +.flashadengine.com +# ||flash-stat.com^$third-party (easyprivacy.txt: 3270) +.flash-stat.com +# ||flash-counter.com^$third-party (easyprivacy.txt: 3269) +.flash-counter.com +# ||flagcounter.com^$third-party (easyprivacy.txt: 3268) +.flagcounter.com +# ||fishhoo.com^$third-party (easyprivacy.txt: 3267) +.fishhoo.com +# ||finderlocator.com^$third-party (easyprivacy.txt: 3266) +.finderlocator.com +# ||find-ip-address.org^$third-party (easyprivacy.txt: 3265) +.find-ip-address.org +# ||finalid.com^$third-party (easyprivacy.txt: 3264) +.finalid.com +# ||filitrac.com^$third-party (easyprivacy.txt: 3263) +.filitrac.com +# ||fiksu.com^$third-party (easyprivacy.txt: 3262) +.fiksu.com +# ||fetchback.com^$third-party (easyprivacy.txt: 3261) +.fetchback.com +# ||feedperfect.com^$third-party (easyprivacy.txt: 3260) +.feedperfect.com +# ||feedjit.com^$third-party (easyprivacy.txt: 3259) +.feedjit.com +# ||feedcat.net^$third-party (easyprivacy.txt: 3258) +.feedcat.net +# ||fathomseo.com^$third-party (easyprivacy.txt: 3257) +.fathomseo.com +# ||fastwebcounter.com^$third-party (easyprivacy.txt: 3256) +.fastwebcounter.com +# ||fastonlineusers.com^$third-party (easyprivacy.txt: 3255) +.fastonlineusers.com +# ||fastly-analytics.com^$third-party (easyprivacy.txt: 3254) +.fastly-analytics.com +# ||fastanalytic.com^$third-party (easyprivacy.txt: 3253) +.fastanalytic.com +# ||fast-thinking.co.uk^$third-party (easyprivacy.txt: 3252) +.fast-thinking.co.uk +# ||farmer.wego.com^$third-party (easyprivacy.txt: 3251) +.farmer.wego.com +# ||fanplayr.com^$third-party (easyprivacy.txt: 3250) +.fanplayr.com +# ||factortg.com^$third-party (easyprivacy.txt: 3249) +.factortg.com +# ||fabricww.com^$third-party (easyprivacy.txt: 3248) +.fabricww.com +# ||ezytrack.com^$third-party (easyprivacy.txt: 3247) +.ezytrack.com +# ||ezec.co.uk^$third-party (easyprivacy.txt: 3246) +.ezec.co.uk +# ||eyein.com^$third-party (easyprivacy.txt: 3245) +.eyein.com +# ||extreme-dm.com^$third-party (easyprivacy.txt: 3244) +.extreme-dm.com +# ||extole.com^$third-party (easyprivacy.txt: 3243) +.extole.com +# ||explore-123.com^$third-party (easyprivacy.txt: 3242) +.explore-123.com +# ||exitmonitor.com^$third-party (easyprivacy.txt: 3241) +.exitmonitor.com +# ||exelator.com^$third-party (easyprivacy.txt: 3240) +.exelator.com +# ||exclusiveclicks.com^$third-party (easyprivacy.txt: 3239) +.exclusiveclicks.com +# ||ewebcounter.com^$third-party (easyprivacy.txt: 3238) +.ewebcounter.com +# ||ewebanalytics.com^$third-party (easyprivacy.txt: 3237) +.ewebanalytics.com +# ||evyy.net^$third-party (easyprivacy.txt: 3236) +.evyy.net +# ||evolvemediametrics.com^$third-party (easyprivacy.txt: 3235) +.evolvemediametrics.com +# ||evisitcs2.com^$third-party (easyprivacy.txt: 3234) +.evisitcs2.com +# ||evisitcs.com^$third-party (easyprivacy.txt: 3233) +.evisitcs.com +# ||evisitanalyst.com^$third-party (easyprivacy.txt: 3232) +.evisitanalyst.com +# ||evergage.com^$third-party (easyprivacy.txt: 3231) +.evergage.com +# ||everesttech.net^$third-party (easyprivacy.txt: 3230) +.everesttech.net +# ||everestjs.net^$third-party (easyprivacy.txt: 3229) +.everestjs.net +# ||evanetpro.com^$third-party (easyprivacy.txt: 3228) +.evanetpro.com +# ||europuls.net^$third-party (easyprivacy.txt: 3227) +.europuls.net +# ||europuls.eu^$third-party (easyprivacy.txt: 3226) +.europuls.eu +# ||europagerank.com^$third-party (easyprivacy.txt: 3225) +.europagerank.com +# ||eum-appdynamics.com^$third-party (easyprivacy.txt: 3224) +.eum-appdynamics.com +# ||euleriancdn.net^$third-party (easyprivacy.txt: 3223) +.euleriancdn.net +# ||eulerian.net^$third-party (easyprivacy.txt: 3222) +.eulerian.net +# ||eu-survey.com^$third-party (easyprivacy.txt: 3221) +.eu-survey.com +# ||etyper.com^$third-party (easyprivacy.txt: 3220) +.etyper.com +# ||etrigue.com^$third-party (easyprivacy.txt: 3219) +.etrigue.com +# ||etrafficstats.com^$third-party (easyprivacy.txt: 3218) +.etrafficstats.com +# ||etrafficcounter.com^$third-party (easyprivacy.txt: 3217) +.etrafficcounter.com +# ||etracker.com^$third-party (easyprivacy.txt: 3216) +.etracker.com +# ||ethnio.com^$third-party (easyprivacy.txt: 3215) +.ethnio.com +# ||ethn.io^$third-party (easyprivacy.txt: 3214) +.ethn.io +# ||etherealhakai.com^$third-party (easyprivacy.txt: 3213) +.etherealhakai.com +# ||etahub.com^$third-party (easyprivacy.txt: 3212) +.etahub.com +# ||estrack.net^$third-party (easyprivacy.txt: 3211) +.estrack.net +# ||esomniture.com^$third-party (easyprivacy.txt: 3210) +.esomniture.com +# ||esm1.net^$third-party (easyprivacy.txt: 3209) +.esm1.net +# ||esearchvision.com^$third-party (easyprivacy.txt: 3208) +.esearchvision.com +# ||ereportz.com^$third-party (easyprivacy.txt: 3207) +.ereportz.com +# ||eps-analyzer.de^$third-party (easyprivacy.txt: 3206) +.eps-analyzer.de +# ||eproof.com^$third-party (easyprivacy.txt: 3205) +.eproof.com +# ||epitrack.com^$third-party (easyprivacy.txt: 3204) +.epitrack.com +# ||epilot.com^$third-party (easyprivacy.txt: 3203) +.epilot.com +# ||eperfectdata.com^$third-party (easyprivacy.txt: 3202) +.eperfectdata.com +# ||enticelabs.com^$third-party (easyprivacy.txt: 3201) +.enticelabs.com +# ||ensighten.com^$third-party (easyprivacy.txt: 3200) +.ensighten.com +# ||enquisite.com^$third-party (easyprivacy.txt: 3199) +.enquisite.com +# ||enhance.com^$third-party (easyprivacy.txt: 3198) +.enhance.com +# ||engine64.com^$third-party (easyprivacy.txt: 3197) +.engine64.com +# ||engine212.com^$third-party (easyprivacy.txt: 3196) +.engine212.com +# ||enectoanalytics.com^$third-party (easyprivacy.txt: 3195) +.enectoanalytics.com +# ||enecto.com^$third-party (easyprivacy.txt: 3194) +.enecto.com +# ||emltrk.com^$third-party (easyprivacy.txt: 3193) +.emltrk.com +# ||emjcd.com^$third-party (easyprivacy.txt: 3192) +.emjcd.com +# ||emediatrack.com^$third-party (easyprivacy.txt: 3191) +.emediatrack.com +# ||email-match.com^$third-party (easyprivacy.txt: 3190) +.email-match.com +# ||eloqua.com^$third-party (easyprivacy.txt: 3189) +.eloqua.com +# ||elitics.com^$third-party (easyprivacy.txt: 3188) +.elitics.com +# ||elite-s001.com^$third-party (easyprivacy.txt: 3187) +.elite-s001.com +# ||electusdigital.com^$third-party (easyprivacy.txt: 3186) +.electusdigital.com +# ||ela-3-tnk.com^$third-party (easyprivacy.txt: 3185) +.ela-3-tnk.com +# ||ekmpinpoint.com^$third-party (easyprivacy.txt: 3184) +.ekmpinpoint.com +# ||ekmpinpoint.co.uk^$third-party (easyprivacy.txt: 3183) +.ekmpinpoint.co.uk +# ||edgeadx.net^$third-party (easyprivacy.txt: 3182) +.edgeadx.net +# ||ecustomeropinions.com^$third-party (easyprivacy.txt: 3181) +.ecustomeropinions.com +# ||ecommstats.com^$third-party (easyprivacy.txt: 3180) +.ecommstats.com +# ||ecn5.com^$third-party (easyprivacy.txt: 3179) +.ecn5.com +# ||ec-track.com^$third-party (easyprivacy.txt: 3178) +.ec-track.com +# ||ebtrk1.com^$third-party (easyprivacy.txt: 3177) +.ebtrk1.com +# ||easyresearch.se^$third-party (easyprivacy.txt: 3176) +.easyresearch.se +# ||easyhitcounters.com^$third-party (easyprivacy.txt: 3175) +.easyhitcounters.com +# ||easycounter.com^$third-party (easyprivacy.txt: 3174) +.easycounter.com +# ||easy-hit-counters.com^$third-party (easyprivacy.txt: 3173) +.easy-hit-counters.com +# ||earnitup.com^$third-party (easyprivacy.txt: 3172) +.earnitup.com +# ||e-zeeinternet.com^$third-party (easyprivacy.txt: 3171) +.e-zeeinternet.com +# ||e-referrer.com^$third-party (easyprivacy.txt: 3170) +.e-referrer.com +# ||e-pagerank.net^$third-party (easyprivacy.txt: 3169) +.e-pagerank.net +# ||dyntrk.com^$third-party (easyprivacy.txt: 3168) +.dyntrk.com +# ||dwin2.com^$third-party (easyprivacy.txt: 3167) +.dwin2.com +# ||dwin1.com^$third-party (easyprivacy.txt: 3166) +.dwin1.com +# ||dv0.info^$third-party (easyprivacy.txt: 3165) +.dv0.info +# ||dummy-domain-do-not-change.com^$third-party (easyprivacy.txt: 3164) +.dummy-domain-do-not-change.com +# ||dtscout.com^$third-party (easyprivacy.txt: 3163) +.dtscout.com +# ||dti-ranker.com^$third-party (easyprivacy.txt: 3162) +.dti-ranker.com +# ||dstrack2.info^$third-party (easyprivacy.txt: 3161) +.dstrack2.info +# ||dsply.com^$third-party (easyprivacy.txt: 3160) +.dsply.com +# ||dsparking.com^$third-party (easyprivacy.txt: 3159) +.dsparking.com +# ||dsmmadvantage.com^$third-party (easyprivacy.txt: 3158) +.dsmmadvantage.com +# ||dps-reach.com^$third-party (easyprivacy.txt: 3157) +.dps-reach.com +# ||downture.in^$third-party (easyprivacy.txt: 3156) +.downture.in +# ||doubleclick.net^*/trackimp/$third-party (easyprivacy.txt: 3155) +.doubleclick.net/.*/trackimp/ +# ||doubleclick.net^$image,third-party (easyprivacy.txt: 3154) +.doubleclick.net +# ||doubleclick.net/pixel?$third-party (easyprivacy.txt: 3153) +.doubleclick.net/pixel\? +# ||doubleclick.net/json?$third-party (easyprivacy.txt: 3152) +.doubleclick.net/json\? +# ||doubleclick.net/imp;$third-party (easyprivacy.txt: 3151) +.doubleclick.net/imp; +# ||doubleclick.net/imp%$third-party (easyprivacy.txt: 3150) +.doubleclick.net/imp% +# ||doubleclick.net/activity$third-party (easyprivacy.txt: 3149) +.doubleclick.net/activity +# ||dotomi.com^$third-party (easyprivacy.txt: 3148) +.dotomi.com +# ||domodomain.com^$third-party (easyprivacy.txt: 3147) +.domodomain.com +# ||dominocounter.net^$third-party (easyprivacy.txt: 3146) +.dominocounter.net +# ||doclix.com^$third-party (easyprivacy.txt: 3145) +.doclix.com +# ||dmtry.com^$third-party (easyprivacy.txt: 3144) +.dmtry.com +# ||dmtracker.com^$third-party (easyprivacy.txt: 3143) +.dmtracker.com +# ||dmd53.com^$third-party (easyprivacy.txt: 3142) +.dmd53.com +# ||dmclick.cn^$third-party (easyprivacy.txt: 3141) +.dmclick.cn +# ||dmanalytics1.com^$third-party (easyprivacy.txt: 3140) +.dmanalytics1.com +# ||dlrowehtfodne.com^$third-party (easyprivacy.txt: 3139) +.dlrowehtfodne.com +# ||djers.com^$third-party (easyprivacy.txt: 3138) +.djers.com +# ||distralytics.com^$third-party (easyprivacy.txt: 3137) +.distralytics.com +# ||displaymarketplace.com^$third-party (easyprivacy.txt: 3136) +.displaymarketplace.com +# ||discovertrail.net^$third-party (easyprivacy.txt: 3135) +.discovertrail.net +# ||discover-path.com^$third-party (easyprivacy.txt: 3134) +.discover-path.com +# ||directrdr.com^$third-party (easyprivacy.txt: 3133) +.directrdr.com +# ||dinkstat.com^$third-party (easyprivacy.txt: 3132) +.dinkstat.com +# ||dimml.io^$third-party (easyprivacy.txt: 3131) +.dimml.io +# ||dimestore.com^$third-party (easyprivacy.txt: 3130) +.dimestore.com +# ||dignow.org^$third-party (easyprivacy.txt: 3129) +.dignow.org +# ||digitaloptout.com^$third-party (easyprivacy.txt: 3128) +.digitaloptout.com +# ||digdeepdigital.com.au^$third-party (easyprivacy.txt: 3127) +.digdeepdigital.com.au +# ||diffusion-tracker.com^$third-party (easyprivacy.txt: 3126) +.diffusion-tracker.com +# ||didit.com^$third-party (easyprivacy.txt: 3125) +.didit.com +# ||did-it.com^$third-party (easyprivacy.txt: 3124) +.did-it.com +# ||dhmtracking.co.za^$third-party (easyprivacy.txt: 3123) +.dhmtracking.co.za +# ||dgmsearchlab.com^$third-party (easyprivacy.txt: 3122) +.dgmsearchlab.com +# ||device9.com^$third-party (easyprivacy.txt: 3121) +.device9.com +# ||deqwas.net^$third-party (easyprivacy.txt: 3120) +.deqwas.net +# ||demdex.net^$third-party (easyprivacy.txt: 3119) +.demdex.net +# ||demandbase.com^$third-party (easyprivacy.txt: 3118) +.demandbase.com +# ||dejavu.mlapps.com^$third-party (easyprivacy.txt: 3117) +.dejavu.mlapps.com +# ||declaredthoughtfulness.co^$third-party (easyprivacy.txt: 3116) +.declaredthoughtfulness.co +# ||decideinteractive.com^$third-party (easyprivacy.txt: 3115) +.decideinteractive.com +# ||decibelinsight.net^$third-party (easyprivacy.txt: 3114) +.decibelinsight.net +# ||decdna.net^$third-party (easyprivacy.txt: 3113) +.decdna.net +# ||dc.tremormedia.com^$third-party (easyprivacy.txt: 3112) +.dc.tremormedia.com +# ||dc-storm.com^$third-party (easyprivacy.txt: 3111) +.dc-storm.com +# ||daylogs.com^$third-party (easyprivacy.txt: 3110) +.daylogs.com +# ||daylife-analytics.com^$third-party (easyprivacy.txt: 3109) +.daylife-analytics.com +# ||datvantage.com^$third-party (easyprivacy.txt: 3108) +.datvantage.com +# ||datam.com^$third-party (easyprivacy.txt: 3107) +.datam.com +# ||datafeedfile.com^$third-party (easyprivacy.txt: 3106) +.datafeedfile.com +# ||datacaciques.com^$third-party (easyprivacy.txt: 3105) +.datacaciques.com +# ||databrain.com^$third-party (easyprivacy.txt: 3104) +.databrain.com +# ||data-analytics.jp^$third-party (easyprivacy.txt: 3103) +.data-analytics.jp +# ||dashboard.io^$third-party (easyprivacy.txt: 3102) +.dashboard.io +# ||dapxl.com^$third-party (easyprivacy.txt: 3101) +.dapxl.com +# ||dailycaller-alerts.com^$third-party (easyprivacy.txt: 3100) +.dailycaller-alerts.com +# ||dadi.technology^$third-party (easyprivacy.txt: 3099) +.dadi.technology +# ||dacounter.com^$third-party (easyprivacy.txt: 3098) +.dacounter.com +# ||cytoclause.com^$third-party (easyprivacy.txt: 3097) +.cytoclause.com +# ||cybermonitor.com^$third-party (easyprivacy.txt: 3096) +.cybermonitor.com +# ||cya2.net^$third-party (easyprivacy.txt: 3095) +.cya2.net +# ||cxt.ms^$third-party (easyprivacy.txt: 3094) +.cxt.ms +# ||cxense.com^$third-party (easyprivacy.txt: 3093) +.cxense.com +# ||customerdiscoverytrack.com^$third-party (easyprivacy.txt: 3092) +.customerdiscoverytrack.com +# ||customerconversio.com^$third-party (easyprivacy.txt: 3091) +.customerconversio.com +# ||customer.io^$third-party (easyprivacy.txt: 3090) +.customer.io +# ||curalate.com^$third-party (easyprivacy.txt: 3089) +.curalate.com +# ||ctnsnet.com^$third-party (easyprivacy.txt: 3088) +.ctnsnet.com +# ||csi-tracking.com^$third-party (easyprivacy.txt: 3087) +.csi-tracking.com +# ||csdata1.com^$third-party (easyprivacy.txt: 3086) +.csdata1.com +# ||crwdcntrl.net^$third-party (easyprivacy.txt: 3085) +.crwdcntrl.net +# ||crsspxl.com^$third-party (easyprivacy.txt: 3084) +.crsspxl.com +# ||crowdtwist.com^$third-party (easyprivacy.txt: 3083) +.crowdtwist.com +# ||crowdskout.com^$third-party (easyprivacy.txt: 3082) +.crowdskout.com +# ||crowdscience.com^$third-party (easyprivacy.txt: 3081) +.crowdscience.com +# ||crosswalkmail.com^$third-party (easyprivacy.txt: 3080) +.crosswalkmail.com +# ||crosspixel.net^$third-party (easyprivacy.txt: 3079) +.crosspixel.net +# ||crmmetrixwris.com^$third-party (easyprivacy.txt: 3078) +.crmmetrixwris.com +# ||crmmetrix.fr^$third-party (easyprivacy.txt: 3077) +.crmmetrix.fr +# ||criteo.net^$third-party (easyprivacy.txt: 3076) +.criteo.net +# ||criteo.com^$third-party (easyprivacy.txt: 3075) +.criteo.com +# ||crazyegg.com^$third-party (easyprivacy.txt: 3074) +.crazyegg.com +# ||craktraffic.com^$third-party (easyprivacy.txt: 3073) +.craktraffic.com +# ||craftkeys.com^$third-party (easyprivacy.txt: 3072) +.craftkeys.com +# ||cqcounter.com^$third-party (easyprivacy.txt: 3071) +.cqcounter.com +# ||cpx.to^$third-party (easyprivacy.txt: 3070) +.cpx.to +# ||cpcmanager.com^$third-party (easyprivacy.txt: 3069) +.cpcmanager.com +# ||countz.com^$third-party (easyprivacy.txt: 3068) +.countz.com +# ||countomat.com^$third-party (easyprivacy.txt: 3067) +.countomat.com +# ||countingbiz.info^$third-party (easyprivacy.txt: 3066) +.countingbiz.info +# ||counting4free.com^$third-party (easyprivacy.txt: 3065) +.counting4free.com +# ||counterviews.net^$third-party (easyprivacy.txt: 3064) +.counterviews.net +# ||countertracker.com^$third-party (easyprivacy.txt: 3063) +.countertracker.com +# ||countersforlife.com^$third-party (easyprivacy.txt: 3062) +.countersforlife.com +# ||counterservis.com^$third-party (easyprivacy.txt: 3061) +.counterservis.com +# ||counters4u.com^$third-party (easyprivacy.txt: 3060) +.counters4u.com +# ||counterland.com^$third-party (easyprivacy.txt: 3059) +.counterland.com +# ||countergeo.com^$third-party (easyprivacy.txt: 3058) +.countergeo.com +# ||countercentral.com^$third-party (easyprivacy.txt: 3057) +.countercentral.com +# ||counterbot.com^$third-party (easyprivacy.txt: 3056) +.counterbot.com +# ||counter160.com^$third-party (easyprivacy.txt: 3055) +.counter160.com +# ||counter.top.kg^$third-party (easyprivacy.txt: 3054) +.counter.top.kg +# ||counter.gd^$third-party (easyprivacy.txt: 3053) +.counter.gd +# ||countby.com^$third-party (easyprivacy.txt: 3052) +.countby.com +# ||cost1action.com^$third-party (easyprivacy.txt: 3051) +.cost1action.com +# ||cormce.com^$third-party (easyprivacy.txt: 3050) +.cormce.com +# ||coremotives.com^$third-party (easyprivacy.txt: 3049) +.coremotives.com +# ||coremetrics.com^$third-party (easyprivacy.txt: 3048) +.coremetrics.com +# ||core-cen-54.com^$third-party (easyprivacy.txt: 3047) +.core-cen-54.com +# ||copperegg.com^$third-party (easyprivacy.txt: 3046) +.copperegg.com +# ||copacast.net^$third-party (easyprivacy.txt: 3045) +.copacast.net +# ||cooladata.com^$third-party (easyprivacy.txt: 3044) +.cooladata.com +# ||convertro.com^$third-party (easyprivacy.txt: 3043) +.convertro.com +# ||convertmarketing.net^$third-party (easyprivacy.txt: 3042) +.convertmarketing.net +# ||convertglobal.com^$third-party (easyprivacy.txt: 3041) +.convertglobal.com +# ||convertexperiments.com^$third-party (easyprivacy.txt: 3040) +.convertexperiments.com +# ||conversionruler.com^$third-party (easyprivacy.txt: 3039) +.conversionruler.com +# ||conversionly.com^$third-party (easyprivacy.txt: 3038) +.conversionly.com +# ||conversionlogic.net^$third-party (easyprivacy.txt: 3037) +.conversionlogic.net +# ||convergetrack.com^$third-party (easyprivacy.txt: 3036) +.convergetrack.com +# ||continue.com^$third-party (easyprivacy.txt: 3035) +.continue.com +# ||contextly.com^$third-party (easyprivacy.txt: 3034) +.contextly.com +# ||contentspread.net^$third-party (easyprivacy.txt: 3033) +.contentspread.net +# ||contentinsights.com^$third-party (easyprivacy.txt: 3032) +.contentinsights.com +# ||contentexchange.me^$third-party (easyprivacy.txt: 3031) +.contentexchange.me +# ||contemporaryceremonies.ca^$third-party (easyprivacy.txt: 3030) +.contemporaryceremonies.ca +# ||contactmonkey.com^$third-party (easyprivacy.txt: 3029) +.contactmonkey.com +# ||confirmit.com^$third-party (easyprivacy.txt: 3028) +.confirmit.com +# ||confirmational.com^$third-party (easyprivacy.txt: 3027) +.confirmational.com +# ||compteur.cc^$third-party (easyprivacy.txt: 3026) +.compteur.cc +# ||company-target.com^$third-party (easyprivacy.txt: 3025) +.company-target.com +# ||commander1.com^$third-party (easyprivacy.txt: 3024) +.commander1.com +# ||collserve.com^$third-party (easyprivacy.txt: 3023) +.collserve.com +# ||collarity.com^$third-party (easyprivacy.txt: 3022) +.collarity.com +# ||cognitivematch.com^$third-party (easyprivacy.txt: 3021) +.cognitivematch.com +# ||cogmatch.net^$third-party (easyprivacy.txt: 3020) +.cogmatch.net +# ||codata.ru^$third-party (easyprivacy.txt: 3019) +.codata.ru +# ||cnzz.com^$third-party (easyprivacy.txt: 3018) +.cnzz.com +# ||cnxweb.com^$third-party (easyprivacy.txt: 3017) +.cnxweb.com +# ||cnt1.net^$third-party (easyprivacy.txt: 3016) +.cnt1.net +# ||cmptch.com^$third-party (easyprivacy.txt: 3015) +.cmptch.com +# ||cmmeglobal.com^$third-party (easyprivacy.txt: 3014) +.cmmeglobal.com +# ||cmcore.com^$third-party (easyprivacy.txt: 3013) +.cmcore.com +# ||clustrmaps.com^$third-party (easyprivacy.txt: 3012) +.clustrmaps.com +# ||cloud-exploration.com^$third-party (easyprivacy.txt: 3011) +.cloud-exploration.com +# ||clixpy.com^$third-party (easyprivacy.txt: 3010) +.clixpy.com +# ||clixcount.com^$third-party (easyprivacy.txt: 3009) +.clixcount.com +# ||clickzzs.nl^$third-party (easyprivacy.txt: 3008) +.clickzzs.nl +# ||clickzs.com^$third-party (easyprivacy.txt: 3007) +.clickzs.com +# ||clicktracks.com^$third-party (easyprivacy.txt: 3006) +.clicktracks.com +# ||clicktrack1.com^$third-party (easyprivacy.txt: 3005) +.clicktrack1.com +# ||clicktale.net^$third-party (easyprivacy.txt: 3004) +.clicktale.net +# ||clickstream.co.za^$third-party (easyprivacy.txt: 3003) +.clickstream.co.za +# ||clickshift.com^$third-party (easyprivacy.txt: 3002) +.clickshift.com +# ||clicksen.se^$third-party (easyprivacy.txt: 3001) +.clicksen.se +# ||clicksagent.com^$third-party (easyprivacy.txt: 3000) +.clicksagent.com +# ||clickreport.com^$third-party (easyprivacy.txt: 2999) +.clickreport.com +# ||clickpathmedia.com^$third-party (easyprivacy.txt: 2998) +.clickpathmedia.com +# ||clickmeter.com^$third-party (easyprivacy.txt: 2997) +.clickmeter.com +# ||clickmanage.com^$third-party (easyprivacy.txt: 2996) +.clickmanage.com +# ||clickinc.com^$third-party (easyprivacy.txt: 2995) +.clickinc.com +# ||clickigniter.io^$third-party (easyprivacy.txt: 2994) +.clickigniter.io +# ||clickforensics.com^$third-party (easyprivacy.txt: 2993) +.clickforensics.com +# ||clickening.com^$third-party (easyprivacy.txt: 2992) +.clickening.com +# ||clickdimensions.com^$third-party (easyprivacy.txt: 2991) +.clickdimensions.com +# ||clickdensity.com^$third-party (easyprivacy.txt: 2990) +.clickdensity.com +# ||clickconversion.net^$third-party (easyprivacy.txt: 2989) +.clickconversion.net +# ||clickcloud.info^$third-party (easyprivacy.txt: 2988) +.clickcloud.info +# ||clickclick.net^$third-party (easyprivacy.txt: 2987) +.clickclick.net +# ||clickalyzer.com^$third-party (easyprivacy.txt: 2986) +.clickalyzer.com +# ||clickaider.com^$third-party (easyprivacy.txt: 2985) +.clickaider.com +# ||clickable.net^$third-party (easyprivacy.txt: 2984) +.clickable.net +# ||click4assistance.co.uk^$third-party (easyprivacy.txt: 2983) +.click4assistance.co.uk +# ||click2meter.com^$third-party (easyprivacy.txt: 2982) +.click2meter.com +# ||click-url.com^$third-party (easyprivacy.txt: 2981) +.click-url.com +# ||click-linking.com^$third-party (easyprivacy.txt: 2980) +.click-linking.com +# ||clevi.com^$third-party (easyprivacy.txt: 2979) +.clevi.com +# ||cleveritics.com^$third-party (easyprivacy.txt: 2978) +.cleveritics.com +# ||clearviewstats.com^$third-party (easyprivacy.txt: 2977) +.clearviewstats.com +# ||cleananalytics.com^$third-party (easyprivacy.txt: 2976) +.cleananalytics.com +# ||claritytag.com^$third-party (easyprivacy.txt: 2975) +.claritytag.com +# ||clarifyingquack.com^$third-party (easyprivacy.txt: 2974) +.clarifyingquack.com +# ||circular-counters.com^$third-party (easyprivacy.txt: 2973) +.circular-counters.com +# ||chrumedia.com^$third-party (easyprivacy.txt: 2972) +.chrumedia.com +# ||christmalicious.com^$third-party (easyprivacy.txt: 2971) +.christmalicious.com +# ||christiantop1000.com^$third-party (easyprivacy.txt: 2970) +.christiantop1000.com +# ||cheezburger-analytics.com^$third-party (easyprivacy.txt: 2969) +.cheezburger-analytics.com +# ||checkstat.nl^$third-party (easyprivacy.txt: 2968) +.checkstat.nl +# ||checkmypr.net^$third-party (easyprivacy.txt: 2967) +.checkmypr.net +# ||chartbeat.net^$third-party (easyprivacy.txt: 2966) +.chartbeat.net +# ||chartbeat.com^$third-party (easyprivacy.txt: 2965) +.chartbeat.com +# ||chartaca.com^$third-party (easyprivacy.txt: 2964) +.chartaca.com +# ||cftrack.com^$third-party (easyprivacy.txt: 2963) +.cftrack.com +# ||cetrk.com^$third-party (easyprivacy.txt: 2962) +.cetrk.com +# ||centraltag.com^$third-party (easyprivacy.txt: 2961) +.centraltag.com +# ||celebros-analytics.com^$third-party (easyprivacy.txt: 2960) +.celebros-analytics.com +# ||cedexis.net^$third-party (easyprivacy.txt: 2959) +.cedexis.net +# ||cedexis.com^$third-party (easyprivacy.txt: 2958) +.cedexis.com +# ||castelein.nu^$third-party (easyprivacy.txt: 2957) +.castelein.nu +# ||cashcount.com^$third-party (easyprivacy.txt: 2956) +.cashcount.com +# ||cashburners.com^$third-party (easyprivacy.txt: 2955) +.cashburners.com +# ||captivate.ai^$third-party (easyprivacy.txt: 2954) +.captivate.ai +# ||caphyon-analytics.com^$third-party (easyprivacy.txt: 2953) +.caphyon-analytics.com +# ||canopylabs.com^$third-party (easyprivacy.txt: 2952) +.canopylabs.com +# ||canddi.com^$third-party (easyprivacy.txt: 2951) +.canddi.com +# ||campaigncog.com^$third-party (easyprivacy.txt: 2950) +.campaigncog.com +# ||calltracks.com^$third-party (easyprivacy.txt: 2949) +.calltracks.com +# ||calltrackingmetrics.com^$third-party (easyprivacy.txt: 2948) +.calltrackingmetrics.com +# ||callrail.com^$third-party (easyprivacy.txt: 2947) +.callrail.com +# ||callmeasurement.com^$third-party (easyprivacy.txt: 2946) +.callmeasurement.com +# ||callisto.fm^$third-party (easyprivacy.txt: 2945) +.callisto.fm +# ||callingjustified.com^$third-party (easyprivacy.txt: 2944) +.callingjustified.com +# ||call-tracking.co.uk^$third-party (easyprivacy.txt: 2943) +.call-tracking.co.uk +# ||cadreon.com^$third-party (easyprivacy.txt: 2942) +.cadreon.com +# ||cache.fm^$third-party (easyprivacy.txt: 2941) +.cache.fm +# ||cache.am^$third-party (easyprivacy.txt: 2940) +.cache.am +# ||c4tw.net^$third-party (easyprivacy.txt: 2939) +.c4tw.net +# ||c4tracking01.com^$third-party (easyprivacy.txt: 2938) +.c4tracking01.com +# ||c3tag.com^$third-party (easyprivacy.txt: 2937) +.c3tag.com +# ||c3metrics.com^$third-party (easyprivacy.txt: 2936) +.c3metrics.com +# ||c1exchange.com^$third-party (easyprivacy.txt: 2935) +.c1exchange.com +# ||c.hit.ua^$third-party (easyprivacy.txt: 2934) +.c.hit.ua +# ||c.adroll.com^$third-party (easyprivacy.txt: 2933) +.c.adroll.com +# ||c-webstats.de^$third-party (easyprivacy.txt: 2932) +.c-webstats.de +# ||c-o-u-n-t.com^$third-party (easyprivacy.txt: 2931) +.c-o-u-n-t.com +# ||bytemgdd.com^$third-party (easyprivacy.txt: 2930) +.bytemgdd.com +# ||buzzdeck.com^$third-party (easyprivacy.txt: 2929) +.buzzdeck.com +# ||bux1le001.com^$third-party (easyprivacy.txt: 2928) +.bux1le001.com +# ||burt.io^$third-party (easyprivacy.txt: 2927) +.burt.io +# ||burstbeacon.com^$third-party (easyprivacy.txt: 2926) +.burstbeacon.com +# ||bugsnag.com^$third-party (easyprivacy.txt: 2925) +.bugsnag.com +# ||bugherd.com^$third-party (easyprivacy.txt: 2924) +.bugherd.com +# ||bubblestat.com^$third-party (easyprivacy.txt: 2923) +.bubblestat.com +# ||btttag.com^$third-party (easyprivacy.txt: 2922) +.btttag.com +# ||btstatic.com^$third-party (easyprivacy.txt: 2921) +.btstatic.com +# ||btbuckets.com^$third-party (easyprivacy.txt: 2920) +.btbuckets.com +# ||bstk.co^$third-party (easyprivacy.txt: 2919) +.bstk.co +# ||brsrvr.com^$third-party (easyprivacy.txt: 2918) +.brsrvr.com +# ||browser-statistik.de^$third-party (easyprivacy.txt: 2917) +.browser-statistik.de +# ||bronto.com^$third-party (easyprivacy.txt: 2916) +.bronto.com +# ||brilig.com^$third-party (easyprivacy.txt: 2915) +.brilig.com +# ||brightedge.com^$third-party (easyprivacy.txt: 2914) +.brightedge.com +# ||bridgevine.com^$third-party (easyprivacy.txt: 2913) +.bridgevine.com +# ||brcdn.com^$third-party (easyprivacy.txt: 2912) +.brcdn.com +# ||bouncex.com^$third-party (easyprivacy.txt: 2911) +.bouncex.com +# ||bounceexchange.com^$third-party (easyprivacy.txt: 2910) +.bounceexchange.com +# ||botsvisit.com^$third-party (easyprivacy.txt: 2909) +.botsvisit.com +# ||boomtrain.com^$third-party (easyprivacy.txt: 2908) +.boomtrain.com +# ||boomerang.com.au^$third-party (easyprivacy.txt: 2907) +.boomerang.com.au +# ||bnc.lt^$third-party (easyprivacy.txt: 2906) +.bnc.lt +# ||bmmetrix.com^$third-party (easyprivacy.txt: 2905) +.bmmetrix.com +# ||bmlmedia.com^$third-party (easyprivacy.txt: 2904) +.bmlmedia.com +# ||bm324.com^$third-party (easyprivacy.txt: 2903) +.bm324.com +# ||bm23.com^$third-party (easyprivacy.txt: 2902) +.bm23.com +# ||blvdstatus.com^$third-party (easyprivacy.txt: 2901) +.blvdstatus.com +# ||bluekai.com^$third-party (easyprivacy.txt: 2900) +.bluekai.com +# ||bluecava.com^$third-party (easyprivacy.txt: 2899) +.bluecava.com +# ||blogtoplist.com^$third-party (easyprivacy.txt: 2898) +.blogtoplist.com +# ||blogsontop.com^$third-party (easyprivacy.txt: 2897) +.blogsontop.com +# ||blogscounter.com^$third-party (easyprivacy.txt: 2896) +.blogscounter.com +# ||blogreaderproject.com^$third-party (easyprivacy.txt: 2895) +.blogreaderproject.com +# ||blogrankers.com^$third-party (easyprivacy.txt: 2894) +.blogrankers.com +# ||blogpatrol.com^$third-party (easyprivacy.txt: 2893) +.blogpatrol.com +# ||blogmeetsbrand.com^$third-party (easyprivacy.txt: 2892) +.blogmeetsbrand.com +# ||blog-stat.com^$third-party (easyprivacy.txt: 2891) +.blog-stat.com +# ||blockmetrics.com^$third-party (easyprivacy.txt: 2890) +.blockmetrics.com +# ||blizzardcheck.com^$third-party (easyprivacy.txt: 2889) +.blizzardcheck.com +# ||bkvtrack.com^$third-party (easyprivacy.txt: 2888) +.bkvtrack.com +# ||bkrtx.com^$third-party (easyprivacy.txt: 2887) +.bkrtx.com +# ||bizspring.net^$third-party (easyprivacy.txt: 2886) +.bizspring.net +# ||bizo.com^$third-party (easyprivacy.txt: 2885) +.bizo.com +# ||bizible.com^$third-party (easyprivacy.txt: 2884) +.bizible.com +# ||bitrix.info^$third-party (easyprivacy.txt: 2883) +.bitrix.info +# ||bionicclick.com^$third-party (easyprivacy.txt: 2882) +.bionicclick.com +# ||bigtracker.com^$third-party (easyprivacy.txt: 2881) +.bigtracker.com +# ||bigstats.net^$third-party (easyprivacy.txt: 2880) +.bigstats.net +# ||bigmir.net^$third-party (easyprivacy.txt: 2879) +.bigmir.net +# ||bigcattracks.com^$third-party (easyprivacy.txt: 2878) +.bigcattracks.com +# ||bidswitch.net^$third-party (easyprivacy.txt: 2877) +.bidswitch.net +# ||bfoleyinteractive.com^$third-party (easyprivacy.txt: 2876) +.bfoleyinteractive.com +# ||betarget.net^$third-party (easyprivacy.txt: 2875) +.betarget.net +# ||betarget.com^$third-party (easyprivacy.txt: 2874) +.betarget.com +# ||bestweb2013stat.lk^$third-party (easyprivacy.txt: 2873) +.bestweb2013stat.lk +# ||bestcontactform.com^$~image,third-party (easyprivacy.txt: 2872) +.bestcontactform.com +# ||best-top.de^$third-party (easyprivacy.txt: 2871) +.best-top.de +# ||berg-6-82.com^$third-party (easyprivacy.txt: 2870) +.berg-6-82.com +# ||benchit.com^$third-party (easyprivacy.txt: 2869) +.benchit.com +# ||belstat.nl^$third-party (easyprivacy.txt: 2868) +.belstat.nl +# ||belstat.fr^$third-party (easyprivacy.txt: 2867) +.belstat.fr +# ||belstat.de^$third-party (easyprivacy.txt: 2866) +.belstat.de +# ||belstat.com^$third-party (easyprivacy.txt: 2865) +.belstat.com +# ||belstat.ch^$third-party (easyprivacy.txt: 2864) +.belstat.ch +# ||belstat.be^$third-party (easyprivacy.txt: 2863) +.belstat.be +# ||belstat.at^$third-party (easyprivacy.txt: 2862) +.belstat.at +# ||behavioralengine.com^$third-party (easyprivacy.txt: 2861) +.behavioralengine.com +# ||beencounter.com^$third-party (easyprivacy.txt: 2860) +.beencounter.com +# ||beemrdwn.com^$third-party (easyprivacy.txt: 2859) +.beemrdwn.com +# ||bebj.com^$third-party (easyprivacy.txt: 2858) +.bebj.com +# ||beanstock.com^$third-party (easyprivacy.txt: 2857) +.beanstock.com +# ||beanstalkdata.com^$third-party (easyprivacy.txt: 2856) +.beanstalkdata.com +# ||beacon.kmi-us.com^$third-party (easyprivacy.txt: 2855) +.beacon.kmi-us.com +# ||baynote.net^$third-party (easyprivacy.txt: 2854) +.baynote.net +# ||basilic.io^$third-party (easyprivacy.txt: 2853) +.basilic.io +# ||basicstat.com^$third-party (easyprivacy.txt: 2852) +.basicstat.com +# ||barilliance.net^$third-party (easyprivacy.txt: 2851) +.barilliance.net +# ||baptisttop1000.com^$third-party (easyprivacy.txt: 2850) +.baptisttop1000.com +# ||azera-s014.com^$third-party (easyprivacy.txt: 2849) +.azera-s014.com +# ||axf8.net^$third-party (easyprivacy.txt: 2848) +.axf8.net +# ||awmcounter.de^$third-party (easyprivacy.txt: 2847) +.awmcounter.de +# ||awesomelytics.com^$third-party (easyprivacy.txt: 2846) +.awesomelytics.com +# ||awasete.com^$third-party (easyprivacy.txt: 2845) +.awasete.com +# ||avmws.com^$third-party (easyprivacy.txt: 2844) +.avmws.com +# ||avenseo.com^$third-party (easyprivacy.txt: 2843) +.avenseo.com +# ||avazudsp.net^$third-party (easyprivacy.txt: 2842) +.avazudsp.net +# ||avastats.com^$third-party (easyprivacy.txt: 2841) +.avastats.com +# ||avantlink.com^$third-party (easyprivacy.txt: 2840) +.avantlink.com +# ||autoaudience.com^$third-party (easyprivacy.txt: 2839) +.autoaudience.com +# ||autoaffiliatenetwork.com^$third-party (easyprivacy.txt: 2838) +.autoaffiliatenetwork.com +# ||auto-ping.com^$third-party (easyprivacy.txt: 2837) +.auto-ping.com +# ||authorinsights.com^$third-party (easyprivacy.txt: 2836) +.authorinsights.com +# ||audrte.com^$third-party (easyprivacy.txt: 2835) +.audrte.com +# ||audiencerate.com^$third-party (easyprivacy.txt: 2834) +.audiencerate.com +# ||audienceiq.com^$third-party (easyprivacy.txt: 2833) +.audienceiq.com +# ||audienceamplify.com^$third-party (easyprivacy.txt: 2832) +.audienceamplify.com +# ||audience.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 2831) +.audience.visiblemeasures.com +# ||attracta.com^$third-party (easyprivacy.txt: 2830) +.attracta.com +# ||atoshonetwork.com^$third-party (easyprivacy.txt: 2829) +.atoshonetwork.com +# ||athenainstitute.biz^$third-party (easyprivacy.txt: 2828) +.athenainstitute.biz +# ||atatus.com^$third-party (easyprivacy.txt: 2827) +.atatus.com +# ||astro-way.com^$third-party (easyprivacy.txt: 2826) +.astro-way.com +# ||assoctrac.com^$third-party (easyprivacy.txt: 2825) +.assoctrac.com +# ||arturtrack.com^$third-party (easyprivacy.txt: 2824) +.arturtrack.com +# ||arpxs.com^$third-party (easyprivacy.txt: 2823) +.arpxs.com +# ||arpuonline.com^$third-party (easyprivacy.txt: 2822) +.arpuonline.com +# ||arlime.com^$third-party (easyprivacy.txt: 2821) +.arlime.com +# ||arkayne.com^$third-party (easyprivacy.txt: 2820) +.arkayne.com +# ||arena-quantum.co.uk^$third-party (easyprivacy.txt: 2819) +.arena-quantum.co.uk +# ||arch-nicto.com^$third-party (easyprivacy.txt: 2818) +.arch-nicto.com +# ||arcadeweb.com^$third-party (easyprivacy.txt: 2817) +.arcadeweb.com +# ||aqtracker.com^$third-party (easyprivacy.txt: 2816) +.aqtracker.com +# ||appboycdn.com^$third-party (easyprivacy.txt: 2815) +.appboycdn.com +# ||apollofind.com^$third-party (easyprivacy.txt: 2814) +.apollofind.com +# ||apicit.net^$third-party (easyprivacy.txt: 2813) +.apicit.net +# ||apextwo.com^$third-party (easyprivacy.txt: 2812) +.apextwo.com +# ||apexstats.com^$third-party (easyprivacy.txt: 2811) +.apexstats.com +# ||anti-cheat.info^$third-party (easyprivacy.txt: 2810) +.anti-cheat.info +# ||anonymousdmp.com^$third-party (easyprivacy.txt: 2809) +.anonymousdmp.com +# ||angsrvr.com^$third-party (easyprivacy.txt: 2808) +.angsrvr.com +# ||angelfishstats.com^$third-party (easyprivacy.txt: 2807) +.angelfishstats.com +# ||anexia-it.com^$third-party (easyprivacy.txt: 2806) +.anexia-it.com +# ||anatid3.com^$third-party (easyprivacy.txt: 2805) +.anatid3.com +# ||anametrix.net^$third-party (easyprivacy.txt: 2804) +.anametrix.net +# ||anametrix.com^$third-party (easyprivacy.txt: 2803) +.anametrix.com +# ||analytk.com^$third-party (easyprivacy.txt: 2802) +.analytk.com +# ||analyticswizard.com^$third-party (easyprivacy.txt: 2801) +.analyticswizard.com +# ||analytics-engine.net^$third-party (easyprivacy.txt: 2800) +.analytics-engine.net +# ||analytics-egain.com^$third-party (easyprivacy.txt: 2799) +.analytics-egain.com +# ||analysistools.net^$third-party (easyprivacy.txt: 2798) +.analysistools.net +# ||analoganalytics.com^$third-party (easyprivacy.txt: 2797) +.analoganalytics.com +# ||amxdt.com^$third-party (easyprivacy.txt: 2796) +.amxdt.com +# ||amung.us^$third-party (easyprivacy.txt: 2795) +.amung.us +# ||amikay.com^$third-party (easyprivacy.txt: 2794) +.amikay.com +# ||amctp.net^$third-party (easyprivacy.txt: 2793) +.amctp.net +# ||ambercrow.com^$third-party (easyprivacy.txt: 2792) +.ambercrow.com +# ||amazingcounters.com^$third-party (easyprivacy.txt: 2791) +.amazingcounters.com +# ||amavalet.com^$third-party (easyprivacy.txt: 2790) +.amavalet.com +# ||amadesa.com^$third-party (easyprivacy.txt: 2789) +.amadesa.com +# ||alzexa.com^$third-party (easyprivacy.txt: 2788) +.alzexa.com +# ||alvenda.com^$third-party (easyprivacy.txt: 2787) +.alvenda.com +# ||altastat.com^$third-party (easyprivacy.txt: 2786) +.altastat.com +# ||alnera.eu^$third-party (easyprivacy.txt: 2785) +.alnera.eu +# ||alltracked.com^$third-party (easyprivacy.txt: 2784) +.alltracked.com +# ||alltagcloud.info^$third-party (easyprivacy.txt: 2783) +.alltagcloud.info +# ||alexametrics.com^$third-party (easyprivacy.txt: 2782) +.alexametrics.com +# ||alexacdn.com^$third-party (easyprivacy.txt: 2781) +.alexacdn.com +# ||alenty.com^$third-party (easyprivacy.txt: 2780) +.alenty.com +# ||akstat.com^$third-party (easyprivacy.txt: 2779) +.akstat.com +# ||airpr.com^$third-party (easyprivacy.txt: 2778) +.airpr.com +# ||aimediagroup.com^$third-party (easyprivacy.txt: 2777) +.aimediagroup.com +# ||agkn.com^$third-party (easyprivacy.txt: 2776) +.agkn.com +# ||agilone.com^$third-party (easyprivacy.txt: 2775) +.agilone.com +# ||agentinteractive.com^$third-party (easyprivacy.txt: 2774) +.agentinteractive.com +# ||agencytradingdesk.net^$third-party (easyprivacy.txt: 2773) +.agencytradingdesk.net +# ||affistats.com^$third-party (easyprivacy.txt: 2772) +.affistats.com +# ||affinitymatrix.com^$third-party (easyprivacy.txt: 2771) +.affinitymatrix.com +# ||affinesystems.com^$third-party (easyprivacy.txt: 2770) +.affinesystems.com +# ||affiliatetrackingsetup.com^$third-party (easyprivacy.txt: 2769) +.affiliatetrackingsetup.com +# ||affiliates-pro.com^$third-party (easyprivacy.txt: 2768) +.affiliates-pro.com +# ||affiliateedge.eu^$third-party (easyprivacy.txt: 2767) +.affiliateedge.eu +# ||affilae.com^$third-party (easyprivacy.txt: 2766) +.affilae.com +# ||adyapper.com^$third-party (easyprivacy.txt: 2765) +.adyapper.com +# ||advconversion.com^$third-party (easyprivacy.txt: 2764) +.advconversion.com +# ||advanced-web-analytics.com^$third-party (easyprivacy.txt: 2763) +.advanced-web-analytics.com +# ||adultblogtoplist.com^$third-party (easyprivacy.txt: 2762) +.adultblogtoplist.com +# ||adtelligence.de^$third-party (easyprivacy.txt: 2761) +.adtelligence.de +# ||adtarget.me^$third-party (easyprivacy.txt: 2760) +.adtarget.me +# ||adsymptotic.com^$third-party (easyprivacy.txt: 2759) +.adsymptotic.com +# ||adsensedetective.com^$third-party (easyprivacy.txt: 2758) +.adsensedetective.com +# ||adprotraffic.com^$third-party (easyprivacy.txt: 2757) +.adprotraffic.com +# ||adoftheyear.com^$third-party (easyprivacy.txt: 2756) +.adoftheyear.com +# ||adobetag.com^$third-party (easyprivacy.txt: 2755) +.adobetag.com +# ||adku.com^$third-party (easyprivacy.txt: 2754) +.adku.com +# ||adku.co^$third-party (easyprivacy.txt: 2753) +.adku.co +# ||adinsight.eu^$third-party (easyprivacy.txt: 2752) +.adinsight.eu +# ||adinsight.com^$third-party (easyprivacy.txt: 2751) +.adinsight.com +# ||adgreed.com^$third-party (easyprivacy.txt: 2750) +.adgreed.com +# ||adelixir.com^$third-party (easyprivacy.txt: 2749) +.adelixir.com +# ||addlvr.com^$third-party (easyprivacy.txt: 2748) +.addlvr.com +# ||addfreestats.com^$third-party (easyprivacy.txt: 2747) +.addfreestats.com +# ||adclickstats.net^$third-party (easyprivacy.txt: 2746) +.adclickstats.net +# ||adchemy.com^$third-party (easyprivacy.txt: 2745) +.adchemy.com +# ||adchemy-content.com^$third-party (easyprivacy.txt: 2744) +.adchemy-content.com +# ||adchemix.com^$third-party (easyprivacy.txt: 2743) +.adchemix.com +# ||ad-score.com^$third-party (easyprivacy.txt: 2742) +.ad-score.com +# ||acxiom-online.com^$third-party (easyprivacy.txt: 2741) +.acxiom-online.com +# ||actnx.com^$third-party (easyprivacy.txt: 2740) +.actnx.com +# ||activeprospects.com^$third-party (easyprivacy.txt: 2739) +.activeprospects.com +# ||activemeter.com^$third-party (easyprivacy.txt: 2738) +.activemeter.com +# ||activeconversion.com^$third-party (easyprivacy.txt: 2737) +.activeconversion.com +# ||active-trk7.com^$third-party (easyprivacy.txt: 2736) +.active-trk7.com +# ||acq.io^$third-party (easyprivacy.txt: 2735) +.acq.io +# ||acint.net^$third-party (easyprivacy.txt: 2734) +.acint.net +# ||acetrk.com^$third-party (easyprivacy.txt: 2733) +.acetrk.com +# ||acestats.net^$third-party (easyprivacy.txt: 2732) +.acestats.net +# ||acecounter.com^$third-party (easyprivacy.txt: 2731) +.acecounter.com +# ||accessintel.com^$third-party (easyprivacy.txt: 2730) +.accessintel.com +# ||access-traffic.com^$third-party (easyprivacy.txt: 2729) +.access-traffic.com +# ||access-analyze.org^$third-party (easyprivacy.txt: 2728) +.access-analyze.org +# ||acc-hd.de^$third-party (easyprivacy.txt: 2727) +.acc-hd.de +# ||absolstats.co.za^$third-party (easyprivacy.txt: 2726) +.absolstats.co.za +# ||abmr.net^$third-party (easyprivacy.txt: 2725) +.abmr.net +# ||abcstats.com^$third-party (easyprivacy.txt: 2724) +.abcstats.com +# ||aaddzz.com^$third-party (easyprivacy.txt: 2723) +.aaddzz.com +# ||a8ww.net^$third-party (easyprivacy.txt: 2722) +.a8ww.net +# ||a8.net^$third-party (easyprivacy.txt: 2721) +.a8.net +# ||a013.com^$third-party (easyprivacy.txt: 2720) +.a013.com +# ||a-pagerank.net^$third-party (easyprivacy.txt: 2719) +.a-pagerank.net +# ||a-counters.com^$third-party (easyprivacy.txt: 2718) +.a-counters.com +# ||9nl.eu^$third-party (easyprivacy.txt: 2717) +.9nl.eu +# ||99stats.com^$third-party (easyprivacy.txt: 2716) +.99stats.com +# ||99counters.com^$third-party (easyprivacy.txt: 2715) +.99counters.com +# ||8020solutions.net^$third-party (easyprivacy.txt: 2714) +.8020solutions.net +# ||7eer.net^$third-party (easyprivacy.txt: 2713) +.7eer.net +# ||7bpeople.com^$third-party (easyprivacy.txt: 2712) +.7bpeople.com +# ||77tracking.com^$third-party (easyprivacy.txt: 2710) +.77tracking.com +# ||74.55.82.102^$third-party (easyprivacy.txt: 2709) +.74.55.82.102 +# ||72.172.88.25^$third-party (easyprivacy.txt: 2708) +.72.172.88.25 +# ||67.228.151.70^$third-party (easyprivacy.txt: 2707) +.67.228.151.70 +# ||66.228.52.30^$third-party (easyprivacy.txt: 2706) +.66.228.52.30 +# ||62.160.52.73^$third-party (easyprivacy.txt: 2705) +.62.160.52.73 +# ||55labs.com^$third-party (easyprivacy.txt: 2704) +.55labs.com +# ||4oney.com^$third-party (easyprivacy.txt: 2703) +.4oney.com +# ||3gl.net^$third-party (easyprivacy.txt: 2702) +.3gl.net +# ||3dstats.com^$third-party (easyprivacy.txt: 2701) +.3dstats.com +# ||3dlivestats.com^$third-party (easyprivacy.txt: 2700) +.3dlivestats.com +# ||360tag.net^$third-party (easyprivacy.txt: 2699) +.360tag.net +# ||360tag.com^$third-party (easyprivacy.txt: 2698) +.360tag.com +# ||360i.com^$third-party (easyprivacy.txt: 2697) +.360i.com +# ||33across.com^$third-party (easyprivacy.txt: 2696) +.33across.com +# ||2o7.net^$third-party (easyprivacy.txt: 2695) +.2o7.net +# ||2cnt.net^$third-party (easyprivacy.txt: 2694) +.2cnt.net +# ||24log.com^$third-party (easyprivacy.txt: 2693) +.24log.com +# ||24counter.com^$third-party (easyprivacy.txt: 2692) +.24counter.com +# ||247ilabs.com^$third-party (easyprivacy.txt: 2691) +.247ilabs.com +# ||212.227.100.108^$third-party (easyprivacy.txt: 2689) +.212.227.100.108 +# ||206solutions.com^$third-party (easyprivacy.txt: 2687) +.206solutions.com +# ||204st.us^$third-party (easyprivacy.txt: 2686) +.204st.us +# ||200summit.com^$third-party (easyprivacy.txt: 2685) +.200summit.com +# ||1pel.com^$third-party (easyprivacy.txt: 2684) +.1pel.com +# ||1freecounter.com^$third-party (easyprivacy.txt: 2683) +.1freecounter.com +# ||195.10.245.55^$third-party (easyprivacy.txt: 2682) +.195.10.245.55 +# ||149.13.65.144^$third-party (easyprivacy.txt: 2681) +.149.13.65.144 +# ||123count.com^$third-party (easyprivacy.txt: 2680) +.123count.com +# ||11nux.com^$third-party (easyprivacy.txt: 2679) +.11nux.com +# ||103bees.com^$third-party (easyprivacy.txt: 2678) +.103bees.com +# ||100im.info^$third-party (easyprivacy.txt: 2677) +.100im.info +# ||1-cl0ud.com^$third-party (easyprivacy.txt: 2676) +.1-cl0ud.com +# ||0tracker.com^$third-party (easyprivacy.txt: 2675) +.0tracker.com +# ://top.*/hit/ (easyprivacy.txt: 2672) +/.*://top\..*/hit/ +top.*./(.*/)?hit/ +# ://top.*/count/cnt.php? (easyprivacy.txt: 2671) +/.*://top\..*/count/cnt\.php\? +top.*./(.*/)?count/cnt\.php\? +# ://ivw.*/get?referrer= (easyprivacy.txt: 2670) +/.*://ivw\..*/get\?referrer= +ivw.*./(.*/)?get\?referrer= +# /img.php?id=*&page= (easyprivacy.txt: 2669) +/(.*/)?img\.php\?id=.*&page= +# /cdn-cgi/pe/bag2?*yieldbot.intent.js (easyprivacy.txt: 2667) +/(.*/)?cdn-cgi/pe/bag2\?.*yieldbot\.intent\.js +# /cdn-cgi/pe/bag2?*viglink.com (easyprivacy.txt: 2666) +/(.*/)?cdn-cgi/pe/bag2\?.*viglink\.com +# /cdn-cgi/pe/bag2?*static.getclicky.com%2Fjs (easyprivacy.txt: 2665) +/(.*/)?cdn-cgi/pe/bag2\?.*static\.getclicky\.com%2Fjs +# /cdn-cgi/pe/bag2?*scorecardresearch.com (easyprivacy.txt: 2664) +/(.*/)?cdn-cgi/pe/bag2\?.*scorecardresearch\.com +# /cdn-cgi/pe/bag2?*radarurl.com (easyprivacy.txt: 2663) +/(.*/)?cdn-cgi/pe/bag2\?.*radarurl\.com +# /cdn-cgi/pe/bag2?*quantserve.com (easyprivacy.txt: 2662) +/(.*/)?cdn-cgi/pe/bag2\?.*quantserve\.com +# /cdn-cgi/pe/bag2?*piwik.js (easyprivacy.txt: 2661) +/(.*/)?cdn-cgi/pe/bag2\?.*piwik\.js +# /cdn-cgi/pe/bag2?*optimizely.com (easyprivacy.txt: 2660) +/(.*/)?cdn-cgi/pe/bag2\?.*optimizely\.com +# /cdn-cgi/pe/bag2?*nr-data.net (easyprivacy.txt: 2659) +/(.*/)?cdn-cgi/pe/bag2\?.*nr-data\.net +# /cdn-cgi/pe/bag2?*newrelic.com (easyprivacy.txt: 2658) +/(.*/)?cdn-cgi/pe/bag2\?.*newrelic\.com +# /cdn-cgi/pe/bag2?*mc.yandex.ru (easyprivacy.txt: 2657) +/(.*/)?cdn-cgi/pe/bag2\?.*mc\.yandex\.ru +# /cdn-cgi/pe/bag2?*log.outbrain.com (easyprivacy.txt: 2656) +/(.*/)?cdn-cgi/pe/bag2\?.*log\.outbrain\.com +# /cdn-cgi/pe/bag2?*histats.com (easyprivacy.txt: 2655) +/(.*/)?cdn-cgi/pe/bag2\?.*histats\.com +# /cdn-cgi/pe/bag2?*google-analytics.com%2Fanalytics.js (easyprivacy.txt: 2654) +/(.*/)?cdn-cgi/pe/bag2\?.*google-analytics\.com%2Fanalytics\.js +# /cdn-cgi/pe/bag2?*geoiplookup (easyprivacy.txt: 2653) +/(.*/)?cdn-cgi/pe/bag2\?.*geoiplookup +# /cdn-cgi/pe/bag2?*dnn506yrbagrg.cloudfront.net (easyprivacy.txt: 2652) +/(.*/)?cdn-cgi/pe/bag2\?.*dnn506yrbagrg\.cloudfront\.net +# /wp-admin/admin-ajax.php?action=adblockvisitor$~third-party (easyprivacy.txt: 2650) +/(.*/)?wp-admin/admin-ajax\.php\?action=adblockvisitor +# /adblock?action= (easyprivacy.txt: 2649) +/(.*/)?adblock\?action= +# /adb.policy.js (easyprivacy.txt: 2648) +/(.*/)?adb\.policy\.js +adb.policy.js*. +# -logabpstatus. (easyprivacy.txt: 2647) +/.*-logabpstatus\. +.*-logabpstatus.*. +# ||meetrics.netbb- (easyprivacy.txt: 2645) +.meetrics.netbb-*. +# cgi-bin/counter (easyprivacy.txt: 2643) +/.*cgi-bin/counter +.*cgi-bin/counter +# _zag_cookie. (easyprivacy.txt: 2642) +/.*_zag_cookie\. +# _wreport.fcgi? (easyprivacy.txt: 2641) +/.*_wreport\.fcgi\? +# _wiselog_ (easyprivacy.txt: 2640) +/.*_wiselog_ +# _webiq. (easyprivacy.txt: 2639) +/.*_webiq\. +# _webanalytics. (easyprivacy.txt: 2638) +/.*_webanalytics\. +# _web_stat.js (easyprivacy.txt: 2637) +/.*_web_stat\.js +# _url_tracking. (easyprivacy.txt: 2636) +/.*_url_tracking\. +# _trans_1px. (easyprivacy.txt: 2635) +/.*_trans_1px\. +# _trafficTracking. (easyprivacy.txt: 2634) +/.*_trafficTracking\. +# _tracker_min. (easyprivacy.txt: 2633) +/.*_tracker_min\. +# _tracker.php?*http (easyprivacy.txt: 2632) +/.*_tracker\.php\?.*http +# _tracker.js? (easyprivacy.txt: 2631) +/.*_tracker\.js\? +# _tracker.js. (easyprivacy.txt: 2630) +/.*_tracker\.js\. +# _Tacoda_ (easyprivacy.txt: 2629) +/.*_Tacoda_ +# _stats_log. (easyprivacy.txt: 2628) +/.*_stats_log\. +# _stats/Logger? (easyprivacy.txt: 2627) +/.*_stats/Logger\? +# _stats.js? (easyprivacy.txt: 2626) +/.*_stats\.js\? +# _social_tracking. (easyprivacy.txt: 2625) +/.*_social_tracking\. +# _setAnalyticsFields& (easyprivacy.txt: 2624) +/.*_setAnalyticsFields& +# _semanticTag/ (easyprivacy.txt: 2623) +/.*_semanticTag/ +# _sdctag2. (easyprivacy.txt: 2622) +/.*_sdctag2\. +# _sdctag1_ (easyprivacy.txt: 2621) +/.*_sdctag1_ +# _quantcast.swf (easyprivacy.txt: 2620) +/.*_quantcast\.swf +# _promo_id= (easyprivacy.txt: 2619) +/.*_promo_id= +# _pixelmap.js (easyprivacy.txt: 2618) +/.*_pixelmap\.js +# _ntpagetag. (easyprivacy.txt: 2617) +/.*_ntpagetag\. +# _NielsenNetRatings. (easyprivacy.txt: 2616) +/.*_NielsenNetRatings\. +# _nielsen.js (easyprivacy.txt: 2615) +/.*_nielsen\.js +# _nedstat.js (easyprivacy.txt: 2614) +/.*_nedstat\.js +# _metricsTagging. (easyprivacy.txt: 2613) +/.*_metricsTagging\. +# _m10banners/tracking.php? (easyprivacy.txt: 2612) +/.*_m10banners/tracking\.php\? +# _logimpressions. (easyprivacy.txt: 2611) +/.*_logimpressions\. +# _logHuman= (easyprivacy.txt: 2610) +/.*_logHuman= +# _landingLog/ (easyprivacy.txt: 2609) +/.*_landingLog/ +# _impressions.gif? (easyprivacy.txt: 2608) +/.*_impressions\.gif\? +# _imp_logging? (easyprivacy.txt: 2607) +/.*_imp_logging\? +# _imp?Log= (easyprivacy.txt: 2606) +/.*_imp\?Log= +# _i2a.js (easyprivacy.txt: 2605) +/.*_i2a\.js +# _hptag.asis? (easyprivacy.txt: 2604) +/.*_hptag\.asis\? +# _googleAnalytics_ (easyprivacy.txt: 2603) +/.*_googleAnalytics_ +# _googleAnalytics. (easyprivacy.txt: 2602) +/.*_googleAnalytics\. +# _google_analytics. (easyprivacy.txt: 2601) +/.*_google_analytics\. +# _global_analytics_ (easyprivacy.txt: 2600) +/.*_global_analytics_ +# _gaTrack.js (easyprivacy.txt: 2599) +/.*_gaTrack\.js +# _ga_tag. (easyprivacy.txt: 2598) +/.*_ga_tag\. +# _ga_code. (easyprivacy.txt: 2597) +/.*_ga_code\. +# _empty.ad? (easyprivacy.txt: 2596) +/.*_empty\.ad\? +# _effectivemeasure_tag.js (easyprivacy.txt: 2595) +/.*_effectivemeasure_tag\.js +# _directtrack.js (easyprivacy.txt: 2594) +/.*_directtrack\.js +# _ComScore. (easyprivacy.txt: 2593) +/.*_ComScore\. +# _clickTracking. (easyprivacy.txt: 2592) +/.*_clickTracking\. +# _clicktrack.asp? (easyprivacy.txt: 2591) +/.*_clicktrack\.asp\? +# _Clicktale. (easyprivacy.txt: 2590) +/.*_Clicktale\. +# _clickability/ (easyprivacy.txt: 2589) +/.*_clickability/ +# _check.php?referer (easyprivacy.txt: 2588) +/.*_check\.php\?referer +# _chartbeat.js (easyprivacy.txt: 2587) +/.*_chartbeat\.js +# _cedexis. (easyprivacy.txt: 2586) +/.*_cedexis\. +# _browsermetrix. (easyprivacy.txt: 2585) +/.*_browsermetrix\. +# _beacon? (easyprivacy.txt: 2584) +/.*_beacon\? +# _baynote. (easyprivacy.txt: 2583) +/.*_baynote\. +# _astatspro/ (easyprivacy.txt: 2582) +/.*_astatspro/ +# _analytics.php? (easyprivacy.txt: 2581) +/.*_analytics\.php\? +# _Analytics.js? (easyprivacy.txt: 2580) +/.*_Analytics\.js\? +# _adcenterconversion. (easyprivacy.txt: 2579) +/.*_adcenterconversion\. +# _247seotracking. (easyprivacy.txt: 2578) +/.*_247seotracking\. +# ^name=atatracker^ (easyprivacy.txt: 2577) +/(.*[^\w%.-])?name=atatracker[^\w%.-] +# ?wpgb_public_action=*&referrer= (easyprivacy.txt: 2576) +/.*\?wpgb_public_action=.*&referrer= +# ?triggertags= (easyprivacy.txt: 2575) +/.*\?triggertags= +# ?token=*&sessionid=*&visitorid= (easyprivacy.txt: 2574) +/.*\?token=.*&sessionid=.*&visitorid= +# ?stwc_cz= (easyprivacy.txt: 2573) +/.*\?stwc_cz= +# ?ref=*&itemcnt= (easyprivacy.txt: 2572) +/.*\?ref=.*&itemcnt= +# ?record&*&serve_js (easyprivacy.txt: 2571) +/.*\?record&.*&serve_js +# ?googleTrack= (easyprivacy.txt: 2570) +/.*\?googleTrack= +# ?eventtype=request&pid= (easyprivacy.txt: 2569) +/.*\?eventtype=request&pid= +# ?eventtype=impression&pid= (easyprivacy.txt: 2568) +/.*\?eventtype=impression&pid= +# ?event=log& (easyprivacy.txt: 2567) +/.*\?event=log& +# ?event=General.track (easyprivacy.txt: 2566) +/.*\?event=General\.track +# ?criteoTrack= (easyprivacy.txt: 2565) +/.*\?criteoTrack= +# ?affiliate=$third-party (easyprivacy.txt: 2564) +/.*\?affiliate= +# ?action=tracking_script (easyprivacy.txt: 2563) +/.*\?action=tracking_script +# ?action=track_visitor& (easyprivacy.txt: 2562) +/.*\?action=track_visitor& +# ?_siteid= (easyprivacy.txt: 2561) +/.*\?_siteid= +# ?[AQB]&ndh=1&t= (easyprivacy.txt: 2560) +/.*\?\[AQB\]&ndh=1&t= +# ?&anticache=*filename.gif (easyprivacy.txt: 2559) +/.*\?&anticache=.*filename\.gif +# =track_view& (easyprivacy.txt: 2558) +/.*=track_view& +# =stats&action= (easyprivacy.txt: 2557) +/.*=stats&action= +# =ATAtracker& (easyprivacy.txt: 2556) +/.*=ATAtracker& +# =&cs_Referer= (easyprivacy.txt: 2555) +/.*=&cs_Referer= +# ://tracking.*/beacon/ (easyprivacy.txt: 2554) +/.*://tracking\..*/beacon/ +tracking.*./(.*/)?beacon/ +# ://sett.*/log.js (easyprivacy.txt: 2553) +/.*://sett\..*/log\.js +sett.*./(.*/)?log\.js +# ://piwik.$third-party (easyprivacy.txt: 2552) +/.*://piwik\. +piwik.*. +# ://mint.*/?js (easyprivacy.txt: 2551) +/.*://mint\..*/\?js +mint.*./(.*/)?\?js +# ://ivwextern. (easyprivacy.txt: 2550) +/.*://ivwextern\. +ivwextern.*. +# ://gdyn.*/1.gif? (easyprivacy.txt: 2549) +/.*://gdyn\..*/1\.gif\? +gdyn.*./(.*/)?1\.gif\? +# ://eulerian.*/ea.js (easyprivacy.txt: 2548) +/.*://eulerian\..*/ea\.js +eulerian.*./(.*/)?ea\.js +# ://email.*/blankpixel.gif (easyprivacy.txt: 2547) +/.*://email\..*/blankpixel\.gif +email.*./(.*/)?blankpixel\.gif +# ://click.*/open.aspx? (easyprivacy.txt: 2546) +/.*://click\..*/open\.aspx\? +click.*./(.*/)?open\.aspx\? +# ://c1.*/c.gif? (easyprivacy.txt: 2545) +/.*://c1\..*/c\.gif\? +c1.*./(.*/)?c\.gif\? +# ://c.*/c.gif? (easyprivacy.txt: 2544) +/.*://c\..*/c\.gif\? +c.*./(.*/)?c\.gif\? +# ://b.*/vanity/? (easyprivacy.txt: 2543) +/.*://b\..*/vanity/\? +b.*./(.*/)?vanity/\? +# ://b.*/ping? (easyprivacy.txt: 2542) +/.*://b\..*/ping\? +b.*./(.*/)?ping\? +# ://b.*/click? (easyprivacy.txt: 2541) +/.*://b\..*/click\? +b.*./(.*/)?click\? +# ://apex.*/apexTarget? (easyprivacy.txt: 2540) +/.*://apex\..*/apexTarget\? +apex.*./(.*/)?apexTarget\? +# ://anx.*/tr.gif? (easyprivacy.txt: 2539) +/.*://anx\..*/tr\.gif\? +anx.*./(.*/)?tr\.gif\? +# ://anx.*/anx.gif? (easyprivacy.txt: 2538) +/.*://anx\..*/anx\.gif\? +anx.*./(.*/)?anx\.gif\? +# ://adclear.*/acv? (easyprivacy.txt: 2537) +/.*://adclear\..*/acv\? +adclear.*./(.*/)?acv\? +# ://adclear.*/acc? (easyprivacy.txt: 2536) +/.*://adclear\..*/acc\? +adclear.*./(.*/)?acc\? +# /~utm_gif? (easyprivacy.txt: 2535) +/(.*/)?~utm_gif\? +# /~r/Slashdot/slashdot/* (easyprivacy.txt: 2534) +/(.*/)?~r/Slashdot/slashdot/.* +# /zone-log. (easyprivacy.txt: 2533) +/(.*/)?zone-log\. +zone-log.*. +# /zonapixel. (easyprivacy.txt: 2532) +/(.*/)?zonapixel\. +zonapixel.*. +# /zemtracker. (easyprivacy.txt: 2531) +/(.*/)?zemtracker\. +zemtracker.*. +# /zdgurgler.min.js (easyprivacy.txt: 2530) +/(.*/)?zdgurgler\.min\.js +zdgurgler.min.js*. +# /zanox.js (easyprivacy.txt: 2529) +/(.*/)?zanox\.js +zanox.js*. +# /ZagUser.js (easyprivacy.txt: 2528) +/(.*/)?ZagUser\.js +ZagUser.js*. +# /zagcookie. (easyprivacy.txt: 2527) +/(.*/)?zagcookie\. +zagcookie.*. +# /zag.gif? (easyprivacy.txt: 2526) +/(.*/)?zag\.gif\? +# /YuduStatistics/* (easyprivacy.txt: 2525) +/(.*/)?YuduStatistics/.* +# /ystat.js (easyprivacy.txt: 2524) +/(.*/)?ystat\.js +ystat.js*. +# /ystat.do (easyprivacy.txt: 2523) +/(.*/)?ystat\.do +ystat.do*. +# /ybn_pixel/* (easyprivacy.txt: 2522) +/(.*/)?ybn_pixel/.* +# /yandex-metrika.js (easyprivacy.txt: 2521) +/(.*/)?yandex-metrika\.js +yandex-metrika.js*. +# /yalst/pixel*.php? (easyprivacy.txt: 2520) +/(.*/)?yalst/pixel.*\.php\? +# /yahooTracker/* (easyprivacy.txt: 2519) +/(.*/)?yahooTracker/.* +# /yahooBeacon. (easyprivacy.txt: 2518) +/(.*/)?yahooBeacon\. +yahooBeacon.*. +# /yahoo_marketing.js (easyprivacy.txt: 2517) +/(.*/)?yahoo_marketing\.js +# /yahoo-beacon.js (easyprivacy.txt: 2516) +/(.*/)?yahoo-beacon\.js +yahoo-beacon.js*. +# /xtroi.js (easyprivacy.txt: 2515) +/(.*/)?xtroi\.js +xtroi.js*. +# /xtrack.png? (easyprivacy.txt: 2514) +/(.*/)?xtrack\.png\? +# /xtrack.php? (easyprivacy.txt: 2513) +/(.*/)?xtrack\.php\? +# /xtplugar. (easyprivacy.txt: 2512) +/(.*/)?xtplugar\. +xtplugar.*. +# /xtplug. (easyprivacy.txt: 2511) +/(.*/)?xtplug\. +xtplug.*. +# /xtcoreSimpleTag. (easyprivacy.txt: 2510) +/(.*/)?xtcoreSimpleTag\. +xtcoreSimpleTag.*. +# /xtcore_ (easyprivacy.txt: 2509) +/(.*/)?xtcore_ +# /xtclicks_ (easyprivacy.txt: 2508) +/(.*/)?xtclicks_ +# /xtclicks. (easyprivacy.txt: 2507) +/(.*/)?xtclicks\. +xtclicks.*. +# /xtclicks-$script (easyprivacy.txt: 2506) +/(.*/)?xtclicks- +xtclicks-*. +# /xtclick. (easyprivacy.txt: 2505) +/(.*/)?xtclick\. +xtclick.*. +# /xtanalyzer_roi. (easyprivacy.txt: 2504) +/(.*/)?xtanalyzer_roi\. +# /xstat.aspx? (easyprivacy.txt: 2503) +/(.*/)?xstat\.aspx\? +# /xn_track. (easyprivacy.txt: 2502) +/(.*/)?xn_track\. +# /xmint/?js (easyprivacy.txt: 2501) +/(.*/)?xmint/\?js +# /xitistatus.js (easyprivacy.txt: 2500) +/(.*/)?xitistatus\.js +xitistatus.js*. +# /xiti.js (easyprivacy.txt: 2499) +/(.*/)?xiti\.js +xiti.js*. +# /xitcore-min.js (easyprivacy.txt: 2498) +/(.*/)?xitcore-min\.js +xitcore-min.js*. +# /xgenius. (easyprivacy.txt: 2497) +/(.*/)?xgenius\. +xgenius.*. +# /xgemius_v2. (easyprivacy.txt: 2496) +/(.*/)?xgemius_v2\. +# /xgemius_lv. (easyprivacy.txt: 2495) +/(.*/)?xgemius_lv\. +# /xgemius. (easyprivacy.txt: 2494) +/(.*/)?xgemius\. +xgemius.*. +# /xboxcom_pv?c=$image (easyprivacy.txt: 2493) +/(.*/)?xboxcom_pv\?c= +# /wz_logging. (easyprivacy.txt: 2492) +/(.*/)?wz_logging\. +# /wysistat.js (easyprivacy.txt: 2491) +/(.*/)?wysistat\.js +wysistat.js*. +# /WWTracking_ (easyprivacy.txt: 2490) +/(.*/)?WWTracking_ +# /wv326redirect_ (easyprivacy.txt: 2489) +/(.*/)?wv326redirect_ +# /wusage_screen_properties.gif? (easyprivacy.txt: 2488) +/(.*/)?wusage_screen_properties\.gif\? +# /wtinit.js (easyprivacy.txt: 2487) +/(.*/)?wtinit\.js +wtinit.js*. +# /wtid.js (easyprivacy.txt: 2486) +/(.*/)?wtid\.js +wtid.js*. +# /wtd.gif? (easyprivacy.txt: 2485) +/(.*/)?wtd\.gif\? +# /wtcore.js (easyprivacy.txt: 2484) +/(.*/)?wtcore\.js +wtcore.js*. +# /wtbase.js (easyprivacy.txt: 2483) +/(.*/)?wtbase\.js +wtbase.js*. +# /wt_capi.js (easyprivacy.txt: 2482) +/(.*/)?wt_capi\.js +# /wstat.pl (easyprivacy.txt: 2481) +/(.*/)?wstat\.pl +wstat.pl*. +# /written-analytics. (easyprivacy.txt: 2480) +/(.*/)?written-analytics\. +written-analytics.*. +# /writrak. (easyprivacy.txt: 2479) +/(.*/)?writrak\. +writrak.*. +# /WritePartnerCookie?$third-party (easyprivacy.txt: 2478) +/(.*/)?WritePartnerCookie\? +# /writelog. (easyprivacy.txt: 2477) +/(.*/)?writelog\. +writelog.*. +# /WRb.js (easyprivacy.txt: 2476) +/(.*/)?WRb\.js +WRb.js*. +# /Wrappers?cmd= (easyprivacy.txt: 2475) +/(.*/)?Wrappers\?cmd= +# /wrapper/quantcast.swf (easyprivacy.txt: 2474) +/(.*/)?wrapper/quantcast\.swf +# /wpblog.gif? (easyprivacy.txt: 2473) +/(.*/)?wpblog\.gif\? +# /wp_stat.php? (easyprivacy.txt: 2472) +/(.*/)?wp_stat\.php\? +# /wp.gif?wpi (easyprivacy.txt: 2471) +/(.*/)?wp\.gif\?wpi +# /wp-useronline/useronline. (easyprivacy.txt: 2470) +/(.*/)?wp-useronline/useronline\. +# /wp-stat/* (easyprivacy.txt: 2469) +/(.*/)?wp-stat/.* +# /wp-slimstat/* (easyprivacy.txt: 2468) +/(.*/)?wp-slimstat/.* +# /wp-powerstat/* (easyprivacy.txt: 2467) +/(.*/)?wp-powerstat/.* +# /wp-js/analytics.js? (easyprivacy.txt: 2466) +/(.*/)?wp-js/analytics\.js\? +# /wp-counter.php (easyprivacy.txt: 2465) +/(.*/)?wp-counter\.php +wp-counter.php*. +# /wp-content/tracker. (easyprivacy.txt: 2464) +/(.*/)?wp-content/tracker\. +# /wp-content/plugins/stats/count.php? (easyprivacy.txt: 2463) +/(.*/)?wp-content/plugins/stats/count\.php\? +# /wp-clickmap/* (easyprivacy.txt: 2462) +/(.*/)?wp-clickmap/.* +# /wp-click-track/* (easyprivacy.txt: 2461) +/(.*/)?wp-click-track/.* +# /woopra.js (easyprivacy.txt: 2460) +/(.*/)?woopra\.js +woopra.js*. +# /wmxtracker.js (easyprivacy.txt: 2459) +/(.*/)?wmxtracker\.js +wmxtracker.js*. +# /wlog.php? (easyprivacy.txt: 2458) +/(.*/)?wlog\.php\? +# /wlexpert_tracker/* (easyprivacy.txt: 2457) +/(.*/)?wlexpert_tracker/.* +# /wlexpert_tracker. (easyprivacy.txt: 2456) +/(.*/)?wlexpert_tracker\. +# /wjcountercore. (easyprivacy.txt: 2455) +/(.*/)?wjcountercore\. +wjcountercore.*. +# /wjcounter. (easyprivacy.txt: 2454) +/(.*/)?wjcounter\. +wjcounter.*. +# /wjcounter- (easyprivacy.txt: 2453) +/(.*/)?wjcounter- +wjcounter-*. +# /wildfire/i/CIMP.gif? (easyprivacy.txt: 2452) +/(.*/)?wildfire/i/CIMP\.gif\? +# /WikiaStats/* (easyprivacy.txt: 2451) +/(.*/)?WikiaStats/.* +# /wijitTrack.gif? (easyprivacy.txt: 2450) +/(.*/)?wijitTrack\.gif\? +# /widget/s.gif? (easyprivacy.txt: 2449) +/(.*/)?widget/s\.gif\? +# /wi?spot= (easyprivacy.txt: 2448) +/(.*/)?wi\?spot= +# /whoson_*_trackingonly.js (easyprivacy.txt: 2447) +/(.*/)?whoson_.*_trackingonly\.js +# /wholinked.com/track (easyprivacy.txt: 2446) +/(.*/)?wholinked\.com/track +wholinked.com/track +# /who/?js (easyprivacy.txt: 2445) +/(.*/)?who/\?js +# /where-go-add.js (easyprivacy.txt: 2444) +/(.*/)?where-go-add\.js +where-go-add.js*. +# /wf/open?upn=$image (easyprivacy.txt: 2443) +/(.*/)?wf/open\?upn= +# /wego.farmer. (easyprivacy.txt: 2442) +/(.*/)?wego\.farmer\. +wego.farmer.*. +# /webtraxs. (easyprivacy.txt: 2441) +/(.*/)?webtraxs\. +webtraxs.*. +# /webtraffic.js (easyprivacy.txt: 2440) +/(.*/)?webtraffic\.js +webtraffic.js*. +# /WebTrackingHandler. (easyprivacy.txt: 2439) +/(.*/)?WebTrackingHandler\. +WebTrackingHandler.*. +# /webtracking/*$~subdocument (easyprivacy.txt: 2438) +/(.*/)?webtracking/.* +# /webTracking. (easyprivacy.txt: 2437) +/(.*/)?webTracking\. +webTracking.*. +# /webtrack. (easyprivacy.txt: 2436) +/(.*/)?webtrack\. +webtrack.*. +# /webstats_counter/* (easyprivacy.txt: 2435) +/(.*/)?webstats_counter/.* +# /webstats/track.php? (easyprivacy.txt: 2434) +/(.*/)?webstats/track\.php\? +# /webstats/stat (easyprivacy.txt: 2433) +/(.*/)?webstats/stat +# /webstats/index? (easyprivacy.txt: 2432) +/(.*/)?webstats/index\? +# /webstats.php (easyprivacy.txt: 2431) +/(.*/)?webstats\.php +webstats.php*. +# /webstats.js (easyprivacy.txt: 2430) +/(.*/)?webstats\.js +webstats.js*. +# /webstatistik/track.asp (easyprivacy.txt: 2429) +/(.*/)?webstatistik/track\.asp +# /WebStatistik/*.pl? (easyprivacy.txt: 2428) +/(.*/)?WebStatistik/.*\.pl\? +# /webstatistics.php? (easyprivacy.txt: 2427) +/(.*/)?webstatistics\.php\? +# /WebStat2. (easyprivacy.txt: 2426) +/(.*/)?WebStat2\. +WebStat2.*. +# /webstat/cei_count.asp? (easyprivacy.txt: 2425) +/(.*/)?webstat/cei_count\.asp\? +# /WebStat.asmx (easyprivacy.txt: 2424) +/(.*/)?WebStat\.asmx +WebStat.asmx*. +# /webrec/wr.do? (easyprivacy.txt: 2423) +/(.*/)?webrec/wr\.do\? +# /WebPageEventLogger. (easyprivacy.txt: 2422) +/(.*/)?WebPageEventLogger\. +WebPageEventLogger.*. +# /webmetricstracking. (easyprivacy.txt: 2421) +/(.*/)?webmetricstracking\. +webmetricstracking.*. +# /WebLogWriter. (easyprivacy.txt: 2420) +/(.*/)?WebLogWriter\. +WebLogWriter.*. +# /WebLogScript. (easyprivacy.txt: 2419) +/(.*/)?WebLogScript\. +WebLogScript.*. +# /weblog.php? (easyprivacy.txt: 2418) +/(.*/)?weblog\.php\? +# /weblog.js? (easyprivacy.txt: 2417) +/(.*/)?weblog\.js\? +# /weblog.*?cookie (easyprivacy.txt: 2416) +/(.*/)?weblog\..*\?cookie +weblog.*./.*\?cookie +# /webiq_ (easyprivacy.txt: 2415) +/(.*/)?webiq_ +# /webiq/* (easyprivacy.txt: 2414) +/(.*/)?webiq/.* +# /webiq. (easyprivacy.txt: 2413) +/(.*/)?webiq\. +webiq.*. +# /webforensics/* (easyprivacy.txt: 2412) +/(.*/)?webforensics/.* +# /webdig.js?z= (easyprivacy.txt: 2411) +/(.*/)?webdig\.js\?z= +# /webcounter/* (easyprivacy.txt: 2410) +/(.*/)?webcounter/.* +# /webbug/* (easyprivacy.txt: 2409) +/(.*/)?webbug/.* +# /webbug.png? (easyprivacy.txt: 2408) +/(.*/)?webbug\.png\? +# /WebAnalyticsInclude. (easyprivacy.txt: 2407) +/(.*/)?WebAnalyticsInclude\. +WebAnalyticsInclude.*. +# /webanalytics3. (easyprivacy.txt: 2406) +/(.*/)?webanalytics3\. +webanalytics3.*. +# /webAnalytics/* (easyprivacy.txt: 2405) +/(.*/)?webAnalytics/.* +# /WebAnalytics. (easyprivacy.txt: 2404) +/(.*/)?WebAnalytics\. +WebAnalytics.*. +# /webabacus-$script (easyprivacy.txt: 2403) +/(.*/)?webabacus- +webabacus-*. +# /web_traffic_capture.js (easyprivacy.txt: 2402) +/(.*/)?web_traffic_capture\.js +# /web_answertip. (easyprivacy.txt: 2401) +/(.*/)?web_answertip\. +# /web_analytics/* (easyprivacy.txt: 2400) +/(.*/)?web_analytics/.* +# /wcount.php? (easyprivacy.txt: 2399) +/(.*/)?wcount\.php\? +# /wanalytics/* (easyprivacy.txt: 2398) +/(.*/)?wanalytics/.* +# /wa01.gif?log= (easyprivacy.txt: 2397) +/(.*/)?wa01\.gif\?log= +# /vzTracker/* (easyprivacy.txt: 2396) +/(.*/)?vzTracker/.* +# /vztrack.gif? (easyprivacy.txt: 2395) +/(.*/)?vztrack\.gif\? +# /vTracker_ (easyprivacy.txt: 2394) +/(.*/)?vTracker_ +# /vtracker. (easyprivacy.txt: 2393) +/(.*/)?vtracker\. +vtracker.*. +# /vtrack.php? (easyprivacy.txt: 2392) +/(.*/)?vtrack\.php\? +# /vtrack.aspx (easyprivacy.txt: 2391) +/(.*/)?vtrack\.aspx +vtrack.aspx*. +# /vstrack. (easyprivacy.txt: 2390) +/(.*/)?vstrack\. +vstrack.*. +# /vstats/counter.php (easyprivacy.txt: 2389) +/(.*/)?vstats/counter\.php +# /vstat.php (easyprivacy.txt: 2388) +/(.*/)?vstat\.php +vstat.php*. +# /vs_track. (easyprivacy.txt: 2387) +/(.*/)?vs_track\. +# /vs/track. (easyprivacy.txt: 2386) +/(.*/)?vs/track\. +# /vs-track.js (easyprivacy.txt: 2385) +/(.*/)?vs-track\.js +vs-track.js*. +# /vptrack_ (easyprivacy.txt: 2384) +/(.*/)?vptrack_ +# /vmtracking. (easyprivacy.txt: 2383) +/(.*/)?vmtracking\. +vmtracking.*. +# /visualstat/stat.php (easyprivacy.txt: 2382) +/(.*/)?visualstat/stat\.php +# /visualsciences_ (easyprivacy.txt: 2381) +/(.*/)?visualsciences_ +# /visualsciences. (easyprivacy.txt: 2380) +/(.*/)?visualsciences\. +visualsciences.*. +# /visualrevenue.js (easyprivacy.txt: 2379) +/(.*/)?visualrevenue\.js +visualrevenue.js*. +# /visualdna. (easyprivacy.txt: 2378) +/(.*/)?visualdna\. +visualdna.*. +# /visualdna- (easyprivacy.txt: 2377) +/(.*/)?visualdna- +visualdna-*. +# /visual_revenue. (easyprivacy.txt: 2376) +/(.*/)?visual_revenue\. +# /visitWebPage?_ (easyprivacy.txt: 2375) +/(.*/)?visitWebPage\?_ +# /VisitTracking? (easyprivacy.txt: 2374) +/(.*/)?VisitTracking\? +# /visits_contor. (easyprivacy.txt: 2373) +/(.*/)?visits_contor\. +# /visitortracker.pl? (easyprivacy.txt: 2372) +/(.*/)?visitortracker\.pl\? +# /VisitorAPI.js (easyprivacy.txt: 2371) +/(.*/)?VisitorAPI\.js +VisitorAPI.js*. +# /visitor/index.php?*referrer$image (easyprivacy.txt: 2370) +/(.*/)?visitor/index\.php\?.*referrer +# /visitor.min.js (easyprivacy.txt: 2369) +/(.*/)?visitor\.min\.js +visitor.min.js*. +# /visitor.js?key= (easyprivacy.txt: 2368) +/(.*/)?visitor\.js\?key= +# /visitor.gif?ts= (easyprivacy.txt: 2367) +/(.*/)?visitor\.gif\?ts= +# /visitor.cgi?aff (easyprivacy.txt: 2366) +/(.*/)?visitor\.cgi\?aff +# /Visitor.aspx? (easyprivacy.txt: 2365) +/(.*/)?Visitor\.aspx\? +# /visitor-event? (easyprivacy.txt: 2364) +/(.*/)?visitor-event\? +# /VisitCounter. (easyprivacy.txt: 2363) +/(.*/)?VisitCounter\. +VisitCounter.*. +# /visit_tracking. (easyprivacy.txt: 2362) +/(.*/)?visit_tracking\. +# /visit_pixel? (easyprivacy.txt: 2361) +/(.*/)?visit_pixel\? +# /visit?id= (easyprivacy.txt: 2360) +/(.*/)?visit\?id= +# /visit/record.gif? (easyprivacy.txt: 2359) +/(.*/)?visit/record\.gif\? +# /visit/log.js? (easyprivacy.txt: 2358) +/(.*/)?visit/log\.js\? +# /visit.gif? (easyprivacy.txt: 2357) +/(.*/)?visit\.gif\? +# /visit-tracker.js (easyprivacy.txt: 2356) +/(.*/)?visit-tracker\.js +visit-tracker.js*. +# /visistat.js (easyprivacy.txt: 2355) +/(.*/)?visistat\.js +visistat.js*. +# /visci-interface. (easyprivacy.txt: 2354) +/(.*/)?visci-interface\. +visci-interface.*. +# /viperbar/stats.php? (easyprivacy.txt: 2353) +/(.*/)?viperbar/stats\.php\? +# /vip-analytics. (easyprivacy.txt: 2352) +/(.*/)?vip-analytics\. +vip-analytics.*. +# /viglink_ (easyprivacy.txt: 2351) +/(.*/)?viglink_ +# /viewTracking.min.js (easyprivacy.txt: 2350) +/(.*/)?viewTracking\.min\.js +viewTracking.min.js*. +# /viewtracking.aspx? (easyprivacy.txt: 2349) +/(.*/)?viewtracking\.aspx\? +# /viewstats.aspx? (easyprivacy.txt: 2348) +/(.*/)?viewstats\.aspx\? +# /viewcounterproxy. (easyprivacy.txt: 2347) +/(.*/)?viewcounterproxy\. +viewcounterproxy.*. +# /viewcounterjqueryproxy. (easyprivacy.txt: 2346) +/(.*/)?viewcounterjqueryproxy\. +viewcounterjqueryproxy.*. +# /ViewCounter/* (easyprivacy.txt: 2345) +/(.*/)?ViewCounter/.* +# /view_stats.js.php (easyprivacy.txt: 2344) +/(.*/)?view_stats\.js\.php +# /videotracking/* (easyprivacy.txt: 2343) +/(.*/)?videotracking/.* +# /VideoTracking. (easyprivacy.txt: 2342) +/(.*/)?VideoTracking\. +VideoTracking.*. +# /videoAnalytics. (easyprivacy.txt: 2341) +/(.*/)?videoAnalytics\. +videoAnalytics.*. +# /videoanalytic/* (easyprivacy.txt: 2340) +/(.*/)?videoanalytic/.* +# /video_count.php? (easyprivacy.txt: 2339) +/(.*/)?video_count\.php\? +# /vglnk.js (easyprivacy.txt: 2338) +/(.*/)?vglnk\.js +vglnk.js*. +# /vertical-stats. (easyprivacy.txt: 2337) +/(.*/)?vertical-stats\. +vertical-stats.*. +# /vendemologserver- (easyprivacy.txt: 2336) +/(.*/)?vendemologserver- +vendemologserver-*. +# /vecapture.js (easyprivacy.txt: 2335) +/(.*/)?vecapture\.js +vecapture.js*. +# /vblntpagetag. (easyprivacy.txt: 2334) +/(.*/)?vblntpagetag\. +vblntpagetag.*. +# /vblank.gif? (easyprivacy.txt: 2333) +/(.*/)?vblank\.gif\? +# /vastlog.txt? (easyprivacy.txt: 2332) +/(.*/)?vastlog\.txt\? +# /vanillastats/* (easyprivacy.txt: 2331) +/(.*/)?vanillastats/.* +# /valueclickbrands/* (easyprivacy.txt: 2330) +/(.*/)?valueclickbrands/.* +# /v60.js (easyprivacy.txt: 2329) +/(.*/)?v60\.js +v60.js*. +# /v53nse.js (easyprivacy.txt: 2328) +/(.*/)?v53nse\.js +v53nse.js*. +# /v53.js (easyprivacy.txt: 2327) +/(.*/)?v53\.js +v53.js*. +# /v52.js (easyprivacy.txt: 2326) +/(.*/)?v52\.js +v52.js*. +# /v5.3nse. (easyprivacy.txt: 2325) +/(.*/)?v5\.3nse\. +v5.3nse.*. +# /uxm_tracking. (easyprivacy.txt: 2324) +/(.*/)?uxm_tracking\. +# /uvstat.js (easyprivacy.txt: 2323) +/(.*/)?uvstat\.js +uvstat.js*. +# /utracker.js (easyprivacy.txt: 2322) +/(.*/)?utracker\.js +utracker.js*. +# /utrack? (easyprivacy.txt: 2321) +/(.*/)?utrack\? +# /utrack.js? (easyprivacy.txt: 2320) +/(.*/)?utrack\.js\? +# /utag.loader. (easyprivacy.txt: 2319) +/(.*/)?utag\.loader\. +utag.loader.*. +# /utag.loader- (easyprivacy.txt: 2318) +/(.*/)?utag\.loader- +utag.loader-*. +# /utag.handler.js (easyprivacy.txt: 2317) +/(.*/)?utag\.handler\.js +utag.handler.js*. +# /utag.ga. (easyprivacy.txt: 2316) +/(.*/)?utag\.ga\. +utag.ga.*. +# /usrtrck_ (easyprivacy.txt: 2315) +/(.*/)?usrtrck_ +# /usrtrck- (easyprivacy.txt: 2314) +/(.*/)?usrtrck- +usrtrck-*. +# /usr.gif?openratetracking= (easyprivacy.txt: 2313) +/(.*/)?usr\.gif\?openratetracking= +# /usertrackingajax.php? (easyprivacy.txt: 2312) +/(.*/)?usertrackingajax\.php\? +# /usertracking.js (easyprivacy.txt: 2311) +/(.*/)?usertracking\.js +usertracking.js*. +# /usertrack.aspx? (easyprivacy.txt: 2310) +/(.*/)?usertrack\.aspx\? +# /userfly.js (easyprivacy.txt: 2309) +/(.*/)?userfly\.js +userfly.js*. +# /URLSplitTrack? (easyprivacy.txt: 2308) +/(.*/)?URLSplitTrack\? +# /urchinstats. (easyprivacy.txt: 2307) +/(.*/)?urchinstats\. +urchinstats.*. +# /urchin.js (easyprivacy.txt: 2306) +/(.*/)?urchin\.js +urchin.js*. +# /urchin.html? (easyprivacy.txt: 2305) +/(.*/)?urchin\.html\? +# /urchin.gif? (easyprivacy.txt: 2304) +/(.*/)?urchin\.gif\? +# /updateStats. (easyprivacy.txt: 2303) +/(.*/)?updateStats\. +updateStats.*. +# /updateBotStatus.do? (easyprivacy.txt: 2302) +/(.*/)?updateBotStatus\.do\? +# /universalPixelStatic. (easyprivacy.txt: 2301) +/(.*/)?universalPixelStatic\. +universalPixelStatic.*. +# /UniqueUserVisit? (easyprivacy.txt: 2300) +/(.*/)?UniqueUserVisit\? +# /UnicaTag. (easyprivacy.txt: 2299) +/(.*/)?UnicaTag\. +UnicaTag.*. +# /unica_ (easyprivacy.txt: 2298) +/(.*/)?unica_ +# /unica.js (easyprivacy.txt: 2297) +/(.*/)?unica\.js +unica.js*. +# /unica.gif? (easyprivacy.txt: 2296) +/(.*/)?unica\.gif\? +# /umt.gif? (easyprivacy.txt: 2295) +/(.*/)?umt\.gif\? +# /ultra_track/* (easyprivacy.txt: 2294) +/(.*/)?ultra_track/.* +# /uim.html/* (easyprivacy.txt: 2293) +/(.*/)?uim\.html/.* +uim.html/.* +# /ui/analytics/* (easyprivacy.txt: 2292) +/(.*/)?ui/analytics/.* +# /uds/stats? (easyprivacy.txt: 2291) +/(.*/)?uds/stats\? +# /udctrack. (easyprivacy.txt: 2290) +/(.*/)?udctrack\. +udctrack.*. +# /uchkr.swf (easyprivacy.txt: 2289) +/(.*/)?uchkr\.swf +uchkr.swf*. +# /tynt.js (easyprivacy.txt: 2288) +/(.*/)?tynt\.js +tynt.js*. +# /TwitterTracking. (easyprivacy.txt: 2287) +/(.*/)?TwitterTracking\. +TwitterTracking.*. +# /turn-proxy.html? (easyprivacy.txt: 2286) +/(.*/)?turn-proxy\.html\? +# /ttt.gif? (easyprivacy.txt: 2285) +/(.*/)?ttt\.gif\? +# /tsrHitCounter. (easyprivacy.txt: 2284) +/(.*/)?tsrHitCounter\. +tsrHitCounter.*. +# /truehits.php? (easyprivacy.txt: 2283) +/(.*/)?truehits\.php\? +# /trk.gif? (easyprivacy.txt: 2282) +/(.*/)?trk\.gif\? +# /trk-fr. (easyprivacy.txt: 2281) +/(.*/)?trk-fr\. +trk-fr.*. +# /triggit-analytics. (easyprivacy.txt: 2280) +/(.*/)?triggit-analytics\. +triggit-analytics.*. +# /triggertag.js (easyprivacy.txt: 2279) +/(.*/)?triggertag\.js +triggertag.js*. +# /trclnk.js (easyprivacy.txt: 2278) +/(.*/)?trclnk\.js +trclnk.js*. +# /trbo.js (easyprivacy.txt: 2277) +/(.*/)?trbo\.js +trbo.js*. +# /traxis-logger. (easyprivacy.txt: 2276) +/(.*/)?traxis-logger\. +traxis-logger.*. +# /trax.gif? (easyprivacy.txt: 2275) +/(.*/)?trax\.gif\? +# /transparent1x1. (easyprivacy.txt: 2274) +/(.*/)?transparent1x1\. +transparent1x1.*. +# /trans_pixel.asp (easyprivacy.txt: 2273) +/(.*/)?trans_pixel\.asp +# /trakksocial.js (easyprivacy.txt: 2272) +/(.*/)?trakksocial\.js +trakksocial.js*. +# /trafic.js (easyprivacy.txt: 2271) +/(.*/)?trafic\.js +trafic.js*. +# /traffix-track. (easyprivacy.txt: 2270) +/(.*/)?traffix-track\. +traffix-track.*. +# /traffictrade/* (easyprivacy.txt: 2269) +/(.*/)?traffictrade/.* +# /traffictracker. (easyprivacy.txt: 2268) +/(.*/)?traffictracker\. +traffictracker.*. +# /TrafficCookie. (easyprivacy.txt: 2267) +/(.*/)?TrafficCookie\. +TrafficCookie.*. +# /traffic_tracker. (easyprivacy.txt: 2266) +/(.*/)?traffic_tracker\. +# /traffic_record.php? (easyprivacy.txt: 2265) +/(.*/)?traffic_record\.php\? +# /traffic_link_client.php? (easyprivacy.txt: 2264) +/(.*/)?traffic_link_client\.php\? +# /traffic4u. (easyprivacy.txt: 2263) +/(.*/)?traffic4u\. +traffic4u.*. +# /traffic/status.gif? (easyprivacy.txt: 2262) +/(.*/)?traffic/status\.gif\? +# /traffic.asmx/* (easyprivacy.txt: 2261) +/(.*/)?traffic\.asmx/.* +traffic.asmx/.* +# /tradelab.js (easyprivacy.txt: 2260) +/(.*/)?tradelab\.js +tradelab.js*. +# /TrackVisitors/* (easyprivacy.txt: 2259) +/(.*/)?TrackVisitors/.* +# /trackvisit? (easyprivacy.txt: 2258) +/(.*/)?trackvisit\? +# /trackVisit/* (easyprivacy.txt: 2257) +/(.*/)?trackVisit/.* +# /TrackViews/* (easyprivacy.txt: 2256) +/(.*/)?TrackViews/.* +# /TrackView/?track (easyprivacy.txt: 2255) +/(.*/)?TrackView/\?track +# /TrackUser?callback= (easyprivacy.txt: 2254) +/(.*/)?TrackUser\?callback= +# /tracksubprop. (easyprivacy.txt: 2253) +/(.*/)?tracksubprop\. +tracksubprop.*. +# /trackstats? (easyprivacy.txt: 2252) +/(.*/)?trackstats\? +# /trackr.swf (easyprivacy.txt: 2251) +/(.*/)?trackr\.swf +trackr.swf*. +# /trackpxl? (easyprivacy.txt: 2250) +/(.*/)?trackpxl\? +# /trackpixel. (easyprivacy.txt: 2249) +/(.*/)?trackpixel\. +trackpixel.*. +# /trackpix. (easyprivacy.txt: 2248) +/(.*/)?trackpix\. +trackpix.*. +# /trackpidv3. (easyprivacy.txt: 2247) +/(.*/)?trackpidv3\. +trackpidv3.*. +# /trackPageView/* (easyprivacy.txt: 2246) +/(.*/)?trackPageView/.* +# /trackpageview. (easyprivacy.txt: 2245) +/(.*/)?trackpageview\. +trackpageview.*. +# /trackopen.cgi? (easyprivacy.txt: 2244) +/(.*/)?trackopen\.cgi\? +# /tracknat. (easyprivacy.txt: 2243) +/(.*/)?tracknat\. +tracknat.*. +# /trackmerchant.js (easyprivacy.txt: 2242) +/(.*/)?trackmerchant\.js +trackmerchant.js*. +# /trackjs_ (easyprivacy.txt: 2241) +/(.*/)?trackjs_ +# /trackjs6. (easyprivacy.txt: 2240) +/(.*/)?trackjs6\. +trackjs6.*. +# /trackjs1. (easyprivacy.txt: 2239) +/(.*/)?trackjs1\. +trackjs1.*. +# /trackjs. (easyprivacy.txt: 2238) +/(.*/)?trackjs\. +trackjs.*. +# /trackit.pl? (easyprivacy.txt: 2237) +/(.*/)?trackit\.pl\? +# /trackit.php? (easyprivacy.txt: 2236) +/(.*/)?trackit\.php\? +# /trackIt.js (easyprivacy.txt: 2235) +/(.*/)?trackIt\.js +trackIt.js*. +# /trackingService/* (easyprivacy.txt: 2234) +/(.*/)?trackingService/.* +# /trackingService.min.js (easyprivacy.txt: 2233) +/(.*/)?trackingService\.min\.js +trackingService.min.js*. +# /TrackingService.js (easyprivacy.txt: 2232) +/(.*/)?TrackingService\.js +TrackingService.js*. +# /trackingScript2. (easyprivacy.txt: 2231) +/(.*/)?trackingScript2\. +trackingScript2.*. +# /trackingScript1. (easyprivacy.txt: 2230) +/(.*/)?trackingScript1\. +trackingScript1.*. +# /trackings/addview/* (easyprivacy.txt: 2229) +/(.*/)?trackings/addview/.* +# /trackingpixels/get?referrer= (easyprivacy.txt: 2228) +/(.*/)?trackingpixels/get\?referrer= +# /TrackingPixel/* (easyprivacy.txt: 2227) +/(.*/)?TrackingPixel/.* +# /trackingPixel. (easyprivacy.txt: 2226) +/(.*/)?trackingPixel\. +trackingPixel.*. +# /trackingp.gif (easyprivacy.txt: 2225) +/(.*/)?trackingp\.gif +trackingp.gif*. +# /TrackingHandler. (easyprivacy.txt: 2224) +/(.*/)?TrackingHandler\. +TrackingHandler.*. +# /trackingFooter. (easyprivacy.txt: 2223) +/(.*/)?trackingFooter\. +trackingFooter.*. +# /trackingfilter.json? (easyprivacy.txt: 2222) +/(.*/)?trackingfilter\.json\? +# /TrackingData. (easyprivacy.txt: 2221) +/(.*/)?TrackingData\. +TrackingData.*. +# /trackingcookies. (easyprivacy.txt: 2220) +/(.*/)?trackingcookies\. +trackingcookies.*. +# /TrackingCookieCheck. (easyprivacy.txt: 2219) +/(.*/)?TrackingCookieCheck\. +TrackingCookieCheck.*. +# /TrackingCentral.js (easyprivacy.txt: 2218) +/(.*/)?TrackingCentral\.js +TrackingCentral.js*. +# /tracking_pixel (easyprivacy.txt: 2217) +/(.*/)?tracking_pixel +# /tracking_pix. (easyprivacy.txt: 2216) +/(.*/)?tracking_pix\. +# /tracking_link_cookie. (easyprivacy.txt: 2215) +/(.*/)?tracking_link_cookie\. +# /tracking_iframe. (easyprivacy.txt: 2214) +/(.*/)?tracking_iframe\. +# /tracking_id_ (easyprivacy.txt: 2213) +/(.*/)?tracking_id_ +# /tracking_headerJS_ (easyprivacy.txt: 2212) +/(.*/)?tracking_headerJS_ +# /tracking_frame_ (easyprivacy.txt: 2211) +/(.*/)?tracking_frame_ +# /tracking_cookie_baker. (easyprivacy.txt: 2210) +/(.*/)?tracking_cookie_baker\. +# /tracking_clickevents. (easyprivacy.txt: 2209) +/(.*/)?tracking_clickevents\. +# /tracking_ajax. (easyprivacy.txt: 2208) +/(.*/)?tracking_ajax\. +# /tracking_add_ons. (easyprivacy.txt: 2207) +/(.*/)?tracking_add_ons\. +# /Tracking?id= (easyprivacy.txt: 2206) +/(.*/)?Tracking\?id= +# /tracking202/* (easyprivacy.txt: 2205) +/(.*/)?tracking202/.* +# /tracking/widget/* (easyprivacy.txt: 2204) +/(.*/)?tracking/widget/.* +# /tracking/views/* (easyprivacy.txt: 2203) +/(.*/)?tracking/views/.* +# /tracking/user_sync_widget? (easyprivacy.txt: 2202) +/(.*/)?tracking/user_sync_widget\? +# /tracking/tynt_ (easyprivacy.txt: 2201) +/(.*/)?tracking/tynt_ +# /tracking/trk- (easyprivacy.txt: 2200) +/(.*/)?tracking/trk- +# /tracking/tracking_ (easyprivacy.txt: 2199) +/(.*/)?tracking/tracking_ +# /tracking/tracking.js (easyprivacy.txt: 2198) +/(.*/)?tracking/tracking\.js +# /tracking/track.php? (easyprivacy.txt: 2197) +/(.*/)?tracking/track\.php\? +# /tracking/track.jsp? (easyprivacy.txt: 2196) +/(.*/)?tracking/track\.jsp\? +# /tracking/tag_commander.php? (easyprivacy.txt: 2195) +/(.*/)?tracking/tag_commander\.php\? +# /tracking/pixels. (easyprivacy.txt: 2194) +/(.*/)?tracking/pixels\. +# /tracking/pixel_ (easyprivacy.txt: 2193) +/(.*/)?tracking/pixel_ +# /tracking/pixel/* (easyprivacy.txt: 2192) +/(.*/)?tracking/pixel/.* +# /tracking/pixel. (easyprivacy.txt: 2191) +/(.*/)?tracking/pixel\. +# /tracking/pageview. (easyprivacy.txt: 2190) +/(.*/)?tracking/pageview\. +# /tracking/open? (easyprivacy.txt: 2189) +/(.*/)?tracking/open\? +# /tracking/log.php? (easyprivacy.txt: 2188) +/(.*/)?tracking/log\.php\? +# /tracking/index. (easyprivacy.txt: 2187) +/(.*/)?tracking/index\. +# /tracking/impression/* (easyprivacy.txt: 2186) +/(.*/)?tracking/impression/.* +# /tracking/epixels. (easyprivacy.txt: 2185) +/(.*/)?tracking/epixels\. +# /tracking/create? (easyprivacy.txt: 2184) +/(.*/)?tracking/create\? +# /tracking/clicks (easyprivacy.txt: 2183) +/(.*/)?tracking/clicks +# /tracking/beacon/? (easyprivacy.txt: 2182) +/(.*/)?tracking/beacon/\? +# /tracking/ads. (easyprivacy.txt: 2181) +/(.*/)?tracking/ads\. +# /tracking/adobe.js (easyprivacy.txt: 2180) +/(.*/)?tracking/adobe\.js +# /tracking/addview/* (easyprivacy.txt: 2179) +/(.*/)?tracking/addview/.* +# /tracking/*/agof- (easyprivacy.txt: 2178) +/(.*/)?tracking/.*/agof- +# /tracking.vidt (easyprivacy.txt: 2177) +/(.*/)?tracking\.vidt +tracking.vidt*. +# /tracking.phtml? (easyprivacy.txt: 2176) +/(.*/)?tracking\.phtml\? +# /tracking.php?id (easyprivacy.txt: 2175) +/(.*/)?tracking\.php\?id +# /tracking.jsp (easyprivacy.txt: 2174) +/(.*/)?tracking\.jsp +tracking.jsp*. +# /tracking.gif? (easyprivacy.txt: 2173) +/(.*/)?tracking\.gif\? +# /tracking.fcgi? (easyprivacy.txt: 2172) +/(.*/)?tracking\.fcgi\? +# /tracking.cgi? (easyprivacy.txt: 2171) +/(.*/)?tracking\.cgi\? +# /tracking.ashx? (easyprivacy.txt: 2170) +/(.*/)?tracking\.ashx\? +# /tracking-widget. (easyprivacy.txt: 2169) +/(.*/)?tracking-widget\. +tracking-widget.*. +# /tracking-pixel/* (easyprivacy.txt: 2168) +/(.*/)?tracking-pixel/.* +# /tracking-pixel. (easyprivacy.txt: 2167) +/(.*/)?tracking-pixel\. +tracking-pixel.*. +# /tracking-init. (easyprivacy.txt: 2166) +/(.*/)?tracking-init\. +tracking-init.*. +# /tracking-info.gif? (easyprivacy.txt: 2165) +/(.*/)?tracking-info\.gif\? +# /tracking-hits. (easyprivacy.txt: 2164) +/(.*/)?tracking-hits\. +tracking-hits.*. +# /tracking-cookie. (easyprivacy.txt: 2163) +/(.*/)?tracking-cookie\. +tracking-cookie.*. +# /tracking-ad/* (easyprivacy.txt: 2162) +/(.*/)?tracking-ad/.* +# /trackimps? (easyprivacy.txt: 2161) +/(.*/)?trackimps\? +# /trackImpression/* (easyprivacy.txt: 2160) +/(.*/)?trackImpression/.* +# /trackimage/* (easyprivacy.txt: 2159) +/(.*/)?trackimage/.* +# /trackEvent.min.js? (easyprivacy.txt: 2158) +/(.*/)?trackEvent\.min\.js\? +# /trackEvent.js? (easyprivacy.txt: 2157) +/(.*/)?trackEvent\.js\? +# /trackerstatistik. (easyprivacy.txt: 2156) +/(.*/)?trackerstatistik\. +trackerstatistik.*. +# /trackerpixel.js (easyprivacy.txt: 2155) +/(.*/)?trackerpixel\.js +trackerpixel.js*. +# /TrackerHandler. (easyprivacy.txt: 2154) +/(.*/)?TrackerHandler\. +TrackerHandler.*. +# /trackerGif? (easyprivacy.txt: 2153) +/(.*/)?trackerGif\? +# /TrackerAS3. (easyprivacy.txt: 2152) +/(.*/)?TrackerAS3\. +TrackerAS3.*. +# /tracker_pixel. (easyprivacy.txt: 2151) +/(.*/)?tracker_pixel\. +# /tracker_pageview. (easyprivacy.txt: 2150) +/(.*/)?tracker_pageview\. +# /tracker_gif. (easyprivacy.txt: 2149) +/(.*/)?tracker_gif\. +# /tracker_article (easyprivacy.txt: 2148) +/(.*/)?tracker_article +# /tracker_activityStream. (easyprivacy.txt: 2147) +/(.*/)?tracker_activityStream\. +# /tracker?*= (easyprivacy.txt: 2146) +/(.*/)?tracker\?.*= +# /tracker2.js (easyprivacy.txt: 2145) +/(.*/)?tracker2\.js +tracker2.js*. +# /tracker/tracker.js (easyprivacy.txt: 2144) +/(.*/)?tracker/tracker\.js +# /tracker/track.php? (easyprivacy.txt: 2143) +/(.*/)?tracker/track\.php\? +# /tracker/t.php? (easyprivacy.txt: 2142) +/(.*/)?tracker/t\.php\? +# /tracker/story.jpg? (easyprivacy.txt: 2141) +/(.*/)?tracker/story\.jpg\? +# /tracker/referrer/* (easyprivacy.txt: 2140) +/(.*/)?tracker/referrer/.* +# /tracker/receiver/* (easyprivacy.txt: 2139) +/(.*/)?tracker/receiver/.* +# /tracker/ping/* (easyprivacy.txt: 2138) +/(.*/)?tracker/ping/.* +# /tracker/p.gif? (easyprivacy.txt: 2137) +/(.*/)?tracker/p\.gif\? +# /tracker/log? (easyprivacy.txt: 2136) +/(.*/)?tracker/log\? +# /tracker/imp? (easyprivacy.txt: 2135) +/(.*/)?tracker/imp\? +# /tracker/event? (easyprivacy.txt: 2134) +/(.*/)?tracker/event\? +# /tracker/blank.gif? (easyprivacy.txt: 2133) +/(.*/)?tracker/blank\.gif\? +# /tracker.tsp? (easyprivacy.txt: 2132) +/(.*/)?tracker\.tsp\? +# /tracker.pl? (easyprivacy.txt: 2131) +/(.*/)?tracker\.pl\? +# /tracker.php? (easyprivacy.txt: 2130) +/(.*/)?tracker\.php\? +# /tracker.min.js (easyprivacy.txt: 2129) +/(.*/)?tracker\.min\.js +tracker.min.js*. +# /tracker.log? (easyprivacy.txt: 2128) +/(.*/)?tracker\.log\? +# /tracker.json.php? (easyprivacy.txt: 2127) +/(.*/)?tracker\.json\.php\? +# /tracker.js.php? (easyprivacy.txt: 2126) +/(.*/)?tracker\.js\.php\? +# /tracker-r1.js (easyprivacy.txt: 2125) +/(.*/)?tracker-r1\.js +tracker-r1.js*. +# /tracker-ev-sdk.js (easyprivacy.txt: 2124) +/(.*/)?tracker-ev-sdk\.js +tracker-ev-sdk.js*. +# /trackconversion? (easyprivacy.txt: 2123) +/(.*/)?trackconversion\? +# /trackContentViews. (easyprivacy.txt: 2122) +/(.*/)?trackContentViews\. +trackContentViews.*. +# /trackClickEvent.js (easyprivacy.txt: 2121) +/(.*/)?trackClickEvent\.js +trackClickEvent.js*. +# /TrackClick. (easyprivacy.txt: 2120) +/(.*/)?TrackClick\. +TrackClick.*. +# /trackAdHit. (easyprivacy.txt: 2119) +/(.*/)?trackAdHit\. +trackAdHit.*. +# /trackad. (easyprivacy.txt: 2118) +/(.*/)?trackad\. +trackad.*. +# /track_visit? (easyprivacy.txt: 2117) +/(.*/)?track_visit\? +# /track_social. (easyprivacy.txt: 2116) +/(.*/)?track_social\. +# /track_pageview? (easyprivacy.txt: 2115) +/(.*/)?track_pageview\? +# /track_metric/* (easyprivacy.txt: 2114) +/(.*/)?track_metric/.* +# /track_js/? (easyprivacy.txt: 2113) +/(.*/)?track_js/\? +# /track_event.php? (easyprivacy.txt: 2112) +/(.*/)?track_event\.php\? +# /track_clicks_ (easyprivacy.txt: 2111) +/(.*/)?track_clicks_ +# /track?referer= (easyprivacy.txt: 2110) +/(.*/)?track\?referer= +# /track?event= (easyprivacy.txt: 2109) +/(.*/)?track\?event= +# /track;adv (easyprivacy.txt: 2108) +/(.*/)?track;adv +# /track2.php (easyprivacy.txt: 2107) +/(.*/)?track2\.php +track2.php*. +# /track/visits/? (easyprivacy.txt: 2106) +/(.*/)?track/visits/\? +# /track/visitors/? (easyprivacy.txt: 2105) +/(.*/)?track/visitors/\? +# /track/view/* (easyprivacy.txt: 2104) +/(.*/)?track/view/.* +# /track/track.php? (easyprivacy.txt: 2103) +/(.*/)?track/track\.php\? +# /track/site/* (easyprivacy.txt: 2102) +/(.*/)?track/site/.* +# /track/pixel. (easyprivacy.txt: 2101) +/(.*/)?track/pixel\. +# /track/pix.asp? (easyprivacy.txt: 2100) +/(.*/)?track/pix\.asp\? +# /track/mygreendot/* (easyprivacy.txt: 2099) +/(.*/)?track/mygreendot/.* +# /track/jsinfo (easyprivacy.txt: 2098) +/(.*/)?track/jsinfo +# /track/imp? (easyprivacy.txt: 2097) +/(.*/)?track/imp\? +# /track/dot.gif? (easyprivacy.txt: 2096) +/(.*/)?track/dot\.gif\? +# /track/count*js (easyprivacy.txt: 2095) +/(.*/)?track/count.*js +# /Track/Capture.aspx? (easyprivacy.txt: 2094) +/(.*/)?Track/Capture\.aspx\? +# /track/aggregate? (easyprivacy.txt: 2093) +/(.*/)?track/aggregate\? +# /track/?site (easyprivacy.txt: 2092) +/(.*/)?track/\?site +# /track/*?rnd=0.$image (easyprivacy.txt: 2091) +/(.*/)?track/.*\?rnd=0\. +# /track/*&CheckCookieId= (easyprivacy.txt: 2090) +/(.*/)?track/.*&CheckCookieId= +# /track.php?*&uid= (easyprivacy.txt: 2089) +/(.*/)?track\.php\?.*&uid= +# /track.js?screen= (easyprivacy.txt: 2088) +/(.*/)?track\.js\?screen= +# /track.js?referrer (easyprivacy.txt: 2087) +/(.*/)?track\.js\?referrer +# /track.gif? (easyprivacy.txt: 2086) +/(.*/)?track\.gif\? +# /track.cgi? (easyprivacy.txt: 2085) +/(.*/)?track\.cgi\? +# /track.aspx? (easyprivacy.txt: 2084) +/(.*/)?track\.aspx\? +# /Track.aspx/* (easyprivacy.txt: 2083) +/(.*/)?Track\.aspx/.* +Track.aspx/.* +# /track.ashx?*=http (easyprivacy.txt: 2082) +/(.*/)?track\.ashx\?.*=http +# /track.ads/* (easyprivacy.txt: 2081) +/(.*/)?track\.ads/.* +track.ads/.* +# /track-referrals.js (easyprivacy.txt: 2080) +/(.*/)?track-referrals\.js +track-referrals.js*. +# /track-compiled.js (easyprivacy.txt: 2079) +/(.*/)?track-compiled\.js +track-compiled.js*. +# /tr.gif? (easyprivacy.txt: 2078) +/(.*/)?tr\.gif\? +# /tPx.gif? (easyprivacy.txt: 2077) +/(.*/)?tPx\.gif\? +# /tpix.gif? (easyprivacy.txt: 2076) +/(.*/)?tpix\.gif\? +# /touchclarity/* (easyprivacy.txt: 2075) +/(.*/)?touchclarity/.* +# /totango.js (easyprivacy.txt: 2074) +/(.*/)?totango\.js +totango.js*. +# /tops-counter? (easyprivacy.txt: 2073) +/(.*/)?tops-counter\? +# /tongji.js (easyprivacy.txt: 2072) +/(.*/)?tongji\.js +tongji.js*. +# /token?referer= (easyprivacy.txt: 2071) +/(.*/)?token\?referer= +# /tnsmetrix/* (easyprivacy.txt: 2070) +/(.*/)?tnsmetrix/.* +# /tnsCounter. (easyprivacy.txt: 2069) +/(.*/)?tnsCounter\. +tnsCounter.*. +# /tncms/tracking.js (easyprivacy.txt: 2068) +/(.*/)?tncms/tracking\.js +# /tmv11. (easyprivacy.txt: 2067) +/(.*/)?tmv11\. +tmv11.*. +# /tiwik. (easyprivacy.txt: 2066) +/(.*/)?tiwik\. +tiwik.*. +# /timestrend_ (easyprivacy.txt: 2065) +/(.*/)?timestrend_ +# /timeslog. (easyprivacy.txt: 2064) +/(.*/)?timeslog\. +timeslog.*. +# /tiara/tracker/* (easyprivacy.txt: 2063) +/(.*/)?tiara/tracker/.* +# /thuzianayltics. (easyprivacy.txt: 2062) +/(.*/)?thuzianayltics\. +thuzianayltics.*. +# /ThirdPartyTracking. (easyprivacy.txt: 2061) +/(.*/)?ThirdPartyTracking\. +ThirdPartyTracking.*. +# /thirdPartyTagscachebuster.js (easyprivacy.txt: 2060) +/(.*/)?thirdPartyTagscachebuster\.js +thirdPartyTagscachebuster.js*. +# /thirdPartyTags.js (easyprivacy.txt: 2059) +/(.*/)?thirdPartyTags\.js +thirdPartyTags.js*. +# /thirdPartyPixel. (easyprivacy.txt: 2058) +/(.*/)?thirdPartyPixel\. +thirdPartyPixel.*. +# /thirdpartyCookie. (easyprivacy.txt: 2057) +/(.*/)?thirdpartyCookie\. +thirdpartyCookie.*. +# /thetracker.js (easyprivacy.txt: 2056) +/(.*/)?thetracker\.js +thetracker.js*. +# /textlink.php?text (easyprivacy.txt: 2055) +/(.*/)?textlink\.php\?text +# /tealiumpixel. (easyprivacy.txt: 2054) +/(.*/)?tealiumpixel\. +tealiumpixel.*. +# /tealium.js (easyprivacy.txt: 2053) +/(.*/)?tealium\.js +tealium.js*. +# /tealium-api/* (easyprivacy.txt: 2052) +/(.*/)?tealium-api/.* +# /TealeafSDKConfig.js (easyprivacy.txt: 2051) +/(.*/)?TealeafSDKConfig\.js +TealeafSDKConfig.js*. +# /TealeafSDK.js (easyprivacy.txt: 2050) +/(.*/)?TealeafSDK\.js +TealeafSDK.js*. +# /TeaLeafCfg.js (easyprivacy.txt: 2049) +/(.*/)?TeaLeafCfg\.js +TeaLeafCfg.js*. +# /TeaLeaf.js (easyprivacy.txt: 2048) +/(.*/)?TeaLeaf\.js +TeaLeaf.js*. +# /TCMAnalytics_ (easyprivacy.txt: 2047) +/(.*/)?TCMAnalytics_ +# /tc_throttle.js (easyprivacy.txt: 2046) +/(.*/)?tc_throttle\.js +# /tc_targeting. (easyprivacy.txt: 2045) +/(.*/)?tc_targeting\. +# /tc_logging.js (easyprivacy.txt: 2044) +/(.*/)?tc_logging\.js +# /taxtag.js (easyprivacy.txt: 2043) +/(.*/)?taxtag\.js +taxtag.js*. +# /tagx.js (easyprivacy.txt: 2042) +/(.*/)?tagx\.js +tagx.js*. +# /TagSvc/* (easyprivacy.txt: 2041) +/(.*/)?TagSvc/.* +# /tagomnitureengine.js (easyprivacy.txt: 2040) +/(.*/)?tagomnitureengine\.js +tagomnitureengine.js*. +# /TagCommander.cfc? (easyprivacy.txt: 2039) +/(.*/)?TagCommander\.cfc\? +# /TacodaFTT. (easyprivacy.txt: 2038) +/(.*/)?TacodaFTT\. +TacodaFTT.*. +# /tacoda_ (easyprivacy.txt: 2037) +/(.*/)?tacoda_ +# /tacoda. (easyprivacy.txt: 2036) +/(.*/)?tacoda\. +tacoda.*. +# /t-richrelevance- (easyprivacy.txt: 2035) +/(.*/)?t-richrelevance- +t-richrelevance-*. +# /szm_mclient.js (easyprivacy.txt: 2034) +/(.*/)?szm_mclient\.js +# /syndstats. (easyprivacy.txt: 2033) +/(.*/)?syndstats\. +syndstats.*. +# /syndication/metrics/* (easyprivacy.txt: 2032) +/(.*/)?syndication/metrics/.* +# /synd.aspx (easyprivacy.txt: 2031) +/(.*/)?synd\.aspx +synd.aspx*. +# /syn/mail_s.php? (easyprivacy.txt: 2030) +/(.*/)?syn/mail_s\.php\? +# /swfaddress.js?tracker= (easyprivacy.txt: 2029) +/(.*/)?swfaddress\.js\?tracker= +# /surveyoverlay/* (easyprivacy.txt: 2028) +/(.*/)?surveyoverlay/.* +# /survey_invite_ (easyprivacy.txt: 2027) +/(.*/)?survey_invite_ +# /surphace_track. (easyprivacy.txt: 2026) +/(.*/)?surphace_track\. +# /supertracking. (easyprivacy.txt: 2025) +/(.*/)?supertracking\. +supertracking.*. +# /superstats. (easyprivacy.txt: 2024) +/(.*/)?superstats\. +superstats.*. +# /supercookie. (easyprivacy.txt: 2023) +/(.*/)?supercookie\. +supercookie.*. +# /stwc/code.js (easyprivacy.txt: 2022) +/(.*/)?stwc/code\.js +# /stwc-counter/* (easyprivacy.txt: 2021) +/(.*/)?stwc-counter/.* +# /stt/track/* (easyprivacy.txt: 2020) +/(.*/)?stt/track/.* +# /stt/track. (easyprivacy.txt: 2019) +/(.*/)?stt/track\. +# /stracking.js (easyprivacy.txt: 2018) +/(.*/)?stracking\.js +stracking.js*. +# /store-uniq-client-id?bomuuid= (easyprivacy.txt: 2017) +/(.*/)?store-uniq-client-id\?bomuuid= +# /stcollection. (easyprivacy.txt: 2016) +/(.*/)?stcollection\. +stcollection.*. +# /StatV1? (easyprivacy.txt: 2015) +/(.*/)?StatV1\? +# /stattracker- (easyprivacy.txt: 2014) +/(.*/)?stattracker- +stattracker-*. +# /statsupdater. (easyprivacy.txt: 2013) +/(.*/)?statsupdater\. +statsupdater.*. +# /statstracker? (easyprivacy.txt: 2012) +/(.*/)?statstracker\? +# /statspixel. (easyprivacy.txt: 2011) +/(.*/)?statspixel\. +statspixel.*. +# /StatsMngrWebInterface. (easyprivacy.txt: 2010) +/(.*/)?StatsMngrWebInterface\. +StatsMngrWebInterface.*. +# /StatsHelper.gif? (easyprivacy.txt: 2009) +/(.*/)?StatsHelper\.gif\? +# /statsd_proxy (easyprivacy.txt: 2008) +/(.*/)?statsd_proxy +# /statscript.js (easyprivacy.txt: 2007) +/(.*/)?statscript\.js +statscript.js*. +# /statscounter/* (easyprivacy.txt: 2006) +/(.*/)?statscounter/.* +# /StatsCollector/* (easyprivacy.txt: 2005) +/(.*/)?StatsCollector/.* +# /statsadvance.js (easyprivacy.txt: 2004) +/(.*/)?statsadvance\.js +statsadvance.js*. +# /stats_tracker. (easyprivacy.txt: 2003) +/(.*/)?stats_tracker\. +# /stats_js.asp? (easyprivacy.txt: 2002) +/(.*/)?stats_js\.asp\? +# /stats_brand.js (easyprivacy.txt: 2001) +/(.*/)?stats_brand\.js +# /stats_blog.js? (easyprivacy.txt: 2000) +/(.*/)?stats_blog\.js\? +# /stats?style$~xmlhttprequest (easyprivacy.txt: 1999) +/(.*/)?stats\?style +# /stats?sid= (easyprivacy.txt: 1998) +/(.*/)?stats\?sid= +# /stats?object (easyprivacy.txt: 1997) +/(.*/)?stats\?object +# /stats?ev= (easyprivacy.txt: 1996) +/(.*/)?stats\?ev= +# /stats?callback= (easyprivacy.txt: 1995) +/(.*/)?stats\?callback= +# /stats?blog_ (easyprivacy.txt: 1994) +/(.*/)?stats\?blog_ +# /stats?aid= (easyprivacy.txt: 1993) +/(.*/)?stats\?aid= +# /stats/tracker.js (easyprivacy.txt: 1992) +/(.*/)?stats/tracker\.js +# /stats/tracker.gif? (easyprivacy.txt: 1991) +/(.*/)?stats/tracker\.gif\? +# /stats/track.asp? (easyprivacy.txt: 1990) +/(.*/)?stats/track\.asp\? +# /stats/pgview. (easyprivacy.txt: 1989) +/(.*/)?stats/pgview\. +# /stats/mixpanel- (easyprivacy.txt: 1988) +/(.*/)?stats/mixpanel- +# /stats/metrics/* (easyprivacy.txt: 1987) +/(.*/)?stats/metrics/.* +# /stats/mark? (easyprivacy.txt: 1986) +/(.*/)?stats/mark\? +# /stats/log. (easyprivacy.txt: 1985) +/(.*/)?stats/log\. +# /stats/impression (easyprivacy.txt: 1984) +/(.*/)?stats/impression +# /stats/et_track.asp? (easyprivacy.txt: 1983) +/(.*/)?stats/et_track\.asp\? +# /stats/dlcount_ (easyprivacy.txt: 1982) +/(.*/)?stats/dlcount_ +# /stats/CounterPage. (easyprivacy.txt: 1981) +/(.*/)?stats/CounterPage\. +# /stats/counter. (easyprivacy.txt: 1980) +/(.*/)?stats/counter\. +# /stats/collector.js (easyprivacy.txt: 1979) +/(.*/)?stats/collector\.js +# /stats/add/* (easyprivacy.txt: 1978) +/(.*/)?stats/add/.* +# /stats/?js (easyprivacy.txt: 1977) +/(.*/)?stats/\?js +# /stats.php?type= (easyprivacy.txt: 1976) +/(.*/)?stats\.php\?type= +# /stats.php?*http (easyprivacy.txt: 1975) +/(.*/)?stats\.php\?.*http +# /stats.hitbox.com/* (easyprivacy.txt: 1974) +/(.*/)?stats\.hitbox\.com/.* +stats.hitbox.com/.* +# /stats.gif? (easyprivacy.txt: 1973) +/(.*/)?stats\.gif\? +# /stats.cgi$image (easyprivacy.txt: 1972) +/(.*/)?stats\.cgi +stats.cgi*. +# /stats.asp?id (easyprivacy.txt: 1971) +/(.*/)?stats\.asp\?id +# /stats-tracking.js (easyprivacy.txt: 1970) +/(.*/)?stats-tracking\.js +stats-tracking.js*. +# /stats-js.cgi? (easyprivacy.txt: 1969) +/(.*/)?stats-js\.cgi\? +# /statlogger. (easyprivacy.txt: 1968) +/(.*/)?statlogger\. +statlogger.*. +# /statistics?eventType= (easyprivacy.txt: 1967) +/(.*/)?statistics\?eventType= +# /statistics/logging/* (easyprivacy.txt: 1966) +/(.*/)?statistics/logging/.* +# /statistics/getcook.php? (easyprivacy.txt: 1965) +/(.*/)?statistics/getcook\.php\? +# /statistics.aspx?profile (easyprivacy.txt: 1964) +/(.*/)?statistics\.aspx\?profile +# /statistics.asp? (easyprivacy.txt: 1963) +/(.*/)?statistics\.asp\? +# /statistics-page-view/* (easyprivacy.txt: 1962) +/(.*/)?statistics-page-view/.* +# /statics/analytics.js? (easyprivacy.txt: 1961) +/(.*/)?statics/analytics\.js\? +# /static-tracking/*$script (easyprivacy.txt: 1960) +/(.*/)?static-tracking/.* +# /stateye/* (easyprivacy.txt: 1959) +/(.*/)?stateye/.* +# /statcountex/count.asp? (easyprivacy.txt: 1958) +/(.*/)?statcountex/count\.asp\? +# /statcounter.js (easyprivacy.txt: 1957) +/(.*/)?statcounter\.js +statcounter.js*. +# /statcounter.asp (easyprivacy.txt: 1956) +/(.*/)?statcounter\.asp +statcounter.asp*. +# /statcount. (easyprivacy.txt: 1955) +/(.*/)?statcount\. +statcount.*. +# /StatCms/ViewCount? (easyprivacy.txt: 1954) +/(.*/)?StatCms/ViewCount\? +# /statcapture. (easyprivacy.txt: 1953) +/(.*/)?statcapture\. +statcapture.*. +# /stataffs/track.php? (easyprivacy.txt: 1952) +/(.*/)?stataffs/track\.php\? +# /stat_visits. (easyprivacy.txt: 1951) +/(.*/)?stat_visits\. +# /stat_search. (easyprivacy.txt: 1950) +/(.*/)?stat_search\. +# /stat_page2. (easyprivacy.txt: 1949) +/(.*/)?stat_page2\. +# /stat_page. (easyprivacy.txt: 1948) +/(.*/)?stat_page\. +# /stat_js.asp? (easyprivacy.txt: 1947) +/(.*/)?stat_js\.asp\? +# /stat?track= (easyprivacy.txt: 1946) +/(.*/)?stat\?track= +# /stat?SiteID= (easyprivacy.txt: 1945) +/(.*/)?stat\?SiteID= +# /stat36/stat/track.php (easyprivacy.txt: 1944) +/(.*/)?stat36/stat/track\.php +# /stat2.js (easyprivacy.txt: 1943) +/(.*/)?stat2\.js +stat2.js*. +# /stat2.aspx? (easyprivacy.txt: 1942) +/(.*/)?stat2\.aspx\? +# /stat/uvstat? (easyprivacy.txt: 1941) +/(.*/)?stat/uvstat\? +# /stat/track.php?mode=js (easyprivacy.txt: 1940) +/(.*/)?stat/track\.php\?mode=js +# /stat/inserthit. (easyprivacy.txt: 1939) +/(.*/)?stat/inserthit\. +# /stat/event? (easyprivacy.txt: 1938) +/(.*/)?stat/event\? +# /stat/count (easyprivacy.txt: 1937) +/(.*/)?stat/count +# /stat.tiff? (easyprivacy.txt: 1936) +/(.*/)?stat\.tiff\? +# /stat.php? (easyprivacy.txt: 1935) +/(.*/)?stat\.php\? +# /stat.htm? (easyprivacy.txt: 1934) +/(.*/)?stat\.htm\? +# /stat.gif? (easyprivacy.txt: 1933) +/(.*/)?stat\.gif\? +# /stat.aspx? (easyprivacy.txt: 1932) +/(.*/)?stat\.aspx\? +# /st.aspx? (easyprivacy.txt: 1931) +/(.*/)?st\.aspx\? +# /sstlm8.sst? (easyprivacy.txt: 1930) +/(.*/)?sstlm8\.sst\? +# /sst8.sst? (easyprivacy.txt: 1929) +/(.*/)?sst8\.sst\? +# /spylog_ (easyprivacy.txt: 1928) +/(.*/)?spylog_ +# /springmetrics. (easyprivacy.txt: 1927) +/(.*/)?springmetrics\. +springmetrics.*. +# /spip.php?page=stats.js (easyprivacy.txt: 1926) +/(.*/)?spip\.php\?page=stats\.js +# /spi.gif?aid= (easyprivacy.txt: 1925) +/(.*/)?spi\.gif\?aid= +# /SpeedTrapInsert. (easyprivacy.txt: 1924) +/(.*/)?SpeedTrapInsert\. +SpeedTrapInsert.*. +# /spannerworks-tracking- (easyprivacy.txt: 1923) +/(.*/)?spannerworks-tracking- +spannerworks-tracking-*. +# /spacer.gif?q=l3mkwgak (easyprivacy.txt: 1922) +/(.*/)?spacer\.gif\?q=l3mkwgak +# /spacer.gif?hscbrnd (easyprivacy.txt: 1921) +/(.*/)?spacer\.gif\?hscbrnd +# /sp_tracker. (easyprivacy.txt: 1920) +/(.*/)?sp_tracker\. +# /sp_logging. (easyprivacy.txt: 1919) +/(.*/)?sp_logging\. +# /sp-2.0.0.min.js (easyprivacy.txt: 1918) +/(.*/)?sp-2\.0\.0\.min\.js +sp-2.0.0.min.js*. +# /sophusThree- (easyprivacy.txt: 1917) +/(.*/)?sophusThree- +sophusThree-*. +# /sophus3_logging.js (easyprivacy.txt: 1916) +/(.*/)?sophus3_logging\.js +# /sophus3/* (easyprivacy.txt: 1915) +/(.*/)?sophus3/.* +# /sophus/logging.js (easyprivacy.txt: 1914) +/(.*/)?sophus/logging\.js +# /sophus.js (easyprivacy.txt: 1913) +/(.*/)?sophus\.js +sophus.js*. +# /sometrics/* (easyprivacy.txt: 1912) +/(.*/)?sometrics/.* +# /solarcode.js (easyprivacy.txt: 1911) +/(.*/)?solarcode\.js +solarcode.js*. +# /softpage/stats_registerhit.asp? (easyprivacy.txt: 1910) +/(.*/)?softpage/stats_registerhit\.asp\? +# /softclick.js (easyprivacy.txt: 1909) +/(.*/)?softclick\.js +softclick.js*. +# /socialtracking.min.js (easyprivacy.txt: 1908) +/(.*/)?socialtracking\.min\.js +socialtracking.min.js*. +# /SocialTrack_ (easyprivacy.txt: 1907) +/(.*/)?SocialTrack_ +# /socialButtonTracker. (easyprivacy.txt: 1906) +/(.*/)?socialButtonTracker\. +socialButtonTracker.*. +# /social_tracking. (easyprivacy.txt: 1905) +/(.*/)?social_tracking\. +# /smarta. (easyprivacy.txt: 1904) +/(.*/)?smarta\. +smarta.*. +# /small.gif?type (easyprivacy.txt: 1903) +/(.*/)?small\.gif\?type +# /slimstat/* (easyprivacy.txt: 1902) +/(.*/)?slimstat/.* +# /skstats_ (easyprivacy.txt: 1901) +/(.*/)?skstats_ +# /skstats- (easyprivacy.txt: 1900) +/(.*/)?skstats- +skstats-*. +# /sitetrek.js (easyprivacy.txt: 1899) +/(.*/)?sitetrek\.js +sitetrek.js*. +# /SiteTrackingGA. (easyprivacy.txt: 1898) +/(.*/)?SiteTrackingGA\. +SiteTrackingGA.*. +# /SiteTracker. (easyprivacy.txt: 1897) +/(.*/)?SiteTracker\. +SiteTracker.*. +# /sitestats.gif? (easyprivacy.txt: 1896) +/(.*/)?sitestats\.gif\? +# /sitestatforms. (easyprivacy.txt: 1895) +/(.*/)?sitestatforms\. +sitestatforms.*. +# /sitestat_ (easyprivacy.txt: 1894) +/(.*/)?sitestat_ +# /sitestat. (easyprivacy.txt: 1893) +/(.*/)?sitestat\. +sitestat.*. +# /siteskan.com/* (easyprivacy.txt: 1892) +/(.*/)?siteskan\.com/.* +siteskan.com/.* +# /sitecrm2.js (easyprivacy.txt: 1891) +/(.*/)?sitecrm2\.js +sitecrm2.js*. +# /sitecrm.js (easyprivacy.txt: 1890) +/(.*/)?sitecrm\.js +sitecrm.js*. +# /sitecounter/counter. (easyprivacy.txt: 1889) +/(.*/)?sitecounter/counter\. +# /sitecatalist.js (easyprivacy.txt: 1888) +/(.*/)?sitecatalist\.js +sitecatalist.js*. +# /siteanalytics_ (easyprivacy.txt: 1887) +/(.*/)?siteanalytics_ +# /siteAnalytics. (easyprivacy.txt: 1886) +/(.*/)?siteAnalytics\. +siteAnalytics.*. +# /siteAnalytics- (easyprivacy.txt: 1885) +/(.*/)?siteAnalytics- +siteAnalytics-*. +# /site_tracking. (easyprivacy.txt: 1884) +/(.*/)?site_tracking\. +# /site_stats/* (easyprivacy.txt: 1883) +/(.*/)?site_stats/.* +# /site_stats. (easyprivacy.txt: 1882) +/(.*/)?site_stats\. +# /site_statistics. (easyprivacy.txt: 1881) +/(.*/)?site_statistics\. +# /site-tracker_ (easyprivacy.txt: 1880) +/(.*/)?site-tracker_ +# /site-tracker. (easyprivacy.txt: 1879) +/(.*/)?site-tracker\. +site-tracker.*. +# /site-tracker- (easyprivacy.txt: 1878) +/(.*/)?site-tracker- +site-tracker-*. +# /simtracker.min.js (easyprivacy.txt: 1877) +/(.*/)?simtracker\.min\.js +simtracker.min.js*. +# /simplereach_counts/* (easyprivacy.txt: 1876) +/(.*/)?simplereach_counts/.* +# /simple_reach.js (easyprivacy.txt: 1875) +/(.*/)?simple_reach\.js +# /silverpop/* (easyprivacy.txt: 1874) +/(.*/)?silverpop/.* +# /SilverPop. (easyprivacy.txt: 1873) +/(.*/)?SilverPop\. +SilverPop.*. +# /sikquantcast_ (easyprivacy.txt: 1872) +/(.*/)?sikquantcast_ +# /sikcomscore_ (easyprivacy.txt: 1871) +/(.*/)?sikcomscore_ +# /sidtracker. (easyprivacy.txt: 1870) +/(.*/)?sidtracker\. +sidtracker.*. +# /sidebarAnalytic? (easyprivacy.txt: 1869) +/(.*/)?sidebarAnalytic\? +# /si-tracking. (easyprivacy.txt: 1868) +/(.*/)?si-tracking\. +si-tracking.*. +# /showhits.php? (easyprivacy.txt: 1867) +/(.*/)?showhits\.php\? +# /showcounter. (easyprivacy.txt: 1866) +/(.*/)?showcounter\. +showcounter.*. +# /shopify_stats.js (easyprivacy.txt: 1865) +/(.*/)?shopify_stats\.js +# /shinystat_ (easyprivacy.txt: 1864) +/(.*/)?shinystat_ +# /shinystat. (easyprivacy.txt: 1863) +/(.*/)?shinystat\. +shinystat.*. +# /shareTrackClient. (easyprivacy.txt: 1862) +/(.*/)?shareTrackClient\. +shareTrackClient.*. +# /shareCounts. (easyprivacy.txt: 1861) +/(.*/)?shareCounts\. +shareCounts.*. +# /setTDUID.do? (easyprivacy.txt: 1860) +/(.*/)?setTDUID\.do\? +# /SetSabreAnalyticsCookie. (easyprivacy.txt: 1859) +/(.*/)?SetSabreAnalyticsCookie\. +SetSabreAnalyticsCookie.*. +# /setcookie? (easyprivacy.txt: 1858) +/(.*/)?setcookie\? +# /setcooki. (easyprivacy.txt: 1857) +/(.*/)?setcooki\. +setcooki.*. +# /SETCOOKAFF. (easyprivacy.txt: 1856) +/(.*/)?SETCOOKAFF\. +SETCOOKAFF.*. +# /sessioncam/* (easyprivacy.txt: 1855) +/(.*/)?sessioncam/.* +# /session-tracker/tracking- (easyprivacy.txt: 1854) +/(.*/)?session-tracker/tracking- +# /session-hit. (easyprivacy.txt: 1853) +/(.*/)?session-hit\. +session-hit.*. +# /services/counters/* (easyprivacy.txt: 1852) +/(.*/)?services/counters/.* +# /services/counter/* (easyprivacy.txt: 1851) +/(.*/)?services/counter/.* +# /services/analytics/* (easyprivacy.txt: 1850) +/(.*/)?services/analytics/.* +# /server.php?request=track&output= (easyprivacy.txt: 1849) +/(.*/)?server\.php\?request=track&output= +# /serve/mtrcs_ (easyprivacy.txt: 1848) +/(.*/)?serve/mtrcs_ +# /SEOTracking. (easyprivacy.txt: 1847) +/(.*/)?SEOTracking\. +SEOTracking.*. +# /seotracker/* (easyprivacy.txt: 1846) +/(.*/)?seotracker/.* +# /seoTracker. (easyprivacy.txt: 1845) +/(.*/)?seoTracker\. +seoTracker.*. +# /seostats/* (easyprivacy.txt: 1844) +/(.*/)?seostats/.* +# /seomonitor/* (easyprivacy.txt: 1843) +/(.*/)?seomonitor/.* +# /send-impressions.html (easyprivacy.txt: 1842) +/(.*/)?send-impressions\.html +send-impressions.html*. +# /SEMTracking. (easyprivacy.txt: 1841) +/(.*/)?SEMTracking\. +SEMTracking.*. +# /semanticTagService.js (easyprivacy.txt: 1840) +/(.*/)?semanticTagService\.js +semanticTagService.js*. +# /SellathonCounterService. (easyprivacy.txt: 1839) +/(.*/)?SellathonCounterService\. +SellathonCounterService.*. +# /segmentIoTrackingProvider.js (easyprivacy.txt: 1838) +/(.*/)?segmentIoTrackingProvider\.js +segmentIoTrackingProvider.js*. +# /segmentio.js (easyprivacy.txt: 1837) +/(.*/)?segmentio\.js +segmentio.js*. +# /securetracker. (easyprivacy.txt: 1836) +/(.*/)?securetracker\. +securetracker.*. +# /searchMetric. (easyprivacy.txt: 1835) +/(.*/)?searchMetric\. +searchMetric.*. +# /searchIgnite. (easyprivacy.txt: 1834) +/(.*/)?searchIgnite\. +searchIgnite.*. +# /sdxp1/dru4/meta?_hc= (easyprivacy.txt: 1833) +/(.*/)?sdxp1/dru4/meta\?_hc= +# /sdctag2.js (easyprivacy.txt: 1832) +/(.*/)?sdctag2\.js +sdctag2.js*. +# /sdctag1.js (easyprivacy.txt: 1831) +/(.*/)?sdctag1\.js +sdctag1.js*. +# /sdctag. (easyprivacy.txt: 1830) +/(.*/)?sdctag\. +sdctag.*. +# /sdc_tag. (easyprivacy.txt: 1829) +/(.*/)?sdc_tag\. +# /sdc_reporting_ (easyprivacy.txt: 1828) +/(.*/)?sdc_reporting_ +# /sdc3.js (easyprivacy.txt: 1827) +/(.*/)?sdc3\.js +sdc3.js*. +# /sdc2.js (easyprivacy.txt: 1826) +/(.*/)?sdc2\.js +sdc2.js*. +# /sdc1.js (easyprivacy.txt: 1825) +/(.*/)?sdc1\.js +sdc1.js*. +# /sctracker. (easyprivacy.txt: 1824) +/(.*/)?sctracker\. +sctracker.*. +# /scripts/xiti/* (easyprivacy.txt: 1823) +/(.*/)?scripts/xiti/.* +# /scripts/log. (easyprivacy.txt: 1822) +/(.*/)?scripts/log\. +# /scripts/hbx.js (easyprivacy.txt: 1821) +/(.*/)?scripts/hbx\.js +# /scripts/ga.js (easyprivacy.txt: 1820) +/(.*/)?scripts/ga\.js +# /scripts/contador. (easyprivacy.txt: 1819) +/(.*/)?scripts/contador\. +# /scripts/clickjs.php (easyprivacy.txt: 1818) +/(.*/)?scripts/clickjs\.php +# /scripts.kissmetrics.com/* (easyprivacy.txt: 1817) +/(.*/)?scripts\.kissmetrics\.com/.* +scripts.kissmetrics.com/.* +# /script_log. (easyprivacy.txt: 1816) +/(.*/)?script_log\. +# /script/analytics/* (easyprivacy.txt: 1815) +/(.*/)?script/analytics/.* +# /sclanalyticstag. (easyprivacy.txt: 1814) +/(.*/)?sclanalyticstag\. +sclanalyticstag.*. +# /sb.trackers.js (easyprivacy.txt: 1813) +/(.*/)?sb\.trackers\.js +sb.trackers.js*. +# /sb.logger.js (easyprivacy.txt: 1812) +/(.*/)?sb\.logger\.js +sb.logger.js*. +# /savetracking? (easyprivacy.txt: 1811) +/(.*/)?savetracking\? +# /saveStats.php? (easyprivacy.txt: 1810) +/(.*/)?saveStats\.php\? +# /save_stats.php? (easyprivacy.txt: 1809) +/(.*/)?save_stats\.php\? +# /SAPOWebAnalytics/* (easyprivacy.txt: 1808) +/(.*/)?SAPOWebAnalytics/.* +# /salog.js (easyprivacy.txt: 1807) +/(.*/)?salog\.js +salog.js*. +# /sage_tracker. (easyprivacy.txt: 1806) +/(.*/)?sage_tracker\. +# /s.gif?t= (easyprivacy.txt: 1805) +/(.*/)?s\.gif\?t= +# /s.gif?log= (easyprivacy.txt: 1804) +/(.*/)?s\.gif\?log= +# /s.gif?l= (easyprivacy.txt: 1803) +/(.*/)?s\.gif\?l= +# /s.gif?a= (easyprivacy.txt: 1802) +/(.*/)?s\.gif\?a= +# /rwtaghome.js (easyprivacy.txt: 1801) +/(.*/)?rwtaghome\.js +rwtaghome.js*. +# /rwtag.js (easyprivacy.txt: 1800) +/(.*/)?rwtag\.js +rwtag.js*. +# /rwtag.gif? (easyprivacy.txt: 1799) +/(.*/)?rwtag\.gif\? +# /rum/id? (easyprivacy.txt: 1798) +/(.*/)?rum/id\? +# /rum-track? (easyprivacy.txt: 1797) +/(.*/)?rum-track\? +# /rum-dytrc. (easyprivacy.txt: 1796) +/(.*/)?rum-dytrc\. +rum-dytrc.*. +# /rubicsimp/c.gif? (easyprivacy.txt: 1795) +/(.*/)?rubicsimp/c\.gif\? +# /rubics_trk (easyprivacy.txt: 1794) +/(.*/)?rubics_trk +# /rtt-log-data? (easyprivacy.txt: 1793) +/(.*/)?rtt-log-data\? +# /rtracker. (easyprivacy.txt: 1792) +/(.*/)?rtracker\. +rtracker.*. +# /rtoaster.js (easyprivacy.txt: 1791) +/(.*/)?rtoaster\.js +rtoaster.js*. +# /rtkbeacon.gif? (easyprivacy.txt: 1790) +/(.*/)?rtkbeacon\.gif\? +# /rtd.js (easyprivacy.txt: 1789) +/(.*/)?rtd\.js +rtd.js*. +# /rpc/log? (easyprivacy.txt: 1788) +/(.*/)?rpc/log\? +# /rot_in.php (easyprivacy.txt: 1787) +/(.*/)?rot_in\.php +# /rolluptracker_ (easyprivacy.txt: 1786) +/(.*/)?rolluptracker_ +# /roiTrax. (easyprivacy.txt: 1785) +/(.*/)?roiTrax\. +roiTrax.*. +# /roitracker2. (easyprivacy.txt: 1784) +/(.*/)?roitracker2\. +roitracker2.*. +# /roitracker. (easyprivacy.txt: 1783) +/(.*/)?roitracker\. +roitracker.*. +# /roitrack. (easyprivacy.txt: 1782) +/(.*/)?roitrack\. +roitrack.*. +# /roiengine. (easyprivacy.txt: 1781) +/(.*/)?roiengine\. +roiengine.*. +# /roi_tracker. (easyprivacy.txt: 1780) +/(.*/)?roi_tracker\. +# /RMAnalytics. (easyprivacy.txt: 1779) +/(.*/)?RMAnalytics\. +RMAnalytics.*. +# /rkrt_tracker- (easyprivacy.txt: 1778) +/(.*/)?rkrt_tracker- +# /RioTracking2. (easyprivacy.txt: 1777) +/(.*/)?RioTracking2\. +RioTracking2.*. +# /revtracking/* (easyprivacy.txt: 1776) +/(.*/)?revtracking/.* +# /revsci. (easyprivacy.txt: 1775) +/(.*/)?revsci\. +revsci.*. +# /revinit.js (easyprivacy.txt: 1774) +/(.*/)?revinit\.js +revinit.js*. +# /RevenueScienceAPI. (easyprivacy.txt: 1773) +/(.*/)?RevenueScienceAPI\. +RevenueScienceAPI.*. +# /revenuescience_ (easyprivacy.txt: 1772) +/(.*/)?revenuescience_ +# /revenuescience. (easyprivacy.txt: 1771) +/(.*/)?revenuescience\. +revenuescience.*. +# /revenue-science. (easyprivacy.txt: 1770) +/(.*/)?revenue-science\. +revenue-science.*. +# /retargetingScript/* (easyprivacy.txt: 1769) +/(.*/)?retargetingScript/.* +# /resxclsa_ (easyprivacy.txt: 1768) +/(.*/)?resxclsa_ +# /resxclsa. (easyprivacy.txt: 1767) +/(.*/)?resxclsa\. +resxclsa.*. +# /restats_ (easyprivacy.txt: 1766) +/(.*/)?restats_ +# /rest/analytics/* (easyprivacy.txt: 1765) +/(.*/)?rest/analytics/.* +# /resourcestat. (easyprivacy.txt: 1764) +/(.*/)?resourcestat\. +resourcestat.*. +# /resmeter.js (easyprivacy.txt: 1763) +/(.*/)?resmeter\.js +resmeter.js*. +# /RequestTrackerServlet? (easyprivacy.txt: 1762) +/(.*/)?RequestTrackerServlet\? +# /reporting/analytics.js (easyprivacy.txt: 1761) +/(.*/)?reporting/analytics\.js +# /remoteTrackingManager.cfc?*trackPage& (easyprivacy.txt: 1760) +/(.*/)?remoteTrackingManager\.cfc\?.*trackPage& +# /RemoteTargetingService. (easyprivacy.txt: 1759) +/(.*/)?RemoteTargetingService\. +RemoteTargetingService.*. +# /RegisterWebPageVisit. (easyprivacy.txt: 1758) +/(.*/)?RegisterWebPageVisit\. +RegisterWebPageVisit.*. +# /registeradevent? (easyprivacy.txt: 1757) +/(.*/)?registeradevent\? +# /register_video_*&server= (easyprivacy.txt: 1756) +/(.*/)?register_video_.*&server= +# /register_stats.php? (easyprivacy.txt: 1755) +/(.*/)?register_stats\.php\? +# /reg_stat.php? (easyprivacy.txt: 1754) +/(.*/)?reg_stat\.php\? +# /refstats.asp? (easyprivacy.txt: 1753) +/(.*/)?refstats\.asp\? +# /RefinedAdsTracker.swf (easyprivacy.txt: 1752) +/(.*/)?RefinedAdsTracker\.swf +RefinedAdsTracker.swf*. +# /referrer.php?*http (easyprivacy.txt: 1751) +/(.*/)?referrer\.php\?.*http +# /referral_tracking. (easyprivacy.txt: 1750) +/(.*/)?referral_tracking\. +# /referral_tracker. (easyprivacy.txt: 1749) +/(.*/)?referral_tracker\. +# /refererRecord. (easyprivacy.txt: 1748) +/(.*/)?refererRecord\. +refererRecord.*. +# /referer.gif? (easyprivacy.txt: 1747) +/(.*/)?referer\.gif\? +# /referadd? (easyprivacy.txt: 1746) +/(.*/)?referadd\? +# /refer-tracking. (easyprivacy.txt: 1745) +/(.*/)?refer-tracking\. +refer-tracking.*. +# /refcount. (easyprivacy.txt: 1744) +/(.*/)?refcount\. +refcount.*. +# /redx/c.gif? (easyprivacy.txt: 1743) +/(.*/)?redx/c\.gif\? +# /redirectexittrack.php? (easyprivacy.txt: 1742) +/(.*/)?redirectexittrack\.php\? +# /recstatsv2. (easyprivacy.txt: 1741) +/(.*/)?recstatsv2\. +recstatsv2.*. +# /RecordHit? (easyprivacy.txt: 1740) +/(.*/)?RecordHit\? +# /RecordClickv2. (easyprivacy.txt: 1739) +/(.*/)?RecordClickv2\. +RecordClickv2.*. +# /RecordClick. (easyprivacy.txt: 1738) +/(.*/)?RecordClick\. +RecordClick.*. +# /record_visitor. (easyprivacy.txt: 1737) +/(.*/)?record_visitor\. +# /record_clicks. (easyprivacy.txt: 1736) +/(.*/)?record_clicks\. +# /record.do? (easyprivacy.txt: 1735) +/(.*/)?record\.do\? +# /record-impressions. (easyprivacy.txt: 1734) +/(.*/)?record-impressions\. +record-impressions.*. +# /recommendtrack? (easyprivacy.txt: 1733) +/(.*/)?recommendtrack\? +# /readtracker- (easyprivacy.txt: 1732) +/(.*/)?readtracker- +readtracker-*. +# /readReceipt/notify/?img=$image (easyprivacy.txt: 1731) +/(.*/)?readReceipt/notify/\?img= +# /readomniturecookie. (easyprivacy.txt: 1730) +/(.*/)?readomniturecookie\. +readomniturecookie.*. +# /readcounter.aspx? (easyprivacy.txt: 1729) +/(.*/)?readcounter\.aspx\? +# /rcdntpagetag.js (easyprivacy.txt: 1728) +/(.*/)?rcdntpagetag\.js +rcdntpagetag.js*. +# /rbipt.js (easyprivacy.txt: 1727) +/(.*/)?rbipt\.js +rbipt.js*. +# /rbipt.gif? (easyprivacy.txt: 1726) +/(.*/)?rbipt\.gif\? +# /rbi_us.js (easyprivacy.txt: 1725) +/(.*/)?rbi_us\.js +# /radium-one.js (easyprivacy.txt: 1724) +/(.*/)?radium-one\.js +radium-one.js*. +# /ra_track. (easyprivacy.txt: 1723) +/(.*/)?ra_track\. +# /quidsi.ga.js? (easyprivacy.txt: 1722) +/(.*/)?quidsi\.ga\.js\? +# /questus/* (easyprivacy.txt: 1721) +/(.*/)?questus/.* +# /qubittracker/* (easyprivacy.txt: 1720) +/(.*/)?qubittracker/.* +# /qubit-integration2. (easyprivacy.txt: 1719) +/(.*/)?qubit-integration2\. +qubit-integration2.*. +# /qubit-integration1. (easyprivacy.txt: 1718) +/(.*/)?qubit-integration1\. +qubit-integration1.*. +# /quantv2.swf? (easyprivacy.txt: 1717) +/(.*/)?quantv2\.swf\? +# /quantserve.com/* (easyprivacy.txt: 1716) +/(.*/)?quantserve\.com/.* +quantserve.com/.* +# /quantcastjs/* (easyprivacy.txt: 1715) +/(.*/)?quantcastjs/.* +# /QuantcastAnalyticsModule. (easyprivacy.txt: 1714) +/(.*/)?QuantcastAnalyticsModule\. +QuantcastAnalyticsModule.*. +# /quantcast_ (easyprivacy.txt: 1713) +/(.*/)?quantcast_ +# /quantcast/* (easyprivacy.txt: 1712) +/(.*/)?quantcast/.* +# /quantcast.xml (easyprivacy.txt: 1711) +/(.*/)?quantcast\.xml +quantcast.xml*. +# /quantcast.js (easyprivacy.txt: 1710) +/(.*/)?quantcast\.js +quantcast.js*. +# /quant.swf? (easyprivacy.txt: 1709) +/(.*/)?quant\.swf\? +# /quant.js (easyprivacy.txt: 1708) +/(.*/)?quant\.js +quant.js*. +# /QualtricsSurvey. (easyprivacy.txt: 1707) +/(.*/)?QualtricsSurvey\. +QualtricsSurvey.*. +# /qtracker- (easyprivacy.txt: 1706) +/(.*/)?qtracker- +qtracker-*. +# /pzn/proxysignature (easyprivacy.txt: 1705) +/(.*/)?pzn/proxysignature +# /pxtrk.gif (easyprivacy.txt: 1704) +/(.*/)?pxtrk\.gif +pxtrk.gif*. +# /pxlctl. (easyprivacy.txt: 1703) +/(.*/)?pxlctl\. +pxlctl.*. +# /pxl.cgi? (easyprivacy.txt: 1702) +/(.*/)?pxl\.cgi\? +# /pxa.min.js (easyprivacy.txt: 1701) +/(.*/)?pxa\.min\.js +pxa.min.js*. +# /px_trans.gif (easyprivacy.txt: 1700) +/(.*/)?px_trans\.gif +# /px.gif? (easyprivacy.txt: 1699) +/(.*/)?px\.gif\? +# /PvServlet? (easyprivacy.txt: 1698) +/(.*/)?PvServlet\? +# /pvserver/pv.js (easyprivacy.txt: 1697) +/(.*/)?pvserver/pv\.js +# /pview?event (easyprivacy.txt: 1696) +/(.*/)?pview\?event +# /pvcount. (easyprivacy.txt: 1695) +/(.*/)?pvcount\. +pvcount.*. +# /pv.txt? (easyprivacy.txt: 1694) +/(.*/)?pv\.txt\? +# /pv.gif?url (easyprivacy.txt: 1693) +/(.*/)?pv\.gif\?url +# /public/visitor/create? (easyprivacy.txt: 1692) +/(.*/)?public/visitor/create\? +# /public/visitor.json? (easyprivacy.txt: 1691) +/(.*/)?public/visitor\.json\? +# /pubimppixel/* (easyprivacy.txt: 1690) +/(.*/)?pubimppixel/.* +# /pub/as?_ri_=$image (easyprivacy.txt: 1689) +/(.*/)?pub/as\?_ri_= +# /ptrack. (easyprivacy.txt: 1688) +/(.*/)?ptrack\. +ptrack.*. +# /pstats. (easyprivacy.txt: 1687) +/(.*/)?pstats\. +pstats.*. +# /promos/pixels? (easyprivacy.txt: 1686) +/(.*/)?promos/pixels\? +# /promo_tracking/* (easyprivacy.txt: 1685) +/(.*/)?promo_tracking/.* +# /profile_tracker. (easyprivacy.txt: 1684) +/(.*/)?profile_tracker\. +# /prodtracker? (easyprivacy.txt: 1683) +/(.*/)?prodtracker\? +# /process.php?ut=*&rf= (easyprivacy.txt: 1682) +/(.*/)?process\.php\?ut=.*&rf= +# /pro-ping.php? (easyprivacy.txt: 1681) +/(.*/)?pro-ping\.php\? +# /prnx_track. (easyprivacy.txt: 1680) +/(.*/)?prnx_track\. +# /printtracker.js (easyprivacy.txt: 1679) +/(.*/)?printtracker\.js +printtracker.js*. +# /prime-email-metrics/*$image (easyprivacy.txt: 1678) +/(.*/)?prime-email-metrics/.* +# /pr.php? (easyprivacy.txt: 1677) +/(.*/)?pr\.php\? +# /pphlogger. (easyprivacy.txt: 1676) +/(.*/)?pphlogger\. +pphlogger.*. +# /powercount. (easyprivacy.txt: 1675) +/(.*/)?powercount\. +powercount.*. +# /postlog? (easyprivacy.txt: 1674) +/(.*/)?postlog\? +# /popuplog/* (easyprivacy.txt: 1673) +/(.*/)?popuplog/.* +# /popupCookieWriter. (easyprivacy.txt: 1672) +/(.*/)?popupCookieWriter\. +popupCookieWriter.*. +# /popanalytics. (easyprivacy.txt: 1671) +/(.*/)?popanalytics\. +popanalytics.*. +# /pomegranate.js (easyprivacy.txt: 1670) +/(.*/)?pomegranate\.js +pomegranate.js*. +# /PointRollAnonymous. (easyprivacy.txt: 1669) +/(.*/)?PointRollAnonymous\. +PointRollAnonymous.*. +# /PointRoll. (easyprivacy.txt: 1668) +/(.*/)?PointRoll\. +PointRoll.*. +# /point_roll. (easyprivacy.txt: 1667) +/(.*/)?point_roll\. +# /pmspxl. (easyprivacy.txt: 1666) +/(.*/)?pmspxl\. +pmspxl.*. +# /PmsPixel? (easyprivacy.txt: 1665) +/(.*/)?PmsPixel\? +# /plugins/wordfence/visitor.php? (easyprivacy.txt: 1664) +/(.*/)?plugins/wordfence/visitor\.php\? +# /plugins/userinfo.gif? (easyprivacy.txt: 1663) +/(.*/)?plugins/userinfo\.gif\? +# /plugins/status.gif? (easyprivacy.txt: 1662) +/(.*/)?plugins/status\.gif\? +# /plugins/catman/* (easyprivacy.txt: 1661) +/(.*/)?plugins/catman/.* +# /pluck-tracking. (easyprivacy.txt: 1660) +/(.*/)?pluck-tracking\. +pluck-tracking.*. +# /plog?id (easyprivacy.txt: 1659) +/(.*/)?plog\?id +# /plingatracker. (easyprivacy.txt: 1658) +/(.*/)?plingatracker\. +plingatracker.*. +# /plgtrafic. (easyprivacy.txt: 1657) +/(.*/)?plgtrafic\. +plgtrafic.*. +# /playertracking/* (easyprivacy.txt: 1656) +/(.*/)?playertracking/.* +# /playerlogger. (easyprivacy.txt: 1655) +/(.*/)?playerlogger\. +playerlogger.*. +# /PlayerDashboardLoggingService.svc/json/StartSession? (easyprivacy.txt: 1654) +/(.*/)?PlayerDashboardLoggingService\.svc/json/StartSession\? +PlayerDashboardLoggingService.svc/json/StartSession\? +# /player_counter.ashx? (easyprivacy.txt: 1653) +/(.*/)?player_counter\.ashx\? +# /planetstat. (easyprivacy.txt: 1652) +/(.*/)?planetstat\. +planetstat.*. +# /pladtrack. (easyprivacy.txt: 1651) +/(.*/)?pladtrack\. +pladtrack.*. +# /pixy.gif? (easyprivacy.txt: 1650) +/(.*/)?pixy\.gif\? +# /pixLogVisit. (easyprivacy.txt: 1649) +/(.*/)?pixLogVisit\. +pixLogVisit.*. +# /pixeltracking/* (easyprivacy.txt: 1648) +/(.*/)?pixeltracking/.* +# /PixelTracking. (easyprivacy.txt: 1647) +/(.*/)?PixelTracking\. +PixelTracking.*. +# /pixeltracker. (easyprivacy.txt: 1646) +/(.*/)?pixeltracker\. +pixeltracker.*. +# /pixeltrack.php? (easyprivacy.txt: 1645) +/(.*/)?pixeltrack\.php\? +# /pixelTargetingCacheBuster. (easyprivacy.txt: 1644) +/(.*/)?pixelTargetingCacheBuster\. +pixelTargetingCacheBuster.*. +# /pixelstats/* (easyprivacy.txt: 1643) +/(.*/)?pixelstats/.* +# /pixels.jsp? (easyprivacy.txt: 1642) +/(.*/)?pixels\.jsp\? +# /pixelNew.js (easyprivacy.txt: 1641) +/(.*/)?pixelNew\.js +pixelNew.js*. +# /PixelNedstat. (easyprivacy.txt: 1640) +/(.*/)?PixelNedstat\. +PixelNedstat.*. +# /pixellog. (easyprivacy.txt: 1639) +/(.*/)?pixellog\. +pixellog.*. +# /PixelImg.asp (easyprivacy.txt: 1638) +/(.*/)?PixelImg\.asp +PixelImg.asp*. +# /pixelframe/* (easyprivacy.txt: 1637) +/(.*/)?pixelframe/.* +# /pixelcounter. (easyprivacy.txt: 1636) +/(.*/)?pixelcounter\. +pixelcounter.*. +# /pixel_tracking. (easyprivacy.txt: 1635) +/(.*/)?pixel_tracking\. +# /pixel_track. (easyprivacy.txt: 1634) +/(.*/)?pixel_track\. +# /pixel_iframe. (easyprivacy.txt: 1633) +/(.*/)?pixel_iframe\. +# /pixel/impression/* (easyprivacy.txt: 1632) +/(.*/)?pixel/impression/.* +# /pixel.track? (easyprivacy.txt: 1631) +/(.*/)?pixel\.track\? +# /pixel.swf? (easyprivacy.txt: 1630) +/(.*/)?pixel\.swf\? +# /pixel.png? (easyprivacy.txt: 1629) +/(.*/)?pixel\.png\? +# /pixel.php? (easyprivacy.txt: 1628) +/(.*/)?pixel\.php\? +# /pixel.jsp? (easyprivacy.txt: 1627) +/(.*/)?pixel\.jsp\? +# /pixel.gif? (easyprivacy.txt: 1626) +/(.*/)?pixel\.gif\? +# /pixel.cgi? (easyprivacy.txt: 1625) +/(.*/)?pixel\.cgi\? +# /pixel-page.html (easyprivacy.txt: 1624) +/(.*/)?pixel-page\.html +pixel-page.html*. +# /pixel-manager.js? (easyprivacy.txt: 1623) +/(.*/)?pixel-manager\.js\? +# /pixall.min.js (easyprivacy.txt: 1622) +/(.*/)?pixall\.min\.js +pixall.min.js*. +# /pix.gif? (easyprivacy.txt: 1621) +/(.*/)?pix\.gif\? +# /pix.fcg? (easyprivacy.txt: 1620) +/(.*/)?pix\.fcg\? +# /piwikTracker. (easyprivacy.txt: 1619) +/(.*/)?piwikTracker\. +piwikTracker.*. +# /piwikC_ (easyprivacy.txt: 1618) +/(.*/)?piwikC_ +# /piwikapi.js (easyprivacy.txt: 1617) +/(.*/)?piwikapi\.js +piwikapi.js*. +# /piwik_ (easyprivacy.txt: 1616) +/(.*/)?piwik_ +# /piwik2.js (easyprivacy.txt: 1615) +/(.*/)?piwik2\.js +piwik2.js*. +# /piwik1. (easyprivacy.txt: 1614) +/(.*/)?piwik1\. +piwik1.*. +# /piwik.php (easyprivacy.txt: 1612) +/(.*/)?piwik\.php +piwik.php*. +# /pistats/cgi-bin/* (easyprivacy.txt: 1609) +/(.*/)?pistats/cgi-bin/.* +# /pingServerAction? (easyprivacy.txt: 1608) +/(.*/)?pingServerAction\? +# /PingPixel. (easyprivacy.txt: 1607) +/(.*/)?PingPixel\. +PingPixel.*. +# /pinger.cgi? (easyprivacy.txt: 1606) +/(.*/)?pinger\.cgi\? +# /pingd? (easyprivacy.txt: 1605) +/(.*/)?pingd\? +# /ping_hotclick.js (easyprivacy.txt: 1604) +/(.*/)?ping_hotclick\.js +# /ping_g.jsp? (easyprivacy.txt: 1603) +/(.*/)?ping_g\.jsp\? +# /ping?spacedesc (easyprivacy.txt: 1602) +/(.*/)?ping\?spacedesc +# /ping?h= (easyprivacy.txt: 1601) +/(.*/)?ping\?h= +# /ping/show? (easyprivacy.txt: 1600) +/(.*/)?ping/show\? +# /ping/dot.gif? (easyprivacy.txt: 1599) +/(.*/)?ping/dot\.gif\? +# /ping/?url= (easyprivacy.txt: 1598) +/(.*/)?ping/\?url= +# /ping/?p= (easyprivacy.txt: 1597) +/(.*/)?ping/\?p= +# /ping.php?sid= (easyprivacy.txt: 1596) +/(.*/)?ping\.php\?sid= +# /ping.gif? (easyprivacy.txt: 1595) +/(.*/)?ping\.gif\? +# /ping.*/ping.js (easyprivacy.txt: 1594) +/(.*/)?ping\..*/ping\.js +ping.*./(.*/)?ping\.js +# /phpmyvisites.js (easyprivacy.txt: 1593) +/(.*/)?phpmyvisites\.js +phpmyvisites.js*. +# /php-stats.recjs.php? (easyprivacy.txt: 1592) +/(.*/)?php-stats\.recjs\.php\? +# /php-stats.phpjs.php? (easyprivacy.txt: 1591) +/(.*/)?php-stats\.phpjs\.php\? +# /php-stats.php? (easyprivacy.txt: 1590) +/(.*/)?php-stats\.php\? +# /php-stats.js (easyprivacy.txt: 1589) +/(.*/)?php-stats\.js +php-stats.js*. +# /pgtrackingV3. (easyprivacy.txt: 1588) +/(.*/)?pgtrackingV3\. +pgtrackingV3.*. +# /pgtracking. (easyprivacy.txt: 1587) +/(.*/)?pgtracking\. +pgtracking.*. +# /permalink-tracker.html? (easyprivacy.txt: 1586) +/(.*/)?permalink-tracker\.html\? +# /performance.fcgi? (easyprivacy.txt: 1585) +/(.*/)?performance\.fcgi\? +# /pcount.asp (easyprivacy.txt: 1584) +/(.*/)?pcount\.asp +pcount.asp*. +# /pcookie_get_key (easyprivacy.txt: 1583) +/(.*/)?pcookie_get_key +# /PBSTrackingPlugIn. (easyprivacy.txt: 1582) +/(.*/)?PBSTrackingPlugIn\. +PBSTrackingPlugIn.*. +# /pbasitetracker. (easyprivacy.txt: 1581) +/(.*/)?pbasitetracker\. +pbasitetracker.*. +# /pap.swf? (easyprivacy.txt: 1580) +/(.*/)?pap\.swf\? +# /PageviewsTracker. (easyprivacy.txt: 1579) +/(.*/)?PageviewsTracker\. +PageviewsTracker.*. +# /pageviews?token= (easyprivacy.txt: 1578) +/(.*/)?pageviews\?token= +# /pageviews/* (easyprivacy.txt: 1577) +/(.*/)?pageviews/.* +# /pageviews-counter- (easyprivacy.txt: 1576) +/(.*/)?pageviews-counter- +pageviews-counter-*. +# /pageview; (easyprivacy.txt: 1575) +/(.*/)?pageview; +# /pageview.ashx (easyprivacy.txt: 1574) +/(.*/)?pageview\.ashx +pageview.ashx*. +# /pageView.act (easyprivacy.txt: 1573) +/(.*/)?pageView\.act +pageView.act*. +# /pageTracking.js (easyprivacy.txt: 1572) +/(.*/)?pageTracking\.js +pageTracking.js*. +# /pageTrackerEvent. (easyprivacy.txt: 1571) +/(.*/)?pageTrackerEvent\. +pageTrackerEvent.*. +# /pageTracker_ (easyprivacy.txt: 1570) +/(.*/)?pageTracker_ +# /PageTracker? (easyprivacy.txt: 1569) +/(.*/)?PageTracker\? +# /pageTracker/? (easyprivacy.txt: 1568) +/(.*/)?pageTracker/\? +# /PageTracker. (easyprivacy.txt: 1567) +/(.*/)?PageTracker\. +PageTracker.*. +# /pagetrack.php? (easyprivacy.txt: 1566) +/(.*/)?pagetrack\.php\? +# /PageTrack.js (easyprivacy.txt: 1565) +/(.*/)?PageTrack\.js +PageTrack.js*. +# /pageTag? (easyprivacy.txt: 1564) +/(.*/)?pageTag\? +# /pagetag.gif? (easyprivacy.txt: 1563) +/(.*/)?pagetag\.gif\? +# /pagestats/* (easyprivacy.txt: 1562) +/(.*/)?pagestats/.* +# /PageStats. (easyprivacy.txt: 1561) +/(.*/)?PageStats\. +PageStats.*. +# /PageStatistics/* (easyprivacy.txt: 1560) +/(.*/)?PageStatistics/.* +# /pageloggerobyx. (easyprivacy.txt: 1559) +/(.*/)?pageloggerobyx\. +pageloggerobyx.*. +# /pagelogger/connector.php? (easyprivacy.txt: 1558) +/(.*/)?pagelogger/connector\.php\? +# /pagehits/* (easyprivacy.txt: 1557) +/(.*/)?pagehits/.* +# /PageHitPixel. (easyprivacy.txt: 1556) +/(.*/)?PageHitPixel\. +PageHitPixel.*. +# /PageHit.ashx (easyprivacy.txt: 1555) +/(.*/)?PageHit\.ashx +PageHit.ashx*. +# /pagedot.gif? (easyprivacy.txt: 1554) +/(.*/)?pagedot\.gif\? +# /pageCounter.adp? (easyprivacy.txt: 1553) +/(.*/)?pageCounter\.adp\? +# /PageCount.php? (easyprivacy.txt: 1552) +/(.*/)?PageCount\.php\? +# /page_imp; (easyprivacy.txt: 1551) +/(.*/)?page_imp; +# /page_counter. (easyprivacy.txt: 1550) +/(.*/)?page_counter\. +# /page_analytics. (easyprivacy.txt: 1549) +/(.*/)?page_analytics\. +# /page-track. (easyprivacy.txt: 1548) +/(.*/)?page-track\. +page-track.*. +# /page-analytics. (easyprivacy.txt: 1547) +/(.*/)?page-analytics\. +page-analytics.*. +# /oxtracker. (easyprivacy.txt: 1546) +/(.*/)?oxtracker\. +oxtracker.*. +# /ox_stats. (easyprivacy.txt: 1545) +/(.*/)?ox_stats\. +# /owa.tracker-combined-min.js (easyprivacy.txt: 1544) +/(.*/)?owa\.tracker-combined-min\.js +owa.tracker-combined-min.js*. +# /ow_analytics. (easyprivacy.txt: 1543) +/(.*/)?ow_analytics\. +# /ovstats. (easyprivacy.txt: 1542) +/(.*/)?ovstats\. +ovstats.*. +# /ot_e404.gif? (easyprivacy.txt: 1541) +/(.*/)?ot_e404\.gif\? +# /osGoogleAnalytics. (easyprivacy.txt: 1540) +/(.*/)?osGoogleAnalytics\. +osGoogleAnalytics.*. +# /ordertrack/* (easyprivacy.txt: 1539) +/(.*/)?ordertrack/.* +# /OptimostPageCode. (easyprivacy.txt: 1538) +/(.*/)?OptimostPageCode\. +OptimostPageCode.*. +# /optimostHeader2. (easyprivacy.txt: 1537) +/(.*/)?optimostHeader2\. +optimostHeader2.*. +# /optimostHeader1. (easyprivacy.txt: 1536) +/(.*/)?optimostHeader1\. +optimostHeader1.*. +# /optimostHeader. (easyprivacy.txt: 1535) +/(.*/)?optimostHeader\. +optimostHeader.*. +# /optimosthead/* (easyprivacy.txt: 1534) +/(.*/)?optimosthead/.* +# /optimosthead. (easyprivacy.txt: 1533) +/(.*/)?optimosthead\. +optimosthead.*. +# /OptimostFooter. (easyprivacy.txt: 1532) +/(.*/)?OptimostFooter\. +OptimostFooter.*. +# /optimostfoot. (easyprivacy.txt: 1531) +/(.*/)?optimostfoot\. +optimostfoot.*. +# /optimostBody2. (easyprivacy.txt: 1530) +/(.*/)?optimostBody2\. +optimostBody2.*. +# /optimostBody1. (easyprivacy.txt: 1529) +/(.*/)?optimostBody1\. +optimostBody1.*. +# /optimost_ (easyprivacy.txt: 1528) +/(.*/)?optimost_ +# /Optimost/* (easyprivacy.txt: 1527) +/(.*/)?Optimost/.* +# /optimost. (easyprivacy.txt: 1526) +/(.*/)?optimost\. +optimost.*. +# /optimost- (easyprivacy.txt: 1525) +/(.*/)?optimost- +optimost-*. +# /optimizely/*$script (easyprivacy.txt: 1524) +/(.*/)?optimizely/.* +# /opinionlab.js (easyprivacy.txt: 1523) +/(.*/)?opinionlab\.js +opinionlab.js*. +# /openxtargeting.js (easyprivacy.txt: 1522) +/(.*/)?openxtargeting\.js +openxtargeting.js*. +# /openxblank.gif? (easyprivacy.txt: 1521) +/(.*/)?openxblank\.gif\? +# /opentag/* (easyprivacy.txt: 1520) +/(.*/)?opentag/.* +# /opentag- (easyprivacy.txt: 1519) +/(.*/)?opentag- +opentag-*. +# /open/log/* (easyprivacy.txt: 1518) +/(.*/)?open/log/.* +# /onsitegeo. (easyprivacy.txt: 1517) +/(.*/)?onsitegeo\. +onsitegeo.*. +# /onlinecount.php (easyprivacy.txt: 1516) +/(.*/)?onlinecount\.php +onlinecount.php*. +# /onestat.js (easyprivacy.txt: 1515) +/(.*/)?onestat\.js +onestat.js*. +# /onedot.php? (easyprivacy.txt: 1514) +/(.*/)?onedot\.php\? +# /oms_analytics_ (easyprivacy.txt: 1513) +/(.*/)?oms_analytics_ +# /omniunih.js (easyprivacy.txt: 1512) +/(.*/)?omniunih\.js +omniunih.js*. +# /OmnitureTracking_$object-subrequest (easyprivacy.txt: 1511) +/(.*/)?OmnitureTracking_ +# /OmnitureAnalytics. (easyprivacy.txt: 1510) +/(.*/)?OmnitureAnalytics\. +OmnitureAnalytics.*. +# /omniture/sphere (easyprivacy.txt: 1509) +/(.*/)?omniture/sphere +# /omniture.do;$image (easyprivacy.txt: 1508) +/(.*/)?omniture\.do; +# /omnipagetrack. (easyprivacy.txt: 1507) +/(.*/)?omnipagetrack\. +omnipagetrack.*. +# /omnidiggthis| (easyprivacy.txt: 1506) +/(.*/)?omnidiggthis$ +# /om_tracking_ (easyprivacy.txt: 1505) +/(.*/)?om_tracking_ +# /om_ctrack. (easyprivacy.txt: 1504) +/(.*/)?om_ctrack\. +# /odoscope.js (easyprivacy.txt: 1503) +/(.*/)?odoscope\.js +odoscope.js*. +# /ocounter. (easyprivacy.txt: 1502) +/(.*/)?ocounter\. +ocounter.*. +# /ocount.php (easyprivacy.txt: 1501) +/(.*/)?ocount\.php +ocount.php*. +# /object_stats. (easyprivacy.txt: 1500) +/(.*/)?object_stats\. +# /oas_analytics. (easyprivacy.txt: 1499) +/(.*/)?oas_analytics\. +# /numericAnalyticsFramework. (easyprivacy.txt: 1498) +/(.*/)?numericAnalyticsFramework\. +numericAnalyticsFramework.*. +# /ntrack.asp? (easyprivacy.txt: 1497) +/(.*/)?ntrack\.asp\? +# /ntpagetaghttps. (easyprivacy.txt: 1496) +/(.*/)?ntpagetaghttps\. +ntpagetaghttps.*. +# /ntpagetag_ (easyprivacy.txt: 1495) +/(.*/)?ntpagetag_ +# /ntpagetag. (easyprivacy.txt: 1494) +/(.*/)?ntpagetag\. +ntpagetag.*. +# /ntpagetag- (easyprivacy.txt: 1493) +/(.*/)?ntpagetag- +ntpagetag-*. +# /nStat/* (easyprivacy.txt: 1492) +/(.*/)?nStat/.* +# /npssurvey. (easyprivacy.txt: 1491) +/(.*/)?npssurvey\. +npssurvey.*. +# /no-impression.gif? (easyprivacy.txt: 1490) +/(.*/)?no-impression\.gif\? +# /nm_trck.gif? (easyprivacy.txt: 1489) +/(.*/)?nm_trck\.gif\? +# /nm_track.js (easyprivacy.txt: 1488) +/(.*/)?nm_track\.js +# /nm_tr_combined.js (easyprivacy.txt: 1487) +/(.*/)?nm_tr_combined\.js +# /nm_tr_combined-min.js (easyprivacy.txt: 1486) +/(.*/)?nm_tr_combined-min\.js +# /njs.gif? (easyprivacy.txt: 1485) +/(.*/)?njs\.gif\? +# /NitroCookies.js (easyprivacy.txt: 1484) +/(.*/)?NitroCookies\.js +NitroCookies.js*. +# /ninemsn.tracking. (easyprivacy.txt: 1483) +/(.*/)?ninemsn\.tracking\. +ninemsn.tracking.*. +# /nikioWSJCallback. (easyprivacy.txt: 1482) +/(.*/)?nikioWSJCallback\. +nikioWSJCallback.*. +# /nielson_stats. (easyprivacy.txt: 1481) +/(.*/)?nielson_stats\. +# /nielson/track (easyprivacy.txt: 1480) +/(.*/)?nielson/track +# /NielsenTracking. (easyprivacy.txt: 1479) +/(.*/)?NielsenTracking\. +NielsenTracking.*. +# /nielsenscv53.$script (easyprivacy.txt: 1478) +/(.*/)?nielsenscv53\. +nielsenscv53.*. +# /NielsenData/* (easyprivacy.txt: 1477) +/(.*/)?NielsenData/.* +# /NielsenAnalytics. (easyprivacy.txt: 1476) +/(.*/)?NielsenAnalytics\. +NielsenAnalytics.*. +# /nielsen_v53. (easyprivacy.txt: 1475) +/(.*/)?nielsen_v53\. +# /nielsen_geotarget/* (easyprivacy.txt: 1474) +/(.*/)?nielsen_geotarget/.* +# /Nielsen53. (easyprivacy.txt: 1473) +/(.*/)?Nielsen53\. +Nielsen53.*. +# /nielsen/* (easyprivacy.txt: 1472) +/(.*/)?nielsen/.* +# /Nielsen.v53. (easyprivacy.txt: 1471) +/(.*/)?Nielsen\.v53\. +Nielsen.v53.*. +# /nielsen.track (easyprivacy.txt: 1470) +/(.*/)?nielsen\.track +nielsen.track*. +# /nielsen.min. (easyprivacy.txt: 1469) +/(.*/)?nielsen\.min\. +nielsen.min.*. +# /nielsen.js (easyprivacy.txt: 1468) +/(.*/)?nielsen\.js +nielsen.js*. +# /nielsen.htm (easyprivacy.txt: 1467) +/(.*/)?nielsen\.htm +nielsen.htm*. +# /nextPerformanceRetargeting. (easyprivacy.txt: 1466) +/(.*/)?nextPerformanceRetargeting\. +nextPerformanceRetargeting.*. +# /newstatsinc. (easyprivacy.txt: 1465) +/(.*/)?newstatsinc\. +newstatsinc.*. +# /newSophus/* (easyprivacy.txt: 1464) +/(.*/)?newSophus/.* +# /newscount/* (easyprivacy.txt: 1463) +/(.*/)?newscount/.* +# /newlog.php? (easyprivacy.txt: 1462) +/(.*/)?newlog\.php\? +# /new.cnt.aspx? (easyprivacy.txt: 1461) +/(.*/)?new\.cnt\.aspx\? +# /neustar.beacon. (easyprivacy.txt: 1460) +/(.*/)?neustar\.beacon\. +neustar.beacon.*. +# /netupdate/live.php? (easyprivacy.txt: 1459) +/(.*/)?netupdate/live\.php\? +# /nettracker/* (easyprivacy.txt: 1458) +/(.*/)?nettracker/.* +# /nettracker.js (easyprivacy.txt: 1457) +/(.*/)?nettracker\.js +nettracker.js*. +# /netresults.js (easyprivacy.txt: 1456) +/(.*/)?netresults\.js +netresults.js*. +# /netratings.js (easyprivacy.txt: 1455) +/(.*/)?netratings\.js +netratings.js*. +# /netmining.js (easyprivacy.txt: 1454) +/(.*/)?netmining\.js +netmining.js*. +# /netmind-$script (easyprivacy.txt: 1453) +/(.*/)?netmind- +netmind-*. +# /netizen_track. (easyprivacy.txt: 1452) +/(.*/)?netizen_track\. +# /netgraviton.net/* (easyprivacy.txt: 1451) +/(.*/)?netgraviton\.net/.* +netgraviton.net/.* +# /netcounter? (easyprivacy.txt: 1450) +/(.*/)?netcounter\? +# /netconversions. (easyprivacy.txt: 1449) +/(.*/)?netconversions\. +netconversions.*. +# /neocounter/* (easyprivacy.txt: 1448) +/(.*/)?neocounter/.* +# /neocounter. (easyprivacy.txt: 1447) +/(.*/)?neocounter\. +neocounter.*. +# /neilson.js (easyprivacy.txt: 1446) +/(.*/)?neilson\.js +neilson.js*. +# /nedstat. (easyprivacy.txt: 1445) +/(.*/)?nedstat\. +nedstat.*. +# /ncp/checkBrowser? (easyprivacy.txt: 1444) +/(.*/)?ncp/checkBrowser\? +# /naytev.min.js (easyprivacy.txt: 1443) +/(.*/)?naytev\.min\.js +naytev.min.js*. +# /NavMultiTracking. (easyprivacy.txt: 1442) +/(.*/)?NavMultiTracking\. +NavMultiTracking.*. +# /naveggQry- (easyprivacy.txt: 1441) +/(.*/)?naveggQry- +naveggQry-*. +# /myTracking.js (easyprivacy.txt: 1440) +/(.*/)?myTracking\.js +myTracking.js*. +# /mystats2.px? (easyprivacy.txt: 1439) +/(.*/)?mystats2\.px\? +# /mystats/track.js (easyprivacy.txt: 1438) +/(.*/)?mystats/track\.js +# /mystats.asp? (easyprivacy.txt: 1437) +/(.*/)?mystats\.asp\? +# /myopslogger. (easyprivacy.txt: 1436) +/(.*/)?myopslogger\. +myopslogger.*. +# /mycounter/counter_in.php? (easyprivacy.txt: 1435) +/(.*/)?mycounter/counter_in\.php\? +# /myasg/stats_js.asp (easyprivacy.txt: 1434) +/(.*/)?myasg/stats_js\.asp +# /mwtag_flash.js (easyprivacy.txt: 1433) +/(.*/)?mwtag_flash\.js +# /mwTag.js (easyprivacy.txt: 1432) +/(.*/)?mwTag\.js +mwTag.js*. +# /mvTracker. (easyprivacy.txt: 1431) +/(.*/)?mvTracker\. +mvTracker.*. +# /mtvi_reporting.js (easyprivacy.txt: 1430) +/(.*/)?mtvi_reporting\.js +# /mtracking. (easyprivacy.txt: 1429) +/(.*/)?mtracking\. +mtracking.*. +# /mtrack.nl/js/* (easyprivacy.txt: 1428) +/(.*/)?mtrack\.nl/js/.* +mtrack.nl/js/.* +# /mstartracking/* (easyprivacy.txt: 1427) +/(.*/)?mstartracking/.* +# /msftaudience. (easyprivacy.txt: 1426) +/(.*/)?msftaudience\. +msftaudience.*. +# /mpulse.min.js (easyprivacy.txt: 1425) +/(.*/)?mpulse\.min\.js +mpulse.min.js*. +# /mpel/mpel.js (easyprivacy.txt: 1424) +/(.*/)?mpel/mpel\.js +# /mousetrap/mp-embed. (easyprivacy.txt: 1423) +/(.*/)?mousetrap/mp-embed\. +# /mouseover-tracker. (easyprivacy.txt: 1422) +/(.*/)?mouseover-tracker\. +mouseover-tracker.*. +# /morega.js (easyprivacy.txt: 1421) +/(.*/)?morega\.js +morega.js*. +# /monitus.js (easyprivacy.txt: 1420) +/(.*/)?monitus\.js +monitus.js*. +# /mongoose.fp.js (easyprivacy.txt: 1419) +/(.*/)?mongoose\.fp\.js +mongoose.fp.js*. +# /moduleTracker. (easyprivacy.txt: 1418) +/(.*/)?moduleTracker\. +moduleTracker.*. +# /modoweb-tracking/* (easyprivacy.txt: 1417) +/(.*/)?modoweb-tracking/.* +# /mobileanalytics. (easyprivacy.txt: 1416) +/(.*/)?mobileanalytics\. +mobileanalytics.*. +# /mobify_ga.gif (easyprivacy.txt: 1415) +/(.*/)?mobify_ga\.gif +# /mngi/tracking/* (easyprivacy.txt: 1414) +/(.*/)?mngi/tracking/.* +# /mmetrix.mobi/* (easyprivacy.txt: 1413) +/(.*/)?mmetrix\.mobi/.* +mmetrix.mobi/.* +# /mmcore.js (easyprivacy.txt: 1412) +/(.*/)?mmcore\.js +mmcore.js*. +# /mmclient.js (easyprivacy.txt: 1411) +/(.*/)?mmclient\.js +mmclient.js*. +# /mm_track/* (easyprivacy.txt: 1410) +/(.*/)?mm_track/.* +# /mm-metrics. (easyprivacy.txt: 1409) +/(.*/)?mm-metrics\. +mm-metrics.*. +# /mlopen_track. (easyprivacy.txt: 1408) +/(.*/)?mlopen_track\. +# /ml.track.me? (easyprivacy.txt: 1407) +/(.*/)?ml\.track\.me\? +# /mktg_metrics/* (easyprivacy.txt: 1406) +/(.*/)?mktg_metrics/.* +# /mixpanel_tracker. (easyprivacy.txt: 1405) +/(.*/)?mixpanel_tracker\. +# /mixpanel_beacon. (easyprivacy.txt: 1404) +/(.*/)?mixpanel_beacon\. +# /mixpanel. (easyprivacy.txt: 1403) +/(.*/)?mixpanel\. +mixpanel.*. +# /mixpanel-measurement. (easyprivacy.txt: 1402) +/(.*/)?mixpanel-measurement\. +mixpanel-measurement.*. +# /mistats/* (easyprivacy.txt: 1401) +/(.*/)?mistats/.* +# /mintstats/?js (easyprivacy.txt: 1400) +/(.*/)?mintstats/\?js +# /mint8/? (easyprivacy.txt: 1399) +/(.*/)?mint8/\? +# /mint/?record (easyprivacy.txt: 1398) +/(.*/)?mint/\?record +# /mint/?js (easyprivacy.txt: 1397) +/(.*/)?mint/\?js +# /mindshare-tracking. (easyprivacy.txt: 1396) +/(.*/)?mindshare-tracking\. +mindshare-tracking.*. +# /middle?call=http (easyprivacy.txt: 1395) +/(.*/)?middle\?call=http +# /microreporting. (easyprivacy.txt: 1394) +/(.*/)?microreporting\. +microreporting.*. +# /micro.php?action=view& (easyprivacy.txt: 1393) +/(.*/)?micro\.php\?action=view& +# /mianalytics. (easyprivacy.txt: 1392) +/(.*/)?mianalytics\. +mianalytics.*. +# /mi/insite/* (easyprivacy.txt: 1391) +/(.*/)?mi/insite/.* +# /metsol- (easyprivacy.txt: 1390) +/(.*/)?metsol- +metsol-*. +# /metriweb/spring.js (easyprivacy.txt: 1389) +/(.*/)?metriweb/spring\.js +# /metriweb.js (easyprivacy.txt: 1388) +/(.*/)?metriweb\.js +metriweb.js*. +# /metrimatics/* (easyprivacy.txt: 1387) +/(.*/)?metrimatics/.* +# /metricsISCS. (easyprivacy.txt: 1386) +/(.*/)?metricsISCS\. +metricsISCS.*. +# /metrics/vanity/? (easyprivacy.txt: 1385) +/(.*/)?metrics/vanity/\? +# /metrics/survey/* (easyprivacy.txt: 1384) +/(.*/)?metrics/survey/.* +# /metrics/onload (easyprivacy.txt: 1383) +/(.*/)?metrics/onload +# /metrics/metrics (easyprivacy.txt: 1382) +/(.*/)?metrics/metrics +# /metrics/image.gif? (easyprivacy.txt: 1381) +/(.*/)?metrics/image\.gif\? +# /metrics/ga.html? (easyprivacy.txt: 1380) +/(.*/)?metrics/ga\.html\? +# /metrics.xml (easyprivacy.txt: 1379) +/(.*/)?metrics\.xml +metrics.xml*. +# /metrics-ga. (easyprivacy.txt: 1378) +/(.*/)?metrics-ga\. +metrics-ga.*. +# /metatraffic/track.asp? (easyprivacy.txt: 1377) +/(.*/)?metatraffic/track\.asp\? +# /megacounter/* (easyprivacy.txt: 1376) +/(.*/)?megacounter/.* +# /mediateGA.js (easyprivacy.txt: 1375) +/(.*/)?mediateGA\.js +mediateGA.js*. +# /media_viewed_tracking. (easyprivacy.txt: 1374) +/(.*/)?media_viewed_tracking\. +# /mdwtc/click_thru/* (easyprivacy.txt: 1373) +/(.*/)?mdwtc/click_thru/.* +# /md.js?country= (easyprivacy.txt: 1372) +/(.*/)?md\.js\?country= +# /mcount.cgi? (easyprivacy.txt: 1371) +/(.*/)?mcount\.cgi\? +# /MCookieReturn.aspx (easyprivacy.txt: 1370) +/(.*/)?MCookieReturn\.aspx +MCookieReturn.aspx*. +# /MCookieCheck.aspx (easyprivacy.txt: 1369) +/(.*/)?MCookieCheck\.aspx +MCookieCheck.aspx*. +# /mcookie.aspx (easyprivacy.txt: 1368) +/(.*/)?mcookie\.aspx +mcookie.aspx*. +# /mbcom.tracking. (easyprivacy.txt: 1367) +/(.*/)?mbcom\.tracking\. +mbcom.tracking.*. +# /Maxymiser/* (easyprivacy.txt: 1366) +/(.*/)?Maxymiser/.* +# /maxymiser. (easyprivacy.txt: 1365) +/(.*/)?maxymiser\. +maxymiser.*. +# /marketing-analytics.js (easyprivacy.txt: 1364) +/(.*/)?marketing-analytics\.js +marketing-analytics.js*. +# /mapstats. (easyprivacy.txt: 1363) +/(.*/)?mapstats\. +mapstats.*. +# /mailstatstrk/* (easyprivacy.txt: 1362) +/(.*/)?mailstatstrk/.* +# /mail_tracking.php (easyprivacy.txt: 1361) +/(.*/)?mail_tracking\.php +# /mail_tracking-cg.php (easyprivacy.txt: 1360) +/(.*/)?mail_tracking-cg\.php +# /magiq- (easyprivacy.txt: 1359) +/(.*/)?magiq- +magiq-*. +# /m360lib.js (easyprivacy.txt: 1358) +/(.*/)?m360lib\.js +m360lib.js*. +# /m1x1.jpg (easyprivacy.txt: 1357) +/(.*/)?m1x1\.jpg +m1x1.jpg*. +# /lzdtracker. (easyprivacy.txt: 1356) +/(.*/)?lzdtracker\. +lzdtracker.*. +# /lycostrack.js (easyprivacy.txt: 1355) +/(.*/)?lycostrack\.js +lycostrack.js*. +# /logwriter.php (easyprivacy.txt: 1354) +/(.*/)?logwriter\.php +logwriter.php*. +# /logwebhit. (easyprivacy.txt: 1353) +/(.*/)?logwebhit\. +logwebhit.*. +# /logViewImpression/* (easyprivacy.txt: 1352) +/(.*/)?logViewImpression/.* +# /logStatistics? (easyprivacy.txt: 1351) +/(.*/)?logStatistics\? +# /logStatistic? (easyprivacy.txt: 1350) +/(.*/)?logStatistic\? +# /logstat? (easyprivacy.txt: 1349) +/(.*/)?logstat\? +# /logstat. (easyprivacy.txt: 1348) +/(.*/)?logstat\. +logstat.*. +# /logserver- (easyprivacy.txt: 1347) +/(.*/)?logserver- +logserver-*. +# /logreferrer.php?*&referrer= (easyprivacy.txt: 1346) +/(.*/)?logreferrer\.php\?.*&referrer= +# /LogRecorder. (easyprivacy.txt: 1345) +/(.*/)?LogRecorder\. +LogRecorder.*. +# /logpv.aspx? (easyprivacy.txt: 1344) +/(.*/)?logpv\.aspx\? +# /logpstatus. (easyprivacy.txt: 1343) +/(.*/)?logpstatus\. +logpstatus.*. +# /LogPage.aspx? (easyprivacy.txt: 1342) +/(.*/)?LogPage\.aspx\? +# /LogMediaClick? (easyprivacy.txt: 1341) +/(.*/)?LogMediaClick\? +# /logLoad/? (easyprivacy.txt: 1340) +/(.*/)?logLoad/\? +# /LogImpression? (easyprivacy.txt: 1339) +/(.*/)?LogImpression\? +# /LogImpression. (easyprivacy.txt: 1338) +/(.*/)?LogImpression\. +LogImpression.*. +# /logHandler. (easyprivacy.txt: 1337) +/(.*/)?logHandler\. +logHandler.*. +# /loggingService.js (easyprivacy.txt: 1336) +/(.*/)?loggingService\.js +loggingService.js*. +# /LoggingAgent? (easyprivacy.txt: 1335) +/(.*/)?LoggingAgent\? +# /logging_save. (easyprivacy.txt: 1334) +/(.*/)?logging_save\. +# /logging_requests. (easyprivacy.txt: 1333) +/(.*/)?logging_requests\. +# /logging/pixel? (easyprivacy.txt: 1332) +/(.*/)?logging/pixel\? +# /logging-code. (easyprivacy.txt: 1331) +/(.*/)?logging-code\. +logging-code.*. +# /logger?d= (easyprivacy.txt: 1330) +/(.*/)?logger\?d= +# /logger/p.gif? (easyprivacy.txt: 1329) +/(.*/)?logger/p\.gif\? +# /logger.pageperf? (easyprivacy.txt: 1328) +/(.*/)?logger\.pageperf\? +# /logger.dll/* (easyprivacy.txt: 1327) +/(.*/)?logger\.dll/.* +logger.dll/.* +# /logger.ashx? (easyprivacy.txt: 1326) +/(.*/)?logger\.ashx\? +# /logextrastats. (easyprivacy.txt: 1325) +/(.*/)?logextrastats\. +logextrastats.*. +# /logEvent? (easyprivacy.txt: 1324) +/(.*/)?logEvent\? +# /logevent.action? (easyprivacy.txt: 1323) +/(.*/)?logevent\.action\? +# /logcounter. (easyprivacy.txt: 1322) +/(.*/)?logcounter\. +logcounter.*. +# /logcollectscript_ (easyprivacy.txt: 1321) +/(.*/)?logcollectscript_ +# /logcollect_ (easyprivacy.txt: 1320) +/(.*/)?logcollect_ +# /logcollect. (easyprivacy.txt: 1319) +/(.*/)?logcollect\. +logcollect.*. +# /logclick. (easyprivacy.txt: 1318) +/(.*/)?logclick\. +logclick.*. +# /LogAnalysisTracker/* (easyprivacy.txt: 1317) +/(.*/)?LogAnalysisTracker/.* +# /logaholictracker. (easyprivacy.txt: 1316) +/(.*/)?logaholictracker\. +logaholictracker.*. +# /logAdv. (easyprivacy.txt: 1315) +/(.*/)?logAdv\. +logAdv.*. +# /logadhit. (easyprivacy.txt: 1314) +/(.*/)?logadhit\. +logadhit.*. +# /logactions.gif? (easyprivacy.txt: 1313) +/(.*/)?logactions\.gif\? +# /LogAction? (easyprivacy.txt: 1312) +/(.*/)?LogAction\? +# /log_zon_img. (easyprivacy.txt: 1311) +/(.*/)?log_zon_img\. +# /log_view. (easyprivacy.txt: 1310) +/(.*/)?log_view\. +# /log_tracker. (easyprivacy.txt: 1309) +/(.*/)?log_tracker\. +# /log_syndication. (easyprivacy.txt: 1308) +/(.*/)?log_syndication\. +# /log_stats.php? (easyprivacy.txt: 1307) +/(.*/)?log_stats\.php\? +# /log_presence/* (easyprivacy.txt: 1306) +/(.*/)?log_presence/.* +# /log_interaction? (easyprivacy.txt: 1305) +/(.*/)?log_interaction\? +# /log_impression/* (easyprivacy.txt: 1304) +/(.*/)?log_impression/.* +# /log_hit. (easyprivacy.txt: 1303) +/(.*/)?log_hit\. +# /log_e.php?id= (easyprivacy.txt: 1302) +/(.*/)?log_e\.php\?id= +# /log_agent. (easyprivacy.txt: 1301) +/(.*/)?log_agent\. +# /log?type= (easyprivacy.txt: 1300) +/(.*/)?log\?type= +# /log?id= (easyprivacy.txt: 1299) +/(.*/)?log\?id= +# /Log?entry= (easyprivacy.txt: 1298) +/(.*/)?Log\?entry= +# /log?documentUrl= (easyprivacy.txt: 1297) +/(.*/)?log\?documentUrl= +# /log?data= (easyprivacy.txt: 1296) +/(.*/)?log\?data= +# /log2.php? (easyprivacy.txt: 1295) +/(.*/)?log2\.php\? +# /log/p.gif? (easyprivacy.txt: 1294) +/(.*/)?log/p\.gif\? +# /log/log.php? (easyprivacy.txt: 1293) +/(.*/)?log/log\.php\? +# /log/jserr.php (easyprivacy.txt: 1292) +/(.*/)?log/jserr\.php +# /log/ad- (easyprivacy.txt: 1291) +/(.*/)?log/ad- +# /log.php?owa_timestamp= (easyprivacy.txt: 1290) +/(.*/)?log\.php\?owa_timestamp= +# /log.php?id (easyprivacy.txt: 1289) +/(.*/)?log\.php\?id +# /log.php?*http (easyprivacy.txt: 1288) +/(.*/)?log\.php\?.*http +# /log.jsp? (easyprivacy.txt: 1287) +/(.*/)?log\.jsp\? +# /log.jphp? (easyprivacy.txt: 1286) +/(.*/)?log\.jphp\? +# /log.htm? (easyprivacy.txt: 1285) +/(.*/)?log\.htm\? +# /log.gif? (easyprivacy.txt: 1284) +/(.*/)?log\.gif\? +# /log.cfm? (easyprivacy.txt: 1283) +/(.*/)?log\.cfm\? +# /log.bi? (easyprivacy.txt: 1282) +/(.*/)?log\.bi\? +# /Log.ashx? (easyprivacy.txt: 1281) +/(.*/)?Log\.ashx\? +# /log-view. (easyprivacy.txt: 1280) +/(.*/)?log-view\. +log-view.*. +# /loadJsFingerprint.js (easyprivacy.txt: 1279) +/(.*/)?loadJsFingerprint\.js +loadJsFingerprint.js*. +# /loader-counter. (easyprivacy.txt: 1278) +/(.*/)?loader-counter\. +loader-counter.*. +# /loadcounter. (easyprivacy.txt: 1277) +/(.*/)?loadcounter\. +loadcounter.*. +# /load.gif? (easyprivacy.txt: 1276) +/(.*/)?load\.gif\? +# /livezilla/server.php?request=track& (easyprivacy.txt: 1275) +/(.*/)?livezilla/server\.php\?request=track& +# /linktracking. (easyprivacy.txt: 1274) +/(.*/)?linktracking\. +linktracking.*. +# /linktracker/* (easyprivacy.txt: 1273) +/(.*/)?linktracker/.* +# /linkinformer.js (easyprivacy.txt: 1272) +/(.*/)?linkinformer\.js +linkinformer.js*. +# /linkcountdata/* (easyprivacy.txt: 1271) +/(.*/)?linkcountdata/.* +# /link_tracking/* (easyprivacy.txt: 1270) +/(.*/)?link_tracking/.* +# /link_track. (easyprivacy.txt: 1269) +/(.*/)?link_track\. +# /lingabot. (easyprivacy.txt: 1268) +/(.*/)?lingabot\. +lingabot.*. +# /library/svy/broker.js (easyprivacy.txt: 1267) +/(.*/)?library/svy/broker\.js +# /library/svy/*/broker.js (easyprivacy.txt: 1266) +/(.*/)?library/svy/.*/broker\.js +# /leadgen_track (easyprivacy.txt: 1265) +/(.*/)?leadgen_track +# /leadgen/ga.js (easyprivacy.txt: 1264) +/(.*/)?leadgen/ga\.js +# /lbi_ga. (easyprivacy.txt: 1263) +/(.*/)?lbi_ga\. +# /layer_log.php?p= (easyprivacy.txt: 1262) +/(.*/)?layer_log\.php\?p= +# /landings-pixel? (easyprivacy.txt: 1261) +/(.*/)?landings-pixel\? +# /l1v.ly/*$third-party (easyprivacy.txt: 1260) +/(.*/)?l1v\.ly/.* +l1v.ly/.* +# /ktrace/ktrace$script (easyprivacy.txt: 1259) +/(.*/)?ktrace/ktrace +# /krux.js (easyprivacy.txt: 1258) +/(.*/)?krux\.js +krux.js*. +# /konterayahoooo. (easyprivacy.txt: 1257) +/(.*/)?konterayahoooo\. +konterayahoooo.*. +# /kontera.js (easyprivacy.txt: 1256) +/(.*/)?kontera\.js +kontera.js*. +# /KISSmetricsTrackCode. (easyprivacy.txt: 1255) +/(.*/)?KISSmetricsTrackCode\. +KISSmetricsTrackCode.*. +# /kissmetrics/* (easyprivacy.txt: 1254) +/(.*/)?kissmetrics/.* +# /kissmetrics. (easyprivacy.txt: 1253) +/(.*/)?kissmetrics\. +kissmetrics.*. +# /kGoogleAnalytics.js (easyprivacy.txt: 1252) +/(.*/)?kGoogleAnalytics\.js +kGoogleAnalytics.js*. +# /keywordlogger. (easyprivacy.txt: 1251) +/(.*/)?keywordlogger\. +keywordlogger.*. +# /kelkooSponsoredLinks. (easyprivacy.txt: 1250) +/(.*/)?kelkooSponsoredLinks\. +kelkooSponsoredLinks.*. +# /Kelkooid? (easyprivacy.txt: 1249) +/(.*/)?Kelkooid\? +# /kejobscounter. (easyprivacy.txt: 1248) +/(.*/)?kejobscounter\. +kejobscounter.*. +# /keen.min.js (easyprivacy.txt: 1247) +/(.*/)?keen\.min\.js +keen.min.js*. +# /keen-tracker. (easyprivacy.txt: 1246) +/(.*/)?keen-tracker\. +keen-tracker.*. +# /kaizentrack/* (easyprivacy.txt: 1245) +/(.*/)?kaizentrack/.* +# /kaiseki/track.php? (easyprivacy.txt: 1244) +/(.*/)?kaiseki/track\.php\? +# /kaiseki/script.php (easyprivacy.txt: 1243) +/(.*/)?kaiseki/script\.php +# /jtracking/* (easyprivacy.txt: 1242) +/(.*/)?jtracking/.* +# /jstats/js/* (easyprivacy.txt: 1241) +/(.*/)?jstats/js/.* +# /jstats.php (easyprivacy.txt: 1240) +/(.*/)?jstats\.php +jstats.php*. +# /jslogger.php?ref= (easyprivacy.txt: 1239) +/(.*/)?jslogger\.php\?ref= +# /jscounter. (easyprivacy.txt: 1238) +/(.*/)?jscounter\. +jscounter.*. +# /js_tracker. (easyprivacy.txt: 1237) +/(.*/)?js_tracker\. +# /js_logger. (easyprivacy.txt: 1236) +/(.*/)?js_logger\. +# /js_hotlink.php? (easyprivacy.txt: 1235) +/(.*/)?js_hotlink\.php\? +# /js/trk_ (easyprivacy.txt: 1234) +/(.*/)?js/trk_ +# /js/tracking.min.js? (easyprivacy.txt: 1233) +/(.*/)?js/tracking\.min\.js\? +# /js/tracking.js (easyprivacy.txt: 1232) +/(.*/)?js/tracking\.js +# /js/tophits_ (easyprivacy.txt: 1231) +/(.*/)?js/tophits_ +# /js/tagging/tagtrack.js (easyprivacy.txt: 1230) +/(.*/)?js/tagging/tagtrack\.js +# /js/sophus/* (easyprivacy.txt: 1229) +/(.*/)?js/sophus/.* +# /js/quantcast- (easyprivacy.txt: 1228) +/(.*/)?js/quantcast- +# /js/livestats_ (easyprivacy.txt: 1227) +/(.*/)?js/livestats_ +# /js/indextools/* (easyprivacy.txt: 1226) +/(.*/)?js/indextools/.* +# /js/hbx.js (easyprivacy.txt: 1225) +/(.*/)?js/hbx\.js +# /js/google_stats. (easyprivacy.txt: 1224) +/(.*/)?js/google_stats\. +# /js/ddx/* (easyprivacy.txt: 1223) +/(.*/)?js/ddx/.* +# /js/dcstorm/* (easyprivacy.txt: 1222) +/(.*/)?js/dcstorm/.* +# /js/dart.js (easyprivacy.txt: 1221) +/(.*/)?js/dart\.js +# /js/counter.js? (easyprivacy.txt: 1220) +/(.*/)?js/counter\.js\? +# /js/count.js. (easyprivacy.txt: 1219) +/(.*/)?js/count\.js\. +# /js/analitycs_ (easyprivacy.txt: 1218) +/(.*/)?js/analitycs_ +# /jquery.unica. (easyprivacy.txt: 1217) +/(.*/)?jquery\.unica\. +jquery.unica.*. +# /jquery.trackstar. (easyprivacy.txt: 1216) +/(.*/)?jquery\.trackstar\. +jquery.trackstar.*. +# /jquery.google-analytics. (easyprivacy.txt: 1215) +/(.*/)?jquery\.google-analytics\. +jquery.google-analytics.*. +# /jquery.analytics.js| (easyprivacy.txt: 1214) +/(.*/)?jquery\.analytics\.js$ +jquery.analytics.js +# /jgs_portal_log_bildschirm.php? (easyprivacy.txt: 1213) +/(.*/)?jgs_portal_log_bildschirm\.php\? +# /jcaffiliatesystem/* (easyprivacy.txt: 1212) +/(.*/)?jcaffiliatesystem/.* +# /javascripts/tracking_ (easyprivacy.txt: 1211) +/(.*/)?javascripts/tracking_ +# /javascripts/ga.js (easyprivacy.txt: 1210) +/(.*/)?javascripts/ga\.js +# /Javascript/ga.js (easyprivacy.txt: 1209) +/(.*/)?Javascript/ga\.js +# /javascript/ci/*landing.js$script (easyprivacy.txt: 1208) +/(.*/)?javascript/ci/.*landing\.js +# /javascript/analytics/* (easyprivacy.txt: 1207) +/(.*/)?javascript/analytics/.* +# /iwa.js (easyprivacy.txt: 1206) +/(.*/)?iwa\.js +iwa.js*. +# /IVWTracker.swf (easyprivacy.txt: 1205) +/(.*/)?IVWTracker\.swf +IVWTracker.swf*. +# /ivwbox/* (easyprivacy.txt: 1204) +/(.*/)?ivwbox/.* +# /IVWAnalytics. (easyprivacy.txt: 1203) +/(.*/)?IVWAnalytics\. +IVWAnalytics.*. +# /ivw_analytics_ (easyprivacy.txt: 1202) +/(.*/)?ivw_analytics_ +# /ivw2.js (easyprivacy.txt: 1201) +/(.*/)?ivw2\.js +ivw2.js*. +# /ivw2.cgi? (easyprivacy.txt: 1200) +/(.*/)?ivw2\.cgi\? +# /ivw/SP/*$image,script (easyprivacy.txt: 1199) +/(.*/)?ivw/SP/.* +# /ivw.php (easyprivacy.txt: 1198) +/(.*/)?ivw\.php +ivw.php*. +# /ivw.js (easyprivacy.txt: 1197) +/(.*/)?ivw\.js +ivw.js*. +# /iva_thefilterjwanalytics. (easyprivacy.txt: 1196) +/(.*/)?iva_thefilterjwanalytics\. +# /iva_analytics. (easyprivacy.txt: 1195) +/(.*/)?iva_analytics\. +# /itrack.php? (easyprivacy.txt: 1194) +/(.*/)?itrack\.php\? +# /ItemStats.ajax? (easyprivacy.txt: 1193) +/(.*/)?ItemStats\.ajax\? +# /ists.tag? (easyprivacy.txt: 1192) +/(.*/)?ists\.tag\? +# /istat.aspx? (easyprivacy.txt: 1191) +/(.*/)?istat\.aspx\? +# /iqtm.js (easyprivacy.txt: 1190) +/(.*/)?iqtm\.js +iqtm.js*. +# /ips-invite.iperceptions.com/* (easyprivacy.txt: 1189) +/(.*/)?ips-invite\.iperceptions\.com/.* +ips-invite.iperceptions.com/.* +# /iporganictrack. (easyprivacy.txt: 1188) +/(.*/)?iporganictrack\. +iporganictrack.*. +# /iplookup.php (easyprivacy.txt: 1187) +/(.*/)?iplookup\.php +iplookup.php*. +# /ipixel?spacedesc (easyprivacy.txt: 1186) +/(.*/)?ipixel\?spacedesc +# /ipfx?eid= (easyprivacy.txt: 1185) +/(.*/)?ipfx\?eid= +# /IperceptionsSurvey. (easyprivacy.txt: 1184) +/(.*/)?IperceptionsSurvey\. +IperceptionsSurvey.*. +# /iperceptions_ (easyprivacy.txt: 1183) +/(.*/)?iperceptions_ +# /iperceptions/* (easyprivacy.txt: 1182) +/(.*/)?iperceptions/.* +# /iperceptions. (easyprivacy.txt: 1181) +/(.*/)?iperceptions\. +iperceptions.*. +# /intervigil. (easyprivacy.txt: 1180) +/(.*/)?intervigil\. +intervigil.*. +# /intellitracker.js (easyprivacy.txt: 1179) +/(.*/)?intellitracker\.js +intellitracker.js*. +# /InstantTracking. (easyprivacy.txt: 1178) +/(.*/)?InstantTracking\. +InstantTracking.*. +# /insitemetrics/* (easyprivacy.txt: 1177) +/(.*/)?insitemetrics/.* +# /insightXe.js (easyprivacy.txt: 1176) +/(.*/)?insightXe\.js +insightXe.js*. +# /insert_impressions. (easyprivacy.txt: 1175) +/(.*/)?insert_impressions\. +# /inpl.measure. (easyprivacy.txt: 1174) +/(.*/)?inpl\.measure\. +inpl.measure.*. +# /informerStat? (easyprivacy.txt: 1173) +/(.*/)?informerStat\? +# /info/picksel/* (easyprivacy.txt: 1172) +/(.*/)?info/picksel/.* +# /inetlog.ru/* (easyprivacy.txt: 1171) +/(.*/)?inetlog\.ru/.* +inetlog.ru/.* +# /indextools.js (easyprivacy.txt: 1170) +/(.*/)?indextools\.js +indextools.js*. +# /index.track? (easyprivacy.txt: 1169) +/(.*/)?index\.track\? +# /index.php?_m=livesupport*&referrer= (easyprivacy.txt: 1168) +/(.*/)?index\.php\?_m=livesupport.*&referrer= +# /increment_page_counter. (easyprivacy.txt: 1167) +/(.*/)?increment_page_counter\. +# /includes/tracker/* (easyprivacy.txt: 1166) +/(.*/)?includes/tracker/.* +# /include/js/ga- (easyprivacy.txt: 1165) +/(.*/)?include/js/ga- +# /in.php?p= (easyprivacy.txt: 1164) +/(.*/)?in\.php\?p= +# /in.getclicky.com/* (easyprivacy.txt: 1163) +/(.*/)?in\.getclicky\.com/.* +in.getclicky.com/.* +# /in.cgi?*http (easyprivacy.txt: 1162) +/(.*/)?in\.cgi\?.*http +# /impressionTrackerV2. (easyprivacy.txt: 1161) +/(.*/)?impressionTrackerV2\. +impressionTrackerV2.*. +# /ImpressionsEvent.js (easyprivacy.txt: 1160) +/(.*/)?ImpressionsEvent\.js +ImpressionsEvent.js*. +# /impressions? (easyprivacy.txt: 1159) +/(.*/)?impressions\? +# /impressions3.asp? (easyprivacy.txt: 1158) +/(.*/)?impressions3\.asp\? +# /Impressions/aolukdp.imp? (easyprivacy.txt: 1157) +/(.*/)?Impressions/aolukdp\.imp\? +# /impressioncount. (easyprivacy.txt: 1156) +/(.*/)?impressioncount\. +impressioncount.*. +# /impression_tracking. (easyprivacy.txt: 1155) +/(.*/)?impression_tracking\. +# /impression_tracker. (easyprivacy.txt: 1154) +/(.*/)?impression_tracker\. +# /impression? (easyprivacy.txt: 1153) +/(.*/)?impression\? +# /impression/widget? (easyprivacy.txt: 1152) +/(.*/)?impression/widget\? +# /impression.track? (easyprivacy.txt: 1151) +/(.*/)?impression\.track\? +# /impression.pl? (easyprivacy.txt: 1150) +/(.*/)?impression\.pl\? +# /impression.js? (easyprivacy.txt: 1149) +/(.*/)?impression\.js\? +# /impression.gif? (easyprivacy.txt: 1148) +/(.*/)?impression\.gif\? +# /impression.ashx (easyprivacy.txt: 1147) +/(.*/)?impression\.ashx +impression.ashx*. +# /impress.php? (easyprivacy.txt: 1146) +/(.*/)?impress\.php\? +# /imp_img.php? (easyprivacy.txt: 1145) +/(.*/)?imp_img\.php\? +# /imp_cnt.gif? (easyprivacy.txt: 1144) +/(.*/)?imp_cnt\.gif\? +# /imp?imgid= (easyprivacy.txt: 1143) +/(.*/)?imp\?imgid= +# /imp/a.gif? (easyprivacy.txt: 1142) +/(.*/)?imp/a\.gif\? +# /imp.php?a (easyprivacy.txt: 1141) +/(.*/)?imp\.php\?a +# /imp.gif? (easyprivacy.txt: 1140) +/(.*/)?imp\.gif\? +# /imp.aspx? (easyprivacy.txt: 1139) +/(.*/)?imp\.aspx\? +# /imgtracker. (easyprivacy.txt: 1138) +/(.*/)?imgtracker\. +imgtracker.*. +# /imgcount.php? (easyprivacy.txt: 1137) +/(.*/)?imgcount\.php\? +# /imgcount.cgi? (easyprivacy.txt: 1136) +/(.*/)?imgcount\.cgi\? +# /img?eid= (easyprivacy.txt: 1135) +/(.*/)?img\?eid= +# /img/gut.gif? (easyprivacy.txt: 1134) +/(.*/)?img/gut\.gif\? +# /img/gnt.gif? (easyprivacy.txt: 1133) +/(.*/)?img/gnt\.gif\? +# /img.mqcdn.com/a/a (easyprivacy.txt: 1132) +/(.*/)?img\.mqcdn\.com/a/a +img.mqcdn.com/a/a +# /img.aspx?q=l3mkwgak (easyprivacy.txt: 1131) +/(.*/)?img\.aspx\?q=l3mkwgak +# /iMAWebCookie. (easyprivacy.txt: 1130) +/(.*/)?iMAWebCookie\. +iMAWebCookie.*. +# /imageTracking. (easyprivacy.txt: 1129) +/(.*/)?imageTracking\. +imageTracking.*. +# /images/uc.GIF? (easyprivacy.txt: 1128) +/(.*/)?images/uc\.GIF\? +# /images/mxl.gif? (easyprivacy.txt: 1127) +/(.*/)?images/mxl\.gif\? +# /images/1px.gif? (easyprivacy.txt: 1126) +/(.*/)?images/1px\.gif\? +# /image/count.gif? (easyprivacy.txt: 1125) +/(.*/)?image/count\.gif\? +# /image.ng/* (easyprivacy.txt: 1124) +/(.*/)?image\.ng/.* +image.ng/.* +# /ignition-one.js (easyprivacy.txt: 1123) +/(.*/)?ignition-one\.js +ignition-one.js*. +# /IGA.linktagger. (easyprivacy.txt: 1122) +/(.*/)?IGA\.linktagger\. +IGA.linktagger.*. +# /iframetracker. (easyprivacy.txt: 1121) +/(.*/)?iframetracker\. +iframetracker.*. +# /iframe_googleAnalytics (easyprivacy.txt: 1120) +/(.*/)?iframe_googleAnalytics +# /iframe.tracker.js (easyprivacy.txt: 1119) +/(.*/)?iframe\.tracker\.js +iframe.tracker.js*. +# /idcookie/pixel.png? (easyprivacy.txt: 1118) +/(.*/)?idcookie/pixel\.png\? +# /ics/2/pview.gif? (easyprivacy.txt: 1117) +/(.*/)?ics/2/pview\.gif\? +# /i?siteid= (easyprivacy.txt: 1116) +/(.*/)?i\?siteid= +# /i2yesCounter.js (easyprivacy.txt: 1115) +/(.*/)?i2yesCounter\.js +i2yesCounter.js*. +# /i2a.js (easyprivacy.txt: 1114) +/(.*/)?i2a\.js +i2a.js*. +# /i/i.gif? (easyprivacy.txt: 1113) +/(.*/)?i/i\.gif\? +# /i/b.gif? (easyprivacy.txt: 1112) +/(.*/)?i/b\.gif\? +# /hs_track. (easyprivacy.txt: 1111) +/(.*/)?hs_track\. +# /hrtrackjs.gif? (easyprivacy.txt: 1110) +/(.*/)?hrtrackjs\.gif\? +# /hpmetrics. (easyprivacy.txt: 1109) +/(.*/)?hpmetrics\. +hpmetrics.*. +# /hpanalytics_ (easyprivacy.txt: 1108) +/(.*/)?hpanalytics_ +# /horizon/track? (easyprivacy.txt: 1107) +/(.*/)?horizon/track\? +# /horizon.*/track? (easyprivacy.txt: 1106) +/(.*/)?horizon\..*/track\? +horizon.*./(.*/)?track\? +# /homePixelTracking. (easyprivacy.txt: 1105) +/(.*/)?homePixelTracking\. +homePixelTracking.*. +# /homepage_pixels. (easyprivacy.txt: 1104) +/(.*/)?homepage_pixels\. +# /homeCounter. (easyprivacy.txt: 1103) +/(.*/)?homeCounter\. +homeCounter.*. +# /hmapxy.js (easyprivacy.txt: 1102) +/(.*/)?hmapxy\.js +hmapxy.js*. +# /hlog.asp (easyprivacy.txt: 1101) +/(.*/)?hlog\.asp +hlog.asp*. +# /HitTracking. (easyprivacy.txt: 1100) +/(.*/)?HitTracking\. +HitTracking.*. +# /HitTracker/* (easyprivacy.txt: 1099) +/(.*/)?HitTracker/.* +# /hittrack.cgi? (easyprivacy.txt: 1098) +/(.*/)?hittrack\.cgi\? +# /hitslink. (easyprivacy.txt: 1097) +/(.*/)?hitslink\. +hitslink.*. +# /hits/logger? (easyprivacy.txt: 1096) +/(.*/)?hits/logger\? +# /hits.count? (easyprivacy.txt: 1095) +/(.*/)?hits\.count\? +# /hitlog.php? (easyprivacy.txt: 1094) +/(.*/)?hitlog\.php\? +# /hitlog.mpl? (easyprivacy.txt: 1093) +/(.*/)?hitlog\.mpl\? +# /HitCounter/* (easyprivacy.txt: 1092) +/(.*/)?HitCounter/.* +# /HitCounter. (easyprivacy.txt: 1091) +/(.*/)?HitCounter\. +HitCounter.*. +# /hitcount_ (easyprivacy.txt: 1090) +/(.*/)?hitcount_ +# /hitcount? (easyprivacy.txt: 1089) +/(.*/)?hitcount\? +# /hitCount. (easyprivacy.txt: 1088) +/(.*/)?hitCount\. +hitCount.*. +# /hitbox.js (easyprivacy.txt: 1087) +/(.*/)?hitbox\.js +hitbox.js*. +# /hit_img.cfm? (easyprivacy.txt: 1086) +/(.*/)?hit_img\.cfm\? +# /hit_counter (easyprivacy.txt: 1085) +/(.*/)?hit_counter +# /hit_count? (easyprivacy.txt: 1084) +/(.*/)?hit_count\? +# /hit2.php (easyprivacy.txt: 1083) +/(.*/)?hit2\.php +hit2.php*. +# /hit/tracker (easyprivacy.txt: 1082) +/(.*/)?hit/tracker +# /hit.xiti? (easyprivacy.txt: 1081) +/(.*/)?hit\.xiti\? +# /hit.php? (easyprivacy.txt: 1080) +/(.*/)?hit\.php\? +# /Hit.aspx? (easyprivacy.txt: 1079) +/(.*/)?Hit\.aspx\? +# /hit.asp? (easyprivacy.txt: 1078) +/(.*/)?hit\.asp\? +# /Hit.ashx? (easyprivacy.txt: 1077) +/(.*/)?Hit\.ashx\? +# /hit-counter. (easyprivacy.txt: 1076) +/(.*/)?hit-counter\. +hit-counter.*. +# /histats/* (easyprivacy.txt: 1075) +/(.*/)?histats/.* +# /HiroBeacon? (easyprivacy.txt: 1074) +/(.*/)?HiroBeacon\? +# /hints.netflame.cc/* (easyprivacy.txt: 1073) +/(.*/)?hints\.netflame\.cc/.* +hints.netflame.cc/.* +# /hgct?hc=&hb=*&vjs= (easyprivacy.txt: 1072) +/(.*/)?hgct\?hc=&hb=.*&vjs= +# /hg?hc=&hb=*&vjs= (easyprivacy.txt: 1071) +/(.*/)?hg\?hc=&hb=.*&vjs= +# /heatmap_log.js (easyprivacy.txt: 1070) +/(.*/)?heatmap_log\.js +# /heatmap.js (easyprivacy.txt: 1069) +/(.*/)?heatmap\.js +heatmap.js*. +# /heatmap.*? (easyprivacy.txt: 1068) +/(.*/)?heatmap\..*\? +heatmap.*./.*\? +# /headupstats.gif? (easyprivacy.txt: 1067) +/(.*/)?headupstats\.gif\? +# /headerpixel.gif? (easyprivacy.txt: 1066) +/(.*/)?headerpixel\.gif\? +# /gweb/analytics/* (easyprivacy.txt: 1065) +/(.*/)?gweb/analytics/.* +# /gtrack. (easyprivacy.txt: 1064) +/(.*/)?gtrack\. +gtrack.*. +# /gs-analytics- (easyprivacy.txt: 1063) +/(.*/)?gs-analytics- +gs-analytics-*. +# /gravity-beacon.js (easyprivacy.txt: 1062) +/(.*/)?gravity-beacon\.js +gravity-beacon.js*. +# /gPageTracking. (easyprivacy.txt: 1061) +/(.*/)?gPageTracking\. +gPageTracking.*. +# /gosquared-livestats/* (easyprivacy.txt: 1060) +/(.*/)?gosquared-livestats/.* +# /googlytics- (easyprivacy.txt: 1059) +/(.*/)?googlytics- +googlytics-*. +# /googleTracking.js (easyprivacy.txt: 1058) +/(.*/)?googleTracking\.js +googleTracking.js*. +# /googletracker/* (easyprivacy.txt: 1057) +/(.*/)?googletracker/.* +# /googleTracker. (easyprivacy.txt: 1056) +/(.*/)?googleTracker\. +googleTracker.*. +# /googletrack.js (easyprivacy.txt: 1055) +/(.*/)?googletrack\.js +googletrack.js*. +# /googleanalyze2. (easyprivacy.txt: 1054) +/(.*/)?googleanalyze2\. +googleanalyze2.*. +# /googleanalyze1. (easyprivacy.txt: 1053) +/(.*/)?googleanalyze1\. +googleanalyze1.*. +# /GoogleAnalyticsTrackingProvider.js (easyprivacy.txt: 1052) +/(.*/)?GoogleAnalyticsTrackingProvider\.js +GoogleAnalyticsTrackingProvider.js*. +# /googleAnalyticsTracking. (easyprivacy.txt: 1051) +/(.*/)?googleAnalyticsTracking\. +googleAnalyticsTracking.*. +# /GoogleAnalyticsPlus/* (easyprivacy.txt: 1050) +/(.*/)?GoogleAnalyticsPlus/.* +# /GoogleAnalyticsPlugIn. (easyprivacy.txt: 1049) +/(.*/)?GoogleAnalyticsPlugIn\. +GoogleAnalyticsPlugIn.*. +# /googleAnalyticsOutgoingLinks. (easyprivacy.txt: 1048) +/(.*/)?googleAnalyticsOutgoingLinks\. +googleAnalyticsOutgoingLinks.*. +# /GoogleAnalyticsModule. (easyprivacy.txt: 1047) +/(.*/)?GoogleAnalyticsModule\. +GoogleAnalyticsModule.*. +# /googleanalyticsmanagement.swf (easyprivacy.txt: 1046) +/(.*/)?googleanalyticsmanagement\.swf +googleanalyticsmanagement.swf*. +# /googleAnalyticsBottom. (easyprivacy.txt: 1045) +/(.*/)?googleAnalyticsBottom\. +googleAnalyticsBottom.*. +# /GoogleAnalyticsBC3. (easyprivacy.txt: 1044) +/(.*/)?GoogleAnalyticsBC3\. +GoogleAnalyticsBC3.*. +# /googleAnalyticsBase_ (easyprivacy.txt: 1043) +/(.*/)?googleAnalyticsBase_ +# /googleAnalytics_ (easyprivacy.txt: 1042) +/(.*/)?googleAnalytics_ +# /GoogleAnalytics?utmac= (easyprivacy.txt: 1041) +/(.*/)?GoogleAnalytics\?utmac= +# /googleAnalytics2. (easyprivacy.txt: 1040) +/(.*/)?googleAnalytics2\. +googleAnalytics2.*. +# /googleAnalytics1. (easyprivacy.txt: 1039) +/(.*/)?googleAnalytics1\. +googleAnalytics1.*. +# /googleanalytics/* (easyprivacy.txt: 1038) +/(.*/)?googleanalytics/.* +# /GoogleAnalytics.swf (easyprivacy.txt: 1037) +/(.*/)?GoogleAnalytics\.swf +GoogleAnalytics.swf*. +# /googleanalytics.js (easyprivacy.txt: 1036) +/(.*/)?googleanalytics\.js +googleanalytics.js*. +# /googleanalytics- (easyprivacy.txt: 1035) +/(.*/)?googleanalytics- +googleanalytics-*. +# /GoogleAnalystics. (easyprivacy.txt: 1034) +/(.*/)?GoogleAnalystics\. +GoogleAnalystics.*. +# /googleana. (easyprivacy.txt: 1033) +/(.*/)?googleana\. +googleana.*. +# /google_tracker. (easyprivacy.txt: 1032) +/(.*/)?google_tracker\. +# /google_page_track (easyprivacy.txt: 1031) +/(.*/)?google_page_track +# /google_analytics_ (easyprivacy.txt: 1030) +/(.*/)?google_analytics_ +# /google_analytics/* (easyprivacy.txt: 1029) +/(.*/)?google_analytics/.* +# /google_analytics. (easyprivacy.txt: 1028) +/(.*/)?google_analytics\. +# /google_analytics-bc.swf (easyprivacy.txt: 1027) +/(.*/)?google_analytics-bc\.swf +# /google_analitycs. (easyprivacy.txt: 1026) +/(.*/)?google_analitycs\. +# /Google/ga.js (easyprivacy.txt: 1025) +/(.*/)?Google/ga\.js +# /google/analytics_ (easyprivacy.txt: 1024) +/(.*/)?google/analytics_ +# /google.eventTracking.js (easyprivacy.txt: 1023) +/(.*/)?google\.eventTracking\.js +google.eventTracking.js*. +# /google.analytics. (easyprivacy.txt: 1022) +/(.*/)?google\.analytics\. +google.analytics.*. +# /google-analytics/* (easyprivacy.txt: 1021) +/(.*/)?google-analytics/.* +# /google-analytics. (easyprivacy.txt: 1020) +/(.*/)?google-analytics\. +google-analytics.*. +# /google-analytics- (easyprivacy.txt: 1019) +/(.*/)?google-analytics- +google-analytics-*. +# /google-analyticator/* (easyprivacy.txt: 1018) +/(.*/)?google-analyticator/.* +# /GomezTracking. (easyprivacy.txt: 1017) +/(.*/)?GomezTracking\. +GomezTracking.*. +# /gomez/*$script (easyprivacy.txt: 1016) +/(.*/)?gomez/.* +# /gomez.js (easyprivacy.txt: 1015) +/(.*/)?gomez\.js +gomez.js*. +# /goAnalytics. (easyprivacy.txt: 1014) +/(.*/)?goAnalytics\. +goAnalytics.*. +# /gn_tracking. (easyprivacy.txt: 1013) +/(.*/)?gn_tracking\. +# /gn_analytics. (easyprivacy.txt: 1012) +/(.*/)?gn_analytics\. +# /gmasst.gif?guid= (easyprivacy.txt: 1011) +/(.*/)?gmasst\.gif\?guid= +# /globalpagetracking.js (easyprivacy.txt: 1010) +/(.*/)?globalpagetracking\.js +globalpagetracking.js*. +# /global/ga.js? (easyprivacy.txt: 1009) +/(.*/)?global/ga\.js\? +# /glbltrackjs. (easyprivacy.txt: 1008) +/(.*/)?glbltrackjs\. +glbltrackjs.*. +# /gifstats. (easyprivacy.txt: 1007) +/(.*/)?gifstats\. +gifstats.*. +# /gifbanner? (easyprivacy.txt: 1006) +/(.*/)?gifbanner\? +# /getTotalHits. (easyprivacy.txt: 1005) +/(.*/)?getTotalHits\. +getTotalHits.*. +# /getsidpixeltag?sid= (easyprivacy.txt: 1004) +/(.*/)?getsidpixeltag\?sid= +# /getRemoteDomainCookies? (easyprivacy.txt: 1003) +/(.*/)?getRemoteDomainCookies\? +# /getPixels?*&referer= (easyprivacy.txt: 1002) +/(.*/)?getPixels\?.*&referer= +# /getclicky_ (easyprivacy.txt: 1001) +/(.*/)?getclicky_ +# /getclicky. (easyprivacy.txt: 1000) +/(.*/)?getclicky\. +getclicky.*. +# /get_tracking_id? (easyprivacy.txt: 999) +/(.*/)?get_tracking_id\? +# /get_statistics.php?screen_width= (easyprivacy.txt: 998) +/(.*/)?get_statistics\.php\?screen_width= +# /get_browser_info. (easyprivacy.txt: 997) +/(.*/)?get_browser_info\. +# /geov2.js (easyprivacy.txt: 996) +/(.*/)?geov2\.js +geov2.js*. +# /geomap.js? (easyprivacy.txt: 995) +/(.*/)?geomap\.js\? +# /geoipAPI.js? (easyprivacy.txt: 994) +/(.*/)?geoipAPI\.js\? +# /geoip_script? (easyprivacy.txt: 993) +/(.*/)?geoip_script\? +# /geoip_cc (easyprivacy.txt: 992) +/(.*/)?geoip_cc +# /geoip.html (easyprivacy.txt: 991) +/(.*/)?geoip\.html +geoip.html*. +# /geocounter. (easyprivacy.txt: 990) +/(.*/)?geocounter\. +geocounter.*. +# /geocompteur. (easyprivacy.txt: 989) +/(.*/)?geocompteur\. +geocompteur.*. +# /geoAnalysis.js (easyprivacy.txt: 988) +/(.*/)?geoAnalysis\.js +geoAnalysis.js*. +# /geo.php? (easyprivacy.txt: 987) +/(.*/)?geo\.php\? +# /generictracking. (easyprivacy.txt: 986) +/(.*/)?generictracking\. +generictracking.*. +# /generate_204$image (easyprivacy.txt: 985) +/(.*/)?generate_204 +# /gen_204?$image,script (easyprivacy.txt: 984) +/(.*/)?gen_204\? +# /gemiusAudience. (easyprivacy.txt: 983) +/(.*/)?gemiusAudience\. +gemiusAudience.*. +# /gemius_ (easyprivacy.txt: 982) +/(.*/)?gemius_ +# /gemius1.js (easyprivacy.txt: 981) +/(.*/)?gemius1\.js +gemius1.js*. +# /gemius/* (easyprivacy.txt: 980) +/(.*/)?gemius/.* +# /gemius.js (easyprivacy.txt: 979) +/(.*/)?gemius\.js +gemius.js*. +# /gcui_vidtracker/* (easyprivacy.txt: 978) +/(.*/)?gcui_vidtracker/.* +# /gcount.pl? (easyprivacy.txt: 977) +/(.*/)?gcount\.pl\? +# /gClickTracking. (easyprivacy.txt: 976) +/(.*/)?gClickTracking\. +gClickTracking.*. +# /gatrackwww. (easyprivacy.txt: 975) +/(.*/)?gatrackwww\. +gatrackwww.*. +# /gatrackthis. (easyprivacy.txt: 974) +/(.*/)?gatrackthis\. +gatrackthis.*. +# /gatrackingcampaigns/* (easyprivacy.txt: 973) +/(.*/)?gatrackingcampaigns/.* +# /gatracking. (easyprivacy.txt: 972) +/(.*/)?gatracking\. +gatracking.*. +# /gatrack. (easyprivacy.txt: 971) +/(.*/)?gatrack\. +gatrack.*. +# /gatc.js (easyprivacy.txt: 970) +/(.*/)?gatc\.js +gatc.js*. +# /gatag.js (easyprivacy.txt: 969) +/(.*/)?gatag\.js +gatag.js*. +# /gasocialtracking. (easyprivacy.txt: 968) +/(.*/)?gasocialtracking\. +gasocialtracking.*. +# /gascript. (easyprivacy.txt: 967) +/(.*/)?gascript\. +gascript.*. +# /GARecord? (easyprivacy.txt: 966) +/(.*/)?GARecord\? +# /gapro.swf (easyprivacy.txt: 965) +/(.*/)?gapro\.swf +gapro.swf*. +# /gapro-1h.swf (easyprivacy.txt: 964) +/(.*/)?gapro-1h\.swf +gapro-1h.swf*. +# /gapro-1.swf (easyprivacy.txt: 963) +/(.*/)?gapro-1\.swf +gapro-1.swf*. +# /gapagetracker. (easyprivacy.txt: 962) +/(.*/)?gapagetracker\. +gapagetracker.*. +# /ganalytics. (easyprivacy.txt: 961) +/(.*/)?ganalytics\. +ganalytics.*. +# /gallerystats. (easyprivacy.txt: 960) +/(.*/)?gallerystats\. +gallerystats.*. +# /galinks- (easyprivacy.txt: 959) +/(.*/)?galinks- +galinks-*. +# /GAInit.js| (easyprivacy.txt: 958) +/(.*/)?GAInit\.js$ +GAInit.js +# /GAFOAWrapper.swf? (easyprivacy.txt: 957) +/(.*/)?GAFOAWrapper\.swf\? +# /gadsfuncs. (easyprivacy.txt: 956) +/(.*/)?gadsfuncs\. +gadsfuncs.*. +# /gaCustom. (easyprivacy.txt: 955) +/(.*/)?gaCustom\. +gaCustom.*. +# /gaclicktracking. (easyprivacy.txt: 954) +/(.*/)?gaclicktracking\. +gaclicktracking.*. +# /gaaddons.js (easyprivacy.txt: 953) +/(.*/)?gaaddons\.js +gaaddons.js*. +# /gaaddons- (easyprivacy.txt: 952) +/(.*/)?gaaddons- +gaaddons-*. +# /ga_wrapper. (easyprivacy.txt: 951) +/(.*/)?ga_wrapper\. +# /ga_tracklinks. (easyprivacy.txt: 950) +/(.*/)?ga_tracklinks\. +# /ga_tracker. (easyprivacy.txt: 949) +/(.*/)?ga_tracker\. +# /ga_track.php?adurl= (easyprivacy.txt: 948) +/(.*/)?ga_track\.php\?adurl= +# /ga_social_tracking_ (easyprivacy.txt: 947) +/(.*/)?ga_social_tracking_ +# /ga_social. (easyprivacy.txt: 946) +/(.*/)?ga_social\. +# /ga_outgoinglinks. (easyprivacy.txt: 945) +/(.*/)?ga_outgoinglinks\. +# /ga_no_cookie_ (easyprivacy.txt: 944) +/(.*/)?ga_no_cookie_ +# /ga_no_cookie. (easyprivacy.txt: 943) +/(.*/)?ga_no_cookie\. +# /ga_loader. (easyprivacy.txt: 942) +/(.*/)?ga_loader\. +# /ga_link_tracker_ (easyprivacy.txt: 941) +/(.*/)?ga_link_tracker_ +# /ga_keyword2. (easyprivacy.txt: 940) +/(.*/)?ga_keyword2\. +# /ga_header. (easyprivacy.txt: 939) +/(.*/)?ga_header\. +# /ga_gwo. (easyprivacy.txt: 938) +/(.*/)?ga_gwo\. +# /ga_footer. (easyprivacy.txt: 937) +/(.*/)?ga_footer\. +# /ga_external. (easyprivacy.txt: 936) +/(.*/)?ga_external\. +# /ga_event_tracking. (easyprivacy.txt: 935) +/(.*/)?ga_event_tracking\. +# /ga_event_frame? (easyprivacy.txt: 934) +/(.*/)?ga_event_frame\? +# /ga_dualcode_tracking. (easyprivacy.txt: 933) +/(.*/)?ga_dualcode_tracking\. +# /ga_dpc_youtube. (easyprivacy.txt: 932) +/(.*/)?ga_dpc_youtube\. +# /ga_anonym.js (easyprivacy.txt: 931) +/(.*/)?ga_anonym\.js +# /ga?utmac=$image (easyprivacy.txt: 930) +/(.*/)?ga\?utmac= +# /ga2.js (easyprivacy.txt: 929) +/(.*/)?ga2\.js +ga2.js*. +# /ga2.aspx?utmac=$image (easyprivacy.txt: 928) +/(.*/)?ga2\.aspx\?utmac= +# /ga1.js (easyprivacy.txt: 927) +/(.*/)?ga1\.js +ga1.js*. +# /ga/trackevent. (easyprivacy.txt: 926) +/(.*/)?ga/trackevent\. +# /ga/*.gif? (easyprivacy.txt: 925) +/(.*/)?ga/.*\.gif\? +# /ga.swf?gid= (easyprivacy.txt: 924) +/(.*/)?ga\.swf\?gid= +# /GA.swf?gaId= (easyprivacy.txt: 923) +/(.*/)?GA\.swf\?gaId= +# /ga.php?$image (easyprivacy.txt: 922) +/(.*/)?ga\.php\? +# /ga.jsp?$image (easyprivacy.txt: 921) +/(.*/)?ga\.jsp\? +# /ga.gif? (easyprivacy.txt: 920) +/(.*/)?ga\.gif\? +# /ga.aspx? (easyprivacy.txt: 919) +/(.*/)?ga\.aspx\? +# /ga-tracking/* (easyprivacy.txt: 918) +/(.*/)?ga-tracking/.* +# /ga-tracker. (easyprivacy.txt: 917) +/(.*/)?ga-tracker\. +ga-tracker.*. +# /ga-track. (easyprivacy.txt: 916) +/(.*/)?ga-track\. +ga-track.*. +# /ga-socialtracker. (easyprivacy.txt: 915) +/(.*/)?ga-socialtracker\. +ga-socialtracker.*. +# /ga-se-async.js (easyprivacy.txt: 914) +/(.*/)?ga-se-async\.js +ga-se-async.js*. +# /ga-script. (easyprivacy.txt: 913) +/(.*/)?ga-script\. +ga-script.*. +# /ga-multidomain. (easyprivacy.txt: 912) +/(.*/)?ga-multidomain\. +ga-multidomain.*. +# /ga-links.js (easyprivacy.txt: 911) +/(.*/)?ga-links\.js +ga-links.js*. +# /ga-explorations. (easyprivacy.txt: 910) +/(.*/)?ga-explorations\. +ga-explorations.*. +# /ga-event-tracking. (easyprivacy.txt: 909) +/(.*/)?ga-event-tracking\. +ga-event-tracking.*. +# /ga-custom-vars. (easyprivacy.txt: 908) +/(.*/)?ga-custom-vars\. +ga-custom-vars.*. +# /ga-custom-tracking. (easyprivacy.txt: 907) +/(.*/)?ga-custom-tracking\. +ga-custom-tracking.*. +# /ga-async- (easyprivacy.txt: 906) +/(.*/)?ga-async- +ga-async-*. +# /ga-affiliates. (easyprivacy.txt: 905) +/(.*/)?ga-affiliates\. +ga-affiliates.*. +# /g_track.php? (easyprivacy.txt: 904) +/(.*/)?g_track\.php\? +# /g-track/* (easyprivacy.txt: 903) +/(.*/)?g-track/.* +# /FTTrack2.js (easyprivacy.txt: 902) +/(.*/)?FTTrack2\.js +FTTrack2.js*. +# /fsrscripts/* (easyprivacy.txt: 901) +/(.*/)?fsrscripts/.* +# /frtrack. (easyprivacy.txt: 900) +/(.*/)?frtrack\. +frtrack.*. +# /frosmo.easy.js (easyprivacy.txt: 899) +/(.*/)?frosmo\.easy\.js +frosmo.easy.js*. +# /friendbuy.min.js (easyprivacy.txt: 898) +/(.*/)?friendbuy\.min\.js +friendbuy.min.js*. +# /freecgi/count.cgi? (easyprivacy.txt: 897) +/(.*/)?freecgi/count\.cgi\? +# /fpcount.exe (easyprivacy.txt: 896) +/(.*/)?fpcount\.exe +fpcount.exe*. +# /fpc.pl?a= (easyprivacy.txt: 895) +/(.*/)?fpc\.pl\?a= +# /fp/clear.png? (easyprivacy.txt: 894) +/(.*/)?fp/clear\.png\? +# /FoxComScore. (easyprivacy.txt: 893) +/(.*/)?FoxComScore\. +FoxComScore.*. +# /FoxBlueKaiPlugIn. (easyprivacy.txt: 892) +/(.*/)?FoxBlueKaiPlugIn\. +FoxBlueKaiPlugIn.*. +# /FoxAnalyticsExtension. (easyprivacy.txt: 891) +/(.*/)?FoxAnalyticsExtension\. +FoxAnalyticsExtension.*. +# /foresee/* (easyprivacy.txt: 890) +/(.*/)?foresee/.* +# /fora_player_tracking. (easyprivacy.txt: 889) +/(.*/)?fora_player_tracking\. +# /footerpixel.gif? (easyprivacy.txt: 888) +/(.*/)?footerpixel\.gif\? +# /footer_tag_iframe. (easyprivacy.txt: 887) +/(.*/)?footer_tag_iframe\. +# /footer-tracking.js (easyprivacy.txt: 886) +/(.*/)?footer-tracking\.js +footer-tracking.js*. +# /flv_tracking. (easyprivacy.txt: 885) +/(.*/)?flv_tracking\. +# /flcounter/*$script (easyprivacy.txt: 884) +/(.*/)?flcounter/.* +# /flashtag.txt?Log= (easyprivacy.txt: 883) +/(.*/)?flashtag\.txt\?Log= +# /flash-stats.php? (easyprivacy.txt: 882) +/(.*/)?flash-stats\.php\? +# /flash-cookies/* (easyprivacy.txt: 881) +/(.*/)?flash-cookies/.* +# /fkounter5/* (easyprivacy.txt: 880) +/(.*/)?fkounter5/.* +# /fkounter/* (easyprivacy.txt: 879) +/(.*/)?fkounter/.* +# /firestats/* (easyprivacy.txt: 878) +/(.*/)?firestats/.* +# /fingerprint.min.js (easyprivacy.txt: 877) +/(.*/)?fingerprint\.min\.js +fingerprint.min.js*. +# /fingerprint.js (easyprivacy.txt: 876) +/(.*/)?fingerprint\.js +fingerprint.js*. +# /finalizestats. (easyprivacy.txt: 875) +/(.*/)?finalizestats\. +finalizestats.*. +# /files/ga.js (easyprivacy.txt: 874) +/(.*/)?files/ga\.js +# /federated-analytics. (easyprivacy.txt: 873) +/(.*/)?federated-analytics\. +federated-analytics.*. +# /fbcounter/* (easyprivacy.txt: 872) +/(.*/)?fbcounter/.* +# /fbanalytics/* (easyprivacy.txt: 871) +/(.*/)?fbanalytics/.* +# /fb-tracking.js (easyprivacy.txt: 870) +/(.*/)?fb-tracking\.js +fb-tracking.js*. +# /fb-app-tracker. (easyprivacy.txt: 869) +/(.*/)?fb-app-tracker\. +fb-app-tracker.*. +# /fastcounter. (easyprivacy.txt: 868) +/(.*/)?fastcounter\. +fastcounter.*. +# /fairfax_tracking.js (easyprivacy.txt: 867) +/(.*/)?fairfax_tracking\.js +# /FacebookTracking. (easyprivacy.txt: 866) +/(.*/)?FacebookTracking\. +FacebookTracking.*. +# /ezytrack. (easyprivacy.txt: 865) +/(.*/)?ezytrack\. +ezytrack.*. +# /ezakus.js (easyprivacy.txt: 864) +/(.*/)?ezakus\.js +ezakus.js*. +# /external/nielsen_ (easyprivacy.txt: 863) +/(.*/)?external/nielsen_ +# /external-tracking. (easyprivacy.txt: 862) +/(.*/)?external-tracking\. +external-tracking.*. +# /extendedAnalytics. (easyprivacy.txt: 861) +/(.*/)?extendedAnalytics\. +extendedAnalytics.*. +# /expcount/* (easyprivacy.txt: 860) +/(.*/)?expcount/.* +# /exittraffic. (easyprivacy.txt: 859) +/(.*/)?exittraffic\. +exittraffic.*. +# /exittracker. (easyprivacy.txt: 858) +/(.*/)?exittracker\. +exittracker.*. +# /exelator. (easyprivacy.txt: 857) +/(.*/)?exelator\. +exelator.*. +# /exelate.html? (easyprivacy.txt: 856) +/(.*/)?exelate\.html\? +# /exelate.htm? (easyprivacy.txt: 855) +/(.*/)?exelate\.htm\? +# /exaonclick.js (easyprivacy.txt: 854) +/(.*/)?exaonclick\.js +exaonclick.js*. +# /EWTRACK_ (easyprivacy.txt: 853) +/(.*/)?EWTRACK_ +# /ewtrack. (easyprivacy.txt: 852) +/(.*/)?ewtrack\. +ewtrack.*. +# /evercookie_ (easyprivacy.txt: 851) +/(.*/)?evercookie_ +# /evercookie/* (easyprivacy.txt: 850) +/(.*/)?evercookie/.* +# /evercookie. (easyprivacy.txt: 849) +/(.*/)?evercookie\. +evercookie.*. +# /eventtracker.js (easyprivacy.txt: 848) +/(.*/)?eventtracker\.js +eventtracker.js*. +# /eventLogServlet? (easyprivacy.txt: 847) +/(.*/)?eventLogServlet\? +# /event?stat_ (easyprivacy.txt: 846) +/(.*/)?event\?stat_ +# /event?pmo= (easyprivacy.txt: 845) +/(.*/)?event\?pmo= +# /event/*/*?*&euidl=*&url= (easyprivacy.txt: 844) +/(.*/)?event/.*/.*\?.*&euidl=.*&url= +# /event.gif? (easyprivacy.txt: 843) +/(.*/)?event\.gif\? +# /event-tracking.js (easyprivacy.txt: 842) +/(.*/)?event-tracking\.js +event-tracking.js*. +# /event-report?*&uid= (easyprivacy.txt: 841) +/(.*/)?event-report\?.*&uid= +# /event-log/* (easyprivacy.txt: 840) +/(.*/)?event-log/.* +# /eu-survey.js (easyprivacy.txt: 839) +/(.*/)?eu-survey\.js +eu-survey.js*. +# /etrackercode. (easyprivacy.txt: 838) +/(.*/)?etrackercode\. +etrackercode.*. +# /etracker/* (easyprivacy.txt: 837) +/(.*/)?etracker/.* +# /etracker. (easyprivacy.txt: 836) +/(.*/)?etracker\. +etracker.*. +# /etag? (easyprivacy.txt: 835) +/(.*/)?etag\? +# /estatnativeflashtag.swf (easyprivacy.txt: 834) +/(.*/)?estatnativeflashtag\.swf +estatnativeflashtag.swf*. +# /estatistica.js (easyprivacy.txt: 833) +/(.*/)?estatistica\.js +estatistica.js*. +# /est.pl? (easyprivacy.txt: 832) +/(.*/)?est\.pl\? +# /error/js/log? (easyprivacy.txt: 831) +/(.*/)?error/js/log\? +# /epf_v1_95.js (easyprivacy.txt: 830) +/(.*/)?epf_v1_95\.js +# /envoy.sb?sbaid (easyprivacy.txt: 829) +/(.*/)?envoy\.sb\?sbaid +# /emstrack. (easyprivacy.txt: 828) +/(.*/)?emstrack\. +emstrack.*. +# /emos2.js$~xmlhttprequest (easyprivacy.txt: 827) +/(.*/)?emos2\.js +emos2.js*. +# /emos2-$script (easyprivacy.txt: 826) +/(.*/)?emos2- +emos2-*. +# /EMERPEventCollector. (easyprivacy.txt: 825) +/(.*/)?EMERPEventCollector\. +EMERPEventCollector.*. +# /EmailOpenTrackLog.aspx?$image (easyprivacy.txt: 824) +/(.*/)?EmailOpenTrackLog\.aspx\? +# /eluminate? (easyprivacy.txt: 823) +/(.*/)?eluminate\? +# /elqtracking. (easyprivacy.txt: 822) +/(.*/)?elqtracking\. +elqtracking.*. +# /elqnow/* (easyprivacy.txt: 821) +/(.*/)?elqnow/.* +# /elqimg.js (easyprivacy.txt: 820) +/(.*/)?elqimg\.js +elqimg.js*. +# /elqcfg.min.js (easyprivacy.txt: 819) +/(.*/)?elqcfg\.min\.js +elqcfg.min.js*. +# /elqcfg.js (easyprivacy.txt: 818) +/(.*/)?elqcfg\.js +elqcfg.js*. +# /elqcfg-$script (easyprivacy.txt: 817) +/(.*/)?elqcfg- +elqcfg-*. +# /eloqua_ (easyprivacy.txt: 816) +/(.*/)?eloqua_ +# /elex.track. (easyprivacy.txt: 815) +/(.*/)?elex\.track\. +elex.track.*. +# /eheat.js (easyprivacy.txt: 814) +/(.*/)?eheat\.js +eheat.js*. +# /eftracking. (easyprivacy.txt: 813) +/(.*/)?eftracking\. +eftracking.*. +# /EfficientFrontier. (easyprivacy.txt: 812) +/(.*/)?EfficientFrontier\. +EfficientFrontier.*. +# /effectivemeasure. (easyprivacy.txt: 811) +/(.*/)?effectivemeasure\. +effectivemeasure.*. +# /EDigitalSurvey_ (easyprivacy.txt: 810) +/(.*/)?EDigitalSurvey_ +# /eDigitalSurvey. (easyprivacy.txt: 809) +/(.*/)?eDigitalSurvey\. +eDigitalSurvey.*. +# /edateAdTrack? (easyprivacy.txt: 808) +/(.*/)?edateAdTrack\? +# /edata.js (easyprivacy.txt: 807) +/(.*/)?edata\.js +edata.js*. +# /edAnalyticsWrapper. (easyprivacy.txt: 806) +/(.*/)?edAnalyticsWrapper\. +edAnalyticsWrapper.*. +# /eCustomerSurvey. (easyprivacy.txt: 805) +/(.*/)?eCustomerSurvey\. +eCustomerSurvey.*. +# /ecossurvey. (easyprivacy.txt: 804) +/(.*/)?ecossurvey\. +ecossurvey.*. +# /ecos_surveycode_ (easyprivacy.txt: 803) +/(.*/)?ecos_surveycode_ +# /ecos_survey. (easyprivacy.txt: 802) +/(.*/)?ecos_survey\. +# /ecos.js (easyprivacy.txt: 801) +/(.*/)?ecos\.js +ecos.js*. +# /ecos-surveycode. (easyprivacy.txt: 800) +/(.*/)?ecos-surveycode\. +ecos-surveycode.*. +# /Econda2. (easyprivacy.txt: 799) +/(.*/)?Econda2\. +Econda2.*. +# /econa-site-search/log.php? (easyprivacy.txt: 798) +/(.*/)?econa-site-search/log\.php\? +# /econa-site-search-ajax-log-referrer.php (easyprivacy.txt: 797) +/(.*/)?econa-site-search-ajax-log-referrer\.php +econa-site-search-ajax-log-referrer.php*. +# /ecom/status.jsp? (easyprivacy.txt: 796) +/(.*/)?ecom/status\.jsp\? +# /ecblank.gif? (easyprivacy.txt: 795) +/(.*/)?ecblank\.gif\? +# /ebonetag.js (easyprivacy.txt: 794) +/(.*/)?ebonetag\.js +ebonetag.js*. +# /eae-logger/* (easyprivacy.txt: 793) +/(.*/)?eae-logger/.* +# /ea-analytics/* (easyprivacy.txt: 792) +/(.*/)?ea-analytics/.* +# /e086ec.aspx?q=l3mkwgak (easyprivacy.txt: 791) +/(.*/)?e086ec\.aspx\?q=l3mkwgak +# /dynaTraceMonitor? (easyprivacy.txt: 790) +/(.*/)?dynaTraceMonitor\? +# /DynamicAnalytics. (easyprivacy.txt: 789) +/(.*/)?DynamicAnalytics\. +DynamicAnalytics.*. +# /dwanalytics. (easyprivacy.txt: 788) +/(.*/)?dwanalytics\. +dwanalytics.*. +# /dtrack.js (easyprivacy.txt: 787) +/(.*/)?dtrack\.js +dtrack.js*. +# /dtmtag.js (easyprivacy.txt: 786) +/(.*/)?dtmtag\.js +dtmtag.js*. +# /dtm_cm.js (easyprivacy.txt: 785) +/(.*/)?dtm_cm\.js +# /dstracking. (easyprivacy.txt: 784) +/(.*/)?dstracking\. +dstracking.*. +# /dspixel.js (easyprivacy.txt: 783) +/(.*/)?dspixel\.js +dspixel.js*. +# /drads?referrer= (easyprivacy.txt: 782) +/(.*/)?drads\?referrer= +# /DownloadTracker. (easyprivacy.txt: 781) +/(.*/)?DownloadTracker\. +DownloadTracker.*. +# /dow_analytics. (easyprivacy.txt: 780) +/(.*/)?dow_analytics\. +# /doubleclickCheck/* (easyprivacy.txt: 779) +/(.*/)?doubleclickCheck/.* +# /dotomi_tracking/* (easyprivacy.txt: 778) +/(.*/)?dotomi_tracking/.* +# /dotomi_abandon. (easyprivacy.txt: 777) +/(.*/)?dotomi_abandon\. +# /Dotomi. (easyprivacy.txt: 776) +/(.*/)?Dotomi\. +Dotomi.*. +# /dot.asp? (easyprivacy.txt: 775) +/(.*/)?dot\.asp\? +# /domcount_ (easyprivacy.txt: 774) +/(.*/)?domcount_ +# /domcount. (easyprivacy.txt: 773) +/(.*/)?domcount\. +domcount.*. +# /dolWebAnalytics. (easyprivacy.txt: 772) +/(.*/)?dolWebAnalytics\. +dolWebAnalytics.*. +# /doIperceptionsRegulator. (easyprivacy.txt: 771) +/(.*/)?doIperceptionsRegulator\. +doIperceptionsRegulator.*. +# /DNATracking. (easyprivacy.txt: 770) +/(.*/)?DNATracking\. +DNATracking.*. +# /dmtracking2. (easyprivacy.txt: 769) +/(.*/)?dmtracking2\. +dmtracking2.*. +# /dm.gif? (easyprivacy.txt: 768) +/(.*/)?dm\.gif\? +# /dltrack/* (easyprivacy.txt: 767) +/(.*/)?dltrack/.* +# /dltrack. (easyprivacy.txt: 766) +/(.*/)?dltrack\. +dltrack.*. +# /dla_tracker. (easyprivacy.txt: 765) +/(.*/)?dla_tracker\. +# /dispatch.fcgi? (easyprivacy.txt: 764) +/(.*/)?dispatch\.fcgi\? +# /disp_cnt. (easyprivacy.txt: 763) +/(.*/)?disp_cnt\. +# /Diagnostics?hit= (easyprivacy.txt: 762) +/(.*/)?Diagnostics\?hit= +# /deskanalytics.js (easyprivacy.txt: 761) +/(.*/)?deskanalytics\.js +deskanalytics.js*. +# /DemdexBehavioralTracking. (easyprivacy.txt: 760) +/(.*/)?DemdexBehavioralTracking\. +DemdexBehavioralTracking.*. +# /demdex/* (easyprivacy.txt: 759) +/(.*/)?demdex/.* +# /demdex.js (easyprivacy.txt: 758) +/(.*/)?demdex\.js +demdex.js*. +# /demandbase_ (easyprivacy.txt: 757) +/(.*/)?demandbase_ +# /demandbase. (easyprivacy.txt: 756) +/(.*/)?demandbase\. +demandbase.*. +# /delivery/lg. (easyprivacy.txt: 755) +/(.*/)?delivery/lg\. +# /DecideDNATrackingCode- (easyprivacy.txt: 754) +/(.*/)?DecideDNATrackingCode- +DecideDNATrackingCode-*. +# /dcstorm/track. (easyprivacy.txt: 753) +/(.*/)?dcstorm/track\. +# /dcstorm.js (easyprivacy.txt: 752) +/(.*/)?dcstorm\.js +dcstorm.js*. +# /dcstorm-track. (easyprivacy.txt: 751) +/(.*/)?dcstorm-track\. +dcstorm-track.*. +# /dcs_tag. (easyprivacy.txt: 750) +/(.*/)?dcs_tag\. +# /dcs.gif? (easyprivacy.txt: 749) +/(.*/)?dcs\.gif\? +# /dc-storm/track. (easyprivacy.txt: 748) +/(.*/)?dc-storm/track\. +# /dc-storm/aff. (easyprivacy.txt: 747) +/(.*/)?dc-storm/aff\. +# /dc-storm.js (easyprivacy.txt: 746) +/(.*/)?dc-storm\.js +dc-storm.js*. +# /dc-storm-track. (easyprivacy.txt: 745) +/(.*/)?dc-storm-track\. +dc-storm-track.*. +# /dart_wrapper.html? (easyprivacy.txt: 744) +/(.*/)?dart_wrapper\.html\? +# /cyberestat/* (easyprivacy.txt: 743) +/(.*/)?cyberestat/.* +# /cxense/cx.js (easyprivacy.txt: 742) +/(.*/)?cxense/cx\.js +# /cXense-Analytics- (easyprivacy.txt: 741) +/(.*/)?cXense-Analytics- +cXense-Analytics-*. +# /cwTRACK.js (easyprivacy.txt: 740) +/(.*/)?cwTRACK\.js +cwTRACK.js*. +# /CustomTrackingScript. (easyprivacy.txt: 739) +/(.*/)?CustomTrackingScript\. +CustomTrackingScript.*. +# /custom-tracking. (easyprivacy.txt: 738) +/(.*/)?custom-tracking\. +custom-tracking.*. +# /ctr_tracking. (easyprivacy.txt: 737) +/(.*/)?ctr_tracking\. +# /csi?v=3&s= (easyprivacy.txt: 736) +/(.*/)?csi\?v=3&s= +# /csi?v=2&s= (easyprivacy.txt: 735) +/(.*/)?csi\?v=2&s= +# /csi?v=*&action= (easyprivacy.txt: 734) +/(.*/)?csi\?v=.*&action= +# /csct.js (easyprivacy.txt: 733) +/(.*/)?csct\.js +csct.js*. +# /CSAdobeTracking. (easyprivacy.txt: 732) +/(.*/)?CSAdobeTracking\. +CSAdobeTracking.*. +# /cs_api/log (easyprivacy.txt: 731) +/(.*/)?cs_api/log +# /cross_pixels. (easyprivacy.txt: 730) +/(.*/)?cross_pixels\. +# /crmTracking. (easyprivacy.txt: 729) +/(.*/)?crmTracking\. +crmTracking.*. +# /criteoRTA. (easyprivacy.txt: 728) +/(.*/)?criteoRTA\. +criteoRTA.*. +# /criteo_ (easyprivacy.txt: 727) +/(.*/)?criteo_ +# /Criteo/* (easyprivacy.txt: 726) +/(.*/)?Criteo/.* +# /criteo. (easyprivacy.txt: 725) +/(.*/)?criteo\. +criteo.*. +# /CreateVIDCookie.aspx? (easyprivacy.txt: 724) +/(.*/)?CreateVIDCookie\.aspx\? +# /crai_tracker. (easyprivacy.txt: 723) +/(.*/)?crai_tracker\. +# /cqcounter. (easyprivacy.txt: 722) +/(.*/)?cqcounter\. +cqcounter.*. +# /countus.php (easyprivacy.txt: 721) +/(.*/)?countus\.php +countus.php*. +# /countstat.php? (easyprivacy.txt: 720) +/(.*/)?countstat\.php\? +# /countpixel. (easyprivacy.txt: 719) +/(.*/)?countpixel\. +countpixel.*. +# /countinj.cgi? (easyprivacy.txt: 718) +/(.*/)?countinj\.cgi\? +# /countHits. (easyprivacy.txt: 717) +/(.*/)?countHits\. +countHits.*. +# /counterFooterFlash. (easyprivacy.txt: 716) +/(.*/)?counterFooterFlash\. +counterFooterFlash.*. +# /countercollector/* (easyprivacy.txt: 715) +/(.*/)?countercollector/.* +# /countercgi. (easyprivacy.txt: 714) +/(.*/)?countercgi\. +countercgi.*. +# /counter_image.gif? (easyprivacy.txt: 713) +/(.*/)?counter_image\.gif\? +# /counter_3.php (easyprivacy.txt: 712) +/(.*/)?counter_3\.php +# /counter_2.php? (easyprivacy.txt: 711) +/(.*/)?counter_2\.php\? +# /counter_1.php (easyprivacy.txt: 710) +/(.*/)?counter_1\.php +# /counter?id= (easyprivacy.txt: 709) +/(.*/)?counter\?id= +# /counter/r.pl (easyprivacy.txt: 708) +/(.*/)?counter/r\.pl +# /counter/process.asp? (easyprivacy.txt: 707) +/(.*/)?counter/process\.asp\? +# /counter/ct.php? (easyprivacy.txt: 706) +/(.*/)?counter/ct\.php\? +# /counter/article? (easyprivacy.txt: 705) +/(.*/)?counter/article\? +# /Counter.woa/* (easyprivacy.txt: 704) +/(.*/)?Counter\.woa/.* +Counter.woa/.* +# /counter.visit? (easyprivacy.txt: 703) +/(.*/)?counter\.visit\? +# /counter.pl? (easyprivacy.txt: 702) +/(.*/)?counter\.pl\? +# /counter.php?chcounter_mode= (easyprivacy.txt: 701) +/(.*/)?counter\.php\?chcounter_mode= +# /counter.lt? (easyprivacy.txt: 700) +/(.*/)?counter\.lt\? +# /counter.do? (easyprivacy.txt: 699) +/(.*/)?counter\.do\? +# /counter.cgi? (easyprivacy.txt: 698) +/(.*/)?counter\.cgi\? +# /counter.cgi/* (easyprivacy.txt: 697) +/(.*/)?counter\.cgi/.* +counter.cgi/.* +# /counter.aspx? (easyprivacy.txt: 696) +/(.*/)?counter\.aspx\? +# /counter.asp? (easyprivacy.txt: 695) +/(.*/)?counter\.asp\? +# /Counter.ashx? (easyprivacy.txt: 694) +/(.*/)?Counter\.ashx\? +# /CountContent? (easyprivacy.txt: 693) +/(.*/)?CountContent\? +# /countbk. (easyprivacy.txt: 692) +/(.*/)?countbk\. +countbk.*. +# /count_stats/* (easyprivacy.txt: 691) +/(.*/)?count_stats/.* +# /count_js. (easyprivacy.txt: 690) +/(.*/)?count_js\. +# /count_DB/* (easyprivacy.txt: 689) +/(.*/)?count_DB/.* +# /count?type= (easyprivacy.txt: 688) +/(.*/)?count\?type= +# /count?pid= (easyprivacy.txt: 687) +/(.*/)?count\?pid= +# /count/count.cgi? (easyprivacy.txt: 686) +/(.*/)?count/count\.cgi\? +# /count/?ad= (easyprivacy.txt: 685) +/(.*/)?count/\?ad= +# /count.fgi? (easyprivacy.txt: 684) +/(.*/)?count\.fgi\? +# /count.fcgi? (easyprivacy.txt: 683) +/(.*/)?count\.fcgi\? +# /count.fcg? (easyprivacy.txt: 682) +/(.*/)?count\.fcg\? +# /count.exe? (easyprivacy.txt: 681) +/(.*/)?count\.exe\? +# /count.cfm? (easyprivacy.txt: 680) +/(.*/)?count\.cfm\? +# /CorporatePageTracking. (easyprivacy.txt: 679) +/(.*/)?CorporatePageTracking\. +CorporatePageTracking.*. +# /coretracking.php? (easyprivacy.txt: 678) +/(.*/)?coretracking\.php\? +# /coradiant.js (easyprivacy.txt: 677) +/(.*/)?coradiant\.js +coradiant.js*. +# /CookieSetterAS3. (easyprivacy.txt: 676) +/(.*/)?CookieSetterAS3\. +CookieSetterAS3.*. +# /cookie_ga. (easyprivacy.txt: 675) +/(.*/)?cookie_ga\. +# /cookie?affiliate (easyprivacy.txt: 674) +/(.*/)?cookie\?affiliate +# /cookie/visitor/* (easyprivacy.txt: 673) +/(.*/)?cookie/visitor/.* +# /cookie.crumb (easyprivacy.txt: 672) +/(.*/)?cookie\.crumb +cookie.crumb*. +# /convertro.js (easyprivacy.txt: 671) +/(.*/)?convertro\.js +convertro.js*. +# /control/tracking.php? (easyprivacy.txt: 670) +/(.*/)?control/tracking\.php\? +# /ContentTrackingCall. (easyprivacy.txt: 669) +/(.*/)?ContentTrackingCall\. +ContentTrackingCall.*. +# /containertag? (easyprivacy.txt: 668) +/(.*/)?containertag\? +# /connect_counter.js (easyprivacy.txt: 667) +/(.*/)?connect_counter\.js +# /condenet-metric. (easyprivacy.txt: 666) +/(.*/)?condenet-metric\. +condenet-metric.*. +# /ComScoreSWF. (easyprivacy.txt: 665) +/(.*/)?ComScoreSWF\. +ComScoreSWF.*. +# /ComScorePlugin. (easyprivacy.txt: 664) +/(.*/)?ComScorePlugin\. +ComScorePlugin.*. +# /comscorebeacon. (easyprivacy.txt: 663) +/(.*/)?comscorebeacon\. +comscorebeacon.*. +# /comscore_stats. (easyprivacy.txt: 662) +/(.*/)?comscore_stats\. +# /comscore_beacon. (easyprivacy.txt: 661) +/(.*/)?comscore_beacon\. +# /comscore. (easyprivacy.txt: 660) +/(.*/)?comscore\. +comscore.*. +# /competeTracking_test.html? (easyprivacy.txt: 659) +/(.*/)?competeTracking_test\.html\? +# /com_joomlawatch/* (easyprivacy.txt: 658) +/(.*/)?com_joomlawatch/.* +# /com_joomla-visites/* (easyprivacy.txt: 657) +/(.*/)?com_joomla-visites/.* +# /collector?report= (easyprivacy.txt: 656) +/(.*/)?collector\?report= +# /collector/hit? (easyprivacy.txt: 655) +/(.*/)?collector/hit\? +# /collector/*/*?*&euidl=*&url= (easyprivacy.txt: 654) +/(.*/)?collector/.*/.*\?.*&euidl=.*&url= +# /collect?callback= (easyprivacy.txt: 653) +/(.*/)?collect\?callback= +# /cognitive_match/* (easyprivacy.txt: 652) +/(.*/)?cognitive_match/.* +# /cnwk.1d/*/apex.js (easyprivacy.txt: 651) +/(.*/)?cnwk\.1d/.*/apex\.js +cnwk.1d/.*/apex\.js +# /cnvtr.js (easyprivacy.txt: 650) +/(.*/)?cnvtr\.js +cnvtr.js*. +# /CntRpt.aspx? (easyprivacy.txt: 649) +/(.*/)?CntRpt\.aspx\? +# /cntpixel. (easyprivacy.txt: 648) +/(.*/)?cntpixel\. +cntpixel.*. +# /cnt/start.php? (easyprivacy.txt: 647) +/(.*/)?cnt/start\.php\? +# /cnt/cnt.php? (easyprivacy.txt: 646) +/(.*/)?cnt/cnt\.php\? +# /cnt.cgi? (easyprivacy.txt: 645) +/(.*/)?cnt\.cgi\? +# /cnt.aspx? (easyprivacy.txt: 644) +/(.*/)?cnt\.aspx\? +# /cnt-combined.php? (easyprivacy.txt: 643) +/(.*/)?cnt-combined\.php\? +# /cnstats/* (easyprivacy.txt: 642) +/(.*/)?cnstats/.* +# /cnstats. (easyprivacy.txt: 641) +/(.*/)?cnstats\. +cnstats.*. +# /cn-fe-stats/* (easyprivacy.txt: 640) +/(.*/)?cn-fe-stats/.* +# /cmslog.dll? (easyprivacy.txt: 639) +/(.*/)?cmslog\.dll\? +# /cms/stats/* (easyprivacy.txt: 638) +/(.*/)?cms/stats/.* +# /cms.gif? (easyprivacy.txt: 637) +/(.*/)?cms\.gif\? +# /cmarketing.countus.js (easyprivacy.txt: 636) +/(.*/)?cmarketing\.countus\.js +cmarketing.countus.js*. +# /cm?tid= (easyprivacy.txt: 635) +/(.*/)?cm\?tid= +# /cm?ci=*&tid= (easyprivacy.txt: 634) +/(.*/)?cm\?ci=.*&tid= +# /cls_rpt.gif? (easyprivacy.txt: 633) +/(.*/)?cls_rpt\.gif\? +# /clientstat? (easyprivacy.txt: 632) +/(.*/)?clientstat\? +# /clientlibs/ga.js (easyprivacy.txt: 631) +/(.*/)?clientlibs/ga\.js +# /client_pathlog.asp? (easyprivacy.txt: 630) +/(.*/)?client_pathlog\.asp\? +# /client-event-logger. (easyprivacy.txt: 629) +/(.*/)?client-event-logger\. +client-event-logger.*. +# /clicky.js (easyprivacy.txt: 628) +/(.*/)?clicky\.js +clicky.js*. +# /clicktrends/* (easyprivacy.txt: 627) +/(.*/)?clicktrends/.* +# /ClickTracksCookies. (easyprivacy.txt: 626) +/(.*/)?ClickTracksCookies\. +ClickTracksCookies.*. +# /ClickTracks_ (easyprivacy.txt: 625) +/(.*/)?ClickTracks_ +# /clicktracking/* (easyprivacy.txt: 624) +/(.*/)?clicktracking/.* +# /clicktracking. (easyprivacy.txt: 623) +/(.*/)?clicktracking\. +clicktracking.*. +# /clicktracking-global. (easyprivacy.txt: 622) +/(.*/)?clicktracking-global\. +clicktracking-global.*. +# /clicktracker. (easyprivacy.txt: 621) +/(.*/)?clicktracker\. +clicktracker.*. +# /clicktrack? (easyprivacy.txt: 620) +/(.*/)?clicktrack\? +# /ClickTrack. (easyprivacy.txt: 619) +/(.*/)?ClickTrack\. +ClickTrack.*. +# /clicktrack-*.gif? (easyprivacy.txt: 618) +/(.*/)?clicktrack-.*\.gif\? +clicktrack-*./.*\.gif\? +# /ClickTaleFilter. (easyprivacy.txt: 617) +/(.*/)?ClickTaleFilter\. +ClickTaleFilter.*. +# /clicktale_ (easyprivacy.txt: 616) +/(.*/)?clicktale_ +# /clicktale/* (easyprivacy.txt: 615) +/(.*/)?clicktale/.* +# /clicktale. (easyprivacy.txt: 614) +/(.*/)?clicktale\. +clicktale.*. +# /clicktale- (easyprivacy.txt: 613) +/(.*/)?clicktale- +clicktale-*. +# /ClickTail. (easyprivacy.txt: 612) +/(.*/)?ClickTail\. +ClickTail.*. +# /clickstream.js (easyprivacy.txt: 611) +/(.*/)?clickstream\.js +clickstream.js*. +# /clickstream.aspx? (easyprivacy.txt: 610) +/(.*/)?clickstream\.aspx\? +# /clickstats. (easyprivacy.txt: 609) +/(.*/)?clickstats\. +clickstats.*. +# /clickscript. (easyprivacy.txt: 608) +/(.*/)?clickscript\. +clickscript.*. +# /clickrecord.php? (easyprivacy.txt: 607) +/(.*/)?clickrecord\.php\? +# /clickpathmedia_ (easyprivacy.txt: 606) +/(.*/)?clickpathmedia_ +# /clickpathmedia. (easyprivacy.txt: 605) +/(.*/)?clickpathmedia\. +clickpathmedia.*. +# /clickmap.js (easyprivacy.txt: 604) +/(.*/)?clickmap\.js +clickmap.js*. +# /clicklognew. (easyprivacy.txt: 603) +/(.*/)?clicklognew\. +clicklognew.*. +# /clickLogger? (easyprivacy.txt: 602) +/(.*/)?clickLogger\? +# /clicklog_ (easyprivacy.txt: 601) +/(.*/)?clicklog_ +# /clicklog. (easyprivacy.txt: 600) +/(.*/)?clicklog\. +clicklog.*. +# /clickheat^ (easyprivacy.txt: 599) +/(.*/)?clickheat[^\w%.-] +# /clickheat.js (easyprivacy.txt: 598) +/(.*/)?clickheat\.js +clickheat.js*. +# /clickcount_ (easyprivacy.txt: 597) +/(.*/)?clickcount_ +# /clickcount.cfm? (easyprivacy.txt: 596) +/(.*/)?clickcount\.cfm\? +# /clickAnalyse. (easyprivacy.txt: 595) +/(.*/)?clickAnalyse\. +clickAnalyse.*. +# /clickability? (easyprivacy.txt: 594) +/(.*/)?clickability\? +# /clickability2/* (easyprivacy.txt: 593) +/(.*/)?clickability2/.* +# /clickability/* (easyprivacy.txt: 592) +/(.*/)?clickability/.* +# /clickability. (easyprivacy.txt: 591) +/(.*/)?clickability\. +clickability.*. +# /clickability- (easyprivacy.txt: 590) +/(.*/)?clickability- +clickability-*. +# /click_tracking (easyprivacy.txt: 589) +/(.*/)?click_tracking +# /click_track.js (easyprivacy.txt: 588) +/(.*/)?click_track\.js +# /click_stats. (easyprivacy.txt: 587) +/(.*/)?click_stats\. +# /click_statistics/* (easyprivacy.txt: 586) +/(.*/)?click_statistics/.* +# /click_stat/* (easyprivacy.txt: 585) +/(.*/)?click_stat/.* +# /click_metrics-jquery.js (easyprivacy.txt: 584) +/(.*/)?click_metrics-jquery\.js +# /click-tracker (easyprivacy.txt: 583) +/(.*/)?click-tracker +click-tracker*. +# /click-stat.js (easyprivacy.txt: 582) +/(.*/)?click-stat\.js +click-stat.js*. +# /click-logger. (easyprivacy.txt: 581) +/(.*/)?click-logger\. +click-logger.*. +# /clear/c.gif? (easyprivacy.txt: 580) +/(.*/)?clear/c\.gif\? +# /clear.gif? (easyprivacy.txt: 579) +/(.*/)?clear\.gif\? +# /class.tracking.js (easyprivacy.txt: 578) +/(.*/)?class\.tracking\.js +class.tracking.js*. +# /clacking.js (easyprivacy.txt: 577) +/(.*/)?clacking\.js +clacking.js*. +# /cklink.gif? (easyprivacy.txt: 576) +/(.*/)?cklink\.gif\? +# /ckimg_1x1.gif? (easyprivacy.txt: 575) +/(.*/)?ckimg_1x1\.gif\? +# /cjtracker2. (easyprivacy.txt: 574) +/(.*/)?cjtracker2\. +cjtracker2.*. +# /citycounter. (easyprivacy.txt: 573) +/(.*/)?citycounter\. +citycounter.*. +# /cim_tns/spring.js (easyprivacy.txt: 572) +/(.*/)?cim_tns/spring\.js +# /checkstat.asp (easyprivacy.txt: 571) +/(.*/)?checkstat\.asp +checkstat.asp*. +# /checkForAdvertorials. (easyprivacy.txt: 570) +/(.*/)?checkForAdvertorials\. +checkForAdvertorials.*. +# /check.php?referrer= (easyprivacy.txt: 569) +/(.*/)?check\.php\?referrer= +# /chcounter/* (easyprivacy.txt: 568) +/(.*/)?chcounter/.* +# /chartbeatftr. (easyprivacy.txt: 567) +/(.*/)?chartbeatftr\. +chartbeatftr.*. +# /chartbeatCode. (easyprivacy.txt: 566) +/(.*/)?chartbeatCode\. +chartbeatCode.*. +# /chartbeat_ (easyprivacy.txt: 565) +/(.*/)?chartbeat_ +# /chartbeat/* (easyprivacy.txt: 564) +/(.*/)?chartbeat/.* +# /chartbeat.min.js (easyprivacy.txt: 563) +/(.*/)?chartbeat\.min\.js +chartbeat.min.js*. +# /chartbeat.js (easyprivacy.txt: 562) +/(.*/)?chartbeat\.js +chartbeat.js*. +# /chartbeat.jhtml (easyprivacy.txt: 561) +/(.*/)?chartbeat\.jhtml +chartbeat.jhtml*. +# /chartbeat- (easyprivacy.txt: 560) +/(.*/)?chartbeat- +chartbeat-*. +# /ChannelTrackingConverter. (easyprivacy.txt: 559) +/(.*/)?ChannelTrackingConverter\. +ChannelTrackingConverter.*. +# /ChannelTracking. (easyprivacy.txt: 558) +/(.*/)?ChannelTracking\. +ChannelTracking.*. +# /channelintelligence/* (easyprivacy.txt: 557) +/(.*/)?channelintelligence/.* +# /chanalytics. (easyprivacy.txt: 556) +/(.*/)?chanalytics\. +chanalytics.*. +# /chan_slidesurvey.js (easyprivacy.txt: 555) +/(.*/)?chan_slidesurvey\.js +# /cgi/trk.js (easyprivacy.txt: 554) +/(.*/)?cgi/trk\.js +# /cgi/stats.pl? (easyprivacy.txt: 553) +/(.*/)?cgi/stats\.pl\? +# /cgi/count? (easyprivacy.txt: 552) +/(.*/)?cgi/count\? +# /cgi/bin/trk.js (easyprivacy.txt: 551) +/(.*/)?cgi/bin/trk\.js +# /cgi-sys/count.cgi?df= (easyprivacy.txt: 550) +/(.*/)?cgi-sys/count\.cgi\?df= +# /cgi-bin/vdz/* (easyprivacy.txt: 549) +/(.*/)?cgi-bin/vdz/.* +# /cgi-bin/useronline/* (easyprivacy.txt: 548) +/(.*/)?cgi-bin/useronline/.* +# /cgi-bin/user_online/uos.cgi? (easyprivacy.txt: 547) +/(.*/)?cgi-bin/user_online/uos\.cgi\? +# /cgi-bin/te/in.cgi? (easyprivacy.txt: 546) +/(.*/)?cgi-bin/te/in\.cgi\? +# /cgi-bin/refsd? (easyprivacy.txt: 545) +/(.*/)?cgi-bin/refsd\? +# /cgi-bin/online/uos.cgi? (easyprivacy.txt: 544) +/(.*/)?cgi-bin/online/uos\.cgi\? +# /cgi-bin/lcpnp/* (easyprivacy.txt: 543) +/(.*/)?cgi-bin/lcpnp/.* +# /cgi-bin/ivw/* (easyprivacy.txt: 542) +/(.*/)?cgi-bin/ivw/.* +# /cgi-bin/ivw-ssl/* (easyprivacy.txt: 541) +/(.*/)?cgi-bin/ivw-ssl/.* +# /cgi-bin/hits/* (easyprivacy.txt: 540) +/(.*/)?cgi-bin/hits/.* +# /cgi-bin/ctasp-server.cgi? (easyprivacy.txt: 539) +/(.*/)?cgi-bin/ctasp-server\.cgi\? +# /cgi-bin/CP/* (easyprivacy.txt: 538) +/(.*/)?cgi-bin/CP/.* +# /cgi-bin/count1.cgi? (easyprivacy.txt: 537) +/(.*/)?cgi-bin/count1\.cgi\? +# /cgi-bin/count/* (easyprivacy.txt: 536) +/(.*/)?cgi-bin/count/.* +# /cgi-bin/count.pl? (easyprivacy.txt: 535) +/(.*/)?cgi-bin/count\.pl\? +# /cgi-bin/count.cgi?*sh= (easyprivacy.txt: 534) +/(.*/)?cgi-bin/count\.cgi\?.*sh= +# /cgi-bin/count.cgi?*rgb= (easyprivacy.txt: 533) +/(.*/)?cgi-bin/count\.cgi\?.*rgb= +# /cgi-bin/count.cgi?*ft= (easyprivacy.txt: 532) +/(.*/)?cgi-bin/count\.cgi\?.*ft= +# /cgi-bin/count.cgi?*df=$~image (easyprivacy.txt: 531) +/(.*/)?cgi-bin/count\.cgi\?.*df= +# /cgi-bin/cnt/* (easyprivacy.txt: 530) +/(.*/)?cgi-bin/cnt/.* +# /cfformprotect/* (easyprivacy.txt: 529) +/(.*/)?cfformprotect/.* +# /certona_$script (easyprivacy.txt: 528) +/(.*/)?certona_ +# /Certona/* (easyprivacy.txt: 527) +/(.*/)?Certona/.* +# /certona. (easyprivacy.txt: 526) +/(.*/)?certona\. +certona.*. +# /certifica_2010.js (easyprivacy.txt: 525) +/(.*/)?certifica_2010\.js +# /certifica.js (easyprivacy.txt: 524) +/(.*/)?certifica\.js +certifica.js*. +# /certifica-js14.js (easyprivacy.txt: 523) +/(.*/)?certifica-js14\.js +certifica-js14.js*. +# /cedexisus. (easyprivacy.txt: 522) +/(.*/)?cedexisus\. +cedexisus.*. +# /cedexis/* (easyprivacy.txt: 521) +/(.*/)?cedexis/.* +# /cedexis.js (easyprivacy.txt: 520) +/(.*/)?cedexis\.js +cedexis.js*. +# /cedexis- (easyprivacy.txt: 519) +/(.*/)?cedexis- +cedexis-*. +# /cdx.gif? (easyprivacy.txt: 518) +/(.*/)?cdx\.gif\? +# /cds-webanalytics. (easyprivacy.txt: 517) +/(.*/)?cds-webanalytics\. +cds-webanalytics.*. +# /cdn5.js? (easyprivacy.txt: 516) +/(.*/)?cdn5\.js\? +# /cdn-cgi/ping?$image (easyprivacy.txt: 515) +/(.*/)?cdn-cgi/ping\? +# /cclickTracking. (easyprivacy.txt: 514) +/(.*/)?cclickTracking\. +cclickTracking.*. +# /cbanalytics. (easyprivacy.txt: 513) +/(.*/)?cbanalytics\. +cbanalytics.*. +# /campaign_trax. (easyprivacy.txt: 512) +/(.*/)?campaign_trax\. +# /campaign_tracker. (easyprivacy.txt: 511) +/(.*/)?campaign_tracker\. +# /callbacks/stats? (easyprivacy.txt: 510) +/(.*/)?callbacks/stats\? +# /c_track.php? (easyprivacy.txt: 509) +/(.*/)?c_track\.php\? +# /c?siteID=$image,script (easyprivacy.txt: 508) +/(.*/)?c\?siteID= +# /C4ATracker. (easyprivacy.txt: 507) +/(.*/)?C4ATracker\. +C4ATracker.*. +# /c2_count.js (easyprivacy.txt: 506) +/(.*/)?c2_count\.js +# /c.gif?daid (easyprivacy.txt: 505) +/(.*/)?c\.gif\?daid +# /byside_webcare. (easyprivacy.txt: 504) +/(.*/)?byside_webcare\. +# /buzz_stats. (easyprivacy.txt: 503) +/(.*/)?buzz_stats\. +# /bundles/cm.js| (easyprivacy.txt: 502) +/(.*/)?bundles/cm\.js$ +# /BuiltRegister.aspx?upt= (easyprivacy.txt: 501) +/(.*/)?BuiltRegister\.aspx\?upt= +# /bugsnag- (easyprivacy.txt: 500) +/(.*/)?bugsnag- +bugsnag-*. +# /bugcounter.php? (easyprivacy.txt: 499) +/(.*/)?bugcounter\.php\? +# /buffer.pgif?r= (easyprivacy.txt: 498) +/(.*/)?buffer\.pgif\?r= +# /btn_tracking_pixel. (easyprivacy.txt: 497) +/(.*/)?btn_tracking_pixel\. +# /bsuite/worker.php? (easyprivacy.txt: 496) +/(.*/)?bsuite/worker\.php\? +# /bstats. (easyprivacy.txt: 495) +/(.*/)?bstats\. +bstats.*. +# /bstat.js (easyprivacy.txt: 494) +/(.*/)?bstat\.js +bstat.js*. +# /bsc_trak. (easyprivacy.txt: 493) +/(.*/)?bsc_trak\. +# /britetrack/* (easyprivacy.txt: 492) +/(.*/)?britetrack/.* +# /brightedge.js (easyprivacy.txt: 491) +/(.*/)?brightedge\.js +brightedge.js*. +# /brightcoveGoogleAnalytics. (easyprivacy.txt: 490) +/(.*/)?brightcoveGoogleAnalytics\. +brightcoveGoogleAnalytics.*. +# /brightcove/tracking/* (easyprivacy.txt: 489) +/(.*/)?brightcove/tracking/.* +# /brandAnalytics.js (easyprivacy.txt: 488) +/(.*/)?brandAnalytics\.js +brandAnalytics.js*. +# /br_imps/add_item? (easyprivacy.txt: 487) +/(.*/)?br_imps/add_item\? +# /br-trk. (easyprivacy.txt: 486) +/(.*/)?br-trk\. +br-trk.*. +# /br-trk- (easyprivacy.txt: 485) +/(.*/)?br-trk- +br-trk-*. +# /bower_components/fp/fp.js (easyprivacy.txt: 484) +/(.*/)?bower_components/fp/fp\.js +# /botd.gif? (easyprivacy.txt: 483) +/(.*/)?botd\.gif\? +# /boost_stats. (easyprivacy.txt: 482) +/(.*/)?boost_stats\. +# /boomerang.js (easyprivacy.txt: 481) +/(.*/)?boomerang\.js +boomerang.js*. +# /boomerang-minified- (easyprivacy.txt: 480) +/(.*/)?boomerang-minified- +boomerang-minified-*. +# /bn/tracker/* (easyprivacy.txt: 479) +/(.*/)?bn/tracker/.* +# /bm-bam-trk. (easyprivacy.txt: 478) +/(.*/)?bm-bam-trk\. +bm-bam-trk.*. +# /bm-analytics/* (easyprivacy.txt: 477) +/(.*/)?bm-analytics/.* +# /bm-analytics-trk.js (easyprivacy.txt: 476) +/(.*/)?bm-analytics-trk\.js +bm-analytics-trk.js*. +# /bluetracker/* (easyprivacy.txt: 475) +/(.*/)?bluetracker/.* +# /BlueKaiPixel/* (easyprivacy.txt: 474) +/(.*/)?BlueKaiPixel/.* +# /bluekaicookieinfo. (easyprivacy.txt: 473) +/(.*/)?bluekaicookieinfo\. +bluekaicookieinfo.*. +# /blueKaiAnalytics. (easyprivacy.txt: 472) +/(.*/)?blueKaiAnalytics\. +blueKaiAnalytics.*. +# /bluekai/* (easyprivacy.txt: 471) +/(.*/)?bluekai/.* +# /bluekai. (easyprivacy.txt: 470) +/(.*/)?bluekai\. +bluekai.*. +# /blogtotal_stats_ (easyprivacy.txt: 469) +/(.*/)?blogtotal_stats_ +# /blogsectiontracking. (easyprivacy.txt: 468) +/(.*/)?blogsectiontracking\. +blogsectiontracking.*. +# /blog/traffic/? (easyprivacy.txt: 467) +/(.*/)?blog/traffic/\? +# /BKVTrack.js (easyprivacy.txt: 466) +/(.*/)?BKVTrack\.js +BKVTrack.js*. +# /bizo.js (easyprivacy.txt: 465) +/(.*/)?bizo\.js +bizo.js*. +# /bitrix/spread.php? (easyprivacy.txt: 464) +/(.*/)?bitrix/spread\.php\? +# /bin/stats? (easyprivacy.txt: 463) +/(.*/)?bin/stats\? +# /bin/reff.php (easyprivacy.txt: 462) +/(.*/)?bin/reff\.php +# /bidiq. (easyprivacy.txt: 461) +/(.*/)?bidiq\. +bidiq.*. +# /bicomscore_ (easyprivacy.txt: 460) +/(.*/)?bicomscore_ +# /bicomscore. (easyprivacy.txt: 459) +/(.*/)?bicomscore\. +bicomscore.*. +# /bi.tracking/* (easyprivacy.txt: 458) +/(.*/)?bi\.tracking/.* +bi.tracking/.* +# /bh_counter.js (easyprivacy.txt: 457) +/(.*/)?bh_counter\.js +# /betamax_tracker.js (easyprivacy.txt: 456) +/(.*/)?betamax_tracker\.js +# /betamax_tracker.gif? (easyprivacy.txt: 455) +/(.*/)?betamax_tracker\.gif\? +# /BehaviourCaptureHandler. (easyprivacy.txt: 454) +/(.*/)?BehaviourCaptureHandler\. +BehaviourCaptureHandler.*. +# /beaconimg.php? (easyprivacy.txt: 453) +/(.*/)?beaconimg\.php\? +# /beacon_async. (easyprivacy.txt: 452) +/(.*/)?beacon_async\. +# /beacon? (easyprivacy.txt: 451) +/(.*/)?beacon\? +# /beacon/vtn_loader.gif? (easyprivacy.txt: 450) +/(.*/)?beacon/vtn_loader\.gif\? +# /beacon/b.ashx? (easyprivacy.txt: 449) +/(.*/)?beacon/b\.ashx\? +# /beacon.js (easyprivacy.txt: 448) +/(.*/)?beacon\.js +beacon.js*. +# /beacon.gif? (easyprivacy.txt: 447) +/(.*/)?beacon\.gif\? +# /beacon.cgi? (easyprivacy.txt: 446) +/(.*/)?beacon\.cgi\? +# /bcn?id= (easyprivacy.txt: 445) +/(.*/)?bcn\?id= +# /baynoteobserver/* (easyprivacy.txt: 444) +/(.*/)?baynoteobserver/.* +# /baynote_ (easyprivacy.txt: 443) +/(.*/)?baynote_ +# /baynote80. (easyprivacy.txt: 442) +/(.*/)?baynote80\. +baynote80.*. +# /baynote3. (easyprivacy.txt: 441) +/(.*/)?baynote3\. +baynote3.*. +# /baynote/* (easyprivacy.txt: 440) +/(.*/)?baynote/.* +# /baynote. (easyprivacy.txt: 439) +/(.*/)?baynote\. +baynote.*. +# /baynote-$script (easyprivacy.txt: 438) +/(.*/)?baynote- +baynote-*. +# /batch.gif? (easyprivacy.txt: 437) +/(.*/)?batch\.gif\? +# /basesdc.js (easyprivacy.txt: 436) +/(.*/)?basesdc\.js +basesdc.js*. +# /banners-stat. (easyprivacy.txt: 435) +/(.*/)?banners-stat\. +banners-stat.*. +# /banner-tracker. (easyprivacy.txt: 434) +/(.*/)?banner-tracker\. +banner-tracker.*. +# /backlink2. (easyprivacy.txt: 433) +/(.*/)?backlink2\. +backlink2.*. +# /backlink/* (easyprivacy.txt: 432) +/(.*/)?backlink/.* +# /backlink.php? (easyprivacy.txt: 431) +/(.*/)?backlink\.php\? +# /b2bsdc.js (easyprivacy.txt: 430) +/(.*/)?b2bsdc\.js +b2bsdc.js*. +# /b/ss/wdgdolad, (easyprivacy.txt: 429) +/(.*/)?b/ss/wdgdolad, +# /b/ss/ueglobaldev/* (easyprivacy.txt: 428) +/(.*/)?b/ss/ueglobaldev/.* +# /b/ss/*?pagename= (easyprivacy.txt: 427) +/(.*/)?b/ss/.*\?pagename= +# /b/ss/*?gn=mobile: (easyprivacy.txt: 426) +/(.*/)?b/ss/.*\?gn=mobile: +# /b/ss/*?aqb=1&pccr= (easyprivacy.txt: 425) +/(.*/)?b/ss/.*\?aqb=1&pccr= +# /b/ss/*=referrers& (easyprivacy.txt: 424) +/(.*/)?b/ss/.*=referrers& +# /b/ss/*=event36& (easyprivacy.txt: 423) +/(.*/)?b/ss/.*=event36& +# /b/ss/*/h.17--wap?c20= (easyprivacy.txt: 422) +/(.*/)?b/ss/.*/h\.17--wap\?c20= +# /b/ss/*&pagename= (easyprivacy.txt: 421) +/(.*/)?b/ss/.*&pagename= +# /b/ss/*&ndh= (easyprivacy.txt: 420) +/(.*/)?b/ss/.*&ndh= +# /b/ss/*&events= (easyprivacy.txt: 419) +/(.*/)?b/ss/.*&events= +# /b/ss/*&ce=utf-8& (easyprivacy.txt: 418) +/(.*/)?b/ss/.*&ce=utf-8& +# /b/ss/*&ce=iso-8859-1& (easyprivacy.txt: 417) +/(.*/)?b/ss/.*&ce=iso-8859-1& +# /b/ss/*&aqe= (easyprivacy.txt: 416) +/(.*/)?b/ss/.*&aqe= +# /aztrack. (easyprivacy.txt: 415) +/(.*/)?aztrack\. +aztrack.*. +# /awstats_misc_tracker (easyprivacy.txt: 414) +/(.*/)?awstats_misc_tracker +# /awstats.js (easyprivacy.txt: 413) +/(.*/)?awstats\.js +awstats.js*. +# /awesc.php? (easyprivacy.txt: 412) +/(.*/)?awesc\.php\? +# /awAnalytics. (easyprivacy.txt: 411) +/(.*/)?awAnalytics\. +awAnalytics.*. +# /aw-tracker. (easyprivacy.txt: 410) +/(.*/)?aw-tracker\. +aw-tracker.*. +# /avtstats. (easyprivacy.txt: 409) +/(.*/)?avtstats\. +avtstats.*. +# /avmws_*.js (easyprivacy.txt: 408) +/(.*/)?avmws_.*\.js +# /avantlink/*$third-party (easyprivacy.txt: 407) +/(.*/)?avantlink/.* +# /avant_sfpc_ (easyprivacy.txt: 406) +/(.*/)?avant_sfpc_ +# /AutoTracker.js (easyprivacy.txt: 405) +/(.*/)?AutoTracker\.js +AutoTracker.js*. +# /autotag. (easyprivacy.txt: 404) +/(.*/)?autotag\. +autotag.*. +# /audsci.js (easyprivacy.txt: 403) +/(.*/)?audsci\.js +audsci.js*. +# /audienceScience. (easyprivacy.txt: 402) +/(.*/)?audienceScience\. +audienceScience.*. +# /audience_science_ (easyprivacy.txt: 401) +/(.*/)?audience_science_ +# /audience_science. (easyprivacy.txt: 400) +/(.*/)?audience_science\. +# /audience_science- (easyprivacy.txt: 399) +/(.*/)?audience_science- +# /audience-science. (easyprivacy.txt: 398) +/(.*/)?audience-science\. +audience-science.*. +# /audience-meter. (easyprivacy.txt: 397) +/(.*/)?audience-meter\. +audience-meter.*. +# /atrk.js (easyprivacy.txt: 396) +/(.*/)?atrk\.js +atrk.js*. +# /atrk.gif? (easyprivacy.txt: 395) +/(.*/)?atrk\.gif\? +# /atlas_track. (easyprivacy.txt: 394) +/(.*/)?atlas_track\. +# /atatus.js (easyprivacy.txt: 393) +/(.*/)?atatus\.js +atatus.js*. +# /atapixel.js (easyprivacy.txt: 392) +/(.*/)?atapixel\.js +atapixel.js*. +# /asyncggtracking. (easyprivacy.txt: 391) +/(.*/)?asyncggtracking\. +asyncggtracking.*. +# /astracker/* (easyprivacy.txt: 390) +/(.*/)?astracker/.* +# /astracker. (easyprivacy.txt: 389) +/(.*/)?astracker\. +astracker.*. +# /astrack.js (easyprivacy.txt: 388) +/(.*/)?astrack\.js +astrack.js*. +# /AssyncCSStats.aspx (easyprivacy.txt: 387) +/(.*/)?AssyncCSStats\.aspx +AssyncCSStats.aspx*. +# /assets/tracking- (easyprivacy.txt: 386) +/(.*/)?assets/tracking- +# /aspstats/index.asp? (easyprivacy.txt: 385) +/(.*/)?aspstats/index\.asp\? +# /aspenanalytics. (easyprivacy.txt: 384) +/(.*/)?aspenanalytics\. +aspenanalytics.*. +# /aslog.php? (easyprivacy.txt: 383) +/(.*/)?aslog\.php\? +# /asknet_tracking. (easyprivacy.txt: 382) +/(.*/)?asknet_tracking\. +# /ArticleViewTracking/* (easyprivacy.txt: 381) +/(.*/)?ArticleViewTracking/.* +# /ArticleLog.aspx? (easyprivacy.txt: 380) +/(.*/)?ArticleLog\.aspx\? +# /article_hit.php? (easyprivacy.txt: 379) +/(.*/)?article_hit\.php\? +# /article_counter.php? (easyprivacy.txt: 378) +/(.*/)?article_counter\.php\? +# /argtk.min. (easyprivacy.txt: 377) +/(.*/)?argtk\.min\. +argtk.min.*. +# /AppMeasurement.js (easyprivacy.txt: 376) +/(.*/)?AppMeasurement\.js +AppMeasurement.js*. +# /appendOmnitureTracking. (easyprivacy.txt: 375) +/(.*/)?appendOmnitureTracking\. +appendOmnitureTracking.*. +# /apixel? (easyprivacy.txt: 374) +/(.*/)?apixel\? +# /apitracking. (easyprivacy.txt: 373) +/(.*/)?apitracking\. +apitracking.*. +# /apilog? (easyprivacy.txt: 372) +/(.*/)?apilog\? +# /api/x.gif? (easyprivacy.txt: 371) +/(.*/)?api/x\.gif\? +# /api/analytics/* (easyprivacy.txt: 370) +/(.*/)?api/analytics/.* +# /api/0/stats (easyprivacy.txt: 369) +/(.*/)?api/0/stats +# /anycent_tracker_ (easyprivacy.txt: 368) +/(.*/)?anycent_tracker_ +# /angularlytics. (easyprivacy.txt: 367) +/(.*/)?angularlytics\. +angularlytics.*. +# /angular-tag. (easyprivacy.txt: 366) +/(.*/)?angular-tag\. +angular-tag.*. +# /ancAdTrack.js (easyprivacy.txt: 365) +/(.*/)?ancAdTrack\.js +ancAdTrack.js*. +# /anapixel. (easyprivacy.txt: 364) +/(.*/)?anapixel\. +anapixel.*. +# /anametrix_tag.js (easyprivacy.txt: 363) +/(.*/)?anametrix_tag\.js +# /anametrix/* (easyprivacy.txt: 362) +/(.*/)?anametrix/.* +# /anametrix.js (easyprivacy.txt: 361) +/(.*/)?anametrix\.js +anametrix.js*. +# /analyzer2. (easyprivacy.txt: 360) +/(.*/)?analyzer2\. +analyzer2.*. +# /analyzer.gif? (easyprivacy.txt: 359) +/(.*/)?analyzer\.gif\? +# /analyticsUnitaire? (easyprivacy.txt: 358) +/(.*/)?analyticsUnitaire\? +# /analyticstrain- (easyprivacy.txt: 357) +/(.*/)?analyticstrain- +analyticstrain-*. +# /analyticstracking_ (easyprivacy.txt: 356) +/(.*/)?analyticstracking_ +# /analyticstracking. (easyprivacy.txt: 355) +/(.*/)?analyticstracking\. +analyticstracking.*. +# /analyticstrack. (easyprivacy.txt: 354) +/(.*/)?analyticstrack\. +analyticstrack.*. +# /analyticstick. (easyprivacy.txt: 353) +/(.*/)?analyticstick\. +analyticstick.*. +# /analyticsscript_ (easyprivacy.txt: 352) +/(.*/)?analyticsscript_ +# /AnalyticsOnDemand/* (easyprivacy.txt: 351) +/(.*/)?AnalyticsOnDemand/.* +# /analyticsjs. (easyprivacy.txt: 350) +/(.*/)?analyticsjs\. +analyticsjs.*. +# /analyticsid. (easyprivacy.txt: 349) +/(.*/)?analyticsid\. +analyticsid.*. +# /analyticsfeed.ashx? (easyprivacy.txt: 348) +/(.*/)?analyticsfeed\.ashx\? +# /analytics_tracker (easyprivacy.txt: 347) +/(.*/)?analytics_tracker +# /analytics_tag. (easyprivacy.txt: 346) +/(.*/)?analytics_tag\. +# /analytics_prod. (easyprivacy.txt: 345) +/(.*/)?analytics_prod\. +# /analytics_ping. (easyprivacy.txt: 344) +/(.*/)?analytics_ping\. +# /analytics_js/* (easyprivacy.txt: 343) +/(.*/)?analytics_js/.* +# /analytics_frame. (easyprivacy.txt: 342) +/(.*/)?analytics_frame\. +# /analytics_embed. (easyprivacy.txt: 341) +/(.*/)?analytics_embed\. +# /analytics?http_referer (easyprivacy.txt: 340) +/(.*/)?analytics\?http_referer +# /Analytics/Visitor. (easyprivacy.txt: 339) +/(.*/)?Analytics/Visitor\. +# /analytics/tracking/* (easyprivacy.txt: 338) +/(.*/)?analytics/tracking/.* +# /Analytics/Tracking. (easyprivacy.txt: 337) +/(.*/)?Analytics/Tracking\. +# /analytics/trackers? (easyprivacy.txt: 336) +/(.*/)?analytics/trackers\? +# /analytics/tracker. (easyprivacy.txt: 335) +/(.*/)?analytics/tracker\. +# /analytics/track? (easyprivacy.txt: 334) +/(.*/)?analytics/track\? +# /analytics/track- (easyprivacy.txt: 333) +/(.*/)?analytics/track- +# /analytics/socialTracking.js (easyprivacy.txt: 332) +/(.*/)?analytics/socialTracking\.js +# /analytics/report/* (easyprivacy.txt: 331) +/(.*/)?analytics/report/.* +# /analytics/mbox.js (easyprivacy.txt: 330) +/(.*/)?analytics/mbox\.js +# /analytics/js/* (easyprivacy.txt: 329) +/(.*/)?analytics/js/.* +# /analytics/hit (easyprivacy.txt: 328) +/(.*/)?analytics/hit +# /analytics/gw. (easyprivacy.txt: 327) +/(.*/)?analytics/gw\. +# /Analytics/Google. (easyprivacy.txt: 326) +/(.*/)?Analytics/Google\. +# /analytics/ga? (easyprivacy.txt: 325) +/(.*/)?analytics/ga\? +# /analytics/ga/* (easyprivacy.txt: 324) +/(.*/)?analytics/ga/.* +# /analytics/eventTrack (easyprivacy.txt: 323) +/(.*/)?analytics/eventTrack +# /analytics/cms/* (easyprivacy.txt: 322) +/(.*/)?analytics/cms/.* +# /analytics.swf? (easyprivacy.txt: 321) +/(.*/)?analytics\.swf\? +# /analytics.php? (easyprivacy.txt: 320) +/(.*/)?analytics\.php\? +# /analytics.php. (easyprivacy.txt: 319) +/(.*/)?analytics\.php\. +analytics.php.*. +# /analytics.min.js (easyprivacy.txt: 318) +/(.*/)?analytics\.min\.js +analytics.min.js*. +# /analytics.html?action= (easyprivacy.txt: 317) +/(.*/)?analytics\.html\?action= +# /analytics.google.js (easyprivacy.txt: 316) +/(.*/)?analytics\.google\.js +analytics.google.js*. +# /analytics.gif? (easyprivacy.txt: 315) +/(.*/)?analytics\.gif\? +# /analytics.do (easyprivacy.txt: 314) +/(.*/)?analytics\.do +analytics.do*. +# /analytics.compressed.js (easyprivacy.txt: 313) +/(.*/)?analytics\.compressed\.js +analytics.compressed.js*. +# /analytics.bundled.js (easyprivacy.txt: 312) +/(.*/)?analytics\.bundled\.js +analytics.bundled.js*. +# /Analytics.aspx? (easyprivacy.txt: 311) +/(.*/)?Analytics\.aspx\? +# /analytics.ashx (easyprivacy.txt: 310) +/(.*/)?analytics\.ashx +analytics.ashx*. +# /analytics-tag. (easyprivacy.txt: 309) +/(.*/)?analytics-tag\. +analytics-tag.*. +# /analytics-js. (easyprivacy.txt: 308) +/(.*/)?analytics-js\. +analytics-js.*. +# /analytics-beacon- (easyprivacy.txt: 307) +/(.*/)?analytics-beacon- +analytics-beacon-*. +# /analyticReporting. (easyprivacy.txt: 305) +/(.*/)?analyticReporting\. +analyticReporting.*. +# /analytic_data_ (easyprivacy.txt: 304) +/(.*/)?analytic_data_ +# /analysis-logger/* (easyprivacy.txt: 303) +/(.*/)?analysis-logger/.* +# /analyse.js (easyprivacy.txt: 302) +/(.*/)?analyse\.js +analyse.js*. +# /analiz.php3? (easyprivacy.txt: 301) +/(.*/)?analiz\.php3\? +# /amplitude-*.js$script (easyprivacy.txt: 300) +/(.*/)?amplitude-.*\.js +amplitude-*./.*\.js +amplitude-*.js*. +# /amdhfp/t.do?id$image (easyprivacy.txt: 299) +/(.*/)?amdhfp/t\.do\?id +# /amdhfp/a.do?param$image (easyprivacy.txt: 298) +/(.*/)?amdhfp/a\.do\?param +# /amazon-affiliate- (easyprivacy.txt: 297) +/(.*/)?amazon-affiliate- +amazon-affiliate-*. +# /alvenda_remarketing_ (easyprivacy.txt: 296) +/(.*/)?alvenda_remarketing_ +# /alllinksclicktracker.js (easyprivacy.txt: 295) +/(.*/)?alllinksclicktracker\.js +alllinksclicktracker.js*. +# /AkamaiTrackingPixel. (easyprivacy.txt: 294) +/(.*/)?AkamaiTrackingPixel\. +AkamaiTrackingPixel.*. +# /AkamaiAnalytics. (easyprivacy.txt: 293) +/(.*/)?AkamaiAnalytics\. +AkamaiAnalytics.*. +# /akamai_analytics_ (easyprivacy.txt: 292) +/(.*/)?akamai_analytics_ +# /akamai/pixy.gif (easyprivacy.txt: 291) +/(.*/)?akamai/pixy\.gif +# /ajaxservice.svc/registersession?session_id= (easyprivacy.txt: 290) +/(.*/)?ajaxservice\.svc/registersession\?session_id= +ajaxservice.svc/registersession\?session_id= +# /ajaxlog? (easyprivacy.txt: 289) +/(.*/)?ajaxlog\? +# /ajaxlog.txt? (easyprivacy.txt: 288) +/(.*/)?ajaxlog\.txt\? +# /ajaxClicktrack. (easyprivacy.txt: 287) +/(.*/)?ajaxClicktrack\. +ajaxClicktrack.*. +# /ajax_video_counter.php? (easyprivacy.txt: 286) +/(.*/)?ajax_video_counter\.php\? +# /ajax_store_analytics? (easyprivacy.txt: 285) +/(.*/)?ajax_store_analytics\? +# /ajax/optimizely- (easyprivacy.txt: 284) +/(.*/)?ajax/optimizely- +# /ajax/log? (easyprivacy.txt: 283) +/(.*/)?ajax/log\? +# /ajax/heatmap- (easyprivacy.txt: 282) +/(.*/)?ajax/heatmap- +# /ajax-hits-counter/* (easyprivacy.txt: 281) +/(.*/)?ajax-hits-counter/.* +# /agof/iam- (easyprivacy.txt: 280) +/(.*/)?agof/iam- +# /aggbug.aspx? (easyprivacy.txt: 279) +/(.*/)?aggbug\.aspx\? +# /aftrackingplugin.swf (easyprivacy.txt: 278) +/(.*/)?aftrackingplugin\.swf +aftrackingplugin.swf*. +# /aftrack. (easyprivacy.txt: 277) +/(.*/)?aftrack\. +aftrack.*. +# /afrpt.gif? (easyprivacy.txt: 276) +/(.*/)?afrpt\.gif\? +# /aflog.gif? (easyprivacy.txt: 275) +/(.*/)?aflog\.gif\? +# /afftracking. (easyprivacy.txt: 274) +/(.*/)?afftracking\. +afftracking.*. +# /afftrack. (easyprivacy.txt: 273) +/(.*/)?afftrack\. +afftrack.*. +# /affl.cgi? (easyprivacy.txt: 272) +/(.*/)?affl\.cgi\? +# /AffinoAudit/* (easyprivacy.txt: 271) +/(.*/)?AffinoAudit/.* +# /affilinetRetargeting. (easyprivacy.txt: 270) +/(.*/)?affilinetRetargeting\. +affilinetRetargeting.*. +# /affiliatetracking/* (easyprivacy.txt: 269) +/(.*/)?affiliatetracking/.* +# /affiliateTracking. (easyprivacy.txt: 268) +/(.*/)?affiliateTracking\. +affiliateTracking.*. +# /AffiliateClick. (easyprivacy.txt: 267) +/(.*/)?AffiliateClick\. +AffiliateClick.*. +# /affiliate/track? (easyprivacy.txt: 266) +/(.*/)?affiliate/track\? +# /affiliate.1800flowers. (easyprivacy.txt: 265) +/(.*/)?affiliate\.1800flowers\. +affiliate.1800flowers.*. +# /affiliate-tracker. (easyprivacy.txt: 264) +/(.*/)?affiliate-tracker\. +affiliate-tracker.*. +# /affiliate-track. (easyprivacy.txt: 263) +/(.*/)?affiliate-track\. +affiliate-track.*. +# /aff_land?referrer (easyprivacy.txt: 262) +/(.*/)?aff_land\?referrer +# /aegis_tracking. (easyprivacy.txt: 261) +/(.*/)?aegis_tracking\. +# /adx_remote. (easyprivacy.txt: 260) +/(.*/)?adx_remote\. +# /adwords-conversion-tracking. (easyprivacy.txt: 259) +/(.*/)?adwords-conversion-tracking\. +adwords-conversion-tracking.*. +# /advstats/* (easyprivacy.txt: 258) +/(.*/)?advstats/.* +# /adviewtrack. (easyprivacy.txt: 257) +/(.*/)?adviewtrack\. +adviewtrack.*. +# /adv/tracking. (easyprivacy.txt: 256) +/(.*/)?adv/tracking\. +# /adtrk/* (easyprivacy.txt: 255) +/(.*/)?adtrk/.* +# /adstrack. (easyprivacy.txt: 254) +/(.*/)?adstrack\. +adstrack.*. +# /adstats. (easyprivacy.txt: 253) +/(.*/)?adstats\. +adstats.*. +# /adstat. (easyprivacy.txt: 252) +/(.*/)?adstat\. +adstat.*. +# /adsct? (easyprivacy.txt: 251) +/(.*/)?adsct\? +# /ads_tracker. (easyprivacy.txt: 250) +/(.*/)?ads_tracker\. +# /ads/track/* (easyprivacy.txt: 249) +/(.*/)?ads/track/.* +# /adrum. (easyprivacy.txt: 248) +/(.*/)?adrum\. +adrum.*. +# /adrum- (easyprivacy.txt: 247) +/(.*/)?adrum- +adrum-*. +# /adpixel. (easyprivacy.txt: 246) +/(.*/)?adpixel\. +adpixel.*. +# /AdobeCustomVideoMeasurement.swf (easyprivacy.txt: 245) +/(.*/)?AdobeCustomVideoMeasurement\.swf +AdobeCustomVideoMeasurement.swf*. +# /admonitoring.js (easyprivacy.txt: 244) +/(.*/)?admonitoring\.js +admonitoring.js*. +# /adm_tracking.js (easyprivacy.txt: 243) +/(.*/)?adm_tracking\.js +# /adloggertracker. (easyprivacy.txt: 242) +/(.*/)?adloggertracker\. +adloggertracker.*. +# /adlogger_ (easyprivacy.txt: 241) +/(.*/)?adlogger_ +# /adlogger. (easyprivacy.txt: 240) +/(.*/)?adlogger\. +adlogger.*. +# /adinteraction/* (easyprivacy.txt: 239) +/(.*/)?adinteraction/.* +# /adimppixel/* (easyprivacy.txt: 238) +/(.*/)?adimppixel/.* +# /addTrackingScripts. (easyprivacy.txt: 237) +/(.*/)?addTrackingScripts\. +addTrackingScripts.*. +# /addrtlog/* (easyprivacy.txt: 236) +/(.*/)?addrtlog/.* +# /addpageview/* (easyprivacy.txt: 235) +/(.*/)?addpageview/.* +# /addlogdetails. (easyprivacy.txt: 234) +/(.*/)?addlogdetails\. +addlogdetails.*. +# /addlog/? (easyprivacy.txt: 233) +/(.*/)?addlog/\? +# /addLinkerEvents.js (easyprivacy.txt: 232) +/(.*/)?addLinkerEvents\.js +addLinkerEvents.js*. +# /addLinkerEvents-std. (easyprivacy.txt: 231) +/(.*/)?addLinkerEvents-std\. +addLinkerEvents-std.*. +# /addLinkerEvents-ga. (easyprivacy.txt: 230) +/(.*/)?addLinkerEvents-ga\. +addLinkerEvents-ga.*. +# /addLinker.js (easyprivacy.txt: 229) +/(.*/)?addLinker\.js +addLinker.js*. +# /additional.php?res_width=$script (easyprivacy.txt: 228) +/(.*/)?additional\.php\?res_width= +# /add_stats (easyprivacy.txt: 227) +/(.*/)?add_stats +# /add_page_view? (easyprivacy.txt: 226) +/(.*/)?add_page_view\? +# /AdCount/* (easyprivacy.txt: 225) +/(.*/)?AdCount/.* +# /adb/track.php? (easyprivacy.txt: 224) +/(.*/)?adb/track\.php\? +# /adam.js (easyprivacy.txt: 223) +/(.*/)?adam\.js +adam.js*. +# /ad_1_trans. (easyprivacy.txt: 222) +/(.*/)?ad_1_trans\. +# /ad/tr.gif? (easyprivacy.txt: 221) +/(.*/)?ad/tr\.gif\? +# /activity.gif? (easyprivacy.txt: 220) +/(.*/)?activity\.gif\? +# /activity-track/? (easyprivacy.txt: 219) +/(.*/)?activity-track/\? +# /activetrackphp.php? (easyprivacy.txt: 218) +/(.*/)?activetrackphp\.php\? +# /act_pagetrack. (easyprivacy.txt: 217) +/(.*/)?act_pagetrack\. +# /acounter.php? (easyprivacy.txt: 216) +/(.*/)?acounter\.php\? +# /acfp.js (easyprivacy.txt: 215) +/(.*/)?acfp\.js +acfp.js*. +# /acecounter_ (easyprivacy.txt: 214) +/(.*/)?acecounter_ +# /acecounter/* (easyprivacy.txt: 213) +/(.*/)?acecounter/.* +# /acclog.cgi? (easyprivacy.txt: 212) +/(.*/)?acclog\.cgi\? +# /AccessTrackingLogServlet? (easyprivacy.txt: 211) +/(.*/)?AccessTrackingLogServlet\? +# /AccessCounter/* (easyprivacy.txt: 210) +/(.*/)?AccessCounter/.* +# /acbeacon2. (easyprivacy.txt: 209) +/(.*/)?acbeacon2\. +acbeacon2.*. +# /ablank.gif? (easyprivacy.txt: 208) +/(.*/)?ablank\.gif\? +# /aa.php?anuid= (easyprivacy.txt: 207) +/(.*/)?aa\.php\?anuid= +# /a.logrequest.yolx? (easyprivacy.txt: 206) +/(.*/)?a\.logrequest\.yolx\? +# /_tracking/* (easyprivacy.txt: 205) +/(.*/)?_tracking/.* +# /_topic_stats? (easyprivacy.txt: 204) +/(.*/)?_topic_stats\? +# /_owa.gif? (easyprivacy.txt: 203) +/(.*/)?_owa\.gif\? +# /_lib/ga.js (easyprivacy.txt: 202) +/(.*/)?_lib/ga\.js +# /_dts.gif? (easyprivacy.txt: 201) +/(.*/)?_dts\.gif\? +# /__wsm.gif (easyprivacy.txt: 200) +/(.*/)?__wsm\.gif +# /__varnish_geoip (easyprivacy.txt: 199) +/(.*/)?__varnish_geoip +# /__utm.js (easyprivacy.txt: 198) +/(.*/)?__utm\.js +# /__utm.gif (easyprivacy.txt: 197) +/(.*/)?__utm\.gif +# /__tm3k.gif? (easyprivacy.txt: 196) +/(.*/)?__tm3k\.gif\? +# /__sttm.gif? (easyprivacy.txt: 195) +/(.*/)?__sttm\.gif\? +# /__ssobj/sync?$image (easyprivacy.txt: 194) +/(.*/)?__ssobj/sync\? +# /__ssobj/core.js (easyprivacy.txt: 193) +/(.*/)?__ssobj/core\.js +# /?record&key= (easyprivacy.txt: 192) +/(.*/)?\?record&key= +# /?livehit= (easyprivacy.txt: 191) +/(.*/)?\?livehit= +# /?dm=*&blogid=$script (easyprivacy.txt: 190) +/(.*/)?\?dm=.*&blogid= +# /?com=visit*=record& (easyprivacy.txt: 189) +/(.*/)?\?com=visit.*=record& +# /1x1tracker. (easyprivacy.txt: 188) +/(.*/)?1x1tracker\. +1x1tracker.*. +# /1x1p.gif? (easyprivacy.txt: 187) +/(.*/)?1x1p\.gif\? +# /1x1_imp.gif? (easyprivacy.txt: 186) +/(.*/)?1x1_imp\.gif\? +# /1x1_akamai.gif (easyprivacy.txt: 185) +/(.*/)?1x1_akamai\.gif +# /1x1.gif?utm (easyprivacy.txt: 184) +/(.*/)?1x1\.gif\?utm +# /1x1.gif?tracking (easyprivacy.txt: 183) +/(.*/)?1x1\.gif\?tracking +# /0pixel.php? (easyprivacy.txt: 182) +/(.*/)?0pixel\.php\? +# //feedproxy.*/~r/*$image (easyprivacy.txt: 181) +feedproxy.*./(.*/)?~r/.* +# /!crd_prm!. (easyprivacy.txt: 180) +/(.*/)?!crd_prm!\. +# .webstats. (easyprivacy.txt: 179) +/.*\.webstats\. +.*.webstats.*. +# .webmetrics.js (easyprivacy.txt: 178) +/.*\.webmetrics\.js +.*.webmetrics.js*. +# .vsTracking. (easyprivacy.txt: 177) +/.*\.vsTracking\. +.*.vsTracking.*. +# .vn/0.gif? (easyprivacy.txt: 176) +/.*\.vn/0\.gif\? +.*.vn/0\.gif\? +# .usertracking_script.js (easyprivacy.txt: 175) +/.*\.usertracking_script\.js +# .uk/traffic/? (easyprivacy.txt: 174) +/.*\.uk/traffic/\? +.*.uk/traffic/\? +# .uk/o.gif? (easyprivacy.txt: 173) +/.*\.uk/o\.gif\? +.*.uk/o\.gif\? +# .tv/t.png? (easyprivacy.txt: 172) +/.*\.tv/t\.png\? +.*.tv/t\.png\? +# .tv/log?event (easyprivacy.txt: 171) +/.*\.tv/log\?event +.*.tv/log\?event +# .trackUserAction& (easyprivacy.txt: 170) +/.*\.trackUserAction& +# .tracking.js?dpv= (easyprivacy.txt: 169) +/.*\.tracking\.js\?dpv= +# .trackArticleAction& (easyprivacy.txt: 168) +/.*\.trackArticleAction& +# .track_Visit? (easyprivacy.txt: 167) +/.*\.track_Visit\? +# .social_tracking. (easyprivacy.txt: 166) +/.*\.social_tracking\. +# .skimlinks.js (easyprivacy.txt: 165) +/.*\.skimlinks\.js +.*.skimlinks.js*. +# .sitetracking. (easyprivacy.txt: 164) +/.*\.sitetracking\. +.*.sitetracking.*. +# .siteclarity. (easyprivacy.txt: 163) +/.*\.siteclarity\. +.*.siteclarity.*. +# .sitecatalyst.js (easyprivacy.txt: 162) +/.*\.sitecatalyst\.js +.*.sitecatalyst.js*. +# .sharecounter.$third-party (easyprivacy.txt: 161) +/.*\.sharecounter\. +.*.sharecounter.*. +# .sg/t.gif? (easyprivacy.txt: 160) +/.*\.sg/t\.gif\? +.*.sg/t\.gif\? +# .pt/t.gif? (easyprivacy.txt: 159) +/.*\.pt/t\.gif\? +.*.pt/t\.gif\? +# .pt/n.gif? (easyprivacy.txt: 158) +/.*\.pt/n\.gif\? +.*.pt/n\.gif\? +# .PixelNedstatStatistic/ (easyprivacy.txt: 157) +/.*\.PixelNedstatStatistic/ +.*.PixelNedstatStatistic +# .php?refcode= (easyprivacy.txt: 156) +/.*\.php\?refcode= +# .php?logType= (easyprivacy.txt: 155) +/.*\.php\?logType= +# .php?logRefer= (easyprivacy.txt: 154) +/.*\.php\?logRefer= +# .pageVisitCounter_ (easyprivacy.txt: 153) +/.*\.pageVisitCounter_ +# .PageHitServlet? (easyprivacy.txt: 152) +/.*\.PageHitServlet\? +# .org/js/ga- (easyprivacy.txt: 151) +/.*\.org/js/ga- +.*.org/js/ga- +# .org/?js| (easyprivacy.txt: 150) +/.*\.org/\?js$ +.*.org/\?js$ +# .nz/t.gif? (easyprivacy.txt: 149) +/.*\.nz/t\.gif\? +.*.nz/t\.gif\? +# .ntpagetag. (easyprivacy.txt: 148) +/.*\.ntpagetag\. +.*.ntpagetag.*. +# .net/vtrack| (easyprivacy.txt: 147) +/.*\.net/vtrack$ +.*.net/vtrack$ +# .net/trck/ (easyprivacy.txt: 146) +/.*\.net/trck/ +.*.net/trck/ +# .net/t.gif? (easyprivacy.txt: 145) +/.*\.net/t\.gif\? +.*.net/t\.gif\? +# .net/px.js? (easyprivacy.txt: 144) +/.*\.net/px\.js\? +.*.net/px\.js\? +# .net/ping.php? (easyprivacy.txt: 143) +/.*\.net/ping\.php\? +.*.net/ping\.php\? +# .net/p.gif? (easyprivacy.txt: 142) +/.*\.net/p\.gif\? +.*.net/p\.gif\? +# .net/l.gif? (easyprivacy.txt: 141) +/.*\.net/l\.gif\? +.*.net/l\.gif\? +# .net/HG?hc=&hb= (easyprivacy.txt: 140) +/.*\.net/HG\?hc=&hb= +.*.net/HG\?hc=&hb= +# .net/c.gif? (easyprivacy.txt: 139) +/.*\.net/c\.gif\? +.*.net/c\.gif\? +# .net/1x1.gif? (easyprivacy.txt: 138) +/.*\.net/1x1\.gif\? +.*.net/1x1\.gif\? +# .net/0.gif? (easyprivacy.txt: 137) +/.*\.net/0\.gif\? +.*.net/0\.gif\? +# .me/geoip/ (easyprivacy.txt: 136) +/.*\.me/geoip/ +.*.me/geoip/ +# .jsp/?Log= (easyprivacy.txt: 135) +/.*\.jsp/\?Log= +.*.jsp/\?Log= +# .in/c.gif? (easyprivacy.txt: 134) +/.*\.in/c\.gif\? +.*.in/c\.gif\? +# .html?wpl= (easyprivacy.txt: 133) +/.*\.html\?wpl= +# .gov/stat? (easyprivacy.txt: 132) +/.*\.gov/stat\? +.*.gov/stat\? +# .GoogleAnalytics/ (easyprivacy.txt: 131) +/.*\.GoogleAnalytics/ +.*.GoogleAnalytics +# .googleanalytics.js (easyprivacy.txt: 130) +/.*\.googleanalytics\.js +.*.googleanalytics.js*. +# .gif?Log=$~xmlhttprequest (easyprivacy.txt: 129) +/.*\.gif\?Log= +# .gif?ad= (easyprivacy.txt: 128) +/.*\.gif\?ad= +# .gatracking.js (easyprivacy.txt: 127) +/.*\.gatracking\.js +.*.gatracking.js*. +# .gatracker. (easyprivacy.txt: 126) +/.*\.gatracker\. +.*.gatracker.*. +# .fr/z.gif? (easyprivacy.txt: 125) +/.*\.fr/z\.gif\? +.*.fr/z\.gif\? +# .eloqua.js (easyprivacy.txt: 124) +/.*\.eloqua\.js +.*.eloqua.js*. +# .do_tracking& (easyprivacy.txt: 123) +/.*\.do_tracking& +# .de/l.gif? (easyprivacy.txt: 122) +/.*\.de/l\.gif\? +.*.de/l\.gif\? +# .core.tracking-min- (easyprivacy.txt: 121) +/.*\.core\.tracking-min- +.*.core.tracking-min-*. +# .com/z.gif? (easyprivacy.txt: 120) +/.*\.com/z\.gif\? +.*.com/z\.gif\? +# .com/x0.gif? (easyprivacy.txt: 119) +/.*\.com/x0\.gif\? +.*.com/x0\.gif\? +# .com/x.gif? (easyprivacy.txt: 118) +/.*\.com/x\.gif\? +.*.com/x\.gif\? +# .com/www.gif? (easyprivacy.txt: 117) +/.*\.com/www\.gif\? +.*.com/www\.gif\? +# .com/w.gif? (easyprivacy.txt: 116) +/.*\.com/w\.gif\? +.*.com/w\.gif\? +# .com/vtrack| (easyprivacy.txt: 115) +/.*\.com/vtrack$ +.*.com/vtrack$ +# .com/vanity/? (easyprivacy.txt: 114) +/.*\.com/vanity/\? +.*.com/vanity/\? +# .com/v.gif? (easyprivacy.txt: 113) +/.*\.com/v\.gif\? +.*.com/v\.gif\? +# .com/u.gif? (easyprivacy.txt: 112) +/.*\.com/u\.gif\? +.*.com/u\.gif\? +# .com/traffic/?t=*&cb= (easyprivacy.txt: 111) +/.*\.com/traffic/\?t=.*&cb= +.*.com/traffic/\?t=.*&cb= +# .com/tracking? (easyprivacy.txt: 110) +/.*\.com/tracking\? +.*.com/tracking\? +# .com/tracker.jsp (easyprivacy.txt: 109) +/.*\.com/tracker\.jsp +.*.com/tracker\.jsp +# .com/track?$~object (easyprivacy.txt: 108) +/.*\.com/track\? +.*.com/track\? +# .com/tr.gif? (easyprivacy.txt: 107) +/.*\.com/tr\.gif\? +.*.com/tr\.gif\? +# .com/tp.php? (easyprivacy.txt: 106) +/.*\.com/tp\.php\? +.*.com/tp\.php\? +# .com/t.gif? (easyprivacy.txt: 105) +/.*\.com/t\.gif\? +.*.com/t\.gif\? +# .com/stats.aspx? (easyprivacy.txt: 104) +/.*\.com/stats\.aspx\? +.*.com/stats\.aspx\? +# .com/stats.ashx? (easyprivacy.txt: 103) +/.*\.com/stats\.ashx\? +.*.com/stats\.ashx\? +# .com/ss/*sessionId= (easyprivacy.txt: 102) +/.*\.com/ss/.*sessionId= +.*.com/ss/.*sessionId= +# .com/s/at?site (easyprivacy.txt: 101) +/.*\.com/s/at\?site +.*.com/s/at\?site +# .com/s.gif? (easyprivacy.txt: 100) +/.*\.com/s\.gif\? +.*.com/s\.gif\? +# .com/r.gif? (easyprivacy.txt: 99) +/.*\.com/r\.gif\? +.*.com/r\.gif\? +# .com/px.js? (easyprivacy.txt: 98) +/.*\.com/px\.js\? +.*.com/px\.js\? +# .com/pvlog? (easyprivacy.txt: 97) +/.*\.com/pvlog\? +.*.com/pvlog\? +# .com/pv.gif? (easyprivacy.txt: 96) +/.*\.com/pv\.gif\? +.*.com/pv\.gif\? +# .com/pagelogger/ (easyprivacy.txt: 95) +/.*\.com/pagelogger/ +.*.com/pagelogger/ +# .com/p.gif? (easyprivacy.txt: 94) +/.*\.com/p\.gif\? +.*.com/p\.gif\? +# .com/mm.gif? (easyprivacy.txt: 93) +/.*\.com/mm\.gif\? +.*.com/mm\.gif\? +# .com/log?type (easyprivacy.txt: 92) +/.*\.com/log\?type +.*.com/log\?type +# .com/log?srvc (easyprivacy.txt: 91) +/.*\.com/log\?srvc +.*.com/log\?srvc +# .com/log?event (easyprivacy.txt: 90) +/.*\.com/log\?event +.*.com/log\?event +# .com/log/? (easyprivacy.txt: 89) +/.*\.com/log/\? +.*.com/log/\? +# .com/js/ga.js (easyprivacy.txt: 88) +/.*\.com/js/ga\.js +.*.com/js/ga\.js +# .com/js/ga-*.js (easyprivacy.txt: 87) +/.*\.com/js/ga-.*\.js +.*.com/js/ga-.*\.js +# .com/i.gif? (easyprivacy.txt: 86) +/.*\.com/i\.gif\? +.*.com/i\.gif\? +# .com/hitlog? (easyprivacy.txt: 85) +/.*\.com/hitlog\? +.*.com/hitlog\? +# .com/HG? (easyprivacy.txt: 84) +/.*\.com/HG\? +.*.com/HG\? +# .com/geo_ip (easyprivacy.txt: 83) +/.*\.com/geo_ip +.*.com/geo_ip +# .com/ga.js? (easyprivacy.txt: 82) +/.*\.com/ga\.js\? +.*.com/ga\.js\? +# .com/ga.js; (easyprivacy.txt: 81) +/.*\.com/ga\.js; +.*.com/ga\.js; +# .com/ga-*.js (easyprivacy.txt: 80) +/.*\.com/ga-.*\.js +.*.com/ga-.*\.js +# .com/g.gif? (easyprivacy.txt: 79) +/.*\.com/g\.gif\? +.*.com/g\.gif\? +# .com/f.gif? (easyprivacy.txt: 78) +/.*\.com/f\.gif\? +.*.com/f\.gif\? +# .com/elt.gif? (easyprivacy.txt: 77) +/.*\.com/elt\.gif\? +.*.com/elt\.gif\? +# .com/e.gif? (easyprivacy.txt: 76) +/.*\.com/e\.gif\? +.*.com/e\.gif\? +# .com/dc.gif? (easyprivacy.txt: 75) +/.*\.com/dc\.gif\? +.*.com/dc\.gif\? +# .com/counter? (easyprivacy.txt: 74) +/.*\.com/counter\? +.*.com/counter\? +# .com/cm?tid (easyprivacy.txt: 73) +/.*\.com/cm\?tid +.*.com/cm\?tid +# .com/cm?ci= (easyprivacy.txt: 72) +/.*\.com/cm\?ci= +.*.com/cm\?ci= +# .com/c.gif? (easyprivacy.txt: 71) +/.*\.com/c\.gif\? +.*.com/c\.gif\? +# .com/blank.aspx? (easyprivacy.txt: 70) +/.*\.com/blank\.aspx\? +.*.com/blank\.aspx\? +# .com/b.gif? (easyprivacy.txt: 69) +/.*\.com/b\.gif\? +.*.com/b\.gif\? +# .com/analytics? (easyprivacy.txt: 68) +/.*\.com/analytics\? +.*.com/analytics\? +# .com/analytics.js?_t=$script,third-party (easyprivacy.txt: 67) +/.*\.com/analytics\.js\?_t= +.*.com/analytics\.js\?_t= +# .com/a.gif? (easyprivacy.txt: 66) +/.*\.com/a\.gif\? +.*.com/a\.gif\? +# .com/__kl.gif? (easyprivacy.txt: 65) +/.*\.com/__kl\.gif\? +.*.com/__kl\.gif\? +# .com/_.gif? (easyprivacy.txt: 64) +/.*\.com/_\.gif\? +.*.com/_\.gif\? +# .com/?livehit (easyprivacy.txt: 63) +/.*\.com/\?livehit +.*.com/\?livehit +# .com/?epl=$image,script (easyprivacy.txt: 62) +/.*\.com/\?epl= +.*.com/\?epl= +# .com/3.gif? (easyprivacy.txt: 61) +/.*\.com/3\.gif\? +.*.com/3\.gif\? +# .com/2.gif? (easyprivacy.txt: 60) +/.*\.com/2\.gif\? +.*.com/2\.gif\? +# .com/1.gif? (easyprivacy.txt: 59) +/.*\.com/1\.gif\? +.*.com/1\.gif\? +# .com/0.gif? (easyprivacy.txt: 58) +/.*\.com/0\.gif\? +.*.com/0\.gif\? +# .com.com/redir?timestamp (easyprivacy.txt: 57) +/.*\.com\.com/redir\?timestamp +.*.com.com/redir\?timestamp +# .com.au/HG?hc= (easyprivacy.txt: 56) +/.*\.com\.au/HG\?hc= +.*.com.au/HG\?hc= +# .cn/z.gif? (easyprivacy.txt: 55) +/.*\.cn/z\.gif\? +.*.cn/z\.gif\? +# .cn/s.gif? (easyprivacy.txt: 54) +/.*\.cn/s\.gif\? +.*.cn/s\.gif\? +# .cn/r.gif? (easyprivacy.txt: 53) +/.*\.cn/r\.gif\? +.*.cn/r\.gif\? +# .cn/gs.gif? (easyprivacy.txt: 52) +/.*\.cn/gs\.gif\? +.*.cn/gs\.gif\? +# .cn/b.gif? (easyprivacy.txt: 51) +/.*\.cn/b\.gif\? +.*.cn/b\.gif\? +# .cn/a.gif? (easyprivacy.txt: 50) +/.*\.cn/a\.gif\? +.*.cn/a\.gif\? +# .cn/2.gif? (easyprivacy.txt: 49) +/.*\.cn/2\.gif\? +.*.cn/2\.gif\? +# .cn/1.gif? (easyprivacy.txt: 48) +/.*\.cn/1\.gif\? +.*.cn/1\.gif\? +# .cc/s.gif? (easyprivacy.txt: 47) +/.*\.cc/s\.gif\? +.*.cc/s\.gif\? +# .beacon.min.js (easyprivacy.txt: 46) +/.*\.beacon\.min\.js +.*.beacon.min.js*. +# .au/t.gif? (easyprivacy.txt: 45) +/.*\.au/t\.gif\? +.*.au/t\.gif\? +# .au/t.ashx? (easyprivacy.txt: 44) +/.*\.au/t\.ashx\? +.*.au/t\.ashx\? +# .au/c.gif? (easyprivacy.txt: 43) +/.*\.au/c\.gif\? +.*.au/c\.gif\? +# .au/1x1.gif? (easyprivacy.txt: 42) +/.*\.au/1x1\.gif\? +.*.au/1x1\.gif\? +# .at/t.gif? (easyprivacy.txt: 41) +/.*\.at/t\.gif\? +.*.at/t\.gif\? +# .asis?Log= (easyprivacy.txt: 40) +/.*\.asis\?Log= +# -xtcore.js (easyprivacy.txt: 39) +/.*-xtcore\.js +.*-xtcore.js*. +# -tracking.js? (easyprivacy.txt: 38) +/.*-tracking\.js\? +# -social-tracking. (easyprivacy.txt: 37) +/.*-social-tracking\. +.*-social-tracking.*. +# -seo-tracker. (easyprivacy.txt: 36) +/.*-seo-tracker\. +.*-seo-tracker.*. +# -scroll-tracker.js (easyprivacy.txt: 35) +/.*-scroll-tracker\.js +.*-scroll-tracker.js*. +# -page-analytics. (easyprivacy.txt: 34) +/.*-page-analytics\. +.*-page-analytics.*. +# -optimost- (easyprivacy.txt: 33) +/.*-optimost- +.*-optimost-*. +# -mediaplex_ (easyprivacy.txt: 32) +/.*-mediaplex_ +# -google-tag-manager/$script (easyprivacy.txt: 31) +/.*-google-tag-manager/ +.*-google-tag-manager +# -google-analytics/ (easyprivacy.txt: 30) +/.*-google-analytics/ +.*-google-analytics +# -google-analytics. (easyprivacy.txt: 29) +/.*-google-analytics\. +.*-google-analytics.*. +# -geoIP.js (easyprivacy.txt: 28) +/.*-geoIP\.js +.*-geoIP.js*. +# -ga-track. (easyprivacy.txt: 27) +/.*-ga-track\. +.*-ga-track.*. +# -criteo. (easyprivacy.txt: 26) +/.*-criteo\. +.*-criteo.*. +# -comscore. (easyprivacy.txt: 25) +/.*-comscore\. +.*-comscore.*. +# -ClickTale. (easyprivacy.txt: 24) +/.*-ClickTale\. +.*-ClickTale.*. +# -boomerang_ (easyprivacy.txt: 23) +/.*-boomerang_ +# -bluekai. (easyprivacy.txt: 22) +/.*-bluekai\. +.*-bluekai.*. +# -baynote. (easyprivacy.txt: 21) +/.*-baynote\. +.*-baynote.*. +# -analytics-tagserver- (easyprivacy.txt: 20) +/.*-analytics-tagserver- +.*-analytics-tagserver-*. +# -AdTracking. (easyprivacy.txt: 19) +/.*-AdTracking\. +.*-AdTracking.*. +# &trackingserver= (easyprivacy.txt: 18) +/.*&trackingserver= +# &pageReferrer= (easyprivacy.txt: 17) +/.*&pageReferrer= +# &ctxId=*&pubId=*&objId= (easyprivacy.txt: 16) +/.*&ctxId=.*&pubId=.*&objId= + +#ab2p-block-dnt-R1 +{+client-header-tagger{ab2p-block-dnt-R1} \ +} +# ||cloudfront.net/photo/*_tp_*.jpg$domain=9gag.com (easyprivacy.txt: 7729) +.cloudfront.net/photo/.*_tp_.*\.jpg + +#ab2p-block-dnt-R2 +{+client-header-tagger{ab2p-block-dnt-R2} \ +} +# ||abc.com/service/gremlin/js/files/s_code.js?$domain=abc.go.com (easyprivacy.txt: 9436) +.abc.com/service/gremlin/js/files/s_code\.js\? + +#ab2p-block-dnt-R3 +{+client-header-tagger{ab2p-block-dnt-R3} \ +} +# ||aexp-static.com/api/axpi/omniture/s_code_myca_context.js$domain=americanexpress.com (easyprivacy.txt: 9439) +.aexp-static.com/api/axpi/omniture/s_code_myca_context\.js + +#ab2p-block-dnt-R4 +{+client-header-tagger{ab2p-block-dnt-R4} \ +} +# ||img-bahn.de/v/*/js/s_code.js$domain=bahn.de (easyprivacy.txt: 9457) +.img-bahn.de/v/.*/js/s_code\.js + +#ab2p-block-dnt-R5 +{+client-header-tagger{ab2p-block-dnt-R5} \ +} +# ||bbystatic.com/js/_analytics/$domain=bestbuy.com (easyprivacy.txt: 7583) +.bbystatic.com/js/_analytics/ + +#ab2p-block-dnt-R6 +{+client-header-tagger{ab2p-block-dnt-R6} \ +} +# ||85.237.86.50/stat/$domain=bluray-disc.de (easyprivacy.txt: 9495) +.85.237.86.50/stat/ + +#ab2p-block-dnt-R7 +{+client-header-tagger{ab2p-block-dnt-R7} \ +} +# ||google-analytics.com/analytics.js$domain=boote-forum.de (easyprivacy.txt: 10218) +.google-analytics.com/analytics\.js + +#ab2p-block-dnt-R8 +{+client-header-tagger{ab2p-block-dnt-R8} \ +} +# ||rackcdn.com^$script,domain=buysubscriptions.com|cbsnews.com|cbssports.com|cnet.com|dailystar.co.uk|express.co.uk|gamerant.com|gamespot.com|inyt.com|metrolyrics.com|rotoworld.com|sh.st|thesun.co.uk|thesundaytimes.co.uk|thetimes.co.uk|zdnet.com (easyprivacy.txt: 6280) +.rackcdn.com + +#ab2p-block-dnt-R9 +{+client-header-tagger{ab2p-block-dnt-R9} \ +} +# /fam/view.php?$domain=cnet.com (easyprivacy.txt: 7352) +/(.*/)?fam/view\.php\? + +#ab2p-block-dnt-R10 +{+client-header-tagger{ab2p-block-dnt-R10} \ +} +# ||xplosion.de^$domain=comunio.de (easyprivacy.txt: 10225) +.xplosion.de +# ||ioam.de/tx.io?$domain=comunio.de (easyprivacy.txt: 10224) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=comunio.de (easyprivacy.txt: 10223) +.ioam.de/\? +# ||criteo.com^$domain=comunio.de (easyprivacy.txt: 10222) +.criteo.com +# ||analytics.comunio.net^$domain=comunio.de (easyprivacy.txt: 10221) +.analytics.comunio.net +# ||analytics.comunio.de^$domain=comunio.de (easyprivacy.txt: 10220) +.analytics.comunio.de + +#ab2p-block-dnt-R11 +{+client-header-tagger{ab2p-block-dnt-R11} \ +} +# ||dmcdn.net/track/$domain=dailymotion.com (easyprivacy.txt: 7836) +.dmcdn.net/track/ +# ||cloudfront.net/dm.js$domain=dailymotion.com (easyprivacy.txt: 7725) +.cloudfront.net/dm\.js + +#ab2p-block-dnt-R12 +{+client-header-tagger{ab2p-block-dnt-R12} \ +} +# ||mnginteractive.com/live/omniture/sccore.js$domain=denverpost.com (easyprivacy.txt: 9466) +.mnginteractive.com/live/omniture/sccore\.js + +#ab2p-block-dnt-R13 +{+client-header-tagger{ab2p-block-dnt-R13} \ +} +# ||cdnds.net/js/s_code.js$domain=digitalspy.ca|digitalspy.co.nz|digitalspy.co.uk|digitalspy.com|digitalspy.com.au|digitalspy.ie (easyprivacy.txt: 9444) +.cdnds.net/js/s_code\.js + +#ab2p-block-dnt-R14 +{+client-header-tagger{ab2p-block-dnt-R14} \ +} +# ||edgecastcdn.net^*/ehow_am.js$domain=ehow.com (easyprivacy.txt: 7867) +.edgecastcdn.net/.*/ehow_am\.js + +#ab2p-block-dnt-R15 +{+client-header-tagger{ab2p-block-dnt-R15} \ +} +# ||el-mundo.net/js/s_code.js$domain=elmundo.es|marca.com|tiramillas.net (easyprivacy.txt: 9451) +.el-mundo.net/js/s_code\.js + +#ab2p-block-dnt-R16 +{+client-header-tagger{ab2p-block-dnt-R16} \ +} +# ||pixel.facebook.com^$domain=facebook.com (easyprivacy.txt: 10196) +.pixel.facebook.com + +#ab2p-block-dnt-R17 +{+client-header-tagger{ab2p-block-dnt-R17} \ +} +# ||google-analytics.com/analytics.js$domain=fanfiktion.de (easyprivacy.txt: 10216) +.google-analytics.com/analytics\.js +# ||criteo.com^$domain=fanfiktion.de (easyprivacy.txt: 10215) +.criteo.com + +#ab2p-block-dnt-R18 +{+client-header-tagger{ab2p-block-dnt-R18} \ +} +# ||86.63.194.248/js/measure.js$third-party,domain=feedcat.net (easyprivacy.txt: 7373) +.86.63.194.248/js/measure\.js + +#ab2p-block-dnt-R19 +{+client-header-tagger{ab2p-block-dnt-R19} \ +} +# ||xplosion.de^$domain=focus.de (easyprivacy.txt: 10181) +.xplosion.de +# ||visualrevenue.com^$domain=focus.de (easyprivacy.txt: 10180) +.visualrevenue.com +# ||optimizely.com^$domain=focus.de (easyprivacy.txt: 10178) +.optimizely.com +# ||met.vgwort.de^$domain=focus.de (easyprivacy.txt: 10177) +.met.vgwort.de +# ||lp4.io^$domain=focus.de (easyprivacy.txt: 10176) +.lp4.io +# ||log.outbrain.com^$domain=focus.de (easyprivacy.txt: 10175) +.log.outbrain.com +# ||krxd.net^$domain=focus.de (easyprivacy.txt: 10174) +.krxd.net +# ||ioam.de/tx.io?$domain=focus.de (easyprivacy.txt: 10173) +.ioam.de/tx\.io\? +# ||googletagmanager.com^$domain=focus.de (easyprivacy.txt: 10172) +.googletagmanager.com +# ||emetriq.de^$domain=focus.de (easyprivacy.txt: 10171) +.emetriq.de +# ||cloudfront.net/track?$domain=focus.de (easyprivacy.txt: 10170) +.cloudfront.net/track\? +# ||clicktale.net^$domain=focus.de (easyprivacy.txt: 10169) +.clicktale.net +# /pagedot.gif?$domain=focus.de (easyprivacy.txt: 10168) +/(.*/)?pagedot\.gif\? + +#ab2p-block-dnt-R20 +{+client-header-tagger{ab2p-block-dnt-R20} \ +} +# ||scorecardresearch.com^$domain=gamestar.de (easyprivacy.txt: 10166) +.scorecardresearch.com +# ||ioam.de/tx.io?$domain=gamestar.de (easyprivacy.txt: 10165) +.ioam.de/tx\.io\? +# ||googletagmanager.com/gtm.js?$third-party$domain=gamestar.de (easyprivacy.txt: 10164) +.googletagmanager.com/gtm\.js\?\$third-party +# ||google-analytics.com/analytics.js$domain=gamestar.de (easyprivacy.txt: 10163) +.google-analytics.com/analytics\.js +# ||gamestar.de/_misc/tracking/$domain=gamestar.de (easyprivacy.txt: 10162) +.gamestar.de/_misc/tracking/ +# /ping.gif?$domain=gamestar.de (easyprivacy.txt: 10161) +/(.*/)?ping\.gif\? + +#ab2p-block-dnt-R21 +{+client-header-tagger{ab2p-block-dnt-R21} \ +} +# ||213.8.193.45/themarker/$domain=haaretz.com (easyprivacy.txt: 7360) +.213.8.193.45/themarker/ + +#ab2p-block-dnt-R22 +{+client-header-tagger{ab2p-block-dnt-R22} \ +} +# ||amazonaws.com^*/track.js$domain=hitfix.com (easyprivacy.txt: 5313) +.amazonaws.com/.*/track\.js + +#ab2p-block-dnt-R23 +{+client-header-tagger{ab2p-block-dnt-R23} \ +} +# /viewtrack/track?$domain=hulu.com (easyprivacy.txt: 7353) +/(.*/)?viewtrack/track\? + +#ab2p-block-dnt-R24 +{+client-header-tagger{ab2p-block-dnt-R24} \ +} +# ||images-amazon.com^*/beacon-$domain=imdb.com (easyprivacy.txt: 8185) +.images-amazon.com/.*/beacon- + +#ab2p-block-dnt-R25 +{+client-header-tagger{ab2p-block-dnt-R25} \ +} +# ||atgstores.com/js/lowesca_s_code.js$domain=lowes.ca (easyprivacy.txt: 9441) +.atgstores.com/js/lowesca_s_code\.js + +#ab2p-block-dnt-R26 +{+client-header-tagger{ab2p-block-dnt-R26} \ +} +# ||mnginteractive.com/live/omniture/custom_scripts/omnicore-blogs.js$domain=mercurynews.com (easyprivacy.txt: 9465) +.mnginteractive.com/live/omniture/custom_scripts/omnicore-blogs\.js + +#ab2p-block-dnt-R27 +{+client-header-tagger{ab2p-block-dnt-R27} \ +} +# ||wp.com/wp-content/themes/vip/metrouk/js/site-catalyst.js$domain=metro.co.uk (easyprivacy.txt: 9487) +.wp.com/wp-content/themes/vip/metrouk/js/site-catalyst\.js + +#ab2p-block-dnt-R28 +{+client-header-tagger{ab2p-block-dnt-R28} \ +} +# ||s-msn.com/primedns.gif?$domain=msn.com (easyprivacy.txt: 8765) +.s-msn.com/primedns\.gif\? + +#ab2p-block-dnt-R29 +{+client-header-tagger{ab2p-block-dnt-R29} \ +} +# ||ioam.de/tx.io?$domain=notebookcheck.com (easyprivacy.txt: 10235) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=notebookcheck.com (easyprivacy.txt: 10234) +.ioam.de/\? +# ||google-analytics.com/analytics.js$domain=notebookcheck.com (easyprivacy.txt: 10233) +.google-analytics.com/analytics\.js + +#ab2p-block-dnt-R30 +{+client-header-tagger{ab2p-block-dnt-R30} \ +} +# ||demandware.edgesuite.net^*/omniture.js$domain=otterbox.com (easyprivacy.txt: 9449) +.demandware.edgesuite.net/.*/omniture\.js + +#ab2p-block-dnt-R31 +{+client-header-tagger{ab2p-block-dnt-R31} \ +} +# ||scorecardresearch.com^$domain=outbrain.com (easyprivacy.txt: 10179) +.scorecardresearch.com + +#ab2p-block-dnt-R32 +{+client-header-tagger{ab2p-block-dnt-R32} \ +} +# ||mnginteractive.com/live/omniture/sccore_NEW.js$domain=pasadenastarnews.com|presstelegram.com (easyprivacy.txt: 9467) +.mnginteractive.com/live/omniture/sccore_NEW\.js + +#ab2p-block-dnt-R33 +{+client-header-tagger{ab2p-block-dnt-R33} \ +} +# ||paypalobjects.com/*/m/mid.swf$domain=paypal.com (easyprivacy.txt: 8576) +.paypalobjects.com/.*/m/mid\.swf + +#ab2p-block-dnt-R34 +{+client-header-tagger{ab2p-block-dnt-R34} \ +} +# ||stroeerdigitalmedia.de^$domain=planetsnow.de (easyprivacy.txt: 10231) +.stroeerdigitalmedia.de +# ||plista.com/iframeShowItem.php$domain=planetsnow.de (easyprivacy.txt: 10230) +.plista.com/iframeShowItem\.php +# ||ioam.de/tx.io?$domain=planetsnow.de (easyprivacy.txt: 10229) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=planetsnow.de (easyprivacy.txt: 10228) +.ioam.de/\? +# ||google-analytics.com/analytics.js$domain=planetsnow.de (easyprivacy.txt: 10227) +.google-analytics.com/analytics\.js + +#ab2p-block-dnt-R35 +{+client-header-tagger{ab2p-block-dnt-R35} \ +} +# ||xplosion.de^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10201) +.xplosion.de +# ||webtrekk.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10200) +.webtrekk.net +# ||visualrevenue.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10199) +.visualrevenue.com +# ||theadex.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10198) +.theadex.com +# ||semasio.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10197) +.semasio.net +# ||nuggad.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10195) +.nuggad.net +# ||movad.de/c.ount?$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10194) +.movad.de/c\.ount\? +# ||imrworldwide.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10193) +.imrworldwide.com +# ||google-analytics.com/analytics.js$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10192) +.google-analytics.com/analytics\.js +# ||contentspread.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10191) +.contentspread.net +# ||chartbeat.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10190) +.chartbeat.com + +#ab2p-block-dnt-R36 +{+client-header-tagger{ab2p-block-dnt-R36} \ +} +# ||ybinst2.ec.yimg.com/ec/*&Type=Event.CPT&$domain=search.yahoo.com (easyprivacy.txt: 9375) +.ybinst2.ec.yimg.com/ec/.*&Type=Event\.CPT& + +#ab2p-block-dnt-R37 +{+client-header-tagger{ab2p-block-dnt-R37} \ +} +# ||198.105.253.2/lvl3/$image,domain=searchguide.level3.com (easyprivacy.txt: 7358) +.198.105.253.2/lvl3/ + +#ab2p-block-dnt-R38 +{+client-header-tagger{ab2p-block-dnt-R38} \ +} +# ||nwsource.com/shared/js/s_code.js?$domain=seattletimes.com (easyprivacy.txt: 9470) +.nwsource.com/shared/js/s_code\.js\? + +#ab2p-block-dnt-R39 +{+client-header-tagger{ab2p-block-dnt-R39} \ +} +# ||aexp-static.com/api/axpi/omniture/s_code_serve.js?$domain=serve.com (easyprivacy.txt: 7408) +.aexp-static.com/api/axpi/omniture/s_code_serve\.js\? + +#ab2p-block-dnt-R40 +{+client-header-tagger{ab2p-block-dnt-R40} \ +} +# ||timeinc.net/tii/omniture/h/config/timesi.js$domain=si.com (easyprivacy.txt: 9483) +.timeinc.net/tii/omniture/h/config/timesi\.js + +#ab2p-block-dnt-R41 +{+client-header-tagger{ab2p-block-dnt-R41} \ +} +# ||skypeassets.com/static/skype.skypeloginstatic/js/s_code.js$domain=skype.com (easyprivacy.txt: 9480) +.skypeassets.com/static/skype\.skypeloginstatic/js/s_code\.js +# ||skypeassets.com/i/tracking/js/s_code_20121127.js$domain=skype.com (easyprivacy.txt: 9479) +.skypeassets.com/i/tracking/js/s_code_20121127\.js + +#ab2p-block-dnt-R42 +{+client-header-tagger{ab2p-block-dnt-R42} \ +} +# ||amazonaws.com/ds-dd/data/data.gif?$domain=slickdeals.net (easyprivacy.txt: 5301) +.amazonaws.com/ds-dd/data/data\.gif\? + +#ab2p-block-dnt-R43 +{+client-header-tagger{ab2p-block-dnt-R43} \ +} +# ||cloudfront.net/pages/scripts/0011/0794.js$domain=sourceforge.net (easyprivacy.txt: 7728) +.cloudfront.net/pages/scripts/0011/0794\.js +# ||fsdn.com/con/js/webtracker.js$domain=sourceforge.net (easyprivacy.txt: 5827) +.fsdn.com/con/js/webtracker\.js + +#ab2p-block-dnt-R44 +{+client-header-tagger{ab2p-block-dnt-R44} \ +} +# ||5.153.4.92^$domain=spreaker.com (easyprivacy.txt: 7367) +.5.153.4.92 + +#ab2p-block-dnt-R45 +{+client-header-tagger{ab2p-block-dnt-R45} \ +} +# ||69.25.121.67/page_load?$domain=theverge.com (easyprivacy.txt: 7370) +.69.25.121.67/page_load\? + +#ab2p-block-dnt-R46 +{+client-header-tagger{ab2p-block-dnt-R46} \ +} +# /pos?act=dur$object-subrequest,domain=tudou.com (easyprivacy.txt: 9795) +/(.*/)?pos\?act=dur + +#ab2p-block-dnt-R47 +{+client-header-tagger{ab2p-block-dnt-R47} \ +} +# ||vinsight.de^$domain=tvspielfilm.de (easyprivacy.txt: 10188) +.vinsight.de +# ||ioam.de/tx.io?$domain=tvspielfilm.de (easyprivacy.txt: 10187) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=tvspielfilm.de (easyprivacy.txt: 10186) +.ioam.de/\? +# ||intelliad.de^$domain=tvspielfilm.de (easyprivacy.txt: 10185) +.intelliad.de +# ||googletagmanager.com/gtm.js?$domain=tvspielfilm.de (easyprivacy.txt: 10184) +.googletagmanager.com/gtm\.js\? +# ||facebook.com/tr?$domain=tvspielfilm.de (easyprivacy.txt: 10183) +.facebook.com/tr\? + +#ab2p-block-dnt-R48 +{+client-header-tagger{ab2p-block-dnt-R48} \ +} +# ||intercomcdn.com/intercom*.js$domain=unblocked.la (easyprivacy.txt: 5946) +.intercomcdn.com/intercom.*\.js + +#ab2p-block-dnt-R49 +{+client-header-tagger{ab2p-block-dnt-R49} \ +} +# ||wac.edgecastcdn.net^$object-subrequest,domain=vzaar.com (easyprivacy.txt: 6718) +.wac.edgecastcdn.net + +#ab2p-block-dnt-R50 +{+client-header-tagger{ab2p-block-dnt-R50} \ +} +# ||amazonaws.com/logs$xmlhttprequest,domain=wat.tv (easyprivacy.txt: 5306) +.amazonaws.com/logs + +#ab2p-block-dnt-R51 +{+client-header-tagger{ab2p-block-dnt-R51} \ +} +# ||visualwebsiteoptimizer.com^$domain=wetter.com (easyprivacy.txt: 10209) +.visualwebsiteoptimizer.com +# ||theadex.com^$domain=wetter.com (easyprivacy.txt: 10208) +.theadex.com +# ||mouseflow.com^$domain=wetter.com (easyprivacy.txt: 10207) +.mouseflow.com +# ||ioam.de/tx.io?$domain=wetter.com (easyprivacy.txt: 10206) +.ioam.de/tx\.io\? +# /piwik.$domain=wetter.com (easyprivacy.txt: 10205) +/(.*/)?piwik\. +piwik.*. +# /chartbeat.js$domain=wetter.com (easyprivacy.txt: 10204) +/(.*/)?chartbeat\.js +chartbeat.js*. +# /__utm.gif?$domain=wetter.com (easyprivacy.txt: 10203) +/(.*/)?__utm\.gif\? + +#ab2p-block-dnt-R52 +{+client-header-tagger{ab2p-block-dnt-R52} \ +} +# ||ioam.de/tx.io?$domain=woxikon.de (easyprivacy.txt: 10213) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=woxikon.de (easyprivacy.txt: 10212) +.ioam.de/\? +# /__utm.gif$domain=woxikon.de (easyprivacy.txt: 10211) +/(.*/)?__utm\.gif + +#ab2p-block-dnt-R53 +{+client-header-tagger{ab2p-block-dnt-R53} \ +} +# ||211.106.66.62^*/statistics/$domain=yonhapnews.co.kr (easyprivacy.txt: 10043) +.211.106.66.62/.*/statistics/ + +#ab2p-block-dnt-Rn54 +{+client-header-tagger{ab2p-block-dnt-Rn54} \ +} +# ||95.211.106.41^$third-party,domain=~538group.ip (easyprivacy.txt: 7073) +.95.211.106.41 + +#ab2p-block-dnt-Rn55 +{+client-header-tagger{ab2p-block-dnt-Rn55} \ +} +# ||74.117.176.217/trf/track.php?$third-party,domain=~adult.sites.ip (easyprivacy.txt: 5221) +.74.117.176.217/trf/track\.php\? + +#ab2p-block-dnt-Rn56 +{+client-header-tagger{ab2p-block-dnt-Rn56} \ +} +# ||79.125.117.123^$third-party,domain=~amazon.cdn.ip.seen.on.cheapflight (easyprivacy.txt: 2711) +.79.125.117.123 + +#ab2p-block-dnt-Rn57 +{+client-header-tagger{ab2p-block-dnt-Rn57} \ +} +# ||ssl-images-amazon.com/images/*/common/1x1._*.gif$domain=~amazon.com (easyprivacy.txt: 6373) +.ssl-images-amazon.com/images/.*/common/1x1\._.*\.gif + +#ab2p-block-dnt-Rn58 +{+client-header-tagger{ab2p-block-dnt-Rn58} \ +} +# ||93.93.53.198^$third-party,domain=~awempire.ip (easyprivacy.txt: 5223) +.93.93.53.198 + +#ab2p-block-dnt-Rn59 +{+client-header-tagger{ab2p-block-dnt-Rn59} \ +} +# ||180.76.2.18^$third-party,domain=~baidu.ip (easyprivacy.txt: 4830) +.180.76.2.18 + +#ab2p-block-dnt-Rn60 +{+client-header-tagger{ab2p-block-dnt-Rn60} \ +} +# ||219.232.238.60/count.$domain=~caixin.com.ip (easyprivacy.txt: 5207) +.219.232.238.60/count\. +# ||116.213.75.36/logstat/$domain=~caixin.com.ip (easyprivacy.txt: 5186) +.116.213.75.36/logstat/ + +#ab2p-block-dnt-Rn61 +{+client-header-tagger{ab2p-block-dnt-Rn61} \ +} +# ||62.219.24.238^$third-party,domain=~cast-tv.com.ip (easyprivacy.txt: 5219) +.62.219.24.238 + +#ab2p-block-dnt-Rn62 +{+client-header-tagger{ab2p-block-dnt-Rn62} \ +} +# ||209.15.236.80^$third-party,domain=~crosspixelmedia.ip (easyprivacy.txt: 5205) +.209.15.236.80 + +#ab2p-block-dnt-Rn63 +{+client-header-tagger{ab2p-block-dnt-Rn63} \ +} +# ||180.70.93.115/ndmclick/$domain=~daum.ip (easyprivacy.txt: 7184) +.180.70.93.115/ndmclick/ + +#ab2p-block-dnt-Rn64 +{+client-header-tagger{ab2p-block-dnt-Rn64} \ +} +# ||188.40.142.44/track.js$third-party,domain=~dropped.pl.ip (easyprivacy.txt: 5198) +.188.40.142.44/track\.js + +#ab2p-block-dnt-Rn65 +{+client-header-tagger{ab2p-block-dnt-Rn65} \ +} +# ||216.18.184.18^$third-party,domain=~etahub.com.ip (easyprivacy.txt: 2690) +.216.18.184.18 + +#ab2p-block-dnt-Rn66 +{+client-header-tagger{ab2p-block-dnt-Rn66} \ +} +# ||199.116.177.156^$domain=~fc2.jp.ip (easyprivacy.txt: 7165) +.199.116.177.156 + +#ab2p-block-dnt-Rn67 +{+client-header-tagger{ab2p-block-dnt-Rn67} \ +} +# ||209.20.84.187/blank.gif?$third-party,domain=~gatehousenewsservice.com.ip (easyprivacy.txt: 5206) +.209.20.84.187/blank\.gif\? + +#ab2p-block-dnt-Rn68 +{+client-header-tagger{ab2p-block-dnt-Rn68} \ +} +# ||174.37.54.170^$third-party,domain=~informer.com.ip (easyprivacy.txt: 5194) +.174.37.54.170 +# ||208.88.226.75^$third-party,domain=~informer.com.ip (easyprivacy.txt: 2688) +.208.88.226.75 + +#ab2p-block-dnt-Rn69 +{+client-header-tagger{ab2p-block-dnt-Rn69} \ +} +# ||212.95.32.75^$third-party,domain=~ipcounter.de.ip (easyprivacy.txt: 4493) +.212.95.32.75 + +#ab2p-block-dnt-Rn70 +{+client-header-tagger{ab2p-block-dnt-Rn70} \ +} +# ||keen.io^$third-party,domain=~keen.github.io|~keen.io (easyprivacy.txt: 3533) +.keen.io + +#ab2p-block-dnt-Rn71 +{+client-header-tagger{ab2p-block-dnt-Rn71} \ +} +# ||metrigo.com^$third-party,domain=~metrigo.de (easyprivacy.txt: 4649) +.metrigo.com + +#ab2p-block-dnt-Rn72 +{+client-header-tagger{ab2p-block-dnt-Rn72} \ +} +# /analyticReportingAS3.$domain=~miniclip.com (easyprivacy.txt: 306) +/(.*/)?analyticReportingAS3\. +analyticReportingAS3.*. + +#ab2p-block-dnt-Rn73 +{+client-header-tagger{ab2p-block-dnt-Rn73} \ +} +# ||23.23.22.172/ping/$third-party,domain=~newjerseynewsroom.com.ip (easyprivacy.txt: 5209) +.23.23.22.172/ping/ + +#ab2p-block-dnt-Rn74 +{+client-header-tagger{ab2p-block-dnt-Rn74} \ +} +# ||58.68.146.44:8000^$third-party,domain=~peoplesdaily.cn.ip (easyprivacy.txt: 5216) +.58.68.146.44:8000 + +#ab2p-block-dnt-Rn75 +{+client-header-tagger{ab2p-block-dnt-Rn75} \ +} +# /piwik/*$domain=~piwik.org (easyprivacy.txt: 1613) +/(.*/)?piwik/.* +# /piwik.$script,domain=~piwik.org (easyprivacy.txt: 1611) +/(.*/)?piwik\. +piwik.*. +# /piwik-$domain=~piwik.org (easyprivacy.txt: 1610) +/(.*/)?piwik- +piwik-*. + +#ab2p-block-dnt-Rn76 +{+client-header-tagger{ab2p-block-dnt-Rn76} \ +} +# ||54.246.124.188/analytics/$domain=~racinguk.ip (easyprivacy.txt: 5215) +.54.246.124.188/analytics/ + +#ab2p-block-dnt-Rn77 +{+client-header-tagger{ab2p-block-dnt-Rn77} \ +} +# ||195.177.242.237^$third-party,domain=~sat24.com.ip (easyprivacy.txt: 5199) +.195.177.242.237 + +#ab2p-block-dnt-Rn78 +{+client-header-tagger{ab2p-block-dnt-Rn78} \ +} +# ||87.79.36.252/blank.gif?$domain=~sevenload.com.ip (easyprivacy.txt: 9496) +.87.79.36.252/blank\.gif\? + +#ab2p-block-dnt-Rn79 +{+client-header-tagger{ab2p-block-dnt-Rn79} \ +} +# ||61.129.118.83^$third-party,domain=~shanghaidaily.cn.ip (easyprivacy.txt: 5218) +.61.129.118.83 + +#ab2p-block-dnt-Rn80 +{+client-header-tagger{ab2p-block-dnt-Rn80} \ +} +# ||204.236.243.21/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5203) +.204.236.243.21/small\.gif\? +# ||204.236.233.138/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5202) +.204.236.233.138/tracker/ +# ||184.73.199.44/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5196) +.184.73.199.44/tracker/ +# ||184.73.199.40/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5195) +.184.73.199.40/tracker/ +# ||174.129.98.240/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5193) +.174.129.98.240/small\.gif\? +# ||174.129.88.189/partner.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5192) +.174.129.88.189/partner\.gif\? +# ||174.129.6.226/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5191) +.174.129.6.226/tracker/ +# ||174.129.135.197/partner.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5190) +.174.129.135.197/partner\.gif\? +# ||174.129.112.186/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5189) +.174.129.112.186/small\.gif\? + +#ab2p-block-dnt-Rn81 +{+client-header-tagger{ab2p-block-dnt-Rn81} \ +} +# ||193.197.158.209^$third-party,domain=~statistik.lubw.baden-wuerttemberg.de.ip (easyprivacy.txt: 4492) +.193.197.158.209 + +#ab2p-block-dnt-Rn82 +{+client-header-tagger{ab2p-block-dnt-Rn82} \ +} +# ||195.182.58.105/statistics/$third-party,domain=~stream5.tv.ip (easyprivacy.txt: 5200) +.195.182.58.105/statistics/ + +#ab2p-block-dnt-Rn83 +{+client-header-tagger{ab2p-block-dnt-Rn83} \ +} +# ||107.20.91.54/partner.gif?$third-party,domain=~thedailybeast.com.ip (easyprivacy.txt: 5185) +.107.20.91.54/partner\.gif\? + +#ab2p-block-dnt-Rn84 +{+client-header-tagger{ab2p-block-dnt-Rn84} \ +} +# ||50.16.191.59^$third-party,domain=~tritondigital.net.ip (easyprivacy.txt: 5212) +.50.16.191.59 +# ||23.20.0.197^$third-party,domain=~tritondigital.net.ip (easyprivacy.txt: 5208) +.23.20.0.197 + +#ab2p-block-dnt-Rn85 +{+client-header-tagger{ab2p-block-dnt-Rn85} \ +} +# http://utm.$domain=~utoronto.ca (easyprivacy.txt: 2644) +/.*http://utm\. +utm.*. + +#ab2p-block-elem +{ \ +} +TAG:^ab2p-block-elem$ +# ||target.ukr.net^ (easyprivacy.txt: 10158) +.target.ukr.net +# ||piccy.org.ua/c? (easyprivacy.txt: 10157) +.piccy.org.ua/c\? +# ||piccy.info/c? (easyprivacy.txt: 10156) +.piccy.info/c\? +# ||meta.ua/c.asp? (easyprivacy.txt: 10155) +.meta.ua/c\.asp\? +# ||hit.meta.ua^ (easyprivacy.txt: 10154) +.hit.meta.ua +# ||counter.ukr.net^ (easyprivacy.txt: 10153) +.counter.ukr.net +# ||at.ua/stat/ (easyprivacy.txt: 10152) +.at.ua/stat/ +# |http://r.i.ua/s? (easyprivacy.txt: 10151) +r.i.ua/s\? +# ||p.milliyet.com.tr^ (easyprivacy.txt: 10149) +.p.milliyet.com.tr +# ||haberler.com/dinamik/ (easyprivacy.txt: 10148) +.haberler.com/dinamik/ +# ||c.gazetevatan.com^ (easyprivacy.txt: 10147) +.c.gazetevatan.com +# ||prod-metro-collector.cloudapp.net^ (easyprivacy.txt: 10145) +.prod-metro-collector.cloudapp.net +# ||prisjakt.nu/js.php?p=trafikfonden (easyprivacy.txt: 10144) +.prisjakt.nu/js\.php\?p=trafikfonden +# ||fusion.bonniertidskrifter.se^ (easyprivacy.txt: 10143) +.fusion.bonniertidskrifter.se +# ||blocket.se/js/trafikfonden.js (easyprivacy.txt: 10142) +.blocket.se/js/trafikfonden\.js +# ||beacon.mtgx.tv^ (easyprivacy.txt: 10141) +.beacon.mtgx.tv +# ||analytics.codigo.se^ (easyprivacy.txt: 10140) +.analytics.codigo.se +# ||trrsf.com/metrics/ (easyprivacy.txt: 10138) +.trrsf.com/metrics/ +# ||terra.com^*/td.asp?bstat (easyprivacy.txt: 10137) +.terra.com/.*/td\.asp\?bstat +# ||terra.com/js/metrics/ (easyprivacy.txt: 10136) +.terra.com/js/metrics/ +# ||terra.com.mx^*/metrics_end.js (easyprivacy.txt: 10135) +.terra.com.mx/.*/metrics_end\.js +# ||terra.com.mx^*/metrics_begin.js (easyprivacy.txt: 10134) +.terra.com.mx/.*/metrics_begin\.js +# ||terra.com.mx/js/metricspar_ (easyprivacy.txt: 10133) +.terra.com.mx/js/metricspar_ +# ||t13.cl/hit/ (easyprivacy.txt: 10132) +.t13.cl/hit/ +# ||stats.milenio.com^ (easyprivacy.txt: 10131) +.stats.milenio.com +# ||hits.antena3.com^ (easyprivacy.txt: 10130) +.hits.antena3.com +# ||g.siliconweek.es^ (easyprivacy.txt: 10129) +.g.siliconweek.es +# ||fls-eu.amazon.es^ (easyprivacy.txt: 10128) +.fls-eu.amazon.es +# ||estadonline.publiguias.cl^ (easyprivacy.txt: 10127) +.estadonline.publiguias.cl +# ||estadisticas.lanacion.com.ar^ (easyprivacy.txt: 10126) +.estadisticas.lanacion.com.ar +# ||esmas.com/scripts/esmas_stats.js (easyprivacy.txt: 10125) +.esmas.com/scripts/esmas_stats\.js +# ||coletor.terra.com^ (easyprivacy.txt: 10124) +.coletor.terra.com +# ||analytics.infobae.com^ (easyprivacy.txt: 10123) +.analytics.infobae.com +# ||24ur.com/bin/player/?mod=statistics& (easyprivacy.txt: 10121) +.24ur.com/bin/player/\?mod=statistics& +# ||trak-analytics.blic.rs^ (easyprivacy.txt: 10119) +.trak-analytics.blic.rs +# ||yast.rutube.ru^ (easyprivacy.txt: 10117) +.yast.rutube.ru +# ||yandex.ru/clck/ (easyprivacy.txt: 10116) +.yandex.ru/clck/ +# ||vedomosti.ru/boom? (easyprivacy.txt: 10115) +.vedomosti.ru/boom\? +# ||stats.lifenews.ru^ (easyprivacy.txt: 10114) +.stats.lifenews.ru +# ||stat.lenta.ru^ (easyprivacy.txt: 10113) +.stat.lenta.ru +# ||rutube.ru/img/playerstats.gif? (easyprivacy.txt: 10112) +.rutube.ru/img/playerstats\.gif\? +# ||rutube.ru/dbg/player_stat? (easyprivacy.txt: 10111) +.rutube.ru/dbg/player_stat\? +# ||rutube.ru/counters.html? (easyprivacy.txt: 10110) +.rutube.ru/counters\.html\? +# ||rbc.ru/count/ (easyprivacy.txt: 10109) +.rbc.ru/count/ +# ||rbc.ru/click? (easyprivacy.txt: 10108) +.rbc.ru/click\? +# ||montblanc.lenta.ru^ (easyprivacy.txt: 10107) +.montblanc.lenta.ru +# ||mail.ru/counter? (easyprivacy.txt: 10106) +.mail.ru/counter\? +# ||mail.ru/count/ (easyprivacy.txt: 10105) +.mail.ru/count/ +# ||kommersant.ru/a.asp?p= (easyprivacy.txt: 10104) +.kommersant.ru/a\.asp\?p= +# ||kiks.yandex.ru^ (easyprivacy.txt: 10103) +.kiks.yandex.ru +# ||ad7.bigmir.net^ (easyprivacy.txt: 10102) +.ad7.bigmir.net +# ||uv.terra.com.br^ (easyprivacy.txt: 10100) +.uv.terra.com.br +# ||urchin.estadao.com.br^ (easyprivacy.txt: 10099) +.urchin.estadao.com.br +# ||uol.com.br/stats? (easyprivacy.txt: 10098) +.uol.com.br/stats\? +# ||tracker.bt.uol.com.br^ (easyprivacy.txt: 10097) +.tracker.bt.uol.com.br +# ||sl.pt/wa.gif? (easyprivacy.txt: 10096) +.sl.pt/wa\.gif\? +# ||sapo.*/clk?u= (easyprivacy.txt: 10095) +.sapo.*./(.*/)?clk\?u= +# ||rtp.pt/common/js/analytics.js (easyprivacy.txt: 10094) +.rtp.pt/common/js/analytics\.js +# ||metrics.uol.com.br^ (easyprivacy.txt: 10093) +.metrics.uol.com.br +# ||log.r7.com^ (easyprivacy.txt: 10092) +.log.r7.com +# ||lancenet.com.br/pw.js (easyprivacy.txt: 10091) +.lancenet.com.br/pw\.js +# ||iol.pt/js/analytics.js (easyprivacy.txt: 10090) +.iol.pt/js/analytics\.js +# ||g.bitmag.com.br^ (easyprivacy.txt: 10089) +.g.bitmag.com.br +# ||g.bit.pt^ (easyprivacy.txt: 10088) +.g.bit.pt +# ||dna.uol.com.br^ (easyprivacy.txt: 10087) +.dna.uol.com.br +# ||dejavu.mercadolivre.com.br^ (easyprivacy.txt: 10086) +.dejavu.mercadolivre.com.br +# ||click.uol.com.br^ (easyprivacy.txt: 10085) +.click.uol.com.br +# ||wp.pl/?rid= (easyprivacy.txt: 10083) +.wp.pl/\?rid= +# ||stats.teledyski.info^ (easyprivacy.txt: 10082) +.stats.teledyski.info +# ||squid.gazeta.pl/bdtrck/ (easyprivacy.txt: 10081) +.squid.gazeta.pl/bdtrck/ +# ||rek.www.wp.pl^ (easyprivacy.txt: 10080) +.rek.www.wp.pl +# ||nasza-klasa.pl^*/pp_gemius (easyprivacy.txt: 10079) +.nasza-klasa.pl/.*/pp_gemius +# ||mklik.gazeta.pl^ (easyprivacy.txt: 10078) +.mklik.gazeta.pl +# ||kropka.onet.pl^ (easyprivacy.txt: 10077) +.kropka.onet.pl +# ||dot.wp.pl^ (easyprivacy.txt: 10076) +.dot.wp.pl +# ||analytics.gazeta.pl^ (easyprivacy.txt: 10075) +.analytics.gazeta.pl +# |http://x.o2.pl^ (easyprivacy.txt: 10074) +x.o2.pl +# ||irib.ir/counter/stat.js (easyprivacy.txt: 10072) +.irib.ir/counter/stat\.js +# ||irib.ir/count.php? (easyprivacy.txt: 10071) +.irib.ir/count\.php\? +# ||webhit.aftenposten.no^ (easyprivacy.txt: 10069) +.webhit.aftenposten.no +# ||vg.no/stats/ (easyprivacy.txt: 10068) +.vg.no/stats/ +# ||nrk.no^*/stats/ (easyprivacy.txt: 10067) +.nrk.no/.*/stats/ +# ||fusion.nettavisen.no^ (easyprivacy.txt: 10066) +.fusion.nettavisen.no +# ||click.vgnett.no^ (easyprivacy.txt: 10065) +.click.vgnett.no +# ||tanks.lv/top/stats.php (easyprivacy.txt: 10063) +.tanks.lv/top/stats\.php +# ||t.delfi.lv/_a? (easyprivacy.txt: 10062) +.t.delfi.lv/_a\? +# ||stats.tunt.lv^ (easyprivacy.txt: 10061) +.stats.tunt.lv +# ||ss.lv/counter/ (easyprivacy.txt: 10060) +.ss.lv/counter/ +# ||reklama.lv/services/espy.php (easyprivacy.txt: 10059) +.reklama.lv/services/espy\.php +# ||insbergs.lv/ins_statistics/ (easyprivacy.txt: 10058) +.insbergs.lv/ins_statistics/ +# ||inbox.lv^*/ga.js (easyprivacy.txt: 10057) +.inbox.lv/.*/ga\.js +# ||e-spy.petit.lv^ (easyprivacy.txt: 10056) +.e-spy.petit.lv +# ||diena.lv/statistics/ (easyprivacy.txt: 10055) +.diena.lv/statistics/ +# ||delphi.lv/t/t.js (easyprivacy.txt: 10054) +.delphi.lv/t/t\.js +# ||delfi.lv/t/p.js (easyprivacy.txt: 10053) +.delfi.lv/t/p\.js +# ||cv.ee/static/stat.php (easyprivacy.txt: 10052) +.cv.ee/static/stat\.php +# ||ytn.co.kr/_comm/ylog.php? (easyprivacy.txt: 10050) +.ytn.co.kr/_comm/ylog\.php\? +# ||naver.com/PostView.nhn?$image (easyprivacy.txt: 10049) +.naver.com/PostView\.nhn\? +# ||lcs.naver.com^ (easyprivacy.txt: 10048) +.lcs.naver.com +# ||hitweb2.chosun.com^ (easyprivacy.txt: 10047) +.hitweb2.chosun.com +# ||hits.zdnet.co.kr^ (easyprivacy.txt: 10046) +.hits.zdnet.co.kr +# ||gather.hankyung.com^ (easyprivacy.txt: 10045) +.gather.hankyung.com +# ||chosun.com/hitlog/ (easyprivacy.txt: 10044) +.chosun.com/hitlog/ +# ||yahoo.co.jp/b?p= (easyprivacy.txt: 10041) +.yahoo.co.jp/b\?p= +# ||visit.geocities.jp^ (easyprivacy.txt: 10040) +.visit.geocities.jp +# ||seesaawiki.jp/img/rainman.gif? (easyprivacy.txt: 10039) +.seesaawiki.jp/img/rainman\.gif\? +# ||mainichi.jp^*/null.gif? (easyprivacy.txt: 10038) +.mainichi.jp/.*/null\.gif\? +# ||i2i.jp/bin/ (easyprivacy.txt: 10037) +.i2i.jp/bin/ +# ||goo.ne.jp^*/vltracedmd.js (easyprivacy.txt: 10036) +.goo.ne.jp/.*/vltracedmd\.js +# ||fujitv.co.jp/pc/space.gif? (easyprivacy.txt: 10035) +.fujitv.co.jp/pc/space\.gif\? +# ||fls-fe.amazon.co.jp^ (easyprivacy.txt: 10034) +.fls-fe.amazon.co.jp +# ||carview.co.jp/include_api/log/ (easyprivacy.txt: 10033) +.carview.co.jp/include_api/log/ +# ||analyzer2.fc2.com^ (easyprivacy.txt: 10032) +.analyzer2.fc2.com +# ||analyzer.fc2.com^ (easyprivacy.txt: 10031) +.analyzer.fc2.com +# ||analytics.cocolog-nifty.com^ (easyprivacy.txt: 10030) +.analytics.cocolog-nifty.com +# ||ameblo.jp/accesslog/ (easyprivacy.txt: 10029) +.ameblo.jp/accesslog/ +# ||yachtingnetwork.it/stat/ (easyprivacy.txt: 10027) +.yachtingnetwork.it/stat/ +# ||volkswagen-italia.it^*/tracking/ (easyprivacy.txt: 10026) +.volkswagen-italia.it/.*/tracking/ +# ||virgilio.it/clientinfo.gif? (easyprivacy.txt: 10025) +.virgilio.it/clientinfo\.gif\? +# ||videogame.it/a/logview/ (easyprivacy.txt: 10024) +.videogame.it/a/logview/ +# ||video.mediaset.it/polymediashowanalytics/ (easyprivacy.txt: 10023) +.video.mediaset.it/polymediashowanalytics/ +# ||trk.m.libero.it^ (easyprivacy.txt: 10022) +.trk.m.libero.it +# ||tracking.gruppo.mps.it^ (easyprivacy.txt: 10021) +.tracking.gruppo.mps.it +# ||track.tesiteca.it^ (easyprivacy.txt: 10020) +.track.tesiteca.it +# ||topolino.it^*/omniture.php? (easyprivacy.txt: 10019) +.topolino.it/.*/omniture\.php\? +# ||tiscali.it/banner-tiscali/stats.html? (easyprivacy.txt: 10018) +.tiscali.it/banner-tiscali/stats\.html\? +# ||stats.splinder.com^ (easyprivacy.txt: 10017) +.stats.splinder.com +# ||spaziogames.it/ajax/player_impression.ashx? (easyprivacy.txt: 10016) +.spaziogames.it/ajax/player_impression\.ashx\? +# ||smsaffari.it/count_new.php? (easyprivacy.txt: 10015) +.smsaffari.it/count_new\.php\? +# ||siteinfo.libero.it^ (easyprivacy.txt: 10014) +.siteinfo.libero.it +# ||servizi.unionesarda.it/controlli/ (easyprivacy.txt: 10013) +.servizi.unionesarda.it/controlli/ +# ||seat.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10012) +.seat.it/cgi-bin/getcod\.cgi\? +# ||quattroruote.it/log.htm? (easyprivacy.txt: 10011) +.quattroruote.it/log\.htm\? +# ||pornolupo.org/track.js (easyprivacy.txt: 10010) +.pornolupo.org/track\.js +# ||paginegialle.it/cgi-bin/jimpres.cgi? (easyprivacy.txt: 10009) +.paginegialle.it/cgi-bin/jimpres\.cgi\? +# ||paginegialle.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10008) +.paginegialle.it/cgi-bin/getcod\.cgi\? +# ||mtv.it/flux/trackingcodes/ (easyprivacy.txt: 10007) +.mtv.it/flux/trackingcodes/ +# ||mediaset.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10006) +.mediaset.it/cgi-bin/getcod\.cgi\? +# ||livestats.la7.tv^ (easyprivacy.txt: 10005) +.livestats.la7.tv +# ||libero.it^*/counter.php? (easyprivacy.txt: 10004) +.libero.it/.*/counter\.php\? +# ||libero.it/search/abin/ajaxtrace? (easyprivacy.txt: 10003) +.libero.it/search/abin/ajaxtrace\? +# ||libero.it/cgi-bin/cdcountersp.cgi? (easyprivacy.txt: 10002) +.libero.it/cgi-bin/cdcountersp\.cgi\? +# ||libero.it/cgi-bin/cdcounter.cgi? (easyprivacy.txt: 10001) +.libero.it/cgi-bin/cdcounter\.cgi\? +# ||libero.it/cgi-bin/ajaxtrace? (easyprivacy.txt: 10000) +.libero.it/cgi-bin/ajaxtrace\? +# ||libero.it//js/comscore/ (easyprivacy.txt: 9999) +# ||la7.tv/ricerca/livestats.php? (easyprivacy.txt: 9998) +.la7.tv/ricerca/livestats\.php\? +# ||la7.it/js-live/nielsen1.js (easyprivacy.txt: 9997) +.la7.it/js-live/nielsen1\.js +# ||la7.it/js-live/livestats.js (easyprivacy.txt: 9996) +.la7.it/js-live/livestats\.js +# ||joka.it/inquiero/isapi/csf.dll? (easyprivacy.txt: 9995) +.joka.it/inquiero/isapi/csf\.dll\? +# ||getscreensaver.it/statistiche/ (easyprivacy.txt: 9994) +.getscreensaver.it/statistiche/ +# ||gazzetta.it^*/stats.php? (easyprivacy.txt: 9993) +.gazzetta.it/.*/stats\.php\? +# ||g.techweekeurope.it^ (easyprivacy.txt: 9992) +.g.techweekeurope.it +# ||fls-eu.amazon.it^ (easyprivacy.txt: 9991) +.fls-eu.amazon.it +# ||emng.libero.it^ (easyprivacy.txt: 9990) +.emng.libero.it +# ||deagostinipassion.it/collezioni/analytics.js (easyprivacy.txt: 9989) +.deagostinipassion.it/collezioni/analytics\.js +# ||click.tv.repubblica.it^ (easyprivacy.txt: 9988) +.click.tv.repubblica.it +# ||ciao.it/flextag/ (easyprivacy.txt: 9987) +.ciao.it/flextag/ +# ||c-date.it^*/tracking2/tr.js (easyprivacy.txt: 9986) +.c-date.it/.*/tracking2/tr\.js +# ||c-date.it/tracking? (easyprivacy.txt: 9985) +.c-date.it/tracking\? +# ||bachecaannunci.it/statins3.php? (easyprivacy.txt: 9984) +.bachecaannunci.it/statins3\.php\? +# ||analytics.tio.ch^ (easyprivacy.txt: 9983) +.analytics.tio.ch +# ||altervista.org^*/tb_hits_ (easyprivacy.txt: 9982) +.altervista.org/.*/tb_hits_ +# ||altervista.org/stats/ (easyprivacy.txt: 9981) +.altervista.org/stats/ +# ||altervista.org/js_tags/contatore.js (easyprivacy.txt: 9980) +.altervista.org/js_tags/contatore\.js +# ||altervista.org/js/contatore.js (easyprivacy.txt: 9979) +.altervista.org/js/contatore\.js +# ||altervista.org/fcgi/counter.pl? (easyprivacy.txt: 9978) +.altervista.org/fcgi/counter\.pl\? +# ||videa.hu/flvplayer_setcookie.php? (easyprivacy.txt: 9976) +.videa.hu/flvplayer_setcookie\.php\? +# ||walla.co.il/impression/ (easyprivacy.txt: 9974) +.walla.co.il/impression/ +# ||walla.co.il/CountsHP.asp? (easyprivacy.txt: 9973) +.walla.co.il/CountsHP\.asp\? +# ||stats.mako.co.il^ (easyprivacy.txt: 9972) +.stats.mako.co.il +# ||nana10.co.il/statistics/ (easyprivacy.txt: 9971) +.nana10.co.il/statistics/ +# ||inn.co.il/Controls/HPJS.ashx?act=log (easyprivacy.txt: 9970) +.inn.co.il/Controls/HPJS\.ashx\?act=log +# ||events.walla.co.il/events.asp (easyprivacy.txt: 9969) +.events.walla.co.il/events\.asp +# ||cellstats.mako.co.il^ (easyprivacy.txt: 9968) +.cellstats.mako.co.il +# ||bravo.israelweather.co.il^ (easyprivacy.txt: 9967) +.bravo.israelweather.co.il +# ||vidads.gr/imp/ (easyprivacy.txt: 9965) +.vidads.gr/imp/ +# ||ts.fi^*/spring.js (easyprivacy.txt: 9963) +.ts.fi/.*/spring\.js +# ||tiede.fi^*/zig.js (easyprivacy.txt: 9962) +.tiede.fi/.*/zig\.js +# ||stat.mtv3.fi^ (easyprivacy.txt: 9961) +.stat.mtv3.fi +# ||snstatic.fi^*/zig.js (easyprivacy.txt: 9960) +.snstatic.fi/.*/zig\.js +# ||sanoma.fi^*/zig.js (easyprivacy.txt: 9959) +.sanoma.fi/.*/zig\.js +# ||oikotie.fi^*/zig.js (easyprivacy.txt: 9958) +.oikotie.fi/.*/zig\.js +# ||mtv3.fi/remarketing.js (easyprivacy.txt: 9957) +.mtv3.fi/remarketing\.js +# ||iltasanomat.fi^*/zig_c.min.js (easyprivacy.txt: 9956) +.iltasanomat.fi/.*/zig_c\.min\.js +# ||huuto.net/js/analytic/ (easyprivacy.txt: 9955) +.huuto.net/js/analytic/ +# ||autobild.fi/zig.js (easyprivacy.txt: 9954) +.autobild.fi/zig\.js +# ||analytics.sanoma.fi^ (easyprivacy.txt: 9953) +.analytics.sanoma.fi +# ||3t.fi^*/zig.js (easyprivacy.txt: 9952) +.3t.fi/.*/zig\.js +# ||webstatistieken.xs4all.nl^ (easyprivacy.txt: 9950) +.webstatistieken.xs4all.nl +# ||vroom.be^*/stats.php? (easyprivacy.txt: 9949) +.vroom.be/.*/stats\.php\? +# ||vroom.be^*/stats.js? (easyprivacy.txt: 9948) +.vroom.be/.*/stats\.js\? +# ||simyo.nl/js/tracking.js? (easyprivacy.txt: 9947) +.simyo.nl/js/tracking\.js\? +# ||sanoma.nl/pixel/ (easyprivacy.txt: 9946) +.sanoma.nl/pixel/ +# ||rtl.nl/system/track/ (easyprivacy.txt: 9945) +.rtl.nl/system/track/ +# ||marktplaats.nl/add_counter_image. (easyprivacy.txt: 9944) +.marktplaats.nl/add_counter_image\. +# ||logs.ggweb.nl^ (easyprivacy.txt: 9943) +.logs.ggweb.nl +# ||klik.nrc.nl/ping? (easyprivacy.txt: 9942) +.klik.nrc.nl/ping\? +# ||o2.cz^*-ga_o2cz_bundle.js? (easyprivacy.txt: 9940) +.o2.cz/.*-ga_o2cz_bundle\.js\? +# ||kbmg.cz/tracker.js (easyprivacy.txt: 9939) +.kbmg.cz/tracker\.js +# ||blesk.cz/js/tracker.js (easyprivacy.txt: 9938) +.blesk.cz/js/tracker\.js +# ||jutarnji.hr/template/js/eph_analytics.js (easyprivacy.txt: 9936) +.jutarnji.hr/template/js/eph_analytics\.js +# ||dnevnik.hr/bin/usrtrck-new.php? (easyprivacy.txt: 9935) +.dnevnik.hr/bin/usrtrck-new\.php\? +# ||youku.com^*/click.php? (easyprivacy.txt: 9933) +.youku.com/.*/click\.php\? +# ||youku.com/yplaylog? (easyprivacy.txt: 9932) +.youku.com/yplaylog\? +# ||youku.com/ykvvlog? (easyprivacy.txt: 9931) +.youku.com/ykvvlog\? +# ||youku.com/compvlog? (easyprivacy.txt: 9930) +.youku.com/compvlog\? +# ||youdao.com/imp/cac.js (easyprivacy.txt: 9929) +.youdao.com/imp/cac\.js +# ||youdao.com/cf.gif? (easyprivacy.txt: 9928) +.youdao.com/cf\.gif\? +# ||wumii.com/images/pixel.png (easyprivacy.txt: 9927) +.wumii.com/images/pixel\.png +# ||wenku.baidu.com/tongji/ (easyprivacy.txt: 9926) +.wenku.baidu.com/tongji/ +# ||webstat.kuwo.cn^ (easyprivacy.txt: 9925) +.webstat.kuwo.cn +# ||webclick.yeshj.com^ (easyprivacy.txt: 9924) +.webclick.yeshj.com +# ||weather.com.cn/a1.js (easyprivacy.txt: 9923) +.weather.com.cn/a1\.js +# ||vatrack.hinet.net^ (easyprivacy.txt: 9922) +.vatrack.hinet.net +# ||v.blog.sohu.com/dostat.do? (easyprivacy.txt: 9921) +.v.blog.sohu.com/dostat\.do\? +# ||utrack.hexun.com^ (easyprivacy.txt: 9920) +.utrack.hexun.com +# ||unstat.baidu.com^$~subdocument (easyprivacy.txt: 9919) +.unstat.baidu.com +# ||uestat.video.qiyi.com^ (easyprivacy.txt: 9918) +.uestat.video.qiyi.com +# ||tv.sohu.com/upload/trace/ (easyprivacy.txt: 9917) +.tv.sohu.com/upload/trace/ +# ||tracker.live.tudou.com^ (easyprivacy.txt: 9916) +.tracker.live.tudou.com +# ||top.baidu.com/js/nsclick.js (easyprivacy.txt: 9915) +.top.baidu.com/js/nsclick\.js +# ||tongji2.vip.duba.net/__infoc.gif? (easyprivacy.txt: 9914) +.tongji2.vip.duba.net/__infoc\.gif\? +# ||tmall.com/add? (easyprivacy.txt: 9913) +.tmall.com/add\? +# ||titan24.com/scripts/stats.js (easyprivacy.txt: 9912) +.titan24.com/scripts/stats\.js +# ||tinglog.baidu.com^ (easyprivacy.txt: 9911) +.tinglog.baidu.com +# ||tf.360.cn^ (easyprivacy.txt: 9910) +.tf.360.cn +# ||stats.tudou.com^ (easyprivacy.txt: 9909) +.stats.tudou.com +# ||stats.autohome.com.cn^ (easyprivacy.txt: 9908) +.stats.autohome.com.cn +# ||statistic.takungpao.com^ (easyprivacy.txt: 9907) +.statistic.takungpao.com +# ||statistic.qzone.qq.com^ (easyprivacy.txt: 9906) +.statistic.qzone.qq.com +# ||static.qiyi.com/js/pingback/ (easyprivacy.txt: 9905) +.static.qiyi.com/js/pingback/ +# ||stat.zol.com.cn^ (easyprivacy.txt: 9904) +.stat.zol.com.cn +# ||stat.xunlei.com^ (easyprivacy.txt: 9903) +.stat.xunlei.com +# ||stat.uuu9.com^ (easyprivacy.txt: 9902) +.stat.uuu9.com +# ||stat.tudou.com^ (easyprivacy.txt: 9901) +.stat.tudou.com +# ||stat.tianya.cn^ (easyprivacy.txt: 9900) +.stat.tianya.cn +# ||stat.stheadline.com^ (easyprivacy.txt: 9899) +.stat.stheadline.com +# ||stat.pptv.com^ (easyprivacy.txt: 9898) +.stat.pptv.com +# ||stat.ppstream.com^ (easyprivacy.txt: 9897) +.stat.ppstream.com +# ||stat.ku6.com^ (easyprivacy.txt: 9896) +.stat.ku6.com +# ||stat.iteye.com^ (easyprivacy.txt: 9895) +.stat.iteye.com +# ||stat.hudong.com^ (easyprivacy.txt: 9894) +.stat.hudong.com +# ||stat.funshion.net^ (easyprivacy.txt: 9893) +.stat.funshion.net +# ||stat.caijing.com.cn^ (easyprivacy.txt: 9892) +.stat.caijing.com.cn +# ||stat.bilibili.tv^ (easyprivacy.txt: 9891) +.stat.bilibili.tv +# ||stat.55bbs.com^ (easyprivacy.txt: 9890) +.stat.55bbs.com +# ||stat.1688.com^ (easyprivacy.txt: 9889) +.stat.1688.com +# ||stadig.ifeng.com^ (easyprivacy.txt: 9888) +.stadig.ifeng.com +# ||sta.ifeng.com^ (easyprivacy.txt: 9887) +.sta.ifeng.com +# ||st.vq.ku6.cn^ (easyprivacy.txt: 9886) +.st.vq.ku6.cn +# ||soufun.com/stats/ (easyprivacy.txt: 9885) +.soufun.com/stats/ +# ||soufun.com/click/ (easyprivacy.txt: 9884) +.soufun.com/click/ +# ||sohu.com/pv? (easyprivacy.txt: 9883) +.sohu.com/pv\? +# ||sohu.com/ctr.gif? (easyprivacy.txt: 9882) +.sohu.com/ctr\.gif\? +# ||sohu.com.cn/hdpb.gif? (easyprivacy.txt: 9881) +.sohu.com.cn/hdpb\.gif\? +# ||shrek.6.cn^ (easyprivacy.txt: 9880) +.shrek.6.cn +# ||sclick.baidu.com^ (easyprivacy.txt: 9879) +.sclick.baidu.com +# ||s.renren.com^ (easyprivacy.txt: 9878) +.s.renren.com +# ||s.qhupdate.com^ (easyprivacy.txt: 9877) +.s.qhupdate.com +# ||s.pixfs.net/visitor.pixplug.in/ (easyprivacy.txt: 9876) +.s.pixfs.net/visitor\.pixplug\.in/ +# ||s.pixfs.net/js/pixlogger.min.js (easyprivacy.txt: 9875) +.s.pixfs.net/js/pixlogger\.min\.js +# ||s.360.cn^ (easyprivacy.txt: 9874) +.s.360.cn +# ||rgd.com.cn/counter/ (easyprivacy.txt: 9873) +.rgd.com.cn/counter/ +# ||report.qq.com^ (easyprivacy.txt: 9872) +.report.qq.com +# ||rcgi.video.qq.com^ (easyprivacy.txt: 9871) +.rcgi.video.qq.com +# ||ranking.ynet.com^ (easyprivacy.txt: 9870) +.ranking.ynet.com +# ||qq.com/p? (easyprivacy.txt: 9869) +.qq.com/p\? +# ||pingjs.qq.com^ (easyprivacy.txt: 9868) +.pingjs.qq.com +# ||pingback.sogou.com^ (easyprivacy.txt: 9867) +.pingback.sogou.com +# ||pb.i.sogou.com^ (easyprivacy.txt: 9866) +.pb.i.sogou.com +# ||pan.baidu.com/api/analytics? (easyprivacy.txt: 9865) +.pan.baidu.com/api/analytics\? +# ||p-log.ykimg.com^ (easyprivacy.txt: 9864) +.p-log.ykimg.com +# ||on.cc^*/checkrev.gif? (easyprivacy.txt: 9863) +.on.cc/.*/checkrev\.gif\? +# ||nstat.tudou.com^ (easyprivacy.txt: 9862) +.nstat.tudou.com +# ||nextmedia.com/1x1.gif? (easyprivacy.txt: 9861) +.nextmedia.com/1x1\.gif\? +# ||narutom.com/stat.js (easyprivacy.txt: 9860) +.narutom.com/stat\.js +# ||luobo.tv/staticts.html (easyprivacy.txt: 9859) +.luobo.tv/staticts\.html +# ||logstat.caixin.com^ (easyprivacy.txt: 9858) +.logstat.caixin.com +# ||logs.live.tudou.com^ (easyprivacy.txt: 9857) +.logs.live.tudou.com +# ||logs.51cto.com^ (easyprivacy.txt: 9856) +.logs.51cto.com +# ||loginlog.sdo.com^ (easyprivacy.txt: 9855) +.loginlog.sdo.com +# ||log1.17173.com^ (easyprivacy.txt: 9854) +.log1.17173.com +# ||log.ynet.com^ (easyprivacy.txt: 9853) +.log.ynet.com +# ||log.kuwo.cn^ (easyprivacy.txt: 9852) +.log.kuwo.cn +# ||log.51cto.com^ (easyprivacy.txt: 9851) +.log.51cto.com +# ||log*.ku6.com^ (easyprivacy.txt: 9850) +.log*./.*\.ku6\.com[^\w%.-] +.log*.ku6.com +# ||ku6.com/ku6.gif? (easyprivacy.txt: 9849) +.ku6.com/ku6\.gif\? +# ||jscss.kdslife.com/club/html/count/PChome_Count.js (easyprivacy.txt: 9848) +.jscss.kdslife.com/club/html/count/PChome_Count\.js +# ||js.soufunimg.com/count/ (easyprivacy.txt: 9847) +.js.soufunimg.com/count/ +# ||js.sohu.com/wrating0820.js (easyprivacy.txt: 9846) +.js.sohu.com/wrating0820\.js +# ||js.sohu.com/track/ (easyprivacy.txt: 9845) +.js.sohu.com/track/ +# ||js.kuwo.cn/stat/ (easyprivacy.txt: 9844) +.js.kuwo.cn/stat/ +# ||hk.ndx.nextmedia.com^ (easyprivacy.txt: 9843) +.hk.ndx.nextmedia.com +# ||his.tv.sohu.com/his/ping.do? (easyprivacy.txt: 9842) +.his.tv.sohu.com/his/ping\.do\? +# ||hdslb.com/images/isptrack.js (easyprivacy.txt: 9841) +.hdslb.com/images/isptrack\.js +# ||fls-cn.amazon.cn^ (easyprivacy.txt: 9840) +.fls-cn.amazon.cn +# ||firefoxchina.cn/*/trac.js (easyprivacy.txt: 9839) +.firefoxchina.cn/.*/trac\.js +# ||eclick.baidu.com^ (easyprivacy.txt: 9838) +.eclick.baidu.com +# ||ebook.tianya.cn/js/stat.js (easyprivacy.txt: 9837) +.ebook.tianya.cn/js/stat\.js +# ||eastmoney.com/counter.js? (easyprivacy.txt: 9836) +.eastmoney.com/counter\.js\? +# ||dwtracking.sdo.com^ (easyprivacy.txt: 9835) +.dwtracking.sdo.com +# ||duowan.com/public/s/market_count.js (easyprivacy.txt: 9834) +.duowan.com/public/s/market_count\.js +# ||duowan.com/duowan.js (easyprivacy.txt: 9833) +.duowan.com/duowan\.js +# ||docin.com/app/playerLoadLog/ (easyprivacy.txt: 9832) +.docin.com/app/playerLoadLog/ +# ||dmtracking.1688.com^ (easyprivacy.txt: 9831) +.dmtracking.1688.com +# ||dj.renren.com^ (easyprivacy.txt: 9830) +.dj.renren.com +# ||dc.letv.com^ (easyprivacy.txt: 9829) +.dc.letv.com +# ||dayoo.com/sta/da.js (easyprivacy.txt: 9828) +.dayoo.com/sta/da\.js +# ||cri.cn/wrating.js (easyprivacy.txt: 9827) +.cri.cn/wrating\.js +# ||cri.cn/a1.js (easyprivacy.txt: 9826) +.cri.cn/a1\.js +# ||counter.sina.com.cn/moodq? (easyprivacy.txt: 9825) +.counter.sina.com.cn/moodq\? +# ||count5.pconline.com.cn^ (easyprivacy.txt: 9824) +.count5.pconline.com.cn +# ||count.vrs.sohu.com^$object-subrequest (easyprivacy.txt: 9823) +.count.vrs.sohu.com +# ||count.video.sina.com.cn^ (easyprivacy.txt: 9822) +.count.video.sina.com.cn +# ||count.qiannao.com^ (easyprivacy.txt: 9821) +.count.qiannao.com +# ||count.newhua.com^ (easyprivacy.txt: 9820) +.count.newhua.com +# ||count.kandian.com^$object-subrequest (easyprivacy.txt: 9819) +.count.kandian.com +# ||count.joy.cn^ (easyprivacy.txt: 9818) +.count.joy.cn +# ||cnzz.com/stat. (easyprivacy.txt: 9817) +.cnzz.com/stat\. +# ||clkstat.qihoo.com^ (easyprivacy.txt: 9816) +.clkstat.qihoo.com +# ||cdn.baidupcs.com/monitor.jpg? (easyprivacy.txt: 9815) +.cdn.baidupcs.com/monitor\.jpg\? +# ||cast.ra.icast.cn^ (easyprivacy.txt: 9814) +.cast.ra.icast.cn +# ||btrace.qq.com^ (easyprivacy.txt: 9813) +.btrace.qq.com +# ||baofeng.com/script/baidu_ (easyprivacy.txt: 9812) +.baofeng.com/script/baidu_ +# ||baidu.com^*/w.gif? (easyprivacy.txt: 9811) +.baidu.com/.*/w\.gif\? +# ||baidu.com^*/s.gif? (easyprivacy.txt: 9810) +.baidu.com/.*/s\.gif\? +# ||baidu.com^*/c.gif? (easyprivacy.txt: 9809) +.baidu.com/.*/c\.gif\? +# ||baidu.com/tb/pms/img/st.gif? (easyprivacy.txt: 9808) +.baidu.com/tb/pms/img/st\.gif\? +# ||atm.youku.com^ (easyprivacy.txt: 9807) +.atm.youku.com +# ||analytics.zhihu.com^ (easyprivacy.txt: 9806) +.analytics.zhihu.com +# ||analytics.nextmedia.com^ (easyprivacy.txt: 9805) +.analytics.nextmedia.com +# ||analytics.163.com^ (easyprivacy.txt: 9804) +.analytics.163.com +# ||analy.qq.com^ (easyprivacy.txt: 9803) +.analy.qq.com +# ||adgeo.163.com^ (easyprivacy.txt: 9802) +.adgeo.163.com +# ||acfun.tv/api/count.aspx (easyprivacy.txt: 9801) +.acfun.tv/api/count\.aspx +# ||99sushe.com^*/stat.js (easyprivacy.txt: 9800) +.99sushe.com/.*/stat\.js +# ||591.com.tw/action/stat/ (easyprivacy.txt: 9799) +.591.com.tw/action/stat/ +# ||56img.com/script/fn/stat/ (easyprivacy.txt: 9798) +.56img.com/script/fn/stat/ +# ||55bbs.com/pv.js (easyprivacy.txt: 9797) +.55bbs.com/pv\.js +# ||17173.com/ping.js (easyprivacy.txt: 9796) +.17173.com/ping\.js +# ||counter.search.bg^ (easyprivacy.txt: 9793) +.counter.search.bg +# ||ratteb.com/js.js (easyprivacy.txt: 9791) +.ratteb.com/js\.js +# ||zonecss.fr/images/statscreen.gif? (easyprivacy.txt: 9789) +.zonecss.fr/images/statscreen\.gif\? +# ||zonecss.fr/images/stat_robocop.gif? (easyprivacy.txt: 9788) +.zonecss.fr/images/stat_robocop\.gif\? +# ||virginmobile.fr/ea.js (easyprivacy.txt: 9787) +.virginmobile.fr/ea\.js +# ||unblog.fr/cu.js (easyprivacy.txt: 9786) +.unblog.fr/cu\.js +# ||tracking.ha.rueducommerce.fr^ (easyprivacy.txt: 9785) +.tracking.ha.rueducommerce.fr +# ||tracking.cdiscount.com^ (easyprivacy.txt: 9784) +.tracking.cdiscount.com +# ||tracker.cds-tracking.com^ (easyprivacy.txt: 9783) +.tracker.cds-tracking.com +# ||tracker-id.cdiscount.com^ (easyprivacy.txt: 9782) +.tracker-id.cdiscount.com +# ||surace-jujitsu.fr/outils/compteur_php/ (easyprivacy.txt: 9781) +.surace-jujitsu.fr/outils/compteur_php/ +# ||stats1x1.kapaza.be^ (easyprivacy.txt: 9780) +.stats1x1.kapaza.be +# ||stat.webevolutis.com^ (easyprivacy.txt: 9779) +.stat.webevolutis.com +# ||sport365.fr/ea.js (easyprivacy.txt: 9778) +.sport365.fr/ea\.js +# ||sfr.fr/js/pent-stats.jsp (easyprivacy.txt: 9777) +.sfr.fr/js/pent-stats\.jsp +# ||rtl.fr/stats/ (easyprivacy.txt: 9776) +.rtl.fr/stats/ +# ||rtl.be^*/trkfblk.js (easyprivacy.txt: 9775) +.rtl.be/.*/trkfblk\.js +# ||r.orange.fr^ (easyprivacy.txt: 9774) +.r.orange.fr +# ||pagesjaunes.fr/crmmetrix/ (easyprivacy.txt: 9773) +.pagesjaunes.fr/crmmetrix/ +# ||pagesjaunes.fr/bva/track.js (easyprivacy.txt: 9772) +.pagesjaunes.fr/bva/track\.js +# ||p.pagesjaunes.fr^ (easyprivacy.txt: 9771) +.p.pagesjaunes.fr +# ||ovni9.com/suggestion/stats/ (easyprivacy.txt: 9770) +.ovni9.com/suggestion/stats/ +# ||orange.fr/track? (easyprivacy.txt: 9769) +.orange.fr/track\? +# ||nouvelobs.com/trafiz- (easyprivacy.txt: 9768) +.nouvelobs.com/trafiz- +# ||nouvelobs.com/tools/csrum.php (easyprivacy.txt: 9767) +.nouvelobs.com/tools/csrum\.php +# ||nouvelobs.com/scripts/stats.php? (easyprivacy.txt: 9766) +.nouvelobs.com/scripts/stats\.php\? +# ||lemde.fr^*/xiti/ (easyprivacy.txt: 9765) +.lemde.fr/.*/xiti/ +# ||lemde.fr^*/tracking/ (easyprivacy.txt: 9764) +.lemde.fr/.*/tracking/ +# ||lemde.fr^*/metrics/ (easyprivacy.txt: 9763) +.lemde.fr/.*/metrics/ +# ||lecho.be/fb/? (easyprivacy.txt: 9762) +.lecho.be/fb/\? +# ||lavenircdn.net^*/analytics.js? (easyprivacy.txt: 9761) +.lavenircdn.net/.*/analytics\.js\? +# ||hit.leboncoin.fr^ (easyprivacy.txt: 9760) +.hit.leboncoin.fr +# ||gstat.orange.fr^ (easyprivacy.txt: 9759) +.gstat.orange.fr +# ||grazia.fr/ea.js (easyprivacy.txt: 9758) +.grazia.fr/ea\.js +# ||g.itespresso.fr^ (easyprivacy.txt: 9757) +.g.itespresso.fr +# ||fls-eu.amazon.fr^ (easyprivacy.txt: 9756) +.fls-eu.amazon.fr +# ||eultech.fnac.com^ (easyprivacy.txt: 9755) +.eultech.fnac.com +# ||editeurjavascript.com/hit-parade.php (easyprivacy.txt: 9754) +.editeurjavascript.com/hit-parade\.php +# ||ea.rueducommerce.fr^ (easyprivacy.txt: 9753) +.ea.rueducommerce.fr +# ||ea.monsieurmanuel.com^ (easyprivacy.txt: 9752) +.ea.monsieurmanuel.com +# ||ea.lexpress.fr^ (easyprivacy.txt: 9751) +.ea.lexpress.fr +# ||ea.jeuxvideopc.com^ (easyprivacy.txt: 9750) +.ea.jeuxvideopc.com +# ||ea.clubic.com^ (easyprivacy.txt: 9749) +.ea.clubic.com +# ||developpez.com/public/js/track.js (easyprivacy.txt: 9748) +.developpez.com/public/js/track\.js +# ||clubic.com/editorial/publier_count.php? (easyprivacy.txt: 9747) +.clubic.com/editorial/publier_count\.php\? +# ||bloguez.com/manager/compteurs/ (easyprivacy.txt: 9746) +.bloguez.com/manager/compteurs/ +# ||azurewebsites.net^*/mnr-mediametrie-tracking- (easyprivacy.txt: 9745) +.azurewebsites.net/.*/mnr-mediametrie-tracking- +# ||arte.tv/includes/xiti/ (easyprivacy.txt: 9744) +.arte.tv/includes/xiti/ +# ||allocine.fr/ws/geocoding.ashx (easyprivacy.txt: 9743) +.allocine.fr/ws/geocoding\.ashx +# ||zeit.de/js/rsa2.js (easyprivacy.txt: 9741) +.zeit.de/js/rsa2\.js +# ||zeit.de/js/rsa.js (easyprivacy.txt: 9740) +.zeit.de/js/rsa\.js +# ||zdf.de^*/trackingivw? (easyprivacy.txt: 9739) +.zdf.de/.*/trackingivw\? +# ||zdf.de^*/tracking? (easyprivacy.txt: 9738) +.zdf.de/.*/tracking\? +# ||xtranews.de/counter/ (easyprivacy.txt: 9737) +.xtranews.de/counter/ +# ||xara.hse24.de^ (easyprivacy.txt: 9736) +.xara.hse24.de +# ||wiwo.de/analytics/ (easyprivacy.txt: 9735) +.wiwo.de/analytics/ +# ||wirtschaftspresse.biz/pshb? (easyprivacy.txt: 9734) +.wirtschaftspresse.biz/pshb\? +# ||wienerzeitung.at/__webtrends/ (easyprivacy.txt: 9733) +.wienerzeitung.at/__webtrends/ +# ||wetter.de/js/tracking.js (easyprivacy.txt: 9732) +.wetter.de/js/tracking\.js +# ||wer-weiss-was.de/indication/clue_*.gif? (easyprivacy.txt: 9731) +.wer-weiss-was.de/indication/clue_.*\.gif\? +# ||webts.adac.de^ (easyprivacy.txt: 9730) +.webts.adac.de +# ||webnews.de^*/loglib.js (easyprivacy.txt: 9729) +.webnews.de/.*/loglib\.js +# ||web.de/pic? (easyprivacy.txt: 9728) +.web.de/pic\? +# ||web.de/ivw/cp/ (easyprivacy.txt: 9727) +.web.de/ivw/cp/ +# ||web-track.telekom-dienste.de^ (easyprivacy.txt: 9726) +.web-track.telekom-dienste.de +# ||wdm.map24.com^ (easyprivacy.txt: 9725) +.wdm.map24.com +# ||viviano.de/cgi-bin/stat_gateway.cgi? (easyprivacy.txt: 9724) +.viviano.de/cgi-bin/stat_gateway\.cgi\? +# ||vip.de^*/tracking.js (easyprivacy.txt: 9723) +.vip.de/.*/tracking\.js +# ||unser-star-fuer-oslo.de^*/stats.php (easyprivacy.txt: 9722) +.unser-star-fuer-oslo.de/.*/stats\.php +# ||ui-portal.de/brbtpixel/ (easyprivacy.txt: 9721) +.ui-portal.de/brbtpixel/ +# ||tvcommunity.at/filmpicture.aspx?count=1& (easyprivacy.txt: 9720) +.tvcommunity.at/filmpicture\.aspx\?count=1& +# ||ts.rtl.de^ (easyprivacy.txt: 9719) +.ts.rtl.de +# ||ts.otto.de^ (easyprivacy.txt: 9718) +.ts.otto.de +# ||ts.faz.net^ (easyprivacy.txt: 9717) +.ts.faz.net +# ||tracking.tchibo.de^ (easyprivacy.txt: 9716) +.tracking.tchibo.de +# ||tracking.statravel.de^ (easyprivacy.txt: 9715) +.tracking.statravel.de +# ||tracking.sport1.de^ (easyprivacy.txt: 9714) +.tracking.sport1.de +# ||tracking.oe24.at^ (easyprivacy.txt: 9713) +.tracking.oe24.at +# ||tracking.netbank.de^ (easyprivacy.txt: 9712) +.tracking.netbank.de +# ||tracking.mobile.de^ (easyprivacy.txt: 9711) +.tracking.mobile.de +# ||tracking.kurier.at^ (easyprivacy.txt: 9710) +.tracking.kurier.at +# ||tracking.hrs.de^ (easyprivacy.txt: 9709) +.tracking.hrs.de +# ||tracking.beilagen-prospekte.de^ (easyprivacy.txt: 9708) +.tracking.beilagen-prospekte.de +# ||tracking.autoscout24.com^ (easyprivacy.txt: 9707) +.tracking.autoscout24.com +# ||trackerstatistik.init-ag.de^ (easyprivacy.txt: 9706) +.trackerstatistik.init-ag.de +# ||track.cinestar.de^ (easyprivacy.txt: 9705) +.track.cinestar.de +# ||tr.werkenntwen.de^ (easyprivacy.txt: 9704) +.tr.werkenntwen.de +# ||topnews.de^*/aws.cgi? (easyprivacy.txt: 9703) +.topnews.de/.*/aws\.cgi\? +# ||topnews.de/aws.js (easyprivacy.txt: 9702) +.topnews.de/aws\.js +# ||textundblog.de/powercounter.js (easyprivacy.txt: 9701) +.textundblog.de/powercounter\.js +# ||talkline.de^*/count.talkline.js (easyprivacy.txt: 9700) +.talkline.de/.*/count\.talkline\.js +# ||tagesspiegel.de/analytics/ (easyprivacy.txt: 9699) +.tagesspiegel.de/analytics/ +# ||t-online.de^*/stats.js?track= (easyprivacy.txt: 9698) +.t-online.de/.*/stats\.js\?track= +# ||t-online.de^*/noresult.js?track= (easyprivacy.txt: 9697) +.t-online.de/.*/noresult\.js\?track= +# ||superfunblog.com/stats/stats.php (easyprivacy.txt: 9696) +.superfunblog.com/stats/stats\.php +# ||suite101.de/tracking/ (easyprivacy.txt: 9695) +.suite101.de/tracking/ +# ||suedkurier.de/al/analytics/ (easyprivacy.txt: 9694) +.suedkurier.de/al/analytics/ +# ||stats.daserste.de^ (easyprivacy.txt: 9693) +.stats.daserste.de +# ||stats.bmw.de^ (easyprivacy.txt: 9692) +.stats.bmw.de +# ||stargate-planet.de^*counter*/c$image,script (easyprivacy.txt: 9691) +.stargate-planet.de/.*counter.*/c +# ||sportal.de/js/cf.analytics.js (easyprivacy.txt: 9690) +.sportal.de/js/cf\.analytics\.js +# ||spiegel.de^*/statistic/ (easyprivacy.txt: 9689) +.spiegel.de/.*/statistic/ +# ||shortnews.de/iframes/view_news.cfm? (easyprivacy.txt: 9688) +.shortnews.de/iframes/view_news\.cfm\? +# ||secreta.de/tinc? (easyprivacy.txt: 9687) +.secreta.de/tinc\? +# ||salzburg.com/nwas/count.php? (easyprivacy.txt: 9686) +.salzburg.com/nwas/count\.php\? +# ||s.fsphp.t-online.de^ (easyprivacy.txt: 9685) +.s.fsphp.t-online.de +# ||rwt.reichelt.de^ (easyprivacy.txt: 9684) +.rwt.reichelt.de +# ||rtlradio.lu/stats.php? (easyprivacy.txt: 9683) +.rtlradio.lu/stats\.php\? +# ||rtlradio.de/stats.php? (easyprivacy.txt: 9682) +.rtlradio.de/stats\.php\? +# ||rtl.de/tools/count/ (easyprivacy.txt: 9681) +.rtl.de/tools/count/ +# ||rtl.de/count/ut/x.gif? (easyprivacy.txt: 9680) +.rtl.de/count/ut/x\.gif\? +# ||rl.heise.de^ (easyprivacy.txt: 9679) +.rl.heise.de +# ||rhein-zeitung.de^*/picksel/ (easyprivacy.txt: 9678) +.rhein-zeitung.de/.*/picksel/ +# ||remixshare.com/stat/ (easyprivacy.txt: 9677) +.remixshare.com/stat/ +# ||rem-track.bild.de^ (easyprivacy.txt: 9676) +.rem-track.bild.de +# ||quoka.de^*/wtlog_02.js (easyprivacy.txt: 9675) +.quoka.de/.*/wtlog_02\.js +# ||pxc.otto.de^ (easyprivacy.txt: 9674) +.pxc.otto.de +# ||putpat.tv/tracking? (easyprivacy.txt: 9673) +.putpat.tv/tracking\? +# ||prophet.heise.de^ (easyprivacy.txt: 9672) +.prophet.heise.de +# ||proactive.base.de^ (easyprivacy.txt: 9671) +.proactive.base.de +# ||preisvergleich.de/setcookie/ (easyprivacy.txt: 9670) +.preisvergleich.de/setcookie/ +# ||powercount.jswelt.de^ (easyprivacy.txt: 9669) +.powercount.jswelt.de +# ||postbank.de^*/pb_trackingclientstat_js.js (easyprivacy.txt: 9668) +.postbank.de/.*/pb_trackingclientstat_js\.js +# ||postbank.de^*/pb_tracking_js.js (easyprivacy.txt: 9667) +.postbank.de/.*/pb_tracking_js\.js +# ||pooltrax.com/stats/ (easyprivacy.txt: 9666) +.pooltrax.com/stats/ +# ||pnn.de/counter/ (easyprivacy.txt: 9665) +.pnn.de/counter/ +# ||playomat.de/sfye_noscript.php? (easyprivacy.txt: 9664) +.playomat.de/sfye_noscript\.php\? +# ||pixel.prosieben.de^ (easyprivacy.txt: 9663) +.pixel.prosieben.de +# ||pixel.bild.de^ (easyprivacy.txt: 9662) +.pixel.bild.de +# ||pixel.1und1.de^ (easyprivacy.txt: 9661) +.pixel.1und1.de +# ||pix.friendscout24.de^ (easyprivacy.txt: 9660) +.pix.friendscout24.de +# ||pcwelt.de^*/pic.gif? (easyprivacy.txt: 9659) +.pcwelt.de/.*/pic\.gif\? +# ||pcgames.de^*/remotecampaigntracker.php (easyprivacy.txt: 9658) +.pcgames.de/.*/remotecampaigntracker\.php +# ||pcfreunde.de/wb. (easyprivacy.txt: 9657) +.pcfreunde.de/wb\. +# ||passul.t-online.de^ (easyprivacy.txt: 9656) +.passul.t-online.de +# ||pap.zalando.de^ (easyprivacy.txt: 9655) +.pap.zalando.de +# ||otto.de^*/beacons/ (easyprivacy.txt: 9654) +.otto.de/.*/beacons/ +# ||otto.de/tr/p.gif? (easyprivacy.txt: 9653) +.otto.de/tr/p\.gif\? +# ||otto.de/servlet/landmarkservlet? (easyprivacy.txt: 9652) +.otto.de/servlet/landmarkservlet\? +# ||otik.de/tracker/ (easyprivacy.txt: 9651) +.otik.de/tracker/ +# ||orf.at/ivwscript.js (easyprivacy.txt: 9650) +.orf.at/ivwscript\.js +# ||o2online.de^*/psyma/ (easyprivacy.txt: 9649) +.o2online.de/.*/psyma/ +# ||nzz.ch/statistic? (easyprivacy.txt: 9648) +.nzz.ch/statistic\? +# ||nzz.ch/statistic/ (easyprivacy.txt: 9647) +.nzz.ch/statistic/ +# ||npage.de/get_statistics.php? (easyprivacy.txt: 9646) +.npage.de/get_statistics\.php\? +# ||noz.de/tracking/ (easyprivacy.txt: 9645) +.noz.de/tracking/ +# ||nox.to/files/frame.htm (easyprivacy.txt: 9644) +.nox.to/files/frame\.htm +# ||nowonscreen.com/statistik_ (easyprivacy.txt: 9643) +.nowonscreen.com/statistik_ +# ||nickles.de/ivw/ (easyprivacy.txt: 9642) +.nickles.de/ivw/ +# ||news.ch/newslogbug.asp? (easyprivacy.txt: 9641) +.news.ch/newslogbug\.asp\? +# ||n24.de^*/tracking.js (easyprivacy.txt: 9640) +.n24.de/.*/tracking\.js +# ||myvideo.de/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9639) +.myvideo.de/dynamic/mingreport\.php +# ||myvideo.ch/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9638) +.myvideo.ch/dynamic/mingreport\.php +# ||myvideo.at/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9637) +.myvideo.at/dynamic/mingreport\.php +# ||musik4fun.com/ga.php? (easyprivacy.txt: 9636) +.musik4fun.com/ga\.php\? +# ||multicounter.de^$third-party (easyprivacy.txt: 9635) +.multicounter.de +# ||muensterland.de^*/zaehlpixel.php? (easyprivacy.txt: 9634) +.muensterland.de/.*/zaehlpixel\.php\? +# ||msxstudios.de^*/system/stats/ (easyprivacy.txt: 9633) +.msxstudios.de/.*/system/stats/ +# ||msn.com^*/detrack.js (easyprivacy.txt: 9632) +.msn.com/.*/detrack\.js +# ||ms.computerbild.de^ (easyprivacy.txt: 9631) +.ms.computerbild.de +# ||mopo.de/uid/ (easyprivacy.txt: 9630) +.mopo.de/uid/ +# ||mobilcom-debitel.de/track/ (easyprivacy.txt: 9629) +.mobilcom-debitel.de/track/ +# ||mm.welt.de^ (easyprivacy.txt: 9628) +.mm.welt.de +# ||mikrocontroller.net^*/count_view/ (easyprivacy.txt: 9627) +.mikrocontroller.net/.*/count_view/ +# ||merkur.de/connector.php? (easyprivacy.txt: 9626) +.merkur.de/connector\.php\? +# ||meinestadt.de^*/tracking/ (easyprivacy.txt: 9625) +.meinestadt.de/.*/tracking/ +# ||medizinauskunft.de/logger/ (easyprivacy.txt: 9624) +.medizinauskunft.de/logger/ +# ||manager-magazin.de/js/http/*,testat_ (easyprivacy.txt: 9623) +.manager-magazin.de/js/http/.*,testat_ +# ||magnus.de^*/pic.gif? (easyprivacy.txt: 9622) +.magnus.de/.*/pic\.gif\? +# ||macwelt.de/images/pic.gif? (easyprivacy.txt: 9621) +.macwelt.de/images/pic\.gif\? +# ||macnews.de/logreferrer.php (easyprivacy.txt: 9620) +.macnews.de/logreferrer\.php +# ||lokalisten.de/tracking.gif (easyprivacy.txt: 9619) +.lokalisten.de/tracking\.gif +# ||logging.wilmaa.com^ (easyprivacy.txt: 9618) +.logging.wilmaa.com +# ||log.wilmaa.com^ (easyprivacy.txt: 9617) +.log.wilmaa.com +# ||log.sz-online.de^ (easyprivacy.txt: 9616) +.log.sz-online.de +# ||log.suchen.de^ (easyprivacy.txt: 9615) +.log.suchen.de +# ||laut.de^*/analyse.gif? (easyprivacy.txt: 9614) +.laut.de/.*/analyse\.gif\? +# ||krissi-ist-weg.de/ce_vcounter/ (easyprivacy.txt: 9613) +.krissi-ist-weg.de/ce_vcounter/ +# ||koins.de/screen.js (easyprivacy.txt: 9612) +.koins.de/screen\.js +# ||kicker.de^*/videocount? (easyprivacy.txt: 9611) +.kicker.de/.*/videocount\? +# ||k-play.de/screen.js (easyprivacy.txt: 9610) +.k-play.de/screen\.js +# ||k-foren.de/screen.js (easyprivacy.txt: 9609) +.k-foren.de/screen\.js +# ||k-files.de/screen.js (easyprivacy.txt: 9608) +.k-files.de/screen\.js +# ||jolie.de^*/pic.gif? (easyprivacy.txt: 9607) +.jolie.de/.*/pic\.gif\? +# ||jobanova.de/stats.php? (easyprivacy.txt: 9606) +.jobanova.de/stats\.php\? +# ||ht4u.net^*/blackpixel2.php (easyprivacy.txt: 9605) +.ht4u.net/.*/blackpixel2\.php +# ||horizont.net/stats/ (easyprivacy.txt: 9604) +.horizont.net/stats/ +# ||homepage-baukasten.de/cookie.php? (easyprivacy.txt: 9603) +.homepage-baukasten.de/cookie\.php\? +# ||hdm-stuttgart.de/count.cgi? (easyprivacy.txt: 9602) +.hdm-stuttgart.de/count\.cgi\? +# ||hartgeld.com^*/count.cgi? (easyprivacy.txt: 9601) +.hartgeld.com/.*/count\.cgi\? +# ||hardwareschotte.de/na/mdc.php? (easyprivacy.txt: 9600) +.hardwareschotte.de/na/mdc\.php\? +# ||hardwarelabs.de/stat/ (easyprivacy.txt: 9599) +.hardwarelabs.de/stat/ +# ||hardware-infos.com/counter/ (easyprivacy.txt: 9598) +.hardware-infos.com/counter/ +# ||handelsblatt.com/analytics/ (easyprivacy.txt: 9597) +.handelsblatt.com/analytics/ +# ||goyellow.de/trackbrowser.jsp (easyprivacy.txt: 9596) +.goyellow.de/trackbrowser\.jsp +# ||golem.de/staticrl/scripts/golem_cpxl_ (easyprivacy.txt: 9595) +.golem.de/staticrl/scripts/golem_cpxl_ +# ||golem.de/staticrl/scripts/golem_cpx_ (easyprivacy.txt: 9594) +.golem.de/staticrl/scripts/golem_cpx_ +# ||go.bluewin.ch^ (easyprivacy.txt: 9593) +.go.bluewin.ch +# ||giessener-anzeiger.de/stat/ (easyprivacy.txt: 9592) +.giessener-anzeiger.de/stat/ +# ||gg24.de^*/count.cgi? (easyprivacy.txt: 9591) +.gg24.de/.*/count\.cgi\? +# ||gets.faz.net^ (easyprivacy.txt: 9590) +.gets.faz.net +# ||gamestar.de/_misc/tracking/ (easyprivacy.txt: 9589) +.gamestar.de/_misc/tracking/ +# ||gamepro.de^*/visitcount.js (easyprivacy.txt: 9588) +.gamepro.de/.*/visitcount\.js +# ||gala.de/js/tracking- (easyprivacy.txt: 9587) +.gala.de/js/tracking- +# ||g.silicon.de^ (easyprivacy.txt: 9586) +.g.silicon.de +# ||ftd.de^*/track.php? (easyprivacy.txt: 9585) +.ftd.de/.*/track\.php\? +# ||fr-online.de/analytics/ (easyprivacy.txt: 9584) +.fr-online.de/analytics/ +# ||fls-eu.amazon.de^ (easyprivacy.txt: 9583) +.fls-eu.amazon.de +# ||fireball.de/statistikframe.asp? (easyprivacy.txt: 9582) +.fireball.de/statistikframe\.asp\? +# ||feed-reader.net/tracking.php (easyprivacy.txt: 9581) +.feed-reader.net/tracking\.php +# ||faz.net^*/smarttag.js (easyprivacy.txt: 9580) +.faz.net/.*/smarttag\.js +# ||faz.net^*/ivw/ (easyprivacy.txt: 9579) +.faz.net/.*/ivw/ +# ||fanfiktion.de^*/s.js (easyprivacy.txt: 9578) +.fanfiktion.de/.*/s\.js +# ||extszm.web.de^ (easyprivacy.txt: 9577) +.extszm.web.de +# ||express.de/analytics/ (easyprivacy.txt: 9576) +.express.de/analytics/ +# ||event.dkb.de^ (easyprivacy.txt: 9575) +.event.dkb.de +# ||elitepartner.de/km/tcnt.do? (easyprivacy.txt: 9574) +.elitepartner.de/km/tcnt\.do\? +# ||elektromobil-dresden.de/tinc? (easyprivacy.txt: 9573) +.elektromobil-dresden.de/tinc\? +# ||dw-eu.com.com^ (easyprivacy.txt: 9572) +.dw-eu.com.com +# ||dsltarife.net/statistik/ (easyprivacy.txt: 9571) +.dsltarife.net/statistik/ +# ||dsltarife.net/ddd.js (easyprivacy.txt: 9570) +.dsltarife.net/ddd\.js +# ||dpm.bluray-disc.de^ (easyprivacy.txt: 9569) +.dpm.bluray-disc.de +# ||dnews.de^*/arnostat302.js (easyprivacy.txt: 9568) +.dnews.de/.*/arnostat302\.js +# ||digital-zoom.de/counter.js (easyprivacy.txt: 9567) +.digital-zoom.de/counter\.js +# ||diepresse.com/files/stats-extensions/ (easyprivacy.txt: 9566) +.diepresse.com/files/stats-extensions/ +# ||diegesellschafter.de^*/flashimg.php? (easyprivacy.txt: 9565) +.diegesellschafter.de/.*/flashimg\.php\? +# ||dfs.de^*/webbug.js (easyprivacy.txt: 9564) +.dfs.de/.*/webbug\.js +# ||dforum.net/counter/ (easyprivacy.txt: 9563) +.dforum.net/counter/ +# ||derwesten.de^*/omsv.js (easyprivacy.txt: 9562) +.derwesten.de/.*/omsv\.js +# ||derwesten.de^*/click.js (easyprivacy.txt: 9561) +.derwesten.de/.*/click\.js +# ||derwesten.de/stats/ (easyprivacy.txt: 9560) +.derwesten.de/stats/ +# ||derwesten.de/files1/js/fktwe4.js (easyprivacy.txt: 9559) +.derwesten.de/files1/js/fktwe4\.js +# ||dejure.org/cgi-bin/zux2? (easyprivacy.txt: 9558) +.dejure.org/cgi-bin/zux2\? +# ||dat.de/inc/count.js (easyprivacy.txt: 9557) +.dat.de/inc/count\.js +# ||dastelefonbuch.de^*/wws.js (easyprivacy.txt: 9556) +.dastelefonbuch.de/.*/wws\.js +# ||dasoertliche.de/wws/ (easyprivacy.txt: 9555) +.dasoertliche.de/wws/ +# ||daparto.de/track- (easyprivacy.txt: 9554) +.daparto.de/track- +# ||dada.net^*/nedstat_sitestat.js (easyprivacy.txt: 9553) +.dada.net/.*/nedstat_sitestat\.js +# ||dab-bank.de/img/dummy.gif (easyprivacy.txt: 9552) +.dab-bank.de/img/dummy\.gif +# ||cpxl.golem.de^ (easyprivacy.txt: 9551) +.cpxl.golem.de +# ||cpx.golem.de^ (easyprivacy.txt: 9550) +.cpx.golem.de +# ||cpix.daserste.de^ (easyprivacy.txt: 9549) +.cpix.daserste.de +# ||counter.zeit.de^ (easyprivacy.txt: 9548) +.counter.zeit.de +# ||count.spiegel.de^ (easyprivacy.txt: 9547) +.count.spiegel.de +# ||count.rtl.de^ (easyprivacy.txt: 9546) +.count.rtl.de +# ||count.merian.de^ (easyprivacy.txt: 9545) +.count.merian.de +# ||computerbild.de/images/pic.gif? (easyprivacy.txt: 9544) +.computerbild.de/images/pic\.gif\? +# ||computerbase.mobi/stats.php? (easyprivacy.txt: 9543) +.computerbase.mobi/stats\.php\? +# ||computerbase.de/stats.php? (easyprivacy.txt: 9542) +.computerbase.de/stats\.php\? +# ||commerzbank.de/companion/cnt.php? (easyprivacy.txt: 9541) +.commerzbank.de/companion/cnt\.php\? +# ||comdirect.de/ccf/img/ecrm2.gif? (easyprivacy.txt: 9540) +.comdirect.de/ccf/img/ecrm2\.gif\? +# ||citybeat.de/include/cbtracker. (easyprivacy.txt: 9539) +.citybeat.de/include/cbtracker\. +# ||chip.de^*_tracking/ (easyprivacy.txt: 9538) +.chip.de/.*_tracking/ +# ||chip.de^*/tracking.js (easyprivacy.txt: 9537) +.chip.de/.*/tracking\.js +# ||chip.de^*/pic.gif? (easyprivacy.txt: 9536) +.chip.de/.*/pic\.gif\? +# ||chip.de^*/hook-tracking.js (easyprivacy.txt: 9535) +.chip.de/.*/hook-tracking\.js +# ||chefkoch.de^*/pixel/ (easyprivacy.txt: 9534) +.chefkoch.de/.*/pixel/ +# ||chefkoch.de/statistic_service/ (easyprivacy.txt: 9533) +.chefkoch.de/statistic_service/ +# ||chefkoch.de/counter (easyprivacy.txt: 9532) +.chefkoch.de/counter +# ||center.tv/counter/ (easyprivacy.txt: 9531) +.center.tv/counter/ +# ||cct2.o2online.de^ (easyprivacy.txt: 9530) +.cct2.o2online.de +# ||cc.zeit.de^ (easyprivacy.txt: 9529) +.cc.zeit.de +# ||c.perlentaucher.de^ (easyprivacy.txt: 9528) +.c.perlentaucher.de +# ||bz-berlin.de/_stats/ (easyprivacy.txt: 9527) +.bz-berlin.de/_stats/ +# ||braunschweiger-zeitung.de/stats/ (easyprivacy.txt: 9526) +.braunschweiger-zeitung.de/stats/ +# ||br.de/dotrack/pixel.png? (easyprivacy.txt: 9525) +.br.de/dotrack/pixel\.png\? +# ||boss.berlinonline.de^ (easyprivacy.txt: 9524) +.boss.berlinonline.de +# ||boersennews.de/js/lib/BnPageTracker.js (easyprivacy.txt: 9523) +.boersennews.de/js/lib/BnPageTracker\.js +# ||boerse.de^*/log.jphp (easyprivacy.txt: 9522) +.boerse.de/.*/log\.jphp +# ||bluray-disc.de/user_check.php? (easyprivacy.txt: 9521) +.bluray-disc.de/user_check\.php\? +# ||bitreactor.to/counter/ (easyprivacy.txt: 9520) +.bitreactor.to/counter/ +# ||billiger.de/trackimg.gif? (easyprivacy.txt: 9519) +.billiger.de/trackimg\.gif\? +# ||billiger.de/js/statistik.js (easyprivacy.txt: 9518) +.billiger.de/js/statistik\.js +# ||bild.de^*-linktracking^$script (easyprivacy.txt: 9517) +.bild.de/.*-linktracking[^\w%.-] +# ||bild.de/code/linktracking,*.js (easyprivacy.txt: 9516) +.bild.de/code/linktracking,.*\.js +# ||bild.de/code/jiffy,*.js (easyprivacy.txt: 9515) +.bild.de/code/jiffy,.*\.js +# ||berlinonline.de^*/cp.php? (easyprivacy.txt: 9514) +.berlinonline.de/.*/cp\.php\? +# ||berliner-zeitung.de/analytics/ (easyprivacy.txt: 9513) +.berliner-zeitung.de/analytics/ +# ||baur.de/servlet/LandmarkServlet? (easyprivacy.txt: 9512) +.baur.de/servlet/LandmarkServlet\? +# ||autobild.de/images/pic.gif? (easyprivacy.txt: 9511) +.autobild.de/images/pic\.gif\? +# ||auto-motor-und-sport.de/images/pic.gif? (easyprivacy.txt: 9510) +.auto-motor-und-sport.de/images/pic\.gif\? +# ||arte.tv^*=countstats, (easyprivacy.txt: 9509) +.arte.tv/.*=countstats, +# ||arlt.com^*/econda/ (easyprivacy.txt: 9508) +.arlt.com/.*/econda/ +# ||aol.de/track/ (easyprivacy.txt: 9507) +.aol.de/track/ +# ||aol.de/cnt/ (easyprivacy.txt: 9506) +.aol.de/cnt/ +# ||antenne.de^*/ivw_reload.js (easyprivacy.txt: 9505) +.antenne.de/.*/ivw_reload\.js +# ||analytics.solidbau.at^ (easyprivacy.txt: 9504) +.analytics.solidbau.at +# ||analytics.industriemagazin.net^ (easyprivacy.txt: 9503) +.analytics.industriemagazin.net +# ||ac.mz-web.de^ (easyprivacy.txt: 9502) +.ac.mz-web.de +# ||ac.express.de^ (easyprivacy.txt: 9501) +.ac.express.de +# ||ac.berlinonline.de^ (easyprivacy.txt: 9500) +.ac.berlinonline.de +# ||abakus.freenet.de^ (easyprivacy.txt: 9499) +.abakus.freenet.de +# ||ab-in-den-urlaub.de/usertracking/ (easyprivacy.txt: 9498) +.ab-in-den-urlaub.de/usertracking/ +# ||ab-in-den-urlaub.de/resources/cjs/?f=/resources/cjs/tracking/ (easyprivacy.txt: 9497) +.ab-in-den-urlaub.de/resources/cjs/\?f=/resources/cjs/tracking/ +# ||4players.de^*/foreplaypixel.js (easyprivacy.txt: 9494) +.4players.de/.*/foreplaypixel\.js +# ||radio-canada.ca/omniture/omni_stats_base.js? (easyprivacy.txt: 9490) +.radio-canada.ca/omniture/omni_stats_base\.js\? +# ||yell.com/js/omniture-H.25.js (easyprivacy.txt: 9488) +.yell.com/js/omniture-H\.25\.js +# ||westernunion.*/_globalAssets/js/omniture/AppMeasurement.js (easyprivacy.txt: 9486) +.westernunion.*./(.*/)?_globalAssets/js/omniture/AppMeasurement\.js +# ||vmware.com/files/templates/inc/s_code_my.js (easyprivacy.txt: 9485) +.vmware.com/files/templates/inc/s_code_my\.js +# ||vitacost.com/Javascripts/s_code.js (easyprivacy.txt: 9484) +.vitacost.com/Javascripts/s_code\.js +# ||ssl-images-amazon.com^*/wcs-help-omniture-$script (easyprivacy.txt: 9482) +.ssl-images-amazon.com/.*/wcs-help-omniture- +# ||sltrib.com/csp/mediapool/sites/Shared/assets/csp/includes/omniture/SiteCatalystCode_H_17.js (easyprivacy.txt: 9481) +.sltrib.com/csp/mediapool/sites/Shared/assets/csp/includes/omniture/SiteCatalystCode_H_17\.js +# ||sephora.com/javascripts/analytics/wa2.js (easyprivacy.txt: 9478) +.sephora.com/javascripts/analytics/wa2\.js +# ||riverisland.com^*/s_code.min.omniture_$script (easyprivacy.txt: 9477) +.riverisland.com/.*/s_code\.min\.omniture_ +# ||redbox.com^*/scripts/s_code.js (easyprivacy.txt: 9476) +.redbox.com/.*/scripts/s_code\.js +# ||r7.com/scode/s_code_portal_$script (easyprivacy.txt: 9475) +.r7.com/scode/s_code_portal_ +# ||playstation.com/pscomauth/groups/public/documents/webasset/community_secured_s_code.js (easyprivacy.txt: 9474) +.playstation.com/pscomauth/groups/public/documents/webasset/community_secured_s_code\.js +# ||philly.com/includes/s_code.js (easyprivacy.txt: 9473) +.philly.com/includes/s_code\.js +# ||paypal.com/acquisition-app/static/js/s_code.js (easyprivacy.txt: 9472) +.paypal.com/acquisition-app/static/js/s_code\.js +# ||nyteknik.se/ver02/javascript/2012_s_code_global.js (easyprivacy.txt: 9471) +.nyteknik.se/ver02/javascript/2012_s_code_global\.js +# ||navyfederal.org/js/s_code.js (easyprivacy.txt: 9469) +.navyfederal.org/js/s_code\.js +# ||mnginteractive.com/live/omniture/sccore_NEW_JRC.js (easyprivacy.txt: 9468) +.mnginteractive.com/live/omniture/sccore_NEW_JRC\.js +# ||mnginteractive.com/live/js/omniture/SiteCatalystCode_H_22_1_NC.js (easyprivacy.txt: 9464) +.mnginteractive.com/live/js/omniture/SiteCatalystCode_H_22_1_NC\.js +# ||michaelkors.com/common/js/extern/omniture/s_code.js (easyprivacy.txt: 9463) +.michaelkors.com/common/js/extern/omniture/s_code\.js +# ||mercuryinsurance.com/static/js/s_code.js (easyprivacy.txt: 9462) +.mercuryinsurance.com/static/js/s_code\.js +# ||mercola.com/Assets/js/omniture/sitecatalyst/mercola_s_code.js (easyprivacy.txt: 9461) +.mercola.com/Assets/js/omniture/sitecatalyst/mercola_s_code\.js +# ||mercedes-benz.ca/js/omniture.js (easyprivacy.txt: 9460) +.mercedes-benz.ca/js/omniture\.js +# ||loc.gov/js/*/s_code.js (easyprivacy.txt: 9459) +.loc.gov/js/.*/s_code\.js +# ||lexus.com/lexus-share/js/tracking_omn/s_code.js (easyprivacy.txt: 9458) +.lexus.com/lexus-share/js/tracking_omn/s_code\.js +# ||images-amazon.com/images/*/wcs-help-omniture/wcs-help-omniture-$script (easyprivacy.txt: 9456) +.images-amazon.com/images/.*/wcs-help-omniture/wcs-help-omniture- +# ||hayneedle.com/js/s_code.min.*.js (easyprivacy.txt: 9455) +.hayneedle.com/js/s_code\.min\..*\.js +# ||ge.com/sites/all/themes/ge_2012/assets/js/bin/s_code.js (easyprivacy.txt: 9454) +.ge.com/sites/all/themes/ge_2012/assets/js/bin/s_code\.js +# ||expressen.se/static/scripts/s_code.js? (easyprivacy.txt: 9453) +.expressen.se/static/scripts/s_code\.js\? +# ||eltiempo.com/js/produccion/s_code_*.js (easyprivacy.txt: 9452) +.eltiempo.com/js/produccion/s_code_.*\.js +# ||disneylandparis.fr^*/s_code.js (easyprivacy.txt: 9450) +.disneylandparis.fr/.*/s_code\.js +# ||csmonitor.com/extension/csm_base/design/standard/javascript/adobe/s_code.js (easyprivacy.txt: 9448) +.csmonitor.com/extension/csm_base/design/standard/javascript/adobe/s_code\.js +# ||csmonitor.com/extension/csm_base/design/csm_design/javascript/omniture/s_code.js (easyprivacy.txt: 9447) +.csmonitor.com/extension/csm_base/design/csm_design/javascript/omniture/s_code\.js +# ||consumerreports.org^*/s_code.js (easyprivacy.txt: 9446) +.consumerreports.org/.*/s_code\.js +# ||chip.de/js/omniture_somtr_code_vH.25.js (easyprivacy.txt: 9445) +.chip.de/js/omniture_somtr_code_vH\.25\.js +# ||bleacherreport.net/pkg/javascripts/*_omniture.js (easyprivacy.txt: 9443) +.bleacherreport.net/pkg/javascripts/.*_omniture\.js +# ||bitdefender.com/resources/scripts/omniture/*/code.js (easyprivacy.txt: 9442) +.bitdefender.com/resources/scripts/omniture/.*/code\.js +# ||aircanada.com/shared/common/sitecatalyst/s_code.js (easyprivacy.txt: 9440) +.aircanada.com/shared/common/sitecatalyst/s_code\.js +# ||aeroplan.com/static/js/omniture/s_code_prod.js (easyprivacy.txt: 9438) +.aeroplan.com/static/js/omniture/s_code_prod\.js +# ||adobe.com^*/omniture_s_code.js (easyprivacy.txt: 9437) +.adobe.com/.*/omniture_s_code\.js +# ||zylom.com^*/tracking_spotlight.js (easyprivacy.txt: 9434) +.zylom.com/.*/tracking_spotlight\.js +# ||zylom.com^*/global_tracking.jsp? (easyprivacy.txt: 9433) +.zylom.com/.*/global_tracking\.jsp\? +# ||zylom.com/pixel.jsp (easyprivacy.txt: 9432) +.zylom.com/pixel\.jsp +# ||zwire.com/gen/qc/qualitycontrol.cfm (easyprivacy.txt: 9431) +.zwire.com/gen/qc/qualitycontrol\.cfm +# ||zvents.com/zat? (easyprivacy.txt: 9430) +.zvents.com/zat\? +# ||zvents.com/za? (easyprivacy.txt: 9429) +.zvents.com/za\? +# ||zvents.com/partner_json/ (easyprivacy.txt: 9428) +.zvents.com/partner_json/ +# ||zulily.com/action/track? (easyprivacy.txt: 9427) +.zulily.com/action/track\? +# ||zoomin.tv/impressionsplayers/ (easyprivacy.txt: 9426) +.zoomin.tv/impressionsplayers/ +# ||zoomin.tv/impressions/ (easyprivacy.txt: 9425) +.zoomin.tv/impressions/ +# ||zmags.com/CommunityAnalyticsTracking (easyprivacy.txt: 9424) +.zmags.com/CommunityAnalyticsTracking +# ||zedo.com/img/bh.gif? (easyprivacy.txt: 9423) +.zedo.com/img/bh\.gif\? +# ||zdnet.com/wi? (easyprivacy.txt: 9422) +.zdnet.com/wi\? +# ||zawya.com^*/logFile.cfm? (easyprivacy.txt: 9421) +.zawya.com/.*/logFile\.cfm\? +# ||zawya.com/zscripts/ajaxztrack.cfm? (easyprivacy.txt: 9420) +.zawya.com/zscripts/ajaxztrack\.cfm\? +# ||zappos.com/onload.cgi? (easyprivacy.txt: 9419) +.zappos.com/onload\.cgi\? +# ||zap2it.com^*/editorial-partner/ (easyprivacy.txt: 9418) +.zap2it.com/.*/editorial-partner/ +# ||zap.dw-world.de^$image (easyprivacy.txt: 9417) +.zap.dw-world.de +# ||yyv.co/track/ (easyprivacy.txt: 9416) +.yyv.co/track/ +# ||yupptv.com/yupptvreports/stats.php^ (easyprivacy.txt: 9415) +.yupptv.com/yupptvreports/stats\.php[^\w%.-] +# ||yuku.com/stats? (easyprivacy.txt: 9414) +.yuku.com/stats\? +# ||ypcdn.com/webyp/javascripts/client_side_analytics_ (easyprivacy.txt: 9413) +.ypcdn.com/webyp/javascripts/client_side_analytics_ +# ||youtube.com/stream_204? (easyprivacy.txt: 9412) +.youtube.com/stream_204\? +# ||youtube.com/set_awesome? (easyprivacy.txt: 9411) +.youtube.com/set_awesome\? +# ||youtube.com/s? (easyprivacy.txt: 9410) +.youtube.com/s\? +# ||youtube.com/ptracking? (easyprivacy.txt: 9409) +.youtube.com/ptracking\? +# ||youtube.com/player_204? (easyprivacy.txt: 9408) +.youtube.com/player_204\? +# ||youtube.com/live_204? (easyprivacy.txt: 9407) +.youtube.com/live_204\? +# ||youtube.com/get_video? (easyprivacy.txt: 9406) +.youtube.com/get_video\? +# ||youtube.com/gen_204?$~xmlhttprequest (easyprivacy.txt: 9405) +.youtube.com/gen_204\? +# ||youtube.com/api/stats/ads? (easyprivacy.txt: 9404) +.youtube.com/api/stats/ads\? +# ||youtube-nocookie.com/robots.txt? (easyprivacy.txt: 9403) +.youtube-nocookie.com/robots\.txt\? +# ||youtube-nocookie.com/ptracking? (easyprivacy.txt: 9402) +.youtube-nocookie.com/ptracking\? +# ||youtube-nocookie.com/gen_204? (easyprivacy.txt: 9401) +.youtube-nocookie.com/gen_204\? +# ||youtube-nocookie.com/device_204? (easyprivacy.txt: 9400) +.youtube-nocookie.com/device_204\? +# ||yourtv.com.au/share/com/js/fb_google_intercept.js (easyprivacy.txt: 9399) +.yourtv.com.au/share/com/js/fb_google_intercept\.js +# ||youronlinechoices.com/activity/ (easyprivacy.txt: 9398) +.youronlinechoices.com/activity/ +# ||yourfilehost.com/counter.htm (easyprivacy.txt: 9397) +.yourfilehost.com/counter\.htm +# ||youporn.com^*/tracker.js (easyprivacy.txt: 9396) +.youporn.com/.*/tracker\.js +# ||younewstv.com/js/easyxdm.min.js (easyprivacy.txt: 9395) +.younewstv.com/js/easyxdm\.min\.js +# ||youandyourwedding.co.uk^*/socialtracking/ (easyprivacy.txt: 9394) +.youandyourwedding.co.uk/.*/socialtracking/ +# ||youandyourwedding.co.uk^*/EAS_tag. (easyprivacy.txt: 9393) +.youandyourwedding.co.uk/.*/EAS_tag\. +# ||yopmail.com/c.swf (easyprivacy.txt: 9392) +.yopmail.com/c\.swf +# ||yoox.com^*/yoox/ga.js (easyprivacy.txt: 9391) +.yoox.com/.*/yoox/ga\.js +# ||yobt.tv/js/timerotation*.js (easyprivacy.txt: 9390) +.yobt.tv/js/timerotation.*\.js +# ||ynuf.alibaba.com^ (easyprivacy.txt: 9389) +.ynuf.alibaba.com +# ||yimg.com^*/ywa.js (easyprivacy.txt: 9388) +.yimg.com/.*/ywa\.js +# ||yimg.com^*/yabcs.js (easyprivacy.txt: 9387) +.yimg.com/.*/yabcs\.js +# ||yimg.com^*/swfproxy-$object (easyprivacy.txt: 9386) +.yimg.com/.*/swfproxy- +# ||yimg.com/nq/ued/assets/flash/wsclient_ (easyprivacy.txt: 9385) +.yimg.com/nq/ued/assets/flash/wsclient_ +# ||yelp.ie/spice? (easyprivacy.txt: 9384) +.yelp.ie/spice\? +# ||yelp.com/spice? (easyprivacy.txt: 9383) +.yelp.com/spice\? +# ||yelp.com.au/spice? (easyprivacy.txt: 9382) +.yelp.com.au/spice\? +# ||yelp.co.uk/spice? (easyprivacy.txt: 9381) +.yelp.co.uk/spice\? +# ||yelp.ca/spice? (easyprivacy.txt: 9380) +.yelp.ca/spice\? +# ||yellowpages.com/proxy/turn_tags/ (easyprivacy.txt: 9379) +.yellowpages.com/proxy/turn_tags/ +# ||yellowpages.com/proxy/envoy/ (easyprivacy.txt: 9378) +.yellowpages.com/proxy/envoy/ +# ||yellowpages.com/images/li.gif? (easyprivacy.txt: 9377) +.yellowpages.com/images/li\.gif\? +# ||yellowpages.co.in/trac/ (easyprivacy.txt: 9376) +.yellowpages.co.in/trac/ +# ||yahooapis.com/get/Valueclick/CapAnywhere.getAnnotationCallback? (easyprivacy.txt: 9374) +.yahooapis.com/get/Valueclick/CapAnywhere\.getAnnotationCallback\? +# ||yahoo.net^*/hittail.js (easyprivacy.txt: 9373) +.yahoo.net/.*/hittail\.js +# ||yahoo.com^*/ultLog? (easyprivacy.txt: 9372) +.yahoo.com/.*/ultLog\? +# ||yahoo.com^*/rt.gif? (easyprivacy.txt: 9371) +.yahoo.com/.*/rt\.gif\? +# ||yahoo.com^*/pageview/ (easyprivacy.txt: 9370) +.yahoo.com/.*/pageview/ +# ||yahoo.com/yi?bv= (easyprivacy.txt: 9369) +.yahoo.com/yi\?bv= +# ||yahoo.com/track/ (easyprivacy.txt: 9368) +.yahoo.com/track/ +# ||yahoo.com/sig=$image (easyprivacy.txt: 9367) +.yahoo.com/sig= +# ||yahoo.com/serv?s (easyprivacy.txt: 9366) +.yahoo.com/serv\?s +# ||yahoo.com/perf.gif? (easyprivacy.txt: 9365) +.yahoo.com/perf\.gif\? +# ||yahoo.com/p.gif; (easyprivacy.txt: 9364) +.yahoo.com/p\.gif; +# ||yahoo.com/neo/ymstat (easyprivacy.txt: 9363) +.yahoo.com/neo/ymstat +# ||yahoo.com/neo/ygbeacon/ (easyprivacy.txt: 9362) +.yahoo.com/neo/ygbeacon/ +# ||yahoo.com/neo/stat (easyprivacy.txt: 9361) +.yahoo.com/neo/stat +# ||yahoo.com/beacon/ (easyprivacy.txt: 9360) +.yahoo.com/beacon/ +# ||yahoo.com/b? (easyprivacy.txt: 9359) +.yahoo.com/b\? +# ||yahoo.com/_td_api/beacon/ (easyprivacy.txt: 9358) +.yahoo.com/_td_api/beacon/ +# ||yahoo.com/__perf_log_ (easyprivacy.txt: 9357) +.yahoo.com/__perf_log_ +# ||xnxx.com/in.php?referer (easyprivacy.txt: 9356) +.xnxx.com/in\.php\?referer +# ||xing.com/collect/ (easyprivacy.txt: 9355) +.xing.com/collect/ +# ||xhcdn.com/js/track.min.js? (easyprivacy.txt: 9354) +.xhcdn.com/js/track\.min\.js\? +# ||xhcdn.com/js/analytics.js? (easyprivacy.txt: 9353) +.xhcdn.com/js/analytics\.js\? +# ||xhamster.com/cnt.php? (easyprivacy.txt: 9352) +.xhamster.com/cnt\.php\? +# ||xhamster.com/ajax.php?act=track_event (easyprivacy.txt: 9351) +.xhamster.com/ajax\.php\?act=track_event +# ||xbox.com^*/vortex_tracking.js (easyprivacy.txt: 9350) +.xbox.com/.*/vortex_tracking\.js +# ||wzus1.thesaurus.com^ (easyprivacy.txt: 9349) +.wzus1.thesaurus.com +# ||wzus1.reference.com^ (easyprivacy.txt: 9348) +.wzus1.reference.com +# ||wzus1.ask.com^ (easyprivacy.txt: 9347) +.wzus1.ask.com +# ||wzus.askkids.com^ (easyprivacy.txt: 9346) +.wzus.askkids.com +# ||www.imdb.*/rd/?q= (easyprivacy.txt: 9345) +.www.imdb.*./(.*/)?rd/\?q= +# ||www.google.*/imghover?$image (easyprivacy.txt: 9344) +.www.google.*./(.*/)?imghover\? +# ||www.google.*/imgevent?$script (easyprivacy.txt: 9343) +.www.google.*./(.*/)?imgevent\? +# ||wwe.com/sites/all/modules/wwe/wwe_analytics/ (easyprivacy.txt: 9342) +.wwe.com/sites/all/modules/wwe/wwe_analytics/ +# ||wusstrack.wunderground.com^ (easyprivacy.txt: 9341) +.wusstrack.wunderground.com +# ||wunderground.com/tag.php (easyprivacy.txt: 9340) +.wunderground.com/tag\.php +# ||wtk.db.com^ (easyprivacy.txt: 9339) +.wtk.db.com +# ||ws.yellowpages.ca^ (easyprivacy.txt: 9338) +.ws.yellowpages.ca +# ||ws.md/c.png? (easyprivacy.txt: 9337) +.ws.md/c\.png\? +# ||ws.elance.com^*&referrer= (easyprivacy.txt: 9336) +.ws.elance.com/.*&referrer= +# ||wowwiki.com/__onedot? (easyprivacy.txt: 9335) +.wowwiki.com/__onedot\? +# ||wovencube.com/track/ (easyprivacy.txt: 9334) +.wovencube.com/track/ +# ||worldvision.org/kana/wvcg_wvorg.asp? (easyprivacy.txt: 9333) +.worldvision.org/kana/wvcg_wvorg\.asp\? +# ||worldreviewer.com/_search/tracker.png? (easyprivacy.txt: 9332) +.worldreviewer.com/_search/tracker\.png\? +# ||worldnow.com/global/tools/video/Namespace_VideoReporting_DW.js (easyprivacy.txt: 9331) +.worldnow.com/global/tools/video/Namespace_VideoReporting_DW\.js +# ||worldnow.com/ajax?callback=po_a&$xmlhttprequest (easyprivacy.txt: 9330) +.worldnow.com/ajax\?callback=po_a& +# ||worldgolf.com^*/js/track.js (easyprivacy.txt: 9329) +.worldgolf.com/.*/js/track\.js +# ||worksheetsengine.com/fd/ls/l? (easyprivacy.txt: 9328) +.worksheetsengine.com/fd/ls/l\? +# ||wnd.com/s.js (easyprivacy.txt: 9327) +.wnd.com/s\.js +# ||witn.com/g/g/button/ (easyprivacy.txt: 9326) +.witn.com/g/g/button/ +# ||wired.com^*/js/tracking.js (easyprivacy.txt: 9325) +.wired.com/.*/js/tracking\.js +# ||wired.com/tracker.js (easyprivacy.txt: 9324) +.wired.com/tracker\.js +# ||wired.com/js/stats/ (easyprivacy.txt: 9323) +.wired.com/js/stats/ +# ||wired.com/event? (easyprivacy.txt: 9322) +.wired.com/event\? +# ||wired.com/ecom/ (easyprivacy.txt: 9321) +.wired.com/ecom/ +# ||wired.co.uk^*/Statistics/ (easyprivacy.txt: 9320) +.wired.co.uk/.*/Statistics/ +# ||winter.metacafe.com^ (easyprivacy.txt: 9319) +.winter.metacafe.com +# ||windowsphone.com/scripts/siteTracking.js (easyprivacy.txt: 9318) +.windowsphone.com/scripts/siteTracking\.js +# ||wikipedia.org/beacon/ (easyprivacy.txt: 9317) +.wikipedia.org/beacon/ +# ||wikio.com/shopping/tracking/hit.jsp? (easyprivacy.txt: 9316) +.wikio.com/shopping/tracking/hit\.jsp\? +# ||wikinvest.com/plugin/api.php?*=metricld& (easyprivacy.txt: 9315) +.wikinvest.com/plugin/api\.php\?.*=metricld& +# ||wikimedia.org/wiki/Special:RecordImpression? (easyprivacy.txt: 9314) +.wikimedia.org/wiki/Special:RecordImpression\? +# ||wikihow.com/x/collect? (easyprivacy.txt: 9313) +.wikihow.com/x/collect\? +# ||whstatic.com^*/ga.js? (easyprivacy.txt: 9312) +.whstatic.com/.*/ga\.js\? +# ||whoson.smcorp.com^ (easyprivacy.txt: 9311) +.whoson.smcorp.com +# ||whatcar.com/Client/Stats/ (easyprivacy.txt: 9310) +.whatcar.com/Client/Stats/ +# ||wellsphere.com/?hit= (easyprivacy.txt: 9309) +.wellsphere.com/\?hit= +# ||wellness.com/proxy.asp (easyprivacy.txt: 9308) +.wellness.com/proxy\.asp +# ||wego.com/farmer/ (easyprivacy.txt: 9307) +.wego.com/farmer/ +# ||weeklyblitz.net/tracker.js (easyprivacy.txt: 9306) +.weeklyblitz.net/tracker\.js +# ||webyclip.com/WebyClipAnalytics.html (easyprivacy.txt: 9305) +.webyclip.com/WebyClipAnalytics\.html +# ||webstats.perfectworld.com^ (easyprivacy.txt: 9304) +.webstats.perfectworld.com +# ||webssearches.com/__kl.gif? (easyprivacy.txt: 9303) +.webssearches.com/__kl\.gif\? +# ||webring.com/cgi-bin/logit? (easyprivacy.txt: 9302) +.webring.com/cgi-bin/logit\? +# ||webmonkey.com/js/stats/ (easyprivacy.txt: 9301) +.webmonkey.com/js/stats/ +# ||webmd.com^*/tools/dsppixels.js (easyprivacy.txt: 9300) +.webmd.com/.*/tools/dsppixels\.js +# ||webmd.com/pixel/ (easyprivacy.txt: 9299) +.webmd.com/pixel/ +# ||webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/oas35.js (easyprivacy.txt: 9298) +.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/oas35\.js +# ||weblogger01.data.disney.com^ (easyprivacy.txt: 9297) +.weblogger01.data.disney.com +# ||weblog.strawberrynet.com^ (easyprivacy.txt: 9296) +.weblog.strawberrynet.com +# ||webjam.com/Actions/Hit.jam? (easyprivacy.txt: 9295) +.webjam.com/Actions/Hit\.jam\? +# ||webcrawler.com/__kl.gif (easyprivacy.txt: 9294) +.webcrawler.com/__kl\.gif +# ||webcollage.net/apps/el? (easyprivacy.txt: 9293) +.webcollage.net/apps/el\? +# ||webcamgalore.com/aslog.js (easyprivacy.txt: 9292) +.webcamgalore.com/aslog\.js +# ||web.hbr.org/test/whoami.php (easyprivacy.txt: 9291) +.web.hbr.org/test/whoami\.php +# ||web-t.9gag.com^ (easyprivacy.txt: 9290) +.web-t.9gag.com +# ||web-18.com/common/w18a26062012143253_min.js (easyprivacy.txt: 9289) +.web-18.com/common/w18a26062012143253_min\.js +# ||weather.com^*/makeRequest- (easyprivacy.txt: 9288) +.weather.com/.*/makeRequest- +# ||weather.com/pagelet/metrics/ (easyprivacy.txt: 9287) +.weather.com/pagelet/metrics/ +# ||wcnc.com/g/g/button/ (easyprivacy.txt: 9286) +.wcnc.com/g/g/button/ +# ||wbr.com/open.aspx? (easyprivacy.txt: 9285) +.wbr.com/open\.aspx\? +# ||wavescape.mobi/rest/track/ (easyprivacy.txt: 9284) +.wavescape.mobi/rest/track/ +# ||watson.live.com^ (easyprivacy.txt: 9283) +.watson.live.com +# ||watchmouse.com^*/jsrum/ (easyprivacy.txt: 9282) +.watchmouse.com/.*/jsrum/ +# ||washingtonpost.com^*/one.gif? (easyprivacy.txt: 9281) +.washingtonpost.com/.*/one\.gif\? +# ||washingtonpost.com/wp-srv/javascript/placeSiteMetrix. (easyprivacy.txt: 9280) +.washingtonpost.com/wp-srv/javascript/placeSiteMetrix\. +# ||washingtonpost.com/rw/sites/twpweb/js/init/init.track-header-1.0.0.js (easyprivacy.txt: 9279) +.washingtonpost.com/rw/sites/twpweb/js/init/init\.track-header-1\.0\.0\.js +# ||warp.prnewswire.co.uk^ (easyprivacy.txt: 9278) +.warp.prnewswire.co.uk +# ||wallpaperstock.net/partners.js (easyprivacy.txt: 9277) +.wallpaperstock.net/partners\.js +# ||walletpop.com/track/ (easyprivacy.txt: 9276) +.walletpop.com/track/ +# ||wallcannrewards.com^*/index.php? (easyprivacy.txt: 9275) +.wallcannrewards.com/.*/index\.php\? +# ||wachovia.com^*/stats.js (easyprivacy.txt: 9274) +.wachovia.com/.*/stats\.js +# ||wa.ui-portal.de^ (easyprivacy.txt: 9273) +.wa.ui-portal.de +# ||wa.metro.co.uk^ (easyprivacy.txt: 9272) +.wa.metro.co.uk +# ||w88.go.com^ (easyprivacy.txt: 9271) +.w88.go.com +# ||vzaar.com/libs/stats/ (easyprivacy.txt: 9270) +.vzaar.com/libs/stats/ +# ||vstats.digitaltrends.com^ (easyprivacy.txt: 9269) +.vstats.digitaltrends.com +# ||vstat.vidigy.com^ (easyprivacy.txt: 9268) +.vstat.vidigy.com +# ||vs4food.com/ERA/era_rl.aspx (easyprivacy.txt: 9267) +.vs4food.com/ERA/era_rl\.aspx +# ||vs.target.com^ (easyprivacy.txt: 9266) +.vs.target.com +# ||voyeurhit.com/js/a2210.js (easyprivacy.txt: 9265) +.voyeurhit.com/js/a2210\.js +# ||voyages-sncf.com^*/vsca.js (easyprivacy.txt: 9264) +.voyages-sncf.com/.*/vsca\.js +# ||votigo.com/contests/t/ (easyprivacy.txt: 9263) +.votigo.com/contests/t/ +# ||vogue.co.uk/_/logic/statistics.js (easyprivacy.txt: 9262) +.vogue.co.uk/_/logic/statistics\.js +# ||vodpod.com/stats/ (easyprivacy.txt: 9261) +.vodpod.com/stats/ +# ||vnunet.com^*/wunderloop/ (easyprivacy.txt: 9260) +.vnunet.com/.*/wunderloop/ +# ||vmware.com/files/include/ga/ (easyprivacy.txt: 9259) +.vmware.com/files/include/ga/ +# ||vixy.net/fb-traffic-pop.js (easyprivacy.txt: 9258) +.vixy.net/fb-traffic-pop\.js +# ||vitamine.networldmedia.net^ (easyprivacy.txt: 9257) +.vitamine.networldmedia.net +# ||visualware.com/vvv? (easyprivacy.txt: 9256) +.visualware.com/vvv\? +# ||visitors.sourcingmap.com^ (easyprivacy.txt: 9255) +.visitors.sourcingmap.com +# ||visit.theglobeandmail.com^ (easyprivacy.txt: 9254) +.visit.theglobeandmail.com +# ||visit.mobot.net^ (easyprivacy.txt: 9253) +.visit.mobot.net +# ||visit.dealspwn.com^ (easyprivacy.txt: 9252) +.visit.dealspwn.com +# ||virtualearth.net/mapcontrol/*/veapiAnalytics.js (easyprivacy.txt: 9251) +.virtualearth.net/mapcontrol/.*/veapiAnalytics\.js +# ||virginholidays.co.uk/_assets/js/dc_storm/track.js (easyprivacy.txt: 9250) +.virginholidays.co.uk/_assets/js/dc_storm/track\.js +# ||viralogy.com/javascript/viralogy_tracker.js (easyprivacy.txt: 9249) +.viralogy.com/javascript/viralogy_tracker\.js +# ||viralnova.com/track.php (easyprivacy.txt: 9248) +.viralnova.com/track\.php +# ||vimeo.com/log/outro_displayed (easyprivacy.txt: 9247) +.vimeo.com/log/outro_displayed +# ||villarenters.com/inttrack.aspx (easyprivacy.txt: 9246) +.villarenters.com/inttrack\.aspx +# ||vietnamnet.vn^*/tracking.js (easyprivacy.txt: 9245) +.vietnamnet.vn/.*/tracking\.js +# ||vidxden.com^*/tracker.js (easyprivacy.txt: 9244) +.vidxden.com/.*/tracker\.js +# ||vidx.to/php/count.php? (easyprivacy.txt: 9243) +.vidx.to/php/count\.php\? +# ||videotracker.washingtonpost.com^ (easyprivacy.txt: 9242) +.videotracker.washingtonpost.com +# ||videopremium.tv/dev/tr.js (easyprivacy.txt: 9241) +.videopremium.tv/dev/tr\.js +# ||videoplaza.com/proxy/tracker? (easyprivacy.txt: 9240) +.videoplaza.com/proxy/tracker\? +# ||video.syfy.com/lg.php (easyprivacy.txt: 9239) +.video.syfy.com/lg\.php +# ||video.nbc.com^*/metrics_viral.xml (easyprivacy.txt: 9238) +.video.nbc.com/.*/metrics_viral\.xml +# ||video.msn.com/frauddetect.aspx? (easyprivacy.txt: 9237) +.video.msn.com/frauddetect\.aspx\? +# ||video-stats.video.google.com^ (easyprivacy.txt: 9236) +.video-stats.video.google.com +# ||vid.io^*/mejs-feature-analytics.js (easyprivacy.txt: 9235) +.vid.io/.*/mejs-feature-analytics\.js +# ||victoriassecret.com/m/a.gif? (easyprivacy.txt: 9234) +.victoriassecret.com/m/a\.gif\? +# ||vice.com*/tracker.html (easyprivacy.txt: 9233) +.vice.com*./(.*/)?tracker\.html +# ||vice.com*/mb_tracker.html (easyprivacy.txt: 9232) +.vice.com*./(.*/)?mb_tracker\.html +# ||viamichelin.de^*/stats.js (easyprivacy.txt: 9231) +.viamichelin.de/.*/stats\.js +# ||viamichelin.co.uk^*/stats.js (easyprivacy.txt: 9230) +.viamichelin.co.uk/.*/stats\.js +# ||vevo.com/audit.ashx? (easyprivacy.txt: 9229) +.vevo.com/audit\.ashx\? +# ||vertical-stats.huffingtonpost.com^ (easyprivacy.txt: 9228) +.vertical-stats.huffingtonpost.com +# ||verizonwireless.com/mpel.js? (easyprivacy.txt: 9227) +.verizonwireless.com/mpel\.js\? +# ||venere.com/common/js/track.js (easyprivacy.txt: 9226) +.venere.com/common/js/track\.js +# ||velaro.com/lf/monitor2.aspx? (easyprivacy.txt: 9225) +.velaro.com/lf/monitor2\.aspx\? +# ||vcstar.com/metrics/ (easyprivacy.txt: 9224) +.vcstar.com/metrics/ +# ||vbs.tv/tracker.html (easyprivacy.txt: 9223) +.vbs.tv/tracker\.html +# ||vator.tv/tracking/ (easyprivacy.txt: 9222) +.vator.tv/tracking/ +# ||validome.org/valilogger/track.js (easyprivacy.txt: 9221) +.validome.org/valilogger/track\.js +# ||v.fwmrm.net/ad/*slotImpression (easyprivacy.txt: 9220) +.v.fwmrm.net/ad/.*slotImpression +# ||v.fwmrm.net/ad/*defaultImpression (easyprivacy.txt: 9219) +.v.fwmrm.net/ad/.*defaultImpression +# ||uts-rss.crystalmedianetworks.com/track.php? (easyprivacy.txt: 9218) +.uts-rss.crystalmedianetworks.com/track\.php\? +# ||ut.ratepoint.com^ (easyprivacy.txt: 9217) +.ut.ratepoint.com +# ||usps.com/survey/ (easyprivacy.txt: 9216) +.usps.com/survey/ +# ||usnews.com/static/scripts/Analytics.js (easyprivacy.txt: 9215) +.usnews.com/static/scripts/Analytics\.js +# ||userfly.com^ (easyprivacy.txt: 9214) +.userfly.com +# ||usell.com/bug.gif? (easyprivacy.txt: 9213) +.usell.com/bug\.gif\? +# ||usage.zattoo.com/?adblock= (easyprivacy.txt: 9212) +.usage.zattoo.com/\?adblock= +# ||urlcheck.hulu.com^ (easyprivacy.txt: 9211) +.urlcheck.hulu.com +# ||urchin-tracker.bigpoint.net^ (easyprivacy.txt: 9210) +.urchin-tracker.bigpoint.net +# ||urbanlist.com/event/track-first-view/ (easyprivacy.txt: 9209) +.urbanlist.com/event/track-first-view/ +# ||uptpro.homestead.com^ (easyprivacy.txt: 9208) +.uptpro.homestead.com +# ||upsellit.com^*/visitor? (easyprivacy.txt: 9207) +.upsellit.com/.*/visitor\? +# ||upromise.com/js/csgather.js (easyprivacy.txt: 9206) +.upromise.com/js/csgather\.js +# ||upornia.com/js/0818.js (easyprivacy.txt: 9205) +.upornia.com/js/0818\.js +# ||uploadrocket.net/downloadfiles.php?*&ip (easyprivacy.txt: 9204) +.uploadrocket.net/downloadfiles\.php\?.*&ip +# ||upi.com/*/stat/ (easyprivacy.txt: 9203) +.upi.com/.*/stat/ +# ||up.nytimes.com^ (easyprivacy.txt: 9202) +.up.nytimes.com +# ||up.boston.com^ (easyprivacy.txt: 9201) +.up.boston.com +# ||unrulymedia.com/loader-analytics.html (easyprivacy.txt: 9200) +.unrulymedia.com/loader-analytics\.html +# ||unrealmarketing.com/js/unrealGTS.js (easyprivacy.txt: 9199) +.unrealmarketing.com/js/unrealGTS\.js +# ||united.com^*/hp_mediaplexunited.html (easyprivacy.txt: 9198) +.united.com/.*/hp_mediaplexunited\.html +# ||unisys.com^*/tracking.js (easyprivacy.txt: 9197) +.unisys.com/.*/tracking\.js +# ||unisys.com^*/dcsMultiTrackFastSearch. (easyprivacy.txt: 9196) +.unisys.com/.*/dcsMultiTrackFastSearch\. +# ||unisys.com^*/dcsMultiTrack.js (easyprivacy.txt: 9195) +.unisys.com/.*/dcsMultiTrack\.js +# ||unionleader.com/js/ul/ga.js (easyprivacy.txt: 9194) +.unionleader.com/js/ul/ga\.js +# ||unicornapp.com^*/Metrics/ (easyprivacy.txt: 9193) +.unicornapp.com/.*/Metrics/ +# ||ultra-gamerz-zone.cz.cc/b/stats? (easyprivacy.txt: 9192) +.ultra-gamerz-zone.cz.cc/b/stats\? +# ||ultimedia.com/deliver/statistiques/ (easyprivacy.txt: 9191) +.ultimedia.com/deliver/statistiques/ +# ||ulogin.ru/stats.html (easyprivacy.txt: 9190) +.ulogin.ru/stats\.html +# ||ui-portal.com/1and1/mailcom/s? (easyprivacy.txt: 9189) +.ui-portal.com/1and1/mailcom/s\? +# ||ucoz.com/stat/ (easyprivacy.txt: 9188) +.ucoz.com/stat/ +# ||u.tv/utvplayer/everywhere/tracking.aspx? (easyprivacy.txt: 9187) +.u.tv/utvplayer/everywhere/tracking\.aspx\? +# ||u.bb/omni*.swf| (easyprivacy.txt: 9186) +.u.bb/omni.*\.swf$ +# ||typepad.com/t/stats? (easyprivacy.txt: 9185) +.typepad.com/t/stats\? +# ||txn.thenewsroom.com^ (easyprivacy.txt: 9184) +.txn.thenewsroom.com +# ||twitvid.com/mediaplayer/players/tracker.swf (easyprivacy.txt: 9183) +.twitvid.com/mediaplayer/players/tracker\.swf +# ||twitvid.com/api/tracking.php$object-subrequest (easyprivacy.txt: 9182) +.twitvid.com/api/tracking\.php +# ||twitter.com^*/log.json? (easyprivacy.txt: 9181) +.twitter.com/.*/log\.json\? +# ||twitter.com^*.gif? (easyprivacy.txt: 9180) +.twitter.com/.*\.gif\? +# ||twitter.com/scribes/ (easyprivacy.txt: 9179) +.twitter.com/scribes/ +# ||twitter.com/scribe? (easyprivacy.txt: 9178) +.twitter.com/scribe\? +# ||twitter.com/abacus? (easyprivacy.txt: 9177) +.twitter.com/abacus\? +# ||twitch.tv/track/ (easyprivacy.txt: 9176) +.twitch.tv/track/ +# ||twimbow.com/serverreq/twbtracker.php$xmlhttprequest (easyprivacy.txt: 9175) +.twimbow.com/serverreq/twbtracker\.php +# ||tweako.com/imp.php (easyprivacy.txt: 9174) +.tweako.com/imp\.php +# ||tw.i.hulu.com^ (easyprivacy.txt: 9173) +.tw.i.hulu.com +# ||tvshark.com/stats.js (easyprivacy.txt: 9172) +.tvshark.com/stats\.js +# ||tvnz.co.nz/stylesheets/tvnz/lib/js/analytics.js? (easyprivacy.txt: 9171) +.tvnz.co.nz/stylesheets/tvnz/lib/js/analytics\.js\? +# ||tv-links.eu/qtt_spacer.gif (easyprivacy.txt: 9170) +.tv-links.eu/qtt_spacer\.gif +# ||turnsocial.com/track/ (easyprivacy.txt: 9169) +.turnsocial.com/track/ +# ||turn.com/js/module.tracking.js (easyprivacy.txt: 9168) +.turn.com/js/module\.tracking\.js +# ||tumblr.com/impixu? (easyprivacy.txt: 9167) +.tumblr.com/impixu\? +# ||tumblr.com/analytics.html (easyprivacy.txt: 9166) +.tumblr.com/analytics\.html +# ||tubepornclassic.com/js/111.js (easyprivacy.txt: 9165) +.tubepornclassic.com/js/111\.js +# ||tubeplus.me/imp.php? (easyprivacy.txt: 9164) +.tubeplus.me/imp\.php\? +# ||tubeplus.me/geoip.php? (easyprivacy.txt: 9163) +.tubeplus.me/geoip\.php\? +# ||ttxm.co.uk^*/log.js (easyprivacy.txt: 9162) +.ttxm.co.uk/.*/log\.js +# ||tsn.ua/svc/video/stat/ (easyprivacy.txt: 9161) +.tsn.ua/svc/video/stat/ +# ||tscapeplay.com/pvim? (easyprivacy.txt: 9160) +.tscapeplay.com/pvim\? +# ||tscapeplay.com/msvp.php? (easyprivacy.txt: 9159) +.tscapeplay.com/msvp\.php\? +# ||truthdig.com/?ACT= (easyprivacy.txt: 9158) +.truthdig.com/\?ACT= +# ||truste.com/notice?*consent-track (easyprivacy.txt: 9157) +.truste.com/notice\?.*consent-track +# ||truste.com/common/js/ga.js (easyprivacy.txt: 9156) +.truste.com/common/js/ga\.js +# ||trueffect.underarmour.com^ (easyprivacy.txt: 9155) +.trueffect.underarmour.com +# ||truecar.com/tct? (easyprivacy.txt: 9154) +.truecar.com/tct\? +# ||trovus.co.uk/tracker/ (easyprivacy.txt: 9153) +.trovus.co.uk/tracker/ +# ||trove.com/identity/public/visitor/ (easyprivacy.txt: 9152) +.trove.com/identity/public/visitor/ +# ||tripadvisor.com/uvpages/page_moniker.html (easyprivacy.txt: 9151) +.tripadvisor.com/uvpages/page_moniker\.html +# ||tripadvisor.*/PageMoniker? (easyprivacy.txt: 9150) +.tripadvisor.*./(.*/)?PageMoniker\? +# ||triond.com/cntimp? (easyprivacy.txt: 9149) +.triond.com/cntimp\? +# ||trialpay.com/mi/ (easyprivacy.txt: 9148) +.trialpay.com/mi/ +# ||triadretail.com^*/roverTrack.js (easyprivacy.txt: 9147) +.triadretail.com/.*/roverTrack\.js +# ||treato.com/api/analytics? (easyprivacy.txt: 9146) +.treato.com/api/analytics\? +# ||treatme.co.nz^*/Census.js (easyprivacy.txt: 9145) +.treatme.co.nz/.*/Census\.js +# ||tre.emv3.com/P? (easyprivacy.txt: 9144) +.tre.emv3.com/P\? +# ||trck.sixt.com^ (easyprivacy.txt: 9143) +.trck.sixt.com +# ||trb.com/hive/swf/analytics.swf (easyprivacy.txt: 9142) +.trb.com/hive/swf/analytics\.swf +# ||trax.tvguide.com^ (easyprivacy.txt: 9141) +.trax.tvguide.com +# ||traktr.news.com.au^ (easyprivacy.txt: 9140) +.traktr.news.com.au +# ||trainup.com/inc/TUPTracking.js (easyprivacy.txt: 9139) +.trainup.com/inc/TUPTracking\.js +# ||traffic.tuberip.com^ (easyprivacy.txt: 9138) +.traffic.tuberip.com +# ||traffic.buyservices.com^ (easyprivacy.txt: 9137) +.traffic.buyservices.com +# ||trade-it.co.uk/counter/ (easyprivacy.txt: 9136) +.trade-it.co.uk/counter/ +# ||trackpm.shop2market.com^ (easyprivacy.txt: 9135) +.trackpm.shop2market.com +# ||tracking.yourfilehost.com^ (easyprivacy.txt: 9134) +.tracking.yourfilehost.com +# ||tracking.ustream.tv^ (easyprivacy.txt: 9133) +.tracking.ustream.tv +# ||tracking.unrealengine.com^ (easyprivacy.txt: 9132) +.tracking.unrealengine.com +# ||tracking.ukwm.co.uk^ (easyprivacy.txt: 9131) +.tracking.ukwm.co.uk +# ||tracking.times247.com^ (easyprivacy.txt: 9130) +.tracking.times247.com +# ||tracking.tidalhifi.com^ (easyprivacy.txt: 9129) +.tracking.tidalhifi.com +# ||tracking.softwareprojects.com^ (easyprivacy.txt: 9128) +.tracking.softwareprojects.com +# ||tracking.shoptogether.buy.com^ (easyprivacy.txt: 9127) +.tracking.shoptogether.buy.com +# ||tracking.resumecompanion.com^ (easyprivacy.txt: 9126) +.tracking.resumecompanion.com +# ||tracking.realtor.com^ (easyprivacy.txt: 9125) +.tracking.realtor.com +# ||tracking.olx.com^ (easyprivacy.txt: 9124) +.tracking.olx.com +# ||tracking.olx-st.com^ (easyprivacy.txt: 9123) +.tracking.olx-st.com +# ||tracking.mycapture.com^ (easyprivacy.txt: 9122) +.tracking.mycapture.com +# ||tracking.moneyam.com^ (easyprivacy.txt: 9121) +.tracking.moneyam.com +# ||tracking.military.com^ (easyprivacy.txt: 9120) +.tracking.military.com +# ||tracking.koego.com^ (easyprivacy.txt: 9119) +.tracking.koego.com +# ||tracking.hsn.com^ (easyprivacy.txt: 9118) +.tracking.hsn.com +# ||tracking.goodgamestudios.com^ (easyprivacy.txt: 9117) +.tracking.goodgamestudios.com +# ||tracking.gfycat.com/viewCount/ (easyprivacy.txt: 9116) +.tracking.gfycat.com/viewCount/ +# ||tracking.eurosport.com^ (easyprivacy.txt: 9115) +.tracking.eurosport.com +# ||tracking.conduit.com^ (easyprivacy.txt: 9114) +.tracking.conduit.com +# ||tracking.chacha.com^ (easyprivacy.txt: 9113) +.tracking.chacha.com +# ||tracking.carsales.com.au^ (easyprivacy.txt: 9112) +.tracking.carsales.com.au +# ||tracking.carprices.com^ (easyprivacy.txt: 9111) +.tracking.carprices.com +# ||tracking.battleon.com^ (easyprivacy.txt: 9110) +.tracking.battleon.com +# ||tracking.batanga.com^ (easyprivacy.txt: 9109) +.tracking.batanga.com +# ||tracking.ancestry.com^ (easyprivacy.txt: 9108) +.tracking.ancestry.com +# ||tracker.wordstream.com^ (easyprivacy.txt: 9107) +.tracker.wordstream.com +# ||tracker.washtimes.com^ (easyprivacy.txt: 9106) +.tracker.washtimes.com +# ||tracker.uprinting.com^ (easyprivacy.txt: 9105) +.tracker.uprinting.com +# ||tracker.revip.info^ (easyprivacy.txt: 9104) +.tracker.revip.info +# ||tracker.redditmedia.com^ (easyprivacy.txt: 9103) +.tracker.redditmedia.com +# ||tracker.realclearpolitics.com^ (easyprivacy.txt: 9102) +.tracker.realclearpolitics.com +# ||tracker.pinnaclesports.com^ (easyprivacy.txt: 9101) +.tracker.pinnaclesports.com +# ||tracker.mattel.com^ (easyprivacy.txt: 9100) +.tracker.mattel.com +# ||tracker.joost.com^ (easyprivacy.txt: 9099) +.tracker.joost.com +# ||tracker.cpapath.com^ (easyprivacy.txt: 9098) +.tracker.cpapath.com +# ||tracker.calameo.com^ (easyprivacy.txt: 9097) +.tracker.calameo.com +# ||tracker.anandtech.com^ (easyprivacy.txt: 9096) +.tracker.anandtech.com +# ||track.zomato.com^ (easyprivacy.txt: 9095) +.track.zomato.com +# ||track.zalando. (easyprivacy.txt: 9094) +.track.zalando.*. +# ||track.wildblue.com^ (easyprivacy.txt: 9093) +.track.wildblue.com +# ||track.websiteceo.com^ (easyprivacy.txt: 9092) +.track.websiteceo.com +# ||track.webgains.com^ (easyprivacy.txt: 9091) +.track.webgains.com +# ||track.slideshare.net^ (easyprivacy.txt: 9090) +.track.slideshare.net +# ||track.pushbullet.com^ (easyprivacy.txt: 9089) +.track.pushbullet.com +# ||track.promptfile.com^ (easyprivacy.txt: 9088) +.track.promptfile.com +# ||track.ning.com^ (easyprivacy.txt: 9087) +.track.ning.com +# ||track.netzero.net^ (easyprivacy.txt: 9086) +.track.netzero.net +# ||track.hubspot.com^ (easyprivacy.txt: 9085) +.track.hubspot.com +# ||track.gawker.com^ (easyprivacy.txt: 9084) +.track.gawker.com +# ||track.fxstreet.com^ (easyprivacy.txt: 9083) +.track.fxstreet.com +# ||track.ft.com^ (easyprivacy.txt: 9082) +.track.ft.com +# ||track.engagesciences.com^ (easyprivacy.txt: 9081) +.track.engagesciences.com +# ||track.collegehumor.com^ (easyprivacy.txt: 9080) +.track.collegehumor.com +# ||track.codepen.io^ (easyprivacy.txt: 9079) +.track.codepen.io +# ||track.cbs.com^ (easyprivacy.txt: 9078) +.track.cbs.com +# ||track.catalogs.com^ (easyprivacy.txt: 9077) +.track.catalogs.com +# ||track.briskfile.com^ (easyprivacy.txt: 9076) +.track.briskfile.com +# ||tracer.perezhilton.com^ (easyprivacy.txt: 9075) +.tracer.perezhilton.com +# ||tracelog.www.alibaba.com^ (easyprivacy.txt: 9074) +.tracelog.www.alibaba.com +# ||tqn.com/px/? (easyprivacy.txt: 9073) +.tqn.com/px/\? +# ||toyota.com/analytics/ (easyprivacy.txt: 9072) +.toyota.com/analytics/ +# ||tottenhamhotspur.com/media/javascript/google/ (easyprivacy.txt: 9071) +.tottenhamhotspur.com/media/javascript/google/ +# ||totalporn.com/videos/tracking/?url= (easyprivacy.txt: 9070) +.totalporn.com/videos/tracking/\?url= +# ||total.shanghaidaily.com^ (easyprivacy.txt: 9069) +.total.shanghaidaily.com +# ||toshibadirect.com^*/remarketing_google.js (easyprivacy.txt: 9068) +.toshibadirect.com/.*/remarketing_google\.js +# ||torrentz.ph/ping? (easyprivacy.txt: 9067) +.torrentz.ph/ping\? +# ||torrentz.me/ping? (easyprivacy.txt: 9066) +.torrentz.me/ping\? +# ||torrentz.li/ping? (easyprivacy.txt: 9065) +.torrentz.li/ping\? +# ||torrentz.in/ping? (easyprivacy.txt: 9064) +.torrentz.in/ping\? +# ||torrentz.eu/ping? (easyprivacy.txt: 9063) +.torrentz.eu/ping\? +# ||topix.com/t6track/ (easyprivacy.txt: 9062) +.topix.com/t6track/ +# ||top.wn.com^ (easyprivacy.txt: 9061) +.top.wn.com +# ||tmagazine.com/js/track_ (easyprivacy.txt: 9060) +.tmagazine.com/js/track_ +# ||tk.kargo.com^ (easyprivacy.txt: 9059) +.tk.kargo.com +# ||tivo.com/__ssobj/track? (easyprivacy.txt: 9058) +.tivo.com/__ssobj/track\? +# ||tinypic.com/track.php? (easyprivacy.txt: 9057) +.tinypic.com/track\.php\? +# ||tinypic.com/api.php?*&action=track$object-subrequest (easyprivacy.txt: 9056) +.tinypic.com/api\.php\?.*&action=track +# ||timestrends.timesnow.tv^ (easyprivacy.txt: 9055) +.timestrends.timesnow.tv +# ||timestrends.indiatimes.com^ (easyprivacy.txt: 9054) +.timestrends.indiatimes.com +# ||timesrecordnews.com/metrics/ (easyprivacy.txt: 9053) +.timesrecordnews.com/metrics/ +# ||timeslogtn.timesnow.tv^ (easyprivacy.txt: 9052) +.timeslogtn.timesnow.tv +# ||tidaltv.com/Ping.aspx (easyprivacy.txt: 9051) +.tidaltv.com/Ping\.aspx +# ||tickco.com/track.js (easyprivacy.txt: 9050) +.tickco.com/track\.js +# ||tiaa-cref.org^*/js_tiaacref_analytics. (easyprivacy.txt: 9049) +.tiaa-cref.org/.*/js_tiaacref_analytics\. +# ||ti.com/assets/js/headerfooter/$script (easyprivacy.txt: 9048) +.ti.com/assets/js/headerfooter/ +# ||thrillist.com/track (easyprivacy.txt: 9047) +.thrillist.com/track +# ||thinkgeek.com/js/rts.js (easyprivacy.txt: 9046) +.thinkgeek.com/js/rts\.js +# ||theweek.com/decor/track/ (easyprivacy.txt: 9045) +.theweek.com/decor/track/ +# ||thesmokinggun.com^*/jsmd.js (easyprivacy.txt: 9044) +.thesmokinggun.com/.*/jsmd\.js +# ||theseforums.com/track/ (easyprivacy.txt: 9043) +.theseforums.com/track/ +# ||thesaurus.com/track/ (easyprivacy.txt: 9042) +.thesaurus.com/track/ +# ||theolivepress.es/cdn-cgi/cl/ (easyprivacy.txt: 9041) +.theolivepress.es/cdn-cgi/cl/ +# ||thenewsroom.com//playerreporting/ (easyprivacy.txt: 9040) +# ||thelocal.se/scripts/sstat_plugin.js (easyprivacy.txt: 9039) +.thelocal.se/scripts/sstat_plugin\.js +# ||thelocal.se/log/? (easyprivacy.txt: 9038) +.thelocal.se/log/\? +# ||thelocal.de/marketplace/log/? (easyprivacy.txt: 9037) +.thelocal.de/marketplace/log/\? +# ||thelocal.de/log/? (easyprivacy.txt: 9036) +.thelocal.de/log/\? +# ||thejournal.ie/i.php (easyprivacy.txt: 9035) +.thejournal.ie/i\.php +# ||thejc.com/metatraffic2/ (easyprivacy.txt: 9034) +.thejc.com/metatraffic2/ +# ||thegumtree.com^*/tracking.js (easyprivacy.txt: 9033) +.thegumtree.com/.*/tracking\.js +# ||thegameslist.com/wb/t.gif (easyprivacy.txt: 9032) +.thegameslist.com/wb/t\.gif +# ||thefrisky.com/?act= (easyprivacy.txt: 9031) +.thefrisky.com/\?act= +# ||thefreedictionary.com^*/track.ashx? (easyprivacy.txt: 9030) +.thefreedictionary.com/.*/track\.ashx\? +# ||thefreedictionary.com/x/tp.ashx (easyprivacy.txt: 9029) +.thefreedictionary.com/x/tp\.ashx +# ||thefind.com/page/sizelog? (easyprivacy.txt: 9028) +.thefind.com/page/sizelog\? +# ||thefilter.com^*/CaptureRest.ashx?cmd= (easyprivacy.txt: 9027) +.thefilter.com/.*/CaptureRest\.ashx\?cmd= +# ||thefashionspot.com^*/pb.track.js (easyprivacy.txt: 9026) +.thefashionspot.com/.*/pb\.track\.js +# ||thedeal.com/oas_ (easyprivacy.txt: 9025) +.thedeal.com/oas_ +# ||thecreatorsproject.com/tracker.html (easyprivacy.txt: 9024) +.thecreatorsproject.com/tracker\.html +# ||theconversation.com/javascripts/lib/content_tracker_hook.js (easyprivacy.txt: 9023) +.theconversation.com/javascripts/lib/content_tracker_hook\.js +# ||theage.com.au^*/behave.js (easyprivacy.txt: 9022) +.theage.com.au/.*/behave\.js +# ||the42.ie/i.php (easyprivacy.txt: 9021) +.the42.ie/i\.php +# ||tgw.com/1/t.gif (easyprivacy.txt: 9020) +.tgw.com/1/t\.gif +# ||tfl.gov.uk/tfl-global/scripts/stats.js (easyprivacy.txt: 9019) +.tfl.gov.uk/tfl-global/scripts/stats\.js +# ||tfl.gov.uk/tfl-global/scripts/stats-config.js (easyprivacy.txt: 9018) +.tfl.gov.uk/tfl-global/scripts/stats-config\.js +# ||texaco.co.uk/trackingcode.js (easyprivacy.txt: 9017) +.texaco.co.uk/trackingcode\.js +# ||tesco.com/cgi-bin3/buyrate?type= (easyprivacy.txt: 9016) +.tesco.com/cgi-bin3/buyrate\?type= +# ||telegraph.co.uk^*/tmglmultitrackselector.js (easyprivacy.txt: 9015) +.telegraph.co.uk/.*/tmglmultitrackselector\.js +# ||ted1.metro.co.uk^ (easyprivacy.txt: 9014) +.ted1.metro.co.uk +# ||ted.metro.co.uk^ (easyprivacy.txt: 9013) +.ted.metro.co.uk +# ||ted.dailymail.co.uk^ (easyprivacy.txt: 9012) +.ted.dailymail.co.uk +# ||tdwaterhouse.co.uk^*/track.js (easyprivacy.txt: 9011) +.tdwaterhouse.co.uk/.*/track\.js +# ||tdwaterhouse.ca/includes/javascript/rtesurvey.js (easyprivacy.txt: 9010) +.tdwaterhouse.ca/includes/javascript/rtesurvey\.js +# ||tcpalm.com/metrics/ (easyprivacy.txt: 9009) +.tcpalm.com/metrics/ +# ||tcog.news.com.au^$~xmlhttprequest (easyprivacy.txt: 9008) +.tcog.news.com.au +# ||tck.bangbros.com^ (easyprivacy.txt: 9007) +.tck.bangbros.com +# ||tarot.com/stats/ (easyprivacy.txt: 9006) +.tarot.com/stats/ +# ||targetspot.com/track/ (easyprivacy.txt: 9005) +.targetspot.com/track/ +# ||target.com/ci/$script (easyprivacy.txt: 9004) +.target.com/ci/ +# ||talktalk.co.uk^*/tracking/ (easyprivacy.txt: 9003) +.talktalk.co.uk/.*/tracking/ +# ||talktalk.co.uk^*/log.html (easyprivacy.txt: 9002) +.talktalk.co.uk/.*/log\.html +# ||tags.transportdirect.info^ (easyprivacy.txt: 9001) +.tags.transportdirect.info +# ||tags.news.com.au^ (easyprivacy.txt: 9000) +.tags.news.com.au +# ||tags.msnbc.com^ (easyprivacy.txt: 8999) +.tags.msnbc.com +# ||tag-stats.huffpost.com^ (easyprivacy.txt: 8998) +.tag-stats.huffpost.com +# ||tacobell.com/tb_files/js/tracker.js (easyprivacy.txt: 8997) +.tacobell.com/tb_files/js/tracker\.js +# ||tab.co.nz/track? (easyprivacy.txt: 8996) +.tab.co.nz/track\? +# ||t3.com/js/trackers.js (easyprivacy.txt: 8995) +.t3.com/js/trackers\.js +# ||t2.huluim.com^ (easyprivacy.txt: 8994) +.t2.huluim.com +# ||t2.hulu.com^ (easyprivacy.txt: 8993) +.t2.hulu.com +# ||t.vimeo.com^ (easyprivacy.txt: 8992) +.t.vimeo.com +# ||t.paypal.com^ (easyprivacy.txt: 8991) +.t.paypal.com +# ||t.kck.st^ (easyprivacy.txt: 8990) +.t.kck.st +# ||t.hulu.com/beacon/ (easyprivacy.txt: 8989) +.t.hulu.com/beacon/ +# ||t.eharmony.com^ (easyprivacy.txt: 8988) +.t.eharmony.com +# ||t.dailymail.co.uk^ (easyprivacy.txt: 8987) +.t.dailymail.co.uk +# ||t.9gag.com^ (easyprivacy.txt: 8986) +.t.9gag.com +# ||t-ak.hulu.com^ (easyprivacy.txt: 8985) +.t-ak.hulu.com +# ||sysomos.com/track/ (easyprivacy.txt: 8984) +.sysomos.com/track/ +# ||surveys.cnet.com^ (easyprivacy.txt: 8983) +.surveys.cnet.com +# ||superpages.com/ct/clickThrough? (easyprivacy.txt: 8982) +.superpages.com/ct/clickThrough\? +# ||supermediastore.com/web/track? (easyprivacy.txt: 8981) +.supermediastore.com/web/track\? +# ||sundayskylb1.com/sst.gif? (easyprivacy.txt: 8980) +.sundayskylb1.com/sst\.gif\? +# ||sun.com/share/metrics/ (easyprivacy.txt: 8979) +.sun.com/share/metrics/ +# ||suite101.com/tracking/ (easyprivacy.txt: 8978) +.suite101.com/tracking/ +# ||sugarvine.com/inc/tracking.asp (easyprivacy.txt: 8977) +.sugarvine.com/inc/tracking\.asp +# ||sugar.gameforge.com^ (easyprivacy.txt: 8976) +.sugar.gameforge.com +# ||sublimevideo.net/_.gif (easyprivacy.txt: 8975) +.sublimevideo.net/_\.gif +# ||stylelist.com/ping?ts= (easyprivacy.txt: 8974) +.stylelist.com/ping\?ts= +# ||stuff.co.nz^*/track.min.js (easyprivacy.txt: 8973) +.stuff.co.nz/.*/track\.min\.js +# ||stuff.co.nz/track/ (easyprivacy.txt: 8972) +.stuff.co.nz/track/ +# ||stuff.afterdawn.com/views.cfm (easyprivacy.txt: 8971) +.stuff.afterdawn.com/views\.cfm +# ||studyisland.com^*/ga.js (easyprivacy.txt: 8970) +.studyisland.com/.*/ga\.js +# ||stribe.com/00/logs? (easyprivacy.txt: 8969) +.stribe.com/00/logs\? +# ||streetfire.net/handlers/logstreamfileimpression.ashx? (easyprivacy.txt: 8968) +.streetfire.net/handlers/logstreamfileimpression\.ashx\? +# ||streetfire.net/flash/trackingutility.swf (easyprivacy.txt: 8967) +.streetfire.net/flash/trackingutility\.swf +# ||streetdirectory.com/tracking/ (easyprivacy.txt: 8966) +.streetdirectory.com/tracking/ +# ||streamstats1.blinkx.com^ (easyprivacy.txt: 8965) +.streamstats1.blinkx.com +# ||stratfor.com/js/linktracker.js (easyprivacy.txt: 8964) +.stratfor.com/js/linktracker\.js +# ||storewidesearch.com/imn/mn.gif? (easyprivacy.txt: 8963) +.storewidesearch.com/imn/mn\.gif\? +# ||storenvy.com/tracking/ (easyprivacy.txt: 8962) +.storenvy.com/tracking/ +# ||store.yahoo.net^*/ywa.js (easyprivacy.txt: 8961) +.store.yahoo.net/.*/ywa\.js +# ||stomp.com.sg/site/servlet/tracker (easyprivacy.txt: 8960) +.stomp.com.sg/site/servlet/tracker +# ||stocktwits.com/spaceape-web.gif? (easyprivacy.txt: 8959) +.stocktwits.com/spaceape-web\.gif\? +# ||stickpage.com/counter.php (easyprivacy.txt: 8958) +.stickpage.com/counter\.php +# ||stg.nytimes.com^ (easyprivacy.txt: 8957) +.stg.nytimes.com +# ||stcollection.moneysupermarket.com^ (easyprivacy.txt: 8956) +.stcollection.moneysupermarket.com +# ||stbt.coupons.com^ (easyprivacy.txt: 8955) +.stbt.coupons.com +# ||stattrack.0catch.com^ (easyprivacy.txt: 8954) +.stattrack.0catch.com +# ||statstracker.celebrity-gossip.net^ (easyprivacy.txt: 8953) +.statstracker.celebrity-gossip.net +# ||stats.zmags.com^ (easyprivacy.txt: 8952) +.stats.zmags.com +# ||stats.ynet.co.il^ (easyprivacy.txt: 8951) +.stats.ynet.co.il +# ||stats.wwitv.com^ (easyprivacy.txt: 8950) +.stats.wwitv.com +# ||stats.wwd.com^ (easyprivacy.txt: 8949) +.stats.wwd.com +# ||stats.wordpress.com^ (easyprivacy.txt: 8948) +.stats.wordpress.com +# ||stats.vulture.com^ (easyprivacy.txt: 8947) +.stats.vulture.com +# ||stats.visistat.com^ (easyprivacy.txt: 8946) +.stats.visistat.com +# ||stats.video.search.yahoo.com^ (easyprivacy.txt: 8945) +.stats.video.search.yahoo.com +# ||stats.uswitch.com^ (easyprivacy.txt: 8944) +.stats.uswitch.com +# ||stats.townnews.com^ (easyprivacy.txt: 8943) +.stats.townnews.com +# ||stats.suite101.com^ (easyprivacy.txt: 8942) +.stats.suite101.com +# ||stats.storify.com^ (easyprivacy.txt: 8941) +.stats.storify.com +# ||stats.someecards.com^ (easyprivacy.txt: 8940) +.stats.someecards.com +# ||stats.slideshare.net^ (easyprivacy.txt: 8939) +.stats.slideshare.net +# ||stats.slashgear.com^ (easyprivacy.txt: 8938) +.stats.slashgear.com +# ||stats.shoppydoo.com^ (easyprivacy.txt: 8937) +.stats.shoppydoo.com +# ||stats.sharenet.co.za^ (easyprivacy.txt: 8936) +.stats.sharenet.co.za +# ||stats.searchsight.com^ (easyprivacy.txt: 8935) +.stats.searchsight.com +# ||stats.searchftps.org^ (easyprivacy.txt: 8934) +.stats.searchftps.org +# ||stats.redditmedia.com^ (easyprivacy.txt: 8933) +.stats.redditmedia.com +# ||stats.radiostreamlive.com^ (easyprivacy.txt: 8932) +.stats.radiostreamlive.com +# ||stats.pusher.com^ (easyprivacy.txt: 8931) +.stats.pusher.com +# ||stats.propublica.org^ (easyprivacy.txt: 8930) +.stats.propublica.org +# ||stats.piaggio.com^ (easyprivacy.txt: 8929) +.stats.piaggio.com +# ||stats.paypal.com^ (easyprivacy.txt: 8928) +.stats.paypal.com +# ||stats.paste2.org^ (easyprivacy.txt: 8927) +.stats.paste2.org +# ||stats.pandora.com^ (easyprivacy.txt: 8926) +.stats.pandora.com +# ||stats.nymag.com^ (easyprivacy.txt: 8925) +.stats.nymag.com +# ||stats.mehrnews.com^ (easyprivacy.txt: 8924) +.stats.mehrnews.com +# ||stats.macmillanusa.com^ (easyprivacy.txt: 8923) +.stats.macmillanusa.com +# ||stats.ibtimes.co.in^ (easyprivacy.txt: 8922) +.stats.ibtimes.co.in +# ||stats.harpercollins.com^ (easyprivacy.txt: 8921) +.stats.harpercollins.com +# ||stats.firedrive.com^ (easyprivacy.txt: 8920) +.stats.firedrive.com +# ||stats.farfetch.com^ (easyprivacy.txt: 8919) +.stats.farfetch.com +# ||stats.eyeviewdigital.com^ (easyprivacy.txt: 8918) +.stats.eyeviewdigital.com +# ||stats.europe.newsweek.com^ (easyprivacy.txt: 8917) +.stats.europe.newsweek.com +# ||stats.ebay.com^ (easyprivacy.txt: 8916) +.stats.ebay.com +# ||stats.clear-media.com^ (easyprivacy.txt: 8915) +.stats.clear-media.com +# ||stats.christianpost.com^ (easyprivacy.txt: 8914) +.stats.christianpost.com +# ||stats.cardschat.com^ (easyprivacy.txt: 8913) +.stats.cardschat.com +# ||stats.break.com^ (easyprivacy.txt: 8912) +.stats.break.com +# ||stats.blogg.se^ (easyprivacy.txt: 8911) +.stats.blogg.se +# ||stats.binki.es^ (easyprivacy.txt: 8910) +.stats.binki.es +# ||stats.behance.net^ (easyprivacy.txt: 8909) +.stats.behance.net +# ||stats.bbc.co.uk^ (easyprivacy.txt: 8908) +.stats.bbc.co.uk +# ||stats.avg.com^ (easyprivacy.txt: 8907) +.stats.avg.com +# ||stats.articlesbase.com^ (easyprivacy.txt: 8906) +.stats.articlesbase.com +# ||stats.aplus.com^ (easyprivacy.txt: 8905) +.stats.aplus.com +# ||statravel.com^*/Javascript/wt_gets.js (easyprivacy.txt: 8904) +.statravel.com/.*/Javascript/wt_gets\.js +# ||statravel.co.uk/static/uk_division_web_live/Javascript/wt_gets.js (easyprivacy.txt: 8903) +.statravel.co.uk/static/uk_division_web_live/Javascript/wt_gets\.js +# ||statistics.crowdynews.com^ (easyprivacy.txt: 8902) +.statistics.crowdynews.com +# ||staticworld.net/pixel.gif (easyprivacy.txt: 8901) +.staticworld.net/pixel\.gif +# ||staticwhich.co.uk/assets/*/track.js (easyprivacy.txt: 8900) +.staticwhich.co.uk/assets/.*/track\.js +# ||staticlp.com/analytics/ (easyprivacy.txt: 8899) +.staticlp.com/analytics/ +# ||staticice.com.au/cgi-bin/stats.cgi? (easyprivacy.txt: 8898) +.staticice.com.au/cgi-bin/stats\.cgi\? +# ||static.ow.ly^*/click.gz.js (easyprivacy.txt: 8897) +.static.ow.ly/.*/click\.gz\.js +# ||statesmanjournal.com^*/articlepageview.php? (easyprivacy.txt: 8896) +.statesmanjournal.com/.*/articlepageview\.php\? +# ||stat.torrentbar.com^ (easyprivacy.txt: 8895) +.stat.torrentbar.com +# ||stat.ruvr.ru^ (easyprivacy.txt: 8894) +.stat.ruvr.ru +# ||stat.dealtime.com^ (easyprivacy.txt: 8893) +.stat.dealtime.com +# ||stat.alibaba.com^ (easyprivacy.txt: 8892) +.stat.alibaba.com +# ||startpage.*/pelp? (easyprivacy.txt: 8891) +.startpage.*./(.*/)?pelp\? +# ||startpage.*/elp? (easyprivacy.txt: 8890) +.startpage.*./(.*/)?elp\? +# ||startpage.*/do/avt?$image (easyprivacy.txt: 8889) +.startpage.*./(.*/)?do/avt\? +# ||ssl-stats.wordpress.com^ (easyprivacy.txt: 8888) +.ssl-stats.wordpress.com +# ||srt.pch.com^ (easyprivacy.txt: 8887) +.srt.pch.com +# ||squidoo.com/track/ (easyprivacy.txt: 8886) +.squidoo.com/track/ +# ||spotlight.accuweather.com^ (easyprivacy.txt: 8885) +.spotlight.accuweather.com +# ||sportingnews.com/px/ (easyprivacy.txt: 8884) +.sportingnews.com/px/ +# ||sporcle.com/adn/yaktrack.php? (easyprivacy.txt: 8883) +.sporcle.com/adn/yaktrack\.php\? +# ||spoonful.com^*/tracking.js (easyprivacy.txt: 8882) +.spoonful.com/.*/tracking\.js +# ||splurgy.com/bacon/*_ct.gif$image (easyprivacy.txt: 8881) +.splurgy.com/bacon/.*_ct\.gif +# ||spinmediacdn.com/clarity.min.js (easyprivacy.txt: 8880) +.spinmediacdn.com/clarity\.min\.js +# ||spinmedia.com/clarity.min.js (easyprivacy.txt: 8879) +.spinmedia.com/clarity\.min\.js +# ||spinback.com/spinback/event/impression/ (easyprivacy.txt: 8878) +.spinback.com/spinback/event/impression/ +# ||spiegel.com/spacer.gif? (easyprivacy.txt: 8877) +.spiegel.com/spacer\.gif\? +# ||speakertext.com/analytics/ (easyprivacy.txt: 8876) +.speakertext.com/analytics/ +# ||spanids.thesaurus.com^ (easyprivacy.txt: 8875) +.spanids.thesaurus.com +# ||spanids.reference.com^ (easyprivacy.txt: 8874) +.spanids.reference.com +# ||spanids.dictionary.com^ (easyprivacy.txt: 8873) +.spanids.dictionary.com +# ||spade.twitch.tv^ (easyprivacy.txt: 8872) +.spade.twitch.tv +# ||sp.udimg.com^ (easyprivacy.txt: 8871) +.sp.udimg.com +# ||sovereignbank.com/utils/track.asp (easyprivacy.txt: 8870) +.sovereignbank.com/utils/track\.asp +# ||sourceforge.net/log/ (easyprivacy.txt: 8869) +.sourceforge.net/log/ +# ||sourceforge.net/images/mlopen_post.html? (easyprivacy.txt: 8868) +.sourceforge.net/images/mlopen_post\.html\? +# ||soonnight.com/stats.htm (easyprivacy.txt: 8867) +.soonnight.com/stats\.htm +# ||sony-europe.com/tr/p.gif? (easyprivacy.txt: 8866) +.sony-europe.com/tr/p\.gif\? +# ||somniture.theglobeandmail.com^ (easyprivacy.txt: 8865) +.somniture.theglobeandmail.com +# ||sofascore.com/geoip.js (easyprivacy.txt: 8864) +.sofascore.com/geoip\.js +# ||soe.com/js/web-platform/web-data-tracker.js (easyprivacy.txt: 8863) +.soe.com/js/web-platform/web-data-tracker\.js +# ||socialstreamingplayer.crystalmedianetworks.com/tracker/ (easyprivacy.txt: 8862) +.socialstreamingplayer.crystalmedianetworks.com/tracker/ +# ||socialcodedev.com/pixel/ (easyprivacy.txt: 8861) +.socialcodedev.com/pixel/ +# ||snowplow-collector.sugarops.com^ (easyprivacy.txt: 8860) +.snowplow-collector.sugarops.com +# ||snorgtees.com/js/digitalbasement/conversion.js (easyprivacy.txt: 8859) +.snorgtees.com/js/digitalbasement/conversion\.js +# ||snippets.mozilla.com^ (easyprivacy.txt: 8858) +.snippets.mozilla.com +# ||snakesworld.com/cgi-bin/hitometer/ (easyprivacy.txt: 8857) +.snakesworld.com/cgi-bin/hitometer/ +# ||smetrics.delta.com^ (easyprivacy.txt: 8856) +.smetrics.delta.com +# ||smartname.com/scripts/cookies.js (easyprivacy.txt: 8855) +.smartname.com/scripts/cookies\.js +# ||smallcapnetwork.com^*/viewtracker/ (easyprivacy.txt: 8854) +.smallcapnetwork.com/.*/viewtracker/ +# ||slide.com/tracker/ (easyprivacy.txt: 8853) +.slide.com/tracker/ +# ||slashgear.com/stats/ (easyprivacy.txt: 8852) +.slashgear.com/stats/ +# ||slacker.com/beacon/page/$image (easyprivacy.txt: 8851) +.slacker.com/beacon/page/ +# ||skyrock.net/stats/ (easyprivacy.txt: 8850) +.skyrock.net/stats/ +# ||skyrock.net/js/stats_blog.js (easyprivacy.txt: 8849) +.skyrock.net/js/stats_blog\.js +# ||skyrock.net/img/pix.gif (easyprivacy.txt: 8848) +.skyrock.net/img/pix\.gif +# ||skypeassets.com^*/track_channel.js (easyprivacy.txt: 8847) +.skypeassets.com/.*/track_channel\.js +# ||skypeassets.com^*/inclient/ (easyprivacy.txt: 8846) +.skypeassets.com/.*/inclient/ +# ||skypeassets.com/i/js/jquery/tracking.js (easyprivacy.txt: 8845) +.skypeassets.com/i/js/jquery/tracking\.js +# ||skype.com^*/track_channel.js (easyprivacy.txt: 8844) +.skype.com/.*/track_channel\.js +# ||skype.com^*/inclient/ (easyprivacy.txt: 8843) +.skype.com/.*/inclient/ +# ||sky.com^*/incomeGeneratingDevicesExpanding.js (easyprivacy.txt: 8842) +.sky.com/.*/incomeGeneratingDevicesExpanding\.js +# ||sky.com^*/hightrafficsurveycode.js (easyprivacy.txt: 8841) +.sky.com/.*/hightrafficsurveycode\.js +# ||sixpack.udimg.com^ (easyprivacy.txt: 8840) +.sixpack.udimg.com +# ||sitemeter.com/meter.asp (easyprivacy.txt: 8839) +.sitemeter.com/meter\.asp +# ||sitelife.ehow.com^ (easyprivacy.txt: 8838) +.sitelife.ehow.com +# ||singer22-static.com/stat/ (easyprivacy.txt: 8837) +.singer22-static.com/stat/ +# ||simplyhired.com^*/hit? (easyprivacy.txt: 8836) +.simplyhired.com/.*/hit\? +# ||similarsites.com/sbbgate.aspx/ (easyprivacy.txt: 8835) +.similarsites.com/sbbgate\.aspx/ +# ||sidebar.issuu.com^ (easyprivacy.txt: 8834) +.sidebar.issuu.com +# ||siberiantimes.com/counter/ (easyprivacy.txt: 8833) +.siberiantimes.com/counter/ +# ||shvoong.com/images/spacer.gif (easyprivacy.txt: 8832) +.shvoong.com/images/spacer\.gif +# ||shutterstock.com/b.png? (easyprivacy.txt: 8831) +.shutterstock.com/b\.png\? +# ||shutterfly.com^*/pageloadtime.gif? (easyprivacy.txt: 8830) +.shutterfly.com/.*/pageloadtime\.gif\? +# ||showstreet.com/log/ (easyprivacy.txt: 8829) +.showstreet.com/log/ +# ||shoutcast.com/traffic/? (easyprivacy.txt: 8828) +.shoutcast.com/traffic/\? +# ||shopzilla-images.com/s2static/*/js/tracker.js (easyprivacy.txt: 8827) +.shopzilla-images.com/s2static/.*/js/tracker\.js +# ||shopsubmit.co.uk/visitor.ashx (easyprivacy.txt: 8826) +.shopsubmit.co.uk/visitor\.ashx +# ||shopping.com/pixel/ (easyprivacy.txt: 8825) +.shopping.com/pixel/ +# ||shoplocal.com/dot_clear.gif? (easyprivacy.txt: 8824) +.shoplocal.com/dot_clear\.gif\? +# ||shopify.com/track.js (easyprivacy.txt: 8823) +.shopify.com/track\.js +# ||shopautoweek.com/js/modules/tracker.js (easyprivacy.txt: 8822) +.shopautoweek.com/js/modules/tracker\.js +# ||shoes.com/WebServices/ClientLogging. (easyprivacy.txt: 8821) +.shoes.com/WebServices/ClientLogging\. +# ||sharecast.com/counter.php (easyprivacy.txt: 8820) +.sharecast.com/counter\.php +# ||shareaholic.com^*/bake.gif? (easyprivacy.txt: 8819) +.shareaholic.com/.*/bake\.gif\? +# ||sh.st/bundles/smeweb/img/tracking- (easyprivacy.txt: 8818) +.sh.st/bundles/smeweb/img/tracking- +# ||sex-flow.com/js/error.js (easyprivacy.txt: 8817) +.sex-flow.com/js/error\.js +# ||sevenload.com/som_ (easyprivacy.txt: 8816) +.sevenload.com/som_ +# ||sevenload.com/blank.gif? (easyprivacy.txt: 8815) +.sevenload.com/blank\.gif\? +# ||session-tracker.badcreditloans.com^ (easyprivacy.txt: 8814) +.session-tracker.badcreditloans.com +# ||servicetick.com^ (easyprivacy.txt: 8813) +.servicetick.com +# ||servedby.yell.com/t.js?cq (easyprivacy.txt: 8812) +.servedby.yell.com/t\.js\?cq +# ||seoquake.com/seoadv/audience/3.gif (easyprivacy.txt: 8811) +.seoquake.com/seoadv/audience/3\.gif +# ||sense.dailymotion.com^ (easyprivacy.txt: 8810) +.sense.dailymotion.com +# ||sella.co.nz^*/sella_stats_ (easyprivacy.txt: 8809) +.sella.co.nz/.*/sella_stats_ +# ||selfip.org/counter/ (easyprivacy.txt: 8808) +.selfip.org/counter/ +# ||seeclickfix.com^*/text_widgets_analytics.html (easyprivacy.txt: 8807) +.seeclickfix.com/.*/text_widgets_analytics\.html +# ||securepaynet.net/image.aspx? (easyprivacy.txt: 8806) +.securepaynet.net/image\.aspx\? +# ||secondspace.com^*/blank.gif (easyprivacy.txt: 8805) +.secondspace.com/.*/blank\.gif +# ||seatgeek.com/tracker.gif? (easyprivacy.txt: 8804) +.seatgeek.com/tracker\.gif\? +# ||seatgeek.com/sixpack/participate? (easyprivacy.txt: 8803) +.seatgeek.com/sixpack/participate\? +# ||searchenginewatch.com/utils/article_track/ (easyprivacy.txt: 8802) +.searchenginewatch.com/utils/article_track/ +# ||search.yahoo.com/ra/click? (easyprivacy.txt: 8801) +.search.yahoo.com/ra/click\? +# ||search.usa.gov/javascripts/stats.js (easyprivacy.txt: 8800) +.search.usa.gov/javascripts/stats\.js +# ||search.firstplace.com^*pageview (easyprivacy.txt: 8799) +.search.firstplace.com/.*pageview +# ||search.ch/audit/ (easyprivacy.txt: 8798) +.search.ch/audit/ +# ||sdc.com/sdcdata.js (easyprivacy.txt: 8797) +.sdc.com/sdcdata\.js +# ||scripts.snowball.com/scripts/images/pixy.gif (easyprivacy.txt: 8796) +.scripts.snowball.com/scripts/images/pixy\.gif +# ||scriptlance.com/cgi-bin/freelancers/ref_click.cgi? (easyprivacy.txt: 8795) +.scriptlance.com/cgi-bin/freelancers/ref_click\.cgi\? +# ||scribol.com/traffix-tracker.gif (easyprivacy.txt: 8794) +.scribol.com/traffix-tracker\.gif +# ||scribe.twitter.com^ (easyprivacy.txt: 8793) +.scribe.twitter.com +# ||scribd.com^*/tracker.gif? (easyprivacy.txt: 8792) +.scribd.com/.*/tracker\.gif\? +# ||scout.rollcall.com^ (easyprivacy.txt: 8791) +.scout.rollcall.com +# ||scout.lexisnexis.com^ (easyprivacy.txt: 8790) +.scout.lexisnexis.com +# ||scotts.com/smg/js/omni/customTracking.js (easyprivacy.txt: 8789) +.scotts.com/smg/js/omni/customTracking\.js +# ||scoot.co.uk/ajax/log_serps.php (easyprivacy.txt: 8788) +.scoot.co.uk/ajax/log_serps\.php +# ||scoop.co.nz/images/pixel.gif (easyprivacy.txt: 8787) +.scoop.co.nz/images/pixel\.gif +# ||sciencedaily.com/cache.php? (easyprivacy.txt: 8786) +.sciencedaily.com/cache\.php\? +# ||sciencedaily.com/blank.htm (easyprivacy.txt: 8785) +.sciencedaily.com/blank\.htm +# ||sbs.com.au/js/tracking/ (easyprivacy.txt: 8784) +.sbs.com.au/js/tracking/ +# ||sb.vevo.com^ (easyprivacy.txt: 8783) +.sb.vevo.com +# ||sayac.hurriyettv.com^ (easyprivacy.txt: 8782) +.sayac.hurriyettv.com +# ||satellite-tv-guides.com/stat/ (easyprivacy.txt: 8781) +.satellite-tv-guides.com/stat/ +# ||sap.com/global/ui/js/trackinghelper.js (easyprivacy.txt: 8780) +.sap.com/global/ui/js/trackinghelper\.js +# ||sana.newsinc.com.s3.amazonaws.com^ (easyprivacy.txt: 8779) +.sana.newsinc.com.s3.amazonaws.com +# ||samsung.com^*/scripts/tracking.js (easyprivacy.txt: 8778) +.samsung.com/.*/scripts/tracking\.js +# ||salsitasoft.com/view.gif? (easyprivacy.txt: 8777) +.salsitasoft.com/view\.gif\? +# ||sagepub.com^*/login_hit_hidden.gif? (easyprivacy.txt: 8776) +.sagepub.com/.*/login_hit_hidden\.gif\? +# ||sabc.co.za/SABC/analytics/ (easyprivacy.txt: 8775) +.sabc.co.za/SABC/analytics/ +# ||sabah.com.tr/StatisticImage/ (easyprivacy.txt: 8774) +.sabah.com.tr/StatisticImage/ +# ||sabah.com.tr/Statistic/ (easyprivacy.txt: 8773) +.sabah.com.tr/Statistic/ +# ||sa.squareup.com^ (easyprivacy.txt: 8772) +.sa.squareup.com +# ||sa.bbc.com^ (easyprivacy.txt: 8771) +.sa.bbc.com +# ||sa.bbc.co.uk^ (easyprivacy.txt: 8770) +.sa.bbc.co.uk +# ||s2.youtube.com^ (easyprivacy.txt: 8769) +.s2.youtube.com +# ||s.youtube.com^ (easyprivacy.txt: 8768) +.s.youtube.com +# ||s.infogr.am^ (easyprivacy.txt: 8767) +.s.infogr.am +# ||s-msn.com/s/js/loader/activity/trackloader.min.js (easyprivacy.txt: 8766) +.s-msn.com/s/js/loader/activity/trackloader\.min\.js +# ||s-msn.com/br/gbl/js/2/report.js (easyprivacy.txt: 8764) +.s-msn.com/br/gbl/js/2/report\.js +# ||russellgrant.com/hostedsearch/panelcounter.aspx (easyprivacy.txt: 8763) +.russellgrant.com/hostedsearch/panelcounter\.aspx +# ||runnersworld.com^*/universalpixel.html (easyprivacy.txt: 8762) +.runnersworld.com/.*/universalpixel\.html +# ||rte.ie/player/playertracker.js (easyprivacy.txt: 8761) +.rte.ie/player/playertracker\.js +# ||rta.dailymail.co.uk^ (easyprivacy.txt: 8760) +.rta.dailymail.co.uk +# ||rt.rakuten.co.jp^ (easyprivacy.txt: 8759) +.rt.rakuten.co.jp +# ||rt.prnewswire.com^ (easyprivacy.txt: 8758) +.rt.prnewswire.com +# ||rsys2.net/pub/as? (easyprivacy.txt: 8757) +.rsys2.net/pub/as\? +# ||rsscache.com/Section/Stats/ (easyprivacy.txt: 8756) +.rsscache.com/Section/Stats/ +# ||rs.mail.ru^ (easyprivacy.txt: 8755) +.rs.mail.ru +# ||rover.ebay.com.au^*&cguid= (easyprivacy.txt: 8754) +.rover.ebay.com.au/.*&cguid= +# ||rover.ebay.$image,object,script (easyprivacy.txt: 8753) +.rover.ebay.*. +# ||rottentomatoes.com/tracking/ (easyprivacy.txt: 8752) +.rottentomatoes.com/tracking/ +# ||roll.bankofamerica.com^ (easyprivacy.txt: 8751) +.roll.bankofamerica.com +# ||rok.com.com^ (easyprivacy.txt: 8750) +.rok.com.com +# ||roadandtrack.com^*/RTdartSite.js (easyprivacy.txt: 8749) +.roadandtrack.com/.*/RTdartSite\.js +# ||ro89.com/hitme.php? (easyprivacy.txt: 8748) +.ro89.com/hitme\.php\? +# ||rkdms.com/sid.gif? (easyprivacy.txt: 8747) +.rkdms.com/sid\.gif\? +# ||rkdms.com/order.gif? (easyprivacy.txt: 8746) +.rkdms.com/order\.gif\? +# ||riverisland.com^*/mindshare.min.js (easyprivacy.txt: 8745) +.riverisland.com/.*/mindshare\.min\.js +# ||ritzcarlton.com/ritz/crossDomainTracking.mi? (easyprivacy.txt: 8744) +.ritzcarlton.com/ritz/crossDomainTracking\.mi\? +# ||rismedia.com/tracking.js (easyprivacy.txt: 8743) +.rismedia.com/tracking\.js +# ||ripe.net/1x1.gif? (easyprivacy.txt: 8742) +.ripe.net/1x1\.gif\? +# ||ringcentral.com/misc/se_track.asp (easyprivacy.txt: 8741) +.ringcentral.com/misc/se_track\.asp +# ||rightstuf.com/phplive/ajax/footprints.php (easyprivacy.txt: 8740) +.rightstuf.com/phplive/ajax/footprints\.php +# ||rightmove.co.uk/ps/images/logging/timer.gif? (easyprivacy.txt: 8739) +.rightmove.co.uk/ps/images/logging/timer\.gif\? +# ||rgbstock.com/logsearch/ (easyprivacy.txt: 8738) +.rgbstock.com/logsearch/ +# ||revsci.tvguide.com^ (easyprivacy.txt: 8737) +.revsci.tvguide.com +# ||reutersmedia.net^*/tracker-article*.js (easyprivacy.txt: 8736) +.reutersmedia.net/.*/tracker-article.*\.js +# ||reutersmedia.net^*/px.js (easyprivacy.txt: 8735) +.reutersmedia.net/.*/px\.js +# ||reuters.com^*/widget-rta-poc.js (easyprivacy.txt: 8734) +.reuters.com/.*/widget-rta-poc\.js +# ||reuters.com^*/tracker_video.js (easyprivacy.txt: 8733) +.reuters.com/.*/tracker_video\.js +# ||reuters.com^*/rcom-wt-mlt.js (easyprivacy.txt: 8732) +.reuters.com/.*/rcom-wt-mlt\.js +# ||reuters.com/tracker/ (easyprivacy.txt: 8731) +.reuters.com/tracker/ +# ||reuters.com/pulse/$script (easyprivacy.txt: 8730) +.reuters.com/pulse/ +# ||retrevo.com/search/v2/jsp/blank.jsp? (easyprivacy.txt: 8729) +.retrevo.com/search/v2/jsp/blank\.jsp\? +# ||retrevo.com/m/vm/tracking/ (easyprivacy.txt: 8728) +.retrevo.com/m/vm/tracking/ +# ||resellerclub.com/helpdesk/visitor/index.php?$image (easyprivacy.txt: 8727) +.resellerclub.com/helpdesk/visitor/index\.php\? +# ||researchchannel.co.za/count.php? (easyprivacy.txt: 8726) +.researchchannel.co.za/count\.php\? +# ||request.issuu.com^ (easyprivacy.txt: 8725) +.request.issuu.com +# ||reporting.wilkinsonplus.com^ (easyprivacy.txt: 8724) +.reporting.wilkinsonplus.com +# ||reporting.theonion.com^ (easyprivacy.txt: 8723) +.reporting.theonion.com +# ||reporting.onthebeach.co.uk^ (easyprivacy.txt: 8722) +.reporting.onthebeach.co.uk +# ||reporting.flymonarch.com^ (easyprivacy.txt: 8721) +.reporting.flymonarch.com +# ||reporternews.com/metrics/ (easyprivacy.txt: 8720) +.reporternews.com/metrics/ +# ||reporter-times.com/js/tk.js? (easyprivacy.txt: 8719) +.reporter-times.com/js/tk\.js\? +# ||report.shell.com^ (easyprivacy.txt: 8718) +.report.shell.com +# ||rent.com/track/visit/ (easyprivacy.txt: 8717) +.rent.com/track/visit/ +# ||rel.msn.com^ (easyprivacy.txt: 8716) +.rel.msn.com +# ||register.it/scripts/track_ (easyprivacy.txt: 8715) +.register.it/scripts/track_ +# ||refinery29.com/api/stats? (easyprivacy.txt: 8714) +.refinery29.com/api/stats\? +# ||reference.com/track/ (easyprivacy.txt: 8713) +.reference.com/track/ +# ||redtube.com^*/jscount.php (easyprivacy.txt: 8712) +.redtube.com/.*/jscount\.php +# ||redtube.com/trackplay? (easyprivacy.txt: 8711) +.redtube.com/trackplay\? +# ||redtube.com/trackimps (easyprivacy.txt: 8710) +.redtube.com/trackimps +# ||redtube.com/stats/ (easyprivacy.txt: 8709) +.redtube.com/stats/ +# ||redtube.com/pix.php (easyprivacy.txt: 8708) +.redtube.com/pix\.php +# ||redtube.com/js/track.js (easyprivacy.txt: 8707) +.redtube.com/js/track\.js +# ||redtube.com/blockcount| (easyprivacy.txt: 8706) +.redtube.com/blockcount$ +# ||redtube.com/_status/pixa.php (easyprivacy.txt: 8705) +.redtube.com/_status/pixa\.php +# ||redtube.com/_status/pix.php (easyprivacy.txt: 8704) +.redtube.com/_status/pix\.php +# ||rediff.com^*/?rkey= (easyprivacy.txt: 8703) +.rediff.com/.*/\?rkey= +# ||redeye.williamhill.com^ (easyprivacy.txt: 8702) +.redeye.williamhill.com +# ||reddit.com/static/pixel.png (easyprivacy.txt: 8701) +.reddit.com/static/pixel\.png +# ||redding.com/metrics/ (easyprivacy.txt: 8700) +.redding.com/metrics/ +# ||recommendation.24.com^ (easyprivacy.txt: 8699) +.recommendation.24.com +# ||recomendedsite.com/addon/upixel/ (easyprivacy.txt: 8698) +.recomendedsite.com/addon/upixel/ +# ||reco.hardsextube.com^ (easyprivacy.txt: 8697) +.reco.hardsextube.com +# ||realitytvworld.com/images/pixel.gif (easyprivacy.txt: 8696) +.realitytvworld.com/images/pixel\.gif +# ||real.com^*/track.png? (easyprivacy.txt: 8695) +.real.com/.*/track\.png\? +# ||real.com^*/track.htm? (easyprivacy.txt: 8694) +.real.com/.*/track\.htm\? +# ||real.com^*/pixel? (easyprivacy.txt: 8693) +.real.com/.*/pixel\? +# ||reachlocal.com/js/tracklandingpage.js (easyprivacy.txt: 8692) +.reachlocal.com/js/tracklandingpage\.js +# ||rd.meebo.com^ (easyprivacy.txt: 8691) +.rd.meebo.com +# ||rbl.ms/spacer.gif?$image (easyprivacy.txt: 8690) +.rbl.ms/spacer\.gif\? +# ||razor.tv/site/servlet/tracker.jsp (easyprivacy.txt: 8689) +.razor.tv/site/servlet/tracker\.jsp +# ||rat.rakuten.co.jp^ (easyprivacy.txt: 8688) +.rat.rakuten.co.jp +# ||rarefilmfinder.com^*/cnt-gif1x1.php (easyprivacy.txt: 8687) +.rarefilmfinder.com/.*/cnt-gif1x1\.php +# ||rangers.co.uk^*/tracking.js (easyprivacy.txt: 8686) +.rangers.co.uk/.*/tracking\.js +# ||ralphlauren.com^*/icg.metrics.js (easyprivacy.txt: 8685) +.ralphlauren.com/.*/icg\.metrics\.js +# ||rakuten-static.com/com/rat/ (easyprivacy.txt: 8684) +.rakuten-static.com/com/rat/ +# ||rainbow-uk.mythings.com^ (easyprivacy.txt: 8683) +.rainbow-uk.mythings.com +# ||radioplayer.co.uk/v3/analytics.html? (easyprivacy.txt: 8682) +.radioplayer.co.uk/v3/analytics\.html\? +# ||radio.cz/assets/js/analytics.js (easyprivacy.txt: 8681) +.radio.cz/assets/js/analytics\.js +# ||radio-canada.ca/lib/TrueSight/markerFile.gif? (easyprivacy.txt: 8680) +.radio-canada.ca/lib/TrueSight/markerFile\.gif\? +# ||racinguk.com/images/home_sponsors/ (easyprivacy.txt: 8679) +.racinguk.com/images/home_sponsors/ +# ||racingbase.com/tracking_fetchinfo.aspx? (easyprivacy.txt: 8678) +.racingbase.com/tracking_fetchinfo\.aspx\? +# ||r.bbci.co.uk^ (easyprivacy.txt: 8677) +.r.bbci.co.uk +# ||quotesonic.com/vendor/pixel.cfm (easyprivacy.txt: 8676) +.quotesonic.com/vendor/pixel\.cfm +# ||quintcareers.4jobs.com/Common/JavaScript/functions.tracking.js (easyprivacy.txt: 8675) +.quintcareers.4jobs.com/Common/JavaScript/functions\.tracking\.js +# ||quickmeme.com/tracker/ (easyprivacy.txt: 8674) +.quickmeme.com/tracker/ +# ||quibids.com^*/pixels/ (easyprivacy.txt: 8673) +.quibids.com/.*/pixels/ +# ||questionmarket.com/static/ (easyprivacy.txt: 8672) +.questionmarket.com/static/ +# ||questionmarket.com/adsc/ (easyprivacy.txt: 8671) +.questionmarket.com/adsc/ +# ||quantserve.com/pixel; (easyprivacy.txt: 8670) +.quantserve.com/pixel; +# ||qbn.com/media/static/js/ga.js (easyprivacy.txt: 8669) +.qbn.com/media/static/js/ga\.js +# ||q.stripe.com^ (easyprivacy.txt: 8668) +.q.stripe.com +# ||pw.org/sites/all/*/ga.js (easyprivacy.txt: 8667) +.pw.org/sites/all/.*/ga\.js +# ||pvstat.china.cn^ (easyprivacy.txt: 8666) +.pvstat.china.cn +# ||puritan.com/images/pixels/ (easyprivacy.txt: 8665) +.puritan.com/images/pixels/ +# ||pulse-analytics-beacon.reutersmedia.net^ (easyprivacy.txt: 8664) +.pulse-analytics-beacon.reutersmedia.net +# ||pubarticles.com/add_hits_by_user_click.php (easyprivacy.txt: 8663) +.pubarticles.com/add_hits_by_user_click\.php +# ||pubarticles.com/_hits.php? (easyprivacy.txt: 8662) +.pubarticles.com/_hits\.php\? +# ||ps-deals.com/aggbug.aspx (easyprivacy.txt: 8661) +.ps-deals.com/aggbug\.aspx +# ||prudential.com^*/metrics_1px.gif? (easyprivacy.txt: 8660) +.prudential.com/.*/metrics_1px\.gif\? +# ||proxypage.msn.com^ (easyprivacy.txt: 8659) +.proxypage.msn.com +# ||prosper.com/referrals/ (easyprivacy.txt: 8658) +.prosper.com/referrals/ +# ||prospects.ac.uk/assets/js/prospectsWebTrends.js (easyprivacy.txt: 8657) +.prospects.ac.uk/assets/js/prospectsWebTrends\.js +# ||propertyfinder.ae/js/ga.js (easyprivacy.txt: 8656) +.propertyfinder.ae/js/ga\.js +# ||prontohome.com/permuto.do (easyprivacy.txt: 8655) +.prontohome.com/permuto\.do +# ||projop.dnsalias.com/intranet-crm-tracking/ (easyprivacy.txt: 8654) +.projop.dnsalias.com/intranet-crm-tracking/ +# ||proac.nationwide.com^ (easyprivacy.txt: 8653) +.proac.nationwide.com +# ||prnewswire.com/rt.gif? (easyprivacy.txt: 8652) +.prnewswire.com/rt\.gif\? +# ||prnewswire.com/rit.gif? (easyprivacy.txt: 8651) +.prnewswire.com/rit\.gif\? +# ||princetonreview.com/logging/ (easyprivacy.txt: 8650) +.princetonreview.com/logging/ +# ||pricegrabber.com/analytics.php (easyprivacy.txt: 8649) +.pricegrabber.com/analytics\.php +# ||presstv.ir/stat/ (easyprivacy.txt: 8648) +.presstv.ir/stat/ +# ||presentationtracking.netflix.com^ (easyprivacy.txt: 8647) +.presentationtracking.netflix.com +# ||pp-serve.newsinc.com^ (easyprivacy.txt: 8646) +.pp-serve.newsinc.com +# ||powerreviews.com^*/ph.gif? (easyprivacy.txt: 8645) +.powerreviews.com/.*/ph\.gif\? +# ||pound.buzzfeed.com^ (easyprivacy.txt: 8644) +.pound.buzzfeed.com +# ||potterybarnkids.com/pkimgs/*/external/thirdparty.js (easyprivacy.txt: 8643) +.potterybarnkids.com/pkimgs/.*/external/thirdparty\.js +# ||potterybarn.com/pbimgs/*/external/thirdparty.js (easyprivacy.txt: 8642) +.potterybarn.com/pbimgs/.*/external/thirdparty\.js +# ||porndoo.com/lib/ajax/track.php (easyprivacy.txt: 8641) +.porndoo.com/lib/ajax/track\.php +# ||popcap.com^*/interstitial_zones.js (easyprivacy.txt: 8640) +.popcap.com/.*/interstitial_zones\.js +# ||polity.org.za/count.php? (easyprivacy.txt: 8639) +.polity.org.za/count\.php\? +# ||pokernews.com/track-views.php? (easyprivacy.txt: 8638) +.pokernews.com/track-views\.php\? +# ||pnet.co.za/js/ga.js (easyprivacy.txt: 8637) +.pnet.co.za/js/ga\.js +# ||pluto.airbnb.com^*.php?uuid= (easyprivacy.txt: 8636) +.pluto.airbnb.com/.*\.php\?uuid= +# ||plentyoffish.com/tracking.js (easyprivacy.txt: 8635) +.plentyoffish.com/tracking\.js +# ||playstation.com/beacon/ (easyprivacy.txt: 8634) +.playstation.com/beacon/ +# ||playserver1.com/analytics/ (easyprivacy.txt: 8633) +.playserver1.com/analytics/ +# ||playlist.com/scripts/remote_logger.js (easyprivacy.txt: 8632) +.playlist.com/scripts/remote_logger\.js +# ||playdom.com/affl/show_pixel? (easyprivacy.txt: 8631) +.playdom.com/affl/show_pixel\? +# ||playboy.com/libs/analytics/ (easyprivacy.txt: 8630) +.playboy.com/libs/analytics/ +# ||play.com/sitetrak/ (easyprivacy.txt: 8629) +.play.com/sitetrak/ +# ||play.com/analytics/ (easyprivacy.txt: 8628) +.play.com/analytics/ +# ||pixiedust.buzzfeed.com^ (easyprivacy.txt: 8627) +.pixiedust.buzzfeed.com +# ||pixels.livingsocial.com^ (easyprivacy.txt: 8626) +.pixels.livingsocial.com +# ||pixel.staging.tree.com^ (easyprivacy.txt: 8625) +.pixel.staging.tree.com +# ||pixel.redditmedia.com^ (easyprivacy.txt: 8624) +.pixel.redditmedia.com +# ||pixel.reddit.com^ (easyprivacy.txt: 8623) +.pixel.reddit.com +# ||pixel.propublica.org^ (easyprivacy.txt: 8622) +.pixel.propublica.org +# ||pixel.pcworld.com^ (easyprivacy.txt: 8621) +.pixel.pcworld.com +# ||pixel.newsdiscover.com.au^ (easyprivacy.txt: 8620) +.pixel.newsdiscover.com.au +# ||pixel.klout.com^ (easyprivacy.txt: 8619) +.pixel.klout.com +# ||pixel.honestjohn.co.uk^ (easyprivacy.txt: 8618) +.pixel.honestjohn.co.uk +# ||pixel.facebook.com^ (easyprivacy.txt: 8617) +.pixel.facebook.com +# ||pixel.digitalspy.co.uk^ (easyprivacy.txt: 8616) +.pixel.digitalspy.co.uk +# ||pixel.buzzfeed.com^ (easyprivacy.txt: 8615) +.pixel.buzzfeed.com +# ||pixazza.com/track/ (easyprivacy.txt: 8614) +.pixazza.com/track/ +# ||pix.gfycat.com^ (easyprivacy.txt: 8613) +.pix.gfycat.com +# ||pix.eads.com^ (easyprivacy.txt: 8612) +.pix.eads.com +# ||pipl.com/rd/? (easyprivacy.txt: 8611) +.pipl.com/rd/\? +# ||pipeline.realtime.active.com^ (easyprivacy.txt: 8610) +.pipeline.realtime.active.com +# ||pings.blip.tv^ (easyprivacy.txt: 8609) +.pings.blip.tv +# ||ping.buto.tv^ (easyprivacy.txt: 8608) +.ping.buto.tv +# ||pictopia.com^*/hb.gif? (easyprivacy.txt: 8607) +.pictopia.com/.*/hb\.gif\? +# ||pichunter.com/logs/ (easyprivacy.txt: 8606) +.pichunter.com/logs/ +# ||picbucks.com/track/ (easyprivacy.txt: 8605) +.picbucks.com/track/ +# ||picapp.com/empty.gif? (easyprivacy.txt: 8604) +.picapp.com/empty\.gif\? +# ||pi.feedsportal.com^ (easyprivacy.txt: 8603) +.pi.feedsportal.com +# ||photographyblog.com/?ACT (easyprivacy.txt: 8602) +.photographyblog.com/\?ACT +# ||photobucket.com^*/tracklite.php (easyprivacy.txt: 8601) +.photobucket.com/.*/tracklite\.php +# ||photobucket.com^*/api.php?*&method=track& (easyprivacy.txt: 8600) +.photobucket.com/.*/api\.php\?.*&method=track& +# ||photobucket.com/track/ (easyprivacy.txt: 8599) +.photobucket.com/track/ +# ||photobucket.com/ss/open.php? (easyprivacy.txt: 8598) +.photobucket.com/ss/open\.php\? +# ||phonedog.com/geo.php (easyprivacy.txt: 8597) +.phonedog.com/geo\.php +# ||petri.co.il/akit/? (easyprivacy.txt: 8596) +.petri.co.il/akit/\? +# ||petplanet.co.uk^*/js/ga.js (easyprivacy.txt: 8595) +.petplanet.co.uk/.*/js/ga\.js +# ||petersons.com^*/trackFunctionsBeta.asp (easyprivacy.txt: 8594) +.petersons.com/.*/trackFunctionsBeta\.asp +# ||petersons.com^*/trackBeta.asp (easyprivacy.txt: 8593) +.petersons.com/.*/trackBeta\.asp +# ||performances.bestofmedia.com^ (easyprivacy.txt: 8592) +.performances.bestofmedia.com +# ||perfectmarket.com/pm/track? (easyprivacy.txt: 8591) +.perfectmarket.com/pm/track\? +# ||perezhilton.com^*/stat/ (easyprivacy.txt: 8590) +.perezhilton.com/.*/stat/ +# ||perezhilton.com/services/geo/ (easyprivacy.txt: 8589) +.perezhilton.com/services/geo/ +# ||perezhilton.com/gtjs.php (easyprivacy.txt: 8588) +.perezhilton.com/gtjs\.php +# ||pepsi.com/js/pepsi_tracking.js (easyprivacy.txt: 8587) +.pepsi.com/js/pepsi_tracking\.js +# ||pearltrees.com/s/track? (easyprivacy.txt: 8586) +.pearltrees.com/s/track\? +# ||peacocks.co.uk^*/analytics.js (easyprivacy.txt: 8585) +.peacocks.co.uk/.*/analytics\.js +# ||pcp001.com/media/globalPixel.js (easyprivacy.txt: 8584) +.pcp001.com/media/globalPixel\.js +# ||pcmag.com/rview/$image (easyprivacy.txt: 8583) +.pcmag.com/rview/ +# ||pclick.yahoo.com^ (easyprivacy.txt: 8582) +.pclick.yahoo.com +# ||pclick.internal.yahoo.com^ (easyprivacy.txt: 8581) +.pclick.internal.yahoo.com +# ||pclick.europe.yahoo.com^ (easyprivacy.txt: 8580) +.pclick.europe.yahoo.com +# ||pckeeper.com^*/pixels/ (easyprivacy.txt: 8579) +.pckeeper.com/.*/pixels/ +# ||pch.com^*/SpectrumAnalytics.js? (easyprivacy.txt: 8578) +.pch.com/.*/SpectrumAnalytics\.js\? +# ||pch.com^*/scripts/Analytics/ (easyprivacy.txt: 8577) +.pch.com/.*/scripts/Analytics/ +# ||paypal.com/webapps/beaconweb/ (easyprivacy.txt: 8575) +.paypal.com/webapps/beaconweb/ +# ||partners.mysavings.com^ (easyprivacy.txt: 8574) +.partners.mysavings.com +# ||partners.badongo.com^ (easyprivacy.txt: 8573) +.partners.badongo.com +# ||paper.li/javascripts/analytics.js (easyprivacy.txt: 8572) +.paper.li/javascripts/analytics\.js +# ||papajohns.com/index_files/activityi_data/ct-*.js (easyprivacy.txt: 8571) +.papajohns.com/index_files/activityi_data/ct-.*\.js +# ||papajohns.com/index_files/activityi.html (easyprivacy.txt: 8570) +.papajohns.com/index_files/activityi\.html +# ||pajamasmedia.com/stats/ (easyprivacy.txt: 8569) +.pajamasmedia.com/stats/ +# ||pages03.net/WTS/event.jpeg? (easyprivacy.txt: 8568) +.pages03.net/WTS/event\.jpeg\? +# ||p.ctpost.com/article?i= (easyprivacy.txt: 8567) +.p.ctpost.com/article\?i= +# ||overstock.com/uniquecount (easyprivacy.txt: 8566) +.overstock.com/uniquecount +# ||overstock.com/dlp?cci=$image (easyprivacy.txt: 8565) +.overstock.com/dlp\?cci= +# ||overclock.net/p/$image (easyprivacy.txt: 8564) +.overclock.net/p/ +# ||ostkcdn.com/js/p13n.js (easyprivacy.txt: 8563) +.ostkcdn.com/js/p13n\.js +# ||oscars.org/scripts/wt_include2.js (easyprivacy.txt: 8562) +.oscars.org/scripts/wt_include2\.js +# ||oscars.org/scripts/wt_include1.js (easyprivacy.txt: 8561) +.oscars.org/scripts/wt_include1\.js +# ||osalt.com/js/track.js (easyprivacy.txt: 8560) +.osalt.com/js/track\.js +# ||origin.chron.com^ (easyprivacy.txt: 8559) +.origin.chron.com +# ||origin-tracking.trulia.com^ (easyprivacy.txt: 8558) +.origin-tracking.trulia.com +# ||orange.co.uk/jsincludes/webtrends*.js (easyprivacy.txt: 8557) +.orange.co.uk/jsincludes/webtrends.*\.js +# ||orain.org/w/index.php/Special:RecordImpression? (easyprivacy.txt: 8556) +.orain.org/w/index\.php/Special:RecordImpression\? +# ||optionsxpress.com^*/tracking.js (easyprivacy.txt: 8555) +.optionsxpress.com/.*/tracking\.js +# ||optimum.net^*=pageview& (easyprivacy.txt: 8554) +.optimum.net/.*=pageview& +# ||optimizely.com/js/geo.js (easyprivacy.txt: 8553) +.optimizely.com/js/geo\.js +# ||optimize-stats.voxmedia.com^ (easyprivacy.txt: 8552) +.optimize-stats.voxmedia.com +# ||ophan.guardian.co.uk^ (easyprivacy.txt: 8551) +.ophan.guardian.co.uk +# ||opera.com/js/sfga.js (easyprivacy.txt: 8550) +.opera.com/js/sfga\.js +# ||openuniversity.co.uk/marketing/ (easyprivacy.txt: 8549) +.openuniversity.co.uk/marketing/ +# ||open.mkt1397.com^ (easyprivacy.txt: 8548) +.open.mkt1397.com +# ||oodle.com/js/suntracking.js (easyprivacy.txt: 8547) +.oodle.com/js/suntracking\.js +# ||oodle.co.uk/event/track-first-view/ (easyprivacy.txt: 8546) +.oodle.co.uk/event/track-first-view/ +# ||onetravel.com/TrackOnetravelAds.js (easyprivacy.txt: 8545) +.onetravel.com/TrackOnetravelAds\.js +# ||omniture.theglobeandmail.com^ (easyprivacy.txt: 8544) +.omniture.theglobeandmail.com +# ||omniture.stuff.co.nz^ (easyprivacy.txt: 8543) +.omniture.stuff.co.nz +# ||om.cbsi.com^ (easyprivacy.txt: 8542) +.om.cbsi.com +# ||olark.com/track/ (easyprivacy.txt: 8541) +.olark.com/track/ +# ||olark.com/nrpc/c?c=create$script (easyprivacy.txt: 8540) +.olark.com/nrpc/c\?c=create +# ||okcupid.com/poststat? (easyprivacy.txt: 8539) +.okcupid.com/poststat\? +# ||ok.co.uk/tracking/ (easyprivacy.txt: 8538) +.ok.co.uk/tracking/ +# ||oimg.mobile.cnbc.com^ (easyprivacy.txt: 8537) +.oimg.mobile.cnbc.com +# ||oimg.m.cnbc.com^ (easyprivacy.txt: 8536) +.oimg.m.cnbc.com +# ||officelivecontent.com^*/Survey/ (easyprivacy.txt: 8535) +.officelivecontent.com/.*/Survey/ +# ||officedepot.com/at/rules_*.js$script (easyprivacy.txt: 8534) +.officedepot.com/at/rules_.*\.js +# ||offers.keynote.com/wt/ (easyprivacy.txt: 8533) +.offers.keynote.com/wt/ +# ||ocregister.com/za? (easyprivacy.txt: 8532) +.ocregister.com/za\? +# ||oasisactive.com/pixels.cfm (easyprivacy.txt: 8531) +.oasisactive.com/pixels\.cfm +# ||nzs.com/sliscripts_ (easyprivacy.txt: 8530) +.nzs.com/sliscripts_ +# ||nzpages.co.nz^*/track.js (easyprivacy.txt: 8529) +.nzpages.co.nz/.*/track\.js +# ||nzonscreen.com/track_video_item (easyprivacy.txt: 8528) +.nzonscreen.com/track_video_item +# ||nzbsrus.com/tracker/ (easyprivacy.txt: 8527) +.nzbsrus.com/tracker/ +# ||nytimes.com/js/mtr.js (easyprivacy.txt: 8526) +.nytimes.com/js/mtr\.js +# ||nytimes.com/?url*&referrer$script (easyprivacy.txt: 8525) +.nytimes.com/\?url.*&referrer +# ||nyt.com/js/mtr.js (easyprivacy.txt: 8524) +.nyt.com/js/mtr\.js +# ||nysun.com/tracker.js (easyprivacy.txt: 8523) +.nysun.com/tracker\.js +# ||nyse.com^*/stats/ (easyprivacy.txt: 8522) +.nyse.com/.*/stats/ +# ||nymag.com^*/analytics.js (easyprivacy.txt: 8521) +.nymag.com/.*/analytics\.js +# ||nymag.com/js/2/metrony (easyprivacy.txt: 8520) +.nymag.com/js/2/metrony +# ||nydailynews.com^*/tracker.js (easyprivacy.txt: 8519) +.nydailynews.com/.*/tracker\.js +# ||nydailynews.com/tracker.js (easyprivacy.txt: 8518) +.nydailynews.com/tracker\.js +# ||novinite.com/tz.php (easyprivacy.txt: 8517) +.novinite.com/tz\.php +# ||novell.com^*/metrics.js (easyprivacy.txt: 8516) +.novell.com/.*/metrics\.js +# ||novatech.co.uk^*/tracking? (easyprivacy.txt: 8515) +.novatech.co.uk/.*/tracking\? +# ||nova.pub/track.php? (easyprivacy.txt: 8514) +.nova.pub/track\.php\? +# ||nola.com/dhtml/stats/ (easyprivacy.txt: 8513) +.nola.com/dhtml/stats/ +# ||nola.com/content/*/tracklinks.js (easyprivacy.txt: 8512) +.nola.com/content/.*/tracklinks\.js +# ||nola.com/cgi-bin/stats/ (easyprivacy.txt: 8511) +.nola.com/cgi-bin/stats/ +# ||noip.com/images/em.php?$image (easyprivacy.txt: 8510) +.noip.com/images/em\.php\? +# ||nmtracking.netflix.com^ (easyprivacy.txt: 8509) +.nmtracking.netflix.com +# ||nm.newegg.com^ (easyprivacy.txt: 8508) +.nm.newegg.com +# ||nj.com/dhtml/stats/ (easyprivacy.txt: 8507) +.nj.com/dhtml/stats/ +# ||nj.com/cgi-bin/stats/ (easyprivacy.txt: 8506) +.nj.com/cgi-bin/stats/ +# ||ning.com^*/ga/ga.js (easyprivacy.txt: 8505) +.ning.com/.*/ga/ga\.js +# ||ninemsn.com.au^*.tracking.udc. (easyprivacy.txt: 8504) +.ninemsn.com.au/.*\.tracking\.udc\. +# ||nike.com/cms/analytics-store-desktop.js (easyprivacy.txt: 8503) +.nike.com/cms/analytics-store-desktop\.js +# ||nih.gov/share/scripts/survey.js (easyprivacy.txt: 8502) +.nih.gov/share/scripts/survey\.js +# ||nih.gov/medlineplus/images/mplus_en_survey.js (easyprivacy.txt: 8501) +.nih.gov/medlineplus/images/mplus_en_survey\.js +# ||nickjr.co.uk/global/js/tracking.js (easyprivacy.txt: 8500) +.nickjr.co.uk/global/js/tracking\.js +# ||nick.com/common/images/spacer.gif? (easyprivacy.txt: 8499) +.nick.com/common/images/spacer\.gif\? +# ||nick.co.uk/global/js/tracking.js (easyprivacy.txt: 8498) +.nick.co.uk/global/js/tracking\.js +# ||nhk.jp^*/bc.gif? (easyprivacy.txt: 8497) +.nhk.jp/.*/bc\.gif\? +# ||nfl.com/imp? (easyprivacy.txt: 8496) +.nfl.com/imp\? +# ||next.co.uk/log.php (easyprivacy.txt: 8495) +.next.co.uk/log\.php +# ||newswire.ca/rt.gif? (easyprivacy.txt: 8494) +.newswire.ca/rt\.gif\? +# ||newstatesman.com/js/NewStatesmanSDC.js (easyprivacy.txt: 8493) +.newstatesman.com/js/NewStatesmanSDC\.js +# ||newsletter.mybboard.net/open.php? (easyprivacy.txt: 8492) +.newsletter.mybboard.net/open\.php\? +# ||newsinc.com/players/report.xml?$image (easyprivacy.txt: 8491) +.newsinc.com/players/report\.xml\? +# ||newser.com/utility.aspx? (easyprivacy.txt: 8490) +.newser.com/utility\.aspx\? +# ||newscom.com/js/v2/ga.js (easyprivacy.txt: 8489) +.newscom.com/js/v2/ga\.js +# ||newsarama.com/common/track.php (easyprivacy.txt: 8488) +.newsarama.com/common/track\.php +# ||news9.com/beacon/ (easyprivacy.txt: 8487) +.news9.com/beacon/ +# ||news.com.au/tracking/ (easyprivacy.txt: 8486) +.news.com.au/tracking/ +# ||news.com.au/track/ (easyprivacy.txt: 8485) +.news.com.au/track/ +# ||news.cn/webdig.js (easyprivacy.txt: 8484) +.news.cn/webdig\.js +# ||news-leader.com^*/analytics.js (easyprivacy.txt: 8483) +.news-leader.com/.*/analytics\.js +# ||newegg.com/TrackingWeb/ (easyprivacy.txt: 8482) +.newegg.com/TrackingWeb/ +# ||newegg.com/common/thirdparty/$subdocument (easyprivacy.txt: 8481) +.newegg.com/common/thirdparty/ +# ||netzero.net/account/event.do?$image (easyprivacy.txt: 8480) +.netzero.net/account/event\.do\? +# ||netmag.co.uk/matchbox/traffic/ (easyprivacy.txt: 8479) +.netmag.co.uk/matchbox/traffic/ +# ||netlog.com/track (easyprivacy.txt: 8478) +.netlog.com/track +# ||netflix.com/RegisterActionImpression? (easyprivacy.txt: 8477) +.netflix.com/RegisterActionImpression\? +# ||netflix.com/LogCustomerEvent? (easyprivacy.txt: 8476) +.netflix.com/LogCustomerEvent\? +# ||netflix.com/ichnaea/log (easyprivacy.txt: 8475) +.netflix.com/ichnaea/log +# ||netflix.com/EpicCounter? (easyprivacy.txt: 8474) +.netflix.com/EpicCounter\? +# ||netflix.com/beacons?*&ssizeCat=*&vsizeCat= (easyprivacy.txt: 8473) +.netflix.com/beacons\?.*&ssizeCat=.*&vsizeCat= +# ||net-a-porter.com/intl/trackpage.nap? (easyprivacy.txt: 8472) +.net-a-porter.com/intl/trackpage\.nap\? +# ||ned.itv.com^ (easyprivacy.txt: 8471) +.ned.itv.com +# ||neatorama.com/story/view/*.gif?hash (easyprivacy.txt: 8470) +.neatorama.com/story/view/.*\.gif\?hash +# ||ndtv.com/Status24x7.lv? (easyprivacy.txt: 8469) +.ndtv.com/Status24x7\.lv\? +# ||ncsoft.com/tracker.js (easyprivacy.txt: 8468) +.ncsoft.com/tracker\.js +# ||nbcudigitaladops.com/hosted/js/*_com_header.js (easyprivacy.txt: 8467) +.nbcudigitaladops.com/hosted/js/.*_com_header\.js +# ||nbcudigitaladops.com/hosted/js/*_com.js (easyprivacy.txt: 8466) +.nbcudigitaladops.com/hosted/js/.*_com\.js +# ||nbcnews.com^*/analytics.js (easyprivacy.txt: 8465) +.nbcnews.com/.*/analytics\.js +# ||nb.myspace.com^ (easyprivacy.txt: 8464) +.nb.myspace.com +# ||navlog.channel4.com^ (easyprivacy.txt: 8463) +.navlog.channel4.com +# ||naukrigulf.com^*/bms_display.php (easyprivacy.txt: 8462) +.naukrigulf.com/.*/bms_display\.php +# ||naukrigulf.com/logger/ (easyprivacy.txt: 8461) +.naukrigulf.com/logger/ +# ||naukri.com/advertiser/ (easyprivacy.txt: 8460) +.naukri.com/advertiser/ +# ||naughtydog.com/beacon/ (easyprivacy.txt: 8459) +.naughtydog.com/beacon/ +# ||nature.com^*/marker-file.nocache? (easyprivacy.txt: 8458) +.nature.com/.*/marker-file\.nocache\? +# ||naturalnews.com/NNAnalytics/ (easyprivacy.txt: 8457) +.naturalnews.com/NNAnalytics/ +# ||nationmobi.com/*/analyse.php (easyprivacy.txt: 8456) +.nationmobi.com/.*/analyse\.php +# ||nationalpayday.com/MAPProc.aspx? (easyprivacy.txt: 8455) +.nationalpayday.com/MAPProc\.aspx\? +# ||nationalpayday.com/1pix.gif (easyprivacy.txt: 8454) +.nationalpayday.com/1pix\.gif +# ||nationalgeographic.com/stats/ax/ (easyprivacy.txt: 8453) +.nationalgeographic.com/stats/ax/ +# ||naptol.com/usr/local/csp/staticContent/js/ga.js (easyprivacy.txt: 8452) +.naptol.com/usr/local/csp/staticContent/js/ga\.js +# ||naplesnews.com/metrics/ (easyprivacy.txt: 8451) +.naplesnews.com/metrics/ +# ||nabble.com/static/analytics.js (easyprivacy.txt: 8450) +.nabble.com/static/analytics\.js +# ||mywebsearch.com^*/mws_bw.gif? (easyprivacy.txt: 8449) +.mywebsearch.com/.*/mws_bw\.gif\? +# ||mywebsearch.com/anx.gif? (easyprivacy.txt: 8448) +.mywebsearch.com/anx\.gif\? +# ||mytravel.co.uk/thomascooktrack.gif? (easyprivacy.txt: 8447) +.mytravel.co.uk/thomascooktrack\.gif\? +# ||myspace.com/isf.gif? (easyprivacy.txt: 8446) +.myspace.com/isf\.gif\? +# ||myspace.com/beacon/ (easyprivacy.txt: 8445) +.myspace.com/beacon/ +# ||mypoints.com/js/*ga.js? (easyprivacy.txt: 8444) +.mypoints.com/js/.*ga\.js\? +# ||mypaydayloan.com/setc.asp? (easyprivacy.txt: 8443) +.mypaydayloan.com/setc\.asp\? +# ||myfitnesspal.com/assets/mfp_localytics.js (easyprivacy.txt: 8442) +.myfitnesspal.com/assets/mfp_localytics\.js +# ||musicstack.com/livezilla/server.php?request=track (easyprivacy.txt: 8441) +.musicstack.com/livezilla/server\.php\?request=track +# ||multiupload.com/extreme/?*&ref=$subdocument (easyprivacy.txt: 8440) +.multiupload.com/extreme/\?.*&ref= +# ||multiply.com/common/dot_clear.gif (easyprivacy.txt: 8439) +.multiply.com/common/dot_clear\.gif +# ||mtoza.vzaar.com^ (easyprivacy.txt: 8438) +.mtoza.vzaar.com +# ||mto.mediatakeout.com/viewer? (easyprivacy.txt: 8437) +.mto.mediatakeout.com/viewer\? +# ||msxml.excite.com/*.gif? (easyprivacy.txt: 8436) +.msxml.excite.com/.*\.gif\? +# ||msnbc.msn.com^*/analytics.js (easyprivacy.txt: 8435) +.msnbc.msn.com/.*/analytics\.js +# ||msn.com^*/track.js (easyprivacy.txt: 8434) +.msn.com/.*/track\.js +# ||msn.com^*/report.js (easyprivacy.txt: 8433) +.msn.com/.*/report\.js +# ||msn.com/tracker/ (easyprivacy.txt: 8432) +.msn.com/tracker/ +# ||msn.com/script/tracking*.js (easyprivacy.txt: 8431) +.msn.com/script/tracking.*\.js +# ||msn.com/ro.aspx? (easyprivacy.txt: 8430) +.msn.com/ro\.aspx\? +# ||msn.co.nz/share/long_cache/js/tracking/ (easyprivacy.txt: 8429) +.msn.co.nz/share/long_cache/js/tracking/ +# ||msecnd.net^*/wt.js? (easyprivacy.txt: 8428) +.msecnd.net/.*/wt\.js\? +# ||mp3lyrics.org^*/cnt.php? (easyprivacy.txt: 8427) +.mp3lyrics.org/.*/cnt\.php\? +# ||mp3lyrics.org/trk/trk.php? (easyprivacy.txt: 8426) +.mp3lyrics.org/trk/trk\.php\? +# ||mp.twitch.tv^ (easyprivacy.txt: 8425) +.mp.twitch.tv +# ||mozilla.org/includes/min/*=js_stats (easyprivacy.txt: 8424) +.mozilla.org/includes/min/.*=js_stats +# ||mozilla.net^*/webtrends/ (easyprivacy.txt: 8423) +.mozilla.net/.*/webtrends/ +# ||mozilla.com/js/track.js (easyprivacy.txt: 8422) +.mozilla.com/js/track\.js +# ||movieclips.com/api/v1/player/test? (easyprivacy.txt: 8421) +.movieclips.com/api/v1/player/test\? +# ||mov-world.net/counter/ (easyprivacy.txt: 8420) +.mov-world.net/counter/ +# ||mortgage101.com/tracking/ (easyprivacy.txt: 8419) +.mortgage101.com/tracking/ +# ||monstercrawler.com/__kl.gif (easyprivacy.txt: 8418) +.monstercrawler.com/__kl\.gif +# ||monova.org/js/ga.js (easyprivacy.txt: 8417) +.monova.org/js/ga\.js +# ||monkeyquest.com/monkeyquest/static/js/ga.js (easyprivacy.txt: 8416) +.monkeyquest.com/monkeyquest/static/js/ga\.js +# ||monitor.co.ug/analytics/ (easyprivacy.txt: 8415) +.monitor.co.ug/analytics/ +# ||moneysupermarket.com^*/ProphetInsert.js (easyprivacy.txt: 8414) +.moneysupermarket.com/.*/ProphetInsert\.js +# ||momtastic.com/libraries/pebblebed/js/pb.track.js (easyprivacy.txt: 8413) +.momtastic.com/libraries/pebblebed/js/pb\.track\.js +# ||modernsalon.com/includes/sc_video_tracking.js (easyprivacy.txt: 8412) +.modernsalon.com/includes/sc_video_tracking\.js +# ||mod.uk/js/tracker.js (easyprivacy.txt: 8411) +.mod.uk/js/tracker\.js +# ||ml.com/js/ml_dcs_tag_ (easyprivacy.txt: 8410) +.ml.com/js/ml_dcs_tag_ +# ||mitpress.mit.edu/wusage_screen_properties.gif (easyprivacy.txt: 8409) +.mitpress.mit.edu/wusage_screen_properties\.gif +# ||mirror.co.uk^*/stats/ (easyprivacy.txt: 8408) +.mirror.co.uk/.*/stats/ +# ||mint.boingboing.net^ (easyprivacy.txt: 8407) +.mint.boingboing.net +# ||miniusa.com^*/trackDeeplink.gif? (easyprivacy.txt: 8406) +.miniusa.com/.*/trackDeeplink\.gif\? +# ||miniurls.co/track/ (easyprivacy.txt: 8405) +.miniurls.co/track/ +# ||miningweekly.com/count.php? (easyprivacy.txt: 8404) +.miningweekly.com/count\.php\? +# ||miniclip.com^*/swhsproxy.swf? (easyprivacy.txt: 8403) +.miniclip.com/.*/swhsproxy\.swf\? +# ||military.com^*/statistic? (easyprivacy.txt: 8402) +.military.com/.*/statistic\? +# ||military.com/Scripts/mnfooter.js (easyprivacy.txt: 8401) +.military.com/Scripts/mnfooter\.js +# ||military.com/cgi-bin/redlog2.cgi? (easyprivacy.txt: 8400) +.military.com/cgi-bin/redlog2\.cgi\? +# ||microsoft.com^*/surveytrigger.js (easyprivacy.txt: 8399) +.microsoft.com/.*/surveytrigger\.js +# ||microsoft.com^*/bimapping.js (easyprivacy.txt: 8398) +.microsoft.com/.*/bimapping\.js +# ||microsoft.com/LTS/default.aspx (easyprivacy.txt: 8397) +.microsoft.com/LTS/default\.aspx +# ||microsoft.com/library/svy/ (easyprivacy.txt: 8396) +.microsoft.com/library/svy/ +# ||microsoft.com/getsilverlight/scripts/Tracker.js (easyprivacy.txt: 8395) +.microsoft.com/getsilverlight/scripts/Tracker\.js +# ||microsoft.com/getsilverlight/scripts/silverlight/SilverlightAtlas-MSCOM-Tracking.js (easyprivacy.txt: 8394) +.microsoft.com/getsilverlight/scripts/silverlight/SilverlightAtlas-MSCOM-Tracking\.js +# ||microsoft.com/blankpixel.gif (easyprivacy.txt: 8393) +.microsoft.com/blankpixel\.gif +# ||mf2fm.com/php/stats.php? (easyprivacy.txt: 8392) +.mf2fm.com/php/stats\.php\? +# ||metroweekly.com/tools/blog_add_visitor/ (easyprivacy.txt: 8391) +.metroweekly.com/tools/blog_add_visitor/ +# ||metro.us/api/trackPage/ (easyprivacy.txt: 8390) +.metro.us/api/trackPage/ +# ||metrics.washingtonpost.com^ (easyprivacy.txt: 8389) +.metrics.washingtonpost.com +# ||metrics.ted.com^ (easyprivacy.txt: 8388) +.metrics.ted.com +# ||metrics.tbliab.net^ (easyprivacy.txt: 8387) +.metrics.tbliab.net +# ||metrics.extremetech.com^ (easyprivacy.txt: 8386) +.metrics.extremetech.com +# ||metrics.ee.co.uk^ (easyprivacy.txt: 8385) +.metrics.ee.co.uk +# ||metrics.dailymotion.com^ (easyprivacy.txt: 8384) +.metrics.dailymotion.com +# ||metrics.cnn.com^ (easyprivacy.txt: 8383) +.metrics.cnn.com +# ||metrics.aws.sitepoint.com^ (easyprivacy.txt: 8382) +.metrics.aws.sitepoint.com +# ||metrics.apartments.com^ (easyprivacy.txt: 8381) +.metrics.apartments.com +# ||metric.inetcore.com^ (easyprivacy.txt: 8380) +.metric.inetcore.com +# ||metric.gstatic.com^ (easyprivacy.txt: 8379) +.metric.gstatic.com +# ||metric*.rediff.com^ (easyprivacy.txt: 8378) +.metric*./.*\.rediff\.com[^\w%.-] +.metric*.rediff.com +# ||meter-svc.nytimes.com^ (easyprivacy.txt: 8377) +.meter-svc.nytimes.com +# ||metacrawler.com/__kl.gif (easyprivacy.txt: 8376) +.metacrawler.com/__kl\.gif +# ||metacafe.com^*/statsrecorder.php? (easyprivacy.txt: 8375) +.metacafe.com/.*/statsrecorder\.php\? +# ||metacafe.com/services/fplayer/report.php? (easyprivacy.txt: 8374) +.metacafe.com/services/fplayer/report\.php\? +# ||met-art.com/visit.js (easyprivacy.txt: 8373) +.met-art.com/visit\.js +# ||merck.com/js/mercktracker.js (easyprivacy.txt: 8372) +.merck.com/js/mercktracker\.js +# ||merchantcircle.com/static/track.js (easyprivacy.txt: 8371) +.merchantcircle.com/static/track\.js +# ||mercent.com/js/tracker.js (easyprivacy.txt: 8370) +.mercent.com/js/tracker\.js +# ||medscape.com/pi/1x1/pv/profreg-1x1.gif (easyprivacy.txt: 8369) +.medscape.com/pi/1x1/pv/profreg-1x1\.gif +# ||mediaplex.com^*/universal.html (easyprivacy.txt: 8368) +.mediaplex.com/.*/universal\.html +# ||mediabistro.com/blogshare/js/trackingheader.js (easyprivacy.txt: 8367) +.mediabistro.com/blogshare/js/trackingheader\.js +# ||media-imdb.com^*/adblock.swf (easyprivacy.txt: 8366) +.media-imdb.com/.*/adblock\.swf +# ||media-imdb.com/images/*/imdbads/js/beacon-$script (easyprivacy.txt: 8365) +.media-imdb.com/images/.*/imdbads/js/beacon- +# ||mdmpix.com/js/connector.php? (easyprivacy.txt: 8364) +.mdmpix.com/js/connector\.php\? +# ||mayoclinic.org/js/tracker.js (easyprivacy.txt: 8363) +.mayoclinic.org/js/tracker\.js +# ||mayoclinic.org/js/gconversion.js (easyprivacy.txt: 8362) +.mayoclinic.org/js/gconversion\.js +# ||mate1.com^*/reg.logging.js (easyprivacy.txt: 8361) +.mate1.com/.*/reg\.logging\.js +# ||mate1.com^*/iframe/pixel/ (easyprivacy.txt: 8360) +.mate1.com/.*/iframe/pixel/ +# ||mastercard.com^*/Analytics/ (easyprivacy.txt: 8359) +.mastercard.com/.*/Analytics/ +# ||mastercard.com/dynamictag.swf (easyprivacy.txt: 8358) +.mastercard.com/dynamictag\.swf +# ||mashable.com/pv.xml (easyprivacy.txt: 8357) +.mashable.com/pv\.xml +# ||marriott.com^*/mi_customer_survey.js (easyprivacy.txt: 8356) +.marriott.com/.*/mi_customer_survey\.js +# ||marketwire.com/accesstracking/ (easyprivacy.txt: 8355) +.marketwire.com/accesstracking/ +# ||marketing.nodesource.com^ (easyprivacy.txt: 8354) +.marketing.nodesource.com +# ||marketing.kalahari.net^ (easyprivacy.txt: 8353) +.marketing.kalahari.net +# ||maps.nokia.com^*/tracking.c.js (easyprivacy.txt: 8352) +.maps.nokia.com/.*/tracking\.c\.js +# ||manta.com/sbb? (easyprivacy.txt: 8351) +.manta.com/sbb\? +# ||mansion.com/collect.js? (easyprivacy.txt: 8350) +.mansion.com/collect\.js\? +# ||malibubright.com/krtrk/ (easyprivacy.txt: 8349) +.malibubright.com/krtrk/ +# ||mailings.gmx.net/action/view/$image (easyprivacy.txt: 8348) +.mailings.gmx.net/action/view/ +# ||mailer.atlassian.com/open.aspx? (easyprivacy.txt: 8347) +.mailer.atlassian.com/open\.aspx\? +# ||mail.yahoo.com/dc/rs?log= (easyprivacy.txt: 8346) +.mail.yahoo.com/dc/rs\?log= +# ||mail.advantagebusinessmedia.com/open.aspx (easyprivacy.txt: 8345) +.mail.advantagebusinessmedia.com/open\.aspx +# ||madthumbs.com/tlog.php (easyprivacy.txt: 8344) +.madthumbs.com/tlog\.php +# ||ly.lygo.com^*/jquery.lycostrack.js (easyprivacy.txt: 8343) +.ly.lygo.com/.*/jquery\.lycostrack\.js +# ||luxurylink.com/t/hpr.php? (easyprivacy.txt: 8342) +.luxurylink.com/t/hpr\.php\? +# ||lucidchart.com/analytics_ (easyprivacy.txt: 8341) +.lucidchart.com/analytics_ +# ||lslmetrics.djlmgdigital.com^ (easyprivacy.txt: 8340) +.lslmetrics.djlmgdigital.com +# ||lsam.research.microsoft.com^ (easyprivacy.txt: 8339) +.lsam.research.microsoft.com +# ||lovefilm.com^*/lf-perf-beacon.png (easyprivacy.txt: 8338) +.lovefilm.com/.*/lf-perf-beacon\.png +# ||lovefilm.com/lovefilm/images/dot.gif (easyprivacy.txt: 8337) +.lovefilm.com/lovefilm/images/dot\.gif +# ||lovefilm.com/api/ioko/log/ (easyprivacy.txt: 8336) +.lovefilm.com/api/ioko/log/ +# ||lolbin.net/stats.php (easyprivacy.txt: 8335) +.lolbin.net/stats\.php +# ||logs.dashlane.com^ (easyprivacy.txt: 8334) +.logs.dashlane.com +# ||logmein.com/scripts/Tracking/ (easyprivacy.txt: 8333) +.logmein.com/scripts/Tracking/ +# ||loglady.publicbroadcasting.net^ (easyprivacy.txt: 8332) +.loglady.publicbroadcasting.net +# ||loggingservices.tribune.com^ (easyprivacy.txt: 8331) +.loggingservices.tribune.com +# ||logger.dailymotion.com^ (easyprivacy.txt: 8330) +.logger.dailymotion.com +# ||logger-*.dailymotion.com^ (easyprivacy.txt: 8329) +.logger-*./.*\.dailymotion\.com[^\w%.-] +.logger-*.dailymotion.com +# ||log.vdn.apps.cntv.cn^ (easyprivacy.txt: 8328) +.log.vdn.apps.cntv.cn +# ||log.player.cntv.cn/stat.html? (easyprivacy.txt: 8327) +.log.player.cntv.cn/stat\.html\? +# ||log.optimizely.com^ (easyprivacy.txt: 8326) +.log.optimizely.com +# ||log.newsvine.com^ (easyprivacy.txt: 8325) +.log.newsvine.com +# ||log.go.com^ (easyprivacy.txt: 8324) +.log.go.com +# ||log.deutschegrammophon.com^ (easyprivacy.txt: 8323) +.log.deutschegrammophon.com +# ||log.data.disney.com^ (easyprivacy.txt: 8322) +.log.data.disney.com +# ||loc.gov/js/ga.js (easyprivacy.txt: 8321) +.loc.gov/js/ga\.js +# ||lm.pcworld.com/db/*/1.gif (easyprivacy.txt: 8320) +.lm.pcworld.com/db/.*/1\.gif +# ||livesupport.zol.co.zw/image_tracker.php? (easyprivacy.txt: 8319) +.livesupport.zol.co.zw/image_tracker\.php\? +# ||livestream.com^*/analytics/ (easyprivacy.txt: 8318) +.livestream.com/.*/analytics/ +# ||livestation.com^*/statistics.swf (easyprivacy.txt: 8317) +.livestation.com/.*/statistics\.swf +# ||livestation.com^*/akamaimediaanalytics.swf (easyprivacy.txt: 8316) +.livestation.com/.*/akamaimediaanalytics\.swf +# ||liveperson.net/hc/*/?visitor= (easyprivacy.txt: 8315) +.liveperson.net/hc/.*/\?visitor= +# ||livejournal.com/ljcounter/? (easyprivacy.txt: 8314) +.livejournal.com/ljcounter/\? +# ||livedoor.com/counter/ (easyprivacy.txt: 8313) +.livedoor.com/counter/ +# ||live.philips.com^ (easyprivacy.txt: 8312) +.live.philips.com +# ||live.com/handlers/watson.mvc? (easyprivacy.txt: 8311) +.live.com/handlers/watson\.mvc\? +# ||live-audience.dailymotion.com^ (easyprivacy.txt: 8310) +.live-audience.dailymotion.com +# ||list.ru/counter? (easyprivacy.txt: 8309) +.list.ru/counter\? +# ||lipsy.co.uk/_assets/images/skin/tracking/ (easyprivacy.txt: 8308) +.lipsy.co.uk/_assets/images/skin/tracking/ +# ||linuxtoday.com/hqxapi/ (easyprivacy.txt: 8307) +.linuxtoday.com/hqxapi/ +# ||linkpuls.idg.no^ (easyprivacy.txt: 8306) +.linkpuls.idg.no +# ||linkedin.com^*/tracker.gif? (easyprivacy.txt: 8305) +.linkedin.com/.*/tracker\.gif\? +# ||linkedin.com/mob/tracking (easyprivacy.txt: 8304) +.linkedin.com/mob/tracking +# ||linkedin.com/analytics/ (easyprivacy.txt: 8303) +.linkedin.com/analytics/ +# ||linkbucks.com/track/ (easyprivacy.txt: 8302) +.linkbucks.com/track/ +# ||linkbucks.com/clean.aspx?task=record$image (easyprivacy.txt: 8301) +.linkbucks.com/clean\.aspx\?task=record +# ||link.ex.fm/img/*.gif (easyprivacy.txt: 8300) +.link.ex.fm/img/.*\.gif +# ||link.codeyear.com/img/ (easyprivacy.txt: 8299) +.link.codeyear.com/img/ +# ||linguee.com*/white_pixel.gif? (easyprivacy.txt: 8298) +.linguee.com*./(.*/)?white_pixel\.gif\? +# ||lilb2.shutterstock.com^ (easyprivacy.txt: 8297) +.lilb2.shutterstock.com +# ||likes.com/api/track_pv (easyprivacy.txt: 8296) +.likes.com/api/track_pv +# ||lifehacker.com^*/trackers.html (easyprivacy.txt: 8295) +.lifehacker.com/.*/trackers\.html +# ||lifehacker.com/at.js.php (easyprivacy.txt: 8294) +.lifehacker.com/at\.js\.php +# ||life.com/sm-stat/ (easyprivacy.txt: 8293) +.life.com/sm-stat/ +# ||lh.secure.yahoo.com^ (easyprivacy.txt: 8292) +.lh.secure.yahoo.com +# ||lexus.com/lexus-share/js/campaign_tracking.js (easyprivacy.txt: 8291) +.lexus.com/lexus-share/js/campaign_tracking\.js +# ||letitbit.net/counter/ (easyprivacy.txt: 8290) +.letitbit.net/counter/ +# ||letitbit.net/atercattus/letitbit/counter/? (easyprivacy.txt: 8289) +.letitbit.net/atercattus/letitbit/counter/\? +# ||lendingtree.com/javascript/tracking.js (easyprivacy.txt: 8288) +.lendingtree.com/javascript/tracking\.js +# ||lendingtree.com/forms/eventtracking? (easyprivacy.txt: 8287) +.lendingtree.com/forms/eventtracking\? +# ||legalmatch.com/scripts/lmtracker.js (easyprivacy.txt: 8286) +.legalmatch.com/scripts/lmtracker\.js +# ||latimes.com/images/pixel.gif (easyprivacy.txt: 8285) +.latimes.com/images/pixel\.gif +# ||landrover.com/system/logging/ (easyprivacy.txt: 8284) +.landrover.com/system/logging/ +# ||lancasteronline.com/javascript/ga.php (easyprivacy.txt: 8283) +.lancasteronline.com/javascript/ga\.php +# ||l.5min.com^ (easyprivacy.txt: 8282) +.l.5min.com +# ||kyte.tv/flash/MarbachMetricsProvider.swf (easyprivacy.txt: 8281) +.kyte.tv/flash/MarbachMetricsProvider\.swf +# ||kyte.tv/flash/MarbachMetricsOmniture.swf (easyprivacy.txt: 8280) +.kyte.tv/flash/MarbachMetricsOmniture\.swf +# ||kotaku.com^*/trackers.html (easyprivacy.txt: 8279) +.kotaku.com/.*/trackers\.html +# ||kotaku.com/at.js.php (easyprivacy.txt: 8278) +.kotaku.com/at\.js\.php +# ||kosmix.com^*.txt?pvid= (easyprivacy.txt: 8277) +.kosmix.com/.*\.txt\?pvid= +# ||kodakgallery.com^*/analytics_ (easyprivacy.txt: 8276) +.kodakgallery.com/.*/analytics_ +# ||knoxnews.com/metrics/ (easyprivacy.txt: 8275) +.knoxnews.com/metrics/ +# ||klout.com/ka.js (easyprivacy.txt: 8274) +.klout.com/ka\.js +# ||kloth.net/images/pixel.gif (easyprivacy.txt: 8273) +.kloth.net/images/pixel\.gif +# ||klm.com/travel/generic/static/js/measure_async.js (easyprivacy.txt: 8272) +.klm.com/travel/generic/static/js/measure_async\.js +# ||kksou.com^*/record.php? (easyprivacy.txt: 8271) +.kksou.com/.*/record\.php\? +# ||kitsapsun.com/metrics/ (easyprivacy.txt: 8270) +.kitsapsun.com/metrics/ +# ||king.com/boxes/trackingCode.jsp (easyprivacy.txt: 8269) +.king.com/boxes/trackingCode\.jsp +# ||kinesisproxy.hearstlabs.com^ (easyprivacy.txt: 8268) +.kinesisproxy.hearstlabs.com +# ||killerstartups.com^*/adsensev (easyprivacy.txt: 8267) +.killerstartups.com/.*/adsensev +# ||kelkoo.com/kk_track? (easyprivacy.txt: 8266) +.kelkoo.com/kk_track\? +# ||kelkoo.co.uk^*/tracker/ (easyprivacy.txt: 8265) +.kelkoo.co.uk/.*/tracker/ +# ||kelkoo.co.uk/kk_track? (easyprivacy.txt: 8264) +.kelkoo.co.uk/kk_track\? +# ||kayak.com/k/redirect/tracking? (easyprivacy.txt: 8263) +.kayak.com/k/redirect/tracking\? +# ||kalahari.net/includes/swatag.js (easyprivacy.txt: 8262) +.kalahari.net/includes/swatag\.js +# ||justanswer.com/ja_services/processes/log.asmx/ (easyprivacy.txt: 8261) +.justanswer.com/ja_services/processes/log\.asmx/ +# ||justanswer.com/browsercheck/ (easyprivacy.txt: 8260) +.justanswer.com/browsercheck/ +# ||juno.com/start/javascript.do?message=$image (easyprivacy.txt: 8259) +.juno.com/start/javascript\.do\?message= +# ||jtv.com^*/__analytics-tracking? (easyprivacy.txt: 8258) +.jtv.com/.*/__analytics-tracking\? +# ||jpmorgan.co.uk/tagging/ (easyprivacy.txt: 8257) +.jpmorgan.co.uk/tagging/ +# ||jokeroo.com/i/.gif (easyprivacy.txt: 8256) +.jokeroo.com/i/\.gif +# ||joins.com/hc.aspx? (easyprivacy.txt: 8255) +.joins.com/hc\.aspx\? +# ||johansens.com^*/LogPageView (easyprivacy.txt: 8254) +.johansens.com/.*/LogPageView +# ||jobthread.com/t/ (easyprivacy.txt: 8253) +.jobthread.com/t/ +# ||jobthread.com/js/t.js (easyprivacy.txt: 8252) +.jobthread.com/js/t\.js +# ||jobscentral.com.sg/cb_transfer.php (easyprivacy.txt: 8251) +.jobscentral.com.sg/cb_transfer\.php +# ||jezebel.com^*/trackers.html (easyprivacy.txt: 8250) +.jezebel.com/.*/trackers\.html +# ||jezebel.com/at.js.php (easyprivacy.txt: 8249) +.jezebel.com/at\.js\.php +# ||jeuxjeux2.com/stats.php (easyprivacy.txt: 8248) +.jeuxjeux2.com/stats\.php +# ||jetsetter.com/tracker.php (easyprivacy.txt: 8247) +.jetsetter.com/tracker\.php +# ||jessops.com/js/JessopsTracking. (easyprivacy.txt: 8246) +.jessops.com/js/JessopsTracking\. +# ||javhd.com/click/ (easyprivacy.txt: 8245) +.javhd.com/click/ +# ||jaludo.com/pm.php? (easyprivacy.txt: 8244) +.jaludo.com/pm\.php\? +# ||jalopnik.com^*/trackers.html (easyprivacy.txt: 8243) +.jalopnik.com/.*/trackers\.html +# ||jalopnik.com/at.js.php (easyprivacy.txt: 8242) +.jalopnik.com/at\.js\.php +# ||jal.co.jp/common_rn/js/rtam.js (easyprivacy.txt: 8241) +.jal.co.jp/common_rn/js/rtam\.js +# ||jakpost.net/jptracker/ (easyprivacy.txt: 8240) +.jakpost.net/jptracker/ +# ||jack.allday.com^ (easyprivacy.txt: 8239) +.jack.allday.com +# ||ixs1.net/s/ (easyprivacy.txt: 8238) +.ixs1.net/s/ +# ||ixquick.*/pelp? (easyprivacy.txt: 8237) +.ixquick.*./(.*/)?pelp\? +# ||ixquick.*/elp? (easyprivacy.txt: 8236) +.ixquick.*./(.*/)?elp\? +# ||ixquick.*/do/avt?$image (easyprivacy.txt: 8235) +.ixquick.*./(.*/)?do/avt\? +# ||itv.com/_app/cmn/js/bcm.js (easyprivacy.txt: 8234) +.itv.com/_app/cmn/js/bcm\.js +# ||itp.net/ga.js (easyprivacy.txt: 8233) +.itp.net/ga\.js +# ||issn.org/isens_marker.php? (easyprivacy.txt: 8232) +.issn.org/isens_marker\.php\? +# ||irs.gov/js/irs_reporting_cookie.js (easyprivacy.txt: 8231) +.irs.gov/js/irs_reporting_cookie\.js +# ||ipetitions.com/img.php? (easyprivacy.txt: 8230) +.ipetitions.com/img\.php\? +# ||ip-adress.com/gl?r= (easyprivacy.txt: 8229) +.ip-adress.com/gl\?r= +# ||io9.com^*/trackers.html (easyprivacy.txt: 8228) +.io9.com/.*/trackers\.html +# ||io9.com/at.js.php (easyprivacy.txt: 8227) +.io9.com/at\.js\.php +# ||investegate.co.uk/Weblogs/IGLog.aspx? (easyprivacy.txt: 8226) +.investegate.co.uk/Weblogs/IGLog\.aspx\? +# ||intent.cbsi.com^ (easyprivacy.txt: 8225) +.intent.cbsi.com +# ||intensedebate.com/empty.php (easyprivacy.txt: 8224) +.intensedebate.com/empty\.php +# ||intelli.ageuk.org.uk^ (easyprivacy.txt: 8223) +.intelli.ageuk.org.uk +# ||insynchq.com/wf/open? (easyprivacy.txt: 8222) +.insynchq.com/wf/open\? +# ||instyle.co.uk^*/tracking.js (easyprivacy.txt: 8221) +.instyle.co.uk/.*/tracking\.js +# ||instructables.com/counter (easyprivacy.txt: 8220) +.instructables.com/counter +# ||insire.com/imp? (easyprivacy.txt: 8219) +.insire.com/imp\? +# ||insidesoci.al/track (easyprivacy.txt: 8218) +.insidesoci.al/track +# ||insideline.com^*/edw1x1.gif (easyprivacy.txt: 8217) +.insideline.com/.*/edw1x1\.gif +# ||insideline.com^*/dart1x1.gif (easyprivacy.txt: 8216) +.insideline.com/.*/dart1x1\.gif +# ||inquiries.redhat.com^ (easyprivacy.txt: 8215) +.inquiries.redhat.com +# ||inq.com/tagserver/logging/log4js (easyprivacy.txt: 8214) +.inq.com/tagserver/logging/log4js +# ||ino.com/img/sites/mkt/click.gif (easyprivacy.txt: 8213) +.ino.com/img/sites/mkt/click\.gif +# ||inmagine.com/j/ga.js (easyprivacy.txt: 8212) +.inmagine.com/j/ga\.js +# ||ingest.onion.com^ (easyprivacy.txt: 8211) +.ingest.onion.com +# ||infusionextreme.com/tracker/ (easyprivacy.txt: 8210) +.infusionextreme.com/tracker/ +# ||infospace.com^*=pageview& (easyprivacy.txt: 8209) +.infospace.com/.*=pageview& +# ||informer.com/statistic? (easyprivacy.txt: 8208) +.informer.com/statistic\? +# ||infoq.com/scripts/tracker.js (easyprivacy.txt: 8207) +.infoq.com/scripts/tracker\.js +# ||infomine.com/imcounter.js (easyprivacy.txt: 8206) +.infomine.com/imcounter\.js +# ||infogr.am/js/metrics.js (easyprivacy.txt: 8205) +.infogr.am/js/metrics\.js +# ||influxer.onion.com^ (easyprivacy.txt: 8204) +.influxer.onion.com +# ||indiatimes.com/trackjs10. (easyprivacy.txt: 8203) +.indiatimes.com/trackjs10\. +# ||independentmail.com/metrics/ (easyprivacy.txt: 8202) +.independentmail.com/metrics/ +# ||indeed.com/rpc/preccount? (easyprivacy.txt: 8201) +.indeed.com/rpc/preccount\? +# ||imx.comedycentral.com^ (easyprivacy.txt: 8200) +.imx.comedycentral.com +# ||imonitor.dhgate.com^ (easyprivacy.txt: 8199) +.imonitor.dhgate.com +# ||immassets.s3.amazonaws.com^ (easyprivacy.txt: 8198) +.immassets.s3.amazonaws.com +# ||imgur.com/lumbar.gif? (easyprivacy.txt: 8197) +.imgur.com/lumbar\.gif\? +# ||imgur.com/imageview.gif? (easyprivacy.txt: 8196) +.imgur.com/imageview\.gif\? +# ||imgur.com/albumview.gif? (easyprivacy.txt: 8195) +.imgur.com/albumview\.gif\? +# ||imgtrack.domainmarket.com^ (easyprivacy.txt: 8194) +.imgtrack.domainmarket.com +# ||imdb.com/video/*metrics? (easyprivacy.txt: 8193) +.imdb.com/video/.*metrics\? +# ||imdb.com/video/*/metrics_ (easyprivacy.txt: 8192) +.imdb.com/video/.*/metrics_ +# ||imdb.com/twilight/? (easyprivacy.txt: 8191) +.imdb.com/twilight/\? +# ||imdb.com/rd/?q (easyprivacy.txt: 8190) +.imdb.com/rd/\?q +# ||imagetwist.com/?op= (easyprivacy.txt: 8189) +.imagetwist.com/\?op= +# ||images.military.com/pixel.gif (easyprivacy.txt: 8188) +.images.military.com/pixel\.gif +# ||images-amazon.com^*/clog/clog-platform*.js$script (easyprivacy.txt: 8187) +.images-amazon.com/.*/clog/clog-platform.*\.js +# ||images-amazon.com^*/ClientSideMetricsAUIJavascript*.js (easyprivacy.txt: 8186) +.images-amazon.com/.*/ClientSideMetricsAUIJavascript.*\.js +# ||image.providesupport.com/cmd/ (easyprivacy.txt: 8184) +.image.providesupport.com/cmd/ +# ||iheart.com/tracking/ (easyprivacy.txt: 8183) +.iheart.com/tracking/ +# ||ign.com/global/analytics/drones.js (easyprivacy.txt: 8182) +.ign.com/global/analytics/drones\.js +# ||iedc.fitbit.com^ (easyprivacy.txt: 8181) +.iedc.fitbit.com +# ||id.localsearch.ch^ (easyprivacy.txt: 8180) +.id.localsearch.ch +# ||id.google.*/verify/*.gif (easyprivacy.txt: 8179) +.id.google.*./(.*/)?verify/.*\.gif +# ||id.allegisgroup.com^ (easyprivacy.txt: 8178) +.id.allegisgroup.com +# ||icq.com/search/js/stats.js (easyprivacy.txt: 8177) +.icq.com/search/js/stats\.js +# ||ibtimes.com/player/stats.swf$object-subrequest (easyprivacy.txt: 8176) +.ibtimes.com/player/stats\.swf +# ||ibs.indiatimes.com^ (easyprivacy.txt: 8175) +.ibs.indiatimes.com +# ||ibm.com/gateway/? (easyprivacy.txt: 8174) +.ibm.com/gateway/\? +# ||ibm.com/common/stats/ (easyprivacy.txt: 8173) +.ibm.com/common/stats/ +# ||iberia.com^*/ga/ga.js (easyprivacy.txt: 8172) +.iberia.com/.*/ga/ga\.js +# ||ibeat.indiatimes.com^ (easyprivacy.txt: 8171) +.ibeat.indiatimes.com +# ||iafrica.com/php-bin/iac/readcnt.php? (easyprivacy.txt: 8170) +.iafrica.com/php-bin/iac/readcnt\.php\? +# ||i365.com^*/pv.aspx? (easyprivacy.txt: 8169) +.i365.com/.*/pv\.aspx\? +# ||i.walmartimages.com/i/icon/ (easyprivacy.txt: 8168) +.i.walmartimages.com/i/icon/ +# ||i-am-bored.com/cah.asp (easyprivacy.txt: 8167) +.i-am-bored.com/cah\.asp +# ||i-am-bored.com/cad.asp (easyprivacy.txt: 8166) +.i-am-bored.com/cad\.asp +# ||hwscdn.com^*/brands_analytics.js (easyprivacy.txt: 8165) +.hwscdn.com/.*/brands_analytics\.js +# ||hwscdn.com/analytics.js (easyprivacy.txt: 8164) +.hwscdn.com/analytics\.js +# ||humanclick.com/hc/*/?visitor= (easyprivacy.txt: 8163) +.humanclick.com/hc/.*/\?visitor= +# ||huluim.com^*/sitetracking/ (easyprivacy.txt: 8162) +.huluim.com/.*/sitetracking/ +# ||huluim.com/*&beaconevent$image,object-subrequest,~third-party (easyprivacy.txt: 8161) +.huluim.com/.*&beaconevent +# ||hulu.com^*/sitetracking/ (easyprivacy.txt: 8160) +.hulu.com/.*/sitetracking/ +# ||hulu.com^*/recommendationTracking/tracking? (easyprivacy.txt: 8159) +.hulu.com/.*/recommendationTracking/tracking\? +# ||hulu.com^*/potentialbugtracking/dropframes? (easyprivacy.txt: 8158) +.hulu.com/.*/potentialbugtracking/dropframes\? +# ||hulu.com^*/potentialbugtracking/contentplaybackresume? (easyprivacy.txt: 8157) +.hulu.com/.*/potentialbugtracking/contentplaybackresume\? +# ||hulu.com^*/potentialbugtracking/bigdropframes? (easyprivacy.txt: 8156) +.hulu.com/.*/potentialbugtracking/bigdropframes\? +# ||hulu.com^*/plustracking/ (easyprivacy.txt: 8155) +.hulu.com/.*/plustracking/ +# ||hulu.com^*/external_beacon.swf (easyprivacy.txt: 8154) +.hulu.com/.*/external_beacon\.swf +# ||hulu.com/watch/*track.url-1.com (easyprivacy.txt: 8153) +.hulu.com/watch/.*track\.url-1\.com +# ||hulu.com/guid.swf (easyprivacy.txt: 8152) +.hulu.com/guid\.swf +# ||hulu.com/google_conversion_video_view_tracking.html (easyprivacy.txt: 8151) +.hulu.com/google_conversion_video_view_tracking\.html +# ||hulu.com/beaconservice.swf (easyprivacy.txt: 8150) +.hulu.com/beaconservice\.swf +# ||hulu.com/beacon/v3/playback? (easyprivacy.txt: 8149) +.hulu.com/beacon/v3/playback\? +# ||hulu.com/beacon/v3/error? (easyprivacy.txt: 8148) +.hulu.com/beacon/v3/error\? +# ||hulu.com/*&beaconevent$image,object-subrequest,~third-party (easyprivacy.txt: 8147) +.hulu.com/.*&beaconevent +# ||hulkshare.com/stats.php (easyprivacy.txt: 8146) +.hulkshare.com/stats\.php +# ||hulkshare.com/ajax/tracker.php (easyprivacy.txt: 8145) +.hulkshare.com/ajax/tracker\.php +# ||hugedomains.com/metrics/ (easyprivacy.txt: 8144) +.hugedomains.com/metrics/ +# ||huffingtonpost.com/traffic/ (easyprivacy.txt: 8143) +.huffingtonpost.com/traffic/ +# ||huffingtonpost.com/include/geopromo.php (easyprivacy.txt: 8142) +.huffingtonpost.com/include/geopromo\.php +# ||huffingtonpost.com/geopromo/ (easyprivacy.txt: 8141) +.huffingtonpost.com/geopromo/ +# ||hubpages.com/c/*.gif? (easyprivacy.txt: 8140) +.hubpages.com/c/.*\.gif\? +# ||hsn.com/code/pix.aspx (easyprivacy.txt: 8139) +.hsn.com/code/pix\.aspx +# ||hrblock.com/includes/pixel/ (easyprivacy.txt: 8138) +.hrblock.com/includes/pixel/ +# ||hp.com^*/bootstrap/metrics.js (easyprivacy.txt: 8137) +.hp.com/.*/bootstrap/metrics\.js +# ||howtogeek.com/public/stats.php (easyprivacy.txt: 8136) +.howtogeek.com/public/stats\.php +# ||howcast.com/images/h.gif (easyprivacy.txt: 8135) +.howcast.com/images/h\.gif +# ||hoverstock.com/boomerang? (easyprivacy.txt: 8134) +.hoverstock.com/boomerang\? +# ||houzz.com/js/log? (easyprivacy.txt: 8133) +.houzz.com/js/log\? +# ||hothardware.com/stats/ (easyprivacy.txt: 8132) +.hothardware.com/stats/ +# ||hotelplanner.com/TT.cfm (easyprivacy.txt: 8131) +.hotelplanner.com/TT\.cfm +# ||hostels.com/includes/thing.php? (easyprivacy.txt: 8130) +.hostels.com/includes/thing\.php\? +# ||hostels.com/includes/lb.php? (easyprivacy.txt: 8129) +.hostels.com/includes/lb\.php\? +# ||hostelbookers.com/track/request/ (easyprivacy.txt: 8128) +.hostelbookers.com/track/request/ +# ||hoseasons.co.uk/tracking/js.html? (easyprivacy.txt: 8127) +.hoseasons.co.uk/tracking/js\.html\? +# ||honda.ca/_Global/js/includes/tracker.js (easyprivacy.txt: 8126) +.honda.ca/_Global/js/includes/tracker\.js +# ||homesalez.com/itop/hits.php (easyprivacy.txt: 8125) +.homesalez.com/itop/hits\.php +# ||homeaway.com^*/tracking-home.html (easyprivacy.txt: 8124) +.homeaway.com/.*/tracking-home\.html +# ||holiday-rentals.co.uk^*/tracking-home.html (easyprivacy.txt: 8123) +.holiday-rentals.co.uk/.*/tracking-home\.html +# ||holiday-rentals.co.uk/thirdparty/tag (easyprivacy.txt: 8122) +.holiday-rentals.co.uk/thirdparty/tag +# ||hobsons.co.uk^*/WebBeacon.aspx? (easyprivacy.txt: 8121) +.hobsons.co.uk/.*/WebBeacon\.aspx\? +# ||hitcount.heraldm.com^ (easyprivacy.txt: 8120) +.hitcount.heraldm.com +# ||higheredjobs.com/ClickThru/ (easyprivacy.txt: 8119) +.higheredjobs.com/ClickThru/ +# ||hexus.net/trk/$image (easyprivacy.txt: 8118) +.hexus.net/trk/ +# ||herold.at/images/stathbd.gif? (easyprivacy.txt: 8117) +.herold.at/images/stathbd\.gif\? +# ||heroku.com/track.js (easyprivacy.txt: 8116) +.heroku.com/track\.js +# ||heraldtimesonline.com/js/tk.js (easyprivacy.txt: 8115) +.heraldtimesonline.com/js/tk\.js +# ||helium.com/javascripts/helium-beacons.js (easyprivacy.txt: 8114) +.helium.com/javascripts/helium-beacons\.js +# ||heapanalytics.com/h?$image (easyprivacy.txt: 8113) +.heapanalytics.com/h\? +# ||healthcarejobsite.com/Common/JavaScript/functions.tracking.js (easyprivacy.txt: 8112) +.healthcarejobsite.com/Common/JavaScript/functions\.tracking\.js +# ||hdzog.com/js/1308.js (easyprivacy.txt: 8111) +.hdzog.com/js/1308\.js +# ||hclips.com/js/0818.js (easyprivacy.txt: 8110) +.hclips.com/js/0818\.js +# ||haxx.ly/counter/ (easyprivacy.txt: 8109) +.haxx.ly/counter/ +# ||harvester.hbpl.co.uk^ (easyprivacy.txt: 8108) +.harvester.hbpl.co.uk +# ||harvester.eu.square-enix.com^ (easyprivacy.txt: 8107) +.harvester.eu.square-enix.com +# ||harrisbank.com^*/zig.js (easyprivacy.txt: 8106) +.harrisbank.com/.*/zig\.js +# ||hanksgalleries.com/stxt/counter.php? (easyprivacy.txt: 8105) +.hanksgalleries.com/stxt/counter\.php\? +# ||h.cliphunter.com^ (easyprivacy.txt: 8104) +.h.cliphunter.com +# ||groupon.com/tracking (easyprivacy.txt: 8103) +.groupon.com/tracking +# ||groupon.com/analytic/ (easyprivacy.txt: 8102) +.groupon.com/analytic/ +# ||gq-magazine.co.uk^*/LogPageView (easyprivacy.txt: 8101) +.gq-magazine.co.uk/.*/LogPageView +# ||gov.in/js/ga.js (easyprivacy.txt: 8100) +.gov.in/js/ga\.js +# ||gosanangelo.com/metrics/ (easyprivacy.txt: 8099) +.gosanangelo.com/metrics/ +# ||gorillanation.com^*/flowplayer.ganalytics.swf (easyprivacy.txt: 8098) +.gorillanation.com/.*/flowplayer\.ganalytics\.swf +# ||googlelabs.com/log/ (easyprivacy.txt: 8097) +.googlelabs.com/log/ +# ||google.com^*/viewerimpressions? (easyprivacy.txt: 8096) +.google.com/.*/viewerimpressions\? +# ||google.com^*/urchin_post.js (easyprivacy.txt: 8095) +.google.com/.*/urchin_post\.js +# ||google.com^*/log? (easyprivacy.txt: 8094) +.google.com/.*/log\? +# ||google.com^*/dlpageping? (easyprivacy.txt: 8093) +.google.com/.*/dlpageping\? +# ||google.com/uploadstats|$xmlhttprequest (easyprivacy.txt: 8092) +.google.com/uploadstats$ +# ||google.com/support/webmasters/api/metrics?$script (easyprivacy.txt: 8091) +.google.com/support/webmasters/api/metrics\? +# ||google.com/stream_204? (easyprivacy.txt: 8090) +.google.com/stream_204\? +# ||google.com/reader/logging? (easyprivacy.txt: 8089) +.google.com/reader/logging\? +# ||google.*/stats?frame= (easyprivacy.txt: 8088) +.google.*./(.*/)?stats\?frame= +# ||google.*/logxhraction? (easyprivacy.txt: 8087) +.google.*./(.*/)?logxhraction\? +# ||google.*/log204? (easyprivacy.txt: 8086) +.google.*./(.*/)?log204\? +# ||google.*/gwt/x/ts? (easyprivacy.txt: 8085) +.google.*./(.*/)?gwt/x/ts\? +# ||google.*/gen_204?$~xmlhttprequest (easyprivacy.txt: 8084) +.google.*./(.*/)?gen_204\? +# ||google.*/gen204? (easyprivacy.txt: 8083) +.google.*./(.*/)?gen204\? +# ||google.*/client_204? (easyprivacy.txt: 8082) +.google.*./(.*/)?client_204\? +# ||google.*/api/sclk? (easyprivacy.txt: 8081) +.google.*./(.*/)?api/sclk\? +# ||golfsmith.com/ci/ (easyprivacy.txt: 8080) +.golfsmith.com/ci/ +# ||godaddy.com/pageevents.aspx (easyprivacy.txt: 8079) +.godaddy.com/pageevents\.aspx +# ||godaddy.com/image.aspx? (easyprivacy.txt: 8078) +.godaddy.com/image\.aspx\? +# ||go.theregister.com^$image (easyprivacy.txt: 8077) +.go.theregister.com +# ||go.com^*/analytics.js (easyprivacy.txt: 8076) +.go.com/.*/analytics\.js +# ||go.com/stat/ (easyprivacy.txt: 8075) +.go.com/stat/ +# ||go.com/globalelements/utils/tracking (easyprivacy.txt: 8074) +.go.com/globalelements/utils/tracking +# ||gmonitor.aliimg.com^ (easyprivacy.txt: 8073) +.gmonitor.aliimg.com +# ||globester.com^*/track.js (easyprivacy.txt: 8072) +.globester.com/.*/track\.js +# ||globes.co.il/shared/s.ashx? (easyprivacy.txt: 8071) +.globes.co.il/shared/s\.ashx\? +# ||globes.co.il/ga.asp (easyprivacy.txt: 8070) +.globes.co.il/ga\.asp +# ||glean.pop6.com^ (easyprivacy.txt: 8069) +.glean.pop6.com +# ||glamourmagazine.co.uk^*/LogPageView (easyprivacy.txt: 8068) +.glamourmagazine.co.uk/.*/LogPageView +# ||gizmodo.com^*/trackers.html (easyprivacy.txt: 8067) +.gizmodo.com/.*/trackers\.html +# ||gizmodo.com/at.js.php (easyprivacy.txt: 8066) +.gizmodo.com/at\.js\.php +# ||github.com/_stats (easyprivacy.txt: 8065) +.github.com/_stats +# ||github.com/_private/browser/stats (easyprivacy.txt: 8064) +.github.com/_private/browser/stats +# ||gigya.com/js/gigyaGAIntegration.js (easyprivacy.txt: 8063) +.gigya.com/js/gigyaGAIntegration\.js +# ||giganews.com/images/rpp.gif (easyprivacy.txt: 8062) +.giganews.com/images/rpp\.gif +# ||giffgaff.com/r/?id= (easyprivacy.txt: 8061) +.giffgaff.com/r/\?id= +# ||geovisites.com^*/geouser.js (easyprivacy.txt: 8060) +.geovisites.com/.*/geouser\.js +# ||geoiplookup.wikimedia.org^ (easyprivacy.txt: 8059) +.geoiplookup.wikimedia.org +# ||geoip.viamichelin.com^ (easyprivacy.txt: 8058) +.geoip.viamichelin.com +# ||geoip.syracuse.com^ (easyprivacy.txt: 8057) +.geoip.syracuse.com +# ||geoip.silive.com^ (easyprivacy.txt: 8056) +.geoip.silive.com +# ||geoip.pennlive.com^ (easyprivacy.txt: 8055) +.geoip.pennlive.com +# ||geoip.oregonlive.com^ (easyprivacy.txt: 8054) +.geoip.oregonlive.com +# ||geoip.nola.com^ (easyprivacy.txt: 8053) +.geoip.nola.com +# ||geoip.nj.com^ (easyprivacy.txt: 8052) +.geoip.nj.com +# ||geoip.mlive.com^ (easyprivacy.txt: 8051) +.geoip.mlive.com +# ||geoip.masslive.com^ (easyprivacy.txt: 8050) +.geoip.masslive.com +# ||geoip.lehighvalleylive.com^ (easyprivacy.txt: 8049) +.geoip.lehighvalleylive.com +# ||geoip.gulflive.com^ (easyprivacy.txt: 8048) +.geoip.gulflive.com +# ||geoip.cleveland.com^ (easyprivacy.txt: 8047) +.geoip.cleveland.com +# ||geoip.al.com^ (easyprivacy.txt: 8046) +.geoip.al.com +# ||geoip-lookup.vice.com^ (easyprivacy.txt: 8045) +.geoip-lookup.vice.com +# ||geobeacon.ign.com^ (easyprivacy.txt: 8044) +.geobeacon.ign.com +# ||geo.yahoo.com^ (easyprivacy.txt: 8043) +.geo.yahoo.com +# ||geo.play.it^ (easyprivacy.txt: 8042) +.geo.play.it +# ||geo.perezhilton.com^ (easyprivacy.txt: 8041) +.geo.perezhilton.com +# ||geo.mozilla.org^ (easyprivacy.txt: 8040) +.geo.mozilla.org +# ||geo.metronews.ca^ (easyprivacy.txt: 8039) +.geo.metronews.ca +# ||geo.homepage-web.com^ (easyprivacy.txt: 8038) +.geo.homepage-web.com +# ||geo.hltv.org^ (easyprivacy.txt: 8037) +.geo.hltv.org +# ||general-search.com/stat (easyprivacy.txt: 8036) +.general-search.com/stat +# ||general-files.com/stat (easyprivacy.txt: 8035) +.general-files.com/stat +# ||geico.com/vs/track2.js? (easyprivacy.txt: 8034) +.geico.com/vs/track2\.js\? +# ||geek.com/js/zdgurgle/ (easyprivacy.txt: 8033) +.geek.com/js/zdgurgle/ +# ||gawker.com^*/trackers.html (easyprivacy.txt: 8032) +.gawker.com/.*/trackers\.html +# ||gawker.com/at.js.php (easyprivacy.txt: 8031) +.gawker.com/at\.js\.php +# ||gawker.com/?op=hyperion_useragent_data (easyprivacy.txt: 8030) +.gawker.com/\?op=hyperion_useragent_data +# ||gardenweb.com^*/iv_header.js (easyprivacy.txt: 8029) +.gardenweb.com/.*/iv_header\.js +# ||gardenweb.com^*/iv_footer.js (easyprivacy.txt: 8028) +.gardenweb.com/.*/iv_footer\.js +# ||gamezone.com/site/linktracker.js (easyprivacy.txt: 8027) +.gamezone.com/site/linktracker\.js +# ||gamezone.com/?act= (easyprivacy.txt: 8026) +.gamezone.com/\?act= +# ||gametrailers.com/neo/stats/ (easyprivacy.txt: 8025) +.gametrailers.com/neo/stats/ +# ||gamespot.com/cgi/chkpt.php? (easyprivacy.txt: 8024) +.gamespot.com/cgi/chkpt\.php\? +# ||gamesgames.com/WebAnalysis/ (easyprivacy.txt: 8023) +.gamesgames.com/WebAnalysis/ +# ||gamerdeals.net/aggbug.aspx (easyprivacy.txt: 8022) +.gamerdeals.net/aggbug\.aspx +# ||gamefront.com/wp-content/plugins/tracker/ (easyprivacy.txt: 8021) +.gamefront.com/wp-content/plugins/tracker/ +# ||gallup.wn.com/1x1.gif (easyprivacy.txt: 8020) +.gallup.wn.com/1x1\.gif +# ||galleries.bz/track/ (easyprivacy.txt: 8019) +.galleries.bz/track/ +# ||gaiaonline.com/internal/mkt_t.php? (easyprivacy.txt: 8018) +.gaiaonline.com/internal/mkt_t\.php\? +# ||ga.canoe.ca^ (easyprivacy.txt: 8017) +.ga.canoe.ca +# ||g2a-com.newsletter.com.pl^$image,third-party (easyprivacy.txt: 8016) +.g2a-com.newsletter.com.pl +# ||g.techweekeurope.co.uk^ (easyprivacy.txt: 8015) +.g.techweekeurope.co.uk +# ||g.msn.com^ (easyprivacy.txt: 8014) +.g.msn.com +# ||fwmrm.net^*/AnalyticsExtension. (easyprivacy.txt: 8013) +.fwmrm.net/.*/AnalyticsExtension\. +# ||furk.net/counter.yadro.ru/ (easyprivacy.txt: 8012) +.furk.net/counter\.yadro\.ru/ +# ||funbrain.com/a2.gif (easyprivacy.txt: 8011) +.funbrain.com/a2\.gif +# ||fujifilm.com/js/shared/analyzer.js (easyprivacy.txt: 8010) +.fujifilm.com/js/shared/analyzer\.js +# ||ft.com^*/ft-tracking.js (easyprivacy.txt: 8009) +.ft.com/.*/ft-tracking\.js +# ||ft.com/conker/service/pageview? (easyprivacy.txt: 8008) +.ft.com/conker/service/pageview\? +# ||frstatic.net^*/tracking.js (easyprivacy.txt: 8007) +.frstatic.net/.*/tracking\.js +# ||frontdoor.com/_track? (easyprivacy.txt: 8006) +.frontdoor.com/_track\? +# ||frog.wix.com^ (easyprivacy.txt: 8005) +.frog.wix.com +# ||fresh.techdirt.com^ (easyprivacy.txt: 8004) +.fresh.techdirt.com +# ||freeones.com^*/cd/?cookies= (easyprivacy.txt: 8003) +.freeones.com/.*/cd/\?cookies= +# ||freeones.com/cd/?cookies= (easyprivacy.txt: 8002) +.freeones.com/cd/\?cookies= +# ||freemeteo.com^*/searchlog.asp? (easyprivacy.txt: 8001) +.freemeteo.com/.*/searchlog\.asp\? +# ||freemeteo.com^*/log.asp? (easyprivacy.txt: 8000) +.freemeteo.com/.*/log\.asp\? +# ||freelotto.com/offer.asp?offer=$image (easyprivacy.txt: 7999) +.freelotto.com/offer\.asp\?offer= +# ||freedownloadscenter.com^*/empty.gif? (easyprivacy.txt: 7998) +.freedownloadscenter.com/.*/empty\.gif\? +# ||freecause.com^*.png? (easyprivacy.txt: 7997) +.freecause.com/.*\.png\? +# ||freebiesms.com/tracker.aspx? (easyprivacy.txt: 7996) +.freebiesms.com/tracker\.aspx\? +# ||freebase.com/log? (easyprivacy.txt: 7995) +.freebase.com/log\? +# ||freean.us/track/ (easyprivacy.txt: 7994) +.freean.us/track/ +# ||free-tv-video-online.me/resources/js/counter.js (easyprivacy.txt: 7993) +.free-tv-video-online.me/resources/js/counter\.js +# ||free-tv-video-online.me/imp.php? (easyprivacy.txt: 7992) +.free-tv-video-online.me/imp\.php\? +# ||freaksofcock.com/track/ (easyprivacy.txt: 7991) +.freaksofcock.com/track/ +# ||foxtel.com.au/cms/fragments/corp_analytics/ (easyprivacy.txt: 7990) +.foxtel.com.au/cms/fragments/corp_analytics/ +# ||foxadd.com/addon/upixel/ (easyprivacy.txt: 7989) +.foxadd.com/addon/upixel/ +# ||foursquare.com^*/wtrack? (easyprivacy.txt: 7988) +.foursquare.com/.*/wtrack\? +# ||foursquare.com^*/logger? (easyprivacy.txt: 7987) +.foursquare.com/.*/logger\? +# ||fotothing.com/space.gif? (easyprivacy.txt: 7986) +.fotothing.com/space\.gif\? +# ||fostersbeer.com/js/tracking.js (easyprivacy.txt: 7985) +.fostersbeer.com/js/tracking\.js +# ||ford.com/ngtemplates/ngassets/ford/general/scripts/js/galleryMetrics.js (easyprivacy.txt: 7984) +.ford.com/ngtemplates/ngassets/ford/general/scripts/js/galleryMetrics\.js +# ||ford.com/ngtemplates/ngassets/com/forddirect/ng/newMetrics.js (easyprivacy.txt: 7983) +.ford.com/ngtemplates/ngassets/com/forddirect/ng/newMetrics\.js +# ||forbes.com^*/track.php? (easyprivacy.txt: 7982) +.forbes.com/.*/track\.php\? +# ||forbes.com/fps/cookie_backup.php? (easyprivacy.txt: 7981) +.forbes.com/fps/cookie_backup\.php\? +# ||fool.com/tracking/ (easyprivacy.txt: 7980) +.fool.com/tracking/ +# ||foodnavigator.com/tracker/ (easyprivacy.txt: 7979) +.foodnavigator.com/tracker/ +# ||foodcouture.net/public_html/ra/script.php$script (easyprivacy.txt: 7978) +.foodcouture.net/public_html/ra/script\.php +# ||fncstatic.com/static/all/js/geo.js (easyprivacy.txt: 7977) +.fncstatic.com/static/all/js/geo\.js +# ||flyjazz.ca/ow_ga.js (easyprivacy.txt: 7976) +.flyjazz.ca/ow_ga\.js +# ||flybmi.com/livetrack/ (easyprivacy.txt: 7975) +.flybmi.com/livetrack/ +# ||fls-na.amazon.ca^ (easyprivacy.txt: 7974) +.fls-na.amazon.ca +# ||fls-eu.amazon.co.uk^ (easyprivacy.txt: 7973) +.fls-eu.amazon.co.uk +# ||flixster.com^*/pixels? (easyprivacy.txt: 7972) +.flixster.com/.*/pixels\? +# ||flixist.com/img2.phtml (easyprivacy.txt: 7971) +.flixist.com/img2\.phtml +# ||flipkart.com/bbeacon.php? (easyprivacy.txt: 7970) +.flipkart.com/bbeacon\.php\? +# ||flipkart.com/ajaxlog/visitIdlog? (easyprivacy.txt: 7969) +.flipkart.com/ajaxlog/visitIdlog\? +# ||flipboard.com/usage? (easyprivacy.txt: 7968) +.flipboard.com/usage\? +# ||fling.com/zeftour/t_i.php? (easyprivacy.txt: 7967) +.fling.com/zeftour/t_i\.php\? +# ||flickr.com/beacon_page_timings.gne (easyprivacy.txt: 7966) +.flickr.com/beacon_page_timings\.gne +# ||flagfox.net/js/analytics.js (easyprivacy.txt: 7965) +.flagfox.net/js/analytics\.js +# ||financialstandardnews.com^*/webstats/ (easyprivacy.txt: 7964) +.financialstandardnews.com/.*/webstats/ +# ||financeglobe.com/Visit/ (easyprivacy.txt: 7963) +.financeglobe.com/Visit/ +# ||filmlinks4u.net/twatch/jslogger.php (easyprivacy.txt: 7962) +.filmlinks4u.net/twatch/jslogger\.php +# ||fightforthefuture.org/wf/open? (easyprivacy.txt: 7961) +.fightforthefuture.org/wf/open\? +# ||felitb.rightinthebox.com^ (easyprivacy.txt: 7960) +.felitb.rightinthebox.com +# ||feedsportal.com/c/ (easyprivacy.txt: 7959) +.feedsportal.com/c/ +# ||feeds.timesonline.co.uk^*/mf.gif (easyprivacy.txt: 7958) +.feeds.timesonline.co.uk/.*/mf\.gif +# ||feeds.feedblitz.com/~/i/ (easyprivacy.txt: 7957) +.feeds.feedblitz.com/~/i/ +# ||feedburner.com/~r/ (easyprivacy.txt: 7956) +.feedburner.com/~r/ +# ||fccbrea.org/javascript/stats.js (easyprivacy.txt: 7955) +.fccbrea.org/javascript/stats\.js +# ||fc2.com/counter_img.php? (easyprivacy.txt: 7954) +.fc2.com/counter_img\.php\? +# ||fc2.com/counter.php? (easyprivacy.txt: 7953) +.fc2.com/counter\.php\? +# ||fc2.com/analyze.js (easyprivacy.txt: 7952) +.fc2.com/analyze\.js +# ||fc2.com/ana2/ (easyprivacy.txt: 7951) +.fc2.com/ana2/ +# ||fc2.com/ana/ (easyprivacy.txt: 7950) +.fc2.com/ana/ +# ||favicon.co.uk/stat/ (easyprivacy.txt: 7949) +.favicon.co.uk/stat/ +# ||fastexercise.com/logging.js (easyprivacy.txt: 7948) +.fastexercise.com/logging\.js +# ||fast.forbes.com^ (easyprivacy.txt: 7947) +.fast.forbes.com +# ||farsnews.com/stcs.js.aspx? (easyprivacy.txt: 7946) +.farsnews.com/stcs\.js\.aspx\? +# ||farmville.com/trackaction.php? (easyprivacy.txt: 7945) +.farmville.com/trackaction\.php\? +# ||fark.com/cgi/ll.pl? (easyprivacy.txt: 7944) +.fark.com/cgi/ll\.pl\? +# ||farecompare.com/trackstar/ (easyprivacy.txt: 7943) +.farecompare.com/trackstar/ +# ||farecompare.com/resources/ga/ga.js (easyprivacy.txt: 7942) +.farecompare.com/resources/ga/ga\.js +# ||fantom-xp.org^*/toprefs.php? (easyprivacy.txt: 7941) +.fantom-xp.org/.*/toprefs\.php\? +# ||fantasticfiction.co.uk/cgi-bin/checker.cgi (easyprivacy.txt: 7940) +.fantasticfiction.co.uk/cgi-bin/checker\.cgi +# ||fanhow.com/script/tracker.js (easyprivacy.txt: 7939) +.fanhow.com/script/tracker\.js +# ||fanfiction.net/eye/ (easyprivacy.txt: 7938) +.fanfiction.net/eye/ +# ||facebook.com^*/impression_logging/ (easyprivacy.txt: 7937) +.facebook.com/.*/impression_logging/ +# ||facebook.com/search/web/instrumentation.php? (easyprivacy.txt: 7936) +.facebook.com/search/web/instrumentation\.php\? +# ||facebook.com/friends/requests/log_impressions (easyprivacy.txt: 7935) +.facebook.com/friends/requests/log_impressions +# ||facebook.com/ct.php (easyprivacy.txt: 7934) +.facebook.com/ct\.php +# ||facebook.com/ajax/*logging (easyprivacy.txt: 7933) +.facebook.com/ajax/.*logging +# ||facebook.com/ajax/*/log.php (easyprivacy.txt: 7932) +.facebook.com/ajax/.*/log\.php +# ||f.staticlp.com^ (easyprivacy.txt: 7931) +.f.staticlp.com +# ||f-secure.com^*/wtsdc.js (easyprivacy.txt: 7930) +.f-secure.com/.*/wtsdc\.js +# ||ezinearticles.com/encrypt/blank.gif? (easyprivacy.txt: 7929) +.ezinearticles.com/encrypt/blank\.gif\? +# ||ezinearticles.com/blank/ (easyprivacy.txt: 7928) +.ezinearticles.com/blank/ +# ||ez.no/statjs/ (easyprivacy.txt: 7927) +.ez.no/statjs/ +# ||extremetech.com^*/ga.js (easyprivacy.txt: 7926) +.extremetech.com/.*/ga\.js +# ||extremetech.com/sac/mostclicked/$script (easyprivacy.txt: 7925) +.extremetech.com/sac/mostclicked/ +# ||experts-exchange.com/pageloaded.jsp? (easyprivacy.txt: 7924) +.experts-exchange.com/pageloaded\.jsp\? +# ||experiandirect.com/javascripts/tracking.js (easyprivacy.txt: 7923) +.experiandirect.com/javascripts/tracking\.js +# ||expdb2.msn.com^ (easyprivacy.txt: 7922) +.expdb2.msn.com +# ||expbl2ro.xbox.com^ (easyprivacy.txt: 7921) +.expbl2ro.xbox.com +# ||exelate.com/pixel? (easyprivacy.txt: 7920) +.exelate.com/pixel\? +# ||excite.com/tr.js (easyprivacy.txt: 7919) +.excite.com/tr\.js +# ||excite.com/__kl.gif? (easyprivacy.txt: 7918) +.excite.com/__kl\.gif\? +# ||exchangeandmart.co.uk/js/ga.js (easyprivacy.txt: 7917) +.exchangeandmart.co.uk/js/ga\.js +# ||examiner.com/sites/all/modules/custom/ex_stats/ (easyprivacy.txt: 7916) +.examiner.com/sites/all/modules/custom/ex_stats/ +# ||exalead.com/search/pixel-ref/ (easyprivacy.txt: 7915) +.exalead.com/search/pixel-ref/ +# ||ex.ua/counter/ (easyprivacy.txt: 7914) +.ex.ua/counter/ +# ||eweek.com/hqxapi/ (easyprivacy.txt: 7913) +.eweek.com/hqxapi/ +# ||evisit.exeter.ac.uk^ (easyprivacy.txt: 7912) +.evisit.exeter.ac.uk +# ||everythinggirl.com/assets/tracker/ (easyprivacy.txt: 7911) +.everythinggirl.com/assets/tracker/ +# ||eventtracker.elitedaily.com^ (easyprivacy.txt: 7910) +.eventtracker.elitedaily.com +# ||eventlogger.soundcloud.com^ (easyprivacy.txt: 7909) +.eventlogger.soundcloud.com +# ||euroleague.tv^*/tracking.js (easyprivacy.txt: 7908) +.euroleague.tv/.*/tracking\.js +# ||eulerian.splendia.com/ea.js (easyprivacy.txt: 7907) +.eulerian.splendia.com/ea\.js +# ||etui.fs.ml.com^ (easyprivacy.txt: 7906) +.etui.fs.ml.com +# ||etonline.com/media/*/ctvconviva.swf (easyprivacy.txt: 7905) +.etonline.com/media/.*/ctvconviva\.swf +# ||et.nytimes.com^ (easyprivacy.txt: 7904) +.et.nytimes.com +# ||esure.com/cgi-bin/rr.cgi/images/blank.gif? (easyprivacy.txt: 7903) +.esure.com/cgi-bin/rr\.cgi/images/blank\.gif\? +# ||esupport.com/ea/analyze.js (easyprivacy.txt: 7902) +.esupport.com/ea/analyze\.js +# ||espncdn.com^*.tracking.js (easyprivacy.txt: 7901) +.espncdn.com/.*\.tracking\.js +# ||es.puritan.com^ (easyprivacy.txt: 7900) +.es.puritan.com +# ||eporner.com/stats/ (easyprivacy.txt: 7899) +.eporner.com/stats/ +# ||epinions.com/js/triggerParams.js (easyprivacy.txt: 7898) +.epinions.com/js/triggerParams\.js +# ||epinions.com/js/stdLauncher.js (easyprivacy.txt: 7897) +.epinions.com/js/stdLauncher\.js +# ||entry-stats.huffingtonpost.com^ (easyprivacy.txt: 7896) +.entry-stats.huffingtonpost.com +# ||entensity.net/pages/c.htm (easyprivacy.txt: 7895) +.entensity.net/pages/c\.htm +# ||enlightenment.secureshoppingbasket.com^ (easyprivacy.txt: 7894) +.enlightenment.secureshoppingbasket.com +# ||engineeringnews.co.za/count.php? (easyprivacy.txt: 7893) +.engineeringnews.co.za/count\.php\? +# ||engadget.com/traffic/? (easyprivacy.txt: 7892) +.engadget.com/traffic/\? +# ||encrypted.google.*/url?$image (easyprivacy.txt: 7891) +.encrypted.google.*./(.*/)?url\? +# ||encrypted.google.*/imghover?$image (easyprivacy.txt: 7890) +.encrypted.google.*./(.*/)?imghover\? +# ||encrypted.google.*/imgevent?$script (easyprivacy.txt: 7889) +.encrypted.google.*./(.*/)?imgevent\? +# ||emv3.com/HO?$image (easyprivacy.txt: 7888) +.emv3.com/HO\? +# ||emv2.com/P? (easyprivacy.txt: 7887) +.emv2.com/P\? +# ||emv2.com/HO? (easyprivacy.txt: 7886) +.emv2.com/HO\? +# ||emarketing.rmauctions.com^ (easyprivacy.txt: 7885) +.emarketing.rmauctions.com +# ||email.aol.com/cgi-bin*/flosensing? (easyprivacy.txt: 7884) +.email.aol.com/cgi-bin.*/flosensing\? +# ||email-wildstar-online.com/1x1.dyn? (easyprivacy.txt: 7883) +.email-wildstar-online.com/1x1\.dyn\? +# ||email-tickets.com/dt?e=PageView (easyprivacy.txt: 7882) +.email-tickets.com/dt\?e=PageView +# ||elsevier.com/pageReport? (easyprivacy.txt: 7881) +.elsevier.com/pageReport\? +# ||elance.com^*/emc.php? (easyprivacy.txt: 7880) +.elance.com/.*/emc\.php\? +# ||ehow.com/services/jslogging/log/? (easyprivacy.txt: 7879) +.ehow.com/services/jslogging/log/\? +# ||egg.com/rum/data.gif? (easyprivacy.txt: 7878) +.egg.com/rum/data\.gif\? +# ||efukt.com^*?hub= (easyprivacy.txt: 7877) +.efukt.com/.*\?hub= +# ||edweek.org/js/sc.js (easyprivacy.txt: 7876) +.edweek.org/js/sc\.js +# ||edw.edmunds.com^ (easyprivacy.txt: 7875) +.edw.edmunds.com +# ||edvantage.com.sg/site/servlet/tracker.jsp (easyprivacy.txt: 7874) +.edvantage.com.sg/site/servlet/tracker\.jsp +# ||edutrek.com/wgsltrk.php?$image (easyprivacy.txt: 7873) +.edutrek.com/wgsltrk\.php\? +# ||ednetz.de/api/public/socialmediacounter. (easyprivacy.txt: 7872) +.ednetz.de/api/public/socialmediacounter\. +# ||edmunds.com^*/edw1x1.gif (easyprivacy.txt: 7871) +.edmunds.com/.*/edw1x1\.gif +# ||edmunds.com^*/dart1x1.gif (easyprivacy.txt: 7870) +.edmunds.com/.*/dart1x1\.gif +# ||edmunds.com/api/logTime? (easyprivacy.txt: 7869) +.edmunds.com/api/logTime\? +# ||edgecastcdn.net^*/pixel_1.png? (easyprivacy.txt: 7868) +.edgecastcdn.net/.*/pixel_1\.png\? +# ||ectnews.com/shared/missing.gif? (easyprivacy.txt: 7866) +.ectnews.com/shared/missing\.gif\? +# ||ec2-prod-tracker.babelgum.com^ (easyprivacy.txt: 7865) +.ec2-prod-tracker.babelgum.com +# ||ebayobjects.com/*;dc_pixel_url=$image (easyprivacy.txt: 7864) +.ebayobjects.com/.*;dc_pixel_url= +# ||ebay.com/op/t.do?event (easyprivacy.txt: 7863) +.ebay.com/op/t\.do\?event +# ||ebay-us.com/fp/ (easyprivacy.txt: 7862) +.ebay-us.com/fp/ +# ||easy2.com^*/logging/ (easyprivacy.txt: 7861) +.easy2.com/.*/logging/ +# ||eafyfsuh.net/track/ (easyprivacy.txt: 7860) +.eafyfsuh.net/track/ +# ||ea.pixmania. (easyprivacy.txt: 7859) +.ea.pixmania.*. +# ||dyo.gs/track/ (easyprivacy.txt: 7858) +.dyo.gs/track/ +# ||dx.com/?utm_rid= (easyprivacy.txt: 7857) +.dx.com/\?utm_rid= +# ||dw.de^*/run.dw? (easyprivacy.txt: 7856) +.dw.de/.*/run\.dw\? +# ||dw.cnet.com^ (easyprivacy.txt: 7855) +.dw.cnet.com +# ||dvdempire.com/include/user/empty2.asp? (easyprivacy.txt: 7854) +.dvdempire.com/include/user/empty2\.asp\? +# ||dvdempire.com/images/empty2.asp (easyprivacy.txt: 7853) +.dvdempire.com/images/empty2\.asp +# ||dump8.com/js/stat.php (easyprivacy.txt: 7852) +.dump8.com/js/stat\.php +# ||dsm.com^*/searchenginetracking.js (easyprivacy.txt: 7851) +.dsm.com/.*/searchenginetracking\.js +# ||dslreports.com/tp? (easyprivacy.txt: 7850) +.dslreports.com/tp\? +# ||drpeterjones.com/stats/ (easyprivacy.txt: 7849) +.drpeterjones.com/stats/ +# ||dropbox.com/web_timing_log (easyprivacy.txt: 7848) +.dropbox.com/web_timing_log +# ||dropbox.com/el/?b=open: (easyprivacy.txt: 7847) +.dropbox.com/el/\?b=open: +# ||dominos.co.uk^*/universal.html? (easyprivacy.txt: 7846) +.dominos.co.uk/.*/universal\.html\? +# ||domaintools.com/tracker.php (easyprivacy.txt: 7845) +.domaintools.com/tracker\.php +# ||domaintools.com/buffer.pgif? (easyprivacy.txt: 7844) +.domaintools.com/buffer\.pgif\? +# ||domainit.com/scripts/track.js (easyprivacy.txt: 7843) +.domainit.com/scripts/track\.js +# ||dogpile.com/__kl.gif (easyprivacy.txt: 7842) +.dogpile.com/__kl\.gif +# ||docstoc.com/metrics/ (easyprivacy.txt: 7841) +.docstoc.com/metrics/ +# ||docs.google.com/stat|$xmlhttprequest (easyprivacy.txt: 7840) +.docs.google.com/stat$ +# ||dmtrk.com/*/o.gif (easyprivacy.txt: 7839) +.dmtrk.com/.*/o\.gif +# ||dmtracking2.alibaba.com^ (easyprivacy.txt: 7838) +.dmtracking2.alibaba.com +# ||dmeserv.newsinc.com^ (easyprivacy.txt: 7837) +.dmeserv.newsinc.com +# ||djtunes.com^*&__utma= (easyprivacy.txt: 7835) +.djtunes.com/.*&__utma= +# ||divxden.com^*/tracker.js (easyprivacy.txt: 7834) +.divxden.com/.*/tracker\.js +# ||displaymate.com/cgi-bin/stat/ (easyprivacy.txt: 7833) +.displaymate.com/cgi-bin/stat/ +# ||dippic.com/cgi-bin/index_dl.cgi? (easyprivacy.txt: 7832) +.dippic.com/cgi-bin/index_dl\.cgi\? +# ||digitalspy.co.uk/gip1.php (easyprivacy.txt: 7831) +.digitalspy.co.uk/gip1\.php +# ||digitalriver.com^*/globaltracking (easyprivacy.txt: 7830) +.digitalriver.com/.*/globaltracking +# ||digitalchocolate.com/event/track? (easyprivacy.txt: 7829) +.digitalchocolate.com/event/track\? +# ||diet.rodale.com^ (easyprivacy.txt: 7828) +.diet.rodale.com +# ||dictionary.com/track/ (easyprivacy.txt: 7827) +.dictionary.com/track/ +# ||diag.doba.com^ (easyprivacy.txt: 7826) +.diag.doba.com +# ||dfiles.ru//view.gif? (easyprivacy.txt: 7825) +# ||dfiles.eu//view.gif? (easyprivacy.txt: 7824) +# ||destructoid.com/img2.phtml? (easyprivacy.txt: 7823) +.destructoid.com/img2\.phtml\? +# ||despegar.com/t? (easyprivacy.txt: 7822) +.despegar.com/t\? +# ||designtaxi.com/tracker.php (easyprivacy.txt: 7821) +.designtaxi.com/tracker\.php +# ||derkeiler.com/gam/tag.js (easyprivacy.txt: 7820) +.derkeiler.com/gam/tag\.js +# ||depositfiles.com/view.gif? (easyprivacy.txt: 7819) +.depositfiles.com/view\.gif\? +# ||depositfiles.com//view.gif? (easyprivacy.txt: 7818) +# ||dell.com/metrics/ (easyprivacy.txt: 7817) +.dell.com/metrics/ +# ||dell.com/images/global/js/s_metrics*.js (easyprivacy.txt: 7816) +.dell.com/images/global/js/s_metrics.*\.js +# ||debtconsolidationcare.com/affiliate/tracker/ (easyprivacy.txt: 7815) +.debtconsolidationcare.com/affiliate/tracker/ +# ||dealnews.com/lw/ul.php? (easyprivacy.txt: 7814) +.dealnews.com/lw/ul\.php\? +# ||deadspin.com^*/trackers.html (easyprivacy.txt: 7813) +.deadspin.com/.*/trackers\.html +# ||deadspin.com/at.js.php (easyprivacy.txt: 7812) +.deadspin.com/at\.js\.php +# ||dcs.maxthon.com^ (easyprivacy.txt: 7811) +.dcs.maxthon.com +# ||dcs.mattel.com^ (easyprivacy.txt: 7810) +.dcs.mattel.com +# ||db.com^*/stats.js? (easyprivacy.txt: 7809) +.db.com/.*/stats\.js\? +# ||daum.net^*/dwi.js (easyprivacy.txt: 7808) +.daum.net/.*/dwi\.js +# ||datehookup.com/strk/dateadvertreg? (easyprivacy.txt: 7807) +.datehookup.com/strk/dateadvertreg\? +# ||datacollector.coin.scribol.com^ (easyprivacy.txt: 7806) +.datacollector.coin.scribol.com +# ||data.ryanair.com^ (easyprivacy.txt: 7805) +.data.ryanair.com +# ||data.ninemsn.com.au/*GetAdCalls (easyprivacy.txt: 7804) +.data.ninemsn.com.au/.*GetAdCalls +# ||dailymotion.com^*/tag.gif? (easyprivacy.txt: 7803) +.dailymotion.com/.*/tag\.gif\? +# ||dailymotion.com/track/ (easyprivacy.txt: 7802) +.dailymotion.com/track/ +# ||dailymotion.com/track- (easyprivacy.txt: 7801) +.dailymotion.com/track- +# ||dailymotion.com/logger/$object-subrequest (easyprivacy.txt: 7800) +.dailymotion.com/logger/ +# ||dailymail.co.uk/tracking/ (easyprivacy.txt: 7799) +.dailymail.co.uk/tracking/ +# ||dailyfinance.com/tmfstatic/vs.gif? (easyprivacy.txt: 7798) +.dailyfinance.com/tmfstatic/vs\.gif\? +# ||dabs.com/AbacusTest/clientinfo_bk.gif (easyprivacy.txt: 7797) +.dabs.com/AbacusTest/clientinfo_bk\.gif +# ||da.virginmedia.com^ (easyprivacy.txt: 7796) +.da.virginmedia.com +# ||cyberlink.com/analytics/ (easyprivacy.txt: 7795) +.cyberlink.com/analytics/ +# ||cybercoders.com/js/tracker.js (easyprivacy.txt: 7794) +.cybercoders.com/js/tracker\.js +# ||cyanogenmod.com/tracking.js (easyprivacy.txt: 7793) +.cyanogenmod.com/tracking\.js +# ||customerservicejobs.com/common/track/ (easyprivacy.txt: 7792) +.customerservicejobs.com/common/track/ +# ||current.com/tracking.htm? (easyprivacy.txt: 7791) +.current.com/tracking\.htm\? +# ||ctscdn.com/content/tracking- (easyprivacy.txt: 7790) +.ctscdn.com/content/tracking- +# ||ct.cnet.com/opens? (easyprivacy.txt: 7789) +.ct.cnet.com/opens\? +# ||ct.buzzfeed.com^ (easyprivacy.txt: 7788) +.ct.buzzfeed.com +# ||crunchyroll.com^*/breadcrumb.js (easyprivacy.txt: 7787) +.crunchyroll.com/.*/breadcrumb\.js +# ||crunchyroll.com/tracker (easyprivacy.txt: 7786) +.crunchyroll.com/tracker +# ||crunchsports.com/tracking_fetchinfo.aspx? (easyprivacy.txt: 7785) +.crunchsports.com/tracking_fetchinfo\.aspx\? +# ||crowdignite.com/img/l.gif (easyprivacy.txt: 7784) +.crowdignite.com/img/l\.gif +# ||creditcards.com/sb.php? (easyprivacy.txt: 7783) +.creditcards.com/sb\.php\? +# ||creditcards.com/actions/page_view.php? (easyprivacy.txt: 7782) +.creditcards.com/actions/page_view\.php\? +# ||creativecommons.org^*/triples? (easyprivacy.txt: 7781) +.creativecommons.org/.*/triples\? +# ||creativecommons.org/elog/ (easyprivacy.txt: 7780) +.creativecommons.org/elog/ +# ||crackle.com/tracking/ (easyprivacy.txt: 7779) +.crackle.com/tracking/ +# ||cracked.com/tracking/ (easyprivacy.txt: 7778) +.cracked.com/tracking/ +# ||coveritlive.com/1/sts/view? (easyprivacy.txt: 7777) +.coveritlive.com/1/sts/view\? +# ||coursera.org/wf/open? (easyprivacy.txt: 7776) +.coursera.org/wf/open\? +# ||courierpress.com/metrics/ (easyprivacy.txt: 7775) +.courierpress.com/metrics/ +# ||coupons.com/pmm.asp (easyprivacy.txt: 7774) +.coupons.com/pmm\.asp +# ||counter.theconversation.edu.au^ (easyprivacy.txt: 7773) +.counter.theconversation.edu.au +# ||counter.sina.com.cn^ (easyprivacy.txt: 7772) +.counter.sina.com.cn +# ||counter.promodeejay.net^ (easyprivacy.txt: 7771) +.counter.promodeejay.net +# ||counter.entertainmentwise.com^ (easyprivacy.txt: 7770) +.counter.entertainmentwise.com +# ||count.rin.ru^ (easyprivacy.txt: 7769) +.count.rin.ru +# ||count.prx.org^ (easyprivacy.txt: 7768) +.count.prx.org +# ||count.livetv.sx^ (easyprivacy.txt: 7767) +.count.livetv.sx +# ||count.livetv.ru^ (easyprivacy.txt: 7766) +.count.livetv.ru +# ||cosmopolitan.co.za/rest/track/ (easyprivacy.txt: 7765) +.cosmopolitan.co.za/rest/track/ +# ||cooliris.com/shared/stats/ (easyprivacy.txt: 7764) +.cooliris.com/shared/stats/ +# ||coolertracks.emailroi.com^ (easyprivacy.txt: 7763) +.coolertracks.emailroi.com +# ||cooksunited.co.uk^*/pixel/ (easyprivacy.txt: 7762) +.cooksunited.co.uk/.*/pixel/ +# ||cooksunited.co.uk/counter*.php? (easyprivacy.txt: 7761) +.cooksunited.co.uk/counter.*\.php\? +# ||consumerreports.org^*/js/conversion.js (easyprivacy.txt: 7760) +.consumerreports.org/.*/js/conversion\.js +# ||confirm-referer.glrsales.com^ (easyprivacy.txt: 7759) +.confirm-referer.glrsales.com +# ||computing.co.uk^*/webtrends.js (easyprivacy.txt: 7758) +.computing.co.uk/.*/webtrends\.js +# ||computerarts.co.uk/*.php?cmd=site-stats (easyprivacy.txt: 7757) +.computerarts.co.uk/.*\.php\?cmd=site-stats +# ||comms-web-tracking.uswitchinternal.com^ (easyprivacy.txt: 7756) +.comms-web-tracking.uswitchinternal.com +# ||commercialappeal.com/metrics/ (easyprivacy.txt: 7755) +.commercialappeal.com/metrics/ +# ||commentarymagazine.com^*/track.asp? (easyprivacy.txt: 7754) +.commentarymagazine.com/.*/track\.asp\? +# ||collegehumor.com/track.php? (easyprivacy.txt: 7753) +.collegehumor.com/track\.php\? +# ||collector.trendmd.com^ (easyprivacy.txt: 7752) +.collector.trendmd.com +# ||collector.tescocompare.com^ (easyprivacy.txt: 7751) +.collector.tescocompare.com +# ||collector.statowl.com^ (easyprivacy.txt: 7750) +.collector.statowl.com +# ||collector.shopstream.co^ (easyprivacy.txt: 7749) +.collector.shopstream.co +# ||collector.kstptv5.com^ (easyprivacy.txt: 7748) +.collector.kstptv5.com +# ||collector.ksax.com^ (easyprivacy.txt: 7747) +.collector.ksax.com +# ||collector.githubapp.com^ (easyprivacy.txt: 7746) +.collector.githubapp.com +# ||collector-cdn.github.com^ (easyprivacy.txt: 7745) +.collector-cdn.github.com +# ||collection.theaa.com^ (easyprivacy.txt: 7744) +.collection.theaa.com +# ||collect2.sas.com^ (easyprivacy.txt: 7743) +.collect2.sas.com +# ||collect.sas.com^ (easyprivacy.txt: 7742) +.collect.sas.com +# ||collarity.com/ucs/tracker.js (easyprivacy.txt: 7741) +.collarity.com/ucs/tracker\.js +# ||codeweblog.com/js/count.js (easyprivacy.txt: 7740) +.codeweblog.com/js/count\.js +# ||codecguide.com/stats.js (easyprivacy.txt: 7739) +.codecguide.com/stats\.js +# ||cnt.vivatube.com^ (easyprivacy.txt: 7738) +.cnt.vivatube.com +# ||cnt.nuvid.com^ (easyprivacy.txt: 7737) +.cnt.nuvid.com +# ||cnt.nicemix.com^ (easyprivacy.txt: 7736) +.cnt.nicemix.com +# ||cmstrendslog.timesnow.tv^ (easyprivacy.txt: 7735) +.cmstrendslog.timesnow.tv +# ||cmstrendslog.indiatimes.com^ (easyprivacy.txt: 7734) +.cmstrendslog.indiatimes.com +# ||clvk.viki.io^ (easyprivacy.txt: 7733) +.clvk.viki.io +# ||cls.ichotelsgroup.com^ (easyprivacy.txt: 7732) +.cls.ichotelsgroup.com +# ||cloudfront.net/vis_opt_no_jquery.js (easyprivacy.txt: 7731) +.cloudfront.net/vis_opt_no_jquery\.js +# ||cloudfront.net/vis_opt.js (easyprivacy.txt: 7730) +.cloudfront.net/vis_opt\.js +# ||cloudfront.net/m/princess/ae.live.js (easyprivacy.txt: 7727) +.cloudfront.net/m/princess/ae\.live\.js +# ||cloudfront.net/m/princess/ae.js (easyprivacy.txt: 7726) +.cloudfront.net/m/princess/ae\.js +# ||cloudfront.net/bbc-filter.js (easyprivacy.txt: 7724) +.cloudfront.net/bbc-filter\.js +# ||cloudfront.net/amznUrchin.js (easyprivacy.txt: 7723) +.cloudfront.net/amznUrchin\.js +# ||cloudfront.net/1x1.gif? (easyprivacy.txt: 7722) +.cloudfront.net/1x1\.gif\? +# ||clog.go.com^ (easyprivacy.txt: 7721) +.clog.go.com +# ||clkstat.china.cn^ (easyprivacy.txt: 7720) +.clkstat.china.cn +# ||clk.about.com^ (easyprivacy.txt: 7719) +.clk.about.com +# ||climatedesk.org*/pixel.gif (easyprivacy.txt: 7718) +.climatedesk.org*./(.*/)?pixel\.gif +# ||clicks.traffictrader.net^ (easyprivacy.txt: 7717) +.clicks.traffictrader.net +# ||clicks.hurriyet.com.tr^ (easyprivacy.txt: 7716) +.clicks.hurriyet.com.tr +# ||click2.cafepress.com^ (easyprivacy.txt: 7715) +.click2.cafepress.com +# ||click.news.imdb.com/open.aspx? (easyprivacy.txt: 7714) +.click.news.imdb.com/open\.aspx\? +# ||click.mmosite.com^ (easyprivacy.txt: 7713) +.click.mmosite.com +# ||click.engage.xbox.com^ (easyprivacy.txt: 7712) +.click.engage.xbox.com +# ||click.aliexpress.com^ (easyprivacy.txt: 7711) +.click.aliexpress.com +# ||clck.yandex.com^ (easyprivacy.txt: 7710) +.clck.yandex.com +# ||cl.ly/metrics? (easyprivacy.txt: 7709) +.cl.ly/metrics\? +# ||cl.expedia.com^ (easyprivacy.txt: 7708) +.cl.expedia.com +# ||cjtube.com/tp/*.php (easyprivacy.txt: 7707) +.cjtube.com/tp/.*\.php +# ||ciao.co.uk/flextag/ (easyprivacy.txt: 7706) +.ciao.co.uk/flextag/ +# ||chunk.bustle.com^ (easyprivacy.txt: 7705) +.chunk.bustle.com +# ||chud.com/community/p/ (easyprivacy.txt: 7704) +.chud.com/community/p/ +# ||chron.com/javascript/cider/ (easyprivacy.txt: 7703) +.chron.com/javascript/cider/ +# ||christianpost.com/count.php? (easyprivacy.txt: 7702) +.christianpost.com/count\.php\? +# ||chkpt.zdnet.com^ (easyprivacy.txt: 7701) +.chkpt.zdnet.com +# ||chip.eu^*/pic.gif? (easyprivacy.txt: 7700) +.chip.eu/.*/pic\.gif\? +# ||chinanews.com:8090/rpc/p.jsp? (easyprivacy.txt: 7699) +.chinanews.com:8090/rpc/p\.jsp\? +# ||china.com^*/endpage_footer.js (easyprivacy.txt: 7698) +.china.com/.*/endpage_footer\.js +# ||china.com/statistic.js (easyprivacy.txt: 7697) +.china.com/statistic\.js +# ||chelseafc.com^*/tracking.js (easyprivacy.txt: 7696) +.chelseafc.com/.*/tracking\.js +# ||cheezburger.com/api/visitor (easyprivacy.txt: 7695) +.cheezburger.com/api/visitor +# ||cheapsalesconsulting.com/adaptive.php? (easyprivacy.txt: 7694) +.cheapsalesconsulting.com/adaptive\.php\? +# ||cheapflights.com/ic/*.gif? (easyprivacy.txt: 7693) +.cheapflights.com/ic/.*\.gif\? +# ||charter.com/static/scripts/mock/tracking.js (easyprivacy.txt: 7692) +.charter.com/static/scripts/mock/tracking\.js +# ||channel4.com/foresee_c4/ (easyprivacy.txt: 7691) +.channel4.com/foresee_c4/ +# ||chanel.com/js/flashtrack.js (easyprivacy.txt: 7690) +.chanel.com/js/flashtrack\.js +# ||cgi.nch.com.au^*&referrer (easyprivacy.txt: 7689) +.cgi.nch.com.au/.*&referrer +# ||cfr.org/js/ga.*js (easyprivacy.txt: 7688) +.cfr.org/js/ga\..*js +# ||cert.org/images/1pxinv.gif (easyprivacy.txt: 7687) +.cert.org/images/1pxinv\.gif +# ||cellstores.com/tracking/ (easyprivacy.txt: 7686) +.cellstores.com/tracking/ +# ||cdnstats.tube8.com^ (easyprivacy.txt: 7685) +.cdnstats.tube8.com +# ||cd.musicmass.com^ (easyprivacy.txt: 7684) +.cd.musicmass.com +# ||cctv.com^*/SnoopStat? (easyprivacy.txt: 7683) +.cctv.com/.*/SnoopStat\? +# ||cclickvidservgs.com/mattel/cclick.js (easyprivacy.txt: 7682) +.cclickvidservgs.com/mattel/cclick\.js +# ||cbssports.com/common/p? (easyprivacy.txt: 7681) +.cbssports.com/common/p\? +# ||cbsnews.com/i/trk/ (easyprivacy.txt: 7680) +.cbsnews.com/i/trk/ +# ||cbslocal.com^*/cbs1x1.gif? (easyprivacy.txt: 7679) +.cbslocal.com/.*/cbs1x1\.gif\? +# ||cbsimg.net/js/cbsi/dw.js (easyprivacy.txt: 7678) +.cbsimg.net/js/cbsi/dw\.js +# ||cbs.wondershare.com^ (easyprivacy.txt: 7677) +.cbs.wondershare.com +# ||cbs.com/assets/js/*AdvCookie.js (easyprivacy.txt: 7676) +.cbs.com/assets/js/.*AdvCookie\.js +# ||cbox.ws^*/relay.swf?host= (easyprivacy.txt: 7675) +.cbox.ws/.*/relay\.swf\?host= +# ||cbox.ws/box/relay.swf? (easyprivacy.txt: 7674) +.cbox.ws/box/relay\.swf\? +# ||cbc.ca/g/stats/ (easyprivacy.txt: 7673) +.cbc.ca/g/stats/ +# ||cbc.ca/g/i/intercept.js (easyprivacy.txt: 7672) +.cbc.ca/g/i/intercept\.js +# ||cartoonnetwork.com^*/brandcma.js (easyprivacy.txt: 7671) +.cartoonnetwork.com/.*/brandcma\.js +# ||cartoonnetwork.com/tools/js/clickmap/ (easyprivacy.txt: 7670) +.cartoonnetwork.com/tools/js/clickmap/ +# ||cartier.co.uk^*/eyeblaster. (easyprivacy.txt: 7669) +.cartier.co.uk/.*/eyeblaster\. +# ||cars.com^*/analytics.js (easyprivacy.txt: 7668) +.cars.com/.*/analytics\.js +# ||carmax.com/ping? (easyprivacy.txt: 7667) +.carmax.com/ping\? +# ||carmagazine.co.uk^*/tracking.js (easyprivacy.txt: 7666) +.carmagazine.co.uk/.*/tracking\.js +# ||cardstore.com/affiliate.jsp? (easyprivacy.txt: 7665) +.cardstore.com/affiliate\.jsp\? +# ||cardomain.com/js/tibbylog.js? (easyprivacy.txt: 7664) +.cardomain.com/js/tibbylog\.js\? +# ||capitalone.com/tracker/ (easyprivacy.txt: 7663) +.capitalone.com/tracker/ +# ||canoe.ca/generix/ga.js (easyprivacy.txt: 7662) +.canoe.ca/generix/ga\.js +# ||candy.com/3droi/ (easyprivacy.txt: 7661) +.candy.com/3droi/ +# ||caller.com/metrics/ (easyprivacy.txt: 7660) +.caller.com/metrics/ +# ||caixin.com/webjs/common/caixinlog.js (easyprivacy.txt: 7659) +.caixin.com/webjs/common/caixinlog\.js +# ||c.ypcdn.com^*/webyp?rid= (easyprivacy.txt: 7658) +.c.ypcdn.com/.*/webyp\?rid= +# ||c.x.oanda.com^ (easyprivacy.txt: 7657) +.c.x.oanda.com +# ||c.newsinc.com^ (easyprivacy.txt: 7656) +.c.newsinc.com +# ||c.microsoft.com^ (easyprivacy.txt: 7655) +.c.microsoft.com +# ||buzzurl.jp/api/counter/ (easyprivacy.txt: 7654) +.buzzurl.jp/api/counter/ +# ||buzzfeed.com^*/tracker.js (easyprivacy.txt: 7653) +.buzzfeed.com/.*/tracker\.js +# ||buzzfeed.com^*/small.gif? (easyprivacy.txt: 7652) +.buzzfeed.com/.*/small\.gif\? +# ||buzzfed.com^*/pound.js (easyprivacy.txt: 7651) +.buzzfed.com/.*/pound\.js +# ||buzzfed.com/pixel? (easyprivacy.txt: 7650) +.buzzfed.com/pixel\? +# ||buzzamedia.com/js/track.js (easyprivacy.txt: 7649) +.buzzamedia.com/js/track\.js +# ||buto.tv/track/ (easyprivacy.txt: 7648) +.buto.tv/track/ +# ||businessseek.biz/cgi-bin/*.pl?trans.gif&ref= (easyprivacy.txt: 7647) +.businessseek.biz/cgi-bin/.*\.pl\?trans\.gif&ref= +# ||businessinsider.com^*/track.js (easyprivacy.txt: 7646) +.businessinsider.com/.*/track\.js +# ||businessinsider.com/tracker.js (easyprivacy.txt: 7645) +.businessinsider.com/tracker\.js +# ||business.com/images2/anal.gif? (easyprivacy.txt: 7644) +.business.com/images2/anal\.gif\? +# ||bulgari.com/bulgari/wireframe_script/BulgariGa.js (easyprivacy.txt: 7643) +.bulgari.com/bulgari/wireframe_script/BulgariGa\.js +# ||brobible.com/?ACT (easyprivacy.txt: 7642) +.brobible.com/\?ACT +# ||broadbandchoices.co.uk/track.js (easyprivacy.txt: 7641) +.broadbandchoices.co.uk/track\.js +# ||britannica.com/webstats/ (easyprivacy.txt: 7640) +.britannica.com/webstats/ +# ||brightcove.com/1pix.gif? (easyprivacy.txt: 7639) +.brightcove.com/1pix\.gif\? +# ||bridgetrack.com/track/ (easyprivacy.txt: 7638) +.bridgetrack.com/track/ +# ||bridgetrack.com/site/ (easyprivacy.txt: 7637) +.bridgetrack.com/site/ +# ||branica.com/counter.php? (easyprivacy.txt: 7636) +.branica.com/counter\.php\? +# ||brandrepublic.com/session-img/ (easyprivacy.txt: 7635) +.brandrepublic.com/session-img/ +# ||bostonglobe.com/statistics? (easyprivacy.txt: 7634) +.bostonglobe.com/statistics\? +# ||boston.com/upixel/ (easyprivacy.txt: 7633) +.boston.com/upixel/ +# ||booking.com/logo? (easyprivacy.txt: 7632) +.booking.com/logo\? +# ||booking.com/js_tracking? (easyprivacy.txt: 7631) +.booking.com/js_tracking\? +# ||boats.com/images/tracking/ (easyprivacy.txt: 7630) +.boats.com/images/tracking/ +# ||boards.ie/timing.php? (easyprivacy.txt: 7629) +.boards.ie/timing\.php\? +# ||bmocorpmc.com^*/zig.js (easyprivacy.txt: 7628) +.bmocorpmc.com/.*/zig\.js +# ||bluenile.com/track/ (easyprivacy.txt: 7627) +.bluenile.com/track/ +# ||bluenile.co.uk/track/ (easyprivacy.txt: 7626) +.bluenile.co.uk/track/ +# ||bluenile.ca/track/ (easyprivacy.txt: 7625) +.bluenile.ca/track/ +# ||bloxcms.com^*/tracker.js (easyprivacy.txt: 7624) +.bloxcms.com/.*/tracker\.js +# ||bloomberg.com/apps/data?referrer (easyprivacy.txt: 7623) +.bloomberg.com/apps/data\?referrer +# ||blip.tv/engagement? (easyprivacy.txt: 7622) +.blip.tv/engagement\? +# ||blinkbox.com/tracking (easyprivacy.txt: 7621) +.blinkbox.com/tracking +# ||blick.ch/stats/ (easyprivacy.txt: 7620) +.blick.ch/stats/ +# ||blekko.com/a/track? (easyprivacy.txt: 7619) +.blekko.com/a/track\? +# ||blastro.com/log_player_actions.php (easyprivacy.txt: 7618) +.blastro.com/log_player_actions\.php +# ||blankfire.com^*_.gif (easyprivacy.txt: 7617) +.blankfire.com/.*_\.gif +# ||blackplanet.com/images/shim.gif (easyprivacy.txt: 7616) +.blackplanet.com/images/shim\.gif +# ||bits.wikimedia.org/geoiplookup (easyprivacy.txt: 7615) +.bits.wikimedia.org/geoiplookup +# ||bit.ehow.com^ (easyprivacy.txt: 7614) +.bit.ehow.com +# ||birthvillage.com/watcher/ (easyprivacy.txt: 7613) +.birthvillage.com/watcher/ +# ||biosphoto.com^*/stats/ (easyprivacy.txt: 7612) +.biosphoto.com/.*/stats/ +# ||bing.com^*/GLinkPing.aspx (easyprivacy.txt: 7611) +.bing.com/.*/GLinkPing\.aspx +# ||bing.com/widget/metrics.js (easyprivacy.txt: 7610) +.bing.com/widget/metrics\.js +# ||bing.com/partner/primedns (easyprivacy.txt: 7609) +.bing.com/partner/primedns +# ||bing.com/fd/ls/ (easyprivacy.txt: 7608) +.bing.com/fd/ls/ +# ||binaries4all.nl/misc/misc.php?*&url=http (easyprivacy.txt: 7607) +.binaries4all.nl/misc/misc\.php\?.*&url=http +# ||bidz.com/contentarea/BidzHomePixel (easyprivacy.txt: 7606) +.bidz.com/contentarea/BidzHomePixel +# ||bi.medscape.com^ (easyprivacy.txt: 7605) +.bi.medscape.com +# ||bhg.com^*/tracking-data? (easyprivacy.txt: 7604) +.bhg.com/.*/tracking-data\? +# ||beyond.com/common/track/trackgeneral.asp (easyprivacy.txt: 7603) +.beyond.com/common/track/trackgeneral\.asp +# ||betway.com/snowflake/? (easyprivacy.txt: 7602) +.betway.com/snowflake/\? +# ||betfair.com/1x1.gif (easyprivacy.txt: 7601) +.betfair.com/1x1\.gif +# ||bestofmedia.com/sfp/js/boomerang/ (easyprivacy.txt: 7600) +.bestofmedia.com/sfp/js/boomerang/ +# ||bestofmedia.com/i/tomsguide/a.gif (easyprivacy.txt: 7599) +.bestofmedia.com/i/tomsguide/a\.gif +# ||bermudasun.bm/stats/ (easyprivacy.txt: 7598) +.bermudasun.bm/stats/ +# ||bench.uc.cn^ (easyprivacy.txt: 7597) +.bench.uc.cn +# ||beacons.helium.com^ (easyprivacy.txt: 7596) +.beacons.helium.com +# ||beacon.www.theguardian.com^ (easyprivacy.txt: 7595) +.beacon.www.theguardian.com +# ||beacon.walmart.com^ (easyprivacy.txt: 7594) +.beacon.walmart.com +# ||beacon.search.yahoo.com^ (easyprivacy.txt: 7593) +.beacon.search.yahoo.com +# ||beacon.nuskin.com^ (easyprivacy.txt: 7592) +.beacon.nuskin.com +# ||beacon.lycos.com^ (easyprivacy.txt: 7591) +.beacon.lycos.com +# ||beacon.indieclicktv.com^ (easyprivacy.txt: 7590) +.beacon.indieclicktv.com +# ||beacon.examiner.com^ (easyprivacy.txt: 7589) +.beacon.examiner.com +# ||beacon.ehow.com^ (easyprivacy.txt: 7588) +.beacon.ehow.com +# ||beacon-1.newrelic.com^ (easyprivacy.txt: 7587) +.beacon-1.newrelic.com +# ||bdonline.co.uk/bps_sv.gif? (easyprivacy.txt: 7586) +.bdonline.co.uk/bps_sv\.gif\? +# ||bcm.itv.com^ (easyprivacy.txt: 7585) +.bcm.itv.com +# ||bc.yahoo.com^ (easyprivacy.txt: 7584) +.bc.yahoo.com +# ||bbc.co.uk^*/vs.js (easyprivacy.txt: 7582) +.bbc.co.uk/.*/vs\.js +# ||bbc.co.uk^*/tracker.js (easyprivacy.txt: 7581) +.bbc.co.uk/.*/tracker\.js +# ||bbc.co.uk^*/livestats_v1_1.js (easyprivacy.txt: 7580) +.bbc.co.uk/.*/livestats_v1_1\.js +# ||bbc.co.uk^*/livestats.js (easyprivacy.txt: 7579) +.bbc.co.uk/.*/livestats\.js +# ||bbc.co.uk^*/linktrack.js (easyprivacy.txt: 7578) +.bbc.co.uk/.*/linktrack\.js +# ||bbc.co.uk/zaguk.gif? (easyprivacy.txt: 7577) +.bbc.co.uk/zaguk\.gif\? +# ||bbc.co.uk/click/img/ (easyprivacy.txt: 7576) +.bbc.co.uk/click/img/ +# ||bbc.co.uk/cbbc/statstracker/ (easyprivacy.txt: 7575) +.bbc.co.uk/cbbc/statstracker/ +# ||bbc.co.uk/analytics? (easyprivacy.txt: 7574) +.bbc.co.uk/analytics\? +# ||bayer.com^*/sp.gif? (easyprivacy.txt: 7573) +.bayer.com/.*/sp\.gif\? +# ||baxter.com/includes/wtss.js (easyprivacy.txt: 7572) +.baxter.com/includes/wtss\.js +# ||bats.video.yahoo.com^ (easyprivacy.txt: 7571) +.bats.video.yahoo.com +# ||bat.adforum.com^ (easyprivacy.txt: 7570) +.bat.adforum.com +# ||barrons.com^*/blank.htm (easyprivacy.txt: 7569) +.barrons.com/.*/blank\.htm +# ||barneys.com^*/__analytics-tracking? (easyprivacy.txt: 7568) +.barneys.com/.*/__analytics-tracking\? +# ||barneys.com/spacer.gif? (easyprivacy.txt: 7567) +.barneys.com/spacer\.gif\? +# ||barnesandnoble.com/Analytics/ (easyprivacy.txt: 7566) +.barnesandnoble.com/Analytics/ +# ||barclaycard.co.uk/cs/static/js/esurveys/esurveys.js (easyprivacy.txt: 7565) +.barclaycard.co.uk/cs/static/js/esurveys/esurveys\.js +# ||barcelo.com^*/Tracking.js (easyprivacy.txt: 7564) +.barcelo.com/.*/Tracking\.js +# ||bangkokpost.com/spac/spac.js (easyprivacy.txt: 7563) +.bangkokpost.com/spac/spac\.js +# ||banggood.com/?p= (easyprivacy.txt: 7562) +.banggood.com/\?p= +# ||bandstores.co.uk/tracking/scripts/ (easyprivacy.txt: 7561) +.bandstores.co.uk/tracking/scripts/ +# ||baidu.com/js/log.js (easyprivacy.txt: 7560) +.baidu.com/js/log\.js +# ||baidu.com/ecom? (easyprivacy.txt: 7559) +.baidu.com/ecom\? +# ||b.photobucket.com^$~object-subrequest (easyprivacy.txt: 7558) +.b.photobucket.com +# ||b.myspace.com^ (easyprivacy.txt: 7557) +.b.myspace.com +# ||b.imwx.com^ (easyprivacy.txt: 7556) +.b.imwx.com +# ||b.huffingtonpost.com^ (easyprivacy.txt: 7555) +.b.huffingtonpost.com +# ||azfamily.com/images/pixel.gif (easyprivacy.txt: 7554) +.azfamily.com/images/pixel\.gif +# ||axa.com/elements/js/wreport.js (easyprivacy.txt: 7553) +.axa.com/elements/js/wreport\.js +# ||avstop.com^*/poll.gif? (easyprivacy.txt: 7552) +.avstop.com/.*/poll\.gif\? +# ||aviva.co.uk/metrics/ (easyprivacy.txt: 7551) +.aviva.co.uk/metrics/ +# ||avitop.com^*/hitlist.asp (easyprivacy.txt: 7550) +.avitop.com/.*/hitlist\.asp +# ||avira.com/site/datatracking? (easyprivacy.txt: 7549) +.avira.com/site/datatracking\? +# ||avg.com^*/stats.js (easyprivacy.txt: 7548) +.avg.com/.*/stats\.js +# ||autotrader.co.za/log/ (easyprivacy.txt: 7547) +.autotrader.co.za/log/ +# ||autotrader.co.uk/page-tracking/ (easyprivacy.txt: 7546) +.autotrader.co.uk/page-tracking/ +# ||autosite.com/scripts/markerfile.bin? (easyprivacy.txt: 7545) +.autosite.com/scripts/markerfile\.bin\? +# ||autopartswarehouse.com/thirdparty/tracker? (easyprivacy.txt: 7544) +.autopartswarehouse.com/thirdparty/tracker\? +# ||autobytel.com/content/shared/markerfile.bin (easyprivacy.txt: 7543) +.autobytel.com/content/shared/markerfile\.bin +# ||autoblog.com/traffic/ (easyprivacy.txt: 7542) +.autoblog.com/traffic/ +# ||auriq.com/asp/aq_tag. (easyprivacy.txt: 7541) +.auriq.com/asp/aq_tag\. +# ||audiusa.com/us/brand/en.usertracking_javascript.js (easyprivacy.txt: 7540) +.audiusa.com/us/brand/en\.usertracking_javascript\.js +# ||audit.pcadvisor.co.uk^ (easyprivacy.txt: 7539) +.audit.pcadvisor.co.uk +# ||audit.macworld.co.uk^ (easyprivacy.txt: 7538) +.audit.macworld.co.uk +# ||attachmate.com*/pv.aspx? (easyprivacy.txt: 7537) +.attachmate.com*./(.*/)?pv\.aspx\? +# ||att.com/csct.gif? (easyprivacy.txt: 7536) +.att.com/csct\.gif\? +# ||atracktive.collegehumor.com^ (easyprivacy.txt: 7535) +.atracktive.collegehumor.com +# ||atrack.art.com^ (easyprivacy.txt: 7534) +.atrack.art.com +# ||atrack.allposters.com^ (easyprivacy.txt: 7533) +.atrack.allposters.com +# ||atlas.astrology.com^ (easyprivacy.txt: 7532) +.atlas.astrology.com +# ||atlantis.com/_scripts/tsedge/pagemarker.gif? (easyprivacy.txt: 7531) +.atlantis.com/_scripts/tsedge/pagemarker\.gif\? +# ||atlantafalcons.com/wp-content/*/metrics.js (easyprivacy.txt: 7530) +.atlantafalcons.com/wp-content/.*/metrics\.js +# ||athena.mysmartprice.info^ (easyprivacy.txt: 7529) +.athena.mysmartprice.info +# ||atax.teamxbox.com^ (easyprivacy.txt: 7528) +.atax.teamxbox.com +# ||atax.ign.com^ (easyprivacy.txt: 7527) +.atax.ign.com +# ||atax.gamestats.com^ (easyprivacy.txt: 7526) +.atax.gamestats.com +# ||atax.gamespy.com^ (easyprivacy.txt: 7525) +.atax.gamespy.com +# ||atax.gamermetrics.com^ (easyprivacy.txt: 7524) +.atax.gamermetrics.com +# ||astrology.com/visits/ (easyprivacy.txt: 7523) +.astrology.com/visits/ +# ||associatedcontent.com/action_cookie (easyprivacy.txt: 7522) +.associatedcontent.com/action_cookie +# ||assets.olark.com^ (easyprivacy.txt: 7521) +.assets.olark.com +# ||askmen.com/tracking/ (easyprivacy.txt: 7520) +.askmen.com/tracking/ +# ||askamum.co.uk/Shared/js/tracking.js (easyprivacy.txt: 7519) +.askamum.co.uk/Shared/js/tracking\.js +# ||ask.com/servlets/ulog? (easyprivacy.txt: 7518) +.ask.com/servlets/ulog\? +# ||asianblast.com/statx/ (easyprivacy.txt: 7517) +.asianblast.com/statx/ +# ||ashleymadison.com/app/public/track.p? (easyprivacy.txt: 7516) +.ashleymadison.com/app/public/track\.p\? +# ||art.com/asp/UTERecording.asp (easyprivacy.txt: 7515) +.art.com/asp/UTERecording\.asp +# ||art.com/asp/robot/ (easyprivacy.txt: 7514) +.art.com/asp/robot/ +# ||art.co.uk/asp/robot/ (easyprivacy.txt: 7513) +.art.co.uk/asp/robot/ +# ||arstechnica.com^*/|$object (easyprivacy.txt: 7512) +.arstechnica.com/.*/$ +# ||arstechnica.com^*.gif?id= (easyprivacy.txt: 7511) +.arstechnica.com/.*\.gif\?id= +# ||arstechnica.com/|$object (easyprivacy.txt: 7510) +.arstechnica.com/$ +# ||arstechnica.com/services/incr.php?stats$xmlhttprequest (easyprivacy.txt: 7509) +.arstechnica.com/services/incr\.php\?stats +# ||arstechnica.com/dragons/breath.gif (easyprivacy.txt: 7508) +.arstechnica.com/dragons/breath\.gif +# ||arstechnica.com/*.ars$object (easyprivacy.txt: 7507) +.arstechnica.com/.*\.ars +# ||arstechnica.co.uk/services/incr.php?stats$xmlhttprequest (easyprivacy.txt: 7506) +.arstechnica.co.uk/services/incr\.php\?stats +# ||armystudyguide.com/hqxapi/it? (easyprivacy.txt: 7505) +.armystudyguide.com/hqxapi/it\? +# ||archive.org/static/js/analytics.js (easyprivacy.txt: 7504) +.archive.org/static/js/analytics\.js +# ||appspot.com/tracking/ (easyprivacy.txt: 7503) +.appspot.com/tracking/ +# ||applifier.com/users/tracking? (easyprivacy.txt: 7502) +.applifier.com/users/tracking\? +# ||applegate.co.uk/javascript/dcs/track.js (easyprivacy.txt: 7501) +.applegate.co.uk/javascript/dcs/track\.js +# ||apple.com^*/spacer2.gif? (easyprivacy.txt: 7500) +.apple.com/.*/spacer2\.gif\? +# ||apphit.com/js/count.js (easyprivacy.txt: 7499) +.apphit.com/js/count\.js +# ||api.tinypic.com/api.php?action=track (easyprivacy.txt: 7498) +.api.tinypic.com/api\.php\?action=track +# ||apartments.com^*/al.gif? (easyprivacy.txt: 7497) +.apartments.com/.*/al\.gif\? +# ||ap.org^*/webtrendsap_hosted.js (easyprivacy.txt: 7496) +.ap.org/.*/webtrendsap_hosted\.js +# ||ap.org^*/blank.gif? (easyprivacy.txt: 7495) +.ap.org/.*/blank\.gif\? +# ||aol.com/track/ (easyprivacy.txt: 7494) +.aol.com/track/ +# ||aol.com/metrics/ (easyprivacy.txt: 7493) +.aol.com/metrics/ +# ||aol.com/master/? (easyprivacy.txt: 7492) +.aol.com/master/\? +# ||aol.com/beacons/ (easyprivacy.txt: 7491) +.aol.com/beacons/ +# ||aol.com/articles/traffic/ (easyprivacy.txt: 7490) +.aol.com/articles/traffic/ +# ||aol.co.uk/track/ (easyprivacy.txt: 7489) +.aol.co.uk/track/ +# ||aol.ca/track/ (easyprivacy.txt: 7488) +.aol.ca/track/ +# ||any.gs/track/ (easyprivacy.txt: 7487) +.any.gs/track/ +# ||answers.com/resources/tac.html (easyprivacy.txt: 7486) +.answers.com/resources/tac\.html +# ||anp.se/track? (easyprivacy.txt: 7485) +.anp.se/track\? +# ||anntaylor.com/webassets/*/page_code.js (easyprivacy.txt: 7484) +.anntaylor.com/webassets/.*/page_code\.js +# ||angelfire.com/cgi-bin/count.cgi (easyprivacy.txt: 7483) +.angelfire.com/cgi-bin/count\.cgi +# ||androidfilehost.com/libs/otf/stats.otf.php? (easyprivacy.txt: 7482) +.androidfilehost.com/libs/otf/stats\.otf\.php\? +# ||androidcommunity.com/ws/?js (easyprivacy.txt: 7481) +.androidcommunity.com/ws/\?js +# ||analyzer52.fc2.com^ (easyprivacy.txt: 7480) +.analyzer52.fc2.com +# ||analyze.yahooapis.com^ (easyprivacy.txt: 7479) +.analyze.yahooapis.com +# ||analytics.yahoo.com^ (easyprivacy.txt: 7478) +.analytics.yahoo.com +# ||analytics.whatculture.com^ (easyprivacy.txt: 7477) +.analytics.whatculture.com +# ||analytics.wetpaint.me^ (easyprivacy.txt: 7476) +.analytics.wetpaint.me +# ||analytics.us.archive.org^ (easyprivacy.txt: 7475) +.analytics.us.archive.org +# ||analytics.upworthy.com^ (easyprivacy.txt: 7474) +.analytics.upworthy.com +# ||analytics.twitter.com^ (easyprivacy.txt: 7473) +.analytics.twitter.com +# ||analytics.thenest.com^ (easyprivacy.txt: 7472) +.analytics.thenest.com +# ||analytics.teespring.com^ (easyprivacy.txt: 7471) +.analytics.teespring.com +# ||analytics.services.distractify.com^ (easyprivacy.txt: 7470) +.analytics.services.distractify.com +# ||analytics.omgpop.com/log (easyprivacy.txt: 7469) +.analytics.omgpop.com/log +# ||analytics.newsinc.com^ (easyprivacy.txt: 7468) +.analytics.newsinc.com +# ||analytics.msnbc.msn.com^ (easyprivacy.txt: 7467) +.analytics.msnbc.msn.com +# ||analytics.mindjolt.com^ (easyprivacy.txt: 7466) +.analytics.mindjolt.com +# ||analytics.localytics.com^ (easyprivacy.txt: 7465) +.analytics.localytics.com +# ||analytics.ifood.tv^ (easyprivacy.txt: 7464) +.analytics.ifood.tv +# ||analytics.gorillanation.com^ (easyprivacy.txt: 7463) +.analytics.gorillanation.com +# ||analytics.go.com^ (easyprivacy.txt: 7462) +.analytics.go.com +# ||analytics.femalefirst.co.uk^ (easyprivacy.txt: 7461) +.analytics.femalefirst.co.uk +# ||analytics.bloomberg.com^ (easyprivacy.txt: 7460) +.analytics.bloomberg.com +# ||analytics.archive.org^ (easyprivacy.txt: 7459) +.analytics.archive.org +# ||analytics.adfreetime.com^ (easyprivacy.txt: 7458) +.analytics.adfreetime.com +# ||analytic.imlive.com^ (easyprivacy.txt: 7457) +.analytic.imlive.com +# ||analysis.focalprice.com^ (easyprivacy.txt: 7456) +.analysis.focalprice.com +# ||amy.gs/track/ (easyprivacy.txt: 7455) +.amy.gs/track/ +# ||amp.virginmedia.com^ (easyprivacy.txt: 7454) +.amp.virginmedia.com +# ||amd.com/us/as/vwo/vwo_ (easyprivacy.txt: 7453) +.amd.com/us/as/vwo/vwo_ +# ||amcnets.com/cgi-bin/true-ip.cgi (easyprivacy.txt: 7452) +.amcnets.com/cgi-bin/true-ip\.cgi +# ||amazonsupply.com/uedata? (easyprivacy.txt: 7451) +.amazonsupply.com/uedata\? +# ||amazonaws.com^*/pzyche.js (easyprivacy.txt: 7450) +.amazonaws.com/.*/pzyche\.js +# ||amazonaws.com/tracking.relead.js (easyprivacy.txt: 7449) +.amazonaws.com/tracking\.relead\.js +# ||amazonaws.com/beacon/vtpixpc.gif? (easyprivacy.txt: 7448) +.amazonaws.com/beacon/vtpixpc\.gif\? +# ||amazon.com^*/vap-metrics/ (easyprivacy.txt: 7447) +.amazon.com/.*/vap-metrics/ +# ||amazon.com^*/amazon-clicks/ (easyprivacy.txt: 7446) +.amazon.com/.*/amazon-clicks/ +# ||amazon.com/gp/yourstore/recs/ (easyprivacy.txt: 7445) +.amazon.com/gp/yourstore/recs/ +# ||amazon.com/gp/forum/email/tracking? (easyprivacy.txt: 7444) +.amazon.com/gp/forum/email/tracking\? +# ||amazon.com/clog/ (easyprivacy.txt: 7443) +.amazon.com/clog/ +# ||amazon.*/uedata/ (easyprivacy.txt: 7442) +.amazon.*./(.*/)?uedata/ +# ||alot.com/tb/cookiewriter.php? (easyprivacy.txt: 7441) +.alot.com/tb/cookiewriter\.php\? +# ||alot.com/js/tracking.js (easyprivacy.txt: 7440) +.alot.com/js/tracking\.js +# ||allvoices.com/track_page (easyprivacy.txt: 7439) +.allvoices.com/track_page +# ||allmovieportal.com/hostpagescript.js (easyprivacy.txt: 7438) +.allmovieportal.com/hostpagescript\.js +# ||allmodern.com^*/sessioned_reqs.asp? (easyprivacy.txt: 7437) +.allmodern.com/.*/sessioned_reqs\.asp\? +# ||alliance-leicester.co.uk/assets/jslib/sitetracker21.js (easyprivacy.txt: 7436) +.alliance-leicester.co.uk/assets/jslib/sitetracker21\.js +# ||allexperts.com/px/ (easyprivacy.txt: 7435) +.allexperts.com/px/ +# ||allcarpictures.com/stat/ (easyprivacy.txt: 7434) +.allcarpictures.com/stat/ +# ||allafrica.com^*/s_trans_nc.gif? (easyprivacy.txt: 7433) +.allafrica.com/.*/s_trans_nc\.gif\? +# ||allafrica.com^*/s_trans.gif? (easyprivacy.txt: 7432) +.allafrica.com/.*/s_trans\.gif\? +# ||allafrica.com^*/s-trans.gif? (easyprivacy.txt: 7431) +.allafrica.com/.*/s-trans\.gif\? +# ||allafrica.com/img/static/s_trans_nc.gif (easyprivacy.txt: 7430) +.allafrica.com/img/static/s_trans_nc\.gif +# ||alipay.com/web/bi.do?ref= (easyprivacy.txt: 7429) +.alipay.com/web/bi\.do\?ref= +# ||aliexpress.com/js/beacon_ (easyprivacy.txt: 7428) +.aliexpress.com/js/beacon_ +# ||alibi.com/tracker.gif? (easyprivacy.txt: 7427) +.alibi.com/tracker\.gif\? +# ||alibaba.com/js/beacon_ (easyprivacy.txt: 7426) +.alibaba.com/js/beacon_ +# ||alarabiya.net^*/googleid.js (easyprivacy.txt: 7425) +.alarabiya.net/.*/googleid\.js +# ||alarabiya.net/track_content_ (easyprivacy.txt: 7424) +.alarabiya.net/track_content_ +# ||akamaihd.net/pixelkabam/ (easyprivacy.txt: 7423) +.akamaihd.net/pixelkabam/ +# ||akamai.net^*/button.clickability.com/ (easyprivacy.txt: 7422) +.akamai.net/.*/button\.clickability\.com/ +# ||airspacemag.com/g/g/button/ (easyprivacy.txt: 7421) +.airspacemag.com/g/g/button/ +# ||airfrance.com/s/?tcs= (easyprivacy.txt: 7420) +.airfrance.com/s/\?tcs= +# ||agoda.net/js/abtest/analytics.js (easyprivacy.txt: 7419) +.agoda.net/js/abtest/analytics\.js +# ||agendize.com/analytics.js (easyprivacy.txt: 7418) +.agendize.com/analytics\.js +# ||afterdawn.com/views.cfm? (easyprivacy.txt: 7417) +.afterdawn.com/views\.cfm\? +# ||affiliates.treasureisland.com^ (easyprivacy.txt: 7416) +.affiliates.treasureisland.com +# ||affiliates.myfax.com^ (easyprivacy.txt: 7415) +.affiliates.myfax.com +# ||affiliates.mozy.com^ (easyprivacy.txt: 7414) +.affiliates.mozy.com +# ||affiliates.londonmarketing.com^ (easyprivacy.txt: 7413) +.affiliates.londonmarketing.com +# ||affiliates.genealogybank.com^ (easyprivacy.txt: 7412) +.affiliates.genealogybank.com +# ||affiliate.resellerclub.com^ (easyprivacy.txt: 7411) +.affiliate.resellerclub.com +# ||affiliate.productreview.com.au^ (easyprivacy.txt: 7410) +.affiliate.productreview.com.au +# ||affiliate.mercola.com^ (easyprivacy.txt: 7409) +.affiliate.mercola.com +# ||adwiretracker.fwix.com^ (easyprivacy.txt: 7407) +.adwiretracker.fwix.com +# ||advfn.com/space.gif? (easyprivacy.txt: 7406) +.advfn.com/space\.gif\? +# ||advancedtracker.appspot.com^ (easyprivacy.txt: 7405) +.advancedtracker.appspot.com +# ||advancedmp3players.co.uk/support/visitor/index.php? (easyprivacy.txt: 7404) +.advancedmp3players.co.uk/support/visitor/index\.php\? +# ||adv.drtuber.com^ (easyprivacy.txt: 7403) +.adv.drtuber.com +# ||adprimemedia.com^*/video_report/videoReport.php? (easyprivacy.txt: 7402) +.adprimemedia.com/.*/video_report/videoReport\.php\? +# ||adprimemedia.com^*/video_report/attemptAdReport.php? (easyprivacy.txt: 7401) +.adprimemedia.com/.*/video_report/attemptAdReport\.php\? +# ||adidas.com^*/analytics/ (easyprivacy.txt: 7400) +.adidas.com/.*/analytics/ +# ||adidas.com/analytics/ (easyprivacy.txt: 7399) +.adidas.com/analytics/ +# ||adguru.guruji.com^ (easyprivacy.txt: 7398) +.adguru.guruji.com +# ||adf.ly/omni*.swf (easyprivacy.txt: 7397) +.adf.ly/omni.*\.swf +# ||adapd.com/addon/upixel/ (easyprivacy.txt: 7396) +.adapd.com/addon/upixel/ +# ||ad2links.com/lpajax.php? (easyprivacy.txt: 7395) +.ad2links.com/lpajax\.php\? +# ||acura.ca/_Global/js/includes/tracker.js (easyprivacy.txt: 7394) +.acura.ca/_Global/js/includes/tracker\.js +# ||activity.homescape.com^ (easyprivacy.txt: 7393) +.activity.homescape.com +# ||activity.frequency.com^ (easyprivacy.txt: 7392) +.activity.frequency.com +# ||acronymfinder.com/~/st/af.js (easyprivacy.txt: 7391) +.acronymfinder.com/~/st/af\.js +# ||acookie.alibaba.com^ (easyprivacy.txt: 7390) +.acookie.alibaba.com +# ||aclu.org/aclu_statistics_image.php (easyprivacy.txt: 7389) +.aclu.org/aclu_statistics_image\.php +# ||aclst.com/ping.php? (easyprivacy.txt: 7388) +.aclst.com/ping\.php\? +# ||accuterm.com/data/stat.js (easyprivacy.txt: 7387) +.accuterm.com/data/stat\.js +# ||accuratefiles.com/stat (easyprivacy.txt: 7386) +.accuratefiles.com/stat +# ||accuradio.com/static/track/ (easyprivacy.txt: 7385) +.accuradio.com/static/track/ +# ||accountnow.com/SyslogWriter.ashx (easyprivacy.txt: 7384) +.accountnow.com/SyslogWriter\.ashx +# ||academia.edu/record_hit (easyprivacy.txt: 7383) +.academia.edu/record_hit +# ||about.me/wf/open? (easyprivacy.txt: 7382) +.about.me/wf/open\? +# ||abebooks.com/timer.gif? (easyprivacy.txt: 7381) +.abebooks.com/timer\.gif\? +# ||abc.net.au^*/stats/ (easyprivacy.txt: 7380) +.abc.net.au/.*/stats/ +# ||abc.net.au/counters/ (easyprivacy.txt: 7379) +.abc.net.au/counters/ +# ||a7.org/infol.php? (easyprivacy.txt: 7378) +.a7.org/infol\.php\? +# ||a.jango.com^ (easyprivacy.txt: 7377) +.a.jango.com +# ||a.huluad.com/beacons/ (easyprivacy.txt: 7376) +.a.huluad.com/beacons/ +# ||9msn.com.au^*.tracking.udc. (easyprivacy.txt: 7375) +.9msn.com.au/.*\.tracking\.udc\. +# ||9msn.com.au/share/com/js/fb_google_intercept.js (easyprivacy.txt: 7374) +.9msn.com.au/share/com/js/fb_google_intercept\.js +# ||79.125.21.168/i.gif? (easyprivacy.txt: 7372) +.79.125.21.168/i\.gif\? +# ||6waves.com/trker/ (easyprivacy.txt: 7371) +.6waves.com/trker/ +# ||5min.com/PSRs? (easyprivacy.txt: 7369) +.5min.com/PSRs\? +# ||5min.com/PSRq? (easyprivacy.txt: 7368) +.5min.com/PSRq\? +# ||4info.com/alert/listeners/ (easyprivacy.txt: 7366) +.4info.com/alert/listeners/ +# ||4hds.com/js/camstats.js (easyprivacy.txt: 7365) +.4hds.com/js/camstats\.js +# ||3dcartstores.com/3droi/monstertrack.asp (easyprivacy.txt: 7364) +.3dcartstores.com/3droi/monstertrack\.asp +# ||37signals.com/ga.js (easyprivacy.txt: 7363) +.37signals.com/ga\.js +# ||24hourfitness.com/includes/script/siteTracking.js (easyprivacy.txt: 7362) +.24hourfitness.com/includes/script/siteTracking\.js +# ||24caratleeds.co.uk/tr/laredoute/carat_laredoute_ (easyprivacy.txt: 7361) +.24caratleeds.co.uk/tr/laredoute/carat_laredoute_ +# ||1e400.net/tracking.js (easyprivacy.txt: 7359) +.1e400.net/tracking\.js +# ||192.com/log/ (easyprivacy.txt: 7357) +.192.com/log/ +# ||123rf.com/tk/ (easyprivacy.txt: 7356) +.123rf.com/tk/ +# ||123rf.com/j/ga.js (easyprivacy.txt: 7355) +.123rf.com/j/ga\.js +# ||123greetings.com/usr-bin/view_sent.pl? (easyprivacy.txt: 7354) +.123greetings.com/usr-bin/view_sent\.pl\? +# ||top.zp.ua/counter/ (easyprivacy.txt: 7349) +.top.zp.ua/counter/ +# ||mgz.com.ua/counter.php? (easyprivacy.txt: 7348) +.mgz.com.ua/counter\.php\? +# ||metalportal.com.ua/count.php? (easyprivacy.txt: 7347) +.metalportal.com.ua/count\.php\? +# ||counter.opinion.com.ua^ (easyprivacy.txt: 7346) +.counter.opinion.com.ua +# ||vizzit.se^$third-party (easyprivacy.txt: 7344) +.vizzit.se +# ||stats.dominoplaza.com^ (easyprivacy.txt: 7343) +.stats.dominoplaza.com +# ||counter.mtgnewmedia.se^ (easyprivacy.txt: 7342) +.counter.mtgnewmedia.se +# ||collector.schibsted.io^ (easyprivacy.txt: 7341) +.collector.schibsted.io +# ||cis.schibsted.com^ (easyprivacy.txt: 7340) +.cis.schibsted.com +# ||aftonbladet.se/blogportal/view/statistics?$third-party (easyprivacy.txt: 7339) +.aftonbladet.se/blogportal/view/statistics\? +# ||tracker.lgcontent.cl^ (easyprivacy.txt: 7337) +.tracker.lgcontent.cl +# ||track.bluecompany.cl^ (easyprivacy.txt: 7336) +.track.bluecompany.cl +# ||stats.miarroba.info^ (easyprivacy.txt: 7335) +.stats.miarroba.info +# ||stats.lnol.com.ar^ (easyprivacy.txt: 7334) +.stats.lnol.com.ar +# ||reachandrich.antevenio.com^ (easyprivacy.txt: 7333) +.reachandrich.antevenio.com +# ||maik.ff-bt.net^ (easyprivacy.txt: 7332) +.maik.ff-bt.net +# ||leadzu.com^$third-party (easyprivacy.txt: 7331) +.leadzu.com +# ||hits.eluniversal.com.mx^ (easyprivacy.txt: 7330) +.hits.eluniversal.com.mx +# ||epimg.net/js/vr/vrs. (easyprivacy.txt: 7329) +.epimg.net/js/vr/vrs\. +# ||contadores.miarroba.es^ (easyprivacy.txt: 7328) +.contadores.miarroba.es +# ||contadores.miarroba.com^ (easyprivacy.txt: 7327) +.contadores.miarroba.com +# ||interseek.si^*/visit.js (easyprivacy.txt: 7325) +.interseek.si/.*/visit\.js +# ||stat.ringier.sk^ (easyprivacy.txt: 7323) +.stat.ringier.sk +# ||events.ocdn.eu^ (easyprivacy.txt: 7321) +.events.ocdn.eu +# ||csr.onet.pl^ (easyprivacy.txt: 7320) +.csr.onet.pl +# ||clk.onet.pl^ (easyprivacy.txt: 7319) +.clk.onet.pl +# ||zahodi-ka.ru^*/schet.cgi? (easyprivacy.txt: 7317) +.zahodi-ka.ru/.*/schet\.cgi\? +# ||zahodi-ka.ru/ic/index_cnt.fcgi? (easyprivacy.txt: 7316) +.zahodi-ka.ru/ic/index_cnt\.fcgi\? +# ||yandex.ru/metrika/ (easyprivacy.txt: 7315) +.yandex.ru/metrika/ +# ||yandex.ru/cycounter? (easyprivacy.txt: 7314) +.yandex.ru/cycounter\? +# ||yandeg.ru/count/ (easyprivacy.txt: 7313) +.yandeg.ru/count/ +# ||xn--e1aaipcdgnfsn.su^*/counter.php (easyprivacy.txt: 7312) +.xn--e1aaipcdgnfsn.su/.*/counter\.php +# ||wmtools.ru/counter.php? (easyprivacy.txt: 7311) +.wmtools.ru/counter\.php\? +# ||webtrack.biz^$third-party (easyprivacy.txt: 7310) +.webtrack.biz +# ||wapson.ru/counter.php? (easyprivacy.txt: 7309) +.wapson.ru/counter\.php\? +# ||viewstat.promoblocks.ru^ (easyprivacy.txt: 7308) +.viewstat.promoblocks.ru +# ||uptolike.com/widgets/*/imp? (easyprivacy.txt: 7307) +.uptolike.com/widgets/.*/imp\? +# ||upstats.yadro.ru^ (easyprivacy.txt: 7306) +.upstats.yadro.ru +# ||ulogin.ru/js/stats.js (easyprivacy.txt: 7305) +.ulogin.ru/js/stats\.js +# ||traktor.ru^*/counter.php? (easyprivacy.txt: 7304) +.traktor.ru/.*/counter\.php\? +# ||track.rtb-media.ru^ (easyprivacy.txt: 7303) +.track.rtb-media.ru +# ||track.revolvermarketing.ru^ (easyprivacy.txt: 7302) +.track.revolvermarketing.ru +# ||top.sec.uz^ (easyprivacy.txt: 7301) +.top.sec.uz +# ||top.elec.ru^ (easyprivacy.txt: 7300) +.top.elec.ru +# ||top.bur-bur.ru^ (easyprivacy.txt: 7299) +.top.bur-bur.ru +# ||tbe.tom.ru^ (easyprivacy.txt: 7298) +.tbe.tom.ru +# ||target.smi2.net^ (easyprivacy.txt: 7297) +.target.smi2.net +# ||t.pusk.ru^ (easyprivacy.txt: 7296) +.t.pusk.ru +# ||stats.internet-yadro.com^ (easyprivacy.txt: 7295) +.stats.internet-yadro.com +# ||stat.tvigle.ru^ (easyprivacy.txt: 7294) +.stat.tvigle.ru +# ||stat.rum.cdnvideo.ru^ (easyprivacy.txt: 7293) +.stat.rum.cdnvideo.ru +# ||stat.radar.imgsmail.ru^ (easyprivacy.txt: 7292) +.stat.radar.imgsmail.ru +# ||stat-counter.tass-online.ru^ (easyprivacy.txt: 7291) +.stat-counter.tass-online.ru +# ||stat-22.medialand.ru^ (easyprivacy.txt: 7290) +.stat-22.medialand.ru +# ||stainlesssteel.ru/counter.php? (easyprivacy.txt: 7289) +.stainlesssteel.ru/counter\.php\? +# ||sishik.ru/counter.php? (easyprivacy.txt: 7288) +.sishik.ru/counter\.php\? +# ||service-stat.tbn.ru^ (easyprivacy.txt: 7287) +.service-stat.tbn.ru +# ||sepyra.com^$third-party (easyprivacy.txt: 7286) +.sepyra.com +# ||scounter.rambler.ru^ (easyprivacy.txt: 7285) +.scounter.rambler.ru +# ||scnt.rambler.ru^ (easyprivacy.txt: 7284) +.scnt.rambler.ru +# ||s.holm.ru/stat/ (easyprivacy.txt: 7283) +.s.holm.ru/stat/ +# ||s.agava.ru^ (easyprivacy.txt: 7282) +.s.agava.ru +# ||rustopweb.ru/cnt.php? (easyprivacy.txt: 7281) +.rustopweb.ru/cnt\.php\? +# ||recordvideo.me/1x1.png? (easyprivacy.txt: 7280) +.recordvideo.me/1x1\.png\? +# ||rbc.magna.ru^ (easyprivacy.txt: 7279) +.rbc.magna.ru +# ||rambler.ru/counter.js (easyprivacy.txt: 7278) +.rambler.ru/counter\.js +# ||properm.ru/top/counter_new.php? (easyprivacy.txt: 7277) +.properm.ru/top/counter_new\.php\? +# ||promworld.ru^*/counter.php? (easyprivacy.txt: 7276) +.promworld.ru/.*/counter\.php\? +# ||prompages.ru/top/ (easyprivacy.txt: 7275) +.prompages.ru/top/ +# ||pluso.ru/ping.php? (easyprivacy.txt: 7274) +.pluso.ru/ping\.php\? +# ||pluso.ru/counter.php? (easyprivacy.txt: 7273) +.pluso.ru/counter\.php\? +# ||penza-online.ru^*/userstats.pl? (easyprivacy.txt: 7272) +.penza-online.ru/.*/userstats\.pl\? +# ||optimizavr.ru/counter.php? (easyprivacy.txt: 7271) +.optimizavr.ru/counter\.php\? +# ||open.ua/stat/ (easyprivacy.txt: 7270) +.open.ua/stat/ +# ||onlines.su/counter.php? (easyprivacy.txt: 7269) +.onlines.su/counter\.php\? +# ||odessaaccommodations.com/counter.php (easyprivacy.txt: 7268) +.odessaaccommodations.com/counter\.php +# ||niknok.ru/count.asp? (easyprivacy.txt: 7267) +.niknok.ru/count\.asp\? +# ||myrealty.su/counter/ (easyprivacy.txt: 7266) +.myrealty.su/counter/ +# ||mymetal.ru/counter/ (easyprivacy.txt: 7265) +.mymetal.ru/counter/ +# ||mymed.su/counter/ (easyprivacy.txt: 7264) +.mymed.su/counter/ +# ||montblanc.rambler.ru^ (easyprivacy.txt: 7263) +.montblanc.rambler.ru +# ||mobtop.ru/c/$third-party (easyprivacy.txt: 7262) +.mobtop.ru/c/ +# ||metka.ru/counter/ (easyprivacy.txt: 7261) +.metka.ru/counter/ +# ||medorgs.ru/js/counterlog_img.js (easyprivacy.txt: 7260) +.medorgs.ru/js/counterlog_img\.js +# ||mediaplus.fm/cntr.php? (easyprivacy.txt: 7259) +.mediaplus.fm/cntr\.php\? +# ||linestudio.ru/counter/ (easyprivacy.txt: 7258) +.linestudio.ru/counter/ +# ||kvartirant.ru/counter.php? (easyprivacy.txt: 7257) +.kvartirant.ru/counter\.php\? +# ||karelia.info/counter/ (easyprivacy.txt: 7256) +.karelia.info/counter/ +# ||izhevskinfo.ru/count/ (easyprivacy.txt: 7255) +.izhevskinfo.ru/count/ +# ||inforotor.net/rotor/ (easyprivacy.txt: 7254) +.inforotor.net/rotor/ +# ||infopolit.com/counter/ (easyprivacy.txt: 7253) +.infopolit.com/counter/ +# ||ifolder.ru/stat/? (easyprivacy.txt: 7252) +.ifolder.ru/stat/\? +# ||hubrus.com^$third-party (easyprivacy.txt: 7251) +.hubrus.com +# ||gde.ru/isapi/tracker.dll? (easyprivacy.txt: 7250) +.gde.ru/isapi/tracker\.dll\? +# ||gainings.biz/counter.php? (easyprivacy.txt: 7249) +.gainings.biz/counter\.php\? +# ||emoment.net/cnt/ (easyprivacy.txt: 7248) +.emoment.net/cnt/ +# ||dp.ru/counter.gif? (easyprivacy.txt: 7247) +.dp.ru/counter\.gif\? +# ||counter.wapstart.ru^ (easyprivacy.txt: 7246) +.counter.wapstart.ru +# ||counter.tovarro.com^ (easyprivacy.txt: 7245) +.counter.tovarro.com +# ||counter.rian.ru^ (easyprivacy.txt: 7244) +.counter.rian.ru +# ||counter.pr-cy.ru^ (easyprivacy.txt: 7243) +.counter.pr-cy.ru +# ||counter.photopulse.ru^ (easyprivacy.txt: 7242) +.counter.photopulse.ru +# ||counter.nn.ru^ (easyprivacy.txt: 7241) +.counter.nn.ru +# ||counter.megaindex.ru^ (easyprivacy.txt: 7240) +.counter.megaindex.ru +# ||counter.amik.ru^ (easyprivacy.txt: 7239) +.counter.amik.ru +# ||count.yandeg.ru^ (easyprivacy.txt: 7238) +.count.yandeg.ru +# ||cnt.rate.ru^ (easyprivacy.txt: 7237) +.cnt.rate.ru +# ||cnt.rambler.ru^ (easyprivacy.txt: 7236) +.cnt.rambler.ru +# ||cnt.nov.ru^ (easyprivacy.txt: 7235) +.cnt.nov.ru +# ||cnt.logoslovo.ru^ (easyprivacy.txt: 7234) +.cnt.logoslovo.ru +# ||cnstats.cdev.eu^ (easyprivacy.txt: 7233) +.cnstats.cdev.eu +# ||climatecontrol.ru/counters/ (easyprivacy.txt: 7232) +.climatecontrol.ru/counters/ +# ||clck.yandex.ru^$~other (easyprivacy.txt: 7231) +.clck.yandex.ru +# ||c.bigmir.net^ (easyprivacy.txt: 7230) +.c.bigmir.net +# ||bs.yandex.ru^ (easyprivacy.txt: 7229) +.bs.yandex.ru +# ||bioraywaterrank.ru/count/ (easyprivacy.txt: 7228) +.bioraywaterrank.ru/count/ +# ||bigday.ru/counter.php? (easyprivacy.txt: 7227) +.bigday.ru/counter\.php\? +# ||awaps.yandex.ru^ (easyprivacy.txt: 7226) +.awaps.yandex.ru +# ||autoretro.com.ua/smtop/ (easyprivacy.txt: 7225) +.autoretro.com.ua/smtop/ +# ||anycent.com/analytics/ (easyprivacy.txt: 7224) +.anycent.com/analytics/ +# ||all-top.ru/cgi-bin/topcount.cgi? (easyprivacy.txt: 7223) +.all-top.ru/cgi-bin/topcount\.cgi\? +# ||agates.ru/counters/ (easyprivacy.txt: 7222) +.agates.ru/counters/ +# ||adlik.akavita.com/bin/lik? (easyprivacy.txt: 7221) +.adlik.akavita.com/bin/lik\? +# ||7host.ru/tr/*?r=$third-party (easyprivacy.txt: 7220) +.7host.ru/tr/.*\?r= +# ||1in.kz/counter? (easyprivacy.txt: 7219) +.1in.kz/counter\? +# ||top.skyzone.ro^ (easyprivacy.txt: 7217) +.top.skyzone.ro +# ||t5.ro/static/$third-party (easyprivacy.txt: 7216) +.t5.ro/static/ +# ||xl.pt/api/stats.ashx? (easyprivacy.txt: 7214) +.xl.pt/api/stats\.ashx\? +# ||webstats.sapo.pt^ (easyprivacy.txt: 7213) +.webstats.sapo.pt +# ||track.e7r.com.br^ (easyprivacy.txt: 7212) +.track.e7r.com.br +# ||terra.com.br/metrics/ (easyprivacy.txt: 7211) +.terra.com.br/metrics/ +# ||statig.com.br/pub/setCookie.js? (easyprivacy.txt: 7210) +.statig.com.br/pub/setCookie\.js\? +# ||lomadee.com/loc/$third-party (easyprivacy.txt: 7209) +.lomadee.com/loc/ +# ||jsuol.com/rm/clicklogger_ (easyprivacy.txt: 7208) +.jsuol.com/rm/clicklogger_ +# ||hitserver.ibope.com.br^ (easyprivacy.txt: 7207) +.hitserver.ibope.com.br +# ||contadorgratis.web-kit.org^ (easyprivacy.txt: 7206) +.contadorgratis.web-kit.org +# ||wymiana.org/stat/ (easyprivacy.txt: 7204) +.wymiana.org/stat/ +# ||tracking.novem.pl^ (easyprivacy.txt: 7203) +.tracking.novem.pl +# ||statystyki.panelek.com^ (easyprivacy.txt: 7202) +.statystyki.panelek.com +# ||stats.media.onet.pl^ (easyprivacy.txt: 7201) +.stats.media.onet.pl +# ||stats.asp24.pl^ (easyprivacy.txt: 7200) +.stats.asp24.pl +# ||liczniki.org/hit.php (easyprivacy.txt: 7199) +.liczniki.org/hit\.php +# ||cafenews.pl/mpl/static/static.js? (easyprivacy.txt: 7198) +.cafenews.pl/mpl/static/static\.js\? +# ||webhit.snd.no^ (easyprivacy.txt: 7196) +.webhit.snd.no +# ||engage-cdn.schibsted.media^ (easyprivacy.txt: 7195) +.engage-cdn.schibsted.media +# ||top.dkd.lt^$third-party (easyprivacy.txt: 7193) +.top.dkd.lt +# ||top.dating.lt^$third-party (easyprivacy.txt: 7192) +.top.dating.lt +# ||top.chebra.lt^$third-party (easyprivacy.txt: 7191) +.top.chebra.lt +# ||hits.sys.lv^ (easyprivacy.txt: 7189) +.hits.sys.lv +# ||counter.hackers.lv^ (easyprivacy.txt: 7188) +.counter.hackers.lv +# ||naver.net/wcslog.js (easyprivacy.txt: 7186) +.naver.net/wcslog\.js +# ||cafe24.com/weblog.js (easyprivacy.txt: 7185) +.cafe24.com/weblog\.js +# ||yahoo.co.jp/js/s_retargeting.js (easyprivacy.txt: 7182) +.yahoo.co.jp/js/s_retargeting\.js +# ||yahoo.co.jp/js/retargeting.js (easyprivacy.txt: 7181) +.yahoo.co.jp/js/retargeting\.js +# ||yahoo-search.jp/img/bcn.gif? (easyprivacy.txt: 7180) +.yahoo-search.jp/img/bcn\.gif\? +# ||webtracker.jp^$third-party (easyprivacy.txt: 7179) +.webtracker.jp +# ||userdive.com^$third-party (easyprivacy.txt: 7178) +.userdive.com +# ||trck.dlpo.jp^ (easyprivacy.txt: 7177) +.trck.dlpo.jp +# ||seesaa.jp/ot_square.pl? (easyprivacy.txt: 7176) +.seesaa.jp/ot_square\.pl\? +# ||rd.rakuten.co.jp^ (easyprivacy.txt: 7175) +.rd.rakuten.co.jp +# ||otoshiana.com/ufo/ (easyprivacy.txt: 7174) +.otoshiana.com/ufo/ +# ||mofa.go.jp^*/count.cgi? (easyprivacy.txt: 7173) +.mofa.go.jp/.*/count\.cgi\? +# ||lcs.livedoor.net^ (easyprivacy.txt: 7172) +.lcs.livedoor.net +# ||l.popin.cc^ (easyprivacy.txt: 7171) +.l.popin.cc +# ||imgstat.ameba.jp^$third-party (easyprivacy.txt: 7170) +.imgstat.ameba.jp +# ||counter2.blog.livedoor.com^ (easyprivacy.txt: 7169) +.counter2.blog.livedoor.com +# ||clickanalyzer.jp^$third-party (easyprivacy.txt: 7168) +.clickanalyzer.jp +# ||analyzer51.fc2.com^ (easyprivacy.txt: 7167) +.analyzer51.fc2.com +# ||analysis.shinobi.jp^ (easyprivacy.txt: 7166) +.analysis.shinobi.jp +# ||wmtools.it/wmtcounter.php? (easyprivacy.txt: 7163) +.wmtools.it/wmtcounter\.php\? +# ||websolutions.it/statistiche/ (easyprivacy.txt: 7162) +.websolutions.it/statistiche/ +# ||webbificio.com/wm.asp? (easyprivacy.txt: 7161) +.webbificio.com/wm\.asp\? +# ||webbificio.com/add.asp? (easyprivacy.txt: 7160) +.webbificio.com/add\.asp\? +# ||ts.blogo.it^ (easyprivacy.txt: 7159) +.ts.blogo.it +# ||tracy.sadv.dadapro.com^ (easyprivacy.txt: 7158) +.tracy.sadv.dadapro.com +# ||tracks.arubamediamarketing.it^ (easyprivacy.txt: 7157) +.tracks.arubamediamarketing.it +# ||tracking.conversionlab.it^ (easyprivacy.txt: 7156) +.tracking.conversionlab.it +# ||tracking.conversion-lab.it^ (easyprivacy.txt: 7155) +.tracking.conversion-lab.it +# ||tracker.bestshopping.com^ (easyprivacy.txt: 7154) +.tracker.bestshopping.com +# ||track.youniversalmedia.com^ (easyprivacy.txt: 7153) +.track.youniversalmedia.com +# ||track.adintend.com^ (easyprivacy.txt: 7152) +.track.adintend.com +# ||tr.bt.matrixspa.it^ (easyprivacy.txt: 7151) +.tr.bt.matrixspa.it +# ||top100.tuttoperinternet.it^ (easyprivacy.txt: 7150) +.top100.tuttoperinternet.it +# ||top100.mrwebmaster.it^ (easyprivacy.txt: 7149) +.top100.mrwebmaster.it +# ||stats2.*.fdnames.com^ (easyprivacy.txt: 7148) +.stats2.*./.*\.fdnames\.com[^\w%.-] +.stats2.*.fdnames.com +# ||stats.technopia.it^ (easyprivacy.txt: 7147) +.stats.technopia.it +# ||stats.rcsobjects.it^ (easyprivacy.txt: 7146) +.stats.rcsobjects.it +# ||stats.itsol.it^ (easyprivacy.txt: 7145) +.stats.itsol.it +# ||stat.webtool.it^ (easyprivacy.txt: 7144) +.stat.webtool.it +# ||stat.freetool.it^ (easyprivacy.txt: 7143) +.stat.freetool.it +# ||stat.acca.it^ (easyprivacy.txt: 7142) +.stat.acca.it +# ||shinystat.lvlar.com^ (easyprivacy.txt: 7141) +.shinystat.lvlar.com +# ||sembox.it/js/sembox-tracking.js (easyprivacy.txt: 7140) +.sembox.it/js/sembox-tracking\.js +# ||rd.alice.it^ (easyprivacy.txt: 7139) +.rd.alice.it +# ||rcsmetrics.it^ (easyprivacy.txt: 7138) +.rcsmetrics.it +# ||quinet.it/counter/ (easyprivacy.txt: 7137) +.quinet.it/counter/ +# ||plug.it^*/tracking_ (easyprivacy.txt: 7136) +.plug.it/.*/tracking_ +# ||plug.it/tracks/ (easyprivacy.txt: 7135) +.plug.it/tracks/ +# ||noicattolici.it/x_visite/ (easyprivacy.txt: 7134) +.noicattolici.it/x_visite/ +# ||net-parade.it/tracker/ (easyprivacy.txt: 7133) +.net-parade.it/tracker/ +# ||nanostats.nanopress.it^ (easyprivacy.txt: 7132) +.nanostats.nanopress.it +# ||nanopress.it/lab.js (easyprivacy.txt: 7131) +.nanopress.it/lab\.js +# ||mytictac.com^*/pointeur.gif? (easyprivacy.txt: 7130) +.mytictac.com/.*/pointeur\.gif\? +# ||mrwebmaster.it/work/stats.php? (easyprivacy.txt: 7129) +.mrwebmaster.it/work/stats\.php\? +# ||mibatech.com/track/ (easyprivacy.txt: 7128) +.mibatech.com/track/ +# ||log.superweb.ws^ (easyprivacy.txt: 7127) +.log.superweb.ws +# ||livestats.matrix.it^ (easyprivacy.txt: 7126) +.livestats.matrix.it +# ||httdev.it/e/c? (easyprivacy.txt: 7125) +.httdev.it/e/c\? +# ||glomera.com/stats (easyprivacy.txt: 7124) +.glomera.com/stats +# ||gazzettaobjects.it^*/tracking/ (easyprivacy.txt: 7123) +.gazzettaobjects.it/.*/tracking/ +# ||fcstats.altervista.org^$third-party (easyprivacy.txt: 7122) +.fcstats.altervista.org +# ||evnt.iol.it^ (easyprivacy.txt: 7121) +.evnt.iol.it +# ||eageweb.com/stats.php (easyprivacy.txt: 7120) +.eageweb.com/stats\.php +# ||eageweb.com/count2.php? (easyprivacy.txt: 7119) +.eageweb.com/count2\.php\? +# ||eageweb.com/count.php? (easyprivacy.txt: 7118) +.eageweb.com/count\.php\? +# ||eage.it/count2.php? (easyprivacy.txt: 7117) +.eage.it/count2\.php\? +# ||diritalia.com^*/seosensor.js (easyprivacy.txt: 7116) +.diritalia.com/.*/seosensor\.js +# ||digiland.it/count.cgi? (easyprivacy.txt: 7115) +.digiland.it/count\.cgi\? +# ||dd3p.com/sensor/ddsense.aspx? (easyprivacy.txt: 7114) +.dd3p.com/sensor/ddsense\.aspx\? +# ||counter.ksm.it^ (easyprivacy.txt: 7113) +.counter.ksm.it +# ||corriereobjects.it^*/tracking/ (easyprivacy.txt: 7112) +.corriereobjects.it/.*/tracking/ +# ||contatore-di-visite.campusanuncios.com^ (easyprivacy.txt: 7111) +.contatore-di-visite.campusanuncios.com +# ||click.kataweb.it^ (easyprivacy.txt: 7110) +.click.kataweb.it +# ||bstracker.blogspirit.net^ (easyprivacy.txt: 7109) +.bstracker.blogspirit.net +# ||audienceserver.aws.forebase.com^ (easyprivacy.txt: 7108) +.audienceserver.aws.forebase.com +# ||aruba.it/servlet/counterserver? (easyprivacy.txt: 7107) +.aruba.it/servlet/counterserver\? +# ||analytics.linkwelove.com^ (easyprivacy.txt: 7106) +.analytics.linkwelove.com +# ||analytics.digitouch.it^ (easyprivacy.txt: 7105) +.analytics.digitouch.it +# ||alice.it/cnt/ (easyprivacy.txt: 7104) +.alice.it/cnt/ +# ||91.196.216.64^ (easyprivacy.txt: 7103) +.91.196.216.64 +# ||4me.it^*/incrementVisits_get? (easyprivacy.txt: 7102) +.4me.it/.*/incrementVisits_get\? +# ||videostat.index.hu^ (easyprivacy.txt: 7100) +.videostat.index.hu +# ||videostat-new.index.hu^ (easyprivacy.txt: 7099) +.videostat-new.index.hu +# ||pagerank.g-easy.hu^ (easyprivacy.txt: 7098) +.pagerank.g-easy.hu +# ||gpr.hu/pr.pr? (easyprivacy.txt: 7097) +.gpr.hu/pr\.pr\? +# ||walla.co.il/stats/ (easyprivacy.txt: 7095) +.walla.co.il/stats/ +# ||stats.e-go.gr^ (easyprivacy.txt: 7093) +.stats.e-go.gr +# ||analyticsv2.dol.gr^ (easyprivacy.txt: 7092) +.analyticsv2.dol.gr +# ||analytics.dol.gr^ (easyprivacy.txt: 7091) +.analytics.dol.gr +# ||links.boom.ge^ (easyprivacy.txt: 7089) +.links.boom.ge +# ||counter.top.ge^$third-party (easyprivacy.txt: 7088) +.counter.top.ge +# ||sestatic.fi^*/zig.js (easyprivacy.txt: 7086) +.sestatic.fi/.*/zig\.js +# ||inpref.s3.amazonaws.com^$third-party (easyprivacy.txt: 7085) +.inpref.s3.amazonaws.com +# ||log.ee/count.php? (easyprivacy.txt: 7083) +.log.ee/count\.php\? +# ||counter.zone.ee^$third-party (easyprivacy.txt: 7082) +.counter.zone.ee +# ||statistics.rbi-nl.com^ (easyprivacy.txt: 7080) +.statistics.rbi-nl.com +# ||marktplaats.net/cnt/ (easyprivacy.txt: 7079) +.marktplaats.net/cnt/ +# ||hottraffic.nl^$third-party (easyprivacy.txt: 7078) +.hottraffic.nl +# ||cookies.reedbusiness.nl^ (easyprivacy.txt: 7077) +.cookies.reedbusiness.nl +# ||c.pebblemedia.be^ (easyprivacy.txt: 7076) +.c.pebblemedia.be +# ||bbvms.com/zone/js/zonestats.js (easyprivacy.txt: 7075) +.bbvms.com/zone/js/zonestats\.js +# ||analytics.belgacom.be^ (easyprivacy.txt: 7074) +.analytics.belgacom.be +# ||wwwportal.dk/statistik.php (easyprivacy.txt: 7071) +.wwwportal.dk/statistik\.php +# ||wee.dk/modules/$third-party (easyprivacy.txt: 7070) +.wee.dk/modules/ +# ||ubt.berlingskemedia.net^ (easyprivacy.txt: 7069) +.ubt.berlingskemedia.net +# ||newbie.dk^*/counter.php? (easyprivacy.txt: 7068) +.newbie.dk/.*/counter\.php\? +# ||newbie.dk/topref.php? (easyprivacy.txt: 7067) +.newbie.dk/topref\.php\? +# ||counter.nope.dk^$third-party (easyprivacy.txt: 7066) +.counter.nope.dk +# ||blogtoppen.dk^*/bt_tracker.js (easyprivacy.txt: 7065) +.blogtoppen.dk/.*/bt_tracker\.js +# ||t.leady.cz^ (easyprivacy.txt: 7063) +.t.leady.cz +# ||stats.mf.cz^ (easyprivacy.txt: 7062) +.stats.mf.cz +# ||stat.ringier.cz^$third-party (easyprivacy.txt: 7061) +.stat.ringier.cz +# ||log.idnes.cz^ (easyprivacy.txt: 7060) +.log.idnes.cz +# ||h.imedia.cz^ (easyprivacy.txt: 7059) +.h.imedia.cz +# ||counter.cnw.cz^ (easyprivacy.txt: 7058) +.counter.cnw.cz +# ||tracking.vid4u.org^ (easyprivacy.txt: 7056) +.tracking.vid4u.org +# ||yigouw.com/c.js (easyprivacy.txt: 7054) +.yigouw.com/c\.js +# ||v.emedia.cn^ (easyprivacy.txt: 7053) +.v.emedia.cn +# ||traffic.bokecc.com^ (easyprivacy.txt: 7052) +.traffic.bokecc.com +# ||tracking.cat898.com^ (easyprivacy.txt: 7051) +.tracking.cat898.com +# ||track.ra.icast.cn^ (easyprivacy.txt: 7050) +.track.ra.icast.cn +# ||toruk.tanx.com^ (easyprivacy.txt: 7049) +.toruk.tanx.com +# ||tns.simba.taobao.com^ (easyprivacy.txt: 7048) +.tns.simba.taobao.com +# ||tanx.com/t/tanxcollect.js (easyprivacy.txt: 7047) +.tanx.com/t/tanxcollect\.js +# ||tanx.com/t/tanxclick.js (easyprivacy.txt: 7046) +.tanx.com/t/tanxclick\.js +# ||t.hypers.com.cn^ (easyprivacy.txt: 7045) +.t.hypers.com.cn +# ||stat.ws.126.net^ (easyprivacy.txt: 7044) +.stat.ws.126.net +# ||sohu.com/pvpb.gif? (easyprivacy.txt: 7043) +.sohu.com/pvpb\.gif\? +# ||sobeycloud.com/Services/Stat. (easyprivacy.txt: 7042) +.sobeycloud.com/Services/Stat\. +# ||sitemaji.com/nownews.php? (easyprivacy.txt: 7041) +.sitemaji.com/nownews\.php\? +# ||r.sax.sina.com.cn^ (easyprivacy.txt: 7040) +.r.sax.sina.com.cn +# ||pos.baidu.com^ (easyprivacy.txt: 7039) +.pos.baidu.com +# ||n.yunshipei.com^ (easyprivacy.txt: 7038) +.n.yunshipei.com +# ||mlt01.com/cmp.htm$third-party (easyprivacy.txt: 7037) +.mlt01.com/cmp\.htm +# ||look.urs.tw^$third-party (easyprivacy.txt: 7036) +.look.urs.tw +# ||log.v.iask.com^ (easyprivacy.txt: 7035) +.log.v.iask.com +# ||log.hiiir.com^ (easyprivacy.txt: 7034) +.log.hiiir.com +# ||js.static.m1905.cn/pingd.js (easyprivacy.txt: 7033) +.js.static.m1905.cn/pingd\.js +# ||js.letvcdn.com/js/*/stats/ (easyprivacy.txt: 7032) +.js.letvcdn.com/js/.*/stats/ +# ||ifengimg.com/sta_collection.*.js (easyprivacy.txt: 7031) +.ifengimg.com/sta_collection\..*\.js +# ||haostat.qihoo.com^ (easyprivacy.txt: 7030) +.haostat.qihoo.com +# ||etwun.com:8080/counter.php? (easyprivacy.txt: 7029) +.etwun.com:8080/counter\.php\? +# ||dw.cbsi.com.cn^$third-party (easyprivacy.txt: 7028) +.dw.cbsi.com.cn +# ||css.aliyun.com^$third-party (easyprivacy.txt: 7027) +.css.aliyun.com +# ||csdn.net^*/counter.js (easyprivacy.txt: 7026) +.csdn.net/.*/counter\.js +# ||csbew.com^$third-party (easyprivacy.txt: 7025) +.csbew.com +# ||cri.cn/js/a1.js (easyprivacy.txt: 7024) +.cri.cn/js/a1\.js +# ||counter.csdn.net^$script (easyprivacy.txt: 7023) +.counter.csdn.net +# ||cnzz.com/c.php? (easyprivacy.txt: 7022) +.cnzz.com/c\.php\? +# ||cms.grandcloud.cn^$third-party (easyprivacy.txt: 7021) +.cms.grandcloud.cn +# ||click.bokecc.com^ (easyprivacy.txt: 7020) +.click.bokecc.com +# ||changyan.sohu.com/stat/ (easyprivacy.txt: 7019) +.changyan.sohu.com/stat/ +# ||cdnmaster.com/sitemaster/sm360.js (easyprivacy.txt: 7018) +.cdnmaster.com/sitemaster/sm360\.js +# ||cdn.hiido.cn^$third-party (easyprivacy.txt: 7017) +.cdn.hiido.cn +# ||cbsi.com.cn/js/dw.js (easyprivacy.txt: 7016) +.cbsi.com.cn/js/dw\.js +# ||bzclk.baidu.com^ (easyprivacy.txt: 7015) +.bzclk.baidu.com +# ||bokecc.com/flash/timerecorder? (easyprivacy.txt: 7014) +.bokecc.com/flash/timerecorder\? +# ||bokecc.com/flash/playlog? (easyprivacy.txt: 7013) +.bokecc.com/flash/playlog\? +# ||beacon.sina.com.cn^ (easyprivacy.txt: 7012) +.beacon.sina.com.cn +# ||baidu.com/js/o.js (easyprivacy.txt: 7011) +.baidu.com/js/o\.js +# ||baidu.com/js/m.js (easyprivacy.txt: 7010) +.baidu.com/js/m\.js +# ||baidu.com/hm.gif? (easyprivacy.txt: 7009) +.baidu.com/hm\.gif\? +# ||baidu.com/h.js? (easyprivacy.txt: 7008) +.baidu.com/h\.js\? +# ||baidu.com/cpro/ui/f.js (easyprivacy.txt: 7007) +.baidu.com/cpro/ui/f\.js +# ||baidu.com/cpro/ui/c.js (easyprivacy.txt: 7006) +.baidu.com/cpro/ui/c\.js +# ||analytics.21cn.com^ (easyprivacy.txt: 7005) +.analytics.21cn.com +# ||alipay.com/common/um/lsa.swf (easyprivacy.txt: 7004) +.alipay.com/common/um/lsa\.swf +# ||alimama.cn/inf.js (easyprivacy.txt: 7003) +.alimama.cn/inf\.js +# ||360.cn/mapping_service? (easyprivacy.txt: 7002) +.360.cn/mapping_service\? +# ||aff*.kolektiva.net^ (easyprivacy.txt: 7000) +.aff*./.*\.kolektiva\.net[^\w%.-] +.aff*.kolektiva.net +# ||minsk-in.net/counter.php? (easyprivacy.txt: 6998) +.minsk-in.net/counter\.php\? +# ||zebestof.com^$third-party (easyprivacy.txt: 6996) +.zebestof.com +# ||woopic.com/Magic/o_vr.js (easyprivacy.txt: 6995) +.woopic.com/Magic/o_vr\.js +# ||wifeo.com/compteurs/$third-party (easyprivacy.txt: 6994) +.wifeo.com/compteurs/ +# ||webtutoriaux.com/services/compteur-visiteurs/index.php?$third-party (easyprivacy.txt: 6993) +.webtutoriaux.com/services/compteur-visiteurs/index\.php\? +# ||webreseau.com/impression.asp? (easyprivacy.txt: 6992) +.webreseau.com/impression\.asp\? +# ||veoxa.com/get_trackingcode. (easyprivacy.txt: 6991) +.veoxa.com/get_trackingcode\. +# ||tsphone.biz/pixelvoleur.jpg? (easyprivacy.txt: 6990) +.tsphone.biz/pixelvoleur\.jpg\? +# ||trk.adbutter.net^ (easyprivacy.txt: 6989) +.trk.adbutter.net +# ||tracking.veille-referencement.com^ (easyprivacy.txt: 6988) +.tracking.veille-referencement.com +# ||tracking.netvigie.com^ (easyprivacy.txt: 6987) +.tracking.netvigie.com +# ||tracking.ecookie.fr^ (easyprivacy.txt: 6986) +.tracking.ecookie.fr +# ||track.byzon.swelen.net^$third-party (easyprivacy.txt: 6985) +.track.byzon.swelen.net +# ||tr.cloud-media.fr^ (easyprivacy.txt: 6984) +.tr.cloud-media.fr +# ||t.planvip.fr^$third-party (easyprivacy.txt: 6983) +.t.planvip.fr +# ||stats.buzzea.com^ (easyprivacy.txt: 6982) +.stats.buzzea.com +# ||stat.prsmedia.fr^ (easyprivacy.txt: 6981) +.stat.prsmedia.fr +# ||service-webmaster.fr/cpt-visites/$third-party (easyprivacy.txt: 6980) +.service-webmaster.fr/cpt-visites/ +# ||scriptsgratuits.com/sg/stats/ (easyprivacy.txt: 6979) +.scriptsgratuits.com/sg/stats/ +# ||piximedia.com^$third-party (easyprivacy.txt: 6978) +.piximedia.com +# ||pagesjaunes.fr/stat/ (easyprivacy.txt: 6977) +.pagesjaunes.fr/stat/ +# ||nws.naltis.com^ (easyprivacy.txt: 6976) +.nws.naltis.com +# ||nvc.n1bus-exp.com^ (easyprivacy.txt: 6975) +.nvc.n1bus-exp.com +# ||neteventsmedia.be/hit.cfm? (easyprivacy.txt: 6974) +.neteventsmedia.be/hit\.cfm\? +# ||makazi.com/tracker- (easyprivacy.txt: 6973) +.makazi.com/tracker- +# ||m6web.fr/statsd/ (easyprivacy.txt: 6972) +.m6web.fr/statsd/ +# ||live-medias.net/button.php?$third-party (easyprivacy.txt: 6971) +.live-medias.net/button\.php\? +# ||linguee.fr/white_pixel.gif (easyprivacy.txt: 6970) +.linguee.fr/white_pixel\.gif +# ||i-services.net^*/compteur.php? (easyprivacy.txt: 6969) +.i-services.net/.*/compteur\.php\? +# ||free.fr/services/compteur_page.php? (easyprivacy.txt: 6968) +.free.fr/services/compteur_page\.php\? +# ||free.fr/cgi-bin/wwwcount.cgi? (easyprivacy.txt: 6967) +.free.fr/cgi-bin/wwwcount\.cgi\? +# ||email-reflex.com^$third-party (easyprivacy.txt: 6966) +.email-reflex.com +# ||e.funnymel.com^$third-party (easyprivacy.txt: 6965) +.e.funnymel.com +# ||e-pagerank.fr/bouton.gif?$third-party (easyprivacy.txt: 6964) +.e-pagerank.fr/bouton\.gif\? +# ||devtribu.fr/t.php? (easyprivacy.txt: 6963) +.devtribu.fr/t\.php\? +# ||da-kolkoz.com/da-top/track/ (easyprivacy.txt: 6962) +.da-kolkoz.com/da-top/track/ +# ||cdn-analytics.ladmedia.fr^ (easyprivacy.txt: 6961) +.cdn-analytics.ladmedia.fr +# ||calotag.com^$third-party (easyprivacy.txt: 6960) +.calotag.com +# ||btstats.devtribu.fr^ (easyprivacy.txt: 6959) +.btstats.devtribu.fr +# ||blogrankings.com/img_$third-party (easyprivacy.txt: 6958) +.blogrankings.com/img_ +# ||blogoutils.com/online-$third-party (easyprivacy.txt: 6957) +.blogoutils.com/online- +# ||bbtrack.net^$third-party (easyprivacy.txt: 6956) +.bbtrack.net +# ||analytics.ladmedia.fr^ (easyprivacy.txt: 6955) +.analytics.ladmedia.fr +# ||analytics.freespee.com^ (easyprivacy.txt: 6954) +.analytics.freespee.com +# ||affiliation.planethoster.info^$third-party (easyprivacy.txt: 6953) +.affiliation.planethoster.info +# ||abs.proxistore.com^ (easyprivacy.txt: 6952) +.abs.proxistore.com +# ||01net.com/track/ (easyprivacy.txt: 6951) +.01net.com/track/ +# ||shofonline.org/javashofnet/ti.js (easyprivacy.txt: 6949) +.shofonline.org/javashofnet/ti\.js +# ||analytics.traidnt.net^ (easyprivacy.txt: 6948) +.analytics.traidnt.net +# ||zs.dhl.de^ (easyprivacy.txt: 6946) +.zs.dhl.de +# ||xnewsletter.de/count/counter.php? (easyprivacy.txt: 6945) +.xnewsletter.de/count/counter\.php\? +# ||x.bloggurat.net^ (easyprivacy.txt: 6944) +.x.bloggurat.net +# ||wrmwb.7val.com^ (easyprivacy.txt: 6943) +.wrmwb.7val.com +# ||wieistmeineip.de/ip-address/$third-party (easyprivacy.txt: 6942) +.wieistmeineip.de/ip-address/ +# ||webstatistik.odav.de^$third-party (easyprivacy.txt: 6941) +.webstatistik.odav.de +# ||webcounter.goweb.de^ (easyprivacy.txt: 6940) +.webcounter.goweb.de +# ||vtrtl.de^ (easyprivacy.txt: 6939) +.vtrtl.de +# ||verticalnetwork.de/scripts/*/immer_oben.js (easyprivacy.txt: 6938) +.verticalnetwork.de/scripts/.*/immer_oben\.js +# ||vertical-n.de/scripts/*/immer_oben.js (easyprivacy.txt: 6937) +.vertical-n.de/scripts/.*/immer_oben\.js +# ||veeseo.com^*/view/$image (easyprivacy.txt: 6936) +.veeseo.com/.*/view/ +# ||veeseo.com^*/url.gif? (easyprivacy.txt: 6935) +.veeseo.com/.*/url\.gif\? +# ||uni-leipzig.de^*/stats/ (easyprivacy.txt: 6934) +.uni-leipzig.de/.*/stats/ +# ||uni-duesseldorf.de/cgi-bin/nph-count? (easyprivacy.txt: 6933) +.uni-duesseldorf.de/cgi-bin/nph-count\? +# ||trck.spoteffects.net^ (easyprivacy.txt: 6932) +.trck.spoteffects.net +# ||traffic.brand-wall.net^ (easyprivacy.txt: 6931) +.traffic.brand-wall.net +# ||tracking.srv2.de^ (easyprivacy.txt: 6930) +.tracking.srv2.de +# ||tracking.sim-technik.de^ (easyprivacy.txt: 6929) +.tracking.sim-technik.de +# ||tracking.s24.com^ (easyprivacy.txt: 6928) +.tracking.s24.com +# ||tracking.rtl.de^ (easyprivacy.txt: 6927) +.tracking.rtl.de +# ||tracking.rce.veeseo.com^ (easyprivacy.txt: 6926) +.tracking.rce.veeseo.com +# ||tracking.promiflash.de^ (easyprivacy.txt: 6925) +.tracking.promiflash.de +# ||tracking.netzathleten-media.de^ (easyprivacy.txt: 6924) +.tracking.netzathleten-media.de +# ||tracking.mvsuite.de^ (easyprivacy.txt: 6923) +.tracking.mvsuite.de +# ||tracking.mindshare.de^ (easyprivacy.txt: 6922) +.tracking.mindshare.de +# ||tracking.ladies.de^ (easyprivacy.txt: 6921) +.tracking.ladies.de +# ||tracking.hi-pi.com^ (easyprivacy.txt: 6920) +.tracking.hi-pi.com +# ||tracking.hannoversche.de^ (easyprivacy.txt: 6919) +.tracking.hannoversche.de +# ||tracking.gameforge.de^ (easyprivacy.txt: 6918) +.tracking.gameforge.de +# ||tracking.ddd.de^ (easyprivacy.txt: 6917) +.tracking.ddd.de +# ||tracking.base.de^ (easyprivacy.txt: 6916) +.tracking.base.de +# ||tracking-rce.veeseo.com^ (easyprivacy.txt: 6915) +.tracking-rce.veeseo.com +# ||tracker.winload.de^ (easyprivacy.txt: 6914) +.tracker.winload.de +# ||tracker.netdisk.de^ (easyprivacy.txt: 6913) +.tracker.netdisk.de +# ||tracker.euroweb.net^ (easyprivacy.txt: 6912) +.tracker.euroweb.net +# ||track2.mycliplister.com^ (easyprivacy.txt: 6911) +.track2.mycliplister.com +# ||track2.dulingo.com^ (easyprivacy.txt: 6910) +.track2.dulingo.com +# ||top50-solar.de/solarcount/ (easyprivacy.txt: 6909) +.top50-solar.de/solarcount/ +# ||teleboy.ch/misc/tracker/track.php?id= (easyprivacy.txt: 6908) +.teleboy.ch/misc/tracker/track\.php\?id= +# ||strongvpn.com/aff/ (easyprivacy.txt: 6907) +.strongvpn.com/aff/ +# ||stilanzeigen.net/track/ (easyprivacy.txt: 6906) +.stilanzeigen.net/track/ +# ||stats2.algo.at^$third-party (easyprivacy.txt: 6905) +.stats2.algo.at +# ||stats.urban-media.com^ (easyprivacy.txt: 6904) +.stats.urban-media.com +# ||stats.united-domains.de^ (easyprivacy.txt: 6903) +.stats.united-domains.de +# ||stats.nekapuzer.at^$third-party (easyprivacy.txt: 6902) +.stats.nekapuzer.at +# ||stats.ilsemedia.nl^ (easyprivacy.txt: 6901) +.stats.ilsemedia.nl +# ||stats.frankfurterneuepresse.de^ (easyprivacy.txt: 6900) +.stats.frankfurterneuepresse.de +# ||stats.fittkaumaass.de^ (easyprivacy.txt: 6899) +.stats.fittkaumaass.de +# ||stats.digital-natives.de^ (easyprivacy.txt: 6898) +.stats.digital-natives.de +# ||stats.clickforknowledge.com^ (easyprivacy.txt: 6897) +.stats.clickforknowledge.com +# ||stats.blogoscoop.net^ (easyprivacy.txt: 6896) +.stats.blogoscoop.net +# ||stats.av.de^ (easyprivacy.txt: 6895) +.stats.av.de +# ||statistik.simaja.de^ (easyprivacy.txt: 6894) +.statistik.simaja.de +# ||statistik.motorpresse.de^$third-party (easyprivacy.txt: 6893) +.statistik.motorpresse.de +# ||statistics.klicktel.de^ (easyprivacy.txt: 6892) +.statistics.klicktel.de +# ||stat4.edev.at^ (easyprivacy.txt: 6891) +.stat4.edev.at +# ||stat.clichehosting.de^ (easyprivacy.txt: 6890) +.stat.clichehosting.de +# ||ss4w.de/counter.php? (easyprivacy.txt: 6889) +.ss4w.de/counter\.php\? +# ||spox.com/pub/js/track.js (easyprivacy.txt: 6888) +.spox.com/pub/js/track\.js +# ||skoom.de/gratis-counter/ (easyprivacy.txt: 6887) +.skoom.de/gratis-counter/ +# ||sim-technik.de/dvs.gif? (easyprivacy.txt: 6886) +.sim-technik.de/dvs\.gif\? +# ||sett.i12.de^ (easyprivacy.txt: 6885) +.sett.i12.de +# ||serverkompetenz.net/cpx.php? (easyprivacy.txt: 6884) +.serverkompetenz.net/cpx\.php\? +# ||sec-web.com/stats/ (easyprivacy.txt: 6883) +.sec-web.com/stats/ +# ||script.idgentertainment.de/gt.js (easyprivacy.txt: 6882) +.script.idgentertainment.de/gt\.js +# ||retresco.de^*/stats/$third-party (easyprivacy.txt: 6881) +.retresco.de/.*/stats/ +# ||rc.aol.de^*/getrcmd.js (easyprivacy.txt: 6880) +.rc.aol.de/.*/getrcmd\.js +# ||pyroactive.de/counter/ (easyprivacy.txt: 6879) +.pyroactive.de/counter/ +# ||plista.com/iframeShowItem.php (easyprivacy.txt: 6878) +.plista.com/iframeShowItem\.php +# ||plista.com/getuid? (easyprivacy.txt: 6877) +.plista.com/getuid\? +# ||pixel.nbsp.de^ (easyprivacy.txt: 6876) +.pixel.nbsp.de +# ||pixel.holtzbrinckdigital.info^ (easyprivacy.txt: 6875) +.pixel.holtzbrinckdigital.info +# ||pix.news.at^ (easyprivacy.txt: 6874) +.pix.news.at +# ||onlyfree.de^*/counterservice/ (easyprivacy.txt: 6873) +.onlyfree.de/.*/counterservice/ +# ||onlinepresse.info/counter.php? (easyprivacy.txt: 6872) +.onlinepresse.info/counter\.php\? +# ||onlex.de/_counter.php (easyprivacy.txt: 6871) +.onlex.de/_counter\.php +# ||omniture.eaeurope.eu^ (easyprivacy.txt: 6870) +.omniture.eaeurope.eu +# ||oe-static.de^*/wws.js (easyprivacy.txt: 6869) +.oe-static.de/.*/wws\.js +# ||o2online.de^*/postview.gif? (easyprivacy.txt: 6868) +.o2online.de/.*/postview\.gif\? +# ||o2online.de/impression.php? (easyprivacy.txt: 6867) +.o2online.de/impression\.php\? +# ||ntmb.de/count.html? (easyprivacy.txt: 6866) +.ntmb.de/count\.html\? +# ||newelements.de/tracker/ (easyprivacy.txt: 6865) +.newelements.de/tracker/ +# ||nametec.de/cp/ (easyprivacy.txt: 6864) +.nametec.de/cp/ +# ||myv-img.de/m2/e? (easyprivacy.txt: 6863) +.myv-img.de/m2/e\? +# ||mqs.ioam.de^ (easyprivacy.txt: 6862) +.mqs.ioam.de +# ||movad.de/c.ount? (easyprivacy.txt: 6861) +.movad.de/c\.ount\? +# ||mlm.de/pagerank-ranking/ (easyprivacy.txt: 6860) +.mlm.de/pagerank-ranking/ +# ||mlm.de/counter/ (easyprivacy.txt: 6859) +.mlm.de/counter/ +# ||mindwerk.net/zaehlpixel.php? (easyprivacy.txt: 6858) +.mindwerk.net/zaehlpixel\.php\? +# ||met.vgwort.de^ (easyprivacy.txt: 6857) +.met.vgwort.de +# ||mehrwertdienstekompetenz.de/cp/$third-party (easyprivacy.txt: 6856) +.mehrwertdienstekompetenz.de/cp/ +# ||mastertag.kpcustomer.de^ (easyprivacy.txt: 6855) +.mastertag.kpcustomer.de +# ||mapandroute.de/log.xhr? (easyprivacy.txt: 6854) +.mapandroute.de/log\.xhr\? +# ||lr-port.de/tracker/ (easyprivacy.txt: 6853) +.lr-port.de/tracker/ +# ||log.worldsoft-cms.info^ (easyprivacy.txt: 6852) +.log.worldsoft-cms.info +# ||liveviewer.ez.no^ (easyprivacy.txt: 6851) +.liveviewer.ez.no +# ||live.ec2.cxo.name^ (easyprivacy.txt: 6850) +.live.ec2.cxo.name +# ||kt-g.de/counter.php? (easyprivacy.txt: 6849) +.kt-g.de/counter\.php\? +# ||kontextr.eu/content/track? (easyprivacy.txt: 6848) +.kontextr.eu/content/track\? +# ||koe-vip.com/statistik/ (easyprivacy.txt: 6847) +.koe-vip.com/statistik/ +# ||ivw.fem.com^ (easyprivacy.txt: 6846) +.ivw.fem.com +# ||ivw.dumontreise.de^ (easyprivacy.txt: 6845) +.ivw.dumontreise.de +# ||ivw.discover-outdoor.de^ (easyprivacy.txt: 6844) +.ivw.discover-outdoor.de +# ||ioam.de/tx.io? (easyprivacy.txt: 6843) +.ioam.de/tx\.io\? +# ||ioam.de/aid.io? (easyprivacy.txt: 6842) +.ioam.de/aid\.io\? +# ||ioam.de/? (easyprivacy.txt: 6841) +.ioam.de/\? +# ||insene.de/tag/$third-party (easyprivacy.txt: 6840) +.insene.de/tag/ +# ||info.elba.at^$third-party (easyprivacy.txt: 6839) +.info.elba.at +# ||im.aol.de^ (easyprivacy.txt: 6838) +.im.aol.de +# ||house27.ch/counter/ (easyprivacy.txt: 6837) +.house27.ch/counter/ +# ||hittracker.org/counter.php (easyprivacy.txt: 6836) +.hittracker.org/counter\.php +# ||hittracker.org/count.php (easyprivacy.txt: 6835) +.hittracker.org/count\.php +# ||global-media.de^*/track/ai.img (easyprivacy.txt: 6834) +.global-media.de/.*/track/ai\.img +# ||gibts-hier.com/counter.php (easyprivacy.txt: 6833) +.gibts-hier.com/counter\.php +# ||geo.mtvnn.com^ (easyprivacy.txt: 6832) +.geo.mtvnn.com +# ||gand.de/null.gif? (easyprivacy.txt: 6831) +.gand.de/null\.gif\? +# ||gameforge.de/init.gif? (easyprivacy.txt: 6830) +.gameforge.de/init\.gif\? +# ||frontlineshop.com/tr/p.gif?uid= (easyprivacy.txt: 6829) +.frontlineshop.com/tr/p\.gif\?uid= +# ||frontlineshop.com/ev/co/frontline?*&uid= (easyprivacy.txt: 6828) +.frontlineshop.com/ev/co/frontline\?.*&uid= +# ||filmaster.tv^*/flm.tracker.min.js (easyprivacy.txt: 6827) +.filmaster.tv/.*/flm\.tracker\.min\.js +# ||fc.webmasterpro.de^$third-party (easyprivacy.txt: 6826) +.fc.webmasterpro.de +# ||export.newscube.de^ (easyprivacy.txt: 6825) +.export.newscube.de +# ||events.snacktv.de^ (easyprivacy.txt: 6824) +.events.snacktv.de +# ||events.kaloo.ga^$third-party (easyprivacy.txt: 6823) +.events.kaloo.ga +# ||datacomm.ch^*/count.cgi? (easyprivacy.txt: 6822) +.datacomm.ch/.*/count\.cgi\? +# ||data.econa.com^ (easyprivacy.txt: 6821) +.data.econa.com +# ||ctr.nmg.de^$third-party (easyprivacy.txt: 6820) +.ctr.nmg.de +# ||ctr-opc.nmg.de^ (easyprivacy.txt: 6819) +.ctr-opc.nmg.de +# ||ctr-iwb.nmg.de^ (easyprivacy.txt: 6818) +.ctr-iwb.nmg.de +# ||counter.webmart.de^ (easyprivacy.txt: 6817) +.counter.webmart.de +# ||counter.blogoscoop.net^ (easyprivacy.txt: 6816) +.counter.blogoscoop.net +# ||counter.1i.kz^ (easyprivacy.txt: 6815) +.counter.1i.kz +# ||count.snacktv.de^ (easyprivacy.txt: 6814) +.count.snacktv.de +# ||count.asnetworks.de^ (easyprivacy.txt: 6813) +.count.asnetworks.de +# ||confido.dyndns.org^*/dot.php? (easyprivacy.txt: 6812) +.confido.dyndns.org/.*/dot\.php\? +# ||computerfrage.net^*/blank.gif? (easyprivacy.txt: 6811) +.computerfrage.net/.*/blank\.gif\? +# ||com.econa.com^ (easyprivacy.txt: 6810) +.com.econa.com +# ||collect.finanzen.net^ (easyprivacy.txt: 6809) +.collect.finanzen.net +# ||cloudfront.net/customers/24868.min.js (easyprivacy.txt: 6808) +.cloudfront.net/customers/24868\.min\.js +# ||clipkit.de/metrics? (easyprivacy.txt: 6807) +.clipkit.de/metrics\? +# ||cgicounter.onlinehome.de^ (easyprivacy.txt: 6806) +.cgicounter.onlinehome.de +# ||captcha-ad.com/stats/ (easyprivacy.txt: 6805) +.captcha-ad.com/stats/ +# ||bt.ilsemedia.nl^ (easyprivacy.txt: 6804) +.bt.ilsemedia.nl +# ||beenetworks.net/traffic (easyprivacy.txt: 6803) +.beenetworks.net/traffic +# ||bcs-computersysteme.com/cgi-local/hiddencounter/ (easyprivacy.txt: 6802) +.bcs-computersysteme.com/cgi-local/hiddencounter/ +# ||audimark.de/tracking/ (easyprivacy.txt: 6801) +.audimark.de/tracking/ +# ||asci.freenet.de^ (easyprivacy.txt: 6800) +.asci.freenet.de +# ||andyhoppe.com/count/ (easyprivacy.txt: 6799) +.andyhoppe.com/count/ +# ||analytics.unister-gmbh.de^ (easyprivacy.txt: 6798) +.analytics.unister-gmbh.de +# ||analytics.loop-cloud.de^$third-party (easyprivacy.txt: 6797) +.analytics.loop-cloud.de +# ||analytics.gameforge.de^ (easyprivacy.txt: 6796) +.analytics.gameforge.de +# ||analytics.cnd-motionmedia.de^$third-party (easyprivacy.txt: 6795) +.analytics.cnd-motionmedia.de +# ||analytics-static.unister-gmbh.de^ (easyprivacy.txt: 6794) +.analytics-static.unister-gmbh.de +# ||agitos.de/content/track? (easyprivacy.txt: 6793) +.agitos.de/content/track\? +# ||aftonbladet.se/trafikfonden/ (easyprivacy.txt: 6792) +.aftonbladet.se/trafikfonden/ +# ||adm24.de/hp_counter/$third-party (easyprivacy.txt: 6791) +.adm24.de/hp_counter/ +# ||adc-srv.net/retargeting.php (easyprivacy.txt: 6790) +.adc-srv.net/retargeting\.php +# ||zope.net^*/ghs_wa.js (easyprivacy.txt: 6786) +.zope.net/.*/ghs_wa\.js +# ||zoover.co.uk/tracking/ (easyprivacy.txt: 6785) +.zoover.co.uk/tracking/ +# ||ziffprod.com^*/zdcse.min.js?referrer= (easyprivacy.txt: 6784) +.ziffprod.com/.*/zdcse\.min\.js\?referrer= +# ||ywxi.net/meter/ (easyprivacy.txt: 6783) +.ywxi.net/meter/ +# ||ypcdn.com/*/webyp? (easyprivacy.txt: 6782) +.ypcdn.com/.*/webyp\? +# ||yospace.com/csm/analytics; (easyprivacy.txt: 6781) +.yospace.com/csm/analytics; +# ||yimg.com^*/l?ig=$image (easyprivacy.txt: 6780) +.yimg.com/.*/l\?ig= +# ||yimg.com/wi/ytc.js (easyprivacy.txt: 6779) +.yimg.com/wi/ytc\.js +# ||yext.com/plpixel? (easyprivacy.txt: 6778) +.yext.com/plpixel\? +# ||yellowpages.com^*.gif?tid$third-party (easyprivacy.txt: 6777) +.yellowpages.com/.*\.gif\?tid +# ||yellowbrix.com/images/content/cimage.gif? (easyprivacy.txt: 6776) +.yellowbrix.com/images/content/cimage\.gif\? +# ||yarpp.org/pixels/ (easyprivacy.txt: 6775) +.yarpp.org/pixels/ +# ||yapi.awe.sm^$third-party (easyprivacy.txt: 6774) +.yapi.awe.sm +# ||x.weather.com^ (easyprivacy.txt: 6773) +.x.weather.com +# ||wvnetworkmedia.org/min/? (easyprivacy.txt: 6772) +.wvnetworkmedia.org/min/\? +# ||wunderloop.aol.co.uk^ (easyprivacy.txt: 6771) +.wunderloop.aol.co.uk +# ||wstat.wibiya.com^ (easyprivacy.txt: 6770) +.wstat.wibiya.com +# ||wsj.net/MW5/content/analytics/hooks.js (easyprivacy.txt: 6769) +.wsj.net/MW5/content/analytics/hooks\.js +# ||wsf.com/tracking/$third-party (easyprivacy.txt: 6768) +.wsf.com/tracking/ +# ||wsb.aracert.com^ (easyprivacy.txt: 6767) +.wsb.aracert.com +# ||ws.amazon.com/widgets/*=gettrackingid| (easyprivacy.txt: 6766) +.ws.amazon.com/widgets/.*=gettrackingid$ +# ||wpdigital.net/metrics/ (easyprivacy.txt: 6765) +.wpdigital.net/metrics/ +# ||wp-stat.s3.amazonaws.com^ (easyprivacy.txt: 6764) +.wp-stat.s3.amazonaws.com +# ||worldssl.net/reporting.js$third-party (easyprivacy.txt: 6763) +.worldssl.net/reporting\.js +# ||woolik.com^*^tracker^ (easyprivacy.txt: 6762) +.woolik.com/.*[^\w%.-]tracker[^\w%.-] +# ||woolik.com/__el.gif? (easyprivacy.txt: 6761) +.woolik.com/__el\.gif\? +# ||wn.com/count.js (easyprivacy.txt: 6760) +.wn.com/count\.js +# ||win.staticstuff.net^ (easyprivacy.txt: 6759) +.win.staticstuff.net +# ||wikinvest.com^*/errorlogger.php? (easyprivacy.txt: 6758) +.wikinvest.com/.*/errorlogger\.php\? +# ||wikinvest.com/plugin/*=metricpv (easyprivacy.txt: 6757) +.wikinvest.com/plugin/.*=metricpv +# ||widgetserver.com^*/quantcast.swf (easyprivacy.txt: 6756) +.widgetserver.com/.*/quantcast\.swf +# ||widgetserver.com^*/image.gif? (easyprivacy.txt: 6755) +.widgetserver.com/.*/image\.gif\? +# ||widgetserver.com/t/ (easyprivacy.txt: 6754) +.widgetserver.com/t/ +# ||widgetserver.com/metrics/ (easyprivacy.txt: 6753) +.widgetserver.com/metrics/ +# ||widgethost.com/pax/counter.js? (easyprivacy.txt: 6752) +.widgethost.com/pax/counter\.js\? +# ||widgetbox.com/syndication/track/ (easyprivacy.txt: 6751) +.widgetbox.com/syndication/track/ +# ||widget.quantcast.com^ (easyprivacy.txt: 6750) +.widget.quantcast.com +# ||widget.perfectmarket.com^ (easyprivacy.txt: 6749) +.widget.perfectmarket.com +# ||widgeo.net/tracking.php? (easyprivacy.txt: 6748) +.widgeo.net/tracking\.php\? +# ||widgeo.net/hitparade.php (easyprivacy.txt: 6747) +.widgeo.net/hitparade\.php +# ||widgeo.net/geocompteur/ (easyprivacy.txt: 6746) +.widgeo.net/geocompteur/ +# ||widgeo.net/compteur.php? (easyprivacy.txt: 6745) +.widgeo.net/compteur\.php\? +# ||wibiya-june-new-log.conduit-data.com^ (easyprivacy.txt: 6744) +.wibiya-june-new-log.conduit-data.com +# ||wibiya-actions.conduit-data.com^ (easyprivacy.txt: 6743) +.wibiya-actions.conduit-data.com +# ||whosread.com/counter/ (easyprivacy.txt: 6742) +.whosread.com/counter/ +# ||whoson.creativemark.co.uk^$third-party (easyprivacy.txt: 6741) +.whoson.creativemark.co.uk +# ||whatismyip.akamai.com^ (easyprivacy.txt: 6740) +.whatismyip.akamai.com +# ||wetpaint.com^*/track? (easyprivacy.txt: 6739) +.wetpaint.com/.*/track\? +# ||webzel.com/counter/ (easyprivacy.txt: 6738) +.webzel.com/counter/ +# ||webworx24.co.uk/123trace.php (easyprivacy.txt: 6737) +.webworx24.co.uk/123trace\.php +# ||webvoo.com^*/logtodb. (easyprivacy.txt: 6736) +.webvoo.com/.*/logtodb\. +# ||webvoo.com/wt/Track.aspx (easyprivacy.txt: 6735) +.webvoo.com/wt/Track\.aspx +# ||webtracker.educationconnection.com^ (easyprivacy.txt: 6734) +.webtracker.educationconnection.com +# ||webtracker.apicasystem.com^ (easyprivacy.txt: 6733) +.webtracker.apicasystem.com +# ||webterren.com/webdig.js? (easyprivacy.txt: 6732) +.webterren.com/webdig\.js\? +# ||webstats.thaindian.com^ (easyprivacy.txt: 6731) +.webstats.thaindian.com +# ||webstats.seoinc.com^ (easyprivacy.txt: 6730) +.webstats.seoinc.com +# ||webstats.motigo.com^$third-party (easyprivacy.txt: 6729) +.webstats.motigo.com +# ||webservices.websitepros.com^ (easyprivacy.txt: 6728) +.webservices.websitepros.com +# ||weblogger-dynamic-lb.playdom.com^ (easyprivacy.txt: 6727) +.weblogger-dynamic-lb.playdom.com +# ||weblog.livesport.eu^ (easyprivacy.txt: 6726) +.weblog.livesport.eu +# ||webeffective.keynote.com^ (easyprivacy.txt: 6725) +.webeffective.keynote.com +# ||webcare.byside.com^$third-party (easyprivacy.txt: 6724) +.webcare.byside.com +# ||web1.51.la^ (easyprivacy.txt: 6723) +.web1.51.la +# ||web-soft.in/counters/ (easyprivacy.txt: 6722) +.web-soft.in/counters/ +# ||weather.ca/counter.gif? (easyprivacy.txt: 6721) +.weather.ca/counter\.gif\? +# ||watch.teroti.com^$third-party (easyprivacy.txt: 6720) +.watch.teroti.com +# ||wantlive.com/pixel/ (easyprivacy.txt: 6719) +.wantlive.com/pixel/ +# ||w88.m.espn.go.com^ (easyprivacy.txt: 6717) +.w88.m.espn.go.com +# ||w3track.com/newtrk/$third-party (easyprivacy.txt: 6716) +.w3track.com/newtrk/ +# ||vwdealerdigital.com/cdn/sd.js (easyprivacy.txt: 6715) +.vwdealerdigital.com/cdn/sd\.js +# ||vvhp.net/read/view.gif (easyprivacy.txt: 6714) +.vvhp.net/read/view\.gif +# ||vtracking.in.com^ (easyprivacy.txt: 6713) +.vtracking.in.com +# ||vtnlog-*.elb.amazonaws.com^ (easyprivacy.txt: 6712) +.vtnlog-*./.*\.elb\.amazonaws\.com[^\w%.-] +.vtnlog-*.elb.amazonaws.com +# ||vra.outbrain.com^$third-party (easyprivacy.txt: 6711) +.vra.outbrain.com +# ||vpoweb.com/counter.php? (easyprivacy.txt: 6710) +.vpoweb.com/counter\.php\? +# ||voxmedia.com/beacon-min.js (easyprivacy.txt: 6709) +.voxmedia.com/beacon-min\.js +# ||voss.collegehumor.com^ (easyprivacy.txt: 6708) +.voss.collegehumor.com +# ||vmixcore.com/vmixcore/playlog? (easyprivacy.txt: 6707) +.vmixcore.com/vmixcore/playlog\? +# ||vk.com/videostats.php (easyprivacy.txt: 6706) +.vk.com/videostats\.php +# ||vk.com/rtrg? (easyprivacy.txt: 6705) +.vk.com/rtrg\? +# ||vizury.com/analyze/ (easyprivacy.txt: 6704) +.vizury.com/analyze/ +# ||viximo.com/1px.gif? (easyprivacy.txt: 6703) +.viximo.com/1px\.gif\? +# ||vivociti.com/images/$third-party (easyprivacy.txt: 6702) +.vivociti.com/images/ +# ||visualstudio.com/v2/track$third-party (easyprivacy.txt: 6701) +.visualstudio.com/v2/track +# ||visualstudio.com/_da.gif? (easyprivacy.txt: 6700) +.visualstudio.com/_da\.gif\? +# ||visual.ly/track.php? (easyprivacy.txt: 6699) +.visual.ly/track\.php\? +# ||visit.webhosting.yahoo.com^ (easyprivacy.txt: 6698) +.visit.webhosting.yahoo.com +# ||visit.geocities.com^ (easyprivacy.txt: 6697) +.visit.geocities.com +# ||visa.com/logging/logEvent$third-party (easyprivacy.txt: 6696) +.visa.com/logging/logEvent +# ||virtueworldwide.com/ga-test/ (easyprivacy.txt: 6695) +.virtueworldwide.com/ga-test/ +# ||virtualearth.net^*/loggingservice/ (easyprivacy.txt: 6694) +.virtualearth.net/.*/loggingservice/ +# ||virginmedia.com^*/analytics/ (easyprivacy.txt: 6693) +.virginmedia.com/.*/analytics/ +# ||virgingames.com/tracker/ (easyprivacy.txt: 6692) +.virgingames.com/tracker/ +# ||vindicosuite.com/xumo/swf/$third-party (easyprivacy.txt: 6691) +.vindicosuite.com/xumo/swf/ +# ||vindicosuite.com/tracking/ (easyprivacy.txt: 6690) +.vindicosuite.com/tracking/ +# ||vindicosuite.com/track/ (easyprivacy.txt: 6689) +.vindicosuite.com/track/ +# ||viglink.com/api/ping$third-party (easyprivacy.txt: 6688) +.viglink.com/api/ping +# ||videopress.com/plugins/stats/ (easyprivacy.txt: 6687) +.videopress.com/plugins/stats/ +# ||videoplaza.tv/proxy/tracker^$object-subrequest (easyprivacy.txt: 6686) +.videoplaza.tv/proxy/tracker[^\w%.-] +# ||videoplaza.com/proxy/distributor/$object-subrequest (easyprivacy.txt: 6685) +.videoplaza.com/proxy/distributor/ +# ||video.msn.com/report.aspx? (easyprivacy.txt: 6684) +.video.msn.com/report\.aspx\? +# ||video.google.com/api/stats/ (easyprivacy.txt: 6683) +.video.google.com/api/stats/ +# ||video-ad-stats.googlesyndication.com^ (easyprivacy.txt: 6682) +.video-ad-stats.googlesyndication.com +# ||verticalacuity.com/vat/ (easyprivacy.txt: 6681) +.verticalacuity.com/vat/ +# ||verticalacuity.com/varw/sendEvent? (easyprivacy.txt: 6680) +.verticalacuity.com/varw/sendEvent\? +# ||vertical-stats.huffpost.com^ (easyprivacy.txt: 6679) +.vertical-stats.huffpost.com +# ||ventunotech.com/beacon/ (easyprivacy.txt: 6678) +.ventunotech.com/beacon/ +# ||veeseo.com/tracking/ (easyprivacy.txt: 6677) +.veeseo.com/tracking/ +# ||vds_dyn.rightster.com/v/*?rand= (easyprivacy.txt: 6676) +# ||vast.com/vimpressions.js$third-party (easyprivacy.txt: 6675) +.vast.com/vimpressions\.js +# ||vapedia.com^*/largebanner. (easyprivacy.txt: 6674) +.vapedia.com/.*/largebanner\. +# ||vanilladev.com/analytics. (easyprivacy.txt: 6673) +.vanilladev.com/analytics\. +# ||v.giantrealm.com/players/stats.swf? (easyprivacy.txt: 6672) +.v.giantrealm.com/players/stats\.swf\? +# ||uservoice.com^*/track.js (easyprivacy.txt: 6671) +.uservoice.com/.*/track\.js +# ||userlog.synapseip.tv^ (easyprivacy.txt: 6670) +.userlog.synapseip.tv +# ||urc.taboolasyndication.com^ (easyprivacy.txt: 6669) +.urc.taboolasyndication.com +# ||upt.graphiq.com^ (easyprivacy.txt: 6668) +.upt.graphiq.com +# ||upcat.custvox.org/survey/*/countOpen.gif (easyprivacy.txt: 6667) +.upcat.custvox.org/survey/.*/countOpen\.gif +# ||ultimatebootcd.com/tracker/ (easyprivacy.txt: 6666) +.ultimatebootcd.com/tracker/ +# ||uknetguide.co.uk/user.js? (easyprivacy.txt: 6665) +.uknetguide.co.uk/user\.js\? +# ||uim.tifbs.net^ (easyprivacy.txt: 6664) +.uim.tifbs.net +# ||ui-portal.com^*;ns_referrer= (easyprivacy.txt: 6663) +.ui-portal.com/.*;ns_referrer= +# ||ucounter.ucoz.net^ (easyprivacy.txt: 6662) +.ucounter.ucoz.net +# ||typepad.com^*/stats?$third-party (easyprivacy.txt: 6661) +.typepad.com/.*/stats\? +# ||txn.grabnetworks.com^ (easyprivacy.txt: 6660) +.txn.grabnetworks.com +# ||twitvid.com^*/tracker.swf$third-party (easyprivacy.txt: 6659) +.twitvid.com/.*/tracker\.swf +# ||twitter.com/scribe/ (easyprivacy.txt: 6658) +.twitter.com/scribe/ +# ||twitter.com/oct.js (easyprivacy.txt: 6657) +.twitter.com/oct\.js +# ||twitter.com/i/jot (easyprivacy.txt: 6656) +.twitter.com/i/jot +# ||twimg.com/jot? (easyprivacy.txt: 6655) +.twimg.com/jot\? +# ||turnto.com/webEvent/$third-party (easyprivacy.txt: 6654) +.turnto.com/webEvent/ +# ||turner.com^*/1pixel.gif? (easyprivacy.txt: 6653) +.turner.com/.*/1pixel\.gif\? +# ||ttwbs.channelintelligence.com^$third-party (easyprivacy.txt: 6652) +.ttwbs.channelintelligence.com +# ||tsk5.com/17*?*=ex- (easyprivacy.txt: 6651) +.tsk5.com/17.*\?.*=ex- +# ||ts.tradetracker.net^ (easyprivacy.txt: 6650) +.ts.tradetracker.net +# ||trustsquare.net/trafficmonitor/ (easyprivacy.txt: 6649) +.trustsquare.net/trafficmonitor/ +# ||trumba.com/et.aspx?$third-party (easyprivacy.txt: 6648) +.trumba.com/et\.aspx\? +# ||trove.com^*&uid=$image (easyprivacy.txt: 6647) +.trove.com/.*&uid= +# ||trk.vindicosuite.com^ (easyprivacy.txt: 6646) +.trk.vindicosuite.com +# ||trk.vidible.tv^ (easyprivacy.txt: 6645) +.trk.vidible.tv +# ||trk.sele.co^ (easyprivacy.txt: 6644) +.trk.sele.co +# ||trk.pswec.com^$third-party (easyprivacy.txt: 6643) +.trk.pswec.com +# ||trk.bhs4.com^ (easyprivacy.txt: 6642) +.trk.bhs4.com +# ||trk*.vidible.tv^ (easyprivacy.txt: 6641) +.trk*./.*\.vidible\.tv[^\w%.-] +.trk*.vidible.tv +# ||tritondigital.net/activity.php? (easyprivacy.txt: 6640) +.tritondigital.net/activity\.php\? +# ||tritondigital.com/ltjs.php (easyprivacy.txt: 6639) +.tritondigital.com/ltjs\.php +# ||triad.technorati.com^ (easyprivacy.txt: 6638) +.triad.technorati.com +# ||trf.intuitwebsites.com^ (easyprivacy.txt: 6637) +.trf.intuitwebsites.com +# ||tree-pixel-log.s3.amazonaws.com^ (easyprivacy.txt: 6636) +.tree-pixel-log.s3.amazonaws.com +# ||tredir.go.com/capmon/GetDE?$third-party (easyprivacy.txt: 6635) +.tredir.go.com/capmon/GetDE\? +# ||trax.dirxion.com^ (easyprivacy.txt: 6634) +.trax.dirxion.com +# ||travpan.com/out/$third-party (easyprivacy.txt: 6633) +.travpan.com/out/ +# ||traq.li/tracker/ (easyprivacy.txt: 6632) +.traq.li/tracker/ +# ||trakksocial.googlecode.com^$third-party (easyprivacy.txt: 6631) +.trakksocial.googlecode.com +# ||traffic.shareaholic.com^ (easyprivacy.txt: 6630) +.traffic.shareaholic.com +# ||traffic.pubexchange.com^ (easyprivacy.txt: 6629) +.traffic.pubexchange.com +# ||traffic.prod.cobaltgroup.com^ (easyprivacy.txt: 6628) +.traffic.prod.cobaltgroup.com +# ||traffic.belaydevelopment.com^$third-party (easyprivacy.txt: 6627) +.traffic.belaydevelopment.com +# ||traffic.acwebconnecting.com^ (easyprivacy.txt: 6626) +.traffic.acwebconnecting.com +# ||tracksys.developlabs.net^ (easyprivacy.txt: 6625) +.tracksys.developlabs.net +# ||trackingdev.nixxie.com^ (easyprivacy.txt: 6624) +.trackingdev.nixxie.com +# ||tracking2.interweave.com^$third-party (easyprivacy.txt: 6623) +.tracking2.interweave.com +# ||tracking2.channeladvisor.com^ (easyprivacy.txt: 6622) +.tracking2.channeladvisor.com +# ||tracking.worldmedia.net^$third-party (easyprivacy.txt: 6621) +.tracking.worldmedia.net +# ||tracking.waterfrontmedia.com^ (easyprivacy.txt: 6620) +.tracking.waterfrontmedia.com +# ||tracking.tradeking.com^ (easyprivacy.txt: 6619) +.tracking.tradeking.com +# ||tracking.thehut.net^ (easyprivacy.txt: 6618) +.tracking.thehut.net +# ||tracking.theeword.co.uk^ (easyprivacy.txt: 6617) +.tracking.theeword.co.uk +# ||tracking.synthasite.net^ (easyprivacy.txt: 6616) +.tracking.synthasite.net +# ||tracking.sponsorpay.com^$third-party (easyprivacy.txt: 6615) +.tracking.sponsorpay.com +# ||tracking.sokrati.com^ (easyprivacy.txt: 6614) +.tracking.sokrati.com +# ||tracking.skyword.com^$third-party (easyprivacy.txt: 6613) +.tracking.skyword.com +# ||tracking.sembox.it^$third-party (easyprivacy.txt: 6612) +.tracking.sembox.it +# ||tracking.searchmarketing.com^ (easyprivacy.txt: 6611) +.tracking.searchmarketing.com +# ||tracking.rapidape.com^ (easyprivacy.txt: 6610) +.tracking.rapidape.com +# ||tracking.quisma.com^ (easyprivacy.txt: 6609) +.tracking.quisma.com +# ||tracking.quillion.com^ (easyprivacy.txt: 6608) +.tracking.quillion.com +# ||tracking.practicefusion.com^$third-party (easyprivacy.txt: 6607) +.tracking.practicefusion.com +# ||tracking.plattformad.com^$third-party (easyprivacy.txt: 6606) +.tracking.plattformad.com +# ||tracking.performgroup.com^ (easyprivacy.txt: 6605) +.tracking.performgroup.com +# ||tracking.musixmatch.com^ (easyprivacy.txt: 6604) +.tracking.musixmatch.com +# ||tracking.maxcdn.com^$third-party (easyprivacy.txt: 6603) +.tracking.maxcdn.com +# ||tracking.m6r.eu^ (easyprivacy.txt: 6602) +.tracking.m6r.eu +# ||tracking.livingsocial.com^ (easyprivacy.txt: 6601) +.tracking.livingsocial.com +# ||tracking.listhub.net^ (easyprivacy.txt: 6600) +.tracking.listhub.net +# ||tracking.lengow.com^ (easyprivacy.txt: 6599) +.tracking.lengow.com +# ||tracking.keywee.co^ (easyprivacy.txt: 6598) +.tracking.keywee.co +# ||tracking.jotform.com^ (easyprivacy.txt: 6597) +.tracking.jotform.com +# ||tracking.interweave.com^$third-party (easyprivacy.txt: 6596) +.tracking.interweave.com +# ||tracking.i-click.com.hk^ (easyprivacy.txt: 6595) +.tracking.i-click.com.hk +# ||tracking.godatafeed.com^ (easyprivacy.txt: 6594) +.tracking.godatafeed.com +# ||tracking.fits.me^$third-party (easyprivacy.txt: 6593) +.tracking.fits.me +# ||tracking.feedperfect.com^ (easyprivacy.txt: 6592) +.tracking.feedperfect.com +# ||tracking.fccinteractive.com^$third-party (easyprivacy.txt: 6591) +.tracking.fccinteractive.com +# ||tracking.fanbridge.com^ (easyprivacy.txt: 6590) +.tracking.fanbridge.com +# ||tracking.ehavior.net^ (easyprivacy.txt: 6589) +.tracking.ehavior.net +# ||tracking.edvisors.com^$third-party (easyprivacy.txt: 6588) +.tracking.edvisors.com +# ||tracking.dsmmadvantage.com^ (easyprivacy.txt: 6587) +.tracking.dsmmadvantage.com +# ||tracking.drsfostersmith.com^$third-party (easyprivacy.txt: 6586) +.tracking.drsfostersmith.com +# ||tracking.dealerwebwatcher.com^ (easyprivacy.txt: 6585) +.tracking.dealerwebwatcher.com +# ||tracking.cmjump.com.au^ (easyprivacy.txt: 6584) +.tracking.cmjump.com.au +# ||tracking.cmcigroup.com^ (easyprivacy.txt: 6583) +.tracking.cmcigroup.com +# ||tracking.bidmizer.com^$third-party (easyprivacy.txt: 6582) +.tracking.bidmizer.com +# ||tracking.badgeville.com^$third-party (easyprivacy.txt: 6581) +.tracking.badgeville.com +# ||tracking.allposters.com^ (easyprivacy.txt: 6580) +.tracking.allposters.com +# ||trackicollect.ibase.fr^$third-party (easyprivacy.txt: 6579) +.trackicollect.ibase.fr +# ||tracker2.apollo-mail.net^ (easyprivacy.txt: 6578) +.tracker2.apollo-mail.net +# ||tracker.vreveal.com^ (easyprivacy.txt: 6577) +.tracker.vreveal.com +# ||tracker.u-link.me^$third-party (easyprivacy.txt: 6576) +.tracker.u-link.me +# ||tracker.twenga. (easyprivacy.txt: 6575) +.tracker.twenga.*. +# ||tracker.timesgroup.com^ (easyprivacy.txt: 6574) +.tracker.timesgroup.com +# ||tracker.seoboost.net^$third-party (easyprivacy.txt: 6573) +.tracker.seoboost.net +# ||tracker.roitesting.com^ (easyprivacy.txt: 6572) +.tracker.roitesting.com +# ||tracker.neon-images.com^ (easyprivacy.txt: 6571) +.tracker.neon-images.com +# ||tracker.myseofriend.net^$third-party (easyprivacy.txt: 6570) +.tracker.myseofriend.net +# ||tracker.mtrax.net^ (easyprivacy.txt: 6569) +.tracker.mtrax.net +# ||tracker.mgnetwork.com^ (easyprivacy.txt: 6568) +.tracker.mgnetwork.com +# ||tracker.marinsoftware.com^ (easyprivacy.txt: 6567) +.tracker.marinsoftware.com +# ||tracker.keywordintent.com^ (easyprivacy.txt: 6566) +.tracker.keywordintent.com +# ||tracker.issuu.com^ (easyprivacy.txt: 6565) +.tracker.issuu.com +# ||tracker.iqnomy.com^ (easyprivacy.txt: 6564) +.tracker.iqnomy.com +# ||tracker.icerocket.com^ (easyprivacy.txt: 6563) +.tracker.icerocket.com +# ||tracker.financialcontent.com^ (easyprivacy.txt: 6562) +.tracker.financialcontent.com +# ||tracker.everestnutrition.com^ (easyprivacy.txt: 6561) +.tracker.everestnutrition.com +# ||tracker.downdetector.com^ (easyprivacy.txt: 6560) +.tracker.downdetector.com +# ||tracker.beezup.com^ (easyprivacy.txt: 6559) +.tracker.beezup.com +# ||track.yieldsoftware.com^ (easyprivacy.txt: 6558) +.track.yieldsoftware.com +# ||track.written.com^ (easyprivacy.txt: 6557) +.track.written.com +# ||track.vscash.com^ (easyprivacy.txt: 6556) +.track.vscash.com +# ||track.untd.com^ (easyprivacy.txt: 6555) +.track.untd.com +# ||track.td3x.com^ (easyprivacy.txt: 6554) +.track.td3x.com +# ||track.strife.com^ (easyprivacy.txt: 6553) +.track.strife.com +# ||track.sprinklecontent.com^ (easyprivacy.txt: 6552) +.track.sprinklecontent.com +# ||track.social.com^ (easyprivacy.txt: 6551) +.track.social.com +# ||track.sitetag.us^ (easyprivacy.txt: 6550) +.track.sitetag.us +# ||track.sigfig.com^ (easyprivacy.txt: 6549) +.track.sigfig.com +# ||track.shop2market.com^ (easyprivacy.txt: 6548) +.track.shop2market.com +# ||track.securedvisit.com^ (easyprivacy.txt: 6547) +.track.securedvisit.com +# ||track.searchignite.com^ (easyprivacy.txt: 6546) +.track.searchignite.com +# ||track.ringcentral.com^ (easyprivacy.txt: 6545) +.track.ringcentral.com +# ||track.qoof.com^ (easyprivacy.txt: 6544) +.track.qoof.com +# ||track.qcri.org^ (easyprivacy.txt: 6543) +.track.qcri.org +# ||track.propelplus.com^ (easyprivacy.txt: 6542) +.track.propelplus.com +# ||track.parse.ly^ (easyprivacy.txt: 6541) +.track.parse.ly +# ||track.omg2.com^ (easyprivacy.txt: 6540) +.track.omg2.com +# ||track.mycliplister.com^ (easyprivacy.txt: 6539) +.track.mycliplister.com +# ||track.mybloglog.com^ (easyprivacy.txt: 6538) +.track.mybloglog.com +# ||track.linksynergy.com^$third-party (easyprivacy.txt: 6537) +.track.linksynergy.com +# ||track.leadin.com^ (easyprivacy.txt: 6536) +.track.leadin.com +# ||track.juno.com^ (easyprivacy.txt: 6535) +.track.juno.com +# ||track.gridlockparadise.com^ (easyprivacy.txt: 6534) +.track.gridlockparadise.com +# ||track.g-bot.net^ (easyprivacy.txt: 6533) +.track.g-bot.net +# ||track.digitalriver.com^ (easyprivacy.txt: 6532) +.track.digitalriver.com +# ||track.did-it.com^ (easyprivacy.txt: 6531) +.track.did-it.com +# ||track.captivate.ai^ (easyprivacy.txt: 6530) +.track.captivate.ai +# ||track.cafemomstatic.com^ (easyprivacy.txt: 6529) +.track.cafemomstatic.com +# ||track.bannedcelebs.com^ (easyprivacy.txt: 6528) +.track.bannedcelebs.com +# ||track.atgstores.com^$third-party (easyprivacy.txt: 6527) +.track.atgstores.com +# ||track.addevent.com^ (easyprivacy.txt: 6526) +.track.addevent.com +# ||track.99acres.com^ (easyprivacy.txt: 6525) +.track.99acres.com +# ||trace.qq.com^$third-party (easyprivacy.txt: 6524) +.trace.qq.com +# ||tr.webantenna.info^ (easyprivacy.txt: 6523) +.tr.webantenna.info +# ||tr.interlake.net^ (easyprivacy.txt: 6522) +.tr.interlake.net +# ||tr.advance.net^ (easyprivacy.txt: 6521) +.tr.advance.net +# ||tr-metrics.loomia.com^ (easyprivacy.txt: 6520) +.tr-metrics.loomia.com +# ||tout.com/tracker.js (easyprivacy.txt: 6519) +.tout.com/tracker\.js +# ||tourradar.com/def/partner?$third-party (easyprivacy.txt: 6518) +.tourradar.com/def/partner\? +# ||touchcommerce.com/tagserver/logging/ (easyprivacy.txt: 6517) +.touchcommerce.com/tagserver/logging/ +# ||totallylayouts.com^*/visitor-counter/counter.js (easyprivacy.txt: 6516) +.totallylayouts.com/.*/visitor-counter/counter\.js +# ||totallylayouts.com^*/users-online-counter/online.js (easyprivacy.txt: 6515) +.totallylayouts.com/.*/users-online-counter/online\.js +# ||totallylayouts.com/online-users-counter/$third-party (easyprivacy.txt: 6514) +.totallylayouts.com/online-users-counter/ +# ||totallylayouts.com/hit-counter/$third-party (easyprivacy.txt: 6513) +.totallylayouts.com/hit-counter/ +# ||topix.net/t6track/ (easyprivacy.txt: 6512) +.topix.net/t6track/ +# ||top-fwz1.mail.ru^ (easyprivacy.txt: 6511) +.top-fwz1.mail.ru +# ||tm.tradetracker.net^ (easyprivacy.txt: 6510) +.tm.tradetracker.net +# ||tl.tradetracker.net^ (easyprivacy.txt: 6509) +.tl.tradetracker.net +# ||tinyurl.com/pixel.gif/ (easyprivacy.txt: 6508) +.tinyurl.com/pixel\.gif/ +# ||tinypass.com^*/track? (easyprivacy.txt: 6507) +.tinypass.com/.*/track\? +# ||timeinc.net^*/peopleas2artracker_v1.swf (easyprivacy.txt: 6506) +.timeinc.net/.*/peopleas2artracker_v1\.swf +# ||time.chtah.com/a/*/spacer.gif (easyprivacy.txt: 6505) +.time.chtah.com/a/.*/spacer\.gif +# ||thismoment.com/tracking/ (easyprivacy.txt: 6504) +.thismoment.com/tracking/ +# ||thinairsoftware.net/OWYPTracker.aspx? (easyprivacy.txt: 6503) +.thinairsoftware.net/OWYPTracker\.aspx\? +# ||thetradedesk-tags.s3.amazonaws.com^ (easyprivacy.txt: 6502) +.thetradedesk-tags.s3.amazonaws.com +# ||thespringbox.com/analytics/ (easyprivacy.txt: 6501) +.thespringbox.com/analytics/ +# ||thepornstarlist.com/lo/lo/track.php? (easyprivacy.txt: 6500) +.thepornstarlist.com/lo/lo/track\.php\? +# ||themesltd.com/online-users-counter/$third-party (easyprivacy.txt: 6499) +.themesltd.com/online-users-counter/ +# ||themesltd.com/hit-counter/$third-party (easyprivacy.txt: 6498) +.themesltd.com/hit-counter/ +# ||thefilter.com^*?extanonid=$~script (easyprivacy.txt: 6497) +.thefilter.com/.*\?extanonid= +# ||the-group.net/aether/ (easyprivacy.txt: 6496) +.the-group.net/aether/ +# ||techweb.com/beacon/ (easyprivacy.txt: 6495) +.techweb.com/beacon/ +# ||technorati.com/technoratimedia-pixel.js (easyprivacy.txt: 6494) +.technorati.com/technoratimedia-pixel\.js +# ||tc.airfrance.com^ (easyprivacy.txt: 6493) +.tc.airfrance.com +# ||targeting.wpdigital.net^ (easyprivacy.txt: 6492) +.targeting.wpdigital.net +# ||target.fark.com^ (easyprivacy.txt: 6491) +.target.fark.com +# ||tags.master-perf-tools.com^ (easyprivacy.txt: 6490) +.tags.master-perf-tools.com +# ||tagcdn.com/pix/? (easyprivacy.txt: 6489) +.tagcdn.com/pix/\? +# ||tag.sonymusic.com^ (easyprivacy.txt: 6488) +.tag.sonymusic.com +# ||tag.myplay.com^ (easyprivacy.txt: 6487) +.tag.myplay.com +# ||tag.email-attitude.com^ (easyprivacy.txt: 6486) +.tag.email-attitude.com +# ||taboolasyndication.com^*/log/ (easyprivacy.txt: 6485) +.taboolasyndication.com/.*/log/ +# ||taboolasyndication.com/log/ (easyprivacy.txt: 6484) +.taboolasyndication.com/log/ +# ||taboola.com^*/log/ (easyprivacy.txt: 6483) +.taboola.com/.*/log/ +# ||t2.t2b.click^ (easyprivacy.txt: 6482) +.t2.t2b.click +# ||t.ymlp275.net^$third-party (easyprivacy.txt: 6481) +.t.ymlp275.net +# ||t.theoutplay.com^ (easyprivacy.txt: 6480) +.t.theoutplay.com +# ||t.pswec.com^ (easyprivacy.txt: 6479) +.t.pswec.com +# ||t.powerreviews.com^$third-party (easyprivacy.txt: 6478) +.t.powerreviews.com +# ||t.menepe.com^ (easyprivacy.txt: 6477) +.t.menepe.com +# ||t.mail.sony-europe.com/r/? (easyprivacy.txt: 6476) +.t.mail.sony-europe.com/r/\? +# ||t.flux.com^ (easyprivacy.txt: 6475) +.t.flux.com +# ||t.dgm-au.com^$third-party (easyprivacy.txt: 6474) +.t.dgm-au.com +# ||t.devnet.com^$third-party (easyprivacy.txt: 6473) +.t.devnet.com +# ||t.cfjump.com^ (easyprivacy.txt: 6472) +.t.cfjump.com +# ||t.bimvid.com^ (easyprivacy.txt: 6471) +.t.bimvid.com +# ||t-staging.powerreviews.com^ (easyprivacy.txt: 6470) +.t-staging.powerreviews.com +# ||systemmonitoring.badgeville.com^ (easyprivacy.txt: 6469) +.systemmonitoring.badgeville.com +# ||synergizeonline.net/trackpoint/ (easyprivacy.txt: 6468) +.synergizeonline.net/trackpoint/ +# ||sync.adap.tv^ (easyprivacy.txt: 6467) +.sync.adap.tv +# ||swiftypecdn.com/te.js$third-party (easyprivacy.txt: 6466) +.swiftypecdn.com/te\.js +# ||swiftypecdn.com/cc.js$third-party (easyprivacy.txt: 6465) +.swiftypecdn.com/cc\.js +# ||survey.io/log? (easyprivacy.txt: 6464) +.survey.io/log\? +# ||survey.interquest.com^ (easyprivacy.txt: 6463) +.survey.interquest.com +# ||sumome.com/apps/heatmaps/ (easyprivacy.txt: 6462) +.sumome.com/apps/heatmaps/ +# ||sumome.com/apps/contentanalytics/ (easyprivacy.txt: 6461) +.sumome.com/apps/contentanalytics/ +# ||sumome.com/api/event/? (easyprivacy.txt: 6460) +.sumome.com/api/event/\? +# ||sulia.com/papi/sulia_partner.js/$third-party (easyprivacy.txt: 6459) +.sulia.com/papi/sulia_partner\.js/ +# ||sugarops.com/w?action=impression$third-party (easyprivacy.txt: 6458) +.sugarops.com/w\?action=impression +# ||su.pr/hosted_js$third-party (easyprivacy.txt: 6457) +.su.pr/hosted_js +# ||su.addthis.com^ (easyprivacy.txt: 6456) +.su.addthis.com +# ||streamads.com/view? (easyprivacy.txt: 6455) +.streamads.com/view\? +# ||stileproject.com/vhtk/ (easyprivacy.txt: 6454) +.stileproject.com/vhtk/ +# ||statt-collect.herokuapp.com^ (easyprivacy.txt: 6453) +.statt-collect.herokuapp.com +# ||statsrv.451.com^ (easyprivacy.txt: 6452) +.statsrv.451.com +# ||statsdev.treesd.com^ (easyprivacy.txt: 6451) +.statsdev.treesd.com +# ||statsadv.dadapro.com^$third-party (easyprivacy.txt: 6450) +.statsadv.dadapro.com +# ||stats3.unrulymedia.com^ (easyprivacy.txt: 6449) +.stats3.unrulymedia.com +# ||stats2.lightningcast.net^ (easyprivacy.txt: 6448) +.stats2.lightningcast.net +# ||stats1.tune.pk^ (easyprivacy.txt: 6447) +.stats1.tune.pk +# ||stats.yourminis.com^ (easyprivacy.txt: 6446) +.stats.yourminis.com +# ||stats.wp.com^ (easyprivacy.txt: 6445) +.stats.wp.com +# ||stats.whicdn.com^$third-party (easyprivacy.txt: 6444) +.stats.whicdn.com +# ||stats.webstarts.com^$third-party (easyprivacy.txt: 6443) +.stats.webstarts.com +# ||stats.webs.com^ (easyprivacy.txt: 6442) +.stats.webs.com +# ||stats.vodpod.com^ (easyprivacy.txt: 6441) +.stats.vodpod.com +# ||stats.viddler.com^ (easyprivacy.txt: 6440) +.stats.viddler.com +# ||stats.twistage.com^ (easyprivacy.txt: 6439) +.stats.twistage.com +# ||stats.topofblogs.com^ (easyprivacy.txt: 6438) +.stats.topofblogs.com +# ||stats.svpply.com^ (easyprivacy.txt: 6437) +.stats.svpply.com +# ||stats.surfaid.ihost.com^ (easyprivacy.txt: 6436) +.stats.surfaid.ihost.com +# ||stats.staging.suite101.com^ (easyprivacy.txt: 6435) +.stats.staging.suite101.com +# ||stats.snappytv.com^ (easyprivacy.txt: 6434) +.stats.snappytv.com +# ||stats.snacktools.net^ (easyprivacy.txt: 6433) +.stats.snacktools.net +# ||stats.smartclip.net^ (easyprivacy.txt: 6432) +.stats.smartclip.net +# ||stats.shopify.com^ (easyprivacy.txt: 6431) +.stats.shopify.com +# ||stats.screenresolution.org/get.php$image,third-party (easyprivacy.txt: 6430) +.stats.screenresolution.org/get\.php +# ||stats.sawlive.tv^ (easyprivacy.txt: 6429) +.stats.sawlive.tv +# ||stats.sa-as.com^ (easyprivacy.txt: 6428) +.stats.sa-as.com +# ||stats.ref2000.com^ (easyprivacy.txt: 6427) +.stats.ref2000.com +# ||stats.qmerce.com^ (easyprivacy.txt: 6426) +.stats.qmerce.com +# ||stats.polldaddy.com^ (easyprivacy.txt: 6425) +.stats.polldaddy.com +# ||stats.ozwebsites.biz^ (easyprivacy.txt: 6424) +.stats.ozwebsites.biz +# ||stats.olark.com^ (easyprivacy.txt: 6423) +.stats.olark.com +# ||stats.netbopdev.co.uk^ (easyprivacy.txt: 6422) +.stats.netbopdev.co.uk +# ||stats.nebula.fi^ (easyprivacy.txt: 6421) +.stats.nebula.fi +# ||stats.manticoretechnology.com^ (easyprivacy.txt: 6420) +.stats.manticoretechnology.com +# ||stats.magnify.net^ (easyprivacy.txt: 6419) +.stats.magnify.net +# ||stats.lotlinx.com^ (easyprivacy.txt: 6418) +.stats.lotlinx.com +# ||stats.load.com^ (easyprivacy.txt: 6417) +.stats.load.com +# ||stats.lightningcast.net^ (easyprivacy.txt: 6416) +.stats.lightningcast.net +# ||stats.kaltura.com^ (easyprivacy.txt: 6415) +.stats.kaltura.com +# ||stats.itweb.co.za^ (easyprivacy.txt: 6414) +.stats.itweb.co.za +# ||stats.inergizedigitalmedia.com^ (easyprivacy.txt: 6413) +.stats.inergizedigitalmedia.com +# ||stats.indexstats.com^ (easyprivacy.txt: 6412) +.stats.indexstats.com +# ||stats.highwire.com^ (easyprivacy.txt: 6411) +.stats.highwire.com +# ||stats.geegain.com^ (easyprivacy.txt: 6410) +.stats.geegain.com +# ||stats.g.doubleclick.net^ (easyprivacy.txt: 6409) +.stats.g.doubleclick.net +# ||stats.free-rein.net^ (easyprivacy.txt: 6408) +.stats.free-rein.net +# ||stats.edicy.com^ (easyprivacy.txt: 6407) +.stats.edicy.com +# ||stats.directnic.com^ (easyprivacy.txt: 6406) +.stats.directnic.com +# ||stats.dice.com^ (easyprivacy.txt: 6405) +.stats.dice.com +# ||stats.datahjaelp.net^ (easyprivacy.txt: 6404) +.stats.datahjaelp.net +# ||stats.complex.com^ (easyprivacy.txt: 6403) +.stats.complex.com +# ||stats.cnevids.com^ (easyprivacy.txt: 6402) +.stats.cnevids.com +# ||stats.cloudwp.io^ (easyprivacy.txt: 6401) +.stats.cloudwp.io +# ||stats.clipprtv.com^$third-party (easyprivacy.txt: 6400) +.stats.clipprtv.com +# ||stats.clickability.com^ (easyprivacy.txt: 6399) +.stats.clickability.com +# ||stats.cdn.playfair.co.za^ (easyprivacy.txt: 6398) +.stats.cdn.playfair.co.za +# ||stats.cdn.pfn.bz^ (easyprivacy.txt: 6397) +.stats.cdn.pfn.bz +# ||stats.bluebillywig.com^ (easyprivacy.txt: 6396) +.stats.bluebillywig.com +# ||stats.bitgravity.com^ (easyprivacy.txt: 6395) +.stats.bitgravity.com +# ||stats.big-boards.com^ (easyprivacy.txt: 6394) +.stats.big-boards.com +# ||stats.adm-vids.com^ (easyprivacy.txt: 6393) +.stats.adm-vids.com +# ||stats.24.com^ (easyprivacy.txt: 6392) +.stats.24.com +# ||stats-newyork1.bloxcms.com^ (easyprivacy.txt: 6391) +.stats-newyork1.bloxcms.com +# ||statm.the-adult-company.com^ (easyprivacy.txt: 6390) +.statm.the-adult-company.com +# ||statking.net^*/count.js (easyprivacy.txt: 6389) +.statking.net/.*/count\.js +# ||statistics.wibiya.com^ (easyprivacy.txt: 6388) +.statistics.wibiya.com +# ||statistics.tattermedia.com^ (easyprivacy.txt: 6387) +.statistics.tattermedia.com +# ||statistics.m0lxcdn.kukuplay.com^$third-party (easyprivacy.txt: 6386) +.statistics.m0lxcdn.kukuplay.com +# ||statistics.infowap.info^ (easyprivacy.txt: 6385) +.statistics.infowap.info +# ||static.parsely.com^$third-party (easyprivacy.txt: 6384) +.static.parsely.com +# ||statdb.pressflex.com^ (easyprivacy.txt: 6383) +.statdb.pressflex.com +# ||stat.web-regie.com^ (easyprivacy.txt: 6382) +.stat.web-regie.com +# ||stat.to.cupidplc.com^$third-party (easyprivacy.txt: 6381) +.stat.to.cupidplc.com +# ||stat.segitek.hu^ (easyprivacy.txt: 6380) +.stat.segitek.hu +# ||stat.pladform.ru^ (easyprivacy.txt: 6379) +.stat.pladform.ru +# ||stat.php-d.com^ (easyprivacy.txt: 6378) +.stat.php-d.com +# ||stat.itp-nyc.com^ (easyprivacy.txt: 6377) +.stat.itp-nyc.com +# ||stat.ed.cupidplc.com^ (easyprivacy.txt: 6376) +.stat.ed.cupidplc.com +# ||stat.easydate.biz^ (easyprivacy.txt: 6375) +.stat.easydate.biz +# ||st.dynamicyield.com^$third-party (easyprivacy.txt: 6374) +.st.dynamicyield.com +# ||spread.ly^*/statistics.php (easyprivacy.txt: 6372) +.spread.ly/.*/statistics\.php +# ||spoods.rce.veeseo.com^ (easyprivacy.txt: 6371) +.spoods.rce.veeseo.com +# ||spinmediacdn.com/clarity-*.js (easyprivacy.txt: 6370) +.spinmediacdn.com/clarity-.*\.js +# ||speedtrap.shopdirect.com^ (easyprivacy.txt: 6369) +.speedtrap.shopdirect.com +# ||speedtestbeta.com/*.gif?cb$third-party (easyprivacy.txt: 6368) +.speedtestbeta.com/.*\.gif\?cb +# ||sparklit.com/counter/ (easyprivacy.txt: 6367) +.sparklit.com/counter/ +# ||spaceprogram.com/webstats/ (easyprivacy.txt: 6366) +.spaceprogram.com/webstats/ +# ||spacedust.netmediaeurope.com^ (easyprivacy.txt: 6365) +.spacedust.netmediaeurope.com +# ||southafricahome.com/statsmodulev2/ (easyprivacy.txt: 6364) +.southafricahome.com/statsmodulev2/ +# ||sourceforge.net/tracker/$~xmlhttprequest (easyprivacy.txt: 6363) +.sourceforge.net/tracker/ +# ||soundcloud.com^*/plays?referer= (easyprivacy.txt: 6362) +.soundcloud.com/.*/plays\?referer= +# ||sohu.com/stat/ (easyprivacy.txt: 6361) +.sohu.com/stat/ +# ||socialreader.com^*?event=email_open^$image (easyprivacy.txt: 6360) +.socialreader.com/.*\?event=email_open[^\w%.-] +# ||snazzyspace.com/generators/viewer-counter/counter.php$third-party (easyprivacy.txt: 6359) +.snazzyspace.com/generators/viewer-counter/counter\.php +# ||snaps.vidiemi.com^$third-party (easyprivacy.txt: 6358) +.snaps.vidiemi.com +# ||smartertravel.com/ext/pixel/ (easyprivacy.txt: 6357) +.smartertravel.com/ext/pixel/ +# ||slidesharecdn.com/images/1x1.gif? (easyprivacy.txt: 6356) +.slidesharecdn.com/images/1x1\.gif\? +# ||slidedeck.com^$image,third-party (easyprivacy.txt: 6355) +.slidedeck.com +# ||sli-spark.com/b.png$third-party (easyprivacy.txt: 6354) +.sli-spark.com/b\.png +# ||skysa.com/tracker/ (easyprivacy.txt: 6353) +.skysa.com/tracker/ +# ||skimresources.com/api/ref-banners.js (easyprivacy.txt: 6352) +.skimresources.com/api/ref-banners\.js +# ||sitereports.officelive.com^ (easyprivacy.txt: 6351) +.sitereports.officelive.com +# ||siteintercept*.qualtrics.com^$third-party (easyprivacy.txt: 6350) +.siteintercept*./.*\.qualtrics\.com[^\w%.-] +.siteintercept*.qualtrics.com +# ||sinajs.cn/open/analytics/ (easyprivacy.txt: 6349) +.sinajs.cn/open/analytics/ +# ||signup.advance.net^*affiliate (easyprivacy.txt: 6348) +.signup.advance.net/.*affiliate +# ||sightmaxondemand.com/wreal/sightmaxagentinterface/monitor.smjs (easyprivacy.txt: 6347) +.sightmaxondemand.com/wreal/sightmaxagentinterface/monitor\.smjs +# ||sig.gamerdna.com^$third-party (easyprivacy.txt: 6346) +.sig.gamerdna.com +# ||shoplocal.com/it.ashx? (easyprivacy.txt: 6345) +.shoplocal.com/it\.ashx\? +# ||shareit.com/affiliate.html$third-party (easyprivacy.txt: 6344) +.shareit.com/affiliate\.html +# ||shareholder.com/track/ (easyprivacy.txt: 6343) +.shareholder.com/track/ +# ||shareaholic.com/partners.js (easyprivacy.txt: 6342) +.shareaholic.com/partners\.js +# ||shareaholic.com/analytics_ (easyprivacy.txt: 6341) +.shareaholic.com/analytics_ +# ||sftrack.searchforce.net^ (easyprivacy.txt: 6340) +.sftrack.searchforce.net +# ||sendtonews.com/player/loggingajax.php? (easyprivacy.txt: 6339) +.sendtonews.com/player/loggingajax\.php\? +# ||segments.adap.tv^$third-party (easyprivacy.txt: 6338) +.segments.adap.tv +# ||seg.sharethis.com^ (easyprivacy.txt: 6337) +.seg.sharethis.com +# ||secureprovide1.com/*=tracking$image (easyprivacy.txt: 6336) +.secureprovide1.com/.*=tracking +# ||secure.ifbyphone.com^$third-party (easyprivacy.txt: 6335) +.secure.ifbyphone.com +# ||secure.ed4.net/GSI/$third-party (easyprivacy.txt: 6334) +.secure.ed4.net/GSI/ +# ||searchstats.usa.gov^ (easyprivacy.txt: 6333) +.searchstats.usa.gov +# ||searchmaestros.com/trackpoint/ (easyprivacy.txt: 6332) +.searchmaestros.com/trackpoint/ +# ||searchcompletion.com/BannerHandler.ashx (easyprivacy.txt: 6331) +.searchcompletion.com/BannerHandler\.ashx +# ||search.mediatarget.net^$third-party (easyprivacy.txt: 6330) +.search.mediatarget.net +# ||scripts.psyma.com^ (easyprivacy.txt: 6329) +.scripts.psyma.com +# ||scribol.com/traffix/widget_tracker/ (easyprivacy.txt: 6328) +.scribol.com/traffix/widget_tracker/ +# ||scout.haymarketmedia.com^$third-party (easyprivacy.txt: 6327) +.scout.haymarketmedia.com +# ||saymedia.com/latest/tetrapak.js (easyprivacy.txt: 6326) +.saymedia.com/latest/tetrapak\.js +# ||sawpf.com/1.0.js$third-party (easyprivacy.txt: 6325) +.sawpf.com/1\.0\.js +# ||sana.newsinc.com^ (easyprivacy.txt: 6324) +.sana.newsinc.com +# ||salesforce.com/sfga.js (easyprivacy.txt: 6323) +.salesforce.com/sfga\.js +# ||sadv.dadapro.com^$third-party (easyprivacy.txt: 6322) +.sadv.dadapro.com +# ||saaspire.net/pxl/$third-party (easyprivacy.txt: 6321) +.saaspire.net/pxl/ +# ||s5labs.io/common/i?impressionId$image (easyprivacy.txt: 6320) +.s5labs.io/common/i\?impressionId +# ||s3-tracking.synthasite.net.s3.amazonaws.com^ (easyprivacy.txt: 6319) +.s3-tracking.synthasite.net.s3.amazonaws.com +# ||s.sniphub.com^ (easyprivacy.txt: 6318) +.s.sniphub.com +# ||s.clickability.com^ (easyprivacy.txt: 6317) +.s.clickability.com +# ||ru4.com/click? (easyprivacy.txt: 6316) +.ru4.com/click\? +# ||rtt.campanja.com^ (easyprivacy.txt: 6315) +.rtt.campanja.com +# ||rs.sinajs.cn^ (easyprivacy.txt: 6314) +.rs.sinajs.cn +# ||royalecms.com/statistics.php? (easyprivacy.txt: 6313) +.royalecms.com/statistics\.php\? +# ||rokt.com/pixel/ (easyprivacy.txt: 6312) +.rokt.com/pixel/ +# ||roitrack.addlvr.com^ (easyprivacy.txt: 6311) +.roitrack.addlvr.com +# ||rodalenl.com/imp?$third-party (easyprivacy.txt: 6310) +.rodalenl.com/imp\? +# ||richrelevance.com/rrserver/tracking? (easyprivacy.txt: 6309) +.richrelevance.com/rrserver/tracking\? +# ||rich-agent.s3.amazonaws.com^ (easyprivacy.txt: 6308) +.rich-agent.s3.amazonaws.com +# ||ria.ru/js/counter.js (easyprivacy.txt: 6307) +.ria.ru/js/counter\.js +# ||rhapsody.com^*/pixel? (easyprivacy.txt: 6306) +.rhapsody.com/.*/pixel\? +# ||reverbnation.com/widgets/trk/ (easyprivacy.txt: 6305) +.reverbnation.com/widgets/trk/ +# ||researchintel.com^$third-party (easyprivacy.txt: 6304) +.researchintel.com +# ||reports.tstlabs.co.uk^ (easyprivacy.txt: 6303) +.reports.tstlabs.co.uk +# ||reports.pagesuite-professional.co.uk^ (easyprivacy.txt: 6302) +.reports.pagesuite-professional.co.uk +# ||reports.maxperview.com^ (easyprivacy.txt: 6301) +.reports.maxperview.com +# ||reportinglogger.my.rightster.com^ (easyprivacy.txt: 6300) +.reportinglogger.my.rightster.com +# ||reporting.singlefeed.com^ (easyprivacy.txt: 6299) +.reporting.singlefeed.com +# ||reporting.reactlite.com^$third-party (easyprivacy.txt: 6298) +.reporting.reactlite.com +# ||reporting.handll.net^ (easyprivacy.txt: 6297) +.reporting.handll.net +# ||report.downloastar.com^ (easyprivacy.txt: 6296) +.report.downloastar.com +# ||replyat.com/gadgetpagecounter*.asp? (easyprivacy.txt: 6295) +.replyat.com/gadgetpagecounter.*\.asp\? +# ||referrer.disqus.com^ (easyprivacy.txt: 6294) +.referrer.disqus.com +# ||reevoo.com^*/track/ (easyprivacy.txt: 6293) +.reevoo.com/.*/track/ +# ||reevoo.com/track_url/ (easyprivacy.txt: 6292) +.reevoo.com/track_url/ +# ||reevoo.com/track/ (easyprivacy.txt: 6291) +.reevoo.com/track/ +# ||redplum.com^*&pixid=$third-party (easyprivacy.txt: 6290) +.redplum.com/.*&pixid= +# ||redir.widdit.com^$third-party (easyprivacy.txt: 6289) +.redir.widdit.com +# ||recs.atgsvcs.com^$third-party (easyprivacy.txt: 6288) +.recs.atgsvcs.com +# ||realtidbits.com^*/analytics.js (easyprivacy.txt: 6287) +.realtidbits.com/.*/analytics\.js +# ||realplayer.com^*/pixel? (easyprivacy.txt: 6286) +.realplayer.com/.*/pixel\? +# ||readcube.com/tracking/ (easyprivacy.txt: 6285) +.readcube.com/tracking/ +# ||readcube.com/ping? (easyprivacy.txt: 6284) +.readcube.com/ping\? +# ||rbl.ms/res/users/tracking/ (easyprivacy.txt: 6283) +.rbl.ms/res/users/tracking/ +# ||radiocompanion.com/count.php? (easyprivacy.txt: 6282) +.radiocompanion.com/count\.php\? +# ||rackcdn.com^*/analytics.js (easyprivacy.txt: 6281) +.rackcdn.com/.*/analytics\.js +# ||rackcdn.com/knotice.api.js (easyprivacy.txt: 6279) +.rackcdn.com/knotice\.api\.js +# ||rackcdn.com/icon2.gif? (easyprivacy.txt: 6278) +.rackcdn.com/icon2\.gif\? +# ||rackcdn.com/easie.js (easyprivacy.txt: 6277) +.rackcdn.com/easie\.js +# ||rackcdn.com/1x1.gif? (easyprivacy.txt: 6276) +.rackcdn.com/1x1\.gif\? +# ||ra.ripple6.com^ (easyprivacy.txt: 6275) +.ra.ripple6.com +# ||r.ypcdn.com^*/rtd?ptid$image (easyprivacy.txt: 6274) +.r.ypcdn.com/.*/rtd\?ptid +# ||r.msn.com^ (easyprivacy.txt: 6273) +.r.msn.com +# ||quisma.com/tracking/ (easyprivacy.txt: 6272) +.quisma.com/tracking/ +# ||qubitanalytics.appspot.com^ (easyprivacy.txt: 6271) +.qubitanalytics.appspot.com +# ||qualtrics.com^*/metrics (easyprivacy.txt: 6270) +.qualtrics.com/.*/metrics +# ||qq.com/stats? (easyprivacy.txt: 6269) +.qq.com/stats\? +# ||qq.com/ping.js? (easyprivacy.txt: 6268) +.qq.com/ping\.js\? +# ||qq.com/heatmap/ (easyprivacy.txt: 6267) +.qq.com/heatmap/ +# ||qos.video.yimg.com^ (easyprivacy.txt: 6266) +.qos.video.yimg.com +# ||qlog.adap.tv^$object-subrequest (easyprivacy.txt: 6265) +.qlog.adap.tv +# ||px.topspin.net^ (easyprivacy.txt: 6264) +.px.topspin.net +# ||px.owneriq.net^ (easyprivacy.txt: 6263) +.px.owneriq.net +# ||px.excitedigitalmedia.com^ (easyprivacy.txt: 6262) +.px.excitedigitalmedia.com +# ||px.dynamicyield.com^$third-party (easyprivacy.txt: 6261) +.px.dynamicyield.com +# ||pussy.org^*/track.php (easyprivacy.txt: 6260) +.pussy.org/.*/track\.php +# ||pussy.org^*.cgi?pid= (easyprivacy.txt: 6259) +.pussy.org/.*\.cgi\?pid= +# ||purevideo.com^*/pvshim.gif? (easyprivacy.txt: 6258) +.purevideo.com/.*/pvshim\.gif\? +# ||publish.pizzazzemail.com^$third-party (easyprivacy.txt: 6257) +.publish.pizzazzemail.com +# ||publicbroadcasting.net/analytics/ (easyprivacy.txt: 6256) +.publicbroadcasting.net/analytics/ +# ||pub.sheknows.com^ (easyprivacy.txt: 6255) +.pub.sheknows.com +# ||ptsc.shoplocal.com^ (easyprivacy.txt: 6254) +.ptsc.shoplocal.com +# ||pt.crossmediaservices.com^ (easyprivacy.txt: 6253) +.pt.crossmediaservices.com +# ||pswec.com/px/$third-party (easyprivacy.txt: 6252) +.pswec.com/px/ +# ||prstats.postrelease.com^ (easyprivacy.txt: 6251) +.prstats.postrelease.com +# ||proxify.com/xyz.php$third-party (easyprivacy.txt: 6250) +.proxify.com/xyz\.php +# ||providence.voxmedia.com^$third-party (easyprivacy.txt: 6249) +.providence.voxmedia.com +# ||propelplus.com/track/$third-party (easyprivacy.txt: 6248) +.propelplus.com/track/ +# ||projop.dnsalias.com^$third-party (easyprivacy.txt: 6247) +.projop.dnsalias.com +# ||projecthaile.com/js/trb-1.js (easyprivacy.txt: 6246) +.projecthaile.com/js/trb-1\.js +# ||production.mcs.delve.cust.lldns.net^ (easyprivacy.txt: 6245) +.production.mcs.delve.cust.lldns.net +# ||production-mcs.lvp.llnw.net^ (easyprivacy.txt: 6244) +.production-mcs.lvp.llnw.net +# ||production-eqbc.lvp.llnw.net^ (easyprivacy.txt: 6243) +.production-eqbc.lvp.llnw.net +# ||privacytool.org/AnonymityChecker/js/fontdetect.js$third-party (easyprivacy.txt: 6242) +.privacytool.org/AnonymityChecker/js/fontdetect\.js +# ||print2webcorp.com/mkt3/_js/p2w_tracker.js (easyprivacy.txt: 6241) +.print2webcorp.com/mkt3/_js/p2w_tracker\.js +# ||praekelt.com^*/webtracker.js (easyprivacy.txt: 6240) +.praekelt.com/.*/webtracker\.js +# ||pr.blogflux.com^ (easyprivacy.txt: 6239) +.pr.blogflux.com +# ||ppx.com/tracking/ (easyprivacy.txt: 6238) +.ppx.com/tracking/ +# ||powersearch.us.com^ (easyprivacy.txt: 6237) +.powersearch.us.com +# ||poweredbyeden.com/widget/tracker/ (easyprivacy.txt: 6236) +.poweredbyeden.com/widget/tracker/ +# ||potaroo.net/1x1.png? (easyprivacy.txt: 6235) +.potaroo.net/1x1\.png\? +# ||postpixel.vindicosuite.com^ (easyprivacy.txt: 6234) +.postpixel.vindicosuite.com +# ||postageapp.com/receipt/$third-party (easyprivacy.txt: 6233) +.postageapp.com/receipt/ +# ||pornhost.com/count_hit_player.php (easyprivacy.txt: 6232) +.pornhost.com/count_hit_player\.php +# ||pong.production.gannettdigital.com^ (easyprivacy.txt: 6231) +.pong.production.gannettdigital.com +# ||pmetrics.performancing.com^ (easyprivacy.txt: 6230) +.pmetrics.performancing.com +# ||plugins.longtailvideo.com/yourlytics (easyprivacy.txt: 6229) +.plugins.longtailvideo.com/yourlytics +# ||plugins.longtailvideo.com/googlytics (easyprivacy.txt: 6228) +.plugins.longtailvideo.com/googlytics +# ||playtomic.com/Tracker/ (easyprivacy.txt: 6227) +.playtomic.com/Tracker/ +# ||player.ooyala.com/errors/report? (easyprivacy.txt: 6226) +.player.ooyala.com/errors/report\? +# ||platform.twitter.com/impressions.js$third-party (easyprivacy.txt: 6225) +.platform.twitter.com/impressions\.js +# ||platform.communicatorcorp.com^$third-party (easyprivacy.txt: 6224) +.platform.communicatorcorp.com +# ||planet49.com/log/ (easyprivacy.txt: 6223) +.planet49.com/log/ +# ||pixhosting.com/ct/jct.php? (easyprivacy.txt: 6222) +.pixhosting.com/ct/jct\.php\? +# ||pixels.youknowbest.com^$third-party (easyprivacy.txt: 6221) +.pixels.youknowbest.com +# ||pixel.yola.com^ (easyprivacy.txt: 6220) +.pixel.yola.com +# ||pixel.yabidos.com^ (easyprivacy.txt: 6219) +.pixel.yabidos.com +# ||pixel.xmladfeed.com^$third-party (easyprivacy.txt: 6218) +.pixel.xmladfeed.com +# ||pixel.wp.com^ (easyprivacy.txt: 6217) +.pixel.wp.com +# ||pixel.vmm-satellite2.com^ (easyprivacy.txt: 6216) +.pixel.vmm-satellite2.com +# ||pixel.tree.com^ (easyprivacy.txt: 6215) +.pixel.tree.com +# ||pixel.solvemedia.com^ (easyprivacy.txt: 6214) +.pixel.solvemedia.com +# ||pixel.newsdata.com.au^ (easyprivacy.txt: 6213) +.pixel.newsdata.com.au +# ||pixel.newscred.com^ (easyprivacy.txt: 6212) +.pixel.newscred.com +# ||pixel.indieclicktv.com/annonymous/ (easyprivacy.txt: 6211) +.pixel.indieclicktv.com/annonymous/ +# ||pixel.glimr.io^ (easyprivacy.txt: 6210) +.pixel.glimr.io +# ||pixel.fanbridge.com^ (easyprivacy.txt: 6209) +.pixel.fanbridge.com +# ||pixel.condenastdigital.com^ (easyprivacy.txt: 6208) +.pixel.condenastdigital.com +# ||pixel.colorupmedia.com^ (easyprivacy.txt: 6207) +.pixel.colorupmedia.com +# ||pix.speedbit.com^$third-party (easyprivacy.txt: 6206) +.pix.speedbit.com +# ||pix.impdesk.com^ (easyprivacy.txt: 6205) +.pix.impdesk.com +# ||pipedream.wistia.com^ (easyprivacy.txt: 6204) +.pipedream.wistia.com +# ||pings.conviva.com^ (easyprivacy.txt: 6203) +.pings.conviva.com +# ||ping.smyte.com^ (easyprivacy.txt: 6202) +.ping.smyte.com +# ||ping.rasset.ie^ (easyprivacy.txt: 6201) +.ping.rasset.ie +# ||ping.hellobar.com^ (easyprivacy.txt: 6200) +.ping.hellobar.com +# ||ping.dozuki.com^ (easyprivacy.txt: 6199) +.ping.dozuki.com +# ||ping.aclst.com^ (easyprivacy.txt: 6198) +.ping.aclst.com +# ||pianomedia.biz/uid/$script (easyprivacy.txt: 6197) +.pianomedia.biz/uid/ +# ||piano-media.com/uid/$third-party (easyprivacy.txt: 6196) +.piano-media.com/uid/ +# ||piano-media.com/ping (easyprivacy.txt: 6195) +.piano-media.com/ping +# ||piano-media.com/bucket/novosense.swf$third-party (easyprivacy.txt: 6194) +.piano-media.com/bucket/novosense\.swf +# ||piano-media.com/auth/index.php? (easyprivacy.txt: 6193) +.piano-media.com/auth/index\.php\? +# ||phoenix.untd.com^ (easyprivacy.txt: 6192) +.phoenix.untd.com +# ||phncdn.com/js/ssig_helper.js (easyprivacy.txt: 6191) +.phncdn.com/js/ssig_helper\.js +# ||pg.buzzfeed.com^ (easyprivacy.txt: 6190) +.pg.buzzfeed.com +# ||pf.aclst.com^$third-party (easyprivacy.txt: 6189) +.pf.aclst.com +# ||petitionermaster.appspot.com^ (easyprivacy.txt: 6188) +.petitionermaster.appspot.com +# ||pebed.dm.gg^ (easyprivacy.txt: 6187) +.pebed.dm.gg +# ||pcrl.co/js/jstracker.min.js (easyprivacy.txt: 6186) +.pcrl.co/js/jstracker\.min\.js +# ||pcmag.com/rvb/$image (easyprivacy.txt: 6185) +.pcmag.com/rvb/ +# ||paypalobjects.com^*/pixel.gif (easyprivacy.txt: 6184) +.paypalobjects.com/.*/pixel\.gif +# ||paypal.com^*/pixel.gif$third-party (easyprivacy.txt: 6183) +.paypal.com/.*/pixel\.gif +# ||passport.pfn.bz^ (easyprivacy.txt: 6182) +.passport.pfn.bz +# ||partypoker.com^*/tracking- (easyprivacy.txt: 6181) +.partypoker.com/.*/tracking- +# ||partners.thefilter.com^ (easyprivacy.txt: 6180) +.partners.thefilter.com +# ||partner.cynapse.com^ (easyprivacy.txt: 6179) +.partner.cynapse.com +# ||pair.com/itero/tracker_ftc/ (easyprivacy.txt: 6178) +.pair.com/itero/tracker_ftc/ +# ||pageturnpro.com/tracker.aspx? (easyprivacy.txt: 6177) +.pageturnpro.com/tracker\.aspx\? +# ||p0.com/1x1 (easyprivacy.txt: 6176) +.p0.com/1x1 +# ||p.yotpo.com^ (easyprivacy.txt: 6175) +.p.yotpo.com +# ||p.po.st^*&vguid= (easyprivacy.txt: 6174) +.p.po.st/.*&vguid= +# ||p.po.st^*&pub= (easyprivacy.txt: 6173) +.p.po.st/.*&pub= +# ||p.po.st/p?t=view&$third-party (easyprivacy.txt: 6172) +.p.po.st/p\?t=view& +# ||p.po.st/p?pub= (easyprivacy.txt: 6171) +.p.po.st/p\?pub= +# ||p.dsero.net^ (easyprivacy.txt: 6170) +.p.dsero.net +# ||p.delivery.net^$third-party (easyprivacy.txt: 6169) +.p.delivery.net +# ||outbrain.com^*/widgetStatistics.js (easyprivacy.txt: 6168) +.outbrain.com/.*/widgetStatistics\.js +# ||orts.wixawin.com^$third-party (easyprivacy.txt: 6167) +.orts.wixawin.com +# ||ora.tv/j/ora_evttracking.js (easyprivacy.txt: 6166) +.ora.tv/j/ora_evttracking\.js +# ||optimizely.appspot.com^$third-party (easyprivacy.txt: 6165) +.optimizely.appspot.com +# ||ophan.co.uk/t.gif? (easyprivacy.txt: 6164) +.ophan.co.uk/t\.gif\? +# ||open.delivery.net^ (easyprivacy.txt: 6163) +.open.delivery.net +# ||ooyala.com^*/report?log (easyprivacy.txt: 6162) +.ooyala.com/.*/report\?log +# ||ooyala.com/verify? (easyprivacy.txt: 6161) +.ooyala.com/verify\? +# ||ooyala.com/sas/analytics? (easyprivacy.txt: 6160) +.ooyala.com/sas/analytics\? +# ||ooyala.com/authorized?analytics (easyprivacy.txt: 6159) +.ooyala.com/authorized\?analytics +# ||ooyala.com/3rdparty/comscore_ (easyprivacy.txt: 6158) +.ooyala.com/3rdparty/comscore_ +# ||oogala.com/impression.php? (easyprivacy.txt: 6157) +.oogala.com/impression\.php\? +# ||onsugar.com/static/ck.php? (easyprivacy.txt: 6156) +.onsugar.com/static/ck\.php\? +# ||onespot-tracking.herokuapp.com^ (easyprivacy.txt: 6155) +.onespot-tracking.herokuapp.com +# ||onescreen.net/os/static/pixels/ (easyprivacy.txt: 6154) +.onescreen.net/os/static/pixels/ +# ||om.1and1.co.uk^ (easyprivacy.txt: 6153) +.om.1and1.co.uk +# ||ohnorobot.com/verify.pl? (easyprivacy.txt: 6152) +.ohnorobot.com/verify\.pl\? +# ||offers.keynote.com^$third-party (easyprivacy.txt: 6151) +.offers.keynote.com +# ||offermatica.intuit.com^ (easyprivacy.txt: 6150) +.offermatica.intuit.com +# ||oddcast.com/event.php?$object-subrequest (easyprivacy.txt: 6149) +.oddcast.com/event\.php\? +# ||octopart-analytics.com^$third-party (easyprivacy.txt: 6148) +.octopart-analytics.com +# ||ocp.cnettv.com^*/Request.jsp? (easyprivacy.txt: 6147) +.ocp.cnettv.com/.*/Request\.jsp\? +# ||observer.ip-label.net^ (easyprivacy.txt: 6146) +.observer.ip-label.net +# ||o.aolcdn.com/js/mg1.js (easyprivacy.txt: 6145) +.o.aolcdn.com/js/mg1\.js +# ||o.addthis.com^ (easyprivacy.txt: 6144) +.o.addthis.com +# ||nude.hu/html/track.js (easyprivacy.txt: 6143) +.nude.hu/html/track\.js +# ||nspmotion.com/tracking/ (easyprivacy.txt: 6142) +.nspmotion.com/tracking/ +# ||nsdsvc.com/scripts/action-tracker.js (easyprivacy.txt: 6141) +.nsdsvc.com/scripts/action-tracker\.js +# ||ns.rvmkitt.com^ (easyprivacy.txt: 6140) +.ns.rvmkitt.com +# ||nova.dice.net^ (easyprivacy.txt: 6139) +.nova.dice.net +# ||nonxt1.c.youtube.com^$third-party (easyprivacy.txt: 6138) +.nonxt1.c.youtube.com +# ||nol.yahoo.com^ (easyprivacy.txt: 6137) +.nol.yahoo.com +# ||ninja.onap.io^ (easyprivacy.txt: 6136) +.ninja.onap.io +# ||newsletters.nationalgeographic.com^$image,third-party (easyprivacy.txt: 6135) +.newsletters.nationalgeographic.com +# ||newsletters.infoworld.com/db/$image,third-party (easyprivacy.txt: 6134) +.newsletters.infoworld.com/db/ +# ||newsanalytics.com.au^$third-party (easyprivacy.txt: 6133) +.newsanalytics.com.au +# ||neulion.vo.llnwd.net^*/track.js (easyprivacy.txt: 6132) +.neulion.vo.llnwd.net/.*/track\.js +# ||netscape.com/c.cgi? (easyprivacy.txt: 6131) +.netscape.com/c\.cgi\? +# ||netne.net/stats/ (easyprivacy.txt: 6130) +.netne.net/stats/ +# ||netbiscuits.net^*/analytics/ (easyprivacy.txt: 6129) +.netbiscuits.net/.*/analytics/ +# ||netalpaca.com/beacon (easyprivacy.txt: 6128) +.netalpaca.com/beacon +# ||neon-lab.com/neonbctracker.js (easyprivacy.txt: 6127) +.neon-lab.com/neonbctracker\.js +# ||neocounter.neoworx-blog-tools.net^ (easyprivacy.txt: 6126) +.neocounter.neoworx-blog-tools.net +# ||nbcudigitaladops.com/hosted/housepix.gif (easyprivacy.txt: 6125) +.nbcudigitaladops.com/hosted/housepix\.gif +# ||navlink.com/__utmala.js (easyprivacy.txt: 6124) +.navlink.com/__utmala\.js +# ||nastydollars.com/trk/ (easyprivacy.txt: 6123) +.nastydollars.com/trk/ +# ||mysociety.org/track/ (easyprivacy.txt: 6122) +.mysociety.org/track/ +# ||mysdcc.sdccd.edu^*/.log/ (easyprivacy.txt: 6121) +.mysdcc.sdccd.edu/.*/\.log/ +# ||myscoop-tracking.googlecode.com^$third-party (easyprivacy.txt: 6120) +.myscoop-tracking.googlecode.com +# ||mymarketing.co.il/Include/tracker.js (easyprivacy.txt: 6119) +.mymarketing.co.il/Include/tracker\.js +# ||myfreecams.com/mfc2/lib/o-mfccore.js (easyprivacy.txt: 6118) +.myfreecams.com/mfc2/lib/o-mfccore\.js +# ||myblueday.com^*/count.asp? (easyprivacy.txt: 6117) +.myblueday.com/.*/count\.asp\? +# ||mxmfb.com/rsps/img/ (easyprivacy.txt: 6116) +.mxmfb.com/rsps/img/ +# ||museter.com/track.php? (easyprivacy.txt: 6115) +.museter.com/track\.php\? +# ||mtvnservices.com/metrics/ (easyprivacy.txt: 6114) +.mtvnservices.com/metrics/ +# ||mtvnservices.com/aria/uuid.html (easyprivacy.txt: 6113) +.mtvnservices.com/aria/uuid\.html +# ||mtv.com^*spacer.gif? (easyprivacy.txt: 6112) +.mtv.com/.*spacer\.gif\? +# ||mts.mansion.com^$third-party (easyprivacy.txt: 6111) +.mts.mansion.com +# ||msecnd.net/scripts/a/ai.0.js (easyprivacy.txt: 6110) +.msecnd.net/scripts/a/ai\.0\.js +# ||msecnd.net/jscripts/HA-$script (easyprivacy.txt: 6109) +.msecnd.net/jscripts/HA- +# ||mozilla.org/page/*/open.gif$third-party (easyprivacy.txt: 6108) +.mozilla.org/page/.*/open\.gif +# ||modules.ooyala.com^*/analytics- (easyprivacy.txt: 6107) +.modules.ooyala.com/.*/analytics- +# ||mochiads.com/clk/ (easyprivacy.txt: 6106) +.mochiads.com/clk/ +# ||mmpstats.mirror-image.com^ (easyprivacy.txt: 6105) +.mmpstats.mirror-image.com +# ||mmi.bemobile.ua^ (easyprivacy.txt: 6104) +.mmi.bemobile.ua +# ||mlweb.dmlab.hu^ (easyprivacy.txt: 6103) +.mlweb.dmlab.hu +# ||ml.com/enterprisetagging/ (easyprivacy.txt: 6102) +.ml.com/enterprisetagging/ +# ||mkcms.com/stats.js (easyprivacy.txt: 6101) +.mkcms.com/stats\.js +# ||mitel.marketbright.com^ (easyprivacy.txt: 6100) +.mitel.marketbright.com +# ||mint.good.is^ (easyprivacy.txt: 6099) +.mint.good.is +# ||metro-trending-*.amazonaws.com^$third-party (easyprivacy.txt: 6098) +.metro-trending-*./.*\.amazonaws\.com[^\w%.-] +.metro-trending-*.amazonaws.com +# ||metrixlablw.customers.luna.net^ (easyprivacy.txt: 6097) +.metrixlablw.customers.luna.net +# ||metrics.wikinvest.com^ (easyprivacy.txt: 6096) +.metrics.wikinvest.com +# ||metrics.upcload.com^ (easyprivacy.txt: 6095) +.metrics.upcload.com +# ||metrics.toptenreviews.com^ (easyprivacy.txt: 6094) +.metrics.toptenreviews.com +# ||metrics.sonymusicd2c.com^ (easyprivacy.txt: 6093) +.metrics.sonymusicd2c.com +# ||metrics.seenon.com^ (easyprivacy.txt: 6092) +.metrics.seenon.com +# ||metrics.scribblelive.com^ (easyprivacy.txt: 6091) +.metrics.scribblelive.com +# ||metrics.loomia.com^ (easyprivacy.txt: 6090) +.metrics.loomia.com +# ||metrics.feedroom.com^ (easyprivacy.txt: 6089) +.metrics.feedroom.com +# ||metrics.el-mundo.net^ (easyprivacy.txt: 6088) +.metrics.el-mundo.net +# ||metrics.ctvdigital.net^ (easyprivacy.txt: 6087) +.metrics.ctvdigital.net +# ||metrics.chmedia.com^ (easyprivacy.txt: 6086) +.metrics.chmedia.com +# ||metrics.brightcove.com^ (easyprivacy.txt: 6085) +.metrics.brightcove.com +# ||metrics-api.librato.com^ (easyprivacy.txt: 6084) +.metrics-api.librato.com +# ||metric.nwsource.com^ (easyprivacy.txt: 6083) +.metric.nwsource.com +# ||metering.pagesuite.com^$third-party (easyprivacy.txt: 6082) +.metering.pagesuite.com +# ||metaffiliation.com^*^mclic= (easyprivacy.txt: 6081) +.metaffiliation.com/.*[^\w%.-]mclic= +# ||metabroadcast.com^*/log? (easyprivacy.txt: 6080) +.metabroadcast.com/.*/log\? +# ||merchenta.com/track/ (easyprivacy.txt: 6079) +.merchenta.com/track/ +# ||meebo.com/cim/sandbox.php? (easyprivacy.txt: 6078) +.meebo.com/cim/sandbox\.php\? +# ||mediego.com/tracker.js$third-party (easyprivacy.txt: 6077) +.mediego.com/tracker\.js +# ||mediaplex.com^*?mpt= (easyprivacy.txt: 6076) +.mediaplex.com/.*\?mpt= +# ||mediapartner.bigpoint.net^$third-party (easyprivacy.txt: 6075) +.mediapartner.bigpoint.net +# ||mediametrics.mpsa.com^ (easyprivacy.txt: 6074) +.mediametrics.mpsa.com +# ||mediaite.com^*/track/ (easyprivacy.txt: 6073) +.mediaite.com/.*/track/ +# ||mediabong.net/t/ (easyprivacy.txt: 6072) +.mediabong.net/t/ +# ||mediabong.com/t/ (easyprivacy.txt: 6071) +.mediabong.com/t/ +# ||media-imdb.com/twilight/? (easyprivacy.txt: 6070) +.media-imdb.com/twilight/\? +# ||mdctrail.com/b.ashx$third-party (easyprivacy.txt: 6069) +.mdctrail.com/b\.ashx +# ||mcssl.com^*/track.ashx? (easyprivacy.txt: 6068) +.mcssl.com/.*/track\.ashx\? +# ||mcs.delvenetworks.com^ (easyprivacy.txt: 6067) +.mcs.delvenetworks.com +# ||mc.yandex.ru^ (easyprivacy.txt: 6066) +.mc.yandex.ru +# ||mbsvr.net/js/tracker/ (easyprivacy.txt: 6065) +.mbsvr.net/js/tracker/ +# ||maxmind.com^*/geoip2.js (easyprivacy.txt: 6064) +.maxmind.com/.*/geoip2\.js +# ||maxmind.com^*/geoip.js (easyprivacy.txt: 6063) +.maxmind.com/.*/geoip\.js +# ||maxmind.com/js/device.js$third-party (easyprivacy.txt: 6062) +.maxmind.com/js/device\.js +# ||maxmind.com/app/$third-party (easyprivacy.txt: 6061) +.maxmind.com/app/ +# ||mashery.com/analytics/ (easyprivacy.txt: 6060) +.mashery.com/analytics/ +# ||marketinghub.hp.com^ (easyprivacy.txt: 6059) +.marketinghub.hp.com +# ||mansion.com/mts.tracker.js (easyprivacy.txt: 6058) +.mansion.com/mts\.tracker\.js +# ||mandrillapp.com/track/ (easyprivacy.txt: 6057) +.mandrillapp.com/track/ +# ||manager.tagcommander.com/utils/privacyHit.php?$third-party (easyprivacy.txt: 6056) +.manager.tagcommander.com/utils/privacyHit\.php\? +# ||mailmax.co.nz/login/open.php$third-party (easyprivacy.txt: 6055) +.mailmax.co.nz/login/open\.php +# ||mail.ru/k? (easyprivacy.txt: 6054) +.mail.ru/k\? +# ||mail.ebay.com/img/*.gif (easyprivacy.txt: 6053) +.mail.ebay.com/img/.*\.gif +# ||mail-app.com/pvtracker/ (easyprivacy.txt: 6052) +.mail-app.com/pvtracker/ +# ||magnify360-cdn.s3.amazonaws.com^ (easyprivacy.txt: 6051) +.magnify360-cdn.s3.amazonaws.com +# ||magnify.net/decor/track/ (easyprivacy.txt: 6050) +.magnify.net/decor/track/ +# ||m30w.net/engine/$image,third-party (easyprivacy.txt: 6049) +.m30w.net/engine/ +# ||m.trb.com^ (easyprivacy.txt: 6048) +.m.trb.com +# ||m.addthisedge.com^$third-party (easyprivacy.txt: 6047) +.m.addthisedge.com +# ||lycos.com/hb.js (easyprivacy.txt: 6046) +.lycos.com/hb\.js +# ||lunametrics.wpengine.netdna-cdn.com^ (easyprivacy.txt: 6045) +.lunametrics.wpengine.netdna-cdn.com +# ||luminate.com/track/ (easyprivacy.txt: 6044) +.luminate.com/track/ +# ||ltassrv.com/track/ (easyprivacy.txt: 6043) +.ltassrv.com/track/ +# ||lt.tritondigital.com^ (easyprivacy.txt: 6042) +.lt.tritondigital.com +# ||lsimg.net^*/vs.js (easyprivacy.txt: 6041) +.lsimg.net/.*/vs\.js +# ||lp.vadio.com^ (easyprivacy.txt: 6040) +.lp.vadio.com +# ||loxodo-analytics.ext.nile.works^ (easyprivacy.txt: 6039) +.loxodo-analytics.ext.nile.works +# ||loop11.com^$third-party (easyprivacy.txt: 6038) +.loop11.com +# ||loomia.com^*/setcookie.html (easyprivacy.txt: 6037) +.loomia.com/.*/setcookie\.html +# ||longurl.it/_t.gif?$third-party (easyprivacy.txt: 6036) +.longurl.it/_t\.gif\? +# ||longtailvideo.com^*/yourlytics- (easyprivacy.txt: 6035) +.longtailvideo.com/.*/yourlytics- +# ||logssl.enquisite.com^ (easyprivacy.txt: 6034) +.logssl.enquisite.com +# ||logs.vmixcore.com^ (easyprivacy.txt: 6033) +.logs.vmixcore.com +# ||logs.thebloggernetwork.com^ (easyprivacy.txt: 6032) +.logs.thebloggernetwork.com +# ||logs.spilgames.com^ (easyprivacy.txt: 6031) +.logs.spilgames.com +# ||loggingapi.spingo.com^ (easyprivacy.txt: 6030) +.loggingapi.spingo.com +# ||logging.carambo.la^ (easyprivacy.txt: 6029) +.logging.carambo.la +# ||logger.sociablelabs.com^ (easyprivacy.txt: 6028) +.logger.sociablelabs.com +# ||logger.logidea.info^ (easyprivacy.txt: 6027) +.logger.logidea.info +# ||log1.survey.io^ (easyprivacy.txt: 6026) +.log1.survey.io +# ||log000.goo.ne.jp^$third-party (easyprivacy.txt: 6025) +.log000.goo.ne.jp +# ||log.prezi.com^ (easyprivacy.txt: 6024) +.log.prezi.com +# ||log.pinterest.com^ (easyprivacy.txt: 6023) +.log.pinterest.com +# ||log.outbrain.com^ (easyprivacy.txt: 6022) +.log.outbrain.com +# ||log.olark.com^ (easyprivacy.txt: 6021) +.log.olark.com +# ||log.liverail.com^ (easyprivacy.txt: 6020) +.log.liverail.com +# ||log.kukuplay.com^$third-party (easyprivacy.txt: 6019) +.log.kukuplay.com +# ||log.kibboko.com^ (easyprivacy.txt: 6018) +.log.kibboko.com +# ||log.invodo.com^ (easyprivacy.txt: 6017) +.log.invodo.com +# ||log.ideamelt.com^ (easyprivacy.txt: 6016) +.log.ideamelt.com +# ||log.adap.tv^$object-subrequest (easyprivacy.txt: 6015) +.log.adap.tv +# ||log-*.previewnetworks.com^ (easyprivacy.txt: 6014) +.log-*./.*\.previewnetworks\.com[^\w%.-] +.log-*.previewnetworks.com +# ||lockerz.com/1x1.gif? (easyprivacy.txt: 6013) +.lockerz.com/1x1\.gif\? +# ||location3.com/analytics/ (easyprivacy.txt: 6012) +.location3.com/analytics/ +# ||livestats.kaltura.com^ (easyprivacy.txt: 6011) +.livestats.kaltura.com +# ||liverail.com/track/? (easyprivacy.txt: 6010) +.liverail.com/track/\? +# ||liverail.com/?metric= (easyprivacy.txt: 6009) +.liverail.com/\?metric= +# ||livehelpnow.net/lhn/jsutil/getinvitationmessage.aspx? (easyprivacy.txt: 6008) +.livehelpnow.net/lhn/jsutil/getinvitationmessage\.aspx\? +# ||livefyre.com^*/tracking/ (easyprivacy.txt: 6007) +.livefyre.com/.*/tracking/ +# ||livefyre.com^*/tracker.js (easyprivacy.txt: 6006) +.livefyre.com/.*/tracker\.js +# ||livefyre.com/tracking/ (easyprivacy.txt: 6005) +.livefyre.com/tracking/ +# ||livefyre.com/libs/tracker/ (easyprivacy.txt: 6004) +.livefyre.com/libs/tracker/ +# ||livecounter.theyosh.nl^ (easyprivacy.txt: 6003) +.livecounter.theyosh.nl +# ||livechatinc.com^*/control.cgi? (easyprivacy.txt: 6002) +.livechatinc.com/.*/control\.cgi\? +# ||live2support.com^*/js_lstrk. (easyprivacy.txt: 6001) +.live2support.com/.*/js_lstrk\. +# ||list.fightforthefuture.org/mpss/o/*/o.gif (easyprivacy.txt: 6000) +.list.fightforthefuture.org/mpss/o/.*/o\.gif +# ||list-manage.com/track/ (easyprivacy.txt: 5999) +.list-manage.com/track/ +# ||linkwithin.com/pixel.png (easyprivacy.txt: 5998) +.linkwithin.com/pixel\.png +# ||linkedin.com/lite/rum-track?$image,third-party (easyprivacy.txt: 5997) +.linkedin.com/lite/rum-track\? +# ||linkedin.com/emimp/$image (easyprivacy.txt: 5996) +.linkedin.com/emimp/ +# ||linkbucks.com/visitScript/ (easyprivacy.txt: 5995) +.linkbucks.com/visitScript/ +# ||link.informer.com^ (easyprivacy.txt: 5994) +.link.informer.com +# ||link.indiegogo.com/img/ (easyprivacy.txt: 5993) +.link.indiegogo.com/img/ +# ||link.huffingtonpost.com^$third-party (easyprivacy.txt: 5992) +.link.huffingtonpost.com +# ||link.americastestkitchencorp.com^ (easyprivacy.txt: 5991) +.link.americastestkitchencorp.com +# ||lingows.appspot.com/page_data/? (easyprivacy.txt: 5990) +.lingows.appspot.com/page_data/\? +# ||lijit.com^*.containertag.min.js$third-party (easyprivacy.txt: 5989) +.lijit.com/.*\.containertag\.min\.js +# ||lijit.com/res/images/wijitTrack.gif (easyprivacy.txt: 5988) +.lijit.com/res/images/wijitTrack\.gif +# ||lijit.com/ip.php? (easyprivacy.txt: 5987) +.lijit.com/ip\.php\? +# ||lijit.com/blog_wijits?*=trakr& (easyprivacy.txt: 5986) +.lijit.com/blog_wijits\?.*=trakr& +# ||lela.com/api/v2/tracking.js (easyprivacy.txt: 5985) +.lela.com/api/v2/tracking\.js +# ||legacy.com^*/unicaclicktracking.js? (easyprivacy.txt: 5984) +.legacy.com/.*/unicaclicktracking\.js\? +# ||legacy.com/globalscripts/tracking/ (easyprivacy.txt: 5983) +.legacy.com/globalscripts/tracking/ +# ||lederer.nl/incl/stats.js.php? (easyprivacy.txt: 5982) +.lederer.nl/incl/stats\.js\.php\? +# ||leadvision.dotmailer.co.uk^$third-party (easyprivacy.txt: 5981) +.leadvision.dotmailer.co.uk +# ||leadtracking.plumvoice.com^ (easyprivacy.txt: 5980) +.leadtracking.plumvoice.com +# ||leadpages.net^*/tracking.js (easyprivacy.txt: 5979) +.leadpages.net/.*/tracking\.js +# ||lct.salesforce.com^$third-party (easyprivacy.txt: 5978) +.lct.salesforce.com +# ||laurel.rovicorp.com^ (easyprivacy.txt: 5977) +.laurel.rovicorp.com +# ||laurel.macrovision.com^ (easyprivacy.txt: 5976) +.laurel.macrovision.com +# ||l.sharethis.com^ (easyprivacy.txt: 5975) +.l.sharethis.com +# ||l.player.ooyala.com^ (easyprivacy.txt: 5974) +.l.player.ooyala.com +# ||l.ooyala.com^ (easyprivacy.txt: 5973) +.l.ooyala.com +# ||l.fairblocker.com^$third-party (easyprivacy.txt: 5972) +.l.fairblocker.com +# ||l.coincident.tv^ (easyprivacy.txt: 5971) +.l.coincident.tv +# ||l-host.net/etn/omnilog? (easyprivacy.txt: 5970) +.l-host.net/etn/omnilog\? +# ||kiwari.com^*/impressions.asp? (easyprivacy.txt: 5969) +.kiwari.com/.*/impressions\.asp\? +# ||keyword.daumdn.com^ (easyprivacy.txt: 5968) +.keyword.daumdn.com +# ||keywee.co/analytics.js? (easyprivacy.txt: 5967) +.keywee.co/analytics\.js\? +# ||key4web.com^*/set_cookie_by_referer/ (easyprivacy.txt: 5966) +.key4web.com/.*/set_cookie_by_referer/ +# ||kdpgroupe.com/ea.js (easyprivacy.txt: 5965) +.kdpgroupe.com/ea\.js +# ||kbb.com/partner/$third-party (easyprivacy.txt: 5964) +.kbb.com/partner/ +# ||kaltura.com^*/statisticsPlugin.swf (easyprivacy.txt: 5963) +.kaltura.com/.*/statisticsPlugin\.swf +# ||kalstats.kaltura.com^ (easyprivacy.txt: 5962) +.kalstats.kaltura.com +# ||k7-labelgroup.com/g.html?uid=$image (easyprivacy.txt: 5961) +.k7-labelgroup.com/g\.html\?uid= +# ||jsrdn.com/i/1.gif? (easyprivacy.txt: 5960) +.jsrdn.com/i/1\.gif\? +# ||jotform.io/getReferrer/$third-party (easyprivacy.txt: 5959) +.jotform.io/getReferrer/ +# ||join-safe.com/tracking/ (easyprivacy.txt: 5958) +.join-safe.com/tracking/ +# ||jobvite.com/analytics.js (easyprivacy.txt: 5957) +.jobvite.com/analytics\.js +# ||jobs.hrkspjbs.com^ (easyprivacy.txt: 5956) +.jobs.hrkspjbs.com +# ||javascriptcounter.appspot.com^ (easyprivacy.txt: 5955) +.javascriptcounter.appspot.com +# ||jangomail.com^*?UID$third-party (easyprivacy.txt: 5954) +.jangomail.com/.*\?UID +# ||jailbaitchan.com/tp/ (easyprivacy.txt: 5953) +.jailbaitchan.com/tp/ +# ||iyisayfa.net/inc.php? (easyprivacy.txt: 5952) +.iyisayfa.net/inc\.php\? +# ||itracking.fccinteractive.com^ (easyprivacy.txt: 5951) +.itracking.fccinteractive.com +# ||isacglobal.com/sa.js (easyprivacy.txt: 5950) +.isacglobal.com/sa\.js +# ||intuitwebsites.com/tracking/ (easyprivacy.txt: 5949) +.intuitwebsites.com/tracking/ +# ||internetfuel.com/tracking/ (easyprivacy.txt: 5948) +.internetfuel.com/tracking/ +# ||interestsearch.net/videoTracker.js? (easyprivacy.txt: 5947) +.interestsearch.net/videoTracker\.js\? +# ||intensedebate.com/widgets/blogstats/ (easyprivacy.txt: 5945) +.intensedebate.com/widgets/blogstats/ +# ||intensedebate.com/remotevisit.php? (easyprivacy.txt: 5944) +.intensedebate.com/remotevisit\.php\? +# ||intelligencefocus.com^*/websensor.aspx? (easyprivacy.txt: 5943) +.intelligencefocus.com/.*/websensor\.aspx\? +# ||intelligencefocus.com^*/sensor.js (easyprivacy.txt: 5942) +.intelligencefocus.com/.*/sensor\.js +# ||intelligence.dgmsearchlab.com^ (easyprivacy.txt: 5941) +.intelligence.dgmsearchlab.com +# ||installiq.com/Pixels/ (easyprivacy.txt: 5940) +.installiq.com/Pixels/ +# ||insnw.net/instart/js/instart.js (easyprivacy.txt: 5939) +.insnw.net/instart/js/instart\.js +# ||insnw.net/assets/dsc/dsc.fingerprint- (easyprivacy.txt: 5938) +.insnw.net/assets/dsc/dsc\.fingerprint- +# ||insights.gravity.com^ (easyprivacy.txt: 5937) +.insights.gravity.com +# ||insight.mintel.com^$third-party (easyprivacy.txt: 5936) +.insight.mintel.com +# ||inq.com^*/onEvent?_ (easyprivacy.txt: 5935) +.inq.com/.*/onEvent\?_ +# ||inq.com/tagserver/tracking/ (easyprivacy.txt: 5934) +.inq.com/tagserver/tracking/ +# ||inq.com/tagserver/logging/ (easyprivacy.txt: 5933) +.inq.com/tagserver/logging/ +# ||inphonic.com/tracking/ (easyprivacy.txt: 5932) +.inphonic.com/tracking/ +# ||infusionsoft.com^*/getTrackingCode? (easyprivacy.txt: 5931) +.infusionsoft.com/.*/getTrackingCode\? +# ||infosniper.net/locate-ip-on-map.php (easyprivacy.txt: 5930) +.infosniper.net/locate-ip-on-map\.php +# ||infogr.am/logger.php? (easyprivacy.txt: 5929) +.infogr.am/logger\.php\? +# ||ind.sh/view.php?$third-party (easyprivacy.txt: 5928) +.ind.sh/view\.php\? +# ||inboxtag.com/tag.swf (easyprivacy.txt: 5927) +.inboxtag.com/tag\.swf +# ||impi.tv/trackvideo.aspx? (easyprivacy.txt: 5926) +.impi.tv/trackvideo\.aspx\? +# ||imp.pix.com^ (easyprivacy.txt: 5925) +.imp.pix.com +# ||imp.constantcontact.com^$third-party (easyprivacy.txt: 5924) +.imp.constantcontact.com +# ||imp.clickability.com^$third-party (easyprivacy.txt: 5923) +.imp.clickability.com +# ||imp.affiliator.com^$third-party (easyprivacy.txt: 5922) +.imp.affiliator.com +# ||imghostsrc.com/counter.php? (easyprivacy.txt: 5921) +.imghostsrc.com/counter\.php\? +# ||imgfarm.com^*/mw.gif?$third-party (easyprivacy.txt: 5920) +.imgfarm.com/.*/mw\.gif\? +# ||imgfarm.com/images/trk/myexcitetr.gif? (easyprivacy.txt: 5919) +.imgfarm.com/images/trk/myexcitetr\.gif\? +# ||imgfarm.com/images/nocache/tr/*.gif?$image (easyprivacy.txt: 5918) +.imgfarm.com/images/nocache/tr/.*\.gif\? +# ||imageshack.us^*/thpix.gif (easyprivacy.txt: 5917) +.imageshack.us/.*/thpix\.gif +# ||images-amazon.com^*/AnalyticsReporter- (easyprivacy.txt: 5916) +.images-amazon.com/.*/AnalyticsReporter- +# ||images-amazon.com^*/Analytics- (easyprivacy.txt: 5915) +.images-amazon.com/.*/Analytics- +# ||images-amazon.com^*/1x1_trans.gif (easyprivacy.txt: 5914) +.images-amazon.com/.*/1x1_trans\.gif +# ||images-amazon.com/images^*/analytics/$third-party (easyprivacy.txt: 5913) +.images-amazon.com/images[^\w%.-].*/analytics/ +# ||images-amazon.com/images/*/third-party/tracker$third-party (easyprivacy.txt: 5912) +.images-amazon.com/images/.*/third-party/tracker +# ||images-amazon.com/images/*/ga.js$third-party (easyprivacy.txt: 5911) +.images-amazon.com/images/.*/ga\.js +# ||imagepix.okoshechka.net^*/?sid= (easyprivacy.txt: 5910) +.imagepix.okoshechka.net/.*/\?sid= +# ||imagedoll.com^$subdocument,third-party (easyprivacy.txt: 5909) +.imagedoll.com +# ||ihstats.cloudapp.net^$third-party (easyprivacy.txt: 5908) +.ihstats.cloudapp.net +# ||icbdr.com/images/pixel.gif (easyprivacy.txt: 5907) +.icbdr.com/images/pixel\.gif +# ||i.s-microsoft.com/wedcs/ms.js (easyprivacy.txt: 5906) +.i.s-microsoft.com/wedcs/ms\.js +# ||i-stats.ieurop.net^ (easyprivacy.txt: 5905) +.i-stats.ieurop.net +# ||hubspot.com/tracking/ (easyprivacy.txt: 5904) +.hubspot.com/tracking/ +# ||hubspot.com/cs/loader-v2.js (easyprivacy.txt: 5903) +.hubspot.com/cs/loader-v2\.js +# ||hubspot.com/analytics/ (easyprivacy.txt: 5902) +.hubspot.com/analytics/ +# ||hqq.tv/js/counters.js (easyprivacy.txt: 5901) +.hqq.tv/js/counters\.js +# ||hostingtoolbox.com/bin/Count.cgi? (easyprivacy.txt: 5900) +.hostingtoolbox.com/bin/Count\.cgi\? +# ||hornymatches.com^*/visit.php? (easyprivacy.txt: 5899) +.hornymatches.com/.*/visit\.php\? +# ||hop.clickbank.net^ (easyprivacy.txt: 5898) +.hop.clickbank.net +# ||homestore.com/srv/ (easyprivacy.txt: 5897) +.homestore.com/srv/ +# ||hm.baidu.com^$third-party (easyprivacy.txt: 5896) +.hm.baidu.com +# ||hits.informer.com^ (easyprivacy.txt: 5895) +.hits.informer.com +# ||hits.dealer.com^ (easyprivacy.txt: 5894) +.hits.dealer.com +# ||hits-*.iubenda.com^ (easyprivacy.txt: 5893) +.hits-*./.*\.iubenda\.com[^\w%.-] +.hits-*.iubenda.com +# ||hi.hellobar.com^ (easyprivacy.txt: 5892) +.hi.hellobar.com +# ||hgcdn.net/?$third-party (easyprivacy.txt: 5891) +.hgcdn.net/\? +# ||heroku.com/?callback=getip$third-party (easyprivacy.txt: 5890) +.heroku.com/\?callback=getip +# ||hellobar.com/ping? (easyprivacy.txt: 5889) +.hellobar.com/ping\? +# ||hearstmags.com^*/hdm-lib_hearstuser_proxy.html$third-party (easyprivacy.txt: 5888) +.hearstmags.com/.*/hdm-lib_hearstuser_proxy\.html +# ||heals.msgfocus.com^$third-party (easyprivacy.txt: 5887) +.heals.msgfocus.com +# ||haymarket.com/injector/deliver/ (easyprivacy.txt: 5886) +.haymarket.com/injector/deliver/ +# ||hasbro.com/includes/js/metrics/ (easyprivacy.txt: 5885) +.hasbro.com/includes/js/metrics/ +# ||harvester.ext.square-enix-europe.com^ (easyprivacy.txt: 5884) +.harvester.ext.square-enix-europe.com +# ||gubagoo.com/modules/tracking/ (easyprivacy.txt: 5883) +.gubagoo.com/modules/tracking/ +# ||gu-pix.appspot.com^$third-party (easyprivacy.txt: 5882) +.gu-pix.appspot.com +# ||gstatic.com/gen_204? (easyprivacy.txt: 5881) +.gstatic.com/gen_204\? +# ||gstatic.com/gadf/ga_dyn.js (easyprivacy.txt: 5880) +.gstatic.com/gadf/ga_dyn\.js +# ||gscounters.us1.gigya.com^ (easyprivacy.txt: 5879) +.gscounters.us1.gigya.com +# ||gscounters.gigya.com^ (easyprivacy.txt: 5878) +.gscounters.gigya.com +# ||gscounters.eu1.gigya.com^ (easyprivacy.txt: 5877) +.gscounters.eu1.gigya.com +# ||gridsumdissector.com/gs.gif? (easyprivacy.txt: 5876) +.gridsumdissector.com/gs\.gif\? +# ||gravity.com^*/beacons/ (easyprivacy.txt: 5875) +.gravity.com/.*/beacons/ +# ||grabnetworks.com/ping? (easyprivacy.txt: 5874) +.grabnetworks.com/ping\? +# ||grabnetworks.com/beacons/ (easyprivacy.txt: 5873) +.grabnetworks.com/beacons/ +# ||gowatchit.com^*/tracking/ (easyprivacy.txt: 5872) +.gowatchit.com/.*/tracking/ +# ||gotmojo.com/track/ (easyprivacy.txt: 5871) +.gotmojo.com/track/ +# ||gotdns.com/track/blank.aspx? (easyprivacy.txt: 5870) +.gotdns.com/track/blank\.aspx\? +# ||goroost.com/api/pageview? (easyprivacy.txt: 5869) +.goroost.com/api/pageview\? +# ||googleusercontent.com/tracker/ (easyprivacy.txt: 5868) +.googleusercontent.com/tracker/ +# ||googlecode.com^*/tracker.js (easyprivacy.txt: 5867) +.googlecode.com/.*/tracker\.js +# ||googleapis.com^*/gen_204? (easyprivacy.txt: 5866) +.googleapis.com/.*/gen_204\? +# ||godaddy.com/js/gdwebbeacon.js (easyprivacy.txt: 5865) +.godaddy.com/js/gdwebbeacon\.js +# ||goaww.com/stats.php (easyprivacy.txt: 5864) +.goaww.com/stats\.php +# ||goals.ar.gy/bug.gif? (easyprivacy.txt: 5863) +.goals.ar.gy/bug\.gif\? +# ||goadv.com^*/track.js (easyprivacy.txt: 5862) +.goadv.com/.*/track\.js +# ||go.toutapp.com^$third-party (easyprivacy.txt: 5861) +.go.toutapp.com +# ||go.optifuze.com^ (easyprivacy.txt: 5860) +.go.optifuze.com +# ||go-stats.dlinkddns.com^$third-party (easyprivacy.txt: 5859) +.go-stats.dlinkddns.com +# ||glbdns.microsoft.com^ (easyprivacy.txt: 5858) +.glbdns.microsoft.com +# ||glam.com/ctagsimgcmd.act? (easyprivacy.txt: 5857) +.glam.com/ctagsimgcmd\.act\? +# ||glam.com/cece/agof/ (easyprivacy.txt: 5856) +.glam.com/cece/agof/ +# ||github.com/notifications/beacon/ (easyprivacy.txt: 5855) +.github.com/notifications/beacon/ +# ||gigya.com^*/cimp.gif? (easyprivacy.txt: 5854) +.gigya.com/.*/cimp\.gif\? +# ||getrockerbox.com/pixel? (easyprivacy.txt: 5853) +.getrockerbox.com/pixel\? +# ||getpos.de/ext/ (easyprivacy.txt: 5852) +.getpos.de/ext/ +# ||getkudos.me/a?$image (easyprivacy.txt: 5851) +.getkudos.me/a\? +# ||getglue.com^*/count? (easyprivacy.txt: 5850) +.getglue.com/.*/count\? +# ||geoservice.curse.com^ (easyprivacy.txt: 5849) +.geoservice.curse.com +# ||geolocation.performgroup.com^ (easyprivacy.txt: 5848) +.geolocation.performgroup.com +# ||geoip.taskforce.is^ (easyprivacy.txt: 5847) +.geoip.taskforce.is +# ||geobar.ziffdavisinternational.com^ (easyprivacy.txt: 5846) +.geobar.ziffdavisinternational.com +# ||geo.query.yahoo.com^ (easyprivacy.txt: 5845) +.geo.query.yahoo.com +# ||geo.q5media.net^ (easyprivacy.txt: 5844) +.geo.q5media.net +# ||geo.ltassrv.com^ (easyprivacy.txt: 5843) +.geo.ltassrv.com +# ||geo.kontagent.net^ (easyprivacy.txt: 5842) +.geo.kontagent.net +# ||geo.gexo.com/geo.js$third-party (easyprivacy.txt: 5841) +.geo.gexo.com/geo\.js +# ||geo.ertya.com^ (easyprivacy.txt: 5840) +.geo.ertya.com +# ||geckofoot.com/gfvisitormap.aspx? (easyprivacy.txt: 5839) +.geckofoot.com/gfvisitormap\.aspx\? +# ||geckofoot.com/gfcounterimg.aspx? (easyprivacy.txt: 5838) +.geckofoot.com/gfcounterimg\.aspx\? +# ||gcion.com/gcion.ashx? (easyprivacy.txt: 5837) +.gcion.com/gcion\.ashx\? +# ||gatehousemedia.com/wickedlocal/ip.js (easyprivacy.txt: 5836) +.gatehousemedia.com/wickedlocal/ip\.js +# ||gamegecko.com/gametrack? (easyprivacy.txt: 5835) +.gamegecko.com/gametrack\? +# ||ga.webdigi.co.uk^ (easyprivacy.txt: 5834) +.ga.webdigi.co.uk +# ||ga-beacon.appspot.com^ (easyprivacy.txt: 5833) +.ga-beacon.appspot.com +# ||g.delivery.net^$third-party (easyprivacy.txt: 5832) +.g.delivery.net +# ||fyre.co^*/tracking/ (easyprivacy.txt: 5831) +.fyre.co/.*/tracking/ +# ||fwix.com^*/trackclicks_ (easyprivacy.txt: 5830) +.fwix.com/.*/trackclicks_ +# ||fwix.com/ref.js (easyprivacy.txt: 5829) +.fwix.com/ref\.js +# ||ftimg.net/js/log.js? (easyprivacy.txt: 5828) +.ftimg.net/js/log\.js\? +# ||friends.totallynsfw.com^ (easyprivacy.txt: 5826) +.friends.totallynsfw.com +# ||freehostedscripts.net^*.php?site=*&s=*&h=$third-party (easyprivacy.txt: 5825) +.freehostedscripts.net/.*\.php\?site=.*&s=.*&h= +# ||freedom.com^*/analytics/ (easyprivacy.txt: 5824) +.freedom.com/.*/analytics/ +# ||freedom.com^*/analytic/ (easyprivacy.txt: 5823) +.freedom.com/.*/analytic/ +# ||freecurrencyrates.com/statgif. (easyprivacy.txt: 5822) +.freecurrencyrates.com/statgif\. +# ||foxcontent.com/tracking/ (easyprivacy.txt: 5821) +.foxcontent.com/tracking/ +# ||forms.aweber.com^*/displays.htm?id= (easyprivacy.txt: 5820) +.forms.aweber.com/.*/displays\.htm\?id= +# ||footballmedia.com/tracking/ (easyprivacy.txt: 5819) +.footballmedia.com/tracking/ +# ||fonts.com/t/trackingCode.js (easyprivacy.txt: 5818) +.fonts.com/t/trackingCode\.js +# ||followistic.com/widget/stat/ (easyprivacy.txt: 5817) +.followistic.com/widget/stat/ +# ||flux.com/geo.html? (easyprivacy.txt: 5816) +.flux.com/geo\.html\? +# ||fls-na.amazon.com^ (easyprivacy.txt: 5815) +.fls-na.amazon.com +# ||flixster.com^*/analytics. (easyprivacy.txt: 5814) +.flixster.com/.*/analytics\. +# ||fliqz.com/metrics/$~object-subrequest (easyprivacy.txt: 5813) +.fliqz.com/metrics/ +# ||flex.msn.com/mstag/ (easyprivacy.txt: 5812) +.flex.msn.com/mstag/ +# ||flashstats.libsyn.com^ (easyprivacy.txt: 5811) +.flashstats.libsyn.com +# ||flashi.tv/histats.php? (easyprivacy.txt: 5810) +.flashi.tv/histats\.php\? +# ||filesonic.com/referral/$third-party (easyprivacy.txt: 5809) +.filesonic.com/referral/ +# ||filament-stats.herokuapp.com^ (easyprivacy.txt: 5808) +.filament-stats.herokuapp.com +# ||feedsportal.com^*/1x1.gif? (easyprivacy.txt: 5807) +.feedsportal.com/.*/1x1\.gif\? +# ||feedcat.net/button/ (easyprivacy.txt: 5806) +.feedcat.net/button/ +# ||feedblitz.com^*.gif?$third-party (easyprivacy.txt: 5805) +.feedblitz.com/.*\.gif\? +# ||feedblitz.com/imp?$third-party (easyprivacy.txt: 5804) +.feedblitz.com/imp\? +# ||feed.informer.com/fdstats (easyprivacy.txt: 5803) +.feed.informer.com/fdstats +# ||fastcounter.onlinehoster.net^ (easyprivacy.txt: 5802) +.fastcounter.onlinehoster.net +# ||fastcounter.bcentral.com^ (easyprivacy.txt: 5801) +.fastcounter.bcentral.com +# ||fairfax.com.au/js/track/ (easyprivacy.txt: 5800) +.fairfax.com.au/js/track/ +# ||facebook.com^*/tracking.js$third-party (easyprivacy.txt: 5799) +.facebook.com/.*/tracking\.js +# ||facebook.com/tr? (easyprivacy.txt: 5798) +.facebook.com/tr\? +# ||facebook.com/tr/? (easyprivacy.txt: 5797) +.facebook.com/tr/\? +# ||facebook.com/offsite_event.php$third-party (easyprivacy.txt: 5796) +.facebook.com/offsite_event\.php +# ||facebook.com/js/conversions/tracking.js (easyprivacy.txt: 5795) +.facebook.com/js/conversions/tracking\.js +# ||facebook.com/fr/u.php? (easyprivacy.txt: 5794) +.facebook.com/fr/u\.php\? +# ||facebook.com/email_open_log_pic.php (easyprivacy.txt: 5793) +.facebook.com/email_open_log_pic\.php +# ||facebook.com/common/scribe_endpoint.php (easyprivacy.txt: 5792) +.facebook.com/common/scribe_endpoint\.php +# ||facebook.com/brandlift.php (easyprivacy.txt: 5791) +.facebook.com/brandlift\.php +# ||facebook.com*/impression.php (easyprivacy.txt: 5790) +.facebook.com*./(.*/)?impression\.php +# ||exct.net/open.aspx? (easyprivacy.txt: 5789) +.exct.net/open\.aspx\? +# ||evt.collarity.com^$image (easyprivacy.txt: 5788) +.evt.collarity.com +# ||evri.com/analytics/ (easyprivacy.txt: 5787) +.evri.com/analytics/ +# ||eveonline.com/redir.asp$third-party (easyprivacy.txt: 5786) +.eveonline.com/redir\.asp +# ||eventtracker.videostrip.com^$third-party (easyprivacy.txt: 5785) +.eventtracker.videostrip.com +# ||events.realgravity.com^ (easyprivacy.txt: 5784) +.events.realgravity.com +# ||events.marquee-cdn.net^ (easyprivacy.txt: 5783) +.events.marquee-cdn.net +# ||events.jotform.com^ (easyprivacy.txt: 5782) +.events.jotform.com +# ||events.eyeviewdigital.com^*.gif?r= (easyprivacy.txt: 5781) +.events.eyeviewdigital.com/.*\.gif\?r= +# ||eventlog.inspsearchapi.com^ (easyprivacy.txt: 5780) +.eventlog.inspsearchapi.com +# ||eventlog.inspsearch.com^ (easyprivacy.txt: 5779) +.eventlog.inspsearch.com +# ||event.trove.com^ (easyprivacy.txt: 5778) +.event.trove.com +# ||event.previewnetworks.com^ (easyprivacy.txt: 5777) +.event.previewnetworks.com +# ||event.loyalty.bigdoor.com^$third-party (easyprivacy.txt: 5776) +.event.loyalty.bigdoor.com +# ||eulerian.sarenza.com/collector/ (easyprivacy.txt: 5775) +.eulerian.sarenza.com/collector/ +# ||etoro.com/tradesmonitor/ (easyprivacy.txt: 5774) +.etoro.com/tradesmonitor/ +# ||etc.grab.com^$image,third-party (easyprivacy.txt: 5773) +.etc.grab.com +# ||etahub.com^*/track?site_id (easyprivacy.txt: 5772) +.etahub.com/.*/track\?site_id +# ||et.grabnetworks.com^ (easyprivacy.txt: 5771) +.et.grabnetworks.com +# ||eservicesanalytics.com.au^ (easyprivacy.txt: 5770) +.eservicesanalytics.com.au +# ||erne.co/tags? (easyprivacy.txt: 5769) +.erne.co/tags\? +# ||epromote.co.za/track/ (easyprivacy.txt: 5768) +.epromote.co.za/track/ +# ||entry-stats.huffpost.com^ (easyprivacy.txt: 5767) +.entry-stats.huffpost.com +# ||ensighten.com/error/e.php? (easyprivacy.txt: 5766) +.ensighten.com/error/e\.php\? +# ||enews.pcmag.com/db/$third-party (easyprivacy.txt: 5765) +.enews.pcmag.com/db/ +# ||emsecure.net/optiext/webtracker.dll (easyprivacy.txt: 5764) +.emsecure.net/optiext/webtracker\.dll +# ||emihosting.com^*/tracking/ (easyprivacy.txt: 5763) +.emihosting.com/.*/tracking/ +# ||embed.docstoc.com/Flash.asmx/StoreReffer? (easyprivacy.txt: 5762) +.embed.docstoc.com/Flash\.asmx/StoreReffer\? +# ||emarketeer.com/tracker/ (easyprivacy.txt: 5761) +.emarketeer.com/tracker/ +# ||email.mediafire.com/wf/open?$third-party (easyprivacy.txt: 5760) +.email.mediafire.com/wf/open\? +# ||email-edg.paypal.com/o/$image (easyprivacy.txt: 5759) +.email-edg.paypal.com/o/ +# ||els-cdn.com^*/analytics.js (easyprivacy.txt: 5758) +.els-cdn.com/.*/analytics\.js +# ||elb.amazonaws.com/small.gif? (easyprivacy.txt: 5757) +.elb.amazonaws.com/small\.gif\? +# ||elb.amazonaws.com/partner.gif? (easyprivacy.txt: 5756) +.elb.amazonaws.com/partner\.gif\? +# ||elb.amazonaws.com/g.aspx?surl= (easyprivacy.txt: 5755) +.elb.amazonaws.com/g\.aspx\?surl= +# ||elb.amazonaws.com/?page=$image (easyprivacy.txt: 5754) +.elb.amazonaws.com/\?page= +# ||edw.insideline.com^$third-party (easyprivacy.txt: 5753) +.edw.insideline.com +# ||edgesuite.net^*/googleanalyt (easyprivacy.txt: 5752) +.edgesuite.net/.*/googleanalyt +# ||edge.sqweb.com^ (easyprivacy.txt: 5751) +.edge.sqweb.com +# ||edge.bredg.com^$third-party (easyprivacy.txt: 5750) +.edge.bredg.com +# ||ecustomeropinions.com^*/i.php? (easyprivacy.txt: 5749) +.ecustomeropinions.com/.*/i\.php\? +# ||ecustomeropinions.com/survey/nojs.php? (easyprivacy.txt: 5748) +.ecustomeropinions.com/survey/nojs\.php\? +# ||ecommstats.s3.amazonaws.com^$third-party (easyprivacy.txt: 5747) +.ecommstats.s3.amazonaws.com +# ||ebaystatic.com^*/tracking_RaptorheaderJS.js (easyprivacy.txt: 5746) +.ebaystatic.com/.*/tracking_RaptorheaderJS\.js +# ||ebaystatic.com^*/rover_$script (easyprivacy.txt: 5745) +.ebaystatic.com/.*/rover_ +# ||ebayrtm.com/rtm?RtmCmd&a=img&$image (easyprivacy.txt: 5744) +.ebayrtm.com/rtm\?RtmCmd&a=img& +# ||ebay.northernhost.com^ (easyprivacy.txt: 5743) +.ebay.northernhost.com +# ||e.ebidtech.com/cv/ (easyprivacy.txt: 5742) +.e.ebidtech.com/cv/ +# ||e-merchant.com/^*/edr.js$third-party (easyprivacy.txt: 5741) +.e-merchant.com/[^\w%.-].*/edr\.js +# ||e-activist.com^*/broadcast.record.message.open.do? (easyprivacy.txt: 5740) +.e-activist.com/.*/broadcast\.record\.message\.open\.do\? +# ||dzxxxg6ij9u99.cloudfront.net^ (easyprivacy.txt: 5739) +.dzxxxg6ij9u99.cloudfront.net +# ||dw.com.com^ (easyprivacy.txt: 5738) +.dw.com.com +# ||dw.cbsi.com^ (easyprivacy.txt: 5737) +.dw.cbsi.com +# ||dufue2m4sondk.cloudfront.net^ (easyprivacy.txt: 5736) +.dufue2m4sondk.cloudfront.net +# ||du8783wkf05yr.cloudfront.net^$third-party (easyprivacy.txt: 5735) +.du8783wkf05yr.cloudfront.net +# ||dtym7iokkjlif.cloudfront.net/dough/ (easyprivacy.txt: 5734) +.dtym7iokkjlif.cloudfront.net/dough/ +# ||dt.sellpoint.net^ (easyprivacy.txt: 5733) +.dt.sellpoint.net +# ||ds-aksb-a.akamaihd.net^ (easyprivacy.txt: 5732) +.ds-aksb-a.akamaihd.net +# ||dreamhost.com/*.cgi?$image,third-party (easyprivacy.txt: 5731) +.dreamhost.com/.*\.cgi\? +# ||doug1izaerwt3.cloudfront.net^ (easyprivacy.txt: 5730) +.doug1izaerwt3.cloudfront.net +# ||domodomain.com^*/ddsense.aspx? (easyprivacy.txt: 5729) +.domodomain.com/.*/ddsense\.aspx\? +# ||dnn506yrbagrg.cloudfront.net^ (easyprivacy.txt: 5728) +.dnn506yrbagrg.cloudfront.net +# ||dn-net.com/cc.js (easyprivacy.txt: 5727) +.dn-net.com/cc\.js +# ||dmdentertainment.com^*/video_debug.gif? (easyprivacy.txt: 5726) +.dmdentertainment.com/.*/video_debug\.gif\? +# ||dmcdn.net/behavior/ (easyprivacy.txt: 5725) +.dmcdn.net/behavior/ +# ||dl1d2m8ri9v3j.cloudfront.net^ (easyprivacy.txt: 5724) +.dl1d2m8ri9v3j.cloudfront.net +# ||dkj2m377b0yzw.cloudfront.net^ (easyprivacy.txt: 5723) +.dkj2m377b0yzw.cloudfront.net +# ||djibeacon.djns.com^ (easyprivacy.txt: 5722) +.djibeacon.djns.com +# ||distillery.wistia.com^ (easyprivacy.txt: 5721) +.distillery.wistia.com +# ||disqus.com/stats.html (easyprivacy.txt: 5720) +.disqus.com/stats\.html +# ||disqus.com/event.js?$script (easyprivacy.txt: 5719) +.disqus.com/event\.js\? +# ||disqus.com/api/ping?$third-party (easyprivacy.txt: 5718) +.disqus.com/api/ping\? +# ||discoverymail.com/a/*/spacer.gif (easyprivacy.txt: 5717) +.discoverymail.com/a/.*/spacer\.gif +# ||dirt.dennis.co.uk^ (easyprivacy.txt: 5716) +.dirt.dennis.co.uk +# ||directnews.co.uk/feedtrack/ (easyprivacy.txt: 5715) +.directnews.co.uk/feedtrack/ +# ||digitalgov.gov/Universal-Federated-Analytics-Min.js (easyprivacy.txt: 5714) +.digitalgov.gov/Universal-Federated-Analytics-Min\.js +# ||digimedia.com/pageviews.php? (easyprivacy.txt: 5713) +.digimedia.com/pageviews\.php\? +# ||dialglobal.com^*/Log.aspx? (easyprivacy.txt: 5712) +.dialglobal.com/.*/Log\.aspx\? +# ||dfdbz2tdq3k01.cloudfront.net^ (easyprivacy.txt: 5711) +.dfdbz2tdq3k01.cloudfront.net +# ||dfanalytics.dealerfire.com^ (easyprivacy.txt: 5710) +.dfanalytics.dealerfire.com +# ||detect.ergebnis-dienst.de^ (easyprivacy.txt: 5709) +.detect.ergebnis-dienst.de +# ||desert.ru/tracking/ (easyprivacy.txt: 5708) +.desert.ru/tracking/ +# ||demandmedia.s3.amazonaws.com^$third-party (easyprivacy.txt: 5707) +.demandmedia.s3.amazonaws.com +# ||demandmedia.com/wm.js (easyprivacy.txt: 5706) +.demandmedia.com/wm\.js +# ||delvenetworks.com/player/plugins/analytics/ (easyprivacy.txt: 5705) +.delvenetworks.com/player/plugins/analytics/ +# ||dell.com/TAG/tag.aspx?$third-party (easyprivacy.txt: 5704) +.dell.com/TAG/tag\.aspx\? +# ||delivra.com/tracking/$third-party (easyprivacy.txt: 5703) +.delivra.com/tracking/ +# ||deb.gs/track/ (easyprivacy.txt: 5702) +.deb.gs/track/ +# ||dealerfire.com/analytics/ (easyprivacy.txt: 5701) +.dealerfire.com/analytics/ +# ||dealer.com^*/tracking/ (easyprivacy.txt: 5700) +.dealer.com/.*/tracking/ +# ||dc8na2hxrj29i.cloudfront.net^ (easyprivacy.txt: 5699) +.dc8na2hxrj29i.cloudfront.net +# ||daylogs.com/counter/ (easyprivacy.txt: 5698) +.daylogs.com/counter/ +# ||datam8.co.nz^$third-party (easyprivacy.txt: 5697) +.datam8.co.nz +# ||datacollect*.abtasty.com^$third-party (easyprivacy.txt: 5696) +.datacollect*./.*\.abtasty\.com[^\w%.-] +.datacollect*.abtasty.com +# ||data.marketgid.com^$third-party (easyprivacy.txt: 5695) +.data.marketgid.com +# ||data.imakenews.com^$third-party (easyprivacy.txt: 5694) +.data.imakenews.com +# ||data.fotorama.io/?$third-party (easyprivacy.txt: 5693) +.data.fotorama.io/\? +# ||data.beyond.com^$third-party (easyprivacy.txt: 5692) +.data.beyond.com +# ||data.alexa.com^ (easyprivacy.txt: 5691) +.data.alexa.com +# ||daq0d0aotgq0f.cloudfront.net^ (easyprivacy.txt: 5690) +.daq0d0aotgq0f.cloudfront.net +# ||dailymotion-ams.gravityrd-services.com^ (easyprivacy.txt: 5689) +.dailymotion-ams.gravityrd-services.com +# ||d9lq0o81skkdj.cloudfront.net^ (easyprivacy.txt: 5688) +.d9lq0o81skkdj.cloudfront.net +# ||d81mfvml8p5ml.cloudfront.net^ (easyprivacy.txt: 5687) +.d81mfvml8p5ml.cloudfront.net +# ||d6jkenny8w8yo.cloudfront.net^ (easyprivacy.txt: 5686) +.d6jkenny8w8yo.cloudfront.net +# ||d5i9o0tpq9sa1.cloudfront.net^ (easyprivacy.txt: 5685) +.d5i9o0tpq9sa1.cloudfront.net +# ||d4ax0r5detcsu.cloudfront.net^ (easyprivacy.txt: 5684) +.d4ax0r5detcsu.cloudfront.net +# ||d3s7ggfq1s6jlj.cloudfront.net^ (easyprivacy.txt: 5683) +.d3s7ggfq1s6jlj.cloudfront.net +# ||d3qxef4rp70elm.cloudfront.net/m.js (easyprivacy.txt: 5682) +.d3qxef4rp70elm.cloudfront.net/m\.js +# ||d3ojzyhbolvoi5.cloudfront.net^ (easyprivacy.txt: 5681) +.d3ojzyhbolvoi5.cloudfront.net +# ||d3l3lkinz3f56t.cloudfront.net^ (easyprivacy.txt: 5680) +.d3l3lkinz3f56t.cloudfront.net +# ||d3hr5gm0wlxm5h.cloudfront.net^ (easyprivacy.txt: 5679) +.d3hr5gm0wlxm5h.cloudfront.net +# ||d3h1v5cflrhzi4.cloudfront.net^ (easyprivacy.txt: 5678) +.d3h1v5cflrhzi4.cloudfront.net +# ||d3ezl4ajpp2zy8.cloudfront.net^ (easyprivacy.txt: 5677) +.d3ezl4ajpp2zy8.cloudfront.net +# ||d3cxv97fi8q177.cloudfront.net^ (easyprivacy.txt: 5676) +.d3cxv97fi8q177.cloudfront.net +# ||d3avqv6zaxegeu.cloudfront.net^ (easyprivacy.txt: 5675) +.d3avqv6zaxegeu.cloudfront.net +# ||d3a2okcloueqyx.cloudfront.net^ (easyprivacy.txt: 5674) +.d3a2okcloueqyx.cloudfront.net +# ||d396ihyrqc81w.cloudfront.net^ (easyprivacy.txt: 5673) +.d396ihyrqc81w.cloudfront.net +# ||d36wtdrdo22bqa.cloudfront.net^ (easyprivacy.txt: 5672) +.d36wtdrdo22bqa.cloudfront.net +# ||d36lvucg9kzous.cloudfront.net^ (easyprivacy.txt: 5671) +.d36lvucg9kzous.cloudfront.net +# ||d34ko97cxuv4p7.cloudfront.net^ (easyprivacy.txt: 5670) +.d34ko97cxuv4p7.cloudfront.net +# ||d33im0067v833a.cloudfront.net^ (easyprivacy.txt: 5669) +.d33im0067v833a.cloudfront.net +# ||d3135glefggiep.cloudfront.net^ (easyprivacy.txt: 5668) +.d3135glefggiep.cloudfront.net +# ||d303e3cdddb4ded4b6ff495a7b496ed5.s3.amazonaws.com^ (easyprivacy.txt: 5667) +.d303e3cdddb4ded4b6ff495a7b496ed5.s3.amazonaws.com +# ||d2xgf76oeu9pbh.cloudfront.net^ (easyprivacy.txt: 5666) +.d2xgf76oeu9pbh.cloudfront.net +# ||d2tgfbvjf3q6hn.cloudfront.net^ (easyprivacy.txt: 5665) +.d2tgfbvjf3q6hn.cloudfront.net +# ||d2so4705rl485y.cloudfront.net^ (easyprivacy.txt: 5664) +.d2so4705rl485y.cloudfront.net +# ||d2ry9vue95px0b.cloudfront.net^ (easyprivacy.txt: 5663) +.d2ry9vue95px0b.cloudfront.net +# ||d2oh4tlt9mrke9.cloudfront.net^ (easyprivacy.txt: 5662) +.d2oh4tlt9mrke9.cloudfront.net +# ||d2nxi61n77zqpl.cloudfront.net^ (easyprivacy.txt: 5661) +.d2nxi61n77zqpl.cloudfront.net +# ||d2nq0f8d9ofdwv.cloudfront.net/track.js (easyprivacy.txt: 5660) +.d2nq0f8d9ofdwv.cloudfront.net/track\.js +# ||d2kmrmwhq7wkvs.cloudfront.net^ (easyprivacy.txt: 5659) +.d2kmrmwhq7wkvs.cloudfront.net +# ||d2gfi8ctn6kki7.cloudfront.net^ (easyprivacy.txt: 5658) +.d2gfi8ctn6kki7.cloudfront.net +# ||d2d5uvkqie1lr5.cloudfront.net^*/analytics. (easyprivacy.txt: 5657) +.d2d5uvkqie1lr5.cloudfront.net/.*/analytics\. +# ||d2d5uvkqie1lr5.cloudfront.net^*/analytics- (easyprivacy.txt: 5656) +.d2d5uvkqie1lr5.cloudfront.net/.*/analytics- +# ||d28g9g3vb08y70.cloudfront.net^ (easyprivacy.txt: 5655) +.d28g9g3vb08y70.cloudfront.net +# ||d27s92d8z1yatv.cloudfront.net/js/jquery.jw.analitycs.js (easyprivacy.txt: 5654) +.d27s92d8z1yatv.cloudfront.net/js/jquery\.jw\.analitycs\.js +# ||d23p9gffjvre9v.cloudfront.net^ (easyprivacy.txt: 5653) +.d23p9gffjvre9v.cloudfront.net +# ||d21o24qxwf7uku.cloudfront.net^ (easyprivacy.txt: 5652) +.d21o24qxwf7uku.cloudfront.net +# ||d1z2jf7jlzjs58.cloudfront.net^ (easyprivacy.txt: 5651) +.d1z2jf7jlzjs58.cloudfront.net +# ||d1yu5hbtu8mng9.cloudfront.net^ (easyprivacy.txt: 5650) +.d1yu5hbtu8mng9.cloudfront.net +# ||d1wscoizcbxzhp.cloudfront.net^ (easyprivacy.txt: 5649) +.d1wscoizcbxzhp.cloudfront.net +# ||d1ros97qkrwjf5.cloudfront.net^ (easyprivacy.txt: 5648) +.d1ros97qkrwjf5.cloudfront.net +# ||d1rgnfh960lz2b.cloudfront.net^ (easyprivacy.txt: 5647) +.d1rgnfh960lz2b.cloudfront.net +# ||d1r27qvpjiaqj3.cloudfront.net^ (easyprivacy.txt: 5646) +.d1r27qvpjiaqj3.cloudfront.net +# ||d1qpxk1wfeh8v1.cloudfront.net^ (easyprivacy.txt: 5645) +.d1qpxk1wfeh8v1.cloudfront.net +# ||d1nh2vjpqpfnin.cloudfront.net^ (easyprivacy.txt: 5644) +.d1nh2vjpqpfnin.cloudfront.net +# ||d1lm7kd3bd3yo9.cloudfront.net^ (easyprivacy.txt: 5643) +.d1lm7kd3bd3yo9.cloudfront.net +# ||d1ivexoxmp59q7.cloudfront.net^*/live.js (easyprivacy.txt: 5642) +.d1ivexoxmp59q7.cloudfront.net/.*/live\.js +# ||d1gp8joe0evc8s.cloudfront.net^ (easyprivacy.txt: 5641) +.d1gp8joe0evc8s.cloudfront.net +# ||d1clufhfw8sswh.cloudfront.net^ (easyprivacy.txt: 5640) +.d1clufhfw8sswh.cloudfront.net +# ||d1clfvuu2240eh.cloudfront.net^ (easyprivacy.txt: 5639) +.d1clfvuu2240eh.cloudfront.net +# ||d1cerpgff739r9.cloudfront.net^ (easyprivacy.txt: 5638) +.d1cerpgff739r9.cloudfront.net +# ||d1cdnlzf6usiff.cloudfront.net^ (easyprivacy.txt: 5637) +.d1cdnlzf6usiff.cloudfront.net +# ||d169bbxks24g2u.cloudfront.net^ (easyprivacy.txt: 5636) +.d169bbxks24g2u.cloudfront.net +# ||d.shareaholic.com^ (easyprivacy.txt: 5635) +.d.shareaholic.com +# ||d.rcmd.jp^$image (easyprivacy.txt: 5634) +.d.rcmd.jp +# ||cx.atdmt.com^ (easyprivacy.txt: 5633) +.cx.atdmt.com +# ||customerlobby.com/ctrack- (easyprivacy.txt: 5632) +.customerlobby.com/ctrack- +# ||curate.nestedmedia.com^ (easyprivacy.txt: 5631) +.curate.nestedmedia.com +# ||cumulus-cloud.com/trackers/ (easyprivacy.txt: 5630) +.cumulus-cloud.com/trackers/ +# ||cts.vresp.com^ (easyprivacy.txt: 5629) +.cts.vresp.com +# ||cts.channelintelligence.com^$third-party (easyprivacy.txt: 5628) +.cts.channelintelligence.com +# ||cts.businesswire.com^$third-party (easyprivacy.txt: 5627) +.cts.businesswire.com +# ||cts-secure.channelintelligence.com^$third-party (easyprivacy.txt: 5626) +.cts-secure.channelintelligence.com +# ||cts-log.channelintelligence.com^$third-party (easyprivacy.txt: 5625) +.cts-log.channelintelligence.com +# ||ct.thegear-box.com^$third-party (easyprivacy.txt: 5624) +.ct.thegear-box.com +# ||ct.pinterest.com^ (easyprivacy.txt: 5623) +.ct.pinterest.com +# ||ct.needlive.com^ (easyprivacy.txt: 5622) +.ct.needlive.com +# ||ct.itbusinessedge.com^$third-party (easyprivacy.txt: 5621) +.ct.itbusinessedge.com +# ||ct.eid.co.nz^$third-party (easyprivacy.txt: 5620) +.ct.eid.co.nz +# ||csi.gstatic.com^ (easyprivacy.txt: 5619) +.csi.gstatic.com +# ||crowdfactory.com/tracker/ (easyprivacy.txt: 5618) +.crowdfactory.com/tracker/ +# ||crm-vwg.com/tracker/ (easyprivacy.txt: 5617) +.crm-vwg.com/tracker/ +# ||creativecdn.com/tags? (easyprivacy.txt: 5616) +.creativecdn.com/tags\? +# ||creativecdn.com/pix/? (easyprivacy.txt: 5615) +.creativecdn.com/pix/\? +# ||cr.loszona.com^$third-party (easyprivacy.txt: 5614) +.cr.loszona.com +# ||counters.gigya.com^ (easyprivacy.txt: 5613) +.counters.gigya.com +# ||counters.freewebs.com^ (easyprivacy.txt: 5612) +.counters.freewebs.com +# ||counter.yadro.ru^ (easyprivacy.txt: 5611) +.counter.yadro.ru +# ||counter.webmasters.bpath.com^ (easyprivacy.txt: 5610) +.counter.webmasters.bpath.com +# ||counter.webcom.com^ (easyprivacy.txt: 5609) +.counter.webcom.com +# ||counter.sparklit.com^ (easyprivacy.txt: 5608) +.counter.sparklit.com +# ||counter.scribblelive.net^ (easyprivacy.txt: 5607) +.counter.scribblelive.net +# ||counter.scribblelive.com^ (easyprivacy.txt: 5606) +.counter.scribblelive.com +# ||counter.rambler.ru^ (easyprivacy.txt: 5605) +.counter.rambler.ru +# ||counter.powweb.com^ (easyprivacy.txt: 5604) +.counter.powweb.com +# ||counter.pax.com^ (easyprivacy.txt: 5603) +.counter.pax.com +# ||counter.pagesview.com^ (easyprivacy.txt: 5602) +.counter.pagesview.com +# ||counter.mgaserv.com^ (easyprivacy.txt: 5601) +.counter.mgaserv.com +# ||counter.maases.com^ (easyprivacy.txt: 5600) +.counter.maases.com +# ||counter.hyipexplorer.com^ (easyprivacy.txt: 5599) +.counter.hyipexplorer.com +# ||counter.htmlvalidator.com^ (easyprivacy.txt: 5598) +.counter.htmlvalidator.com +# ||counter.cam-content.com^ (easyprivacy.txt: 5597) +.counter.cam-content.com +# ||counter.bloke.com^ (easyprivacy.txt: 5596) +.counter.bloke.com +# ||count.paycounter.com^ (easyprivacy.txt: 5595) +.count.paycounter.com +# ||count.me.uk^ (easyprivacy.txt: 5594) +.count.me.uk +# ||count.channeladvisor.com^ (easyprivacy.txt: 5593) +.count.channeladvisor.com +# ||count.carrierzone.com^ (easyprivacy.txt: 5592) +.count.carrierzone.com +# ||cookiex.ngd.yahoo.com^ (easyprivacy.txt: 5591) +.cookiex.ngd.yahoo.com +# ||cookies.livepartners.com^ (easyprivacy.txt: 5590) +.cookies.livepartners.com +# ||control.cityofcairns.com^$third-party (easyprivacy.txt: 5589) +.control.cityofcairns.com +# ||control.adap.tv^$object-subrequest (easyprivacy.txt: 5588) +.control.adap.tv +# ||content.cpcache.com^*/js/ga.js (easyprivacy.txt: 5587) +.content.cpcache.com/.*/js/ga\.js +# ||contactatonce.com/VisitorContext.aspx? (easyprivacy.txt: 5586) +.contactatonce.com/VisitorContext\.aspx\? +# ||concur.com/open.aspx? (easyprivacy.txt: 5585) +.concur.com/open\.aspx\? +# ||compendiumblog.com/js/stats.js (easyprivacy.txt: 5584) +.compendiumblog.com/js/stats\.js +# ||communicatorcorp.com^*/conversiontracking.js (easyprivacy.txt: 5583) +.communicatorcorp.com/.*/conversiontracking\.js +# ||comic-rocket.com/metrics.js (easyprivacy.txt: 5582) +.comic-rocket.com/metrics\.js +# ||comet.ibsrv.net^ (easyprivacy.txt: 5581) +.comet.ibsrv.net +# ||collector.nextguide.tv^ (easyprivacy.txt: 5580) +.collector.nextguide.tv +# ||collector.apester.com^ (easyprivacy.txt: 5579) +.collector.apester.com +# ||collector.air.tv^ (easyprivacy.txt: 5578) +.collector.air.tv +# ||collection.acromas.com^ (easyprivacy.txt: 5577) +.collection.acromas.com +# ||collect.igodigital.com^ (easyprivacy.txt: 5576) +.collect.igodigital.com +# ||coinbase.com/assets/application-*.js$third-party (easyprivacy.txt: 5575) +.coinbase.com/assets/application-.*\.js +# ||cnt.mastorage.net^ (easyprivacy.txt: 5574) +.cnt.mastorage.net +# ||cnt.3dmy.net^ (easyprivacy.txt: 5573) +.cnt.3dmy.net +# ||cnpapers.com/scripts/library/ (easyprivacy.txt: 5572) +.cnpapers.com/scripts/library/ +# ||cnevids.com/metrics/ (easyprivacy.txt: 5571) +.cnevids.com/metrics/ +# ||cnetcontent.com/log? (easyprivacy.txt: 5570) +.cnetcontent.com/log\? +# ||cms-pixel.crowdreport.com^ (easyprivacy.txt: 5569) +.cms-pixel.crowdreport.com +# ||cmmeglobal.com^*/page-view? (easyprivacy.txt: 5568) +.cmmeglobal.com/.*/page-view\? +# ||cmmeglobal.com/evt? (easyprivacy.txt: 5567) +.cmmeglobal.com/evt\? +# ||cm.g.doubleclick.net^ (easyprivacy.txt: 5566) +.cm.g.doubleclick.net +# ||cloudfront.net/tracker.js (easyprivacy.txt: 5565) +.cloudfront.net/tracker\.js +# ||cloudfront.net/trackb.html (easyprivacy.txt: 5564) +.cloudfront.net/trackb\.html +# ||cloudfront.net/track? (easyprivacy.txt: 5563) +.cloudfront.net/track\? +# ||cloudfront.net/track.html (easyprivacy.txt: 5562) +.cloudfront.net/track\.html +# ||cloudfront.net/sso.js (easyprivacy.txt: 5561) +.cloudfront.net/sso\.js +# ||cloudfront.net/sentinel.js (easyprivacy.txt: 5560) +.cloudfront.net/sentinel\.js +# ||cloudfront.net/rum/bacon.min.js (easyprivacy.txt: 5559) +.cloudfront.net/rum/bacon\.min\.js +# ||cloudfront.net/pt1x1.gif (easyprivacy.txt: 5558) +.cloudfront.net/pt1x1\.gif +# ||cloudfront.net/performable/ (easyprivacy.txt: 5557) +.cloudfront.net/performable/ +# ||cloudfront.net/log.js? (easyprivacy.txt: 5556) +.cloudfront.net/log\.js\? +# ||cloudfront.net/js/reach.js (easyprivacy.txt: 5555) +.cloudfront.net/js/reach\.js +# ||cloudfront.net/dough/*/recipe.js (easyprivacy.txt: 5554) +.cloudfront.net/dough/.*/recipe\.js +# ||cloudfront.net/code/keen-2.1.0-min.js (easyprivacy.txt: 5553) +.cloudfront.net/code/keen-2\.1\.0-min\.js +# ||cloudfront.net/bti/ (easyprivacy.txt: 5552) +.cloudfront.net/bti/ +# ||cloudfront.net/autotracker. (easyprivacy.txt: 5551) +.cloudfront.net/autotracker\. +# ||cloudfront.net/analyticsengine/ (easyprivacy.txt: 5550) +.cloudfront.net/analyticsengine/ +# ||cloudfront.net/analytics.js (easyprivacy.txt: 5549) +.cloudfront.net/analytics\.js +# ||cloudfront.net/abw.js (easyprivacy.txt: 5548) +.cloudfront.net/abw\.js +# ||cloudfront.net*/trk.js (easyprivacy.txt: 5547) +.cloudfront.net*./(.*/)?trk\.js +# ||cloudfront.net*/tracker.js (easyprivacy.txt: 5546) +.cloudfront.net*./(.*/)?tracker\.js +# ||cloudfront.net*/sp.js (easyprivacy.txt: 5545) +.cloudfront.net*./(.*/)?sp\.js +# ||cloudfront.net*/keywee.min.js (easyprivacy.txt: 5544) +.cloudfront.net*./(.*/)?keywee\.min\.js +# ||cloudfront-labs.amazonaws.com^ (easyprivacy.txt: 5543) +.cloudfront-labs.amazonaws.com +# ||cloudapp.net/l/ (easyprivacy.txt: 5542) +.cloudapp.net/l/ +# ||clnk.me/_t.gif? (easyprivacy.txt: 5541) +.clnk.me/_t\.gif\? +# ||clipsyndicate.com/cs_api/cliplog? (easyprivacy.txt: 5540) +.clipsyndicate.com/cs_api/cliplog\? +# ||clientstat.castup.net^ (easyprivacy.txt: 5539) +.clientstat.castup.net +# ||client.tahono.com^$third-party (easyprivacy.txt: 5538) +.client.tahono.com +# ||clicktracks.aristotle.net^ (easyprivacy.txt: 5537) +.clicktracks.aristotle.net +# ||clicktracker.iscan.nl^ (easyprivacy.txt: 5536) +.clicktracker.iscan.nl +# ||clickthru.lefbc.com^$third-party (easyprivacy.txt: 5535) +.clickthru.lefbc.com +# ||clicktalecdn.sslcs.cdngc.net^ (easyprivacy.txt: 5534) +.clicktalecdn.sslcs.cdngc.net +# ||clicktale.pantherssl.com^ (easyprivacy.txt: 5533) +.clicktale.pantherssl.com +# ||clickstream.loomia.com^ (easyprivacy.txt: 5532) +.clickstream.loomia.com +# ||clicks.dealer.com^ (easyprivacy.txt: 5531) +.clicks.dealer.com +# ||clicker.com^*pageurl$third-party (easyprivacy.txt: 5530) +.clicker.com/.*pageurl +# ||clickchatsold.com/d0/ (easyprivacy.txt: 5529) +.clickchatsold.com/d0/ +# ||click1.online.vulture.com^$image,third-party (easyprivacy.txt: 5528) +.click1.online.vulture.com +# ||click1.email.nymagazine.com^$third-party (easyprivacy.txt: 5527) +.click1.email.nymagazine.com +# ||click.rssfwd.com^$third-party (easyprivacy.txt: 5526) +.click.rssfwd.com +# ||click.geopaysys.com^ (easyprivacy.txt: 5525) +.click.geopaysys.com +# ||click.email.*/open.aspx? (easyprivacy.txt: 5524) +.click.email.*./(.*/)?open\.aspx\? +# ||click.aristotle.net^$third-party (easyprivacy.txt: 5523) +.click.aristotle.net +# ||click.appinthestore.com^ (easyprivacy.txt: 5522) +.click.appinthestore.com +# ||clearspring.com/t/ (easyprivacy.txt: 5521) +.clearspring.com/t/ +# ||clearspring.com/at/ (easyprivacy.txt: 5520) +.clearspring.com/at/ +# ||citysearch.com/tracker/ (easyprivacy.txt: 5519) +.citysearch.com/tracker/ +# ||citygridmedia.com/tracker/ (easyprivacy.txt: 5518) +.citygridmedia.com/tracker/ +# ||circonus.com/hit? (easyprivacy.txt: 5517) +.circonus.com/hit\? +# ||chtah.net/a/*/spacer.gif$third-party (easyprivacy.txt: 5516) +.chtah.net/a/.*/spacer\.gif +# ||chtah.net/a/*/spacer-0.gif$third-party (easyprivacy.txt: 5515) +.chtah.net/a/.*/spacer-0\.gif +# ||chtah.com^*/1x1.gif (easyprivacy.txt: 5514) +.chtah.com/.*/1x1\.gif +# ||chtah.com/a/*/spacer-0.gif$third-party (easyprivacy.txt: 5513) +.chtah.com/a/.*/spacer-0\.gif +# ||choicestream.com^*/pixel/ (easyprivacy.txt: 5512) +.choicestream.com/.*/pixel/ +# ||chartaca.com.s3.amazonaws.com^ (easyprivacy.txt: 5511) +.chartaca.com.s3.amazonaws.com +# ||chanalytics.merchantadvantage.com^ (easyprivacy.txt: 5510) +.chanalytics.merchantadvantage.com +# ||cgicounter.puretec.de^ (easyprivacy.txt: 5509) +.cgicounter.puretec.de +# ||cgicounter.oneandone.co.uk^ (easyprivacy.txt: 5508) +.cgicounter.oneandone.co.uk +# ||cf.overblog.com^ (easyprivacy.txt: 5507) +.cf.overblog.com +# ||centerix.ru^*/count.msl? (easyprivacy.txt: 5506) +.centerix.ru/.*/count\.msl\? +# ||ce.lijit.com^ (easyprivacy.txt: 5505) +.ce.lijit.com +# ||cdnplanet.com/static/rum/rum.js (easyprivacy.txt: 5504) +.cdnplanet.com/static/rum/rum\.js +# ||cdnma.com/apps/capture.js (easyprivacy.txt: 5503) +.cdnma.com/apps/capture\.js +# ||cdn.trafficexchangelist.com^$third-party (easyprivacy.txt: 5502) +.cdn.trafficexchangelist.com +# ||cdn.pubexchange.com/modules/partner/$script (easyprivacy.txt: 5501) +.cdn.pubexchange.com/modules/partner/ +# ||cc.swiftype.com^ (easyprivacy.txt: 5500) +.cc.swiftype.com +# ||caspionlog.appspot.com^ (easyprivacy.txt: 5499) +.caspionlog.appspot.com +# ||carl.pubsvs.com^ (easyprivacy.txt: 5498) +.carl.pubsvs.com +# ||carambo.la/logging/ (easyprivacy.txt: 5497) +.carambo.la/logging/ +# ||carambo.la/analytics/ (easyprivacy.txt: 5496) +.carambo.la/analytics/ +# ||capture.camify.com/dc? (easyprivacy.txt: 5495) +.capture.camify.com/dc\? +# ||capture.bi.movideo.com/dc? (easyprivacy.txt: 5494) +.capture.bi.movideo.com/dc\? +# ||canvas-usage-v2.conduit-data.com^ (easyprivacy.txt: 5493) +.canvas-usage-v2.conduit-data.com +# ||canvas-ping.conduit-data.com^ (easyprivacy.txt: 5492) +.canvas-ping.conduit-data.com +# ||cadreon.s3.amazonaws.com^ (easyprivacy.txt: 5491) +.cadreon.s3.amazonaws.com +# ||cache2.delvenetworks.com^ (easyprivacy.txt: 5490) +.cache2.delvenetworks.com +# ||c3metrics.medifast1.com^ (easyprivacy.txt: 5489) +.c3metrics.medifast1.com +# ||c2s-openrtb.liverail.com^ (easyprivacy.txt: 5488) +.c2s-openrtb.liverail.com +# ||c.ypcdn.com^*?ptid (easyprivacy.txt: 5487) +.c.ypcdn.com/.*\?ptid +# ||c.ypcdn.com^*&ptid (easyprivacy.txt: 5486) +.c.ypcdn.com/.*&ptid +# ||c.wen.ru^ (easyprivacy.txt: 5485) +.c.wen.ru +# ||c.homestore.com^ (easyprivacy.txt: 5484) +.c.homestore.com +# ||c.compete.com^ (easyprivacy.txt: 5483) +.c.compete.com +# ||bzpics.com/jslib/st.js? (easyprivacy.txt: 5482) +.bzpics.com/jslib/st\.js\? +# ||bzgint.com/CUNCollector/ (easyprivacy.txt: 5481) +.bzgint.com/CUNCollector/ +# ||buzzbox.buzzfeed.com^ (easyprivacy.txt: 5480) +.buzzbox.buzzfeed.com +# ||business.sharedcount.com^$third-party (easyprivacy.txt: 5479) +.business.sharedcount.com +# ||bumpin.com^*/analytics.html (easyprivacy.txt: 5478) +.bumpin.com/.*/analytics\.html +# ||bufferapp.com/wf/open?upn=$third-party (easyprivacy.txt: 5477) +.bufferapp.com/wf/open\?upn= +# ||btn.clickability.com^ (easyprivacy.txt: 5476) +.btn.clickability.com +# ||browserscope.org/user/beacon/ (easyprivacy.txt: 5475) +.browserscope.org/user/beacon/ +# ||bright.bncnt.com^ (easyprivacy.txt: 5474) +.bright.bncnt.com +# ||breakmedia.com/track.jpg? (easyprivacy.txt: 5473) +.breakmedia.com/track\.jpg\? +# ||breakingburner.com/stats.html? (easyprivacy.txt: 5472) +.breakingburner.com/stats\.html\? +# ||break.com/break/js/brktrkr.js$third-party (easyprivacy.txt: 5471) +.break.com/break/js/brktrkr\.js +# ||break.com/apextracker/ (easyprivacy.txt: 5470) +.break.com/apextracker/ +# ||bravenet.com/counter/ (easyprivacy.txt: 5469) +.bravenet.com/counter/ +# ||brandaffinity.net/icetrack/ (easyprivacy.txt: 5468) +.brandaffinity.net/icetrack/ +# ||bpath.com/count.dll? (easyprivacy.txt: 5467) +.bpath.com/count\.dll\? +# ||bobparsons.com/image.aspx? (easyprivacy.txt: 5466) +.bobparsons.com/image\.aspx\? +# ||bmw.com^*/tracking_add_ons.js (easyprivacy.txt: 5465) +.bmw.com/.*/tracking_add_ons\.js +# ||blogblog.com/tracker/ (easyprivacy.txt: 5464) +.blogblog.com/tracker/ +# ||blinkx.com/thirdparty/iab/$third-party (easyprivacy.txt: 5463) +.blinkx.com/thirdparty/iab/ +# ||blamcity.com/log/ (easyprivacy.txt: 5462) +.blamcity.com/log/ +# ||bizsolutions.strands.com^ (easyprivacy.txt: 5461) +.bizsolutions.strands.com +# ||bizrate.com^*/survey_ (easyprivacy.txt: 5460) +.bizrate.com/.*/survey_ +# ||bizrate.co.uk/js/survey_ (easyprivacy.txt: 5459) +.bizrate.co.uk/js/survey_ +# ||bizrate-images.com^*/tracker.js (easyprivacy.txt: 5458) +.bizrate-images.com/.*/tracker\.js +# ||bizrate-images.co.uk^*/tracker.js (easyprivacy.txt: 5457) +.bizrate-images.co.uk/.*/tracker\.js +# ||bitgravity.com^*/tracking/ (easyprivacy.txt: 5456) +.bitgravity.com/.*/tracking/ +# ||bitgravity.com/b.gif$third-party (easyprivacy.txt: 5455) +.bitgravity.com/b\.gif +# ||bit.ly/stats? (easyprivacy.txt: 5454) +.bit.ly/stats\? +# ||bing.com/bat.js (easyprivacy.txt: 5453) +.bing.com/bat\.js +# ||bing.com/action/ (easyprivacy.txt: 5452) +.bing.com/action/ +# ||bing-int.com/bat.js (easyprivacy.txt: 5451) +.bing-int.com/bat\.js +# ||bin.clearspring.*/b.swf (easyprivacy.txt: 5450) +.bin.clearspring.*./(.*/)?b\.swf +# ||bidsystem.com/ppc/sendtracker.aspx? (easyprivacy.txt: 5449) +.bidsystem.com/ppc/sendtracker\.aspx\? +# ||bid.g.doubleclick.net^ (easyprivacy.txt: 5448) +.bid.g.doubleclick.net +# ||bibzopl.com/in.php (easyprivacy.txt: 5447) +.bibzopl.com/in\.php +# ||bfnsoftware.com^*/environment.cgi? (easyprivacy.txt: 5446) +.bfnsoftware.com/.*/environment\.cgi\? +# ||bestweb.net/cgi-bin/count.cgi? (easyprivacy.txt: 5445) +.bestweb.net/cgi-bin/count\.cgi\? +# ||bestofmedia.com^*/beacons/$~image (easyprivacy.txt: 5444) +.bestofmedia.com/.*/beacons/ +# ||beacons.brandads.net^ (easyprivacy.txt: 5443) +.beacons.brandads.net +# ||beacon2.indieclicktv.com^$third-party (easyprivacy.txt: 5442) +.beacon2.indieclicktv.com +# ||beacon2.indieclick.com^ (easyprivacy.txt: 5441) +.beacon2.indieclick.com +# ||beacon.thred.woven.com^ (easyprivacy.txt: 5440) +.beacon.thred.woven.com +# ||beacon.sojern.com^ (easyprivacy.txt: 5439) +.beacon.sojern.com +# ||beacon.securestudies.com^ (easyprivacy.txt: 5438) +.beacon.securestudies.com +# ||beacon.riskified.com^ (easyprivacy.txt: 5437) +.beacon.riskified.com +# ||beacon.richrelevance.com^ (easyprivacy.txt: 5436) +.beacon.richrelevance.com +# ||beacon.livefyre.com^ (easyprivacy.txt: 5435) +.beacon.livefyre.com +# ||beacon.indieclick.com^ (easyprivacy.txt: 5434) +.beacon.indieclick.com +# ||beacon.heliumnetwork.com^ (easyprivacy.txt: 5433) +.beacon.heliumnetwork.com +# ||beacon.guim.co.uk^ (easyprivacy.txt: 5432) +.beacon.guim.co.uk +# ||beacon.gcion.com^ (easyprivacy.txt: 5431) +.beacon.gcion.com +# ||beacon.errorception.com^ (easyprivacy.txt: 5430) +.beacon.errorception.com +# ||beacon.affil.walmart.com^ (easyprivacy.txt: 5429) +.beacon.affil.walmart.com +# ||bc.geocities. (easyprivacy.txt: 5428) +.bc.geocities.*. +# ||bazaarvoice.com^*/magpie.js (easyprivacy.txt: 5427) +.bazaarvoice.com/.*/magpie\.js +# ||bazaarvoice.com/sid.gif (easyprivacy.txt: 5426) +.bazaarvoice.com/sid\.gif +# ||barium.cheezdev.com^ (easyprivacy.txt: 5425) +.barium.cheezdev.com +# ||bango.net/id/*.gif? (easyprivacy.txt: 5424) +.bango.net/id/.*\.gif\? +# ||bango.net/exid/*.gif? (easyprivacy.txt: 5423) +.bango.net/exid/.*\.gif\? +# ||babm.texthelp.com^ (easyprivacy.txt: 5422) +.babm.texthelp.com +# ||b5media.com/bbpixel.php (easyprivacy.txt: 5421) +.b5media.com/bbpixel\.php +# ||b.bedop.com^ (easyprivacy.txt: 5420) +.b.bedop.com +# ||axislogger.appspot.com^ (easyprivacy.txt: 5419) +.axislogger.appspot.com +# ||aweber.com/form/displays.htm?$image (easyprivacy.txt: 5418) +.aweber.com/form/displays\.htm\? +# ||awe.sm/conversions/ (easyprivacy.txt: 5417) +.awe.sm/conversions/ +# ||autoline-top.com/counter.php? (easyprivacy.txt: 5416) +.autoline-top.com/counter\.php\? +# ||audit.median.hu^ (easyprivacy.txt: 5415) +.audit.median.hu +# ||audit.303br.net^ (easyprivacy.txt: 5414) +.audit.303br.net +# ||audienceinsights.net^$third-party (easyprivacy.txt: 5413) +.audienceinsights.net +# ||audienceapi.newsdiscover.com.au^$third-party (easyprivacy.txt: 5412) +.audienceapi.newsdiscover.com.au +# ||auctiva.com/Default.aspx?query (easyprivacy.txt: 5411) +.auctiva.com/Default\.aspx\?query +# ||attributiontrackingga.googlecode.com^ (easyprivacy.txt: 5410) +.attributiontrackingga.googlecode.com +# ||atdmt.com/mstag/ (easyprivacy.txt: 5409) +.atdmt.com/mstag/ +# ||atdmt.com/jaction/ (easyprivacy.txt: 5408) +.atdmt.com/jaction/ +# ||atdmt.com/iaction/ (easyprivacy.txt: 5407) +.atdmt.com/iaction/ +# ||atdmt.com/action/ (easyprivacy.txt: 5406) +.atdmt.com/action/ +# ||asterpix.com/tagcloudview/ (easyprivacy.txt: 5405) +.asterpix.com/tagcloudview/ +# ||assoc-amazon.*^e/ir?t=$image (easyprivacy.txt: 5404) +.assoc-amazon.*./(.*[^\w%.-])?e/ir\?t= +# ||ask.com^*/i.gif? (easyprivacy.txt: 5403) +.ask.com/.*/i\.gif\? +# ||aserve.directorym.com^ (easyprivacy.txt: 5402) +.aserve.directorym.com +# ||arclk.net/trax? (easyprivacy.txt: 5401) +.arclk.net/trax\? +# ||archive.org/includes/analytics.js (easyprivacy.txt: 5400) +.archive.org/includes/analytics\.js +# ||apture.com/v3/?5=%7b%22stats%22$xmlhttprequest (easyprivacy.txt: 5399) +.apture.com/v3/\?5=%7b%22stats%22 +# ||appspot.com/api/track/ (easyprivacy.txt: 5398) +.appspot.com/api/track/ +# ||appsolutions.com/hitme?$third-party (easyprivacy.txt: 5397) +.appsolutions.com/hitme\? +# ||appliedsemantics.com/images/x.gif (easyprivacy.txt: 5396) +.appliedsemantics.com/images/x\.gif +# ||appdynamics.com/geo/$third-party (easyprivacy.txt: 5395) +.appdynamics.com/geo/ +# ||app.yesware.com/t/$third-party (easyprivacy.txt: 5394) +.app.yesware.com/t/ +# ||app.pendo.io/data/ptm.gif (easyprivacy.txt: 5393) +.app.pendo.io/data/ptm\.gif +# ||app.insightgrit.com^ (easyprivacy.txt: 5392) +.app.insightgrit.com +# ||app.cdn-cs.com/__t.png? (easyprivacy.txt: 5391) +.app.cdn-cs.com/__t\.png\? +# ||app.bronto.com^ (easyprivacy.txt: 5390) +.app.bronto.com +# ||apnic.net/1x1.png?$third-party (easyprivacy.txt: 5389) +.apnic.net/1x1\.png\? +# ||api.wipmania.com^ (easyprivacy.txt: 5388) +.api.wipmania.com +# ||api.fyreball.com^ (easyprivacy.txt: 5387) +.api.fyreball.com +# ||api.collarity.com/cws/*http (easyprivacy.txt: 5386) +.api.collarity.com/cws/.*http +# ||api.choicestream.com/instr/ccm/ (easyprivacy.txt: 5385) +.api.choicestream.com/instr/ccm/ +# ||api.bit.ly/*/clicks?$third-party (easyprivacy.txt: 5384) +.api.bit.ly/.*/clicks\? +# ||api.awe.sm/stats/$third-party (easyprivacy.txt: 5383) +.api.awe.sm/stats/ +# ||api-ping.intercom.io^ (easyprivacy.txt: 5382) +.api-ping.intercom.io +# ||aolcdn.com/omniunih_int.js (easyprivacy.txt: 5381) +.aolcdn.com/omniunih_int\.js +# ||aolcdn.com/js/mg2.js (easyprivacy.txt: 5380) +.aolcdn.com/js/mg2\.js +# ||aolanswers.com/wtrack/ (easyprivacy.txt: 5379) +.aolanswers.com/wtrack/ +# ||aol.com/ping? (easyprivacy.txt: 5378) +.aol.com/ping\? +# ||anvato.com/anvatoloader.swf?analytics= (easyprivacy.txt: 5377) +.anvato.com/anvatoloader\.swf\?analytics= +# ||analyzer.qmerce.com^ (easyprivacy.txt: 5376) +.analyzer.qmerce.com +# ||analyze.full-marke.com^ (easyprivacy.txt: 5375) +.analyze.full-marke.com +# ||analyticsengine.s3.amazonaws.com^ (easyprivacy.txt: 5374) +.analyticsengine.s3.amazonaws.com +# ||analytics.yolacdn.net^ (easyprivacy.txt: 5373) +.analytics.yolacdn.net +# ||analytics.yola.net^ (easyprivacy.txt: 5372) +.analytics.yola.net +# ||analytics.wildtangent.com^ (easyprivacy.txt: 5371) +.analytics.wildtangent.com +# ||analytics.websolute.it^ (easyprivacy.txt: 5370) +.analytics.websolute.it +# ||analytics.urx.io^ (easyprivacy.txt: 5369) +.analytics.urx.io +# ||analytics.tribeca.vidavee.com^ (easyprivacy.txt: 5368) +.analytics.tribeca.vidavee.com +# ||analytics.tout.com^ (easyprivacy.txt: 5367) +.analytics.tout.com +# ||analytics.themarketiq.com^ (easyprivacy.txt: 5366) +.analytics.themarketiq.com +# ||analytics.strangeloopnetworks.com^ (easyprivacy.txt: 5365) +.analytics.strangeloopnetworks.com +# ||analytics.stg.springboardvideo.com^ (easyprivacy.txt: 5364) +.analytics.stg.springboardvideo.com +# ||analytics.springboardvideo.com^ (easyprivacy.txt: 5363) +.analytics.springboardvideo.com +# ||analytics.sonymusic.com^ (easyprivacy.txt: 5362) +.analytics.sonymusic.com +# ||analytics.sitewit.com^ (easyprivacy.txt: 5361) +.analytics.sitewit.com +# ||analytics.shareaholic.com^ (easyprivacy.txt: 5360) +.analytics.shareaholic.com +# ||analytics.rogersmedia.com^ (easyprivacy.txt: 5359) +.analytics.rogersmedia.com +# ||analytics.reyrey.net^ (easyprivacy.txt: 5358) +.analytics.reyrey.net +# ||analytics.revee.com^ (easyprivacy.txt: 5357) +.analytics.revee.com +# ||analytics.radiatemedia.com^ (easyprivacy.txt: 5356) +.analytics.radiatemedia.com +# ||analytics.r17.com^ (easyprivacy.txt: 5355) +.analytics.r17.com +# ||analytics.prod.aws.ecnext.net^ (easyprivacy.txt: 5354) +.analytics.prod.aws.ecnext.net +# ||analytics.piksel.com^ (easyprivacy.txt: 5353) +.analytics.piksel.com +# ||analytics.photorank.me^ (easyprivacy.txt: 5352) +.analytics.photorank.me +# ||analytics.performable.com^ (easyprivacy.txt: 5351) +.analytics.performable.com +# ||analytics.orenshmu.com^ (easyprivacy.txt: 5350) +.analytics.orenshmu.com +# ||analytics.optilead.co.uk^ (easyprivacy.txt: 5349) +.analytics.optilead.co.uk +# ||analytics.onlyonlinemarketing.com^ (easyprivacy.txt: 5348) +.analytics.onlyonlinemarketing.com +# ||analytics.mlstatic.com^ (easyprivacy.txt: 5347) +.analytics.mlstatic.com +# ||analytics.matchbin.com^ (easyprivacy.txt: 5346) +.analytics.matchbin.com +# ||analytics.live.com^ (easyprivacy.txt: 5345) +.analytics.live.com +# ||analytics.kapost.com^ (easyprivacy.txt: 5344) +.analytics.kapost.com +# ||analytics.hpprintx.com^ (easyprivacy.txt: 5343) +.analytics.hpprintx.com +# ||analytics.hosting24.com^ (easyprivacy.txt: 5342) +.analytics.hosting24.com +# ||analytics.gvim.mobi^ (easyprivacy.txt: 5341) +.analytics.gvim.mobi +# ||analytics.fairfax.com.au^ (easyprivacy.txt: 5340) +.analytics.fairfax.com.au +# ||analytics.episodic.com^ (easyprivacy.txt: 5339) +.analytics.episodic.com +# ||analytics.edgesuite.net^ (easyprivacy.txt: 5338) +.analytics.edgesuite.net +# ||analytics.edgekey.net^ (easyprivacy.txt: 5337) +.analytics.edgekey.net +# ||analytics.dev.springboardvideo.com^ (easyprivacy.txt: 5336) +.analytics.dev.springboardvideo.com +# ||analytics.datahc.com^ (easyprivacy.txt: 5335) +.analytics.datahc.com +# ||analytics.cynapse.com^ (easyprivacy.txt: 5334) +.analytics.cynapse.com +# ||analytics.convertlanguage.com^ (easyprivacy.txt: 5333) +.analytics.convertlanguage.com +# ||analytics.conmio.com^ (easyprivacy.txt: 5332) +.analytics.conmio.com +# ||analytics.cmg.net^ (easyprivacy.txt: 5331) +.analytics.cmg.net +# ||analytics.closealert.com^ (easyprivacy.txt: 5330) +.analytics.closealert.com +# ||analytics.clickpathmedia.com^ (easyprivacy.txt: 5329) +.analytics.clickpathmedia.com +# ||analytics.bigcommerce.com^ (easyprivacy.txt: 5328) +.analytics.bigcommerce.com +# ||analytics.aweber.com^ (easyprivacy.txt: 5327) +.analytics.aweber.com +# ||analytics.atomiconline.com^ (easyprivacy.txt: 5326) +.analytics.atomiconline.com +# ||analytics.artirix.com^ (easyprivacy.txt: 5325) +.analytics.artirix.com +# ||analytics.apnewsregistry.com^ (easyprivacy.txt: 5324) +.analytics.apnewsregistry.com +# ||analytics.adeevo.com^ (easyprivacy.txt: 5323) +.analytics.adeevo.com +# ||analytics.abacast.com^ (easyprivacy.txt: 5322) +.analytics.abacast.com +# ||analytics-v2.anvato.com^ (easyprivacy.txt: 5321) +.analytics-v2.anvato.com +# ||analytics-beacon-*.amazonaws.com^ (easyprivacy.txt: 5320) +.analytics-beacon-*./.*\.amazonaws\.com[^\w%.-] +.analytics-beacon-*.amazonaws.com +# ||analyticapi.pho.fm^ (easyprivacy.txt: 5319) +.analyticapi.pho.fm +# ||analytic.xingcloud.com^$third-party (easyprivacy.txt: 5318) +.analytic.xingcloud.com +# ||analytic.pho.fm^ (easyprivacy.txt: 5317) +.analytic.pho.fm +# ||an.yandex.ru^ (easyprivacy.txt: 5316) +.an.yandex.ru +# ||ams.addflow.ru^ (easyprivacy.txt: 5315) +.ams.addflow.ru +# ||amplifypixel.outbrain.com^ (easyprivacy.txt: 5314) +.amplifypixel.outbrain.com +# ||amazonaws.com^*.kissmetrics.com/ (easyprivacy.txt: 5312) +.amazonaws.com/.*\.kissmetrics\.com/ +# ||amazonaws.com^*.kissinsights.com/ (easyprivacy.txt: 5311) +.amazonaws.com/.*\.kissinsights\.com/ +# ||amazonaws.com/wgntrk/ (easyprivacy.txt: 5310) +.amazonaws.com/wgntrk/ +# ||amazonaws.com/statics.reedge.com/ (easyprivacy.txt: 5309) +.amazonaws.com/statics\.reedge\.com/ +# ||amazonaws.com/searchdiscovery-satellite-production/ (easyprivacy.txt: 5308) +.amazonaws.com/searchdiscovery-satellite-production/ +# ||amazonaws.com/new.cetrk.com/ (easyprivacy.txt: 5307) +.amazonaws.com/new\.cetrk\.com/ +# ||amazonaws.com/ki.js/ (easyprivacy.txt: 5305) +.amazonaws.com/ki\.js/ +# ||amazonaws.com/js/reach.js (easyprivacy.txt: 5304) +.amazonaws.com/js/reach\.js +# ||amazonaws.com/initialize/$third-party (easyprivacy.txt: 5303) +.amazonaws.com/initialize/ +# ||amazonaws.com/g.aspx$third-party (easyprivacy.txt: 5302) +.amazonaws.com/g\.aspx +# ||amazonaws.com/cdn.barilliance.com/ (easyprivacy.txt: 5300) +.amazonaws.com/cdn\.barilliance\.com/ +# ||amazonaws.com/amacrpr/crpr.js (easyprivacy.txt: 5299) +.amazonaws.com/amacrpr/crpr\.js +# ||amazonaws.com/?wsid= (easyprivacy.txt: 5298) +.amazonaws.com/\?wsid= +# ||amazon.com/gp/*&linkCode$third-party (easyprivacy.txt: 5297) +.amazon.com/gp/.*&linkCode +# ||amazon.*/gp/r.html?R=$image (easyprivacy.txt: 5296) +.amazon.*./(.*/)?gp/r\.html\?R= +# ||amatomu.com/log.php? (easyprivacy.txt: 5295) +.amatomu.com/log\.php\? +# ||amatomu.com/link/log/ (easyprivacy.txt: 5294) +.amatomu.com/link/log/ +# ||alphasitebuilder.co.za/tracker/ (easyprivacy.txt: 5293) +.alphasitebuilder.co.za/tracker/ +# ||allanalpass.com/track/ (easyprivacy.txt: 5292) +.allanalpass.com/track/ +# ||aliyun.com/actionlog/ (easyprivacy.txt: 5291) +.aliyun.com/actionlog/ +# ||alipay.com/service/clear.png? (easyprivacy.txt: 5290) +.alipay.com/service/clear\.png\? +# ||alicdn.com/alilog/ (easyprivacy.txt: 5289) +.alicdn.com/alilog/ +# ||alexa.com/traffic/ (easyprivacy.txt: 5288) +.alexa.com/traffic/ +# ||alenty.com/trk/ (easyprivacy.txt: 5287) +.alenty.com/trk/ +# ||aksb-a.akamaihd.net^ (easyprivacy.txt: 5286) +.aksb-a.akamaihd.net +# ||akatracking.esearchvision.com^ (easyprivacy.txt: 5285) +.akatracking.esearchvision.com +# ||akanoo.com/tracker/ (easyprivacy.txt: 5284) +.akanoo.com/tracker/ +# ||akamai.net^*/sitetracking/ (easyprivacy.txt: 5283) +.akamai.net/.*/sitetracking/ +# ||akamai.net^*/a.visualrevenue.com/ (easyprivacy.txt: 5282) +.akamai.net/.*/a\.visualrevenue\.com/ +# ||akamai.net/chartbeat. (easyprivacy.txt: 5281) +.akamai.net/chartbeat\. +# ||akamai.net/*.babylon.com/trans_box/ (easyprivacy.txt: 5280) +.akamai.net/.*\.babylon\.com/trans_box/ +# ||akamai.com/crs/lgsitewise.js (easyprivacy.txt: 5279) +.akamai.com/crs/lgsitewise\.js +# ||aiya.com.cn/stat.js (easyprivacy.txt: 5278) +.aiya.com.cn/stat\.js +# ||agendize.com^*/counts.jsp? (easyprivacy.txt: 5277) +.agendize.com/.*/counts\.jsp\? +# ||afrigator.com/track/ (easyprivacy.txt: 5276) +.afrigator.com/track/ +# ||affl.sucuri.net^ (easyprivacy.txt: 5275) +.affl.sucuri.net +# ||affilired.com/analytic/$third-party (easyprivacy.txt: 5274) +.affilired.com/analytic/ +# ||affiliates.swappernet.com^ (easyprivacy.txt: 5273) +.affiliates.swappernet.com +# ||affiliates.spark.net^$third-party (easyprivacy.txt: 5272) +.affiliates.spark.net +# ||affiliates.minglematch.com^$third-party (easyprivacy.txt: 5271) +.affiliates.minglematch.com +# ||affiliates.mgmmirage.com^ (easyprivacy.txt: 5270) +.affiliates.mgmmirage.com +# ||affiliate.mediatemple.net^$~third-party (easyprivacy.txt: 5269) +.affiliate.mediatemple.net +# ||affiliate.iamplify.com^ (easyprivacy.txt: 5268) +.affiliate.iamplify.com +# ||adultmastercash.com/e1.php$third-party (easyprivacy.txt: 5267) +.adultmastercash.com/e1\.php +# ||adtrack.calls.net^$third-party (easyprivacy.txt: 5266) +.adtrack.calls.net +# ||adsimg.com/js/analytics.js? (easyprivacy.txt: 5265) +.adsimg.com/js/analytics\.js\? +# ||ads.bridgetrack.com^$image (easyprivacy.txt: 5264) +.ads.bridgetrack.com +# ||admission.net^*/displaytracker.js (easyprivacy.txt: 5263) +.admission.net/.*/displaytracker\.js +# ||adlog.com.com^ (easyprivacy.txt: 5262) +.adlog.com.com +# ||adg.bzgint.com^ (easyprivacy.txt: 5261) +.adg.bzgint.com +# ||adf.ly/ad/conv? (easyprivacy.txt: 5260) +.adf.ly/ad/conv\? +# ||addtoany.com/menu/transparent.gif (easyprivacy.txt: 5259) +.addtoany.com/menu/transparent\.gif +# ||addthisedge.com/live/ (easyprivacy.txt: 5258) +.addthisedge.com/live/ +# ||addthiscdn.com/live/ (easyprivacy.txt: 5257) +.addthiscdn.com/live/ +# ||addthiscdn.com/*.gif?uid= (easyprivacy.txt: 5256) +.addthiscdn.com/.*\.gif\?uid= +# ||addthis.com^*/p.json?*&ref= (easyprivacy.txt: 5255) +.addthis.com/.*/p\.json\?.*&ref= +# ||addthis.com/red/p.png? (easyprivacy.txt: 5254) +.addthis.com/red/p\.png\? +# ||addthis.com/red/$script,third-party (easyprivacy.txt: 5253) +.addthis.com/red/ +# ||addthis.com/live/ (easyprivacy.txt: 5252) +.addthis.com/live/ +# ||addthis.com/at/ (easyprivacy.txt: 5251) +.addthis.com/at/ +# ||addnow.com/tracker/ (easyprivacy.txt: 5250) +.addnow.com/tracker/ +# ||adchemy-content.com^*/tracking.js (easyprivacy.txt: 5249) +.adchemy-content.com/.*/tracking\.js +# ||ad.atdmt.com/s/ (easyprivacy.txt: 5248) +.ad.atdmt.com/s/ +# ||ad.atdmt.com/m/ (easyprivacy.txt: 5247) +.ad.atdmt.com/m/ +# ||ad.atdmt.com/i/img/ (easyprivacy.txt: 5246) +.ad.atdmt.com/i/img/ +# ||ad.atdmt.com/i/go; (easyprivacy.txt: 5245) +.ad.atdmt.com/i/go; +# ||ad.atdmt.com/i/*= (easyprivacy.txt: 5244) +.ad.atdmt.com/i/.*= +# ||ad.atdmt.com/e/ (easyprivacy.txt: 5243) +.ad.atdmt.com/e/ +# ||ad.atdmt.com/c/ (easyprivacy.txt: 5242) +.ad.atdmt.com/c/ +# ||ad.aloodo.com^$third-party (easyprivacy.txt: 5241) +.ad.aloodo.com +# ||actonservice.com^*/tracker/ (easyprivacy.txt: 5240) +.actonservice.com/.*/tracker/ +# ||activities.niagara.comedycentral.com^ (easyprivacy.txt: 5239) +.activities.niagara.comedycentral.com +# ||activetracker.activehotels.com^$third-party (easyprivacy.txt: 5238) +.activetracker.activehotels.com +# ||activecommerce.net/collector.gif (easyprivacy.txt: 5237) +.activecommerce.net/collector\.gif +# ||acs86.com/t.js (easyprivacy.txt: 5236) +.acs86.com/t\.js +# ||acount.alley.ws^$third-party (easyprivacy.txt: 5235) +.acount.alley.ws +# ||acces-charme.com/fakebar/track.php? (easyprivacy.txt: 5234) +.acces-charme.com/fakebar/track\.php\? +# ||abc.hearst.co.uk^$third-party (easyprivacy.txt: 5233) +.abc.hearst.co.uk +# ||aao.org/aao/sdc/track.js (easyprivacy.txt: 5232) +.aao.org/aao/sdc/track\.js +# ||aan.amazon.com^$third-party (easyprivacy.txt: 5231) +.aan.amazon.com +# ||aaa.aj5.info^ (easyprivacy.txt: 5230) +.aaa.aj5.info +# ||a2a.lockerz.com^ (easyprivacy.txt: 5229) +.a2a.lockerz.com +# ||a.unanimis.co.uk^ (easyprivacy.txt: 5228) +.a.unanimis.co.uk +# ||a.mobify.com^$third-party (easyprivacy.txt: 5227) +.a.mobify.com +# ||9msn.com.au^*/tracking/ (easyprivacy.txt: 5226) +.9msn.com.au/.*/tracking/ +# ||9fine.ru/js/counter. (easyprivacy.txt: 5225) +.9fine.ru/js/counter\. +# ||99widgets.com/counters/ (easyprivacy.txt: 5224) +.99widgets.com/counters/ +# ||88.208.248.58/tracking/ (easyprivacy.txt: 5222) +.88.208.248.58/tracking/ +# ||6waves.com/edm.php?uid=$image (easyprivacy.txt: 5220) +.6waves.com/edm\.php\?uid= +# ||5min.com/flashcookie/StorageCookieSWF_ (easyprivacy.txt: 5217) +.5min.com/flashcookie/StorageCookieSWF_ +# ||5251.net/stat.jsp? (easyprivacy.txt: 5214) +.5251.net/stat\.jsp\? +# ||51network.com^$third-party (easyprivacy.txt: 5213) +.51network.com +# ||4theclueless.com/adlogger/ (easyprivacy.txt: 5211) +.4theclueless.com/adlogger/ +# ||3crowd.com^*/3c1px.gif (easyprivacy.txt: 5210) +.3crowd.com/.*/3c1px\.gif +# ||208.91.157.30/viewtrack/ (easyprivacy.txt: 5204) +.208.91.157.30/viewtrack/ +# ||198.101.148.38/update_counter.php (easyprivacy.txt: 5201) +.198.101.148.38/update_counter\.php +# ||184.73.203.249/i.gif? (easyprivacy.txt: 5197) +.184.73.203.249/i\.gif\? +# ||148.251.8.156/track.js (easyprivacy.txt: 5188) +.148.251.8.156/track\.js +# ||123myp.co.uk/ip-address/ (easyprivacy.txt: 5187) +.123myp.co.uk/ip-address/ +# ||101apps.com/tracker.ashx? (easyprivacy.txt: 5184) +.101apps.com/tracker\.ashx\? +# |http://l2.io/ip.js$third-party (easyprivacy.txt: 5183) +l2.io/ip\.js +# ||gostats.vn^$third-party (easyprivacy.txt: 5180) +.gostats.vn +# ||weblog.com.ua^$third-party (easyprivacy.txt: 5178) +.weblog.com.ua +# ||uapoisk.net^$third-party (easyprivacy.txt: 5177) +.uapoisk.net +# ||mycounter.ua^$third-party (easyprivacy.txt: 5176) +.mycounter.ua +# ||mycounter.com.ua^$third-party (easyprivacy.txt: 5175) +.mycounter.com.ua +# |http://r.i.ua^$third-party (easyprivacy.txt: 5174) +r.i.ua +# ||zirve100.com^$third-party (easyprivacy.txt: 5172) +.zirve100.com +# ||webservis.gen.tr^$third-party (easyprivacy.txt: 5171) +.webservis.gen.tr +# ||sitetistik.com^$third-party (easyprivacy.txt: 5170) +.sitetistik.com +# ||sayyac.net^$third-party (easyprivacy.txt: 5169) +.sayyac.net +# ||sayyac.com^$third-party (easyprivacy.txt: 5168) +.sayyac.com +# ||realist.gen.tr^$third-party (easyprivacy.txt: 5167) +.realist.gen.tr +# ||onlinewebstat.com^$third-party (easyprivacy.txt: 5166) +.onlinewebstat.com +# ||truehits3.gits.net.th^$third-party (easyprivacy.txt: 5164) +.truehits3.gits.net.th +# ||truehits.net^$third-party (easyprivacy.txt: 5163) +.truehits.net +# ||tracker.stats.in.th^$third-party (easyprivacy.txt: 5162) +.tracker.stats.in.th +# ||d-stats.com^$third-party (easyprivacy.txt: 5161) +.d-stats.com +# ||webserviceaward.com^$third-party (easyprivacy.txt: 5159) +.webserviceaward.com +# ||vastpaketet.se^$third-party (easyprivacy.txt: 5158) +.vastpaketet.se +# ||spklw.com^$third-party (easyprivacy.txt: 5157) +.spklw.com +# ||research-int.se^$third-party (easyprivacy.txt: 5156) +.research-int.se +# ||publish-int.se^$third-party (easyprivacy.txt: 5155) +.publish-int.se +# ||prospecteye.com^$third-party (easyprivacy.txt: 5154) +.prospecteye.com +# ||adtraction.com^$third-party (easyprivacy.txt: 5153) +.adtraction.com +# ||adsettings.com^$third-party (easyprivacy.txt: 5152) +.adsettings.com +# ||micodigo.com^$third-party (easyprivacy.txt: 5150) +.micodigo.com +# ||mabaya.com^$third-party (easyprivacy.txt: 5149) +.mabaya.com +# ||intrastats.com^$third-party (easyprivacy.txt: 5148) +.intrastats.com +# ||hits.e.cl^$third-party (easyprivacy.txt: 5147) +.hits.e.cl +# ||hit.copesa.cl^$third-party (easyprivacy.txt: 5146) +.hit.copesa.cl +# ||estadisticasgratis.es^$third-party (easyprivacy.txt: 5145) +.estadisticasgratis.es +# ||estadisticasgratis.com^$third-party (easyprivacy.txt: 5144) +.estadisticasgratis.com +# ||eresmas.net^$third-party (easyprivacy.txt: 5143) +.eresmas.net +# ||delidatax.net^$third-party (easyprivacy.txt: 5142) +.delidatax.net +# ||contadorweb.com^$third-party (easyprivacy.txt: 5141) +.contadorweb.com +# ||contadorgratis.es^$third-party (easyprivacy.txt: 5140) +.contadorgratis.es +# ||contadorgratis.com^$third-party (easyprivacy.txt: 5139) +.contadorgratis.com +# ||contadordevisitas.es^$third-party (easyprivacy.txt: 5138) +.contadordevisitas.es +# ||certifica.com^$third-party (easyprivacy.txt: 5137) +.certifica.com +# ||toplist.sk^$third-party (easyprivacy.txt: 5135) +.toplist.sk +# ||pocitadlo.sk^$third-party (easyprivacy.txt: 5134) +.pocitadlo.sk +# ||idot.cz^$third-party (easyprivacy.txt: 5133) +.idot.cz +# ||blogtraffic.sg^$third-party (easyprivacy.txt: 5131) +.blogtraffic.sg +# ||zero.kz^$third-party (easyprivacy.txt: 5129) +.zero.kz +# ||www.rt-ns.ru^$third-party (easyprivacy.txt: 5128) +.www.rt-ns.ru +# ||webvisor.ru^$third-party (easyprivacy.txt: 5127) +.webvisor.ru +# ||webtalking.ru^$third-party (easyprivacy.txt: 5126) +.webtalking.ru +# ||webest.info^$third-party (easyprivacy.txt: 5125) +.webest.info +# ||web-visor.com^$third-party (easyprivacy.txt: 5124) +.web-visor.com +# ||warlog.ru^$third-party (easyprivacy.txt: 5123) +.warlog.ru +# ||vologda-info.ru^$third-party (easyprivacy.txt: 5122) +.vologda-info.ru +# ||volgograd-info.ru^$third-party (easyprivacy.txt: 5121) +.volgograd-info.ru +# ||vira.ru^$third-party (easyprivacy.txt: 5120) +.vira.ru +# ||vidigital.ru^$third-party (easyprivacy.txt: 5119) +.vidigital.ru +# ||uzrating.com^$third-party (easyprivacy.txt: 5118) +.uzrating.com +# ||uptolike.com^$third-party (easyprivacy.txt: 5117) +.uptolike.com +# ||uarating.com^$third-party (easyprivacy.txt: 5116) +.uarating.com +# ||toptracker.ru^$third-party (easyprivacy.txt: 5115) +.toptracker.ru +# ||tbex.ru^$third-party (easyprivacy.txt: 5114) +.tbex.ru +# ||stattds.club^$third-party (easyprivacy.txt: 5113) +.stattds.club +# ||stat24.ru^$third-party (easyprivacy.txt: 5112) +.stat24.ru +# ||skylog.kz^$third-party (easyprivacy.txt: 5111) +.skylog.kz +# ||site-submit.com.ua^$third-party (easyprivacy.txt: 5110) +.site-submit.com.ua +# ||serating.ru^$third-party (easyprivacy.txt: 5109) +.serating.ru +# ||seo-master.net^$third-party (easyprivacy.txt: 5108) +.seo-master.net +# ||sensor.org.ua^$third-party (easyprivacy.txt: 5107) +.sensor.org.ua +# ||sarov.ws^$third-party (easyprivacy.txt: 5106) +.sarov.ws +# ||quick-counter.net^$third-party (easyprivacy.txt: 5105) +.quick-counter.net +# ||proext.com^$third-party (easyprivacy.txt: 5104) +.proext.com +# ||pmbox.biz^$third-party (easyprivacy.txt: 5103) +.pmbox.biz +# ||personage.name^$third-party (easyprivacy.txt: 5102) +.personage.name +# ||openstat.net^$third-party (easyprivacy.txt: 5101) +.openstat.net +# ||onthe.io^$third-party (easyprivacy.txt: 5100) +.onthe.io +# ||mystat-in.net^$third-party (easyprivacy.txt: 5099) +.mystat-in.net +# ||musiccounter.ru^$third-party (easyprivacy.txt: 5098) +.musiccounter.ru +# ||mokuz.ru^$third-party (easyprivacy.txt: 5097) +.mokuz.ru +# ||mediatoday.ru^$third-party (easyprivacy.txt: 5096) +.mediatoday.ru +# ||mediaplan.ru^$third-party (easyprivacy.txt: 5095) +.mediaplan.ru +# ||mediametrics.ru^$third-party (easyprivacy.txt: 5094) +.mediametrics.ru +# ||lugansk-info.ru^$third-party (easyprivacy.txt: 5093) +.lugansk-info.ru +# ||lookmy.info^$third-party (easyprivacy.txt: 5092) +.lookmy.info +# ||logz.ru^$third-party (easyprivacy.txt: 5091) +.logz.ru +# ||logxp.ru^$third-party (easyprivacy.txt: 5090) +.logxp.ru +# ||logua.com^$third-party (easyprivacy.txt: 5089) +.logua.com +# ||logger.su^$third-party (easyprivacy.txt: 5088) +.logger.su +# ||listtop.ru^$third-party (easyprivacy.txt: 5087) +.listtop.ru +# ||lentainform.com^$third-party (easyprivacy.txt: 5086) +.lentainform.com +# ||kmindex.ru^$third-party (easyprivacy.txt: 5085) +.kmindex.ru +# ||jetcounter.ru^$third-party (easyprivacy.txt: 5084) +.jetcounter.ru +# ||iryazan.ru^$third-party (easyprivacy.txt: 5083) +.iryazan.ru +# ||intergid.ru^$third-party (easyprivacy.txt: 5082) +.intergid.ru +# ||infostroy.nnov.ru^$third-party (easyprivacy.txt: 5081) +.infostroy.nnov.ru +# ||imrk.net^$third-party (easyprivacy.txt: 5080) +.imrk.net +# ||idntfy.ru^$third-party (easyprivacy.txt: 5079) +.idntfy.ru +# ||hsdn.org^$third-party (easyprivacy.txt: 5078) +.hsdn.org +# ||hotlog.ru^$third-party (easyprivacy.txt: 5077) +.hotlog.ru +# ||hitmir.ru^$third-party (easyprivacy.txt: 5076) +.hitmir.ru +# ||gostats.ru^$third-party (easyprivacy.txt: 5075) +.gostats.ru +# ||gdeslon.ru^$third-party (easyprivacy.txt: 5074) +.gdeslon.ru +# ||faststart.ru^$third-party (easyprivacy.txt: 5073) +.faststart.ru +# ||e-kuzbass.ru^$third-party (easyprivacy.txt: 5072) +.e-kuzbass.ru +# ||digitaltarget.ru^$third-party (easyprivacy.txt: 5071) +.digitaltarget.ru +# ||cnstats.ru^$third-party (easyprivacy.txt: 5070) +.cnstats.ru +# ||clubcollector.com^$third-party (easyprivacy.txt: 5069) +.clubcollector.com +# ||cityua.net^$third-party (easyprivacy.txt: 5068) +.cityua.net +# ||botscanner.com^$third-party (easyprivacy.txt: 5067) +.botscanner.com +# ||apkonline.ru^$third-party (easyprivacy.txt: 5066) +.apkonline.ru +# ||announcement.ru^$third-party (easyprivacy.txt: 5065) +.announcement.ru +# ||a-counter.kiev.ua^$third-party (easyprivacy.txt: 5064) +.a-counter.kiev.ua +# ||a-counter.com.ua^$third-party (easyprivacy.txt: 5063) +.a-counter.com.ua +# ||24log.ru^$third-party (easyprivacy.txt: 5062) +.24log.ru +# ||zontera.com^$third-party (easyprivacy.txt: 5060) +.zontera.com +# ||trafix.ro^$third-party (easyprivacy.txt: 5059) +.trafix.ro +# ||trafic.ro^$third-party (easyprivacy.txt: 5058) +.trafic.ro +# ||top-ro.ro^$third-party (easyprivacy.txt: 5057) +.top-ro.ro +# ||statistics.ro^$third-party (easyprivacy.txt: 5056) +.statistics.ro +# ||hit100.ro^$third-party (easyprivacy.txt: 5055) +.hit100.ro +# ||gtop.ro^$third-party (easyprivacy.txt: 5054) +.gtop.ro +# ||brat-online.ro^$third-party (easyprivacy.txt: 5053) +.brat-online.ro +# ||best-top.ro^$third-party (easyprivacy.txt: 5052) +.best-top.ro +# ||tailtarget.com^$third-party (easyprivacy.txt: 5050) +.tailtarget.com +# ||popstats.com.br^$third-party (easyprivacy.txt: 5049) +.popstats.com.br +# ||marktest.pt^$third-party (easyprivacy.txt: 5048) +.marktest.pt +# ||way2traffic.com^$third-party (easyprivacy.txt: 5046) +.way2traffic.com +# ||tagcdn.com^$third-party (easyprivacy.txt: 5045) +.tagcdn.com +# ||stat.pl^$third-party (easyprivacy.txt: 5044) +.stat.pl +# ||stat.4u.pl^$third-party (easyprivacy.txt: 5043) +.stat.4u.pl +# ||rejestr.org^$third-party (easyprivacy.txt: 5042) +.rejestr.org +# ||ngastatic.com^$third-party (easyprivacy.txt: 5041) +.ngastatic.com +# ||ngacm.com^$third-party (easyprivacy.txt: 5040) +.ngacm.com +# ||legenhit.com^$third-party (easyprivacy.txt: 5039) +.legenhit.com +# ||hub.com.pl^$third-party (easyprivacy.txt: 5038) +.hub.com.pl +# ||gostats.pl^$third-party (easyprivacy.txt: 5037) +.gostats.pl +# ||gemius.pl^$third-party (easyprivacy.txt: 5036) +.gemius.pl +# ||clickonometrics.pl^$third-party (easyprivacy.txt: 5035) +.clickonometrics.pl +# ||adstat.4u.pl^$third-party (easyprivacy.txt: 5034) +.adstat.4u.pl +# ||webgozar.ir^$third-party (easyprivacy.txt: 5032) +.webgozar.ir +# ||webgozar.com^$third-party (easyprivacy.txt: 5031) +.webgozar.com +# ||tinystat.ir^$third-party (easyprivacy.txt: 5030) +.tinystat.ir +# ||persianstat.ir^$third-party (easyprivacy.txt: 5029) +.persianstat.ir +# ||persianstat.com^$third-party (easyprivacy.txt: 5028) +.persianstat.com +# ||melatstat.com^$third-party (easyprivacy.txt: 5027) +.melatstat.com +# ||xtractor.no^$third-party (easyprivacy.txt: 5025) +.xtractor.no +# ||webstat.no^$third-party (easyprivacy.txt: 5024) +.webstat.no +# ||trafikkfondet.no^$third-party (easyprivacy.txt: 5023) +.trafikkfondet.no +# ||de17a.com^$third-party (easyprivacy.txt: 5022) +.de17a.com +# ||www.hey.lt^$third-party (easyprivacy.txt: 5020) +.www.hey.lt +# ||webstatistika.lt^$third-party (easyprivacy.txt: 5019) +.webstatistika.lt +# ||visits.lt^$third-party (easyprivacy.txt: 5018) +.visits.lt +# ||stats.lt^$third-party (easyprivacy.txt: 5017) +.stats.lt +# ||reitingas.lt^$third-party (easyprivacy.txt: 5016) +.reitingas.lt +# ||easy.lv^$third-party (easyprivacy.txt: 5015) +.easy.lv +# ||wos.lv^$third-party (easyprivacy.txt: 5013) +.wos.lv +# ||webstatistika.lv^$third-party (easyprivacy.txt: 5012) +.webstatistika.lv +# ||topsite.lv^$third-party (easyprivacy.txt: 5011) +.topsite.lv +# ||top.lv^$third-party (easyprivacy.txt: 5010) +.top.lv +# ||stats4u.lv^$third-party (easyprivacy.txt: 5009) +.stats4u.lv +# ||statistika.lv^$third-party (easyprivacy.txt: 5008) +.statistika.lv +# ||reitingi.lv^$third-party (easyprivacy.txt: 5007) +.reitingi.lv +# ||puls.lv^$third-party (easyprivacy.txt: 5006) +.puls.lv +# ||on-line.lv^$third-party (easyprivacy.txt: 5005) +.on-line.lv +# ||erotop.lv^$third-party (easyprivacy.txt: 5004) +.erotop.lv +# ||cms.lv^$third-party (easyprivacy.txt: 5003) +.cms.lv +# ||logger.co.kr^$third-party (easyprivacy.txt: 5001) +.logger.co.kr +# ||ziyu.net^$third-party (easyprivacy.txt: 4999) +.ziyu.net +# ||trackfeed.com^$third-party (easyprivacy.txt: 4998) +.trackfeed.com +# ||rtoaster.jp^$third-party (easyprivacy.txt: 4997) +.rtoaster.jp +# ||research-artisan.com^$third-party (easyprivacy.txt: 4996) +.research-artisan.com +# ||owldata.com^$third-party (easyprivacy.txt: 4995) +.owldata.com +# ||omiki.com^$third-party (easyprivacy.txt: 4994) +.omiki.com +# ||mobylog.jp^$third-party (easyprivacy.txt: 4993) +.mobylog.jp +# ||japanmetrix.jp^$third-party (easyprivacy.txt: 4992) +.japanmetrix.jp +# ||i2i.jp^$third-party (easyprivacy.txt: 4991) +.i2i.jp +# ||hitgraph.jp^$third-party (easyprivacy.txt: 4990) +.hitgraph.jp +# ||gmodmp.jp^$third-party (easyprivacy.txt: 4989) +.gmodmp.jp +# ||fout.jp^$third-party (easyprivacy.txt: 4988) +.fout.jp +# ||eco-tag.jp^$third-party (easyprivacy.txt: 4987) +.eco-tag.jp +# ||e-kaiseki.com^$third-party (easyprivacy.txt: 4986) +.e-kaiseki.com +# ||cosmi.io^$third-party (easyprivacy.txt: 4985) +.cosmi.io +# ||blogranking.net^$third-party (easyprivacy.txt: 4984) +.blogranking.net +# ||beanscattering.jp^$third-party (easyprivacy.txt: 4983) +.beanscattering.jp +# ||a-cast.jp^$third-party (easyprivacy.txt: 4982) +.a-cast.jp +# ||zt-dst.com^$third-party (easyprivacy.txt: 4980) +.zt-dst.com +# ||wstatslive.com^$third-party (easyprivacy.txt: 4979) +.wstatslive.com +# ||whoseesyou.com^$third-party (easyprivacy.txt: 4978) +.whoseesyou.com +# ||webtraffstats.net^$third-party (easyprivacy.txt: 4977) +.webtraffstats.net +# ||webmobile.ws^$third-party (easyprivacy.txt: 4976) +.webmobile.ws +# ||webmeter.ws^$third-party (easyprivacy.txt: 4975) +.webmeter.ws +# ||vivistats.com^$third-party (easyprivacy.txt: 4974) +.vivistats.com +# ||ultrastats.it^$third-party (easyprivacy.txt: 4973) +.ultrastats.it +# ||trackset.it^$third-party (easyprivacy.txt: 4972) +.trackset.it +# ||thestat.net^$third-party (easyprivacy.txt: 4971) +.thestat.net +# ||tetigi.com^$third-party (easyprivacy.txt: 4970) +.tetigi.com +# ||superstat.info^$third-party (easyprivacy.txt: 4969) +.superstat.info +# ||statsview.it^$third-party (easyprivacy.txt: 4968) +.statsview.it +# ||statsforever.com^$third-party (easyprivacy.txt: 4967) +.statsforever.com +# ||statsadvance-01.net^$third-party (easyprivacy.txt: 4966) +.statsadvance-01.net +# ||statistichegratis.net^$third-party (easyprivacy.txt: 4965) +.statistichegratis.net +# ||statistiche.ws^$third-party (easyprivacy.txt: 4964) +.statistiche.ws +# ||statistiche.it^$third-party (easyprivacy.txt: 4963) +.statistiche.it +# ||statistiche-free.com^$third-party (easyprivacy.txt: 4962) +.statistiche-free.com +# ||specialstat.com^$third-party (easyprivacy.txt: 4961) +.specialstat.com +# ||shinystat.it^$third-party (easyprivacy.txt: 4960) +.shinystat.it +# ||prostats.it^$third-party (easyprivacy.txt: 4959) +.prostats.it +# ||pagerankfree.com^$third-party (easyprivacy.txt: 4958) +.pagerankfree.com +# ||ntlab.org^$third-party (easyprivacy.txt: 4957) +.ntlab.org +# ||ninestats.com^$third-party (easyprivacy.txt: 4956) +.ninestats.com +# ||mystat.it^$third-party (easyprivacy.txt: 4955) +.mystat.it +# ||megastat.net^$third-party (easyprivacy.txt: 4954) +.megastat.net +# ||laserstat.com^$third-party (easyprivacy.txt: 4953) +.laserstat.com +# ||keyxel.com^$third-party (easyprivacy.txt: 4952) +.keyxel.com +# ||italianadirectory.com^$third-party (easyprivacy.txt: 4951) +.italianadirectory.com +# ||ipfrom.com^$third-party (easyprivacy.txt: 4950) +.ipfrom.com +# ||imetrix.it^$third-party (easyprivacy.txt: 4949) +.imetrix.it +# ||hitcountersonline.com^$third-party (easyprivacy.txt: 4948) +.hitcountersonline.com +# ||hiperstat.com^$third-party (easyprivacy.txt: 4947) +.hiperstat.com +# ||geocontatore.com^$third-party (easyprivacy.txt: 4946) +.geocontatore.com +# ||freestats.ws^$third-party (easyprivacy.txt: 4945) +.freestats.ws +# ||freestats.tv^$third-party (easyprivacy.txt: 4944) +.freestats.tv +# ||freestats.tk^$third-party (easyprivacy.txt: 4943) +.freestats.tk +# ||freestats.org^$third-party (easyprivacy.txt: 4942) +.freestats.org +# ||freestats.net^$third-party (easyprivacy.txt: 4941) +.freestats.net +# ||freestats.me^$third-party (easyprivacy.txt: 4940) +.freestats.me +# ||freestats.biz^$third-party (easyprivacy.txt: 4939) +.freestats.biz +# ||freestat.ws^$third-party (easyprivacy.txt: 4938) +.freestat.ws +# ||freecounter.it^$third-party (easyprivacy.txt: 4937) +.freecounter.it +# ||digital-metric.com^$third-party (easyprivacy.txt: 4936) +.digital-metric.com +# ||cuntador.com^$third-party (easyprivacy.txt: 4935) +.cuntador.com +# ||contatoreaccessi.com^$third-party (easyprivacy.txt: 4934) +.contatoreaccessi.com +# ||avstat.it^$third-party (easyprivacy.txt: 4933) +.avstat.it +# ||accessi.it^$third-party (easyprivacy.txt: 4932) +.accessi.it +# ||0stats.com^$third-party (easyprivacy.txt: 4931) +.0stats.com +# ||modernus.is^$third-party (easyprivacy.txt: 4929) +.modernus.is +# ||mystat.hu^$third-party (easyprivacy.txt: 4927) +.mystat.hu +# ||hirmatrix.hu^$third-party (easyprivacy.txt: 4926) +.hirmatrix.hu +# ||gpr.hu^$third-party (easyprivacy.txt: 4925) +.gpr.hu +# ||hetchi.com^$third-party (easyprivacy.txt: 4923) +.hetchi.com +# ||enter-system.com^$third-party (easyprivacy.txt: 4922) +.enter-system.com +# ||hotstats.gr^$third-party (easyprivacy.txt: 4920) +.hotstats.gr +# ||vihtori-analytics.fi^$third-party (easyprivacy.txt: 4918) +.vihtori-analytics.fi +# ||tracking*.euroads.fi^$third-party (easyprivacy.txt: 4917) +.tracking*./.*\.euroads\.fi[^\w%.-] +.tracking*.euroads.fi +# ||stat.www.fi^$third-party (easyprivacy.txt: 4916) +.stat.www.fi +# ||netmonitor.fi^$third-party (easyprivacy.txt: 4915) +.netmonitor.fi +# ||m-brain.fi^$third-party (easyprivacy.txt: 4914) +.m-brain.fi +# ||kavijaseuranta.fi^$third-party (easyprivacy.txt: 4913) +.kavijaseuranta.fi +# ||inpref.com^$third-party (easyprivacy.txt: 4912) +.inpref.com +# ||gallupnet.fi^$third-party (easyprivacy.txt: 4911) +.gallupnet.fi +# ||frosmo.com^$third-party (easyprivacy.txt: 4910) +.frosmo.com +# ||mediaindex.ee^$third-party (easyprivacy.txt: 4908) +.mediaindex.ee +# ||counter.ok.ee^$third-party (easyprivacy.txt: 4907) +.counter.ok.ee +# ||traffic4u.nl^$third-party (easyprivacy.txt: 4905) +.traffic4u.nl +# ||svtrd.com^$third-party (easyprivacy.txt: 4904) +.svtrd.com +# ||stealth.nl^$third-party (easyprivacy.txt: 4903) +.stealth.nl +# ||mystats.nl^$third-party (easyprivacy.txt: 4902) +.mystats.nl +# ||mtrack.nl^$third-party (easyprivacy.txt: 4901) +.mtrack.nl +# ||metriweb.be^$third-party (easyprivacy.txt: 4900) +.metriweb.be +# ||istats.nl^$third-party (easyprivacy.txt: 4899) +.istats.nl +# ||active24stats.nl^$third-party (easyprivacy.txt: 4898) +.active24stats.nl +# ||zipstat.dk^$third-party (easyprivacy.txt: 4896) +.zipstat.dk +# ||tns-gallup.dk^$third-party (easyprivacy.txt: 4895) +.tns-gallup.dk +# ||sitechart.dk^$third-party (easyprivacy.txt: 4894) +.sitechart.dk +# ||peakcounter.dk^$third-party (easyprivacy.txt: 4893) +.peakcounter.dk +# ||parameter.dk^$third-party (easyprivacy.txt: 4892) +.parameter.dk +# ||netstats.dk^$third-party (easyprivacy.txt: 4891) +.netstats.dk +# ||netminers.dk^$third-party (easyprivacy.txt: 4890) +.netminers.dk +# ||ncom.dk^$third-party (easyprivacy.txt: 4889) +.ncom.dk +# ||livewebstats.dk^$third-party (easyprivacy.txt: 4888) +.livewebstats.dk +# ||livecounter.dk^$third-party (easyprivacy.txt: 4887) +.livecounter.dk +# ||infocollect.dk^$third-party (easyprivacy.txt: 4886) +.infocollect.dk +# ||hitcount.dk^$third-party (easyprivacy.txt: 4885) +.hitcount.dk +# ||gixmo.dk^$third-party (easyprivacy.txt: 4884) +.gixmo.dk +# ||euroads.dk^$third-party (easyprivacy.txt: 4883) +.euroads.dk +# ||chart.dk^$third-party (easyprivacy.txt: 4882) +.chart.dk +# ||andersenit.dk^$third-party (easyprivacy.txt: 4881) +.andersenit.dk +# ||agillic.eu^$third-party (easyprivacy.txt: 4880) +.agillic.eu +# ||toplist.cz^$third-party (easyprivacy.txt: 4878) +.toplist.cz +# ||pocitadlo.cz^$third-party (easyprivacy.txt: 4877) +.pocitadlo.cz +# ||netagent.cz^$third-party (easyprivacy.txt: 4876) +.netagent.cz +# ||navrcholu.cz^$third-party (easyprivacy.txt: 4875) +.navrcholu.cz +# ||monkeytracker.cz^$third-party (easyprivacy.txt: 4874) +.monkeytracker.cz +# ||lookit.cz^$third-party (easyprivacy.txt: 4873) +.lookit.cz +# ||itop.cz^$third-party (easyprivacy.txt: 4872) +.itop.cz +# ||ibillboard.com^$third-party (easyprivacy.txt: 4871) +.ibillboard.com +# ||xclaimwords.net^$third-party (easyprivacy.txt: 4869) +.xclaimwords.net +# ||dotmetrics.net^$third-party (easyprivacy.txt: 4868) +.dotmetrics.net +# ||ztcadx.com^$third-party (easyprivacy.txt: 4866) +.ztcadx.com +# ||zampda.net^$third-party (easyprivacy.txt: 4865) +.zampda.net +# ||yigao.com^$third-party (easyprivacy.txt: 4864) +.yigao.com +# ||vdoing.com^$third-party (easyprivacy.txt: 4863) +.vdoing.com +# ||vamaker.com^$third-party (easyprivacy.txt: 4862) +.vamaker.com +# ||users.51.la^$third-party (easyprivacy.txt: 4861) +.users.51.la +# ||tovery.net^$third-party (easyprivacy.txt: 4860) +.tovery.net +# ||topsem.com^$third-party (easyprivacy.txt: 4859) +.topsem.com +# ||top-bloggers.com^$third-party (easyprivacy.txt: 4858) +.top-bloggers.com +# ||sitebot.cn^$third-party (easyprivacy.txt: 4857) +.sitebot.cn +# ||sagetrc.com^$third-party (easyprivacy.txt: 4856) +.sagetrc.com +# ||pixanalytics.com^$third-party (easyprivacy.txt: 4855) +.pixanalytics.com +# ||phpstat.com^$third-party (easyprivacy.txt: 4854) +.phpstat.com +# ||oadz.com^$third-party (easyprivacy.txt: 4853) +.oadz.com +# ||mmstat.com^$third-party (easyprivacy.txt: 4852) +.mmstat.com +# ||mediav.com^$third-party (easyprivacy.txt: 4851) +.mediav.com +# ||jiankongbao.com^$third-party (easyprivacy.txt: 4850) +.jiankongbao.com +# ||irs09.com^$third-party (easyprivacy.txt: 4849) +.irs09.com +# ||irs01.$third-party (easyprivacy.txt: 4848) +.irs01.*. +# ||hotrank.com.tw^$third-party (easyprivacy.txt: 4847) +.hotrank.com.tw +# ||gtags.net^$third-party (easyprivacy.txt: 4846) +.gtags.net +# ||gridsum.com^$third-party (easyprivacy.txt: 4845) +.gridsum.com +# ||gostats.cn^$third-party (easyprivacy.txt: 4844) +.gostats.cn +# ||eyeota.net^$third-party (easyprivacy.txt: 4843) +.eyeota.net +# ||emarbox.com^$third-party (easyprivacy.txt: 4842) +.emarbox.com +# ||datamaster.com.cn^$third-party (easyprivacy.txt: 4841) +.datamaster.com.cn +# ||cnzz.net^$third-party (easyprivacy.txt: 4840) +.cnzz.net +# ||clicki.cn^$third-party (easyprivacy.txt: 4839) +.clicki.cn +# ||blogtw.net^$third-party (easyprivacy.txt: 4838) +.blogtw.net +# ||blog104.com^$third-party (easyprivacy.txt: 4837) +.blog104.com +# ||baifendian.com^$third-party (easyprivacy.txt: 4836) +.baifendian.com +# ||admaster.com.cn^$third-party (easyprivacy.txt: 4835) +.admaster.com.cn +# ||acs86.com^$third-party (easyprivacy.txt: 4834) +.acs86.com +# ||99click.com^$third-party (easyprivacy.txt: 4833) +.99click.com +# ||51yes.com^$third-party (easyprivacy.txt: 4832) +.51yes.com +# ||50bang.org^$third-party (easyprivacy.txt: 4831) +.50bang.org +# ||tyxo.bg^$third-party (easyprivacy.txt: 4828) +.tyxo.bg +# ||trafit.com^$third-party (easyprivacy.txt: 4827) +.trafit.com +# ||circle.am^$third-party (easyprivacy.txt: 4825) +.circle.am +# ||x-traceur.com^$third-party (easyprivacy.txt: 4823) +.x-traceur.com +# ||wysistat.com^$third-party (easyprivacy.txt: 4822) +.wysistat.com +# ||webcompteur.com^$third-party (easyprivacy.txt: 4821) +.webcompteur.com +# ||trafiz.net^$third-party (easyprivacy.txt: 4820) +.trafiz.net +# ||track.effiliation.com^$third-party (easyprivacy.txt: 4819) +.track.effiliation.com +# ||toc.io^$third-party (easyprivacy.txt: 4818) +.toc.io +# ||tnsinternet.be^$third-party (easyprivacy.txt: 4817) +.tnsinternet.be +# ||titag.com^$third-party (easyprivacy.txt: 4816) +.titag.com +# ||stats.fr^$third-party (easyprivacy.txt: 4815) +.stats.fr +# ||semiocast.com^$third-party (easyprivacy.txt: 4814) +.semiocast.com +# ||reseau-pub.com^$third-party (easyprivacy.txt: 4813) +.reseau-pub.com +# ||ownpage.fr^$third-party (easyprivacy.txt: 4812) +.ownpage.fr +# ||netquattro.com/stats/ (easyprivacy.txt: 4811) +.netquattro.com/stats/ +# ||ncdnprorogeraie.lol^$third-party (easyprivacy.txt: 4810) +.ncdnprorogeraie.lol +# ||mmtro.com^$third-party (easyprivacy.txt: 4809) +.mmtro.com +# ||megast.at^$third-party (easyprivacy.txt: 4808) +.megast.at +# ||mastertag.effiliation.com^$third-party (easyprivacy.txt: 4807) +.mastertag.effiliation.com +# ||livestats.fr^$third-party (easyprivacy.txt: 4806) +.livestats.fr +# ||libstat.com^$third-party (easyprivacy.txt: 4805) +.libstat.com +# ||leadium.com^$third-party (easyprivacy.txt: 4804) +.leadium.com +# ||kameleoon.com^$third-party (easyprivacy.txt: 4803) +.kameleoon.com +# ||graphinsider.com^$third-party (easyprivacy.txt: 4802) +.graphinsider.com +# ||goyavelab.com^$third-party (easyprivacy.txt: 4801) +.goyavelab.com +# ||geocompteur.com^$third-party (easyprivacy.txt: 4800) +.geocompteur.com +# ||ferank.fr^$third-party (easyprivacy.txt: 4799) +.ferank.fr +# ||ezakus.net^$third-party (easyprivacy.txt: 4798) +.ezakus.net +# ||estat.com^$third-party (easyprivacy.txt: 4797) +.estat.com +# ||emailretargeting.com^$third-party (easyprivacy.txt: 4796) +.emailretargeting.com +# ||edt02.net^$third-party (easyprivacy.txt: 4795) +.edt02.net +# ||deliv.lexpress.fr^$third-party (easyprivacy.txt: 4794) +.deliv.lexpress.fr +# ||countus.fr^$third-party (easyprivacy.txt: 4793) +.countus.fr +# ||count.fr^$third-party (easyprivacy.txt: 4792) +.count.fr +# ||compteur.com^$third-party (easyprivacy.txt: 4791) +.compteur.com +# ||compteur-gratuit.org^$third-party (easyprivacy.txt: 4790) +.compteur-gratuit.org +# ||casualstat.com^$third-party (easyprivacy.txt: 4789) +.casualstat.com +# ||canalstat.com^$third-party (easyprivacy.txt: 4788) +.canalstat.com +# ||atraxio.com^$third-party (easyprivacy.txt: 4787) +.atraxio.com +# ||antvoice.com^$third-party (easyprivacy.txt: 4786) +.antvoice.com +# ||alkemics.com^$third-party (easyprivacy.txt: 4785) +.alkemics.com +# ||affilizr.com^$third-party (easyprivacy.txt: 4784) +.affilizr.com +# ||abcompteur.com^$third-party (easyprivacy.txt: 4783) +.abcompteur.com +# ||123compteur.com^$third-party (easyprivacy.txt: 4782) +.123compteur.com +# ||zaehler.tv^$third-party (easyprivacy.txt: 4780) +.zaehler.tv +# ||yoochoose.net^$third-party (easyprivacy.txt: 4779) +.yoochoose.net +# ||xplosion.de^$third-party (easyprivacy.txt: 4778) +.xplosion.de +# ||xl-counti.com^$third-party (easyprivacy.txt: 4777) +.xl-counti.com +# ||xhit.com^$third-party (easyprivacy.txt: 4776) +.xhit.com +# ||xcounter.ch^$third-party (easyprivacy.txt: 4775) +.xcounter.ch +# ||xa-counter.com^$third-party (easyprivacy.txt: 4774) +.xa-counter.com +# ||wipe.de^$~script,third-party (easyprivacy.txt: 4773) +.wipe.de +# ||wemfbox.ch^$third-party (easyprivacy.txt: 4772) +.wemfbox.ch +# ||welt-der-links.de^$third-party (easyprivacy.txt: 4771) +.welt-der-links.de +# ||wecount4u.com^$third-party (easyprivacy.txt: 4770) +.wecount4u.com +# ||webttracking.de^$third-party (easyprivacy.txt: 4769) +.webttracking.de +# ||webtrekk.net^$third-party (easyprivacy.txt: 4768) +.webtrekk.net +# ||webtrekk.de^$third-party (easyprivacy.txt: 4767) +.webtrekk.de +# ||webtrekk-us.net^$third-party (easyprivacy.txt: 4766) +.webtrekk-us.net +# ||websitesampling.com^$third-party (easyprivacy.txt: 4765) +.websitesampling.com +# ||webprospector.de^$third-party (easyprivacy.txt: 4764) +.webprospector.de +# ||weblist.de^$third-party (easyprivacy.txt: 4763) +.weblist.de +# ||webkatalog.li^$third-party (easyprivacy.txt: 4762) +.webkatalog.li +# ||webhits.de^$third-party (easyprivacy.txt: 4761) +.webhits.de +# ||web-controlling.org^$third-party (easyprivacy.txt: 4760) +.web-controlling.org +# ||visitor-stats.de^$third-party (easyprivacy.txt: 4759) +.visitor-stats.de +# ||vinsight.de^$third-party (easyprivacy.txt: 4758) +.vinsight.de +# ||viewar.org^$third-party (easyprivacy.txt: 4757) +.viewar.org +# ||videos.oms.eu^$third-party (easyprivacy.txt: 4756) +.videos.oms.eu +# ||video.oms.eu^$third-party (easyprivacy.txt: 4755) +.video.oms.eu +# ||verypopularwebsite.com^$third-party (easyprivacy.txt: 4754) +.verypopularwebsite.com +# ||urstats.de^$third-party (easyprivacy.txt: 4753) +.urstats.de +# ||up-rank.com^$third-party (easyprivacy.txt: 4752) +.up-rank.com +# ||universaltrackingcontainer.com^$third-party (easyprivacy.txt: 4751) +.universaltrackingcontainer.com +# ||trkme.net^$third-party (easyprivacy.txt: 4750) +.trkme.net +# ||trendcounter.de^$third-party (easyprivacy.txt: 4749) +.trendcounter.de +# ||trbo.com^$third-party (easyprivacy.txt: 4748) +.trbo.com +# ||trafficmaxx.de^$third-party (easyprivacy.txt: 4747) +.trafficmaxx.de +# ||trackfreundlich.de^$third-party (easyprivacy.txt: 4746) +.trackfreundlich.de +# ||topstat.com^$third-party (easyprivacy.txt: 4745) +.topstat.com +# ||toplist100.org^$third-party (easyprivacy.txt: 4744) +.toplist100.org +# ||tophits4u.de^$third-party (easyprivacy.txt: 4743) +.tophits4u.de +# ||tisoomi-services.com^$third-party (easyprivacy.txt: 4742) +.tisoomi-services.com +# ||teriotracker.de^$third-party (easyprivacy.txt: 4741) +.teriotracker.de +# ||tausch-link.de^$third-party (easyprivacy.txt: 4740) +.tausch-link.de +# ||tamedia.ch^$third-party (easyprivacy.txt: 4739) +.tamedia.ch +# ||t4ft.de^$third-party (easyprivacy.txt: 4738) +.t4ft.de +# ||sunios.de^$third-party (easyprivacy.txt: 4737) +.sunios.de +# ||suchmaschinen-ranking-hits.de^$third-party (easyprivacy.txt: 4736) +.suchmaschinen-ranking-hits.de +# ||stroeerdigitalmedia.de^$third-party (easyprivacy.txt: 4735) +.stroeerdigitalmedia.de +# ||stats4free.de^$third-party (easyprivacy.txt: 4734) +.stats4free.de +# ||stats.de^$third-party (easyprivacy.txt: 4733) +.stats.de +# ||statistiq.com^$third-party (easyprivacy.txt: 4732) +.statistiq.com +# ||statistik-gallup.net^$third-party (easyprivacy.txt: 4731) +.statistik-gallup.net +# ||static-fra.de^*/tracking.js (easyprivacy.txt: 4730) +.static-fra.de/.*/tracking\.js +# ||static-fra.de^*/targeting.js (easyprivacy.txt: 4729) +.static-fra.de/.*/targeting\.js +# ||ssl4stats.de^$third-party (easyprivacy.txt: 4728) +.ssl4stats.de +# ||spring-tns.net^$third-party (easyprivacy.txt: 4727) +.spring-tns.net +# ||sponsorcounter.de^$third-party (easyprivacy.txt: 4726) +.sponsorcounter.de +# ||spider-mich.com^$third-party (easyprivacy.txt: 4725) +.spider-mich.com +# ||spelar.org^$third-party (easyprivacy.txt: 4724) +.spelar.org +# ||speedtracker.de^$third-party (easyprivacy.txt: 4723) +.speedtracker.de +# ||speedcounter.net^$third-party (easyprivacy.txt: 4722) +.speedcounter.net +# ||speedcount.de^$third-party (easyprivacy.txt: 4721) +.speedcount.de +# ||spacehits.net^$third-party (easyprivacy.txt: 4720) +.spacehits.net +# ||space-link.de^$third-party (easyprivacy.txt: 4719) +.space-link.de +# ||slogantrend.de^$third-party (easyprivacy.txt: 4718) +.slogantrend.de +# ||sitebro.de^$third-party (easyprivacy.txt: 4717) +.sitebro.de +# ||sensic.net^$third-party (easyprivacy.txt: 4716) +.sensic.net +# ||semtracker.de^$third-party (easyprivacy.txt: 4715) +.semtracker.de +# ||seitwert.de^$third-party (easyprivacy.txt: 4714) +.seitwert.de +# ||sedotracker.de^$third-party (easyprivacy.txt: 4713) +.sedotracker.de +# ||scriptil.com^$third-party (easyprivacy.txt: 4712) +.scriptil.com +# ||royalcount.de^$third-party (easyprivacy.txt: 4711) +.royalcount.de +# ||roitracking.net^$third-party (easyprivacy.txt: 4710) +.roitracking.net +# ||rightstats.com^$third-party (easyprivacy.txt: 4709) +.rightstats.com +# ||research.de.com^$third-party (easyprivacy.txt: 4708) +.research.de.com +# ||refinedads.com^$third-party (easyprivacy.txt: 4707) +.refinedads.com +# ||ranklink.de^$third-party (easyprivacy.txt: 4706) +.ranklink.de +# ||rankings24.de^$third-party (easyprivacy.txt: 4705) +.rankings24.de +# ||ranking-links.de^$third-party (easyprivacy.txt: 4704) +.ranking-links.de +# ||ranking-it.de^$third-party (easyprivacy.txt: 4703) +.ranking-it.de +# ||ranking-hits.de^$third-party (easyprivacy.txt: 4702) +.ranking-hits.de +# ||ranking-counter.de^$third-party (easyprivacy.txt: 4701) +.ranking-counter.de +# ||ranking-charts.de^$third-party (easyprivacy.txt: 4700) +.ranking-charts.de +# ||rankchamp.de^$third-party (easyprivacy.txt: 4699) +.rankchamp.de +# ||rank4all.eu^$third-party (easyprivacy.txt: 4698) +.rank4all.eu +# ||rank-power.com^$third-party (easyprivacy.txt: 4697) +.rank-power.com +# ||r.movad.de^$third-party (easyprivacy.txt: 4696) +.r.movad.de +# ||propagerank.de^$third-party (easyprivacy.txt: 4695) +.propagerank.de +# ||productsup.com^$third-party (easyprivacy.txt: 4694) +.productsup.com +# ||prnetwork.de^$third-party (easyprivacy.txt: 4693) +.prnetwork.de +# ||pr-update.biz^$third-party (easyprivacy.txt: 4692) +.pr-update.biz +# ||pr-textlink.de^$third-party (easyprivacy.txt: 4691) +.pr-textlink.de +# ||pr-sunshine.de^$third-party (easyprivacy.txt: 4690) +.pr-sunshine.de +# ||pr-rang.de^$third-party (easyprivacy.txt: 4689) +.pr-rang.de +# ||pr-linktausch.de^$third-party (easyprivacy.txt: 4688) +.pr-linktausch.de +# ||pr-link.eu^$third-party (easyprivacy.txt: 4687) +.pr-link.eu +# ||pr-chart.de^$third-party (easyprivacy.txt: 4686) +.pr-chart.de +# ||pr-chart.com^$third-party (easyprivacy.txt: 4685) +.pr-chart.com +# ||ppro.de^$third-party (easyprivacy.txt: 4684) +.ppro.de +# ||powercount.com^$third-party (easyprivacy.txt: 4683) +.powercount.com +# ||powerbar-pagerank.de^$third-party (easyprivacy.txt: 4682) +.powerbar-pagerank.de +# ||plexworks.de^$third-party (easyprivacy.txt: 4681) +.plexworks.de +# ||pimpmypr.de^$third-party (easyprivacy.txt: 4680) +.pimpmypr.de +# ||pc-agency24.de^$third-party (easyprivacy.txt: 4679) +.pc-agency24.de +# ||pageranking.li^$third-party (easyprivacy.txt: 4678) +.pageranking.li +# ||pageranking-counter.de^$third-party (easyprivacy.txt: 4677) +.pageranking-counter.de +# ||pagerank4you.eu^$third-party (easyprivacy.txt: 4676) +.pagerank4you.eu +# ||pagerank-suchmaschine.de^$third-party (easyprivacy.txt: 4675) +.pagerank-suchmaschine.de +# ||pagerank-online.eu^$third-party (easyprivacy.txt: 4674) +.pagerank-online.eu +# ||pagerank-linkverzeichnis.de^$third-party (easyprivacy.txt: 4673) +.pagerank-linkverzeichnis.de +# ||pagerank-hamburg.de^$third-party (easyprivacy.txt: 4672) +.pagerank-hamburg.de +# ||pagerank-backlink.eu^$third-party (easyprivacy.txt: 4671) +.pagerank-backlink.eu +# ||page-hit.de^$third-party (easyprivacy.txt: 4670) +.page-hit.de +# ||ourstats.de^$third-party (easyprivacy.txt: 4669) +.ourstats.de +# ||osxau.de^$third-party (easyprivacy.txt: 4668) +.osxau.de +# ||org-dot-com.com^$third-party (easyprivacy.txt: 4667) +.org-dot-com.com +# ||optimierung-der-website.de^$third-party (easyprivacy.txt: 4666) +.optimierung-der-website.de +# ||oewabox.at^$third-party (easyprivacy.txt: 4665) +.oewabox.at +# ||observare.de^$third-party (easyprivacy.txt: 4664) +.observare.de +# ||northclick-statistiken.de^$third-party (easyprivacy.txt: 4663) +.northclick-statistiken.de +# ||netzstat.ch^$third-party (easyprivacy.txt: 4662) +.netzstat.ch +# ||netzaehler.de^$third-party (easyprivacy.txt: 4661) +.netzaehler.de +# ||netupdater.info^$third-party (easyprivacy.txt: 4660) +.netupdater.info +# ||netdebit-counter.de^$third-party (easyprivacy.txt: 4659) +.netdebit-counter.de +# ||netcounter.de^$third-party (easyprivacy.txt: 4658) +.netcounter.de +# ||mysumo.de^$third-party (easyprivacy.txt: 4657) +.mysumo.de +# ||my-stats.info^$third-party (easyprivacy.txt: 4656) +.my-stats.info +# ||my-ranking.de^$third-party (easyprivacy.txt: 4655) +.my-ranking.de +# ||mr-rank.de^$third-party (easyprivacy.txt: 4654) +.mr-rank.de +# ||mpwe.net^$third-party (easyprivacy.txt: 4653) +.mpwe.net +# ||motorpresse-statistik.de^$third-party (easyprivacy.txt: 4652) +.motorpresse-statistik.de +# ||mitmeisseln.de^$third-party (easyprivacy.txt: 4651) +.mitmeisseln.de +# ||microcounter.de^$third-party (easyprivacy.txt: 4650) +.microcounter.de +# ||metalyzer.com^$third-party (easyprivacy.txt: 4648) +.metalyzer.com +# ||mengis-linden.org^$third-party (easyprivacy.txt: 4647) +.mengis-linden.org +# ||meetrics.net^$third-party (easyprivacy.txt: 4646) +.meetrics.net +# ||marketing-page.de^$third-party (easyprivacy.txt: 4645) +.marketing-page.de +# ||m-pathy.com^$third-party (easyprivacy.txt: 4644) +.m-pathy.com +# ||losecounter.de^$third-party (easyprivacy.txt: 4643) +.losecounter.de +# ||liverank.org^$third-party (easyprivacy.txt: 4642) +.liverank.org +# ||linktausch.li^$third-party (easyprivacy.txt: 4641) +.linktausch.li +# ||linktausch-pagerank.de^$third-party (easyprivacy.txt: 4640) +.linktausch-pagerank.de +# ||link-empfehlen24.de^$third-party (easyprivacy.txt: 4639) +.link-empfehlen24.de +# ||leserservice-tracking.de^$third-party (easyprivacy.txt: 4638) +.leserservice-tracking.de +# ||lddt.de^$third-party (easyprivacy.txt: 4637) +.lddt.de +# ||kupona.de^$third-party (easyprivacy.txt: 4636) +.kupona.de +# ||kostenlose-counter.com^$third-party (easyprivacy.txt: 4635) +.kostenlose-counter.com +# ||kono-research.de^$third-party (easyprivacy.txt: 4634) +.kono-research.de +# ||klamm-counter.de^$third-party (easyprivacy.txt: 4633) +.klamm-counter.de +# ||keytrack.de^$third-party (easyprivacy.txt: 4632) +.keytrack.de +# ||iyi.net^$third-party (easyprivacy.txt: 4631) +.iyi.net +# ||ivwbox.de^$third-party (easyprivacy.txt: 4630) +.ivwbox.de +# ||iptrack.biz^$third-party (easyprivacy.txt: 4629) +.iptrack.biz +# ||ipcounter.net^$third-party (easyprivacy.txt: 4628) +.ipcounter.net +# ||ipcount.net^$third-party (easyprivacy.txt: 4627) +.ipcount.net +# ||interhits.de^$third-party (easyprivacy.txt: 4626) +.interhits.de +# ||interaktiv-net.de^$third-party (easyprivacy.txt: 4625) +.interaktiv-net.de +# ||intelliad.de^$third-party (easyprivacy.txt: 4624) +.intelliad.de +# ||intelliad-tracking.com^$third-party (easyprivacy.txt: 4623) +.intelliad-tracking.com +# ||ingenioustech.biz^$third-party (easyprivacy.txt: 4622) +.ingenioustech.biz +# ||inet-tracker.de^$third-party (easyprivacy.txt: 4621) +.inet-tracker.de +# ||imcht.net^$third-party (easyprivacy.txt: 4620) +.imcht.net +# ||iivt.com^$third-party (easyprivacy.txt: 4619) +.iivt.com +# ||hung.ch^$third-party (easyprivacy.txt: 4618) +.hung.ch +# ||hotcounter.de^$third-party (easyprivacy.txt: 4617) +.hotcounter.de +# ||hot-count.com^$third-party (easyprivacy.txt: 4616) +.hot-count.com +# ||hitmaster.de^$third-party (easyprivacy.txt: 4615) +.hitmaster.de +# ||hiddencounter.de^$third-party (easyprivacy.txt: 4614) +.hiddencounter.de +# ||grfz.de^$third-party (easyprivacy.txt: 4613) +.grfz.de +# ||greatviews.de^$third-party (easyprivacy.txt: 4612) +.greatviews.de +# ||gratisbacklink.de^$third-party (easyprivacy.txt: 4611) +.gratisbacklink.de +# ||gratis-counter-gratis.de^$third-party (easyprivacy.txt: 4610) +.gratis-counter-gratis.de +# ||gratis-besucherzaehler.de^$third-party (easyprivacy.txt: 4609) +.gratis-besucherzaehler.de +# ||gostats.de^$third-party (easyprivacy.txt: 4608) +.gostats.de +# ||google-rank.org^$third-party (easyprivacy.txt: 4607) +.google-rank.org +# ||google-pr7.de^$third-party (easyprivacy.txt: 4606) +.google-pr7.de +# ||gezaehlt.de^$third-party (easyprivacy.txt: 4605) +.gezaehlt.de +# ||getcounter.de^$third-party (easyprivacy.txt: 4604) +.getcounter.de +# ||generaltracking.de^$third-party (easyprivacy.txt: 4603) +.generaltracking.de +# ||gacela.eu^$third-party (easyprivacy.txt: 4602) +.gacela.eu +# ||fun-hits.com^$third-party (easyprivacy.txt: 4601) +.fun-hits.com +# ||fremaks.net^$third-party (easyprivacy.txt: 4600) +.fremaks.net +# ||freihit.de^$third-party (easyprivacy.txt: 4599) +.freihit.de +# ||freetracker.biz^$third-party (easyprivacy.txt: 4598) +.freetracker.biz +# ||free-counters.net^$third-party (easyprivacy.txt: 4597) +.free-counters.net +# ||fixcounter.com^$third-party (easyprivacy.txt: 4596) +.fixcounter.com +# ||fastcounter.de^$third-party (easyprivacy.txt: 4595) +.fastcounter.de +# ||faibl.org^$third-party (easyprivacy.txt: 4594) +.faibl.org +# ||exmarkt.de^$third-party (easyprivacy.txt: 4593) +.exmarkt.de +# ||exapxl.de^$third-party (easyprivacy.txt: 4592) +.exapxl.de +# ||exactag.com^$third-party (easyprivacy.txt: 4591) +.exactag.com +# ||eurocounter.com^$third-party (easyprivacy.txt: 4590) +.eurocounter.com +# ||euro-pr.eu^$third-party (easyprivacy.txt: 4589) +.euro-pr.eu +# ||etracking24.de^$third-party (easyprivacy.txt: 4588) +.etracking24.de +# ||etracker.de^$third-party (easyprivacy.txt: 4587) +.etracker.de +# ||erotikcounter.org^$third-party (easyprivacy.txt: 4586) +.erotikcounter.org +# ||emetriq.de^$third-party (easyprivacy.txt: 4585) +.emetriq.de +# ||edtp.de^$third-party (easyprivacy.txt: 4584) +.edtp.de +# ||edococounter.de^$third-party (easyprivacy.txt: 4583) +.edococounter.de +# ||econda-monitor.de^$third-party (easyprivacy.txt: 4582) +.econda-monitor.de +# ||easytracking.de^$third-party (easyprivacy.txt: 4581) +.easytracking.de +# ||eanalyzer.de^$third-party (easyprivacy.txt: 4580) +.eanalyzer.de +# ||durocount.com^$third-party (easyprivacy.txt: 4579) +.durocount.com +# ||dreamcounter.de^$third-party (easyprivacy.txt: 4578) +.dreamcounter.de +# ||dk-statistik.de^$third-party (easyprivacy.txt: 4577) +.dk-statistik.de +# ||divolution.com^$third-party (easyprivacy.txt: 4576) +.divolution.com +# ||directcounter.de^$third-party (easyprivacy.txt: 4575) +.directcounter.de +# ||digidip.net^$third-party (easyprivacy.txt: 4574) +.digidip.net +# ||die-rankliste.com^$third-party (easyprivacy.txt: 4573) +.die-rankliste.com +# ||cya1t.net^$third-party (easyprivacy.txt: 4572) +.cya1t.net +# ||cptrack.de^$third-party (easyprivacy.txt: 4571) +.cptrack.de +# ||countyou.de^$third-party (easyprivacy.txt: 4570) +.countyou.de +# ||countok.de^$third-party (easyprivacy.txt: 4569) +.countok.de +# ||counto.de^$third-party (easyprivacy.txt: 4568) +.counto.de +# ||countnow.de^$third-party (easyprivacy.txt: 4567) +.countnow.de +# ||countit.ch^$third-party (easyprivacy.txt: 4566) +.countit.ch +# ||countino.de^$third-party (easyprivacy.txt: 4565) +.countino.de +# ||countimo.de^$third-party (easyprivacy.txt: 4564) +.countimo.de +# ||counti.de^$third-party (easyprivacy.txt: 4563) +.counti.de +# ||counthis.com^$third-party (easyprivacy.txt: 4562) +.counthis.com +# ||counterstatistik.de^$third-party (easyprivacy.txt: 4561) +.counterstatistik.de +# ||counterstation.de^$third-party (easyprivacy.txt: 4560) +.counterstation.de +# ||counterserver.de^$third-party (easyprivacy.txt: 4559) +.counterserver.de +# ||counterseite.de^$third-party (easyprivacy.txt: 4558) +.counterseite.de +# ||counteronline.de^$third-party (easyprivacy.txt: 4557) +.counteronline.de +# ||counterlevel.de^$third-party (easyprivacy.txt: 4556) +.counterlevel.de +# ||countercity.net^$third-party (easyprivacy.txt: 4555) +.countercity.net +# ||countercity.de^$third-party (easyprivacy.txt: 4554) +.countercity.de +# ||counter4all.de^$third-party (easyprivacy.txt: 4553) +.counter4all.de +# ||counter27.ch^$third-party (easyprivacy.txt: 4552) +.counter27.ch +# ||counter.de^$third-party (easyprivacy.txt: 4551) +.counter.de +# ||counter-treff.de^$third-party (easyprivacy.txt: 4550) +.counter-treff.de +# ||counter-pagerank.de^$third-party (easyprivacy.txt: 4549) +.counter-pagerank.de +# ||counter-kostenlos.net^$third-party (easyprivacy.txt: 4548) +.counter-kostenlos.net +# ||counter-kostenlos.info^$third-party (easyprivacy.txt: 4547) +.counter-kostenlos.info +# ||counter-gratis.com^$third-party (easyprivacy.txt: 4546) +.counter-gratis.com +# ||counter-go.de^$third-party (easyprivacy.txt: 4545) +.counter-go.de +# ||counter-city.de^$third-party (easyprivacy.txt: 4544) +.counter-city.de +# ||counted.at^$third-party (easyprivacy.txt: 4543) +.counted.at +# ||countar.de^$third-party (easyprivacy.txt: 4542) +.countar.de +# ||count24.de^$third-party (easyprivacy.txt: 4541) +.count24.de +# ||count.im^$third-party (easyprivacy.txt: 4540) +.count.im +# ||clickmap.ch^$third-party (easyprivacy.txt: 4539) +.clickmap.ch +# ||checkeffect.at^$third-party (easyprivacy.txt: 4538) +.checkeffect.at +# ||bonuscounter.de^$third-party (easyprivacy.txt: 4537) +.bonuscounter.de +# ||bonitrust.de^$third-party (easyprivacy.txt: 4536) +.bonitrust.de +# ||bluecounter.de^$third-party (easyprivacy.txt: 4535) +.bluecounter.de +# ||blogverzeichnis.eu^$third-party (easyprivacy.txt: 4534) +.blogverzeichnis.eu +# ||blogtraffic.de^$third-party (easyprivacy.txt: 4533) +.blogtraffic.de +# ||bloggerei.de^$third-party (easyprivacy.txt: 4532) +.bloggerei.de +# ||bloggeramt.de^$third-party (easyprivacy.txt: 4531) +.bloggeramt.de +# ||blogcounter.de^$third-party (easyprivacy.txt: 4530) +.blogcounter.de +# ||blogcounter.com^$third-party (easyprivacy.txt: 4529) +.blogcounter.com +# ||blog-webkatalog.de^$third-party (easyprivacy.txt: 4528) +.blog-webkatalog.de +# ||blog-o-rama.de^$third-party (easyprivacy.txt: 4527) +.blog-o-rama.de +# ||betarget.de^$third-party (easyprivacy.txt: 4526) +.betarget.de +# ||besucherzahlen.com^$third-party (easyprivacy.txt: 4525) +.besucherzahlen.com +# ||besucherzaehler.org^$third-party (easyprivacy.txt: 4524) +.besucherzaehler.org +# ||besucherzaehler-zugriffszaehler.de^$third-party (easyprivacy.txt: 4523) +.besucherzaehler-zugriffszaehler.de +# ||besucherzaehler-homepage.de^$third-party (easyprivacy.txt: 4522) +.besucherzaehler-homepage.de +# ||besucherzaehler-counter.de^$third-party (easyprivacy.txt: 4521) +.besucherzaehler-counter.de +# ||besucherstats.de^$third-party (easyprivacy.txt: 4520) +.besucherstats.de +# ||beliebtestewebseite.de^$third-party (easyprivacy.txt: 4519) +.beliebtestewebseite.de +# ||belboon.de^$third-party (easyprivacy.txt: 4518) +.belboon.de +# ||bekannt-im-web.de^$third-party (easyprivacy.txt: 4517) +.bekannt-im-web.de +# ||backlinktausch.biz^$third-party (easyprivacy.txt: 4516) +.backlinktausch.biz +# ||backlinks.li^$third-party (easyprivacy.txt: 4515) +.backlinks.li +# ||backlinkprofi.info^$third-party (easyprivacy.txt: 4514) +.backlinkprofi.info +# ||backlinkdino.de^$third-party (easyprivacy.txt: 4513) +.backlinkdino.de +# ||backlink-umsonst.de^$third-party (easyprivacy.txt: 4512) +.backlink-umsonst.de +# ||backlink-test.de^$third-party (easyprivacy.txt: 4511) +.backlink-test.de +# ||avencio.de^$third-party (easyprivacy.txt: 4510) +.avencio.de +# ||audiencemanager.de^$third-party (easyprivacy.txt: 4509) +.audiencemanager.de +# ||atsfi.de^$third-party (easyprivacy.txt: 4508) +.atsfi.de +# ||anormal-tracker.de^$third-party (easyprivacy.txt: 4507) +.anormal-tracker.de +# ||andyhoppe.com^$third-party (easyprivacy.txt: 4506) +.andyhoppe.com +# ||analytics.rechtslupe.org^ (easyprivacy.txt: 4505) +.analytics.rechtslupe.org +# ||adzoe.de^$third-party (easyprivacy.txt: 4504) +.adzoe.de +# ||adtraxx.de^$third-party (easyprivacy.txt: 4503) +.adtraxx.de +# ||adrank24.de^$third-party (easyprivacy.txt: 4502) +.adrank24.de +# ||addcontrol.net^$third-party (easyprivacy.txt: 4501) +.addcontrol.net +# ||adclear.net^$third-party (easyprivacy.txt: 4500) +.adclear.net +# ||adc-serv.net^$third-party (easyprivacy.txt: 4499) +.adc-serv.net +# ||active-tracking.de^$third-party (easyprivacy.txt: 4498) +.active-tracking.de +# ||actionallocator.com^$third-party (easyprivacy.txt: 4497) +.actionallocator.com +# ||abcounter.de^$third-party (easyprivacy.txt: 4496) +.abcounter.de +# ||4stats.de^$third-party (easyprivacy.txt: 4495) +.4stats.de +# ||24log.de^$third-party (easyprivacy.txt: 4494) +.24log.de +# ||12mnkys.com^$third-party (easyprivacy.txt: 4491) +.12mnkys.com +# ||123-counter.de^$third-party (easyprivacy.txt: 4490) +.123-counter.de +# ||zroitracker.com^$third-party (easyprivacy.txt: 4486) +.zroitracker.com +# ||zqtk.net^$third-party (easyprivacy.txt: 4485) +.zqtk.net +# ||zowary.com^$third-party (easyprivacy.txt: 4484) +.zowary.com +# ||zoosnet.net^$third-party (easyprivacy.txt: 4483) +.zoosnet.net +# ||zoomino.com^$third-party (easyprivacy.txt: 4482) +.zoomino.com +# ||zoomflow.com^$third-party (easyprivacy.txt: 4481) +.zoomflow.com +# ||zoomanalytics.co^$third-party (easyprivacy.txt: 4480) +.zoomanalytics.co +# ||zesep.com^$third-party (easyprivacy.txt: 4479) +.zesep.com +# ||zenlivestats.com^$third-party (easyprivacy.txt: 4478) +.zenlivestats.com +# ||zdtag.com^$third-party (easyprivacy.txt: 4477) +.zdtag.com +# ||zdbb.net^$third-party (easyprivacy.txt: 4476) +.zdbb.net +# ||zanox.com^$third-party (easyprivacy.txt: 4475) +.zanox.com +# ||zanox-affiliate.de^$third-party (easyprivacy.txt: 4474) +.zanox-affiliate.de +# ||youramigo.com^$third-party (easyprivacy.txt: 4473) +.youramigo.com +# ||your-counter.be^$third-party (easyprivacy.txt: 4472) +.your-counter.be +# ||youmetrix.co.uk^$third-party (easyprivacy.txt: 4471) +.youmetrix.co.uk +# ||yjtag.jp^$third-party (easyprivacy.txt: 4470) +.yjtag.jp +# ||yieldsoftware.com^$third-party (easyprivacy.txt: 4469) +.yieldsoftware.com +# ||yieldify.com^$third-party (easyprivacy.txt: 4468) +.yieldify.com +# ||yieldbot.com^$third-party (easyprivacy.txt: 4467) +.yieldbot.com +# ||yellowbrix.com^$third-party (easyprivacy.txt: 4466) +.yellowbrix.com +# ||ycctrk.co.uk^$third-party (easyprivacy.txt: 4465) +.ycctrk.co.uk +# ||ybotvisit.com^$third-party (easyprivacy.txt: 4464) +.ybotvisit.com +# ||yaudience.com^$third-party (easyprivacy.txt: 4463) +.yaudience.com +# ||yamanoha.com^$third-party (easyprivacy.txt: 4462) +.yamanoha.com +# ||y-track.com^$third-party (easyprivacy.txt: 4461) +.y-track.com +# ||xyztraffic.com^$third-party (easyprivacy.txt: 4460) +.xyztraffic.com +# ||xxxcounter.com^$third-party (easyprivacy.txt: 4459) +.xxxcounter.com +# ||xtremline.com^$third-party (easyprivacy.txt: 4458) +.xtremline.com +# ||xref.io^$third-party (easyprivacy.txt: 4457) +.xref.io +# ||xiti.com^$third-party (easyprivacy.txt: 4456) +.xiti.com +# ||xg4ken.com^$third-party (easyprivacy.txt: 4455) +.xg4ken.com +# ||xclk-integracion.com^$third-party (easyprivacy.txt: 4454) +.xclk-integracion.com +# ||x-stat.de^$third-party (easyprivacy.txt: 4453) +.x-stat.de +# ||wzrkt.com^$third-party (easyprivacy.txt: 4452) +.wzrkt.com +# ||wzrk.co^$third-party (easyprivacy.txt: 4451) +.wzrk.co +# ||wywyuserservice.com^$third-party (easyprivacy.txt: 4450) +.wywyuserservice.com +# ||wywy.com^$third-party (easyprivacy.txt: 4449) +.wywy.com +# ||wwwstats.info^$third-party (easyprivacy.txt: 4448) +.wwwstats.info +# ||www-path.com^$third-party (easyprivacy.txt: 4447) +.www-path.com +# ||wunderloop.net^$third-party (easyprivacy.txt: 4446) +.wunderloop.net +# ||wundercounter.com^$third-party (easyprivacy.txt: 4445) +.wundercounter.com +# ||wtstats.com^$third-party (easyprivacy.txt: 4444) +.wtstats.com +# ||wtp101.com^$third-party (easyprivacy.txt: 4443) +.wtp101.com +# ||wt-safetag.com^$third-party (easyprivacy.txt: 4442) +.wt-safetag.com +# ||wt-eu02.net^$third-party (easyprivacy.txt: 4441) +.wt-eu02.net +# ||wredint.com^$third-party (easyprivacy.txt: 4440) +.wredint.com +# ||wrating.com^$third-party (easyprivacy.txt: 4439) +.wrating.com +# ||wpdstat.com^$third-party (easyprivacy.txt: 4438) +.wpdstat.com +# ||wp-stats.com^$third-party (easyprivacy.txt: 4437) +.wp-stats.com +# ||wowanalytics.co.uk^$third-party (easyprivacy.txt: 4436) +.wowanalytics.co.uk +# ||worldlogger.com^$third-party (easyprivacy.txt: 4435) +.worldlogger.com +# ||worldgravity.com^$third-party (easyprivacy.txt: 4434) +.worldgravity.com +# ||woopra.com^$third-party (easyprivacy.txt: 4433) +.woopra.com +# ||woopra-ns.com^$third-party (easyprivacy.txt: 4432) +.woopra-ns.com +# ||wishloop.com^$third-party (easyprivacy.txt: 4431) +.wishloop.com +# ||wiredminds.de^$third-party (easyprivacy.txt: 4430) +.wiredminds.de +# ||wildxtraffic.com^$third-party (easyprivacy.txt: 4429) +.wildxtraffic.com +# ||wikiodeliv.com^$third-party (easyprivacy.txt: 4428) +.wikiodeliv.com +# ||wikia-beacon.com^$third-party (easyprivacy.txt: 4427) +.wikia-beacon.com +# ||whoson.com^$third-party (easyprivacy.txt: 4426) +.whoson.com +# ||whosclickingwho.com^$third-party (easyprivacy.txt: 4425) +.whosclickingwho.com +# ||whoisvisiting.com^$third-party (easyprivacy.txt: 4424) +.whoisvisiting.com +# ||whoisonline.net^$third-party (easyprivacy.txt: 4423) +.whoisonline.net +# ||whoaremyfriends.net^$third-party (easyprivacy.txt: 4422) +.whoaremyfriends.net +# ||whoaremyfriends.com^$third-party (easyprivacy.txt: 4421) +.whoaremyfriends.com +# ||whitepixel.com^$third-party (easyprivacy.txt: 4420) +.whitepixel.com +# ||whackedmedia.com^$third-party (easyprivacy.txt: 4419) +.whackedmedia.com +# ||weesh.co.uk^$third-party (easyprivacy.txt: 4418) +.weesh.co.uk +# ||webtuna.com^$third-party (easyprivacy.txt: 4417) +.webtuna.com +# ||webtrendslive.com^$third-party (easyprivacy.txt: 4416) +.webtrendslive.com +# ||webtrends.com^$third-party (easyprivacy.txt: 4415) +.webtrends.com +# ||webtrekk-asia.net^$third-party (easyprivacy.txt: 4414) +.webtrekk-asia.net +# ||webtraxs.com^$third-party (easyprivacy.txt: 4413) +.webtraxs.com +# ||webtraffiq.com^$third-party (easyprivacy.txt: 4412) +.webtraffiq.com +# ||webtrafficagents.com^$third-party (easyprivacy.txt: 4411) +.webtrafficagents.com +# ||webtraffic.se^$third-party (easyprivacy.txt: 4410) +.webtraffic.se +# ||webstats4u.com^$third-party (easyprivacy.txt: 4409) +.webstats4u.com +# ||webstats.com^$third-party (easyprivacy.txt: 4408) +.webstats.com +# ||webstat.se^$third-party (easyprivacy.txt: 4407) +.webstat.se +# ||webstat.net^$third-party (easyprivacy.txt: 4406) +.webstat.net +# ||webstat.com^$third-party (easyprivacy.txt: 4405) +.webstat.com +# ||webspectator.com^$third-party (easyprivacy.txt: 4404) +.webspectator.com +# ||websitewelcome.com^$third-party (easyprivacy.txt: 4403) +.websitewelcome.com +# ||websiteperform.com^$third-party (easyprivacy.txt: 4402) +.websiteperform.com +# ||websiteonlinecounter.com^$third-party (easyprivacy.txt: 4401) +.websiteonlinecounter.com +# ||websiteceo.com^$third-party (easyprivacy.txt: 4400) +.websiteceo.com +# ||website-hit-counters.com^$third-party (easyprivacy.txt: 4399) +.website-hit-counters.com +# ||webmasterplan.com^$third-party (easyprivacy.txt: 4398) +.webmasterplan.com +# ||weblytics.io^$third-party (easyprivacy.txt: 4397) +.weblytics.io +# ||webleads-tracker.com^$third-party (easyprivacy.txt: 4396) +.webleads-tracker.com +# ||webiqonline.com^$third-party (easyprivacy.txt: 4395) +.webiqonline.com +# ||webglstats.com^$third-party (easyprivacy.txt: 4394) +.webglstats.com +# ||webforensics.co.uk^$third-party (easyprivacy.txt: 4393) +.webforensics.co.uk +# ||webflowmetrics.com^$third-party (easyprivacy.txt: 4392) +.webflowmetrics.com +# ||webcounter.ws^$third-party (easyprivacy.txt: 4391) +.webcounter.ws +# ||webcounter.co.za^$third-party (easyprivacy.txt: 4390) +.webcounter.co.za +# ||webclicktracker.com^$third-party (easyprivacy.txt: 4389) +.webclicktracker.com +# ||webalytics.pw^$third-party (easyprivacy.txt: 4388) +.webalytics.pw +# ||web-stat.net^$third-party (easyprivacy.txt: 4387) +.web-stat.net +# ||web-stat.com^$third-party (easyprivacy.txt: 4386) +.web-stat.com +# ||web-counter.net^$third-party (easyprivacy.txt: 4385) +.web-counter.net +# ||web-boosting.net^$third-party (easyprivacy.txt: 4384) +.web-boosting.net +# ||waudit.cz^$third-party (easyprivacy.txt: 4383) +.waudit.cz +# ||waplog.net^$third-party (easyprivacy.txt: 4382) +.waplog.net +# ||w55c.net^$third-party (easyprivacy.txt: 4381) +.w55c.net +# ||w3counter.com^$third-party (easyprivacy.txt: 4380) +.w3counter.com +# ||vtracker.net^$third-party (easyprivacy.txt: 4379) +.vtracker.net +# ||vstats.co^$third-party (easyprivacy.txt: 4378) +.vstats.co +# ||votistics.com^$third-party (easyprivacy.txt: 4377) +.votistics.com +# ||voodooalerts.com^$third-party (easyprivacy.txt: 4376) +.voodooalerts.com +# ||voicefive.com^$third-party (easyprivacy.txt: 4375) +.voicefive.com +# ||vmtrk.com^$third-party (easyprivacy.txt: 4374) +.vmtrk.com +# ||vmmpxl.com^$third-party (easyprivacy.txt: 4373) +.vmmpxl.com +# ||vmm-satellite2.com^$third-party (easyprivacy.txt: 4372) +.vmm-satellite2.com +# ||vmm-satellite1.com^$third-party (easyprivacy.txt: 4371) +.vmm-satellite1.com +# ||vizury.com^$third-party (easyprivacy.txt: 4370) +.vizury.com +# ||vizisense.net^$third-party (easyprivacy.txt: 4369) +.vizisense.net +# ||vivocha.com^$third-party (easyprivacy.txt: 4368) +.vivocha.com +# ||visualwebsiteoptimizer.com^$third-party (easyprivacy.txt: 4367) +.visualwebsiteoptimizer.com +# ||visualrevenue.com^$third-party (easyprivacy.txt: 4366) +.visualrevenue.com +# ||visualdna.com^$third-party (easyprivacy.txt: 4365) +.visualdna.com +# ||visualdna-stats.com^$third-party (easyprivacy.txt: 4364) +.visualdna-stats.com +# ||visitstreamer.com^$third-party (easyprivacy.txt: 4363) +.visitstreamer.com +# ||visitorville.com^$third-party (easyprivacy.txt: 4362) +.visitorville.com +# ||visitortracklog.com^$third-party (easyprivacy.txt: 4361) +.visitortracklog.com +# ||visitorprofiler.com^$third-party (easyprivacy.txt: 4360) +.visitorprofiler.com +# ||visitorpath.com^$third-party (easyprivacy.txt: 4359) +.visitorpath.com +# ||visitorjs.com^$third-party (easyprivacy.txt: 4358) +.visitorjs.com +# ||visitorinspector.com^$third-party (easyprivacy.txt: 4357) +.visitorinspector.com +# ||visitorglobe.com^$third-party (easyprivacy.txt: 4356) +.visitorglobe.com +# ||visitor-track.com^$third-party (easyprivacy.txt: 4355) +.visitor-track.com +# ||visitlog.net^$third-party (easyprivacy.txt: 4354) +.visitlog.net +# ||visistat.com^$third-party (easyprivacy.txt: 4353) +.visistat.com +# ||visioncriticalpanels.com^$third-party (easyprivacy.txt: 4352) +.visioncriticalpanels.com +# ||visibli.com^$third-party (easyprivacy.txt: 4351) +.visibli.com +# ||visiblemeasures.com/swf/as3/as3sohandler.swf$object-subrequest,third-party (easyprivacy.txt: 4350) +.visiblemeasures.com/swf/as3/as3sohandler\.swf +# ||visiblemeasures.com/swf/*/vmcdmplugin.swf?key*pixel$object-subrequest (easyprivacy.txt: 4349) +.visiblemeasures.com/swf/.*/vmcdmplugin\.swf\?key.*pixel +# ||visiblemeasures.com/log?$object-subrequest,third-party (easyprivacy.txt: 4348) +.visiblemeasures.com/log\? +# ||visibility-stats.com^$third-party (easyprivacy.txt: 4347) +.visibility-stats.com +# ||virtualnet.co.uk^$third-party (easyprivacy.txt: 4346) +.virtualnet.co.uk +# ||virool.com^$third-party (easyprivacy.txt: 4345) +.virool.com +# ||viralninjas.com^$third-party (easyprivacy.txt: 4344) +.viralninjas.com +# ||vinlens.com^$third-party (easyprivacy.txt: 4343) +.vinlens.com +# ||vigo.ru^$third-party (easyprivacy.txt: 4342) +.vigo.ru +# ||videostat.com^$third-party (easyprivacy.txt: 4341) +.videostat.com +# ||vertster.com^$third-party (easyprivacy.txt: 4340) +.vertster.com +# ||verticalsearchworks.com^$third-party (easyprivacy.txt: 4339) +.verticalsearchworks.com +# ||verticalscope.com^$third-party (easyprivacy.txt: 4338) +.verticalscope.com +# ||vertical-leap.net^$third-party (easyprivacy.txt: 4337) +.vertical-leap.net +# ||vertical-leap.co.uk^$third-party (easyprivacy.txt: 4336) +.vertical-leap.co.uk +# ||ventivmedia.com^$third-party (easyprivacy.txt: 4335) +.ventivmedia.com +# ||vendri.io^$third-party (easyprivacy.txt: 4334) +.vendri.io +# ||velaro.com^$third-party (easyprivacy.txt: 4333) +.velaro.com +# ||veinteractive.com^$third-party (easyprivacy.txt: 4332) +.veinteractive.com +# ||veduy.com^$third-party (easyprivacy.txt: 4331) +.veduy.com +# ||vdna-assets.com^$third-party (easyprivacy.txt: 4330) +.vdna-assets.com +# ||vbanalytics.com^$third-party (easyprivacy.txt: 4329) +.vbanalytics.com +# ||vantage-media.net^$third-party (easyprivacy.txt: 4328) +.vantage-media.net +# ||valuedopinions.co.uk^$third-party (easyprivacy.txt: 4327) +.valuedopinions.co.uk +# ||usuarios-online.com^$third-party (easyprivacy.txt: 4326) +.usuarios-online.com +# ||userzoom.com^$third-party (easyprivacy.txt: 4325) +.userzoom.com +# ||userreport.com^$third-party (easyprivacy.txt: 4324) +.userreport.com +# ||useronlinecounter.com^$third-party (easyprivacy.txt: 4323) +.useronlinecounter.com +# ||userneeds.dk^$third-party (easyprivacy.txt: 4322) +.userneeds.dk +# ||userlook.com^$third-party (easyprivacy.txt: 4321) +.userlook.com +# ||userdmp.com^$third-party (easyprivacy.txt: 4320) +.userdmp.com +# ||usercycle.com^$third-party (easyprivacy.txt: 4319) +.usercycle.com +# ||userchecker.info^$third-party (easyprivacy.txt: 4318) +.userchecker.info +# ||usabilla.com^$third-party (easyprivacy.txt: 4317) +.usabilla.com +# ||usabilitytools.com^$third-party (easyprivacy.txt: 4316) +.usabilitytools.com +# ||urlself.com^$third-party (easyprivacy.txt: 4315) +.urlself.com +# ||urlbrief.com^$third-party (easyprivacy.txt: 4314) +.urlbrief.com +# ||uralweb.ru^$third-party (easyprivacy.txt: 4313) +.uralweb.ru +# ||uptracs.com^$third-party (easyprivacy.txt: 4312) +.uptracs.com +# ||uptimeviewer.com^$third-party (easyprivacy.txt: 4311) +.uptimeviewer.com +# ||upstats.ru^$third-party (easyprivacy.txt: 4310) +.upstats.ru +# ||unicaondemand.com^$third-party (easyprivacy.txt: 4309) +.unicaondemand.com +# ||umbel.com^$third-party (easyprivacy.txt: 4308) +.umbel.com +# ||ukrre-tea.info^$third-party (easyprivacy.txt: 4307) +.ukrre-tea.info +# ||ugdturner.com^$third-party (easyprivacy.txt: 4306) +.ugdturner.com +# ||ubertracking.info^$third-party (easyprivacy.txt: 4305) +.ubertracking.info +# ||ubertags.com^$third-party (easyprivacy.txt: 4304) +.ubertags.com +# ||uadx.com^$third-party (easyprivacy.txt: 4303) +.uadx.com +# ||u5e.com^$third-party (easyprivacy.txt: 4302) +.u5e.com +# ||tynt.com^$third-party (easyprivacy.txt: 4301) +.tynt.com +# ||tylere.net^$third-party (easyprivacy.txt: 4300) +.tylere.net +# ||twopointo.io^$third-party (easyprivacy.txt: 4299) +.twopointo.io +# ||twcount.com^$third-party (easyprivacy.txt: 4298) +.twcount.com +# ||tubetrafficcash.com^$third-party (easyprivacy.txt: 4297) +.tubetrafficcash.com +# ||tsw0.com^$third-party (easyprivacy.txt: 4296) +.tsw0.com +# ||tstlabs.co.uk^$third-party (easyprivacy.txt: 4295) +.tstlabs.co.uk +# ||tsk5.com^$third-party (easyprivacy.txt: 4294) +.tsk5.com +# ||tsk4.com^$third-party (easyprivacy.txt: 4293) +.tsk4.com +# ||tscounter.com^$third-party (easyprivacy.txt: 4292) +.tscounter.com +# ||tscapeplay.com^$third-party (easyprivacy.txt: 4291) +.tscapeplay.com +# ||truehits1.gits.net.th^$third-party (easyprivacy.txt: 4290) +.truehits1.gits.net.th +# ||truehits.in.th^$third-party (easyprivacy.txt: 4289) +.truehits.in.th +# ||tru.am^$third-party (easyprivacy.txt: 4288) +.tru.am +# ||trovus.co.uk^$third-party (easyprivacy.txt: 4287) +.trovus.co.uk +# ||trkjmp.com^$third-party (easyprivacy.txt: 4286) +.trkjmp.com +# ||triggit.com^$third-party (easyprivacy.txt: 4285) +.triggit.com +# ||triggertag.gorillanation.com^$third-party (easyprivacy.txt: 4284) +.triggertag.gorillanation.com +# ||triggeredmessaging.com^$third-party (easyprivacy.txt: 4283) +.triggeredmessaging.com +# ||trendcounter.com^$third-party (easyprivacy.txt: 4282) +.trendcounter.com +# ||trekmedia.net^$third-party (easyprivacy.txt: 4281) +.trekmedia.net +# ||treehousei.com^$third-party (easyprivacy.txt: 4280) +.treehousei.com +# ||trakzor.com^$third-party (easyprivacy.txt: 4279) +.trakzor.com +# ||trakken.de^$third-party (easyprivacy.txt: 4278) +.trakken.de +# ||trailheadapp.com^$third-party (easyprivacy.txt: 4277) +.trailheadapp.com +# ||trail-web.com^$third-party (easyprivacy.txt: 4276) +.trail-web.com +# ||trafinfo.info^$third-party (easyprivacy.txt: 4275) +.trafinfo.info +# ||traffikcntr.com^$third-party (easyprivacy.txt: 4274) +.traffikcntr.com +# ||trafficregenerator.com^$third-party (easyprivacy.txt: 4273) +.trafficregenerator.com +# ||trafficjoint.com^$third-party (easyprivacy.txt: 4272) +.trafficjoint.com +# ||trafficfacts.com^$third-party (easyprivacy.txt: 4271) +.trafficfacts.com +# ||trafficengine.net^$third-party (easyprivacy.txt: 4270) +.trafficengine.net +# ||trafficby.net^$third-party (easyprivacy.txt: 4269) +.trafficby.net +# ||trafex.net^$third-party (easyprivacy.txt: 4268) +.trafex.net +# ||tradescape.biz^$third-party (easyprivacy.txt: 4267) +.tradescape.biz +# ||tradelab.fr^$third-party (easyprivacy.txt: 4266) +.tradelab.fr +# ||tradedoubler.com^$third-party (easyprivacy.txt: 4265) +.tradedoubler.com +# ||trackyourstats.com^$third-party (easyprivacy.txt: 4264) +.trackyourstats.com +# ||trackword.biz^$third-party (easyprivacy.txt: 4263) +.trackword.biz +# ||trackvoluum.com^$third-party (easyprivacy.txt: 4262) +.trackvoluum.com +# ||tracktrk.net^$third-party (easyprivacy.txt: 4261) +.tracktrk.net +# ||tracksy.com^$third-party (easyprivacy.txt: 4260) +.tracksy.com +# ||trackset.com^$third-party (easyprivacy.txt: 4259) +.trackset.com +# ||trackmyweb.net^$third-party (easyprivacy.txt: 4258) +.trackmyweb.net +# ||trackkas.com^$third-party (easyprivacy.txt: 4257) +.trackkas.com +# ||trackjs.com^$third-party (easyprivacy.txt: 4256) +.trackjs.com +# ||trackinglabs.com^$third-party (easyprivacy.txt: 4255) +.trackinglabs.com +# ||tracking202.com^$third-party (easyprivacy.txt: 4254) +.tracking202.com +# ||tracking100.com^$third-party (easyprivacy.txt: 4253) +.tracking100.com +# ||trackedweb.net^$third-party (easyprivacy.txt: 4252) +.trackedweb.net +# ||trackedlink.net^$third-party (easyprivacy.txt: 4251) +.trackedlink.net +# ||trackeame.com^$third-party (easyprivacy.txt: 4250) +.trackeame.com +# ||trackdiscovery.net^$third-party (easyprivacy.txt: 4249) +.trackdiscovery.net +# ||trackconsole.com^$third-party (easyprivacy.txt: 4248) +.trackconsole.com +# ||trackcmp.net^$third-party (easyprivacy.txt: 4247) +.trackcmp.net +# ||trackcdn.com^$third-party (easyprivacy.txt: 4246) +.trackcdn.com +# ||trackbar.info^$third-party (easyprivacy.txt: 4245) +.trackbar.info +# ||trackalyzer.com^$third-party (easyprivacy.txt: 4244) +.trackalyzer.com +# ||track2.me^$third-party (easyprivacy.txt: 4243) +.track2.me +# ||traceworks.com^$third-party (easyprivacy.txt: 4242) +.traceworks.com +# ||tracetracking.net^$third-party (easyprivacy.txt: 4241) +.tracetracking.net +# ||tracer.jp^$third-party (easyprivacy.txt: 4240) +.tracer.jp +# ||tracemyip.org^$third-party (easyprivacy.txt: 4239) +.tracemyip.org +# ||tracelytics.com^$third-party (easyprivacy.txt: 4238) +.tracelytics.com +# ||trace-2000.com^$third-party (easyprivacy.txt: 4237) +.trace-2000.com +# ||tracc.it^$third-party (easyprivacy.txt: 4236) +.tracc.it +# ||touchclarity.com^$third-party (easyprivacy.txt: 4235) +.touchclarity.com +# ||toro-tags.com^$third-party (easyprivacy.txt: 4234) +.toro-tags.com +# ||torbit.com^$third-party (easyprivacy.txt: 4233) +.torbit.com +# ||topofblogs.com^$third-party (easyprivacy.txt: 4232) +.topofblogs.com +# ||topmalaysia.com^$third-party (easyprivacy.txt: 4231) +.topmalaysia.com +# ||toplist.eu^$third-party (easyprivacy.txt: 4230) +.toplist.eu +# ||topdepo.com^$third-party (easyprivacy.txt: 4229) +.topdepo.com +# ||topblogging.com^$third-party (easyprivacy.txt: 4228) +.topblogging.com +# ||topblogarea.com^$third-party (easyprivacy.txt: 4227) +.topblogarea.com +# ||top100webshops.com^$third-party (easyprivacy.txt: 4226) +.top100webshops.com +# ||top100bloggers.com^$third-party (easyprivacy.txt: 4225) +.top100bloggers.com +# ||tns-cs.net^$third-party (easyprivacy.txt: 4224) +.tns-cs.net +# ||tns-counter.ru^$third-party (easyprivacy.txt: 4223) +.tns-counter.ru +# ||tmvtp.com^$third-party (easyprivacy.txt: 4222) +.tmvtp.com +# ||tmpjmp.com^$third-party (easyprivacy.txt: 4221) +.tmpjmp.com +# ||tm1-001.com^$third-party (easyprivacy.txt: 4220) +.tm1-001.com +# ||tl813.com^$third-party (easyprivacy.txt: 4219) +.tl813.com +# ||tiser.com.au^$third-party (easyprivacy.txt: 4218) +.tiser.com.au +# ||tinycounter.com^$third-party (easyprivacy.txt: 4217) +.tinycounter.com +# ||thespecialsearch.com^$third-party (easyprivacy.txt: 4216) +.thespecialsearch.com +# ||thesearchagency.net^$third-party (easyprivacy.txt: 4215) +.thesearchagency.net +# ||thermstats.com^$third-party (easyprivacy.txt: 4214) +.thermstats.com +# ||thefreehitcounter.com^$third-party (easyprivacy.txt: 4213) +.thefreehitcounter.com +# ||thecounter.com^$third-party (easyprivacy.txt: 4212) +.thecounter.com +# ||thebrighttag.com^$third-party (easyprivacy.txt: 4211) +.thebrighttag.com +# ||thebestlinks.com^$third-party (easyprivacy.txt: 4210) +.thebestlinks.com +# ||theadex.com^$third-party (easyprivacy.txt: 4209) +.theadex.com +# ||tetoolbox.com^$third-party (easyprivacy.txt: 4208) +.tetoolbox.com +# ||terabytemedia.com^$third-party (easyprivacy.txt: 4207) +.terabytemedia.com +# ||tentaculos.net^$third-party (easyprivacy.txt: 4206) +.tentaculos.net +# ||tendatta.com^$third-party (easyprivacy.txt: 4205) +.tendatta.com +# ||tellaparts.com^$third-party (easyprivacy.txt: 4204) +.tellaparts.com +# ||tellapart.com^$third-party (easyprivacy.txt: 4203) +.tellapart.com +# ||teljari.is^$third-party (easyprivacy.txt: 4202) +.teljari.is +# ||telize.com^$third-party (easyprivacy.txt: 4201) +.telize.com +# ||telemetrytaxonomy.net^$third-party (easyprivacy.txt: 4200) +.telemetrytaxonomy.net +# ||tealiumiq.com^$third-party (easyprivacy.txt: 4199) +.tealiumiq.com +# ||tdstats.com^$third-party (easyprivacy.txt: 4198) +.tdstats.com +# ||tctm.co^$third-party (easyprivacy.txt: 4197) +.tctm.co +# ||tcimg.com^$third-party (easyprivacy.txt: 4196) +.tcimg.com +# ||tcactivity.net^$third-party (easyprivacy.txt: 4195) +.tcactivity.net +# ||targetfuel.com^$third-party (easyprivacy.txt: 4194) +.targetfuel.com +# ||tapstream.com^$third-party (easyprivacy.txt: 4193) +.tapstream.com +# ||taps.io^$third-party (easyprivacy.txt: 4192) +.taps.io +# ||tapfiliate.com^$third-party (easyprivacy.txt: 4191) +.tapfiliate.com +# ||tagtray.com^$third-party (easyprivacy.txt: 4190) +.tagtray.com +# ||tagsrvcs.com^$third-party (easyprivacy.txt: 4189) +.tagsrvcs.com +# ||tagifydiageo.com^$third-party (easyprivacy.txt: 4188) +.tagifydiageo.com +# ||tagcommander.com^$third-party (easyprivacy.txt: 4187) +.tagcommander.com +# ||tag4arm.com^$third-party (easyprivacy.txt: 4186) +.tag4arm.com +# ||t-analytics.com^$third-party (easyprivacy.txt: 4185) +.t-analytics.com +# ||sysomos.com^$third-party (easyprivacy.txt: 4184) +.sysomos.com +# ||synthasite.net^$third-party (easyprivacy.txt: 4183) +.synthasite.net +# ||synergy-sync.com^$third-party (easyprivacy.txt: 4182) +.synergy-sync.com +# ||synergy-e.com^$third-party (easyprivacy.txt: 4181) +.synergy-e.com +# ||sxtracking.com^$third-party (easyprivacy.txt: 4180) +.sxtracking.com +# ||swoopgrid.com^$third-party (easyprivacy.txt: 4179) +.swoopgrid.com +# ||swiss-counter.com^$third-party (easyprivacy.txt: 4178) +.swiss-counter.com +# ||swfstats.com^$third-party (easyprivacy.txt: 4177) +.swfstats.com +# ||swcs.jp^$third-party (easyprivacy.txt: 4176) +.swcs.jp +# ||survicate.com^$third-party (easyprivacy.txt: 4175) +.survicate.com +# ||surveywriter.com^$third-party (easyprivacy.txt: 4174) +.surveywriter.com +# ||surveyscout.com^$third-party (easyprivacy.txt: 4173) +.surveyscout.com +# ||surfertracker.com^$third-party (easyprivacy.txt: 4172) +.surfertracker.com +# ||surfcounters.com^$third-party (easyprivacy.txt: 4171) +.surfcounters.com +# ||supert.ag^$third-party (easyprivacy.txt: 4170) +.supert.ag +# ||superstats.com^$third-party (easyprivacy.txt: 4169) +.superstats.com +# ||supercounters.com^$third-party (easyprivacy.txt: 4168) +.supercounters.com +# ||sundaysky.com^$third-party (easyprivacy.txt: 4167) +.sundaysky.com +# ||summitemarketinganalytics.com^$third-party (easyprivacy.txt: 4166) +.summitemarketinganalytics.com +# ||subtraxion.com^$third-party (easyprivacy.txt: 4165) +.subtraxion.com +# ||submitnet.net^$third-party (easyprivacy.txt: 4164) +.submitnet.net +# ||sub2tech.com^$third-party (easyprivacy.txt: 4163) +.sub2tech.com +# ||strs.jp^$third-party (easyprivacy.txt: 4162) +.strs.jp +# ||stormiq.com^$third-party (easyprivacy.txt: 4161) +.stormiq.com +# ||stormcontainertag.com^$third-party (easyprivacy.txt: 4160) +.stormcontainertag.com +# ||stippleit.com^$third-party (easyprivacy.txt: 4159) +.stippleit.com +# ||stellaservice.com^$third-party (easyprivacy.txt: 4158) +.stellaservice.com +# ||steelhousemedia.com^$third-party (easyprivacy.txt: 4157) +.steelhousemedia.com +# ||stcounter.com^$third-party (easyprivacy.txt: 4156) +.stcounter.com +# ||stcllctrs.com^$third-party (easyprivacy.txt: 4155) +.stcllctrs.com +# ||statuncore.com^$third-party (easyprivacy.txt: 4154) +.statuncore.com +# ||statun.com^$third-party (easyprivacy.txt: 4153) +.statun.com +# ||stattrax.com^$third-party (easyprivacy.txt: 4152) +.stattrax.com +# ||stattooz.com^$third-party (easyprivacy.txt: 4151) +.stattooz.com +# ||statswave.com^$third-party (easyprivacy.txt: 4150) +.statswave.com +# ||statssheet.com^$third-party (easyprivacy.txt: 4149) +.statssheet.com +# ||statsrely.com^$third-party (easyprivacy.txt: 4148) +.statsrely.com +# ||statsmachine.com^$third-party (easyprivacy.txt: 4147) +.statsmachine.com +# ||statsit.com^$third-party (easyprivacy.txt: 4146) +.statsit.com +# ||statsinsight.com^$third-party (easyprivacy.txt: 4145) +.statsinsight.com +# ||statsimg.com^$third-party (easyprivacy.txt: 4144) +.statsimg.com +# ||statsbox.nl^$third-party (easyprivacy.txt: 4143) +.statsbox.nl +# ||stats4you.com^$third-party (easyprivacy.txt: 4142) +.stats4you.com +# ||stats4all.com^$third-party (easyprivacy.txt: 4141) +.stats4all.com +# ||stats2513.com^$third-party (easyprivacy.txt: 4140) +.stats2513.com +# ||stats21.com^$third-party (easyprivacy.txt: 4139) +.stats21.com +# ||stats2.com^$third-party (easyprivacy.txt: 4138) +.stats2.com +# ||stats.cz^$third-party (easyprivacy.txt: 4137) +.stats.cz +# ||stats-analytics.info^$third-party (easyprivacy.txt: 4136) +.stats-analytics.info +# ||statowl.com^$third-party (easyprivacy.txt: 4135) +.statowl.com +# ||statistx.com^$third-party (easyprivacy.txt: 4134) +.statistx.com +# ||statistiche-web.com^$third-party (easyprivacy.txt: 4133) +.statistiche-web.com +# ||statisfy.net^$third-party (easyprivacy.txt: 4132) +.statisfy.net +# ||stathound.com^$third-party (easyprivacy.txt: 4131) +.stathound.com +# ||stathat.com^$third-party (easyprivacy.txt: 4130) +.stathat.com +# ||statcounters.info^$third-party (easyprivacy.txt: 4129) +.statcounters.info +# ||statcounterfree.com^$third-party (easyprivacy.txt: 4128) +.statcounterfree.com +# ||statcounter.com^$third-party (easyprivacy.txt: 4127) +.statcounter.com +# ||statcount.com^$third-party (easyprivacy.txt: 4126) +.statcount.com +# ||stat24.com^$third-party (easyprivacy.txt: 4125) +.stat24.com +# ||stat08.com^$third-party (easyprivacy.txt: 4124) +.stat08.com +# ||startstat.ru^$third-party (easyprivacy.txt: 4123) +.startstat.ru +# ||srpx.net^$third-party (easyprivacy.txt: 4122) +.srpx.net +# ||squidanalytics.com^$third-party (easyprivacy.txt: 4121) +.squidanalytics.com +# ||spywords.com^$third-party (easyprivacy.txt: 4120) +.spywords.com +# ||spylog.ru^$third-party (easyprivacy.txt: 4119) +.spylog.ru +# ||spylog.com^$third-party (easyprivacy.txt: 4118) +.spylog.com +# ||spycounter.net^$third-party (easyprivacy.txt: 4117) +.spycounter.net +# ||sptag3.com^$third-party (easyprivacy.txt: 4116) +.sptag3.com +# ||sptag2.com^$third-party (easyprivacy.txt: 4115) +.sptag2.com +# ||sptag1.com^$third-party (easyprivacy.txt: 4114) +.sptag1.com +# ||sptag.com^$third-party (easyprivacy.txt: 4113) +.sptag.com +# ||springserve.com^$third-party (easyprivacy.txt: 4112) +.springserve.com +# ||springmetrics.com^$third-party (easyprivacy.txt: 4111) +.springmetrics.com +# ||spring.de^$third-party (easyprivacy.txt: 4110) +.spring.de +# ||spotmx.com^$third-party (easyprivacy.txt: 4109) +.spotmx.com +# ||sponsored.com^$third-party (easyprivacy.txt: 4108) +.sponsored.com +# ||spn.ee^$third-party (easyprivacy.txt: 4107) +.spn.ee +# ||spn-twr-14.com^$third-party (easyprivacy.txt: 4106) +.spn-twr-14.com +# ||splyt.com^$third-party (easyprivacy.txt: 4105) +.splyt.com +# ||splurgi.com^$third-party (easyprivacy.txt: 4104) +.splurgi.com +# ||splittag.com^$third-party (easyprivacy.txt: 4103) +.splittag.com +# ||speed-trap.com^$third-party (easyprivacy.txt: 4102) +.speed-trap.com +# ||spectate.com^$third-party (easyprivacy.txt: 4101) +.spectate.com +# ||sophus3.com^$third-party (easyprivacy.txt: 4100) +.sophus3.com +# ||sometrics.com^$third-party (easyprivacy.txt: 4099) +.sometrics.com +# ||sokrati.com^$third-party (easyprivacy.txt: 4098) +.sokrati.com +# ||softonic-analytics.net^$third-party (easyprivacy.txt: 4097) +.softonic-analytics.net +# ||sodoit.com^$third-party (easyprivacy.txt: 4096) +.sodoit.com +# ||socketanalytics.com^$third-party (easyprivacy.txt: 4095) +.socketanalytics.com +# ||socialtrack.net^$third-party (easyprivacy.txt: 4094) +.socialtrack.net +# ||socialtrack.co^$third-party (easyprivacy.txt: 4093) +.socialtrack.co +# ||socialprofitmachine.com^$third-party (easyprivacy.txt: 4092) +.socialprofitmachine.com +# ||snowsignal.com^$third-party (easyprivacy.txt: 4091) +.snowsignal.com +# ||snoobi.com^$third-party (easyprivacy.txt: 4090) +.snoobi.com +# ||sniphub.com^$third-party (easyprivacy.txt: 4089) +.sniphub.com +# ||sniperlog.ru^$third-party (easyprivacy.txt: 4088) +.sniperlog.ru +# ||smrtlnks.com^$third-party (easyprivacy.txt: 4087) +.smrtlnks.com +# ||smileyhost.net^$third-party (easyprivacy.txt: 4086) +.smileyhost.net +# ||smfsvc.com^$third-party (easyprivacy.txt: 4085) +.smfsvc.com +# ||smartzonessva.com^$third-party (easyprivacy.txt: 4084) +.smartzonessva.com +# ||smartracker.net^$third-party (easyprivacy.txt: 4083) +.smartracker.net +# ||smarterremarketer.net^$third-party (easyprivacy.txt: 4082) +.smarterremarketer.net +# ||smarterhq.io^$third-party (easyprivacy.txt: 4081) +.smarterhq.io +# ||smart-ip.net^$third-party (easyprivacy.txt: 4080) +.smart-ip.net +# ||smallseotools.com^$third-party (easyprivacy.txt: 4079) +.smallseotools.com +# ||slingpic.com^$third-party (easyprivacy.txt: 4078) +.slingpic.com +# ||sl-ct5.com^$third-party (easyprivacy.txt: 4077) +.sl-ct5.com +# ||skyglue.com^$third-party (easyprivacy.txt: 4076) +.skyglue.com +# ||skimresources.com^$third-party (easyprivacy.txt: 4075) +.skimresources.com +# ||sitetraq.nl^$third-party (easyprivacy.txt: 4074) +.sitetraq.nl +# ||sitetracker.com^$third-party (easyprivacy.txt: 4073) +.sitetracker.com +# ||sitetagger.co.uk^$third-party (easyprivacy.txt: 4072) +.sitetagger.co.uk +# ||sitetag.us^$third-party (easyprivacy.txt: 4071) +.sitetag.us +# ||sitestat.com^$third-party (easyprivacy.txt: 4070) +.sitestat.com +# ||sitereport.org^$third-party (easyprivacy.txt: 4069) +.sitereport.org +# ||sitemeter.com^$third-party (easyprivacy.txt: 4068) +.sitemeter.com +# ||sitelinktrack.com^$third-party (easyprivacy.txt: 4067) +.sitelinktrack.com +# ||siteimprove.com^$third-party (easyprivacy.txt: 4066) +.siteimprove.com +# ||sitecompass.com^$third-party (easyprivacy.txt: 4065) +.sitecompass.com +# ||sitebro.tw^$third-party (easyprivacy.txt: 4064) +.sitebro.tw +# ||sitebro.net^$third-party (easyprivacy.txt: 4063) +.sitebro.net +# ||sitebro.com^$third-party (easyprivacy.txt: 4062) +.sitebro.com +# ||siteapps.com^$third-party (easyprivacy.txt: 4061) +.siteapps.com +# ||singlefeed.com^$third-party (easyprivacy.txt: 4060) +.singlefeed.com +# ||simplycast.us^$third-party (easyprivacy.txt: 4059) +.simplycast.us +# ||simpli.fi^$third-party (easyprivacy.txt: 4058) +.simpli.fi +# ||simplereach.com^$third-party (easyprivacy.txt: 4057) +.simplereach.com +# ||simplehitcounter.com^$third-party (easyprivacy.txt: 4056) +.simplehitcounter.com +# ||silverpush.co^$third-party (easyprivacy.txt: 4055) +.silverpush.co +# ||silverpop.com^$third-party (easyprivacy.txt: 4054) +.silverpop.com +# ||signup-way.com^$third-party (easyprivacy.txt: 4053) +.signup-way.com +# ||siftscience.com^$third-party (easyprivacy.txt: 4052) +.siftscience.com +# ||shrinktheweb.com^$third-party (easyprivacy.txt: 4051) +.shrinktheweb.com +# ||showroomlogic.com^$third-party (easyprivacy.txt: 4050) +.showroomlogic.com +# ||shippinginsights.com^$third-party (easyprivacy.txt: 4049) +.shippinginsights.com +# ||shinystat.com^$third-party (easyprivacy.txt: 4048) +.shinystat.com +# ||sharpspring.com^$third-party (easyprivacy.txt: 4047) +.sharpspring.com +# ||sf14g.com^$third-party (easyprivacy.txt: 4046) +.sf14g.com +# ||sexystat.com^$third-party (easyprivacy.txt: 4045) +.sexystat.com +# ||sexcounter.com^$third-party (easyprivacy.txt: 4044) +.sexcounter.com +# ||sessioncam.com^$third-party (easyprivacy.txt: 4043) +.sessioncam.com +# ||servustats.com^$third-party (easyprivacy.txt: 4042) +.servustats.com +# ||servinator.pw^$third-party (easyprivacy.txt: 4041) +.servinator.pw +# ||servestats.com^$third-party (easyprivacy.txt: 4040) +.servestats.com +# ||serious-partners.com^$third-party (easyprivacy.txt: 4039) +.serious-partners.com +# ||seoradar.ro^$third-party (easyprivacy.txt: 4038) +.seoradar.ro +# ||seoparts.net^$third-party (easyprivacy.txt: 4037) +.seoparts.net +# ||seomoz.org^$third-party (easyprivacy.txt: 4036) +.seomoz.org +# ||seomonitor.ro^$third-party (easyprivacy.txt: 4035) +.seomonitor.ro +# ||sendtraffic.com^$third-party (easyprivacy.txt: 4034) +.sendtraffic.com +# ||semasio.net^$third-party (easyprivacy.txt: 4033) +.semasio.net +# ||semanticverses.com^$third-party (easyprivacy.txt: 4032) +.semanticverses.com +# ||sellpoints.com^$third-party (easyprivacy.txt: 4031) +.sellpoints.com +# ||selaris.com^$third-party (easyprivacy.txt: 4030) +.selaris.com +# ||segmentify.com^$third-party (easyprivacy.txt: 4029) +.segmentify.com +# ||segment.io^$third-party (easyprivacy.txt: 4028) +.segment.io +# ||segment.com^$third-party (easyprivacy.txt: 4027) +.segment.com +# ||segment-analytics.com^$third-party (easyprivacy.txt: 4026) +.segment-analytics.com +# ||seewhy.com^$third-party (easyprivacy.txt: 4025) +.seewhy.com +# ||seehits.com^$third-party (easyprivacy.txt: 4024) +.seehits.com +# ||sedotracker.com^$third-party (easyprivacy.txt: 4023) +.sedotracker.com +# ||securepaths.com^$third-party (easyprivacy.txt: 4022) +.securepaths.com +# ||secure-pixel.com^$third-party (easyprivacy.txt: 4021) +.secure-pixel.com +# ||searchplow.com^$third-party (easyprivacy.txt: 4020) +.searchplow.com +# ||searchignite.com^$third-party (easyprivacy.txt: 4019) +.searchignite.com +# ||searchfeed.com^$third-party (easyprivacy.txt: 4018) +.searchfeed.com +# ||sddan.com^$third-party (easyprivacy.txt: 4017) +.sddan.com +# ||scriptshead.com^$third-party (easyprivacy.txt: 4016) +.scriptshead.com +# ||scripts21.com^$third-party (easyprivacy.txt: 4015) +.scripts21.com +# ||script.ag^$third-party (easyprivacy.txt: 4014) +.script.ag +# ||scrippscontroller.com^$third-party (easyprivacy.txt: 4013) +.scrippscontroller.com +# ||scoutanalytics.net^$third-party (easyprivacy.txt: 4012) +.scoutanalytics.net +# ||scorecardresearch.com^$third-party (easyprivacy.txt: 4011) +.scorecardresearch.com +# ||sciencerevenue.com^$third-party (easyprivacy.txt: 4010) +.sciencerevenue.com +# ||schoolyeargo.com^$third-party (easyprivacy.txt: 4009) +.schoolyeargo.com +# ||scastnet.com^$third-party (easyprivacy.txt: 4008) +.scastnet.com +# ||scarabresearch.com^$third-party (easyprivacy.txt: 4007) +.scarabresearch.com +# ||scaledb.com^$third-party (easyprivacy.txt: 4006) +.scaledb.com +# ||sbdtds.com^$third-party (easyprivacy.txt: 4005) +.sbdtds.com +# ||sayutracking.co.uk^$third-party (easyprivacy.txt: 4004) +.sayutracking.co.uk +# ||sas15k01.com^$third-party (easyprivacy.txt: 4003) +.sas15k01.com +# ||sarevtop.com^$third-party (easyprivacy.txt: 4002) +.sarevtop.com +# ||sapha.com^$third-party (easyprivacy.txt: 4001) +.sapha.com +# ||saletrack.co.uk^$third-party (easyprivacy.txt: 4000) +.saletrack.co.uk +# ||sajari.com^$third-party (easyprivacy.txt: 3999) +.sajari.com +# ||sageanalyst.net^$third-party (easyprivacy.txt: 3998) +.sageanalyst.net +# ||s3s-main.net^$third-party (easyprivacy.txt: 3997) +.s3s-main.net +# ||rztrkr.com^$third-party (easyprivacy.txt: 3996) +.rztrkr.com +# ||rumanalytics.com^$third-party (easyprivacy.txt: 3995) +.rumanalytics.com +# ||ru4.com^$third-party (easyprivacy.txt: 3994) +.ru4.com +# ||rtrk.co.nz^$third-party (easyprivacy.txt: 3993) +.rtrk.co.nz +# ||rtfn.net^$third-party (easyprivacy.txt: 3992) +.rtfn.net +# ||rsvpgenius.com^$third-party (easyprivacy.txt: 3991) +.rsvpgenius.com +# ||rs6.net^$third-party (easyprivacy.txt: 3990) +.rs6.net +# ||rs0.co.uk^$third-party (easyprivacy.txt: 3989) +.rs0.co.uk +# ||rrimpl.com^$third-party (easyprivacy.txt: 3988) +.rrimpl.com +# ||rollingcounters.com^$third-party (easyprivacy.txt: 3987) +.rollingcounters.com +# ||roivista.com^$third-party (easyprivacy.txt: 3986) +.roivista.com +# ||roitesting.com^$third-party (easyprivacy.txt: 3985) +.roitesting.com +# ||roispy.com^$third-party (easyprivacy.txt: 3984) +.roispy.com +# ||roiservice.com^$third-party (easyprivacy.txt: 3983) +.roiservice.com +# ||roia.biz^$third-party (easyprivacy.txt: 3982) +.roia.biz +# ||roi-rocket.net^$third-party (easyprivacy.txt: 3981) +.roi-rocket.net +# ||roi-pro.com^$third-party (easyprivacy.txt: 3980) +.roi-pro.com +# ||rnlabs.com^$third-party (easyprivacy.txt: 3979) +.rnlabs.com +# ||rng-snp-003.com^$third-party (easyprivacy.txt: 3978) +.rng-snp-003.com +# ||rnengage.com^$third-party (easyprivacy.txt: 3977) +.rnengage.com +# ||rmtag.com^$third-party (easyprivacy.txt: 3976) +.rmtag.com +# ||rlcdn.com^$third-party (easyprivacy.txt: 3975) +.rlcdn.com +# ||rktu.com^$third-party (easyprivacy.txt: 3974) +.rktu.com +# ||rkdms.com^$third-party (easyprivacy.txt: 3973) +.rkdms.com +# ||ritecounter.com^$third-party (easyprivacy.txt: 3972) +.ritecounter.com +# ||richmetrics.com^$third-party (easyprivacy.txt: 3971) +.richmetrics.com +# ||richard-group.com^$third-party (easyprivacy.txt: 3970) +.richard-group.com +# ||riastats.com^$third-party (easyprivacy.txt: 3969) +.riastats.com +# ||rhinoseo.com^$third-party (easyprivacy.txt: 3968) +.rhinoseo.com +# ||rfihub.com^$third-party (easyprivacy.txt: 3967) +.rfihub.com +# ||reztrack.com^$third-party (easyprivacy.txt: 3966) +.reztrack.com +# ||rewardtv.com^$third-party (easyprivacy.txt: 3965) +.rewardtv.com +# ||revsw.net^$third-party (easyprivacy.txt: 3964) +.revsw.net +# ||revolvermaps.com^$third-party (easyprivacy.txt: 3963) +.revolvermaps.com +# ||revenuewire.net^$third-party (easyprivacy.txt: 3962) +.revenuewire.net +# ||revenuescience.com^$third-party (easyprivacy.txt: 3961) +.revenuescience.com +# ||revenuepilot.com^$third-party (easyprivacy.txt: 3960) +.revenuepilot.com +# ||revdn.net^$third-party (easyprivacy.txt: 3959) +.revdn.net +# ||retags.us^$third-party (easyprivacy.txt: 3958) +.retags.us +# ||responsetap.com^$third-party (easyprivacy.txt: 3957) +.responsetap.com +# ||reson8.com^$third-party (easyprivacy.txt: 3956) +.reson8.com +# ||researchnow.co.uk^$third-party (easyprivacy.txt: 3955) +.researchnow.co.uk +# ||research-tool.com^$third-party (easyprivacy.txt: 3954) +.research-tool.com +# ||res-x.com^$third-party (easyprivacy.txt: 3953) +.res-x.com +# ||remarketstats.com^$third-party (easyprivacy.txt: 3952) +.remarketstats.com +# ||relmaxtop.com^$third-party (easyprivacy.txt: 3951) +.relmaxtop.com +# ||reliablecounter.com^$third-party (easyprivacy.txt: 3950) +.reliablecounter.com +# ||relead.com^$third-party (easyprivacy.txt: 3949) +.relead.com +# ||reinvigorate.net^$third-party (easyprivacy.txt: 3948) +.reinvigorate.net +# ||refersion.com^$third-party (easyprivacy.txt: 3947) +.refersion.com +# ||referrer.org^$third-party (easyprivacy.txt: 3946) +.referrer.org +# ||referlytics.com^$third-party (easyprivacy.txt: 3945) +.referlytics.com +# ||referforex.com^$third-party (easyprivacy.txt: 3944) +.referforex.com +# ||referer.org^$third-party (easyprivacy.txt: 3943) +.referer.org +# ||reedge.com^$third-party (easyprivacy.txt: 3942) +.reedge.com +# ||reedbusiness.net^$third-party (easyprivacy.txt: 3941) +.reedbusiness.net +# ||redstatcounter.com^$third-party (easyprivacy.txt: 3940) +.redstatcounter.com +# ||redcounter.net^$third-party (easyprivacy.txt: 3939) +.redcounter.net +# ||recoset.com^$third-party (easyprivacy.txt: 3938) +.recoset.com +# ||realtracker.com^$third-party (easyprivacy.txt: 3937) +.realtracker.com +# ||realtimewebstats.net^$third-party (easyprivacy.txt: 3936) +.realtimewebstats.net +# ||realtimeplease.com^$third-party (easyprivacy.txt: 3935) +.realtimeplease.com +# ||realcounters.com^$third-party (easyprivacy.txt: 3934) +.realcounters.com +# ||realcounter.eu^$third-party (easyprivacy.txt: 3933) +.realcounter.eu +# ||real5traf.ru^$third-party (easyprivacy.txt: 3932) +.real5traf.ru +# ||readnotify.com^$third-party (easyprivacy.txt: 3931) +.readnotify.com +# ||readertracking.com^$third-party (easyprivacy.txt: 3930) +.readertracking.com +# ||reactful.com^$third-party (easyprivacy.txt: 3929) +.reactful.com +# ||reachsocket.com^$third-party (easyprivacy.txt: 3928) +.reachsocket.com +# ||reachforce.com^$third-party (easyprivacy.txt: 3927) +.reachforce.com +# ||rating.in^$third-party (easyprivacy.txt: 3926) +.rating.in +# ||rapidtrk.net^$third-party (easyprivacy.txt: 3925) +.rapidtrk.net +# ||rapidstats.net^$third-party (easyprivacy.txt: 3924) +.rapidstats.net +# ||rapidcounter.com^$third-party (easyprivacy.txt: 3923) +.rapidcounter.com +# ||rankinteractive.com^$third-party (easyprivacy.txt: 3922) +.rankinteractive.com +# ||rankingpartner.com^$third-party (easyprivacy.txt: 3921) +.rankingpartner.com +# ||rank-hits.com^$third-party (easyprivacy.txt: 3920) +.rank-hits.com +# ||rampmetrics.com^$third-party (easyprivacy.txt: 3919) +.rampmetrics.com +# ||radiomanlibya.com^$third-party (easyprivacy.txt: 3918) +.radiomanlibya.com +# ||radarurl.com^$third-party (easyprivacy.txt: 3917) +.radarurl.com +# ||radarstats.com^$third-party (easyprivacy.txt: 3916) +.radarstats.com +# ||r7ls.net^$third-party (easyprivacy.txt: 3915) +.r7ls.net +# ||qzlog.com^$third-party (easyprivacy.txt: 3914) +.qzlog.com +# ||quintelligence.com^$third-party (easyprivacy.txt: 3913) +.quintelligence.com +# ||quillion.com^$third-party (easyprivacy.txt: 3912) +.quillion.com +# ||questradeaffiliates.com^$third-party (easyprivacy.txt: 3911) +.questradeaffiliates.com +# ||questionpro.com^$third-party (easyprivacy.txt: 3910) +.questionpro.com +# ||qubitproducts.com^$third-party (easyprivacy.txt: 3909) +.qubitproducts.com +# ||quantserve.com^*^a=$object-subrequest,third-party (easyprivacy.txt: 3908) +.quantserve.com/.*[^\w%.-]a= +# ||quantserve.com^*.swf?$object-subrequest,third-party (easyprivacy.txt: 3907) +.quantserve.com/.*\.swf\? +# ||quantserve.com^$~object-subrequest,third-party (easyprivacy.txt: 3906) +.quantserve.com +# ||quantserve.com/pixel/$object-subrequest,third-party (easyprivacy.txt: 3905) +.quantserve.com/pixel/ +# ||quantserve.com/api/ (easyprivacy.txt: 3904) +.quantserve.com/api/ +# ||qsstats.com^$third-party (easyprivacy.txt: 3903) +.qsstats.com +# ||qoijertneio.com^$third-party (easyprivacy.txt: 3902) +.qoijertneio.com +# ||qdtracking.com^$third-party (easyprivacy.txt: 3901) +.qdtracking.com +# ||qbop.com^$third-party (easyprivacy.txt: 3900) +.qbop.com +# ||qbaka.net^$third-party (easyprivacy.txt: 3899) +.qbaka.net +# ||q-stats.nl^$third-party (easyprivacy.txt: 3898) +.q-stats.nl +# ||q-counter.com^$third-party (easyprivacy.txt: 3897) +.q-counter.com +# ||pzkysq.pink^$third-party (easyprivacy.txt: 3896) +.pzkysq.pink +# ||putags.com^$third-party (easyprivacy.txt: 3895) +.putags.com +# ||purevideo.com^$third-party (easyprivacy.txt: 3894) +.purevideo.com +# ||pureairhits.com^$third-party (easyprivacy.txt: 3893) +.pureairhits.com +# ||pulsemaps.com^$third-party (easyprivacy.txt: 3892) +.pulsemaps.com +# ||pulselog.com^$third-party (easyprivacy.txt: 3891) +.pulselog.com +# ||pulleymarketing.com^$third-party (easyprivacy.txt: 3890) +.pulleymarketing.com +# ||publishflow.com^$third-party (easyprivacy.txt: 3889) +.publishflow.com +# ||ptrk-wn.com^$third-party (easyprivacy.txt: 3888) +.ptrk-wn.com +# ||ptp123.com^$third-party (easyprivacy.txt: 3887) +.ptp123.com +# ||pto-slb-09.com^$third-party (easyprivacy.txt: 3886) +.pto-slb-09.com +# ||ptengine.com^$third-party (easyprivacy.txt: 3885) +.ptengine.com +# ||psyma-statistics.com^$third-party (easyprivacy.txt: 3884) +.psyma-statistics.com +# ||pstats.com^$third-party (easyprivacy.txt: 3883) +.pstats.com +# ||prtracker.com^$third-party (easyprivacy.txt: 3882) +.prtracker.com +# ||proxad.net^$third-party (easyprivacy.txt: 3881) +.proxad.net +# ||provenpixel.com^$third-party (easyprivacy.txt: 3880) +.provenpixel.com +# ||proofpositivemedia.com^$third-party (easyprivacy.txt: 3879) +.proofpositivemedia.com +# ||promotionengine.com^$third-party (easyprivacy.txt: 3878) +.promotionengine.com +# ||projectsunblock.com^$third-party (easyprivacy.txt: 3877) +.projectsunblock.com +# ||projecthaile.com^$third-party (easyprivacy.txt: 3876) +.projecthaile.com +# ||profilesnitch.com^$third-party (easyprivacy.txt: 3875) +.profilesnitch.com +# ||profilertracking3.com^$third-party (easyprivacy.txt: 3874) +.profilertracking3.com +# ||proclivitysystems.com^$third-party (easyprivacy.txt: 3873) +.proclivitysystems.com +# ||prnx.net^$third-party (easyprivacy.txt: 3872) +.prnx.net +# ||primetag.net^$third-party (easyprivacy.txt: 3871) +.primetag.net +# ||prfct.co^$third-party (easyprivacy.txt: 3870) +.prfct.co +# ||predictiveresponse.net^$third-party (easyprivacy.txt: 3869) +.predictiveresponse.net +# ||predictivedna.com^$third-party (easyprivacy.txt: 3868) +.predictivedna.com +# ||predicta.net^$third-party (easyprivacy.txt: 3867) +.predicta.net +# ||precisioncounter.com^$third-party (easyprivacy.txt: 3866) +.precisioncounter.com +# ||prchecker.info^$third-party (easyprivacy.txt: 3865) +.prchecker.info +# ||ppctracking.net^$third-party (easyprivacy.txt: 3864) +.ppctracking.net +# ||ppclocation.biz^$third-party (easyprivacy.txt: 3863) +.ppclocation.biz +# ||postclickmarketing.com^$third-party (easyprivacy.txt: 3862) +.postclickmarketing.com +# ||postaffiliatepro.com^$third-party (easyprivacy.txt: 3861) +.postaffiliatepro.com +# ||posst.co^$third-party (easyprivacy.txt: 3860) +.posst.co +# ||porngraph.com^$third-party (easyprivacy.txt: 3859) +.porngraph.com +# ||populr.me^$third-party (easyprivacy.txt: 3858) +.populr.me +# ||popsample.com^$third-party (easyprivacy.txt: 3857) +.popsample.com +# ||polarmobile.com^$third-party (easyprivacy.txt: 3856) +.polarmobile.com +# ||pointomatic.com^$third-party (easyprivacy.txt: 3855) +.pointomatic.com +# ||pm14.com^$third-party (easyprivacy.txt: 3854) +.pm14.com +# ||pm0.net^$third-party (easyprivacy.txt: 3853) +.pm0.net +# ||plwosvr.net^$third-party (easyprivacy.txt: 3852) +.plwosvr.net +# ||plugin.ws^$third-party (easyprivacy.txt: 3851) +.plugin.ws +# ||plexop.com^$third-party (easyprivacy.txt: 3850) +.plexop.com +# ||pleisty.com^$third-party (easyprivacy.txt: 3849) +.pleisty.com +# ||plecki.com^$third-party (easyprivacy.txt: 3848) +.plecki.com +# ||placemypixel.com^$third-party (easyprivacy.txt: 3847) +.placemypixel.com +# ||pixelsnippet.com^$third-party (easyprivacy.txt: 3846) +.pixelsnippet.com +# ||pixelrevenue.com^$third-party (easyprivacy.txt: 3845) +.pixelrevenue.com +# ||pixelinteractivemedia.com^$third-party (easyprivacy.txt: 3844) +.pixelinteractivemedia.com +# ||pixeleze.com^$third-party (easyprivacy.txt: 3843) +.pixeleze.com +# ||pixel.watch^$third-party (easyprivacy.txt: 3842) +.pixel.watch +# ||pixel.parsely.com^$third-party (easyprivacy.txt: 3841) +.pixel.parsely.com +# ||pixel.ad^$third-party (easyprivacy.txt: 3840) +.pixel.ad +# ||pingomatic.com^$third-party (easyprivacy.txt: 3839) +.pingomatic.com +# ||pingil.com^$third-party (easyprivacy.txt: 3838) +.pingil.com +# ||pingdom.net^$third-party (easyprivacy.txt: 3837) +.pingdom.net +# ||pingagenow.com^$third-party (easyprivacy.txt: 3836) +.pingagenow.com +# ||ping-fast.com^$third-party (easyprivacy.txt: 3835) +.ping-fast.com +# ||pikzor.com^$third-party (easyprivacy.txt: 3834) +.pikzor.com +# ||pickzor.com^$third-party (easyprivacy.txt: 3833) +.pickzor.com +# ||phone-analytics.com^$third-party (easyprivacy.txt: 3832) +.phone-analytics.com +# ||phonalytics.com^$third-party (easyprivacy.txt: 3831) +.phonalytics.com +# ||petametrics.com^$third-party (easyprivacy.txt: 3830) +.petametrics.com +# ||personyze.com^$third-party (easyprivacy.txt: 3829) +.personyze.com +# ||perion.com^$third-party (easyprivacy.txt: 3828) +.perion.com +# ||performtracking.com^$third-party (easyprivacy.txt: 3827) +.performtracking.com +# ||performancerevenues.com^$third-party (easyprivacy.txt: 3826) +.performancerevenues.com +# ||perfiliate.com^$third-party (easyprivacy.txt: 3825) +.perfiliate.com +# ||perfectaudience.com^$third-party (easyprivacy.txt: 3824) +.perfectaudience.com +# ||perfdrive.com^$third-party (easyprivacy.txt: 3823) +.perfdrive.com +# ||percentmobile.com^$third-party (easyprivacy.txt: 3822) +.percentmobile.com +# ||peerius.com^$third-party (easyprivacy.txt: 3821) +.peerius.com +# ||pcspeedup.com^$third-party (easyprivacy.txt: 3820) +.pcspeedup.com +# ||pclicks.com^$third-party (easyprivacy.txt: 3819) +.pclicks.com +# ||pathful.com^$third-party (easyprivacy.txt: 3818) +.pathful.com +# ||pass-1234.com^$third-party (easyprivacy.txt: 3817) +.pass-1234.com +# ||parrable.com^$third-party (easyprivacy.txt: 3816) +.parrable.com +# ||parklogic.com^$third-party (easyprivacy.txt: 3815) +.parklogic.com +# ||pardot.com^$third-party (easyprivacy.txt: 3814) +.pardot.com +# ||paidstats.com^$third-party (easyprivacy.txt: 3813) +.paidstats.com +# ||pages05.net^$third-party (easyprivacy.txt: 3812) +.pages05.net +# ||pagefair.com^$third-party (easyprivacy.txt: 3811) +.pagefair.com +# ||pa-oa.com^$third-party (easyprivacy.txt: 3810) +.pa-oa.com +# ||p0.raasnet.com^$third-party (easyprivacy.txt: 3809) +.p0.raasnet.com +# ||p.raasnet.com^$third-party (easyprivacy.txt: 3808) +.p.raasnet.com +# ||p.l1v.ly^$third-party (easyprivacy.txt: 3807) +.p.l1v.ly +# ||p-td.com^$third-party (easyprivacy.txt: 3806) +.p-td.com +# ||oxidy.com^$third-party (easyprivacy.txt: 3805) +.oxidy.com +# ||overstat.com^$third-party (easyprivacy.txt: 3804) +.overstat.com +# ||outboundlink.me^$third-party (easyprivacy.txt: 3803) +.outboundlink.me +# ||ournet-analytics.com^$third-party (easyprivacy.txt: 3802) +.ournet-analytics.com +# ||otracking.com^$third-party (easyprivacy.txt: 3801) +.otracking.com +# ||otoshiana.com^$third-party (easyprivacy.txt: 3800) +.otoshiana.com +# ||ospserver.net^$third-party (easyprivacy.txt: 3799) +.ospserver.net +# ||orcapia.com^$third-party (easyprivacy.txt: 3798) +.orcapia.com +# ||oranges88.com^$third-party (easyprivacy.txt: 3797) +.oranges88.com +# ||optreadetrus.info^$third-party (easyprivacy.txt: 3796) +.optreadetrus.info +# ||optorb.com^$third-party (easyprivacy.txt: 3795) +.optorb.com +# ||optin-machine.com^$third-party (easyprivacy.txt: 3794) +.optin-machine.com +# ||optimost.com^$third-party (easyprivacy.txt: 3793) +.optimost.com +# ||optimizely.com^$third-party (easyprivacy.txt: 3792) +.optimizely.com +# ||optimix.asia^$third-party (easyprivacy.txt: 3791) +.optimix.asia +# ||optimahub.com^$third-party (easyprivacy.txt: 3790) +.optimahub.com +# ||optify.net^$third-party (easyprivacy.txt: 3789) +.optify.net +# ||oproi.com^$third-party (easyprivacy.txt: 3788) +.oproi.com +# ||openxtracker.com^$third-party (easyprivacy.txt: 3787) +.openxtracker.com +# ||openvenue.com^$third-party (easyprivacy.txt: 3786) +.openvenue.com +# ||opentracker.net^$third-party (easyprivacy.txt: 3785) +.opentracker.net +# ||openhit.com^$third-party (easyprivacy.txt: 3784) +.openhit.com +# ||openclick.com^$third-party (easyprivacy.txt: 3783) +.openclick.com +# ||opbandit.com^$third-party (easyprivacy.txt: 3782) +.opbandit.com +# ||onlysix.co.uk^$third-party (easyprivacy.txt: 3781) +.onlysix.co.uk +# ||online-right-now.net^$third-party (easyprivacy.txt: 3780) +.online-right-now.net +# ||online-metrix.net^$third-party (easyprivacy.txt: 3779) +.online-metrix.net +# ||online-media-stats.com^$third-party (easyprivacy.txt: 3778) +.online-media-stats.com +# ||ongsono.com^$third-party (easyprivacy.txt: 3777) +.ongsono.com +# ||onetag-sys.com^$third-party (easyprivacy.txt: 3776) +.onetag-sys.com +# ||onestat.com^$third-party (easyprivacy.txt: 3775) +.onestat.com +# ||onelink-translations.com^$third-party (easyprivacy.txt: 3774) +.onelink-translations.com +# ||onefeed.co.uk^$third-party (easyprivacy.txt: 3773) +.onefeed.co.uk +# ||omtrdc.net^$third-party (easyprivacy.txt: 3772) +.omtrdc.net +# ||omnitagjs.com^$third-party (easyprivacy.txt: 3771) +.omnitagjs.com +# ||omkt.co^$third-party (easyprivacy.txt: 3770) +.omkt.co +# ||omguk.com^$third-party (easyprivacy.txt: 3769) +.omguk.com +# ||omgpm.com^$third-party (easyprivacy.txt: 3768) +.omgpm.com +# ||ometria.com^$third-party (easyprivacy.txt: 3767) +.ometria.com +# ||omeda.com^$third-party (easyprivacy.txt: 3766) +.omeda.com +# ||ojrq.net^$third-party (easyprivacy.txt: 3765) +.ojrq.net +# ||oidah.com^$third-party (easyprivacy.txt: 3764) +.oidah.com +# ||ohmystats.com^$third-party (easyprivacy.txt: 3763) +.ohmystats.com +# ||ogt.jp^$third-party (easyprivacy.txt: 3762) +.ogt.jp +# ||offerstrategy.com^$third-party (easyprivacy.txt: 3761) +.offerstrategy.com +# ||offerpoint.net^$third-party (easyprivacy.txt: 3760) +.offerpoint.net +# ||offermatica.com^$third-party (easyprivacy.txt: 3759) +.offermatica.com +# ||odoscope.com^$third-party (easyprivacy.txt: 3758) +.odoscope.com +# ||odesaconflate.com^$third-party (easyprivacy.txt: 3757) +.odesaconflate.com +# ||od.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 3756) +.od.visiblemeasures.com +# ||observerapp.com^$third-party (easyprivacy.txt: 3755) +.observerapp.com +# ||nytlog.com^$third-party (easyprivacy.txt: 3754) +.nytlog.com +# ||numerino.cz^$third-party (easyprivacy.txt: 3753) +.numerino.cz +# ||nuggad.net^$third-party (easyprivacy.txt: 3752) +.nuggad.net +# ||nudatasecurity.com^$third-party (easyprivacy.txt: 3751) +.nudatasecurity.com +# ||nuconomy.com^$third-party (easyprivacy.txt: 3750) +.nuconomy.com +# ||nstracking.com^$third-party (easyprivacy.txt: 3749) +.nstracking.com +# ||ns1p.net^$third-party (easyprivacy.txt: 3748) +.ns1p.net +# ||nr7.us^$third-party (easyprivacy.txt: 3747) +.nr7.us +# ||nr-data.net^$third-party (easyprivacy.txt: 3746) +.nr-data.net +# ||nprove.com^$third-party (easyprivacy.txt: 3745) +.nprove.com +# ||npario-inc.net^$third-party (easyprivacy.txt: 3744) +.npario-inc.net +# ||nowinteract.com^$third-party (easyprivacy.txt: 3743) +.nowinteract.com +# ||nordicresearch.com^$third-party (easyprivacy.txt: 3742) +.nordicresearch.com +# ||noowho.com^$third-party (easyprivacy.txt: 3741) +.noowho.com +# ||nik.io^$third-party (easyprivacy.txt: 3740) +.nik.io +# ||niftymaps.com^$third-party (easyprivacy.txt: 3739) +.niftymaps.com +# ||nicewii.com^$third-party (easyprivacy.txt: 3738) +.nicewii.com +# ||ngmco.net^$third-party (easyprivacy.txt: 3737) +.ngmco.net +# ||nextstat.com^$third-party (easyprivacy.txt: 3736) +.nextstat.com +# ||nexeps.com^$third-party (easyprivacy.txt: 3735) +.nexeps.com +# ||newtrackmedia.com^$third-party (easyprivacy.txt: 3734) +.newtrackmedia.com +# ||newstatscounter.info^$third-party (easyprivacy.txt: 3733) +.newstatscounter.info +# ||newscurve.com^$third-party (easyprivacy.txt: 3732) +.newscurve.com +# ||newrelic.com^$third-party (easyprivacy.txt: 3731) +.newrelic.com +# ||newpoints.info^$third-party (easyprivacy.txt: 3730) +.newpoints.info +# ||netratings.com^$third-party (easyprivacy.txt: 3729) +.netratings.com +# ||netmng.com^$third-party (easyprivacy.txt: 3728) +.netmng.com +# ||netmining.com^$third-party (easyprivacy.txt: 3727) +.netmining.com +# ||netgraviton.net^$third-party (easyprivacy.txt: 3726) +.netgraviton.net +# ||netflame.cc^$third-party (easyprivacy.txt: 3725) +.netflame.cc +# ||netclickstats.com^$third-party (easyprivacy.txt: 3724) +.netclickstats.com +# ||netapplications.com^$third-party (easyprivacy.txt: 3723) +.netapplications.com +# ||netaffiliation.com^$script,third-party (easyprivacy.txt: 3722) +.netaffiliation.com +# ||net-filter.com^$third-party (easyprivacy.txt: 3721) +.net-filter.com +# ||nestedmedia.com^$third-party (easyprivacy.txt: 3720) +.nestedmedia.com +# ||neon-lab.com^$third-party (easyprivacy.txt: 3719) +.neon-lab.com +# ||neki.org^$third-party (easyprivacy.txt: 3718) +.neki.org +# ||nedstatpro.net^$third-party (easyprivacy.txt: 3717) +.nedstatpro.net +# ||nedstatbasic.net^$third-party (easyprivacy.txt: 3716) +.nedstatbasic.net +# ||nedstat.net^$third-party (easyprivacy.txt: 3715) +.nedstat.net +# ||nedstat.com^$third-party (easyprivacy.txt: 3714) +.nedstat.com +# ||neatstats.com^$third-party (easyprivacy.txt: 3713) +.neatstats.com +# ||naytev.com^$third-party (easyprivacy.txt: 3712) +.naytev.com +# ||navegg.com^$third-party (easyprivacy.txt: 3711) +.navegg.com +# ||navdmp.com^$third-party (easyprivacy.txt: 3710) +.navdmp.com +# ||naturaltracking.com^$third-party (easyprivacy.txt: 3709) +.naturaltracking.com +# ||natpal.com^$third-party (easyprivacy.txt: 3708) +.natpal.com +# ||nalook.com^$third-party (easyprivacy.txt: 3707) +.nalook.com +# ||nakanohito.jp^$third-party (easyprivacy.txt: 3706) +.nakanohito.jp +# ||naj.sk^$third-party (easyprivacy.txt: 3705) +.naj.sk +# ||naayna.com^$third-party (easyprivacy.txt: 3704) +.naayna.com +# ||mywebstats.org^$third-party (easyprivacy.txt: 3703) +.mywebstats.org +# ||mywebstats.com.au^$third-party (easyprivacy.txt: 3702) +.mywebstats.com.au +# ||myusersonline.com^$third-party (easyprivacy.txt: 3701) +.myusersonline.com +# ||mytictac.com^$third-party (easyprivacy.txt: 3700) +.mytictac.com +# ||mysitetraffic.net^$third-party (easyprivacy.txt: 3699) +.mysitetraffic.net +# ||myseostats.com^$third-party (easyprivacy.txt: 3698) +.myseostats.com +# ||myroitracking.com^$third-party (easyprivacy.txt: 3697) +.myroitracking.com +# ||myreferer.com^$third-party (easyprivacy.txt: 3696) +.myreferer.com +# ||mypagerank.net^$third-party (easyprivacy.txt: 3695) +.mypagerank.net +# ||myomnistar.com^$third-party (easyprivacy.txt: 3694) +.myomnistar.com +# ||myntelligence.com^$third-party (easyprivacy.txt: 3693) +.myntelligence.com +# ||mynewcounter.com^$third-party (easyprivacy.txt: 3692) +.mynewcounter.com +# ||myfastcounter.com^$third-party (easyprivacy.txt: 3691) +.myfastcounter.com +# ||mybloglog.com^$third-party (easyprivacy.txt: 3690) +.mybloglog.com +# ||myaffiliateprogram.com^$third-party (easyprivacy.txt: 3689) +.myaffiliateprogram.com +# ||mxptint.net^$third-party (easyprivacy.txt: 3688) +.mxptint.net +# ||mxpnl.com^$third-party (easyprivacy.txt: 3687) +.mxpnl.com +# ||mxcdn.net^$third-party (easyprivacy.txt: 3686) +.mxcdn.net +# ||mvtracker.com^$third-party (easyprivacy.txt: 3685) +.mvtracker.com +# ||mvilivestats.com^$third-party (easyprivacy.txt: 3684) +.mvilivestats.com +# ||mucocutaneousmyrmecophaga.com^$third-party (easyprivacy.txt: 3683) +.mucocutaneousmyrmecophaga.com +# ||mtrics.cdc.gov^$third-party (easyprivacy.txt: 3682) +.mtrics.cdc.gov +# ||mtracking.com^$third-party (easyprivacy.txt: 3681) +.mtracking.com +# ||mstracker.net^$third-party (easyprivacy.txt: 3680) +.mstracker.net +# ||msgtag.com^$third-party (easyprivacy.txt: 3679) +.msgtag.com +# ||msgapp.com^$third-party (easyprivacy.txt: 3678) +.msgapp.com +# ||mpstat.us^$third-party (easyprivacy.txt: 3677) +.mpstat.us +# ||mplxtms.com^$third-party (easyprivacy.txt: 3676) +.mplxtms.com +# ||movable-ink-6710.com^$third-party (easyprivacy.txt: 3675) +.movable-ink-6710.com +# ||mousetrace.com^$third-party (easyprivacy.txt: 3674) +.mousetrace.com +# ||mousestats.com^$third-party (easyprivacy.txt: 3673) +.mousestats.com +# ||mouseflow.com^$third-party (easyprivacy.txt: 3672) +.mouseflow.com +# ||motrixi.com^$third-party (easyprivacy.txt: 3671) +.motrixi.com +# ||monitus.net^$third-party (easyprivacy.txt: 3670) +.monitus.net +# ||monitis.com^$third-party (easyprivacy.txt: 3669) +.monitis.com +# ||mongoosemetrics.com^$third-party (easyprivacy.txt: 3668) +.mongoosemetrics.com +# ||monetate.net^$third-party (easyprivacy.txt: 3667) +.monetate.net +# ||mochibot.com^$third-party (easyprivacy.txt: 3666) +.mochibot.com +# ||mobalyzer.net^$third-party (easyprivacy.txt: 3665) +.mobalyzer.net +# ||mmi-agency.com^$third-party (easyprivacy.txt: 3664) +.mmi-agency.com +# ||mmetrix.mobi^$third-party (easyprivacy.txt: 3663) +.mmetrix.mobi +# ||mm7.net^$third-party (easyprivacy.txt: 3662) +.mm7.net +# ||mlstat.com^$third-party (easyprivacy.txt: 3661) +.mlstat.com +# ||mlno6.com^$third-party (easyprivacy.txt: 3660) +.mlno6.com +# ||mletracker.com^$third-party (easyprivacy.txt: 3659) +.mletracker.com +# ||mlclick.com^$third-party (easyprivacy.txt: 3658) +.mlclick.com +# ||ml314.com^$third-party (easyprivacy.txt: 3657) +.ml314.com +# ||mktoresp.com^$third-party (easyprivacy.txt: 3656) +.mktoresp.com +# ||mkt941.com^$third-party (easyprivacy.txt: 3655) +.mkt941.com +# ||mkt51.net^$third-party (easyprivacy.txt: 3654) +.mkt51.net +# ||mkt3261.com^$third-party (easyprivacy.txt: 3653) +.mkt3261.com +# ||mixpanel.com^$third-party (easyprivacy.txt: 3652) +.mixpanel.com +# ||minewhat.com^$third-party (easyprivacy.txt: 3651) +.minewhat.com +# ||millioncounter.com^$third-party (easyprivacy.txt: 3650) +.millioncounter.com +# ||midkotatraffic.net^$third-party (easyprivacy.txt: 3649) +.midkotatraffic.net +# ||midas-i.com^$third-party (easyprivacy.txt: 3648) +.midas-i.com +# ||mialbj6.com^$third-party (easyprivacy.txt: 3647) +.mialbj6.com +# ||mezzobit.com^$third-party (easyprivacy.txt: 3646) +.mezzobit.com +# ||metricsdirect.com^$third-party (easyprivacy.txt: 3645) +.metricsdirect.com +# ||meteorsolutions.com^$third-party (easyprivacy.txt: 3644) +.meteorsolutions.com +# ||metakeyproducer.com^$third-party (easyprivacy.txt: 3643) +.metakeyproducer.com +# ||mercent.com^$third-party (easyprivacy.txt: 3642) +.mercent.com +# ||mercadoclics.com^$third-party (easyprivacy.txt: 3641) +.mercadoclics.com +# ||memecounter.com^$third-party (easyprivacy.txt: 3640) +.memecounter.com +# ||mega-stats.com^$third-party (easyprivacy.txt: 3639) +.mega-stats.com +# ||mediaseeding.com^$third-party (easyprivacy.txt: 3638) +.mediaseeding.com +# ||mediaplex.com^$third-party (easyprivacy.txt: 3637) +.mediaplex.com +# ||mediagauge.com^$third-party (easyprivacy.txt: 3636) +.mediagauge.com +# ||mediaforgews.com^$third-party (easyprivacy.txt: 3635) +.mediaforgews.com +# ||mediaarmor.com^$third-party (easyprivacy.txt: 3634) +.mediaarmor.com +# ||measuremap.com^$third-party (easyprivacy.txt: 3633) +.measuremap.com +# ||measure.ly^$third-party (easyprivacy.txt: 3632) +.measure.ly +# ||mdotlabs.com^$third-party (easyprivacy.txt: 3631) +.mdotlabs.com +# ||md-ia.info^$third-party (easyprivacy.txt: 3630) +.md-ia.info +# ||mbww.com^$third-party (easyprivacy.txt: 3629) +.mbww.com +# ||mbsy.co^$third-party (easyprivacy.txt: 3628) +.mbsy.co +# ||mbotvisit.com^$third-party (easyprivacy.txt: 3627) +.mbotvisit.com +# ||mb4a.com^$third-party (easyprivacy.txt: 3626) +.mb4a.com +# ||maxymiser.net^$third-party (easyprivacy.txt: 3625) +.maxymiser.net +# ||maxymiser.com^$third-party (easyprivacy.txt: 3624) +.maxymiser.com +# ||maxtracker.net^$third-party (easyprivacy.txt: 3623) +.maxtracker.net +# ||mathtag.com^$third-party (easyprivacy.txt: 3622) +.mathtag.com +# ||matheranalytics.com^$third-party (easyprivacy.txt: 3621) +.matheranalytics.com +# ||masterstats.com^$third-party (easyprivacy.txt: 3620) +.masterstats.com +# ||martianstats.com^$third-party (easyprivacy.txt: 3619) +.martianstats.com +# ||marketo.net^$third-party (easyprivacy.txt: 3618) +.marketo.net +# ||marketizator.com^$third-party (easyprivacy.txt: 3617) +.marketizator.com +# ||market2lead.com^$third-party (easyprivacy.txt: 3616) +.market2lead.com +# ||market015.com^$third-party (easyprivacy.txt: 3615) +.market015.com +# ||marinsm.com^$third-party (easyprivacy.txt: 3614) +.marinsm.com +# ||mapmyuser.com^$third-party (easyprivacy.txt: 3613) +.mapmyuser.com +# ||maploco.com^$third-party (easyprivacy.txt: 3612) +.maploco.com +# ||mailstat.us^$third-party (easyprivacy.txt: 3611) +.mailstat.us +# ||magnify360.com^$third-party (easyprivacy.txt: 3610) +.magnify360.com +# ||magnetmail1.net^$third-party (easyprivacy.txt: 3609) +.magnetmail1.net +# ||magiq.com^$third-party (easyprivacy.txt: 3608) +.magiq.com +# ||lytiks.com^$third-party (easyprivacy.txt: 3607) +.lytiks.com +# ||lytics.io^$third-party (easyprivacy.txt: 3606) +.lytics.io +# ||lypn.net^$third-party (easyprivacy.txt: 3605) +.lypn.net +# ||lypn.com^$third-party (easyprivacy.txt: 3604) +.lypn.com +# ||lymantriacypresdoctrine.biz^$third-party (easyprivacy.txt: 3603) +.lymantriacypresdoctrine.biz +# ||lxtrack.com^$third-party (easyprivacy.txt: 3602) +.lxtrack.com +# ||luminate.com^$third-party (easyprivacy.txt: 3601) +.luminate.com +# ||lumatag.co.uk^$third-party (easyprivacy.txt: 3600) +.lumatag.co.uk +# ||luckyorange.com^$third-party (easyprivacy.txt: 3599) +.luckyorange.com +# ||lucidel.com^$third-party (easyprivacy.txt: 3598) +.lucidel.com +# ||lsfinteractive.com^$third-party (easyprivacy.txt: 3597) +.lsfinteractive.com +# ||lporirxe.com^$third-party (easyprivacy.txt: 3596) +.lporirxe.com +# ||lpbeta.com^$third-party (easyprivacy.txt: 3595) +.lpbeta.com +# ||lp4.io^$third-party (easyprivacy.txt: 3594) +.lp4.io +# ||losstrack.com^$third-party (easyprivacy.txt: 3593) +.losstrack.com +# ||lopley.com^$third-party (easyprivacy.txt: 3592) +.lopley.com +# ||loopfuse.net^$third-party (easyprivacy.txt: 3591) +.loopfuse.net +# ||lookery.com^$third-party (easyprivacy.txt: 3590) +.lookery.com +# ||lognormal.net^$third-party (easyprivacy.txt: 3589) +.lognormal.net +# ||loggly.com^$third-party (easyprivacy.txt: 3588) +.loggly.com +# ||logentries.com^$third-party (easyprivacy.txt: 3587) +.logentries.com +# ||logdy.com^$third-party (easyprivacy.txt: 3586) +.logdy.com +# ||logcounter.com^$third-party (easyprivacy.txt: 3585) +.logcounter.com +# ||logaholic.com^$third-party (easyprivacy.txt: 3584) +.logaholic.com +# ||lockview.cn^$third-party (easyprivacy.txt: 3583) +.lockview.cn +# ||localytics.com^$third-party (easyprivacy.txt: 3582) +.localytics.com +# ||lloogg.com^$third-party (easyprivacy.txt: 3581) +.lloogg.com +# ||livestat.com^$third-party (easyprivacy.txt: 3580) +.livestat.com +# ||livehit.net^$third-party (easyprivacy.txt: 3579) +.livehit.net +# ||livecount.fr^$third-party (easyprivacy.txt: 3578) +.livecount.fr +# ||listrakbi.com^$third-party (easyprivacy.txt: 3577) +.listrakbi.com +# ||linkxchanger.com^$third-party (easyprivacy.txt: 3576) +.linkxchanger.com +# ||linkpulse.com^$third-party (easyprivacy.txt: 3575) +.linkpulse.com +# ||link-smart.com^$third-party (easyprivacy.txt: 3574) +.link-smart.com +# ||linezing.com^$third-party (easyprivacy.txt: 3573) +.linezing.com +# ||lijit.com^$third-party (easyprivacy.txt: 3572) +.lijit.com +# ||liadm.com^$third-party (easyprivacy.txt: 3571) +.liadm.com +# ||lfov.net^$third-party (easyprivacy.txt: 3570) +.lfov.net +# ||lexity.com^$third-party (easyprivacy.txt: 3569) +.lexity.com +# ||levexis.com^$third-party (easyprivacy.txt: 3568) +.levexis.com +# ||letterboxtrail.com^$third-party (easyprivacy.txt: 3567) +.letterboxtrail.com +# ||les-experts.com^$third-party (easyprivacy.txt: 3566) +.les-experts.com +# ||legolas-media.com^$third-party (easyprivacy.txt: 3565) +.legolas-media.com +# ||leadsius.com^$third-party (easyprivacy.txt: 3564) +.leadsius.com +# ||leadmanagerfx.com^$third-party (easyprivacy.txt: 3563) +.leadmanagerfx.com +# ||leadlife.com^$third-party (easyprivacy.txt: 3562) +.leadlife.com +# ||leadintelligence.co.uk^$third-party (easyprivacy.txt: 3561) +.leadintelligence.co.uk +# ||leadid.com^$third-party (easyprivacy.txt: 3560) +.leadid.com +# ||leadformix.com^$third-party (easyprivacy.txt: 3559) +.leadformix.com +# ||leadforensics.com^$third-party (easyprivacy.txt: 3558) +.leadforensics.com +# ||leadforce1.com^$third-party (easyprivacy.txt: 3557) +.leadforce1.com +# ||lead-tracking.biz^$third-party (easyprivacy.txt: 3556) +.lead-tracking.biz +# ||lead-converter.com^$third-party (easyprivacy.txt: 3555) +.lead-converter.com +# ||lead-123.com^$third-party (easyprivacy.txt: 3554) +.lead-123.com +# ||landingpg.com^$third-party (easyprivacy.txt: 3553) +.landingpg.com +# ||l2.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 3552) +.l2.visiblemeasures.com +# ||ksyrium0014.com^$third-party (easyprivacy.txt: 3551) +.ksyrium0014.com +# ||krxd.net^$third-party (easyprivacy.txt: 3550) +.krxd.net +# ||kopsil.com^$third-party (easyprivacy.txt: 3549) +.kopsil.com +# ||kontagent.net^$third-party (easyprivacy.txt: 3548) +.kontagent.net +# ||komtrack.com^$third-party (easyprivacy.txt: 3547) +.komtrack.com +# ||knowledgevine.net^$third-party (easyprivacy.txt: 3546) +.knowledgevine.net +# ||klldabck.com^$third-party (easyprivacy.txt: 3545) +.klldabck.com +# ||klert.com^$third-party (easyprivacy.txt: 3544) +.klert.com +# ||kitcode.net^$third-party (easyprivacy.txt: 3543) +.kitcode.net +# ||kitbit.net^$third-party (easyprivacy.txt: 3542) +.kitbit.net +# ||kisstesting.com^$third-party (easyprivacy.txt: 3541) +.kisstesting.com +# ||kissmetrics.com^$third-party (easyprivacy.txt: 3540) +.kissmetrics.com +# ||killerwebstats.com^$third-party (easyprivacy.txt: 3539) +.killerwebstats.com +# ||kieden.com^$third-party (easyprivacy.txt: 3538) +.kieden.com +# ||keywordstrategy.org^$third-party (easyprivacy.txt: 3537) +.keywordstrategy.org +# ||keywordmax.com^$third-party (easyprivacy.txt: 3536) +.keywordmax.com +# ||keymetric.net^$third-party (easyprivacy.txt: 3535) +.keymetric.net +# ||keyade.com^$third-party (easyprivacy.txt: 3534) +.keyade.com +# ||kampyle.com^$third-party (easyprivacy.txt: 3532) +.kampyle.com +# ||jwmstats.com^$third-party (easyprivacy.txt: 3531) +.jwmstats.com +# ||justuno.com^$third-party (easyprivacy.txt: 3530) +.justuno.com +# ||jumptime.com^$third-party (easyprivacy.txt: 3529) +.jumptime.com +# ||jump-time.net^$third-party (easyprivacy.txt: 3528) +.jump-time.net +# ||jstracker.com^$third-party (easyprivacy.txt: 3527) +.jstracker.com +# ||jsonip.com^$third-party (easyprivacy.txt: 3526) +.jsonip.com +# ||jsid.info^$third-party (easyprivacy.txt: 3525) +.jsid.info +# ||jscounter.com^$third-party (easyprivacy.txt: 3524) +.jscounter.com +# ||jirafe.com^$third-party (easyprivacy.txt: 3523) +.jirafe.com +# ||jimdo-stats.com^$third-party (easyprivacy.txt: 3522) +.jimdo-stats.com +# ||izearanks.com^$third-party (easyprivacy.txt: 3521) +.izearanks.com +# ||izea.com^$third-party (easyprivacy.txt: 3520) +.izea.com +# ||ixiaa.com^$third-party (easyprivacy.txt: 3519) +.ixiaa.com +# ||iwebtrack.com^$third-party (easyprivacy.txt: 3518) +.iwebtrack.com +# ||ivcbrasil.org.br^$third-party (easyprivacy.txt: 3517) +.ivcbrasil.org.br +# ||itrackerpro.com^$third-party (easyprivacy.txt: 3516) +.itrackerpro.com +# ||istrack.com^$third-party (easyprivacy.txt: 3515) +.istrack.com +# ||ist-track.com^$third-party (easyprivacy.txt: 3514) +.ist-track.com +# ||irelandmetrix.ie^$third-party (easyprivacy.txt: 3513) +.irelandmetrix.ie +# ||iraiser.eu^$third-party (easyprivacy.txt: 3512) +.iraiser.eu +# ||iqfp1.com^$third-party (easyprivacy.txt: 3511) +.iqfp1.com +# ||ipv6monitoring.eu^$third-party (easyprivacy.txt: 3510) +.ipv6monitoring.eu +# ||ipstat.com^$third-party (easyprivacy.txt: 3509) +.ipstat.com +# ||ipro.com^$third-party (easyprivacy.txt: 3508) +.ipro.com +# ||iplocationtools.com^$third-party (easyprivacy.txt: 3507) +.iplocationtools.com +# ||ipinyou.com.cn^$third-party (easyprivacy.txt: 3506) +.ipinyou.com.cn +# ||ipinfodb.com^$third-party (easyprivacy.txt: 3505) +.ipinfodb.com +# ||ipinfo.io^$third-party (easyprivacy.txt: 3504) +.ipinfo.io +# ||ipinfo.info^$third-party (easyprivacy.txt: 3503) +.ipinfo.info +# ||ipfingerprint.com^$third-party (easyprivacy.txt: 3502) +.ipfingerprint.com +# ||iperceptions.com^$third-party (easyprivacy.txt: 3501) +.iperceptions.com +# ||ipcounter.de^$third-party (easyprivacy.txt: 3500) +.ipcounter.de +# ||ipcatch.com^$third-party (easyprivacy.txt: 3499) +.ipcatch.com +# ||ipaddresslabs.com^$third-party (easyprivacy.txt: 3498) +.ipaddresslabs.com +# ||ip2phrase.com^$third-party (easyprivacy.txt: 3497) +.ip2phrase.com +# ||ip2map.com^$third-party (easyprivacy.txt: 3496) +.ip2map.com +# ||ip2location.com^$third-party (easyprivacy.txt: 3495) +.ip2location.com +# ||ip-label.net^$third-party (easyprivacy.txt: 3494) +.ip-label.net +# ||ip-api.com^$third-party (easyprivacy.txt: 3493) +.ip-api.com +# ||invoc.us^$third-party (easyprivacy.txt: 3492) +.invoc.us +# ||invitemedia.com^$third-party (easyprivacy.txt: 3491) +.invitemedia.com +# ||intervigil.com^$third-party (easyprivacy.txt: 3490) +.intervigil.com +# ||intermundomedia.com^$third-party (easyprivacy.txt: 3489) +.intermundomedia.com +# ||interceptum.com^$third-party (easyprivacy.txt: 3488) +.interceptum.com +# ||intelligencefocus.com^$third-party (easyprivacy.txt: 3487) +.intelligencefocus.com +# ||intelli-tracker.com^$third-party (easyprivacy.txt: 3486) +.intelli-tracker.com +# ||intelli-direct.com^$third-party (easyprivacy.txt: 3485) +.intelli-direct.com +# ||intelimet.com^$third-party (easyprivacy.txt: 3484) +.intelimet.com +# ||intelevance.com^$third-party (easyprivacy.txt: 3483) +.intelevance.com +# ||instore.biz^$third-party (easyprivacy.txt: 3482) +.instore.biz +# ||instadia.net^$third-party (easyprivacy.txt: 3481) +.instadia.net +# ||inspectlet.com^$third-party (easyprivacy.txt: 3480) +.inspectlet.com +# ||insitemetrics.com^$third-party (easyprivacy.txt: 3479) +.insitemetrics.com +# ||insigit.com^$third-party (easyprivacy.txt: 3478) +.insigit.com +# ||insightgrit.com^$third-party (easyprivacy.txt: 3477) +.insightgrit.com +# ||insightera.com^$third-party (easyprivacy.txt: 3476) +.insightera.com +# ||inside-graph.com^$third-party (easyprivacy.txt: 3475) +.inside-graph.com +# ||inpwrd.com^$third-party (easyprivacy.txt: 3474) +.inpwrd.com +# ||inphonic.com^$third-party (easyprivacy.txt: 3473) +.inphonic.com +# ||innovateads.com^$third-party (easyprivacy.txt: 3472) +.innovateads.com +# ||inimbus.com.au^$third-party (easyprivacy.txt: 3471) +.inimbus.com.au +# ||influid.co^$third-party (easyprivacy.txt: 3470) +.influid.co +# ||inflectionpointmedia.com^$third-party (easyprivacy.txt: 3469) +.inflectionpointmedia.com +# ||infinity-tracking.net^$third-party (easyprivacy.txt: 3468) +.infinity-tracking.net +# ||infinigraph.com^$third-party (easyprivacy.txt: 3467) +.infinigraph.com +# ||inferclick.com^$third-party (easyprivacy.txt: 3466) +.inferclick.com +# ||ineedhits.com^$third-party (easyprivacy.txt: 3465) +.ineedhits.com +# ||individuad.net^$third-party (easyprivacy.txt: 3464) +.individuad.net +# ||indicia.com^$third-party (easyprivacy.txt: 3463) +.indicia.com +# ||indextools.com^$third-party (easyprivacy.txt: 3462) +.indextools.com +# ||indexstats.com^$third-party (easyprivacy.txt: 3461) +.indexstats.com +# ||incentivesnetwork.net^$third-party (easyprivacy.txt: 3460) +.incentivesnetwork.net +# ||inboxtag.com^$third-party (easyprivacy.txt: 3459) +.inboxtag.com +# ||imrworldwide.com^$third-party (easyprivacy.txt: 3458) +.imrworldwide.com +# ||imrtrack.com^$third-party (easyprivacy.txt: 3457) +.imrtrack.com +# ||impcounter.com^$third-party (easyprivacy.txt: 3456) +.impcounter.com +# ||immanalytics.com^$third-party (easyprivacy.txt: 3455) +.immanalytics.com +# ||imanginatium.com^$third-party (easyprivacy.txt: 3454) +.imanginatium.com +# ||ilogbox.com^$third-party (easyprivacy.txt: 3453) +.ilogbox.com +# ||illumenix.com^$third-party (easyprivacy.txt: 3452) +.illumenix.com +# ||iljmp.com^$third-party (easyprivacy.txt: 3451) +.iljmp.com +# ||ijncw.tv^$third-party (easyprivacy.txt: 3450) +.ijncw.tv +# ||igaming.biz^$third-party (easyprivacy.txt: 3449) +.igaming.biz +# ||ifactz.com^$third-party (easyprivacy.txt: 3448) +.ifactz.com +# ||iesnare.com^$third-party (easyprivacy.txt: 3447) +.iesnare.com +# ||idtargeting.com^$third-party (easyprivacy.txt: 3446) +.idtargeting.com +# ||idio.co^$third-party (easyprivacy.txt: 3445) +.idio.co +# ||ideoclick.com^$third-party (easyprivacy.txt: 3444) +.ideoclick.com +# ||icstats.nl^$third-party (easyprivacy.txt: 3443) +.icstats.nl +# ||ics0.com^$third-party (easyprivacy.txt: 3442) +.ics0.com +# ||iclive.com^$third-party (easyprivacy.txt: 3441) +.iclive.com +# ||ic-live.com^$third-party (easyprivacy.txt: 3440) +.ic-live.com +# ||ibpxl.net^$third-party (easyprivacy.txt: 3439) +.ibpxl.net +# ||ibpxl.com^$third-party (easyprivacy.txt: 3438) +.ibpxl.com +# ||ib-ibi.com^$third-party (easyprivacy.txt: 3437) +.ib-ibi.com +# ||i-stats.com^$third-party (easyprivacy.txt: 3436) +.i-stats.com +# ||hypestat.com^$third-party (easyprivacy.txt: 3435) +.hypestat.com +# ||hyperactivate.com^$third-party (easyprivacy.txt: 3434) +.hyperactivate.com +# ||hyfntrak.com^$third-party (easyprivacy.txt: 3433) +.hyfntrak.com +# ||hxtrack.com^$third-party (easyprivacy.txt: 3432) +.hxtrack.com +# ||hwpub.com^$third-party (easyprivacy.txt: 3431) +.hwpub.com +# ||hurterkranach.net^$third-party (easyprivacy.txt: 3430) +.hurterkranach.net +# ||hurra.com^$third-party (easyprivacy.txt: 3429) +.hurra.com +# ||hunt-leads.com^$third-party (easyprivacy.txt: 3428) +.hunt-leads.com +# ||humanclick.com^$third-party (easyprivacy.txt: 3427) +.humanclick.com +# ||hscta.net^$third-party (easyprivacy.txt: 3426) +.hscta.net +# ||hs-analytics.net^$third-party (easyprivacy.txt: 3425) +.hs-analytics.net +# ||hqhrt.com^$third-party (easyprivacy.txt: 3424) +.hqhrt.com +# ||hotjar.com^$third-party (easyprivacy.txt: 3423) +.hotjar.com +# ||hoststats.info^$third-party (easyprivacy.txt: 3422) +.hoststats.info +# ||hostip.info^$third-party (easyprivacy.txt: 3421) +.hostip.info +# ||host-tracker.com^$third-party (easyprivacy.txt: 3420) +.host-tracker.com +# ||hopurl.org^$third-party (easyprivacy.txt: 3419) +.hopurl.org +# ||homechader.com^$third-party (easyprivacy.txt: 3418) +.homechader.com +# ||hlserve.com^$third-party (easyprivacy.txt: 3417) +.hlserve.com +# ||hitwebcounter.com^$third-party (easyprivacy.txt: 3416) +.hitwebcounter.com +# ||hitwake.com^$third-party (easyprivacy.txt: 3415) +.hitwake.com +# ||hittracker.com^$third-party (easyprivacy.txt: 3414) +.hittracker.com +# ||hittail.com^$third-party (easyprivacy.txt: 3413) +.hittail.com +# ||hitsprocessor.com^$third-party (easyprivacy.txt: 3412) +.hitsprocessor.com +# ||hitsniffer.com^$third-party (easyprivacy.txt: 3411) +.hitsniffer.com +# ||hitslog.com^$third-party (easyprivacy.txt: 3410) +.hitslog.com +# ||hitslink.com^$third-party (easyprivacy.txt: 3409) +.hitslink.com +# ||hits2u.com^$third-party (easyprivacy.txt: 3408) +.hits2u.com +# ||hits.io^$third-party (easyprivacy.txt: 3407) +.hits.io +# ||hitmaze-counters.net^$third-party (easyprivacy.txt: 3406) +.hitmaze-counters.net +# ||hitmatic.com^$third-party (easyprivacy.txt: 3405) +.hitmatic.com +# ||hitfarm.com^$third-party (easyprivacy.txt: 3404) +.hitfarm.com +# ||hitcounterstats.com^$third-party (easyprivacy.txt: 3403) +.hitcounterstats.com +# ||hitbox.com^$third-party (easyprivacy.txt: 3402) +.hitbox.com +# ||hit2map.com^$third-party (easyprivacy.txt: 3401) +.hit2map.com +# ||hit-parade.com^$third-party (easyprivacy.txt: 3400) +.hit-parade.com +# ||hit-counts.com^$third-party (easyprivacy.txt: 3399) +.hit-counts.com +# ||hit-counters.net^$third-party (easyprivacy.txt: 3398) +.hit-counters.net +# ||hit-counter.info^$third-party (easyprivacy.txt: 3397) +.hit-counter.info +# ||hit-counter-download.com^$third-party (easyprivacy.txt: 3396) +.hit-counter-download.com +# ||histats.com^$third-party (easyprivacy.txt: 3395) +.histats.com +# ||highmetrics.com^$third-party (easyprivacy.txt: 3394) +.highmetrics.com +# ||higherengine.com^$third-party (easyprivacy.txt: 3393) +.higherengine.com +# ||hiconversion.com^$third-party (easyprivacy.txt: 3392) +.hiconversion.com +# ||heystaks.com^$third-party (easyprivacy.txt: 3391) +.heystaks.com +# ||hentaicounter.com^$third-party (easyprivacy.txt: 3390) +.hentaicounter.com +# ||hellosherpa.com^$third-party (easyprivacy.txt: 3389) +.hellosherpa.com +# ||heatmap.it^$third-party (easyprivacy.txt: 3388) +.heatmap.it +# ||heapanalytics.com^$third-party (easyprivacy.txt: 3387) +.heapanalytics.com +# ||haymarket.com^$third-party (easyprivacy.txt: 3386) +.haymarket.com +# ||haveamint.com^$third-party (easyprivacy.txt: 3385) +.haveamint.com +# ||haraju.co^$third-party (easyprivacy.txt: 3384) +.haraju.co +# ||halstats.com^$third-party (easyprivacy.txt: 3383) +.halstats.com +# ||halldata.com^$third-party (easyprivacy.txt: 3382) +.halldata.com +# ||h4k5.com^$third-party (easyprivacy.txt: 3381) +.h4k5.com +# ||gvisit.com^$third-party (easyprivacy.txt: 3380) +.gvisit.com +# ||guanoo.net^$third-party (easyprivacy.txt: 3379) +.guanoo.net +# ||gtopstats.com^$third-party (easyprivacy.txt: 3378) +.gtopstats.com +# ||gtcslt-di2.com^$third-party (easyprivacy.txt: 3377) +.gtcslt-di2.com +# ||gstats.cn^$third-party (easyprivacy.txt: 3376) +.gstats.cn +# ||gssprt.jp^$third-party (easyprivacy.txt: 3375) +.gssprt.jp +# ||gsspat.jp^$third-party (easyprivacy.txt: 3374) +.gsspat.jp +# ||gsimedia.net^$third-party (easyprivacy.txt: 3373) +.gsimedia.net +# ||gsecondscreen.com^$third-party (easyprivacy.txt: 3372) +.gsecondscreen.com +# ||grepdata.com^$third-party (easyprivacy.txt: 3371) +.grepdata.com +# ||gravity4.com^$third-party (easyprivacy.txt: 3370) +.gravity4.com +# ||grapheffect.com^$third-party (easyprivacy.txt: 3369) +.grapheffect.com +# ||govmetric.com^$third-party (easyprivacy.txt: 3368) +.govmetric.com +# ||gostats.ro^$third-party (easyprivacy.txt: 3367) +.gostats.ro +# ||gostats.com^$third-party (easyprivacy.txt: 3366) +.gostats.com +# ||gosquared.com^$third-party (easyprivacy.txt: 3365) +.gosquared.com +# ||gooo.al^$third-party (easyprivacy.txt: 3364) +.gooo.al +# ||googletagmanager.com/gtm.js?$third-party (easyprivacy.txt: 3363) +.googletagmanager.com/gtm\.js\? +# ||googlerank.info^$third-party (easyprivacy.txt: 3362) +.googlerank.info +# ||googleadservices.com^$third-party (easyprivacy.txt: 3361) +.googleadservices.com +# ||google-analytics.com/siteopt.js? (easyprivacy.txt: 3360) +.google-analytics.com/siteopt\.js\? +# ||google-analytics.com/r/collect? (easyprivacy.txt: 3359) +.google-analytics.com/r/collect\? +# ||google-analytics.com/plugins/ (easyprivacy.txt: 3358) +.google-analytics.com/plugins/ +# ||google-analytics.com/ga_exp.js (easyprivacy.txt: 3357) +.google-analytics.com/ga_exp\.js +# ||google-analytics.com/cx/api.js (easyprivacy.txt: 3356) +.google-analytics.com/cx/api\.js +# ||google-analytics.com/collect (easyprivacy.txt: 3355) +.google-analytics.com/collect +# ||google-analytics.com/analytics.js (easyprivacy.txt: 3354) +.google-analytics.com/analytics\.js +# ||goodcounter.org^$third-party (easyprivacy.txt: 3353) +.goodcounter.org +# ||goneviral.com^$third-party (easyprivacy.txt: 3352) +.goneviral.com +# ||goldstats.com^$third-party (easyprivacy.txt: 3351) +.goldstats.com +# ||goingup.com^$third-party (easyprivacy.txt: 3350) +.goingup.com +# ||godhat.com^$third-party (easyprivacy.txt: 3349) +.godhat.com +# ||goaltraffic.com^$third-party (easyprivacy.txt: 3348) +.goaltraffic.com +# ||go-mpulse.net^$third-party (easyprivacy.txt: 3347) +.go-mpulse.net +# ||globetrackr.com^$third-party (easyprivacy.txt: 3346) +.globetrackr.com +# ||globel.co.uk^$third-party (easyprivacy.txt: 3345) +.globel.co.uk +# ||globase.com^$third-party (easyprivacy.txt: 3344) +.globase.com +# ||globalviptraffic.com^$third-party (easyprivacy.txt: 3343) +.globalviptraffic.com +# ||glbtracker.com^$third-party (easyprivacy.txt: 3342) +.glbtracker.com +# ||glanceguide.com^$third-party (easyprivacy.txt: 3341) +.glanceguide.com +# ||gigcount.com^$third-party (easyprivacy.txt: 3340) +.gigcount.com +# ||gez.io^$third-party (easyprivacy.txt: 3339) +.gez.io +# ||getstatistics.se^$third-party (easyprivacy.txt: 3338) +.getstatistics.se +# ||getsmartcontent.com^$third-party (easyprivacy.txt: 3337) +.getsmartcontent.com +# ||getfreebl.com^$third-party (easyprivacy.txt: 3336) +.getfreebl.com +# ||getclicky.com^$third-party (easyprivacy.txt: 3335) +.getclicky.com +# ||getbackstory.com^$third-party (easyprivacy.txt: 3334) +.getbackstory.com +# ||georiot.com^$third-party (easyprivacy.txt: 3333) +.georiot.com +# ||geobytes.com^$third-party (easyprivacy.txt: 3332) +.geobytes.com +# ||genieesspv.jp^$third-party (easyprivacy.txt: 3331) +.genieesspv.jp +# ||gemtrackers.com^$third-party (easyprivacy.txt: 3330) +.gemtrackers.com +# ||gbotvisit.com^$third-party (easyprivacy.txt: 3329) +.gbotvisit.com +# ||gaug.es^$third-party (easyprivacy.txt: 3328) +.gaug.es +# ||fyreball.com^$third-party (easyprivacy.txt: 3327) +.fyreball.com +# ||fuziontech.net^$third-party (easyprivacy.txt: 3326) +.fuziontech.net +# ||fusestats.com^$third-party (easyprivacy.txt: 3325) +.fusestats.com +# ||funstage.com^$third-party (easyprivacy.txt: 3324) +.funstage.com +# ||funneld.com^$third-party (easyprivacy.txt: 3323) +.funneld.com +# ||fueldeck.com^$third-party (easyprivacy.txt: 3322) +.fueldeck.com +# ||ftbpro.com^$third-party (easyprivacy.txt: 3321) +.ftbpro.com +# ||fshka.com^$third-party (easyprivacy.txt: 3320) +.fshka.com +# ||fruitflan.com^$third-party (easyprivacy.txt: 3319) +.fruitflan.com +# ||friendbuy.com^$third-party (easyprivacy.txt: 3318) +.friendbuy.com +# ||freshplum.com^$third-party (easyprivacy.txt: 3317) +.freshplum.com +# ||freshcounter.com^$third-party (easyprivacy.txt: 3316) +.freshcounter.com +# ||frescoerspica.com^$third-party (easyprivacy.txt: 3315) +.frescoerspica.com +# ||freeweblogger.com^$third-party (easyprivacy.txt: 3314) +.freeweblogger.com +# ||freeusersonline.com^$third-party (easyprivacy.txt: 3313) +.freeusersonline.com +# ||freetrafficsystem.com^$third-party (easyprivacy.txt: 3312) +.freetrafficsystem.com +# ||freestats.com^$third-party (easyprivacy.txt: 3311) +.freestats.com +# ||freesitemapgenerator.com^$third-party (easyprivacy.txt: 3310) +.freesitemapgenerator.com +# ||freeonlineusers.com^$third-party (easyprivacy.txt: 3309) +.freeonlineusers.com +# ||freelogs.com^$third-party (easyprivacy.txt: 3308) +.freelogs.com +# ||freehitscounter.org^$third-party (easyprivacy.txt: 3307) +.freehitscounter.org +# ||freegeoip.net^$third-party (easyprivacy.txt: 3306) +.freegeoip.net +# ||freecounterstat.com^$third-party (easyprivacy.txt: 3305) +.freecounterstat.com +# ||freecountercode.com^$third-party (easyprivacy.txt: 3304) +.freecountercode.com +# ||freebloghitcounter.com^$third-party (easyprivacy.txt: 3303) +.freebloghitcounter.com +# ||free-website-statistics.com^$third-party (easyprivacy.txt: 3302) +.free-website-statistics.com +# ||free-website-hit-counters.com^$third-party (easyprivacy.txt: 3301) +.free-website-hit-counters.com +# ||free-counters.co.uk^$third-party (easyprivacy.txt: 3300) +.free-counters.co.uk +# ||free-counter.com^$third-party (easyprivacy.txt: 3299) +.free-counter.com +# ||free-counter.co.uk^$third-party (easyprivacy.txt: 3298) +.free-counter.co.uk +# ||fqtag.com^$third-party (easyprivacy.txt: 3297) +.fqtag.com +# ||fprnt.com^$third-party (easyprivacy.txt: 3296) +.fprnt.com +# ||fpctraffic2.com^$third-party (easyprivacy.txt: 3295) +.fpctraffic2.com +# ||foundry42.com^$third-party (easyprivacy.txt: 3294) +.foundry42.com +# ||forter.com^$third-party (easyprivacy.txt: 3293) +.forter.com +# ||formisimo.com^$third-party (easyprivacy.txt: 3292) +.formisimo.com +# ||formalyzer.com^$third-party (easyprivacy.txt: 3291) +.formalyzer.com +# ||foreseeresults.com^$third-party (easyprivacy.txt: 3290) +.foreseeresults.com +# ||forensics1000.com^$third-party (easyprivacy.txt: 3289) +.forensics1000.com +# ||force24.co.uk^$third-party (easyprivacy.txt: 3288) +.force24.co.uk +# ||footprintlive.com^$third-party (easyprivacy.txt: 3287) +.footprintlive.com +# ||followercounter.com^$third-party (easyprivacy.txt: 3286) +.followercounter.com +# ||flyingpt.com^$third-party (easyprivacy.txt: 3285) +.flyingpt.com +# ||flxpxl.com^$third-party (easyprivacy.txt: 3284) +.flxpxl.com +# ||flx1.com^$third-party (easyprivacy.txt: 3283) +.flx1.com +# ||flurry.com^$third-party (easyprivacy.txt: 3282) +.flurry.com +# ||fluencymedia.com^$third-party (easyprivacy.txt: 3281) +.fluencymedia.com +# ||fluctuo.com^$third-party (easyprivacy.txt: 3280) +.fluctuo.com +# ||flowstats.net^$third-party (easyprivacy.txt: 3279) +.flowstats.net +# ||flixsyndication.net^$third-party (easyprivacy.txt: 3278) +.flixsyndication.net +# ||flixfacts.com^$third-party (easyprivacy.txt: 3277) +.flixfacts.com +# ||flixfacts.co.uk^$third-party (easyprivacy.txt: 3276) +.flixfacts.co.uk +# ||flixcar.com^$third-party (easyprivacy.txt: 3275) +.flixcar.com +# ||flix360.com^$third-party (easyprivacy.txt: 3274) +.flix360.com +# ||flcounter.com^$third-party (easyprivacy.txt: 3273) +.flcounter.com +# ||flashgamestats.com^$third-party (easyprivacy.txt: 3272) +.flashgamestats.com +# ||flashadengine.com^$third-party (easyprivacy.txt: 3271) +.flashadengine.com +# ||flash-stat.com^$third-party (easyprivacy.txt: 3270) +.flash-stat.com +# ||flash-counter.com^$third-party (easyprivacy.txt: 3269) +.flash-counter.com +# ||flagcounter.com^$third-party (easyprivacy.txt: 3268) +.flagcounter.com +# ||fishhoo.com^$third-party (easyprivacy.txt: 3267) +.fishhoo.com +# ||finderlocator.com^$third-party (easyprivacy.txt: 3266) +.finderlocator.com +# ||find-ip-address.org^$third-party (easyprivacy.txt: 3265) +.find-ip-address.org +# ||finalid.com^$third-party (easyprivacy.txt: 3264) +.finalid.com +# ||filitrac.com^$third-party (easyprivacy.txt: 3263) +.filitrac.com +# ||fiksu.com^$third-party (easyprivacy.txt: 3262) +.fiksu.com +# ||fetchback.com^$third-party (easyprivacy.txt: 3261) +.fetchback.com +# ||feedperfect.com^$third-party (easyprivacy.txt: 3260) +.feedperfect.com +# ||feedjit.com^$third-party (easyprivacy.txt: 3259) +.feedjit.com +# ||feedcat.net^$third-party (easyprivacy.txt: 3258) +.feedcat.net +# ||fathomseo.com^$third-party (easyprivacy.txt: 3257) +.fathomseo.com +# ||fastwebcounter.com^$third-party (easyprivacy.txt: 3256) +.fastwebcounter.com +# ||fastonlineusers.com^$third-party (easyprivacy.txt: 3255) +.fastonlineusers.com +# ||fastly-analytics.com^$third-party (easyprivacy.txt: 3254) +.fastly-analytics.com +# ||fastanalytic.com^$third-party (easyprivacy.txt: 3253) +.fastanalytic.com +# ||fast-thinking.co.uk^$third-party (easyprivacy.txt: 3252) +.fast-thinking.co.uk +# ||farmer.wego.com^$third-party (easyprivacy.txt: 3251) +.farmer.wego.com +# ||fanplayr.com^$third-party (easyprivacy.txt: 3250) +.fanplayr.com +# ||factortg.com^$third-party (easyprivacy.txt: 3249) +.factortg.com +# ||fabricww.com^$third-party (easyprivacy.txt: 3248) +.fabricww.com +# ||ezytrack.com^$third-party (easyprivacy.txt: 3247) +.ezytrack.com +# ||ezec.co.uk^$third-party (easyprivacy.txt: 3246) +.ezec.co.uk +# ||eyein.com^$third-party (easyprivacy.txt: 3245) +.eyein.com +# ||extreme-dm.com^$third-party (easyprivacy.txt: 3244) +.extreme-dm.com +# ||extole.com^$third-party (easyprivacy.txt: 3243) +.extole.com +# ||explore-123.com^$third-party (easyprivacy.txt: 3242) +.explore-123.com +# ||exitmonitor.com^$third-party (easyprivacy.txt: 3241) +.exitmonitor.com +# ||exelator.com^$third-party (easyprivacy.txt: 3240) +.exelator.com +# ||exclusiveclicks.com^$third-party (easyprivacy.txt: 3239) +.exclusiveclicks.com +# ||ewebcounter.com^$third-party (easyprivacy.txt: 3238) +.ewebcounter.com +# ||ewebanalytics.com^$third-party (easyprivacy.txt: 3237) +.ewebanalytics.com +# ||evyy.net^$third-party (easyprivacy.txt: 3236) +.evyy.net +# ||evolvemediametrics.com^$third-party (easyprivacy.txt: 3235) +.evolvemediametrics.com +# ||evisitcs2.com^$third-party (easyprivacy.txt: 3234) +.evisitcs2.com +# ||evisitcs.com^$third-party (easyprivacy.txt: 3233) +.evisitcs.com +# ||evisitanalyst.com^$third-party (easyprivacy.txt: 3232) +.evisitanalyst.com +# ||evergage.com^$third-party (easyprivacy.txt: 3231) +.evergage.com +# ||everesttech.net^$third-party (easyprivacy.txt: 3230) +.everesttech.net +# ||everestjs.net^$third-party (easyprivacy.txt: 3229) +.everestjs.net +# ||evanetpro.com^$third-party (easyprivacy.txt: 3228) +.evanetpro.com +# ||europuls.net^$third-party (easyprivacy.txt: 3227) +.europuls.net +# ||europuls.eu^$third-party (easyprivacy.txt: 3226) +.europuls.eu +# ||europagerank.com^$third-party (easyprivacy.txt: 3225) +.europagerank.com +# ||eum-appdynamics.com^$third-party (easyprivacy.txt: 3224) +.eum-appdynamics.com +# ||euleriancdn.net^$third-party (easyprivacy.txt: 3223) +.euleriancdn.net +# ||eulerian.net^$third-party (easyprivacy.txt: 3222) +.eulerian.net +# ||eu-survey.com^$third-party (easyprivacy.txt: 3221) +.eu-survey.com +# ||etyper.com^$third-party (easyprivacy.txt: 3220) +.etyper.com +# ||etrigue.com^$third-party (easyprivacy.txt: 3219) +.etrigue.com +# ||etrafficstats.com^$third-party (easyprivacy.txt: 3218) +.etrafficstats.com +# ||etrafficcounter.com^$third-party (easyprivacy.txt: 3217) +.etrafficcounter.com +# ||etracker.com^$third-party (easyprivacy.txt: 3216) +.etracker.com +# ||ethnio.com^$third-party (easyprivacy.txt: 3215) +.ethnio.com +# ||ethn.io^$third-party (easyprivacy.txt: 3214) +.ethn.io +# ||etherealhakai.com^$third-party (easyprivacy.txt: 3213) +.etherealhakai.com +# ||etahub.com^$third-party (easyprivacy.txt: 3212) +.etahub.com +# ||estrack.net^$third-party (easyprivacy.txt: 3211) +.estrack.net +# ||esomniture.com^$third-party (easyprivacy.txt: 3210) +.esomniture.com +# ||esm1.net^$third-party (easyprivacy.txt: 3209) +.esm1.net +# ||esearchvision.com^$third-party (easyprivacy.txt: 3208) +.esearchvision.com +# ||ereportz.com^$third-party (easyprivacy.txt: 3207) +.ereportz.com +# ||eps-analyzer.de^$third-party (easyprivacy.txt: 3206) +.eps-analyzer.de +# ||eproof.com^$third-party (easyprivacy.txt: 3205) +.eproof.com +# ||epitrack.com^$third-party (easyprivacy.txt: 3204) +.epitrack.com +# ||epilot.com^$third-party (easyprivacy.txt: 3203) +.epilot.com +# ||eperfectdata.com^$third-party (easyprivacy.txt: 3202) +.eperfectdata.com +# ||enticelabs.com^$third-party (easyprivacy.txt: 3201) +.enticelabs.com +# ||ensighten.com^$third-party (easyprivacy.txt: 3200) +.ensighten.com +# ||enquisite.com^$third-party (easyprivacy.txt: 3199) +.enquisite.com +# ||enhance.com^$third-party (easyprivacy.txt: 3198) +.enhance.com +# ||engine64.com^$third-party (easyprivacy.txt: 3197) +.engine64.com +# ||engine212.com^$third-party (easyprivacy.txt: 3196) +.engine212.com +# ||enectoanalytics.com^$third-party (easyprivacy.txt: 3195) +.enectoanalytics.com +# ||enecto.com^$third-party (easyprivacy.txt: 3194) +.enecto.com +# ||emltrk.com^$third-party (easyprivacy.txt: 3193) +.emltrk.com +# ||emjcd.com^$third-party (easyprivacy.txt: 3192) +.emjcd.com +# ||emediatrack.com^$third-party (easyprivacy.txt: 3191) +.emediatrack.com +# ||email-match.com^$third-party (easyprivacy.txt: 3190) +.email-match.com +# ||eloqua.com^$third-party (easyprivacy.txt: 3189) +.eloqua.com +# ||elitics.com^$third-party (easyprivacy.txt: 3188) +.elitics.com +# ||elite-s001.com^$third-party (easyprivacy.txt: 3187) +.elite-s001.com +# ||electusdigital.com^$third-party (easyprivacy.txt: 3186) +.electusdigital.com +# ||ela-3-tnk.com^$third-party (easyprivacy.txt: 3185) +.ela-3-tnk.com +# ||ekmpinpoint.com^$third-party (easyprivacy.txt: 3184) +.ekmpinpoint.com +# ||ekmpinpoint.co.uk^$third-party (easyprivacy.txt: 3183) +.ekmpinpoint.co.uk +# ||edgeadx.net^$third-party (easyprivacy.txt: 3182) +.edgeadx.net +# ||ecustomeropinions.com^$third-party (easyprivacy.txt: 3181) +.ecustomeropinions.com +# ||ecommstats.com^$third-party (easyprivacy.txt: 3180) +.ecommstats.com +# ||ecn5.com^$third-party (easyprivacy.txt: 3179) +.ecn5.com +# ||ec-track.com^$third-party (easyprivacy.txt: 3178) +.ec-track.com +# ||ebtrk1.com^$third-party (easyprivacy.txt: 3177) +.ebtrk1.com +# ||easyresearch.se^$third-party (easyprivacy.txt: 3176) +.easyresearch.se +# ||easyhitcounters.com^$third-party (easyprivacy.txt: 3175) +.easyhitcounters.com +# ||easycounter.com^$third-party (easyprivacy.txt: 3174) +.easycounter.com +# ||easy-hit-counters.com^$third-party (easyprivacy.txt: 3173) +.easy-hit-counters.com +# ||earnitup.com^$third-party (easyprivacy.txt: 3172) +.earnitup.com +# ||e-zeeinternet.com^$third-party (easyprivacy.txt: 3171) +.e-zeeinternet.com +# ||e-referrer.com^$third-party (easyprivacy.txt: 3170) +.e-referrer.com +# ||e-pagerank.net^$third-party (easyprivacy.txt: 3169) +.e-pagerank.net +# ||dyntrk.com^$third-party (easyprivacy.txt: 3168) +.dyntrk.com +# ||dwin2.com^$third-party (easyprivacy.txt: 3167) +.dwin2.com +# ||dwin1.com^$third-party (easyprivacy.txt: 3166) +.dwin1.com +# ||dv0.info^$third-party (easyprivacy.txt: 3165) +.dv0.info +# ||dummy-domain-do-not-change.com^$third-party (easyprivacy.txt: 3164) +.dummy-domain-do-not-change.com +# ||dtscout.com^$third-party (easyprivacy.txt: 3163) +.dtscout.com +# ||dti-ranker.com^$third-party (easyprivacy.txt: 3162) +.dti-ranker.com +# ||dstrack2.info^$third-party (easyprivacy.txt: 3161) +.dstrack2.info +# ||dsply.com^$third-party (easyprivacy.txt: 3160) +.dsply.com +# ||dsparking.com^$third-party (easyprivacy.txt: 3159) +.dsparking.com +# ||dsmmadvantage.com^$third-party (easyprivacy.txt: 3158) +.dsmmadvantage.com +# ||dps-reach.com^$third-party (easyprivacy.txt: 3157) +.dps-reach.com +# ||downture.in^$third-party (easyprivacy.txt: 3156) +.downture.in +# ||doubleclick.net^*/trackimp/$third-party (easyprivacy.txt: 3155) +.doubleclick.net/.*/trackimp/ +# ||doubleclick.net^$image,third-party (easyprivacy.txt: 3154) +.doubleclick.net +# ||doubleclick.net/pixel?$third-party (easyprivacy.txt: 3153) +.doubleclick.net/pixel\? +# ||doubleclick.net/json?$third-party (easyprivacy.txt: 3152) +.doubleclick.net/json\? +# ||doubleclick.net/imp;$third-party (easyprivacy.txt: 3151) +.doubleclick.net/imp; +# ||doubleclick.net/imp%$third-party (easyprivacy.txt: 3150) +.doubleclick.net/imp% +# ||doubleclick.net/activity$third-party (easyprivacy.txt: 3149) +.doubleclick.net/activity +# ||dotomi.com^$third-party (easyprivacy.txt: 3148) +.dotomi.com +# ||domodomain.com^$third-party (easyprivacy.txt: 3147) +.domodomain.com +# ||dominocounter.net^$third-party (easyprivacy.txt: 3146) +.dominocounter.net +# ||doclix.com^$third-party (easyprivacy.txt: 3145) +.doclix.com +# ||dmtry.com^$third-party (easyprivacy.txt: 3144) +.dmtry.com +# ||dmtracker.com^$third-party (easyprivacy.txt: 3143) +.dmtracker.com +# ||dmd53.com^$third-party (easyprivacy.txt: 3142) +.dmd53.com +# ||dmclick.cn^$third-party (easyprivacy.txt: 3141) +.dmclick.cn +# ||dmanalytics1.com^$third-party (easyprivacy.txt: 3140) +.dmanalytics1.com +# ||dlrowehtfodne.com^$third-party (easyprivacy.txt: 3139) +.dlrowehtfodne.com +# ||djers.com^$third-party (easyprivacy.txt: 3138) +.djers.com +# ||distralytics.com^$third-party (easyprivacy.txt: 3137) +.distralytics.com +# ||displaymarketplace.com^$third-party (easyprivacy.txt: 3136) +.displaymarketplace.com +# ||discovertrail.net^$third-party (easyprivacy.txt: 3135) +.discovertrail.net +# ||discover-path.com^$third-party (easyprivacy.txt: 3134) +.discover-path.com +# ||directrdr.com^$third-party (easyprivacy.txt: 3133) +.directrdr.com +# ||dinkstat.com^$third-party (easyprivacy.txt: 3132) +.dinkstat.com +# ||dimml.io^$third-party (easyprivacy.txt: 3131) +.dimml.io +# ||dimestore.com^$third-party (easyprivacy.txt: 3130) +.dimestore.com +# ||dignow.org^$third-party (easyprivacy.txt: 3129) +.dignow.org +# ||digitaloptout.com^$third-party (easyprivacy.txt: 3128) +.digitaloptout.com +# ||digdeepdigital.com.au^$third-party (easyprivacy.txt: 3127) +.digdeepdigital.com.au +# ||diffusion-tracker.com^$third-party (easyprivacy.txt: 3126) +.diffusion-tracker.com +# ||didit.com^$third-party (easyprivacy.txt: 3125) +.didit.com +# ||did-it.com^$third-party (easyprivacy.txt: 3124) +.did-it.com +# ||dhmtracking.co.za^$third-party (easyprivacy.txt: 3123) +.dhmtracking.co.za +# ||dgmsearchlab.com^$third-party (easyprivacy.txt: 3122) +.dgmsearchlab.com +# ||device9.com^$third-party (easyprivacy.txt: 3121) +.device9.com +# ||deqwas.net^$third-party (easyprivacy.txt: 3120) +.deqwas.net +# ||demdex.net^$third-party (easyprivacy.txt: 3119) +.demdex.net +# ||demandbase.com^$third-party (easyprivacy.txt: 3118) +.demandbase.com +# ||dejavu.mlapps.com^$third-party (easyprivacy.txt: 3117) +.dejavu.mlapps.com +# ||declaredthoughtfulness.co^$third-party (easyprivacy.txt: 3116) +.declaredthoughtfulness.co +# ||decideinteractive.com^$third-party (easyprivacy.txt: 3115) +.decideinteractive.com +# ||decibelinsight.net^$third-party (easyprivacy.txt: 3114) +.decibelinsight.net +# ||decdna.net^$third-party (easyprivacy.txt: 3113) +.decdna.net +# ||dc.tremormedia.com^$third-party (easyprivacy.txt: 3112) +.dc.tremormedia.com +# ||dc-storm.com^$third-party (easyprivacy.txt: 3111) +.dc-storm.com +# ||daylogs.com^$third-party (easyprivacy.txt: 3110) +.daylogs.com +# ||daylife-analytics.com^$third-party (easyprivacy.txt: 3109) +.daylife-analytics.com +# ||datvantage.com^$third-party (easyprivacy.txt: 3108) +.datvantage.com +# ||datam.com^$third-party (easyprivacy.txt: 3107) +.datam.com +# ||datafeedfile.com^$third-party (easyprivacy.txt: 3106) +.datafeedfile.com +# ||datacaciques.com^$third-party (easyprivacy.txt: 3105) +.datacaciques.com +# ||databrain.com^$third-party (easyprivacy.txt: 3104) +.databrain.com +# ||data-analytics.jp^$third-party (easyprivacy.txt: 3103) +.data-analytics.jp +# ||dashboard.io^$third-party (easyprivacy.txt: 3102) +.dashboard.io +# ||dapxl.com^$third-party (easyprivacy.txt: 3101) +.dapxl.com +# ||dailycaller-alerts.com^$third-party (easyprivacy.txt: 3100) +.dailycaller-alerts.com +# ||dadi.technology^$third-party (easyprivacy.txt: 3099) +.dadi.technology +# ||dacounter.com^$third-party (easyprivacy.txt: 3098) +.dacounter.com +# ||cytoclause.com^$third-party (easyprivacy.txt: 3097) +.cytoclause.com +# ||cybermonitor.com^$third-party (easyprivacy.txt: 3096) +.cybermonitor.com +# ||cya2.net^$third-party (easyprivacy.txt: 3095) +.cya2.net +# ||cxt.ms^$third-party (easyprivacy.txt: 3094) +.cxt.ms +# ||cxense.com^$third-party (easyprivacy.txt: 3093) +.cxense.com +# ||customerdiscoverytrack.com^$third-party (easyprivacy.txt: 3092) +.customerdiscoverytrack.com +# ||customerconversio.com^$third-party (easyprivacy.txt: 3091) +.customerconversio.com +# ||customer.io^$third-party (easyprivacy.txt: 3090) +.customer.io +# ||curalate.com^$third-party (easyprivacy.txt: 3089) +.curalate.com +# ||ctnsnet.com^$third-party (easyprivacy.txt: 3088) +.ctnsnet.com +# ||csi-tracking.com^$third-party (easyprivacy.txt: 3087) +.csi-tracking.com +# ||csdata1.com^$third-party (easyprivacy.txt: 3086) +.csdata1.com +# ||crwdcntrl.net^$third-party (easyprivacy.txt: 3085) +.crwdcntrl.net +# ||crsspxl.com^$third-party (easyprivacy.txt: 3084) +.crsspxl.com +# ||crowdtwist.com^$third-party (easyprivacy.txt: 3083) +.crowdtwist.com +# ||crowdskout.com^$third-party (easyprivacy.txt: 3082) +.crowdskout.com +# ||crowdscience.com^$third-party (easyprivacy.txt: 3081) +.crowdscience.com +# ||crosswalkmail.com^$third-party (easyprivacy.txt: 3080) +.crosswalkmail.com +# ||crosspixel.net^$third-party (easyprivacy.txt: 3079) +.crosspixel.net +# ||crmmetrixwris.com^$third-party (easyprivacy.txt: 3078) +.crmmetrixwris.com +# ||crmmetrix.fr^$third-party (easyprivacy.txt: 3077) +.crmmetrix.fr +# ||criteo.net^$third-party (easyprivacy.txt: 3076) +.criteo.net +# ||criteo.com^$third-party (easyprivacy.txt: 3075) +.criteo.com +# ||crazyegg.com^$third-party (easyprivacy.txt: 3074) +.crazyegg.com +# ||craktraffic.com^$third-party (easyprivacy.txt: 3073) +.craktraffic.com +# ||craftkeys.com^$third-party (easyprivacy.txt: 3072) +.craftkeys.com +# ||cqcounter.com^$third-party (easyprivacy.txt: 3071) +.cqcounter.com +# ||cpx.to^$third-party (easyprivacy.txt: 3070) +.cpx.to +# ||cpcmanager.com^$third-party (easyprivacy.txt: 3069) +.cpcmanager.com +# ||countz.com^$third-party (easyprivacy.txt: 3068) +.countz.com +# ||countomat.com^$third-party (easyprivacy.txt: 3067) +.countomat.com +# ||countingbiz.info^$third-party (easyprivacy.txt: 3066) +.countingbiz.info +# ||counting4free.com^$third-party (easyprivacy.txt: 3065) +.counting4free.com +# ||counterviews.net^$third-party (easyprivacy.txt: 3064) +.counterviews.net +# ||countertracker.com^$third-party (easyprivacy.txt: 3063) +.countertracker.com +# ||countersforlife.com^$third-party (easyprivacy.txt: 3062) +.countersforlife.com +# ||counterservis.com^$third-party (easyprivacy.txt: 3061) +.counterservis.com +# ||counters4u.com^$third-party (easyprivacy.txt: 3060) +.counters4u.com +# ||counterland.com^$third-party (easyprivacy.txt: 3059) +.counterland.com +# ||countergeo.com^$third-party (easyprivacy.txt: 3058) +.countergeo.com +# ||countercentral.com^$third-party (easyprivacy.txt: 3057) +.countercentral.com +# ||counterbot.com^$third-party (easyprivacy.txt: 3056) +.counterbot.com +# ||counter160.com^$third-party (easyprivacy.txt: 3055) +.counter160.com +# ||counter.top.kg^$third-party (easyprivacy.txt: 3054) +.counter.top.kg +# ||counter.gd^$third-party (easyprivacy.txt: 3053) +.counter.gd +# ||countby.com^$third-party (easyprivacy.txt: 3052) +.countby.com +# ||cost1action.com^$third-party (easyprivacy.txt: 3051) +.cost1action.com +# ||cormce.com^$third-party (easyprivacy.txt: 3050) +.cormce.com +# ||coremotives.com^$third-party (easyprivacy.txt: 3049) +.coremotives.com +# ||coremetrics.com^$third-party (easyprivacy.txt: 3048) +.coremetrics.com +# ||core-cen-54.com^$third-party (easyprivacy.txt: 3047) +.core-cen-54.com +# ||copperegg.com^$third-party (easyprivacy.txt: 3046) +.copperegg.com +# ||copacast.net^$third-party (easyprivacy.txt: 3045) +.copacast.net +# ||cooladata.com^$third-party (easyprivacy.txt: 3044) +.cooladata.com +# ||convertro.com^$third-party (easyprivacy.txt: 3043) +.convertro.com +# ||convertmarketing.net^$third-party (easyprivacy.txt: 3042) +.convertmarketing.net +# ||convertglobal.com^$third-party (easyprivacy.txt: 3041) +.convertglobal.com +# ||convertexperiments.com^$third-party (easyprivacy.txt: 3040) +.convertexperiments.com +# ||conversionruler.com^$third-party (easyprivacy.txt: 3039) +.conversionruler.com +# ||conversionly.com^$third-party (easyprivacy.txt: 3038) +.conversionly.com +# ||conversionlogic.net^$third-party (easyprivacy.txt: 3037) +.conversionlogic.net +# ||convergetrack.com^$third-party (easyprivacy.txt: 3036) +.convergetrack.com +# ||continue.com^$third-party (easyprivacy.txt: 3035) +.continue.com +# ||contextly.com^$third-party (easyprivacy.txt: 3034) +.contextly.com +# ||contentspread.net^$third-party (easyprivacy.txt: 3033) +.contentspread.net +# ||contentinsights.com^$third-party (easyprivacy.txt: 3032) +.contentinsights.com +# ||contentexchange.me^$third-party (easyprivacy.txt: 3031) +.contentexchange.me +# ||contemporaryceremonies.ca^$third-party (easyprivacy.txt: 3030) +.contemporaryceremonies.ca +# ||contactmonkey.com^$third-party (easyprivacy.txt: 3029) +.contactmonkey.com +# ||confirmit.com^$third-party (easyprivacy.txt: 3028) +.confirmit.com +# ||confirmational.com^$third-party (easyprivacy.txt: 3027) +.confirmational.com +# ||compteur.cc^$third-party (easyprivacy.txt: 3026) +.compteur.cc +# ||company-target.com^$third-party (easyprivacy.txt: 3025) +.company-target.com +# ||commander1.com^$third-party (easyprivacy.txt: 3024) +.commander1.com +# ||collserve.com^$third-party (easyprivacy.txt: 3023) +.collserve.com +# ||collarity.com^$third-party (easyprivacy.txt: 3022) +.collarity.com +# ||cognitivematch.com^$third-party (easyprivacy.txt: 3021) +.cognitivematch.com +# ||cogmatch.net^$third-party (easyprivacy.txt: 3020) +.cogmatch.net +# ||codata.ru^$third-party (easyprivacy.txt: 3019) +.codata.ru +# ||cnzz.com^$third-party (easyprivacy.txt: 3018) +.cnzz.com +# ||cnxweb.com^$third-party (easyprivacy.txt: 3017) +.cnxweb.com +# ||cnt1.net^$third-party (easyprivacy.txt: 3016) +.cnt1.net +# ||cmptch.com^$third-party (easyprivacy.txt: 3015) +.cmptch.com +# ||cmmeglobal.com^$third-party (easyprivacy.txt: 3014) +.cmmeglobal.com +# ||cmcore.com^$third-party (easyprivacy.txt: 3013) +.cmcore.com +# ||clustrmaps.com^$third-party (easyprivacy.txt: 3012) +.clustrmaps.com +# ||cloud-exploration.com^$third-party (easyprivacy.txt: 3011) +.cloud-exploration.com +# ||clixpy.com^$third-party (easyprivacy.txt: 3010) +.clixpy.com +# ||clixcount.com^$third-party (easyprivacy.txt: 3009) +.clixcount.com +# ||clickzzs.nl^$third-party (easyprivacy.txt: 3008) +.clickzzs.nl +# ||clickzs.com^$third-party (easyprivacy.txt: 3007) +.clickzs.com +# ||clicktracks.com^$third-party (easyprivacy.txt: 3006) +.clicktracks.com +# ||clicktrack1.com^$third-party (easyprivacy.txt: 3005) +.clicktrack1.com +# ||clicktale.net^$third-party (easyprivacy.txt: 3004) +.clicktale.net +# ||clickstream.co.za^$third-party (easyprivacy.txt: 3003) +.clickstream.co.za +# ||clickshift.com^$third-party (easyprivacy.txt: 3002) +.clickshift.com +# ||clicksen.se^$third-party (easyprivacy.txt: 3001) +.clicksen.se +# ||clicksagent.com^$third-party (easyprivacy.txt: 3000) +.clicksagent.com +# ||clickreport.com^$third-party (easyprivacy.txt: 2999) +.clickreport.com +# ||clickpathmedia.com^$third-party (easyprivacy.txt: 2998) +.clickpathmedia.com +# ||clickmeter.com^$third-party (easyprivacy.txt: 2997) +.clickmeter.com +# ||clickmanage.com^$third-party (easyprivacy.txt: 2996) +.clickmanage.com +# ||clickinc.com^$third-party (easyprivacy.txt: 2995) +.clickinc.com +# ||clickigniter.io^$third-party (easyprivacy.txt: 2994) +.clickigniter.io +# ||clickforensics.com^$third-party (easyprivacy.txt: 2993) +.clickforensics.com +# ||clickening.com^$third-party (easyprivacy.txt: 2992) +.clickening.com +# ||clickdimensions.com^$third-party (easyprivacy.txt: 2991) +.clickdimensions.com +# ||clickdensity.com^$third-party (easyprivacy.txt: 2990) +.clickdensity.com +# ||clickconversion.net^$third-party (easyprivacy.txt: 2989) +.clickconversion.net +# ||clickcloud.info^$third-party (easyprivacy.txt: 2988) +.clickcloud.info +# ||clickclick.net^$third-party (easyprivacy.txt: 2987) +.clickclick.net +# ||clickalyzer.com^$third-party (easyprivacy.txt: 2986) +.clickalyzer.com +# ||clickaider.com^$third-party (easyprivacy.txt: 2985) +.clickaider.com +# ||clickable.net^$third-party (easyprivacy.txt: 2984) +.clickable.net +# ||click4assistance.co.uk^$third-party (easyprivacy.txt: 2983) +.click4assistance.co.uk +# ||click2meter.com^$third-party (easyprivacy.txt: 2982) +.click2meter.com +# ||click-url.com^$third-party (easyprivacy.txt: 2981) +.click-url.com +# ||click-linking.com^$third-party (easyprivacy.txt: 2980) +.click-linking.com +# ||clevi.com^$third-party (easyprivacy.txt: 2979) +.clevi.com +# ||cleveritics.com^$third-party (easyprivacy.txt: 2978) +.cleveritics.com +# ||clearviewstats.com^$third-party (easyprivacy.txt: 2977) +.clearviewstats.com +# ||cleananalytics.com^$third-party (easyprivacy.txt: 2976) +.cleananalytics.com +# ||claritytag.com^$third-party (easyprivacy.txt: 2975) +.claritytag.com +# ||clarifyingquack.com^$third-party (easyprivacy.txt: 2974) +.clarifyingquack.com +# ||circular-counters.com^$third-party (easyprivacy.txt: 2973) +.circular-counters.com +# ||chrumedia.com^$third-party (easyprivacy.txt: 2972) +.chrumedia.com +# ||christmalicious.com^$third-party (easyprivacy.txt: 2971) +.christmalicious.com +# ||christiantop1000.com^$third-party (easyprivacy.txt: 2970) +.christiantop1000.com +# ||cheezburger-analytics.com^$third-party (easyprivacy.txt: 2969) +.cheezburger-analytics.com +# ||checkstat.nl^$third-party (easyprivacy.txt: 2968) +.checkstat.nl +# ||checkmypr.net^$third-party (easyprivacy.txt: 2967) +.checkmypr.net +# ||chartbeat.net^$third-party (easyprivacy.txt: 2966) +.chartbeat.net +# ||chartbeat.com^$third-party (easyprivacy.txt: 2965) +.chartbeat.com +# ||chartaca.com^$third-party (easyprivacy.txt: 2964) +.chartaca.com +# ||cftrack.com^$third-party (easyprivacy.txt: 2963) +.cftrack.com +# ||cetrk.com^$third-party (easyprivacy.txt: 2962) +.cetrk.com +# ||centraltag.com^$third-party (easyprivacy.txt: 2961) +.centraltag.com +# ||celebros-analytics.com^$third-party (easyprivacy.txt: 2960) +.celebros-analytics.com +# ||cedexis.net^$third-party (easyprivacy.txt: 2959) +.cedexis.net +# ||cedexis.com^$third-party (easyprivacy.txt: 2958) +.cedexis.com +# ||castelein.nu^$third-party (easyprivacy.txt: 2957) +.castelein.nu +# ||cashcount.com^$third-party (easyprivacy.txt: 2956) +.cashcount.com +# ||cashburners.com^$third-party (easyprivacy.txt: 2955) +.cashburners.com +# ||captivate.ai^$third-party (easyprivacy.txt: 2954) +.captivate.ai +# ||caphyon-analytics.com^$third-party (easyprivacy.txt: 2953) +.caphyon-analytics.com +# ||canopylabs.com^$third-party (easyprivacy.txt: 2952) +.canopylabs.com +# ||canddi.com^$third-party (easyprivacy.txt: 2951) +.canddi.com +# ||campaigncog.com^$third-party (easyprivacy.txt: 2950) +.campaigncog.com +# ||calltracks.com^$third-party (easyprivacy.txt: 2949) +.calltracks.com +# ||calltrackingmetrics.com^$third-party (easyprivacy.txt: 2948) +.calltrackingmetrics.com +# ||callrail.com^$third-party (easyprivacy.txt: 2947) +.callrail.com +# ||callmeasurement.com^$third-party (easyprivacy.txt: 2946) +.callmeasurement.com +# ||callisto.fm^$third-party (easyprivacy.txt: 2945) +.callisto.fm +# ||callingjustified.com^$third-party (easyprivacy.txt: 2944) +.callingjustified.com +# ||call-tracking.co.uk^$third-party (easyprivacy.txt: 2943) +.call-tracking.co.uk +# ||cadreon.com^$third-party (easyprivacy.txt: 2942) +.cadreon.com +# ||cache.fm^$third-party (easyprivacy.txt: 2941) +.cache.fm +# ||cache.am^$third-party (easyprivacy.txt: 2940) +.cache.am +# ||c4tw.net^$third-party (easyprivacy.txt: 2939) +.c4tw.net +# ||c4tracking01.com^$third-party (easyprivacy.txt: 2938) +.c4tracking01.com +# ||c3tag.com^$third-party (easyprivacy.txt: 2937) +.c3tag.com +# ||c3metrics.com^$third-party (easyprivacy.txt: 2936) +.c3metrics.com +# ||c1exchange.com^$third-party (easyprivacy.txt: 2935) +.c1exchange.com +# ||c.hit.ua^$third-party (easyprivacy.txt: 2934) +.c.hit.ua +# ||c.adroll.com^$third-party (easyprivacy.txt: 2933) +.c.adroll.com +# ||c-webstats.de^$third-party (easyprivacy.txt: 2932) +.c-webstats.de +# ||c-o-u-n-t.com^$third-party (easyprivacy.txt: 2931) +.c-o-u-n-t.com +# ||bytemgdd.com^$third-party (easyprivacy.txt: 2930) +.bytemgdd.com +# ||buzzdeck.com^$third-party (easyprivacy.txt: 2929) +.buzzdeck.com +# ||bux1le001.com^$third-party (easyprivacy.txt: 2928) +.bux1le001.com +# ||burt.io^$third-party (easyprivacy.txt: 2927) +.burt.io +# ||burstbeacon.com^$third-party (easyprivacy.txt: 2926) +.burstbeacon.com +# ||bugsnag.com^$third-party (easyprivacy.txt: 2925) +.bugsnag.com +# ||bugherd.com^$third-party (easyprivacy.txt: 2924) +.bugherd.com +# ||bubblestat.com^$third-party (easyprivacy.txt: 2923) +.bubblestat.com +# ||btttag.com^$third-party (easyprivacy.txt: 2922) +.btttag.com +# ||btstatic.com^$third-party (easyprivacy.txt: 2921) +.btstatic.com +# ||btbuckets.com^$third-party (easyprivacy.txt: 2920) +.btbuckets.com +# ||bstk.co^$third-party (easyprivacy.txt: 2919) +.bstk.co +# ||brsrvr.com^$third-party (easyprivacy.txt: 2918) +.brsrvr.com +# ||browser-statistik.de^$third-party (easyprivacy.txt: 2917) +.browser-statistik.de +# ||bronto.com^$third-party (easyprivacy.txt: 2916) +.bronto.com +# ||brilig.com^$third-party (easyprivacy.txt: 2915) +.brilig.com +# ||brightedge.com^$third-party (easyprivacy.txt: 2914) +.brightedge.com +# ||bridgevine.com^$third-party (easyprivacy.txt: 2913) +.bridgevine.com +# ||brcdn.com^$third-party (easyprivacy.txt: 2912) +.brcdn.com +# ||bouncex.com^$third-party (easyprivacy.txt: 2911) +.bouncex.com +# ||bounceexchange.com^$third-party (easyprivacy.txt: 2910) +.bounceexchange.com +# ||botsvisit.com^$third-party (easyprivacy.txt: 2909) +.botsvisit.com +# ||boomtrain.com^$third-party (easyprivacy.txt: 2908) +.boomtrain.com +# ||boomerang.com.au^$third-party (easyprivacy.txt: 2907) +.boomerang.com.au +# ||bnc.lt^$third-party (easyprivacy.txt: 2906) +.bnc.lt +# ||bmmetrix.com^$third-party (easyprivacy.txt: 2905) +.bmmetrix.com +# ||bmlmedia.com^$third-party (easyprivacy.txt: 2904) +.bmlmedia.com +# ||bm324.com^$third-party (easyprivacy.txt: 2903) +.bm324.com +# ||bm23.com^$third-party (easyprivacy.txt: 2902) +.bm23.com +# ||blvdstatus.com^$third-party (easyprivacy.txt: 2901) +.blvdstatus.com +# ||bluekai.com^$third-party (easyprivacy.txt: 2900) +.bluekai.com +# ||bluecava.com^$third-party (easyprivacy.txt: 2899) +.bluecava.com +# ||blogtoplist.com^$third-party (easyprivacy.txt: 2898) +.blogtoplist.com +# ||blogsontop.com^$third-party (easyprivacy.txt: 2897) +.blogsontop.com +# ||blogscounter.com^$third-party (easyprivacy.txt: 2896) +.blogscounter.com +# ||blogreaderproject.com^$third-party (easyprivacy.txt: 2895) +.blogreaderproject.com +# ||blogrankers.com^$third-party (easyprivacy.txt: 2894) +.blogrankers.com +# ||blogpatrol.com^$third-party (easyprivacy.txt: 2893) +.blogpatrol.com +# ||blogmeetsbrand.com^$third-party (easyprivacy.txt: 2892) +.blogmeetsbrand.com +# ||blog-stat.com^$third-party (easyprivacy.txt: 2891) +.blog-stat.com +# ||blockmetrics.com^$third-party (easyprivacy.txt: 2890) +.blockmetrics.com +# ||blizzardcheck.com^$third-party (easyprivacy.txt: 2889) +.blizzardcheck.com +# ||bkvtrack.com^$third-party (easyprivacy.txt: 2888) +.bkvtrack.com +# ||bkrtx.com^$third-party (easyprivacy.txt: 2887) +.bkrtx.com +# ||bizspring.net^$third-party (easyprivacy.txt: 2886) +.bizspring.net +# ||bizo.com^$third-party (easyprivacy.txt: 2885) +.bizo.com +# ||bizible.com^$third-party (easyprivacy.txt: 2884) +.bizible.com +# ||bitrix.info^$third-party (easyprivacy.txt: 2883) +.bitrix.info +# ||bionicclick.com^$third-party (easyprivacy.txt: 2882) +.bionicclick.com +# ||bigtracker.com^$third-party (easyprivacy.txt: 2881) +.bigtracker.com +# ||bigstats.net^$third-party (easyprivacy.txt: 2880) +.bigstats.net +# ||bigmir.net^$third-party (easyprivacy.txt: 2879) +.bigmir.net +# ||bigcattracks.com^$third-party (easyprivacy.txt: 2878) +.bigcattracks.com +# ||bidswitch.net^$third-party (easyprivacy.txt: 2877) +.bidswitch.net +# ||bfoleyinteractive.com^$third-party (easyprivacy.txt: 2876) +.bfoleyinteractive.com +# ||betarget.net^$third-party (easyprivacy.txt: 2875) +.betarget.net +# ||betarget.com^$third-party (easyprivacy.txt: 2874) +.betarget.com +# ||bestweb2013stat.lk^$third-party (easyprivacy.txt: 2873) +.bestweb2013stat.lk +# ||bestcontactform.com^$~image,third-party (easyprivacy.txt: 2872) +.bestcontactform.com +# ||best-top.de^$third-party (easyprivacy.txt: 2871) +.best-top.de +# ||berg-6-82.com^$third-party (easyprivacy.txt: 2870) +.berg-6-82.com +# ||benchit.com^$third-party (easyprivacy.txt: 2869) +.benchit.com +# ||belstat.nl^$third-party (easyprivacy.txt: 2868) +.belstat.nl +# ||belstat.fr^$third-party (easyprivacy.txt: 2867) +.belstat.fr +# ||belstat.de^$third-party (easyprivacy.txt: 2866) +.belstat.de +# ||belstat.com^$third-party (easyprivacy.txt: 2865) +.belstat.com +# ||belstat.ch^$third-party (easyprivacy.txt: 2864) +.belstat.ch +# ||belstat.be^$third-party (easyprivacy.txt: 2863) +.belstat.be +# ||belstat.at^$third-party (easyprivacy.txt: 2862) +.belstat.at +# ||behavioralengine.com^$third-party (easyprivacy.txt: 2861) +.behavioralengine.com +# ||beencounter.com^$third-party (easyprivacy.txt: 2860) +.beencounter.com +# ||beemrdwn.com^$third-party (easyprivacy.txt: 2859) +.beemrdwn.com +# ||bebj.com^$third-party (easyprivacy.txt: 2858) +.bebj.com +# ||beanstock.com^$third-party (easyprivacy.txt: 2857) +.beanstock.com +# ||beanstalkdata.com^$third-party (easyprivacy.txt: 2856) +.beanstalkdata.com +# ||beacon.kmi-us.com^$third-party (easyprivacy.txt: 2855) +.beacon.kmi-us.com +# ||baynote.net^$third-party (easyprivacy.txt: 2854) +.baynote.net +# ||basilic.io^$third-party (easyprivacy.txt: 2853) +.basilic.io +# ||basicstat.com^$third-party (easyprivacy.txt: 2852) +.basicstat.com +# ||barilliance.net^$third-party (easyprivacy.txt: 2851) +.barilliance.net +# ||baptisttop1000.com^$third-party (easyprivacy.txt: 2850) +.baptisttop1000.com +# ||azera-s014.com^$third-party (easyprivacy.txt: 2849) +.azera-s014.com +# ||axf8.net^$third-party (easyprivacy.txt: 2848) +.axf8.net +# ||awmcounter.de^$third-party (easyprivacy.txt: 2847) +.awmcounter.de +# ||awesomelytics.com^$third-party (easyprivacy.txt: 2846) +.awesomelytics.com +# ||awasete.com^$third-party (easyprivacy.txt: 2845) +.awasete.com +# ||avmws.com^$third-party (easyprivacy.txt: 2844) +.avmws.com +# ||avenseo.com^$third-party (easyprivacy.txt: 2843) +.avenseo.com +# ||avazudsp.net^$third-party (easyprivacy.txt: 2842) +.avazudsp.net +# ||avastats.com^$third-party (easyprivacy.txt: 2841) +.avastats.com +# ||avantlink.com^$third-party (easyprivacy.txt: 2840) +.avantlink.com +# ||autoaudience.com^$third-party (easyprivacy.txt: 2839) +.autoaudience.com +# ||autoaffiliatenetwork.com^$third-party (easyprivacy.txt: 2838) +.autoaffiliatenetwork.com +# ||auto-ping.com^$third-party (easyprivacy.txt: 2837) +.auto-ping.com +# ||authorinsights.com^$third-party (easyprivacy.txt: 2836) +.authorinsights.com +# ||audrte.com^$third-party (easyprivacy.txt: 2835) +.audrte.com +# ||audiencerate.com^$third-party (easyprivacy.txt: 2834) +.audiencerate.com +# ||audienceiq.com^$third-party (easyprivacy.txt: 2833) +.audienceiq.com +# ||audienceamplify.com^$third-party (easyprivacy.txt: 2832) +.audienceamplify.com +# ||audience.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 2831) +.audience.visiblemeasures.com +# ||attracta.com^$third-party (easyprivacy.txt: 2830) +.attracta.com +# ||atoshonetwork.com^$third-party (easyprivacy.txt: 2829) +.atoshonetwork.com +# ||athenainstitute.biz^$third-party (easyprivacy.txt: 2828) +.athenainstitute.biz +# ||atatus.com^$third-party (easyprivacy.txt: 2827) +.atatus.com +# ||astro-way.com^$third-party (easyprivacy.txt: 2826) +.astro-way.com +# ||assoctrac.com^$third-party (easyprivacy.txt: 2825) +.assoctrac.com +# ||arturtrack.com^$third-party (easyprivacy.txt: 2824) +.arturtrack.com +# ||arpxs.com^$third-party (easyprivacy.txt: 2823) +.arpxs.com +# ||arpuonline.com^$third-party (easyprivacy.txt: 2822) +.arpuonline.com +# ||arlime.com^$third-party (easyprivacy.txt: 2821) +.arlime.com +# ||arkayne.com^$third-party (easyprivacy.txt: 2820) +.arkayne.com +# ||arena-quantum.co.uk^$third-party (easyprivacy.txt: 2819) +.arena-quantum.co.uk +# ||arch-nicto.com^$third-party (easyprivacy.txt: 2818) +.arch-nicto.com +# ||arcadeweb.com^$third-party (easyprivacy.txt: 2817) +.arcadeweb.com +# ||aqtracker.com^$third-party (easyprivacy.txt: 2816) +.aqtracker.com +# ||appboycdn.com^$third-party (easyprivacy.txt: 2815) +.appboycdn.com +# ||apollofind.com^$third-party (easyprivacy.txt: 2814) +.apollofind.com +# ||apicit.net^$third-party (easyprivacy.txt: 2813) +.apicit.net +# ||apextwo.com^$third-party (easyprivacy.txt: 2812) +.apextwo.com +# ||apexstats.com^$third-party (easyprivacy.txt: 2811) +.apexstats.com +# ||anti-cheat.info^$third-party (easyprivacy.txt: 2810) +.anti-cheat.info +# ||anonymousdmp.com^$third-party (easyprivacy.txt: 2809) +.anonymousdmp.com +# ||angsrvr.com^$third-party (easyprivacy.txt: 2808) +.angsrvr.com +# ||angelfishstats.com^$third-party (easyprivacy.txt: 2807) +.angelfishstats.com +# ||anexia-it.com^$third-party (easyprivacy.txt: 2806) +.anexia-it.com +# ||anatid3.com^$third-party (easyprivacy.txt: 2805) +.anatid3.com +# ||anametrix.net^$third-party (easyprivacy.txt: 2804) +.anametrix.net +# ||anametrix.com^$third-party (easyprivacy.txt: 2803) +.anametrix.com +# ||analytk.com^$third-party (easyprivacy.txt: 2802) +.analytk.com +# ||analyticswizard.com^$third-party (easyprivacy.txt: 2801) +.analyticswizard.com +# ||analytics-engine.net^$third-party (easyprivacy.txt: 2800) +.analytics-engine.net +# ||analytics-egain.com^$third-party (easyprivacy.txt: 2799) +.analytics-egain.com +# ||analysistools.net^$third-party (easyprivacy.txt: 2798) +.analysistools.net +# ||analoganalytics.com^$third-party (easyprivacy.txt: 2797) +.analoganalytics.com +# ||amxdt.com^$third-party (easyprivacy.txt: 2796) +.amxdt.com +# ||amung.us^$third-party (easyprivacy.txt: 2795) +.amung.us +# ||amikay.com^$third-party (easyprivacy.txt: 2794) +.amikay.com +# ||amctp.net^$third-party (easyprivacy.txt: 2793) +.amctp.net +# ||ambercrow.com^$third-party (easyprivacy.txt: 2792) +.ambercrow.com +# ||amazingcounters.com^$third-party (easyprivacy.txt: 2791) +.amazingcounters.com +# ||amavalet.com^$third-party (easyprivacy.txt: 2790) +.amavalet.com +# ||amadesa.com^$third-party (easyprivacy.txt: 2789) +.amadesa.com +# ||alzexa.com^$third-party (easyprivacy.txt: 2788) +.alzexa.com +# ||alvenda.com^$third-party (easyprivacy.txt: 2787) +.alvenda.com +# ||altastat.com^$third-party (easyprivacy.txt: 2786) +.altastat.com +# ||alnera.eu^$third-party (easyprivacy.txt: 2785) +.alnera.eu +# ||alltracked.com^$third-party (easyprivacy.txt: 2784) +.alltracked.com +# ||alltagcloud.info^$third-party (easyprivacy.txt: 2783) +.alltagcloud.info +# ||alexametrics.com^$third-party (easyprivacy.txt: 2782) +.alexametrics.com +# ||alexacdn.com^$third-party (easyprivacy.txt: 2781) +.alexacdn.com +# ||alenty.com^$third-party (easyprivacy.txt: 2780) +.alenty.com +# ||akstat.com^$third-party (easyprivacy.txt: 2779) +.akstat.com +# ||airpr.com^$third-party (easyprivacy.txt: 2778) +.airpr.com +# ||aimediagroup.com^$third-party (easyprivacy.txt: 2777) +.aimediagroup.com +# ||agkn.com^$third-party (easyprivacy.txt: 2776) +.agkn.com +# ||agilone.com^$third-party (easyprivacy.txt: 2775) +.agilone.com +# ||agentinteractive.com^$third-party (easyprivacy.txt: 2774) +.agentinteractive.com +# ||agencytradingdesk.net^$third-party (easyprivacy.txt: 2773) +.agencytradingdesk.net +# ||affistats.com^$third-party (easyprivacy.txt: 2772) +.affistats.com +# ||affinitymatrix.com^$third-party (easyprivacy.txt: 2771) +.affinitymatrix.com +# ||affinesystems.com^$third-party (easyprivacy.txt: 2770) +.affinesystems.com +# ||affiliatetrackingsetup.com^$third-party (easyprivacy.txt: 2769) +.affiliatetrackingsetup.com +# ||affiliates-pro.com^$third-party (easyprivacy.txt: 2768) +.affiliates-pro.com +# ||affiliateedge.eu^$third-party (easyprivacy.txt: 2767) +.affiliateedge.eu +# ||affilae.com^$third-party (easyprivacy.txt: 2766) +.affilae.com +# ||adyapper.com^$third-party (easyprivacy.txt: 2765) +.adyapper.com +# ||advconversion.com^$third-party (easyprivacy.txt: 2764) +.advconversion.com +# ||advanced-web-analytics.com^$third-party (easyprivacy.txt: 2763) +.advanced-web-analytics.com +# ||adultblogtoplist.com^$third-party (easyprivacy.txt: 2762) +.adultblogtoplist.com +# ||adtelligence.de^$third-party (easyprivacy.txt: 2761) +.adtelligence.de +# ||adtarget.me^$third-party (easyprivacy.txt: 2760) +.adtarget.me +# ||adsymptotic.com^$third-party (easyprivacy.txt: 2759) +.adsymptotic.com +# ||adsensedetective.com^$third-party (easyprivacy.txt: 2758) +.adsensedetective.com +# ||adprotraffic.com^$third-party (easyprivacy.txt: 2757) +.adprotraffic.com +# ||adoftheyear.com^$third-party (easyprivacy.txt: 2756) +.adoftheyear.com +# ||adobetag.com^$third-party (easyprivacy.txt: 2755) +.adobetag.com +# ||adku.com^$third-party (easyprivacy.txt: 2754) +.adku.com +# ||adku.co^$third-party (easyprivacy.txt: 2753) +.adku.co +# ||adinsight.eu^$third-party (easyprivacy.txt: 2752) +.adinsight.eu +# ||adinsight.com^$third-party (easyprivacy.txt: 2751) +.adinsight.com +# ||adgreed.com^$third-party (easyprivacy.txt: 2750) +.adgreed.com +# ||adelixir.com^$third-party (easyprivacy.txt: 2749) +.adelixir.com +# ||addlvr.com^$third-party (easyprivacy.txt: 2748) +.addlvr.com +# ||addfreestats.com^$third-party (easyprivacy.txt: 2747) +.addfreestats.com +# ||adclickstats.net^$third-party (easyprivacy.txt: 2746) +.adclickstats.net +# ||adchemy.com^$third-party (easyprivacy.txt: 2745) +.adchemy.com +# ||adchemy-content.com^$third-party (easyprivacy.txt: 2744) +.adchemy-content.com +# ||adchemix.com^$third-party (easyprivacy.txt: 2743) +.adchemix.com +# ||ad-score.com^$third-party (easyprivacy.txt: 2742) +.ad-score.com +# ||acxiom-online.com^$third-party (easyprivacy.txt: 2741) +.acxiom-online.com +# ||actnx.com^$third-party (easyprivacy.txt: 2740) +.actnx.com +# ||activeprospects.com^$third-party (easyprivacy.txt: 2739) +.activeprospects.com +# ||activemeter.com^$third-party (easyprivacy.txt: 2738) +.activemeter.com +# ||activeconversion.com^$third-party (easyprivacy.txt: 2737) +.activeconversion.com +# ||active-trk7.com^$third-party (easyprivacy.txt: 2736) +.active-trk7.com +# ||acq.io^$third-party (easyprivacy.txt: 2735) +.acq.io +# ||acint.net^$third-party (easyprivacy.txt: 2734) +.acint.net +# ||acetrk.com^$third-party (easyprivacy.txt: 2733) +.acetrk.com +# ||acestats.net^$third-party (easyprivacy.txt: 2732) +.acestats.net +# ||acecounter.com^$third-party (easyprivacy.txt: 2731) +.acecounter.com +# ||accessintel.com^$third-party (easyprivacy.txt: 2730) +.accessintel.com +# ||access-traffic.com^$third-party (easyprivacy.txt: 2729) +.access-traffic.com +# ||access-analyze.org^$third-party (easyprivacy.txt: 2728) +.access-analyze.org +# ||acc-hd.de^$third-party (easyprivacy.txt: 2727) +.acc-hd.de +# ||absolstats.co.za^$third-party (easyprivacy.txt: 2726) +.absolstats.co.za +# ||abmr.net^$third-party (easyprivacy.txt: 2725) +.abmr.net +# ||abcstats.com^$third-party (easyprivacy.txt: 2724) +.abcstats.com +# ||aaddzz.com^$third-party (easyprivacy.txt: 2723) +.aaddzz.com +# ||a8ww.net^$third-party (easyprivacy.txt: 2722) +.a8ww.net +# ||a8.net^$third-party (easyprivacy.txt: 2721) +.a8.net +# ||a013.com^$third-party (easyprivacy.txt: 2720) +.a013.com +# ||a-pagerank.net^$third-party (easyprivacy.txt: 2719) +.a-pagerank.net +# ||a-counters.com^$third-party (easyprivacy.txt: 2718) +.a-counters.com +# ||9nl.eu^$third-party (easyprivacy.txt: 2717) +.9nl.eu +# ||99stats.com^$third-party (easyprivacy.txt: 2716) +.99stats.com +# ||99counters.com^$third-party (easyprivacy.txt: 2715) +.99counters.com +# ||8020solutions.net^$third-party (easyprivacy.txt: 2714) +.8020solutions.net +# ||7eer.net^$third-party (easyprivacy.txt: 2713) +.7eer.net +# ||7bpeople.com^$third-party (easyprivacy.txt: 2712) +.7bpeople.com +# ||77tracking.com^$third-party (easyprivacy.txt: 2710) +.77tracking.com +# ||74.55.82.102^$third-party (easyprivacy.txt: 2709) +.74.55.82.102 +# ||72.172.88.25^$third-party (easyprivacy.txt: 2708) +.72.172.88.25 +# ||67.228.151.70^$third-party (easyprivacy.txt: 2707) +.67.228.151.70 +# ||66.228.52.30^$third-party (easyprivacy.txt: 2706) +.66.228.52.30 +# ||62.160.52.73^$third-party (easyprivacy.txt: 2705) +.62.160.52.73 +# ||55labs.com^$third-party (easyprivacy.txt: 2704) +.55labs.com +# ||4oney.com^$third-party (easyprivacy.txt: 2703) +.4oney.com +# ||3gl.net^$third-party (easyprivacy.txt: 2702) +.3gl.net +# ||3dstats.com^$third-party (easyprivacy.txt: 2701) +.3dstats.com +# ||3dlivestats.com^$third-party (easyprivacy.txt: 2700) +.3dlivestats.com +# ||360tag.net^$third-party (easyprivacy.txt: 2699) +.360tag.net +# ||360tag.com^$third-party (easyprivacy.txt: 2698) +.360tag.com +# ||360i.com^$third-party (easyprivacy.txt: 2697) +.360i.com +# ||33across.com^$third-party (easyprivacy.txt: 2696) +.33across.com +# ||2o7.net^$third-party (easyprivacy.txt: 2695) +.2o7.net +# ||2cnt.net^$third-party (easyprivacy.txt: 2694) +.2cnt.net +# ||24log.com^$third-party (easyprivacy.txt: 2693) +.24log.com +# ||24counter.com^$third-party (easyprivacy.txt: 2692) +.24counter.com +# ||247ilabs.com^$third-party (easyprivacy.txt: 2691) +.247ilabs.com +# ||212.227.100.108^$third-party (easyprivacy.txt: 2689) +.212.227.100.108 +# ||206solutions.com^$third-party (easyprivacy.txt: 2687) +.206solutions.com +# ||204st.us^$third-party (easyprivacy.txt: 2686) +.204st.us +# ||200summit.com^$third-party (easyprivacy.txt: 2685) +.200summit.com +# ||1pel.com^$third-party (easyprivacy.txt: 2684) +.1pel.com +# ||1freecounter.com^$third-party (easyprivacy.txt: 2683) +.1freecounter.com +# ||195.10.245.55^$third-party (easyprivacy.txt: 2682) +.195.10.245.55 +# ||149.13.65.144^$third-party (easyprivacy.txt: 2681) +.149.13.65.144 +# ||123count.com^$third-party (easyprivacy.txt: 2680) +.123count.com +# ||11nux.com^$third-party (easyprivacy.txt: 2679) +.11nux.com +# ||103bees.com^$third-party (easyprivacy.txt: 2678) +.103bees.com +# ||100im.info^$third-party (easyprivacy.txt: 2677) +.100im.info +# ||1-cl0ud.com^$third-party (easyprivacy.txt: 2676) +.1-cl0ud.com +# ||0tracker.com^$third-party (easyprivacy.txt: 2675) +.0tracker.com +# ://top.*/hit/ (easyprivacy.txt: 2672) +/.*://top\..*/hit/ +top.*./(.*/)?hit/ +# ://top.*/count/cnt.php? (easyprivacy.txt: 2671) +/.*://top\..*/count/cnt\.php\? +top.*./(.*/)?count/cnt\.php\? +# ://ivw.*/get?referrer= (easyprivacy.txt: 2670) +/.*://ivw\..*/get\?referrer= +ivw.*./(.*/)?get\?referrer= +# /img.php?id=*&page= (easyprivacy.txt: 2669) +/(.*/)?img\.php\?id=.*&page= +# /cdn-cgi/pe/bag2?*yieldbot.intent.js (easyprivacy.txt: 2667) +/(.*/)?cdn-cgi/pe/bag2\?.*yieldbot\.intent\.js +# /cdn-cgi/pe/bag2?*viglink.com (easyprivacy.txt: 2666) +/(.*/)?cdn-cgi/pe/bag2\?.*viglink\.com +# /cdn-cgi/pe/bag2?*static.getclicky.com%2Fjs (easyprivacy.txt: 2665) +/(.*/)?cdn-cgi/pe/bag2\?.*static\.getclicky\.com%2Fjs +# /cdn-cgi/pe/bag2?*scorecardresearch.com (easyprivacy.txt: 2664) +/(.*/)?cdn-cgi/pe/bag2\?.*scorecardresearch\.com +# /cdn-cgi/pe/bag2?*radarurl.com (easyprivacy.txt: 2663) +/(.*/)?cdn-cgi/pe/bag2\?.*radarurl\.com +# /cdn-cgi/pe/bag2?*quantserve.com (easyprivacy.txt: 2662) +/(.*/)?cdn-cgi/pe/bag2\?.*quantserve\.com +# /cdn-cgi/pe/bag2?*piwik.js (easyprivacy.txt: 2661) +/(.*/)?cdn-cgi/pe/bag2\?.*piwik\.js +# /cdn-cgi/pe/bag2?*optimizely.com (easyprivacy.txt: 2660) +/(.*/)?cdn-cgi/pe/bag2\?.*optimizely\.com +# /cdn-cgi/pe/bag2?*nr-data.net (easyprivacy.txt: 2659) +/(.*/)?cdn-cgi/pe/bag2\?.*nr-data\.net +# /cdn-cgi/pe/bag2?*newrelic.com (easyprivacy.txt: 2658) +/(.*/)?cdn-cgi/pe/bag2\?.*newrelic\.com +# /cdn-cgi/pe/bag2?*mc.yandex.ru (easyprivacy.txt: 2657) +/(.*/)?cdn-cgi/pe/bag2\?.*mc\.yandex\.ru +# /cdn-cgi/pe/bag2?*log.outbrain.com (easyprivacy.txt: 2656) +/(.*/)?cdn-cgi/pe/bag2\?.*log\.outbrain\.com +# /cdn-cgi/pe/bag2?*histats.com (easyprivacy.txt: 2655) +/(.*/)?cdn-cgi/pe/bag2\?.*histats\.com +# /cdn-cgi/pe/bag2?*google-analytics.com%2Fanalytics.js (easyprivacy.txt: 2654) +/(.*/)?cdn-cgi/pe/bag2\?.*google-analytics\.com%2Fanalytics\.js +# /cdn-cgi/pe/bag2?*geoiplookup (easyprivacy.txt: 2653) +/(.*/)?cdn-cgi/pe/bag2\?.*geoiplookup +# /cdn-cgi/pe/bag2?*dnn506yrbagrg.cloudfront.net (easyprivacy.txt: 2652) +/(.*/)?cdn-cgi/pe/bag2\?.*dnn506yrbagrg\.cloudfront\.net +# /wp-admin/admin-ajax.php?action=adblockvisitor$~third-party (easyprivacy.txt: 2650) +/(.*/)?wp-admin/admin-ajax\.php\?action=adblockvisitor +# /adblock?action= (easyprivacy.txt: 2649) +/(.*/)?adblock\?action= +# /adb.policy.js (easyprivacy.txt: 2648) +/(.*/)?adb\.policy\.js +adb.policy.js*. +# -logabpstatus. (easyprivacy.txt: 2647) +/.*-logabpstatus\. +.*-logabpstatus.*. +# ||meetrics.netbb- (easyprivacy.txt: 2645) +.meetrics.netbb-*. +# cgi-bin/counter (easyprivacy.txt: 2643) +/.*cgi-bin/counter +.*cgi-bin/counter +# _zag_cookie. (easyprivacy.txt: 2642) +/.*_zag_cookie\. +# _wreport.fcgi? (easyprivacy.txt: 2641) +/.*_wreport\.fcgi\? +# _wiselog_ (easyprivacy.txt: 2640) +/.*_wiselog_ +# _webiq. (easyprivacy.txt: 2639) +/.*_webiq\. +# _webanalytics. (easyprivacy.txt: 2638) +/.*_webanalytics\. +# _web_stat.js (easyprivacy.txt: 2637) +/.*_web_stat\.js +# _url_tracking. (easyprivacy.txt: 2636) +/.*_url_tracking\. +# _trans_1px. (easyprivacy.txt: 2635) +/.*_trans_1px\. +# _trafficTracking. (easyprivacy.txt: 2634) +/.*_trafficTracking\. +# _tracker_min. (easyprivacy.txt: 2633) +/.*_tracker_min\. +# _tracker.php?*http (easyprivacy.txt: 2632) +/.*_tracker\.php\?.*http +# _tracker.js? (easyprivacy.txt: 2631) +/.*_tracker\.js\? +# _tracker.js. (easyprivacy.txt: 2630) +/.*_tracker\.js\. +# _Tacoda_ (easyprivacy.txt: 2629) +/.*_Tacoda_ +# _stats_log. (easyprivacy.txt: 2628) +/.*_stats_log\. +# _stats/Logger? (easyprivacy.txt: 2627) +/.*_stats/Logger\? +# _stats.js? (easyprivacy.txt: 2626) +/.*_stats\.js\? +# _social_tracking. (easyprivacy.txt: 2625) +/.*_social_tracking\. +# _setAnalyticsFields& (easyprivacy.txt: 2624) +/.*_setAnalyticsFields& +# _semanticTag/ (easyprivacy.txt: 2623) +/.*_semanticTag/ +# _sdctag2. (easyprivacy.txt: 2622) +/.*_sdctag2\. +# _sdctag1_ (easyprivacy.txt: 2621) +/.*_sdctag1_ +# _quantcast.swf (easyprivacy.txt: 2620) +/.*_quantcast\.swf +# _promo_id= (easyprivacy.txt: 2619) +/.*_promo_id= +# _pixelmap.js (easyprivacy.txt: 2618) +/.*_pixelmap\.js +# _ntpagetag. (easyprivacy.txt: 2617) +/.*_ntpagetag\. +# _NielsenNetRatings. (easyprivacy.txt: 2616) +/.*_NielsenNetRatings\. +# _nielsen.js (easyprivacy.txt: 2615) +/.*_nielsen\.js +# _nedstat.js (easyprivacy.txt: 2614) +/.*_nedstat\.js +# _metricsTagging. (easyprivacy.txt: 2613) +/.*_metricsTagging\. +# _m10banners/tracking.php? (easyprivacy.txt: 2612) +/.*_m10banners/tracking\.php\? +# _logimpressions. (easyprivacy.txt: 2611) +/.*_logimpressions\. +# _logHuman= (easyprivacy.txt: 2610) +/.*_logHuman= +# _landingLog/ (easyprivacy.txt: 2609) +/.*_landingLog/ +# _impressions.gif? (easyprivacy.txt: 2608) +/.*_impressions\.gif\? +# _imp_logging? (easyprivacy.txt: 2607) +/.*_imp_logging\? +# _imp?Log= (easyprivacy.txt: 2606) +/.*_imp\?Log= +# _i2a.js (easyprivacy.txt: 2605) +/.*_i2a\.js +# _hptag.asis? (easyprivacy.txt: 2604) +/.*_hptag\.asis\? +# _googleAnalytics_ (easyprivacy.txt: 2603) +/.*_googleAnalytics_ +# _googleAnalytics. (easyprivacy.txt: 2602) +/.*_googleAnalytics\. +# _google_analytics. (easyprivacy.txt: 2601) +/.*_google_analytics\. +# _global_analytics_ (easyprivacy.txt: 2600) +/.*_global_analytics_ +# _gaTrack.js (easyprivacy.txt: 2599) +/.*_gaTrack\.js +# _ga_tag. (easyprivacy.txt: 2598) +/.*_ga_tag\. +# _ga_code. (easyprivacy.txt: 2597) +/.*_ga_code\. +# _empty.ad? (easyprivacy.txt: 2596) +/.*_empty\.ad\? +# _effectivemeasure_tag.js (easyprivacy.txt: 2595) +/.*_effectivemeasure_tag\.js +# _directtrack.js (easyprivacy.txt: 2594) +/.*_directtrack\.js +# _ComScore. (easyprivacy.txt: 2593) +/.*_ComScore\. +# _clickTracking. (easyprivacy.txt: 2592) +/.*_clickTracking\. +# _clicktrack.asp? (easyprivacy.txt: 2591) +/.*_clicktrack\.asp\? +# _Clicktale. (easyprivacy.txt: 2590) +/.*_Clicktale\. +# _clickability/ (easyprivacy.txt: 2589) +/.*_clickability/ +# _check.php?referer (easyprivacy.txt: 2588) +/.*_check\.php\?referer +# _chartbeat.js (easyprivacy.txt: 2587) +/.*_chartbeat\.js +# _cedexis. (easyprivacy.txt: 2586) +/.*_cedexis\. +# _browsermetrix. (easyprivacy.txt: 2585) +/.*_browsermetrix\. +# _beacon? (easyprivacy.txt: 2584) +/.*_beacon\? +# _baynote. (easyprivacy.txt: 2583) +/.*_baynote\. +# _astatspro/ (easyprivacy.txt: 2582) +/.*_astatspro/ +# _analytics.php? (easyprivacy.txt: 2581) +/.*_analytics\.php\? +# _Analytics.js? (easyprivacy.txt: 2580) +/.*_Analytics\.js\? +# _adcenterconversion. (easyprivacy.txt: 2579) +/.*_adcenterconversion\. +# _247seotracking. (easyprivacy.txt: 2578) +/.*_247seotracking\. +# ^name=atatracker^ (easyprivacy.txt: 2577) +/(.*[^\w%.-])?name=atatracker[^\w%.-] +# ?wpgb_public_action=*&referrer= (easyprivacy.txt: 2576) +/.*\?wpgb_public_action=.*&referrer= +# ?triggertags= (easyprivacy.txt: 2575) +/.*\?triggertags= +# ?token=*&sessionid=*&visitorid= (easyprivacy.txt: 2574) +/.*\?token=.*&sessionid=.*&visitorid= +# ?stwc_cz= (easyprivacy.txt: 2573) +/.*\?stwc_cz= +# ?ref=*&itemcnt= (easyprivacy.txt: 2572) +/.*\?ref=.*&itemcnt= +# ?record&*&serve_js (easyprivacy.txt: 2571) +/.*\?record&.*&serve_js +# ?googleTrack= (easyprivacy.txt: 2570) +/.*\?googleTrack= +# ?eventtype=request&pid= (easyprivacy.txt: 2569) +/.*\?eventtype=request&pid= +# ?eventtype=impression&pid= (easyprivacy.txt: 2568) +/.*\?eventtype=impression&pid= +# ?event=log& (easyprivacy.txt: 2567) +/.*\?event=log& +# ?event=General.track (easyprivacy.txt: 2566) +/.*\?event=General\.track +# ?criteoTrack= (easyprivacy.txt: 2565) +/.*\?criteoTrack= +# ?affiliate=$third-party (easyprivacy.txt: 2564) +/.*\?affiliate= +# ?action=tracking_script (easyprivacy.txt: 2563) +/.*\?action=tracking_script +# ?action=track_visitor& (easyprivacy.txt: 2562) +/.*\?action=track_visitor& +# ?_siteid= (easyprivacy.txt: 2561) +/.*\?_siteid= +# ?[AQB]&ndh=1&t= (easyprivacy.txt: 2560) +/.*\?\[AQB\]&ndh=1&t= +# ?&anticache=*filename.gif (easyprivacy.txt: 2559) +/.*\?&anticache=.*filename\.gif +# =track_view& (easyprivacy.txt: 2558) +/.*=track_view& +# =stats&action= (easyprivacy.txt: 2557) +/.*=stats&action= +# =ATAtracker& (easyprivacy.txt: 2556) +/.*=ATAtracker& +# =&cs_Referer= (easyprivacy.txt: 2555) +/.*=&cs_Referer= +# ://tracking.*/beacon/ (easyprivacy.txt: 2554) +/.*://tracking\..*/beacon/ +tracking.*./(.*/)?beacon/ +# ://sett.*/log.js (easyprivacy.txt: 2553) +/.*://sett\..*/log\.js +sett.*./(.*/)?log\.js +# ://piwik.$third-party (easyprivacy.txt: 2552) +/.*://piwik\. +piwik.*. +# ://mint.*/?js (easyprivacy.txt: 2551) +/.*://mint\..*/\?js +mint.*./(.*/)?\?js +# ://ivwextern. (easyprivacy.txt: 2550) +/.*://ivwextern\. +ivwextern.*. +# ://gdyn.*/1.gif? (easyprivacy.txt: 2549) +/.*://gdyn\..*/1\.gif\? +gdyn.*./(.*/)?1\.gif\? +# ://eulerian.*/ea.js (easyprivacy.txt: 2548) +/.*://eulerian\..*/ea\.js +eulerian.*./(.*/)?ea\.js +# ://email.*/blankpixel.gif (easyprivacy.txt: 2547) +/.*://email\..*/blankpixel\.gif +email.*./(.*/)?blankpixel\.gif +# ://click.*/open.aspx? (easyprivacy.txt: 2546) +/.*://click\..*/open\.aspx\? +click.*./(.*/)?open\.aspx\? +# ://c1.*/c.gif? (easyprivacy.txt: 2545) +/.*://c1\..*/c\.gif\? +c1.*./(.*/)?c\.gif\? +# ://c.*/c.gif? (easyprivacy.txt: 2544) +/.*://c\..*/c\.gif\? +c.*./(.*/)?c\.gif\? +# ://b.*/vanity/? (easyprivacy.txt: 2543) +/.*://b\..*/vanity/\? +b.*./(.*/)?vanity/\? +# ://b.*/ping? (easyprivacy.txt: 2542) +/.*://b\..*/ping\? +b.*./(.*/)?ping\? +# ://b.*/click? (easyprivacy.txt: 2541) +/.*://b\..*/click\? +b.*./(.*/)?click\? +# ://apex.*/apexTarget? (easyprivacy.txt: 2540) +/.*://apex\..*/apexTarget\? +apex.*./(.*/)?apexTarget\? +# ://anx.*/tr.gif? (easyprivacy.txt: 2539) +/.*://anx\..*/tr\.gif\? +anx.*./(.*/)?tr\.gif\? +# ://anx.*/anx.gif? (easyprivacy.txt: 2538) +/.*://anx\..*/anx\.gif\? +anx.*./(.*/)?anx\.gif\? +# ://adclear.*/acv? (easyprivacy.txt: 2537) +/.*://adclear\..*/acv\? +adclear.*./(.*/)?acv\? +# ://adclear.*/acc? (easyprivacy.txt: 2536) +/.*://adclear\..*/acc\? +adclear.*./(.*/)?acc\? +# /~utm_gif? (easyprivacy.txt: 2535) +/(.*/)?~utm_gif\? +# /~r/Slashdot/slashdot/* (easyprivacy.txt: 2534) +/(.*/)?~r/Slashdot/slashdot/.* +# /zone-log. (easyprivacy.txt: 2533) +/(.*/)?zone-log\. +zone-log.*. +# /zonapixel. (easyprivacy.txt: 2532) +/(.*/)?zonapixel\. +zonapixel.*. +# /zemtracker. (easyprivacy.txt: 2531) +/(.*/)?zemtracker\. +zemtracker.*. +# /zdgurgler.min.js (easyprivacy.txt: 2530) +/(.*/)?zdgurgler\.min\.js +zdgurgler.min.js*. +# /zanox.js (easyprivacy.txt: 2529) +/(.*/)?zanox\.js +zanox.js*. +# /ZagUser.js (easyprivacy.txt: 2528) +/(.*/)?ZagUser\.js +ZagUser.js*. +# /zagcookie. (easyprivacy.txt: 2527) +/(.*/)?zagcookie\. +zagcookie.*. +# /zag.gif? (easyprivacy.txt: 2526) +/(.*/)?zag\.gif\? +# /YuduStatistics/* (easyprivacy.txt: 2525) +/(.*/)?YuduStatistics/.* +# /ystat.js (easyprivacy.txt: 2524) +/(.*/)?ystat\.js +ystat.js*. +# /ystat.do (easyprivacy.txt: 2523) +/(.*/)?ystat\.do +ystat.do*. +# /ybn_pixel/* (easyprivacy.txt: 2522) +/(.*/)?ybn_pixel/.* +# /yandex-metrika.js (easyprivacy.txt: 2521) +/(.*/)?yandex-metrika\.js +yandex-metrika.js*. +# /yalst/pixel*.php? (easyprivacy.txt: 2520) +/(.*/)?yalst/pixel.*\.php\? +# /yahooTracker/* (easyprivacy.txt: 2519) +/(.*/)?yahooTracker/.* +# /yahooBeacon. (easyprivacy.txt: 2518) +/(.*/)?yahooBeacon\. +yahooBeacon.*. +# /yahoo_marketing.js (easyprivacy.txt: 2517) +/(.*/)?yahoo_marketing\.js +# /yahoo-beacon.js (easyprivacy.txt: 2516) +/(.*/)?yahoo-beacon\.js +yahoo-beacon.js*. +# /xtroi.js (easyprivacy.txt: 2515) +/(.*/)?xtroi\.js +xtroi.js*. +# /xtrack.png? (easyprivacy.txt: 2514) +/(.*/)?xtrack\.png\? +# /xtrack.php? (easyprivacy.txt: 2513) +/(.*/)?xtrack\.php\? +# /xtplugar. (easyprivacy.txt: 2512) +/(.*/)?xtplugar\. +xtplugar.*. +# /xtplug. (easyprivacy.txt: 2511) +/(.*/)?xtplug\. +xtplug.*. +# /xtcoreSimpleTag. (easyprivacy.txt: 2510) +/(.*/)?xtcoreSimpleTag\. +xtcoreSimpleTag.*. +# /xtcore_ (easyprivacy.txt: 2509) +/(.*/)?xtcore_ +# /xtclicks_ (easyprivacy.txt: 2508) +/(.*/)?xtclicks_ +# /xtclicks. (easyprivacy.txt: 2507) +/(.*/)?xtclicks\. +xtclicks.*. +# /xtclicks-$script (easyprivacy.txt: 2506) +/(.*/)?xtclicks- +xtclicks-*. +# /xtclick. (easyprivacy.txt: 2505) +/(.*/)?xtclick\. +xtclick.*. +# /xtanalyzer_roi. (easyprivacy.txt: 2504) +/(.*/)?xtanalyzer_roi\. +# /xstat.aspx? (easyprivacy.txt: 2503) +/(.*/)?xstat\.aspx\? +# /xn_track. (easyprivacy.txt: 2502) +/(.*/)?xn_track\. +# /xmint/?js (easyprivacy.txt: 2501) +/(.*/)?xmint/\?js +# /xitistatus.js (easyprivacy.txt: 2500) +/(.*/)?xitistatus\.js +xitistatus.js*. +# /xiti.js (easyprivacy.txt: 2499) +/(.*/)?xiti\.js +xiti.js*. +# /xitcore-min.js (easyprivacy.txt: 2498) +/(.*/)?xitcore-min\.js +xitcore-min.js*. +# /xgenius. (easyprivacy.txt: 2497) +/(.*/)?xgenius\. +xgenius.*. +# /xgemius_v2. (easyprivacy.txt: 2496) +/(.*/)?xgemius_v2\. +# /xgemius_lv. (easyprivacy.txt: 2495) +/(.*/)?xgemius_lv\. +# /xgemius. (easyprivacy.txt: 2494) +/(.*/)?xgemius\. +xgemius.*. +# /xboxcom_pv?c=$image (easyprivacy.txt: 2493) +/(.*/)?xboxcom_pv\?c= +# /wz_logging. (easyprivacy.txt: 2492) +/(.*/)?wz_logging\. +# /wysistat.js (easyprivacy.txt: 2491) +/(.*/)?wysistat\.js +wysistat.js*. +# /WWTracking_ (easyprivacy.txt: 2490) +/(.*/)?WWTracking_ +# /wv326redirect_ (easyprivacy.txt: 2489) +/(.*/)?wv326redirect_ +# /wusage_screen_properties.gif? (easyprivacy.txt: 2488) +/(.*/)?wusage_screen_properties\.gif\? +# /wtinit.js (easyprivacy.txt: 2487) +/(.*/)?wtinit\.js +wtinit.js*. +# /wtid.js (easyprivacy.txt: 2486) +/(.*/)?wtid\.js +wtid.js*. +# /wtd.gif? (easyprivacy.txt: 2485) +/(.*/)?wtd\.gif\? +# /wtcore.js (easyprivacy.txt: 2484) +/(.*/)?wtcore\.js +wtcore.js*. +# /wtbase.js (easyprivacy.txt: 2483) +/(.*/)?wtbase\.js +wtbase.js*. +# /wt_capi.js (easyprivacy.txt: 2482) +/(.*/)?wt_capi\.js +# /wstat.pl (easyprivacy.txt: 2481) +/(.*/)?wstat\.pl +wstat.pl*. +# /written-analytics. (easyprivacy.txt: 2480) +/(.*/)?written-analytics\. +written-analytics.*. +# /writrak. (easyprivacy.txt: 2479) +/(.*/)?writrak\. +writrak.*. +# /WritePartnerCookie?$third-party (easyprivacy.txt: 2478) +/(.*/)?WritePartnerCookie\? +# /writelog. (easyprivacy.txt: 2477) +/(.*/)?writelog\. +writelog.*. +# /WRb.js (easyprivacy.txt: 2476) +/(.*/)?WRb\.js +WRb.js*. +# /Wrappers?cmd= (easyprivacy.txt: 2475) +/(.*/)?Wrappers\?cmd= +# /wrapper/quantcast.swf (easyprivacy.txt: 2474) +/(.*/)?wrapper/quantcast\.swf +# /wpblog.gif? (easyprivacy.txt: 2473) +/(.*/)?wpblog\.gif\? +# /wp_stat.php? (easyprivacy.txt: 2472) +/(.*/)?wp_stat\.php\? +# /wp.gif?wpi (easyprivacy.txt: 2471) +/(.*/)?wp\.gif\?wpi +# /wp-useronline/useronline. (easyprivacy.txt: 2470) +/(.*/)?wp-useronline/useronline\. +# /wp-stat/* (easyprivacy.txt: 2469) +/(.*/)?wp-stat/.* +# /wp-slimstat/* (easyprivacy.txt: 2468) +/(.*/)?wp-slimstat/.* +# /wp-powerstat/* (easyprivacy.txt: 2467) +/(.*/)?wp-powerstat/.* +# /wp-js/analytics.js? (easyprivacy.txt: 2466) +/(.*/)?wp-js/analytics\.js\? +# /wp-counter.php (easyprivacy.txt: 2465) +/(.*/)?wp-counter\.php +wp-counter.php*. +# /wp-content/tracker. (easyprivacy.txt: 2464) +/(.*/)?wp-content/tracker\. +# /wp-content/plugins/stats/count.php? (easyprivacy.txt: 2463) +/(.*/)?wp-content/plugins/stats/count\.php\? +# /wp-clickmap/* (easyprivacy.txt: 2462) +/(.*/)?wp-clickmap/.* +# /wp-click-track/* (easyprivacy.txt: 2461) +/(.*/)?wp-click-track/.* +# /woopra.js (easyprivacy.txt: 2460) +/(.*/)?woopra\.js +woopra.js*. +# /wmxtracker.js (easyprivacy.txt: 2459) +/(.*/)?wmxtracker\.js +wmxtracker.js*. +# /wlog.php? (easyprivacy.txt: 2458) +/(.*/)?wlog\.php\? +# /wlexpert_tracker/* (easyprivacy.txt: 2457) +/(.*/)?wlexpert_tracker/.* +# /wlexpert_tracker. (easyprivacy.txt: 2456) +/(.*/)?wlexpert_tracker\. +# /wjcountercore. (easyprivacy.txt: 2455) +/(.*/)?wjcountercore\. +wjcountercore.*. +# /wjcounter. (easyprivacy.txt: 2454) +/(.*/)?wjcounter\. +wjcounter.*. +# /wjcounter- (easyprivacy.txt: 2453) +/(.*/)?wjcounter- +wjcounter-*. +# /wildfire/i/CIMP.gif? (easyprivacy.txt: 2452) +/(.*/)?wildfire/i/CIMP\.gif\? +# /WikiaStats/* (easyprivacy.txt: 2451) +/(.*/)?WikiaStats/.* +# /wijitTrack.gif? (easyprivacy.txt: 2450) +/(.*/)?wijitTrack\.gif\? +# /widget/s.gif? (easyprivacy.txt: 2449) +/(.*/)?widget/s\.gif\? +# /wi?spot= (easyprivacy.txt: 2448) +/(.*/)?wi\?spot= +# /whoson_*_trackingonly.js (easyprivacy.txt: 2447) +/(.*/)?whoson_.*_trackingonly\.js +# /wholinked.com/track (easyprivacy.txt: 2446) +/(.*/)?wholinked\.com/track +wholinked.com/track +# /who/?js (easyprivacy.txt: 2445) +/(.*/)?who/\?js +# /where-go-add.js (easyprivacy.txt: 2444) +/(.*/)?where-go-add\.js +where-go-add.js*. +# /wf/open?upn=$image (easyprivacy.txt: 2443) +/(.*/)?wf/open\?upn= +# /wego.farmer. (easyprivacy.txt: 2442) +/(.*/)?wego\.farmer\. +wego.farmer.*. +# /webtraxs. (easyprivacy.txt: 2441) +/(.*/)?webtraxs\. +webtraxs.*. +# /webtraffic.js (easyprivacy.txt: 2440) +/(.*/)?webtraffic\.js +webtraffic.js*. +# /WebTrackingHandler. (easyprivacy.txt: 2439) +/(.*/)?WebTrackingHandler\. +WebTrackingHandler.*. +# /webtracking/*$~subdocument (easyprivacy.txt: 2438) +/(.*/)?webtracking/.* +# /webTracking. (easyprivacy.txt: 2437) +/(.*/)?webTracking\. +webTracking.*. +# /webtrack. (easyprivacy.txt: 2436) +/(.*/)?webtrack\. +webtrack.*. +# /webstats_counter/* (easyprivacy.txt: 2435) +/(.*/)?webstats_counter/.* +# /webstats/track.php? (easyprivacy.txt: 2434) +/(.*/)?webstats/track\.php\? +# /webstats/stat (easyprivacy.txt: 2433) +/(.*/)?webstats/stat +# /webstats/index? (easyprivacy.txt: 2432) +/(.*/)?webstats/index\? +# /webstats.php (easyprivacy.txt: 2431) +/(.*/)?webstats\.php +webstats.php*. +# /webstats.js (easyprivacy.txt: 2430) +/(.*/)?webstats\.js +webstats.js*. +# /webstatistik/track.asp (easyprivacy.txt: 2429) +/(.*/)?webstatistik/track\.asp +# /WebStatistik/*.pl? (easyprivacy.txt: 2428) +/(.*/)?WebStatistik/.*\.pl\? +# /webstatistics.php? (easyprivacy.txt: 2427) +/(.*/)?webstatistics\.php\? +# /WebStat2. (easyprivacy.txt: 2426) +/(.*/)?WebStat2\. +WebStat2.*. +# /webstat/cei_count.asp? (easyprivacy.txt: 2425) +/(.*/)?webstat/cei_count\.asp\? +# /WebStat.asmx (easyprivacy.txt: 2424) +/(.*/)?WebStat\.asmx +WebStat.asmx*. +# /webrec/wr.do? (easyprivacy.txt: 2423) +/(.*/)?webrec/wr\.do\? +# /WebPageEventLogger. (easyprivacy.txt: 2422) +/(.*/)?WebPageEventLogger\. +WebPageEventLogger.*. +# /webmetricstracking. (easyprivacy.txt: 2421) +/(.*/)?webmetricstracking\. +webmetricstracking.*. +# /WebLogWriter. (easyprivacy.txt: 2420) +/(.*/)?WebLogWriter\. +WebLogWriter.*. +# /WebLogScript. (easyprivacy.txt: 2419) +/(.*/)?WebLogScript\. +WebLogScript.*. +# /weblog.php? (easyprivacy.txt: 2418) +/(.*/)?weblog\.php\? +# /weblog.js? (easyprivacy.txt: 2417) +/(.*/)?weblog\.js\? +# /weblog.*?cookie (easyprivacy.txt: 2416) +/(.*/)?weblog\..*\?cookie +weblog.*./.*\?cookie +# /webiq_ (easyprivacy.txt: 2415) +/(.*/)?webiq_ +# /webiq/* (easyprivacy.txt: 2414) +/(.*/)?webiq/.* +# /webiq. (easyprivacy.txt: 2413) +/(.*/)?webiq\. +webiq.*. +# /webforensics/* (easyprivacy.txt: 2412) +/(.*/)?webforensics/.* +# /webdig.js?z= (easyprivacy.txt: 2411) +/(.*/)?webdig\.js\?z= +# /webcounter/* (easyprivacy.txt: 2410) +/(.*/)?webcounter/.* +# /webbug/* (easyprivacy.txt: 2409) +/(.*/)?webbug/.* +# /webbug.png? (easyprivacy.txt: 2408) +/(.*/)?webbug\.png\? +# /WebAnalyticsInclude. (easyprivacy.txt: 2407) +/(.*/)?WebAnalyticsInclude\. +WebAnalyticsInclude.*. +# /webanalytics3. (easyprivacy.txt: 2406) +/(.*/)?webanalytics3\. +webanalytics3.*. +# /webAnalytics/* (easyprivacy.txt: 2405) +/(.*/)?webAnalytics/.* +# /WebAnalytics. (easyprivacy.txt: 2404) +/(.*/)?WebAnalytics\. +WebAnalytics.*. +# /webabacus-$script (easyprivacy.txt: 2403) +/(.*/)?webabacus- +webabacus-*. +# /web_traffic_capture.js (easyprivacy.txt: 2402) +/(.*/)?web_traffic_capture\.js +# /web_answertip. (easyprivacy.txt: 2401) +/(.*/)?web_answertip\. +# /web_analytics/* (easyprivacy.txt: 2400) +/(.*/)?web_analytics/.* +# /wcount.php? (easyprivacy.txt: 2399) +/(.*/)?wcount\.php\? +# /wanalytics/* (easyprivacy.txt: 2398) +/(.*/)?wanalytics/.* +# /wa01.gif?log= (easyprivacy.txt: 2397) +/(.*/)?wa01\.gif\?log= +# /vzTracker/* (easyprivacy.txt: 2396) +/(.*/)?vzTracker/.* +# /vztrack.gif? (easyprivacy.txt: 2395) +/(.*/)?vztrack\.gif\? +# /vTracker_ (easyprivacy.txt: 2394) +/(.*/)?vTracker_ +# /vtracker. (easyprivacy.txt: 2393) +/(.*/)?vtracker\. +vtracker.*. +# /vtrack.php? (easyprivacy.txt: 2392) +/(.*/)?vtrack\.php\? +# /vtrack.aspx (easyprivacy.txt: 2391) +/(.*/)?vtrack\.aspx +vtrack.aspx*. +# /vstrack. (easyprivacy.txt: 2390) +/(.*/)?vstrack\. +vstrack.*. +# /vstats/counter.php (easyprivacy.txt: 2389) +/(.*/)?vstats/counter\.php +# /vstat.php (easyprivacy.txt: 2388) +/(.*/)?vstat\.php +vstat.php*. +# /vs_track. (easyprivacy.txt: 2387) +/(.*/)?vs_track\. +# /vs/track. (easyprivacy.txt: 2386) +/(.*/)?vs/track\. +# /vs-track.js (easyprivacy.txt: 2385) +/(.*/)?vs-track\.js +vs-track.js*. +# /vptrack_ (easyprivacy.txt: 2384) +/(.*/)?vptrack_ +# /vmtracking. (easyprivacy.txt: 2383) +/(.*/)?vmtracking\. +vmtracking.*. +# /visualstat/stat.php (easyprivacy.txt: 2382) +/(.*/)?visualstat/stat\.php +# /visualsciences_ (easyprivacy.txt: 2381) +/(.*/)?visualsciences_ +# /visualsciences. (easyprivacy.txt: 2380) +/(.*/)?visualsciences\. +visualsciences.*. +# /visualrevenue.js (easyprivacy.txt: 2379) +/(.*/)?visualrevenue\.js +visualrevenue.js*. +# /visualdna. (easyprivacy.txt: 2378) +/(.*/)?visualdna\. +visualdna.*. +# /visualdna- (easyprivacy.txt: 2377) +/(.*/)?visualdna- +visualdna-*. +# /visual_revenue. (easyprivacy.txt: 2376) +/(.*/)?visual_revenue\. +# /visitWebPage?_ (easyprivacy.txt: 2375) +/(.*/)?visitWebPage\?_ +# /VisitTracking? (easyprivacy.txt: 2374) +/(.*/)?VisitTracking\? +# /visits_contor. (easyprivacy.txt: 2373) +/(.*/)?visits_contor\. +# /visitortracker.pl? (easyprivacy.txt: 2372) +/(.*/)?visitortracker\.pl\? +# /VisitorAPI.js (easyprivacy.txt: 2371) +/(.*/)?VisitorAPI\.js +VisitorAPI.js*. +# /visitor/index.php?*referrer$image (easyprivacy.txt: 2370) +/(.*/)?visitor/index\.php\?.*referrer +# /visitor.min.js (easyprivacy.txt: 2369) +/(.*/)?visitor\.min\.js +visitor.min.js*. +# /visitor.js?key= (easyprivacy.txt: 2368) +/(.*/)?visitor\.js\?key= +# /visitor.gif?ts= (easyprivacy.txt: 2367) +/(.*/)?visitor\.gif\?ts= +# /visitor.cgi?aff (easyprivacy.txt: 2366) +/(.*/)?visitor\.cgi\?aff +# /Visitor.aspx? (easyprivacy.txt: 2365) +/(.*/)?Visitor\.aspx\? +# /visitor-event? (easyprivacy.txt: 2364) +/(.*/)?visitor-event\? +# /VisitCounter. (easyprivacy.txt: 2363) +/(.*/)?VisitCounter\. +VisitCounter.*. +# /visit_tracking. (easyprivacy.txt: 2362) +/(.*/)?visit_tracking\. +# /visit_pixel? (easyprivacy.txt: 2361) +/(.*/)?visit_pixel\? +# /visit?id= (easyprivacy.txt: 2360) +/(.*/)?visit\?id= +# /visit/record.gif? (easyprivacy.txt: 2359) +/(.*/)?visit/record\.gif\? +# /visit/log.js? (easyprivacy.txt: 2358) +/(.*/)?visit/log\.js\? +# /visit.gif? (easyprivacy.txt: 2357) +/(.*/)?visit\.gif\? +# /visit-tracker.js (easyprivacy.txt: 2356) +/(.*/)?visit-tracker\.js +visit-tracker.js*. +# /visistat.js (easyprivacy.txt: 2355) +/(.*/)?visistat\.js +visistat.js*. +# /visci-interface. (easyprivacy.txt: 2354) +/(.*/)?visci-interface\. +visci-interface.*. +# /viperbar/stats.php? (easyprivacy.txt: 2353) +/(.*/)?viperbar/stats\.php\? +# /vip-analytics. (easyprivacy.txt: 2352) +/(.*/)?vip-analytics\. +vip-analytics.*. +# /viglink_ (easyprivacy.txt: 2351) +/(.*/)?viglink_ +# /viewTracking.min.js (easyprivacy.txt: 2350) +/(.*/)?viewTracking\.min\.js +viewTracking.min.js*. +# /viewtracking.aspx? (easyprivacy.txt: 2349) +/(.*/)?viewtracking\.aspx\? +# /viewstats.aspx? (easyprivacy.txt: 2348) +/(.*/)?viewstats\.aspx\? +# /viewcounterproxy. (easyprivacy.txt: 2347) +/(.*/)?viewcounterproxy\. +viewcounterproxy.*. +# /viewcounterjqueryproxy. (easyprivacy.txt: 2346) +/(.*/)?viewcounterjqueryproxy\. +viewcounterjqueryproxy.*. +# /ViewCounter/* (easyprivacy.txt: 2345) +/(.*/)?ViewCounter/.* +# /view_stats.js.php (easyprivacy.txt: 2344) +/(.*/)?view_stats\.js\.php +# /videotracking/* (easyprivacy.txt: 2343) +/(.*/)?videotracking/.* +# /VideoTracking. (easyprivacy.txt: 2342) +/(.*/)?VideoTracking\. +VideoTracking.*. +# /videoAnalytics. (easyprivacy.txt: 2341) +/(.*/)?videoAnalytics\. +videoAnalytics.*. +# /videoanalytic/* (easyprivacy.txt: 2340) +/(.*/)?videoanalytic/.* +# /video_count.php? (easyprivacy.txt: 2339) +/(.*/)?video_count\.php\? +# /vglnk.js (easyprivacy.txt: 2338) +/(.*/)?vglnk\.js +vglnk.js*. +# /vertical-stats. (easyprivacy.txt: 2337) +/(.*/)?vertical-stats\. +vertical-stats.*. +# /vendemologserver- (easyprivacy.txt: 2336) +/(.*/)?vendemologserver- +vendemologserver-*. +# /vecapture.js (easyprivacy.txt: 2335) +/(.*/)?vecapture\.js +vecapture.js*. +# /vblntpagetag. (easyprivacy.txt: 2334) +/(.*/)?vblntpagetag\. +vblntpagetag.*. +# /vblank.gif? (easyprivacy.txt: 2333) +/(.*/)?vblank\.gif\? +# /vastlog.txt? (easyprivacy.txt: 2332) +/(.*/)?vastlog\.txt\? +# /vanillastats/* (easyprivacy.txt: 2331) +/(.*/)?vanillastats/.* +# /valueclickbrands/* (easyprivacy.txt: 2330) +/(.*/)?valueclickbrands/.* +# /v60.js (easyprivacy.txt: 2329) +/(.*/)?v60\.js +v60.js*. +# /v53nse.js (easyprivacy.txt: 2328) +/(.*/)?v53nse\.js +v53nse.js*. +# /v53.js (easyprivacy.txt: 2327) +/(.*/)?v53\.js +v53.js*. +# /v52.js (easyprivacy.txt: 2326) +/(.*/)?v52\.js +v52.js*. +# /v5.3nse. (easyprivacy.txt: 2325) +/(.*/)?v5\.3nse\. +v5.3nse.*. +# /uxm_tracking. (easyprivacy.txt: 2324) +/(.*/)?uxm_tracking\. +# /uvstat.js (easyprivacy.txt: 2323) +/(.*/)?uvstat\.js +uvstat.js*. +# /utracker.js (easyprivacy.txt: 2322) +/(.*/)?utracker\.js +utracker.js*. +# /utrack? (easyprivacy.txt: 2321) +/(.*/)?utrack\? +# /utrack.js? (easyprivacy.txt: 2320) +/(.*/)?utrack\.js\? +# /utag.loader. (easyprivacy.txt: 2319) +/(.*/)?utag\.loader\. +utag.loader.*. +# /utag.loader- (easyprivacy.txt: 2318) +/(.*/)?utag\.loader- +utag.loader-*. +# /utag.handler.js (easyprivacy.txt: 2317) +/(.*/)?utag\.handler\.js +utag.handler.js*. +# /utag.ga. (easyprivacy.txt: 2316) +/(.*/)?utag\.ga\. +utag.ga.*. +# /usrtrck_ (easyprivacy.txt: 2315) +/(.*/)?usrtrck_ +# /usrtrck- (easyprivacy.txt: 2314) +/(.*/)?usrtrck- +usrtrck-*. +# /usr.gif?openratetracking= (easyprivacy.txt: 2313) +/(.*/)?usr\.gif\?openratetracking= +# /usertrackingajax.php? (easyprivacy.txt: 2312) +/(.*/)?usertrackingajax\.php\? +# /usertracking.js (easyprivacy.txt: 2311) +/(.*/)?usertracking\.js +usertracking.js*. +# /usertrack.aspx? (easyprivacy.txt: 2310) +/(.*/)?usertrack\.aspx\? +# /userfly.js (easyprivacy.txt: 2309) +/(.*/)?userfly\.js +userfly.js*. +# /URLSplitTrack? (easyprivacy.txt: 2308) +/(.*/)?URLSplitTrack\? +# /urchinstats. (easyprivacy.txt: 2307) +/(.*/)?urchinstats\. +urchinstats.*. +# /urchin.js (easyprivacy.txt: 2306) +/(.*/)?urchin\.js +urchin.js*. +# /urchin.html? (easyprivacy.txt: 2305) +/(.*/)?urchin\.html\? +# /urchin.gif? (easyprivacy.txt: 2304) +/(.*/)?urchin\.gif\? +# /updateStats. (easyprivacy.txt: 2303) +/(.*/)?updateStats\. +updateStats.*. +# /updateBotStatus.do? (easyprivacy.txt: 2302) +/(.*/)?updateBotStatus\.do\? +# /universalPixelStatic. (easyprivacy.txt: 2301) +/(.*/)?universalPixelStatic\. +universalPixelStatic.*. +# /UniqueUserVisit? (easyprivacy.txt: 2300) +/(.*/)?UniqueUserVisit\? +# /UnicaTag. (easyprivacy.txt: 2299) +/(.*/)?UnicaTag\. +UnicaTag.*. +# /unica_ (easyprivacy.txt: 2298) +/(.*/)?unica_ +# /unica.js (easyprivacy.txt: 2297) +/(.*/)?unica\.js +unica.js*. +# /unica.gif? (easyprivacy.txt: 2296) +/(.*/)?unica\.gif\? +# /umt.gif? (easyprivacy.txt: 2295) +/(.*/)?umt\.gif\? +# /ultra_track/* (easyprivacy.txt: 2294) +/(.*/)?ultra_track/.* +# /uim.html/* (easyprivacy.txt: 2293) +/(.*/)?uim\.html/.* +uim.html/.* +# /ui/analytics/* (easyprivacy.txt: 2292) +/(.*/)?ui/analytics/.* +# /uds/stats? (easyprivacy.txt: 2291) +/(.*/)?uds/stats\? +# /udctrack. (easyprivacy.txt: 2290) +/(.*/)?udctrack\. +udctrack.*. +# /uchkr.swf (easyprivacy.txt: 2289) +/(.*/)?uchkr\.swf +uchkr.swf*. +# /tynt.js (easyprivacy.txt: 2288) +/(.*/)?tynt\.js +tynt.js*. +# /TwitterTracking. (easyprivacy.txt: 2287) +/(.*/)?TwitterTracking\. +TwitterTracking.*. +# /turn-proxy.html? (easyprivacy.txt: 2286) +/(.*/)?turn-proxy\.html\? +# /ttt.gif? (easyprivacy.txt: 2285) +/(.*/)?ttt\.gif\? +# /tsrHitCounter. (easyprivacy.txt: 2284) +/(.*/)?tsrHitCounter\. +tsrHitCounter.*. +# /truehits.php? (easyprivacy.txt: 2283) +/(.*/)?truehits\.php\? +# /trk.gif? (easyprivacy.txt: 2282) +/(.*/)?trk\.gif\? +# /trk-fr. (easyprivacy.txt: 2281) +/(.*/)?trk-fr\. +trk-fr.*. +# /triggit-analytics. (easyprivacy.txt: 2280) +/(.*/)?triggit-analytics\. +triggit-analytics.*. +# /triggertag.js (easyprivacy.txt: 2279) +/(.*/)?triggertag\.js +triggertag.js*. +# /trclnk.js (easyprivacy.txt: 2278) +/(.*/)?trclnk\.js +trclnk.js*. +# /trbo.js (easyprivacy.txt: 2277) +/(.*/)?trbo\.js +trbo.js*. +# /traxis-logger. (easyprivacy.txt: 2276) +/(.*/)?traxis-logger\. +traxis-logger.*. +# /trax.gif? (easyprivacy.txt: 2275) +/(.*/)?trax\.gif\? +# /transparent1x1. (easyprivacy.txt: 2274) +/(.*/)?transparent1x1\. +transparent1x1.*. +# /trans_pixel.asp (easyprivacy.txt: 2273) +/(.*/)?trans_pixel\.asp +# /trakksocial.js (easyprivacy.txt: 2272) +/(.*/)?trakksocial\.js +trakksocial.js*. +# /trafic.js (easyprivacy.txt: 2271) +/(.*/)?trafic\.js +trafic.js*. +# /traffix-track. (easyprivacy.txt: 2270) +/(.*/)?traffix-track\. +traffix-track.*. +# /traffictrade/* (easyprivacy.txt: 2269) +/(.*/)?traffictrade/.* +# /traffictracker. (easyprivacy.txt: 2268) +/(.*/)?traffictracker\. +traffictracker.*. +# /TrafficCookie. (easyprivacy.txt: 2267) +/(.*/)?TrafficCookie\. +TrafficCookie.*. +# /traffic_tracker. (easyprivacy.txt: 2266) +/(.*/)?traffic_tracker\. +# /traffic_record.php? (easyprivacy.txt: 2265) +/(.*/)?traffic_record\.php\? +# /traffic_link_client.php? (easyprivacy.txt: 2264) +/(.*/)?traffic_link_client\.php\? +# /traffic4u. (easyprivacy.txt: 2263) +/(.*/)?traffic4u\. +traffic4u.*. +# /traffic/status.gif? (easyprivacy.txt: 2262) +/(.*/)?traffic/status\.gif\? +# /traffic.asmx/* (easyprivacy.txt: 2261) +/(.*/)?traffic\.asmx/.* +traffic.asmx/.* +# /tradelab.js (easyprivacy.txt: 2260) +/(.*/)?tradelab\.js +tradelab.js*. +# /TrackVisitors/* (easyprivacy.txt: 2259) +/(.*/)?TrackVisitors/.* +# /trackvisit? (easyprivacy.txt: 2258) +/(.*/)?trackvisit\? +# /trackVisit/* (easyprivacy.txt: 2257) +/(.*/)?trackVisit/.* +# /TrackViews/* (easyprivacy.txt: 2256) +/(.*/)?TrackViews/.* +# /TrackView/?track (easyprivacy.txt: 2255) +/(.*/)?TrackView/\?track +# /TrackUser?callback= (easyprivacy.txt: 2254) +/(.*/)?TrackUser\?callback= +# /tracksubprop. (easyprivacy.txt: 2253) +/(.*/)?tracksubprop\. +tracksubprop.*. +# /trackstats? (easyprivacy.txt: 2252) +/(.*/)?trackstats\? +# /trackr.swf (easyprivacy.txt: 2251) +/(.*/)?trackr\.swf +trackr.swf*. +# /trackpxl? (easyprivacy.txt: 2250) +/(.*/)?trackpxl\? +# /trackpixel. (easyprivacy.txt: 2249) +/(.*/)?trackpixel\. +trackpixel.*. +# /trackpix. (easyprivacy.txt: 2248) +/(.*/)?trackpix\. +trackpix.*. +# /trackpidv3. (easyprivacy.txt: 2247) +/(.*/)?trackpidv3\. +trackpidv3.*. +# /trackPageView/* (easyprivacy.txt: 2246) +/(.*/)?trackPageView/.* +# /trackpageview. (easyprivacy.txt: 2245) +/(.*/)?trackpageview\. +trackpageview.*. +# /trackopen.cgi? (easyprivacy.txt: 2244) +/(.*/)?trackopen\.cgi\? +# /tracknat. (easyprivacy.txt: 2243) +/(.*/)?tracknat\. +tracknat.*. +# /trackmerchant.js (easyprivacy.txt: 2242) +/(.*/)?trackmerchant\.js +trackmerchant.js*. +# /trackjs_ (easyprivacy.txt: 2241) +/(.*/)?trackjs_ +# /trackjs6. (easyprivacy.txt: 2240) +/(.*/)?trackjs6\. +trackjs6.*. +# /trackjs1. (easyprivacy.txt: 2239) +/(.*/)?trackjs1\. +trackjs1.*. +# /trackjs. (easyprivacy.txt: 2238) +/(.*/)?trackjs\. +trackjs.*. +# /trackit.pl? (easyprivacy.txt: 2237) +/(.*/)?trackit\.pl\? +# /trackit.php? (easyprivacy.txt: 2236) +/(.*/)?trackit\.php\? +# /trackIt.js (easyprivacy.txt: 2235) +/(.*/)?trackIt\.js +trackIt.js*. +# /trackingService/* (easyprivacy.txt: 2234) +/(.*/)?trackingService/.* +# /trackingService.min.js (easyprivacy.txt: 2233) +/(.*/)?trackingService\.min\.js +trackingService.min.js*. +# /TrackingService.js (easyprivacy.txt: 2232) +/(.*/)?TrackingService\.js +TrackingService.js*. +# /trackingScript2. (easyprivacy.txt: 2231) +/(.*/)?trackingScript2\. +trackingScript2.*. +# /trackingScript1. (easyprivacy.txt: 2230) +/(.*/)?trackingScript1\. +trackingScript1.*. +# /trackings/addview/* (easyprivacy.txt: 2229) +/(.*/)?trackings/addview/.* +# /trackingpixels/get?referrer= (easyprivacy.txt: 2228) +/(.*/)?trackingpixels/get\?referrer= +# /TrackingPixel/* (easyprivacy.txt: 2227) +/(.*/)?TrackingPixel/.* +# /trackingPixel. (easyprivacy.txt: 2226) +/(.*/)?trackingPixel\. +trackingPixel.*. +# /trackingp.gif (easyprivacy.txt: 2225) +/(.*/)?trackingp\.gif +trackingp.gif*. +# /TrackingHandler. (easyprivacy.txt: 2224) +/(.*/)?TrackingHandler\. +TrackingHandler.*. +# /trackingFooter. (easyprivacy.txt: 2223) +/(.*/)?trackingFooter\. +trackingFooter.*. +# /trackingfilter.json? (easyprivacy.txt: 2222) +/(.*/)?trackingfilter\.json\? +# /TrackingData. (easyprivacy.txt: 2221) +/(.*/)?TrackingData\. +TrackingData.*. +# /trackingcookies. (easyprivacy.txt: 2220) +/(.*/)?trackingcookies\. +trackingcookies.*. +# /TrackingCookieCheck. (easyprivacy.txt: 2219) +/(.*/)?TrackingCookieCheck\. +TrackingCookieCheck.*. +# /TrackingCentral.js (easyprivacy.txt: 2218) +/(.*/)?TrackingCentral\.js +TrackingCentral.js*. +# /tracking_pixel (easyprivacy.txt: 2217) +/(.*/)?tracking_pixel +# /tracking_pix. (easyprivacy.txt: 2216) +/(.*/)?tracking_pix\. +# /tracking_link_cookie. (easyprivacy.txt: 2215) +/(.*/)?tracking_link_cookie\. +# /tracking_iframe. (easyprivacy.txt: 2214) +/(.*/)?tracking_iframe\. +# /tracking_id_ (easyprivacy.txt: 2213) +/(.*/)?tracking_id_ +# /tracking_headerJS_ (easyprivacy.txt: 2212) +/(.*/)?tracking_headerJS_ +# /tracking_frame_ (easyprivacy.txt: 2211) +/(.*/)?tracking_frame_ +# /tracking_cookie_baker. (easyprivacy.txt: 2210) +/(.*/)?tracking_cookie_baker\. +# /tracking_clickevents. (easyprivacy.txt: 2209) +/(.*/)?tracking_clickevents\. +# /tracking_ajax. (easyprivacy.txt: 2208) +/(.*/)?tracking_ajax\. +# /tracking_add_ons. (easyprivacy.txt: 2207) +/(.*/)?tracking_add_ons\. +# /Tracking?id= (easyprivacy.txt: 2206) +/(.*/)?Tracking\?id= +# /tracking202/* (easyprivacy.txt: 2205) +/(.*/)?tracking202/.* +# /tracking/widget/* (easyprivacy.txt: 2204) +/(.*/)?tracking/widget/.* +# /tracking/views/* (easyprivacy.txt: 2203) +/(.*/)?tracking/views/.* +# /tracking/user_sync_widget? (easyprivacy.txt: 2202) +/(.*/)?tracking/user_sync_widget\? +# /tracking/tynt_ (easyprivacy.txt: 2201) +/(.*/)?tracking/tynt_ +# /tracking/trk- (easyprivacy.txt: 2200) +/(.*/)?tracking/trk- +# /tracking/tracking_ (easyprivacy.txt: 2199) +/(.*/)?tracking/tracking_ +# /tracking/tracking.js (easyprivacy.txt: 2198) +/(.*/)?tracking/tracking\.js +# /tracking/track.php? (easyprivacy.txt: 2197) +/(.*/)?tracking/track\.php\? +# /tracking/track.jsp? (easyprivacy.txt: 2196) +/(.*/)?tracking/track\.jsp\? +# /tracking/tag_commander.php? (easyprivacy.txt: 2195) +/(.*/)?tracking/tag_commander\.php\? +# /tracking/pixels. (easyprivacy.txt: 2194) +/(.*/)?tracking/pixels\. +# /tracking/pixel_ (easyprivacy.txt: 2193) +/(.*/)?tracking/pixel_ +# /tracking/pixel/* (easyprivacy.txt: 2192) +/(.*/)?tracking/pixel/.* +# /tracking/pixel. (easyprivacy.txt: 2191) +/(.*/)?tracking/pixel\. +# /tracking/pageview. (easyprivacy.txt: 2190) +/(.*/)?tracking/pageview\. +# /tracking/open? (easyprivacy.txt: 2189) +/(.*/)?tracking/open\? +# /tracking/log.php? (easyprivacy.txt: 2188) +/(.*/)?tracking/log\.php\? +# /tracking/index. (easyprivacy.txt: 2187) +/(.*/)?tracking/index\. +# /tracking/impression/* (easyprivacy.txt: 2186) +/(.*/)?tracking/impression/.* +# /tracking/epixels. (easyprivacy.txt: 2185) +/(.*/)?tracking/epixels\. +# /tracking/create? (easyprivacy.txt: 2184) +/(.*/)?tracking/create\? +# /tracking/clicks (easyprivacy.txt: 2183) +/(.*/)?tracking/clicks +# /tracking/beacon/? (easyprivacy.txt: 2182) +/(.*/)?tracking/beacon/\? +# /tracking/ads. (easyprivacy.txt: 2181) +/(.*/)?tracking/ads\. +# /tracking/adobe.js (easyprivacy.txt: 2180) +/(.*/)?tracking/adobe\.js +# /tracking/addview/* (easyprivacy.txt: 2179) +/(.*/)?tracking/addview/.* +# /tracking/*/agof- (easyprivacy.txt: 2178) +/(.*/)?tracking/.*/agof- +# /tracking.vidt (easyprivacy.txt: 2177) +/(.*/)?tracking\.vidt +tracking.vidt*. +# /tracking.phtml? (easyprivacy.txt: 2176) +/(.*/)?tracking\.phtml\? +# /tracking.php?id (easyprivacy.txt: 2175) +/(.*/)?tracking\.php\?id +# /tracking.jsp (easyprivacy.txt: 2174) +/(.*/)?tracking\.jsp +tracking.jsp*. +# /tracking.gif? (easyprivacy.txt: 2173) +/(.*/)?tracking\.gif\? +# /tracking.fcgi? (easyprivacy.txt: 2172) +/(.*/)?tracking\.fcgi\? +# /tracking.cgi? (easyprivacy.txt: 2171) +/(.*/)?tracking\.cgi\? +# /tracking.ashx? (easyprivacy.txt: 2170) +/(.*/)?tracking\.ashx\? +# /tracking-widget. (easyprivacy.txt: 2169) +/(.*/)?tracking-widget\. +tracking-widget.*. +# /tracking-pixel/* (easyprivacy.txt: 2168) +/(.*/)?tracking-pixel/.* +# /tracking-pixel. (easyprivacy.txt: 2167) +/(.*/)?tracking-pixel\. +tracking-pixel.*. +# /tracking-init. (easyprivacy.txt: 2166) +/(.*/)?tracking-init\. +tracking-init.*. +# /tracking-info.gif? (easyprivacy.txt: 2165) +/(.*/)?tracking-info\.gif\? +# /tracking-hits. (easyprivacy.txt: 2164) +/(.*/)?tracking-hits\. +tracking-hits.*. +# /tracking-cookie. (easyprivacy.txt: 2163) +/(.*/)?tracking-cookie\. +tracking-cookie.*. +# /tracking-ad/* (easyprivacy.txt: 2162) +/(.*/)?tracking-ad/.* +# /trackimps? (easyprivacy.txt: 2161) +/(.*/)?trackimps\? +# /trackImpression/* (easyprivacy.txt: 2160) +/(.*/)?trackImpression/.* +# /trackimage/* (easyprivacy.txt: 2159) +/(.*/)?trackimage/.* +# /trackEvent.min.js? (easyprivacy.txt: 2158) +/(.*/)?trackEvent\.min\.js\? +# /trackEvent.js? (easyprivacy.txt: 2157) +/(.*/)?trackEvent\.js\? +# /trackerstatistik. (easyprivacy.txt: 2156) +/(.*/)?trackerstatistik\. +trackerstatistik.*. +# /trackerpixel.js (easyprivacy.txt: 2155) +/(.*/)?trackerpixel\.js +trackerpixel.js*. +# /TrackerHandler. (easyprivacy.txt: 2154) +/(.*/)?TrackerHandler\. +TrackerHandler.*. +# /trackerGif? (easyprivacy.txt: 2153) +/(.*/)?trackerGif\? +# /TrackerAS3. (easyprivacy.txt: 2152) +/(.*/)?TrackerAS3\. +TrackerAS3.*. +# /tracker_pixel. (easyprivacy.txt: 2151) +/(.*/)?tracker_pixel\. +# /tracker_pageview. (easyprivacy.txt: 2150) +/(.*/)?tracker_pageview\. +# /tracker_gif. (easyprivacy.txt: 2149) +/(.*/)?tracker_gif\. +# /tracker_article (easyprivacy.txt: 2148) +/(.*/)?tracker_article +# /tracker_activityStream. (easyprivacy.txt: 2147) +/(.*/)?tracker_activityStream\. +# /tracker?*= (easyprivacy.txt: 2146) +/(.*/)?tracker\?.*= +# /tracker2.js (easyprivacy.txt: 2145) +/(.*/)?tracker2\.js +tracker2.js*. +# /tracker/tracker.js (easyprivacy.txt: 2144) +/(.*/)?tracker/tracker\.js +# /tracker/track.php? (easyprivacy.txt: 2143) +/(.*/)?tracker/track\.php\? +# /tracker/t.php? (easyprivacy.txt: 2142) +/(.*/)?tracker/t\.php\? +# /tracker/story.jpg? (easyprivacy.txt: 2141) +/(.*/)?tracker/story\.jpg\? +# /tracker/referrer/* (easyprivacy.txt: 2140) +/(.*/)?tracker/referrer/.* +# /tracker/receiver/* (easyprivacy.txt: 2139) +/(.*/)?tracker/receiver/.* +# /tracker/ping/* (easyprivacy.txt: 2138) +/(.*/)?tracker/ping/.* +# /tracker/p.gif? (easyprivacy.txt: 2137) +/(.*/)?tracker/p\.gif\? +# /tracker/log? (easyprivacy.txt: 2136) +/(.*/)?tracker/log\? +# /tracker/imp? (easyprivacy.txt: 2135) +/(.*/)?tracker/imp\? +# /tracker/event? (easyprivacy.txt: 2134) +/(.*/)?tracker/event\? +# /tracker/blank.gif? (easyprivacy.txt: 2133) +/(.*/)?tracker/blank\.gif\? +# /tracker.tsp? (easyprivacy.txt: 2132) +/(.*/)?tracker\.tsp\? +# /tracker.pl? (easyprivacy.txt: 2131) +/(.*/)?tracker\.pl\? +# /tracker.php? (easyprivacy.txt: 2130) +/(.*/)?tracker\.php\? +# /tracker.min.js (easyprivacy.txt: 2129) +/(.*/)?tracker\.min\.js +tracker.min.js*. +# /tracker.log? (easyprivacy.txt: 2128) +/(.*/)?tracker\.log\? +# /tracker.json.php? (easyprivacy.txt: 2127) +/(.*/)?tracker\.json\.php\? +# /tracker.js.php? (easyprivacy.txt: 2126) +/(.*/)?tracker\.js\.php\? +# /tracker-r1.js (easyprivacy.txt: 2125) +/(.*/)?tracker-r1\.js +tracker-r1.js*. +# /tracker-ev-sdk.js (easyprivacy.txt: 2124) +/(.*/)?tracker-ev-sdk\.js +tracker-ev-sdk.js*. +# /trackconversion? (easyprivacy.txt: 2123) +/(.*/)?trackconversion\? +# /trackContentViews. (easyprivacy.txt: 2122) +/(.*/)?trackContentViews\. +trackContentViews.*. +# /trackClickEvent.js (easyprivacy.txt: 2121) +/(.*/)?trackClickEvent\.js +trackClickEvent.js*. +# /TrackClick. (easyprivacy.txt: 2120) +/(.*/)?TrackClick\. +TrackClick.*. +# /trackAdHit. (easyprivacy.txt: 2119) +/(.*/)?trackAdHit\. +trackAdHit.*. +# /trackad. (easyprivacy.txt: 2118) +/(.*/)?trackad\. +trackad.*. +# /track_visit? (easyprivacy.txt: 2117) +/(.*/)?track_visit\? +# /track_social. (easyprivacy.txt: 2116) +/(.*/)?track_social\. +# /track_pageview? (easyprivacy.txt: 2115) +/(.*/)?track_pageview\? +# /track_metric/* (easyprivacy.txt: 2114) +/(.*/)?track_metric/.* +# /track_js/? (easyprivacy.txt: 2113) +/(.*/)?track_js/\? +# /track_event.php? (easyprivacy.txt: 2112) +/(.*/)?track_event\.php\? +# /track_clicks_ (easyprivacy.txt: 2111) +/(.*/)?track_clicks_ +# /track?referer= (easyprivacy.txt: 2110) +/(.*/)?track\?referer= +# /track?event= (easyprivacy.txt: 2109) +/(.*/)?track\?event= +# /track;adv (easyprivacy.txt: 2108) +/(.*/)?track;adv +# /track2.php (easyprivacy.txt: 2107) +/(.*/)?track2\.php +track2.php*. +# /track/visits/? (easyprivacy.txt: 2106) +/(.*/)?track/visits/\? +# /track/visitors/? (easyprivacy.txt: 2105) +/(.*/)?track/visitors/\? +# /track/view/* (easyprivacy.txt: 2104) +/(.*/)?track/view/.* +# /track/track.php? (easyprivacy.txt: 2103) +/(.*/)?track/track\.php\? +# /track/site/* (easyprivacy.txt: 2102) +/(.*/)?track/site/.* +# /track/pixel. (easyprivacy.txt: 2101) +/(.*/)?track/pixel\. +# /track/pix.asp? (easyprivacy.txt: 2100) +/(.*/)?track/pix\.asp\? +# /track/mygreendot/* (easyprivacy.txt: 2099) +/(.*/)?track/mygreendot/.* +# /track/jsinfo (easyprivacy.txt: 2098) +/(.*/)?track/jsinfo +# /track/imp? (easyprivacy.txt: 2097) +/(.*/)?track/imp\? +# /track/dot.gif? (easyprivacy.txt: 2096) +/(.*/)?track/dot\.gif\? +# /track/count*js (easyprivacy.txt: 2095) +/(.*/)?track/count.*js +# /Track/Capture.aspx? (easyprivacy.txt: 2094) +/(.*/)?Track/Capture\.aspx\? +# /track/aggregate? (easyprivacy.txt: 2093) +/(.*/)?track/aggregate\? +# /track/?site (easyprivacy.txt: 2092) +/(.*/)?track/\?site +# /track/*?rnd=0.$image (easyprivacy.txt: 2091) +/(.*/)?track/.*\?rnd=0\. +# /track/*&CheckCookieId= (easyprivacy.txt: 2090) +/(.*/)?track/.*&CheckCookieId= +# /track.php?*&uid= (easyprivacy.txt: 2089) +/(.*/)?track\.php\?.*&uid= +# /track.js?screen= (easyprivacy.txt: 2088) +/(.*/)?track\.js\?screen= +# /track.js?referrer (easyprivacy.txt: 2087) +/(.*/)?track\.js\?referrer +# /track.gif? (easyprivacy.txt: 2086) +/(.*/)?track\.gif\? +# /track.cgi? (easyprivacy.txt: 2085) +/(.*/)?track\.cgi\? +# /track.aspx? (easyprivacy.txt: 2084) +/(.*/)?track\.aspx\? +# /Track.aspx/* (easyprivacy.txt: 2083) +/(.*/)?Track\.aspx/.* +Track.aspx/.* +# /track.ashx?*=http (easyprivacy.txt: 2082) +/(.*/)?track\.ashx\?.*=http +# /track.ads/* (easyprivacy.txt: 2081) +/(.*/)?track\.ads/.* +track.ads/.* +# /track-referrals.js (easyprivacy.txt: 2080) +/(.*/)?track-referrals\.js +track-referrals.js*. +# /track-compiled.js (easyprivacy.txt: 2079) +/(.*/)?track-compiled\.js +track-compiled.js*. +# /tr.gif? (easyprivacy.txt: 2078) +/(.*/)?tr\.gif\? +# /tPx.gif? (easyprivacy.txt: 2077) +/(.*/)?tPx\.gif\? +# /tpix.gif? (easyprivacy.txt: 2076) +/(.*/)?tpix\.gif\? +# /touchclarity/* (easyprivacy.txt: 2075) +/(.*/)?touchclarity/.* +# /totango.js (easyprivacy.txt: 2074) +/(.*/)?totango\.js +totango.js*. +# /tops-counter? (easyprivacy.txt: 2073) +/(.*/)?tops-counter\? +# /tongji.js (easyprivacy.txt: 2072) +/(.*/)?tongji\.js +tongji.js*. +# /token?referer= (easyprivacy.txt: 2071) +/(.*/)?token\?referer= +# /tnsmetrix/* (easyprivacy.txt: 2070) +/(.*/)?tnsmetrix/.* +# /tnsCounter. (easyprivacy.txt: 2069) +/(.*/)?tnsCounter\. +tnsCounter.*. +# /tncms/tracking.js (easyprivacy.txt: 2068) +/(.*/)?tncms/tracking\.js +# /tmv11. (easyprivacy.txt: 2067) +/(.*/)?tmv11\. +tmv11.*. +# /tiwik. (easyprivacy.txt: 2066) +/(.*/)?tiwik\. +tiwik.*. +# /timestrend_ (easyprivacy.txt: 2065) +/(.*/)?timestrend_ +# /timeslog. (easyprivacy.txt: 2064) +/(.*/)?timeslog\. +timeslog.*. +# /tiara/tracker/* (easyprivacy.txt: 2063) +/(.*/)?tiara/tracker/.* +# /thuzianayltics. (easyprivacy.txt: 2062) +/(.*/)?thuzianayltics\. +thuzianayltics.*. +# /ThirdPartyTracking. (easyprivacy.txt: 2061) +/(.*/)?ThirdPartyTracking\. +ThirdPartyTracking.*. +# /thirdPartyTagscachebuster.js (easyprivacy.txt: 2060) +/(.*/)?thirdPartyTagscachebuster\.js +thirdPartyTagscachebuster.js*. +# /thirdPartyTags.js (easyprivacy.txt: 2059) +/(.*/)?thirdPartyTags\.js +thirdPartyTags.js*. +# /thirdPartyPixel. (easyprivacy.txt: 2058) +/(.*/)?thirdPartyPixel\. +thirdPartyPixel.*. +# /thirdpartyCookie. (easyprivacy.txt: 2057) +/(.*/)?thirdpartyCookie\. +thirdpartyCookie.*. +# /thetracker.js (easyprivacy.txt: 2056) +/(.*/)?thetracker\.js +thetracker.js*. +# /textlink.php?text (easyprivacy.txt: 2055) +/(.*/)?textlink\.php\?text +# /tealiumpixel. (easyprivacy.txt: 2054) +/(.*/)?tealiumpixel\. +tealiumpixel.*. +# /tealium.js (easyprivacy.txt: 2053) +/(.*/)?tealium\.js +tealium.js*. +# /tealium-api/* (easyprivacy.txt: 2052) +/(.*/)?tealium-api/.* +# /TealeafSDKConfig.js (easyprivacy.txt: 2051) +/(.*/)?TealeafSDKConfig\.js +TealeafSDKConfig.js*. +# /TealeafSDK.js (easyprivacy.txt: 2050) +/(.*/)?TealeafSDK\.js +TealeafSDK.js*. +# /TeaLeafCfg.js (easyprivacy.txt: 2049) +/(.*/)?TeaLeafCfg\.js +TeaLeafCfg.js*. +# /TeaLeaf.js (easyprivacy.txt: 2048) +/(.*/)?TeaLeaf\.js +TeaLeaf.js*. +# /TCMAnalytics_ (easyprivacy.txt: 2047) +/(.*/)?TCMAnalytics_ +# /tc_throttle.js (easyprivacy.txt: 2046) +/(.*/)?tc_throttle\.js +# /tc_targeting. (easyprivacy.txt: 2045) +/(.*/)?tc_targeting\. +# /tc_logging.js (easyprivacy.txt: 2044) +/(.*/)?tc_logging\.js +# /taxtag.js (easyprivacy.txt: 2043) +/(.*/)?taxtag\.js +taxtag.js*. +# /tagx.js (easyprivacy.txt: 2042) +/(.*/)?tagx\.js +tagx.js*. +# /TagSvc/* (easyprivacy.txt: 2041) +/(.*/)?TagSvc/.* +# /tagomnitureengine.js (easyprivacy.txt: 2040) +/(.*/)?tagomnitureengine\.js +tagomnitureengine.js*. +# /TagCommander.cfc? (easyprivacy.txt: 2039) +/(.*/)?TagCommander\.cfc\? +# /TacodaFTT. (easyprivacy.txt: 2038) +/(.*/)?TacodaFTT\. +TacodaFTT.*. +# /tacoda_ (easyprivacy.txt: 2037) +/(.*/)?tacoda_ +# /tacoda. (easyprivacy.txt: 2036) +/(.*/)?tacoda\. +tacoda.*. +# /t-richrelevance- (easyprivacy.txt: 2035) +/(.*/)?t-richrelevance- +t-richrelevance-*. +# /szm_mclient.js (easyprivacy.txt: 2034) +/(.*/)?szm_mclient\.js +# /syndstats. (easyprivacy.txt: 2033) +/(.*/)?syndstats\. +syndstats.*. +# /syndication/metrics/* (easyprivacy.txt: 2032) +/(.*/)?syndication/metrics/.* +# /synd.aspx (easyprivacy.txt: 2031) +/(.*/)?synd\.aspx +synd.aspx*. +# /syn/mail_s.php? (easyprivacy.txt: 2030) +/(.*/)?syn/mail_s\.php\? +# /swfaddress.js?tracker= (easyprivacy.txt: 2029) +/(.*/)?swfaddress\.js\?tracker= +# /surveyoverlay/* (easyprivacy.txt: 2028) +/(.*/)?surveyoverlay/.* +# /survey_invite_ (easyprivacy.txt: 2027) +/(.*/)?survey_invite_ +# /surphace_track. (easyprivacy.txt: 2026) +/(.*/)?surphace_track\. +# /supertracking. (easyprivacy.txt: 2025) +/(.*/)?supertracking\. +supertracking.*. +# /superstats. (easyprivacy.txt: 2024) +/(.*/)?superstats\. +superstats.*. +# /supercookie. (easyprivacy.txt: 2023) +/(.*/)?supercookie\. +supercookie.*. +# /stwc/code.js (easyprivacy.txt: 2022) +/(.*/)?stwc/code\.js +# /stwc-counter/* (easyprivacy.txt: 2021) +/(.*/)?stwc-counter/.* +# /stt/track/* (easyprivacy.txt: 2020) +/(.*/)?stt/track/.* +# /stt/track. (easyprivacy.txt: 2019) +/(.*/)?stt/track\. +# /stracking.js (easyprivacy.txt: 2018) +/(.*/)?stracking\.js +stracking.js*. +# /store-uniq-client-id?bomuuid= (easyprivacy.txt: 2017) +/(.*/)?store-uniq-client-id\?bomuuid= +# /stcollection. (easyprivacy.txt: 2016) +/(.*/)?stcollection\. +stcollection.*. +# /StatV1? (easyprivacy.txt: 2015) +/(.*/)?StatV1\? +# /stattracker- (easyprivacy.txt: 2014) +/(.*/)?stattracker- +stattracker-*. +# /statsupdater. (easyprivacy.txt: 2013) +/(.*/)?statsupdater\. +statsupdater.*. +# /statstracker? (easyprivacy.txt: 2012) +/(.*/)?statstracker\? +# /statspixel. (easyprivacy.txt: 2011) +/(.*/)?statspixel\. +statspixel.*. +# /StatsMngrWebInterface. (easyprivacy.txt: 2010) +/(.*/)?StatsMngrWebInterface\. +StatsMngrWebInterface.*. +# /StatsHelper.gif? (easyprivacy.txt: 2009) +/(.*/)?StatsHelper\.gif\? +# /statsd_proxy (easyprivacy.txt: 2008) +/(.*/)?statsd_proxy +# /statscript.js (easyprivacy.txt: 2007) +/(.*/)?statscript\.js +statscript.js*. +# /statscounter/* (easyprivacy.txt: 2006) +/(.*/)?statscounter/.* +# /StatsCollector/* (easyprivacy.txt: 2005) +/(.*/)?StatsCollector/.* +# /statsadvance.js (easyprivacy.txt: 2004) +/(.*/)?statsadvance\.js +statsadvance.js*. +# /stats_tracker. (easyprivacy.txt: 2003) +/(.*/)?stats_tracker\. +# /stats_js.asp? (easyprivacy.txt: 2002) +/(.*/)?stats_js\.asp\? +# /stats_brand.js (easyprivacy.txt: 2001) +/(.*/)?stats_brand\.js +# /stats_blog.js? (easyprivacy.txt: 2000) +/(.*/)?stats_blog\.js\? +# /stats?style$~xmlhttprequest (easyprivacy.txt: 1999) +/(.*/)?stats\?style +# /stats?sid= (easyprivacy.txt: 1998) +/(.*/)?stats\?sid= +# /stats?object (easyprivacy.txt: 1997) +/(.*/)?stats\?object +# /stats?ev= (easyprivacy.txt: 1996) +/(.*/)?stats\?ev= +# /stats?callback= (easyprivacy.txt: 1995) +/(.*/)?stats\?callback= +# /stats?blog_ (easyprivacy.txt: 1994) +/(.*/)?stats\?blog_ +# /stats?aid= (easyprivacy.txt: 1993) +/(.*/)?stats\?aid= +# /stats/tracker.js (easyprivacy.txt: 1992) +/(.*/)?stats/tracker\.js +# /stats/tracker.gif? (easyprivacy.txt: 1991) +/(.*/)?stats/tracker\.gif\? +# /stats/track.asp? (easyprivacy.txt: 1990) +/(.*/)?stats/track\.asp\? +# /stats/pgview. (easyprivacy.txt: 1989) +/(.*/)?stats/pgview\. +# /stats/mixpanel- (easyprivacy.txt: 1988) +/(.*/)?stats/mixpanel- +# /stats/metrics/* (easyprivacy.txt: 1987) +/(.*/)?stats/metrics/.* +# /stats/mark? (easyprivacy.txt: 1986) +/(.*/)?stats/mark\? +# /stats/log. (easyprivacy.txt: 1985) +/(.*/)?stats/log\. +# /stats/impression (easyprivacy.txt: 1984) +/(.*/)?stats/impression +# /stats/et_track.asp? (easyprivacy.txt: 1983) +/(.*/)?stats/et_track\.asp\? +# /stats/dlcount_ (easyprivacy.txt: 1982) +/(.*/)?stats/dlcount_ +# /stats/CounterPage. (easyprivacy.txt: 1981) +/(.*/)?stats/CounterPage\. +# /stats/counter. (easyprivacy.txt: 1980) +/(.*/)?stats/counter\. +# /stats/collector.js (easyprivacy.txt: 1979) +/(.*/)?stats/collector\.js +# /stats/add/* (easyprivacy.txt: 1978) +/(.*/)?stats/add/.* +# /stats/?js (easyprivacy.txt: 1977) +/(.*/)?stats/\?js +# /stats.php?type= (easyprivacy.txt: 1976) +/(.*/)?stats\.php\?type= +# /stats.php?*http (easyprivacy.txt: 1975) +/(.*/)?stats\.php\?.*http +# /stats.hitbox.com/* (easyprivacy.txt: 1974) +/(.*/)?stats\.hitbox\.com/.* +stats.hitbox.com/.* +# /stats.gif? (easyprivacy.txt: 1973) +/(.*/)?stats\.gif\? +# /stats.cgi$image (easyprivacy.txt: 1972) +/(.*/)?stats\.cgi +stats.cgi*. +# /stats.asp?id (easyprivacy.txt: 1971) +/(.*/)?stats\.asp\?id +# /stats-tracking.js (easyprivacy.txt: 1970) +/(.*/)?stats-tracking\.js +stats-tracking.js*. +# /stats-js.cgi? (easyprivacy.txt: 1969) +/(.*/)?stats-js\.cgi\? +# /statlogger. (easyprivacy.txt: 1968) +/(.*/)?statlogger\. +statlogger.*. +# /statistics?eventType= (easyprivacy.txt: 1967) +/(.*/)?statistics\?eventType= +# /statistics/logging/* (easyprivacy.txt: 1966) +/(.*/)?statistics/logging/.* +# /statistics/getcook.php? (easyprivacy.txt: 1965) +/(.*/)?statistics/getcook\.php\? +# /statistics.aspx?profile (easyprivacy.txt: 1964) +/(.*/)?statistics\.aspx\?profile +# /statistics.asp? (easyprivacy.txt: 1963) +/(.*/)?statistics\.asp\? +# /statistics-page-view/* (easyprivacy.txt: 1962) +/(.*/)?statistics-page-view/.* +# /statics/analytics.js? (easyprivacy.txt: 1961) +/(.*/)?statics/analytics\.js\? +# /static-tracking/*$script (easyprivacy.txt: 1960) +/(.*/)?static-tracking/.* +# /stateye/* (easyprivacy.txt: 1959) +/(.*/)?stateye/.* +# /statcountex/count.asp? (easyprivacy.txt: 1958) +/(.*/)?statcountex/count\.asp\? +# /statcounter.js (easyprivacy.txt: 1957) +/(.*/)?statcounter\.js +statcounter.js*. +# /statcounter.asp (easyprivacy.txt: 1956) +/(.*/)?statcounter\.asp +statcounter.asp*. +# /statcount. (easyprivacy.txt: 1955) +/(.*/)?statcount\. +statcount.*. +# /StatCms/ViewCount? (easyprivacy.txt: 1954) +/(.*/)?StatCms/ViewCount\? +# /statcapture. (easyprivacy.txt: 1953) +/(.*/)?statcapture\. +statcapture.*. +# /stataffs/track.php? (easyprivacy.txt: 1952) +/(.*/)?stataffs/track\.php\? +# /stat_visits. (easyprivacy.txt: 1951) +/(.*/)?stat_visits\. +# /stat_search. (easyprivacy.txt: 1950) +/(.*/)?stat_search\. +# /stat_page2. (easyprivacy.txt: 1949) +/(.*/)?stat_page2\. +# /stat_page. (easyprivacy.txt: 1948) +/(.*/)?stat_page\. +# /stat_js.asp? (easyprivacy.txt: 1947) +/(.*/)?stat_js\.asp\? +# /stat?track= (easyprivacy.txt: 1946) +/(.*/)?stat\?track= +# /stat?SiteID= (easyprivacy.txt: 1945) +/(.*/)?stat\?SiteID= +# /stat36/stat/track.php (easyprivacy.txt: 1944) +/(.*/)?stat36/stat/track\.php +# /stat2.js (easyprivacy.txt: 1943) +/(.*/)?stat2\.js +stat2.js*. +# /stat2.aspx? (easyprivacy.txt: 1942) +/(.*/)?stat2\.aspx\? +# /stat/uvstat? (easyprivacy.txt: 1941) +/(.*/)?stat/uvstat\? +# /stat/track.php?mode=js (easyprivacy.txt: 1940) +/(.*/)?stat/track\.php\?mode=js +# /stat/inserthit. (easyprivacy.txt: 1939) +/(.*/)?stat/inserthit\. +# /stat/event? (easyprivacy.txt: 1938) +/(.*/)?stat/event\? +# /stat/count (easyprivacy.txt: 1937) +/(.*/)?stat/count +# /stat.tiff? (easyprivacy.txt: 1936) +/(.*/)?stat\.tiff\? +# /stat.php? (easyprivacy.txt: 1935) +/(.*/)?stat\.php\? +# /stat.htm? (easyprivacy.txt: 1934) +/(.*/)?stat\.htm\? +# /stat.gif? (easyprivacy.txt: 1933) +/(.*/)?stat\.gif\? +# /stat.aspx? (easyprivacy.txt: 1932) +/(.*/)?stat\.aspx\? +# /st.aspx? (easyprivacy.txt: 1931) +/(.*/)?st\.aspx\? +# /sstlm8.sst? (easyprivacy.txt: 1930) +/(.*/)?sstlm8\.sst\? +# /sst8.sst? (easyprivacy.txt: 1929) +/(.*/)?sst8\.sst\? +# /spylog_ (easyprivacy.txt: 1928) +/(.*/)?spylog_ +# /springmetrics. (easyprivacy.txt: 1927) +/(.*/)?springmetrics\. +springmetrics.*. +# /spip.php?page=stats.js (easyprivacy.txt: 1926) +/(.*/)?spip\.php\?page=stats\.js +# /spi.gif?aid= (easyprivacy.txt: 1925) +/(.*/)?spi\.gif\?aid= +# /SpeedTrapInsert. (easyprivacy.txt: 1924) +/(.*/)?SpeedTrapInsert\. +SpeedTrapInsert.*. +# /spannerworks-tracking- (easyprivacy.txt: 1923) +/(.*/)?spannerworks-tracking- +spannerworks-tracking-*. +# /spacer.gif?q=l3mkwgak (easyprivacy.txt: 1922) +/(.*/)?spacer\.gif\?q=l3mkwgak +# /spacer.gif?hscbrnd (easyprivacy.txt: 1921) +/(.*/)?spacer\.gif\?hscbrnd +# /sp_tracker. (easyprivacy.txt: 1920) +/(.*/)?sp_tracker\. +# /sp_logging. (easyprivacy.txt: 1919) +/(.*/)?sp_logging\. +# /sp-2.0.0.min.js (easyprivacy.txt: 1918) +/(.*/)?sp-2\.0\.0\.min\.js +sp-2.0.0.min.js*. +# /sophusThree- (easyprivacy.txt: 1917) +/(.*/)?sophusThree- +sophusThree-*. +# /sophus3_logging.js (easyprivacy.txt: 1916) +/(.*/)?sophus3_logging\.js +# /sophus3/* (easyprivacy.txt: 1915) +/(.*/)?sophus3/.* +# /sophus/logging.js (easyprivacy.txt: 1914) +/(.*/)?sophus/logging\.js +# /sophus.js (easyprivacy.txt: 1913) +/(.*/)?sophus\.js +sophus.js*. +# /sometrics/* (easyprivacy.txt: 1912) +/(.*/)?sometrics/.* +# /solarcode.js (easyprivacy.txt: 1911) +/(.*/)?solarcode\.js +solarcode.js*. +# /softpage/stats_registerhit.asp? (easyprivacy.txt: 1910) +/(.*/)?softpage/stats_registerhit\.asp\? +# /softclick.js (easyprivacy.txt: 1909) +/(.*/)?softclick\.js +softclick.js*. +# /socialtracking.min.js (easyprivacy.txt: 1908) +/(.*/)?socialtracking\.min\.js +socialtracking.min.js*. +# /SocialTrack_ (easyprivacy.txt: 1907) +/(.*/)?SocialTrack_ +# /socialButtonTracker. (easyprivacy.txt: 1906) +/(.*/)?socialButtonTracker\. +socialButtonTracker.*. +# /social_tracking. (easyprivacy.txt: 1905) +/(.*/)?social_tracking\. +# /smarta. (easyprivacy.txt: 1904) +/(.*/)?smarta\. +smarta.*. +# /small.gif?type (easyprivacy.txt: 1903) +/(.*/)?small\.gif\?type +# /slimstat/* (easyprivacy.txt: 1902) +/(.*/)?slimstat/.* +# /skstats_ (easyprivacy.txt: 1901) +/(.*/)?skstats_ +# /skstats- (easyprivacy.txt: 1900) +/(.*/)?skstats- +skstats-*. +# /sitetrek.js (easyprivacy.txt: 1899) +/(.*/)?sitetrek\.js +sitetrek.js*. +# /SiteTrackingGA. (easyprivacy.txt: 1898) +/(.*/)?SiteTrackingGA\. +SiteTrackingGA.*. +# /SiteTracker. (easyprivacy.txt: 1897) +/(.*/)?SiteTracker\. +SiteTracker.*. +# /sitestats.gif? (easyprivacy.txt: 1896) +/(.*/)?sitestats\.gif\? +# /sitestatforms. (easyprivacy.txt: 1895) +/(.*/)?sitestatforms\. +sitestatforms.*. +# /sitestat_ (easyprivacy.txt: 1894) +/(.*/)?sitestat_ +# /sitestat. (easyprivacy.txt: 1893) +/(.*/)?sitestat\. +sitestat.*. +# /siteskan.com/* (easyprivacy.txt: 1892) +/(.*/)?siteskan\.com/.* +siteskan.com/.* +# /sitecrm2.js (easyprivacy.txt: 1891) +/(.*/)?sitecrm2\.js +sitecrm2.js*. +# /sitecrm.js (easyprivacy.txt: 1890) +/(.*/)?sitecrm\.js +sitecrm.js*. +# /sitecounter/counter. (easyprivacy.txt: 1889) +/(.*/)?sitecounter/counter\. +# /sitecatalist.js (easyprivacy.txt: 1888) +/(.*/)?sitecatalist\.js +sitecatalist.js*. +# /siteanalytics_ (easyprivacy.txt: 1887) +/(.*/)?siteanalytics_ +# /siteAnalytics. (easyprivacy.txt: 1886) +/(.*/)?siteAnalytics\. +siteAnalytics.*. +# /siteAnalytics- (easyprivacy.txt: 1885) +/(.*/)?siteAnalytics- +siteAnalytics-*. +# /site_tracking. (easyprivacy.txt: 1884) +/(.*/)?site_tracking\. +# /site_stats/* (easyprivacy.txt: 1883) +/(.*/)?site_stats/.* +# /site_stats. (easyprivacy.txt: 1882) +/(.*/)?site_stats\. +# /site_statistics. (easyprivacy.txt: 1881) +/(.*/)?site_statistics\. +# /site-tracker_ (easyprivacy.txt: 1880) +/(.*/)?site-tracker_ +# /site-tracker. (easyprivacy.txt: 1879) +/(.*/)?site-tracker\. +site-tracker.*. +# /site-tracker- (easyprivacy.txt: 1878) +/(.*/)?site-tracker- +site-tracker-*. +# /simtracker.min.js (easyprivacy.txt: 1877) +/(.*/)?simtracker\.min\.js +simtracker.min.js*. +# /simplereach_counts/* (easyprivacy.txt: 1876) +/(.*/)?simplereach_counts/.* +# /simple_reach.js (easyprivacy.txt: 1875) +/(.*/)?simple_reach\.js +# /silverpop/* (easyprivacy.txt: 1874) +/(.*/)?silverpop/.* +# /SilverPop. (easyprivacy.txt: 1873) +/(.*/)?SilverPop\. +SilverPop.*. +# /sikquantcast_ (easyprivacy.txt: 1872) +/(.*/)?sikquantcast_ +# /sikcomscore_ (easyprivacy.txt: 1871) +/(.*/)?sikcomscore_ +# /sidtracker. (easyprivacy.txt: 1870) +/(.*/)?sidtracker\. +sidtracker.*. +# /sidebarAnalytic? (easyprivacy.txt: 1869) +/(.*/)?sidebarAnalytic\? +# /si-tracking. (easyprivacy.txt: 1868) +/(.*/)?si-tracking\. +si-tracking.*. +# /showhits.php? (easyprivacy.txt: 1867) +/(.*/)?showhits\.php\? +# /showcounter. (easyprivacy.txt: 1866) +/(.*/)?showcounter\. +showcounter.*. +# /shopify_stats.js (easyprivacy.txt: 1865) +/(.*/)?shopify_stats\.js +# /shinystat_ (easyprivacy.txt: 1864) +/(.*/)?shinystat_ +# /shinystat. (easyprivacy.txt: 1863) +/(.*/)?shinystat\. +shinystat.*. +# /shareTrackClient. (easyprivacy.txt: 1862) +/(.*/)?shareTrackClient\. +shareTrackClient.*. +# /shareCounts. (easyprivacy.txt: 1861) +/(.*/)?shareCounts\. +shareCounts.*. +# /setTDUID.do? (easyprivacy.txt: 1860) +/(.*/)?setTDUID\.do\? +# /SetSabreAnalyticsCookie. (easyprivacy.txt: 1859) +/(.*/)?SetSabreAnalyticsCookie\. +SetSabreAnalyticsCookie.*. +# /setcookie? (easyprivacy.txt: 1858) +/(.*/)?setcookie\? +# /setcooki. (easyprivacy.txt: 1857) +/(.*/)?setcooki\. +setcooki.*. +# /SETCOOKAFF. (easyprivacy.txt: 1856) +/(.*/)?SETCOOKAFF\. +SETCOOKAFF.*. +# /sessioncam/* (easyprivacy.txt: 1855) +/(.*/)?sessioncam/.* +# /session-tracker/tracking- (easyprivacy.txt: 1854) +/(.*/)?session-tracker/tracking- +# /session-hit. (easyprivacy.txt: 1853) +/(.*/)?session-hit\. +session-hit.*. +# /services/counters/* (easyprivacy.txt: 1852) +/(.*/)?services/counters/.* +# /services/counter/* (easyprivacy.txt: 1851) +/(.*/)?services/counter/.* +# /services/analytics/* (easyprivacy.txt: 1850) +/(.*/)?services/analytics/.* +# /server.php?request=track&output= (easyprivacy.txt: 1849) +/(.*/)?server\.php\?request=track&output= +# /serve/mtrcs_ (easyprivacy.txt: 1848) +/(.*/)?serve/mtrcs_ +# /SEOTracking. (easyprivacy.txt: 1847) +/(.*/)?SEOTracking\. +SEOTracking.*. +# /seotracker/* (easyprivacy.txt: 1846) +/(.*/)?seotracker/.* +# /seoTracker. (easyprivacy.txt: 1845) +/(.*/)?seoTracker\. +seoTracker.*. +# /seostats/* (easyprivacy.txt: 1844) +/(.*/)?seostats/.* +# /seomonitor/* (easyprivacy.txt: 1843) +/(.*/)?seomonitor/.* +# /send-impressions.html (easyprivacy.txt: 1842) +/(.*/)?send-impressions\.html +send-impressions.html*. +# /SEMTracking. (easyprivacy.txt: 1841) +/(.*/)?SEMTracking\. +SEMTracking.*. +# /semanticTagService.js (easyprivacy.txt: 1840) +/(.*/)?semanticTagService\.js +semanticTagService.js*. +# /SellathonCounterService. (easyprivacy.txt: 1839) +/(.*/)?SellathonCounterService\. +SellathonCounterService.*. +# /segmentIoTrackingProvider.js (easyprivacy.txt: 1838) +/(.*/)?segmentIoTrackingProvider\.js +segmentIoTrackingProvider.js*. +# /segmentio.js (easyprivacy.txt: 1837) +/(.*/)?segmentio\.js +segmentio.js*. +# /securetracker. (easyprivacy.txt: 1836) +/(.*/)?securetracker\. +securetracker.*. +# /searchMetric. (easyprivacy.txt: 1835) +/(.*/)?searchMetric\. +searchMetric.*. +# /searchIgnite. (easyprivacy.txt: 1834) +/(.*/)?searchIgnite\. +searchIgnite.*. +# /sdxp1/dru4/meta?_hc= (easyprivacy.txt: 1833) +/(.*/)?sdxp1/dru4/meta\?_hc= +# /sdctag2.js (easyprivacy.txt: 1832) +/(.*/)?sdctag2\.js +sdctag2.js*. +# /sdctag1.js (easyprivacy.txt: 1831) +/(.*/)?sdctag1\.js +sdctag1.js*. +# /sdctag. (easyprivacy.txt: 1830) +/(.*/)?sdctag\. +sdctag.*. +# /sdc_tag. (easyprivacy.txt: 1829) +/(.*/)?sdc_tag\. +# /sdc_reporting_ (easyprivacy.txt: 1828) +/(.*/)?sdc_reporting_ +# /sdc3.js (easyprivacy.txt: 1827) +/(.*/)?sdc3\.js +sdc3.js*. +# /sdc2.js (easyprivacy.txt: 1826) +/(.*/)?sdc2\.js +sdc2.js*. +# /sdc1.js (easyprivacy.txt: 1825) +/(.*/)?sdc1\.js +sdc1.js*. +# /sctracker. (easyprivacy.txt: 1824) +/(.*/)?sctracker\. +sctracker.*. +# /scripts/xiti/* (easyprivacy.txt: 1823) +/(.*/)?scripts/xiti/.* +# /scripts/log. (easyprivacy.txt: 1822) +/(.*/)?scripts/log\. +# /scripts/hbx.js (easyprivacy.txt: 1821) +/(.*/)?scripts/hbx\.js +# /scripts/ga.js (easyprivacy.txt: 1820) +/(.*/)?scripts/ga\.js +# /scripts/contador. (easyprivacy.txt: 1819) +/(.*/)?scripts/contador\. +# /scripts/clickjs.php (easyprivacy.txt: 1818) +/(.*/)?scripts/clickjs\.php +# /scripts.kissmetrics.com/* (easyprivacy.txt: 1817) +/(.*/)?scripts\.kissmetrics\.com/.* +scripts.kissmetrics.com/.* +# /script_log. (easyprivacy.txt: 1816) +/(.*/)?script_log\. +# /script/analytics/* (easyprivacy.txt: 1815) +/(.*/)?script/analytics/.* +# /sclanalyticstag. (easyprivacy.txt: 1814) +/(.*/)?sclanalyticstag\. +sclanalyticstag.*. +# /sb.trackers.js (easyprivacy.txt: 1813) +/(.*/)?sb\.trackers\.js +sb.trackers.js*. +# /sb.logger.js (easyprivacy.txt: 1812) +/(.*/)?sb\.logger\.js +sb.logger.js*. +# /savetracking? (easyprivacy.txt: 1811) +/(.*/)?savetracking\? +# /saveStats.php? (easyprivacy.txt: 1810) +/(.*/)?saveStats\.php\? +# /save_stats.php? (easyprivacy.txt: 1809) +/(.*/)?save_stats\.php\? +# /SAPOWebAnalytics/* (easyprivacy.txt: 1808) +/(.*/)?SAPOWebAnalytics/.* +# /salog.js (easyprivacy.txt: 1807) +/(.*/)?salog\.js +salog.js*. +# /sage_tracker. (easyprivacy.txt: 1806) +/(.*/)?sage_tracker\. +# /s.gif?t= (easyprivacy.txt: 1805) +/(.*/)?s\.gif\?t= +# /s.gif?log= (easyprivacy.txt: 1804) +/(.*/)?s\.gif\?log= +# /s.gif?l= (easyprivacy.txt: 1803) +/(.*/)?s\.gif\?l= +# /s.gif?a= (easyprivacy.txt: 1802) +/(.*/)?s\.gif\?a= +# /rwtaghome.js (easyprivacy.txt: 1801) +/(.*/)?rwtaghome\.js +rwtaghome.js*. +# /rwtag.js (easyprivacy.txt: 1800) +/(.*/)?rwtag\.js +rwtag.js*. +# /rwtag.gif? (easyprivacy.txt: 1799) +/(.*/)?rwtag\.gif\? +# /rum/id? (easyprivacy.txt: 1798) +/(.*/)?rum/id\? +# /rum-track? (easyprivacy.txt: 1797) +/(.*/)?rum-track\? +# /rum-dytrc. (easyprivacy.txt: 1796) +/(.*/)?rum-dytrc\. +rum-dytrc.*. +# /rubicsimp/c.gif? (easyprivacy.txt: 1795) +/(.*/)?rubicsimp/c\.gif\? +# /rubics_trk (easyprivacy.txt: 1794) +/(.*/)?rubics_trk +# /rtt-log-data? (easyprivacy.txt: 1793) +/(.*/)?rtt-log-data\? +# /rtracker. (easyprivacy.txt: 1792) +/(.*/)?rtracker\. +rtracker.*. +# /rtoaster.js (easyprivacy.txt: 1791) +/(.*/)?rtoaster\.js +rtoaster.js*. +# /rtkbeacon.gif? (easyprivacy.txt: 1790) +/(.*/)?rtkbeacon\.gif\? +# /rtd.js (easyprivacy.txt: 1789) +/(.*/)?rtd\.js +rtd.js*. +# /rpc/log? (easyprivacy.txt: 1788) +/(.*/)?rpc/log\? +# /rot_in.php (easyprivacy.txt: 1787) +/(.*/)?rot_in\.php +# /rolluptracker_ (easyprivacy.txt: 1786) +/(.*/)?rolluptracker_ +# /roiTrax. (easyprivacy.txt: 1785) +/(.*/)?roiTrax\. +roiTrax.*. +# /roitracker2. (easyprivacy.txt: 1784) +/(.*/)?roitracker2\. +roitracker2.*. +# /roitracker. (easyprivacy.txt: 1783) +/(.*/)?roitracker\. +roitracker.*. +# /roitrack. (easyprivacy.txt: 1782) +/(.*/)?roitrack\. +roitrack.*. +# /roiengine. (easyprivacy.txt: 1781) +/(.*/)?roiengine\. +roiengine.*. +# /roi_tracker. (easyprivacy.txt: 1780) +/(.*/)?roi_tracker\. +# /RMAnalytics. (easyprivacy.txt: 1779) +/(.*/)?RMAnalytics\. +RMAnalytics.*. +# /rkrt_tracker- (easyprivacy.txt: 1778) +/(.*/)?rkrt_tracker- +# /RioTracking2. (easyprivacy.txt: 1777) +/(.*/)?RioTracking2\. +RioTracking2.*. +# /revtracking/* (easyprivacy.txt: 1776) +/(.*/)?revtracking/.* +# /revsci. (easyprivacy.txt: 1775) +/(.*/)?revsci\. +revsci.*. +# /revinit.js (easyprivacy.txt: 1774) +/(.*/)?revinit\.js +revinit.js*. +# /RevenueScienceAPI. (easyprivacy.txt: 1773) +/(.*/)?RevenueScienceAPI\. +RevenueScienceAPI.*. +# /revenuescience_ (easyprivacy.txt: 1772) +/(.*/)?revenuescience_ +# /revenuescience. (easyprivacy.txt: 1771) +/(.*/)?revenuescience\. +revenuescience.*. +# /revenue-science. (easyprivacy.txt: 1770) +/(.*/)?revenue-science\. +revenue-science.*. +# /retargetingScript/* (easyprivacy.txt: 1769) +/(.*/)?retargetingScript/.* +# /resxclsa_ (easyprivacy.txt: 1768) +/(.*/)?resxclsa_ +# /resxclsa. (easyprivacy.txt: 1767) +/(.*/)?resxclsa\. +resxclsa.*. +# /restats_ (easyprivacy.txt: 1766) +/(.*/)?restats_ +# /rest/analytics/* (easyprivacy.txt: 1765) +/(.*/)?rest/analytics/.* +# /resourcestat. (easyprivacy.txt: 1764) +/(.*/)?resourcestat\. +resourcestat.*. +# /resmeter.js (easyprivacy.txt: 1763) +/(.*/)?resmeter\.js +resmeter.js*. +# /RequestTrackerServlet? (easyprivacy.txt: 1762) +/(.*/)?RequestTrackerServlet\? +# /reporting/analytics.js (easyprivacy.txt: 1761) +/(.*/)?reporting/analytics\.js +# /remoteTrackingManager.cfc?*trackPage& (easyprivacy.txt: 1760) +/(.*/)?remoteTrackingManager\.cfc\?.*trackPage& +# /RemoteTargetingService. (easyprivacy.txt: 1759) +/(.*/)?RemoteTargetingService\. +RemoteTargetingService.*. +# /RegisterWebPageVisit. (easyprivacy.txt: 1758) +/(.*/)?RegisterWebPageVisit\. +RegisterWebPageVisit.*. +# /registeradevent? (easyprivacy.txt: 1757) +/(.*/)?registeradevent\? +# /register_video_*&server= (easyprivacy.txt: 1756) +/(.*/)?register_video_.*&server= +# /register_stats.php? (easyprivacy.txt: 1755) +/(.*/)?register_stats\.php\? +# /reg_stat.php? (easyprivacy.txt: 1754) +/(.*/)?reg_stat\.php\? +# /refstats.asp? (easyprivacy.txt: 1753) +/(.*/)?refstats\.asp\? +# /RefinedAdsTracker.swf (easyprivacy.txt: 1752) +/(.*/)?RefinedAdsTracker\.swf +RefinedAdsTracker.swf*. +# /referrer.php?*http (easyprivacy.txt: 1751) +/(.*/)?referrer\.php\?.*http +# /referral_tracking. (easyprivacy.txt: 1750) +/(.*/)?referral_tracking\. +# /referral_tracker. (easyprivacy.txt: 1749) +/(.*/)?referral_tracker\. +# /refererRecord. (easyprivacy.txt: 1748) +/(.*/)?refererRecord\. +refererRecord.*. +# /referer.gif? (easyprivacy.txt: 1747) +/(.*/)?referer\.gif\? +# /referadd? (easyprivacy.txt: 1746) +/(.*/)?referadd\? +# /refer-tracking. (easyprivacy.txt: 1745) +/(.*/)?refer-tracking\. +refer-tracking.*. +# /refcount. (easyprivacy.txt: 1744) +/(.*/)?refcount\. +refcount.*. +# /redx/c.gif? (easyprivacy.txt: 1743) +/(.*/)?redx/c\.gif\? +# /redirectexittrack.php? (easyprivacy.txt: 1742) +/(.*/)?redirectexittrack\.php\? +# /recstatsv2. (easyprivacy.txt: 1741) +/(.*/)?recstatsv2\. +recstatsv2.*. +# /RecordHit? (easyprivacy.txt: 1740) +/(.*/)?RecordHit\? +# /RecordClickv2. (easyprivacy.txt: 1739) +/(.*/)?RecordClickv2\. +RecordClickv2.*. +# /RecordClick. (easyprivacy.txt: 1738) +/(.*/)?RecordClick\. +RecordClick.*. +# /record_visitor. (easyprivacy.txt: 1737) +/(.*/)?record_visitor\. +# /record_clicks. (easyprivacy.txt: 1736) +/(.*/)?record_clicks\. +# /record.do? (easyprivacy.txt: 1735) +/(.*/)?record\.do\? +# /record-impressions. (easyprivacy.txt: 1734) +/(.*/)?record-impressions\. +record-impressions.*. +# /recommendtrack? (easyprivacy.txt: 1733) +/(.*/)?recommendtrack\? +# /readtracker- (easyprivacy.txt: 1732) +/(.*/)?readtracker- +readtracker-*. +# /readReceipt/notify/?img=$image (easyprivacy.txt: 1731) +/(.*/)?readReceipt/notify/\?img= +# /readomniturecookie. (easyprivacy.txt: 1730) +/(.*/)?readomniturecookie\. +readomniturecookie.*. +# /readcounter.aspx? (easyprivacy.txt: 1729) +/(.*/)?readcounter\.aspx\? +# /rcdntpagetag.js (easyprivacy.txt: 1728) +/(.*/)?rcdntpagetag\.js +rcdntpagetag.js*. +# /rbipt.js (easyprivacy.txt: 1727) +/(.*/)?rbipt\.js +rbipt.js*. +# /rbipt.gif? (easyprivacy.txt: 1726) +/(.*/)?rbipt\.gif\? +# /rbi_us.js (easyprivacy.txt: 1725) +/(.*/)?rbi_us\.js +# /radium-one.js (easyprivacy.txt: 1724) +/(.*/)?radium-one\.js +radium-one.js*. +# /ra_track. (easyprivacy.txt: 1723) +/(.*/)?ra_track\. +# /quidsi.ga.js? (easyprivacy.txt: 1722) +/(.*/)?quidsi\.ga\.js\? +# /questus/* (easyprivacy.txt: 1721) +/(.*/)?questus/.* +# /qubittracker/* (easyprivacy.txt: 1720) +/(.*/)?qubittracker/.* +# /qubit-integration2. (easyprivacy.txt: 1719) +/(.*/)?qubit-integration2\. +qubit-integration2.*. +# /qubit-integration1. (easyprivacy.txt: 1718) +/(.*/)?qubit-integration1\. +qubit-integration1.*. +# /quantv2.swf? (easyprivacy.txt: 1717) +/(.*/)?quantv2\.swf\? +# /quantserve.com/* (easyprivacy.txt: 1716) +/(.*/)?quantserve\.com/.* +quantserve.com/.* +# /quantcastjs/* (easyprivacy.txt: 1715) +/(.*/)?quantcastjs/.* +# /QuantcastAnalyticsModule. (easyprivacy.txt: 1714) +/(.*/)?QuantcastAnalyticsModule\. +QuantcastAnalyticsModule.*. +# /quantcast_ (easyprivacy.txt: 1713) +/(.*/)?quantcast_ +# /quantcast/* (easyprivacy.txt: 1712) +/(.*/)?quantcast/.* +# /quantcast.xml (easyprivacy.txt: 1711) +/(.*/)?quantcast\.xml +quantcast.xml*. +# /quantcast.js (easyprivacy.txt: 1710) +/(.*/)?quantcast\.js +quantcast.js*. +# /quant.swf? (easyprivacy.txt: 1709) +/(.*/)?quant\.swf\? +# /quant.js (easyprivacy.txt: 1708) +/(.*/)?quant\.js +quant.js*. +# /QualtricsSurvey. (easyprivacy.txt: 1707) +/(.*/)?QualtricsSurvey\. +QualtricsSurvey.*. +# /qtracker- (easyprivacy.txt: 1706) +/(.*/)?qtracker- +qtracker-*. +# /pzn/proxysignature (easyprivacy.txt: 1705) +/(.*/)?pzn/proxysignature +# /pxtrk.gif (easyprivacy.txt: 1704) +/(.*/)?pxtrk\.gif +pxtrk.gif*. +# /pxlctl. (easyprivacy.txt: 1703) +/(.*/)?pxlctl\. +pxlctl.*. +# /pxl.cgi? (easyprivacy.txt: 1702) +/(.*/)?pxl\.cgi\? +# /pxa.min.js (easyprivacy.txt: 1701) +/(.*/)?pxa\.min\.js +pxa.min.js*. +# /px_trans.gif (easyprivacy.txt: 1700) +/(.*/)?px_trans\.gif +# /px.gif? (easyprivacy.txt: 1699) +/(.*/)?px\.gif\? +# /PvServlet? (easyprivacy.txt: 1698) +/(.*/)?PvServlet\? +# /pvserver/pv.js (easyprivacy.txt: 1697) +/(.*/)?pvserver/pv\.js +# /pview?event (easyprivacy.txt: 1696) +/(.*/)?pview\?event +# /pvcount. (easyprivacy.txt: 1695) +/(.*/)?pvcount\. +pvcount.*. +# /pv.txt? (easyprivacy.txt: 1694) +/(.*/)?pv\.txt\? +# /pv.gif?url (easyprivacy.txt: 1693) +/(.*/)?pv\.gif\?url +# /public/visitor/create? (easyprivacy.txt: 1692) +/(.*/)?public/visitor/create\? +# /public/visitor.json? (easyprivacy.txt: 1691) +/(.*/)?public/visitor\.json\? +# /pubimppixel/* (easyprivacy.txt: 1690) +/(.*/)?pubimppixel/.* +# /pub/as?_ri_=$image (easyprivacy.txt: 1689) +/(.*/)?pub/as\?_ri_= +# /ptrack. (easyprivacy.txt: 1688) +/(.*/)?ptrack\. +ptrack.*. +# /pstats. (easyprivacy.txt: 1687) +/(.*/)?pstats\. +pstats.*. +# /promos/pixels? (easyprivacy.txt: 1686) +/(.*/)?promos/pixels\? +# /promo_tracking/* (easyprivacy.txt: 1685) +/(.*/)?promo_tracking/.* +# /profile_tracker. (easyprivacy.txt: 1684) +/(.*/)?profile_tracker\. +# /prodtracker? (easyprivacy.txt: 1683) +/(.*/)?prodtracker\? +# /process.php?ut=*&rf= (easyprivacy.txt: 1682) +/(.*/)?process\.php\?ut=.*&rf= +# /pro-ping.php? (easyprivacy.txt: 1681) +/(.*/)?pro-ping\.php\? +# /prnx_track. (easyprivacy.txt: 1680) +/(.*/)?prnx_track\. +# /printtracker.js (easyprivacy.txt: 1679) +/(.*/)?printtracker\.js +printtracker.js*. +# /prime-email-metrics/*$image (easyprivacy.txt: 1678) +/(.*/)?prime-email-metrics/.* +# /pr.php? (easyprivacy.txt: 1677) +/(.*/)?pr\.php\? +# /pphlogger. (easyprivacy.txt: 1676) +/(.*/)?pphlogger\. +pphlogger.*. +# /powercount. (easyprivacy.txt: 1675) +/(.*/)?powercount\. +powercount.*. +# /postlog? (easyprivacy.txt: 1674) +/(.*/)?postlog\? +# /popuplog/* (easyprivacy.txt: 1673) +/(.*/)?popuplog/.* +# /popupCookieWriter. (easyprivacy.txt: 1672) +/(.*/)?popupCookieWriter\. +popupCookieWriter.*. +# /popanalytics. (easyprivacy.txt: 1671) +/(.*/)?popanalytics\. +popanalytics.*. +# /pomegranate.js (easyprivacy.txt: 1670) +/(.*/)?pomegranate\.js +pomegranate.js*. +# /PointRollAnonymous. (easyprivacy.txt: 1669) +/(.*/)?PointRollAnonymous\. +PointRollAnonymous.*. +# /PointRoll. (easyprivacy.txt: 1668) +/(.*/)?PointRoll\. +PointRoll.*. +# /point_roll. (easyprivacy.txt: 1667) +/(.*/)?point_roll\. +# /pmspxl. (easyprivacy.txt: 1666) +/(.*/)?pmspxl\. +pmspxl.*. +# /PmsPixel? (easyprivacy.txt: 1665) +/(.*/)?PmsPixel\? +# /plugins/wordfence/visitor.php? (easyprivacy.txt: 1664) +/(.*/)?plugins/wordfence/visitor\.php\? +# /plugins/userinfo.gif? (easyprivacy.txt: 1663) +/(.*/)?plugins/userinfo\.gif\? +# /plugins/status.gif? (easyprivacy.txt: 1662) +/(.*/)?plugins/status\.gif\? +# /plugins/catman/* (easyprivacy.txt: 1661) +/(.*/)?plugins/catman/.* +# /pluck-tracking. (easyprivacy.txt: 1660) +/(.*/)?pluck-tracking\. +pluck-tracking.*. +# /plog?id (easyprivacy.txt: 1659) +/(.*/)?plog\?id +# /plingatracker. (easyprivacy.txt: 1658) +/(.*/)?plingatracker\. +plingatracker.*. +# /plgtrafic. (easyprivacy.txt: 1657) +/(.*/)?plgtrafic\. +plgtrafic.*. +# /playertracking/* (easyprivacy.txt: 1656) +/(.*/)?playertracking/.* +# /playerlogger. (easyprivacy.txt: 1655) +/(.*/)?playerlogger\. +playerlogger.*. +# /PlayerDashboardLoggingService.svc/json/StartSession? (easyprivacy.txt: 1654) +/(.*/)?PlayerDashboardLoggingService\.svc/json/StartSession\? +PlayerDashboardLoggingService.svc/json/StartSession\? +# /player_counter.ashx? (easyprivacy.txt: 1653) +/(.*/)?player_counter\.ashx\? +# /planetstat. (easyprivacy.txt: 1652) +/(.*/)?planetstat\. +planetstat.*. +# /pladtrack. (easyprivacy.txt: 1651) +/(.*/)?pladtrack\. +pladtrack.*. +# /pixy.gif? (easyprivacy.txt: 1650) +/(.*/)?pixy\.gif\? +# /pixLogVisit. (easyprivacy.txt: 1649) +/(.*/)?pixLogVisit\. +pixLogVisit.*. +# /pixeltracking/* (easyprivacy.txt: 1648) +/(.*/)?pixeltracking/.* +# /PixelTracking. (easyprivacy.txt: 1647) +/(.*/)?PixelTracking\. +PixelTracking.*. +# /pixeltracker. (easyprivacy.txt: 1646) +/(.*/)?pixeltracker\. +pixeltracker.*. +# /pixeltrack.php? (easyprivacy.txt: 1645) +/(.*/)?pixeltrack\.php\? +# /pixelTargetingCacheBuster. (easyprivacy.txt: 1644) +/(.*/)?pixelTargetingCacheBuster\. +pixelTargetingCacheBuster.*. +# /pixelstats/* (easyprivacy.txt: 1643) +/(.*/)?pixelstats/.* +# /pixels.jsp? (easyprivacy.txt: 1642) +/(.*/)?pixels\.jsp\? +# /pixelNew.js (easyprivacy.txt: 1641) +/(.*/)?pixelNew\.js +pixelNew.js*. +# /PixelNedstat. (easyprivacy.txt: 1640) +/(.*/)?PixelNedstat\. +PixelNedstat.*. +# /pixellog. (easyprivacy.txt: 1639) +/(.*/)?pixellog\. +pixellog.*. +# /PixelImg.asp (easyprivacy.txt: 1638) +/(.*/)?PixelImg\.asp +PixelImg.asp*. +# /pixelframe/* (easyprivacy.txt: 1637) +/(.*/)?pixelframe/.* +# /pixelcounter. (easyprivacy.txt: 1636) +/(.*/)?pixelcounter\. +pixelcounter.*. +# /pixel_tracking. (easyprivacy.txt: 1635) +/(.*/)?pixel_tracking\. +# /pixel_track. (easyprivacy.txt: 1634) +/(.*/)?pixel_track\. +# /pixel_iframe. (easyprivacy.txt: 1633) +/(.*/)?pixel_iframe\. +# /pixel/impression/* (easyprivacy.txt: 1632) +/(.*/)?pixel/impression/.* +# /pixel.track? (easyprivacy.txt: 1631) +/(.*/)?pixel\.track\? +# /pixel.swf? (easyprivacy.txt: 1630) +/(.*/)?pixel\.swf\? +# /pixel.png? (easyprivacy.txt: 1629) +/(.*/)?pixel\.png\? +# /pixel.php? (easyprivacy.txt: 1628) +/(.*/)?pixel\.php\? +# /pixel.jsp? (easyprivacy.txt: 1627) +/(.*/)?pixel\.jsp\? +# /pixel.gif? (easyprivacy.txt: 1626) +/(.*/)?pixel\.gif\? +# /pixel.cgi? (easyprivacy.txt: 1625) +/(.*/)?pixel\.cgi\? +# /pixel-page.html (easyprivacy.txt: 1624) +/(.*/)?pixel-page\.html +pixel-page.html*. +# /pixel-manager.js? (easyprivacy.txt: 1623) +/(.*/)?pixel-manager\.js\? +# /pixall.min.js (easyprivacy.txt: 1622) +/(.*/)?pixall\.min\.js +pixall.min.js*. +# /pix.gif? (easyprivacy.txt: 1621) +/(.*/)?pix\.gif\? +# /pix.fcg? (easyprivacy.txt: 1620) +/(.*/)?pix\.fcg\? +# /piwikTracker. (easyprivacy.txt: 1619) +/(.*/)?piwikTracker\. +piwikTracker.*. +# /piwikC_ (easyprivacy.txt: 1618) +/(.*/)?piwikC_ +# /piwikapi.js (easyprivacy.txt: 1617) +/(.*/)?piwikapi\.js +piwikapi.js*. +# /piwik_ (easyprivacy.txt: 1616) +/(.*/)?piwik_ +# /piwik2.js (easyprivacy.txt: 1615) +/(.*/)?piwik2\.js +piwik2.js*. +# /piwik1. (easyprivacy.txt: 1614) +/(.*/)?piwik1\. +piwik1.*. +# /piwik.php (easyprivacy.txt: 1612) +/(.*/)?piwik\.php +piwik.php*. +# /pistats/cgi-bin/* (easyprivacy.txt: 1609) +/(.*/)?pistats/cgi-bin/.* +# /pingServerAction? (easyprivacy.txt: 1608) +/(.*/)?pingServerAction\? +# /PingPixel. (easyprivacy.txt: 1607) +/(.*/)?PingPixel\. +PingPixel.*. +# /pinger.cgi? (easyprivacy.txt: 1606) +/(.*/)?pinger\.cgi\? +# /pingd? (easyprivacy.txt: 1605) +/(.*/)?pingd\? +# /ping_hotclick.js (easyprivacy.txt: 1604) +/(.*/)?ping_hotclick\.js +# /ping_g.jsp? (easyprivacy.txt: 1603) +/(.*/)?ping_g\.jsp\? +# /ping?spacedesc (easyprivacy.txt: 1602) +/(.*/)?ping\?spacedesc +# /ping?h= (easyprivacy.txt: 1601) +/(.*/)?ping\?h= +# /ping/show? (easyprivacy.txt: 1600) +/(.*/)?ping/show\? +# /ping/dot.gif? (easyprivacy.txt: 1599) +/(.*/)?ping/dot\.gif\? +# /ping/?url= (easyprivacy.txt: 1598) +/(.*/)?ping/\?url= +# /ping/?p= (easyprivacy.txt: 1597) +/(.*/)?ping/\?p= +# /ping.php?sid= (easyprivacy.txt: 1596) +/(.*/)?ping\.php\?sid= +# /ping.gif? (easyprivacy.txt: 1595) +/(.*/)?ping\.gif\? +# /ping.*/ping.js (easyprivacy.txt: 1594) +/(.*/)?ping\..*/ping\.js +ping.*./(.*/)?ping\.js +# /phpmyvisites.js (easyprivacy.txt: 1593) +/(.*/)?phpmyvisites\.js +phpmyvisites.js*. +# /php-stats.recjs.php? (easyprivacy.txt: 1592) +/(.*/)?php-stats\.recjs\.php\? +# /php-stats.phpjs.php? (easyprivacy.txt: 1591) +/(.*/)?php-stats\.phpjs\.php\? +# /php-stats.php? (easyprivacy.txt: 1590) +/(.*/)?php-stats\.php\? +# /php-stats.js (easyprivacy.txt: 1589) +/(.*/)?php-stats\.js +php-stats.js*. +# /pgtrackingV3. (easyprivacy.txt: 1588) +/(.*/)?pgtrackingV3\. +pgtrackingV3.*. +# /pgtracking. (easyprivacy.txt: 1587) +/(.*/)?pgtracking\. +pgtracking.*. +# /permalink-tracker.html? (easyprivacy.txt: 1586) +/(.*/)?permalink-tracker\.html\? +# /performance.fcgi? (easyprivacy.txt: 1585) +/(.*/)?performance\.fcgi\? +# /pcount.asp (easyprivacy.txt: 1584) +/(.*/)?pcount\.asp +pcount.asp*. +# /pcookie_get_key (easyprivacy.txt: 1583) +/(.*/)?pcookie_get_key +# /PBSTrackingPlugIn. (easyprivacy.txt: 1582) +/(.*/)?PBSTrackingPlugIn\. +PBSTrackingPlugIn.*. +# /pbasitetracker. (easyprivacy.txt: 1581) +/(.*/)?pbasitetracker\. +pbasitetracker.*. +# /pap.swf? (easyprivacy.txt: 1580) +/(.*/)?pap\.swf\? +# /PageviewsTracker. (easyprivacy.txt: 1579) +/(.*/)?PageviewsTracker\. +PageviewsTracker.*. +# /pageviews?token= (easyprivacy.txt: 1578) +/(.*/)?pageviews\?token= +# /pageviews/* (easyprivacy.txt: 1577) +/(.*/)?pageviews/.* +# /pageviews-counter- (easyprivacy.txt: 1576) +/(.*/)?pageviews-counter- +pageviews-counter-*. +# /pageview; (easyprivacy.txt: 1575) +/(.*/)?pageview; +# /pageview.ashx (easyprivacy.txt: 1574) +/(.*/)?pageview\.ashx +pageview.ashx*. +# /pageView.act (easyprivacy.txt: 1573) +/(.*/)?pageView\.act +pageView.act*. +# /pageTracking.js (easyprivacy.txt: 1572) +/(.*/)?pageTracking\.js +pageTracking.js*. +# /pageTrackerEvent. (easyprivacy.txt: 1571) +/(.*/)?pageTrackerEvent\. +pageTrackerEvent.*. +# /pageTracker_ (easyprivacy.txt: 1570) +/(.*/)?pageTracker_ +# /PageTracker? (easyprivacy.txt: 1569) +/(.*/)?PageTracker\? +# /pageTracker/? (easyprivacy.txt: 1568) +/(.*/)?pageTracker/\? +# /PageTracker. (easyprivacy.txt: 1567) +/(.*/)?PageTracker\. +PageTracker.*. +# /pagetrack.php? (easyprivacy.txt: 1566) +/(.*/)?pagetrack\.php\? +# /PageTrack.js (easyprivacy.txt: 1565) +/(.*/)?PageTrack\.js +PageTrack.js*. +# /pageTag? (easyprivacy.txt: 1564) +/(.*/)?pageTag\? +# /pagetag.gif? (easyprivacy.txt: 1563) +/(.*/)?pagetag\.gif\? +# /pagestats/* (easyprivacy.txt: 1562) +/(.*/)?pagestats/.* +# /PageStats. (easyprivacy.txt: 1561) +/(.*/)?PageStats\. +PageStats.*. +# /PageStatistics/* (easyprivacy.txt: 1560) +/(.*/)?PageStatistics/.* +# /pageloggerobyx. (easyprivacy.txt: 1559) +/(.*/)?pageloggerobyx\. +pageloggerobyx.*. +# /pagelogger/connector.php? (easyprivacy.txt: 1558) +/(.*/)?pagelogger/connector\.php\? +# /pagehits/* (easyprivacy.txt: 1557) +/(.*/)?pagehits/.* +# /PageHitPixel. (easyprivacy.txt: 1556) +/(.*/)?PageHitPixel\. +PageHitPixel.*. +# /PageHit.ashx (easyprivacy.txt: 1555) +/(.*/)?PageHit\.ashx +PageHit.ashx*. +# /pagedot.gif? (easyprivacy.txt: 1554) +/(.*/)?pagedot\.gif\? +# /pageCounter.adp? (easyprivacy.txt: 1553) +/(.*/)?pageCounter\.adp\? +# /PageCount.php? (easyprivacy.txt: 1552) +/(.*/)?PageCount\.php\? +# /page_imp; (easyprivacy.txt: 1551) +/(.*/)?page_imp; +# /page_counter. (easyprivacy.txt: 1550) +/(.*/)?page_counter\. +# /page_analytics. (easyprivacy.txt: 1549) +/(.*/)?page_analytics\. +# /page-track. (easyprivacy.txt: 1548) +/(.*/)?page-track\. +page-track.*. +# /page-analytics. (easyprivacy.txt: 1547) +/(.*/)?page-analytics\. +page-analytics.*. +# /oxtracker. (easyprivacy.txt: 1546) +/(.*/)?oxtracker\. +oxtracker.*. +# /ox_stats. (easyprivacy.txt: 1545) +/(.*/)?ox_stats\. +# /owa.tracker-combined-min.js (easyprivacy.txt: 1544) +/(.*/)?owa\.tracker-combined-min\.js +owa.tracker-combined-min.js*. +# /ow_analytics. (easyprivacy.txt: 1543) +/(.*/)?ow_analytics\. +# /ovstats. (easyprivacy.txt: 1542) +/(.*/)?ovstats\. +ovstats.*. +# /ot_e404.gif? (easyprivacy.txt: 1541) +/(.*/)?ot_e404\.gif\? +# /osGoogleAnalytics. (easyprivacy.txt: 1540) +/(.*/)?osGoogleAnalytics\. +osGoogleAnalytics.*. +# /ordertrack/* (easyprivacy.txt: 1539) +/(.*/)?ordertrack/.* +# /OptimostPageCode. (easyprivacy.txt: 1538) +/(.*/)?OptimostPageCode\. +OptimostPageCode.*. +# /optimostHeader2. (easyprivacy.txt: 1537) +/(.*/)?optimostHeader2\. +optimostHeader2.*. +# /optimostHeader1. (easyprivacy.txt: 1536) +/(.*/)?optimostHeader1\. +optimostHeader1.*. +# /optimostHeader. (easyprivacy.txt: 1535) +/(.*/)?optimostHeader\. +optimostHeader.*. +# /optimosthead/* (easyprivacy.txt: 1534) +/(.*/)?optimosthead/.* +# /optimosthead. (easyprivacy.txt: 1533) +/(.*/)?optimosthead\. +optimosthead.*. +# /OptimostFooter. (easyprivacy.txt: 1532) +/(.*/)?OptimostFooter\. +OptimostFooter.*. +# /optimostfoot. (easyprivacy.txt: 1531) +/(.*/)?optimostfoot\. +optimostfoot.*. +# /optimostBody2. (easyprivacy.txt: 1530) +/(.*/)?optimostBody2\. +optimostBody2.*. +# /optimostBody1. (easyprivacy.txt: 1529) +/(.*/)?optimostBody1\. +optimostBody1.*. +# /optimost_ (easyprivacy.txt: 1528) +/(.*/)?optimost_ +# /Optimost/* (easyprivacy.txt: 1527) +/(.*/)?Optimost/.* +# /optimost. (easyprivacy.txt: 1526) +/(.*/)?optimost\. +optimost.*. +# /optimost- (easyprivacy.txt: 1525) +/(.*/)?optimost- +optimost-*. +# /optimizely/*$script (easyprivacy.txt: 1524) +/(.*/)?optimizely/.* +# /opinionlab.js (easyprivacy.txt: 1523) +/(.*/)?opinionlab\.js +opinionlab.js*. +# /openxtargeting.js (easyprivacy.txt: 1522) +/(.*/)?openxtargeting\.js +openxtargeting.js*. +# /openxblank.gif? (easyprivacy.txt: 1521) +/(.*/)?openxblank\.gif\? +# /opentag/* (easyprivacy.txt: 1520) +/(.*/)?opentag/.* +# /opentag- (easyprivacy.txt: 1519) +/(.*/)?opentag- +opentag-*. +# /open/log/* (easyprivacy.txt: 1518) +/(.*/)?open/log/.* +# /onsitegeo. (easyprivacy.txt: 1517) +/(.*/)?onsitegeo\. +onsitegeo.*. +# /onlinecount.php (easyprivacy.txt: 1516) +/(.*/)?onlinecount\.php +onlinecount.php*. +# /onestat.js (easyprivacy.txt: 1515) +/(.*/)?onestat\.js +onestat.js*. +# /onedot.php? (easyprivacy.txt: 1514) +/(.*/)?onedot\.php\? +# /oms_analytics_ (easyprivacy.txt: 1513) +/(.*/)?oms_analytics_ +# /omniunih.js (easyprivacy.txt: 1512) +/(.*/)?omniunih\.js +omniunih.js*. +# /OmnitureTracking_$object-subrequest (easyprivacy.txt: 1511) +/(.*/)?OmnitureTracking_ +# /OmnitureAnalytics. (easyprivacy.txt: 1510) +/(.*/)?OmnitureAnalytics\. +OmnitureAnalytics.*. +# /omniture/sphere (easyprivacy.txt: 1509) +/(.*/)?omniture/sphere +# /omniture.do;$image (easyprivacy.txt: 1508) +/(.*/)?omniture\.do; +# /omnipagetrack. (easyprivacy.txt: 1507) +/(.*/)?omnipagetrack\. +omnipagetrack.*. +# /omnidiggthis| (easyprivacy.txt: 1506) +/(.*/)?omnidiggthis$ +# /om_tracking_ (easyprivacy.txt: 1505) +/(.*/)?om_tracking_ +# /om_ctrack. (easyprivacy.txt: 1504) +/(.*/)?om_ctrack\. +# /odoscope.js (easyprivacy.txt: 1503) +/(.*/)?odoscope\.js +odoscope.js*. +# /ocounter. (easyprivacy.txt: 1502) +/(.*/)?ocounter\. +ocounter.*. +# /ocount.php (easyprivacy.txt: 1501) +/(.*/)?ocount\.php +ocount.php*. +# /object_stats. (easyprivacy.txt: 1500) +/(.*/)?object_stats\. +# /oas_analytics. (easyprivacy.txt: 1499) +/(.*/)?oas_analytics\. +# /numericAnalyticsFramework. (easyprivacy.txt: 1498) +/(.*/)?numericAnalyticsFramework\. +numericAnalyticsFramework.*. +# /ntrack.asp? (easyprivacy.txt: 1497) +/(.*/)?ntrack\.asp\? +# /ntpagetaghttps. (easyprivacy.txt: 1496) +/(.*/)?ntpagetaghttps\. +ntpagetaghttps.*. +# /ntpagetag_ (easyprivacy.txt: 1495) +/(.*/)?ntpagetag_ +# /ntpagetag. (easyprivacy.txt: 1494) +/(.*/)?ntpagetag\. +ntpagetag.*. +# /ntpagetag- (easyprivacy.txt: 1493) +/(.*/)?ntpagetag- +ntpagetag-*. +# /nStat/* (easyprivacy.txt: 1492) +/(.*/)?nStat/.* +# /npssurvey. (easyprivacy.txt: 1491) +/(.*/)?npssurvey\. +npssurvey.*. +# /no-impression.gif? (easyprivacy.txt: 1490) +/(.*/)?no-impression\.gif\? +# /nm_trck.gif? (easyprivacy.txt: 1489) +/(.*/)?nm_trck\.gif\? +# /nm_track.js (easyprivacy.txt: 1488) +/(.*/)?nm_track\.js +# /nm_tr_combined.js (easyprivacy.txt: 1487) +/(.*/)?nm_tr_combined\.js +# /nm_tr_combined-min.js (easyprivacy.txt: 1486) +/(.*/)?nm_tr_combined-min\.js +# /njs.gif? (easyprivacy.txt: 1485) +/(.*/)?njs\.gif\? +# /NitroCookies.js (easyprivacy.txt: 1484) +/(.*/)?NitroCookies\.js +NitroCookies.js*. +# /ninemsn.tracking. (easyprivacy.txt: 1483) +/(.*/)?ninemsn\.tracking\. +ninemsn.tracking.*. +# /nikioWSJCallback. (easyprivacy.txt: 1482) +/(.*/)?nikioWSJCallback\. +nikioWSJCallback.*. +# /nielson_stats. (easyprivacy.txt: 1481) +/(.*/)?nielson_stats\. +# /nielson/track (easyprivacy.txt: 1480) +/(.*/)?nielson/track +# /NielsenTracking. (easyprivacy.txt: 1479) +/(.*/)?NielsenTracking\. +NielsenTracking.*. +# /nielsenscv53.$script (easyprivacy.txt: 1478) +/(.*/)?nielsenscv53\. +nielsenscv53.*. +# /NielsenData/* (easyprivacy.txt: 1477) +/(.*/)?NielsenData/.* +# /NielsenAnalytics. (easyprivacy.txt: 1476) +/(.*/)?NielsenAnalytics\. +NielsenAnalytics.*. +# /nielsen_v53. (easyprivacy.txt: 1475) +/(.*/)?nielsen_v53\. +# /nielsen_geotarget/* (easyprivacy.txt: 1474) +/(.*/)?nielsen_geotarget/.* +# /Nielsen53. (easyprivacy.txt: 1473) +/(.*/)?Nielsen53\. +Nielsen53.*. +# /nielsen/* (easyprivacy.txt: 1472) +/(.*/)?nielsen/.* +# /Nielsen.v53. (easyprivacy.txt: 1471) +/(.*/)?Nielsen\.v53\. +Nielsen.v53.*. +# /nielsen.track (easyprivacy.txt: 1470) +/(.*/)?nielsen\.track +nielsen.track*. +# /nielsen.min. (easyprivacy.txt: 1469) +/(.*/)?nielsen\.min\. +nielsen.min.*. +# /nielsen.js (easyprivacy.txt: 1468) +/(.*/)?nielsen\.js +nielsen.js*. +# /nielsen.htm (easyprivacy.txt: 1467) +/(.*/)?nielsen\.htm +nielsen.htm*. +# /nextPerformanceRetargeting. (easyprivacy.txt: 1466) +/(.*/)?nextPerformanceRetargeting\. +nextPerformanceRetargeting.*. +# /newstatsinc. (easyprivacy.txt: 1465) +/(.*/)?newstatsinc\. +newstatsinc.*. +# /newSophus/* (easyprivacy.txt: 1464) +/(.*/)?newSophus/.* +# /newscount/* (easyprivacy.txt: 1463) +/(.*/)?newscount/.* +# /newlog.php? (easyprivacy.txt: 1462) +/(.*/)?newlog\.php\? +# /new.cnt.aspx? (easyprivacy.txt: 1461) +/(.*/)?new\.cnt\.aspx\? +# /neustar.beacon. (easyprivacy.txt: 1460) +/(.*/)?neustar\.beacon\. +neustar.beacon.*. +# /netupdate/live.php? (easyprivacy.txt: 1459) +/(.*/)?netupdate/live\.php\? +# /nettracker/* (easyprivacy.txt: 1458) +/(.*/)?nettracker/.* +# /nettracker.js (easyprivacy.txt: 1457) +/(.*/)?nettracker\.js +nettracker.js*. +# /netresults.js (easyprivacy.txt: 1456) +/(.*/)?netresults\.js +netresults.js*. +# /netratings.js (easyprivacy.txt: 1455) +/(.*/)?netratings\.js +netratings.js*. +# /netmining.js (easyprivacy.txt: 1454) +/(.*/)?netmining\.js +netmining.js*. +# /netmind-$script (easyprivacy.txt: 1453) +/(.*/)?netmind- +netmind-*. +# /netizen_track. (easyprivacy.txt: 1452) +/(.*/)?netizen_track\. +# /netgraviton.net/* (easyprivacy.txt: 1451) +/(.*/)?netgraviton\.net/.* +netgraviton.net/.* +# /netcounter? (easyprivacy.txt: 1450) +/(.*/)?netcounter\? +# /netconversions. (easyprivacy.txt: 1449) +/(.*/)?netconversions\. +netconversions.*. +# /neocounter/* (easyprivacy.txt: 1448) +/(.*/)?neocounter/.* +# /neocounter. (easyprivacy.txt: 1447) +/(.*/)?neocounter\. +neocounter.*. +# /neilson.js (easyprivacy.txt: 1446) +/(.*/)?neilson\.js +neilson.js*. +# /nedstat. (easyprivacy.txt: 1445) +/(.*/)?nedstat\. +nedstat.*. +# /ncp/checkBrowser? (easyprivacy.txt: 1444) +/(.*/)?ncp/checkBrowser\? +# /naytev.min.js (easyprivacy.txt: 1443) +/(.*/)?naytev\.min\.js +naytev.min.js*. +# /NavMultiTracking. (easyprivacy.txt: 1442) +/(.*/)?NavMultiTracking\. +NavMultiTracking.*. +# /naveggQry- (easyprivacy.txt: 1441) +/(.*/)?naveggQry- +naveggQry-*. +# /myTracking.js (easyprivacy.txt: 1440) +/(.*/)?myTracking\.js +myTracking.js*. +# /mystats2.px? (easyprivacy.txt: 1439) +/(.*/)?mystats2\.px\? +# /mystats/track.js (easyprivacy.txt: 1438) +/(.*/)?mystats/track\.js +# /mystats.asp? (easyprivacy.txt: 1437) +/(.*/)?mystats\.asp\? +# /myopslogger. (easyprivacy.txt: 1436) +/(.*/)?myopslogger\. +myopslogger.*. +# /mycounter/counter_in.php? (easyprivacy.txt: 1435) +/(.*/)?mycounter/counter_in\.php\? +# /myasg/stats_js.asp (easyprivacy.txt: 1434) +/(.*/)?myasg/stats_js\.asp +# /mwtag_flash.js (easyprivacy.txt: 1433) +/(.*/)?mwtag_flash\.js +# /mwTag.js (easyprivacy.txt: 1432) +/(.*/)?mwTag\.js +mwTag.js*. +# /mvTracker. (easyprivacy.txt: 1431) +/(.*/)?mvTracker\. +mvTracker.*. +# /mtvi_reporting.js (easyprivacy.txt: 1430) +/(.*/)?mtvi_reporting\.js +# /mtracking. (easyprivacy.txt: 1429) +/(.*/)?mtracking\. +mtracking.*. +# /mtrack.nl/js/* (easyprivacy.txt: 1428) +/(.*/)?mtrack\.nl/js/.* +mtrack.nl/js/.* +# /mstartracking/* (easyprivacy.txt: 1427) +/(.*/)?mstartracking/.* +# /msftaudience. (easyprivacy.txt: 1426) +/(.*/)?msftaudience\. +msftaudience.*. +# /mpulse.min.js (easyprivacy.txt: 1425) +/(.*/)?mpulse\.min\.js +mpulse.min.js*. +# /mpel/mpel.js (easyprivacy.txt: 1424) +/(.*/)?mpel/mpel\.js +# /mousetrap/mp-embed. (easyprivacy.txt: 1423) +/(.*/)?mousetrap/mp-embed\. +# /mouseover-tracker. (easyprivacy.txt: 1422) +/(.*/)?mouseover-tracker\. +mouseover-tracker.*. +# /morega.js (easyprivacy.txt: 1421) +/(.*/)?morega\.js +morega.js*. +# /monitus.js (easyprivacy.txt: 1420) +/(.*/)?monitus\.js +monitus.js*. +# /mongoose.fp.js (easyprivacy.txt: 1419) +/(.*/)?mongoose\.fp\.js +mongoose.fp.js*. +# /moduleTracker. (easyprivacy.txt: 1418) +/(.*/)?moduleTracker\. +moduleTracker.*. +# /modoweb-tracking/* (easyprivacy.txt: 1417) +/(.*/)?modoweb-tracking/.* +# /mobileanalytics. (easyprivacy.txt: 1416) +/(.*/)?mobileanalytics\. +mobileanalytics.*. +# /mobify_ga.gif (easyprivacy.txt: 1415) +/(.*/)?mobify_ga\.gif +# /mngi/tracking/* (easyprivacy.txt: 1414) +/(.*/)?mngi/tracking/.* +# /mmetrix.mobi/* (easyprivacy.txt: 1413) +/(.*/)?mmetrix\.mobi/.* +mmetrix.mobi/.* +# /mmcore.js (easyprivacy.txt: 1412) +/(.*/)?mmcore\.js +mmcore.js*. +# /mmclient.js (easyprivacy.txt: 1411) +/(.*/)?mmclient\.js +mmclient.js*. +# /mm_track/* (easyprivacy.txt: 1410) +/(.*/)?mm_track/.* +# /mm-metrics. (easyprivacy.txt: 1409) +/(.*/)?mm-metrics\. +mm-metrics.*. +# /mlopen_track. (easyprivacy.txt: 1408) +/(.*/)?mlopen_track\. +# /ml.track.me? (easyprivacy.txt: 1407) +/(.*/)?ml\.track\.me\? +# /mktg_metrics/* (easyprivacy.txt: 1406) +/(.*/)?mktg_metrics/.* +# /mixpanel_tracker. (easyprivacy.txt: 1405) +/(.*/)?mixpanel_tracker\. +# /mixpanel_beacon. (easyprivacy.txt: 1404) +/(.*/)?mixpanel_beacon\. +# /mixpanel. (easyprivacy.txt: 1403) +/(.*/)?mixpanel\. +mixpanel.*. +# /mixpanel-measurement. (easyprivacy.txt: 1402) +/(.*/)?mixpanel-measurement\. +mixpanel-measurement.*. +# /mistats/* (easyprivacy.txt: 1401) +/(.*/)?mistats/.* +# /mintstats/?js (easyprivacy.txt: 1400) +/(.*/)?mintstats/\?js +# /mint8/? (easyprivacy.txt: 1399) +/(.*/)?mint8/\? +# /mint/?record (easyprivacy.txt: 1398) +/(.*/)?mint/\?record +# /mint/?js (easyprivacy.txt: 1397) +/(.*/)?mint/\?js +# /mindshare-tracking. (easyprivacy.txt: 1396) +/(.*/)?mindshare-tracking\. +mindshare-tracking.*. +# /middle?call=http (easyprivacy.txt: 1395) +/(.*/)?middle\?call=http +# /microreporting. (easyprivacy.txt: 1394) +/(.*/)?microreporting\. +microreporting.*. +# /micro.php?action=view& (easyprivacy.txt: 1393) +/(.*/)?micro\.php\?action=view& +# /mianalytics. (easyprivacy.txt: 1392) +/(.*/)?mianalytics\. +mianalytics.*. +# /mi/insite/* (easyprivacy.txt: 1391) +/(.*/)?mi/insite/.* +# /metsol- (easyprivacy.txt: 1390) +/(.*/)?metsol- +metsol-*. +# /metriweb/spring.js (easyprivacy.txt: 1389) +/(.*/)?metriweb/spring\.js +# /metriweb.js (easyprivacy.txt: 1388) +/(.*/)?metriweb\.js +metriweb.js*. +# /metrimatics/* (easyprivacy.txt: 1387) +/(.*/)?metrimatics/.* +# /metricsISCS. (easyprivacy.txt: 1386) +/(.*/)?metricsISCS\. +metricsISCS.*. +# /metrics/vanity/? (easyprivacy.txt: 1385) +/(.*/)?metrics/vanity/\? +# /metrics/survey/* (easyprivacy.txt: 1384) +/(.*/)?metrics/survey/.* +# /metrics/onload (easyprivacy.txt: 1383) +/(.*/)?metrics/onload +# /metrics/metrics (easyprivacy.txt: 1382) +/(.*/)?metrics/metrics +# /metrics/image.gif? (easyprivacy.txt: 1381) +/(.*/)?metrics/image\.gif\? +# /metrics/ga.html? (easyprivacy.txt: 1380) +/(.*/)?metrics/ga\.html\? +# /metrics.xml (easyprivacy.txt: 1379) +/(.*/)?metrics\.xml +metrics.xml*. +# /metrics-ga. (easyprivacy.txt: 1378) +/(.*/)?metrics-ga\. +metrics-ga.*. +# /metatraffic/track.asp? (easyprivacy.txt: 1377) +/(.*/)?metatraffic/track\.asp\? +# /megacounter/* (easyprivacy.txt: 1376) +/(.*/)?megacounter/.* +# /mediateGA.js (easyprivacy.txt: 1375) +/(.*/)?mediateGA\.js +mediateGA.js*. +# /media_viewed_tracking. (easyprivacy.txt: 1374) +/(.*/)?media_viewed_tracking\. +# /mdwtc/click_thru/* (easyprivacy.txt: 1373) +/(.*/)?mdwtc/click_thru/.* +# /md.js?country= (easyprivacy.txt: 1372) +/(.*/)?md\.js\?country= +# /mcount.cgi? (easyprivacy.txt: 1371) +/(.*/)?mcount\.cgi\? +# /MCookieReturn.aspx (easyprivacy.txt: 1370) +/(.*/)?MCookieReturn\.aspx +MCookieReturn.aspx*. +# /MCookieCheck.aspx (easyprivacy.txt: 1369) +/(.*/)?MCookieCheck\.aspx +MCookieCheck.aspx*. +# /mcookie.aspx (easyprivacy.txt: 1368) +/(.*/)?mcookie\.aspx +mcookie.aspx*. +# /mbcom.tracking. (easyprivacy.txt: 1367) +/(.*/)?mbcom\.tracking\. +mbcom.tracking.*. +# /Maxymiser/* (easyprivacy.txt: 1366) +/(.*/)?Maxymiser/.* +# /maxymiser. (easyprivacy.txt: 1365) +/(.*/)?maxymiser\. +maxymiser.*. +# /marketing-analytics.js (easyprivacy.txt: 1364) +/(.*/)?marketing-analytics\.js +marketing-analytics.js*. +# /mapstats. (easyprivacy.txt: 1363) +/(.*/)?mapstats\. +mapstats.*. +# /mailstatstrk/* (easyprivacy.txt: 1362) +/(.*/)?mailstatstrk/.* +# /mail_tracking.php (easyprivacy.txt: 1361) +/(.*/)?mail_tracking\.php +# /mail_tracking-cg.php (easyprivacy.txt: 1360) +/(.*/)?mail_tracking-cg\.php +# /magiq- (easyprivacy.txt: 1359) +/(.*/)?magiq- +magiq-*. +# /m360lib.js (easyprivacy.txt: 1358) +/(.*/)?m360lib\.js +m360lib.js*. +# /m1x1.jpg (easyprivacy.txt: 1357) +/(.*/)?m1x1\.jpg +m1x1.jpg*. +# /lzdtracker. (easyprivacy.txt: 1356) +/(.*/)?lzdtracker\. +lzdtracker.*. +# /lycostrack.js (easyprivacy.txt: 1355) +/(.*/)?lycostrack\.js +lycostrack.js*. +# /logwriter.php (easyprivacy.txt: 1354) +/(.*/)?logwriter\.php +logwriter.php*. +# /logwebhit. (easyprivacy.txt: 1353) +/(.*/)?logwebhit\. +logwebhit.*. +# /logViewImpression/* (easyprivacy.txt: 1352) +/(.*/)?logViewImpression/.* +# /logStatistics? (easyprivacy.txt: 1351) +/(.*/)?logStatistics\? +# /logStatistic? (easyprivacy.txt: 1350) +/(.*/)?logStatistic\? +# /logstat? (easyprivacy.txt: 1349) +/(.*/)?logstat\? +# /logstat. (easyprivacy.txt: 1348) +/(.*/)?logstat\. +logstat.*. +# /logserver- (easyprivacy.txt: 1347) +/(.*/)?logserver- +logserver-*. +# /logreferrer.php?*&referrer= (easyprivacy.txt: 1346) +/(.*/)?logreferrer\.php\?.*&referrer= +# /LogRecorder. (easyprivacy.txt: 1345) +/(.*/)?LogRecorder\. +LogRecorder.*. +# /logpv.aspx? (easyprivacy.txt: 1344) +/(.*/)?logpv\.aspx\? +# /logpstatus. (easyprivacy.txt: 1343) +/(.*/)?logpstatus\. +logpstatus.*. +# /LogPage.aspx? (easyprivacy.txt: 1342) +/(.*/)?LogPage\.aspx\? +# /LogMediaClick? (easyprivacy.txt: 1341) +/(.*/)?LogMediaClick\? +# /logLoad/? (easyprivacy.txt: 1340) +/(.*/)?logLoad/\? +# /LogImpression? (easyprivacy.txt: 1339) +/(.*/)?LogImpression\? +# /LogImpression. (easyprivacy.txt: 1338) +/(.*/)?LogImpression\. +LogImpression.*. +# /logHandler. (easyprivacy.txt: 1337) +/(.*/)?logHandler\. +logHandler.*. +# /loggingService.js (easyprivacy.txt: 1336) +/(.*/)?loggingService\.js +loggingService.js*. +# /LoggingAgent? (easyprivacy.txt: 1335) +/(.*/)?LoggingAgent\? +# /logging_save. (easyprivacy.txt: 1334) +/(.*/)?logging_save\. +# /logging_requests. (easyprivacy.txt: 1333) +/(.*/)?logging_requests\. +# /logging/pixel? (easyprivacy.txt: 1332) +/(.*/)?logging/pixel\? +# /logging-code. (easyprivacy.txt: 1331) +/(.*/)?logging-code\. +logging-code.*. +# /logger?d= (easyprivacy.txt: 1330) +/(.*/)?logger\?d= +# /logger/p.gif? (easyprivacy.txt: 1329) +/(.*/)?logger/p\.gif\? +# /logger.pageperf? (easyprivacy.txt: 1328) +/(.*/)?logger\.pageperf\? +# /logger.dll/* (easyprivacy.txt: 1327) +/(.*/)?logger\.dll/.* +logger.dll/.* +# /logger.ashx? (easyprivacy.txt: 1326) +/(.*/)?logger\.ashx\? +# /logextrastats. (easyprivacy.txt: 1325) +/(.*/)?logextrastats\. +logextrastats.*. +# /logEvent? (easyprivacy.txt: 1324) +/(.*/)?logEvent\? +# /logevent.action? (easyprivacy.txt: 1323) +/(.*/)?logevent\.action\? +# /logcounter. (easyprivacy.txt: 1322) +/(.*/)?logcounter\. +logcounter.*. +# /logcollectscript_ (easyprivacy.txt: 1321) +/(.*/)?logcollectscript_ +# /logcollect_ (easyprivacy.txt: 1320) +/(.*/)?logcollect_ +# /logcollect. (easyprivacy.txt: 1319) +/(.*/)?logcollect\. +logcollect.*. +# /logclick. (easyprivacy.txt: 1318) +/(.*/)?logclick\. +logclick.*. +# /LogAnalysisTracker/* (easyprivacy.txt: 1317) +/(.*/)?LogAnalysisTracker/.* +# /logaholictracker. (easyprivacy.txt: 1316) +/(.*/)?logaholictracker\. +logaholictracker.*. +# /logAdv. (easyprivacy.txt: 1315) +/(.*/)?logAdv\. +logAdv.*. +# /logadhit. (easyprivacy.txt: 1314) +/(.*/)?logadhit\. +logadhit.*. +# /logactions.gif? (easyprivacy.txt: 1313) +/(.*/)?logactions\.gif\? +# /LogAction? (easyprivacy.txt: 1312) +/(.*/)?LogAction\? +# /log_zon_img. (easyprivacy.txt: 1311) +/(.*/)?log_zon_img\. +# /log_view. (easyprivacy.txt: 1310) +/(.*/)?log_view\. +# /log_tracker. (easyprivacy.txt: 1309) +/(.*/)?log_tracker\. +# /log_syndication. (easyprivacy.txt: 1308) +/(.*/)?log_syndication\. +# /log_stats.php? (easyprivacy.txt: 1307) +/(.*/)?log_stats\.php\? +# /log_presence/* (easyprivacy.txt: 1306) +/(.*/)?log_presence/.* +# /log_interaction? (easyprivacy.txt: 1305) +/(.*/)?log_interaction\? +# /log_impression/* (easyprivacy.txt: 1304) +/(.*/)?log_impression/.* +# /log_hit. (easyprivacy.txt: 1303) +/(.*/)?log_hit\. +# /log_e.php?id= (easyprivacy.txt: 1302) +/(.*/)?log_e\.php\?id= +# /log_agent. (easyprivacy.txt: 1301) +/(.*/)?log_agent\. +# /log?type= (easyprivacy.txt: 1300) +/(.*/)?log\?type= +# /log?id= (easyprivacy.txt: 1299) +/(.*/)?log\?id= +# /Log?entry= (easyprivacy.txt: 1298) +/(.*/)?Log\?entry= +# /log?documentUrl= (easyprivacy.txt: 1297) +/(.*/)?log\?documentUrl= +# /log?data= (easyprivacy.txt: 1296) +/(.*/)?log\?data= +# /log2.php? (easyprivacy.txt: 1295) +/(.*/)?log2\.php\? +# /log/p.gif? (easyprivacy.txt: 1294) +/(.*/)?log/p\.gif\? +# /log/log.php? (easyprivacy.txt: 1293) +/(.*/)?log/log\.php\? +# /log/jserr.php (easyprivacy.txt: 1292) +/(.*/)?log/jserr\.php +# /log/ad- (easyprivacy.txt: 1291) +/(.*/)?log/ad- +# /log.php?owa_timestamp= (easyprivacy.txt: 1290) +/(.*/)?log\.php\?owa_timestamp= +# /log.php?id (easyprivacy.txt: 1289) +/(.*/)?log\.php\?id +# /log.php?*http (easyprivacy.txt: 1288) +/(.*/)?log\.php\?.*http +# /log.jsp? (easyprivacy.txt: 1287) +/(.*/)?log\.jsp\? +# /log.jphp? (easyprivacy.txt: 1286) +/(.*/)?log\.jphp\? +# /log.htm? (easyprivacy.txt: 1285) +/(.*/)?log\.htm\? +# /log.gif? (easyprivacy.txt: 1284) +/(.*/)?log\.gif\? +# /log.cfm? (easyprivacy.txt: 1283) +/(.*/)?log\.cfm\? +# /log.bi? (easyprivacy.txt: 1282) +/(.*/)?log\.bi\? +# /Log.ashx? (easyprivacy.txt: 1281) +/(.*/)?Log\.ashx\? +# /log-view. (easyprivacy.txt: 1280) +/(.*/)?log-view\. +log-view.*. +# /loadJsFingerprint.js (easyprivacy.txt: 1279) +/(.*/)?loadJsFingerprint\.js +loadJsFingerprint.js*. +# /loader-counter. (easyprivacy.txt: 1278) +/(.*/)?loader-counter\. +loader-counter.*. +# /loadcounter. (easyprivacy.txt: 1277) +/(.*/)?loadcounter\. +loadcounter.*. +# /load.gif? (easyprivacy.txt: 1276) +/(.*/)?load\.gif\? +# /livezilla/server.php?request=track& (easyprivacy.txt: 1275) +/(.*/)?livezilla/server\.php\?request=track& +# /linktracking. (easyprivacy.txt: 1274) +/(.*/)?linktracking\. +linktracking.*. +# /linktracker/* (easyprivacy.txt: 1273) +/(.*/)?linktracker/.* +# /linkinformer.js (easyprivacy.txt: 1272) +/(.*/)?linkinformer\.js +linkinformer.js*. +# /linkcountdata/* (easyprivacy.txt: 1271) +/(.*/)?linkcountdata/.* +# /link_tracking/* (easyprivacy.txt: 1270) +/(.*/)?link_tracking/.* +# /link_track. (easyprivacy.txt: 1269) +/(.*/)?link_track\. +# /lingabot. (easyprivacy.txt: 1268) +/(.*/)?lingabot\. +lingabot.*. +# /library/svy/broker.js (easyprivacy.txt: 1267) +/(.*/)?library/svy/broker\.js +# /library/svy/*/broker.js (easyprivacy.txt: 1266) +/(.*/)?library/svy/.*/broker\.js +# /leadgen_track (easyprivacy.txt: 1265) +/(.*/)?leadgen_track +# /leadgen/ga.js (easyprivacy.txt: 1264) +/(.*/)?leadgen/ga\.js +# /lbi_ga. (easyprivacy.txt: 1263) +/(.*/)?lbi_ga\. +# /layer_log.php?p= (easyprivacy.txt: 1262) +/(.*/)?layer_log\.php\?p= +# /landings-pixel? (easyprivacy.txt: 1261) +/(.*/)?landings-pixel\? +# /l1v.ly/*$third-party (easyprivacy.txt: 1260) +/(.*/)?l1v\.ly/.* +l1v.ly/.* +# /ktrace/ktrace$script (easyprivacy.txt: 1259) +/(.*/)?ktrace/ktrace +# /krux.js (easyprivacy.txt: 1258) +/(.*/)?krux\.js +krux.js*. +# /konterayahoooo. (easyprivacy.txt: 1257) +/(.*/)?konterayahoooo\. +konterayahoooo.*. +# /kontera.js (easyprivacy.txt: 1256) +/(.*/)?kontera\.js +kontera.js*. +# /KISSmetricsTrackCode. (easyprivacy.txt: 1255) +/(.*/)?KISSmetricsTrackCode\. +KISSmetricsTrackCode.*. +# /kissmetrics/* (easyprivacy.txt: 1254) +/(.*/)?kissmetrics/.* +# /kissmetrics. (easyprivacy.txt: 1253) +/(.*/)?kissmetrics\. +kissmetrics.*. +# /kGoogleAnalytics.js (easyprivacy.txt: 1252) +/(.*/)?kGoogleAnalytics\.js +kGoogleAnalytics.js*. +# /keywordlogger. (easyprivacy.txt: 1251) +/(.*/)?keywordlogger\. +keywordlogger.*. +# /kelkooSponsoredLinks. (easyprivacy.txt: 1250) +/(.*/)?kelkooSponsoredLinks\. +kelkooSponsoredLinks.*. +# /Kelkooid? (easyprivacy.txt: 1249) +/(.*/)?Kelkooid\? +# /kejobscounter. (easyprivacy.txt: 1248) +/(.*/)?kejobscounter\. +kejobscounter.*. +# /keen.min.js (easyprivacy.txt: 1247) +/(.*/)?keen\.min\.js +keen.min.js*. +# /keen-tracker. (easyprivacy.txt: 1246) +/(.*/)?keen-tracker\. +keen-tracker.*. +# /kaizentrack/* (easyprivacy.txt: 1245) +/(.*/)?kaizentrack/.* +# /kaiseki/track.php? (easyprivacy.txt: 1244) +/(.*/)?kaiseki/track\.php\? +# /kaiseki/script.php (easyprivacy.txt: 1243) +/(.*/)?kaiseki/script\.php +# /jtracking/* (easyprivacy.txt: 1242) +/(.*/)?jtracking/.* +# /jstats/js/* (easyprivacy.txt: 1241) +/(.*/)?jstats/js/.* +# /jstats.php (easyprivacy.txt: 1240) +/(.*/)?jstats\.php +jstats.php*. +# /jslogger.php?ref= (easyprivacy.txt: 1239) +/(.*/)?jslogger\.php\?ref= +# /jscounter. (easyprivacy.txt: 1238) +/(.*/)?jscounter\. +jscounter.*. +# /js_tracker. (easyprivacy.txt: 1237) +/(.*/)?js_tracker\. +# /js_logger. (easyprivacy.txt: 1236) +/(.*/)?js_logger\. +# /js_hotlink.php? (easyprivacy.txt: 1235) +/(.*/)?js_hotlink\.php\? +# /js/trk_ (easyprivacy.txt: 1234) +/(.*/)?js/trk_ +# /js/tracking.min.js? (easyprivacy.txt: 1233) +/(.*/)?js/tracking\.min\.js\? +# /js/tracking.js (easyprivacy.txt: 1232) +/(.*/)?js/tracking\.js +# /js/tophits_ (easyprivacy.txt: 1231) +/(.*/)?js/tophits_ +# /js/tagging/tagtrack.js (easyprivacy.txt: 1230) +/(.*/)?js/tagging/tagtrack\.js +# /js/sophus/* (easyprivacy.txt: 1229) +/(.*/)?js/sophus/.* +# /js/quantcast- (easyprivacy.txt: 1228) +/(.*/)?js/quantcast- +# /js/livestats_ (easyprivacy.txt: 1227) +/(.*/)?js/livestats_ +# /js/indextools/* (easyprivacy.txt: 1226) +/(.*/)?js/indextools/.* +# /js/hbx.js (easyprivacy.txt: 1225) +/(.*/)?js/hbx\.js +# /js/google_stats. (easyprivacy.txt: 1224) +/(.*/)?js/google_stats\. +# /js/ddx/* (easyprivacy.txt: 1223) +/(.*/)?js/ddx/.* +# /js/dcstorm/* (easyprivacy.txt: 1222) +/(.*/)?js/dcstorm/.* +# /js/dart.js (easyprivacy.txt: 1221) +/(.*/)?js/dart\.js +# /js/counter.js? (easyprivacy.txt: 1220) +/(.*/)?js/counter\.js\? +# /js/count.js. (easyprivacy.txt: 1219) +/(.*/)?js/count\.js\. +# /js/analitycs_ (easyprivacy.txt: 1218) +/(.*/)?js/analitycs_ +# /jquery.unica. (easyprivacy.txt: 1217) +/(.*/)?jquery\.unica\. +jquery.unica.*. +# /jquery.trackstar. (easyprivacy.txt: 1216) +/(.*/)?jquery\.trackstar\. +jquery.trackstar.*. +# /jquery.google-analytics. (easyprivacy.txt: 1215) +/(.*/)?jquery\.google-analytics\. +jquery.google-analytics.*. +# /jquery.analytics.js| (easyprivacy.txt: 1214) +/(.*/)?jquery\.analytics\.js$ +jquery.analytics.js +# /jgs_portal_log_bildschirm.php? (easyprivacy.txt: 1213) +/(.*/)?jgs_portal_log_bildschirm\.php\? +# /jcaffiliatesystem/* (easyprivacy.txt: 1212) +/(.*/)?jcaffiliatesystem/.* +# /javascripts/tracking_ (easyprivacy.txt: 1211) +/(.*/)?javascripts/tracking_ +# /javascripts/ga.js (easyprivacy.txt: 1210) +/(.*/)?javascripts/ga\.js +# /Javascript/ga.js (easyprivacy.txt: 1209) +/(.*/)?Javascript/ga\.js +# /javascript/ci/*landing.js$script (easyprivacy.txt: 1208) +/(.*/)?javascript/ci/.*landing\.js +# /javascript/analytics/* (easyprivacy.txt: 1207) +/(.*/)?javascript/analytics/.* +# /iwa.js (easyprivacy.txt: 1206) +/(.*/)?iwa\.js +iwa.js*. +# /IVWTracker.swf (easyprivacy.txt: 1205) +/(.*/)?IVWTracker\.swf +IVWTracker.swf*. +# /ivwbox/* (easyprivacy.txt: 1204) +/(.*/)?ivwbox/.* +# /IVWAnalytics. (easyprivacy.txt: 1203) +/(.*/)?IVWAnalytics\. +IVWAnalytics.*. +# /ivw_analytics_ (easyprivacy.txt: 1202) +/(.*/)?ivw_analytics_ +# /ivw2.js (easyprivacy.txt: 1201) +/(.*/)?ivw2\.js +ivw2.js*. +# /ivw2.cgi? (easyprivacy.txt: 1200) +/(.*/)?ivw2\.cgi\? +# /ivw/SP/*$image,script (easyprivacy.txt: 1199) +/(.*/)?ivw/SP/.* +# /ivw.php (easyprivacy.txt: 1198) +/(.*/)?ivw\.php +ivw.php*. +# /ivw.js (easyprivacy.txt: 1197) +/(.*/)?ivw\.js +ivw.js*. +# /iva_thefilterjwanalytics. (easyprivacy.txt: 1196) +/(.*/)?iva_thefilterjwanalytics\. +# /iva_analytics. (easyprivacy.txt: 1195) +/(.*/)?iva_analytics\. +# /itrack.php? (easyprivacy.txt: 1194) +/(.*/)?itrack\.php\? +# /ItemStats.ajax? (easyprivacy.txt: 1193) +/(.*/)?ItemStats\.ajax\? +# /ists.tag? (easyprivacy.txt: 1192) +/(.*/)?ists\.tag\? +# /istat.aspx? (easyprivacy.txt: 1191) +/(.*/)?istat\.aspx\? +# /iqtm.js (easyprivacy.txt: 1190) +/(.*/)?iqtm\.js +iqtm.js*. +# /ips-invite.iperceptions.com/* (easyprivacy.txt: 1189) +/(.*/)?ips-invite\.iperceptions\.com/.* +ips-invite.iperceptions.com/.* +# /iporganictrack. (easyprivacy.txt: 1188) +/(.*/)?iporganictrack\. +iporganictrack.*. +# /iplookup.php (easyprivacy.txt: 1187) +/(.*/)?iplookup\.php +iplookup.php*. +# /ipixel?spacedesc (easyprivacy.txt: 1186) +/(.*/)?ipixel\?spacedesc +# /ipfx?eid= (easyprivacy.txt: 1185) +/(.*/)?ipfx\?eid= +# /IperceptionsSurvey. (easyprivacy.txt: 1184) +/(.*/)?IperceptionsSurvey\. +IperceptionsSurvey.*. +# /iperceptions_ (easyprivacy.txt: 1183) +/(.*/)?iperceptions_ +# /iperceptions/* (easyprivacy.txt: 1182) +/(.*/)?iperceptions/.* +# /iperceptions. (easyprivacy.txt: 1181) +/(.*/)?iperceptions\. +iperceptions.*. +# /intervigil. (easyprivacy.txt: 1180) +/(.*/)?intervigil\. +intervigil.*. +# /intellitracker.js (easyprivacy.txt: 1179) +/(.*/)?intellitracker\.js +intellitracker.js*. +# /InstantTracking. (easyprivacy.txt: 1178) +/(.*/)?InstantTracking\. +InstantTracking.*. +# /insitemetrics/* (easyprivacy.txt: 1177) +/(.*/)?insitemetrics/.* +# /insightXe.js (easyprivacy.txt: 1176) +/(.*/)?insightXe\.js +insightXe.js*. +# /insert_impressions. (easyprivacy.txt: 1175) +/(.*/)?insert_impressions\. +# /inpl.measure. (easyprivacy.txt: 1174) +/(.*/)?inpl\.measure\. +inpl.measure.*. +# /informerStat? (easyprivacy.txt: 1173) +/(.*/)?informerStat\? +# /info/picksel/* (easyprivacy.txt: 1172) +/(.*/)?info/picksel/.* +# /inetlog.ru/* (easyprivacy.txt: 1171) +/(.*/)?inetlog\.ru/.* +inetlog.ru/.* +# /indextools.js (easyprivacy.txt: 1170) +/(.*/)?indextools\.js +indextools.js*. +# /index.track? (easyprivacy.txt: 1169) +/(.*/)?index\.track\? +# /index.php?_m=livesupport*&referrer= (easyprivacy.txt: 1168) +/(.*/)?index\.php\?_m=livesupport.*&referrer= +# /increment_page_counter. (easyprivacy.txt: 1167) +/(.*/)?increment_page_counter\. +# /includes/tracker/* (easyprivacy.txt: 1166) +/(.*/)?includes/tracker/.* +# /include/js/ga- (easyprivacy.txt: 1165) +/(.*/)?include/js/ga- +# /in.php?p= (easyprivacy.txt: 1164) +/(.*/)?in\.php\?p= +# /in.getclicky.com/* (easyprivacy.txt: 1163) +/(.*/)?in\.getclicky\.com/.* +in.getclicky.com/.* +# /in.cgi?*http (easyprivacy.txt: 1162) +/(.*/)?in\.cgi\?.*http +# /impressionTrackerV2. (easyprivacy.txt: 1161) +/(.*/)?impressionTrackerV2\. +impressionTrackerV2.*. +# /ImpressionsEvent.js (easyprivacy.txt: 1160) +/(.*/)?ImpressionsEvent\.js +ImpressionsEvent.js*. +# /impressions? (easyprivacy.txt: 1159) +/(.*/)?impressions\? +# /impressions3.asp? (easyprivacy.txt: 1158) +/(.*/)?impressions3\.asp\? +# /Impressions/aolukdp.imp? (easyprivacy.txt: 1157) +/(.*/)?Impressions/aolukdp\.imp\? +# /impressioncount. (easyprivacy.txt: 1156) +/(.*/)?impressioncount\. +impressioncount.*. +# /impression_tracking. (easyprivacy.txt: 1155) +/(.*/)?impression_tracking\. +# /impression_tracker. (easyprivacy.txt: 1154) +/(.*/)?impression_tracker\. +# /impression? (easyprivacy.txt: 1153) +/(.*/)?impression\? +# /impression/widget? (easyprivacy.txt: 1152) +/(.*/)?impression/widget\? +# /impression.track? (easyprivacy.txt: 1151) +/(.*/)?impression\.track\? +# /impression.pl? (easyprivacy.txt: 1150) +/(.*/)?impression\.pl\? +# /impression.js? (easyprivacy.txt: 1149) +/(.*/)?impression\.js\? +# /impression.gif? (easyprivacy.txt: 1148) +/(.*/)?impression\.gif\? +# /impression.ashx (easyprivacy.txt: 1147) +/(.*/)?impression\.ashx +impression.ashx*. +# /impress.php? (easyprivacy.txt: 1146) +/(.*/)?impress\.php\? +# /imp_img.php? (easyprivacy.txt: 1145) +/(.*/)?imp_img\.php\? +# /imp_cnt.gif? (easyprivacy.txt: 1144) +/(.*/)?imp_cnt\.gif\? +# /imp?imgid= (easyprivacy.txt: 1143) +/(.*/)?imp\?imgid= +# /imp/a.gif? (easyprivacy.txt: 1142) +/(.*/)?imp/a\.gif\? +# /imp.php?a (easyprivacy.txt: 1141) +/(.*/)?imp\.php\?a +# /imp.gif? (easyprivacy.txt: 1140) +/(.*/)?imp\.gif\? +# /imp.aspx? (easyprivacy.txt: 1139) +/(.*/)?imp\.aspx\? +# /imgtracker. (easyprivacy.txt: 1138) +/(.*/)?imgtracker\. +imgtracker.*. +# /imgcount.php? (easyprivacy.txt: 1137) +/(.*/)?imgcount\.php\? +# /imgcount.cgi? (easyprivacy.txt: 1136) +/(.*/)?imgcount\.cgi\? +# /img?eid= (easyprivacy.txt: 1135) +/(.*/)?img\?eid= +# /img/gut.gif? (easyprivacy.txt: 1134) +/(.*/)?img/gut\.gif\? +# /img/gnt.gif? (easyprivacy.txt: 1133) +/(.*/)?img/gnt\.gif\? +# /img.mqcdn.com/a/a (easyprivacy.txt: 1132) +/(.*/)?img\.mqcdn\.com/a/a +img.mqcdn.com/a/a +# /img.aspx?q=l3mkwgak (easyprivacy.txt: 1131) +/(.*/)?img\.aspx\?q=l3mkwgak +# /iMAWebCookie. (easyprivacy.txt: 1130) +/(.*/)?iMAWebCookie\. +iMAWebCookie.*. +# /imageTracking. (easyprivacy.txt: 1129) +/(.*/)?imageTracking\. +imageTracking.*. +# /images/uc.GIF? (easyprivacy.txt: 1128) +/(.*/)?images/uc\.GIF\? +# /images/mxl.gif? (easyprivacy.txt: 1127) +/(.*/)?images/mxl\.gif\? +# /images/1px.gif? (easyprivacy.txt: 1126) +/(.*/)?images/1px\.gif\? +# /image/count.gif? (easyprivacy.txt: 1125) +/(.*/)?image/count\.gif\? +# /image.ng/* (easyprivacy.txt: 1124) +/(.*/)?image\.ng/.* +image.ng/.* +# /ignition-one.js (easyprivacy.txt: 1123) +/(.*/)?ignition-one\.js +ignition-one.js*. +# /IGA.linktagger. (easyprivacy.txt: 1122) +/(.*/)?IGA\.linktagger\. +IGA.linktagger.*. +# /iframetracker. (easyprivacy.txt: 1121) +/(.*/)?iframetracker\. +iframetracker.*. +# /iframe_googleAnalytics (easyprivacy.txt: 1120) +/(.*/)?iframe_googleAnalytics +# /iframe.tracker.js (easyprivacy.txt: 1119) +/(.*/)?iframe\.tracker\.js +iframe.tracker.js*. +# /idcookie/pixel.png? (easyprivacy.txt: 1118) +/(.*/)?idcookie/pixel\.png\? +# /ics/2/pview.gif? (easyprivacy.txt: 1117) +/(.*/)?ics/2/pview\.gif\? +# /i?siteid= (easyprivacy.txt: 1116) +/(.*/)?i\?siteid= +# /i2yesCounter.js (easyprivacy.txt: 1115) +/(.*/)?i2yesCounter\.js +i2yesCounter.js*. +# /i2a.js (easyprivacy.txt: 1114) +/(.*/)?i2a\.js +i2a.js*. +# /i/i.gif? (easyprivacy.txt: 1113) +/(.*/)?i/i\.gif\? +# /i/b.gif? (easyprivacy.txt: 1112) +/(.*/)?i/b\.gif\? +# /hs_track. (easyprivacy.txt: 1111) +/(.*/)?hs_track\. +# /hrtrackjs.gif? (easyprivacy.txt: 1110) +/(.*/)?hrtrackjs\.gif\? +# /hpmetrics. (easyprivacy.txt: 1109) +/(.*/)?hpmetrics\. +hpmetrics.*. +# /hpanalytics_ (easyprivacy.txt: 1108) +/(.*/)?hpanalytics_ +# /horizon/track? (easyprivacy.txt: 1107) +/(.*/)?horizon/track\? +# /horizon.*/track? (easyprivacy.txt: 1106) +/(.*/)?horizon\..*/track\? +horizon.*./(.*/)?track\? +# /homePixelTracking. (easyprivacy.txt: 1105) +/(.*/)?homePixelTracking\. +homePixelTracking.*. +# /homepage_pixels. (easyprivacy.txt: 1104) +/(.*/)?homepage_pixels\. +# /homeCounter. (easyprivacy.txt: 1103) +/(.*/)?homeCounter\. +homeCounter.*. +# /hmapxy.js (easyprivacy.txt: 1102) +/(.*/)?hmapxy\.js +hmapxy.js*. +# /hlog.asp (easyprivacy.txt: 1101) +/(.*/)?hlog\.asp +hlog.asp*. +# /HitTracking. (easyprivacy.txt: 1100) +/(.*/)?HitTracking\. +HitTracking.*. +# /HitTracker/* (easyprivacy.txt: 1099) +/(.*/)?HitTracker/.* +# /hittrack.cgi? (easyprivacy.txt: 1098) +/(.*/)?hittrack\.cgi\? +# /hitslink. (easyprivacy.txt: 1097) +/(.*/)?hitslink\. +hitslink.*. +# /hits/logger? (easyprivacy.txt: 1096) +/(.*/)?hits/logger\? +# /hits.count? (easyprivacy.txt: 1095) +/(.*/)?hits\.count\? +# /hitlog.php? (easyprivacy.txt: 1094) +/(.*/)?hitlog\.php\? +# /hitlog.mpl? (easyprivacy.txt: 1093) +/(.*/)?hitlog\.mpl\? +# /HitCounter/* (easyprivacy.txt: 1092) +/(.*/)?HitCounter/.* +# /HitCounter. (easyprivacy.txt: 1091) +/(.*/)?HitCounter\. +HitCounter.*. +# /hitcount_ (easyprivacy.txt: 1090) +/(.*/)?hitcount_ +# /hitcount? (easyprivacy.txt: 1089) +/(.*/)?hitcount\? +# /hitCount. (easyprivacy.txt: 1088) +/(.*/)?hitCount\. +hitCount.*. +# /hitbox.js (easyprivacy.txt: 1087) +/(.*/)?hitbox\.js +hitbox.js*. +# /hit_img.cfm? (easyprivacy.txt: 1086) +/(.*/)?hit_img\.cfm\? +# /hit_counter (easyprivacy.txt: 1085) +/(.*/)?hit_counter +# /hit_count? (easyprivacy.txt: 1084) +/(.*/)?hit_count\? +# /hit2.php (easyprivacy.txt: 1083) +/(.*/)?hit2\.php +hit2.php*. +# /hit/tracker (easyprivacy.txt: 1082) +/(.*/)?hit/tracker +# /hit.xiti? (easyprivacy.txt: 1081) +/(.*/)?hit\.xiti\? +# /hit.php? (easyprivacy.txt: 1080) +/(.*/)?hit\.php\? +# /Hit.aspx? (easyprivacy.txt: 1079) +/(.*/)?Hit\.aspx\? +# /hit.asp? (easyprivacy.txt: 1078) +/(.*/)?hit\.asp\? +# /Hit.ashx? (easyprivacy.txt: 1077) +/(.*/)?Hit\.ashx\? +# /hit-counter. (easyprivacy.txt: 1076) +/(.*/)?hit-counter\. +hit-counter.*. +# /histats/* (easyprivacy.txt: 1075) +/(.*/)?histats/.* +# /HiroBeacon? (easyprivacy.txt: 1074) +/(.*/)?HiroBeacon\? +# /hints.netflame.cc/* (easyprivacy.txt: 1073) +/(.*/)?hints\.netflame\.cc/.* +hints.netflame.cc/.* +# /hgct?hc=&hb=*&vjs= (easyprivacy.txt: 1072) +/(.*/)?hgct\?hc=&hb=.*&vjs= +# /hg?hc=&hb=*&vjs= (easyprivacy.txt: 1071) +/(.*/)?hg\?hc=&hb=.*&vjs= +# /heatmap_log.js (easyprivacy.txt: 1070) +/(.*/)?heatmap_log\.js +# /heatmap.js (easyprivacy.txt: 1069) +/(.*/)?heatmap\.js +heatmap.js*. +# /heatmap.*? (easyprivacy.txt: 1068) +/(.*/)?heatmap\..*\? +heatmap.*./.*\? +# /headupstats.gif? (easyprivacy.txt: 1067) +/(.*/)?headupstats\.gif\? +# /headerpixel.gif? (easyprivacy.txt: 1066) +/(.*/)?headerpixel\.gif\? +# /gweb/analytics/* (easyprivacy.txt: 1065) +/(.*/)?gweb/analytics/.* +# /gtrack. (easyprivacy.txt: 1064) +/(.*/)?gtrack\. +gtrack.*. +# /gs-analytics- (easyprivacy.txt: 1063) +/(.*/)?gs-analytics- +gs-analytics-*. +# /gravity-beacon.js (easyprivacy.txt: 1062) +/(.*/)?gravity-beacon\.js +gravity-beacon.js*. +# /gPageTracking. (easyprivacy.txt: 1061) +/(.*/)?gPageTracking\. +gPageTracking.*. +# /gosquared-livestats/* (easyprivacy.txt: 1060) +/(.*/)?gosquared-livestats/.* +# /googlytics- (easyprivacy.txt: 1059) +/(.*/)?googlytics- +googlytics-*. +# /googleTracking.js (easyprivacy.txt: 1058) +/(.*/)?googleTracking\.js +googleTracking.js*. +# /googletracker/* (easyprivacy.txt: 1057) +/(.*/)?googletracker/.* +# /googleTracker. (easyprivacy.txt: 1056) +/(.*/)?googleTracker\. +googleTracker.*. +# /googletrack.js (easyprivacy.txt: 1055) +/(.*/)?googletrack\.js +googletrack.js*. +# /googleanalyze2. (easyprivacy.txt: 1054) +/(.*/)?googleanalyze2\. +googleanalyze2.*. +# /googleanalyze1. (easyprivacy.txt: 1053) +/(.*/)?googleanalyze1\. +googleanalyze1.*. +# /GoogleAnalyticsTrackingProvider.js (easyprivacy.txt: 1052) +/(.*/)?GoogleAnalyticsTrackingProvider\.js +GoogleAnalyticsTrackingProvider.js*. +# /googleAnalyticsTracking. (easyprivacy.txt: 1051) +/(.*/)?googleAnalyticsTracking\. +googleAnalyticsTracking.*. +# /GoogleAnalyticsPlus/* (easyprivacy.txt: 1050) +/(.*/)?GoogleAnalyticsPlus/.* +# /GoogleAnalyticsPlugIn. (easyprivacy.txt: 1049) +/(.*/)?GoogleAnalyticsPlugIn\. +GoogleAnalyticsPlugIn.*. +# /googleAnalyticsOutgoingLinks. (easyprivacy.txt: 1048) +/(.*/)?googleAnalyticsOutgoingLinks\. +googleAnalyticsOutgoingLinks.*. +# /GoogleAnalyticsModule. (easyprivacy.txt: 1047) +/(.*/)?GoogleAnalyticsModule\. +GoogleAnalyticsModule.*. +# /googleanalyticsmanagement.swf (easyprivacy.txt: 1046) +/(.*/)?googleanalyticsmanagement\.swf +googleanalyticsmanagement.swf*. +# /googleAnalyticsBottom. (easyprivacy.txt: 1045) +/(.*/)?googleAnalyticsBottom\. +googleAnalyticsBottom.*. +# /GoogleAnalyticsBC3. (easyprivacy.txt: 1044) +/(.*/)?GoogleAnalyticsBC3\. +GoogleAnalyticsBC3.*. +# /googleAnalyticsBase_ (easyprivacy.txt: 1043) +/(.*/)?googleAnalyticsBase_ +# /googleAnalytics_ (easyprivacy.txt: 1042) +/(.*/)?googleAnalytics_ +# /GoogleAnalytics?utmac= (easyprivacy.txt: 1041) +/(.*/)?GoogleAnalytics\?utmac= +# /googleAnalytics2. (easyprivacy.txt: 1040) +/(.*/)?googleAnalytics2\. +googleAnalytics2.*. +# /googleAnalytics1. (easyprivacy.txt: 1039) +/(.*/)?googleAnalytics1\. +googleAnalytics1.*. +# /googleanalytics/* (easyprivacy.txt: 1038) +/(.*/)?googleanalytics/.* +# /GoogleAnalytics.swf (easyprivacy.txt: 1037) +/(.*/)?GoogleAnalytics\.swf +GoogleAnalytics.swf*. +# /googleanalytics.js (easyprivacy.txt: 1036) +/(.*/)?googleanalytics\.js +googleanalytics.js*. +# /googleanalytics- (easyprivacy.txt: 1035) +/(.*/)?googleanalytics- +googleanalytics-*. +# /GoogleAnalystics. (easyprivacy.txt: 1034) +/(.*/)?GoogleAnalystics\. +GoogleAnalystics.*. +# /googleana. (easyprivacy.txt: 1033) +/(.*/)?googleana\. +googleana.*. +# /google_tracker. (easyprivacy.txt: 1032) +/(.*/)?google_tracker\. +# /google_page_track (easyprivacy.txt: 1031) +/(.*/)?google_page_track +# /google_analytics_ (easyprivacy.txt: 1030) +/(.*/)?google_analytics_ +# /google_analytics/* (easyprivacy.txt: 1029) +/(.*/)?google_analytics/.* +# /google_analytics. (easyprivacy.txt: 1028) +/(.*/)?google_analytics\. +# /google_analytics-bc.swf (easyprivacy.txt: 1027) +/(.*/)?google_analytics-bc\.swf +# /google_analitycs. (easyprivacy.txt: 1026) +/(.*/)?google_analitycs\. +# /Google/ga.js (easyprivacy.txt: 1025) +/(.*/)?Google/ga\.js +# /google/analytics_ (easyprivacy.txt: 1024) +/(.*/)?google/analytics_ +# /google.eventTracking.js (easyprivacy.txt: 1023) +/(.*/)?google\.eventTracking\.js +google.eventTracking.js*. +# /google.analytics. (easyprivacy.txt: 1022) +/(.*/)?google\.analytics\. +google.analytics.*. +# /google-analytics/* (easyprivacy.txt: 1021) +/(.*/)?google-analytics/.* +# /google-analytics. (easyprivacy.txt: 1020) +/(.*/)?google-analytics\. +google-analytics.*. +# /google-analytics- (easyprivacy.txt: 1019) +/(.*/)?google-analytics- +google-analytics-*. +# /google-analyticator/* (easyprivacy.txt: 1018) +/(.*/)?google-analyticator/.* +# /GomezTracking. (easyprivacy.txt: 1017) +/(.*/)?GomezTracking\. +GomezTracking.*. +# /gomez/*$script (easyprivacy.txt: 1016) +/(.*/)?gomez/.* +# /gomez.js (easyprivacy.txt: 1015) +/(.*/)?gomez\.js +gomez.js*. +# /goAnalytics. (easyprivacy.txt: 1014) +/(.*/)?goAnalytics\. +goAnalytics.*. +# /gn_tracking. (easyprivacy.txt: 1013) +/(.*/)?gn_tracking\. +# /gn_analytics. (easyprivacy.txt: 1012) +/(.*/)?gn_analytics\. +# /gmasst.gif?guid= (easyprivacy.txt: 1011) +/(.*/)?gmasst\.gif\?guid= +# /globalpagetracking.js (easyprivacy.txt: 1010) +/(.*/)?globalpagetracking\.js +globalpagetracking.js*. +# /global/ga.js? (easyprivacy.txt: 1009) +/(.*/)?global/ga\.js\? +# /glbltrackjs. (easyprivacy.txt: 1008) +/(.*/)?glbltrackjs\. +glbltrackjs.*. +# /gifstats. (easyprivacy.txt: 1007) +/(.*/)?gifstats\. +gifstats.*. +# /gifbanner? (easyprivacy.txt: 1006) +/(.*/)?gifbanner\? +# /getTotalHits. (easyprivacy.txt: 1005) +/(.*/)?getTotalHits\. +getTotalHits.*. +# /getsidpixeltag?sid= (easyprivacy.txt: 1004) +/(.*/)?getsidpixeltag\?sid= +# /getRemoteDomainCookies? (easyprivacy.txt: 1003) +/(.*/)?getRemoteDomainCookies\? +# /getPixels?*&referer= (easyprivacy.txt: 1002) +/(.*/)?getPixels\?.*&referer= +# /getclicky_ (easyprivacy.txt: 1001) +/(.*/)?getclicky_ +# /getclicky. (easyprivacy.txt: 1000) +/(.*/)?getclicky\. +getclicky.*. +# /get_tracking_id? (easyprivacy.txt: 999) +/(.*/)?get_tracking_id\? +# /get_statistics.php?screen_width= (easyprivacy.txt: 998) +/(.*/)?get_statistics\.php\?screen_width= +# /get_browser_info. (easyprivacy.txt: 997) +/(.*/)?get_browser_info\. +# /geov2.js (easyprivacy.txt: 996) +/(.*/)?geov2\.js +geov2.js*. +# /geomap.js? (easyprivacy.txt: 995) +/(.*/)?geomap\.js\? +# /geoipAPI.js? (easyprivacy.txt: 994) +/(.*/)?geoipAPI\.js\? +# /geoip_script? (easyprivacy.txt: 993) +/(.*/)?geoip_script\? +# /geoip_cc (easyprivacy.txt: 992) +/(.*/)?geoip_cc +# /geoip.html (easyprivacy.txt: 991) +/(.*/)?geoip\.html +geoip.html*. +# /geocounter. (easyprivacy.txt: 990) +/(.*/)?geocounter\. +geocounter.*. +# /geocompteur. (easyprivacy.txt: 989) +/(.*/)?geocompteur\. +geocompteur.*. +# /geoAnalysis.js (easyprivacy.txt: 988) +/(.*/)?geoAnalysis\.js +geoAnalysis.js*. +# /geo.php? (easyprivacy.txt: 987) +/(.*/)?geo\.php\? +# /generictracking. (easyprivacy.txt: 986) +/(.*/)?generictracking\. +generictracking.*. +# /generate_204$image (easyprivacy.txt: 985) +/(.*/)?generate_204 +# /gen_204?$image,script (easyprivacy.txt: 984) +/(.*/)?gen_204\? +# /gemiusAudience. (easyprivacy.txt: 983) +/(.*/)?gemiusAudience\. +gemiusAudience.*. +# /gemius_ (easyprivacy.txt: 982) +/(.*/)?gemius_ +# /gemius1.js (easyprivacy.txt: 981) +/(.*/)?gemius1\.js +gemius1.js*. +# /gemius/* (easyprivacy.txt: 980) +/(.*/)?gemius/.* +# /gemius.js (easyprivacy.txt: 979) +/(.*/)?gemius\.js +gemius.js*. +# /gcui_vidtracker/* (easyprivacy.txt: 978) +/(.*/)?gcui_vidtracker/.* +# /gcount.pl? (easyprivacy.txt: 977) +/(.*/)?gcount\.pl\? +# /gClickTracking. (easyprivacy.txt: 976) +/(.*/)?gClickTracking\. +gClickTracking.*. +# /gatrackwww. (easyprivacy.txt: 975) +/(.*/)?gatrackwww\. +gatrackwww.*. +# /gatrackthis. (easyprivacy.txt: 974) +/(.*/)?gatrackthis\. +gatrackthis.*. +# /gatrackingcampaigns/* (easyprivacy.txt: 973) +/(.*/)?gatrackingcampaigns/.* +# /gatracking. (easyprivacy.txt: 972) +/(.*/)?gatracking\. +gatracking.*. +# /gatrack. (easyprivacy.txt: 971) +/(.*/)?gatrack\. +gatrack.*. +# /gatc.js (easyprivacy.txt: 970) +/(.*/)?gatc\.js +gatc.js*. +# /gatag.js (easyprivacy.txt: 969) +/(.*/)?gatag\.js +gatag.js*. +# /gasocialtracking. (easyprivacy.txt: 968) +/(.*/)?gasocialtracking\. +gasocialtracking.*. +# /gascript. (easyprivacy.txt: 967) +/(.*/)?gascript\. +gascript.*. +# /GARecord? (easyprivacy.txt: 966) +/(.*/)?GARecord\? +# /gapro.swf (easyprivacy.txt: 965) +/(.*/)?gapro\.swf +gapro.swf*. +# /gapro-1h.swf (easyprivacy.txt: 964) +/(.*/)?gapro-1h\.swf +gapro-1h.swf*. +# /gapro-1.swf (easyprivacy.txt: 963) +/(.*/)?gapro-1\.swf +gapro-1.swf*. +# /gapagetracker. (easyprivacy.txt: 962) +/(.*/)?gapagetracker\. +gapagetracker.*. +# /ganalytics. (easyprivacy.txt: 961) +/(.*/)?ganalytics\. +ganalytics.*. +# /gallerystats. (easyprivacy.txt: 960) +/(.*/)?gallerystats\. +gallerystats.*. +# /galinks- (easyprivacy.txt: 959) +/(.*/)?galinks- +galinks-*. +# /GAInit.js| (easyprivacy.txt: 958) +/(.*/)?GAInit\.js$ +GAInit.js +# /GAFOAWrapper.swf? (easyprivacy.txt: 957) +/(.*/)?GAFOAWrapper\.swf\? +# /gadsfuncs. (easyprivacy.txt: 956) +/(.*/)?gadsfuncs\. +gadsfuncs.*. +# /gaCustom. (easyprivacy.txt: 955) +/(.*/)?gaCustom\. +gaCustom.*. +# /gaclicktracking. (easyprivacy.txt: 954) +/(.*/)?gaclicktracking\. +gaclicktracking.*. +# /gaaddons.js (easyprivacy.txt: 953) +/(.*/)?gaaddons\.js +gaaddons.js*. +# /gaaddons- (easyprivacy.txt: 952) +/(.*/)?gaaddons- +gaaddons-*. +# /ga_wrapper. (easyprivacy.txt: 951) +/(.*/)?ga_wrapper\. +# /ga_tracklinks. (easyprivacy.txt: 950) +/(.*/)?ga_tracklinks\. +# /ga_tracker. (easyprivacy.txt: 949) +/(.*/)?ga_tracker\. +# /ga_track.php?adurl= (easyprivacy.txt: 948) +/(.*/)?ga_track\.php\?adurl= +# /ga_social_tracking_ (easyprivacy.txt: 947) +/(.*/)?ga_social_tracking_ +# /ga_social. (easyprivacy.txt: 946) +/(.*/)?ga_social\. +# /ga_outgoinglinks. (easyprivacy.txt: 945) +/(.*/)?ga_outgoinglinks\. +# /ga_no_cookie_ (easyprivacy.txt: 944) +/(.*/)?ga_no_cookie_ +# /ga_no_cookie. (easyprivacy.txt: 943) +/(.*/)?ga_no_cookie\. +# /ga_loader. (easyprivacy.txt: 942) +/(.*/)?ga_loader\. +# /ga_link_tracker_ (easyprivacy.txt: 941) +/(.*/)?ga_link_tracker_ +# /ga_keyword2. (easyprivacy.txt: 940) +/(.*/)?ga_keyword2\. +# /ga_header. (easyprivacy.txt: 939) +/(.*/)?ga_header\. +# /ga_gwo. (easyprivacy.txt: 938) +/(.*/)?ga_gwo\. +# /ga_footer. (easyprivacy.txt: 937) +/(.*/)?ga_footer\. +# /ga_external. (easyprivacy.txt: 936) +/(.*/)?ga_external\. +# /ga_event_tracking. (easyprivacy.txt: 935) +/(.*/)?ga_event_tracking\. +# /ga_event_frame? (easyprivacy.txt: 934) +/(.*/)?ga_event_frame\? +# /ga_dualcode_tracking. (easyprivacy.txt: 933) +/(.*/)?ga_dualcode_tracking\. +# /ga_dpc_youtube. (easyprivacy.txt: 932) +/(.*/)?ga_dpc_youtube\. +# /ga_anonym.js (easyprivacy.txt: 931) +/(.*/)?ga_anonym\.js +# /ga?utmac=$image (easyprivacy.txt: 930) +/(.*/)?ga\?utmac= +# /ga2.js (easyprivacy.txt: 929) +/(.*/)?ga2\.js +ga2.js*. +# /ga2.aspx?utmac=$image (easyprivacy.txt: 928) +/(.*/)?ga2\.aspx\?utmac= +# /ga1.js (easyprivacy.txt: 927) +/(.*/)?ga1\.js +ga1.js*. +# /ga/trackevent. (easyprivacy.txt: 926) +/(.*/)?ga/trackevent\. +# /ga/*.gif? (easyprivacy.txt: 925) +/(.*/)?ga/.*\.gif\? +# /ga.swf?gid= (easyprivacy.txt: 924) +/(.*/)?ga\.swf\?gid= +# /GA.swf?gaId= (easyprivacy.txt: 923) +/(.*/)?GA\.swf\?gaId= +# /ga.php?$image (easyprivacy.txt: 922) +/(.*/)?ga\.php\? +# /ga.jsp?$image (easyprivacy.txt: 921) +/(.*/)?ga\.jsp\? +# /ga.gif? (easyprivacy.txt: 920) +/(.*/)?ga\.gif\? +# /ga.aspx? (easyprivacy.txt: 919) +/(.*/)?ga\.aspx\? +# /ga-tracking/* (easyprivacy.txt: 918) +/(.*/)?ga-tracking/.* +# /ga-tracker. (easyprivacy.txt: 917) +/(.*/)?ga-tracker\. +ga-tracker.*. +# /ga-track. (easyprivacy.txt: 916) +/(.*/)?ga-track\. +ga-track.*. +# /ga-socialtracker. (easyprivacy.txt: 915) +/(.*/)?ga-socialtracker\. +ga-socialtracker.*. +# /ga-se-async.js (easyprivacy.txt: 914) +/(.*/)?ga-se-async\.js +ga-se-async.js*. +# /ga-script. (easyprivacy.txt: 913) +/(.*/)?ga-script\. +ga-script.*. +# /ga-multidomain. (easyprivacy.txt: 912) +/(.*/)?ga-multidomain\. +ga-multidomain.*. +# /ga-links.js (easyprivacy.txt: 911) +/(.*/)?ga-links\.js +ga-links.js*. +# /ga-explorations. (easyprivacy.txt: 910) +/(.*/)?ga-explorations\. +ga-explorations.*. +# /ga-event-tracking. (easyprivacy.txt: 909) +/(.*/)?ga-event-tracking\. +ga-event-tracking.*. +# /ga-custom-vars. (easyprivacy.txt: 908) +/(.*/)?ga-custom-vars\. +ga-custom-vars.*. +# /ga-custom-tracking. (easyprivacy.txt: 907) +/(.*/)?ga-custom-tracking\. +ga-custom-tracking.*. +# /ga-async- (easyprivacy.txt: 906) +/(.*/)?ga-async- +ga-async-*. +# /ga-affiliates. (easyprivacy.txt: 905) +/(.*/)?ga-affiliates\. +ga-affiliates.*. +# /g_track.php? (easyprivacy.txt: 904) +/(.*/)?g_track\.php\? +# /g-track/* (easyprivacy.txt: 903) +/(.*/)?g-track/.* +# /FTTrack2.js (easyprivacy.txt: 902) +/(.*/)?FTTrack2\.js +FTTrack2.js*. +# /fsrscripts/* (easyprivacy.txt: 901) +/(.*/)?fsrscripts/.* +# /frtrack. (easyprivacy.txt: 900) +/(.*/)?frtrack\. +frtrack.*. +# /frosmo.easy.js (easyprivacy.txt: 899) +/(.*/)?frosmo\.easy\.js +frosmo.easy.js*. +# /friendbuy.min.js (easyprivacy.txt: 898) +/(.*/)?friendbuy\.min\.js +friendbuy.min.js*. +# /freecgi/count.cgi? (easyprivacy.txt: 897) +/(.*/)?freecgi/count\.cgi\? +# /fpcount.exe (easyprivacy.txt: 896) +/(.*/)?fpcount\.exe +fpcount.exe*. +# /fpc.pl?a= (easyprivacy.txt: 895) +/(.*/)?fpc\.pl\?a= +# /fp/clear.png? (easyprivacy.txt: 894) +/(.*/)?fp/clear\.png\? +# /FoxComScore. (easyprivacy.txt: 893) +/(.*/)?FoxComScore\. +FoxComScore.*. +# /FoxBlueKaiPlugIn. (easyprivacy.txt: 892) +/(.*/)?FoxBlueKaiPlugIn\. +FoxBlueKaiPlugIn.*. +# /FoxAnalyticsExtension. (easyprivacy.txt: 891) +/(.*/)?FoxAnalyticsExtension\. +FoxAnalyticsExtension.*. +# /foresee/* (easyprivacy.txt: 890) +/(.*/)?foresee/.* +# /fora_player_tracking. (easyprivacy.txt: 889) +/(.*/)?fora_player_tracking\. +# /footerpixel.gif? (easyprivacy.txt: 888) +/(.*/)?footerpixel\.gif\? +# /footer_tag_iframe. (easyprivacy.txt: 887) +/(.*/)?footer_tag_iframe\. +# /footer-tracking.js (easyprivacy.txt: 886) +/(.*/)?footer-tracking\.js +footer-tracking.js*. +# /flv_tracking. (easyprivacy.txt: 885) +/(.*/)?flv_tracking\. +# /flcounter/*$script (easyprivacy.txt: 884) +/(.*/)?flcounter/.* +# /flashtag.txt?Log= (easyprivacy.txt: 883) +/(.*/)?flashtag\.txt\?Log= +# /flash-stats.php? (easyprivacy.txt: 882) +/(.*/)?flash-stats\.php\? +# /flash-cookies/* (easyprivacy.txt: 881) +/(.*/)?flash-cookies/.* +# /fkounter5/* (easyprivacy.txt: 880) +/(.*/)?fkounter5/.* +# /fkounter/* (easyprivacy.txt: 879) +/(.*/)?fkounter/.* +# /firestats/* (easyprivacy.txt: 878) +/(.*/)?firestats/.* +# /fingerprint.min.js (easyprivacy.txt: 877) +/(.*/)?fingerprint\.min\.js +fingerprint.min.js*. +# /fingerprint.js (easyprivacy.txt: 876) +/(.*/)?fingerprint\.js +fingerprint.js*. +# /finalizestats. (easyprivacy.txt: 875) +/(.*/)?finalizestats\. +finalizestats.*. +# /files/ga.js (easyprivacy.txt: 874) +/(.*/)?files/ga\.js +# /federated-analytics. (easyprivacy.txt: 873) +/(.*/)?federated-analytics\. +federated-analytics.*. +# /fbcounter/* (easyprivacy.txt: 872) +/(.*/)?fbcounter/.* +# /fbanalytics/* (easyprivacy.txt: 871) +/(.*/)?fbanalytics/.* +# /fb-tracking.js (easyprivacy.txt: 870) +/(.*/)?fb-tracking\.js +fb-tracking.js*. +# /fb-app-tracker. (easyprivacy.txt: 869) +/(.*/)?fb-app-tracker\. +fb-app-tracker.*. +# /fastcounter. (easyprivacy.txt: 868) +/(.*/)?fastcounter\. +fastcounter.*. +# /fairfax_tracking.js (easyprivacy.txt: 867) +/(.*/)?fairfax_tracking\.js +# /FacebookTracking. (easyprivacy.txt: 866) +/(.*/)?FacebookTracking\. +FacebookTracking.*. +# /ezytrack. (easyprivacy.txt: 865) +/(.*/)?ezytrack\. +ezytrack.*. +# /ezakus.js (easyprivacy.txt: 864) +/(.*/)?ezakus\.js +ezakus.js*. +# /external/nielsen_ (easyprivacy.txt: 863) +/(.*/)?external/nielsen_ +# /external-tracking. (easyprivacy.txt: 862) +/(.*/)?external-tracking\. +external-tracking.*. +# /extendedAnalytics. (easyprivacy.txt: 861) +/(.*/)?extendedAnalytics\. +extendedAnalytics.*. +# /expcount/* (easyprivacy.txt: 860) +/(.*/)?expcount/.* +# /exittraffic. (easyprivacy.txt: 859) +/(.*/)?exittraffic\. +exittraffic.*. +# /exittracker. (easyprivacy.txt: 858) +/(.*/)?exittracker\. +exittracker.*. +# /exelator. (easyprivacy.txt: 857) +/(.*/)?exelator\. +exelator.*. +# /exelate.html? (easyprivacy.txt: 856) +/(.*/)?exelate\.html\? +# /exelate.htm? (easyprivacy.txt: 855) +/(.*/)?exelate\.htm\? +# /exaonclick.js (easyprivacy.txt: 854) +/(.*/)?exaonclick\.js +exaonclick.js*. +# /EWTRACK_ (easyprivacy.txt: 853) +/(.*/)?EWTRACK_ +# /ewtrack. (easyprivacy.txt: 852) +/(.*/)?ewtrack\. +ewtrack.*. +# /evercookie_ (easyprivacy.txt: 851) +/(.*/)?evercookie_ +# /evercookie/* (easyprivacy.txt: 850) +/(.*/)?evercookie/.* +# /evercookie. (easyprivacy.txt: 849) +/(.*/)?evercookie\. +evercookie.*. +# /eventtracker.js (easyprivacy.txt: 848) +/(.*/)?eventtracker\.js +eventtracker.js*. +# /eventLogServlet? (easyprivacy.txt: 847) +/(.*/)?eventLogServlet\? +# /event?stat_ (easyprivacy.txt: 846) +/(.*/)?event\?stat_ +# /event?pmo= (easyprivacy.txt: 845) +/(.*/)?event\?pmo= +# /event/*/*?*&euidl=*&url= (easyprivacy.txt: 844) +/(.*/)?event/.*/.*\?.*&euidl=.*&url= +# /event.gif? (easyprivacy.txt: 843) +/(.*/)?event\.gif\? +# /event-tracking.js (easyprivacy.txt: 842) +/(.*/)?event-tracking\.js +event-tracking.js*. +# /event-report?*&uid= (easyprivacy.txt: 841) +/(.*/)?event-report\?.*&uid= +# /event-log/* (easyprivacy.txt: 840) +/(.*/)?event-log/.* +# /eu-survey.js (easyprivacy.txt: 839) +/(.*/)?eu-survey\.js +eu-survey.js*. +# /etrackercode. (easyprivacy.txt: 838) +/(.*/)?etrackercode\. +etrackercode.*. +# /etracker/* (easyprivacy.txt: 837) +/(.*/)?etracker/.* +# /etracker. (easyprivacy.txt: 836) +/(.*/)?etracker\. +etracker.*. +# /etag? (easyprivacy.txt: 835) +/(.*/)?etag\? +# /estatnativeflashtag.swf (easyprivacy.txt: 834) +/(.*/)?estatnativeflashtag\.swf +estatnativeflashtag.swf*. +# /estatistica.js (easyprivacy.txt: 833) +/(.*/)?estatistica\.js +estatistica.js*. +# /est.pl? (easyprivacy.txt: 832) +/(.*/)?est\.pl\? +# /error/js/log? (easyprivacy.txt: 831) +/(.*/)?error/js/log\? +# /epf_v1_95.js (easyprivacy.txt: 830) +/(.*/)?epf_v1_95\.js +# /envoy.sb?sbaid (easyprivacy.txt: 829) +/(.*/)?envoy\.sb\?sbaid +# /emstrack. (easyprivacy.txt: 828) +/(.*/)?emstrack\. +emstrack.*. +# /emos2.js$~xmlhttprequest (easyprivacy.txt: 827) +/(.*/)?emos2\.js +emos2.js*. +# /emos2-$script (easyprivacy.txt: 826) +/(.*/)?emos2- +emos2-*. +# /EMERPEventCollector. (easyprivacy.txt: 825) +/(.*/)?EMERPEventCollector\. +EMERPEventCollector.*. +# /EmailOpenTrackLog.aspx?$image (easyprivacy.txt: 824) +/(.*/)?EmailOpenTrackLog\.aspx\? +# /eluminate? (easyprivacy.txt: 823) +/(.*/)?eluminate\? +# /elqtracking. (easyprivacy.txt: 822) +/(.*/)?elqtracking\. +elqtracking.*. +# /elqnow/* (easyprivacy.txt: 821) +/(.*/)?elqnow/.* +# /elqimg.js (easyprivacy.txt: 820) +/(.*/)?elqimg\.js +elqimg.js*. +# /elqcfg.min.js (easyprivacy.txt: 819) +/(.*/)?elqcfg\.min\.js +elqcfg.min.js*. +# /elqcfg.js (easyprivacy.txt: 818) +/(.*/)?elqcfg\.js +elqcfg.js*. +# /elqcfg-$script (easyprivacy.txt: 817) +/(.*/)?elqcfg- +elqcfg-*. +# /eloqua_ (easyprivacy.txt: 816) +/(.*/)?eloqua_ +# /elex.track. (easyprivacy.txt: 815) +/(.*/)?elex\.track\. +elex.track.*. +# /eheat.js (easyprivacy.txt: 814) +/(.*/)?eheat\.js +eheat.js*. +# /eftracking. (easyprivacy.txt: 813) +/(.*/)?eftracking\. +eftracking.*. +# /EfficientFrontier. (easyprivacy.txt: 812) +/(.*/)?EfficientFrontier\. +EfficientFrontier.*. +# /effectivemeasure. (easyprivacy.txt: 811) +/(.*/)?effectivemeasure\. +effectivemeasure.*. +# /EDigitalSurvey_ (easyprivacy.txt: 810) +/(.*/)?EDigitalSurvey_ +# /eDigitalSurvey. (easyprivacy.txt: 809) +/(.*/)?eDigitalSurvey\. +eDigitalSurvey.*. +# /edateAdTrack? (easyprivacy.txt: 808) +/(.*/)?edateAdTrack\? +# /edata.js (easyprivacy.txt: 807) +/(.*/)?edata\.js +edata.js*. +# /edAnalyticsWrapper. (easyprivacy.txt: 806) +/(.*/)?edAnalyticsWrapper\. +edAnalyticsWrapper.*. +# /eCustomerSurvey. (easyprivacy.txt: 805) +/(.*/)?eCustomerSurvey\. +eCustomerSurvey.*. +# /ecossurvey. (easyprivacy.txt: 804) +/(.*/)?ecossurvey\. +ecossurvey.*. +# /ecos_surveycode_ (easyprivacy.txt: 803) +/(.*/)?ecos_surveycode_ +# /ecos_survey. (easyprivacy.txt: 802) +/(.*/)?ecos_survey\. +# /ecos.js (easyprivacy.txt: 801) +/(.*/)?ecos\.js +ecos.js*. +# /ecos-surveycode. (easyprivacy.txt: 800) +/(.*/)?ecos-surveycode\. +ecos-surveycode.*. +# /Econda2. (easyprivacy.txt: 799) +/(.*/)?Econda2\. +Econda2.*. +# /econa-site-search/log.php? (easyprivacy.txt: 798) +/(.*/)?econa-site-search/log\.php\? +# /econa-site-search-ajax-log-referrer.php (easyprivacy.txt: 797) +/(.*/)?econa-site-search-ajax-log-referrer\.php +econa-site-search-ajax-log-referrer.php*. +# /ecom/status.jsp? (easyprivacy.txt: 796) +/(.*/)?ecom/status\.jsp\? +# /ecblank.gif? (easyprivacy.txt: 795) +/(.*/)?ecblank\.gif\? +# /ebonetag.js (easyprivacy.txt: 794) +/(.*/)?ebonetag\.js +ebonetag.js*. +# /eae-logger/* (easyprivacy.txt: 793) +/(.*/)?eae-logger/.* +# /ea-analytics/* (easyprivacy.txt: 792) +/(.*/)?ea-analytics/.* +# /e086ec.aspx?q=l3mkwgak (easyprivacy.txt: 791) +/(.*/)?e086ec\.aspx\?q=l3mkwgak +# /dynaTraceMonitor? (easyprivacy.txt: 790) +/(.*/)?dynaTraceMonitor\? +# /DynamicAnalytics. (easyprivacy.txt: 789) +/(.*/)?DynamicAnalytics\. +DynamicAnalytics.*. +# /dwanalytics. (easyprivacy.txt: 788) +/(.*/)?dwanalytics\. +dwanalytics.*. +# /dtrack.js (easyprivacy.txt: 787) +/(.*/)?dtrack\.js +dtrack.js*. +# /dtmtag.js (easyprivacy.txt: 786) +/(.*/)?dtmtag\.js +dtmtag.js*. +# /dtm_cm.js (easyprivacy.txt: 785) +/(.*/)?dtm_cm\.js +# /dstracking. (easyprivacy.txt: 784) +/(.*/)?dstracking\. +dstracking.*. +# /dspixel.js (easyprivacy.txt: 783) +/(.*/)?dspixel\.js +dspixel.js*. +# /drads?referrer= (easyprivacy.txt: 782) +/(.*/)?drads\?referrer= +# /DownloadTracker. (easyprivacy.txt: 781) +/(.*/)?DownloadTracker\. +DownloadTracker.*. +# /dow_analytics. (easyprivacy.txt: 780) +/(.*/)?dow_analytics\. +# /doubleclickCheck/* (easyprivacy.txt: 779) +/(.*/)?doubleclickCheck/.* +# /dotomi_tracking/* (easyprivacy.txt: 778) +/(.*/)?dotomi_tracking/.* +# /dotomi_abandon. (easyprivacy.txt: 777) +/(.*/)?dotomi_abandon\. +# /Dotomi. (easyprivacy.txt: 776) +/(.*/)?Dotomi\. +Dotomi.*. +# /dot.asp? (easyprivacy.txt: 775) +/(.*/)?dot\.asp\? +# /domcount_ (easyprivacy.txt: 774) +/(.*/)?domcount_ +# /domcount. (easyprivacy.txt: 773) +/(.*/)?domcount\. +domcount.*. +# /dolWebAnalytics. (easyprivacy.txt: 772) +/(.*/)?dolWebAnalytics\. +dolWebAnalytics.*. +# /doIperceptionsRegulator. (easyprivacy.txt: 771) +/(.*/)?doIperceptionsRegulator\. +doIperceptionsRegulator.*. +# /DNATracking. (easyprivacy.txt: 770) +/(.*/)?DNATracking\. +DNATracking.*. +# /dmtracking2. (easyprivacy.txt: 769) +/(.*/)?dmtracking2\. +dmtracking2.*. +# /dm.gif? (easyprivacy.txt: 768) +/(.*/)?dm\.gif\? +# /dltrack/* (easyprivacy.txt: 767) +/(.*/)?dltrack/.* +# /dltrack. (easyprivacy.txt: 766) +/(.*/)?dltrack\. +dltrack.*. +# /dla_tracker. (easyprivacy.txt: 765) +/(.*/)?dla_tracker\. +# /dispatch.fcgi? (easyprivacy.txt: 764) +/(.*/)?dispatch\.fcgi\? +# /disp_cnt. (easyprivacy.txt: 763) +/(.*/)?disp_cnt\. +# /Diagnostics?hit= (easyprivacy.txt: 762) +/(.*/)?Diagnostics\?hit= +# /deskanalytics.js (easyprivacy.txt: 761) +/(.*/)?deskanalytics\.js +deskanalytics.js*. +# /DemdexBehavioralTracking. (easyprivacy.txt: 760) +/(.*/)?DemdexBehavioralTracking\. +DemdexBehavioralTracking.*. +# /demdex/* (easyprivacy.txt: 759) +/(.*/)?demdex/.* +# /demdex.js (easyprivacy.txt: 758) +/(.*/)?demdex\.js +demdex.js*. +# /demandbase_ (easyprivacy.txt: 757) +/(.*/)?demandbase_ +# /demandbase. (easyprivacy.txt: 756) +/(.*/)?demandbase\. +demandbase.*. +# /delivery/lg. (easyprivacy.txt: 755) +/(.*/)?delivery/lg\. +# /DecideDNATrackingCode- (easyprivacy.txt: 754) +/(.*/)?DecideDNATrackingCode- +DecideDNATrackingCode-*. +# /dcstorm/track. (easyprivacy.txt: 753) +/(.*/)?dcstorm/track\. +# /dcstorm.js (easyprivacy.txt: 752) +/(.*/)?dcstorm\.js +dcstorm.js*. +# /dcstorm-track. (easyprivacy.txt: 751) +/(.*/)?dcstorm-track\. +dcstorm-track.*. +# /dcs_tag. (easyprivacy.txt: 750) +/(.*/)?dcs_tag\. +# /dcs.gif? (easyprivacy.txt: 749) +/(.*/)?dcs\.gif\? +# /dc-storm/track. (easyprivacy.txt: 748) +/(.*/)?dc-storm/track\. +# /dc-storm/aff. (easyprivacy.txt: 747) +/(.*/)?dc-storm/aff\. +# /dc-storm.js (easyprivacy.txt: 746) +/(.*/)?dc-storm\.js +dc-storm.js*. +# /dc-storm-track. (easyprivacy.txt: 745) +/(.*/)?dc-storm-track\. +dc-storm-track.*. +# /dart_wrapper.html? (easyprivacy.txt: 744) +/(.*/)?dart_wrapper\.html\? +# /cyberestat/* (easyprivacy.txt: 743) +/(.*/)?cyberestat/.* +# /cxense/cx.js (easyprivacy.txt: 742) +/(.*/)?cxense/cx\.js +# /cXense-Analytics- (easyprivacy.txt: 741) +/(.*/)?cXense-Analytics- +cXense-Analytics-*. +# /cwTRACK.js (easyprivacy.txt: 740) +/(.*/)?cwTRACK\.js +cwTRACK.js*. +# /CustomTrackingScript. (easyprivacy.txt: 739) +/(.*/)?CustomTrackingScript\. +CustomTrackingScript.*. +# /custom-tracking. (easyprivacy.txt: 738) +/(.*/)?custom-tracking\. +custom-tracking.*. +# /ctr_tracking. (easyprivacy.txt: 737) +/(.*/)?ctr_tracking\. +# /csi?v=3&s= (easyprivacy.txt: 736) +/(.*/)?csi\?v=3&s= +# /csi?v=2&s= (easyprivacy.txt: 735) +/(.*/)?csi\?v=2&s= +# /csi?v=*&action= (easyprivacy.txt: 734) +/(.*/)?csi\?v=.*&action= +# /csct.js (easyprivacy.txt: 733) +/(.*/)?csct\.js +csct.js*. +# /CSAdobeTracking. (easyprivacy.txt: 732) +/(.*/)?CSAdobeTracking\. +CSAdobeTracking.*. +# /cs_api/log (easyprivacy.txt: 731) +/(.*/)?cs_api/log +# /cross_pixels. (easyprivacy.txt: 730) +/(.*/)?cross_pixels\. +# /crmTracking. (easyprivacy.txt: 729) +/(.*/)?crmTracking\. +crmTracking.*. +# /criteoRTA. (easyprivacy.txt: 728) +/(.*/)?criteoRTA\. +criteoRTA.*. +# /criteo_ (easyprivacy.txt: 727) +/(.*/)?criteo_ +# /Criteo/* (easyprivacy.txt: 726) +/(.*/)?Criteo/.* +# /criteo. (easyprivacy.txt: 725) +/(.*/)?criteo\. +criteo.*. +# /CreateVIDCookie.aspx? (easyprivacy.txt: 724) +/(.*/)?CreateVIDCookie\.aspx\? +# /crai_tracker. (easyprivacy.txt: 723) +/(.*/)?crai_tracker\. +# /cqcounter. (easyprivacy.txt: 722) +/(.*/)?cqcounter\. +cqcounter.*. +# /countus.php (easyprivacy.txt: 721) +/(.*/)?countus\.php +countus.php*. +# /countstat.php? (easyprivacy.txt: 720) +/(.*/)?countstat\.php\? +# /countpixel. (easyprivacy.txt: 719) +/(.*/)?countpixel\. +countpixel.*. +# /countinj.cgi? (easyprivacy.txt: 718) +/(.*/)?countinj\.cgi\? +# /countHits. (easyprivacy.txt: 717) +/(.*/)?countHits\. +countHits.*. +# /counterFooterFlash. (easyprivacy.txt: 716) +/(.*/)?counterFooterFlash\. +counterFooterFlash.*. +# /countercollector/* (easyprivacy.txt: 715) +/(.*/)?countercollector/.* +# /countercgi. (easyprivacy.txt: 714) +/(.*/)?countercgi\. +countercgi.*. +# /counter_image.gif? (easyprivacy.txt: 713) +/(.*/)?counter_image\.gif\? +# /counter_3.php (easyprivacy.txt: 712) +/(.*/)?counter_3\.php +# /counter_2.php? (easyprivacy.txt: 711) +/(.*/)?counter_2\.php\? +# /counter_1.php (easyprivacy.txt: 710) +/(.*/)?counter_1\.php +# /counter?id= (easyprivacy.txt: 709) +/(.*/)?counter\?id= +# /counter/r.pl (easyprivacy.txt: 708) +/(.*/)?counter/r\.pl +# /counter/process.asp? (easyprivacy.txt: 707) +/(.*/)?counter/process\.asp\? +# /counter/ct.php? (easyprivacy.txt: 706) +/(.*/)?counter/ct\.php\? +# /counter/article? (easyprivacy.txt: 705) +/(.*/)?counter/article\? +# /Counter.woa/* (easyprivacy.txt: 704) +/(.*/)?Counter\.woa/.* +Counter.woa/.* +# /counter.visit? (easyprivacy.txt: 703) +/(.*/)?counter\.visit\? +# /counter.pl? (easyprivacy.txt: 702) +/(.*/)?counter\.pl\? +# /counter.php?chcounter_mode= (easyprivacy.txt: 701) +/(.*/)?counter\.php\?chcounter_mode= +# /counter.lt? (easyprivacy.txt: 700) +/(.*/)?counter\.lt\? +# /counter.do? (easyprivacy.txt: 699) +/(.*/)?counter\.do\? +# /counter.cgi? (easyprivacy.txt: 698) +/(.*/)?counter\.cgi\? +# /counter.cgi/* (easyprivacy.txt: 697) +/(.*/)?counter\.cgi/.* +counter.cgi/.* +# /counter.aspx? (easyprivacy.txt: 696) +/(.*/)?counter\.aspx\? +# /counter.asp? (easyprivacy.txt: 695) +/(.*/)?counter\.asp\? +# /Counter.ashx? (easyprivacy.txt: 694) +/(.*/)?Counter\.ashx\? +# /CountContent? (easyprivacy.txt: 693) +/(.*/)?CountContent\? +# /countbk. (easyprivacy.txt: 692) +/(.*/)?countbk\. +countbk.*. +# /count_stats/* (easyprivacy.txt: 691) +/(.*/)?count_stats/.* +# /count_js. (easyprivacy.txt: 690) +/(.*/)?count_js\. +# /count_DB/* (easyprivacy.txt: 689) +/(.*/)?count_DB/.* +# /count?type= (easyprivacy.txt: 688) +/(.*/)?count\?type= +# /count?pid= (easyprivacy.txt: 687) +/(.*/)?count\?pid= +# /count/count.cgi? (easyprivacy.txt: 686) +/(.*/)?count/count\.cgi\? +# /count/?ad= (easyprivacy.txt: 685) +/(.*/)?count/\?ad= +# /count.fgi? (easyprivacy.txt: 684) +/(.*/)?count\.fgi\? +# /count.fcgi? (easyprivacy.txt: 683) +/(.*/)?count\.fcgi\? +# /count.fcg? (easyprivacy.txt: 682) +/(.*/)?count\.fcg\? +# /count.exe? (easyprivacy.txt: 681) +/(.*/)?count\.exe\? +# /count.cfm? (easyprivacy.txt: 680) +/(.*/)?count\.cfm\? +# /CorporatePageTracking. (easyprivacy.txt: 679) +/(.*/)?CorporatePageTracking\. +CorporatePageTracking.*. +# /coretracking.php? (easyprivacy.txt: 678) +/(.*/)?coretracking\.php\? +# /coradiant.js (easyprivacy.txt: 677) +/(.*/)?coradiant\.js +coradiant.js*. +# /CookieSetterAS3. (easyprivacy.txt: 676) +/(.*/)?CookieSetterAS3\. +CookieSetterAS3.*. +# /cookie_ga. (easyprivacy.txt: 675) +/(.*/)?cookie_ga\. +# /cookie?affiliate (easyprivacy.txt: 674) +/(.*/)?cookie\?affiliate +# /cookie/visitor/* (easyprivacy.txt: 673) +/(.*/)?cookie/visitor/.* +# /cookie.crumb (easyprivacy.txt: 672) +/(.*/)?cookie\.crumb +cookie.crumb*. +# /convertro.js (easyprivacy.txt: 671) +/(.*/)?convertro\.js +convertro.js*. +# /control/tracking.php? (easyprivacy.txt: 670) +/(.*/)?control/tracking\.php\? +# /ContentTrackingCall. (easyprivacy.txt: 669) +/(.*/)?ContentTrackingCall\. +ContentTrackingCall.*. +# /containertag? (easyprivacy.txt: 668) +/(.*/)?containertag\? +# /connect_counter.js (easyprivacy.txt: 667) +/(.*/)?connect_counter\.js +# /condenet-metric. (easyprivacy.txt: 666) +/(.*/)?condenet-metric\. +condenet-metric.*. +# /ComScoreSWF. (easyprivacy.txt: 665) +/(.*/)?ComScoreSWF\. +ComScoreSWF.*. +# /ComScorePlugin. (easyprivacy.txt: 664) +/(.*/)?ComScorePlugin\. +ComScorePlugin.*. +# /comscorebeacon. (easyprivacy.txt: 663) +/(.*/)?comscorebeacon\. +comscorebeacon.*. +# /comscore_stats. (easyprivacy.txt: 662) +/(.*/)?comscore_stats\. +# /comscore_beacon. (easyprivacy.txt: 661) +/(.*/)?comscore_beacon\. +# /comscore. (easyprivacy.txt: 660) +/(.*/)?comscore\. +comscore.*. +# /competeTracking_test.html? (easyprivacy.txt: 659) +/(.*/)?competeTracking_test\.html\? +# /com_joomlawatch/* (easyprivacy.txt: 658) +/(.*/)?com_joomlawatch/.* +# /com_joomla-visites/* (easyprivacy.txt: 657) +/(.*/)?com_joomla-visites/.* +# /collector?report= (easyprivacy.txt: 656) +/(.*/)?collector\?report= +# /collector/hit? (easyprivacy.txt: 655) +/(.*/)?collector/hit\? +# /collector/*/*?*&euidl=*&url= (easyprivacy.txt: 654) +/(.*/)?collector/.*/.*\?.*&euidl=.*&url= +# /collect?callback= (easyprivacy.txt: 653) +/(.*/)?collect\?callback= +# /cognitive_match/* (easyprivacy.txt: 652) +/(.*/)?cognitive_match/.* +# /cnwk.1d/*/apex.js (easyprivacy.txt: 651) +/(.*/)?cnwk\.1d/.*/apex\.js +cnwk.1d/.*/apex\.js +# /cnvtr.js (easyprivacy.txt: 650) +/(.*/)?cnvtr\.js +cnvtr.js*. +# /CntRpt.aspx? (easyprivacy.txt: 649) +/(.*/)?CntRpt\.aspx\? +# /cntpixel. (easyprivacy.txt: 648) +/(.*/)?cntpixel\. +cntpixel.*. +# /cnt/start.php? (easyprivacy.txt: 647) +/(.*/)?cnt/start\.php\? +# /cnt/cnt.php? (easyprivacy.txt: 646) +/(.*/)?cnt/cnt\.php\? +# /cnt.cgi? (easyprivacy.txt: 645) +/(.*/)?cnt\.cgi\? +# /cnt.aspx? (easyprivacy.txt: 644) +/(.*/)?cnt\.aspx\? +# /cnt-combined.php? (easyprivacy.txt: 643) +/(.*/)?cnt-combined\.php\? +# /cnstats/* (easyprivacy.txt: 642) +/(.*/)?cnstats/.* +# /cnstats. (easyprivacy.txt: 641) +/(.*/)?cnstats\. +cnstats.*. +# /cn-fe-stats/* (easyprivacy.txt: 640) +/(.*/)?cn-fe-stats/.* +# /cmslog.dll? (easyprivacy.txt: 639) +/(.*/)?cmslog\.dll\? +# /cms/stats/* (easyprivacy.txt: 638) +/(.*/)?cms/stats/.* +# /cms.gif? (easyprivacy.txt: 637) +/(.*/)?cms\.gif\? +# /cmarketing.countus.js (easyprivacy.txt: 636) +/(.*/)?cmarketing\.countus\.js +cmarketing.countus.js*. +# /cm?tid= (easyprivacy.txt: 635) +/(.*/)?cm\?tid= +# /cm?ci=*&tid= (easyprivacy.txt: 634) +/(.*/)?cm\?ci=.*&tid= +# /cls_rpt.gif? (easyprivacy.txt: 633) +/(.*/)?cls_rpt\.gif\? +# /clientstat? (easyprivacy.txt: 632) +/(.*/)?clientstat\? +# /clientlibs/ga.js (easyprivacy.txt: 631) +/(.*/)?clientlibs/ga\.js +# /client_pathlog.asp? (easyprivacy.txt: 630) +/(.*/)?client_pathlog\.asp\? +# /client-event-logger. (easyprivacy.txt: 629) +/(.*/)?client-event-logger\. +client-event-logger.*. +# /clicky.js (easyprivacy.txt: 628) +/(.*/)?clicky\.js +clicky.js*. +# /clicktrends/* (easyprivacy.txt: 627) +/(.*/)?clicktrends/.* +# /ClickTracksCookies. (easyprivacy.txt: 626) +/(.*/)?ClickTracksCookies\. +ClickTracksCookies.*. +# /ClickTracks_ (easyprivacy.txt: 625) +/(.*/)?ClickTracks_ +# /clicktracking/* (easyprivacy.txt: 624) +/(.*/)?clicktracking/.* +# /clicktracking. (easyprivacy.txt: 623) +/(.*/)?clicktracking\. +clicktracking.*. +# /clicktracking-global. (easyprivacy.txt: 622) +/(.*/)?clicktracking-global\. +clicktracking-global.*. +# /clicktracker. (easyprivacy.txt: 621) +/(.*/)?clicktracker\. +clicktracker.*. +# /clicktrack? (easyprivacy.txt: 620) +/(.*/)?clicktrack\? +# /ClickTrack. (easyprivacy.txt: 619) +/(.*/)?ClickTrack\. +ClickTrack.*. +# /clicktrack-*.gif? (easyprivacy.txt: 618) +/(.*/)?clicktrack-.*\.gif\? +clicktrack-*./.*\.gif\? +# /ClickTaleFilter. (easyprivacy.txt: 617) +/(.*/)?ClickTaleFilter\. +ClickTaleFilter.*. +# /clicktale_ (easyprivacy.txt: 616) +/(.*/)?clicktale_ +# /clicktale/* (easyprivacy.txt: 615) +/(.*/)?clicktale/.* +# /clicktale. (easyprivacy.txt: 614) +/(.*/)?clicktale\. +clicktale.*. +# /clicktale- (easyprivacy.txt: 613) +/(.*/)?clicktale- +clicktale-*. +# /ClickTail. (easyprivacy.txt: 612) +/(.*/)?ClickTail\. +ClickTail.*. +# /clickstream.js (easyprivacy.txt: 611) +/(.*/)?clickstream\.js +clickstream.js*. +# /clickstream.aspx? (easyprivacy.txt: 610) +/(.*/)?clickstream\.aspx\? +# /clickstats. (easyprivacy.txt: 609) +/(.*/)?clickstats\. +clickstats.*. +# /clickscript. (easyprivacy.txt: 608) +/(.*/)?clickscript\. +clickscript.*. +# /clickrecord.php? (easyprivacy.txt: 607) +/(.*/)?clickrecord\.php\? +# /clickpathmedia_ (easyprivacy.txt: 606) +/(.*/)?clickpathmedia_ +# /clickpathmedia. (easyprivacy.txt: 605) +/(.*/)?clickpathmedia\. +clickpathmedia.*. +# /clickmap.js (easyprivacy.txt: 604) +/(.*/)?clickmap\.js +clickmap.js*. +# /clicklognew. (easyprivacy.txt: 603) +/(.*/)?clicklognew\. +clicklognew.*. +# /clickLogger? (easyprivacy.txt: 602) +/(.*/)?clickLogger\? +# /clicklog_ (easyprivacy.txt: 601) +/(.*/)?clicklog_ +# /clicklog. (easyprivacy.txt: 600) +/(.*/)?clicklog\. +clicklog.*. +# /clickheat^ (easyprivacy.txt: 599) +/(.*/)?clickheat[^\w%.-] +# /clickheat.js (easyprivacy.txt: 598) +/(.*/)?clickheat\.js +clickheat.js*. +# /clickcount_ (easyprivacy.txt: 597) +/(.*/)?clickcount_ +# /clickcount.cfm? (easyprivacy.txt: 596) +/(.*/)?clickcount\.cfm\? +# /clickAnalyse. (easyprivacy.txt: 595) +/(.*/)?clickAnalyse\. +clickAnalyse.*. +# /clickability? (easyprivacy.txt: 594) +/(.*/)?clickability\? +# /clickability2/* (easyprivacy.txt: 593) +/(.*/)?clickability2/.* +# /clickability/* (easyprivacy.txt: 592) +/(.*/)?clickability/.* +# /clickability. (easyprivacy.txt: 591) +/(.*/)?clickability\. +clickability.*. +# /clickability- (easyprivacy.txt: 590) +/(.*/)?clickability- +clickability-*. +# /click_tracking (easyprivacy.txt: 589) +/(.*/)?click_tracking +# /click_track.js (easyprivacy.txt: 588) +/(.*/)?click_track\.js +# /click_stats. (easyprivacy.txt: 587) +/(.*/)?click_stats\. +# /click_statistics/* (easyprivacy.txt: 586) +/(.*/)?click_statistics/.* +# /click_stat/* (easyprivacy.txt: 585) +/(.*/)?click_stat/.* +# /click_metrics-jquery.js (easyprivacy.txt: 584) +/(.*/)?click_metrics-jquery\.js +# /click-tracker (easyprivacy.txt: 583) +/(.*/)?click-tracker +click-tracker*. +# /click-stat.js (easyprivacy.txt: 582) +/(.*/)?click-stat\.js +click-stat.js*. +# /click-logger. (easyprivacy.txt: 581) +/(.*/)?click-logger\. +click-logger.*. +# /clear/c.gif? (easyprivacy.txt: 580) +/(.*/)?clear/c\.gif\? +# /clear.gif? (easyprivacy.txt: 579) +/(.*/)?clear\.gif\? +# /class.tracking.js (easyprivacy.txt: 578) +/(.*/)?class\.tracking\.js +class.tracking.js*. +# /clacking.js (easyprivacy.txt: 577) +/(.*/)?clacking\.js +clacking.js*. +# /cklink.gif? (easyprivacy.txt: 576) +/(.*/)?cklink\.gif\? +# /ckimg_1x1.gif? (easyprivacy.txt: 575) +/(.*/)?ckimg_1x1\.gif\? +# /cjtracker2. (easyprivacy.txt: 574) +/(.*/)?cjtracker2\. +cjtracker2.*. +# /citycounter. (easyprivacy.txt: 573) +/(.*/)?citycounter\. +citycounter.*. +# /cim_tns/spring.js (easyprivacy.txt: 572) +/(.*/)?cim_tns/spring\.js +# /checkstat.asp (easyprivacy.txt: 571) +/(.*/)?checkstat\.asp +checkstat.asp*. +# /checkForAdvertorials. (easyprivacy.txt: 570) +/(.*/)?checkForAdvertorials\. +checkForAdvertorials.*. +# /check.php?referrer= (easyprivacy.txt: 569) +/(.*/)?check\.php\?referrer= +# /chcounter/* (easyprivacy.txt: 568) +/(.*/)?chcounter/.* +# /chartbeatftr. (easyprivacy.txt: 567) +/(.*/)?chartbeatftr\. +chartbeatftr.*. +# /chartbeatCode. (easyprivacy.txt: 566) +/(.*/)?chartbeatCode\. +chartbeatCode.*. +# /chartbeat_ (easyprivacy.txt: 565) +/(.*/)?chartbeat_ +# /chartbeat/* (easyprivacy.txt: 564) +/(.*/)?chartbeat/.* +# /chartbeat.min.js (easyprivacy.txt: 563) +/(.*/)?chartbeat\.min\.js +chartbeat.min.js*. +# /chartbeat.js (easyprivacy.txt: 562) +/(.*/)?chartbeat\.js +chartbeat.js*. +# /chartbeat.jhtml (easyprivacy.txt: 561) +/(.*/)?chartbeat\.jhtml +chartbeat.jhtml*. +# /chartbeat- (easyprivacy.txt: 560) +/(.*/)?chartbeat- +chartbeat-*. +# /ChannelTrackingConverter. (easyprivacy.txt: 559) +/(.*/)?ChannelTrackingConverter\. +ChannelTrackingConverter.*. +# /ChannelTracking. (easyprivacy.txt: 558) +/(.*/)?ChannelTracking\. +ChannelTracking.*. +# /channelintelligence/* (easyprivacy.txt: 557) +/(.*/)?channelintelligence/.* +# /chanalytics. (easyprivacy.txt: 556) +/(.*/)?chanalytics\. +chanalytics.*. +# /chan_slidesurvey.js (easyprivacy.txt: 555) +/(.*/)?chan_slidesurvey\.js +# /cgi/trk.js (easyprivacy.txt: 554) +/(.*/)?cgi/trk\.js +# /cgi/stats.pl? (easyprivacy.txt: 553) +/(.*/)?cgi/stats\.pl\? +# /cgi/count? (easyprivacy.txt: 552) +/(.*/)?cgi/count\? +# /cgi/bin/trk.js (easyprivacy.txt: 551) +/(.*/)?cgi/bin/trk\.js +# /cgi-sys/count.cgi?df= (easyprivacy.txt: 550) +/(.*/)?cgi-sys/count\.cgi\?df= +# /cgi-bin/vdz/* (easyprivacy.txt: 549) +/(.*/)?cgi-bin/vdz/.* +# /cgi-bin/useronline/* (easyprivacy.txt: 548) +/(.*/)?cgi-bin/useronline/.* +# /cgi-bin/user_online/uos.cgi? (easyprivacy.txt: 547) +/(.*/)?cgi-bin/user_online/uos\.cgi\? +# /cgi-bin/te/in.cgi? (easyprivacy.txt: 546) +/(.*/)?cgi-bin/te/in\.cgi\? +# /cgi-bin/refsd? (easyprivacy.txt: 545) +/(.*/)?cgi-bin/refsd\? +# /cgi-bin/online/uos.cgi? (easyprivacy.txt: 544) +/(.*/)?cgi-bin/online/uos\.cgi\? +# /cgi-bin/lcpnp/* (easyprivacy.txt: 543) +/(.*/)?cgi-bin/lcpnp/.* +# /cgi-bin/ivw/* (easyprivacy.txt: 542) +/(.*/)?cgi-bin/ivw/.* +# /cgi-bin/ivw-ssl/* (easyprivacy.txt: 541) +/(.*/)?cgi-bin/ivw-ssl/.* +# /cgi-bin/hits/* (easyprivacy.txt: 540) +/(.*/)?cgi-bin/hits/.* +# /cgi-bin/ctasp-server.cgi? (easyprivacy.txt: 539) +/(.*/)?cgi-bin/ctasp-server\.cgi\? +# /cgi-bin/CP/* (easyprivacy.txt: 538) +/(.*/)?cgi-bin/CP/.* +# /cgi-bin/count1.cgi? (easyprivacy.txt: 537) +/(.*/)?cgi-bin/count1\.cgi\? +# /cgi-bin/count/* (easyprivacy.txt: 536) +/(.*/)?cgi-bin/count/.* +# /cgi-bin/count.pl? (easyprivacy.txt: 535) +/(.*/)?cgi-bin/count\.pl\? +# /cgi-bin/count.cgi?*sh= (easyprivacy.txt: 534) +/(.*/)?cgi-bin/count\.cgi\?.*sh= +# /cgi-bin/count.cgi?*rgb= (easyprivacy.txt: 533) +/(.*/)?cgi-bin/count\.cgi\?.*rgb= +# /cgi-bin/count.cgi?*ft= (easyprivacy.txt: 532) +/(.*/)?cgi-bin/count\.cgi\?.*ft= +# /cgi-bin/count.cgi?*df=$~image (easyprivacy.txt: 531) +/(.*/)?cgi-bin/count\.cgi\?.*df= +# /cgi-bin/cnt/* (easyprivacy.txt: 530) +/(.*/)?cgi-bin/cnt/.* +# /cfformprotect/* (easyprivacy.txt: 529) +/(.*/)?cfformprotect/.* +# /certona_$script (easyprivacy.txt: 528) +/(.*/)?certona_ +# /Certona/* (easyprivacy.txt: 527) +/(.*/)?Certona/.* +# /certona. (easyprivacy.txt: 526) +/(.*/)?certona\. +certona.*. +# /certifica_2010.js (easyprivacy.txt: 525) +/(.*/)?certifica_2010\.js +# /certifica.js (easyprivacy.txt: 524) +/(.*/)?certifica\.js +certifica.js*. +# /certifica-js14.js (easyprivacy.txt: 523) +/(.*/)?certifica-js14\.js +certifica-js14.js*. +# /cedexisus. (easyprivacy.txt: 522) +/(.*/)?cedexisus\. +cedexisus.*. +# /cedexis/* (easyprivacy.txt: 521) +/(.*/)?cedexis/.* +# /cedexis.js (easyprivacy.txt: 520) +/(.*/)?cedexis\.js +cedexis.js*. +# /cedexis- (easyprivacy.txt: 519) +/(.*/)?cedexis- +cedexis-*. +# /cdx.gif? (easyprivacy.txt: 518) +/(.*/)?cdx\.gif\? +# /cds-webanalytics. (easyprivacy.txt: 517) +/(.*/)?cds-webanalytics\. +cds-webanalytics.*. +# /cdn5.js? (easyprivacy.txt: 516) +/(.*/)?cdn5\.js\? +# /cdn-cgi/ping?$image (easyprivacy.txt: 515) +/(.*/)?cdn-cgi/ping\? +# /cclickTracking. (easyprivacy.txt: 514) +/(.*/)?cclickTracking\. +cclickTracking.*. +# /cbanalytics. (easyprivacy.txt: 513) +/(.*/)?cbanalytics\. +cbanalytics.*. +# /campaign_trax. (easyprivacy.txt: 512) +/(.*/)?campaign_trax\. +# /campaign_tracker. (easyprivacy.txt: 511) +/(.*/)?campaign_tracker\. +# /callbacks/stats? (easyprivacy.txt: 510) +/(.*/)?callbacks/stats\? +# /c_track.php? (easyprivacy.txt: 509) +/(.*/)?c_track\.php\? +# /c?siteID=$image,script (easyprivacy.txt: 508) +/(.*/)?c\?siteID= +# /C4ATracker. (easyprivacy.txt: 507) +/(.*/)?C4ATracker\. +C4ATracker.*. +# /c2_count.js (easyprivacy.txt: 506) +/(.*/)?c2_count\.js +# /c.gif?daid (easyprivacy.txt: 505) +/(.*/)?c\.gif\?daid +# /byside_webcare. (easyprivacy.txt: 504) +/(.*/)?byside_webcare\. +# /buzz_stats. (easyprivacy.txt: 503) +/(.*/)?buzz_stats\. +# /bundles/cm.js| (easyprivacy.txt: 502) +/(.*/)?bundles/cm\.js$ +# /BuiltRegister.aspx?upt= (easyprivacy.txt: 501) +/(.*/)?BuiltRegister\.aspx\?upt= +# /bugsnag- (easyprivacy.txt: 500) +/(.*/)?bugsnag- +bugsnag-*. +# /bugcounter.php? (easyprivacy.txt: 499) +/(.*/)?bugcounter\.php\? +# /buffer.pgif?r= (easyprivacy.txt: 498) +/(.*/)?buffer\.pgif\?r= +# /btn_tracking_pixel. (easyprivacy.txt: 497) +/(.*/)?btn_tracking_pixel\. +# /bsuite/worker.php? (easyprivacy.txt: 496) +/(.*/)?bsuite/worker\.php\? +# /bstats. (easyprivacy.txt: 495) +/(.*/)?bstats\. +bstats.*. +# /bstat.js (easyprivacy.txt: 494) +/(.*/)?bstat\.js +bstat.js*. +# /bsc_trak. (easyprivacy.txt: 493) +/(.*/)?bsc_trak\. +# /britetrack/* (easyprivacy.txt: 492) +/(.*/)?britetrack/.* +# /brightedge.js (easyprivacy.txt: 491) +/(.*/)?brightedge\.js +brightedge.js*. +# /brightcoveGoogleAnalytics. (easyprivacy.txt: 490) +/(.*/)?brightcoveGoogleAnalytics\. +brightcoveGoogleAnalytics.*. +# /brightcove/tracking/* (easyprivacy.txt: 489) +/(.*/)?brightcove/tracking/.* +# /brandAnalytics.js (easyprivacy.txt: 488) +/(.*/)?brandAnalytics\.js +brandAnalytics.js*. +# /br_imps/add_item? (easyprivacy.txt: 487) +/(.*/)?br_imps/add_item\? +# /br-trk. (easyprivacy.txt: 486) +/(.*/)?br-trk\. +br-trk.*. +# /br-trk- (easyprivacy.txt: 485) +/(.*/)?br-trk- +br-trk-*. +# /bower_components/fp/fp.js (easyprivacy.txt: 484) +/(.*/)?bower_components/fp/fp\.js +# /botd.gif? (easyprivacy.txt: 483) +/(.*/)?botd\.gif\? +# /boost_stats. (easyprivacy.txt: 482) +/(.*/)?boost_stats\. +# /boomerang.js (easyprivacy.txt: 481) +/(.*/)?boomerang\.js +boomerang.js*. +# /boomerang-minified- (easyprivacy.txt: 480) +/(.*/)?boomerang-minified- +boomerang-minified-*. +# /bn/tracker/* (easyprivacy.txt: 479) +/(.*/)?bn/tracker/.* +# /bm-bam-trk. (easyprivacy.txt: 478) +/(.*/)?bm-bam-trk\. +bm-bam-trk.*. +# /bm-analytics/* (easyprivacy.txt: 477) +/(.*/)?bm-analytics/.* +# /bm-analytics-trk.js (easyprivacy.txt: 476) +/(.*/)?bm-analytics-trk\.js +bm-analytics-trk.js*. +# /bluetracker/* (easyprivacy.txt: 475) +/(.*/)?bluetracker/.* +# /BlueKaiPixel/* (easyprivacy.txt: 474) +/(.*/)?BlueKaiPixel/.* +# /bluekaicookieinfo. (easyprivacy.txt: 473) +/(.*/)?bluekaicookieinfo\. +bluekaicookieinfo.*. +# /blueKaiAnalytics. (easyprivacy.txt: 472) +/(.*/)?blueKaiAnalytics\. +blueKaiAnalytics.*. +# /bluekai/* (easyprivacy.txt: 471) +/(.*/)?bluekai/.* +# /bluekai. (easyprivacy.txt: 470) +/(.*/)?bluekai\. +bluekai.*. +# /blogtotal_stats_ (easyprivacy.txt: 469) +/(.*/)?blogtotal_stats_ +# /blogsectiontracking. (easyprivacy.txt: 468) +/(.*/)?blogsectiontracking\. +blogsectiontracking.*. +# /blog/traffic/? (easyprivacy.txt: 467) +/(.*/)?blog/traffic/\? +# /BKVTrack.js (easyprivacy.txt: 466) +/(.*/)?BKVTrack\.js +BKVTrack.js*. +# /bizo.js (easyprivacy.txt: 465) +/(.*/)?bizo\.js +bizo.js*. +# /bitrix/spread.php? (easyprivacy.txt: 464) +/(.*/)?bitrix/spread\.php\? +# /bin/stats? (easyprivacy.txt: 463) +/(.*/)?bin/stats\? +# /bin/reff.php (easyprivacy.txt: 462) +/(.*/)?bin/reff\.php +# /bidiq. (easyprivacy.txt: 461) +/(.*/)?bidiq\. +bidiq.*. +# /bicomscore_ (easyprivacy.txt: 460) +/(.*/)?bicomscore_ +# /bicomscore. (easyprivacy.txt: 459) +/(.*/)?bicomscore\. +bicomscore.*. +# /bi.tracking/* (easyprivacy.txt: 458) +/(.*/)?bi\.tracking/.* +bi.tracking/.* +# /bh_counter.js (easyprivacy.txt: 457) +/(.*/)?bh_counter\.js +# /betamax_tracker.js (easyprivacy.txt: 456) +/(.*/)?betamax_tracker\.js +# /betamax_tracker.gif? (easyprivacy.txt: 455) +/(.*/)?betamax_tracker\.gif\? +# /BehaviourCaptureHandler. (easyprivacy.txt: 454) +/(.*/)?BehaviourCaptureHandler\. +BehaviourCaptureHandler.*. +# /beaconimg.php? (easyprivacy.txt: 453) +/(.*/)?beaconimg\.php\? +# /beacon_async. (easyprivacy.txt: 452) +/(.*/)?beacon_async\. +# /beacon? (easyprivacy.txt: 451) +/(.*/)?beacon\? +# /beacon/vtn_loader.gif? (easyprivacy.txt: 450) +/(.*/)?beacon/vtn_loader\.gif\? +# /beacon/b.ashx? (easyprivacy.txt: 449) +/(.*/)?beacon/b\.ashx\? +# /beacon.js (easyprivacy.txt: 448) +/(.*/)?beacon\.js +beacon.js*. +# /beacon.gif? (easyprivacy.txt: 447) +/(.*/)?beacon\.gif\? +# /beacon.cgi? (easyprivacy.txt: 446) +/(.*/)?beacon\.cgi\? +# /bcn?id= (easyprivacy.txt: 445) +/(.*/)?bcn\?id= +# /baynoteobserver/* (easyprivacy.txt: 444) +/(.*/)?baynoteobserver/.* +# /baynote_ (easyprivacy.txt: 443) +/(.*/)?baynote_ +# /baynote80. (easyprivacy.txt: 442) +/(.*/)?baynote80\. +baynote80.*. +# /baynote3. (easyprivacy.txt: 441) +/(.*/)?baynote3\. +baynote3.*. +# /baynote/* (easyprivacy.txt: 440) +/(.*/)?baynote/.* +# /baynote. (easyprivacy.txt: 439) +/(.*/)?baynote\. +baynote.*. +# /baynote-$script (easyprivacy.txt: 438) +/(.*/)?baynote- +baynote-*. +# /batch.gif? (easyprivacy.txt: 437) +/(.*/)?batch\.gif\? +# /basesdc.js (easyprivacy.txt: 436) +/(.*/)?basesdc\.js +basesdc.js*. +# /banners-stat. (easyprivacy.txt: 435) +/(.*/)?banners-stat\. +banners-stat.*. +# /banner-tracker. (easyprivacy.txt: 434) +/(.*/)?banner-tracker\. +banner-tracker.*. +# /backlink2. (easyprivacy.txt: 433) +/(.*/)?backlink2\. +backlink2.*. +# /backlink/* (easyprivacy.txt: 432) +/(.*/)?backlink/.* +# /backlink.php? (easyprivacy.txt: 431) +/(.*/)?backlink\.php\? +# /b2bsdc.js (easyprivacy.txt: 430) +/(.*/)?b2bsdc\.js +b2bsdc.js*. +# /b/ss/wdgdolad, (easyprivacy.txt: 429) +/(.*/)?b/ss/wdgdolad, +# /b/ss/ueglobaldev/* (easyprivacy.txt: 428) +/(.*/)?b/ss/ueglobaldev/.* +# /b/ss/*?pagename= (easyprivacy.txt: 427) +/(.*/)?b/ss/.*\?pagename= +# /b/ss/*?gn=mobile: (easyprivacy.txt: 426) +/(.*/)?b/ss/.*\?gn=mobile: +# /b/ss/*?aqb=1&pccr= (easyprivacy.txt: 425) +/(.*/)?b/ss/.*\?aqb=1&pccr= +# /b/ss/*=referrers& (easyprivacy.txt: 424) +/(.*/)?b/ss/.*=referrers& +# /b/ss/*=event36& (easyprivacy.txt: 423) +/(.*/)?b/ss/.*=event36& +# /b/ss/*/h.17--wap?c20= (easyprivacy.txt: 422) +/(.*/)?b/ss/.*/h\.17--wap\?c20= +# /b/ss/*&pagename= (easyprivacy.txt: 421) +/(.*/)?b/ss/.*&pagename= +# /b/ss/*&ndh= (easyprivacy.txt: 420) +/(.*/)?b/ss/.*&ndh= +# /b/ss/*&events= (easyprivacy.txt: 419) +/(.*/)?b/ss/.*&events= +# /b/ss/*&ce=utf-8& (easyprivacy.txt: 418) +/(.*/)?b/ss/.*&ce=utf-8& +# /b/ss/*&ce=iso-8859-1& (easyprivacy.txt: 417) +/(.*/)?b/ss/.*&ce=iso-8859-1& +# /b/ss/*&aqe= (easyprivacy.txt: 416) +/(.*/)?b/ss/.*&aqe= +# /aztrack. (easyprivacy.txt: 415) +/(.*/)?aztrack\. +aztrack.*. +# /awstats_misc_tracker (easyprivacy.txt: 414) +/(.*/)?awstats_misc_tracker +# /awstats.js (easyprivacy.txt: 413) +/(.*/)?awstats\.js +awstats.js*. +# /awesc.php? (easyprivacy.txt: 412) +/(.*/)?awesc\.php\? +# /awAnalytics. (easyprivacy.txt: 411) +/(.*/)?awAnalytics\. +awAnalytics.*. +# /aw-tracker. (easyprivacy.txt: 410) +/(.*/)?aw-tracker\. +aw-tracker.*. +# /avtstats. (easyprivacy.txt: 409) +/(.*/)?avtstats\. +avtstats.*. +# /avmws_*.js (easyprivacy.txt: 408) +/(.*/)?avmws_.*\.js +# /avantlink/*$third-party (easyprivacy.txt: 407) +/(.*/)?avantlink/.* +# /avant_sfpc_ (easyprivacy.txt: 406) +/(.*/)?avant_sfpc_ +# /AutoTracker.js (easyprivacy.txt: 405) +/(.*/)?AutoTracker\.js +AutoTracker.js*. +# /autotag. (easyprivacy.txt: 404) +/(.*/)?autotag\. +autotag.*. +# /audsci.js (easyprivacy.txt: 403) +/(.*/)?audsci\.js +audsci.js*. +# /audienceScience. (easyprivacy.txt: 402) +/(.*/)?audienceScience\. +audienceScience.*. +# /audience_science_ (easyprivacy.txt: 401) +/(.*/)?audience_science_ +# /audience_science. (easyprivacy.txt: 400) +/(.*/)?audience_science\. +# /audience_science- (easyprivacy.txt: 399) +/(.*/)?audience_science- +# /audience-science. (easyprivacy.txt: 398) +/(.*/)?audience-science\. +audience-science.*. +# /audience-meter. (easyprivacy.txt: 397) +/(.*/)?audience-meter\. +audience-meter.*. +# /atrk.js (easyprivacy.txt: 396) +/(.*/)?atrk\.js +atrk.js*. +# /atrk.gif? (easyprivacy.txt: 395) +/(.*/)?atrk\.gif\? +# /atlas_track. (easyprivacy.txt: 394) +/(.*/)?atlas_track\. +# /atatus.js (easyprivacy.txt: 393) +/(.*/)?atatus\.js +atatus.js*. +# /atapixel.js (easyprivacy.txt: 392) +/(.*/)?atapixel\.js +atapixel.js*. +# /asyncggtracking. (easyprivacy.txt: 391) +/(.*/)?asyncggtracking\. +asyncggtracking.*. +# /astracker/* (easyprivacy.txt: 390) +/(.*/)?astracker/.* +# /astracker. (easyprivacy.txt: 389) +/(.*/)?astracker\. +astracker.*. +# /astrack.js (easyprivacy.txt: 388) +/(.*/)?astrack\.js +astrack.js*. +# /AssyncCSStats.aspx (easyprivacy.txt: 387) +/(.*/)?AssyncCSStats\.aspx +AssyncCSStats.aspx*. +# /assets/tracking- (easyprivacy.txt: 386) +/(.*/)?assets/tracking- +# /aspstats/index.asp? (easyprivacy.txt: 385) +/(.*/)?aspstats/index\.asp\? +# /aspenanalytics. (easyprivacy.txt: 384) +/(.*/)?aspenanalytics\. +aspenanalytics.*. +# /aslog.php? (easyprivacy.txt: 383) +/(.*/)?aslog\.php\? +# /asknet_tracking. (easyprivacy.txt: 382) +/(.*/)?asknet_tracking\. +# /ArticleViewTracking/* (easyprivacy.txt: 381) +/(.*/)?ArticleViewTracking/.* +# /ArticleLog.aspx? (easyprivacy.txt: 380) +/(.*/)?ArticleLog\.aspx\? +# /article_hit.php? (easyprivacy.txt: 379) +/(.*/)?article_hit\.php\? +# /article_counter.php? (easyprivacy.txt: 378) +/(.*/)?article_counter\.php\? +# /argtk.min. (easyprivacy.txt: 377) +/(.*/)?argtk\.min\. +argtk.min.*. +# /AppMeasurement.js (easyprivacy.txt: 376) +/(.*/)?AppMeasurement\.js +AppMeasurement.js*. +# /appendOmnitureTracking. (easyprivacy.txt: 375) +/(.*/)?appendOmnitureTracking\. +appendOmnitureTracking.*. +# /apixel? (easyprivacy.txt: 374) +/(.*/)?apixel\? +# /apitracking. (easyprivacy.txt: 373) +/(.*/)?apitracking\. +apitracking.*. +# /apilog? (easyprivacy.txt: 372) +/(.*/)?apilog\? +# /api/x.gif? (easyprivacy.txt: 371) +/(.*/)?api/x\.gif\? +# /api/analytics/* (easyprivacy.txt: 370) +/(.*/)?api/analytics/.* +# /api/0/stats (easyprivacy.txt: 369) +/(.*/)?api/0/stats +# /anycent_tracker_ (easyprivacy.txt: 368) +/(.*/)?anycent_tracker_ +# /angularlytics. (easyprivacy.txt: 367) +/(.*/)?angularlytics\. +angularlytics.*. +# /angular-tag. (easyprivacy.txt: 366) +/(.*/)?angular-tag\. +angular-tag.*. +# /ancAdTrack.js (easyprivacy.txt: 365) +/(.*/)?ancAdTrack\.js +ancAdTrack.js*. +# /anapixel. (easyprivacy.txt: 364) +/(.*/)?anapixel\. +anapixel.*. +# /anametrix_tag.js (easyprivacy.txt: 363) +/(.*/)?anametrix_tag\.js +# /anametrix/* (easyprivacy.txt: 362) +/(.*/)?anametrix/.* +# /anametrix.js (easyprivacy.txt: 361) +/(.*/)?anametrix\.js +anametrix.js*. +# /analyzer2. (easyprivacy.txt: 360) +/(.*/)?analyzer2\. +analyzer2.*. +# /analyzer.gif? (easyprivacy.txt: 359) +/(.*/)?analyzer\.gif\? +# /analyticsUnitaire? (easyprivacy.txt: 358) +/(.*/)?analyticsUnitaire\? +# /analyticstrain- (easyprivacy.txt: 357) +/(.*/)?analyticstrain- +analyticstrain-*. +# /analyticstracking_ (easyprivacy.txt: 356) +/(.*/)?analyticstracking_ +# /analyticstracking. (easyprivacy.txt: 355) +/(.*/)?analyticstracking\. +analyticstracking.*. +# /analyticstrack. (easyprivacy.txt: 354) +/(.*/)?analyticstrack\. +analyticstrack.*. +# /analyticstick. (easyprivacy.txt: 353) +/(.*/)?analyticstick\. +analyticstick.*. +# /analyticsscript_ (easyprivacy.txt: 352) +/(.*/)?analyticsscript_ +# /AnalyticsOnDemand/* (easyprivacy.txt: 351) +/(.*/)?AnalyticsOnDemand/.* +# /analyticsjs. (easyprivacy.txt: 350) +/(.*/)?analyticsjs\. +analyticsjs.*. +# /analyticsid. (easyprivacy.txt: 349) +/(.*/)?analyticsid\. +analyticsid.*. +# /analyticsfeed.ashx? (easyprivacy.txt: 348) +/(.*/)?analyticsfeed\.ashx\? +# /analytics_tracker (easyprivacy.txt: 347) +/(.*/)?analytics_tracker +# /analytics_tag. (easyprivacy.txt: 346) +/(.*/)?analytics_tag\. +# /analytics_prod. (easyprivacy.txt: 345) +/(.*/)?analytics_prod\. +# /analytics_ping. (easyprivacy.txt: 344) +/(.*/)?analytics_ping\. +# /analytics_js/* (easyprivacy.txt: 343) +/(.*/)?analytics_js/.* +# /analytics_frame. (easyprivacy.txt: 342) +/(.*/)?analytics_frame\. +# /analytics_embed. (easyprivacy.txt: 341) +/(.*/)?analytics_embed\. +# /analytics?http_referer (easyprivacy.txt: 340) +/(.*/)?analytics\?http_referer +# /Analytics/Visitor. (easyprivacy.txt: 339) +/(.*/)?Analytics/Visitor\. +# /analytics/tracking/* (easyprivacy.txt: 338) +/(.*/)?analytics/tracking/.* +# /Analytics/Tracking. (easyprivacy.txt: 337) +/(.*/)?Analytics/Tracking\. +# /analytics/trackers? (easyprivacy.txt: 336) +/(.*/)?analytics/trackers\? +# /analytics/tracker. (easyprivacy.txt: 335) +/(.*/)?analytics/tracker\. +# /analytics/track? (easyprivacy.txt: 334) +/(.*/)?analytics/track\? +# /analytics/track- (easyprivacy.txt: 333) +/(.*/)?analytics/track- +# /analytics/socialTracking.js (easyprivacy.txt: 332) +/(.*/)?analytics/socialTracking\.js +# /analytics/report/* (easyprivacy.txt: 331) +/(.*/)?analytics/report/.* +# /analytics/mbox.js (easyprivacy.txt: 330) +/(.*/)?analytics/mbox\.js +# /analytics/js/* (easyprivacy.txt: 329) +/(.*/)?analytics/js/.* +# /analytics/hit (easyprivacy.txt: 328) +/(.*/)?analytics/hit +# /analytics/gw. (easyprivacy.txt: 327) +/(.*/)?analytics/gw\. +# /Analytics/Google. (easyprivacy.txt: 326) +/(.*/)?Analytics/Google\. +# /analytics/ga? (easyprivacy.txt: 325) +/(.*/)?analytics/ga\? +# /analytics/ga/* (easyprivacy.txt: 324) +/(.*/)?analytics/ga/.* +# /analytics/eventTrack (easyprivacy.txt: 323) +/(.*/)?analytics/eventTrack +# /analytics/cms/* (easyprivacy.txt: 322) +/(.*/)?analytics/cms/.* +# /analytics.swf? (easyprivacy.txt: 321) +/(.*/)?analytics\.swf\? +# /analytics.php? (easyprivacy.txt: 320) +/(.*/)?analytics\.php\? +# /analytics.php. (easyprivacy.txt: 319) +/(.*/)?analytics\.php\. +analytics.php.*. +# /analytics.min.js (easyprivacy.txt: 318) +/(.*/)?analytics\.min\.js +analytics.min.js*. +# /analytics.html?action= (easyprivacy.txt: 317) +/(.*/)?analytics\.html\?action= +# /analytics.google.js (easyprivacy.txt: 316) +/(.*/)?analytics\.google\.js +analytics.google.js*. +# /analytics.gif? (easyprivacy.txt: 315) +/(.*/)?analytics\.gif\? +# /analytics.do (easyprivacy.txt: 314) +/(.*/)?analytics\.do +analytics.do*. +# /analytics.compressed.js (easyprivacy.txt: 313) +/(.*/)?analytics\.compressed\.js +analytics.compressed.js*. +# /analytics.bundled.js (easyprivacy.txt: 312) +/(.*/)?analytics\.bundled\.js +analytics.bundled.js*. +# /Analytics.aspx? (easyprivacy.txt: 311) +/(.*/)?Analytics\.aspx\? +# /analytics.ashx (easyprivacy.txt: 310) +/(.*/)?analytics\.ashx +analytics.ashx*. +# /analytics-tag. (easyprivacy.txt: 309) +/(.*/)?analytics-tag\. +analytics-tag.*. +# /analytics-js. (easyprivacy.txt: 308) +/(.*/)?analytics-js\. +analytics-js.*. +# /analytics-beacon- (easyprivacy.txt: 307) +/(.*/)?analytics-beacon- +analytics-beacon-*. +# /analyticReporting. (easyprivacy.txt: 305) +/(.*/)?analyticReporting\. +analyticReporting.*. +# /analytic_data_ (easyprivacy.txt: 304) +/(.*/)?analytic_data_ +# /analysis-logger/* (easyprivacy.txt: 303) +/(.*/)?analysis-logger/.* +# /analyse.js (easyprivacy.txt: 302) +/(.*/)?analyse\.js +analyse.js*. +# /analiz.php3? (easyprivacy.txt: 301) +/(.*/)?analiz\.php3\? +# /amplitude-*.js$script (easyprivacy.txt: 300) +/(.*/)?amplitude-.*\.js +amplitude-*./.*\.js +amplitude-*.js*. +# /amdhfp/t.do?id$image (easyprivacy.txt: 299) +/(.*/)?amdhfp/t\.do\?id +# /amdhfp/a.do?param$image (easyprivacy.txt: 298) +/(.*/)?amdhfp/a\.do\?param +# /amazon-affiliate- (easyprivacy.txt: 297) +/(.*/)?amazon-affiliate- +amazon-affiliate-*. +# /alvenda_remarketing_ (easyprivacy.txt: 296) +/(.*/)?alvenda_remarketing_ +# /alllinksclicktracker.js (easyprivacy.txt: 295) +/(.*/)?alllinksclicktracker\.js +alllinksclicktracker.js*. +# /AkamaiTrackingPixel. (easyprivacy.txt: 294) +/(.*/)?AkamaiTrackingPixel\. +AkamaiTrackingPixel.*. +# /AkamaiAnalytics. (easyprivacy.txt: 293) +/(.*/)?AkamaiAnalytics\. +AkamaiAnalytics.*. +# /akamai_analytics_ (easyprivacy.txt: 292) +/(.*/)?akamai_analytics_ +# /akamai/pixy.gif (easyprivacy.txt: 291) +/(.*/)?akamai/pixy\.gif +# /ajaxservice.svc/registersession?session_id= (easyprivacy.txt: 290) +/(.*/)?ajaxservice\.svc/registersession\?session_id= +ajaxservice.svc/registersession\?session_id= +# /ajaxlog? (easyprivacy.txt: 289) +/(.*/)?ajaxlog\? +# /ajaxlog.txt? (easyprivacy.txt: 288) +/(.*/)?ajaxlog\.txt\? +# /ajaxClicktrack. (easyprivacy.txt: 287) +/(.*/)?ajaxClicktrack\. +ajaxClicktrack.*. +# /ajax_video_counter.php? (easyprivacy.txt: 286) +/(.*/)?ajax_video_counter\.php\? +# /ajax_store_analytics? (easyprivacy.txt: 285) +/(.*/)?ajax_store_analytics\? +# /ajax/optimizely- (easyprivacy.txt: 284) +/(.*/)?ajax/optimizely- +# /ajax/log? (easyprivacy.txt: 283) +/(.*/)?ajax/log\? +# /ajax/heatmap- (easyprivacy.txt: 282) +/(.*/)?ajax/heatmap- +# /ajax-hits-counter/* (easyprivacy.txt: 281) +/(.*/)?ajax-hits-counter/.* +# /agof/iam- (easyprivacy.txt: 280) +/(.*/)?agof/iam- +# /aggbug.aspx? (easyprivacy.txt: 279) +/(.*/)?aggbug\.aspx\? +# /aftrackingplugin.swf (easyprivacy.txt: 278) +/(.*/)?aftrackingplugin\.swf +aftrackingplugin.swf*. +# /aftrack. (easyprivacy.txt: 277) +/(.*/)?aftrack\. +aftrack.*. +# /afrpt.gif? (easyprivacy.txt: 276) +/(.*/)?afrpt\.gif\? +# /aflog.gif? (easyprivacy.txt: 275) +/(.*/)?aflog\.gif\? +# /afftracking. (easyprivacy.txt: 274) +/(.*/)?afftracking\. +afftracking.*. +# /afftrack. (easyprivacy.txt: 273) +/(.*/)?afftrack\. +afftrack.*. +# /affl.cgi? (easyprivacy.txt: 272) +/(.*/)?affl\.cgi\? +# /AffinoAudit/* (easyprivacy.txt: 271) +/(.*/)?AffinoAudit/.* +# /affilinetRetargeting. (easyprivacy.txt: 270) +/(.*/)?affilinetRetargeting\. +affilinetRetargeting.*. +# /affiliatetracking/* (easyprivacy.txt: 269) +/(.*/)?affiliatetracking/.* +# /affiliateTracking. (easyprivacy.txt: 268) +/(.*/)?affiliateTracking\. +affiliateTracking.*. +# /AffiliateClick. (easyprivacy.txt: 267) +/(.*/)?AffiliateClick\. +AffiliateClick.*. +# /affiliate/track? (easyprivacy.txt: 266) +/(.*/)?affiliate/track\? +# /affiliate.1800flowers. (easyprivacy.txt: 265) +/(.*/)?affiliate\.1800flowers\. +affiliate.1800flowers.*. +# /affiliate-tracker. (easyprivacy.txt: 264) +/(.*/)?affiliate-tracker\. +affiliate-tracker.*. +# /affiliate-track. (easyprivacy.txt: 263) +/(.*/)?affiliate-track\. +affiliate-track.*. +# /aff_land?referrer (easyprivacy.txt: 262) +/(.*/)?aff_land\?referrer +# /aegis_tracking. (easyprivacy.txt: 261) +/(.*/)?aegis_tracking\. +# /adx_remote. (easyprivacy.txt: 260) +/(.*/)?adx_remote\. +# /adwords-conversion-tracking. (easyprivacy.txt: 259) +/(.*/)?adwords-conversion-tracking\. +adwords-conversion-tracking.*. +# /advstats/* (easyprivacy.txt: 258) +/(.*/)?advstats/.* +# /adviewtrack. (easyprivacy.txt: 257) +/(.*/)?adviewtrack\. +adviewtrack.*. +# /adv/tracking. (easyprivacy.txt: 256) +/(.*/)?adv/tracking\. +# /adtrk/* (easyprivacy.txt: 255) +/(.*/)?adtrk/.* +# /adstrack. (easyprivacy.txt: 254) +/(.*/)?adstrack\. +adstrack.*. +# /adstats. (easyprivacy.txt: 253) +/(.*/)?adstats\. +adstats.*. +# /adstat. (easyprivacy.txt: 252) +/(.*/)?adstat\. +adstat.*. +# /adsct? (easyprivacy.txt: 251) +/(.*/)?adsct\? +# /ads_tracker. (easyprivacy.txt: 250) +/(.*/)?ads_tracker\. +# /ads/track/* (easyprivacy.txt: 249) +/(.*/)?ads/track/.* +# /adrum. (easyprivacy.txt: 248) +/(.*/)?adrum\. +adrum.*. +# /adrum- (easyprivacy.txt: 247) +/(.*/)?adrum- +adrum-*. +# /adpixel. (easyprivacy.txt: 246) +/(.*/)?adpixel\. +adpixel.*. +# /AdobeCustomVideoMeasurement.swf (easyprivacy.txt: 245) +/(.*/)?AdobeCustomVideoMeasurement\.swf +AdobeCustomVideoMeasurement.swf*. +# /admonitoring.js (easyprivacy.txt: 244) +/(.*/)?admonitoring\.js +admonitoring.js*. +# /adm_tracking.js (easyprivacy.txt: 243) +/(.*/)?adm_tracking\.js +# /adloggertracker. (easyprivacy.txt: 242) +/(.*/)?adloggertracker\. +adloggertracker.*. +# /adlogger_ (easyprivacy.txt: 241) +/(.*/)?adlogger_ +# /adlogger. (easyprivacy.txt: 240) +/(.*/)?adlogger\. +adlogger.*. +# /adinteraction/* (easyprivacy.txt: 239) +/(.*/)?adinteraction/.* +# /adimppixel/* (easyprivacy.txt: 238) +/(.*/)?adimppixel/.* +# /addTrackingScripts. (easyprivacy.txt: 237) +/(.*/)?addTrackingScripts\. +addTrackingScripts.*. +# /addrtlog/* (easyprivacy.txt: 236) +/(.*/)?addrtlog/.* +# /addpageview/* (easyprivacy.txt: 235) +/(.*/)?addpageview/.* +# /addlogdetails. (easyprivacy.txt: 234) +/(.*/)?addlogdetails\. +addlogdetails.*. +# /addlog/? (easyprivacy.txt: 233) +/(.*/)?addlog/\? +# /addLinkerEvents.js (easyprivacy.txt: 232) +/(.*/)?addLinkerEvents\.js +addLinkerEvents.js*. +# /addLinkerEvents-std. (easyprivacy.txt: 231) +/(.*/)?addLinkerEvents-std\. +addLinkerEvents-std.*. +# /addLinkerEvents-ga. (easyprivacy.txt: 230) +/(.*/)?addLinkerEvents-ga\. +addLinkerEvents-ga.*. +# /addLinker.js (easyprivacy.txt: 229) +/(.*/)?addLinker\.js +addLinker.js*. +# /additional.php?res_width=$script (easyprivacy.txt: 228) +/(.*/)?additional\.php\?res_width= +# /add_stats (easyprivacy.txt: 227) +/(.*/)?add_stats +# /add_page_view? (easyprivacy.txt: 226) +/(.*/)?add_page_view\? +# /AdCount/* (easyprivacy.txt: 225) +/(.*/)?AdCount/.* +# /adb/track.php? (easyprivacy.txt: 224) +/(.*/)?adb/track\.php\? +# /adam.js (easyprivacy.txt: 223) +/(.*/)?adam\.js +adam.js*. +# /ad_1_trans. (easyprivacy.txt: 222) +/(.*/)?ad_1_trans\. +# /ad/tr.gif? (easyprivacy.txt: 221) +/(.*/)?ad/tr\.gif\? +# /activity.gif? (easyprivacy.txt: 220) +/(.*/)?activity\.gif\? +# /activity-track/? (easyprivacy.txt: 219) +/(.*/)?activity-track/\? +# /activetrackphp.php? (easyprivacy.txt: 218) +/(.*/)?activetrackphp\.php\? +# /act_pagetrack. (easyprivacy.txt: 217) +/(.*/)?act_pagetrack\. +# /acounter.php? (easyprivacy.txt: 216) +/(.*/)?acounter\.php\? +# /acfp.js (easyprivacy.txt: 215) +/(.*/)?acfp\.js +acfp.js*. +# /acecounter_ (easyprivacy.txt: 214) +/(.*/)?acecounter_ +# /acecounter/* (easyprivacy.txt: 213) +/(.*/)?acecounter/.* +# /acclog.cgi? (easyprivacy.txt: 212) +/(.*/)?acclog\.cgi\? +# /AccessTrackingLogServlet? (easyprivacy.txt: 211) +/(.*/)?AccessTrackingLogServlet\? +# /AccessCounter/* (easyprivacy.txt: 210) +/(.*/)?AccessCounter/.* +# /acbeacon2. (easyprivacy.txt: 209) +/(.*/)?acbeacon2\. +acbeacon2.*. +# /ablank.gif? (easyprivacy.txt: 208) +/(.*/)?ablank\.gif\? +# /aa.php?anuid= (easyprivacy.txt: 207) +/(.*/)?aa\.php\?anuid= +# /a.logrequest.yolx? (easyprivacy.txt: 206) +/(.*/)?a\.logrequest\.yolx\? +# /_tracking/* (easyprivacy.txt: 205) +/(.*/)?_tracking/.* +# /_topic_stats? (easyprivacy.txt: 204) +/(.*/)?_topic_stats\? +# /_owa.gif? (easyprivacy.txt: 203) +/(.*/)?_owa\.gif\? +# /_lib/ga.js (easyprivacy.txt: 202) +/(.*/)?_lib/ga\.js +# /_dts.gif? (easyprivacy.txt: 201) +/(.*/)?_dts\.gif\? +# /__wsm.gif (easyprivacy.txt: 200) +/(.*/)?__wsm\.gif +# /__varnish_geoip (easyprivacy.txt: 199) +/(.*/)?__varnish_geoip +# /__utm.js (easyprivacy.txt: 198) +/(.*/)?__utm\.js +# /__utm.gif (easyprivacy.txt: 197) +/(.*/)?__utm\.gif +# /__tm3k.gif? (easyprivacy.txt: 196) +/(.*/)?__tm3k\.gif\? +# /__sttm.gif? (easyprivacy.txt: 195) +/(.*/)?__sttm\.gif\? +# /__ssobj/sync?$image (easyprivacy.txt: 194) +/(.*/)?__ssobj/sync\? +# /__ssobj/core.js (easyprivacy.txt: 193) +/(.*/)?__ssobj/core\.js +# /?record&key= (easyprivacy.txt: 192) +/(.*/)?\?record&key= +# /?livehit= (easyprivacy.txt: 191) +/(.*/)?\?livehit= +# /?dm=*&blogid=$script (easyprivacy.txt: 190) +/(.*/)?\?dm=.*&blogid= +# /?com=visit*=record& (easyprivacy.txt: 189) +/(.*/)?\?com=visit.*=record& +# /1x1tracker. (easyprivacy.txt: 188) +/(.*/)?1x1tracker\. +1x1tracker.*. +# /1x1p.gif? (easyprivacy.txt: 187) +/(.*/)?1x1p\.gif\? +# /1x1_imp.gif? (easyprivacy.txt: 186) +/(.*/)?1x1_imp\.gif\? +# /1x1_akamai.gif (easyprivacy.txt: 185) +/(.*/)?1x1_akamai\.gif +# /1x1.gif?utm (easyprivacy.txt: 184) +/(.*/)?1x1\.gif\?utm +# /1x1.gif?tracking (easyprivacy.txt: 183) +/(.*/)?1x1\.gif\?tracking +# /0pixel.php? (easyprivacy.txt: 182) +/(.*/)?0pixel\.php\? +# //feedproxy.*/~r/*$image (easyprivacy.txt: 181) +feedproxy.*./(.*/)?~r/.* +# /!crd_prm!. (easyprivacy.txt: 180) +/(.*/)?!crd_prm!\. +# .webstats. (easyprivacy.txt: 179) +/.*\.webstats\. +.*.webstats.*. +# .webmetrics.js (easyprivacy.txt: 178) +/.*\.webmetrics\.js +.*.webmetrics.js*. +# .vsTracking. (easyprivacy.txt: 177) +/.*\.vsTracking\. +.*.vsTracking.*. +# .vn/0.gif? (easyprivacy.txt: 176) +/.*\.vn/0\.gif\? +.*.vn/0\.gif\? +# .usertracking_script.js (easyprivacy.txt: 175) +/.*\.usertracking_script\.js +# .uk/traffic/? (easyprivacy.txt: 174) +/.*\.uk/traffic/\? +.*.uk/traffic/\? +# .uk/o.gif? (easyprivacy.txt: 173) +/.*\.uk/o\.gif\? +.*.uk/o\.gif\? +# .tv/t.png? (easyprivacy.txt: 172) +/.*\.tv/t\.png\? +.*.tv/t\.png\? +# .tv/log?event (easyprivacy.txt: 171) +/.*\.tv/log\?event +.*.tv/log\?event +# .trackUserAction& (easyprivacy.txt: 170) +/.*\.trackUserAction& +# .tracking.js?dpv= (easyprivacy.txt: 169) +/.*\.tracking\.js\?dpv= +# .trackArticleAction& (easyprivacy.txt: 168) +/.*\.trackArticleAction& +# .track_Visit? (easyprivacy.txt: 167) +/.*\.track_Visit\? +# .social_tracking. (easyprivacy.txt: 166) +/.*\.social_tracking\. +# .skimlinks.js (easyprivacy.txt: 165) +/.*\.skimlinks\.js +.*.skimlinks.js*. +# .sitetracking. (easyprivacy.txt: 164) +/.*\.sitetracking\. +.*.sitetracking.*. +# .siteclarity. (easyprivacy.txt: 163) +/.*\.siteclarity\. +.*.siteclarity.*. +# .sitecatalyst.js (easyprivacy.txt: 162) +/.*\.sitecatalyst\.js +.*.sitecatalyst.js*. +# .sharecounter.$third-party (easyprivacy.txt: 161) +/.*\.sharecounter\. +.*.sharecounter.*. +# .sg/t.gif? (easyprivacy.txt: 160) +/.*\.sg/t\.gif\? +.*.sg/t\.gif\? +# .pt/t.gif? (easyprivacy.txt: 159) +/.*\.pt/t\.gif\? +.*.pt/t\.gif\? +# .pt/n.gif? (easyprivacy.txt: 158) +/.*\.pt/n\.gif\? +.*.pt/n\.gif\? +# .PixelNedstatStatistic/ (easyprivacy.txt: 157) +/.*\.PixelNedstatStatistic/ +.*.PixelNedstatStatistic +# .php?refcode= (easyprivacy.txt: 156) +/.*\.php\?refcode= +# .php?logType= (easyprivacy.txt: 155) +/.*\.php\?logType= +# .php?logRefer= (easyprivacy.txt: 154) +/.*\.php\?logRefer= +# .pageVisitCounter_ (easyprivacy.txt: 153) +/.*\.pageVisitCounter_ +# .PageHitServlet? (easyprivacy.txt: 152) +/.*\.PageHitServlet\? +# .org/js/ga- (easyprivacy.txt: 151) +/.*\.org/js/ga- +.*.org/js/ga- +# .org/?js| (easyprivacy.txt: 150) +/.*\.org/\?js$ +.*.org/\?js$ +# .nz/t.gif? (easyprivacy.txt: 149) +/.*\.nz/t\.gif\? +.*.nz/t\.gif\? +# .ntpagetag. (easyprivacy.txt: 148) +/.*\.ntpagetag\. +.*.ntpagetag.*. +# .net/vtrack| (easyprivacy.txt: 147) +/.*\.net/vtrack$ +.*.net/vtrack$ +# .net/trck/ (easyprivacy.txt: 146) +/.*\.net/trck/ +.*.net/trck/ +# .net/t.gif? (easyprivacy.txt: 145) +/.*\.net/t\.gif\? +.*.net/t\.gif\? +# .net/px.js? (easyprivacy.txt: 144) +/.*\.net/px\.js\? +.*.net/px\.js\? +# .net/ping.php? (easyprivacy.txt: 143) +/.*\.net/ping\.php\? +.*.net/ping\.php\? +# .net/p.gif? (easyprivacy.txt: 142) +/.*\.net/p\.gif\? +.*.net/p\.gif\? +# .net/l.gif? (easyprivacy.txt: 141) +/.*\.net/l\.gif\? +.*.net/l\.gif\? +# .net/HG?hc=&hb= (easyprivacy.txt: 140) +/.*\.net/HG\?hc=&hb= +.*.net/HG\?hc=&hb= +# .net/c.gif? (easyprivacy.txt: 139) +/.*\.net/c\.gif\? +.*.net/c\.gif\? +# .net/1x1.gif? (easyprivacy.txt: 138) +/.*\.net/1x1\.gif\? +.*.net/1x1\.gif\? +# .net/0.gif? (easyprivacy.txt: 137) +/.*\.net/0\.gif\? +.*.net/0\.gif\? +# .me/geoip/ (easyprivacy.txt: 136) +/.*\.me/geoip/ +.*.me/geoip/ +# .jsp/?Log= (easyprivacy.txt: 135) +/.*\.jsp/\?Log= +.*.jsp/\?Log= +# .in/c.gif? (easyprivacy.txt: 134) +/.*\.in/c\.gif\? +.*.in/c\.gif\? +# .html?wpl= (easyprivacy.txt: 133) +/.*\.html\?wpl= +# .gov/stat? (easyprivacy.txt: 132) +/.*\.gov/stat\? +.*.gov/stat\? +# .GoogleAnalytics/ (easyprivacy.txt: 131) +/.*\.GoogleAnalytics/ +.*.GoogleAnalytics +# .googleanalytics.js (easyprivacy.txt: 130) +/.*\.googleanalytics\.js +.*.googleanalytics.js*. +# .gif?Log=$~xmlhttprequest (easyprivacy.txt: 129) +/.*\.gif\?Log= +# .gif?ad= (easyprivacy.txt: 128) +/.*\.gif\?ad= +# .gatracking.js (easyprivacy.txt: 127) +/.*\.gatracking\.js +.*.gatracking.js*. +# .gatracker. (easyprivacy.txt: 126) +/.*\.gatracker\. +.*.gatracker.*. +# .fr/z.gif? (easyprivacy.txt: 125) +/.*\.fr/z\.gif\? +.*.fr/z\.gif\? +# .eloqua.js (easyprivacy.txt: 124) +/.*\.eloqua\.js +.*.eloqua.js*. +# .do_tracking& (easyprivacy.txt: 123) +/.*\.do_tracking& +# .de/l.gif? (easyprivacy.txt: 122) +/.*\.de/l\.gif\? +.*.de/l\.gif\? +# .core.tracking-min- (easyprivacy.txt: 121) +/.*\.core\.tracking-min- +.*.core.tracking-min-*. +# .com/z.gif? (easyprivacy.txt: 120) +/.*\.com/z\.gif\? +.*.com/z\.gif\? +# .com/x0.gif? (easyprivacy.txt: 119) +/.*\.com/x0\.gif\? +.*.com/x0\.gif\? +# .com/x.gif? (easyprivacy.txt: 118) +/.*\.com/x\.gif\? +.*.com/x\.gif\? +# .com/www.gif? (easyprivacy.txt: 117) +/.*\.com/www\.gif\? +.*.com/www\.gif\? +# .com/w.gif? (easyprivacy.txt: 116) +/.*\.com/w\.gif\? +.*.com/w\.gif\? +# .com/vtrack| (easyprivacy.txt: 115) +/.*\.com/vtrack$ +.*.com/vtrack$ +# .com/vanity/? (easyprivacy.txt: 114) +/.*\.com/vanity/\? +.*.com/vanity/\? +# .com/v.gif? (easyprivacy.txt: 113) +/.*\.com/v\.gif\? +.*.com/v\.gif\? +# .com/u.gif? (easyprivacy.txt: 112) +/.*\.com/u\.gif\? +.*.com/u\.gif\? +# .com/traffic/?t=*&cb= (easyprivacy.txt: 111) +/.*\.com/traffic/\?t=.*&cb= +.*.com/traffic/\?t=.*&cb= +# .com/tracking? (easyprivacy.txt: 110) +/.*\.com/tracking\? +.*.com/tracking\? +# .com/tracker.jsp (easyprivacy.txt: 109) +/.*\.com/tracker\.jsp +.*.com/tracker\.jsp +# .com/track?$~object (easyprivacy.txt: 108) +/.*\.com/track\? +.*.com/track\? +# .com/tr.gif? (easyprivacy.txt: 107) +/.*\.com/tr\.gif\? +.*.com/tr\.gif\? +# .com/tp.php? (easyprivacy.txt: 106) +/.*\.com/tp\.php\? +.*.com/tp\.php\? +# .com/t.gif? (easyprivacy.txt: 105) +/.*\.com/t\.gif\? +.*.com/t\.gif\? +# .com/stats.aspx? (easyprivacy.txt: 104) +/.*\.com/stats\.aspx\? +.*.com/stats\.aspx\? +# .com/stats.ashx? (easyprivacy.txt: 103) +/.*\.com/stats\.ashx\? +.*.com/stats\.ashx\? +# .com/ss/*sessionId= (easyprivacy.txt: 102) +/.*\.com/ss/.*sessionId= +.*.com/ss/.*sessionId= +# .com/s/at?site (easyprivacy.txt: 101) +/.*\.com/s/at\?site +.*.com/s/at\?site +# .com/s.gif? (easyprivacy.txt: 100) +/.*\.com/s\.gif\? +.*.com/s\.gif\? +# .com/r.gif? (easyprivacy.txt: 99) +/.*\.com/r\.gif\? +.*.com/r\.gif\? +# .com/px.js? (easyprivacy.txt: 98) +/.*\.com/px\.js\? +.*.com/px\.js\? +# .com/pvlog? (easyprivacy.txt: 97) +/.*\.com/pvlog\? +.*.com/pvlog\? +# .com/pv.gif? (easyprivacy.txt: 96) +/.*\.com/pv\.gif\? +.*.com/pv\.gif\? +# .com/pagelogger/ (easyprivacy.txt: 95) +/.*\.com/pagelogger/ +.*.com/pagelogger/ +# .com/p.gif? (easyprivacy.txt: 94) +/.*\.com/p\.gif\? +.*.com/p\.gif\? +# .com/mm.gif? (easyprivacy.txt: 93) +/.*\.com/mm\.gif\? +.*.com/mm\.gif\? +# .com/log?type (easyprivacy.txt: 92) +/.*\.com/log\?type +.*.com/log\?type +# .com/log?srvc (easyprivacy.txt: 91) +/.*\.com/log\?srvc +.*.com/log\?srvc +# .com/log?event (easyprivacy.txt: 90) +/.*\.com/log\?event +.*.com/log\?event +# .com/log/? (easyprivacy.txt: 89) +/.*\.com/log/\? +.*.com/log/\? +# .com/js/ga.js (easyprivacy.txt: 88) +/.*\.com/js/ga\.js +.*.com/js/ga\.js +# .com/js/ga-*.js (easyprivacy.txt: 87) +/.*\.com/js/ga-.*\.js +.*.com/js/ga-.*\.js +# .com/i.gif? (easyprivacy.txt: 86) +/.*\.com/i\.gif\? +.*.com/i\.gif\? +# .com/hitlog? (easyprivacy.txt: 85) +/.*\.com/hitlog\? +.*.com/hitlog\? +# .com/HG? (easyprivacy.txt: 84) +/.*\.com/HG\? +.*.com/HG\? +# .com/geo_ip (easyprivacy.txt: 83) +/.*\.com/geo_ip +.*.com/geo_ip +# .com/ga.js? (easyprivacy.txt: 82) +/.*\.com/ga\.js\? +.*.com/ga\.js\? +# .com/ga.js; (easyprivacy.txt: 81) +/.*\.com/ga\.js; +.*.com/ga\.js; +# .com/ga-*.js (easyprivacy.txt: 80) +/.*\.com/ga-.*\.js +.*.com/ga-.*\.js +# .com/g.gif? (easyprivacy.txt: 79) +/.*\.com/g\.gif\? +.*.com/g\.gif\? +# .com/f.gif? (easyprivacy.txt: 78) +/.*\.com/f\.gif\? +.*.com/f\.gif\? +# .com/elt.gif? (easyprivacy.txt: 77) +/.*\.com/elt\.gif\? +.*.com/elt\.gif\? +# .com/e.gif? (easyprivacy.txt: 76) +/.*\.com/e\.gif\? +.*.com/e\.gif\? +# .com/dc.gif? (easyprivacy.txt: 75) +/.*\.com/dc\.gif\? +.*.com/dc\.gif\? +# .com/counter? (easyprivacy.txt: 74) +/.*\.com/counter\? +.*.com/counter\? +# .com/cm?tid (easyprivacy.txt: 73) +/.*\.com/cm\?tid +.*.com/cm\?tid +# .com/cm?ci= (easyprivacy.txt: 72) +/.*\.com/cm\?ci= +.*.com/cm\?ci= +# .com/c.gif? (easyprivacy.txt: 71) +/.*\.com/c\.gif\? +.*.com/c\.gif\? +# .com/blank.aspx? (easyprivacy.txt: 70) +/.*\.com/blank\.aspx\? +.*.com/blank\.aspx\? +# .com/b.gif? (easyprivacy.txt: 69) +/.*\.com/b\.gif\? +.*.com/b\.gif\? +# .com/analytics? (easyprivacy.txt: 68) +/.*\.com/analytics\? +.*.com/analytics\? +# .com/analytics.js?_t=$script,third-party (easyprivacy.txt: 67) +/.*\.com/analytics\.js\?_t= +.*.com/analytics\.js\?_t= +# .com/a.gif? (easyprivacy.txt: 66) +/.*\.com/a\.gif\? +.*.com/a\.gif\? +# .com/__kl.gif? (easyprivacy.txt: 65) +/.*\.com/__kl\.gif\? +.*.com/__kl\.gif\? +# .com/_.gif? (easyprivacy.txt: 64) +/.*\.com/_\.gif\? +.*.com/_\.gif\? +# .com/?livehit (easyprivacy.txt: 63) +/.*\.com/\?livehit +.*.com/\?livehit +# .com/?epl=$image,script (easyprivacy.txt: 62) +/.*\.com/\?epl= +.*.com/\?epl= +# .com/3.gif? (easyprivacy.txt: 61) +/.*\.com/3\.gif\? +.*.com/3\.gif\? +# .com/2.gif? (easyprivacy.txt: 60) +/.*\.com/2\.gif\? +.*.com/2\.gif\? +# .com/1.gif? (easyprivacy.txt: 59) +/.*\.com/1\.gif\? +.*.com/1\.gif\? +# .com/0.gif? (easyprivacy.txt: 58) +/.*\.com/0\.gif\? +.*.com/0\.gif\? +# .com.com/redir?timestamp (easyprivacy.txt: 57) +/.*\.com\.com/redir\?timestamp +.*.com.com/redir\?timestamp +# .com.au/HG?hc= (easyprivacy.txt: 56) +/.*\.com\.au/HG\?hc= +.*.com.au/HG\?hc= +# .cn/z.gif? (easyprivacy.txt: 55) +/.*\.cn/z\.gif\? +.*.cn/z\.gif\? +# .cn/s.gif? (easyprivacy.txt: 54) +/.*\.cn/s\.gif\? +.*.cn/s\.gif\? +# .cn/r.gif? (easyprivacy.txt: 53) +/.*\.cn/r\.gif\? +.*.cn/r\.gif\? +# .cn/gs.gif? (easyprivacy.txt: 52) +/.*\.cn/gs\.gif\? +.*.cn/gs\.gif\? +# .cn/b.gif? (easyprivacy.txt: 51) +/.*\.cn/b\.gif\? +.*.cn/b\.gif\? +# .cn/a.gif? (easyprivacy.txt: 50) +/.*\.cn/a\.gif\? +.*.cn/a\.gif\? +# .cn/2.gif? (easyprivacy.txt: 49) +/.*\.cn/2\.gif\? +.*.cn/2\.gif\? +# .cn/1.gif? (easyprivacy.txt: 48) +/.*\.cn/1\.gif\? +.*.cn/1\.gif\? +# .cc/s.gif? (easyprivacy.txt: 47) +/.*\.cc/s\.gif\? +.*.cc/s\.gif\? +# .beacon.min.js (easyprivacy.txt: 46) +/.*\.beacon\.min\.js +.*.beacon.min.js*. +# .au/t.gif? (easyprivacy.txt: 45) +/.*\.au/t\.gif\? +.*.au/t\.gif\? +# .au/t.ashx? (easyprivacy.txt: 44) +/.*\.au/t\.ashx\? +.*.au/t\.ashx\? +# .au/c.gif? (easyprivacy.txt: 43) +/.*\.au/c\.gif\? +.*.au/c\.gif\? +# .au/1x1.gif? (easyprivacy.txt: 42) +/.*\.au/1x1\.gif\? +.*.au/1x1\.gif\? +# .at/t.gif? (easyprivacy.txt: 41) +/.*\.at/t\.gif\? +.*.at/t\.gif\? +# .asis?Log= (easyprivacy.txt: 40) +/.*\.asis\?Log= +# -xtcore.js (easyprivacy.txt: 39) +/.*-xtcore\.js +.*-xtcore.js*. +# -tracking.js? (easyprivacy.txt: 38) +/.*-tracking\.js\? +# -social-tracking. (easyprivacy.txt: 37) +/.*-social-tracking\. +.*-social-tracking.*. +# -seo-tracker. (easyprivacy.txt: 36) +/.*-seo-tracker\. +.*-seo-tracker.*. +# -scroll-tracker.js (easyprivacy.txt: 35) +/.*-scroll-tracker\.js +.*-scroll-tracker.js*. +# -page-analytics. (easyprivacy.txt: 34) +/.*-page-analytics\. +.*-page-analytics.*. +# -optimost- (easyprivacy.txt: 33) +/.*-optimost- +.*-optimost-*. +# -mediaplex_ (easyprivacy.txt: 32) +/.*-mediaplex_ +# -google-tag-manager/$script (easyprivacy.txt: 31) +/.*-google-tag-manager/ +.*-google-tag-manager +# -google-analytics/ (easyprivacy.txt: 30) +/.*-google-analytics/ +.*-google-analytics +# -google-analytics. (easyprivacy.txt: 29) +/.*-google-analytics\. +.*-google-analytics.*. +# -geoIP.js (easyprivacy.txt: 28) +/.*-geoIP\.js +.*-geoIP.js*. +# -ga-track. (easyprivacy.txt: 27) +/.*-ga-track\. +.*-ga-track.*. +# -criteo. (easyprivacy.txt: 26) +/.*-criteo\. +.*-criteo.*. +# -comscore. (easyprivacy.txt: 25) +/.*-comscore\. +.*-comscore.*. +# -ClickTale. (easyprivacy.txt: 24) +/.*-ClickTale\. +.*-ClickTale.*. +# -boomerang_ (easyprivacy.txt: 23) +/.*-boomerang_ +# -bluekai. (easyprivacy.txt: 22) +/.*-bluekai\. +.*-bluekai.*. +# -baynote. (easyprivacy.txt: 21) +/.*-baynote\. +.*-baynote.*. +# -analytics-tagserver- (easyprivacy.txt: 20) +/.*-analytics-tagserver- +.*-analytics-tagserver-*. +# -AdTracking. (easyprivacy.txt: 19) +/.*-AdTracking\. +.*-AdTracking.*. +# &trackingserver= (easyprivacy.txt: 18) +/.*&trackingserver= +# &pageReferrer= (easyprivacy.txt: 17) +/.*&pageReferrer= +# &ctxId=*&pubId=*&objId= (easyprivacy.txt: 16) +/.*&ctxId=.*&pubId=.*&objId= + +#ab2p-block-elem-R1 +{+client-header-tagger{ab2p-block-elem-R1} \ +} +# ||cloudfront.net/photo/*_tp_*.jpg$domain=9gag.com (easyprivacy.txt: 7729) +.cloudfront.net/photo/.*_tp_.*\.jpg + +#ab2p-block-elem-R2 +{+client-header-tagger{ab2p-block-elem-R2} \ +} +# ||abc.com/service/gremlin/js/files/s_code.js?$domain=abc.go.com (easyprivacy.txt: 9436) +.abc.com/service/gremlin/js/files/s_code\.js\? + +#ab2p-block-elem-R3 +{+client-header-tagger{ab2p-block-elem-R3} \ +} +# ||aexp-static.com/api/axpi/omniture/s_code_myca_context.js$domain=americanexpress.com (easyprivacy.txt: 9439) +.aexp-static.com/api/axpi/omniture/s_code_myca_context\.js + +#ab2p-block-elem-R4 +{+client-header-tagger{ab2p-block-elem-R4} \ +} +# ||img-bahn.de/v/*/js/s_code.js$domain=bahn.de (easyprivacy.txt: 9457) +.img-bahn.de/v/.*/js/s_code\.js + +#ab2p-block-elem-R5 +{+client-header-tagger{ab2p-block-elem-R5} \ +} +# ||bbystatic.com/js/_analytics/$domain=bestbuy.com (easyprivacy.txt: 7583) +.bbystatic.com/js/_analytics/ + +#ab2p-block-elem-R6 +{+client-header-tagger{ab2p-block-elem-R6} \ +} +# ||85.237.86.50/stat/$domain=bluray-disc.de (easyprivacy.txt: 9495) +.85.237.86.50/stat/ + +#ab2p-block-elem-R7 +{+client-header-tagger{ab2p-block-elem-R7} \ +} +# ||google-analytics.com/analytics.js$domain=boote-forum.de (easyprivacy.txt: 10218) +.google-analytics.com/analytics\.js + +#ab2p-block-elem-R8 +{+client-header-tagger{ab2p-block-elem-R8} \ +} +# ||rackcdn.com^$script,domain=buysubscriptions.com|cbsnews.com|cbssports.com|cnet.com|dailystar.co.uk|express.co.uk|gamerant.com|gamespot.com|inyt.com|metrolyrics.com|rotoworld.com|sh.st|thesun.co.uk|thesundaytimes.co.uk|thetimes.co.uk|zdnet.com (easyprivacy.txt: 6280) +.rackcdn.com + +#ab2p-block-elem-R9 +{+client-header-tagger{ab2p-block-elem-R9} \ +} +# /fam/view.php?$domain=cnet.com (easyprivacy.txt: 7352) +/(.*/)?fam/view\.php\? + +#ab2p-block-elem-R10 +{+client-header-tagger{ab2p-block-elem-R10} \ +} +# ||xplosion.de^$domain=comunio.de (easyprivacy.txt: 10225) +.xplosion.de +# ||ioam.de/tx.io?$domain=comunio.de (easyprivacy.txt: 10224) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=comunio.de (easyprivacy.txt: 10223) +.ioam.de/\? +# ||criteo.com^$domain=comunio.de (easyprivacy.txt: 10222) +.criteo.com +# ||analytics.comunio.net^$domain=comunio.de (easyprivacy.txt: 10221) +.analytics.comunio.net +# ||analytics.comunio.de^$domain=comunio.de (easyprivacy.txt: 10220) +.analytics.comunio.de + +#ab2p-block-elem-R11 +{+client-header-tagger{ab2p-block-elem-R11} \ +} +# ||dmcdn.net/track/$domain=dailymotion.com (easyprivacy.txt: 7836) +.dmcdn.net/track/ +# ||cloudfront.net/dm.js$domain=dailymotion.com (easyprivacy.txt: 7725) +.cloudfront.net/dm\.js + +#ab2p-block-elem-R12 +{+client-header-tagger{ab2p-block-elem-R12} \ +} +# ||mnginteractive.com/live/omniture/sccore.js$domain=denverpost.com (easyprivacy.txt: 9466) +.mnginteractive.com/live/omniture/sccore\.js + +#ab2p-block-elem-R13 +{+client-header-tagger{ab2p-block-elem-R13} \ +} +# ||cdnds.net/js/s_code.js$domain=digitalspy.ca|digitalspy.co.nz|digitalspy.co.uk|digitalspy.com|digitalspy.com.au|digitalspy.ie (easyprivacy.txt: 9444) +.cdnds.net/js/s_code\.js + +#ab2p-block-elem-R14 +{+client-header-tagger{ab2p-block-elem-R14} \ +} +# ||edgecastcdn.net^*/ehow_am.js$domain=ehow.com (easyprivacy.txt: 7867) +.edgecastcdn.net/.*/ehow_am\.js + +#ab2p-block-elem-R15 +{+client-header-tagger{ab2p-block-elem-R15} \ +} +# ||el-mundo.net/js/s_code.js$domain=elmundo.es|marca.com|tiramillas.net (easyprivacy.txt: 9451) +.el-mundo.net/js/s_code\.js + +#ab2p-block-elem-R16 +{+client-header-tagger{ab2p-block-elem-R16} \ +} +# ||pixel.facebook.com^$domain=facebook.com (easyprivacy.txt: 10196) +.pixel.facebook.com + +#ab2p-block-elem-R17 +{+client-header-tagger{ab2p-block-elem-R17} \ +} +# ||google-analytics.com/analytics.js$domain=fanfiktion.de (easyprivacy.txt: 10216) +.google-analytics.com/analytics\.js +# ||criteo.com^$domain=fanfiktion.de (easyprivacy.txt: 10215) +.criteo.com + +#ab2p-block-elem-R18 +{+client-header-tagger{ab2p-block-elem-R18} \ +} +# ||86.63.194.248/js/measure.js$third-party,domain=feedcat.net (easyprivacy.txt: 7373) +.86.63.194.248/js/measure\.js + +#ab2p-block-elem-R19 +{+client-header-tagger{ab2p-block-elem-R19} \ +} +# ||xplosion.de^$domain=focus.de (easyprivacy.txt: 10181) +.xplosion.de +# ||visualrevenue.com^$domain=focus.de (easyprivacy.txt: 10180) +.visualrevenue.com +# ||optimizely.com^$domain=focus.de (easyprivacy.txt: 10178) +.optimizely.com +# ||met.vgwort.de^$domain=focus.de (easyprivacy.txt: 10177) +.met.vgwort.de +# ||lp4.io^$domain=focus.de (easyprivacy.txt: 10176) +.lp4.io +# ||log.outbrain.com^$domain=focus.de (easyprivacy.txt: 10175) +.log.outbrain.com +# ||krxd.net^$domain=focus.de (easyprivacy.txt: 10174) +.krxd.net +# ||ioam.de/tx.io?$domain=focus.de (easyprivacy.txt: 10173) +.ioam.de/tx\.io\? +# ||googletagmanager.com^$domain=focus.de (easyprivacy.txt: 10172) +.googletagmanager.com +# ||emetriq.de^$domain=focus.de (easyprivacy.txt: 10171) +.emetriq.de +# ||cloudfront.net/track?$domain=focus.de (easyprivacy.txt: 10170) +.cloudfront.net/track\? +# ||clicktale.net^$domain=focus.de (easyprivacy.txt: 10169) +.clicktale.net +# /pagedot.gif?$domain=focus.de (easyprivacy.txt: 10168) +/(.*/)?pagedot\.gif\? + +#ab2p-block-elem-R20 +{+client-header-tagger{ab2p-block-elem-R20} \ +} +# ||scorecardresearch.com^$domain=gamestar.de (easyprivacy.txt: 10166) +.scorecardresearch.com +# ||ioam.de/tx.io?$domain=gamestar.de (easyprivacy.txt: 10165) +.ioam.de/tx\.io\? +# ||googletagmanager.com/gtm.js?$third-party$domain=gamestar.de (easyprivacy.txt: 10164) +.googletagmanager.com/gtm\.js\?\$third-party +# ||google-analytics.com/analytics.js$domain=gamestar.de (easyprivacy.txt: 10163) +.google-analytics.com/analytics\.js +# ||gamestar.de/_misc/tracking/$domain=gamestar.de (easyprivacy.txt: 10162) +.gamestar.de/_misc/tracking/ +# /ping.gif?$domain=gamestar.de (easyprivacy.txt: 10161) +/(.*/)?ping\.gif\? + +#ab2p-block-elem-R21 +{+client-header-tagger{ab2p-block-elem-R21} \ +} +# ||213.8.193.45/themarker/$domain=haaretz.com (easyprivacy.txt: 7360) +.213.8.193.45/themarker/ + +#ab2p-block-elem-R22 +{+client-header-tagger{ab2p-block-elem-R22} \ +} +# ||amazonaws.com^*/track.js$domain=hitfix.com (easyprivacy.txt: 5313) +.amazonaws.com/.*/track\.js + +#ab2p-block-elem-R23 +{+client-header-tagger{ab2p-block-elem-R23} \ +} +# /viewtrack/track?$domain=hulu.com (easyprivacy.txt: 7353) +/(.*/)?viewtrack/track\? + +#ab2p-block-elem-R24 +{+client-header-tagger{ab2p-block-elem-R24} \ +} +# ||images-amazon.com^*/beacon-$domain=imdb.com (easyprivacy.txt: 8185) +.images-amazon.com/.*/beacon- + +#ab2p-block-elem-R25 +{+client-header-tagger{ab2p-block-elem-R25} \ +} +# ||atgstores.com/js/lowesca_s_code.js$domain=lowes.ca (easyprivacy.txt: 9441) +.atgstores.com/js/lowesca_s_code\.js + +#ab2p-block-elem-R26 +{+client-header-tagger{ab2p-block-elem-R26} \ +} +# ||mnginteractive.com/live/omniture/custom_scripts/omnicore-blogs.js$domain=mercurynews.com (easyprivacy.txt: 9465) +.mnginteractive.com/live/omniture/custom_scripts/omnicore-blogs\.js + +#ab2p-block-elem-R27 +{+client-header-tagger{ab2p-block-elem-R27} \ +} +# ||wp.com/wp-content/themes/vip/metrouk/js/site-catalyst.js$domain=metro.co.uk (easyprivacy.txt: 9487) +.wp.com/wp-content/themes/vip/metrouk/js/site-catalyst\.js + +#ab2p-block-elem-R28 +{+client-header-tagger{ab2p-block-elem-R28} \ +} +# ||s-msn.com/primedns.gif?$domain=msn.com (easyprivacy.txt: 8765) +.s-msn.com/primedns\.gif\? + +#ab2p-block-elem-R29 +{+client-header-tagger{ab2p-block-elem-R29} \ +} +# ||ioam.de/tx.io?$domain=notebookcheck.com (easyprivacy.txt: 10235) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=notebookcheck.com (easyprivacy.txt: 10234) +.ioam.de/\? +# ||google-analytics.com/analytics.js$domain=notebookcheck.com (easyprivacy.txt: 10233) +.google-analytics.com/analytics\.js + +#ab2p-block-elem-R30 +{+client-header-tagger{ab2p-block-elem-R30} \ +} +# ||demandware.edgesuite.net^*/omniture.js$domain=otterbox.com (easyprivacy.txt: 9449) +.demandware.edgesuite.net/.*/omniture\.js + +#ab2p-block-elem-R31 +{+client-header-tagger{ab2p-block-elem-R31} \ +} +# ||scorecardresearch.com^$domain=outbrain.com (easyprivacy.txt: 10179) +.scorecardresearch.com + +#ab2p-block-elem-R32 +{+client-header-tagger{ab2p-block-elem-R32} \ +} +# ||mnginteractive.com/live/omniture/sccore_NEW.js$domain=pasadenastarnews.com|presstelegram.com (easyprivacy.txt: 9467) +.mnginteractive.com/live/omniture/sccore_NEW\.js + +#ab2p-block-elem-R33 +{+client-header-tagger{ab2p-block-elem-R33} \ +} +# ||paypalobjects.com/*/m/mid.swf$domain=paypal.com (easyprivacy.txt: 8576) +.paypalobjects.com/.*/m/mid\.swf + +#ab2p-block-elem-R34 +{+client-header-tagger{ab2p-block-elem-R34} \ +} +# ||stroeerdigitalmedia.de^$domain=planetsnow.de (easyprivacy.txt: 10231) +.stroeerdigitalmedia.de +# ||plista.com/iframeShowItem.php$domain=planetsnow.de (easyprivacy.txt: 10230) +.plista.com/iframeShowItem\.php +# ||ioam.de/tx.io?$domain=planetsnow.de (easyprivacy.txt: 10229) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=planetsnow.de (easyprivacy.txt: 10228) +.ioam.de/\? +# ||google-analytics.com/analytics.js$domain=planetsnow.de (easyprivacy.txt: 10227) +.google-analytics.com/analytics\.js + +#ab2p-block-elem-R35 +{+client-header-tagger{ab2p-block-elem-R35} \ +} +# ||xplosion.de^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10201) +.xplosion.de +# ||webtrekk.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10200) +.webtrekk.net +# ||visualrevenue.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10199) +.visualrevenue.com +# ||theadex.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10198) +.theadex.com +# ||semasio.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10197) +.semasio.net +# ||nuggad.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10195) +.nuggad.net +# ||movad.de/c.ount?$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10194) +.movad.de/c\.ount\? +# ||imrworldwide.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10193) +.imrworldwide.com +# ||google-analytics.com/analytics.js$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10192) +.google-analytics.com/analytics\.js +# ||contentspread.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10191) +.contentspread.net +# ||chartbeat.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10190) +.chartbeat.com + +#ab2p-block-elem-R36 +{+client-header-tagger{ab2p-block-elem-R36} \ +} +# ||ybinst2.ec.yimg.com/ec/*&Type=Event.CPT&$domain=search.yahoo.com (easyprivacy.txt: 9375) +.ybinst2.ec.yimg.com/ec/.*&Type=Event\.CPT& + +#ab2p-block-elem-R37 +{+client-header-tagger{ab2p-block-elem-R37} \ +} +# ||198.105.253.2/lvl3/$image,domain=searchguide.level3.com (easyprivacy.txt: 7358) +.198.105.253.2/lvl3/ + +#ab2p-block-elem-R38 +{+client-header-tagger{ab2p-block-elem-R38} \ +} +# ||nwsource.com/shared/js/s_code.js?$domain=seattletimes.com (easyprivacy.txt: 9470) +.nwsource.com/shared/js/s_code\.js\? + +#ab2p-block-elem-R39 +{+client-header-tagger{ab2p-block-elem-R39} \ +} +# ||aexp-static.com/api/axpi/omniture/s_code_serve.js?$domain=serve.com (easyprivacy.txt: 7408) +.aexp-static.com/api/axpi/omniture/s_code_serve\.js\? + +#ab2p-block-elem-R40 +{+client-header-tagger{ab2p-block-elem-R40} \ +} +# ||timeinc.net/tii/omniture/h/config/timesi.js$domain=si.com (easyprivacy.txt: 9483) +.timeinc.net/tii/omniture/h/config/timesi\.js + +#ab2p-block-elem-R41 +{+client-header-tagger{ab2p-block-elem-R41} \ +} +# ||skypeassets.com/static/skype.skypeloginstatic/js/s_code.js$domain=skype.com (easyprivacy.txt: 9480) +.skypeassets.com/static/skype\.skypeloginstatic/js/s_code\.js +# ||skypeassets.com/i/tracking/js/s_code_20121127.js$domain=skype.com (easyprivacy.txt: 9479) +.skypeassets.com/i/tracking/js/s_code_20121127\.js + +#ab2p-block-elem-R42 +{+client-header-tagger{ab2p-block-elem-R42} \ +} +# ||amazonaws.com/ds-dd/data/data.gif?$domain=slickdeals.net (easyprivacy.txt: 5301) +.amazonaws.com/ds-dd/data/data\.gif\? + +#ab2p-block-elem-R43 +{+client-header-tagger{ab2p-block-elem-R43} \ +} +# ||cloudfront.net/pages/scripts/0011/0794.js$domain=sourceforge.net (easyprivacy.txt: 7728) +.cloudfront.net/pages/scripts/0011/0794\.js +# ||fsdn.com/con/js/webtracker.js$domain=sourceforge.net (easyprivacy.txt: 5827) +.fsdn.com/con/js/webtracker\.js + +#ab2p-block-elem-R44 +{+client-header-tagger{ab2p-block-elem-R44} \ +} +# ||5.153.4.92^$domain=spreaker.com (easyprivacy.txt: 7367) +.5.153.4.92 + +#ab2p-block-elem-R45 +{+client-header-tagger{ab2p-block-elem-R45} \ +} +# ||69.25.121.67/page_load?$domain=theverge.com (easyprivacy.txt: 7370) +.69.25.121.67/page_load\? + +#ab2p-block-elem-R46 +{+client-header-tagger{ab2p-block-elem-R46} \ +} +# /pos?act=dur$object-subrequest,domain=tudou.com (easyprivacy.txt: 9795) +/(.*/)?pos\?act=dur + +#ab2p-block-elem-R47 +{+client-header-tagger{ab2p-block-elem-R47} \ +} +# ||vinsight.de^$domain=tvspielfilm.de (easyprivacy.txt: 10188) +.vinsight.de +# ||ioam.de/tx.io?$domain=tvspielfilm.de (easyprivacy.txt: 10187) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=tvspielfilm.de (easyprivacy.txt: 10186) +.ioam.de/\? +# ||intelliad.de^$domain=tvspielfilm.de (easyprivacy.txt: 10185) +.intelliad.de +# ||googletagmanager.com/gtm.js?$domain=tvspielfilm.de (easyprivacy.txt: 10184) +.googletagmanager.com/gtm\.js\? +# ||facebook.com/tr?$domain=tvspielfilm.de (easyprivacy.txt: 10183) +.facebook.com/tr\? + +#ab2p-block-elem-R48 +{+client-header-tagger{ab2p-block-elem-R48} \ +} +# ||intercomcdn.com/intercom*.js$domain=unblocked.la (easyprivacy.txt: 5946) +.intercomcdn.com/intercom.*\.js + +#ab2p-block-elem-R49 +{+client-header-tagger{ab2p-block-elem-R49} \ +} +# ||wac.edgecastcdn.net^$object-subrequest,domain=vzaar.com (easyprivacy.txt: 6718) +.wac.edgecastcdn.net + +#ab2p-block-elem-R50 +{+client-header-tagger{ab2p-block-elem-R50} \ +} +# ||amazonaws.com/logs$xmlhttprequest,domain=wat.tv (easyprivacy.txt: 5306) +.amazonaws.com/logs + +#ab2p-block-elem-R51 +{+client-header-tagger{ab2p-block-elem-R51} \ +} +# ||visualwebsiteoptimizer.com^$domain=wetter.com (easyprivacy.txt: 10209) +.visualwebsiteoptimizer.com +# ||theadex.com^$domain=wetter.com (easyprivacy.txt: 10208) +.theadex.com +# ||mouseflow.com^$domain=wetter.com (easyprivacy.txt: 10207) +.mouseflow.com +# ||ioam.de/tx.io?$domain=wetter.com (easyprivacy.txt: 10206) +.ioam.de/tx\.io\? +# /piwik.$domain=wetter.com (easyprivacy.txt: 10205) +/(.*/)?piwik\. +piwik.*. +# /chartbeat.js$domain=wetter.com (easyprivacy.txt: 10204) +/(.*/)?chartbeat\.js +chartbeat.js*. +# /__utm.gif?$domain=wetter.com (easyprivacy.txt: 10203) +/(.*/)?__utm\.gif\? + +#ab2p-block-elem-R52 +{+client-header-tagger{ab2p-block-elem-R52} \ +} +# ||ioam.de/tx.io?$domain=woxikon.de (easyprivacy.txt: 10213) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=woxikon.de (easyprivacy.txt: 10212) +.ioam.de/\? +# /__utm.gif$domain=woxikon.de (easyprivacy.txt: 10211) +/(.*/)?__utm\.gif + +#ab2p-block-elem-R53 +{+client-header-tagger{ab2p-block-elem-R53} \ +} +# ||211.106.66.62^*/statistics/$domain=yonhapnews.co.kr (easyprivacy.txt: 10043) +.211.106.66.62/.*/statistics/ + +#ab2p-block-elem-Rn54 +{+client-header-tagger{ab2p-block-elem-Rn54} \ +} +# ||95.211.106.41^$third-party,domain=~538group.ip (easyprivacy.txt: 7073) +.95.211.106.41 + +#ab2p-block-elem-Rn55 +{+client-header-tagger{ab2p-block-elem-Rn55} \ +} +# ||74.117.176.217/trf/track.php?$third-party,domain=~adult.sites.ip (easyprivacy.txt: 5221) +.74.117.176.217/trf/track\.php\? + +#ab2p-block-elem-Rn56 +{+client-header-tagger{ab2p-block-elem-Rn56} \ +} +# ||79.125.117.123^$third-party,domain=~amazon.cdn.ip.seen.on.cheapflight (easyprivacy.txt: 2711) +.79.125.117.123 + +#ab2p-block-elem-Rn57 +{+client-header-tagger{ab2p-block-elem-Rn57} \ +} +# ||ssl-images-amazon.com/images/*/common/1x1._*.gif$domain=~amazon.com (easyprivacy.txt: 6373) +.ssl-images-amazon.com/images/.*/common/1x1\._.*\.gif + +#ab2p-block-elem-Rn58 +{+client-header-tagger{ab2p-block-elem-Rn58} \ +} +# ||93.93.53.198^$third-party,domain=~awempire.ip (easyprivacy.txt: 5223) +.93.93.53.198 + +#ab2p-block-elem-Rn59 +{+client-header-tagger{ab2p-block-elem-Rn59} \ +} +# ||180.76.2.18^$third-party,domain=~baidu.ip (easyprivacy.txt: 4830) +.180.76.2.18 + +#ab2p-block-elem-Rn60 +{+client-header-tagger{ab2p-block-elem-Rn60} \ +} +# ||219.232.238.60/count.$domain=~caixin.com.ip (easyprivacy.txt: 5207) +.219.232.238.60/count\. +# ||116.213.75.36/logstat/$domain=~caixin.com.ip (easyprivacy.txt: 5186) +.116.213.75.36/logstat/ + +#ab2p-block-elem-Rn61 +{+client-header-tagger{ab2p-block-elem-Rn61} \ +} +# ||62.219.24.238^$third-party,domain=~cast-tv.com.ip (easyprivacy.txt: 5219) +.62.219.24.238 + +#ab2p-block-elem-Rn62 +{+client-header-tagger{ab2p-block-elem-Rn62} \ +} +# ||209.15.236.80^$third-party,domain=~crosspixelmedia.ip (easyprivacy.txt: 5205) +.209.15.236.80 + +#ab2p-block-elem-Rn63 +{+client-header-tagger{ab2p-block-elem-Rn63} \ +} +# ||180.70.93.115/ndmclick/$domain=~daum.ip (easyprivacy.txt: 7184) +.180.70.93.115/ndmclick/ + +#ab2p-block-elem-Rn64 +{+client-header-tagger{ab2p-block-elem-Rn64} \ +} +# ||188.40.142.44/track.js$third-party,domain=~dropped.pl.ip (easyprivacy.txt: 5198) +.188.40.142.44/track\.js + +#ab2p-block-elem-Rn65 +{+client-header-tagger{ab2p-block-elem-Rn65} \ +} +# ||216.18.184.18^$third-party,domain=~etahub.com.ip (easyprivacy.txt: 2690) +.216.18.184.18 + +#ab2p-block-elem-Rn66 +{+client-header-tagger{ab2p-block-elem-Rn66} \ +} +# ||199.116.177.156^$domain=~fc2.jp.ip (easyprivacy.txt: 7165) +.199.116.177.156 + +#ab2p-block-elem-Rn67 +{+client-header-tagger{ab2p-block-elem-Rn67} \ +} +# ||209.20.84.187/blank.gif?$third-party,domain=~gatehousenewsservice.com.ip (easyprivacy.txt: 5206) +.209.20.84.187/blank\.gif\? + +#ab2p-block-elem-Rn68 +{+client-header-tagger{ab2p-block-elem-Rn68} \ +} +# ||174.37.54.170^$third-party,domain=~informer.com.ip (easyprivacy.txt: 5194) +.174.37.54.170 +# ||208.88.226.75^$third-party,domain=~informer.com.ip (easyprivacy.txt: 2688) +.208.88.226.75 + +#ab2p-block-elem-Rn69 +{+client-header-tagger{ab2p-block-elem-Rn69} \ +} +# ||212.95.32.75^$third-party,domain=~ipcounter.de.ip (easyprivacy.txt: 4493) +.212.95.32.75 + +#ab2p-block-elem-Rn70 +{+client-header-tagger{ab2p-block-elem-Rn70} \ +} +# ||keen.io^$third-party,domain=~keen.github.io|~keen.io (easyprivacy.txt: 3533) +.keen.io + +#ab2p-block-elem-Rn71 +{+client-header-tagger{ab2p-block-elem-Rn71} \ +} +# ||metrigo.com^$third-party,domain=~metrigo.de (easyprivacy.txt: 4649) +.metrigo.com + +#ab2p-block-elem-Rn72 +{+client-header-tagger{ab2p-block-elem-Rn72} \ +} +# /analyticReportingAS3.$domain=~miniclip.com (easyprivacy.txt: 306) +/(.*/)?analyticReportingAS3\. +analyticReportingAS3.*. + +#ab2p-block-elem-Rn73 +{+client-header-tagger{ab2p-block-elem-Rn73} \ +} +# ||23.23.22.172/ping/$third-party,domain=~newjerseynewsroom.com.ip (easyprivacy.txt: 5209) +.23.23.22.172/ping/ + +#ab2p-block-elem-Rn74 +{+client-header-tagger{ab2p-block-elem-Rn74} \ +} +# ||58.68.146.44:8000^$third-party,domain=~peoplesdaily.cn.ip (easyprivacy.txt: 5216) +.58.68.146.44:8000 + +#ab2p-block-elem-Rn75 +{+client-header-tagger{ab2p-block-elem-Rn75} \ +} +# /piwik/*$domain=~piwik.org (easyprivacy.txt: 1613) +/(.*/)?piwik/.* +# /piwik.$script,domain=~piwik.org (easyprivacy.txt: 1611) +/(.*/)?piwik\. +piwik.*. +# /piwik-$domain=~piwik.org (easyprivacy.txt: 1610) +/(.*/)?piwik- +piwik-*. + +#ab2p-block-elem-Rn76 +{+client-header-tagger{ab2p-block-elem-Rn76} \ +} +# ||54.246.124.188/analytics/$domain=~racinguk.ip (easyprivacy.txt: 5215) +.54.246.124.188/analytics/ + +#ab2p-block-elem-Rn77 +{+client-header-tagger{ab2p-block-elem-Rn77} \ +} +# ||195.177.242.237^$third-party,domain=~sat24.com.ip (easyprivacy.txt: 5199) +.195.177.242.237 + +#ab2p-block-elem-Rn78 +{+client-header-tagger{ab2p-block-elem-Rn78} \ +} +# ||87.79.36.252/blank.gif?$domain=~sevenload.com.ip (easyprivacy.txt: 9496) +.87.79.36.252/blank\.gif\? + +#ab2p-block-elem-Rn79 +{+client-header-tagger{ab2p-block-elem-Rn79} \ +} +# ||61.129.118.83^$third-party,domain=~shanghaidaily.cn.ip (easyprivacy.txt: 5218) +.61.129.118.83 + +#ab2p-block-elem-Rn80 +{+client-header-tagger{ab2p-block-elem-Rn80} \ +} +# ||204.236.243.21/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5203) +.204.236.243.21/small\.gif\? +# ||204.236.233.138/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5202) +.204.236.233.138/tracker/ +# ||184.73.199.44/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5196) +.184.73.199.44/tracker/ +# ||184.73.199.40/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5195) +.184.73.199.40/tracker/ +# ||174.129.98.240/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5193) +.174.129.98.240/small\.gif\? +# ||174.129.88.189/partner.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5192) +.174.129.88.189/partner\.gif\? +# ||174.129.6.226/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5191) +.174.129.6.226/tracker/ +# ||174.129.135.197/partner.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5190) +.174.129.135.197/partner\.gif\? +# ||174.129.112.186/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5189) +.174.129.112.186/small\.gif\? + +#ab2p-block-elem-Rn81 +{+client-header-tagger{ab2p-block-elem-Rn81} \ +} +# ||193.197.158.209^$third-party,domain=~statistik.lubw.baden-wuerttemberg.de.ip (easyprivacy.txt: 4492) +.193.197.158.209 + +#ab2p-block-elem-Rn82 +{+client-header-tagger{ab2p-block-elem-Rn82} \ +} +# ||195.182.58.105/statistics/$third-party,domain=~stream5.tv.ip (easyprivacy.txt: 5200) +.195.182.58.105/statistics/ + +#ab2p-block-elem-Rn83 +{+client-header-tagger{ab2p-block-elem-Rn83} \ +} +# ||107.20.91.54/partner.gif?$third-party,domain=~thedailybeast.com.ip (easyprivacy.txt: 5185) +.107.20.91.54/partner\.gif\? + +#ab2p-block-elem-Rn84 +{+client-header-tagger{ab2p-block-elem-Rn84} \ +} +# ||50.16.191.59^$third-party,domain=~tritondigital.net.ip (easyprivacy.txt: 5212) +.50.16.191.59 +# ||23.20.0.197^$third-party,domain=~tritondigital.net.ip (easyprivacy.txt: 5208) +.23.20.0.197 + +#ab2p-block-elem-Rn85 +{+client-header-tagger{ab2p-block-elem-Rn85} \ +} +# http://utm.$domain=~utoronto.ca (easyprivacy.txt: 2644) +/.*http://utm\. +utm.*. + +#ab2p-block-request +{+block{ adblock rules } \ ++server-header-tagger{ab2p-block-s} \ +} +TAG:^ab2p-block-request$ +# ||target.ukr.net^ (easyprivacy.txt: 10158) +.target.ukr.net +# ||piccy.org.ua/c? (easyprivacy.txt: 10157) +.piccy.org.ua/c\? +# ||piccy.info/c? (easyprivacy.txt: 10156) +.piccy.info/c\? +# ||meta.ua/c.asp? (easyprivacy.txt: 10155) +.meta.ua/c\.asp\? +# ||hit.meta.ua^ (easyprivacy.txt: 10154) +.hit.meta.ua +# ||counter.ukr.net^ (easyprivacy.txt: 10153) +.counter.ukr.net +# ||at.ua/stat/ (easyprivacy.txt: 10152) +.at.ua/stat/ +# |http://r.i.ua/s? (easyprivacy.txt: 10151) +r.i.ua/s\? +# ||p.milliyet.com.tr^ (easyprivacy.txt: 10149) +.p.milliyet.com.tr +# ||haberler.com/dinamik/ (easyprivacy.txt: 10148) +.haberler.com/dinamik/ +# ||c.gazetevatan.com^ (easyprivacy.txt: 10147) +.c.gazetevatan.com +# ||prod-metro-collector.cloudapp.net^ (easyprivacy.txt: 10145) +.prod-metro-collector.cloudapp.net +# ||prisjakt.nu/js.php?p=trafikfonden (easyprivacy.txt: 10144) +.prisjakt.nu/js\.php\?p=trafikfonden +# ||fusion.bonniertidskrifter.se^ (easyprivacy.txt: 10143) +.fusion.bonniertidskrifter.se +# ||blocket.se/js/trafikfonden.js (easyprivacy.txt: 10142) +.blocket.se/js/trafikfonden\.js +# ||beacon.mtgx.tv^ (easyprivacy.txt: 10141) +.beacon.mtgx.tv +# ||analytics.codigo.se^ (easyprivacy.txt: 10140) +.analytics.codigo.se +# ||trrsf.com/metrics/ (easyprivacy.txt: 10138) +.trrsf.com/metrics/ +# ||terra.com^*/td.asp?bstat (easyprivacy.txt: 10137) +.terra.com/.*/td\.asp\?bstat +# ||terra.com/js/metrics/ (easyprivacy.txt: 10136) +.terra.com/js/metrics/ +# ||terra.com.mx^*/metrics_end.js (easyprivacy.txt: 10135) +.terra.com.mx/.*/metrics_end\.js +# ||terra.com.mx^*/metrics_begin.js (easyprivacy.txt: 10134) +.terra.com.mx/.*/metrics_begin\.js +# ||terra.com.mx/js/metricspar_ (easyprivacy.txt: 10133) +.terra.com.mx/js/metricspar_ +# ||t13.cl/hit/ (easyprivacy.txt: 10132) +.t13.cl/hit/ +# ||stats.milenio.com^ (easyprivacy.txt: 10131) +.stats.milenio.com +# ||hits.antena3.com^ (easyprivacy.txt: 10130) +.hits.antena3.com +# ||g.siliconweek.es^ (easyprivacy.txt: 10129) +.g.siliconweek.es +# ||fls-eu.amazon.es^ (easyprivacy.txt: 10128) +.fls-eu.amazon.es +# ||estadonline.publiguias.cl^ (easyprivacy.txt: 10127) +.estadonline.publiguias.cl +# ||estadisticas.lanacion.com.ar^ (easyprivacy.txt: 10126) +.estadisticas.lanacion.com.ar +# ||esmas.com/scripts/esmas_stats.js (easyprivacy.txt: 10125) +.esmas.com/scripts/esmas_stats\.js +# ||coletor.terra.com^ (easyprivacy.txt: 10124) +.coletor.terra.com +# ||analytics.infobae.com^ (easyprivacy.txt: 10123) +.analytics.infobae.com +# ||24ur.com/bin/player/?mod=statistics& (easyprivacy.txt: 10121) +.24ur.com/bin/player/\?mod=statistics& +# ||trak-analytics.blic.rs^ (easyprivacy.txt: 10119) +.trak-analytics.blic.rs +# ||yast.rutube.ru^ (easyprivacy.txt: 10117) +.yast.rutube.ru +# ||yandex.ru/clck/ (easyprivacy.txt: 10116) +.yandex.ru/clck/ +# ||vedomosti.ru/boom? (easyprivacy.txt: 10115) +.vedomosti.ru/boom\? +# ||stats.lifenews.ru^ (easyprivacy.txt: 10114) +.stats.lifenews.ru +# ||stat.lenta.ru^ (easyprivacy.txt: 10113) +.stat.lenta.ru +# ||rutube.ru/img/playerstats.gif? (easyprivacy.txt: 10112) +.rutube.ru/img/playerstats\.gif\? +# ||rutube.ru/dbg/player_stat? (easyprivacy.txt: 10111) +.rutube.ru/dbg/player_stat\? +# ||rutube.ru/counters.html? (easyprivacy.txt: 10110) +.rutube.ru/counters\.html\? +# ||rbc.ru/count/ (easyprivacy.txt: 10109) +.rbc.ru/count/ +# ||rbc.ru/click? (easyprivacy.txt: 10108) +.rbc.ru/click\? +# ||montblanc.lenta.ru^ (easyprivacy.txt: 10107) +.montblanc.lenta.ru +# ||mail.ru/counter? (easyprivacy.txt: 10106) +.mail.ru/counter\? +# ||mail.ru/count/ (easyprivacy.txt: 10105) +.mail.ru/count/ +# ||kommersant.ru/a.asp?p= (easyprivacy.txt: 10104) +.kommersant.ru/a\.asp\?p= +# ||kiks.yandex.ru^ (easyprivacy.txt: 10103) +.kiks.yandex.ru +# ||ad7.bigmir.net^ (easyprivacy.txt: 10102) +.ad7.bigmir.net +# ||uv.terra.com.br^ (easyprivacy.txt: 10100) +.uv.terra.com.br +# ||urchin.estadao.com.br^ (easyprivacy.txt: 10099) +.urchin.estadao.com.br +# ||uol.com.br/stats? (easyprivacy.txt: 10098) +.uol.com.br/stats\? +# ||tracker.bt.uol.com.br^ (easyprivacy.txt: 10097) +.tracker.bt.uol.com.br +# ||sl.pt/wa.gif? (easyprivacy.txt: 10096) +.sl.pt/wa\.gif\? +# ||sapo.*/clk?u= (easyprivacy.txt: 10095) +.sapo.*./(.*/)?clk\?u= +# ||rtp.pt/common/js/analytics.js (easyprivacy.txt: 10094) +.rtp.pt/common/js/analytics\.js +# ||metrics.uol.com.br^ (easyprivacy.txt: 10093) +.metrics.uol.com.br +# ||log.r7.com^ (easyprivacy.txt: 10092) +.log.r7.com +# ||lancenet.com.br/pw.js (easyprivacy.txt: 10091) +.lancenet.com.br/pw\.js +# ||iol.pt/js/analytics.js (easyprivacy.txt: 10090) +.iol.pt/js/analytics\.js +# ||g.bitmag.com.br^ (easyprivacy.txt: 10089) +.g.bitmag.com.br +# ||g.bit.pt^ (easyprivacy.txt: 10088) +.g.bit.pt +# ||dna.uol.com.br^ (easyprivacy.txt: 10087) +.dna.uol.com.br +# ||dejavu.mercadolivre.com.br^ (easyprivacy.txt: 10086) +.dejavu.mercadolivre.com.br +# ||click.uol.com.br^ (easyprivacy.txt: 10085) +.click.uol.com.br +# ||wp.pl/?rid= (easyprivacy.txt: 10083) +.wp.pl/\?rid= +# ||stats.teledyski.info^ (easyprivacy.txt: 10082) +.stats.teledyski.info +# ||squid.gazeta.pl/bdtrck/ (easyprivacy.txt: 10081) +.squid.gazeta.pl/bdtrck/ +# ||rek.www.wp.pl^ (easyprivacy.txt: 10080) +.rek.www.wp.pl +# ||nasza-klasa.pl^*/pp_gemius (easyprivacy.txt: 10079) +.nasza-klasa.pl/.*/pp_gemius +# ||mklik.gazeta.pl^ (easyprivacy.txt: 10078) +.mklik.gazeta.pl +# ||kropka.onet.pl^ (easyprivacy.txt: 10077) +.kropka.onet.pl +# ||dot.wp.pl^ (easyprivacy.txt: 10076) +.dot.wp.pl +# ||analytics.gazeta.pl^ (easyprivacy.txt: 10075) +.analytics.gazeta.pl +# |http://x.o2.pl^ (easyprivacy.txt: 10074) +x.o2.pl +# ||irib.ir/counter/stat.js (easyprivacy.txt: 10072) +.irib.ir/counter/stat\.js +# ||irib.ir/count.php? (easyprivacy.txt: 10071) +.irib.ir/count\.php\? +# ||webhit.aftenposten.no^ (easyprivacy.txt: 10069) +.webhit.aftenposten.no +# ||vg.no/stats/ (easyprivacy.txt: 10068) +.vg.no/stats/ +# ||nrk.no^*/stats/ (easyprivacy.txt: 10067) +.nrk.no/.*/stats/ +# ||fusion.nettavisen.no^ (easyprivacy.txt: 10066) +.fusion.nettavisen.no +# ||click.vgnett.no^ (easyprivacy.txt: 10065) +.click.vgnett.no +# ||tanks.lv/top/stats.php (easyprivacy.txt: 10063) +.tanks.lv/top/stats\.php +# ||t.delfi.lv/_a? (easyprivacy.txt: 10062) +.t.delfi.lv/_a\? +# ||stats.tunt.lv^ (easyprivacy.txt: 10061) +.stats.tunt.lv +# ||ss.lv/counter/ (easyprivacy.txt: 10060) +.ss.lv/counter/ +# ||reklama.lv/services/espy.php (easyprivacy.txt: 10059) +.reklama.lv/services/espy\.php +# ||insbergs.lv/ins_statistics/ (easyprivacy.txt: 10058) +.insbergs.lv/ins_statistics/ +# ||inbox.lv^*/ga.js (easyprivacy.txt: 10057) +.inbox.lv/.*/ga\.js +# ||e-spy.petit.lv^ (easyprivacy.txt: 10056) +.e-spy.petit.lv +# ||diena.lv/statistics/ (easyprivacy.txt: 10055) +.diena.lv/statistics/ +# ||delphi.lv/t/t.js (easyprivacy.txt: 10054) +.delphi.lv/t/t\.js +# ||delfi.lv/t/p.js (easyprivacy.txt: 10053) +.delfi.lv/t/p\.js +# ||cv.ee/static/stat.php (easyprivacy.txt: 10052) +.cv.ee/static/stat\.php +# ||ytn.co.kr/_comm/ylog.php? (easyprivacy.txt: 10050) +.ytn.co.kr/_comm/ylog\.php\? +# ||lcs.naver.com^ (easyprivacy.txt: 10048) +.lcs.naver.com +# ||hitweb2.chosun.com^ (easyprivacy.txt: 10047) +.hitweb2.chosun.com +# ||hits.zdnet.co.kr^ (easyprivacy.txt: 10046) +.hits.zdnet.co.kr +# ||gather.hankyung.com^ (easyprivacy.txt: 10045) +.gather.hankyung.com +# ||chosun.com/hitlog/ (easyprivacy.txt: 10044) +.chosun.com/hitlog/ +# ||yahoo.co.jp/b?p= (easyprivacy.txt: 10041) +.yahoo.co.jp/b\?p= +# ||visit.geocities.jp^ (easyprivacy.txt: 10040) +.visit.geocities.jp +# ||seesaawiki.jp/img/rainman.gif? (easyprivacy.txt: 10039) +.seesaawiki.jp/img/rainman\.gif\? +# ||mainichi.jp^*/null.gif? (easyprivacy.txt: 10038) +.mainichi.jp/.*/null\.gif\? +# ||i2i.jp/bin/ (easyprivacy.txt: 10037) +.i2i.jp/bin/ +# ||goo.ne.jp^*/vltracedmd.js (easyprivacy.txt: 10036) +.goo.ne.jp/.*/vltracedmd\.js +# ||fujitv.co.jp/pc/space.gif? (easyprivacy.txt: 10035) +.fujitv.co.jp/pc/space\.gif\? +# ||fls-fe.amazon.co.jp^ (easyprivacy.txt: 10034) +.fls-fe.amazon.co.jp +# ||carview.co.jp/include_api/log/ (easyprivacy.txt: 10033) +.carview.co.jp/include_api/log/ +# ||analyzer2.fc2.com^ (easyprivacy.txt: 10032) +.analyzer2.fc2.com +# ||analyzer.fc2.com^ (easyprivacy.txt: 10031) +.analyzer.fc2.com +# ||analytics.cocolog-nifty.com^ (easyprivacy.txt: 10030) +.analytics.cocolog-nifty.com +# ||ameblo.jp/accesslog/ (easyprivacy.txt: 10029) +.ameblo.jp/accesslog/ +# ||yachtingnetwork.it/stat/ (easyprivacy.txt: 10027) +.yachtingnetwork.it/stat/ +# ||volkswagen-italia.it^*/tracking/ (easyprivacy.txt: 10026) +.volkswagen-italia.it/.*/tracking/ +# ||virgilio.it/clientinfo.gif? (easyprivacy.txt: 10025) +.virgilio.it/clientinfo\.gif\? +# ||videogame.it/a/logview/ (easyprivacy.txt: 10024) +.videogame.it/a/logview/ +# ||video.mediaset.it/polymediashowanalytics/ (easyprivacy.txt: 10023) +.video.mediaset.it/polymediashowanalytics/ +# ||trk.m.libero.it^ (easyprivacy.txt: 10022) +.trk.m.libero.it +# ||tracking.gruppo.mps.it^ (easyprivacy.txt: 10021) +.tracking.gruppo.mps.it +# ||track.tesiteca.it^ (easyprivacy.txt: 10020) +.track.tesiteca.it +# ||topolino.it^*/omniture.php? (easyprivacy.txt: 10019) +.topolino.it/.*/omniture\.php\? +# ||tiscali.it/banner-tiscali/stats.html? (easyprivacy.txt: 10018) +.tiscali.it/banner-tiscali/stats\.html\? +# ||stats.splinder.com^ (easyprivacy.txt: 10017) +.stats.splinder.com +# ||spaziogames.it/ajax/player_impression.ashx? (easyprivacy.txt: 10016) +.spaziogames.it/ajax/player_impression\.ashx\? +# ||smsaffari.it/count_new.php? (easyprivacy.txt: 10015) +.smsaffari.it/count_new\.php\? +# ||siteinfo.libero.it^ (easyprivacy.txt: 10014) +.siteinfo.libero.it +# ||servizi.unionesarda.it/controlli/ (easyprivacy.txt: 10013) +.servizi.unionesarda.it/controlli/ +# ||seat.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10012) +.seat.it/cgi-bin/getcod\.cgi\? +# ||quattroruote.it/log.htm? (easyprivacy.txt: 10011) +.quattroruote.it/log\.htm\? +# ||pornolupo.org/track.js (easyprivacy.txt: 10010) +.pornolupo.org/track\.js +# ||paginegialle.it/cgi-bin/jimpres.cgi? (easyprivacy.txt: 10009) +.paginegialle.it/cgi-bin/jimpres\.cgi\? +# ||paginegialle.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10008) +.paginegialle.it/cgi-bin/getcod\.cgi\? +# ||mtv.it/flux/trackingcodes/ (easyprivacy.txt: 10007) +.mtv.it/flux/trackingcodes/ +# ||mediaset.it/cgi-bin/getcod.cgi? (easyprivacy.txt: 10006) +.mediaset.it/cgi-bin/getcod\.cgi\? +# ||livestats.la7.tv^ (easyprivacy.txt: 10005) +.livestats.la7.tv +# ||libero.it^*/counter.php? (easyprivacy.txt: 10004) +.libero.it/.*/counter\.php\? +# ||libero.it/search/abin/ajaxtrace? (easyprivacy.txt: 10003) +.libero.it/search/abin/ajaxtrace\? +# ||libero.it/cgi-bin/cdcountersp.cgi? (easyprivacy.txt: 10002) +.libero.it/cgi-bin/cdcountersp\.cgi\? +# ||libero.it/cgi-bin/cdcounter.cgi? (easyprivacy.txt: 10001) +.libero.it/cgi-bin/cdcounter\.cgi\? +# ||libero.it/cgi-bin/ajaxtrace? (easyprivacy.txt: 10000) +.libero.it/cgi-bin/ajaxtrace\? +# ||libero.it//js/comscore/ (easyprivacy.txt: 9999) +# ||la7.tv/ricerca/livestats.php? (easyprivacy.txt: 9998) +.la7.tv/ricerca/livestats\.php\? +# ||la7.it/js-live/nielsen1.js (easyprivacy.txt: 9997) +.la7.it/js-live/nielsen1\.js +# ||la7.it/js-live/livestats.js (easyprivacy.txt: 9996) +.la7.it/js-live/livestats\.js +# ||joka.it/inquiero/isapi/csf.dll? (easyprivacy.txt: 9995) +.joka.it/inquiero/isapi/csf\.dll\? +# ||getscreensaver.it/statistiche/ (easyprivacy.txt: 9994) +.getscreensaver.it/statistiche/ +# ||gazzetta.it^*/stats.php? (easyprivacy.txt: 9993) +.gazzetta.it/.*/stats\.php\? +# ||g.techweekeurope.it^ (easyprivacy.txt: 9992) +.g.techweekeurope.it +# ||fls-eu.amazon.it^ (easyprivacy.txt: 9991) +.fls-eu.amazon.it +# ||emng.libero.it^ (easyprivacy.txt: 9990) +.emng.libero.it +# ||deagostinipassion.it/collezioni/analytics.js (easyprivacy.txt: 9989) +.deagostinipassion.it/collezioni/analytics\.js +# ||click.tv.repubblica.it^ (easyprivacy.txt: 9988) +.click.tv.repubblica.it +# ||ciao.it/flextag/ (easyprivacy.txt: 9987) +.ciao.it/flextag/ +# ||c-date.it^*/tracking2/tr.js (easyprivacy.txt: 9986) +.c-date.it/.*/tracking2/tr\.js +# ||c-date.it/tracking? (easyprivacy.txt: 9985) +.c-date.it/tracking\? +# ||bachecaannunci.it/statins3.php? (easyprivacy.txt: 9984) +.bachecaannunci.it/statins3\.php\? +# ||analytics.tio.ch^ (easyprivacy.txt: 9983) +.analytics.tio.ch +# ||altervista.org^*/tb_hits_ (easyprivacy.txt: 9982) +.altervista.org/.*/tb_hits_ +# ||altervista.org/stats/ (easyprivacy.txt: 9981) +.altervista.org/stats/ +# ||altervista.org/js_tags/contatore.js (easyprivacy.txt: 9980) +.altervista.org/js_tags/contatore\.js +# ||altervista.org/js/contatore.js (easyprivacy.txt: 9979) +.altervista.org/js/contatore\.js +# ||altervista.org/fcgi/counter.pl? (easyprivacy.txt: 9978) +.altervista.org/fcgi/counter\.pl\? +# ||videa.hu/flvplayer_setcookie.php? (easyprivacy.txt: 9976) +.videa.hu/flvplayer_setcookie\.php\? +# ||walla.co.il/impression/ (easyprivacy.txt: 9974) +.walla.co.il/impression/ +# ||walla.co.il/CountsHP.asp? (easyprivacy.txt: 9973) +.walla.co.il/CountsHP\.asp\? +# ||stats.mako.co.il^ (easyprivacy.txt: 9972) +.stats.mako.co.il +# ||nana10.co.il/statistics/ (easyprivacy.txt: 9971) +.nana10.co.il/statistics/ +# ||inn.co.il/Controls/HPJS.ashx?act=log (easyprivacy.txt: 9970) +.inn.co.il/Controls/HPJS\.ashx\?act=log +# ||events.walla.co.il/events.asp (easyprivacy.txt: 9969) +.events.walla.co.il/events\.asp +# ||cellstats.mako.co.il^ (easyprivacy.txt: 9968) +.cellstats.mako.co.il +# ||bravo.israelweather.co.il^ (easyprivacy.txt: 9967) +.bravo.israelweather.co.il +# ||vidads.gr/imp/ (easyprivacy.txt: 9965) +.vidads.gr/imp/ +# ||ts.fi^*/spring.js (easyprivacy.txt: 9963) +.ts.fi/.*/spring\.js +# ||tiede.fi^*/zig.js (easyprivacy.txt: 9962) +.tiede.fi/.*/zig\.js +# ||stat.mtv3.fi^ (easyprivacy.txt: 9961) +.stat.mtv3.fi +# ||snstatic.fi^*/zig.js (easyprivacy.txt: 9960) +.snstatic.fi/.*/zig\.js +# ||sanoma.fi^*/zig.js (easyprivacy.txt: 9959) +.sanoma.fi/.*/zig\.js +# ||oikotie.fi^*/zig.js (easyprivacy.txt: 9958) +.oikotie.fi/.*/zig\.js +# ||mtv3.fi/remarketing.js (easyprivacy.txt: 9957) +.mtv3.fi/remarketing\.js +# ||iltasanomat.fi^*/zig_c.min.js (easyprivacy.txt: 9956) +.iltasanomat.fi/.*/zig_c\.min\.js +# ||huuto.net/js/analytic/ (easyprivacy.txt: 9955) +.huuto.net/js/analytic/ +# ||autobild.fi/zig.js (easyprivacy.txt: 9954) +.autobild.fi/zig\.js +# ||analytics.sanoma.fi^ (easyprivacy.txt: 9953) +.analytics.sanoma.fi +# ||3t.fi^*/zig.js (easyprivacy.txt: 9952) +.3t.fi/.*/zig\.js +# ||webstatistieken.xs4all.nl^ (easyprivacy.txt: 9950) +.webstatistieken.xs4all.nl +# ||vroom.be^*/stats.php? (easyprivacy.txt: 9949) +.vroom.be/.*/stats\.php\? +# ||vroom.be^*/stats.js? (easyprivacy.txt: 9948) +.vroom.be/.*/stats\.js\? +# ||simyo.nl/js/tracking.js? (easyprivacy.txt: 9947) +.simyo.nl/js/tracking\.js\? +# ||sanoma.nl/pixel/ (easyprivacy.txt: 9946) +.sanoma.nl/pixel/ +# ||rtl.nl/system/track/ (easyprivacy.txt: 9945) +.rtl.nl/system/track/ +# ||marktplaats.nl/add_counter_image. (easyprivacy.txt: 9944) +.marktplaats.nl/add_counter_image\. +# ||logs.ggweb.nl^ (easyprivacy.txt: 9943) +.logs.ggweb.nl +# ||klik.nrc.nl/ping? (easyprivacy.txt: 9942) +.klik.nrc.nl/ping\? +# ||o2.cz^*-ga_o2cz_bundle.js? (easyprivacy.txt: 9940) +.o2.cz/.*-ga_o2cz_bundle\.js\? +# ||kbmg.cz/tracker.js (easyprivacy.txt: 9939) +.kbmg.cz/tracker\.js +# ||blesk.cz/js/tracker.js (easyprivacy.txt: 9938) +.blesk.cz/js/tracker\.js +# ||jutarnji.hr/template/js/eph_analytics.js (easyprivacy.txt: 9936) +.jutarnji.hr/template/js/eph_analytics\.js +# ||dnevnik.hr/bin/usrtrck-new.php? (easyprivacy.txt: 9935) +.dnevnik.hr/bin/usrtrck-new\.php\? +# ||youku.com^*/click.php? (easyprivacy.txt: 9933) +.youku.com/.*/click\.php\? +# ||youku.com/yplaylog? (easyprivacy.txt: 9932) +.youku.com/yplaylog\? +# ||youku.com/ykvvlog? (easyprivacy.txt: 9931) +.youku.com/ykvvlog\? +# ||youku.com/compvlog? (easyprivacy.txt: 9930) +.youku.com/compvlog\? +# ||youdao.com/imp/cac.js (easyprivacy.txt: 9929) +.youdao.com/imp/cac\.js +# ||youdao.com/cf.gif? (easyprivacy.txt: 9928) +.youdao.com/cf\.gif\? +# ||wumii.com/images/pixel.png (easyprivacy.txt: 9927) +.wumii.com/images/pixel\.png +# ||wenku.baidu.com/tongji/ (easyprivacy.txt: 9926) +.wenku.baidu.com/tongji/ +# ||webstat.kuwo.cn^ (easyprivacy.txt: 9925) +.webstat.kuwo.cn +# ||webclick.yeshj.com^ (easyprivacy.txt: 9924) +.webclick.yeshj.com +# ||weather.com.cn/a1.js (easyprivacy.txt: 9923) +.weather.com.cn/a1\.js +# ||vatrack.hinet.net^ (easyprivacy.txt: 9922) +.vatrack.hinet.net +# ||v.blog.sohu.com/dostat.do? (easyprivacy.txt: 9921) +.v.blog.sohu.com/dostat\.do\? +# ||utrack.hexun.com^ (easyprivacy.txt: 9920) +.utrack.hexun.com +# ||uestat.video.qiyi.com^ (easyprivacy.txt: 9918) +.uestat.video.qiyi.com +# ||tv.sohu.com/upload/trace/ (easyprivacy.txt: 9917) +.tv.sohu.com/upload/trace/ +# ||tracker.live.tudou.com^ (easyprivacy.txt: 9916) +.tracker.live.tudou.com +# ||top.baidu.com/js/nsclick.js (easyprivacy.txt: 9915) +.top.baidu.com/js/nsclick\.js +# ||tongji2.vip.duba.net/__infoc.gif? (easyprivacy.txt: 9914) +.tongji2.vip.duba.net/__infoc\.gif\? +# ||tmall.com/add? (easyprivacy.txt: 9913) +.tmall.com/add\? +# ||titan24.com/scripts/stats.js (easyprivacy.txt: 9912) +.titan24.com/scripts/stats\.js +# ||tinglog.baidu.com^ (easyprivacy.txt: 9911) +.tinglog.baidu.com +# ||tf.360.cn^ (easyprivacy.txt: 9910) +.tf.360.cn +# ||stats.tudou.com^ (easyprivacy.txt: 9909) +.stats.tudou.com +# ||stats.autohome.com.cn^ (easyprivacy.txt: 9908) +.stats.autohome.com.cn +# ||statistic.takungpao.com^ (easyprivacy.txt: 9907) +.statistic.takungpao.com +# ||statistic.qzone.qq.com^ (easyprivacy.txt: 9906) +.statistic.qzone.qq.com +# ||static.qiyi.com/js/pingback/ (easyprivacy.txt: 9905) +.static.qiyi.com/js/pingback/ +# ||stat.zol.com.cn^ (easyprivacy.txt: 9904) +.stat.zol.com.cn +# ||stat.xunlei.com^ (easyprivacy.txt: 9903) +.stat.xunlei.com +# ||stat.uuu9.com^ (easyprivacy.txt: 9902) +.stat.uuu9.com +# ||stat.tudou.com^ (easyprivacy.txt: 9901) +.stat.tudou.com +# ||stat.tianya.cn^ (easyprivacy.txt: 9900) +.stat.tianya.cn +# ||stat.stheadline.com^ (easyprivacy.txt: 9899) +.stat.stheadline.com +# ||stat.pptv.com^ (easyprivacy.txt: 9898) +.stat.pptv.com +# ||stat.ppstream.com^ (easyprivacy.txt: 9897) +.stat.ppstream.com +# ||stat.ku6.com^ (easyprivacy.txt: 9896) +.stat.ku6.com +# ||stat.iteye.com^ (easyprivacy.txt: 9895) +.stat.iteye.com +# ||stat.hudong.com^ (easyprivacy.txt: 9894) +.stat.hudong.com +# ||stat.funshion.net^ (easyprivacy.txt: 9893) +.stat.funshion.net +# ||stat.caijing.com.cn^ (easyprivacy.txt: 9892) +.stat.caijing.com.cn +# ||stat.bilibili.tv^ (easyprivacy.txt: 9891) +.stat.bilibili.tv +# ||stat.55bbs.com^ (easyprivacy.txt: 9890) +.stat.55bbs.com +# ||stat.1688.com^ (easyprivacy.txt: 9889) +.stat.1688.com +# ||stadig.ifeng.com^ (easyprivacy.txt: 9888) +.stadig.ifeng.com +# ||sta.ifeng.com^ (easyprivacy.txt: 9887) +.sta.ifeng.com +# ||st.vq.ku6.cn^ (easyprivacy.txt: 9886) +.st.vq.ku6.cn +# ||soufun.com/stats/ (easyprivacy.txt: 9885) +.soufun.com/stats/ +# ||soufun.com/click/ (easyprivacy.txt: 9884) +.soufun.com/click/ +# ||sohu.com/pv? (easyprivacy.txt: 9883) +.sohu.com/pv\? +# ||sohu.com/ctr.gif? (easyprivacy.txt: 9882) +.sohu.com/ctr\.gif\? +# ||sohu.com.cn/hdpb.gif? (easyprivacy.txt: 9881) +.sohu.com.cn/hdpb\.gif\? +# ||shrek.6.cn^ (easyprivacy.txt: 9880) +.shrek.6.cn +# ||sclick.baidu.com^ (easyprivacy.txt: 9879) +.sclick.baidu.com +# ||s.renren.com^ (easyprivacy.txt: 9878) +.s.renren.com +# ||s.qhupdate.com^ (easyprivacy.txt: 9877) +.s.qhupdate.com +# ||s.pixfs.net/visitor.pixplug.in/ (easyprivacy.txt: 9876) +.s.pixfs.net/visitor\.pixplug\.in/ +# ||s.pixfs.net/js/pixlogger.min.js (easyprivacy.txt: 9875) +.s.pixfs.net/js/pixlogger\.min\.js +# ||s.360.cn^ (easyprivacy.txt: 9874) +.s.360.cn +# ||rgd.com.cn/counter/ (easyprivacy.txt: 9873) +.rgd.com.cn/counter/ +# ||report.qq.com^ (easyprivacy.txt: 9872) +.report.qq.com +# ||rcgi.video.qq.com^ (easyprivacy.txt: 9871) +.rcgi.video.qq.com +# ||ranking.ynet.com^ (easyprivacy.txt: 9870) +.ranking.ynet.com +# ||qq.com/p? (easyprivacy.txt: 9869) +.qq.com/p\? +# ||pingjs.qq.com^ (easyprivacy.txt: 9868) +.pingjs.qq.com +# ||pingback.sogou.com^ (easyprivacy.txt: 9867) +.pingback.sogou.com +# ||pb.i.sogou.com^ (easyprivacy.txt: 9866) +.pb.i.sogou.com +# ||pan.baidu.com/api/analytics? (easyprivacy.txt: 9865) +.pan.baidu.com/api/analytics\? +# ||p-log.ykimg.com^ (easyprivacy.txt: 9864) +.p-log.ykimg.com +# ||on.cc^*/checkrev.gif? (easyprivacy.txt: 9863) +.on.cc/.*/checkrev\.gif\? +# ||nstat.tudou.com^ (easyprivacy.txt: 9862) +.nstat.tudou.com +# ||nextmedia.com/1x1.gif? (easyprivacy.txt: 9861) +.nextmedia.com/1x1\.gif\? +# ||narutom.com/stat.js (easyprivacy.txt: 9860) +.narutom.com/stat\.js +# ||luobo.tv/staticts.html (easyprivacy.txt: 9859) +.luobo.tv/staticts\.html +# ||logstat.caixin.com^ (easyprivacy.txt: 9858) +.logstat.caixin.com +# ||logs.live.tudou.com^ (easyprivacy.txt: 9857) +.logs.live.tudou.com +# ||logs.51cto.com^ (easyprivacy.txt: 9856) +.logs.51cto.com +# ||loginlog.sdo.com^ (easyprivacy.txt: 9855) +.loginlog.sdo.com +# ||log1.17173.com^ (easyprivacy.txt: 9854) +.log1.17173.com +# ||log.ynet.com^ (easyprivacy.txt: 9853) +.log.ynet.com +# ||log.kuwo.cn^ (easyprivacy.txt: 9852) +.log.kuwo.cn +# ||log.51cto.com^ (easyprivacy.txt: 9851) +.log.51cto.com +# ||log*.ku6.com^ (easyprivacy.txt: 9850) +.log*./.*\.ku6\.com[^\w%.-] +.log*.ku6.com +# ||ku6.com/ku6.gif? (easyprivacy.txt: 9849) +.ku6.com/ku6\.gif\? +# ||jscss.kdslife.com/club/html/count/PChome_Count.js (easyprivacy.txt: 9848) +.jscss.kdslife.com/club/html/count/PChome_Count\.js +# ||js.soufunimg.com/count/ (easyprivacy.txt: 9847) +.js.soufunimg.com/count/ +# ||js.sohu.com/wrating0820.js (easyprivacy.txt: 9846) +.js.sohu.com/wrating0820\.js +# ||js.sohu.com/track/ (easyprivacy.txt: 9845) +.js.sohu.com/track/ +# ||js.kuwo.cn/stat/ (easyprivacy.txt: 9844) +.js.kuwo.cn/stat/ +# ||hk.ndx.nextmedia.com^ (easyprivacy.txt: 9843) +.hk.ndx.nextmedia.com +# ||his.tv.sohu.com/his/ping.do? (easyprivacy.txt: 9842) +.his.tv.sohu.com/his/ping\.do\? +# ||hdslb.com/images/isptrack.js (easyprivacy.txt: 9841) +.hdslb.com/images/isptrack\.js +# ||fls-cn.amazon.cn^ (easyprivacy.txt: 9840) +.fls-cn.amazon.cn +# ||firefoxchina.cn/*/trac.js (easyprivacy.txt: 9839) +.firefoxchina.cn/.*/trac\.js +# ||eclick.baidu.com^ (easyprivacy.txt: 9838) +.eclick.baidu.com +# ||ebook.tianya.cn/js/stat.js (easyprivacy.txt: 9837) +.ebook.tianya.cn/js/stat\.js +# ||eastmoney.com/counter.js? (easyprivacy.txt: 9836) +.eastmoney.com/counter\.js\? +# ||dwtracking.sdo.com^ (easyprivacy.txt: 9835) +.dwtracking.sdo.com +# ||duowan.com/public/s/market_count.js (easyprivacy.txt: 9834) +.duowan.com/public/s/market_count\.js +# ||duowan.com/duowan.js (easyprivacy.txt: 9833) +.duowan.com/duowan\.js +# ||docin.com/app/playerLoadLog/ (easyprivacy.txt: 9832) +.docin.com/app/playerLoadLog/ +# ||dmtracking.1688.com^ (easyprivacy.txt: 9831) +.dmtracking.1688.com +# ||dj.renren.com^ (easyprivacy.txt: 9830) +.dj.renren.com +# ||dc.letv.com^ (easyprivacy.txt: 9829) +.dc.letv.com +# ||dayoo.com/sta/da.js (easyprivacy.txt: 9828) +.dayoo.com/sta/da\.js +# ||cri.cn/wrating.js (easyprivacy.txt: 9827) +.cri.cn/wrating\.js +# ||cri.cn/a1.js (easyprivacy.txt: 9826) +.cri.cn/a1\.js +# ||counter.sina.com.cn/moodq? (easyprivacy.txt: 9825) +.counter.sina.com.cn/moodq\? +# ||count5.pconline.com.cn^ (easyprivacy.txt: 9824) +.count5.pconline.com.cn +# ||count.video.sina.com.cn^ (easyprivacy.txt: 9822) +.count.video.sina.com.cn +# ||count.qiannao.com^ (easyprivacy.txt: 9821) +.count.qiannao.com +# ||count.newhua.com^ (easyprivacy.txt: 9820) +.count.newhua.com +# ||count.joy.cn^ (easyprivacy.txt: 9818) +.count.joy.cn +# ||cnzz.com/stat. (easyprivacy.txt: 9817) +.cnzz.com/stat\. +# ||clkstat.qihoo.com^ (easyprivacy.txt: 9816) +.clkstat.qihoo.com +# ||cdn.baidupcs.com/monitor.jpg? (easyprivacy.txt: 9815) +.cdn.baidupcs.com/monitor\.jpg\? +# ||cast.ra.icast.cn^ (easyprivacy.txt: 9814) +.cast.ra.icast.cn +# ||btrace.qq.com^ (easyprivacy.txt: 9813) +.btrace.qq.com +# ||baofeng.com/script/baidu_ (easyprivacy.txt: 9812) +.baofeng.com/script/baidu_ +# ||baidu.com^*/w.gif? (easyprivacy.txt: 9811) +.baidu.com/.*/w\.gif\? +# ||baidu.com^*/s.gif? (easyprivacy.txt: 9810) +.baidu.com/.*/s\.gif\? +# ||baidu.com^*/c.gif? (easyprivacy.txt: 9809) +.baidu.com/.*/c\.gif\? +# ||baidu.com/tb/pms/img/st.gif? (easyprivacy.txt: 9808) +.baidu.com/tb/pms/img/st\.gif\? +# ||atm.youku.com^ (easyprivacy.txt: 9807) +.atm.youku.com +# ||analytics.zhihu.com^ (easyprivacy.txt: 9806) +.analytics.zhihu.com +# ||analytics.nextmedia.com^ (easyprivacy.txt: 9805) +.analytics.nextmedia.com +# ||analytics.163.com^ (easyprivacy.txt: 9804) +.analytics.163.com +# ||analy.qq.com^ (easyprivacy.txt: 9803) +.analy.qq.com +# ||adgeo.163.com^ (easyprivacy.txt: 9802) +.adgeo.163.com +# ||acfun.tv/api/count.aspx (easyprivacy.txt: 9801) +.acfun.tv/api/count\.aspx +# ||99sushe.com^*/stat.js (easyprivacy.txt: 9800) +.99sushe.com/.*/stat\.js +# ||591.com.tw/action/stat/ (easyprivacy.txt: 9799) +.591.com.tw/action/stat/ +# ||56img.com/script/fn/stat/ (easyprivacy.txt: 9798) +.56img.com/script/fn/stat/ +# ||55bbs.com/pv.js (easyprivacy.txt: 9797) +.55bbs.com/pv\.js +# ||17173.com/ping.js (easyprivacy.txt: 9796) +.17173.com/ping\.js +# ||counter.search.bg^ (easyprivacy.txt: 9793) +.counter.search.bg +# ||ratteb.com/js.js (easyprivacy.txt: 9791) +.ratteb.com/js\.js +# ||zonecss.fr/images/statscreen.gif? (easyprivacy.txt: 9789) +.zonecss.fr/images/statscreen\.gif\? +# ||zonecss.fr/images/stat_robocop.gif? (easyprivacy.txt: 9788) +.zonecss.fr/images/stat_robocop\.gif\? +# ||virginmobile.fr/ea.js (easyprivacy.txt: 9787) +.virginmobile.fr/ea\.js +# ||unblog.fr/cu.js (easyprivacy.txt: 9786) +.unblog.fr/cu\.js +# ||tracking.ha.rueducommerce.fr^ (easyprivacy.txt: 9785) +.tracking.ha.rueducommerce.fr +# ||tracking.cdiscount.com^ (easyprivacy.txt: 9784) +.tracking.cdiscount.com +# ||tracker.cds-tracking.com^ (easyprivacy.txt: 9783) +.tracker.cds-tracking.com +# ||tracker-id.cdiscount.com^ (easyprivacy.txt: 9782) +.tracker-id.cdiscount.com +# ||surace-jujitsu.fr/outils/compteur_php/ (easyprivacy.txt: 9781) +.surace-jujitsu.fr/outils/compteur_php/ +# ||stats1x1.kapaza.be^ (easyprivacy.txt: 9780) +.stats1x1.kapaza.be +# ||stat.webevolutis.com^ (easyprivacy.txt: 9779) +.stat.webevolutis.com +# ||sport365.fr/ea.js (easyprivacy.txt: 9778) +.sport365.fr/ea\.js +# ||sfr.fr/js/pent-stats.jsp (easyprivacy.txt: 9777) +.sfr.fr/js/pent-stats\.jsp +# ||rtl.fr/stats/ (easyprivacy.txt: 9776) +.rtl.fr/stats/ +# ||rtl.be^*/trkfblk.js (easyprivacy.txt: 9775) +.rtl.be/.*/trkfblk\.js +# ||r.orange.fr^ (easyprivacy.txt: 9774) +.r.orange.fr +# ||pagesjaunes.fr/crmmetrix/ (easyprivacy.txt: 9773) +.pagesjaunes.fr/crmmetrix/ +# ||pagesjaunes.fr/bva/track.js (easyprivacy.txt: 9772) +.pagesjaunes.fr/bva/track\.js +# ||p.pagesjaunes.fr^ (easyprivacy.txt: 9771) +.p.pagesjaunes.fr +# ||ovni9.com/suggestion/stats/ (easyprivacy.txt: 9770) +.ovni9.com/suggestion/stats/ +# ||orange.fr/track? (easyprivacy.txt: 9769) +.orange.fr/track\? +# ||nouvelobs.com/trafiz- (easyprivacy.txt: 9768) +.nouvelobs.com/trafiz- +# ||nouvelobs.com/tools/csrum.php (easyprivacy.txt: 9767) +.nouvelobs.com/tools/csrum\.php +# ||nouvelobs.com/scripts/stats.php? (easyprivacy.txt: 9766) +.nouvelobs.com/scripts/stats\.php\? +# ||lemde.fr^*/xiti/ (easyprivacy.txt: 9765) +.lemde.fr/.*/xiti/ +# ||lemde.fr^*/tracking/ (easyprivacy.txt: 9764) +.lemde.fr/.*/tracking/ +# ||lemde.fr^*/metrics/ (easyprivacy.txt: 9763) +.lemde.fr/.*/metrics/ +# ||lecho.be/fb/? (easyprivacy.txt: 9762) +.lecho.be/fb/\? +# ||lavenircdn.net^*/analytics.js? (easyprivacy.txt: 9761) +.lavenircdn.net/.*/analytics\.js\? +# ||hit.leboncoin.fr^ (easyprivacy.txt: 9760) +.hit.leboncoin.fr +# ||gstat.orange.fr^ (easyprivacy.txt: 9759) +.gstat.orange.fr +# ||grazia.fr/ea.js (easyprivacy.txt: 9758) +.grazia.fr/ea\.js +# ||g.itespresso.fr^ (easyprivacy.txt: 9757) +.g.itespresso.fr +# ||fls-eu.amazon.fr^ (easyprivacy.txt: 9756) +.fls-eu.amazon.fr +# ||eultech.fnac.com^ (easyprivacy.txt: 9755) +.eultech.fnac.com +# ||editeurjavascript.com/hit-parade.php (easyprivacy.txt: 9754) +.editeurjavascript.com/hit-parade\.php +# ||ea.rueducommerce.fr^ (easyprivacy.txt: 9753) +.ea.rueducommerce.fr +# ||ea.monsieurmanuel.com^ (easyprivacy.txt: 9752) +.ea.monsieurmanuel.com +# ||ea.lexpress.fr^ (easyprivacy.txt: 9751) +.ea.lexpress.fr +# ||ea.jeuxvideopc.com^ (easyprivacy.txt: 9750) +.ea.jeuxvideopc.com +# ||ea.clubic.com^ (easyprivacy.txt: 9749) +.ea.clubic.com +# ||developpez.com/public/js/track.js (easyprivacy.txt: 9748) +.developpez.com/public/js/track\.js +# ||clubic.com/editorial/publier_count.php? (easyprivacy.txt: 9747) +.clubic.com/editorial/publier_count\.php\? +# ||bloguez.com/manager/compteurs/ (easyprivacy.txt: 9746) +.bloguez.com/manager/compteurs/ +# ||azurewebsites.net^*/mnr-mediametrie-tracking- (easyprivacy.txt: 9745) +.azurewebsites.net/.*/mnr-mediametrie-tracking- +# ||arte.tv/includes/xiti/ (easyprivacy.txt: 9744) +.arte.tv/includes/xiti/ +# ||allocine.fr/ws/geocoding.ashx (easyprivacy.txt: 9743) +.allocine.fr/ws/geocoding\.ashx +# ||zeit.de/js/rsa2.js (easyprivacy.txt: 9741) +.zeit.de/js/rsa2\.js +# ||zeit.de/js/rsa.js (easyprivacy.txt: 9740) +.zeit.de/js/rsa\.js +# ||zdf.de^*/trackingivw? (easyprivacy.txt: 9739) +.zdf.de/.*/trackingivw\? +# ||zdf.de^*/tracking? (easyprivacy.txt: 9738) +.zdf.de/.*/tracking\? +# ||xtranews.de/counter/ (easyprivacy.txt: 9737) +.xtranews.de/counter/ +# ||xara.hse24.de^ (easyprivacy.txt: 9736) +.xara.hse24.de +# ||wiwo.de/analytics/ (easyprivacy.txt: 9735) +.wiwo.de/analytics/ +# ||wirtschaftspresse.biz/pshb? (easyprivacy.txt: 9734) +.wirtschaftspresse.biz/pshb\? +# ||wienerzeitung.at/__webtrends/ (easyprivacy.txt: 9733) +.wienerzeitung.at/__webtrends/ +# ||wetter.de/js/tracking.js (easyprivacy.txt: 9732) +.wetter.de/js/tracking\.js +# ||wer-weiss-was.de/indication/clue_*.gif? (easyprivacy.txt: 9731) +.wer-weiss-was.de/indication/clue_.*\.gif\? +# ||webts.adac.de^ (easyprivacy.txt: 9730) +.webts.adac.de +# ||webnews.de^*/loglib.js (easyprivacy.txt: 9729) +.webnews.de/.*/loglib\.js +# ||web.de/pic? (easyprivacy.txt: 9728) +.web.de/pic\? +# ||web.de/ivw/cp/ (easyprivacy.txt: 9727) +.web.de/ivw/cp/ +# ||web-track.telekom-dienste.de^ (easyprivacy.txt: 9726) +.web-track.telekom-dienste.de +# ||wdm.map24.com^ (easyprivacy.txt: 9725) +.wdm.map24.com +# ||viviano.de/cgi-bin/stat_gateway.cgi? (easyprivacy.txt: 9724) +.viviano.de/cgi-bin/stat_gateway\.cgi\? +# ||vip.de^*/tracking.js (easyprivacy.txt: 9723) +.vip.de/.*/tracking\.js +# ||unser-star-fuer-oslo.de^*/stats.php (easyprivacy.txt: 9722) +.unser-star-fuer-oslo.de/.*/stats\.php +# ||ui-portal.de/brbtpixel/ (easyprivacy.txt: 9721) +.ui-portal.de/brbtpixel/ +# ||tvcommunity.at/filmpicture.aspx?count=1& (easyprivacy.txt: 9720) +.tvcommunity.at/filmpicture\.aspx\?count=1& +# ||ts.rtl.de^ (easyprivacy.txt: 9719) +.ts.rtl.de +# ||ts.otto.de^ (easyprivacy.txt: 9718) +.ts.otto.de +# ||ts.faz.net^ (easyprivacy.txt: 9717) +.ts.faz.net +# ||tracking.tchibo.de^ (easyprivacy.txt: 9716) +.tracking.tchibo.de +# ||tracking.statravel.de^ (easyprivacy.txt: 9715) +.tracking.statravel.de +# ||tracking.sport1.de^ (easyprivacy.txt: 9714) +.tracking.sport1.de +# ||tracking.oe24.at^ (easyprivacy.txt: 9713) +.tracking.oe24.at +# ||tracking.netbank.de^ (easyprivacy.txt: 9712) +.tracking.netbank.de +# ||tracking.mobile.de^ (easyprivacy.txt: 9711) +.tracking.mobile.de +# ||tracking.kurier.at^ (easyprivacy.txt: 9710) +.tracking.kurier.at +# ||tracking.hrs.de^ (easyprivacy.txt: 9709) +.tracking.hrs.de +# ||tracking.beilagen-prospekte.de^ (easyprivacy.txt: 9708) +.tracking.beilagen-prospekte.de +# ||tracking.autoscout24.com^ (easyprivacy.txt: 9707) +.tracking.autoscout24.com +# ||trackerstatistik.init-ag.de^ (easyprivacy.txt: 9706) +.trackerstatistik.init-ag.de +# ||track.cinestar.de^ (easyprivacy.txt: 9705) +.track.cinestar.de +# ||tr.werkenntwen.de^ (easyprivacy.txt: 9704) +.tr.werkenntwen.de +# ||topnews.de^*/aws.cgi? (easyprivacy.txt: 9703) +.topnews.de/.*/aws\.cgi\? +# ||topnews.de/aws.js (easyprivacy.txt: 9702) +.topnews.de/aws\.js +# ||textundblog.de/powercounter.js (easyprivacy.txt: 9701) +.textundblog.de/powercounter\.js +# ||talkline.de^*/count.talkline.js (easyprivacy.txt: 9700) +.talkline.de/.*/count\.talkline\.js +# ||tagesspiegel.de/analytics/ (easyprivacy.txt: 9699) +.tagesspiegel.de/analytics/ +# ||t-online.de^*/stats.js?track= (easyprivacy.txt: 9698) +.t-online.de/.*/stats\.js\?track= +# ||t-online.de^*/noresult.js?track= (easyprivacy.txt: 9697) +.t-online.de/.*/noresult\.js\?track= +# ||superfunblog.com/stats/stats.php (easyprivacy.txt: 9696) +.superfunblog.com/stats/stats\.php +# ||suite101.de/tracking/ (easyprivacy.txt: 9695) +.suite101.de/tracking/ +# ||suedkurier.de/al/analytics/ (easyprivacy.txt: 9694) +.suedkurier.de/al/analytics/ +# ||stats.daserste.de^ (easyprivacy.txt: 9693) +.stats.daserste.de +# ||stats.bmw.de^ (easyprivacy.txt: 9692) +.stats.bmw.de +# ||sportal.de/js/cf.analytics.js (easyprivacy.txt: 9690) +.sportal.de/js/cf\.analytics\.js +# ||spiegel.de^*/statistic/ (easyprivacy.txt: 9689) +.spiegel.de/.*/statistic/ +# ||shortnews.de/iframes/view_news.cfm? (easyprivacy.txt: 9688) +.shortnews.de/iframes/view_news\.cfm\? +# ||secreta.de/tinc? (easyprivacy.txt: 9687) +.secreta.de/tinc\? +# ||salzburg.com/nwas/count.php? (easyprivacy.txt: 9686) +.salzburg.com/nwas/count\.php\? +# ||s.fsphp.t-online.de^ (easyprivacy.txt: 9685) +.s.fsphp.t-online.de +# ||rwt.reichelt.de^ (easyprivacy.txt: 9684) +.rwt.reichelt.de +# ||rtlradio.lu/stats.php? (easyprivacy.txt: 9683) +.rtlradio.lu/stats\.php\? +# ||rtlradio.de/stats.php? (easyprivacy.txt: 9682) +.rtlradio.de/stats\.php\? +# ||rtl.de/tools/count/ (easyprivacy.txt: 9681) +.rtl.de/tools/count/ +# ||rtl.de/count/ut/x.gif? (easyprivacy.txt: 9680) +.rtl.de/count/ut/x\.gif\? +# ||rl.heise.de^ (easyprivacy.txt: 9679) +.rl.heise.de +# ||rhein-zeitung.de^*/picksel/ (easyprivacy.txt: 9678) +.rhein-zeitung.de/.*/picksel/ +# ||remixshare.com/stat/ (easyprivacy.txt: 9677) +.remixshare.com/stat/ +# ||rem-track.bild.de^ (easyprivacy.txt: 9676) +.rem-track.bild.de +# ||quoka.de^*/wtlog_02.js (easyprivacy.txt: 9675) +.quoka.de/.*/wtlog_02\.js +# ||pxc.otto.de^ (easyprivacy.txt: 9674) +.pxc.otto.de +# ||putpat.tv/tracking? (easyprivacy.txt: 9673) +.putpat.tv/tracking\? +# ||prophet.heise.de^ (easyprivacy.txt: 9672) +.prophet.heise.de +# ||proactive.base.de^ (easyprivacy.txt: 9671) +.proactive.base.de +# ||preisvergleich.de/setcookie/ (easyprivacy.txt: 9670) +.preisvergleich.de/setcookie/ +# ||powercount.jswelt.de^ (easyprivacy.txt: 9669) +.powercount.jswelt.de +# ||postbank.de^*/pb_trackingclientstat_js.js (easyprivacy.txt: 9668) +.postbank.de/.*/pb_trackingclientstat_js\.js +# ||postbank.de^*/pb_tracking_js.js (easyprivacy.txt: 9667) +.postbank.de/.*/pb_tracking_js\.js +# ||pooltrax.com/stats/ (easyprivacy.txt: 9666) +.pooltrax.com/stats/ +# ||pnn.de/counter/ (easyprivacy.txt: 9665) +.pnn.de/counter/ +# ||playomat.de/sfye_noscript.php? (easyprivacy.txt: 9664) +.playomat.de/sfye_noscript\.php\? +# ||pixel.prosieben.de^ (easyprivacy.txt: 9663) +.pixel.prosieben.de +# ||pixel.bild.de^ (easyprivacy.txt: 9662) +.pixel.bild.de +# ||pixel.1und1.de^ (easyprivacy.txt: 9661) +.pixel.1und1.de +# ||pix.friendscout24.de^ (easyprivacy.txt: 9660) +.pix.friendscout24.de +# ||pcwelt.de^*/pic.gif? (easyprivacy.txt: 9659) +.pcwelt.de/.*/pic\.gif\? +# ||pcgames.de^*/remotecampaigntracker.php (easyprivacy.txt: 9658) +.pcgames.de/.*/remotecampaigntracker\.php +# ||pcfreunde.de/wb. (easyprivacy.txt: 9657) +.pcfreunde.de/wb\. +# ||passul.t-online.de^ (easyprivacy.txt: 9656) +.passul.t-online.de +# ||pap.zalando.de^ (easyprivacy.txt: 9655) +.pap.zalando.de +# ||otto.de^*/beacons/ (easyprivacy.txt: 9654) +.otto.de/.*/beacons/ +# ||otto.de/tr/p.gif? (easyprivacy.txt: 9653) +.otto.de/tr/p\.gif\? +# ||otto.de/servlet/landmarkservlet? (easyprivacy.txt: 9652) +.otto.de/servlet/landmarkservlet\? +# ||otik.de/tracker/ (easyprivacy.txt: 9651) +.otik.de/tracker/ +# ||orf.at/ivwscript.js (easyprivacy.txt: 9650) +.orf.at/ivwscript\.js +# ||o2online.de^*/psyma/ (easyprivacy.txt: 9649) +.o2online.de/.*/psyma/ +# ||nzz.ch/statistic? (easyprivacy.txt: 9648) +.nzz.ch/statistic\? +# ||nzz.ch/statistic/ (easyprivacy.txt: 9647) +.nzz.ch/statistic/ +# ||npage.de/get_statistics.php? (easyprivacy.txt: 9646) +.npage.de/get_statistics\.php\? +# ||noz.de/tracking/ (easyprivacy.txt: 9645) +.noz.de/tracking/ +# ||nox.to/files/frame.htm (easyprivacy.txt: 9644) +.nox.to/files/frame\.htm +# ||nowonscreen.com/statistik_ (easyprivacy.txt: 9643) +.nowonscreen.com/statistik_ +# ||nickles.de/ivw/ (easyprivacy.txt: 9642) +.nickles.de/ivw/ +# ||news.ch/newslogbug.asp? (easyprivacy.txt: 9641) +.news.ch/newslogbug\.asp\? +# ||n24.de^*/tracking.js (easyprivacy.txt: 9640) +.n24.de/.*/tracking\.js +# ||musik4fun.com/ga.php? (easyprivacy.txt: 9636) +.musik4fun.com/ga\.php\? +# ||muensterland.de^*/zaehlpixel.php? (easyprivacy.txt: 9634) +.muensterland.de/.*/zaehlpixel\.php\? +# ||msxstudios.de^*/system/stats/ (easyprivacy.txt: 9633) +.msxstudios.de/.*/system/stats/ +# ||msn.com^*/detrack.js (easyprivacy.txt: 9632) +.msn.com/.*/detrack\.js +# ||ms.computerbild.de^ (easyprivacy.txt: 9631) +.ms.computerbild.de +# ||mopo.de/uid/ (easyprivacy.txt: 9630) +.mopo.de/uid/ +# ||mobilcom-debitel.de/track/ (easyprivacy.txt: 9629) +.mobilcom-debitel.de/track/ +# ||mm.welt.de^ (easyprivacy.txt: 9628) +.mm.welt.de +# ||mikrocontroller.net^*/count_view/ (easyprivacy.txt: 9627) +.mikrocontroller.net/.*/count_view/ +# ||merkur.de/connector.php? (easyprivacy.txt: 9626) +.merkur.de/connector\.php\? +# ||meinestadt.de^*/tracking/ (easyprivacy.txt: 9625) +.meinestadt.de/.*/tracking/ +# ||medizinauskunft.de/logger/ (easyprivacy.txt: 9624) +.medizinauskunft.de/logger/ +# ||manager-magazin.de/js/http/*,testat_ (easyprivacy.txt: 9623) +.manager-magazin.de/js/http/.*,testat_ +# ||magnus.de^*/pic.gif? (easyprivacy.txt: 9622) +.magnus.de/.*/pic\.gif\? +# ||macwelt.de/images/pic.gif? (easyprivacy.txt: 9621) +.macwelt.de/images/pic\.gif\? +# ||macnews.de/logreferrer.php (easyprivacy.txt: 9620) +.macnews.de/logreferrer\.php +# ||lokalisten.de/tracking.gif (easyprivacy.txt: 9619) +.lokalisten.de/tracking\.gif +# ||logging.wilmaa.com^ (easyprivacy.txt: 9618) +.logging.wilmaa.com +# ||log.wilmaa.com^ (easyprivacy.txt: 9617) +.log.wilmaa.com +# ||log.sz-online.de^ (easyprivacy.txt: 9616) +.log.sz-online.de +# ||log.suchen.de^ (easyprivacy.txt: 9615) +.log.suchen.de +# ||laut.de^*/analyse.gif? (easyprivacy.txt: 9614) +.laut.de/.*/analyse\.gif\? +# ||krissi-ist-weg.de/ce_vcounter/ (easyprivacy.txt: 9613) +.krissi-ist-weg.de/ce_vcounter/ +# ||koins.de/screen.js (easyprivacy.txt: 9612) +.koins.de/screen\.js +# ||kicker.de^*/videocount? (easyprivacy.txt: 9611) +.kicker.de/.*/videocount\? +# ||k-play.de/screen.js (easyprivacy.txt: 9610) +.k-play.de/screen\.js +# ||k-foren.de/screen.js (easyprivacy.txt: 9609) +.k-foren.de/screen\.js +# ||k-files.de/screen.js (easyprivacy.txt: 9608) +.k-files.de/screen\.js +# ||jolie.de^*/pic.gif? (easyprivacy.txt: 9607) +.jolie.de/.*/pic\.gif\? +# ||jobanova.de/stats.php? (easyprivacy.txt: 9606) +.jobanova.de/stats\.php\? +# ||ht4u.net^*/blackpixel2.php (easyprivacy.txt: 9605) +.ht4u.net/.*/blackpixel2\.php +# ||horizont.net/stats/ (easyprivacy.txt: 9604) +.horizont.net/stats/ +# ||homepage-baukasten.de/cookie.php? (easyprivacy.txt: 9603) +.homepage-baukasten.de/cookie\.php\? +# ||hdm-stuttgart.de/count.cgi? (easyprivacy.txt: 9602) +.hdm-stuttgart.de/count\.cgi\? +# ||hartgeld.com^*/count.cgi? (easyprivacy.txt: 9601) +.hartgeld.com/.*/count\.cgi\? +# ||hardwareschotte.de/na/mdc.php? (easyprivacy.txt: 9600) +.hardwareschotte.de/na/mdc\.php\? +# ||hardwarelabs.de/stat/ (easyprivacy.txt: 9599) +.hardwarelabs.de/stat/ +# ||hardware-infos.com/counter/ (easyprivacy.txt: 9598) +.hardware-infos.com/counter/ +# ||handelsblatt.com/analytics/ (easyprivacy.txt: 9597) +.handelsblatt.com/analytics/ +# ||goyellow.de/trackbrowser.jsp (easyprivacy.txt: 9596) +.goyellow.de/trackbrowser\.jsp +# ||golem.de/staticrl/scripts/golem_cpxl_ (easyprivacy.txt: 9595) +.golem.de/staticrl/scripts/golem_cpxl_ +# ||golem.de/staticrl/scripts/golem_cpx_ (easyprivacy.txt: 9594) +.golem.de/staticrl/scripts/golem_cpx_ +# ||go.bluewin.ch^ (easyprivacy.txt: 9593) +.go.bluewin.ch +# ||giessener-anzeiger.de/stat/ (easyprivacy.txt: 9592) +.giessener-anzeiger.de/stat/ +# ||gg24.de^*/count.cgi? (easyprivacy.txt: 9591) +.gg24.de/.*/count\.cgi\? +# ||gets.faz.net^ (easyprivacy.txt: 9590) +.gets.faz.net +# ||gamestar.de/_misc/tracking/ (easyprivacy.txt: 9589) +.gamestar.de/_misc/tracking/ +# ||gamepro.de^*/visitcount.js (easyprivacy.txt: 9588) +.gamepro.de/.*/visitcount\.js +# ||gala.de/js/tracking- (easyprivacy.txt: 9587) +.gala.de/js/tracking- +# ||g.silicon.de^ (easyprivacy.txt: 9586) +.g.silicon.de +# ||ftd.de^*/track.php? (easyprivacy.txt: 9585) +.ftd.de/.*/track\.php\? +# ||fr-online.de/analytics/ (easyprivacy.txt: 9584) +.fr-online.de/analytics/ +# ||fls-eu.amazon.de^ (easyprivacy.txt: 9583) +.fls-eu.amazon.de +# ||fireball.de/statistikframe.asp? (easyprivacy.txt: 9582) +.fireball.de/statistikframe\.asp\? +# ||feed-reader.net/tracking.php (easyprivacy.txt: 9581) +.feed-reader.net/tracking\.php +# ||faz.net^*/smarttag.js (easyprivacy.txt: 9580) +.faz.net/.*/smarttag\.js +# ||faz.net^*/ivw/ (easyprivacy.txt: 9579) +.faz.net/.*/ivw/ +# ||fanfiktion.de^*/s.js (easyprivacy.txt: 9578) +.fanfiktion.de/.*/s\.js +# ||extszm.web.de^ (easyprivacy.txt: 9577) +.extszm.web.de +# ||express.de/analytics/ (easyprivacy.txt: 9576) +.express.de/analytics/ +# ||event.dkb.de^ (easyprivacy.txt: 9575) +.event.dkb.de +# ||elitepartner.de/km/tcnt.do? (easyprivacy.txt: 9574) +.elitepartner.de/km/tcnt\.do\? +# ||elektromobil-dresden.de/tinc? (easyprivacy.txt: 9573) +.elektromobil-dresden.de/tinc\? +# ||dw-eu.com.com^ (easyprivacy.txt: 9572) +.dw-eu.com.com +# ||dsltarife.net/statistik/ (easyprivacy.txt: 9571) +.dsltarife.net/statistik/ +# ||dsltarife.net/ddd.js (easyprivacy.txt: 9570) +.dsltarife.net/ddd\.js +# ||dpm.bluray-disc.de^ (easyprivacy.txt: 9569) +.dpm.bluray-disc.de +# ||dnews.de^*/arnostat302.js (easyprivacy.txt: 9568) +.dnews.de/.*/arnostat302\.js +# ||digital-zoom.de/counter.js (easyprivacy.txt: 9567) +.digital-zoom.de/counter\.js +# ||diepresse.com/files/stats-extensions/ (easyprivacy.txt: 9566) +.diepresse.com/files/stats-extensions/ +# ||diegesellschafter.de^*/flashimg.php? (easyprivacy.txt: 9565) +.diegesellschafter.de/.*/flashimg\.php\? +# ||dfs.de^*/webbug.js (easyprivacy.txt: 9564) +.dfs.de/.*/webbug\.js +# ||dforum.net/counter/ (easyprivacy.txt: 9563) +.dforum.net/counter/ +# ||derwesten.de^*/omsv.js (easyprivacy.txt: 9562) +.derwesten.de/.*/omsv\.js +# ||derwesten.de^*/click.js (easyprivacy.txt: 9561) +.derwesten.de/.*/click\.js +# ||derwesten.de/stats/ (easyprivacy.txt: 9560) +.derwesten.de/stats/ +# ||derwesten.de/files1/js/fktwe4.js (easyprivacy.txt: 9559) +.derwesten.de/files1/js/fktwe4\.js +# ||dejure.org/cgi-bin/zux2? (easyprivacy.txt: 9558) +.dejure.org/cgi-bin/zux2\? +# ||dat.de/inc/count.js (easyprivacy.txt: 9557) +.dat.de/inc/count\.js +# ||dastelefonbuch.de^*/wws.js (easyprivacy.txt: 9556) +.dastelefonbuch.de/.*/wws\.js +# ||dasoertliche.de/wws/ (easyprivacy.txt: 9555) +.dasoertliche.de/wws/ +# ||daparto.de/track- (easyprivacy.txt: 9554) +.daparto.de/track- +# ||dada.net^*/nedstat_sitestat.js (easyprivacy.txt: 9553) +.dada.net/.*/nedstat_sitestat\.js +# ||dab-bank.de/img/dummy.gif (easyprivacy.txt: 9552) +.dab-bank.de/img/dummy\.gif +# ||cpxl.golem.de^ (easyprivacy.txt: 9551) +.cpxl.golem.de +# ||cpx.golem.de^ (easyprivacy.txt: 9550) +.cpx.golem.de +# ||cpix.daserste.de^ (easyprivacy.txt: 9549) +.cpix.daserste.de +# ||counter.zeit.de^ (easyprivacy.txt: 9548) +.counter.zeit.de +# ||count.spiegel.de^ (easyprivacy.txt: 9547) +.count.spiegel.de +# ||count.rtl.de^ (easyprivacy.txt: 9546) +.count.rtl.de +# ||count.merian.de^ (easyprivacy.txt: 9545) +.count.merian.de +# ||computerbild.de/images/pic.gif? (easyprivacy.txt: 9544) +.computerbild.de/images/pic\.gif\? +# ||computerbase.mobi/stats.php? (easyprivacy.txt: 9543) +.computerbase.mobi/stats\.php\? +# ||computerbase.de/stats.php? (easyprivacy.txt: 9542) +.computerbase.de/stats\.php\? +# ||commerzbank.de/companion/cnt.php? (easyprivacy.txt: 9541) +.commerzbank.de/companion/cnt\.php\? +# ||comdirect.de/ccf/img/ecrm2.gif? (easyprivacy.txt: 9540) +.comdirect.de/ccf/img/ecrm2\.gif\? +# ||citybeat.de/include/cbtracker. (easyprivacy.txt: 9539) +.citybeat.de/include/cbtracker\. +# ||chip.de^*_tracking/ (easyprivacy.txt: 9538) +.chip.de/.*_tracking/ +# ||chip.de^*/tracking.js (easyprivacy.txt: 9537) +.chip.de/.*/tracking\.js +# ||chip.de^*/pic.gif? (easyprivacy.txt: 9536) +.chip.de/.*/pic\.gif\? +# ||chip.de^*/hook-tracking.js (easyprivacy.txt: 9535) +.chip.de/.*/hook-tracking\.js +# ||chefkoch.de^*/pixel/ (easyprivacy.txt: 9534) +.chefkoch.de/.*/pixel/ +# ||chefkoch.de/statistic_service/ (easyprivacy.txt: 9533) +.chefkoch.de/statistic_service/ +# ||chefkoch.de/counter (easyprivacy.txt: 9532) +.chefkoch.de/counter +# ||center.tv/counter/ (easyprivacy.txt: 9531) +.center.tv/counter/ +# ||cct2.o2online.de^ (easyprivacy.txt: 9530) +.cct2.o2online.de +# ||cc.zeit.de^ (easyprivacy.txt: 9529) +.cc.zeit.de +# ||c.perlentaucher.de^ (easyprivacy.txt: 9528) +.c.perlentaucher.de +# ||bz-berlin.de/_stats/ (easyprivacy.txt: 9527) +.bz-berlin.de/_stats/ +# ||braunschweiger-zeitung.de/stats/ (easyprivacy.txt: 9526) +.braunschweiger-zeitung.de/stats/ +# ||br.de/dotrack/pixel.png? (easyprivacy.txt: 9525) +.br.de/dotrack/pixel\.png\? +# ||boss.berlinonline.de^ (easyprivacy.txt: 9524) +.boss.berlinonline.de +# ||boersennews.de/js/lib/BnPageTracker.js (easyprivacy.txt: 9523) +.boersennews.de/js/lib/BnPageTracker\.js +# ||boerse.de^*/log.jphp (easyprivacy.txt: 9522) +.boerse.de/.*/log\.jphp +# ||bluray-disc.de/user_check.php? (easyprivacy.txt: 9521) +.bluray-disc.de/user_check\.php\? +# ||bitreactor.to/counter/ (easyprivacy.txt: 9520) +.bitreactor.to/counter/ +# ||billiger.de/trackimg.gif? (easyprivacy.txt: 9519) +.billiger.de/trackimg\.gif\? +# ||billiger.de/js/statistik.js (easyprivacy.txt: 9518) +.billiger.de/js/statistik\.js +# ||bild.de/code/linktracking,*.js (easyprivacy.txt: 9516) +.bild.de/code/linktracking,.*\.js +# ||bild.de/code/jiffy,*.js (easyprivacy.txt: 9515) +.bild.de/code/jiffy,.*\.js +# ||berlinonline.de^*/cp.php? (easyprivacy.txt: 9514) +.berlinonline.de/.*/cp\.php\? +# ||berliner-zeitung.de/analytics/ (easyprivacy.txt: 9513) +.berliner-zeitung.de/analytics/ +# ||baur.de/servlet/LandmarkServlet? (easyprivacy.txt: 9512) +.baur.de/servlet/LandmarkServlet\? +# ||autobild.de/images/pic.gif? (easyprivacy.txt: 9511) +.autobild.de/images/pic\.gif\? +# ||auto-motor-und-sport.de/images/pic.gif? (easyprivacy.txt: 9510) +.auto-motor-und-sport.de/images/pic\.gif\? +# ||arte.tv^*=countstats, (easyprivacy.txt: 9509) +.arte.tv/.*=countstats, +# ||arlt.com^*/econda/ (easyprivacy.txt: 9508) +.arlt.com/.*/econda/ +# ||aol.de/track/ (easyprivacy.txt: 9507) +.aol.de/track/ +# ||aol.de/cnt/ (easyprivacy.txt: 9506) +.aol.de/cnt/ +# ||antenne.de^*/ivw_reload.js (easyprivacy.txt: 9505) +.antenne.de/.*/ivw_reload\.js +# ||analytics.solidbau.at^ (easyprivacy.txt: 9504) +.analytics.solidbau.at +# ||analytics.industriemagazin.net^ (easyprivacy.txt: 9503) +.analytics.industriemagazin.net +# ||ac.mz-web.de^ (easyprivacy.txt: 9502) +.ac.mz-web.de +# ||ac.express.de^ (easyprivacy.txt: 9501) +.ac.express.de +# ||ac.berlinonline.de^ (easyprivacy.txt: 9500) +.ac.berlinonline.de +# ||abakus.freenet.de^ (easyprivacy.txt: 9499) +.abakus.freenet.de +# ||ab-in-den-urlaub.de/usertracking/ (easyprivacy.txt: 9498) +.ab-in-den-urlaub.de/usertracking/ +# ||ab-in-den-urlaub.de/resources/cjs/?f=/resources/cjs/tracking/ (easyprivacy.txt: 9497) +.ab-in-den-urlaub.de/resources/cjs/\?f=/resources/cjs/tracking/ +# ||4players.de^*/foreplaypixel.js (easyprivacy.txt: 9494) +.4players.de/.*/foreplaypixel\.js +# ||radio-canada.ca/omniture/omni_stats_base.js? (easyprivacy.txt: 9490) +.radio-canada.ca/omniture/omni_stats_base\.js\? +# ||yell.com/js/omniture-H.25.js (easyprivacy.txt: 9488) +.yell.com/js/omniture-H\.25\.js +# ||westernunion.*/_globalAssets/js/omniture/AppMeasurement.js (easyprivacy.txt: 9486) +.westernunion.*./(.*/)?_globalAssets/js/omniture/AppMeasurement\.js +# ||vmware.com/files/templates/inc/s_code_my.js (easyprivacy.txt: 9485) +.vmware.com/files/templates/inc/s_code_my\.js +# ||vitacost.com/Javascripts/s_code.js (easyprivacy.txt: 9484) +.vitacost.com/Javascripts/s_code\.js +# ||sltrib.com/csp/mediapool/sites/Shared/assets/csp/includes/omniture/SiteCatalystCode_H_17.js (easyprivacy.txt: 9481) +.sltrib.com/csp/mediapool/sites/Shared/assets/csp/includes/omniture/SiteCatalystCode_H_17\.js +# ||sephora.com/javascripts/analytics/wa2.js (easyprivacy.txt: 9478) +.sephora.com/javascripts/analytics/wa2\.js +# ||redbox.com^*/scripts/s_code.js (easyprivacy.txt: 9476) +.redbox.com/.*/scripts/s_code\.js +# ||playstation.com/pscomauth/groups/public/documents/webasset/community_secured_s_code.js (easyprivacy.txt: 9474) +.playstation.com/pscomauth/groups/public/documents/webasset/community_secured_s_code\.js +# ||philly.com/includes/s_code.js (easyprivacy.txt: 9473) +.philly.com/includes/s_code\.js +# ||paypal.com/acquisition-app/static/js/s_code.js (easyprivacy.txt: 9472) +.paypal.com/acquisition-app/static/js/s_code\.js +# ||nyteknik.se/ver02/javascript/2012_s_code_global.js (easyprivacy.txt: 9471) +.nyteknik.se/ver02/javascript/2012_s_code_global\.js +# ||navyfederal.org/js/s_code.js (easyprivacy.txt: 9469) +.navyfederal.org/js/s_code\.js +# ||mnginteractive.com/live/omniture/sccore_NEW_JRC.js (easyprivacy.txt: 9468) +.mnginteractive.com/live/omniture/sccore_NEW_JRC\.js +# ||mnginteractive.com/live/js/omniture/SiteCatalystCode_H_22_1_NC.js (easyprivacy.txt: 9464) +.mnginteractive.com/live/js/omniture/SiteCatalystCode_H_22_1_NC\.js +# ||michaelkors.com/common/js/extern/omniture/s_code.js (easyprivacy.txt: 9463) +.michaelkors.com/common/js/extern/omniture/s_code\.js +# ||mercuryinsurance.com/static/js/s_code.js (easyprivacy.txt: 9462) +.mercuryinsurance.com/static/js/s_code\.js +# ||mercola.com/Assets/js/omniture/sitecatalyst/mercola_s_code.js (easyprivacy.txt: 9461) +.mercola.com/Assets/js/omniture/sitecatalyst/mercola_s_code\.js +# ||mercedes-benz.ca/js/omniture.js (easyprivacy.txt: 9460) +.mercedes-benz.ca/js/omniture\.js +# ||loc.gov/js/*/s_code.js (easyprivacy.txt: 9459) +.loc.gov/js/.*/s_code\.js +# ||lexus.com/lexus-share/js/tracking_omn/s_code.js (easyprivacy.txt: 9458) +.lexus.com/lexus-share/js/tracking_omn/s_code\.js +# ||hayneedle.com/js/s_code.min.*.js (easyprivacy.txt: 9455) +.hayneedle.com/js/s_code\.min\..*\.js +# ||ge.com/sites/all/themes/ge_2012/assets/js/bin/s_code.js (easyprivacy.txt: 9454) +.ge.com/sites/all/themes/ge_2012/assets/js/bin/s_code\.js +# ||expressen.se/static/scripts/s_code.js? (easyprivacy.txt: 9453) +.expressen.se/static/scripts/s_code\.js\? +# ||eltiempo.com/js/produccion/s_code_*.js (easyprivacy.txt: 9452) +.eltiempo.com/js/produccion/s_code_.*\.js +# ||disneylandparis.fr^*/s_code.js (easyprivacy.txt: 9450) +.disneylandparis.fr/.*/s_code\.js +# ||csmonitor.com/extension/csm_base/design/standard/javascript/adobe/s_code.js (easyprivacy.txt: 9448) +.csmonitor.com/extension/csm_base/design/standard/javascript/adobe/s_code\.js +# ||csmonitor.com/extension/csm_base/design/csm_design/javascript/omniture/s_code.js (easyprivacy.txt: 9447) +.csmonitor.com/extension/csm_base/design/csm_design/javascript/omniture/s_code\.js +# ||consumerreports.org^*/s_code.js (easyprivacy.txt: 9446) +.consumerreports.org/.*/s_code\.js +# ||chip.de/js/omniture_somtr_code_vH.25.js (easyprivacy.txt: 9445) +.chip.de/js/omniture_somtr_code_vH\.25\.js +# ||bleacherreport.net/pkg/javascripts/*_omniture.js (easyprivacy.txt: 9443) +.bleacherreport.net/pkg/javascripts/.*_omniture\.js +# ||bitdefender.com/resources/scripts/omniture/*/code.js (easyprivacy.txt: 9442) +.bitdefender.com/resources/scripts/omniture/.*/code\.js +# ||aircanada.com/shared/common/sitecatalyst/s_code.js (easyprivacy.txt: 9440) +.aircanada.com/shared/common/sitecatalyst/s_code\.js +# ||aeroplan.com/static/js/omniture/s_code_prod.js (easyprivacy.txt: 9438) +.aeroplan.com/static/js/omniture/s_code_prod\.js +# ||adobe.com^*/omniture_s_code.js (easyprivacy.txt: 9437) +.adobe.com/.*/omniture_s_code\.js +# ||zylom.com^*/tracking_spotlight.js (easyprivacy.txt: 9434) +.zylom.com/.*/tracking_spotlight\.js +# ||zylom.com^*/global_tracking.jsp? (easyprivacy.txt: 9433) +.zylom.com/.*/global_tracking\.jsp\? +# ||zylom.com/pixel.jsp (easyprivacy.txt: 9432) +.zylom.com/pixel\.jsp +# ||zwire.com/gen/qc/qualitycontrol.cfm (easyprivacy.txt: 9431) +.zwire.com/gen/qc/qualitycontrol\.cfm +# ||zvents.com/zat? (easyprivacy.txt: 9430) +.zvents.com/zat\? +# ||zvents.com/za? (easyprivacy.txt: 9429) +.zvents.com/za\? +# ||zvents.com/partner_json/ (easyprivacy.txt: 9428) +.zvents.com/partner_json/ +# ||zulily.com/action/track? (easyprivacy.txt: 9427) +.zulily.com/action/track\? +# ||zoomin.tv/impressionsplayers/ (easyprivacy.txt: 9426) +.zoomin.tv/impressionsplayers/ +# ||zoomin.tv/impressions/ (easyprivacy.txt: 9425) +.zoomin.tv/impressions/ +# ||zmags.com/CommunityAnalyticsTracking (easyprivacy.txt: 9424) +.zmags.com/CommunityAnalyticsTracking +# ||zedo.com/img/bh.gif? (easyprivacy.txt: 9423) +.zedo.com/img/bh\.gif\? +# ||zdnet.com/wi? (easyprivacy.txt: 9422) +.zdnet.com/wi\? +# ||zawya.com^*/logFile.cfm? (easyprivacy.txt: 9421) +.zawya.com/.*/logFile\.cfm\? +# ||zawya.com/zscripts/ajaxztrack.cfm? (easyprivacy.txt: 9420) +.zawya.com/zscripts/ajaxztrack\.cfm\? +# ||zappos.com/onload.cgi? (easyprivacy.txt: 9419) +.zappos.com/onload\.cgi\? +# ||zap2it.com^*/editorial-partner/ (easyprivacy.txt: 9418) +.zap2it.com/.*/editorial-partner/ +# ||yyv.co/track/ (easyprivacy.txt: 9416) +.yyv.co/track/ +# ||yupptv.com/yupptvreports/stats.php^ (easyprivacy.txt: 9415) +.yupptv.com/yupptvreports/stats\.php[^\w%.-] +# ||yuku.com/stats? (easyprivacy.txt: 9414) +.yuku.com/stats\? +# ||ypcdn.com/webyp/javascripts/client_side_analytics_ (easyprivacy.txt: 9413) +.ypcdn.com/webyp/javascripts/client_side_analytics_ +# ||youtube.com/stream_204? (easyprivacy.txt: 9412) +.youtube.com/stream_204\? +# ||youtube.com/set_awesome? (easyprivacy.txt: 9411) +.youtube.com/set_awesome\? +# ||youtube.com/s? (easyprivacy.txt: 9410) +.youtube.com/s\? +# ||youtube.com/ptracking? (easyprivacy.txt: 9409) +.youtube.com/ptracking\? +# ||youtube.com/player_204? (easyprivacy.txt: 9408) +.youtube.com/player_204\? +# ||youtube.com/live_204? (easyprivacy.txt: 9407) +.youtube.com/live_204\? +# ||youtube.com/get_video? (easyprivacy.txt: 9406) +.youtube.com/get_video\? +# ||youtube.com/api/stats/ads? (easyprivacy.txt: 9404) +.youtube.com/api/stats/ads\? +# ||youtube-nocookie.com/robots.txt? (easyprivacy.txt: 9403) +.youtube-nocookie.com/robots\.txt\? +# ||youtube-nocookie.com/ptracking? (easyprivacy.txt: 9402) +.youtube-nocookie.com/ptracking\? +# ||youtube-nocookie.com/gen_204? (easyprivacy.txt: 9401) +.youtube-nocookie.com/gen_204\? +# ||youtube-nocookie.com/device_204? (easyprivacy.txt: 9400) +.youtube-nocookie.com/device_204\? +# ||yourtv.com.au/share/com/js/fb_google_intercept.js (easyprivacy.txt: 9399) +.yourtv.com.au/share/com/js/fb_google_intercept\.js +# ||youronlinechoices.com/activity/ (easyprivacy.txt: 9398) +.youronlinechoices.com/activity/ +# ||yourfilehost.com/counter.htm (easyprivacy.txt: 9397) +.yourfilehost.com/counter\.htm +# ||youporn.com^*/tracker.js (easyprivacy.txt: 9396) +.youporn.com/.*/tracker\.js +# ||younewstv.com/js/easyxdm.min.js (easyprivacy.txt: 9395) +.younewstv.com/js/easyxdm\.min\.js +# ||youandyourwedding.co.uk^*/socialtracking/ (easyprivacy.txt: 9394) +.youandyourwedding.co.uk/.*/socialtracking/ +# ||youandyourwedding.co.uk^*/EAS_tag. (easyprivacy.txt: 9393) +.youandyourwedding.co.uk/.*/EAS_tag\. +# ||yopmail.com/c.swf (easyprivacy.txt: 9392) +.yopmail.com/c\.swf +# ||yoox.com^*/yoox/ga.js (easyprivacy.txt: 9391) +.yoox.com/.*/yoox/ga\.js +# ||yobt.tv/js/timerotation*.js (easyprivacy.txt: 9390) +.yobt.tv/js/timerotation.*\.js +# ||ynuf.alibaba.com^ (easyprivacy.txt: 9389) +.ynuf.alibaba.com +# ||yimg.com^*/ywa.js (easyprivacy.txt: 9388) +.yimg.com/.*/ywa\.js +# ||yimg.com^*/yabcs.js (easyprivacy.txt: 9387) +.yimg.com/.*/yabcs\.js +# ||yimg.com/nq/ued/assets/flash/wsclient_ (easyprivacy.txt: 9385) +.yimg.com/nq/ued/assets/flash/wsclient_ +# ||yelp.ie/spice? (easyprivacy.txt: 9384) +.yelp.ie/spice\? +# ||yelp.com/spice? (easyprivacy.txt: 9383) +.yelp.com/spice\? +# ||yelp.com.au/spice? (easyprivacy.txt: 9382) +.yelp.com.au/spice\? +# ||yelp.co.uk/spice? (easyprivacy.txt: 9381) +.yelp.co.uk/spice\? +# ||yelp.ca/spice? (easyprivacy.txt: 9380) +.yelp.ca/spice\? +# ||yellowpages.com/proxy/turn_tags/ (easyprivacy.txt: 9379) +.yellowpages.com/proxy/turn_tags/ +# ||yellowpages.com/proxy/envoy/ (easyprivacy.txt: 9378) +.yellowpages.com/proxy/envoy/ +# ||yellowpages.com/images/li.gif? (easyprivacy.txt: 9377) +.yellowpages.com/images/li\.gif\? +# ||yellowpages.co.in/trac/ (easyprivacy.txt: 9376) +.yellowpages.co.in/trac/ +# ||yahooapis.com/get/Valueclick/CapAnywhere.getAnnotationCallback? (easyprivacy.txt: 9374) +.yahooapis.com/get/Valueclick/CapAnywhere\.getAnnotationCallback\? +# ||yahoo.net^*/hittail.js (easyprivacy.txt: 9373) +.yahoo.net/.*/hittail\.js +# ||yahoo.com^*/ultLog? (easyprivacy.txt: 9372) +.yahoo.com/.*/ultLog\? +# ||yahoo.com^*/rt.gif? (easyprivacy.txt: 9371) +.yahoo.com/.*/rt\.gif\? +# ||yahoo.com^*/pageview/ (easyprivacy.txt: 9370) +.yahoo.com/.*/pageview/ +# ||yahoo.com/yi?bv= (easyprivacy.txt: 9369) +.yahoo.com/yi\?bv= +# ||yahoo.com/track/ (easyprivacy.txt: 9368) +.yahoo.com/track/ +# ||yahoo.com/serv?s (easyprivacy.txt: 9366) +.yahoo.com/serv\?s +# ||yahoo.com/perf.gif? (easyprivacy.txt: 9365) +.yahoo.com/perf\.gif\? +# ||yahoo.com/p.gif; (easyprivacy.txt: 9364) +.yahoo.com/p\.gif; +# ||yahoo.com/neo/ymstat (easyprivacy.txt: 9363) +.yahoo.com/neo/ymstat +# ||yahoo.com/neo/ygbeacon/ (easyprivacy.txt: 9362) +.yahoo.com/neo/ygbeacon/ +# ||yahoo.com/neo/stat (easyprivacy.txt: 9361) +.yahoo.com/neo/stat +# ||yahoo.com/beacon/ (easyprivacy.txt: 9360) +.yahoo.com/beacon/ +# ||yahoo.com/b? (easyprivacy.txt: 9359) +.yahoo.com/b\? +# ||yahoo.com/_td_api/beacon/ (easyprivacy.txt: 9358) +.yahoo.com/_td_api/beacon/ +# ||yahoo.com/__perf_log_ (easyprivacy.txt: 9357) +.yahoo.com/__perf_log_ +# ||xnxx.com/in.php?referer (easyprivacy.txt: 9356) +.xnxx.com/in\.php\?referer +# ||xing.com/collect/ (easyprivacy.txt: 9355) +.xing.com/collect/ +# ||xhcdn.com/js/track.min.js? (easyprivacy.txt: 9354) +.xhcdn.com/js/track\.min\.js\? +# ||xhcdn.com/js/analytics.js? (easyprivacy.txt: 9353) +.xhcdn.com/js/analytics\.js\? +# ||xhamster.com/cnt.php? (easyprivacy.txt: 9352) +.xhamster.com/cnt\.php\? +# ||xhamster.com/ajax.php?act=track_event (easyprivacy.txt: 9351) +.xhamster.com/ajax\.php\?act=track_event +# ||xbox.com^*/vortex_tracking.js (easyprivacy.txt: 9350) +.xbox.com/.*/vortex_tracking\.js +# ||wzus1.thesaurus.com^ (easyprivacy.txt: 9349) +.wzus1.thesaurus.com +# ||wzus1.reference.com^ (easyprivacy.txt: 9348) +.wzus1.reference.com +# ||wzus1.ask.com^ (easyprivacy.txt: 9347) +.wzus1.ask.com +# ||wzus.askkids.com^ (easyprivacy.txt: 9346) +.wzus.askkids.com +# ||www.imdb.*/rd/?q= (easyprivacy.txt: 9345) +.www.imdb.*./(.*/)?rd/\?q= +# ||wwe.com/sites/all/modules/wwe/wwe_analytics/ (easyprivacy.txt: 9342) +.wwe.com/sites/all/modules/wwe/wwe_analytics/ +# ||wusstrack.wunderground.com^ (easyprivacy.txt: 9341) +.wusstrack.wunderground.com +# ||wunderground.com/tag.php (easyprivacy.txt: 9340) +.wunderground.com/tag\.php +# ||wtk.db.com^ (easyprivacy.txt: 9339) +.wtk.db.com +# ||ws.yellowpages.ca^ (easyprivacy.txt: 9338) +.ws.yellowpages.ca +# ||ws.md/c.png? (easyprivacy.txt: 9337) +.ws.md/c\.png\? +# ||ws.elance.com^*&referrer= (easyprivacy.txt: 9336) +.ws.elance.com/.*&referrer= +# ||wowwiki.com/__onedot? (easyprivacy.txt: 9335) +.wowwiki.com/__onedot\? +# ||wovencube.com/track/ (easyprivacy.txt: 9334) +.wovencube.com/track/ +# ||worldvision.org/kana/wvcg_wvorg.asp? (easyprivacy.txt: 9333) +.worldvision.org/kana/wvcg_wvorg\.asp\? +# ||worldreviewer.com/_search/tracker.png? (easyprivacy.txt: 9332) +.worldreviewer.com/_search/tracker\.png\? +# ||worldnow.com/global/tools/video/Namespace_VideoReporting_DW.js (easyprivacy.txt: 9331) +.worldnow.com/global/tools/video/Namespace_VideoReporting_DW\.js +# ||worldgolf.com^*/js/track.js (easyprivacy.txt: 9329) +.worldgolf.com/.*/js/track\.js +# ||worksheetsengine.com/fd/ls/l? (easyprivacy.txt: 9328) +.worksheetsengine.com/fd/ls/l\? +# ||wnd.com/s.js (easyprivacy.txt: 9327) +.wnd.com/s\.js +# ||witn.com/g/g/button/ (easyprivacy.txt: 9326) +.witn.com/g/g/button/ +# ||wired.com^*/js/tracking.js (easyprivacy.txt: 9325) +.wired.com/.*/js/tracking\.js +# ||wired.com/tracker.js (easyprivacy.txt: 9324) +.wired.com/tracker\.js +# ||wired.com/js/stats/ (easyprivacy.txt: 9323) +.wired.com/js/stats/ +# ||wired.com/event? (easyprivacy.txt: 9322) +.wired.com/event\? +# ||wired.com/ecom/ (easyprivacy.txt: 9321) +.wired.com/ecom/ +# ||wired.co.uk^*/Statistics/ (easyprivacy.txt: 9320) +.wired.co.uk/.*/Statistics/ +# ||winter.metacafe.com^ (easyprivacy.txt: 9319) +.winter.metacafe.com +# ||windowsphone.com/scripts/siteTracking.js (easyprivacy.txt: 9318) +.windowsphone.com/scripts/siteTracking\.js +# ||wikipedia.org/beacon/ (easyprivacy.txt: 9317) +.wikipedia.org/beacon/ +# ||wikio.com/shopping/tracking/hit.jsp? (easyprivacy.txt: 9316) +.wikio.com/shopping/tracking/hit\.jsp\? +# ||wikinvest.com/plugin/api.php?*=metricld& (easyprivacy.txt: 9315) +.wikinvest.com/plugin/api\.php\?.*=metricld& +# ||wikimedia.org/wiki/Special:RecordImpression? (easyprivacy.txt: 9314) +.wikimedia.org/wiki/Special:RecordImpression\? +# ||wikihow.com/x/collect? (easyprivacy.txt: 9313) +.wikihow.com/x/collect\? +# ||whstatic.com^*/ga.js? (easyprivacy.txt: 9312) +.whstatic.com/.*/ga\.js\? +# ||whoson.smcorp.com^ (easyprivacy.txt: 9311) +.whoson.smcorp.com +# ||whatcar.com/Client/Stats/ (easyprivacy.txt: 9310) +.whatcar.com/Client/Stats/ +# ||wellsphere.com/?hit= (easyprivacy.txt: 9309) +.wellsphere.com/\?hit= +# ||wellness.com/proxy.asp (easyprivacy.txt: 9308) +.wellness.com/proxy\.asp +# ||wego.com/farmer/ (easyprivacy.txt: 9307) +.wego.com/farmer/ +# ||weeklyblitz.net/tracker.js (easyprivacy.txt: 9306) +.weeklyblitz.net/tracker\.js +# ||webyclip.com/WebyClipAnalytics.html (easyprivacy.txt: 9305) +.webyclip.com/WebyClipAnalytics\.html +# ||webstats.perfectworld.com^ (easyprivacy.txt: 9304) +.webstats.perfectworld.com +# ||webssearches.com/__kl.gif? (easyprivacy.txt: 9303) +.webssearches.com/__kl\.gif\? +# ||webring.com/cgi-bin/logit? (easyprivacy.txt: 9302) +.webring.com/cgi-bin/logit\? +# ||webmonkey.com/js/stats/ (easyprivacy.txt: 9301) +.webmonkey.com/js/stats/ +# ||webmd.com^*/tools/dsppixels.js (easyprivacy.txt: 9300) +.webmd.com/.*/tools/dsppixels\.js +# ||webmd.com/pixel/ (easyprivacy.txt: 9299) +.webmd.com/pixel/ +# ||webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/oas35.js (easyprivacy.txt: 9298) +.webmd.com/dtmcms/live/webmd/PageBuilder_Assets/JS/oas35\.js +# ||weblogger01.data.disney.com^ (easyprivacy.txt: 9297) +.weblogger01.data.disney.com +# ||weblog.strawberrynet.com^ (easyprivacy.txt: 9296) +.weblog.strawberrynet.com +# ||webjam.com/Actions/Hit.jam? (easyprivacy.txt: 9295) +.webjam.com/Actions/Hit\.jam\? +# ||webcrawler.com/__kl.gif (easyprivacy.txt: 9294) +.webcrawler.com/__kl\.gif +# ||webcollage.net/apps/el? (easyprivacy.txt: 9293) +.webcollage.net/apps/el\? +# ||webcamgalore.com/aslog.js (easyprivacy.txt: 9292) +.webcamgalore.com/aslog\.js +# ||web.hbr.org/test/whoami.php (easyprivacy.txt: 9291) +.web.hbr.org/test/whoami\.php +# ||web-t.9gag.com^ (easyprivacy.txt: 9290) +.web-t.9gag.com +# ||web-18.com/common/w18a26062012143253_min.js (easyprivacy.txt: 9289) +.web-18.com/common/w18a26062012143253_min\.js +# ||weather.com^*/makeRequest- (easyprivacy.txt: 9288) +.weather.com/.*/makeRequest- +# ||weather.com/pagelet/metrics/ (easyprivacy.txt: 9287) +.weather.com/pagelet/metrics/ +# ||wcnc.com/g/g/button/ (easyprivacy.txt: 9286) +.wcnc.com/g/g/button/ +# ||wbr.com/open.aspx? (easyprivacy.txt: 9285) +.wbr.com/open\.aspx\? +# ||wavescape.mobi/rest/track/ (easyprivacy.txt: 9284) +.wavescape.mobi/rest/track/ +# ||watson.live.com^ (easyprivacy.txt: 9283) +.watson.live.com +# ||watchmouse.com^*/jsrum/ (easyprivacy.txt: 9282) +.watchmouse.com/.*/jsrum/ +# ||washingtonpost.com^*/one.gif? (easyprivacy.txt: 9281) +.washingtonpost.com/.*/one\.gif\? +# ||washingtonpost.com/wp-srv/javascript/placeSiteMetrix. (easyprivacy.txt: 9280) +.washingtonpost.com/wp-srv/javascript/placeSiteMetrix\. +# ||washingtonpost.com/rw/sites/twpweb/js/init/init.track-header-1.0.0.js (easyprivacy.txt: 9279) +.washingtonpost.com/rw/sites/twpweb/js/init/init\.track-header-1\.0\.0\.js +# ||warp.prnewswire.co.uk^ (easyprivacy.txt: 9278) +.warp.prnewswire.co.uk +# ||wallpaperstock.net/partners.js (easyprivacy.txt: 9277) +.wallpaperstock.net/partners\.js +# ||walletpop.com/track/ (easyprivacy.txt: 9276) +.walletpop.com/track/ +# ||wallcannrewards.com^*/index.php? (easyprivacy.txt: 9275) +.wallcannrewards.com/.*/index\.php\? +# ||wachovia.com^*/stats.js (easyprivacy.txt: 9274) +.wachovia.com/.*/stats\.js +# ||wa.ui-portal.de^ (easyprivacy.txt: 9273) +.wa.ui-portal.de +# ||wa.metro.co.uk^ (easyprivacy.txt: 9272) +.wa.metro.co.uk +# ||w88.go.com^ (easyprivacy.txt: 9271) +.w88.go.com +# ||vzaar.com/libs/stats/ (easyprivacy.txt: 9270) +.vzaar.com/libs/stats/ +# ||vstats.digitaltrends.com^ (easyprivacy.txt: 9269) +.vstats.digitaltrends.com +# ||vstat.vidigy.com^ (easyprivacy.txt: 9268) +.vstat.vidigy.com +# ||vs4food.com/ERA/era_rl.aspx (easyprivacy.txt: 9267) +.vs4food.com/ERA/era_rl\.aspx +# ||vs.target.com^ (easyprivacy.txt: 9266) +.vs.target.com +# ||voyeurhit.com/js/a2210.js (easyprivacy.txt: 9265) +.voyeurhit.com/js/a2210\.js +# ||voyages-sncf.com^*/vsca.js (easyprivacy.txt: 9264) +.voyages-sncf.com/.*/vsca\.js +# ||votigo.com/contests/t/ (easyprivacy.txt: 9263) +.votigo.com/contests/t/ +# ||vogue.co.uk/_/logic/statistics.js (easyprivacy.txt: 9262) +.vogue.co.uk/_/logic/statistics\.js +# ||vodpod.com/stats/ (easyprivacy.txt: 9261) +.vodpod.com/stats/ +# ||vnunet.com^*/wunderloop/ (easyprivacy.txt: 9260) +.vnunet.com/.*/wunderloop/ +# ||vmware.com/files/include/ga/ (easyprivacy.txt: 9259) +.vmware.com/files/include/ga/ +# ||vixy.net/fb-traffic-pop.js (easyprivacy.txt: 9258) +.vixy.net/fb-traffic-pop\.js +# ||vitamine.networldmedia.net^ (easyprivacy.txt: 9257) +.vitamine.networldmedia.net +# ||visualware.com/vvv? (easyprivacy.txt: 9256) +.visualware.com/vvv\? +# ||visitors.sourcingmap.com^ (easyprivacy.txt: 9255) +.visitors.sourcingmap.com +# ||visit.theglobeandmail.com^ (easyprivacy.txt: 9254) +.visit.theglobeandmail.com +# ||visit.mobot.net^ (easyprivacy.txt: 9253) +.visit.mobot.net +# ||visit.dealspwn.com^ (easyprivacy.txt: 9252) +.visit.dealspwn.com +# ||virtualearth.net/mapcontrol/*/veapiAnalytics.js (easyprivacy.txt: 9251) +.virtualearth.net/mapcontrol/.*/veapiAnalytics\.js +# ||virginholidays.co.uk/_assets/js/dc_storm/track.js (easyprivacy.txt: 9250) +.virginholidays.co.uk/_assets/js/dc_storm/track\.js +# ||viralogy.com/javascript/viralogy_tracker.js (easyprivacy.txt: 9249) +.viralogy.com/javascript/viralogy_tracker\.js +# ||viralnova.com/track.php (easyprivacy.txt: 9248) +.viralnova.com/track\.php +# ||vimeo.com/log/outro_displayed (easyprivacy.txt: 9247) +.vimeo.com/log/outro_displayed +# ||villarenters.com/inttrack.aspx (easyprivacy.txt: 9246) +.villarenters.com/inttrack\.aspx +# ||vietnamnet.vn^*/tracking.js (easyprivacy.txt: 9245) +.vietnamnet.vn/.*/tracking\.js +# ||vidxden.com^*/tracker.js (easyprivacy.txt: 9244) +.vidxden.com/.*/tracker\.js +# ||vidx.to/php/count.php? (easyprivacy.txt: 9243) +.vidx.to/php/count\.php\? +# ||videotracker.washingtonpost.com^ (easyprivacy.txt: 9242) +.videotracker.washingtonpost.com +# ||videopremium.tv/dev/tr.js (easyprivacy.txt: 9241) +.videopremium.tv/dev/tr\.js +# ||videoplaza.com/proxy/tracker? (easyprivacy.txt: 9240) +.videoplaza.com/proxy/tracker\? +# ||video.syfy.com/lg.php (easyprivacy.txt: 9239) +.video.syfy.com/lg\.php +# ||video.nbc.com^*/metrics_viral.xml (easyprivacy.txt: 9238) +.video.nbc.com/.*/metrics_viral\.xml +# ||video.msn.com/frauddetect.aspx? (easyprivacy.txt: 9237) +.video.msn.com/frauddetect\.aspx\? +# ||video-stats.video.google.com^ (easyprivacy.txt: 9236) +.video-stats.video.google.com +# ||vid.io^*/mejs-feature-analytics.js (easyprivacy.txt: 9235) +.vid.io/.*/mejs-feature-analytics\.js +# ||victoriassecret.com/m/a.gif? (easyprivacy.txt: 9234) +.victoriassecret.com/m/a\.gif\? +# ||vice.com*/tracker.html (easyprivacy.txt: 9233) +.vice.com*./(.*/)?tracker\.html +# ||vice.com*/mb_tracker.html (easyprivacy.txt: 9232) +.vice.com*./(.*/)?mb_tracker\.html +# ||viamichelin.de^*/stats.js (easyprivacy.txt: 9231) +.viamichelin.de/.*/stats\.js +# ||viamichelin.co.uk^*/stats.js (easyprivacy.txt: 9230) +.viamichelin.co.uk/.*/stats\.js +# ||vevo.com/audit.ashx? (easyprivacy.txt: 9229) +.vevo.com/audit\.ashx\? +# ||vertical-stats.huffingtonpost.com^ (easyprivacy.txt: 9228) +.vertical-stats.huffingtonpost.com +# ||verizonwireless.com/mpel.js? (easyprivacy.txt: 9227) +.verizonwireless.com/mpel\.js\? +# ||venere.com/common/js/track.js (easyprivacy.txt: 9226) +.venere.com/common/js/track\.js +# ||velaro.com/lf/monitor2.aspx? (easyprivacy.txt: 9225) +.velaro.com/lf/monitor2\.aspx\? +# ||vcstar.com/metrics/ (easyprivacy.txt: 9224) +.vcstar.com/metrics/ +# ||vbs.tv/tracker.html (easyprivacy.txt: 9223) +.vbs.tv/tracker\.html +# ||vator.tv/tracking/ (easyprivacy.txt: 9222) +.vator.tv/tracking/ +# ||validome.org/valilogger/track.js (easyprivacy.txt: 9221) +.validome.org/valilogger/track\.js +# ||v.fwmrm.net/ad/*slotImpression (easyprivacy.txt: 9220) +.v.fwmrm.net/ad/.*slotImpression +# ||v.fwmrm.net/ad/*defaultImpression (easyprivacy.txt: 9219) +.v.fwmrm.net/ad/.*defaultImpression +# ||uts-rss.crystalmedianetworks.com/track.php? (easyprivacy.txt: 9218) +.uts-rss.crystalmedianetworks.com/track\.php\? +# ||ut.ratepoint.com^ (easyprivacy.txt: 9217) +.ut.ratepoint.com +# ||usps.com/survey/ (easyprivacy.txt: 9216) +.usps.com/survey/ +# ||usnews.com/static/scripts/Analytics.js (easyprivacy.txt: 9215) +.usnews.com/static/scripts/Analytics\.js +# ||userfly.com^ (easyprivacy.txt: 9214) +.userfly.com +# ||usell.com/bug.gif? (easyprivacy.txt: 9213) +.usell.com/bug\.gif\? +# ||usage.zattoo.com/?adblock= (easyprivacy.txt: 9212) +.usage.zattoo.com/\?adblock= +# ||urlcheck.hulu.com^ (easyprivacy.txt: 9211) +.urlcheck.hulu.com +# ||urchin-tracker.bigpoint.net^ (easyprivacy.txt: 9210) +.urchin-tracker.bigpoint.net +# ||urbanlist.com/event/track-first-view/ (easyprivacy.txt: 9209) +.urbanlist.com/event/track-first-view/ +# ||uptpro.homestead.com^ (easyprivacy.txt: 9208) +.uptpro.homestead.com +# ||upsellit.com^*/visitor? (easyprivacy.txt: 9207) +.upsellit.com/.*/visitor\? +# ||upromise.com/js/csgather.js (easyprivacy.txt: 9206) +.upromise.com/js/csgather\.js +# ||upornia.com/js/0818.js (easyprivacy.txt: 9205) +.upornia.com/js/0818\.js +# ||uploadrocket.net/downloadfiles.php?*&ip (easyprivacy.txt: 9204) +.uploadrocket.net/downloadfiles\.php\?.*&ip +# ||upi.com/*/stat/ (easyprivacy.txt: 9203) +.upi.com/.*/stat/ +# ||up.nytimes.com^ (easyprivacy.txt: 9202) +.up.nytimes.com +# ||up.boston.com^ (easyprivacy.txt: 9201) +.up.boston.com +# ||unrulymedia.com/loader-analytics.html (easyprivacy.txt: 9200) +.unrulymedia.com/loader-analytics\.html +# ||unrealmarketing.com/js/unrealGTS.js (easyprivacy.txt: 9199) +.unrealmarketing.com/js/unrealGTS\.js +# ||united.com^*/hp_mediaplexunited.html (easyprivacy.txt: 9198) +.united.com/.*/hp_mediaplexunited\.html +# ||unisys.com^*/tracking.js (easyprivacy.txt: 9197) +.unisys.com/.*/tracking\.js +# ||unisys.com^*/dcsMultiTrackFastSearch. (easyprivacy.txt: 9196) +.unisys.com/.*/dcsMultiTrackFastSearch\. +# ||unisys.com^*/dcsMultiTrack.js (easyprivacy.txt: 9195) +.unisys.com/.*/dcsMultiTrack\.js +# ||unionleader.com/js/ul/ga.js (easyprivacy.txt: 9194) +.unionleader.com/js/ul/ga\.js +# ||unicornapp.com^*/Metrics/ (easyprivacy.txt: 9193) +.unicornapp.com/.*/Metrics/ +# ||ultra-gamerz-zone.cz.cc/b/stats? (easyprivacy.txt: 9192) +.ultra-gamerz-zone.cz.cc/b/stats\? +# ||ultimedia.com/deliver/statistiques/ (easyprivacy.txt: 9191) +.ultimedia.com/deliver/statistiques/ +# ||ulogin.ru/stats.html (easyprivacy.txt: 9190) +.ulogin.ru/stats\.html +# ||ui-portal.com/1and1/mailcom/s? (easyprivacy.txt: 9189) +.ui-portal.com/1and1/mailcom/s\? +# ||ucoz.com/stat/ (easyprivacy.txt: 9188) +.ucoz.com/stat/ +# ||u.tv/utvplayer/everywhere/tracking.aspx? (easyprivacy.txt: 9187) +.u.tv/utvplayer/everywhere/tracking\.aspx\? +# ||u.bb/omni*.swf| (easyprivacy.txt: 9186) +.u.bb/omni.*\.swf$ +# ||typepad.com/t/stats? (easyprivacy.txt: 9185) +.typepad.com/t/stats\? +# ||txn.thenewsroom.com^ (easyprivacy.txt: 9184) +.txn.thenewsroom.com +# ||twitvid.com/mediaplayer/players/tracker.swf (easyprivacy.txt: 9183) +.twitvid.com/mediaplayer/players/tracker\.swf +# ||twitter.com^*/log.json? (easyprivacy.txt: 9181) +.twitter.com/.*/log\.json\? +# ||twitter.com^*.gif? (easyprivacy.txt: 9180) +.twitter.com/.*\.gif\? +# ||twitter.com/scribes/ (easyprivacy.txt: 9179) +.twitter.com/scribes/ +# ||twitter.com/scribe? (easyprivacy.txt: 9178) +.twitter.com/scribe\? +# ||twitter.com/abacus? (easyprivacy.txt: 9177) +.twitter.com/abacus\? +# ||twitch.tv/track/ (easyprivacy.txt: 9176) +.twitch.tv/track/ +# ||tweako.com/imp.php (easyprivacy.txt: 9174) +.tweako.com/imp\.php +# ||tw.i.hulu.com^ (easyprivacy.txt: 9173) +.tw.i.hulu.com +# ||tvshark.com/stats.js (easyprivacy.txt: 9172) +.tvshark.com/stats\.js +# ||tvnz.co.nz/stylesheets/tvnz/lib/js/analytics.js? (easyprivacy.txt: 9171) +.tvnz.co.nz/stylesheets/tvnz/lib/js/analytics\.js\? +# ||tv-links.eu/qtt_spacer.gif (easyprivacy.txt: 9170) +.tv-links.eu/qtt_spacer\.gif +# ||turnsocial.com/track/ (easyprivacy.txt: 9169) +.turnsocial.com/track/ +# ||turn.com/js/module.tracking.js (easyprivacy.txt: 9168) +.turn.com/js/module\.tracking\.js +# ||tumblr.com/impixu? (easyprivacy.txt: 9167) +.tumblr.com/impixu\? +# ||tumblr.com/analytics.html (easyprivacy.txt: 9166) +.tumblr.com/analytics\.html +# ||tubepornclassic.com/js/111.js (easyprivacy.txt: 9165) +.tubepornclassic.com/js/111\.js +# ||tubeplus.me/imp.php? (easyprivacy.txt: 9164) +.tubeplus.me/imp\.php\? +# ||tubeplus.me/geoip.php? (easyprivacy.txt: 9163) +.tubeplus.me/geoip\.php\? +# ||ttxm.co.uk^*/log.js (easyprivacy.txt: 9162) +.ttxm.co.uk/.*/log\.js +# ||tsn.ua/svc/video/stat/ (easyprivacy.txt: 9161) +.tsn.ua/svc/video/stat/ +# ||tscapeplay.com/pvim? (easyprivacy.txt: 9160) +.tscapeplay.com/pvim\? +# ||tscapeplay.com/msvp.php? (easyprivacy.txt: 9159) +.tscapeplay.com/msvp\.php\? +# ||truthdig.com/?ACT= (easyprivacy.txt: 9158) +.truthdig.com/\?ACT= +# ||truste.com/notice?*consent-track (easyprivacy.txt: 9157) +.truste.com/notice\?.*consent-track +# ||truste.com/common/js/ga.js (easyprivacy.txt: 9156) +.truste.com/common/js/ga\.js +# ||trueffect.underarmour.com^ (easyprivacy.txt: 9155) +.trueffect.underarmour.com +# ||truecar.com/tct? (easyprivacy.txt: 9154) +.truecar.com/tct\? +# ||trovus.co.uk/tracker/ (easyprivacy.txt: 9153) +.trovus.co.uk/tracker/ +# ||trove.com/identity/public/visitor/ (easyprivacy.txt: 9152) +.trove.com/identity/public/visitor/ +# ||tripadvisor.com/uvpages/page_moniker.html (easyprivacy.txt: 9151) +.tripadvisor.com/uvpages/page_moniker\.html +# ||tripadvisor.*/PageMoniker? (easyprivacy.txt: 9150) +.tripadvisor.*./(.*/)?PageMoniker\? +# ||triond.com/cntimp? (easyprivacy.txt: 9149) +.triond.com/cntimp\? +# ||trialpay.com/mi/ (easyprivacy.txt: 9148) +.trialpay.com/mi/ +# ||triadretail.com^*/roverTrack.js (easyprivacy.txt: 9147) +.triadretail.com/.*/roverTrack\.js +# ||treato.com/api/analytics? (easyprivacy.txt: 9146) +.treato.com/api/analytics\? +# ||treatme.co.nz^*/Census.js (easyprivacy.txt: 9145) +.treatme.co.nz/.*/Census\.js +# ||tre.emv3.com/P? (easyprivacy.txt: 9144) +.tre.emv3.com/P\? +# ||trck.sixt.com^ (easyprivacy.txt: 9143) +.trck.sixt.com +# ||trb.com/hive/swf/analytics.swf (easyprivacy.txt: 9142) +.trb.com/hive/swf/analytics\.swf +# ||trax.tvguide.com^ (easyprivacy.txt: 9141) +.trax.tvguide.com +# ||traktr.news.com.au^ (easyprivacy.txt: 9140) +.traktr.news.com.au +# ||trainup.com/inc/TUPTracking.js (easyprivacy.txt: 9139) +.trainup.com/inc/TUPTracking\.js +# ||traffic.tuberip.com^ (easyprivacy.txt: 9138) +.traffic.tuberip.com +# ||traffic.buyservices.com^ (easyprivacy.txt: 9137) +.traffic.buyservices.com +# ||trade-it.co.uk/counter/ (easyprivacy.txt: 9136) +.trade-it.co.uk/counter/ +# ||trackpm.shop2market.com^ (easyprivacy.txt: 9135) +.trackpm.shop2market.com +# ||tracking.yourfilehost.com^ (easyprivacy.txt: 9134) +.tracking.yourfilehost.com +# ||tracking.ustream.tv^ (easyprivacy.txt: 9133) +.tracking.ustream.tv +# ||tracking.unrealengine.com^ (easyprivacy.txt: 9132) +.tracking.unrealengine.com +# ||tracking.ukwm.co.uk^ (easyprivacy.txt: 9131) +.tracking.ukwm.co.uk +# ||tracking.times247.com^ (easyprivacy.txt: 9130) +.tracking.times247.com +# ||tracking.tidalhifi.com^ (easyprivacy.txt: 9129) +.tracking.tidalhifi.com +# ||tracking.softwareprojects.com^ (easyprivacy.txt: 9128) +.tracking.softwareprojects.com +# ||tracking.shoptogether.buy.com^ (easyprivacy.txt: 9127) +.tracking.shoptogether.buy.com +# ||tracking.resumecompanion.com^ (easyprivacy.txt: 9126) +.tracking.resumecompanion.com +# ||tracking.realtor.com^ (easyprivacy.txt: 9125) +.tracking.realtor.com +# ||tracking.olx.com^ (easyprivacy.txt: 9124) +.tracking.olx.com +# ||tracking.olx-st.com^ (easyprivacy.txt: 9123) +.tracking.olx-st.com +# ||tracking.mycapture.com^ (easyprivacy.txt: 9122) +.tracking.mycapture.com +# ||tracking.moneyam.com^ (easyprivacy.txt: 9121) +.tracking.moneyam.com +# ||tracking.military.com^ (easyprivacy.txt: 9120) +.tracking.military.com +# ||tracking.koego.com^ (easyprivacy.txt: 9119) +.tracking.koego.com +# ||tracking.hsn.com^ (easyprivacy.txt: 9118) +.tracking.hsn.com +# ||tracking.goodgamestudios.com^ (easyprivacy.txt: 9117) +.tracking.goodgamestudios.com +# ||tracking.gfycat.com/viewCount/ (easyprivacy.txt: 9116) +.tracking.gfycat.com/viewCount/ +# ||tracking.eurosport.com^ (easyprivacy.txt: 9115) +.tracking.eurosport.com +# ||tracking.conduit.com^ (easyprivacy.txt: 9114) +.tracking.conduit.com +# ||tracking.chacha.com^ (easyprivacy.txt: 9113) +.tracking.chacha.com +# ||tracking.carsales.com.au^ (easyprivacy.txt: 9112) +.tracking.carsales.com.au +# ||tracking.carprices.com^ (easyprivacy.txt: 9111) +.tracking.carprices.com +# ||tracking.battleon.com^ (easyprivacy.txt: 9110) +.tracking.battleon.com +# ||tracking.batanga.com^ (easyprivacy.txt: 9109) +.tracking.batanga.com +# ||tracking.ancestry.com^ (easyprivacy.txt: 9108) +.tracking.ancestry.com +# ||tracker.wordstream.com^ (easyprivacy.txt: 9107) +.tracker.wordstream.com +# ||tracker.washtimes.com^ (easyprivacy.txt: 9106) +.tracker.washtimes.com +# ||tracker.uprinting.com^ (easyprivacy.txt: 9105) +.tracker.uprinting.com +# ||tracker.revip.info^ (easyprivacy.txt: 9104) +.tracker.revip.info +# ||tracker.redditmedia.com^ (easyprivacy.txt: 9103) +.tracker.redditmedia.com +# ||tracker.realclearpolitics.com^ (easyprivacy.txt: 9102) +.tracker.realclearpolitics.com +# ||tracker.pinnaclesports.com^ (easyprivacy.txt: 9101) +.tracker.pinnaclesports.com +# ||tracker.mattel.com^ (easyprivacy.txt: 9100) +.tracker.mattel.com +# ||tracker.joost.com^ (easyprivacy.txt: 9099) +.tracker.joost.com +# ||tracker.cpapath.com^ (easyprivacy.txt: 9098) +.tracker.cpapath.com +# ||tracker.calameo.com^ (easyprivacy.txt: 9097) +.tracker.calameo.com +# ||tracker.anandtech.com^ (easyprivacy.txt: 9096) +.tracker.anandtech.com +# ||track.zomato.com^ (easyprivacy.txt: 9095) +.track.zomato.com +# ||track.zalando. (easyprivacy.txt: 9094) +.track.zalando.*. +# ||track.wildblue.com^ (easyprivacy.txt: 9093) +.track.wildblue.com +# ||track.websiteceo.com^ (easyprivacy.txt: 9092) +.track.websiteceo.com +# ||track.webgains.com^ (easyprivacy.txt: 9091) +.track.webgains.com +# ||track.slideshare.net^ (easyprivacy.txt: 9090) +.track.slideshare.net +# ||track.pushbullet.com^ (easyprivacy.txt: 9089) +.track.pushbullet.com +# ||track.promptfile.com^ (easyprivacy.txt: 9088) +.track.promptfile.com +# ||track.ning.com^ (easyprivacy.txt: 9087) +.track.ning.com +# ||track.netzero.net^ (easyprivacy.txt: 9086) +.track.netzero.net +# ||track.hubspot.com^ (easyprivacy.txt: 9085) +.track.hubspot.com +# ||track.gawker.com^ (easyprivacy.txt: 9084) +.track.gawker.com +# ||track.fxstreet.com^ (easyprivacy.txt: 9083) +.track.fxstreet.com +# ||track.ft.com^ (easyprivacy.txt: 9082) +.track.ft.com +# ||track.engagesciences.com^ (easyprivacy.txt: 9081) +.track.engagesciences.com +# ||track.collegehumor.com^ (easyprivacy.txt: 9080) +.track.collegehumor.com +# ||track.codepen.io^ (easyprivacy.txt: 9079) +.track.codepen.io +# ||track.cbs.com^ (easyprivacy.txt: 9078) +.track.cbs.com +# ||track.catalogs.com^ (easyprivacy.txt: 9077) +.track.catalogs.com +# ||track.briskfile.com^ (easyprivacy.txt: 9076) +.track.briskfile.com +# ||tracer.perezhilton.com^ (easyprivacy.txt: 9075) +.tracer.perezhilton.com +# ||tracelog.www.alibaba.com^ (easyprivacy.txt: 9074) +.tracelog.www.alibaba.com +# ||tqn.com/px/? (easyprivacy.txt: 9073) +.tqn.com/px/\? +# ||toyota.com/analytics/ (easyprivacy.txt: 9072) +.toyota.com/analytics/ +# ||tottenhamhotspur.com/media/javascript/google/ (easyprivacy.txt: 9071) +.tottenhamhotspur.com/media/javascript/google/ +# ||totalporn.com/videos/tracking/?url= (easyprivacy.txt: 9070) +.totalporn.com/videos/tracking/\?url= +# ||total.shanghaidaily.com^ (easyprivacy.txt: 9069) +.total.shanghaidaily.com +# ||toshibadirect.com^*/remarketing_google.js (easyprivacy.txt: 9068) +.toshibadirect.com/.*/remarketing_google\.js +# ||torrentz.ph/ping? (easyprivacy.txt: 9067) +.torrentz.ph/ping\? +# ||torrentz.me/ping? (easyprivacy.txt: 9066) +.torrentz.me/ping\? +# ||torrentz.li/ping? (easyprivacy.txt: 9065) +.torrentz.li/ping\? +# ||torrentz.in/ping? (easyprivacy.txt: 9064) +.torrentz.in/ping\? +# ||torrentz.eu/ping? (easyprivacy.txt: 9063) +.torrentz.eu/ping\? +# ||topix.com/t6track/ (easyprivacy.txt: 9062) +.topix.com/t6track/ +# ||top.wn.com^ (easyprivacy.txt: 9061) +.top.wn.com +# ||tmagazine.com/js/track_ (easyprivacy.txt: 9060) +.tmagazine.com/js/track_ +# ||tk.kargo.com^ (easyprivacy.txt: 9059) +.tk.kargo.com +# ||tivo.com/__ssobj/track? (easyprivacy.txt: 9058) +.tivo.com/__ssobj/track\? +# ||tinypic.com/track.php? (easyprivacy.txt: 9057) +.tinypic.com/track\.php\? +# ||timestrends.timesnow.tv^ (easyprivacy.txt: 9055) +.timestrends.timesnow.tv +# ||timestrends.indiatimes.com^ (easyprivacy.txt: 9054) +.timestrends.indiatimes.com +# ||timesrecordnews.com/metrics/ (easyprivacy.txt: 9053) +.timesrecordnews.com/metrics/ +# ||timeslogtn.timesnow.tv^ (easyprivacy.txt: 9052) +.timeslogtn.timesnow.tv +# ||tidaltv.com/Ping.aspx (easyprivacy.txt: 9051) +.tidaltv.com/Ping\.aspx +# ||tickco.com/track.js (easyprivacy.txt: 9050) +.tickco.com/track\.js +# ||tiaa-cref.org^*/js_tiaacref_analytics. (easyprivacy.txt: 9049) +.tiaa-cref.org/.*/js_tiaacref_analytics\. +# ||thrillist.com/track (easyprivacy.txt: 9047) +.thrillist.com/track +# ||thinkgeek.com/js/rts.js (easyprivacy.txt: 9046) +.thinkgeek.com/js/rts\.js +# ||theweek.com/decor/track/ (easyprivacy.txt: 9045) +.theweek.com/decor/track/ +# ||thesmokinggun.com^*/jsmd.js (easyprivacy.txt: 9044) +.thesmokinggun.com/.*/jsmd\.js +# ||theseforums.com/track/ (easyprivacy.txt: 9043) +.theseforums.com/track/ +# ||thesaurus.com/track/ (easyprivacy.txt: 9042) +.thesaurus.com/track/ +# ||theolivepress.es/cdn-cgi/cl/ (easyprivacy.txt: 9041) +.theolivepress.es/cdn-cgi/cl/ +# ||thenewsroom.com//playerreporting/ (easyprivacy.txt: 9040) +# ||thelocal.se/scripts/sstat_plugin.js (easyprivacy.txt: 9039) +.thelocal.se/scripts/sstat_plugin\.js +# ||thelocal.se/log/? (easyprivacy.txt: 9038) +.thelocal.se/log/\? +# ||thelocal.de/marketplace/log/? (easyprivacy.txt: 9037) +.thelocal.de/marketplace/log/\? +# ||thelocal.de/log/? (easyprivacy.txt: 9036) +.thelocal.de/log/\? +# ||thejournal.ie/i.php (easyprivacy.txt: 9035) +.thejournal.ie/i\.php +# ||thejc.com/metatraffic2/ (easyprivacy.txt: 9034) +.thejc.com/metatraffic2/ +# ||thegumtree.com^*/tracking.js (easyprivacy.txt: 9033) +.thegumtree.com/.*/tracking\.js +# ||thegameslist.com/wb/t.gif (easyprivacy.txt: 9032) +.thegameslist.com/wb/t\.gif +# ||thefrisky.com/?act= (easyprivacy.txt: 9031) +.thefrisky.com/\?act= +# ||thefreedictionary.com^*/track.ashx? (easyprivacy.txt: 9030) +.thefreedictionary.com/.*/track\.ashx\? +# ||thefreedictionary.com/x/tp.ashx (easyprivacy.txt: 9029) +.thefreedictionary.com/x/tp\.ashx +# ||thefind.com/page/sizelog? (easyprivacy.txt: 9028) +.thefind.com/page/sizelog\? +# ||thefilter.com^*/CaptureRest.ashx?cmd= (easyprivacy.txt: 9027) +.thefilter.com/.*/CaptureRest\.ashx\?cmd= +# ||thefashionspot.com^*/pb.track.js (easyprivacy.txt: 9026) +.thefashionspot.com/.*/pb\.track\.js +# ||thedeal.com/oas_ (easyprivacy.txt: 9025) +.thedeal.com/oas_ +# ||thecreatorsproject.com/tracker.html (easyprivacy.txt: 9024) +.thecreatorsproject.com/tracker\.html +# ||theconversation.com/javascripts/lib/content_tracker_hook.js (easyprivacy.txt: 9023) +.theconversation.com/javascripts/lib/content_tracker_hook\.js +# ||theage.com.au^*/behave.js (easyprivacy.txt: 9022) +.theage.com.au/.*/behave\.js +# ||the42.ie/i.php (easyprivacy.txt: 9021) +.the42.ie/i\.php +# ||tgw.com/1/t.gif (easyprivacy.txt: 9020) +.tgw.com/1/t\.gif +# ||tfl.gov.uk/tfl-global/scripts/stats.js (easyprivacy.txt: 9019) +.tfl.gov.uk/tfl-global/scripts/stats\.js +# ||tfl.gov.uk/tfl-global/scripts/stats-config.js (easyprivacy.txt: 9018) +.tfl.gov.uk/tfl-global/scripts/stats-config\.js +# ||texaco.co.uk/trackingcode.js (easyprivacy.txt: 9017) +.texaco.co.uk/trackingcode\.js +# ||tesco.com/cgi-bin3/buyrate?type= (easyprivacy.txt: 9016) +.tesco.com/cgi-bin3/buyrate\?type= +# ||telegraph.co.uk^*/tmglmultitrackselector.js (easyprivacy.txt: 9015) +.telegraph.co.uk/.*/tmglmultitrackselector\.js +# ||ted1.metro.co.uk^ (easyprivacy.txt: 9014) +.ted1.metro.co.uk +# ||ted.metro.co.uk^ (easyprivacy.txt: 9013) +.ted.metro.co.uk +# ||ted.dailymail.co.uk^ (easyprivacy.txt: 9012) +.ted.dailymail.co.uk +# ||tdwaterhouse.co.uk^*/track.js (easyprivacy.txt: 9011) +.tdwaterhouse.co.uk/.*/track\.js +# ||tdwaterhouse.ca/includes/javascript/rtesurvey.js (easyprivacy.txt: 9010) +.tdwaterhouse.ca/includes/javascript/rtesurvey\.js +# ||tcpalm.com/metrics/ (easyprivacy.txt: 9009) +.tcpalm.com/metrics/ +# ||tck.bangbros.com^ (easyprivacy.txt: 9007) +.tck.bangbros.com +# ||tarot.com/stats/ (easyprivacy.txt: 9006) +.tarot.com/stats/ +# ||targetspot.com/track/ (easyprivacy.txt: 9005) +.targetspot.com/track/ +# ||talktalk.co.uk^*/tracking/ (easyprivacy.txt: 9003) +.talktalk.co.uk/.*/tracking/ +# ||talktalk.co.uk^*/log.html (easyprivacy.txt: 9002) +.talktalk.co.uk/.*/log\.html +# ||tags.transportdirect.info^ (easyprivacy.txt: 9001) +.tags.transportdirect.info +# ||tags.news.com.au^ (easyprivacy.txt: 9000) +.tags.news.com.au +# ||tags.msnbc.com^ (easyprivacy.txt: 8999) +.tags.msnbc.com +# ||tag-stats.huffpost.com^ (easyprivacy.txt: 8998) +.tag-stats.huffpost.com +# ||tacobell.com/tb_files/js/tracker.js (easyprivacy.txt: 8997) +.tacobell.com/tb_files/js/tracker\.js +# ||tab.co.nz/track? (easyprivacy.txt: 8996) +.tab.co.nz/track\? +# ||t3.com/js/trackers.js (easyprivacy.txt: 8995) +.t3.com/js/trackers\.js +# ||t2.huluim.com^ (easyprivacy.txt: 8994) +.t2.huluim.com +# ||t2.hulu.com^ (easyprivacy.txt: 8993) +.t2.hulu.com +# ||t.vimeo.com^ (easyprivacy.txt: 8992) +.t.vimeo.com +# ||t.paypal.com^ (easyprivacy.txt: 8991) +.t.paypal.com +# ||t.kck.st^ (easyprivacy.txt: 8990) +.t.kck.st +# ||t.hulu.com/beacon/ (easyprivacy.txt: 8989) +.t.hulu.com/beacon/ +# ||t.eharmony.com^ (easyprivacy.txt: 8988) +.t.eharmony.com +# ||t.dailymail.co.uk^ (easyprivacy.txt: 8987) +.t.dailymail.co.uk +# ||t.9gag.com^ (easyprivacy.txt: 8986) +.t.9gag.com +# ||t-ak.hulu.com^ (easyprivacy.txt: 8985) +.t-ak.hulu.com +# ||sysomos.com/track/ (easyprivacy.txt: 8984) +.sysomos.com/track/ +# ||surveys.cnet.com^ (easyprivacy.txt: 8983) +.surveys.cnet.com +# ||superpages.com/ct/clickThrough? (easyprivacy.txt: 8982) +.superpages.com/ct/clickThrough\? +# ||supermediastore.com/web/track? (easyprivacy.txt: 8981) +.supermediastore.com/web/track\? +# ||sundayskylb1.com/sst.gif? (easyprivacy.txt: 8980) +.sundayskylb1.com/sst\.gif\? +# ||sun.com/share/metrics/ (easyprivacy.txt: 8979) +.sun.com/share/metrics/ +# ||suite101.com/tracking/ (easyprivacy.txt: 8978) +.suite101.com/tracking/ +# ||sugarvine.com/inc/tracking.asp (easyprivacy.txt: 8977) +.sugarvine.com/inc/tracking\.asp +# ||sugar.gameforge.com^ (easyprivacy.txt: 8976) +.sugar.gameforge.com +# ||sublimevideo.net/_.gif (easyprivacy.txt: 8975) +.sublimevideo.net/_\.gif +# ||stylelist.com/ping?ts= (easyprivacy.txt: 8974) +.stylelist.com/ping\?ts= +# ||stuff.co.nz^*/track.min.js (easyprivacy.txt: 8973) +.stuff.co.nz/.*/track\.min\.js +# ||stuff.co.nz/track/ (easyprivacy.txt: 8972) +.stuff.co.nz/track/ +# ||stuff.afterdawn.com/views.cfm (easyprivacy.txt: 8971) +.stuff.afterdawn.com/views\.cfm +# ||studyisland.com^*/ga.js (easyprivacy.txt: 8970) +.studyisland.com/.*/ga\.js +# ||stribe.com/00/logs? (easyprivacy.txt: 8969) +.stribe.com/00/logs\? +# ||streetfire.net/handlers/logstreamfileimpression.ashx? (easyprivacy.txt: 8968) +.streetfire.net/handlers/logstreamfileimpression\.ashx\? +# ||streetfire.net/flash/trackingutility.swf (easyprivacy.txt: 8967) +.streetfire.net/flash/trackingutility\.swf +# ||streetdirectory.com/tracking/ (easyprivacy.txt: 8966) +.streetdirectory.com/tracking/ +# ||streamstats1.blinkx.com^ (easyprivacy.txt: 8965) +.streamstats1.blinkx.com +# ||stratfor.com/js/linktracker.js (easyprivacy.txt: 8964) +.stratfor.com/js/linktracker\.js +# ||storewidesearch.com/imn/mn.gif? (easyprivacy.txt: 8963) +.storewidesearch.com/imn/mn\.gif\? +# ||storenvy.com/tracking/ (easyprivacy.txt: 8962) +.storenvy.com/tracking/ +# ||store.yahoo.net^*/ywa.js (easyprivacy.txt: 8961) +.store.yahoo.net/.*/ywa\.js +# ||stomp.com.sg/site/servlet/tracker (easyprivacy.txt: 8960) +.stomp.com.sg/site/servlet/tracker +# ||stocktwits.com/spaceape-web.gif? (easyprivacy.txt: 8959) +.stocktwits.com/spaceape-web\.gif\? +# ||stickpage.com/counter.php (easyprivacy.txt: 8958) +.stickpage.com/counter\.php +# ||stg.nytimes.com^ (easyprivacy.txt: 8957) +.stg.nytimes.com +# ||stcollection.moneysupermarket.com^ (easyprivacy.txt: 8956) +.stcollection.moneysupermarket.com +# ||stbt.coupons.com^ (easyprivacy.txt: 8955) +.stbt.coupons.com +# ||stattrack.0catch.com^ (easyprivacy.txt: 8954) +.stattrack.0catch.com +# ||statstracker.celebrity-gossip.net^ (easyprivacy.txt: 8953) +.statstracker.celebrity-gossip.net +# ||stats.zmags.com^ (easyprivacy.txt: 8952) +.stats.zmags.com +# ||stats.ynet.co.il^ (easyprivacy.txt: 8951) +.stats.ynet.co.il +# ||stats.wwitv.com^ (easyprivacy.txt: 8950) +.stats.wwitv.com +# ||stats.wwd.com^ (easyprivacy.txt: 8949) +.stats.wwd.com +# ||stats.wordpress.com^ (easyprivacy.txt: 8948) +.stats.wordpress.com +# ||stats.vulture.com^ (easyprivacy.txt: 8947) +.stats.vulture.com +# ||stats.visistat.com^ (easyprivacy.txt: 8946) +.stats.visistat.com +# ||stats.video.search.yahoo.com^ (easyprivacy.txt: 8945) +.stats.video.search.yahoo.com +# ||stats.uswitch.com^ (easyprivacy.txt: 8944) +.stats.uswitch.com +# ||stats.townnews.com^ (easyprivacy.txt: 8943) +.stats.townnews.com +# ||stats.suite101.com^ (easyprivacy.txt: 8942) +.stats.suite101.com +# ||stats.storify.com^ (easyprivacy.txt: 8941) +.stats.storify.com +# ||stats.someecards.com^ (easyprivacy.txt: 8940) +.stats.someecards.com +# ||stats.slideshare.net^ (easyprivacy.txt: 8939) +.stats.slideshare.net +# ||stats.slashgear.com^ (easyprivacy.txt: 8938) +.stats.slashgear.com +# ||stats.shoppydoo.com^ (easyprivacy.txt: 8937) +.stats.shoppydoo.com +# ||stats.sharenet.co.za^ (easyprivacy.txt: 8936) +.stats.sharenet.co.za +# ||stats.searchsight.com^ (easyprivacy.txt: 8935) +.stats.searchsight.com +# ||stats.searchftps.org^ (easyprivacy.txt: 8934) +.stats.searchftps.org +# ||stats.redditmedia.com^ (easyprivacy.txt: 8933) +.stats.redditmedia.com +# ||stats.radiostreamlive.com^ (easyprivacy.txt: 8932) +.stats.radiostreamlive.com +# ||stats.pusher.com^ (easyprivacy.txt: 8931) +.stats.pusher.com +# ||stats.propublica.org^ (easyprivacy.txt: 8930) +.stats.propublica.org +# ||stats.piaggio.com^ (easyprivacy.txt: 8929) +.stats.piaggio.com +# ||stats.paypal.com^ (easyprivacy.txt: 8928) +.stats.paypal.com +# ||stats.paste2.org^ (easyprivacy.txt: 8927) +.stats.paste2.org +# ||stats.pandora.com^ (easyprivacy.txt: 8926) +.stats.pandora.com +# ||stats.nymag.com^ (easyprivacy.txt: 8925) +.stats.nymag.com +# ||stats.mehrnews.com^ (easyprivacy.txt: 8924) +.stats.mehrnews.com +# ||stats.macmillanusa.com^ (easyprivacy.txt: 8923) +.stats.macmillanusa.com +# ||stats.ibtimes.co.in^ (easyprivacy.txt: 8922) +.stats.ibtimes.co.in +# ||stats.harpercollins.com^ (easyprivacy.txt: 8921) +.stats.harpercollins.com +# ||stats.firedrive.com^ (easyprivacy.txt: 8920) +.stats.firedrive.com +# ||stats.farfetch.com^ (easyprivacy.txt: 8919) +.stats.farfetch.com +# ||stats.eyeviewdigital.com^ (easyprivacy.txt: 8918) +.stats.eyeviewdigital.com +# ||stats.europe.newsweek.com^ (easyprivacy.txt: 8917) +.stats.europe.newsweek.com +# ||stats.ebay.com^ (easyprivacy.txt: 8916) +.stats.ebay.com +# ||stats.clear-media.com^ (easyprivacy.txt: 8915) +.stats.clear-media.com +# ||stats.christianpost.com^ (easyprivacy.txt: 8914) +.stats.christianpost.com +# ||stats.cardschat.com^ (easyprivacy.txt: 8913) +.stats.cardschat.com +# ||stats.break.com^ (easyprivacy.txt: 8912) +.stats.break.com +# ||stats.blogg.se^ (easyprivacy.txt: 8911) +.stats.blogg.se +# ||stats.binki.es^ (easyprivacy.txt: 8910) +.stats.binki.es +# ||stats.behance.net^ (easyprivacy.txt: 8909) +.stats.behance.net +# ||stats.bbc.co.uk^ (easyprivacy.txt: 8908) +.stats.bbc.co.uk +# ||stats.avg.com^ (easyprivacy.txt: 8907) +.stats.avg.com +# ||stats.articlesbase.com^ (easyprivacy.txt: 8906) +.stats.articlesbase.com +# ||stats.aplus.com^ (easyprivacy.txt: 8905) +.stats.aplus.com +# ||statravel.com^*/Javascript/wt_gets.js (easyprivacy.txt: 8904) +.statravel.com/.*/Javascript/wt_gets\.js +# ||statravel.co.uk/static/uk_division_web_live/Javascript/wt_gets.js (easyprivacy.txt: 8903) +.statravel.co.uk/static/uk_division_web_live/Javascript/wt_gets\.js +# ||statistics.crowdynews.com^ (easyprivacy.txt: 8902) +.statistics.crowdynews.com +# ||staticworld.net/pixel.gif (easyprivacy.txt: 8901) +.staticworld.net/pixel\.gif +# ||staticwhich.co.uk/assets/*/track.js (easyprivacy.txt: 8900) +.staticwhich.co.uk/assets/.*/track\.js +# ||staticlp.com/analytics/ (easyprivacy.txt: 8899) +.staticlp.com/analytics/ +# ||staticice.com.au/cgi-bin/stats.cgi? (easyprivacy.txt: 8898) +.staticice.com.au/cgi-bin/stats\.cgi\? +# ||static.ow.ly^*/click.gz.js (easyprivacy.txt: 8897) +.static.ow.ly/.*/click\.gz\.js +# ||statesmanjournal.com^*/articlepageview.php? (easyprivacy.txt: 8896) +.statesmanjournal.com/.*/articlepageview\.php\? +# ||stat.torrentbar.com^ (easyprivacy.txt: 8895) +.stat.torrentbar.com +# ||stat.ruvr.ru^ (easyprivacy.txt: 8894) +.stat.ruvr.ru +# ||stat.dealtime.com^ (easyprivacy.txt: 8893) +.stat.dealtime.com +# ||stat.alibaba.com^ (easyprivacy.txt: 8892) +.stat.alibaba.com +# ||startpage.*/pelp? (easyprivacy.txt: 8891) +.startpage.*./(.*/)?pelp\? +# ||startpage.*/elp? (easyprivacy.txt: 8890) +.startpage.*./(.*/)?elp\? +# ||ssl-stats.wordpress.com^ (easyprivacy.txt: 8888) +.ssl-stats.wordpress.com +# ||srt.pch.com^ (easyprivacy.txt: 8887) +.srt.pch.com +# ||squidoo.com/track/ (easyprivacy.txt: 8886) +.squidoo.com/track/ +# ||spotlight.accuweather.com^ (easyprivacy.txt: 8885) +.spotlight.accuweather.com +# ||sportingnews.com/px/ (easyprivacy.txt: 8884) +.sportingnews.com/px/ +# ||sporcle.com/adn/yaktrack.php? (easyprivacy.txt: 8883) +.sporcle.com/adn/yaktrack\.php\? +# ||spoonful.com^*/tracking.js (easyprivacy.txt: 8882) +.spoonful.com/.*/tracking\.js +# ||spinmediacdn.com/clarity.min.js (easyprivacy.txt: 8880) +.spinmediacdn.com/clarity\.min\.js +# ||spinmedia.com/clarity.min.js (easyprivacy.txt: 8879) +.spinmedia.com/clarity\.min\.js +# ||spinback.com/spinback/event/impression/ (easyprivacy.txt: 8878) +.spinback.com/spinback/event/impression/ +# ||spiegel.com/spacer.gif? (easyprivacy.txt: 8877) +.spiegel.com/spacer\.gif\? +# ||speakertext.com/analytics/ (easyprivacy.txt: 8876) +.speakertext.com/analytics/ +# ||spanids.thesaurus.com^ (easyprivacy.txt: 8875) +.spanids.thesaurus.com +# ||spanids.reference.com^ (easyprivacy.txt: 8874) +.spanids.reference.com +# ||spanids.dictionary.com^ (easyprivacy.txt: 8873) +.spanids.dictionary.com +# ||spade.twitch.tv^ (easyprivacy.txt: 8872) +.spade.twitch.tv +# ||sp.udimg.com^ (easyprivacy.txt: 8871) +.sp.udimg.com +# ||sovereignbank.com/utils/track.asp (easyprivacy.txt: 8870) +.sovereignbank.com/utils/track\.asp +# ||sourceforge.net/log/ (easyprivacy.txt: 8869) +.sourceforge.net/log/ +# ||sourceforge.net/images/mlopen_post.html? (easyprivacy.txt: 8868) +.sourceforge.net/images/mlopen_post\.html\? +# ||soonnight.com/stats.htm (easyprivacy.txt: 8867) +.soonnight.com/stats\.htm +# ||sony-europe.com/tr/p.gif? (easyprivacy.txt: 8866) +.sony-europe.com/tr/p\.gif\? +# ||somniture.theglobeandmail.com^ (easyprivacy.txt: 8865) +.somniture.theglobeandmail.com +# ||sofascore.com/geoip.js (easyprivacy.txt: 8864) +.sofascore.com/geoip\.js +# ||soe.com/js/web-platform/web-data-tracker.js (easyprivacy.txt: 8863) +.soe.com/js/web-platform/web-data-tracker\.js +# ||socialstreamingplayer.crystalmedianetworks.com/tracker/ (easyprivacy.txt: 8862) +.socialstreamingplayer.crystalmedianetworks.com/tracker/ +# ||socialcodedev.com/pixel/ (easyprivacy.txt: 8861) +.socialcodedev.com/pixel/ +# ||snowplow-collector.sugarops.com^ (easyprivacy.txt: 8860) +.snowplow-collector.sugarops.com +# ||snorgtees.com/js/digitalbasement/conversion.js (easyprivacy.txt: 8859) +.snorgtees.com/js/digitalbasement/conversion\.js +# ||snippets.mozilla.com^ (easyprivacy.txt: 8858) +.snippets.mozilla.com +# ||snakesworld.com/cgi-bin/hitometer/ (easyprivacy.txt: 8857) +.snakesworld.com/cgi-bin/hitometer/ +# ||smetrics.delta.com^ (easyprivacy.txt: 8856) +.smetrics.delta.com +# ||smartname.com/scripts/cookies.js (easyprivacy.txt: 8855) +.smartname.com/scripts/cookies\.js +# ||smallcapnetwork.com^*/viewtracker/ (easyprivacy.txt: 8854) +.smallcapnetwork.com/.*/viewtracker/ +# ||slide.com/tracker/ (easyprivacy.txt: 8853) +.slide.com/tracker/ +# ||slashgear.com/stats/ (easyprivacy.txt: 8852) +.slashgear.com/stats/ +# ||skyrock.net/stats/ (easyprivacy.txt: 8850) +.skyrock.net/stats/ +# ||skyrock.net/js/stats_blog.js (easyprivacy.txt: 8849) +.skyrock.net/js/stats_blog\.js +# ||skyrock.net/img/pix.gif (easyprivacy.txt: 8848) +.skyrock.net/img/pix\.gif +# ||skypeassets.com^*/track_channel.js (easyprivacy.txt: 8847) +.skypeassets.com/.*/track_channel\.js +# ||skypeassets.com^*/inclient/ (easyprivacy.txt: 8846) +.skypeassets.com/.*/inclient/ +# ||skypeassets.com/i/js/jquery/tracking.js (easyprivacy.txt: 8845) +.skypeassets.com/i/js/jquery/tracking\.js +# ||skype.com^*/track_channel.js (easyprivacy.txt: 8844) +.skype.com/.*/track_channel\.js +# ||skype.com^*/inclient/ (easyprivacy.txt: 8843) +.skype.com/.*/inclient/ +# ||sky.com^*/incomeGeneratingDevicesExpanding.js (easyprivacy.txt: 8842) +.sky.com/.*/incomeGeneratingDevicesExpanding\.js +# ||sky.com^*/hightrafficsurveycode.js (easyprivacy.txt: 8841) +.sky.com/.*/hightrafficsurveycode\.js +# ||sixpack.udimg.com^ (easyprivacy.txt: 8840) +.sixpack.udimg.com +# ||sitemeter.com/meter.asp (easyprivacy.txt: 8839) +.sitemeter.com/meter\.asp +# ||sitelife.ehow.com^ (easyprivacy.txt: 8838) +.sitelife.ehow.com +# ||singer22-static.com/stat/ (easyprivacy.txt: 8837) +.singer22-static.com/stat/ +# ||simplyhired.com^*/hit? (easyprivacy.txt: 8836) +.simplyhired.com/.*/hit\? +# ||similarsites.com/sbbgate.aspx/ (easyprivacy.txt: 8835) +.similarsites.com/sbbgate\.aspx/ +# ||sidebar.issuu.com^ (easyprivacy.txt: 8834) +.sidebar.issuu.com +# ||siberiantimes.com/counter/ (easyprivacy.txt: 8833) +.siberiantimes.com/counter/ +# ||shvoong.com/images/spacer.gif (easyprivacy.txt: 8832) +.shvoong.com/images/spacer\.gif +# ||shutterstock.com/b.png? (easyprivacy.txt: 8831) +.shutterstock.com/b\.png\? +# ||shutterfly.com^*/pageloadtime.gif? (easyprivacy.txt: 8830) +.shutterfly.com/.*/pageloadtime\.gif\? +# ||showstreet.com/log/ (easyprivacy.txt: 8829) +.showstreet.com/log/ +# ||shoutcast.com/traffic/? (easyprivacy.txt: 8828) +.shoutcast.com/traffic/\? +# ||shopzilla-images.com/s2static/*/js/tracker.js (easyprivacy.txt: 8827) +.shopzilla-images.com/s2static/.*/js/tracker\.js +# ||shopsubmit.co.uk/visitor.ashx (easyprivacy.txt: 8826) +.shopsubmit.co.uk/visitor\.ashx +# ||shopping.com/pixel/ (easyprivacy.txt: 8825) +.shopping.com/pixel/ +# ||shoplocal.com/dot_clear.gif? (easyprivacy.txt: 8824) +.shoplocal.com/dot_clear\.gif\? +# ||shopify.com/track.js (easyprivacy.txt: 8823) +.shopify.com/track\.js +# ||shopautoweek.com/js/modules/tracker.js (easyprivacy.txt: 8822) +.shopautoweek.com/js/modules/tracker\.js +# ||shoes.com/WebServices/ClientLogging. (easyprivacy.txt: 8821) +.shoes.com/WebServices/ClientLogging\. +# ||sharecast.com/counter.php (easyprivacy.txt: 8820) +.sharecast.com/counter\.php +# ||shareaholic.com^*/bake.gif? (easyprivacy.txt: 8819) +.shareaholic.com/.*/bake\.gif\? +# ||sh.st/bundles/smeweb/img/tracking- (easyprivacy.txt: 8818) +.sh.st/bundles/smeweb/img/tracking- +# ||sex-flow.com/js/error.js (easyprivacy.txt: 8817) +.sex-flow.com/js/error\.js +# ||sevenload.com/som_ (easyprivacy.txt: 8816) +.sevenload.com/som_ +# ||sevenload.com/blank.gif? (easyprivacy.txt: 8815) +.sevenload.com/blank\.gif\? +# ||session-tracker.badcreditloans.com^ (easyprivacy.txt: 8814) +.session-tracker.badcreditloans.com +# ||servicetick.com^ (easyprivacy.txt: 8813) +.servicetick.com +# ||servedby.yell.com/t.js?cq (easyprivacy.txt: 8812) +.servedby.yell.com/t\.js\?cq +# ||seoquake.com/seoadv/audience/3.gif (easyprivacy.txt: 8811) +.seoquake.com/seoadv/audience/3\.gif +# ||sense.dailymotion.com^ (easyprivacy.txt: 8810) +.sense.dailymotion.com +# ||sella.co.nz^*/sella_stats_ (easyprivacy.txt: 8809) +.sella.co.nz/.*/sella_stats_ +# ||selfip.org/counter/ (easyprivacy.txt: 8808) +.selfip.org/counter/ +# ||seeclickfix.com^*/text_widgets_analytics.html (easyprivacy.txt: 8807) +.seeclickfix.com/.*/text_widgets_analytics\.html +# ||securepaynet.net/image.aspx? (easyprivacy.txt: 8806) +.securepaynet.net/image\.aspx\? +# ||secondspace.com^*/blank.gif (easyprivacy.txt: 8805) +.secondspace.com/.*/blank\.gif +# ||seatgeek.com/tracker.gif? (easyprivacy.txt: 8804) +.seatgeek.com/tracker\.gif\? +# ||seatgeek.com/sixpack/participate? (easyprivacy.txt: 8803) +.seatgeek.com/sixpack/participate\? +# ||searchenginewatch.com/utils/article_track/ (easyprivacy.txt: 8802) +.searchenginewatch.com/utils/article_track/ +# ||search.yahoo.com/ra/click? (easyprivacy.txt: 8801) +.search.yahoo.com/ra/click\? +# ||search.usa.gov/javascripts/stats.js (easyprivacy.txt: 8800) +.search.usa.gov/javascripts/stats\.js +# ||search.firstplace.com^*pageview (easyprivacy.txt: 8799) +.search.firstplace.com/.*pageview +# ||search.ch/audit/ (easyprivacy.txt: 8798) +.search.ch/audit/ +# ||sdc.com/sdcdata.js (easyprivacy.txt: 8797) +.sdc.com/sdcdata\.js +# ||scripts.snowball.com/scripts/images/pixy.gif (easyprivacy.txt: 8796) +.scripts.snowball.com/scripts/images/pixy\.gif +# ||scriptlance.com/cgi-bin/freelancers/ref_click.cgi? (easyprivacy.txt: 8795) +.scriptlance.com/cgi-bin/freelancers/ref_click\.cgi\? +# ||scribol.com/traffix-tracker.gif (easyprivacy.txt: 8794) +.scribol.com/traffix-tracker\.gif +# ||scribe.twitter.com^ (easyprivacy.txt: 8793) +.scribe.twitter.com +# ||scribd.com^*/tracker.gif? (easyprivacy.txt: 8792) +.scribd.com/.*/tracker\.gif\? +# ||scout.rollcall.com^ (easyprivacy.txt: 8791) +.scout.rollcall.com +# ||scout.lexisnexis.com^ (easyprivacy.txt: 8790) +.scout.lexisnexis.com +# ||scotts.com/smg/js/omni/customTracking.js (easyprivacy.txt: 8789) +.scotts.com/smg/js/omni/customTracking\.js +# ||scoot.co.uk/ajax/log_serps.php (easyprivacy.txt: 8788) +.scoot.co.uk/ajax/log_serps\.php +# ||scoop.co.nz/images/pixel.gif (easyprivacy.txt: 8787) +.scoop.co.nz/images/pixel\.gif +# ||sciencedaily.com/cache.php? (easyprivacy.txt: 8786) +.sciencedaily.com/cache\.php\? +# ||sciencedaily.com/blank.htm (easyprivacy.txt: 8785) +.sciencedaily.com/blank\.htm +# ||sbs.com.au/js/tracking/ (easyprivacy.txt: 8784) +.sbs.com.au/js/tracking/ +# ||sb.vevo.com^ (easyprivacy.txt: 8783) +.sb.vevo.com +# ||sayac.hurriyettv.com^ (easyprivacy.txt: 8782) +.sayac.hurriyettv.com +# ||satellite-tv-guides.com/stat/ (easyprivacy.txt: 8781) +.satellite-tv-guides.com/stat/ +# ||sap.com/global/ui/js/trackinghelper.js (easyprivacy.txt: 8780) +.sap.com/global/ui/js/trackinghelper\.js +# ||sana.newsinc.com.s3.amazonaws.com^ (easyprivacy.txt: 8779) +.sana.newsinc.com.s3.amazonaws.com +# ||samsung.com^*/scripts/tracking.js (easyprivacy.txt: 8778) +.samsung.com/.*/scripts/tracking\.js +# ||salsitasoft.com/view.gif? (easyprivacy.txt: 8777) +.salsitasoft.com/view\.gif\? +# ||sagepub.com^*/login_hit_hidden.gif? (easyprivacy.txt: 8776) +.sagepub.com/.*/login_hit_hidden\.gif\? +# ||sabc.co.za/SABC/analytics/ (easyprivacy.txt: 8775) +.sabc.co.za/SABC/analytics/ +# ||sabah.com.tr/StatisticImage/ (easyprivacy.txt: 8774) +.sabah.com.tr/StatisticImage/ +# ||sabah.com.tr/Statistic/ (easyprivacy.txt: 8773) +.sabah.com.tr/Statistic/ +# ||sa.squareup.com^ (easyprivacy.txt: 8772) +.sa.squareup.com +# ||sa.bbc.com^ (easyprivacy.txt: 8771) +.sa.bbc.com +# ||sa.bbc.co.uk^ (easyprivacy.txt: 8770) +.sa.bbc.co.uk +# ||s2.youtube.com^ (easyprivacy.txt: 8769) +.s2.youtube.com +# ||s.youtube.com^ (easyprivacy.txt: 8768) +.s.youtube.com +# ||s.infogr.am^ (easyprivacy.txt: 8767) +.s.infogr.am +# ||s-msn.com/s/js/loader/activity/trackloader.min.js (easyprivacy.txt: 8766) +.s-msn.com/s/js/loader/activity/trackloader\.min\.js +# ||s-msn.com/br/gbl/js/2/report.js (easyprivacy.txt: 8764) +.s-msn.com/br/gbl/js/2/report\.js +# ||russellgrant.com/hostedsearch/panelcounter.aspx (easyprivacy.txt: 8763) +.russellgrant.com/hostedsearch/panelcounter\.aspx +# ||runnersworld.com^*/universalpixel.html (easyprivacy.txt: 8762) +.runnersworld.com/.*/universalpixel\.html +# ||rte.ie/player/playertracker.js (easyprivacy.txt: 8761) +.rte.ie/player/playertracker\.js +# ||rta.dailymail.co.uk^ (easyprivacy.txt: 8760) +.rta.dailymail.co.uk +# ||rt.rakuten.co.jp^ (easyprivacy.txt: 8759) +.rt.rakuten.co.jp +# ||rt.prnewswire.com^ (easyprivacy.txt: 8758) +.rt.prnewswire.com +# ||rsys2.net/pub/as? (easyprivacy.txt: 8757) +.rsys2.net/pub/as\? +# ||rsscache.com/Section/Stats/ (easyprivacy.txt: 8756) +.rsscache.com/Section/Stats/ +# ||rs.mail.ru^ (easyprivacy.txt: 8755) +.rs.mail.ru +# ||rover.ebay.com.au^*&cguid= (easyprivacy.txt: 8754) +.rover.ebay.com.au/.*&cguid= +# ||rottentomatoes.com/tracking/ (easyprivacy.txt: 8752) +.rottentomatoes.com/tracking/ +# ||roll.bankofamerica.com^ (easyprivacy.txt: 8751) +.roll.bankofamerica.com +# ||rok.com.com^ (easyprivacy.txt: 8750) +.rok.com.com +# ||roadandtrack.com^*/RTdartSite.js (easyprivacy.txt: 8749) +.roadandtrack.com/.*/RTdartSite\.js +# ||ro89.com/hitme.php? (easyprivacy.txt: 8748) +.ro89.com/hitme\.php\? +# ||rkdms.com/sid.gif? (easyprivacy.txt: 8747) +.rkdms.com/sid\.gif\? +# ||rkdms.com/order.gif? (easyprivacy.txt: 8746) +.rkdms.com/order\.gif\? +# ||riverisland.com^*/mindshare.min.js (easyprivacy.txt: 8745) +.riverisland.com/.*/mindshare\.min\.js +# ||ritzcarlton.com/ritz/crossDomainTracking.mi? (easyprivacy.txt: 8744) +.ritzcarlton.com/ritz/crossDomainTracking\.mi\? +# ||rismedia.com/tracking.js (easyprivacy.txt: 8743) +.rismedia.com/tracking\.js +# ||ripe.net/1x1.gif? (easyprivacy.txt: 8742) +.ripe.net/1x1\.gif\? +# ||ringcentral.com/misc/se_track.asp (easyprivacy.txt: 8741) +.ringcentral.com/misc/se_track\.asp +# ||rightstuf.com/phplive/ajax/footprints.php (easyprivacy.txt: 8740) +.rightstuf.com/phplive/ajax/footprints\.php +# ||rightmove.co.uk/ps/images/logging/timer.gif? (easyprivacy.txt: 8739) +.rightmove.co.uk/ps/images/logging/timer\.gif\? +# ||rgbstock.com/logsearch/ (easyprivacy.txt: 8738) +.rgbstock.com/logsearch/ +# ||revsci.tvguide.com^ (easyprivacy.txt: 8737) +.revsci.tvguide.com +# ||reutersmedia.net^*/tracker-article*.js (easyprivacy.txt: 8736) +.reutersmedia.net/.*/tracker-article.*\.js +# ||reutersmedia.net^*/px.js (easyprivacy.txt: 8735) +.reutersmedia.net/.*/px\.js +# ||reuters.com^*/widget-rta-poc.js (easyprivacy.txt: 8734) +.reuters.com/.*/widget-rta-poc\.js +# ||reuters.com^*/tracker_video.js (easyprivacy.txt: 8733) +.reuters.com/.*/tracker_video\.js +# ||reuters.com^*/rcom-wt-mlt.js (easyprivacy.txt: 8732) +.reuters.com/.*/rcom-wt-mlt\.js +# ||reuters.com/tracker/ (easyprivacy.txt: 8731) +.reuters.com/tracker/ +# ||retrevo.com/search/v2/jsp/blank.jsp? (easyprivacy.txt: 8729) +.retrevo.com/search/v2/jsp/blank\.jsp\? +# ||retrevo.com/m/vm/tracking/ (easyprivacy.txt: 8728) +.retrevo.com/m/vm/tracking/ +# ||researchchannel.co.za/count.php? (easyprivacy.txt: 8726) +.researchchannel.co.za/count\.php\? +# ||request.issuu.com^ (easyprivacy.txt: 8725) +.request.issuu.com +# ||reporting.wilkinsonplus.com^ (easyprivacy.txt: 8724) +.reporting.wilkinsonplus.com +# ||reporting.theonion.com^ (easyprivacy.txt: 8723) +.reporting.theonion.com +# ||reporting.onthebeach.co.uk^ (easyprivacy.txt: 8722) +.reporting.onthebeach.co.uk +# ||reporting.flymonarch.com^ (easyprivacy.txt: 8721) +.reporting.flymonarch.com +# ||reporternews.com/metrics/ (easyprivacy.txt: 8720) +.reporternews.com/metrics/ +# ||reporter-times.com/js/tk.js? (easyprivacy.txt: 8719) +.reporter-times.com/js/tk\.js\? +# ||report.shell.com^ (easyprivacy.txt: 8718) +.report.shell.com +# ||rent.com/track/visit/ (easyprivacy.txt: 8717) +.rent.com/track/visit/ +# ||rel.msn.com^ (easyprivacy.txt: 8716) +.rel.msn.com +# ||register.it/scripts/track_ (easyprivacy.txt: 8715) +.register.it/scripts/track_ +# ||refinery29.com/api/stats? (easyprivacy.txt: 8714) +.refinery29.com/api/stats\? +# ||reference.com/track/ (easyprivacy.txt: 8713) +.reference.com/track/ +# ||redtube.com^*/jscount.php (easyprivacy.txt: 8712) +.redtube.com/.*/jscount\.php +# ||redtube.com/trackplay? (easyprivacy.txt: 8711) +.redtube.com/trackplay\? +# ||redtube.com/trackimps (easyprivacy.txt: 8710) +.redtube.com/trackimps +# ||redtube.com/stats/ (easyprivacy.txt: 8709) +.redtube.com/stats/ +# ||redtube.com/pix.php (easyprivacy.txt: 8708) +.redtube.com/pix\.php +# ||redtube.com/js/track.js (easyprivacy.txt: 8707) +.redtube.com/js/track\.js +# ||redtube.com/blockcount| (easyprivacy.txt: 8706) +.redtube.com/blockcount$ +# ||redtube.com/_status/pixa.php (easyprivacy.txt: 8705) +.redtube.com/_status/pixa\.php +# ||redtube.com/_status/pix.php (easyprivacy.txt: 8704) +.redtube.com/_status/pix\.php +# ||rediff.com^*/?rkey= (easyprivacy.txt: 8703) +.rediff.com/.*/\?rkey= +# ||redeye.williamhill.com^ (easyprivacy.txt: 8702) +.redeye.williamhill.com +# ||reddit.com/static/pixel.png (easyprivacy.txt: 8701) +.reddit.com/static/pixel\.png +# ||redding.com/metrics/ (easyprivacy.txt: 8700) +.redding.com/metrics/ +# ||recommendation.24.com^ (easyprivacy.txt: 8699) +.recommendation.24.com +# ||recomendedsite.com/addon/upixel/ (easyprivacy.txt: 8698) +.recomendedsite.com/addon/upixel/ +# ||reco.hardsextube.com^ (easyprivacy.txt: 8697) +.reco.hardsextube.com +# ||realitytvworld.com/images/pixel.gif (easyprivacy.txt: 8696) +.realitytvworld.com/images/pixel\.gif +# ||real.com^*/track.png? (easyprivacy.txt: 8695) +.real.com/.*/track\.png\? +# ||real.com^*/track.htm? (easyprivacy.txt: 8694) +.real.com/.*/track\.htm\? +# ||real.com^*/pixel? (easyprivacy.txt: 8693) +.real.com/.*/pixel\? +# ||reachlocal.com/js/tracklandingpage.js (easyprivacy.txt: 8692) +.reachlocal.com/js/tracklandingpage\.js +# ||rd.meebo.com^ (easyprivacy.txt: 8691) +.rd.meebo.com +# ||razor.tv/site/servlet/tracker.jsp (easyprivacy.txt: 8689) +.razor.tv/site/servlet/tracker\.jsp +# ||rat.rakuten.co.jp^ (easyprivacy.txt: 8688) +.rat.rakuten.co.jp +# ||rarefilmfinder.com^*/cnt-gif1x1.php (easyprivacy.txt: 8687) +.rarefilmfinder.com/.*/cnt-gif1x1\.php +# ||rangers.co.uk^*/tracking.js (easyprivacy.txt: 8686) +.rangers.co.uk/.*/tracking\.js +# ||ralphlauren.com^*/icg.metrics.js (easyprivacy.txt: 8685) +.ralphlauren.com/.*/icg\.metrics\.js +# ||rakuten-static.com/com/rat/ (easyprivacy.txt: 8684) +.rakuten-static.com/com/rat/ +# ||rainbow-uk.mythings.com^ (easyprivacy.txt: 8683) +.rainbow-uk.mythings.com +# ||radioplayer.co.uk/v3/analytics.html? (easyprivacy.txt: 8682) +.radioplayer.co.uk/v3/analytics\.html\? +# ||radio.cz/assets/js/analytics.js (easyprivacy.txt: 8681) +.radio.cz/assets/js/analytics\.js +# ||radio-canada.ca/lib/TrueSight/markerFile.gif? (easyprivacy.txt: 8680) +.radio-canada.ca/lib/TrueSight/markerFile\.gif\? +# ||racinguk.com/images/home_sponsors/ (easyprivacy.txt: 8679) +.racinguk.com/images/home_sponsors/ +# ||racingbase.com/tracking_fetchinfo.aspx? (easyprivacy.txt: 8678) +.racingbase.com/tracking_fetchinfo\.aspx\? +# ||r.bbci.co.uk^ (easyprivacy.txt: 8677) +.r.bbci.co.uk +# ||quotesonic.com/vendor/pixel.cfm (easyprivacy.txt: 8676) +.quotesonic.com/vendor/pixel\.cfm +# ||quintcareers.4jobs.com/Common/JavaScript/functions.tracking.js (easyprivacy.txt: 8675) +.quintcareers.4jobs.com/Common/JavaScript/functions\.tracking\.js +# ||quickmeme.com/tracker/ (easyprivacy.txt: 8674) +.quickmeme.com/tracker/ +# ||quibids.com^*/pixels/ (easyprivacy.txt: 8673) +.quibids.com/.*/pixels/ +# ||questionmarket.com/static/ (easyprivacy.txt: 8672) +.questionmarket.com/static/ +# ||questionmarket.com/adsc/ (easyprivacy.txt: 8671) +.questionmarket.com/adsc/ +# ||quantserve.com/pixel; (easyprivacy.txt: 8670) +.quantserve.com/pixel; +# ||qbn.com/media/static/js/ga.js (easyprivacy.txt: 8669) +.qbn.com/media/static/js/ga\.js +# ||q.stripe.com^ (easyprivacy.txt: 8668) +.q.stripe.com +# ||pw.org/sites/all/*/ga.js (easyprivacy.txt: 8667) +.pw.org/sites/all/.*/ga\.js +# ||pvstat.china.cn^ (easyprivacy.txt: 8666) +.pvstat.china.cn +# ||puritan.com/images/pixels/ (easyprivacy.txt: 8665) +.puritan.com/images/pixels/ +# ||pulse-analytics-beacon.reutersmedia.net^ (easyprivacy.txt: 8664) +.pulse-analytics-beacon.reutersmedia.net +# ||pubarticles.com/add_hits_by_user_click.php (easyprivacy.txt: 8663) +.pubarticles.com/add_hits_by_user_click\.php +# ||pubarticles.com/_hits.php? (easyprivacy.txt: 8662) +.pubarticles.com/_hits\.php\? +# ||ps-deals.com/aggbug.aspx (easyprivacy.txt: 8661) +.ps-deals.com/aggbug\.aspx +# ||prudential.com^*/metrics_1px.gif? (easyprivacy.txt: 8660) +.prudential.com/.*/metrics_1px\.gif\? +# ||proxypage.msn.com^ (easyprivacy.txt: 8659) +.proxypage.msn.com +# ||prosper.com/referrals/ (easyprivacy.txt: 8658) +.prosper.com/referrals/ +# ||prospects.ac.uk/assets/js/prospectsWebTrends.js (easyprivacy.txt: 8657) +.prospects.ac.uk/assets/js/prospectsWebTrends\.js +# ||propertyfinder.ae/js/ga.js (easyprivacy.txt: 8656) +.propertyfinder.ae/js/ga\.js +# ||prontohome.com/permuto.do (easyprivacy.txt: 8655) +.prontohome.com/permuto\.do +# ||projop.dnsalias.com/intranet-crm-tracking/ (easyprivacy.txt: 8654) +.projop.dnsalias.com/intranet-crm-tracking/ +# ||proac.nationwide.com^ (easyprivacy.txt: 8653) +.proac.nationwide.com +# ||prnewswire.com/rt.gif? (easyprivacy.txt: 8652) +.prnewswire.com/rt\.gif\? +# ||prnewswire.com/rit.gif? (easyprivacy.txt: 8651) +.prnewswire.com/rit\.gif\? +# ||princetonreview.com/logging/ (easyprivacy.txt: 8650) +.princetonreview.com/logging/ +# ||pricegrabber.com/analytics.php (easyprivacy.txt: 8649) +.pricegrabber.com/analytics\.php +# ||presstv.ir/stat/ (easyprivacy.txt: 8648) +.presstv.ir/stat/ +# ||presentationtracking.netflix.com^ (easyprivacy.txt: 8647) +.presentationtracking.netflix.com +# ||pp-serve.newsinc.com^ (easyprivacy.txt: 8646) +.pp-serve.newsinc.com +# ||powerreviews.com^*/ph.gif? (easyprivacy.txt: 8645) +.powerreviews.com/.*/ph\.gif\? +# ||pound.buzzfeed.com^ (easyprivacy.txt: 8644) +.pound.buzzfeed.com +# ||potterybarnkids.com/pkimgs/*/external/thirdparty.js (easyprivacy.txt: 8643) +.potterybarnkids.com/pkimgs/.*/external/thirdparty\.js +# ||potterybarn.com/pbimgs/*/external/thirdparty.js (easyprivacy.txt: 8642) +.potterybarn.com/pbimgs/.*/external/thirdparty\.js +# ||porndoo.com/lib/ajax/track.php (easyprivacy.txt: 8641) +.porndoo.com/lib/ajax/track\.php +# ||popcap.com^*/interstitial_zones.js (easyprivacy.txt: 8640) +.popcap.com/.*/interstitial_zones\.js +# ||polity.org.za/count.php? (easyprivacy.txt: 8639) +.polity.org.za/count\.php\? +# ||pokernews.com/track-views.php? (easyprivacy.txt: 8638) +.pokernews.com/track-views\.php\? +# ||pnet.co.za/js/ga.js (easyprivacy.txt: 8637) +.pnet.co.za/js/ga\.js +# ||pluto.airbnb.com^*.php?uuid= (easyprivacy.txt: 8636) +.pluto.airbnb.com/.*\.php\?uuid= +# ||plentyoffish.com/tracking.js (easyprivacy.txt: 8635) +.plentyoffish.com/tracking\.js +# ||playstation.com/beacon/ (easyprivacy.txt: 8634) +.playstation.com/beacon/ +# ||playserver1.com/analytics/ (easyprivacy.txt: 8633) +.playserver1.com/analytics/ +# ||playlist.com/scripts/remote_logger.js (easyprivacy.txt: 8632) +.playlist.com/scripts/remote_logger\.js +# ||playdom.com/affl/show_pixel? (easyprivacy.txt: 8631) +.playdom.com/affl/show_pixel\? +# ||playboy.com/libs/analytics/ (easyprivacy.txt: 8630) +.playboy.com/libs/analytics/ +# ||play.com/sitetrak/ (easyprivacy.txt: 8629) +.play.com/sitetrak/ +# ||play.com/analytics/ (easyprivacy.txt: 8628) +.play.com/analytics/ +# ||pixiedust.buzzfeed.com^ (easyprivacy.txt: 8627) +.pixiedust.buzzfeed.com +# ||pixels.livingsocial.com^ (easyprivacy.txt: 8626) +.pixels.livingsocial.com +# ||pixel.staging.tree.com^ (easyprivacy.txt: 8625) +.pixel.staging.tree.com +# ||pixel.redditmedia.com^ (easyprivacy.txt: 8624) +.pixel.redditmedia.com +# ||pixel.reddit.com^ (easyprivacy.txt: 8623) +.pixel.reddit.com +# ||pixel.propublica.org^ (easyprivacy.txt: 8622) +.pixel.propublica.org +# ||pixel.pcworld.com^ (easyprivacy.txt: 8621) +.pixel.pcworld.com +# ||pixel.newsdiscover.com.au^ (easyprivacy.txt: 8620) +.pixel.newsdiscover.com.au +# ||pixel.klout.com^ (easyprivacy.txt: 8619) +.pixel.klout.com +# ||pixel.honestjohn.co.uk^ (easyprivacy.txt: 8618) +.pixel.honestjohn.co.uk +# ||pixel.facebook.com^ (easyprivacy.txt: 8617) +.pixel.facebook.com +# ||pixel.digitalspy.co.uk^ (easyprivacy.txt: 8616) +.pixel.digitalspy.co.uk +# ||pixel.buzzfeed.com^ (easyprivacy.txt: 8615) +.pixel.buzzfeed.com +# ||pixazza.com/track/ (easyprivacy.txt: 8614) +.pixazza.com/track/ +# ||pix.gfycat.com^ (easyprivacy.txt: 8613) +.pix.gfycat.com +# ||pix.eads.com^ (easyprivacy.txt: 8612) +.pix.eads.com +# ||pipl.com/rd/? (easyprivacy.txt: 8611) +.pipl.com/rd/\? +# ||pipeline.realtime.active.com^ (easyprivacy.txt: 8610) +.pipeline.realtime.active.com +# ||pings.blip.tv^ (easyprivacy.txt: 8609) +.pings.blip.tv +# ||ping.buto.tv^ (easyprivacy.txt: 8608) +.ping.buto.tv +# ||pictopia.com^*/hb.gif? (easyprivacy.txt: 8607) +.pictopia.com/.*/hb\.gif\? +# ||pichunter.com/logs/ (easyprivacy.txt: 8606) +.pichunter.com/logs/ +# ||picbucks.com/track/ (easyprivacy.txt: 8605) +.picbucks.com/track/ +# ||picapp.com/empty.gif? (easyprivacy.txt: 8604) +.picapp.com/empty\.gif\? +# ||pi.feedsportal.com^ (easyprivacy.txt: 8603) +.pi.feedsportal.com +# ||photographyblog.com/?ACT (easyprivacy.txt: 8602) +.photographyblog.com/\?ACT +# ||photobucket.com^*/tracklite.php (easyprivacy.txt: 8601) +.photobucket.com/.*/tracklite\.php +# ||photobucket.com^*/api.php?*&method=track& (easyprivacy.txt: 8600) +.photobucket.com/.*/api\.php\?.*&method=track& +# ||photobucket.com/track/ (easyprivacy.txt: 8599) +.photobucket.com/track/ +# ||photobucket.com/ss/open.php? (easyprivacy.txt: 8598) +.photobucket.com/ss/open\.php\? +# ||phonedog.com/geo.php (easyprivacy.txt: 8597) +.phonedog.com/geo\.php +# ||petri.co.il/akit/? (easyprivacy.txt: 8596) +.petri.co.il/akit/\? +# ||petplanet.co.uk^*/js/ga.js (easyprivacy.txt: 8595) +.petplanet.co.uk/.*/js/ga\.js +# ||petersons.com^*/trackFunctionsBeta.asp (easyprivacy.txt: 8594) +.petersons.com/.*/trackFunctionsBeta\.asp +# ||petersons.com^*/trackBeta.asp (easyprivacy.txt: 8593) +.petersons.com/.*/trackBeta\.asp +# ||performances.bestofmedia.com^ (easyprivacy.txt: 8592) +.performances.bestofmedia.com +# ||perfectmarket.com/pm/track? (easyprivacy.txt: 8591) +.perfectmarket.com/pm/track\? +# ||perezhilton.com^*/stat/ (easyprivacy.txt: 8590) +.perezhilton.com/.*/stat/ +# ||perezhilton.com/services/geo/ (easyprivacy.txt: 8589) +.perezhilton.com/services/geo/ +# ||perezhilton.com/gtjs.php (easyprivacy.txt: 8588) +.perezhilton.com/gtjs\.php +# ||pepsi.com/js/pepsi_tracking.js (easyprivacy.txt: 8587) +.pepsi.com/js/pepsi_tracking\.js +# ||pearltrees.com/s/track? (easyprivacy.txt: 8586) +.pearltrees.com/s/track\? +# ||peacocks.co.uk^*/analytics.js (easyprivacy.txt: 8585) +.peacocks.co.uk/.*/analytics\.js +# ||pcp001.com/media/globalPixel.js (easyprivacy.txt: 8584) +.pcp001.com/media/globalPixel\.js +# ||pclick.yahoo.com^ (easyprivacy.txt: 8582) +.pclick.yahoo.com +# ||pclick.internal.yahoo.com^ (easyprivacy.txt: 8581) +.pclick.internal.yahoo.com +# ||pclick.europe.yahoo.com^ (easyprivacy.txt: 8580) +.pclick.europe.yahoo.com +# ||pckeeper.com^*/pixels/ (easyprivacy.txt: 8579) +.pckeeper.com/.*/pixels/ +# ||pch.com^*/SpectrumAnalytics.js? (easyprivacy.txt: 8578) +.pch.com/.*/SpectrumAnalytics\.js\? +# ||pch.com^*/scripts/Analytics/ (easyprivacy.txt: 8577) +.pch.com/.*/scripts/Analytics/ +# ||paypal.com/webapps/beaconweb/ (easyprivacy.txt: 8575) +.paypal.com/webapps/beaconweb/ +# ||partners.mysavings.com^ (easyprivacy.txt: 8574) +.partners.mysavings.com +# ||partners.badongo.com^ (easyprivacy.txt: 8573) +.partners.badongo.com +# ||paper.li/javascripts/analytics.js (easyprivacy.txt: 8572) +.paper.li/javascripts/analytics\.js +# ||papajohns.com/index_files/activityi_data/ct-*.js (easyprivacy.txt: 8571) +.papajohns.com/index_files/activityi_data/ct-.*\.js +# ||papajohns.com/index_files/activityi.html (easyprivacy.txt: 8570) +.papajohns.com/index_files/activityi\.html +# ||pajamasmedia.com/stats/ (easyprivacy.txt: 8569) +.pajamasmedia.com/stats/ +# ||pages03.net/WTS/event.jpeg? (easyprivacy.txt: 8568) +.pages03.net/WTS/event\.jpeg\? +# ||p.ctpost.com/article?i= (easyprivacy.txt: 8567) +.p.ctpost.com/article\?i= +# ||overstock.com/uniquecount (easyprivacy.txt: 8566) +.overstock.com/uniquecount +# ||ostkcdn.com/js/p13n.js (easyprivacy.txt: 8563) +.ostkcdn.com/js/p13n\.js +# ||oscars.org/scripts/wt_include2.js (easyprivacy.txt: 8562) +.oscars.org/scripts/wt_include2\.js +# ||oscars.org/scripts/wt_include1.js (easyprivacy.txt: 8561) +.oscars.org/scripts/wt_include1\.js +# ||osalt.com/js/track.js (easyprivacy.txt: 8560) +.osalt.com/js/track\.js +# ||origin.chron.com^ (easyprivacy.txt: 8559) +.origin.chron.com +# ||origin-tracking.trulia.com^ (easyprivacy.txt: 8558) +.origin-tracking.trulia.com +# ||orange.co.uk/jsincludes/webtrends*.js (easyprivacy.txt: 8557) +.orange.co.uk/jsincludes/webtrends.*\.js +# ||orain.org/w/index.php/Special:RecordImpression? (easyprivacy.txt: 8556) +.orain.org/w/index\.php/Special:RecordImpression\? +# ||optionsxpress.com^*/tracking.js (easyprivacy.txt: 8555) +.optionsxpress.com/.*/tracking\.js +# ||optimum.net^*=pageview& (easyprivacy.txt: 8554) +.optimum.net/.*=pageview& +# ||optimizely.com/js/geo.js (easyprivacy.txt: 8553) +.optimizely.com/js/geo\.js +# ||optimize-stats.voxmedia.com^ (easyprivacy.txt: 8552) +.optimize-stats.voxmedia.com +# ||ophan.guardian.co.uk^ (easyprivacy.txt: 8551) +.ophan.guardian.co.uk +# ||opera.com/js/sfga.js (easyprivacy.txt: 8550) +.opera.com/js/sfga\.js +# ||openuniversity.co.uk/marketing/ (easyprivacy.txt: 8549) +.openuniversity.co.uk/marketing/ +# ||open.mkt1397.com^ (easyprivacy.txt: 8548) +.open.mkt1397.com +# ||oodle.com/js/suntracking.js (easyprivacy.txt: 8547) +.oodle.com/js/suntracking\.js +# ||oodle.co.uk/event/track-first-view/ (easyprivacy.txt: 8546) +.oodle.co.uk/event/track-first-view/ +# ||onetravel.com/TrackOnetravelAds.js (easyprivacy.txt: 8545) +.onetravel.com/TrackOnetravelAds\.js +# ||omniture.theglobeandmail.com^ (easyprivacy.txt: 8544) +.omniture.theglobeandmail.com +# ||omniture.stuff.co.nz^ (easyprivacy.txt: 8543) +.omniture.stuff.co.nz +# ||om.cbsi.com^ (easyprivacy.txt: 8542) +.om.cbsi.com +# ||olark.com/track/ (easyprivacy.txt: 8541) +.olark.com/track/ +# ||okcupid.com/poststat? (easyprivacy.txt: 8539) +.okcupid.com/poststat\? +# ||ok.co.uk/tracking/ (easyprivacy.txt: 8538) +.ok.co.uk/tracking/ +# ||oimg.mobile.cnbc.com^ (easyprivacy.txt: 8537) +.oimg.mobile.cnbc.com +# ||oimg.m.cnbc.com^ (easyprivacy.txt: 8536) +.oimg.m.cnbc.com +# ||officelivecontent.com^*/Survey/ (easyprivacy.txt: 8535) +.officelivecontent.com/.*/Survey/ +# ||offers.keynote.com/wt/ (easyprivacy.txt: 8533) +.offers.keynote.com/wt/ +# ||ocregister.com/za? (easyprivacy.txt: 8532) +.ocregister.com/za\? +# ||oasisactive.com/pixels.cfm (easyprivacy.txt: 8531) +.oasisactive.com/pixels\.cfm +# ||nzs.com/sliscripts_ (easyprivacy.txt: 8530) +.nzs.com/sliscripts_ +# ||nzpages.co.nz^*/track.js (easyprivacy.txt: 8529) +.nzpages.co.nz/.*/track\.js +# ||nzonscreen.com/track_video_item (easyprivacy.txt: 8528) +.nzonscreen.com/track_video_item +# ||nzbsrus.com/tracker/ (easyprivacy.txt: 8527) +.nzbsrus.com/tracker/ +# ||nytimes.com/js/mtr.js (easyprivacy.txt: 8526) +.nytimes.com/js/mtr\.js +# ||nyt.com/js/mtr.js (easyprivacy.txt: 8524) +.nyt.com/js/mtr\.js +# ||nysun.com/tracker.js (easyprivacy.txt: 8523) +.nysun.com/tracker\.js +# ||nyse.com^*/stats/ (easyprivacy.txt: 8522) +.nyse.com/.*/stats/ +# ||nymag.com^*/analytics.js (easyprivacy.txt: 8521) +.nymag.com/.*/analytics\.js +# ||nymag.com/js/2/metrony (easyprivacy.txt: 8520) +.nymag.com/js/2/metrony +# ||nydailynews.com^*/tracker.js (easyprivacy.txt: 8519) +.nydailynews.com/.*/tracker\.js +# ||nydailynews.com/tracker.js (easyprivacy.txt: 8518) +.nydailynews.com/tracker\.js +# ||novinite.com/tz.php (easyprivacy.txt: 8517) +.novinite.com/tz\.php +# ||novell.com^*/metrics.js (easyprivacy.txt: 8516) +.novell.com/.*/metrics\.js +# ||novatech.co.uk^*/tracking? (easyprivacy.txt: 8515) +.novatech.co.uk/.*/tracking\? +# ||nova.pub/track.php? (easyprivacy.txt: 8514) +.nova.pub/track\.php\? +# ||nola.com/dhtml/stats/ (easyprivacy.txt: 8513) +.nola.com/dhtml/stats/ +# ||nola.com/content/*/tracklinks.js (easyprivacy.txt: 8512) +.nola.com/content/.*/tracklinks\.js +# ||nola.com/cgi-bin/stats/ (easyprivacy.txt: 8511) +.nola.com/cgi-bin/stats/ +# ||nmtracking.netflix.com^ (easyprivacy.txt: 8509) +.nmtracking.netflix.com +# ||nm.newegg.com^ (easyprivacy.txt: 8508) +.nm.newegg.com +# ||nj.com/dhtml/stats/ (easyprivacy.txt: 8507) +.nj.com/dhtml/stats/ +# ||nj.com/cgi-bin/stats/ (easyprivacy.txt: 8506) +.nj.com/cgi-bin/stats/ +# ||ning.com^*/ga/ga.js (easyprivacy.txt: 8505) +.ning.com/.*/ga/ga\.js +# ||ninemsn.com.au^*.tracking.udc. (easyprivacy.txt: 8504) +.ninemsn.com.au/.*\.tracking\.udc\. +# ||nike.com/cms/analytics-store-desktop.js (easyprivacy.txt: 8503) +.nike.com/cms/analytics-store-desktop\.js +# ||nih.gov/share/scripts/survey.js (easyprivacy.txt: 8502) +.nih.gov/share/scripts/survey\.js +# ||nih.gov/medlineplus/images/mplus_en_survey.js (easyprivacy.txt: 8501) +.nih.gov/medlineplus/images/mplus_en_survey\.js +# ||nickjr.co.uk/global/js/tracking.js (easyprivacy.txt: 8500) +.nickjr.co.uk/global/js/tracking\.js +# ||nick.com/common/images/spacer.gif? (easyprivacy.txt: 8499) +.nick.com/common/images/spacer\.gif\? +# ||nick.co.uk/global/js/tracking.js (easyprivacy.txt: 8498) +.nick.co.uk/global/js/tracking\.js +# ||nhk.jp^*/bc.gif? (easyprivacy.txt: 8497) +.nhk.jp/.*/bc\.gif\? +# ||nfl.com/imp? (easyprivacy.txt: 8496) +.nfl.com/imp\? +# ||next.co.uk/log.php (easyprivacy.txt: 8495) +.next.co.uk/log\.php +# ||newswire.ca/rt.gif? (easyprivacy.txt: 8494) +.newswire.ca/rt\.gif\? +# ||newstatesman.com/js/NewStatesmanSDC.js (easyprivacy.txt: 8493) +.newstatesman.com/js/NewStatesmanSDC\.js +# ||newsletter.mybboard.net/open.php? (easyprivacy.txt: 8492) +.newsletter.mybboard.net/open\.php\? +# ||newser.com/utility.aspx? (easyprivacy.txt: 8490) +.newser.com/utility\.aspx\? +# ||newscom.com/js/v2/ga.js (easyprivacy.txt: 8489) +.newscom.com/js/v2/ga\.js +# ||newsarama.com/common/track.php (easyprivacy.txt: 8488) +.newsarama.com/common/track\.php +# ||news9.com/beacon/ (easyprivacy.txt: 8487) +.news9.com/beacon/ +# ||news.com.au/tracking/ (easyprivacy.txt: 8486) +.news.com.au/tracking/ +# ||news.com.au/track/ (easyprivacy.txt: 8485) +.news.com.au/track/ +# ||news.cn/webdig.js (easyprivacy.txt: 8484) +.news.cn/webdig\.js +# ||news-leader.com^*/analytics.js (easyprivacy.txt: 8483) +.news-leader.com/.*/analytics\.js +# ||newegg.com/TrackingWeb/ (easyprivacy.txt: 8482) +.newegg.com/TrackingWeb/ +# ||netmag.co.uk/matchbox/traffic/ (easyprivacy.txt: 8479) +.netmag.co.uk/matchbox/traffic/ +# ||netlog.com/track (easyprivacy.txt: 8478) +.netlog.com/track +# ||netflix.com/RegisterActionImpression? (easyprivacy.txt: 8477) +.netflix.com/RegisterActionImpression\? +# ||netflix.com/LogCustomerEvent? (easyprivacy.txt: 8476) +.netflix.com/LogCustomerEvent\? +# ||netflix.com/ichnaea/log (easyprivacy.txt: 8475) +.netflix.com/ichnaea/log +# ||netflix.com/EpicCounter? (easyprivacy.txt: 8474) +.netflix.com/EpicCounter\? +# ||netflix.com/beacons?*&ssizeCat=*&vsizeCat= (easyprivacy.txt: 8473) +.netflix.com/beacons\?.*&ssizeCat=.*&vsizeCat= +# ||net-a-porter.com/intl/trackpage.nap? (easyprivacy.txt: 8472) +.net-a-porter.com/intl/trackpage\.nap\? +# ||ned.itv.com^ (easyprivacy.txt: 8471) +.ned.itv.com +# ||neatorama.com/story/view/*.gif?hash (easyprivacy.txt: 8470) +.neatorama.com/story/view/.*\.gif\?hash +# ||ndtv.com/Status24x7.lv? (easyprivacy.txt: 8469) +.ndtv.com/Status24x7\.lv\? +# ||ncsoft.com/tracker.js (easyprivacy.txt: 8468) +.ncsoft.com/tracker\.js +# ||nbcudigitaladops.com/hosted/js/*_com_header.js (easyprivacy.txt: 8467) +.nbcudigitaladops.com/hosted/js/.*_com_header\.js +# ||nbcudigitaladops.com/hosted/js/*_com.js (easyprivacy.txt: 8466) +.nbcudigitaladops.com/hosted/js/.*_com\.js +# ||nbcnews.com^*/analytics.js (easyprivacy.txt: 8465) +.nbcnews.com/.*/analytics\.js +# ||nb.myspace.com^ (easyprivacy.txt: 8464) +.nb.myspace.com +# ||navlog.channel4.com^ (easyprivacy.txt: 8463) +.navlog.channel4.com +# ||naukrigulf.com^*/bms_display.php (easyprivacy.txt: 8462) +.naukrigulf.com/.*/bms_display\.php +# ||naukrigulf.com/logger/ (easyprivacy.txt: 8461) +.naukrigulf.com/logger/ +# ||naukri.com/advertiser/ (easyprivacy.txt: 8460) +.naukri.com/advertiser/ +# ||naughtydog.com/beacon/ (easyprivacy.txt: 8459) +.naughtydog.com/beacon/ +# ||nature.com^*/marker-file.nocache? (easyprivacy.txt: 8458) +.nature.com/.*/marker-file\.nocache\? +# ||naturalnews.com/NNAnalytics/ (easyprivacy.txt: 8457) +.naturalnews.com/NNAnalytics/ +# ||nationmobi.com/*/analyse.php (easyprivacy.txt: 8456) +.nationmobi.com/.*/analyse\.php +# ||nationalpayday.com/MAPProc.aspx? (easyprivacy.txt: 8455) +.nationalpayday.com/MAPProc\.aspx\? +# ||nationalpayday.com/1pix.gif (easyprivacy.txt: 8454) +.nationalpayday.com/1pix\.gif +# ||nationalgeographic.com/stats/ax/ (easyprivacy.txt: 8453) +.nationalgeographic.com/stats/ax/ +# ||naptol.com/usr/local/csp/staticContent/js/ga.js (easyprivacy.txt: 8452) +.naptol.com/usr/local/csp/staticContent/js/ga\.js +# ||naplesnews.com/metrics/ (easyprivacy.txt: 8451) +.naplesnews.com/metrics/ +# ||nabble.com/static/analytics.js (easyprivacy.txt: 8450) +.nabble.com/static/analytics\.js +# ||mywebsearch.com^*/mws_bw.gif? (easyprivacy.txt: 8449) +.mywebsearch.com/.*/mws_bw\.gif\? +# ||mywebsearch.com/anx.gif? (easyprivacy.txt: 8448) +.mywebsearch.com/anx\.gif\? +# ||mytravel.co.uk/thomascooktrack.gif? (easyprivacy.txt: 8447) +.mytravel.co.uk/thomascooktrack\.gif\? +# ||myspace.com/isf.gif? (easyprivacy.txt: 8446) +.myspace.com/isf\.gif\? +# ||myspace.com/beacon/ (easyprivacy.txt: 8445) +.myspace.com/beacon/ +# ||mypoints.com/js/*ga.js? (easyprivacy.txt: 8444) +.mypoints.com/js/.*ga\.js\? +# ||mypaydayloan.com/setc.asp? (easyprivacy.txt: 8443) +.mypaydayloan.com/setc\.asp\? +# ||myfitnesspal.com/assets/mfp_localytics.js (easyprivacy.txt: 8442) +.myfitnesspal.com/assets/mfp_localytics\.js +# ||musicstack.com/livezilla/server.php?request=track (easyprivacy.txt: 8441) +.musicstack.com/livezilla/server\.php\?request=track +# ||multiply.com/common/dot_clear.gif (easyprivacy.txt: 8439) +.multiply.com/common/dot_clear\.gif +# ||mtoza.vzaar.com^ (easyprivacy.txt: 8438) +.mtoza.vzaar.com +# ||mto.mediatakeout.com/viewer? (easyprivacy.txt: 8437) +.mto.mediatakeout.com/viewer\? +# ||msxml.excite.com/*.gif? (easyprivacy.txt: 8436) +.msxml.excite.com/.*\.gif\? +# ||msnbc.msn.com^*/analytics.js (easyprivacy.txt: 8435) +.msnbc.msn.com/.*/analytics\.js +# ||msn.com^*/track.js (easyprivacy.txt: 8434) +.msn.com/.*/track\.js +# ||msn.com^*/report.js (easyprivacy.txt: 8433) +.msn.com/.*/report\.js +# ||msn.com/tracker/ (easyprivacy.txt: 8432) +.msn.com/tracker/ +# ||msn.com/script/tracking*.js (easyprivacy.txt: 8431) +.msn.com/script/tracking.*\.js +# ||msn.com/ro.aspx? (easyprivacy.txt: 8430) +.msn.com/ro\.aspx\? +# ||msn.co.nz/share/long_cache/js/tracking/ (easyprivacy.txt: 8429) +.msn.co.nz/share/long_cache/js/tracking/ +# ||msecnd.net^*/wt.js? (easyprivacy.txt: 8428) +.msecnd.net/.*/wt\.js\? +# ||mp3lyrics.org^*/cnt.php? (easyprivacy.txt: 8427) +.mp3lyrics.org/.*/cnt\.php\? +# ||mp3lyrics.org/trk/trk.php? (easyprivacy.txt: 8426) +.mp3lyrics.org/trk/trk\.php\? +# ||mp.twitch.tv^ (easyprivacy.txt: 8425) +.mp.twitch.tv +# ||mozilla.org/includes/min/*=js_stats (easyprivacy.txt: 8424) +.mozilla.org/includes/min/.*=js_stats +# ||mozilla.net^*/webtrends/ (easyprivacy.txt: 8423) +.mozilla.net/.*/webtrends/ +# ||mozilla.com/js/track.js (easyprivacy.txt: 8422) +.mozilla.com/js/track\.js +# ||movieclips.com/api/v1/player/test? (easyprivacy.txt: 8421) +.movieclips.com/api/v1/player/test\? +# ||mov-world.net/counter/ (easyprivacy.txt: 8420) +.mov-world.net/counter/ +# ||mortgage101.com/tracking/ (easyprivacy.txt: 8419) +.mortgage101.com/tracking/ +# ||monstercrawler.com/__kl.gif (easyprivacy.txt: 8418) +.monstercrawler.com/__kl\.gif +# ||monova.org/js/ga.js (easyprivacy.txt: 8417) +.monova.org/js/ga\.js +# ||monkeyquest.com/monkeyquest/static/js/ga.js (easyprivacy.txt: 8416) +.monkeyquest.com/monkeyquest/static/js/ga\.js +# ||monitor.co.ug/analytics/ (easyprivacy.txt: 8415) +.monitor.co.ug/analytics/ +# ||moneysupermarket.com^*/ProphetInsert.js (easyprivacy.txt: 8414) +.moneysupermarket.com/.*/ProphetInsert\.js +# ||momtastic.com/libraries/pebblebed/js/pb.track.js (easyprivacy.txt: 8413) +.momtastic.com/libraries/pebblebed/js/pb\.track\.js +# ||modernsalon.com/includes/sc_video_tracking.js (easyprivacy.txt: 8412) +.modernsalon.com/includes/sc_video_tracking\.js +# ||mod.uk/js/tracker.js (easyprivacy.txt: 8411) +.mod.uk/js/tracker\.js +# ||ml.com/js/ml_dcs_tag_ (easyprivacy.txt: 8410) +.ml.com/js/ml_dcs_tag_ +# ||mitpress.mit.edu/wusage_screen_properties.gif (easyprivacy.txt: 8409) +.mitpress.mit.edu/wusage_screen_properties\.gif +# ||mirror.co.uk^*/stats/ (easyprivacy.txt: 8408) +.mirror.co.uk/.*/stats/ +# ||mint.boingboing.net^ (easyprivacy.txt: 8407) +.mint.boingboing.net +# ||miniusa.com^*/trackDeeplink.gif? (easyprivacy.txt: 8406) +.miniusa.com/.*/trackDeeplink\.gif\? +# ||miniurls.co/track/ (easyprivacy.txt: 8405) +.miniurls.co/track/ +# ||miningweekly.com/count.php? (easyprivacy.txt: 8404) +.miningweekly.com/count\.php\? +# ||miniclip.com^*/swhsproxy.swf? (easyprivacy.txt: 8403) +.miniclip.com/.*/swhsproxy\.swf\? +# ||military.com^*/statistic? (easyprivacy.txt: 8402) +.military.com/.*/statistic\? +# ||military.com/Scripts/mnfooter.js (easyprivacy.txt: 8401) +.military.com/Scripts/mnfooter\.js +# ||military.com/cgi-bin/redlog2.cgi? (easyprivacy.txt: 8400) +.military.com/cgi-bin/redlog2\.cgi\? +# ||microsoft.com^*/surveytrigger.js (easyprivacy.txt: 8399) +.microsoft.com/.*/surveytrigger\.js +# ||microsoft.com^*/bimapping.js (easyprivacy.txt: 8398) +.microsoft.com/.*/bimapping\.js +# ||microsoft.com/LTS/default.aspx (easyprivacy.txt: 8397) +.microsoft.com/LTS/default\.aspx +# ||microsoft.com/library/svy/ (easyprivacy.txt: 8396) +.microsoft.com/library/svy/ +# ||microsoft.com/getsilverlight/scripts/Tracker.js (easyprivacy.txt: 8395) +.microsoft.com/getsilverlight/scripts/Tracker\.js +# ||microsoft.com/getsilverlight/scripts/silverlight/SilverlightAtlas-MSCOM-Tracking.js (easyprivacy.txt: 8394) +.microsoft.com/getsilverlight/scripts/silverlight/SilverlightAtlas-MSCOM-Tracking\.js +# ||microsoft.com/blankpixel.gif (easyprivacy.txt: 8393) +.microsoft.com/blankpixel\.gif +# ||mf2fm.com/php/stats.php? (easyprivacy.txt: 8392) +.mf2fm.com/php/stats\.php\? +# ||metroweekly.com/tools/blog_add_visitor/ (easyprivacy.txt: 8391) +.metroweekly.com/tools/blog_add_visitor/ +# ||metro.us/api/trackPage/ (easyprivacy.txt: 8390) +.metro.us/api/trackPage/ +# ||metrics.washingtonpost.com^ (easyprivacy.txt: 8389) +.metrics.washingtonpost.com +# ||metrics.ted.com^ (easyprivacy.txt: 8388) +.metrics.ted.com +# ||metrics.tbliab.net^ (easyprivacy.txt: 8387) +.metrics.tbliab.net +# ||metrics.extremetech.com^ (easyprivacy.txt: 8386) +.metrics.extremetech.com +# ||metrics.ee.co.uk^ (easyprivacy.txt: 8385) +.metrics.ee.co.uk +# ||metrics.dailymotion.com^ (easyprivacy.txt: 8384) +.metrics.dailymotion.com +# ||metrics.cnn.com^ (easyprivacy.txt: 8383) +.metrics.cnn.com +# ||metrics.aws.sitepoint.com^ (easyprivacy.txt: 8382) +.metrics.aws.sitepoint.com +# ||metrics.apartments.com^ (easyprivacy.txt: 8381) +.metrics.apartments.com +# ||metric.inetcore.com^ (easyprivacy.txt: 8380) +.metric.inetcore.com +# ||metric.gstatic.com^ (easyprivacy.txt: 8379) +.metric.gstatic.com +# ||metric*.rediff.com^ (easyprivacy.txt: 8378) +.metric*./.*\.rediff\.com[^\w%.-] +.metric*.rediff.com +# ||meter-svc.nytimes.com^ (easyprivacy.txt: 8377) +.meter-svc.nytimes.com +# ||metacrawler.com/__kl.gif (easyprivacy.txt: 8376) +.metacrawler.com/__kl\.gif +# ||metacafe.com^*/statsrecorder.php? (easyprivacy.txt: 8375) +.metacafe.com/.*/statsrecorder\.php\? +# ||metacafe.com/services/fplayer/report.php? (easyprivacy.txt: 8374) +.metacafe.com/services/fplayer/report\.php\? +# ||met-art.com/visit.js (easyprivacy.txt: 8373) +.met-art.com/visit\.js +# ||merck.com/js/mercktracker.js (easyprivacy.txt: 8372) +.merck.com/js/mercktracker\.js +# ||merchantcircle.com/static/track.js (easyprivacy.txt: 8371) +.merchantcircle.com/static/track\.js +# ||mercent.com/js/tracker.js (easyprivacy.txt: 8370) +.mercent.com/js/tracker\.js +# ||medscape.com/pi/1x1/pv/profreg-1x1.gif (easyprivacy.txt: 8369) +.medscape.com/pi/1x1/pv/profreg-1x1\.gif +# ||mediaplex.com^*/universal.html (easyprivacy.txt: 8368) +.mediaplex.com/.*/universal\.html +# ||mediabistro.com/blogshare/js/trackingheader.js (easyprivacy.txt: 8367) +.mediabistro.com/blogshare/js/trackingheader\.js +# ||media-imdb.com^*/adblock.swf (easyprivacy.txt: 8366) +.media-imdb.com/.*/adblock\.swf +# ||mdmpix.com/js/connector.php? (easyprivacy.txt: 8364) +.mdmpix.com/js/connector\.php\? +# ||mayoclinic.org/js/tracker.js (easyprivacy.txt: 8363) +.mayoclinic.org/js/tracker\.js +# ||mayoclinic.org/js/gconversion.js (easyprivacy.txt: 8362) +.mayoclinic.org/js/gconversion\.js +# ||mate1.com^*/reg.logging.js (easyprivacy.txt: 8361) +.mate1.com/.*/reg\.logging\.js +# ||mate1.com^*/iframe/pixel/ (easyprivacy.txt: 8360) +.mate1.com/.*/iframe/pixel/ +# ||mastercard.com^*/Analytics/ (easyprivacy.txt: 8359) +.mastercard.com/.*/Analytics/ +# ||mastercard.com/dynamictag.swf (easyprivacy.txt: 8358) +.mastercard.com/dynamictag\.swf +# ||mashable.com/pv.xml (easyprivacy.txt: 8357) +.mashable.com/pv\.xml +# ||marriott.com^*/mi_customer_survey.js (easyprivacy.txt: 8356) +.marriott.com/.*/mi_customer_survey\.js +# ||marketwire.com/accesstracking/ (easyprivacy.txt: 8355) +.marketwire.com/accesstracking/ +# ||marketing.nodesource.com^ (easyprivacy.txt: 8354) +.marketing.nodesource.com +# ||marketing.kalahari.net^ (easyprivacy.txt: 8353) +.marketing.kalahari.net +# ||maps.nokia.com^*/tracking.c.js (easyprivacy.txt: 8352) +.maps.nokia.com/.*/tracking\.c\.js +# ||manta.com/sbb? (easyprivacy.txt: 8351) +.manta.com/sbb\? +# ||mansion.com/collect.js? (easyprivacy.txt: 8350) +.mansion.com/collect\.js\? +# ||malibubright.com/krtrk/ (easyprivacy.txt: 8349) +.malibubright.com/krtrk/ +# ||mailer.atlassian.com/open.aspx? (easyprivacy.txt: 8347) +.mailer.atlassian.com/open\.aspx\? +# ||mail.yahoo.com/dc/rs?log= (easyprivacy.txt: 8346) +.mail.yahoo.com/dc/rs\?log= +# ||mail.advantagebusinessmedia.com/open.aspx (easyprivacy.txt: 8345) +.mail.advantagebusinessmedia.com/open\.aspx +# ||madthumbs.com/tlog.php (easyprivacy.txt: 8344) +.madthumbs.com/tlog\.php +# ||ly.lygo.com^*/jquery.lycostrack.js (easyprivacy.txt: 8343) +.ly.lygo.com/.*/jquery\.lycostrack\.js +# ||luxurylink.com/t/hpr.php? (easyprivacy.txt: 8342) +.luxurylink.com/t/hpr\.php\? +# ||lucidchart.com/analytics_ (easyprivacy.txt: 8341) +.lucidchart.com/analytics_ +# ||lslmetrics.djlmgdigital.com^ (easyprivacy.txt: 8340) +.lslmetrics.djlmgdigital.com +# ||lsam.research.microsoft.com^ (easyprivacy.txt: 8339) +.lsam.research.microsoft.com +# ||lovefilm.com^*/lf-perf-beacon.png (easyprivacy.txt: 8338) +.lovefilm.com/.*/lf-perf-beacon\.png +# ||lovefilm.com/lovefilm/images/dot.gif (easyprivacy.txt: 8337) +.lovefilm.com/lovefilm/images/dot\.gif +# ||lovefilm.com/api/ioko/log/ (easyprivacy.txt: 8336) +.lovefilm.com/api/ioko/log/ +# ||lolbin.net/stats.php (easyprivacy.txt: 8335) +.lolbin.net/stats\.php +# ||logs.dashlane.com^ (easyprivacy.txt: 8334) +.logs.dashlane.com +# ||logmein.com/scripts/Tracking/ (easyprivacy.txt: 8333) +.logmein.com/scripts/Tracking/ +# ||loglady.publicbroadcasting.net^ (easyprivacy.txt: 8332) +.loglady.publicbroadcasting.net +# ||loggingservices.tribune.com^ (easyprivacy.txt: 8331) +.loggingservices.tribune.com +# ||logger.dailymotion.com^ (easyprivacy.txt: 8330) +.logger.dailymotion.com +# ||logger-*.dailymotion.com^ (easyprivacy.txt: 8329) +.logger-*./.*\.dailymotion\.com[^\w%.-] +.logger-*.dailymotion.com +# ||log.vdn.apps.cntv.cn^ (easyprivacy.txt: 8328) +.log.vdn.apps.cntv.cn +# ||log.player.cntv.cn/stat.html? (easyprivacy.txt: 8327) +.log.player.cntv.cn/stat\.html\? +# ||log.optimizely.com^ (easyprivacy.txt: 8326) +.log.optimizely.com +# ||log.newsvine.com^ (easyprivacy.txt: 8325) +.log.newsvine.com +# ||log.go.com^ (easyprivacy.txt: 8324) +.log.go.com +# ||log.deutschegrammophon.com^ (easyprivacy.txt: 8323) +.log.deutschegrammophon.com +# ||log.data.disney.com^ (easyprivacy.txt: 8322) +.log.data.disney.com +# ||loc.gov/js/ga.js (easyprivacy.txt: 8321) +.loc.gov/js/ga\.js +# ||lm.pcworld.com/db/*/1.gif (easyprivacy.txt: 8320) +.lm.pcworld.com/db/.*/1\.gif +# ||livesupport.zol.co.zw/image_tracker.php? (easyprivacy.txt: 8319) +.livesupport.zol.co.zw/image_tracker\.php\? +# ||livestream.com^*/analytics/ (easyprivacy.txt: 8318) +.livestream.com/.*/analytics/ +# ||livestation.com^*/statistics.swf (easyprivacy.txt: 8317) +.livestation.com/.*/statistics\.swf +# ||livestation.com^*/akamaimediaanalytics.swf (easyprivacy.txt: 8316) +.livestation.com/.*/akamaimediaanalytics\.swf +# ||liveperson.net/hc/*/?visitor= (easyprivacy.txt: 8315) +.liveperson.net/hc/.*/\?visitor= +# ||livejournal.com/ljcounter/? (easyprivacy.txt: 8314) +.livejournal.com/ljcounter/\? +# ||livedoor.com/counter/ (easyprivacy.txt: 8313) +.livedoor.com/counter/ +# ||live.philips.com^ (easyprivacy.txt: 8312) +.live.philips.com +# ||live.com/handlers/watson.mvc? (easyprivacy.txt: 8311) +.live.com/handlers/watson\.mvc\? +# ||live-audience.dailymotion.com^ (easyprivacy.txt: 8310) +.live-audience.dailymotion.com +# ||list.ru/counter? (easyprivacy.txt: 8309) +.list.ru/counter\? +# ||lipsy.co.uk/_assets/images/skin/tracking/ (easyprivacy.txt: 8308) +.lipsy.co.uk/_assets/images/skin/tracking/ +# ||linuxtoday.com/hqxapi/ (easyprivacy.txt: 8307) +.linuxtoday.com/hqxapi/ +# ||linkpuls.idg.no^ (easyprivacy.txt: 8306) +.linkpuls.idg.no +# ||linkedin.com^*/tracker.gif? (easyprivacy.txt: 8305) +.linkedin.com/.*/tracker\.gif\? +# ||linkedin.com/mob/tracking (easyprivacy.txt: 8304) +.linkedin.com/mob/tracking +# ||linkedin.com/analytics/ (easyprivacy.txt: 8303) +.linkedin.com/analytics/ +# ||linkbucks.com/track/ (easyprivacy.txt: 8302) +.linkbucks.com/track/ +# ||link.ex.fm/img/*.gif (easyprivacy.txt: 8300) +.link.ex.fm/img/.*\.gif +# ||link.codeyear.com/img/ (easyprivacy.txt: 8299) +.link.codeyear.com/img/ +# ||linguee.com*/white_pixel.gif? (easyprivacy.txt: 8298) +.linguee.com*./(.*/)?white_pixel\.gif\? +# ||lilb2.shutterstock.com^ (easyprivacy.txt: 8297) +.lilb2.shutterstock.com +# ||likes.com/api/track_pv (easyprivacy.txt: 8296) +.likes.com/api/track_pv +# ||lifehacker.com^*/trackers.html (easyprivacy.txt: 8295) +.lifehacker.com/.*/trackers\.html +# ||lifehacker.com/at.js.php (easyprivacy.txt: 8294) +.lifehacker.com/at\.js\.php +# ||life.com/sm-stat/ (easyprivacy.txt: 8293) +.life.com/sm-stat/ +# ||lh.secure.yahoo.com^ (easyprivacy.txt: 8292) +.lh.secure.yahoo.com +# ||lexus.com/lexus-share/js/campaign_tracking.js (easyprivacy.txt: 8291) +.lexus.com/lexus-share/js/campaign_tracking\.js +# ||letitbit.net/counter/ (easyprivacy.txt: 8290) +.letitbit.net/counter/ +# ||letitbit.net/atercattus/letitbit/counter/? (easyprivacy.txt: 8289) +.letitbit.net/atercattus/letitbit/counter/\? +# ||lendingtree.com/javascript/tracking.js (easyprivacy.txt: 8288) +.lendingtree.com/javascript/tracking\.js +# ||lendingtree.com/forms/eventtracking? (easyprivacy.txt: 8287) +.lendingtree.com/forms/eventtracking\? +# ||legalmatch.com/scripts/lmtracker.js (easyprivacy.txt: 8286) +.legalmatch.com/scripts/lmtracker\.js +# ||latimes.com/images/pixel.gif (easyprivacy.txt: 8285) +.latimes.com/images/pixel\.gif +# ||landrover.com/system/logging/ (easyprivacy.txt: 8284) +.landrover.com/system/logging/ +# ||lancasteronline.com/javascript/ga.php (easyprivacy.txt: 8283) +.lancasteronline.com/javascript/ga\.php +# ||l.5min.com^ (easyprivacy.txt: 8282) +.l.5min.com +# ||kyte.tv/flash/MarbachMetricsProvider.swf (easyprivacy.txt: 8281) +.kyte.tv/flash/MarbachMetricsProvider\.swf +# ||kyte.tv/flash/MarbachMetricsOmniture.swf (easyprivacy.txt: 8280) +.kyte.tv/flash/MarbachMetricsOmniture\.swf +# ||kotaku.com^*/trackers.html (easyprivacy.txt: 8279) +.kotaku.com/.*/trackers\.html +# ||kotaku.com/at.js.php (easyprivacy.txt: 8278) +.kotaku.com/at\.js\.php +# ||kosmix.com^*.txt?pvid= (easyprivacy.txt: 8277) +.kosmix.com/.*\.txt\?pvid= +# ||kodakgallery.com^*/analytics_ (easyprivacy.txt: 8276) +.kodakgallery.com/.*/analytics_ +# ||knoxnews.com/metrics/ (easyprivacy.txt: 8275) +.knoxnews.com/metrics/ +# ||klout.com/ka.js (easyprivacy.txt: 8274) +.klout.com/ka\.js +# ||kloth.net/images/pixel.gif (easyprivacy.txt: 8273) +.kloth.net/images/pixel\.gif +# ||klm.com/travel/generic/static/js/measure_async.js (easyprivacy.txt: 8272) +.klm.com/travel/generic/static/js/measure_async\.js +# ||kksou.com^*/record.php? (easyprivacy.txt: 8271) +.kksou.com/.*/record\.php\? +# ||kitsapsun.com/metrics/ (easyprivacy.txt: 8270) +.kitsapsun.com/metrics/ +# ||king.com/boxes/trackingCode.jsp (easyprivacy.txt: 8269) +.king.com/boxes/trackingCode\.jsp +# ||kinesisproxy.hearstlabs.com^ (easyprivacy.txt: 8268) +.kinesisproxy.hearstlabs.com +# ||killerstartups.com^*/adsensev (easyprivacy.txt: 8267) +.killerstartups.com/.*/adsensev +# ||kelkoo.com/kk_track? (easyprivacy.txt: 8266) +.kelkoo.com/kk_track\? +# ||kelkoo.co.uk^*/tracker/ (easyprivacy.txt: 8265) +.kelkoo.co.uk/.*/tracker/ +# ||kelkoo.co.uk/kk_track? (easyprivacy.txt: 8264) +.kelkoo.co.uk/kk_track\? +# ||kayak.com/k/redirect/tracking? (easyprivacy.txt: 8263) +.kayak.com/k/redirect/tracking\? +# ||kalahari.net/includes/swatag.js (easyprivacy.txt: 8262) +.kalahari.net/includes/swatag\.js +# ||justanswer.com/ja_services/processes/log.asmx/ (easyprivacy.txt: 8261) +.justanswer.com/ja_services/processes/log\.asmx/ +# ||justanswer.com/browsercheck/ (easyprivacy.txt: 8260) +.justanswer.com/browsercheck/ +# ||jtv.com^*/__analytics-tracking? (easyprivacy.txt: 8258) +.jtv.com/.*/__analytics-tracking\? +# ||jpmorgan.co.uk/tagging/ (easyprivacy.txt: 8257) +.jpmorgan.co.uk/tagging/ +# ||jokeroo.com/i/.gif (easyprivacy.txt: 8256) +.jokeroo.com/i/\.gif +# ||joins.com/hc.aspx? (easyprivacy.txt: 8255) +.joins.com/hc\.aspx\? +# ||johansens.com^*/LogPageView (easyprivacy.txt: 8254) +.johansens.com/.*/LogPageView +# ||jobthread.com/t/ (easyprivacy.txt: 8253) +.jobthread.com/t/ +# ||jobthread.com/js/t.js (easyprivacy.txt: 8252) +.jobthread.com/js/t\.js +# ||jobscentral.com.sg/cb_transfer.php (easyprivacy.txt: 8251) +.jobscentral.com.sg/cb_transfer\.php +# ||jezebel.com^*/trackers.html (easyprivacy.txt: 8250) +.jezebel.com/.*/trackers\.html +# ||jezebel.com/at.js.php (easyprivacy.txt: 8249) +.jezebel.com/at\.js\.php +# ||jeuxjeux2.com/stats.php (easyprivacy.txt: 8248) +.jeuxjeux2.com/stats\.php +# ||jetsetter.com/tracker.php (easyprivacy.txt: 8247) +.jetsetter.com/tracker\.php +# ||jessops.com/js/JessopsTracking. (easyprivacy.txt: 8246) +.jessops.com/js/JessopsTracking\. +# ||javhd.com/click/ (easyprivacy.txt: 8245) +.javhd.com/click/ +# ||jaludo.com/pm.php? (easyprivacy.txt: 8244) +.jaludo.com/pm\.php\? +# ||jalopnik.com^*/trackers.html (easyprivacy.txt: 8243) +.jalopnik.com/.*/trackers\.html +# ||jalopnik.com/at.js.php (easyprivacy.txt: 8242) +.jalopnik.com/at\.js\.php +# ||jal.co.jp/common_rn/js/rtam.js (easyprivacy.txt: 8241) +.jal.co.jp/common_rn/js/rtam\.js +# ||jakpost.net/jptracker/ (easyprivacy.txt: 8240) +.jakpost.net/jptracker/ +# ||jack.allday.com^ (easyprivacy.txt: 8239) +.jack.allday.com +# ||ixs1.net/s/ (easyprivacy.txt: 8238) +.ixs1.net/s/ +# ||ixquick.*/pelp? (easyprivacy.txt: 8237) +.ixquick.*./(.*/)?pelp\? +# ||ixquick.*/elp? (easyprivacy.txt: 8236) +.ixquick.*./(.*/)?elp\? +# ||itv.com/_app/cmn/js/bcm.js (easyprivacy.txt: 8234) +.itv.com/_app/cmn/js/bcm\.js +# ||itp.net/ga.js (easyprivacy.txt: 8233) +.itp.net/ga\.js +# ||issn.org/isens_marker.php? (easyprivacy.txt: 8232) +.issn.org/isens_marker\.php\? +# ||irs.gov/js/irs_reporting_cookie.js (easyprivacy.txt: 8231) +.irs.gov/js/irs_reporting_cookie\.js +# ||ipetitions.com/img.php? (easyprivacy.txt: 8230) +.ipetitions.com/img\.php\? +# ||ip-adress.com/gl?r= (easyprivacy.txt: 8229) +.ip-adress.com/gl\?r= +# ||io9.com^*/trackers.html (easyprivacy.txt: 8228) +.io9.com/.*/trackers\.html +# ||io9.com/at.js.php (easyprivacy.txt: 8227) +.io9.com/at\.js\.php +# ||investegate.co.uk/Weblogs/IGLog.aspx? (easyprivacy.txt: 8226) +.investegate.co.uk/Weblogs/IGLog\.aspx\? +# ||intent.cbsi.com^ (easyprivacy.txt: 8225) +.intent.cbsi.com +# ||intensedebate.com/empty.php (easyprivacy.txt: 8224) +.intensedebate.com/empty\.php +# ||intelli.ageuk.org.uk^ (easyprivacy.txt: 8223) +.intelli.ageuk.org.uk +# ||insynchq.com/wf/open? (easyprivacy.txt: 8222) +.insynchq.com/wf/open\? +# ||instyle.co.uk^*/tracking.js (easyprivacy.txt: 8221) +.instyle.co.uk/.*/tracking\.js +# ||instructables.com/counter (easyprivacy.txt: 8220) +.instructables.com/counter +# ||insire.com/imp? (easyprivacy.txt: 8219) +.insire.com/imp\? +# ||insidesoci.al/track (easyprivacy.txt: 8218) +.insidesoci.al/track +# ||insideline.com^*/edw1x1.gif (easyprivacy.txt: 8217) +.insideline.com/.*/edw1x1\.gif +# ||insideline.com^*/dart1x1.gif (easyprivacy.txt: 8216) +.insideline.com/.*/dart1x1\.gif +# ||inquiries.redhat.com^ (easyprivacy.txt: 8215) +.inquiries.redhat.com +# ||inq.com/tagserver/logging/log4js (easyprivacy.txt: 8214) +.inq.com/tagserver/logging/log4js +# ||ino.com/img/sites/mkt/click.gif (easyprivacy.txt: 8213) +.ino.com/img/sites/mkt/click\.gif +# ||inmagine.com/j/ga.js (easyprivacy.txt: 8212) +.inmagine.com/j/ga\.js +# ||ingest.onion.com^ (easyprivacy.txt: 8211) +.ingest.onion.com +# ||infusionextreme.com/tracker/ (easyprivacy.txt: 8210) +.infusionextreme.com/tracker/ +# ||infospace.com^*=pageview& (easyprivacy.txt: 8209) +.infospace.com/.*=pageview& +# ||informer.com/statistic? (easyprivacy.txt: 8208) +.informer.com/statistic\? +# ||infoq.com/scripts/tracker.js (easyprivacy.txt: 8207) +.infoq.com/scripts/tracker\.js +# ||infomine.com/imcounter.js (easyprivacy.txt: 8206) +.infomine.com/imcounter\.js +# ||infogr.am/js/metrics.js (easyprivacy.txt: 8205) +.infogr.am/js/metrics\.js +# ||influxer.onion.com^ (easyprivacy.txt: 8204) +.influxer.onion.com +# ||indiatimes.com/trackjs10. (easyprivacy.txt: 8203) +.indiatimes.com/trackjs10\. +# ||independentmail.com/metrics/ (easyprivacy.txt: 8202) +.independentmail.com/metrics/ +# ||indeed.com/rpc/preccount? (easyprivacy.txt: 8201) +.indeed.com/rpc/preccount\? +# ||imx.comedycentral.com^ (easyprivacy.txt: 8200) +.imx.comedycentral.com +# ||imonitor.dhgate.com^ (easyprivacy.txt: 8199) +.imonitor.dhgate.com +# ||immassets.s3.amazonaws.com^ (easyprivacy.txt: 8198) +.immassets.s3.amazonaws.com +# ||imgur.com/lumbar.gif? (easyprivacy.txt: 8197) +.imgur.com/lumbar\.gif\? +# ||imgur.com/imageview.gif? (easyprivacy.txt: 8196) +.imgur.com/imageview\.gif\? +# ||imgur.com/albumview.gif? (easyprivacy.txt: 8195) +.imgur.com/albumview\.gif\? +# ||imgtrack.domainmarket.com^ (easyprivacy.txt: 8194) +.imgtrack.domainmarket.com +# ||imdb.com/video/*metrics? (easyprivacy.txt: 8193) +.imdb.com/video/.*metrics\? +# ||imdb.com/video/*/metrics_ (easyprivacy.txt: 8192) +.imdb.com/video/.*/metrics_ +# ||imdb.com/twilight/? (easyprivacy.txt: 8191) +.imdb.com/twilight/\? +# ||imdb.com/rd/?q (easyprivacy.txt: 8190) +.imdb.com/rd/\?q +# ||imagetwist.com/?op= (easyprivacy.txt: 8189) +.imagetwist.com/\?op= +# ||images.military.com/pixel.gif (easyprivacy.txt: 8188) +.images.military.com/pixel\.gif +# ||images-amazon.com^*/ClientSideMetricsAUIJavascript*.js (easyprivacy.txt: 8186) +.images-amazon.com/.*/ClientSideMetricsAUIJavascript.*\.js +# ||image.providesupport.com/cmd/ (easyprivacy.txt: 8184) +.image.providesupport.com/cmd/ +# ||iheart.com/tracking/ (easyprivacy.txt: 8183) +.iheart.com/tracking/ +# ||ign.com/global/analytics/drones.js (easyprivacy.txt: 8182) +.ign.com/global/analytics/drones\.js +# ||iedc.fitbit.com^ (easyprivacy.txt: 8181) +.iedc.fitbit.com +# ||id.localsearch.ch^ (easyprivacy.txt: 8180) +.id.localsearch.ch +# ||id.google.*/verify/*.gif (easyprivacy.txt: 8179) +.id.google.*./(.*/)?verify/.*\.gif +# ||id.allegisgroup.com^ (easyprivacy.txt: 8178) +.id.allegisgroup.com +# ||icq.com/search/js/stats.js (easyprivacy.txt: 8177) +.icq.com/search/js/stats\.js +# ||ibs.indiatimes.com^ (easyprivacy.txt: 8175) +.ibs.indiatimes.com +# ||ibm.com/gateway/? (easyprivacy.txt: 8174) +.ibm.com/gateway/\? +# ||ibm.com/common/stats/ (easyprivacy.txt: 8173) +.ibm.com/common/stats/ +# ||iberia.com^*/ga/ga.js (easyprivacy.txt: 8172) +.iberia.com/.*/ga/ga\.js +# ||ibeat.indiatimes.com^ (easyprivacy.txt: 8171) +.ibeat.indiatimes.com +# ||iafrica.com/php-bin/iac/readcnt.php? (easyprivacy.txt: 8170) +.iafrica.com/php-bin/iac/readcnt\.php\? +# ||i365.com^*/pv.aspx? (easyprivacy.txt: 8169) +.i365.com/.*/pv\.aspx\? +# ||i.walmartimages.com/i/icon/ (easyprivacy.txt: 8168) +.i.walmartimages.com/i/icon/ +# ||i-am-bored.com/cah.asp (easyprivacy.txt: 8167) +.i-am-bored.com/cah\.asp +# ||i-am-bored.com/cad.asp (easyprivacy.txt: 8166) +.i-am-bored.com/cad\.asp +# ||hwscdn.com^*/brands_analytics.js (easyprivacy.txt: 8165) +.hwscdn.com/.*/brands_analytics\.js +# ||hwscdn.com/analytics.js (easyprivacy.txt: 8164) +.hwscdn.com/analytics\.js +# ||humanclick.com/hc/*/?visitor= (easyprivacy.txt: 8163) +.humanclick.com/hc/.*/\?visitor= +# ||huluim.com^*/sitetracking/ (easyprivacy.txt: 8162) +.huluim.com/.*/sitetracking/ +# ||hulu.com^*/sitetracking/ (easyprivacy.txt: 8160) +.hulu.com/.*/sitetracking/ +# ||hulu.com^*/recommendationTracking/tracking? (easyprivacy.txt: 8159) +.hulu.com/.*/recommendationTracking/tracking\? +# ||hulu.com^*/potentialbugtracking/dropframes? (easyprivacy.txt: 8158) +.hulu.com/.*/potentialbugtracking/dropframes\? +# ||hulu.com^*/potentialbugtracking/contentplaybackresume? (easyprivacy.txt: 8157) +.hulu.com/.*/potentialbugtracking/contentplaybackresume\? +# ||hulu.com^*/potentialbugtracking/bigdropframes? (easyprivacy.txt: 8156) +.hulu.com/.*/potentialbugtracking/bigdropframes\? +# ||hulu.com^*/plustracking/ (easyprivacy.txt: 8155) +.hulu.com/.*/plustracking/ +# ||hulu.com^*/external_beacon.swf (easyprivacy.txt: 8154) +.hulu.com/.*/external_beacon\.swf +# ||hulu.com/watch/*track.url-1.com (easyprivacy.txt: 8153) +.hulu.com/watch/.*track\.url-1\.com +# ||hulu.com/guid.swf (easyprivacy.txt: 8152) +.hulu.com/guid\.swf +# ||hulu.com/google_conversion_video_view_tracking.html (easyprivacy.txt: 8151) +.hulu.com/google_conversion_video_view_tracking\.html +# ||hulu.com/beaconservice.swf (easyprivacy.txt: 8150) +.hulu.com/beaconservice\.swf +# ||hulu.com/beacon/v3/playback? (easyprivacy.txt: 8149) +.hulu.com/beacon/v3/playback\? +# ||hulu.com/beacon/v3/error? (easyprivacy.txt: 8148) +.hulu.com/beacon/v3/error\? +# ||hulkshare.com/stats.php (easyprivacy.txt: 8146) +.hulkshare.com/stats\.php +# ||hulkshare.com/ajax/tracker.php (easyprivacy.txt: 8145) +.hulkshare.com/ajax/tracker\.php +# ||hugedomains.com/metrics/ (easyprivacy.txt: 8144) +.hugedomains.com/metrics/ +# ||huffingtonpost.com/traffic/ (easyprivacy.txt: 8143) +.huffingtonpost.com/traffic/ +# ||huffingtonpost.com/include/geopromo.php (easyprivacy.txt: 8142) +.huffingtonpost.com/include/geopromo\.php +# ||huffingtonpost.com/geopromo/ (easyprivacy.txt: 8141) +.huffingtonpost.com/geopromo/ +# ||hubpages.com/c/*.gif? (easyprivacy.txt: 8140) +.hubpages.com/c/.*\.gif\? +# ||hsn.com/code/pix.aspx (easyprivacy.txt: 8139) +.hsn.com/code/pix\.aspx +# ||hrblock.com/includes/pixel/ (easyprivacy.txt: 8138) +.hrblock.com/includes/pixel/ +# ||hp.com^*/bootstrap/metrics.js (easyprivacy.txt: 8137) +.hp.com/.*/bootstrap/metrics\.js +# ||howtogeek.com/public/stats.php (easyprivacy.txt: 8136) +.howtogeek.com/public/stats\.php +# ||howcast.com/images/h.gif (easyprivacy.txt: 8135) +.howcast.com/images/h\.gif +# ||hoverstock.com/boomerang? (easyprivacy.txt: 8134) +.hoverstock.com/boomerang\? +# ||houzz.com/js/log? (easyprivacy.txt: 8133) +.houzz.com/js/log\? +# ||hothardware.com/stats/ (easyprivacy.txt: 8132) +.hothardware.com/stats/ +# ||hotelplanner.com/TT.cfm (easyprivacy.txt: 8131) +.hotelplanner.com/TT\.cfm +# ||hostels.com/includes/thing.php? (easyprivacy.txt: 8130) +.hostels.com/includes/thing\.php\? +# ||hostels.com/includes/lb.php? (easyprivacy.txt: 8129) +.hostels.com/includes/lb\.php\? +# ||hostelbookers.com/track/request/ (easyprivacy.txt: 8128) +.hostelbookers.com/track/request/ +# ||hoseasons.co.uk/tracking/js.html? (easyprivacy.txt: 8127) +.hoseasons.co.uk/tracking/js\.html\? +# ||honda.ca/_Global/js/includes/tracker.js (easyprivacy.txt: 8126) +.honda.ca/_Global/js/includes/tracker\.js +# ||homesalez.com/itop/hits.php (easyprivacy.txt: 8125) +.homesalez.com/itop/hits\.php +# ||homeaway.com^*/tracking-home.html (easyprivacy.txt: 8124) +.homeaway.com/.*/tracking-home\.html +# ||holiday-rentals.co.uk^*/tracking-home.html (easyprivacy.txt: 8123) +.holiday-rentals.co.uk/.*/tracking-home\.html +# ||holiday-rentals.co.uk/thirdparty/tag (easyprivacy.txt: 8122) +.holiday-rentals.co.uk/thirdparty/tag +# ||hobsons.co.uk^*/WebBeacon.aspx? (easyprivacy.txt: 8121) +.hobsons.co.uk/.*/WebBeacon\.aspx\? +# ||hitcount.heraldm.com^ (easyprivacy.txt: 8120) +.hitcount.heraldm.com +# ||higheredjobs.com/ClickThru/ (easyprivacy.txt: 8119) +.higheredjobs.com/ClickThru/ +# ||herold.at/images/stathbd.gif? (easyprivacy.txt: 8117) +.herold.at/images/stathbd\.gif\? +# ||heroku.com/track.js (easyprivacy.txt: 8116) +.heroku.com/track\.js +# ||heraldtimesonline.com/js/tk.js (easyprivacy.txt: 8115) +.heraldtimesonline.com/js/tk\.js +# ||helium.com/javascripts/helium-beacons.js (easyprivacy.txt: 8114) +.helium.com/javascripts/helium-beacons\.js +# ||healthcarejobsite.com/Common/JavaScript/functions.tracking.js (easyprivacy.txt: 8112) +.healthcarejobsite.com/Common/JavaScript/functions\.tracking\.js +# ||hdzog.com/js/1308.js (easyprivacy.txt: 8111) +.hdzog.com/js/1308\.js +# ||hclips.com/js/0818.js (easyprivacy.txt: 8110) +.hclips.com/js/0818\.js +# ||haxx.ly/counter/ (easyprivacy.txt: 8109) +.haxx.ly/counter/ +# ||harvester.hbpl.co.uk^ (easyprivacy.txt: 8108) +.harvester.hbpl.co.uk +# ||harvester.eu.square-enix.com^ (easyprivacy.txt: 8107) +.harvester.eu.square-enix.com +# ||harrisbank.com^*/zig.js (easyprivacy.txt: 8106) +.harrisbank.com/.*/zig\.js +# ||hanksgalleries.com/stxt/counter.php? (easyprivacy.txt: 8105) +.hanksgalleries.com/stxt/counter\.php\? +# ||h.cliphunter.com^ (easyprivacy.txt: 8104) +.h.cliphunter.com +# ||groupon.com/tracking (easyprivacy.txt: 8103) +.groupon.com/tracking +# ||groupon.com/analytic/ (easyprivacy.txt: 8102) +.groupon.com/analytic/ +# ||gq-magazine.co.uk^*/LogPageView (easyprivacy.txt: 8101) +.gq-magazine.co.uk/.*/LogPageView +# ||gov.in/js/ga.js (easyprivacy.txt: 8100) +.gov.in/js/ga\.js +# ||gosanangelo.com/metrics/ (easyprivacy.txt: 8099) +.gosanangelo.com/metrics/ +# ||gorillanation.com^*/flowplayer.ganalytics.swf (easyprivacy.txt: 8098) +.gorillanation.com/.*/flowplayer\.ganalytics\.swf +# ||googlelabs.com/log/ (easyprivacy.txt: 8097) +.googlelabs.com/log/ +# ||google.com^*/viewerimpressions? (easyprivacy.txt: 8096) +.google.com/.*/viewerimpressions\? +# ||google.com^*/urchin_post.js (easyprivacy.txt: 8095) +.google.com/.*/urchin_post\.js +# ||google.com^*/log? (easyprivacy.txt: 8094) +.google.com/.*/log\? +# ||google.com^*/dlpageping? (easyprivacy.txt: 8093) +.google.com/.*/dlpageping\? +# ||google.com/stream_204? (easyprivacy.txt: 8090) +.google.com/stream_204\? +# ||google.com/reader/logging? (easyprivacy.txt: 8089) +.google.com/reader/logging\? +# ||google.*/stats?frame= (easyprivacy.txt: 8088) +.google.*./(.*/)?stats\?frame= +# ||google.*/logxhraction? (easyprivacy.txt: 8087) +.google.*./(.*/)?logxhraction\? +# ||google.*/log204? (easyprivacy.txt: 8086) +.google.*./(.*/)?log204\? +# ||google.*/gwt/x/ts? (easyprivacy.txt: 8085) +.google.*./(.*/)?gwt/x/ts\? +# ||google.*/gen204? (easyprivacy.txt: 8083) +.google.*./(.*/)?gen204\? +# ||google.*/client_204? (easyprivacy.txt: 8082) +.google.*./(.*/)?client_204\? +# ||google.*/api/sclk? (easyprivacy.txt: 8081) +.google.*./(.*/)?api/sclk\? +# ||golfsmith.com/ci/ (easyprivacy.txt: 8080) +.golfsmith.com/ci/ +# ||godaddy.com/pageevents.aspx (easyprivacy.txt: 8079) +.godaddy.com/pageevents\.aspx +# ||godaddy.com/image.aspx? (easyprivacy.txt: 8078) +.godaddy.com/image\.aspx\? +# ||go.com^*/analytics.js (easyprivacy.txt: 8076) +.go.com/.*/analytics\.js +# ||go.com/stat/ (easyprivacy.txt: 8075) +.go.com/stat/ +# ||go.com/globalelements/utils/tracking (easyprivacy.txt: 8074) +.go.com/globalelements/utils/tracking +# ||gmonitor.aliimg.com^ (easyprivacy.txt: 8073) +.gmonitor.aliimg.com +# ||globester.com^*/track.js (easyprivacy.txt: 8072) +.globester.com/.*/track\.js +# ||globes.co.il/shared/s.ashx? (easyprivacy.txt: 8071) +.globes.co.il/shared/s\.ashx\? +# ||globes.co.il/ga.asp (easyprivacy.txt: 8070) +.globes.co.il/ga\.asp +# ||glean.pop6.com^ (easyprivacy.txt: 8069) +.glean.pop6.com +# ||glamourmagazine.co.uk^*/LogPageView (easyprivacy.txt: 8068) +.glamourmagazine.co.uk/.*/LogPageView +# ||gizmodo.com^*/trackers.html (easyprivacy.txt: 8067) +.gizmodo.com/.*/trackers\.html +# ||gizmodo.com/at.js.php (easyprivacy.txt: 8066) +.gizmodo.com/at\.js\.php +# ||github.com/_stats (easyprivacy.txt: 8065) +.github.com/_stats +# ||github.com/_private/browser/stats (easyprivacy.txt: 8064) +.github.com/_private/browser/stats +# ||gigya.com/js/gigyaGAIntegration.js (easyprivacy.txt: 8063) +.gigya.com/js/gigyaGAIntegration\.js +# ||giganews.com/images/rpp.gif (easyprivacy.txt: 8062) +.giganews.com/images/rpp\.gif +# ||giffgaff.com/r/?id= (easyprivacy.txt: 8061) +.giffgaff.com/r/\?id= +# ||geovisites.com^*/geouser.js (easyprivacy.txt: 8060) +.geovisites.com/.*/geouser\.js +# ||geoiplookup.wikimedia.org^ (easyprivacy.txt: 8059) +.geoiplookup.wikimedia.org +# ||geoip.viamichelin.com^ (easyprivacy.txt: 8058) +.geoip.viamichelin.com +# ||geoip.syracuse.com^ (easyprivacy.txt: 8057) +.geoip.syracuse.com +# ||geoip.silive.com^ (easyprivacy.txt: 8056) +.geoip.silive.com +# ||geoip.pennlive.com^ (easyprivacy.txt: 8055) +.geoip.pennlive.com +# ||geoip.oregonlive.com^ (easyprivacy.txt: 8054) +.geoip.oregonlive.com +# ||geoip.nola.com^ (easyprivacy.txt: 8053) +.geoip.nola.com +# ||geoip.nj.com^ (easyprivacy.txt: 8052) +.geoip.nj.com +# ||geoip.mlive.com^ (easyprivacy.txt: 8051) +.geoip.mlive.com +# ||geoip.masslive.com^ (easyprivacy.txt: 8050) +.geoip.masslive.com +# ||geoip.lehighvalleylive.com^ (easyprivacy.txt: 8049) +.geoip.lehighvalleylive.com +# ||geoip.gulflive.com^ (easyprivacy.txt: 8048) +.geoip.gulflive.com +# ||geoip.cleveland.com^ (easyprivacy.txt: 8047) +.geoip.cleveland.com +# ||geoip.al.com^ (easyprivacy.txt: 8046) +.geoip.al.com +# ||geoip-lookup.vice.com^ (easyprivacy.txt: 8045) +.geoip-lookup.vice.com +# ||geobeacon.ign.com^ (easyprivacy.txt: 8044) +.geobeacon.ign.com +# ||geo.yahoo.com^ (easyprivacy.txt: 8043) +.geo.yahoo.com +# ||geo.play.it^ (easyprivacy.txt: 8042) +.geo.play.it +# ||geo.perezhilton.com^ (easyprivacy.txt: 8041) +.geo.perezhilton.com +# ||geo.mozilla.org^ (easyprivacy.txt: 8040) +.geo.mozilla.org +# ||geo.metronews.ca^ (easyprivacy.txt: 8039) +.geo.metronews.ca +# ||geo.homepage-web.com^ (easyprivacy.txt: 8038) +.geo.homepage-web.com +# ||geo.hltv.org^ (easyprivacy.txt: 8037) +.geo.hltv.org +# ||general-search.com/stat (easyprivacy.txt: 8036) +.general-search.com/stat +# ||general-files.com/stat (easyprivacy.txt: 8035) +.general-files.com/stat +# ||geico.com/vs/track2.js? (easyprivacy.txt: 8034) +.geico.com/vs/track2\.js\? +# ||geek.com/js/zdgurgle/ (easyprivacy.txt: 8033) +.geek.com/js/zdgurgle/ +# ||gawker.com^*/trackers.html (easyprivacy.txt: 8032) +.gawker.com/.*/trackers\.html +# ||gawker.com/at.js.php (easyprivacy.txt: 8031) +.gawker.com/at\.js\.php +# ||gawker.com/?op=hyperion_useragent_data (easyprivacy.txt: 8030) +.gawker.com/\?op=hyperion_useragent_data +# ||gardenweb.com^*/iv_header.js (easyprivacy.txt: 8029) +.gardenweb.com/.*/iv_header\.js +# ||gardenweb.com^*/iv_footer.js (easyprivacy.txt: 8028) +.gardenweb.com/.*/iv_footer\.js +# ||gamezone.com/site/linktracker.js (easyprivacy.txt: 8027) +.gamezone.com/site/linktracker\.js +# ||gamezone.com/?act= (easyprivacy.txt: 8026) +.gamezone.com/\?act= +# ||gametrailers.com/neo/stats/ (easyprivacy.txt: 8025) +.gametrailers.com/neo/stats/ +# ||gamespot.com/cgi/chkpt.php? (easyprivacy.txt: 8024) +.gamespot.com/cgi/chkpt\.php\? +# ||gamesgames.com/WebAnalysis/ (easyprivacy.txt: 8023) +.gamesgames.com/WebAnalysis/ +# ||gamerdeals.net/aggbug.aspx (easyprivacy.txt: 8022) +.gamerdeals.net/aggbug\.aspx +# ||gamefront.com/wp-content/plugins/tracker/ (easyprivacy.txt: 8021) +.gamefront.com/wp-content/plugins/tracker/ +# ||gallup.wn.com/1x1.gif (easyprivacy.txt: 8020) +.gallup.wn.com/1x1\.gif +# ||galleries.bz/track/ (easyprivacy.txt: 8019) +.galleries.bz/track/ +# ||gaiaonline.com/internal/mkt_t.php? (easyprivacy.txt: 8018) +.gaiaonline.com/internal/mkt_t\.php\? +# ||ga.canoe.ca^ (easyprivacy.txt: 8017) +.ga.canoe.ca +# ||g.techweekeurope.co.uk^ (easyprivacy.txt: 8015) +.g.techweekeurope.co.uk +# ||g.msn.com^ (easyprivacy.txt: 8014) +.g.msn.com +# ||fwmrm.net^*/AnalyticsExtension. (easyprivacy.txt: 8013) +.fwmrm.net/.*/AnalyticsExtension\. +# ||furk.net/counter.yadro.ru/ (easyprivacy.txt: 8012) +.furk.net/counter\.yadro\.ru/ +# ||funbrain.com/a2.gif (easyprivacy.txt: 8011) +.funbrain.com/a2\.gif +# ||fujifilm.com/js/shared/analyzer.js (easyprivacy.txt: 8010) +.fujifilm.com/js/shared/analyzer\.js +# ||ft.com^*/ft-tracking.js (easyprivacy.txt: 8009) +.ft.com/.*/ft-tracking\.js +# ||ft.com/conker/service/pageview? (easyprivacy.txt: 8008) +.ft.com/conker/service/pageview\? +# ||frstatic.net^*/tracking.js (easyprivacy.txt: 8007) +.frstatic.net/.*/tracking\.js +# ||frontdoor.com/_track? (easyprivacy.txt: 8006) +.frontdoor.com/_track\? +# ||frog.wix.com^ (easyprivacy.txt: 8005) +.frog.wix.com +# ||fresh.techdirt.com^ (easyprivacy.txt: 8004) +.fresh.techdirt.com +# ||freeones.com^*/cd/?cookies= (easyprivacy.txt: 8003) +.freeones.com/.*/cd/\?cookies= +# ||freeones.com/cd/?cookies= (easyprivacy.txt: 8002) +.freeones.com/cd/\?cookies= +# ||freemeteo.com^*/searchlog.asp? (easyprivacy.txt: 8001) +.freemeteo.com/.*/searchlog\.asp\? +# ||freemeteo.com^*/log.asp? (easyprivacy.txt: 8000) +.freemeteo.com/.*/log\.asp\? +# ||freedownloadscenter.com^*/empty.gif? (easyprivacy.txt: 7998) +.freedownloadscenter.com/.*/empty\.gif\? +# ||freecause.com^*.png? (easyprivacy.txt: 7997) +.freecause.com/.*\.png\? +# ||freebiesms.com/tracker.aspx? (easyprivacy.txt: 7996) +.freebiesms.com/tracker\.aspx\? +# ||freebase.com/log? (easyprivacy.txt: 7995) +.freebase.com/log\? +# ||freean.us/track/ (easyprivacy.txt: 7994) +.freean.us/track/ +# ||free-tv-video-online.me/resources/js/counter.js (easyprivacy.txt: 7993) +.free-tv-video-online.me/resources/js/counter\.js +# ||free-tv-video-online.me/imp.php? (easyprivacy.txt: 7992) +.free-tv-video-online.me/imp\.php\? +# ||freaksofcock.com/track/ (easyprivacy.txt: 7991) +.freaksofcock.com/track/ +# ||foxtel.com.au/cms/fragments/corp_analytics/ (easyprivacy.txt: 7990) +.foxtel.com.au/cms/fragments/corp_analytics/ +# ||foxadd.com/addon/upixel/ (easyprivacy.txt: 7989) +.foxadd.com/addon/upixel/ +# ||foursquare.com^*/wtrack? (easyprivacy.txt: 7988) +.foursquare.com/.*/wtrack\? +# ||foursquare.com^*/logger? (easyprivacy.txt: 7987) +.foursquare.com/.*/logger\? +# ||fotothing.com/space.gif? (easyprivacy.txt: 7986) +.fotothing.com/space\.gif\? +# ||fostersbeer.com/js/tracking.js (easyprivacy.txt: 7985) +.fostersbeer.com/js/tracking\.js +# ||ford.com/ngtemplates/ngassets/ford/general/scripts/js/galleryMetrics.js (easyprivacy.txt: 7984) +.ford.com/ngtemplates/ngassets/ford/general/scripts/js/galleryMetrics\.js +# ||ford.com/ngtemplates/ngassets/com/forddirect/ng/newMetrics.js (easyprivacy.txt: 7983) +.ford.com/ngtemplates/ngassets/com/forddirect/ng/newMetrics\.js +# ||forbes.com^*/track.php? (easyprivacy.txt: 7982) +.forbes.com/.*/track\.php\? +# ||forbes.com/fps/cookie_backup.php? (easyprivacy.txt: 7981) +.forbes.com/fps/cookie_backup\.php\? +# ||fool.com/tracking/ (easyprivacy.txt: 7980) +.fool.com/tracking/ +# ||foodnavigator.com/tracker/ (easyprivacy.txt: 7979) +.foodnavigator.com/tracker/ +# ||fncstatic.com/static/all/js/geo.js (easyprivacy.txt: 7977) +.fncstatic.com/static/all/js/geo\.js +# ||flyjazz.ca/ow_ga.js (easyprivacy.txt: 7976) +.flyjazz.ca/ow_ga\.js +# ||flybmi.com/livetrack/ (easyprivacy.txt: 7975) +.flybmi.com/livetrack/ +# ||fls-na.amazon.ca^ (easyprivacy.txt: 7974) +.fls-na.amazon.ca +# ||fls-eu.amazon.co.uk^ (easyprivacy.txt: 7973) +.fls-eu.amazon.co.uk +# ||flixster.com^*/pixels? (easyprivacy.txt: 7972) +.flixster.com/.*/pixels\? +# ||flixist.com/img2.phtml (easyprivacy.txt: 7971) +.flixist.com/img2\.phtml +# ||flipkart.com/bbeacon.php? (easyprivacy.txt: 7970) +.flipkart.com/bbeacon\.php\? +# ||flipkart.com/ajaxlog/visitIdlog? (easyprivacy.txt: 7969) +.flipkart.com/ajaxlog/visitIdlog\? +# ||flipboard.com/usage? (easyprivacy.txt: 7968) +.flipboard.com/usage\? +# ||fling.com/zeftour/t_i.php? (easyprivacy.txt: 7967) +.fling.com/zeftour/t_i\.php\? +# ||flickr.com/beacon_page_timings.gne (easyprivacy.txt: 7966) +.flickr.com/beacon_page_timings\.gne +# ||flagfox.net/js/analytics.js (easyprivacy.txt: 7965) +.flagfox.net/js/analytics\.js +# ||financialstandardnews.com^*/webstats/ (easyprivacy.txt: 7964) +.financialstandardnews.com/.*/webstats/ +# ||financeglobe.com/Visit/ (easyprivacy.txt: 7963) +.financeglobe.com/Visit/ +# ||filmlinks4u.net/twatch/jslogger.php (easyprivacy.txt: 7962) +.filmlinks4u.net/twatch/jslogger\.php +# ||fightforthefuture.org/wf/open? (easyprivacy.txt: 7961) +.fightforthefuture.org/wf/open\? +# ||felitb.rightinthebox.com^ (easyprivacy.txt: 7960) +.felitb.rightinthebox.com +# ||feedsportal.com/c/ (easyprivacy.txt: 7959) +.feedsportal.com/c/ +# ||feeds.timesonline.co.uk^*/mf.gif (easyprivacy.txt: 7958) +.feeds.timesonline.co.uk/.*/mf\.gif +# ||feeds.feedblitz.com/~/i/ (easyprivacy.txt: 7957) +.feeds.feedblitz.com/~/i/ +# ||feedburner.com/~r/ (easyprivacy.txt: 7956) +.feedburner.com/~r/ +# ||fccbrea.org/javascript/stats.js (easyprivacy.txt: 7955) +.fccbrea.org/javascript/stats\.js +# ||fc2.com/counter_img.php? (easyprivacy.txt: 7954) +.fc2.com/counter_img\.php\? +# ||fc2.com/counter.php? (easyprivacy.txt: 7953) +.fc2.com/counter\.php\? +# ||fc2.com/analyze.js (easyprivacy.txt: 7952) +.fc2.com/analyze\.js +# ||fc2.com/ana2/ (easyprivacy.txt: 7951) +.fc2.com/ana2/ +# ||fc2.com/ana/ (easyprivacy.txt: 7950) +.fc2.com/ana/ +# ||favicon.co.uk/stat/ (easyprivacy.txt: 7949) +.favicon.co.uk/stat/ +# ||fastexercise.com/logging.js (easyprivacy.txt: 7948) +.fastexercise.com/logging\.js +# ||fast.forbes.com^ (easyprivacy.txt: 7947) +.fast.forbes.com +# ||farsnews.com/stcs.js.aspx? (easyprivacy.txt: 7946) +.farsnews.com/stcs\.js\.aspx\? +# ||farmville.com/trackaction.php? (easyprivacy.txt: 7945) +.farmville.com/trackaction\.php\? +# ||fark.com/cgi/ll.pl? (easyprivacy.txt: 7944) +.fark.com/cgi/ll\.pl\? +# ||farecompare.com/trackstar/ (easyprivacy.txt: 7943) +.farecompare.com/trackstar/ +# ||farecompare.com/resources/ga/ga.js (easyprivacy.txt: 7942) +.farecompare.com/resources/ga/ga\.js +# ||fantom-xp.org^*/toprefs.php? (easyprivacy.txt: 7941) +.fantom-xp.org/.*/toprefs\.php\? +# ||fantasticfiction.co.uk/cgi-bin/checker.cgi (easyprivacy.txt: 7940) +.fantasticfiction.co.uk/cgi-bin/checker\.cgi +# ||fanhow.com/script/tracker.js (easyprivacy.txt: 7939) +.fanhow.com/script/tracker\.js +# ||fanfiction.net/eye/ (easyprivacy.txt: 7938) +.fanfiction.net/eye/ +# ||facebook.com^*/impression_logging/ (easyprivacy.txt: 7937) +.facebook.com/.*/impression_logging/ +# ||facebook.com/search/web/instrumentation.php? (easyprivacy.txt: 7936) +.facebook.com/search/web/instrumentation\.php\? +# ||facebook.com/friends/requests/log_impressions (easyprivacy.txt: 7935) +.facebook.com/friends/requests/log_impressions +# ||facebook.com/ct.php (easyprivacy.txt: 7934) +.facebook.com/ct\.php +# ||facebook.com/ajax/*logging (easyprivacy.txt: 7933) +.facebook.com/ajax/.*logging +# ||facebook.com/ajax/*/log.php (easyprivacy.txt: 7932) +.facebook.com/ajax/.*/log\.php +# ||f.staticlp.com^ (easyprivacy.txt: 7931) +.f.staticlp.com +# ||f-secure.com^*/wtsdc.js (easyprivacy.txt: 7930) +.f-secure.com/.*/wtsdc\.js +# ||ezinearticles.com/encrypt/blank.gif? (easyprivacy.txt: 7929) +.ezinearticles.com/encrypt/blank\.gif\? +# ||ezinearticles.com/blank/ (easyprivacy.txt: 7928) +.ezinearticles.com/blank/ +# ||ez.no/statjs/ (easyprivacy.txt: 7927) +.ez.no/statjs/ +# ||extremetech.com^*/ga.js (easyprivacy.txt: 7926) +.extremetech.com/.*/ga\.js +# ||experts-exchange.com/pageloaded.jsp? (easyprivacy.txt: 7924) +.experts-exchange.com/pageloaded\.jsp\? +# ||experiandirect.com/javascripts/tracking.js (easyprivacy.txt: 7923) +.experiandirect.com/javascripts/tracking\.js +# ||expdb2.msn.com^ (easyprivacy.txt: 7922) +.expdb2.msn.com +# ||expbl2ro.xbox.com^ (easyprivacy.txt: 7921) +.expbl2ro.xbox.com +# ||exelate.com/pixel? (easyprivacy.txt: 7920) +.exelate.com/pixel\? +# ||excite.com/tr.js (easyprivacy.txt: 7919) +.excite.com/tr\.js +# ||excite.com/__kl.gif? (easyprivacy.txt: 7918) +.excite.com/__kl\.gif\? +# ||exchangeandmart.co.uk/js/ga.js (easyprivacy.txt: 7917) +.exchangeandmart.co.uk/js/ga\.js +# ||examiner.com/sites/all/modules/custom/ex_stats/ (easyprivacy.txt: 7916) +.examiner.com/sites/all/modules/custom/ex_stats/ +# ||exalead.com/search/pixel-ref/ (easyprivacy.txt: 7915) +.exalead.com/search/pixel-ref/ +# ||ex.ua/counter/ (easyprivacy.txt: 7914) +.ex.ua/counter/ +# ||eweek.com/hqxapi/ (easyprivacy.txt: 7913) +.eweek.com/hqxapi/ +# ||evisit.exeter.ac.uk^ (easyprivacy.txt: 7912) +.evisit.exeter.ac.uk +# ||everythinggirl.com/assets/tracker/ (easyprivacy.txt: 7911) +.everythinggirl.com/assets/tracker/ +# ||eventtracker.elitedaily.com^ (easyprivacy.txt: 7910) +.eventtracker.elitedaily.com +# ||eventlogger.soundcloud.com^ (easyprivacy.txt: 7909) +.eventlogger.soundcloud.com +# ||euroleague.tv^*/tracking.js (easyprivacy.txt: 7908) +.euroleague.tv/.*/tracking\.js +# ||eulerian.splendia.com/ea.js (easyprivacy.txt: 7907) +.eulerian.splendia.com/ea\.js +# ||etui.fs.ml.com^ (easyprivacy.txt: 7906) +.etui.fs.ml.com +# ||etonline.com/media/*/ctvconviva.swf (easyprivacy.txt: 7905) +.etonline.com/media/.*/ctvconviva\.swf +# ||et.nytimes.com^ (easyprivacy.txt: 7904) +.et.nytimes.com +# ||esure.com/cgi-bin/rr.cgi/images/blank.gif? (easyprivacy.txt: 7903) +.esure.com/cgi-bin/rr\.cgi/images/blank\.gif\? +# ||esupport.com/ea/analyze.js (easyprivacy.txt: 7902) +.esupport.com/ea/analyze\.js +# ||espncdn.com^*.tracking.js (easyprivacy.txt: 7901) +.espncdn.com/.*\.tracking\.js +# ||es.puritan.com^ (easyprivacy.txt: 7900) +.es.puritan.com +# ||eporner.com/stats/ (easyprivacy.txt: 7899) +.eporner.com/stats/ +# ||epinions.com/js/triggerParams.js (easyprivacy.txt: 7898) +.epinions.com/js/triggerParams\.js +# ||epinions.com/js/stdLauncher.js (easyprivacy.txt: 7897) +.epinions.com/js/stdLauncher\.js +# ||entry-stats.huffingtonpost.com^ (easyprivacy.txt: 7896) +.entry-stats.huffingtonpost.com +# ||entensity.net/pages/c.htm (easyprivacy.txt: 7895) +.entensity.net/pages/c\.htm +# ||enlightenment.secureshoppingbasket.com^ (easyprivacy.txt: 7894) +.enlightenment.secureshoppingbasket.com +# ||engineeringnews.co.za/count.php? (easyprivacy.txt: 7893) +.engineeringnews.co.za/count\.php\? +# ||engadget.com/traffic/? (easyprivacy.txt: 7892) +.engadget.com/traffic/\? +# ||emv2.com/P? (easyprivacy.txt: 7887) +.emv2.com/P\? +# ||emv2.com/HO? (easyprivacy.txt: 7886) +.emv2.com/HO\? +# ||emarketing.rmauctions.com^ (easyprivacy.txt: 7885) +.emarketing.rmauctions.com +# ||email.aol.com/cgi-bin*/flosensing? (easyprivacy.txt: 7884) +.email.aol.com/cgi-bin.*/flosensing\? +# ||email-wildstar-online.com/1x1.dyn? (easyprivacy.txt: 7883) +.email-wildstar-online.com/1x1\.dyn\? +# ||email-tickets.com/dt?e=PageView (easyprivacy.txt: 7882) +.email-tickets.com/dt\?e=PageView +# ||elsevier.com/pageReport? (easyprivacy.txt: 7881) +.elsevier.com/pageReport\? +# ||elance.com^*/emc.php? (easyprivacy.txt: 7880) +.elance.com/.*/emc\.php\? +# ||ehow.com/services/jslogging/log/? (easyprivacy.txt: 7879) +.ehow.com/services/jslogging/log/\? +# ||egg.com/rum/data.gif? (easyprivacy.txt: 7878) +.egg.com/rum/data\.gif\? +# ||efukt.com^*?hub= (easyprivacy.txt: 7877) +.efukt.com/.*\?hub= +# ||edweek.org/js/sc.js (easyprivacy.txt: 7876) +.edweek.org/js/sc\.js +# ||edw.edmunds.com^ (easyprivacy.txt: 7875) +.edw.edmunds.com +# ||edvantage.com.sg/site/servlet/tracker.jsp (easyprivacy.txt: 7874) +.edvantage.com.sg/site/servlet/tracker\.jsp +# ||ednetz.de/api/public/socialmediacounter. (easyprivacy.txt: 7872) +.ednetz.de/api/public/socialmediacounter\. +# ||edmunds.com^*/edw1x1.gif (easyprivacy.txt: 7871) +.edmunds.com/.*/edw1x1\.gif +# ||edmunds.com^*/dart1x1.gif (easyprivacy.txt: 7870) +.edmunds.com/.*/dart1x1\.gif +# ||edmunds.com/api/logTime? (easyprivacy.txt: 7869) +.edmunds.com/api/logTime\? +# ||edgecastcdn.net^*/pixel_1.png? (easyprivacy.txt: 7868) +.edgecastcdn.net/.*/pixel_1\.png\? +# ||ectnews.com/shared/missing.gif? (easyprivacy.txt: 7866) +.ectnews.com/shared/missing\.gif\? +# ||ec2-prod-tracker.babelgum.com^ (easyprivacy.txt: 7865) +.ec2-prod-tracker.babelgum.com +# ||ebay.com/op/t.do?event (easyprivacy.txt: 7863) +.ebay.com/op/t\.do\?event +# ||ebay-us.com/fp/ (easyprivacy.txt: 7862) +.ebay-us.com/fp/ +# ||easy2.com^*/logging/ (easyprivacy.txt: 7861) +.easy2.com/.*/logging/ +# ||eafyfsuh.net/track/ (easyprivacy.txt: 7860) +.eafyfsuh.net/track/ +# ||ea.pixmania. (easyprivacy.txt: 7859) +.ea.pixmania.*. +# ||dyo.gs/track/ (easyprivacy.txt: 7858) +.dyo.gs/track/ +# ||dx.com/?utm_rid= (easyprivacy.txt: 7857) +.dx.com/\?utm_rid= +# ||dw.de^*/run.dw? (easyprivacy.txt: 7856) +.dw.de/.*/run\.dw\? +# ||dw.cnet.com^ (easyprivacy.txt: 7855) +.dw.cnet.com +# ||dvdempire.com/include/user/empty2.asp? (easyprivacy.txt: 7854) +.dvdempire.com/include/user/empty2\.asp\? +# ||dvdempire.com/images/empty2.asp (easyprivacy.txt: 7853) +.dvdempire.com/images/empty2\.asp +# ||dump8.com/js/stat.php (easyprivacy.txt: 7852) +.dump8.com/js/stat\.php +# ||dsm.com^*/searchenginetracking.js (easyprivacy.txt: 7851) +.dsm.com/.*/searchenginetracking\.js +# ||dslreports.com/tp? (easyprivacy.txt: 7850) +.dslreports.com/tp\? +# ||drpeterjones.com/stats/ (easyprivacy.txt: 7849) +.drpeterjones.com/stats/ +# ||dropbox.com/web_timing_log (easyprivacy.txt: 7848) +.dropbox.com/web_timing_log +# ||dropbox.com/el/?b=open: (easyprivacy.txt: 7847) +.dropbox.com/el/\?b=open: +# ||dominos.co.uk^*/universal.html? (easyprivacy.txt: 7846) +.dominos.co.uk/.*/universal\.html\? +# ||domaintools.com/tracker.php (easyprivacy.txt: 7845) +.domaintools.com/tracker\.php +# ||domaintools.com/buffer.pgif? (easyprivacy.txt: 7844) +.domaintools.com/buffer\.pgif\? +# ||domainit.com/scripts/track.js (easyprivacy.txt: 7843) +.domainit.com/scripts/track\.js +# ||dogpile.com/__kl.gif (easyprivacy.txt: 7842) +.dogpile.com/__kl\.gif +# ||docstoc.com/metrics/ (easyprivacy.txt: 7841) +.docstoc.com/metrics/ +# ||dmtrk.com/*/o.gif (easyprivacy.txt: 7839) +.dmtrk.com/.*/o\.gif +# ||dmtracking2.alibaba.com^ (easyprivacy.txt: 7838) +.dmtracking2.alibaba.com +# ||dmeserv.newsinc.com^ (easyprivacy.txt: 7837) +.dmeserv.newsinc.com +# ||djtunes.com^*&__utma= (easyprivacy.txt: 7835) +.djtunes.com/.*&__utma= +# ||divxden.com^*/tracker.js (easyprivacy.txt: 7834) +.divxden.com/.*/tracker\.js +# ||displaymate.com/cgi-bin/stat/ (easyprivacy.txt: 7833) +.displaymate.com/cgi-bin/stat/ +# ||dippic.com/cgi-bin/index_dl.cgi? (easyprivacy.txt: 7832) +.dippic.com/cgi-bin/index_dl\.cgi\? +# ||digitalspy.co.uk/gip1.php (easyprivacy.txt: 7831) +.digitalspy.co.uk/gip1\.php +# ||digitalriver.com^*/globaltracking (easyprivacy.txt: 7830) +.digitalriver.com/.*/globaltracking +# ||digitalchocolate.com/event/track? (easyprivacy.txt: 7829) +.digitalchocolate.com/event/track\? +# ||diet.rodale.com^ (easyprivacy.txt: 7828) +.diet.rodale.com +# ||dictionary.com/track/ (easyprivacy.txt: 7827) +.dictionary.com/track/ +# ||diag.doba.com^ (easyprivacy.txt: 7826) +.diag.doba.com +# ||dfiles.ru//view.gif? (easyprivacy.txt: 7825) +# ||dfiles.eu//view.gif? (easyprivacy.txt: 7824) +# ||destructoid.com/img2.phtml? (easyprivacy.txt: 7823) +.destructoid.com/img2\.phtml\? +# ||despegar.com/t? (easyprivacy.txt: 7822) +.despegar.com/t\? +# ||designtaxi.com/tracker.php (easyprivacy.txt: 7821) +.designtaxi.com/tracker\.php +# ||derkeiler.com/gam/tag.js (easyprivacy.txt: 7820) +.derkeiler.com/gam/tag\.js +# ||depositfiles.com/view.gif? (easyprivacy.txt: 7819) +.depositfiles.com/view\.gif\? +# ||depositfiles.com//view.gif? (easyprivacy.txt: 7818) +# ||dell.com/metrics/ (easyprivacy.txt: 7817) +.dell.com/metrics/ +# ||dell.com/images/global/js/s_metrics*.js (easyprivacy.txt: 7816) +.dell.com/images/global/js/s_metrics.*\.js +# ||debtconsolidationcare.com/affiliate/tracker/ (easyprivacy.txt: 7815) +.debtconsolidationcare.com/affiliate/tracker/ +# ||dealnews.com/lw/ul.php? (easyprivacy.txt: 7814) +.dealnews.com/lw/ul\.php\? +# ||deadspin.com^*/trackers.html (easyprivacy.txt: 7813) +.deadspin.com/.*/trackers\.html +# ||deadspin.com/at.js.php (easyprivacy.txt: 7812) +.deadspin.com/at\.js\.php +# ||dcs.maxthon.com^ (easyprivacy.txt: 7811) +.dcs.maxthon.com +# ||dcs.mattel.com^ (easyprivacy.txt: 7810) +.dcs.mattel.com +# ||db.com^*/stats.js? (easyprivacy.txt: 7809) +.db.com/.*/stats\.js\? +# ||daum.net^*/dwi.js (easyprivacy.txt: 7808) +.daum.net/.*/dwi\.js +# ||datehookup.com/strk/dateadvertreg? (easyprivacy.txt: 7807) +.datehookup.com/strk/dateadvertreg\? +# ||datacollector.coin.scribol.com^ (easyprivacy.txt: 7806) +.datacollector.coin.scribol.com +# ||data.ryanair.com^ (easyprivacy.txt: 7805) +.data.ryanair.com +# ||data.ninemsn.com.au/*GetAdCalls (easyprivacy.txt: 7804) +.data.ninemsn.com.au/.*GetAdCalls +# ||dailymotion.com^*/tag.gif? (easyprivacy.txt: 7803) +.dailymotion.com/.*/tag\.gif\? +# ||dailymotion.com/track/ (easyprivacy.txt: 7802) +.dailymotion.com/track/ +# ||dailymotion.com/track- (easyprivacy.txt: 7801) +.dailymotion.com/track- +# ||dailymail.co.uk/tracking/ (easyprivacy.txt: 7799) +.dailymail.co.uk/tracking/ +# ||dailyfinance.com/tmfstatic/vs.gif? (easyprivacy.txt: 7798) +.dailyfinance.com/tmfstatic/vs\.gif\? +# ||dabs.com/AbacusTest/clientinfo_bk.gif (easyprivacy.txt: 7797) +.dabs.com/AbacusTest/clientinfo_bk\.gif +# ||da.virginmedia.com^ (easyprivacy.txt: 7796) +.da.virginmedia.com +# ||cyberlink.com/analytics/ (easyprivacy.txt: 7795) +.cyberlink.com/analytics/ +# ||cybercoders.com/js/tracker.js (easyprivacy.txt: 7794) +.cybercoders.com/js/tracker\.js +# ||cyanogenmod.com/tracking.js (easyprivacy.txt: 7793) +.cyanogenmod.com/tracking\.js +# ||customerservicejobs.com/common/track/ (easyprivacy.txt: 7792) +.customerservicejobs.com/common/track/ +# ||current.com/tracking.htm? (easyprivacy.txt: 7791) +.current.com/tracking\.htm\? +# ||ctscdn.com/content/tracking- (easyprivacy.txt: 7790) +.ctscdn.com/content/tracking- +# ||ct.cnet.com/opens? (easyprivacy.txt: 7789) +.ct.cnet.com/opens\? +# ||ct.buzzfeed.com^ (easyprivacy.txt: 7788) +.ct.buzzfeed.com +# ||crunchyroll.com^*/breadcrumb.js (easyprivacy.txt: 7787) +.crunchyroll.com/.*/breadcrumb\.js +# ||crunchyroll.com/tracker (easyprivacy.txt: 7786) +.crunchyroll.com/tracker +# ||crunchsports.com/tracking_fetchinfo.aspx? (easyprivacy.txt: 7785) +.crunchsports.com/tracking_fetchinfo\.aspx\? +# ||crowdignite.com/img/l.gif (easyprivacy.txt: 7784) +.crowdignite.com/img/l\.gif +# ||creditcards.com/sb.php? (easyprivacy.txt: 7783) +.creditcards.com/sb\.php\? +# ||creditcards.com/actions/page_view.php? (easyprivacy.txt: 7782) +.creditcards.com/actions/page_view\.php\? +# ||creativecommons.org^*/triples? (easyprivacy.txt: 7781) +.creativecommons.org/.*/triples\? +# ||creativecommons.org/elog/ (easyprivacy.txt: 7780) +.creativecommons.org/elog/ +# ||crackle.com/tracking/ (easyprivacy.txt: 7779) +.crackle.com/tracking/ +# ||cracked.com/tracking/ (easyprivacy.txt: 7778) +.cracked.com/tracking/ +# ||coveritlive.com/1/sts/view? (easyprivacy.txt: 7777) +.coveritlive.com/1/sts/view\? +# ||coursera.org/wf/open? (easyprivacy.txt: 7776) +.coursera.org/wf/open\? +# ||courierpress.com/metrics/ (easyprivacy.txt: 7775) +.courierpress.com/metrics/ +# ||coupons.com/pmm.asp (easyprivacy.txt: 7774) +.coupons.com/pmm\.asp +# ||counter.theconversation.edu.au^ (easyprivacy.txt: 7773) +.counter.theconversation.edu.au +# ||counter.sina.com.cn^ (easyprivacy.txt: 7772) +.counter.sina.com.cn +# ||counter.promodeejay.net^ (easyprivacy.txt: 7771) +.counter.promodeejay.net +# ||counter.entertainmentwise.com^ (easyprivacy.txt: 7770) +.counter.entertainmentwise.com +# ||count.rin.ru^ (easyprivacy.txt: 7769) +.count.rin.ru +# ||count.prx.org^ (easyprivacy.txt: 7768) +.count.prx.org +# ||count.livetv.sx^ (easyprivacy.txt: 7767) +.count.livetv.sx +# ||count.livetv.ru^ (easyprivacy.txt: 7766) +.count.livetv.ru +# ||cosmopolitan.co.za/rest/track/ (easyprivacy.txt: 7765) +.cosmopolitan.co.za/rest/track/ +# ||cooliris.com/shared/stats/ (easyprivacy.txt: 7764) +.cooliris.com/shared/stats/ +# ||coolertracks.emailroi.com^ (easyprivacy.txt: 7763) +.coolertracks.emailroi.com +# ||cooksunited.co.uk^*/pixel/ (easyprivacy.txt: 7762) +.cooksunited.co.uk/.*/pixel/ +# ||cooksunited.co.uk/counter*.php? (easyprivacy.txt: 7761) +.cooksunited.co.uk/counter.*\.php\? +# ||consumerreports.org^*/js/conversion.js (easyprivacy.txt: 7760) +.consumerreports.org/.*/js/conversion\.js +# ||confirm-referer.glrsales.com^ (easyprivacy.txt: 7759) +.confirm-referer.glrsales.com +# ||computing.co.uk^*/webtrends.js (easyprivacy.txt: 7758) +.computing.co.uk/.*/webtrends\.js +# ||computerarts.co.uk/*.php?cmd=site-stats (easyprivacy.txt: 7757) +.computerarts.co.uk/.*\.php\?cmd=site-stats +# ||comms-web-tracking.uswitchinternal.com^ (easyprivacy.txt: 7756) +.comms-web-tracking.uswitchinternal.com +# ||commercialappeal.com/metrics/ (easyprivacy.txt: 7755) +.commercialappeal.com/metrics/ +# ||commentarymagazine.com^*/track.asp? (easyprivacy.txt: 7754) +.commentarymagazine.com/.*/track\.asp\? +# ||collegehumor.com/track.php? (easyprivacy.txt: 7753) +.collegehumor.com/track\.php\? +# ||collector.trendmd.com^ (easyprivacy.txt: 7752) +.collector.trendmd.com +# ||collector.tescocompare.com^ (easyprivacy.txt: 7751) +.collector.tescocompare.com +# ||collector.statowl.com^ (easyprivacy.txt: 7750) +.collector.statowl.com +# ||collector.shopstream.co^ (easyprivacy.txt: 7749) +.collector.shopstream.co +# ||collector.kstptv5.com^ (easyprivacy.txt: 7748) +.collector.kstptv5.com +# ||collector.ksax.com^ (easyprivacy.txt: 7747) +.collector.ksax.com +# ||collector.githubapp.com^ (easyprivacy.txt: 7746) +.collector.githubapp.com +# ||collector-cdn.github.com^ (easyprivacy.txt: 7745) +.collector-cdn.github.com +# ||collection.theaa.com^ (easyprivacy.txt: 7744) +.collection.theaa.com +# ||collect2.sas.com^ (easyprivacy.txt: 7743) +.collect2.sas.com +# ||collect.sas.com^ (easyprivacy.txt: 7742) +.collect.sas.com +# ||collarity.com/ucs/tracker.js (easyprivacy.txt: 7741) +.collarity.com/ucs/tracker\.js +# ||codeweblog.com/js/count.js (easyprivacy.txt: 7740) +.codeweblog.com/js/count\.js +# ||codecguide.com/stats.js (easyprivacy.txt: 7739) +.codecguide.com/stats\.js +# ||cnt.vivatube.com^ (easyprivacy.txt: 7738) +.cnt.vivatube.com +# ||cnt.nuvid.com^ (easyprivacy.txt: 7737) +.cnt.nuvid.com +# ||cnt.nicemix.com^ (easyprivacy.txt: 7736) +.cnt.nicemix.com +# ||cmstrendslog.timesnow.tv^ (easyprivacy.txt: 7735) +.cmstrendslog.timesnow.tv +# ||cmstrendslog.indiatimes.com^ (easyprivacy.txt: 7734) +.cmstrendslog.indiatimes.com +# ||clvk.viki.io^ (easyprivacy.txt: 7733) +.clvk.viki.io +# ||cls.ichotelsgroup.com^ (easyprivacy.txt: 7732) +.cls.ichotelsgroup.com +# ||cloudfront.net/vis_opt_no_jquery.js (easyprivacy.txt: 7731) +.cloudfront.net/vis_opt_no_jquery\.js +# ||cloudfront.net/vis_opt.js (easyprivacy.txt: 7730) +.cloudfront.net/vis_opt\.js +# ||cloudfront.net/m/princess/ae.live.js (easyprivacy.txt: 7727) +.cloudfront.net/m/princess/ae\.live\.js +# ||cloudfront.net/m/princess/ae.js (easyprivacy.txt: 7726) +.cloudfront.net/m/princess/ae\.js +# ||cloudfront.net/bbc-filter.js (easyprivacy.txt: 7724) +.cloudfront.net/bbc-filter\.js +# ||cloudfront.net/amznUrchin.js (easyprivacy.txt: 7723) +.cloudfront.net/amznUrchin\.js +# ||cloudfront.net/1x1.gif? (easyprivacy.txt: 7722) +.cloudfront.net/1x1\.gif\? +# ||clog.go.com^ (easyprivacy.txt: 7721) +.clog.go.com +# ||clkstat.china.cn^ (easyprivacy.txt: 7720) +.clkstat.china.cn +# ||clk.about.com^ (easyprivacy.txt: 7719) +.clk.about.com +# ||climatedesk.org*/pixel.gif (easyprivacy.txt: 7718) +.climatedesk.org*./(.*/)?pixel\.gif +# ||clicks.traffictrader.net^ (easyprivacy.txt: 7717) +.clicks.traffictrader.net +# ||clicks.hurriyet.com.tr^ (easyprivacy.txt: 7716) +.clicks.hurriyet.com.tr +# ||click2.cafepress.com^ (easyprivacy.txt: 7715) +.click2.cafepress.com +# ||click.news.imdb.com/open.aspx? (easyprivacy.txt: 7714) +.click.news.imdb.com/open\.aspx\? +# ||click.mmosite.com^ (easyprivacy.txt: 7713) +.click.mmosite.com +# ||click.engage.xbox.com^ (easyprivacy.txt: 7712) +.click.engage.xbox.com +# ||click.aliexpress.com^ (easyprivacy.txt: 7711) +.click.aliexpress.com +# ||clck.yandex.com^ (easyprivacy.txt: 7710) +.clck.yandex.com +# ||cl.ly/metrics? (easyprivacy.txt: 7709) +.cl.ly/metrics\? +# ||cl.expedia.com^ (easyprivacy.txt: 7708) +.cl.expedia.com +# ||cjtube.com/tp/*.php (easyprivacy.txt: 7707) +.cjtube.com/tp/.*\.php +# ||ciao.co.uk/flextag/ (easyprivacy.txt: 7706) +.ciao.co.uk/flextag/ +# ||chunk.bustle.com^ (easyprivacy.txt: 7705) +.chunk.bustle.com +# ||chud.com/community/p/ (easyprivacy.txt: 7704) +.chud.com/community/p/ +# ||chron.com/javascript/cider/ (easyprivacy.txt: 7703) +.chron.com/javascript/cider/ +# ||christianpost.com/count.php? (easyprivacy.txt: 7702) +.christianpost.com/count\.php\? +# ||chkpt.zdnet.com^ (easyprivacy.txt: 7701) +.chkpt.zdnet.com +# ||chip.eu^*/pic.gif? (easyprivacy.txt: 7700) +.chip.eu/.*/pic\.gif\? +# ||chinanews.com:8090/rpc/p.jsp? (easyprivacy.txt: 7699) +.chinanews.com:8090/rpc/p\.jsp\? +# ||china.com^*/endpage_footer.js (easyprivacy.txt: 7698) +.china.com/.*/endpage_footer\.js +# ||china.com/statistic.js (easyprivacy.txt: 7697) +.china.com/statistic\.js +# ||chelseafc.com^*/tracking.js (easyprivacy.txt: 7696) +.chelseafc.com/.*/tracking\.js +# ||cheezburger.com/api/visitor (easyprivacy.txt: 7695) +.cheezburger.com/api/visitor +# ||cheapsalesconsulting.com/adaptive.php? (easyprivacy.txt: 7694) +.cheapsalesconsulting.com/adaptive\.php\? +# ||cheapflights.com/ic/*.gif? (easyprivacy.txt: 7693) +.cheapflights.com/ic/.*\.gif\? +# ||charter.com/static/scripts/mock/tracking.js (easyprivacy.txt: 7692) +.charter.com/static/scripts/mock/tracking\.js +# ||channel4.com/foresee_c4/ (easyprivacy.txt: 7691) +.channel4.com/foresee_c4/ +# ||chanel.com/js/flashtrack.js (easyprivacy.txt: 7690) +.chanel.com/js/flashtrack\.js +# ||cgi.nch.com.au^*&referrer (easyprivacy.txt: 7689) +.cgi.nch.com.au/.*&referrer +# ||cfr.org/js/ga.*js (easyprivacy.txt: 7688) +.cfr.org/js/ga\..*js +# ||cert.org/images/1pxinv.gif (easyprivacy.txt: 7687) +.cert.org/images/1pxinv\.gif +# ||cellstores.com/tracking/ (easyprivacy.txt: 7686) +.cellstores.com/tracking/ +# ||cdnstats.tube8.com^ (easyprivacy.txt: 7685) +.cdnstats.tube8.com +# ||cd.musicmass.com^ (easyprivacy.txt: 7684) +.cd.musicmass.com +# ||cctv.com^*/SnoopStat? (easyprivacy.txt: 7683) +.cctv.com/.*/SnoopStat\? +# ||cclickvidservgs.com/mattel/cclick.js (easyprivacy.txt: 7682) +.cclickvidservgs.com/mattel/cclick\.js +# ||cbssports.com/common/p? (easyprivacy.txt: 7681) +.cbssports.com/common/p\? +# ||cbsnews.com/i/trk/ (easyprivacy.txt: 7680) +.cbsnews.com/i/trk/ +# ||cbslocal.com^*/cbs1x1.gif? (easyprivacy.txt: 7679) +.cbslocal.com/.*/cbs1x1\.gif\? +# ||cbsimg.net/js/cbsi/dw.js (easyprivacy.txt: 7678) +.cbsimg.net/js/cbsi/dw\.js +# ||cbs.wondershare.com^ (easyprivacy.txt: 7677) +.cbs.wondershare.com +# ||cbs.com/assets/js/*AdvCookie.js (easyprivacy.txt: 7676) +.cbs.com/assets/js/.*AdvCookie\.js +# ||cbox.ws^*/relay.swf?host= (easyprivacy.txt: 7675) +.cbox.ws/.*/relay\.swf\?host= +# ||cbox.ws/box/relay.swf? (easyprivacy.txt: 7674) +.cbox.ws/box/relay\.swf\? +# ||cbc.ca/g/stats/ (easyprivacy.txt: 7673) +.cbc.ca/g/stats/ +# ||cbc.ca/g/i/intercept.js (easyprivacy.txt: 7672) +.cbc.ca/g/i/intercept\.js +# ||cartoonnetwork.com^*/brandcma.js (easyprivacy.txt: 7671) +.cartoonnetwork.com/.*/brandcma\.js +# ||cartoonnetwork.com/tools/js/clickmap/ (easyprivacy.txt: 7670) +.cartoonnetwork.com/tools/js/clickmap/ +# ||cartier.co.uk^*/eyeblaster. (easyprivacy.txt: 7669) +.cartier.co.uk/.*/eyeblaster\. +# ||cars.com^*/analytics.js (easyprivacy.txt: 7668) +.cars.com/.*/analytics\.js +# ||carmax.com/ping? (easyprivacy.txt: 7667) +.carmax.com/ping\? +# ||carmagazine.co.uk^*/tracking.js (easyprivacy.txt: 7666) +.carmagazine.co.uk/.*/tracking\.js +# ||cardstore.com/affiliate.jsp? (easyprivacy.txt: 7665) +.cardstore.com/affiliate\.jsp\? +# ||cardomain.com/js/tibbylog.js? (easyprivacy.txt: 7664) +.cardomain.com/js/tibbylog\.js\? +# ||capitalone.com/tracker/ (easyprivacy.txt: 7663) +.capitalone.com/tracker/ +# ||canoe.ca/generix/ga.js (easyprivacy.txt: 7662) +.canoe.ca/generix/ga\.js +# ||candy.com/3droi/ (easyprivacy.txt: 7661) +.candy.com/3droi/ +# ||caller.com/metrics/ (easyprivacy.txt: 7660) +.caller.com/metrics/ +# ||caixin.com/webjs/common/caixinlog.js (easyprivacy.txt: 7659) +.caixin.com/webjs/common/caixinlog\.js +# ||c.ypcdn.com^*/webyp?rid= (easyprivacy.txt: 7658) +.c.ypcdn.com/.*/webyp\?rid= +# ||c.x.oanda.com^ (easyprivacy.txt: 7657) +.c.x.oanda.com +# ||c.newsinc.com^ (easyprivacy.txt: 7656) +.c.newsinc.com +# ||c.microsoft.com^ (easyprivacy.txt: 7655) +.c.microsoft.com +# ||buzzurl.jp/api/counter/ (easyprivacy.txt: 7654) +.buzzurl.jp/api/counter/ +# ||buzzfeed.com^*/tracker.js (easyprivacy.txt: 7653) +.buzzfeed.com/.*/tracker\.js +# ||buzzfeed.com^*/small.gif? (easyprivacy.txt: 7652) +.buzzfeed.com/.*/small\.gif\? +# ||buzzfed.com^*/pound.js (easyprivacy.txt: 7651) +.buzzfed.com/.*/pound\.js +# ||buzzfed.com/pixel? (easyprivacy.txt: 7650) +.buzzfed.com/pixel\? +# ||buzzamedia.com/js/track.js (easyprivacy.txt: 7649) +.buzzamedia.com/js/track\.js +# ||buto.tv/track/ (easyprivacy.txt: 7648) +.buto.tv/track/ +# ||businessseek.biz/cgi-bin/*.pl?trans.gif&ref= (easyprivacy.txt: 7647) +.businessseek.biz/cgi-bin/.*\.pl\?trans\.gif&ref= +# ||businessinsider.com^*/track.js (easyprivacy.txt: 7646) +.businessinsider.com/.*/track\.js +# ||businessinsider.com/tracker.js (easyprivacy.txt: 7645) +.businessinsider.com/tracker\.js +# ||business.com/images2/anal.gif? (easyprivacy.txt: 7644) +.business.com/images2/anal\.gif\? +# ||bulgari.com/bulgari/wireframe_script/BulgariGa.js (easyprivacy.txt: 7643) +.bulgari.com/bulgari/wireframe_script/BulgariGa\.js +# ||brobible.com/?ACT (easyprivacy.txt: 7642) +.brobible.com/\?ACT +# ||broadbandchoices.co.uk/track.js (easyprivacy.txt: 7641) +.broadbandchoices.co.uk/track\.js +# ||britannica.com/webstats/ (easyprivacy.txt: 7640) +.britannica.com/webstats/ +# ||brightcove.com/1pix.gif? (easyprivacy.txt: 7639) +.brightcove.com/1pix\.gif\? +# ||bridgetrack.com/track/ (easyprivacy.txt: 7638) +.bridgetrack.com/track/ +# ||bridgetrack.com/site/ (easyprivacy.txt: 7637) +.bridgetrack.com/site/ +# ||branica.com/counter.php? (easyprivacy.txt: 7636) +.branica.com/counter\.php\? +# ||brandrepublic.com/session-img/ (easyprivacy.txt: 7635) +.brandrepublic.com/session-img/ +# ||bostonglobe.com/statistics? (easyprivacy.txt: 7634) +.bostonglobe.com/statistics\? +# ||boston.com/upixel/ (easyprivacy.txt: 7633) +.boston.com/upixel/ +# ||booking.com/logo? (easyprivacy.txt: 7632) +.booking.com/logo\? +# ||booking.com/js_tracking? (easyprivacy.txt: 7631) +.booking.com/js_tracking\? +# ||boats.com/images/tracking/ (easyprivacy.txt: 7630) +.boats.com/images/tracking/ +# ||boards.ie/timing.php? (easyprivacy.txt: 7629) +.boards.ie/timing\.php\? +# ||bmocorpmc.com^*/zig.js (easyprivacy.txt: 7628) +.bmocorpmc.com/.*/zig\.js +# ||bluenile.com/track/ (easyprivacy.txt: 7627) +.bluenile.com/track/ +# ||bluenile.co.uk/track/ (easyprivacy.txt: 7626) +.bluenile.co.uk/track/ +# ||bluenile.ca/track/ (easyprivacy.txt: 7625) +.bluenile.ca/track/ +# ||bloxcms.com^*/tracker.js (easyprivacy.txt: 7624) +.bloxcms.com/.*/tracker\.js +# ||bloomberg.com/apps/data?referrer (easyprivacy.txt: 7623) +.bloomberg.com/apps/data\?referrer +# ||blip.tv/engagement? (easyprivacy.txt: 7622) +.blip.tv/engagement\? +# ||blinkbox.com/tracking (easyprivacy.txt: 7621) +.blinkbox.com/tracking +# ||blick.ch/stats/ (easyprivacy.txt: 7620) +.blick.ch/stats/ +# ||blekko.com/a/track? (easyprivacy.txt: 7619) +.blekko.com/a/track\? +# ||blastro.com/log_player_actions.php (easyprivacy.txt: 7618) +.blastro.com/log_player_actions\.php +# ||blankfire.com^*_.gif (easyprivacy.txt: 7617) +.blankfire.com/.*_\.gif +# ||blackplanet.com/images/shim.gif (easyprivacy.txt: 7616) +.blackplanet.com/images/shim\.gif +# ||bits.wikimedia.org/geoiplookup (easyprivacy.txt: 7615) +.bits.wikimedia.org/geoiplookup +# ||bit.ehow.com^ (easyprivacy.txt: 7614) +.bit.ehow.com +# ||birthvillage.com/watcher/ (easyprivacy.txt: 7613) +.birthvillage.com/watcher/ +# ||biosphoto.com^*/stats/ (easyprivacy.txt: 7612) +.biosphoto.com/.*/stats/ +# ||bing.com^*/GLinkPing.aspx (easyprivacy.txt: 7611) +.bing.com/.*/GLinkPing\.aspx +# ||bing.com/widget/metrics.js (easyprivacy.txt: 7610) +.bing.com/widget/metrics\.js +# ||bing.com/partner/primedns (easyprivacy.txt: 7609) +.bing.com/partner/primedns +# ||bing.com/fd/ls/ (easyprivacy.txt: 7608) +.bing.com/fd/ls/ +# ||binaries4all.nl/misc/misc.php?*&url=http (easyprivacy.txt: 7607) +.binaries4all.nl/misc/misc\.php\?.*&url=http +# ||bidz.com/contentarea/BidzHomePixel (easyprivacy.txt: 7606) +.bidz.com/contentarea/BidzHomePixel +# ||bi.medscape.com^ (easyprivacy.txt: 7605) +.bi.medscape.com +# ||bhg.com^*/tracking-data? (easyprivacy.txt: 7604) +.bhg.com/.*/tracking-data\? +# ||beyond.com/common/track/trackgeneral.asp (easyprivacy.txt: 7603) +.beyond.com/common/track/trackgeneral\.asp +# ||betway.com/snowflake/? (easyprivacy.txt: 7602) +.betway.com/snowflake/\? +# ||betfair.com/1x1.gif (easyprivacy.txt: 7601) +.betfair.com/1x1\.gif +# ||bestofmedia.com/sfp/js/boomerang/ (easyprivacy.txt: 7600) +.bestofmedia.com/sfp/js/boomerang/ +# ||bestofmedia.com/i/tomsguide/a.gif (easyprivacy.txt: 7599) +.bestofmedia.com/i/tomsguide/a\.gif +# ||bermudasun.bm/stats/ (easyprivacy.txt: 7598) +.bermudasun.bm/stats/ +# ||bench.uc.cn^ (easyprivacy.txt: 7597) +.bench.uc.cn +# ||beacons.helium.com^ (easyprivacy.txt: 7596) +.beacons.helium.com +# ||beacon.www.theguardian.com^ (easyprivacy.txt: 7595) +.beacon.www.theguardian.com +# ||beacon.walmart.com^ (easyprivacy.txt: 7594) +.beacon.walmart.com +# ||beacon.search.yahoo.com^ (easyprivacy.txt: 7593) +.beacon.search.yahoo.com +# ||beacon.nuskin.com^ (easyprivacy.txt: 7592) +.beacon.nuskin.com +# ||beacon.lycos.com^ (easyprivacy.txt: 7591) +.beacon.lycos.com +# ||beacon.indieclicktv.com^ (easyprivacy.txt: 7590) +.beacon.indieclicktv.com +# ||beacon.examiner.com^ (easyprivacy.txt: 7589) +.beacon.examiner.com +# ||beacon.ehow.com^ (easyprivacy.txt: 7588) +.beacon.ehow.com +# ||beacon-1.newrelic.com^ (easyprivacy.txt: 7587) +.beacon-1.newrelic.com +# ||bdonline.co.uk/bps_sv.gif? (easyprivacy.txt: 7586) +.bdonline.co.uk/bps_sv\.gif\? +# ||bcm.itv.com^ (easyprivacy.txt: 7585) +.bcm.itv.com +# ||bc.yahoo.com^ (easyprivacy.txt: 7584) +.bc.yahoo.com +# ||bbc.co.uk^*/vs.js (easyprivacy.txt: 7582) +.bbc.co.uk/.*/vs\.js +# ||bbc.co.uk^*/tracker.js (easyprivacy.txt: 7581) +.bbc.co.uk/.*/tracker\.js +# ||bbc.co.uk^*/livestats_v1_1.js (easyprivacy.txt: 7580) +.bbc.co.uk/.*/livestats_v1_1\.js +# ||bbc.co.uk^*/livestats.js (easyprivacy.txt: 7579) +.bbc.co.uk/.*/livestats\.js +# ||bbc.co.uk^*/linktrack.js (easyprivacy.txt: 7578) +.bbc.co.uk/.*/linktrack\.js +# ||bbc.co.uk/zaguk.gif? (easyprivacy.txt: 7577) +.bbc.co.uk/zaguk\.gif\? +# ||bbc.co.uk/click/img/ (easyprivacy.txt: 7576) +.bbc.co.uk/click/img/ +# ||bbc.co.uk/cbbc/statstracker/ (easyprivacy.txt: 7575) +.bbc.co.uk/cbbc/statstracker/ +# ||bbc.co.uk/analytics? (easyprivacy.txt: 7574) +.bbc.co.uk/analytics\? +# ||bayer.com^*/sp.gif? (easyprivacy.txt: 7573) +.bayer.com/.*/sp\.gif\? +# ||baxter.com/includes/wtss.js (easyprivacy.txt: 7572) +.baxter.com/includes/wtss\.js +# ||bats.video.yahoo.com^ (easyprivacy.txt: 7571) +.bats.video.yahoo.com +# ||bat.adforum.com^ (easyprivacy.txt: 7570) +.bat.adforum.com +# ||barrons.com^*/blank.htm (easyprivacy.txt: 7569) +.barrons.com/.*/blank\.htm +# ||barneys.com^*/__analytics-tracking? (easyprivacy.txt: 7568) +.barneys.com/.*/__analytics-tracking\? +# ||barneys.com/spacer.gif? (easyprivacy.txt: 7567) +.barneys.com/spacer\.gif\? +# ||barnesandnoble.com/Analytics/ (easyprivacy.txt: 7566) +.barnesandnoble.com/Analytics/ +# ||barclaycard.co.uk/cs/static/js/esurveys/esurveys.js (easyprivacy.txt: 7565) +.barclaycard.co.uk/cs/static/js/esurveys/esurveys\.js +# ||barcelo.com^*/Tracking.js (easyprivacy.txt: 7564) +.barcelo.com/.*/Tracking\.js +# ||bangkokpost.com/spac/spac.js (easyprivacy.txt: 7563) +.bangkokpost.com/spac/spac\.js +# ||banggood.com/?p= (easyprivacy.txt: 7562) +.banggood.com/\?p= +# ||bandstores.co.uk/tracking/scripts/ (easyprivacy.txt: 7561) +.bandstores.co.uk/tracking/scripts/ +# ||baidu.com/js/log.js (easyprivacy.txt: 7560) +.baidu.com/js/log\.js +# ||baidu.com/ecom? (easyprivacy.txt: 7559) +.baidu.com/ecom\? +# ||b.myspace.com^ (easyprivacy.txt: 7557) +.b.myspace.com +# ||b.imwx.com^ (easyprivacy.txt: 7556) +.b.imwx.com +# ||b.huffingtonpost.com^ (easyprivacy.txt: 7555) +.b.huffingtonpost.com +# ||azfamily.com/images/pixel.gif (easyprivacy.txt: 7554) +.azfamily.com/images/pixel\.gif +# ||axa.com/elements/js/wreport.js (easyprivacy.txt: 7553) +.axa.com/elements/js/wreport\.js +# ||avstop.com^*/poll.gif? (easyprivacy.txt: 7552) +.avstop.com/.*/poll\.gif\? +# ||aviva.co.uk/metrics/ (easyprivacy.txt: 7551) +.aviva.co.uk/metrics/ +# ||avitop.com^*/hitlist.asp (easyprivacy.txt: 7550) +.avitop.com/.*/hitlist\.asp +# ||avira.com/site/datatracking? (easyprivacy.txt: 7549) +.avira.com/site/datatracking\? +# ||avg.com^*/stats.js (easyprivacy.txt: 7548) +.avg.com/.*/stats\.js +# ||autotrader.co.za/log/ (easyprivacy.txt: 7547) +.autotrader.co.za/log/ +# ||autotrader.co.uk/page-tracking/ (easyprivacy.txt: 7546) +.autotrader.co.uk/page-tracking/ +# ||autosite.com/scripts/markerfile.bin? (easyprivacy.txt: 7545) +.autosite.com/scripts/markerfile\.bin\? +# ||autopartswarehouse.com/thirdparty/tracker? (easyprivacy.txt: 7544) +.autopartswarehouse.com/thirdparty/tracker\? +# ||autobytel.com/content/shared/markerfile.bin (easyprivacy.txt: 7543) +.autobytel.com/content/shared/markerfile\.bin +# ||autoblog.com/traffic/ (easyprivacy.txt: 7542) +.autoblog.com/traffic/ +# ||auriq.com/asp/aq_tag. (easyprivacy.txt: 7541) +.auriq.com/asp/aq_tag\. +# ||audiusa.com/us/brand/en.usertracking_javascript.js (easyprivacy.txt: 7540) +.audiusa.com/us/brand/en\.usertracking_javascript\.js +# ||audit.pcadvisor.co.uk^ (easyprivacy.txt: 7539) +.audit.pcadvisor.co.uk +# ||audit.macworld.co.uk^ (easyprivacy.txt: 7538) +.audit.macworld.co.uk +# ||attachmate.com*/pv.aspx? (easyprivacy.txt: 7537) +.attachmate.com*./(.*/)?pv\.aspx\? +# ||att.com/csct.gif? (easyprivacy.txt: 7536) +.att.com/csct\.gif\? +# ||atracktive.collegehumor.com^ (easyprivacy.txt: 7535) +.atracktive.collegehumor.com +# ||atrack.art.com^ (easyprivacy.txt: 7534) +.atrack.art.com +# ||atrack.allposters.com^ (easyprivacy.txt: 7533) +.atrack.allposters.com +# ||atlas.astrology.com^ (easyprivacy.txt: 7532) +.atlas.astrology.com +# ||atlantis.com/_scripts/tsedge/pagemarker.gif? (easyprivacy.txt: 7531) +.atlantis.com/_scripts/tsedge/pagemarker\.gif\? +# ||atlantafalcons.com/wp-content/*/metrics.js (easyprivacy.txt: 7530) +.atlantafalcons.com/wp-content/.*/metrics\.js +# ||athena.mysmartprice.info^ (easyprivacy.txt: 7529) +.athena.mysmartprice.info +# ||atax.teamxbox.com^ (easyprivacy.txt: 7528) +.atax.teamxbox.com +# ||atax.ign.com^ (easyprivacy.txt: 7527) +.atax.ign.com +# ||atax.gamestats.com^ (easyprivacy.txt: 7526) +.atax.gamestats.com +# ||atax.gamespy.com^ (easyprivacy.txt: 7525) +.atax.gamespy.com +# ||atax.gamermetrics.com^ (easyprivacy.txt: 7524) +.atax.gamermetrics.com +# ||astrology.com/visits/ (easyprivacy.txt: 7523) +.astrology.com/visits/ +# ||associatedcontent.com/action_cookie (easyprivacy.txt: 7522) +.associatedcontent.com/action_cookie +# ||assets.olark.com^ (easyprivacy.txt: 7521) +.assets.olark.com +# ||askmen.com/tracking/ (easyprivacy.txt: 7520) +.askmen.com/tracking/ +# ||askamum.co.uk/Shared/js/tracking.js (easyprivacy.txt: 7519) +.askamum.co.uk/Shared/js/tracking\.js +# ||ask.com/servlets/ulog? (easyprivacy.txt: 7518) +.ask.com/servlets/ulog\? +# ||asianblast.com/statx/ (easyprivacy.txt: 7517) +.asianblast.com/statx/ +# ||ashleymadison.com/app/public/track.p? (easyprivacy.txt: 7516) +.ashleymadison.com/app/public/track\.p\? +# ||art.com/asp/UTERecording.asp (easyprivacy.txt: 7515) +.art.com/asp/UTERecording\.asp +# ||art.com/asp/robot/ (easyprivacy.txt: 7514) +.art.com/asp/robot/ +# ||art.co.uk/asp/robot/ (easyprivacy.txt: 7513) +.art.co.uk/asp/robot/ +# ||arstechnica.com^*.gif?id= (easyprivacy.txt: 7511) +.arstechnica.com/.*\.gif\?id= +# ||arstechnica.com/dragons/breath.gif (easyprivacy.txt: 7508) +.arstechnica.com/dragons/breath\.gif +# ||armystudyguide.com/hqxapi/it? (easyprivacy.txt: 7505) +.armystudyguide.com/hqxapi/it\? +# ||archive.org/static/js/analytics.js (easyprivacy.txt: 7504) +.archive.org/static/js/analytics\.js +# ||appspot.com/tracking/ (easyprivacy.txt: 7503) +.appspot.com/tracking/ +# ||applifier.com/users/tracking? (easyprivacy.txt: 7502) +.applifier.com/users/tracking\? +# ||applegate.co.uk/javascript/dcs/track.js (easyprivacy.txt: 7501) +.applegate.co.uk/javascript/dcs/track\.js +# ||apple.com^*/spacer2.gif? (easyprivacy.txt: 7500) +.apple.com/.*/spacer2\.gif\? +# ||apphit.com/js/count.js (easyprivacy.txt: 7499) +.apphit.com/js/count\.js +# ||api.tinypic.com/api.php?action=track (easyprivacy.txt: 7498) +.api.tinypic.com/api\.php\?action=track +# ||apartments.com^*/al.gif? (easyprivacy.txt: 7497) +.apartments.com/.*/al\.gif\? +# ||ap.org^*/webtrendsap_hosted.js (easyprivacy.txt: 7496) +.ap.org/.*/webtrendsap_hosted\.js +# ||ap.org^*/blank.gif? (easyprivacy.txt: 7495) +.ap.org/.*/blank\.gif\? +# ||aol.com/track/ (easyprivacy.txt: 7494) +.aol.com/track/ +# ||aol.com/metrics/ (easyprivacy.txt: 7493) +.aol.com/metrics/ +# ||aol.com/master/? (easyprivacy.txt: 7492) +.aol.com/master/\? +# ||aol.com/beacons/ (easyprivacy.txt: 7491) +.aol.com/beacons/ +# ||aol.com/articles/traffic/ (easyprivacy.txt: 7490) +.aol.com/articles/traffic/ +# ||aol.co.uk/track/ (easyprivacy.txt: 7489) +.aol.co.uk/track/ +# ||aol.ca/track/ (easyprivacy.txt: 7488) +.aol.ca/track/ +# ||any.gs/track/ (easyprivacy.txt: 7487) +.any.gs/track/ +# ||answers.com/resources/tac.html (easyprivacy.txt: 7486) +.answers.com/resources/tac\.html +# ||anp.se/track? (easyprivacy.txt: 7485) +.anp.se/track\? +# ||anntaylor.com/webassets/*/page_code.js (easyprivacy.txt: 7484) +.anntaylor.com/webassets/.*/page_code\.js +# ||angelfire.com/cgi-bin/count.cgi (easyprivacy.txt: 7483) +.angelfire.com/cgi-bin/count\.cgi +# ||androidfilehost.com/libs/otf/stats.otf.php? (easyprivacy.txt: 7482) +.androidfilehost.com/libs/otf/stats\.otf\.php\? +# ||androidcommunity.com/ws/?js (easyprivacy.txt: 7481) +.androidcommunity.com/ws/\?js +# ||analyzer52.fc2.com^ (easyprivacy.txt: 7480) +.analyzer52.fc2.com +# ||analyze.yahooapis.com^ (easyprivacy.txt: 7479) +.analyze.yahooapis.com +# ||analytics.yahoo.com^ (easyprivacy.txt: 7478) +.analytics.yahoo.com +# ||analytics.whatculture.com^ (easyprivacy.txt: 7477) +.analytics.whatculture.com +# ||analytics.wetpaint.me^ (easyprivacy.txt: 7476) +.analytics.wetpaint.me +# ||analytics.us.archive.org^ (easyprivacy.txt: 7475) +.analytics.us.archive.org +# ||analytics.upworthy.com^ (easyprivacy.txt: 7474) +.analytics.upworthy.com +# ||analytics.twitter.com^ (easyprivacy.txt: 7473) +.analytics.twitter.com +# ||analytics.thenest.com^ (easyprivacy.txt: 7472) +.analytics.thenest.com +# ||analytics.teespring.com^ (easyprivacy.txt: 7471) +.analytics.teespring.com +# ||analytics.services.distractify.com^ (easyprivacy.txt: 7470) +.analytics.services.distractify.com +# ||analytics.omgpop.com/log (easyprivacy.txt: 7469) +.analytics.omgpop.com/log +# ||analytics.newsinc.com^ (easyprivacy.txt: 7468) +.analytics.newsinc.com +# ||analytics.msnbc.msn.com^ (easyprivacy.txt: 7467) +.analytics.msnbc.msn.com +# ||analytics.mindjolt.com^ (easyprivacy.txt: 7466) +.analytics.mindjolt.com +# ||analytics.localytics.com^ (easyprivacy.txt: 7465) +.analytics.localytics.com +# ||analytics.ifood.tv^ (easyprivacy.txt: 7464) +.analytics.ifood.tv +# ||analytics.gorillanation.com^ (easyprivacy.txt: 7463) +.analytics.gorillanation.com +# ||analytics.go.com^ (easyprivacy.txt: 7462) +.analytics.go.com +# ||analytics.femalefirst.co.uk^ (easyprivacy.txt: 7461) +.analytics.femalefirst.co.uk +# ||analytics.bloomberg.com^ (easyprivacy.txt: 7460) +.analytics.bloomberg.com +# ||analytics.archive.org^ (easyprivacy.txt: 7459) +.analytics.archive.org +# ||analytics.adfreetime.com^ (easyprivacy.txt: 7458) +.analytics.adfreetime.com +# ||analytic.imlive.com^ (easyprivacy.txt: 7457) +.analytic.imlive.com +# ||analysis.focalprice.com^ (easyprivacy.txt: 7456) +.analysis.focalprice.com +# ||amy.gs/track/ (easyprivacy.txt: 7455) +.amy.gs/track/ +# ||amp.virginmedia.com^ (easyprivacy.txt: 7454) +.amp.virginmedia.com +# ||amd.com/us/as/vwo/vwo_ (easyprivacy.txt: 7453) +.amd.com/us/as/vwo/vwo_ +# ||amcnets.com/cgi-bin/true-ip.cgi (easyprivacy.txt: 7452) +.amcnets.com/cgi-bin/true-ip\.cgi +# ||amazonsupply.com/uedata? (easyprivacy.txt: 7451) +.amazonsupply.com/uedata\? +# ||amazonaws.com^*/pzyche.js (easyprivacy.txt: 7450) +.amazonaws.com/.*/pzyche\.js +# ||amazonaws.com/tracking.relead.js (easyprivacy.txt: 7449) +.amazonaws.com/tracking\.relead\.js +# ||amazonaws.com/beacon/vtpixpc.gif? (easyprivacy.txt: 7448) +.amazonaws.com/beacon/vtpixpc\.gif\? +# ||amazon.com^*/vap-metrics/ (easyprivacy.txt: 7447) +.amazon.com/.*/vap-metrics/ +# ||amazon.com^*/amazon-clicks/ (easyprivacy.txt: 7446) +.amazon.com/.*/amazon-clicks/ +# ||amazon.com/gp/yourstore/recs/ (easyprivacy.txt: 7445) +.amazon.com/gp/yourstore/recs/ +# ||amazon.com/gp/forum/email/tracking? (easyprivacy.txt: 7444) +.amazon.com/gp/forum/email/tracking\? +# ||amazon.com/clog/ (easyprivacy.txt: 7443) +.amazon.com/clog/ +# ||amazon.*/uedata/ (easyprivacy.txt: 7442) +.amazon.*./(.*/)?uedata/ +# ||alot.com/tb/cookiewriter.php? (easyprivacy.txt: 7441) +.alot.com/tb/cookiewriter\.php\? +# ||alot.com/js/tracking.js (easyprivacy.txt: 7440) +.alot.com/js/tracking\.js +# ||allvoices.com/track_page (easyprivacy.txt: 7439) +.allvoices.com/track_page +# ||allmovieportal.com/hostpagescript.js (easyprivacy.txt: 7438) +.allmovieportal.com/hostpagescript\.js +# ||allmodern.com^*/sessioned_reqs.asp? (easyprivacy.txt: 7437) +.allmodern.com/.*/sessioned_reqs\.asp\? +# ||alliance-leicester.co.uk/assets/jslib/sitetracker21.js (easyprivacy.txt: 7436) +.alliance-leicester.co.uk/assets/jslib/sitetracker21\.js +# ||allexperts.com/px/ (easyprivacy.txt: 7435) +.allexperts.com/px/ +# ||allcarpictures.com/stat/ (easyprivacy.txt: 7434) +.allcarpictures.com/stat/ +# ||allafrica.com^*/s_trans_nc.gif? (easyprivacy.txt: 7433) +.allafrica.com/.*/s_trans_nc\.gif\? +# ||allafrica.com^*/s_trans.gif? (easyprivacy.txt: 7432) +.allafrica.com/.*/s_trans\.gif\? +# ||allafrica.com^*/s-trans.gif? (easyprivacy.txt: 7431) +.allafrica.com/.*/s-trans\.gif\? +# ||allafrica.com/img/static/s_trans_nc.gif (easyprivacy.txt: 7430) +.allafrica.com/img/static/s_trans_nc\.gif +# ||alipay.com/web/bi.do?ref= (easyprivacy.txt: 7429) +.alipay.com/web/bi\.do\?ref= +# ||aliexpress.com/js/beacon_ (easyprivacy.txt: 7428) +.aliexpress.com/js/beacon_ +# ||alibi.com/tracker.gif? (easyprivacy.txt: 7427) +.alibi.com/tracker\.gif\? +# ||alibaba.com/js/beacon_ (easyprivacy.txt: 7426) +.alibaba.com/js/beacon_ +# ||alarabiya.net^*/googleid.js (easyprivacy.txt: 7425) +.alarabiya.net/.*/googleid\.js +# ||alarabiya.net/track_content_ (easyprivacy.txt: 7424) +.alarabiya.net/track_content_ +# ||akamaihd.net/pixelkabam/ (easyprivacy.txt: 7423) +.akamaihd.net/pixelkabam/ +# ||akamai.net^*/button.clickability.com/ (easyprivacy.txt: 7422) +.akamai.net/.*/button\.clickability\.com/ +# ||airspacemag.com/g/g/button/ (easyprivacy.txt: 7421) +.airspacemag.com/g/g/button/ +# ||airfrance.com/s/?tcs= (easyprivacy.txt: 7420) +.airfrance.com/s/\?tcs= +# ||agoda.net/js/abtest/analytics.js (easyprivacy.txt: 7419) +.agoda.net/js/abtest/analytics\.js +# ||agendize.com/analytics.js (easyprivacy.txt: 7418) +.agendize.com/analytics\.js +# ||afterdawn.com/views.cfm? (easyprivacy.txt: 7417) +.afterdawn.com/views\.cfm\? +# ||affiliates.treasureisland.com^ (easyprivacy.txt: 7416) +.affiliates.treasureisland.com +# ||affiliates.myfax.com^ (easyprivacy.txt: 7415) +.affiliates.myfax.com +# ||affiliates.mozy.com^ (easyprivacy.txt: 7414) +.affiliates.mozy.com +# ||affiliates.londonmarketing.com^ (easyprivacy.txt: 7413) +.affiliates.londonmarketing.com +# ||affiliates.genealogybank.com^ (easyprivacy.txt: 7412) +.affiliates.genealogybank.com +# ||affiliate.resellerclub.com^ (easyprivacy.txt: 7411) +.affiliate.resellerclub.com +# ||affiliate.productreview.com.au^ (easyprivacy.txt: 7410) +.affiliate.productreview.com.au +# ||affiliate.mercola.com^ (easyprivacy.txt: 7409) +.affiliate.mercola.com +# ||adwiretracker.fwix.com^ (easyprivacy.txt: 7407) +.adwiretracker.fwix.com +# ||advfn.com/space.gif? (easyprivacy.txt: 7406) +.advfn.com/space\.gif\? +# ||advancedtracker.appspot.com^ (easyprivacy.txt: 7405) +.advancedtracker.appspot.com +# ||advancedmp3players.co.uk/support/visitor/index.php? (easyprivacy.txt: 7404) +.advancedmp3players.co.uk/support/visitor/index\.php\? +# ||adv.drtuber.com^ (easyprivacy.txt: 7403) +.adv.drtuber.com +# ||adprimemedia.com^*/video_report/videoReport.php? (easyprivacy.txt: 7402) +.adprimemedia.com/.*/video_report/videoReport\.php\? +# ||adprimemedia.com^*/video_report/attemptAdReport.php? (easyprivacy.txt: 7401) +.adprimemedia.com/.*/video_report/attemptAdReport\.php\? +# ||adidas.com^*/analytics/ (easyprivacy.txt: 7400) +.adidas.com/.*/analytics/ +# ||adidas.com/analytics/ (easyprivacy.txt: 7399) +.adidas.com/analytics/ +# ||adguru.guruji.com^ (easyprivacy.txt: 7398) +.adguru.guruji.com +# ||adf.ly/omni*.swf (easyprivacy.txt: 7397) +.adf.ly/omni.*\.swf +# ||adapd.com/addon/upixel/ (easyprivacy.txt: 7396) +.adapd.com/addon/upixel/ +# ||ad2links.com/lpajax.php? (easyprivacy.txt: 7395) +.ad2links.com/lpajax\.php\? +# ||acura.ca/_Global/js/includes/tracker.js (easyprivacy.txt: 7394) +.acura.ca/_Global/js/includes/tracker\.js +# ||activity.homescape.com^ (easyprivacy.txt: 7393) +.activity.homescape.com +# ||activity.frequency.com^ (easyprivacy.txt: 7392) +.activity.frequency.com +# ||acronymfinder.com/~/st/af.js (easyprivacy.txt: 7391) +.acronymfinder.com/~/st/af\.js +# ||acookie.alibaba.com^ (easyprivacy.txt: 7390) +.acookie.alibaba.com +# ||aclu.org/aclu_statistics_image.php (easyprivacy.txt: 7389) +.aclu.org/aclu_statistics_image\.php +# ||aclst.com/ping.php? (easyprivacy.txt: 7388) +.aclst.com/ping\.php\? +# ||accuterm.com/data/stat.js (easyprivacy.txt: 7387) +.accuterm.com/data/stat\.js +# ||accuratefiles.com/stat (easyprivacy.txt: 7386) +.accuratefiles.com/stat +# ||accuradio.com/static/track/ (easyprivacy.txt: 7385) +.accuradio.com/static/track/ +# ||accountnow.com/SyslogWriter.ashx (easyprivacy.txt: 7384) +.accountnow.com/SyslogWriter\.ashx +# ||academia.edu/record_hit (easyprivacy.txt: 7383) +.academia.edu/record_hit +# ||about.me/wf/open? (easyprivacy.txt: 7382) +.about.me/wf/open\? +# ||abebooks.com/timer.gif? (easyprivacy.txt: 7381) +.abebooks.com/timer\.gif\? +# ||abc.net.au^*/stats/ (easyprivacy.txt: 7380) +.abc.net.au/.*/stats/ +# ||abc.net.au/counters/ (easyprivacy.txt: 7379) +.abc.net.au/counters/ +# ||a7.org/infol.php? (easyprivacy.txt: 7378) +.a7.org/infol\.php\? +# ||a.jango.com^ (easyprivacy.txt: 7377) +.a.jango.com +# ||a.huluad.com/beacons/ (easyprivacy.txt: 7376) +.a.huluad.com/beacons/ +# ||9msn.com.au^*.tracking.udc. (easyprivacy.txt: 7375) +.9msn.com.au/.*\.tracking\.udc\. +# ||9msn.com.au/share/com/js/fb_google_intercept.js (easyprivacy.txt: 7374) +.9msn.com.au/share/com/js/fb_google_intercept\.js +# ||79.125.21.168/i.gif? (easyprivacy.txt: 7372) +.79.125.21.168/i\.gif\? +# ||6waves.com/trker/ (easyprivacy.txt: 7371) +.6waves.com/trker/ +# ||5min.com/PSRs? (easyprivacy.txt: 7369) +.5min.com/PSRs\? +# ||5min.com/PSRq? (easyprivacy.txt: 7368) +.5min.com/PSRq\? +# ||4info.com/alert/listeners/ (easyprivacy.txt: 7366) +.4info.com/alert/listeners/ +# ||4hds.com/js/camstats.js (easyprivacy.txt: 7365) +.4hds.com/js/camstats\.js +# ||3dcartstores.com/3droi/monstertrack.asp (easyprivacy.txt: 7364) +.3dcartstores.com/3droi/monstertrack\.asp +# ||37signals.com/ga.js (easyprivacy.txt: 7363) +.37signals.com/ga\.js +# ||24hourfitness.com/includes/script/siteTracking.js (easyprivacy.txt: 7362) +.24hourfitness.com/includes/script/siteTracking\.js +# ||24caratleeds.co.uk/tr/laredoute/carat_laredoute_ (easyprivacy.txt: 7361) +.24caratleeds.co.uk/tr/laredoute/carat_laredoute_ +# ||1e400.net/tracking.js (easyprivacy.txt: 7359) +.1e400.net/tracking\.js +# ||192.com/log/ (easyprivacy.txt: 7357) +.192.com/log/ +# ||123rf.com/tk/ (easyprivacy.txt: 7356) +.123rf.com/tk/ +# ||123rf.com/j/ga.js (easyprivacy.txt: 7355) +.123rf.com/j/ga\.js +# ||123greetings.com/usr-bin/view_sent.pl? (easyprivacy.txt: 7354) +.123greetings.com/usr-bin/view_sent\.pl\? +# ||top.zp.ua/counter/ (easyprivacy.txt: 7349) +.top.zp.ua/counter/ +# ||mgz.com.ua/counter.php? (easyprivacy.txt: 7348) +.mgz.com.ua/counter\.php\? +# ||metalportal.com.ua/count.php? (easyprivacy.txt: 7347) +.metalportal.com.ua/count\.php\? +# ||counter.opinion.com.ua^ (easyprivacy.txt: 7346) +.counter.opinion.com.ua +# ||stats.dominoplaza.com^ (easyprivacy.txt: 7343) +.stats.dominoplaza.com +# ||counter.mtgnewmedia.se^ (easyprivacy.txt: 7342) +.counter.mtgnewmedia.se +# ||collector.schibsted.io^ (easyprivacy.txt: 7341) +.collector.schibsted.io +# ||cis.schibsted.com^ (easyprivacy.txt: 7340) +.cis.schibsted.com +# ||tracker.lgcontent.cl^ (easyprivacy.txt: 7337) +.tracker.lgcontent.cl +# ||track.bluecompany.cl^ (easyprivacy.txt: 7336) +.track.bluecompany.cl +# ||stats.miarroba.info^ (easyprivacy.txt: 7335) +.stats.miarroba.info +# ||stats.lnol.com.ar^ (easyprivacy.txt: 7334) +.stats.lnol.com.ar +# ||reachandrich.antevenio.com^ (easyprivacy.txt: 7333) +.reachandrich.antevenio.com +# ||maik.ff-bt.net^ (easyprivacy.txt: 7332) +.maik.ff-bt.net +# ||hits.eluniversal.com.mx^ (easyprivacy.txt: 7330) +.hits.eluniversal.com.mx +# ||epimg.net/js/vr/vrs. (easyprivacy.txt: 7329) +.epimg.net/js/vr/vrs\. +# ||contadores.miarroba.es^ (easyprivacy.txt: 7328) +.contadores.miarroba.es +# ||contadores.miarroba.com^ (easyprivacy.txt: 7327) +.contadores.miarroba.com +# ||interseek.si^*/visit.js (easyprivacy.txt: 7325) +.interseek.si/.*/visit\.js +# ||stat.ringier.sk^ (easyprivacy.txt: 7323) +.stat.ringier.sk +# ||events.ocdn.eu^ (easyprivacy.txt: 7321) +.events.ocdn.eu +# ||csr.onet.pl^ (easyprivacy.txt: 7320) +.csr.onet.pl +# ||clk.onet.pl^ (easyprivacy.txt: 7319) +.clk.onet.pl +# ||zahodi-ka.ru^*/schet.cgi? (easyprivacy.txt: 7317) +.zahodi-ka.ru/.*/schet\.cgi\? +# ||zahodi-ka.ru/ic/index_cnt.fcgi? (easyprivacy.txt: 7316) +.zahodi-ka.ru/ic/index_cnt\.fcgi\? +# ||yandex.ru/metrika/ (easyprivacy.txt: 7315) +.yandex.ru/metrika/ +# ||yandex.ru/cycounter? (easyprivacy.txt: 7314) +.yandex.ru/cycounter\? +# ||yandeg.ru/count/ (easyprivacy.txt: 7313) +.yandeg.ru/count/ +# ||xn--e1aaipcdgnfsn.su^*/counter.php (easyprivacy.txt: 7312) +.xn--e1aaipcdgnfsn.su/.*/counter\.php +# ||wmtools.ru/counter.php? (easyprivacy.txt: 7311) +.wmtools.ru/counter\.php\? +# ||wapson.ru/counter.php? (easyprivacy.txt: 7309) +.wapson.ru/counter\.php\? +# ||viewstat.promoblocks.ru^ (easyprivacy.txt: 7308) +.viewstat.promoblocks.ru +# ||uptolike.com/widgets/*/imp? (easyprivacy.txt: 7307) +.uptolike.com/widgets/.*/imp\? +# ||upstats.yadro.ru^ (easyprivacy.txt: 7306) +.upstats.yadro.ru +# ||ulogin.ru/js/stats.js (easyprivacy.txt: 7305) +.ulogin.ru/js/stats\.js +# ||traktor.ru^*/counter.php? (easyprivacy.txt: 7304) +.traktor.ru/.*/counter\.php\? +# ||track.rtb-media.ru^ (easyprivacy.txt: 7303) +.track.rtb-media.ru +# ||track.revolvermarketing.ru^ (easyprivacy.txt: 7302) +.track.revolvermarketing.ru +# ||top.sec.uz^ (easyprivacy.txt: 7301) +.top.sec.uz +# ||top.elec.ru^ (easyprivacy.txt: 7300) +.top.elec.ru +# ||top.bur-bur.ru^ (easyprivacy.txt: 7299) +.top.bur-bur.ru +# ||tbe.tom.ru^ (easyprivacy.txt: 7298) +.tbe.tom.ru +# ||target.smi2.net^ (easyprivacy.txt: 7297) +.target.smi2.net +# ||t.pusk.ru^ (easyprivacy.txt: 7296) +.t.pusk.ru +# ||stats.internet-yadro.com^ (easyprivacy.txt: 7295) +.stats.internet-yadro.com +# ||stat.tvigle.ru^ (easyprivacy.txt: 7294) +.stat.tvigle.ru +# ||stat.rum.cdnvideo.ru^ (easyprivacy.txt: 7293) +.stat.rum.cdnvideo.ru +# ||stat.radar.imgsmail.ru^ (easyprivacy.txt: 7292) +.stat.radar.imgsmail.ru +# ||stat-counter.tass-online.ru^ (easyprivacy.txt: 7291) +.stat-counter.tass-online.ru +# ||stat-22.medialand.ru^ (easyprivacy.txt: 7290) +.stat-22.medialand.ru +# ||stainlesssteel.ru/counter.php? (easyprivacy.txt: 7289) +.stainlesssteel.ru/counter\.php\? +# ||sishik.ru/counter.php? (easyprivacy.txt: 7288) +.sishik.ru/counter\.php\? +# ||service-stat.tbn.ru^ (easyprivacy.txt: 7287) +.service-stat.tbn.ru +# ||scounter.rambler.ru^ (easyprivacy.txt: 7285) +.scounter.rambler.ru +# ||scnt.rambler.ru^ (easyprivacy.txt: 7284) +.scnt.rambler.ru +# ||s.holm.ru/stat/ (easyprivacy.txt: 7283) +.s.holm.ru/stat/ +# ||s.agava.ru^ (easyprivacy.txt: 7282) +.s.agava.ru +# ||rustopweb.ru/cnt.php? (easyprivacy.txt: 7281) +.rustopweb.ru/cnt\.php\? +# ||recordvideo.me/1x1.png? (easyprivacy.txt: 7280) +.recordvideo.me/1x1\.png\? +# ||rbc.magna.ru^ (easyprivacy.txt: 7279) +.rbc.magna.ru +# ||rambler.ru/counter.js (easyprivacy.txt: 7278) +.rambler.ru/counter\.js +# ||properm.ru/top/counter_new.php? (easyprivacy.txt: 7277) +.properm.ru/top/counter_new\.php\? +# ||promworld.ru^*/counter.php? (easyprivacy.txt: 7276) +.promworld.ru/.*/counter\.php\? +# ||prompages.ru/top/ (easyprivacy.txt: 7275) +.prompages.ru/top/ +# ||pluso.ru/ping.php? (easyprivacy.txt: 7274) +.pluso.ru/ping\.php\? +# ||pluso.ru/counter.php? (easyprivacy.txt: 7273) +.pluso.ru/counter\.php\? +# ||penza-online.ru^*/userstats.pl? (easyprivacy.txt: 7272) +.penza-online.ru/.*/userstats\.pl\? +# ||optimizavr.ru/counter.php? (easyprivacy.txt: 7271) +.optimizavr.ru/counter\.php\? +# ||open.ua/stat/ (easyprivacy.txt: 7270) +.open.ua/stat/ +# ||onlines.su/counter.php? (easyprivacy.txt: 7269) +.onlines.su/counter\.php\? +# ||odessaaccommodations.com/counter.php (easyprivacy.txt: 7268) +.odessaaccommodations.com/counter\.php +# ||niknok.ru/count.asp? (easyprivacy.txt: 7267) +.niknok.ru/count\.asp\? +# ||myrealty.su/counter/ (easyprivacy.txt: 7266) +.myrealty.su/counter/ +# ||mymetal.ru/counter/ (easyprivacy.txt: 7265) +.mymetal.ru/counter/ +# ||mymed.su/counter/ (easyprivacy.txt: 7264) +.mymed.su/counter/ +# ||montblanc.rambler.ru^ (easyprivacy.txt: 7263) +.montblanc.rambler.ru +# ||metka.ru/counter/ (easyprivacy.txt: 7261) +.metka.ru/counter/ +# ||medorgs.ru/js/counterlog_img.js (easyprivacy.txt: 7260) +.medorgs.ru/js/counterlog_img\.js +# ||mediaplus.fm/cntr.php? (easyprivacy.txt: 7259) +.mediaplus.fm/cntr\.php\? +# ||linestudio.ru/counter/ (easyprivacy.txt: 7258) +.linestudio.ru/counter/ +# ||kvartirant.ru/counter.php? (easyprivacy.txt: 7257) +.kvartirant.ru/counter\.php\? +# ||karelia.info/counter/ (easyprivacy.txt: 7256) +.karelia.info/counter/ +# ||izhevskinfo.ru/count/ (easyprivacy.txt: 7255) +.izhevskinfo.ru/count/ +# ||inforotor.net/rotor/ (easyprivacy.txt: 7254) +.inforotor.net/rotor/ +# ||infopolit.com/counter/ (easyprivacy.txt: 7253) +.infopolit.com/counter/ +# ||ifolder.ru/stat/? (easyprivacy.txt: 7252) +.ifolder.ru/stat/\? +# ||gde.ru/isapi/tracker.dll? (easyprivacy.txt: 7250) +.gde.ru/isapi/tracker\.dll\? +# ||gainings.biz/counter.php? (easyprivacy.txt: 7249) +.gainings.biz/counter\.php\? +# ||emoment.net/cnt/ (easyprivacy.txt: 7248) +.emoment.net/cnt/ +# ||dp.ru/counter.gif? (easyprivacy.txt: 7247) +.dp.ru/counter\.gif\? +# ||counter.wapstart.ru^ (easyprivacy.txt: 7246) +.counter.wapstart.ru +# ||counter.tovarro.com^ (easyprivacy.txt: 7245) +.counter.tovarro.com +# ||counter.rian.ru^ (easyprivacy.txt: 7244) +.counter.rian.ru +# ||counter.pr-cy.ru^ (easyprivacy.txt: 7243) +.counter.pr-cy.ru +# ||counter.photopulse.ru^ (easyprivacy.txt: 7242) +.counter.photopulse.ru +# ||counter.nn.ru^ (easyprivacy.txt: 7241) +.counter.nn.ru +# ||counter.megaindex.ru^ (easyprivacy.txt: 7240) +.counter.megaindex.ru +# ||counter.amik.ru^ (easyprivacy.txt: 7239) +.counter.amik.ru +# ||count.yandeg.ru^ (easyprivacy.txt: 7238) +.count.yandeg.ru +# ||cnt.rate.ru^ (easyprivacy.txt: 7237) +.cnt.rate.ru +# ||cnt.rambler.ru^ (easyprivacy.txt: 7236) +.cnt.rambler.ru +# ||cnt.nov.ru^ (easyprivacy.txt: 7235) +.cnt.nov.ru +# ||cnt.logoslovo.ru^ (easyprivacy.txt: 7234) +.cnt.logoslovo.ru +# ||cnstats.cdev.eu^ (easyprivacy.txt: 7233) +.cnstats.cdev.eu +# ||climatecontrol.ru/counters/ (easyprivacy.txt: 7232) +.climatecontrol.ru/counters/ +# ||c.bigmir.net^ (easyprivacy.txt: 7230) +.c.bigmir.net +# ||bs.yandex.ru^ (easyprivacy.txt: 7229) +.bs.yandex.ru +# ||bioraywaterrank.ru/count/ (easyprivacy.txt: 7228) +.bioraywaterrank.ru/count/ +# ||bigday.ru/counter.php? (easyprivacy.txt: 7227) +.bigday.ru/counter\.php\? +# ||awaps.yandex.ru^ (easyprivacy.txt: 7226) +.awaps.yandex.ru +# ||autoretro.com.ua/smtop/ (easyprivacy.txt: 7225) +.autoretro.com.ua/smtop/ +# ||anycent.com/analytics/ (easyprivacy.txt: 7224) +.anycent.com/analytics/ +# ||all-top.ru/cgi-bin/topcount.cgi? (easyprivacy.txt: 7223) +.all-top.ru/cgi-bin/topcount\.cgi\? +# ||agates.ru/counters/ (easyprivacy.txt: 7222) +.agates.ru/counters/ +# ||adlik.akavita.com/bin/lik? (easyprivacy.txt: 7221) +.adlik.akavita.com/bin/lik\? +# ||1in.kz/counter? (easyprivacy.txt: 7219) +.1in.kz/counter\? +# ||top.skyzone.ro^ (easyprivacy.txt: 7217) +.top.skyzone.ro +# ||xl.pt/api/stats.ashx? (easyprivacy.txt: 7214) +.xl.pt/api/stats\.ashx\? +# ||webstats.sapo.pt^ (easyprivacy.txt: 7213) +.webstats.sapo.pt +# ||track.e7r.com.br^ (easyprivacy.txt: 7212) +.track.e7r.com.br +# ||terra.com.br/metrics/ (easyprivacy.txt: 7211) +.terra.com.br/metrics/ +# ||statig.com.br/pub/setCookie.js? (easyprivacy.txt: 7210) +.statig.com.br/pub/setCookie\.js\? +# ||jsuol.com/rm/clicklogger_ (easyprivacy.txt: 7208) +.jsuol.com/rm/clicklogger_ +# ||hitserver.ibope.com.br^ (easyprivacy.txt: 7207) +.hitserver.ibope.com.br +# ||contadorgratis.web-kit.org^ (easyprivacy.txt: 7206) +.contadorgratis.web-kit.org +# ||wymiana.org/stat/ (easyprivacy.txt: 7204) +.wymiana.org/stat/ +# ||tracking.novem.pl^ (easyprivacy.txt: 7203) +.tracking.novem.pl +# ||statystyki.panelek.com^ (easyprivacy.txt: 7202) +.statystyki.panelek.com +# ||stats.media.onet.pl^ (easyprivacy.txt: 7201) +.stats.media.onet.pl +# ||stats.asp24.pl^ (easyprivacy.txt: 7200) +.stats.asp24.pl +# ||liczniki.org/hit.php (easyprivacy.txt: 7199) +.liczniki.org/hit\.php +# ||cafenews.pl/mpl/static/static.js? (easyprivacy.txt: 7198) +.cafenews.pl/mpl/static/static\.js\? +# ||webhit.snd.no^ (easyprivacy.txt: 7196) +.webhit.snd.no +# ||engage-cdn.schibsted.media^ (easyprivacy.txt: 7195) +.engage-cdn.schibsted.media +# ||hits.sys.lv^ (easyprivacy.txt: 7189) +.hits.sys.lv +# ||counter.hackers.lv^ (easyprivacy.txt: 7188) +.counter.hackers.lv +# ||naver.net/wcslog.js (easyprivacy.txt: 7186) +.naver.net/wcslog\.js +# ||cafe24.com/weblog.js (easyprivacy.txt: 7185) +.cafe24.com/weblog\.js +# ||yahoo.co.jp/js/s_retargeting.js (easyprivacy.txt: 7182) +.yahoo.co.jp/js/s_retargeting\.js +# ||yahoo.co.jp/js/retargeting.js (easyprivacy.txt: 7181) +.yahoo.co.jp/js/retargeting\.js +# ||yahoo-search.jp/img/bcn.gif? (easyprivacy.txt: 7180) +.yahoo-search.jp/img/bcn\.gif\? +# ||trck.dlpo.jp^ (easyprivacy.txt: 7177) +.trck.dlpo.jp +# ||seesaa.jp/ot_square.pl? (easyprivacy.txt: 7176) +.seesaa.jp/ot_square\.pl\? +# ||rd.rakuten.co.jp^ (easyprivacy.txt: 7175) +.rd.rakuten.co.jp +# ||otoshiana.com/ufo/ (easyprivacy.txt: 7174) +.otoshiana.com/ufo/ +# ||mofa.go.jp^*/count.cgi? (easyprivacy.txt: 7173) +.mofa.go.jp/.*/count\.cgi\? +# ||lcs.livedoor.net^ (easyprivacy.txt: 7172) +.lcs.livedoor.net +# ||l.popin.cc^ (easyprivacy.txt: 7171) +.l.popin.cc +# ||counter2.blog.livedoor.com^ (easyprivacy.txt: 7169) +.counter2.blog.livedoor.com +# ||analyzer51.fc2.com^ (easyprivacy.txt: 7167) +.analyzer51.fc2.com +# ||analysis.shinobi.jp^ (easyprivacy.txt: 7166) +.analysis.shinobi.jp +# ||wmtools.it/wmtcounter.php? (easyprivacy.txt: 7163) +.wmtools.it/wmtcounter\.php\? +# ||websolutions.it/statistiche/ (easyprivacy.txt: 7162) +.websolutions.it/statistiche/ +# ||webbificio.com/wm.asp? (easyprivacy.txt: 7161) +.webbificio.com/wm\.asp\? +# ||webbificio.com/add.asp? (easyprivacy.txt: 7160) +.webbificio.com/add\.asp\? +# ||ts.blogo.it^ (easyprivacy.txt: 7159) +.ts.blogo.it +# ||tracy.sadv.dadapro.com^ (easyprivacy.txt: 7158) +.tracy.sadv.dadapro.com +# ||tracks.arubamediamarketing.it^ (easyprivacy.txt: 7157) +.tracks.arubamediamarketing.it +# ||tracking.conversionlab.it^ (easyprivacy.txt: 7156) +.tracking.conversionlab.it +# ||tracking.conversion-lab.it^ (easyprivacy.txt: 7155) +.tracking.conversion-lab.it +# ||tracker.bestshopping.com^ (easyprivacy.txt: 7154) +.tracker.bestshopping.com +# ||track.youniversalmedia.com^ (easyprivacy.txt: 7153) +.track.youniversalmedia.com +# ||track.adintend.com^ (easyprivacy.txt: 7152) +.track.adintend.com +# ||tr.bt.matrixspa.it^ (easyprivacy.txt: 7151) +.tr.bt.matrixspa.it +# ||top100.tuttoperinternet.it^ (easyprivacy.txt: 7150) +.top100.tuttoperinternet.it +# ||top100.mrwebmaster.it^ (easyprivacy.txt: 7149) +.top100.mrwebmaster.it +# ||stats2.*.fdnames.com^ (easyprivacy.txt: 7148) +.stats2.*./.*\.fdnames\.com[^\w%.-] +.stats2.*.fdnames.com +# ||stats.technopia.it^ (easyprivacy.txt: 7147) +.stats.technopia.it +# ||stats.rcsobjects.it^ (easyprivacy.txt: 7146) +.stats.rcsobjects.it +# ||stats.itsol.it^ (easyprivacy.txt: 7145) +.stats.itsol.it +# ||stat.webtool.it^ (easyprivacy.txt: 7144) +.stat.webtool.it +# ||stat.freetool.it^ (easyprivacy.txt: 7143) +.stat.freetool.it +# ||stat.acca.it^ (easyprivacy.txt: 7142) +.stat.acca.it +# ||shinystat.lvlar.com^ (easyprivacy.txt: 7141) +.shinystat.lvlar.com +# ||sembox.it/js/sembox-tracking.js (easyprivacy.txt: 7140) +.sembox.it/js/sembox-tracking\.js +# ||rd.alice.it^ (easyprivacy.txt: 7139) +.rd.alice.it +# ||rcsmetrics.it^ (easyprivacy.txt: 7138) +.rcsmetrics.it +# ||quinet.it/counter/ (easyprivacy.txt: 7137) +.quinet.it/counter/ +# ||plug.it^*/tracking_ (easyprivacy.txt: 7136) +.plug.it/.*/tracking_ +# ||plug.it/tracks/ (easyprivacy.txt: 7135) +.plug.it/tracks/ +# ||noicattolici.it/x_visite/ (easyprivacy.txt: 7134) +.noicattolici.it/x_visite/ +# ||net-parade.it/tracker/ (easyprivacy.txt: 7133) +.net-parade.it/tracker/ +# ||nanostats.nanopress.it^ (easyprivacy.txt: 7132) +.nanostats.nanopress.it +# ||nanopress.it/lab.js (easyprivacy.txt: 7131) +.nanopress.it/lab\.js +# ||mytictac.com^*/pointeur.gif? (easyprivacy.txt: 7130) +.mytictac.com/.*/pointeur\.gif\? +# ||mrwebmaster.it/work/stats.php? (easyprivacy.txt: 7129) +.mrwebmaster.it/work/stats\.php\? +# ||mibatech.com/track/ (easyprivacy.txt: 7128) +.mibatech.com/track/ +# ||log.superweb.ws^ (easyprivacy.txt: 7127) +.log.superweb.ws +# ||livestats.matrix.it^ (easyprivacy.txt: 7126) +.livestats.matrix.it +# ||httdev.it/e/c? (easyprivacy.txt: 7125) +.httdev.it/e/c\? +# ||glomera.com/stats (easyprivacy.txt: 7124) +.glomera.com/stats +# ||gazzettaobjects.it^*/tracking/ (easyprivacy.txt: 7123) +.gazzettaobjects.it/.*/tracking/ +# ||evnt.iol.it^ (easyprivacy.txt: 7121) +.evnt.iol.it +# ||eageweb.com/stats.php (easyprivacy.txt: 7120) +.eageweb.com/stats\.php +# ||eageweb.com/count2.php? (easyprivacy.txt: 7119) +.eageweb.com/count2\.php\? +# ||eageweb.com/count.php? (easyprivacy.txt: 7118) +.eageweb.com/count\.php\? +# ||eage.it/count2.php? (easyprivacy.txt: 7117) +.eage.it/count2\.php\? +# ||diritalia.com^*/seosensor.js (easyprivacy.txt: 7116) +.diritalia.com/.*/seosensor\.js +# ||digiland.it/count.cgi? (easyprivacy.txt: 7115) +.digiland.it/count\.cgi\? +# ||dd3p.com/sensor/ddsense.aspx? (easyprivacy.txt: 7114) +.dd3p.com/sensor/ddsense\.aspx\? +# ||counter.ksm.it^ (easyprivacy.txt: 7113) +.counter.ksm.it +# ||corriereobjects.it^*/tracking/ (easyprivacy.txt: 7112) +.corriereobjects.it/.*/tracking/ +# ||contatore-di-visite.campusanuncios.com^ (easyprivacy.txt: 7111) +.contatore-di-visite.campusanuncios.com +# ||click.kataweb.it^ (easyprivacy.txt: 7110) +.click.kataweb.it +# ||bstracker.blogspirit.net^ (easyprivacy.txt: 7109) +.bstracker.blogspirit.net +# ||audienceserver.aws.forebase.com^ (easyprivacy.txt: 7108) +.audienceserver.aws.forebase.com +# ||aruba.it/servlet/counterserver? (easyprivacy.txt: 7107) +.aruba.it/servlet/counterserver\? +# ||analytics.linkwelove.com^ (easyprivacy.txt: 7106) +.analytics.linkwelove.com +# ||analytics.digitouch.it^ (easyprivacy.txt: 7105) +.analytics.digitouch.it +# ||alice.it/cnt/ (easyprivacy.txt: 7104) +.alice.it/cnt/ +# ||91.196.216.64^ (easyprivacy.txt: 7103) +.91.196.216.64 +# ||4me.it^*/incrementVisits_get? (easyprivacy.txt: 7102) +.4me.it/.*/incrementVisits_get\? +# ||videostat.index.hu^ (easyprivacy.txt: 7100) +.videostat.index.hu +# ||videostat-new.index.hu^ (easyprivacy.txt: 7099) +.videostat-new.index.hu +# ||pagerank.g-easy.hu^ (easyprivacy.txt: 7098) +.pagerank.g-easy.hu +# ||gpr.hu/pr.pr? (easyprivacy.txt: 7097) +.gpr.hu/pr\.pr\? +# ||walla.co.il/stats/ (easyprivacy.txt: 7095) +.walla.co.il/stats/ +# ||stats.e-go.gr^ (easyprivacy.txt: 7093) +.stats.e-go.gr +# ||analyticsv2.dol.gr^ (easyprivacy.txt: 7092) +.analyticsv2.dol.gr +# ||analytics.dol.gr^ (easyprivacy.txt: 7091) +.analytics.dol.gr +# ||links.boom.ge^ (easyprivacy.txt: 7089) +.links.boom.ge +# ||sestatic.fi^*/zig.js (easyprivacy.txt: 7086) +.sestatic.fi/.*/zig\.js +# ||log.ee/count.php? (easyprivacy.txt: 7083) +.log.ee/count\.php\? +# ||statistics.rbi-nl.com^ (easyprivacy.txt: 7080) +.statistics.rbi-nl.com +# ||marktplaats.net/cnt/ (easyprivacy.txt: 7079) +.marktplaats.net/cnt/ +# ||cookies.reedbusiness.nl^ (easyprivacy.txt: 7077) +.cookies.reedbusiness.nl +# ||c.pebblemedia.be^ (easyprivacy.txt: 7076) +.c.pebblemedia.be +# ||bbvms.com/zone/js/zonestats.js (easyprivacy.txt: 7075) +.bbvms.com/zone/js/zonestats\.js +# ||analytics.belgacom.be^ (easyprivacy.txt: 7074) +.analytics.belgacom.be +# ||wwwportal.dk/statistik.php (easyprivacy.txt: 7071) +.wwwportal.dk/statistik\.php +# ||ubt.berlingskemedia.net^ (easyprivacy.txt: 7069) +.ubt.berlingskemedia.net +# ||newbie.dk^*/counter.php? (easyprivacy.txt: 7068) +.newbie.dk/.*/counter\.php\? +# ||newbie.dk/topref.php? (easyprivacy.txt: 7067) +.newbie.dk/topref\.php\? +# ||blogtoppen.dk^*/bt_tracker.js (easyprivacy.txt: 7065) +.blogtoppen.dk/.*/bt_tracker\.js +# ||t.leady.cz^ (easyprivacy.txt: 7063) +.t.leady.cz +# ||stats.mf.cz^ (easyprivacy.txt: 7062) +.stats.mf.cz +# ||log.idnes.cz^ (easyprivacy.txt: 7060) +.log.idnes.cz +# ||h.imedia.cz^ (easyprivacy.txt: 7059) +.h.imedia.cz +# ||counter.cnw.cz^ (easyprivacy.txt: 7058) +.counter.cnw.cz +# ||tracking.vid4u.org^ (easyprivacy.txt: 7056) +.tracking.vid4u.org +# ||yigouw.com/c.js (easyprivacy.txt: 7054) +.yigouw.com/c\.js +# ||v.emedia.cn^ (easyprivacy.txt: 7053) +.v.emedia.cn +# ||traffic.bokecc.com^ (easyprivacy.txt: 7052) +.traffic.bokecc.com +# ||tracking.cat898.com^ (easyprivacy.txt: 7051) +.tracking.cat898.com +# ||track.ra.icast.cn^ (easyprivacy.txt: 7050) +.track.ra.icast.cn +# ||toruk.tanx.com^ (easyprivacy.txt: 7049) +.toruk.tanx.com +# ||tns.simba.taobao.com^ (easyprivacy.txt: 7048) +.tns.simba.taobao.com +# ||tanx.com/t/tanxcollect.js (easyprivacy.txt: 7047) +.tanx.com/t/tanxcollect\.js +# ||tanx.com/t/tanxclick.js (easyprivacy.txt: 7046) +.tanx.com/t/tanxclick\.js +# ||t.hypers.com.cn^ (easyprivacy.txt: 7045) +.t.hypers.com.cn +# ||stat.ws.126.net^ (easyprivacy.txt: 7044) +.stat.ws.126.net +# ||sohu.com/pvpb.gif? (easyprivacy.txt: 7043) +.sohu.com/pvpb\.gif\? +# ||sobeycloud.com/Services/Stat. (easyprivacy.txt: 7042) +.sobeycloud.com/Services/Stat\. +# ||sitemaji.com/nownews.php? (easyprivacy.txt: 7041) +.sitemaji.com/nownews\.php\? +# ||r.sax.sina.com.cn^ (easyprivacy.txt: 7040) +.r.sax.sina.com.cn +# ||pos.baidu.com^ (easyprivacy.txt: 7039) +.pos.baidu.com +# ||n.yunshipei.com^ (easyprivacy.txt: 7038) +.n.yunshipei.com +# ||log.v.iask.com^ (easyprivacy.txt: 7035) +.log.v.iask.com +# ||log.hiiir.com^ (easyprivacy.txt: 7034) +.log.hiiir.com +# ||js.static.m1905.cn/pingd.js (easyprivacy.txt: 7033) +.js.static.m1905.cn/pingd\.js +# ||js.letvcdn.com/js/*/stats/ (easyprivacy.txt: 7032) +.js.letvcdn.com/js/.*/stats/ +# ||ifengimg.com/sta_collection.*.js (easyprivacy.txt: 7031) +.ifengimg.com/sta_collection\..*\.js +# ||haostat.qihoo.com^ (easyprivacy.txt: 7030) +.haostat.qihoo.com +# ||etwun.com:8080/counter.php? (easyprivacy.txt: 7029) +.etwun.com:8080/counter\.php\? +# ||csdn.net^*/counter.js (easyprivacy.txt: 7026) +.csdn.net/.*/counter\.js +# ||cri.cn/js/a1.js (easyprivacy.txt: 7024) +.cri.cn/js/a1\.js +# ||cnzz.com/c.php? (easyprivacy.txt: 7022) +.cnzz.com/c\.php\? +# ||click.bokecc.com^ (easyprivacy.txt: 7020) +.click.bokecc.com +# ||changyan.sohu.com/stat/ (easyprivacy.txt: 7019) +.changyan.sohu.com/stat/ +# ||cdnmaster.com/sitemaster/sm360.js (easyprivacy.txt: 7018) +.cdnmaster.com/sitemaster/sm360\.js +# ||cbsi.com.cn/js/dw.js (easyprivacy.txt: 7016) +.cbsi.com.cn/js/dw\.js +# ||bzclk.baidu.com^ (easyprivacy.txt: 7015) +.bzclk.baidu.com +# ||bokecc.com/flash/timerecorder? (easyprivacy.txt: 7014) +.bokecc.com/flash/timerecorder\? +# ||bokecc.com/flash/playlog? (easyprivacy.txt: 7013) +.bokecc.com/flash/playlog\? +# ||beacon.sina.com.cn^ (easyprivacy.txt: 7012) +.beacon.sina.com.cn +# ||baidu.com/js/o.js (easyprivacy.txt: 7011) +.baidu.com/js/o\.js +# ||baidu.com/js/m.js (easyprivacy.txt: 7010) +.baidu.com/js/m\.js +# ||baidu.com/hm.gif? (easyprivacy.txt: 7009) +.baidu.com/hm\.gif\? +# ||baidu.com/h.js? (easyprivacy.txt: 7008) +.baidu.com/h\.js\? +# ||baidu.com/cpro/ui/f.js (easyprivacy.txt: 7007) +.baidu.com/cpro/ui/f\.js +# ||baidu.com/cpro/ui/c.js (easyprivacy.txt: 7006) +.baidu.com/cpro/ui/c\.js +# ||analytics.21cn.com^ (easyprivacy.txt: 7005) +.analytics.21cn.com +# ||alipay.com/common/um/lsa.swf (easyprivacy.txt: 7004) +.alipay.com/common/um/lsa\.swf +# ||alimama.cn/inf.js (easyprivacy.txt: 7003) +.alimama.cn/inf\.js +# ||360.cn/mapping_service? (easyprivacy.txt: 7002) +.360.cn/mapping_service\? +# ||aff*.kolektiva.net^ (easyprivacy.txt: 7000) +.aff*./.*\.kolektiva\.net[^\w%.-] +.aff*.kolektiva.net +# ||minsk-in.net/counter.php? (easyprivacy.txt: 6998) +.minsk-in.net/counter\.php\? +# ||woopic.com/Magic/o_vr.js (easyprivacy.txt: 6995) +.woopic.com/Magic/o_vr\.js +# ||webreseau.com/impression.asp? (easyprivacy.txt: 6992) +.webreseau.com/impression\.asp\? +# ||veoxa.com/get_trackingcode. (easyprivacy.txt: 6991) +.veoxa.com/get_trackingcode\. +# ||tsphone.biz/pixelvoleur.jpg? (easyprivacy.txt: 6990) +.tsphone.biz/pixelvoleur\.jpg\? +# ||trk.adbutter.net^ (easyprivacy.txt: 6989) +.trk.adbutter.net +# ||tracking.veille-referencement.com^ (easyprivacy.txt: 6988) +.tracking.veille-referencement.com +# ||tracking.netvigie.com^ (easyprivacy.txt: 6987) +.tracking.netvigie.com +# ||tracking.ecookie.fr^ (easyprivacy.txt: 6986) +.tracking.ecookie.fr +# ||tr.cloud-media.fr^ (easyprivacy.txt: 6984) +.tr.cloud-media.fr +# ||stats.buzzea.com^ (easyprivacy.txt: 6982) +.stats.buzzea.com +# ||stat.prsmedia.fr^ (easyprivacy.txt: 6981) +.stat.prsmedia.fr +# ||scriptsgratuits.com/sg/stats/ (easyprivacy.txt: 6979) +.scriptsgratuits.com/sg/stats/ +# ||pagesjaunes.fr/stat/ (easyprivacy.txt: 6977) +.pagesjaunes.fr/stat/ +# ||nws.naltis.com^ (easyprivacy.txt: 6976) +.nws.naltis.com +# ||nvc.n1bus-exp.com^ (easyprivacy.txt: 6975) +.nvc.n1bus-exp.com +# ||neteventsmedia.be/hit.cfm? (easyprivacy.txt: 6974) +.neteventsmedia.be/hit\.cfm\? +# ||makazi.com/tracker- (easyprivacy.txt: 6973) +.makazi.com/tracker- +# ||m6web.fr/statsd/ (easyprivacy.txt: 6972) +.m6web.fr/statsd/ +# ||linguee.fr/white_pixel.gif (easyprivacy.txt: 6970) +.linguee.fr/white_pixel\.gif +# ||i-services.net^*/compteur.php? (easyprivacy.txt: 6969) +.i-services.net/.*/compteur\.php\? +# ||free.fr/services/compteur_page.php? (easyprivacy.txt: 6968) +.free.fr/services/compteur_page\.php\? +# ||free.fr/cgi-bin/wwwcount.cgi? (easyprivacy.txt: 6967) +.free.fr/cgi-bin/wwwcount\.cgi\? +# ||devtribu.fr/t.php? (easyprivacy.txt: 6963) +.devtribu.fr/t\.php\? +# ||da-kolkoz.com/da-top/track/ (easyprivacy.txt: 6962) +.da-kolkoz.com/da-top/track/ +# ||cdn-analytics.ladmedia.fr^ (easyprivacy.txt: 6961) +.cdn-analytics.ladmedia.fr +# ||btstats.devtribu.fr^ (easyprivacy.txt: 6959) +.btstats.devtribu.fr +# ||analytics.ladmedia.fr^ (easyprivacy.txt: 6955) +.analytics.ladmedia.fr +# ||analytics.freespee.com^ (easyprivacy.txt: 6954) +.analytics.freespee.com +# ||abs.proxistore.com^ (easyprivacy.txt: 6952) +.abs.proxistore.com +# ||01net.com/track/ (easyprivacy.txt: 6951) +.01net.com/track/ +# ||shofonline.org/javashofnet/ti.js (easyprivacy.txt: 6949) +.shofonline.org/javashofnet/ti\.js +# ||analytics.traidnt.net^ (easyprivacy.txt: 6948) +.analytics.traidnt.net +# ||zs.dhl.de^ (easyprivacy.txt: 6946) +.zs.dhl.de +# ||xnewsletter.de/count/counter.php? (easyprivacy.txt: 6945) +.xnewsletter.de/count/counter\.php\? +# ||x.bloggurat.net^ (easyprivacy.txt: 6944) +.x.bloggurat.net +# ||wrmwb.7val.com^ (easyprivacy.txt: 6943) +.wrmwb.7val.com +# ||webcounter.goweb.de^ (easyprivacy.txt: 6940) +.webcounter.goweb.de +# ||vtrtl.de^ (easyprivacy.txt: 6939) +.vtrtl.de +# ||verticalnetwork.de/scripts/*/immer_oben.js (easyprivacy.txt: 6938) +.verticalnetwork.de/scripts/.*/immer_oben\.js +# ||vertical-n.de/scripts/*/immer_oben.js (easyprivacy.txt: 6937) +.vertical-n.de/scripts/.*/immer_oben\.js +# ||veeseo.com^*/url.gif? (easyprivacy.txt: 6935) +.veeseo.com/.*/url\.gif\? +# ||uni-leipzig.de^*/stats/ (easyprivacy.txt: 6934) +.uni-leipzig.de/.*/stats/ +# ||uni-duesseldorf.de/cgi-bin/nph-count? (easyprivacy.txt: 6933) +.uni-duesseldorf.de/cgi-bin/nph-count\? +# ||trck.spoteffects.net^ (easyprivacy.txt: 6932) +.trck.spoteffects.net +# ||traffic.brand-wall.net^ (easyprivacy.txt: 6931) +.traffic.brand-wall.net +# ||tracking.srv2.de^ (easyprivacy.txt: 6930) +.tracking.srv2.de +# ||tracking.sim-technik.de^ (easyprivacy.txt: 6929) +.tracking.sim-technik.de +# ||tracking.s24.com^ (easyprivacy.txt: 6928) +.tracking.s24.com +# ||tracking.rtl.de^ (easyprivacy.txt: 6927) +.tracking.rtl.de +# ||tracking.rce.veeseo.com^ (easyprivacy.txt: 6926) +.tracking.rce.veeseo.com +# ||tracking.promiflash.de^ (easyprivacy.txt: 6925) +.tracking.promiflash.de +# ||tracking.netzathleten-media.de^ (easyprivacy.txt: 6924) +.tracking.netzathleten-media.de +# ||tracking.mvsuite.de^ (easyprivacy.txt: 6923) +.tracking.mvsuite.de +# ||tracking.mindshare.de^ (easyprivacy.txt: 6922) +.tracking.mindshare.de +# ||tracking.ladies.de^ (easyprivacy.txt: 6921) +.tracking.ladies.de +# ||tracking.hi-pi.com^ (easyprivacy.txt: 6920) +.tracking.hi-pi.com +# ||tracking.hannoversche.de^ (easyprivacy.txt: 6919) +.tracking.hannoversche.de +# ||tracking.gameforge.de^ (easyprivacy.txt: 6918) +.tracking.gameforge.de +# ||tracking.ddd.de^ (easyprivacy.txt: 6917) +.tracking.ddd.de +# ||tracking.base.de^ (easyprivacy.txt: 6916) +.tracking.base.de +# ||tracking-rce.veeseo.com^ (easyprivacy.txt: 6915) +.tracking-rce.veeseo.com +# ||tracker.winload.de^ (easyprivacy.txt: 6914) +.tracker.winload.de +# ||tracker.netdisk.de^ (easyprivacy.txt: 6913) +.tracker.netdisk.de +# ||tracker.euroweb.net^ (easyprivacy.txt: 6912) +.tracker.euroweb.net +# ||track2.mycliplister.com^ (easyprivacy.txt: 6911) +.track2.mycliplister.com +# ||track2.dulingo.com^ (easyprivacy.txt: 6910) +.track2.dulingo.com +# ||top50-solar.de/solarcount/ (easyprivacy.txt: 6909) +.top50-solar.de/solarcount/ +# ||teleboy.ch/misc/tracker/track.php?id= (easyprivacy.txt: 6908) +.teleboy.ch/misc/tracker/track\.php\?id= +# ||strongvpn.com/aff/ (easyprivacy.txt: 6907) +.strongvpn.com/aff/ +# ||stilanzeigen.net/track/ (easyprivacy.txt: 6906) +.stilanzeigen.net/track/ +# ||stats.urban-media.com^ (easyprivacy.txt: 6904) +.stats.urban-media.com +# ||stats.united-domains.de^ (easyprivacy.txt: 6903) +.stats.united-domains.de +# ||stats.ilsemedia.nl^ (easyprivacy.txt: 6901) +.stats.ilsemedia.nl +# ||stats.frankfurterneuepresse.de^ (easyprivacy.txt: 6900) +.stats.frankfurterneuepresse.de +# ||stats.fittkaumaass.de^ (easyprivacy.txt: 6899) +.stats.fittkaumaass.de +# ||stats.digital-natives.de^ (easyprivacy.txt: 6898) +.stats.digital-natives.de +# ||stats.clickforknowledge.com^ (easyprivacy.txt: 6897) +.stats.clickforknowledge.com +# ||stats.blogoscoop.net^ (easyprivacy.txt: 6896) +.stats.blogoscoop.net +# ||stats.av.de^ (easyprivacy.txt: 6895) +.stats.av.de +# ||statistik.simaja.de^ (easyprivacy.txt: 6894) +.statistik.simaja.de +# ||statistics.klicktel.de^ (easyprivacy.txt: 6892) +.statistics.klicktel.de +# ||stat4.edev.at^ (easyprivacy.txt: 6891) +.stat4.edev.at +# ||stat.clichehosting.de^ (easyprivacy.txt: 6890) +.stat.clichehosting.de +# ||ss4w.de/counter.php? (easyprivacy.txt: 6889) +.ss4w.de/counter\.php\? +# ||spox.com/pub/js/track.js (easyprivacy.txt: 6888) +.spox.com/pub/js/track\.js +# ||skoom.de/gratis-counter/ (easyprivacy.txt: 6887) +.skoom.de/gratis-counter/ +# ||sim-technik.de/dvs.gif? (easyprivacy.txt: 6886) +.sim-technik.de/dvs\.gif\? +# ||sett.i12.de^ (easyprivacy.txt: 6885) +.sett.i12.de +# ||serverkompetenz.net/cpx.php? (easyprivacy.txt: 6884) +.serverkompetenz.net/cpx\.php\? +# ||sec-web.com/stats/ (easyprivacy.txt: 6883) +.sec-web.com/stats/ +# ||script.idgentertainment.de/gt.js (easyprivacy.txt: 6882) +.script.idgentertainment.de/gt\.js +# ||rc.aol.de^*/getrcmd.js (easyprivacy.txt: 6880) +.rc.aol.de/.*/getrcmd\.js +# ||pyroactive.de/counter/ (easyprivacy.txt: 6879) +.pyroactive.de/counter/ +# ||plista.com/iframeShowItem.php (easyprivacy.txt: 6878) +.plista.com/iframeShowItem\.php +# ||plista.com/getuid? (easyprivacy.txt: 6877) +.plista.com/getuid\? +# ||pixel.nbsp.de^ (easyprivacy.txt: 6876) +.pixel.nbsp.de +# ||pixel.holtzbrinckdigital.info^ (easyprivacy.txt: 6875) +.pixel.holtzbrinckdigital.info +# ||pix.news.at^ (easyprivacy.txt: 6874) +.pix.news.at +# ||onlyfree.de^*/counterservice/ (easyprivacy.txt: 6873) +.onlyfree.de/.*/counterservice/ +# ||onlinepresse.info/counter.php? (easyprivacy.txt: 6872) +.onlinepresse.info/counter\.php\? +# ||onlex.de/_counter.php (easyprivacy.txt: 6871) +.onlex.de/_counter\.php +# ||omniture.eaeurope.eu^ (easyprivacy.txt: 6870) +.omniture.eaeurope.eu +# ||oe-static.de^*/wws.js (easyprivacy.txt: 6869) +.oe-static.de/.*/wws\.js +# ||o2online.de^*/postview.gif? (easyprivacy.txt: 6868) +.o2online.de/.*/postview\.gif\? +# ||o2online.de/impression.php? (easyprivacy.txt: 6867) +.o2online.de/impression\.php\? +# ||ntmb.de/count.html? (easyprivacy.txt: 6866) +.ntmb.de/count\.html\? +# ||newelements.de/tracker/ (easyprivacy.txt: 6865) +.newelements.de/tracker/ +# ||nametec.de/cp/ (easyprivacy.txt: 6864) +.nametec.de/cp/ +# ||myv-img.de/m2/e? (easyprivacy.txt: 6863) +.myv-img.de/m2/e\? +# ||mqs.ioam.de^ (easyprivacy.txt: 6862) +.mqs.ioam.de +# ||movad.de/c.ount? (easyprivacy.txt: 6861) +.movad.de/c\.ount\? +# ||mlm.de/pagerank-ranking/ (easyprivacy.txt: 6860) +.mlm.de/pagerank-ranking/ +# ||mlm.de/counter/ (easyprivacy.txt: 6859) +.mlm.de/counter/ +# ||mindwerk.net/zaehlpixel.php? (easyprivacy.txt: 6858) +.mindwerk.net/zaehlpixel\.php\? +# ||met.vgwort.de^ (easyprivacy.txt: 6857) +.met.vgwort.de +# ||mastertag.kpcustomer.de^ (easyprivacy.txt: 6855) +.mastertag.kpcustomer.de +# ||mapandroute.de/log.xhr? (easyprivacy.txt: 6854) +.mapandroute.de/log\.xhr\? +# ||lr-port.de/tracker/ (easyprivacy.txt: 6853) +.lr-port.de/tracker/ +# ||log.worldsoft-cms.info^ (easyprivacy.txt: 6852) +.log.worldsoft-cms.info +# ||liveviewer.ez.no^ (easyprivacy.txt: 6851) +.liveviewer.ez.no +# ||live.ec2.cxo.name^ (easyprivacy.txt: 6850) +.live.ec2.cxo.name +# ||kt-g.de/counter.php? (easyprivacy.txt: 6849) +.kt-g.de/counter\.php\? +# ||kontextr.eu/content/track? (easyprivacy.txt: 6848) +.kontextr.eu/content/track\? +# ||koe-vip.com/statistik/ (easyprivacy.txt: 6847) +.koe-vip.com/statistik/ +# ||ivw.fem.com^ (easyprivacy.txt: 6846) +.ivw.fem.com +# ||ivw.dumontreise.de^ (easyprivacy.txt: 6845) +.ivw.dumontreise.de +# ||ivw.discover-outdoor.de^ (easyprivacy.txt: 6844) +.ivw.discover-outdoor.de +# ||ioam.de/tx.io? (easyprivacy.txt: 6843) +.ioam.de/tx\.io\? +# ||ioam.de/aid.io? (easyprivacy.txt: 6842) +.ioam.de/aid\.io\? +# ||ioam.de/? (easyprivacy.txt: 6841) +.ioam.de/\? +# ||im.aol.de^ (easyprivacy.txt: 6838) +.im.aol.de +# ||house27.ch/counter/ (easyprivacy.txt: 6837) +.house27.ch/counter/ +# ||hittracker.org/counter.php (easyprivacy.txt: 6836) +.hittracker.org/counter\.php +# ||hittracker.org/count.php (easyprivacy.txt: 6835) +.hittracker.org/count\.php +# ||global-media.de^*/track/ai.img (easyprivacy.txt: 6834) +.global-media.de/.*/track/ai\.img +# ||gibts-hier.com/counter.php (easyprivacy.txt: 6833) +.gibts-hier.com/counter\.php +# ||geo.mtvnn.com^ (easyprivacy.txt: 6832) +.geo.mtvnn.com +# ||gand.de/null.gif? (easyprivacy.txt: 6831) +.gand.de/null\.gif\? +# ||gameforge.de/init.gif? (easyprivacy.txt: 6830) +.gameforge.de/init\.gif\? +# ||frontlineshop.com/tr/p.gif?uid= (easyprivacy.txt: 6829) +.frontlineshop.com/tr/p\.gif\?uid= +# ||frontlineshop.com/ev/co/frontline?*&uid= (easyprivacy.txt: 6828) +.frontlineshop.com/ev/co/frontline\?.*&uid= +# ||filmaster.tv^*/flm.tracker.min.js (easyprivacy.txt: 6827) +.filmaster.tv/.*/flm\.tracker\.min\.js +# ||export.newscube.de^ (easyprivacy.txt: 6825) +.export.newscube.de +# ||events.snacktv.de^ (easyprivacy.txt: 6824) +.events.snacktv.de +# ||datacomm.ch^*/count.cgi? (easyprivacy.txt: 6822) +.datacomm.ch/.*/count\.cgi\? +# ||data.econa.com^ (easyprivacy.txt: 6821) +.data.econa.com +# ||ctr-opc.nmg.de^ (easyprivacy.txt: 6819) +.ctr-opc.nmg.de +# ||ctr-iwb.nmg.de^ (easyprivacy.txt: 6818) +.ctr-iwb.nmg.de +# ||counter.webmart.de^ (easyprivacy.txt: 6817) +.counter.webmart.de +# ||counter.blogoscoop.net^ (easyprivacy.txt: 6816) +.counter.blogoscoop.net +# ||counter.1i.kz^ (easyprivacy.txt: 6815) +.counter.1i.kz +# ||count.snacktv.de^ (easyprivacy.txt: 6814) +.count.snacktv.de +# ||count.asnetworks.de^ (easyprivacy.txt: 6813) +.count.asnetworks.de +# ||confido.dyndns.org^*/dot.php? (easyprivacy.txt: 6812) +.confido.dyndns.org/.*/dot\.php\? +# ||computerfrage.net^*/blank.gif? (easyprivacy.txt: 6811) +.computerfrage.net/.*/blank\.gif\? +# ||com.econa.com^ (easyprivacy.txt: 6810) +.com.econa.com +# ||collect.finanzen.net^ (easyprivacy.txt: 6809) +.collect.finanzen.net +# ||cloudfront.net/customers/24868.min.js (easyprivacy.txt: 6808) +.cloudfront.net/customers/24868\.min\.js +# ||clipkit.de/metrics? (easyprivacy.txt: 6807) +.clipkit.de/metrics\? +# ||cgicounter.onlinehome.de^ (easyprivacy.txt: 6806) +.cgicounter.onlinehome.de +# ||captcha-ad.com/stats/ (easyprivacy.txt: 6805) +.captcha-ad.com/stats/ +# ||bt.ilsemedia.nl^ (easyprivacy.txt: 6804) +.bt.ilsemedia.nl +# ||beenetworks.net/traffic (easyprivacy.txt: 6803) +.beenetworks.net/traffic +# ||bcs-computersysteme.com/cgi-local/hiddencounter/ (easyprivacy.txt: 6802) +.bcs-computersysteme.com/cgi-local/hiddencounter/ +# ||audimark.de/tracking/ (easyprivacy.txt: 6801) +.audimark.de/tracking/ +# ||asci.freenet.de^ (easyprivacy.txt: 6800) +.asci.freenet.de +# ||andyhoppe.com/count/ (easyprivacy.txt: 6799) +.andyhoppe.com/count/ +# ||analytics.unister-gmbh.de^ (easyprivacy.txt: 6798) +.analytics.unister-gmbh.de +# ||analytics.gameforge.de^ (easyprivacy.txt: 6796) +.analytics.gameforge.de +# ||analytics-static.unister-gmbh.de^ (easyprivacy.txt: 6794) +.analytics-static.unister-gmbh.de +# ||agitos.de/content/track? (easyprivacy.txt: 6793) +.agitos.de/content/track\? +# ||aftonbladet.se/trafikfonden/ (easyprivacy.txt: 6792) +.aftonbladet.se/trafikfonden/ +# ||adc-srv.net/retargeting.php (easyprivacy.txt: 6790) +.adc-srv.net/retargeting\.php +# ||zope.net^*/ghs_wa.js (easyprivacy.txt: 6786) +.zope.net/.*/ghs_wa\.js +# ||zoover.co.uk/tracking/ (easyprivacy.txt: 6785) +.zoover.co.uk/tracking/ +# ||ziffprod.com^*/zdcse.min.js?referrer= (easyprivacy.txt: 6784) +.ziffprod.com/.*/zdcse\.min\.js\?referrer= +# ||ywxi.net/meter/ (easyprivacy.txt: 6783) +.ywxi.net/meter/ +# ||ypcdn.com/*/webyp? (easyprivacy.txt: 6782) +.ypcdn.com/.*/webyp\? +# ||yospace.com/csm/analytics; (easyprivacy.txt: 6781) +.yospace.com/csm/analytics; +# ||yimg.com/wi/ytc.js (easyprivacy.txt: 6779) +.yimg.com/wi/ytc\.js +# ||yext.com/plpixel? (easyprivacy.txt: 6778) +.yext.com/plpixel\? +# ||yellowbrix.com/images/content/cimage.gif? (easyprivacy.txt: 6776) +.yellowbrix.com/images/content/cimage\.gif\? +# ||yarpp.org/pixels/ (easyprivacy.txt: 6775) +.yarpp.org/pixels/ +# ||x.weather.com^ (easyprivacy.txt: 6773) +.x.weather.com +# ||wvnetworkmedia.org/min/? (easyprivacy.txt: 6772) +.wvnetworkmedia.org/min/\? +# ||wunderloop.aol.co.uk^ (easyprivacy.txt: 6771) +.wunderloop.aol.co.uk +# ||wstat.wibiya.com^ (easyprivacy.txt: 6770) +.wstat.wibiya.com +# ||wsj.net/MW5/content/analytics/hooks.js (easyprivacy.txt: 6769) +.wsj.net/MW5/content/analytics/hooks\.js +# ||wsb.aracert.com^ (easyprivacy.txt: 6767) +.wsb.aracert.com +# ||ws.amazon.com/widgets/*=gettrackingid| (easyprivacy.txt: 6766) +.ws.amazon.com/widgets/.*=gettrackingid$ +# ||wpdigital.net/metrics/ (easyprivacy.txt: 6765) +.wpdigital.net/metrics/ +# ||wp-stat.s3.amazonaws.com^ (easyprivacy.txt: 6764) +.wp-stat.s3.amazonaws.com +# ||woolik.com^*^tracker^ (easyprivacy.txt: 6762) +.woolik.com/.*[^\w%.-]tracker[^\w%.-] +# ||woolik.com/__el.gif? (easyprivacy.txt: 6761) +.woolik.com/__el\.gif\? +# ||wn.com/count.js (easyprivacy.txt: 6760) +.wn.com/count\.js +# ||win.staticstuff.net^ (easyprivacy.txt: 6759) +.win.staticstuff.net +# ||wikinvest.com^*/errorlogger.php? (easyprivacy.txt: 6758) +.wikinvest.com/.*/errorlogger\.php\? +# ||wikinvest.com/plugin/*=metricpv (easyprivacy.txt: 6757) +.wikinvest.com/plugin/.*=metricpv +# ||widgetserver.com^*/quantcast.swf (easyprivacy.txt: 6756) +.widgetserver.com/.*/quantcast\.swf +# ||widgetserver.com^*/image.gif? (easyprivacy.txt: 6755) +.widgetserver.com/.*/image\.gif\? +# ||widgetserver.com/t/ (easyprivacy.txt: 6754) +.widgetserver.com/t/ +# ||widgetserver.com/metrics/ (easyprivacy.txt: 6753) +.widgetserver.com/metrics/ +# ||widgethost.com/pax/counter.js? (easyprivacy.txt: 6752) +.widgethost.com/pax/counter\.js\? +# ||widgetbox.com/syndication/track/ (easyprivacy.txt: 6751) +.widgetbox.com/syndication/track/ +# ||widget.quantcast.com^ (easyprivacy.txt: 6750) +.widget.quantcast.com +# ||widget.perfectmarket.com^ (easyprivacy.txt: 6749) +.widget.perfectmarket.com +# ||widgeo.net/tracking.php? (easyprivacy.txt: 6748) +.widgeo.net/tracking\.php\? +# ||widgeo.net/hitparade.php (easyprivacy.txt: 6747) +.widgeo.net/hitparade\.php +# ||widgeo.net/geocompteur/ (easyprivacy.txt: 6746) +.widgeo.net/geocompteur/ +# ||widgeo.net/compteur.php? (easyprivacy.txt: 6745) +.widgeo.net/compteur\.php\? +# ||wibiya-june-new-log.conduit-data.com^ (easyprivacy.txt: 6744) +.wibiya-june-new-log.conduit-data.com +# ||wibiya-actions.conduit-data.com^ (easyprivacy.txt: 6743) +.wibiya-actions.conduit-data.com +# ||whosread.com/counter/ (easyprivacy.txt: 6742) +.whosread.com/counter/ +# ||whatismyip.akamai.com^ (easyprivacy.txt: 6740) +.whatismyip.akamai.com +# ||wetpaint.com^*/track? (easyprivacy.txt: 6739) +.wetpaint.com/.*/track\? +# ||webzel.com/counter/ (easyprivacy.txt: 6738) +.webzel.com/counter/ +# ||webworx24.co.uk/123trace.php (easyprivacy.txt: 6737) +.webworx24.co.uk/123trace\.php +# ||webvoo.com^*/logtodb. (easyprivacy.txt: 6736) +.webvoo.com/.*/logtodb\. +# ||webvoo.com/wt/Track.aspx (easyprivacy.txt: 6735) +.webvoo.com/wt/Track\.aspx +# ||webtracker.educationconnection.com^ (easyprivacy.txt: 6734) +.webtracker.educationconnection.com +# ||webtracker.apicasystem.com^ (easyprivacy.txt: 6733) +.webtracker.apicasystem.com +# ||webterren.com/webdig.js? (easyprivacy.txt: 6732) +.webterren.com/webdig\.js\? +# ||webstats.thaindian.com^ (easyprivacy.txt: 6731) +.webstats.thaindian.com +# ||webstats.seoinc.com^ (easyprivacy.txt: 6730) +.webstats.seoinc.com +# ||webservices.websitepros.com^ (easyprivacy.txt: 6728) +.webservices.websitepros.com +# ||weblogger-dynamic-lb.playdom.com^ (easyprivacy.txt: 6727) +.weblogger-dynamic-lb.playdom.com +# ||weblog.livesport.eu^ (easyprivacy.txt: 6726) +.weblog.livesport.eu +# ||webeffective.keynote.com^ (easyprivacy.txt: 6725) +.webeffective.keynote.com +# ||web1.51.la^ (easyprivacy.txt: 6723) +.web1.51.la +# ||web-soft.in/counters/ (easyprivacy.txt: 6722) +.web-soft.in/counters/ +# ||weather.ca/counter.gif? (easyprivacy.txt: 6721) +.weather.ca/counter\.gif\? +# ||wantlive.com/pixel/ (easyprivacy.txt: 6719) +.wantlive.com/pixel/ +# ||w88.m.espn.go.com^ (easyprivacy.txt: 6717) +.w88.m.espn.go.com +# ||vwdealerdigital.com/cdn/sd.js (easyprivacy.txt: 6715) +.vwdealerdigital.com/cdn/sd\.js +# ||vvhp.net/read/view.gif (easyprivacy.txt: 6714) +.vvhp.net/read/view\.gif +# ||vtracking.in.com^ (easyprivacy.txt: 6713) +.vtracking.in.com +# ||vtnlog-*.elb.amazonaws.com^ (easyprivacy.txt: 6712) +.vtnlog-*./.*\.elb\.amazonaws\.com[^\w%.-] +.vtnlog-*.elb.amazonaws.com +# ||vpoweb.com/counter.php? (easyprivacy.txt: 6710) +.vpoweb.com/counter\.php\? +# ||voxmedia.com/beacon-min.js (easyprivacy.txt: 6709) +.voxmedia.com/beacon-min\.js +# ||voss.collegehumor.com^ (easyprivacy.txt: 6708) +.voss.collegehumor.com +# ||vmixcore.com/vmixcore/playlog? (easyprivacy.txt: 6707) +.vmixcore.com/vmixcore/playlog\? +# ||vk.com/videostats.php (easyprivacy.txt: 6706) +.vk.com/videostats\.php +# ||vk.com/rtrg? (easyprivacy.txt: 6705) +.vk.com/rtrg\? +# ||vizury.com/analyze/ (easyprivacy.txt: 6704) +.vizury.com/analyze/ +# ||viximo.com/1px.gif? (easyprivacy.txt: 6703) +.viximo.com/1px\.gif\? +# ||visualstudio.com/_da.gif? (easyprivacy.txt: 6700) +.visualstudio.com/_da\.gif\? +# ||visual.ly/track.php? (easyprivacy.txt: 6699) +.visual.ly/track\.php\? +# ||visit.webhosting.yahoo.com^ (easyprivacy.txt: 6698) +.visit.webhosting.yahoo.com +# ||visit.geocities.com^ (easyprivacy.txt: 6697) +.visit.geocities.com +# ||virtueworldwide.com/ga-test/ (easyprivacy.txt: 6695) +.virtueworldwide.com/ga-test/ +# ||virtualearth.net^*/loggingservice/ (easyprivacy.txt: 6694) +.virtualearth.net/.*/loggingservice/ +# ||virginmedia.com^*/analytics/ (easyprivacy.txt: 6693) +.virginmedia.com/.*/analytics/ +# ||virgingames.com/tracker/ (easyprivacy.txt: 6692) +.virgingames.com/tracker/ +# ||vindicosuite.com/tracking/ (easyprivacy.txt: 6690) +.vindicosuite.com/tracking/ +# ||vindicosuite.com/track/ (easyprivacy.txt: 6689) +.vindicosuite.com/track/ +# ||videopress.com/plugins/stats/ (easyprivacy.txt: 6687) +.videopress.com/plugins/stats/ +# ||video.msn.com/report.aspx? (easyprivacy.txt: 6684) +.video.msn.com/report\.aspx\? +# ||video.google.com/api/stats/ (easyprivacy.txt: 6683) +.video.google.com/api/stats/ +# ||video-ad-stats.googlesyndication.com^ (easyprivacy.txt: 6682) +.video-ad-stats.googlesyndication.com +# ||verticalacuity.com/vat/ (easyprivacy.txt: 6681) +.verticalacuity.com/vat/ +# ||verticalacuity.com/varw/sendEvent? (easyprivacy.txt: 6680) +.verticalacuity.com/varw/sendEvent\? +# ||vertical-stats.huffpost.com^ (easyprivacy.txt: 6679) +.vertical-stats.huffpost.com +# ||ventunotech.com/beacon/ (easyprivacy.txt: 6678) +.ventunotech.com/beacon/ +# ||veeseo.com/tracking/ (easyprivacy.txt: 6677) +.veeseo.com/tracking/ +# ||vds_dyn.rightster.com/v/*?rand= (easyprivacy.txt: 6676) +# ||vapedia.com^*/largebanner. (easyprivacy.txt: 6674) +.vapedia.com/.*/largebanner\. +# ||vanilladev.com/analytics. (easyprivacy.txt: 6673) +.vanilladev.com/analytics\. +# ||v.giantrealm.com/players/stats.swf? (easyprivacy.txt: 6672) +.v.giantrealm.com/players/stats\.swf\? +# ||uservoice.com^*/track.js (easyprivacy.txt: 6671) +.uservoice.com/.*/track\.js +# ||userlog.synapseip.tv^ (easyprivacy.txt: 6670) +.userlog.synapseip.tv +# ||urc.taboolasyndication.com^ (easyprivacy.txt: 6669) +.urc.taboolasyndication.com +# ||upt.graphiq.com^ (easyprivacy.txt: 6668) +.upt.graphiq.com +# ||upcat.custvox.org/survey/*/countOpen.gif (easyprivacy.txt: 6667) +.upcat.custvox.org/survey/.*/countOpen\.gif +# ||ultimatebootcd.com/tracker/ (easyprivacy.txt: 6666) +.ultimatebootcd.com/tracker/ +# ||uknetguide.co.uk/user.js? (easyprivacy.txt: 6665) +.uknetguide.co.uk/user\.js\? +# ||uim.tifbs.net^ (easyprivacy.txt: 6664) +.uim.tifbs.net +# ||ui-portal.com^*;ns_referrer= (easyprivacy.txt: 6663) +.ui-portal.com/.*;ns_referrer= +# ||ucounter.ucoz.net^ (easyprivacy.txt: 6662) +.ucounter.ucoz.net +# ||txn.grabnetworks.com^ (easyprivacy.txt: 6660) +.txn.grabnetworks.com +# ||twitter.com/scribe/ (easyprivacy.txt: 6658) +.twitter.com/scribe/ +# ||twitter.com/oct.js (easyprivacy.txt: 6657) +.twitter.com/oct\.js +# ||twitter.com/i/jot (easyprivacy.txt: 6656) +.twitter.com/i/jot +# ||twimg.com/jot? (easyprivacy.txt: 6655) +.twimg.com/jot\? +# ||turner.com^*/1pixel.gif? (easyprivacy.txt: 6653) +.turner.com/.*/1pixel\.gif\? +# ||tsk5.com/17*?*=ex- (easyprivacy.txt: 6651) +.tsk5.com/17.*\?.*=ex- +# ||ts.tradetracker.net^ (easyprivacy.txt: 6650) +.ts.tradetracker.net +# ||trustsquare.net/trafficmonitor/ (easyprivacy.txt: 6649) +.trustsquare.net/trafficmonitor/ +# ||trk.vindicosuite.com^ (easyprivacy.txt: 6646) +.trk.vindicosuite.com +# ||trk.vidible.tv^ (easyprivacy.txt: 6645) +.trk.vidible.tv +# ||trk.sele.co^ (easyprivacy.txt: 6644) +.trk.sele.co +# ||trk.bhs4.com^ (easyprivacy.txt: 6642) +.trk.bhs4.com +# ||trk*.vidible.tv^ (easyprivacy.txt: 6641) +.trk*./.*\.vidible\.tv[^\w%.-] +.trk*.vidible.tv +# ||tritondigital.net/activity.php? (easyprivacy.txt: 6640) +.tritondigital.net/activity\.php\? +# ||tritondigital.com/ltjs.php (easyprivacy.txt: 6639) +.tritondigital.com/ltjs\.php +# ||triad.technorati.com^ (easyprivacy.txt: 6638) +.triad.technorati.com +# ||trf.intuitwebsites.com^ (easyprivacy.txt: 6637) +.trf.intuitwebsites.com +# ||tree-pixel-log.s3.amazonaws.com^ (easyprivacy.txt: 6636) +.tree-pixel-log.s3.amazonaws.com +# ||trax.dirxion.com^ (easyprivacy.txt: 6634) +.trax.dirxion.com +# ||traq.li/tracker/ (easyprivacy.txt: 6632) +.traq.li/tracker/ +# ||traffic.shareaholic.com^ (easyprivacy.txt: 6630) +.traffic.shareaholic.com +# ||traffic.pubexchange.com^ (easyprivacy.txt: 6629) +.traffic.pubexchange.com +# ||traffic.prod.cobaltgroup.com^ (easyprivacy.txt: 6628) +.traffic.prod.cobaltgroup.com +# ||traffic.acwebconnecting.com^ (easyprivacy.txt: 6626) +.traffic.acwebconnecting.com +# ||tracksys.developlabs.net^ (easyprivacy.txt: 6625) +.tracksys.developlabs.net +# ||trackingdev.nixxie.com^ (easyprivacy.txt: 6624) +.trackingdev.nixxie.com +# ||tracking2.channeladvisor.com^ (easyprivacy.txt: 6622) +.tracking2.channeladvisor.com +# ||tracking.waterfrontmedia.com^ (easyprivacy.txt: 6620) +.tracking.waterfrontmedia.com +# ||tracking.tradeking.com^ (easyprivacy.txt: 6619) +.tracking.tradeking.com +# ||tracking.thehut.net^ (easyprivacy.txt: 6618) +.tracking.thehut.net +# ||tracking.theeword.co.uk^ (easyprivacy.txt: 6617) +.tracking.theeword.co.uk +# ||tracking.synthasite.net^ (easyprivacy.txt: 6616) +.tracking.synthasite.net +# ||tracking.sokrati.com^ (easyprivacy.txt: 6614) +.tracking.sokrati.com +# ||tracking.searchmarketing.com^ (easyprivacy.txt: 6611) +.tracking.searchmarketing.com +# ||tracking.rapidape.com^ (easyprivacy.txt: 6610) +.tracking.rapidape.com +# ||tracking.quisma.com^ (easyprivacy.txt: 6609) +.tracking.quisma.com +# ||tracking.quillion.com^ (easyprivacy.txt: 6608) +.tracking.quillion.com +# ||tracking.performgroup.com^ (easyprivacy.txt: 6605) +.tracking.performgroup.com +# ||tracking.musixmatch.com^ (easyprivacy.txt: 6604) +.tracking.musixmatch.com +# ||tracking.m6r.eu^ (easyprivacy.txt: 6602) +.tracking.m6r.eu +# ||tracking.livingsocial.com^ (easyprivacy.txt: 6601) +.tracking.livingsocial.com +# ||tracking.listhub.net^ (easyprivacy.txt: 6600) +.tracking.listhub.net +# ||tracking.lengow.com^ (easyprivacy.txt: 6599) +.tracking.lengow.com +# ||tracking.keywee.co^ (easyprivacy.txt: 6598) +.tracking.keywee.co +# ||tracking.jotform.com^ (easyprivacy.txt: 6597) +.tracking.jotform.com +# ||tracking.i-click.com.hk^ (easyprivacy.txt: 6595) +.tracking.i-click.com.hk +# ||tracking.godatafeed.com^ (easyprivacy.txt: 6594) +.tracking.godatafeed.com +# ||tracking.feedperfect.com^ (easyprivacy.txt: 6592) +.tracking.feedperfect.com +# ||tracking.fanbridge.com^ (easyprivacy.txt: 6590) +.tracking.fanbridge.com +# ||tracking.ehavior.net^ (easyprivacy.txt: 6589) +.tracking.ehavior.net +# ||tracking.dsmmadvantage.com^ (easyprivacy.txt: 6587) +.tracking.dsmmadvantage.com +# ||tracking.dealerwebwatcher.com^ (easyprivacy.txt: 6585) +.tracking.dealerwebwatcher.com +# ||tracking.cmjump.com.au^ (easyprivacy.txt: 6584) +.tracking.cmjump.com.au +# ||tracking.cmcigroup.com^ (easyprivacy.txt: 6583) +.tracking.cmcigroup.com +# ||tracking.allposters.com^ (easyprivacy.txt: 6580) +.tracking.allposters.com +# ||tracker2.apollo-mail.net^ (easyprivacy.txt: 6578) +.tracker2.apollo-mail.net +# ||tracker.vreveal.com^ (easyprivacy.txt: 6577) +.tracker.vreveal.com +# ||tracker.twenga. (easyprivacy.txt: 6575) +.tracker.twenga.*. +# ||tracker.timesgroup.com^ (easyprivacy.txt: 6574) +.tracker.timesgroup.com +# ||tracker.roitesting.com^ (easyprivacy.txt: 6572) +.tracker.roitesting.com +# ||tracker.neon-images.com^ (easyprivacy.txt: 6571) +.tracker.neon-images.com +# ||tracker.mtrax.net^ (easyprivacy.txt: 6569) +.tracker.mtrax.net +# ||tracker.mgnetwork.com^ (easyprivacy.txt: 6568) +.tracker.mgnetwork.com +# ||tracker.marinsoftware.com^ (easyprivacy.txt: 6567) +.tracker.marinsoftware.com +# ||tracker.keywordintent.com^ (easyprivacy.txt: 6566) +.tracker.keywordintent.com +# ||tracker.issuu.com^ (easyprivacy.txt: 6565) +.tracker.issuu.com +# ||tracker.iqnomy.com^ (easyprivacy.txt: 6564) +.tracker.iqnomy.com +# ||tracker.icerocket.com^ (easyprivacy.txt: 6563) +.tracker.icerocket.com +# ||tracker.financialcontent.com^ (easyprivacy.txt: 6562) +.tracker.financialcontent.com +# ||tracker.everestnutrition.com^ (easyprivacy.txt: 6561) +.tracker.everestnutrition.com +# ||tracker.downdetector.com^ (easyprivacy.txt: 6560) +.tracker.downdetector.com +# ||tracker.beezup.com^ (easyprivacy.txt: 6559) +.tracker.beezup.com +# ||track.yieldsoftware.com^ (easyprivacy.txt: 6558) +.track.yieldsoftware.com +# ||track.written.com^ (easyprivacy.txt: 6557) +.track.written.com +# ||track.vscash.com^ (easyprivacy.txt: 6556) +.track.vscash.com +# ||track.untd.com^ (easyprivacy.txt: 6555) +.track.untd.com +# ||track.td3x.com^ (easyprivacy.txt: 6554) +.track.td3x.com +# ||track.strife.com^ (easyprivacy.txt: 6553) +.track.strife.com +# ||track.sprinklecontent.com^ (easyprivacy.txt: 6552) +.track.sprinklecontent.com +# ||track.social.com^ (easyprivacy.txt: 6551) +.track.social.com +# ||track.sitetag.us^ (easyprivacy.txt: 6550) +.track.sitetag.us +# ||track.sigfig.com^ (easyprivacy.txt: 6549) +.track.sigfig.com +# ||track.shop2market.com^ (easyprivacy.txt: 6548) +.track.shop2market.com +# ||track.securedvisit.com^ (easyprivacy.txt: 6547) +.track.securedvisit.com +# ||track.searchignite.com^ (easyprivacy.txt: 6546) +.track.searchignite.com +# ||track.ringcentral.com^ (easyprivacy.txt: 6545) +.track.ringcentral.com +# ||track.qoof.com^ (easyprivacy.txt: 6544) +.track.qoof.com +# ||track.qcri.org^ (easyprivacy.txt: 6543) +.track.qcri.org +# ||track.propelplus.com^ (easyprivacy.txt: 6542) +.track.propelplus.com +# ||track.parse.ly^ (easyprivacy.txt: 6541) +.track.parse.ly +# ||track.omg2.com^ (easyprivacy.txt: 6540) +.track.omg2.com +# ||track.mycliplister.com^ (easyprivacy.txt: 6539) +.track.mycliplister.com +# ||track.mybloglog.com^ (easyprivacy.txt: 6538) +.track.mybloglog.com +# ||track.leadin.com^ (easyprivacy.txt: 6536) +.track.leadin.com +# ||track.juno.com^ (easyprivacy.txt: 6535) +.track.juno.com +# ||track.gridlockparadise.com^ (easyprivacy.txt: 6534) +.track.gridlockparadise.com +# ||track.g-bot.net^ (easyprivacy.txt: 6533) +.track.g-bot.net +# ||track.digitalriver.com^ (easyprivacy.txt: 6532) +.track.digitalriver.com +# ||track.did-it.com^ (easyprivacy.txt: 6531) +.track.did-it.com +# ||track.captivate.ai^ (easyprivacy.txt: 6530) +.track.captivate.ai +# ||track.cafemomstatic.com^ (easyprivacy.txt: 6529) +.track.cafemomstatic.com +# ||track.bannedcelebs.com^ (easyprivacy.txt: 6528) +.track.bannedcelebs.com +# ||track.addevent.com^ (easyprivacy.txt: 6526) +.track.addevent.com +# ||track.99acres.com^ (easyprivacy.txt: 6525) +.track.99acres.com +# ||tr.webantenna.info^ (easyprivacy.txt: 6523) +.tr.webantenna.info +# ||tr.interlake.net^ (easyprivacy.txt: 6522) +.tr.interlake.net +# ||tr.advance.net^ (easyprivacy.txt: 6521) +.tr.advance.net +# ||tr-metrics.loomia.com^ (easyprivacy.txt: 6520) +.tr-metrics.loomia.com +# ||tout.com/tracker.js (easyprivacy.txt: 6519) +.tout.com/tracker\.js +# ||touchcommerce.com/tagserver/logging/ (easyprivacy.txt: 6517) +.touchcommerce.com/tagserver/logging/ +# ||totallylayouts.com^*/visitor-counter/counter.js (easyprivacy.txt: 6516) +.totallylayouts.com/.*/visitor-counter/counter\.js +# ||totallylayouts.com^*/users-online-counter/online.js (easyprivacy.txt: 6515) +.totallylayouts.com/.*/users-online-counter/online\.js +# ||topix.net/t6track/ (easyprivacy.txt: 6512) +.topix.net/t6track/ +# ||top-fwz1.mail.ru^ (easyprivacy.txt: 6511) +.top-fwz1.mail.ru +# ||tm.tradetracker.net^ (easyprivacy.txt: 6510) +.tm.tradetracker.net +# ||tl.tradetracker.net^ (easyprivacy.txt: 6509) +.tl.tradetracker.net +# ||tinyurl.com/pixel.gif/ (easyprivacy.txt: 6508) +.tinyurl.com/pixel\.gif/ +# ||tinypass.com^*/track? (easyprivacy.txt: 6507) +.tinypass.com/.*/track\? +# ||timeinc.net^*/peopleas2artracker_v1.swf (easyprivacy.txt: 6506) +.timeinc.net/.*/peopleas2artracker_v1\.swf +# ||time.chtah.com/a/*/spacer.gif (easyprivacy.txt: 6505) +.time.chtah.com/a/.*/spacer\.gif +# ||thismoment.com/tracking/ (easyprivacy.txt: 6504) +.thismoment.com/tracking/ +# ||thinairsoftware.net/OWYPTracker.aspx? (easyprivacy.txt: 6503) +.thinairsoftware.net/OWYPTracker\.aspx\? +# ||thetradedesk-tags.s3.amazonaws.com^ (easyprivacy.txt: 6502) +.thetradedesk-tags.s3.amazonaws.com +# ||thespringbox.com/analytics/ (easyprivacy.txt: 6501) +.thespringbox.com/analytics/ +# ||thepornstarlist.com/lo/lo/track.php? (easyprivacy.txt: 6500) +.thepornstarlist.com/lo/lo/track\.php\? +# ||the-group.net/aether/ (easyprivacy.txt: 6496) +.the-group.net/aether/ +# ||techweb.com/beacon/ (easyprivacy.txt: 6495) +.techweb.com/beacon/ +# ||technorati.com/technoratimedia-pixel.js (easyprivacy.txt: 6494) +.technorati.com/technoratimedia-pixel\.js +# ||tc.airfrance.com^ (easyprivacy.txt: 6493) +.tc.airfrance.com +# ||targeting.wpdigital.net^ (easyprivacy.txt: 6492) +.targeting.wpdigital.net +# ||target.fark.com^ (easyprivacy.txt: 6491) +.target.fark.com +# ||tags.master-perf-tools.com^ (easyprivacy.txt: 6490) +.tags.master-perf-tools.com +# ||tagcdn.com/pix/? (easyprivacy.txt: 6489) +.tagcdn.com/pix/\? +# ||tag.sonymusic.com^ (easyprivacy.txt: 6488) +.tag.sonymusic.com +# ||tag.myplay.com^ (easyprivacy.txt: 6487) +.tag.myplay.com +# ||tag.email-attitude.com^ (easyprivacy.txt: 6486) +.tag.email-attitude.com +# ||taboolasyndication.com^*/log/ (easyprivacy.txt: 6485) +.taboolasyndication.com/.*/log/ +# ||taboolasyndication.com/log/ (easyprivacy.txt: 6484) +.taboolasyndication.com/log/ +# ||taboola.com^*/log/ (easyprivacy.txt: 6483) +.taboola.com/.*/log/ +# ||t2.t2b.click^ (easyprivacy.txt: 6482) +.t2.t2b.click +# ||t.theoutplay.com^ (easyprivacy.txt: 6480) +.t.theoutplay.com +# ||t.pswec.com^ (easyprivacy.txt: 6479) +.t.pswec.com +# ||t.menepe.com^ (easyprivacy.txt: 6477) +.t.menepe.com +# ||t.mail.sony-europe.com/r/? (easyprivacy.txt: 6476) +.t.mail.sony-europe.com/r/\? +# ||t.flux.com^ (easyprivacy.txt: 6475) +.t.flux.com +# ||t.cfjump.com^ (easyprivacy.txt: 6472) +.t.cfjump.com +# ||t.bimvid.com^ (easyprivacy.txt: 6471) +.t.bimvid.com +# ||t-staging.powerreviews.com^ (easyprivacy.txt: 6470) +.t-staging.powerreviews.com +# ||systemmonitoring.badgeville.com^ (easyprivacy.txt: 6469) +.systemmonitoring.badgeville.com +# ||synergizeonline.net/trackpoint/ (easyprivacy.txt: 6468) +.synergizeonline.net/trackpoint/ +# ||sync.adap.tv^ (easyprivacy.txt: 6467) +.sync.adap.tv +# ||survey.io/log? (easyprivacy.txt: 6464) +.survey.io/log\? +# ||survey.interquest.com^ (easyprivacy.txt: 6463) +.survey.interquest.com +# ||sumome.com/apps/heatmaps/ (easyprivacy.txt: 6462) +.sumome.com/apps/heatmaps/ +# ||sumome.com/apps/contentanalytics/ (easyprivacy.txt: 6461) +.sumome.com/apps/contentanalytics/ +# ||sumome.com/api/event/? (easyprivacy.txt: 6460) +.sumome.com/api/event/\? +# ||su.addthis.com^ (easyprivacy.txt: 6456) +.su.addthis.com +# ||streamads.com/view? (easyprivacy.txt: 6455) +.streamads.com/view\? +# ||stileproject.com/vhtk/ (easyprivacy.txt: 6454) +.stileproject.com/vhtk/ +# ||statt-collect.herokuapp.com^ (easyprivacy.txt: 6453) +.statt-collect.herokuapp.com +# ||statsrv.451.com^ (easyprivacy.txt: 6452) +.statsrv.451.com +# ||statsdev.treesd.com^ (easyprivacy.txt: 6451) +.statsdev.treesd.com +# ||stats3.unrulymedia.com^ (easyprivacy.txt: 6449) +.stats3.unrulymedia.com +# ||stats2.lightningcast.net^ (easyprivacy.txt: 6448) +.stats2.lightningcast.net +# ||stats1.tune.pk^ (easyprivacy.txt: 6447) +.stats1.tune.pk +# ||stats.yourminis.com^ (easyprivacy.txt: 6446) +.stats.yourminis.com +# ||stats.wp.com^ (easyprivacy.txt: 6445) +.stats.wp.com +# ||stats.webs.com^ (easyprivacy.txt: 6442) +.stats.webs.com +# ||stats.vodpod.com^ (easyprivacy.txt: 6441) +.stats.vodpod.com +# ||stats.viddler.com^ (easyprivacy.txt: 6440) +.stats.viddler.com +# ||stats.twistage.com^ (easyprivacy.txt: 6439) +.stats.twistage.com +# ||stats.topofblogs.com^ (easyprivacy.txt: 6438) +.stats.topofblogs.com +# ||stats.svpply.com^ (easyprivacy.txt: 6437) +.stats.svpply.com +# ||stats.surfaid.ihost.com^ (easyprivacy.txt: 6436) +.stats.surfaid.ihost.com +# ||stats.staging.suite101.com^ (easyprivacy.txt: 6435) +.stats.staging.suite101.com +# ||stats.snappytv.com^ (easyprivacy.txt: 6434) +.stats.snappytv.com +# ||stats.snacktools.net^ (easyprivacy.txt: 6433) +.stats.snacktools.net +# ||stats.smartclip.net^ (easyprivacy.txt: 6432) +.stats.smartclip.net +# ||stats.shopify.com^ (easyprivacy.txt: 6431) +.stats.shopify.com +# ||stats.sawlive.tv^ (easyprivacy.txt: 6429) +.stats.sawlive.tv +# ||stats.sa-as.com^ (easyprivacy.txt: 6428) +.stats.sa-as.com +# ||stats.ref2000.com^ (easyprivacy.txt: 6427) +.stats.ref2000.com +# ||stats.qmerce.com^ (easyprivacy.txt: 6426) +.stats.qmerce.com +# ||stats.polldaddy.com^ (easyprivacy.txt: 6425) +.stats.polldaddy.com +# ||stats.ozwebsites.biz^ (easyprivacy.txt: 6424) +.stats.ozwebsites.biz +# ||stats.olark.com^ (easyprivacy.txt: 6423) +.stats.olark.com +# ||stats.netbopdev.co.uk^ (easyprivacy.txt: 6422) +.stats.netbopdev.co.uk +# ||stats.nebula.fi^ (easyprivacy.txt: 6421) +.stats.nebula.fi +# ||stats.manticoretechnology.com^ (easyprivacy.txt: 6420) +.stats.manticoretechnology.com +# ||stats.magnify.net^ (easyprivacy.txt: 6419) +.stats.magnify.net +# ||stats.lotlinx.com^ (easyprivacy.txt: 6418) +.stats.lotlinx.com +# ||stats.load.com^ (easyprivacy.txt: 6417) +.stats.load.com +# ||stats.lightningcast.net^ (easyprivacy.txt: 6416) +.stats.lightningcast.net +# ||stats.kaltura.com^ (easyprivacy.txt: 6415) +.stats.kaltura.com +# ||stats.itweb.co.za^ (easyprivacy.txt: 6414) +.stats.itweb.co.za +# ||stats.inergizedigitalmedia.com^ (easyprivacy.txt: 6413) +.stats.inergizedigitalmedia.com +# ||stats.indexstats.com^ (easyprivacy.txt: 6412) +.stats.indexstats.com +# ||stats.highwire.com^ (easyprivacy.txt: 6411) +.stats.highwire.com +# ||stats.geegain.com^ (easyprivacy.txt: 6410) +.stats.geegain.com +# ||stats.g.doubleclick.net^ (easyprivacy.txt: 6409) +.stats.g.doubleclick.net +# ||stats.free-rein.net^ (easyprivacy.txt: 6408) +.stats.free-rein.net +# ||stats.edicy.com^ (easyprivacy.txt: 6407) +.stats.edicy.com +# ||stats.directnic.com^ (easyprivacy.txt: 6406) +.stats.directnic.com +# ||stats.dice.com^ (easyprivacy.txt: 6405) +.stats.dice.com +# ||stats.datahjaelp.net^ (easyprivacy.txt: 6404) +.stats.datahjaelp.net +# ||stats.complex.com^ (easyprivacy.txt: 6403) +.stats.complex.com +# ||stats.cnevids.com^ (easyprivacy.txt: 6402) +.stats.cnevids.com +# ||stats.cloudwp.io^ (easyprivacy.txt: 6401) +.stats.cloudwp.io +# ||stats.clickability.com^ (easyprivacy.txt: 6399) +.stats.clickability.com +# ||stats.cdn.playfair.co.za^ (easyprivacy.txt: 6398) +.stats.cdn.playfair.co.za +# ||stats.cdn.pfn.bz^ (easyprivacy.txt: 6397) +.stats.cdn.pfn.bz +# ||stats.bluebillywig.com^ (easyprivacy.txt: 6396) +.stats.bluebillywig.com +# ||stats.bitgravity.com^ (easyprivacy.txt: 6395) +.stats.bitgravity.com +# ||stats.big-boards.com^ (easyprivacy.txt: 6394) +.stats.big-boards.com +# ||stats.adm-vids.com^ (easyprivacy.txt: 6393) +.stats.adm-vids.com +# ||stats.24.com^ (easyprivacy.txt: 6392) +.stats.24.com +# ||stats-newyork1.bloxcms.com^ (easyprivacy.txt: 6391) +.stats-newyork1.bloxcms.com +# ||statm.the-adult-company.com^ (easyprivacy.txt: 6390) +.statm.the-adult-company.com +# ||statking.net^*/count.js (easyprivacy.txt: 6389) +.statking.net/.*/count\.js +# ||statistics.wibiya.com^ (easyprivacy.txt: 6388) +.statistics.wibiya.com +# ||statistics.tattermedia.com^ (easyprivacy.txt: 6387) +.statistics.tattermedia.com +# ||statistics.infowap.info^ (easyprivacy.txt: 6385) +.statistics.infowap.info +# ||statdb.pressflex.com^ (easyprivacy.txt: 6383) +.statdb.pressflex.com +# ||stat.web-regie.com^ (easyprivacy.txt: 6382) +.stat.web-regie.com +# ||stat.segitek.hu^ (easyprivacy.txt: 6380) +.stat.segitek.hu +# ||stat.pladform.ru^ (easyprivacy.txt: 6379) +.stat.pladform.ru +# ||stat.php-d.com^ (easyprivacy.txt: 6378) +.stat.php-d.com +# ||stat.itp-nyc.com^ (easyprivacy.txt: 6377) +.stat.itp-nyc.com +# ||stat.ed.cupidplc.com^ (easyprivacy.txt: 6376) +.stat.ed.cupidplc.com +# ||stat.easydate.biz^ (easyprivacy.txt: 6375) +.stat.easydate.biz +# ||spread.ly^*/statistics.php (easyprivacy.txt: 6372) +.spread.ly/.*/statistics\.php +# ||spoods.rce.veeseo.com^ (easyprivacy.txt: 6371) +.spoods.rce.veeseo.com +# ||spinmediacdn.com/clarity-*.js (easyprivacy.txt: 6370) +.spinmediacdn.com/clarity-.*\.js +# ||speedtrap.shopdirect.com^ (easyprivacy.txt: 6369) +.speedtrap.shopdirect.com +# ||sparklit.com/counter/ (easyprivacy.txt: 6367) +.sparklit.com/counter/ +# ||spaceprogram.com/webstats/ (easyprivacy.txt: 6366) +.spaceprogram.com/webstats/ +# ||spacedust.netmediaeurope.com^ (easyprivacy.txt: 6365) +.spacedust.netmediaeurope.com +# ||southafricahome.com/statsmodulev2/ (easyprivacy.txt: 6364) +.southafricahome.com/statsmodulev2/ +# ||soundcloud.com^*/plays?referer= (easyprivacy.txt: 6362) +.soundcloud.com/.*/plays\?referer= +# ||sohu.com/stat/ (easyprivacy.txt: 6361) +.sohu.com/stat/ +# ||smartertravel.com/ext/pixel/ (easyprivacy.txt: 6357) +.smartertravel.com/ext/pixel/ +# ||slidesharecdn.com/images/1x1.gif? (easyprivacy.txt: 6356) +.slidesharecdn.com/images/1x1\.gif\? +# ||skysa.com/tracker/ (easyprivacy.txt: 6353) +.skysa.com/tracker/ +# ||skimresources.com/api/ref-banners.js (easyprivacy.txt: 6352) +.skimresources.com/api/ref-banners\.js +# ||sitereports.officelive.com^ (easyprivacy.txt: 6351) +.sitereports.officelive.com +# ||sinajs.cn/open/analytics/ (easyprivacy.txt: 6349) +.sinajs.cn/open/analytics/ +# ||signup.advance.net^*affiliate (easyprivacy.txt: 6348) +.signup.advance.net/.*affiliate +# ||sightmaxondemand.com/wreal/sightmaxagentinterface/monitor.smjs (easyprivacy.txt: 6347) +.sightmaxondemand.com/wreal/sightmaxagentinterface/monitor\.smjs +# ||shoplocal.com/it.ashx? (easyprivacy.txt: 6345) +.shoplocal.com/it\.ashx\? +# ||shareholder.com/track/ (easyprivacy.txt: 6343) +.shareholder.com/track/ +# ||shareaholic.com/partners.js (easyprivacy.txt: 6342) +.shareaholic.com/partners\.js +# ||shareaholic.com/analytics_ (easyprivacy.txt: 6341) +.shareaholic.com/analytics_ +# ||sftrack.searchforce.net^ (easyprivacy.txt: 6340) +.sftrack.searchforce.net +# ||sendtonews.com/player/loggingajax.php? (easyprivacy.txt: 6339) +.sendtonews.com/player/loggingajax\.php\? +# ||seg.sharethis.com^ (easyprivacy.txt: 6337) +.seg.sharethis.com +# ||searchstats.usa.gov^ (easyprivacy.txt: 6333) +.searchstats.usa.gov +# ||searchmaestros.com/trackpoint/ (easyprivacy.txt: 6332) +.searchmaestros.com/trackpoint/ +# ||searchcompletion.com/BannerHandler.ashx (easyprivacy.txt: 6331) +.searchcompletion.com/BannerHandler\.ashx +# ||scripts.psyma.com^ (easyprivacy.txt: 6329) +.scripts.psyma.com +# ||scribol.com/traffix/widget_tracker/ (easyprivacy.txt: 6328) +.scribol.com/traffix/widget_tracker/ +# ||saymedia.com/latest/tetrapak.js (easyprivacy.txt: 6326) +.saymedia.com/latest/tetrapak\.js +# ||sana.newsinc.com^ (easyprivacy.txt: 6324) +.sana.newsinc.com +# ||salesforce.com/sfga.js (easyprivacy.txt: 6323) +.salesforce.com/sfga\.js +# ||s3-tracking.synthasite.net.s3.amazonaws.com^ (easyprivacy.txt: 6319) +.s3-tracking.synthasite.net.s3.amazonaws.com +# ||s.sniphub.com^ (easyprivacy.txt: 6318) +.s.sniphub.com +# ||s.clickability.com^ (easyprivacy.txt: 6317) +.s.clickability.com +# ||ru4.com/click? (easyprivacy.txt: 6316) +.ru4.com/click\? +# ||rtt.campanja.com^ (easyprivacy.txt: 6315) +.rtt.campanja.com +# ||rs.sinajs.cn^ (easyprivacy.txt: 6314) +.rs.sinajs.cn +# ||royalecms.com/statistics.php? (easyprivacy.txt: 6313) +.royalecms.com/statistics\.php\? +# ||rokt.com/pixel/ (easyprivacy.txt: 6312) +.rokt.com/pixel/ +# ||roitrack.addlvr.com^ (easyprivacy.txt: 6311) +.roitrack.addlvr.com +# ||richrelevance.com/rrserver/tracking? (easyprivacy.txt: 6309) +.richrelevance.com/rrserver/tracking\? +# ||rich-agent.s3.amazonaws.com^ (easyprivacy.txt: 6308) +.rich-agent.s3.amazonaws.com +# ||ria.ru/js/counter.js (easyprivacy.txt: 6307) +.ria.ru/js/counter\.js +# ||rhapsody.com^*/pixel? (easyprivacy.txt: 6306) +.rhapsody.com/.*/pixel\? +# ||reverbnation.com/widgets/trk/ (easyprivacy.txt: 6305) +.reverbnation.com/widgets/trk/ +# ||reports.tstlabs.co.uk^ (easyprivacy.txt: 6303) +.reports.tstlabs.co.uk +# ||reports.pagesuite-professional.co.uk^ (easyprivacy.txt: 6302) +.reports.pagesuite-professional.co.uk +# ||reports.maxperview.com^ (easyprivacy.txt: 6301) +.reports.maxperview.com +# ||reportinglogger.my.rightster.com^ (easyprivacy.txt: 6300) +.reportinglogger.my.rightster.com +# ||reporting.singlefeed.com^ (easyprivacy.txt: 6299) +.reporting.singlefeed.com +# ||reporting.handll.net^ (easyprivacy.txt: 6297) +.reporting.handll.net +# ||report.downloastar.com^ (easyprivacy.txt: 6296) +.report.downloastar.com +# ||replyat.com/gadgetpagecounter*.asp? (easyprivacy.txt: 6295) +.replyat.com/gadgetpagecounter.*\.asp\? +# ||referrer.disqus.com^ (easyprivacy.txt: 6294) +.referrer.disqus.com +# ||reevoo.com^*/track/ (easyprivacy.txt: 6293) +.reevoo.com/.*/track/ +# ||reevoo.com/track_url/ (easyprivacy.txt: 6292) +.reevoo.com/track_url/ +# ||reevoo.com/track/ (easyprivacy.txt: 6291) +.reevoo.com/track/ +# ||realtidbits.com^*/analytics.js (easyprivacy.txt: 6287) +.realtidbits.com/.*/analytics\.js +# ||realplayer.com^*/pixel? (easyprivacy.txt: 6286) +.realplayer.com/.*/pixel\? +# ||readcube.com/tracking/ (easyprivacy.txt: 6285) +.readcube.com/tracking/ +# ||readcube.com/ping? (easyprivacy.txt: 6284) +.readcube.com/ping\? +# ||rbl.ms/res/users/tracking/ (easyprivacy.txt: 6283) +.rbl.ms/res/users/tracking/ +# ||radiocompanion.com/count.php? (easyprivacy.txt: 6282) +.radiocompanion.com/count\.php\? +# ||rackcdn.com^*/analytics.js (easyprivacy.txt: 6281) +.rackcdn.com/.*/analytics\.js +# ||rackcdn.com/knotice.api.js (easyprivacy.txt: 6279) +.rackcdn.com/knotice\.api\.js +# ||rackcdn.com/icon2.gif? (easyprivacy.txt: 6278) +.rackcdn.com/icon2\.gif\? +# ||rackcdn.com/easie.js (easyprivacy.txt: 6277) +.rackcdn.com/easie\.js +# ||rackcdn.com/1x1.gif? (easyprivacy.txt: 6276) +.rackcdn.com/1x1\.gif\? +# ||ra.ripple6.com^ (easyprivacy.txt: 6275) +.ra.ripple6.com +# ||r.msn.com^ (easyprivacy.txt: 6273) +.r.msn.com +# ||quisma.com/tracking/ (easyprivacy.txt: 6272) +.quisma.com/tracking/ +# ||qubitanalytics.appspot.com^ (easyprivacy.txt: 6271) +.qubitanalytics.appspot.com +# ||qualtrics.com^*/metrics (easyprivacy.txt: 6270) +.qualtrics.com/.*/metrics +# ||qq.com/stats? (easyprivacy.txt: 6269) +.qq.com/stats\? +# ||qq.com/ping.js? (easyprivacy.txt: 6268) +.qq.com/ping\.js\? +# ||qq.com/heatmap/ (easyprivacy.txt: 6267) +.qq.com/heatmap/ +# ||qos.video.yimg.com^ (easyprivacy.txt: 6266) +.qos.video.yimg.com +# ||px.topspin.net^ (easyprivacy.txt: 6264) +.px.topspin.net +# ||px.owneriq.net^ (easyprivacy.txt: 6263) +.px.owneriq.net +# ||px.excitedigitalmedia.com^ (easyprivacy.txt: 6262) +.px.excitedigitalmedia.com +# ||pussy.org^*/track.php (easyprivacy.txt: 6260) +.pussy.org/.*/track\.php +# ||pussy.org^*.cgi?pid= (easyprivacy.txt: 6259) +.pussy.org/.*\.cgi\?pid= +# ||purevideo.com^*/pvshim.gif? (easyprivacy.txt: 6258) +.purevideo.com/.*/pvshim\.gif\? +# ||publicbroadcasting.net/analytics/ (easyprivacy.txt: 6256) +.publicbroadcasting.net/analytics/ +# ||pub.sheknows.com^ (easyprivacy.txt: 6255) +.pub.sheknows.com +# ||ptsc.shoplocal.com^ (easyprivacy.txt: 6254) +.ptsc.shoplocal.com +# ||pt.crossmediaservices.com^ (easyprivacy.txt: 6253) +.pt.crossmediaservices.com +# ||prstats.postrelease.com^ (easyprivacy.txt: 6251) +.prstats.postrelease.com +# ||projecthaile.com/js/trb-1.js (easyprivacy.txt: 6246) +.projecthaile.com/js/trb-1\.js +# ||production.mcs.delve.cust.lldns.net^ (easyprivacy.txt: 6245) +.production.mcs.delve.cust.lldns.net +# ||production-mcs.lvp.llnw.net^ (easyprivacy.txt: 6244) +.production-mcs.lvp.llnw.net +# ||production-eqbc.lvp.llnw.net^ (easyprivacy.txt: 6243) +.production-eqbc.lvp.llnw.net +# ||print2webcorp.com/mkt3/_js/p2w_tracker.js (easyprivacy.txt: 6241) +.print2webcorp.com/mkt3/_js/p2w_tracker\.js +# ||praekelt.com^*/webtracker.js (easyprivacy.txt: 6240) +.praekelt.com/.*/webtracker\.js +# ||pr.blogflux.com^ (easyprivacy.txt: 6239) +.pr.blogflux.com +# ||ppx.com/tracking/ (easyprivacy.txt: 6238) +.ppx.com/tracking/ +# ||powersearch.us.com^ (easyprivacy.txt: 6237) +.powersearch.us.com +# ||poweredbyeden.com/widget/tracker/ (easyprivacy.txt: 6236) +.poweredbyeden.com/widget/tracker/ +# ||potaroo.net/1x1.png? (easyprivacy.txt: 6235) +.potaroo.net/1x1\.png\? +# ||postpixel.vindicosuite.com^ (easyprivacy.txt: 6234) +.postpixel.vindicosuite.com +# ||pornhost.com/count_hit_player.php (easyprivacy.txt: 6232) +.pornhost.com/count_hit_player\.php +# ||pong.production.gannettdigital.com^ (easyprivacy.txt: 6231) +.pong.production.gannettdigital.com +# ||pmetrics.performancing.com^ (easyprivacy.txt: 6230) +.pmetrics.performancing.com +# ||plugins.longtailvideo.com/yourlytics (easyprivacy.txt: 6229) +.plugins.longtailvideo.com/yourlytics +# ||plugins.longtailvideo.com/googlytics (easyprivacy.txt: 6228) +.plugins.longtailvideo.com/googlytics +# ||playtomic.com/Tracker/ (easyprivacy.txt: 6227) +.playtomic.com/Tracker/ +# ||player.ooyala.com/errors/report? (easyprivacy.txt: 6226) +.player.ooyala.com/errors/report\? +# ||planet49.com/log/ (easyprivacy.txt: 6223) +.planet49.com/log/ +# ||pixhosting.com/ct/jct.php? (easyprivacy.txt: 6222) +.pixhosting.com/ct/jct\.php\? +# ||pixel.yola.com^ (easyprivacy.txt: 6220) +.pixel.yola.com +# ||pixel.yabidos.com^ (easyprivacy.txt: 6219) +.pixel.yabidos.com +# ||pixel.wp.com^ (easyprivacy.txt: 6217) +.pixel.wp.com +# ||pixel.vmm-satellite2.com^ (easyprivacy.txt: 6216) +.pixel.vmm-satellite2.com +# ||pixel.tree.com^ (easyprivacy.txt: 6215) +.pixel.tree.com +# ||pixel.solvemedia.com^ (easyprivacy.txt: 6214) +.pixel.solvemedia.com +# ||pixel.newsdata.com.au^ (easyprivacy.txt: 6213) +.pixel.newsdata.com.au +# ||pixel.newscred.com^ (easyprivacy.txt: 6212) +.pixel.newscred.com +# ||pixel.indieclicktv.com/annonymous/ (easyprivacy.txt: 6211) +.pixel.indieclicktv.com/annonymous/ +# ||pixel.glimr.io^ (easyprivacy.txt: 6210) +.pixel.glimr.io +# ||pixel.fanbridge.com^ (easyprivacy.txt: 6209) +.pixel.fanbridge.com +# ||pixel.condenastdigital.com^ (easyprivacy.txt: 6208) +.pixel.condenastdigital.com +# ||pixel.colorupmedia.com^ (easyprivacy.txt: 6207) +.pixel.colorupmedia.com +# ||pix.impdesk.com^ (easyprivacy.txt: 6205) +.pix.impdesk.com +# ||pipedream.wistia.com^ (easyprivacy.txt: 6204) +.pipedream.wistia.com +# ||pings.conviva.com^ (easyprivacy.txt: 6203) +.pings.conviva.com +# ||ping.smyte.com^ (easyprivacy.txt: 6202) +.ping.smyte.com +# ||ping.rasset.ie^ (easyprivacy.txt: 6201) +.ping.rasset.ie +# ||ping.hellobar.com^ (easyprivacy.txt: 6200) +.ping.hellobar.com +# ||ping.dozuki.com^ (easyprivacy.txt: 6199) +.ping.dozuki.com +# ||ping.aclst.com^ (easyprivacy.txt: 6198) +.ping.aclst.com +# ||piano-media.com/ping (easyprivacy.txt: 6195) +.piano-media.com/ping +# ||piano-media.com/auth/index.php? (easyprivacy.txt: 6193) +.piano-media.com/auth/index\.php\? +# ||phoenix.untd.com^ (easyprivacy.txt: 6192) +.phoenix.untd.com +# ||phncdn.com/js/ssig_helper.js (easyprivacy.txt: 6191) +.phncdn.com/js/ssig_helper\.js +# ||pg.buzzfeed.com^ (easyprivacy.txt: 6190) +.pg.buzzfeed.com +# ||petitionermaster.appspot.com^ (easyprivacy.txt: 6188) +.petitionermaster.appspot.com +# ||pebed.dm.gg^ (easyprivacy.txt: 6187) +.pebed.dm.gg +# ||pcrl.co/js/jstracker.min.js (easyprivacy.txt: 6186) +.pcrl.co/js/jstracker\.min\.js +# ||paypalobjects.com^*/pixel.gif (easyprivacy.txt: 6184) +.paypalobjects.com/.*/pixel\.gif +# ||passport.pfn.bz^ (easyprivacy.txt: 6182) +.passport.pfn.bz +# ||partypoker.com^*/tracking- (easyprivacy.txt: 6181) +.partypoker.com/.*/tracking- +# ||partners.thefilter.com^ (easyprivacy.txt: 6180) +.partners.thefilter.com +# ||partner.cynapse.com^ (easyprivacy.txt: 6179) +.partner.cynapse.com +# ||pair.com/itero/tracker_ftc/ (easyprivacy.txt: 6178) +.pair.com/itero/tracker_ftc/ +# ||pageturnpro.com/tracker.aspx? (easyprivacy.txt: 6177) +.pageturnpro.com/tracker\.aspx\? +# ||p0.com/1x1 (easyprivacy.txt: 6176) +.p0.com/1x1 +# ||p.yotpo.com^ (easyprivacy.txt: 6175) +.p.yotpo.com +# ||p.po.st^*&vguid= (easyprivacy.txt: 6174) +.p.po.st/.*&vguid= +# ||p.po.st^*&pub= (easyprivacy.txt: 6173) +.p.po.st/.*&pub= +# ||p.po.st/p?pub= (easyprivacy.txt: 6171) +.p.po.st/p\?pub= +# ||p.dsero.net^ (easyprivacy.txt: 6170) +.p.dsero.net +# ||outbrain.com^*/widgetStatistics.js (easyprivacy.txt: 6168) +.outbrain.com/.*/widgetStatistics\.js +# ||ora.tv/j/ora_evttracking.js (easyprivacy.txt: 6166) +.ora.tv/j/ora_evttracking\.js +# ||ophan.co.uk/t.gif? (easyprivacy.txt: 6164) +.ophan.co.uk/t\.gif\? +# ||open.delivery.net^ (easyprivacy.txt: 6163) +.open.delivery.net +# ||ooyala.com^*/report?log (easyprivacy.txt: 6162) +.ooyala.com/.*/report\?log +# ||ooyala.com/verify? (easyprivacy.txt: 6161) +.ooyala.com/verify\? +# ||ooyala.com/sas/analytics? (easyprivacy.txt: 6160) +.ooyala.com/sas/analytics\? +# ||ooyala.com/authorized?analytics (easyprivacy.txt: 6159) +.ooyala.com/authorized\?analytics +# ||ooyala.com/3rdparty/comscore_ (easyprivacy.txt: 6158) +.ooyala.com/3rdparty/comscore_ +# ||oogala.com/impression.php? (easyprivacy.txt: 6157) +.oogala.com/impression\.php\? +# ||onsugar.com/static/ck.php? (easyprivacy.txt: 6156) +.onsugar.com/static/ck\.php\? +# ||onespot-tracking.herokuapp.com^ (easyprivacy.txt: 6155) +.onespot-tracking.herokuapp.com +# ||onescreen.net/os/static/pixels/ (easyprivacy.txt: 6154) +.onescreen.net/os/static/pixels/ +# ||om.1and1.co.uk^ (easyprivacy.txt: 6153) +.om.1and1.co.uk +# ||ohnorobot.com/verify.pl? (easyprivacy.txt: 6152) +.ohnorobot.com/verify\.pl\? +# ||offermatica.intuit.com^ (easyprivacy.txt: 6150) +.offermatica.intuit.com +# ||ocp.cnettv.com^*/Request.jsp? (easyprivacy.txt: 6147) +.ocp.cnettv.com/.*/Request\.jsp\? +# ||observer.ip-label.net^ (easyprivacy.txt: 6146) +.observer.ip-label.net +# ||o.aolcdn.com/js/mg1.js (easyprivacy.txt: 6145) +.o.aolcdn.com/js/mg1\.js +# ||o.addthis.com^ (easyprivacy.txt: 6144) +.o.addthis.com +# ||nude.hu/html/track.js (easyprivacy.txt: 6143) +.nude.hu/html/track\.js +# ||nspmotion.com/tracking/ (easyprivacy.txt: 6142) +.nspmotion.com/tracking/ +# ||nsdsvc.com/scripts/action-tracker.js (easyprivacy.txt: 6141) +.nsdsvc.com/scripts/action-tracker\.js +# ||ns.rvmkitt.com^ (easyprivacy.txt: 6140) +.ns.rvmkitt.com +# ||nova.dice.net^ (easyprivacy.txt: 6139) +.nova.dice.net +# ||nol.yahoo.com^ (easyprivacy.txt: 6137) +.nol.yahoo.com +# ||ninja.onap.io^ (easyprivacy.txt: 6136) +.ninja.onap.io +# ||neulion.vo.llnwd.net^*/track.js (easyprivacy.txt: 6132) +.neulion.vo.llnwd.net/.*/track\.js +# ||netscape.com/c.cgi? (easyprivacy.txt: 6131) +.netscape.com/c\.cgi\? +# ||netne.net/stats/ (easyprivacy.txt: 6130) +.netne.net/stats/ +# ||netbiscuits.net^*/analytics/ (easyprivacy.txt: 6129) +.netbiscuits.net/.*/analytics/ +# ||netalpaca.com/beacon (easyprivacy.txt: 6128) +.netalpaca.com/beacon +# ||neon-lab.com/neonbctracker.js (easyprivacy.txt: 6127) +.neon-lab.com/neonbctracker\.js +# ||neocounter.neoworx-blog-tools.net^ (easyprivacy.txt: 6126) +.neocounter.neoworx-blog-tools.net +# ||nbcudigitaladops.com/hosted/housepix.gif (easyprivacy.txt: 6125) +.nbcudigitaladops.com/hosted/housepix\.gif +# ||navlink.com/__utmala.js (easyprivacy.txt: 6124) +.navlink.com/__utmala\.js +# ||nastydollars.com/trk/ (easyprivacy.txt: 6123) +.nastydollars.com/trk/ +# ||mysociety.org/track/ (easyprivacy.txt: 6122) +.mysociety.org/track/ +# ||mysdcc.sdccd.edu^*/.log/ (easyprivacy.txt: 6121) +.mysdcc.sdccd.edu/.*/\.log/ +# ||mymarketing.co.il/Include/tracker.js (easyprivacy.txt: 6119) +.mymarketing.co.il/Include/tracker\.js +# ||myfreecams.com/mfc2/lib/o-mfccore.js (easyprivacy.txt: 6118) +.myfreecams.com/mfc2/lib/o-mfccore\.js +# ||myblueday.com^*/count.asp? (easyprivacy.txt: 6117) +.myblueday.com/.*/count\.asp\? +# ||mxmfb.com/rsps/img/ (easyprivacy.txt: 6116) +.mxmfb.com/rsps/img/ +# ||museter.com/track.php? (easyprivacy.txt: 6115) +.museter.com/track\.php\? +# ||mtvnservices.com/metrics/ (easyprivacy.txt: 6114) +.mtvnservices.com/metrics/ +# ||mtvnservices.com/aria/uuid.html (easyprivacy.txt: 6113) +.mtvnservices.com/aria/uuid\.html +# ||mtv.com^*spacer.gif? (easyprivacy.txt: 6112) +.mtv.com/.*spacer\.gif\? +# ||msecnd.net/scripts/a/ai.0.js (easyprivacy.txt: 6110) +.msecnd.net/scripts/a/ai\.0\.js +# ||modules.ooyala.com^*/analytics- (easyprivacy.txt: 6107) +.modules.ooyala.com/.*/analytics- +# ||mochiads.com/clk/ (easyprivacy.txt: 6106) +.mochiads.com/clk/ +# ||mmpstats.mirror-image.com^ (easyprivacy.txt: 6105) +.mmpstats.mirror-image.com +# ||mmi.bemobile.ua^ (easyprivacy.txt: 6104) +.mmi.bemobile.ua +# ||mlweb.dmlab.hu^ (easyprivacy.txt: 6103) +.mlweb.dmlab.hu +# ||ml.com/enterprisetagging/ (easyprivacy.txt: 6102) +.ml.com/enterprisetagging/ +# ||mkcms.com/stats.js (easyprivacy.txt: 6101) +.mkcms.com/stats\.js +# ||mitel.marketbright.com^ (easyprivacy.txt: 6100) +.mitel.marketbright.com +# ||mint.good.is^ (easyprivacy.txt: 6099) +.mint.good.is +# ||metrixlablw.customers.luna.net^ (easyprivacy.txt: 6097) +.metrixlablw.customers.luna.net +# ||metrics.wikinvest.com^ (easyprivacy.txt: 6096) +.metrics.wikinvest.com +# ||metrics.upcload.com^ (easyprivacy.txt: 6095) +.metrics.upcload.com +# ||metrics.toptenreviews.com^ (easyprivacy.txt: 6094) +.metrics.toptenreviews.com +# ||metrics.sonymusicd2c.com^ (easyprivacy.txt: 6093) +.metrics.sonymusicd2c.com +# ||metrics.seenon.com^ (easyprivacy.txt: 6092) +.metrics.seenon.com +# ||metrics.scribblelive.com^ (easyprivacy.txt: 6091) +.metrics.scribblelive.com +# ||metrics.loomia.com^ (easyprivacy.txt: 6090) +.metrics.loomia.com +# ||metrics.feedroom.com^ (easyprivacy.txt: 6089) +.metrics.feedroom.com +# ||metrics.el-mundo.net^ (easyprivacy.txt: 6088) +.metrics.el-mundo.net +# ||metrics.ctvdigital.net^ (easyprivacy.txt: 6087) +.metrics.ctvdigital.net +# ||metrics.chmedia.com^ (easyprivacy.txt: 6086) +.metrics.chmedia.com +# ||metrics.brightcove.com^ (easyprivacy.txt: 6085) +.metrics.brightcove.com +# ||metrics-api.librato.com^ (easyprivacy.txt: 6084) +.metrics-api.librato.com +# ||metric.nwsource.com^ (easyprivacy.txt: 6083) +.metric.nwsource.com +# ||metaffiliation.com^*^mclic= (easyprivacy.txt: 6081) +.metaffiliation.com/.*[^\w%.-]mclic= +# ||metabroadcast.com^*/log? (easyprivacy.txt: 6080) +.metabroadcast.com/.*/log\? +# ||merchenta.com/track/ (easyprivacy.txt: 6079) +.merchenta.com/track/ +# ||meebo.com/cim/sandbox.php? (easyprivacy.txt: 6078) +.meebo.com/cim/sandbox\.php\? +# ||mediaplex.com^*?mpt= (easyprivacy.txt: 6076) +.mediaplex.com/.*\?mpt= +# ||mediametrics.mpsa.com^ (easyprivacy.txt: 6074) +.mediametrics.mpsa.com +# ||mediaite.com^*/track/ (easyprivacy.txt: 6073) +.mediaite.com/.*/track/ +# ||mediabong.net/t/ (easyprivacy.txt: 6072) +.mediabong.net/t/ +# ||mediabong.com/t/ (easyprivacy.txt: 6071) +.mediabong.com/t/ +# ||media-imdb.com/twilight/? (easyprivacy.txt: 6070) +.media-imdb.com/twilight/\? +# ||mcssl.com^*/track.ashx? (easyprivacy.txt: 6068) +.mcssl.com/.*/track\.ashx\? +# ||mcs.delvenetworks.com^ (easyprivacy.txt: 6067) +.mcs.delvenetworks.com +# ||mc.yandex.ru^ (easyprivacy.txt: 6066) +.mc.yandex.ru +# ||mbsvr.net/js/tracker/ (easyprivacy.txt: 6065) +.mbsvr.net/js/tracker/ +# ||maxmind.com^*/geoip2.js (easyprivacy.txt: 6064) +.maxmind.com/.*/geoip2\.js +# ||maxmind.com^*/geoip.js (easyprivacy.txt: 6063) +.maxmind.com/.*/geoip\.js +# ||mashery.com/analytics/ (easyprivacy.txt: 6060) +.mashery.com/analytics/ +# ||marketinghub.hp.com^ (easyprivacy.txt: 6059) +.marketinghub.hp.com +# ||mansion.com/mts.tracker.js (easyprivacy.txt: 6058) +.mansion.com/mts\.tracker\.js +# ||mandrillapp.com/track/ (easyprivacy.txt: 6057) +.mandrillapp.com/track/ +# ||mail.ru/k? (easyprivacy.txt: 6054) +.mail.ru/k\? +# ||mail.ebay.com/img/*.gif (easyprivacy.txt: 6053) +.mail.ebay.com/img/.*\.gif +# ||mail-app.com/pvtracker/ (easyprivacy.txt: 6052) +.mail-app.com/pvtracker/ +# ||magnify360-cdn.s3.amazonaws.com^ (easyprivacy.txt: 6051) +.magnify360-cdn.s3.amazonaws.com +# ||magnify.net/decor/track/ (easyprivacy.txt: 6050) +.magnify.net/decor/track/ +# ||m.trb.com^ (easyprivacy.txt: 6048) +.m.trb.com +# ||lycos.com/hb.js (easyprivacy.txt: 6046) +.lycos.com/hb\.js +# ||lunametrics.wpengine.netdna-cdn.com^ (easyprivacy.txt: 6045) +.lunametrics.wpengine.netdna-cdn.com +# ||luminate.com/track/ (easyprivacy.txt: 6044) +.luminate.com/track/ +# ||ltassrv.com/track/ (easyprivacy.txt: 6043) +.ltassrv.com/track/ +# ||lt.tritondigital.com^ (easyprivacy.txt: 6042) +.lt.tritondigital.com +# ||lsimg.net^*/vs.js (easyprivacy.txt: 6041) +.lsimg.net/.*/vs\.js +# ||lp.vadio.com^ (easyprivacy.txt: 6040) +.lp.vadio.com +# ||loxodo-analytics.ext.nile.works^ (easyprivacy.txt: 6039) +.loxodo-analytics.ext.nile.works +# ||loomia.com^*/setcookie.html (easyprivacy.txt: 6037) +.loomia.com/.*/setcookie\.html +# ||longtailvideo.com^*/yourlytics- (easyprivacy.txt: 6035) +.longtailvideo.com/.*/yourlytics- +# ||logssl.enquisite.com^ (easyprivacy.txt: 6034) +.logssl.enquisite.com +# ||logs.vmixcore.com^ (easyprivacy.txt: 6033) +.logs.vmixcore.com +# ||logs.thebloggernetwork.com^ (easyprivacy.txt: 6032) +.logs.thebloggernetwork.com +# ||logs.spilgames.com^ (easyprivacy.txt: 6031) +.logs.spilgames.com +# ||loggingapi.spingo.com^ (easyprivacy.txt: 6030) +.loggingapi.spingo.com +# ||logging.carambo.la^ (easyprivacy.txt: 6029) +.logging.carambo.la +# ||logger.sociablelabs.com^ (easyprivacy.txt: 6028) +.logger.sociablelabs.com +# ||logger.logidea.info^ (easyprivacy.txt: 6027) +.logger.logidea.info +# ||log1.survey.io^ (easyprivacy.txt: 6026) +.log1.survey.io +# ||log.prezi.com^ (easyprivacy.txt: 6024) +.log.prezi.com +# ||log.pinterest.com^ (easyprivacy.txt: 6023) +.log.pinterest.com +# ||log.outbrain.com^ (easyprivacy.txt: 6022) +.log.outbrain.com +# ||log.olark.com^ (easyprivacy.txt: 6021) +.log.olark.com +# ||log.liverail.com^ (easyprivacy.txt: 6020) +.log.liverail.com +# ||log.kibboko.com^ (easyprivacy.txt: 6018) +.log.kibboko.com +# ||log.invodo.com^ (easyprivacy.txt: 6017) +.log.invodo.com +# ||log.ideamelt.com^ (easyprivacy.txt: 6016) +.log.ideamelt.com +# ||log-*.previewnetworks.com^ (easyprivacy.txt: 6014) +.log-*./.*\.previewnetworks\.com[^\w%.-] +.log-*.previewnetworks.com +# ||lockerz.com/1x1.gif? (easyprivacy.txt: 6013) +.lockerz.com/1x1\.gif\? +# ||location3.com/analytics/ (easyprivacy.txt: 6012) +.location3.com/analytics/ +# ||livestats.kaltura.com^ (easyprivacy.txt: 6011) +.livestats.kaltura.com +# ||liverail.com/track/? (easyprivacy.txt: 6010) +.liverail.com/track/\? +# ||liverail.com/?metric= (easyprivacy.txt: 6009) +.liverail.com/\?metric= +# ||livehelpnow.net/lhn/jsutil/getinvitationmessage.aspx? (easyprivacy.txt: 6008) +.livehelpnow.net/lhn/jsutil/getinvitationmessage\.aspx\? +# ||livefyre.com^*/tracking/ (easyprivacy.txt: 6007) +.livefyre.com/.*/tracking/ +# ||livefyre.com^*/tracker.js (easyprivacy.txt: 6006) +.livefyre.com/.*/tracker\.js +# ||livefyre.com/tracking/ (easyprivacy.txt: 6005) +.livefyre.com/tracking/ +# ||livefyre.com/libs/tracker/ (easyprivacy.txt: 6004) +.livefyre.com/libs/tracker/ +# ||livecounter.theyosh.nl^ (easyprivacy.txt: 6003) +.livecounter.theyosh.nl +# ||livechatinc.com^*/control.cgi? (easyprivacy.txt: 6002) +.livechatinc.com/.*/control\.cgi\? +# ||live2support.com^*/js_lstrk. (easyprivacy.txt: 6001) +.live2support.com/.*/js_lstrk\. +# ||list.fightforthefuture.org/mpss/o/*/o.gif (easyprivacy.txt: 6000) +.list.fightforthefuture.org/mpss/o/.*/o\.gif +# ||list-manage.com/track/ (easyprivacy.txt: 5999) +.list-manage.com/track/ +# ||linkwithin.com/pixel.png (easyprivacy.txt: 5998) +.linkwithin.com/pixel\.png +# ||linkbucks.com/visitScript/ (easyprivacy.txt: 5995) +.linkbucks.com/visitScript/ +# ||link.informer.com^ (easyprivacy.txt: 5994) +.link.informer.com +# ||link.indiegogo.com/img/ (easyprivacy.txt: 5993) +.link.indiegogo.com/img/ +# ||link.americastestkitchencorp.com^ (easyprivacy.txt: 5991) +.link.americastestkitchencorp.com +# ||lingows.appspot.com/page_data/? (easyprivacy.txt: 5990) +.lingows.appspot.com/page_data/\? +# ||lijit.com/res/images/wijitTrack.gif (easyprivacy.txt: 5988) +.lijit.com/res/images/wijitTrack\.gif +# ||lijit.com/ip.php? (easyprivacy.txt: 5987) +.lijit.com/ip\.php\? +# ||lijit.com/blog_wijits?*=trakr& (easyprivacy.txt: 5986) +.lijit.com/blog_wijits\?.*=trakr& +# ||lela.com/api/v2/tracking.js (easyprivacy.txt: 5985) +.lela.com/api/v2/tracking\.js +# ||legacy.com^*/unicaclicktracking.js? (easyprivacy.txt: 5984) +.legacy.com/.*/unicaclicktracking\.js\? +# ||legacy.com/globalscripts/tracking/ (easyprivacy.txt: 5983) +.legacy.com/globalscripts/tracking/ +# ||lederer.nl/incl/stats.js.php? (easyprivacy.txt: 5982) +.lederer.nl/incl/stats\.js\.php\? +# ||leadtracking.plumvoice.com^ (easyprivacy.txt: 5980) +.leadtracking.plumvoice.com +# ||leadpages.net^*/tracking.js (easyprivacy.txt: 5979) +.leadpages.net/.*/tracking\.js +# ||laurel.rovicorp.com^ (easyprivacy.txt: 5977) +.laurel.rovicorp.com +# ||laurel.macrovision.com^ (easyprivacy.txt: 5976) +.laurel.macrovision.com +# ||l.sharethis.com^ (easyprivacy.txt: 5975) +.l.sharethis.com +# ||l.player.ooyala.com^ (easyprivacy.txt: 5974) +.l.player.ooyala.com +# ||l.ooyala.com^ (easyprivacy.txt: 5973) +.l.ooyala.com +# ||l.coincident.tv^ (easyprivacy.txt: 5971) +.l.coincident.tv +# ||l-host.net/etn/omnilog? (easyprivacy.txt: 5970) +.l-host.net/etn/omnilog\? +# ||kiwari.com^*/impressions.asp? (easyprivacy.txt: 5969) +.kiwari.com/.*/impressions\.asp\? +# ||keyword.daumdn.com^ (easyprivacy.txt: 5968) +.keyword.daumdn.com +# ||keywee.co/analytics.js? (easyprivacy.txt: 5967) +.keywee.co/analytics\.js\? +# ||key4web.com^*/set_cookie_by_referer/ (easyprivacy.txt: 5966) +.key4web.com/.*/set_cookie_by_referer/ +# ||kdpgroupe.com/ea.js (easyprivacy.txt: 5965) +.kdpgroupe.com/ea\.js +# ||kaltura.com^*/statisticsPlugin.swf (easyprivacy.txt: 5963) +.kaltura.com/.*/statisticsPlugin\.swf +# ||kalstats.kaltura.com^ (easyprivacy.txt: 5962) +.kalstats.kaltura.com +# ||jsrdn.com/i/1.gif? (easyprivacy.txt: 5960) +.jsrdn.com/i/1\.gif\? +# ||join-safe.com/tracking/ (easyprivacy.txt: 5958) +.join-safe.com/tracking/ +# ||jobvite.com/analytics.js (easyprivacy.txt: 5957) +.jobvite.com/analytics\.js +# ||jobs.hrkspjbs.com^ (easyprivacy.txt: 5956) +.jobs.hrkspjbs.com +# ||javascriptcounter.appspot.com^ (easyprivacy.txt: 5955) +.javascriptcounter.appspot.com +# ||jailbaitchan.com/tp/ (easyprivacy.txt: 5953) +.jailbaitchan.com/tp/ +# ||iyisayfa.net/inc.php? (easyprivacy.txt: 5952) +.iyisayfa.net/inc\.php\? +# ||itracking.fccinteractive.com^ (easyprivacy.txt: 5951) +.itracking.fccinteractive.com +# ||isacglobal.com/sa.js (easyprivacy.txt: 5950) +.isacglobal.com/sa\.js +# ||intuitwebsites.com/tracking/ (easyprivacy.txt: 5949) +.intuitwebsites.com/tracking/ +# ||internetfuel.com/tracking/ (easyprivacy.txt: 5948) +.internetfuel.com/tracking/ +# ||interestsearch.net/videoTracker.js? (easyprivacy.txt: 5947) +.interestsearch.net/videoTracker\.js\? +# ||intensedebate.com/widgets/blogstats/ (easyprivacy.txt: 5945) +.intensedebate.com/widgets/blogstats/ +# ||intensedebate.com/remotevisit.php? (easyprivacy.txt: 5944) +.intensedebate.com/remotevisit\.php\? +# ||intelligencefocus.com^*/websensor.aspx? (easyprivacy.txt: 5943) +.intelligencefocus.com/.*/websensor\.aspx\? +# ||intelligencefocus.com^*/sensor.js (easyprivacy.txt: 5942) +.intelligencefocus.com/.*/sensor\.js +# ||intelligence.dgmsearchlab.com^ (easyprivacy.txt: 5941) +.intelligence.dgmsearchlab.com +# ||installiq.com/Pixels/ (easyprivacy.txt: 5940) +.installiq.com/Pixels/ +# ||insnw.net/instart/js/instart.js (easyprivacy.txt: 5939) +.insnw.net/instart/js/instart\.js +# ||insnw.net/assets/dsc/dsc.fingerprint- (easyprivacy.txt: 5938) +.insnw.net/assets/dsc/dsc\.fingerprint- +# ||insights.gravity.com^ (easyprivacy.txt: 5937) +.insights.gravity.com +# ||inq.com^*/onEvent?_ (easyprivacy.txt: 5935) +.inq.com/.*/onEvent\?_ +# ||inq.com/tagserver/tracking/ (easyprivacy.txt: 5934) +.inq.com/tagserver/tracking/ +# ||inq.com/tagserver/logging/ (easyprivacy.txt: 5933) +.inq.com/tagserver/logging/ +# ||inphonic.com/tracking/ (easyprivacy.txt: 5932) +.inphonic.com/tracking/ +# ||infusionsoft.com^*/getTrackingCode? (easyprivacy.txt: 5931) +.infusionsoft.com/.*/getTrackingCode\? +# ||infosniper.net/locate-ip-on-map.php (easyprivacy.txt: 5930) +.infosniper.net/locate-ip-on-map\.php +# ||infogr.am/logger.php? (easyprivacy.txt: 5929) +.infogr.am/logger\.php\? +# ||inboxtag.com/tag.swf (easyprivacy.txt: 5927) +.inboxtag.com/tag\.swf +# ||impi.tv/trackvideo.aspx? (easyprivacy.txt: 5926) +.impi.tv/trackvideo\.aspx\? +# ||imp.pix.com^ (easyprivacy.txt: 5925) +.imp.pix.com +# ||imghostsrc.com/counter.php? (easyprivacy.txt: 5921) +.imghostsrc.com/counter\.php\? +# ||imgfarm.com/images/trk/myexcitetr.gif? (easyprivacy.txt: 5919) +.imgfarm.com/images/trk/myexcitetr\.gif\? +# ||imageshack.us^*/thpix.gif (easyprivacy.txt: 5917) +.imageshack.us/.*/thpix\.gif +# ||images-amazon.com^*/AnalyticsReporter- (easyprivacy.txt: 5916) +.images-amazon.com/.*/AnalyticsReporter- +# ||images-amazon.com^*/Analytics- (easyprivacy.txt: 5915) +.images-amazon.com/.*/Analytics- +# ||images-amazon.com^*/1x1_trans.gif (easyprivacy.txt: 5914) +.images-amazon.com/.*/1x1_trans\.gif +# ||imagepix.okoshechka.net^*/?sid= (easyprivacy.txt: 5910) +.imagepix.okoshechka.net/.*/\?sid= +# ||icbdr.com/images/pixel.gif (easyprivacy.txt: 5907) +.icbdr.com/images/pixel\.gif +# ||i.s-microsoft.com/wedcs/ms.js (easyprivacy.txt: 5906) +.i.s-microsoft.com/wedcs/ms\.js +# ||i-stats.ieurop.net^ (easyprivacy.txt: 5905) +.i-stats.ieurop.net +# ||hubspot.com/tracking/ (easyprivacy.txt: 5904) +.hubspot.com/tracking/ +# ||hubspot.com/cs/loader-v2.js (easyprivacy.txt: 5903) +.hubspot.com/cs/loader-v2\.js +# ||hubspot.com/analytics/ (easyprivacy.txt: 5902) +.hubspot.com/analytics/ +# ||hqq.tv/js/counters.js (easyprivacy.txt: 5901) +.hqq.tv/js/counters\.js +# ||hostingtoolbox.com/bin/Count.cgi? (easyprivacy.txt: 5900) +.hostingtoolbox.com/bin/Count\.cgi\? +# ||hornymatches.com^*/visit.php? (easyprivacy.txt: 5899) +.hornymatches.com/.*/visit\.php\? +# ||hop.clickbank.net^ (easyprivacy.txt: 5898) +.hop.clickbank.net +# ||homestore.com/srv/ (easyprivacy.txt: 5897) +.homestore.com/srv/ +# ||hits.informer.com^ (easyprivacy.txt: 5895) +.hits.informer.com +# ||hits.dealer.com^ (easyprivacy.txt: 5894) +.hits.dealer.com +# ||hits-*.iubenda.com^ (easyprivacy.txt: 5893) +.hits-*./.*\.iubenda\.com[^\w%.-] +.hits-*.iubenda.com +# ||hi.hellobar.com^ (easyprivacy.txt: 5892) +.hi.hellobar.com +# ||hellobar.com/ping? (easyprivacy.txt: 5889) +.hellobar.com/ping\? +# ||haymarket.com/injector/deliver/ (easyprivacy.txt: 5886) +.haymarket.com/injector/deliver/ +# ||hasbro.com/includes/js/metrics/ (easyprivacy.txt: 5885) +.hasbro.com/includes/js/metrics/ +# ||harvester.ext.square-enix-europe.com^ (easyprivacy.txt: 5884) +.harvester.ext.square-enix-europe.com +# ||gubagoo.com/modules/tracking/ (easyprivacy.txt: 5883) +.gubagoo.com/modules/tracking/ +# ||gstatic.com/gen_204? (easyprivacy.txt: 5881) +.gstatic.com/gen_204\? +# ||gstatic.com/gadf/ga_dyn.js (easyprivacy.txt: 5880) +.gstatic.com/gadf/ga_dyn\.js +# ||gscounters.us1.gigya.com^ (easyprivacy.txt: 5879) +.gscounters.us1.gigya.com +# ||gscounters.gigya.com^ (easyprivacy.txt: 5878) +.gscounters.gigya.com +# ||gscounters.eu1.gigya.com^ (easyprivacy.txt: 5877) +.gscounters.eu1.gigya.com +# ||gridsumdissector.com/gs.gif? (easyprivacy.txt: 5876) +.gridsumdissector.com/gs\.gif\? +# ||gravity.com^*/beacons/ (easyprivacy.txt: 5875) +.gravity.com/.*/beacons/ +# ||grabnetworks.com/ping? (easyprivacy.txt: 5874) +.grabnetworks.com/ping\? +# ||grabnetworks.com/beacons/ (easyprivacy.txt: 5873) +.grabnetworks.com/beacons/ +# ||gowatchit.com^*/tracking/ (easyprivacy.txt: 5872) +.gowatchit.com/.*/tracking/ +# ||gotmojo.com/track/ (easyprivacy.txt: 5871) +.gotmojo.com/track/ +# ||gotdns.com/track/blank.aspx? (easyprivacy.txt: 5870) +.gotdns.com/track/blank\.aspx\? +# ||goroost.com/api/pageview? (easyprivacy.txt: 5869) +.goroost.com/api/pageview\? +# ||googleusercontent.com/tracker/ (easyprivacy.txt: 5868) +.googleusercontent.com/tracker/ +# ||googlecode.com^*/tracker.js (easyprivacy.txt: 5867) +.googlecode.com/.*/tracker\.js +# ||googleapis.com^*/gen_204? (easyprivacy.txt: 5866) +.googleapis.com/.*/gen_204\? +# ||godaddy.com/js/gdwebbeacon.js (easyprivacy.txt: 5865) +.godaddy.com/js/gdwebbeacon\.js +# ||goaww.com/stats.php (easyprivacy.txt: 5864) +.goaww.com/stats\.php +# ||goals.ar.gy/bug.gif? (easyprivacy.txt: 5863) +.goals.ar.gy/bug\.gif\? +# ||goadv.com^*/track.js (easyprivacy.txt: 5862) +.goadv.com/.*/track\.js +# ||go.optifuze.com^ (easyprivacy.txt: 5860) +.go.optifuze.com +# ||glbdns.microsoft.com^ (easyprivacy.txt: 5858) +.glbdns.microsoft.com +# ||glam.com/ctagsimgcmd.act? (easyprivacy.txt: 5857) +.glam.com/ctagsimgcmd\.act\? +# ||glam.com/cece/agof/ (easyprivacy.txt: 5856) +.glam.com/cece/agof/ +# ||github.com/notifications/beacon/ (easyprivacy.txt: 5855) +.github.com/notifications/beacon/ +# ||gigya.com^*/cimp.gif? (easyprivacy.txt: 5854) +.gigya.com/.*/cimp\.gif\? +# ||getrockerbox.com/pixel? (easyprivacy.txt: 5853) +.getrockerbox.com/pixel\? +# ||getpos.de/ext/ (easyprivacy.txt: 5852) +.getpos.de/ext/ +# ||getglue.com^*/count? (easyprivacy.txt: 5850) +.getglue.com/.*/count\? +# ||geoservice.curse.com^ (easyprivacy.txt: 5849) +.geoservice.curse.com +# ||geolocation.performgroup.com^ (easyprivacy.txt: 5848) +.geolocation.performgroup.com +# ||geoip.taskforce.is^ (easyprivacy.txt: 5847) +.geoip.taskforce.is +# ||geobar.ziffdavisinternational.com^ (easyprivacy.txt: 5846) +.geobar.ziffdavisinternational.com +# ||geo.query.yahoo.com^ (easyprivacy.txt: 5845) +.geo.query.yahoo.com +# ||geo.q5media.net^ (easyprivacy.txt: 5844) +.geo.q5media.net +# ||geo.ltassrv.com^ (easyprivacy.txt: 5843) +.geo.ltassrv.com +# ||geo.kontagent.net^ (easyprivacy.txt: 5842) +.geo.kontagent.net +# ||geo.ertya.com^ (easyprivacy.txt: 5840) +.geo.ertya.com +# ||geckofoot.com/gfvisitormap.aspx? (easyprivacy.txt: 5839) +.geckofoot.com/gfvisitormap\.aspx\? +# ||geckofoot.com/gfcounterimg.aspx? (easyprivacy.txt: 5838) +.geckofoot.com/gfcounterimg\.aspx\? +# ||gcion.com/gcion.ashx? (easyprivacy.txt: 5837) +.gcion.com/gcion\.ashx\? +# ||gatehousemedia.com/wickedlocal/ip.js (easyprivacy.txt: 5836) +.gatehousemedia.com/wickedlocal/ip\.js +# ||gamegecko.com/gametrack? (easyprivacy.txt: 5835) +.gamegecko.com/gametrack\? +# ||ga.webdigi.co.uk^ (easyprivacy.txt: 5834) +.ga.webdigi.co.uk +# ||ga-beacon.appspot.com^ (easyprivacy.txt: 5833) +.ga-beacon.appspot.com +# ||fyre.co^*/tracking/ (easyprivacy.txt: 5831) +.fyre.co/.*/tracking/ +# ||fwix.com^*/trackclicks_ (easyprivacy.txt: 5830) +.fwix.com/.*/trackclicks_ +# ||fwix.com/ref.js (easyprivacy.txt: 5829) +.fwix.com/ref\.js +# ||ftimg.net/js/log.js? (easyprivacy.txt: 5828) +.ftimg.net/js/log\.js\? +# ||friends.totallynsfw.com^ (easyprivacy.txt: 5826) +.friends.totallynsfw.com +# ||freedom.com^*/analytics/ (easyprivacy.txt: 5824) +.freedom.com/.*/analytics/ +# ||freedom.com^*/analytic/ (easyprivacy.txt: 5823) +.freedom.com/.*/analytic/ +# ||freecurrencyrates.com/statgif. (easyprivacy.txt: 5822) +.freecurrencyrates.com/statgif\. +# ||foxcontent.com/tracking/ (easyprivacy.txt: 5821) +.foxcontent.com/tracking/ +# ||forms.aweber.com^*/displays.htm?id= (easyprivacy.txt: 5820) +.forms.aweber.com/.*/displays\.htm\?id= +# ||footballmedia.com/tracking/ (easyprivacy.txt: 5819) +.footballmedia.com/tracking/ +# ||fonts.com/t/trackingCode.js (easyprivacy.txt: 5818) +.fonts.com/t/trackingCode\.js +# ||followistic.com/widget/stat/ (easyprivacy.txt: 5817) +.followistic.com/widget/stat/ +# ||flux.com/geo.html? (easyprivacy.txt: 5816) +.flux.com/geo\.html\? +# ||fls-na.amazon.com^ (easyprivacy.txt: 5815) +.fls-na.amazon.com +# ||flixster.com^*/analytics. (easyprivacy.txt: 5814) +.flixster.com/.*/analytics\. +# ||flex.msn.com/mstag/ (easyprivacy.txt: 5812) +.flex.msn.com/mstag/ +# ||flashstats.libsyn.com^ (easyprivacy.txt: 5811) +.flashstats.libsyn.com +# ||flashi.tv/histats.php? (easyprivacy.txt: 5810) +.flashi.tv/histats\.php\? +# ||filament-stats.herokuapp.com^ (easyprivacy.txt: 5808) +.filament-stats.herokuapp.com +# ||feedsportal.com^*/1x1.gif? (easyprivacy.txt: 5807) +.feedsportal.com/.*/1x1\.gif\? +# ||feedcat.net/button/ (easyprivacy.txt: 5806) +.feedcat.net/button/ +# ||feed.informer.com/fdstats (easyprivacy.txt: 5803) +.feed.informer.com/fdstats +# ||fastcounter.onlinehoster.net^ (easyprivacy.txt: 5802) +.fastcounter.onlinehoster.net +# ||fastcounter.bcentral.com^ (easyprivacy.txt: 5801) +.fastcounter.bcentral.com +# ||fairfax.com.au/js/track/ (easyprivacy.txt: 5800) +.fairfax.com.au/js/track/ +# ||facebook.com/tr? (easyprivacy.txt: 5798) +.facebook.com/tr\? +# ||facebook.com/tr/? (easyprivacy.txt: 5797) +.facebook.com/tr/\? +# ||facebook.com/js/conversions/tracking.js (easyprivacy.txt: 5795) +.facebook.com/js/conversions/tracking\.js +# ||facebook.com/fr/u.php? (easyprivacy.txt: 5794) +.facebook.com/fr/u\.php\? +# ||facebook.com/email_open_log_pic.php (easyprivacy.txt: 5793) +.facebook.com/email_open_log_pic\.php +# ||facebook.com/common/scribe_endpoint.php (easyprivacy.txt: 5792) +.facebook.com/common/scribe_endpoint\.php +# ||facebook.com/brandlift.php (easyprivacy.txt: 5791) +.facebook.com/brandlift\.php +# ||facebook.com*/impression.php (easyprivacy.txt: 5790) +.facebook.com*./(.*/)?impression\.php +# ||exct.net/open.aspx? (easyprivacy.txt: 5789) +.exct.net/open\.aspx\? +# ||evri.com/analytics/ (easyprivacy.txt: 5787) +.evri.com/analytics/ +# ||events.realgravity.com^ (easyprivacy.txt: 5784) +.events.realgravity.com +# ||events.marquee-cdn.net^ (easyprivacy.txt: 5783) +.events.marquee-cdn.net +# ||events.jotform.com^ (easyprivacy.txt: 5782) +.events.jotform.com +# ||events.eyeviewdigital.com^*.gif?r= (easyprivacy.txt: 5781) +.events.eyeviewdigital.com/.*\.gif\?r= +# ||eventlog.inspsearchapi.com^ (easyprivacy.txt: 5780) +.eventlog.inspsearchapi.com +# ||eventlog.inspsearch.com^ (easyprivacy.txt: 5779) +.eventlog.inspsearch.com +# ||event.trove.com^ (easyprivacy.txt: 5778) +.event.trove.com +# ||event.previewnetworks.com^ (easyprivacy.txt: 5777) +.event.previewnetworks.com +# ||eulerian.sarenza.com/collector/ (easyprivacy.txt: 5775) +.eulerian.sarenza.com/collector/ +# ||etoro.com/tradesmonitor/ (easyprivacy.txt: 5774) +.etoro.com/tradesmonitor/ +# ||etahub.com^*/track?site_id (easyprivacy.txt: 5772) +.etahub.com/.*/track\?site_id +# ||et.grabnetworks.com^ (easyprivacy.txt: 5771) +.et.grabnetworks.com +# ||eservicesanalytics.com.au^ (easyprivacy.txt: 5770) +.eservicesanalytics.com.au +# ||erne.co/tags? (easyprivacy.txt: 5769) +.erne.co/tags\? +# ||epromote.co.za/track/ (easyprivacy.txt: 5768) +.epromote.co.za/track/ +# ||entry-stats.huffpost.com^ (easyprivacy.txt: 5767) +.entry-stats.huffpost.com +# ||ensighten.com/error/e.php? (easyprivacy.txt: 5766) +.ensighten.com/error/e\.php\? +# ||emsecure.net/optiext/webtracker.dll (easyprivacy.txt: 5764) +.emsecure.net/optiext/webtracker\.dll +# ||emihosting.com^*/tracking/ (easyprivacy.txt: 5763) +.emihosting.com/.*/tracking/ +# ||embed.docstoc.com/Flash.asmx/StoreReffer? (easyprivacy.txt: 5762) +.embed.docstoc.com/Flash\.asmx/StoreReffer\? +# ||emarketeer.com/tracker/ (easyprivacy.txt: 5761) +.emarketeer.com/tracker/ +# ||els-cdn.com^*/analytics.js (easyprivacy.txt: 5758) +.els-cdn.com/.*/analytics\.js +# ||elb.amazonaws.com/small.gif? (easyprivacy.txt: 5757) +.elb.amazonaws.com/small\.gif\? +# ||elb.amazonaws.com/partner.gif? (easyprivacy.txt: 5756) +.elb.amazonaws.com/partner\.gif\? +# ||elb.amazonaws.com/g.aspx?surl= (easyprivacy.txt: 5755) +.elb.amazonaws.com/g\.aspx\?surl= +# ||edgesuite.net^*/googleanalyt (easyprivacy.txt: 5752) +.edgesuite.net/.*/googleanalyt +# ||edge.sqweb.com^ (easyprivacy.txt: 5751) +.edge.sqweb.com +# ||ecustomeropinions.com^*/i.php? (easyprivacy.txt: 5749) +.ecustomeropinions.com/.*/i\.php\? +# ||ecustomeropinions.com/survey/nojs.php? (easyprivacy.txt: 5748) +.ecustomeropinions.com/survey/nojs\.php\? +# ||ebaystatic.com^*/tracking_RaptorheaderJS.js (easyprivacy.txt: 5746) +.ebaystatic.com/.*/tracking_RaptorheaderJS\.js +# ||ebay.northernhost.com^ (easyprivacy.txt: 5743) +.ebay.northernhost.com +# ||e.ebidtech.com/cv/ (easyprivacy.txt: 5742) +.e.ebidtech.com/cv/ +# ||e-activist.com^*/broadcast.record.message.open.do? (easyprivacy.txt: 5740) +.e-activist.com/.*/broadcast\.record\.message\.open\.do\? +# ||dzxxxg6ij9u99.cloudfront.net^ (easyprivacy.txt: 5739) +.dzxxxg6ij9u99.cloudfront.net +# ||dw.com.com^ (easyprivacy.txt: 5738) +.dw.com.com +# ||dw.cbsi.com^ (easyprivacy.txt: 5737) +.dw.cbsi.com +# ||dufue2m4sondk.cloudfront.net^ (easyprivacy.txt: 5736) +.dufue2m4sondk.cloudfront.net +# ||dtym7iokkjlif.cloudfront.net/dough/ (easyprivacy.txt: 5734) +.dtym7iokkjlif.cloudfront.net/dough/ +# ||dt.sellpoint.net^ (easyprivacy.txt: 5733) +.dt.sellpoint.net +# ||ds-aksb-a.akamaihd.net^ (easyprivacy.txt: 5732) +.ds-aksb-a.akamaihd.net +# ||doug1izaerwt3.cloudfront.net^ (easyprivacy.txt: 5730) +.doug1izaerwt3.cloudfront.net +# ||domodomain.com^*/ddsense.aspx? (easyprivacy.txt: 5729) +.domodomain.com/.*/ddsense\.aspx\? +# ||dnn506yrbagrg.cloudfront.net^ (easyprivacy.txt: 5728) +.dnn506yrbagrg.cloudfront.net +# ||dn-net.com/cc.js (easyprivacy.txt: 5727) +.dn-net.com/cc\.js +# ||dmdentertainment.com^*/video_debug.gif? (easyprivacy.txt: 5726) +.dmdentertainment.com/.*/video_debug\.gif\? +# ||dmcdn.net/behavior/ (easyprivacy.txt: 5725) +.dmcdn.net/behavior/ +# ||dl1d2m8ri9v3j.cloudfront.net^ (easyprivacy.txt: 5724) +.dl1d2m8ri9v3j.cloudfront.net +# ||dkj2m377b0yzw.cloudfront.net^ (easyprivacy.txt: 5723) +.dkj2m377b0yzw.cloudfront.net +# ||djibeacon.djns.com^ (easyprivacy.txt: 5722) +.djibeacon.djns.com +# ||distillery.wistia.com^ (easyprivacy.txt: 5721) +.distillery.wistia.com +# ||disqus.com/stats.html (easyprivacy.txt: 5720) +.disqus.com/stats\.html +# ||discoverymail.com/a/*/spacer.gif (easyprivacy.txt: 5717) +.discoverymail.com/a/.*/spacer\.gif +# ||dirt.dennis.co.uk^ (easyprivacy.txt: 5716) +.dirt.dennis.co.uk +# ||directnews.co.uk/feedtrack/ (easyprivacy.txt: 5715) +.directnews.co.uk/feedtrack/ +# ||digitalgov.gov/Universal-Federated-Analytics-Min.js (easyprivacy.txt: 5714) +.digitalgov.gov/Universal-Federated-Analytics-Min\.js +# ||digimedia.com/pageviews.php? (easyprivacy.txt: 5713) +.digimedia.com/pageviews\.php\? +# ||dialglobal.com^*/Log.aspx? (easyprivacy.txt: 5712) +.dialglobal.com/.*/Log\.aspx\? +# ||dfdbz2tdq3k01.cloudfront.net^ (easyprivacy.txt: 5711) +.dfdbz2tdq3k01.cloudfront.net +# ||dfanalytics.dealerfire.com^ (easyprivacy.txt: 5710) +.dfanalytics.dealerfire.com +# ||detect.ergebnis-dienst.de^ (easyprivacy.txt: 5709) +.detect.ergebnis-dienst.de +# ||desert.ru/tracking/ (easyprivacy.txt: 5708) +.desert.ru/tracking/ +# ||demandmedia.com/wm.js (easyprivacy.txt: 5706) +.demandmedia.com/wm\.js +# ||delvenetworks.com/player/plugins/analytics/ (easyprivacy.txt: 5705) +.delvenetworks.com/player/plugins/analytics/ +# ||deb.gs/track/ (easyprivacy.txt: 5702) +.deb.gs/track/ +# ||dealerfire.com/analytics/ (easyprivacy.txt: 5701) +.dealerfire.com/analytics/ +# ||dealer.com^*/tracking/ (easyprivacy.txt: 5700) +.dealer.com/.*/tracking/ +# ||dc8na2hxrj29i.cloudfront.net^ (easyprivacy.txt: 5699) +.dc8na2hxrj29i.cloudfront.net +# ||daylogs.com/counter/ (easyprivacy.txt: 5698) +.daylogs.com/counter/ +# ||data.alexa.com^ (easyprivacy.txt: 5691) +.data.alexa.com +# ||daq0d0aotgq0f.cloudfront.net^ (easyprivacy.txt: 5690) +.daq0d0aotgq0f.cloudfront.net +# ||dailymotion-ams.gravityrd-services.com^ (easyprivacy.txt: 5689) +.dailymotion-ams.gravityrd-services.com +# ||d9lq0o81skkdj.cloudfront.net^ (easyprivacy.txt: 5688) +.d9lq0o81skkdj.cloudfront.net +# ||d81mfvml8p5ml.cloudfront.net^ (easyprivacy.txt: 5687) +.d81mfvml8p5ml.cloudfront.net +# ||d6jkenny8w8yo.cloudfront.net^ (easyprivacy.txt: 5686) +.d6jkenny8w8yo.cloudfront.net +# ||d5i9o0tpq9sa1.cloudfront.net^ (easyprivacy.txt: 5685) +.d5i9o0tpq9sa1.cloudfront.net +# ||d4ax0r5detcsu.cloudfront.net^ (easyprivacy.txt: 5684) +.d4ax0r5detcsu.cloudfront.net +# ||d3s7ggfq1s6jlj.cloudfront.net^ (easyprivacy.txt: 5683) +.d3s7ggfq1s6jlj.cloudfront.net +# ||d3qxef4rp70elm.cloudfront.net/m.js (easyprivacy.txt: 5682) +.d3qxef4rp70elm.cloudfront.net/m\.js +# ||d3ojzyhbolvoi5.cloudfront.net^ (easyprivacy.txt: 5681) +.d3ojzyhbolvoi5.cloudfront.net +# ||d3l3lkinz3f56t.cloudfront.net^ (easyprivacy.txt: 5680) +.d3l3lkinz3f56t.cloudfront.net +# ||d3hr5gm0wlxm5h.cloudfront.net^ (easyprivacy.txt: 5679) +.d3hr5gm0wlxm5h.cloudfront.net +# ||d3h1v5cflrhzi4.cloudfront.net^ (easyprivacy.txt: 5678) +.d3h1v5cflrhzi4.cloudfront.net +# ||d3ezl4ajpp2zy8.cloudfront.net^ (easyprivacy.txt: 5677) +.d3ezl4ajpp2zy8.cloudfront.net +# ||d3cxv97fi8q177.cloudfront.net^ (easyprivacy.txt: 5676) +.d3cxv97fi8q177.cloudfront.net +# ||d3avqv6zaxegeu.cloudfront.net^ (easyprivacy.txt: 5675) +.d3avqv6zaxegeu.cloudfront.net +# ||d3a2okcloueqyx.cloudfront.net^ (easyprivacy.txt: 5674) +.d3a2okcloueqyx.cloudfront.net +# ||d396ihyrqc81w.cloudfront.net^ (easyprivacy.txt: 5673) +.d396ihyrqc81w.cloudfront.net +# ||d36wtdrdo22bqa.cloudfront.net^ (easyprivacy.txt: 5672) +.d36wtdrdo22bqa.cloudfront.net +# ||d36lvucg9kzous.cloudfront.net^ (easyprivacy.txt: 5671) +.d36lvucg9kzous.cloudfront.net +# ||d34ko97cxuv4p7.cloudfront.net^ (easyprivacy.txt: 5670) +.d34ko97cxuv4p7.cloudfront.net +# ||d33im0067v833a.cloudfront.net^ (easyprivacy.txt: 5669) +.d33im0067v833a.cloudfront.net +# ||d3135glefggiep.cloudfront.net^ (easyprivacy.txt: 5668) +.d3135glefggiep.cloudfront.net +# ||d303e3cdddb4ded4b6ff495a7b496ed5.s3.amazonaws.com^ (easyprivacy.txt: 5667) +.d303e3cdddb4ded4b6ff495a7b496ed5.s3.amazonaws.com +# ||d2xgf76oeu9pbh.cloudfront.net^ (easyprivacy.txt: 5666) +.d2xgf76oeu9pbh.cloudfront.net +# ||d2tgfbvjf3q6hn.cloudfront.net^ (easyprivacy.txt: 5665) +.d2tgfbvjf3q6hn.cloudfront.net +# ||d2so4705rl485y.cloudfront.net^ (easyprivacy.txt: 5664) +.d2so4705rl485y.cloudfront.net +# ||d2ry9vue95px0b.cloudfront.net^ (easyprivacy.txt: 5663) +.d2ry9vue95px0b.cloudfront.net +# ||d2oh4tlt9mrke9.cloudfront.net^ (easyprivacy.txt: 5662) +.d2oh4tlt9mrke9.cloudfront.net +# ||d2nxi61n77zqpl.cloudfront.net^ (easyprivacy.txt: 5661) +.d2nxi61n77zqpl.cloudfront.net +# ||d2nq0f8d9ofdwv.cloudfront.net/track.js (easyprivacy.txt: 5660) +.d2nq0f8d9ofdwv.cloudfront.net/track\.js +# ||d2kmrmwhq7wkvs.cloudfront.net^ (easyprivacy.txt: 5659) +.d2kmrmwhq7wkvs.cloudfront.net +# ||d2gfi8ctn6kki7.cloudfront.net^ (easyprivacy.txt: 5658) +.d2gfi8ctn6kki7.cloudfront.net +# ||d2d5uvkqie1lr5.cloudfront.net^*/analytics. (easyprivacy.txt: 5657) +.d2d5uvkqie1lr5.cloudfront.net/.*/analytics\. +# ||d2d5uvkqie1lr5.cloudfront.net^*/analytics- (easyprivacy.txt: 5656) +.d2d5uvkqie1lr5.cloudfront.net/.*/analytics- +# ||d28g9g3vb08y70.cloudfront.net^ (easyprivacy.txt: 5655) +.d28g9g3vb08y70.cloudfront.net +# ||d27s92d8z1yatv.cloudfront.net/js/jquery.jw.analitycs.js (easyprivacy.txt: 5654) +.d27s92d8z1yatv.cloudfront.net/js/jquery\.jw\.analitycs\.js +# ||d23p9gffjvre9v.cloudfront.net^ (easyprivacy.txt: 5653) +.d23p9gffjvre9v.cloudfront.net +# ||d21o24qxwf7uku.cloudfront.net^ (easyprivacy.txt: 5652) +.d21o24qxwf7uku.cloudfront.net +# ||d1z2jf7jlzjs58.cloudfront.net^ (easyprivacy.txt: 5651) +.d1z2jf7jlzjs58.cloudfront.net +# ||d1yu5hbtu8mng9.cloudfront.net^ (easyprivacy.txt: 5650) +.d1yu5hbtu8mng9.cloudfront.net +# ||d1wscoizcbxzhp.cloudfront.net^ (easyprivacy.txt: 5649) +.d1wscoizcbxzhp.cloudfront.net +# ||d1ros97qkrwjf5.cloudfront.net^ (easyprivacy.txt: 5648) +.d1ros97qkrwjf5.cloudfront.net +# ||d1rgnfh960lz2b.cloudfront.net^ (easyprivacy.txt: 5647) +.d1rgnfh960lz2b.cloudfront.net +# ||d1r27qvpjiaqj3.cloudfront.net^ (easyprivacy.txt: 5646) +.d1r27qvpjiaqj3.cloudfront.net +# ||d1qpxk1wfeh8v1.cloudfront.net^ (easyprivacy.txt: 5645) +.d1qpxk1wfeh8v1.cloudfront.net +# ||d1nh2vjpqpfnin.cloudfront.net^ (easyprivacy.txt: 5644) +.d1nh2vjpqpfnin.cloudfront.net +# ||d1lm7kd3bd3yo9.cloudfront.net^ (easyprivacy.txt: 5643) +.d1lm7kd3bd3yo9.cloudfront.net +# ||d1ivexoxmp59q7.cloudfront.net^*/live.js (easyprivacy.txt: 5642) +.d1ivexoxmp59q7.cloudfront.net/.*/live\.js +# ||d1gp8joe0evc8s.cloudfront.net^ (easyprivacy.txt: 5641) +.d1gp8joe0evc8s.cloudfront.net +# ||d1clufhfw8sswh.cloudfront.net^ (easyprivacy.txt: 5640) +.d1clufhfw8sswh.cloudfront.net +# ||d1clfvuu2240eh.cloudfront.net^ (easyprivacy.txt: 5639) +.d1clfvuu2240eh.cloudfront.net +# ||d1cerpgff739r9.cloudfront.net^ (easyprivacy.txt: 5638) +.d1cerpgff739r9.cloudfront.net +# ||d1cdnlzf6usiff.cloudfront.net^ (easyprivacy.txt: 5637) +.d1cdnlzf6usiff.cloudfront.net +# ||d169bbxks24g2u.cloudfront.net^ (easyprivacy.txt: 5636) +.d169bbxks24g2u.cloudfront.net +# ||d.shareaholic.com^ (easyprivacy.txt: 5635) +.d.shareaholic.com +# ||cx.atdmt.com^ (easyprivacy.txt: 5633) +.cx.atdmt.com +# ||customerlobby.com/ctrack- (easyprivacy.txt: 5632) +.customerlobby.com/ctrack- +# ||curate.nestedmedia.com^ (easyprivacy.txt: 5631) +.curate.nestedmedia.com +# ||cumulus-cloud.com/trackers/ (easyprivacy.txt: 5630) +.cumulus-cloud.com/trackers/ +# ||cts.vresp.com^ (easyprivacy.txt: 5629) +.cts.vresp.com +# ||ct.pinterest.com^ (easyprivacy.txt: 5623) +.ct.pinterest.com +# ||ct.needlive.com^ (easyprivacy.txt: 5622) +.ct.needlive.com +# ||csi.gstatic.com^ (easyprivacy.txt: 5619) +.csi.gstatic.com +# ||crowdfactory.com/tracker/ (easyprivacy.txt: 5618) +.crowdfactory.com/tracker/ +# ||crm-vwg.com/tracker/ (easyprivacy.txt: 5617) +.crm-vwg.com/tracker/ +# ||creativecdn.com/tags? (easyprivacy.txt: 5616) +.creativecdn.com/tags\? +# ||creativecdn.com/pix/? (easyprivacy.txt: 5615) +.creativecdn.com/pix/\? +# ||counters.gigya.com^ (easyprivacy.txt: 5613) +.counters.gigya.com +# ||counters.freewebs.com^ (easyprivacy.txt: 5612) +.counters.freewebs.com +# ||counter.yadro.ru^ (easyprivacy.txt: 5611) +.counter.yadro.ru +# ||counter.webmasters.bpath.com^ (easyprivacy.txt: 5610) +.counter.webmasters.bpath.com +# ||counter.webcom.com^ (easyprivacy.txt: 5609) +.counter.webcom.com +# ||counter.sparklit.com^ (easyprivacy.txt: 5608) +.counter.sparklit.com +# ||counter.scribblelive.net^ (easyprivacy.txt: 5607) +.counter.scribblelive.net +# ||counter.scribblelive.com^ (easyprivacy.txt: 5606) +.counter.scribblelive.com +# ||counter.rambler.ru^ (easyprivacy.txt: 5605) +.counter.rambler.ru +# ||counter.powweb.com^ (easyprivacy.txt: 5604) +.counter.powweb.com +# ||counter.pax.com^ (easyprivacy.txt: 5603) +.counter.pax.com +# ||counter.pagesview.com^ (easyprivacy.txt: 5602) +.counter.pagesview.com +# ||counter.mgaserv.com^ (easyprivacy.txt: 5601) +.counter.mgaserv.com +# ||counter.maases.com^ (easyprivacy.txt: 5600) +.counter.maases.com +# ||counter.hyipexplorer.com^ (easyprivacy.txt: 5599) +.counter.hyipexplorer.com +# ||counter.htmlvalidator.com^ (easyprivacy.txt: 5598) +.counter.htmlvalidator.com +# ||counter.cam-content.com^ (easyprivacy.txt: 5597) +.counter.cam-content.com +# ||counter.bloke.com^ (easyprivacy.txt: 5596) +.counter.bloke.com +# ||count.paycounter.com^ (easyprivacy.txt: 5595) +.count.paycounter.com +# ||count.me.uk^ (easyprivacy.txt: 5594) +.count.me.uk +# ||count.channeladvisor.com^ (easyprivacy.txt: 5593) +.count.channeladvisor.com +# ||count.carrierzone.com^ (easyprivacy.txt: 5592) +.count.carrierzone.com +# ||cookiex.ngd.yahoo.com^ (easyprivacy.txt: 5591) +.cookiex.ngd.yahoo.com +# ||cookies.livepartners.com^ (easyprivacy.txt: 5590) +.cookies.livepartners.com +# ||content.cpcache.com^*/js/ga.js (easyprivacy.txt: 5587) +.content.cpcache.com/.*/js/ga\.js +# ||contactatonce.com/VisitorContext.aspx? (easyprivacy.txt: 5586) +.contactatonce.com/VisitorContext\.aspx\? +# ||concur.com/open.aspx? (easyprivacy.txt: 5585) +.concur.com/open\.aspx\? +# ||compendiumblog.com/js/stats.js (easyprivacy.txt: 5584) +.compendiumblog.com/js/stats\.js +# ||communicatorcorp.com^*/conversiontracking.js (easyprivacy.txt: 5583) +.communicatorcorp.com/.*/conversiontracking\.js +# ||comic-rocket.com/metrics.js (easyprivacy.txt: 5582) +.comic-rocket.com/metrics\.js +# ||comet.ibsrv.net^ (easyprivacy.txt: 5581) +.comet.ibsrv.net +# ||collector.nextguide.tv^ (easyprivacy.txt: 5580) +.collector.nextguide.tv +# ||collector.apester.com^ (easyprivacy.txt: 5579) +.collector.apester.com +# ||collector.air.tv^ (easyprivacy.txt: 5578) +.collector.air.tv +# ||collection.acromas.com^ (easyprivacy.txt: 5577) +.collection.acromas.com +# ||collect.igodigital.com^ (easyprivacy.txt: 5576) +.collect.igodigital.com +# ||cnt.mastorage.net^ (easyprivacy.txt: 5574) +.cnt.mastorage.net +# ||cnt.3dmy.net^ (easyprivacy.txt: 5573) +.cnt.3dmy.net +# ||cnpapers.com/scripts/library/ (easyprivacy.txt: 5572) +.cnpapers.com/scripts/library/ +# ||cnevids.com/metrics/ (easyprivacy.txt: 5571) +.cnevids.com/metrics/ +# ||cnetcontent.com/log? (easyprivacy.txt: 5570) +.cnetcontent.com/log\? +# ||cms-pixel.crowdreport.com^ (easyprivacy.txt: 5569) +.cms-pixel.crowdreport.com +# ||cmmeglobal.com^*/page-view? (easyprivacy.txt: 5568) +.cmmeglobal.com/.*/page-view\? +# ||cmmeglobal.com/evt? (easyprivacy.txt: 5567) +.cmmeglobal.com/evt\? +# ||cm.g.doubleclick.net^ (easyprivacy.txt: 5566) +.cm.g.doubleclick.net +# ||cloudfront.net/tracker.js (easyprivacy.txt: 5565) +.cloudfront.net/tracker\.js +# ||cloudfront.net/trackb.html (easyprivacy.txt: 5564) +.cloudfront.net/trackb\.html +# ||cloudfront.net/track? (easyprivacy.txt: 5563) +.cloudfront.net/track\? +# ||cloudfront.net/track.html (easyprivacy.txt: 5562) +.cloudfront.net/track\.html +# ||cloudfront.net/sso.js (easyprivacy.txt: 5561) +.cloudfront.net/sso\.js +# ||cloudfront.net/sentinel.js (easyprivacy.txt: 5560) +.cloudfront.net/sentinel\.js +# ||cloudfront.net/rum/bacon.min.js (easyprivacy.txt: 5559) +.cloudfront.net/rum/bacon\.min\.js +# ||cloudfront.net/pt1x1.gif (easyprivacy.txt: 5558) +.cloudfront.net/pt1x1\.gif +# ||cloudfront.net/performable/ (easyprivacy.txt: 5557) +.cloudfront.net/performable/ +# ||cloudfront.net/log.js? (easyprivacy.txt: 5556) +.cloudfront.net/log\.js\? +# ||cloudfront.net/js/reach.js (easyprivacy.txt: 5555) +.cloudfront.net/js/reach\.js +# ||cloudfront.net/dough/*/recipe.js (easyprivacy.txt: 5554) +.cloudfront.net/dough/.*/recipe\.js +# ||cloudfront.net/code/keen-2.1.0-min.js (easyprivacy.txt: 5553) +.cloudfront.net/code/keen-2\.1\.0-min\.js +# ||cloudfront.net/bti/ (easyprivacy.txt: 5552) +.cloudfront.net/bti/ +# ||cloudfront.net/autotracker. (easyprivacy.txt: 5551) +.cloudfront.net/autotracker\. +# ||cloudfront.net/analyticsengine/ (easyprivacy.txt: 5550) +.cloudfront.net/analyticsengine/ +# ||cloudfront.net/analytics.js (easyprivacy.txt: 5549) +.cloudfront.net/analytics\.js +# ||cloudfront.net/abw.js (easyprivacy.txt: 5548) +.cloudfront.net/abw\.js +# ||cloudfront.net*/trk.js (easyprivacy.txt: 5547) +.cloudfront.net*./(.*/)?trk\.js +# ||cloudfront.net*/tracker.js (easyprivacy.txt: 5546) +.cloudfront.net*./(.*/)?tracker\.js +# ||cloudfront.net*/sp.js (easyprivacy.txt: 5545) +.cloudfront.net*./(.*/)?sp\.js +# ||cloudfront.net*/keywee.min.js (easyprivacy.txt: 5544) +.cloudfront.net*./(.*/)?keywee\.min\.js +# ||cloudfront-labs.amazonaws.com^ (easyprivacy.txt: 5543) +.cloudfront-labs.amazonaws.com +# ||cloudapp.net/l/ (easyprivacy.txt: 5542) +.cloudapp.net/l/ +# ||clnk.me/_t.gif? (easyprivacy.txt: 5541) +.clnk.me/_t\.gif\? +# ||clipsyndicate.com/cs_api/cliplog? (easyprivacy.txt: 5540) +.clipsyndicate.com/cs_api/cliplog\? +# ||clientstat.castup.net^ (easyprivacy.txt: 5539) +.clientstat.castup.net +# ||clicktracks.aristotle.net^ (easyprivacy.txt: 5537) +.clicktracks.aristotle.net +# ||clicktracker.iscan.nl^ (easyprivacy.txt: 5536) +.clicktracker.iscan.nl +# ||clicktalecdn.sslcs.cdngc.net^ (easyprivacy.txt: 5534) +.clicktalecdn.sslcs.cdngc.net +# ||clicktale.pantherssl.com^ (easyprivacy.txt: 5533) +.clicktale.pantherssl.com +# ||clickstream.loomia.com^ (easyprivacy.txt: 5532) +.clickstream.loomia.com +# ||clicks.dealer.com^ (easyprivacy.txt: 5531) +.clicks.dealer.com +# ||clickchatsold.com/d0/ (easyprivacy.txt: 5529) +.clickchatsold.com/d0/ +# ||click.geopaysys.com^ (easyprivacy.txt: 5525) +.click.geopaysys.com +# ||click.email.*/open.aspx? (easyprivacy.txt: 5524) +.click.email.*./(.*/)?open\.aspx\? +# ||click.appinthestore.com^ (easyprivacy.txt: 5522) +.click.appinthestore.com +# ||clearspring.com/t/ (easyprivacy.txt: 5521) +.clearspring.com/t/ +# ||clearspring.com/at/ (easyprivacy.txt: 5520) +.clearspring.com/at/ +# ||citysearch.com/tracker/ (easyprivacy.txt: 5519) +.citysearch.com/tracker/ +# ||citygridmedia.com/tracker/ (easyprivacy.txt: 5518) +.citygridmedia.com/tracker/ +# ||circonus.com/hit? (easyprivacy.txt: 5517) +.circonus.com/hit\? +# ||chtah.com^*/1x1.gif (easyprivacy.txt: 5514) +.chtah.com/.*/1x1\.gif +# ||choicestream.com^*/pixel/ (easyprivacy.txt: 5512) +.choicestream.com/.*/pixel/ +# ||chartaca.com.s3.amazonaws.com^ (easyprivacy.txt: 5511) +.chartaca.com.s3.amazonaws.com +# ||chanalytics.merchantadvantage.com^ (easyprivacy.txt: 5510) +.chanalytics.merchantadvantage.com +# ||cgicounter.puretec.de^ (easyprivacy.txt: 5509) +.cgicounter.puretec.de +# ||cgicounter.oneandone.co.uk^ (easyprivacy.txt: 5508) +.cgicounter.oneandone.co.uk +# ||cf.overblog.com^ (easyprivacy.txt: 5507) +.cf.overblog.com +# ||centerix.ru^*/count.msl? (easyprivacy.txt: 5506) +.centerix.ru/.*/count\.msl\? +# ||ce.lijit.com^ (easyprivacy.txt: 5505) +.ce.lijit.com +# ||cdnplanet.com/static/rum/rum.js (easyprivacy.txt: 5504) +.cdnplanet.com/static/rum/rum\.js +# ||cdnma.com/apps/capture.js (easyprivacy.txt: 5503) +.cdnma.com/apps/capture\.js +# ||cc.swiftype.com^ (easyprivacy.txt: 5500) +.cc.swiftype.com +# ||caspionlog.appspot.com^ (easyprivacy.txt: 5499) +.caspionlog.appspot.com +# ||carl.pubsvs.com^ (easyprivacy.txt: 5498) +.carl.pubsvs.com +# ||carambo.la/logging/ (easyprivacy.txt: 5497) +.carambo.la/logging/ +# ||carambo.la/analytics/ (easyprivacy.txt: 5496) +.carambo.la/analytics/ +# ||capture.camify.com/dc? (easyprivacy.txt: 5495) +.capture.camify.com/dc\? +# ||capture.bi.movideo.com/dc? (easyprivacy.txt: 5494) +.capture.bi.movideo.com/dc\? +# ||canvas-usage-v2.conduit-data.com^ (easyprivacy.txt: 5493) +.canvas-usage-v2.conduit-data.com +# ||canvas-ping.conduit-data.com^ (easyprivacy.txt: 5492) +.canvas-ping.conduit-data.com +# ||cadreon.s3.amazonaws.com^ (easyprivacy.txt: 5491) +.cadreon.s3.amazonaws.com +# ||cache2.delvenetworks.com^ (easyprivacy.txt: 5490) +.cache2.delvenetworks.com +# ||c3metrics.medifast1.com^ (easyprivacy.txt: 5489) +.c3metrics.medifast1.com +# ||c2s-openrtb.liverail.com^ (easyprivacy.txt: 5488) +.c2s-openrtb.liverail.com +# ||c.ypcdn.com^*?ptid (easyprivacy.txt: 5487) +.c.ypcdn.com/.*\?ptid +# ||c.ypcdn.com^*&ptid (easyprivacy.txt: 5486) +.c.ypcdn.com/.*&ptid +# ||c.wen.ru^ (easyprivacy.txt: 5485) +.c.wen.ru +# ||c.homestore.com^ (easyprivacy.txt: 5484) +.c.homestore.com +# ||c.compete.com^ (easyprivacy.txt: 5483) +.c.compete.com +# ||bzpics.com/jslib/st.js? (easyprivacy.txt: 5482) +.bzpics.com/jslib/st\.js\? +# ||bzgint.com/CUNCollector/ (easyprivacy.txt: 5481) +.bzgint.com/CUNCollector/ +# ||buzzbox.buzzfeed.com^ (easyprivacy.txt: 5480) +.buzzbox.buzzfeed.com +# ||bumpin.com^*/analytics.html (easyprivacy.txt: 5478) +.bumpin.com/.*/analytics\.html +# ||btn.clickability.com^ (easyprivacy.txt: 5476) +.btn.clickability.com +# ||browserscope.org/user/beacon/ (easyprivacy.txt: 5475) +.browserscope.org/user/beacon/ +# ||bright.bncnt.com^ (easyprivacy.txt: 5474) +.bright.bncnt.com +# ||breakmedia.com/track.jpg? (easyprivacy.txt: 5473) +.breakmedia.com/track\.jpg\? +# ||breakingburner.com/stats.html? (easyprivacy.txt: 5472) +.breakingburner.com/stats\.html\? +# ||break.com/apextracker/ (easyprivacy.txt: 5470) +.break.com/apextracker/ +# ||bravenet.com/counter/ (easyprivacy.txt: 5469) +.bravenet.com/counter/ +# ||brandaffinity.net/icetrack/ (easyprivacy.txt: 5468) +.brandaffinity.net/icetrack/ +# ||bpath.com/count.dll? (easyprivacy.txt: 5467) +.bpath.com/count\.dll\? +# ||bobparsons.com/image.aspx? (easyprivacy.txt: 5466) +.bobparsons.com/image\.aspx\? +# ||bmw.com^*/tracking_add_ons.js (easyprivacy.txt: 5465) +.bmw.com/.*/tracking_add_ons\.js +# ||blogblog.com/tracker/ (easyprivacy.txt: 5464) +.blogblog.com/tracker/ +# ||blamcity.com/log/ (easyprivacy.txt: 5462) +.blamcity.com/log/ +# ||bizsolutions.strands.com^ (easyprivacy.txt: 5461) +.bizsolutions.strands.com +# ||bizrate.com^*/survey_ (easyprivacy.txt: 5460) +.bizrate.com/.*/survey_ +# ||bizrate.co.uk/js/survey_ (easyprivacy.txt: 5459) +.bizrate.co.uk/js/survey_ +# ||bizrate-images.com^*/tracker.js (easyprivacy.txt: 5458) +.bizrate-images.com/.*/tracker\.js +# ||bizrate-images.co.uk^*/tracker.js (easyprivacy.txt: 5457) +.bizrate-images.co.uk/.*/tracker\.js +# ||bitgravity.com^*/tracking/ (easyprivacy.txt: 5456) +.bitgravity.com/.*/tracking/ +# ||bit.ly/stats? (easyprivacy.txt: 5454) +.bit.ly/stats\? +# ||bing.com/bat.js (easyprivacy.txt: 5453) +.bing.com/bat\.js +# ||bing.com/action/ (easyprivacy.txt: 5452) +.bing.com/action/ +# ||bing-int.com/bat.js (easyprivacy.txt: 5451) +.bing-int.com/bat\.js +# ||bin.clearspring.*/b.swf (easyprivacy.txt: 5450) +.bin.clearspring.*./(.*/)?b\.swf +# ||bidsystem.com/ppc/sendtracker.aspx? (easyprivacy.txt: 5449) +.bidsystem.com/ppc/sendtracker\.aspx\? +# ||bid.g.doubleclick.net^ (easyprivacy.txt: 5448) +.bid.g.doubleclick.net +# ||bibzopl.com/in.php (easyprivacy.txt: 5447) +.bibzopl.com/in\.php +# ||bfnsoftware.com^*/environment.cgi? (easyprivacy.txt: 5446) +.bfnsoftware.com/.*/environment\.cgi\? +# ||bestweb.net/cgi-bin/count.cgi? (easyprivacy.txt: 5445) +.bestweb.net/cgi-bin/count\.cgi\? +# ||beacons.brandads.net^ (easyprivacy.txt: 5443) +.beacons.brandads.net +# ||beacon2.indieclick.com^ (easyprivacy.txt: 5441) +.beacon2.indieclick.com +# ||beacon.thred.woven.com^ (easyprivacy.txt: 5440) +.beacon.thred.woven.com +# ||beacon.sojern.com^ (easyprivacy.txt: 5439) +.beacon.sojern.com +# ||beacon.securestudies.com^ (easyprivacy.txt: 5438) +.beacon.securestudies.com +# ||beacon.riskified.com^ (easyprivacy.txt: 5437) +.beacon.riskified.com +# ||beacon.richrelevance.com^ (easyprivacy.txt: 5436) +.beacon.richrelevance.com +# ||beacon.livefyre.com^ (easyprivacy.txt: 5435) +.beacon.livefyre.com +# ||beacon.indieclick.com^ (easyprivacy.txt: 5434) +.beacon.indieclick.com +# ||beacon.heliumnetwork.com^ (easyprivacy.txt: 5433) +.beacon.heliumnetwork.com +# ||beacon.guim.co.uk^ (easyprivacy.txt: 5432) +.beacon.guim.co.uk +# ||beacon.gcion.com^ (easyprivacy.txt: 5431) +.beacon.gcion.com +# ||beacon.errorception.com^ (easyprivacy.txt: 5430) +.beacon.errorception.com +# ||beacon.affil.walmart.com^ (easyprivacy.txt: 5429) +.beacon.affil.walmart.com +# ||bc.geocities. (easyprivacy.txt: 5428) +.bc.geocities.*. +# ||bazaarvoice.com^*/magpie.js (easyprivacy.txt: 5427) +.bazaarvoice.com/.*/magpie\.js +# ||bazaarvoice.com/sid.gif (easyprivacy.txt: 5426) +.bazaarvoice.com/sid\.gif +# ||barium.cheezdev.com^ (easyprivacy.txt: 5425) +.barium.cheezdev.com +# ||bango.net/id/*.gif? (easyprivacy.txt: 5424) +.bango.net/id/.*\.gif\? +# ||bango.net/exid/*.gif? (easyprivacy.txt: 5423) +.bango.net/exid/.*\.gif\? +# ||babm.texthelp.com^ (easyprivacy.txt: 5422) +.babm.texthelp.com +# ||b5media.com/bbpixel.php (easyprivacy.txt: 5421) +.b5media.com/bbpixel\.php +# ||b.bedop.com^ (easyprivacy.txt: 5420) +.b.bedop.com +# ||axislogger.appspot.com^ (easyprivacy.txt: 5419) +.axislogger.appspot.com +# ||awe.sm/conversions/ (easyprivacy.txt: 5417) +.awe.sm/conversions/ +# ||autoline-top.com/counter.php? (easyprivacy.txt: 5416) +.autoline-top.com/counter\.php\? +# ||audit.median.hu^ (easyprivacy.txt: 5415) +.audit.median.hu +# ||audit.303br.net^ (easyprivacy.txt: 5414) +.audit.303br.net +# ||auctiva.com/Default.aspx?query (easyprivacy.txt: 5411) +.auctiva.com/Default\.aspx\?query +# ||attributiontrackingga.googlecode.com^ (easyprivacy.txt: 5410) +.attributiontrackingga.googlecode.com +# ||atdmt.com/mstag/ (easyprivacy.txt: 5409) +.atdmt.com/mstag/ +# ||atdmt.com/jaction/ (easyprivacy.txt: 5408) +.atdmt.com/jaction/ +# ||atdmt.com/iaction/ (easyprivacy.txt: 5407) +.atdmt.com/iaction/ +# ||atdmt.com/action/ (easyprivacy.txt: 5406) +.atdmt.com/action/ +# ||asterpix.com/tagcloudview/ (easyprivacy.txt: 5405) +.asterpix.com/tagcloudview/ +# ||ask.com^*/i.gif? (easyprivacy.txt: 5403) +.ask.com/.*/i\.gif\? +# ||aserve.directorym.com^ (easyprivacy.txt: 5402) +.aserve.directorym.com +# ||arclk.net/trax? (easyprivacy.txt: 5401) +.arclk.net/trax\? +# ||archive.org/includes/analytics.js (easyprivacy.txt: 5400) +.archive.org/includes/analytics\.js +# ||appspot.com/api/track/ (easyprivacy.txt: 5398) +.appspot.com/api/track/ +# ||appliedsemantics.com/images/x.gif (easyprivacy.txt: 5396) +.appliedsemantics.com/images/x\.gif +# ||app.pendo.io/data/ptm.gif (easyprivacy.txt: 5393) +.app.pendo.io/data/ptm\.gif +# ||app.insightgrit.com^ (easyprivacy.txt: 5392) +.app.insightgrit.com +# ||app.cdn-cs.com/__t.png? (easyprivacy.txt: 5391) +.app.cdn-cs.com/__t\.png\? +# ||app.bronto.com^ (easyprivacy.txt: 5390) +.app.bronto.com +# ||api.wipmania.com^ (easyprivacy.txt: 5388) +.api.wipmania.com +# ||api.fyreball.com^ (easyprivacy.txt: 5387) +.api.fyreball.com +# ||api.collarity.com/cws/*http (easyprivacy.txt: 5386) +.api.collarity.com/cws/.*http +# ||api.choicestream.com/instr/ccm/ (easyprivacy.txt: 5385) +.api.choicestream.com/instr/ccm/ +# ||api-ping.intercom.io^ (easyprivacy.txt: 5382) +.api-ping.intercom.io +# ||aolcdn.com/omniunih_int.js (easyprivacy.txt: 5381) +.aolcdn.com/omniunih_int\.js +# ||aolcdn.com/js/mg2.js (easyprivacy.txt: 5380) +.aolcdn.com/js/mg2\.js +# ||aolanswers.com/wtrack/ (easyprivacy.txt: 5379) +.aolanswers.com/wtrack/ +# ||aol.com/ping? (easyprivacy.txt: 5378) +.aol.com/ping\? +# ||anvato.com/anvatoloader.swf?analytics= (easyprivacy.txt: 5377) +.anvato.com/anvatoloader\.swf\?analytics= +# ||analyzer.qmerce.com^ (easyprivacy.txt: 5376) +.analyzer.qmerce.com +# ||analyze.full-marke.com^ (easyprivacy.txt: 5375) +.analyze.full-marke.com +# ||analyticsengine.s3.amazonaws.com^ (easyprivacy.txt: 5374) +.analyticsengine.s3.amazonaws.com +# ||analytics.yolacdn.net^ (easyprivacy.txt: 5373) +.analytics.yolacdn.net +# ||analytics.yola.net^ (easyprivacy.txt: 5372) +.analytics.yola.net +# ||analytics.wildtangent.com^ (easyprivacy.txt: 5371) +.analytics.wildtangent.com +# ||analytics.websolute.it^ (easyprivacy.txt: 5370) +.analytics.websolute.it +# ||analytics.urx.io^ (easyprivacy.txt: 5369) +.analytics.urx.io +# ||analytics.tribeca.vidavee.com^ (easyprivacy.txt: 5368) +.analytics.tribeca.vidavee.com +# ||analytics.tout.com^ (easyprivacy.txt: 5367) +.analytics.tout.com +# ||analytics.themarketiq.com^ (easyprivacy.txt: 5366) +.analytics.themarketiq.com +# ||analytics.strangeloopnetworks.com^ (easyprivacy.txt: 5365) +.analytics.strangeloopnetworks.com +# ||analytics.stg.springboardvideo.com^ (easyprivacy.txt: 5364) +.analytics.stg.springboardvideo.com +# ||analytics.springboardvideo.com^ (easyprivacy.txt: 5363) +.analytics.springboardvideo.com +# ||analytics.sonymusic.com^ (easyprivacy.txt: 5362) +.analytics.sonymusic.com +# ||analytics.sitewit.com^ (easyprivacy.txt: 5361) +.analytics.sitewit.com +# ||analytics.shareaholic.com^ (easyprivacy.txt: 5360) +.analytics.shareaholic.com +# ||analytics.rogersmedia.com^ (easyprivacy.txt: 5359) +.analytics.rogersmedia.com +# ||analytics.reyrey.net^ (easyprivacy.txt: 5358) +.analytics.reyrey.net +# ||analytics.revee.com^ (easyprivacy.txt: 5357) +.analytics.revee.com +# ||analytics.radiatemedia.com^ (easyprivacy.txt: 5356) +.analytics.radiatemedia.com +# ||analytics.r17.com^ (easyprivacy.txt: 5355) +.analytics.r17.com +# ||analytics.prod.aws.ecnext.net^ (easyprivacy.txt: 5354) +.analytics.prod.aws.ecnext.net +# ||analytics.piksel.com^ (easyprivacy.txt: 5353) +.analytics.piksel.com +# ||analytics.photorank.me^ (easyprivacy.txt: 5352) +.analytics.photorank.me +# ||analytics.performable.com^ (easyprivacy.txt: 5351) +.analytics.performable.com +# ||analytics.orenshmu.com^ (easyprivacy.txt: 5350) +.analytics.orenshmu.com +# ||analytics.optilead.co.uk^ (easyprivacy.txt: 5349) +.analytics.optilead.co.uk +# ||analytics.onlyonlinemarketing.com^ (easyprivacy.txt: 5348) +.analytics.onlyonlinemarketing.com +# ||analytics.mlstatic.com^ (easyprivacy.txt: 5347) +.analytics.mlstatic.com +# ||analytics.matchbin.com^ (easyprivacy.txt: 5346) +.analytics.matchbin.com +# ||analytics.live.com^ (easyprivacy.txt: 5345) +.analytics.live.com +# ||analytics.kapost.com^ (easyprivacy.txt: 5344) +.analytics.kapost.com +# ||analytics.hpprintx.com^ (easyprivacy.txt: 5343) +.analytics.hpprintx.com +# ||analytics.hosting24.com^ (easyprivacy.txt: 5342) +.analytics.hosting24.com +# ||analytics.gvim.mobi^ (easyprivacy.txt: 5341) +.analytics.gvim.mobi +# ||analytics.fairfax.com.au^ (easyprivacy.txt: 5340) +.analytics.fairfax.com.au +# ||analytics.episodic.com^ (easyprivacy.txt: 5339) +.analytics.episodic.com +# ||analytics.edgesuite.net^ (easyprivacy.txt: 5338) +.analytics.edgesuite.net +# ||analytics.edgekey.net^ (easyprivacy.txt: 5337) +.analytics.edgekey.net +# ||analytics.dev.springboardvideo.com^ (easyprivacy.txt: 5336) +.analytics.dev.springboardvideo.com +# ||analytics.datahc.com^ (easyprivacy.txt: 5335) +.analytics.datahc.com +# ||analytics.cynapse.com^ (easyprivacy.txt: 5334) +.analytics.cynapse.com +# ||analytics.convertlanguage.com^ (easyprivacy.txt: 5333) +.analytics.convertlanguage.com +# ||analytics.conmio.com^ (easyprivacy.txt: 5332) +.analytics.conmio.com +# ||analytics.cmg.net^ (easyprivacy.txt: 5331) +.analytics.cmg.net +# ||analytics.closealert.com^ (easyprivacy.txt: 5330) +.analytics.closealert.com +# ||analytics.clickpathmedia.com^ (easyprivacy.txt: 5329) +.analytics.clickpathmedia.com +# ||analytics.bigcommerce.com^ (easyprivacy.txt: 5328) +.analytics.bigcommerce.com +# ||analytics.aweber.com^ (easyprivacy.txt: 5327) +.analytics.aweber.com +# ||analytics.atomiconline.com^ (easyprivacy.txt: 5326) +.analytics.atomiconline.com +# ||analytics.artirix.com^ (easyprivacy.txt: 5325) +.analytics.artirix.com +# ||analytics.apnewsregistry.com^ (easyprivacy.txt: 5324) +.analytics.apnewsregistry.com +# ||analytics.adeevo.com^ (easyprivacy.txt: 5323) +.analytics.adeevo.com +# ||analytics.abacast.com^ (easyprivacy.txt: 5322) +.analytics.abacast.com +# ||analytics-v2.anvato.com^ (easyprivacy.txt: 5321) +.analytics-v2.anvato.com +# ||analytics-beacon-*.amazonaws.com^ (easyprivacy.txt: 5320) +.analytics-beacon-*./.*\.amazonaws\.com[^\w%.-] +.analytics-beacon-*.amazonaws.com +# ||analyticapi.pho.fm^ (easyprivacy.txt: 5319) +.analyticapi.pho.fm +# ||analytic.pho.fm^ (easyprivacy.txt: 5317) +.analytic.pho.fm +# ||an.yandex.ru^ (easyprivacy.txt: 5316) +.an.yandex.ru +# ||ams.addflow.ru^ (easyprivacy.txt: 5315) +.ams.addflow.ru +# ||amplifypixel.outbrain.com^ (easyprivacy.txt: 5314) +.amplifypixel.outbrain.com +# ||amazonaws.com^*.kissmetrics.com/ (easyprivacy.txt: 5312) +.amazonaws.com/.*\.kissmetrics\.com/ +# ||amazonaws.com^*.kissinsights.com/ (easyprivacy.txt: 5311) +.amazonaws.com/.*\.kissinsights\.com/ +# ||amazonaws.com/wgntrk/ (easyprivacy.txt: 5310) +.amazonaws.com/wgntrk/ +# ||amazonaws.com/statics.reedge.com/ (easyprivacy.txt: 5309) +.amazonaws.com/statics\.reedge\.com/ +# ||amazonaws.com/searchdiscovery-satellite-production/ (easyprivacy.txt: 5308) +.amazonaws.com/searchdiscovery-satellite-production/ +# ||amazonaws.com/new.cetrk.com/ (easyprivacy.txt: 5307) +.amazonaws.com/new\.cetrk\.com/ +# ||amazonaws.com/ki.js/ (easyprivacy.txt: 5305) +.amazonaws.com/ki\.js/ +# ||amazonaws.com/js/reach.js (easyprivacy.txt: 5304) +.amazonaws.com/js/reach\.js +# ||amazonaws.com/cdn.barilliance.com/ (easyprivacy.txt: 5300) +.amazonaws.com/cdn\.barilliance\.com/ +# ||amazonaws.com/amacrpr/crpr.js (easyprivacy.txt: 5299) +.amazonaws.com/amacrpr/crpr\.js +# ||amazonaws.com/?wsid= (easyprivacy.txt: 5298) +.amazonaws.com/\?wsid= +# ||amatomu.com/log.php? (easyprivacy.txt: 5295) +.amatomu.com/log\.php\? +# ||amatomu.com/link/log/ (easyprivacy.txt: 5294) +.amatomu.com/link/log/ +# ||alphasitebuilder.co.za/tracker/ (easyprivacy.txt: 5293) +.alphasitebuilder.co.za/tracker/ +# ||allanalpass.com/track/ (easyprivacy.txt: 5292) +.allanalpass.com/track/ +# ||aliyun.com/actionlog/ (easyprivacy.txt: 5291) +.aliyun.com/actionlog/ +# ||alipay.com/service/clear.png? (easyprivacy.txt: 5290) +.alipay.com/service/clear\.png\? +# ||alicdn.com/alilog/ (easyprivacy.txt: 5289) +.alicdn.com/alilog/ +# ||alexa.com/traffic/ (easyprivacy.txt: 5288) +.alexa.com/traffic/ +# ||alenty.com/trk/ (easyprivacy.txt: 5287) +.alenty.com/trk/ +# ||aksb-a.akamaihd.net^ (easyprivacy.txt: 5286) +.aksb-a.akamaihd.net +# ||akatracking.esearchvision.com^ (easyprivacy.txt: 5285) +.akatracking.esearchvision.com +# ||akanoo.com/tracker/ (easyprivacy.txt: 5284) +.akanoo.com/tracker/ +# ||akamai.net^*/sitetracking/ (easyprivacy.txt: 5283) +.akamai.net/.*/sitetracking/ +# ||akamai.net^*/a.visualrevenue.com/ (easyprivacy.txt: 5282) +.akamai.net/.*/a\.visualrevenue\.com/ +# ||akamai.net/chartbeat. (easyprivacy.txt: 5281) +.akamai.net/chartbeat\. +# ||akamai.net/*.babylon.com/trans_box/ (easyprivacy.txt: 5280) +.akamai.net/.*\.babylon\.com/trans_box/ +# ||akamai.com/crs/lgsitewise.js (easyprivacy.txt: 5279) +.akamai.com/crs/lgsitewise\.js +# ||aiya.com.cn/stat.js (easyprivacy.txt: 5278) +.aiya.com.cn/stat\.js +# ||agendize.com^*/counts.jsp? (easyprivacy.txt: 5277) +.agendize.com/.*/counts\.jsp\? +# ||afrigator.com/track/ (easyprivacy.txt: 5276) +.afrigator.com/track/ +# ||affl.sucuri.net^ (easyprivacy.txt: 5275) +.affl.sucuri.net +# ||affiliates.swappernet.com^ (easyprivacy.txt: 5273) +.affiliates.swappernet.com +# ||affiliates.mgmmirage.com^ (easyprivacy.txt: 5270) +.affiliates.mgmmirage.com +# ||affiliate.iamplify.com^ (easyprivacy.txt: 5268) +.affiliate.iamplify.com +# ||adsimg.com/js/analytics.js? (easyprivacy.txt: 5265) +.adsimg.com/js/analytics\.js\? +# ||admission.net^*/displaytracker.js (easyprivacy.txt: 5263) +.admission.net/.*/displaytracker\.js +# ||adlog.com.com^ (easyprivacy.txt: 5262) +.adlog.com.com +# ||adg.bzgint.com^ (easyprivacy.txt: 5261) +.adg.bzgint.com +# ||adf.ly/ad/conv? (easyprivacy.txt: 5260) +.adf.ly/ad/conv\? +# ||addtoany.com/menu/transparent.gif (easyprivacy.txt: 5259) +.addtoany.com/menu/transparent\.gif +# ||addthisedge.com/live/ (easyprivacy.txt: 5258) +.addthisedge.com/live/ +# ||addthiscdn.com/live/ (easyprivacy.txt: 5257) +.addthiscdn.com/live/ +# ||addthiscdn.com/*.gif?uid= (easyprivacy.txt: 5256) +.addthiscdn.com/.*\.gif\?uid= +# ||addthis.com^*/p.json?*&ref= (easyprivacy.txt: 5255) +.addthis.com/.*/p\.json\?.*&ref= +# ||addthis.com/red/p.png? (easyprivacy.txt: 5254) +.addthis.com/red/p\.png\? +# ||addthis.com/live/ (easyprivacy.txt: 5252) +.addthis.com/live/ +# ||addthis.com/at/ (easyprivacy.txt: 5251) +.addthis.com/at/ +# ||addnow.com/tracker/ (easyprivacy.txt: 5250) +.addnow.com/tracker/ +# ||adchemy-content.com^*/tracking.js (easyprivacy.txt: 5249) +.adchemy-content.com/.*/tracking\.js +# ||ad.atdmt.com/s/ (easyprivacy.txt: 5248) +.ad.atdmt.com/s/ +# ||ad.atdmt.com/m/ (easyprivacy.txt: 5247) +.ad.atdmt.com/m/ +# ||ad.atdmt.com/i/img/ (easyprivacy.txt: 5246) +.ad.atdmt.com/i/img/ +# ||ad.atdmt.com/i/go; (easyprivacy.txt: 5245) +.ad.atdmt.com/i/go; +# ||ad.atdmt.com/i/*= (easyprivacy.txt: 5244) +.ad.atdmt.com/i/.*= +# ||ad.atdmt.com/e/ (easyprivacy.txt: 5243) +.ad.atdmt.com/e/ +# ||ad.atdmt.com/c/ (easyprivacy.txt: 5242) +.ad.atdmt.com/c/ +# ||actonservice.com^*/tracker/ (easyprivacy.txt: 5240) +.actonservice.com/.*/tracker/ +# ||activities.niagara.comedycentral.com^ (easyprivacy.txt: 5239) +.activities.niagara.comedycentral.com +# ||activecommerce.net/collector.gif (easyprivacy.txt: 5237) +.activecommerce.net/collector\.gif +# ||acs86.com/t.js (easyprivacy.txt: 5236) +.acs86.com/t\.js +# ||acces-charme.com/fakebar/track.php? (easyprivacy.txt: 5234) +.acces-charme.com/fakebar/track\.php\? +# ||aao.org/aao/sdc/track.js (easyprivacy.txt: 5232) +.aao.org/aao/sdc/track\.js +# ||aaa.aj5.info^ (easyprivacy.txt: 5230) +.aaa.aj5.info +# ||a2a.lockerz.com^ (easyprivacy.txt: 5229) +.a2a.lockerz.com +# ||a.unanimis.co.uk^ (easyprivacy.txt: 5228) +.a.unanimis.co.uk +# ||9msn.com.au^*/tracking/ (easyprivacy.txt: 5226) +.9msn.com.au/.*/tracking/ +# ||9fine.ru/js/counter. (easyprivacy.txt: 5225) +.9fine.ru/js/counter\. +# ||99widgets.com/counters/ (easyprivacy.txt: 5224) +.99widgets.com/counters/ +# ||88.208.248.58/tracking/ (easyprivacy.txt: 5222) +.88.208.248.58/tracking/ +# ||5min.com/flashcookie/StorageCookieSWF_ (easyprivacy.txt: 5217) +.5min.com/flashcookie/StorageCookieSWF_ +# ||5251.net/stat.jsp? (easyprivacy.txt: 5214) +.5251.net/stat\.jsp\? +# ||4theclueless.com/adlogger/ (easyprivacy.txt: 5211) +.4theclueless.com/adlogger/ +# ||3crowd.com^*/3c1px.gif (easyprivacy.txt: 5210) +.3crowd.com/.*/3c1px\.gif +# ||208.91.157.30/viewtrack/ (easyprivacy.txt: 5204) +.208.91.157.30/viewtrack/ +# ||198.101.148.38/update_counter.php (easyprivacy.txt: 5201) +.198.101.148.38/update_counter\.php +# ||184.73.203.249/i.gif? (easyprivacy.txt: 5197) +.184.73.203.249/i\.gif\? +# ||148.251.8.156/track.js (easyprivacy.txt: 5188) +.148.251.8.156/track\.js +# ||123myp.co.uk/ip-address/ (easyprivacy.txt: 5187) +.123myp.co.uk/ip-address/ +# ||101apps.com/tracker.ashx? (easyprivacy.txt: 5184) +.101apps.com/tracker\.ashx\? +# ||netquattro.com/stats/ (easyprivacy.txt: 4811) +.netquattro.com/stats/ +# ||static-fra.de^*/tracking.js (easyprivacy.txt: 4730) +.static-fra.de/.*/tracking\.js +# ||static-fra.de^*/targeting.js (easyprivacy.txt: 4729) +.static-fra.de/.*/targeting\.js +# ||analytics.rechtslupe.org^ (easyprivacy.txt: 4505) +.analytics.rechtslupe.org +# ||quantserve.com/api/ (easyprivacy.txt: 3904) +.quantserve.com/api/ +# ||google-analytics.com/siteopt.js? (easyprivacy.txt: 3360) +.google-analytics.com/siteopt\.js\? +# ||google-analytics.com/r/collect? (easyprivacy.txt: 3359) +.google-analytics.com/r/collect\? +# ||google-analytics.com/plugins/ (easyprivacy.txt: 3358) +.google-analytics.com/plugins/ +# ||google-analytics.com/ga_exp.js (easyprivacy.txt: 3357) +.google-analytics.com/ga_exp\.js +# ||google-analytics.com/cx/api.js (easyprivacy.txt: 3356) +.google-analytics.com/cx/api\.js +# ||google-analytics.com/collect (easyprivacy.txt: 3355) +.google-analytics.com/collect +# ||google-analytics.com/analytics.js (easyprivacy.txt: 3354) +.google-analytics.com/analytics\.js +# ://top.*/hit/ (easyprivacy.txt: 2672) +/.*://top\..*/hit/ +top.*./(.*/)?hit/ +# ://top.*/count/cnt.php? (easyprivacy.txt: 2671) +/.*://top\..*/count/cnt\.php\? +top.*./(.*/)?count/cnt\.php\? +# ://ivw.*/get?referrer= (easyprivacy.txt: 2670) +/.*://ivw\..*/get\?referrer= +ivw.*./(.*/)?get\?referrer= +# /img.php?id=*&page= (easyprivacy.txt: 2669) +/(.*/)?img\.php\?id=.*&page= +# /cdn-cgi/pe/bag2?*yieldbot.intent.js (easyprivacy.txt: 2667) +/(.*/)?cdn-cgi/pe/bag2\?.*yieldbot\.intent\.js +# /cdn-cgi/pe/bag2?*viglink.com (easyprivacy.txt: 2666) +/(.*/)?cdn-cgi/pe/bag2\?.*viglink\.com +# /cdn-cgi/pe/bag2?*static.getclicky.com%2Fjs (easyprivacy.txt: 2665) +/(.*/)?cdn-cgi/pe/bag2\?.*static\.getclicky\.com%2Fjs +# /cdn-cgi/pe/bag2?*scorecardresearch.com (easyprivacy.txt: 2664) +/(.*/)?cdn-cgi/pe/bag2\?.*scorecardresearch\.com +# /cdn-cgi/pe/bag2?*radarurl.com (easyprivacy.txt: 2663) +/(.*/)?cdn-cgi/pe/bag2\?.*radarurl\.com +# /cdn-cgi/pe/bag2?*quantserve.com (easyprivacy.txt: 2662) +/(.*/)?cdn-cgi/pe/bag2\?.*quantserve\.com +# /cdn-cgi/pe/bag2?*piwik.js (easyprivacy.txt: 2661) +/(.*/)?cdn-cgi/pe/bag2\?.*piwik\.js +# /cdn-cgi/pe/bag2?*optimizely.com (easyprivacy.txt: 2660) +/(.*/)?cdn-cgi/pe/bag2\?.*optimizely\.com +# /cdn-cgi/pe/bag2?*nr-data.net (easyprivacy.txt: 2659) +/(.*/)?cdn-cgi/pe/bag2\?.*nr-data\.net +# /cdn-cgi/pe/bag2?*newrelic.com (easyprivacy.txt: 2658) +/(.*/)?cdn-cgi/pe/bag2\?.*newrelic\.com +# /cdn-cgi/pe/bag2?*mc.yandex.ru (easyprivacy.txt: 2657) +/(.*/)?cdn-cgi/pe/bag2\?.*mc\.yandex\.ru +# /cdn-cgi/pe/bag2?*log.outbrain.com (easyprivacy.txt: 2656) +/(.*/)?cdn-cgi/pe/bag2\?.*log\.outbrain\.com +# /cdn-cgi/pe/bag2?*histats.com (easyprivacy.txt: 2655) +/(.*/)?cdn-cgi/pe/bag2\?.*histats\.com +# /cdn-cgi/pe/bag2?*google-analytics.com%2Fanalytics.js (easyprivacy.txt: 2654) +/(.*/)?cdn-cgi/pe/bag2\?.*google-analytics\.com%2Fanalytics\.js +# /cdn-cgi/pe/bag2?*geoiplookup (easyprivacy.txt: 2653) +/(.*/)?cdn-cgi/pe/bag2\?.*geoiplookup +# /cdn-cgi/pe/bag2?*dnn506yrbagrg.cloudfront.net (easyprivacy.txt: 2652) +/(.*/)?cdn-cgi/pe/bag2\?.*dnn506yrbagrg\.cloudfront\.net +# /adblock?action= (easyprivacy.txt: 2649) +/(.*/)?adblock\?action= +# /adb.policy.js (easyprivacy.txt: 2648) +/(.*/)?adb\.policy\.js +adb.policy.js*. +# -logabpstatus. (easyprivacy.txt: 2647) +/.*-logabpstatus\. +.*-logabpstatus.*. +# ||meetrics.netbb- (easyprivacy.txt: 2645) +.meetrics.netbb-*. +# cgi-bin/counter (easyprivacy.txt: 2643) +/.*cgi-bin/counter +.*cgi-bin/counter +# _zag_cookie. (easyprivacy.txt: 2642) +/.*_zag_cookie\. +# _wreport.fcgi? (easyprivacy.txt: 2641) +/.*_wreport\.fcgi\? +# _wiselog_ (easyprivacy.txt: 2640) +/.*_wiselog_ +# _webiq. (easyprivacy.txt: 2639) +/.*_webiq\. +# _webanalytics. (easyprivacy.txt: 2638) +/.*_webanalytics\. +# _web_stat.js (easyprivacy.txt: 2637) +/.*_web_stat\.js +# _url_tracking. (easyprivacy.txt: 2636) +/.*_url_tracking\. +# _trans_1px. (easyprivacy.txt: 2635) +/.*_trans_1px\. +# _trafficTracking. (easyprivacy.txt: 2634) +/.*_trafficTracking\. +# _tracker_min. (easyprivacy.txt: 2633) +/.*_tracker_min\. +# _tracker.php?*http (easyprivacy.txt: 2632) +/.*_tracker\.php\?.*http +# _tracker.js? (easyprivacy.txt: 2631) +/.*_tracker\.js\? +# _tracker.js. (easyprivacy.txt: 2630) +/.*_tracker\.js\. +# _Tacoda_ (easyprivacy.txt: 2629) +/.*_Tacoda_ +# _stats_log. (easyprivacy.txt: 2628) +/.*_stats_log\. +# _stats/Logger? (easyprivacy.txt: 2627) +/.*_stats/Logger\? +# _stats.js? (easyprivacy.txt: 2626) +/.*_stats\.js\? +# _social_tracking. (easyprivacy.txt: 2625) +/.*_social_tracking\. +# _setAnalyticsFields& (easyprivacy.txt: 2624) +/.*_setAnalyticsFields& +# _semanticTag/ (easyprivacy.txt: 2623) +/.*_semanticTag/ +# _sdctag2. (easyprivacy.txt: 2622) +/.*_sdctag2\. +# _sdctag1_ (easyprivacy.txt: 2621) +/.*_sdctag1_ +# _quantcast.swf (easyprivacy.txt: 2620) +/.*_quantcast\.swf +# _promo_id= (easyprivacy.txt: 2619) +/.*_promo_id= +# _pixelmap.js (easyprivacy.txt: 2618) +/.*_pixelmap\.js +# _ntpagetag. (easyprivacy.txt: 2617) +/.*_ntpagetag\. +# _NielsenNetRatings. (easyprivacy.txt: 2616) +/.*_NielsenNetRatings\. +# _nielsen.js (easyprivacy.txt: 2615) +/.*_nielsen\.js +# _nedstat.js (easyprivacy.txt: 2614) +/.*_nedstat\.js +# _metricsTagging. (easyprivacy.txt: 2613) +/.*_metricsTagging\. +# _m10banners/tracking.php? (easyprivacy.txt: 2612) +/.*_m10banners/tracking\.php\? +# _logimpressions. (easyprivacy.txt: 2611) +/.*_logimpressions\. +# _logHuman= (easyprivacy.txt: 2610) +/.*_logHuman= +# _landingLog/ (easyprivacy.txt: 2609) +/.*_landingLog/ +# _impressions.gif? (easyprivacy.txt: 2608) +/.*_impressions\.gif\? +# _imp_logging? (easyprivacy.txt: 2607) +/.*_imp_logging\? +# _imp?Log= (easyprivacy.txt: 2606) +/.*_imp\?Log= +# _i2a.js (easyprivacy.txt: 2605) +/.*_i2a\.js +# _hptag.asis? (easyprivacy.txt: 2604) +/.*_hptag\.asis\? +# _googleAnalytics_ (easyprivacy.txt: 2603) +/.*_googleAnalytics_ +# _googleAnalytics. (easyprivacy.txt: 2602) +/.*_googleAnalytics\. +# _google_analytics. (easyprivacy.txt: 2601) +/.*_google_analytics\. +# _global_analytics_ (easyprivacy.txt: 2600) +/.*_global_analytics_ +# _gaTrack.js (easyprivacy.txt: 2599) +/.*_gaTrack\.js +# _ga_tag. (easyprivacy.txt: 2598) +/.*_ga_tag\. +# _ga_code. (easyprivacy.txt: 2597) +/.*_ga_code\. +# _empty.ad? (easyprivacy.txt: 2596) +/.*_empty\.ad\? +# _effectivemeasure_tag.js (easyprivacy.txt: 2595) +/.*_effectivemeasure_tag\.js +# _directtrack.js (easyprivacy.txt: 2594) +/.*_directtrack\.js +# _ComScore. (easyprivacy.txt: 2593) +/.*_ComScore\. +# _clickTracking. (easyprivacy.txt: 2592) +/.*_clickTracking\. +# _clicktrack.asp? (easyprivacy.txt: 2591) +/.*_clicktrack\.asp\? +# _Clicktale. (easyprivacy.txt: 2590) +/.*_Clicktale\. +# _clickability/ (easyprivacy.txt: 2589) +/.*_clickability/ +# _check.php?referer (easyprivacy.txt: 2588) +/.*_check\.php\?referer +# _chartbeat.js (easyprivacy.txt: 2587) +/.*_chartbeat\.js +# _cedexis. (easyprivacy.txt: 2586) +/.*_cedexis\. +# _browsermetrix. (easyprivacy.txt: 2585) +/.*_browsermetrix\. +# _beacon? (easyprivacy.txt: 2584) +/.*_beacon\? +# _baynote. (easyprivacy.txt: 2583) +/.*_baynote\. +# _astatspro/ (easyprivacy.txt: 2582) +/.*_astatspro/ +# _analytics.php? (easyprivacy.txt: 2581) +/.*_analytics\.php\? +# _Analytics.js? (easyprivacy.txt: 2580) +/.*_Analytics\.js\? +# _adcenterconversion. (easyprivacy.txt: 2579) +/.*_adcenterconversion\. +# _247seotracking. (easyprivacy.txt: 2578) +/.*_247seotracking\. +# ^name=atatracker^ (easyprivacy.txt: 2577) +/(.*[^\w%.-])?name=atatracker[^\w%.-] +# ?wpgb_public_action=*&referrer= (easyprivacy.txt: 2576) +/.*\?wpgb_public_action=.*&referrer= +# ?triggertags= (easyprivacy.txt: 2575) +/.*\?triggertags= +# ?token=*&sessionid=*&visitorid= (easyprivacy.txt: 2574) +/.*\?token=.*&sessionid=.*&visitorid= +# ?stwc_cz= (easyprivacy.txt: 2573) +/.*\?stwc_cz= +# ?ref=*&itemcnt= (easyprivacy.txt: 2572) +/.*\?ref=.*&itemcnt= +# ?record&*&serve_js (easyprivacy.txt: 2571) +/.*\?record&.*&serve_js +# ?googleTrack= (easyprivacy.txt: 2570) +/.*\?googleTrack= +# ?eventtype=request&pid= (easyprivacy.txt: 2569) +/.*\?eventtype=request&pid= +# ?eventtype=impression&pid= (easyprivacy.txt: 2568) +/.*\?eventtype=impression&pid= +# ?event=log& (easyprivacy.txt: 2567) +/.*\?event=log& +# ?event=General.track (easyprivacy.txt: 2566) +/.*\?event=General\.track +# ?criteoTrack= (easyprivacy.txt: 2565) +/.*\?criteoTrack= +# ?action=tracking_script (easyprivacy.txt: 2563) +/.*\?action=tracking_script +# ?action=track_visitor& (easyprivacy.txt: 2562) +/.*\?action=track_visitor& +# ?_siteid= (easyprivacy.txt: 2561) +/.*\?_siteid= +# ?[AQB]&ndh=1&t= (easyprivacy.txt: 2560) +/.*\?\[AQB\]&ndh=1&t= +# ?&anticache=*filename.gif (easyprivacy.txt: 2559) +/.*\?&anticache=.*filename\.gif +# =track_view& (easyprivacy.txt: 2558) +/.*=track_view& +# =stats&action= (easyprivacy.txt: 2557) +/.*=stats&action= +# =ATAtracker& (easyprivacy.txt: 2556) +/.*=ATAtracker& +# =&cs_Referer= (easyprivacy.txt: 2555) +/.*=&cs_Referer= +# ://tracking.*/beacon/ (easyprivacy.txt: 2554) +/.*://tracking\..*/beacon/ +tracking.*./(.*/)?beacon/ +# ://sett.*/log.js (easyprivacy.txt: 2553) +/.*://sett\..*/log\.js +sett.*./(.*/)?log\.js +# ://mint.*/?js (easyprivacy.txt: 2551) +/.*://mint\..*/\?js +mint.*./(.*/)?\?js +# ://ivwextern. (easyprivacy.txt: 2550) +/.*://ivwextern\. +ivwextern.*. +# ://gdyn.*/1.gif? (easyprivacy.txt: 2549) +/.*://gdyn\..*/1\.gif\? +gdyn.*./(.*/)?1\.gif\? +# ://eulerian.*/ea.js (easyprivacy.txt: 2548) +/.*://eulerian\..*/ea\.js +eulerian.*./(.*/)?ea\.js +# ://email.*/blankpixel.gif (easyprivacy.txt: 2547) +/.*://email\..*/blankpixel\.gif +email.*./(.*/)?blankpixel\.gif +# ://click.*/open.aspx? (easyprivacy.txt: 2546) +/.*://click\..*/open\.aspx\? +click.*./(.*/)?open\.aspx\? +# ://c1.*/c.gif? (easyprivacy.txt: 2545) +/.*://c1\..*/c\.gif\? +c1.*./(.*/)?c\.gif\? +# ://c.*/c.gif? (easyprivacy.txt: 2544) +/.*://c\..*/c\.gif\? +c.*./(.*/)?c\.gif\? +# ://b.*/vanity/? (easyprivacy.txt: 2543) +/.*://b\..*/vanity/\? +b.*./(.*/)?vanity/\? +# ://b.*/ping? (easyprivacy.txt: 2542) +/.*://b\..*/ping\? +b.*./(.*/)?ping\? +# ://b.*/click? (easyprivacy.txt: 2541) +/.*://b\..*/click\? +b.*./(.*/)?click\? +# ://apex.*/apexTarget? (easyprivacy.txt: 2540) +/.*://apex\..*/apexTarget\? +apex.*./(.*/)?apexTarget\? +# ://anx.*/tr.gif? (easyprivacy.txt: 2539) +/.*://anx\..*/tr\.gif\? +anx.*./(.*/)?tr\.gif\? +# ://anx.*/anx.gif? (easyprivacy.txt: 2538) +/.*://anx\..*/anx\.gif\? +anx.*./(.*/)?anx\.gif\? +# ://adclear.*/acv? (easyprivacy.txt: 2537) +/.*://adclear\..*/acv\? +adclear.*./(.*/)?acv\? +# ://adclear.*/acc? (easyprivacy.txt: 2536) +/.*://adclear\..*/acc\? +adclear.*./(.*/)?acc\? +# /~utm_gif? (easyprivacy.txt: 2535) +/(.*/)?~utm_gif\? +# /~r/Slashdot/slashdot/* (easyprivacy.txt: 2534) +/(.*/)?~r/Slashdot/slashdot/.* +# /zone-log. (easyprivacy.txt: 2533) +/(.*/)?zone-log\. +zone-log.*. +# /zonapixel. (easyprivacy.txt: 2532) +/(.*/)?zonapixel\. +zonapixel.*. +# /zemtracker. (easyprivacy.txt: 2531) +/(.*/)?zemtracker\. +zemtracker.*. +# /zdgurgler.min.js (easyprivacy.txt: 2530) +/(.*/)?zdgurgler\.min\.js +zdgurgler.min.js*. +# /zanox.js (easyprivacy.txt: 2529) +/(.*/)?zanox\.js +zanox.js*. +# /ZagUser.js (easyprivacy.txt: 2528) +/(.*/)?ZagUser\.js +ZagUser.js*. +# /zagcookie. (easyprivacy.txt: 2527) +/(.*/)?zagcookie\. +zagcookie.*. +# /zag.gif? (easyprivacy.txt: 2526) +/(.*/)?zag\.gif\? +# /YuduStatistics/* (easyprivacy.txt: 2525) +/(.*/)?YuduStatistics/.* +# /ystat.js (easyprivacy.txt: 2524) +/(.*/)?ystat\.js +ystat.js*. +# /ystat.do (easyprivacy.txt: 2523) +/(.*/)?ystat\.do +ystat.do*. +# /ybn_pixel/* (easyprivacy.txt: 2522) +/(.*/)?ybn_pixel/.* +# /yandex-metrika.js (easyprivacy.txt: 2521) +/(.*/)?yandex-metrika\.js +yandex-metrika.js*. +# /yalst/pixel*.php? (easyprivacy.txt: 2520) +/(.*/)?yalst/pixel.*\.php\? +# /yahooTracker/* (easyprivacy.txt: 2519) +/(.*/)?yahooTracker/.* +# /yahooBeacon. (easyprivacy.txt: 2518) +/(.*/)?yahooBeacon\. +yahooBeacon.*. +# /yahoo_marketing.js (easyprivacy.txt: 2517) +/(.*/)?yahoo_marketing\.js +# /yahoo-beacon.js (easyprivacy.txt: 2516) +/(.*/)?yahoo-beacon\.js +yahoo-beacon.js*. +# /xtroi.js (easyprivacy.txt: 2515) +/(.*/)?xtroi\.js +xtroi.js*. +# /xtrack.png? (easyprivacy.txt: 2514) +/(.*/)?xtrack\.png\? +# /xtrack.php? (easyprivacy.txt: 2513) +/(.*/)?xtrack\.php\? +# /xtplugar. (easyprivacy.txt: 2512) +/(.*/)?xtplugar\. +xtplugar.*. +# /xtplug. (easyprivacy.txt: 2511) +/(.*/)?xtplug\. +xtplug.*. +# /xtcoreSimpleTag. (easyprivacy.txt: 2510) +/(.*/)?xtcoreSimpleTag\. +xtcoreSimpleTag.*. +# /xtcore_ (easyprivacy.txt: 2509) +/(.*/)?xtcore_ +# /xtclicks_ (easyprivacy.txt: 2508) +/(.*/)?xtclicks_ +# /xtclicks. (easyprivacy.txt: 2507) +/(.*/)?xtclicks\. +xtclicks.*. +# /xtclick. (easyprivacy.txt: 2505) +/(.*/)?xtclick\. +xtclick.*. +# /xtanalyzer_roi. (easyprivacy.txt: 2504) +/(.*/)?xtanalyzer_roi\. +# /xstat.aspx? (easyprivacy.txt: 2503) +/(.*/)?xstat\.aspx\? +# /xn_track. (easyprivacy.txt: 2502) +/(.*/)?xn_track\. +# /xmint/?js (easyprivacy.txt: 2501) +/(.*/)?xmint/\?js +# /xitistatus.js (easyprivacy.txt: 2500) +/(.*/)?xitistatus\.js +xitistatus.js*. +# /xiti.js (easyprivacy.txt: 2499) +/(.*/)?xiti\.js +xiti.js*. +# /xitcore-min.js (easyprivacy.txt: 2498) +/(.*/)?xitcore-min\.js +xitcore-min.js*. +# /xgenius. (easyprivacy.txt: 2497) +/(.*/)?xgenius\. +xgenius.*. +# /xgemius_v2. (easyprivacy.txt: 2496) +/(.*/)?xgemius_v2\. +# /xgemius_lv. (easyprivacy.txt: 2495) +/(.*/)?xgemius_lv\. +# /xgemius. (easyprivacy.txt: 2494) +/(.*/)?xgemius\. +xgemius.*. +# /wz_logging. (easyprivacy.txt: 2492) +/(.*/)?wz_logging\. +# /wysistat.js (easyprivacy.txt: 2491) +/(.*/)?wysistat\.js +wysistat.js*. +# /WWTracking_ (easyprivacy.txt: 2490) +/(.*/)?WWTracking_ +# /wv326redirect_ (easyprivacy.txt: 2489) +/(.*/)?wv326redirect_ +# /wusage_screen_properties.gif? (easyprivacy.txt: 2488) +/(.*/)?wusage_screen_properties\.gif\? +# /wtinit.js (easyprivacy.txt: 2487) +/(.*/)?wtinit\.js +wtinit.js*. +# /wtid.js (easyprivacy.txt: 2486) +/(.*/)?wtid\.js +wtid.js*. +# /wtd.gif? (easyprivacy.txt: 2485) +/(.*/)?wtd\.gif\? +# /wtcore.js (easyprivacy.txt: 2484) +/(.*/)?wtcore\.js +wtcore.js*. +# /wtbase.js (easyprivacy.txt: 2483) +/(.*/)?wtbase\.js +wtbase.js*. +# /wt_capi.js (easyprivacy.txt: 2482) +/(.*/)?wt_capi\.js +# /wstat.pl (easyprivacy.txt: 2481) +/(.*/)?wstat\.pl +wstat.pl*. +# /written-analytics. (easyprivacy.txt: 2480) +/(.*/)?written-analytics\. +written-analytics.*. +# /writrak. (easyprivacy.txt: 2479) +/(.*/)?writrak\. +writrak.*. +# /writelog. (easyprivacy.txt: 2477) +/(.*/)?writelog\. +writelog.*. +# /WRb.js (easyprivacy.txt: 2476) +/(.*/)?WRb\.js +WRb.js*. +# /Wrappers?cmd= (easyprivacy.txt: 2475) +/(.*/)?Wrappers\?cmd= +# /wrapper/quantcast.swf (easyprivacy.txt: 2474) +/(.*/)?wrapper/quantcast\.swf +# /wpblog.gif? (easyprivacy.txt: 2473) +/(.*/)?wpblog\.gif\? +# /wp_stat.php? (easyprivacy.txt: 2472) +/(.*/)?wp_stat\.php\? +# /wp.gif?wpi (easyprivacy.txt: 2471) +/(.*/)?wp\.gif\?wpi +# /wp-useronline/useronline. (easyprivacy.txt: 2470) +/(.*/)?wp-useronline/useronline\. +# /wp-stat/* (easyprivacy.txt: 2469) +/(.*/)?wp-stat/.* +# /wp-slimstat/* (easyprivacy.txt: 2468) +/(.*/)?wp-slimstat/.* +# /wp-powerstat/* (easyprivacy.txt: 2467) +/(.*/)?wp-powerstat/.* +# /wp-js/analytics.js? (easyprivacy.txt: 2466) +/(.*/)?wp-js/analytics\.js\? +# /wp-counter.php (easyprivacy.txt: 2465) +/(.*/)?wp-counter\.php +wp-counter.php*. +# /wp-content/tracker. (easyprivacy.txt: 2464) +/(.*/)?wp-content/tracker\. +# /wp-content/plugins/stats/count.php? (easyprivacy.txt: 2463) +/(.*/)?wp-content/plugins/stats/count\.php\? +# /wp-clickmap/* (easyprivacy.txt: 2462) +/(.*/)?wp-clickmap/.* +# /wp-click-track/* (easyprivacy.txt: 2461) +/(.*/)?wp-click-track/.* +# /woopra.js (easyprivacy.txt: 2460) +/(.*/)?woopra\.js +woopra.js*. +# /wmxtracker.js (easyprivacy.txt: 2459) +/(.*/)?wmxtracker\.js +wmxtracker.js*. +# /wlog.php? (easyprivacy.txt: 2458) +/(.*/)?wlog\.php\? +# /wlexpert_tracker/* (easyprivacy.txt: 2457) +/(.*/)?wlexpert_tracker/.* +# /wlexpert_tracker. (easyprivacy.txt: 2456) +/(.*/)?wlexpert_tracker\. +# /wjcountercore. (easyprivacy.txt: 2455) +/(.*/)?wjcountercore\. +wjcountercore.*. +# /wjcounter. (easyprivacy.txt: 2454) +/(.*/)?wjcounter\. +wjcounter.*. +# /wjcounter- (easyprivacy.txt: 2453) +/(.*/)?wjcounter- +wjcounter-*. +# /wildfire/i/CIMP.gif? (easyprivacy.txt: 2452) +/(.*/)?wildfire/i/CIMP\.gif\? +# /WikiaStats/* (easyprivacy.txt: 2451) +/(.*/)?WikiaStats/.* +# /wijitTrack.gif? (easyprivacy.txt: 2450) +/(.*/)?wijitTrack\.gif\? +# /widget/s.gif? (easyprivacy.txt: 2449) +/(.*/)?widget/s\.gif\? +# /wi?spot= (easyprivacy.txt: 2448) +/(.*/)?wi\?spot= +# /whoson_*_trackingonly.js (easyprivacy.txt: 2447) +/(.*/)?whoson_.*_trackingonly\.js +# /wholinked.com/track (easyprivacy.txt: 2446) +/(.*/)?wholinked\.com/track +wholinked.com/track +# /who/?js (easyprivacy.txt: 2445) +/(.*/)?who/\?js +# /where-go-add.js (easyprivacy.txt: 2444) +/(.*/)?where-go-add\.js +where-go-add.js*. +# /wego.farmer. (easyprivacy.txt: 2442) +/(.*/)?wego\.farmer\. +wego.farmer.*. +# /webtraxs. (easyprivacy.txt: 2441) +/(.*/)?webtraxs\. +webtraxs.*. +# /webtraffic.js (easyprivacy.txt: 2440) +/(.*/)?webtraffic\.js +webtraffic.js*. +# /WebTrackingHandler. (easyprivacy.txt: 2439) +/(.*/)?WebTrackingHandler\. +WebTrackingHandler.*. +# /webTracking. (easyprivacy.txt: 2437) +/(.*/)?webTracking\. +webTracking.*. +# /webtrack. (easyprivacy.txt: 2436) +/(.*/)?webtrack\. +webtrack.*. +# /webstats_counter/* (easyprivacy.txt: 2435) +/(.*/)?webstats_counter/.* +# /webstats/track.php? (easyprivacy.txt: 2434) +/(.*/)?webstats/track\.php\? +# /webstats/stat (easyprivacy.txt: 2433) +/(.*/)?webstats/stat +# /webstats/index? (easyprivacy.txt: 2432) +/(.*/)?webstats/index\? +# /webstats.php (easyprivacy.txt: 2431) +/(.*/)?webstats\.php +webstats.php*. +# /webstats.js (easyprivacy.txt: 2430) +/(.*/)?webstats\.js +webstats.js*. +# /webstatistik/track.asp (easyprivacy.txt: 2429) +/(.*/)?webstatistik/track\.asp +# /WebStatistik/*.pl? (easyprivacy.txt: 2428) +/(.*/)?WebStatistik/.*\.pl\? +# /webstatistics.php? (easyprivacy.txt: 2427) +/(.*/)?webstatistics\.php\? +# /WebStat2. (easyprivacy.txt: 2426) +/(.*/)?WebStat2\. +WebStat2.*. +# /webstat/cei_count.asp? (easyprivacy.txt: 2425) +/(.*/)?webstat/cei_count\.asp\? +# /WebStat.asmx (easyprivacy.txt: 2424) +/(.*/)?WebStat\.asmx +WebStat.asmx*. +# /webrec/wr.do? (easyprivacy.txt: 2423) +/(.*/)?webrec/wr\.do\? +# /WebPageEventLogger. (easyprivacy.txt: 2422) +/(.*/)?WebPageEventLogger\. +WebPageEventLogger.*. +# /webmetricstracking. (easyprivacy.txt: 2421) +/(.*/)?webmetricstracking\. +webmetricstracking.*. +# /WebLogWriter. (easyprivacy.txt: 2420) +/(.*/)?WebLogWriter\. +WebLogWriter.*. +# /WebLogScript. (easyprivacy.txt: 2419) +/(.*/)?WebLogScript\. +WebLogScript.*. +# /weblog.php? (easyprivacy.txt: 2418) +/(.*/)?weblog\.php\? +# /weblog.js? (easyprivacy.txt: 2417) +/(.*/)?weblog\.js\? +# /weblog.*?cookie (easyprivacy.txt: 2416) +/(.*/)?weblog\..*\?cookie +weblog.*./.*\?cookie +# /webiq_ (easyprivacy.txt: 2415) +/(.*/)?webiq_ +# /webiq/* (easyprivacy.txt: 2414) +/(.*/)?webiq/.* +# /webiq. (easyprivacy.txt: 2413) +/(.*/)?webiq\. +webiq.*. +# /webforensics/* (easyprivacy.txt: 2412) +/(.*/)?webforensics/.* +# /webdig.js?z= (easyprivacy.txt: 2411) +/(.*/)?webdig\.js\?z= +# /webcounter/* (easyprivacy.txt: 2410) +/(.*/)?webcounter/.* +# /webbug/* (easyprivacy.txt: 2409) +/(.*/)?webbug/.* +# /webbug.png? (easyprivacy.txt: 2408) +/(.*/)?webbug\.png\? +# /WebAnalyticsInclude. (easyprivacy.txt: 2407) +/(.*/)?WebAnalyticsInclude\. +WebAnalyticsInclude.*. +# /webanalytics3. (easyprivacy.txt: 2406) +/(.*/)?webanalytics3\. +webanalytics3.*. +# /webAnalytics/* (easyprivacy.txt: 2405) +/(.*/)?webAnalytics/.* +# /WebAnalytics. (easyprivacy.txt: 2404) +/(.*/)?WebAnalytics\. +WebAnalytics.*. +# /web_traffic_capture.js (easyprivacy.txt: 2402) +/(.*/)?web_traffic_capture\.js +# /web_answertip. (easyprivacy.txt: 2401) +/(.*/)?web_answertip\. +# /web_analytics/* (easyprivacy.txt: 2400) +/(.*/)?web_analytics/.* +# /wcount.php? (easyprivacy.txt: 2399) +/(.*/)?wcount\.php\? +# /wanalytics/* (easyprivacy.txt: 2398) +/(.*/)?wanalytics/.* +# /wa01.gif?log= (easyprivacy.txt: 2397) +/(.*/)?wa01\.gif\?log= +# /vzTracker/* (easyprivacy.txt: 2396) +/(.*/)?vzTracker/.* +# /vztrack.gif? (easyprivacy.txt: 2395) +/(.*/)?vztrack\.gif\? +# /vTracker_ (easyprivacy.txt: 2394) +/(.*/)?vTracker_ +# /vtracker. (easyprivacy.txt: 2393) +/(.*/)?vtracker\. +vtracker.*. +# /vtrack.php? (easyprivacy.txt: 2392) +/(.*/)?vtrack\.php\? +# /vtrack.aspx (easyprivacy.txt: 2391) +/(.*/)?vtrack\.aspx +vtrack.aspx*. +# /vstrack. (easyprivacy.txt: 2390) +/(.*/)?vstrack\. +vstrack.*. +# /vstats/counter.php (easyprivacy.txt: 2389) +/(.*/)?vstats/counter\.php +# /vstat.php (easyprivacy.txt: 2388) +/(.*/)?vstat\.php +vstat.php*. +# /vs_track. (easyprivacy.txt: 2387) +/(.*/)?vs_track\. +# /vs/track. (easyprivacy.txt: 2386) +/(.*/)?vs/track\. +# /vs-track.js (easyprivacy.txt: 2385) +/(.*/)?vs-track\.js +vs-track.js*. +# /vptrack_ (easyprivacy.txt: 2384) +/(.*/)?vptrack_ +# /vmtracking. (easyprivacy.txt: 2383) +/(.*/)?vmtracking\. +vmtracking.*. +# /visualstat/stat.php (easyprivacy.txt: 2382) +/(.*/)?visualstat/stat\.php +# /visualsciences_ (easyprivacy.txt: 2381) +/(.*/)?visualsciences_ +# /visualsciences. (easyprivacy.txt: 2380) +/(.*/)?visualsciences\. +visualsciences.*. +# /visualrevenue.js (easyprivacy.txt: 2379) +/(.*/)?visualrevenue\.js +visualrevenue.js*. +# /visualdna. (easyprivacy.txt: 2378) +/(.*/)?visualdna\. +visualdna.*. +# /visualdna- (easyprivacy.txt: 2377) +/(.*/)?visualdna- +visualdna-*. +# /visual_revenue. (easyprivacy.txt: 2376) +/(.*/)?visual_revenue\. +# /visitWebPage?_ (easyprivacy.txt: 2375) +/(.*/)?visitWebPage\?_ +# /VisitTracking? (easyprivacy.txt: 2374) +/(.*/)?VisitTracking\? +# /visits_contor. (easyprivacy.txt: 2373) +/(.*/)?visits_contor\. +# /visitortracker.pl? (easyprivacy.txt: 2372) +/(.*/)?visitortracker\.pl\? +# /VisitorAPI.js (easyprivacy.txt: 2371) +/(.*/)?VisitorAPI\.js +VisitorAPI.js*. +# /visitor.min.js (easyprivacy.txt: 2369) +/(.*/)?visitor\.min\.js +visitor.min.js*. +# /visitor.js?key= (easyprivacy.txt: 2368) +/(.*/)?visitor\.js\?key= +# /visitor.gif?ts= (easyprivacy.txt: 2367) +/(.*/)?visitor\.gif\?ts= +# /visitor.cgi?aff (easyprivacy.txt: 2366) +/(.*/)?visitor\.cgi\?aff +# /Visitor.aspx? (easyprivacy.txt: 2365) +/(.*/)?Visitor\.aspx\? +# /visitor-event? (easyprivacy.txt: 2364) +/(.*/)?visitor-event\? +# /VisitCounter. (easyprivacy.txt: 2363) +/(.*/)?VisitCounter\. +VisitCounter.*. +# /visit_tracking. (easyprivacy.txt: 2362) +/(.*/)?visit_tracking\. +# /visit_pixel? (easyprivacy.txt: 2361) +/(.*/)?visit_pixel\? +# /visit?id= (easyprivacy.txt: 2360) +/(.*/)?visit\?id= +# /visit/record.gif? (easyprivacy.txt: 2359) +/(.*/)?visit/record\.gif\? +# /visit/log.js? (easyprivacy.txt: 2358) +/(.*/)?visit/log\.js\? +# /visit.gif? (easyprivacy.txt: 2357) +/(.*/)?visit\.gif\? +# /visit-tracker.js (easyprivacy.txt: 2356) +/(.*/)?visit-tracker\.js +visit-tracker.js*. +# /visistat.js (easyprivacy.txt: 2355) +/(.*/)?visistat\.js +visistat.js*. +# /visci-interface. (easyprivacy.txt: 2354) +/(.*/)?visci-interface\. +visci-interface.*. +# /viperbar/stats.php? (easyprivacy.txt: 2353) +/(.*/)?viperbar/stats\.php\? +# /vip-analytics. (easyprivacy.txt: 2352) +/(.*/)?vip-analytics\. +vip-analytics.*. +# /viglink_ (easyprivacy.txt: 2351) +/(.*/)?viglink_ +# /viewTracking.min.js (easyprivacy.txt: 2350) +/(.*/)?viewTracking\.min\.js +viewTracking.min.js*. +# /viewtracking.aspx? (easyprivacy.txt: 2349) +/(.*/)?viewtracking\.aspx\? +# /viewstats.aspx? (easyprivacy.txt: 2348) +/(.*/)?viewstats\.aspx\? +# /viewcounterproxy. (easyprivacy.txt: 2347) +/(.*/)?viewcounterproxy\. +viewcounterproxy.*. +# /viewcounterjqueryproxy. (easyprivacy.txt: 2346) +/(.*/)?viewcounterjqueryproxy\. +viewcounterjqueryproxy.*. +# /ViewCounter/* (easyprivacy.txt: 2345) +/(.*/)?ViewCounter/.* +# /view_stats.js.php (easyprivacy.txt: 2344) +/(.*/)?view_stats\.js\.php +# /videotracking/* (easyprivacy.txt: 2343) +/(.*/)?videotracking/.* +# /VideoTracking. (easyprivacy.txt: 2342) +/(.*/)?VideoTracking\. +VideoTracking.*. +# /videoAnalytics. (easyprivacy.txt: 2341) +/(.*/)?videoAnalytics\. +videoAnalytics.*. +# /videoanalytic/* (easyprivacy.txt: 2340) +/(.*/)?videoanalytic/.* +# /video_count.php? (easyprivacy.txt: 2339) +/(.*/)?video_count\.php\? +# /vglnk.js (easyprivacy.txt: 2338) +/(.*/)?vglnk\.js +vglnk.js*. +# /vertical-stats. (easyprivacy.txt: 2337) +/(.*/)?vertical-stats\. +vertical-stats.*. +# /vendemologserver- (easyprivacy.txt: 2336) +/(.*/)?vendemologserver- +vendemologserver-*. +# /vecapture.js (easyprivacy.txt: 2335) +/(.*/)?vecapture\.js +vecapture.js*. +# /vblntpagetag. (easyprivacy.txt: 2334) +/(.*/)?vblntpagetag\. +vblntpagetag.*. +# /vblank.gif? (easyprivacy.txt: 2333) +/(.*/)?vblank\.gif\? +# /vastlog.txt? (easyprivacy.txt: 2332) +/(.*/)?vastlog\.txt\? +# /vanillastats/* (easyprivacy.txt: 2331) +/(.*/)?vanillastats/.* +# /valueclickbrands/* (easyprivacy.txt: 2330) +/(.*/)?valueclickbrands/.* +# /v60.js (easyprivacy.txt: 2329) +/(.*/)?v60\.js +v60.js*. +# /v53nse.js (easyprivacy.txt: 2328) +/(.*/)?v53nse\.js +v53nse.js*. +# /v53.js (easyprivacy.txt: 2327) +/(.*/)?v53\.js +v53.js*. +# /v52.js (easyprivacy.txt: 2326) +/(.*/)?v52\.js +v52.js*. +# /v5.3nse. (easyprivacy.txt: 2325) +/(.*/)?v5\.3nse\. +v5.3nse.*. +# /uxm_tracking. (easyprivacy.txt: 2324) +/(.*/)?uxm_tracking\. +# /uvstat.js (easyprivacy.txt: 2323) +/(.*/)?uvstat\.js +uvstat.js*. +# /utracker.js (easyprivacy.txt: 2322) +/(.*/)?utracker\.js +utracker.js*. +# /utrack? (easyprivacy.txt: 2321) +/(.*/)?utrack\? +# /utrack.js? (easyprivacy.txt: 2320) +/(.*/)?utrack\.js\? +# /utag.loader. (easyprivacy.txt: 2319) +/(.*/)?utag\.loader\. +utag.loader.*. +# /utag.loader- (easyprivacy.txt: 2318) +/(.*/)?utag\.loader- +utag.loader-*. +# /utag.handler.js (easyprivacy.txt: 2317) +/(.*/)?utag\.handler\.js +utag.handler.js*. +# /utag.ga. (easyprivacy.txt: 2316) +/(.*/)?utag\.ga\. +utag.ga.*. +# /usrtrck_ (easyprivacy.txt: 2315) +/(.*/)?usrtrck_ +# /usrtrck- (easyprivacy.txt: 2314) +/(.*/)?usrtrck- +usrtrck-*. +# /usr.gif?openratetracking= (easyprivacy.txt: 2313) +/(.*/)?usr\.gif\?openratetracking= +# /usertrackingajax.php? (easyprivacy.txt: 2312) +/(.*/)?usertrackingajax\.php\? +# /usertracking.js (easyprivacy.txt: 2311) +/(.*/)?usertracking\.js +usertracking.js*. +# /usertrack.aspx? (easyprivacy.txt: 2310) +/(.*/)?usertrack\.aspx\? +# /userfly.js (easyprivacy.txt: 2309) +/(.*/)?userfly\.js +userfly.js*. +# /URLSplitTrack? (easyprivacy.txt: 2308) +/(.*/)?URLSplitTrack\? +# /urchinstats. (easyprivacy.txt: 2307) +/(.*/)?urchinstats\. +urchinstats.*. +# /urchin.js (easyprivacy.txt: 2306) +/(.*/)?urchin\.js +urchin.js*. +# /urchin.html? (easyprivacy.txt: 2305) +/(.*/)?urchin\.html\? +# /urchin.gif? (easyprivacy.txt: 2304) +/(.*/)?urchin\.gif\? +# /updateStats. (easyprivacy.txt: 2303) +/(.*/)?updateStats\. +updateStats.*. +# /updateBotStatus.do? (easyprivacy.txt: 2302) +/(.*/)?updateBotStatus\.do\? +# /universalPixelStatic. (easyprivacy.txt: 2301) +/(.*/)?universalPixelStatic\. +universalPixelStatic.*. +# /UniqueUserVisit? (easyprivacy.txt: 2300) +/(.*/)?UniqueUserVisit\? +# /UnicaTag. (easyprivacy.txt: 2299) +/(.*/)?UnicaTag\. +UnicaTag.*. +# /unica_ (easyprivacy.txt: 2298) +/(.*/)?unica_ +# /unica.js (easyprivacy.txt: 2297) +/(.*/)?unica\.js +unica.js*. +# /unica.gif? (easyprivacy.txt: 2296) +/(.*/)?unica\.gif\? +# /umt.gif? (easyprivacy.txt: 2295) +/(.*/)?umt\.gif\? +# /ultra_track/* (easyprivacy.txt: 2294) +/(.*/)?ultra_track/.* +# /uim.html/* (easyprivacy.txt: 2293) +/(.*/)?uim\.html/.* +uim.html/.* +# /ui/analytics/* (easyprivacy.txt: 2292) +/(.*/)?ui/analytics/.* +# /uds/stats? (easyprivacy.txt: 2291) +/(.*/)?uds/stats\? +# /udctrack. (easyprivacy.txt: 2290) +/(.*/)?udctrack\. +udctrack.*. +# /uchkr.swf (easyprivacy.txt: 2289) +/(.*/)?uchkr\.swf +uchkr.swf*. +# /tynt.js (easyprivacy.txt: 2288) +/(.*/)?tynt\.js +tynt.js*. +# /TwitterTracking. (easyprivacy.txt: 2287) +/(.*/)?TwitterTracking\. +TwitterTracking.*. +# /turn-proxy.html? (easyprivacy.txt: 2286) +/(.*/)?turn-proxy\.html\? +# /ttt.gif? (easyprivacy.txt: 2285) +/(.*/)?ttt\.gif\? +# /tsrHitCounter. (easyprivacy.txt: 2284) +/(.*/)?tsrHitCounter\. +tsrHitCounter.*. +# /truehits.php? (easyprivacy.txt: 2283) +/(.*/)?truehits\.php\? +# /trk.gif? (easyprivacy.txt: 2282) +/(.*/)?trk\.gif\? +# /trk-fr. (easyprivacy.txt: 2281) +/(.*/)?trk-fr\. +trk-fr.*. +# /triggit-analytics. (easyprivacy.txt: 2280) +/(.*/)?triggit-analytics\. +triggit-analytics.*. +# /triggertag.js (easyprivacy.txt: 2279) +/(.*/)?triggertag\.js +triggertag.js*. +# /trclnk.js (easyprivacy.txt: 2278) +/(.*/)?trclnk\.js +trclnk.js*. +# /trbo.js (easyprivacy.txt: 2277) +/(.*/)?trbo\.js +trbo.js*. +# /traxis-logger. (easyprivacy.txt: 2276) +/(.*/)?traxis-logger\. +traxis-logger.*. +# /trax.gif? (easyprivacy.txt: 2275) +/(.*/)?trax\.gif\? +# /transparent1x1. (easyprivacy.txt: 2274) +/(.*/)?transparent1x1\. +transparent1x1.*. +# /trans_pixel.asp (easyprivacy.txt: 2273) +/(.*/)?trans_pixel\.asp +# /trakksocial.js (easyprivacy.txt: 2272) +/(.*/)?trakksocial\.js +trakksocial.js*. +# /trafic.js (easyprivacy.txt: 2271) +/(.*/)?trafic\.js +trafic.js*. +# /traffix-track. (easyprivacy.txt: 2270) +/(.*/)?traffix-track\. +traffix-track.*. +# /traffictrade/* (easyprivacy.txt: 2269) +/(.*/)?traffictrade/.* +# /traffictracker. (easyprivacy.txt: 2268) +/(.*/)?traffictracker\. +traffictracker.*. +# /TrafficCookie. (easyprivacy.txt: 2267) +/(.*/)?TrafficCookie\. +TrafficCookie.*. +# /traffic_tracker. (easyprivacy.txt: 2266) +/(.*/)?traffic_tracker\. +# /traffic_record.php? (easyprivacy.txt: 2265) +/(.*/)?traffic_record\.php\? +# /traffic_link_client.php? (easyprivacy.txt: 2264) +/(.*/)?traffic_link_client\.php\? +# /traffic4u. (easyprivacy.txt: 2263) +/(.*/)?traffic4u\. +traffic4u.*. +# /traffic/status.gif? (easyprivacy.txt: 2262) +/(.*/)?traffic/status\.gif\? +# /traffic.asmx/* (easyprivacy.txt: 2261) +/(.*/)?traffic\.asmx/.* +traffic.asmx/.* +# /tradelab.js (easyprivacy.txt: 2260) +/(.*/)?tradelab\.js +tradelab.js*. +# /TrackVisitors/* (easyprivacy.txt: 2259) +/(.*/)?TrackVisitors/.* +# /trackvisit? (easyprivacy.txt: 2258) +/(.*/)?trackvisit\? +# /trackVisit/* (easyprivacy.txt: 2257) +/(.*/)?trackVisit/.* +# /TrackViews/* (easyprivacy.txt: 2256) +/(.*/)?TrackViews/.* +# /TrackView/?track (easyprivacy.txt: 2255) +/(.*/)?TrackView/\?track +# /TrackUser?callback= (easyprivacy.txt: 2254) +/(.*/)?TrackUser\?callback= +# /tracksubprop. (easyprivacy.txt: 2253) +/(.*/)?tracksubprop\. +tracksubprop.*. +# /trackstats? (easyprivacy.txt: 2252) +/(.*/)?trackstats\? +# /trackr.swf (easyprivacy.txt: 2251) +/(.*/)?trackr\.swf +trackr.swf*. +# /trackpxl? (easyprivacy.txt: 2250) +/(.*/)?trackpxl\? +# /trackpixel. (easyprivacy.txt: 2249) +/(.*/)?trackpixel\. +trackpixel.*. +# /trackpix. (easyprivacy.txt: 2248) +/(.*/)?trackpix\. +trackpix.*. +# /trackpidv3. (easyprivacy.txt: 2247) +/(.*/)?trackpidv3\. +trackpidv3.*. +# /trackPageView/* (easyprivacy.txt: 2246) +/(.*/)?trackPageView/.* +# /trackpageview. (easyprivacy.txt: 2245) +/(.*/)?trackpageview\. +trackpageview.*. +# /trackopen.cgi? (easyprivacy.txt: 2244) +/(.*/)?trackopen\.cgi\? +# /tracknat. (easyprivacy.txt: 2243) +/(.*/)?tracknat\. +tracknat.*. +# /trackmerchant.js (easyprivacy.txt: 2242) +/(.*/)?trackmerchant\.js +trackmerchant.js*. +# /trackjs_ (easyprivacy.txt: 2241) +/(.*/)?trackjs_ +# /trackjs6. (easyprivacy.txt: 2240) +/(.*/)?trackjs6\. +trackjs6.*. +# /trackjs1. (easyprivacy.txt: 2239) +/(.*/)?trackjs1\. +trackjs1.*. +# /trackjs. (easyprivacy.txt: 2238) +/(.*/)?trackjs\. +trackjs.*. +# /trackit.pl? (easyprivacy.txt: 2237) +/(.*/)?trackit\.pl\? +# /trackit.php? (easyprivacy.txt: 2236) +/(.*/)?trackit\.php\? +# /trackIt.js (easyprivacy.txt: 2235) +/(.*/)?trackIt\.js +trackIt.js*. +# /trackingService/* (easyprivacy.txt: 2234) +/(.*/)?trackingService/.* +# /trackingService.min.js (easyprivacy.txt: 2233) +/(.*/)?trackingService\.min\.js +trackingService.min.js*. +# /TrackingService.js (easyprivacy.txt: 2232) +/(.*/)?TrackingService\.js +TrackingService.js*. +# /trackingScript2. (easyprivacy.txt: 2231) +/(.*/)?trackingScript2\. +trackingScript2.*. +# /trackingScript1. (easyprivacy.txt: 2230) +/(.*/)?trackingScript1\. +trackingScript1.*. +# /trackings/addview/* (easyprivacy.txt: 2229) +/(.*/)?trackings/addview/.* +# /trackingpixels/get?referrer= (easyprivacy.txt: 2228) +/(.*/)?trackingpixels/get\?referrer= +# /TrackingPixel/* (easyprivacy.txt: 2227) +/(.*/)?TrackingPixel/.* +# /trackingPixel. (easyprivacy.txt: 2226) +/(.*/)?trackingPixel\. +trackingPixel.*. +# /trackingp.gif (easyprivacy.txt: 2225) +/(.*/)?trackingp\.gif +trackingp.gif*. +# /TrackingHandler. (easyprivacy.txt: 2224) +/(.*/)?TrackingHandler\. +TrackingHandler.*. +# /trackingFooter. (easyprivacy.txt: 2223) +/(.*/)?trackingFooter\. +trackingFooter.*. +# /trackingfilter.json? (easyprivacy.txt: 2222) +/(.*/)?trackingfilter\.json\? +# /TrackingData. (easyprivacy.txt: 2221) +/(.*/)?TrackingData\. +TrackingData.*. +# /trackingcookies. (easyprivacy.txt: 2220) +/(.*/)?trackingcookies\. +trackingcookies.*. +# /TrackingCookieCheck. (easyprivacy.txt: 2219) +/(.*/)?TrackingCookieCheck\. +TrackingCookieCheck.*. +# /TrackingCentral.js (easyprivacy.txt: 2218) +/(.*/)?TrackingCentral\.js +TrackingCentral.js*. +# /tracking_pixel (easyprivacy.txt: 2217) +/(.*/)?tracking_pixel +# /tracking_pix. (easyprivacy.txt: 2216) +/(.*/)?tracking_pix\. +# /tracking_link_cookie. (easyprivacy.txt: 2215) +/(.*/)?tracking_link_cookie\. +# /tracking_iframe. (easyprivacy.txt: 2214) +/(.*/)?tracking_iframe\. +# /tracking_id_ (easyprivacy.txt: 2213) +/(.*/)?tracking_id_ +# /tracking_headerJS_ (easyprivacy.txt: 2212) +/(.*/)?tracking_headerJS_ +# /tracking_frame_ (easyprivacy.txt: 2211) +/(.*/)?tracking_frame_ +# /tracking_cookie_baker. (easyprivacy.txt: 2210) +/(.*/)?tracking_cookie_baker\. +# /tracking_clickevents. (easyprivacy.txt: 2209) +/(.*/)?tracking_clickevents\. +# /tracking_ajax. (easyprivacy.txt: 2208) +/(.*/)?tracking_ajax\. +# /tracking_add_ons. (easyprivacy.txt: 2207) +/(.*/)?tracking_add_ons\. +# /Tracking?id= (easyprivacy.txt: 2206) +/(.*/)?Tracking\?id= +# /tracking202/* (easyprivacy.txt: 2205) +/(.*/)?tracking202/.* +# /tracking/widget/* (easyprivacy.txt: 2204) +/(.*/)?tracking/widget/.* +# /tracking/views/* (easyprivacy.txt: 2203) +/(.*/)?tracking/views/.* +# /tracking/user_sync_widget? (easyprivacy.txt: 2202) +/(.*/)?tracking/user_sync_widget\? +# /tracking/tynt_ (easyprivacy.txt: 2201) +/(.*/)?tracking/tynt_ +# /tracking/trk- (easyprivacy.txt: 2200) +/(.*/)?tracking/trk- +# /tracking/tracking_ (easyprivacy.txt: 2199) +/(.*/)?tracking/tracking_ +# /tracking/tracking.js (easyprivacy.txt: 2198) +/(.*/)?tracking/tracking\.js +# /tracking/track.php? (easyprivacy.txt: 2197) +/(.*/)?tracking/track\.php\? +# /tracking/track.jsp? (easyprivacy.txt: 2196) +/(.*/)?tracking/track\.jsp\? +# /tracking/tag_commander.php? (easyprivacy.txt: 2195) +/(.*/)?tracking/tag_commander\.php\? +# /tracking/pixels. (easyprivacy.txt: 2194) +/(.*/)?tracking/pixels\. +# /tracking/pixel_ (easyprivacy.txt: 2193) +/(.*/)?tracking/pixel_ +# /tracking/pixel/* (easyprivacy.txt: 2192) +/(.*/)?tracking/pixel/.* +# /tracking/pixel. (easyprivacy.txt: 2191) +/(.*/)?tracking/pixel\. +# /tracking/pageview. (easyprivacy.txt: 2190) +/(.*/)?tracking/pageview\. +# /tracking/open? (easyprivacy.txt: 2189) +/(.*/)?tracking/open\? +# /tracking/log.php? (easyprivacy.txt: 2188) +/(.*/)?tracking/log\.php\? +# /tracking/index. (easyprivacy.txt: 2187) +/(.*/)?tracking/index\. +# /tracking/impression/* (easyprivacy.txt: 2186) +/(.*/)?tracking/impression/.* +# /tracking/epixels. (easyprivacy.txt: 2185) +/(.*/)?tracking/epixels\. +# /tracking/create? (easyprivacy.txt: 2184) +/(.*/)?tracking/create\? +# /tracking/clicks (easyprivacy.txt: 2183) +/(.*/)?tracking/clicks +# /tracking/beacon/? (easyprivacy.txt: 2182) +/(.*/)?tracking/beacon/\? +# /tracking/ads. (easyprivacy.txt: 2181) +/(.*/)?tracking/ads\. +# /tracking/adobe.js (easyprivacy.txt: 2180) +/(.*/)?tracking/adobe\.js +# /tracking/addview/* (easyprivacy.txt: 2179) +/(.*/)?tracking/addview/.* +# /tracking/*/agof- (easyprivacy.txt: 2178) +/(.*/)?tracking/.*/agof- +# /tracking.vidt (easyprivacy.txt: 2177) +/(.*/)?tracking\.vidt +tracking.vidt*. +# /tracking.phtml? (easyprivacy.txt: 2176) +/(.*/)?tracking\.phtml\? +# /tracking.php?id (easyprivacy.txt: 2175) +/(.*/)?tracking\.php\?id +# /tracking.jsp (easyprivacy.txt: 2174) +/(.*/)?tracking\.jsp +tracking.jsp*. +# /tracking.gif? (easyprivacy.txt: 2173) +/(.*/)?tracking\.gif\? +# /tracking.fcgi? (easyprivacy.txt: 2172) +/(.*/)?tracking\.fcgi\? +# /tracking.cgi? (easyprivacy.txt: 2171) +/(.*/)?tracking\.cgi\? +# /tracking.ashx? (easyprivacy.txt: 2170) +/(.*/)?tracking\.ashx\? +# /tracking-widget. (easyprivacy.txt: 2169) +/(.*/)?tracking-widget\. +tracking-widget.*. +# /tracking-pixel/* (easyprivacy.txt: 2168) +/(.*/)?tracking-pixel/.* +# /tracking-pixel. (easyprivacy.txt: 2167) +/(.*/)?tracking-pixel\. +tracking-pixel.*. +# /tracking-init. (easyprivacy.txt: 2166) +/(.*/)?tracking-init\. +tracking-init.*. +# /tracking-info.gif? (easyprivacy.txt: 2165) +/(.*/)?tracking-info\.gif\? +# /tracking-hits. (easyprivacy.txt: 2164) +/(.*/)?tracking-hits\. +tracking-hits.*. +# /tracking-cookie. (easyprivacy.txt: 2163) +/(.*/)?tracking-cookie\. +tracking-cookie.*. +# /tracking-ad/* (easyprivacy.txt: 2162) +/(.*/)?tracking-ad/.* +# /trackimps? (easyprivacy.txt: 2161) +/(.*/)?trackimps\? +# /trackImpression/* (easyprivacy.txt: 2160) +/(.*/)?trackImpression/.* +# /trackimage/* (easyprivacy.txt: 2159) +/(.*/)?trackimage/.* +# /trackEvent.min.js? (easyprivacy.txt: 2158) +/(.*/)?trackEvent\.min\.js\? +# /trackEvent.js? (easyprivacy.txt: 2157) +/(.*/)?trackEvent\.js\? +# /trackerstatistik. (easyprivacy.txt: 2156) +/(.*/)?trackerstatistik\. +trackerstatistik.*. +# /trackerpixel.js (easyprivacy.txt: 2155) +/(.*/)?trackerpixel\.js +trackerpixel.js*. +# /TrackerHandler. (easyprivacy.txt: 2154) +/(.*/)?TrackerHandler\. +TrackerHandler.*. +# /trackerGif? (easyprivacy.txt: 2153) +/(.*/)?trackerGif\? +# /TrackerAS3. (easyprivacy.txt: 2152) +/(.*/)?TrackerAS3\. +TrackerAS3.*. +# /tracker_pixel. (easyprivacy.txt: 2151) +/(.*/)?tracker_pixel\. +# /tracker_pageview. (easyprivacy.txt: 2150) +/(.*/)?tracker_pageview\. +# /tracker_gif. (easyprivacy.txt: 2149) +/(.*/)?tracker_gif\. +# /tracker_article (easyprivacy.txt: 2148) +/(.*/)?tracker_article +# /tracker_activityStream. (easyprivacy.txt: 2147) +/(.*/)?tracker_activityStream\. +# /tracker?*= (easyprivacy.txt: 2146) +/(.*/)?tracker\?.*= +# /tracker2.js (easyprivacy.txt: 2145) +/(.*/)?tracker2\.js +tracker2.js*. +# /tracker/tracker.js (easyprivacy.txt: 2144) +/(.*/)?tracker/tracker\.js +# /tracker/track.php? (easyprivacy.txt: 2143) +/(.*/)?tracker/track\.php\? +# /tracker/t.php? (easyprivacy.txt: 2142) +/(.*/)?tracker/t\.php\? +# /tracker/story.jpg? (easyprivacy.txt: 2141) +/(.*/)?tracker/story\.jpg\? +# /tracker/referrer/* (easyprivacy.txt: 2140) +/(.*/)?tracker/referrer/.* +# /tracker/receiver/* (easyprivacy.txt: 2139) +/(.*/)?tracker/receiver/.* +# /tracker/ping/* (easyprivacy.txt: 2138) +/(.*/)?tracker/ping/.* +# /tracker/p.gif? (easyprivacy.txt: 2137) +/(.*/)?tracker/p\.gif\? +# /tracker/log? (easyprivacy.txt: 2136) +/(.*/)?tracker/log\? +# /tracker/imp? (easyprivacy.txt: 2135) +/(.*/)?tracker/imp\? +# /tracker/event? (easyprivacy.txt: 2134) +/(.*/)?tracker/event\? +# /tracker/blank.gif? (easyprivacy.txt: 2133) +/(.*/)?tracker/blank\.gif\? +# /tracker.tsp? (easyprivacy.txt: 2132) +/(.*/)?tracker\.tsp\? +# /tracker.pl? (easyprivacy.txt: 2131) +/(.*/)?tracker\.pl\? +# /tracker.php? (easyprivacy.txt: 2130) +/(.*/)?tracker\.php\? +# /tracker.min.js (easyprivacy.txt: 2129) +/(.*/)?tracker\.min\.js +tracker.min.js*. +# /tracker.log? (easyprivacy.txt: 2128) +/(.*/)?tracker\.log\? +# /tracker.json.php? (easyprivacy.txt: 2127) +/(.*/)?tracker\.json\.php\? +# /tracker.js.php? (easyprivacy.txt: 2126) +/(.*/)?tracker\.js\.php\? +# /tracker-r1.js (easyprivacy.txt: 2125) +/(.*/)?tracker-r1\.js +tracker-r1.js*. +# /tracker-ev-sdk.js (easyprivacy.txt: 2124) +/(.*/)?tracker-ev-sdk\.js +tracker-ev-sdk.js*. +# /trackconversion? (easyprivacy.txt: 2123) +/(.*/)?trackconversion\? +# /trackContentViews. (easyprivacy.txt: 2122) +/(.*/)?trackContentViews\. +trackContentViews.*. +# /trackClickEvent.js (easyprivacy.txt: 2121) +/(.*/)?trackClickEvent\.js +trackClickEvent.js*. +# /TrackClick. (easyprivacy.txt: 2120) +/(.*/)?TrackClick\. +TrackClick.*. +# /trackAdHit. (easyprivacy.txt: 2119) +/(.*/)?trackAdHit\. +trackAdHit.*. +# /trackad. (easyprivacy.txt: 2118) +/(.*/)?trackad\. +trackad.*. +# /track_visit? (easyprivacy.txt: 2117) +/(.*/)?track_visit\? +# /track_social. (easyprivacy.txt: 2116) +/(.*/)?track_social\. +# /track_pageview? (easyprivacy.txt: 2115) +/(.*/)?track_pageview\? +# /track_metric/* (easyprivacy.txt: 2114) +/(.*/)?track_metric/.* +# /track_js/? (easyprivacy.txt: 2113) +/(.*/)?track_js/\? +# /track_event.php? (easyprivacy.txt: 2112) +/(.*/)?track_event\.php\? +# /track_clicks_ (easyprivacy.txt: 2111) +/(.*/)?track_clicks_ +# /track?referer= (easyprivacy.txt: 2110) +/(.*/)?track\?referer= +# /track?event= (easyprivacy.txt: 2109) +/(.*/)?track\?event= +# /track;adv (easyprivacy.txt: 2108) +/(.*/)?track;adv +# /track2.php (easyprivacy.txt: 2107) +/(.*/)?track2\.php +track2.php*. +# /track/visits/? (easyprivacy.txt: 2106) +/(.*/)?track/visits/\? +# /track/visitors/? (easyprivacy.txt: 2105) +/(.*/)?track/visitors/\? +# /track/view/* (easyprivacy.txt: 2104) +/(.*/)?track/view/.* +# /track/track.php? (easyprivacy.txt: 2103) +/(.*/)?track/track\.php\? +# /track/site/* (easyprivacy.txt: 2102) +/(.*/)?track/site/.* +# /track/pixel. (easyprivacy.txt: 2101) +/(.*/)?track/pixel\. +# /track/pix.asp? (easyprivacy.txt: 2100) +/(.*/)?track/pix\.asp\? +# /track/mygreendot/* (easyprivacy.txt: 2099) +/(.*/)?track/mygreendot/.* +# /track/jsinfo (easyprivacy.txt: 2098) +/(.*/)?track/jsinfo +# /track/imp? (easyprivacy.txt: 2097) +/(.*/)?track/imp\? +# /track/dot.gif? (easyprivacy.txt: 2096) +/(.*/)?track/dot\.gif\? +# /track/count*js (easyprivacy.txt: 2095) +/(.*/)?track/count.*js +# /Track/Capture.aspx? (easyprivacy.txt: 2094) +/(.*/)?Track/Capture\.aspx\? +# /track/aggregate? (easyprivacy.txt: 2093) +/(.*/)?track/aggregate\? +# /track/?site (easyprivacy.txt: 2092) +/(.*/)?track/\?site +# /track/*&CheckCookieId= (easyprivacy.txt: 2090) +/(.*/)?track/.*&CheckCookieId= +# /track.php?*&uid= (easyprivacy.txt: 2089) +/(.*/)?track\.php\?.*&uid= +# /track.js?screen= (easyprivacy.txt: 2088) +/(.*/)?track\.js\?screen= +# /track.js?referrer (easyprivacy.txt: 2087) +/(.*/)?track\.js\?referrer +# /track.gif? (easyprivacy.txt: 2086) +/(.*/)?track\.gif\? +# /track.cgi? (easyprivacy.txt: 2085) +/(.*/)?track\.cgi\? +# /track.aspx? (easyprivacy.txt: 2084) +/(.*/)?track\.aspx\? +# /Track.aspx/* (easyprivacy.txt: 2083) +/(.*/)?Track\.aspx/.* +Track.aspx/.* +# /track.ashx?*=http (easyprivacy.txt: 2082) +/(.*/)?track\.ashx\?.*=http +# /track.ads/* (easyprivacy.txt: 2081) +/(.*/)?track\.ads/.* +track.ads/.* +# /track-referrals.js (easyprivacy.txt: 2080) +/(.*/)?track-referrals\.js +track-referrals.js*. +# /track-compiled.js (easyprivacy.txt: 2079) +/(.*/)?track-compiled\.js +track-compiled.js*. +# /tr.gif? (easyprivacy.txt: 2078) +/(.*/)?tr\.gif\? +# /tPx.gif? (easyprivacy.txt: 2077) +/(.*/)?tPx\.gif\? +# /tpix.gif? (easyprivacy.txt: 2076) +/(.*/)?tpix\.gif\? +# /touchclarity/* (easyprivacy.txt: 2075) +/(.*/)?touchclarity/.* +# /totango.js (easyprivacy.txt: 2074) +/(.*/)?totango\.js +totango.js*. +# /tops-counter? (easyprivacy.txt: 2073) +/(.*/)?tops-counter\? +# /tongji.js (easyprivacy.txt: 2072) +/(.*/)?tongji\.js +tongji.js*. +# /token?referer= (easyprivacy.txt: 2071) +/(.*/)?token\?referer= +# /tnsmetrix/* (easyprivacy.txt: 2070) +/(.*/)?tnsmetrix/.* +# /tnsCounter. (easyprivacy.txt: 2069) +/(.*/)?tnsCounter\. +tnsCounter.*. +# /tncms/tracking.js (easyprivacy.txt: 2068) +/(.*/)?tncms/tracking\.js +# /tmv11. (easyprivacy.txt: 2067) +/(.*/)?tmv11\. +tmv11.*. +# /tiwik. (easyprivacy.txt: 2066) +/(.*/)?tiwik\. +tiwik.*. +# /timestrend_ (easyprivacy.txt: 2065) +/(.*/)?timestrend_ +# /timeslog. (easyprivacy.txt: 2064) +/(.*/)?timeslog\. +timeslog.*. +# /tiara/tracker/* (easyprivacy.txt: 2063) +/(.*/)?tiara/tracker/.* +# /thuzianayltics. (easyprivacy.txt: 2062) +/(.*/)?thuzianayltics\. +thuzianayltics.*. +# /ThirdPartyTracking. (easyprivacy.txt: 2061) +/(.*/)?ThirdPartyTracking\. +ThirdPartyTracking.*. +# /thirdPartyTagscachebuster.js (easyprivacy.txt: 2060) +/(.*/)?thirdPartyTagscachebuster\.js +thirdPartyTagscachebuster.js*. +# /thirdPartyTags.js (easyprivacy.txt: 2059) +/(.*/)?thirdPartyTags\.js +thirdPartyTags.js*. +# /thirdPartyPixel. (easyprivacy.txt: 2058) +/(.*/)?thirdPartyPixel\. +thirdPartyPixel.*. +# /thirdpartyCookie. (easyprivacy.txt: 2057) +/(.*/)?thirdpartyCookie\. +thirdpartyCookie.*. +# /thetracker.js (easyprivacy.txt: 2056) +/(.*/)?thetracker\.js +thetracker.js*. +# /textlink.php?text (easyprivacy.txt: 2055) +/(.*/)?textlink\.php\?text +# /tealiumpixel. (easyprivacy.txt: 2054) +/(.*/)?tealiumpixel\. +tealiumpixel.*. +# /tealium.js (easyprivacy.txt: 2053) +/(.*/)?tealium\.js +tealium.js*. +# /tealium-api/* (easyprivacy.txt: 2052) +/(.*/)?tealium-api/.* +# /TealeafSDKConfig.js (easyprivacy.txt: 2051) +/(.*/)?TealeafSDKConfig\.js +TealeafSDKConfig.js*. +# /TealeafSDK.js (easyprivacy.txt: 2050) +/(.*/)?TealeafSDK\.js +TealeafSDK.js*. +# /TeaLeafCfg.js (easyprivacy.txt: 2049) +/(.*/)?TeaLeafCfg\.js +TeaLeafCfg.js*. +# /TeaLeaf.js (easyprivacy.txt: 2048) +/(.*/)?TeaLeaf\.js +TeaLeaf.js*. +# /TCMAnalytics_ (easyprivacy.txt: 2047) +/(.*/)?TCMAnalytics_ +# /tc_throttle.js (easyprivacy.txt: 2046) +/(.*/)?tc_throttle\.js +# /tc_targeting. (easyprivacy.txt: 2045) +/(.*/)?tc_targeting\. +# /tc_logging.js (easyprivacy.txt: 2044) +/(.*/)?tc_logging\.js +# /taxtag.js (easyprivacy.txt: 2043) +/(.*/)?taxtag\.js +taxtag.js*. +# /tagx.js (easyprivacy.txt: 2042) +/(.*/)?tagx\.js +tagx.js*. +# /TagSvc/* (easyprivacy.txt: 2041) +/(.*/)?TagSvc/.* +# /tagomnitureengine.js (easyprivacy.txt: 2040) +/(.*/)?tagomnitureengine\.js +tagomnitureengine.js*. +# /TagCommander.cfc? (easyprivacy.txt: 2039) +/(.*/)?TagCommander\.cfc\? +# /TacodaFTT. (easyprivacy.txt: 2038) +/(.*/)?TacodaFTT\. +TacodaFTT.*. +# /tacoda_ (easyprivacy.txt: 2037) +/(.*/)?tacoda_ +# /tacoda. (easyprivacy.txt: 2036) +/(.*/)?tacoda\. +tacoda.*. +# /t-richrelevance- (easyprivacy.txt: 2035) +/(.*/)?t-richrelevance- +t-richrelevance-*. +# /szm_mclient.js (easyprivacy.txt: 2034) +/(.*/)?szm_mclient\.js +# /syndstats. (easyprivacy.txt: 2033) +/(.*/)?syndstats\. +syndstats.*. +# /syndication/metrics/* (easyprivacy.txt: 2032) +/(.*/)?syndication/metrics/.* +# /synd.aspx (easyprivacy.txt: 2031) +/(.*/)?synd\.aspx +synd.aspx*. +# /syn/mail_s.php? (easyprivacy.txt: 2030) +/(.*/)?syn/mail_s\.php\? +# /swfaddress.js?tracker= (easyprivacy.txt: 2029) +/(.*/)?swfaddress\.js\?tracker= +# /surveyoverlay/* (easyprivacy.txt: 2028) +/(.*/)?surveyoverlay/.* +# /survey_invite_ (easyprivacy.txt: 2027) +/(.*/)?survey_invite_ +# /surphace_track. (easyprivacy.txt: 2026) +/(.*/)?surphace_track\. +# /supertracking. (easyprivacy.txt: 2025) +/(.*/)?supertracking\. +supertracking.*. +# /superstats. (easyprivacy.txt: 2024) +/(.*/)?superstats\. +superstats.*. +# /supercookie. (easyprivacy.txt: 2023) +/(.*/)?supercookie\. +supercookie.*. +# /stwc/code.js (easyprivacy.txt: 2022) +/(.*/)?stwc/code\.js +# /stwc-counter/* (easyprivacy.txt: 2021) +/(.*/)?stwc-counter/.* +# /stt/track/* (easyprivacy.txt: 2020) +/(.*/)?stt/track/.* +# /stt/track. (easyprivacy.txt: 2019) +/(.*/)?stt/track\. +# /stracking.js (easyprivacy.txt: 2018) +/(.*/)?stracking\.js +stracking.js*. +# /store-uniq-client-id?bomuuid= (easyprivacy.txt: 2017) +/(.*/)?store-uniq-client-id\?bomuuid= +# /stcollection. (easyprivacy.txt: 2016) +/(.*/)?stcollection\. +stcollection.*. +# /StatV1? (easyprivacy.txt: 2015) +/(.*/)?StatV1\? +# /stattracker- (easyprivacy.txt: 2014) +/(.*/)?stattracker- +stattracker-*. +# /statsupdater. (easyprivacy.txt: 2013) +/(.*/)?statsupdater\. +statsupdater.*. +# /statstracker? (easyprivacy.txt: 2012) +/(.*/)?statstracker\? +# /statspixel. (easyprivacy.txt: 2011) +/(.*/)?statspixel\. +statspixel.*. +# /StatsMngrWebInterface. (easyprivacy.txt: 2010) +/(.*/)?StatsMngrWebInterface\. +StatsMngrWebInterface.*. +# /StatsHelper.gif? (easyprivacy.txt: 2009) +/(.*/)?StatsHelper\.gif\? +# /statsd_proxy (easyprivacy.txt: 2008) +/(.*/)?statsd_proxy +# /statscript.js (easyprivacy.txt: 2007) +/(.*/)?statscript\.js +statscript.js*. +# /statscounter/* (easyprivacy.txt: 2006) +/(.*/)?statscounter/.* +# /StatsCollector/* (easyprivacy.txt: 2005) +/(.*/)?StatsCollector/.* +# /statsadvance.js (easyprivacy.txt: 2004) +/(.*/)?statsadvance\.js +statsadvance.js*. +# /stats_tracker. (easyprivacy.txt: 2003) +/(.*/)?stats_tracker\. +# /stats_js.asp? (easyprivacy.txt: 2002) +/(.*/)?stats_js\.asp\? +# /stats_brand.js (easyprivacy.txt: 2001) +/(.*/)?stats_brand\.js +# /stats_blog.js? (easyprivacy.txt: 2000) +/(.*/)?stats_blog\.js\? +# /stats?sid= (easyprivacy.txt: 1998) +/(.*/)?stats\?sid= +# /stats?object (easyprivacy.txt: 1997) +/(.*/)?stats\?object +# /stats?ev= (easyprivacy.txt: 1996) +/(.*/)?stats\?ev= +# /stats?callback= (easyprivacy.txt: 1995) +/(.*/)?stats\?callback= +# /stats?blog_ (easyprivacy.txt: 1994) +/(.*/)?stats\?blog_ +# /stats?aid= (easyprivacy.txt: 1993) +/(.*/)?stats\?aid= +# /stats/tracker.js (easyprivacy.txt: 1992) +/(.*/)?stats/tracker\.js +# /stats/tracker.gif? (easyprivacy.txt: 1991) +/(.*/)?stats/tracker\.gif\? +# /stats/track.asp? (easyprivacy.txt: 1990) +/(.*/)?stats/track\.asp\? +# /stats/pgview. (easyprivacy.txt: 1989) +/(.*/)?stats/pgview\. +# /stats/mixpanel- (easyprivacy.txt: 1988) +/(.*/)?stats/mixpanel- +# /stats/metrics/* (easyprivacy.txt: 1987) +/(.*/)?stats/metrics/.* +# /stats/mark? (easyprivacy.txt: 1986) +/(.*/)?stats/mark\? +# /stats/log. (easyprivacy.txt: 1985) +/(.*/)?stats/log\. +# /stats/impression (easyprivacy.txt: 1984) +/(.*/)?stats/impression +# /stats/et_track.asp? (easyprivacy.txt: 1983) +/(.*/)?stats/et_track\.asp\? +# /stats/dlcount_ (easyprivacy.txt: 1982) +/(.*/)?stats/dlcount_ +# /stats/CounterPage. (easyprivacy.txt: 1981) +/(.*/)?stats/CounterPage\. +# /stats/counter. (easyprivacy.txt: 1980) +/(.*/)?stats/counter\. +# /stats/collector.js (easyprivacy.txt: 1979) +/(.*/)?stats/collector\.js +# /stats/add/* (easyprivacy.txt: 1978) +/(.*/)?stats/add/.* +# /stats/?js (easyprivacy.txt: 1977) +/(.*/)?stats/\?js +# /stats.php?type= (easyprivacy.txt: 1976) +/(.*/)?stats\.php\?type= +# /stats.php?*http (easyprivacy.txt: 1975) +/(.*/)?stats\.php\?.*http +# /stats.hitbox.com/* (easyprivacy.txt: 1974) +/(.*/)?stats\.hitbox\.com/.* +stats.hitbox.com/.* +# /stats.gif? (easyprivacy.txt: 1973) +/(.*/)?stats\.gif\? +# /stats.asp?id (easyprivacy.txt: 1971) +/(.*/)?stats\.asp\?id +# /stats-tracking.js (easyprivacy.txt: 1970) +/(.*/)?stats-tracking\.js +stats-tracking.js*. +# /stats-js.cgi? (easyprivacy.txt: 1969) +/(.*/)?stats-js\.cgi\? +# /statlogger. (easyprivacy.txt: 1968) +/(.*/)?statlogger\. +statlogger.*. +# /statistics?eventType= (easyprivacy.txt: 1967) +/(.*/)?statistics\?eventType= +# /statistics/logging/* (easyprivacy.txt: 1966) +/(.*/)?statistics/logging/.* +# /statistics/getcook.php? (easyprivacy.txt: 1965) +/(.*/)?statistics/getcook\.php\? +# /statistics.aspx?profile (easyprivacy.txt: 1964) +/(.*/)?statistics\.aspx\?profile +# /statistics.asp? (easyprivacy.txt: 1963) +/(.*/)?statistics\.asp\? +# /statistics-page-view/* (easyprivacy.txt: 1962) +/(.*/)?statistics-page-view/.* +# /statics/analytics.js? (easyprivacy.txt: 1961) +/(.*/)?statics/analytics\.js\? +# /stateye/* (easyprivacy.txt: 1959) +/(.*/)?stateye/.* +# /statcountex/count.asp? (easyprivacy.txt: 1958) +/(.*/)?statcountex/count\.asp\? +# /statcounter.js (easyprivacy.txt: 1957) +/(.*/)?statcounter\.js +statcounter.js*. +# /statcounter.asp (easyprivacy.txt: 1956) +/(.*/)?statcounter\.asp +statcounter.asp*. +# /statcount. (easyprivacy.txt: 1955) +/(.*/)?statcount\. +statcount.*. +# /StatCms/ViewCount? (easyprivacy.txt: 1954) +/(.*/)?StatCms/ViewCount\? +# /statcapture. (easyprivacy.txt: 1953) +/(.*/)?statcapture\. +statcapture.*. +# /stataffs/track.php? (easyprivacy.txt: 1952) +/(.*/)?stataffs/track\.php\? +# /stat_visits. (easyprivacy.txt: 1951) +/(.*/)?stat_visits\. +# /stat_search. (easyprivacy.txt: 1950) +/(.*/)?stat_search\. +# /stat_page2. (easyprivacy.txt: 1949) +/(.*/)?stat_page2\. +# /stat_page. (easyprivacy.txt: 1948) +/(.*/)?stat_page\. +# /stat_js.asp? (easyprivacy.txt: 1947) +/(.*/)?stat_js\.asp\? +# /stat?track= (easyprivacy.txt: 1946) +/(.*/)?stat\?track= +# /stat?SiteID= (easyprivacy.txt: 1945) +/(.*/)?stat\?SiteID= +# /stat36/stat/track.php (easyprivacy.txt: 1944) +/(.*/)?stat36/stat/track\.php +# /stat2.js (easyprivacy.txt: 1943) +/(.*/)?stat2\.js +stat2.js*. +# /stat2.aspx? (easyprivacy.txt: 1942) +/(.*/)?stat2\.aspx\? +# /stat/uvstat? (easyprivacy.txt: 1941) +/(.*/)?stat/uvstat\? +# /stat/track.php?mode=js (easyprivacy.txt: 1940) +/(.*/)?stat/track\.php\?mode=js +# /stat/inserthit. (easyprivacy.txt: 1939) +/(.*/)?stat/inserthit\. +# /stat/event? (easyprivacy.txt: 1938) +/(.*/)?stat/event\? +# /stat/count (easyprivacy.txt: 1937) +/(.*/)?stat/count +# /stat.tiff? (easyprivacy.txt: 1936) +/(.*/)?stat\.tiff\? +# /stat.php? (easyprivacy.txt: 1935) +/(.*/)?stat\.php\? +# /stat.htm? (easyprivacy.txt: 1934) +/(.*/)?stat\.htm\? +# /stat.gif? (easyprivacy.txt: 1933) +/(.*/)?stat\.gif\? +# /stat.aspx? (easyprivacy.txt: 1932) +/(.*/)?stat\.aspx\? +# /st.aspx? (easyprivacy.txt: 1931) +/(.*/)?st\.aspx\? +# /sstlm8.sst? (easyprivacy.txt: 1930) +/(.*/)?sstlm8\.sst\? +# /sst8.sst? (easyprivacy.txt: 1929) +/(.*/)?sst8\.sst\? +# /spylog_ (easyprivacy.txt: 1928) +/(.*/)?spylog_ +# /springmetrics. (easyprivacy.txt: 1927) +/(.*/)?springmetrics\. +springmetrics.*. +# /spip.php?page=stats.js (easyprivacy.txt: 1926) +/(.*/)?spip\.php\?page=stats\.js +# /spi.gif?aid= (easyprivacy.txt: 1925) +/(.*/)?spi\.gif\?aid= +# /SpeedTrapInsert. (easyprivacy.txt: 1924) +/(.*/)?SpeedTrapInsert\. +SpeedTrapInsert.*. +# /spannerworks-tracking- (easyprivacy.txt: 1923) +/(.*/)?spannerworks-tracking- +spannerworks-tracking-*. +# /spacer.gif?q=l3mkwgak (easyprivacy.txt: 1922) +/(.*/)?spacer\.gif\?q=l3mkwgak +# /spacer.gif?hscbrnd (easyprivacy.txt: 1921) +/(.*/)?spacer\.gif\?hscbrnd +# /sp_tracker. (easyprivacy.txt: 1920) +/(.*/)?sp_tracker\. +# /sp_logging. (easyprivacy.txt: 1919) +/(.*/)?sp_logging\. +# /sp-2.0.0.min.js (easyprivacy.txt: 1918) +/(.*/)?sp-2\.0\.0\.min\.js +sp-2.0.0.min.js*. +# /sophusThree- (easyprivacy.txt: 1917) +/(.*/)?sophusThree- +sophusThree-*. +# /sophus3_logging.js (easyprivacy.txt: 1916) +/(.*/)?sophus3_logging\.js +# /sophus3/* (easyprivacy.txt: 1915) +/(.*/)?sophus3/.* +# /sophus/logging.js (easyprivacy.txt: 1914) +/(.*/)?sophus/logging\.js +# /sophus.js (easyprivacy.txt: 1913) +/(.*/)?sophus\.js +sophus.js*. +# /sometrics/* (easyprivacy.txt: 1912) +/(.*/)?sometrics/.* +# /solarcode.js (easyprivacy.txt: 1911) +/(.*/)?solarcode\.js +solarcode.js*. +# /softpage/stats_registerhit.asp? (easyprivacy.txt: 1910) +/(.*/)?softpage/stats_registerhit\.asp\? +# /softclick.js (easyprivacy.txt: 1909) +/(.*/)?softclick\.js +softclick.js*. +# /socialtracking.min.js (easyprivacy.txt: 1908) +/(.*/)?socialtracking\.min\.js +socialtracking.min.js*. +# /SocialTrack_ (easyprivacy.txt: 1907) +/(.*/)?SocialTrack_ +# /socialButtonTracker. (easyprivacy.txt: 1906) +/(.*/)?socialButtonTracker\. +socialButtonTracker.*. +# /social_tracking. (easyprivacy.txt: 1905) +/(.*/)?social_tracking\. +# /smarta. (easyprivacy.txt: 1904) +/(.*/)?smarta\. +smarta.*. +# /small.gif?type (easyprivacy.txt: 1903) +/(.*/)?small\.gif\?type +# /slimstat/* (easyprivacy.txt: 1902) +/(.*/)?slimstat/.* +# /skstats_ (easyprivacy.txt: 1901) +/(.*/)?skstats_ +# /skstats- (easyprivacy.txt: 1900) +/(.*/)?skstats- +skstats-*. +# /sitetrek.js (easyprivacy.txt: 1899) +/(.*/)?sitetrek\.js +sitetrek.js*. +# /SiteTrackingGA. (easyprivacy.txt: 1898) +/(.*/)?SiteTrackingGA\. +SiteTrackingGA.*. +# /SiteTracker. (easyprivacy.txt: 1897) +/(.*/)?SiteTracker\. +SiteTracker.*. +# /sitestats.gif? (easyprivacy.txt: 1896) +/(.*/)?sitestats\.gif\? +# /sitestatforms. (easyprivacy.txt: 1895) +/(.*/)?sitestatforms\. +sitestatforms.*. +# /sitestat_ (easyprivacy.txt: 1894) +/(.*/)?sitestat_ +# /sitestat. (easyprivacy.txt: 1893) +/(.*/)?sitestat\. +sitestat.*. +# /siteskan.com/* (easyprivacy.txt: 1892) +/(.*/)?siteskan\.com/.* +siteskan.com/.* +# /sitecrm2.js (easyprivacy.txt: 1891) +/(.*/)?sitecrm2\.js +sitecrm2.js*. +# /sitecrm.js (easyprivacy.txt: 1890) +/(.*/)?sitecrm\.js +sitecrm.js*. +# /sitecounter/counter. (easyprivacy.txt: 1889) +/(.*/)?sitecounter/counter\. +# /sitecatalist.js (easyprivacy.txt: 1888) +/(.*/)?sitecatalist\.js +sitecatalist.js*. +# /siteanalytics_ (easyprivacy.txt: 1887) +/(.*/)?siteanalytics_ +# /siteAnalytics. (easyprivacy.txt: 1886) +/(.*/)?siteAnalytics\. +siteAnalytics.*. +# /siteAnalytics- (easyprivacy.txt: 1885) +/(.*/)?siteAnalytics- +siteAnalytics-*. +# /site_tracking. (easyprivacy.txt: 1884) +/(.*/)?site_tracking\. +# /site_stats/* (easyprivacy.txt: 1883) +/(.*/)?site_stats/.* +# /site_stats. (easyprivacy.txt: 1882) +/(.*/)?site_stats\. +# /site_statistics. (easyprivacy.txt: 1881) +/(.*/)?site_statistics\. +# /site-tracker_ (easyprivacy.txt: 1880) +/(.*/)?site-tracker_ +# /site-tracker. (easyprivacy.txt: 1879) +/(.*/)?site-tracker\. +site-tracker.*. +# /site-tracker- (easyprivacy.txt: 1878) +/(.*/)?site-tracker- +site-tracker-*. +# /simtracker.min.js (easyprivacy.txt: 1877) +/(.*/)?simtracker\.min\.js +simtracker.min.js*. +# /simplereach_counts/* (easyprivacy.txt: 1876) +/(.*/)?simplereach_counts/.* +# /simple_reach.js (easyprivacy.txt: 1875) +/(.*/)?simple_reach\.js +# /silverpop/* (easyprivacy.txt: 1874) +/(.*/)?silverpop/.* +# /SilverPop. (easyprivacy.txt: 1873) +/(.*/)?SilverPop\. +SilverPop.*. +# /sikquantcast_ (easyprivacy.txt: 1872) +/(.*/)?sikquantcast_ +# /sikcomscore_ (easyprivacy.txt: 1871) +/(.*/)?sikcomscore_ +# /sidtracker. (easyprivacy.txt: 1870) +/(.*/)?sidtracker\. +sidtracker.*. +# /sidebarAnalytic? (easyprivacy.txt: 1869) +/(.*/)?sidebarAnalytic\? +# /si-tracking. (easyprivacy.txt: 1868) +/(.*/)?si-tracking\. +si-tracking.*. +# /showhits.php? (easyprivacy.txt: 1867) +/(.*/)?showhits\.php\? +# /showcounter. (easyprivacy.txt: 1866) +/(.*/)?showcounter\. +showcounter.*. +# /shopify_stats.js (easyprivacy.txt: 1865) +/(.*/)?shopify_stats\.js +# /shinystat_ (easyprivacy.txt: 1864) +/(.*/)?shinystat_ +# /shinystat. (easyprivacy.txt: 1863) +/(.*/)?shinystat\. +shinystat.*. +# /shareTrackClient. (easyprivacy.txt: 1862) +/(.*/)?shareTrackClient\. +shareTrackClient.*. +# /shareCounts. (easyprivacy.txt: 1861) +/(.*/)?shareCounts\. +shareCounts.*. +# /setTDUID.do? (easyprivacy.txt: 1860) +/(.*/)?setTDUID\.do\? +# /SetSabreAnalyticsCookie. (easyprivacy.txt: 1859) +/(.*/)?SetSabreAnalyticsCookie\. +SetSabreAnalyticsCookie.*. +# /setcookie? (easyprivacy.txt: 1858) +/(.*/)?setcookie\? +# /setcooki. (easyprivacy.txt: 1857) +/(.*/)?setcooki\. +setcooki.*. +# /SETCOOKAFF. (easyprivacy.txt: 1856) +/(.*/)?SETCOOKAFF\. +SETCOOKAFF.*. +# /sessioncam/* (easyprivacy.txt: 1855) +/(.*/)?sessioncam/.* +# /session-tracker/tracking- (easyprivacy.txt: 1854) +/(.*/)?session-tracker/tracking- +# /session-hit. (easyprivacy.txt: 1853) +/(.*/)?session-hit\. +session-hit.*. +# /services/counters/* (easyprivacy.txt: 1852) +/(.*/)?services/counters/.* +# /services/counter/* (easyprivacy.txt: 1851) +/(.*/)?services/counter/.* +# /services/analytics/* (easyprivacy.txt: 1850) +/(.*/)?services/analytics/.* +# /server.php?request=track&output= (easyprivacy.txt: 1849) +/(.*/)?server\.php\?request=track&output= +# /serve/mtrcs_ (easyprivacy.txt: 1848) +/(.*/)?serve/mtrcs_ +# /SEOTracking. (easyprivacy.txt: 1847) +/(.*/)?SEOTracking\. +SEOTracking.*. +# /seotracker/* (easyprivacy.txt: 1846) +/(.*/)?seotracker/.* +# /seoTracker. (easyprivacy.txt: 1845) +/(.*/)?seoTracker\. +seoTracker.*. +# /seostats/* (easyprivacy.txt: 1844) +/(.*/)?seostats/.* +# /seomonitor/* (easyprivacy.txt: 1843) +/(.*/)?seomonitor/.* +# /send-impressions.html (easyprivacy.txt: 1842) +/(.*/)?send-impressions\.html +send-impressions.html*. +# /SEMTracking. (easyprivacy.txt: 1841) +/(.*/)?SEMTracking\. +SEMTracking.*. +# /semanticTagService.js (easyprivacy.txt: 1840) +/(.*/)?semanticTagService\.js +semanticTagService.js*. +# /SellathonCounterService. (easyprivacy.txt: 1839) +/(.*/)?SellathonCounterService\. +SellathonCounterService.*. +# /segmentIoTrackingProvider.js (easyprivacy.txt: 1838) +/(.*/)?segmentIoTrackingProvider\.js +segmentIoTrackingProvider.js*. +# /segmentio.js (easyprivacy.txt: 1837) +/(.*/)?segmentio\.js +segmentio.js*. +# /securetracker. (easyprivacy.txt: 1836) +/(.*/)?securetracker\. +securetracker.*. +# /searchMetric. (easyprivacy.txt: 1835) +/(.*/)?searchMetric\. +searchMetric.*. +# /searchIgnite. (easyprivacy.txt: 1834) +/(.*/)?searchIgnite\. +searchIgnite.*. +# /sdxp1/dru4/meta?_hc= (easyprivacy.txt: 1833) +/(.*/)?sdxp1/dru4/meta\?_hc= +# /sdctag2.js (easyprivacy.txt: 1832) +/(.*/)?sdctag2\.js +sdctag2.js*. +# /sdctag1.js (easyprivacy.txt: 1831) +/(.*/)?sdctag1\.js +sdctag1.js*. +# /sdctag. (easyprivacy.txt: 1830) +/(.*/)?sdctag\. +sdctag.*. +# /sdc_tag. (easyprivacy.txt: 1829) +/(.*/)?sdc_tag\. +# /sdc_reporting_ (easyprivacy.txt: 1828) +/(.*/)?sdc_reporting_ +# /sdc3.js (easyprivacy.txt: 1827) +/(.*/)?sdc3\.js +sdc3.js*. +# /sdc2.js (easyprivacy.txt: 1826) +/(.*/)?sdc2\.js +sdc2.js*. +# /sdc1.js (easyprivacy.txt: 1825) +/(.*/)?sdc1\.js +sdc1.js*. +# /sctracker. (easyprivacy.txt: 1824) +/(.*/)?sctracker\. +sctracker.*. +# /scripts/xiti/* (easyprivacy.txt: 1823) +/(.*/)?scripts/xiti/.* +# /scripts/log. (easyprivacy.txt: 1822) +/(.*/)?scripts/log\. +# /scripts/hbx.js (easyprivacy.txt: 1821) +/(.*/)?scripts/hbx\.js +# /scripts/ga.js (easyprivacy.txt: 1820) +/(.*/)?scripts/ga\.js +# /scripts/contador. (easyprivacy.txt: 1819) +/(.*/)?scripts/contador\. +# /scripts/clickjs.php (easyprivacy.txt: 1818) +/(.*/)?scripts/clickjs\.php +# /scripts.kissmetrics.com/* (easyprivacy.txt: 1817) +/(.*/)?scripts\.kissmetrics\.com/.* +scripts.kissmetrics.com/.* +# /script_log. (easyprivacy.txt: 1816) +/(.*/)?script_log\. +# /script/analytics/* (easyprivacy.txt: 1815) +/(.*/)?script/analytics/.* +# /sclanalyticstag. (easyprivacy.txt: 1814) +/(.*/)?sclanalyticstag\. +sclanalyticstag.*. +# /sb.trackers.js (easyprivacy.txt: 1813) +/(.*/)?sb\.trackers\.js +sb.trackers.js*. +# /sb.logger.js (easyprivacy.txt: 1812) +/(.*/)?sb\.logger\.js +sb.logger.js*. +# /savetracking? (easyprivacy.txt: 1811) +/(.*/)?savetracking\? +# /saveStats.php? (easyprivacy.txt: 1810) +/(.*/)?saveStats\.php\? +# /save_stats.php? (easyprivacy.txt: 1809) +/(.*/)?save_stats\.php\? +# /SAPOWebAnalytics/* (easyprivacy.txt: 1808) +/(.*/)?SAPOWebAnalytics/.* +# /salog.js (easyprivacy.txt: 1807) +/(.*/)?salog\.js +salog.js*. +# /sage_tracker. (easyprivacy.txt: 1806) +/(.*/)?sage_tracker\. +# /s.gif?t= (easyprivacy.txt: 1805) +/(.*/)?s\.gif\?t= +# /s.gif?log= (easyprivacy.txt: 1804) +/(.*/)?s\.gif\?log= +# /s.gif?l= (easyprivacy.txt: 1803) +/(.*/)?s\.gif\?l= +# /s.gif?a= (easyprivacy.txt: 1802) +/(.*/)?s\.gif\?a= +# /rwtaghome.js (easyprivacy.txt: 1801) +/(.*/)?rwtaghome\.js +rwtaghome.js*. +# /rwtag.js (easyprivacy.txt: 1800) +/(.*/)?rwtag\.js +rwtag.js*. +# /rwtag.gif? (easyprivacy.txt: 1799) +/(.*/)?rwtag\.gif\? +# /rum/id? (easyprivacy.txt: 1798) +/(.*/)?rum/id\? +# /rum-track? (easyprivacy.txt: 1797) +/(.*/)?rum-track\? +# /rum-dytrc. (easyprivacy.txt: 1796) +/(.*/)?rum-dytrc\. +rum-dytrc.*. +# /rubicsimp/c.gif? (easyprivacy.txt: 1795) +/(.*/)?rubicsimp/c\.gif\? +# /rubics_trk (easyprivacy.txt: 1794) +/(.*/)?rubics_trk +# /rtt-log-data? (easyprivacy.txt: 1793) +/(.*/)?rtt-log-data\? +# /rtracker. (easyprivacy.txt: 1792) +/(.*/)?rtracker\. +rtracker.*. +# /rtoaster.js (easyprivacy.txt: 1791) +/(.*/)?rtoaster\.js +rtoaster.js*. +# /rtkbeacon.gif? (easyprivacy.txt: 1790) +/(.*/)?rtkbeacon\.gif\? +# /rtd.js (easyprivacy.txt: 1789) +/(.*/)?rtd\.js +rtd.js*. +# /rpc/log? (easyprivacy.txt: 1788) +/(.*/)?rpc/log\? +# /rot_in.php (easyprivacy.txt: 1787) +/(.*/)?rot_in\.php +# /rolluptracker_ (easyprivacy.txt: 1786) +/(.*/)?rolluptracker_ +# /roiTrax. (easyprivacy.txt: 1785) +/(.*/)?roiTrax\. +roiTrax.*. +# /roitracker2. (easyprivacy.txt: 1784) +/(.*/)?roitracker2\. +roitracker2.*. +# /roitracker. (easyprivacy.txt: 1783) +/(.*/)?roitracker\. +roitracker.*. +# /roitrack. (easyprivacy.txt: 1782) +/(.*/)?roitrack\. +roitrack.*. +# /roiengine. (easyprivacy.txt: 1781) +/(.*/)?roiengine\. +roiengine.*. +# /roi_tracker. (easyprivacy.txt: 1780) +/(.*/)?roi_tracker\. +# /RMAnalytics. (easyprivacy.txt: 1779) +/(.*/)?RMAnalytics\. +RMAnalytics.*. +# /rkrt_tracker- (easyprivacy.txt: 1778) +/(.*/)?rkrt_tracker- +# /RioTracking2. (easyprivacy.txt: 1777) +/(.*/)?RioTracking2\. +RioTracking2.*. +# /revtracking/* (easyprivacy.txt: 1776) +/(.*/)?revtracking/.* +# /revsci. (easyprivacy.txt: 1775) +/(.*/)?revsci\. +revsci.*. +# /revinit.js (easyprivacy.txt: 1774) +/(.*/)?revinit\.js +revinit.js*. +# /RevenueScienceAPI. (easyprivacy.txt: 1773) +/(.*/)?RevenueScienceAPI\. +RevenueScienceAPI.*. +# /revenuescience_ (easyprivacy.txt: 1772) +/(.*/)?revenuescience_ +# /revenuescience. (easyprivacy.txt: 1771) +/(.*/)?revenuescience\. +revenuescience.*. +# /revenue-science. (easyprivacy.txt: 1770) +/(.*/)?revenue-science\. +revenue-science.*. +# /retargetingScript/* (easyprivacy.txt: 1769) +/(.*/)?retargetingScript/.* +# /resxclsa_ (easyprivacy.txt: 1768) +/(.*/)?resxclsa_ +# /resxclsa. (easyprivacy.txt: 1767) +/(.*/)?resxclsa\. +resxclsa.*. +# /restats_ (easyprivacy.txt: 1766) +/(.*/)?restats_ +# /rest/analytics/* (easyprivacy.txt: 1765) +/(.*/)?rest/analytics/.* +# /resourcestat. (easyprivacy.txt: 1764) +/(.*/)?resourcestat\. +resourcestat.*. +# /resmeter.js (easyprivacy.txt: 1763) +/(.*/)?resmeter\.js +resmeter.js*. +# /RequestTrackerServlet? (easyprivacy.txt: 1762) +/(.*/)?RequestTrackerServlet\? +# /reporting/analytics.js (easyprivacy.txt: 1761) +/(.*/)?reporting/analytics\.js +# /remoteTrackingManager.cfc?*trackPage& (easyprivacy.txt: 1760) +/(.*/)?remoteTrackingManager\.cfc\?.*trackPage& +# /RemoteTargetingService. (easyprivacy.txt: 1759) +/(.*/)?RemoteTargetingService\. +RemoteTargetingService.*. +# /RegisterWebPageVisit. (easyprivacy.txt: 1758) +/(.*/)?RegisterWebPageVisit\. +RegisterWebPageVisit.*. +# /registeradevent? (easyprivacy.txt: 1757) +/(.*/)?registeradevent\? +# /register_video_*&server= (easyprivacy.txt: 1756) +/(.*/)?register_video_.*&server= +# /register_stats.php? (easyprivacy.txt: 1755) +/(.*/)?register_stats\.php\? +# /reg_stat.php? (easyprivacy.txt: 1754) +/(.*/)?reg_stat\.php\? +# /refstats.asp? (easyprivacy.txt: 1753) +/(.*/)?refstats\.asp\? +# /RefinedAdsTracker.swf (easyprivacy.txt: 1752) +/(.*/)?RefinedAdsTracker\.swf +RefinedAdsTracker.swf*. +# /referrer.php?*http (easyprivacy.txt: 1751) +/(.*/)?referrer\.php\?.*http +# /referral_tracking. (easyprivacy.txt: 1750) +/(.*/)?referral_tracking\. +# /referral_tracker. (easyprivacy.txt: 1749) +/(.*/)?referral_tracker\. +# /refererRecord. (easyprivacy.txt: 1748) +/(.*/)?refererRecord\. +refererRecord.*. +# /referer.gif? (easyprivacy.txt: 1747) +/(.*/)?referer\.gif\? +# /referadd? (easyprivacy.txt: 1746) +/(.*/)?referadd\? +# /refer-tracking. (easyprivacy.txt: 1745) +/(.*/)?refer-tracking\. +refer-tracking.*. +# /refcount. (easyprivacy.txt: 1744) +/(.*/)?refcount\. +refcount.*. +# /redx/c.gif? (easyprivacy.txt: 1743) +/(.*/)?redx/c\.gif\? +# /redirectexittrack.php? (easyprivacy.txt: 1742) +/(.*/)?redirectexittrack\.php\? +# /recstatsv2. (easyprivacy.txt: 1741) +/(.*/)?recstatsv2\. +recstatsv2.*. +# /RecordHit? (easyprivacy.txt: 1740) +/(.*/)?RecordHit\? +# /RecordClickv2. (easyprivacy.txt: 1739) +/(.*/)?RecordClickv2\. +RecordClickv2.*. +# /RecordClick. (easyprivacy.txt: 1738) +/(.*/)?RecordClick\. +RecordClick.*. +# /record_visitor. (easyprivacy.txt: 1737) +/(.*/)?record_visitor\. +# /record_clicks. (easyprivacy.txt: 1736) +/(.*/)?record_clicks\. +# /record.do? (easyprivacy.txt: 1735) +/(.*/)?record\.do\? +# /record-impressions. (easyprivacy.txt: 1734) +/(.*/)?record-impressions\. +record-impressions.*. +# /recommendtrack? (easyprivacy.txt: 1733) +/(.*/)?recommendtrack\? +# /readtracker- (easyprivacy.txt: 1732) +/(.*/)?readtracker- +readtracker-*. +# /readomniturecookie. (easyprivacy.txt: 1730) +/(.*/)?readomniturecookie\. +readomniturecookie.*. +# /readcounter.aspx? (easyprivacy.txt: 1729) +/(.*/)?readcounter\.aspx\? +# /rcdntpagetag.js (easyprivacy.txt: 1728) +/(.*/)?rcdntpagetag\.js +rcdntpagetag.js*. +# /rbipt.js (easyprivacy.txt: 1727) +/(.*/)?rbipt\.js +rbipt.js*. +# /rbipt.gif? (easyprivacy.txt: 1726) +/(.*/)?rbipt\.gif\? +# /rbi_us.js (easyprivacy.txt: 1725) +/(.*/)?rbi_us\.js +# /radium-one.js (easyprivacy.txt: 1724) +/(.*/)?radium-one\.js +radium-one.js*. +# /ra_track. (easyprivacy.txt: 1723) +/(.*/)?ra_track\. +# /quidsi.ga.js? (easyprivacy.txt: 1722) +/(.*/)?quidsi\.ga\.js\? +# /questus/* (easyprivacy.txt: 1721) +/(.*/)?questus/.* +# /qubittracker/* (easyprivacy.txt: 1720) +/(.*/)?qubittracker/.* +# /qubit-integration2. (easyprivacy.txt: 1719) +/(.*/)?qubit-integration2\. +qubit-integration2.*. +# /qubit-integration1. (easyprivacy.txt: 1718) +/(.*/)?qubit-integration1\. +qubit-integration1.*. +# /quantv2.swf? (easyprivacy.txt: 1717) +/(.*/)?quantv2\.swf\? +# /quantserve.com/* (easyprivacy.txt: 1716) +/(.*/)?quantserve\.com/.* +quantserve.com/.* +# /quantcastjs/* (easyprivacy.txt: 1715) +/(.*/)?quantcastjs/.* +# /QuantcastAnalyticsModule. (easyprivacy.txt: 1714) +/(.*/)?QuantcastAnalyticsModule\. +QuantcastAnalyticsModule.*. +# /quantcast_ (easyprivacy.txt: 1713) +/(.*/)?quantcast_ +# /quantcast/* (easyprivacy.txt: 1712) +/(.*/)?quantcast/.* +# /quantcast.xml (easyprivacy.txt: 1711) +/(.*/)?quantcast\.xml +quantcast.xml*. +# /quantcast.js (easyprivacy.txt: 1710) +/(.*/)?quantcast\.js +quantcast.js*. +# /quant.swf? (easyprivacy.txt: 1709) +/(.*/)?quant\.swf\? +# /quant.js (easyprivacy.txt: 1708) +/(.*/)?quant\.js +quant.js*. +# /QualtricsSurvey. (easyprivacy.txt: 1707) +/(.*/)?QualtricsSurvey\. +QualtricsSurvey.*. +# /qtracker- (easyprivacy.txt: 1706) +/(.*/)?qtracker- +qtracker-*. +# /pzn/proxysignature (easyprivacy.txt: 1705) +/(.*/)?pzn/proxysignature +# /pxtrk.gif (easyprivacy.txt: 1704) +/(.*/)?pxtrk\.gif +pxtrk.gif*. +# /pxlctl. (easyprivacy.txt: 1703) +/(.*/)?pxlctl\. +pxlctl.*. +# /pxl.cgi? (easyprivacy.txt: 1702) +/(.*/)?pxl\.cgi\? +# /pxa.min.js (easyprivacy.txt: 1701) +/(.*/)?pxa\.min\.js +pxa.min.js*. +# /px_trans.gif (easyprivacy.txt: 1700) +/(.*/)?px_trans\.gif +# /px.gif? (easyprivacy.txt: 1699) +/(.*/)?px\.gif\? +# /PvServlet? (easyprivacy.txt: 1698) +/(.*/)?PvServlet\? +# /pvserver/pv.js (easyprivacy.txt: 1697) +/(.*/)?pvserver/pv\.js +# /pview?event (easyprivacy.txt: 1696) +/(.*/)?pview\?event +# /pvcount. (easyprivacy.txt: 1695) +/(.*/)?pvcount\. +pvcount.*. +# /pv.txt? (easyprivacy.txt: 1694) +/(.*/)?pv\.txt\? +# /pv.gif?url (easyprivacy.txt: 1693) +/(.*/)?pv\.gif\?url +# /public/visitor/create? (easyprivacy.txt: 1692) +/(.*/)?public/visitor/create\? +# /public/visitor.json? (easyprivacy.txt: 1691) +/(.*/)?public/visitor\.json\? +# /pubimppixel/* (easyprivacy.txt: 1690) +/(.*/)?pubimppixel/.* +# /ptrack. (easyprivacy.txt: 1688) +/(.*/)?ptrack\. +ptrack.*. +# /pstats. (easyprivacy.txt: 1687) +/(.*/)?pstats\. +pstats.*. +# /promos/pixels? (easyprivacy.txt: 1686) +/(.*/)?promos/pixels\? +# /promo_tracking/* (easyprivacy.txt: 1685) +/(.*/)?promo_tracking/.* +# /profile_tracker. (easyprivacy.txt: 1684) +/(.*/)?profile_tracker\. +# /prodtracker? (easyprivacy.txt: 1683) +/(.*/)?prodtracker\? +# /process.php?ut=*&rf= (easyprivacy.txt: 1682) +/(.*/)?process\.php\?ut=.*&rf= +# /pro-ping.php? (easyprivacy.txt: 1681) +/(.*/)?pro-ping\.php\? +# /prnx_track. (easyprivacy.txt: 1680) +/(.*/)?prnx_track\. +# /printtracker.js (easyprivacy.txt: 1679) +/(.*/)?printtracker\.js +printtracker.js*. +# /pr.php? (easyprivacy.txt: 1677) +/(.*/)?pr\.php\? +# /pphlogger. (easyprivacy.txt: 1676) +/(.*/)?pphlogger\. +pphlogger.*. +# /powercount. (easyprivacy.txt: 1675) +/(.*/)?powercount\. +powercount.*. +# /postlog? (easyprivacy.txt: 1674) +/(.*/)?postlog\? +# /popuplog/* (easyprivacy.txt: 1673) +/(.*/)?popuplog/.* +# /popupCookieWriter. (easyprivacy.txt: 1672) +/(.*/)?popupCookieWriter\. +popupCookieWriter.*. +# /popanalytics. (easyprivacy.txt: 1671) +/(.*/)?popanalytics\. +popanalytics.*. +# /pomegranate.js (easyprivacy.txt: 1670) +/(.*/)?pomegranate\.js +pomegranate.js*. +# /PointRollAnonymous. (easyprivacy.txt: 1669) +/(.*/)?PointRollAnonymous\. +PointRollAnonymous.*. +# /PointRoll. (easyprivacy.txt: 1668) +/(.*/)?PointRoll\. +PointRoll.*. +# /point_roll. (easyprivacy.txt: 1667) +/(.*/)?point_roll\. +# /pmspxl. (easyprivacy.txt: 1666) +/(.*/)?pmspxl\. +pmspxl.*. +# /PmsPixel? (easyprivacy.txt: 1665) +/(.*/)?PmsPixel\? +# /plugins/wordfence/visitor.php? (easyprivacy.txt: 1664) +/(.*/)?plugins/wordfence/visitor\.php\? +# /plugins/userinfo.gif? (easyprivacy.txt: 1663) +/(.*/)?plugins/userinfo\.gif\? +# /plugins/status.gif? (easyprivacy.txt: 1662) +/(.*/)?plugins/status\.gif\? +# /plugins/catman/* (easyprivacy.txt: 1661) +/(.*/)?plugins/catman/.* +# /pluck-tracking. (easyprivacy.txt: 1660) +/(.*/)?pluck-tracking\. +pluck-tracking.*. +# /plog?id (easyprivacy.txt: 1659) +/(.*/)?plog\?id +# /plingatracker. (easyprivacy.txt: 1658) +/(.*/)?plingatracker\. +plingatracker.*. +# /plgtrafic. (easyprivacy.txt: 1657) +/(.*/)?plgtrafic\. +plgtrafic.*. +# /playertracking/* (easyprivacy.txt: 1656) +/(.*/)?playertracking/.* +# /playerlogger. (easyprivacy.txt: 1655) +/(.*/)?playerlogger\. +playerlogger.*. +# /PlayerDashboardLoggingService.svc/json/StartSession? (easyprivacy.txt: 1654) +/(.*/)?PlayerDashboardLoggingService\.svc/json/StartSession\? +PlayerDashboardLoggingService.svc/json/StartSession\? +# /player_counter.ashx? (easyprivacy.txt: 1653) +/(.*/)?player_counter\.ashx\? +# /planetstat. (easyprivacy.txt: 1652) +/(.*/)?planetstat\. +planetstat.*. +# /pladtrack. (easyprivacy.txt: 1651) +/(.*/)?pladtrack\. +pladtrack.*. +# /pixy.gif? (easyprivacy.txt: 1650) +/(.*/)?pixy\.gif\? +# /pixLogVisit. (easyprivacy.txt: 1649) +/(.*/)?pixLogVisit\. +pixLogVisit.*. +# /pixeltracking/* (easyprivacy.txt: 1648) +/(.*/)?pixeltracking/.* +# /PixelTracking. (easyprivacy.txt: 1647) +/(.*/)?PixelTracking\. +PixelTracking.*. +# /pixeltracker. (easyprivacy.txt: 1646) +/(.*/)?pixeltracker\. +pixeltracker.*. +# /pixeltrack.php? (easyprivacy.txt: 1645) +/(.*/)?pixeltrack\.php\? +# /pixelTargetingCacheBuster. (easyprivacy.txt: 1644) +/(.*/)?pixelTargetingCacheBuster\. +pixelTargetingCacheBuster.*. +# /pixelstats/* (easyprivacy.txt: 1643) +/(.*/)?pixelstats/.* +# /pixels.jsp? (easyprivacy.txt: 1642) +/(.*/)?pixels\.jsp\? +# /pixelNew.js (easyprivacy.txt: 1641) +/(.*/)?pixelNew\.js +pixelNew.js*. +# /PixelNedstat. (easyprivacy.txt: 1640) +/(.*/)?PixelNedstat\. +PixelNedstat.*. +# /pixellog. (easyprivacy.txt: 1639) +/(.*/)?pixellog\. +pixellog.*. +# /PixelImg.asp (easyprivacy.txt: 1638) +/(.*/)?PixelImg\.asp +PixelImg.asp*. +# /pixelframe/* (easyprivacy.txt: 1637) +/(.*/)?pixelframe/.* +# /pixelcounter. (easyprivacy.txt: 1636) +/(.*/)?pixelcounter\. +pixelcounter.*. +# /pixel_tracking. (easyprivacy.txt: 1635) +/(.*/)?pixel_tracking\. +# /pixel_track. (easyprivacy.txt: 1634) +/(.*/)?pixel_track\. +# /pixel_iframe. (easyprivacy.txt: 1633) +/(.*/)?pixel_iframe\. +# /pixel/impression/* (easyprivacy.txt: 1632) +/(.*/)?pixel/impression/.* +# /pixel.track? (easyprivacy.txt: 1631) +/(.*/)?pixel\.track\? +# /pixel.swf? (easyprivacy.txt: 1630) +/(.*/)?pixel\.swf\? +# /pixel.png? (easyprivacy.txt: 1629) +/(.*/)?pixel\.png\? +# /pixel.php? (easyprivacy.txt: 1628) +/(.*/)?pixel\.php\? +# /pixel.jsp? (easyprivacy.txt: 1627) +/(.*/)?pixel\.jsp\? +# /pixel.gif? (easyprivacy.txt: 1626) +/(.*/)?pixel\.gif\? +# /pixel.cgi? (easyprivacy.txt: 1625) +/(.*/)?pixel\.cgi\? +# /pixel-page.html (easyprivacy.txt: 1624) +/(.*/)?pixel-page\.html +pixel-page.html*. +# /pixel-manager.js? (easyprivacy.txt: 1623) +/(.*/)?pixel-manager\.js\? +# /pixall.min.js (easyprivacy.txt: 1622) +/(.*/)?pixall\.min\.js +pixall.min.js*. +# /pix.gif? (easyprivacy.txt: 1621) +/(.*/)?pix\.gif\? +# /pix.fcg? (easyprivacy.txt: 1620) +/(.*/)?pix\.fcg\? +# /piwikTracker. (easyprivacy.txt: 1619) +/(.*/)?piwikTracker\. +piwikTracker.*. +# /piwikC_ (easyprivacy.txt: 1618) +/(.*/)?piwikC_ +# /piwikapi.js (easyprivacy.txt: 1617) +/(.*/)?piwikapi\.js +piwikapi.js*. +# /piwik_ (easyprivacy.txt: 1616) +/(.*/)?piwik_ +# /piwik2.js (easyprivacy.txt: 1615) +/(.*/)?piwik2\.js +piwik2.js*. +# /piwik1. (easyprivacy.txt: 1614) +/(.*/)?piwik1\. +piwik1.*. +# /piwik.php (easyprivacy.txt: 1612) +/(.*/)?piwik\.php +piwik.php*. +# /pistats/cgi-bin/* (easyprivacy.txt: 1609) +/(.*/)?pistats/cgi-bin/.* +# /pingServerAction? (easyprivacy.txt: 1608) +/(.*/)?pingServerAction\? +# /PingPixel. (easyprivacy.txt: 1607) +/(.*/)?PingPixel\. +PingPixel.*. +# /pinger.cgi? (easyprivacy.txt: 1606) +/(.*/)?pinger\.cgi\? +# /pingd? (easyprivacy.txt: 1605) +/(.*/)?pingd\? +# /ping_hotclick.js (easyprivacy.txt: 1604) +/(.*/)?ping_hotclick\.js +# /ping_g.jsp? (easyprivacy.txt: 1603) +/(.*/)?ping_g\.jsp\? +# /ping?spacedesc (easyprivacy.txt: 1602) +/(.*/)?ping\?spacedesc +# /ping?h= (easyprivacy.txt: 1601) +/(.*/)?ping\?h= +# /ping/show? (easyprivacy.txt: 1600) +/(.*/)?ping/show\? +# /ping/dot.gif? (easyprivacy.txt: 1599) +/(.*/)?ping/dot\.gif\? +# /ping/?url= (easyprivacy.txt: 1598) +/(.*/)?ping/\?url= +# /ping/?p= (easyprivacy.txt: 1597) +/(.*/)?ping/\?p= +# /ping.php?sid= (easyprivacy.txt: 1596) +/(.*/)?ping\.php\?sid= +# /ping.gif? (easyprivacy.txt: 1595) +/(.*/)?ping\.gif\? +# /ping.*/ping.js (easyprivacy.txt: 1594) +/(.*/)?ping\..*/ping\.js +ping.*./(.*/)?ping\.js +# /phpmyvisites.js (easyprivacy.txt: 1593) +/(.*/)?phpmyvisites\.js +phpmyvisites.js*. +# /php-stats.recjs.php? (easyprivacy.txt: 1592) +/(.*/)?php-stats\.recjs\.php\? +# /php-stats.phpjs.php? (easyprivacy.txt: 1591) +/(.*/)?php-stats\.phpjs\.php\? +# /php-stats.php? (easyprivacy.txt: 1590) +/(.*/)?php-stats\.php\? +# /php-stats.js (easyprivacy.txt: 1589) +/(.*/)?php-stats\.js +php-stats.js*. +# /pgtrackingV3. (easyprivacy.txt: 1588) +/(.*/)?pgtrackingV3\. +pgtrackingV3.*. +# /pgtracking. (easyprivacy.txt: 1587) +/(.*/)?pgtracking\. +pgtracking.*. +# /permalink-tracker.html? (easyprivacy.txt: 1586) +/(.*/)?permalink-tracker\.html\? +# /performance.fcgi? (easyprivacy.txt: 1585) +/(.*/)?performance\.fcgi\? +# /pcount.asp (easyprivacy.txt: 1584) +/(.*/)?pcount\.asp +pcount.asp*. +# /pcookie_get_key (easyprivacy.txt: 1583) +/(.*/)?pcookie_get_key +# /PBSTrackingPlugIn. (easyprivacy.txt: 1582) +/(.*/)?PBSTrackingPlugIn\. +PBSTrackingPlugIn.*. +# /pbasitetracker. (easyprivacy.txt: 1581) +/(.*/)?pbasitetracker\. +pbasitetracker.*. +# /pap.swf? (easyprivacy.txt: 1580) +/(.*/)?pap\.swf\? +# /PageviewsTracker. (easyprivacy.txt: 1579) +/(.*/)?PageviewsTracker\. +PageviewsTracker.*. +# /pageviews?token= (easyprivacy.txt: 1578) +/(.*/)?pageviews\?token= +# /pageviews/* (easyprivacy.txt: 1577) +/(.*/)?pageviews/.* +# /pageviews-counter- (easyprivacy.txt: 1576) +/(.*/)?pageviews-counter- +pageviews-counter-*. +# /pageview; (easyprivacy.txt: 1575) +/(.*/)?pageview; +# /pageview.ashx (easyprivacy.txt: 1574) +/(.*/)?pageview\.ashx +pageview.ashx*. +# /pageView.act (easyprivacy.txt: 1573) +/(.*/)?pageView\.act +pageView.act*. +# /pageTracking.js (easyprivacy.txt: 1572) +/(.*/)?pageTracking\.js +pageTracking.js*. +# /pageTrackerEvent. (easyprivacy.txt: 1571) +/(.*/)?pageTrackerEvent\. +pageTrackerEvent.*. +# /pageTracker_ (easyprivacy.txt: 1570) +/(.*/)?pageTracker_ +# /PageTracker? (easyprivacy.txt: 1569) +/(.*/)?PageTracker\? +# /pageTracker/? (easyprivacy.txt: 1568) +/(.*/)?pageTracker/\? +# /PageTracker. (easyprivacy.txt: 1567) +/(.*/)?PageTracker\. +PageTracker.*. +# /pagetrack.php? (easyprivacy.txt: 1566) +/(.*/)?pagetrack\.php\? +# /PageTrack.js (easyprivacy.txt: 1565) +/(.*/)?PageTrack\.js +PageTrack.js*. +# /pageTag? (easyprivacy.txt: 1564) +/(.*/)?pageTag\? +# /pagetag.gif? (easyprivacy.txt: 1563) +/(.*/)?pagetag\.gif\? +# /pagestats/* (easyprivacy.txt: 1562) +/(.*/)?pagestats/.* +# /PageStats. (easyprivacy.txt: 1561) +/(.*/)?PageStats\. +PageStats.*. +# /PageStatistics/* (easyprivacy.txt: 1560) +/(.*/)?PageStatistics/.* +# /pageloggerobyx. (easyprivacy.txt: 1559) +/(.*/)?pageloggerobyx\. +pageloggerobyx.*. +# /pagelogger/connector.php? (easyprivacy.txt: 1558) +/(.*/)?pagelogger/connector\.php\? +# /pagehits/* (easyprivacy.txt: 1557) +/(.*/)?pagehits/.* +# /PageHitPixel. (easyprivacy.txt: 1556) +/(.*/)?PageHitPixel\. +PageHitPixel.*. +# /PageHit.ashx (easyprivacy.txt: 1555) +/(.*/)?PageHit\.ashx +PageHit.ashx*. +# /pagedot.gif? (easyprivacy.txt: 1554) +/(.*/)?pagedot\.gif\? +# /pageCounter.adp? (easyprivacy.txt: 1553) +/(.*/)?pageCounter\.adp\? +# /PageCount.php? (easyprivacy.txt: 1552) +/(.*/)?PageCount\.php\? +# /page_imp; (easyprivacy.txt: 1551) +/(.*/)?page_imp; +# /page_counter. (easyprivacy.txt: 1550) +/(.*/)?page_counter\. +# /page_analytics. (easyprivacy.txt: 1549) +/(.*/)?page_analytics\. +# /page-track. (easyprivacy.txt: 1548) +/(.*/)?page-track\. +page-track.*. +# /page-analytics. (easyprivacy.txt: 1547) +/(.*/)?page-analytics\. +page-analytics.*. +# /oxtracker. (easyprivacy.txt: 1546) +/(.*/)?oxtracker\. +oxtracker.*. +# /ox_stats. (easyprivacy.txt: 1545) +/(.*/)?ox_stats\. +# /owa.tracker-combined-min.js (easyprivacy.txt: 1544) +/(.*/)?owa\.tracker-combined-min\.js +owa.tracker-combined-min.js*. +# /ow_analytics. (easyprivacy.txt: 1543) +/(.*/)?ow_analytics\. +# /ovstats. (easyprivacy.txt: 1542) +/(.*/)?ovstats\. +ovstats.*. +# /ot_e404.gif? (easyprivacy.txt: 1541) +/(.*/)?ot_e404\.gif\? +# /osGoogleAnalytics. (easyprivacy.txt: 1540) +/(.*/)?osGoogleAnalytics\. +osGoogleAnalytics.*. +# /ordertrack/* (easyprivacy.txt: 1539) +/(.*/)?ordertrack/.* +# /OptimostPageCode. (easyprivacy.txt: 1538) +/(.*/)?OptimostPageCode\. +OptimostPageCode.*. +# /optimostHeader2. (easyprivacy.txt: 1537) +/(.*/)?optimostHeader2\. +optimostHeader2.*. +# /optimostHeader1. (easyprivacy.txt: 1536) +/(.*/)?optimostHeader1\. +optimostHeader1.*. +# /optimostHeader. (easyprivacy.txt: 1535) +/(.*/)?optimostHeader\. +optimostHeader.*. +# /optimosthead/* (easyprivacy.txt: 1534) +/(.*/)?optimosthead/.* +# /optimosthead. (easyprivacy.txt: 1533) +/(.*/)?optimosthead\. +optimosthead.*. +# /OptimostFooter. (easyprivacy.txt: 1532) +/(.*/)?OptimostFooter\. +OptimostFooter.*. +# /optimostfoot. (easyprivacy.txt: 1531) +/(.*/)?optimostfoot\. +optimostfoot.*. +# /optimostBody2. (easyprivacy.txt: 1530) +/(.*/)?optimostBody2\. +optimostBody2.*. +# /optimostBody1. (easyprivacy.txt: 1529) +/(.*/)?optimostBody1\. +optimostBody1.*. +# /optimost_ (easyprivacy.txt: 1528) +/(.*/)?optimost_ +# /Optimost/* (easyprivacy.txt: 1527) +/(.*/)?Optimost/.* +# /optimost. (easyprivacy.txt: 1526) +/(.*/)?optimost\. +optimost.*. +# /optimost- (easyprivacy.txt: 1525) +/(.*/)?optimost- +optimost-*. +# /opinionlab.js (easyprivacy.txt: 1523) +/(.*/)?opinionlab\.js +opinionlab.js*. +# /openxtargeting.js (easyprivacy.txt: 1522) +/(.*/)?openxtargeting\.js +openxtargeting.js*. +# /openxblank.gif? (easyprivacy.txt: 1521) +/(.*/)?openxblank\.gif\? +# /opentag/* (easyprivacy.txt: 1520) +/(.*/)?opentag/.* +# /opentag- (easyprivacy.txt: 1519) +/(.*/)?opentag- +opentag-*. +# /open/log/* (easyprivacy.txt: 1518) +/(.*/)?open/log/.* +# /onsitegeo. (easyprivacy.txt: 1517) +/(.*/)?onsitegeo\. +onsitegeo.*. +# /onlinecount.php (easyprivacy.txt: 1516) +/(.*/)?onlinecount\.php +onlinecount.php*. +# /onestat.js (easyprivacy.txt: 1515) +/(.*/)?onestat\.js +onestat.js*. +# /onedot.php? (easyprivacy.txt: 1514) +/(.*/)?onedot\.php\? +# /oms_analytics_ (easyprivacy.txt: 1513) +/(.*/)?oms_analytics_ +# /omniunih.js (easyprivacy.txt: 1512) +/(.*/)?omniunih\.js +omniunih.js*. +# /OmnitureAnalytics. (easyprivacy.txt: 1510) +/(.*/)?OmnitureAnalytics\. +OmnitureAnalytics.*. +# /omniture/sphere (easyprivacy.txt: 1509) +/(.*/)?omniture/sphere +# /omnipagetrack. (easyprivacy.txt: 1507) +/(.*/)?omnipagetrack\. +omnipagetrack.*. +# /omnidiggthis| (easyprivacy.txt: 1506) +/(.*/)?omnidiggthis$ +# /om_tracking_ (easyprivacy.txt: 1505) +/(.*/)?om_tracking_ +# /om_ctrack. (easyprivacy.txt: 1504) +/(.*/)?om_ctrack\. +# /odoscope.js (easyprivacy.txt: 1503) +/(.*/)?odoscope\.js +odoscope.js*. +# /ocounter. (easyprivacy.txt: 1502) +/(.*/)?ocounter\. +ocounter.*. +# /ocount.php (easyprivacy.txt: 1501) +/(.*/)?ocount\.php +ocount.php*. +# /object_stats. (easyprivacy.txt: 1500) +/(.*/)?object_stats\. +# /oas_analytics. (easyprivacy.txt: 1499) +/(.*/)?oas_analytics\. +# /numericAnalyticsFramework. (easyprivacy.txt: 1498) +/(.*/)?numericAnalyticsFramework\. +numericAnalyticsFramework.*. +# /ntrack.asp? (easyprivacy.txt: 1497) +/(.*/)?ntrack\.asp\? +# /ntpagetaghttps. (easyprivacy.txt: 1496) +/(.*/)?ntpagetaghttps\. +ntpagetaghttps.*. +# /ntpagetag_ (easyprivacy.txt: 1495) +/(.*/)?ntpagetag_ +# /ntpagetag. (easyprivacy.txt: 1494) +/(.*/)?ntpagetag\. +ntpagetag.*. +# /ntpagetag- (easyprivacy.txt: 1493) +/(.*/)?ntpagetag- +ntpagetag-*. +# /nStat/* (easyprivacy.txt: 1492) +/(.*/)?nStat/.* +# /npssurvey. (easyprivacy.txt: 1491) +/(.*/)?npssurvey\. +npssurvey.*. +# /no-impression.gif? (easyprivacy.txt: 1490) +/(.*/)?no-impression\.gif\? +# /nm_trck.gif? (easyprivacy.txt: 1489) +/(.*/)?nm_trck\.gif\? +# /nm_track.js (easyprivacy.txt: 1488) +/(.*/)?nm_track\.js +# /nm_tr_combined.js (easyprivacy.txt: 1487) +/(.*/)?nm_tr_combined\.js +# /nm_tr_combined-min.js (easyprivacy.txt: 1486) +/(.*/)?nm_tr_combined-min\.js +# /njs.gif? (easyprivacy.txt: 1485) +/(.*/)?njs\.gif\? +# /NitroCookies.js (easyprivacy.txt: 1484) +/(.*/)?NitroCookies\.js +NitroCookies.js*. +# /ninemsn.tracking. (easyprivacy.txt: 1483) +/(.*/)?ninemsn\.tracking\. +ninemsn.tracking.*. +# /nikioWSJCallback. (easyprivacy.txt: 1482) +/(.*/)?nikioWSJCallback\. +nikioWSJCallback.*. +# /nielson_stats. (easyprivacy.txt: 1481) +/(.*/)?nielson_stats\. +# /nielson/track (easyprivacy.txt: 1480) +/(.*/)?nielson/track +# /NielsenTracking. (easyprivacy.txt: 1479) +/(.*/)?NielsenTracking\. +NielsenTracking.*. +# /NielsenData/* (easyprivacy.txt: 1477) +/(.*/)?NielsenData/.* +# /NielsenAnalytics. (easyprivacy.txt: 1476) +/(.*/)?NielsenAnalytics\. +NielsenAnalytics.*. +# /nielsen_v53. (easyprivacy.txt: 1475) +/(.*/)?nielsen_v53\. +# /nielsen_geotarget/* (easyprivacy.txt: 1474) +/(.*/)?nielsen_geotarget/.* +# /Nielsen53. (easyprivacy.txt: 1473) +/(.*/)?Nielsen53\. +Nielsen53.*. +# /nielsen/* (easyprivacy.txt: 1472) +/(.*/)?nielsen/.* +# /Nielsen.v53. (easyprivacy.txt: 1471) +/(.*/)?Nielsen\.v53\. +Nielsen.v53.*. +# /nielsen.track (easyprivacy.txt: 1470) +/(.*/)?nielsen\.track +nielsen.track*. +# /nielsen.min. (easyprivacy.txt: 1469) +/(.*/)?nielsen\.min\. +nielsen.min.*. +# /nielsen.js (easyprivacy.txt: 1468) +/(.*/)?nielsen\.js +nielsen.js*. +# /nielsen.htm (easyprivacy.txt: 1467) +/(.*/)?nielsen\.htm +nielsen.htm*. +# /nextPerformanceRetargeting. (easyprivacy.txt: 1466) +/(.*/)?nextPerformanceRetargeting\. +nextPerformanceRetargeting.*. +# /newstatsinc. (easyprivacy.txt: 1465) +/(.*/)?newstatsinc\. +newstatsinc.*. +# /newSophus/* (easyprivacy.txt: 1464) +/(.*/)?newSophus/.* +# /newscount/* (easyprivacy.txt: 1463) +/(.*/)?newscount/.* +# /newlog.php? (easyprivacy.txt: 1462) +/(.*/)?newlog\.php\? +# /new.cnt.aspx? (easyprivacy.txt: 1461) +/(.*/)?new\.cnt\.aspx\? +# /neustar.beacon. (easyprivacy.txt: 1460) +/(.*/)?neustar\.beacon\. +neustar.beacon.*. +# /netupdate/live.php? (easyprivacy.txt: 1459) +/(.*/)?netupdate/live\.php\? +# /nettracker/* (easyprivacy.txt: 1458) +/(.*/)?nettracker/.* +# /nettracker.js (easyprivacy.txt: 1457) +/(.*/)?nettracker\.js +nettracker.js*. +# /netresults.js (easyprivacy.txt: 1456) +/(.*/)?netresults\.js +netresults.js*. +# /netratings.js (easyprivacy.txt: 1455) +/(.*/)?netratings\.js +netratings.js*. +# /netmining.js (easyprivacy.txt: 1454) +/(.*/)?netmining\.js +netmining.js*. +# /netizen_track. (easyprivacy.txt: 1452) +/(.*/)?netizen_track\. +# /netgraviton.net/* (easyprivacy.txt: 1451) +/(.*/)?netgraviton\.net/.* +netgraviton.net/.* +# /netcounter? (easyprivacy.txt: 1450) +/(.*/)?netcounter\? +# /netconversions. (easyprivacy.txt: 1449) +/(.*/)?netconversions\. +netconversions.*. +# /neocounter/* (easyprivacy.txt: 1448) +/(.*/)?neocounter/.* +# /neocounter. (easyprivacy.txt: 1447) +/(.*/)?neocounter\. +neocounter.*. +# /neilson.js (easyprivacy.txt: 1446) +/(.*/)?neilson\.js +neilson.js*. +# /nedstat. (easyprivacy.txt: 1445) +/(.*/)?nedstat\. +nedstat.*. +# /ncp/checkBrowser? (easyprivacy.txt: 1444) +/(.*/)?ncp/checkBrowser\? +# /naytev.min.js (easyprivacy.txt: 1443) +/(.*/)?naytev\.min\.js +naytev.min.js*. +# /NavMultiTracking. (easyprivacy.txt: 1442) +/(.*/)?NavMultiTracking\. +NavMultiTracking.*. +# /naveggQry- (easyprivacy.txt: 1441) +/(.*/)?naveggQry- +naveggQry-*. +# /myTracking.js (easyprivacy.txt: 1440) +/(.*/)?myTracking\.js +myTracking.js*. +# /mystats2.px? (easyprivacy.txt: 1439) +/(.*/)?mystats2\.px\? +# /mystats/track.js (easyprivacy.txt: 1438) +/(.*/)?mystats/track\.js +# /mystats.asp? (easyprivacy.txt: 1437) +/(.*/)?mystats\.asp\? +# /myopslogger. (easyprivacy.txt: 1436) +/(.*/)?myopslogger\. +myopslogger.*. +# /mycounter/counter_in.php? (easyprivacy.txt: 1435) +/(.*/)?mycounter/counter_in\.php\? +# /myasg/stats_js.asp (easyprivacy.txt: 1434) +/(.*/)?myasg/stats_js\.asp +# /mwtag_flash.js (easyprivacy.txt: 1433) +/(.*/)?mwtag_flash\.js +# /mwTag.js (easyprivacy.txt: 1432) +/(.*/)?mwTag\.js +mwTag.js*. +# /mvTracker. (easyprivacy.txt: 1431) +/(.*/)?mvTracker\. +mvTracker.*. +# /mtvi_reporting.js (easyprivacy.txt: 1430) +/(.*/)?mtvi_reporting\.js +# /mtracking. (easyprivacy.txt: 1429) +/(.*/)?mtracking\. +mtracking.*. +# /mtrack.nl/js/* (easyprivacy.txt: 1428) +/(.*/)?mtrack\.nl/js/.* +mtrack.nl/js/.* +# /mstartracking/* (easyprivacy.txt: 1427) +/(.*/)?mstartracking/.* +# /msftaudience. (easyprivacy.txt: 1426) +/(.*/)?msftaudience\. +msftaudience.*. +# /mpulse.min.js (easyprivacy.txt: 1425) +/(.*/)?mpulse\.min\.js +mpulse.min.js*. +# /mpel/mpel.js (easyprivacy.txt: 1424) +/(.*/)?mpel/mpel\.js +# /mousetrap/mp-embed. (easyprivacy.txt: 1423) +/(.*/)?mousetrap/mp-embed\. +# /mouseover-tracker. (easyprivacy.txt: 1422) +/(.*/)?mouseover-tracker\. +mouseover-tracker.*. +# /morega.js (easyprivacy.txt: 1421) +/(.*/)?morega\.js +morega.js*. +# /monitus.js (easyprivacy.txt: 1420) +/(.*/)?monitus\.js +monitus.js*. +# /mongoose.fp.js (easyprivacy.txt: 1419) +/(.*/)?mongoose\.fp\.js +mongoose.fp.js*. +# /moduleTracker. (easyprivacy.txt: 1418) +/(.*/)?moduleTracker\. +moduleTracker.*. +# /modoweb-tracking/* (easyprivacy.txt: 1417) +/(.*/)?modoweb-tracking/.* +# /mobileanalytics. (easyprivacy.txt: 1416) +/(.*/)?mobileanalytics\. +mobileanalytics.*. +# /mobify_ga.gif (easyprivacy.txt: 1415) +/(.*/)?mobify_ga\.gif +# /mngi/tracking/* (easyprivacy.txt: 1414) +/(.*/)?mngi/tracking/.* +# /mmetrix.mobi/* (easyprivacy.txt: 1413) +/(.*/)?mmetrix\.mobi/.* +mmetrix.mobi/.* +# /mmcore.js (easyprivacy.txt: 1412) +/(.*/)?mmcore\.js +mmcore.js*. +# /mmclient.js (easyprivacy.txt: 1411) +/(.*/)?mmclient\.js +mmclient.js*. +# /mm_track/* (easyprivacy.txt: 1410) +/(.*/)?mm_track/.* +# /mm-metrics. (easyprivacy.txt: 1409) +/(.*/)?mm-metrics\. +mm-metrics.*. +# /mlopen_track. (easyprivacy.txt: 1408) +/(.*/)?mlopen_track\. +# /ml.track.me? (easyprivacy.txt: 1407) +/(.*/)?ml\.track\.me\? +# /mktg_metrics/* (easyprivacy.txt: 1406) +/(.*/)?mktg_metrics/.* +# /mixpanel_tracker. (easyprivacy.txt: 1405) +/(.*/)?mixpanel_tracker\. +# /mixpanel_beacon. (easyprivacy.txt: 1404) +/(.*/)?mixpanel_beacon\. +# /mixpanel. (easyprivacy.txt: 1403) +/(.*/)?mixpanel\. +mixpanel.*. +# /mixpanel-measurement. (easyprivacy.txt: 1402) +/(.*/)?mixpanel-measurement\. +mixpanel-measurement.*. +# /mistats/* (easyprivacy.txt: 1401) +/(.*/)?mistats/.* +# /mintstats/?js (easyprivacy.txt: 1400) +/(.*/)?mintstats/\?js +# /mint8/? (easyprivacy.txt: 1399) +/(.*/)?mint8/\? +# /mint/?record (easyprivacy.txt: 1398) +/(.*/)?mint/\?record +# /mint/?js (easyprivacy.txt: 1397) +/(.*/)?mint/\?js +# /mindshare-tracking. (easyprivacy.txt: 1396) +/(.*/)?mindshare-tracking\. +mindshare-tracking.*. +# /middle?call=http (easyprivacy.txt: 1395) +/(.*/)?middle\?call=http +# /microreporting. (easyprivacy.txt: 1394) +/(.*/)?microreporting\. +microreporting.*. +# /micro.php?action=view& (easyprivacy.txt: 1393) +/(.*/)?micro\.php\?action=view& +# /mianalytics. (easyprivacy.txt: 1392) +/(.*/)?mianalytics\. +mianalytics.*. +# /mi/insite/* (easyprivacy.txt: 1391) +/(.*/)?mi/insite/.* +# /metsol- (easyprivacy.txt: 1390) +/(.*/)?metsol- +metsol-*. +# /metriweb/spring.js (easyprivacy.txt: 1389) +/(.*/)?metriweb/spring\.js +# /metriweb.js (easyprivacy.txt: 1388) +/(.*/)?metriweb\.js +metriweb.js*. +# /metrimatics/* (easyprivacy.txt: 1387) +/(.*/)?metrimatics/.* +# /metricsISCS. (easyprivacy.txt: 1386) +/(.*/)?metricsISCS\. +metricsISCS.*. +# /metrics/vanity/? (easyprivacy.txt: 1385) +/(.*/)?metrics/vanity/\? +# /metrics/survey/* (easyprivacy.txt: 1384) +/(.*/)?metrics/survey/.* +# /metrics/onload (easyprivacy.txt: 1383) +/(.*/)?metrics/onload +# /metrics/metrics (easyprivacy.txt: 1382) +/(.*/)?metrics/metrics +# /metrics/image.gif? (easyprivacy.txt: 1381) +/(.*/)?metrics/image\.gif\? +# /metrics/ga.html? (easyprivacy.txt: 1380) +/(.*/)?metrics/ga\.html\? +# /metrics.xml (easyprivacy.txt: 1379) +/(.*/)?metrics\.xml +metrics.xml*. +# /metrics-ga. (easyprivacy.txt: 1378) +/(.*/)?metrics-ga\. +metrics-ga.*. +# /metatraffic/track.asp? (easyprivacy.txt: 1377) +/(.*/)?metatraffic/track\.asp\? +# /megacounter/* (easyprivacy.txt: 1376) +/(.*/)?megacounter/.* +# /mediateGA.js (easyprivacy.txt: 1375) +/(.*/)?mediateGA\.js +mediateGA.js*. +# /media_viewed_tracking. (easyprivacy.txt: 1374) +/(.*/)?media_viewed_tracking\. +# /mdwtc/click_thru/* (easyprivacy.txt: 1373) +/(.*/)?mdwtc/click_thru/.* +# /md.js?country= (easyprivacy.txt: 1372) +/(.*/)?md\.js\?country= +# /mcount.cgi? (easyprivacy.txt: 1371) +/(.*/)?mcount\.cgi\? +# /MCookieReturn.aspx (easyprivacy.txt: 1370) +/(.*/)?MCookieReturn\.aspx +MCookieReturn.aspx*. +# /MCookieCheck.aspx (easyprivacy.txt: 1369) +/(.*/)?MCookieCheck\.aspx +MCookieCheck.aspx*. +# /mcookie.aspx (easyprivacy.txt: 1368) +/(.*/)?mcookie\.aspx +mcookie.aspx*. +# /mbcom.tracking. (easyprivacy.txt: 1367) +/(.*/)?mbcom\.tracking\. +mbcom.tracking.*. +# /Maxymiser/* (easyprivacy.txt: 1366) +/(.*/)?Maxymiser/.* +# /maxymiser. (easyprivacy.txt: 1365) +/(.*/)?maxymiser\. +maxymiser.*. +# /marketing-analytics.js (easyprivacy.txt: 1364) +/(.*/)?marketing-analytics\.js +marketing-analytics.js*. +# /mapstats. (easyprivacy.txt: 1363) +/(.*/)?mapstats\. +mapstats.*. +# /mailstatstrk/* (easyprivacy.txt: 1362) +/(.*/)?mailstatstrk/.* +# /mail_tracking.php (easyprivacy.txt: 1361) +/(.*/)?mail_tracking\.php +# /mail_tracking-cg.php (easyprivacy.txt: 1360) +/(.*/)?mail_tracking-cg\.php +# /magiq- (easyprivacy.txt: 1359) +/(.*/)?magiq- +magiq-*. +# /m360lib.js (easyprivacy.txt: 1358) +/(.*/)?m360lib\.js +m360lib.js*. +# /m1x1.jpg (easyprivacy.txt: 1357) +/(.*/)?m1x1\.jpg +m1x1.jpg*. +# /lzdtracker. (easyprivacy.txt: 1356) +/(.*/)?lzdtracker\. +lzdtracker.*. +# /lycostrack.js (easyprivacy.txt: 1355) +/(.*/)?lycostrack\.js +lycostrack.js*. +# /logwriter.php (easyprivacy.txt: 1354) +/(.*/)?logwriter\.php +logwriter.php*. +# /logwebhit. (easyprivacy.txt: 1353) +/(.*/)?logwebhit\. +logwebhit.*. +# /logViewImpression/* (easyprivacy.txt: 1352) +/(.*/)?logViewImpression/.* +# /logStatistics? (easyprivacy.txt: 1351) +/(.*/)?logStatistics\? +# /logStatistic? (easyprivacy.txt: 1350) +/(.*/)?logStatistic\? +# /logstat? (easyprivacy.txt: 1349) +/(.*/)?logstat\? +# /logstat. (easyprivacy.txt: 1348) +/(.*/)?logstat\. +logstat.*. +# /logserver- (easyprivacy.txt: 1347) +/(.*/)?logserver- +logserver-*. +# /logreferrer.php?*&referrer= (easyprivacy.txt: 1346) +/(.*/)?logreferrer\.php\?.*&referrer= +# /LogRecorder. (easyprivacy.txt: 1345) +/(.*/)?LogRecorder\. +LogRecorder.*. +# /logpv.aspx? (easyprivacy.txt: 1344) +/(.*/)?logpv\.aspx\? +# /logpstatus. (easyprivacy.txt: 1343) +/(.*/)?logpstatus\. +logpstatus.*. +# /LogPage.aspx? (easyprivacy.txt: 1342) +/(.*/)?LogPage\.aspx\? +# /LogMediaClick? (easyprivacy.txt: 1341) +/(.*/)?LogMediaClick\? +# /logLoad/? (easyprivacy.txt: 1340) +/(.*/)?logLoad/\? +# /LogImpression? (easyprivacy.txt: 1339) +/(.*/)?LogImpression\? +# /LogImpression. (easyprivacy.txt: 1338) +/(.*/)?LogImpression\. +LogImpression.*. +# /logHandler. (easyprivacy.txt: 1337) +/(.*/)?logHandler\. +logHandler.*. +# /loggingService.js (easyprivacy.txt: 1336) +/(.*/)?loggingService\.js +loggingService.js*. +# /LoggingAgent? (easyprivacy.txt: 1335) +/(.*/)?LoggingAgent\? +# /logging_save. (easyprivacy.txt: 1334) +/(.*/)?logging_save\. +# /logging_requests. (easyprivacy.txt: 1333) +/(.*/)?logging_requests\. +# /logging/pixel? (easyprivacy.txt: 1332) +/(.*/)?logging/pixel\? +# /logging-code. (easyprivacy.txt: 1331) +/(.*/)?logging-code\. +logging-code.*. +# /logger?d= (easyprivacy.txt: 1330) +/(.*/)?logger\?d= +# /logger/p.gif? (easyprivacy.txt: 1329) +/(.*/)?logger/p\.gif\? +# /logger.pageperf? (easyprivacy.txt: 1328) +/(.*/)?logger\.pageperf\? +# /logger.dll/* (easyprivacy.txt: 1327) +/(.*/)?logger\.dll/.* +logger.dll/.* +# /logger.ashx? (easyprivacy.txt: 1326) +/(.*/)?logger\.ashx\? +# /logextrastats. (easyprivacy.txt: 1325) +/(.*/)?logextrastats\. +logextrastats.*. +# /logEvent? (easyprivacy.txt: 1324) +/(.*/)?logEvent\? +# /logevent.action? (easyprivacy.txt: 1323) +/(.*/)?logevent\.action\? +# /logcounter. (easyprivacy.txt: 1322) +/(.*/)?logcounter\. +logcounter.*. +# /logcollectscript_ (easyprivacy.txt: 1321) +/(.*/)?logcollectscript_ +# /logcollect_ (easyprivacy.txt: 1320) +/(.*/)?logcollect_ +# /logcollect. (easyprivacy.txt: 1319) +/(.*/)?logcollect\. +logcollect.*. +# /logclick. (easyprivacy.txt: 1318) +/(.*/)?logclick\. +logclick.*. +# /LogAnalysisTracker/* (easyprivacy.txt: 1317) +/(.*/)?LogAnalysisTracker/.* +# /logaholictracker. (easyprivacy.txt: 1316) +/(.*/)?logaholictracker\. +logaholictracker.*. +# /logAdv. (easyprivacy.txt: 1315) +/(.*/)?logAdv\. +logAdv.*. +# /logadhit. (easyprivacy.txt: 1314) +/(.*/)?logadhit\. +logadhit.*. +# /logactions.gif? (easyprivacy.txt: 1313) +/(.*/)?logactions\.gif\? +# /LogAction? (easyprivacy.txt: 1312) +/(.*/)?LogAction\? +# /log_zon_img. (easyprivacy.txt: 1311) +/(.*/)?log_zon_img\. +# /log_view. (easyprivacy.txt: 1310) +/(.*/)?log_view\. +# /log_tracker. (easyprivacy.txt: 1309) +/(.*/)?log_tracker\. +# /log_syndication. (easyprivacy.txt: 1308) +/(.*/)?log_syndication\. +# /log_stats.php? (easyprivacy.txt: 1307) +/(.*/)?log_stats\.php\? +# /log_presence/* (easyprivacy.txt: 1306) +/(.*/)?log_presence/.* +# /log_interaction? (easyprivacy.txt: 1305) +/(.*/)?log_interaction\? +# /log_impression/* (easyprivacy.txt: 1304) +/(.*/)?log_impression/.* +# /log_hit. (easyprivacy.txt: 1303) +/(.*/)?log_hit\. +# /log_e.php?id= (easyprivacy.txt: 1302) +/(.*/)?log_e\.php\?id= +# /log_agent. (easyprivacy.txt: 1301) +/(.*/)?log_agent\. +# /log?type= (easyprivacy.txt: 1300) +/(.*/)?log\?type= +# /log?id= (easyprivacy.txt: 1299) +/(.*/)?log\?id= +# /Log?entry= (easyprivacy.txt: 1298) +/(.*/)?Log\?entry= +# /log?documentUrl= (easyprivacy.txt: 1297) +/(.*/)?log\?documentUrl= +# /log?data= (easyprivacy.txt: 1296) +/(.*/)?log\?data= +# /log2.php? (easyprivacy.txt: 1295) +/(.*/)?log2\.php\? +# /log/p.gif? (easyprivacy.txt: 1294) +/(.*/)?log/p\.gif\? +# /log/log.php? (easyprivacy.txt: 1293) +/(.*/)?log/log\.php\? +# /log/jserr.php (easyprivacy.txt: 1292) +/(.*/)?log/jserr\.php +# /log/ad- (easyprivacy.txt: 1291) +/(.*/)?log/ad- +# /log.php?owa_timestamp= (easyprivacy.txt: 1290) +/(.*/)?log\.php\?owa_timestamp= +# /log.php?id (easyprivacy.txt: 1289) +/(.*/)?log\.php\?id +# /log.php?*http (easyprivacy.txt: 1288) +/(.*/)?log\.php\?.*http +# /log.jsp? (easyprivacy.txt: 1287) +/(.*/)?log\.jsp\? +# /log.jphp? (easyprivacy.txt: 1286) +/(.*/)?log\.jphp\? +# /log.htm? (easyprivacy.txt: 1285) +/(.*/)?log\.htm\? +# /log.gif? (easyprivacy.txt: 1284) +/(.*/)?log\.gif\? +# /log.cfm? (easyprivacy.txt: 1283) +/(.*/)?log\.cfm\? +# /log.bi? (easyprivacy.txt: 1282) +/(.*/)?log\.bi\? +# /Log.ashx? (easyprivacy.txt: 1281) +/(.*/)?Log\.ashx\? +# /log-view. (easyprivacy.txt: 1280) +/(.*/)?log-view\. +log-view.*. +# /loadJsFingerprint.js (easyprivacy.txt: 1279) +/(.*/)?loadJsFingerprint\.js +loadJsFingerprint.js*. +# /loader-counter. (easyprivacy.txt: 1278) +/(.*/)?loader-counter\. +loader-counter.*. +# /loadcounter. (easyprivacy.txt: 1277) +/(.*/)?loadcounter\. +loadcounter.*. +# /load.gif? (easyprivacy.txt: 1276) +/(.*/)?load\.gif\? +# /livezilla/server.php?request=track& (easyprivacy.txt: 1275) +/(.*/)?livezilla/server\.php\?request=track& +# /linktracking. (easyprivacy.txt: 1274) +/(.*/)?linktracking\. +linktracking.*. +# /linktracker/* (easyprivacy.txt: 1273) +/(.*/)?linktracker/.* +# /linkinformer.js (easyprivacy.txt: 1272) +/(.*/)?linkinformer\.js +linkinformer.js*. +# /linkcountdata/* (easyprivacy.txt: 1271) +/(.*/)?linkcountdata/.* +# /link_tracking/* (easyprivacy.txt: 1270) +/(.*/)?link_tracking/.* +# /link_track. (easyprivacy.txt: 1269) +/(.*/)?link_track\. +# /lingabot. (easyprivacy.txt: 1268) +/(.*/)?lingabot\. +lingabot.*. +# /library/svy/broker.js (easyprivacy.txt: 1267) +/(.*/)?library/svy/broker\.js +# /library/svy/*/broker.js (easyprivacy.txt: 1266) +/(.*/)?library/svy/.*/broker\.js +# /leadgen_track (easyprivacy.txt: 1265) +/(.*/)?leadgen_track +# /leadgen/ga.js (easyprivacy.txt: 1264) +/(.*/)?leadgen/ga\.js +# /lbi_ga. (easyprivacy.txt: 1263) +/(.*/)?lbi_ga\. +# /layer_log.php?p= (easyprivacy.txt: 1262) +/(.*/)?layer_log\.php\?p= +# /landings-pixel? (easyprivacy.txt: 1261) +/(.*/)?landings-pixel\? +# /krux.js (easyprivacy.txt: 1258) +/(.*/)?krux\.js +krux.js*. +# /konterayahoooo. (easyprivacy.txt: 1257) +/(.*/)?konterayahoooo\. +konterayahoooo.*. +# /kontera.js (easyprivacy.txt: 1256) +/(.*/)?kontera\.js +kontera.js*. +# /KISSmetricsTrackCode. (easyprivacy.txt: 1255) +/(.*/)?KISSmetricsTrackCode\. +KISSmetricsTrackCode.*. +# /kissmetrics/* (easyprivacy.txt: 1254) +/(.*/)?kissmetrics/.* +# /kissmetrics. (easyprivacy.txt: 1253) +/(.*/)?kissmetrics\. +kissmetrics.*. +# /kGoogleAnalytics.js (easyprivacy.txt: 1252) +/(.*/)?kGoogleAnalytics\.js +kGoogleAnalytics.js*. +# /keywordlogger. (easyprivacy.txt: 1251) +/(.*/)?keywordlogger\. +keywordlogger.*. +# /kelkooSponsoredLinks. (easyprivacy.txt: 1250) +/(.*/)?kelkooSponsoredLinks\. +kelkooSponsoredLinks.*. +# /Kelkooid? (easyprivacy.txt: 1249) +/(.*/)?Kelkooid\? +# /kejobscounter. (easyprivacy.txt: 1248) +/(.*/)?kejobscounter\. +kejobscounter.*. +# /keen.min.js (easyprivacy.txt: 1247) +/(.*/)?keen\.min\.js +keen.min.js*. +# /keen-tracker. (easyprivacy.txt: 1246) +/(.*/)?keen-tracker\. +keen-tracker.*. +# /kaizentrack/* (easyprivacy.txt: 1245) +/(.*/)?kaizentrack/.* +# /kaiseki/track.php? (easyprivacy.txt: 1244) +/(.*/)?kaiseki/track\.php\? +# /kaiseki/script.php (easyprivacy.txt: 1243) +/(.*/)?kaiseki/script\.php +# /jtracking/* (easyprivacy.txt: 1242) +/(.*/)?jtracking/.* +# /jstats/js/* (easyprivacy.txt: 1241) +/(.*/)?jstats/js/.* +# /jstats.php (easyprivacy.txt: 1240) +/(.*/)?jstats\.php +jstats.php*. +# /jslogger.php?ref= (easyprivacy.txt: 1239) +/(.*/)?jslogger\.php\?ref= +# /jscounter. (easyprivacy.txt: 1238) +/(.*/)?jscounter\. +jscounter.*. +# /js_tracker. (easyprivacy.txt: 1237) +/(.*/)?js_tracker\. +# /js_logger. (easyprivacy.txt: 1236) +/(.*/)?js_logger\. +# /js_hotlink.php? (easyprivacy.txt: 1235) +/(.*/)?js_hotlink\.php\? +# /js/trk_ (easyprivacy.txt: 1234) +/(.*/)?js/trk_ +# /js/tracking.min.js? (easyprivacy.txt: 1233) +/(.*/)?js/tracking\.min\.js\? +# /js/tracking.js (easyprivacy.txt: 1232) +/(.*/)?js/tracking\.js +# /js/tophits_ (easyprivacy.txt: 1231) +/(.*/)?js/tophits_ +# /js/tagging/tagtrack.js (easyprivacy.txt: 1230) +/(.*/)?js/tagging/tagtrack\.js +# /js/sophus/* (easyprivacy.txt: 1229) +/(.*/)?js/sophus/.* +# /js/quantcast- (easyprivacy.txt: 1228) +/(.*/)?js/quantcast- +# /js/livestats_ (easyprivacy.txt: 1227) +/(.*/)?js/livestats_ +# /js/indextools/* (easyprivacy.txt: 1226) +/(.*/)?js/indextools/.* +# /js/hbx.js (easyprivacy.txt: 1225) +/(.*/)?js/hbx\.js +# /js/google_stats. (easyprivacy.txt: 1224) +/(.*/)?js/google_stats\. +# /js/ddx/* (easyprivacy.txt: 1223) +/(.*/)?js/ddx/.* +# /js/dcstorm/* (easyprivacy.txt: 1222) +/(.*/)?js/dcstorm/.* +# /js/dart.js (easyprivacy.txt: 1221) +/(.*/)?js/dart\.js +# /js/counter.js? (easyprivacy.txt: 1220) +/(.*/)?js/counter\.js\? +# /js/count.js. (easyprivacy.txt: 1219) +/(.*/)?js/count\.js\. +# /js/analitycs_ (easyprivacy.txt: 1218) +/(.*/)?js/analitycs_ +# /jquery.unica. (easyprivacy.txt: 1217) +/(.*/)?jquery\.unica\. +jquery.unica.*. +# /jquery.trackstar. (easyprivacy.txt: 1216) +/(.*/)?jquery\.trackstar\. +jquery.trackstar.*. +# /jquery.google-analytics. (easyprivacy.txt: 1215) +/(.*/)?jquery\.google-analytics\. +jquery.google-analytics.*. +# /jquery.analytics.js| (easyprivacy.txt: 1214) +/(.*/)?jquery\.analytics\.js$ +jquery.analytics.js +# /jgs_portal_log_bildschirm.php? (easyprivacy.txt: 1213) +/(.*/)?jgs_portal_log_bildschirm\.php\? +# /jcaffiliatesystem/* (easyprivacy.txt: 1212) +/(.*/)?jcaffiliatesystem/.* +# /javascripts/tracking_ (easyprivacy.txt: 1211) +/(.*/)?javascripts/tracking_ +# /javascripts/ga.js (easyprivacy.txt: 1210) +/(.*/)?javascripts/ga\.js +# /Javascript/ga.js (easyprivacy.txt: 1209) +/(.*/)?Javascript/ga\.js +# /javascript/analytics/* (easyprivacy.txt: 1207) +/(.*/)?javascript/analytics/.* +# /iwa.js (easyprivacy.txt: 1206) +/(.*/)?iwa\.js +iwa.js*. +# /IVWTracker.swf (easyprivacy.txt: 1205) +/(.*/)?IVWTracker\.swf +IVWTracker.swf*. +# /ivwbox/* (easyprivacy.txt: 1204) +/(.*/)?ivwbox/.* +# /IVWAnalytics. (easyprivacy.txt: 1203) +/(.*/)?IVWAnalytics\. +IVWAnalytics.*. +# /ivw_analytics_ (easyprivacy.txt: 1202) +/(.*/)?ivw_analytics_ +# /ivw2.js (easyprivacy.txt: 1201) +/(.*/)?ivw2\.js +ivw2.js*. +# /ivw2.cgi? (easyprivacy.txt: 1200) +/(.*/)?ivw2\.cgi\? +# /ivw.php (easyprivacy.txt: 1198) +/(.*/)?ivw\.php +ivw.php*. +# /ivw.js (easyprivacy.txt: 1197) +/(.*/)?ivw\.js +ivw.js*. +# /iva_thefilterjwanalytics. (easyprivacy.txt: 1196) +/(.*/)?iva_thefilterjwanalytics\. +# /iva_analytics. (easyprivacy.txt: 1195) +/(.*/)?iva_analytics\. +# /itrack.php? (easyprivacy.txt: 1194) +/(.*/)?itrack\.php\? +# /ItemStats.ajax? (easyprivacy.txt: 1193) +/(.*/)?ItemStats\.ajax\? +# /ists.tag? (easyprivacy.txt: 1192) +/(.*/)?ists\.tag\? +# /istat.aspx? (easyprivacy.txt: 1191) +/(.*/)?istat\.aspx\? +# /iqtm.js (easyprivacy.txt: 1190) +/(.*/)?iqtm\.js +iqtm.js*. +# /ips-invite.iperceptions.com/* (easyprivacy.txt: 1189) +/(.*/)?ips-invite\.iperceptions\.com/.* +ips-invite.iperceptions.com/.* +# /iporganictrack. (easyprivacy.txt: 1188) +/(.*/)?iporganictrack\. +iporganictrack.*. +# /iplookup.php (easyprivacy.txt: 1187) +/(.*/)?iplookup\.php +iplookup.php*. +# /ipixel?spacedesc (easyprivacy.txt: 1186) +/(.*/)?ipixel\?spacedesc +# /ipfx?eid= (easyprivacy.txt: 1185) +/(.*/)?ipfx\?eid= +# /IperceptionsSurvey. (easyprivacy.txt: 1184) +/(.*/)?IperceptionsSurvey\. +IperceptionsSurvey.*. +# /iperceptions_ (easyprivacy.txt: 1183) +/(.*/)?iperceptions_ +# /iperceptions/* (easyprivacy.txt: 1182) +/(.*/)?iperceptions/.* +# /iperceptions. (easyprivacy.txt: 1181) +/(.*/)?iperceptions\. +iperceptions.*. +# /intervigil. (easyprivacy.txt: 1180) +/(.*/)?intervigil\. +intervigil.*. +# /intellitracker.js (easyprivacy.txt: 1179) +/(.*/)?intellitracker\.js +intellitracker.js*. +# /InstantTracking. (easyprivacy.txt: 1178) +/(.*/)?InstantTracking\. +InstantTracking.*. +# /insitemetrics/* (easyprivacy.txt: 1177) +/(.*/)?insitemetrics/.* +# /insightXe.js (easyprivacy.txt: 1176) +/(.*/)?insightXe\.js +insightXe.js*. +# /insert_impressions. (easyprivacy.txt: 1175) +/(.*/)?insert_impressions\. +# /inpl.measure. (easyprivacy.txt: 1174) +/(.*/)?inpl\.measure\. +inpl.measure.*. +# /informerStat? (easyprivacy.txt: 1173) +/(.*/)?informerStat\? +# /info/picksel/* (easyprivacy.txt: 1172) +/(.*/)?info/picksel/.* +# /inetlog.ru/* (easyprivacy.txt: 1171) +/(.*/)?inetlog\.ru/.* +inetlog.ru/.* +# /indextools.js (easyprivacy.txt: 1170) +/(.*/)?indextools\.js +indextools.js*. +# /index.track? (easyprivacy.txt: 1169) +/(.*/)?index\.track\? +# /index.php?_m=livesupport*&referrer= (easyprivacy.txt: 1168) +/(.*/)?index\.php\?_m=livesupport.*&referrer= +# /increment_page_counter. (easyprivacy.txt: 1167) +/(.*/)?increment_page_counter\. +# /includes/tracker/* (easyprivacy.txt: 1166) +/(.*/)?includes/tracker/.* +# /include/js/ga- (easyprivacy.txt: 1165) +/(.*/)?include/js/ga- +# /in.php?p= (easyprivacy.txt: 1164) +/(.*/)?in\.php\?p= +# /in.getclicky.com/* (easyprivacy.txt: 1163) +/(.*/)?in\.getclicky\.com/.* +in.getclicky.com/.* +# /in.cgi?*http (easyprivacy.txt: 1162) +/(.*/)?in\.cgi\?.*http +# /impressionTrackerV2. (easyprivacy.txt: 1161) +/(.*/)?impressionTrackerV2\. +impressionTrackerV2.*. +# /ImpressionsEvent.js (easyprivacy.txt: 1160) +/(.*/)?ImpressionsEvent\.js +ImpressionsEvent.js*. +# /impressions? (easyprivacy.txt: 1159) +/(.*/)?impressions\? +# /impressions3.asp? (easyprivacy.txt: 1158) +/(.*/)?impressions3\.asp\? +# /Impressions/aolukdp.imp? (easyprivacy.txt: 1157) +/(.*/)?Impressions/aolukdp\.imp\? +# /impressioncount. (easyprivacy.txt: 1156) +/(.*/)?impressioncount\. +impressioncount.*. +# /impression_tracking. (easyprivacy.txt: 1155) +/(.*/)?impression_tracking\. +# /impression_tracker. (easyprivacy.txt: 1154) +/(.*/)?impression_tracker\. +# /impression? (easyprivacy.txt: 1153) +/(.*/)?impression\? +# /impression/widget? (easyprivacy.txt: 1152) +/(.*/)?impression/widget\? +# /impression.track? (easyprivacy.txt: 1151) +/(.*/)?impression\.track\? +# /impression.pl? (easyprivacy.txt: 1150) +/(.*/)?impression\.pl\? +# /impression.js? (easyprivacy.txt: 1149) +/(.*/)?impression\.js\? +# /impression.gif? (easyprivacy.txt: 1148) +/(.*/)?impression\.gif\? +# /impression.ashx (easyprivacy.txt: 1147) +/(.*/)?impression\.ashx +impression.ashx*. +# /impress.php? (easyprivacy.txt: 1146) +/(.*/)?impress\.php\? +# /imp_img.php? (easyprivacy.txt: 1145) +/(.*/)?imp_img\.php\? +# /imp_cnt.gif? (easyprivacy.txt: 1144) +/(.*/)?imp_cnt\.gif\? +# /imp?imgid= (easyprivacy.txt: 1143) +/(.*/)?imp\?imgid= +# /imp/a.gif? (easyprivacy.txt: 1142) +/(.*/)?imp/a\.gif\? +# /imp.php?a (easyprivacy.txt: 1141) +/(.*/)?imp\.php\?a +# /imp.gif? (easyprivacy.txt: 1140) +/(.*/)?imp\.gif\? +# /imp.aspx? (easyprivacy.txt: 1139) +/(.*/)?imp\.aspx\? +# /imgtracker. (easyprivacy.txt: 1138) +/(.*/)?imgtracker\. +imgtracker.*. +# /imgcount.php? (easyprivacy.txt: 1137) +/(.*/)?imgcount\.php\? +# /imgcount.cgi? (easyprivacy.txt: 1136) +/(.*/)?imgcount\.cgi\? +# /img?eid= (easyprivacy.txt: 1135) +/(.*/)?img\?eid= +# /img/gut.gif? (easyprivacy.txt: 1134) +/(.*/)?img/gut\.gif\? +# /img/gnt.gif? (easyprivacy.txt: 1133) +/(.*/)?img/gnt\.gif\? +# /img.mqcdn.com/a/a (easyprivacy.txt: 1132) +/(.*/)?img\.mqcdn\.com/a/a +img.mqcdn.com/a/a +# /img.aspx?q=l3mkwgak (easyprivacy.txt: 1131) +/(.*/)?img\.aspx\?q=l3mkwgak +# /iMAWebCookie. (easyprivacy.txt: 1130) +/(.*/)?iMAWebCookie\. +iMAWebCookie.*. +# /imageTracking. (easyprivacy.txt: 1129) +/(.*/)?imageTracking\. +imageTracking.*. +# /images/uc.GIF? (easyprivacy.txt: 1128) +/(.*/)?images/uc\.GIF\? +# /images/mxl.gif? (easyprivacy.txt: 1127) +/(.*/)?images/mxl\.gif\? +# /images/1px.gif? (easyprivacy.txt: 1126) +/(.*/)?images/1px\.gif\? +# /image/count.gif? (easyprivacy.txt: 1125) +/(.*/)?image/count\.gif\? +# /image.ng/* (easyprivacy.txt: 1124) +/(.*/)?image\.ng/.* +image.ng/.* +# /ignition-one.js (easyprivacy.txt: 1123) +/(.*/)?ignition-one\.js +ignition-one.js*. +# /IGA.linktagger. (easyprivacy.txt: 1122) +/(.*/)?IGA\.linktagger\. +IGA.linktagger.*. +# /iframetracker. (easyprivacy.txt: 1121) +/(.*/)?iframetracker\. +iframetracker.*. +# /iframe_googleAnalytics (easyprivacy.txt: 1120) +/(.*/)?iframe_googleAnalytics +# /iframe.tracker.js (easyprivacy.txt: 1119) +/(.*/)?iframe\.tracker\.js +iframe.tracker.js*. +# /idcookie/pixel.png? (easyprivacy.txt: 1118) +/(.*/)?idcookie/pixel\.png\? +# /ics/2/pview.gif? (easyprivacy.txt: 1117) +/(.*/)?ics/2/pview\.gif\? +# /i?siteid= (easyprivacy.txt: 1116) +/(.*/)?i\?siteid= +# /i2yesCounter.js (easyprivacy.txt: 1115) +/(.*/)?i2yesCounter\.js +i2yesCounter.js*. +# /i2a.js (easyprivacy.txt: 1114) +/(.*/)?i2a\.js +i2a.js*. +# /i/i.gif? (easyprivacy.txt: 1113) +/(.*/)?i/i\.gif\? +# /i/b.gif? (easyprivacy.txt: 1112) +/(.*/)?i/b\.gif\? +# /hs_track. (easyprivacy.txt: 1111) +/(.*/)?hs_track\. +# /hrtrackjs.gif? (easyprivacy.txt: 1110) +/(.*/)?hrtrackjs\.gif\? +# /hpmetrics. (easyprivacy.txt: 1109) +/(.*/)?hpmetrics\. +hpmetrics.*. +# /hpanalytics_ (easyprivacy.txt: 1108) +/(.*/)?hpanalytics_ +# /horizon/track? (easyprivacy.txt: 1107) +/(.*/)?horizon/track\? +# /horizon.*/track? (easyprivacy.txt: 1106) +/(.*/)?horizon\..*/track\? +horizon.*./(.*/)?track\? +# /homePixelTracking. (easyprivacy.txt: 1105) +/(.*/)?homePixelTracking\. +homePixelTracking.*. +# /homepage_pixels. (easyprivacy.txt: 1104) +/(.*/)?homepage_pixels\. +# /homeCounter. (easyprivacy.txt: 1103) +/(.*/)?homeCounter\. +homeCounter.*. +# /hmapxy.js (easyprivacy.txt: 1102) +/(.*/)?hmapxy\.js +hmapxy.js*. +# /hlog.asp (easyprivacy.txt: 1101) +/(.*/)?hlog\.asp +hlog.asp*. +# /HitTracking. (easyprivacy.txt: 1100) +/(.*/)?HitTracking\. +HitTracking.*. +# /HitTracker/* (easyprivacy.txt: 1099) +/(.*/)?HitTracker/.* +# /hittrack.cgi? (easyprivacy.txt: 1098) +/(.*/)?hittrack\.cgi\? +# /hitslink. (easyprivacy.txt: 1097) +/(.*/)?hitslink\. +hitslink.*. +# /hits/logger? (easyprivacy.txt: 1096) +/(.*/)?hits/logger\? +# /hits.count? (easyprivacy.txt: 1095) +/(.*/)?hits\.count\? +# /hitlog.php? (easyprivacy.txt: 1094) +/(.*/)?hitlog\.php\? +# /hitlog.mpl? (easyprivacy.txt: 1093) +/(.*/)?hitlog\.mpl\? +# /HitCounter/* (easyprivacy.txt: 1092) +/(.*/)?HitCounter/.* +# /HitCounter. (easyprivacy.txt: 1091) +/(.*/)?HitCounter\. +HitCounter.*. +# /hitcount_ (easyprivacy.txt: 1090) +/(.*/)?hitcount_ +# /hitcount? (easyprivacy.txt: 1089) +/(.*/)?hitcount\? +# /hitCount. (easyprivacy.txt: 1088) +/(.*/)?hitCount\. +hitCount.*. +# /hitbox.js (easyprivacy.txt: 1087) +/(.*/)?hitbox\.js +hitbox.js*. +# /hit_img.cfm? (easyprivacy.txt: 1086) +/(.*/)?hit_img\.cfm\? +# /hit_counter (easyprivacy.txt: 1085) +/(.*/)?hit_counter +# /hit_count? (easyprivacy.txt: 1084) +/(.*/)?hit_count\? +# /hit2.php (easyprivacy.txt: 1083) +/(.*/)?hit2\.php +hit2.php*. +# /hit/tracker (easyprivacy.txt: 1082) +/(.*/)?hit/tracker +# /hit.xiti? (easyprivacy.txt: 1081) +/(.*/)?hit\.xiti\? +# /hit.php? (easyprivacy.txt: 1080) +/(.*/)?hit\.php\? +# /Hit.aspx? (easyprivacy.txt: 1079) +/(.*/)?Hit\.aspx\? +# /hit.asp? (easyprivacy.txt: 1078) +/(.*/)?hit\.asp\? +# /Hit.ashx? (easyprivacy.txt: 1077) +/(.*/)?Hit\.ashx\? +# /hit-counter. (easyprivacy.txt: 1076) +/(.*/)?hit-counter\. +hit-counter.*. +# /histats/* (easyprivacy.txt: 1075) +/(.*/)?histats/.* +# /HiroBeacon? (easyprivacy.txt: 1074) +/(.*/)?HiroBeacon\? +# /hints.netflame.cc/* (easyprivacy.txt: 1073) +/(.*/)?hints\.netflame\.cc/.* +hints.netflame.cc/.* +# /hgct?hc=&hb=*&vjs= (easyprivacy.txt: 1072) +/(.*/)?hgct\?hc=&hb=.*&vjs= +# /hg?hc=&hb=*&vjs= (easyprivacy.txt: 1071) +/(.*/)?hg\?hc=&hb=.*&vjs= +# /heatmap_log.js (easyprivacy.txt: 1070) +/(.*/)?heatmap_log\.js +# /heatmap.js (easyprivacy.txt: 1069) +/(.*/)?heatmap\.js +heatmap.js*. +# /heatmap.*? (easyprivacy.txt: 1068) +/(.*/)?heatmap\..*\? +heatmap.*./.*\? +# /headupstats.gif? (easyprivacy.txt: 1067) +/(.*/)?headupstats\.gif\? +# /headerpixel.gif? (easyprivacy.txt: 1066) +/(.*/)?headerpixel\.gif\? +# /gweb/analytics/* (easyprivacy.txt: 1065) +/(.*/)?gweb/analytics/.* +# /gtrack. (easyprivacy.txt: 1064) +/(.*/)?gtrack\. +gtrack.*. +# /gs-analytics- (easyprivacy.txt: 1063) +/(.*/)?gs-analytics- +gs-analytics-*. +# /gravity-beacon.js (easyprivacy.txt: 1062) +/(.*/)?gravity-beacon\.js +gravity-beacon.js*. +# /gPageTracking. (easyprivacy.txt: 1061) +/(.*/)?gPageTracking\. +gPageTracking.*. +# /gosquared-livestats/* (easyprivacy.txt: 1060) +/(.*/)?gosquared-livestats/.* +# /googlytics- (easyprivacy.txt: 1059) +/(.*/)?googlytics- +googlytics-*. +# /googleTracking.js (easyprivacy.txt: 1058) +/(.*/)?googleTracking\.js +googleTracking.js*. +# /googletracker/* (easyprivacy.txt: 1057) +/(.*/)?googletracker/.* +# /googleTracker. (easyprivacy.txt: 1056) +/(.*/)?googleTracker\. +googleTracker.*. +# /googletrack.js (easyprivacy.txt: 1055) +/(.*/)?googletrack\.js +googletrack.js*. +# /googleanalyze2. (easyprivacy.txt: 1054) +/(.*/)?googleanalyze2\. +googleanalyze2.*. +# /googleanalyze1. (easyprivacy.txt: 1053) +/(.*/)?googleanalyze1\. +googleanalyze1.*. +# /GoogleAnalyticsTrackingProvider.js (easyprivacy.txt: 1052) +/(.*/)?GoogleAnalyticsTrackingProvider\.js +GoogleAnalyticsTrackingProvider.js*. +# /googleAnalyticsTracking. (easyprivacy.txt: 1051) +/(.*/)?googleAnalyticsTracking\. +googleAnalyticsTracking.*. +# /GoogleAnalyticsPlus/* (easyprivacy.txt: 1050) +/(.*/)?GoogleAnalyticsPlus/.* +# /GoogleAnalyticsPlugIn. (easyprivacy.txt: 1049) +/(.*/)?GoogleAnalyticsPlugIn\. +GoogleAnalyticsPlugIn.*. +# /googleAnalyticsOutgoingLinks. (easyprivacy.txt: 1048) +/(.*/)?googleAnalyticsOutgoingLinks\. +googleAnalyticsOutgoingLinks.*. +# /GoogleAnalyticsModule. (easyprivacy.txt: 1047) +/(.*/)?GoogleAnalyticsModule\. +GoogleAnalyticsModule.*. +# /googleanalyticsmanagement.swf (easyprivacy.txt: 1046) +/(.*/)?googleanalyticsmanagement\.swf +googleanalyticsmanagement.swf*. +# /googleAnalyticsBottom. (easyprivacy.txt: 1045) +/(.*/)?googleAnalyticsBottom\. +googleAnalyticsBottom.*. +# /GoogleAnalyticsBC3. (easyprivacy.txt: 1044) +/(.*/)?GoogleAnalyticsBC3\. +GoogleAnalyticsBC3.*. +# /googleAnalyticsBase_ (easyprivacy.txt: 1043) +/(.*/)?googleAnalyticsBase_ +# /googleAnalytics_ (easyprivacy.txt: 1042) +/(.*/)?googleAnalytics_ +# /GoogleAnalytics?utmac= (easyprivacy.txt: 1041) +/(.*/)?GoogleAnalytics\?utmac= +# /googleAnalytics2. (easyprivacy.txt: 1040) +/(.*/)?googleAnalytics2\. +googleAnalytics2.*. +# /googleAnalytics1. (easyprivacy.txt: 1039) +/(.*/)?googleAnalytics1\. +googleAnalytics1.*. +# /googleanalytics/* (easyprivacy.txt: 1038) +/(.*/)?googleanalytics/.* +# /GoogleAnalytics.swf (easyprivacy.txt: 1037) +/(.*/)?GoogleAnalytics\.swf +GoogleAnalytics.swf*. +# /googleanalytics.js (easyprivacy.txt: 1036) +/(.*/)?googleanalytics\.js +googleanalytics.js*. +# /googleanalytics- (easyprivacy.txt: 1035) +/(.*/)?googleanalytics- +googleanalytics-*. +# /GoogleAnalystics. (easyprivacy.txt: 1034) +/(.*/)?GoogleAnalystics\. +GoogleAnalystics.*. +# /googleana. (easyprivacy.txt: 1033) +/(.*/)?googleana\. +googleana.*. +# /google_tracker. (easyprivacy.txt: 1032) +/(.*/)?google_tracker\. +# /google_page_track (easyprivacy.txt: 1031) +/(.*/)?google_page_track +# /google_analytics_ (easyprivacy.txt: 1030) +/(.*/)?google_analytics_ +# /google_analytics/* (easyprivacy.txt: 1029) +/(.*/)?google_analytics/.* +# /google_analytics. (easyprivacy.txt: 1028) +/(.*/)?google_analytics\. +# /google_analytics-bc.swf (easyprivacy.txt: 1027) +/(.*/)?google_analytics-bc\.swf +# /google_analitycs. (easyprivacy.txt: 1026) +/(.*/)?google_analitycs\. +# /Google/ga.js (easyprivacy.txt: 1025) +/(.*/)?Google/ga\.js +# /google/analytics_ (easyprivacy.txt: 1024) +/(.*/)?google/analytics_ +# /google.eventTracking.js (easyprivacy.txt: 1023) +/(.*/)?google\.eventTracking\.js +google.eventTracking.js*. +# /google.analytics. (easyprivacy.txt: 1022) +/(.*/)?google\.analytics\. +google.analytics.*. +# /google-analytics/* (easyprivacy.txt: 1021) +/(.*/)?google-analytics/.* +# /google-analytics. (easyprivacy.txt: 1020) +/(.*/)?google-analytics\. +google-analytics.*. +# /google-analytics- (easyprivacy.txt: 1019) +/(.*/)?google-analytics- +google-analytics-*. +# /google-analyticator/* (easyprivacy.txt: 1018) +/(.*/)?google-analyticator/.* +# /GomezTracking. (easyprivacy.txt: 1017) +/(.*/)?GomezTracking\. +GomezTracking.*. +# /gomez.js (easyprivacy.txt: 1015) +/(.*/)?gomez\.js +gomez.js*. +# /goAnalytics. (easyprivacy.txt: 1014) +/(.*/)?goAnalytics\. +goAnalytics.*. +# /gn_tracking. (easyprivacy.txt: 1013) +/(.*/)?gn_tracking\. +# /gn_analytics. (easyprivacy.txt: 1012) +/(.*/)?gn_analytics\. +# /gmasst.gif?guid= (easyprivacy.txt: 1011) +/(.*/)?gmasst\.gif\?guid= +# /globalpagetracking.js (easyprivacy.txt: 1010) +/(.*/)?globalpagetracking\.js +globalpagetracking.js*. +# /global/ga.js? (easyprivacy.txt: 1009) +/(.*/)?global/ga\.js\? +# /glbltrackjs. (easyprivacy.txt: 1008) +/(.*/)?glbltrackjs\. +glbltrackjs.*. +# /gifstats. (easyprivacy.txt: 1007) +/(.*/)?gifstats\. +gifstats.*. +# /gifbanner? (easyprivacy.txt: 1006) +/(.*/)?gifbanner\? +# /getTotalHits. (easyprivacy.txt: 1005) +/(.*/)?getTotalHits\. +getTotalHits.*. +# /getsidpixeltag?sid= (easyprivacy.txt: 1004) +/(.*/)?getsidpixeltag\?sid= +# /getRemoteDomainCookies? (easyprivacy.txt: 1003) +/(.*/)?getRemoteDomainCookies\? +# /getPixels?*&referer= (easyprivacy.txt: 1002) +/(.*/)?getPixels\?.*&referer= +# /getclicky_ (easyprivacy.txt: 1001) +/(.*/)?getclicky_ +# /getclicky. (easyprivacy.txt: 1000) +/(.*/)?getclicky\. +getclicky.*. +# /get_tracking_id? (easyprivacy.txt: 999) +/(.*/)?get_tracking_id\? +# /get_statistics.php?screen_width= (easyprivacy.txt: 998) +/(.*/)?get_statistics\.php\?screen_width= +# /get_browser_info. (easyprivacy.txt: 997) +/(.*/)?get_browser_info\. +# /geov2.js (easyprivacy.txt: 996) +/(.*/)?geov2\.js +geov2.js*. +# /geomap.js? (easyprivacy.txt: 995) +/(.*/)?geomap\.js\? +# /geoipAPI.js? (easyprivacy.txt: 994) +/(.*/)?geoipAPI\.js\? +# /geoip_script? (easyprivacy.txt: 993) +/(.*/)?geoip_script\? +# /geoip_cc (easyprivacy.txt: 992) +/(.*/)?geoip_cc +# /geoip.html (easyprivacy.txt: 991) +/(.*/)?geoip\.html +geoip.html*. +# /geocounter. (easyprivacy.txt: 990) +/(.*/)?geocounter\. +geocounter.*. +# /geocompteur. (easyprivacy.txt: 989) +/(.*/)?geocompteur\. +geocompteur.*. +# /geoAnalysis.js (easyprivacy.txt: 988) +/(.*/)?geoAnalysis\.js +geoAnalysis.js*. +# /geo.php? (easyprivacy.txt: 987) +/(.*/)?geo\.php\? +# /generictracking. (easyprivacy.txt: 986) +/(.*/)?generictracking\. +generictracking.*. +# /gemiusAudience. (easyprivacy.txt: 983) +/(.*/)?gemiusAudience\. +gemiusAudience.*. +# /gemius_ (easyprivacy.txt: 982) +/(.*/)?gemius_ +# /gemius1.js (easyprivacy.txt: 981) +/(.*/)?gemius1\.js +gemius1.js*. +# /gemius/* (easyprivacy.txt: 980) +/(.*/)?gemius/.* +# /gemius.js (easyprivacy.txt: 979) +/(.*/)?gemius\.js +gemius.js*. +# /gcui_vidtracker/* (easyprivacy.txt: 978) +/(.*/)?gcui_vidtracker/.* +# /gcount.pl? (easyprivacy.txt: 977) +/(.*/)?gcount\.pl\? +# /gClickTracking. (easyprivacy.txt: 976) +/(.*/)?gClickTracking\. +gClickTracking.*. +# /gatrackwww. (easyprivacy.txt: 975) +/(.*/)?gatrackwww\. +gatrackwww.*. +# /gatrackthis. (easyprivacy.txt: 974) +/(.*/)?gatrackthis\. +gatrackthis.*. +# /gatrackingcampaigns/* (easyprivacy.txt: 973) +/(.*/)?gatrackingcampaigns/.* +# /gatracking. (easyprivacy.txt: 972) +/(.*/)?gatracking\. +gatracking.*. +# /gatrack. (easyprivacy.txt: 971) +/(.*/)?gatrack\. +gatrack.*. +# /gatc.js (easyprivacy.txt: 970) +/(.*/)?gatc\.js +gatc.js*. +# /gatag.js (easyprivacy.txt: 969) +/(.*/)?gatag\.js +gatag.js*. +# /gasocialtracking. (easyprivacy.txt: 968) +/(.*/)?gasocialtracking\. +gasocialtracking.*. +# /gascript. (easyprivacy.txt: 967) +/(.*/)?gascript\. +gascript.*. +# /GARecord? (easyprivacy.txt: 966) +/(.*/)?GARecord\? +# /gapro.swf (easyprivacy.txt: 965) +/(.*/)?gapro\.swf +gapro.swf*. +# /gapro-1h.swf (easyprivacy.txt: 964) +/(.*/)?gapro-1h\.swf +gapro-1h.swf*. +# /gapro-1.swf (easyprivacy.txt: 963) +/(.*/)?gapro-1\.swf +gapro-1.swf*. +# /gapagetracker. (easyprivacy.txt: 962) +/(.*/)?gapagetracker\. +gapagetracker.*. +# /ganalytics. (easyprivacy.txt: 961) +/(.*/)?ganalytics\. +ganalytics.*. +# /gallerystats. (easyprivacy.txt: 960) +/(.*/)?gallerystats\. +gallerystats.*. +# /galinks- (easyprivacy.txt: 959) +/(.*/)?galinks- +galinks-*. +# /GAInit.js| (easyprivacy.txt: 958) +/(.*/)?GAInit\.js$ +GAInit.js +# /GAFOAWrapper.swf? (easyprivacy.txt: 957) +/(.*/)?GAFOAWrapper\.swf\? +# /gadsfuncs. (easyprivacy.txt: 956) +/(.*/)?gadsfuncs\. +gadsfuncs.*. +# /gaCustom. (easyprivacy.txt: 955) +/(.*/)?gaCustom\. +gaCustom.*. +# /gaclicktracking. (easyprivacy.txt: 954) +/(.*/)?gaclicktracking\. +gaclicktracking.*. +# /gaaddons.js (easyprivacy.txt: 953) +/(.*/)?gaaddons\.js +gaaddons.js*. +# /gaaddons- (easyprivacy.txt: 952) +/(.*/)?gaaddons- +gaaddons-*. +# /ga_wrapper. (easyprivacy.txt: 951) +/(.*/)?ga_wrapper\. +# /ga_tracklinks. (easyprivacy.txt: 950) +/(.*/)?ga_tracklinks\. +# /ga_tracker. (easyprivacy.txt: 949) +/(.*/)?ga_tracker\. +# /ga_track.php?adurl= (easyprivacy.txt: 948) +/(.*/)?ga_track\.php\?adurl= +# /ga_social_tracking_ (easyprivacy.txt: 947) +/(.*/)?ga_social_tracking_ +# /ga_social. (easyprivacy.txt: 946) +/(.*/)?ga_social\. +# /ga_outgoinglinks. (easyprivacy.txt: 945) +/(.*/)?ga_outgoinglinks\. +# /ga_no_cookie_ (easyprivacy.txt: 944) +/(.*/)?ga_no_cookie_ +# /ga_no_cookie. (easyprivacy.txt: 943) +/(.*/)?ga_no_cookie\. +# /ga_loader. (easyprivacy.txt: 942) +/(.*/)?ga_loader\. +# /ga_link_tracker_ (easyprivacy.txt: 941) +/(.*/)?ga_link_tracker_ +# /ga_keyword2. (easyprivacy.txt: 940) +/(.*/)?ga_keyword2\. +# /ga_header. (easyprivacy.txt: 939) +/(.*/)?ga_header\. +# /ga_gwo. (easyprivacy.txt: 938) +/(.*/)?ga_gwo\. +# /ga_footer. (easyprivacy.txt: 937) +/(.*/)?ga_footer\. +# /ga_external. (easyprivacy.txt: 936) +/(.*/)?ga_external\. +# /ga_event_tracking. (easyprivacy.txt: 935) +/(.*/)?ga_event_tracking\. +# /ga_event_frame? (easyprivacy.txt: 934) +/(.*/)?ga_event_frame\? +# /ga_dualcode_tracking. (easyprivacy.txt: 933) +/(.*/)?ga_dualcode_tracking\. +# /ga_dpc_youtube. (easyprivacy.txt: 932) +/(.*/)?ga_dpc_youtube\. +# /ga_anonym.js (easyprivacy.txt: 931) +/(.*/)?ga_anonym\.js +# /ga2.js (easyprivacy.txt: 929) +/(.*/)?ga2\.js +ga2.js*. +# /ga1.js (easyprivacy.txt: 927) +/(.*/)?ga1\.js +ga1.js*. +# /ga/trackevent. (easyprivacy.txt: 926) +/(.*/)?ga/trackevent\. +# /ga/*.gif? (easyprivacy.txt: 925) +/(.*/)?ga/.*\.gif\? +# /ga.swf?gid= (easyprivacy.txt: 924) +/(.*/)?ga\.swf\?gid= +# /GA.swf?gaId= (easyprivacy.txt: 923) +/(.*/)?GA\.swf\?gaId= +# /ga.gif? (easyprivacy.txt: 920) +/(.*/)?ga\.gif\? +# /ga.aspx? (easyprivacy.txt: 919) +/(.*/)?ga\.aspx\? +# /ga-tracking/* (easyprivacy.txt: 918) +/(.*/)?ga-tracking/.* +# /ga-tracker. (easyprivacy.txt: 917) +/(.*/)?ga-tracker\. +ga-tracker.*. +# /ga-track. (easyprivacy.txt: 916) +/(.*/)?ga-track\. +ga-track.*. +# /ga-socialtracker. (easyprivacy.txt: 915) +/(.*/)?ga-socialtracker\. +ga-socialtracker.*. +# /ga-se-async.js (easyprivacy.txt: 914) +/(.*/)?ga-se-async\.js +ga-se-async.js*. +# /ga-script. (easyprivacy.txt: 913) +/(.*/)?ga-script\. +ga-script.*. +# /ga-multidomain. (easyprivacy.txt: 912) +/(.*/)?ga-multidomain\. +ga-multidomain.*. +# /ga-links.js (easyprivacy.txt: 911) +/(.*/)?ga-links\.js +ga-links.js*. +# /ga-explorations. (easyprivacy.txt: 910) +/(.*/)?ga-explorations\. +ga-explorations.*. +# /ga-event-tracking. (easyprivacy.txt: 909) +/(.*/)?ga-event-tracking\. +ga-event-tracking.*. +# /ga-custom-vars. (easyprivacy.txt: 908) +/(.*/)?ga-custom-vars\. +ga-custom-vars.*. +# /ga-custom-tracking. (easyprivacy.txt: 907) +/(.*/)?ga-custom-tracking\. +ga-custom-tracking.*. +# /ga-async- (easyprivacy.txt: 906) +/(.*/)?ga-async- +ga-async-*. +# /ga-affiliates. (easyprivacy.txt: 905) +/(.*/)?ga-affiliates\. +ga-affiliates.*. +# /g_track.php? (easyprivacy.txt: 904) +/(.*/)?g_track\.php\? +# /g-track/* (easyprivacy.txt: 903) +/(.*/)?g-track/.* +# /FTTrack2.js (easyprivacy.txt: 902) +/(.*/)?FTTrack2\.js +FTTrack2.js*. +# /fsrscripts/* (easyprivacy.txt: 901) +/(.*/)?fsrscripts/.* +# /frtrack. (easyprivacy.txt: 900) +/(.*/)?frtrack\. +frtrack.*. +# /frosmo.easy.js (easyprivacy.txt: 899) +/(.*/)?frosmo\.easy\.js +frosmo.easy.js*. +# /friendbuy.min.js (easyprivacy.txt: 898) +/(.*/)?friendbuy\.min\.js +friendbuy.min.js*. +# /freecgi/count.cgi? (easyprivacy.txt: 897) +/(.*/)?freecgi/count\.cgi\? +# /fpcount.exe (easyprivacy.txt: 896) +/(.*/)?fpcount\.exe +fpcount.exe*. +# /fpc.pl?a= (easyprivacy.txt: 895) +/(.*/)?fpc\.pl\?a= +# /fp/clear.png? (easyprivacy.txt: 894) +/(.*/)?fp/clear\.png\? +# /FoxComScore. (easyprivacy.txt: 893) +/(.*/)?FoxComScore\. +FoxComScore.*. +# /FoxBlueKaiPlugIn. (easyprivacy.txt: 892) +/(.*/)?FoxBlueKaiPlugIn\. +FoxBlueKaiPlugIn.*. +# /FoxAnalyticsExtension. (easyprivacy.txt: 891) +/(.*/)?FoxAnalyticsExtension\. +FoxAnalyticsExtension.*. +# /foresee/* (easyprivacy.txt: 890) +/(.*/)?foresee/.* +# /fora_player_tracking. (easyprivacy.txt: 889) +/(.*/)?fora_player_tracking\. +# /footerpixel.gif? (easyprivacy.txt: 888) +/(.*/)?footerpixel\.gif\? +# /footer_tag_iframe. (easyprivacy.txt: 887) +/(.*/)?footer_tag_iframe\. +# /footer-tracking.js (easyprivacy.txt: 886) +/(.*/)?footer-tracking\.js +footer-tracking.js*. +# /flv_tracking. (easyprivacy.txt: 885) +/(.*/)?flv_tracking\. +# /flashtag.txt?Log= (easyprivacy.txt: 883) +/(.*/)?flashtag\.txt\?Log= +# /flash-stats.php? (easyprivacy.txt: 882) +/(.*/)?flash-stats\.php\? +# /flash-cookies/* (easyprivacy.txt: 881) +/(.*/)?flash-cookies/.* +# /fkounter5/* (easyprivacy.txt: 880) +/(.*/)?fkounter5/.* +# /fkounter/* (easyprivacy.txt: 879) +/(.*/)?fkounter/.* +# /firestats/* (easyprivacy.txt: 878) +/(.*/)?firestats/.* +# /fingerprint.min.js (easyprivacy.txt: 877) +/(.*/)?fingerprint\.min\.js +fingerprint.min.js*. +# /fingerprint.js (easyprivacy.txt: 876) +/(.*/)?fingerprint\.js +fingerprint.js*. +# /finalizestats. (easyprivacy.txt: 875) +/(.*/)?finalizestats\. +finalizestats.*. +# /files/ga.js (easyprivacy.txt: 874) +/(.*/)?files/ga\.js +# /federated-analytics. (easyprivacy.txt: 873) +/(.*/)?federated-analytics\. +federated-analytics.*. +# /fbcounter/* (easyprivacy.txt: 872) +/(.*/)?fbcounter/.* +# /fbanalytics/* (easyprivacy.txt: 871) +/(.*/)?fbanalytics/.* +# /fb-tracking.js (easyprivacy.txt: 870) +/(.*/)?fb-tracking\.js +fb-tracking.js*. +# /fb-app-tracker. (easyprivacy.txt: 869) +/(.*/)?fb-app-tracker\. +fb-app-tracker.*. +# /fastcounter. (easyprivacy.txt: 868) +/(.*/)?fastcounter\. +fastcounter.*. +# /fairfax_tracking.js (easyprivacy.txt: 867) +/(.*/)?fairfax_tracking\.js +# /FacebookTracking. (easyprivacy.txt: 866) +/(.*/)?FacebookTracking\. +FacebookTracking.*. +# /ezytrack. (easyprivacy.txt: 865) +/(.*/)?ezytrack\. +ezytrack.*. +# /ezakus.js (easyprivacy.txt: 864) +/(.*/)?ezakus\.js +ezakus.js*. +# /external/nielsen_ (easyprivacy.txt: 863) +/(.*/)?external/nielsen_ +# /external-tracking. (easyprivacy.txt: 862) +/(.*/)?external-tracking\. +external-tracking.*. +# /extendedAnalytics. (easyprivacy.txt: 861) +/(.*/)?extendedAnalytics\. +extendedAnalytics.*. +# /expcount/* (easyprivacy.txt: 860) +/(.*/)?expcount/.* +# /exittraffic. (easyprivacy.txt: 859) +/(.*/)?exittraffic\. +exittraffic.*. +# /exittracker. (easyprivacy.txt: 858) +/(.*/)?exittracker\. +exittracker.*. +# /exelator. (easyprivacy.txt: 857) +/(.*/)?exelator\. +exelator.*. +# /exelate.html? (easyprivacy.txt: 856) +/(.*/)?exelate\.html\? +# /exelate.htm? (easyprivacy.txt: 855) +/(.*/)?exelate\.htm\? +# /exaonclick.js (easyprivacy.txt: 854) +/(.*/)?exaonclick\.js +exaonclick.js*. +# /EWTRACK_ (easyprivacy.txt: 853) +/(.*/)?EWTRACK_ +# /ewtrack. (easyprivacy.txt: 852) +/(.*/)?ewtrack\. +ewtrack.*. +# /evercookie_ (easyprivacy.txt: 851) +/(.*/)?evercookie_ +# /evercookie/* (easyprivacy.txt: 850) +/(.*/)?evercookie/.* +# /evercookie. (easyprivacy.txt: 849) +/(.*/)?evercookie\. +evercookie.*. +# /eventtracker.js (easyprivacy.txt: 848) +/(.*/)?eventtracker\.js +eventtracker.js*. +# /eventLogServlet? (easyprivacy.txt: 847) +/(.*/)?eventLogServlet\? +# /event?stat_ (easyprivacy.txt: 846) +/(.*/)?event\?stat_ +# /event?pmo= (easyprivacy.txt: 845) +/(.*/)?event\?pmo= +# /event/*/*?*&euidl=*&url= (easyprivacy.txt: 844) +/(.*/)?event/.*/.*\?.*&euidl=.*&url= +# /event.gif? (easyprivacy.txt: 843) +/(.*/)?event\.gif\? +# /event-tracking.js (easyprivacy.txt: 842) +/(.*/)?event-tracking\.js +event-tracking.js*. +# /event-report?*&uid= (easyprivacy.txt: 841) +/(.*/)?event-report\?.*&uid= +# /event-log/* (easyprivacy.txt: 840) +/(.*/)?event-log/.* +# /eu-survey.js (easyprivacy.txt: 839) +/(.*/)?eu-survey\.js +eu-survey.js*. +# /etrackercode. (easyprivacy.txt: 838) +/(.*/)?etrackercode\. +etrackercode.*. +# /etracker/* (easyprivacy.txt: 837) +/(.*/)?etracker/.* +# /etracker. (easyprivacy.txt: 836) +/(.*/)?etracker\. +etracker.*. +# /etag? (easyprivacy.txt: 835) +/(.*/)?etag\? +# /estatnativeflashtag.swf (easyprivacy.txt: 834) +/(.*/)?estatnativeflashtag\.swf +estatnativeflashtag.swf*. +# /estatistica.js (easyprivacy.txt: 833) +/(.*/)?estatistica\.js +estatistica.js*. +# /est.pl? (easyprivacy.txt: 832) +/(.*/)?est\.pl\? +# /error/js/log? (easyprivacy.txt: 831) +/(.*/)?error/js/log\? +# /epf_v1_95.js (easyprivacy.txt: 830) +/(.*/)?epf_v1_95\.js +# /envoy.sb?sbaid (easyprivacy.txt: 829) +/(.*/)?envoy\.sb\?sbaid +# /emstrack. (easyprivacy.txt: 828) +/(.*/)?emstrack\. +emstrack.*. +# /EMERPEventCollector. (easyprivacy.txt: 825) +/(.*/)?EMERPEventCollector\. +EMERPEventCollector.*. +# /eluminate? (easyprivacy.txt: 823) +/(.*/)?eluminate\? +# /elqtracking. (easyprivacy.txt: 822) +/(.*/)?elqtracking\. +elqtracking.*. +# /elqnow/* (easyprivacy.txt: 821) +/(.*/)?elqnow/.* +# /elqimg.js (easyprivacy.txt: 820) +/(.*/)?elqimg\.js +elqimg.js*. +# /elqcfg.min.js (easyprivacy.txt: 819) +/(.*/)?elqcfg\.min\.js +elqcfg.min.js*. +# /elqcfg.js (easyprivacy.txt: 818) +/(.*/)?elqcfg\.js +elqcfg.js*. +# /eloqua_ (easyprivacy.txt: 816) +/(.*/)?eloqua_ +# /elex.track. (easyprivacy.txt: 815) +/(.*/)?elex\.track\. +elex.track.*. +# /eheat.js (easyprivacy.txt: 814) +/(.*/)?eheat\.js +eheat.js*. +# /eftracking. (easyprivacy.txt: 813) +/(.*/)?eftracking\. +eftracking.*. +# /EfficientFrontier. (easyprivacy.txt: 812) +/(.*/)?EfficientFrontier\. +EfficientFrontier.*. +# /effectivemeasure. (easyprivacy.txt: 811) +/(.*/)?effectivemeasure\. +effectivemeasure.*. +# /EDigitalSurvey_ (easyprivacy.txt: 810) +/(.*/)?EDigitalSurvey_ +# /eDigitalSurvey. (easyprivacy.txt: 809) +/(.*/)?eDigitalSurvey\. +eDigitalSurvey.*. +# /edateAdTrack? (easyprivacy.txt: 808) +/(.*/)?edateAdTrack\? +# /edata.js (easyprivacy.txt: 807) +/(.*/)?edata\.js +edata.js*. +# /edAnalyticsWrapper. (easyprivacy.txt: 806) +/(.*/)?edAnalyticsWrapper\. +edAnalyticsWrapper.*. +# /eCustomerSurvey. (easyprivacy.txt: 805) +/(.*/)?eCustomerSurvey\. +eCustomerSurvey.*. +# /ecossurvey. (easyprivacy.txt: 804) +/(.*/)?ecossurvey\. +ecossurvey.*. +# /ecos_surveycode_ (easyprivacy.txt: 803) +/(.*/)?ecos_surveycode_ +# /ecos_survey. (easyprivacy.txt: 802) +/(.*/)?ecos_survey\. +# /ecos.js (easyprivacy.txt: 801) +/(.*/)?ecos\.js +ecos.js*. +# /ecos-surveycode. (easyprivacy.txt: 800) +/(.*/)?ecos-surveycode\. +ecos-surveycode.*. +# /Econda2. (easyprivacy.txt: 799) +/(.*/)?Econda2\. +Econda2.*. +# /econa-site-search/log.php? (easyprivacy.txt: 798) +/(.*/)?econa-site-search/log\.php\? +# /econa-site-search-ajax-log-referrer.php (easyprivacy.txt: 797) +/(.*/)?econa-site-search-ajax-log-referrer\.php +econa-site-search-ajax-log-referrer.php*. +# /ecom/status.jsp? (easyprivacy.txt: 796) +/(.*/)?ecom/status\.jsp\? +# /ecblank.gif? (easyprivacy.txt: 795) +/(.*/)?ecblank\.gif\? +# /ebonetag.js (easyprivacy.txt: 794) +/(.*/)?ebonetag\.js +ebonetag.js*. +# /eae-logger/* (easyprivacy.txt: 793) +/(.*/)?eae-logger/.* +# /ea-analytics/* (easyprivacy.txt: 792) +/(.*/)?ea-analytics/.* +# /e086ec.aspx?q=l3mkwgak (easyprivacy.txt: 791) +/(.*/)?e086ec\.aspx\?q=l3mkwgak +# /dynaTraceMonitor? (easyprivacy.txt: 790) +/(.*/)?dynaTraceMonitor\? +# /DynamicAnalytics. (easyprivacy.txt: 789) +/(.*/)?DynamicAnalytics\. +DynamicAnalytics.*. +# /dwanalytics. (easyprivacy.txt: 788) +/(.*/)?dwanalytics\. +dwanalytics.*. +# /dtrack.js (easyprivacy.txt: 787) +/(.*/)?dtrack\.js +dtrack.js*. +# /dtmtag.js (easyprivacy.txt: 786) +/(.*/)?dtmtag\.js +dtmtag.js*. +# /dtm_cm.js (easyprivacy.txt: 785) +/(.*/)?dtm_cm\.js +# /dstracking. (easyprivacy.txt: 784) +/(.*/)?dstracking\. +dstracking.*. +# /dspixel.js (easyprivacy.txt: 783) +/(.*/)?dspixel\.js +dspixel.js*. +# /drads?referrer= (easyprivacy.txt: 782) +/(.*/)?drads\?referrer= +# /DownloadTracker. (easyprivacy.txt: 781) +/(.*/)?DownloadTracker\. +DownloadTracker.*. +# /dow_analytics. (easyprivacy.txt: 780) +/(.*/)?dow_analytics\. +# /doubleclickCheck/* (easyprivacy.txt: 779) +/(.*/)?doubleclickCheck/.* +# /dotomi_tracking/* (easyprivacy.txt: 778) +/(.*/)?dotomi_tracking/.* +# /dotomi_abandon. (easyprivacy.txt: 777) +/(.*/)?dotomi_abandon\. +# /Dotomi. (easyprivacy.txt: 776) +/(.*/)?Dotomi\. +Dotomi.*. +# /dot.asp? (easyprivacy.txt: 775) +/(.*/)?dot\.asp\? +# /domcount_ (easyprivacy.txt: 774) +/(.*/)?domcount_ +# /domcount. (easyprivacy.txt: 773) +/(.*/)?domcount\. +domcount.*. +# /dolWebAnalytics. (easyprivacy.txt: 772) +/(.*/)?dolWebAnalytics\. +dolWebAnalytics.*. +# /doIperceptionsRegulator. (easyprivacy.txt: 771) +/(.*/)?doIperceptionsRegulator\. +doIperceptionsRegulator.*. +# /DNATracking. (easyprivacy.txt: 770) +/(.*/)?DNATracking\. +DNATracking.*. +# /dmtracking2. (easyprivacy.txt: 769) +/(.*/)?dmtracking2\. +dmtracking2.*. +# /dm.gif? (easyprivacy.txt: 768) +/(.*/)?dm\.gif\? +# /dltrack/* (easyprivacy.txt: 767) +/(.*/)?dltrack/.* +# /dltrack. (easyprivacy.txt: 766) +/(.*/)?dltrack\. +dltrack.*. +# /dla_tracker. (easyprivacy.txt: 765) +/(.*/)?dla_tracker\. +# /dispatch.fcgi? (easyprivacy.txt: 764) +/(.*/)?dispatch\.fcgi\? +# /disp_cnt. (easyprivacy.txt: 763) +/(.*/)?disp_cnt\. +# /Diagnostics?hit= (easyprivacy.txt: 762) +/(.*/)?Diagnostics\?hit= +# /deskanalytics.js (easyprivacy.txt: 761) +/(.*/)?deskanalytics\.js +deskanalytics.js*. +# /DemdexBehavioralTracking. (easyprivacy.txt: 760) +/(.*/)?DemdexBehavioralTracking\. +DemdexBehavioralTracking.*. +# /demdex/* (easyprivacy.txt: 759) +/(.*/)?demdex/.* +# /demdex.js (easyprivacy.txt: 758) +/(.*/)?demdex\.js +demdex.js*. +# /demandbase_ (easyprivacy.txt: 757) +/(.*/)?demandbase_ +# /demandbase. (easyprivacy.txt: 756) +/(.*/)?demandbase\. +demandbase.*. +# /delivery/lg. (easyprivacy.txt: 755) +/(.*/)?delivery/lg\. +# /DecideDNATrackingCode- (easyprivacy.txt: 754) +/(.*/)?DecideDNATrackingCode- +DecideDNATrackingCode-*. +# /dcstorm/track. (easyprivacy.txt: 753) +/(.*/)?dcstorm/track\. +# /dcstorm.js (easyprivacy.txt: 752) +/(.*/)?dcstorm\.js +dcstorm.js*. +# /dcstorm-track. (easyprivacy.txt: 751) +/(.*/)?dcstorm-track\. +dcstorm-track.*. +# /dcs_tag. (easyprivacy.txt: 750) +/(.*/)?dcs_tag\. +# /dcs.gif? (easyprivacy.txt: 749) +/(.*/)?dcs\.gif\? +# /dc-storm/track. (easyprivacy.txt: 748) +/(.*/)?dc-storm/track\. +# /dc-storm/aff. (easyprivacy.txt: 747) +/(.*/)?dc-storm/aff\. +# /dc-storm.js (easyprivacy.txt: 746) +/(.*/)?dc-storm\.js +dc-storm.js*. +# /dc-storm-track. (easyprivacy.txt: 745) +/(.*/)?dc-storm-track\. +dc-storm-track.*. +# /dart_wrapper.html? (easyprivacy.txt: 744) +/(.*/)?dart_wrapper\.html\? +# /cyberestat/* (easyprivacy.txt: 743) +/(.*/)?cyberestat/.* +# /cxense/cx.js (easyprivacy.txt: 742) +/(.*/)?cxense/cx\.js +# /cXense-Analytics- (easyprivacy.txt: 741) +/(.*/)?cXense-Analytics- +cXense-Analytics-*. +# /cwTRACK.js (easyprivacy.txt: 740) +/(.*/)?cwTRACK\.js +cwTRACK.js*. +# /CustomTrackingScript. (easyprivacy.txt: 739) +/(.*/)?CustomTrackingScript\. +CustomTrackingScript.*. +# /custom-tracking. (easyprivacy.txt: 738) +/(.*/)?custom-tracking\. +custom-tracking.*. +# /ctr_tracking. (easyprivacy.txt: 737) +/(.*/)?ctr_tracking\. +# /csi?v=3&s= (easyprivacy.txt: 736) +/(.*/)?csi\?v=3&s= +# /csi?v=2&s= (easyprivacy.txt: 735) +/(.*/)?csi\?v=2&s= +# /csi?v=*&action= (easyprivacy.txt: 734) +/(.*/)?csi\?v=.*&action= +# /csct.js (easyprivacy.txt: 733) +/(.*/)?csct\.js +csct.js*. +# /CSAdobeTracking. (easyprivacy.txt: 732) +/(.*/)?CSAdobeTracking\. +CSAdobeTracking.*. +# /cs_api/log (easyprivacy.txt: 731) +/(.*/)?cs_api/log +# /cross_pixels. (easyprivacy.txt: 730) +/(.*/)?cross_pixels\. +# /crmTracking. (easyprivacy.txt: 729) +/(.*/)?crmTracking\. +crmTracking.*. +# /criteoRTA. (easyprivacy.txt: 728) +/(.*/)?criteoRTA\. +criteoRTA.*. +# /criteo_ (easyprivacy.txt: 727) +/(.*/)?criteo_ +# /Criteo/* (easyprivacy.txt: 726) +/(.*/)?Criteo/.* +# /criteo. (easyprivacy.txt: 725) +/(.*/)?criteo\. +criteo.*. +# /CreateVIDCookie.aspx? (easyprivacy.txt: 724) +/(.*/)?CreateVIDCookie\.aspx\? +# /crai_tracker. (easyprivacy.txt: 723) +/(.*/)?crai_tracker\. +# /cqcounter. (easyprivacy.txt: 722) +/(.*/)?cqcounter\. +cqcounter.*. +# /countus.php (easyprivacy.txt: 721) +/(.*/)?countus\.php +countus.php*. +# /countstat.php? (easyprivacy.txt: 720) +/(.*/)?countstat\.php\? +# /countpixel. (easyprivacy.txt: 719) +/(.*/)?countpixel\. +countpixel.*. +# /countinj.cgi? (easyprivacy.txt: 718) +/(.*/)?countinj\.cgi\? +# /countHits. (easyprivacy.txt: 717) +/(.*/)?countHits\. +countHits.*. +# /counterFooterFlash. (easyprivacy.txt: 716) +/(.*/)?counterFooterFlash\. +counterFooterFlash.*. +# /countercollector/* (easyprivacy.txt: 715) +/(.*/)?countercollector/.* +# /countercgi. (easyprivacy.txt: 714) +/(.*/)?countercgi\. +countercgi.*. +# /counter_image.gif? (easyprivacy.txt: 713) +/(.*/)?counter_image\.gif\? +# /counter_3.php (easyprivacy.txt: 712) +/(.*/)?counter_3\.php +# /counter_2.php? (easyprivacy.txt: 711) +/(.*/)?counter_2\.php\? +# /counter_1.php (easyprivacy.txt: 710) +/(.*/)?counter_1\.php +# /counter?id= (easyprivacy.txt: 709) +/(.*/)?counter\?id= +# /counter/r.pl (easyprivacy.txt: 708) +/(.*/)?counter/r\.pl +# /counter/process.asp? (easyprivacy.txt: 707) +/(.*/)?counter/process\.asp\? +# /counter/ct.php? (easyprivacy.txt: 706) +/(.*/)?counter/ct\.php\? +# /counter/article? (easyprivacy.txt: 705) +/(.*/)?counter/article\? +# /Counter.woa/* (easyprivacy.txt: 704) +/(.*/)?Counter\.woa/.* +Counter.woa/.* +# /counter.visit? (easyprivacy.txt: 703) +/(.*/)?counter\.visit\? +# /counter.pl? (easyprivacy.txt: 702) +/(.*/)?counter\.pl\? +# /counter.php?chcounter_mode= (easyprivacy.txt: 701) +/(.*/)?counter\.php\?chcounter_mode= +# /counter.lt? (easyprivacy.txt: 700) +/(.*/)?counter\.lt\? +# /counter.do? (easyprivacy.txt: 699) +/(.*/)?counter\.do\? +# /counter.cgi? (easyprivacy.txt: 698) +/(.*/)?counter\.cgi\? +# /counter.cgi/* (easyprivacy.txt: 697) +/(.*/)?counter\.cgi/.* +counter.cgi/.* +# /counter.aspx? (easyprivacy.txt: 696) +/(.*/)?counter\.aspx\? +# /counter.asp? (easyprivacy.txt: 695) +/(.*/)?counter\.asp\? +# /Counter.ashx? (easyprivacy.txt: 694) +/(.*/)?Counter\.ashx\? +# /CountContent? (easyprivacy.txt: 693) +/(.*/)?CountContent\? +# /countbk. (easyprivacy.txt: 692) +/(.*/)?countbk\. +countbk.*. +# /count_stats/* (easyprivacy.txt: 691) +/(.*/)?count_stats/.* +# /count_js. (easyprivacy.txt: 690) +/(.*/)?count_js\. +# /count_DB/* (easyprivacy.txt: 689) +/(.*/)?count_DB/.* +# /count?type= (easyprivacy.txt: 688) +/(.*/)?count\?type= +# /count?pid= (easyprivacy.txt: 687) +/(.*/)?count\?pid= +# /count/count.cgi? (easyprivacy.txt: 686) +/(.*/)?count/count\.cgi\? +# /count/?ad= (easyprivacy.txt: 685) +/(.*/)?count/\?ad= +# /count.fgi? (easyprivacy.txt: 684) +/(.*/)?count\.fgi\? +# /count.fcgi? (easyprivacy.txt: 683) +/(.*/)?count\.fcgi\? +# /count.fcg? (easyprivacy.txt: 682) +/(.*/)?count\.fcg\? +# /count.exe? (easyprivacy.txt: 681) +/(.*/)?count\.exe\? +# /count.cfm? (easyprivacy.txt: 680) +/(.*/)?count\.cfm\? +# /CorporatePageTracking. (easyprivacy.txt: 679) +/(.*/)?CorporatePageTracking\. +CorporatePageTracking.*. +# /coretracking.php? (easyprivacy.txt: 678) +/(.*/)?coretracking\.php\? +# /coradiant.js (easyprivacy.txt: 677) +/(.*/)?coradiant\.js +coradiant.js*. +# /CookieSetterAS3. (easyprivacy.txt: 676) +/(.*/)?CookieSetterAS3\. +CookieSetterAS3.*. +# /cookie_ga. (easyprivacy.txt: 675) +/(.*/)?cookie_ga\. +# /cookie?affiliate (easyprivacy.txt: 674) +/(.*/)?cookie\?affiliate +# /cookie/visitor/* (easyprivacy.txt: 673) +/(.*/)?cookie/visitor/.* +# /cookie.crumb (easyprivacy.txt: 672) +/(.*/)?cookie\.crumb +cookie.crumb*. +# /convertro.js (easyprivacy.txt: 671) +/(.*/)?convertro\.js +convertro.js*. +# /control/tracking.php? (easyprivacy.txt: 670) +/(.*/)?control/tracking\.php\? +# /ContentTrackingCall. (easyprivacy.txt: 669) +/(.*/)?ContentTrackingCall\. +ContentTrackingCall.*. +# /containertag? (easyprivacy.txt: 668) +/(.*/)?containertag\? +# /connect_counter.js (easyprivacy.txt: 667) +/(.*/)?connect_counter\.js +# /condenet-metric. (easyprivacy.txt: 666) +/(.*/)?condenet-metric\. +condenet-metric.*. +# /ComScoreSWF. (easyprivacy.txt: 665) +/(.*/)?ComScoreSWF\. +ComScoreSWF.*. +# /ComScorePlugin. (easyprivacy.txt: 664) +/(.*/)?ComScorePlugin\. +ComScorePlugin.*. +# /comscorebeacon. (easyprivacy.txt: 663) +/(.*/)?comscorebeacon\. +comscorebeacon.*. +# /comscore_stats. (easyprivacy.txt: 662) +/(.*/)?comscore_stats\. +# /comscore_beacon. (easyprivacy.txt: 661) +/(.*/)?comscore_beacon\. +# /comscore. (easyprivacy.txt: 660) +/(.*/)?comscore\. +comscore.*. +# /competeTracking_test.html? (easyprivacy.txt: 659) +/(.*/)?competeTracking_test\.html\? +# /com_joomlawatch/* (easyprivacy.txt: 658) +/(.*/)?com_joomlawatch/.* +# /com_joomla-visites/* (easyprivacy.txt: 657) +/(.*/)?com_joomla-visites/.* +# /collector?report= (easyprivacy.txt: 656) +/(.*/)?collector\?report= +# /collector/hit? (easyprivacy.txt: 655) +/(.*/)?collector/hit\? +# /collector/*/*?*&euidl=*&url= (easyprivacy.txt: 654) +/(.*/)?collector/.*/.*\?.*&euidl=.*&url= +# /collect?callback= (easyprivacy.txt: 653) +/(.*/)?collect\?callback= +# /cognitive_match/* (easyprivacy.txt: 652) +/(.*/)?cognitive_match/.* +# /cnwk.1d/*/apex.js (easyprivacy.txt: 651) +/(.*/)?cnwk\.1d/.*/apex\.js +cnwk.1d/.*/apex\.js +# /cnvtr.js (easyprivacy.txt: 650) +/(.*/)?cnvtr\.js +cnvtr.js*. +# /CntRpt.aspx? (easyprivacy.txt: 649) +/(.*/)?CntRpt\.aspx\? +# /cntpixel. (easyprivacy.txt: 648) +/(.*/)?cntpixel\. +cntpixel.*. +# /cnt/start.php? (easyprivacy.txt: 647) +/(.*/)?cnt/start\.php\? +# /cnt/cnt.php? (easyprivacy.txt: 646) +/(.*/)?cnt/cnt\.php\? +# /cnt.cgi? (easyprivacy.txt: 645) +/(.*/)?cnt\.cgi\? +# /cnt.aspx? (easyprivacy.txt: 644) +/(.*/)?cnt\.aspx\? +# /cnt-combined.php? (easyprivacy.txt: 643) +/(.*/)?cnt-combined\.php\? +# /cnstats/* (easyprivacy.txt: 642) +/(.*/)?cnstats/.* +# /cnstats. (easyprivacy.txt: 641) +/(.*/)?cnstats\. +cnstats.*. +# /cn-fe-stats/* (easyprivacy.txt: 640) +/(.*/)?cn-fe-stats/.* +# /cmslog.dll? (easyprivacy.txt: 639) +/(.*/)?cmslog\.dll\? +# /cms/stats/* (easyprivacy.txt: 638) +/(.*/)?cms/stats/.* +# /cms.gif? (easyprivacy.txt: 637) +/(.*/)?cms\.gif\? +# /cmarketing.countus.js (easyprivacy.txt: 636) +/(.*/)?cmarketing\.countus\.js +cmarketing.countus.js*. +# /cm?tid= (easyprivacy.txt: 635) +/(.*/)?cm\?tid= +# /cm?ci=*&tid= (easyprivacy.txt: 634) +/(.*/)?cm\?ci=.*&tid= +# /cls_rpt.gif? (easyprivacy.txt: 633) +/(.*/)?cls_rpt\.gif\? +# /clientstat? (easyprivacy.txt: 632) +/(.*/)?clientstat\? +# /clientlibs/ga.js (easyprivacy.txt: 631) +/(.*/)?clientlibs/ga\.js +# /client_pathlog.asp? (easyprivacy.txt: 630) +/(.*/)?client_pathlog\.asp\? +# /client-event-logger. (easyprivacy.txt: 629) +/(.*/)?client-event-logger\. +client-event-logger.*. +# /clicky.js (easyprivacy.txt: 628) +/(.*/)?clicky\.js +clicky.js*. +# /clicktrends/* (easyprivacy.txt: 627) +/(.*/)?clicktrends/.* +# /ClickTracksCookies. (easyprivacy.txt: 626) +/(.*/)?ClickTracksCookies\. +ClickTracksCookies.*. +# /ClickTracks_ (easyprivacy.txt: 625) +/(.*/)?ClickTracks_ +# /clicktracking/* (easyprivacy.txt: 624) +/(.*/)?clicktracking/.* +# /clicktracking. (easyprivacy.txt: 623) +/(.*/)?clicktracking\. +clicktracking.*. +# /clicktracking-global. (easyprivacy.txt: 622) +/(.*/)?clicktracking-global\. +clicktracking-global.*. +# /clicktracker. (easyprivacy.txt: 621) +/(.*/)?clicktracker\. +clicktracker.*. +# /clicktrack? (easyprivacy.txt: 620) +/(.*/)?clicktrack\? +# /ClickTrack. (easyprivacy.txt: 619) +/(.*/)?ClickTrack\. +ClickTrack.*. +# /clicktrack-*.gif? (easyprivacy.txt: 618) +/(.*/)?clicktrack-.*\.gif\? +clicktrack-*./.*\.gif\? +# /ClickTaleFilter. (easyprivacy.txt: 617) +/(.*/)?ClickTaleFilter\. +ClickTaleFilter.*. +# /clicktale_ (easyprivacy.txt: 616) +/(.*/)?clicktale_ +# /clicktale/* (easyprivacy.txt: 615) +/(.*/)?clicktale/.* +# /clicktale. (easyprivacy.txt: 614) +/(.*/)?clicktale\. +clicktale.*. +# /clicktale- (easyprivacy.txt: 613) +/(.*/)?clicktale- +clicktale-*. +# /ClickTail. (easyprivacy.txt: 612) +/(.*/)?ClickTail\. +ClickTail.*. +# /clickstream.js (easyprivacy.txt: 611) +/(.*/)?clickstream\.js +clickstream.js*. +# /clickstream.aspx? (easyprivacy.txt: 610) +/(.*/)?clickstream\.aspx\? +# /clickstats. (easyprivacy.txt: 609) +/(.*/)?clickstats\. +clickstats.*. +# /clickscript. (easyprivacy.txt: 608) +/(.*/)?clickscript\. +clickscript.*. +# /clickrecord.php? (easyprivacy.txt: 607) +/(.*/)?clickrecord\.php\? +# /clickpathmedia_ (easyprivacy.txt: 606) +/(.*/)?clickpathmedia_ +# /clickpathmedia. (easyprivacy.txt: 605) +/(.*/)?clickpathmedia\. +clickpathmedia.*. +# /clickmap.js (easyprivacy.txt: 604) +/(.*/)?clickmap\.js +clickmap.js*. +# /clicklognew. (easyprivacy.txt: 603) +/(.*/)?clicklognew\. +clicklognew.*. +# /clickLogger? (easyprivacy.txt: 602) +/(.*/)?clickLogger\? +# /clicklog_ (easyprivacy.txt: 601) +/(.*/)?clicklog_ +# /clicklog. (easyprivacy.txt: 600) +/(.*/)?clicklog\. +clicklog.*. +# /clickheat^ (easyprivacy.txt: 599) +/(.*/)?clickheat[^\w%.-] +# /clickheat.js (easyprivacy.txt: 598) +/(.*/)?clickheat\.js +clickheat.js*. +# /clickcount_ (easyprivacy.txt: 597) +/(.*/)?clickcount_ +# /clickcount.cfm? (easyprivacy.txt: 596) +/(.*/)?clickcount\.cfm\? +# /clickAnalyse. (easyprivacy.txt: 595) +/(.*/)?clickAnalyse\. +clickAnalyse.*. +# /clickability? (easyprivacy.txt: 594) +/(.*/)?clickability\? +# /clickability2/* (easyprivacy.txt: 593) +/(.*/)?clickability2/.* +# /clickability/* (easyprivacy.txt: 592) +/(.*/)?clickability/.* +# /clickability. (easyprivacy.txt: 591) +/(.*/)?clickability\. +clickability.*. +# /clickability- (easyprivacy.txt: 590) +/(.*/)?clickability- +clickability-*. +# /click_tracking (easyprivacy.txt: 589) +/(.*/)?click_tracking +# /click_track.js (easyprivacy.txt: 588) +/(.*/)?click_track\.js +# /click_stats. (easyprivacy.txt: 587) +/(.*/)?click_stats\. +# /click_statistics/* (easyprivacy.txt: 586) +/(.*/)?click_statistics/.* +# /click_stat/* (easyprivacy.txt: 585) +/(.*/)?click_stat/.* +# /click_metrics-jquery.js (easyprivacy.txt: 584) +/(.*/)?click_metrics-jquery\.js +# /click-tracker (easyprivacy.txt: 583) +/(.*/)?click-tracker +click-tracker*. +# /click-stat.js (easyprivacy.txt: 582) +/(.*/)?click-stat\.js +click-stat.js*. +# /click-logger. (easyprivacy.txt: 581) +/(.*/)?click-logger\. +click-logger.*. +# /clear/c.gif? (easyprivacy.txt: 580) +/(.*/)?clear/c\.gif\? +# /clear.gif? (easyprivacy.txt: 579) +/(.*/)?clear\.gif\? +# /class.tracking.js (easyprivacy.txt: 578) +/(.*/)?class\.tracking\.js +class.tracking.js*. +# /clacking.js (easyprivacy.txt: 577) +/(.*/)?clacking\.js +clacking.js*. +# /cklink.gif? (easyprivacy.txt: 576) +/(.*/)?cklink\.gif\? +# /ckimg_1x1.gif? (easyprivacy.txt: 575) +/(.*/)?ckimg_1x1\.gif\? +# /cjtracker2. (easyprivacy.txt: 574) +/(.*/)?cjtracker2\. +cjtracker2.*. +# /citycounter. (easyprivacy.txt: 573) +/(.*/)?citycounter\. +citycounter.*. +# /cim_tns/spring.js (easyprivacy.txt: 572) +/(.*/)?cim_tns/spring\.js +# /checkstat.asp (easyprivacy.txt: 571) +/(.*/)?checkstat\.asp +checkstat.asp*. +# /checkForAdvertorials. (easyprivacy.txt: 570) +/(.*/)?checkForAdvertorials\. +checkForAdvertorials.*. +# /check.php?referrer= (easyprivacy.txt: 569) +/(.*/)?check\.php\?referrer= +# /chcounter/* (easyprivacy.txt: 568) +/(.*/)?chcounter/.* +# /chartbeatftr. (easyprivacy.txt: 567) +/(.*/)?chartbeatftr\. +chartbeatftr.*. +# /chartbeatCode. (easyprivacy.txt: 566) +/(.*/)?chartbeatCode\. +chartbeatCode.*. +# /chartbeat_ (easyprivacy.txt: 565) +/(.*/)?chartbeat_ +# /chartbeat/* (easyprivacy.txt: 564) +/(.*/)?chartbeat/.* +# /chartbeat.min.js (easyprivacy.txt: 563) +/(.*/)?chartbeat\.min\.js +chartbeat.min.js*. +# /chartbeat.js (easyprivacy.txt: 562) +/(.*/)?chartbeat\.js +chartbeat.js*. +# /chartbeat.jhtml (easyprivacy.txt: 561) +/(.*/)?chartbeat\.jhtml +chartbeat.jhtml*. +# /chartbeat- (easyprivacy.txt: 560) +/(.*/)?chartbeat- +chartbeat-*. +# /ChannelTrackingConverter. (easyprivacy.txt: 559) +/(.*/)?ChannelTrackingConverter\. +ChannelTrackingConverter.*. +# /ChannelTracking. (easyprivacy.txt: 558) +/(.*/)?ChannelTracking\. +ChannelTracking.*. +# /channelintelligence/* (easyprivacy.txt: 557) +/(.*/)?channelintelligence/.* +# /chanalytics. (easyprivacy.txt: 556) +/(.*/)?chanalytics\. +chanalytics.*. +# /chan_slidesurvey.js (easyprivacy.txt: 555) +/(.*/)?chan_slidesurvey\.js +# /cgi/trk.js (easyprivacy.txt: 554) +/(.*/)?cgi/trk\.js +# /cgi/stats.pl? (easyprivacy.txt: 553) +/(.*/)?cgi/stats\.pl\? +# /cgi/count? (easyprivacy.txt: 552) +/(.*/)?cgi/count\? +# /cgi/bin/trk.js (easyprivacy.txt: 551) +/(.*/)?cgi/bin/trk\.js +# /cgi-sys/count.cgi?df= (easyprivacy.txt: 550) +/(.*/)?cgi-sys/count\.cgi\?df= +# /cgi-bin/vdz/* (easyprivacy.txt: 549) +/(.*/)?cgi-bin/vdz/.* +# /cgi-bin/useronline/* (easyprivacy.txt: 548) +/(.*/)?cgi-bin/useronline/.* +# /cgi-bin/user_online/uos.cgi? (easyprivacy.txt: 547) +/(.*/)?cgi-bin/user_online/uos\.cgi\? +# /cgi-bin/te/in.cgi? (easyprivacy.txt: 546) +/(.*/)?cgi-bin/te/in\.cgi\? +# /cgi-bin/refsd? (easyprivacy.txt: 545) +/(.*/)?cgi-bin/refsd\? +# /cgi-bin/online/uos.cgi? (easyprivacy.txt: 544) +/(.*/)?cgi-bin/online/uos\.cgi\? +# /cgi-bin/lcpnp/* (easyprivacy.txt: 543) +/(.*/)?cgi-bin/lcpnp/.* +# /cgi-bin/ivw/* (easyprivacy.txt: 542) +/(.*/)?cgi-bin/ivw/.* +# /cgi-bin/ivw-ssl/* (easyprivacy.txt: 541) +/(.*/)?cgi-bin/ivw-ssl/.* +# /cgi-bin/hits/* (easyprivacy.txt: 540) +/(.*/)?cgi-bin/hits/.* +# /cgi-bin/ctasp-server.cgi? (easyprivacy.txt: 539) +/(.*/)?cgi-bin/ctasp-server\.cgi\? +# /cgi-bin/CP/* (easyprivacy.txt: 538) +/(.*/)?cgi-bin/CP/.* +# /cgi-bin/count1.cgi? (easyprivacy.txt: 537) +/(.*/)?cgi-bin/count1\.cgi\? +# /cgi-bin/count/* (easyprivacy.txt: 536) +/(.*/)?cgi-bin/count/.* +# /cgi-bin/count.pl? (easyprivacy.txt: 535) +/(.*/)?cgi-bin/count\.pl\? +# /cgi-bin/count.cgi?*sh= (easyprivacy.txt: 534) +/(.*/)?cgi-bin/count\.cgi\?.*sh= +# /cgi-bin/count.cgi?*rgb= (easyprivacy.txt: 533) +/(.*/)?cgi-bin/count\.cgi\?.*rgb= +# /cgi-bin/count.cgi?*ft= (easyprivacy.txt: 532) +/(.*/)?cgi-bin/count\.cgi\?.*ft= +# /cgi-bin/cnt/* (easyprivacy.txt: 530) +/(.*/)?cgi-bin/cnt/.* +# /cfformprotect/* (easyprivacy.txt: 529) +/(.*/)?cfformprotect/.* +# /Certona/* (easyprivacy.txt: 527) +/(.*/)?Certona/.* +# /certona. (easyprivacy.txt: 526) +/(.*/)?certona\. +certona.*. +# /certifica_2010.js (easyprivacy.txt: 525) +/(.*/)?certifica_2010\.js +# /certifica.js (easyprivacy.txt: 524) +/(.*/)?certifica\.js +certifica.js*. +# /certifica-js14.js (easyprivacy.txt: 523) +/(.*/)?certifica-js14\.js +certifica-js14.js*. +# /cedexisus. (easyprivacy.txt: 522) +/(.*/)?cedexisus\. +cedexisus.*. +# /cedexis/* (easyprivacy.txt: 521) +/(.*/)?cedexis/.* +# /cedexis.js (easyprivacy.txt: 520) +/(.*/)?cedexis\.js +cedexis.js*. +# /cedexis- (easyprivacy.txt: 519) +/(.*/)?cedexis- +cedexis-*. +# /cdx.gif? (easyprivacy.txt: 518) +/(.*/)?cdx\.gif\? +# /cds-webanalytics. (easyprivacy.txt: 517) +/(.*/)?cds-webanalytics\. +cds-webanalytics.*. +# /cdn5.js? (easyprivacy.txt: 516) +/(.*/)?cdn5\.js\? +# /cclickTracking. (easyprivacy.txt: 514) +/(.*/)?cclickTracking\. +cclickTracking.*. +# /cbanalytics. (easyprivacy.txt: 513) +/(.*/)?cbanalytics\. +cbanalytics.*. +# /campaign_trax. (easyprivacy.txt: 512) +/(.*/)?campaign_trax\. +# /campaign_tracker. (easyprivacy.txt: 511) +/(.*/)?campaign_tracker\. +# /callbacks/stats? (easyprivacy.txt: 510) +/(.*/)?callbacks/stats\? +# /c_track.php? (easyprivacy.txt: 509) +/(.*/)?c_track\.php\? +# /C4ATracker. (easyprivacy.txt: 507) +/(.*/)?C4ATracker\. +C4ATracker.*. +# /c2_count.js (easyprivacy.txt: 506) +/(.*/)?c2_count\.js +# /c.gif?daid (easyprivacy.txt: 505) +/(.*/)?c\.gif\?daid +# /byside_webcare. (easyprivacy.txt: 504) +/(.*/)?byside_webcare\. +# /buzz_stats. (easyprivacy.txt: 503) +/(.*/)?buzz_stats\. +# /bundles/cm.js| (easyprivacy.txt: 502) +/(.*/)?bundles/cm\.js$ +# /BuiltRegister.aspx?upt= (easyprivacy.txt: 501) +/(.*/)?BuiltRegister\.aspx\?upt= +# /bugsnag- (easyprivacy.txt: 500) +/(.*/)?bugsnag- +bugsnag-*. +# /bugcounter.php? (easyprivacy.txt: 499) +/(.*/)?bugcounter\.php\? +# /buffer.pgif?r= (easyprivacy.txt: 498) +/(.*/)?buffer\.pgif\?r= +# /btn_tracking_pixel. (easyprivacy.txt: 497) +/(.*/)?btn_tracking_pixel\. +# /bsuite/worker.php? (easyprivacy.txt: 496) +/(.*/)?bsuite/worker\.php\? +# /bstats. (easyprivacy.txt: 495) +/(.*/)?bstats\. +bstats.*. +# /bstat.js (easyprivacy.txt: 494) +/(.*/)?bstat\.js +bstat.js*. +# /bsc_trak. (easyprivacy.txt: 493) +/(.*/)?bsc_trak\. +# /britetrack/* (easyprivacy.txt: 492) +/(.*/)?britetrack/.* +# /brightedge.js (easyprivacy.txt: 491) +/(.*/)?brightedge\.js +brightedge.js*. +# /brightcoveGoogleAnalytics. (easyprivacy.txt: 490) +/(.*/)?brightcoveGoogleAnalytics\. +brightcoveGoogleAnalytics.*. +# /brightcove/tracking/* (easyprivacy.txt: 489) +/(.*/)?brightcove/tracking/.* +# /brandAnalytics.js (easyprivacy.txt: 488) +/(.*/)?brandAnalytics\.js +brandAnalytics.js*. +# /br_imps/add_item? (easyprivacy.txt: 487) +/(.*/)?br_imps/add_item\? +# /br-trk. (easyprivacy.txt: 486) +/(.*/)?br-trk\. +br-trk.*. +# /br-trk- (easyprivacy.txt: 485) +/(.*/)?br-trk- +br-trk-*. +# /bower_components/fp/fp.js (easyprivacy.txt: 484) +/(.*/)?bower_components/fp/fp\.js +# /botd.gif? (easyprivacy.txt: 483) +/(.*/)?botd\.gif\? +# /boost_stats. (easyprivacy.txt: 482) +/(.*/)?boost_stats\. +# /boomerang.js (easyprivacy.txt: 481) +/(.*/)?boomerang\.js +boomerang.js*. +# /boomerang-minified- (easyprivacy.txt: 480) +/(.*/)?boomerang-minified- +boomerang-minified-*. +# /bn/tracker/* (easyprivacy.txt: 479) +/(.*/)?bn/tracker/.* +# /bm-bam-trk. (easyprivacy.txt: 478) +/(.*/)?bm-bam-trk\. +bm-bam-trk.*. +# /bm-analytics/* (easyprivacy.txt: 477) +/(.*/)?bm-analytics/.* +# /bm-analytics-trk.js (easyprivacy.txt: 476) +/(.*/)?bm-analytics-trk\.js +bm-analytics-trk.js*. +# /bluetracker/* (easyprivacy.txt: 475) +/(.*/)?bluetracker/.* +# /BlueKaiPixel/* (easyprivacy.txt: 474) +/(.*/)?BlueKaiPixel/.* +# /bluekaicookieinfo. (easyprivacy.txt: 473) +/(.*/)?bluekaicookieinfo\. +bluekaicookieinfo.*. +# /blueKaiAnalytics. (easyprivacy.txt: 472) +/(.*/)?blueKaiAnalytics\. +blueKaiAnalytics.*. +# /bluekai/* (easyprivacy.txt: 471) +/(.*/)?bluekai/.* +# /bluekai. (easyprivacy.txt: 470) +/(.*/)?bluekai\. +bluekai.*. +# /blogtotal_stats_ (easyprivacy.txt: 469) +/(.*/)?blogtotal_stats_ +# /blogsectiontracking. (easyprivacy.txt: 468) +/(.*/)?blogsectiontracking\. +blogsectiontracking.*. +# /blog/traffic/? (easyprivacy.txt: 467) +/(.*/)?blog/traffic/\? +# /BKVTrack.js (easyprivacy.txt: 466) +/(.*/)?BKVTrack\.js +BKVTrack.js*. +# /bizo.js (easyprivacy.txt: 465) +/(.*/)?bizo\.js +bizo.js*. +# /bitrix/spread.php? (easyprivacy.txt: 464) +/(.*/)?bitrix/spread\.php\? +# /bin/stats? (easyprivacy.txt: 463) +/(.*/)?bin/stats\? +# /bin/reff.php (easyprivacy.txt: 462) +/(.*/)?bin/reff\.php +# /bidiq. (easyprivacy.txt: 461) +/(.*/)?bidiq\. +bidiq.*. +# /bicomscore_ (easyprivacy.txt: 460) +/(.*/)?bicomscore_ +# /bicomscore. (easyprivacy.txt: 459) +/(.*/)?bicomscore\. +bicomscore.*. +# /bi.tracking/* (easyprivacy.txt: 458) +/(.*/)?bi\.tracking/.* +bi.tracking/.* +# /bh_counter.js (easyprivacy.txt: 457) +/(.*/)?bh_counter\.js +# /betamax_tracker.js (easyprivacy.txt: 456) +/(.*/)?betamax_tracker\.js +# /betamax_tracker.gif? (easyprivacy.txt: 455) +/(.*/)?betamax_tracker\.gif\? +# /BehaviourCaptureHandler. (easyprivacy.txt: 454) +/(.*/)?BehaviourCaptureHandler\. +BehaviourCaptureHandler.*. +# /beaconimg.php? (easyprivacy.txt: 453) +/(.*/)?beaconimg\.php\? +# /beacon_async. (easyprivacy.txt: 452) +/(.*/)?beacon_async\. +# /beacon? (easyprivacy.txt: 451) +/(.*/)?beacon\? +# /beacon/vtn_loader.gif? (easyprivacy.txt: 450) +/(.*/)?beacon/vtn_loader\.gif\? +# /beacon/b.ashx? (easyprivacy.txt: 449) +/(.*/)?beacon/b\.ashx\? +# /beacon.js (easyprivacy.txt: 448) +/(.*/)?beacon\.js +beacon.js*. +# /beacon.gif? (easyprivacy.txt: 447) +/(.*/)?beacon\.gif\? +# /beacon.cgi? (easyprivacy.txt: 446) +/(.*/)?beacon\.cgi\? +# /bcn?id= (easyprivacy.txt: 445) +/(.*/)?bcn\?id= +# /baynoteobserver/* (easyprivacy.txt: 444) +/(.*/)?baynoteobserver/.* +# /baynote_ (easyprivacy.txt: 443) +/(.*/)?baynote_ +# /baynote80. (easyprivacy.txt: 442) +/(.*/)?baynote80\. +baynote80.*. +# /baynote3. (easyprivacy.txt: 441) +/(.*/)?baynote3\. +baynote3.*. +# /baynote/* (easyprivacy.txt: 440) +/(.*/)?baynote/.* +# /baynote. (easyprivacy.txt: 439) +/(.*/)?baynote\. +baynote.*. +# /batch.gif? (easyprivacy.txt: 437) +/(.*/)?batch\.gif\? +# /basesdc.js (easyprivacy.txt: 436) +/(.*/)?basesdc\.js +basesdc.js*. +# /banners-stat. (easyprivacy.txt: 435) +/(.*/)?banners-stat\. +banners-stat.*. +# /banner-tracker. (easyprivacy.txt: 434) +/(.*/)?banner-tracker\. +banner-tracker.*. +# /backlink2. (easyprivacy.txt: 433) +/(.*/)?backlink2\. +backlink2.*. +# /backlink/* (easyprivacy.txt: 432) +/(.*/)?backlink/.* +# /backlink.php? (easyprivacy.txt: 431) +/(.*/)?backlink\.php\? +# /b2bsdc.js (easyprivacy.txt: 430) +/(.*/)?b2bsdc\.js +b2bsdc.js*. +# /b/ss/wdgdolad, (easyprivacy.txt: 429) +/(.*/)?b/ss/wdgdolad, +# /b/ss/ueglobaldev/* (easyprivacy.txt: 428) +/(.*/)?b/ss/ueglobaldev/.* +# /b/ss/*?pagename= (easyprivacy.txt: 427) +/(.*/)?b/ss/.*\?pagename= +# /b/ss/*?gn=mobile: (easyprivacy.txt: 426) +/(.*/)?b/ss/.*\?gn=mobile: +# /b/ss/*?aqb=1&pccr= (easyprivacy.txt: 425) +/(.*/)?b/ss/.*\?aqb=1&pccr= +# /b/ss/*=referrers& (easyprivacy.txt: 424) +/(.*/)?b/ss/.*=referrers& +# /b/ss/*=event36& (easyprivacy.txt: 423) +/(.*/)?b/ss/.*=event36& +# /b/ss/*/h.17--wap?c20= (easyprivacy.txt: 422) +/(.*/)?b/ss/.*/h\.17--wap\?c20= +# /b/ss/*&pagename= (easyprivacy.txt: 421) +/(.*/)?b/ss/.*&pagename= +# /b/ss/*&ndh= (easyprivacy.txt: 420) +/(.*/)?b/ss/.*&ndh= +# /b/ss/*&events= (easyprivacy.txt: 419) +/(.*/)?b/ss/.*&events= +# /b/ss/*&ce=utf-8& (easyprivacy.txt: 418) +/(.*/)?b/ss/.*&ce=utf-8& +# /b/ss/*&ce=iso-8859-1& (easyprivacy.txt: 417) +/(.*/)?b/ss/.*&ce=iso-8859-1& +# /b/ss/*&aqe= (easyprivacy.txt: 416) +/(.*/)?b/ss/.*&aqe= +# /aztrack. (easyprivacy.txt: 415) +/(.*/)?aztrack\. +aztrack.*. +# /awstats_misc_tracker (easyprivacy.txt: 414) +/(.*/)?awstats_misc_tracker +# /awstats.js (easyprivacy.txt: 413) +/(.*/)?awstats\.js +awstats.js*. +# /awesc.php? (easyprivacy.txt: 412) +/(.*/)?awesc\.php\? +# /awAnalytics. (easyprivacy.txt: 411) +/(.*/)?awAnalytics\. +awAnalytics.*. +# /aw-tracker. (easyprivacy.txt: 410) +/(.*/)?aw-tracker\. +aw-tracker.*. +# /avtstats. (easyprivacy.txt: 409) +/(.*/)?avtstats\. +avtstats.*. +# /avmws_*.js (easyprivacy.txt: 408) +/(.*/)?avmws_.*\.js +# /avant_sfpc_ (easyprivacy.txt: 406) +/(.*/)?avant_sfpc_ +# /AutoTracker.js (easyprivacy.txt: 405) +/(.*/)?AutoTracker\.js +AutoTracker.js*. +# /autotag. (easyprivacy.txt: 404) +/(.*/)?autotag\. +autotag.*. +# /audsci.js (easyprivacy.txt: 403) +/(.*/)?audsci\.js +audsci.js*. +# /audienceScience. (easyprivacy.txt: 402) +/(.*/)?audienceScience\. +audienceScience.*. +# /audience_science_ (easyprivacy.txt: 401) +/(.*/)?audience_science_ +# /audience_science. (easyprivacy.txt: 400) +/(.*/)?audience_science\. +# /audience_science- (easyprivacy.txt: 399) +/(.*/)?audience_science- +# /audience-science. (easyprivacy.txt: 398) +/(.*/)?audience-science\. +audience-science.*. +# /audience-meter. (easyprivacy.txt: 397) +/(.*/)?audience-meter\. +audience-meter.*. +# /atrk.js (easyprivacy.txt: 396) +/(.*/)?atrk\.js +atrk.js*. +# /atrk.gif? (easyprivacy.txt: 395) +/(.*/)?atrk\.gif\? +# /atlas_track. (easyprivacy.txt: 394) +/(.*/)?atlas_track\. +# /atatus.js (easyprivacy.txt: 393) +/(.*/)?atatus\.js +atatus.js*. +# /atapixel.js (easyprivacy.txt: 392) +/(.*/)?atapixel\.js +atapixel.js*. +# /asyncggtracking. (easyprivacy.txt: 391) +/(.*/)?asyncggtracking\. +asyncggtracking.*. +# /astracker/* (easyprivacy.txt: 390) +/(.*/)?astracker/.* +# /astracker. (easyprivacy.txt: 389) +/(.*/)?astracker\. +astracker.*. +# /astrack.js (easyprivacy.txt: 388) +/(.*/)?astrack\.js +astrack.js*. +# /AssyncCSStats.aspx (easyprivacy.txt: 387) +/(.*/)?AssyncCSStats\.aspx +AssyncCSStats.aspx*. +# /assets/tracking- (easyprivacy.txt: 386) +/(.*/)?assets/tracking- +# /aspstats/index.asp? (easyprivacy.txt: 385) +/(.*/)?aspstats/index\.asp\? +# /aspenanalytics. (easyprivacy.txt: 384) +/(.*/)?aspenanalytics\. +aspenanalytics.*. +# /aslog.php? (easyprivacy.txt: 383) +/(.*/)?aslog\.php\? +# /asknet_tracking. (easyprivacy.txt: 382) +/(.*/)?asknet_tracking\. +# /ArticleViewTracking/* (easyprivacy.txt: 381) +/(.*/)?ArticleViewTracking/.* +# /ArticleLog.aspx? (easyprivacy.txt: 380) +/(.*/)?ArticleLog\.aspx\? +# /article_hit.php? (easyprivacy.txt: 379) +/(.*/)?article_hit\.php\? +# /article_counter.php? (easyprivacy.txt: 378) +/(.*/)?article_counter\.php\? +# /argtk.min. (easyprivacy.txt: 377) +/(.*/)?argtk\.min\. +argtk.min.*. +# /AppMeasurement.js (easyprivacy.txt: 376) +/(.*/)?AppMeasurement\.js +AppMeasurement.js*. +# /appendOmnitureTracking. (easyprivacy.txt: 375) +/(.*/)?appendOmnitureTracking\. +appendOmnitureTracking.*. +# /apixel? (easyprivacy.txt: 374) +/(.*/)?apixel\? +# /apitracking. (easyprivacy.txt: 373) +/(.*/)?apitracking\. +apitracking.*. +# /apilog? (easyprivacy.txt: 372) +/(.*/)?apilog\? +# /api/x.gif? (easyprivacy.txt: 371) +/(.*/)?api/x\.gif\? +# /api/analytics/* (easyprivacy.txt: 370) +/(.*/)?api/analytics/.* +# /api/0/stats (easyprivacy.txt: 369) +/(.*/)?api/0/stats +# /anycent_tracker_ (easyprivacy.txt: 368) +/(.*/)?anycent_tracker_ +# /angularlytics. (easyprivacy.txt: 367) +/(.*/)?angularlytics\. +angularlytics.*. +# /angular-tag. (easyprivacy.txt: 366) +/(.*/)?angular-tag\. +angular-tag.*. +# /ancAdTrack.js (easyprivacy.txt: 365) +/(.*/)?ancAdTrack\.js +ancAdTrack.js*. +# /anapixel. (easyprivacy.txt: 364) +/(.*/)?anapixel\. +anapixel.*. +# /anametrix_tag.js (easyprivacy.txt: 363) +/(.*/)?anametrix_tag\.js +# /anametrix/* (easyprivacy.txt: 362) +/(.*/)?anametrix/.* +# /anametrix.js (easyprivacy.txt: 361) +/(.*/)?anametrix\.js +anametrix.js*. +# /analyzer2. (easyprivacy.txt: 360) +/(.*/)?analyzer2\. +analyzer2.*. +# /analyzer.gif? (easyprivacy.txt: 359) +/(.*/)?analyzer\.gif\? +# /analyticsUnitaire? (easyprivacy.txt: 358) +/(.*/)?analyticsUnitaire\? +# /analyticstrain- (easyprivacy.txt: 357) +/(.*/)?analyticstrain- +analyticstrain-*. +# /analyticstracking_ (easyprivacy.txt: 356) +/(.*/)?analyticstracking_ +# /analyticstracking. (easyprivacy.txt: 355) +/(.*/)?analyticstracking\. +analyticstracking.*. +# /analyticstrack. (easyprivacy.txt: 354) +/(.*/)?analyticstrack\. +analyticstrack.*. +# /analyticstick. (easyprivacy.txt: 353) +/(.*/)?analyticstick\. +analyticstick.*. +# /analyticsscript_ (easyprivacy.txt: 352) +/(.*/)?analyticsscript_ +# /AnalyticsOnDemand/* (easyprivacy.txt: 351) +/(.*/)?AnalyticsOnDemand/.* +# /analyticsjs. (easyprivacy.txt: 350) +/(.*/)?analyticsjs\. +analyticsjs.*. +# /analyticsid. (easyprivacy.txt: 349) +/(.*/)?analyticsid\. +analyticsid.*. +# /analyticsfeed.ashx? (easyprivacy.txt: 348) +/(.*/)?analyticsfeed\.ashx\? +# /analytics_tracker (easyprivacy.txt: 347) +/(.*/)?analytics_tracker +# /analytics_tag. (easyprivacy.txt: 346) +/(.*/)?analytics_tag\. +# /analytics_prod. (easyprivacy.txt: 345) +/(.*/)?analytics_prod\. +# /analytics_ping. (easyprivacy.txt: 344) +/(.*/)?analytics_ping\. +# /analytics_js/* (easyprivacy.txt: 343) +/(.*/)?analytics_js/.* +# /analytics_frame. (easyprivacy.txt: 342) +/(.*/)?analytics_frame\. +# /analytics_embed. (easyprivacy.txt: 341) +/(.*/)?analytics_embed\. +# /analytics?http_referer (easyprivacy.txt: 340) +/(.*/)?analytics\?http_referer +# /Analytics/Visitor. (easyprivacy.txt: 339) +/(.*/)?Analytics/Visitor\. +# /analytics/tracking/* (easyprivacy.txt: 338) +/(.*/)?analytics/tracking/.* +# /Analytics/Tracking. (easyprivacy.txt: 337) +/(.*/)?Analytics/Tracking\. +# /analytics/trackers? (easyprivacy.txt: 336) +/(.*/)?analytics/trackers\? +# /analytics/tracker. (easyprivacy.txt: 335) +/(.*/)?analytics/tracker\. +# /analytics/track? (easyprivacy.txt: 334) +/(.*/)?analytics/track\? +# /analytics/track- (easyprivacy.txt: 333) +/(.*/)?analytics/track- +# /analytics/socialTracking.js (easyprivacy.txt: 332) +/(.*/)?analytics/socialTracking\.js +# /analytics/report/* (easyprivacy.txt: 331) +/(.*/)?analytics/report/.* +# /analytics/mbox.js (easyprivacy.txt: 330) +/(.*/)?analytics/mbox\.js +# /analytics/js/* (easyprivacy.txt: 329) +/(.*/)?analytics/js/.* +# /analytics/hit (easyprivacy.txt: 328) +/(.*/)?analytics/hit +# /analytics/gw. (easyprivacy.txt: 327) +/(.*/)?analytics/gw\. +# /Analytics/Google. (easyprivacy.txt: 326) +/(.*/)?Analytics/Google\. +# /analytics/ga? (easyprivacy.txt: 325) +/(.*/)?analytics/ga\? +# /analytics/ga/* (easyprivacy.txt: 324) +/(.*/)?analytics/ga/.* +# /analytics/eventTrack (easyprivacy.txt: 323) +/(.*/)?analytics/eventTrack +# /analytics/cms/* (easyprivacy.txt: 322) +/(.*/)?analytics/cms/.* +# /analytics.swf? (easyprivacy.txt: 321) +/(.*/)?analytics\.swf\? +# /analytics.php? (easyprivacy.txt: 320) +/(.*/)?analytics\.php\? +# /analytics.php. (easyprivacy.txt: 319) +/(.*/)?analytics\.php\. +analytics.php.*. +# /analytics.min.js (easyprivacy.txt: 318) +/(.*/)?analytics\.min\.js +analytics.min.js*. +# /analytics.html?action= (easyprivacy.txt: 317) +/(.*/)?analytics\.html\?action= +# /analytics.google.js (easyprivacy.txt: 316) +/(.*/)?analytics\.google\.js +analytics.google.js*. +# /analytics.gif? (easyprivacy.txt: 315) +/(.*/)?analytics\.gif\? +# /analytics.do (easyprivacy.txt: 314) +/(.*/)?analytics\.do +analytics.do*. +# /analytics.compressed.js (easyprivacy.txt: 313) +/(.*/)?analytics\.compressed\.js +analytics.compressed.js*. +# /analytics.bundled.js (easyprivacy.txt: 312) +/(.*/)?analytics\.bundled\.js +analytics.bundled.js*. +# /Analytics.aspx? (easyprivacy.txt: 311) +/(.*/)?Analytics\.aspx\? +# /analytics.ashx (easyprivacy.txt: 310) +/(.*/)?analytics\.ashx +analytics.ashx*. +# /analytics-tag. (easyprivacy.txt: 309) +/(.*/)?analytics-tag\. +analytics-tag.*. +# /analytics-js. (easyprivacy.txt: 308) +/(.*/)?analytics-js\. +analytics-js.*. +# /analytics-beacon- (easyprivacy.txt: 307) +/(.*/)?analytics-beacon- +analytics-beacon-*. +# /analyticReporting. (easyprivacy.txt: 305) +/(.*/)?analyticReporting\. +analyticReporting.*. +# /analytic_data_ (easyprivacy.txt: 304) +/(.*/)?analytic_data_ +# /analysis-logger/* (easyprivacy.txt: 303) +/(.*/)?analysis-logger/.* +# /analyse.js (easyprivacy.txt: 302) +/(.*/)?analyse\.js +analyse.js*. +# /analiz.php3? (easyprivacy.txt: 301) +/(.*/)?analiz\.php3\? +# /amazon-affiliate- (easyprivacy.txt: 297) +/(.*/)?amazon-affiliate- +amazon-affiliate-*. +# /alvenda_remarketing_ (easyprivacy.txt: 296) +/(.*/)?alvenda_remarketing_ +# /alllinksclicktracker.js (easyprivacy.txt: 295) +/(.*/)?alllinksclicktracker\.js +alllinksclicktracker.js*. +# /AkamaiTrackingPixel. (easyprivacy.txt: 294) +/(.*/)?AkamaiTrackingPixel\. +AkamaiTrackingPixel.*. +# /AkamaiAnalytics. (easyprivacy.txt: 293) +/(.*/)?AkamaiAnalytics\. +AkamaiAnalytics.*. +# /akamai_analytics_ (easyprivacy.txt: 292) +/(.*/)?akamai_analytics_ +# /akamai/pixy.gif (easyprivacy.txt: 291) +/(.*/)?akamai/pixy\.gif +# /ajaxservice.svc/registersession?session_id= (easyprivacy.txt: 290) +/(.*/)?ajaxservice\.svc/registersession\?session_id= +ajaxservice.svc/registersession\?session_id= +# /ajaxlog? (easyprivacy.txt: 289) +/(.*/)?ajaxlog\? +# /ajaxlog.txt? (easyprivacy.txt: 288) +/(.*/)?ajaxlog\.txt\? +# /ajaxClicktrack. (easyprivacy.txt: 287) +/(.*/)?ajaxClicktrack\. +ajaxClicktrack.*. +# /ajax_video_counter.php? (easyprivacy.txt: 286) +/(.*/)?ajax_video_counter\.php\? +# /ajax_store_analytics? (easyprivacy.txt: 285) +/(.*/)?ajax_store_analytics\? +# /ajax/optimizely- (easyprivacy.txt: 284) +/(.*/)?ajax/optimizely- +# /ajax/log? (easyprivacy.txt: 283) +/(.*/)?ajax/log\? +# /ajax/heatmap- (easyprivacy.txt: 282) +/(.*/)?ajax/heatmap- +# /ajax-hits-counter/* (easyprivacy.txt: 281) +/(.*/)?ajax-hits-counter/.* +# /agof/iam- (easyprivacy.txt: 280) +/(.*/)?agof/iam- +# /aggbug.aspx? (easyprivacy.txt: 279) +/(.*/)?aggbug\.aspx\? +# /aftrackingplugin.swf (easyprivacy.txt: 278) +/(.*/)?aftrackingplugin\.swf +aftrackingplugin.swf*. +# /aftrack. (easyprivacy.txt: 277) +/(.*/)?aftrack\. +aftrack.*. +# /afrpt.gif? (easyprivacy.txt: 276) +/(.*/)?afrpt\.gif\? +# /aflog.gif? (easyprivacy.txt: 275) +/(.*/)?aflog\.gif\? +# /afftracking. (easyprivacy.txt: 274) +/(.*/)?afftracking\. +afftracking.*. +# /afftrack. (easyprivacy.txt: 273) +/(.*/)?afftrack\. +afftrack.*. +# /affl.cgi? (easyprivacy.txt: 272) +/(.*/)?affl\.cgi\? +# /AffinoAudit/* (easyprivacy.txt: 271) +/(.*/)?AffinoAudit/.* +# /affilinetRetargeting. (easyprivacy.txt: 270) +/(.*/)?affilinetRetargeting\. +affilinetRetargeting.*. +# /affiliatetracking/* (easyprivacy.txt: 269) +/(.*/)?affiliatetracking/.* +# /affiliateTracking. (easyprivacy.txt: 268) +/(.*/)?affiliateTracking\. +affiliateTracking.*. +# /AffiliateClick. (easyprivacy.txt: 267) +/(.*/)?AffiliateClick\. +AffiliateClick.*. +# /affiliate/track? (easyprivacy.txt: 266) +/(.*/)?affiliate/track\? +# /affiliate.1800flowers. (easyprivacy.txt: 265) +/(.*/)?affiliate\.1800flowers\. +affiliate.1800flowers.*. +# /affiliate-tracker. (easyprivacy.txt: 264) +/(.*/)?affiliate-tracker\. +affiliate-tracker.*. +# /affiliate-track. (easyprivacy.txt: 263) +/(.*/)?affiliate-track\. +affiliate-track.*. +# /aff_land?referrer (easyprivacy.txt: 262) +/(.*/)?aff_land\?referrer +# /aegis_tracking. (easyprivacy.txt: 261) +/(.*/)?aegis_tracking\. +# /adx_remote. (easyprivacy.txt: 260) +/(.*/)?adx_remote\. +# /adwords-conversion-tracking. (easyprivacy.txt: 259) +/(.*/)?adwords-conversion-tracking\. +adwords-conversion-tracking.*. +# /advstats/* (easyprivacy.txt: 258) +/(.*/)?advstats/.* +# /adviewtrack. (easyprivacy.txt: 257) +/(.*/)?adviewtrack\. +adviewtrack.*. +# /adv/tracking. (easyprivacy.txt: 256) +/(.*/)?adv/tracking\. +# /adtrk/* (easyprivacy.txt: 255) +/(.*/)?adtrk/.* +# /adstrack. (easyprivacy.txt: 254) +/(.*/)?adstrack\. +adstrack.*. +# /adstats. (easyprivacy.txt: 253) +/(.*/)?adstats\. +adstats.*. +# /adstat. (easyprivacy.txt: 252) +/(.*/)?adstat\. +adstat.*. +# /adsct? (easyprivacy.txt: 251) +/(.*/)?adsct\? +# /ads_tracker. (easyprivacy.txt: 250) +/(.*/)?ads_tracker\. +# /ads/track/* (easyprivacy.txt: 249) +/(.*/)?ads/track/.* +# /adrum. (easyprivacy.txt: 248) +/(.*/)?adrum\. +adrum.*. +# /adrum- (easyprivacy.txt: 247) +/(.*/)?adrum- +adrum-*. +# /adpixel. (easyprivacy.txt: 246) +/(.*/)?adpixel\. +adpixel.*. +# /AdobeCustomVideoMeasurement.swf (easyprivacy.txt: 245) +/(.*/)?AdobeCustomVideoMeasurement\.swf +AdobeCustomVideoMeasurement.swf*. +# /admonitoring.js (easyprivacy.txt: 244) +/(.*/)?admonitoring\.js +admonitoring.js*. +# /adm_tracking.js (easyprivacy.txt: 243) +/(.*/)?adm_tracking\.js +# /adloggertracker. (easyprivacy.txt: 242) +/(.*/)?adloggertracker\. +adloggertracker.*. +# /adlogger_ (easyprivacy.txt: 241) +/(.*/)?adlogger_ +# /adlogger. (easyprivacy.txt: 240) +/(.*/)?adlogger\. +adlogger.*. +# /adinteraction/* (easyprivacy.txt: 239) +/(.*/)?adinteraction/.* +# /adimppixel/* (easyprivacy.txt: 238) +/(.*/)?adimppixel/.* +# /addTrackingScripts. (easyprivacy.txt: 237) +/(.*/)?addTrackingScripts\. +addTrackingScripts.*. +# /addrtlog/* (easyprivacy.txt: 236) +/(.*/)?addrtlog/.* +# /addpageview/* (easyprivacy.txt: 235) +/(.*/)?addpageview/.* +# /addlogdetails. (easyprivacy.txt: 234) +/(.*/)?addlogdetails\. +addlogdetails.*. +# /addlog/? (easyprivacy.txt: 233) +/(.*/)?addlog/\? +# /addLinkerEvents.js (easyprivacy.txt: 232) +/(.*/)?addLinkerEvents\.js +addLinkerEvents.js*. +# /addLinkerEvents-std. (easyprivacy.txt: 231) +/(.*/)?addLinkerEvents-std\. +addLinkerEvents-std.*. +# /addLinkerEvents-ga. (easyprivacy.txt: 230) +/(.*/)?addLinkerEvents-ga\. +addLinkerEvents-ga.*. +# /addLinker.js (easyprivacy.txt: 229) +/(.*/)?addLinker\.js +addLinker.js*. +# /add_stats (easyprivacy.txt: 227) +/(.*/)?add_stats +# /add_page_view? (easyprivacy.txt: 226) +/(.*/)?add_page_view\? +# /AdCount/* (easyprivacy.txt: 225) +/(.*/)?AdCount/.* +# /adb/track.php? (easyprivacy.txt: 224) +/(.*/)?adb/track\.php\? +# /adam.js (easyprivacy.txt: 223) +/(.*/)?adam\.js +adam.js*. +# /ad_1_trans. (easyprivacy.txt: 222) +/(.*/)?ad_1_trans\. +# /ad/tr.gif? (easyprivacy.txt: 221) +/(.*/)?ad/tr\.gif\? +# /activity.gif? (easyprivacy.txt: 220) +/(.*/)?activity\.gif\? +# /activity-track/? (easyprivacy.txt: 219) +/(.*/)?activity-track/\? +# /activetrackphp.php? (easyprivacy.txt: 218) +/(.*/)?activetrackphp\.php\? +# /act_pagetrack. (easyprivacy.txt: 217) +/(.*/)?act_pagetrack\. +# /acounter.php? (easyprivacy.txt: 216) +/(.*/)?acounter\.php\? +# /acfp.js (easyprivacy.txt: 215) +/(.*/)?acfp\.js +acfp.js*. +# /acecounter_ (easyprivacy.txt: 214) +/(.*/)?acecounter_ +# /acecounter/* (easyprivacy.txt: 213) +/(.*/)?acecounter/.* +# /acclog.cgi? (easyprivacy.txt: 212) +/(.*/)?acclog\.cgi\? +# /AccessTrackingLogServlet? (easyprivacy.txt: 211) +/(.*/)?AccessTrackingLogServlet\? +# /AccessCounter/* (easyprivacy.txt: 210) +/(.*/)?AccessCounter/.* +# /acbeacon2. (easyprivacy.txt: 209) +/(.*/)?acbeacon2\. +acbeacon2.*. +# /ablank.gif? (easyprivacy.txt: 208) +/(.*/)?ablank\.gif\? +# /aa.php?anuid= (easyprivacy.txt: 207) +/(.*/)?aa\.php\?anuid= +# /a.logrequest.yolx? (easyprivacy.txt: 206) +/(.*/)?a\.logrequest\.yolx\? +# /_tracking/* (easyprivacy.txt: 205) +/(.*/)?_tracking/.* +# /_topic_stats? (easyprivacy.txt: 204) +/(.*/)?_topic_stats\? +# /_owa.gif? (easyprivacy.txt: 203) +/(.*/)?_owa\.gif\? +# /_lib/ga.js (easyprivacy.txt: 202) +/(.*/)?_lib/ga\.js +# /_dts.gif? (easyprivacy.txt: 201) +/(.*/)?_dts\.gif\? +# /__wsm.gif (easyprivacy.txt: 200) +/(.*/)?__wsm\.gif +# /__varnish_geoip (easyprivacy.txt: 199) +/(.*/)?__varnish_geoip +# /__utm.js (easyprivacy.txt: 198) +/(.*/)?__utm\.js +# /__utm.gif (easyprivacy.txt: 197) +/(.*/)?__utm\.gif +# /__tm3k.gif? (easyprivacy.txt: 196) +/(.*/)?__tm3k\.gif\? +# /__sttm.gif? (easyprivacy.txt: 195) +/(.*/)?__sttm\.gif\? +# /__ssobj/core.js (easyprivacy.txt: 193) +/(.*/)?__ssobj/core\.js +# /?record&key= (easyprivacy.txt: 192) +/(.*/)?\?record&key= +# /?livehit= (easyprivacy.txt: 191) +/(.*/)?\?livehit= +# /?com=visit*=record& (easyprivacy.txt: 189) +/(.*/)?\?com=visit.*=record& +# /1x1tracker. (easyprivacy.txt: 188) +/(.*/)?1x1tracker\. +1x1tracker.*. +# /1x1p.gif? (easyprivacy.txt: 187) +/(.*/)?1x1p\.gif\? +# /1x1_imp.gif? (easyprivacy.txt: 186) +/(.*/)?1x1_imp\.gif\? +# /1x1_akamai.gif (easyprivacy.txt: 185) +/(.*/)?1x1_akamai\.gif +# /1x1.gif?utm (easyprivacy.txt: 184) +/(.*/)?1x1\.gif\?utm +# /1x1.gif?tracking (easyprivacy.txt: 183) +/(.*/)?1x1\.gif\?tracking +# /0pixel.php? (easyprivacy.txt: 182) +/(.*/)?0pixel\.php\? +# /!crd_prm!. (easyprivacy.txt: 180) +/(.*/)?!crd_prm!\. +# .webstats. (easyprivacy.txt: 179) +/.*\.webstats\. +.*.webstats.*. +# .webmetrics.js (easyprivacy.txt: 178) +/.*\.webmetrics\.js +.*.webmetrics.js*. +# .vsTracking. (easyprivacy.txt: 177) +/.*\.vsTracking\. +.*.vsTracking.*. +# .vn/0.gif? (easyprivacy.txt: 176) +/.*\.vn/0\.gif\? +.*.vn/0\.gif\? +# .usertracking_script.js (easyprivacy.txt: 175) +/.*\.usertracking_script\.js +# .uk/traffic/? (easyprivacy.txt: 174) +/.*\.uk/traffic/\? +.*.uk/traffic/\? +# .uk/o.gif? (easyprivacy.txt: 173) +/.*\.uk/o\.gif\? +.*.uk/o\.gif\? +# .tv/t.png? (easyprivacy.txt: 172) +/.*\.tv/t\.png\? +.*.tv/t\.png\? +# .tv/log?event (easyprivacy.txt: 171) +/.*\.tv/log\?event +.*.tv/log\?event +# .trackUserAction& (easyprivacy.txt: 170) +/.*\.trackUserAction& +# .tracking.js?dpv= (easyprivacy.txt: 169) +/.*\.tracking\.js\?dpv= +# .trackArticleAction& (easyprivacy.txt: 168) +/.*\.trackArticleAction& +# .track_Visit? (easyprivacy.txt: 167) +/.*\.track_Visit\? +# .social_tracking. (easyprivacy.txt: 166) +/.*\.social_tracking\. +# .skimlinks.js (easyprivacy.txt: 165) +/.*\.skimlinks\.js +.*.skimlinks.js*. +# .sitetracking. (easyprivacy.txt: 164) +/.*\.sitetracking\. +.*.sitetracking.*. +# .siteclarity. (easyprivacy.txt: 163) +/.*\.siteclarity\. +.*.siteclarity.*. +# .sitecatalyst.js (easyprivacy.txt: 162) +/.*\.sitecatalyst\.js +.*.sitecatalyst.js*. +# .sg/t.gif? (easyprivacy.txt: 160) +/.*\.sg/t\.gif\? +.*.sg/t\.gif\? +# .pt/t.gif? (easyprivacy.txt: 159) +/.*\.pt/t\.gif\? +.*.pt/t\.gif\? +# .pt/n.gif? (easyprivacy.txt: 158) +/.*\.pt/n\.gif\? +.*.pt/n\.gif\? +# .PixelNedstatStatistic/ (easyprivacy.txt: 157) +/.*\.PixelNedstatStatistic/ +.*.PixelNedstatStatistic +# .php?refcode= (easyprivacy.txt: 156) +/.*\.php\?refcode= +# .php?logType= (easyprivacy.txt: 155) +/.*\.php\?logType= +# .php?logRefer= (easyprivacy.txt: 154) +/.*\.php\?logRefer= +# .pageVisitCounter_ (easyprivacy.txt: 153) +/.*\.pageVisitCounter_ +# .PageHitServlet? (easyprivacy.txt: 152) +/.*\.PageHitServlet\? +# .org/js/ga- (easyprivacy.txt: 151) +/.*\.org/js/ga- +.*.org/js/ga- +# .org/?js| (easyprivacy.txt: 150) +/.*\.org/\?js$ +.*.org/\?js$ +# .nz/t.gif? (easyprivacy.txt: 149) +/.*\.nz/t\.gif\? +.*.nz/t\.gif\? +# .ntpagetag. (easyprivacy.txt: 148) +/.*\.ntpagetag\. +.*.ntpagetag.*. +# .net/vtrack| (easyprivacy.txt: 147) +/.*\.net/vtrack$ +.*.net/vtrack$ +# .net/trck/ (easyprivacy.txt: 146) +/.*\.net/trck/ +.*.net/trck/ +# .net/t.gif? (easyprivacy.txt: 145) +/.*\.net/t\.gif\? +.*.net/t\.gif\? +# .net/px.js? (easyprivacy.txt: 144) +/.*\.net/px\.js\? +.*.net/px\.js\? +# .net/ping.php? (easyprivacy.txt: 143) +/.*\.net/ping\.php\? +.*.net/ping\.php\? +# .net/p.gif? (easyprivacy.txt: 142) +/.*\.net/p\.gif\? +.*.net/p\.gif\? +# .net/l.gif? (easyprivacy.txt: 141) +/.*\.net/l\.gif\? +.*.net/l\.gif\? +# .net/HG?hc=&hb= (easyprivacy.txt: 140) +/.*\.net/HG\?hc=&hb= +.*.net/HG\?hc=&hb= +# .net/c.gif? (easyprivacy.txt: 139) +/.*\.net/c\.gif\? +.*.net/c\.gif\? +# .net/1x1.gif? (easyprivacy.txt: 138) +/.*\.net/1x1\.gif\? +.*.net/1x1\.gif\? +# .net/0.gif? (easyprivacy.txt: 137) +/.*\.net/0\.gif\? +.*.net/0\.gif\? +# .me/geoip/ (easyprivacy.txt: 136) +/.*\.me/geoip/ +.*.me/geoip/ +# .jsp/?Log= (easyprivacy.txt: 135) +/.*\.jsp/\?Log= +.*.jsp/\?Log= +# .in/c.gif? (easyprivacy.txt: 134) +/.*\.in/c\.gif\? +.*.in/c\.gif\? +# .html?wpl= (easyprivacy.txt: 133) +/.*\.html\?wpl= +# .gov/stat? (easyprivacy.txt: 132) +/.*\.gov/stat\? +.*.gov/stat\? +# .GoogleAnalytics/ (easyprivacy.txt: 131) +/.*\.GoogleAnalytics/ +.*.GoogleAnalytics +# .googleanalytics.js (easyprivacy.txt: 130) +/.*\.googleanalytics\.js +.*.googleanalytics.js*. +# .gif?ad= (easyprivacy.txt: 128) +/.*\.gif\?ad= +# .gatracking.js (easyprivacy.txt: 127) +/.*\.gatracking\.js +.*.gatracking.js*. +# .gatracker. (easyprivacy.txt: 126) +/.*\.gatracker\. +.*.gatracker.*. +# .fr/z.gif? (easyprivacy.txt: 125) +/.*\.fr/z\.gif\? +.*.fr/z\.gif\? +# .eloqua.js (easyprivacy.txt: 124) +/.*\.eloqua\.js +.*.eloqua.js*. +# .do_tracking& (easyprivacy.txt: 123) +/.*\.do_tracking& +# .de/l.gif? (easyprivacy.txt: 122) +/.*\.de/l\.gif\? +.*.de/l\.gif\? +# .core.tracking-min- (easyprivacy.txt: 121) +/.*\.core\.tracking-min- +.*.core.tracking-min-*. +# .com/z.gif? (easyprivacy.txt: 120) +/.*\.com/z\.gif\? +.*.com/z\.gif\? +# .com/x0.gif? (easyprivacy.txt: 119) +/.*\.com/x0\.gif\? +.*.com/x0\.gif\? +# .com/x.gif? (easyprivacy.txt: 118) +/.*\.com/x\.gif\? +.*.com/x\.gif\? +# .com/www.gif? (easyprivacy.txt: 117) +/.*\.com/www\.gif\? +.*.com/www\.gif\? +# .com/w.gif? (easyprivacy.txt: 116) +/.*\.com/w\.gif\? +.*.com/w\.gif\? +# .com/vtrack| (easyprivacy.txt: 115) +/.*\.com/vtrack$ +.*.com/vtrack$ +# .com/vanity/? (easyprivacy.txt: 114) +/.*\.com/vanity/\? +.*.com/vanity/\? +# .com/v.gif? (easyprivacy.txt: 113) +/.*\.com/v\.gif\? +.*.com/v\.gif\? +# .com/u.gif? (easyprivacy.txt: 112) +/.*\.com/u\.gif\? +.*.com/u\.gif\? +# .com/traffic/?t=*&cb= (easyprivacy.txt: 111) +/.*\.com/traffic/\?t=.*&cb= +.*.com/traffic/\?t=.*&cb= +# .com/tracking? (easyprivacy.txt: 110) +/.*\.com/tracking\? +.*.com/tracking\? +# .com/tracker.jsp (easyprivacy.txt: 109) +/.*\.com/tracker\.jsp +.*.com/tracker\.jsp +# .com/tr.gif? (easyprivacy.txt: 107) +/.*\.com/tr\.gif\? +.*.com/tr\.gif\? +# .com/tp.php? (easyprivacy.txt: 106) +/.*\.com/tp\.php\? +.*.com/tp\.php\? +# .com/t.gif? (easyprivacy.txt: 105) +/.*\.com/t\.gif\? +.*.com/t\.gif\? +# .com/stats.aspx? (easyprivacy.txt: 104) +/.*\.com/stats\.aspx\? +.*.com/stats\.aspx\? +# .com/stats.ashx? (easyprivacy.txt: 103) +/.*\.com/stats\.ashx\? +.*.com/stats\.ashx\? +# .com/ss/*sessionId= (easyprivacy.txt: 102) +/.*\.com/ss/.*sessionId= +.*.com/ss/.*sessionId= +# .com/s/at?site (easyprivacy.txt: 101) +/.*\.com/s/at\?site +.*.com/s/at\?site +# .com/s.gif? (easyprivacy.txt: 100) +/.*\.com/s\.gif\? +.*.com/s\.gif\? +# .com/r.gif? (easyprivacy.txt: 99) +/.*\.com/r\.gif\? +.*.com/r\.gif\? +# .com/px.js? (easyprivacy.txt: 98) +/.*\.com/px\.js\? +.*.com/px\.js\? +# .com/pvlog? (easyprivacy.txt: 97) +/.*\.com/pvlog\? +.*.com/pvlog\? +# .com/pv.gif? (easyprivacy.txt: 96) +/.*\.com/pv\.gif\? +.*.com/pv\.gif\? +# .com/pagelogger/ (easyprivacy.txt: 95) +/.*\.com/pagelogger/ +.*.com/pagelogger/ +# .com/p.gif? (easyprivacy.txt: 94) +/.*\.com/p\.gif\? +.*.com/p\.gif\? +# .com/mm.gif? (easyprivacy.txt: 93) +/.*\.com/mm\.gif\? +.*.com/mm\.gif\? +# .com/log?type (easyprivacy.txt: 92) +/.*\.com/log\?type +.*.com/log\?type +# .com/log?srvc (easyprivacy.txt: 91) +/.*\.com/log\?srvc +.*.com/log\?srvc +# .com/log?event (easyprivacy.txt: 90) +/.*\.com/log\?event +.*.com/log\?event +# .com/log/? (easyprivacy.txt: 89) +/.*\.com/log/\? +.*.com/log/\? +# .com/js/ga.js (easyprivacy.txt: 88) +/.*\.com/js/ga\.js +.*.com/js/ga\.js +# .com/js/ga-*.js (easyprivacy.txt: 87) +/.*\.com/js/ga-.*\.js +.*.com/js/ga-.*\.js +# .com/i.gif? (easyprivacy.txt: 86) +/.*\.com/i\.gif\? +.*.com/i\.gif\? +# .com/hitlog? (easyprivacy.txt: 85) +/.*\.com/hitlog\? +.*.com/hitlog\? +# .com/HG? (easyprivacy.txt: 84) +/.*\.com/HG\? +.*.com/HG\? +# .com/geo_ip (easyprivacy.txt: 83) +/.*\.com/geo_ip +.*.com/geo_ip +# .com/ga.js? (easyprivacy.txt: 82) +/.*\.com/ga\.js\? +.*.com/ga\.js\? +# .com/ga.js; (easyprivacy.txt: 81) +/.*\.com/ga\.js; +.*.com/ga\.js; +# .com/ga-*.js (easyprivacy.txt: 80) +/.*\.com/ga-.*\.js +.*.com/ga-.*\.js +# .com/g.gif? (easyprivacy.txt: 79) +/.*\.com/g\.gif\? +.*.com/g\.gif\? +# .com/f.gif? (easyprivacy.txt: 78) +/.*\.com/f\.gif\? +.*.com/f\.gif\? +# .com/elt.gif? (easyprivacy.txt: 77) +/.*\.com/elt\.gif\? +.*.com/elt\.gif\? +# .com/e.gif? (easyprivacy.txt: 76) +/.*\.com/e\.gif\? +.*.com/e\.gif\? +# .com/dc.gif? (easyprivacy.txt: 75) +/.*\.com/dc\.gif\? +.*.com/dc\.gif\? +# .com/counter? (easyprivacy.txt: 74) +/.*\.com/counter\? +.*.com/counter\? +# .com/cm?tid (easyprivacy.txt: 73) +/.*\.com/cm\?tid +.*.com/cm\?tid +# .com/cm?ci= (easyprivacy.txt: 72) +/.*\.com/cm\?ci= +.*.com/cm\?ci= +# .com/c.gif? (easyprivacy.txt: 71) +/.*\.com/c\.gif\? +.*.com/c\.gif\? +# .com/blank.aspx? (easyprivacy.txt: 70) +/.*\.com/blank\.aspx\? +.*.com/blank\.aspx\? +# .com/b.gif? (easyprivacy.txt: 69) +/.*\.com/b\.gif\? +.*.com/b\.gif\? +# .com/analytics? (easyprivacy.txt: 68) +/.*\.com/analytics\? +.*.com/analytics\? +# .com/a.gif? (easyprivacy.txt: 66) +/.*\.com/a\.gif\? +.*.com/a\.gif\? +# .com/__kl.gif? (easyprivacy.txt: 65) +/.*\.com/__kl\.gif\? +.*.com/__kl\.gif\? +# .com/_.gif? (easyprivacy.txt: 64) +/.*\.com/_\.gif\? +.*.com/_\.gif\? +# .com/?livehit (easyprivacy.txt: 63) +/.*\.com/\?livehit +.*.com/\?livehit +# .com/3.gif? (easyprivacy.txt: 61) +/.*\.com/3\.gif\? +.*.com/3\.gif\? +# .com/2.gif? (easyprivacy.txt: 60) +/.*\.com/2\.gif\? +.*.com/2\.gif\? +# .com/1.gif? (easyprivacy.txt: 59) +/.*\.com/1\.gif\? +.*.com/1\.gif\? +# .com/0.gif? (easyprivacy.txt: 58) +/.*\.com/0\.gif\? +.*.com/0\.gif\? +# .com.com/redir?timestamp (easyprivacy.txt: 57) +/.*\.com\.com/redir\?timestamp +.*.com.com/redir\?timestamp +# .com.au/HG?hc= (easyprivacy.txt: 56) +/.*\.com\.au/HG\?hc= +.*.com.au/HG\?hc= +# .cn/z.gif? (easyprivacy.txt: 55) +/.*\.cn/z\.gif\? +.*.cn/z\.gif\? +# .cn/s.gif? (easyprivacy.txt: 54) +/.*\.cn/s\.gif\? +.*.cn/s\.gif\? +# .cn/r.gif? (easyprivacy.txt: 53) +/.*\.cn/r\.gif\? +.*.cn/r\.gif\? +# .cn/gs.gif? (easyprivacy.txt: 52) +/.*\.cn/gs\.gif\? +.*.cn/gs\.gif\? +# .cn/b.gif? (easyprivacy.txt: 51) +/.*\.cn/b\.gif\? +.*.cn/b\.gif\? +# .cn/a.gif? (easyprivacy.txt: 50) +/.*\.cn/a\.gif\? +.*.cn/a\.gif\? +# .cn/2.gif? (easyprivacy.txt: 49) +/.*\.cn/2\.gif\? +.*.cn/2\.gif\? +# .cn/1.gif? (easyprivacy.txt: 48) +/.*\.cn/1\.gif\? +.*.cn/1\.gif\? +# .cc/s.gif? (easyprivacy.txt: 47) +/.*\.cc/s\.gif\? +.*.cc/s\.gif\? +# .beacon.min.js (easyprivacy.txt: 46) +/.*\.beacon\.min\.js +.*.beacon.min.js*. +# .au/t.gif? (easyprivacy.txt: 45) +/.*\.au/t\.gif\? +.*.au/t\.gif\? +# .au/t.ashx? (easyprivacy.txt: 44) +/.*\.au/t\.ashx\? +.*.au/t\.ashx\? +# .au/c.gif? (easyprivacy.txt: 43) +/.*\.au/c\.gif\? +.*.au/c\.gif\? +# .au/1x1.gif? (easyprivacy.txt: 42) +/.*\.au/1x1\.gif\? +.*.au/1x1\.gif\? +# .at/t.gif? (easyprivacy.txt: 41) +/.*\.at/t\.gif\? +.*.at/t\.gif\? +# .asis?Log= (easyprivacy.txt: 40) +/.*\.asis\?Log= +# -xtcore.js (easyprivacy.txt: 39) +/.*-xtcore\.js +.*-xtcore.js*. +# -tracking.js? (easyprivacy.txt: 38) +/.*-tracking\.js\? +# -social-tracking. (easyprivacy.txt: 37) +/.*-social-tracking\. +.*-social-tracking.*. +# -seo-tracker. (easyprivacy.txt: 36) +/.*-seo-tracker\. +.*-seo-tracker.*. +# -scroll-tracker.js (easyprivacy.txt: 35) +/.*-scroll-tracker\.js +.*-scroll-tracker.js*. +# -page-analytics. (easyprivacy.txt: 34) +/.*-page-analytics\. +.*-page-analytics.*. +# -optimost- (easyprivacy.txt: 33) +/.*-optimost- +.*-optimost-*. +# -mediaplex_ (easyprivacy.txt: 32) +/.*-mediaplex_ +# -google-analytics/ (easyprivacy.txt: 30) +/.*-google-analytics/ +.*-google-analytics +# -google-analytics. (easyprivacy.txt: 29) +/.*-google-analytics\. +.*-google-analytics.*. +# -geoIP.js (easyprivacy.txt: 28) +/.*-geoIP\.js +.*-geoIP.js*. +# -ga-track. (easyprivacy.txt: 27) +/.*-ga-track\. +.*-ga-track.*. +# -criteo. (easyprivacy.txt: 26) +/.*-criteo\. +.*-criteo.*. +# -comscore. (easyprivacy.txt: 25) +/.*-comscore\. +.*-comscore.*. +# -ClickTale. (easyprivacy.txt: 24) +/.*-ClickTale\. +.*-ClickTale.*. +# -boomerang_ (easyprivacy.txt: 23) +/.*-boomerang_ +# -bluekai. (easyprivacy.txt: 22) +/.*-bluekai\. +.*-bluekai.*. +# -baynote. (easyprivacy.txt: 21) +/.*-baynote\. +.*-baynote.*. +# -analytics-tagserver- (easyprivacy.txt: 20) +/.*-analytics-tagserver- +.*-analytics-tagserver-*. +# -AdTracking. (easyprivacy.txt: 19) +/.*-AdTracking\. +.*-AdTracking.*. +# &trackingserver= (easyprivacy.txt: 18) +/.*&trackingserver= +# &pageReferrer= (easyprivacy.txt: 17) +/.*&pageReferrer= +# &ctxId=*&pubId=*&objId= (easyprivacy.txt: 16) +/.*&ctxId=.*&pubId=.*&objId= + +#ab2p-block-request-Aachijmosv-Cachijmosv +{+client-header-tagger{ab2p-block-request-Aachijmosv} \ + +server-header-tagger{ab2p-block-request-Cachijmosv} \ +} +# ||clck.yandex.ru^$~other (easyprivacy.txt: 7231) +.clck.yandex.ru + +#ab2p-block-request-Aaijsv-Caijsv +{+client-header-tagger{ab2p-block-request-Aaijsv} \ + +server-header-tagger{ab2p-block-request-Caijsv} \ +} +# ||rover.ebay.$image,object,script (easyprivacy.txt: 8753) +.rover.ebay.*. + +#ab2p-block-request-Aaiov-Caiov +{+client-header-tagger{ab2p-block-request-Aaiov} \ + +server-header-tagger{ab2p-block-request-Caiov} \ +} +TAG:^ab2p-block-request-Aaiov-Caiov$ + +#ab2p-block-request-Aaiov-Caiov-when-Rnt +{+client-header-tagger{ab2p-block-request-Aaiov-Caiov-when-Rnt} \ +} +# ||huluim.com/*&beaconevent$image,object-subrequest,~third-party (easyprivacy.txt: 8161) +.huluim.com/.*&beaconevent +# ||hulu.com/*&beaconevent$image,object-subrequest,~third-party (easyprivacy.txt: 8147) +.hulu.com/.*&beaconevent + +#ab2p-block-request-Aaov-Caov +{+client-header-tagger{ab2p-block-request-Aaov} \ + +server-header-tagger{ab2p-block-request-Caov} \ +} +TAG:^ab2p-block-request-Aaov-Caov$ +# ||count.vrs.sohu.com^$object-subrequest (easyprivacy.txt: 9823) +.count.vrs.sohu.com +# ||count.kandian.com^$object-subrequest (easyprivacy.txt: 9819) +.count.kandian.com +# ||myvideo.de/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9639) +.myvideo.de/dynamic/mingreport\.php +# ||myvideo.ch/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9638) +.myvideo.ch/dynamic/mingreport\.php +# ||myvideo.at/dynamic/mingreport.php$object-subrequest (easyprivacy.txt: 9637) +.myvideo.at/dynamic/mingreport\.php +# ||twitvid.com/api/tracking.php$object-subrequest (easyprivacy.txt: 9182) +.twitvid.com/api/tracking\.php +# ||tinypic.com/api.php?*&action=track$object-subrequest (easyprivacy.txt: 9056) +.tinypic.com/api\.php\?.*&action=track +# ||ibtimes.com/player/stats.swf$object-subrequest (easyprivacy.txt: 8176) +.ibtimes.com/player/stats\.swf +# ||dailymotion.com/logger/$object-subrequest (easyprivacy.txt: 7800) +.dailymotion.com/logger/ +# ||videoplaza.tv/proxy/tracker^$object-subrequest (easyprivacy.txt: 6686) +.videoplaza.tv/proxy/tracker[^\w%.-] +# ||videoplaza.com/proxy/distributor/$object-subrequest (easyprivacy.txt: 6685) +.videoplaza.com/proxy/distributor/ +# ||qlog.adap.tv^$object-subrequest (easyprivacy.txt: 6265) +.qlog.adap.tv +# ||oddcast.com/event.php?$object-subrequest (easyprivacy.txt: 6149) +.oddcast.com/event\.php\? +# ||log.adap.tv^$object-subrequest (easyprivacy.txt: 6015) +.log.adap.tv +# ||control.adap.tv^$object-subrequest (easyprivacy.txt: 5588) +.control.adap.tv +# ||visiblemeasures.com/swf/*/vmcdmplugin.swf?key*pixel$object-subrequest (easyprivacy.txt: 4349) +.visiblemeasures.com/swf/.*/vmcdmplugin\.swf\?key.*pixel +# /OmnitureTracking_$object-subrequest (easyprivacy.txt: 1511) +/(.*/)?OmnitureTracking_ + +#ab2p-block-request-Aaov-Caov-when-R46 +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R46} \ +} +# /pos?act=dur$object-subrequest,domain=tudou.com (easyprivacy.txt: 9795) +/(.*/)?pos\?act=dur + +#ab2p-block-request-Aaov-Caov-when-R49 +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-R49} \ +} +# ||wac.edgecastcdn.net^$object-subrequest,domain=vzaar.com (easyprivacy.txt: 6718) +.wac.edgecastcdn.net + +#ab2p-block-request-Aaov-Caov-when-Rt +{+client-header-tagger{ab2p-block-request-Aaov-Caov-when-Rt} \ +} +# ||visiblemeasures.com/swf/as3/as3sohandler.swf$object-subrequest,third-party (easyprivacy.txt: 4350) +.visiblemeasures.com/swf/as3/as3sohandler\.swf +# ||visiblemeasures.com/log?$object-subrequest,third-party (easyprivacy.txt: 4348) +.visiblemeasures.com/log\? +# ||quantserve.com^*^a=$object-subrequest,third-party (easyprivacy.txt: 3908) +.quantserve.com/.*[^\w%.-]a= +# ||quantserve.com^*.swf?$object-subrequest,third-party (easyprivacy.txt: 3907) +.quantserve.com/.*\.swf\? +# ||quantserve.com/pixel/$object-subrequest,third-party (easyprivacy.txt: 3905) +.quantserve.com/pixel/ +# ||od.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 3756) +.od.visiblemeasures.com +# ||l2.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 3552) +.l2.visiblemeasures.com +# ||audience.visiblemeasures.com^$object-subrequest,third-party (easyprivacy.txt: 2831) +.audience.visiblemeasures.com + +#ab2p-block-request-Aasv-Casv +{+client-header-tagger{ab2p-block-request-Aasv} \ + +server-header-tagger{ab2p-block-request-Casv} \ +} +# ||yimg.com^*/swfproxy-$object (easyprivacy.txt: 9386) +.yimg.com/.*/swfproxy- +# ||arstechnica.com^*/|$object (easyprivacy.txt: 7512) +.arstechnica.com/.*/$ +# ||arstechnica.com/|$object (easyprivacy.txt: 7510) +.arstechnica.com/$ +# ||arstechnica.com/*.ars$object (easyprivacy.txt: 7507) +.arstechnica.com/.*\.ars + +#ab2p-block-request-Ai-Ci +{+client-header-tagger{ab2p-block-request-Ai} \ + +server-header-tagger{ab2p-block-request-Ci} \ +} +TAG:^ab2p-block-request-Ai-Ci$ +# ||naver.com/PostView.nhn?$image (easyprivacy.txt: 10049) +.naver.com/PostView\.nhn\? +# ||zap.dw-world.de^$image (easyprivacy.txt: 9417) +.zap.dw-world.de +# ||yahoo.com/sig=$image (easyprivacy.txt: 9367) +.yahoo.com/sig= +# ||www.google.*/imghover?$image (easyprivacy.txt: 9344) +.www.google.*./(.*/)?imghover\? +# ||startpage.*/do/avt?$image (easyprivacy.txt: 8889) +.startpage.*./(.*/)?do/avt\? +# ||splurgy.com/bacon/*_ct.gif$image (easyprivacy.txt: 8881) +.splurgy.com/bacon/.*_ct\.gif +# ||slacker.com/beacon/page/$image (easyprivacy.txt: 8851) +.slacker.com/beacon/page/ +# ||resellerclub.com/helpdesk/visitor/index.php?$image (easyprivacy.txt: 8727) +.resellerclub.com/helpdesk/visitor/index\.php\? +# ||rbl.ms/spacer.gif?$image (easyprivacy.txt: 8690) +.rbl.ms/spacer\.gif\? +# ||pcmag.com/rview/$image (easyprivacy.txt: 8583) +.pcmag.com/rview/ +# ||overstock.com/dlp?cci=$image (easyprivacy.txt: 8565) +.overstock.com/dlp\?cci= +# ||overclock.net/p/$image (easyprivacy.txt: 8564) +.overclock.net/p/ +# ||noip.com/images/em.php?$image (easyprivacy.txt: 8510) +.noip.com/images/em\.php\? +# ||newsinc.com/players/report.xml?$image (easyprivacy.txt: 8491) +.newsinc.com/players/report\.xml\? +# ||netzero.net/account/event.do?$image (easyprivacy.txt: 8480) +.netzero.net/account/event\.do\? +# ||mailings.gmx.net/action/view/$image (easyprivacy.txt: 8348) +.mailings.gmx.net/action/view/ +# ||linkbucks.com/clean.aspx?task=record$image (easyprivacy.txt: 8301) +.linkbucks.com/clean\.aspx\?task=record +# ||juno.com/start/javascript.do?message=$image (easyprivacy.txt: 8259) +.juno.com/start/javascript\.do\?message= +# ||ixquick.*/do/avt?$image (easyprivacy.txt: 8235) +.ixquick.*./(.*/)?do/avt\? +# ||hexus.net/trk/$image (easyprivacy.txt: 8118) +.hexus.net/trk/ +# ||heapanalytics.com/h?$image (easyprivacy.txt: 8113) +.heapanalytics.com/h\? +# ||go.theregister.com^$image (easyprivacy.txt: 8077) +.go.theregister.com +# ||freelotto.com/offer.asp?offer=$image (easyprivacy.txt: 7999) +.freelotto.com/offer\.asp\?offer= +# ||encrypted.google.*/url?$image (easyprivacy.txt: 7891) +.encrypted.google.*./(.*/)?url\? +# ||encrypted.google.*/imghover?$image (easyprivacy.txt: 7890) +.encrypted.google.*./(.*/)?imghover\? +# ||emv3.com/HO?$image (easyprivacy.txt: 7888) +.emv3.com/HO\? +# ||edutrek.com/wgsltrk.php?$image (easyprivacy.txt: 7873) +.edutrek.com/wgsltrk\.php\? +# ||ebayobjects.com/*;dc_pixel_url=$image (easyprivacy.txt: 7864) +.ebayobjects.com/.*;dc_pixel_url= +# ||veeseo.com^*/view/$image (easyprivacy.txt: 6936) +.veeseo.com/.*/view/ +# ||yimg.com^*/l?ig=$image (easyprivacy.txt: 6780) +.yimg.com/.*/l\?ig= +# ||trove.com^*&uid=$image (easyprivacy.txt: 6647) +.trove.com/.*&uid= +# ||socialreader.com^*?event=email_open^$image (easyprivacy.txt: 6360) +.socialreader.com/.*\?event=email_open[^\w%.-] +# ||secureprovide1.com/*=tracking$image (easyprivacy.txt: 6336) +.secureprovide1.com/.*=tracking +# ||s5labs.io/common/i?impressionId$image (easyprivacy.txt: 6320) +.s5labs.io/common/i\?impressionId +# ||r.ypcdn.com^*/rtd?ptid$image (easyprivacy.txt: 6274) +.r.ypcdn.com/.*/rtd\?ptid +# ||pcmag.com/rvb/$image (easyprivacy.txt: 6185) +.pcmag.com/rvb/ +# ||linkedin.com/emimp/$image (easyprivacy.txt: 5996) +.linkedin.com/emimp/ +# ||k7-labelgroup.com/g.html?uid=$image (easyprivacy.txt: 5961) +.k7-labelgroup.com/g\.html\?uid= +# ||imgfarm.com/images/nocache/tr/*.gif?$image (easyprivacy.txt: 5918) +.imgfarm.com/images/nocache/tr/.*\.gif\? +# ||getkudos.me/a?$image (easyprivacy.txt: 5851) +.getkudos.me/a\? +# ||evt.collarity.com^$image (easyprivacy.txt: 5788) +.evt.collarity.com +# ||email-edg.paypal.com/o/$image (easyprivacy.txt: 5759) +.email-edg.paypal.com/o/ +# ||elb.amazonaws.com/?page=$image (easyprivacy.txt: 5754) +.elb.amazonaws.com/\?page= +# ||ebayrtm.com/rtm?RtmCmd&a=img&$image (easyprivacy.txt: 5744) +.ebayrtm.com/rtm\?RtmCmd&a=img& +# ||d.rcmd.jp^$image (easyprivacy.txt: 5634) +.d.rcmd.jp +# ||aweber.com/form/displays.htm?$image (easyprivacy.txt: 5418) +.aweber.com/form/displays\.htm\? +# ||assoc-amazon.*^e/ir?t=$image (easyprivacy.txt: 5404) +.assoc-amazon.*./(.*[^\w%.-])?e/ir\?t= +# ||amazon.*/gp/r.html?R=$image (easyprivacy.txt: 5296) +.amazon.*./(.*/)?gp/r\.html\?R= +# ||ads.bridgetrack.com^$image (easyprivacy.txt: 5264) +.ads.bridgetrack.com +# ||6waves.com/edm.php?uid=$image (easyprivacy.txt: 5220) +.6waves.com/edm\.php\?uid= +# /xboxcom_pv?c=$image (easyprivacy.txt: 2493) +/(.*/)?xboxcom_pv\?c= +# /wf/open?upn=$image (easyprivacy.txt: 2443) +/(.*/)?wf/open\?upn= +# /visitor/index.php?*referrer$image (easyprivacy.txt: 2370) +/(.*/)?visitor/index\.php\?.*referrer +# /track/*?rnd=0.$image (easyprivacy.txt: 2091) +/(.*/)?track/.*\?rnd=0\. +# /stats.cgi$image (easyprivacy.txt: 1972) +/(.*/)?stats\.cgi +stats.cgi*. +# /readReceipt/notify/?img=$image (easyprivacy.txt: 1731) +/(.*/)?readReceipt/notify/\?img= +# /pub/as?_ri_=$image (easyprivacy.txt: 1689) +/(.*/)?pub/as\?_ri_= +# /prime-email-metrics/*$image (easyprivacy.txt: 1678) +/(.*/)?prime-email-metrics/.* +# /omniture.do;$image (easyprivacy.txt: 1508) +/(.*/)?omniture\.do; +# /generate_204$image (easyprivacy.txt: 985) +/(.*/)?generate_204 +# /ga?utmac=$image (easyprivacy.txt: 930) +/(.*/)?ga\?utmac= +# /ga2.aspx?utmac=$image (easyprivacy.txt: 928) +/(.*/)?ga2\.aspx\?utmac= +# /ga.php?$image (easyprivacy.txt: 922) +/(.*/)?ga\.php\? +# /ga.jsp?$image (easyprivacy.txt: 921) +/(.*/)?ga\.jsp\? +# /EmailOpenTrackLog.aspx?$image (easyprivacy.txt: 824) +/(.*/)?EmailOpenTrackLog\.aspx\? +# /cdn-cgi/ping?$image (easyprivacy.txt: 515) +/(.*/)?cdn-cgi/ping\? +# /amdhfp/t.do?id$image (easyprivacy.txt: 299) +/(.*/)?amdhfp/t\.do\?id +# /amdhfp/a.do?param$image (easyprivacy.txt: 298) +/(.*/)?amdhfp/a\.do\?param +# /__ssobj/sync?$image (easyprivacy.txt: 194) +/(.*/)?__ssobj/sync\? +# //feedproxy.*/~r/*$image (easyprivacy.txt: 181) +feedproxy.*./(.*/)?~r/.* + +#ab2p-block-request-Ai-Ci-when-R37 +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-R37} \ +} +# ||198.105.253.2/lvl3/$image,domain=searchguide.level3.com (easyprivacy.txt: 7358) +.198.105.253.2/lvl3/ + +#ab2p-block-request-Ai-Ci-when-Rt +{+client-header-tagger{ab2p-block-request-Ai-Ci-when-Rt} \ +} +# ||g2a-com.newsletter.com.pl^$image,third-party (easyprivacy.txt: 8016) +.g2a-com.newsletter.com.pl +# ||stats.screenresolution.org/get.php$image,third-party (easyprivacy.txt: 6430) +.stats.screenresolution.org/get\.php +# ||slidedeck.com^$image,third-party (easyprivacy.txt: 6355) +.slidedeck.com +# ||newsletters.nationalgeographic.com^$image,third-party (easyprivacy.txt: 6135) +.newsletters.nationalgeographic.com +# ||newsletters.infoworld.com/db/$image,third-party (easyprivacy.txt: 6134) +.newsletters.infoworld.com/db/ +# ||m30w.net/engine/$image,third-party (easyprivacy.txt: 6049) +.m30w.net/engine/ +# ||linkedin.com/lite/rum-track?$image,third-party (easyprivacy.txt: 5997) +.linkedin.com/lite/rum-track\? +# ||etc.grab.com^$image,third-party (easyprivacy.txt: 5773) +.etc.grab.com +# ||dreamhost.com/*.cgi?$image,third-party (easyprivacy.txt: 5731) +.dreamhost.com/.*\.cgi\? +# ||click1.online.vulture.com^$image,third-party (easyprivacy.txt: 5528) +.click1.online.vulture.com +# ||doubleclick.net^$image,third-party (easyprivacy.txt: 3154) +.doubleclick.net + +#ab2p-block-request-Aij-Cij +{+client-header-tagger{ab2p-block-request-Aij} \ + +server-header-tagger{ab2p-block-request-Cij} \ +} +# ||stargate-planet.de^*counter*/c$image,script (easyprivacy.txt: 9691) +.stargate-planet.de/.*counter.*/c +# /ivw/SP/*$image,script (easyprivacy.txt: 1199) +/(.*/)?ivw/SP/.* +# /gen_204?$image,script (easyprivacy.txt: 984) +/(.*/)?gen_204\? +# /c?siteID=$image,script (easyprivacy.txt: 508) +/(.*/)?c\?siteID= +# .com/?epl=$image,script (easyprivacy.txt: 62) +/.*\.com/\?epl= +.*.com/\?epl= + +#ab2p-block-request-Aj-Cj +{+client-header-tagger{ab2p-block-request-Aj} \ + +server-header-tagger{ab2p-block-request-Cj} \ +} +TAG:^ab2p-block-request-Aj-Cj$ +# ||bild.de^*-linktracking^$script (easyprivacy.txt: 9517) +.bild.de/.*-linktracking[^\w%.-] +# ||ssl-images-amazon.com^*/wcs-help-omniture-$script (easyprivacy.txt: 9482) +.ssl-images-amazon.com/.*/wcs-help-omniture- +# ||riverisland.com^*/s_code.min.omniture_$script (easyprivacy.txt: 9477) +.riverisland.com/.*/s_code\.min\.omniture_ +# ||r7.com/scode/s_code_portal_$script (easyprivacy.txt: 9475) +.r7.com/scode/s_code_portal_ +# ||images-amazon.com/images/*/wcs-help-omniture/wcs-help-omniture-$script (easyprivacy.txt: 9456) +.images-amazon.com/images/.*/wcs-help-omniture/wcs-help-omniture- +# ||www.google.*/imgevent?$script (easyprivacy.txt: 9343) +.www.google.*./(.*/)?imgevent\? +# ||ti.com/assets/js/headerfooter/$script (easyprivacy.txt: 9048) +.ti.com/assets/js/headerfooter/ +# ||target.com/ci/$script (easyprivacy.txt: 9004) +.target.com/ci/ +# ||reuters.com/pulse/$script (easyprivacy.txt: 8730) +.reuters.com/pulse/ +# ||olark.com/nrpc/c?c=create$script (easyprivacy.txt: 8540) +.olark.com/nrpc/c\?c=create +# ||officedepot.com/at/rules_*.js$script (easyprivacy.txt: 8534) +.officedepot.com/at/rules_.*\.js +# ||nytimes.com/?url*&referrer$script (easyprivacy.txt: 8525) +.nytimes.com/\?url.*&referrer +# ||media-imdb.com/images/*/imdbads/js/beacon-$script (easyprivacy.txt: 8365) +.media-imdb.com/images/.*/imdbads/js/beacon- +# ||images-amazon.com^*/clog/clog-platform*.js$script (easyprivacy.txt: 8187) +.images-amazon.com/.*/clog/clog-platform.*\.js +# ||google.com/support/webmasters/api/metrics?$script (easyprivacy.txt: 8091) +.google.com/support/webmasters/api/metrics\? +# ||foodcouture.net/public_html/ra/script.php$script (easyprivacy.txt: 7978) +.foodcouture.net/public_html/ra/script\.php +# ||extremetech.com/sac/mostclicked/$script (easyprivacy.txt: 7925) +.extremetech.com/sac/mostclicked/ +# ||encrypted.google.*/imgevent?$script (easyprivacy.txt: 7889) +.encrypted.google.*./(.*/)?imgevent\? +# ||counter.csdn.net^$script (easyprivacy.txt: 7023) +.counter.csdn.net +# ||pianomedia.biz/uid/$script (easyprivacy.txt: 6197) +.pianomedia.biz/uid/ +# ||msecnd.net/jscripts/HA-$script (easyprivacy.txt: 6109) +.msecnd.net/jscripts/HA- +# ||ebaystatic.com^*/rover_$script (easyprivacy.txt: 5745) +.ebaystatic.com/.*/rover_ +# ||disqus.com/event.js?$script (easyprivacy.txt: 5719) +.disqus.com/event\.js\? +# ||cdn.pubexchange.com/modules/partner/$script (easyprivacy.txt: 5501) +.cdn.pubexchange.com/modules/partner/ +# /xtclicks-$script (easyprivacy.txt: 2506) +/(.*/)?xtclicks- +xtclicks-*. +# /webabacus-$script (easyprivacy.txt: 2403) +/(.*/)?webabacus- +webabacus-*. +# /static-tracking/*$script (easyprivacy.txt: 1960) +/(.*/)?static-tracking/.* +# /optimizely/*$script (easyprivacy.txt: 1524) +/(.*/)?optimizely/.* +# /nielsenscv53.$script (easyprivacy.txt: 1478) +/(.*/)?nielsenscv53\. +nielsenscv53.*. +# /netmind-$script (easyprivacy.txt: 1453) +/(.*/)?netmind- +netmind-*. +# /ktrace/ktrace$script (easyprivacy.txt: 1259) +/(.*/)?ktrace/ktrace +# /javascript/ci/*landing.js$script (easyprivacy.txt: 1208) +/(.*/)?javascript/ci/.*landing\.js +# /gomez/*$script (easyprivacy.txt: 1016) +/(.*/)?gomez/.* +# /flcounter/*$script (easyprivacy.txt: 884) +/(.*/)?flcounter/.* +# /emos2-$script (easyprivacy.txt: 826) +/(.*/)?emos2- +emos2-*. +# /elqcfg-$script (easyprivacy.txt: 817) +/(.*/)?elqcfg- +elqcfg-*. +# /certona_$script (easyprivacy.txt: 528) +/(.*/)?certona_ +# /baynote-$script (easyprivacy.txt: 438) +/(.*/)?baynote- +baynote-*. +# /amplitude-*.js$script (easyprivacy.txt: 300) +/(.*/)?amplitude-.*\.js +amplitude-*./.*\.js +amplitude-*.js*. +# /additional.php?res_width=$script (easyprivacy.txt: 228) +/(.*/)?additional\.php\?res_width= +# /?dm=*&blogid=$script (easyprivacy.txt: 190) +/(.*/)?\?dm=.*&blogid= +# -google-tag-manager/$script (easyprivacy.txt: 31) +/.*-google-tag-manager/ +.*-google-tag-manager + +#ab2p-block-request-Aj-Cj-when-R8 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-R8} \ +} +# ||rackcdn.com^$script,domain=buysubscriptions.com|cbsnews.com|cbssports.com|cnet.com|dailystar.co.uk|express.co.uk|gamerant.com|gamespot.com|inyt.com|metrolyrics.com|rotoworld.com|sh.st|thesun.co.uk|thesundaytimes.co.uk|thetimes.co.uk|zdnet.com (easyprivacy.txt: 6280) +.rackcdn.com + +#ab2p-block-request-Aj-Cj-when-Rn75 +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-Rn75} \ +} +# /piwik.$script,domain=~piwik.org (easyprivacy.txt: 1611) +/(.*/)?piwik\. +piwik.*. + +#ab2p-block-request-Aj-Cj-when-Rt +{+client-header-tagger{ab2p-block-request-Aj-Cj-when-Rt} \ +} +# ||addthis.com/red/$script,third-party (easyprivacy.txt: 5253) +.addthis.com/red/ +# ||netaffiliation.com^$script,third-party (easyprivacy.txt: 3722) +.netaffiliation.com +# .com/analytics.js?_t=$script,third-party (easyprivacy.txt: 67) +/.*\.com/analytics\.js\?_t= +.*.com/analytics\.js\?_t= + +#ab2p-block-request-Anahmov-Cnahmov-Xx +{+client-header-tagger{ab2p-block-request-Anahmov} \ + +server-header-tagger{ab2p-block-request-Cnahmov} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +TAG:^ab2p-block-request-Anahmov-Cnahmov-Xx$ + +#ab2p-block-request-Anahmov-Cnahmov-Xx-when-Rt +{+client-header-tagger{ab2p-block-request-Anahmov-Cnahmov-Xx-when-Rt} \ +} +# ||quantserve.com^$~object-subrequest,third-party (easyprivacy.txt: 3906) +.quantserve.com + +#ab2p-block-request-Anaov-Cnaov-Xx +{+client-header-tagger{ab2p-block-request-Anaov} \ + +server-header-tagger{ab2p-block-request-Cnaov} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +# ||b.photobucket.com^$~object-subrequest (easyprivacy.txt: 7558) +.b.photobucket.com +# ||fliqz.com/metrics/$~object-subrequest (easyprivacy.txt: 5813) +.fliqz.com/metrics/ + +#ab2p-block-request-Anasv-Cnasv-Xx +{+client-header-tagger{ab2p-block-request-Anasv} \ + +server-header-tagger{ab2p-block-request-Cnasv} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +# .com/track?$~object (easyprivacy.txt: 108) +/.*\.com/track\? +.*.com/track\? + +#ab2p-block-request-Anhim-Cnhim-Xx +{+client-header-tagger{ab2p-block-request-Anhim} \ + +server-header-tagger{ab2p-block-request-Cnhim} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +TAG:^ab2p-block-request-Anhim-Cnhim-Xx$ + +#ab2p-block-request-Anhim-Cnhim-Xx-when-Rt +{+client-header-tagger{ab2p-block-request-Anhim-Cnhim-Xx-when-Rt} \ +} +# ||bestcontactform.com^$~image,third-party (easyprivacy.txt: 2872) +.bestcontactform.com + +#ab2p-block-request-Anhjm-Cnhjm-Xx +{+client-header-tagger{ab2p-block-request-Anhjm} \ + +server-header-tagger{ab2p-block-request-Cnhjm} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +TAG:^ab2p-block-request-Anhjm-Cnhjm-Xx$ + +#ab2p-block-request-Anhjm-Cnhjm-Xx-when-Rt +{+client-header-tagger{ab2p-block-request-Anhjm-Cnhjm-Xx-when-Rt} \ +} +# ||wipe.de^$~script,third-party (easyprivacy.txt: 4773) +.wipe.de + +#ab2p-block-request-Anhm-Cnhm +{+client-header-tagger{ab2p-block-request-Anhm} \ + +server-header-tagger{ab2p-block-request-Cnhm} \ +} +TAG:^ab2p-block-request-Anhm-Cnhm$ + +#ab2p-block-request-Anhm-Cnhm-Xx +{+client-header-tagger{ab2p-block-request-Anhm} \ + +server-header-tagger{ab2p-block-request-Cnhm} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +# ||unstat.baidu.com^$~subdocument (easyprivacy.txt: 9919) +.unstat.baidu.com +# /webtracking/*$~subdocument (easyprivacy.txt: 2438) +/(.*/)?webtracking/.* + +#ab2p-block-request-Anhm-Cnhm-when-R86t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-R86t} \ +} +# ||86.63.194.248/js/measure.js$third-party,domain=feedcat.net (easyprivacy.txt: 7373) +.86.63.194.248/js/measure\.js + +#ab2p-block-request-Anhm-Cnhm-when-Rn87t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn87t} \ +} +# ||95.211.106.41^$third-party,domain=~538group.ip (easyprivacy.txt: 7073) +.95.211.106.41 + +#ab2p-block-request-Anhm-Cnhm-when-Rn88t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn88t} \ +} +# ||74.117.176.217/trf/track.php?$third-party,domain=~adult.sites.ip (easyprivacy.txt: 5221) +.74.117.176.217/trf/track\.php\? + +#ab2p-block-request-Anhm-Cnhm-when-Rn89t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn89t} \ +} +# ||79.125.117.123^$third-party,domain=~amazon.cdn.ip.seen.on.cheapflight (easyprivacy.txt: 2711) +.79.125.117.123 + +#ab2p-block-request-Anhm-Cnhm-when-Rn90t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn90t} \ +} +# ||93.93.53.198^$third-party,domain=~awempire.ip (easyprivacy.txt: 5223) +.93.93.53.198 + +#ab2p-block-request-Anhm-Cnhm-when-Rn91t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn91t} \ +} +# ||180.76.2.18^$third-party,domain=~baidu.ip (easyprivacy.txt: 4830) +.180.76.2.18 + +#ab2p-block-request-Anhm-Cnhm-when-Rn92t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn92t} \ +} +# ||62.219.24.238^$third-party,domain=~cast-tv.com.ip (easyprivacy.txt: 5219) +.62.219.24.238 + +#ab2p-block-request-Anhm-Cnhm-when-Rn93t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn93t} \ +} +# ||209.15.236.80^$third-party,domain=~crosspixelmedia.ip (easyprivacy.txt: 5205) +.209.15.236.80 + +#ab2p-block-request-Anhm-Cnhm-when-Rn94t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn94t} \ +} +# ||188.40.142.44/track.js$third-party,domain=~dropped.pl.ip (easyprivacy.txt: 5198) +.188.40.142.44/track\.js + +#ab2p-block-request-Anhm-Cnhm-when-Rn95t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn95t} \ +} +# ||216.18.184.18^$third-party,domain=~etahub.com.ip (easyprivacy.txt: 2690) +.216.18.184.18 + +#ab2p-block-request-Anhm-Cnhm-when-Rn96t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn96t} \ +} +# ||209.20.84.187/blank.gif?$third-party,domain=~gatehousenewsservice.com.ip (easyprivacy.txt: 5206) +.209.20.84.187/blank\.gif\? + +#ab2p-block-request-Anhm-Cnhm-when-Rn97t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn97t} \ +} +# ||174.37.54.170^$third-party,domain=~informer.com.ip (easyprivacy.txt: 5194) +.174.37.54.170 +# ||208.88.226.75^$third-party,domain=~informer.com.ip (easyprivacy.txt: 2688) +.208.88.226.75 + +#ab2p-block-request-Anhm-Cnhm-when-Rn98t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn98t} \ +} +# ||212.95.32.75^$third-party,domain=~ipcounter.de.ip (easyprivacy.txt: 4493) +.212.95.32.75 + +#ab2p-block-request-Anhm-Cnhm-when-Rn99t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn99t} \ +} +# ||keen.io^$third-party,domain=~keen.github.io|~keen.io (easyprivacy.txt: 3533) +.keen.io + +#ab2p-block-request-Anhm-Cnhm-when-Rn100t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn100t} \ +} +# ||metrigo.com^$third-party,domain=~metrigo.de (easyprivacy.txt: 4649) +.metrigo.com + +#ab2p-block-request-Anhm-Cnhm-when-Rn101t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn101t} \ +} +# ||23.23.22.172/ping/$third-party,domain=~newjerseynewsroom.com.ip (easyprivacy.txt: 5209) +.23.23.22.172/ping/ + +#ab2p-block-request-Anhm-Cnhm-when-Rn102t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn102t} \ +} +# ||58.68.146.44:8000^$third-party,domain=~peoplesdaily.cn.ip (easyprivacy.txt: 5216) +.58.68.146.44:8000 + +#ab2p-block-request-Anhm-Cnhm-when-Rn103t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn103t} \ +} +# ||195.177.242.237^$third-party,domain=~sat24.com.ip (easyprivacy.txt: 5199) +.195.177.242.237 + +#ab2p-block-request-Anhm-Cnhm-when-Rn104t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn104t} \ +} +# ||61.129.118.83^$third-party,domain=~shanghaidaily.cn.ip (easyprivacy.txt: 5218) +.61.129.118.83 + +#ab2p-block-request-Anhm-Cnhm-when-Rn105t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn105t} \ +} +# ||204.236.243.21/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5203) +.204.236.243.21/small\.gif\? +# ||204.236.233.138/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5202) +.204.236.233.138/tracker/ +# ||184.73.199.44/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5196) +.184.73.199.44/tracker/ +# ||184.73.199.40/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5195) +.184.73.199.40/tracker/ +# ||174.129.98.240/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5193) +.174.129.98.240/small\.gif\? +# ||174.129.88.189/partner.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5192) +.174.129.88.189/partner\.gif\? +# ||174.129.6.226/tracker/$third-party,domain=~skytide.ip (easyprivacy.txt: 5191) +.174.129.6.226/tracker/ +# ||174.129.135.197/partner.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5190) +.174.129.135.197/partner\.gif\? +# ||174.129.112.186/small.gif?$third-party,domain=~skytide.ip (easyprivacy.txt: 5189) +.174.129.112.186/small\.gif\? + +#ab2p-block-request-Anhm-Cnhm-when-Rn106t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn106t} \ +} +# ||193.197.158.209^$third-party,domain=~statistik.lubw.baden-wuerttemberg.de.ip (easyprivacy.txt: 4492) +.193.197.158.209 + +#ab2p-block-request-Anhm-Cnhm-when-Rn107t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn107t} \ +} +# ||195.182.58.105/statistics/$third-party,domain=~stream5.tv.ip (easyprivacy.txt: 5200) +.195.182.58.105/statistics/ + +#ab2p-block-request-Anhm-Cnhm-when-Rn108t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn108t} \ +} +# ||107.20.91.54/partner.gif?$third-party,domain=~thedailybeast.com.ip (easyprivacy.txt: 5185) +.107.20.91.54/partner\.gif\? + +#ab2p-block-request-Anhm-Cnhm-when-Rn109t +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rn109t} \ +} +# ||50.16.191.59^$third-party,domain=~tritondigital.net.ip (easyprivacy.txt: 5212) +.50.16.191.59 +# ||23.20.0.197^$third-party,domain=~tritondigital.net.ip (easyprivacy.txt: 5208) +.23.20.0.197 + +#ab2p-block-request-Anhm-Cnhm-when-Rt +{+client-header-tagger{ab2p-block-request-Anhm-Cnhm-when-Rt} \ +} +# ||multicounter.de^$third-party (easyprivacy.txt: 9635) +.multicounter.de +# ||vizzit.se^$third-party (easyprivacy.txt: 7344) +.vizzit.se +# ||aftonbladet.se/blogportal/view/statistics?$third-party (easyprivacy.txt: 7339) +.aftonbladet.se/blogportal/view/statistics\? +# ||leadzu.com^$third-party (easyprivacy.txt: 7331) +.leadzu.com +# ||webtrack.biz^$third-party (easyprivacy.txt: 7310) +.webtrack.biz +# ||sepyra.com^$third-party (easyprivacy.txt: 7286) +.sepyra.com +# ||mobtop.ru/c/$third-party (easyprivacy.txt: 7262) +.mobtop.ru/c/ +# ||hubrus.com^$third-party (easyprivacy.txt: 7251) +.hubrus.com +# ||7host.ru/tr/*?r=$third-party (easyprivacy.txt: 7220) +.7host.ru/tr/.*\?r= +# ||t5.ro/static/$third-party (easyprivacy.txt: 7216) +.t5.ro/static/ +# ||lomadee.com/loc/$third-party (easyprivacy.txt: 7209) +.lomadee.com/loc/ +# ||top.dkd.lt^$third-party (easyprivacy.txt: 7193) +.top.dkd.lt +# ||top.dating.lt^$third-party (easyprivacy.txt: 7192) +.top.dating.lt +# ||top.chebra.lt^$third-party (easyprivacy.txt: 7191) +.top.chebra.lt +# ||webtracker.jp^$third-party (easyprivacy.txt: 7179) +.webtracker.jp +# ||userdive.com^$third-party (easyprivacy.txt: 7178) +.userdive.com +# ||imgstat.ameba.jp^$third-party (easyprivacy.txt: 7170) +.imgstat.ameba.jp +# ||clickanalyzer.jp^$third-party (easyprivacy.txt: 7168) +.clickanalyzer.jp +# ||fcstats.altervista.org^$third-party (easyprivacy.txt: 7122) +.fcstats.altervista.org +# ||counter.top.ge^$third-party (easyprivacy.txt: 7088) +.counter.top.ge +# ||inpref.s3.amazonaws.com^$third-party (easyprivacy.txt: 7085) +.inpref.s3.amazonaws.com +# ||counter.zone.ee^$third-party (easyprivacy.txt: 7082) +.counter.zone.ee +# ||hottraffic.nl^$third-party (easyprivacy.txt: 7078) +.hottraffic.nl +# ||wee.dk/modules/$third-party (easyprivacy.txt: 7070) +.wee.dk/modules/ +# ||counter.nope.dk^$third-party (easyprivacy.txt: 7066) +.counter.nope.dk +# ||stat.ringier.cz^$third-party (easyprivacy.txt: 7061) +.stat.ringier.cz +# ||mlt01.com/cmp.htm$third-party (easyprivacy.txt: 7037) +.mlt01.com/cmp\.htm +# ||look.urs.tw^$third-party (easyprivacy.txt: 7036) +.look.urs.tw +# ||dw.cbsi.com.cn^$third-party (easyprivacy.txt: 7028) +.dw.cbsi.com.cn +# ||css.aliyun.com^$third-party (easyprivacy.txt: 7027) +.css.aliyun.com +# ||csbew.com^$third-party (easyprivacy.txt: 7025) +.csbew.com +# ||cms.grandcloud.cn^$third-party (easyprivacy.txt: 7021) +.cms.grandcloud.cn +# ||cdn.hiido.cn^$third-party (easyprivacy.txt: 7017) +.cdn.hiido.cn +# ||zebestof.com^$third-party (easyprivacy.txt: 6996) +.zebestof.com +# ||wifeo.com/compteurs/$third-party (easyprivacy.txt: 6994) +.wifeo.com/compteurs/ +# ||webtutoriaux.com/services/compteur-visiteurs/index.php?$third-party (easyprivacy.txt: 6993) +.webtutoriaux.com/services/compteur-visiteurs/index\.php\? +# ||track.byzon.swelen.net^$third-party (easyprivacy.txt: 6985) +.track.byzon.swelen.net +# ||t.planvip.fr^$third-party (easyprivacy.txt: 6983) +.t.planvip.fr +# ||service-webmaster.fr/cpt-visites/$third-party (easyprivacy.txt: 6980) +.service-webmaster.fr/cpt-visites/ +# ||piximedia.com^$third-party (easyprivacy.txt: 6978) +.piximedia.com +# ||live-medias.net/button.php?$third-party (easyprivacy.txt: 6971) +.live-medias.net/button\.php\? +# ||email-reflex.com^$third-party (easyprivacy.txt: 6966) +.email-reflex.com +# ||e.funnymel.com^$third-party (easyprivacy.txt: 6965) +.e.funnymel.com +# ||e-pagerank.fr/bouton.gif?$third-party (easyprivacy.txt: 6964) +.e-pagerank.fr/bouton\.gif\? +# ||calotag.com^$third-party (easyprivacy.txt: 6960) +.calotag.com +# ||blogrankings.com/img_$third-party (easyprivacy.txt: 6958) +.blogrankings.com/img_ +# ||blogoutils.com/online-$third-party (easyprivacy.txt: 6957) +.blogoutils.com/online- +# ||bbtrack.net^$third-party (easyprivacy.txt: 6956) +.bbtrack.net +# ||affiliation.planethoster.info^$third-party (easyprivacy.txt: 6953) +.affiliation.planethoster.info +# ||wieistmeineip.de/ip-address/$third-party (easyprivacy.txt: 6942) +.wieistmeineip.de/ip-address/ +# ||webstatistik.odav.de^$third-party (easyprivacy.txt: 6941) +.webstatistik.odav.de +# ||stats2.algo.at^$third-party (easyprivacy.txt: 6905) +.stats2.algo.at +# ||stats.nekapuzer.at^$third-party (easyprivacy.txt: 6902) +.stats.nekapuzer.at +# ||statistik.motorpresse.de^$third-party (easyprivacy.txt: 6893) +.statistik.motorpresse.de +# ||retresco.de^*/stats/$third-party (easyprivacy.txt: 6881) +.retresco.de/.*/stats/ +# ||mehrwertdienstekompetenz.de/cp/$third-party (easyprivacy.txt: 6856) +.mehrwertdienstekompetenz.de/cp/ +# ||insene.de/tag/$third-party (easyprivacy.txt: 6840) +.insene.de/tag/ +# ||info.elba.at^$third-party (easyprivacy.txt: 6839) +.info.elba.at +# ||fc.webmasterpro.de^$third-party (easyprivacy.txt: 6826) +.fc.webmasterpro.de +# ||events.kaloo.ga^$third-party (easyprivacy.txt: 6823) +.events.kaloo.ga +# ||ctr.nmg.de^$third-party (easyprivacy.txt: 6820) +.ctr.nmg.de +# ||analytics.loop-cloud.de^$third-party (easyprivacy.txt: 6797) +.analytics.loop-cloud.de +# ||analytics.cnd-motionmedia.de^$third-party (easyprivacy.txt: 6795) +.analytics.cnd-motionmedia.de +# ||adm24.de/hp_counter/$third-party (easyprivacy.txt: 6791) +.adm24.de/hp_counter/ +# ||yellowpages.com^*.gif?tid$third-party (easyprivacy.txt: 6777) +.yellowpages.com/.*\.gif\?tid +# ||yapi.awe.sm^$third-party (easyprivacy.txt: 6774) +.yapi.awe.sm +# ||wsf.com/tracking/$third-party (easyprivacy.txt: 6768) +.wsf.com/tracking/ +# ||worldssl.net/reporting.js$third-party (easyprivacy.txt: 6763) +.worldssl.net/reporting\.js +# ||whoson.creativemark.co.uk^$third-party (easyprivacy.txt: 6741) +.whoson.creativemark.co.uk +# ||webstats.motigo.com^$third-party (easyprivacy.txt: 6729) +.webstats.motigo.com +# ||webcare.byside.com^$third-party (easyprivacy.txt: 6724) +.webcare.byside.com +# ||watch.teroti.com^$third-party (easyprivacy.txt: 6720) +.watch.teroti.com +# ||w3track.com/newtrk/$third-party (easyprivacy.txt: 6716) +.w3track.com/newtrk/ +# ||vra.outbrain.com^$third-party (easyprivacy.txt: 6711) +.vra.outbrain.com +# ||vivociti.com/images/$third-party (easyprivacy.txt: 6702) +.vivociti.com/images/ +# ||visualstudio.com/v2/track$third-party (easyprivacy.txt: 6701) +.visualstudio.com/v2/track +# ||visa.com/logging/logEvent$third-party (easyprivacy.txt: 6696) +.visa.com/logging/logEvent +# ||vindicosuite.com/xumo/swf/$third-party (easyprivacy.txt: 6691) +.vindicosuite.com/xumo/swf/ +# ||viglink.com/api/ping$third-party (easyprivacy.txt: 6688) +.viglink.com/api/ping +# ||vast.com/vimpressions.js$third-party (easyprivacy.txt: 6675) +.vast.com/vimpressions\.js +# ||typepad.com^*/stats?$third-party (easyprivacy.txt: 6661) +.typepad.com/.*/stats\? +# ||twitvid.com^*/tracker.swf$third-party (easyprivacy.txt: 6659) +.twitvid.com/.*/tracker\.swf +# ||turnto.com/webEvent/$third-party (easyprivacy.txt: 6654) +.turnto.com/webEvent/ +# ||ttwbs.channelintelligence.com^$third-party (easyprivacy.txt: 6652) +.ttwbs.channelintelligence.com +# ||trumba.com/et.aspx?$third-party (easyprivacy.txt: 6648) +.trumba.com/et\.aspx\? +# ||trk.pswec.com^$third-party (easyprivacy.txt: 6643) +.trk.pswec.com +# ||tredir.go.com/capmon/GetDE?$third-party (easyprivacy.txt: 6635) +.tredir.go.com/capmon/GetDE\? +# ||travpan.com/out/$third-party (easyprivacy.txt: 6633) +.travpan.com/out/ +# ||trakksocial.googlecode.com^$third-party (easyprivacy.txt: 6631) +.trakksocial.googlecode.com +# ||traffic.belaydevelopment.com^$third-party (easyprivacy.txt: 6627) +.traffic.belaydevelopment.com +# ||tracking2.interweave.com^$third-party (easyprivacy.txt: 6623) +.tracking2.interweave.com +# ||tracking.worldmedia.net^$third-party (easyprivacy.txt: 6621) +.tracking.worldmedia.net +# ||tracking.sponsorpay.com^$third-party (easyprivacy.txt: 6615) +.tracking.sponsorpay.com +# ||tracking.skyword.com^$third-party (easyprivacy.txt: 6613) +.tracking.skyword.com +# ||tracking.sembox.it^$third-party (easyprivacy.txt: 6612) +.tracking.sembox.it +# ||tracking.practicefusion.com^$third-party (easyprivacy.txt: 6607) +.tracking.practicefusion.com +# ||tracking.plattformad.com^$third-party (easyprivacy.txt: 6606) +.tracking.plattformad.com +# ||tracking.maxcdn.com^$third-party (easyprivacy.txt: 6603) +.tracking.maxcdn.com +# ||tracking.interweave.com^$third-party (easyprivacy.txt: 6596) +.tracking.interweave.com +# ||tracking.fits.me^$third-party (easyprivacy.txt: 6593) +.tracking.fits.me +# ||tracking.fccinteractive.com^$third-party (easyprivacy.txt: 6591) +.tracking.fccinteractive.com +# ||tracking.edvisors.com^$third-party (easyprivacy.txt: 6588) +.tracking.edvisors.com +# ||tracking.drsfostersmith.com^$third-party (easyprivacy.txt: 6586) +.tracking.drsfostersmith.com +# ||tracking.bidmizer.com^$third-party (easyprivacy.txt: 6582) +.tracking.bidmizer.com +# ||tracking.badgeville.com^$third-party (easyprivacy.txt: 6581) +.tracking.badgeville.com +# ||trackicollect.ibase.fr^$third-party (easyprivacy.txt: 6579) +.trackicollect.ibase.fr +# ||tracker.u-link.me^$third-party (easyprivacy.txt: 6576) +.tracker.u-link.me +# ||tracker.seoboost.net^$third-party (easyprivacy.txt: 6573) +.tracker.seoboost.net +# ||tracker.myseofriend.net^$third-party (easyprivacy.txt: 6570) +.tracker.myseofriend.net +# ||track.linksynergy.com^$third-party (easyprivacy.txt: 6537) +.track.linksynergy.com +# ||track.atgstores.com^$third-party (easyprivacy.txt: 6527) +.track.atgstores.com +# ||trace.qq.com^$third-party (easyprivacy.txt: 6524) +.trace.qq.com +# ||tourradar.com/def/partner?$third-party (easyprivacy.txt: 6518) +.tourradar.com/def/partner\? +# ||totallylayouts.com/online-users-counter/$third-party (easyprivacy.txt: 6514) +.totallylayouts.com/online-users-counter/ +# ||totallylayouts.com/hit-counter/$third-party (easyprivacy.txt: 6513) +.totallylayouts.com/hit-counter/ +# ||themesltd.com/online-users-counter/$third-party (easyprivacy.txt: 6499) +.themesltd.com/online-users-counter/ +# ||themesltd.com/hit-counter/$third-party (easyprivacy.txt: 6498) +.themesltd.com/hit-counter/ +# ||t.ymlp275.net^$third-party (easyprivacy.txt: 6481) +.t.ymlp275.net +# ||t.powerreviews.com^$third-party (easyprivacy.txt: 6478) +.t.powerreviews.com +# ||t.dgm-au.com^$third-party (easyprivacy.txt: 6474) +.t.dgm-au.com +# ||t.devnet.com^$third-party (easyprivacy.txt: 6473) +.t.devnet.com +# ||swiftypecdn.com/te.js$third-party (easyprivacy.txt: 6466) +.swiftypecdn.com/te\.js +# ||swiftypecdn.com/cc.js$third-party (easyprivacy.txt: 6465) +.swiftypecdn.com/cc\.js +# ||sulia.com/papi/sulia_partner.js/$third-party (easyprivacy.txt: 6459) +.sulia.com/papi/sulia_partner\.js/ +# ||sugarops.com/w?action=impression$third-party (easyprivacy.txt: 6458) +.sugarops.com/w\?action=impression +# ||su.pr/hosted_js$third-party (easyprivacy.txt: 6457) +.su.pr/hosted_js +# ||statsadv.dadapro.com^$third-party (easyprivacy.txt: 6450) +.statsadv.dadapro.com +# ||stats.whicdn.com^$third-party (easyprivacy.txt: 6444) +.stats.whicdn.com +# ||stats.webstarts.com^$third-party (easyprivacy.txt: 6443) +.stats.webstarts.com +# ||stats.clipprtv.com^$third-party (easyprivacy.txt: 6400) +.stats.clipprtv.com +# ||statistics.m0lxcdn.kukuplay.com^$third-party (easyprivacy.txt: 6386) +.statistics.m0lxcdn.kukuplay.com +# ||static.parsely.com^$third-party (easyprivacy.txt: 6384) +.static.parsely.com +# ||stat.to.cupidplc.com^$third-party (easyprivacy.txt: 6381) +.stat.to.cupidplc.com +# ||st.dynamicyield.com^$third-party (easyprivacy.txt: 6374) +.st.dynamicyield.com +# ||speedtestbeta.com/*.gif?cb$third-party (easyprivacy.txt: 6368) +.speedtestbeta.com/.*\.gif\?cb +# ||snazzyspace.com/generators/viewer-counter/counter.php$third-party (easyprivacy.txt: 6359) +.snazzyspace.com/generators/viewer-counter/counter\.php +# ||snaps.vidiemi.com^$third-party (easyprivacy.txt: 6358) +.snaps.vidiemi.com +# ||sli-spark.com/b.png$third-party (easyprivacy.txt: 6354) +.sli-spark.com/b\.png +# ||siteintercept*.qualtrics.com^$third-party (easyprivacy.txt: 6350) +.siteintercept*./.*\.qualtrics\.com[^\w%.-] +.siteintercept*.qualtrics.com +# ||sig.gamerdna.com^$third-party (easyprivacy.txt: 6346) +.sig.gamerdna.com +# ||shareit.com/affiliate.html$third-party (easyprivacy.txt: 6344) +.shareit.com/affiliate\.html +# ||segments.adap.tv^$third-party (easyprivacy.txt: 6338) +.segments.adap.tv +# ||secure.ifbyphone.com^$third-party (easyprivacy.txt: 6335) +.secure.ifbyphone.com +# ||secure.ed4.net/GSI/$third-party (easyprivacy.txt: 6334) +.secure.ed4.net/GSI/ +# ||search.mediatarget.net^$third-party (easyprivacy.txt: 6330) +.search.mediatarget.net +# ||scout.haymarketmedia.com^$third-party (easyprivacy.txt: 6327) +.scout.haymarketmedia.com +# ||sawpf.com/1.0.js$third-party (easyprivacy.txt: 6325) +.sawpf.com/1\.0\.js +# ||sadv.dadapro.com^$third-party (easyprivacy.txt: 6322) +.sadv.dadapro.com +# ||saaspire.net/pxl/$third-party (easyprivacy.txt: 6321) +.saaspire.net/pxl/ +# ||rodalenl.com/imp?$third-party (easyprivacy.txt: 6310) +.rodalenl.com/imp\? +# ||researchintel.com^$third-party (easyprivacy.txt: 6304) +.researchintel.com +# ||reporting.reactlite.com^$third-party (easyprivacy.txt: 6298) +.reporting.reactlite.com +# ||redplum.com^*&pixid=$third-party (easyprivacy.txt: 6290) +.redplum.com/.*&pixid= +# ||redir.widdit.com^$third-party (easyprivacy.txt: 6289) +.redir.widdit.com +# ||recs.atgsvcs.com^$third-party (easyprivacy.txt: 6288) +.recs.atgsvcs.com +# ||px.dynamicyield.com^$third-party (easyprivacy.txt: 6261) +.px.dynamicyield.com +# ||publish.pizzazzemail.com^$third-party (easyprivacy.txt: 6257) +.publish.pizzazzemail.com +# ||pswec.com/px/$third-party (easyprivacy.txt: 6252) +.pswec.com/px/ +# ||proxify.com/xyz.php$third-party (easyprivacy.txt: 6250) +.proxify.com/xyz\.php +# ||providence.voxmedia.com^$third-party (easyprivacy.txt: 6249) +.providence.voxmedia.com +# ||propelplus.com/track/$third-party (easyprivacy.txt: 6248) +.propelplus.com/track/ +# ||projop.dnsalias.com^$third-party (easyprivacy.txt: 6247) +.projop.dnsalias.com +# ||privacytool.org/AnonymityChecker/js/fontdetect.js$third-party (easyprivacy.txt: 6242) +.privacytool.org/AnonymityChecker/js/fontdetect\.js +# ||postageapp.com/receipt/$third-party (easyprivacy.txt: 6233) +.postageapp.com/receipt/ +# ||platform.twitter.com/impressions.js$third-party (easyprivacy.txt: 6225) +.platform.twitter.com/impressions\.js +# ||platform.communicatorcorp.com^$third-party (easyprivacy.txt: 6224) +.platform.communicatorcorp.com +# ||pixels.youknowbest.com^$third-party (easyprivacy.txt: 6221) +.pixels.youknowbest.com +# ||pixel.xmladfeed.com^$third-party (easyprivacy.txt: 6218) +.pixel.xmladfeed.com +# ||pix.speedbit.com^$third-party (easyprivacy.txt: 6206) +.pix.speedbit.com +# ||piano-media.com/uid/$third-party (easyprivacy.txt: 6196) +.piano-media.com/uid/ +# ||piano-media.com/bucket/novosense.swf$third-party (easyprivacy.txt: 6194) +.piano-media.com/bucket/novosense\.swf +# ||pf.aclst.com^$third-party (easyprivacy.txt: 6189) +.pf.aclst.com +# ||paypal.com^*/pixel.gif$third-party (easyprivacy.txt: 6183) +.paypal.com/.*/pixel\.gif +# ||p.po.st/p?t=view&$third-party (easyprivacy.txt: 6172) +.p.po.st/p\?t=view& +# ||p.delivery.net^$third-party (easyprivacy.txt: 6169) +.p.delivery.net +# ||orts.wixawin.com^$third-party (easyprivacy.txt: 6167) +.orts.wixawin.com +# ||optimizely.appspot.com^$third-party (easyprivacy.txt: 6165) +.optimizely.appspot.com +# ||offers.keynote.com^$third-party (easyprivacy.txt: 6151) +.offers.keynote.com +# ||octopart-analytics.com^$third-party (easyprivacy.txt: 6148) +.octopart-analytics.com +# ||nonxt1.c.youtube.com^$third-party (easyprivacy.txt: 6138) +.nonxt1.c.youtube.com +# ||newsanalytics.com.au^$third-party (easyprivacy.txt: 6133) +.newsanalytics.com.au +# ||myscoop-tracking.googlecode.com^$third-party (easyprivacy.txt: 6120) +.myscoop-tracking.googlecode.com +# ||mts.mansion.com^$third-party (easyprivacy.txt: 6111) +.mts.mansion.com +# ||mozilla.org/page/*/open.gif$third-party (easyprivacy.txt: 6108) +.mozilla.org/page/.*/open\.gif +# ||metro-trending-*.amazonaws.com^$third-party (easyprivacy.txt: 6098) +.metro-trending-*./.*\.amazonaws\.com[^\w%.-] +.metro-trending-*.amazonaws.com +# ||metering.pagesuite.com^$third-party (easyprivacy.txt: 6082) +.metering.pagesuite.com +# ||mediego.com/tracker.js$third-party (easyprivacy.txt: 6077) +.mediego.com/tracker\.js +# ||mediapartner.bigpoint.net^$third-party (easyprivacy.txt: 6075) +.mediapartner.bigpoint.net +# ||mdctrail.com/b.ashx$third-party (easyprivacy.txt: 6069) +.mdctrail.com/b\.ashx +# ||maxmind.com/js/device.js$third-party (easyprivacy.txt: 6062) +.maxmind.com/js/device\.js +# ||maxmind.com/app/$third-party (easyprivacy.txt: 6061) +.maxmind.com/app/ +# ||manager.tagcommander.com/utils/privacyHit.php?$third-party (easyprivacy.txt: 6056) +.manager.tagcommander.com/utils/privacyHit\.php\? +# ||mailmax.co.nz/login/open.php$third-party (easyprivacy.txt: 6055) +.mailmax.co.nz/login/open\.php +# ||m.addthisedge.com^$third-party (easyprivacy.txt: 6047) +.m.addthisedge.com +# ||loop11.com^$third-party (easyprivacy.txt: 6038) +.loop11.com +# ||longurl.it/_t.gif?$third-party (easyprivacy.txt: 6036) +.longurl.it/_t\.gif\? +# ||log000.goo.ne.jp^$third-party (easyprivacy.txt: 6025) +.log000.goo.ne.jp +# ||log.kukuplay.com^$third-party (easyprivacy.txt: 6019) +.log.kukuplay.com +# ||link.huffingtonpost.com^$third-party (easyprivacy.txt: 5992) +.link.huffingtonpost.com +# ||lijit.com^*.containertag.min.js$third-party (easyprivacy.txt: 5989) +.lijit.com/.*\.containertag\.min\.js +# ||leadvision.dotmailer.co.uk^$third-party (easyprivacy.txt: 5981) +.leadvision.dotmailer.co.uk +# ||lct.salesforce.com^$third-party (easyprivacy.txt: 5978) +.lct.salesforce.com +# ||l.fairblocker.com^$third-party (easyprivacy.txt: 5972) +.l.fairblocker.com +# ||kbb.com/partner/$third-party (easyprivacy.txt: 5964) +.kbb.com/partner/ +# ||jotform.io/getReferrer/$third-party (easyprivacy.txt: 5959) +.jotform.io/getReferrer/ +# ||jangomail.com^*?UID$third-party (easyprivacy.txt: 5954) +.jangomail.com/.*\?UID +# ||insight.mintel.com^$third-party (easyprivacy.txt: 5936) +.insight.mintel.com +# ||ind.sh/view.php?$third-party (easyprivacy.txt: 5928) +.ind.sh/view\.php\? +# ||imp.constantcontact.com^$third-party (easyprivacy.txt: 5924) +.imp.constantcontact.com +# ||imp.clickability.com^$third-party (easyprivacy.txt: 5923) +.imp.clickability.com +# ||imp.affiliator.com^$third-party (easyprivacy.txt: 5922) +.imp.affiliator.com +# ||imgfarm.com^*/mw.gif?$third-party (easyprivacy.txt: 5920) +.imgfarm.com/.*/mw\.gif\? +# ||images-amazon.com/images^*/analytics/$third-party (easyprivacy.txt: 5913) +.images-amazon.com/images[^\w%.-].*/analytics/ +# ||images-amazon.com/images/*/third-party/tracker$third-party (easyprivacy.txt: 5912) +.images-amazon.com/images/.*/third-party/tracker +# ||images-amazon.com/images/*/ga.js$third-party (easyprivacy.txt: 5911) +.images-amazon.com/images/.*/ga\.js +# ||ihstats.cloudapp.net^$third-party (easyprivacy.txt: 5908) +.ihstats.cloudapp.net +# ||hm.baidu.com^$third-party (easyprivacy.txt: 5896) +.hm.baidu.com +# ||hgcdn.net/?$third-party (easyprivacy.txt: 5891) +.hgcdn.net/\? +# ||heroku.com/?callback=getip$third-party (easyprivacy.txt: 5890) +.heroku.com/\?callback=getip +# ||hearstmags.com^*/hdm-lib_hearstuser_proxy.html$third-party (easyprivacy.txt: 5888) +.hearstmags.com/.*/hdm-lib_hearstuser_proxy\.html +# ||heals.msgfocus.com^$third-party (easyprivacy.txt: 5887) +.heals.msgfocus.com +# ||gu-pix.appspot.com^$third-party (easyprivacy.txt: 5882) +.gu-pix.appspot.com +# ||go.toutapp.com^$third-party (easyprivacy.txt: 5861) +.go.toutapp.com +# ||go-stats.dlinkddns.com^$third-party (easyprivacy.txt: 5859) +.go-stats.dlinkddns.com +# ||geo.gexo.com/geo.js$third-party (easyprivacy.txt: 5841) +.geo.gexo.com/geo\.js +# ||g.delivery.net^$third-party (easyprivacy.txt: 5832) +.g.delivery.net +# ||freehostedscripts.net^*.php?site=*&s=*&h=$third-party (easyprivacy.txt: 5825) +.freehostedscripts.net/.*\.php\?site=.*&s=.*&h= +# ||filesonic.com/referral/$third-party (easyprivacy.txt: 5809) +.filesonic.com/referral/ +# ||feedblitz.com^*.gif?$third-party (easyprivacy.txt: 5805) +.feedblitz.com/.*\.gif\? +# ||feedblitz.com/imp?$third-party (easyprivacy.txt: 5804) +.feedblitz.com/imp\? +# ||facebook.com^*/tracking.js$third-party (easyprivacy.txt: 5799) +.facebook.com/.*/tracking\.js +# ||facebook.com/offsite_event.php$third-party (easyprivacy.txt: 5796) +.facebook.com/offsite_event\.php +# ||eveonline.com/redir.asp$third-party (easyprivacy.txt: 5786) +.eveonline.com/redir\.asp +# ||eventtracker.videostrip.com^$third-party (easyprivacy.txt: 5785) +.eventtracker.videostrip.com +# ||event.loyalty.bigdoor.com^$third-party (easyprivacy.txt: 5776) +.event.loyalty.bigdoor.com +# ||enews.pcmag.com/db/$third-party (easyprivacy.txt: 5765) +.enews.pcmag.com/db/ +# ||email.mediafire.com/wf/open?$third-party (easyprivacy.txt: 5760) +.email.mediafire.com/wf/open\? +# ||edw.insideline.com^$third-party (easyprivacy.txt: 5753) +.edw.insideline.com +# ||edge.bredg.com^$third-party (easyprivacy.txt: 5750) +.edge.bredg.com +# ||ecommstats.s3.amazonaws.com^$third-party (easyprivacy.txt: 5747) +.ecommstats.s3.amazonaws.com +# ||e-merchant.com/^*/edr.js$third-party (easyprivacy.txt: 5741) +.e-merchant.com/[^\w%.-].*/edr\.js +# ||du8783wkf05yr.cloudfront.net^$third-party (easyprivacy.txt: 5735) +.du8783wkf05yr.cloudfront.net +# ||disqus.com/api/ping?$third-party (easyprivacy.txt: 5718) +.disqus.com/api/ping\? +# ||demandmedia.s3.amazonaws.com^$third-party (easyprivacy.txt: 5707) +.demandmedia.s3.amazonaws.com +# ||dell.com/TAG/tag.aspx?$third-party (easyprivacy.txt: 5704) +.dell.com/TAG/tag\.aspx\? +# ||delivra.com/tracking/$third-party (easyprivacy.txt: 5703) +.delivra.com/tracking/ +# ||datam8.co.nz^$third-party (easyprivacy.txt: 5697) +.datam8.co.nz +# ||datacollect*.abtasty.com^$third-party (easyprivacy.txt: 5696) +.datacollect*./.*\.abtasty\.com[^\w%.-] +.datacollect*.abtasty.com +# ||data.marketgid.com^$third-party (easyprivacy.txt: 5695) +.data.marketgid.com +# ||data.imakenews.com^$third-party (easyprivacy.txt: 5694) +.data.imakenews.com +# ||data.fotorama.io/?$third-party (easyprivacy.txt: 5693) +.data.fotorama.io/\? +# ||data.beyond.com^$third-party (easyprivacy.txt: 5692) +.data.beyond.com +# ||cts.channelintelligence.com^$third-party (easyprivacy.txt: 5628) +.cts.channelintelligence.com +# ||cts.businesswire.com^$third-party (easyprivacy.txt: 5627) +.cts.businesswire.com +# ||cts-secure.channelintelligence.com^$third-party (easyprivacy.txt: 5626) +.cts-secure.channelintelligence.com +# ||cts-log.channelintelligence.com^$third-party (easyprivacy.txt: 5625) +.cts-log.channelintelligence.com +# ||ct.thegear-box.com^$third-party (easyprivacy.txt: 5624) +.ct.thegear-box.com +# ||ct.itbusinessedge.com^$third-party (easyprivacy.txt: 5621) +.ct.itbusinessedge.com +# ||ct.eid.co.nz^$third-party (easyprivacy.txt: 5620) +.ct.eid.co.nz +# ||cr.loszona.com^$third-party (easyprivacy.txt: 5614) +.cr.loszona.com +# ||control.cityofcairns.com^$third-party (easyprivacy.txt: 5589) +.control.cityofcairns.com +# ||coinbase.com/assets/application-*.js$third-party (easyprivacy.txt: 5575) +.coinbase.com/assets/application-.*\.js +# ||client.tahono.com^$third-party (easyprivacy.txt: 5538) +.client.tahono.com +# ||clickthru.lefbc.com^$third-party (easyprivacy.txt: 5535) +.clickthru.lefbc.com +# ||clicker.com^*pageurl$third-party (easyprivacy.txt: 5530) +.clicker.com/.*pageurl +# ||click1.email.nymagazine.com^$third-party (easyprivacy.txt: 5527) +.click1.email.nymagazine.com +# ||click.rssfwd.com^$third-party (easyprivacy.txt: 5526) +.click.rssfwd.com +# ||click.aristotle.net^$third-party (easyprivacy.txt: 5523) +.click.aristotle.net +# ||chtah.net/a/*/spacer.gif$third-party (easyprivacy.txt: 5516) +.chtah.net/a/.*/spacer\.gif +# ||chtah.net/a/*/spacer-0.gif$third-party (easyprivacy.txt: 5515) +.chtah.net/a/.*/spacer-0\.gif +# ||chtah.com/a/*/spacer-0.gif$third-party (easyprivacy.txt: 5513) +.chtah.com/a/.*/spacer-0\.gif +# ||cdn.trafficexchangelist.com^$third-party (easyprivacy.txt: 5502) +.cdn.trafficexchangelist.com +# ||business.sharedcount.com^$third-party (easyprivacy.txt: 5479) +.business.sharedcount.com +# ||bufferapp.com/wf/open?upn=$third-party (easyprivacy.txt: 5477) +.bufferapp.com/wf/open\?upn= +# ||break.com/break/js/brktrkr.js$third-party (easyprivacy.txt: 5471) +.break.com/break/js/brktrkr\.js +# ||blinkx.com/thirdparty/iab/$third-party (easyprivacy.txt: 5463) +.blinkx.com/thirdparty/iab/ +# ||bitgravity.com/b.gif$third-party (easyprivacy.txt: 5455) +.bitgravity.com/b\.gif +# ||beacon2.indieclicktv.com^$third-party (easyprivacy.txt: 5442) +.beacon2.indieclicktv.com +# ||audienceinsights.net^$third-party (easyprivacy.txt: 5413) +.audienceinsights.net +# ||audienceapi.newsdiscover.com.au^$third-party (easyprivacy.txt: 5412) +.audienceapi.newsdiscover.com.au +# ||appsolutions.com/hitme?$third-party (easyprivacy.txt: 5397) +.appsolutions.com/hitme\? +# ||appdynamics.com/geo/$third-party (easyprivacy.txt: 5395) +.appdynamics.com/geo/ +# ||app.yesware.com/t/$third-party (easyprivacy.txt: 5394) +.app.yesware.com/t/ +# ||apnic.net/1x1.png?$third-party (easyprivacy.txt: 5389) +.apnic.net/1x1\.png\? +# ||api.bit.ly/*/clicks?$third-party (easyprivacy.txt: 5384) +.api.bit.ly/.*/clicks\? +# ||api.awe.sm/stats/$third-party (easyprivacy.txt: 5383) +.api.awe.sm/stats/ +# ||analytic.xingcloud.com^$third-party (easyprivacy.txt: 5318) +.analytic.xingcloud.com +# ||amazonaws.com/initialize/$third-party (easyprivacy.txt: 5303) +.amazonaws.com/initialize/ +# ||amazonaws.com/g.aspx$third-party (easyprivacy.txt: 5302) +.amazonaws.com/g\.aspx +# ||amazon.com/gp/*&linkCode$third-party (easyprivacy.txt: 5297) +.amazon.com/gp/.*&linkCode +# ||affilired.com/analytic/$third-party (easyprivacy.txt: 5274) +.affilired.com/analytic/ +# ||affiliates.spark.net^$third-party (easyprivacy.txt: 5272) +.affiliates.spark.net +# ||affiliates.minglematch.com^$third-party (easyprivacy.txt: 5271) +.affiliates.minglematch.com +# ||adultmastercash.com/e1.php$third-party (easyprivacy.txt: 5267) +.adultmastercash.com/e1\.php +# ||adtrack.calls.net^$third-party (easyprivacy.txt: 5266) +.adtrack.calls.net +# ||ad.aloodo.com^$third-party (easyprivacy.txt: 5241) +.ad.aloodo.com +# ||activetracker.activehotels.com^$third-party (easyprivacy.txt: 5238) +.activetracker.activehotels.com +# ||acount.alley.ws^$third-party (easyprivacy.txt: 5235) +.acount.alley.ws +# ||abc.hearst.co.uk^$third-party (easyprivacy.txt: 5233) +.abc.hearst.co.uk +# ||aan.amazon.com^$third-party (easyprivacy.txt: 5231) +.aan.amazon.com +# ||a.mobify.com^$third-party (easyprivacy.txt: 5227) +.a.mobify.com +# ||51network.com^$third-party (easyprivacy.txt: 5213) +.51network.com +# |http://l2.io/ip.js$third-party (easyprivacy.txt: 5183) +l2.io/ip\.js +# ||gostats.vn^$third-party (easyprivacy.txt: 5180) +.gostats.vn +# ||weblog.com.ua^$third-party (easyprivacy.txt: 5178) +.weblog.com.ua +# ||uapoisk.net^$third-party (easyprivacy.txt: 5177) +.uapoisk.net +# ||mycounter.ua^$third-party (easyprivacy.txt: 5176) +.mycounter.ua +# ||mycounter.com.ua^$third-party (easyprivacy.txt: 5175) +.mycounter.com.ua +# |http://r.i.ua^$third-party (easyprivacy.txt: 5174) +r.i.ua +# ||zirve100.com^$third-party (easyprivacy.txt: 5172) +.zirve100.com +# ||webservis.gen.tr^$third-party (easyprivacy.txt: 5171) +.webservis.gen.tr +# ||sitetistik.com^$third-party (easyprivacy.txt: 5170) +.sitetistik.com +# ||sayyac.net^$third-party (easyprivacy.txt: 5169) +.sayyac.net +# ||sayyac.com^$third-party (easyprivacy.txt: 5168) +.sayyac.com +# ||realist.gen.tr^$third-party (easyprivacy.txt: 5167) +.realist.gen.tr +# ||onlinewebstat.com^$third-party (easyprivacy.txt: 5166) +.onlinewebstat.com +# ||truehits3.gits.net.th^$third-party (easyprivacy.txt: 5164) +.truehits3.gits.net.th +# ||truehits.net^$third-party (easyprivacy.txt: 5163) +.truehits.net +# ||tracker.stats.in.th^$third-party (easyprivacy.txt: 5162) +.tracker.stats.in.th +# ||d-stats.com^$third-party (easyprivacy.txt: 5161) +.d-stats.com +# ||webserviceaward.com^$third-party (easyprivacy.txt: 5159) +.webserviceaward.com +# ||vastpaketet.se^$third-party (easyprivacy.txt: 5158) +.vastpaketet.se +# ||spklw.com^$third-party (easyprivacy.txt: 5157) +.spklw.com +# ||research-int.se^$third-party (easyprivacy.txt: 5156) +.research-int.se +# ||publish-int.se^$third-party (easyprivacy.txt: 5155) +.publish-int.se +# ||prospecteye.com^$third-party (easyprivacy.txt: 5154) +.prospecteye.com +# ||adtraction.com^$third-party (easyprivacy.txt: 5153) +.adtraction.com +# ||adsettings.com^$third-party (easyprivacy.txt: 5152) +.adsettings.com +# ||micodigo.com^$third-party (easyprivacy.txt: 5150) +.micodigo.com +# ||mabaya.com^$third-party (easyprivacy.txt: 5149) +.mabaya.com +# ||intrastats.com^$third-party (easyprivacy.txt: 5148) +.intrastats.com +# ||hits.e.cl^$third-party (easyprivacy.txt: 5147) +.hits.e.cl +# ||hit.copesa.cl^$third-party (easyprivacy.txt: 5146) +.hit.copesa.cl +# ||estadisticasgratis.es^$third-party (easyprivacy.txt: 5145) +.estadisticasgratis.es +# ||estadisticasgratis.com^$third-party (easyprivacy.txt: 5144) +.estadisticasgratis.com +# ||eresmas.net^$third-party (easyprivacy.txt: 5143) +.eresmas.net +# ||delidatax.net^$third-party (easyprivacy.txt: 5142) +.delidatax.net +# ||contadorweb.com^$third-party (easyprivacy.txt: 5141) +.contadorweb.com +# ||contadorgratis.es^$third-party (easyprivacy.txt: 5140) +.contadorgratis.es +# ||contadorgratis.com^$third-party (easyprivacy.txt: 5139) +.contadorgratis.com +# ||contadordevisitas.es^$third-party (easyprivacy.txt: 5138) +.contadordevisitas.es +# ||certifica.com^$third-party (easyprivacy.txt: 5137) +.certifica.com +# ||toplist.sk^$third-party (easyprivacy.txt: 5135) +.toplist.sk +# ||pocitadlo.sk^$third-party (easyprivacy.txt: 5134) +.pocitadlo.sk +# ||idot.cz^$third-party (easyprivacy.txt: 5133) +.idot.cz +# ||blogtraffic.sg^$third-party (easyprivacy.txt: 5131) +.blogtraffic.sg +# ||zero.kz^$third-party (easyprivacy.txt: 5129) +.zero.kz +# ||www.rt-ns.ru^$third-party (easyprivacy.txt: 5128) +.www.rt-ns.ru +# ||webvisor.ru^$third-party (easyprivacy.txt: 5127) +.webvisor.ru +# ||webtalking.ru^$third-party (easyprivacy.txt: 5126) +.webtalking.ru +# ||webest.info^$third-party (easyprivacy.txt: 5125) +.webest.info +# ||web-visor.com^$third-party (easyprivacy.txt: 5124) +.web-visor.com +# ||warlog.ru^$third-party (easyprivacy.txt: 5123) +.warlog.ru +# ||vologda-info.ru^$third-party (easyprivacy.txt: 5122) +.vologda-info.ru +# ||volgograd-info.ru^$third-party (easyprivacy.txt: 5121) +.volgograd-info.ru +# ||vira.ru^$third-party (easyprivacy.txt: 5120) +.vira.ru +# ||vidigital.ru^$third-party (easyprivacy.txt: 5119) +.vidigital.ru +# ||uzrating.com^$third-party (easyprivacy.txt: 5118) +.uzrating.com +# ||uptolike.com^$third-party (easyprivacy.txt: 5117) +.uptolike.com +# ||uarating.com^$third-party (easyprivacy.txt: 5116) +.uarating.com +# ||toptracker.ru^$third-party (easyprivacy.txt: 5115) +.toptracker.ru +# ||tbex.ru^$third-party (easyprivacy.txt: 5114) +.tbex.ru +# ||stattds.club^$third-party (easyprivacy.txt: 5113) +.stattds.club +# ||stat24.ru^$third-party (easyprivacy.txt: 5112) +.stat24.ru +# ||skylog.kz^$third-party (easyprivacy.txt: 5111) +.skylog.kz +# ||site-submit.com.ua^$third-party (easyprivacy.txt: 5110) +.site-submit.com.ua +# ||serating.ru^$third-party (easyprivacy.txt: 5109) +.serating.ru +# ||seo-master.net^$third-party (easyprivacy.txt: 5108) +.seo-master.net +# ||sensor.org.ua^$third-party (easyprivacy.txt: 5107) +.sensor.org.ua +# ||sarov.ws^$third-party (easyprivacy.txt: 5106) +.sarov.ws +# ||quick-counter.net^$third-party (easyprivacy.txt: 5105) +.quick-counter.net +# ||proext.com^$third-party (easyprivacy.txt: 5104) +.proext.com +# ||pmbox.biz^$third-party (easyprivacy.txt: 5103) +.pmbox.biz +# ||personage.name^$third-party (easyprivacy.txt: 5102) +.personage.name +# ||openstat.net^$third-party (easyprivacy.txt: 5101) +.openstat.net +# ||onthe.io^$third-party (easyprivacy.txt: 5100) +.onthe.io +# ||mystat-in.net^$third-party (easyprivacy.txt: 5099) +.mystat-in.net +# ||musiccounter.ru^$third-party (easyprivacy.txt: 5098) +.musiccounter.ru +# ||mokuz.ru^$third-party (easyprivacy.txt: 5097) +.mokuz.ru +# ||mediatoday.ru^$third-party (easyprivacy.txt: 5096) +.mediatoday.ru +# ||mediaplan.ru^$third-party (easyprivacy.txt: 5095) +.mediaplan.ru +# ||mediametrics.ru^$third-party (easyprivacy.txt: 5094) +.mediametrics.ru +# ||lugansk-info.ru^$third-party (easyprivacy.txt: 5093) +.lugansk-info.ru +# ||lookmy.info^$third-party (easyprivacy.txt: 5092) +.lookmy.info +# ||logz.ru^$third-party (easyprivacy.txt: 5091) +.logz.ru +# ||logxp.ru^$third-party (easyprivacy.txt: 5090) +.logxp.ru +# ||logua.com^$third-party (easyprivacy.txt: 5089) +.logua.com +# ||logger.su^$third-party (easyprivacy.txt: 5088) +.logger.su +# ||listtop.ru^$third-party (easyprivacy.txt: 5087) +.listtop.ru +# ||lentainform.com^$third-party (easyprivacy.txt: 5086) +.lentainform.com +# ||kmindex.ru^$third-party (easyprivacy.txt: 5085) +.kmindex.ru +# ||jetcounter.ru^$third-party (easyprivacy.txt: 5084) +.jetcounter.ru +# ||iryazan.ru^$third-party (easyprivacy.txt: 5083) +.iryazan.ru +# ||intergid.ru^$third-party (easyprivacy.txt: 5082) +.intergid.ru +# ||infostroy.nnov.ru^$third-party (easyprivacy.txt: 5081) +.infostroy.nnov.ru +# ||imrk.net^$third-party (easyprivacy.txt: 5080) +.imrk.net +# ||idntfy.ru^$third-party (easyprivacy.txt: 5079) +.idntfy.ru +# ||hsdn.org^$third-party (easyprivacy.txt: 5078) +.hsdn.org +# ||hotlog.ru^$third-party (easyprivacy.txt: 5077) +.hotlog.ru +# ||hitmir.ru^$third-party (easyprivacy.txt: 5076) +.hitmir.ru +# ||gostats.ru^$third-party (easyprivacy.txt: 5075) +.gostats.ru +# ||gdeslon.ru^$third-party (easyprivacy.txt: 5074) +.gdeslon.ru +# ||faststart.ru^$third-party (easyprivacy.txt: 5073) +.faststart.ru +# ||e-kuzbass.ru^$third-party (easyprivacy.txt: 5072) +.e-kuzbass.ru +# ||digitaltarget.ru^$third-party (easyprivacy.txt: 5071) +.digitaltarget.ru +# ||cnstats.ru^$third-party (easyprivacy.txt: 5070) +.cnstats.ru +# ||clubcollector.com^$third-party (easyprivacy.txt: 5069) +.clubcollector.com +# ||cityua.net^$third-party (easyprivacy.txt: 5068) +.cityua.net +# ||botscanner.com^$third-party (easyprivacy.txt: 5067) +.botscanner.com +# ||apkonline.ru^$third-party (easyprivacy.txt: 5066) +.apkonline.ru +# ||announcement.ru^$third-party (easyprivacy.txt: 5065) +.announcement.ru +# ||a-counter.kiev.ua^$third-party (easyprivacy.txt: 5064) +.a-counter.kiev.ua +# ||a-counter.com.ua^$third-party (easyprivacy.txt: 5063) +.a-counter.com.ua +# ||24log.ru^$third-party (easyprivacy.txt: 5062) +.24log.ru +# ||zontera.com^$third-party (easyprivacy.txt: 5060) +.zontera.com +# ||trafix.ro^$third-party (easyprivacy.txt: 5059) +.trafix.ro +# ||trafic.ro^$third-party (easyprivacy.txt: 5058) +.trafic.ro +# ||top-ro.ro^$third-party (easyprivacy.txt: 5057) +.top-ro.ro +# ||statistics.ro^$third-party (easyprivacy.txt: 5056) +.statistics.ro +# ||hit100.ro^$third-party (easyprivacy.txt: 5055) +.hit100.ro +# ||gtop.ro^$third-party (easyprivacy.txt: 5054) +.gtop.ro +# ||brat-online.ro^$third-party (easyprivacy.txt: 5053) +.brat-online.ro +# ||best-top.ro^$third-party (easyprivacy.txt: 5052) +.best-top.ro +# ||tailtarget.com^$third-party (easyprivacy.txt: 5050) +.tailtarget.com +# ||popstats.com.br^$third-party (easyprivacy.txt: 5049) +.popstats.com.br +# ||marktest.pt^$third-party (easyprivacy.txt: 5048) +.marktest.pt +# ||way2traffic.com^$third-party (easyprivacy.txt: 5046) +.way2traffic.com +# ||tagcdn.com^$third-party (easyprivacy.txt: 5045) +.tagcdn.com +# ||stat.pl^$third-party (easyprivacy.txt: 5044) +.stat.pl +# ||stat.4u.pl^$third-party (easyprivacy.txt: 5043) +.stat.4u.pl +# ||rejestr.org^$third-party (easyprivacy.txt: 5042) +.rejestr.org +# ||ngastatic.com^$third-party (easyprivacy.txt: 5041) +.ngastatic.com +# ||ngacm.com^$third-party (easyprivacy.txt: 5040) +.ngacm.com +# ||legenhit.com^$third-party (easyprivacy.txt: 5039) +.legenhit.com +# ||hub.com.pl^$third-party (easyprivacy.txt: 5038) +.hub.com.pl +# ||gostats.pl^$third-party (easyprivacy.txt: 5037) +.gostats.pl +# ||gemius.pl^$third-party (easyprivacy.txt: 5036) +.gemius.pl +# ||clickonometrics.pl^$third-party (easyprivacy.txt: 5035) +.clickonometrics.pl +# ||adstat.4u.pl^$third-party (easyprivacy.txt: 5034) +.adstat.4u.pl +# ||webgozar.ir^$third-party (easyprivacy.txt: 5032) +.webgozar.ir +# ||webgozar.com^$third-party (easyprivacy.txt: 5031) +.webgozar.com +# ||tinystat.ir^$third-party (easyprivacy.txt: 5030) +.tinystat.ir +# ||persianstat.ir^$third-party (easyprivacy.txt: 5029) +.persianstat.ir +# ||persianstat.com^$third-party (easyprivacy.txt: 5028) +.persianstat.com +# ||melatstat.com^$third-party (easyprivacy.txt: 5027) +.melatstat.com +# ||xtractor.no^$third-party (easyprivacy.txt: 5025) +.xtractor.no +# ||webstat.no^$third-party (easyprivacy.txt: 5024) +.webstat.no +# ||trafikkfondet.no^$third-party (easyprivacy.txt: 5023) +.trafikkfondet.no +# ||de17a.com^$third-party (easyprivacy.txt: 5022) +.de17a.com +# ||www.hey.lt^$third-party (easyprivacy.txt: 5020) +.www.hey.lt +# ||webstatistika.lt^$third-party (easyprivacy.txt: 5019) +.webstatistika.lt +# ||visits.lt^$third-party (easyprivacy.txt: 5018) +.visits.lt +# ||stats.lt^$third-party (easyprivacy.txt: 5017) +.stats.lt +# ||reitingas.lt^$third-party (easyprivacy.txt: 5016) +.reitingas.lt +# ||easy.lv^$third-party (easyprivacy.txt: 5015) +.easy.lv +# ||wos.lv^$third-party (easyprivacy.txt: 5013) +.wos.lv +# ||webstatistika.lv^$third-party (easyprivacy.txt: 5012) +.webstatistika.lv +# ||topsite.lv^$third-party (easyprivacy.txt: 5011) +.topsite.lv +# ||top.lv^$third-party (easyprivacy.txt: 5010) +.top.lv +# ||stats4u.lv^$third-party (easyprivacy.txt: 5009) +.stats4u.lv +# ||statistika.lv^$third-party (easyprivacy.txt: 5008) +.statistika.lv +# ||reitingi.lv^$third-party (easyprivacy.txt: 5007) +.reitingi.lv +# ||puls.lv^$third-party (easyprivacy.txt: 5006) +.puls.lv +# ||on-line.lv^$third-party (easyprivacy.txt: 5005) +.on-line.lv +# ||erotop.lv^$third-party (easyprivacy.txt: 5004) +.erotop.lv +# ||cms.lv^$third-party (easyprivacy.txt: 5003) +.cms.lv +# ||logger.co.kr^$third-party (easyprivacy.txt: 5001) +.logger.co.kr +# ||ziyu.net^$third-party (easyprivacy.txt: 4999) +.ziyu.net +# ||trackfeed.com^$third-party (easyprivacy.txt: 4998) +.trackfeed.com +# ||rtoaster.jp^$third-party (easyprivacy.txt: 4997) +.rtoaster.jp +# ||research-artisan.com^$third-party (easyprivacy.txt: 4996) +.research-artisan.com +# ||owldata.com^$third-party (easyprivacy.txt: 4995) +.owldata.com +# ||omiki.com^$third-party (easyprivacy.txt: 4994) +.omiki.com +# ||mobylog.jp^$third-party (easyprivacy.txt: 4993) +.mobylog.jp +# ||japanmetrix.jp^$third-party (easyprivacy.txt: 4992) +.japanmetrix.jp +# ||i2i.jp^$third-party (easyprivacy.txt: 4991) +.i2i.jp +# ||hitgraph.jp^$third-party (easyprivacy.txt: 4990) +.hitgraph.jp +# ||gmodmp.jp^$third-party (easyprivacy.txt: 4989) +.gmodmp.jp +# ||fout.jp^$third-party (easyprivacy.txt: 4988) +.fout.jp +# ||eco-tag.jp^$third-party (easyprivacy.txt: 4987) +.eco-tag.jp +# ||e-kaiseki.com^$third-party (easyprivacy.txt: 4986) +.e-kaiseki.com +# ||cosmi.io^$third-party (easyprivacy.txt: 4985) +.cosmi.io +# ||blogranking.net^$third-party (easyprivacy.txt: 4984) +.blogranking.net +# ||beanscattering.jp^$third-party (easyprivacy.txt: 4983) +.beanscattering.jp +# ||a-cast.jp^$third-party (easyprivacy.txt: 4982) +.a-cast.jp +# ||zt-dst.com^$third-party (easyprivacy.txt: 4980) +.zt-dst.com +# ||wstatslive.com^$third-party (easyprivacy.txt: 4979) +.wstatslive.com +# ||whoseesyou.com^$third-party (easyprivacy.txt: 4978) +.whoseesyou.com +# ||webtraffstats.net^$third-party (easyprivacy.txt: 4977) +.webtraffstats.net +# ||webmobile.ws^$third-party (easyprivacy.txt: 4976) +.webmobile.ws +# ||webmeter.ws^$third-party (easyprivacy.txt: 4975) +.webmeter.ws +# ||vivistats.com^$third-party (easyprivacy.txt: 4974) +.vivistats.com +# ||ultrastats.it^$third-party (easyprivacy.txt: 4973) +.ultrastats.it +# ||trackset.it^$third-party (easyprivacy.txt: 4972) +.trackset.it +# ||thestat.net^$third-party (easyprivacy.txt: 4971) +.thestat.net +# ||tetigi.com^$third-party (easyprivacy.txt: 4970) +.tetigi.com +# ||superstat.info^$third-party (easyprivacy.txt: 4969) +.superstat.info +# ||statsview.it^$third-party (easyprivacy.txt: 4968) +.statsview.it +# ||statsforever.com^$third-party (easyprivacy.txt: 4967) +.statsforever.com +# ||statsadvance-01.net^$third-party (easyprivacy.txt: 4966) +.statsadvance-01.net +# ||statistichegratis.net^$third-party (easyprivacy.txt: 4965) +.statistichegratis.net +# ||statistiche.ws^$third-party (easyprivacy.txt: 4964) +.statistiche.ws +# ||statistiche.it^$third-party (easyprivacy.txt: 4963) +.statistiche.it +# ||statistiche-free.com^$third-party (easyprivacy.txt: 4962) +.statistiche-free.com +# ||specialstat.com^$third-party (easyprivacy.txt: 4961) +.specialstat.com +# ||shinystat.it^$third-party (easyprivacy.txt: 4960) +.shinystat.it +# ||prostats.it^$third-party (easyprivacy.txt: 4959) +.prostats.it +# ||pagerankfree.com^$third-party (easyprivacy.txt: 4958) +.pagerankfree.com +# ||ntlab.org^$third-party (easyprivacy.txt: 4957) +.ntlab.org +# ||ninestats.com^$third-party (easyprivacy.txt: 4956) +.ninestats.com +# ||mystat.it^$third-party (easyprivacy.txt: 4955) +.mystat.it +# ||megastat.net^$third-party (easyprivacy.txt: 4954) +.megastat.net +# ||laserstat.com^$third-party (easyprivacy.txt: 4953) +.laserstat.com +# ||keyxel.com^$third-party (easyprivacy.txt: 4952) +.keyxel.com +# ||italianadirectory.com^$third-party (easyprivacy.txt: 4951) +.italianadirectory.com +# ||ipfrom.com^$third-party (easyprivacy.txt: 4950) +.ipfrom.com +# ||imetrix.it^$third-party (easyprivacy.txt: 4949) +.imetrix.it +# ||hitcountersonline.com^$third-party (easyprivacy.txt: 4948) +.hitcountersonline.com +# ||hiperstat.com^$third-party (easyprivacy.txt: 4947) +.hiperstat.com +# ||geocontatore.com^$third-party (easyprivacy.txt: 4946) +.geocontatore.com +# ||freestats.ws^$third-party (easyprivacy.txt: 4945) +.freestats.ws +# ||freestats.tv^$third-party (easyprivacy.txt: 4944) +.freestats.tv +# ||freestats.tk^$third-party (easyprivacy.txt: 4943) +.freestats.tk +# ||freestats.org^$third-party (easyprivacy.txt: 4942) +.freestats.org +# ||freestats.net^$third-party (easyprivacy.txt: 4941) +.freestats.net +# ||freestats.me^$third-party (easyprivacy.txt: 4940) +.freestats.me +# ||freestats.biz^$third-party (easyprivacy.txt: 4939) +.freestats.biz +# ||freestat.ws^$third-party (easyprivacy.txt: 4938) +.freestat.ws +# ||freecounter.it^$third-party (easyprivacy.txt: 4937) +.freecounter.it +# ||digital-metric.com^$third-party (easyprivacy.txt: 4936) +.digital-metric.com +# ||cuntador.com^$third-party (easyprivacy.txt: 4935) +.cuntador.com +# ||contatoreaccessi.com^$third-party (easyprivacy.txt: 4934) +.contatoreaccessi.com +# ||avstat.it^$third-party (easyprivacy.txt: 4933) +.avstat.it +# ||accessi.it^$third-party (easyprivacy.txt: 4932) +.accessi.it +# ||0stats.com^$third-party (easyprivacy.txt: 4931) +.0stats.com +# ||modernus.is^$third-party (easyprivacy.txt: 4929) +.modernus.is +# ||mystat.hu^$third-party (easyprivacy.txt: 4927) +.mystat.hu +# ||hirmatrix.hu^$third-party (easyprivacy.txt: 4926) +.hirmatrix.hu +# ||gpr.hu^$third-party (easyprivacy.txt: 4925) +.gpr.hu +# ||hetchi.com^$third-party (easyprivacy.txt: 4923) +.hetchi.com +# ||enter-system.com^$third-party (easyprivacy.txt: 4922) +.enter-system.com +# ||hotstats.gr^$third-party (easyprivacy.txt: 4920) +.hotstats.gr +# ||vihtori-analytics.fi^$third-party (easyprivacy.txt: 4918) +.vihtori-analytics.fi +# ||tracking*.euroads.fi^$third-party (easyprivacy.txt: 4917) +.tracking*./.*\.euroads\.fi[^\w%.-] +.tracking*.euroads.fi +# ||stat.www.fi^$third-party (easyprivacy.txt: 4916) +.stat.www.fi +# ||netmonitor.fi^$third-party (easyprivacy.txt: 4915) +.netmonitor.fi +# ||m-brain.fi^$third-party (easyprivacy.txt: 4914) +.m-brain.fi +# ||kavijaseuranta.fi^$third-party (easyprivacy.txt: 4913) +.kavijaseuranta.fi +# ||inpref.com^$third-party (easyprivacy.txt: 4912) +.inpref.com +# ||gallupnet.fi^$third-party (easyprivacy.txt: 4911) +.gallupnet.fi +# ||frosmo.com^$third-party (easyprivacy.txt: 4910) +.frosmo.com +# ||mediaindex.ee^$third-party (easyprivacy.txt: 4908) +.mediaindex.ee +# ||counter.ok.ee^$third-party (easyprivacy.txt: 4907) +.counter.ok.ee +# ||traffic4u.nl^$third-party (easyprivacy.txt: 4905) +.traffic4u.nl +# ||svtrd.com^$third-party (easyprivacy.txt: 4904) +.svtrd.com +# ||stealth.nl^$third-party (easyprivacy.txt: 4903) +.stealth.nl +# ||mystats.nl^$third-party (easyprivacy.txt: 4902) +.mystats.nl +# ||mtrack.nl^$third-party (easyprivacy.txt: 4901) +.mtrack.nl +# ||metriweb.be^$third-party (easyprivacy.txt: 4900) +.metriweb.be +# ||istats.nl^$third-party (easyprivacy.txt: 4899) +.istats.nl +# ||active24stats.nl^$third-party (easyprivacy.txt: 4898) +.active24stats.nl +# ||zipstat.dk^$third-party (easyprivacy.txt: 4896) +.zipstat.dk +# ||tns-gallup.dk^$third-party (easyprivacy.txt: 4895) +.tns-gallup.dk +# ||sitechart.dk^$third-party (easyprivacy.txt: 4894) +.sitechart.dk +# ||peakcounter.dk^$third-party (easyprivacy.txt: 4893) +.peakcounter.dk +# ||parameter.dk^$third-party (easyprivacy.txt: 4892) +.parameter.dk +# ||netstats.dk^$third-party (easyprivacy.txt: 4891) +.netstats.dk +# ||netminers.dk^$third-party (easyprivacy.txt: 4890) +.netminers.dk +# ||ncom.dk^$third-party (easyprivacy.txt: 4889) +.ncom.dk +# ||livewebstats.dk^$third-party (easyprivacy.txt: 4888) +.livewebstats.dk +# ||livecounter.dk^$third-party (easyprivacy.txt: 4887) +.livecounter.dk +# ||infocollect.dk^$third-party (easyprivacy.txt: 4886) +.infocollect.dk +# ||hitcount.dk^$third-party (easyprivacy.txt: 4885) +.hitcount.dk +# ||gixmo.dk^$third-party (easyprivacy.txt: 4884) +.gixmo.dk +# ||euroads.dk^$third-party (easyprivacy.txt: 4883) +.euroads.dk +# ||chart.dk^$third-party (easyprivacy.txt: 4882) +.chart.dk +# ||andersenit.dk^$third-party (easyprivacy.txt: 4881) +.andersenit.dk +# ||agillic.eu^$third-party (easyprivacy.txt: 4880) +.agillic.eu +# ||toplist.cz^$third-party (easyprivacy.txt: 4878) +.toplist.cz +# ||pocitadlo.cz^$third-party (easyprivacy.txt: 4877) +.pocitadlo.cz +# ||netagent.cz^$third-party (easyprivacy.txt: 4876) +.netagent.cz +# ||navrcholu.cz^$third-party (easyprivacy.txt: 4875) +.navrcholu.cz +# ||monkeytracker.cz^$third-party (easyprivacy.txt: 4874) +.monkeytracker.cz +# ||lookit.cz^$third-party (easyprivacy.txt: 4873) +.lookit.cz +# ||itop.cz^$third-party (easyprivacy.txt: 4872) +.itop.cz +# ||ibillboard.com^$third-party (easyprivacy.txt: 4871) +.ibillboard.com +# ||xclaimwords.net^$third-party (easyprivacy.txt: 4869) +.xclaimwords.net +# ||dotmetrics.net^$third-party (easyprivacy.txt: 4868) +.dotmetrics.net +# ||ztcadx.com^$third-party (easyprivacy.txt: 4866) +.ztcadx.com +# ||zampda.net^$third-party (easyprivacy.txt: 4865) +.zampda.net +# ||yigao.com^$third-party (easyprivacy.txt: 4864) +.yigao.com +# ||vdoing.com^$third-party (easyprivacy.txt: 4863) +.vdoing.com +# ||vamaker.com^$third-party (easyprivacy.txt: 4862) +.vamaker.com +# ||users.51.la^$third-party (easyprivacy.txt: 4861) +.users.51.la +# ||tovery.net^$third-party (easyprivacy.txt: 4860) +.tovery.net +# ||topsem.com^$third-party (easyprivacy.txt: 4859) +.topsem.com +# ||top-bloggers.com^$third-party (easyprivacy.txt: 4858) +.top-bloggers.com +# ||sitebot.cn^$third-party (easyprivacy.txt: 4857) +.sitebot.cn +# ||sagetrc.com^$third-party (easyprivacy.txt: 4856) +.sagetrc.com +# ||pixanalytics.com^$third-party (easyprivacy.txt: 4855) +.pixanalytics.com +# ||phpstat.com^$third-party (easyprivacy.txt: 4854) +.phpstat.com +# ||oadz.com^$third-party (easyprivacy.txt: 4853) +.oadz.com +# ||mmstat.com^$third-party (easyprivacy.txt: 4852) +.mmstat.com +# ||mediav.com^$third-party (easyprivacy.txt: 4851) +.mediav.com +# ||jiankongbao.com^$third-party (easyprivacy.txt: 4850) +.jiankongbao.com +# ||irs09.com^$third-party (easyprivacy.txt: 4849) +.irs09.com +# ||irs01.$third-party (easyprivacy.txt: 4848) +.irs01.*. +# ||hotrank.com.tw^$third-party (easyprivacy.txt: 4847) +.hotrank.com.tw +# ||gtags.net^$third-party (easyprivacy.txt: 4846) +.gtags.net +# ||gridsum.com^$third-party (easyprivacy.txt: 4845) +.gridsum.com +# ||gostats.cn^$third-party (easyprivacy.txt: 4844) +.gostats.cn +# ||eyeota.net^$third-party (easyprivacy.txt: 4843) +.eyeota.net +# ||emarbox.com^$third-party (easyprivacy.txt: 4842) +.emarbox.com +# ||datamaster.com.cn^$third-party (easyprivacy.txt: 4841) +.datamaster.com.cn +# ||cnzz.net^$third-party (easyprivacy.txt: 4840) +.cnzz.net +# ||clicki.cn^$third-party (easyprivacy.txt: 4839) +.clicki.cn +# ||blogtw.net^$third-party (easyprivacy.txt: 4838) +.blogtw.net +# ||blog104.com^$third-party (easyprivacy.txt: 4837) +.blog104.com +# ||baifendian.com^$third-party (easyprivacy.txt: 4836) +.baifendian.com +# ||admaster.com.cn^$third-party (easyprivacy.txt: 4835) +.admaster.com.cn +# ||acs86.com^$third-party (easyprivacy.txt: 4834) +.acs86.com +# ||99click.com^$third-party (easyprivacy.txt: 4833) +.99click.com +# ||51yes.com^$third-party (easyprivacy.txt: 4832) +.51yes.com +# ||50bang.org^$third-party (easyprivacy.txt: 4831) +.50bang.org +# ||tyxo.bg^$third-party (easyprivacy.txt: 4828) +.tyxo.bg +# ||trafit.com^$third-party (easyprivacy.txt: 4827) +.trafit.com +# ||circle.am^$third-party (easyprivacy.txt: 4825) +.circle.am +# ||x-traceur.com^$third-party (easyprivacy.txt: 4823) +.x-traceur.com +# ||wysistat.com^$third-party (easyprivacy.txt: 4822) +.wysistat.com +# ||webcompteur.com^$third-party (easyprivacy.txt: 4821) +.webcompteur.com +# ||trafiz.net^$third-party (easyprivacy.txt: 4820) +.trafiz.net +# ||track.effiliation.com^$third-party (easyprivacy.txt: 4819) +.track.effiliation.com +# ||toc.io^$third-party (easyprivacy.txt: 4818) +.toc.io +# ||tnsinternet.be^$third-party (easyprivacy.txt: 4817) +.tnsinternet.be +# ||titag.com^$third-party (easyprivacy.txt: 4816) +.titag.com +# ||stats.fr^$third-party (easyprivacy.txt: 4815) +.stats.fr +# ||semiocast.com^$third-party (easyprivacy.txt: 4814) +.semiocast.com +# ||reseau-pub.com^$third-party (easyprivacy.txt: 4813) +.reseau-pub.com +# ||ownpage.fr^$third-party (easyprivacy.txt: 4812) +.ownpage.fr +# ||ncdnprorogeraie.lol^$third-party (easyprivacy.txt: 4810) +.ncdnprorogeraie.lol +# ||mmtro.com^$third-party (easyprivacy.txt: 4809) +.mmtro.com +# ||megast.at^$third-party (easyprivacy.txt: 4808) +.megast.at +# ||mastertag.effiliation.com^$third-party (easyprivacy.txt: 4807) +.mastertag.effiliation.com +# ||livestats.fr^$third-party (easyprivacy.txt: 4806) +.livestats.fr +# ||libstat.com^$third-party (easyprivacy.txt: 4805) +.libstat.com +# ||leadium.com^$third-party (easyprivacy.txt: 4804) +.leadium.com +# ||kameleoon.com^$third-party (easyprivacy.txt: 4803) +.kameleoon.com +# ||graphinsider.com^$third-party (easyprivacy.txt: 4802) +.graphinsider.com +# ||goyavelab.com^$third-party (easyprivacy.txt: 4801) +.goyavelab.com +# ||geocompteur.com^$third-party (easyprivacy.txt: 4800) +.geocompteur.com +# ||ferank.fr^$third-party (easyprivacy.txt: 4799) +.ferank.fr +# ||ezakus.net^$third-party (easyprivacy.txt: 4798) +.ezakus.net +# ||estat.com^$third-party (easyprivacy.txt: 4797) +.estat.com +# ||emailretargeting.com^$third-party (easyprivacy.txt: 4796) +.emailretargeting.com +# ||edt02.net^$third-party (easyprivacy.txt: 4795) +.edt02.net +# ||deliv.lexpress.fr^$third-party (easyprivacy.txt: 4794) +.deliv.lexpress.fr +# ||countus.fr^$third-party (easyprivacy.txt: 4793) +.countus.fr +# ||count.fr^$third-party (easyprivacy.txt: 4792) +.count.fr +# ||compteur.com^$third-party (easyprivacy.txt: 4791) +.compteur.com +# ||compteur-gratuit.org^$third-party (easyprivacy.txt: 4790) +.compteur-gratuit.org +# ||casualstat.com^$third-party (easyprivacy.txt: 4789) +.casualstat.com +# ||canalstat.com^$third-party (easyprivacy.txt: 4788) +.canalstat.com +# ||atraxio.com^$third-party (easyprivacy.txt: 4787) +.atraxio.com +# ||antvoice.com^$third-party (easyprivacy.txt: 4786) +.antvoice.com +# ||alkemics.com^$third-party (easyprivacy.txt: 4785) +.alkemics.com +# ||affilizr.com^$third-party (easyprivacy.txt: 4784) +.affilizr.com +# ||abcompteur.com^$third-party (easyprivacy.txt: 4783) +.abcompteur.com +# ||123compteur.com^$third-party (easyprivacy.txt: 4782) +.123compteur.com +# ||zaehler.tv^$third-party (easyprivacy.txt: 4780) +.zaehler.tv +# ||yoochoose.net^$third-party (easyprivacy.txt: 4779) +.yoochoose.net +# ||xplosion.de^$third-party (easyprivacy.txt: 4778) +.xplosion.de +# ||xl-counti.com^$third-party (easyprivacy.txt: 4777) +.xl-counti.com +# ||xhit.com^$third-party (easyprivacy.txt: 4776) +.xhit.com +# ||xcounter.ch^$third-party (easyprivacy.txt: 4775) +.xcounter.ch +# ||xa-counter.com^$third-party (easyprivacy.txt: 4774) +.xa-counter.com +# ||wemfbox.ch^$third-party (easyprivacy.txt: 4772) +.wemfbox.ch +# ||welt-der-links.de^$third-party (easyprivacy.txt: 4771) +.welt-der-links.de +# ||wecount4u.com^$third-party (easyprivacy.txt: 4770) +.wecount4u.com +# ||webttracking.de^$third-party (easyprivacy.txt: 4769) +.webttracking.de +# ||webtrekk.net^$third-party (easyprivacy.txt: 4768) +.webtrekk.net +# ||webtrekk.de^$third-party (easyprivacy.txt: 4767) +.webtrekk.de +# ||webtrekk-us.net^$third-party (easyprivacy.txt: 4766) +.webtrekk-us.net +# ||websitesampling.com^$third-party (easyprivacy.txt: 4765) +.websitesampling.com +# ||webprospector.de^$third-party (easyprivacy.txt: 4764) +.webprospector.de +# ||weblist.de^$third-party (easyprivacy.txt: 4763) +.weblist.de +# ||webkatalog.li^$third-party (easyprivacy.txt: 4762) +.webkatalog.li +# ||webhits.de^$third-party (easyprivacy.txt: 4761) +.webhits.de +# ||web-controlling.org^$third-party (easyprivacy.txt: 4760) +.web-controlling.org +# ||visitor-stats.de^$third-party (easyprivacy.txt: 4759) +.visitor-stats.de +# ||vinsight.de^$third-party (easyprivacy.txt: 4758) +.vinsight.de +# ||viewar.org^$third-party (easyprivacy.txt: 4757) +.viewar.org +# ||videos.oms.eu^$third-party (easyprivacy.txt: 4756) +.videos.oms.eu +# ||video.oms.eu^$third-party (easyprivacy.txt: 4755) +.video.oms.eu +# ||verypopularwebsite.com^$third-party (easyprivacy.txt: 4754) +.verypopularwebsite.com +# ||urstats.de^$third-party (easyprivacy.txt: 4753) +.urstats.de +# ||up-rank.com^$third-party (easyprivacy.txt: 4752) +.up-rank.com +# ||universaltrackingcontainer.com^$third-party (easyprivacy.txt: 4751) +.universaltrackingcontainer.com +# ||trkme.net^$third-party (easyprivacy.txt: 4750) +.trkme.net +# ||trendcounter.de^$third-party (easyprivacy.txt: 4749) +.trendcounter.de +# ||trbo.com^$third-party (easyprivacy.txt: 4748) +.trbo.com +# ||trafficmaxx.de^$third-party (easyprivacy.txt: 4747) +.trafficmaxx.de +# ||trackfreundlich.de^$third-party (easyprivacy.txt: 4746) +.trackfreundlich.de +# ||topstat.com^$third-party (easyprivacy.txt: 4745) +.topstat.com +# ||toplist100.org^$third-party (easyprivacy.txt: 4744) +.toplist100.org +# ||tophits4u.de^$third-party (easyprivacy.txt: 4743) +.tophits4u.de +# ||tisoomi-services.com^$third-party (easyprivacy.txt: 4742) +.tisoomi-services.com +# ||teriotracker.de^$third-party (easyprivacy.txt: 4741) +.teriotracker.de +# ||tausch-link.de^$third-party (easyprivacy.txt: 4740) +.tausch-link.de +# ||tamedia.ch^$third-party (easyprivacy.txt: 4739) +.tamedia.ch +# ||t4ft.de^$third-party (easyprivacy.txt: 4738) +.t4ft.de +# ||sunios.de^$third-party (easyprivacy.txt: 4737) +.sunios.de +# ||suchmaschinen-ranking-hits.de^$third-party (easyprivacy.txt: 4736) +.suchmaschinen-ranking-hits.de +# ||stroeerdigitalmedia.de^$third-party (easyprivacy.txt: 4735) +.stroeerdigitalmedia.de +# ||stats4free.de^$third-party (easyprivacy.txt: 4734) +.stats4free.de +# ||stats.de^$third-party (easyprivacy.txt: 4733) +.stats.de +# ||statistiq.com^$third-party (easyprivacy.txt: 4732) +.statistiq.com +# ||statistik-gallup.net^$third-party (easyprivacy.txt: 4731) +.statistik-gallup.net +# ||ssl4stats.de^$third-party (easyprivacy.txt: 4728) +.ssl4stats.de +# ||spring-tns.net^$third-party (easyprivacy.txt: 4727) +.spring-tns.net +# ||sponsorcounter.de^$third-party (easyprivacy.txt: 4726) +.sponsorcounter.de +# ||spider-mich.com^$third-party (easyprivacy.txt: 4725) +.spider-mich.com +# ||spelar.org^$third-party (easyprivacy.txt: 4724) +.spelar.org +# ||speedtracker.de^$third-party (easyprivacy.txt: 4723) +.speedtracker.de +# ||speedcounter.net^$third-party (easyprivacy.txt: 4722) +.speedcounter.net +# ||speedcount.de^$third-party (easyprivacy.txt: 4721) +.speedcount.de +# ||spacehits.net^$third-party (easyprivacy.txt: 4720) +.spacehits.net +# ||space-link.de^$third-party (easyprivacy.txt: 4719) +.space-link.de +# ||slogantrend.de^$third-party (easyprivacy.txt: 4718) +.slogantrend.de +# ||sitebro.de^$third-party (easyprivacy.txt: 4717) +.sitebro.de +# ||sensic.net^$third-party (easyprivacy.txt: 4716) +.sensic.net +# ||semtracker.de^$third-party (easyprivacy.txt: 4715) +.semtracker.de +# ||seitwert.de^$third-party (easyprivacy.txt: 4714) +.seitwert.de +# ||sedotracker.de^$third-party (easyprivacy.txt: 4713) +.sedotracker.de +# ||scriptil.com^$third-party (easyprivacy.txt: 4712) +.scriptil.com +# ||royalcount.de^$third-party (easyprivacy.txt: 4711) +.royalcount.de +# ||roitracking.net^$third-party (easyprivacy.txt: 4710) +.roitracking.net +# ||rightstats.com^$third-party (easyprivacy.txt: 4709) +.rightstats.com +# ||research.de.com^$third-party (easyprivacy.txt: 4708) +.research.de.com +# ||refinedads.com^$third-party (easyprivacy.txt: 4707) +.refinedads.com +# ||ranklink.de^$third-party (easyprivacy.txt: 4706) +.ranklink.de +# ||rankings24.de^$third-party (easyprivacy.txt: 4705) +.rankings24.de +# ||ranking-links.de^$third-party (easyprivacy.txt: 4704) +.ranking-links.de +# ||ranking-it.de^$third-party (easyprivacy.txt: 4703) +.ranking-it.de +# ||ranking-hits.de^$third-party (easyprivacy.txt: 4702) +.ranking-hits.de +# ||ranking-counter.de^$third-party (easyprivacy.txt: 4701) +.ranking-counter.de +# ||ranking-charts.de^$third-party (easyprivacy.txt: 4700) +.ranking-charts.de +# ||rankchamp.de^$third-party (easyprivacy.txt: 4699) +.rankchamp.de +# ||rank4all.eu^$third-party (easyprivacy.txt: 4698) +.rank4all.eu +# ||rank-power.com^$third-party (easyprivacy.txt: 4697) +.rank-power.com +# ||r.movad.de^$third-party (easyprivacy.txt: 4696) +.r.movad.de +# ||propagerank.de^$third-party (easyprivacy.txt: 4695) +.propagerank.de +# ||productsup.com^$third-party (easyprivacy.txt: 4694) +.productsup.com +# ||prnetwork.de^$third-party (easyprivacy.txt: 4693) +.prnetwork.de +# ||pr-update.biz^$third-party (easyprivacy.txt: 4692) +.pr-update.biz +# ||pr-textlink.de^$third-party (easyprivacy.txt: 4691) +.pr-textlink.de +# ||pr-sunshine.de^$third-party (easyprivacy.txt: 4690) +.pr-sunshine.de +# ||pr-rang.de^$third-party (easyprivacy.txt: 4689) +.pr-rang.de +# ||pr-linktausch.de^$third-party (easyprivacy.txt: 4688) +.pr-linktausch.de +# ||pr-link.eu^$third-party (easyprivacy.txt: 4687) +.pr-link.eu +# ||pr-chart.de^$third-party (easyprivacy.txt: 4686) +.pr-chart.de +# ||pr-chart.com^$third-party (easyprivacy.txt: 4685) +.pr-chart.com +# ||ppro.de^$third-party (easyprivacy.txt: 4684) +.ppro.de +# ||powercount.com^$third-party (easyprivacy.txt: 4683) +.powercount.com +# ||powerbar-pagerank.de^$third-party (easyprivacy.txt: 4682) +.powerbar-pagerank.de +# ||plexworks.de^$third-party (easyprivacy.txt: 4681) +.plexworks.de +# ||pimpmypr.de^$third-party (easyprivacy.txt: 4680) +.pimpmypr.de +# ||pc-agency24.de^$third-party (easyprivacy.txt: 4679) +.pc-agency24.de +# ||pageranking.li^$third-party (easyprivacy.txt: 4678) +.pageranking.li +# ||pageranking-counter.de^$third-party (easyprivacy.txt: 4677) +.pageranking-counter.de +# ||pagerank4you.eu^$third-party (easyprivacy.txt: 4676) +.pagerank4you.eu +# ||pagerank-suchmaschine.de^$third-party (easyprivacy.txt: 4675) +.pagerank-suchmaschine.de +# ||pagerank-online.eu^$third-party (easyprivacy.txt: 4674) +.pagerank-online.eu +# ||pagerank-linkverzeichnis.de^$third-party (easyprivacy.txt: 4673) +.pagerank-linkverzeichnis.de +# ||pagerank-hamburg.de^$third-party (easyprivacy.txt: 4672) +.pagerank-hamburg.de +# ||pagerank-backlink.eu^$third-party (easyprivacy.txt: 4671) +.pagerank-backlink.eu +# ||page-hit.de^$third-party (easyprivacy.txt: 4670) +.page-hit.de +# ||ourstats.de^$third-party (easyprivacy.txt: 4669) +.ourstats.de +# ||osxau.de^$third-party (easyprivacy.txt: 4668) +.osxau.de +# ||org-dot-com.com^$third-party (easyprivacy.txt: 4667) +.org-dot-com.com +# ||optimierung-der-website.de^$third-party (easyprivacy.txt: 4666) +.optimierung-der-website.de +# ||oewabox.at^$third-party (easyprivacy.txt: 4665) +.oewabox.at +# ||observare.de^$third-party (easyprivacy.txt: 4664) +.observare.de +# ||northclick-statistiken.de^$third-party (easyprivacy.txt: 4663) +.northclick-statistiken.de +# ||netzstat.ch^$third-party (easyprivacy.txt: 4662) +.netzstat.ch +# ||netzaehler.de^$third-party (easyprivacy.txt: 4661) +.netzaehler.de +# ||netupdater.info^$third-party (easyprivacy.txt: 4660) +.netupdater.info +# ||netdebit-counter.de^$third-party (easyprivacy.txt: 4659) +.netdebit-counter.de +# ||netcounter.de^$third-party (easyprivacy.txt: 4658) +.netcounter.de +# ||mysumo.de^$third-party (easyprivacy.txt: 4657) +.mysumo.de +# ||my-stats.info^$third-party (easyprivacy.txt: 4656) +.my-stats.info +# ||my-ranking.de^$third-party (easyprivacy.txt: 4655) +.my-ranking.de +# ||mr-rank.de^$third-party (easyprivacy.txt: 4654) +.mr-rank.de +# ||mpwe.net^$third-party (easyprivacy.txt: 4653) +.mpwe.net +# ||motorpresse-statistik.de^$third-party (easyprivacy.txt: 4652) +.motorpresse-statistik.de +# ||mitmeisseln.de^$third-party (easyprivacy.txt: 4651) +.mitmeisseln.de +# ||microcounter.de^$third-party (easyprivacy.txt: 4650) +.microcounter.de +# ||metalyzer.com^$third-party (easyprivacy.txt: 4648) +.metalyzer.com +# ||mengis-linden.org^$third-party (easyprivacy.txt: 4647) +.mengis-linden.org +# ||meetrics.net^$third-party (easyprivacy.txt: 4646) +.meetrics.net +# ||marketing-page.de^$third-party (easyprivacy.txt: 4645) +.marketing-page.de +# ||m-pathy.com^$third-party (easyprivacy.txt: 4644) +.m-pathy.com +# ||losecounter.de^$third-party (easyprivacy.txt: 4643) +.losecounter.de +# ||liverank.org^$third-party (easyprivacy.txt: 4642) +.liverank.org +# ||linktausch.li^$third-party (easyprivacy.txt: 4641) +.linktausch.li +# ||linktausch-pagerank.de^$third-party (easyprivacy.txt: 4640) +.linktausch-pagerank.de +# ||link-empfehlen24.de^$third-party (easyprivacy.txt: 4639) +.link-empfehlen24.de +# ||leserservice-tracking.de^$third-party (easyprivacy.txt: 4638) +.leserservice-tracking.de +# ||lddt.de^$third-party (easyprivacy.txt: 4637) +.lddt.de +# ||kupona.de^$third-party (easyprivacy.txt: 4636) +.kupona.de +# ||kostenlose-counter.com^$third-party (easyprivacy.txt: 4635) +.kostenlose-counter.com +# ||kono-research.de^$third-party (easyprivacy.txt: 4634) +.kono-research.de +# ||klamm-counter.de^$third-party (easyprivacy.txt: 4633) +.klamm-counter.de +# ||keytrack.de^$third-party (easyprivacy.txt: 4632) +.keytrack.de +# ||iyi.net^$third-party (easyprivacy.txt: 4631) +.iyi.net +# ||ivwbox.de^$third-party (easyprivacy.txt: 4630) +.ivwbox.de +# ||iptrack.biz^$third-party (easyprivacy.txt: 4629) +.iptrack.biz +# ||ipcounter.net^$third-party (easyprivacy.txt: 4628) +.ipcounter.net +# ||ipcount.net^$third-party (easyprivacy.txt: 4627) +.ipcount.net +# ||interhits.de^$third-party (easyprivacy.txt: 4626) +.interhits.de +# ||interaktiv-net.de^$third-party (easyprivacy.txt: 4625) +.interaktiv-net.de +# ||intelliad.de^$third-party (easyprivacy.txt: 4624) +.intelliad.de +# ||intelliad-tracking.com^$third-party (easyprivacy.txt: 4623) +.intelliad-tracking.com +# ||ingenioustech.biz^$third-party (easyprivacy.txt: 4622) +.ingenioustech.biz +# ||inet-tracker.de^$third-party (easyprivacy.txt: 4621) +.inet-tracker.de +# ||imcht.net^$third-party (easyprivacy.txt: 4620) +.imcht.net +# ||iivt.com^$third-party (easyprivacy.txt: 4619) +.iivt.com +# ||hung.ch^$third-party (easyprivacy.txt: 4618) +.hung.ch +# ||hotcounter.de^$third-party (easyprivacy.txt: 4617) +.hotcounter.de +# ||hot-count.com^$third-party (easyprivacy.txt: 4616) +.hot-count.com +# ||hitmaster.de^$third-party (easyprivacy.txt: 4615) +.hitmaster.de +# ||hiddencounter.de^$third-party (easyprivacy.txt: 4614) +.hiddencounter.de +# ||grfz.de^$third-party (easyprivacy.txt: 4613) +.grfz.de +# ||greatviews.de^$third-party (easyprivacy.txt: 4612) +.greatviews.de +# ||gratisbacklink.de^$third-party (easyprivacy.txt: 4611) +.gratisbacklink.de +# ||gratis-counter-gratis.de^$third-party (easyprivacy.txt: 4610) +.gratis-counter-gratis.de +# ||gratis-besucherzaehler.de^$third-party (easyprivacy.txt: 4609) +.gratis-besucherzaehler.de +# ||gostats.de^$third-party (easyprivacy.txt: 4608) +.gostats.de +# ||google-rank.org^$third-party (easyprivacy.txt: 4607) +.google-rank.org +# ||google-pr7.de^$third-party (easyprivacy.txt: 4606) +.google-pr7.de +# ||gezaehlt.de^$third-party (easyprivacy.txt: 4605) +.gezaehlt.de +# ||getcounter.de^$third-party (easyprivacy.txt: 4604) +.getcounter.de +# ||generaltracking.de^$third-party (easyprivacy.txt: 4603) +.generaltracking.de +# ||gacela.eu^$third-party (easyprivacy.txt: 4602) +.gacela.eu +# ||fun-hits.com^$third-party (easyprivacy.txt: 4601) +.fun-hits.com +# ||fremaks.net^$third-party (easyprivacy.txt: 4600) +.fremaks.net +# ||freihit.de^$third-party (easyprivacy.txt: 4599) +.freihit.de +# ||freetracker.biz^$third-party (easyprivacy.txt: 4598) +.freetracker.biz +# ||free-counters.net^$third-party (easyprivacy.txt: 4597) +.free-counters.net +# ||fixcounter.com^$third-party (easyprivacy.txt: 4596) +.fixcounter.com +# ||fastcounter.de^$third-party (easyprivacy.txt: 4595) +.fastcounter.de +# ||faibl.org^$third-party (easyprivacy.txt: 4594) +.faibl.org +# ||exmarkt.de^$third-party (easyprivacy.txt: 4593) +.exmarkt.de +# ||exapxl.de^$third-party (easyprivacy.txt: 4592) +.exapxl.de +# ||exactag.com^$third-party (easyprivacy.txt: 4591) +.exactag.com +# ||eurocounter.com^$third-party (easyprivacy.txt: 4590) +.eurocounter.com +# ||euro-pr.eu^$third-party (easyprivacy.txt: 4589) +.euro-pr.eu +# ||etracking24.de^$third-party (easyprivacy.txt: 4588) +.etracking24.de +# ||etracker.de^$third-party (easyprivacy.txt: 4587) +.etracker.de +# ||erotikcounter.org^$third-party (easyprivacy.txt: 4586) +.erotikcounter.org +# ||emetriq.de^$third-party (easyprivacy.txt: 4585) +.emetriq.de +# ||edtp.de^$third-party (easyprivacy.txt: 4584) +.edtp.de +# ||edococounter.de^$third-party (easyprivacy.txt: 4583) +.edococounter.de +# ||econda-monitor.de^$third-party (easyprivacy.txt: 4582) +.econda-monitor.de +# ||easytracking.de^$third-party (easyprivacy.txt: 4581) +.easytracking.de +# ||eanalyzer.de^$third-party (easyprivacy.txt: 4580) +.eanalyzer.de +# ||durocount.com^$third-party (easyprivacy.txt: 4579) +.durocount.com +# ||dreamcounter.de^$third-party (easyprivacy.txt: 4578) +.dreamcounter.de +# ||dk-statistik.de^$third-party (easyprivacy.txt: 4577) +.dk-statistik.de +# ||divolution.com^$third-party (easyprivacy.txt: 4576) +.divolution.com +# ||directcounter.de^$third-party (easyprivacy.txt: 4575) +.directcounter.de +# ||digidip.net^$third-party (easyprivacy.txt: 4574) +.digidip.net +# ||die-rankliste.com^$third-party (easyprivacy.txt: 4573) +.die-rankliste.com +# ||cya1t.net^$third-party (easyprivacy.txt: 4572) +.cya1t.net +# ||cptrack.de^$third-party (easyprivacy.txt: 4571) +.cptrack.de +# ||countyou.de^$third-party (easyprivacy.txt: 4570) +.countyou.de +# ||countok.de^$third-party (easyprivacy.txt: 4569) +.countok.de +# ||counto.de^$third-party (easyprivacy.txt: 4568) +.counto.de +# ||countnow.de^$third-party (easyprivacy.txt: 4567) +.countnow.de +# ||countit.ch^$third-party (easyprivacy.txt: 4566) +.countit.ch +# ||countino.de^$third-party (easyprivacy.txt: 4565) +.countino.de +# ||countimo.de^$third-party (easyprivacy.txt: 4564) +.countimo.de +# ||counti.de^$third-party (easyprivacy.txt: 4563) +.counti.de +# ||counthis.com^$third-party (easyprivacy.txt: 4562) +.counthis.com +# ||counterstatistik.de^$third-party (easyprivacy.txt: 4561) +.counterstatistik.de +# ||counterstation.de^$third-party (easyprivacy.txt: 4560) +.counterstation.de +# ||counterserver.de^$third-party (easyprivacy.txt: 4559) +.counterserver.de +# ||counterseite.de^$third-party (easyprivacy.txt: 4558) +.counterseite.de +# ||counteronline.de^$third-party (easyprivacy.txt: 4557) +.counteronline.de +# ||counterlevel.de^$third-party (easyprivacy.txt: 4556) +.counterlevel.de +# ||countercity.net^$third-party (easyprivacy.txt: 4555) +.countercity.net +# ||countercity.de^$third-party (easyprivacy.txt: 4554) +.countercity.de +# ||counter4all.de^$third-party (easyprivacy.txt: 4553) +.counter4all.de +# ||counter27.ch^$third-party (easyprivacy.txt: 4552) +.counter27.ch +# ||counter.de^$third-party (easyprivacy.txt: 4551) +.counter.de +# ||counter-treff.de^$third-party (easyprivacy.txt: 4550) +.counter-treff.de +# ||counter-pagerank.de^$third-party (easyprivacy.txt: 4549) +.counter-pagerank.de +# ||counter-kostenlos.net^$third-party (easyprivacy.txt: 4548) +.counter-kostenlos.net +# ||counter-kostenlos.info^$third-party (easyprivacy.txt: 4547) +.counter-kostenlos.info +# ||counter-gratis.com^$third-party (easyprivacy.txt: 4546) +.counter-gratis.com +# ||counter-go.de^$third-party (easyprivacy.txt: 4545) +.counter-go.de +# ||counter-city.de^$third-party (easyprivacy.txt: 4544) +.counter-city.de +# ||counted.at^$third-party (easyprivacy.txt: 4543) +.counted.at +# ||countar.de^$third-party (easyprivacy.txt: 4542) +.countar.de +# ||count24.de^$third-party (easyprivacy.txt: 4541) +.count24.de +# ||count.im^$third-party (easyprivacy.txt: 4540) +.count.im +# ||clickmap.ch^$third-party (easyprivacy.txt: 4539) +.clickmap.ch +# ||checkeffect.at^$third-party (easyprivacy.txt: 4538) +.checkeffect.at +# ||bonuscounter.de^$third-party (easyprivacy.txt: 4537) +.bonuscounter.de +# ||bonitrust.de^$third-party (easyprivacy.txt: 4536) +.bonitrust.de +# ||bluecounter.de^$third-party (easyprivacy.txt: 4535) +.bluecounter.de +# ||blogverzeichnis.eu^$third-party (easyprivacy.txt: 4534) +.blogverzeichnis.eu +# ||blogtraffic.de^$third-party (easyprivacy.txt: 4533) +.blogtraffic.de +# ||bloggerei.de^$third-party (easyprivacy.txt: 4532) +.bloggerei.de +# ||bloggeramt.de^$third-party (easyprivacy.txt: 4531) +.bloggeramt.de +# ||blogcounter.de^$third-party (easyprivacy.txt: 4530) +.blogcounter.de +# ||blogcounter.com^$third-party (easyprivacy.txt: 4529) +.blogcounter.com +# ||blog-webkatalog.de^$third-party (easyprivacy.txt: 4528) +.blog-webkatalog.de +# ||blog-o-rama.de^$third-party (easyprivacy.txt: 4527) +.blog-o-rama.de +# ||betarget.de^$third-party (easyprivacy.txt: 4526) +.betarget.de +# ||besucherzahlen.com^$third-party (easyprivacy.txt: 4525) +.besucherzahlen.com +# ||besucherzaehler.org^$third-party (easyprivacy.txt: 4524) +.besucherzaehler.org +# ||besucherzaehler-zugriffszaehler.de^$third-party (easyprivacy.txt: 4523) +.besucherzaehler-zugriffszaehler.de +# ||besucherzaehler-homepage.de^$third-party (easyprivacy.txt: 4522) +.besucherzaehler-homepage.de +# ||besucherzaehler-counter.de^$third-party (easyprivacy.txt: 4521) +.besucherzaehler-counter.de +# ||besucherstats.de^$third-party (easyprivacy.txt: 4520) +.besucherstats.de +# ||beliebtestewebseite.de^$third-party (easyprivacy.txt: 4519) +.beliebtestewebseite.de +# ||belboon.de^$third-party (easyprivacy.txt: 4518) +.belboon.de +# ||bekannt-im-web.de^$third-party (easyprivacy.txt: 4517) +.bekannt-im-web.de +# ||backlinktausch.biz^$third-party (easyprivacy.txt: 4516) +.backlinktausch.biz +# ||backlinks.li^$third-party (easyprivacy.txt: 4515) +.backlinks.li +# ||backlinkprofi.info^$third-party (easyprivacy.txt: 4514) +.backlinkprofi.info +# ||backlinkdino.de^$third-party (easyprivacy.txt: 4513) +.backlinkdino.de +# ||backlink-umsonst.de^$third-party (easyprivacy.txt: 4512) +.backlink-umsonst.de +# ||backlink-test.de^$third-party (easyprivacy.txt: 4511) +.backlink-test.de +# ||avencio.de^$third-party (easyprivacy.txt: 4510) +.avencio.de +# ||audiencemanager.de^$third-party (easyprivacy.txt: 4509) +.audiencemanager.de +# ||atsfi.de^$third-party (easyprivacy.txt: 4508) +.atsfi.de +# ||anormal-tracker.de^$third-party (easyprivacy.txt: 4507) +.anormal-tracker.de +# ||andyhoppe.com^$third-party (easyprivacy.txt: 4506) +.andyhoppe.com +# ||adzoe.de^$third-party (easyprivacy.txt: 4504) +.adzoe.de +# ||adtraxx.de^$third-party (easyprivacy.txt: 4503) +.adtraxx.de +# ||adrank24.de^$third-party (easyprivacy.txt: 4502) +.adrank24.de +# ||addcontrol.net^$third-party (easyprivacy.txt: 4501) +.addcontrol.net +# ||adclear.net^$third-party (easyprivacy.txt: 4500) +.adclear.net +# ||adc-serv.net^$third-party (easyprivacy.txt: 4499) +.adc-serv.net +# ||active-tracking.de^$third-party (easyprivacy.txt: 4498) +.active-tracking.de +# ||actionallocator.com^$third-party (easyprivacy.txt: 4497) +.actionallocator.com +# ||abcounter.de^$third-party (easyprivacy.txt: 4496) +.abcounter.de +# ||4stats.de^$third-party (easyprivacy.txt: 4495) +.4stats.de +# ||24log.de^$third-party (easyprivacy.txt: 4494) +.24log.de +# ||12mnkys.com^$third-party (easyprivacy.txt: 4491) +.12mnkys.com +# ||123-counter.de^$third-party (easyprivacy.txt: 4490) +.123-counter.de +# ||zroitracker.com^$third-party (easyprivacy.txt: 4486) +.zroitracker.com +# ||zqtk.net^$third-party (easyprivacy.txt: 4485) +.zqtk.net +# ||zowary.com^$third-party (easyprivacy.txt: 4484) +.zowary.com +# ||zoosnet.net^$third-party (easyprivacy.txt: 4483) +.zoosnet.net +# ||zoomino.com^$third-party (easyprivacy.txt: 4482) +.zoomino.com +# ||zoomflow.com^$third-party (easyprivacy.txt: 4481) +.zoomflow.com +# ||zoomanalytics.co^$third-party (easyprivacy.txt: 4480) +.zoomanalytics.co +# ||zesep.com^$third-party (easyprivacy.txt: 4479) +.zesep.com +# ||zenlivestats.com^$third-party (easyprivacy.txt: 4478) +.zenlivestats.com +# ||zdtag.com^$third-party (easyprivacy.txt: 4477) +.zdtag.com +# ||zdbb.net^$third-party (easyprivacy.txt: 4476) +.zdbb.net +# ||zanox.com^$third-party (easyprivacy.txt: 4475) +.zanox.com +# ||zanox-affiliate.de^$third-party (easyprivacy.txt: 4474) +.zanox-affiliate.de +# ||youramigo.com^$third-party (easyprivacy.txt: 4473) +.youramigo.com +# ||your-counter.be^$third-party (easyprivacy.txt: 4472) +.your-counter.be +# ||youmetrix.co.uk^$third-party (easyprivacy.txt: 4471) +.youmetrix.co.uk +# ||yjtag.jp^$third-party (easyprivacy.txt: 4470) +.yjtag.jp +# ||yieldsoftware.com^$third-party (easyprivacy.txt: 4469) +.yieldsoftware.com +# ||yieldify.com^$third-party (easyprivacy.txt: 4468) +.yieldify.com +# ||yieldbot.com^$third-party (easyprivacy.txt: 4467) +.yieldbot.com +# ||yellowbrix.com^$third-party (easyprivacy.txt: 4466) +.yellowbrix.com +# ||ycctrk.co.uk^$third-party (easyprivacy.txt: 4465) +.ycctrk.co.uk +# ||ybotvisit.com^$third-party (easyprivacy.txt: 4464) +.ybotvisit.com +# ||yaudience.com^$third-party (easyprivacy.txt: 4463) +.yaudience.com +# ||yamanoha.com^$third-party (easyprivacy.txt: 4462) +.yamanoha.com +# ||y-track.com^$third-party (easyprivacy.txt: 4461) +.y-track.com +# ||xyztraffic.com^$third-party (easyprivacy.txt: 4460) +.xyztraffic.com +# ||xxxcounter.com^$third-party (easyprivacy.txt: 4459) +.xxxcounter.com +# ||xtremline.com^$third-party (easyprivacy.txt: 4458) +.xtremline.com +# ||xref.io^$third-party (easyprivacy.txt: 4457) +.xref.io +# ||xiti.com^$third-party (easyprivacy.txt: 4456) +.xiti.com +# ||xg4ken.com^$third-party (easyprivacy.txt: 4455) +.xg4ken.com +# ||xclk-integracion.com^$third-party (easyprivacy.txt: 4454) +.xclk-integracion.com +# ||x-stat.de^$third-party (easyprivacy.txt: 4453) +.x-stat.de +# ||wzrkt.com^$third-party (easyprivacy.txt: 4452) +.wzrkt.com +# ||wzrk.co^$third-party (easyprivacy.txt: 4451) +.wzrk.co +# ||wywyuserservice.com^$third-party (easyprivacy.txt: 4450) +.wywyuserservice.com +# ||wywy.com^$third-party (easyprivacy.txt: 4449) +.wywy.com +# ||wwwstats.info^$third-party (easyprivacy.txt: 4448) +.wwwstats.info +# ||www-path.com^$third-party (easyprivacy.txt: 4447) +.www-path.com +# ||wunderloop.net^$third-party (easyprivacy.txt: 4446) +.wunderloop.net +# ||wundercounter.com^$third-party (easyprivacy.txt: 4445) +.wundercounter.com +# ||wtstats.com^$third-party (easyprivacy.txt: 4444) +.wtstats.com +# ||wtp101.com^$third-party (easyprivacy.txt: 4443) +.wtp101.com +# ||wt-safetag.com^$third-party (easyprivacy.txt: 4442) +.wt-safetag.com +# ||wt-eu02.net^$third-party (easyprivacy.txt: 4441) +.wt-eu02.net +# ||wredint.com^$third-party (easyprivacy.txt: 4440) +.wredint.com +# ||wrating.com^$third-party (easyprivacy.txt: 4439) +.wrating.com +# ||wpdstat.com^$third-party (easyprivacy.txt: 4438) +.wpdstat.com +# ||wp-stats.com^$third-party (easyprivacy.txt: 4437) +.wp-stats.com +# ||wowanalytics.co.uk^$third-party (easyprivacy.txt: 4436) +.wowanalytics.co.uk +# ||worldlogger.com^$third-party (easyprivacy.txt: 4435) +.worldlogger.com +# ||worldgravity.com^$third-party (easyprivacy.txt: 4434) +.worldgravity.com +# ||woopra.com^$third-party (easyprivacy.txt: 4433) +.woopra.com +# ||woopra-ns.com^$third-party (easyprivacy.txt: 4432) +.woopra-ns.com +# ||wishloop.com^$third-party (easyprivacy.txt: 4431) +.wishloop.com +# ||wiredminds.de^$third-party (easyprivacy.txt: 4430) +.wiredminds.de +# ||wildxtraffic.com^$third-party (easyprivacy.txt: 4429) +.wildxtraffic.com +# ||wikiodeliv.com^$third-party (easyprivacy.txt: 4428) +.wikiodeliv.com +# ||wikia-beacon.com^$third-party (easyprivacy.txt: 4427) +.wikia-beacon.com +# ||whoson.com^$third-party (easyprivacy.txt: 4426) +.whoson.com +# ||whosclickingwho.com^$third-party (easyprivacy.txt: 4425) +.whosclickingwho.com +# ||whoisvisiting.com^$third-party (easyprivacy.txt: 4424) +.whoisvisiting.com +# ||whoisonline.net^$third-party (easyprivacy.txt: 4423) +.whoisonline.net +# ||whoaremyfriends.net^$third-party (easyprivacy.txt: 4422) +.whoaremyfriends.net +# ||whoaremyfriends.com^$third-party (easyprivacy.txt: 4421) +.whoaremyfriends.com +# ||whitepixel.com^$third-party (easyprivacy.txt: 4420) +.whitepixel.com +# ||whackedmedia.com^$third-party (easyprivacy.txt: 4419) +.whackedmedia.com +# ||weesh.co.uk^$third-party (easyprivacy.txt: 4418) +.weesh.co.uk +# ||webtuna.com^$third-party (easyprivacy.txt: 4417) +.webtuna.com +# ||webtrendslive.com^$third-party (easyprivacy.txt: 4416) +.webtrendslive.com +# ||webtrends.com^$third-party (easyprivacy.txt: 4415) +.webtrends.com +# ||webtrekk-asia.net^$third-party (easyprivacy.txt: 4414) +.webtrekk-asia.net +# ||webtraxs.com^$third-party (easyprivacy.txt: 4413) +.webtraxs.com +# ||webtraffiq.com^$third-party (easyprivacy.txt: 4412) +.webtraffiq.com +# ||webtrafficagents.com^$third-party (easyprivacy.txt: 4411) +.webtrafficagents.com +# ||webtraffic.se^$third-party (easyprivacy.txt: 4410) +.webtraffic.se +# ||webstats4u.com^$third-party (easyprivacy.txt: 4409) +.webstats4u.com +# ||webstats.com^$third-party (easyprivacy.txt: 4408) +.webstats.com +# ||webstat.se^$third-party (easyprivacy.txt: 4407) +.webstat.se +# ||webstat.net^$third-party (easyprivacy.txt: 4406) +.webstat.net +# ||webstat.com^$third-party (easyprivacy.txt: 4405) +.webstat.com +# ||webspectator.com^$third-party (easyprivacy.txt: 4404) +.webspectator.com +# ||websitewelcome.com^$third-party (easyprivacy.txt: 4403) +.websitewelcome.com +# ||websiteperform.com^$third-party (easyprivacy.txt: 4402) +.websiteperform.com +# ||websiteonlinecounter.com^$third-party (easyprivacy.txt: 4401) +.websiteonlinecounter.com +# ||websiteceo.com^$third-party (easyprivacy.txt: 4400) +.websiteceo.com +# ||website-hit-counters.com^$third-party (easyprivacy.txt: 4399) +.website-hit-counters.com +# ||webmasterplan.com^$third-party (easyprivacy.txt: 4398) +.webmasterplan.com +# ||weblytics.io^$third-party (easyprivacy.txt: 4397) +.weblytics.io +# ||webleads-tracker.com^$third-party (easyprivacy.txt: 4396) +.webleads-tracker.com +# ||webiqonline.com^$third-party (easyprivacy.txt: 4395) +.webiqonline.com +# ||webglstats.com^$third-party (easyprivacy.txt: 4394) +.webglstats.com +# ||webforensics.co.uk^$third-party (easyprivacy.txt: 4393) +.webforensics.co.uk +# ||webflowmetrics.com^$third-party (easyprivacy.txt: 4392) +.webflowmetrics.com +# ||webcounter.ws^$third-party (easyprivacy.txt: 4391) +.webcounter.ws +# ||webcounter.co.za^$third-party (easyprivacy.txt: 4390) +.webcounter.co.za +# ||webclicktracker.com^$third-party (easyprivacy.txt: 4389) +.webclicktracker.com +# ||webalytics.pw^$third-party (easyprivacy.txt: 4388) +.webalytics.pw +# ||web-stat.net^$third-party (easyprivacy.txt: 4387) +.web-stat.net +# ||web-stat.com^$third-party (easyprivacy.txt: 4386) +.web-stat.com +# ||web-counter.net^$third-party (easyprivacy.txt: 4385) +.web-counter.net +# ||web-boosting.net^$third-party (easyprivacy.txt: 4384) +.web-boosting.net +# ||waudit.cz^$third-party (easyprivacy.txt: 4383) +.waudit.cz +# ||waplog.net^$third-party (easyprivacy.txt: 4382) +.waplog.net +# ||w55c.net^$third-party (easyprivacy.txt: 4381) +.w55c.net +# ||w3counter.com^$third-party (easyprivacy.txt: 4380) +.w3counter.com +# ||vtracker.net^$third-party (easyprivacy.txt: 4379) +.vtracker.net +# ||vstats.co^$third-party (easyprivacy.txt: 4378) +.vstats.co +# ||votistics.com^$third-party (easyprivacy.txt: 4377) +.votistics.com +# ||voodooalerts.com^$third-party (easyprivacy.txt: 4376) +.voodooalerts.com +# ||voicefive.com^$third-party (easyprivacy.txt: 4375) +.voicefive.com +# ||vmtrk.com^$third-party (easyprivacy.txt: 4374) +.vmtrk.com +# ||vmmpxl.com^$third-party (easyprivacy.txt: 4373) +.vmmpxl.com +# ||vmm-satellite2.com^$third-party (easyprivacy.txt: 4372) +.vmm-satellite2.com +# ||vmm-satellite1.com^$third-party (easyprivacy.txt: 4371) +.vmm-satellite1.com +# ||vizury.com^$third-party (easyprivacy.txt: 4370) +.vizury.com +# ||vizisense.net^$third-party (easyprivacy.txt: 4369) +.vizisense.net +# ||vivocha.com^$third-party (easyprivacy.txt: 4368) +.vivocha.com +# ||visualwebsiteoptimizer.com^$third-party (easyprivacy.txt: 4367) +.visualwebsiteoptimizer.com +# ||visualrevenue.com^$third-party (easyprivacy.txt: 4366) +.visualrevenue.com +# ||visualdna.com^$third-party (easyprivacy.txt: 4365) +.visualdna.com +# ||visualdna-stats.com^$third-party (easyprivacy.txt: 4364) +.visualdna-stats.com +# ||visitstreamer.com^$third-party (easyprivacy.txt: 4363) +.visitstreamer.com +# ||visitorville.com^$third-party (easyprivacy.txt: 4362) +.visitorville.com +# ||visitortracklog.com^$third-party (easyprivacy.txt: 4361) +.visitortracklog.com +# ||visitorprofiler.com^$third-party (easyprivacy.txt: 4360) +.visitorprofiler.com +# ||visitorpath.com^$third-party (easyprivacy.txt: 4359) +.visitorpath.com +# ||visitorjs.com^$third-party (easyprivacy.txt: 4358) +.visitorjs.com +# ||visitorinspector.com^$third-party (easyprivacy.txt: 4357) +.visitorinspector.com +# ||visitorglobe.com^$third-party (easyprivacy.txt: 4356) +.visitorglobe.com +# ||visitor-track.com^$third-party (easyprivacy.txt: 4355) +.visitor-track.com +# ||visitlog.net^$third-party (easyprivacy.txt: 4354) +.visitlog.net +# ||visistat.com^$third-party (easyprivacy.txt: 4353) +.visistat.com +# ||visioncriticalpanels.com^$third-party (easyprivacy.txt: 4352) +.visioncriticalpanels.com +# ||visibli.com^$third-party (easyprivacy.txt: 4351) +.visibli.com +# ||visibility-stats.com^$third-party (easyprivacy.txt: 4347) +.visibility-stats.com +# ||virtualnet.co.uk^$third-party (easyprivacy.txt: 4346) +.virtualnet.co.uk +# ||virool.com^$third-party (easyprivacy.txt: 4345) +.virool.com +# ||viralninjas.com^$third-party (easyprivacy.txt: 4344) +.viralninjas.com +# ||vinlens.com^$third-party (easyprivacy.txt: 4343) +.vinlens.com +# ||vigo.ru^$third-party (easyprivacy.txt: 4342) +.vigo.ru +# ||videostat.com^$third-party (easyprivacy.txt: 4341) +.videostat.com +# ||vertster.com^$third-party (easyprivacy.txt: 4340) +.vertster.com +# ||verticalsearchworks.com^$third-party (easyprivacy.txt: 4339) +.verticalsearchworks.com +# ||verticalscope.com^$third-party (easyprivacy.txt: 4338) +.verticalscope.com +# ||vertical-leap.net^$third-party (easyprivacy.txt: 4337) +.vertical-leap.net +# ||vertical-leap.co.uk^$third-party (easyprivacy.txt: 4336) +.vertical-leap.co.uk +# ||ventivmedia.com^$third-party (easyprivacy.txt: 4335) +.ventivmedia.com +# ||vendri.io^$third-party (easyprivacy.txt: 4334) +.vendri.io +# ||velaro.com^$third-party (easyprivacy.txt: 4333) +.velaro.com +# ||veinteractive.com^$third-party (easyprivacy.txt: 4332) +.veinteractive.com +# ||veduy.com^$third-party (easyprivacy.txt: 4331) +.veduy.com +# ||vdna-assets.com^$third-party (easyprivacy.txt: 4330) +.vdna-assets.com +# ||vbanalytics.com^$third-party (easyprivacy.txt: 4329) +.vbanalytics.com +# ||vantage-media.net^$third-party (easyprivacy.txt: 4328) +.vantage-media.net +# ||valuedopinions.co.uk^$third-party (easyprivacy.txt: 4327) +.valuedopinions.co.uk +# ||usuarios-online.com^$third-party (easyprivacy.txt: 4326) +.usuarios-online.com +# ||userzoom.com^$third-party (easyprivacy.txt: 4325) +.userzoom.com +# ||userreport.com^$third-party (easyprivacy.txt: 4324) +.userreport.com +# ||useronlinecounter.com^$third-party (easyprivacy.txt: 4323) +.useronlinecounter.com +# ||userneeds.dk^$third-party (easyprivacy.txt: 4322) +.userneeds.dk +# ||userlook.com^$third-party (easyprivacy.txt: 4321) +.userlook.com +# ||userdmp.com^$third-party (easyprivacy.txt: 4320) +.userdmp.com +# ||usercycle.com^$third-party (easyprivacy.txt: 4319) +.usercycle.com +# ||userchecker.info^$third-party (easyprivacy.txt: 4318) +.userchecker.info +# ||usabilla.com^$third-party (easyprivacy.txt: 4317) +.usabilla.com +# ||usabilitytools.com^$third-party (easyprivacy.txt: 4316) +.usabilitytools.com +# ||urlself.com^$third-party (easyprivacy.txt: 4315) +.urlself.com +# ||urlbrief.com^$third-party (easyprivacy.txt: 4314) +.urlbrief.com +# ||uralweb.ru^$third-party (easyprivacy.txt: 4313) +.uralweb.ru +# ||uptracs.com^$third-party (easyprivacy.txt: 4312) +.uptracs.com +# ||uptimeviewer.com^$third-party (easyprivacy.txt: 4311) +.uptimeviewer.com +# ||upstats.ru^$third-party (easyprivacy.txt: 4310) +.upstats.ru +# ||unicaondemand.com^$third-party (easyprivacy.txt: 4309) +.unicaondemand.com +# ||umbel.com^$third-party (easyprivacy.txt: 4308) +.umbel.com +# ||ukrre-tea.info^$third-party (easyprivacy.txt: 4307) +.ukrre-tea.info +# ||ugdturner.com^$third-party (easyprivacy.txt: 4306) +.ugdturner.com +# ||ubertracking.info^$third-party (easyprivacy.txt: 4305) +.ubertracking.info +# ||ubertags.com^$third-party (easyprivacy.txt: 4304) +.ubertags.com +# ||uadx.com^$third-party (easyprivacy.txt: 4303) +.uadx.com +# ||u5e.com^$third-party (easyprivacy.txt: 4302) +.u5e.com +# ||tynt.com^$third-party (easyprivacy.txt: 4301) +.tynt.com +# ||tylere.net^$third-party (easyprivacy.txt: 4300) +.tylere.net +# ||twopointo.io^$third-party (easyprivacy.txt: 4299) +.twopointo.io +# ||twcount.com^$third-party (easyprivacy.txt: 4298) +.twcount.com +# ||tubetrafficcash.com^$third-party (easyprivacy.txt: 4297) +.tubetrafficcash.com +# ||tsw0.com^$third-party (easyprivacy.txt: 4296) +.tsw0.com +# ||tstlabs.co.uk^$third-party (easyprivacy.txt: 4295) +.tstlabs.co.uk +# ||tsk5.com^$third-party (easyprivacy.txt: 4294) +.tsk5.com +# ||tsk4.com^$third-party (easyprivacy.txt: 4293) +.tsk4.com +# ||tscounter.com^$third-party (easyprivacy.txt: 4292) +.tscounter.com +# ||tscapeplay.com^$third-party (easyprivacy.txt: 4291) +.tscapeplay.com +# ||truehits1.gits.net.th^$third-party (easyprivacy.txt: 4290) +.truehits1.gits.net.th +# ||truehits.in.th^$third-party (easyprivacy.txt: 4289) +.truehits.in.th +# ||tru.am^$third-party (easyprivacy.txt: 4288) +.tru.am +# ||trovus.co.uk^$third-party (easyprivacy.txt: 4287) +.trovus.co.uk +# ||trkjmp.com^$third-party (easyprivacy.txt: 4286) +.trkjmp.com +# ||triggit.com^$third-party (easyprivacy.txt: 4285) +.triggit.com +# ||triggertag.gorillanation.com^$third-party (easyprivacy.txt: 4284) +.triggertag.gorillanation.com +# ||triggeredmessaging.com^$third-party (easyprivacy.txt: 4283) +.triggeredmessaging.com +# ||trendcounter.com^$third-party (easyprivacy.txt: 4282) +.trendcounter.com +# ||trekmedia.net^$third-party (easyprivacy.txt: 4281) +.trekmedia.net +# ||treehousei.com^$third-party (easyprivacy.txt: 4280) +.treehousei.com +# ||trakzor.com^$third-party (easyprivacy.txt: 4279) +.trakzor.com +# ||trakken.de^$third-party (easyprivacy.txt: 4278) +.trakken.de +# ||trailheadapp.com^$third-party (easyprivacy.txt: 4277) +.trailheadapp.com +# ||trail-web.com^$third-party (easyprivacy.txt: 4276) +.trail-web.com +# ||trafinfo.info^$third-party (easyprivacy.txt: 4275) +.trafinfo.info +# ||traffikcntr.com^$third-party (easyprivacy.txt: 4274) +.traffikcntr.com +# ||trafficregenerator.com^$third-party (easyprivacy.txt: 4273) +.trafficregenerator.com +# ||trafficjoint.com^$third-party (easyprivacy.txt: 4272) +.trafficjoint.com +# ||trafficfacts.com^$third-party (easyprivacy.txt: 4271) +.trafficfacts.com +# ||trafficengine.net^$third-party (easyprivacy.txt: 4270) +.trafficengine.net +# ||trafficby.net^$third-party (easyprivacy.txt: 4269) +.trafficby.net +# ||trafex.net^$third-party (easyprivacy.txt: 4268) +.trafex.net +# ||tradescape.biz^$third-party (easyprivacy.txt: 4267) +.tradescape.biz +# ||tradelab.fr^$third-party (easyprivacy.txt: 4266) +.tradelab.fr +# ||tradedoubler.com^$third-party (easyprivacy.txt: 4265) +.tradedoubler.com +# ||trackyourstats.com^$third-party (easyprivacy.txt: 4264) +.trackyourstats.com +# ||trackword.biz^$third-party (easyprivacy.txt: 4263) +.trackword.biz +# ||trackvoluum.com^$third-party (easyprivacy.txt: 4262) +.trackvoluum.com +# ||tracktrk.net^$third-party (easyprivacy.txt: 4261) +.tracktrk.net +# ||tracksy.com^$third-party (easyprivacy.txt: 4260) +.tracksy.com +# ||trackset.com^$third-party (easyprivacy.txt: 4259) +.trackset.com +# ||trackmyweb.net^$third-party (easyprivacy.txt: 4258) +.trackmyweb.net +# ||trackkas.com^$third-party (easyprivacy.txt: 4257) +.trackkas.com +# ||trackjs.com^$third-party (easyprivacy.txt: 4256) +.trackjs.com +# ||trackinglabs.com^$third-party (easyprivacy.txt: 4255) +.trackinglabs.com +# ||tracking202.com^$third-party (easyprivacy.txt: 4254) +.tracking202.com +# ||tracking100.com^$third-party (easyprivacy.txt: 4253) +.tracking100.com +# ||trackedweb.net^$third-party (easyprivacy.txt: 4252) +.trackedweb.net +# ||trackedlink.net^$third-party (easyprivacy.txt: 4251) +.trackedlink.net +# ||trackeame.com^$third-party (easyprivacy.txt: 4250) +.trackeame.com +# ||trackdiscovery.net^$third-party (easyprivacy.txt: 4249) +.trackdiscovery.net +# ||trackconsole.com^$third-party (easyprivacy.txt: 4248) +.trackconsole.com +# ||trackcmp.net^$third-party (easyprivacy.txt: 4247) +.trackcmp.net +# ||trackcdn.com^$third-party (easyprivacy.txt: 4246) +.trackcdn.com +# ||trackbar.info^$third-party (easyprivacy.txt: 4245) +.trackbar.info +# ||trackalyzer.com^$third-party (easyprivacy.txt: 4244) +.trackalyzer.com +# ||track2.me^$third-party (easyprivacy.txt: 4243) +.track2.me +# ||traceworks.com^$third-party (easyprivacy.txt: 4242) +.traceworks.com +# ||tracetracking.net^$third-party (easyprivacy.txt: 4241) +.tracetracking.net +# ||tracer.jp^$third-party (easyprivacy.txt: 4240) +.tracer.jp +# ||tracemyip.org^$third-party (easyprivacy.txt: 4239) +.tracemyip.org +# ||tracelytics.com^$third-party (easyprivacy.txt: 4238) +.tracelytics.com +# ||trace-2000.com^$third-party (easyprivacy.txt: 4237) +.trace-2000.com +# ||tracc.it^$third-party (easyprivacy.txt: 4236) +.tracc.it +# ||touchclarity.com^$third-party (easyprivacy.txt: 4235) +.touchclarity.com +# ||toro-tags.com^$third-party (easyprivacy.txt: 4234) +.toro-tags.com +# ||torbit.com^$third-party (easyprivacy.txt: 4233) +.torbit.com +# ||topofblogs.com^$third-party (easyprivacy.txt: 4232) +.topofblogs.com +# ||topmalaysia.com^$third-party (easyprivacy.txt: 4231) +.topmalaysia.com +# ||toplist.eu^$third-party (easyprivacy.txt: 4230) +.toplist.eu +# ||topdepo.com^$third-party (easyprivacy.txt: 4229) +.topdepo.com +# ||topblogging.com^$third-party (easyprivacy.txt: 4228) +.topblogging.com +# ||topblogarea.com^$third-party (easyprivacy.txt: 4227) +.topblogarea.com +# ||top100webshops.com^$third-party (easyprivacy.txt: 4226) +.top100webshops.com +# ||top100bloggers.com^$third-party (easyprivacy.txt: 4225) +.top100bloggers.com +# ||tns-cs.net^$third-party (easyprivacy.txt: 4224) +.tns-cs.net +# ||tns-counter.ru^$third-party (easyprivacy.txt: 4223) +.tns-counter.ru +# ||tmvtp.com^$third-party (easyprivacy.txt: 4222) +.tmvtp.com +# ||tmpjmp.com^$third-party (easyprivacy.txt: 4221) +.tmpjmp.com +# ||tm1-001.com^$third-party (easyprivacy.txt: 4220) +.tm1-001.com +# ||tl813.com^$third-party (easyprivacy.txt: 4219) +.tl813.com +# ||tiser.com.au^$third-party (easyprivacy.txt: 4218) +.tiser.com.au +# ||tinycounter.com^$third-party (easyprivacy.txt: 4217) +.tinycounter.com +# ||thespecialsearch.com^$third-party (easyprivacy.txt: 4216) +.thespecialsearch.com +# ||thesearchagency.net^$third-party (easyprivacy.txt: 4215) +.thesearchagency.net +# ||thermstats.com^$third-party (easyprivacy.txt: 4214) +.thermstats.com +# ||thefreehitcounter.com^$third-party (easyprivacy.txt: 4213) +.thefreehitcounter.com +# ||thecounter.com^$third-party (easyprivacy.txt: 4212) +.thecounter.com +# ||thebrighttag.com^$third-party (easyprivacy.txt: 4211) +.thebrighttag.com +# ||thebestlinks.com^$third-party (easyprivacy.txt: 4210) +.thebestlinks.com +# ||theadex.com^$third-party (easyprivacy.txt: 4209) +.theadex.com +# ||tetoolbox.com^$third-party (easyprivacy.txt: 4208) +.tetoolbox.com +# ||terabytemedia.com^$third-party (easyprivacy.txt: 4207) +.terabytemedia.com +# ||tentaculos.net^$third-party (easyprivacy.txt: 4206) +.tentaculos.net +# ||tendatta.com^$third-party (easyprivacy.txt: 4205) +.tendatta.com +# ||tellaparts.com^$third-party (easyprivacy.txt: 4204) +.tellaparts.com +# ||tellapart.com^$third-party (easyprivacy.txt: 4203) +.tellapart.com +# ||teljari.is^$third-party (easyprivacy.txt: 4202) +.teljari.is +# ||telize.com^$third-party (easyprivacy.txt: 4201) +.telize.com +# ||telemetrytaxonomy.net^$third-party (easyprivacy.txt: 4200) +.telemetrytaxonomy.net +# ||tealiumiq.com^$third-party (easyprivacy.txt: 4199) +.tealiumiq.com +# ||tdstats.com^$third-party (easyprivacy.txt: 4198) +.tdstats.com +# ||tctm.co^$third-party (easyprivacy.txt: 4197) +.tctm.co +# ||tcimg.com^$third-party (easyprivacy.txt: 4196) +.tcimg.com +# ||tcactivity.net^$third-party (easyprivacy.txt: 4195) +.tcactivity.net +# ||targetfuel.com^$third-party (easyprivacy.txt: 4194) +.targetfuel.com +# ||tapstream.com^$third-party (easyprivacy.txt: 4193) +.tapstream.com +# ||taps.io^$third-party (easyprivacy.txt: 4192) +.taps.io +# ||tapfiliate.com^$third-party (easyprivacy.txt: 4191) +.tapfiliate.com +# ||tagtray.com^$third-party (easyprivacy.txt: 4190) +.tagtray.com +# ||tagsrvcs.com^$third-party (easyprivacy.txt: 4189) +.tagsrvcs.com +# ||tagifydiageo.com^$third-party (easyprivacy.txt: 4188) +.tagifydiageo.com +# ||tagcommander.com^$third-party (easyprivacy.txt: 4187) +.tagcommander.com +# ||tag4arm.com^$third-party (easyprivacy.txt: 4186) +.tag4arm.com +# ||t-analytics.com^$third-party (easyprivacy.txt: 4185) +.t-analytics.com +# ||sysomos.com^$third-party (easyprivacy.txt: 4184) +.sysomos.com +# ||synthasite.net^$third-party (easyprivacy.txt: 4183) +.synthasite.net +# ||synergy-sync.com^$third-party (easyprivacy.txt: 4182) +.synergy-sync.com +# ||synergy-e.com^$third-party (easyprivacy.txt: 4181) +.synergy-e.com +# ||sxtracking.com^$third-party (easyprivacy.txt: 4180) +.sxtracking.com +# ||swoopgrid.com^$third-party (easyprivacy.txt: 4179) +.swoopgrid.com +# ||swiss-counter.com^$third-party (easyprivacy.txt: 4178) +.swiss-counter.com +# ||swfstats.com^$third-party (easyprivacy.txt: 4177) +.swfstats.com +# ||swcs.jp^$third-party (easyprivacy.txt: 4176) +.swcs.jp +# ||survicate.com^$third-party (easyprivacy.txt: 4175) +.survicate.com +# ||surveywriter.com^$third-party (easyprivacy.txt: 4174) +.surveywriter.com +# ||surveyscout.com^$third-party (easyprivacy.txt: 4173) +.surveyscout.com +# ||surfertracker.com^$third-party (easyprivacy.txt: 4172) +.surfertracker.com +# ||surfcounters.com^$third-party (easyprivacy.txt: 4171) +.surfcounters.com +# ||supert.ag^$third-party (easyprivacy.txt: 4170) +.supert.ag +# ||superstats.com^$third-party (easyprivacy.txt: 4169) +.superstats.com +# ||supercounters.com^$third-party (easyprivacy.txt: 4168) +.supercounters.com +# ||sundaysky.com^$third-party (easyprivacy.txt: 4167) +.sundaysky.com +# ||summitemarketinganalytics.com^$third-party (easyprivacy.txt: 4166) +.summitemarketinganalytics.com +# ||subtraxion.com^$third-party (easyprivacy.txt: 4165) +.subtraxion.com +# ||submitnet.net^$third-party (easyprivacy.txt: 4164) +.submitnet.net +# ||sub2tech.com^$third-party (easyprivacy.txt: 4163) +.sub2tech.com +# ||strs.jp^$third-party (easyprivacy.txt: 4162) +.strs.jp +# ||stormiq.com^$third-party (easyprivacy.txt: 4161) +.stormiq.com +# ||stormcontainertag.com^$third-party (easyprivacy.txt: 4160) +.stormcontainertag.com +# ||stippleit.com^$third-party (easyprivacy.txt: 4159) +.stippleit.com +# ||stellaservice.com^$third-party (easyprivacy.txt: 4158) +.stellaservice.com +# ||steelhousemedia.com^$third-party (easyprivacy.txt: 4157) +.steelhousemedia.com +# ||stcounter.com^$third-party (easyprivacy.txt: 4156) +.stcounter.com +# ||stcllctrs.com^$third-party (easyprivacy.txt: 4155) +.stcllctrs.com +# ||statuncore.com^$third-party (easyprivacy.txt: 4154) +.statuncore.com +# ||statun.com^$third-party (easyprivacy.txt: 4153) +.statun.com +# ||stattrax.com^$third-party (easyprivacy.txt: 4152) +.stattrax.com +# ||stattooz.com^$third-party (easyprivacy.txt: 4151) +.stattooz.com +# ||statswave.com^$third-party (easyprivacy.txt: 4150) +.statswave.com +# ||statssheet.com^$third-party (easyprivacy.txt: 4149) +.statssheet.com +# ||statsrely.com^$third-party (easyprivacy.txt: 4148) +.statsrely.com +# ||statsmachine.com^$third-party (easyprivacy.txt: 4147) +.statsmachine.com +# ||statsit.com^$third-party (easyprivacy.txt: 4146) +.statsit.com +# ||statsinsight.com^$third-party (easyprivacy.txt: 4145) +.statsinsight.com +# ||statsimg.com^$third-party (easyprivacy.txt: 4144) +.statsimg.com +# ||statsbox.nl^$third-party (easyprivacy.txt: 4143) +.statsbox.nl +# ||stats4you.com^$third-party (easyprivacy.txt: 4142) +.stats4you.com +# ||stats4all.com^$third-party (easyprivacy.txt: 4141) +.stats4all.com +# ||stats2513.com^$third-party (easyprivacy.txt: 4140) +.stats2513.com +# ||stats21.com^$third-party (easyprivacy.txt: 4139) +.stats21.com +# ||stats2.com^$third-party (easyprivacy.txt: 4138) +.stats2.com +# ||stats.cz^$third-party (easyprivacy.txt: 4137) +.stats.cz +# ||stats-analytics.info^$third-party (easyprivacy.txt: 4136) +.stats-analytics.info +# ||statowl.com^$third-party (easyprivacy.txt: 4135) +.statowl.com +# ||statistx.com^$third-party (easyprivacy.txt: 4134) +.statistx.com +# ||statistiche-web.com^$third-party (easyprivacy.txt: 4133) +.statistiche-web.com +# ||statisfy.net^$third-party (easyprivacy.txt: 4132) +.statisfy.net +# ||stathound.com^$third-party (easyprivacy.txt: 4131) +.stathound.com +# ||stathat.com^$third-party (easyprivacy.txt: 4130) +.stathat.com +# ||statcounters.info^$third-party (easyprivacy.txt: 4129) +.statcounters.info +# ||statcounterfree.com^$third-party (easyprivacy.txt: 4128) +.statcounterfree.com +# ||statcounter.com^$third-party (easyprivacy.txt: 4127) +.statcounter.com +# ||statcount.com^$third-party (easyprivacy.txt: 4126) +.statcount.com +# ||stat24.com^$third-party (easyprivacy.txt: 4125) +.stat24.com +# ||stat08.com^$third-party (easyprivacy.txt: 4124) +.stat08.com +# ||startstat.ru^$third-party (easyprivacy.txt: 4123) +.startstat.ru +# ||srpx.net^$third-party (easyprivacy.txt: 4122) +.srpx.net +# ||squidanalytics.com^$third-party (easyprivacy.txt: 4121) +.squidanalytics.com +# ||spywords.com^$third-party (easyprivacy.txt: 4120) +.spywords.com +# ||spylog.ru^$third-party (easyprivacy.txt: 4119) +.spylog.ru +# ||spylog.com^$third-party (easyprivacy.txt: 4118) +.spylog.com +# ||spycounter.net^$third-party (easyprivacy.txt: 4117) +.spycounter.net +# ||sptag3.com^$third-party (easyprivacy.txt: 4116) +.sptag3.com +# ||sptag2.com^$third-party (easyprivacy.txt: 4115) +.sptag2.com +# ||sptag1.com^$third-party (easyprivacy.txt: 4114) +.sptag1.com +# ||sptag.com^$third-party (easyprivacy.txt: 4113) +.sptag.com +# ||springserve.com^$third-party (easyprivacy.txt: 4112) +.springserve.com +# ||springmetrics.com^$third-party (easyprivacy.txt: 4111) +.springmetrics.com +# ||spring.de^$third-party (easyprivacy.txt: 4110) +.spring.de +# ||spotmx.com^$third-party (easyprivacy.txt: 4109) +.spotmx.com +# ||sponsored.com^$third-party (easyprivacy.txt: 4108) +.sponsored.com +# ||spn.ee^$third-party (easyprivacy.txt: 4107) +.spn.ee +# ||spn-twr-14.com^$third-party (easyprivacy.txt: 4106) +.spn-twr-14.com +# ||splyt.com^$third-party (easyprivacy.txt: 4105) +.splyt.com +# ||splurgi.com^$third-party (easyprivacy.txt: 4104) +.splurgi.com +# ||splittag.com^$third-party (easyprivacy.txt: 4103) +.splittag.com +# ||speed-trap.com^$third-party (easyprivacy.txt: 4102) +.speed-trap.com +# ||spectate.com^$third-party (easyprivacy.txt: 4101) +.spectate.com +# ||sophus3.com^$third-party (easyprivacy.txt: 4100) +.sophus3.com +# ||sometrics.com^$third-party (easyprivacy.txt: 4099) +.sometrics.com +# ||sokrati.com^$third-party (easyprivacy.txt: 4098) +.sokrati.com +# ||softonic-analytics.net^$third-party (easyprivacy.txt: 4097) +.softonic-analytics.net +# ||sodoit.com^$third-party (easyprivacy.txt: 4096) +.sodoit.com +# ||socketanalytics.com^$third-party (easyprivacy.txt: 4095) +.socketanalytics.com +# ||socialtrack.net^$third-party (easyprivacy.txt: 4094) +.socialtrack.net +# ||socialtrack.co^$third-party (easyprivacy.txt: 4093) +.socialtrack.co +# ||socialprofitmachine.com^$third-party (easyprivacy.txt: 4092) +.socialprofitmachine.com +# ||snowsignal.com^$third-party (easyprivacy.txt: 4091) +.snowsignal.com +# ||snoobi.com^$third-party (easyprivacy.txt: 4090) +.snoobi.com +# ||sniphub.com^$third-party (easyprivacy.txt: 4089) +.sniphub.com +# ||sniperlog.ru^$third-party (easyprivacy.txt: 4088) +.sniperlog.ru +# ||smrtlnks.com^$third-party (easyprivacy.txt: 4087) +.smrtlnks.com +# ||smileyhost.net^$third-party (easyprivacy.txt: 4086) +.smileyhost.net +# ||smfsvc.com^$third-party (easyprivacy.txt: 4085) +.smfsvc.com +# ||smartzonessva.com^$third-party (easyprivacy.txt: 4084) +.smartzonessva.com +# ||smartracker.net^$third-party (easyprivacy.txt: 4083) +.smartracker.net +# ||smarterremarketer.net^$third-party (easyprivacy.txt: 4082) +.smarterremarketer.net +# ||smarterhq.io^$third-party (easyprivacy.txt: 4081) +.smarterhq.io +# ||smart-ip.net^$third-party (easyprivacy.txt: 4080) +.smart-ip.net +# ||smallseotools.com^$third-party (easyprivacy.txt: 4079) +.smallseotools.com +# ||slingpic.com^$third-party (easyprivacy.txt: 4078) +.slingpic.com +# ||sl-ct5.com^$third-party (easyprivacy.txt: 4077) +.sl-ct5.com +# ||skyglue.com^$third-party (easyprivacy.txt: 4076) +.skyglue.com +# ||skimresources.com^$third-party (easyprivacy.txt: 4075) +.skimresources.com +# ||sitetraq.nl^$third-party (easyprivacy.txt: 4074) +.sitetraq.nl +# ||sitetracker.com^$third-party (easyprivacy.txt: 4073) +.sitetracker.com +# ||sitetagger.co.uk^$third-party (easyprivacy.txt: 4072) +.sitetagger.co.uk +# ||sitetag.us^$third-party (easyprivacy.txt: 4071) +.sitetag.us +# ||sitestat.com^$third-party (easyprivacy.txt: 4070) +.sitestat.com +# ||sitereport.org^$third-party (easyprivacy.txt: 4069) +.sitereport.org +# ||sitemeter.com^$third-party (easyprivacy.txt: 4068) +.sitemeter.com +# ||sitelinktrack.com^$third-party (easyprivacy.txt: 4067) +.sitelinktrack.com +# ||siteimprove.com^$third-party (easyprivacy.txt: 4066) +.siteimprove.com +# ||sitecompass.com^$third-party (easyprivacy.txt: 4065) +.sitecompass.com +# ||sitebro.tw^$third-party (easyprivacy.txt: 4064) +.sitebro.tw +# ||sitebro.net^$third-party (easyprivacy.txt: 4063) +.sitebro.net +# ||sitebro.com^$third-party (easyprivacy.txt: 4062) +.sitebro.com +# ||siteapps.com^$third-party (easyprivacy.txt: 4061) +.siteapps.com +# ||singlefeed.com^$third-party (easyprivacy.txt: 4060) +.singlefeed.com +# ||simplycast.us^$third-party (easyprivacy.txt: 4059) +.simplycast.us +# ||simpli.fi^$third-party (easyprivacy.txt: 4058) +.simpli.fi +# ||simplereach.com^$third-party (easyprivacy.txt: 4057) +.simplereach.com +# ||simplehitcounter.com^$third-party (easyprivacy.txt: 4056) +.simplehitcounter.com +# ||silverpush.co^$third-party (easyprivacy.txt: 4055) +.silverpush.co +# ||silverpop.com^$third-party (easyprivacy.txt: 4054) +.silverpop.com +# ||signup-way.com^$third-party (easyprivacy.txt: 4053) +.signup-way.com +# ||siftscience.com^$third-party (easyprivacy.txt: 4052) +.siftscience.com +# ||shrinktheweb.com^$third-party (easyprivacy.txt: 4051) +.shrinktheweb.com +# ||showroomlogic.com^$third-party (easyprivacy.txt: 4050) +.showroomlogic.com +# ||shippinginsights.com^$third-party (easyprivacy.txt: 4049) +.shippinginsights.com +# ||shinystat.com^$third-party (easyprivacy.txt: 4048) +.shinystat.com +# ||sharpspring.com^$third-party (easyprivacy.txt: 4047) +.sharpspring.com +# ||sf14g.com^$third-party (easyprivacy.txt: 4046) +.sf14g.com +# ||sexystat.com^$third-party (easyprivacy.txt: 4045) +.sexystat.com +# ||sexcounter.com^$third-party (easyprivacy.txt: 4044) +.sexcounter.com +# ||sessioncam.com^$third-party (easyprivacy.txt: 4043) +.sessioncam.com +# ||servustats.com^$third-party (easyprivacy.txt: 4042) +.servustats.com +# ||servinator.pw^$third-party (easyprivacy.txt: 4041) +.servinator.pw +# ||servestats.com^$third-party (easyprivacy.txt: 4040) +.servestats.com +# ||serious-partners.com^$third-party (easyprivacy.txt: 4039) +.serious-partners.com +# ||seoradar.ro^$third-party (easyprivacy.txt: 4038) +.seoradar.ro +# ||seoparts.net^$third-party (easyprivacy.txt: 4037) +.seoparts.net +# ||seomoz.org^$third-party (easyprivacy.txt: 4036) +.seomoz.org +# ||seomonitor.ro^$third-party (easyprivacy.txt: 4035) +.seomonitor.ro +# ||sendtraffic.com^$third-party (easyprivacy.txt: 4034) +.sendtraffic.com +# ||semasio.net^$third-party (easyprivacy.txt: 4033) +.semasio.net +# ||semanticverses.com^$third-party (easyprivacy.txt: 4032) +.semanticverses.com +# ||sellpoints.com^$third-party (easyprivacy.txt: 4031) +.sellpoints.com +# ||selaris.com^$third-party (easyprivacy.txt: 4030) +.selaris.com +# ||segmentify.com^$third-party (easyprivacy.txt: 4029) +.segmentify.com +# ||segment.io^$third-party (easyprivacy.txt: 4028) +.segment.io +# ||segment.com^$third-party (easyprivacy.txt: 4027) +.segment.com +# ||segment-analytics.com^$third-party (easyprivacy.txt: 4026) +.segment-analytics.com +# ||seewhy.com^$third-party (easyprivacy.txt: 4025) +.seewhy.com +# ||seehits.com^$third-party (easyprivacy.txt: 4024) +.seehits.com +# ||sedotracker.com^$third-party (easyprivacy.txt: 4023) +.sedotracker.com +# ||securepaths.com^$third-party (easyprivacy.txt: 4022) +.securepaths.com +# ||secure-pixel.com^$third-party (easyprivacy.txt: 4021) +.secure-pixel.com +# ||searchplow.com^$third-party (easyprivacy.txt: 4020) +.searchplow.com +# ||searchignite.com^$third-party (easyprivacy.txt: 4019) +.searchignite.com +# ||searchfeed.com^$third-party (easyprivacy.txt: 4018) +.searchfeed.com +# ||sddan.com^$third-party (easyprivacy.txt: 4017) +.sddan.com +# ||scriptshead.com^$third-party (easyprivacy.txt: 4016) +.scriptshead.com +# ||scripts21.com^$third-party (easyprivacy.txt: 4015) +.scripts21.com +# ||script.ag^$third-party (easyprivacy.txt: 4014) +.script.ag +# ||scrippscontroller.com^$third-party (easyprivacy.txt: 4013) +.scrippscontroller.com +# ||scoutanalytics.net^$third-party (easyprivacy.txt: 4012) +.scoutanalytics.net +# ||scorecardresearch.com^$third-party (easyprivacy.txt: 4011) +.scorecardresearch.com +# ||sciencerevenue.com^$third-party (easyprivacy.txt: 4010) +.sciencerevenue.com +# ||schoolyeargo.com^$third-party (easyprivacy.txt: 4009) +.schoolyeargo.com +# ||scastnet.com^$third-party (easyprivacy.txt: 4008) +.scastnet.com +# ||scarabresearch.com^$third-party (easyprivacy.txt: 4007) +.scarabresearch.com +# ||scaledb.com^$third-party (easyprivacy.txt: 4006) +.scaledb.com +# ||sbdtds.com^$third-party (easyprivacy.txt: 4005) +.sbdtds.com +# ||sayutracking.co.uk^$third-party (easyprivacy.txt: 4004) +.sayutracking.co.uk +# ||sas15k01.com^$third-party (easyprivacy.txt: 4003) +.sas15k01.com +# ||sarevtop.com^$third-party (easyprivacy.txt: 4002) +.sarevtop.com +# ||sapha.com^$third-party (easyprivacy.txt: 4001) +.sapha.com +# ||saletrack.co.uk^$third-party (easyprivacy.txt: 4000) +.saletrack.co.uk +# ||sajari.com^$third-party (easyprivacy.txt: 3999) +.sajari.com +# ||sageanalyst.net^$third-party (easyprivacy.txt: 3998) +.sageanalyst.net +# ||s3s-main.net^$third-party (easyprivacy.txt: 3997) +.s3s-main.net +# ||rztrkr.com^$third-party (easyprivacy.txt: 3996) +.rztrkr.com +# ||rumanalytics.com^$third-party (easyprivacy.txt: 3995) +.rumanalytics.com +# ||ru4.com^$third-party (easyprivacy.txt: 3994) +.ru4.com +# ||rtrk.co.nz^$third-party (easyprivacy.txt: 3993) +.rtrk.co.nz +# ||rtfn.net^$third-party (easyprivacy.txt: 3992) +.rtfn.net +# ||rsvpgenius.com^$third-party (easyprivacy.txt: 3991) +.rsvpgenius.com +# ||rs6.net^$third-party (easyprivacy.txt: 3990) +.rs6.net +# ||rs0.co.uk^$third-party (easyprivacy.txt: 3989) +.rs0.co.uk +# ||rrimpl.com^$third-party (easyprivacy.txt: 3988) +.rrimpl.com +# ||rollingcounters.com^$third-party (easyprivacy.txt: 3987) +.rollingcounters.com +# ||roivista.com^$third-party (easyprivacy.txt: 3986) +.roivista.com +# ||roitesting.com^$third-party (easyprivacy.txt: 3985) +.roitesting.com +# ||roispy.com^$third-party (easyprivacy.txt: 3984) +.roispy.com +# ||roiservice.com^$third-party (easyprivacy.txt: 3983) +.roiservice.com +# ||roia.biz^$third-party (easyprivacy.txt: 3982) +.roia.biz +# ||roi-rocket.net^$third-party (easyprivacy.txt: 3981) +.roi-rocket.net +# ||roi-pro.com^$third-party (easyprivacy.txt: 3980) +.roi-pro.com +# ||rnlabs.com^$third-party (easyprivacy.txt: 3979) +.rnlabs.com +# ||rng-snp-003.com^$third-party (easyprivacy.txt: 3978) +.rng-snp-003.com +# ||rnengage.com^$third-party (easyprivacy.txt: 3977) +.rnengage.com +# ||rmtag.com^$third-party (easyprivacy.txt: 3976) +.rmtag.com +# ||rlcdn.com^$third-party (easyprivacy.txt: 3975) +.rlcdn.com +# ||rktu.com^$third-party (easyprivacy.txt: 3974) +.rktu.com +# ||rkdms.com^$third-party (easyprivacy.txt: 3973) +.rkdms.com +# ||ritecounter.com^$third-party (easyprivacy.txt: 3972) +.ritecounter.com +# ||richmetrics.com^$third-party (easyprivacy.txt: 3971) +.richmetrics.com +# ||richard-group.com^$third-party (easyprivacy.txt: 3970) +.richard-group.com +# ||riastats.com^$third-party (easyprivacy.txt: 3969) +.riastats.com +# ||rhinoseo.com^$third-party (easyprivacy.txt: 3968) +.rhinoseo.com +# ||rfihub.com^$third-party (easyprivacy.txt: 3967) +.rfihub.com +# ||reztrack.com^$third-party (easyprivacy.txt: 3966) +.reztrack.com +# ||rewardtv.com^$third-party (easyprivacy.txt: 3965) +.rewardtv.com +# ||revsw.net^$third-party (easyprivacy.txt: 3964) +.revsw.net +# ||revolvermaps.com^$third-party (easyprivacy.txt: 3963) +.revolvermaps.com +# ||revenuewire.net^$third-party (easyprivacy.txt: 3962) +.revenuewire.net +# ||revenuescience.com^$third-party (easyprivacy.txt: 3961) +.revenuescience.com +# ||revenuepilot.com^$third-party (easyprivacy.txt: 3960) +.revenuepilot.com +# ||revdn.net^$third-party (easyprivacy.txt: 3959) +.revdn.net +# ||retags.us^$third-party (easyprivacy.txt: 3958) +.retags.us +# ||responsetap.com^$third-party (easyprivacy.txt: 3957) +.responsetap.com +# ||reson8.com^$third-party (easyprivacy.txt: 3956) +.reson8.com +# ||researchnow.co.uk^$third-party (easyprivacy.txt: 3955) +.researchnow.co.uk +# ||research-tool.com^$third-party (easyprivacy.txt: 3954) +.research-tool.com +# ||res-x.com^$third-party (easyprivacy.txt: 3953) +.res-x.com +# ||remarketstats.com^$third-party (easyprivacy.txt: 3952) +.remarketstats.com +# ||relmaxtop.com^$third-party (easyprivacy.txt: 3951) +.relmaxtop.com +# ||reliablecounter.com^$third-party (easyprivacy.txt: 3950) +.reliablecounter.com +# ||relead.com^$third-party (easyprivacy.txt: 3949) +.relead.com +# ||reinvigorate.net^$third-party (easyprivacy.txt: 3948) +.reinvigorate.net +# ||refersion.com^$third-party (easyprivacy.txt: 3947) +.refersion.com +# ||referrer.org^$third-party (easyprivacy.txt: 3946) +.referrer.org +# ||referlytics.com^$third-party (easyprivacy.txt: 3945) +.referlytics.com +# ||referforex.com^$third-party (easyprivacy.txt: 3944) +.referforex.com +# ||referer.org^$third-party (easyprivacy.txt: 3943) +.referer.org +# ||reedge.com^$third-party (easyprivacy.txt: 3942) +.reedge.com +# ||reedbusiness.net^$third-party (easyprivacy.txt: 3941) +.reedbusiness.net +# ||redstatcounter.com^$third-party (easyprivacy.txt: 3940) +.redstatcounter.com +# ||redcounter.net^$third-party (easyprivacy.txt: 3939) +.redcounter.net +# ||recoset.com^$third-party (easyprivacy.txt: 3938) +.recoset.com +# ||realtracker.com^$third-party (easyprivacy.txt: 3937) +.realtracker.com +# ||realtimewebstats.net^$third-party (easyprivacy.txt: 3936) +.realtimewebstats.net +# ||realtimeplease.com^$third-party (easyprivacy.txt: 3935) +.realtimeplease.com +# ||realcounters.com^$third-party (easyprivacy.txt: 3934) +.realcounters.com +# ||realcounter.eu^$third-party (easyprivacy.txt: 3933) +.realcounter.eu +# ||real5traf.ru^$third-party (easyprivacy.txt: 3932) +.real5traf.ru +# ||readnotify.com^$third-party (easyprivacy.txt: 3931) +.readnotify.com +# ||readertracking.com^$third-party (easyprivacy.txt: 3930) +.readertracking.com +# ||reactful.com^$third-party (easyprivacy.txt: 3929) +.reactful.com +# ||reachsocket.com^$third-party (easyprivacy.txt: 3928) +.reachsocket.com +# ||reachforce.com^$third-party (easyprivacy.txt: 3927) +.reachforce.com +# ||rating.in^$third-party (easyprivacy.txt: 3926) +.rating.in +# ||rapidtrk.net^$third-party (easyprivacy.txt: 3925) +.rapidtrk.net +# ||rapidstats.net^$third-party (easyprivacy.txt: 3924) +.rapidstats.net +# ||rapidcounter.com^$third-party (easyprivacy.txt: 3923) +.rapidcounter.com +# ||rankinteractive.com^$third-party (easyprivacy.txt: 3922) +.rankinteractive.com +# ||rankingpartner.com^$third-party (easyprivacy.txt: 3921) +.rankingpartner.com +# ||rank-hits.com^$third-party (easyprivacy.txt: 3920) +.rank-hits.com +# ||rampmetrics.com^$third-party (easyprivacy.txt: 3919) +.rampmetrics.com +# ||radiomanlibya.com^$third-party (easyprivacy.txt: 3918) +.radiomanlibya.com +# ||radarurl.com^$third-party (easyprivacy.txt: 3917) +.radarurl.com +# ||radarstats.com^$third-party (easyprivacy.txt: 3916) +.radarstats.com +# ||r7ls.net^$third-party (easyprivacy.txt: 3915) +.r7ls.net +# ||qzlog.com^$third-party (easyprivacy.txt: 3914) +.qzlog.com +# ||quintelligence.com^$third-party (easyprivacy.txt: 3913) +.quintelligence.com +# ||quillion.com^$third-party (easyprivacy.txt: 3912) +.quillion.com +# ||questradeaffiliates.com^$third-party (easyprivacy.txt: 3911) +.questradeaffiliates.com +# ||questionpro.com^$third-party (easyprivacy.txt: 3910) +.questionpro.com +# ||qubitproducts.com^$third-party (easyprivacy.txt: 3909) +.qubitproducts.com +# ||qsstats.com^$third-party (easyprivacy.txt: 3903) +.qsstats.com +# ||qoijertneio.com^$third-party (easyprivacy.txt: 3902) +.qoijertneio.com +# ||qdtracking.com^$third-party (easyprivacy.txt: 3901) +.qdtracking.com +# ||qbop.com^$third-party (easyprivacy.txt: 3900) +.qbop.com +# ||qbaka.net^$third-party (easyprivacy.txt: 3899) +.qbaka.net +# ||q-stats.nl^$third-party (easyprivacy.txt: 3898) +.q-stats.nl +# ||q-counter.com^$third-party (easyprivacy.txt: 3897) +.q-counter.com +# ||pzkysq.pink^$third-party (easyprivacy.txt: 3896) +.pzkysq.pink +# ||putags.com^$third-party (easyprivacy.txt: 3895) +.putags.com +# ||purevideo.com^$third-party (easyprivacy.txt: 3894) +.purevideo.com +# ||pureairhits.com^$third-party (easyprivacy.txt: 3893) +.pureairhits.com +# ||pulsemaps.com^$third-party (easyprivacy.txt: 3892) +.pulsemaps.com +# ||pulselog.com^$third-party (easyprivacy.txt: 3891) +.pulselog.com +# ||pulleymarketing.com^$third-party (easyprivacy.txt: 3890) +.pulleymarketing.com +# ||publishflow.com^$third-party (easyprivacy.txt: 3889) +.publishflow.com +# ||ptrk-wn.com^$third-party (easyprivacy.txt: 3888) +.ptrk-wn.com +# ||ptp123.com^$third-party (easyprivacy.txt: 3887) +.ptp123.com +# ||pto-slb-09.com^$third-party (easyprivacy.txt: 3886) +.pto-slb-09.com +# ||ptengine.com^$third-party (easyprivacy.txt: 3885) +.ptengine.com +# ||psyma-statistics.com^$third-party (easyprivacy.txt: 3884) +.psyma-statistics.com +# ||pstats.com^$third-party (easyprivacy.txt: 3883) +.pstats.com +# ||prtracker.com^$third-party (easyprivacy.txt: 3882) +.prtracker.com +# ||proxad.net^$third-party (easyprivacy.txt: 3881) +.proxad.net +# ||provenpixel.com^$third-party (easyprivacy.txt: 3880) +.provenpixel.com +# ||proofpositivemedia.com^$third-party (easyprivacy.txt: 3879) +.proofpositivemedia.com +# ||promotionengine.com^$third-party (easyprivacy.txt: 3878) +.promotionengine.com +# ||projectsunblock.com^$third-party (easyprivacy.txt: 3877) +.projectsunblock.com +# ||projecthaile.com^$third-party (easyprivacy.txt: 3876) +.projecthaile.com +# ||profilesnitch.com^$third-party (easyprivacy.txt: 3875) +.profilesnitch.com +# ||profilertracking3.com^$third-party (easyprivacy.txt: 3874) +.profilertracking3.com +# ||proclivitysystems.com^$third-party (easyprivacy.txt: 3873) +.proclivitysystems.com +# ||prnx.net^$third-party (easyprivacy.txt: 3872) +.prnx.net +# ||primetag.net^$third-party (easyprivacy.txt: 3871) +.primetag.net +# ||prfct.co^$third-party (easyprivacy.txt: 3870) +.prfct.co +# ||predictiveresponse.net^$third-party (easyprivacy.txt: 3869) +.predictiveresponse.net +# ||predictivedna.com^$third-party (easyprivacy.txt: 3868) +.predictivedna.com +# ||predicta.net^$third-party (easyprivacy.txt: 3867) +.predicta.net +# ||precisioncounter.com^$third-party (easyprivacy.txt: 3866) +.precisioncounter.com +# ||prchecker.info^$third-party (easyprivacy.txt: 3865) +.prchecker.info +# ||ppctracking.net^$third-party (easyprivacy.txt: 3864) +.ppctracking.net +# ||ppclocation.biz^$third-party (easyprivacy.txt: 3863) +.ppclocation.biz +# ||postclickmarketing.com^$third-party (easyprivacy.txt: 3862) +.postclickmarketing.com +# ||postaffiliatepro.com^$third-party (easyprivacy.txt: 3861) +.postaffiliatepro.com +# ||posst.co^$third-party (easyprivacy.txt: 3860) +.posst.co +# ||porngraph.com^$third-party (easyprivacy.txt: 3859) +.porngraph.com +# ||populr.me^$third-party (easyprivacy.txt: 3858) +.populr.me +# ||popsample.com^$third-party (easyprivacy.txt: 3857) +.popsample.com +# ||polarmobile.com^$third-party (easyprivacy.txt: 3856) +.polarmobile.com +# ||pointomatic.com^$third-party (easyprivacy.txt: 3855) +.pointomatic.com +# ||pm14.com^$third-party (easyprivacy.txt: 3854) +.pm14.com +# ||pm0.net^$third-party (easyprivacy.txt: 3853) +.pm0.net +# ||plwosvr.net^$third-party (easyprivacy.txt: 3852) +.plwosvr.net +# ||plugin.ws^$third-party (easyprivacy.txt: 3851) +.plugin.ws +# ||plexop.com^$third-party (easyprivacy.txt: 3850) +.plexop.com +# ||pleisty.com^$third-party (easyprivacy.txt: 3849) +.pleisty.com +# ||plecki.com^$third-party (easyprivacy.txt: 3848) +.plecki.com +# ||placemypixel.com^$third-party (easyprivacy.txt: 3847) +.placemypixel.com +# ||pixelsnippet.com^$third-party (easyprivacy.txt: 3846) +.pixelsnippet.com +# ||pixelrevenue.com^$third-party (easyprivacy.txt: 3845) +.pixelrevenue.com +# ||pixelinteractivemedia.com^$third-party (easyprivacy.txt: 3844) +.pixelinteractivemedia.com +# ||pixeleze.com^$third-party (easyprivacy.txt: 3843) +.pixeleze.com +# ||pixel.watch^$third-party (easyprivacy.txt: 3842) +.pixel.watch +# ||pixel.parsely.com^$third-party (easyprivacy.txt: 3841) +.pixel.parsely.com +# ||pixel.ad^$third-party (easyprivacy.txt: 3840) +.pixel.ad +# ||pingomatic.com^$third-party (easyprivacy.txt: 3839) +.pingomatic.com +# ||pingil.com^$third-party (easyprivacy.txt: 3838) +.pingil.com +# ||pingdom.net^$third-party (easyprivacy.txt: 3837) +.pingdom.net +# ||pingagenow.com^$third-party (easyprivacy.txt: 3836) +.pingagenow.com +# ||ping-fast.com^$third-party (easyprivacy.txt: 3835) +.ping-fast.com +# ||pikzor.com^$third-party (easyprivacy.txt: 3834) +.pikzor.com +# ||pickzor.com^$third-party (easyprivacy.txt: 3833) +.pickzor.com +# ||phone-analytics.com^$third-party (easyprivacy.txt: 3832) +.phone-analytics.com +# ||phonalytics.com^$third-party (easyprivacy.txt: 3831) +.phonalytics.com +# ||petametrics.com^$third-party (easyprivacy.txt: 3830) +.petametrics.com +# ||personyze.com^$third-party (easyprivacy.txt: 3829) +.personyze.com +# ||perion.com^$third-party (easyprivacy.txt: 3828) +.perion.com +# ||performtracking.com^$third-party (easyprivacy.txt: 3827) +.performtracking.com +# ||performancerevenues.com^$third-party (easyprivacy.txt: 3826) +.performancerevenues.com +# ||perfiliate.com^$third-party (easyprivacy.txt: 3825) +.perfiliate.com +# ||perfectaudience.com^$third-party (easyprivacy.txt: 3824) +.perfectaudience.com +# ||perfdrive.com^$third-party (easyprivacy.txt: 3823) +.perfdrive.com +# ||percentmobile.com^$third-party (easyprivacy.txt: 3822) +.percentmobile.com +# ||peerius.com^$third-party (easyprivacy.txt: 3821) +.peerius.com +# ||pcspeedup.com^$third-party (easyprivacy.txt: 3820) +.pcspeedup.com +# ||pclicks.com^$third-party (easyprivacy.txt: 3819) +.pclicks.com +# ||pathful.com^$third-party (easyprivacy.txt: 3818) +.pathful.com +# ||pass-1234.com^$third-party (easyprivacy.txt: 3817) +.pass-1234.com +# ||parrable.com^$third-party (easyprivacy.txt: 3816) +.parrable.com +# ||parklogic.com^$third-party (easyprivacy.txt: 3815) +.parklogic.com +# ||pardot.com^$third-party (easyprivacy.txt: 3814) +.pardot.com +# ||paidstats.com^$third-party (easyprivacy.txt: 3813) +.paidstats.com +# ||pages05.net^$third-party (easyprivacy.txt: 3812) +.pages05.net +# ||pagefair.com^$third-party (easyprivacy.txt: 3811) +.pagefair.com +# ||pa-oa.com^$third-party (easyprivacy.txt: 3810) +.pa-oa.com +# ||p0.raasnet.com^$third-party (easyprivacy.txt: 3809) +.p0.raasnet.com +# ||p.raasnet.com^$third-party (easyprivacy.txt: 3808) +.p.raasnet.com +# ||p.l1v.ly^$third-party (easyprivacy.txt: 3807) +.p.l1v.ly +# ||p-td.com^$third-party (easyprivacy.txt: 3806) +.p-td.com +# ||oxidy.com^$third-party (easyprivacy.txt: 3805) +.oxidy.com +# ||overstat.com^$third-party (easyprivacy.txt: 3804) +.overstat.com +# ||outboundlink.me^$third-party (easyprivacy.txt: 3803) +.outboundlink.me +# ||ournet-analytics.com^$third-party (easyprivacy.txt: 3802) +.ournet-analytics.com +# ||otracking.com^$third-party (easyprivacy.txt: 3801) +.otracking.com +# ||otoshiana.com^$third-party (easyprivacy.txt: 3800) +.otoshiana.com +# ||ospserver.net^$third-party (easyprivacy.txt: 3799) +.ospserver.net +# ||orcapia.com^$third-party (easyprivacy.txt: 3798) +.orcapia.com +# ||oranges88.com^$third-party (easyprivacy.txt: 3797) +.oranges88.com +# ||optreadetrus.info^$third-party (easyprivacy.txt: 3796) +.optreadetrus.info +# ||optorb.com^$third-party (easyprivacy.txt: 3795) +.optorb.com +# ||optin-machine.com^$third-party (easyprivacy.txt: 3794) +.optin-machine.com +# ||optimost.com^$third-party (easyprivacy.txt: 3793) +.optimost.com +# ||optimizely.com^$third-party (easyprivacy.txt: 3792) +.optimizely.com +# ||optimix.asia^$third-party (easyprivacy.txt: 3791) +.optimix.asia +# ||optimahub.com^$third-party (easyprivacy.txt: 3790) +.optimahub.com +# ||optify.net^$third-party (easyprivacy.txt: 3789) +.optify.net +# ||oproi.com^$third-party (easyprivacy.txt: 3788) +.oproi.com +# ||openxtracker.com^$third-party (easyprivacy.txt: 3787) +.openxtracker.com +# ||openvenue.com^$third-party (easyprivacy.txt: 3786) +.openvenue.com +# ||opentracker.net^$third-party (easyprivacy.txt: 3785) +.opentracker.net +# ||openhit.com^$third-party (easyprivacy.txt: 3784) +.openhit.com +# ||openclick.com^$third-party (easyprivacy.txt: 3783) +.openclick.com +# ||opbandit.com^$third-party (easyprivacy.txt: 3782) +.opbandit.com +# ||onlysix.co.uk^$third-party (easyprivacy.txt: 3781) +.onlysix.co.uk +# ||online-right-now.net^$third-party (easyprivacy.txt: 3780) +.online-right-now.net +# ||online-metrix.net^$third-party (easyprivacy.txt: 3779) +.online-metrix.net +# ||online-media-stats.com^$third-party (easyprivacy.txt: 3778) +.online-media-stats.com +# ||ongsono.com^$third-party (easyprivacy.txt: 3777) +.ongsono.com +# ||onetag-sys.com^$third-party (easyprivacy.txt: 3776) +.onetag-sys.com +# ||onestat.com^$third-party (easyprivacy.txt: 3775) +.onestat.com +# ||onelink-translations.com^$third-party (easyprivacy.txt: 3774) +.onelink-translations.com +# ||onefeed.co.uk^$third-party (easyprivacy.txt: 3773) +.onefeed.co.uk +# ||omtrdc.net^$third-party (easyprivacy.txt: 3772) +.omtrdc.net +# ||omnitagjs.com^$third-party (easyprivacy.txt: 3771) +.omnitagjs.com +# ||omkt.co^$third-party (easyprivacy.txt: 3770) +.omkt.co +# ||omguk.com^$third-party (easyprivacy.txt: 3769) +.omguk.com +# ||omgpm.com^$third-party (easyprivacy.txt: 3768) +.omgpm.com +# ||ometria.com^$third-party (easyprivacy.txt: 3767) +.ometria.com +# ||omeda.com^$third-party (easyprivacy.txt: 3766) +.omeda.com +# ||ojrq.net^$third-party (easyprivacy.txt: 3765) +.ojrq.net +# ||oidah.com^$third-party (easyprivacy.txt: 3764) +.oidah.com +# ||ohmystats.com^$third-party (easyprivacy.txt: 3763) +.ohmystats.com +# ||ogt.jp^$third-party (easyprivacy.txt: 3762) +.ogt.jp +# ||offerstrategy.com^$third-party (easyprivacy.txt: 3761) +.offerstrategy.com +# ||offerpoint.net^$third-party (easyprivacy.txt: 3760) +.offerpoint.net +# ||offermatica.com^$third-party (easyprivacy.txt: 3759) +.offermatica.com +# ||odoscope.com^$third-party (easyprivacy.txt: 3758) +.odoscope.com +# ||odesaconflate.com^$third-party (easyprivacy.txt: 3757) +.odesaconflate.com +# ||observerapp.com^$third-party (easyprivacy.txt: 3755) +.observerapp.com +# ||nytlog.com^$third-party (easyprivacy.txt: 3754) +.nytlog.com +# ||numerino.cz^$third-party (easyprivacy.txt: 3753) +.numerino.cz +# ||nuggad.net^$third-party (easyprivacy.txt: 3752) +.nuggad.net +# ||nudatasecurity.com^$third-party (easyprivacy.txt: 3751) +.nudatasecurity.com +# ||nuconomy.com^$third-party (easyprivacy.txt: 3750) +.nuconomy.com +# ||nstracking.com^$third-party (easyprivacy.txt: 3749) +.nstracking.com +# ||ns1p.net^$third-party (easyprivacy.txt: 3748) +.ns1p.net +# ||nr7.us^$third-party (easyprivacy.txt: 3747) +.nr7.us +# ||nr-data.net^$third-party (easyprivacy.txt: 3746) +.nr-data.net +# ||nprove.com^$third-party (easyprivacy.txt: 3745) +.nprove.com +# ||npario-inc.net^$third-party (easyprivacy.txt: 3744) +.npario-inc.net +# ||nowinteract.com^$third-party (easyprivacy.txt: 3743) +.nowinteract.com +# ||nordicresearch.com^$third-party (easyprivacy.txt: 3742) +.nordicresearch.com +# ||noowho.com^$third-party (easyprivacy.txt: 3741) +.noowho.com +# ||nik.io^$third-party (easyprivacy.txt: 3740) +.nik.io +# ||niftymaps.com^$third-party (easyprivacy.txt: 3739) +.niftymaps.com +# ||nicewii.com^$third-party (easyprivacy.txt: 3738) +.nicewii.com +# ||ngmco.net^$third-party (easyprivacy.txt: 3737) +.ngmco.net +# ||nextstat.com^$third-party (easyprivacy.txt: 3736) +.nextstat.com +# ||nexeps.com^$third-party (easyprivacy.txt: 3735) +.nexeps.com +# ||newtrackmedia.com^$third-party (easyprivacy.txt: 3734) +.newtrackmedia.com +# ||newstatscounter.info^$third-party (easyprivacy.txt: 3733) +.newstatscounter.info +# ||newscurve.com^$third-party (easyprivacy.txt: 3732) +.newscurve.com +# ||newrelic.com^$third-party (easyprivacy.txt: 3731) +.newrelic.com +# ||newpoints.info^$third-party (easyprivacy.txt: 3730) +.newpoints.info +# ||netratings.com^$third-party (easyprivacy.txt: 3729) +.netratings.com +# ||netmng.com^$third-party (easyprivacy.txt: 3728) +.netmng.com +# ||netmining.com^$third-party (easyprivacy.txt: 3727) +.netmining.com +# ||netgraviton.net^$third-party (easyprivacy.txt: 3726) +.netgraviton.net +# ||netflame.cc^$third-party (easyprivacy.txt: 3725) +.netflame.cc +# ||netclickstats.com^$third-party (easyprivacy.txt: 3724) +.netclickstats.com +# ||netapplications.com^$third-party (easyprivacy.txt: 3723) +.netapplications.com +# ||net-filter.com^$third-party (easyprivacy.txt: 3721) +.net-filter.com +# ||nestedmedia.com^$third-party (easyprivacy.txt: 3720) +.nestedmedia.com +# ||neon-lab.com^$third-party (easyprivacy.txt: 3719) +.neon-lab.com +# ||neki.org^$third-party (easyprivacy.txt: 3718) +.neki.org +# ||nedstatpro.net^$third-party (easyprivacy.txt: 3717) +.nedstatpro.net +# ||nedstatbasic.net^$third-party (easyprivacy.txt: 3716) +.nedstatbasic.net +# ||nedstat.net^$third-party (easyprivacy.txt: 3715) +.nedstat.net +# ||nedstat.com^$third-party (easyprivacy.txt: 3714) +.nedstat.com +# ||neatstats.com^$third-party (easyprivacy.txt: 3713) +.neatstats.com +# ||naytev.com^$third-party (easyprivacy.txt: 3712) +.naytev.com +# ||navegg.com^$third-party (easyprivacy.txt: 3711) +.navegg.com +# ||navdmp.com^$third-party (easyprivacy.txt: 3710) +.navdmp.com +# ||naturaltracking.com^$third-party (easyprivacy.txt: 3709) +.naturaltracking.com +# ||natpal.com^$third-party (easyprivacy.txt: 3708) +.natpal.com +# ||nalook.com^$third-party (easyprivacy.txt: 3707) +.nalook.com +# ||nakanohito.jp^$third-party (easyprivacy.txt: 3706) +.nakanohito.jp +# ||naj.sk^$third-party (easyprivacy.txt: 3705) +.naj.sk +# ||naayna.com^$third-party (easyprivacy.txt: 3704) +.naayna.com +# ||mywebstats.org^$third-party (easyprivacy.txt: 3703) +.mywebstats.org +# ||mywebstats.com.au^$third-party (easyprivacy.txt: 3702) +.mywebstats.com.au +# ||myusersonline.com^$third-party (easyprivacy.txt: 3701) +.myusersonline.com +# ||mytictac.com^$third-party (easyprivacy.txt: 3700) +.mytictac.com +# ||mysitetraffic.net^$third-party (easyprivacy.txt: 3699) +.mysitetraffic.net +# ||myseostats.com^$third-party (easyprivacy.txt: 3698) +.myseostats.com +# ||myroitracking.com^$third-party (easyprivacy.txt: 3697) +.myroitracking.com +# ||myreferer.com^$third-party (easyprivacy.txt: 3696) +.myreferer.com +# ||mypagerank.net^$third-party (easyprivacy.txt: 3695) +.mypagerank.net +# ||myomnistar.com^$third-party (easyprivacy.txt: 3694) +.myomnistar.com +# ||myntelligence.com^$third-party (easyprivacy.txt: 3693) +.myntelligence.com +# ||mynewcounter.com^$third-party (easyprivacy.txt: 3692) +.mynewcounter.com +# ||myfastcounter.com^$third-party (easyprivacy.txt: 3691) +.myfastcounter.com +# ||mybloglog.com^$third-party (easyprivacy.txt: 3690) +.mybloglog.com +# ||myaffiliateprogram.com^$third-party (easyprivacy.txt: 3689) +.myaffiliateprogram.com +# ||mxptint.net^$third-party (easyprivacy.txt: 3688) +.mxptint.net +# ||mxpnl.com^$third-party (easyprivacy.txt: 3687) +.mxpnl.com +# ||mxcdn.net^$third-party (easyprivacy.txt: 3686) +.mxcdn.net +# ||mvtracker.com^$third-party (easyprivacy.txt: 3685) +.mvtracker.com +# ||mvilivestats.com^$third-party (easyprivacy.txt: 3684) +.mvilivestats.com +# ||mucocutaneousmyrmecophaga.com^$third-party (easyprivacy.txt: 3683) +.mucocutaneousmyrmecophaga.com +# ||mtrics.cdc.gov^$third-party (easyprivacy.txt: 3682) +.mtrics.cdc.gov +# ||mtracking.com^$third-party (easyprivacy.txt: 3681) +.mtracking.com +# ||mstracker.net^$third-party (easyprivacy.txt: 3680) +.mstracker.net +# ||msgtag.com^$third-party (easyprivacy.txt: 3679) +.msgtag.com +# ||msgapp.com^$third-party (easyprivacy.txt: 3678) +.msgapp.com +# ||mpstat.us^$third-party (easyprivacy.txt: 3677) +.mpstat.us +# ||mplxtms.com^$third-party (easyprivacy.txt: 3676) +.mplxtms.com +# ||movable-ink-6710.com^$third-party (easyprivacy.txt: 3675) +.movable-ink-6710.com +# ||mousetrace.com^$third-party (easyprivacy.txt: 3674) +.mousetrace.com +# ||mousestats.com^$third-party (easyprivacy.txt: 3673) +.mousestats.com +# ||mouseflow.com^$third-party (easyprivacy.txt: 3672) +.mouseflow.com +# ||motrixi.com^$third-party (easyprivacy.txt: 3671) +.motrixi.com +# ||monitus.net^$third-party (easyprivacy.txt: 3670) +.monitus.net +# ||monitis.com^$third-party (easyprivacy.txt: 3669) +.monitis.com +# ||mongoosemetrics.com^$third-party (easyprivacy.txt: 3668) +.mongoosemetrics.com +# ||monetate.net^$third-party (easyprivacy.txt: 3667) +.monetate.net +# ||mochibot.com^$third-party (easyprivacy.txt: 3666) +.mochibot.com +# ||mobalyzer.net^$third-party (easyprivacy.txt: 3665) +.mobalyzer.net +# ||mmi-agency.com^$third-party (easyprivacy.txt: 3664) +.mmi-agency.com +# ||mmetrix.mobi^$third-party (easyprivacy.txt: 3663) +.mmetrix.mobi +# ||mm7.net^$third-party (easyprivacy.txt: 3662) +.mm7.net +# ||mlstat.com^$third-party (easyprivacy.txt: 3661) +.mlstat.com +# ||mlno6.com^$third-party (easyprivacy.txt: 3660) +.mlno6.com +# ||mletracker.com^$third-party (easyprivacy.txt: 3659) +.mletracker.com +# ||mlclick.com^$third-party (easyprivacy.txt: 3658) +.mlclick.com +# ||ml314.com^$third-party (easyprivacy.txt: 3657) +.ml314.com +# ||mktoresp.com^$third-party (easyprivacy.txt: 3656) +.mktoresp.com +# ||mkt941.com^$third-party (easyprivacy.txt: 3655) +.mkt941.com +# ||mkt51.net^$third-party (easyprivacy.txt: 3654) +.mkt51.net +# ||mkt3261.com^$third-party (easyprivacy.txt: 3653) +.mkt3261.com +# ||mixpanel.com^$third-party (easyprivacy.txt: 3652) +.mixpanel.com +# ||minewhat.com^$third-party (easyprivacy.txt: 3651) +.minewhat.com +# ||millioncounter.com^$third-party (easyprivacy.txt: 3650) +.millioncounter.com +# ||midkotatraffic.net^$third-party (easyprivacy.txt: 3649) +.midkotatraffic.net +# ||midas-i.com^$third-party (easyprivacy.txt: 3648) +.midas-i.com +# ||mialbj6.com^$third-party (easyprivacy.txt: 3647) +.mialbj6.com +# ||mezzobit.com^$third-party (easyprivacy.txt: 3646) +.mezzobit.com +# ||metricsdirect.com^$third-party (easyprivacy.txt: 3645) +.metricsdirect.com +# ||meteorsolutions.com^$third-party (easyprivacy.txt: 3644) +.meteorsolutions.com +# ||metakeyproducer.com^$third-party (easyprivacy.txt: 3643) +.metakeyproducer.com +# ||mercent.com^$third-party (easyprivacy.txt: 3642) +.mercent.com +# ||mercadoclics.com^$third-party (easyprivacy.txt: 3641) +.mercadoclics.com +# ||memecounter.com^$third-party (easyprivacy.txt: 3640) +.memecounter.com +# ||mega-stats.com^$third-party (easyprivacy.txt: 3639) +.mega-stats.com +# ||mediaseeding.com^$third-party (easyprivacy.txt: 3638) +.mediaseeding.com +# ||mediaplex.com^$third-party (easyprivacy.txt: 3637) +.mediaplex.com +# ||mediagauge.com^$third-party (easyprivacy.txt: 3636) +.mediagauge.com +# ||mediaforgews.com^$third-party (easyprivacy.txt: 3635) +.mediaforgews.com +# ||mediaarmor.com^$third-party (easyprivacy.txt: 3634) +.mediaarmor.com +# ||measuremap.com^$third-party (easyprivacy.txt: 3633) +.measuremap.com +# ||measure.ly^$third-party (easyprivacy.txt: 3632) +.measure.ly +# ||mdotlabs.com^$third-party (easyprivacy.txt: 3631) +.mdotlabs.com +# ||md-ia.info^$third-party (easyprivacy.txt: 3630) +.md-ia.info +# ||mbww.com^$third-party (easyprivacy.txt: 3629) +.mbww.com +# ||mbsy.co^$third-party (easyprivacy.txt: 3628) +.mbsy.co +# ||mbotvisit.com^$third-party (easyprivacy.txt: 3627) +.mbotvisit.com +# ||mb4a.com^$third-party (easyprivacy.txt: 3626) +.mb4a.com +# ||maxymiser.net^$third-party (easyprivacy.txt: 3625) +.maxymiser.net +# ||maxymiser.com^$third-party (easyprivacy.txt: 3624) +.maxymiser.com +# ||maxtracker.net^$third-party (easyprivacy.txt: 3623) +.maxtracker.net +# ||mathtag.com^$third-party (easyprivacy.txt: 3622) +.mathtag.com +# ||matheranalytics.com^$third-party (easyprivacy.txt: 3621) +.matheranalytics.com +# ||masterstats.com^$third-party (easyprivacy.txt: 3620) +.masterstats.com +# ||martianstats.com^$third-party (easyprivacy.txt: 3619) +.martianstats.com +# ||marketo.net^$third-party (easyprivacy.txt: 3618) +.marketo.net +# ||marketizator.com^$third-party (easyprivacy.txt: 3617) +.marketizator.com +# ||market2lead.com^$third-party (easyprivacy.txt: 3616) +.market2lead.com +# ||market015.com^$third-party (easyprivacy.txt: 3615) +.market015.com +# ||marinsm.com^$third-party (easyprivacy.txt: 3614) +.marinsm.com +# ||mapmyuser.com^$third-party (easyprivacy.txt: 3613) +.mapmyuser.com +# ||maploco.com^$third-party (easyprivacy.txt: 3612) +.maploco.com +# ||mailstat.us^$third-party (easyprivacy.txt: 3611) +.mailstat.us +# ||magnify360.com^$third-party (easyprivacy.txt: 3610) +.magnify360.com +# ||magnetmail1.net^$third-party (easyprivacy.txt: 3609) +.magnetmail1.net +# ||magiq.com^$third-party (easyprivacy.txt: 3608) +.magiq.com +# ||lytiks.com^$third-party (easyprivacy.txt: 3607) +.lytiks.com +# ||lytics.io^$third-party (easyprivacy.txt: 3606) +.lytics.io +# ||lypn.net^$third-party (easyprivacy.txt: 3605) +.lypn.net +# ||lypn.com^$third-party (easyprivacy.txt: 3604) +.lypn.com +# ||lymantriacypresdoctrine.biz^$third-party (easyprivacy.txt: 3603) +.lymantriacypresdoctrine.biz +# ||lxtrack.com^$third-party (easyprivacy.txt: 3602) +.lxtrack.com +# ||luminate.com^$third-party (easyprivacy.txt: 3601) +.luminate.com +# ||lumatag.co.uk^$third-party (easyprivacy.txt: 3600) +.lumatag.co.uk +# ||luckyorange.com^$third-party (easyprivacy.txt: 3599) +.luckyorange.com +# ||lucidel.com^$third-party (easyprivacy.txt: 3598) +.lucidel.com +# ||lsfinteractive.com^$third-party (easyprivacy.txt: 3597) +.lsfinteractive.com +# ||lporirxe.com^$third-party (easyprivacy.txt: 3596) +.lporirxe.com +# ||lpbeta.com^$third-party (easyprivacy.txt: 3595) +.lpbeta.com +# ||lp4.io^$third-party (easyprivacy.txt: 3594) +.lp4.io +# ||losstrack.com^$third-party (easyprivacy.txt: 3593) +.losstrack.com +# ||lopley.com^$third-party (easyprivacy.txt: 3592) +.lopley.com +# ||loopfuse.net^$third-party (easyprivacy.txt: 3591) +.loopfuse.net +# ||lookery.com^$third-party (easyprivacy.txt: 3590) +.lookery.com +# ||lognormal.net^$third-party (easyprivacy.txt: 3589) +.lognormal.net +# ||loggly.com^$third-party (easyprivacy.txt: 3588) +.loggly.com +# ||logentries.com^$third-party (easyprivacy.txt: 3587) +.logentries.com +# ||logdy.com^$third-party (easyprivacy.txt: 3586) +.logdy.com +# ||logcounter.com^$third-party (easyprivacy.txt: 3585) +.logcounter.com +# ||logaholic.com^$third-party (easyprivacy.txt: 3584) +.logaholic.com +# ||lockview.cn^$third-party (easyprivacy.txt: 3583) +.lockview.cn +# ||localytics.com^$third-party (easyprivacy.txt: 3582) +.localytics.com +# ||lloogg.com^$third-party (easyprivacy.txt: 3581) +.lloogg.com +# ||livestat.com^$third-party (easyprivacy.txt: 3580) +.livestat.com +# ||livehit.net^$third-party (easyprivacy.txt: 3579) +.livehit.net +# ||livecount.fr^$third-party (easyprivacy.txt: 3578) +.livecount.fr +# ||listrakbi.com^$third-party (easyprivacy.txt: 3577) +.listrakbi.com +# ||linkxchanger.com^$third-party (easyprivacy.txt: 3576) +.linkxchanger.com +# ||linkpulse.com^$third-party (easyprivacy.txt: 3575) +.linkpulse.com +# ||link-smart.com^$third-party (easyprivacy.txt: 3574) +.link-smart.com +# ||linezing.com^$third-party (easyprivacy.txt: 3573) +.linezing.com +# ||lijit.com^$third-party (easyprivacy.txt: 3572) +.lijit.com +# ||liadm.com^$third-party (easyprivacy.txt: 3571) +.liadm.com +# ||lfov.net^$third-party (easyprivacy.txt: 3570) +.lfov.net +# ||lexity.com^$third-party (easyprivacy.txt: 3569) +.lexity.com +# ||levexis.com^$third-party (easyprivacy.txt: 3568) +.levexis.com +# ||letterboxtrail.com^$third-party (easyprivacy.txt: 3567) +.letterboxtrail.com +# ||les-experts.com^$third-party (easyprivacy.txt: 3566) +.les-experts.com +# ||legolas-media.com^$third-party (easyprivacy.txt: 3565) +.legolas-media.com +# ||leadsius.com^$third-party (easyprivacy.txt: 3564) +.leadsius.com +# ||leadmanagerfx.com^$third-party (easyprivacy.txt: 3563) +.leadmanagerfx.com +# ||leadlife.com^$third-party (easyprivacy.txt: 3562) +.leadlife.com +# ||leadintelligence.co.uk^$third-party (easyprivacy.txt: 3561) +.leadintelligence.co.uk +# ||leadid.com^$third-party (easyprivacy.txt: 3560) +.leadid.com +# ||leadformix.com^$third-party (easyprivacy.txt: 3559) +.leadformix.com +# ||leadforensics.com^$third-party (easyprivacy.txt: 3558) +.leadforensics.com +# ||leadforce1.com^$third-party (easyprivacy.txt: 3557) +.leadforce1.com +# ||lead-tracking.biz^$third-party (easyprivacy.txt: 3556) +.lead-tracking.biz +# ||lead-converter.com^$third-party (easyprivacy.txt: 3555) +.lead-converter.com +# ||lead-123.com^$third-party (easyprivacy.txt: 3554) +.lead-123.com +# ||landingpg.com^$third-party (easyprivacy.txt: 3553) +.landingpg.com +# ||ksyrium0014.com^$third-party (easyprivacy.txt: 3551) +.ksyrium0014.com +# ||krxd.net^$third-party (easyprivacy.txt: 3550) +.krxd.net +# ||kopsil.com^$third-party (easyprivacy.txt: 3549) +.kopsil.com +# ||kontagent.net^$third-party (easyprivacy.txt: 3548) +.kontagent.net +# ||komtrack.com^$third-party (easyprivacy.txt: 3547) +.komtrack.com +# ||knowledgevine.net^$third-party (easyprivacy.txt: 3546) +.knowledgevine.net +# ||klldabck.com^$third-party (easyprivacy.txt: 3545) +.klldabck.com +# ||klert.com^$third-party (easyprivacy.txt: 3544) +.klert.com +# ||kitcode.net^$third-party (easyprivacy.txt: 3543) +.kitcode.net +# ||kitbit.net^$third-party (easyprivacy.txt: 3542) +.kitbit.net +# ||kisstesting.com^$third-party (easyprivacy.txt: 3541) +.kisstesting.com +# ||kissmetrics.com^$third-party (easyprivacy.txt: 3540) +.kissmetrics.com +# ||killerwebstats.com^$third-party (easyprivacy.txt: 3539) +.killerwebstats.com +# ||kieden.com^$third-party (easyprivacy.txt: 3538) +.kieden.com +# ||keywordstrategy.org^$third-party (easyprivacy.txt: 3537) +.keywordstrategy.org +# ||keywordmax.com^$third-party (easyprivacy.txt: 3536) +.keywordmax.com +# ||keymetric.net^$third-party (easyprivacy.txt: 3535) +.keymetric.net +# ||keyade.com^$third-party (easyprivacy.txt: 3534) +.keyade.com +# ||kampyle.com^$third-party (easyprivacy.txt: 3532) +.kampyle.com +# ||jwmstats.com^$third-party (easyprivacy.txt: 3531) +.jwmstats.com +# ||justuno.com^$third-party (easyprivacy.txt: 3530) +.justuno.com +# ||jumptime.com^$third-party (easyprivacy.txt: 3529) +.jumptime.com +# ||jump-time.net^$third-party (easyprivacy.txt: 3528) +.jump-time.net +# ||jstracker.com^$third-party (easyprivacy.txt: 3527) +.jstracker.com +# ||jsonip.com^$third-party (easyprivacy.txt: 3526) +.jsonip.com +# ||jsid.info^$third-party (easyprivacy.txt: 3525) +.jsid.info +# ||jscounter.com^$third-party (easyprivacy.txt: 3524) +.jscounter.com +# ||jirafe.com^$third-party (easyprivacy.txt: 3523) +.jirafe.com +# ||jimdo-stats.com^$third-party (easyprivacy.txt: 3522) +.jimdo-stats.com +# ||izearanks.com^$third-party (easyprivacy.txt: 3521) +.izearanks.com +# ||izea.com^$third-party (easyprivacy.txt: 3520) +.izea.com +# ||ixiaa.com^$third-party (easyprivacy.txt: 3519) +.ixiaa.com +# ||iwebtrack.com^$third-party (easyprivacy.txt: 3518) +.iwebtrack.com +# ||ivcbrasil.org.br^$third-party (easyprivacy.txt: 3517) +.ivcbrasil.org.br +# ||itrackerpro.com^$third-party (easyprivacy.txt: 3516) +.itrackerpro.com +# ||istrack.com^$third-party (easyprivacy.txt: 3515) +.istrack.com +# ||ist-track.com^$third-party (easyprivacy.txt: 3514) +.ist-track.com +# ||irelandmetrix.ie^$third-party (easyprivacy.txt: 3513) +.irelandmetrix.ie +# ||iraiser.eu^$third-party (easyprivacy.txt: 3512) +.iraiser.eu +# ||iqfp1.com^$third-party (easyprivacy.txt: 3511) +.iqfp1.com +# ||ipv6monitoring.eu^$third-party (easyprivacy.txt: 3510) +.ipv6monitoring.eu +# ||ipstat.com^$third-party (easyprivacy.txt: 3509) +.ipstat.com +# ||ipro.com^$third-party (easyprivacy.txt: 3508) +.ipro.com +# ||iplocationtools.com^$third-party (easyprivacy.txt: 3507) +.iplocationtools.com +# ||ipinyou.com.cn^$third-party (easyprivacy.txt: 3506) +.ipinyou.com.cn +# ||ipinfodb.com^$third-party (easyprivacy.txt: 3505) +.ipinfodb.com +# ||ipinfo.io^$third-party (easyprivacy.txt: 3504) +.ipinfo.io +# ||ipinfo.info^$third-party (easyprivacy.txt: 3503) +.ipinfo.info +# ||ipfingerprint.com^$third-party (easyprivacy.txt: 3502) +.ipfingerprint.com +# ||iperceptions.com^$third-party (easyprivacy.txt: 3501) +.iperceptions.com +# ||ipcounter.de^$third-party (easyprivacy.txt: 3500) +.ipcounter.de +# ||ipcatch.com^$third-party (easyprivacy.txt: 3499) +.ipcatch.com +# ||ipaddresslabs.com^$third-party (easyprivacy.txt: 3498) +.ipaddresslabs.com +# ||ip2phrase.com^$third-party (easyprivacy.txt: 3497) +.ip2phrase.com +# ||ip2map.com^$third-party (easyprivacy.txt: 3496) +.ip2map.com +# ||ip2location.com^$third-party (easyprivacy.txt: 3495) +.ip2location.com +# ||ip-label.net^$third-party (easyprivacy.txt: 3494) +.ip-label.net +# ||ip-api.com^$third-party (easyprivacy.txt: 3493) +.ip-api.com +# ||invoc.us^$third-party (easyprivacy.txt: 3492) +.invoc.us +# ||invitemedia.com^$third-party (easyprivacy.txt: 3491) +.invitemedia.com +# ||intervigil.com^$third-party (easyprivacy.txt: 3490) +.intervigil.com +# ||intermundomedia.com^$third-party (easyprivacy.txt: 3489) +.intermundomedia.com +# ||interceptum.com^$third-party (easyprivacy.txt: 3488) +.interceptum.com +# ||intelligencefocus.com^$third-party (easyprivacy.txt: 3487) +.intelligencefocus.com +# ||intelli-tracker.com^$third-party (easyprivacy.txt: 3486) +.intelli-tracker.com +# ||intelli-direct.com^$third-party (easyprivacy.txt: 3485) +.intelli-direct.com +# ||intelimet.com^$third-party (easyprivacy.txt: 3484) +.intelimet.com +# ||intelevance.com^$third-party (easyprivacy.txt: 3483) +.intelevance.com +# ||instore.biz^$third-party (easyprivacy.txt: 3482) +.instore.biz +# ||instadia.net^$third-party (easyprivacy.txt: 3481) +.instadia.net +# ||inspectlet.com^$third-party (easyprivacy.txt: 3480) +.inspectlet.com +# ||insitemetrics.com^$third-party (easyprivacy.txt: 3479) +.insitemetrics.com +# ||insigit.com^$third-party (easyprivacy.txt: 3478) +.insigit.com +# ||insightgrit.com^$third-party (easyprivacy.txt: 3477) +.insightgrit.com +# ||insightera.com^$third-party (easyprivacy.txt: 3476) +.insightera.com +# ||inside-graph.com^$third-party (easyprivacy.txt: 3475) +.inside-graph.com +# ||inpwrd.com^$third-party (easyprivacy.txt: 3474) +.inpwrd.com +# ||inphonic.com^$third-party (easyprivacy.txt: 3473) +.inphonic.com +# ||innovateads.com^$third-party (easyprivacy.txt: 3472) +.innovateads.com +# ||inimbus.com.au^$third-party (easyprivacy.txt: 3471) +.inimbus.com.au +# ||influid.co^$third-party (easyprivacy.txt: 3470) +.influid.co +# ||inflectionpointmedia.com^$third-party (easyprivacy.txt: 3469) +.inflectionpointmedia.com +# ||infinity-tracking.net^$third-party (easyprivacy.txt: 3468) +.infinity-tracking.net +# ||infinigraph.com^$third-party (easyprivacy.txt: 3467) +.infinigraph.com +# ||inferclick.com^$third-party (easyprivacy.txt: 3466) +.inferclick.com +# ||ineedhits.com^$third-party (easyprivacy.txt: 3465) +.ineedhits.com +# ||individuad.net^$third-party (easyprivacy.txt: 3464) +.individuad.net +# ||indicia.com^$third-party (easyprivacy.txt: 3463) +.indicia.com +# ||indextools.com^$third-party (easyprivacy.txt: 3462) +.indextools.com +# ||indexstats.com^$third-party (easyprivacy.txt: 3461) +.indexstats.com +# ||incentivesnetwork.net^$third-party (easyprivacy.txt: 3460) +.incentivesnetwork.net +# ||inboxtag.com^$third-party (easyprivacy.txt: 3459) +.inboxtag.com +# ||imrworldwide.com^$third-party (easyprivacy.txt: 3458) +.imrworldwide.com +# ||imrtrack.com^$third-party (easyprivacy.txt: 3457) +.imrtrack.com +# ||impcounter.com^$third-party (easyprivacy.txt: 3456) +.impcounter.com +# ||immanalytics.com^$third-party (easyprivacy.txt: 3455) +.immanalytics.com +# ||imanginatium.com^$third-party (easyprivacy.txt: 3454) +.imanginatium.com +# ||ilogbox.com^$third-party (easyprivacy.txt: 3453) +.ilogbox.com +# ||illumenix.com^$third-party (easyprivacy.txt: 3452) +.illumenix.com +# ||iljmp.com^$third-party (easyprivacy.txt: 3451) +.iljmp.com +# ||ijncw.tv^$third-party (easyprivacy.txt: 3450) +.ijncw.tv +# ||igaming.biz^$third-party (easyprivacy.txt: 3449) +.igaming.biz +# ||ifactz.com^$third-party (easyprivacy.txt: 3448) +.ifactz.com +# ||iesnare.com^$third-party (easyprivacy.txt: 3447) +.iesnare.com +# ||idtargeting.com^$third-party (easyprivacy.txt: 3446) +.idtargeting.com +# ||idio.co^$third-party (easyprivacy.txt: 3445) +.idio.co +# ||ideoclick.com^$third-party (easyprivacy.txt: 3444) +.ideoclick.com +# ||icstats.nl^$third-party (easyprivacy.txt: 3443) +.icstats.nl +# ||ics0.com^$third-party (easyprivacy.txt: 3442) +.ics0.com +# ||iclive.com^$third-party (easyprivacy.txt: 3441) +.iclive.com +# ||ic-live.com^$third-party (easyprivacy.txt: 3440) +.ic-live.com +# ||ibpxl.net^$third-party (easyprivacy.txt: 3439) +.ibpxl.net +# ||ibpxl.com^$third-party (easyprivacy.txt: 3438) +.ibpxl.com +# ||ib-ibi.com^$third-party (easyprivacy.txt: 3437) +.ib-ibi.com +# ||i-stats.com^$third-party (easyprivacy.txt: 3436) +.i-stats.com +# ||hypestat.com^$third-party (easyprivacy.txt: 3435) +.hypestat.com +# ||hyperactivate.com^$third-party (easyprivacy.txt: 3434) +.hyperactivate.com +# ||hyfntrak.com^$third-party (easyprivacy.txt: 3433) +.hyfntrak.com +# ||hxtrack.com^$third-party (easyprivacy.txt: 3432) +.hxtrack.com +# ||hwpub.com^$third-party (easyprivacy.txt: 3431) +.hwpub.com +# ||hurterkranach.net^$third-party (easyprivacy.txt: 3430) +.hurterkranach.net +# ||hurra.com^$third-party (easyprivacy.txt: 3429) +.hurra.com +# ||hunt-leads.com^$third-party (easyprivacy.txt: 3428) +.hunt-leads.com +# ||humanclick.com^$third-party (easyprivacy.txt: 3427) +.humanclick.com +# ||hscta.net^$third-party (easyprivacy.txt: 3426) +.hscta.net +# ||hs-analytics.net^$third-party (easyprivacy.txt: 3425) +.hs-analytics.net +# ||hqhrt.com^$third-party (easyprivacy.txt: 3424) +.hqhrt.com +# ||hotjar.com^$third-party (easyprivacy.txt: 3423) +.hotjar.com +# ||hoststats.info^$third-party (easyprivacy.txt: 3422) +.hoststats.info +# ||hostip.info^$third-party (easyprivacy.txt: 3421) +.hostip.info +# ||host-tracker.com^$third-party (easyprivacy.txt: 3420) +.host-tracker.com +# ||hopurl.org^$third-party (easyprivacy.txt: 3419) +.hopurl.org +# ||homechader.com^$third-party (easyprivacy.txt: 3418) +.homechader.com +# ||hlserve.com^$third-party (easyprivacy.txt: 3417) +.hlserve.com +# ||hitwebcounter.com^$third-party (easyprivacy.txt: 3416) +.hitwebcounter.com +# ||hitwake.com^$third-party (easyprivacy.txt: 3415) +.hitwake.com +# ||hittracker.com^$third-party (easyprivacy.txt: 3414) +.hittracker.com +# ||hittail.com^$third-party (easyprivacy.txt: 3413) +.hittail.com +# ||hitsprocessor.com^$third-party (easyprivacy.txt: 3412) +.hitsprocessor.com +# ||hitsniffer.com^$third-party (easyprivacy.txt: 3411) +.hitsniffer.com +# ||hitslog.com^$third-party (easyprivacy.txt: 3410) +.hitslog.com +# ||hitslink.com^$third-party (easyprivacy.txt: 3409) +.hitslink.com +# ||hits2u.com^$third-party (easyprivacy.txt: 3408) +.hits2u.com +# ||hits.io^$third-party (easyprivacy.txt: 3407) +.hits.io +# ||hitmaze-counters.net^$third-party (easyprivacy.txt: 3406) +.hitmaze-counters.net +# ||hitmatic.com^$third-party (easyprivacy.txt: 3405) +.hitmatic.com +# ||hitfarm.com^$third-party (easyprivacy.txt: 3404) +.hitfarm.com +# ||hitcounterstats.com^$third-party (easyprivacy.txt: 3403) +.hitcounterstats.com +# ||hitbox.com^$third-party (easyprivacy.txt: 3402) +.hitbox.com +# ||hit2map.com^$third-party (easyprivacy.txt: 3401) +.hit2map.com +# ||hit-parade.com^$third-party (easyprivacy.txt: 3400) +.hit-parade.com +# ||hit-counts.com^$third-party (easyprivacy.txt: 3399) +.hit-counts.com +# ||hit-counters.net^$third-party (easyprivacy.txt: 3398) +.hit-counters.net +# ||hit-counter.info^$third-party (easyprivacy.txt: 3397) +.hit-counter.info +# ||hit-counter-download.com^$third-party (easyprivacy.txt: 3396) +.hit-counter-download.com +# ||histats.com^$third-party (easyprivacy.txt: 3395) +.histats.com +# ||highmetrics.com^$third-party (easyprivacy.txt: 3394) +.highmetrics.com +# ||higherengine.com^$third-party (easyprivacy.txt: 3393) +.higherengine.com +# ||hiconversion.com^$third-party (easyprivacy.txt: 3392) +.hiconversion.com +# ||heystaks.com^$third-party (easyprivacy.txt: 3391) +.heystaks.com +# ||hentaicounter.com^$third-party (easyprivacy.txt: 3390) +.hentaicounter.com +# ||hellosherpa.com^$third-party (easyprivacy.txt: 3389) +.hellosherpa.com +# ||heatmap.it^$third-party (easyprivacy.txt: 3388) +.heatmap.it +# ||heapanalytics.com^$third-party (easyprivacy.txt: 3387) +.heapanalytics.com +# ||haymarket.com^$third-party (easyprivacy.txt: 3386) +.haymarket.com +# ||haveamint.com^$third-party (easyprivacy.txt: 3385) +.haveamint.com +# ||haraju.co^$third-party (easyprivacy.txt: 3384) +.haraju.co +# ||halstats.com^$third-party (easyprivacy.txt: 3383) +.halstats.com +# ||halldata.com^$third-party (easyprivacy.txt: 3382) +.halldata.com +# ||h4k5.com^$third-party (easyprivacy.txt: 3381) +.h4k5.com +# ||gvisit.com^$third-party (easyprivacy.txt: 3380) +.gvisit.com +# ||guanoo.net^$third-party (easyprivacy.txt: 3379) +.guanoo.net +# ||gtopstats.com^$third-party (easyprivacy.txt: 3378) +.gtopstats.com +# ||gtcslt-di2.com^$third-party (easyprivacy.txt: 3377) +.gtcslt-di2.com +# ||gstats.cn^$third-party (easyprivacy.txt: 3376) +.gstats.cn +# ||gssprt.jp^$third-party (easyprivacy.txt: 3375) +.gssprt.jp +# ||gsspat.jp^$third-party (easyprivacy.txt: 3374) +.gsspat.jp +# ||gsimedia.net^$third-party (easyprivacy.txt: 3373) +.gsimedia.net +# ||gsecondscreen.com^$third-party (easyprivacy.txt: 3372) +.gsecondscreen.com +# ||grepdata.com^$third-party (easyprivacy.txt: 3371) +.grepdata.com +# ||gravity4.com^$third-party (easyprivacy.txt: 3370) +.gravity4.com +# ||grapheffect.com^$third-party (easyprivacy.txt: 3369) +.grapheffect.com +# ||govmetric.com^$third-party (easyprivacy.txt: 3368) +.govmetric.com +# ||gostats.ro^$third-party (easyprivacy.txt: 3367) +.gostats.ro +# ||gostats.com^$third-party (easyprivacy.txt: 3366) +.gostats.com +# ||gosquared.com^$third-party (easyprivacy.txt: 3365) +.gosquared.com +# ||gooo.al^$third-party (easyprivacy.txt: 3364) +.gooo.al +# ||googletagmanager.com/gtm.js?$third-party (easyprivacy.txt: 3363) +.googletagmanager.com/gtm\.js\? +# ||googlerank.info^$third-party (easyprivacy.txt: 3362) +.googlerank.info +# ||googleadservices.com^$third-party (easyprivacy.txt: 3361) +.googleadservices.com +# ||goodcounter.org^$third-party (easyprivacy.txt: 3353) +.goodcounter.org +# ||goneviral.com^$third-party (easyprivacy.txt: 3352) +.goneviral.com +# ||goldstats.com^$third-party (easyprivacy.txt: 3351) +.goldstats.com +# ||goingup.com^$third-party (easyprivacy.txt: 3350) +.goingup.com +# ||godhat.com^$third-party (easyprivacy.txt: 3349) +.godhat.com +# ||goaltraffic.com^$third-party (easyprivacy.txt: 3348) +.goaltraffic.com +# ||go-mpulse.net^$third-party (easyprivacy.txt: 3347) +.go-mpulse.net +# ||globetrackr.com^$third-party (easyprivacy.txt: 3346) +.globetrackr.com +# ||globel.co.uk^$third-party (easyprivacy.txt: 3345) +.globel.co.uk +# ||globase.com^$third-party (easyprivacy.txt: 3344) +.globase.com +# ||globalviptraffic.com^$third-party (easyprivacy.txt: 3343) +.globalviptraffic.com +# ||glbtracker.com^$third-party (easyprivacy.txt: 3342) +.glbtracker.com +# ||glanceguide.com^$third-party (easyprivacy.txt: 3341) +.glanceguide.com +# ||gigcount.com^$third-party (easyprivacy.txt: 3340) +.gigcount.com +# ||gez.io^$third-party (easyprivacy.txt: 3339) +.gez.io +# ||getstatistics.se^$third-party (easyprivacy.txt: 3338) +.getstatistics.se +# ||getsmartcontent.com^$third-party (easyprivacy.txt: 3337) +.getsmartcontent.com +# ||getfreebl.com^$third-party (easyprivacy.txt: 3336) +.getfreebl.com +# ||getclicky.com^$third-party (easyprivacy.txt: 3335) +.getclicky.com +# ||getbackstory.com^$third-party (easyprivacy.txt: 3334) +.getbackstory.com +# ||georiot.com^$third-party (easyprivacy.txt: 3333) +.georiot.com +# ||geobytes.com^$third-party (easyprivacy.txt: 3332) +.geobytes.com +# ||genieesspv.jp^$third-party (easyprivacy.txt: 3331) +.genieesspv.jp +# ||gemtrackers.com^$third-party (easyprivacy.txt: 3330) +.gemtrackers.com +# ||gbotvisit.com^$third-party (easyprivacy.txt: 3329) +.gbotvisit.com +# ||gaug.es^$third-party (easyprivacy.txt: 3328) +.gaug.es +# ||fyreball.com^$third-party (easyprivacy.txt: 3327) +.fyreball.com +# ||fuziontech.net^$third-party (easyprivacy.txt: 3326) +.fuziontech.net +# ||fusestats.com^$third-party (easyprivacy.txt: 3325) +.fusestats.com +# ||funstage.com^$third-party (easyprivacy.txt: 3324) +.funstage.com +# ||funneld.com^$third-party (easyprivacy.txt: 3323) +.funneld.com +# ||fueldeck.com^$third-party (easyprivacy.txt: 3322) +.fueldeck.com +# ||ftbpro.com^$third-party (easyprivacy.txt: 3321) +.ftbpro.com +# ||fshka.com^$third-party (easyprivacy.txt: 3320) +.fshka.com +# ||fruitflan.com^$third-party (easyprivacy.txt: 3319) +.fruitflan.com +# ||friendbuy.com^$third-party (easyprivacy.txt: 3318) +.friendbuy.com +# ||freshplum.com^$third-party (easyprivacy.txt: 3317) +.freshplum.com +# ||freshcounter.com^$third-party (easyprivacy.txt: 3316) +.freshcounter.com +# ||frescoerspica.com^$third-party (easyprivacy.txt: 3315) +.frescoerspica.com +# ||freeweblogger.com^$third-party (easyprivacy.txt: 3314) +.freeweblogger.com +# ||freeusersonline.com^$third-party (easyprivacy.txt: 3313) +.freeusersonline.com +# ||freetrafficsystem.com^$third-party (easyprivacy.txt: 3312) +.freetrafficsystem.com +# ||freestats.com^$third-party (easyprivacy.txt: 3311) +.freestats.com +# ||freesitemapgenerator.com^$third-party (easyprivacy.txt: 3310) +.freesitemapgenerator.com +# ||freeonlineusers.com^$third-party (easyprivacy.txt: 3309) +.freeonlineusers.com +# ||freelogs.com^$third-party (easyprivacy.txt: 3308) +.freelogs.com +# ||freehitscounter.org^$third-party (easyprivacy.txt: 3307) +.freehitscounter.org +# ||freegeoip.net^$third-party (easyprivacy.txt: 3306) +.freegeoip.net +# ||freecounterstat.com^$third-party (easyprivacy.txt: 3305) +.freecounterstat.com +# ||freecountercode.com^$third-party (easyprivacy.txt: 3304) +.freecountercode.com +# ||freebloghitcounter.com^$third-party (easyprivacy.txt: 3303) +.freebloghitcounter.com +# ||free-website-statistics.com^$third-party (easyprivacy.txt: 3302) +.free-website-statistics.com +# ||free-website-hit-counters.com^$third-party (easyprivacy.txt: 3301) +.free-website-hit-counters.com +# ||free-counters.co.uk^$third-party (easyprivacy.txt: 3300) +.free-counters.co.uk +# ||free-counter.com^$third-party (easyprivacy.txt: 3299) +.free-counter.com +# ||free-counter.co.uk^$third-party (easyprivacy.txt: 3298) +.free-counter.co.uk +# ||fqtag.com^$third-party (easyprivacy.txt: 3297) +.fqtag.com +# ||fprnt.com^$third-party (easyprivacy.txt: 3296) +.fprnt.com +# ||fpctraffic2.com^$third-party (easyprivacy.txt: 3295) +.fpctraffic2.com +# ||foundry42.com^$third-party (easyprivacy.txt: 3294) +.foundry42.com +# ||forter.com^$third-party (easyprivacy.txt: 3293) +.forter.com +# ||formisimo.com^$third-party (easyprivacy.txt: 3292) +.formisimo.com +# ||formalyzer.com^$third-party (easyprivacy.txt: 3291) +.formalyzer.com +# ||foreseeresults.com^$third-party (easyprivacy.txt: 3290) +.foreseeresults.com +# ||forensics1000.com^$third-party (easyprivacy.txt: 3289) +.forensics1000.com +# ||force24.co.uk^$third-party (easyprivacy.txt: 3288) +.force24.co.uk +# ||footprintlive.com^$third-party (easyprivacy.txt: 3287) +.footprintlive.com +# ||followercounter.com^$third-party (easyprivacy.txt: 3286) +.followercounter.com +# ||flyingpt.com^$third-party (easyprivacy.txt: 3285) +.flyingpt.com +# ||flxpxl.com^$third-party (easyprivacy.txt: 3284) +.flxpxl.com +# ||flx1.com^$third-party (easyprivacy.txt: 3283) +.flx1.com +# ||flurry.com^$third-party (easyprivacy.txt: 3282) +.flurry.com +# ||fluencymedia.com^$third-party (easyprivacy.txt: 3281) +.fluencymedia.com +# ||fluctuo.com^$third-party (easyprivacy.txt: 3280) +.fluctuo.com +# ||flowstats.net^$third-party (easyprivacy.txt: 3279) +.flowstats.net +# ||flixsyndication.net^$third-party (easyprivacy.txt: 3278) +.flixsyndication.net +# ||flixfacts.com^$third-party (easyprivacy.txt: 3277) +.flixfacts.com +# ||flixfacts.co.uk^$third-party (easyprivacy.txt: 3276) +.flixfacts.co.uk +# ||flixcar.com^$third-party (easyprivacy.txt: 3275) +.flixcar.com +# ||flix360.com^$third-party (easyprivacy.txt: 3274) +.flix360.com +# ||flcounter.com^$third-party (easyprivacy.txt: 3273) +.flcounter.com +# ||flashgamestats.com^$third-party (easyprivacy.txt: 3272) +.flashgamestats.com +# ||flashadengine.com^$third-party (easyprivacy.txt: 3271) +.flashadengine.com +# ||flash-stat.com^$third-party (easyprivacy.txt: 3270) +.flash-stat.com +# ||flash-counter.com^$third-party (easyprivacy.txt: 3269) +.flash-counter.com +# ||flagcounter.com^$third-party (easyprivacy.txt: 3268) +.flagcounter.com +# ||fishhoo.com^$third-party (easyprivacy.txt: 3267) +.fishhoo.com +# ||finderlocator.com^$third-party (easyprivacy.txt: 3266) +.finderlocator.com +# ||find-ip-address.org^$third-party (easyprivacy.txt: 3265) +.find-ip-address.org +# ||finalid.com^$third-party (easyprivacy.txt: 3264) +.finalid.com +# ||filitrac.com^$third-party (easyprivacy.txt: 3263) +.filitrac.com +# ||fiksu.com^$third-party (easyprivacy.txt: 3262) +.fiksu.com +# ||fetchback.com^$third-party (easyprivacy.txt: 3261) +.fetchback.com +# ||feedperfect.com^$third-party (easyprivacy.txt: 3260) +.feedperfect.com +# ||feedjit.com^$third-party (easyprivacy.txt: 3259) +.feedjit.com +# ||feedcat.net^$third-party (easyprivacy.txt: 3258) +.feedcat.net +# ||fathomseo.com^$third-party (easyprivacy.txt: 3257) +.fathomseo.com +# ||fastwebcounter.com^$third-party (easyprivacy.txt: 3256) +.fastwebcounter.com +# ||fastonlineusers.com^$third-party (easyprivacy.txt: 3255) +.fastonlineusers.com +# ||fastly-analytics.com^$third-party (easyprivacy.txt: 3254) +.fastly-analytics.com +# ||fastanalytic.com^$third-party (easyprivacy.txt: 3253) +.fastanalytic.com +# ||fast-thinking.co.uk^$third-party (easyprivacy.txt: 3252) +.fast-thinking.co.uk +# ||farmer.wego.com^$third-party (easyprivacy.txt: 3251) +.farmer.wego.com +# ||fanplayr.com^$third-party (easyprivacy.txt: 3250) +.fanplayr.com +# ||factortg.com^$third-party (easyprivacy.txt: 3249) +.factortg.com +# ||fabricww.com^$third-party (easyprivacy.txt: 3248) +.fabricww.com +# ||ezytrack.com^$third-party (easyprivacy.txt: 3247) +.ezytrack.com +# ||ezec.co.uk^$third-party (easyprivacy.txt: 3246) +.ezec.co.uk +# ||eyein.com^$third-party (easyprivacy.txt: 3245) +.eyein.com +# ||extreme-dm.com^$third-party (easyprivacy.txt: 3244) +.extreme-dm.com +# ||extole.com^$third-party (easyprivacy.txt: 3243) +.extole.com +# ||explore-123.com^$third-party (easyprivacy.txt: 3242) +.explore-123.com +# ||exitmonitor.com^$third-party (easyprivacy.txt: 3241) +.exitmonitor.com +# ||exelator.com^$third-party (easyprivacy.txt: 3240) +.exelator.com +# ||exclusiveclicks.com^$third-party (easyprivacy.txt: 3239) +.exclusiveclicks.com +# ||ewebcounter.com^$third-party (easyprivacy.txt: 3238) +.ewebcounter.com +# ||ewebanalytics.com^$third-party (easyprivacy.txt: 3237) +.ewebanalytics.com +# ||evyy.net^$third-party (easyprivacy.txt: 3236) +.evyy.net +# ||evolvemediametrics.com^$third-party (easyprivacy.txt: 3235) +.evolvemediametrics.com +# ||evisitcs2.com^$third-party (easyprivacy.txt: 3234) +.evisitcs2.com +# ||evisitcs.com^$third-party (easyprivacy.txt: 3233) +.evisitcs.com +# ||evisitanalyst.com^$third-party (easyprivacy.txt: 3232) +.evisitanalyst.com +# ||evergage.com^$third-party (easyprivacy.txt: 3231) +.evergage.com +# ||everesttech.net^$third-party (easyprivacy.txt: 3230) +.everesttech.net +# ||everestjs.net^$third-party (easyprivacy.txt: 3229) +.everestjs.net +# ||evanetpro.com^$third-party (easyprivacy.txt: 3228) +.evanetpro.com +# ||europuls.net^$third-party (easyprivacy.txt: 3227) +.europuls.net +# ||europuls.eu^$third-party (easyprivacy.txt: 3226) +.europuls.eu +# ||europagerank.com^$third-party (easyprivacy.txt: 3225) +.europagerank.com +# ||eum-appdynamics.com^$third-party (easyprivacy.txt: 3224) +.eum-appdynamics.com +# ||euleriancdn.net^$third-party (easyprivacy.txt: 3223) +.euleriancdn.net +# ||eulerian.net^$third-party (easyprivacy.txt: 3222) +.eulerian.net +# ||eu-survey.com^$third-party (easyprivacy.txt: 3221) +.eu-survey.com +# ||etyper.com^$third-party (easyprivacy.txt: 3220) +.etyper.com +# ||etrigue.com^$third-party (easyprivacy.txt: 3219) +.etrigue.com +# ||etrafficstats.com^$third-party (easyprivacy.txt: 3218) +.etrafficstats.com +# ||etrafficcounter.com^$third-party (easyprivacy.txt: 3217) +.etrafficcounter.com +# ||etracker.com^$third-party (easyprivacy.txt: 3216) +.etracker.com +# ||ethnio.com^$third-party (easyprivacy.txt: 3215) +.ethnio.com +# ||ethn.io^$third-party (easyprivacy.txt: 3214) +.ethn.io +# ||etherealhakai.com^$third-party (easyprivacy.txt: 3213) +.etherealhakai.com +# ||etahub.com^$third-party (easyprivacy.txt: 3212) +.etahub.com +# ||estrack.net^$third-party (easyprivacy.txt: 3211) +.estrack.net +# ||esomniture.com^$third-party (easyprivacy.txt: 3210) +.esomniture.com +# ||esm1.net^$third-party (easyprivacy.txt: 3209) +.esm1.net +# ||esearchvision.com^$third-party (easyprivacy.txt: 3208) +.esearchvision.com +# ||ereportz.com^$third-party (easyprivacy.txt: 3207) +.ereportz.com +# ||eps-analyzer.de^$third-party (easyprivacy.txt: 3206) +.eps-analyzer.de +# ||eproof.com^$third-party (easyprivacy.txt: 3205) +.eproof.com +# ||epitrack.com^$third-party (easyprivacy.txt: 3204) +.epitrack.com +# ||epilot.com^$third-party (easyprivacy.txt: 3203) +.epilot.com +# ||eperfectdata.com^$third-party (easyprivacy.txt: 3202) +.eperfectdata.com +# ||enticelabs.com^$third-party (easyprivacy.txt: 3201) +.enticelabs.com +# ||ensighten.com^$third-party (easyprivacy.txt: 3200) +.ensighten.com +# ||enquisite.com^$third-party (easyprivacy.txt: 3199) +.enquisite.com +# ||enhance.com^$third-party (easyprivacy.txt: 3198) +.enhance.com +# ||engine64.com^$third-party (easyprivacy.txt: 3197) +.engine64.com +# ||engine212.com^$third-party (easyprivacy.txt: 3196) +.engine212.com +# ||enectoanalytics.com^$third-party (easyprivacy.txt: 3195) +.enectoanalytics.com +# ||enecto.com^$third-party (easyprivacy.txt: 3194) +.enecto.com +# ||emltrk.com^$third-party (easyprivacy.txt: 3193) +.emltrk.com +# ||emjcd.com^$third-party (easyprivacy.txt: 3192) +.emjcd.com +# ||emediatrack.com^$third-party (easyprivacy.txt: 3191) +.emediatrack.com +# ||email-match.com^$third-party (easyprivacy.txt: 3190) +.email-match.com +# ||eloqua.com^$third-party (easyprivacy.txt: 3189) +.eloqua.com +# ||elitics.com^$third-party (easyprivacy.txt: 3188) +.elitics.com +# ||elite-s001.com^$third-party (easyprivacy.txt: 3187) +.elite-s001.com +# ||electusdigital.com^$third-party (easyprivacy.txt: 3186) +.electusdigital.com +# ||ela-3-tnk.com^$third-party (easyprivacy.txt: 3185) +.ela-3-tnk.com +# ||ekmpinpoint.com^$third-party (easyprivacy.txt: 3184) +.ekmpinpoint.com +# ||ekmpinpoint.co.uk^$third-party (easyprivacy.txt: 3183) +.ekmpinpoint.co.uk +# ||edgeadx.net^$third-party (easyprivacy.txt: 3182) +.edgeadx.net +# ||ecustomeropinions.com^$third-party (easyprivacy.txt: 3181) +.ecustomeropinions.com +# ||ecommstats.com^$third-party (easyprivacy.txt: 3180) +.ecommstats.com +# ||ecn5.com^$third-party (easyprivacy.txt: 3179) +.ecn5.com +# ||ec-track.com^$third-party (easyprivacy.txt: 3178) +.ec-track.com +# ||ebtrk1.com^$third-party (easyprivacy.txt: 3177) +.ebtrk1.com +# ||easyresearch.se^$third-party (easyprivacy.txt: 3176) +.easyresearch.se +# ||easyhitcounters.com^$third-party (easyprivacy.txt: 3175) +.easyhitcounters.com +# ||easycounter.com^$third-party (easyprivacy.txt: 3174) +.easycounter.com +# ||easy-hit-counters.com^$third-party (easyprivacy.txt: 3173) +.easy-hit-counters.com +# ||earnitup.com^$third-party (easyprivacy.txt: 3172) +.earnitup.com +# ||e-zeeinternet.com^$third-party (easyprivacy.txt: 3171) +.e-zeeinternet.com +# ||e-referrer.com^$third-party (easyprivacy.txt: 3170) +.e-referrer.com +# ||e-pagerank.net^$third-party (easyprivacy.txt: 3169) +.e-pagerank.net +# ||dyntrk.com^$third-party (easyprivacy.txt: 3168) +.dyntrk.com +# ||dwin2.com^$third-party (easyprivacy.txt: 3167) +.dwin2.com +# ||dwin1.com^$third-party (easyprivacy.txt: 3166) +.dwin1.com +# ||dv0.info^$third-party (easyprivacy.txt: 3165) +.dv0.info +# ||dummy-domain-do-not-change.com^$third-party (easyprivacy.txt: 3164) +.dummy-domain-do-not-change.com +# ||dtscout.com^$third-party (easyprivacy.txt: 3163) +.dtscout.com +# ||dti-ranker.com^$third-party (easyprivacy.txt: 3162) +.dti-ranker.com +# ||dstrack2.info^$third-party (easyprivacy.txt: 3161) +.dstrack2.info +# ||dsply.com^$third-party (easyprivacy.txt: 3160) +.dsply.com +# ||dsparking.com^$third-party (easyprivacy.txt: 3159) +.dsparking.com +# ||dsmmadvantage.com^$third-party (easyprivacy.txt: 3158) +.dsmmadvantage.com +# ||dps-reach.com^$third-party (easyprivacy.txt: 3157) +.dps-reach.com +# ||downture.in^$third-party (easyprivacy.txt: 3156) +.downture.in +# ||doubleclick.net^*/trackimp/$third-party (easyprivacy.txt: 3155) +.doubleclick.net/.*/trackimp/ +# ||doubleclick.net/pixel?$third-party (easyprivacy.txt: 3153) +.doubleclick.net/pixel\? +# ||doubleclick.net/json?$third-party (easyprivacy.txt: 3152) +.doubleclick.net/json\? +# ||doubleclick.net/imp;$third-party (easyprivacy.txt: 3151) +.doubleclick.net/imp; +# ||doubleclick.net/imp%$third-party (easyprivacy.txt: 3150) +.doubleclick.net/imp% +# ||doubleclick.net/activity$third-party (easyprivacy.txt: 3149) +.doubleclick.net/activity +# ||dotomi.com^$third-party (easyprivacy.txt: 3148) +.dotomi.com +# ||domodomain.com^$third-party (easyprivacy.txt: 3147) +.domodomain.com +# ||dominocounter.net^$third-party (easyprivacy.txt: 3146) +.dominocounter.net +# ||doclix.com^$third-party (easyprivacy.txt: 3145) +.doclix.com +# ||dmtry.com^$third-party (easyprivacy.txt: 3144) +.dmtry.com +# ||dmtracker.com^$third-party (easyprivacy.txt: 3143) +.dmtracker.com +# ||dmd53.com^$third-party (easyprivacy.txt: 3142) +.dmd53.com +# ||dmclick.cn^$third-party (easyprivacy.txt: 3141) +.dmclick.cn +# ||dmanalytics1.com^$third-party (easyprivacy.txt: 3140) +.dmanalytics1.com +# ||dlrowehtfodne.com^$third-party (easyprivacy.txt: 3139) +.dlrowehtfodne.com +# ||djers.com^$third-party (easyprivacy.txt: 3138) +.djers.com +# ||distralytics.com^$third-party (easyprivacy.txt: 3137) +.distralytics.com +# ||displaymarketplace.com^$third-party (easyprivacy.txt: 3136) +.displaymarketplace.com +# ||discovertrail.net^$third-party (easyprivacy.txt: 3135) +.discovertrail.net +# ||discover-path.com^$third-party (easyprivacy.txt: 3134) +.discover-path.com +# ||directrdr.com^$third-party (easyprivacy.txt: 3133) +.directrdr.com +# ||dinkstat.com^$third-party (easyprivacy.txt: 3132) +.dinkstat.com +# ||dimml.io^$third-party (easyprivacy.txt: 3131) +.dimml.io +# ||dimestore.com^$third-party (easyprivacy.txt: 3130) +.dimestore.com +# ||dignow.org^$third-party (easyprivacy.txt: 3129) +.dignow.org +# ||digitaloptout.com^$third-party (easyprivacy.txt: 3128) +.digitaloptout.com +# ||digdeepdigital.com.au^$third-party (easyprivacy.txt: 3127) +.digdeepdigital.com.au +# ||diffusion-tracker.com^$third-party (easyprivacy.txt: 3126) +.diffusion-tracker.com +# ||didit.com^$third-party (easyprivacy.txt: 3125) +.didit.com +# ||did-it.com^$third-party (easyprivacy.txt: 3124) +.did-it.com +# ||dhmtracking.co.za^$third-party (easyprivacy.txt: 3123) +.dhmtracking.co.za +# ||dgmsearchlab.com^$third-party (easyprivacy.txt: 3122) +.dgmsearchlab.com +# ||device9.com^$third-party (easyprivacy.txt: 3121) +.device9.com +# ||deqwas.net^$third-party (easyprivacy.txt: 3120) +.deqwas.net +# ||demdex.net^$third-party (easyprivacy.txt: 3119) +.demdex.net +# ||demandbase.com^$third-party (easyprivacy.txt: 3118) +.demandbase.com +# ||dejavu.mlapps.com^$third-party (easyprivacy.txt: 3117) +.dejavu.mlapps.com +# ||declaredthoughtfulness.co^$third-party (easyprivacy.txt: 3116) +.declaredthoughtfulness.co +# ||decideinteractive.com^$third-party (easyprivacy.txt: 3115) +.decideinteractive.com +# ||decibelinsight.net^$third-party (easyprivacy.txt: 3114) +.decibelinsight.net +# ||decdna.net^$third-party (easyprivacy.txt: 3113) +.decdna.net +# ||dc.tremormedia.com^$third-party (easyprivacy.txt: 3112) +.dc.tremormedia.com +# ||dc-storm.com^$third-party (easyprivacy.txt: 3111) +.dc-storm.com +# ||daylogs.com^$third-party (easyprivacy.txt: 3110) +.daylogs.com +# ||daylife-analytics.com^$third-party (easyprivacy.txt: 3109) +.daylife-analytics.com +# ||datvantage.com^$third-party (easyprivacy.txt: 3108) +.datvantage.com +# ||datam.com^$third-party (easyprivacy.txt: 3107) +.datam.com +# ||datafeedfile.com^$third-party (easyprivacy.txt: 3106) +.datafeedfile.com +# ||datacaciques.com^$third-party (easyprivacy.txt: 3105) +.datacaciques.com +# ||databrain.com^$third-party (easyprivacy.txt: 3104) +.databrain.com +# ||data-analytics.jp^$third-party (easyprivacy.txt: 3103) +.data-analytics.jp +# ||dashboard.io^$third-party (easyprivacy.txt: 3102) +.dashboard.io +# ||dapxl.com^$third-party (easyprivacy.txt: 3101) +.dapxl.com +# ||dailycaller-alerts.com^$third-party (easyprivacy.txt: 3100) +.dailycaller-alerts.com +# ||dadi.technology^$third-party (easyprivacy.txt: 3099) +.dadi.technology +# ||dacounter.com^$third-party (easyprivacy.txt: 3098) +.dacounter.com +# ||cytoclause.com^$third-party (easyprivacy.txt: 3097) +.cytoclause.com +# ||cybermonitor.com^$third-party (easyprivacy.txt: 3096) +.cybermonitor.com +# ||cya2.net^$third-party (easyprivacy.txt: 3095) +.cya2.net +# ||cxt.ms^$third-party (easyprivacy.txt: 3094) +.cxt.ms +# ||cxense.com^$third-party (easyprivacy.txt: 3093) +.cxense.com +# ||customerdiscoverytrack.com^$third-party (easyprivacy.txt: 3092) +.customerdiscoverytrack.com +# ||customerconversio.com^$third-party (easyprivacy.txt: 3091) +.customerconversio.com +# ||customer.io^$third-party (easyprivacy.txt: 3090) +.customer.io +# ||curalate.com^$third-party (easyprivacy.txt: 3089) +.curalate.com +# ||ctnsnet.com^$third-party (easyprivacy.txt: 3088) +.ctnsnet.com +# ||csi-tracking.com^$third-party (easyprivacy.txt: 3087) +.csi-tracking.com +# ||csdata1.com^$third-party (easyprivacy.txt: 3086) +.csdata1.com +# ||crwdcntrl.net^$third-party (easyprivacy.txt: 3085) +.crwdcntrl.net +# ||crsspxl.com^$third-party (easyprivacy.txt: 3084) +.crsspxl.com +# ||crowdtwist.com^$third-party (easyprivacy.txt: 3083) +.crowdtwist.com +# ||crowdskout.com^$third-party (easyprivacy.txt: 3082) +.crowdskout.com +# ||crowdscience.com^$third-party (easyprivacy.txt: 3081) +.crowdscience.com +# ||crosswalkmail.com^$third-party (easyprivacy.txt: 3080) +.crosswalkmail.com +# ||crosspixel.net^$third-party (easyprivacy.txt: 3079) +.crosspixel.net +# ||crmmetrixwris.com^$third-party (easyprivacy.txt: 3078) +.crmmetrixwris.com +# ||crmmetrix.fr^$third-party (easyprivacy.txt: 3077) +.crmmetrix.fr +# ||criteo.net^$third-party (easyprivacy.txt: 3076) +.criteo.net +# ||criteo.com^$third-party (easyprivacy.txt: 3075) +.criteo.com +# ||crazyegg.com^$third-party (easyprivacy.txt: 3074) +.crazyegg.com +# ||craktraffic.com^$third-party (easyprivacy.txt: 3073) +.craktraffic.com +# ||craftkeys.com^$third-party (easyprivacy.txt: 3072) +.craftkeys.com +# ||cqcounter.com^$third-party (easyprivacy.txt: 3071) +.cqcounter.com +# ||cpx.to^$third-party (easyprivacy.txt: 3070) +.cpx.to +# ||cpcmanager.com^$third-party (easyprivacy.txt: 3069) +.cpcmanager.com +# ||countz.com^$third-party (easyprivacy.txt: 3068) +.countz.com +# ||countomat.com^$third-party (easyprivacy.txt: 3067) +.countomat.com +# ||countingbiz.info^$third-party (easyprivacy.txt: 3066) +.countingbiz.info +# ||counting4free.com^$third-party (easyprivacy.txt: 3065) +.counting4free.com +# ||counterviews.net^$third-party (easyprivacy.txt: 3064) +.counterviews.net +# ||countertracker.com^$third-party (easyprivacy.txt: 3063) +.countertracker.com +# ||countersforlife.com^$third-party (easyprivacy.txt: 3062) +.countersforlife.com +# ||counterservis.com^$third-party (easyprivacy.txt: 3061) +.counterservis.com +# ||counters4u.com^$third-party (easyprivacy.txt: 3060) +.counters4u.com +# ||counterland.com^$third-party (easyprivacy.txt: 3059) +.counterland.com +# ||countergeo.com^$third-party (easyprivacy.txt: 3058) +.countergeo.com +# ||countercentral.com^$third-party (easyprivacy.txt: 3057) +.countercentral.com +# ||counterbot.com^$third-party (easyprivacy.txt: 3056) +.counterbot.com +# ||counter160.com^$third-party (easyprivacy.txt: 3055) +.counter160.com +# ||counter.top.kg^$third-party (easyprivacy.txt: 3054) +.counter.top.kg +# ||counter.gd^$third-party (easyprivacy.txt: 3053) +.counter.gd +# ||countby.com^$third-party (easyprivacy.txt: 3052) +.countby.com +# ||cost1action.com^$third-party (easyprivacy.txt: 3051) +.cost1action.com +# ||cormce.com^$third-party (easyprivacy.txt: 3050) +.cormce.com +# ||coremotives.com^$third-party (easyprivacy.txt: 3049) +.coremotives.com +# ||coremetrics.com^$third-party (easyprivacy.txt: 3048) +.coremetrics.com +# ||core-cen-54.com^$third-party (easyprivacy.txt: 3047) +.core-cen-54.com +# ||copperegg.com^$third-party (easyprivacy.txt: 3046) +.copperegg.com +# ||copacast.net^$third-party (easyprivacy.txt: 3045) +.copacast.net +# ||cooladata.com^$third-party (easyprivacy.txt: 3044) +.cooladata.com +# ||convertro.com^$third-party (easyprivacy.txt: 3043) +.convertro.com +# ||convertmarketing.net^$third-party (easyprivacy.txt: 3042) +.convertmarketing.net +# ||convertglobal.com^$third-party (easyprivacy.txt: 3041) +.convertglobal.com +# ||convertexperiments.com^$third-party (easyprivacy.txt: 3040) +.convertexperiments.com +# ||conversionruler.com^$third-party (easyprivacy.txt: 3039) +.conversionruler.com +# ||conversionly.com^$third-party (easyprivacy.txt: 3038) +.conversionly.com +# ||conversionlogic.net^$third-party (easyprivacy.txt: 3037) +.conversionlogic.net +# ||convergetrack.com^$third-party (easyprivacy.txt: 3036) +.convergetrack.com +# ||continue.com^$third-party (easyprivacy.txt: 3035) +.continue.com +# ||contextly.com^$third-party (easyprivacy.txt: 3034) +.contextly.com +# ||contentspread.net^$third-party (easyprivacy.txt: 3033) +.contentspread.net +# ||contentinsights.com^$third-party (easyprivacy.txt: 3032) +.contentinsights.com +# ||contentexchange.me^$third-party (easyprivacy.txt: 3031) +.contentexchange.me +# ||contemporaryceremonies.ca^$third-party (easyprivacy.txt: 3030) +.contemporaryceremonies.ca +# ||contactmonkey.com^$third-party (easyprivacy.txt: 3029) +.contactmonkey.com +# ||confirmit.com^$third-party (easyprivacy.txt: 3028) +.confirmit.com +# ||confirmational.com^$third-party (easyprivacy.txt: 3027) +.confirmational.com +# ||compteur.cc^$third-party (easyprivacy.txt: 3026) +.compteur.cc +# ||company-target.com^$third-party (easyprivacy.txt: 3025) +.company-target.com +# ||commander1.com^$third-party (easyprivacy.txt: 3024) +.commander1.com +# ||collserve.com^$third-party (easyprivacy.txt: 3023) +.collserve.com +# ||collarity.com^$third-party (easyprivacy.txt: 3022) +.collarity.com +# ||cognitivematch.com^$third-party (easyprivacy.txt: 3021) +.cognitivematch.com +# ||cogmatch.net^$third-party (easyprivacy.txt: 3020) +.cogmatch.net +# ||codata.ru^$third-party (easyprivacy.txt: 3019) +.codata.ru +# ||cnzz.com^$third-party (easyprivacy.txt: 3018) +.cnzz.com +# ||cnxweb.com^$third-party (easyprivacy.txt: 3017) +.cnxweb.com +# ||cnt1.net^$third-party (easyprivacy.txt: 3016) +.cnt1.net +# ||cmptch.com^$third-party (easyprivacy.txt: 3015) +.cmptch.com +# ||cmmeglobal.com^$third-party (easyprivacy.txt: 3014) +.cmmeglobal.com +# ||cmcore.com^$third-party (easyprivacy.txt: 3013) +.cmcore.com +# ||clustrmaps.com^$third-party (easyprivacy.txt: 3012) +.clustrmaps.com +# ||cloud-exploration.com^$third-party (easyprivacy.txt: 3011) +.cloud-exploration.com +# ||clixpy.com^$third-party (easyprivacy.txt: 3010) +.clixpy.com +# ||clixcount.com^$third-party (easyprivacy.txt: 3009) +.clixcount.com +# ||clickzzs.nl^$third-party (easyprivacy.txt: 3008) +.clickzzs.nl +# ||clickzs.com^$third-party (easyprivacy.txt: 3007) +.clickzs.com +# ||clicktracks.com^$third-party (easyprivacy.txt: 3006) +.clicktracks.com +# ||clicktrack1.com^$third-party (easyprivacy.txt: 3005) +.clicktrack1.com +# ||clicktale.net^$third-party (easyprivacy.txt: 3004) +.clicktale.net +# ||clickstream.co.za^$third-party (easyprivacy.txt: 3003) +.clickstream.co.za +# ||clickshift.com^$third-party (easyprivacy.txt: 3002) +.clickshift.com +# ||clicksen.se^$third-party (easyprivacy.txt: 3001) +.clicksen.se +# ||clicksagent.com^$third-party (easyprivacy.txt: 3000) +.clicksagent.com +# ||clickreport.com^$third-party (easyprivacy.txt: 2999) +.clickreport.com +# ||clickpathmedia.com^$third-party (easyprivacy.txt: 2998) +.clickpathmedia.com +# ||clickmeter.com^$third-party (easyprivacy.txt: 2997) +.clickmeter.com +# ||clickmanage.com^$third-party (easyprivacy.txt: 2996) +.clickmanage.com +# ||clickinc.com^$third-party (easyprivacy.txt: 2995) +.clickinc.com +# ||clickigniter.io^$third-party (easyprivacy.txt: 2994) +.clickigniter.io +# ||clickforensics.com^$third-party (easyprivacy.txt: 2993) +.clickforensics.com +# ||clickening.com^$third-party (easyprivacy.txt: 2992) +.clickening.com +# ||clickdimensions.com^$third-party (easyprivacy.txt: 2991) +.clickdimensions.com +# ||clickdensity.com^$third-party (easyprivacy.txt: 2990) +.clickdensity.com +# ||clickconversion.net^$third-party (easyprivacy.txt: 2989) +.clickconversion.net +# ||clickcloud.info^$third-party (easyprivacy.txt: 2988) +.clickcloud.info +# ||clickclick.net^$third-party (easyprivacy.txt: 2987) +.clickclick.net +# ||clickalyzer.com^$third-party (easyprivacy.txt: 2986) +.clickalyzer.com +# ||clickaider.com^$third-party (easyprivacy.txt: 2985) +.clickaider.com +# ||clickable.net^$third-party (easyprivacy.txt: 2984) +.clickable.net +# ||click4assistance.co.uk^$third-party (easyprivacy.txt: 2983) +.click4assistance.co.uk +# ||click2meter.com^$third-party (easyprivacy.txt: 2982) +.click2meter.com +# ||click-url.com^$third-party (easyprivacy.txt: 2981) +.click-url.com +# ||click-linking.com^$third-party (easyprivacy.txt: 2980) +.click-linking.com +# ||clevi.com^$third-party (easyprivacy.txt: 2979) +.clevi.com +# ||cleveritics.com^$third-party (easyprivacy.txt: 2978) +.cleveritics.com +# ||clearviewstats.com^$third-party (easyprivacy.txt: 2977) +.clearviewstats.com +# ||cleananalytics.com^$third-party (easyprivacy.txt: 2976) +.cleananalytics.com +# ||claritytag.com^$third-party (easyprivacy.txt: 2975) +.claritytag.com +# ||clarifyingquack.com^$third-party (easyprivacy.txt: 2974) +.clarifyingquack.com +# ||circular-counters.com^$third-party (easyprivacy.txt: 2973) +.circular-counters.com +# ||chrumedia.com^$third-party (easyprivacy.txt: 2972) +.chrumedia.com +# ||christmalicious.com^$third-party (easyprivacy.txt: 2971) +.christmalicious.com +# ||christiantop1000.com^$third-party (easyprivacy.txt: 2970) +.christiantop1000.com +# ||cheezburger-analytics.com^$third-party (easyprivacy.txt: 2969) +.cheezburger-analytics.com +# ||checkstat.nl^$third-party (easyprivacy.txt: 2968) +.checkstat.nl +# ||checkmypr.net^$third-party (easyprivacy.txt: 2967) +.checkmypr.net +# ||chartbeat.net^$third-party (easyprivacy.txt: 2966) +.chartbeat.net +# ||chartbeat.com^$third-party (easyprivacy.txt: 2965) +.chartbeat.com +# ||chartaca.com^$third-party (easyprivacy.txt: 2964) +.chartaca.com +# ||cftrack.com^$third-party (easyprivacy.txt: 2963) +.cftrack.com +# ||cetrk.com^$third-party (easyprivacy.txt: 2962) +.cetrk.com +# ||centraltag.com^$third-party (easyprivacy.txt: 2961) +.centraltag.com +# ||celebros-analytics.com^$third-party (easyprivacy.txt: 2960) +.celebros-analytics.com +# ||cedexis.net^$third-party (easyprivacy.txt: 2959) +.cedexis.net +# ||cedexis.com^$third-party (easyprivacy.txt: 2958) +.cedexis.com +# ||castelein.nu^$third-party (easyprivacy.txt: 2957) +.castelein.nu +# ||cashcount.com^$third-party (easyprivacy.txt: 2956) +.cashcount.com +# ||cashburners.com^$third-party (easyprivacy.txt: 2955) +.cashburners.com +# ||captivate.ai^$third-party (easyprivacy.txt: 2954) +.captivate.ai +# ||caphyon-analytics.com^$third-party (easyprivacy.txt: 2953) +.caphyon-analytics.com +# ||canopylabs.com^$third-party (easyprivacy.txt: 2952) +.canopylabs.com +# ||canddi.com^$third-party (easyprivacy.txt: 2951) +.canddi.com +# ||campaigncog.com^$third-party (easyprivacy.txt: 2950) +.campaigncog.com +# ||calltracks.com^$third-party (easyprivacy.txt: 2949) +.calltracks.com +# ||calltrackingmetrics.com^$third-party (easyprivacy.txt: 2948) +.calltrackingmetrics.com +# ||callrail.com^$third-party (easyprivacy.txt: 2947) +.callrail.com +# ||callmeasurement.com^$third-party (easyprivacy.txt: 2946) +.callmeasurement.com +# ||callisto.fm^$third-party (easyprivacy.txt: 2945) +.callisto.fm +# ||callingjustified.com^$third-party (easyprivacy.txt: 2944) +.callingjustified.com +# ||call-tracking.co.uk^$third-party (easyprivacy.txt: 2943) +.call-tracking.co.uk +# ||cadreon.com^$third-party (easyprivacy.txt: 2942) +.cadreon.com +# ||cache.fm^$third-party (easyprivacy.txt: 2941) +.cache.fm +# ||cache.am^$third-party (easyprivacy.txt: 2940) +.cache.am +# ||c4tw.net^$third-party (easyprivacy.txt: 2939) +.c4tw.net +# ||c4tracking01.com^$third-party (easyprivacy.txt: 2938) +.c4tracking01.com +# ||c3tag.com^$third-party (easyprivacy.txt: 2937) +.c3tag.com +# ||c3metrics.com^$third-party (easyprivacy.txt: 2936) +.c3metrics.com +# ||c1exchange.com^$third-party (easyprivacy.txt: 2935) +.c1exchange.com +# ||c.hit.ua^$third-party (easyprivacy.txt: 2934) +.c.hit.ua +# ||c.adroll.com^$third-party (easyprivacy.txt: 2933) +.c.adroll.com +# ||c-webstats.de^$third-party (easyprivacy.txt: 2932) +.c-webstats.de +# ||c-o-u-n-t.com^$third-party (easyprivacy.txt: 2931) +.c-o-u-n-t.com +# ||bytemgdd.com^$third-party (easyprivacy.txt: 2930) +.bytemgdd.com +# ||buzzdeck.com^$third-party (easyprivacy.txt: 2929) +.buzzdeck.com +# ||bux1le001.com^$third-party (easyprivacy.txt: 2928) +.bux1le001.com +# ||burt.io^$third-party (easyprivacy.txt: 2927) +.burt.io +# ||burstbeacon.com^$third-party (easyprivacy.txt: 2926) +.burstbeacon.com +# ||bugsnag.com^$third-party (easyprivacy.txt: 2925) +.bugsnag.com +# ||bugherd.com^$third-party (easyprivacy.txt: 2924) +.bugherd.com +# ||bubblestat.com^$third-party (easyprivacy.txt: 2923) +.bubblestat.com +# ||btttag.com^$third-party (easyprivacy.txt: 2922) +.btttag.com +# ||btstatic.com^$third-party (easyprivacy.txt: 2921) +.btstatic.com +# ||btbuckets.com^$third-party (easyprivacy.txt: 2920) +.btbuckets.com +# ||bstk.co^$third-party (easyprivacy.txt: 2919) +.bstk.co +# ||brsrvr.com^$third-party (easyprivacy.txt: 2918) +.brsrvr.com +# ||browser-statistik.de^$third-party (easyprivacy.txt: 2917) +.browser-statistik.de +# ||bronto.com^$third-party (easyprivacy.txt: 2916) +.bronto.com +# ||brilig.com^$third-party (easyprivacy.txt: 2915) +.brilig.com +# ||brightedge.com^$third-party (easyprivacy.txt: 2914) +.brightedge.com +# ||bridgevine.com^$third-party (easyprivacy.txt: 2913) +.bridgevine.com +# ||brcdn.com^$third-party (easyprivacy.txt: 2912) +.brcdn.com +# ||bouncex.com^$third-party (easyprivacy.txt: 2911) +.bouncex.com +# ||bounceexchange.com^$third-party (easyprivacy.txt: 2910) +.bounceexchange.com +# ||botsvisit.com^$third-party (easyprivacy.txt: 2909) +.botsvisit.com +# ||boomtrain.com^$third-party (easyprivacy.txt: 2908) +.boomtrain.com +# ||boomerang.com.au^$third-party (easyprivacy.txt: 2907) +.boomerang.com.au +# ||bnc.lt^$third-party (easyprivacy.txt: 2906) +.bnc.lt +# ||bmmetrix.com^$third-party (easyprivacy.txt: 2905) +.bmmetrix.com +# ||bmlmedia.com^$third-party (easyprivacy.txt: 2904) +.bmlmedia.com +# ||bm324.com^$third-party (easyprivacy.txt: 2903) +.bm324.com +# ||bm23.com^$third-party (easyprivacy.txt: 2902) +.bm23.com +# ||blvdstatus.com^$third-party (easyprivacy.txt: 2901) +.blvdstatus.com +# ||bluekai.com^$third-party (easyprivacy.txt: 2900) +.bluekai.com +# ||bluecava.com^$third-party (easyprivacy.txt: 2899) +.bluecava.com +# ||blogtoplist.com^$third-party (easyprivacy.txt: 2898) +.blogtoplist.com +# ||blogsontop.com^$third-party (easyprivacy.txt: 2897) +.blogsontop.com +# ||blogscounter.com^$third-party (easyprivacy.txt: 2896) +.blogscounter.com +# ||blogreaderproject.com^$third-party (easyprivacy.txt: 2895) +.blogreaderproject.com +# ||blogrankers.com^$third-party (easyprivacy.txt: 2894) +.blogrankers.com +# ||blogpatrol.com^$third-party (easyprivacy.txt: 2893) +.blogpatrol.com +# ||blogmeetsbrand.com^$third-party (easyprivacy.txt: 2892) +.blogmeetsbrand.com +# ||blog-stat.com^$third-party (easyprivacy.txt: 2891) +.blog-stat.com +# ||blockmetrics.com^$third-party (easyprivacy.txt: 2890) +.blockmetrics.com +# ||blizzardcheck.com^$third-party (easyprivacy.txt: 2889) +.blizzardcheck.com +# ||bkvtrack.com^$third-party (easyprivacy.txt: 2888) +.bkvtrack.com +# ||bkrtx.com^$third-party (easyprivacy.txt: 2887) +.bkrtx.com +# ||bizspring.net^$third-party (easyprivacy.txt: 2886) +.bizspring.net +# ||bizo.com^$third-party (easyprivacy.txt: 2885) +.bizo.com +# ||bizible.com^$third-party (easyprivacy.txt: 2884) +.bizible.com +# ||bitrix.info^$third-party (easyprivacy.txt: 2883) +.bitrix.info +# ||bionicclick.com^$third-party (easyprivacy.txt: 2882) +.bionicclick.com +# ||bigtracker.com^$third-party (easyprivacy.txt: 2881) +.bigtracker.com +# ||bigstats.net^$third-party (easyprivacy.txt: 2880) +.bigstats.net +# ||bigmir.net^$third-party (easyprivacy.txt: 2879) +.bigmir.net +# ||bigcattracks.com^$third-party (easyprivacy.txt: 2878) +.bigcattracks.com +# ||bidswitch.net^$third-party (easyprivacy.txt: 2877) +.bidswitch.net +# ||bfoleyinteractive.com^$third-party (easyprivacy.txt: 2876) +.bfoleyinteractive.com +# ||betarget.net^$third-party (easyprivacy.txt: 2875) +.betarget.net +# ||betarget.com^$third-party (easyprivacy.txt: 2874) +.betarget.com +# ||bestweb2013stat.lk^$third-party (easyprivacy.txt: 2873) +.bestweb2013stat.lk +# ||best-top.de^$third-party (easyprivacy.txt: 2871) +.best-top.de +# ||berg-6-82.com^$third-party (easyprivacy.txt: 2870) +.berg-6-82.com +# ||benchit.com^$third-party (easyprivacy.txt: 2869) +.benchit.com +# ||belstat.nl^$third-party (easyprivacy.txt: 2868) +.belstat.nl +# ||belstat.fr^$third-party (easyprivacy.txt: 2867) +.belstat.fr +# ||belstat.de^$third-party (easyprivacy.txt: 2866) +.belstat.de +# ||belstat.com^$third-party (easyprivacy.txt: 2865) +.belstat.com +# ||belstat.ch^$third-party (easyprivacy.txt: 2864) +.belstat.ch +# ||belstat.be^$third-party (easyprivacy.txt: 2863) +.belstat.be +# ||belstat.at^$third-party (easyprivacy.txt: 2862) +.belstat.at +# ||behavioralengine.com^$third-party (easyprivacy.txt: 2861) +.behavioralengine.com +# ||beencounter.com^$third-party (easyprivacy.txt: 2860) +.beencounter.com +# ||beemrdwn.com^$third-party (easyprivacy.txt: 2859) +.beemrdwn.com +# ||bebj.com^$third-party (easyprivacy.txt: 2858) +.bebj.com +# ||beanstock.com^$third-party (easyprivacy.txt: 2857) +.beanstock.com +# ||beanstalkdata.com^$third-party (easyprivacy.txt: 2856) +.beanstalkdata.com +# ||beacon.kmi-us.com^$third-party (easyprivacy.txt: 2855) +.beacon.kmi-us.com +# ||baynote.net^$third-party (easyprivacy.txt: 2854) +.baynote.net +# ||basilic.io^$third-party (easyprivacy.txt: 2853) +.basilic.io +# ||basicstat.com^$third-party (easyprivacy.txt: 2852) +.basicstat.com +# ||barilliance.net^$third-party (easyprivacy.txt: 2851) +.barilliance.net +# ||baptisttop1000.com^$third-party (easyprivacy.txt: 2850) +.baptisttop1000.com +# ||azera-s014.com^$third-party (easyprivacy.txt: 2849) +.azera-s014.com +# ||axf8.net^$third-party (easyprivacy.txt: 2848) +.axf8.net +# ||awmcounter.de^$third-party (easyprivacy.txt: 2847) +.awmcounter.de +# ||awesomelytics.com^$third-party (easyprivacy.txt: 2846) +.awesomelytics.com +# ||awasete.com^$third-party (easyprivacy.txt: 2845) +.awasete.com +# ||avmws.com^$third-party (easyprivacy.txt: 2844) +.avmws.com +# ||avenseo.com^$third-party (easyprivacy.txt: 2843) +.avenseo.com +# ||avazudsp.net^$third-party (easyprivacy.txt: 2842) +.avazudsp.net +# ||avastats.com^$third-party (easyprivacy.txt: 2841) +.avastats.com +# ||avantlink.com^$third-party (easyprivacy.txt: 2840) +.avantlink.com +# ||autoaudience.com^$third-party (easyprivacy.txt: 2839) +.autoaudience.com +# ||autoaffiliatenetwork.com^$third-party (easyprivacy.txt: 2838) +.autoaffiliatenetwork.com +# ||auto-ping.com^$third-party (easyprivacy.txt: 2837) +.auto-ping.com +# ||authorinsights.com^$third-party (easyprivacy.txt: 2836) +.authorinsights.com +# ||audrte.com^$third-party (easyprivacy.txt: 2835) +.audrte.com +# ||audiencerate.com^$third-party (easyprivacy.txt: 2834) +.audiencerate.com +# ||audienceiq.com^$third-party (easyprivacy.txt: 2833) +.audienceiq.com +# ||audienceamplify.com^$third-party (easyprivacy.txt: 2832) +.audienceamplify.com +# ||attracta.com^$third-party (easyprivacy.txt: 2830) +.attracta.com +# ||atoshonetwork.com^$third-party (easyprivacy.txt: 2829) +.atoshonetwork.com +# ||athenainstitute.biz^$third-party (easyprivacy.txt: 2828) +.athenainstitute.biz +# ||atatus.com^$third-party (easyprivacy.txt: 2827) +.atatus.com +# ||astro-way.com^$third-party (easyprivacy.txt: 2826) +.astro-way.com +# ||assoctrac.com^$third-party (easyprivacy.txt: 2825) +.assoctrac.com +# ||arturtrack.com^$third-party (easyprivacy.txt: 2824) +.arturtrack.com +# ||arpxs.com^$third-party (easyprivacy.txt: 2823) +.arpxs.com +# ||arpuonline.com^$third-party (easyprivacy.txt: 2822) +.arpuonline.com +# ||arlime.com^$third-party (easyprivacy.txt: 2821) +.arlime.com +# ||arkayne.com^$third-party (easyprivacy.txt: 2820) +.arkayne.com +# ||arena-quantum.co.uk^$third-party (easyprivacy.txt: 2819) +.arena-quantum.co.uk +# ||arch-nicto.com^$third-party (easyprivacy.txt: 2818) +.arch-nicto.com +# ||arcadeweb.com^$third-party (easyprivacy.txt: 2817) +.arcadeweb.com +# ||aqtracker.com^$third-party (easyprivacy.txt: 2816) +.aqtracker.com +# ||appboycdn.com^$third-party (easyprivacy.txt: 2815) +.appboycdn.com +# ||apollofind.com^$third-party (easyprivacy.txt: 2814) +.apollofind.com +# ||apicit.net^$third-party (easyprivacy.txt: 2813) +.apicit.net +# ||apextwo.com^$third-party (easyprivacy.txt: 2812) +.apextwo.com +# ||apexstats.com^$third-party (easyprivacy.txt: 2811) +.apexstats.com +# ||anti-cheat.info^$third-party (easyprivacy.txt: 2810) +.anti-cheat.info +# ||anonymousdmp.com^$third-party (easyprivacy.txt: 2809) +.anonymousdmp.com +# ||angsrvr.com^$third-party (easyprivacy.txt: 2808) +.angsrvr.com +# ||angelfishstats.com^$third-party (easyprivacy.txt: 2807) +.angelfishstats.com +# ||anexia-it.com^$third-party (easyprivacy.txt: 2806) +.anexia-it.com +# ||anatid3.com^$third-party (easyprivacy.txt: 2805) +.anatid3.com +# ||anametrix.net^$third-party (easyprivacy.txt: 2804) +.anametrix.net +# ||anametrix.com^$third-party (easyprivacy.txt: 2803) +.anametrix.com +# ||analytk.com^$third-party (easyprivacy.txt: 2802) +.analytk.com +# ||analyticswizard.com^$third-party (easyprivacy.txt: 2801) +.analyticswizard.com +# ||analytics-engine.net^$third-party (easyprivacy.txt: 2800) +.analytics-engine.net +# ||analytics-egain.com^$third-party (easyprivacy.txt: 2799) +.analytics-egain.com +# ||analysistools.net^$third-party (easyprivacy.txt: 2798) +.analysistools.net +# ||analoganalytics.com^$third-party (easyprivacy.txt: 2797) +.analoganalytics.com +# ||amxdt.com^$third-party (easyprivacy.txt: 2796) +.amxdt.com +# ||amung.us^$third-party (easyprivacy.txt: 2795) +.amung.us +# ||amikay.com^$third-party (easyprivacy.txt: 2794) +.amikay.com +# ||amctp.net^$third-party (easyprivacy.txt: 2793) +.amctp.net +# ||ambercrow.com^$third-party (easyprivacy.txt: 2792) +.ambercrow.com +# ||amazingcounters.com^$third-party (easyprivacy.txt: 2791) +.amazingcounters.com +# ||amavalet.com^$third-party (easyprivacy.txt: 2790) +.amavalet.com +# ||amadesa.com^$third-party (easyprivacy.txt: 2789) +.amadesa.com +# ||alzexa.com^$third-party (easyprivacy.txt: 2788) +.alzexa.com +# ||alvenda.com^$third-party (easyprivacy.txt: 2787) +.alvenda.com +# ||altastat.com^$third-party (easyprivacy.txt: 2786) +.altastat.com +# ||alnera.eu^$third-party (easyprivacy.txt: 2785) +.alnera.eu +# ||alltracked.com^$third-party (easyprivacy.txt: 2784) +.alltracked.com +# ||alltagcloud.info^$third-party (easyprivacy.txt: 2783) +.alltagcloud.info +# ||alexametrics.com^$third-party (easyprivacy.txt: 2782) +.alexametrics.com +# ||alexacdn.com^$third-party (easyprivacy.txt: 2781) +.alexacdn.com +# ||alenty.com^$third-party (easyprivacy.txt: 2780) +.alenty.com +# ||akstat.com^$third-party (easyprivacy.txt: 2779) +.akstat.com +# ||airpr.com^$third-party (easyprivacy.txt: 2778) +.airpr.com +# ||aimediagroup.com^$third-party (easyprivacy.txt: 2777) +.aimediagroup.com +# ||agkn.com^$third-party (easyprivacy.txt: 2776) +.agkn.com +# ||agilone.com^$third-party (easyprivacy.txt: 2775) +.agilone.com +# ||agentinteractive.com^$third-party (easyprivacy.txt: 2774) +.agentinteractive.com +# ||agencytradingdesk.net^$third-party (easyprivacy.txt: 2773) +.agencytradingdesk.net +# ||affistats.com^$third-party (easyprivacy.txt: 2772) +.affistats.com +# ||affinitymatrix.com^$third-party (easyprivacy.txt: 2771) +.affinitymatrix.com +# ||affinesystems.com^$third-party (easyprivacy.txt: 2770) +.affinesystems.com +# ||affiliatetrackingsetup.com^$third-party (easyprivacy.txt: 2769) +.affiliatetrackingsetup.com +# ||affiliates-pro.com^$third-party (easyprivacy.txt: 2768) +.affiliates-pro.com +# ||affiliateedge.eu^$third-party (easyprivacy.txt: 2767) +.affiliateedge.eu +# ||affilae.com^$third-party (easyprivacy.txt: 2766) +.affilae.com +# ||adyapper.com^$third-party (easyprivacy.txt: 2765) +.adyapper.com +# ||advconversion.com^$third-party (easyprivacy.txt: 2764) +.advconversion.com +# ||advanced-web-analytics.com^$third-party (easyprivacy.txt: 2763) +.advanced-web-analytics.com +# ||adultblogtoplist.com^$third-party (easyprivacy.txt: 2762) +.adultblogtoplist.com +# ||adtelligence.de^$third-party (easyprivacy.txt: 2761) +.adtelligence.de +# ||adtarget.me^$third-party (easyprivacy.txt: 2760) +.adtarget.me +# ||adsymptotic.com^$third-party (easyprivacy.txt: 2759) +.adsymptotic.com +# ||adsensedetective.com^$third-party (easyprivacy.txt: 2758) +.adsensedetective.com +# ||adprotraffic.com^$third-party (easyprivacy.txt: 2757) +.adprotraffic.com +# ||adoftheyear.com^$third-party (easyprivacy.txt: 2756) +.adoftheyear.com +# ||adobetag.com^$third-party (easyprivacy.txt: 2755) +.adobetag.com +# ||adku.com^$third-party (easyprivacy.txt: 2754) +.adku.com +# ||adku.co^$third-party (easyprivacy.txt: 2753) +.adku.co +# ||adinsight.eu^$third-party (easyprivacy.txt: 2752) +.adinsight.eu +# ||adinsight.com^$third-party (easyprivacy.txt: 2751) +.adinsight.com +# ||adgreed.com^$third-party (easyprivacy.txt: 2750) +.adgreed.com +# ||adelixir.com^$third-party (easyprivacy.txt: 2749) +.adelixir.com +# ||addlvr.com^$third-party (easyprivacy.txt: 2748) +.addlvr.com +# ||addfreestats.com^$third-party (easyprivacy.txt: 2747) +.addfreestats.com +# ||adclickstats.net^$third-party (easyprivacy.txt: 2746) +.adclickstats.net +# ||adchemy.com^$third-party (easyprivacy.txt: 2745) +.adchemy.com +# ||adchemy-content.com^$third-party (easyprivacy.txt: 2744) +.adchemy-content.com +# ||adchemix.com^$third-party (easyprivacy.txt: 2743) +.adchemix.com +# ||ad-score.com^$third-party (easyprivacy.txt: 2742) +.ad-score.com +# ||acxiom-online.com^$third-party (easyprivacy.txt: 2741) +.acxiom-online.com +# ||actnx.com^$third-party (easyprivacy.txt: 2740) +.actnx.com +# ||activeprospects.com^$third-party (easyprivacy.txt: 2739) +.activeprospects.com +# ||activemeter.com^$third-party (easyprivacy.txt: 2738) +.activemeter.com +# ||activeconversion.com^$third-party (easyprivacy.txt: 2737) +.activeconversion.com +# ||active-trk7.com^$third-party (easyprivacy.txt: 2736) +.active-trk7.com +# ||acq.io^$third-party (easyprivacy.txt: 2735) +.acq.io +# ||acint.net^$third-party (easyprivacy.txt: 2734) +.acint.net +# ||acetrk.com^$third-party (easyprivacy.txt: 2733) +.acetrk.com +# ||acestats.net^$third-party (easyprivacy.txt: 2732) +.acestats.net +# ||acecounter.com^$third-party (easyprivacy.txt: 2731) +.acecounter.com +# ||accessintel.com^$third-party (easyprivacy.txt: 2730) +.accessintel.com +# ||access-traffic.com^$third-party (easyprivacy.txt: 2729) +.access-traffic.com +# ||access-analyze.org^$third-party (easyprivacy.txt: 2728) +.access-analyze.org +# ||acc-hd.de^$third-party (easyprivacy.txt: 2727) +.acc-hd.de +# ||absolstats.co.za^$third-party (easyprivacy.txt: 2726) +.absolstats.co.za +# ||abmr.net^$third-party (easyprivacy.txt: 2725) +.abmr.net +# ||abcstats.com^$third-party (easyprivacy.txt: 2724) +.abcstats.com +# ||aaddzz.com^$third-party (easyprivacy.txt: 2723) +.aaddzz.com +# ||a8ww.net^$third-party (easyprivacy.txt: 2722) +.a8ww.net +# ||a8.net^$third-party (easyprivacy.txt: 2721) +.a8.net +# ||a013.com^$third-party (easyprivacy.txt: 2720) +.a013.com +# ||a-pagerank.net^$third-party (easyprivacy.txt: 2719) +.a-pagerank.net +# ||a-counters.com^$third-party (easyprivacy.txt: 2718) +.a-counters.com +# ||9nl.eu^$third-party (easyprivacy.txt: 2717) +.9nl.eu +# ||99stats.com^$third-party (easyprivacy.txt: 2716) +.99stats.com +# ||99counters.com^$third-party (easyprivacy.txt: 2715) +.99counters.com +# ||8020solutions.net^$third-party (easyprivacy.txt: 2714) +.8020solutions.net +# ||7eer.net^$third-party (easyprivacy.txt: 2713) +.7eer.net +# ||7bpeople.com^$third-party (easyprivacy.txt: 2712) +.7bpeople.com +# ||77tracking.com^$third-party (easyprivacy.txt: 2710) +.77tracking.com +# ||74.55.82.102^$third-party (easyprivacy.txt: 2709) +.74.55.82.102 +# ||72.172.88.25^$third-party (easyprivacy.txt: 2708) +.72.172.88.25 +# ||67.228.151.70^$third-party (easyprivacy.txt: 2707) +.67.228.151.70 +# ||66.228.52.30^$third-party (easyprivacy.txt: 2706) +.66.228.52.30 +# ||62.160.52.73^$third-party (easyprivacy.txt: 2705) +.62.160.52.73 +# ||55labs.com^$third-party (easyprivacy.txt: 2704) +.55labs.com +# ||4oney.com^$third-party (easyprivacy.txt: 2703) +.4oney.com +# ||3gl.net^$third-party (easyprivacy.txt: 2702) +.3gl.net +# ||3dstats.com^$third-party (easyprivacy.txt: 2701) +.3dstats.com +# ||3dlivestats.com^$third-party (easyprivacy.txt: 2700) +.3dlivestats.com +# ||360tag.net^$third-party (easyprivacy.txt: 2699) +.360tag.net +# ||360tag.com^$third-party (easyprivacy.txt: 2698) +.360tag.com +# ||360i.com^$third-party (easyprivacy.txt: 2697) +.360i.com +# ||33across.com^$third-party (easyprivacy.txt: 2696) +.33across.com +# ||2o7.net^$third-party (easyprivacy.txt: 2695) +.2o7.net +# ||2cnt.net^$third-party (easyprivacy.txt: 2694) +.2cnt.net +# ||24log.com^$third-party (easyprivacy.txt: 2693) +.24log.com +# ||24counter.com^$third-party (easyprivacy.txt: 2692) +.24counter.com +# ||247ilabs.com^$third-party (easyprivacy.txt: 2691) +.247ilabs.com +# ||212.227.100.108^$third-party (easyprivacy.txt: 2689) +.212.227.100.108 +# ||206solutions.com^$third-party (easyprivacy.txt: 2687) +.206solutions.com +# ||204st.us^$third-party (easyprivacy.txt: 2686) +.204st.us +# ||200summit.com^$third-party (easyprivacy.txt: 2685) +.200summit.com +# ||1pel.com^$third-party (easyprivacy.txt: 2684) +.1pel.com +# ||1freecounter.com^$third-party (easyprivacy.txt: 2683) +.1freecounter.com +# ||195.10.245.55^$third-party (easyprivacy.txt: 2682) +.195.10.245.55 +# ||149.13.65.144^$third-party (easyprivacy.txt: 2681) +.149.13.65.144 +# ||123count.com^$third-party (easyprivacy.txt: 2680) +.123count.com +# ||11nux.com^$third-party (easyprivacy.txt: 2679) +.11nux.com +# ||103bees.com^$third-party (easyprivacy.txt: 2678) +.103bees.com +# ||100im.info^$third-party (easyprivacy.txt: 2677) +.100im.info +# ||1-cl0ud.com^$third-party (easyprivacy.txt: 2676) +.1-cl0ud.com +# ||0tracker.com^$third-party (easyprivacy.txt: 2675) +.0tracker.com +# ?affiliate=$third-party (easyprivacy.txt: 2564) +/.*\?affiliate= +# ://piwik.$third-party (easyprivacy.txt: 2552) +/.*://piwik\. +piwik.*. +# /WritePartnerCookie?$third-party (easyprivacy.txt: 2478) +/(.*/)?WritePartnerCookie\? +# /l1v.ly/*$third-party (easyprivacy.txt: 1260) +/(.*/)?l1v\.ly/.* +l1v.ly/.* +# /avantlink/*$third-party (easyprivacy.txt: 407) +/(.*/)?avantlink/.* +# .sharecounter.$third-party (easyprivacy.txt: 161) +/.*\.sharecounter\. +.*.sharecounter.*. + +#ab2p-block-request-Ani-Cni-Xx +{+client-header-tagger{ab2p-block-request-Ani} \ + +server-header-tagger{ab2p-block-request-Cni} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +# ||bestofmedia.com^*/beacons/$~image (easyprivacy.txt: 5444) +.bestofmedia.com/.*/beacons/ +# /cgi-bin/count.cgi?*df=$~image (easyprivacy.txt: 531) +/(.*/)?cgi-bin/count\.cgi\?.*df= + +#ab2p-block-request-Anj-Cnj-Xx +{+client-header-tagger{ab2p-block-request-Anj} \ + +server-header-tagger{ab2p-block-request-Cnj} \ + +client-header-tagger{ab2p-block-request-Xx} \ +} +# ||thefilter.com^*?extanonid=$~script (easyprivacy.txt: 6497) +.thefilter.com/.*\?extanonid= + +#ab2p-block-request-R1 +{+client-header-tagger{ab2p-block-request-R1} \ +} +# ||cloudfront.net/photo/*_tp_*.jpg$domain=9gag.com (easyprivacy.txt: 7729) +.cloudfront.net/photo/.*_tp_.*\.jpg + +#ab2p-block-request-R2 +{+client-header-tagger{ab2p-block-request-R2} \ +} +# ||abc.com/service/gremlin/js/files/s_code.js?$domain=abc.go.com (easyprivacy.txt: 9436) +.abc.com/service/gremlin/js/files/s_code\.js\? + +#ab2p-block-request-R3 +{+client-header-tagger{ab2p-block-request-R3} \ +} +# ||aexp-static.com/api/axpi/omniture/s_code_myca_context.js$domain=americanexpress.com (easyprivacy.txt: 9439) +.aexp-static.com/api/axpi/omniture/s_code_myca_context\.js + +#ab2p-block-request-R4 +{+client-header-tagger{ab2p-block-request-R4} \ +} +# ||img-bahn.de/v/*/js/s_code.js$domain=bahn.de (easyprivacy.txt: 9457) +.img-bahn.de/v/.*/js/s_code\.js + +#ab2p-block-request-R5 +{+client-header-tagger{ab2p-block-request-R5} \ +} +# ||bbystatic.com/js/_analytics/$domain=bestbuy.com (easyprivacy.txt: 7583) +.bbystatic.com/js/_analytics/ + +#ab2p-block-request-R6 +{+client-header-tagger{ab2p-block-request-R6} \ +} +# ||85.237.86.50/stat/$domain=bluray-disc.de (easyprivacy.txt: 9495) +.85.237.86.50/stat/ + +#ab2p-block-request-R7 +{+client-header-tagger{ab2p-block-request-R7} \ +} +# ||google-analytics.com/analytics.js$domain=boote-forum.de (easyprivacy.txt: 10218) +.google-analytics.com/analytics\.js + +#ab2p-block-request-R9 +{+client-header-tagger{ab2p-block-request-R9} \ +} +# /fam/view.php?$domain=cnet.com (easyprivacy.txt: 7352) +/(.*/)?fam/view\.php\? + +#ab2p-block-request-R10 +{+client-header-tagger{ab2p-block-request-R10} \ +} +# ||xplosion.de^$domain=comunio.de (easyprivacy.txt: 10225) +.xplosion.de +# ||ioam.de/tx.io?$domain=comunio.de (easyprivacy.txt: 10224) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=comunio.de (easyprivacy.txt: 10223) +.ioam.de/\? +# ||criteo.com^$domain=comunio.de (easyprivacy.txt: 10222) +.criteo.com +# ||analytics.comunio.net^$domain=comunio.de (easyprivacy.txt: 10221) +.analytics.comunio.net +# ||analytics.comunio.de^$domain=comunio.de (easyprivacy.txt: 10220) +.analytics.comunio.de + +#ab2p-block-request-R11 +{+client-header-tagger{ab2p-block-request-R11} \ +} +# ||dmcdn.net/track/$domain=dailymotion.com (easyprivacy.txt: 7836) +.dmcdn.net/track/ +# ||cloudfront.net/dm.js$domain=dailymotion.com (easyprivacy.txt: 7725) +.cloudfront.net/dm\.js + +#ab2p-block-request-R12 +{+client-header-tagger{ab2p-block-request-R12} \ +} +# ||mnginteractive.com/live/omniture/sccore.js$domain=denverpost.com (easyprivacy.txt: 9466) +.mnginteractive.com/live/omniture/sccore\.js + +#ab2p-block-request-R13 +{+client-header-tagger{ab2p-block-request-R13} \ +} +# ||cdnds.net/js/s_code.js$domain=digitalspy.ca|digitalspy.co.nz|digitalspy.co.uk|digitalspy.com|digitalspy.com.au|digitalspy.ie (easyprivacy.txt: 9444) +.cdnds.net/js/s_code\.js + +#ab2p-block-request-R14 +{+client-header-tagger{ab2p-block-request-R14} \ +} +# ||edgecastcdn.net^*/ehow_am.js$domain=ehow.com (easyprivacy.txt: 7867) +.edgecastcdn.net/.*/ehow_am\.js + +#ab2p-block-request-R15 +{+client-header-tagger{ab2p-block-request-R15} \ +} +# ||el-mundo.net/js/s_code.js$domain=elmundo.es|marca.com|tiramillas.net (easyprivacy.txt: 9451) +.el-mundo.net/js/s_code\.js + +#ab2p-block-request-R16 +{+client-header-tagger{ab2p-block-request-R16} \ +} +# ||pixel.facebook.com^$domain=facebook.com (easyprivacy.txt: 10196) +.pixel.facebook.com + +#ab2p-block-request-R17 +{+client-header-tagger{ab2p-block-request-R17} \ +} +# ||google-analytics.com/analytics.js$domain=fanfiktion.de (easyprivacy.txt: 10216) +.google-analytics.com/analytics\.js +# ||criteo.com^$domain=fanfiktion.de (easyprivacy.txt: 10215) +.criteo.com + +#ab2p-block-request-R19 +{+client-header-tagger{ab2p-block-request-R19} \ +} +# ||xplosion.de^$domain=focus.de (easyprivacy.txt: 10181) +.xplosion.de +# ||visualrevenue.com^$domain=focus.de (easyprivacy.txt: 10180) +.visualrevenue.com +# ||optimizely.com^$domain=focus.de (easyprivacy.txt: 10178) +.optimizely.com +# ||met.vgwort.de^$domain=focus.de (easyprivacy.txt: 10177) +.met.vgwort.de +# ||lp4.io^$domain=focus.de (easyprivacy.txt: 10176) +.lp4.io +# ||log.outbrain.com^$domain=focus.de (easyprivacy.txt: 10175) +.log.outbrain.com +# ||krxd.net^$domain=focus.de (easyprivacy.txt: 10174) +.krxd.net +# ||ioam.de/tx.io?$domain=focus.de (easyprivacy.txt: 10173) +.ioam.de/tx\.io\? +# ||googletagmanager.com^$domain=focus.de (easyprivacy.txt: 10172) +.googletagmanager.com +# ||emetriq.de^$domain=focus.de (easyprivacy.txt: 10171) +.emetriq.de +# ||cloudfront.net/track?$domain=focus.de (easyprivacy.txt: 10170) +.cloudfront.net/track\? +# ||clicktale.net^$domain=focus.de (easyprivacy.txt: 10169) +.clicktale.net +# /pagedot.gif?$domain=focus.de (easyprivacy.txt: 10168) +/(.*/)?pagedot\.gif\? + +#ab2p-block-request-R20 +{+client-header-tagger{ab2p-block-request-R20} \ +} +# ||scorecardresearch.com^$domain=gamestar.de (easyprivacy.txt: 10166) +.scorecardresearch.com +# ||ioam.de/tx.io?$domain=gamestar.de (easyprivacy.txt: 10165) +.ioam.de/tx\.io\? +# ||googletagmanager.com/gtm.js?$third-party$domain=gamestar.de (easyprivacy.txt: 10164) +.googletagmanager.com/gtm\.js\?\$third-party +# ||google-analytics.com/analytics.js$domain=gamestar.de (easyprivacy.txt: 10163) +.google-analytics.com/analytics\.js +# ||gamestar.de/_misc/tracking/$domain=gamestar.de (easyprivacy.txt: 10162) +.gamestar.de/_misc/tracking/ +# /ping.gif?$domain=gamestar.de (easyprivacy.txt: 10161) +/(.*/)?ping\.gif\? + +#ab2p-block-request-R21 +{+client-header-tagger{ab2p-block-request-R21} \ +} +# ||213.8.193.45/themarker/$domain=haaretz.com (easyprivacy.txt: 7360) +.213.8.193.45/themarker/ + +#ab2p-block-request-R22 +{+client-header-tagger{ab2p-block-request-R22} \ +} +# ||amazonaws.com^*/track.js$domain=hitfix.com (easyprivacy.txt: 5313) +.amazonaws.com/.*/track\.js + +#ab2p-block-request-R23 +{+client-header-tagger{ab2p-block-request-R23} \ +} +# /viewtrack/track?$domain=hulu.com (easyprivacy.txt: 7353) +/(.*/)?viewtrack/track\? + +#ab2p-block-request-R24 +{+client-header-tagger{ab2p-block-request-R24} \ +} +# ||images-amazon.com^*/beacon-$domain=imdb.com (easyprivacy.txt: 8185) +.images-amazon.com/.*/beacon- + +#ab2p-block-request-R25 +{+client-header-tagger{ab2p-block-request-R25} \ +} +# ||atgstores.com/js/lowesca_s_code.js$domain=lowes.ca (easyprivacy.txt: 9441) +.atgstores.com/js/lowesca_s_code\.js + +#ab2p-block-request-R26 +{+client-header-tagger{ab2p-block-request-R26} \ +} +# ||mnginteractive.com/live/omniture/custom_scripts/omnicore-blogs.js$domain=mercurynews.com (easyprivacy.txt: 9465) +.mnginteractive.com/live/omniture/custom_scripts/omnicore-blogs\.js + +#ab2p-block-request-R27 +{+client-header-tagger{ab2p-block-request-R27} \ +} +# ||wp.com/wp-content/themes/vip/metrouk/js/site-catalyst.js$domain=metro.co.uk (easyprivacy.txt: 9487) +.wp.com/wp-content/themes/vip/metrouk/js/site-catalyst\.js + +#ab2p-block-request-R28 +{+client-header-tagger{ab2p-block-request-R28} \ +} +# ||s-msn.com/primedns.gif?$domain=msn.com (easyprivacy.txt: 8765) +.s-msn.com/primedns\.gif\? + +#ab2p-block-request-R29 +{+client-header-tagger{ab2p-block-request-R29} \ +} +# ||ioam.de/tx.io?$domain=notebookcheck.com (easyprivacy.txt: 10235) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=notebookcheck.com (easyprivacy.txt: 10234) +.ioam.de/\? +# ||google-analytics.com/analytics.js$domain=notebookcheck.com (easyprivacy.txt: 10233) +.google-analytics.com/analytics\.js + +#ab2p-block-request-R30 +{+client-header-tagger{ab2p-block-request-R30} \ +} +# ||demandware.edgesuite.net^*/omniture.js$domain=otterbox.com (easyprivacy.txt: 9449) +.demandware.edgesuite.net/.*/omniture\.js + +#ab2p-block-request-R31 +{+client-header-tagger{ab2p-block-request-R31} \ +} +# ||scorecardresearch.com^$domain=outbrain.com (easyprivacy.txt: 10179) +.scorecardresearch.com + +#ab2p-block-request-R32 +{+client-header-tagger{ab2p-block-request-R32} \ +} +# ||mnginteractive.com/live/omniture/sccore_NEW.js$domain=pasadenastarnews.com|presstelegram.com (easyprivacy.txt: 9467) +.mnginteractive.com/live/omniture/sccore_NEW\.js + +#ab2p-block-request-R33 +{+client-header-tagger{ab2p-block-request-R33} \ +} +# ||paypalobjects.com/*/m/mid.swf$domain=paypal.com (easyprivacy.txt: 8576) +.paypalobjects.com/.*/m/mid\.swf + +#ab2p-block-request-R34 +{+client-header-tagger{ab2p-block-request-R34} \ +} +# ||stroeerdigitalmedia.de^$domain=planetsnow.de (easyprivacy.txt: 10231) +.stroeerdigitalmedia.de +# ||plista.com/iframeShowItem.php$domain=planetsnow.de (easyprivacy.txt: 10230) +.plista.com/iframeShowItem\.php +# ||ioam.de/tx.io?$domain=planetsnow.de (easyprivacy.txt: 10229) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=planetsnow.de (easyprivacy.txt: 10228) +.ioam.de/\? +# ||google-analytics.com/analytics.js$domain=planetsnow.de (easyprivacy.txt: 10227) +.google-analytics.com/analytics\.js + +#ab2p-block-request-R35 +{+client-header-tagger{ab2p-block-request-R35} \ +} +# ||xplosion.de^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10201) +.xplosion.de +# ||webtrekk.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10200) +.webtrekk.net +# ||visualrevenue.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10199) +.visualrevenue.com +# ||theadex.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10198) +.theadex.com +# ||semasio.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10197) +.semasio.net +# ||nuggad.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10195) +.nuggad.net +# ||movad.de/c.ount?$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10194) +.movad.de/c\.ount\? +# ||imrworldwide.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10193) +.imrworldwide.com +# ||google-analytics.com/analytics.js$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10192) +.google-analytics.com/analytics\.js +# ||contentspread.net^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10191) +.contentspread.net +# ||chartbeat.com^$domain=prosieben.at|prosieben.ch|prosieben.de (easyprivacy.txt: 10190) +.chartbeat.com + +#ab2p-block-request-R36 +{+client-header-tagger{ab2p-block-request-R36} \ +} +# ||ybinst2.ec.yimg.com/ec/*&Type=Event.CPT&$domain=search.yahoo.com (easyprivacy.txt: 9375) +.ybinst2.ec.yimg.com/ec/.*&Type=Event\.CPT& + +#ab2p-block-request-R38 +{+client-header-tagger{ab2p-block-request-R38} \ +} +# ||nwsource.com/shared/js/s_code.js?$domain=seattletimes.com (easyprivacy.txt: 9470) +.nwsource.com/shared/js/s_code\.js\? + +#ab2p-block-request-R39 +{+client-header-tagger{ab2p-block-request-R39} \ +} +# ||aexp-static.com/api/axpi/omniture/s_code_serve.js?$domain=serve.com (easyprivacy.txt: 7408) +.aexp-static.com/api/axpi/omniture/s_code_serve\.js\? + +#ab2p-block-request-R40 +{+client-header-tagger{ab2p-block-request-R40} \ +} +# ||timeinc.net/tii/omniture/h/config/timesi.js$domain=si.com (easyprivacy.txt: 9483) +.timeinc.net/tii/omniture/h/config/timesi\.js + +#ab2p-block-request-R41 +{+client-header-tagger{ab2p-block-request-R41} \ +} +# ||skypeassets.com/static/skype.skypeloginstatic/js/s_code.js$domain=skype.com (easyprivacy.txt: 9480) +.skypeassets.com/static/skype\.skypeloginstatic/js/s_code\.js +# ||skypeassets.com/i/tracking/js/s_code_20121127.js$domain=skype.com (easyprivacy.txt: 9479) +.skypeassets.com/i/tracking/js/s_code_20121127\.js + +#ab2p-block-request-R42 +{+client-header-tagger{ab2p-block-request-R42} \ +} +# ||amazonaws.com/ds-dd/data/data.gif?$domain=slickdeals.net (easyprivacy.txt: 5301) +.amazonaws.com/ds-dd/data/data\.gif\? + +#ab2p-block-request-R43 +{+client-header-tagger{ab2p-block-request-R43} \ +} +# ||cloudfront.net/pages/scripts/0011/0794.js$domain=sourceforge.net (easyprivacy.txt: 7728) +.cloudfront.net/pages/scripts/0011/0794\.js +# ||fsdn.com/con/js/webtracker.js$domain=sourceforge.net (easyprivacy.txt: 5827) +.fsdn.com/con/js/webtracker\.js + +#ab2p-block-request-R44 +{+client-header-tagger{ab2p-block-request-R44} \ +} +# ||5.153.4.92^$domain=spreaker.com (easyprivacy.txt: 7367) +.5.153.4.92 + +#ab2p-block-request-R45 +{+client-header-tagger{ab2p-block-request-R45} \ +} +# ||69.25.121.67/page_load?$domain=theverge.com (easyprivacy.txt: 7370) +.69.25.121.67/page_load\? + +#ab2p-block-request-R47 +{+client-header-tagger{ab2p-block-request-R47} \ +} +# ||vinsight.de^$domain=tvspielfilm.de (easyprivacy.txt: 10188) +.vinsight.de +# ||ioam.de/tx.io?$domain=tvspielfilm.de (easyprivacy.txt: 10187) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=tvspielfilm.de (easyprivacy.txt: 10186) +.ioam.de/\? +# ||intelliad.de^$domain=tvspielfilm.de (easyprivacy.txt: 10185) +.intelliad.de +# ||googletagmanager.com/gtm.js?$domain=tvspielfilm.de (easyprivacy.txt: 10184) +.googletagmanager.com/gtm\.js\? +# ||facebook.com/tr?$domain=tvspielfilm.de (easyprivacy.txt: 10183) +.facebook.com/tr\? + +#ab2p-block-request-R48 +{+client-header-tagger{ab2p-block-request-R48} \ +} +# ||intercomcdn.com/intercom*.js$domain=unblocked.la (easyprivacy.txt: 5946) +.intercomcdn.com/intercom.*\.js + +#ab2p-block-request-R51 +{+client-header-tagger{ab2p-block-request-R51} \ +} +# ||visualwebsiteoptimizer.com^$domain=wetter.com (easyprivacy.txt: 10209) +.visualwebsiteoptimizer.com +# ||theadex.com^$domain=wetter.com (easyprivacy.txt: 10208) +.theadex.com +# ||mouseflow.com^$domain=wetter.com (easyprivacy.txt: 10207) +.mouseflow.com +# ||ioam.de/tx.io?$domain=wetter.com (easyprivacy.txt: 10206) +.ioam.de/tx\.io\? +# /piwik.$domain=wetter.com (easyprivacy.txt: 10205) +/(.*/)?piwik\. +piwik.*. +# /chartbeat.js$domain=wetter.com (easyprivacy.txt: 10204) +/(.*/)?chartbeat\.js +chartbeat.js*. +# /__utm.gif?$domain=wetter.com (easyprivacy.txt: 10203) +/(.*/)?__utm\.gif\? + +#ab2p-block-request-R52 +{+client-header-tagger{ab2p-block-request-R52} \ +} +# ||ioam.de/tx.io?$domain=woxikon.de (easyprivacy.txt: 10213) +.ioam.de/tx\.io\? +# ||ioam.de/?$domain=woxikon.de (easyprivacy.txt: 10212) +.ioam.de/\? +# /__utm.gif$domain=woxikon.de (easyprivacy.txt: 10211) +/(.*/)?__utm\.gif + +#ab2p-block-request-R53 +{+client-header-tagger{ab2p-block-request-R53} \ +} +# ||211.106.66.62^*/statistics/$domain=yonhapnews.co.kr (easyprivacy.txt: 10043) +.211.106.66.62/.*/statistics/ + +#ab2p-block-request-Rn57 +{+client-header-tagger{ab2p-block-request-Rn57} \ +} +# ||ssl-images-amazon.com/images/*/common/1x1._*.gif$domain=~amazon.com (easyprivacy.txt: 6373) +.ssl-images-amazon.com/images/.*/common/1x1\._.*\.gif + +#ab2p-block-request-Rn60 +{+client-header-tagger{ab2p-block-request-Rn60} \ +} +# ||219.232.238.60/count.$domain=~caixin.com.ip (easyprivacy.txt: 5207) +.219.232.238.60/count\. +# ||116.213.75.36/logstat/$domain=~caixin.com.ip (easyprivacy.txt: 5186) +.116.213.75.36/logstat/ + +#ab2p-block-request-Rn63 +{+client-header-tagger{ab2p-block-request-Rn63} \ +} +# ||180.70.93.115/ndmclick/$domain=~daum.ip (easyprivacy.txt: 7184) +.180.70.93.115/ndmclick/ + +#ab2p-block-request-Rn66 +{+client-header-tagger{ab2p-block-request-Rn66} \ +} +# ||199.116.177.156^$domain=~fc2.jp.ip (easyprivacy.txt: 7165) +.199.116.177.156 + +#ab2p-block-request-Rn72 +{+client-header-tagger{ab2p-block-request-Rn72} \ +} +# /analyticReportingAS3.$domain=~miniclip.com (easyprivacy.txt: 306) +/(.*/)?analyticReportingAS3\. +analyticReportingAS3.*. + +#ab2p-block-request-Rn75 +{+client-header-tagger{ab2p-block-request-Rn75} \ +} +# /piwik/*$domain=~piwik.org (easyprivacy.txt: 1613) +/(.*/)?piwik/.* +# /piwik-$domain=~piwik.org (easyprivacy.txt: 1610) +/(.*/)?piwik- +piwik-*. + +#ab2p-block-request-Rn76 +{+client-header-tagger{ab2p-block-request-Rn76} \ +} +# ||54.246.124.188/analytics/$domain=~racinguk.ip (easyprivacy.txt: 5215) +.54.246.124.188/analytics/ + +#ab2p-block-request-Rn78 +{+client-header-tagger{ab2p-block-request-Rn78} \ +} +# ||87.79.36.252/blank.gif?$domain=~sevenload.com.ip (easyprivacy.txt: 9496) +.87.79.36.252/blank\.gif\? + +#ab2p-block-request-Rn85 +{+client-header-tagger{ab2p-block-request-Rn85} \ +} +# http://utm.$domain=~utoronto.ca (easyprivacy.txt: 2644) +/.*http://utm\. +utm.*. + +#ab2p-block-request-Rnt +{+client-header-tagger{ab2p-block-request-Rnt} \ +} +# ||affiliate.mediatemple.net^$~third-party (easyprivacy.txt: 5269) +.affiliate.mediatemple.net +# /wp-admin/admin-ajax.php?action=adblockvisitor$~third-party (easyprivacy.txt: 2650) +/(.*/)?wp-admin/admin-ajax\.php\?action=adblockvisitor + +#ab2p-block-request-Xx +{+client-header-tagger{ab2p-block-request-Xx} \ +} +TAG:^ab2p-block-request-Xx$ +# ||worldnow.com/ajax?callback=po_a&$xmlhttprequest (easyprivacy.txt: 9330) +.worldnow.com/ajax\?callback=po_a& +# ||twimbow.com/serverreq/twbtracker.php$xmlhttprequest (easyprivacy.txt: 9175) +.twimbow.com/serverreq/twbtracker\.php +# ||google.com/uploadstats|$xmlhttprequest (easyprivacy.txt: 8092) +.google.com/uploadstats$ +# ||docs.google.com/stat|$xmlhttprequest (easyprivacy.txt: 7840) +.docs.google.com/stat$ +# ||arstechnica.com/services/incr.php?stats$xmlhttprequest (easyprivacy.txt: 7509) +.arstechnica.com/services/incr\.php\?stats +# ||arstechnica.co.uk/services/incr.php?stats$xmlhttprequest (easyprivacy.txt: 7506) +.arstechnica.co.uk/services/incr\.php\?stats +# ||apture.com/v3/?5=%7b%22stats%22$xmlhttprequest (easyprivacy.txt: 5399) +.apture.com/v3/\?5=%7b%22stats%22 + +#ab2p-block-request-Xx-when-R50 +{+client-header-tagger{ab2p-block-request-Xx-when-R50} \ +} +# ||amazonaws.com/logs$xmlhttprequest,domain=wat.tv (easyprivacy.txt: 5306) +.amazonaws.com/logs + +#ab2p-block-request-nX-Xnx +{+client-header-tagger{ab2p-block-request-Xnx} \ + +client-header-tagger{ab2p-block-request-nX} \ +} +# ||youtube.com/gen_204?$~xmlhttprequest (easyprivacy.txt: 9405) +.youtube.com/gen_204\? +# ||tcog.news.com.au^$~xmlhttprequest (easyprivacy.txt: 9008) +.tcog.news.com.au +# ||google.*/gen_204?$~xmlhttprequest (easyprivacy.txt: 8084) +.google.*./(.*/)?gen_204\? +# ||sourceforge.net/tracker/$~xmlhttprequest (easyprivacy.txt: 6363) +.sourceforge.net/tracker/ +# /stats?style$~xmlhttprequest (easyprivacy.txt: 1999) +/(.*/)?stats\?style +# /emos2.js$~xmlhttprequest (easyprivacy.txt: 827) +/(.*/)?emos2\.js +emos2.js*. +# .gif?Log=$~xmlhttprequest (easyprivacy.txt: 129) +/.*\.gif\?Log= + +#ab2p-block-xframe +{+server-header-filter{ab2p-xframe-filter} \ +} +TAG:^ab2p-block-xframe$ +# ||newegg.com/common/thirdparty/$subdocument (easyprivacy.txt: 8481) +.newegg.com/common/thirdparty/ +# ||multiupload.com/extreme/?*&ref=$subdocument (easyprivacy.txt: 8440) +.multiupload.com/extreme/\?.*&ref= + +#ab2p-block-xframe-Rt +{+client-header-tagger{ab2p-block-xframe-Rt} \ +} +# ||imagedoll.com^$subdocument,third-party (easyprivacy.txt: 5909) +.imagedoll.com + +#-ab2p-unblock-request-Ai-Ci-when-nR +{-client-header-tagger{ab2p-unblock-request-Ai-Ci-when-nR} \ +} +TAG:^-ab2p-unblock-request-Ai-Ci-when-nR$ + +#-ab2p-unblock-request-Aj-Cj-when-nR +{-client-header-tagger{ab2p-unblock-request-Aj-Cj-when-nR} \ +} +TAG:^-ab2p-unblock-request-Aj-Cj-when-nR$ + +#-ab2p-unblock-request-Xx-when-nR +{-client-header-tagger{ab2p-unblock-request-Xx-when-nR} \ +} +TAG:^-ab2p-unblock-request-Xx-when-nR$ + +#-ab2p-unblock-request-nR +{-client-header-tagger{ab2p-unblock-request-nR} \ +} +TAG:^-ab2p-unblock-request-nR$ + +#ab2p-unblock-dnt +{ \ +} +TAG:^ab2p-unblock-dnt$ +# @@||tvyo.com/player/plugins/comscorePlugin.swf?$object-subrequest (easyprivacy.txt: 11090) +.tvyo.com/player/plugins/comscorePlugin\.swf\? +# @@||turkcelltvplus.com.tr^*/google_analytics/main.js? (easyprivacy.txt: 11089) +.turkcelltvplus.com.tr/.*/google_analytics/main\.js\? +# @@||lazada.co.th/js/tracking.js (easyprivacy.txt: 11086) +.lazada.co.th/js/tracking\.js +# @@||reseguiden.se^*.siteCatalyst.js (easyprivacy.txt: 11084) +.reseguiden.se/.*\.siteCatalyst\.js +# @@||segundamano.mx^*/tealium.js (easyprivacy.txt: 11077) +.segundamano.mx/.*/tealium\.js +# @@||c5n.com^*/angulartics-google-analytics.min.js (easyprivacy.txt: 11075) +.c5n.com/.*/angulartics-google-analytics\.min\.js +# @@||widget.myrentacar.me^$script,subdocument (easyprivacy.txt: 11070) +.widget.myrentacar.me +# @@||wargag.ru/public/js/counter.js? (easyprivacy.txt: 11069) +.wargag.ru/public/js/counter\.js\? +# @@||swa.mail.ru/cgi-bin/counters?$script (easyprivacy.txt: 11068) +.swa.mail.ru/cgi-bin/counters\? +# @@||labrc.pw/advstats/$xmlhttprequest (easyprivacy.txt: 11067) +.labrc.pw/advstats/ +# @@||itv.1tv.ru/stat.php? (easyprivacy.txt: 11066) +.itv.1tv.ru/stat\.php\? +# @@||afisha.ru/proxy/videonetworkproxy.ashx?$xmlhttprequest (easyprivacy.txt: 11062) +.afisha.ru/proxy/videonetworkproxy\.ashx\? +# @@||promozone.ro/wp-content/themes/nielsen/ (easyprivacy.txt: 11060) +.promozone.ro/wp-content/themes/nielsen/ +# @@||laredoute.pt/js/byside_webcare.js (easyprivacy.txt: 11056) +.laredoute.pt/js/byside_webcare\.js +# @@||chiptec.net/skin/*/GoogleAnalyticsPlus/$script (easyprivacy.txt: 11051) +.chiptec.net/skin/.*/GoogleAnalyticsPlus/ +# @@||gemius.pl/gstream.js (easyprivacy.txt: 11046) +.gemius.pl/gstream\.js +# @@||chancro.jp/assets/lib/googleanalytics-$script (easyprivacy.txt: 11039) +.chancro.jp/assets/lib/googleanalytics- +# @@||detik.com/urchin.js (easyprivacy.txt: 11037) +.detik.com/urchin\.js +# @@||video.repubblica.it^*/nielsen.js (easyprivacy.txt: 11034) +.video.repubblica.it/.*/nielsen\.js +# @@||lastampa.it/modulo/tracciatori/js/nielsen.js (easyprivacy.txt: 11029) +.lastampa.it/modulo/tracciatori/js/nielsen\.js +# @@||corriereobjects.it^*/tracking/TrackFunctions.js (easyprivacy.txt: 11026) +.corriereobjects.it/.*/tracking/TrackFunctions\.js +# @@||corriereobjects.it^*/tracking/s_code.js (easyprivacy.txt: 11025) +.corriereobjects.it/.*/tracking/s_code\.js +# @@||beppegrillo.it/mt-static/js/ga_social_tracking.js (easyprivacy.txt: 11021) +.beppegrillo.it/mt-static/js/ga_social_tracking\.js +# @@||androidgalaxys.net/wp-content/plugins/*/google-analyticator/$script (easyprivacy.txt: 11020) +.androidgalaxys.net/wp-content/plugins/.*/google-analyticator/ +# @@||themarker.com/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11014) +.themarker.com/logger/p\.gif\? +# @@||player.flix.co.il/scripts/GoogleAnalytics.js (easyprivacy.txt: 11012) +.player.flix.co.il/scripts/GoogleAnalytics\.js +# @@||haaretz.com/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11009) +.haaretz.com/logger/p\.gif\? +# @@||haaretz.co.il/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11008) +.haaretz.co.il/logger/p\.gif\? +# @@||amazonaws.com/static.madlan.co.il/*/heatmap.json?$xmlhttprequest (easyprivacy.txt: 11006) +.amazonaws.com/static\.madlan\.co\.il/.*/heatmap\.json\? +# @@||vpro.nl/vpro/htmlplayer/0.3-snapshot/statcounter.js? (easyprivacy.txt: 10998) +.vpro.nl/vpro/htmlplayer/0\.3-snapshot/statcounter\.js\? +# @@||vplayer.ilsemedia.nl/swf/im_player.swf?$object (easyprivacy.txt: 10997) +.vplayer.ilsemedia.nl/swf/im_player\.swf\? +# @@||sport.be/javascripts/tracking/metriweb/spring.js (easyprivacy.txt: 10996) +.sport.be/javascripts/tracking/metriweb/spring\.js +# @@||sport.be.msn.com/javascripts/tracking/metriweb/spring.js (easyprivacy.txt: 10995) +.sport.be.msn.com/javascripts/tracking/metriweb/spring\.js +# @@||rtl.nl/system/s4m/xldata/get_comscore.js? (easyprivacy.txt: 10992) +.rtl.nl/system/s4m/xldata/get_comscore\.js\? +# @@||globecharge.com/images/ping.gif? (easyprivacy.txt: 10989) +.globecharge.com/images/ping\.gif\? +# @@||bundol.nl/skin/*/js/prototype/prototype.js,*/GoogleAnalyticsPlus/ (easyprivacy.txt: 10988) +.bundol.nl/skin/.*/js/prototype/prototype\.js,.*/GoogleAnalyticsPlus/ +# @@||common.tv2.dk/mpx/adobeanalytics/$script (easyprivacy.txt: 10984) +.common.tv2.dk/mpx/adobeanalytics/ +# @@||csfd.cz/log? (easyprivacy.txt: 10981) +.csfd.cz/log\? +# @@||bolha.com/js/gemius_.js? (easyprivacy.txt: 10980) +.bolha.com/js/gemius_\.js\? +# @@||adobetag.com/d2/vodafonecz/live/VodafoneCZ.js (easyprivacy.txt: 10979) +.adobetag.com/d2/vodafonecz/live/VodafoneCZ\.js +# @@||v.blog.sohu.com/dostat.do?*&n=videoList_vids&$script (easyprivacy.txt: 10974) +.v.blog.sohu.com/dostat\.do\?.*&n=videoList_vids& +# @@||uwants.com/include/*/swfaddress.js (easyprivacy.txt: 10973) +.uwants.com/include/.*/swfaddress\.js +# @@||streaming.cri.com.hk/geo.php? (easyprivacy.txt: 10972) +.streaming.cri.com.hk/geo\.php\? +# @@||on.cc/js/urchin.js (easyprivacy.txt: 10969) +.on.cc/js/urchin\.js +# @@||itc.cn/v2/asset/*/pageView.js (easyprivacy.txt: 10967) +.itc.cn/v2/asset/.*/pageView\.js +# @@||ijinshan.com/static/js/analyse.js (easyprivacy.txt: 10965) +.ijinshan.com/static/js/analyse\.js +# @@||hk.on.cc/hk/bkn/hitcount/web/js/hitCount_$~third-party,xmlhttprequest (easyprivacy.txt: 10964) +.hk.on.cc/hk/bkn/hitcount/web/js/hitCount_ +# @@||tv5monde.com/cms/javascript/*/sitestat.js (easyprivacy.txt: 10951) +.tv5monde.com/cms/javascript/.*/sitestat\.js +# @@||tv5.org/cms/javascript/*/sitestat.js (easyprivacy.txt: 10950) +.tv5.org/cms/javascript/.*/sitestat\.js +# @@||sosh.fr^*/wtinit.js (easyprivacy.txt: 10948) +.sosh.fr/.*/wtinit\.js +# @@||sosh.fr^*/wtbase.js (easyprivacy.txt: 10947) +.sosh.fr/.*/wtbase\.js +# @@||rtl.be/rtltvi/player/vp_webanalytics.js? (easyprivacy.txt: 10946) +.rtl.be/rtltvi/player/vp_webanalytics\.js\? +# @@||ricardocuisine.com/noel/js/google_analytics.js (easyprivacy.txt: 10945) +.ricardocuisine.com/noel/js/google_analytics\.js +# @@||orange.fr^*/wtinit.js (easyprivacy.txt: 10944) +.orange.fr/.*/wtinit\.js +# @@||orange.fr^*/wtbase.js (easyprivacy.txt: 10943) +.orange.fr/.*/wtbase\.js +# @@||matvpratique.com/tools/min/index.php?f=*/xtclicks.js (easyprivacy.txt: 10940) +.matvpratique.com/tools/min/index\.php\?f=.*/xtclicks\.js +# @@||lesinrocks.com/min/?f=*/chartbeat.js (easyprivacy.txt: 10939) +.lesinrocks.com/min/\?f=.*/chartbeat\.js +# @@||leboncoin.fr/js/xiti.js (easyprivacy.txt: 10938) +.leboncoin.fr/js/xiti\.js +# @@||easypari.fr^*/sitestat.js (easyprivacy.txt: 10937) +.easypari.fr/.*/sitestat\.js +# @@||boutiqueducourrier.laposte.fr/_ui/eboutique/scripts/xiti/part/xtcore.js (easyprivacy.txt: 10934) +.boutiqueducourrier.laposte.fr/_ui/eboutique/scripts/xiti/part/xtcore\.js +# @@||actiris.be^*/urchin.js (easyprivacy.txt: 10931) +.actiris.be/.*/urchin\.js +# @@||actiris.be/urchin.js (easyprivacy.txt: 10930) +.actiris.be/urchin\.js +# @@||zdf.de/zdf/flash/eplayer/player.swf?*/cgi-bin/ivw/ (easyprivacy.txt: 10927) +.zdf.de/zdf/flash/eplayer/player\.swf\?.*/cgi-bin/ivw/ +# @@||t-online.de/js/xtcore_t_online.js?$xmlhttprequest (easyprivacy.txt: 10920) +.t-online.de/js/xtcore_t_online\.js\? +# @@||swr3.de/static/swrplayer/web/plugins/ivw/ivw.js (easyprivacy.txt: 10919) +.swr3.de/static/swrplayer/web/plugins/ivw/ivw\.js +# @@||sunday.de/skin/*/googleanalytics.js$script (easyprivacy.txt: 10918) +.sunday.de/skin/.*/googleanalytics\.js +# @@||spiegel.de/layout/js/http/netmind-$script (easyprivacy.txt: 10912) +.spiegel.de/layout/js/http/netmind- +# @@||sparkasse.de/if/resources/js/urchin.js (easyprivacy.txt: 10910) +.sparkasse.de/if/resources/js/urchin\.js +# @@||s.gstat.orange.fr/lib/gs.js? (easyprivacy.txt: 10904) +.s.gstat.orange.fr/lib/gs\.js\? +# @@||rp-online.de^*/tracking/tracking.js (easyprivacy.txt: 10903) +.rp-online.de/.*/tracking/tracking\.js +# @@||renault.de/js/sitestat.js (easyprivacy.txt: 10901) +.renault.de/js/sitestat\.js +# @@||real.de/fileadmin/template/javascript/emos2.js (easyprivacy.txt: 10900) +.real.de/fileadmin/template/javascript/emos2\.js +# @@||planet-sports.de^*?f=*/emos2.js (easyprivacy.txt: 10899) +.planet-sports.de/.*\?f=.*/emos2\.js +# @@||pizza.de^*/ptrack.$script (easyprivacy.txt: 10898) +.pizza.de/.*/ptrack\. +# @@||o2.de/resource/js/tracking/ntpagetag.js (easyprivacy.txt: 10895) +.o2.de/resource/js/tracking/ntpagetag\.js +# @@||musicstore.de^*/emos2.js (easyprivacy.txt: 10894) +.musicstore.de/.*/emos2\.js +# @@||meinestadt.de^*/xiti/xtcore_$script (easyprivacy.txt: 10893) +.meinestadt.de/.*/xiti/xtcore_ +# @@||jetztspielen.de^*/EventTracker.js (easyprivacy.txt: 10888) +.jetztspielen.de/.*/EventTracker\.js +# @@||ivwextern.prosieben.de^*/ivw_flashscript.php?$script (easyprivacy.txt: 10887) +.ivwextern.prosieben.de/.*/ivw_flashscript\.php\? +# @@||ing-diba.de^*/sitestat.js (easyprivacy.txt: 10881) +.ing-diba.de/.*/sitestat\.js +# @@||hse24.de^*/emos2.js (easyprivacy.txt: 10879) +.hse24.de/.*/emos2\.js +# @@||heute.de/zdf/flash/eplayer/player.swf?*/cgi-bin/ivw/ (easyprivacy.txt: 10878) +.heute.de/zdf/flash/eplayer/player\.swf\?.*/cgi-bin/ivw/ +# @@||hermesworld.com/tracking/urchin.js (easyprivacy.txt: 10877) +.hermesworld.com/tracking/urchin\.js +# @@||hammonline.de/statistik/piwik.js (easyprivacy.txt: 10876) +.hammonline.de/statistik/piwik\.js +# @@||hach.de^*/emstrack.js (easyprivacy.txt: 10875) +.hach.de/.*/emstrack\.js +# @@||gls.de^*/emos2.js (easyprivacy.txt: 10873) +.gls.de/.*/emos2\.js +# @@||giga.de/wp-content/plugins/econa-stats/log/video-views/log.php?id=$object-subrequest (easyprivacy.txt: 10872) +.giga.de/wp-content/plugins/econa-stats/log/video-views/log\.php\?id= +# @@||getgoods.de^*/emstrack.js (easyprivacy.txt: 10871) +.getgoods.de/.*/emstrack\.js +# @@||eltern.de/min.php?*/clickTracking.js (easyprivacy.txt: 10869) +.eltern.de/min\.php\?.*/clickTracking\.js +# @@||css.ch/stats/tracker.js?$xmlhttprequest (easyprivacy.txt: 10866) +.css.ch/stats/tracker\.js\? +# @@||billiger.de/js/emos2.js (easyprivacy.txt: 10860) +.billiger.de/js/emos2\.js +# @@||alternate.de/js/emos2.js (easyprivacy.txt: 10856) +.alternate.de/js/emos2\.js +# @@||addicted-sports.com/piwik/piwik.js (easyprivacy.txt: 10855) +.addicted-sports.com/piwik/piwik\.js +# @@||walmart.com/b/ss/$image (easyprivacy.txt: 10845) +.walmart.com/b/ss/ +# @@||stat.safeway.com/b/ss/$image (easyprivacy.txt: 10844) +.stat.safeway.com/b/ss/ +# @@||smetrics.ticketmaster.com/b/ss/$image (easyprivacy.txt: 10843) +.smetrics.ticketmaster.com/b/ss/ +# @@||smetrics.target.com/b/ss/$image (easyprivacy.txt: 10842) +.smetrics.target.com/b/ss/ +# @@||simyo.de/b/ss/$image (easyprivacy.txt: 10841) +.simyo.de/b/ss/ +# @@||metrics.ticketmaster.com/b/ss/$image (easyprivacy.txt: 10836) +.metrics.ticketmaster.com/b/ss/ +# @@||metrics.thetrainline.com/b/ss/$image (easyprivacy.txt: 10835) +.metrics.thetrainline.com/b/ss/ +# @@||metrics.target.com/b/ss/$image (easyprivacy.txt: 10834) +.metrics.target.com/b/ss/ +# @@||metrics.nationwide.co.uk/b/ss/$image (easyprivacy.txt: 10833) +.metrics.nationwide.co.uk/b/ss/ +# @@||metrics.brooksbrothers.com/b/ss/$image (easyprivacy.txt: 10832) +.metrics.brooksbrothers.com/b/ss/ +# @@||metrics.ancestry.com/b/ss/$image (easyprivacy.txt: 10831) +.metrics.ancestry.com/b/ss/ +# @@||kohls.com/b/ss/$image (easyprivacy.txt: 10830) +.kohls.com/b/ss/ +# @@||kaspersky.co.uk/b/ss/$image (easyprivacy.txt: 10829) +.kaspersky.co.uk/b/ss/ +# @@||globalnews.ca/b/ss/$image (easyprivacy.txt: 10827) +.globalnews.ca/b/ss/ +# @@||fandango.com/b/ss/$image (easyprivacy.txt: 10826) +.fandango.com/b/ss/ +# @@||castorama.fr/b/ss/$image (easyprivacy.txt: 10825) +.castorama.fr/b/ss/ +# @@||amazoncustomerservice.d2.sc.omtrdc.net/b/ss/*/H.25.1/$image (easyprivacy.txt: 10824) +.amazoncustomerservice.d2.sc.omtrdc.net/b/ss/.*/H\.25\.1/ +# @@||gametrailers.com/b/ss/$object-subrequest (easyprivacy.txt: 10820) +.gametrailers.com/b/ss/ +# @@||aplus.com/p.gif?$~third-party (easyprivacy.txt: 10818) +.aplus.com/p\.gif\? +# @@||zylom.com/images/site/zylom/scripts/google-analytics.js (easyprivacy.txt: 10815) +.zylom.com/images/site/zylom/scripts/google-analytics\.js +# @@||zappos.com/js/trackingPixel/mercentTracker.js (easyprivacy.txt: 10813) +.zappos.com/js/trackingPixel/mercentTracker\.js +# @@||youtube.com/api/analytics/$~third-party (easyprivacy.txt: 10812) +.youtube.com/api/analytics/ +# @@||ynetnews.com/Common/App/Video/Gemius/gstream.js (easyprivacy.txt: 10811) +.ynetnews.com/Common/App/Video/Gemius/gstream\.js +# @@||ynet.co.il/Common/App/Video/Gemius/gstream.js (easyprivacy.txt: 10810) +.ynet.co.il/Common/App/Video/Gemius/gstream\.js +# @@||xfinity.com^*/Comcast.SelfService.Sitecatalyst.js (easyprivacy.txt: 10806) +.xfinity.com/.*/Comcast\.SelfService\.Sitecatalyst\.js +# @@||xcweather.co.uk/*/geo.php? (easyprivacy.txt: 10805) +.xcweather.co.uk/.*/geo\.php\? +# @@||www.google.*/maps/preview/log204?$xmlhttprequest (easyprivacy.txt: 10803) +.www.google.*./(.*/)?maps/preview/log204\? +# @@||wwe.com/sites/all/modules/wwe/wwe_analytics/s_wwe_code.js (easyprivacy.txt: 10802) +.wwe.com/sites/all/modules/wwe/wwe_analytics/s_wwe_code\.js +# @@||wp.com/_static/*/gaAddons.js (easyprivacy.txt: 10798) +.wp.com/_static/.*/gaAddons\.js +# @@||wp.com/_static/*/criteo.js (easyprivacy.txt: 10797) +.wp.com/_static/.*/criteo\.js +# @@||wordpress.org/wp-slimstat/assets/banner-$image,~third-party (easyprivacy.txt: 10796) +.wordpress.org/wp-slimstat/assets/banner- +# @@||wordpress.org/extend/plugins/wp-slimstat/screenshot-$image,~third-party (easyprivacy.txt: 10795) +.wordpress.org/extend/plugins/wp-slimstat/screenshot- +# @@||wired.com^*/cn-fe-stats/ (easyprivacy.txt: 10794) +.wired.com/.*/cn-fe-stats/ +# @@||wired.com/wiredcms/chartbeat.json$xmlhttprequest (easyprivacy.txt: 10793) +.wired.com/wiredcms/chartbeat\.json +# @@||windward.eu^*/angulartics-google-analytics.min.js (easyprivacy.txt: 10792) +.windward.eu/.*/angulartics-google-analytics\.min\.js +# @@||wikimedia.org^*/trackClick.js (easyprivacy.txt: 10791) +.wikimedia.org/.*/trackClick\.js +# @@||wikia.nocookie.net^*/AnalyticsEngine/js/analytics_prod.js (easyprivacy.txt: 10790) +.wikia.nocookie.net/.*/AnalyticsEngine/js/analytics_prod\.js +# @@||widgets.outbrain.com^*/comScore/comScore.htm (easyprivacy.txt: 10789) +.widgets.outbrain.com/.*/comScore/comScore\.htm +# @@||whirlpool.com/foresee/foresee-trigger.js (easyprivacy.txt: 10787) +.whirlpool.com/foresee/foresee-trigger\.js +# @@||westjet.com/js/webstats.js (easyprivacy.txt: 10786) +.westjet.com/js/webstats\.js +# @@||westelm.com^*/bloomreach.js (easyprivacy.txt: 10785) +.westelm.com/.*/bloomreach\.js +# @@||webtrack.dhlglobalmail.com^ (easyprivacy.txt: 10782) +.webtrack.dhlglobalmail.com +# @@||websimages.com/JS/Tracker.js (easyprivacy.txt: 10781) +.websimages.com/JS/Tracker\.js +# @@||wbshop.com/fcgi-bin/iipsrv.fcgi? (easyprivacy.txt: 10780) +.wbshop.com/fcgi-bin/iipsrv\.fcgi\? +# @@||walmart.com^*/track?event=$xmlhttprequest (easyprivacy.txt: 10776) +.walmart.com/.*/track\?event= +# @@||walmart.com/__ssobj/core.js (easyprivacy.txt: 10775) +.walmart.com/__ssobj/core\.js +# @@||w3spy.org/etc/geo.php? (easyprivacy.txt: 10773) +.w3spy.org/etc/geo\.php\? +# @@||vulture.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10771) +.vulture.com/decor/javascript/magnify_stats\.js +# @@||volvocars.com^*/swfaddress.js? (easyprivacy.txt: 10770) +.volvocars.com/.*/swfaddress\.js\? +# @@||vodafone.com.au/analytics/js/$script (easyprivacy.txt: 10769) +.vodafone.com.au/analytics/js/ +# @@||vod.olympics2010.msn.com/beacon?$object-subrequest (easyprivacy.txt: 10768) +.vod.olympics2010.msn.com/beacon\? +# @@||vizio.com/resources/js/vizio-module-tracking-google-analytics.js (easyprivacy.txt: 10767) +.vizio.com/resources/js/vizio-module-tracking-google-analytics\.js +# @@||visa.com^*/vendor/unica.js (easyprivacy.txt: 10765) +.visa.com/.*/vendor/unica\.js +# @@||vidible.tv^*/ComScore.Viewability.js (easyprivacy.txt: 10760) +.vidible.tv/.*/ComScore\.Viewability\.js +# @@||vidible.tv^*/ComScore.StreamSense.js (easyprivacy.txt: 10759) +.vidible.tv/.*/ComScore\.StreamSense\.js +# @@||vice.com^*/vmp_analytics.js (easyprivacy.txt: 10757) +.vice.com/.*/vmp_analytics\.js +# @@||verizon.com/images/track/track.gif?track=load&$xmlhttprequest (easyprivacy.txt: 10756) +.verizon.com/images/track/track\.gif\?track=load& +# @@||vacayvitamins.com/wp-content/plugins/wp-minify/min/?*/google-analyticator/$script (easyprivacy.txt: 10754) +.vacayvitamins.com/wp-content/plugins/wp-minify/min/\?.*/google-analyticator/ +# @@||v.me/personal/assets/ntpagetag-$script (easyprivacy.txt: 10753) +.v.me/personal/assets/ntpagetag- +# @@||uverseonline.att.net/report/click_tracking_nes.json (easyprivacy.txt: 10752) +.uverseonline.att.net/report/click_tracking_nes\.json +# @@||utm.arc.nasa.gov/images/ (easyprivacy.txt: 10751) +.utm.arc.nasa.gov/images/ +# @@||utm.arc.nasa.gov/common/js/swap.js (easyprivacy.txt: 10750) +.utm.arc.nasa.gov/common/js/swap\.js +# @@||utm.arc.nasa.gov/common/js/nav.js (easyprivacy.txt: 10749) +.utm.arc.nasa.gov/common/js/nav\.js +# @@||utm.arc.nasa.gov/common/js/hideEmail.js (easyprivacy.txt: 10748) +.utm.arc.nasa.gov/common/js/hideEmail\.js +# @@||utm.arc.nasa.gov/common/js/common.js (easyprivacy.txt: 10747) +.utm.arc.nasa.gov/common/js/common\.js +# @@||utm.arc.nasa.gov/common/css/ (easyprivacy.txt: 10746) +.utm.arc.nasa.gov/common/css/ +# @@||utm.alibaba.com/eventdriver/recommendEntry.do?$script (easyprivacy.txt: 10745) +.utm.alibaba.com/eventdriver/recommendEntry\.do\? +# @@||urlcheck.hulu.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10743) +.urlcheck.hulu.com/crossdomain\.xml +# @@||ups.com/WebTracking/$xmlhttprequest (easyprivacy.txt: 10742) +.ups.com/WebTracking/ +# @@||ups.com/*/WebTracking/track&dcs (easyprivacy.txt: 10741) +.ups.com/.*/WebTracking/track&dcs +# @@||unity3d.com/profiles/unity3d/themes/unity/images/services/analytics/$image,~third-party (easyprivacy.txt: 10740) +.unity3d.com/profiles/unity3d/themes/unity/images/services/analytics/ +# @@||unifi.me/mootools/classes/*-tracking (easyprivacy.txt: 10739) +.unifi.me/mootools/classes/.*-tracking +# @@||ultimedia.com/js/common/jquery.gatracker.js (easyprivacy.txt: 10738) +.ultimedia.com/js/common/jquery\.gatracker\.js +# @@||trutv.com/ui/scripts/coffee/modules/analytics/click-tracker.js$script (easyprivacy.txt: 10734) +.trutv.com/ui/scripts/coffee/modules/analytics/click-tracker\.js +# @@||trackjs.com^$~third-party (easyprivacy.txt: 10731) +.trackjs.com +# @@||tracker.mattel.com/tracker.aspx?site=$script (easyprivacy.txt: 10729) +.tracker.mattel.com/tracker\.aspx\?site= +# @@||track2.royalmail.com^ (easyprivacy.txt: 10728) +.track2.royalmail.com +# @@||ticketm.net^*/click_track.js (easyprivacy.txt: 10725) +.ticketm.net/.*/click_track\.js +# @@||thetenthwatch.com/js/tracking.js$~third-party (easyprivacy.txt: 10724) +.thetenthwatch.com/js/tracking\.js +# @@||thestreet-static.com/video/js/kGoogleAnalytics.js? (easyprivacy.txt: 10723) +.thestreet-static.com/video/js/kGoogleAnalytics\.js\? +# @@||theplatform.com^*/comScore.swf$object-subrequest (easyprivacy.txt: 10722) +.theplatform.com/.*/comScore\.swf +# @@||thehotelwindsor.com.au^*/javascript.googleAnalytics.js (easyprivacy.txt: 10721) +.thehotelwindsor.com.au/.*/javascript\.googleAnalytics\.js +# @@||texasroadhouse.com/common/javascript/google-analytics.js (easyprivacy.txt: 10719) +.texasroadhouse.com/common/javascript/google-analytics\.js +# @@||telegraph.co.uk/template/ver1-0/js/webtrends/live/wtid.js (easyprivacy.txt: 10717) +.telegraph.co.uk/template/ver1-0/js/webtrends/live/wtid\.js +# @@||teenvogue.com/js/eventTracker.js (easyprivacy.txt: 10716) +.teenvogue.com/js/eventTracker\.js +# @@||ted.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10715) +.ted.com/decor/javascript/magnify_stats\.js +# @@||tc.bankofamerica.com/c? (easyprivacy.txt: 10714) +.tc.bankofamerica.com/c\? +# @@||tags.w55c.net/rs?*&t=marketing$image (easyprivacy.txt: 10713) +.tags.w55c.net/rs\?.*&t=marketing +# @@||tablespoon.com/library/js/TBSP_ntpagetag.js (easyprivacy.txt: 10709) +.tablespoon.com/library/js/TBSP_ntpagetag\.js +# @@||support.thesslstore.com/visitor/index.php (easyprivacy.txt: 10706) +.support.thesslstore.com/visitor/index\.php +# @@||stats.jtvnw.net/crossdomain.xml$object-subrequest (easyprivacy.txt: 10701) +.stats.jtvnw.net/crossdomain\.xml +# @@||static.chartbeat.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10697) +.static.chartbeat.com/crossdomain\.xml +# @@||statcounter.com/msline.swf (easyprivacy.txt: 10694) +.statcounter.com/msline\.swf +# @@||statcounter.com/js/fusioncharts.js (easyprivacy.txt: 10693) +.statcounter.com/js/fusioncharts\.js +# @@||statcounter.com/chart.php?$script (easyprivacy.txt: 10692) +.statcounter.com/chart\.php\? +# @@||star-telegram.com/mistats/sites/dfw/startelegram.js (easyprivacy.txt: 10691) +.star-telegram.com/mistats/sites/dfw/startelegram\.js +# @@||sportsgrid.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10690) +.sportsgrid.com/decor/javascript/magnify_stats\.js +# @@||southwest.com^*/mbox.js (easyprivacy.txt: 10689) +.southwest.com/.*/mbox\.js +# @@||songza.com/static/*/songza/systems/$script (easyprivacy.txt: 10688) +.songza.com/static/.*/songza/systems/ +# @@||siteanalytics.compete.com^$~third-party (easyprivacy.txt: 10685) +.siteanalytics.compete.com +# @@||sijcc.org^*/page-tracking.js? (easyprivacy.txt: 10684) +.sijcc.org/.*/page-tracking\.js\? +# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easyprivacy.txt: 10683) +.sh.st/bundles/smeadvertisement/img/track\.gif\? +# @@||setelia.com*/page-tracking.js?$script,~third-party (easyprivacy.txt: 10681) +.setelia.com*./(.*/)?page-tracking\.js\? +# @@||service.collarity.com/cust/nbcu/ucs.js$xmlhttprequest (easyprivacy.txt: 10679) +.service.collarity.com/cust/nbcu/ucs\.js +# @@||sears.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10675) +.sears.com/.*/analytics\.sitecatalyst\.js +# @@||scorecardresearch.com/c2/plugins/streamsense_plugin_theplatform.js (easyprivacy.txt: 10672) +.scorecardresearch.com/c2/plugins/streamsense_plugin_theplatform\.js +# @@||samepage.io/assets/lib/google-analytics/GoogleAnalytics.js? (easyprivacy.txt: 10669) +.samepage.io/assets/lib/google-analytics/GoogleAnalytics\.js\? +# @@||safelinkwireless.com/enrollment/*/GoogleAnalytics.js (easyprivacy.txt: 10668) +.safelinkwireless.com/enrollment/.*/GoogleAnalytics\.js +# @@||s.youtube.com/api/stats/playback?$image,object-subrequest (easyprivacy.txt: 10667) +.s.youtube.com/api/stats/playback\? +# @@||rockingsoccer.com/js/match_stats.js (easyprivacy.txt: 10665) +.rockingsoccer.com/js/match_stats\.js +# @@||res-x.com^*/Resonance.aspx? (easyprivacy.txt: 10663) +.res-x.com/.*/Resonance\.aspx\? +# @@||remodelista.com/media/js/libs/ga_social_tracking.js (easyprivacy.txt: 10662) +.remodelista.com/media/js/libs/ga_social_tracking\.js +# @@||redfin.com/stingray/clicktracker.jsp? (easyprivacy.txt: 10660) +.redfin.com/stingray/clicktracker\.jsp\? +# @@||redditenhancementsuite.com/js/jquery.google-analytics.js (easyprivacy.txt: 10659) +.redditenhancementsuite.com/js/jquery\.google-analytics\.js +# @@||rawstory.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10658) +.rawstory.com/decor/javascript/magnify_stats\.js +# @@||rawgit.com^*/heatmap.js (easyprivacy.txt: 10657) +.rawgit.com/.*/heatmap\.js +# @@||randomhouse.com/book/css/certona.css (easyprivacy.txt: 10656) +.randomhouse.com/book/css/certona\.css +# @@||query.petametrics.com^ (easyprivacy.txt: 10654) +.query.petametrics.com +# @@||push2check.com/stats.php (easyprivacy.txt: 10651) +.push2check.com/stats\.php +# @@||pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore.Viewability.js (easyprivacy.txt: 10650) +.pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore\.Viewability\.js +# @@||pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore.StreamSense.js (easyprivacy.txt: 10649) +.pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore\.StreamSense\.js +# @@||ps.w.org/google-analytics-dashboard-for-wp/assets/ (easyprivacy.txt: 10648) +.ps.w.org/google-analytics-dashboard-for-wp/assets/ +# @@||polycom.com/polycomservice/js/unica/ntpagetag.js (easyprivacy.txt: 10645) +.polycom.com/polycomservice/js/unica/ntpagetag\.js +# @@||pokemonblackwhite.com^*/jquery.google-analytics.js (easyprivacy.txt: 10644) +.pokemonblackwhite.com/.*/jquery\.google-analytics\.js +# @@||playtheend.com/api/v1/players/heatmap.json?$object-subrequest (easyprivacy.txt: 10643) +.playtheend.com/api/v1/players/heatmap\.json\? +# @@||playcanvas.com.*/keen.min.js (easyprivacy.txt: 10642) +.playcanvas.com.*./(.*/)?keen\.min\.js +# @@||pixel.facebook.com/ajax/notifications/mark_read.php?*&alert_ids%$image (easyprivacy.txt: 10636) +.pixel.facebook.com/ajax/notifications/mark_read\.php\?.*&alert_ids% +# @@||pixel.facebook.com/ajax/gigaboxx/endpoint/UpdateLastSeenTime.php?$image (easyprivacy.txt: 10635) +.pixel.facebook.com/ajax/gigaboxx/endpoint/UpdateLastSeenTime\.php\? +# @@||piwik.pro/images/ (easyprivacy.txt: 10633) +.piwik.pro/images/ +# @@||ping.hellobar.com/?*&_e=click&$image (easyprivacy.txt: 10632) +.ping.hellobar.com/\?.*&_e=click& +# @@||pillsbury.com/Shared/StarterKit/Javascript/UnicaTag.js (easyprivacy.txt: 10631) +.pillsbury.com/Shared/StarterKit/Javascript/UnicaTag\.js +# @@||pillsbury.com/Shared/StarterKit/Javascript/ntpagetag.js (easyprivacy.txt: 10630) +.pillsbury.com/Shared/StarterKit/Javascript/ntpagetag\.js +# @@||periscope.tv^*/bugsnag-*.min.js (easyprivacy.txt: 10628) +.periscope.tv/.*/bugsnag-.*\.min\.js +# @@||pbskids.org/js/ga-current.js (easyprivacy.txt: 10627) +.pbskids.org/js/ga-current\.js +# @@||patrick-wied.at/static/heatmapjs/src/heatmap.js (easyprivacy.txt: 10624) +.patrick-wied.at/static/heatmapjs/src/heatmap\.js +# @@||pastebin.com/etc/geo.php? (easyprivacy.txt: 10623) +.pastebin.com/etc/geo\.php\? +# @@||ooyala.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10617) +.ooyala.com/crossdomain\.xml +# @@||officeworks.com.au^*/site-tracker.js (easyprivacy.txt: 10614) +.officeworks.com.au/.*/site-tracker\.js +# @@||odcdn.com^*/cm.js (easyprivacy.txt: 10613) +.odcdn.com/.*/cm\.js +# @@||nytimes.com^*/wtinit.js (easyprivacy.txt: 10612) +.nytimes.com/.*/wtinit\.js +# @@||nytimes.com^*/wtbase.js (easyprivacy.txt: 10611) +.nytimes.com/.*/wtbase\.js +# @@||nytimes.com^*/EventTracker.js (easyprivacy.txt: 10610) +.nytimes.com/.*/EventTracker\.js +# @@||nymag.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10606) +.nymag.com/decor/javascript/magnify_stats\.js +# @@||next.co.uk/Scripts/GoogleAnalytics.js? (easyprivacy.txt: 10602) +.next.co.uk/Scripts/GoogleAnalytics\.js\? +# @@||networkworld.com^*/demandbase.js (easyprivacy.txt: 10600) +.networkworld.com/.*/demandbase\.js +# @@||netinsight.travelers.com/scripts/ntpagetaghttps.js (easyprivacy.txt: 10599) +.netinsight.travelers.com/scripts/ntpagetaghttps\.js +# @@||ncbi.nlm.nih.gov/stat? (easyprivacy.txt: 10597) +.ncbi.nlm.nih.gov/stat\? +# @@||nationwide.co.uk/_/js/webAnalytics.js (easyprivacy.txt: 10596) +.nationwide.co.uk/_/js/webAnalytics\.js +# @@||nationalreview.com^*/chartbeat.js (easyprivacy.txt: 10595) +.nationalreview.com/.*/chartbeat\.js +# @@||nationaljournal.com/js/bizo.js (easyprivacy.txt: 10594) +.nationaljournal.com/js/bizo\.js +# @@||narf-archive.com^*/clickstream.js (easyprivacy.txt: 10593) +.narf-archive.com/.*/clickstream\.js +# @@||mycokerewards.com^*/webtrends/mcr3-webtrends_POST_$script (easyprivacy.txt: 10591) +.mycokerewards.com/.*/webtrends/mcr3-webtrends_POST_ +# @@||mybuys.com/webrec/wr.do? (easyprivacy.txt: 10590) +.mybuys.com/webrec/wr\.do\? +# @@||musicvideogenome.com/javascripts/stats.js (easyprivacy.txt: 10587) +.musicvideogenome.com/javascripts/stats\.js +# @@||munchkin.marketo.net/munchkin.js (easyprivacy.txt: 10586) +.munchkin.marketo.net/munchkin\.js +# @@||moulinex.com/js/xtroi.js (easyprivacy.txt: 10581) +.moulinex.com/js/xtroi\.js +# @@||motorolasolutions.com/wrs/b2bsdc.js (easyprivacy.txt: 10580) +.motorolasolutions.com/wrs/b2bsdc\.js +# @@||mlb.com/shared/scripts/bam.tracking.js (easyprivacy.txt: 10572) +.mlb.com/shared/scripts/bam\.tracking\.js +# @@||mlb.com/b/ss/$image (easyprivacy.txt: 10571) +.mlb.com/b/ss/ +# @@||milb.com/shared/scripts/bam.tracking.js (easyprivacy.txt: 10568) +.milb.com/shared/scripts/bam\.tracking\.js +# @@||mightyspring.com/static/js/beacon.js?$~third-party (easyprivacy.txt: 10567) +.mightyspring.com/static/js/beacon\.js\? +# @@||microsoft.com/click/services/RioTracking2.js (easyprivacy.txt: 10566) +.microsoft.com/click/services/RioTracking2\.js +# @@||metrics.torproject.org^ (easyprivacy.txt: 10565) +.metrics.torproject.org +# @@||metrics.nissanusa.com/b/ss/nissanusacom/$image (easyprivacy.txt: 10564) +.metrics.nissanusa.com/b/ss/nissanusacom/ +# @@||metrics.mozilla.com^$~third-party (easyprivacy.txt: 10563) +.metrics.mozilla.com +# @@||metrics.howstuffworks.com/b/ss/*&ot=$image (easyprivacy.txt: 10562) +.metrics.howstuffworks.com/b/ss/.*&ot= +# @@||metrics.ctvdigital.net/global/CtvAd.js (easyprivacy.txt: 10561) +.metrics.ctvdigital.net/global/CtvAd\.js +# @@||medicare.gov/SharedResources/widgets/foresee/foresee-trigger.js (easyprivacy.txt: 10559) +.medicare.gov/SharedResources/widgets/foresee/foresee-trigger\.js +# @@||media.ticketmaster.*/click_track.js (easyprivacy.txt: 10557) +.media.ticketmaster.*./(.*/)?click_track\.js +# @@||media-imdb.com^*/clickstream.js (easyprivacy.txt: 10553) +.media-imdb.com/.*/clickstream\.js +# @@||mec.ca/media/javascript/resxclsx.js (easyprivacy.txt: 10552) +.mec.ca/media/javascript/resxclsx\.js +# @@||maserati.com^*/transparent1x1.png (easyprivacy.txt: 10548) +.maserati.com/.*/transparent1x1\.png +# @@||maps.google.*/gen_204?$xmlhttprequest (easyprivacy.txt: 10547) +.maps.google.*./(.*/)?gen_204\? +# @@||makerstudios.com/js/mixpanel.js?$script (easyprivacy.txt: 10546) +.makerstudios.com/js/mixpanel\.js\? +# @@||mail.yahoo.com/neo/ymstat$xmlhttprequest (easyprivacy.txt: 10545) +.mail.yahoo.com/neo/ymstat +# @@||magnify.net^*/magnify_stats.js (easyprivacy.txt: 10542) +.magnify.net/.*/magnify_stats\.js +# @@||lynda.com^*/px.gif?$image (easyprivacy.txt: 10541) +.lynda.com/.*/px\.gif\? +# @@||luminate.com/order/$subdocument (easyprivacy.txt: 10540) +.luminate.com/order/ +# @@||lufthansa.com^*/mmcore.js (easyprivacy.txt: 10539) +.lufthansa.com/.*/mmcore\.js +# @@||lsi.com^*/google-analytics.js (easyprivacy.txt: 10538) +.lsi.com/.*/google-analytics\.js +# @@||lordandtaylor.com^*/javascript/Analytics/CartEventDataInit.js (easyprivacy.txt: 10536) +.lordandtaylor.com/.*/javascript/Analytics/CartEventDataInit\.js +# @@||logmein.com/scripts/Tracking/Tracking.js (easyprivacy.txt: 10535) +.logmein.com/scripts/Tracking/Tracking\.js +# @@||logging.apache.org^ (easyprivacy.txt: 10534) +.logging.apache.org +# @@||lloydstsb.com/it/xslt/touchclarity/omtr_tc.js (easyprivacy.txt: 10531) +.lloydstsb.com/it/xslt/touchclarity/omtr_tc\.js +# @@||live.indiatimes.com/trackjs.cms (easyprivacy.txt: 10530) +.live.indiatimes.com/trackjs\.cms +# @@||link.theplatform.com/*?affiliate= (easyprivacy.txt: 10529) +.link.theplatform.com/.*\?affiliate= +# @@||link.theplatform.com/*/tracker.log? (easyprivacy.txt: 10528) +.link.theplatform.com/.*/tracker\.log\? +# @@||lininteractive.com/chartbeat/$~third-party (easyprivacy.txt: 10527) +.lininteractive.com/chartbeat/ +# @@||lg.com^*/foresee/foresee-trigger.js (easyprivacy.txt: 10526) +.lg.com/.*/foresee/foresee-trigger\.js +# @@||lesacasino.com^*/EMERPEventCollector.$script,subdocument (easyprivacy.txt: 10525) +.lesacasino.com/.*/EMERPEventCollector\. +# @@||leretourdelautruche.com/map/nuke/heatmap.js (easyprivacy.txt: 10524) +.leretourdelautruche.com/map/nuke/heatmap\.js +# @@||lenovo.com^*/GoogleAnalytics.js (easyprivacy.txt: 10523) +.lenovo.com/.*/GoogleAnalytics\.js +# @@||latimes.com/hive/javascripts/loggingService.js (easyprivacy.txt: 10522) +.latimes.com/hive/javascripts/loggingService\.js +# @@||l.yimg.com/g/combo/*/comscore.$script (easyprivacy.txt: 10521) +.l.yimg.com/g/combo/.*/comscore\. +# @@||koldcast.tv/mint/*/tracker.php? (easyprivacy.txt: 10519) +.koldcast.tv/mint/.*/tracker\.php\? +# @@||koalabeast.com/stats?$script (easyprivacy.txt: 10518) +.koalabeast.com/stats\? +# @@||keremerkan.net/wp-content/plugins/wp-minify/min/*/google-analyticator/ (easyprivacy.txt: 10517) +.keremerkan.net/wp-content/plugins/wp-minify/min/.*/google-analyticator/ +# @@||kentucky.com/mistats/finalizestats.js (easyprivacy.txt: 10516) +.kentucky.com/mistats/finalizestats\.js +# @@||keep2s.cc/ext/evercookie/$script (easyprivacy.txt: 10515) +.keep2s.cc/ext/evercookie/ +# @@||kaltura.com/content/*/comscorePlugin.swf (easyprivacy.txt: 10514) +.kaltura.com/content/.*/comscorePlugin\.swf +# @@||k2s.cc/ext/evercookie/$script (easyprivacy.txt: 10513) +.k2s.cc/ext/evercookie/ +# @@||juxtacommons.org^*/heatmap.js (easyprivacy.txt: 10512) +.juxtacommons.org/.*/heatmap\.js +# @@||js.vpro.nl/vpro/*/statcounter.js? (easyprivacy.txt: 10511) +.js.vpro.nl/vpro/.*/statcounter\.js\? +# @@||jeevansathi.com/minify.php?files=$script,stylesheet (easyprivacy.txt: 10509) +.jeevansathi.com/minify\.php\?files= +# @@||jackjones.com^*/google-analytics-tagging.js (easyprivacy.txt: 10508) +.jackjones.com/.*/google-analytics-tagging\.js +# @@||itworld.com/elqnow/elq*.js (easyprivacy.txt: 10507) +.itworld.com/elqnow/elq.*\.js +# @@||intel.com^*/angular-google-analytics.js (easyprivacy.txt: 10504) +.intel.com/.*/angular-google-analytics\.js +# @@||imrworldwide.com^*/swfobject.js (easyprivacy.txt: 10501) +.imrworldwide.com/.*/swfobject\.js +# @@||imrworldwide.com^*/flashdetect.js (easyprivacy.txt: 10499) +.imrworldwide.com/.*/flashdetect\.js +# @@||ibis.com/scripts-*/xtanalyzer_roi.js (easyprivacy.txt: 10492) +.ibis.com/scripts-.*/xtanalyzer_roi\.js +# @@||hotmail.com/mail/*/i2a.js (easyprivacy.txt: 10489) +.hotmail.com/mail/.*/i2a\.js +# @@||hostlogr.com/etc/geo.php? (easyprivacy.txt: 10488) +.hostlogr.com/etc/geo\.php\? +# @@||homedepot.com/static/scripts/resxclsa.js (easyprivacy.txt: 10487) +.homedepot.com/static/scripts/resxclsa\.js +# @@||highcharts.com^*/heatmap.js (easyprivacy.txt: 10484) +.highcharts.com/.*/heatmap\.js +# @@||hhgregg.com/wcsstore/MadisonsStorefrontAssetStore/javascript/Analytics/AnalyticsTagDataObject.js (easyprivacy.txt: 10483) +.hhgregg.com/wcsstore/MadisonsStorefrontAssetStore/javascript/Analytics/AnalyticsTagDataObject\.js +# @@||healthcare.gov/marketplace/*/clear.gif? (easyprivacy.txt: 10482) +.healthcare.gov/marketplace/.*/clear\.gif\? +# @@||harvard.edu/scripts/ga_social_tracking.js (easyprivacy.txt: 10481) +.harvard.edu/scripts/ga_social_tracking\.js +# @@||halowars.com/stats/images/Buttons/MapStats.jpg (easyprivacy.txt: 10480) +.halowars.com/stats/images/Buttons/MapStats\.jpg +# @@||graphracer.com/js/libs/heatmap.js (easyprivacy.txt: 10478) +.graphracer.com/js/libs/heatmap\.js +# @@||grapeshot.co.uk/sare-api/ (easyprivacy.txt: 10477) +.grapeshot.co.uk/sare-api/ +# @@||grapeshot.co.uk/image-resize/$image (easyprivacy.txt: 10476) +.grapeshot.co.uk/image-resize/ +# @@||google.com/analytics/js/analytics.min.js$~third-party (easyprivacy.txt: 10470) +.google.com/analytics/js/analytics\.min\.js +# @@||google.*/mapmaker/gen_204?$subdocument,xmlhttprequest (easyprivacy.txt: 10469) +.google.*./(.*/)?mapmaker/gen_204\? +# @@||goldmansachs.com/a/pg/js/prod/gs-analytics-init.js (easyprivacy.txt: 10462) +.goldmansachs.com/a/pg/js/prod/gs-analytics-init\.js +# @@||goldbet.com/Scripts/googleAnalytics.js (easyprivacy.txt: 10461) +.goldbet.com/Scripts/googleAnalytics\.js +# @@||go.com^*/analytics/tracker.otv.js (easyprivacy.txt: 10460) +.go.com/.*/analytics/tracker\.otv\.js +# @@||go.com/stat/flash/analyticreportingas3.swf (easyprivacy.txt: 10459) +.go.com/stat/flash/analyticreportingas3\.swf +# @@||go.com/stat/dolwebanalytics.js (easyprivacy.txt: 10458) +.go.com/stat/dolwebanalytics\.js +# @@||go.com/combiner/*/comscore.$script (easyprivacy.txt: 10457) +.go.com/combiner/.*/comscore\. +# @@||glamour.com/aspen/components/cn-fe-stats/js/$script (easyprivacy.txt: 10455) +.glamour.com/aspen/components/cn-fe-stats/js/ +# @@||getclicky.com/ajax/marketshare?$script (easyprivacy.txt: 10451) +.getclicky.com/ajax/marketshare\? +# @@||gatheringmagic.com/wp-content/plugins/bwp-minify/min/*/google-analyticator/$script (easyprivacy.txt: 10446) +.gatheringmagic.com/wp-content/plugins/bwp-minify/min/.*/google-analyticator/ +# @@||gardenista.com/media/js/libs/ga_social_tracking.js (easyprivacy.txt: 10444) +.gardenista.com/media/js/libs/ga_social_tracking\.js +# @@||gameplayer.io^*/EventTracker.js (easyprivacy.txt: 10443) +.gameplayer.io/.*/EventTracker\.js +# @@||ft.com/opentag/opentag-$script (easyprivacy.txt: 10441) +.ft.com/opentag/opentag- +# @@||freehostedscripts.net/online/$script,~third-party (easyprivacy.txt: 10440) +.freehostedscripts.net/online/ +# @@||foodnetwork.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10439) +.foodnetwork.com/.*/analytics\.sitecatalyst\.js +# @@||focus.ti.com^*/metrics-min.js (easyprivacy.txt: 10438) +.focus.ti.com/.*/metrics-min\.js +# @@||fls-na.amazon.*/aiv-web-player/$xmlhttprequest (easyprivacy.txt: 10436) +.fls-na.amazon.*./(.*/)?aiv-web-player/ +# @@||flipps.com^*/page-tracking.js? (easyprivacy.txt: 10435) +.flipps.com/.*/page-tracking\.js\? +# @@||fitloop.co/packages/GAnalytics.js? (easyprivacy.txt: 10434) +.fitloop.co/packages/GAnalytics\.js\? +# @@||firstdirect.com^*/logging-code.js (easyprivacy.txt: 10433) +.firstdirect.com/.*/logging-code\.js +# @@||fifa.com^*/webanalytics.js? (easyprivacy.txt: 10432) +.fifa.com/.*/webanalytics\.js\? +# @@||fccbrea.org^*/swfaddress.js (easyprivacy.txt: 10431) +.fccbrea.org/.*/swfaddress\.js +# @@||expedia.com/static/default/default/scripts/TealeafSDK.js (easyprivacy.txt: 10430) +.expedia.com/static/default/default/scripts/TealeafSDK\.js +# @@||expedia.com/static/default/default/scripts/siteAnalytics.js (easyprivacy.txt: 10429) +.expedia.com/static/default/default/scripts/siteAnalytics\.js +# @@||expedia.com/minify/siteAnalytics-$script (easyprivacy.txt: 10428) +.expedia.com/minify/siteAnalytics- +# @@||evernote.com^*/google-analytics-util.js (easyprivacy.txt: 10427) +.evernote.com/.*/google-analytics-util\.js +# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/quantcast/$script (easyprivacy.txt: 10422) +.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/quantcast/ +# @@||epixhd.com/styleassets/js/google-analytics.js (easyprivacy.txt: 10421) +.epixhd.com/styleassets/js/google-analytics\.js +# @@||ensighten.com^*/serverComponent.php?$script (easyprivacy.txt: 10420) +.ensighten.com/.*/serverComponent\.php\? +# @@||ensighten.com^*/code/$script (easyprivacy.txt: 10418) +.ensighten.com/.*/code/ +# @@||ensighten.com/libs/flowplayer/ensightenplugin.swf$object-subrequest (easyprivacy.txt: 10416) +.ensighten.com/libs/flowplayer/ensightenplugin\.swf +# @@||ensighten.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10415) +.ensighten.com/crossdomain\.xml +# @@||eircomphonebook.ie/js/wt_capi.js? (easyprivacy.txt: 10411) +.eircomphonebook.ie/js/wt_capi\.js\? +# @@||egencia.com/pubspec/scripts/include/siteanalytics_include.js (easyprivacy.txt: 10410) +.egencia.com/pubspec/scripts/include/siteanalytics_include\.js +# @@||ecostream.tv/js/ecos.js (easyprivacy.txt: 10408) +.ecostream.tv/js/ecos\.js +# @@||directline.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10398) +.directline.com/.*/analytics\.sitecatalyst\.js +# @@||directline.com/touchclarity/$script (easyprivacy.txt: 10397) +.directline.com/touchclarity/ +# @@||diablo3.com/assets/js/jquery.google-analytics.js (easyprivacy.txt: 10395) +.diablo3.com/assets/js/jquery\.google-analytics\.js +# @@||descopera.ro/js/addLinkerEvents-ga.js (easyprivacy.txt: 10394) +.descopera.ro/js/addLinkerEvents-ga\.js +# @@||debenhams.com/foresee/foresee-trigger.js (easyprivacy.txt: 10391) +.debenhams.com/foresee/foresee-trigger\.js +# @@||deals.nextag.com^*/ClickTracker.jsp (easyprivacy.txt: 10390) +.deals.nextag.com/.*/ClickTracker\.jsp +# @@||dailymail.co.uk/brightcove/tracking/ted3.js (easyprivacy.txt: 10389) +.dailymail.co.uk/brightcove/tracking/ted3\.js +# @@||dailyfinance.com/traffic/? (easyprivacy.txt: 10388) +.dailyfinance.com/traffic/\? +# @@||dailycaller.com^*_chartbeat.js (easyprivacy.txt: 10387) +.dailycaller.com/.*_chartbeat\.js +# @@||ctv.ca/players/mediaplayer/*/comscorebeacon.js (easyprivacy.txt: 10381) +.ctv.ca/players/mediaplayer/.*/comscorebeacon\.js +# @@||csoonline.com/js/demandbase.js (easyprivacy.txt: 10380) +.csoonline.com/js/demandbase\.js +# @@||csid.com/wp-content/plugins/bwp-minify/min/?*/google-analyticator/$script (easyprivacy.txt: 10379) +.csid.com/wp-content/plugins/bwp-minify/min/\?.*/google-analyticator/ +# @@||cschat.ebay.com^*/scripts/log.js (easyprivacy.txt: 10377) +.cschat.ebay.com/.*/scripts/log\.js +# @@||craveonline.com^*/google-analytics.min.js (easyprivacy.txt: 10374) +.craveonline.com/.*/google-analytics\.min\.js +# @@||craveonline.com/wp-content/plugins/bwp-minify/$script (easyprivacy.txt: 10373) +.craveonline.com/wp-content/plugins/bwp-minify/ +# @@||count.ly^$~third-party (easyprivacy.txt: 10371) +.count.ly +# @@||coremetrics.com*/eluminate.js (easyprivacy.txt: 10370) +.coremetrics.com*./(.*/)?eluminate\.js +# @@||contentdef.com/assets/common/js/google-analytics.js (easyprivacy.txt: 10369) +.contentdef.com/assets/common/js/google-analytics\.js +# @@||constantcontact.com/js/WebTracking/ (easyprivacy.txt: 10368) +.constantcontact.com/js/WebTracking/ +# @@||computerworld.com/resources/scripts/lib/demandbase.js$script (easyprivacy.txt: 10367) +.computerworld.com/resources/scripts/lib/demandbase\.js +# @@||collegeboard.org/webanalytics/ (easyprivacy.txt: 10366) +.collegeboard.org/webanalytics/ +# @@||citiretailservices.citibankonline.com/USCRSF/USCRSGBL/js/AppMeasurement.js (easyprivacy.txt: 10353) +.citiretailservices.citibankonline.com/USCRSF/USCRSGBL/js/AppMeasurement\.js +# @@||cisco.com/web/fw/m/ntpagetag.min.js (easyprivacy.txt: 10352) +.cisco.com/web/fw/m/ntpagetag\.min\.js +# @@||cisco.com/web/fw/lib/ntpagetag.js (easyprivacy.txt: 10351) +.cisco.com/web/fw/lib/ntpagetag\.js +# @@||cio.com/js/demandbase.js? (easyprivacy.txt: 10350) +.cio.com/js/demandbase\.js\? +# @@||cincinnatibell.net/images/track/track.gif?$xmlhttprequest (easyprivacy.txt: 10349) +.cincinnatibell.net/images/track/track\.gif\? +# @@||chatzy.com/?jsonp:$script (easyprivacy.txt: 10348) +.chatzy.com/\?jsonp: +# @@||chartbeat.com/*/chartbeat/$~third-party (easyprivacy.txt: 10346) +.chartbeat.com/.*/chartbeat/ +# @@||chanel.com/js/chanel-tracking.js$script (easyprivacy.txt: 10345) +.chanel.com/js/chanel-tracking\.js +# @@||centurylink.net/images/track/track.gif?track=$xmlhttprequest (easyprivacy.txt: 10344) +.centurylink.net/images/track/track\.gif\?track= +# @@||cdn-redfin.com^*/page_analytics.xd.js (easyprivacy.txt: 10341) +.cdn-redfin.com/.*/page_analytics\.xd\.js +# @@||cbc.ca^*/loggingservice.js? (easyprivacy.txt: 10333) +.cbc.ca/.*/loggingservice\.js\? +# @@||care2.com/assets/scripts/cookies/care2/NitroCookies.js (easyprivacy.txt: 10332) +.care2.com/assets/scripts/cookies/care2/NitroCookies\.js +# @@||capitalone360.com/urchin.js (easyprivacy.txt: 10331) +.capitalone360.com/urchin\.js +# @@||canoe.ca/generix/omniture/TagOmnitureEngine.js (easyprivacy.txt: 10330) +.canoe.ca/generix/omniture/TagOmnitureEngine\.js +# @@||canadiantire.ca^*/analytics.sitecatalyst.js (easyprivacy.txt: 10329) +.canadiantire.ca/.*/analytics\.sitecatalyst\.js +# @@||canada.com/js/ooyala/comscore.js (easyprivacy.txt: 10328) +.canada.com/js/ooyala/comscore\.js +# @@||cache.nymag.com^*/clickability.js (easyprivacy.txt: 10327) +.cache.nymag.com/.*/clickability\.js +# @@||buffalowildwings.com^*/google-analytics.js (easyprivacy.txt: 10322) +.buffalowildwings.com/.*/google-analytics\.js +# @@||bt.com^*/touchclarity/homepage/omtr_tc.js (easyprivacy.txt: 10320) +.bt.com/.*/touchclarity/homepage/omtr_tc\.js +# @@||britishairways.com/cms/global/scripts/applications/tracking/visualsciences.js (easyprivacy.txt: 10318) +.britishairways.com/cms/global/scripts/applications/tracking/visualsciences\.js +# @@||boxtops4education.com^*/ntpagetag.js (easyprivacy.txt: 10317) +.boxtops4education.com/.*/ntpagetag\.js +# @@||bountysource.com/badge/tracker? (easyprivacy.txt: 10316) +.bountysource.com/badge/tracker\? +# @@||bootcamp.mit.edu/js/angulartics-google-analytics.min.js (easyprivacy.txt: 10315) +.bootcamp.mit.edu/js/angulartics-google-analytics\.min\.js +# @@||bookmate.com^*/impressions?$xmlhttprequest (easyprivacy.txt: 10314) +.bookmate.com/.*/impressions\? +# @@||bonappetit.com^*/cn-fe-stats/$script (easyprivacy.txt: 10313) +.bonappetit.com/.*/cn-fe-stats/ +# @@||bolha.com/clicktracker/ (easyprivacy.txt: 10312) +.bolha.com/clicktracker/ +# @@||bitgo.com/vendor/googleanalytics/angular-ga.min.js (easyprivacy.txt: 10310) +.bitgo.com/vendor/googleanalytics/angular-ga\.min\.js +# @@||bhg.com/web/js-min/common/js/dwr/RemoteTargetingService.js (easyprivacy.txt: 10309) +.bhg.com/web/js-min/common/js/dwr/RemoteTargetingService\.js +# @@||bettycrocker.com/Shared/Javascript/UnicaTag.js (easyprivacy.txt: 10308) +.bettycrocker.com/Shared/Javascript/UnicaTag\.js +# @@||bettycrocker.com/Shared/Javascript/ntpagetag.js (easyprivacy.txt: 10307) +.bettycrocker.com/Shared/Javascript/ntpagetag\.js +# @@||beplb01.nexus.hewitt.com/analytics?$~third-party (easyprivacy.txt: 10305) +.beplb01.nexus.hewitt.com/analytics\? +# @@||benswann.com/decor/javascript/magnify_stats.js? (easyprivacy.txt: 10304) +.benswann.com/decor/javascript/magnify_stats\.js\? +# @@||behanceserved.com/stats/stats.js? (easyprivacy.txt: 10303) +.behanceserved.com/stats/stats\.js\? +# @@||beatthetraffic.com/traffic/?partner=$subdocument (easyprivacy.txt: 10302) +.beatthetraffic.com/traffic/\?partner= +# @@||beacon.guim.co.uk/accept-beacon? (easyprivacy.txt: 10301) +.beacon.guim.co.uk/accept-beacon\? +# @@||bc.geocities.*/not_found/ (easyprivacy.txt: 10300) +.bc.geocities.*./(.*/)?not_found/ +# @@||bbc.co.uk/frameworks/nedstat/$script,~third-party (easyprivacy.txt: 10299) +.bbc.co.uk/frameworks/nedstat/ +# @@||barclays.co.uk/touchclarity/mbox.js (easyprivacy.txt: 10297) +.barclays.co.uk/touchclarity/mbox\.js +# @@||b-europe.com/HttpHandlers/httpCombiner.ashx?*/xiti.js$script (easyprivacy.txt: 10296) +.b-europe.com/HttpHandlers/httpCombiner\.ashx\?.*/xiti\.js +# @@||autoscout24.net/unifiedtracking/ivw.js (easyprivacy.txt: 10295) +.autoscout24.net/unifiedtracking/ivw\.js +# @@||att.com/webtrends/scripts/dcs_tag.js (easyprivacy.txt: 10294) +.att.com/webtrends/scripts/dcs_tag\.js +# @@||atpworldtour.com/assets/js/util/googleAnalytics.js (easyprivacy.txt: 10293) +.atpworldtour.com/assets/js/util/googleAnalytics\.js +# @@||atlanticbb.net/images/track/track.gif?$xmlhttprequest (easyprivacy.txt: 10292) +.atlanticbb.net/images/track/track\.gif\? +# @@||atdmt.com/ds/yusptsprtspr/ (easyprivacy.txt: 10290) +.atdmt.com/ds/yusptsprtspr/ +# @@||assets.espn.go.com/espn360/builds/nielsen/ggce*.swf$object-subrequest (easyprivacy.txt: 10289) +.assets.espn.go.com/espn360/builds/nielsen/ggce.*\.swf +# @@||arstechnica.com/services/incr.php?*=interactions.adblock-annoy.click$xmlhttprequest (easyprivacy.txt: 10288) +.arstechnica.com/services/incr\.php\?.*=interactions\.adblock-annoy\.click +# @@||arkadiumhosted.com^*/google-analytics-logger.swf$object-subrequest (easyprivacy.txt: 10287) +.arkadiumhosted.com/.*/google-analytics-logger\.swf +# @@||arcgis.com^*/heatmap.js (easyprivacy.txt: 10286) +.arcgis.com/.*/heatmap\.js +# @@||api.academia.edu^*/stats?callback$script,~third-party (easyprivacy.txt: 10284) +.api.academia.edu/.*/stats\?callback +# @@||aol.com/mm_track/slideshow/$subdocument (easyprivacy.txt: 10279) +.aol.com/mm_track/slideshow/ +# @@||anthem.com/includes/foresee/foresee-trigger.js (easyprivacy.txt: 10278) +.anthem.com/includes/foresee/foresee-trigger\.js +# @@||analytics.atomiconline.com/services/jquery.js (easyprivacy.txt: 10271) +.analytics.atomiconline.com/services/jquery\.js +# @@||amctv.com^*/comscore.js (easyprivacy.txt: 10269) +.amctv.com/.*/comscore\.js +# @@||aliunicorn.com^*/click_stat/ (easyprivacy.txt: 10266) +.aliunicorn.com/.*/click_stat/ +# @@||aliunicorn.com^*/click-stat.js (easyprivacy.txt: 10265) +.aliunicorn.com/.*/click-stat\.js +# @@||aliexpress.com/home/recommendEntry.do?$script (easyprivacy.txt: 10264) +.aliexpress.com/home/recommendEntry\.do\? +# @@||aflac.com/js/wt_capi.js (easyprivacy.txt: 10262) +.aflac.com/js/wt_capi\.js +# @@||adobetag.com^*/amc.js$script (easyprivacy.txt: 10258) +.adobetag.com/.*/amc\.js +# @@||adidas.com^*/adidasAnalytics.js? (easyprivacy.txt: 10256) +.adidas.com/.*/adidasAnalytics\.js\? +# @@||accorhotels.com^*/xtanalyzer_roi.js (easyprivacy.txt: 10252) +.accorhotels.com/.*/xtanalyzer_roi\.js +# @@||about-australia.com/*/clickheat.js (easyprivacy.txt: 10251) +.about-australia.com/.*/clickheat\.js +# @@/wp-content/plugins/google-analytics-dashboard-for-wp/*$~third-party (easyprivacy.txt: 10249) +/(.*/)?wp-content/plugins/google-analytics-dashboard-for-wp/.* + +#ab2p-unblock-dnt-R110 +{+client-header-tagger{ab2p-unblock-dnt-R110} \ +} +# @@||iocdn.coremetrics.com^*/io_config.js?ts=$domain=24ace.co.uk (easyprivacy.txt: 10506) +.iocdn.coremetrics.com/.*/io_config\.js\?ts= +# @@||iocdn.coremetrics.com^*.js?V=$domain=24ace.co.uk (easyprivacy.txt: 10505) +.iocdn.coremetrics.com/.*\.js\?V= + +#ab2p-unblock-dnt-R111 +{+client-header-tagger{ab2p-unblock-dnt-R111} \ +} +# @@||codicefl.shinystat.com/cgi-bin/getserver.cgi?$script,domain=3bmeteo.com|quotidiano.net|radioitalia.it (easyprivacy.txt: 11023) +.codicefl.shinystat.com/cgi-bin/getserver\.cgi\? + +#ab2p-unblock-dnt-R112 +{+client-header-tagger{ab2p-unblock-dnt-R112} \ +} +# @@||w88.go.com/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easyprivacy.txt: 10774) +.w88.go.com/crossdomain\.xml + +#ab2p-unblock-dnt-R113 +{+client-header-tagger{ab2p-unblock-dnt-R113} \ +} +# @@||sitestat.com/crossdomain.xml$object-subrequest,domain=abp.nl (easyprivacy.txt: 10994) +.sitestat.com/crossdomain\.xml +# @@||sitestat.com/abp/abp/s?$object-subrequest,domain=abp.nl (easyprivacy.txt: 10993) +.sitestat.com/abp/abp/s\? + +#ab2p-unblock-dnt-R114 +{+client-header-tagger{ab2p-unblock-dnt-R114} \ +} +# @@||csdata1.com/data/js/$domain=acehardware.com (easyprivacy.txt: 10378) +.csdata1.com/data/js/ + +#ab2p-unblock-dnt-R115 +{+client-header-tagger{ab2p-unblock-dnt-R115} \ +} +# @@||iocdn.coremetrics.com^*/io_config.js?ts=$domain=adidas.de (easyprivacy.txt: 10883) +.iocdn.coremetrics.com/.*/io_config\.js\?ts= +# @@||iocdn.coremetrics.com^*.js?V=$script,domain=adidas.de (easyprivacy.txt: 10882) +.iocdn.coremetrics.com/.*\.js\?V= + +#ab2p-unblock-dnt-R116 +{+client-header-tagger{ab2p-unblock-dnt-R116} \ +} +# @@||mixpanel.com/track/?data=$xmlhttprequest,domain=ads.twitter.com|change.org|greentoe.com|kickstarter.com|mint.com|nbc.com|thefrisky.com|vid.me (easyprivacy.txt: 10570) +.mixpanel.com/track/\?data= + +#ab2p-unblock-dnt-R117 +{+client-header-tagger{ab2p-unblock-dnt-R117} \ +} +# @@||google-analytics.com/analytics.js$domain=afternic.com|amctv.com|bebo.com|ch10.co.il|cliphunter.com|daemon-tools.cc|desigual.com|gamepix.com|greentoe.com|housing.wisc.edu|infogr.am|jackbox.tv|keygames.com|manowthaimordialloc.com.au|maxiclimber.com|orbitum.com|pluto.tv|rebtel.com|sbnation.com|sci2.tv|seatgeek.com|support.amd.com|tagheuer.com.au|tv10play.se|tv3play.se|tv6play.se|tv8play.se|video.pbs.org|vox.com|vpnster.com|weather.gov|westernunion.at|westernunion.be|westernunion.ca|westernunion.ch|westernunion.cl|westernunion.co.jp|westernunion.co.nz|westernunion.co.uk|westernunion.co.za|westernunion.com|westernunion.com.au|westernunion.com.co|westernunion.com.hk|westernunion.com.my|westernunion.com.pe|westernunion.de|westernunion.fr|westernunion.ie|westernunion.it|westernunion.nl|westernunion.ph|westernunion.pl|westernunion.se|westernunion.sg|www.google.com (easyprivacy.txt: 10463) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R118 +{+client-header-tagger{ab2p-unblock-dnt-R118} \ +} +# @@||scorecardresearch.com/beacon.js$domain=agame.com|allrecipes.com|amctv.com|apl.tv|babycenter.com|bonappetit.com|calgaryherald.com|canada.com|cbc.ca|dailymail.co.uk|deviantart.com|discovery.com|edmontonjournal.com|fastcompany.com|financialpost.com|firstwefeast.com|hitfix.com|huffingtonpost.com|landandfarm.com|last.fm|leaderpost.com|m.tmz.com|montrealgazette.com|nationalpost.com|newsday.com|ottawacitizen.com|outsideonline.com|radaronline.com|salon.com|sci2.tv|syfy.com|theprovince.com|thestar.com|thestarphoenix.com|thinkatheist.com|vancouversun.com|windsorstar.com (easyprivacy.txt: 10671) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-dnt-R119 +{+client-header-tagger{ab2p-unblock-dnt-R119} \ +} +# @@||aolcdn.com/omniunih.js$domain=aim.com|autoblog.com|autos.aol.com|engadget.com|mapquest.com|video.aol.com|www.aol.com (easyprivacy.txt: 10281) +.aolcdn.com/omniunih\.js + +#ab2p-unblock-dnt-R120 +{+client-header-tagger{ab2p-unblock-dnt-R120} \ +} +# @@||maxmind.com^*/geoip.js$domain=aljazeera.com|ballerstatus.com|bikemap.net|carltonjordan.com|cashu.com|coolsport.tv|dereon.com|dr.dk|everydaysource.com|fab.com|girlgames4u.com|incgamers.com|ip-address.cc|maaduu.com|qatarairways.com|sat-direction.com|sotctours.com|stoli.com|vibe.com (easyprivacy.txt: 10550) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-dnt-R121 +{+client-header-tagger{ab2p-unblock-dnt-R121} \ +} +# @@/cdn-cgi/pe/bag2?*static.getclicky.com%2Fjs$domain=amazingpics.net (easyprivacy.txt: 10247) +/(.*/)?cdn-cgi/pe/bag2\?.*static\.getclicky\.com%2Fjs + +#ab2p-unblock-dnt-R122 +{+client-header-tagger{ab2p-unblock-dnt-R122} \ +} +# @@||amctv.com^*/google-analytics.js$domain=amctv.com (easyprivacy.txt: 10270) +.amctv.com/.*/google-analytics\.js + +#ab2p-unblock-dnt-R123 +{+client-header-tagger{ab2p-unblock-dnt-R123} \ +} +# @@||ensighten.com^*/Bootstrap.js$domain=americanexpress.com|caranddriver.com|citizensbank.com|dell.com|homedepot.com|staples.com|t-mobile.com|target.com (easyprivacy.txt: 10417) +.ensighten.com/.*/Bootstrap\.js + +#ab2p-unblock-dnt-R124 +{+client-header-tagger{ab2p-unblock-dnt-R124} \ +} +# @@/cdn-cgi/pe/bag2?*google-analytics.com%2Fanalytics.js$domain=amypink.de|biznews.com|cryptospot.me|droid-life.com|forwardprogressives.com|fpif.org|fullpotentialma.com|geekzone.co.nz|goldsday.com|imageupload.co.uk|is-arquitectura.es|mmanews.com|orain.org|tvunblock.com|unilad.co.uk|xrussianteens.com|youngcons.com (easyprivacy.txt: 10239) +/(.*/)?cdn-cgi/pe/bag2\?.*google-analytics\.com%2Fanalytics\.js + +#ab2p-unblock-dnt-R125 +{+client-header-tagger{ab2p-unblock-dnt-R125} \ +} +# @@/cdn-cgi/pe/bag2?*scorecardresearch.com$xmlhttprequest,domain=amypink.de|droid-life.com|mmanews.com|unilad.co.uk (easyprivacy.txt: 10245) +/(.*/)?cdn-cgi/pe/bag2\?.*scorecardresearch\.com + +#ab2p-unblock-dnt-R126 +{+client-header-tagger{ab2p-unblock-dnt-R126} \ +} +# @@||analytics.twitter.com^$domain=analytics.twitter.com (easyprivacy.txt: 10277) +.analytics.twitter.com + +#ab2p-unblock-dnt-R127 +{+client-header-tagger{ab2p-unblock-dnt-R127} \ +} +# @@||omtrdc.net^*/mbox/standard?$script,domain=ancestry.co.uk|ancestry.com|ancestry.com.au|ancestry.it|blogtalkradio.com (easyprivacy.txt: 10615) +.omtrdc.net/.*/mbox/standard\? + +#ab2p-unblock-dnt-R128 +{+client-header-tagger{ab2p-unblock-dnt-R128} \ +} +# @@||scorecardresearch.com/r?$image,domain=ancestry.com|billetnet.dk|billettservice.no|lippupalvelu.fi|macworld.com|pcworld.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se|wsj.com (easyprivacy.txt: 10840) +.scorecardresearch.com/r\? + +#ab2p-unblock-dnt-R129 +{+client-header-tagger{ab2p-unblock-dnt-R129} \ +} +# @@||scorecardresearch.com/r2?$image,domain=ancestry.com|billetnet.dk|billettservice.no|lippupalvelu.fi|pcworld.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se|wsj.com (easyprivacy.txt: 10839) +.scorecardresearch.com/r2\? + +#ab2p-unblock-dnt-R130 +{+client-header-tagger{ab2p-unblock-dnt-R130} \ +} +# @@||google.com/js/gweb/analytics/doubletrack.js$domain=android.com (easyprivacy.txt: 10472) +.google.com/js/gweb/analytics/doubletrack\.js + +#ab2p-unblock-dnt-R131 +{+client-header-tagger{ab2p-unblock-dnt-R131} \ +} +# @@||yandex.ru/webvisor/$xmlhttprequest,domain=anoncer.net (easyprivacy.txt: 11073) +.yandex.ru/webvisor/ +# @@||yandex.ru/watch/$xmlhttprequest,domain=anoncer.net (easyprivacy.txt: 11072) +.yandex.ru/watch/ + +#ab2p-unblock-dnt-R132 +{+client-header-tagger{ab2p-unblock-dnt-R132} \ +} +# @@||yandex.ru/metrika/watch.js$domain=anoncer.net|tv.yandex.ru (easyprivacy.txt: 11071) +.yandex.ru/metrika/watch\.js + +#ab2p-unblock-dnt-R133 +{+client-header-tagger{ab2p-unblock-dnt-R133} \ +} +# @@||pixel.quantserve.com/api/segments.json?$domain=ap.org|newsinc.com (easyprivacy.txt: 10638) +.pixel.quantserve.com/api/segments\.json\? +# @@||ad.crwdcntrl.net^$object-subrequest,domain=ap.org|newsinc.com (easyprivacy.txt: 10253) +.ad.crwdcntrl.net + +#ab2p-unblock-dnt-R134 +{+client-header-tagger{ab2p-unblock-dnt-R134} \ +} +# @@||code.etracker.com/t.js?et=$script,domain=apotheken-umschau.de|compo-hobby.de|diabetes-ratgeber.net|giz.de|kaguma.com|krombacher.de (easyprivacy.txt: 10864) +.code.etracker.com/t\.js\?et= + +#ab2p-unblock-dnt-R135 +{+client-header-tagger{ab2p-unblock-dnt-R135} \ +} +# @@||zynga.com/current/iframe/track.php?$domain=apps.facebook.com (easyprivacy.txt: 10816) +.zynga.com/current/iframe/track\.php\? + +#ab2p-unblock-dnt-R136 +{+client-header-tagger{ab2p-unblock-dnt-R136} \ +} +# @@||quantserve.com/quant.js$domain=apps.facebook.com|caranddriver.com|g4tv.com|nymag.com|salon.com|theblaze.com (easyprivacy.txt: 10653) +.quantserve.com/quant\.js + +#ab2p-unblock-dnt-R137 +{+client-header-tagger{ab2p-unblock-dnt-R137} \ +} +# @@||d2dq2ahtl5zl1z.cloudfront.net/analytics.js/*/analytics.min.js$domain=architizer.com (easyprivacy.txt: 10382) +.d2dq2ahtl5zl1z.cloudfront.net/analytics\.js/.*/analytics\.min\.js + +#ab2p-unblock-dnt-R138 +{+client-header-tagger{ab2p-unblock-dnt-R138} \ +} +# @@||analytics.edgesuite.net/html5/akamaihtml5-min.js?$domain=ardmediathek.de (easyprivacy.txt: 10857) +.analytics.edgesuite.net/html5/akamaihtml5-min\.js\? + +#ab2p-unblock-dnt-R139 +{+client-header-tagger{ab2p-unblock-dnt-R139} \ +} +# @@||longtailvideo.com/5/googlytics/googlytics-1.js$domain=arte.tv (easyprivacy.txt: 10891) +.longtailvideo.com/5/googlytics/googlytics-1\.js + +#ab2p-unblock-dnt-R140 +{+client-header-tagger{ab2p-unblock-dnt-R140} \ +} +# @@||tag.perfectaudience.com/serve/*.js$domain=asana.com (easyprivacy.txt: 10710) +.tag.perfectaudience.com/serve/.*\.js + +#ab2p-unblock-dnt-R141 +{+client-header-tagger{ab2p-unblock-dnt-R141} \ +} +# @@||pixel.quantserve.com/api/segments.xml?a=$domain=associatedcontent.com|cbs.com|cbsatlanta.com|centurylink.net|comedy.com|eurweb.com|fox5vegas.com|foxcarolina.com|grabnetworks.com|kctv5.com|kpho.com|kptv.com|theimproper.com|thenewsroom.com|tv.com|tvguide.com|wfsb.com|wnem.com|wsmv.com (easyprivacy.txt: 10639) +.pixel.quantserve.com/api/segments\.xml\?a= + +#ab2p-unblock-dnt-R142 +{+client-header-tagger{ab2p-unblock-dnt-R142} \ +} +# @@||webtrendslive.com^*/wtid.js?$domain=att.yahoo.com (easyprivacy.txt: 10784) +.webtrendslive.com/.*/wtid\.js\? + +#ab2p-unblock-dnt-R143 +{+client-header-tagger{ab2p-unblock-dnt-R143} \ +} +# @@||imrworldwide.com^*-mediaplayer&$domain=au.launch.yahoo.com (easyprivacy.txt: 10498) +.imrworldwide.com/.*-mediaplayer& + +#ab2p-unblock-dnt-R144 +{+client-header-tagger{ab2p-unblock-dnt-R144} \ +} +# @@||aolcdn.com/omniunih_int.js$domain=autoblog.com (easyprivacy.txt: 10282) +.aolcdn.com/omniunih_int\.js + +#ab2p-unblock-dnt-R145 +{+client-header-tagger{ab2p-unblock-dnt-R145} \ +} +# @@||aolcdn.com/js/mg2.js$domain=autoblog.com|autos.aol.com|dailyfinance.com|moviefone.com (easyprivacy.txt: 10280) +.aolcdn.com/js/mg2\.js + +#ab2p-unblock-dnt-R146 +{+client-header-tagger{ab2p-unblock-dnt-R146} \ +} +# @@||aolcdn.com^*/beacon.min.js$domain=autoblog.com|dailyfinance.com (easyprivacy.txt: 10283) +.aolcdn.com/.*/beacon\.min\.js + +#ab2p-unblock-dnt-R147 +{+client-header-tagger{ab2p-unblock-dnt-R147} \ +} +# @@||maxmind.com^*/geoip.js$domain=automatensuche.de (easyprivacy.txt: 10892) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-dnt-R148 +{+client-header-tagger{ab2p-unblock-dnt-R148} \ +} +# @@||googletagmanager.com/gtm.js?$domain=autorevue.cz|e15.cz|mobilmania.cz|sportrevue.cz|zive.cz (easyprivacy.txt: 10982) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-dnt-R149 +{+client-header-tagger{ab2p-unblock-dnt-R149} \ +} +# @@||google-analytics.com/urchin.js$domain=axure.com|chocomaru.com|denverbroncos.com|muselive.com|streetfire.net|wickedthemusical.com (easyprivacy.txt: 10468) +.google-analytics.com/urchin\.js + +#ab2p-unblock-dnt-R150 +{+client-header-tagger{ab2p-unblock-dnt-R150} \ +} +# @@||video.oms.eu/projekt/download/OMSComponent.swf$object-subrequest,domain=badische-zeitung.de (easyprivacy.txt: 10924) +.video.oms.eu/projekt/download/OMSComponent\.swf +# @@||video.oms.eu/crossdomain.xml$object-subrequest,domain=badische-zeitung.de (easyprivacy.txt: 10923) +.video.oms.eu/crossdomain\.xml + +#ab2p-unblock-dnt-R4 +{+client-header-tagger{ab2p-unblock-dnt-R4} \ +} +# @@||sitestat.com/europcar/europcar-de/*&ns_url=http://microsite.europcar.com/deutschebahn/$subdocument,domain=bahn.de (easyprivacy.txt: 10908) +.sitestat.com/europcar/europcar-de/.*&ns_url=http://microsite\.europcar\.com/deutschebahn/ + +#ab2p-unblock-dnt-R151 +{+client-header-tagger{ab2p-unblock-dnt-R151} \ +} +# @@||tracker.mattel.com^$domain=barbie.com (easyprivacy.txt: 10730) +.tracker.mattel.com + +#ab2p-unblock-dnt-R152 +{+client-header-tagger{ab2p-unblock-dnt-R152} \ +} +# @@||barclays.touchclarity.com^$domain=barclaycard.co.uk (easyprivacy.txt: 10298) +.barclays.touchclarity.com + +#ab2p-unblock-dnt-R153 +{+client-header-tagger{ab2p-unblock-dnt-R153} \ +} +# @@||smetrics.blackberry.com/b/ss/*:jump-page:$image,domain=bbm.com (easyprivacy.txt: 10687) +.smetrics.blackberry.com/b/ss/.*:jump-page: + +#ab2p-unblock-dnt-R154 +{+client-header-tagger{ab2p-unblock-dnt-R154} \ +} +# @@||optimost.com^*/content.js?$domain=bebo.com (easyprivacy.txt: 10621) +.optimost.com/.*/content\.js\? +# @@||optimost.com/counter/*/event.js?$domain=bebo.com (easyprivacy.txt: 10620) +.optimost.com/counter/.*/event\.js\? + +#ab2p-unblock-dnt-R155 +{+client-header-tagger{ab2p-unblock-dnt-R155} \ +} +# @@||google-analytics.com/plugins/ua/linkid.js$domain=bebo.com|rebtel.com|support.amd.com|vox.com (easyprivacy.txt: 10467) +.google-analytics.com/plugins/ua/linkid\.js + +#ab2p-unblock-dnt-R5 +{+client-header-tagger{ab2p-unblock-dnt-R5} \ +} +# @@||switch.atdmt.com/iaction/$subdocument,domain=bestbuy.com (easyprivacy.txt: 10707) +.switch.atdmt.com/iaction/ + +#ab2p-unblock-dnt-R156 +{+client-header-tagger{ab2p-unblock-dnt-R156} \ +} +# @@||api.chartbeat.com^$script,domain=betabeat.com|couriermail.com.au|financialpost.com|wcpo.com (easyprivacy.txt: 10285) +.api.chartbeat.com + +#ab2p-unblock-dnt-R157 +{+client-header-tagger{ab2p-unblock-dnt-R157} \ +} +# @@||stat.prsmedia.fr/tag/stat.js$domain=bienpublic.com (easyprivacy.txt: 10949) +.stat.prsmedia.fr/tag/stat\.js + +#ab2p-unblock-dnt-R158 +{+client-header-tagger{ab2p-unblock-dnt-R158} \ +} +# @@||122.2o7.net/b/ss/$image,domain=billetnet.dk|billettservice.no|citibank.co.in|goal.com|lippupalvelu.fi|pcworld.com|riverisland.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se (easyprivacy.txt: 10823) +.122.2o7.net/b/ss/ + +#ab2p-unblock-dnt-R159 +{+client-header-tagger{ab2p-unblock-dnt-R159} \ +} +# @@||virtualearth.net^*/LoggingService.svc/Log?$script,domain=bing.com (easyprivacy.txt: 10764) +.virtualearth.net/.*/LoggingService\.svc/Log\? + +#ab2p-unblock-dnt-R160 +{+client-header-tagger{ab2p-unblock-dnt-R160} \ +} +# @@||mixpanel.com/site_media/js/api/mixpanel.js$domain=blog.cloudflare.com (easyprivacy.txt: 10569) +.mixpanel.com/site_media/js/api/mixpanel\.js + +#ab2p-unblock-dnt-R161 +{+client-header-tagger{ab2p-unblock-dnt-R161} \ +} +# @@||trc.taboolasyndication.com^$domain=bloomberg.com|breitbart.com|breitbart.tv|nme.com|slatev.com (easyprivacy.txt: 10733) +.trc.taboolasyndication.com + +#ab2p-unblock-dnt-R162 +{+client-header-tagger{ab2p-unblock-dnt-R162} \ +} +# @@||georiot.com/snippet.js$domain=bound2hiphop.com (easyprivacy.txt: 10450) +.georiot.com/snippet\.js + +#ab2p-unblock-dnt-R163 +{+client-header-tagger{ab2p-unblock-dnt-R163} \ +} +# @@||pixel.quantserve.com/seg/r;a=$object-subrequest,domain=breitbart.tv|cbs.com|filefront.com|imdb.com|laobserved.com|tv.com (easyprivacy.txt: 10641) +.pixel.quantserve.com/seg/r;a= + +#ab2p-unblock-dnt-R164 +{+client-header-tagger{ab2p-unblock-dnt-R164} \ +} +# @@||google-analytics.com/ga.js$domain=carambatv.ru (easyprivacy.txt: 11065) +.google-analytics.com/ga\.js + +#ab2p-unblock-dnt-R165 +{+client-header-tagger{ab2p-unblock-dnt-R165} \ +} +# @@||emjcd.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easyprivacy.txt: 10414) +.emjcd.com + +#ab2p-unblock-dnt-R166 +{+client-header-tagger{ab2p-unblock-dnt-R166} \ +} +# @@||clicktale.net^$script,domain=cbc.ca (easyprivacy.txt: 10356) +.clicktale.net + +#ab2p-unblock-dnt-R167 +{+client-header-tagger{ab2p-unblock-dnt-R167} \ +} +# @@||cbsistatic.com^*/clicktale-$script,domain=cbsnews.com|cnet.com (easyprivacy.txt: 10335) +.cbsistatic.com/.*/clicktale- + +#ab2p-unblock-dnt-R168 +{+client-header-tagger{ab2p-unblock-dnt-R168} \ +} +# @@||dw.com.com/js/dw.js$domain=cbsnews.com|cnet.com|gamespot.com|tv.com (easyprivacy.txt: 10406) +.dw.com.com/js/dw\.js + +#ab2p-unblock-dnt-R169 +{+client-header-tagger{ab2p-unblock-dnt-R169} \ +} +# @@||cbsimg.net/js/cbsi/dw.js$domain=cbssports.com|gamespot.com (easyprivacy.txt: 10334) +.cbsimg.net/js/cbsi/dw\.js + +#ab2p-unblock-dnt-R170 +{+client-header-tagger{ab2p-unblock-dnt-R170} \ +} +# @@||imrworldwide.com/crossdomain.xml$object-subrequest,domain=cc.com|sbs.com.au (easyprivacy.txt: 10495) +.imrworldwide.com/crossdomain\.xml + +#ab2p-unblock-dnt-R171 +{+client-header-tagger{ab2p-unblock-dnt-R171} \ +} +# @@||googletagmanager.com/gtm.js?$domain=cdon.fi (easyprivacy.txt: 11000) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-dnt-R172 +{+client-header-tagger{ab2p-unblock-dnt-R172} \ +} +# @@||mxpnl.com/libs/mixpanel-*.min.js$domain=change.org|greentoe.com|intuit.com|nbc.com|thefrisky.com (easyprivacy.txt: 10588) +.mxpnl.com/libs/mixpanel-.*\.min\.js + +#ab2p-unblock-dnt-R173 +{+client-header-tagger{ab2p-unblock-dnt-R173} \ +} +# @@||ru4.com/wsb/$script,domain=chase.com (easyprivacy.txt: 10666) +.ru4.com/wsb/ + +#ab2p-unblock-dnt-R174 +{+client-header-tagger{ab2p-unblock-dnt-R174} \ +} +# @@||statics.cfmcdn.net/*/scripts/webtrends-$script,domain=cheapflights.com (easyprivacy.txt: 10699) +.statics.cfmcdn.net/.*/scripts/webtrends- +# @@||cleananalytics.com/browser.js?$script,domain=cheapflights.com (easyprivacy.txt: 10354) +.cleananalytics.com/browser\.js\? + +#ab2p-unblock-dnt-R175 +{+client-header-tagger{ab2p-unblock-dnt-R175} \ +} +# @@||google-analytics.com/siteopt.js?$domain=chip.de (easyprivacy.txt: 10874) +.google-analytics.com/siteopt\.js\? + +#ab2p-unblock-dnt-R176 +{+client-header-tagger{ab2p-unblock-dnt-R176} \ +} +# @@||geoplugin.net/javascript.gp$script,domain=christianhouseshare.com.au|gamemazing.com|soundsonline.com|support.netgear.com|support.netgear.de|support.netgear.es|support.netgear.fr|support.netgear.it|support.netgear.ru (easyprivacy.txt: 10448) +.geoplugin.net/javascript\.gp + +#ab2p-unblock-dnt-R177 +{+client-header-tagger{ab2p-unblock-dnt-R177} \ +} +# @@||doubleclick.net/activityi;src=$object-subrequest,domain=cicispizza.com (easyprivacy.txt: 10401) +.doubleclick.net/activityi;src= + +#ab2p-unblock-dnt-R178 +{+client-header-tagger{ab2p-unblock-dnt-R178} \ +} +# @@||localytics.com^*/localytics.min.js$domain=ciscospark.com|citymapper.com (easyprivacy.txt: 10533) +.localytics.com/.*/localytics\.min\.js + +#ab2p-unblock-dnt-R179 +{+client-header-tagger{ab2p-unblock-dnt-R179} \ +} +# @@||mpsnare.iesnare.com/snare.js$domain=citi.com|citibank.com|enmasse.com|login.skype.com (easyprivacy.txt: 10582) +.mpsnare.iesnare.com/snare\.js + +#ab2p-unblock-dnt-R180 +{+client-header-tagger{ab2p-unblock-dnt-R180} \ +} +# @@||sundaysky.com/coastal/embedded/sundaysky.js$domain=clearlycontacts.ca (easyprivacy.txt: 10703) +.sundaysky.com/coastal/embedded/sundaysky\.js + +#ab2p-unblock-dnt-R181 +{+client-header-tagger{ab2p-unblock-dnt-R181} \ +} +# @@||ad.de.doubleclick.net/imp;$object-subrequest,domain=clipfish.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10853) +.ad.de.doubleclick.net/imp; + +#ab2p-unblock-dnt-R182 +{+client-header-tagger{ab2p-unblock-dnt-R182} \ +} +# @@||cloudflare.com/analytics?$domain=cloudflare.com (easyprivacy.txt: 10357) +.cloudflare.com/analytics\? + +#ab2p-unblock-dnt-R9 +{+client-header-tagger{ab2p-unblock-dnt-R9} \ +} +# @@||go-mpulse.net/boomerang/$script,domain=cnet.com (easyprivacy.txt: 10456) +.go-mpulse.net/boomerang/ +# @@||dw.cbsi.com/js/dw.js$domain=cnet.com (easyprivacy.txt: 10405) +.dw.cbsi.com/js/dw\.js +# @@||cbsistatic.com^*/tealium.js$domain=cnet.com (easyprivacy.txt: 10337) +.cbsistatic.com/.*/tealium\.js +# @@||cbsistatic.com^*/google-analytics.js$domain=cnet.com (easyprivacy.txt: 10336) +.cbsistatic.com/.*/google-analytics\.js + +#ab2p-unblock-dnt-R183 +{+client-header-tagger{ab2p-unblock-dnt-R183} \ +} +# @@||dw.cbsi.com/anonc.js$domain=cnet.com|gamespot.com (easyprivacy.txt: 10404) +.dw.cbsi.com/anonc\.js + +#ab2p-unblock-dnt-R184 +{+client-header-tagger{ab2p-unblock-dnt-R184} \ +} +# @@||turner.com^*/aspenanalytics.xml$domain=cnn.com (easyprivacy.txt: 10736) +.turner.com/.*/aspenanalytics\.xml +# @@||turner.com/cnn/*/video/chartbeat.js$domain=cnn.com (easyprivacy.txt: 10735) +.turner.com/cnn/.*/video/chartbeat\.js + +#ab2p-unblock-dnt-R185 +{+client-header-tagger{ab2p-unblock-dnt-R185} \ +} +# @@||static.rpxnow.com/js/lib/rpx.js$domain=colbertnation.com|thedailyshow.com (easyprivacy.txt: 10698) +.static.rpxnow.com/js/lib/rpx\.js + +#ab2p-unblock-dnt-R186 +{+client-header-tagger{ab2p-unblock-dnt-R186} \ +} +# @@||gorillanation.com/js/triggertag.js$domain=comingsoon.net|playstationlifestyle.net (easyprivacy.txt: 10475) +.gorillanation.com/js/triggertag\.js + +#ab2p-unblock-dnt-R187 +{+client-header-tagger{ab2p-unblock-dnt-R187} \ +} +# @@||cxense.com/cx.js$domain=common.tv2.dk (easyprivacy.txt: 10985) +.cxense.com/cx\.js + +#ab2p-unblock-dnt-R188 +{+client-header-tagger{ab2p-unblock-dnt-R188} \ +} +# @@||cdn.optimizely.com/js/*.js$domain=compassion.com|creditsesame.com|forbes.com|freeshipping.com|heroku.com|hotukdeals.com|imageshack.com|lifelock.com|malwarebytes.org|policymic.com|ricardo.ch|techrepublic.com|zdnet.com (easyprivacy.txt: 10343) +.cdn.optimizely.com/js/.*\.js + +#ab2p-unblock-dnt-R189 +{+client-header-tagger{ab2p-unblock-dnt-R189} \ +} +# @@||imrworldwide.com/v60.js$domain=corriereadriatico.it|ilgazzettino.it|ilmattino.it|ilmessaggero.it|leggo.it|quotidianodipuglia.it (easyprivacy.txt: 11028) +.imrworldwide.com/v60\.js +# @@||codicefl.shinystat.com/cgi-bin/getswf.cgi?*PolymediaShow$object-subrequest,domain=corriereadriatico.it|ilgazzettino.it|ilmattino.it|ilmessaggero.it|leggo.it|quotidianodipuglia.it (easyprivacy.txt: 11024) +.codicefl.shinystat.com/cgi-bin/getswf\.cgi\?.*PolymediaShow + +#ab2p-unblock-dnt-R190 +{+client-header-tagger{ab2p-unblock-dnt-R190} \ +} +# @@||cqcounter.com^$domain=cqcounter.com (easyprivacy.txt: 10372) +.cqcounter.com + +#ab2p-unblock-dnt-R191 +{+client-header-tagger{ab2p-unblock-dnt-R191} \ +} +# @@||ccom-cdn.com/assets/img/clear.gif?ccom_md5=$domain=credit.com (easyprivacy.txt: 10338) +.ccom-cdn.com/assets/img/clear\.gif\?ccom_md5= + +#ab2p-unblock-dnt-R192 +{+client-header-tagger{ab2p-unblock-dnt-R192} \ +} +# @@||newsinc.com^*/getPlacements.js?pid=$xmlhttprequest,domain=csmonitor.com (easyprivacy.txt: 10601) +.newsinc.com/.*/getPlacements\.js\?pid= +# @@||dmeserv.newsinc.com/dpid/*/PPEmbed.js$domain=csmonitor.com (easyprivacy.txt: 10399) +.dmeserv.newsinc.com/dpid/.*/PPEmbed\.js + +#ab2p-unblock-dnt-R193 +{+client-header-tagger{ab2p-unblock-dnt-R193} \ +} +# @@||media.flixfacts.com/js/loader.js$domain=currys.co.uk (easyprivacy.txt: 10555) +.media.flixfacts.com/js/loader\.js +# @@||media.flixcar.com/delivery/js/inpage/*/mpn/$script,domain=currys.co.uk (easyprivacy.txt: 10554) +.media.flixcar.com/delivery/js/inpage/.*/mpn/ +# @@||d396ihyrqc81w.cloudfront.net^$domain=currys.co.uk (easyprivacy.txt: 10385) +.d396ihyrqc81w.cloudfront.net + +#ab2p-unblock-dnt-R194 +{+client-header-tagger{ab2p-unblock-dnt-R194} \ +} +# @@||77.91.202.130/js/20050/xiti.js$domain=custojusto.pt (easyprivacy.txt: 11050) +.77.91.202.130/js/20050/xiti\.js + +#ab2p-unblock-dnt-R11 +{+client-header-tagger{ab2p-unblock-dnt-R11} \ +} +# @@||telize.com/geoip?$script,domain=dailymotion.com (easyprivacy.txt: 10718) +.telize.com/geoip\? + +#ab2p-unblock-dnt-R195 +{+client-header-tagger{ab2p-unblock-dnt-R195} \ +} +# @@||darmstadt.ui-traffic.de/mobile/webapp/bower_components/heatmap.js$domain=darmstadt.ui-traffic.de (easyprivacy.txt: 10868) +.darmstadt.ui-traffic.de/mobile/webapp/bower_components/heatmap\.js + +#ab2p-unblock-dnt-R196 +{+client-header-tagger{ab2p-unblock-dnt-R196} \ +} +# @@||amazonaws.com^*-google-analytics.js$domain=dcard.tw (easyprivacy.txt: 10960) +.amazonaws.com/.*-google-analytics\.js + +#ab2p-unblock-dnt-R197 +{+client-header-tagger{ab2p-unblock-dnt-R197} \ +} +# @@||playwire.com/bolt/js/zeus/$script,domain=desi-tashan.com (easyprivacy.txt: 11058) +.playwire.com/bolt/js/zeus/ + +#ab2p-unblock-dnt-R198 +{+client-header-tagger{ab2p-unblock-dnt-R198} \ +} +# @@||wrap.tradedoubler.com/wrap?$script,domain=desigual.com (easyprivacy.txt: 10801) +.wrap.tradedoubler.com/wrap\? + +#ab2p-unblock-dnt-R199 +{+client-header-tagger{ab2p-unblock-dnt-R199} \ +} +# @@||googletagmanager.com/gtm.js?$domain=desigual.com|drumstick.com|ebuyer.com|elevationscu.com|gamepix.com|google.com|keygames.com|optus.com.au|rebtel.com|rockstargames.com|rollingstone.com|rozetka.com.ua|sixflags.com|support.amd.com|talktalk.co.uk|techradar.com|toto.co.jp|usmagazine.com (easyprivacy.txt: 10473) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-dnt-R200 +{+client-header-tagger{ab2p-unblock-dnt-R200} \ +} +# @@||google-analytics.com/plugins/ua/ec.js$domain=desigual.com|rebtel.com (easyprivacy.txt: 10466) +.google-analytics.com/plugins/ua/ec\.js + +#ab2p-unblock-dnt-R201 +{+client-header-tagger{ab2p-unblock-dnt-R201} \ +} +# @@||amazonaws.com/searchdiscovery-satellite-production/$domain=dice.com (easyprivacy.txt: 10267) +.amazonaws.com/searchdiscovery-satellite-production/ + +#ab2p-unblock-dnt-R202 +{+client-header-tagger{ab2p-unblock-dnt-R202} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=diejugendherbergen.de (easyprivacy.txt: 10914) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-dnt-R203 +{+client-header-tagger{ab2p-unblock-dnt-R203} \ +} +# @@||omnitagjs.com/fo-api/omniTag?$xmlhttprequest,domain=dl.free.fr (easyprivacy.txt: 10942) +.omnitagjs.com/fo-api/omniTag\? +# @@||omnitagjs.com/fo-*/captcha/$domain=dl.free.fr (easyprivacy.txt: 10941) +.omnitagjs.com/fo-.*/captcha/ +# @@||adyoulike.omnitagjs.com^$script,domain=dl.free.fr (easyprivacy.txt: 10932) +.adyoulike.omnitagjs.com + +#ab2p-unblock-dnt-R204 +{+client-header-tagger{ab2p-unblock-dnt-R204} \ +} +# @@||picsearch.com/js/comscore.js$domain=dn.se (easyprivacy.txt: 11083) +.picsearch.com/js/comscore\.js + +#ab2p-unblock-dnt-R205 +{+client-header-tagger{ab2p-unblock-dnt-R205} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=dnf.qq.com (easyprivacy.txt: 10970) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-dnt-R206 +{+client-header-tagger{ab2p-unblock-dnt-R206} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=doverdowns.com|lifehack.org|maxiclimber.com|merriam-webster.com|toto.co.jp|tripinsurance.ru|vimeo.com (easyprivacy.txt: 10700) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-dnt-R207 +{+client-header-tagger{ab2p-unblock-dnt-R207} \ +} +# @@/cdn-cgi/pe/bag2?*yieldbot.intent.js$domain=droid-life.com (easyprivacy.txt: 10248) +/(.*/)?cdn-cgi/pe/bag2\?.*yieldbot\.intent\.js +# @@/cdn-cgi/pe/bag2?*skimlinks.js$domain=droid-life.com (easyprivacy.txt: 10246) +/(.*/)?cdn-cgi/pe/bag2\?.*skimlinks\.js +# @@/cdn-cgi/pe/bag2?*googleadservices.com$domain=droid-life.com (easyprivacy.txt: 10240) +/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com + +#ab2p-unblock-dnt-R208 +{+client-header-tagger{ab2p-unblock-dnt-R208} \ +} +# @@||dtdc.in/tracking/tracking_results_$subdocument,domain=dtdc.com (easyprivacy.txt: 10403) +.dtdc.in/tracking/tracking_results_ + +#ab2p-unblock-dnt-R209 +{+client-header-tagger{ab2p-unblock-dnt-R209} \ +} +# @@||a.visualrevenue.com/vrs.js$domain=ebaumsworld.com|nydailynews.com (easyprivacy.txt: 10250) +.a.visualrevenue.com/vrs\.js + +#ab2p-unblock-dnt-R210 +{+client-header-tagger{ab2p-unblock-dnt-R210} \ +} +# @@||track.mybloglog.com/js/jsserv.php?$domain=egotastic.com (easyprivacy.txt: 10727) +.track.mybloglog.com/js/jsserv\.php\? + +#ab2p-unblock-dnt-R14 +{+client-header-tagger{ab2p-unblock-dnt-R14} \ +} +# @@||scripts.demandmedia.com/wm.js$domain=ehow.com (easyprivacy.txt: 10674) +.scripts.demandmedia.com/wm\.js + +#ab2p-unblock-dnt-R211 +{+client-header-tagger{ab2p-unblock-dnt-R211} \ +} +# @@||mxpnl.com/libs/mixpanel-*.min.js$domain=eloan.co.il (easyprivacy.txt: 11011) +.mxpnl.com/libs/mixpanel-.*\.min\.js +# @@||mixpanel.com/track/?data=$xmlhttprequest,domain=eloan.co.il (easyprivacy.txt: 11010) +.mixpanel.com/track/\?data= + +#ab2p-unblock-dnt-R212 +{+client-header-tagger{ab2p-unblock-dnt-R212} \ +} +# @@||email.1und1.de/appsuite/api/*/1and1_integration/tracking/tracking.js$domain=email.1und1.de (easyprivacy.txt: 10870) +.email.1und1.de/appsuite/api/.*/1and1_integration/tracking/tracking\.js + +#ab2p-unblock-dnt-R213 +{+client-header-tagger{ab2p-unblock-dnt-R213} \ +} +# @@||aolcdn.com/omniunih_int.js$domain=engadget.com (easyprivacy.txt: 10962) +.aolcdn.com/omniunih_int\.js +# @@||aolcdn.com/js/mg2.js$domain=engadget.com (easyprivacy.txt: 10961) +.aolcdn.com/js/mg2\.js +# @@||blogsmithmedia.com^*/gravity-beacon.js$domain=engadget.com (easyprivacy.txt: 10311) +.blogsmithmedia.com/.*/gravity-beacon\.js + +#ab2p-unblock-dnt-R214 +{+client-header-tagger{ab2p-unblock-dnt-R214} \ +} +# @@||yandex.ru/metrika/watch.js$domain=engwords.net (easyprivacy.txt: 10807) +.yandex.ru/metrika/watch\.js + +#ab2p-unblock-dnt-R215 +{+client-header-tagger{ab2p-unblock-dnt-R215} \ +} +# @@||estat.com/js/*.js?$domain=entertainmentwise.com (easyprivacy.txt: 10425) +.estat.com/js/.*\.js\? + +#ab2p-unblock-dnt-R216 +{+client-header-tagger{ab2p-unblock-dnt-R216} \ +} +# @@||112.2o7.net/b/ss/$image,domain=espn.com.br (easyprivacy.txt: 10822) +.112.2o7.net/b/ss/ + +#ab2p-unblock-dnt-R217 +{+client-header-tagger{ab2p-unblock-dnt-R217} \ +} +# @@||espncdn.com/combiner/*/foresee/$script,domain=espn.go.com (easyprivacy.txt: 10424) +.espncdn.com/combiner/.*/foresee/ +# @@||espncdn.com/combiner/*/chartbeat/$script,domain=espn.go.com (easyprivacy.txt: 10423) +.espncdn.com/combiner/.*/chartbeat/ + +#ab2p-unblock-dnt-R218 +{+client-header-tagger{ab2p-unblock-dnt-R218} \ +} +# @@||imrworldwide.com^*/ggce354.swf$domain=espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com (easyprivacy.txt: 10500) +.imrworldwide.com/.*/ggce354\.swf + +#ab2p-unblock-dnt-R219 +{+client-header-tagger{ab2p-unblock-dnt-R219} \ +} +# @@||visiblemeasures.com/crossdomain.xml$object-subrequest,domain=espn.go.com|live.indiatimes.com (easyprivacy.txt: 10766) +.visiblemeasures.com/crossdomain\.xml + +#ab2p-unblock-dnt-R220 +{+client-header-tagger{ab2p-unblock-dnt-R220} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=europafm.com (easyprivacy.txt: 10496) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-dnt-R221 +{+client-header-tagger{ab2p-unblock-dnt-R221} \ +} +# @@||vast.com/vimpressions.js$domain=everycarlisted.com (easyprivacy.txt: 10755) +.vast.com/vimpressions\.js + +#ab2p-unblock-dnt-R222 +{+client-header-tagger{ab2p-unblock-dnt-R222} \ +} +# @@||crowdscience.com/start-$script,domain=everydayhealth.com (easyprivacy.txt: 10376) +.crowdscience.com/start- +# @@||crowdscience.com/max-$script,domain=everydayhealth.com (easyprivacy.txt: 10375) +.crowdscience.com/max- + +#ab2p-unblock-dnt-R223 +{+client-header-tagger{ab2p-unblock-dnt-R223} \ +} +# @@||metrics.el-mundo.net/b/ss/$image,domain=expansion.com (easyprivacy.txt: 11076) +.metrics.el-mundo.net/b/ss/ + +#ab2p-unblock-dnt-R16 +{+client-header-tagger{ab2p-unblock-dnt-R16} \ +} +# @@||vupload-edge.facebook.com/ajax/video/upload/$xmlhttprequest,domain=facebook.com (easyprivacy.txt: 10772) +.vupload-edge.facebook.com/ajax/video/upload/ + +#ab2p-unblock-dnt-R224 +{+client-header-tagger{ab2p-unblock-dnt-R224} \ +} +# @@||maxmind.com^*/geoip2.js$domain=fallout4.com|metronews.ca|mtv.com.lb|teslamotors.com (easyprivacy.txt: 10551) +.maxmind.com/.*/geoip2\.js + +#ab2p-unblock-dnt-R225 +{+client-header-tagger{ab2p-unblock-dnt-R225} \ +} +# @@||googletagmanager.com/gtm.js?$domain=feex.co.il|reshet.tv (easyprivacy.txt: 11007) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-dnt-R226 +{+client-header-tagger{ab2p-unblock-dnt-R226} \ +} +# @@||yimg.com/bm/lib/fi/common/*/yfi_comscore.js$domain=finance.yahoo.com (easyprivacy.txt: 10808) +.yimg.com/bm/lib/fi/common/.*/yfi_comscore\.js + +#ab2p-unblock-dnt-R227 +{+client-header-tagger{ab2p-unblock-dnt-R227} \ +} +# @@||adobetag.com^*s_code.js$domain=fnac.com (easyprivacy.txt: 10261) +.adobetag.com/.*s_code\.js + +#ab2p-unblock-dnt-R228 +{+client-header-tagger{ab2p-unblock-dnt-R228} \ +} +# @@||cloudfront.net^*/keen.min.js$domain=foodnetwork.co.uk (easyprivacy.txt: 10365) +.cloudfront.net/.*/keen\.min\.js + +#ab2p-unblock-dnt-R229 +{+client-header-tagger{ab2p-unblock-dnt-R229} \ +} +# @@||optimizely.com/js/geo.js$domain=forbes.com (easyprivacy.txt: 10619) +.optimizely.com/js/geo\.js + +#ab2p-unblock-dnt-R230 +{+client-header-tagger{ab2p-unblock-dnt-R230} \ +} +# @@||everestjs.net/static/st.js$domain=ford.com (easyprivacy.txt: 10426) +.everestjs.net/static/st\.js + +#ab2p-unblock-dnt-R231 +{+client-header-tagger{ab2p-unblock-dnt-R231} \ +} +# @@||rfdcontent.com^*/utag.loader.js$domain=forums.redflagdeals.com (easyprivacy.txt: 10664) +.rfdcontent.com/.*/utag\.loader\.js + +#ab2p-unblock-dnt-R232 +{+client-header-tagger{ab2p-unblock-dnt-R232} \ +} +# @@/cdn-cgi/pe/bag2?*googlesyndication.com%2Fpagead%2Fosd.js$domain=forwardprogressives.com (easyprivacy.txt: 10241) +/(.*/)?cdn-cgi/pe/bag2\?.*googlesyndication\.com%2Fpagead%2Fosd\.js + +#ab2p-unblock-dnt-R233 +{+client-header-tagger{ab2p-unblock-dnt-R233} \ +} +# @@||google-analytics.com/cx/api.js?experiment=$domain=foxnews.com (easyprivacy.txt: 10464) +.google-analytics.com/cx/api\.js\?experiment= + +#ab2p-unblock-dnt-R234 +{+client-header-tagger{ab2p-unblock-dnt-R234} \ +} +# @@||optimost.com^*/FT_live.js$domain=ft.com (easyprivacy.txt: 10622) +.optimost.com/.*/FT_live\.js +# @@||media.ft.com/j/optimost-$domain=ft.com (easyprivacy.txt: 10556) +.media.ft.com/j/optimost- +# @@||by.optimost.com^$domain=ft.com (easyprivacy.txt: 10324) +.by.optimost.com + +#ab2p-unblock-dnt-R235 +{+client-header-tagger{ab2p-unblock-dnt-R235} \ +} +# @@||gaanacdn.com/*_social_tracking.js$domain=gaana.com (easyprivacy.txt: 10442) +.gaanacdn.com/.*_social_tracking\.js + +#ab2p-unblock-dnt-R236 +{+client-header-tagger{ab2p-unblock-dnt-R236} \ +} +# @@||ivwextern.prosieben.de/php-bin/functions/ivwbox/ivwbox_extern.php?path=$object-subrequest,domain=galileo-videolexikon.de (easyprivacy.txt: 10886) +.ivwextern.prosieben.de/php-bin/functions/ivwbox/ivwbox_extern\.php\?path= +# @@||ivwextern.prosieben.de/crossdomain.xml$object-subrequest,domain=galileo-videolexikon.de (easyprivacy.txt: 10885) +.ivwextern.prosieben.de/crossdomain\.xml + +#ab2p-unblock-dnt-R237 +{+client-header-tagger{ab2p-unblock-dnt-R237} \ +} +# @@||dpm.demdex.net/id?$script,domain=gamespot.com (easyprivacy.txt: 10402) +.dpm.demdex.net/id\? + +#ab2p-unblock-dnt-R238 +{+client-header-tagger{ab2p-unblock-dnt-R238} \ +} +# @@||garmin.com/modern/main/js/properties/metrics/metrics$domain=garmin.com (easyprivacy.txt: 10445) +.garmin.com/modern/main/js/properties/metrics/metrics + +#ab2p-unblock-dnt-R239 +{+client-header-tagger{ab2p-unblock-dnt-R239} \ +} +# @@||uim.tifbs.net/js/$script,domain=gewinnspiel.gmx.de|gewinnspiel.web.de|top.de (easyprivacy.txt: 10922) +.uim.tifbs.net/js/ + +#ab2p-unblock-dnt-R240 +{+client-header-tagger{ab2p-unblock-dnt-R240} \ +} +# @@||adclear.teufel.de^*/acv?*&ms=http$image,domain=gewinnspiele.freenet.de (easyprivacy.txt: 10854) +.adclear.teufel.de/.*/acv\?.*&ms=http + +#ab2p-unblock-dnt-R241 +{+client-header-tagger{ab2p-unblock-dnt-R241} \ +} +# @@||trc.taboola.com/*/log/3/available|$subdocument,domain=globes.co.il (easyprivacy.txt: 10732) +.trc.taboola.com/.*/log/3/available$ + +#ab2p-unblock-dnt-R242 +{+client-header-tagger{ab2p-unblock-dnt-R242} \ +} +# @@||google.com/js/gweb/analytics/$domain=google.com (easyprivacy.txt: 10471) +.google.com/js/gweb/analytics/ + +#ab2p-unblock-dnt-R243 +{+client-header-tagger{ab2p-unblock-dnt-R243} \ +} +# @@||codicebusiness.shinystat.com/cgi-bin/getcod.cgi?$script,domain=grazia.it|panorama-auto.it|panorama.it (easyprivacy.txt: 11022) +.codicebusiness.shinystat.com/cgi-bin/getcod\.cgi\? + +#ab2p-unblock-dnt-R244 +{+client-header-tagger{ab2p-unblock-dnt-R244} \ +} +# @@||segment.io/v1/$xmlhttprequest,domain=greentoe.com|thescene.com (easyprivacy.txt: 10677) +.segment.io/v1/ +# @@||segment.io/analytics.js/*/analytics.min.js$domain=greentoe.com|thescene.com (easyprivacy.txt: 10676) +.segment.io/analytics\.js/.*/analytics\.min\.js + +#ab2p-unblock-dnt-R245 +{+client-header-tagger{ab2p-unblock-dnt-R245} \ +} +# @@||belboon.de/adtracking/$subdocument,domain=gutscheindoktor.de|preis-vergleich.tv|preismafia.com (easyprivacy.txt: 10858) +.belboon.de/adtracking/ + +#ab2p-unblock-dnt-R246 +{+client-header-tagger{ab2p-unblock-dnt-R246} \ +} +# @@||adobetag.com^*/sitecatalyst.js$domain=hbf.com.au|seattlepi.com|tv.com (easyprivacy.txt: 10259) +.adobetag.com/.*/sitecatalyst\.js + +#ab2p-unblock-dnt-R247 +{+client-header-tagger{ab2p-unblock-dnt-R247} \ +} +# @@||heatmap.it^$domain=heatmap.me (easyprivacy.txt: 10847) +.heatmap.it + +#ab2p-unblock-dnt-R248 +{+client-header-tagger{ab2p-unblock-dnt-R248} \ +} +# @@||nokia.com/b/ss/$image,domain=here.com (easyprivacy.txt: 10604) +.nokia.com/b/ss/ + +#ab2p-unblock-dnt-R249 +{+client-header-tagger{ab2p-unblock-dnt-R249} \ +} +# @@||hise.spring-tns.net^*^cp=$image,domain=hintaseuranta.fi (easyprivacy.txt: 11002) +.hise.spring-tns.net/.*[^\w%.-]cp= +# @@||hise.spring-tns.net/survey.js$domain=hintaseuranta.fi (easyprivacy.txt: 11001) +.hise.spring-tns.net/survey\.js + +#ab2p-unblock-dnt-R250 +{+client-header-tagger{ab2p-unblock-dnt-R250} \ +} +# @@||netdna-ssl.com/lib/jquery-google-analytics/jquery.google-analytics.js$domain=homepath.com (easyprivacy.txt: 10598) +.netdna-ssl.com/lib/jquery-google-analytics/jquery\.google-analytics\.js +# @@||cloudfront.net^*/jquery.google-analytics.js$domain=homepath.com (easyprivacy.txt: 10364) +.cloudfront.net/.*/jquery\.google-analytics\.js + +#ab2p-unblock-dnt-R251 +{+client-header-tagger{ab2p-unblock-dnt-R251} \ +} +# @@||whoson.com/include.js?$script,domain=hotelchocolat.com (easyprivacy.txt: 10788) +.whoson.com/include\.js\? + +#ab2p-unblock-dnt-R252 +{+client-header-tagger{ab2p-unblock-dnt-R252} \ +} +# @@||hotwirestatic.com^*/opinionLab.js$domain=hotwire.com (easyprivacy.txt: 10490) +.hotwirestatic.com/.*/opinionLab\.js + +#ab2p-unblock-dnt-R253 +{+client-header-tagger{ab2p-unblock-dnt-R253} \ +} +# @@||images-iherb.com/js/ga-pro.min2.js$domain=iherb.com (easyprivacy.txt: 10493) +.images-iherb.com/js/ga-pro\.min2\.js + +#ab2p-unblock-dnt-R254 +{+client-header-tagger{ab2p-unblock-dnt-R254} \ +} +# @@||yimg.com/mi/eu/ywa.js$domain=immowelt.de (easyprivacy.txt: 10925) +.yimg.com/mi/eu/ywa\.js + +#ab2p-unblock-dnt-R255 +{+client-header-tagger{ab2p-unblock-dnt-R255} \ +} +# @@||lp.longtailvideo.com/5/yourlytics/yourlytics-1.js$domain=indiedb.com|indieroyale.com|moddb.com (easyprivacy.txt: 10537) +.lp.longtailvideo.com/5/yourlytics/yourlytics-1\.js + +#ab2p-unblock-dnt-R256 +{+client-header-tagger{ab2p-unblock-dnt-R256} \ +} +# @@||trc.taboola.com/inncoil/log/3/available$subdocument,domain=inn.co.il (easyprivacy.txt: 11015) +.trc.taboola.com/inncoil/log/3/available + +#ab2p-unblock-dnt-R257 +{+client-header-tagger{ab2p-unblock-dnt-R257} \ +} +# @@||ad.crwdcntrl.net^$script,domain=investopedia.com (easyprivacy.txt: 10254) +.ad.crwdcntrl.net + +#ab2p-unblock-dnt-R258 +{+client-header-tagger{ab2p-unblock-dnt-R258} \ +} +# @@||stat24.com/crossdomain.xml$domain=ipla.tv (easyprivacy.txt: 11048) +.stat24.com/crossdomain\.xml + +#ab2p-unblock-dnt-R259 +{+client-header-tagger{ab2p-unblock-dnt-R259} \ +} +# @@||eloqua.com/visitor/v200/svrgp.aspx?$domain=itworld.com|juniper.net (easyprivacy.txt: 10413) +.eloqua.com/visitor/v200/svrgp\.aspx\? + +#ab2p-unblock-dnt-R260 +{+client-header-tagger{ab2p-unblock-dnt-R260} \ +} +# @@||browserscope.org/user/beacon/*?callback=$script,domain=jsperf.com (easyprivacy.txt: 10319) +.browserscope.org/user/beacon/.*\?callback= + +#ab2p-unblock-dnt-R261 +{+client-header-tagger{ab2p-unblock-dnt-R261} \ +} +# @@||kapaza.be^*/xtcore_$script,domain=kapaza.be (easyprivacy.txt: 10991) +.kapaza.be/.*/xtcore_ + +#ab2p-unblock-dnt-R262 +{+client-header-tagger{ab2p-unblock-dnt-R262} \ +} +# @@||cloudfront.net/atrk.js$domain=karnaval.com|livestream.com|luxuryrealestate.com (easyprivacy.txt: 10359) +.cloudfront.net/atrk\.js + +#ab2p-unblock-dnt-R263 +{+client-header-tagger{ab2p-unblock-dnt-R263} \ +} +# @@||vidtech.cbsinteractive.com^*/AkamaiAnalytics.swf$domain=kuathletics.com|mutigers.com|okstate.com (easyprivacy.txt: 10761) +.vidtech.cbsinteractive.com/.*/AkamaiAnalytics\.swf + +#ab2p-unblock-dnt-R264 +{+client-header-tagger{ab2p-unblock-dnt-R264} \ +} +# @@||cache2.delvenetworks.com/ps/c/v1/$object-subrequest,domain=lapresse.ca (easyprivacy.txt: 10936) +.cache2.delvenetworks.com/ps/c/v1/ +# @@||cache2.delvenetworks.com/crossdomain.xml$domain=lapresse.ca (easyprivacy.txt: 10935) +.cache2.delvenetworks.com/crossdomain\.xml + +#ab2p-unblock-dnt-R265 +{+client-header-tagger{ab2p-unblock-dnt-R265} \ +} +# @@||slatic.net/js/tracking.js$domain=lazada.co.id (easyprivacy.txt: 10686) +.slatic.net/js/tracking\.js + +#ab2p-unblock-dnt-R266 +{+client-header-tagger{ab2p-unblock-dnt-R266} \ +} +# @@||services.fliqz.com/metrics/*/applications/$object-subrequest,domain=leftlanenews.com (easyprivacy.txt: 10680) +.services.fliqz.com/metrics/.*/applications/ + +#ab2p-unblock-dnt-R267 +{+client-header-tagger{ab2p-unblock-dnt-R267} \ +} +# @@||sundaysky.com^*/default/sundaysky.js$domain=lenovo.com (easyprivacy.txt: 10705) +.sundaysky.com/.*/default/sundaysky\.js +# @@||sundaysky.com/sundaysky.js?$domain=lenovo.com (easyprivacy.txt: 10704) +.sundaysky.com/sundaysky\.js\? + +#ab2p-unblock-dnt-R268 +{+client-header-tagger{ab2p-unblock-dnt-R268} \ +} +# @@||maxmind.com/app/country.js$domain=lenovo.com|nationalgeographic.com|paypal.fr (easyprivacy.txt: 10549) +.maxmind.com/app/country\.js + +#ab2p-unblock-dnt-R269 +{+client-header-tagger{ab2p-unblock-dnt-R269} \ +} +# @@||google-analytics.com/analytics.js$domain=ligtv.com.tr (easyprivacy.txt: 11088) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R270 +{+client-header-tagger{ab2p-unblock-dnt-R270} \ +} +# @@||piwik.windit.de/piwik.js$domain=livespotting.tv (easyprivacy.txt: 10896) +.piwik.windit.de/piwik\.js + +#ab2p-unblock-dnt-R271 +{+client-header-tagger{ab2p-unblock-dnt-R271} \ +} +# @@||ooyala.com/3rdparty/comscore_$object-subrequest,domain=livetvcafe.net|player.complex.com (easyprivacy.txt: 10616) +.ooyala.com/3rdparty/comscore_ + +#ab2p-unblock-dnt-R272 +{+client-header-tagger{ab2p-unblock-dnt-R272} \ +} +# @@||google-analytics.com/plugins/ga/inpage_linkid.js$domain=lovehoney.co.uk|maxiclimber.com|opendns.com|openshift.com|vimeo.com|westernunion.at|westernunion.be|westernunion.ca|westernunion.ch|westernunion.cl|westernunion.co.jp|westernunion.co.nz|westernunion.co.uk|westernunion.co.za|westernunion.com|westernunion.com.au|westernunion.com.co|westernunion.com.hk|westernunion.com.my|westernunion.com.pe|westernunion.de|westernunion.fr|westernunion.ie|westernunion.it|westernunion.nl|westernunion.ph|westernunion.pl|westernunion.se|westernunion.sg (easyprivacy.txt: 10465) +.google-analytics.com/plugins/ga/inpage_linkid\.js + +#ab2p-unblock-dnt-R273 +{+client-header-tagger{ab2p-unblock-dnt-R273} \ +} +# @@||linezing.com^$domain=lz.taobao.com (easyprivacy.txt: 10968) +.linezing.com + +#ab2p-unblock-dnt-R274 +{+client-header-tagger{ab2p-unblock-dnt-R274} \ +} +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=m.flickr.com (easyprivacy.txt: 10447) +.geo.query.yahoo.com + +#ab2p-unblock-dnt-R275 +{+client-header-tagger{ab2p-unblock-dnt-R275} \ +} +# @@||chartbeat.com/js/chartbeat.js$domain=m.tmz.com|salon.com|zap2it.com (easyprivacy.txt: 10347) +.chartbeat.com/js/chartbeat\.js + +#ab2p-unblock-dnt-R276 +{+client-header-tagger{ab2p-unblock-dnt-R276} \ +} +# @@||cloudfront.net/opentag-*.js$domain=mackweldon.com|telegraph.co.uk (easyprivacy.txt: 10363) +.cloudfront.net/opentag-.*\.js + +#ab2p-unblock-dnt-R277 +{+client-header-tagger{ab2p-unblock-dnt-R277} \ +} +# @@||omtrdc.net/b/ss/$image,domain=macworld.com|pcworld.com|techhive.com (easyprivacy.txt: 10838) +.omtrdc.net/b/ss/ + +#ab2p-unblock-dnt-R278 +{+client-header-tagger{ab2p-unblock-dnt-R278} \ +} +# @@||thebrighttag.com/tag?site=$script,domain=macys.com (easyprivacy.txt: 10720) +.thebrighttag.com/tag\?site= +# @@||btstatic.com/tag.js$domain=macys.com (easyprivacy.txt: 10321) +.btstatic.com/tag\.js + +#ab2p-unblock-dnt-R279 +{+client-header-tagger{ab2p-unblock-dnt-R279} \ +} +# @@||mail.biz.rr.com/images/portal/blank.gif$domain=mail.biz.rr.com (easyprivacy.txt: 10544) +.mail.biz.rr.com/images/portal/blank\.gif + +#ab2p-unblock-dnt-R280 +{+client-header-tagger{ab2p-unblock-dnt-R280} \ +} +# @@||mail-www.baynote.net^$domain=mail.com (easyprivacy.txt: 10543) +.mail-www.baynote.net + +#ab2p-unblock-dnt-R281 +{+client-header-tagger{ab2p-unblock-dnt-R281} \ +} +# @@||webcenter.tiscali.it/distribuzione/_script/audience_science.js$domain=mail.tiscali.it (easyprivacy.txt: 11035) +.webcenter.tiscali.it/distribuzione/_script/audience_science\.js +# @@||tiscali.it/js/webtrends/$script,domain=mail.tiscali.it (easyprivacy.txt: 11032) +.tiscali.it/js/webtrends/ + +#ab2p-unblock-dnt-R282 +{+client-header-tagger{ab2p-unblock-dnt-R282} \ +} +# @@||stats.e-go.gr/rx.asp?$object-subrequest,domain=megatv.com (easyprivacy.txt: 11004) +.stats.e-go.gr/rx\.asp\? + +#ab2p-unblock-dnt-R283 +{+client-header-tagger{ab2p-unblock-dnt-R283} \ +} +# @@||stroeerdigitalmedia.de/praeludium/praeludium_$script,domain=menshealth.de|runnersworld.de (easyprivacy.txt: 10916) +.stroeerdigitalmedia.de/praeludium/praeludium_ + +#ab2p-unblock-dnt-R284 +{+client-header-tagger{ab2p-unblock-dnt-R284} \ +} +# @@||clicktale.net/wrb.js$domain=microsoft.com (easyprivacy.txt: 10355) +.clicktale.net/wrb\.js + +#ab2p-unblock-dnt-R285 +{+client-header-tagger{ab2p-unblock-dnt-R285} \ +} +# @@||rover.ebay.com/ar/1/75997/4?mpt=*&size=300x250&adid=$image,domain=millionenklick.web.de (easyprivacy.txt: 10902) +.rover.ebay.com/ar/1/75997/4\?mpt=.*&size=300x250&adid= + +#ab2p-unblock-dnt-R286 +{+client-header-tagger{ab2p-unblock-dnt-R286} \ +} +# @@||cloudfront.net/bugsnag-2.min.js$domain=miutcank.hu (easyprivacy.txt: 11017) +.cloudfront.net/bugsnag-2\.min\.js + +#ab2p-unblock-dnt-R287 +{+client-header-tagger{ab2p-unblock-dnt-R287} \ +} +# @@||mxpnl.com^$domain=mixpanel.com (easyprivacy.txt: 10589) +.mxpnl.com + +#ab2p-unblock-dnt-R288 +{+client-header-tagger{ab2p-unblock-dnt-R288} \ +} +# @@||classistatic.de^*/hitcounter.js$domain=mobile.de (easyprivacy.txt: 10862) +.classistatic.de/.*/hitcounter\.js + +#ab2p-unblock-dnt-R289 +{+client-header-tagger{ab2p-unblock-dnt-R289} \ +} +# @@||msecnd.net^*/site-tracker.js$domain=momondo.co.uk (easyprivacy.txt: 10583) +.msecnd.net/.*/site-tracker\.js + +#ab2p-unblock-dnt-R290 +{+client-header-tagger{ab2p-unblock-dnt-R290} \ +} +# @@||msecnd.net^*/site-tracker.js$domain=momondo.dk (easyprivacy.txt: 10986) +.msecnd.net/.*/site-tracker\.js + +#ab2p-unblock-dnt-R291 +{+client-header-tagger{ab2p-unblock-dnt-R291} \ +} +# @@||inazuma.co/campaign/js/heatmap.js$domain=monopoly.mcdonalds.co.uk (easyprivacy.txt: 10503) +.inazuma.co/campaign/js/heatmap\.js + +#ab2p-unblock-dnt-R292 +{+client-header-tagger{ab2p-unblock-dnt-R292} \ +} +# @@||c.mmcdn.net^*/flash/config/metrics.xml$domain=moshimonsters.com (easyprivacy.txt: 10326) +.c.mmcdn.net/.*/flash/config/metrics\.xml + +#ab2p-unblock-dnt-R293 +{+client-header-tagger{ab2p-unblock-dnt-R293} \ +} +# @@||bunchball.net/scripts/cookies/current/NitroCookies.js$domain=mtvema.com (easyprivacy.txt: 10323) +.bunchball.net/scripts/cookies/current/NitroCookies\.js + +#ab2p-unblock-dnt-R294 +{+client-header-tagger{ab2p-unblock-dnt-R294} \ +} +# @@||demdex.net/dest4.html?d_nsid=$subdocument,domain=multipack.com.mx (easyprivacy.txt: 10393) +.demdex.net/dest4\.html\?d_nsid= + +#ab2p-unblock-dnt-R295 +{+client-header-tagger{ab2p-unblock-dnt-R295} \ +} +# @@||imrworldwide.com/v60.js$domain=musicfeeds.com.au|nzherald.co.nz|sf.se|weatherchannel.com.au (easyprivacy.txt: 10497) +.imrworldwide.com/v60\.js + +#ab2p-unblock-dnt-R296 +{+client-header-tagger{ab2p-unblock-dnt-R296} \ +} +# @@||msn.com/c.gif?rid=$image,domain=my.msn.com (easyprivacy.txt: 10585) +.msn.com/c\.gif\?rid= +# @@||msn.com/br/chan/udc/$script,domain=my.msn.com (easyprivacy.txt: 10584) +.msn.com/br/chan/udc/ + +#ab2p-unblock-dnt-R297 +{+client-header-tagger{ab2p-unblock-dnt-R297} \ +} +# @@||nytimes.com/bi/js/tagx/tagx.js$domain=myaccount.nytimes.com (easyprivacy.txt: 10609) +.nytimes.com/bi/js/tagx/tagx\.js + +#ab2p-unblock-dnt-R298 +{+client-header-tagger{ab2p-unblock-dnt-R298} \ +} +# @@||webtrends.com^*/events.svc$subdocument,domain=mycokerewards.com (easyprivacy.txt: 10783) +.webtrends.com/.*/events\.svc + +#ab2p-unblock-dnt-R299 +{+client-header-tagger{ab2p-unblock-dnt-R299} \ +} +# @@||mycommunitynow.com/includes/JI_trafficTracking.js$domain=mycommunitynow.com (easyprivacy.txt: 10592) +.mycommunitynow.com/includes/JI_trafficTracking\.js + +#ab2p-unblock-dnt-R300 +{+client-header-tagger{ab2p-unblock-dnt-R300} \ +} +# @@||static-fra.de^*/targeting.js$domain=n-tvnow.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10913) +.static-fra.de/.*/targeting\.js +# @@||count.rtl.de/crossdomain.xml$object-subrequest,domain=n-tvnow.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10865) +.count.rtl.de/crossdomain\.xml + +#ab2p-unblock-dnt-R301 +{+client-header-tagger{ab2p-unblock-dnt-R301} \ +} +# @@||krxd.net^$script,domain=nbcnews.com (easyprivacy.txt: 10520) +.krxd.net + +#ab2p-unblock-dnt-R302 +{+client-header-tagger{ab2p-unblock-dnt-R302} \ +} +# @@||videos.nbcolympics.com/beacon?$object-subrequest,domain=nbcolympics.com (easyprivacy.txt: 10758) +.videos.nbcolympics.com/beacon\? + +#ab2p-unblock-dnt-R303 +{+client-header-tagger{ab2p-unblock-dnt-R303} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=ndr.de (easyprivacy.txt: 10880) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-dnt-R304 +{+client-header-tagger{ab2p-unblock-dnt-R304} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=netcombo.com.br (easyprivacy.txt: 10958) +.stats.g.doubleclick.net/dc\.js +# @@||siteapps.com^$script,domain=netcombo.com.br (easyprivacy.txt: 10957) +.siteapps.com +# @@||googletagmanager.com/gtm.js?$domain=netcombo.com.br (easyprivacy.txt: 10956) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-dnt-R305 +{+client-header-tagger{ab2p-unblock-dnt-R305} \ +} +# @@||monetate.net^*/entry.js$domain=newegg.com (easyprivacy.txt: 10578) +.monetate.net/.*/entry\.js +# @@||monetate.net^*/custom.js$domain=newegg.com (easyprivacy.txt: 10577) +.monetate.net/.*/custom\.js +# @@||monetate.net/trk/$script,domain=newegg.com (easyprivacy.txt: 10576) +.monetate.net/trk/ +# @@||monetate.net/img/$script,domain=newegg.com (easyprivacy.txt: 10574) +.monetate.net/img/ + +#ab2p-unblock-dnt-R306 +{+client-header-tagger{ab2p-unblock-dnt-R306} \ +} +# @@||analytics.edgekey.net/js/brightcove-csma.js$domain=news.com.au (easyprivacy.txt: 10272) +.analytics.edgekey.net/js/brightcove-csma\.js + +#ab2p-unblock-dnt-R307 +{+client-header-tagger{ab2p-unblock-dnt-R307} \ +} +# @@||google-analytics.com/analytics.js$domain=news.gamme.com.tw (easyprivacy.txt: 10963) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R308 +{+client-header-tagger{ab2p-unblock-dnt-R308} \ +} +# @@||imrworldwide.com/novms/js/2/ggcmb353.js$domain=nexttv.com.tw (easyprivacy.txt: 10966) +.imrworldwide.com/novms/js/2/ggcmb353\.js + +#ab2p-unblock-dnt-R309 +{+client-header-tagger{ab2p-unblock-dnt-R309} \ +} +# @@||nike.com/checkout/analytics/js/analyticFunctions.js$domain=nike.com (easyprivacy.txt: 10603) +.nike.com/checkout/analytics/js/analyticFunctions\.js +# @@||monetate.net/js/$domain=nike.com (easyprivacy.txt: 10575) +.monetate.net/js/ + +#ab2p-unblock-dnt-R310 +{+client-header-tagger{ab2p-unblock-dnt-R310} \ +} +# @@||ensighten.com^*/scode/$script,domain=norton.com (easyprivacy.txt: 10419) +.ensighten.com/.*/scode/ + +#ab2p-unblock-dnt-R311 +{+client-header-tagger{ab2p-unblock-dnt-R311} \ +} +# @@||google-analytics.com/analytics.js$domain=novatv.bg (easyprivacy.txt: 10954) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R312 +{+client-header-tagger{ab2p-unblock-dnt-R312} \ +} +# @@||cloudfront.net/bugsnag-$script,domain=nowtv.de (easyprivacy.txt: 10863) +.cloudfront.net/bugsnag- + +#ab2p-unblock-dnt-R313 +{+client-header-tagger{ab2p-unblock-dnt-R313} \ +} +# @@||nyandcompany.com^*/resxclsa.js$domain=nyandcompany.com (easyprivacy.txt: 10605) +.nyandcompany.com/.*/resxclsa\.js + +#ab2p-unblock-dnt-R314 +{+client-header-tagger{ab2p-unblock-dnt-R314} \ +} +# @@||yimg.com^*/ywa.js$domain=nydailynews.com|travelscream.com|yahoo.com (easyprivacy.txt: 10809) +.yimg.com/.*/ywa\.js + +#ab2p-unblock-dnt-R315 +{+client-header-tagger{ab2p-unblock-dnt-R315} \ +} +# @@||petametrics.com/*.js?$script,domain=nylon.com (easyprivacy.txt: 10629) +.petametrics.com/.*\.js\? + +#ab2p-unblock-dnt-R316 +{+client-header-tagger{ab2p-unblock-dnt-R316} \ +} +# @@||nyt.com/bi/js/tagx/tagx.js$domain=nytimes.com (easyprivacy.txt: 10608) +.nyt.com/bi/js/tagx/tagx\.js + +#ab2p-unblock-dnt-R317 +{+client-header-tagger{ab2p-unblock-dnt-R317} \ +} +# @@||static.atgsvcs.com/js/atgsvcs.js$domain=officedepot.com|shop.lego.com (easyprivacy.txt: 10695) +.static.atgsvcs.com/js/atgsvcs\.js + +#ab2p-unblock-dnt-R318 +{+client-header-tagger{ab2p-unblock-dnt-R318} \ +} +# @@||digits.com^*/sdk.js$domain=openhub.net (easyprivacy.txt: 10396) +.digits.com/.*/sdk\.js + +#ab2p-unblock-dnt-R319 +{+client-header-tagger{ab2p-unblock-dnt-R319} \ +} +# @@/cdn-cgi/pe/bag2?*piwik.js$domain=orain.org (easyprivacy.txt: 10244) +/(.*/)?cdn-cgi/pe/bag2\?.*piwik\.js +# @@/cdn-cgi/pe/bag2?*geoiplookup$xmlhttprequest,domain=orain.org (easyprivacy.txt: 10238) +/(.*/)?cdn-cgi/pe/bag2\?.*geoiplookup + +#ab2p-unblock-dnt-R320 +{+client-header-tagger{ab2p-unblock-dnt-R320} \ +} +# @@||thebrighttag.com/tag?site=$script,domain=oralb.de (easyprivacy.txt: 10921) +.thebrighttag.com/tag\?site= +# @@||btstatic.com/tag.js$domain=oralb.de (easyprivacy.txt: 10861) +.btstatic.com/tag\.js + +#ab2p-unblock-dnt-R321 +{+client-header-tagger{ab2p-unblock-dnt-R321} \ +} +# @@||analytics.ladmedia.fr/parismatch/xtcore_mod2.js$domain=parismatch.com (easyprivacy.txt: 10933) +.analytics.ladmedia.fr/parismatch/xtcore_mod2\.js + +#ab2p-unblock-dnt-R322 +{+client-header-tagger{ab2p-unblock-dnt-R322} \ +} +# @@/webtracking/*$domain=pasts.lv (easyprivacy.txt: 11041) +/(.*/)?webtracking/.* + +#ab2p-unblock-dnt-R33 +{+client-header-tagger{ab2p-unblock-dnt-R33} \ +} +# @@||paypalobjects.com^*/opinionLab.js$domain=paypal.com (easyprivacy.txt: 10625) +.paypalobjects.com/.*/opinionLab\.js + +#ab2p-unblock-dnt-R323 +{+client-header-tagger{ab2p-unblock-dnt-R323} \ +} +# @@||eloqua.com/include/livevalidation_standalone.compressed.js$domain=pbs.org (easyprivacy.txt: 10412) +.eloqua.com/include/livevalidation_standalone\.compressed\.js + +#ab2p-unblock-dnt-R324 +{+client-header-tagger{ab2p-unblock-dnt-R324} \ +} +# @@||optimize.webtrends.com^$domain=peterboroughtoday.co.uk (easyprivacy.txt: 10618) +.optimize.webtrends.com + +#ab2p-unblock-dnt-R325 +{+client-header-tagger{ab2p-unblock-dnt-R325} \ +} +# @@||pixel.quantserve.com/seg/$script,domain=photos.essence.com (easyprivacy.txt: 10640) +.pixel.quantserve.com/seg/ + +#ab2p-unblock-dnt-R326 +{+client-header-tagger{ab2p-unblock-dnt-R326} \ +} +# @@||stippleit.com/stipple.js$domain=photos.toofab.com (easyprivacy.txt: 10702) +.stippleit.com/stipple\.js + +#ab2p-unblock-dnt-R327 +{+client-header-tagger{ab2p-unblock-dnt-R327} \ +} +# @@||levexis.com/clients/planetsports/1.js$domain=planet-sports.de (easyprivacy.txt: 10890) +.levexis.com/clients/planetsports/1\.js + +#ab2p-unblock-dnt-R328 +{+client-header-tagger{ab2p-unblock-dnt-R328} \ +} +# @@||radio.com/player/javascript/tracking.js$domain=player.radio.com (easyprivacy.txt: 10655) +.radio.com/player/javascript/tracking\.js + +#ab2p-unblock-dnt-R329 +{+client-header-tagger{ab2p-unblock-dnt-R329} \ +} +# @@||adobetag.com^*/sitecatalystnew.js$domain=playstation.com (easyprivacy.txt: 10260) +.adobetag.com/.*/sitecatalystnew\.js + +#ab2p-unblock-dnt-R330 +{+client-header-tagger{ab2p-unblock-dnt-R330} \ +} +# @@||flurry.com/js/flurry.js$domain=pocketdice.io|slantnews.com (easyprivacy.txt: 10437) +.flurry.com/js/flurry\.js + +#ab2p-unblock-dnt-R331 +{+client-header-tagger{ab2p-unblock-dnt-R331} \ +} +# @@||google-analytics.com/analytics.js$domain=poiskstroek.ru (easyprivacy.txt: 11064) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R332 +{+client-header-tagger{ab2p-unblock-dnt-R332} \ +} +# @@||popeater.com/traffic/?$script,domain=popeater.com (easyprivacy.txt: 10646) +.popeater.com/traffic/\? + +#ab2p-unblock-dnt-R333 +{+client-header-tagger{ab2p-unblock-dnt-R333} \ +} +# @@||belboon.de/clickout.php?$subdocument,domain=preis-vergleich.tv (easyprivacy.txt: 10859) +.belboon.de/clickout\.php\? + +#ab2p-unblock-dnt-R334 +{+client-header-tagger{ab2p-unblock-dnt-R334} \ +} +# @@||quantcast.com/wp-content/themes/quantcast/$domain=quantcast.com (easyprivacy.txt: 10652) +.quantcast.com/wp-content/themes/quantcast/ + +#ab2p-unblock-dnt-R335 +{+client-header-tagger{ab2p-unblock-dnt-R335} \ +} +# @@||dict.rambler.ru/fcgi-bin/$xmlhttprequest,domain=rambler.ru (easyprivacy.txt: 11063) +.dict.rambler.ru/fcgi-bin/ + +#ab2p-unblock-dnt-R336 +{+client-header-tagger{ab2p-unblock-dnt-R336} \ +} +# @@||static.btbuckets.com/bt.js$domain=readwriteweb.com (easyprivacy.txt: 10696) +.static.btbuckets.com/bt\.js + +#ab2p-unblock-dnt-R337 +{+client-header-tagger{ab2p-unblock-dnt-R337} \ +} +# @@/cdn-cgi/pe/bag2?*nr-data.net$domain=realhardwarereviews.com (easyprivacy.txt: 10243) +/(.*/)?cdn-cgi/pe/bag2\?.*nr-data\.net + +#ab2p-unblock-dnt-R338 +{+client-header-tagger{ab2p-unblock-dnt-R338} \ +} +# @@||google-analytics.com/urchin.js$domain=record.xl.pt (easyprivacy.txt: 11055) +.google-analytics.com/urchin\.js + +#ab2p-unblock-dnt-R339 +{+client-header-tagger{ab2p-unblock-dnt-R339} \ +} +# @@||cdn-redfin.com^*/PixelTracking.js$domain=redfin.com (easyprivacy.txt: 10342) +.cdn-redfin.com/.*/PixelTracking\.js +# @@||cdn-redfin.com^*/page_analytics.js$domain=redfin.com (easyprivacy.txt: 10340) +.cdn-redfin.com/.*/page_analytics\.js +# @@||cdn-redfin.com^*/clicktracker.js$domain=redfin.com (easyprivacy.txt: 10339) +.cdn-redfin.com/.*/clicktracker\.js + +#ab2p-unblock-dnt-R340 +{+client-header-tagger{ab2p-unblock-dnt-R340} \ +} +# @@||sfdict.com/app/*/click_tracking.js$domain=reference.com|thesaurus.com (easyprivacy.txt: 10682) +.sfdict.com/app/.*/click_tracking\.js + +#ab2p-unblock-dnt-R341 +{+client-header-tagger{ab2p-unblock-dnt-R341} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=reshet.tv (easyprivacy.txt: 11013) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-dnt-R342 +{+client-header-tagger{ab2p-unblock-dnt-R342} \ +} +# @@||analytics.edgesuite.net/html5/akamaihtml5-min.js$domain=resignationbrewery.com|video.foxnews.com (easyprivacy.txt: 10274) +.analytics.edgesuite.net/html5/akamaihtml5-min\.js + +#ab2p-unblock-dnt-R343 +{+client-header-tagger{ab2p-unblock-dnt-R343} \ +} +# @@||analytics.rogersmedia.com/js/rdm_s_code.min.js$domain=rogersradio.ca (easyprivacy.txt: 10276) +.analytics.rogersmedia.com/js/rdm_s_code\.min\.js +# @@||analytics.rogersmedia.com/js/rdm_dil_code.full.js$domain=rogersradio.ca (easyprivacy.txt: 10275) +.analytics.rogersmedia.com/js/rdm_dil_code\.full\.js + +#ab2p-unblock-dnt-R344 +{+client-header-tagger{ab2p-unblock-dnt-R344} \ +} +# @@||loadus.exelator.com/load/?p=$script,domain=rrstar.com (easyprivacy.txt: 10532) +.loadus.exelator.com/load/\?p= + +#ab2p-unblock-dnt-R345 +{+client-header-tagger{ab2p-unblock-dnt-R345} \ +} +# @@||scorecardresearch.com/crossdomain.xml$domain=rte.ie (easyprivacy.txt: 10673) +.scorecardresearch.com/crossdomain\.xml + +#ab2p-unblock-dnt-R346 +{+client-header-tagger{ab2p-unblock-dnt-R346} \ +} +# @@||stroeerdigitalmedia.de/dynback/call.sjs?$domain=runnersworld.de (easyprivacy.txt: 10915) +.stroeerdigitalmedia.de/dynback/call\.sjs\? + +#ab2p-unblock-dnt-R347 +{+client-header-tagger{ab2p-unblock-dnt-R347} \ +} +# @@||edgesuite.net/crossdomain.xml$object-subrequest,domain=sbs.com.au (easyprivacy.txt: 10409) +.edgesuite.net/crossdomain\.xml + +#ab2p-unblock-dnt-R348 +{+client-header-tagger{ab2p-unblock-dnt-R348} \ +} +# @@||zeit.de/piwik/piwik.js$domain=schach.zeit.de (easyprivacy.txt: 10928) +.zeit.de/piwik/piwik\.js + +#ab2p-unblock-dnt-R349 +{+client-header-tagger{ab2p-unblock-dnt-R349} \ +} +# @@||pixel.fetchback.com^$subdocument,domain=sears.com (easyprivacy.txt: 10637) +.pixel.fetchback.com + +#ab2p-unblock-dnt-R350 +{+client-header-tagger{ab2p-unblock-dnt-R350} \ +} +# @@||info.seek.com/b/ss/$image,domain=seek.com.au (easyprivacy.txt: 10828) +.info.seek.com/b/ss/ + +#ab2p-unblock-dnt-R351 +{+client-header-tagger{ab2p-unblock-dnt-R351} \ +} +# @@||google-analytics.com/analytics.js$domain=skaties.lv (easyprivacy.txt: 11042) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R352 +{+client-header-tagger{ab2p-unblock-dnt-R352} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=sky.it (easyprivacy.txt: 11027) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-dnt-R353 +{+client-header-tagger{ab2p-unblock-dnt-R353} \ +} +# @@||track.adform.net/serving/scripts/trackpoint$script,domain=sky.it|ubibanca.com (easyprivacy.txt: 11033) +.track.adform.net/serving/scripts/trackpoint + +#ab2p-unblock-dnt-R41 +{+client-header-tagger{ab2p-unblock-dnt-R41} \ +} +# @@||i.s-microsoft.com/wedcs/ms.js$domain=skype.com (easyprivacy.txt: 10491) +.i.s-microsoft.com/wedcs/ms\.js + +#ab2p-unblock-dnt-R354 +{+client-header-tagger{ab2p-unblock-dnt-R354} \ +} +# @@||x5.xclicks.net/js/x3165.js$domain=small-breasted-teens.com (easyprivacy.txt: 10804) +.x5.xclicks.net/js/x3165\.js + +#ab2p-unblock-dnt-R355 +{+client-header-tagger{ab2p-unblock-dnt-R355} \ +} +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/ortc.js$domain=social.economico.pt (easyprivacy.txt: 11054) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/ortc\.js +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/IbtRealTimeSJ/IbtRealTimeSJCore.js?$domain=social.economico.pt (easyprivacy.txt: 11053) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/IbtRealTimeSJ/IbtRealTimeSJCore\.js\? +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/IbtRealTimeSJ/IbtRealTimeSJ.js?$domain=social.economico.pt (easyprivacy.txt: 11052) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/IbtRealTimeSJ/IbtRealTimeSJ\.js\? + +#ab2p-unblock-dnt-R356 +{+client-header-tagger{ab2p-unblock-dnt-R356} \ +} +# @@||spatialbuzz.com/piwik/piwik.js$domain=spatialbuzz.com (easyprivacy.txt: 10911) +.spatialbuzz.com/piwik/piwik\.js + +#ab2p-unblock-dnt-R357 +{+client-header-tagger{ab2p-unblock-dnt-R357} \ +} +# @@||googletagservices.com/tag/js/gpt.js$domain=speedtest.net (easyprivacy.txt: 10474) +.googletagservices.com/tag/js/gpt\.js + +#ab2p-unblock-dnt-R358 +{+client-header-tagger{ab2p-unblock-dnt-R358} \ +} +# @@||scorecardresearch.com/beacon.js$domain=spielen.com (easyprivacy.txt: 10905) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-dnt-R359 +{+client-header-tagger{ab2p-unblock-dnt-R359} \ +} +# @@||sbstatic.com.au/js/tealium.js$domain=sportsbet.com.au (easyprivacy.txt: 10670) +.sbstatic.com.au/js/tealium\.js + +#ab2p-unblock-dnt-R360 +{+client-header-tagger{ab2p-unblock-dnt-R360} \ +} +# @@||maxmind.com^*/geoip.js$domain=sportube.tv (easyprivacy.txt: 11030) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-dnt-R361 +{+client-header-tagger{ab2p-unblock-dnt-R361} \ +} +# @@||atdmt.com^*/direct*01$domain=sprint.com (easyprivacy.txt: 10291) +.atdmt.com/.*/direct.*01 + +#ab2p-unblock-dnt-R362 +{+client-header-tagger{ab2p-unblock-dnt-R362} \ +} +# @@||toshiba.com/images/track/track.gif?track=load&$xmlhttprequest,domain=start.toshiba.com (easyprivacy.txt: 10726) +.toshiba.com/images/track/track\.gif\?track=load& + +#ab2p-unblock-dnt-R363 +{+client-header-tagger{ab2p-unblock-dnt-R363} \ +} +# @@||view.atdmt.com^*/view/$domain=starwoodhotels.com (easyprivacy.txt: 10763) +.view.atdmt.com/.*/view/ +# @@||view.atdmt.com^*/iview/$domain=starwoodhotels.com (easyprivacy.txt: 10762) +.view.atdmt.com/.*/iview/ +# @@||ec.atdmt.com/b/$domain=starwoodhotels.com (easyprivacy.txt: 10407) +.ec.atdmt.com/b/ + +#ab2p-unblock-dnt-R364 +{+client-header-tagger{ab2p-unblock-dnt-R364} \ +} +# @@||c.microsoft.com/ms.js$domain=store.office.live.com|xbox.com (easyprivacy.txt: 10325) +.c.microsoft.com/ms\.js + +#ab2p-unblock-dnt-R365 +{+client-header-tagger{ab2p-unblock-dnt-R365} \ +} +# @@||cloudfront.net/bugsnag-*.min.js$domain=storenvy.com|tvguide.com (easyprivacy.txt: 10360) +.cloudfront.net/bugsnag-.*\.min\.js + +#ab2p-unblock-dnt-R366 +{+client-header-tagger{ab2p-unblock-dnt-R366} \ +} +# @@||stylished.de/js/vendors/emos2.js$domain=stylished.de (easyprivacy.txt: 10917) +.stylished.de/js/vendors/emos2\.js + +#ab2p-unblock-dnt-R367 +{+client-header-tagger{ab2p-unblock-dnt-R367} \ +} +# @@||ivwbox.de/2004/01/survey.js$domain=stylished.de|t-online.de (easyprivacy.txt: 10884) +.ivwbox.de/2004/01/survey\.js + +#ab2p-unblock-dnt-R368 +{+client-header-tagger{ab2p-unblock-dnt-R368} \ +} +# @@||mongoosemetrics.com/jsfiles/js-correlation/mm-rules.min.js$domain=subaru.com (easyprivacy.txt: 10579) +.mongoosemetrics.com/jsfiles/js-correlation/mm-rules\.min\.js + +#ab2p-unblock-dnt-R369 +{+client-header-tagger{ab2p-unblock-dnt-R369} \ +} +# @@||sitestat.com^*/s?*&ns_type=clickin&ns_action=view&ns__t=$image,domain=sueddeutsche.de (easyprivacy.txt: 10909) +.sitestat.com/.*/s\?.*&ns_type=clickin&ns_action=view&ns__t= + +#ab2p-unblock-dnt-R370 +{+client-header-tagger{ab2p-unblock-dnt-R370} \ +} +# @@|http://r.i.ua/s?*&p*&l$image,domain=swordmaster.org (easyprivacy.txt: 11079) +r.i.ua/s\?.*&p.*&l + +#ab2p-unblock-dnt-R371 +{+client-header-tagger{ab2p-unblock-dnt-R371} \ +} +# @@||pix04.revsci.net^*.js?$domain=t-online.de (easyprivacy.txt: 10897) +.pix04.revsci.net/.*\.js\? +# @@||js.revsci.net/gateway/gw.js?$domain=t-online.de (easyprivacy.txt: 10889) +.js.revsci.net/gateway/gw\.js\? +# @@||a.visualrevenue.com/vrs.js$domain=t-online.de (easyprivacy.txt: 10851) +.a.visualrevenue.com/vrs\.js + +#ab2p-unblock-dnt-R372 +{+client-header-tagger{ab2p-unblock-dnt-R372} \ +} +# @@||cxense.com/cx.js$domain=tagesanzeiger.ch (easyprivacy.txt: 10867) +.cxense.com/cx\.js + +#ab2p-unblock-dnt-R373 +{+client-header-tagger{ab2p-unblock-dnt-R373} \ +} +# @@||guim.co.uk/flash/video/embedded/player-$object,domain=thedailywh.at (easyprivacy.txt: 10479) +.guim.co.uk/flash/video/embedded/player- + +#ab2p-unblock-dnt-R374 +{+client-header-tagger{ab2p-unblock-dnt-R374} \ +} +# @@||cloudfront.net/mngr/$script,domain=theladbible.com (easyprivacy.txt: 10362) +.cloudfront.net/mngr/ + +#ab2p-unblock-dnt-R375 +{+client-header-tagger{ab2p-unblock-dnt-R375} \ +} +# @@||reinvigorate.net/re_.js$domain=thenounproject.com (easyprivacy.txt: 10661) +.reinvigorate.net/re_\.js + +#ab2p-unblock-dnt-R376 +{+client-header-tagger{ab2p-unblock-dnt-R376} \ +} +# @@||adobetag.com/d2/$script,domain=thestar.com (easyprivacy.txt: 10257) +.adobetag.com/d2/ + +#ab2p-unblock-dnt-R377 +{+client-header-tagger{ab2p-unblock-dnt-R377} \ +} +# @@||t.st/video/js/kGoogleAnalytics.js?$domain=thestreet.com (easyprivacy.txt: 10708) +.t.st/video/js/kGoogleAnalytics\.js\? + +#ab2p-unblock-dnt-R378 +{+client-header-tagger{ab2p-unblock-dnt-R378} \ +} +# @@||adobetag.com/d2/telecomitalia/live/Aggregato119TIM.js$domain=tim.it (easyprivacy.txt: 11019) +.adobetag.com/d2/telecomitalia/live/Aggregato119TIM\.js + +#ab2p-unblock-dnt-R379 +{+client-header-tagger{ab2p-unblock-dnt-R379} \ +} +# @@||wp.com^*/time-tracking.js?$domain=time.com (easyprivacy.txt: 10800) +.wp.com/.*/time-tracking\.js\? +# @@||wp.com/_static/*/vip-analytics.js?$domain=time.com (easyprivacy.txt: 10799) +.wp.com/_static/.*/vip-analytics\.js\? + +#ab2p-unblock-dnt-R380 +{+client-header-tagger{ab2p-unblock-dnt-R380} \ +} +# @@||pp-serve.newsinc.com^*/unitsdata.js?$domain=timesfreepress.com (easyprivacy.txt: 10647) +.pp-serve.newsinc.com/.*/unitsdata\.js\? +# @@||dmeserv.newsinc.com^*/dynamicWidgets.js$domain=timesfreepress.com (easyprivacy.txt: 10400) +.dmeserv.newsinc.com/.*/dynamicWidgets\.js + +#ab2p-unblock-dnt-R381 +{+client-header-tagger{ab2p-unblock-dnt-R381} \ +} +# @@||bestofmedia.com/sfp/js/minified/testedJs/xtClick.min.js?$domain=tomshardware.com (easyprivacy.txt: 10306) +.bestofmedia.com/sfp/js/minified/testedJs/xtClick\.min\.js\? + +#ab2p-unblock-dnt-R382 +{+client-header-tagger{ab2p-unblock-dnt-R382} \ +} +# @@||googletagmanager.com/gtm.js?id=$domain=tradera.com (easyprivacy.txt: 11082) +.googletagmanager.com/gtm\.js\?id= +# @@||google-analytics.com/analytics.js$domain=tradera.com (easyprivacy.txt: 11081) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R383 +{+client-header-tagger{ab2p-unblock-dnt-R383} \ +} +# @@||gemius.pl/gplayer.js$domain=tsn.ua (easyprivacy.txt: 11093) +.gemius.pl/gplayer\.js +# @@||bemobile.ua/lib/lib.js$domain=tsn.ua (easyprivacy.txt: 11092) +.bemobile.ua/lib/lib\.js + +#ab2p-unblock-dnt-R384 +{+client-header-tagger{ab2p-unblock-dnt-R384} \ +} +# @@||wrating.com/a1.js$domain=tudou.com|ynet.com (easyprivacy.txt: 10977) +.wrating.com/a1\.js + +#ab2p-unblock-dnt-R385 +{+client-header-tagger{ab2p-unblock-dnt-R385} \ +} +# @@||google-analytics.com/analytics.js$domain=tv3play.no (easyprivacy.txt: 11044) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R386 +{+client-header-tagger{ab2p-unblock-dnt-R386} \ +} +# @@||kropka.onet.pl^*/onet.js$domain=tvnwarszawa.pl (easyprivacy.txt: 11047) +.kropka.onet.pl/.*/onet\.js + +#ab2p-unblock-dnt-R387 +{+client-header-tagger{ab2p-unblock-dnt-R387} \ +} +# @@||hj.flxpxl.com^*.js?r=*&m=*&a=$domain=twitch.tv (easyprivacy.txt: 10485) +.hj.flxpxl.com/.*\.js\?r=.*&m=.*&a= + +#ab2p-unblock-dnt-R388 +{+client-header-tagger{ab2p-unblock-dnt-R388} \ +} +# @@||twimg.com/googleanalytics/analytics.js$script,domain=twitter.com (easyprivacy.txt: 10737) +.twimg.com/googleanalytics/analytics\.js + +#ab2p-unblock-dnt-R389 +{+client-header-tagger{ab2p-unblock-dnt-R389} \ +} +# @@||mmi.bemobile.ua/lib/lib.js$domain=uatoday.tv (easyprivacy.txt: 10573) +.mmi.bemobile.ua/lib/lib\.js + +#ab2p-unblock-dnt-R390 +{+client-header-tagger{ab2p-unblock-dnt-R390} \ +} +# @@||usps.com/m/js/tracking.js$domain=usps.com (easyprivacy.txt: 10744) +.usps.com/m/js/tracking\.js + +#ab2p-unblock-dnt-R391 +{+client-header-tagger{ab2p-unblock-dnt-R391} \ +} +# @@||vanclimg.com/js.ashx?*/google-analytics.js$domain=vancl.com (easyprivacy.txt: 10975) +.vanclimg.com/js\.ashx\?.*/google-analytics\.js + +#ab2p-unblock-dnt-R392 +{+client-header-tagger{ab2p-unblock-dnt-R392} \ +} +# @@||google-analytics.com/analytics.js$domain=vd.nl (easyprivacy.txt: 10990) +.google-analytics.com/analytics\.js + +#ab2p-unblock-dnt-R393 +{+client-header-tagger{ab2p-unblock-dnt-R393} \ +} +# @@||analytics.edgesuite.net/config/beacon-*.xml$domain=video.foxnews.com (easyprivacy.txt: 10273) +.analytics.edgesuite.net/config/beacon-.*\.xml + +#ab2p-unblock-dnt-R394 +{+client-header-tagger{ab2p-unblock-dnt-R394} \ +} +# @@||repstatic.it^*/Nielsen.js$domain=video.repubblica.it (easyprivacy.txt: 11031) +.repstatic.it/.*/Nielsen\.js + +#ab2p-unblock-dnt-R395 +{+client-header-tagger{ab2p-unblock-dnt-R395} \ +} +# @@||pixel.condenastdigital.com/sparrow.min.js$domain=video.wired.com (easyprivacy.txt: 10634) +.pixel.condenastdigital.com/sparrow\.min\.js + +#ab2p-unblock-dnt-R396 +{+client-header-tagger{ab2p-unblock-dnt-R396} \ +} +# @@||mediaite.com/decor/javascript/magnify_stats.js$domain=videos.mediaite.com (easyprivacy.txt: 10558) +.mediaite.com/decor/javascript/magnify_stats\.js + +#ab2p-unblock-dnt-R397 +{+client-header-tagger{ab2p-unblock-dnt-R397} \ +} +# @@||metrics-api.librato.com/v1/metrics$xmlhttprequest,domain=virginamerica.com (easyprivacy.txt: 10560) +.metrics-api.librato.com/v1/metrics + +#ab2p-unblock-dnt-R398 +{+client-header-tagger{ab2p-unblock-dnt-R398} \ +} +# @@||getsmartcontent.com/gsc.js$domain=visitpa.com (easyprivacy.txt: 10453) +.getsmartcontent.com/gsc\.js +# @@||getsmartcontent.com/gateway/?callback$domain=visitpa.com (easyprivacy.txt: 10452) +.getsmartcontent.com/gateway/\?callback + +#ab2p-unblock-dnt-R399 +{+client-header-tagger{ab2p-unblock-dnt-R399} \ +} +# @@||demandbase.com^*/ip.json?$xmlhttprequest,domain=vmware.com (easyprivacy.txt: 10392) +.demandbase.com/.*/ip\.json\? + +#ab2p-unblock-dnt-R400 +{+client-header-tagger{ab2p-unblock-dnt-R400} \ +} +# @@||a.wikia-beacon.com/__track/view?v=v1&c=*&lc=de&lid=62&x=devroniplag&y=$script,domain=vroniplag.wikia.com (easyprivacy.txt: 10852) +.a.wikia-beacon.com/__track/view\?v=v1&c=.*&lc=de&lid=62&x=devroniplag&y= + +#ab2p-unblock-dnt-R401 +{+client-header-tagger{ab2p-unblock-dnt-R401} \ +} +# @@||nymag.com/vltr/scripts/analytics.js$domain=vulture.com (easyprivacy.txt: 10607) +.nymag.com/vltr/scripts/analytics\.js + +#ab2p-unblock-dnt-R402 +{+client-header-tagger{ab2p-unblock-dnt-R402} \ +} +# @@||walmartimages.com/webanalytics/wmStat/wmStat.jsp$domain=walmart.com (easyprivacy.txt: 10778) +.walmartimages.com/webanalytics/wmStat/wmStat\.jsp +# @@||walmartimages.com/webanalytics/omniture/omniture.jsp$domain=walmart.com (easyprivacy.txt: 10777) +.walmartimages.com/webanalytics/omniture/omniture\.jsp +# @@||sellpoint.net/smart_button/$script,domain=walmart.com (easyprivacy.txt: 10678) +.sellpoint.net/smart_button/ +# @@||hlserve.com/beacon?$domain=walmart.com (easyprivacy.txt: 10486) +.hlserve.com/beacon\? +# @@||akamai.net^*/omniture.jsp$script,domain=walmart.com (easyprivacy.txt: 10263) +.akamai.net/.*/omniture\.jsp + +#ab2p-unblock-dnt-R403 +{+client-header-tagger{ab2p-unblock-dnt-R403} \ +} +# @@||washingtonpost.com/wp-stat/echo2/canvases/$script,domain=washingtonpost.com (easyprivacy.txt: 10779) +.washingtonpost.com/wp-stat/echo2/canvases/ +# @@||d2pe20ur0h0p8p.cloudfront.net/identity/*/wapo_jskit_addon.js$domain=washingtonpost.com (easyprivacy.txt: 10384) +.d2pe20ur0h0p8p.cloudfront.net/identity/.*/wapo_jskit_addon\.js +# @@||d2pe20ur0h0p8p.cloudfront.net/identity/*/wapo_identity_full.js$domain=washingtonpost.com (easyprivacy.txt: 10383) +.d2pe20ur0h0p8p.cloudfront.net/identity/.*/wapo_identity_full\.js +# @@||amazonaws.com/visitorsegment/shared/resources/$script,domain=washingtonpost.com (easyprivacy.txt: 10268) +.amazonaws.com/visitorsegment/shared/resources/ + +#ab2p-unblock-dnt-R404 +{+client-header-tagger{ab2p-unblock-dnt-R404} \ +} +# @@||tags.crwdcntrl.net^$script,domain=weather.com (easyprivacy.txt: 10712) +.tags.crwdcntrl.net +# @@||imwx.com/jsRollup?$script,domain=weather.com (easyprivacy.txt: 10502) +.imwx.com/jsRollup\? + +#ab2p-unblock-dnt-R405 +{+client-header-tagger{ab2p-unblock-dnt-R405} \ +} +# @@||ywxi.net/meter/produkte.web.de/$image,domain=web.de (easyprivacy.txt: 10926) +.ywxi.net/meter/produkte\.web\.de/ +# @@||scorecardresearch.com/p?$object-subrequest,domain=web.de (easyprivacy.txt: 10907) +.scorecardresearch.com/p\? +# @@||scorecardresearch.com/crossdomain.xml$object-subrequest,domain=web.de (easyprivacy.txt: 10906) +.scorecardresearch.com/crossdomain\.xml + +#ab2p-unblock-dnt-R406 +{+client-header-tagger{ab2p-unblock-dnt-R406} \ +} +# @@||wenxuecity.com/data/newscount/$image,domain=wenxuecity.com (easyprivacy.txt: 10976) +.wenxuecity.com/data/newscount/ + +#ab2p-unblock-dnt-R407 +{+client-header-tagger{ab2p-unblock-dnt-R407} \ +} +# @@||img.en25.com/eloquaimages/clients/PentonMediaInc/$image,domain=windowsitpro.com (easyprivacy.txt: 10494) +.img.en25.com/eloquaimages/clients/PentonMediaInc/ + +#ab2p-unblock-dnt-R408 +{+client-header-tagger{ab2p-unblock-dnt-R408} \ +} +# @@||ad.zanox.com/ppc/$subdocument,domain=wisedock.at|wisedock.co.uk|wisedock.com|wisedock.de|wisedock.eu (easyprivacy.txt: 10255) +.ad.zanox.com/ppc/ + +#ab2p-unblock-dnt-R409 +{+client-header-tagger{ab2p-unblock-dnt-R409} \ +} +# @@||geoplugin.net/json.gp?jsoncallback=$script,domain=worldc.am (easyprivacy.txt: 10449) +.geoplugin.net/json\.gp\?jsoncallback= + +#ab2p-unblock-dnt-R410 +{+client-header-tagger{ab2p-unblock-dnt-R410} \ +} +# @@||oms.dowjoneson.com/b/ss/$image,domain=wsj.com (easyprivacy.txt: 10837) +.oms.dowjoneson.com/b/ss/ + +#ab2p-unblock-dnt-R411 +{+client-header-tagger{ab2p-unblock-dnt-R411} \ +} +# @@||d3ujids68p6xmq.cloudfront.net^$script,domain=wwe.com (easyprivacy.txt: 10386) +.d3ujids68p6xmq.cloudfront.net + +#ab2p-unblock-dnt-R412 +{+client-header-tagger{ab2p-unblock-dnt-R412} \ +} +# @@/cdn-cgi/pe/bag2?*histats.com$domain=xrussianteens.com (easyprivacy.txt: 10242) +/(.*/)?cdn-cgi/pe/bag2\?.*histats\.com + +#ab2p-unblock-dnt-R413 +{+client-header-tagger{ab2p-unblock-dnt-R413} \ +} +# @@||s-msn.com^*/udctrack*.js$domain=ynet.com (easyprivacy.txt: 10971) +.s-msn.com/.*/udctrack.*\.js + +#ab2p-unblock-dnt-R414 +{+client-header-tagger{ab2p-unblock-dnt-R414} \ +} +# @@||paypalobjects.com^*/pixel.gif$domain=youngcons.com (easyprivacy.txt: 10626) +.paypalobjects.com/.*/pixel\.gif + +#ab2p-unblock-dnt-R415 +{+client-header-tagger{ab2p-unblock-dnt-R415} \ +} +# @@||cloudfront.net/js/reach.js$domain=zap2it.com (easyprivacy.txt: 10361) +.cloudfront.net/js/reach\.js +# @@||cloudfront.net/assets/js/comscore_beacon.js?$domain=zap2it.com (easyprivacy.txt: 10358) +.cloudfront.net/assets/js/comscore_beacon\.js\? + +#ab2p-unblock-dnt-R416 +{+client-header-tagger{ab2p-unblock-dnt-R416} \ +} +# @@||zillowstatic.com/c/*/linktrack.js$domain=zillow.com (easyprivacy.txt: 10814) +.zillowstatic.com/c/.*/linktrack\.js +# @@||tags.bluekai.com/site/*?ret=$subdocument,domain=zillow.com (easyprivacy.txt: 10711) +.tags.bluekai.com/site/.*\?ret= +# @@||js.dmtry.com/channel.js$domain=zillow.com (easyprivacy.txt: 10510) +.js.dmtry.com/channel\.js + +#ab2p-unblock-dnt-R417 +{+client-header-tagger{ab2p-unblock-dnt-R417} \ +} +# @@||ghstatic.com/images/site/zylom/scripts/google-analytics.js?$domain=zylom.com (easyprivacy.txt: 10454) +.ghstatic.com/images/site/zylom/scripts/google-analytics\.js\? + +#ab2p-unblock-elem +{-filter{ab2p-elemhide-filter} \ +} +TAG:^ab2p-unblock-elem$ +# @@||tvyo.com/player/plugins/comscorePlugin.swf?$object-subrequest (easyprivacy.txt: 11090) +.tvyo.com/player/plugins/comscorePlugin\.swf\? +# @@||turkcelltvplus.com.tr^*/google_analytics/main.js? (easyprivacy.txt: 11089) +.turkcelltvplus.com.tr/.*/google_analytics/main\.js\? +# @@||lazada.co.th/js/tracking.js (easyprivacy.txt: 11086) +.lazada.co.th/js/tracking\.js +# @@||reseguiden.se^*.siteCatalyst.js (easyprivacy.txt: 11084) +.reseguiden.se/.*\.siteCatalyst\.js +# @@||segundamano.mx^*/tealium.js (easyprivacy.txt: 11077) +.segundamano.mx/.*/tealium\.js +# @@||c5n.com^*/angulartics-google-analytics.min.js (easyprivacy.txt: 11075) +.c5n.com/.*/angulartics-google-analytics\.min\.js +# @@||widget.myrentacar.me^$script,subdocument (easyprivacy.txt: 11070) +.widget.myrentacar.me +# @@||wargag.ru/public/js/counter.js? (easyprivacy.txt: 11069) +.wargag.ru/public/js/counter\.js\? +# @@||swa.mail.ru/cgi-bin/counters?$script (easyprivacy.txt: 11068) +.swa.mail.ru/cgi-bin/counters\? +# @@||labrc.pw/advstats/$xmlhttprequest (easyprivacy.txt: 11067) +.labrc.pw/advstats/ +# @@||itv.1tv.ru/stat.php? (easyprivacy.txt: 11066) +.itv.1tv.ru/stat\.php\? +# @@||afisha.ru/proxy/videonetworkproxy.ashx?$xmlhttprequest (easyprivacy.txt: 11062) +.afisha.ru/proxy/videonetworkproxy\.ashx\? +# @@||promozone.ro/wp-content/themes/nielsen/ (easyprivacy.txt: 11060) +.promozone.ro/wp-content/themes/nielsen/ +# @@||laredoute.pt/js/byside_webcare.js (easyprivacy.txt: 11056) +.laredoute.pt/js/byside_webcare\.js +# @@||chiptec.net/skin/*/GoogleAnalyticsPlus/$script (easyprivacy.txt: 11051) +.chiptec.net/skin/.*/GoogleAnalyticsPlus/ +# @@||gemius.pl/gstream.js (easyprivacy.txt: 11046) +.gemius.pl/gstream\.js +# @@||chancro.jp/assets/lib/googleanalytics-$script (easyprivacy.txt: 11039) +.chancro.jp/assets/lib/googleanalytics- +# @@||detik.com/urchin.js (easyprivacy.txt: 11037) +.detik.com/urchin\.js +# @@||video.repubblica.it^*/nielsen.js (easyprivacy.txt: 11034) +.video.repubblica.it/.*/nielsen\.js +# @@||lastampa.it/modulo/tracciatori/js/nielsen.js (easyprivacy.txt: 11029) +.lastampa.it/modulo/tracciatori/js/nielsen\.js +# @@||corriereobjects.it^*/tracking/TrackFunctions.js (easyprivacy.txt: 11026) +.corriereobjects.it/.*/tracking/TrackFunctions\.js +# @@||corriereobjects.it^*/tracking/s_code.js (easyprivacy.txt: 11025) +.corriereobjects.it/.*/tracking/s_code\.js +# @@||beppegrillo.it/mt-static/js/ga_social_tracking.js (easyprivacy.txt: 11021) +.beppegrillo.it/mt-static/js/ga_social_tracking\.js +# @@||androidgalaxys.net/wp-content/plugins/*/google-analyticator/$script (easyprivacy.txt: 11020) +.androidgalaxys.net/wp-content/plugins/.*/google-analyticator/ +# @@||themarker.com/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11014) +.themarker.com/logger/p\.gif\? +# @@||player.flix.co.il/scripts/GoogleAnalytics.js (easyprivacy.txt: 11012) +.player.flix.co.il/scripts/GoogleAnalytics\.js +# @@||haaretz.com/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11009) +.haaretz.com/logger/p\.gif\? +# @@||haaretz.co.il/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11008) +.haaretz.co.il/logger/p\.gif\? +# @@||amazonaws.com/static.madlan.co.il/*/heatmap.json?$xmlhttprequest (easyprivacy.txt: 11006) +.amazonaws.com/static\.madlan\.co\.il/.*/heatmap\.json\? +# @@||vpro.nl/vpro/htmlplayer/0.3-snapshot/statcounter.js? (easyprivacy.txt: 10998) +.vpro.nl/vpro/htmlplayer/0\.3-snapshot/statcounter\.js\? +# @@||vplayer.ilsemedia.nl/swf/im_player.swf?$object (easyprivacy.txt: 10997) +.vplayer.ilsemedia.nl/swf/im_player\.swf\? +# @@||sport.be/javascripts/tracking/metriweb/spring.js (easyprivacy.txt: 10996) +.sport.be/javascripts/tracking/metriweb/spring\.js +# @@||sport.be.msn.com/javascripts/tracking/metriweb/spring.js (easyprivacy.txt: 10995) +.sport.be.msn.com/javascripts/tracking/metriweb/spring\.js +# @@||rtl.nl/system/s4m/xldata/get_comscore.js? (easyprivacy.txt: 10992) +.rtl.nl/system/s4m/xldata/get_comscore\.js\? +# @@||globecharge.com/images/ping.gif? (easyprivacy.txt: 10989) +.globecharge.com/images/ping\.gif\? +# @@||bundol.nl/skin/*/js/prototype/prototype.js,*/GoogleAnalyticsPlus/ (easyprivacy.txt: 10988) +.bundol.nl/skin/.*/js/prototype/prototype\.js,.*/GoogleAnalyticsPlus/ +# @@||common.tv2.dk/mpx/adobeanalytics/$script (easyprivacy.txt: 10984) +.common.tv2.dk/mpx/adobeanalytics/ +# @@||csfd.cz/log? (easyprivacy.txt: 10981) +.csfd.cz/log\? +# @@||bolha.com/js/gemius_.js? (easyprivacy.txt: 10980) +.bolha.com/js/gemius_\.js\? +# @@||adobetag.com/d2/vodafonecz/live/VodafoneCZ.js (easyprivacy.txt: 10979) +.adobetag.com/d2/vodafonecz/live/VodafoneCZ\.js +# @@||v.blog.sohu.com/dostat.do?*&n=videoList_vids&$script (easyprivacy.txt: 10974) +.v.blog.sohu.com/dostat\.do\?.*&n=videoList_vids& +# @@||uwants.com/include/*/swfaddress.js (easyprivacy.txt: 10973) +.uwants.com/include/.*/swfaddress\.js +# @@||streaming.cri.com.hk/geo.php? (easyprivacy.txt: 10972) +.streaming.cri.com.hk/geo\.php\? +# @@||on.cc/js/urchin.js (easyprivacy.txt: 10969) +.on.cc/js/urchin\.js +# @@||itc.cn/v2/asset/*/pageView.js (easyprivacy.txt: 10967) +.itc.cn/v2/asset/.*/pageView\.js +# @@||ijinshan.com/static/js/analyse.js (easyprivacy.txt: 10965) +.ijinshan.com/static/js/analyse\.js +# @@||hk.on.cc/hk/bkn/hitcount/web/js/hitCount_$~third-party,xmlhttprequest (easyprivacy.txt: 10964) +.hk.on.cc/hk/bkn/hitcount/web/js/hitCount_ +# @@||tv5monde.com/cms/javascript/*/sitestat.js (easyprivacy.txt: 10951) +.tv5monde.com/cms/javascript/.*/sitestat\.js +# @@||tv5.org/cms/javascript/*/sitestat.js (easyprivacy.txt: 10950) +.tv5.org/cms/javascript/.*/sitestat\.js +# @@||sosh.fr^*/wtinit.js (easyprivacy.txt: 10948) +.sosh.fr/.*/wtinit\.js +# @@||sosh.fr^*/wtbase.js (easyprivacy.txt: 10947) +.sosh.fr/.*/wtbase\.js +# @@||rtl.be/rtltvi/player/vp_webanalytics.js? (easyprivacy.txt: 10946) +.rtl.be/rtltvi/player/vp_webanalytics\.js\? +# @@||ricardocuisine.com/noel/js/google_analytics.js (easyprivacy.txt: 10945) +.ricardocuisine.com/noel/js/google_analytics\.js +# @@||orange.fr^*/wtinit.js (easyprivacy.txt: 10944) +.orange.fr/.*/wtinit\.js +# @@||orange.fr^*/wtbase.js (easyprivacy.txt: 10943) +.orange.fr/.*/wtbase\.js +# @@||matvpratique.com/tools/min/index.php?f=*/xtclicks.js (easyprivacy.txt: 10940) +.matvpratique.com/tools/min/index\.php\?f=.*/xtclicks\.js +# @@||lesinrocks.com/min/?f=*/chartbeat.js (easyprivacy.txt: 10939) +.lesinrocks.com/min/\?f=.*/chartbeat\.js +# @@||leboncoin.fr/js/xiti.js (easyprivacy.txt: 10938) +.leboncoin.fr/js/xiti\.js +# @@||easypari.fr^*/sitestat.js (easyprivacy.txt: 10937) +.easypari.fr/.*/sitestat\.js +# @@||boutiqueducourrier.laposte.fr/_ui/eboutique/scripts/xiti/part/xtcore.js (easyprivacy.txt: 10934) +.boutiqueducourrier.laposte.fr/_ui/eboutique/scripts/xiti/part/xtcore\.js +# @@||actiris.be^*/urchin.js (easyprivacy.txt: 10931) +.actiris.be/.*/urchin\.js +# @@||actiris.be/urchin.js (easyprivacy.txt: 10930) +.actiris.be/urchin\.js +# @@||zdf.de/zdf/flash/eplayer/player.swf?*/cgi-bin/ivw/ (easyprivacy.txt: 10927) +.zdf.de/zdf/flash/eplayer/player\.swf\?.*/cgi-bin/ivw/ +# @@||t-online.de/js/xtcore_t_online.js?$xmlhttprequest (easyprivacy.txt: 10920) +.t-online.de/js/xtcore_t_online\.js\? +# @@||swr3.de/static/swrplayer/web/plugins/ivw/ivw.js (easyprivacy.txt: 10919) +.swr3.de/static/swrplayer/web/plugins/ivw/ivw\.js +# @@||sunday.de/skin/*/googleanalytics.js$script (easyprivacy.txt: 10918) +.sunday.de/skin/.*/googleanalytics\.js +# @@||spiegel.de/layout/js/http/netmind-$script (easyprivacy.txt: 10912) +.spiegel.de/layout/js/http/netmind- +# @@||sparkasse.de/if/resources/js/urchin.js (easyprivacy.txt: 10910) +.sparkasse.de/if/resources/js/urchin\.js +# @@||s.gstat.orange.fr/lib/gs.js? (easyprivacy.txt: 10904) +.s.gstat.orange.fr/lib/gs\.js\? +# @@||rp-online.de^*/tracking/tracking.js (easyprivacy.txt: 10903) +.rp-online.de/.*/tracking/tracking\.js +# @@||renault.de/js/sitestat.js (easyprivacy.txt: 10901) +.renault.de/js/sitestat\.js +# @@||real.de/fileadmin/template/javascript/emos2.js (easyprivacy.txt: 10900) +.real.de/fileadmin/template/javascript/emos2\.js +# @@||planet-sports.de^*?f=*/emos2.js (easyprivacy.txt: 10899) +.planet-sports.de/.*\?f=.*/emos2\.js +# @@||pizza.de^*/ptrack.$script (easyprivacy.txt: 10898) +.pizza.de/.*/ptrack\. +# @@||o2.de/resource/js/tracking/ntpagetag.js (easyprivacy.txt: 10895) +.o2.de/resource/js/tracking/ntpagetag\.js +# @@||musicstore.de^*/emos2.js (easyprivacy.txt: 10894) +.musicstore.de/.*/emos2\.js +# @@||meinestadt.de^*/xiti/xtcore_$script (easyprivacy.txt: 10893) +.meinestadt.de/.*/xiti/xtcore_ +# @@||jetztspielen.de^*/EventTracker.js (easyprivacy.txt: 10888) +.jetztspielen.de/.*/EventTracker\.js +# @@||ivwextern.prosieben.de^*/ivw_flashscript.php?$script (easyprivacy.txt: 10887) +.ivwextern.prosieben.de/.*/ivw_flashscript\.php\? +# @@||ing-diba.de^*/sitestat.js (easyprivacy.txt: 10881) +.ing-diba.de/.*/sitestat\.js +# @@||hse24.de^*/emos2.js (easyprivacy.txt: 10879) +.hse24.de/.*/emos2\.js +# @@||heute.de/zdf/flash/eplayer/player.swf?*/cgi-bin/ivw/ (easyprivacy.txt: 10878) +.heute.de/zdf/flash/eplayer/player\.swf\?.*/cgi-bin/ivw/ +# @@||hermesworld.com/tracking/urchin.js (easyprivacy.txt: 10877) +.hermesworld.com/tracking/urchin\.js +# @@||hammonline.de/statistik/piwik.js (easyprivacy.txt: 10876) +.hammonline.de/statistik/piwik\.js +# @@||hach.de^*/emstrack.js (easyprivacy.txt: 10875) +.hach.de/.*/emstrack\.js +# @@||gls.de^*/emos2.js (easyprivacy.txt: 10873) +.gls.de/.*/emos2\.js +# @@||giga.de/wp-content/plugins/econa-stats/log/video-views/log.php?id=$object-subrequest (easyprivacy.txt: 10872) +.giga.de/wp-content/plugins/econa-stats/log/video-views/log\.php\?id= +# @@||getgoods.de^*/emstrack.js (easyprivacy.txt: 10871) +.getgoods.de/.*/emstrack\.js +# @@||eltern.de/min.php?*/clickTracking.js (easyprivacy.txt: 10869) +.eltern.de/min\.php\?.*/clickTracking\.js +# @@||css.ch/stats/tracker.js?$xmlhttprequest (easyprivacy.txt: 10866) +.css.ch/stats/tracker\.js\? +# @@||billiger.de/js/emos2.js (easyprivacy.txt: 10860) +.billiger.de/js/emos2\.js +# @@||alternate.de/js/emos2.js (easyprivacy.txt: 10856) +.alternate.de/js/emos2\.js +# @@||addicted-sports.com/piwik/piwik.js (easyprivacy.txt: 10855) +.addicted-sports.com/piwik/piwik\.js +# @@||walmart.com/b/ss/$image (easyprivacy.txt: 10845) +.walmart.com/b/ss/ +# @@||stat.safeway.com/b/ss/$image (easyprivacy.txt: 10844) +.stat.safeway.com/b/ss/ +# @@||smetrics.ticketmaster.com/b/ss/$image (easyprivacy.txt: 10843) +.smetrics.ticketmaster.com/b/ss/ +# @@||smetrics.target.com/b/ss/$image (easyprivacy.txt: 10842) +.smetrics.target.com/b/ss/ +# @@||simyo.de/b/ss/$image (easyprivacy.txt: 10841) +.simyo.de/b/ss/ +# @@||metrics.ticketmaster.com/b/ss/$image (easyprivacy.txt: 10836) +.metrics.ticketmaster.com/b/ss/ +# @@||metrics.thetrainline.com/b/ss/$image (easyprivacy.txt: 10835) +.metrics.thetrainline.com/b/ss/ +# @@||metrics.target.com/b/ss/$image (easyprivacy.txt: 10834) +.metrics.target.com/b/ss/ +# @@||metrics.nationwide.co.uk/b/ss/$image (easyprivacy.txt: 10833) +.metrics.nationwide.co.uk/b/ss/ +# @@||metrics.brooksbrothers.com/b/ss/$image (easyprivacy.txt: 10832) +.metrics.brooksbrothers.com/b/ss/ +# @@||metrics.ancestry.com/b/ss/$image (easyprivacy.txt: 10831) +.metrics.ancestry.com/b/ss/ +# @@||kohls.com/b/ss/$image (easyprivacy.txt: 10830) +.kohls.com/b/ss/ +# @@||kaspersky.co.uk/b/ss/$image (easyprivacy.txt: 10829) +.kaspersky.co.uk/b/ss/ +# @@||globalnews.ca/b/ss/$image (easyprivacy.txt: 10827) +.globalnews.ca/b/ss/ +# @@||fandango.com/b/ss/$image (easyprivacy.txt: 10826) +.fandango.com/b/ss/ +# @@||castorama.fr/b/ss/$image (easyprivacy.txt: 10825) +.castorama.fr/b/ss/ +# @@||amazoncustomerservice.d2.sc.omtrdc.net/b/ss/*/H.25.1/$image (easyprivacy.txt: 10824) +.amazoncustomerservice.d2.sc.omtrdc.net/b/ss/.*/H\.25\.1/ +# @@||gametrailers.com/b/ss/$object-subrequest (easyprivacy.txt: 10820) +.gametrailers.com/b/ss/ +# @@||aplus.com/p.gif?$~third-party (easyprivacy.txt: 10818) +.aplus.com/p\.gif\? +# @@||zylom.com/images/site/zylom/scripts/google-analytics.js (easyprivacy.txt: 10815) +.zylom.com/images/site/zylom/scripts/google-analytics\.js +# @@||zappos.com/js/trackingPixel/mercentTracker.js (easyprivacy.txt: 10813) +.zappos.com/js/trackingPixel/mercentTracker\.js +# @@||youtube.com/api/analytics/$~third-party (easyprivacy.txt: 10812) +.youtube.com/api/analytics/ +# @@||ynetnews.com/Common/App/Video/Gemius/gstream.js (easyprivacy.txt: 10811) +.ynetnews.com/Common/App/Video/Gemius/gstream\.js +# @@||ynet.co.il/Common/App/Video/Gemius/gstream.js (easyprivacy.txt: 10810) +.ynet.co.il/Common/App/Video/Gemius/gstream\.js +# @@||xfinity.com^*/Comcast.SelfService.Sitecatalyst.js (easyprivacy.txt: 10806) +.xfinity.com/.*/Comcast\.SelfService\.Sitecatalyst\.js +# @@||xcweather.co.uk/*/geo.php? (easyprivacy.txt: 10805) +.xcweather.co.uk/.*/geo\.php\? +# @@||www.google.*/maps/preview/log204?$xmlhttprequest (easyprivacy.txt: 10803) +.www.google.*./(.*/)?maps/preview/log204\? +# @@||wwe.com/sites/all/modules/wwe/wwe_analytics/s_wwe_code.js (easyprivacy.txt: 10802) +.wwe.com/sites/all/modules/wwe/wwe_analytics/s_wwe_code\.js +# @@||wp.com/_static/*/gaAddons.js (easyprivacy.txt: 10798) +.wp.com/_static/.*/gaAddons\.js +# @@||wp.com/_static/*/criteo.js (easyprivacy.txt: 10797) +.wp.com/_static/.*/criteo\.js +# @@||wordpress.org/wp-slimstat/assets/banner-$image,~third-party (easyprivacy.txt: 10796) +.wordpress.org/wp-slimstat/assets/banner- +# @@||wordpress.org/extend/plugins/wp-slimstat/screenshot-$image,~third-party (easyprivacy.txt: 10795) +.wordpress.org/extend/plugins/wp-slimstat/screenshot- +# @@||wired.com^*/cn-fe-stats/ (easyprivacy.txt: 10794) +.wired.com/.*/cn-fe-stats/ +# @@||wired.com/wiredcms/chartbeat.json$xmlhttprequest (easyprivacy.txt: 10793) +.wired.com/wiredcms/chartbeat\.json +# @@||windward.eu^*/angulartics-google-analytics.min.js (easyprivacy.txt: 10792) +.windward.eu/.*/angulartics-google-analytics\.min\.js +# @@||wikimedia.org^*/trackClick.js (easyprivacy.txt: 10791) +.wikimedia.org/.*/trackClick\.js +# @@||wikia.nocookie.net^*/AnalyticsEngine/js/analytics_prod.js (easyprivacy.txt: 10790) +.wikia.nocookie.net/.*/AnalyticsEngine/js/analytics_prod\.js +# @@||widgets.outbrain.com^*/comScore/comScore.htm (easyprivacy.txt: 10789) +.widgets.outbrain.com/.*/comScore/comScore\.htm +# @@||whirlpool.com/foresee/foresee-trigger.js (easyprivacy.txt: 10787) +.whirlpool.com/foresee/foresee-trigger\.js +# @@||westjet.com/js/webstats.js (easyprivacy.txt: 10786) +.westjet.com/js/webstats\.js +# @@||westelm.com^*/bloomreach.js (easyprivacy.txt: 10785) +.westelm.com/.*/bloomreach\.js +# @@||webtrack.dhlglobalmail.com^ (easyprivacy.txt: 10782) +.webtrack.dhlglobalmail.com +# @@||websimages.com/JS/Tracker.js (easyprivacy.txt: 10781) +.websimages.com/JS/Tracker\.js +# @@||wbshop.com/fcgi-bin/iipsrv.fcgi? (easyprivacy.txt: 10780) +.wbshop.com/fcgi-bin/iipsrv\.fcgi\? +# @@||walmart.com^*/track?event=$xmlhttprequest (easyprivacy.txt: 10776) +.walmart.com/.*/track\?event= +# @@||walmart.com/__ssobj/core.js (easyprivacy.txt: 10775) +.walmart.com/__ssobj/core\.js +# @@||w3spy.org/etc/geo.php? (easyprivacy.txt: 10773) +.w3spy.org/etc/geo\.php\? +# @@||vulture.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10771) +.vulture.com/decor/javascript/magnify_stats\.js +# @@||volvocars.com^*/swfaddress.js? (easyprivacy.txt: 10770) +.volvocars.com/.*/swfaddress\.js\? +# @@||vodafone.com.au/analytics/js/$script (easyprivacy.txt: 10769) +.vodafone.com.au/analytics/js/ +# @@||vod.olympics2010.msn.com/beacon?$object-subrequest (easyprivacy.txt: 10768) +.vod.olympics2010.msn.com/beacon\? +# @@||vizio.com/resources/js/vizio-module-tracking-google-analytics.js (easyprivacy.txt: 10767) +.vizio.com/resources/js/vizio-module-tracking-google-analytics\.js +# @@||visa.com^*/vendor/unica.js (easyprivacy.txt: 10765) +.visa.com/.*/vendor/unica\.js +# @@||vidible.tv^*/ComScore.Viewability.js (easyprivacy.txt: 10760) +.vidible.tv/.*/ComScore\.Viewability\.js +# @@||vidible.tv^*/ComScore.StreamSense.js (easyprivacy.txt: 10759) +.vidible.tv/.*/ComScore\.StreamSense\.js +# @@||vice.com^*/vmp_analytics.js (easyprivacy.txt: 10757) +.vice.com/.*/vmp_analytics\.js +# @@||verizon.com/images/track/track.gif?track=load&$xmlhttprequest (easyprivacy.txt: 10756) +.verizon.com/images/track/track\.gif\?track=load& +# @@||vacayvitamins.com/wp-content/plugins/wp-minify/min/?*/google-analyticator/$script (easyprivacy.txt: 10754) +.vacayvitamins.com/wp-content/plugins/wp-minify/min/\?.*/google-analyticator/ +# @@||v.me/personal/assets/ntpagetag-$script (easyprivacy.txt: 10753) +.v.me/personal/assets/ntpagetag- +# @@||uverseonline.att.net/report/click_tracking_nes.json (easyprivacy.txt: 10752) +.uverseonline.att.net/report/click_tracking_nes\.json +# @@||utm.arc.nasa.gov/images/ (easyprivacy.txt: 10751) +.utm.arc.nasa.gov/images/ +# @@||utm.arc.nasa.gov/common/js/swap.js (easyprivacy.txt: 10750) +.utm.arc.nasa.gov/common/js/swap\.js +# @@||utm.arc.nasa.gov/common/js/nav.js (easyprivacy.txt: 10749) +.utm.arc.nasa.gov/common/js/nav\.js +# @@||utm.arc.nasa.gov/common/js/hideEmail.js (easyprivacy.txt: 10748) +.utm.arc.nasa.gov/common/js/hideEmail\.js +# @@||utm.arc.nasa.gov/common/js/common.js (easyprivacy.txt: 10747) +.utm.arc.nasa.gov/common/js/common\.js +# @@||utm.arc.nasa.gov/common/css/ (easyprivacy.txt: 10746) +.utm.arc.nasa.gov/common/css/ +# @@||utm.alibaba.com/eventdriver/recommendEntry.do?$script (easyprivacy.txt: 10745) +.utm.alibaba.com/eventdriver/recommendEntry\.do\? +# @@||urlcheck.hulu.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10743) +.urlcheck.hulu.com/crossdomain\.xml +# @@||ups.com/WebTracking/$xmlhttprequest (easyprivacy.txt: 10742) +.ups.com/WebTracking/ +# @@||ups.com/*/WebTracking/track&dcs (easyprivacy.txt: 10741) +.ups.com/.*/WebTracking/track&dcs +# @@||unity3d.com/profiles/unity3d/themes/unity/images/services/analytics/$image,~third-party (easyprivacy.txt: 10740) +.unity3d.com/profiles/unity3d/themes/unity/images/services/analytics/ +# @@||unifi.me/mootools/classes/*-tracking (easyprivacy.txt: 10739) +.unifi.me/mootools/classes/.*-tracking +# @@||ultimedia.com/js/common/jquery.gatracker.js (easyprivacy.txt: 10738) +.ultimedia.com/js/common/jquery\.gatracker\.js +# @@||trutv.com/ui/scripts/coffee/modules/analytics/click-tracker.js$script (easyprivacy.txt: 10734) +.trutv.com/ui/scripts/coffee/modules/analytics/click-tracker\.js +# @@||trackjs.com^$~third-party (easyprivacy.txt: 10731) +.trackjs.com +# @@||tracker.mattel.com/tracker.aspx?site=$script (easyprivacy.txt: 10729) +.tracker.mattel.com/tracker\.aspx\?site= +# @@||track2.royalmail.com^ (easyprivacy.txt: 10728) +.track2.royalmail.com +# @@||ticketm.net^*/click_track.js (easyprivacy.txt: 10725) +.ticketm.net/.*/click_track\.js +# @@||thetenthwatch.com/js/tracking.js$~third-party (easyprivacy.txt: 10724) +.thetenthwatch.com/js/tracking\.js +# @@||thestreet-static.com/video/js/kGoogleAnalytics.js? (easyprivacy.txt: 10723) +.thestreet-static.com/video/js/kGoogleAnalytics\.js\? +# @@||theplatform.com^*/comScore.swf$object-subrequest (easyprivacy.txt: 10722) +.theplatform.com/.*/comScore\.swf +# @@||thehotelwindsor.com.au^*/javascript.googleAnalytics.js (easyprivacy.txt: 10721) +.thehotelwindsor.com.au/.*/javascript\.googleAnalytics\.js +# @@||texasroadhouse.com/common/javascript/google-analytics.js (easyprivacy.txt: 10719) +.texasroadhouse.com/common/javascript/google-analytics\.js +# @@||telegraph.co.uk/template/ver1-0/js/webtrends/live/wtid.js (easyprivacy.txt: 10717) +.telegraph.co.uk/template/ver1-0/js/webtrends/live/wtid\.js +# @@||teenvogue.com/js/eventTracker.js (easyprivacy.txt: 10716) +.teenvogue.com/js/eventTracker\.js +# @@||ted.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10715) +.ted.com/decor/javascript/magnify_stats\.js +# @@||tc.bankofamerica.com/c? (easyprivacy.txt: 10714) +.tc.bankofamerica.com/c\? +# @@||tags.w55c.net/rs?*&t=marketing$image (easyprivacy.txt: 10713) +.tags.w55c.net/rs\?.*&t=marketing +# @@||tablespoon.com/library/js/TBSP_ntpagetag.js (easyprivacy.txt: 10709) +.tablespoon.com/library/js/TBSP_ntpagetag\.js +# @@||support.thesslstore.com/visitor/index.php (easyprivacy.txt: 10706) +.support.thesslstore.com/visitor/index\.php +# @@||stats.jtvnw.net/crossdomain.xml$object-subrequest (easyprivacy.txt: 10701) +.stats.jtvnw.net/crossdomain\.xml +# @@||static.chartbeat.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10697) +.static.chartbeat.com/crossdomain\.xml +# @@||statcounter.com/msline.swf (easyprivacy.txt: 10694) +.statcounter.com/msline\.swf +# @@||statcounter.com/js/fusioncharts.js (easyprivacy.txt: 10693) +.statcounter.com/js/fusioncharts\.js +# @@||statcounter.com/chart.php?$script (easyprivacy.txt: 10692) +.statcounter.com/chart\.php\? +# @@||star-telegram.com/mistats/sites/dfw/startelegram.js (easyprivacy.txt: 10691) +.star-telegram.com/mistats/sites/dfw/startelegram\.js +# @@||sportsgrid.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10690) +.sportsgrid.com/decor/javascript/magnify_stats\.js +# @@||southwest.com^*/mbox.js (easyprivacy.txt: 10689) +.southwest.com/.*/mbox\.js +# @@||songza.com/static/*/songza/systems/$script (easyprivacy.txt: 10688) +.songza.com/static/.*/songza/systems/ +# @@||siteanalytics.compete.com^$~third-party (easyprivacy.txt: 10685) +.siteanalytics.compete.com +# @@||sijcc.org^*/page-tracking.js? (easyprivacy.txt: 10684) +.sijcc.org/.*/page-tracking\.js\? +# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easyprivacy.txt: 10683) +.sh.st/bundles/smeadvertisement/img/track\.gif\? +# @@||setelia.com*/page-tracking.js?$script,~third-party (easyprivacy.txt: 10681) +.setelia.com*./(.*/)?page-tracking\.js\? +# @@||service.collarity.com/cust/nbcu/ucs.js$xmlhttprequest (easyprivacy.txt: 10679) +.service.collarity.com/cust/nbcu/ucs\.js +# @@||sears.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10675) +.sears.com/.*/analytics\.sitecatalyst\.js +# @@||scorecardresearch.com/c2/plugins/streamsense_plugin_theplatform.js (easyprivacy.txt: 10672) +.scorecardresearch.com/c2/plugins/streamsense_plugin_theplatform\.js +# @@||samepage.io/assets/lib/google-analytics/GoogleAnalytics.js? (easyprivacy.txt: 10669) +.samepage.io/assets/lib/google-analytics/GoogleAnalytics\.js\? +# @@||safelinkwireless.com/enrollment/*/GoogleAnalytics.js (easyprivacy.txt: 10668) +.safelinkwireless.com/enrollment/.*/GoogleAnalytics\.js +# @@||s.youtube.com/api/stats/playback?$image,object-subrequest (easyprivacy.txt: 10667) +.s.youtube.com/api/stats/playback\? +# @@||rockingsoccer.com/js/match_stats.js (easyprivacy.txt: 10665) +.rockingsoccer.com/js/match_stats\.js +# @@||res-x.com^*/Resonance.aspx? (easyprivacy.txt: 10663) +.res-x.com/.*/Resonance\.aspx\? +# @@||remodelista.com/media/js/libs/ga_social_tracking.js (easyprivacy.txt: 10662) +.remodelista.com/media/js/libs/ga_social_tracking\.js +# @@||redfin.com/stingray/clicktracker.jsp? (easyprivacy.txt: 10660) +.redfin.com/stingray/clicktracker\.jsp\? +# @@||redditenhancementsuite.com/js/jquery.google-analytics.js (easyprivacy.txt: 10659) +.redditenhancementsuite.com/js/jquery\.google-analytics\.js +# @@||rawstory.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10658) +.rawstory.com/decor/javascript/magnify_stats\.js +# @@||rawgit.com^*/heatmap.js (easyprivacy.txt: 10657) +.rawgit.com/.*/heatmap\.js +# @@||randomhouse.com/book/css/certona.css (easyprivacy.txt: 10656) +.randomhouse.com/book/css/certona\.css +# @@||query.petametrics.com^ (easyprivacy.txt: 10654) +.query.petametrics.com +# @@||push2check.com/stats.php (easyprivacy.txt: 10651) +.push2check.com/stats\.php +# @@||pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore.Viewability.js (easyprivacy.txt: 10650) +.pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore\.Viewability\.js +# @@||pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore.StreamSense.js (easyprivacy.txt: 10649) +.pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore\.StreamSense\.js +# @@||ps.w.org/google-analytics-dashboard-for-wp/assets/ (easyprivacy.txt: 10648) +.ps.w.org/google-analytics-dashboard-for-wp/assets/ +# @@||polycom.com/polycomservice/js/unica/ntpagetag.js (easyprivacy.txt: 10645) +.polycom.com/polycomservice/js/unica/ntpagetag\.js +# @@||pokemonblackwhite.com^*/jquery.google-analytics.js (easyprivacy.txt: 10644) +.pokemonblackwhite.com/.*/jquery\.google-analytics\.js +# @@||playtheend.com/api/v1/players/heatmap.json?$object-subrequest (easyprivacy.txt: 10643) +.playtheend.com/api/v1/players/heatmap\.json\? +# @@||playcanvas.com.*/keen.min.js (easyprivacy.txt: 10642) +.playcanvas.com.*./(.*/)?keen\.min\.js +# @@||pixel.facebook.com/ajax/notifications/mark_read.php?*&alert_ids%$image (easyprivacy.txt: 10636) +.pixel.facebook.com/ajax/notifications/mark_read\.php\?.*&alert_ids% +# @@||pixel.facebook.com/ajax/gigaboxx/endpoint/UpdateLastSeenTime.php?$image (easyprivacy.txt: 10635) +.pixel.facebook.com/ajax/gigaboxx/endpoint/UpdateLastSeenTime\.php\? +# @@||piwik.pro/images/ (easyprivacy.txt: 10633) +.piwik.pro/images/ +# @@||ping.hellobar.com/?*&_e=click&$image (easyprivacy.txt: 10632) +.ping.hellobar.com/\?.*&_e=click& +# @@||pillsbury.com/Shared/StarterKit/Javascript/UnicaTag.js (easyprivacy.txt: 10631) +.pillsbury.com/Shared/StarterKit/Javascript/UnicaTag\.js +# @@||pillsbury.com/Shared/StarterKit/Javascript/ntpagetag.js (easyprivacy.txt: 10630) +.pillsbury.com/Shared/StarterKit/Javascript/ntpagetag\.js +# @@||periscope.tv^*/bugsnag-*.min.js (easyprivacy.txt: 10628) +.periscope.tv/.*/bugsnag-.*\.min\.js +# @@||pbskids.org/js/ga-current.js (easyprivacy.txt: 10627) +.pbskids.org/js/ga-current\.js +# @@||patrick-wied.at/static/heatmapjs/src/heatmap.js (easyprivacy.txt: 10624) +.patrick-wied.at/static/heatmapjs/src/heatmap\.js +# @@||pastebin.com/etc/geo.php? (easyprivacy.txt: 10623) +.pastebin.com/etc/geo\.php\? +# @@||ooyala.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10617) +.ooyala.com/crossdomain\.xml +# @@||officeworks.com.au^*/site-tracker.js (easyprivacy.txt: 10614) +.officeworks.com.au/.*/site-tracker\.js +# @@||odcdn.com^*/cm.js (easyprivacy.txt: 10613) +.odcdn.com/.*/cm\.js +# @@||nytimes.com^*/wtinit.js (easyprivacy.txt: 10612) +.nytimes.com/.*/wtinit\.js +# @@||nytimes.com^*/wtbase.js (easyprivacy.txt: 10611) +.nytimes.com/.*/wtbase\.js +# @@||nytimes.com^*/EventTracker.js (easyprivacy.txt: 10610) +.nytimes.com/.*/EventTracker\.js +# @@||nymag.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10606) +.nymag.com/decor/javascript/magnify_stats\.js +# @@||next.co.uk/Scripts/GoogleAnalytics.js? (easyprivacy.txt: 10602) +.next.co.uk/Scripts/GoogleAnalytics\.js\? +# @@||networkworld.com^*/demandbase.js (easyprivacy.txt: 10600) +.networkworld.com/.*/demandbase\.js +# @@||netinsight.travelers.com/scripts/ntpagetaghttps.js (easyprivacy.txt: 10599) +.netinsight.travelers.com/scripts/ntpagetaghttps\.js +# @@||ncbi.nlm.nih.gov/stat? (easyprivacy.txt: 10597) +.ncbi.nlm.nih.gov/stat\? +# @@||nationwide.co.uk/_/js/webAnalytics.js (easyprivacy.txt: 10596) +.nationwide.co.uk/_/js/webAnalytics\.js +# @@||nationalreview.com^*/chartbeat.js (easyprivacy.txt: 10595) +.nationalreview.com/.*/chartbeat\.js +# @@||nationaljournal.com/js/bizo.js (easyprivacy.txt: 10594) +.nationaljournal.com/js/bizo\.js +# @@||narf-archive.com^*/clickstream.js (easyprivacy.txt: 10593) +.narf-archive.com/.*/clickstream\.js +# @@||mycokerewards.com^*/webtrends/mcr3-webtrends_POST_$script (easyprivacy.txt: 10591) +.mycokerewards.com/.*/webtrends/mcr3-webtrends_POST_ +# @@||mybuys.com/webrec/wr.do? (easyprivacy.txt: 10590) +.mybuys.com/webrec/wr\.do\? +# @@||musicvideogenome.com/javascripts/stats.js (easyprivacy.txt: 10587) +.musicvideogenome.com/javascripts/stats\.js +# @@||munchkin.marketo.net/munchkin.js (easyprivacy.txt: 10586) +.munchkin.marketo.net/munchkin\.js +# @@||moulinex.com/js/xtroi.js (easyprivacy.txt: 10581) +.moulinex.com/js/xtroi\.js +# @@||motorolasolutions.com/wrs/b2bsdc.js (easyprivacy.txt: 10580) +.motorolasolutions.com/wrs/b2bsdc\.js +# @@||mlb.com/shared/scripts/bam.tracking.js (easyprivacy.txt: 10572) +.mlb.com/shared/scripts/bam\.tracking\.js +# @@||mlb.com/b/ss/$image (easyprivacy.txt: 10571) +.mlb.com/b/ss/ +# @@||milb.com/shared/scripts/bam.tracking.js (easyprivacy.txt: 10568) +.milb.com/shared/scripts/bam\.tracking\.js +# @@||mightyspring.com/static/js/beacon.js?$~third-party (easyprivacy.txt: 10567) +.mightyspring.com/static/js/beacon\.js\? +# @@||microsoft.com/click/services/RioTracking2.js (easyprivacy.txt: 10566) +.microsoft.com/click/services/RioTracking2\.js +# @@||metrics.torproject.org^ (easyprivacy.txt: 10565) +.metrics.torproject.org +# @@||metrics.nissanusa.com/b/ss/nissanusacom/$image (easyprivacy.txt: 10564) +.metrics.nissanusa.com/b/ss/nissanusacom/ +# @@||metrics.mozilla.com^$~third-party (easyprivacy.txt: 10563) +.metrics.mozilla.com +# @@||metrics.howstuffworks.com/b/ss/*&ot=$image (easyprivacy.txt: 10562) +.metrics.howstuffworks.com/b/ss/.*&ot= +# @@||metrics.ctvdigital.net/global/CtvAd.js (easyprivacy.txt: 10561) +.metrics.ctvdigital.net/global/CtvAd\.js +# @@||medicare.gov/SharedResources/widgets/foresee/foresee-trigger.js (easyprivacy.txt: 10559) +.medicare.gov/SharedResources/widgets/foresee/foresee-trigger\.js +# @@||media.ticketmaster.*/click_track.js (easyprivacy.txt: 10557) +.media.ticketmaster.*./(.*/)?click_track\.js +# @@||media-imdb.com^*/clickstream.js (easyprivacy.txt: 10553) +.media-imdb.com/.*/clickstream\.js +# @@||mec.ca/media/javascript/resxclsx.js (easyprivacy.txt: 10552) +.mec.ca/media/javascript/resxclsx\.js +# @@||maserati.com^*/transparent1x1.png (easyprivacy.txt: 10548) +.maserati.com/.*/transparent1x1\.png +# @@||maps.google.*/gen_204?$xmlhttprequest (easyprivacy.txt: 10547) +.maps.google.*./(.*/)?gen_204\? +# @@||makerstudios.com/js/mixpanel.js?$script (easyprivacy.txt: 10546) +.makerstudios.com/js/mixpanel\.js\? +# @@||mail.yahoo.com/neo/ymstat$xmlhttprequest (easyprivacy.txt: 10545) +.mail.yahoo.com/neo/ymstat +# @@||magnify.net^*/magnify_stats.js (easyprivacy.txt: 10542) +.magnify.net/.*/magnify_stats\.js +# @@||lynda.com^*/px.gif?$image (easyprivacy.txt: 10541) +.lynda.com/.*/px\.gif\? +# @@||luminate.com/order/$subdocument (easyprivacy.txt: 10540) +.luminate.com/order/ +# @@||lufthansa.com^*/mmcore.js (easyprivacy.txt: 10539) +.lufthansa.com/.*/mmcore\.js +# @@||lsi.com^*/google-analytics.js (easyprivacy.txt: 10538) +.lsi.com/.*/google-analytics\.js +# @@||lordandtaylor.com^*/javascript/Analytics/CartEventDataInit.js (easyprivacy.txt: 10536) +.lordandtaylor.com/.*/javascript/Analytics/CartEventDataInit\.js +# @@||logmein.com/scripts/Tracking/Tracking.js (easyprivacy.txt: 10535) +.logmein.com/scripts/Tracking/Tracking\.js +# @@||logging.apache.org^ (easyprivacy.txt: 10534) +.logging.apache.org +# @@||lloydstsb.com/it/xslt/touchclarity/omtr_tc.js (easyprivacy.txt: 10531) +.lloydstsb.com/it/xslt/touchclarity/omtr_tc\.js +# @@||live.indiatimes.com/trackjs.cms (easyprivacy.txt: 10530) +.live.indiatimes.com/trackjs\.cms +# @@||link.theplatform.com/*?affiliate= (easyprivacy.txt: 10529) +.link.theplatform.com/.*\?affiliate= +# @@||link.theplatform.com/*/tracker.log? (easyprivacy.txt: 10528) +.link.theplatform.com/.*/tracker\.log\? +# @@||lininteractive.com/chartbeat/$~third-party (easyprivacy.txt: 10527) +.lininteractive.com/chartbeat/ +# @@||lg.com^*/foresee/foresee-trigger.js (easyprivacy.txt: 10526) +.lg.com/.*/foresee/foresee-trigger\.js +# @@||lesacasino.com^*/EMERPEventCollector.$script,subdocument (easyprivacy.txt: 10525) +.lesacasino.com/.*/EMERPEventCollector\. +# @@||leretourdelautruche.com/map/nuke/heatmap.js (easyprivacy.txt: 10524) +.leretourdelautruche.com/map/nuke/heatmap\.js +# @@||lenovo.com^*/GoogleAnalytics.js (easyprivacy.txt: 10523) +.lenovo.com/.*/GoogleAnalytics\.js +# @@||latimes.com/hive/javascripts/loggingService.js (easyprivacy.txt: 10522) +.latimes.com/hive/javascripts/loggingService\.js +# @@||l.yimg.com/g/combo/*/comscore.$script (easyprivacy.txt: 10521) +.l.yimg.com/g/combo/.*/comscore\. +# @@||koldcast.tv/mint/*/tracker.php? (easyprivacy.txt: 10519) +.koldcast.tv/mint/.*/tracker\.php\? +# @@||koalabeast.com/stats?$script (easyprivacy.txt: 10518) +.koalabeast.com/stats\? +# @@||keremerkan.net/wp-content/plugins/wp-minify/min/*/google-analyticator/ (easyprivacy.txt: 10517) +.keremerkan.net/wp-content/plugins/wp-minify/min/.*/google-analyticator/ +# @@||kentucky.com/mistats/finalizestats.js (easyprivacy.txt: 10516) +.kentucky.com/mistats/finalizestats\.js +# @@||keep2s.cc/ext/evercookie/$script (easyprivacy.txt: 10515) +.keep2s.cc/ext/evercookie/ +# @@||kaltura.com/content/*/comscorePlugin.swf (easyprivacy.txt: 10514) +.kaltura.com/content/.*/comscorePlugin\.swf +# @@||k2s.cc/ext/evercookie/$script (easyprivacy.txt: 10513) +.k2s.cc/ext/evercookie/ +# @@||juxtacommons.org^*/heatmap.js (easyprivacy.txt: 10512) +.juxtacommons.org/.*/heatmap\.js +# @@||js.vpro.nl/vpro/*/statcounter.js? (easyprivacy.txt: 10511) +.js.vpro.nl/vpro/.*/statcounter\.js\? +# @@||jeevansathi.com/minify.php?files=$script,stylesheet (easyprivacy.txt: 10509) +.jeevansathi.com/minify\.php\?files= +# @@||jackjones.com^*/google-analytics-tagging.js (easyprivacy.txt: 10508) +.jackjones.com/.*/google-analytics-tagging\.js +# @@||itworld.com/elqnow/elq*.js (easyprivacy.txt: 10507) +.itworld.com/elqnow/elq.*\.js +# @@||intel.com^*/angular-google-analytics.js (easyprivacy.txt: 10504) +.intel.com/.*/angular-google-analytics\.js +# @@||imrworldwide.com^*/swfobject.js (easyprivacy.txt: 10501) +.imrworldwide.com/.*/swfobject\.js +# @@||imrworldwide.com^*/flashdetect.js (easyprivacy.txt: 10499) +.imrworldwide.com/.*/flashdetect\.js +# @@||ibis.com/scripts-*/xtanalyzer_roi.js (easyprivacy.txt: 10492) +.ibis.com/scripts-.*/xtanalyzer_roi\.js +# @@||hotmail.com/mail/*/i2a.js (easyprivacy.txt: 10489) +.hotmail.com/mail/.*/i2a\.js +# @@||hostlogr.com/etc/geo.php? (easyprivacy.txt: 10488) +.hostlogr.com/etc/geo\.php\? +# @@||homedepot.com/static/scripts/resxclsa.js (easyprivacy.txt: 10487) +.homedepot.com/static/scripts/resxclsa\.js +# @@||highcharts.com^*/heatmap.js (easyprivacy.txt: 10484) +.highcharts.com/.*/heatmap\.js +# @@||hhgregg.com/wcsstore/MadisonsStorefrontAssetStore/javascript/Analytics/AnalyticsTagDataObject.js (easyprivacy.txt: 10483) +.hhgregg.com/wcsstore/MadisonsStorefrontAssetStore/javascript/Analytics/AnalyticsTagDataObject\.js +# @@||healthcare.gov/marketplace/*/clear.gif? (easyprivacy.txt: 10482) +.healthcare.gov/marketplace/.*/clear\.gif\? +# @@||harvard.edu/scripts/ga_social_tracking.js (easyprivacy.txt: 10481) +.harvard.edu/scripts/ga_social_tracking\.js +# @@||halowars.com/stats/images/Buttons/MapStats.jpg (easyprivacy.txt: 10480) +.halowars.com/stats/images/Buttons/MapStats\.jpg +# @@||graphracer.com/js/libs/heatmap.js (easyprivacy.txt: 10478) +.graphracer.com/js/libs/heatmap\.js +# @@||grapeshot.co.uk/sare-api/ (easyprivacy.txt: 10477) +.grapeshot.co.uk/sare-api/ +# @@||grapeshot.co.uk/image-resize/$image (easyprivacy.txt: 10476) +.grapeshot.co.uk/image-resize/ +# @@||google.com/analytics/js/analytics.min.js$~third-party (easyprivacy.txt: 10470) +.google.com/analytics/js/analytics\.min\.js +# @@||google.*/mapmaker/gen_204?$subdocument,xmlhttprequest (easyprivacy.txt: 10469) +.google.*./(.*/)?mapmaker/gen_204\? +# @@||goldmansachs.com/a/pg/js/prod/gs-analytics-init.js (easyprivacy.txt: 10462) +.goldmansachs.com/a/pg/js/prod/gs-analytics-init\.js +# @@||goldbet.com/Scripts/googleAnalytics.js (easyprivacy.txt: 10461) +.goldbet.com/Scripts/googleAnalytics\.js +# @@||go.com^*/analytics/tracker.otv.js (easyprivacy.txt: 10460) +.go.com/.*/analytics/tracker\.otv\.js +# @@||go.com/stat/flash/analyticreportingas3.swf (easyprivacy.txt: 10459) +.go.com/stat/flash/analyticreportingas3\.swf +# @@||go.com/stat/dolwebanalytics.js (easyprivacy.txt: 10458) +.go.com/stat/dolwebanalytics\.js +# @@||go.com/combiner/*/comscore.$script (easyprivacy.txt: 10457) +.go.com/combiner/.*/comscore\. +# @@||glamour.com/aspen/components/cn-fe-stats/js/$script (easyprivacy.txt: 10455) +.glamour.com/aspen/components/cn-fe-stats/js/ +# @@||getclicky.com/ajax/marketshare?$script (easyprivacy.txt: 10451) +.getclicky.com/ajax/marketshare\? +# @@||gatheringmagic.com/wp-content/plugins/bwp-minify/min/*/google-analyticator/$script (easyprivacy.txt: 10446) +.gatheringmagic.com/wp-content/plugins/bwp-minify/min/.*/google-analyticator/ +# @@||gardenista.com/media/js/libs/ga_social_tracking.js (easyprivacy.txt: 10444) +.gardenista.com/media/js/libs/ga_social_tracking\.js +# @@||gameplayer.io^*/EventTracker.js (easyprivacy.txt: 10443) +.gameplayer.io/.*/EventTracker\.js +# @@||ft.com/opentag/opentag-$script (easyprivacy.txt: 10441) +.ft.com/opentag/opentag- +# @@||freehostedscripts.net/online/$script,~third-party (easyprivacy.txt: 10440) +.freehostedscripts.net/online/ +# @@||foodnetwork.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10439) +.foodnetwork.com/.*/analytics\.sitecatalyst\.js +# @@||focus.ti.com^*/metrics-min.js (easyprivacy.txt: 10438) +.focus.ti.com/.*/metrics-min\.js +# @@||fls-na.amazon.*/aiv-web-player/$xmlhttprequest (easyprivacy.txt: 10436) +.fls-na.amazon.*./(.*/)?aiv-web-player/ +# @@||flipps.com^*/page-tracking.js? (easyprivacy.txt: 10435) +.flipps.com/.*/page-tracking\.js\? +# @@||fitloop.co/packages/GAnalytics.js? (easyprivacy.txt: 10434) +.fitloop.co/packages/GAnalytics\.js\? +# @@||firstdirect.com^*/logging-code.js (easyprivacy.txt: 10433) +.firstdirect.com/.*/logging-code\.js +# @@||fifa.com^*/webanalytics.js? (easyprivacy.txt: 10432) +.fifa.com/.*/webanalytics\.js\? +# @@||fccbrea.org^*/swfaddress.js (easyprivacy.txt: 10431) +.fccbrea.org/.*/swfaddress\.js +# @@||expedia.com/static/default/default/scripts/TealeafSDK.js (easyprivacy.txt: 10430) +.expedia.com/static/default/default/scripts/TealeafSDK\.js +# @@||expedia.com/static/default/default/scripts/siteAnalytics.js (easyprivacy.txt: 10429) +.expedia.com/static/default/default/scripts/siteAnalytics\.js +# @@||expedia.com/minify/siteAnalytics-$script (easyprivacy.txt: 10428) +.expedia.com/minify/siteAnalytics- +# @@||evernote.com^*/google-analytics-util.js (easyprivacy.txt: 10427) +.evernote.com/.*/google-analytics-util\.js +# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/quantcast/$script (easyprivacy.txt: 10422) +.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/quantcast/ +# @@||epixhd.com/styleassets/js/google-analytics.js (easyprivacy.txt: 10421) +.epixhd.com/styleassets/js/google-analytics\.js +# @@||ensighten.com^*/serverComponent.php?$script (easyprivacy.txt: 10420) +.ensighten.com/.*/serverComponent\.php\? +# @@||ensighten.com^*/code/$script (easyprivacy.txt: 10418) +.ensighten.com/.*/code/ +# @@||ensighten.com/libs/flowplayer/ensightenplugin.swf$object-subrequest (easyprivacy.txt: 10416) +.ensighten.com/libs/flowplayer/ensightenplugin\.swf +# @@||ensighten.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10415) +.ensighten.com/crossdomain\.xml +# @@||eircomphonebook.ie/js/wt_capi.js? (easyprivacy.txt: 10411) +.eircomphonebook.ie/js/wt_capi\.js\? +# @@||egencia.com/pubspec/scripts/include/siteanalytics_include.js (easyprivacy.txt: 10410) +.egencia.com/pubspec/scripts/include/siteanalytics_include\.js +# @@||ecostream.tv/js/ecos.js (easyprivacy.txt: 10408) +.ecostream.tv/js/ecos\.js +# @@||directline.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10398) +.directline.com/.*/analytics\.sitecatalyst\.js +# @@||directline.com/touchclarity/$script (easyprivacy.txt: 10397) +.directline.com/touchclarity/ +# @@||diablo3.com/assets/js/jquery.google-analytics.js (easyprivacy.txt: 10395) +.diablo3.com/assets/js/jquery\.google-analytics\.js +# @@||descopera.ro/js/addLinkerEvents-ga.js (easyprivacy.txt: 10394) +.descopera.ro/js/addLinkerEvents-ga\.js +# @@||debenhams.com/foresee/foresee-trigger.js (easyprivacy.txt: 10391) +.debenhams.com/foresee/foresee-trigger\.js +# @@||deals.nextag.com^*/ClickTracker.jsp (easyprivacy.txt: 10390) +.deals.nextag.com/.*/ClickTracker\.jsp +# @@||dailymail.co.uk/brightcove/tracking/ted3.js (easyprivacy.txt: 10389) +.dailymail.co.uk/brightcove/tracking/ted3\.js +# @@||dailyfinance.com/traffic/? (easyprivacy.txt: 10388) +.dailyfinance.com/traffic/\? +# @@||dailycaller.com^*_chartbeat.js (easyprivacy.txt: 10387) +.dailycaller.com/.*_chartbeat\.js +# @@||ctv.ca/players/mediaplayer/*/comscorebeacon.js (easyprivacy.txt: 10381) +.ctv.ca/players/mediaplayer/.*/comscorebeacon\.js +# @@||csoonline.com/js/demandbase.js (easyprivacy.txt: 10380) +.csoonline.com/js/demandbase\.js +# @@||csid.com/wp-content/plugins/bwp-minify/min/?*/google-analyticator/$script (easyprivacy.txt: 10379) +.csid.com/wp-content/plugins/bwp-minify/min/\?.*/google-analyticator/ +# @@||cschat.ebay.com^*/scripts/log.js (easyprivacy.txt: 10377) +.cschat.ebay.com/.*/scripts/log\.js +# @@||craveonline.com^*/google-analytics.min.js (easyprivacy.txt: 10374) +.craveonline.com/.*/google-analytics\.min\.js +# @@||craveonline.com/wp-content/plugins/bwp-minify/$script (easyprivacy.txt: 10373) +.craveonline.com/wp-content/plugins/bwp-minify/ +# @@||count.ly^$~third-party (easyprivacy.txt: 10371) +.count.ly +# @@||coremetrics.com*/eluminate.js (easyprivacy.txt: 10370) +.coremetrics.com*./(.*/)?eluminate\.js +# @@||contentdef.com/assets/common/js/google-analytics.js (easyprivacy.txt: 10369) +.contentdef.com/assets/common/js/google-analytics\.js +# @@||constantcontact.com/js/WebTracking/ (easyprivacy.txt: 10368) +.constantcontact.com/js/WebTracking/ +# @@||computerworld.com/resources/scripts/lib/demandbase.js$script (easyprivacy.txt: 10367) +.computerworld.com/resources/scripts/lib/demandbase\.js +# @@||collegeboard.org/webanalytics/ (easyprivacy.txt: 10366) +.collegeboard.org/webanalytics/ +# @@||citiretailservices.citibankonline.com/USCRSF/USCRSGBL/js/AppMeasurement.js (easyprivacy.txt: 10353) +.citiretailservices.citibankonline.com/USCRSF/USCRSGBL/js/AppMeasurement\.js +# @@||cisco.com/web/fw/m/ntpagetag.min.js (easyprivacy.txt: 10352) +.cisco.com/web/fw/m/ntpagetag\.min\.js +# @@||cisco.com/web/fw/lib/ntpagetag.js (easyprivacy.txt: 10351) +.cisco.com/web/fw/lib/ntpagetag\.js +# @@||cio.com/js/demandbase.js? (easyprivacy.txt: 10350) +.cio.com/js/demandbase\.js\? +# @@||cincinnatibell.net/images/track/track.gif?$xmlhttprequest (easyprivacy.txt: 10349) +.cincinnatibell.net/images/track/track\.gif\? +# @@||chatzy.com/?jsonp:$script (easyprivacy.txt: 10348) +.chatzy.com/\?jsonp: +# @@||chartbeat.com/*/chartbeat/$~third-party (easyprivacy.txt: 10346) +.chartbeat.com/.*/chartbeat/ +# @@||chanel.com/js/chanel-tracking.js$script (easyprivacy.txt: 10345) +.chanel.com/js/chanel-tracking\.js +# @@||centurylink.net/images/track/track.gif?track=$xmlhttprequest (easyprivacy.txt: 10344) +.centurylink.net/images/track/track\.gif\?track= +# @@||cdn-redfin.com^*/page_analytics.xd.js (easyprivacy.txt: 10341) +.cdn-redfin.com/.*/page_analytics\.xd\.js +# @@||cbc.ca^*/loggingservice.js? (easyprivacy.txt: 10333) +.cbc.ca/.*/loggingservice\.js\? +# @@||care2.com/assets/scripts/cookies/care2/NitroCookies.js (easyprivacy.txt: 10332) +.care2.com/assets/scripts/cookies/care2/NitroCookies\.js +# @@||capitalone360.com/urchin.js (easyprivacy.txt: 10331) +.capitalone360.com/urchin\.js +# @@||canoe.ca/generix/omniture/TagOmnitureEngine.js (easyprivacy.txt: 10330) +.canoe.ca/generix/omniture/TagOmnitureEngine\.js +# @@||canadiantire.ca^*/analytics.sitecatalyst.js (easyprivacy.txt: 10329) +.canadiantire.ca/.*/analytics\.sitecatalyst\.js +# @@||canada.com/js/ooyala/comscore.js (easyprivacy.txt: 10328) +.canada.com/js/ooyala/comscore\.js +# @@||cache.nymag.com^*/clickability.js (easyprivacy.txt: 10327) +.cache.nymag.com/.*/clickability\.js +# @@||buffalowildwings.com^*/google-analytics.js (easyprivacy.txt: 10322) +.buffalowildwings.com/.*/google-analytics\.js +# @@||bt.com^*/touchclarity/homepage/omtr_tc.js (easyprivacy.txt: 10320) +.bt.com/.*/touchclarity/homepage/omtr_tc\.js +# @@||britishairways.com/cms/global/scripts/applications/tracking/visualsciences.js (easyprivacy.txt: 10318) +.britishairways.com/cms/global/scripts/applications/tracking/visualsciences\.js +# @@||boxtops4education.com^*/ntpagetag.js (easyprivacy.txt: 10317) +.boxtops4education.com/.*/ntpagetag\.js +# @@||bountysource.com/badge/tracker? (easyprivacy.txt: 10316) +.bountysource.com/badge/tracker\? +# @@||bootcamp.mit.edu/js/angulartics-google-analytics.min.js (easyprivacy.txt: 10315) +.bootcamp.mit.edu/js/angulartics-google-analytics\.min\.js +# @@||bookmate.com^*/impressions?$xmlhttprequest (easyprivacy.txt: 10314) +.bookmate.com/.*/impressions\? +# @@||bonappetit.com^*/cn-fe-stats/$script (easyprivacy.txt: 10313) +.bonappetit.com/.*/cn-fe-stats/ +# @@||bolha.com/clicktracker/ (easyprivacy.txt: 10312) +.bolha.com/clicktracker/ +# @@||bitgo.com/vendor/googleanalytics/angular-ga.min.js (easyprivacy.txt: 10310) +.bitgo.com/vendor/googleanalytics/angular-ga\.min\.js +# @@||bhg.com/web/js-min/common/js/dwr/RemoteTargetingService.js (easyprivacy.txt: 10309) +.bhg.com/web/js-min/common/js/dwr/RemoteTargetingService\.js +# @@||bettycrocker.com/Shared/Javascript/UnicaTag.js (easyprivacy.txt: 10308) +.bettycrocker.com/Shared/Javascript/UnicaTag\.js +# @@||bettycrocker.com/Shared/Javascript/ntpagetag.js (easyprivacy.txt: 10307) +.bettycrocker.com/Shared/Javascript/ntpagetag\.js +# @@||beplb01.nexus.hewitt.com/analytics?$~third-party (easyprivacy.txt: 10305) +.beplb01.nexus.hewitt.com/analytics\? +# @@||benswann.com/decor/javascript/magnify_stats.js? (easyprivacy.txt: 10304) +.benswann.com/decor/javascript/magnify_stats\.js\? +# @@||behanceserved.com/stats/stats.js? (easyprivacy.txt: 10303) +.behanceserved.com/stats/stats\.js\? +# @@||beatthetraffic.com/traffic/?partner=$subdocument (easyprivacy.txt: 10302) +.beatthetraffic.com/traffic/\?partner= +# @@||beacon.guim.co.uk/accept-beacon? (easyprivacy.txt: 10301) +.beacon.guim.co.uk/accept-beacon\? +# @@||bc.geocities.*/not_found/ (easyprivacy.txt: 10300) +.bc.geocities.*./(.*/)?not_found/ +# @@||bbc.co.uk/frameworks/nedstat/$script,~third-party (easyprivacy.txt: 10299) +.bbc.co.uk/frameworks/nedstat/ +# @@||barclays.co.uk/touchclarity/mbox.js (easyprivacy.txt: 10297) +.barclays.co.uk/touchclarity/mbox\.js +# @@||b-europe.com/HttpHandlers/httpCombiner.ashx?*/xiti.js$script (easyprivacy.txt: 10296) +.b-europe.com/HttpHandlers/httpCombiner\.ashx\?.*/xiti\.js +# @@||autoscout24.net/unifiedtracking/ivw.js (easyprivacy.txt: 10295) +.autoscout24.net/unifiedtracking/ivw\.js +# @@||att.com/webtrends/scripts/dcs_tag.js (easyprivacy.txt: 10294) +.att.com/webtrends/scripts/dcs_tag\.js +# @@||atpworldtour.com/assets/js/util/googleAnalytics.js (easyprivacy.txt: 10293) +.atpworldtour.com/assets/js/util/googleAnalytics\.js +# @@||atlanticbb.net/images/track/track.gif?$xmlhttprequest (easyprivacy.txt: 10292) +.atlanticbb.net/images/track/track\.gif\? +# @@||atdmt.com/ds/yusptsprtspr/ (easyprivacy.txt: 10290) +.atdmt.com/ds/yusptsprtspr/ +# @@||assets.espn.go.com/espn360/builds/nielsen/ggce*.swf$object-subrequest (easyprivacy.txt: 10289) +.assets.espn.go.com/espn360/builds/nielsen/ggce.*\.swf +# @@||arstechnica.com/services/incr.php?*=interactions.adblock-annoy.click$xmlhttprequest (easyprivacy.txt: 10288) +.arstechnica.com/services/incr\.php\?.*=interactions\.adblock-annoy\.click +# @@||arkadiumhosted.com^*/google-analytics-logger.swf$object-subrequest (easyprivacy.txt: 10287) +.arkadiumhosted.com/.*/google-analytics-logger\.swf +# @@||arcgis.com^*/heatmap.js (easyprivacy.txt: 10286) +.arcgis.com/.*/heatmap\.js +# @@||api.academia.edu^*/stats?callback$script,~third-party (easyprivacy.txt: 10284) +.api.academia.edu/.*/stats\?callback +# @@||aol.com/mm_track/slideshow/$subdocument (easyprivacy.txt: 10279) +.aol.com/mm_track/slideshow/ +# @@||anthem.com/includes/foresee/foresee-trigger.js (easyprivacy.txt: 10278) +.anthem.com/includes/foresee/foresee-trigger\.js +# @@||analytics.atomiconline.com/services/jquery.js (easyprivacy.txt: 10271) +.analytics.atomiconline.com/services/jquery\.js +# @@||amctv.com^*/comscore.js (easyprivacy.txt: 10269) +.amctv.com/.*/comscore\.js +# @@||aliunicorn.com^*/click_stat/ (easyprivacy.txt: 10266) +.aliunicorn.com/.*/click_stat/ +# @@||aliunicorn.com^*/click-stat.js (easyprivacy.txt: 10265) +.aliunicorn.com/.*/click-stat\.js +# @@||aliexpress.com/home/recommendEntry.do?$script (easyprivacy.txt: 10264) +.aliexpress.com/home/recommendEntry\.do\? +# @@||aflac.com/js/wt_capi.js (easyprivacy.txt: 10262) +.aflac.com/js/wt_capi\.js +# @@||adobetag.com^*/amc.js$script (easyprivacy.txt: 10258) +.adobetag.com/.*/amc\.js +# @@||adidas.com^*/adidasAnalytics.js? (easyprivacy.txt: 10256) +.adidas.com/.*/adidasAnalytics\.js\? +# @@||accorhotels.com^*/xtanalyzer_roi.js (easyprivacy.txt: 10252) +.accorhotels.com/.*/xtanalyzer_roi\.js +# @@||about-australia.com/*/clickheat.js (easyprivacy.txt: 10251) +.about-australia.com/.*/clickheat\.js +# @@/wp-content/plugins/google-analytics-dashboard-for-wp/*$~third-party (easyprivacy.txt: 10249) +/(.*/)?wp-content/plugins/google-analytics-dashboard-for-wp/.* + +#ab2p-unblock-elem-R110 +{+client-header-tagger{ab2p-unblock-elem-R110} \ +} +# @@||iocdn.coremetrics.com^*/io_config.js?ts=$domain=24ace.co.uk (easyprivacy.txt: 10506) +.iocdn.coremetrics.com/.*/io_config\.js\?ts= +# @@||iocdn.coremetrics.com^*.js?V=$domain=24ace.co.uk (easyprivacy.txt: 10505) +.iocdn.coremetrics.com/.*\.js\?V= + +#ab2p-unblock-elem-R111 +{+client-header-tagger{ab2p-unblock-elem-R111} \ +} +# @@||codicefl.shinystat.com/cgi-bin/getserver.cgi?$script,domain=3bmeteo.com|quotidiano.net|radioitalia.it (easyprivacy.txt: 11023) +.codicefl.shinystat.com/cgi-bin/getserver\.cgi\? + +#ab2p-unblock-elem-R112 +{+client-header-tagger{ab2p-unblock-elem-R112} \ +} +# @@||w88.go.com/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easyprivacy.txt: 10774) +.w88.go.com/crossdomain\.xml + +#ab2p-unblock-elem-R113 +{+client-header-tagger{ab2p-unblock-elem-R113} \ +} +# @@||sitestat.com/crossdomain.xml$object-subrequest,domain=abp.nl (easyprivacy.txt: 10994) +.sitestat.com/crossdomain\.xml +# @@||sitestat.com/abp/abp/s?$object-subrequest,domain=abp.nl (easyprivacy.txt: 10993) +.sitestat.com/abp/abp/s\? + +#ab2p-unblock-elem-R114 +{+client-header-tagger{ab2p-unblock-elem-R114} \ +} +# @@||csdata1.com/data/js/$domain=acehardware.com (easyprivacy.txt: 10378) +.csdata1.com/data/js/ + +#ab2p-unblock-elem-R115 +{+client-header-tagger{ab2p-unblock-elem-R115} \ +} +# @@||iocdn.coremetrics.com^*/io_config.js?ts=$domain=adidas.de (easyprivacy.txt: 10883) +.iocdn.coremetrics.com/.*/io_config\.js\?ts= +# @@||iocdn.coremetrics.com^*.js?V=$script,domain=adidas.de (easyprivacy.txt: 10882) +.iocdn.coremetrics.com/.*\.js\?V= + +#ab2p-unblock-elem-R116 +{+client-header-tagger{ab2p-unblock-elem-R116} \ +} +# @@||mixpanel.com/track/?data=$xmlhttprequest,domain=ads.twitter.com|change.org|greentoe.com|kickstarter.com|mint.com|nbc.com|thefrisky.com|vid.me (easyprivacy.txt: 10570) +.mixpanel.com/track/\?data= + +#ab2p-unblock-elem-R117 +{+client-header-tagger{ab2p-unblock-elem-R117} \ +} +# @@||google-analytics.com/analytics.js$domain=afternic.com|amctv.com|bebo.com|ch10.co.il|cliphunter.com|daemon-tools.cc|desigual.com|gamepix.com|greentoe.com|housing.wisc.edu|infogr.am|jackbox.tv|keygames.com|manowthaimordialloc.com.au|maxiclimber.com|orbitum.com|pluto.tv|rebtel.com|sbnation.com|sci2.tv|seatgeek.com|support.amd.com|tagheuer.com.au|tv10play.se|tv3play.se|tv6play.se|tv8play.se|video.pbs.org|vox.com|vpnster.com|weather.gov|westernunion.at|westernunion.be|westernunion.ca|westernunion.ch|westernunion.cl|westernunion.co.jp|westernunion.co.nz|westernunion.co.uk|westernunion.co.za|westernunion.com|westernunion.com.au|westernunion.com.co|westernunion.com.hk|westernunion.com.my|westernunion.com.pe|westernunion.de|westernunion.fr|westernunion.ie|westernunion.it|westernunion.nl|westernunion.ph|westernunion.pl|westernunion.se|westernunion.sg|www.google.com (easyprivacy.txt: 10463) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R118 +{+client-header-tagger{ab2p-unblock-elem-R118} \ +} +# @@||scorecardresearch.com/beacon.js$domain=agame.com|allrecipes.com|amctv.com|apl.tv|babycenter.com|bonappetit.com|calgaryherald.com|canada.com|cbc.ca|dailymail.co.uk|deviantart.com|discovery.com|edmontonjournal.com|fastcompany.com|financialpost.com|firstwefeast.com|hitfix.com|huffingtonpost.com|landandfarm.com|last.fm|leaderpost.com|m.tmz.com|montrealgazette.com|nationalpost.com|newsday.com|ottawacitizen.com|outsideonline.com|radaronline.com|salon.com|sci2.tv|syfy.com|theprovince.com|thestar.com|thestarphoenix.com|thinkatheist.com|vancouversun.com|windsorstar.com (easyprivacy.txt: 10671) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-elem-R119 +{+client-header-tagger{ab2p-unblock-elem-R119} \ +} +# @@||aolcdn.com/omniunih.js$domain=aim.com|autoblog.com|autos.aol.com|engadget.com|mapquest.com|video.aol.com|www.aol.com (easyprivacy.txt: 10281) +.aolcdn.com/omniunih\.js + +#ab2p-unblock-elem-R120 +{+client-header-tagger{ab2p-unblock-elem-R120} \ +} +# @@||maxmind.com^*/geoip.js$domain=aljazeera.com|ballerstatus.com|bikemap.net|carltonjordan.com|cashu.com|coolsport.tv|dereon.com|dr.dk|everydaysource.com|fab.com|girlgames4u.com|incgamers.com|ip-address.cc|maaduu.com|qatarairways.com|sat-direction.com|sotctours.com|stoli.com|vibe.com (easyprivacy.txt: 10550) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-elem-R121 +{+client-header-tagger{ab2p-unblock-elem-R121} \ +} +# @@/cdn-cgi/pe/bag2?*static.getclicky.com%2Fjs$domain=amazingpics.net (easyprivacy.txt: 10247) +/(.*/)?cdn-cgi/pe/bag2\?.*static\.getclicky\.com%2Fjs + +#ab2p-unblock-elem-R122 +{+client-header-tagger{ab2p-unblock-elem-R122} \ +} +# @@||amctv.com^*/google-analytics.js$domain=amctv.com (easyprivacy.txt: 10270) +.amctv.com/.*/google-analytics\.js + +#ab2p-unblock-elem-R123 +{+client-header-tagger{ab2p-unblock-elem-R123} \ +} +# @@||ensighten.com^*/Bootstrap.js$domain=americanexpress.com|caranddriver.com|citizensbank.com|dell.com|homedepot.com|staples.com|t-mobile.com|target.com (easyprivacy.txt: 10417) +.ensighten.com/.*/Bootstrap\.js + +#ab2p-unblock-elem-R124 +{+client-header-tagger{ab2p-unblock-elem-R124} \ +} +# @@/cdn-cgi/pe/bag2?*google-analytics.com%2Fanalytics.js$domain=amypink.de|biznews.com|cryptospot.me|droid-life.com|forwardprogressives.com|fpif.org|fullpotentialma.com|geekzone.co.nz|goldsday.com|imageupload.co.uk|is-arquitectura.es|mmanews.com|orain.org|tvunblock.com|unilad.co.uk|xrussianteens.com|youngcons.com (easyprivacy.txt: 10239) +/(.*/)?cdn-cgi/pe/bag2\?.*google-analytics\.com%2Fanalytics\.js + +#ab2p-unblock-elem-R125 +{+client-header-tagger{ab2p-unblock-elem-R125} \ +} +# @@/cdn-cgi/pe/bag2?*scorecardresearch.com$xmlhttprequest,domain=amypink.de|droid-life.com|mmanews.com|unilad.co.uk (easyprivacy.txt: 10245) +/(.*/)?cdn-cgi/pe/bag2\?.*scorecardresearch\.com + +#ab2p-unblock-elem-R126 +{+client-header-tagger{ab2p-unblock-elem-R126} \ +} +# @@||analytics.twitter.com^$domain=analytics.twitter.com (easyprivacy.txt: 10277) +.analytics.twitter.com + +#ab2p-unblock-elem-R127 +{+client-header-tagger{ab2p-unblock-elem-R127} \ +} +# @@||omtrdc.net^*/mbox/standard?$script,domain=ancestry.co.uk|ancestry.com|ancestry.com.au|ancestry.it|blogtalkradio.com (easyprivacy.txt: 10615) +.omtrdc.net/.*/mbox/standard\? + +#ab2p-unblock-elem-R128 +{+client-header-tagger{ab2p-unblock-elem-R128} \ +} +# @@||scorecardresearch.com/r?$image,domain=ancestry.com|billetnet.dk|billettservice.no|lippupalvelu.fi|macworld.com|pcworld.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se|wsj.com (easyprivacy.txt: 10840) +.scorecardresearch.com/r\? + +#ab2p-unblock-elem-R129 +{+client-header-tagger{ab2p-unblock-elem-R129} \ +} +# @@||scorecardresearch.com/r2?$image,domain=ancestry.com|billetnet.dk|billettservice.no|lippupalvelu.fi|pcworld.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se|wsj.com (easyprivacy.txt: 10839) +.scorecardresearch.com/r2\? + +#ab2p-unblock-elem-R130 +{+client-header-tagger{ab2p-unblock-elem-R130} \ +} +# @@||google.com/js/gweb/analytics/doubletrack.js$domain=android.com (easyprivacy.txt: 10472) +.google.com/js/gweb/analytics/doubletrack\.js + +#ab2p-unblock-elem-R131 +{+client-header-tagger{ab2p-unblock-elem-R131} \ +} +# @@||yandex.ru/webvisor/$xmlhttprequest,domain=anoncer.net (easyprivacy.txt: 11073) +.yandex.ru/webvisor/ +# @@||yandex.ru/watch/$xmlhttprequest,domain=anoncer.net (easyprivacy.txt: 11072) +.yandex.ru/watch/ + +#ab2p-unblock-elem-R132 +{+client-header-tagger{ab2p-unblock-elem-R132} \ +} +# @@||yandex.ru/metrika/watch.js$domain=anoncer.net|tv.yandex.ru (easyprivacy.txt: 11071) +.yandex.ru/metrika/watch\.js + +#ab2p-unblock-elem-R133 +{+client-header-tagger{ab2p-unblock-elem-R133} \ +} +# @@||pixel.quantserve.com/api/segments.json?$domain=ap.org|newsinc.com (easyprivacy.txt: 10638) +.pixel.quantserve.com/api/segments\.json\? +# @@||ad.crwdcntrl.net^$object-subrequest,domain=ap.org|newsinc.com (easyprivacy.txt: 10253) +.ad.crwdcntrl.net + +#ab2p-unblock-elem-R134 +{+client-header-tagger{ab2p-unblock-elem-R134} \ +} +# @@||code.etracker.com/t.js?et=$script,domain=apotheken-umschau.de|compo-hobby.de|diabetes-ratgeber.net|giz.de|kaguma.com|krombacher.de (easyprivacy.txt: 10864) +.code.etracker.com/t\.js\?et= + +#ab2p-unblock-elem-R135 +{+client-header-tagger{ab2p-unblock-elem-R135} \ +} +# @@||zynga.com/current/iframe/track.php?$domain=apps.facebook.com (easyprivacy.txt: 10816) +.zynga.com/current/iframe/track\.php\? + +#ab2p-unblock-elem-R136 +{+client-header-tagger{ab2p-unblock-elem-R136} \ +} +# @@||quantserve.com/quant.js$domain=apps.facebook.com|caranddriver.com|g4tv.com|nymag.com|salon.com|theblaze.com (easyprivacy.txt: 10653) +.quantserve.com/quant\.js + +#ab2p-unblock-elem-R137 +{+client-header-tagger{ab2p-unblock-elem-R137} \ +} +# @@||d2dq2ahtl5zl1z.cloudfront.net/analytics.js/*/analytics.min.js$domain=architizer.com (easyprivacy.txt: 10382) +.d2dq2ahtl5zl1z.cloudfront.net/analytics\.js/.*/analytics\.min\.js + +#ab2p-unblock-elem-R138 +{+client-header-tagger{ab2p-unblock-elem-R138} \ +} +# @@||analytics.edgesuite.net/html5/akamaihtml5-min.js?$domain=ardmediathek.de (easyprivacy.txt: 10857) +.analytics.edgesuite.net/html5/akamaihtml5-min\.js\? + +#ab2p-unblock-elem-R139 +{+client-header-tagger{ab2p-unblock-elem-R139} \ +} +# @@||longtailvideo.com/5/googlytics/googlytics-1.js$domain=arte.tv (easyprivacy.txt: 10891) +.longtailvideo.com/5/googlytics/googlytics-1\.js + +#ab2p-unblock-elem-R140 +{+client-header-tagger{ab2p-unblock-elem-R140} \ +} +# @@||tag.perfectaudience.com/serve/*.js$domain=asana.com (easyprivacy.txt: 10710) +.tag.perfectaudience.com/serve/.*\.js + +#ab2p-unblock-elem-R141 +{+client-header-tagger{ab2p-unblock-elem-R141} \ +} +# @@||pixel.quantserve.com/api/segments.xml?a=$domain=associatedcontent.com|cbs.com|cbsatlanta.com|centurylink.net|comedy.com|eurweb.com|fox5vegas.com|foxcarolina.com|grabnetworks.com|kctv5.com|kpho.com|kptv.com|theimproper.com|thenewsroom.com|tv.com|tvguide.com|wfsb.com|wnem.com|wsmv.com (easyprivacy.txt: 10639) +.pixel.quantserve.com/api/segments\.xml\?a= + +#ab2p-unblock-elem-R142 +{+client-header-tagger{ab2p-unblock-elem-R142} \ +} +# @@||webtrendslive.com^*/wtid.js?$domain=att.yahoo.com (easyprivacy.txt: 10784) +.webtrendslive.com/.*/wtid\.js\? + +#ab2p-unblock-elem-R143 +{+client-header-tagger{ab2p-unblock-elem-R143} \ +} +# @@||imrworldwide.com^*-mediaplayer&$domain=au.launch.yahoo.com (easyprivacy.txt: 10498) +.imrworldwide.com/.*-mediaplayer& + +#ab2p-unblock-elem-R144 +{+client-header-tagger{ab2p-unblock-elem-R144} \ +} +# @@||aolcdn.com/omniunih_int.js$domain=autoblog.com (easyprivacy.txt: 10282) +.aolcdn.com/omniunih_int\.js + +#ab2p-unblock-elem-R145 +{+client-header-tagger{ab2p-unblock-elem-R145} \ +} +# @@||aolcdn.com/js/mg2.js$domain=autoblog.com|autos.aol.com|dailyfinance.com|moviefone.com (easyprivacy.txt: 10280) +.aolcdn.com/js/mg2\.js + +#ab2p-unblock-elem-R146 +{+client-header-tagger{ab2p-unblock-elem-R146} \ +} +# @@||aolcdn.com^*/beacon.min.js$domain=autoblog.com|dailyfinance.com (easyprivacy.txt: 10283) +.aolcdn.com/.*/beacon\.min\.js + +#ab2p-unblock-elem-R147 +{+client-header-tagger{ab2p-unblock-elem-R147} \ +} +# @@||maxmind.com^*/geoip.js$domain=automatensuche.de (easyprivacy.txt: 10892) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-elem-R148 +{+client-header-tagger{ab2p-unblock-elem-R148} \ +} +# @@||googletagmanager.com/gtm.js?$domain=autorevue.cz|e15.cz|mobilmania.cz|sportrevue.cz|zive.cz (easyprivacy.txt: 10982) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-elem-R149 +{+client-header-tagger{ab2p-unblock-elem-R149} \ +} +# @@||google-analytics.com/urchin.js$domain=axure.com|chocomaru.com|denverbroncos.com|muselive.com|streetfire.net|wickedthemusical.com (easyprivacy.txt: 10468) +.google-analytics.com/urchin\.js + +#ab2p-unblock-elem-R150 +{+client-header-tagger{ab2p-unblock-elem-R150} \ +} +# @@||video.oms.eu/projekt/download/OMSComponent.swf$object-subrequest,domain=badische-zeitung.de (easyprivacy.txt: 10924) +.video.oms.eu/projekt/download/OMSComponent\.swf +# @@||video.oms.eu/crossdomain.xml$object-subrequest,domain=badische-zeitung.de (easyprivacy.txt: 10923) +.video.oms.eu/crossdomain\.xml + +#ab2p-unblock-elem-R4 +{+client-header-tagger{ab2p-unblock-elem-R4} \ +} +# @@||sitestat.com/europcar/europcar-de/*&ns_url=http://microsite.europcar.com/deutschebahn/$subdocument,domain=bahn.de (easyprivacy.txt: 10908) +.sitestat.com/europcar/europcar-de/.*&ns_url=http://microsite\.europcar\.com/deutschebahn/ + +#ab2p-unblock-elem-R151 +{+client-header-tagger{ab2p-unblock-elem-R151} \ +} +# @@||tracker.mattel.com^$domain=barbie.com (easyprivacy.txt: 10730) +.tracker.mattel.com + +#ab2p-unblock-elem-R152 +{+client-header-tagger{ab2p-unblock-elem-R152} \ +} +# @@||barclays.touchclarity.com^$domain=barclaycard.co.uk (easyprivacy.txt: 10298) +.barclays.touchclarity.com + +#ab2p-unblock-elem-R153 +{+client-header-tagger{ab2p-unblock-elem-R153} \ +} +# @@||smetrics.blackberry.com/b/ss/*:jump-page:$image,domain=bbm.com (easyprivacy.txt: 10687) +.smetrics.blackberry.com/b/ss/.*:jump-page: + +#ab2p-unblock-elem-R154 +{+client-header-tagger{ab2p-unblock-elem-R154} \ +} +# @@||optimost.com^*/content.js?$domain=bebo.com (easyprivacy.txt: 10621) +.optimost.com/.*/content\.js\? +# @@||optimost.com/counter/*/event.js?$domain=bebo.com (easyprivacy.txt: 10620) +.optimost.com/counter/.*/event\.js\? + +#ab2p-unblock-elem-R155 +{+client-header-tagger{ab2p-unblock-elem-R155} \ +} +# @@||google-analytics.com/plugins/ua/linkid.js$domain=bebo.com|rebtel.com|support.amd.com|vox.com (easyprivacy.txt: 10467) +.google-analytics.com/plugins/ua/linkid\.js + +#ab2p-unblock-elem-R5 +{+client-header-tagger{ab2p-unblock-elem-R5} \ +} +# @@||switch.atdmt.com/iaction/$subdocument,domain=bestbuy.com (easyprivacy.txt: 10707) +.switch.atdmt.com/iaction/ + +#ab2p-unblock-elem-R156 +{+client-header-tagger{ab2p-unblock-elem-R156} \ +} +# @@||api.chartbeat.com^$script,domain=betabeat.com|couriermail.com.au|financialpost.com|wcpo.com (easyprivacy.txt: 10285) +.api.chartbeat.com + +#ab2p-unblock-elem-R157 +{+client-header-tagger{ab2p-unblock-elem-R157} \ +} +# @@||stat.prsmedia.fr/tag/stat.js$domain=bienpublic.com (easyprivacy.txt: 10949) +.stat.prsmedia.fr/tag/stat\.js + +#ab2p-unblock-elem-R158 +{+client-header-tagger{ab2p-unblock-elem-R158} \ +} +# @@||122.2o7.net/b/ss/$image,domain=billetnet.dk|billettservice.no|citibank.co.in|goal.com|lippupalvelu.fi|pcworld.com|riverisland.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se (easyprivacy.txt: 10823) +.122.2o7.net/b/ss/ + +#ab2p-unblock-elem-R159 +{+client-header-tagger{ab2p-unblock-elem-R159} \ +} +# @@||virtualearth.net^*/LoggingService.svc/Log?$script,domain=bing.com (easyprivacy.txt: 10764) +.virtualearth.net/.*/LoggingService\.svc/Log\? + +#ab2p-unblock-elem-R160 +{+client-header-tagger{ab2p-unblock-elem-R160} \ +} +# @@||mixpanel.com/site_media/js/api/mixpanel.js$domain=blog.cloudflare.com (easyprivacy.txt: 10569) +.mixpanel.com/site_media/js/api/mixpanel\.js + +#ab2p-unblock-elem-R161 +{+client-header-tagger{ab2p-unblock-elem-R161} \ +} +# @@||trc.taboolasyndication.com^$domain=bloomberg.com|breitbart.com|breitbart.tv|nme.com|slatev.com (easyprivacy.txt: 10733) +.trc.taboolasyndication.com + +#ab2p-unblock-elem-R162 +{+client-header-tagger{ab2p-unblock-elem-R162} \ +} +# @@||georiot.com/snippet.js$domain=bound2hiphop.com (easyprivacy.txt: 10450) +.georiot.com/snippet\.js + +#ab2p-unblock-elem-R163 +{+client-header-tagger{ab2p-unblock-elem-R163} \ +} +# @@||pixel.quantserve.com/seg/r;a=$object-subrequest,domain=breitbart.tv|cbs.com|filefront.com|imdb.com|laobserved.com|tv.com (easyprivacy.txt: 10641) +.pixel.quantserve.com/seg/r;a= + +#ab2p-unblock-elem-R164 +{+client-header-tagger{ab2p-unblock-elem-R164} \ +} +# @@||google-analytics.com/ga.js$domain=carambatv.ru (easyprivacy.txt: 11065) +.google-analytics.com/ga\.js + +#ab2p-unblock-elem-R165 +{+client-header-tagger{ab2p-unblock-elem-R165} \ +} +# @@||emjcd.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easyprivacy.txt: 10414) +.emjcd.com + +#ab2p-unblock-elem-R166 +{+client-header-tagger{ab2p-unblock-elem-R166} \ +} +# @@||clicktale.net^$script,domain=cbc.ca (easyprivacy.txt: 10356) +.clicktale.net + +#ab2p-unblock-elem-R167 +{+client-header-tagger{ab2p-unblock-elem-R167} \ +} +# @@||cbsistatic.com^*/clicktale-$script,domain=cbsnews.com|cnet.com (easyprivacy.txt: 10335) +.cbsistatic.com/.*/clicktale- + +#ab2p-unblock-elem-R168 +{+client-header-tagger{ab2p-unblock-elem-R168} \ +} +# @@||dw.com.com/js/dw.js$domain=cbsnews.com|cnet.com|gamespot.com|tv.com (easyprivacy.txt: 10406) +.dw.com.com/js/dw\.js + +#ab2p-unblock-elem-R169 +{+client-header-tagger{ab2p-unblock-elem-R169} \ +} +# @@||cbsimg.net/js/cbsi/dw.js$domain=cbssports.com|gamespot.com (easyprivacy.txt: 10334) +.cbsimg.net/js/cbsi/dw\.js + +#ab2p-unblock-elem-R170 +{+client-header-tagger{ab2p-unblock-elem-R170} \ +} +# @@||imrworldwide.com/crossdomain.xml$object-subrequest,domain=cc.com|sbs.com.au (easyprivacy.txt: 10495) +.imrworldwide.com/crossdomain\.xml + +#ab2p-unblock-elem-R171 +{+client-header-tagger{ab2p-unblock-elem-R171} \ +} +# @@||googletagmanager.com/gtm.js?$domain=cdon.fi (easyprivacy.txt: 11000) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-elem-R172 +{+client-header-tagger{ab2p-unblock-elem-R172} \ +} +# @@||mxpnl.com/libs/mixpanel-*.min.js$domain=change.org|greentoe.com|intuit.com|nbc.com|thefrisky.com (easyprivacy.txt: 10588) +.mxpnl.com/libs/mixpanel-.*\.min\.js + +#ab2p-unblock-elem-R173 +{+client-header-tagger{ab2p-unblock-elem-R173} \ +} +# @@||ru4.com/wsb/$script,domain=chase.com (easyprivacy.txt: 10666) +.ru4.com/wsb/ + +#ab2p-unblock-elem-R174 +{+client-header-tagger{ab2p-unblock-elem-R174} \ +} +# @@||statics.cfmcdn.net/*/scripts/webtrends-$script,domain=cheapflights.com (easyprivacy.txt: 10699) +.statics.cfmcdn.net/.*/scripts/webtrends- +# @@||cleananalytics.com/browser.js?$script,domain=cheapflights.com (easyprivacy.txt: 10354) +.cleananalytics.com/browser\.js\? + +#ab2p-unblock-elem-R175 +{+client-header-tagger{ab2p-unblock-elem-R175} \ +} +# @@||google-analytics.com/siteopt.js?$domain=chip.de (easyprivacy.txt: 10874) +.google-analytics.com/siteopt\.js\? + +#ab2p-unblock-elem-R176 +{+client-header-tagger{ab2p-unblock-elem-R176} \ +} +# @@||geoplugin.net/javascript.gp$script,domain=christianhouseshare.com.au|gamemazing.com|soundsonline.com|support.netgear.com|support.netgear.de|support.netgear.es|support.netgear.fr|support.netgear.it|support.netgear.ru (easyprivacy.txt: 10448) +.geoplugin.net/javascript\.gp + +#ab2p-unblock-elem-R177 +{+client-header-tagger{ab2p-unblock-elem-R177} \ +} +# @@||doubleclick.net/activityi;src=$object-subrequest,domain=cicispizza.com (easyprivacy.txt: 10401) +.doubleclick.net/activityi;src= + +#ab2p-unblock-elem-R178 +{+client-header-tagger{ab2p-unblock-elem-R178} \ +} +# @@||localytics.com^*/localytics.min.js$domain=ciscospark.com|citymapper.com (easyprivacy.txt: 10533) +.localytics.com/.*/localytics\.min\.js + +#ab2p-unblock-elem-R179 +{+client-header-tagger{ab2p-unblock-elem-R179} \ +} +# @@||mpsnare.iesnare.com/snare.js$domain=citi.com|citibank.com|enmasse.com|login.skype.com (easyprivacy.txt: 10582) +.mpsnare.iesnare.com/snare\.js + +#ab2p-unblock-elem-R180 +{+client-header-tagger{ab2p-unblock-elem-R180} \ +} +# @@||sundaysky.com/coastal/embedded/sundaysky.js$domain=clearlycontacts.ca (easyprivacy.txt: 10703) +.sundaysky.com/coastal/embedded/sundaysky\.js + +#ab2p-unblock-elem-R181 +{+client-header-tagger{ab2p-unblock-elem-R181} \ +} +# @@||ad.de.doubleclick.net/imp;$object-subrequest,domain=clipfish.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10853) +.ad.de.doubleclick.net/imp; + +#ab2p-unblock-elem-R182 +{+client-header-tagger{ab2p-unblock-elem-R182} \ +} +# @@||cloudflare.com/analytics?$domain=cloudflare.com (easyprivacy.txt: 10357) +.cloudflare.com/analytics\? + +#ab2p-unblock-elem-R9 +{+client-header-tagger{ab2p-unblock-elem-R9} \ +} +# @@||go-mpulse.net/boomerang/$script,domain=cnet.com (easyprivacy.txt: 10456) +.go-mpulse.net/boomerang/ +# @@||dw.cbsi.com/js/dw.js$domain=cnet.com (easyprivacy.txt: 10405) +.dw.cbsi.com/js/dw\.js +# @@||cbsistatic.com^*/tealium.js$domain=cnet.com (easyprivacy.txt: 10337) +.cbsistatic.com/.*/tealium\.js +# @@||cbsistatic.com^*/google-analytics.js$domain=cnet.com (easyprivacy.txt: 10336) +.cbsistatic.com/.*/google-analytics\.js + +#ab2p-unblock-elem-R183 +{+client-header-tagger{ab2p-unblock-elem-R183} \ +} +# @@||dw.cbsi.com/anonc.js$domain=cnet.com|gamespot.com (easyprivacy.txt: 10404) +.dw.cbsi.com/anonc\.js + +#ab2p-unblock-elem-R184 +{+client-header-tagger{ab2p-unblock-elem-R184} \ +} +# @@||turner.com^*/aspenanalytics.xml$domain=cnn.com (easyprivacy.txt: 10736) +.turner.com/.*/aspenanalytics\.xml +# @@||turner.com/cnn/*/video/chartbeat.js$domain=cnn.com (easyprivacy.txt: 10735) +.turner.com/cnn/.*/video/chartbeat\.js + +#ab2p-unblock-elem-R185 +{+client-header-tagger{ab2p-unblock-elem-R185} \ +} +# @@||static.rpxnow.com/js/lib/rpx.js$domain=colbertnation.com|thedailyshow.com (easyprivacy.txt: 10698) +.static.rpxnow.com/js/lib/rpx\.js + +#ab2p-unblock-elem-R186 +{+client-header-tagger{ab2p-unblock-elem-R186} \ +} +# @@||gorillanation.com/js/triggertag.js$domain=comingsoon.net|playstationlifestyle.net (easyprivacy.txt: 10475) +.gorillanation.com/js/triggertag\.js + +#ab2p-unblock-elem-R187 +{+client-header-tagger{ab2p-unblock-elem-R187} \ +} +# @@||cxense.com/cx.js$domain=common.tv2.dk (easyprivacy.txt: 10985) +.cxense.com/cx\.js + +#ab2p-unblock-elem-R188 +{+client-header-tagger{ab2p-unblock-elem-R188} \ +} +# @@||cdn.optimizely.com/js/*.js$domain=compassion.com|creditsesame.com|forbes.com|freeshipping.com|heroku.com|hotukdeals.com|imageshack.com|lifelock.com|malwarebytes.org|policymic.com|ricardo.ch|techrepublic.com|zdnet.com (easyprivacy.txt: 10343) +.cdn.optimizely.com/js/.*\.js + +#ab2p-unblock-elem-R189 +{+client-header-tagger{ab2p-unblock-elem-R189} \ +} +# @@||imrworldwide.com/v60.js$domain=corriereadriatico.it|ilgazzettino.it|ilmattino.it|ilmessaggero.it|leggo.it|quotidianodipuglia.it (easyprivacy.txt: 11028) +.imrworldwide.com/v60\.js +# @@||codicefl.shinystat.com/cgi-bin/getswf.cgi?*PolymediaShow$object-subrequest,domain=corriereadriatico.it|ilgazzettino.it|ilmattino.it|ilmessaggero.it|leggo.it|quotidianodipuglia.it (easyprivacy.txt: 11024) +.codicefl.shinystat.com/cgi-bin/getswf\.cgi\?.*PolymediaShow + +#ab2p-unblock-elem-R190 +{+client-header-tagger{ab2p-unblock-elem-R190} \ +} +# @@||cqcounter.com^$domain=cqcounter.com (easyprivacy.txt: 10372) +.cqcounter.com + +#ab2p-unblock-elem-R191 +{+client-header-tagger{ab2p-unblock-elem-R191} \ +} +# @@||ccom-cdn.com/assets/img/clear.gif?ccom_md5=$domain=credit.com (easyprivacy.txt: 10338) +.ccom-cdn.com/assets/img/clear\.gif\?ccom_md5= + +#ab2p-unblock-elem-R192 +{+client-header-tagger{ab2p-unblock-elem-R192} \ +} +# @@||newsinc.com^*/getPlacements.js?pid=$xmlhttprequest,domain=csmonitor.com (easyprivacy.txt: 10601) +.newsinc.com/.*/getPlacements\.js\?pid= +# @@||dmeserv.newsinc.com/dpid/*/PPEmbed.js$domain=csmonitor.com (easyprivacy.txt: 10399) +.dmeserv.newsinc.com/dpid/.*/PPEmbed\.js + +#ab2p-unblock-elem-R193 +{+client-header-tagger{ab2p-unblock-elem-R193} \ +} +# @@||media.flixfacts.com/js/loader.js$domain=currys.co.uk (easyprivacy.txt: 10555) +.media.flixfacts.com/js/loader\.js +# @@||media.flixcar.com/delivery/js/inpage/*/mpn/$script,domain=currys.co.uk (easyprivacy.txt: 10554) +.media.flixcar.com/delivery/js/inpage/.*/mpn/ +# @@||d396ihyrqc81w.cloudfront.net^$domain=currys.co.uk (easyprivacy.txt: 10385) +.d396ihyrqc81w.cloudfront.net + +#ab2p-unblock-elem-R194 +{+client-header-tagger{ab2p-unblock-elem-R194} \ +} +# @@||77.91.202.130/js/20050/xiti.js$domain=custojusto.pt (easyprivacy.txt: 11050) +.77.91.202.130/js/20050/xiti\.js + +#ab2p-unblock-elem-R11 +{+client-header-tagger{ab2p-unblock-elem-R11} \ +} +# @@||telize.com/geoip?$script,domain=dailymotion.com (easyprivacy.txt: 10718) +.telize.com/geoip\? + +#ab2p-unblock-elem-R195 +{+client-header-tagger{ab2p-unblock-elem-R195} \ +} +# @@||darmstadt.ui-traffic.de/mobile/webapp/bower_components/heatmap.js$domain=darmstadt.ui-traffic.de (easyprivacy.txt: 10868) +.darmstadt.ui-traffic.de/mobile/webapp/bower_components/heatmap\.js + +#ab2p-unblock-elem-R196 +{+client-header-tagger{ab2p-unblock-elem-R196} \ +} +# @@||amazonaws.com^*-google-analytics.js$domain=dcard.tw (easyprivacy.txt: 10960) +.amazonaws.com/.*-google-analytics\.js + +#ab2p-unblock-elem-R197 +{+client-header-tagger{ab2p-unblock-elem-R197} \ +} +# @@||playwire.com/bolt/js/zeus/$script,domain=desi-tashan.com (easyprivacy.txt: 11058) +.playwire.com/bolt/js/zeus/ + +#ab2p-unblock-elem-R198 +{+client-header-tagger{ab2p-unblock-elem-R198} \ +} +# @@||wrap.tradedoubler.com/wrap?$script,domain=desigual.com (easyprivacy.txt: 10801) +.wrap.tradedoubler.com/wrap\? + +#ab2p-unblock-elem-R199 +{+client-header-tagger{ab2p-unblock-elem-R199} \ +} +# @@||googletagmanager.com/gtm.js?$domain=desigual.com|drumstick.com|ebuyer.com|elevationscu.com|gamepix.com|google.com|keygames.com|optus.com.au|rebtel.com|rockstargames.com|rollingstone.com|rozetka.com.ua|sixflags.com|support.amd.com|talktalk.co.uk|techradar.com|toto.co.jp|usmagazine.com (easyprivacy.txt: 10473) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-elem-R200 +{+client-header-tagger{ab2p-unblock-elem-R200} \ +} +# @@||google-analytics.com/plugins/ua/ec.js$domain=desigual.com|rebtel.com (easyprivacy.txt: 10466) +.google-analytics.com/plugins/ua/ec\.js + +#ab2p-unblock-elem-R201 +{+client-header-tagger{ab2p-unblock-elem-R201} \ +} +# @@||amazonaws.com/searchdiscovery-satellite-production/$domain=dice.com (easyprivacy.txt: 10267) +.amazonaws.com/searchdiscovery-satellite-production/ + +#ab2p-unblock-elem-R202 +{+client-header-tagger{ab2p-unblock-elem-R202} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=diejugendherbergen.de (easyprivacy.txt: 10914) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-elem-R203 +{+client-header-tagger{ab2p-unblock-elem-R203} \ +} +# @@||omnitagjs.com/fo-api/omniTag?$xmlhttprequest,domain=dl.free.fr (easyprivacy.txt: 10942) +.omnitagjs.com/fo-api/omniTag\? +# @@||omnitagjs.com/fo-*/captcha/$domain=dl.free.fr (easyprivacy.txt: 10941) +.omnitagjs.com/fo-.*/captcha/ +# @@||adyoulike.omnitagjs.com^$script,domain=dl.free.fr (easyprivacy.txt: 10932) +.adyoulike.omnitagjs.com + +#ab2p-unblock-elem-R204 +{+client-header-tagger{ab2p-unblock-elem-R204} \ +} +# @@||picsearch.com/js/comscore.js$domain=dn.se (easyprivacy.txt: 11083) +.picsearch.com/js/comscore\.js + +#ab2p-unblock-elem-R205 +{+client-header-tagger{ab2p-unblock-elem-R205} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=dnf.qq.com (easyprivacy.txt: 10970) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-elem-R206 +{+client-header-tagger{ab2p-unblock-elem-R206} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=doverdowns.com|lifehack.org|maxiclimber.com|merriam-webster.com|toto.co.jp|tripinsurance.ru|vimeo.com (easyprivacy.txt: 10700) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-elem-R207 +{+client-header-tagger{ab2p-unblock-elem-R207} \ +} +# @@/cdn-cgi/pe/bag2?*yieldbot.intent.js$domain=droid-life.com (easyprivacy.txt: 10248) +/(.*/)?cdn-cgi/pe/bag2\?.*yieldbot\.intent\.js +# @@/cdn-cgi/pe/bag2?*skimlinks.js$domain=droid-life.com (easyprivacy.txt: 10246) +/(.*/)?cdn-cgi/pe/bag2\?.*skimlinks\.js +# @@/cdn-cgi/pe/bag2?*googleadservices.com$domain=droid-life.com (easyprivacy.txt: 10240) +/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com + +#ab2p-unblock-elem-R208 +{+client-header-tagger{ab2p-unblock-elem-R208} \ +} +# @@||dtdc.in/tracking/tracking_results_$subdocument,domain=dtdc.com (easyprivacy.txt: 10403) +.dtdc.in/tracking/tracking_results_ + +#ab2p-unblock-elem-R209 +{+client-header-tagger{ab2p-unblock-elem-R209} \ +} +# @@||a.visualrevenue.com/vrs.js$domain=ebaumsworld.com|nydailynews.com (easyprivacy.txt: 10250) +.a.visualrevenue.com/vrs\.js + +#ab2p-unblock-elem-R210 +{+client-header-tagger{ab2p-unblock-elem-R210} \ +} +# @@||track.mybloglog.com/js/jsserv.php?$domain=egotastic.com (easyprivacy.txt: 10727) +.track.mybloglog.com/js/jsserv\.php\? + +#ab2p-unblock-elem-R14 +{+client-header-tagger{ab2p-unblock-elem-R14} \ +} +# @@||scripts.demandmedia.com/wm.js$domain=ehow.com (easyprivacy.txt: 10674) +.scripts.demandmedia.com/wm\.js + +#ab2p-unblock-elem-R211 +{+client-header-tagger{ab2p-unblock-elem-R211} \ +} +# @@||mxpnl.com/libs/mixpanel-*.min.js$domain=eloan.co.il (easyprivacy.txt: 11011) +.mxpnl.com/libs/mixpanel-.*\.min\.js +# @@||mixpanel.com/track/?data=$xmlhttprequest,domain=eloan.co.il (easyprivacy.txt: 11010) +.mixpanel.com/track/\?data= + +#ab2p-unblock-elem-R212 +{+client-header-tagger{ab2p-unblock-elem-R212} \ +} +# @@||email.1und1.de/appsuite/api/*/1and1_integration/tracking/tracking.js$domain=email.1und1.de (easyprivacy.txt: 10870) +.email.1und1.de/appsuite/api/.*/1and1_integration/tracking/tracking\.js + +#ab2p-unblock-elem-R213 +{+client-header-tagger{ab2p-unblock-elem-R213} \ +} +# @@||aolcdn.com/omniunih_int.js$domain=engadget.com (easyprivacy.txt: 10962) +.aolcdn.com/omniunih_int\.js +# @@||aolcdn.com/js/mg2.js$domain=engadget.com (easyprivacy.txt: 10961) +.aolcdn.com/js/mg2\.js +# @@||blogsmithmedia.com^*/gravity-beacon.js$domain=engadget.com (easyprivacy.txt: 10311) +.blogsmithmedia.com/.*/gravity-beacon\.js + +#ab2p-unblock-elem-R214 +{+client-header-tagger{ab2p-unblock-elem-R214} \ +} +# @@||yandex.ru/metrika/watch.js$domain=engwords.net (easyprivacy.txt: 10807) +.yandex.ru/metrika/watch\.js + +#ab2p-unblock-elem-R215 +{+client-header-tagger{ab2p-unblock-elem-R215} \ +} +# @@||estat.com/js/*.js?$domain=entertainmentwise.com (easyprivacy.txt: 10425) +.estat.com/js/.*\.js\? + +#ab2p-unblock-elem-R216 +{+client-header-tagger{ab2p-unblock-elem-R216} \ +} +# @@||112.2o7.net/b/ss/$image,domain=espn.com.br (easyprivacy.txt: 10822) +.112.2o7.net/b/ss/ + +#ab2p-unblock-elem-R217 +{+client-header-tagger{ab2p-unblock-elem-R217} \ +} +# @@||espncdn.com/combiner/*/foresee/$script,domain=espn.go.com (easyprivacy.txt: 10424) +.espncdn.com/combiner/.*/foresee/ +# @@||espncdn.com/combiner/*/chartbeat/$script,domain=espn.go.com (easyprivacy.txt: 10423) +.espncdn.com/combiner/.*/chartbeat/ + +#ab2p-unblock-elem-R218 +{+client-header-tagger{ab2p-unblock-elem-R218} \ +} +# @@||imrworldwide.com^*/ggce354.swf$domain=espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com (easyprivacy.txt: 10500) +.imrworldwide.com/.*/ggce354\.swf + +#ab2p-unblock-elem-R219 +{+client-header-tagger{ab2p-unblock-elem-R219} \ +} +# @@||visiblemeasures.com/crossdomain.xml$object-subrequest,domain=espn.go.com|live.indiatimes.com (easyprivacy.txt: 10766) +.visiblemeasures.com/crossdomain\.xml + +#ab2p-unblock-elem-R220 +{+client-header-tagger{ab2p-unblock-elem-R220} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=europafm.com (easyprivacy.txt: 10496) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-elem-R221 +{+client-header-tagger{ab2p-unblock-elem-R221} \ +} +# @@||vast.com/vimpressions.js$domain=everycarlisted.com (easyprivacy.txt: 10755) +.vast.com/vimpressions\.js + +#ab2p-unblock-elem-R222 +{+client-header-tagger{ab2p-unblock-elem-R222} \ +} +# @@||crowdscience.com/start-$script,domain=everydayhealth.com (easyprivacy.txt: 10376) +.crowdscience.com/start- +# @@||crowdscience.com/max-$script,domain=everydayhealth.com (easyprivacy.txt: 10375) +.crowdscience.com/max- + +#ab2p-unblock-elem-R223 +{+client-header-tagger{ab2p-unblock-elem-R223} \ +} +# @@||metrics.el-mundo.net/b/ss/$image,domain=expansion.com (easyprivacy.txt: 11076) +.metrics.el-mundo.net/b/ss/ + +#ab2p-unblock-elem-R16 +{+client-header-tagger{ab2p-unblock-elem-R16} \ +} +# @@||vupload-edge.facebook.com/ajax/video/upload/$xmlhttprequest,domain=facebook.com (easyprivacy.txt: 10772) +.vupload-edge.facebook.com/ajax/video/upload/ + +#ab2p-unblock-elem-R224 +{+client-header-tagger{ab2p-unblock-elem-R224} \ +} +# @@||maxmind.com^*/geoip2.js$domain=fallout4.com|metronews.ca|mtv.com.lb|teslamotors.com (easyprivacy.txt: 10551) +.maxmind.com/.*/geoip2\.js + +#ab2p-unblock-elem-R225 +{+client-header-tagger{ab2p-unblock-elem-R225} \ +} +# @@||googletagmanager.com/gtm.js?$domain=feex.co.il|reshet.tv (easyprivacy.txt: 11007) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-elem-R226 +{+client-header-tagger{ab2p-unblock-elem-R226} \ +} +# @@||yimg.com/bm/lib/fi/common/*/yfi_comscore.js$domain=finance.yahoo.com (easyprivacy.txt: 10808) +.yimg.com/bm/lib/fi/common/.*/yfi_comscore\.js + +#ab2p-unblock-elem-R227 +{+client-header-tagger{ab2p-unblock-elem-R227} \ +} +# @@||adobetag.com^*s_code.js$domain=fnac.com (easyprivacy.txt: 10261) +.adobetag.com/.*s_code\.js + +#ab2p-unblock-elem-R228 +{+client-header-tagger{ab2p-unblock-elem-R228} \ +} +# @@||cloudfront.net^*/keen.min.js$domain=foodnetwork.co.uk (easyprivacy.txt: 10365) +.cloudfront.net/.*/keen\.min\.js + +#ab2p-unblock-elem-R229 +{+client-header-tagger{ab2p-unblock-elem-R229} \ +} +# @@||optimizely.com/js/geo.js$domain=forbes.com (easyprivacy.txt: 10619) +.optimizely.com/js/geo\.js + +#ab2p-unblock-elem-R230 +{+client-header-tagger{ab2p-unblock-elem-R230} \ +} +# @@||everestjs.net/static/st.js$domain=ford.com (easyprivacy.txt: 10426) +.everestjs.net/static/st\.js + +#ab2p-unblock-elem-R231 +{+client-header-tagger{ab2p-unblock-elem-R231} \ +} +# @@||rfdcontent.com^*/utag.loader.js$domain=forums.redflagdeals.com (easyprivacy.txt: 10664) +.rfdcontent.com/.*/utag\.loader\.js + +#ab2p-unblock-elem-R232 +{+client-header-tagger{ab2p-unblock-elem-R232} \ +} +# @@/cdn-cgi/pe/bag2?*googlesyndication.com%2Fpagead%2Fosd.js$domain=forwardprogressives.com (easyprivacy.txt: 10241) +/(.*/)?cdn-cgi/pe/bag2\?.*googlesyndication\.com%2Fpagead%2Fosd\.js + +#ab2p-unblock-elem-R233 +{+client-header-tagger{ab2p-unblock-elem-R233} \ +} +# @@||google-analytics.com/cx/api.js?experiment=$domain=foxnews.com (easyprivacy.txt: 10464) +.google-analytics.com/cx/api\.js\?experiment= + +#ab2p-unblock-elem-R234 +{+client-header-tagger{ab2p-unblock-elem-R234} \ +} +# @@||optimost.com^*/FT_live.js$domain=ft.com (easyprivacy.txt: 10622) +.optimost.com/.*/FT_live\.js +# @@||media.ft.com/j/optimost-$domain=ft.com (easyprivacy.txt: 10556) +.media.ft.com/j/optimost- +# @@||by.optimost.com^$domain=ft.com (easyprivacy.txt: 10324) +.by.optimost.com + +#ab2p-unblock-elem-R235 +{+client-header-tagger{ab2p-unblock-elem-R235} \ +} +# @@||gaanacdn.com/*_social_tracking.js$domain=gaana.com (easyprivacy.txt: 10442) +.gaanacdn.com/.*_social_tracking\.js + +#ab2p-unblock-elem-R236 +{+client-header-tagger{ab2p-unblock-elem-R236} \ +} +# @@||ivwextern.prosieben.de/php-bin/functions/ivwbox/ivwbox_extern.php?path=$object-subrequest,domain=galileo-videolexikon.de (easyprivacy.txt: 10886) +.ivwextern.prosieben.de/php-bin/functions/ivwbox/ivwbox_extern\.php\?path= +# @@||ivwextern.prosieben.de/crossdomain.xml$object-subrequest,domain=galileo-videolexikon.de (easyprivacy.txt: 10885) +.ivwextern.prosieben.de/crossdomain\.xml + +#ab2p-unblock-elem-R237 +{+client-header-tagger{ab2p-unblock-elem-R237} \ +} +# @@||dpm.demdex.net/id?$script,domain=gamespot.com (easyprivacy.txt: 10402) +.dpm.demdex.net/id\? + +#ab2p-unblock-elem-R238 +{+client-header-tagger{ab2p-unblock-elem-R238} \ +} +# @@||garmin.com/modern/main/js/properties/metrics/metrics$domain=garmin.com (easyprivacy.txt: 10445) +.garmin.com/modern/main/js/properties/metrics/metrics + +#ab2p-unblock-elem-R239 +{+client-header-tagger{ab2p-unblock-elem-R239} \ +} +# @@||uim.tifbs.net/js/$script,domain=gewinnspiel.gmx.de|gewinnspiel.web.de|top.de (easyprivacy.txt: 10922) +.uim.tifbs.net/js/ + +#ab2p-unblock-elem-R240 +{+client-header-tagger{ab2p-unblock-elem-R240} \ +} +# @@||adclear.teufel.de^*/acv?*&ms=http$image,domain=gewinnspiele.freenet.de (easyprivacy.txt: 10854) +.adclear.teufel.de/.*/acv\?.*&ms=http + +#ab2p-unblock-elem-R241 +{+client-header-tagger{ab2p-unblock-elem-R241} \ +} +# @@||trc.taboola.com/*/log/3/available|$subdocument,domain=globes.co.il (easyprivacy.txt: 10732) +.trc.taboola.com/.*/log/3/available$ + +#ab2p-unblock-elem-R242 +{+client-header-tagger{ab2p-unblock-elem-R242} \ +} +# @@||google.com/js/gweb/analytics/$domain=google.com (easyprivacy.txt: 10471) +.google.com/js/gweb/analytics/ + +#ab2p-unblock-elem-R243 +{+client-header-tagger{ab2p-unblock-elem-R243} \ +} +# @@||codicebusiness.shinystat.com/cgi-bin/getcod.cgi?$script,domain=grazia.it|panorama-auto.it|panorama.it (easyprivacy.txt: 11022) +.codicebusiness.shinystat.com/cgi-bin/getcod\.cgi\? + +#ab2p-unblock-elem-R244 +{+client-header-tagger{ab2p-unblock-elem-R244} \ +} +# @@||segment.io/v1/$xmlhttprequest,domain=greentoe.com|thescene.com (easyprivacy.txt: 10677) +.segment.io/v1/ +# @@||segment.io/analytics.js/*/analytics.min.js$domain=greentoe.com|thescene.com (easyprivacy.txt: 10676) +.segment.io/analytics\.js/.*/analytics\.min\.js + +#ab2p-unblock-elem-R245 +{+client-header-tagger{ab2p-unblock-elem-R245} \ +} +# @@||belboon.de/adtracking/$subdocument,domain=gutscheindoktor.de|preis-vergleich.tv|preismafia.com (easyprivacy.txt: 10858) +.belboon.de/adtracking/ + +#ab2p-unblock-elem-R246 +{+client-header-tagger{ab2p-unblock-elem-R246} \ +} +# @@||adobetag.com^*/sitecatalyst.js$domain=hbf.com.au|seattlepi.com|tv.com (easyprivacy.txt: 10259) +.adobetag.com/.*/sitecatalyst\.js + +#ab2p-unblock-elem-R247 +{+client-header-tagger{ab2p-unblock-elem-R247} \ +} +# @@||heatmap.it^$domain=heatmap.me (easyprivacy.txt: 10847) +.heatmap.it + +#ab2p-unblock-elem-R248 +{+client-header-tagger{ab2p-unblock-elem-R248} \ +} +# @@||nokia.com/b/ss/$image,domain=here.com (easyprivacy.txt: 10604) +.nokia.com/b/ss/ + +#ab2p-unblock-elem-R249 +{+client-header-tagger{ab2p-unblock-elem-R249} \ +} +# @@||hise.spring-tns.net^*^cp=$image,domain=hintaseuranta.fi (easyprivacy.txt: 11002) +.hise.spring-tns.net/.*[^\w%.-]cp= +# @@||hise.spring-tns.net/survey.js$domain=hintaseuranta.fi (easyprivacy.txt: 11001) +.hise.spring-tns.net/survey\.js + +#ab2p-unblock-elem-R250 +{+client-header-tagger{ab2p-unblock-elem-R250} \ +} +# @@||netdna-ssl.com/lib/jquery-google-analytics/jquery.google-analytics.js$domain=homepath.com (easyprivacy.txt: 10598) +.netdna-ssl.com/lib/jquery-google-analytics/jquery\.google-analytics\.js +# @@||cloudfront.net^*/jquery.google-analytics.js$domain=homepath.com (easyprivacy.txt: 10364) +.cloudfront.net/.*/jquery\.google-analytics\.js + +#ab2p-unblock-elem-R251 +{+client-header-tagger{ab2p-unblock-elem-R251} \ +} +# @@||whoson.com/include.js?$script,domain=hotelchocolat.com (easyprivacy.txt: 10788) +.whoson.com/include\.js\? + +#ab2p-unblock-elem-R252 +{+client-header-tagger{ab2p-unblock-elem-R252} \ +} +# @@||hotwirestatic.com^*/opinionLab.js$domain=hotwire.com (easyprivacy.txt: 10490) +.hotwirestatic.com/.*/opinionLab\.js + +#ab2p-unblock-elem-R253 +{+client-header-tagger{ab2p-unblock-elem-R253} \ +} +# @@||images-iherb.com/js/ga-pro.min2.js$domain=iherb.com (easyprivacy.txt: 10493) +.images-iherb.com/js/ga-pro\.min2\.js + +#ab2p-unblock-elem-R254 +{+client-header-tagger{ab2p-unblock-elem-R254} \ +} +# @@||yimg.com/mi/eu/ywa.js$domain=immowelt.de (easyprivacy.txt: 10925) +.yimg.com/mi/eu/ywa\.js + +#ab2p-unblock-elem-R255 +{+client-header-tagger{ab2p-unblock-elem-R255} \ +} +# @@||lp.longtailvideo.com/5/yourlytics/yourlytics-1.js$domain=indiedb.com|indieroyale.com|moddb.com (easyprivacy.txt: 10537) +.lp.longtailvideo.com/5/yourlytics/yourlytics-1\.js + +#ab2p-unblock-elem-R256 +{+client-header-tagger{ab2p-unblock-elem-R256} \ +} +# @@||trc.taboola.com/inncoil/log/3/available$subdocument,domain=inn.co.il (easyprivacy.txt: 11015) +.trc.taboola.com/inncoil/log/3/available + +#ab2p-unblock-elem-R257 +{+client-header-tagger{ab2p-unblock-elem-R257} \ +} +# @@||ad.crwdcntrl.net^$script,domain=investopedia.com (easyprivacy.txt: 10254) +.ad.crwdcntrl.net + +#ab2p-unblock-elem-R258 +{+client-header-tagger{ab2p-unblock-elem-R258} \ +} +# @@||stat24.com/crossdomain.xml$domain=ipla.tv (easyprivacy.txt: 11048) +.stat24.com/crossdomain\.xml + +#ab2p-unblock-elem-R259 +{+client-header-tagger{ab2p-unblock-elem-R259} \ +} +# @@||eloqua.com/visitor/v200/svrgp.aspx?$domain=itworld.com|juniper.net (easyprivacy.txt: 10413) +.eloqua.com/visitor/v200/svrgp\.aspx\? + +#ab2p-unblock-elem-R260 +{+client-header-tagger{ab2p-unblock-elem-R260} \ +} +# @@||browserscope.org/user/beacon/*?callback=$script,domain=jsperf.com (easyprivacy.txt: 10319) +.browserscope.org/user/beacon/.*\?callback= + +#ab2p-unblock-elem-R261 +{+client-header-tagger{ab2p-unblock-elem-R261} \ +} +# @@||kapaza.be^*/xtcore_$script,domain=kapaza.be (easyprivacy.txt: 10991) +.kapaza.be/.*/xtcore_ + +#ab2p-unblock-elem-R262 +{+client-header-tagger{ab2p-unblock-elem-R262} \ +} +# @@||cloudfront.net/atrk.js$domain=karnaval.com|livestream.com|luxuryrealestate.com (easyprivacy.txt: 10359) +.cloudfront.net/atrk\.js + +#ab2p-unblock-elem-R263 +{+client-header-tagger{ab2p-unblock-elem-R263} \ +} +# @@||vidtech.cbsinteractive.com^*/AkamaiAnalytics.swf$domain=kuathletics.com|mutigers.com|okstate.com (easyprivacy.txt: 10761) +.vidtech.cbsinteractive.com/.*/AkamaiAnalytics\.swf + +#ab2p-unblock-elem-R264 +{+client-header-tagger{ab2p-unblock-elem-R264} \ +} +# @@||cache2.delvenetworks.com/ps/c/v1/$object-subrequest,domain=lapresse.ca (easyprivacy.txt: 10936) +.cache2.delvenetworks.com/ps/c/v1/ +# @@||cache2.delvenetworks.com/crossdomain.xml$domain=lapresse.ca (easyprivacy.txt: 10935) +.cache2.delvenetworks.com/crossdomain\.xml + +#ab2p-unblock-elem-R265 +{+client-header-tagger{ab2p-unblock-elem-R265} \ +} +# @@||slatic.net/js/tracking.js$domain=lazada.co.id (easyprivacy.txt: 10686) +.slatic.net/js/tracking\.js + +#ab2p-unblock-elem-R266 +{+client-header-tagger{ab2p-unblock-elem-R266} \ +} +# @@||services.fliqz.com/metrics/*/applications/$object-subrequest,domain=leftlanenews.com (easyprivacy.txt: 10680) +.services.fliqz.com/metrics/.*/applications/ + +#ab2p-unblock-elem-R267 +{+client-header-tagger{ab2p-unblock-elem-R267} \ +} +# @@||sundaysky.com^*/default/sundaysky.js$domain=lenovo.com (easyprivacy.txt: 10705) +.sundaysky.com/.*/default/sundaysky\.js +# @@||sundaysky.com/sundaysky.js?$domain=lenovo.com (easyprivacy.txt: 10704) +.sundaysky.com/sundaysky\.js\? + +#ab2p-unblock-elem-R268 +{+client-header-tagger{ab2p-unblock-elem-R268} \ +} +# @@||maxmind.com/app/country.js$domain=lenovo.com|nationalgeographic.com|paypal.fr (easyprivacy.txt: 10549) +.maxmind.com/app/country\.js + +#ab2p-unblock-elem-R269 +{+client-header-tagger{ab2p-unblock-elem-R269} \ +} +# @@||google-analytics.com/analytics.js$domain=ligtv.com.tr (easyprivacy.txt: 11088) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R270 +{+client-header-tagger{ab2p-unblock-elem-R270} \ +} +# @@||piwik.windit.de/piwik.js$domain=livespotting.tv (easyprivacy.txt: 10896) +.piwik.windit.de/piwik\.js + +#ab2p-unblock-elem-R271 +{+client-header-tagger{ab2p-unblock-elem-R271} \ +} +# @@||ooyala.com/3rdparty/comscore_$object-subrequest,domain=livetvcafe.net|player.complex.com (easyprivacy.txt: 10616) +.ooyala.com/3rdparty/comscore_ + +#ab2p-unblock-elem-R272 +{+client-header-tagger{ab2p-unblock-elem-R272} \ +} +# @@||google-analytics.com/plugins/ga/inpage_linkid.js$domain=lovehoney.co.uk|maxiclimber.com|opendns.com|openshift.com|vimeo.com|westernunion.at|westernunion.be|westernunion.ca|westernunion.ch|westernunion.cl|westernunion.co.jp|westernunion.co.nz|westernunion.co.uk|westernunion.co.za|westernunion.com|westernunion.com.au|westernunion.com.co|westernunion.com.hk|westernunion.com.my|westernunion.com.pe|westernunion.de|westernunion.fr|westernunion.ie|westernunion.it|westernunion.nl|westernunion.ph|westernunion.pl|westernunion.se|westernunion.sg (easyprivacy.txt: 10465) +.google-analytics.com/plugins/ga/inpage_linkid\.js + +#ab2p-unblock-elem-R273 +{+client-header-tagger{ab2p-unblock-elem-R273} \ +} +# @@||linezing.com^$domain=lz.taobao.com (easyprivacy.txt: 10968) +.linezing.com + +#ab2p-unblock-elem-R274 +{+client-header-tagger{ab2p-unblock-elem-R274} \ +} +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=m.flickr.com (easyprivacy.txt: 10447) +.geo.query.yahoo.com + +#ab2p-unblock-elem-R275 +{+client-header-tagger{ab2p-unblock-elem-R275} \ +} +# @@||chartbeat.com/js/chartbeat.js$domain=m.tmz.com|salon.com|zap2it.com (easyprivacy.txt: 10347) +.chartbeat.com/js/chartbeat\.js + +#ab2p-unblock-elem-R276 +{+client-header-tagger{ab2p-unblock-elem-R276} \ +} +# @@||cloudfront.net/opentag-*.js$domain=mackweldon.com|telegraph.co.uk (easyprivacy.txt: 10363) +.cloudfront.net/opentag-.*\.js + +#ab2p-unblock-elem-R277 +{+client-header-tagger{ab2p-unblock-elem-R277} \ +} +# @@||omtrdc.net/b/ss/$image,domain=macworld.com|pcworld.com|techhive.com (easyprivacy.txt: 10838) +.omtrdc.net/b/ss/ + +#ab2p-unblock-elem-R278 +{+client-header-tagger{ab2p-unblock-elem-R278} \ +} +# @@||thebrighttag.com/tag?site=$script,domain=macys.com (easyprivacy.txt: 10720) +.thebrighttag.com/tag\?site= +# @@||btstatic.com/tag.js$domain=macys.com (easyprivacy.txt: 10321) +.btstatic.com/tag\.js + +#ab2p-unblock-elem-R279 +{+client-header-tagger{ab2p-unblock-elem-R279} \ +} +# @@||mail.biz.rr.com/images/portal/blank.gif$domain=mail.biz.rr.com (easyprivacy.txt: 10544) +.mail.biz.rr.com/images/portal/blank\.gif + +#ab2p-unblock-elem-R280 +{+client-header-tagger{ab2p-unblock-elem-R280} \ +} +# @@||mail-www.baynote.net^$domain=mail.com (easyprivacy.txt: 10543) +.mail-www.baynote.net + +#ab2p-unblock-elem-R281 +{+client-header-tagger{ab2p-unblock-elem-R281} \ +} +# @@||webcenter.tiscali.it/distribuzione/_script/audience_science.js$domain=mail.tiscali.it (easyprivacy.txt: 11035) +.webcenter.tiscali.it/distribuzione/_script/audience_science\.js +# @@||tiscali.it/js/webtrends/$script,domain=mail.tiscali.it (easyprivacy.txt: 11032) +.tiscali.it/js/webtrends/ + +#ab2p-unblock-elem-R282 +{+client-header-tagger{ab2p-unblock-elem-R282} \ +} +# @@||stats.e-go.gr/rx.asp?$object-subrequest,domain=megatv.com (easyprivacy.txt: 11004) +.stats.e-go.gr/rx\.asp\? + +#ab2p-unblock-elem-R283 +{+client-header-tagger{ab2p-unblock-elem-R283} \ +} +# @@||stroeerdigitalmedia.de/praeludium/praeludium_$script,domain=menshealth.de|runnersworld.de (easyprivacy.txt: 10916) +.stroeerdigitalmedia.de/praeludium/praeludium_ + +#ab2p-unblock-elem-R284 +{+client-header-tagger{ab2p-unblock-elem-R284} \ +} +# @@||clicktale.net/wrb.js$domain=microsoft.com (easyprivacy.txt: 10355) +.clicktale.net/wrb\.js + +#ab2p-unblock-elem-R285 +{+client-header-tagger{ab2p-unblock-elem-R285} \ +} +# @@||rover.ebay.com/ar/1/75997/4?mpt=*&size=300x250&adid=$image,domain=millionenklick.web.de (easyprivacy.txt: 10902) +.rover.ebay.com/ar/1/75997/4\?mpt=.*&size=300x250&adid= + +#ab2p-unblock-elem-R286 +{+client-header-tagger{ab2p-unblock-elem-R286} \ +} +# @@||cloudfront.net/bugsnag-2.min.js$domain=miutcank.hu (easyprivacy.txt: 11017) +.cloudfront.net/bugsnag-2\.min\.js + +#ab2p-unblock-elem-R287 +{+client-header-tagger{ab2p-unblock-elem-R287} \ +} +# @@||mxpnl.com^$domain=mixpanel.com (easyprivacy.txt: 10589) +.mxpnl.com + +#ab2p-unblock-elem-R288 +{+client-header-tagger{ab2p-unblock-elem-R288} \ +} +# @@||classistatic.de^*/hitcounter.js$domain=mobile.de (easyprivacy.txt: 10862) +.classistatic.de/.*/hitcounter\.js + +#ab2p-unblock-elem-R289 +{+client-header-tagger{ab2p-unblock-elem-R289} \ +} +# @@||msecnd.net^*/site-tracker.js$domain=momondo.co.uk (easyprivacy.txt: 10583) +.msecnd.net/.*/site-tracker\.js + +#ab2p-unblock-elem-R290 +{+client-header-tagger{ab2p-unblock-elem-R290} \ +} +# @@||msecnd.net^*/site-tracker.js$domain=momondo.dk (easyprivacy.txt: 10986) +.msecnd.net/.*/site-tracker\.js + +#ab2p-unblock-elem-R291 +{+client-header-tagger{ab2p-unblock-elem-R291} \ +} +# @@||inazuma.co/campaign/js/heatmap.js$domain=monopoly.mcdonalds.co.uk (easyprivacy.txt: 10503) +.inazuma.co/campaign/js/heatmap\.js + +#ab2p-unblock-elem-R292 +{+client-header-tagger{ab2p-unblock-elem-R292} \ +} +# @@||c.mmcdn.net^*/flash/config/metrics.xml$domain=moshimonsters.com (easyprivacy.txt: 10326) +.c.mmcdn.net/.*/flash/config/metrics\.xml + +#ab2p-unblock-elem-R293 +{+client-header-tagger{ab2p-unblock-elem-R293} \ +} +# @@||bunchball.net/scripts/cookies/current/NitroCookies.js$domain=mtvema.com (easyprivacy.txt: 10323) +.bunchball.net/scripts/cookies/current/NitroCookies\.js + +#ab2p-unblock-elem-R294 +{+client-header-tagger{ab2p-unblock-elem-R294} \ +} +# @@||demdex.net/dest4.html?d_nsid=$subdocument,domain=multipack.com.mx (easyprivacy.txt: 10393) +.demdex.net/dest4\.html\?d_nsid= + +#ab2p-unblock-elem-R295 +{+client-header-tagger{ab2p-unblock-elem-R295} \ +} +# @@||imrworldwide.com/v60.js$domain=musicfeeds.com.au|nzherald.co.nz|sf.se|weatherchannel.com.au (easyprivacy.txt: 10497) +.imrworldwide.com/v60\.js + +#ab2p-unblock-elem-R296 +{+client-header-tagger{ab2p-unblock-elem-R296} \ +} +# @@||msn.com/c.gif?rid=$image,domain=my.msn.com (easyprivacy.txt: 10585) +.msn.com/c\.gif\?rid= +# @@||msn.com/br/chan/udc/$script,domain=my.msn.com (easyprivacy.txt: 10584) +.msn.com/br/chan/udc/ + +#ab2p-unblock-elem-R297 +{+client-header-tagger{ab2p-unblock-elem-R297} \ +} +# @@||nytimes.com/bi/js/tagx/tagx.js$domain=myaccount.nytimes.com (easyprivacy.txt: 10609) +.nytimes.com/bi/js/tagx/tagx\.js + +#ab2p-unblock-elem-R298 +{+client-header-tagger{ab2p-unblock-elem-R298} \ +} +# @@||webtrends.com^*/events.svc$subdocument,domain=mycokerewards.com (easyprivacy.txt: 10783) +.webtrends.com/.*/events\.svc + +#ab2p-unblock-elem-R299 +{+client-header-tagger{ab2p-unblock-elem-R299} \ +} +# @@||mycommunitynow.com/includes/JI_trafficTracking.js$domain=mycommunitynow.com (easyprivacy.txt: 10592) +.mycommunitynow.com/includes/JI_trafficTracking\.js + +#ab2p-unblock-elem-R300 +{+client-header-tagger{ab2p-unblock-elem-R300} \ +} +# @@||static-fra.de^*/targeting.js$domain=n-tvnow.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10913) +.static-fra.de/.*/targeting\.js +# @@||count.rtl.de/crossdomain.xml$object-subrequest,domain=n-tvnow.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10865) +.count.rtl.de/crossdomain\.xml + +#ab2p-unblock-elem-R301 +{+client-header-tagger{ab2p-unblock-elem-R301} \ +} +# @@||krxd.net^$script,domain=nbcnews.com (easyprivacy.txt: 10520) +.krxd.net + +#ab2p-unblock-elem-R302 +{+client-header-tagger{ab2p-unblock-elem-R302} \ +} +# @@||videos.nbcolympics.com/beacon?$object-subrequest,domain=nbcolympics.com (easyprivacy.txt: 10758) +.videos.nbcolympics.com/beacon\? + +#ab2p-unblock-elem-R303 +{+client-header-tagger{ab2p-unblock-elem-R303} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=ndr.de (easyprivacy.txt: 10880) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-elem-R304 +{+client-header-tagger{ab2p-unblock-elem-R304} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=netcombo.com.br (easyprivacy.txt: 10958) +.stats.g.doubleclick.net/dc\.js +# @@||siteapps.com^$script,domain=netcombo.com.br (easyprivacy.txt: 10957) +.siteapps.com +# @@||googletagmanager.com/gtm.js?$domain=netcombo.com.br (easyprivacy.txt: 10956) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-elem-R305 +{+client-header-tagger{ab2p-unblock-elem-R305} \ +} +# @@||monetate.net^*/entry.js$domain=newegg.com (easyprivacy.txt: 10578) +.monetate.net/.*/entry\.js +# @@||monetate.net^*/custom.js$domain=newegg.com (easyprivacy.txt: 10577) +.monetate.net/.*/custom\.js +# @@||monetate.net/trk/$script,domain=newegg.com (easyprivacy.txt: 10576) +.monetate.net/trk/ +# @@||monetate.net/img/$script,domain=newegg.com (easyprivacy.txt: 10574) +.monetate.net/img/ + +#ab2p-unblock-elem-R306 +{+client-header-tagger{ab2p-unblock-elem-R306} \ +} +# @@||analytics.edgekey.net/js/brightcove-csma.js$domain=news.com.au (easyprivacy.txt: 10272) +.analytics.edgekey.net/js/brightcove-csma\.js + +#ab2p-unblock-elem-R307 +{+client-header-tagger{ab2p-unblock-elem-R307} \ +} +# @@||google-analytics.com/analytics.js$domain=news.gamme.com.tw (easyprivacy.txt: 10963) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R308 +{+client-header-tagger{ab2p-unblock-elem-R308} \ +} +# @@||imrworldwide.com/novms/js/2/ggcmb353.js$domain=nexttv.com.tw (easyprivacy.txt: 10966) +.imrworldwide.com/novms/js/2/ggcmb353\.js + +#ab2p-unblock-elem-R309 +{+client-header-tagger{ab2p-unblock-elem-R309} \ +} +# @@||nike.com/checkout/analytics/js/analyticFunctions.js$domain=nike.com (easyprivacy.txt: 10603) +.nike.com/checkout/analytics/js/analyticFunctions\.js +# @@||monetate.net/js/$domain=nike.com (easyprivacy.txt: 10575) +.monetate.net/js/ + +#ab2p-unblock-elem-R310 +{+client-header-tagger{ab2p-unblock-elem-R310} \ +} +# @@||ensighten.com^*/scode/$script,domain=norton.com (easyprivacy.txt: 10419) +.ensighten.com/.*/scode/ + +#ab2p-unblock-elem-R311 +{+client-header-tagger{ab2p-unblock-elem-R311} \ +} +# @@||google-analytics.com/analytics.js$domain=novatv.bg (easyprivacy.txt: 10954) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R312 +{+client-header-tagger{ab2p-unblock-elem-R312} \ +} +# @@||cloudfront.net/bugsnag-$script,domain=nowtv.de (easyprivacy.txt: 10863) +.cloudfront.net/bugsnag- + +#ab2p-unblock-elem-R313 +{+client-header-tagger{ab2p-unblock-elem-R313} \ +} +# @@||nyandcompany.com^*/resxclsa.js$domain=nyandcompany.com (easyprivacy.txt: 10605) +.nyandcompany.com/.*/resxclsa\.js + +#ab2p-unblock-elem-R314 +{+client-header-tagger{ab2p-unblock-elem-R314} \ +} +# @@||yimg.com^*/ywa.js$domain=nydailynews.com|travelscream.com|yahoo.com (easyprivacy.txt: 10809) +.yimg.com/.*/ywa\.js + +#ab2p-unblock-elem-R315 +{+client-header-tagger{ab2p-unblock-elem-R315} \ +} +# @@||petametrics.com/*.js?$script,domain=nylon.com (easyprivacy.txt: 10629) +.petametrics.com/.*\.js\? + +#ab2p-unblock-elem-R316 +{+client-header-tagger{ab2p-unblock-elem-R316} \ +} +# @@||nyt.com/bi/js/tagx/tagx.js$domain=nytimes.com (easyprivacy.txt: 10608) +.nyt.com/bi/js/tagx/tagx\.js + +#ab2p-unblock-elem-R317 +{+client-header-tagger{ab2p-unblock-elem-R317} \ +} +# @@||static.atgsvcs.com/js/atgsvcs.js$domain=officedepot.com|shop.lego.com (easyprivacy.txt: 10695) +.static.atgsvcs.com/js/atgsvcs\.js + +#ab2p-unblock-elem-R318 +{+client-header-tagger{ab2p-unblock-elem-R318} \ +} +# @@||digits.com^*/sdk.js$domain=openhub.net (easyprivacy.txt: 10396) +.digits.com/.*/sdk\.js + +#ab2p-unblock-elem-R319 +{+client-header-tagger{ab2p-unblock-elem-R319} \ +} +# @@/cdn-cgi/pe/bag2?*piwik.js$domain=orain.org (easyprivacy.txt: 10244) +/(.*/)?cdn-cgi/pe/bag2\?.*piwik\.js +# @@/cdn-cgi/pe/bag2?*geoiplookup$xmlhttprequest,domain=orain.org (easyprivacy.txt: 10238) +/(.*/)?cdn-cgi/pe/bag2\?.*geoiplookup + +#ab2p-unblock-elem-R320 +{+client-header-tagger{ab2p-unblock-elem-R320} \ +} +# @@||thebrighttag.com/tag?site=$script,domain=oralb.de (easyprivacy.txt: 10921) +.thebrighttag.com/tag\?site= +# @@||btstatic.com/tag.js$domain=oralb.de (easyprivacy.txt: 10861) +.btstatic.com/tag\.js + +#ab2p-unblock-elem-R321 +{+client-header-tagger{ab2p-unblock-elem-R321} \ +} +# @@||analytics.ladmedia.fr/parismatch/xtcore_mod2.js$domain=parismatch.com (easyprivacy.txt: 10933) +.analytics.ladmedia.fr/parismatch/xtcore_mod2\.js + +#ab2p-unblock-elem-R322 +{+client-header-tagger{ab2p-unblock-elem-R322} \ +} +# @@/webtracking/*$domain=pasts.lv (easyprivacy.txt: 11041) +/(.*/)?webtracking/.* + +#ab2p-unblock-elem-R33 +{+client-header-tagger{ab2p-unblock-elem-R33} \ +} +# @@||paypalobjects.com^*/opinionLab.js$domain=paypal.com (easyprivacy.txt: 10625) +.paypalobjects.com/.*/opinionLab\.js + +#ab2p-unblock-elem-R323 +{+client-header-tagger{ab2p-unblock-elem-R323} \ +} +# @@||eloqua.com/include/livevalidation_standalone.compressed.js$domain=pbs.org (easyprivacy.txt: 10412) +.eloqua.com/include/livevalidation_standalone\.compressed\.js + +#ab2p-unblock-elem-R324 +{+client-header-tagger{ab2p-unblock-elem-R324} \ +} +# @@||optimize.webtrends.com^$domain=peterboroughtoday.co.uk (easyprivacy.txt: 10618) +.optimize.webtrends.com + +#ab2p-unblock-elem-R325 +{+client-header-tagger{ab2p-unblock-elem-R325} \ +} +# @@||pixel.quantserve.com/seg/$script,domain=photos.essence.com (easyprivacy.txt: 10640) +.pixel.quantserve.com/seg/ + +#ab2p-unblock-elem-R326 +{+client-header-tagger{ab2p-unblock-elem-R326} \ +} +# @@||stippleit.com/stipple.js$domain=photos.toofab.com (easyprivacy.txt: 10702) +.stippleit.com/stipple\.js + +#ab2p-unblock-elem-R327 +{+client-header-tagger{ab2p-unblock-elem-R327} \ +} +# @@||levexis.com/clients/planetsports/1.js$domain=planet-sports.de (easyprivacy.txt: 10890) +.levexis.com/clients/planetsports/1\.js + +#ab2p-unblock-elem-R328 +{+client-header-tagger{ab2p-unblock-elem-R328} \ +} +# @@||radio.com/player/javascript/tracking.js$domain=player.radio.com (easyprivacy.txt: 10655) +.radio.com/player/javascript/tracking\.js + +#ab2p-unblock-elem-R329 +{+client-header-tagger{ab2p-unblock-elem-R329} \ +} +# @@||adobetag.com^*/sitecatalystnew.js$domain=playstation.com (easyprivacy.txt: 10260) +.adobetag.com/.*/sitecatalystnew\.js + +#ab2p-unblock-elem-R330 +{+client-header-tagger{ab2p-unblock-elem-R330} \ +} +# @@||flurry.com/js/flurry.js$domain=pocketdice.io|slantnews.com (easyprivacy.txt: 10437) +.flurry.com/js/flurry\.js + +#ab2p-unblock-elem-R331 +{+client-header-tagger{ab2p-unblock-elem-R331} \ +} +# @@||google-analytics.com/analytics.js$domain=poiskstroek.ru (easyprivacy.txt: 11064) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R332 +{+client-header-tagger{ab2p-unblock-elem-R332} \ +} +# @@||popeater.com/traffic/?$script,domain=popeater.com (easyprivacy.txt: 10646) +.popeater.com/traffic/\? + +#ab2p-unblock-elem-R333 +{+client-header-tagger{ab2p-unblock-elem-R333} \ +} +# @@||belboon.de/clickout.php?$subdocument,domain=preis-vergleich.tv (easyprivacy.txt: 10859) +.belboon.de/clickout\.php\? + +#ab2p-unblock-elem-R334 +{+client-header-tagger{ab2p-unblock-elem-R334} \ +} +# @@||quantcast.com/wp-content/themes/quantcast/$domain=quantcast.com (easyprivacy.txt: 10652) +.quantcast.com/wp-content/themes/quantcast/ + +#ab2p-unblock-elem-R335 +{+client-header-tagger{ab2p-unblock-elem-R335} \ +} +# @@||dict.rambler.ru/fcgi-bin/$xmlhttprequest,domain=rambler.ru (easyprivacy.txt: 11063) +.dict.rambler.ru/fcgi-bin/ + +#ab2p-unblock-elem-R336 +{+client-header-tagger{ab2p-unblock-elem-R336} \ +} +# @@||static.btbuckets.com/bt.js$domain=readwriteweb.com (easyprivacy.txt: 10696) +.static.btbuckets.com/bt\.js + +#ab2p-unblock-elem-R337 +{+client-header-tagger{ab2p-unblock-elem-R337} \ +} +# @@/cdn-cgi/pe/bag2?*nr-data.net$domain=realhardwarereviews.com (easyprivacy.txt: 10243) +/(.*/)?cdn-cgi/pe/bag2\?.*nr-data\.net + +#ab2p-unblock-elem-R338 +{+client-header-tagger{ab2p-unblock-elem-R338} \ +} +# @@||google-analytics.com/urchin.js$domain=record.xl.pt (easyprivacy.txt: 11055) +.google-analytics.com/urchin\.js + +#ab2p-unblock-elem-R339 +{+client-header-tagger{ab2p-unblock-elem-R339} \ +} +# @@||cdn-redfin.com^*/PixelTracking.js$domain=redfin.com (easyprivacy.txt: 10342) +.cdn-redfin.com/.*/PixelTracking\.js +# @@||cdn-redfin.com^*/page_analytics.js$domain=redfin.com (easyprivacy.txt: 10340) +.cdn-redfin.com/.*/page_analytics\.js +# @@||cdn-redfin.com^*/clicktracker.js$domain=redfin.com (easyprivacy.txt: 10339) +.cdn-redfin.com/.*/clicktracker\.js + +#ab2p-unblock-elem-R340 +{+client-header-tagger{ab2p-unblock-elem-R340} \ +} +# @@||sfdict.com/app/*/click_tracking.js$domain=reference.com|thesaurus.com (easyprivacy.txt: 10682) +.sfdict.com/app/.*/click_tracking\.js + +#ab2p-unblock-elem-R341 +{+client-header-tagger{ab2p-unblock-elem-R341} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=reshet.tv (easyprivacy.txt: 11013) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-elem-R342 +{+client-header-tagger{ab2p-unblock-elem-R342} \ +} +# @@||analytics.edgesuite.net/html5/akamaihtml5-min.js$domain=resignationbrewery.com|video.foxnews.com (easyprivacy.txt: 10274) +.analytics.edgesuite.net/html5/akamaihtml5-min\.js + +#ab2p-unblock-elem-R343 +{+client-header-tagger{ab2p-unblock-elem-R343} \ +} +# @@||analytics.rogersmedia.com/js/rdm_s_code.min.js$domain=rogersradio.ca (easyprivacy.txt: 10276) +.analytics.rogersmedia.com/js/rdm_s_code\.min\.js +# @@||analytics.rogersmedia.com/js/rdm_dil_code.full.js$domain=rogersradio.ca (easyprivacy.txt: 10275) +.analytics.rogersmedia.com/js/rdm_dil_code\.full\.js + +#ab2p-unblock-elem-R344 +{+client-header-tagger{ab2p-unblock-elem-R344} \ +} +# @@||loadus.exelator.com/load/?p=$script,domain=rrstar.com (easyprivacy.txt: 10532) +.loadus.exelator.com/load/\?p= + +#ab2p-unblock-elem-R345 +{+client-header-tagger{ab2p-unblock-elem-R345} \ +} +# @@||scorecardresearch.com/crossdomain.xml$domain=rte.ie (easyprivacy.txt: 10673) +.scorecardresearch.com/crossdomain\.xml + +#ab2p-unblock-elem-R346 +{+client-header-tagger{ab2p-unblock-elem-R346} \ +} +# @@||stroeerdigitalmedia.de/dynback/call.sjs?$domain=runnersworld.de (easyprivacy.txt: 10915) +.stroeerdigitalmedia.de/dynback/call\.sjs\? + +#ab2p-unblock-elem-R347 +{+client-header-tagger{ab2p-unblock-elem-R347} \ +} +# @@||edgesuite.net/crossdomain.xml$object-subrequest,domain=sbs.com.au (easyprivacy.txt: 10409) +.edgesuite.net/crossdomain\.xml + +#ab2p-unblock-elem-R348 +{+client-header-tagger{ab2p-unblock-elem-R348} \ +} +# @@||zeit.de/piwik/piwik.js$domain=schach.zeit.de (easyprivacy.txt: 10928) +.zeit.de/piwik/piwik\.js + +#ab2p-unblock-elem-R349 +{+client-header-tagger{ab2p-unblock-elem-R349} \ +} +# @@||pixel.fetchback.com^$subdocument,domain=sears.com (easyprivacy.txt: 10637) +.pixel.fetchback.com + +#ab2p-unblock-elem-R350 +{+client-header-tagger{ab2p-unblock-elem-R350} \ +} +# @@||info.seek.com/b/ss/$image,domain=seek.com.au (easyprivacy.txt: 10828) +.info.seek.com/b/ss/ + +#ab2p-unblock-elem-R351 +{+client-header-tagger{ab2p-unblock-elem-R351} \ +} +# @@||google-analytics.com/analytics.js$domain=skaties.lv (easyprivacy.txt: 11042) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R352 +{+client-header-tagger{ab2p-unblock-elem-R352} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=sky.it (easyprivacy.txt: 11027) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-elem-R353 +{+client-header-tagger{ab2p-unblock-elem-R353} \ +} +# @@||track.adform.net/serving/scripts/trackpoint$script,domain=sky.it|ubibanca.com (easyprivacy.txt: 11033) +.track.adform.net/serving/scripts/trackpoint + +#ab2p-unblock-elem-R41 +{+client-header-tagger{ab2p-unblock-elem-R41} \ +} +# @@||i.s-microsoft.com/wedcs/ms.js$domain=skype.com (easyprivacy.txt: 10491) +.i.s-microsoft.com/wedcs/ms\.js + +#ab2p-unblock-elem-R354 +{+client-header-tagger{ab2p-unblock-elem-R354} \ +} +# @@||x5.xclicks.net/js/x3165.js$domain=small-breasted-teens.com (easyprivacy.txt: 10804) +.x5.xclicks.net/js/x3165\.js + +#ab2p-unblock-elem-R355 +{+client-header-tagger{ab2p-unblock-elem-R355} \ +} +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/ortc.js$domain=social.economico.pt (easyprivacy.txt: 11054) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/ortc\.js +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/IbtRealTimeSJ/IbtRealTimeSJCore.js?$domain=social.economico.pt (easyprivacy.txt: 11053) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/IbtRealTimeSJ/IbtRealTimeSJCore\.js\? +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/IbtRealTimeSJ/IbtRealTimeSJ.js?$domain=social.economico.pt (easyprivacy.txt: 11052) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/IbtRealTimeSJ/IbtRealTimeSJ\.js\? + +#ab2p-unblock-elem-R356 +{+client-header-tagger{ab2p-unblock-elem-R356} \ +} +# @@||spatialbuzz.com/piwik/piwik.js$domain=spatialbuzz.com (easyprivacy.txt: 10911) +.spatialbuzz.com/piwik/piwik\.js + +#ab2p-unblock-elem-R357 +{+client-header-tagger{ab2p-unblock-elem-R357} \ +} +# @@||googletagservices.com/tag/js/gpt.js$domain=speedtest.net (easyprivacy.txt: 10474) +.googletagservices.com/tag/js/gpt\.js + +#ab2p-unblock-elem-R358 +{+client-header-tagger{ab2p-unblock-elem-R358} \ +} +# @@||scorecardresearch.com/beacon.js$domain=spielen.com (easyprivacy.txt: 10905) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-elem-R359 +{+client-header-tagger{ab2p-unblock-elem-R359} \ +} +# @@||sbstatic.com.au/js/tealium.js$domain=sportsbet.com.au (easyprivacy.txt: 10670) +.sbstatic.com.au/js/tealium\.js + +#ab2p-unblock-elem-R360 +{+client-header-tagger{ab2p-unblock-elem-R360} \ +} +# @@||maxmind.com^*/geoip.js$domain=sportube.tv (easyprivacy.txt: 11030) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-elem-R361 +{+client-header-tagger{ab2p-unblock-elem-R361} \ +} +# @@||atdmt.com^*/direct*01$domain=sprint.com (easyprivacy.txt: 10291) +.atdmt.com/.*/direct.*01 + +#ab2p-unblock-elem-R362 +{+client-header-tagger{ab2p-unblock-elem-R362} \ +} +# @@||toshiba.com/images/track/track.gif?track=load&$xmlhttprequest,domain=start.toshiba.com (easyprivacy.txt: 10726) +.toshiba.com/images/track/track\.gif\?track=load& + +#ab2p-unblock-elem-R363 +{+client-header-tagger{ab2p-unblock-elem-R363} \ +} +# @@||view.atdmt.com^*/view/$domain=starwoodhotels.com (easyprivacy.txt: 10763) +.view.atdmt.com/.*/view/ +# @@||view.atdmt.com^*/iview/$domain=starwoodhotels.com (easyprivacy.txt: 10762) +.view.atdmt.com/.*/iview/ +# @@||ec.atdmt.com/b/$domain=starwoodhotels.com (easyprivacy.txt: 10407) +.ec.atdmt.com/b/ + +#ab2p-unblock-elem-R364 +{+client-header-tagger{ab2p-unblock-elem-R364} \ +} +# @@||c.microsoft.com/ms.js$domain=store.office.live.com|xbox.com (easyprivacy.txt: 10325) +.c.microsoft.com/ms\.js + +#ab2p-unblock-elem-R365 +{+client-header-tagger{ab2p-unblock-elem-R365} \ +} +# @@||cloudfront.net/bugsnag-*.min.js$domain=storenvy.com|tvguide.com (easyprivacy.txt: 10360) +.cloudfront.net/bugsnag-.*\.min\.js + +#ab2p-unblock-elem-R366 +{+client-header-tagger{ab2p-unblock-elem-R366} \ +} +# @@||stylished.de/js/vendors/emos2.js$domain=stylished.de (easyprivacy.txt: 10917) +.stylished.de/js/vendors/emos2\.js + +#ab2p-unblock-elem-R367 +{+client-header-tagger{ab2p-unblock-elem-R367} \ +} +# @@||ivwbox.de/2004/01/survey.js$domain=stylished.de|t-online.de (easyprivacy.txt: 10884) +.ivwbox.de/2004/01/survey\.js + +#ab2p-unblock-elem-R368 +{+client-header-tagger{ab2p-unblock-elem-R368} \ +} +# @@||mongoosemetrics.com/jsfiles/js-correlation/mm-rules.min.js$domain=subaru.com (easyprivacy.txt: 10579) +.mongoosemetrics.com/jsfiles/js-correlation/mm-rules\.min\.js + +#ab2p-unblock-elem-R369 +{+client-header-tagger{ab2p-unblock-elem-R369} \ +} +# @@||sitestat.com^*/s?*&ns_type=clickin&ns_action=view&ns__t=$image,domain=sueddeutsche.de (easyprivacy.txt: 10909) +.sitestat.com/.*/s\?.*&ns_type=clickin&ns_action=view&ns__t= + +#ab2p-unblock-elem-R370 +{+client-header-tagger{ab2p-unblock-elem-R370} \ +} +# @@|http://r.i.ua/s?*&p*&l$image,domain=swordmaster.org (easyprivacy.txt: 11079) +r.i.ua/s\?.*&p.*&l + +#ab2p-unblock-elem-R371 +{+client-header-tagger{ab2p-unblock-elem-R371} \ +} +# @@||pix04.revsci.net^*.js?$domain=t-online.de (easyprivacy.txt: 10897) +.pix04.revsci.net/.*\.js\? +# @@||js.revsci.net/gateway/gw.js?$domain=t-online.de (easyprivacy.txt: 10889) +.js.revsci.net/gateway/gw\.js\? +# @@||a.visualrevenue.com/vrs.js$domain=t-online.de (easyprivacy.txt: 10851) +.a.visualrevenue.com/vrs\.js + +#ab2p-unblock-elem-R372 +{+client-header-tagger{ab2p-unblock-elem-R372} \ +} +# @@||cxense.com/cx.js$domain=tagesanzeiger.ch (easyprivacy.txt: 10867) +.cxense.com/cx\.js + +#ab2p-unblock-elem-R373 +{+client-header-tagger{ab2p-unblock-elem-R373} \ +} +# @@||guim.co.uk/flash/video/embedded/player-$object,domain=thedailywh.at (easyprivacy.txt: 10479) +.guim.co.uk/flash/video/embedded/player- + +#ab2p-unblock-elem-R374 +{+client-header-tagger{ab2p-unblock-elem-R374} \ +} +# @@||cloudfront.net/mngr/$script,domain=theladbible.com (easyprivacy.txt: 10362) +.cloudfront.net/mngr/ + +#ab2p-unblock-elem-R375 +{+client-header-tagger{ab2p-unblock-elem-R375} \ +} +# @@||reinvigorate.net/re_.js$domain=thenounproject.com (easyprivacy.txt: 10661) +.reinvigorate.net/re_\.js + +#ab2p-unblock-elem-R376 +{+client-header-tagger{ab2p-unblock-elem-R376} \ +} +# @@||adobetag.com/d2/$script,domain=thestar.com (easyprivacy.txt: 10257) +.adobetag.com/d2/ + +#ab2p-unblock-elem-R377 +{+client-header-tagger{ab2p-unblock-elem-R377} \ +} +# @@||t.st/video/js/kGoogleAnalytics.js?$domain=thestreet.com (easyprivacy.txt: 10708) +.t.st/video/js/kGoogleAnalytics\.js\? + +#ab2p-unblock-elem-R378 +{+client-header-tagger{ab2p-unblock-elem-R378} \ +} +# @@||adobetag.com/d2/telecomitalia/live/Aggregato119TIM.js$domain=tim.it (easyprivacy.txt: 11019) +.adobetag.com/d2/telecomitalia/live/Aggregato119TIM\.js + +#ab2p-unblock-elem-R379 +{+client-header-tagger{ab2p-unblock-elem-R379} \ +} +# @@||wp.com^*/time-tracking.js?$domain=time.com (easyprivacy.txt: 10800) +.wp.com/.*/time-tracking\.js\? +# @@||wp.com/_static/*/vip-analytics.js?$domain=time.com (easyprivacy.txt: 10799) +.wp.com/_static/.*/vip-analytics\.js\? + +#ab2p-unblock-elem-R380 +{+client-header-tagger{ab2p-unblock-elem-R380} \ +} +# @@||pp-serve.newsinc.com^*/unitsdata.js?$domain=timesfreepress.com (easyprivacy.txt: 10647) +.pp-serve.newsinc.com/.*/unitsdata\.js\? +# @@||dmeserv.newsinc.com^*/dynamicWidgets.js$domain=timesfreepress.com (easyprivacy.txt: 10400) +.dmeserv.newsinc.com/.*/dynamicWidgets\.js + +#ab2p-unblock-elem-R381 +{+client-header-tagger{ab2p-unblock-elem-R381} \ +} +# @@||bestofmedia.com/sfp/js/minified/testedJs/xtClick.min.js?$domain=tomshardware.com (easyprivacy.txt: 10306) +.bestofmedia.com/sfp/js/minified/testedJs/xtClick\.min\.js\? + +#ab2p-unblock-elem-R382 +{+client-header-tagger{ab2p-unblock-elem-R382} \ +} +# @@||googletagmanager.com/gtm.js?id=$domain=tradera.com (easyprivacy.txt: 11082) +.googletagmanager.com/gtm\.js\?id= +# @@||google-analytics.com/analytics.js$domain=tradera.com (easyprivacy.txt: 11081) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R383 +{+client-header-tagger{ab2p-unblock-elem-R383} \ +} +# @@||gemius.pl/gplayer.js$domain=tsn.ua (easyprivacy.txt: 11093) +.gemius.pl/gplayer\.js +# @@||bemobile.ua/lib/lib.js$domain=tsn.ua (easyprivacy.txt: 11092) +.bemobile.ua/lib/lib\.js + +#ab2p-unblock-elem-R384 +{+client-header-tagger{ab2p-unblock-elem-R384} \ +} +# @@||wrating.com/a1.js$domain=tudou.com|ynet.com (easyprivacy.txt: 10977) +.wrating.com/a1\.js + +#ab2p-unblock-elem-R385 +{+client-header-tagger{ab2p-unblock-elem-R385} \ +} +# @@||google-analytics.com/analytics.js$domain=tv3play.no (easyprivacy.txt: 11044) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R386 +{+client-header-tagger{ab2p-unblock-elem-R386} \ +} +# @@||kropka.onet.pl^*/onet.js$domain=tvnwarszawa.pl (easyprivacy.txt: 11047) +.kropka.onet.pl/.*/onet\.js + +#ab2p-unblock-elem-R387 +{+client-header-tagger{ab2p-unblock-elem-R387} \ +} +# @@||hj.flxpxl.com^*.js?r=*&m=*&a=$domain=twitch.tv (easyprivacy.txt: 10485) +.hj.flxpxl.com/.*\.js\?r=.*&m=.*&a= + +#ab2p-unblock-elem-R388 +{+client-header-tagger{ab2p-unblock-elem-R388} \ +} +# @@||twimg.com/googleanalytics/analytics.js$script,domain=twitter.com (easyprivacy.txt: 10737) +.twimg.com/googleanalytics/analytics\.js + +#ab2p-unblock-elem-R389 +{+client-header-tagger{ab2p-unblock-elem-R389} \ +} +# @@||mmi.bemobile.ua/lib/lib.js$domain=uatoday.tv (easyprivacy.txt: 10573) +.mmi.bemobile.ua/lib/lib\.js + +#ab2p-unblock-elem-R390 +{+client-header-tagger{ab2p-unblock-elem-R390} \ +} +# @@||usps.com/m/js/tracking.js$domain=usps.com (easyprivacy.txt: 10744) +.usps.com/m/js/tracking\.js + +#ab2p-unblock-elem-R391 +{+client-header-tagger{ab2p-unblock-elem-R391} \ +} +# @@||vanclimg.com/js.ashx?*/google-analytics.js$domain=vancl.com (easyprivacy.txt: 10975) +.vanclimg.com/js\.ashx\?.*/google-analytics\.js + +#ab2p-unblock-elem-R392 +{+client-header-tagger{ab2p-unblock-elem-R392} \ +} +# @@||google-analytics.com/analytics.js$domain=vd.nl (easyprivacy.txt: 10990) +.google-analytics.com/analytics\.js + +#ab2p-unblock-elem-R393 +{+client-header-tagger{ab2p-unblock-elem-R393} \ +} +# @@||analytics.edgesuite.net/config/beacon-*.xml$domain=video.foxnews.com (easyprivacy.txt: 10273) +.analytics.edgesuite.net/config/beacon-.*\.xml + +#ab2p-unblock-elem-R394 +{+client-header-tagger{ab2p-unblock-elem-R394} \ +} +# @@||repstatic.it^*/Nielsen.js$domain=video.repubblica.it (easyprivacy.txt: 11031) +.repstatic.it/.*/Nielsen\.js + +#ab2p-unblock-elem-R395 +{+client-header-tagger{ab2p-unblock-elem-R395} \ +} +# @@||pixel.condenastdigital.com/sparrow.min.js$domain=video.wired.com (easyprivacy.txt: 10634) +.pixel.condenastdigital.com/sparrow\.min\.js + +#ab2p-unblock-elem-R396 +{+client-header-tagger{ab2p-unblock-elem-R396} \ +} +# @@||mediaite.com/decor/javascript/magnify_stats.js$domain=videos.mediaite.com (easyprivacy.txt: 10558) +.mediaite.com/decor/javascript/magnify_stats\.js + +#ab2p-unblock-elem-R397 +{+client-header-tagger{ab2p-unblock-elem-R397} \ +} +# @@||metrics-api.librato.com/v1/metrics$xmlhttprequest,domain=virginamerica.com (easyprivacy.txt: 10560) +.metrics-api.librato.com/v1/metrics + +#ab2p-unblock-elem-R398 +{+client-header-tagger{ab2p-unblock-elem-R398} \ +} +# @@||getsmartcontent.com/gsc.js$domain=visitpa.com (easyprivacy.txt: 10453) +.getsmartcontent.com/gsc\.js +# @@||getsmartcontent.com/gateway/?callback$domain=visitpa.com (easyprivacy.txt: 10452) +.getsmartcontent.com/gateway/\?callback + +#ab2p-unblock-elem-R399 +{+client-header-tagger{ab2p-unblock-elem-R399} \ +} +# @@||demandbase.com^*/ip.json?$xmlhttprequest,domain=vmware.com (easyprivacy.txt: 10392) +.demandbase.com/.*/ip\.json\? + +#ab2p-unblock-elem-R400 +{+client-header-tagger{ab2p-unblock-elem-R400} \ +} +# @@||a.wikia-beacon.com/__track/view?v=v1&c=*&lc=de&lid=62&x=devroniplag&y=$script,domain=vroniplag.wikia.com (easyprivacy.txt: 10852) +.a.wikia-beacon.com/__track/view\?v=v1&c=.*&lc=de&lid=62&x=devroniplag&y= + +#ab2p-unblock-elem-R401 +{+client-header-tagger{ab2p-unblock-elem-R401} \ +} +# @@||nymag.com/vltr/scripts/analytics.js$domain=vulture.com (easyprivacy.txt: 10607) +.nymag.com/vltr/scripts/analytics\.js + +#ab2p-unblock-elem-R402 +{+client-header-tagger{ab2p-unblock-elem-R402} \ +} +# @@||walmartimages.com/webanalytics/wmStat/wmStat.jsp$domain=walmart.com (easyprivacy.txt: 10778) +.walmartimages.com/webanalytics/wmStat/wmStat\.jsp +# @@||walmartimages.com/webanalytics/omniture/omniture.jsp$domain=walmart.com (easyprivacy.txt: 10777) +.walmartimages.com/webanalytics/omniture/omniture\.jsp +# @@||sellpoint.net/smart_button/$script,domain=walmart.com (easyprivacy.txt: 10678) +.sellpoint.net/smart_button/ +# @@||hlserve.com/beacon?$domain=walmart.com (easyprivacy.txt: 10486) +.hlserve.com/beacon\? +# @@||akamai.net^*/omniture.jsp$script,domain=walmart.com (easyprivacy.txt: 10263) +.akamai.net/.*/omniture\.jsp + +#ab2p-unblock-elem-R403 +{+client-header-tagger{ab2p-unblock-elem-R403} \ +} +# @@||washingtonpost.com/wp-stat/echo2/canvases/$script,domain=washingtonpost.com (easyprivacy.txt: 10779) +.washingtonpost.com/wp-stat/echo2/canvases/ +# @@||d2pe20ur0h0p8p.cloudfront.net/identity/*/wapo_jskit_addon.js$domain=washingtonpost.com (easyprivacy.txt: 10384) +.d2pe20ur0h0p8p.cloudfront.net/identity/.*/wapo_jskit_addon\.js +# @@||d2pe20ur0h0p8p.cloudfront.net/identity/*/wapo_identity_full.js$domain=washingtonpost.com (easyprivacy.txt: 10383) +.d2pe20ur0h0p8p.cloudfront.net/identity/.*/wapo_identity_full\.js +# @@||amazonaws.com/visitorsegment/shared/resources/$script,domain=washingtonpost.com (easyprivacy.txt: 10268) +.amazonaws.com/visitorsegment/shared/resources/ + +#ab2p-unblock-elem-R404 +{+client-header-tagger{ab2p-unblock-elem-R404} \ +} +# @@||tags.crwdcntrl.net^$script,domain=weather.com (easyprivacy.txt: 10712) +.tags.crwdcntrl.net +# @@||imwx.com/jsRollup?$script,domain=weather.com (easyprivacy.txt: 10502) +.imwx.com/jsRollup\? + +#ab2p-unblock-elem-R405 +{+client-header-tagger{ab2p-unblock-elem-R405} \ +} +# @@||ywxi.net/meter/produkte.web.de/$image,domain=web.de (easyprivacy.txt: 10926) +.ywxi.net/meter/produkte\.web\.de/ +# @@||scorecardresearch.com/p?$object-subrequest,domain=web.de (easyprivacy.txt: 10907) +.scorecardresearch.com/p\? +# @@||scorecardresearch.com/crossdomain.xml$object-subrequest,domain=web.de (easyprivacy.txt: 10906) +.scorecardresearch.com/crossdomain\.xml + +#ab2p-unblock-elem-R406 +{+client-header-tagger{ab2p-unblock-elem-R406} \ +} +# @@||wenxuecity.com/data/newscount/$image,domain=wenxuecity.com (easyprivacy.txt: 10976) +.wenxuecity.com/data/newscount/ + +#ab2p-unblock-elem-R407 +{+client-header-tagger{ab2p-unblock-elem-R407} \ +} +# @@||img.en25.com/eloquaimages/clients/PentonMediaInc/$image,domain=windowsitpro.com (easyprivacy.txt: 10494) +.img.en25.com/eloquaimages/clients/PentonMediaInc/ + +#ab2p-unblock-elem-R408 +{+client-header-tagger{ab2p-unblock-elem-R408} \ +} +# @@||ad.zanox.com/ppc/$subdocument,domain=wisedock.at|wisedock.co.uk|wisedock.com|wisedock.de|wisedock.eu (easyprivacy.txt: 10255) +.ad.zanox.com/ppc/ + +#ab2p-unblock-elem-R409 +{+client-header-tagger{ab2p-unblock-elem-R409} \ +} +# @@||geoplugin.net/json.gp?jsoncallback=$script,domain=worldc.am (easyprivacy.txt: 10449) +.geoplugin.net/json\.gp\?jsoncallback= + +#ab2p-unblock-elem-R410 +{+client-header-tagger{ab2p-unblock-elem-R410} \ +} +# @@||oms.dowjoneson.com/b/ss/$image,domain=wsj.com (easyprivacy.txt: 10837) +.oms.dowjoneson.com/b/ss/ + +#ab2p-unblock-elem-R411 +{+client-header-tagger{ab2p-unblock-elem-R411} \ +} +# @@||d3ujids68p6xmq.cloudfront.net^$script,domain=wwe.com (easyprivacy.txt: 10386) +.d3ujids68p6xmq.cloudfront.net + +#ab2p-unblock-elem-R412 +{+client-header-tagger{ab2p-unblock-elem-R412} \ +} +# @@/cdn-cgi/pe/bag2?*histats.com$domain=xrussianteens.com (easyprivacy.txt: 10242) +/(.*/)?cdn-cgi/pe/bag2\?.*histats\.com + +#ab2p-unblock-elem-R413 +{+client-header-tagger{ab2p-unblock-elem-R413} \ +} +# @@||s-msn.com^*/udctrack*.js$domain=ynet.com (easyprivacy.txt: 10971) +.s-msn.com/.*/udctrack.*\.js + +#ab2p-unblock-elem-R414 +{+client-header-tagger{ab2p-unblock-elem-R414} \ +} +# @@||paypalobjects.com^*/pixel.gif$domain=youngcons.com (easyprivacy.txt: 10626) +.paypalobjects.com/.*/pixel\.gif + +#ab2p-unblock-elem-R415 +{+client-header-tagger{ab2p-unblock-elem-R415} \ +} +# @@||cloudfront.net/js/reach.js$domain=zap2it.com (easyprivacy.txt: 10361) +.cloudfront.net/js/reach\.js +# @@||cloudfront.net/assets/js/comscore_beacon.js?$domain=zap2it.com (easyprivacy.txt: 10358) +.cloudfront.net/assets/js/comscore_beacon\.js\? + +#ab2p-unblock-elem-R416 +{+client-header-tagger{ab2p-unblock-elem-R416} \ +} +# @@||zillowstatic.com/c/*/linktrack.js$domain=zillow.com (easyprivacy.txt: 10814) +.zillowstatic.com/c/.*/linktrack\.js +# @@||tags.bluekai.com/site/*?ret=$subdocument,domain=zillow.com (easyprivacy.txt: 10711) +.tags.bluekai.com/site/.*\?ret= +# @@||js.dmtry.com/channel.js$domain=zillow.com (easyprivacy.txt: 10510) +.js.dmtry.com/channel\.js + +#ab2p-unblock-elem-R417 +{+client-header-tagger{ab2p-unblock-elem-R417} \ +} +# @@||ghstatic.com/images/site/zylom/scripts/google-analytics.js?$domain=zylom.com (easyprivacy.txt: 10454) +.ghstatic.com/images/site/zylom/scripts/google-analytics\.js\? + +#ab2p-unblock-request +{-block \ +-server-header-tagger{ab2p-block-s} \ ++server-header-tagger{ab2p-unblock-d} \ ++server-header-tagger{ab2p-unblock-s} \ ++client-header-tagger{ab2b-unblock-u} \ +} +TAG:^ab2p-unblock-request$ +# @@||turkcelltvplus.com.tr^*/google_analytics/main.js? (easyprivacy.txt: 11089) +.turkcelltvplus.com.tr/.*/google_analytics/main\.js\? +# @@||lazada.co.th/js/tracking.js (easyprivacy.txt: 11086) +.lazada.co.th/js/tracking\.js +# @@||reseguiden.se^*.siteCatalyst.js (easyprivacy.txt: 11084) +.reseguiden.se/.*\.siteCatalyst\.js +# @@||segundamano.mx^*/tealium.js (easyprivacy.txt: 11077) +.segundamano.mx/.*/tealium\.js +# @@||c5n.com^*/angulartics-google-analytics.min.js (easyprivacy.txt: 11075) +.c5n.com/.*/angulartics-google-analytics\.min\.js +# @@||wargag.ru/public/js/counter.js? (easyprivacy.txt: 11069) +.wargag.ru/public/js/counter\.js\? +# @@||itv.1tv.ru/stat.php? (easyprivacy.txt: 11066) +.itv.1tv.ru/stat\.php\? +# @@||promozone.ro/wp-content/themes/nielsen/ (easyprivacy.txt: 11060) +.promozone.ro/wp-content/themes/nielsen/ +# @@||laredoute.pt/js/byside_webcare.js (easyprivacy.txt: 11056) +.laredoute.pt/js/byside_webcare\.js +# @@||gemius.pl/gstream.js (easyprivacy.txt: 11046) +.gemius.pl/gstream\.js +# @@||detik.com/urchin.js (easyprivacy.txt: 11037) +.detik.com/urchin\.js +# @@||video.repubblica.it^*/nielsen.js (easyprivacy.txt: 11034) +.video.repubblica.it/.*/nielsen\.js +# @@||lastampa.it/modulo/tracciatori/js/nielsen.js (easyprivacy.txt: 11029) +.lastampa.it/modulo/tracciatori/js/nielsen\.js +# @@||corriereobjects.it^*/tracking/TrackFunctions.js (easyprivacy.txt: 11026) +.corriereobjects.it/.*/tracking/TrackFunctions\.js +# @@||corriereobjects.it^*/tracking/s_code.js (easyprivacy.txt: 11025) +.corriereobjects.it/.*/tracking/s_code\.js +# @@||beppegrillo.it/mt-static/js/ga_social_tracking.js (easyprivacy.txt: 11021) +.beppegrillo.it/mt-static/js/ga_social_tracking\.js +# @@||player.flix.co.il/scripts/GoogleAnalytics.js (easyprivacy.txt: 11012) +.player.flix.co.il/scripts/GoogleAnalytics\.js +# @@||vpro.nl/vpro/htmlplayer/0.3-snapshot/statcounter.js? (easyprivacy.txt: 10998) +.vpro.nl/vpro/htmlplayer/0\.3-snapshot/statcounter\.js\? +# @@||sport.be/javascripts/tracking/metriweb/spring.js (easyprivacy.txt: 10996) +.sport.be/javascripts/tracking/metriweb/spring\.js +# @@||sport.be.msn.com/javascripts/tracking/metriweb/spring.js (easyprivacy.txt: 10995) +.sport.be.msn.com/javascripts/tracking/metriweb/spring\.js +# @@||rtl.nl/system/s4m/xldata/get_comscore.js? (easyprivacy.txt: 10992) +.rtl.nl/system/s4m/xldata/get_comscore\.js\? +# @@||globecharge.com/images/ping.gif? (easyprivacy.txt: 10989) +.globecharge.com/images/ping\.gif\? +# @@||bundol.nl/skin/*/js/prototype/prototype.js,*/GoogleAnalyticsPlus/ (easyprivacy.txt: 10988) +.bundol.nl/skin/.*/js/prototype/prototype\.js,.*/GoogleAnalyticsPlus/ +# @@||csfd.cz/log? (easyprivacy.txt: 10981) +.csfd.cz/log\? +# @@||bolha.com/js/gemius_.js? (easyprivacy.txt: 10980) +.bolha.com/js/gemius_\.js\? +# @@||adobetag.com/d2/vodafonecz/live/VodafoneCZ.js (easyprivacy.txt: 10979) +.adobetag.com/d2/vodafonecz/live/VodafoneCZ\.js +# @@||uwants.com/include/*/swfaddress.js (easyprivacy.txt: 10973) +.uwants.com/include/.*/swfaddress\.js +# @@||streaming.cri.com.hk/geo.php? (easyprivacy.txt: 10972) +.streaming.cri.com.hk/geo\.php\? +# @@||on.cc/js/urchin.js (easyprivacy.txt: 10969) +.on.cc/js/urchin\.js +# @@||itc.cn/v2/asset/*/pageView.js (easyprivacy.txt: 10967) +.itc.cn/v2/asset/.*/pageView\.js +# @@||ijinshan.com/static/js/analyse.js (easyprivacy.txt: 10965) +.ijinshan.com/static/js/analyse\.js +# @@||tv5monde.com/cms/javascript/*/sitestat.js (easyprivacy.txt: 10951) +.tv5monde.com/cms/javascript/.*/sitestat\.js +# @@||tv5.org/cms/javascript/*/sitestat.js (easyprivacy.txt: 10950) +.tv5.org/cms/javascript/.*/sitestat\.js +# @@||sosh.fr^*/wtinit.js (easyprivacy.txt: 10948) +.sosh.fr/.*/wtinit\.js +# @@||sosh.fr^*/wtbase.js (easyprivacy.txt: 10947) +.sosh.fr/.*/wtbase\.js +# @@||rtl.be/rtltvi/player/vp_webanalytics.js? (easyprivacy.txt: 10946) +.rtl.be/rtltvi/player/vp_webanalytics\.js\? +# @@||ricardocuisine.com/noel/js/google_analytics.js (easyprivacy.txt: 10945) +.ricardocuisine.com/noel/js/google_analytics\.js +# @@||orange.fr^*/wtinit.js (easyprivacy.txt: 10944) +.orange.fr/.*/wtinit\.js +# @@||orange.fr^*/wtbase.js (easyprivacy.txt: 10943) +.orange.fr/.*/wtbase\.js +# @@||matvpratique.com/tools/min/index.php?f=*/xtclicks.js (easyprivacy.txt: 10940) +.matvpratique.com/tools/min/index\.php\?f=.*/xtclicks\.js +# @@||lesinrocks.com/min/?f=*/chartbeat.js (easyprivacy.txt: 10939) +.lesinrocks.com/min/\?f=.*/chartbeat\.js +# @@||leboncoin.fr/js/xiti.js (easyprivacy.txt: 10938) +.leboncoin.fr/js/xiti\.js +# @@||easypari.fr^*/sitestat.js (easyprivacy.txt: 10937) +.easypari.fr/.*/sitestat\.js +# @@||boutiqueducourrier.laposte.fr/_ui/eboutique/scripts/xiti/part/xtcore.js (easyprivacy.txt: 10934) +.boutiqueducourrier.laposte.fr/_ui/eboutique/scripts/xiti/part/xtcore\.js +# @@||actiris.be^*/urchin.js (easyprivacy.txt: 10931) +.actiris.be/.*/urchin\.js +# @@||actiris.be/urchin.js (easyprivacy.txt: 10930) +.actiris.be/urchin\.js +# @@||zdf.de/zdf/flash/eplayer/player.swf?*/cgi-bin/ivw/ (easyprivacy.txt: 10927) +.zdf.de/zdf/flash/eplayer/player\.swf\?.*/cgi-bin/ivw/ +# @@||swr3.de/static/swrplayer/web/plugins/ivw/ivw.js (easyprivacy.txt: 10919) +.swr3.de/static/swrplayer/web/plugins/ivw/ivw\.js +# @@||sparkasse.de/if/resources/js/urchin.js (easyprivacy.txt: 10910) +.sparkasse.de/if/resources/js/urchin\.js +# @@||s.gstat.orange.fr/lib/gs.js? (easyprivacy.txt: 10904) +.s.gstat.orange.fr/lib/gs\.js\? +# @@||rp-online.de^*/tracking/tracking.js (easyprivacy.txt: 10903) +.rp-online.de/.*/tracking/tracking\.js +# @@||renault.de/js/sitestat.js (easyprivacy.txt: 10901) +.renault.de/js/sitestat\.js +# @@||real.de/fileadmin/template/javascript/emos2.js (easyprivacy.txt: 10900) +.real.de/fileadmin/template/javascript/emos2\.js +# @@||planet-sports.de^*?f=*/emos2.js (easyprivacy.txt: 10899) +.planet-sports.de/.*\?f=.*/emos2\.js +# @@||o2.de/resource/js/tracking/ntpagetag.js (easyprivacy.txt: 10895) +.o2.de/resource/js/tracking/ntpagetag\.js +# @@||musicstore.de^*/emos2.js (easyprivacy.txt: 10894) +.musicstore.de/.*/emos2\.js +# @@||jetztspielen.de^*/EventTracker.js (easyprivacy.txt: 10888) +.jetztspielen.de/.*/EventTracker\.js +# @@||ing-diba.de^*/sitestat.js (easyprivacy.txt: 10881) +.ing-diba.de/.*/sitestat\.js +# @@||hse24.de^*/emos2.js (easyprivacy.txt: 10879) +.hse24.de/.*/emos2\.js +# @@||heute.de/zdf/flash/eplayer/player.swf?*/cgi-bin/ivw/ (easyprivacy.txt: 10878) +.heute.de/zdf/flash/eplayer/player\.swf\?.*/cgi-bin/ivw/ +# @@||hermesworld.com/tracking/urchin.js (easyprivacy.txt: 10877) +.hermesworld.com/tracking/urchin\.js +# @@||hammonline.de/statistik/piwik.js (easyprivacy.txt: 10876) +.hammonline.de/statistik/piwik\.js +# @@||hach.de^*/emstrack.js (easyprivacy.txt: 10875) +.hach.de/.*/emstrack\.js +# @@||gls.de^*/emos2.js (easyprivacy.txt: 10873) +.gls.de/.*/emos2\.js +# @@||getgoods.de^*/emstrack.js (easyprivacy.txt: 10871) +.getgoods.de/.*/emstrack\.js +# @@||eltern.de/min.php?*/clickTracking.js (easyprivacy.txt: 10869) +.eltern.de/min\.php\?.*/clickTracking\.js +# @@||billiger.de/js/emos2.js (easyprivacy.txt: 10860) +.billiger.de/js/emos2\.js +# @@||alternate.de/js/emos2.js (easyprivacy.txt: 10856) +.alternate.de/js/emos2\.js +# @@||addicted-sports.com/piwik/piwik.js (easyprivacy.txt: 10855) +.addicted-sports.com/piwik/piwik\.js +# @@||zylom.com/images/site/zylom/scripts/google-analytics.js (easyprivacy.txt: 10815) +.zylom.com/images/site/zylom/scripts/google-analytics\.js +# @@||zappos.com/js/trackingPixel/mercentTracker.js (easyprivacy.txt: 10813) +.zappos.com/js/trackingPixel/mercentTracker\.js +# @@||ynetnews.com/Common/App/Video/Gemius/gstream.js (easyprivacy.txt: 10811) +.ynetnews.com/Common/App/Video/Gemius/gstream\.js +# @@||ynet.co.il/Common/App/Video/Gemius/gstream.js (easyprivacy.txt: 10810) +.ynet.co.il/Common/App/Video/Gemius/gstream\.js +# @@||xfinity.com^*/Comcast.SelfService.Sitecatalyst.js (easyprivacy.txt: 10806) +.xfinity.com/.*/Comcast\.SelfService\.Sitecatalyst\.js +# @@||xcweather.co.uk/*/geo.php? (easyprivacy.txt: 10805) +.xcweather.co.uk/.*/geo\.php\? +# @@||wwe.com/sites/all/modules/wwe/wwe_analytics/s_wwe_code.js (easyprivacy.txt: 10802) +.wwe.com/sites/all/modules/wwe/wwe_analytics/s_wwe_code\.js +# @@||wp.com/_static/*/gaAddons.js (easyprivacy.txt: 10798) +.wp.com/_static/.*/gaAddons\.js +# @@||wp.com/_static/*/criteo.js (easyprivacy.txt: 10797) +.wp.com/_static/.*/criteo\.js +# @@||wired.com^*/cn-fe-stats/ (easyprivacy.txt: 10794) +.wired.com/.*/cn-fe-stats/ +# @@||windward.eu^*/angulartics-google-analytics.min.js (easyprivacy.txt: 10792) +.windward.eu/.*/angulartics-google-analytics\.min\.js +# @@||wikimedia.org^*/trackClick.js (easyprivacy.txt: 10791) +.wikimedia.org/.*/trackClick\.js +# @@||wikia.nocookie.net^*/AnalyticsEngine/js/analytics_prod.js (easyprivacy.txt: 10790) +.wikia.nocookie.net/.*/AnalyticsEngine/js/analytics_prod\.js +# @@||widgets.outbrain.com^*/comScore/comScore.htm (easyprivacy.txt: 10789) +.widgets.outbrain.com/.*/comScore/comScore\.htm +# @@||whirlpool.com/foresee/foresee-trigger.js (easyprivacy.txt: 10787) +.whirlpool.com/foresee/foresee-trigger\.js +# @@||westjet.com/js/webstats.js (easyprivacy.txt: 10786) +.westjet.com/js/webstats\.js +# @@||westelm.com^*/bloomreach.js (easyprivacy.txt: 10785) +.westelm.com/.*/bloomreach\.js +# @@||webtrack.dhlglobalmail.com^ (easyprivacy.txt: 10782) +.webtrack.dhlglobalmail.com +# @@||websimages.com/JS/Tracker.js (easyprivacy.txt: 10781) +.websimages.com/JS/Tracker\.js +# @@||wbshop.com/fcgi-bin/iipsrv.fcgi? (easyprivacy.txt: 10780) +.wbshop.com/fcgi-bin/iipsrv\.fcgi\? +# @@||walmart.com/__ssobj/core.js (easyprivacy.txt: 10775) +.walmart.com/__ssobj/core\.js +# @@||w3spy.org/etc/geo.php? (easyprivacy.txt: 10773) +.w3spy.org/etc/geo\.php\? +# @@||vulture.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10771) +.vulture.com/decor/javascript/magnify_stats\.js +# @@||volvocars.com^*/swfaddress.js? (easyprivacy.txt: 10770) +.volvocars.com/.*/swfaddress\.js\? +# @@||vizio.com/resources/js/vizio-module-tracking-google-analytics.js (easyprivacy.txt: 10767) +.vizio.com/resources/js/vizio-module-tracking-google-analytics\.js +# @@||visa.com^*/vendor/unica.js (easyprivacy.txt: 10765) +.visa.com/.*/vendor/unica\.js +# @@||vidible.tv^*/ComScore.Viewability.js (easyprivacy.txt: 10760) +.vidible.tv/.*/ComScore\.Viewability\.js +# @@||vidible.tv^*/ComScore.StreamSense.js (easyprivacy.txt: 10759) +.vidible.tv/.*/ComScore\.StreamSense\.js +# @@||vice.com^*/vmp_analytics.js (easyprivacy.txt: 10757) +.vice.com/.*/vmp_analytics\.js +# @@||uverseonline.att.net/report/click_tracking_nes.json (easyprivacy.txt: 10752) +.uverseonline.att.net/report/click_tracking_nes\.json +# @@||utm.arc.nasa.gov/images/ (easyprivacy.txt: 10751) +.utm.arc.nasa.gov/images/ +# @@||utm.arc.nasa.gov/common/js/swap.js (easyprivacy.txt: 10750) +.utm.arc.nasa.gov/common/js/swap\.js +# @@||utm.arc.nasa.gov/common/js/nav.js (easyprivacy.txt: 10749) +.utm.arc.nasa.gov/common/js/nav\.js +# @@||utm.arc.nasa.gov/common/js/hideEmail.js (easyprivacy.txt: 10748) +.utm.arc.nasa.gov/common/js/hideEmail\.js +# @@||utm.arc.nasa.gov/common/js/common.js (easyprivacy.txt: 10747) +.utm.arc.nasa.gov/common/js/common\.js +# @@||utm.arc.nasa.gov/common/css/ (easyprivacy.txt: 10746) +.utm.arc.nasa.gov/common/css/ +# @@||ups.com/*/WebTracking/track&dcs (easyprivacy.txt: 10741) +.ups.com/.*/WebTracking/track&dcs +# @@||unifi.me/mootools/classes/*-tracking (easyprivacy.txt: 10739) +.unifi.me/mootools/classes/.*-tracking +# @@||ultimedia.com/js/common/jquery.gatracker.js (easyprivacy.txt: 10738) +.ultimedia.com/js/common/jquery\.gatracker\.js +# @@||track2.royalmail.com^ (easyprivacy.txt: 10728) +.track2.royalmail.com +# @@||ticketm.net^*/click_track.js (easyprivacy.txt: 10725) +.ticketm.net/.*/click_track\.js +# @@||thestreet-static.com/video/js/kGoogleAnalytics.js? (easyprivacy.txt: 10723) +.thestreet-static.com/video/js/kGoogleAnalytics\.js\? +# @@||thehotelwindsor.com.au^*/javascript.googleAnalytics.js (easyprivacy.txt: 10721) +.thehotelwindsor.com.au/.*/javascript\.googleAnalytics\.js +# @@||texasroadhouse.com/common/javascript/google-analytics.js (easyprivacy.txt: 10719) +.texasroadhouse.com/common/javascript/google-analytics\.js +# @@||telegraph.co.uk/template/ver1-0/js/webtrends/live/wtid.js (easyprivacy.txt: 10717) +.telegraph.co.uk/template/ver1-0/js/webtrends/live/wtid\.js +# @@||teenvogue.com/js/eventTracker.js (easyprivacy.txt: 10716) +.teenvogue.com/js/eventTracker\.js +# @@||ted.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10715) +.ted.com/decor/javascript/magnify_stats\.js +# @@||tc.bankofamerica.com/c? (easyprivacy.txt: 10714) +.tc.bankofamerica.com/c\? +# @@||tablespoon.com/library/js/TBSP_ntpagetag.js (easyprivacy.txt: 10709) +.tablespoon.com/library/js/TBSP_ntpagetag\.js +# @@||support.thesslstore.com/visitor/index.php (easyprivacy.txt: 10706) +.support.thesslstore.com/visitor/index\.php +# @@||statcounter.com/msline.swf (easyprivacy.txt: 10694) +.statcounter.com/msline\.swf +# @@||statcounter.com/js/fusioncharts.js (easyprivacy.txt: 10693) +.statcounter.com/js/fusioncharts\.js +# @@||star-telegram.com/mistats/sites/dfw/startelegram.js (easyprivacy.txt: 10691) +.star-telegram.com/mistats/sites/dfw/startelegram\.js +# @@||sportsgrid.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10690) +.sportsgrid.com/decor/javascript/magnify_stats\.js +# @@||southwest.com^*/mbox.js (easyprivacy.txt: 10689) +.southwest.com/.*/mbox\.js +# @@||sijcc.org^*/page-tracking.js? (easyprivacy.txt: 10684) +.sijcc.org/.*/page-tracking\.js\? +# @@||sears.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10675) +.sears.com/.*/analytics\.sitecatalyst\.js +# @@||scorecardresearch.com/c2/plugins/streamsense_plugin_theplatform.js (easyprivacy.txt: 10672) +.scorecardresearch.com/c2/plugins/streamsense_plugin_theplatform\.js +# @@||samepage.io/assets/lib/google-analytics/GoogleAnalytics.js? (easyprivacy.txt: 10669) +.samepage.io/assets/lib/google-analytics/GoogleAnalytics\.js\? +# @@||safelinkwireless.com/enrollment/*/GoogleAnalytics.js (easyprivacy.txt: 10668) +.safelinkwireless.com/enrollment/.*/GoogleAnalytics\.js +# @@||rockingsoccer.com/js/match_stats.js (easyprivacy.txt: 10665) +.rockingsoccer.com/js/match_stats\.js +# @@||res-x.com^*/Resonance.aspx? (easyprivacy.txt: 10663) +.res-x.com/.*/Resonance\.aspx\? +# @@||remodelista.com/media/js/libs/ga_social_tracking.js (easyprivacy.txt: 10662) +.remodelista.com/media/js/libs/ga_social_tracking\.js +# @@||redfin.com/stingray/clicktracker.jsp? (easyprivacy.txt: 10660) +.redfin.com/stingray/clicktracker\.jsp\? +# @@||redditenhancementsuite.com/js/jquery.google-analytics.js (easyprivacy.txt: 10659) +.redditenhancementsuite.com/js/jquery\.google-analytics\.js +# @@||rawstory.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10658) +.rawstory.com/decor/javascript/magnify_stats\.js +# @@||rawgit.com^*/heatmap.js (easyprivacy.txt: 10657) +.rawgit.com/.*/heatmap\.js +# @@||randomhouse.com/book/css/certona.css (easyprivacy.txt: 10656) +.randomhouse.com/book/css/certona\.css +# @@||query.petametrics.com^ (easyprivacy.txt: 10654) +.query.petametrics.com +# @@||push2check.com/stats.php (easyprivacy.txt: 10651) +.push2check.com/stats\.php +# @@||pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore.Viewability.js (easyprivacy.txt: 10650) +.pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore\.Viewability\.js +# @@||pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore.StreamSense.js (easyprivacy.txt: 10649) +.pshared.5min.com/Scripts/OnePlayer/Loggers/ComScore\.StreamSense\.js +# @@||ps.w.org/google-analytics-dashboard-for-wp/assets/ (easyprivacy.txt: 10648) +.ps.w.org/google-analytics-dashboard-for-wp/assets/ +# @@||polycom.com/polycomservice/js/unica/ntpagetag.js (easyprivacy.txt: 10645) +.polycom.com/polycomservice/js/unica/ntpagetag\.js +# @@||pokemonblackwhite.com^*/jquery.google-analytics.js (easyprivacy.txt: 10644) +.pokemonblackwhite.com/.*/jquery\.google-analytics\.js +# @@||playcanvas.com.*/keen.min.js (easyprivacy.txt: 10642) +.playcanvas.com.*./(.*/)?keen\.min\.js +# @@||piwik.pro/images/ (easyprivacy.txt: 10633) +.piwik.pro/images/ +# @@||pillsbury.com/Shared/StarterKit/Javascript/UnicaTag.js (easyprivacy.txt: 10631) +.pillsbury.com/Shared/StarterKit/Javascript/UnicaTag\.js +# @@||pillsbury.com/Shared/StarterKit/Javascript/ntpagetag.js (easyprivacy.txt: 10630) +.pillsbury.com/Shared/StarterKit/Javascript/ntpagetag\.js +# @@||periscope.tv^*/bugsnag-*.min.js (easyprivacy.txt: 10628) +.periscope.tv/.*/bugsnag-.*\.min\.js +# @@||pbskids.org/js/ga-current.js (easyprivacy.txt: 10627) +.pbskids.org/js/ga-current\.js +# @@||patrick-wied.at/static/heatmapjs/src/heatmap.js (easyprivacy.txt: 10624) +.patrick-wied.at/static/heatmapjs/src/heatmap\.js +# @@||pastebin.com/etc/geo.php? (easyprivacy.txt: 10623) +.pastebin.com/etc/geo\.php\? +# @@||officeworks.com.au^*/site-tracker.js (easyprivacy.txt: 10614) +.officeworks.com.au/.*/site-tracker\.js +# @@||odcdn.com^*/cm.js (easyprivacy.txt: 10613) +.odcdn.com/.*/cm\.js +# @@||nytimes.com^*/wtinit.js (easyprivacy.txt: 10612) +.nytimes.com/.*/wtinit\.js +# @@||nytimes.com^*/wtbase.js (easyprivacy.txt: 10611) +.nytimes.com/.*/wtbase\.js +# @@||nytimes.com^*/EventTracker.js (easyprivacy.txt: 10610) +.nytimes.com/.*/EventTracker\.js +# @@||nymag.com/decor/javascript/magnify_stats.js (easyprivacy.txt: 10606) +.nymag.com/decor/javascript/magnify_stats\.js +# @@||next.co.uk/Scripts/GoogleAnalytics.js? (easyprivacy.txt: 10602) +.next.co.uk/Scripts/GoogleAnalytics\.js\? +# @@||networkworld.com^*/demandbase.js (easyprivacy.txt: 10600) +.networkworld.com/.*/demandbase\.js +# @@||netinsight.travelers.com/scripts/ntpagetaghttps.js (easyprivacy.txt: 10599) +.netinsight.travelers.com/scripts/ntpagetaghttps\.js +# @@||ncbi.nlm.nih.gov/stat? (easyprivacy.txt: 10597) +.ncbi.nlm.nih.gov/stat\? +# @@||nationwide.co.uk/_/js/webAnalytics.js (easyprivacy.txt: 10596) +.nationwide.co.uk/_/js/webAnalytics\.js +# @@||nationalreview.com^*/chartbeat.js (easyprivacy.txt: 10595) +.nationalreview.com/.*/chartbeat\.js +# @@||nationaljournal.com/js/bizo.js (easyprivacy.txt: 10594) +.nationaljournal.com/js/bizo\.js +# @@||narf-archive.com^*/clickstream.js (easyprivacy.txt: 10593) +.narf-archive.com/.*/clickstream\.js +# @@||mybuys.com/webrec/wr.do? (easyprivacy.txt: 10590) +.mybuys.com/webrec/wr\.do\? +# @@||musicvideogenome.com/javascripts/stats.js (easyprivacy.txt: 10587) +.musicvideogenome.com/javascripts/stats\.js +# @@||munchkin.marketo.net/munchkin.js (easyprivacy.txt: 10586) +.munchkin.marketo.net/munchkin\.js +# @@||moulinex.com/js/xtroi.js (easyprivacy.txt: 10581) +.moulinex.com/js/xtroi\.js +# @@||motorolasolutions.com/wrs/b2bsdc.js (easyprivacy.txt: 10580) +.motorolasolutions.com/wrs/b2bsdc\.js +# @@||mlb.com/shared/scripts/bam.tracking.js (easyprivacy.txt: 10572) +.mlb.com/shared/scripts/bam\.tracking\.js +# @@||milb.com/shared/scripts/bam.tracking.js (easyprivacy.txt: 10568) +.milb.com/shared/scripts/bam\.tracking\.js +# @@||microsoft.com/click/services/RioTracking2.js (easyprivacy.txt: 10566) +.microsoft.com/click/services/RioTracking2\.js +# @@||metrics.torproject.org^ (easyprivacy.txt: 10565) +.metrics.torproject.org +# @@||metrics.ctvdigital.net/global/CtvAd.js (easyprivacy.txt: 10561) +.metrics.ctvdigital.net/global/CtvAd\.js +# @@||medicare.gov/SharedResources/widgets/foresee/foresee-trigger.js (easyprivacy.txt: 10559) +.medicare.gov/SharedResources/widgets/foresee/foresee-trigger\.js +# @@||media.ticketmaster.*/click_track.js (easyprivacy.txt: 10557) +.media.ticketmaster.*./(.*/)?click_track\.js +# @@||media-imdb.com^*/clickstream.js (easyprivacy.txt: 10553) +.media-imdb.com/.*/clickstream\.js +# @@||mec.ca/media/javascript/resxclsx.js (easyprivacy.txt: 10552) +.mec.ca/media/javascript/resxclsx\.js +# @@||maserati.com^*/transparent1x1.png (easyprivacy.txt: 10548) +.maserati.com/.*/transparent1x1\.png +# @@||magnify.net^*/magnify_stats.js (easyprivacy.txt: 10542) +.magnify.net/.*/magnify_stats\.js +# @@||lufthansa.com^*/mmcore.js (easyprivacy.txt: 10539) +.lufthansa.com/.*/mmcore\.js +# @@||lsi.com^*/google-analytics.js (easyprivacy.txt: 10538) +.lsi.com/.*/google-analytics\.js +# @@||lordandtaylor.com^*/javascript/Analytics/CartEventDataInit.js (easyprivacy.txt: 10536) +.lordandtaylor.com/.*/javascript/Analytics/CartEventDataInit\.js +# @@||logmein.com/scripts/Tracking/Tracking.js (easyprivacy.txt: 10535) +.logmein.com/scripts/Tracking/Tracking\.js +# @@||logging.apache.org^ (easyprivacy.txt: 10534) +.logging.apache.org +# @@||lloydstsb.com/it/xslt/touchclarity/omtr_tc.js (easyprivacy.txt: 10531) +.lloydstsb.com/it/xslt/touchclarity/omtr_tc\.js +# @@||live.indiatimes.com/trackjs.cms (easyprivacy.txt: 10530) +.live.indiatimes.com/trackjs\.cms +# @@||link.theplatform.com/*?affiliate= (easyprivacy.txt: 10529) +.link.theplatform.com/.*\?affiliate= +# @@||link.theplatform.com/*/tracker.log? (easyprivacy.txt: 10528) +.link.theplatform.com/.*/tracker\.log\? +# @@||lg.com^*/foresee/foresee-trigger.js (easyprivacy.txt: 10526) +.lg.com/.*/foresee/foresee-trigger\.js +# @@||leretourdelautruche.com/map/nuke/heatmap.js (easyprivacy.txt: 10524) +.leretourdelautruche.com/map/nuke/heatmap\.js +# @@||lenovo.com^*/GoogleAnalytics.js (easyprivacy.txt: 10523) +.lenovo.com/.*/GoogleAnalytics\.js +# @@||latimes.com/hive/javascripts/loggingService.js (easyprivacy.txt: 10522) +.latimes.com/hive/javascripts/loggingService\.js +# @@||koldcast.tv/mint/*/tracker.php? (easyprivacy.txt: 10519) +.koldcast.tv/mint/.*/tracker\.php\? +# @@||keremerkan.net/wp-content/plugins/wp-minify/min/*/google-analyticator/ (easyprivacy.txt: 10517) +.keremerkan.net/wp-content/plugins/wp-minify/min/.*/google-analyticator/ +# @@||kentucky.com/mistats/finalizestats.js (easyprivacy.txt: 10516) +.kentucky.com/mistats/finalizestats\.js +# @@||kaltura.com/content/*/comscorePlugin.swf (easyprivacy.txt: 10514) +.kaltura.com/content/.*/comscorePlugin\.swf +# @@||juxtacommons.org^*/heatmap.js (easyprivacy.txt: 10512) +.juxtacommons.org/.*/heatmap\.js +# @@||js.vpro.nl/vpro/*/statcounter.js? (easyprivacy.txt: 10511) +.js.vpro.nl/vpro/.*/statcounter\.js\? +# @@||jackjones.com^*/google-analytics-tagging.js (easyprivacy.txt: 10508) +.jackjones.com/.*/google-analytics-tagging\.js +# @@||itworld.com/elqnow/elq*.js (easyprivacy.txt: 10507) +.itworld.com/elqnow/elq.*\.js +# @@||intel.com^*/angular-google-analytics.js (easyprivacy.txt: 10504) +.intel.com/.*/angular-google-analytics\.js +# @@||imrworldwide.com^*/swfobject.js (easyprivacy.txt: 10501) +.imrworldwide.com/.*/swfobject\.js +# @@||imrworldwide.com^*/flashdetect.js (easyprivacy.txt: 10499) +.imrworldwide.com/.*/flashdetect\.js +# @@||ibis.com/scripts-*/xtanalyzer_roi.js (easyprivacy.txt: 10492) +.ibis.com/scripts-.*/xtanalyzer_roi\.js +# @@||hotmail.com/mail/*/i2a.js (easyprivacy.txt: 10489) +.hotmail.com/mail/.*/i2a\.js +# @@||hostlogr.com/etc/geo.php? (easyprivacy.txt: 10488) +.hostlogr.com/etc/geo\.php\? +# @@||homedepot.com/static/scripts/resxclsa.js (easyprivacy.txt: 10487) +.homedepot.com/static/scripts/resxclsa\.js +# @@||highcharts.com^*/heatmap.js (easyprivacy.txt: 10484) +.highcharts.com/.*/heatmap\.js +# @@||hhgregg.com/wcsstore/MadisonsStorefrontAssetStore/javascript/Analytics/AnalyticsTagDataObject.js (easyprivacy.txt: 10483) +.hhgregg.com/wcsstore/MadisonsStorefrontAssetStore/javascript/Analytics/AnalyticsTagDataObject\.js +# @@||healthcare.gov/marketplace/*/clear.gif? (easyprivacy.txt: 10482) +.healthcare.gov/marketplace/.*/clear\.gif\? +# @@||harvard.edu/scripts/ga_social_tracking.js (easyprivacy.txt: 10481) +.harvard.edu/scripts/ga_social_tracking\.js +# @@||halowars.com/stats/images/Buttons/MapStats.jpg (easyprivacy.txt: 10480) +.halowars.com/stats/images/Buttons/MapStats\.jpg +# @@||graphracer.com/js/libs/heatmap.js (easyprivacy.txt: 10478) +.graphracer.com/js/libs/heatmap\.js +# @@||grapeshot.co.uk/sare-api/ (easyprivacy.txt: 10477) +.grapeshot.co.uk/sare-api/ +# @@||goldmansachs.com/a/pg/js/prod/gs-analytics-init.js (easyprivacy.txt: 10462) +.goldmansachs.com/a/pg/js/prod/gs-analytics-init\.js +# @@||goldbet.com/Scripts/googleAnalytics.js (easyprivacy.txt: 10461) +.goldbet.com/Scripts/googleAnalytics\.js +# @@||go.com^*/analytics/tracker.otv.js (easyprivacy.txt: 10460) +.go.com/.*/analytics/tracker\.otv\.js +# @@||go.com/stat/flash/analyticreportingas3.swf (easyprivacy.txt: 10459) +.go.com/stat/flash/analyticreportingas3\.swf +# @@||go.com/stat/dolwebanalytics.js (easyprivacy.txt: 10458) +.go.com/stat/dolwebanalytics\.js +# @@||gardenista.com/media/js/libs/ga_social_tracking.js (easyprivacy.txt: 10444) +.gardenista.com/media/js/libs/ga_social_tracking\.js +# @@||gameplayer.io^*/EventTracker.js (easyprivacy.txt: 10443) +.gameplayer.io/.*/EventTracker\.js +# @@||foodnetwork.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10439) +.foodnetwork.com/.*/analytics\.sitecatalyst\.js +# @@||focus.ti.com^*/metrics-min.js (easyprivacy.txt: 10438) +.focus.ti.com/.*/metrics-min\.js +# @@||flipps.com^*/page-tracking.js? (easyprivacy.txt: 10435) +.flipps.com/.*/page-tracking\.js\? +# @@||fitloop.co/packages/GAnalytics.js? (easyprivacy.txt: 10434) +.fitloop.co/packages/GAnalytics\.js\? +# @@||firstdirect.com^*/logging-code.js (easyprivacy.txt: 10433) +.firstdirect.com/.*/logging-code\.js +# @@||fifa.com^*/webanalytics.js? (easyprivacy.txt: 10432) +.fifa.com/.*/webanalytics\.js\? +# @@||fccbrea.org^*/swfaddress.js (easyprivacy.txt: 10431) +.fccbrea.org/.*/swfaddress\.js +# @@||expedia.com/static/default/default/scripts/TealeafSDK.js (easyprivacy.txt: 10430) +.expedia.com/static/default/default/scripts/TealeafSDK\.js +# @@||expedia.com/static/default/default/scripts/siteAnalytics.js (easyprivacy.txt: 10429) +.expedia.com/static/default/default/scripts/siteAnalytics\.js +# @@||evernote.com^*/google-analytics-util.js (easyprivacy.txt: 10427) +.evernote.com/.*/google-analytics-util\.js +# @@||epixhd.com/styleassets/js/google-analytics.js (easyprivacy.txt: 10421) +.epixhd.com/styleassets/js/google-analytics\.js +# @@||eircomphonebook.ie/js/wt_capi.js? (easyprivacy.txt: 10411) +.eircomphonebook.ie/js/wt_capi\.js\? +# @@||egencia.com/pubspec/scripts/include/siteanalytics_include.js (easyprivacy.txt: 10410) +.egencia.com/pubspec/scripts/include/siteanalytics_include\.js +# @@||ecostream.tv/js/ecos.js (easyprivacy.txt: 10408) +.ecostream.tv/js/ecos\.js +# @@||directline.com^*/analytics.sitecatalyst.js (easyprivacy.txt: 10398) +.directline.com/.*/analytics\.sitecatalyst\.js +# @@||diablo3.com/assets/js/jquery.google-analytics.js (easyprivacy.txt: 10395) +.diablo3.com/assets/js/jquery\.google-analytics\.js +# @@||descopera.ro/js/addLinkerEvents-ga.js (easyprivacy.txt: 10394) +.descopera.ro/js/addLinkerEvents-ga\.js +# @@||debenhams.com/foresee/foresee-trigger.js (easyprivacy.txt: 10391) +.debenhams.com/foresee/foresee-trigger\.js +# @@||deals.nextag.com^*/ClickTracker.jsp (easyprivacy.txt: 10390) +.deals.nextag.com/.*/ClickTracker\.jsp +# @@||dailymail.co.uk/brightcove/tracking/ted3.js (easyprivacy.txt: 10389) +.dailymail.co.uk/brightcove/tracking/ted3\.js +# @@||dailyfinance.com/traffic/? (easyprivacy.txt: 10388) +.dailyfinance.com/traffic/\? +# @@||dailycaller.com^*_chartbeat.js (easyprivacy.txt: 10387) +.dailycaller.com/.*_chartbeat\.js +# @@||ctv.ca/players/mediaplayer/*/comscorebeacon.js (easyprivacy.txt: 10381) +.ctv.ca/players/mediaplayer/.*/comscorebeacon\.js +# @@||csoonline.com/js/demandbase.js (easyprivacy.txt: 10380) +.csoonline.com/js/demandbase\.js +# @@||cschat.ebay.com^*/scripts/log.js (easyprivacy.txt: 10377) +.cschat.ebay.com/.*/scripts/log\.js +# @@||craveonline.com^*/google-analytics.min.js (easyprivacy.txt: 10374) +.craveonline.com/.*/google-analytics\.min\.js +# @@||coremetrics.com*/eluminate.js (easyprivacy.txt: 10370) +.coremetrics.com*./(.*/)?eluminate\.js +# @@||contentdef.com/assets/common/js/google-analytics.js (easyprivacy.txt: 10369) +.contentdef.com/assets/common/js/google-analytics\.js +# @@||constantcontact.com/js/WebTracking/ (easyprivacy.txt: 10368) +.constantcontact.com/js/WebTracking/ +# @@||collegeboard.org/webanalytics/ (easyprivacy.txt: 10366) +.collegeboard.org/webanalytics/ +# @@||citiretailservices.citibankonline.com/USCRSF/USCRSGBL/js/AppMeasurement.js (easyprivacy.txt: 10353) +.citiretailservices.citibankonline.com/USCRSF/USCRSGBL/js/AppMeasurement\.js +# @@||cisco.com/web/fw/m/ntpagetag.min.js (easyprivacy.txt: 10352) +.cisco.com/web/fw/m/ntpagetag\.min\.js +# @@||cisco.com/web/fw/lib/ntpagetag.js (easyprivacy.txt: 10351) +.cisco.com/web/fw/lib/ntpagetag\.js +# @@||cio.com/js/demandbase.js? (easyprivacy.txt: 10350) +.cio.com/js/demandbase\.js\? +# @@||cdn-redfin.com^*/page_analytics.xd.js (easyprivacy.txt: 10341) +.cdn-redfin.com/.*/page_analytics\.xd\.js +# @@||cbc.ca^*/loggingservice.js? (easyprivacy.txt: 10333) +.cbc.ca/.*/loggingservice\.js\? +# @@||care2.com/assets/scripts/cookies/care2/NitroCookies.js (easyprivacy.txt: 10332) +.care2.com/assets/scripts/cookies/care2/NitroCookies\.js +# @@||capitalone360.com/urchin.js (easyprivacy.txt: 10331) +.capitalone360.com/urchin\.js +# @@||canoe.ca/generix/omniture/TagOmnitureEngine.js (easyprivacy.txt: 10330) +.canoe.ca/generix/omniture/TagOmnitureEngine\.js +# @@||canadiantire.ca^*/analytics.sitecatalyst.js (easyprivacy.txt: 10329) +.canadiantire.ca/.*/analytics\.sitecatalyst\.js +# @@||canada.com/js/ooyala/comscore.js (easyprivacy.txt: 10328) +.canada.com/js/ooyala/comscore\.js +# @@||cache.nymag.com^*/clickability.js (easyprivacy.txt: 10327) +.cache.nymag.com/.*/clickability\.js +# @@||buffalowildwings.com^*/google-analytics.js (easyprivacy.txt: 10322) +.buffalowildwings.com/.*/google-analytics\.js +# @@||bt.com^*/touchclarity/homepage/omtr_tc.js (easyprivacy.txt: 10320) +.bt.com/.*/touchclarity/homepage/omtr_tc\.js +# @@||britishairways.com/cms/global/scripts/applications/tracking/visualsciences.js (easyprivacy.txt: 10318) +.britishairways.com/cms/global/scripts/applications/tracking/visualsciences\.js +# @@||boxtops4education.com^*/ntpagetag.js (easyprivacy.txt: 10317) +.boxtops4education.com/.*/ntpagetag\.js +# @@||bountysource.com/badge/tracker? (easyprivacy.txt: 10316) +.bountysource.com/badge/tracker\? +# @@||bootcamp.mit.edu/js/angulartics-google-analytics.min.js (easyprivacy.txt: 10315) +.bootcamp.mit.edu/js/angulartics-google-analytics\.min\.js +# @@||bolha.com/clicktracker/ (easyprivacy.txt: 10312) +.bolha.com/clicktracker/ +# @@||bitgo.com/vendor/googleanalytics/angular-ga.min.js (easyprivacy.txt: 10310) +.bitgo.com/vendor/googleanalytics/angular-ga\.min\.js +# @@||bhg.com/web/js-min/common/js/dwr/RemoteTargetingService.js (easyprivacy.txt: 10309) +.bhg.com/web/js-min/common/js/dwr/RemoteTargetingService\.js +# @@||bettycrocker.com/Shared/Javascript/UnicaTag.js (easyprivacy.txt: 10308) +.bettycrocker.com/Shared/Javascript/UnicaTag\.js +# @@||bettycrocker.com/Shared/Javascript/ntpagetag.js (easyprivacy.txt: 10307) +.bettycrocker.com/Shared/Javascript/ntpagetag\.js +# @@||benswann.com/decor/javascript/magnify_stats.js? (easyprivacy.txt: 10304) +.benswann.com/decor/javascript/magnify_stats\.js\? +# @@||behanceserved.com/stats/stats.js? (easyprivacy.txt: 10303) +.behanceserved.com/stats/stats\.js\? +# @@||beacon.guim.co.uk/accept-beacon? (easyprivacy.txt: 10301) +.beacon.guim.co.uk/accept-beacon\? +# @@||bc.geocities.*/not_found/ (easyprivacy.txt: 10300) +.bc.geocities.*./(.*/)?not_found/ +# @@||barclays.co.uk/touchclarity/mbox.js (easyprivacy.txt: 10297) +.barclays.co.uk/touchclarity/mbox\.js +# @@||autoscout24.net/unifiedtracking/ivw.js (easyprivacy.txt: 10295) +.autoscout24.net/unifiedtracking/ivw\.js +# @@||att.com/webtrends/scripts/dcs_tag.js (easyprivacy.txt: 10294) +.att.com/webtrends/scripts/dcs_tag\.js +# @@||atpworldtour.com/assets/js/util/googleAnalytics.js (easyprivacy.txt: 10293) +.atpworldtour.com/assets/js/util/googleAnalytics\.js +# @@||atdmt.com/ds/yusptsprtspr/ (easyprivacy.txt: 10290) +.atdmt.com/ds/yusptsprtspr/ +# @@||arcgis.com^*/heatmap.js (easyprivacy.txt: 10286) +.arcgis.com/.*/heatmap\.js +# @@||anthem.com/includes/foresee/foresee-trigger.js (easyprivacy.txt: 10278) +.anthem.com/includes/foresee/foresee-trigger\.js +# @@||analytics.atomiconline.com/services/jquery.js (easyprivacy.txt: 10271) +.analytics.atomiconline.com/services/jquery\.js +# @@||amctv.com^*/comscore.js (easyprivacy.txt: 10269) +.amctv.com/.*/comscore\.js +# @@||aliunicorn.com^*/click_stat/ (easyprivacy.txt: 10266) +.aliunicorn.com/.*/click_stat/ +# @@||aliunicorn.com^*/click-stat.js (easyprivacy.txt: 10265) +.aliunicorn.com/.*/click-stat\.js +# @@||aflac.com/js/wt_capi.js (easyprivacy.txt: 10262) +.aflac.com/js/wt_capi\.js +# @@||adidas.com^*/adidasAnalytics.js? (easyprivacy.txt: 10256) +.adidas.com/.*/adidasAnalytics\.js\? +# @@||accorhotels.com^*/xtanalyzer_roi.js (easyprivacy.txt: 10252) +.accorhotels.com/.*/xtanalyzer_roi\.js +# @@||about-australia.com/*/clickheat.js (easyprivacy.txt: 10251) +.about-australia.com/.*/clickheat\.js + +#ab2p-unblock-request-Aaiov-Caiov +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaiov} \ + +server-header-tagger{ab2p-unblock-request-Caiov} \ +} +# @@||s.youtube.com/api/stats/playback?$image,object-subrequest (easyprivacy.txt: 10667) +.s.youtube.com/api/stats/playback\? + +#ab2p-unblock-request-Aaov-Caov +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov} \ + +server-header-tagger{ab2p-unblock-request-Caov} \ +} +TAG:^ab2p-unblock-request-Aaov-Caov$ +# @@||tvyo.com/player/plugins/comscorePlugin.swf?$object-subrequest (easyprivacy.txt: 11090) +.tvyo.com/player/plugins/comscorePlugin\.swf\? +# @@||giga.de/wp-content/plugins/econa-stats/log/video-views/log.php?id=$object-subrequest (easyprivacy.txt: 10872) +.giga.de/wp-content/plugins/econa-stats/log/video-views/log\.php\?id= +# @@||gametrailers.com/b/ss/$object-subrequest (easyprivacy.txt: 10820) +.gametrailers.com/b/ss/ +# @@||vod.olympics2010.msn.com/beacon?$object-subrequest (easyprivacy.txt: 10768) +.vod.olympics2010.msn.com/beacon\? +# @@||urlcheck.hulu.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10743) +.urlcheck.hulu.com/crossdomain\.xml +# @@||theplatform.com^*/comScore.swf$object-subrequest (easyprivacy.txt: 10722) +.theplatform.com/.*/comScore\.swf +# @@||stats.jtvnw.net/crossdomain.xml$object-subrequest (easyprivacy.txt: 10701) +.stats.jtvnw.net/crossdomain\.xml +# @@||static.chartbeat.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10697) +.static.chartbeat.com/crossdomain\.xml +# @@||playtheend.com/api/v1/players/heatmap.json?$object-subrequest (easyprivacy.txt: 10643) +.playtheend.com/api/v1/players/heatmap\.json\? +# @@||ooyala.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10617) +.ooyala.com/crossdomain\.xml +# @@||ensighten.com/libs/flowplayer/ensightenplugin.swf$object-subrequest (easyprivacy.txt: 10416) +.ensighten.com/libs/flowplayer/ensightenplugin\.swf +# @@||ensighten.com/crossdomain.xml$object-subrequest (easyprivacy.txt: 10415) +.ensighten.com/crossdomain\.xml +# @@||assets.espn.go.com/espn360/builds/nielsen/ggce*.swf$object-subrequest (easyprivacy.txt: 10289) +.assets.espn.go.com/espn360/builds/nielsen/ggce.*\.swf +# @@||arkadiumhosted.com^*/google-analytics-logger.swf$object-subrequest (easyprivacy.txt: 10287) +.arkadiumhosted.com/.*/google-analytics-logger\.swf + +#ab2p-unblock-request-Aaov-Caov-when-R112 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R112} \ +} +# @@||w88.go.com/crossdomain.xml$object-subrequest,domain=abcnews.go.com (easyprivacy.txt: 10774) +.w88.go.com/crossdomain\.xml + +#ab2p-unblock-request-Aaov-Caov-when-R113 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R113} \ +} +# @@||sitestat.com/crossdomain.xml$object-subrequest,domain=abp.nl (easyprivacy.txt: 10994) +.sitestat.com/crossdomain\.xml +# @@||sitestat.com/abp/abp/s?$object-subrequest,domain=abp.nl (easyprivacy.txt: 10993) +.sitestat.com/abp/abp/s\? + +#ab2p-unblock-request-Aaov-Caov-when-R133 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R133} \ +} +# @@||ad.crwdcntrl.net^$object-subrequest,domain=ap.org|newsinc.com (easyprivacy.txt: 10253) +.ad.crwdcntrl.net + +#ab2p-unblock-request-Aaov-Caov-when-R150 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R150} \ +} +# @@||video.oms.eu/projekt/download/OMSComponent.swf$object-subrequest,domain=badische-zeitung.de (easyprivacy.txt: 10924) +.video.oms.eu/projekt/download/OMSComponent\.swf +# @@||video.oms.eu/crossdomain.xml$object-subrequest,domain=badische-zeitung.de (easyprivacy.txt: 10923) +.video.oms.eu/crossdomain\.xml + +#ab2p-unblock-request-Aaov-Caov-when-R163 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R163} \ +} +# @@||pixel.quantserve.com/seg/r;a=$object-subrequest,domain=breitbart.tv|cbs.com|filefront.com|imdb.com|laobserved.com|tv.com (easyprivacy.txt: 10641) +.pixel.quantserve.com/seg/r;a= + +#ab2p-unblock-request-Aaov-Caov-when-R170 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R170} \ +} +# @@||imrworldwide.com/crossdomain.xml$object-subrequest,domain=cc.com|sbs.com.au (easyprivacy.txt: 10495) +.imrworldwide.com/crossdomain\.xml + +#ab2p-unblock-request-Aaov-Caov-when-R177 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R177} \ +} +# @@||doubleclick.net/activityi;src=$object-subrequest,domain=cicispizza.com (easyprivacy.txt: 10401) +.doubleclick.net/activityi;src= + +#ab2p-unblock-request-Aaov-Caov-when-R181 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R181} \ +} +# @@||ad.de.doubleclick.net/imp;$object-subrequest,domain=clipfish.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10853) +.ad.de.doubleclick.net/imp; + +#ab2p-unblock-request-Aaov-Caov-when-R189 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R189} \ +} +# @@||codicefl.shinystat.com/cgi-bin/getswf.cgi?*PolymediaShow$object-subrequest,domain=corriereadriatico.it|ilgazzettino.it|ilmattino.it|ilmessaggero.it|leggo.it|quotidianodipuglia.it (easyprivacy.txt: 11024) +.codicefl.shinystat.com/cgi-bin/getswf\.cgi\?.*PolymediaShow + +#ab2p-unblock-request-Aaov-Caov-when-R219 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R219} \ +} +# @@||visiblemeasures.com/crossdomain.xml$object-subrequest,domain=espn.go.com|live.indiatimes.com (easyprivacy.txt: 10766) +.visiblemeasures.com/crossdomain\.xml + +#ab2p-unblock-request-Aaov-Caov-when-R236 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R236} \ +} +# @@||ivwextern.prosieben.de/php-bin/functions/ivwbox/ivwbox_extern.php?path=$object-subrequest,domain=galileo-videolexikon.de (easyprivacy.txt: 10886) +.ivwextern.prosieben.de/php-bin/functions/ivwbox/ivwbox_extern\.php\?path= +# @@||ivwextern.prosieben.de/crossdomain.xml$object-subrequest,domain=galileo-videolexikon.de (easyprivacy.txt: 10885) +.ivwextern.prosieben.de/crossdomain\.xml + +#ab2p-unblock-request-Aaov-Caov-when-R264 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R264} \ +} +# @@||cache2.delvenetworks.com/ps/c/v1/$object-subrequest,domain=lapresse.ca (easyprivacy.txt: 10936) +.cache2.delvenetworks.com/ps/c/v1/ + +#ab2p-unblock-request-Aaov-Caov-when-R266 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R266} \ +} +# @@||services.fliqz.com/metrics/*/applications/$object-subrequest,domain=leftlanenews.com (easyprivacy.txt: 10680) +.services.fliqz.com/metrics/.*/applications/ + +#ab2p-unblock-request-Aaov-Caov-when-R271 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R271} \ +} +# @@||ooyala.com/3rdparty/comscore_$object-subrequest,domain=livetvcafe.net|player.complex.com (easyprivacy.txt: 10616) +.ooyala.com/3rdparty/comscore_ + +#ab2p-unblock-request-Aaov-Caov-when-R282 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R282} \ +} +# @@||stats.e-go.gr/rx.asp?$object-subrequest,domain=megatv.com (easyprivacy.txt: 11004) +.stats.e-go.gr/rx\.asp\? + +#ab2p-unblock-request-Aaov-Caov-when-R300 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R300} \ +} +# @@||count.rtl.de/crossdomain.xml$object-subrequest,domain=n-tvnow.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10865) +.count.rtl.de/crossdomain\.xml + +#ab2p-unblock-request-Aaov-Caov-when-R302 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R302} \ +} +# @@||videos.nbcolympics.com/beacon?$object-subrequest,domain=nbcolympics.com (easyprivacy.txt: 10758) +.videos.nbcolympics.com/beacon\? + +#ab2p-unblock-request-Aaov-Caov-when-R347 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R347} \ +} +# @@||edgesuite.net/crossdomain.xml$object-subrequest,domain=sbs.com.au (easyprivacy.txt: 10409) +.edgesuite.net/crossdomain\.xml + +#ab2p-unblock-request-Aaov-Caov-when-R405 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aaov-Caov-when-R405} \ +} +# @@||scorecardresearch.com/p?$object-subrequest,domain=web.de (easyprivacy.txt: 10907) +.scorecardresearch.com/p\? +# @@||scorecardresearch.com/crossdomain.xml$object-subrequest,domain=web.de (easyprivacy.txt: 10906) +.scorecardresearch.com/crossdomain\.xml + +#ab2p-unblock-request-Aasv-Casv +{-block \ + +client-header-tagger{ab2p-unblock-request-Aasv} \ + +server-header-tagger{ab2p-unblock-request-Casv} \ +} +TAG:^ab2p-unblock-request-Aasv-Casv$ +# @@||vplayer.ilsemedia.nl/swf/im_player.swf?$object (easyprivacy.txt: 10997) +.vplayer.ilsemedia.nl/swf/im_player\.swf\? + +#ab2p-unblock-request-Aasv-Casv-when-R373 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aasv-Casv-when-R373} \ +} +# @@||guim.co.uk/flash/video/embedded/player-$object,domain=thedailywh.at (easyprivacy.txt: 10479) +.guim.co.uk/flash/video/embedded/player- + +#ab2p-unblock-request-Acj-Ccj +{-block \ + +client-header-tagger{ab2p-unblock-request-Acj} \ + +server-header-tagger{ab2p-unblock-request-Ccj} \ +} +# @@||jeevansathi.com/minify.php?files=$script,stylesheet (easyprivacy.txt: 10509) +.jeevansathi.com/minify\.php\?files= + +#ab2p-unblock-request-Ai-Ci +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai} \ + +server-header-tagger{ab2p-unblock-request-Ci} \ +} +TAG:^ab2p-unblock-request-Ai-Ci$ +# @@||walmart.com/b/ss/$image (easyprivacy.txt: 10845) +.walmart.com/b/ss/ +# @@||stat.safeway.com/b/ss/$image (easyprivacy.txt: 10844) +.stat.safeway.com/b/ss/ +# @@||smetrics.ticketmaster.com/b/ss/$image (easyprivacy.txt: 10843) +.smetrics.ticketmaster.com/b/ss/ +# @@||smetrics.target.com/b/ss/$image (easyprivacy.txt: 10842) +.smetrics.target.com/b/ss/ +# @@||simyo.de/b/ss/$image (easyprivacy.txt: 10841) +.simyo.de/b/ss/ +# @@||metrics.ticketmaster.com/b/ss/$image (easyprivacy.txt: 10836) +.metrics.ticketmaster.com/b/ss/ +# @@||metrics.thetrainline.com/b/ss/$image (easyprivacy.txt: 10835) +.metrics.thetrainline.com/b/ss/ +# @@||metrics.target.com/b/ss/$image (easyprivacy.txt: 10834) +.metrics.target.com/b/ss/ +# @@||metrics.nationwide.co.uk/b/ss/$image (easyprivacy.txt: 10833) +.metrics.nationwide.co.uk/b/ss/ +# @@||metrics.brooksbrothers.com/b/ss/$image (easyprivacy.txt: 10832) +.metrics.brooksbrothers.com/b/ss/ +# @@||metrics.ancestry.com/b/ss/$image (easyprivacy.txt: 10831) +.metrics.ancestry.com/b/ss/ +# @@||kohls.com/b/ss/$image (easyprivacy.txt: 10830) +.kohls.com/b/ss/ +# @@||kaspersky.co.uk/b/ss/$image (easyprivacy.txt: 10829) +.kaspersky.co.uk/b/ss/ +# @@||globalnews.ca/b/ss/$image (easyprivacy.txt: 10827) +.globalnews.ca/b/ss/ +# @@||fandango.com/b/ss/$image (easyprivacy.txt: 10826) +.fandango.com/b/ss/ +# @@||castorama.fr/b/ss/$image (easyprivacy.txt: 10825) +.castorama.fr/b/ss/ +# @@||amazoncustomerservice.d2.sc.omtrdc.net/b/ss/*/H.25.1/$image (easyprivacy.txt: 10824) +.amazoncustomerservice.d2.sc.omtrdc.net/b/ss/.*/H\.25\.1/ +# @@||tags.w55c.net/rs?*&t=marketing$image (easyprivacy.txt: 10713) +.tags.w55c.net/rs\?.*&t=marketing +# @@||pixel.facebook.com/ajax/notifications/mark_read.php?*&alert_ids%$image (easyprivacy.txt: 10636) +.pixel.facebook.com/ajax/notifications/mark_read\.php\?.*&alert_ids% +# @@||pixel.facebook.com/ajax/gigaboxx/endpoint/UpdateLastSeenTime.php?$image (easyprivacy.txt: 10635) +.pixel.facebook.com/ajax/gigaboxx/endpoint/UpdateLastSeenTime\.php\? +# @@||ping.hellobar.com/?*&_e=click&$image (easyprivacy.txt: 10632) +.ping.hellobar.com/\?.*&_e=click& +# @@||mlb.com/b/ss/$image (easyprivacy.txt: 10571) +.mlb.com/b/ss/ +# @@||metrics.nissanusa.com/b/ss/nissanusacom/$image (easyprivacy.txt: 10564) +.metrics.nissanusa.com/b/ss/nissanusacom/ +# @@||metrics.howstuffworks.com/b/ss/*&ot=$image (easyprivacy.txt: 10562) +.metrics.howstuffworks.com/b/ss/.*&ot= +# @@||lynda.com^*/px.gif?$image (easyprivacy.txt: 10541) +.lynda.com/.*/px\.gif\? +# @@||grapeshot.co.uk/image-resize/$image (easyprivacy.txt: 10476) +.grapeshot.co.uk/image-resize/ + +#ab2p-unblock-request-Ai-Ci-Xx +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai} \ + +server-header-tagger{ab2p-unblock-request-Ci} \ + +client-header-tagger{ab2p-unblock-request-Xx} \ +} +# @@||themarker.com/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11014) +.themarker.com/logger/p\.gif\? +# @@||haaretz.com/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11009) +.haaretz.com/logger/p\.gif\? +# @@||haaretz.co.il/logger/p.gif?$image,xmlhttprequest (easyprivacy.txt: 11008) +.haaretz.co.il/logger/p\.gif\? + +#ab2p-unblock-request-Ai-Ci-when-R128 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R128} \ +} +# @@||scorecardresearch.com/r?$image,domain=ancestry.com|billetnet.dk|billettservice.no|lippupalvelu.fi|macworld.com|pcworld.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se|wsj.com (easyprivacy.txt: 10840) +.scorecardresearch.com/r\? + +#ab2p-unblock-request-Ai-Ci-when-R129 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R129} \ +} +# @@||scorecardresearch.com/r2?$image,domain=ancestry.com|billetnet.dk|billettservice.no|lippupalvelu.fi|pcworld.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se|wsj.com (easyprivacy.txt: 10839) +.scorecardresearch.com/r2\? + +#ab2p-unblock-request-Ai-Ci-when-R153 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R153} \ +} +# @@||smetrics.blackberry.com/b/ss/*:jump-page:$image,domain=bbm.com (easyprivacy.txt: 10687) +.smetrics.blackberry.com/b/ss/.*:jump-page: + +#ab2p-unblock-request-Ai-Ci-when-R158 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R158} \ +} +# @@||122.2o7.net/b/ss/$image,domain=billetnet.dk|billettservice.no|citibank.co.in|goal.com|lippupalvelu.fi|pcworld.com|riverisland.com|techhive.com|ticketmaster.ae|ticketmaster.co.uk|ticketmaster.de|ticketmaster.ie|ticketmaster.nl|ticnet.se (easyprivacy.txt: 10823) +.122.2o7.net/b/ss/ + +#ab2p-unblock-request-Ai-Ci-when-R165 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R165} \ +} +# @@||emjcd.com^$image,domain=catalogfavoritesvip.com|freeshipping.com|freeshippingbymastercard.com|freeshippingrewards.com|habandvipplus.com|inthecompanyofdogsvip.com|naturesjewelryvip.com|northstylevip.com|pyramidcollectionvip.com|serengeticatalogvip.com|travelplus.com (easyprivacy.txt: 10414) +.emjcd.com + +#ab2p-unblock-request-Ai-Ci-when-R216 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R216} \ +} +# @@||112.2o7.net/b/ss/$image,domain=espn.com.br (easyprivacy.txt: 10822) +.112.2o7.net/b/ss/ + +#ab2p-unblock-request-Ai-Ci-when-R223 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R223} \ +} +# @@||metrics.el-mundo.net/b/ss/$image,domain=expansion.com (easyprivacy.txt: 11076) +.metrics.el-mundo.net/b/ss/ + +#ab2p-unblock-request-Ai-Ci-when-R240 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R240} \ +} +# @@||adclear.teufel.de^*/acv?*&ms=http$image,domain=gewinnspiele.freenet.de (easyprivacy.txt: 10854) +.adclear.teufel.de/.*/acv\?.*&ms=http + +#ab2p-unblock-request-Ai-Ci-when-R248 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R248} \ +} +# @@||nokia.com/b/ss/$image,domain=here.com (easyprivacy.txt: 10604) +.nokia.com/b/ss/ + +#ab2p-unblock-request-Ai-Ci-when-R249 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R249} \ +} +# @@||hise.spring-tns.net^*^cp=$image,domain=hintaseuranta.fi (easyprivacy.txt: 11002) +.hise.spring-tns.net/.*[^\w%.-]cp= + +#ab2p-unblock-request-Ai-Ci-when-R277 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R277} \ +} +# @@||omtrdc.net/b/ss/$image,domain=macworld.com|pcworld.com|techhive.com (easyprivacy.txt: 10838) +.omtrdc.net/b/ss/ + +#ab2p-unblock-request-Ai-Ci-when-R285 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R285} \ +} +# @@||rover.ebay.com/ar/1/75997/4?mpt=*&size=300x250&adid=$image,domain=millionenklick.web.de (easyprivacy.txt: 10902) +.rover.ebay.com/ar/1/75997/4\?mpt=.*&size=300x250&adid= + +#ab2p-unblock-request-Ai-Ci-when-R296 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R296} \ +} +# @@||msn.com/c.gif?rid=$image,domain=my.msn.com (easyprivacy.txt: 10585) +.msn.com/c\.gif\?rid= + +#ab2p-unblock-request-Ai-Ci-when-R350 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R350} \ +} +# @@||info.seek.com/b/ss/$image,domain=seek.com.au (easyprivacy.txt: 10828) +.info.seek.com/b/ss/ + +#ab2p-unblock-request-Ai-Ci-when-R369 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R369} \ +} +# @@||sitestat.com^*/s?*&ns_type=clickin&ns_action=view&ns__t=$image,domain=sueddeutsche.de (easyprivacy.txt: 10909) +.sitestat.com/.*/s\?.*&ns_type=clickin&ns_action=view&ns__t= + +#ab2p-unblock-request-Ai-Ci-when-R370 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R370} \ +} +# @@|http://r.i.ua/s?*&p*&l$image,domain=swordmaster.org (easyprivacy.txt: 11079) +r.i.ua/s\?.*&p.*&l + +#ab2p-unblock-request-Ai-Ci-when-R405 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R405} \ +} +# @@||ywxi.net/meter/produkte.web.de/$image,domain=web.de (easyprivacy.txt: 10926) +.ywxi.net/meter/produkte\.web\.de/ + +#ab2p-unblock-request-Ai-Ci-when-R406 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R406} \ +} +# @@||wenxuecity.com/data/newscount/$image,domain=wenxuecity.com (easyprivacy.txt: 10976) +.wenxuecity.com/data/newscount/ + +#ab2p-unblock-request-Ai-Ci-when-R407 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R407} \ +} +# @@||img.en25.com/eloquaimages/clients/PentonMediaInc/$image,domain=windowsitpro.com (easyprivacy.txt: 10494) +.img.en25.com/eloquaimages/clients/PentonMediaInc/ + +#ab2p-unblock-request-Ai-Ci-when-R410 +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-R410} \ +} +# @@||oms.dowjoneson.com/b/ss/$image,domain=wsj.com (easyprivacy.txt: 10837) +.oms.dowjoneson.com/b/ss/ + +#ab2p-unblock-request-Ai-Ci-when-nR-Rnt +{-block \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-Rnt} \ + +client-header-tagger{ab2p-unblock-request-Ai-Ci-when-nR} \ +} +# @@||wordpress.org/wp-slimstat/assets/banner-$image,~third-party (easyprivacy.txt: 10796) +.wordpress.org/wp-slimstat/assets/banner- +# @@||wordpress.org/extend/plugins/wp-slimstat/screenshot-$image,~third-party (easyprivacy.txt: 10795) +.wordpress.org/extend/plugins/wp-slimstat/screenshot- +# @@||unity3d.com/profiles/unity3d/themes/unity/images/services/analytics/$image,~third-party (easyprivacy.txt: 10740) +.unity3d.com/profiles/unity3d/themes/unity/images/services/analytics/ + +#ab2p-unblock-request-Aj-Cj +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj} \ + +server-header-tagger{ab2p-unblock-request-Cj} \ +} +TAG:^ab2p-unblock-request-Aj-Cj$ +# @@||widget.myrentacar.me^$script,subdocument (easyprivacy.txt: 11070) +.widget.myrentacar.me +# @@||swa.mail.ru/cgi-bin/counters?$script (easyprivacy.txt: 11068) +.swa.mail.ru/cgi-bin/counters\? +# @@||chiptec.net/skin/*/GoogleAnalyticsPlus/$script (easyprivacy.txt: 11051) +.chiptec.net/skin/.*/GoogleAnalyticsPlus/ +# @@||chancro.jp/assets/lib/googleanalytics-$script (easyprivacy.txt: 11039) +.chancro.jp/assets/lib/googleanalytics- +# @@||androidgalaxys.net/wp-content/plugins/*/google-analyticator/$script (easyprivacy.txt: 11020) +.androidgalaxys.net/wp-content/plugins/.*/google-analyticator/ +# @@||common.tv2.dk/mpx/adobeanalytics/$script (easyprivacy.txt: 10984) +.common.tv2.dk/mpx/adobeanalytics/ +# @@||v.blog.sohu.com/dostat.do?*&n=videoList_vids&$script (easyprivacy.txt: 10974) +.v.blog.sohu.com/dostat\.do\?.*&n=videoList_vids& +# @@||sunday.de/skin/*/googleanalytics.js$script (easyprivacy.txt: 10918) +.sunday.de/skin/.*/googleanalytics\.js +# @@||spiegel.de/layout/js/http/netmind-$script (easyprivacy.txt: 10912) +.spiegel.de/layout/js/http/netmind- +# @@||pizza.de^*/ptrack.$script (easyprivacy.txt: 10898) +.pizza.de/.*/ptrack\. +# @@||meinestadt.de^*/xiti/xtcore_$script (easyprivacy.txt: 10893) +.meinestadt.de/.*/xiti/xtcore_ +# @@||ivwextern.prosieben.de^*/ivw_flashscript.php?$script (easyprivacy.txt: 10887) +.ivwextern.prosieben.de/.*/ivw_flashscript\.php\? +# @@||vodafone.com.au/analytics/js/$script (easyprivacy.txt: 10769) +.vodafone.com.au/analytics/js/ +# @@||vacayvitamins.com/wp-content/plugins/wp-minify/min/?*/google-analyticator/$script (easyprivacy.txt: 10754) +.vacayvitamins.com/wp-content/plugins/wp-minify/min/\?.*/google-analyticator/ +# @@||v.me/personal/assets/ntpagetag-$script (easyprivacy.txt: 10753) +.v.me/personal/assets/ntpagetag- +# @@||utm.alibaba.com/eventdriver/recommendEntry.do?$script (easyprivacy.txt: 10745) +.utm.alibaba.com/eventdriver/recommendEntry\.do\? +# @@||trutv.com/ui/scripts/coffee/modules/analytics/click-tracker.js$script (easyprivacy.txt: 10734) +.trutv.com/ui/scripts/coffee/modules/analytics/click-tracker\.js +# @@||tracker.mattel.com/tracker.aspx?site=$script (easyprivacy.txt: 10729) +.tracker.mattel.com/tracker\.aspx\?site= +# @@||statcounter.com/chart.php?$script (easyprivacy.txt: 10692) +.statcounter.com/chart\.php\? +# @@||songza.com/static/*/songza/systems/$script (easyprivacy.txt: 10688) +.songza.com/static/.*/songza/systems/ +# @@||mycokerewards.com^*/webtrends/mcr3-webtrends_POST_$script (easyprivacy.txt: 10591) +.mycokerewards.com/.*/webtrends/mcr3-webtrends_POST_ +# @@||makerstudios.com/js/mixpanel.js?$script (easyprivacy.txt: 10546) +.makerstudios.com/js/mixpanel\.js\? +# @@||lesacasino.com^*/EMERPEventCollector.$script,subdocument (easyprivacy.txt: 10525) +.lesacasino.com/.*/EMERPEventCollector\. +# @@||l.yimg.com/g/combo/*/comscore.$script (easyprivacy.txt: 10521) +.l.yimg.com/g/combo/.*/comscore\. +# @@||koalabeast.com/stats?$script (easyprivacy.txt: 10518) +.koalabeast.com/stats\? +# @@||keep2s.cc/ext/evercookie/$script (easyprivacy.txt: 10515) +.keep2s.cc/ext/evercookie/ +# @@||k2s.cc/ext/evercookie/$script (easyprivacy.txt: 10513) +.k2s.cc/ext/evercookie/ +# @@||go.com/combiner/*/comscore.$script (easyprivacy.txt: 10457) +.go.com/combiner/.*/comscore\. +# @@||glamour.com/aspen/components/cn-fe-stats/js/$script (easyprivacy.txt: 10455) +.glamour.com/aspen/components/cn-fe-stats/js/ +# @@||getclicky.com/ajax/marketshare?$script (easyprivacy.txt: 10451) +.getclicky.com/ajax/marketshare\? +# @@||gatheringmagic.com/wp-content/plugins/bwp-minify/min/*/google-analyticator/$script (easyprivacy.txt: 10446) +.gatheringmagic.com/wp-content/plugins/bwp-minify/min/.*/google-analyticator/ +# @@||ft.com/opentag/opentag-$script (easyprivacy.txt: 10441) +.ft.com/opentag/opentag- +# @@||expedia.com/minify/siteAnalytics-$script (easyprivacy.txt: 10428) +.expedia.com/minify/siteAnalytics- +# @@||eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/quantcast/$script (easyprivacy.txt: 10422) +.eplayerhtml5.performgroup.com/js/tsEplayerHtml5/js/Eplayer/js/quantcast/ +# @@||ensighten.com^*/serverComponent.php?$script (easyprivacy.txt: 10420) +.ensighten.com/.*/serverComponent\.php\? +# @@||ensighten.com^*/code/$script (easyprivacy.txt: 10418) +.ensighten.com/.*/code/ +# @@||directline.com/touchclarity/$script (easyprivacy.txt: 10397) +.directline.com/touchclarity/ +# @@||csid.com/wp-content/plugins/bwp-minify/min/?*/google-analyticator/$script (easyprivacy.txt: 10379) +.csid.com/wp-content/plugins/bwp-minify/min/\?.*/google-analyticator/ +# @@||craveonline.com/wp-content/plugins/bwp-minify/$script (easyprivacy.txt: 10373) +.craveonline.com/wp-content/plugins/bwp-minify/ +# @@||computerworld.com/resources/scripts/lib/demandbase.js$script (easyprivacy.txt: 10367) +.computerworld.com/resources/scripts/lib/demandbase\.js +# @@||chatzy.com/?jsonp:$script (easyprivacy.txt: 10348) +.chatzy.com/\?jsonp: +# @@||chanel.com/js/chanel-tracking.js$script (easyprivacy.txt: 10345) +.chanel.com/js/chanel-tracking\.js +# @@||bonappetit.com^*/cn-fe-stats/$script (easyprivacy.txt: 10313) +.bonappetit.com/.*/cn-fe-stats/ +# @@||b-europe.com/HttpHandlers/httpCombiner.ashx?*/xiti.js$script (easyprivacy.txt: 10296) +.b-europe.com/HttpHandlers/httpCombiner\.ashx\?.*/xiti\.js +# @@||aliexpress.com/home/recommendEntry.do?$script (easyprivacy.txt: 10264) +.aliexpress.com/home/recommendEntry\.do\? +# @@||adobetag.com^*/amc.js$script (easyprivacy.txt: 10258) +.adobetag.com/.*/amc\.js + +#ab2p-unblock-request-Aj-Cj-when-R111 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R111} \ +} +# @@||codicefl.shinystat.com/cgi-bin/getserver.cgi?$script,domain=3bmeteo.com|quotidiano.net|radioitalia.it (easyprivacy.txt: 11023) +.codicefl.shinystat.com/cgi-bin/getserver\.cgi\? + +#ab2p-unblock-request-Aj-Cj-when-R115 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R115} \ +} +# @@||iocdn.coremetrics.com^*.js?V=$script,domain=adidas.de (easyprivacy.txt: 10882) +.iocdn.coremetrics.com/.*\.js\?V= + +#ab2p-unblock-request-Aj-Cj-when-R127 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R127} \ +} +# @@||omtrdc.net^*/mbox/standard?$script,domain=ancestry.co.uk|ancestry.com|ancestry.com.au|ancestry.it|blogtalkradio.com (easyprivacy.txt: 10615) +.omtrdc.net/.*/mbox/standard\? + +#ab2p-unblock-request-Aj-Cj-when-R134 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R134} \ +} +# @@||code.etracker.com/t.js?et=$script,domain=apotheken-umschau.de|compo-hobby.de|diabetes-ratgeber.net|giz.de|kaguma.com|krombacher.de (easyprivacy.txt: 10864) +.code.etracker.com/t\.js\?et= + +#ab2p-unblock-request-Aj-Cj-when-R156 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R156} \ +} +# @@||api.chartbeat.com^$script,domain=betabeat.com|couriermail.com.au|financialpost.com|wcpo.com (easyprivacy.txt: 10285) +.api.chartbeat.com + +#ab2p-unblock-request-Aj-Cj-when-R159 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R159} \ +} +# @@||virtualearth.net^*/LoggingService.svc/Log?$script,domain=bing.com (easyprivacy.txt: 10764) +.virtualearth.net/.*/LoggingService\.svc/Log\? + +#ab2p-unblock-request-Aj-Cj-when-R166 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R166} \ +} +# @@||clicktale.net^$script,domain=cbc.ca (easyprivacy.txt: 10356) +.clicktale.net + +#ab2p-unblock-request-Aj-Cj-when-R167 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R167} \ +} +# @@||cbsistatic.com^*/clicktale-$script,domain=cbsnews.com|cnet.com (easyprivacy.txt: 10335) +.cbsistatic.com/.*/clicktale- + +#ab2p-unblock-request-Aj-Cj-when-R173 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R173} \ +} +# @@||ru4.com/wsb/$script,domain=chase.com (easyprivacy.txt: 10666) +.ru4.com/wsb/ + +#ab2p-unblock-request-Aj-Cj-when-R174 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R174} \ +} +# @@||statics.cfmcdn.net/*/scripts/webtrends-$script,domain=cheapflights.com (easyprivacy.txt: 10699) +.statics.cfmcdn.net/.*/scripts/webtrends- +# @@||cleananalytics.com/browser.js?$script,domain=cheapflights.com (easyprivacy.txt: 10354) +.cleananalytics.com/browser\.js\? + +#ab2p-unblock-request-Aj-Cj-when-R176 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R176} \ +} +# @@||geoplugin.net/javascript.gp$script,domain=christianhouseshare.com.au|gamemazing.com|soundsonline.com|support.netgear.com|support.netgear.de|support.netgear.es|support.netgear.fr|support.netgear.it|support.netgear.ru (easyprivacy.txt: 10448) +.geoplugin.net/javascript\.gp + +#ab2p-unblock-request-Aj-Cj-when-R9 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R9} \ +} +# @@||go-mpulse.net/boomerang/$script,domain=cnet.com (easyprivacy.txt: 10456) +.go-mpulse.net/boomerang/ + +#ab2p-unblock-request-Aj-Cj-when-R193 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R193} \ +} +# @@||media.flixcar.com/delivery/js/inpage/*/mpn/$script,domain=currys.co.uk (easyprivacy.txt: 10554) +.media.flixcar.com/delivery/js/inpage/.*/mpn/ + +#ab2p-unblock-request-Aj-Cj-when-R11 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R11} \ +} +# @@||telize.com/geoip?$script,domain=dailymotion.com (easyprivacy.txt: 10718) +.telize.com/geoip\? + +#ab2p-unblock-request-Aj-Cj-when-R197 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R197} \ +} +# @@||playwire.com/bolt/js/zeus/$script,domain=desi-tashan.com (easyprivacy.txt: 11058) +.playwire.com/bolt/js/zeus/ + +#ab2p-unblock-request-Aj-Cj-when-R198 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R198} \ +} +# @@||wrap.tradedoubler.com/wrap?$script,domain=desigual.com (easyprivacy.txt: 10801) +.wrap.tradedoubler.com/wrap\? + +#ab2p-unblock-request-Aj-Cj-when-R203 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R203} \ +} +# @@||adyoulike.omnitagjs.com^$script,domain=dl.free.fr (easyprivacy.txt: 10932) +.adyoulike.omnitagjs.com + +#ab2p-unblock-request-Aj-Cj-when-R217 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R217} \ +} +# @@||espncdn.com/combiner/*/foresee/$script,domain=espn.go.com (easyprivacy.txt: 10424) +.espncdn.com/combiner/.*/foresee/ +# @@||espncdn.com/combiner/*/chartbeat/$script,domain=espn.go.com (easyprivacy.txt: 10423) +.espncdn.com/combiner/.*/chartbeat/ + +#ab2p-unblock-request-Aj-Cj-when-R222 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R222} \ +} +# @@||crowdscience.com/start-$script,domain=everydayhealth.com (easyprivacy.txt: 10376) +.crowdscience.com/start- +# @@||crowdscience.com/max-$script,domain=everydayhealth.com (easyprivacy.txt: 10375) +.crowdscience.com/max- + +#ab2p-unblock-request-Aj-Cj-when-R237 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R237} \ +} +# @@||dpm.demdex.net/id?$script,domain=gamespot.com (easyprivacy.txt: 10402) +.dpm.demdex.net/id\? + +#ab2p-unblock-request-Aj-Cj-when-R239 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R239} \ +} +# @@||uim.tifbs.net/js/$script,domain=gewinnspiel.gmx.de|gewinnspiel.web.de|top.de (easyprivacy.txt: 10922) +.uim.tifbs.net/js/ + +#ab2p-unblock-request-Aj-Cj-when-R243 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R243} \ +} +# @@||codicebusiness.shinystat.com/cgi-bin/getcod.cgi?$script,domain=grazia.it|panorama-auto.it|panorama.it (easyprivacy.txt: 11022) +.codicebusiness.shinystat.com/cgi-bin/getcod\.cgi\? + +#ab2p-unblock-request-Aj-Cj-when-R251 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R251} \ +} +# @@||whoson.com/include.js?$script,domain=hotelchocolat.com (easyprivacy.txt: 10788) +.whoson.com/include\.js\? + +#ab2p-unblock-request-Aj-Cj-when-R257 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R257} \ +} +# @@||ad.crwdcntrl.net^$script,domain=investopedia.com (easyprivacy.txt: 10254) +.ad.crwdcntrl.net + +#ab2p-unblock-request-Aj-Cj-when-R260 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R260} \ +} +# @@||browserscope.org/user/beacon/*?callback=$script,domain=jsperf.com (easyprivacy.txt: 10319) +.browserscope.org/user/beacon/.*\?callback= + +#ab2p-unblock-request-Aj-Cj-when-R261 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R261} \ +} +# @@||kapaza.be^*/xtcore_$script,domain=kapaza.be (easyprivacy.txt: 10991) +.kapaza.be/.*/xtcore_ + +#ab2p-unblock-request-Aj-Cj-when-R278 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R278} \ +} +# @@||thebrighttag.com/tag?site=$script,domain=macys.com (easyprivacy.txt: 10720) +.thebrighttag.com/tag\?site= + +#ab2p-unblock-request-Aj-Cj-when-R281 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R281} \ +} +# @@||tiscali.it/js/webtrends/$script,domain=mail.tiscali.it (easyprivacy.txt: 11032) +.tiscali.it/js/webtrends/ + +#ab2p-unblock-request-Aj-Cj-when-R283 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R283} \ +} +# @@||stroeerdigitalmedia.de/praeludium/praeludium_$script,domain=menshealth.de|runnersworld.de (easyprivacy.txt: 10916) +.stroeerdigitalmedia.de/praeludium/praeludium_ + +#ab2p-unblock-request-Aj-Cj-when-R296 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R296} \ +} +# @@||msn.com/br/chan/udc/$script,domain=my.msn.com (easyprivacy.txt: 10584) +.msn.com/br/chan/udc/ + +#ab2p-unblock-request-Aj-Cj-when-R301 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R301} \ +} +# @@||krxd.net^$script,domain=nbcnews.com (easyprivacy.txt: 10520) +.krxd.net + +#ab2p-unblock-request-Aj-Cj-when-R304 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R304} \ +} +# @@||siteapps.com^$script,domain=netcombo.com.br (easyprivacy.txt: 10957) +.siteapps.com + +#ab2p-unblock-request-Aj-Cj-when-R305 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R305} \ +} +# @@||monetate.net/trk/$script,domain=newegg.com (easyprivacy.txt: 10576) +.monetate.net/trk/ +# @@||monetate.net/img/$script,domain=newegg.com (easyprivacy.txt: 10574) +.monetate.net/img/ + +#ab2p-unblock-request-Aj-Cj-when-R310 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R310} \ +} +# @@||ensighten.com^*/scode/$script,domain=norton.com (easyprivacy.txt: 10419) +.ensighten.com/.*/scode/ + +#ab2p-unblock-request-Aj-Cj-when-R312 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R312} \ +} +# @@||cloudfront.net/bugsnag-$script,domain=nowtv.de (easyprivacy.txt: 10863) +.cloudfront.net/bugsnag- + +#ab2p-unblock-request-Aj-Cj-when-R315 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R315} \ +} +# @@||petametrics.com/*.js?$script,domain=nylon.com (easyprivacy.txt: 10629) +.petametrics.com/.*\.js\? + +#ab2p-unblock-request-Aj-Cj-when-R320 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R320} \ +} +# @@||thebrighttag.com/tag?site=$script,domain=oralb.de (easyprivacy.txt: 10921) +.thebrighttag.com/tag\?site= + +#ab2p-unblock-request-Aj-Cj-when-R325 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R325} \ +} +# @@||pixel.quantserve.com/seg/$script,domain=photos.essence.com (easyprivacy.txt: 10640) +.pixel.quantserve.com/seg/ + +#ab2p-unblock-request-Aj-Cj-when-R332 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R332} \ +} +# @@||popeater.com/traffic/?$script,domain=popeater.com (easyprivacy.txt: 10646) +.popeater.com/traffic/\? + +#ab2p-unblock-request-Aj-Cj-when-R344 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R344} \ +} +# @@||loadus.exelator.com/load/?p=$script,domain=rrstar.com (easyprivacy.txt: 10532) +.loadus.exelator.com/load/\?p= + +#ab2p-unblock-request-Aj-Cj-when-R353 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R353} \ +} +# @@||track.adform.net/serving/scripts/trackpoint$script,domain=sky.it|ubibanca.com (easyprivacy.txt: 11033) +.track.adform.net/serving/scripts/trackpoint + +#ab2p-unblock-request-Aj-Cj-when-R374 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R374} \ +} +# @@||cloudfront.net/mngr/$script,domain=theladbible.com (easyprivacy.txt: 10362) +.cloudfront.net/mngr/ + +#ab2p-unblock-request-Aj-Cj-when-R376 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R376} \ +} +# @@||adobetag.com/d2/$script,domain=thestar.com (easyprivacy.txt: 10257) +.adobetag.com/d2/ + +#ab2p-unblock-request-Aj-Cj-when-R388 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R388} \ +} +# @@||twimg.com/googleanalytics/analytics.js$script,domain=twitter.com (easyprivacy.txt: 10737) +.twimg.com/googleanalytics/analytics\.js + +#ab2p-unblock-request-Aj-Cj-when-R400 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R400} \ +} +# @@||a.wikia-beacon.com/__track/view?v=v1&c=*&lc=de&lid=62&x=devroniplag&y=$script,domain=vroniplag.wikia.com (easyprivacy.txt: 10852) +.a.wikia-beacon.com/__track/view\?v=v1&c=.*&lc=de&lid=62&x=devroniplag&y= + +#ab2p-unblock-request-Aj-Cj-when-R402 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R402} \ +} +# @@||sellpoint.net/smart_button/$script,domain=walmart.com (easyprivacy.txt: 10678) +.sellpoint.net/smart_button/ +# @@||akamai.net^*/omniture.jsp$script,domain=walmart.com (easyprivacy.txt: 10263) +.akamai.net/.*/omniture\.jsp + +#ab2p-unblock-request-Aj-Cj-when-R403 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R403} \ +} +# @@||washingtonpost.com/wp-stat/echo2/canvases/$script,domain=washingtonpost.com (easyprivacy.txt: 10779) +.washingtonpost.com/wp-stat/echo2/canvases/ +# @@||amazonaws.com/visitorsegment/shared/resources/$script,domain=washingtonpost.com (easyprivacy.txt: 10268) +.amazonaws.com/visitorsegment/shared/resources/ + +#ab2p-unblock-request-Aj-Cj-when-R404 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R404} \ +} +# @@||tags.crwdcntrl.net^$script,domain=weather.com (easyprivacy.txt: 10712) +.tags.crwdcntrl.net +# @@||imwx.com/jsRollup?$script,domain=weather.com (easyprivacy.txt: 10502) +.imwx.com/jsRollup\? + +#ab2p-unblock-request-Aj-Cj-when-R409 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R409} \ +} +# @@||geoplugin.net/json.gp?jsoncallback=$script,domain=worldc.am (easyprivacy.txt: 10449) +.geoplugin.net/json\.gp\?jsoncallback= + +#ab2p-unblock-request-Aj-Cj-when-R411 +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-R411} \ +} +# @@||d3ujids68p6xmq.cloudfront.net^$script,domain=wwe.com (easyprivacy.txt: 10386) +.d3ujids68p6xmq.cloudfront.net + +#ab2p-unblock-request-Aj-Cj-when-nR-Rnt +{-block \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-Rnt} \ + +client-header-tagger{ab2p-unblock-request-Aj-Cj-when-nR} \ +} +# @@||setelia.com*/page-tracking.js?$script,~third-party (easyprivacy.txt: 10681) +.setelia.com*./(.*/)?page-tracking\.js\? +# @@||freehostedscripts.net/online/$script,~third-party (easyprivacy.txt: 10440) +.freehostedscripts.net/online/ +# @@||bbc.co.uk/frameworks/nedstat/$script,~third-party (easyprivacy.txt: 10299) +.bbc.co.uk/frameworks/nedstat/ +# @@||api.academia.edu^*/stats?callback$script,~third-party (easyprivacy.txt: 10284) +.api.academia.edu/.*/stats\?callback + +#ab2p-unblock-request-R110 +{-block \ + +client-header-tagger{ab2p-unblock-request-R110} \ +} +# @@||iocdn.coremetrics.com^*/io_config.js?ts=$domain=24ace.co.uk (easyprivacy.txt: 10506) +.iocdn.coremetrics.com/.*/io_config\.js\?ts= +# @@||iocdn.coremetrics.com^*.js?V=$domain=24ace.co.uk (easyprivacy.txt: 10505) +.iocdn.coremetrics.com/.*\.js\?V= + +#ab2p-unblock-request-R114 +{-block \ + +client-header-tagger{ab2p-unblock-request-R114} \ +} +# @@||csdata1.com/data/js/$domain=acehardware.com (easyprivacy.txt: 10378) +.csdata1.com/data/js/ + +#ab2p-unblock-request-R115 +{-block \ + +client-header-tagger{ab2p-unblock-request-R115} \ +} +# @@||iocdn.coremetrics.com^*/io_config.js?ts=$domain=adidas.de (easyprivacy.txt: 10883) +.iocdn.coremetrics.com/.*/io_config\.js\?ts= + +#ab2p-unblock-request-R117 +{-block \ + +client-header-tagger{ab2p-unblock-request-R117} \ +} +# @@||google-analytics.com/analytics.js$domain=afternic.com|amctv.com|bebo.com|ch10.co.il|cliphunter.com|daemon-tools.cc|desigual.com|gamepix.com|greentoe.com|housing.wisc.edu|infogr.am|jackbox.tv|keygames.com|manowthaimordialloc.com.au|maxiclimber.com|orbitum.com|pluto.tv|rebtel.com|sbnation.com|sci2.tv|seatgeek.com|support.amd.com|tagheuer.com.au|tv10play.se|tv3play.se|tv6play.se|tv8play.se|video.pbs.org|vox.com|vpnster.com|weather.gov|westernunion.at|westernunion.be|westernunion.ca|westernunion.ch|westernunion.cl|westernunion.co.jp|westernunion.co.nz|westernunion.co.uk|westernunion.co.za|westernunion.com|westernunion.com.au|westernunion.com.co|westernunion.com.hk|westernunion.com.my|westernunion.com.pe|westernunion.de|westernunion.fr|westernunion.ie|westernunion.it|westernunion.nl|westernunion.ph|westernunion.pl|westernunion.se|westernunion.sg|www.google.com (easyprivacy.txt: 10463) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R118 +{-block \ + +client-header-tagger{ab2p-unblock-request-R118} \ +} +# @@||scorecardresearch.com/beacon.js$domain=agame.com|allrecipes.com|amctv.com|apl.tv|babycenter.com|bonappetit.com|calgaryherald.com|canada.com|cbc.ca|dailymail.co.uk|deviantart.com|discovery.com|edmontonjournal.com|fastcompany.com|financialpost.com|firstwefeast.com|hitfix.com|huffingtonpost.com|landandfarm.com|last.fm|leaderpost.com|m.tmz.com|montrealgazette.com|nationalpost.com|newsday.com|ottawacitizen.com|outsideonline.com|radaronline.com|salon.com|sci2.tv|syfy.com|theprovince.com|thestar.com|thestarphoenix.com|thinkatheist.com|vancouversun.com|windsorstar.com (easyprivacy.txt: 10671) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-request-R119 +{-block \ + +client-header-tagger{ab2p-unblock-request-R119} \ +} +# @@||aolcdn.com/omniunih.js$domain=aim.com|autoblog.com|autos.aol.com|engadget.com|mapquest.com|video.aol.com|www.aol.com (easyprivacy.txt: 10281) +.aolcdn.com/omniunih\.js + +#ab2p-unblock-request-R120 +{-block \ + +client-header-tagger{ab2p-unblock-request-R120} \ +} +# @@||maxmind.com^*/geoip.js$domain=aljazeera.com|ballerstatus.com|bikemap.net|carltonjordan.com|cashu.com|coolsport.tv|dereon.com|dr.dk|everydaysource.com|fab.com|girlgames4u.com|incgamers.com|ip-address.cc|maaduu.com|qatarairways.com|sat-direction.com|sotctours.com|stoli.com|vibe.com (easyprivacy.txt: 10550) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-request-R121 +{-block \ + +client-header-tagger{ab2p-unblock-request-R121} \ +} +# @@/cdn-cgi/pe/bag2?*static.getclicky.com%2Fjs$domain=amazingpics.net (easyprivacy.txt: 10247) +/(.*/)?cdn-cgi/pe/bag2\?.*static\.getclicky\.com%2Fjs + +#ab2p-unblock-request-R122 +{-block \ + +client-header-tagger{ab2p-unblock-request-R122} \ +} +# @@||amctv.com^*/google-analytics.js$domain=amctv.com (easyprivacy.txt: 10270) +.amctv.com/.*/google-analytics\.js + +#ab2p-unblock-request-R123 +{-block \ + +client-header-tagger{ab2p-unblock-request-R123} \ +} +# @@||ensighten.com^*/Bootstrap.js$domain=americanexpress.com|caranddriver.com|citizensbank.com|dell.com|homedepot.com|staples.com|t-mobile.com|target.com (easyprivacy.txt: 10417) +.ensighten.com/.*/Bootstrap\.js + +#ab2p-unblock-request-R124 +{-block \ + +client-header-tagger{ab2p-unblock-request-R124} \ +} +# @@/cdn-cgi/pe/bag2?*google-analytics.com%2Fanalytics.js$domain=amypink.de|biznews.com|cryptospot.me|droid-life.com|forwardprogressives.com|fpif.org|fullpotentialma.com|geekzone.co.nz|goldsday.com|imageupload.co.uk|is-arquitectura.es|mmanews.com|orain.org|tvunblock.com|unilad.co.uk|xrussianteens.com|youngcons.com (easyprivacy.txt: 10239) +/(.*/)?cdn-cgi/pe/bag2\?.*google-analytics\.com%2Fanalytics\.js + +#ab2p-unblock-request-R126 +{-block \ + +client-header-tagger{ab2p-unblock-request-R126} \ +} +# @@||analytics.twitter.com^$domain=analytics.twitter.com (easyprivacy.txt: 10277) +.analytics.twitter.com + +#ab2p-unblock-request-R130 +{-block \ + +client-header-tagger{ab2p-unblock-request-R130} \ +} +# @@||google.com/js/gweb/analytics/doubletrack.js$domain=android.com (easyprivacy.txt: 10472) +.google.com/js/gweb/analytics/doubletrack\.js + +#ab2p-unblock-request-R132 +{-block \ + +client-header-tagger{ab2p-unblock-request-R132} \ +} +# @@||yandex.ru/metrika/watch.js$domain=anoncer.net|tv.yandex.ru (easyprivacy.txt: 11071) +.yandex.ru/metrika/watch\.js + +#ab2p-unblock-request-R133 +{-block \ + +client-header-tagger{ab2p-unblock-request-R133} \ +} +# @@||pixel.quantserve.com/api/segments.json?$domain=ap.org|newsinc.com (easyprivacy.txt: 10638) +.pixel.quantserve.com/api/segments\.json\? + +#ab2p-unblock-request-R135 +{-block \ + +client-header-tagger{ab2p-unblock-request-R135} \ +} +# @@||zynga.com/current/iframe/track.php?$domain=apps.facebook.com (easyprivacy.txt: 10816) +.zynga.com/current/iframe/track\.php\? + +#ab2p-unblock-request-R136 +{-block \ + +client-header-tagger{ab2p-unblock-request-R136} \ +} +# @@||quantserve.com/quant.js$domain=apps.facebook.com|caranddriver.com|g4tv.com|nymag.com|salon.com|theblaze.com (easyprivacy.txt: 10653) +.quantserve.com/quant\.js + +#ab2p-unblock-request-R137 +{-block \ + +client-header-tagger{ab2p-unblock-request-R137} \ +} +# @@||d2dq2ahtl5zl1z.cloudfront.net/analytics.js/*/analytics.min.js$domain=architizer.com (easyprivacy.txt: 10382) +.d2dq2ahtl5zl1z.cloudfront.net/analytics\.js/.*/analytics\.min\.js + +#ab2p-unblock-request-R138 +{-block \ + +client-header-tagger{ab2p-unblock-request-R138} \ +} +# @@||analytics.edgesuite.net/html5/akamaihtml5-min.js?$domain=ardmediathek.de (easyprivacy.txt: 10857) +.analytics.edgesuite.net/html5/akamaihtml5-min\.js\? + +#ab2p-unblock-request-R139 +{-block \ + +client-header-tagger{ab2p-unblock-request-R139} \ +} +# @@||longtailvideo.com/5/googlytics/googlytics-1.js$domain=arte.tv (easyprivacy.txt: 10891) +.longtailvideo.com/5/googlytics/googlytics-1\.js + +#ab2p-unblock-request-R140 +{-block \ + +client-header-tagger{ab2p-unblock-request-R140} \ +} +# @@||tag.perfectaudience.com/serve/*.js$domain=asana.com (easyprivacy.txt: 10710) +.tag.perfectaudience.com/serve/.*\.js + +#ab2p-unblock-request-R141 +{-block \ + +client-header-tagger{ab2p-unblock-request-R141} \ +} +# @@||pixel.quantserve.com/api/segments.xml?a=$domain=associatedcontent.com|cbs.com|cbsatlanta.com|centurylink.net|comedy.com|eurweb.com|fox5vegas.com|foxcarolina.com|grabnetworks.com|kctv5.com|kpho.com|kptv.com|theimproper.com|thenewsroom.com|tv.com|tvguide.com|wfsb.com|wnem.com|wsmv.com (easyprivacy.txt: 10639) +.pixel.quantserve.com/api/segments\.xml\?a= + +#ab2p-unblock-request-R142 +{-block \ + +client-header-tagger{ab2p-unblock-request-R142} \ +} +# @@||webtrendslive.com^*/wtid.js?$domain=att.yahoo.com (easyprivacy.txt: 10784) +.webtrendslive.com/.*/wtid\.js\? + +#ab2p-unblock-request-R143 +{-block \ + +client-header-tagger{ab2p-unblock-request-R143} \ +} +# @@||imrworldwide.com^*-mediaplayer&$domain=au.launch.yahoo.com (easyprivacy.txt: 10498) +.imrworldwide.com/.*-mediaplayer& + +#ab2p-unblock-request-R144 +{-block \ + +client-header-tagger{ab2p-unblock-request-R144} \ +} +# @@||aolcdn.com/omniunih_int.js$domain=autoblog.com (easyprivacy.txt: 10282) +.aolcdn.com/omniunih_int\.js + +#ab2p-unblock-request-R145 +{-block \ + +client-header-tagger{ab2p-unblock-request-R145} \ +} +# @@||aolcdn.com/js/mg2.js$domain=autoblog.com|autos.aol.com|dailyfinance.com|moviefone.com (easyprivacy.txt: 10280) +.aolcdn.com/js/mg2\.js + +#ab2p-unblock-request-R146 +{-block \ + +client-header-tagger{ab2p-unblock-request-R146} \ +} +# @@||aolcdn.com^*/beacon.min.js$domain=autoblog.com|dailyfinance.com (easyprivacy.txt: 10283) +.aolcdn.com/.*/beacon\.min\.js + +#ab2p-unblock-request-R147 +{-block \ + +client-header-tagger{ab2p-unblock-request-R147} \ +} +# @@||maxmind.com^*/geoip.js$domain=automatensuche.de (easyprivacy.txt: 10892) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-request-R148 +{-block \ + +client-header-tagger{ab2p-unblock-request-R148} \ +} +# @@||googletagmanager.com/gtm.js?$domain=autorevue.cz|e15.cz|mobilmania.cz|sportrevue.cz|zive.cz (easyprivacy.txt: 10982) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-request-R149 +{-block \ + +client-header-tagger{ab2p-unblock-request-R149} \ +} +# @@||google-analytics.com/urchin.js$domain=axure.com|chocomaru.com|denverbroncos.com|muselive.com|streetfire.net|wickedthemusical.com (easyprivacy.txt: 10468) +.google-analytics.com/urchin\.js + +#ab2p-unblock-request-R151 +{-block \ + +client-header-tagger{ab2p-unblock-request-R151} \ +} +# @@||tracker.mattel.com^$domain=barbie.com (easyprivacy.txt: 10730) +.tracker.mattel.com + +#ab2p-unblock-request-R152 +{-block \ + +client-header-tagger{ab2p-unblock-request-R152} \ +} +# @@||barclays.touchclarity.com^$domain=barclaycard.co.uk (easyprivacy.txt: 10298) +.barclays.touchclarity.com + +#ab2p-unblock-request-R154 +{-block \ + +client-header-tagger{ab2p-unblock-request-R154} \ +} +# @@||optimost.com^*/content.js?$domain=bebo.com (easyprivacy.txt: 10621) +.optimost.com/.*/content\.js\? +# @@||optimost.com/counter/*/event.js?$domain=bebo.com (easyprivacy.txt: 10620) +.optimost.com/counter/.*/event\.js\? + +#ab2p-unblock-request-R155 +{-block \ + +client-header-tagger{ab2p-unblock-request-R155} \ +} +# @@||google-analytics.com/plugins/ua/linkid.js$domain=bebo.com|rebtel.com|support.amd.com|vox.com (easyprivacy.txt: 10467) +.google-analytics.com/plugins/ua/linkid\.js + +#ab2p-unblock-request-R157 +{-block \ + +client-header-tagger{ab2p-unblock-request-R157} \ +} +# @@||stat.prsmedia.fr/tag/stat.js$domain=bienpublic.com (easyprivacy.txt: 10949) +.stat.prsmedia.fr/tag/stat\.js + +#ab2p-unblock-request-R160 +{-block \ + +client-header-tagger{ab2p-unblock-request-R160} \ +} +# @@||mixpanel.com/site_media/js/api/mixpanel.js$domain=blog.cloudflare.com (easyprivacy.txt: 10569) +.mixpanel.com/site_media/js/api/mixpanel\.js + +#ab2p-unblock-request-R161 +{-block \ + +client-header-tagger{ab2p-unblock-request-R161} \ +} +# @@||trc.taboolasyndication.com^$domain=bloomberg.com|breitbart.com|breitbart.tv|nme.com|slatev.com (easyprivacy.txt: 10733) +.trc.taboolasyndication.com + +#ab2p-unblock-request-R162 +{-block \ + +client-header-tagger{ab2p-unblock-request-R162} \ +} +# @@||georiot.com/snippet.js$domain=bound2hiphop.com (easyprivacy.txt: 10450) +.georiot.com/snippet\.js + +#ab2p-unblock-request-R164 +{-block \ + +client-header-tagger{ab2p-unblock-request-R164} \ +} +# @@||google-analytics.com/ga.js$domain=carambatv.ru (easyprivacy.txt: 11065) +.google-analytics.com/ga\.js + +#ab2p-unblock-request-R168 +{-block \ + +client-header-tagger{ab2p-unblock-request-R168} \ +} +# @@||dw.com.com/js/dw.js$domain=cbsnews.com|cnet.com|gamespot.com|tv.com (easyprivacy.txt: 10406) +.dw.com.com/js/dw\.js + +#ab2p-unblock-request-R169 +{-block \ + +client-header-tagger{ab2p-unblock-request-R169} \ +} +# @@||cbsimg.net/js/cbsi/dw.js$domain=cbssports.com|gamespot.com (easyprivacy.txt: 10334) +.cbsimg.net/js/cbsi/dw\.js + +#ab2p-unblock-request-R171 +{-block \ + +client-header-tagger{ab2p-unblock-request-R171} \ +} +# @@||googletagmanager.com/gtm.js?$domain=cdon.fi (easyprivacy.txt: 11000) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-request-R172 +{-block \ + +client-header-tagger{ab2p-unblock-request-R172} \ +} +# @@||mxpnl.com/libs/mixpanel-*.min.js$domain=change.org|greentoe.com|intuit.com|nbc.com|thefrisky.com (easyprivacy.txt: 10588) +.mxpnl.com/libs/mixpanel-.*\.min\.js + +#ab2p-unblock-request-R175 +{-block \ + +client-header-tagger{ab2p-unblock-request-R175} \ +} +# @@||google-analytics.com/siteopt.js?$domain=chip.de (easyprivacy.txt: 10874) +.google-analytics.com/siteopt\.js\? + +#ab2p-unblock-request-R178 +{-block \ + +client-header-tagger{ab2p-unblock-request-R178} \ +} +# @@||localytics.com^*/localytics.min.js$domain=ciscospark.com|citymapper.com (easyprivacy.txt: 10533) +.localytics.com/.*/localytics\.min\.js + +#ab2p-unblock-request-R179 +{-block \ + +client-header-tagger{ab2p-unblock-request-R179} \ +} +# @@||mpsnare.iesnare.com/snare.js$domain=citi.com|citibank.com|enmasse.com|login.skype.com (easyprivacy.txt: 10582) +.mpsnare.iesnare.com/snare\.js + +#ab2p-unblock-request-R180 +{-block \ + +client-header-tagger{ab2p-unblock-request-R180} \ +} +# @@||sundaysky.com/coastal/embedded/sundaysky.js$domain=clearlycontacts.ca (easyprivacy.txt: 10703) +.sundaysky.com/coastal/embedded/sundaysky\.js + +#ab2p-unblock-request-R182 +{-block \ + +client-header-tagger{ab2p-unblock-request-R182} \ +} +# @@||cloudflare.com/analytics?$domain=cloudflare.com (easyprivacy.txt: 10357) +.cloudflare.com/analytics\? + +#ab2p-unblock-request-R9 +{-block \ + +client-header-tagger{ab2p-unblock-request-R9} \ +} +# @@||dw.cbsi.com/js/dw.js$domain=cnet.com (easyprivacy.txt: 10405) +.dw.cbsi.com/js/dw\.js +# @@||cbsistatic.com^*/tealium.js$domain=cnet.com (easyprivacy.txt: 10337) +.cbsistatic.com/.*/tealium\.js +# @@||cbsistatic.com^*/google-analytics.js$domain=cnet.com (easyprivacy.txt: 10336) +.cbsistatic.com/.*/google-analytics\.js + +#ab2p-unblock-request-R183 +{-block \ + +client-header-tagger{ab2p-unblock-request-R183} \ +} +# @@||dw.cbsi.com/anonc.js$domain=cnet.com|gamespot.com (easyprivacy.txt: 10404) +.dw.cbsi.com/anonc\.js + +#ab2p-unblock-request-R184 +{-block \ + +client-header-tagger{ab2p-unblock-request-R184} \ +} +# @@||turner.com^*/aspenanalytics.xml$domain=cnn.com (easyprivacy.txt: 10736) +.turner.com/.*/aspenanalytics\.xml +# @@||turner.com/cnn/*/video/chartbeat.js$domain=cnn.com (easyprivacy.txt: 10735) +.turner.com/cnn/.*/video/chartbeat\.js + +#ab2p-unblock-request-R185 +{-block \ + +client-header-tagger{ab2p-unblock-request-R185} \ +} +# @@||static.rpxnow.com/js/lib/rpx.js$domain=colbertnation.com|thedailyshow.com (easyprivacy.txt: 10698) +.static.rpxnow.com/js/lib/rpx\.js + +#ab2p-unblock-request-R186 +{-block \ + +client-header-tagger{ab2p-unblock-request-R186} \ +} +# @@||gorillanation.com/js/triggertag.js$domain=comingsoon.net|playstationlifestyle.net (easyprivacy.txt: 10475) +.gorillanation.com/js/triggertag\.js + +#ab2p-unblock-request-R187 +{-block \ + +client-header-tagger{ab2p-unblock-request-R187} \ +} +# @@||cxense.com/cx.js$domain=common.tv2.dk (easyprivacy.txt: 10985) +.cxense.com/cx\.js + +#ab2p-unblock-request-R188 +{-block \ + +client-header-tagger{ab2p-unblock-request-R188} \ +} +# @@||cdn.optimizely.com/js/*.js$domain=compassion.com|creditsesame.com|forbes.com|freeshipping.com|heroku.com|hotukdeals.com|imageshack.com|lifelock.com|malwarebytes.org|policymic.com|ricardo.ch|techrepublic.com|zdnet.com (easyprivacy.txt: 10343) +.cdn.optimizely.com/js/.*\.js + +#ab2p-unblock-request-R189 +{-block \ + +client-header-tagger{ab2p-unblock-request-R189} \ +} +# @@||imrworldwide.com/v60.js$domain=corriereadriatico.it|ilgazzettino.it|ilmattino.it|ilmessaggero.it|leggo.it|quotidianodipuglia.it (easyprivacy.txt: 11028) +.imrworldwide.com/v60\.js + +#ab2p-unblock-request-R190 +{-block \ + +client-header-tagger{ab2p-unblock-request-R190} \ +} +# @@||cqcounter.com^$domain=cqcounter.com (easyprivacy.txt: 10372) +.cqcounter.com + +#ab2p-unblock-request-R191 +{-block \ + +client-header-tagger{ab2p-unblock-request-R191} \ +} +# @@||ccom-cdn.com/assets/img/clear.gif?ccom_md5=$domain=credit.com (easyprivacy.txt: 10338) +.ccom-cdn.com/assets/img/clear\.gif\?ccom_md5= + +#ab2p-unblock-request-R192 +{-block \ + +client-header-tagger{ab2p-unblock-request-R192} \ +} +# @@||dmeserv.newsinc.com/dpid/*/PPEmbed.js$domain=csmonitor.com (easyprivacy.txt: 10399) +.dmeserv.newsinc.com/dpid/.*/PPEmbed\.js + +#ab2p-unblock-request-R193 +{-block \ + +client-header-tagger{ab2p-unblock-request-R193} \ +} +# @@||media.flixfacts.com/js/loader.js$domain=currys.co.uk (easyprivacy.txt: 10555) +.media.flixfacts.com/js/loader\.js +# @@||d396ihyrqc81w.cloudfront.net^$domain=currys.co.uk (easyprivacy.txt: 10385) +.d396ihyrqc81w.cloudfront.net + +#ab2p-unblock-request-R194 +{-block \ + +client-header-tagger{ab2p-unblock-request-R194} \ +} +# @@||77.91.202.130/js/20050/xiti.js$domain=custojusto.pt (easyprivacy.txt: 11050) +.77.91.202.130/js/20050/xiti\.js + +#ab2p-unblock-request-R195 +{-block \ + +client-header-tagger{ab2p-unblock-request-R195} \ +} +# @@||darmstadt.ui-traffic.de/mobile/webapp/bower_components/heatmap.js$domain=darmstadt.ui-traffic.de (easyprivacy.txt: 10868) +.darmstadt.ui-traffic.de/mobile/webapp/bower_components/heatmap\.js + +#ab2p-unblock-request-R196 +{-block \ + +client-header-tagger{ab2p-unblock-request-R196} \ +} +# @@||amazonaws.com^*-google-analytics.js$domain=dcard.tw (easyprivacy.txt: 10960) +.amazonaws.com/.*-google-analytics\.js + +#ab2p-unblock-request-R199 +{-block \ + +client-header-tagger{ab2p-unblock-request-R199} \ +} +# @@||googletagmanager.com/gtm.js?$domain=desigual.com|drumstick.com|ebuyer.com|elevationscu.com|gamepix.com|google.com|keygames.com|optus.com.au|rebtel.com|rockstargames.com|rollingstone.com|rozetka.com.ua|sixflags.com|support.amd.com|talktalk.co.uk|techradar.com|toto.co.jp|usmagazine.com (easyprivacy.txt: 10473) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-request-R200 +{-block \ + +client-header-tagger{ab2p-unblock-request-R200} \ +} +# @@||google-analytics.com/plugins/ua/ec.js$domain=desigual.com|rebtel.com (easyprivacy.txt: 10466) +.google-analytics.com/plugins/ua/ec\.js + +#ab2p-unblock-request-R201 +{-block \ + +client-header-tagger{ab2p-unblock-request-R201} \ +} +# @@||amazonaws.com/searchdiscovery-satellite-production/$domain=dice.com (easyprivacy.txt: 10267) +.amazonaws.com/searchdiscovery-satellite-production/ + +#ab2p-unblock-request-R202 +{-block \ + +client-header-tagger{ab2p-unblock-request-R202} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=diejugendherbergen.de (easyprivacy.txt: 10914) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-request-R203 +{-block \ + +client-header-tagger{ab2p-unblock-request-R203} \ +} +# @@||omnitagjs.com/fo-*/captcha/$domain=dl.free.fr (easyprivacy.txt: 10941) +.omnitagjs.com/fo-.*/captcha/ + +#ab2p-unblock-request-R204 +{-block \ + +client-header-tagger{ab2p-unblock-request-R204} \ +} +# @@||picsearch.com/js/comscore.js$domain=dn.se (easyprivacy.txt: 11083) +.picsearch.com/js/comscore\.js + +#ab2p-unblock-request-R205 +{-block \ + +client-header-tagger{ab2p-unblock-request-R205} \ +} +# @@||pingjs.qq.com/ping_tcss_ied.js$domain=dnf.qq.com (easyprivacy.txt: 10970) +.pingjs.qq.com/ping_tcss_ied\.js + +#ab2p-unblock-request-R206 +{-block \ + +client-header-tagger{ab2p-unblock-request-R206} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=doverdowns.com|lifehack.org|maxiclimber.com|merriam-webster.com|toto.co.jp|tripinsurance.ru|vimeo.com (easyprivacy.txt: 10700) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-request-R207 +{-block \ + +client-header-tagger{ab2p-unblock-request-R207} \ +} +# @@/cdn-cgi/pe/bag2?*yieldbot.intent.js$domain=droid-life.com (easyprivacy.txt: 10248) +/(.*/)?cdn-cgi/pe/bag2\?.*yieldbot\.intent\.js +# @@/cdn-cgi/pe/bag2?*skimlinks.js$domain=droid-life.com (easyprivacy.txt: 10246) +/(.*/)?cdn-cgi/pe/bag2\?.*skimlinks\.js +# @@/cdn-cgi/pe/bag2?*googleadservices.com$domain=droid-life.com (easyprivacy.txt: 10240) +/(.*/)?cdn-cgi/pe/bag2\?.*googleadservices\.com + +#ab2p-unblock-request-R209 +{-block \ + +client-header-tagger{ab2p-unblock-request-R209} \ +} +# @@||a.visualrevenue.com/vrs.js$domain=ebaumsworld.com|nydailynews.com (easyprivacy.txt: 10250) +.a.visualrevenue.com/vrs\.js + +#ab2p-unblock-request-R210 +{-block \ + +client-header-tagger{ab2p-unblock-request-R210} \ +} +# @@||track.mybloglog.com/js/jsserv.php?$domain=egotastic.com (easyprivacy.txt: 10727) +.track.mybloglog.com/js/jsserv\.php\? + +#ab2p-unblock-request-R14 +{-block \ + +client-header-tagger{ab2p-unblock-request-R14} \ +} +# @@||scripts.demandmedia.com/wm.js$domain=ehow.com (easyprivacy.txt: 10674) +.scripts.demandmedia.com/wm\.js + +#ab2p-unblock-request-R211 +{-block \ + +client-header-tagger{ab2p-unblock-request-R211} \ +} +# @@||mxpnl.com/libs/mixpanel-*.min.js$domain=eloan.co.il (easyprivacy.txt: 11011) +.mxpnl.com/libs/mixpanel-.*\.min\.js + +#ab2p-unblock-request-R212 +{-block \ + +client-header-tagger{ab2p-unblock-request-R212} \ +} +# @@||email.1und1.de/appsuite/api/*/1and1_integration/tracking/tracking.js$domain=email.1und1.de (easyprivacy.txt: 10870) +.email.1und1.de/appsuite/api/.*/1and1_integration/tracking/tracking\.js + +#ab2p-unblock-request-R213 +{-block \ + +client-header-tagger{ab2p-unblock-request-R213} \ +} +# @@||aolcdn.com/omniunih_int.js$domain=engadget.com (easyprivacy.txt: 10962) +.aolcdn.com/omniunih_int\.js +# @@||aolcdn.com/js/mg2.js$domain=engadget.com (easyprivacy.txt: 10961) +.aolcdn.com/js/mg2\.js +# @@||blogsmithmedia.com^*/gravity-beacon.js$domain=engadget.com (easyprivacy.txt: 10311) +.blogsmithmedia.com/.*/gravity-beacon\.js + +#ab2p-unblock-request-R214 +{-block \ + +client-header-tagger{ab2p-unblock-request-R214} \ +} +# @@||yandex.ru/metrika/watch.js$domain=engwords.net (easyprivacy.txt: 10807) +.yandex.ru/metrika/watch\.js + +#ab2p-unblock-request-R215 +{-block \ + +client-header-tagger{ab2p-unblock-request-R215} \ +} +# @@||estat.com/js/*.js?$domain=entertainmentwise.com (easyprivacy.txt: 10425) +.estat.com/js/.*\.js\? + +#ab2p-unblock-request-R218 +{-block \ + +client-header-tagger{ab2p-unblock-request-R218} \ +} +# @@||imrworldwide.com^*/ggce354.swf$domain=espn.go.com|espndeportes.com|espnfc.co.uk|espnfc.com|espnfc.com.au|espnfc.us|espnfcasia.com (easyprivacy.txt: 10500) +.imrworldwide.com/.*/ggce354\.swf + +#ab2p-unblock-request-R220 +{-block \ + +client-header-tagger{ab2p-unblock-request-R220} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=europafm.com (easyprivacy.txt: 10496) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-request-R221 +{-block \ + +client-header-tagger{ab2p-unblock-request-R221} \ +} +# @@||vast.com/vimpressions.js$domain=everycarlisted.com (easyprivacy.txt: 10755) +.vast.com/vimpressions\.js + +#ab2p-unblock-request-R224 +{-block \ + +client-header-tagger{ab2p-unblock-request-R224} \ +} +# @@||maxmind.com^*/geoip2.js$domain=fallout4.com|metronews.ca|mtv.com.lb|teslamotors.com (easyprivacy.txt: 10551) +.maxmind.com/.*/geoip2\.js + +#ab2p-unblock-request-R225 +{-block \ + +client-header-tagger{ab2p-unblock-request-R225} \ +} +# @@||googletagmanager.com/gtm.js?$domain=feex.co.il|reshet.tv (easyprivacy.txt: 11007) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-request-R226 +{-block \ + +client-header-tagger{ab2p-unblock-request-R226} \ +} +# @@||yimg.com/bm/lib/fi/common/*/yfi_comscore.js$domain=finance.yahoo.com (easyprivacy.txt: 10808) +.yimg.com/bm/lib/fi/common/.*/yfi_comscore\.js + +#ab2p-unblock-request-R227 +{-block \ + +client-header-tagger{ab2p-unblock-request-R227} \ +} +# @@||adobetag.com^*s_code.js$domain=fnac.com (easyprivacy.txt: 10261) +.adobetag.com/.*s_code\.js + +#ab2p-unblock-request-R228 +{-block \ + +client-header-tagger{ab2p-unblock-request-R228} \ +} +# @@||cloudfront.net^*/keen.min.js$domain=foodnetwork.co.uk (easyprivacy.txt: 10365) +.cloudfront.net/.*/keen\.min\.js + +#ab2p-unblock-request-R229 +{-block \ + +client-header-tagger{ab2p-unblock-request-R229} \ +} +# @@||optimizely.com/js/geo.js$domain=forbes.com (easyprivacy.txt: 10619) +.optimizely.com/js/geo\.js + +#ab2p-unblock-request-R230 +{-block \ + +client-header-tagger{ab2p-unblock-request-R230} \ +} +# @@||everestjs.net/static/st.js$domain=ford.com (easyprivacy.txt: 10426) +.everestjs.net/static/st\.js + +#ab2p-unblock-request-R231 +{-block \ + +client-header-tagger{ab2p-unblock-request-R231} \ +} +# @@||rfdcontent.com^*/utag.loader.js$domain=forums.redflagdeals.com (easyprivacy.txt: 10664) +.rfdcontent.com/.*/utag\.loader\.js + +#ab2p-unblock-request-R232 +{-block \ + +client-header-tagger{ab2p-unblock-request-R232} \ +} +# @@/cdn-cgi/pe/bag2?*googlesyndication.com%2Fpagead%2Fosd.js$domain=forwardprogressives.com (easyprivacy.txt: 10241) +/(.*/)?cdn-cgi/pe/bag2\?.*googlesyndication\.com%2Fpagead%2Fosd\.js + +#ab2p-unblock-request-R233 +{-block \ + +client-header-tagger{ab2p-unblock-request-R233} \ +} +# @@||google-analytics.com/cx/api.js?experiment=$domain=foxnews.com (easyprivacy.txt: 10464) +.google-analytics.com/cx/api\.js\?experiment= + +#ab2p-unblock-request-R234 +{-block \ + +client-header-tagger{ab2p-unblock-request-R234} \ +} +# @@||optimost.com^*/FT_live.js$domain=ft.com (easyprivacy.txt: 10622) +.optimost.com/.*/FT_live\.js +# @@||media.ft.com/j/optimost-$domain=ft.com (easyprivacy.txt: 10556) +.media.ft.com/j/optimost- +# @@||by.optimost.com^$domain=ft.com (easyprivacy.txt: 10324) +.by.optimost.com + +#ab2p-unblock-request-R235 +{-block \ + +client-header-tagger{ab2p-unblock-request-R235} \ +} +# @@||gaanacdn.com/*_social_tracking.js$domain=gaana.com (easyprivacy.txt: 10442) +.gaanacdn.com/.*_social_tracking\.js + +#ab2p-unblock-request-R238 +{-block \ + +client-header-tagger{ab2p-unblock-request-R238} \ +} +# @@||garmin.com/modern/main/js/properties/metrics/metrics$domain=garmin.com (easyprivacy.txt: 10445) +.garmin.com/modern/main/js/properties/metrics/metrics + +#ab2p-unblock-request-R242 +{-block \ + +client-header-tagger{ab2p-unblock-request-R242} \ +} +# @@||google.com/js/gweb/analytics/$domain=google.com (easyprivacy.txt: 10471) +.google.com/js/gweb/analytics/ + +#ab2p-unblock-request-R244 +{-block \ + +client-header-tagger{ab2p-unblock-request-R244} \ +} +# @@||segment.io/analytics.js/*/analytics.min.js$domain=greentoe.com|thescene.com (easyprivacy.txt: 10676) +.segment.io/analytics\.js/.*/analytics\.min\.js + +#ab2p-unblock-request-R246 +{-block \ + +client-header-tagger{ab2p-unblock-request-R246} \ +} +# @@||adobetag.com^*/sitecatalyst.js$domain=hbf.com.au|seattlepi.com|tv.com (easyprivacy.txt: 10259) +.adobetag.com/.*/sitecatalyst\.js + +#ab2p-unblock-request-R247 +{-block \ + +client-header-tagger{ab2p-unblock-request-R247} \ +} +# @@||heatmap.it^$domain=heatmap.me (easyprivacy.txt: 10847) +.heatmap.it + +#ab2p-unblock-request-R249 +{-block \ + +client-header-tagger{ab2p-unblock-request-R249} \ +} +# @@||hise.spring-tns.net/survey.js$domain=hintaseuranta.fi (easyprivacy.txt: 11001) +.hise.spring-tns.net/survey\.js + +#ab2p-unblock-request-R250 +{-block \ + +client-header-tagger{ab2p-unblock-request-R250} \ +} +# @@||netdna-ssl.com/lib/jquery-google-analytics/jquery.google-analytics.js$domain=homepath.com (easyprivacy.txt: 10598) +.netdna-ssl.com/lib/jquery-google-analytics/jquery\.google-analytics\.js +# @@||cloudfront.net^*/jquery.google-analytics.js$domain=homepath.com (easyprivacy.txt: 10364) +.cloudfront.net/.*/jquery\.google-analytics\.js + +#ab2p-unblock-request-R252 +{-block \ + +client-header-tagger{ab2p-unblock-request-R252} \ +} +# @@||hotwirestatic.com^*/opinionLab.js$domain=hotwire.com (easyprivacy.txt: 10490) +.hotwirestatic.com/.*/opinionLab\.js + +#ab2p-unblock-request-R253 +{-block \ + +client-header-tagger{ab2p-unblock-request-R253} \ +} +# @@||images-iherb.com/js/ga-pro.min2.js$domain=iherb.com (easyprivacy.txt: 10493) +.images-iherb.com/js/ga-pro\.min2\.js + +#ab2p-unblock-request-R254 +{-block \ + +client-header-tagger{ab2p-unblock-request-R254} \ +} +# @@||yimg.com/mi/eu/ywa.js$domain=immowelt.de (easyprivacy.txt: 10925) +.yimg.com/mi/eu/ywa\.js + +#ab2p-unblock-request-R255 +{-block \ + +client-header-tagger{ab2p-unblock-request-R255} \ +} +# @@||lp.longtailvideo.com/5/yourlytics/yourlytics-1.js$domain=indiedb.com|indieroyale.com|moddb.com (easyprivacy.txt: 10537) +.lp.longtailvideo.com/5/yourlytics/yourlytics-1\.js + +#ab2p-unblock-request-R258 +{-block \ + +client-header-tagger{ab2p-unblock-request-R258} \ +} +# @@||stat24.com/crossdomain.xml$domain=ipla.tv (easyprivacy.txt: 11048) +.stat24.com/crossdomain\.xml + +#ab2p-unblock-request-R259 +{-block \ + +client-header-tagger{ab2p-unblock-request-R259} \ +} +# @@||eloqua.com/visitor/v200/svrgp.aspx?$domain=itworld.com|juniper.net (easyprivacy.txt: 10413) +.eloqua.com/visitor/v200/svrgp\.aspx\? + +#ab2p-unblock-request-R262 +{-block \ + +client-header-tagger{ab2p-unblock-request-R262} \ +} +# @@||cloudfront.net/atrk.js$domain=karnaval.com|livestream.com|luxuryrealestate.com (easyprivacy.txt: 10359) +.cloudfront.net/atrk\.js + +#ab2p-unblock-request-R263 +{-block \ + +client-header-tagger{ab2p-unblock-request-R263} \ +} +# @@||vidtech.cbsinteractive.com^*/AkamaiAnalytics.swf$domain=kuathletics.com|mutigers.com|okstate.com (easyprivacy.txt: 10761) +.vidtech.cbsinteractive.com/.*/AkamaiAnalytics\.swf + +#ab2p-unblock-request-R264 +{-block \ + +client-header-tagger{ab2p-unblock-request-R264} \ +} +# @@||cache2.delvenetworks.com/crossdomain.xml$domain=lapresse.ca (easyprivacy.txt: 10935) +.cache2.delvenetworks.com/crossdomain\.xml + +#ab2p-unblock-request-R265 +{-block \ + +client-header-tagger{ab2p-unblock-request-R265} \ +} +# @@||slatic.net/js/tracking.js$domain=lazada.co.id (easyprivacy.txt: 10686) +.slatic.net/js/tracking\.js + +#ab2p-unblock-request-R267 +{-block \ + +client-header-tagger{ab2p-unblock-request-R267} \ +} +# @@||sundaysky.com^*/default/sundaysky.js$domain=lenovo.com (easyprivacy.txt: 10705) +.sundaysky.com/.*/default/sundaysky\.js +# @@||sundaysky.com/sundaysky.js?$domain=lenovo.com (easyprivacy.txt: 10704) +.sundaysky.com/sundaysky\.js\? + +#ab2p-unblock-request-R268 +{-block \ + +client-header-tagger{ab2p-unblock-request-R268} \ +} +# @@||maxmind.com/app/country.js$domain=lenovo.com|nationalgeographic.com|paypal.fr (easyprivacy.txt: 10549) +.maxmind.com/app/country\.js + +#ab2p-unblock-request-R269 +{-block \ + +client-header-tagger{ab2p-unblock-request-R269} \ +} +# @@||google-analytics.com/analytics.js$domain=ligtv.com.tr (easyprivacy.txt: 11088) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R270 +{-block \ + +client-header-tagger{ab2p-unblock-request-R270} \ +} +# @@||piwik.windit.de/piwik.js$domain=livespotting.tv (easyprivacy.txt: 10896) +.piwik.windit.de/piwik\.js + +#ab2p-unblock-request-R272 +{-block \ + +client-header-tagger{ab2p-unblock-request-R272} \ +} +# @@||google-analytics.com/plugins/ga/inpage_linkid.js$domain=lovehoney.co.uk|maxiclimber.com|opendns.com|openshift.com|vimeo.com|westernunion.at|westernunion.be|westernunion.ca|westernunion.ch|westernunion.cl|westernunion.co.jp|westernunion.co.nz|westernunion.co.uk|westernunion.co.za|westernunion.com|westernunion.com.au|westernunion.com.co|westernunion.com.hk|westernunion.com.my|westernunion.com.pe|westernunion.de|westernunion.fr|westernunion.ie|westernunion.it|westernunion.nl|westernunion.ph|westernunion.pl|westernunion.se|westernunion.sg (easyprivacy.txt: 10465) +.google-analytics.com/plugins/ga/inpage_linkid\.js + +#ab2p-unblock-request-R273 +{-block \ + +client-header-tagger{ab2p-unblock-request-R273} \ +} +# @@||linezing.com^$domain=lz.taobao.com (easyprivacy.txt: 10968) +.linezing.com + +#ab2p-unblock-request-R275 +{-block \ + +client-header-tagger{ab2p-unblock-request-R275} \ +} +# @@||chartbeat.com/js/chartbeat.js$domain=m.tmz.com|salon.com|zap2it.com (easyprivacy.txt: 10347) +.chartbeat.com/js/chartbeat\.js + +#ab2p-unblock-request-R276 +{-block \ + +client-header-tagger{ab2p-unblock-request-R276} \ +} +# @@||cloudfront.net/opentag-*.js$domain=mackweldon.com|telegraph.co.uk (easyprivacy.txt: 10363) +.cloudfront.net/opentag-.*\.js + +#ab2p-unblock-request-R278 +{-block \ + +client-header-tagger{ab2p-unblock-request-R278} \ +} +# @@||btstatic.com/tag.js$domain=macys.com (easyprivacy.txt: 10321) +.btstatic.com/tag\.js + +#ab2p-unblock-request-R279 +{-block \ + +client-header-tagger{ab2p-unblock-request-R279} \ +} +# @@||mail.biz.rr.com/images/portal/blank.gif$domain=mail.biz.rr.com (easyprivacy.txt: 10544) +.mail.biz.rr.com/images/portal/blank\.gif + +#ab2p-unblock-request-R280 +{-block \ + +client-header-tagger{ab2p-unblock-request-R280} \ +} +# @@||mail-www.baynote.net^$domain=mail.com (easyprivacy.txt: 10543) +.mail-www.baynote.net + +#ab2p-unblock-request-R281 +{-block \ + +client-header-tagger{ab2p-unblock-request-R281} \ +} +# @@||webcenter.tiscali.it/distribuzione/_script/audience_science.js$domain=mail.tiscali.it (easyprivacy.txt: 11035) +.webcenter.tiscali.it/distribuzione/_script/audience_science\.js + +#ab2p-unblock-request-R284 +{-block \ + +client-header-tagger{ab2p-unblock-request-R284} \ +} +# @@||clicktale.net/wrb.js$domain=microsoft.com (easyprivacy.txt: 10355) +.clicktale.net/wrb\.js + +#ab2p-unblock-request-R286 +{-block \ + +client-header-tagger{ab2p-unblock-request-R286} \ +} +# @@||cloudfront.net/bugsnag-2.min.js$domain=miutcank.hu (easyprivacy.txt: 11017) +.cloudfront.net/bugsnag-2\.min\.js + +#ab2p-unblock-request-R287 +{-block \ + +client-header-tagger{ab2p-unblock-request-R287} \ +} +# @@||mxpnl.com^$domain=mixpanel.com (easyprivacy.txt: 10589) +.mxpnl.com + +#ab2p-unblock-request-R288 +{-block \ + +client-header-tagger{ab2p-unblock-request-R288} \ +} +# @@||classistatic.de^*/hitcounter.js$domain=mobile.de (easyprivacy.txt: 10862) +.classistatic.de/.*/hitcounter\.js + +#ab2p-unblock-request-R289 +{-block \ + +client-header-tagger{ab2p-unblock-request-R289} \ +} +# @@||msecnd.net^*/site-tracker.js$domain=momondo.co.uk (easyprivacy.txt: 10583) +.msecnd.net/.*/site-tracker\.js + +#ab2p-unblock-request-R290 +{-block \ + +client-header-tagger{ab2p-unblock-request-R290} \ +} +# @@||msecnd.net^*/site-tracker.js$domain=momondo.dk (easyprivacy.txt: 10986) +.msecnd.net/.*/site-tracker\.js + +#ab2p-unblock-request-R291 +{-block \ + +client-header-tagger{ab2p-unblock-request-R291} \ +} +# @@||inazuma.co/campaign/js/heatmap.js$domain=monopoly.mcdonalds.co.uk (easyprivacy.txt: 10503) +.inazuma.co/campaign/js/heatmap\.js + +#ab2p-unblock-request-R292 +{-block \ + +client-header-tagger{ab2p-unblock-request-R292} \ +} +# @@||c.mmcdn.net^*/flash/config/metrics.xml$domain=moshimonsters.com (easyprivacy.txt: 10326) +.c.mmcdn.net/.*/flash/config/metrics\.xml + +#ab2p-unblock-request-R293 +{-block \ + +client-header-tagger{ab2p-unblock-request-R293} \ +} +# @@||bunchball.net/scripts/cookies/current/NitroCookies.js$domain=mtvema.com (easyprivacy.txt: 10323) +.bunchball.net/scripts/cookies/current/NitroCookies\.js + +#ab2p-unblock-request-R295 +{-block \ + +client-header-tagger{ab2p-unblock-request-R295} \ +} +# @@||imrworldwide.com/v60.js$domain=musicfeeds.com.au|nzherald.co.nz|sf.se|weatherchannel.com.au (easyprivacy.txt: 10497) +.imrworldwide.com/v60\.js + +#ab2p-unblock-request-R297 +{-block \ + +client-header-tagger{ab2p-unblock-request-R297} \ +} +# @@||nytimes.com/bi/js/tagx/tagx.js$domain=myaccount.nytimes.com (easyprivacy.txt: 10609) +.nytimes.com/bi/js/tagx/tagx\.js + +#ab2p-unblock-request-R299 +{-block \ + +client-header-tagger{ab2p-unblock-request-R299} \ +} +# @@||mycommunitynow.com/includes/JI_trafficTracking.js$domain=mycommunitynow.com (easyprivacy.txt: 10592) +.mycommunitynow.com/includes/JI_trafficTracking\.js + +#ab2p-unblock-request-R300 +{-block \ + +client-header-tagger{ab2p-unblock-request-R300} \ +} +# @@||static-fra.de^*/targeting.js$domain=n-tvnow.de|rtl-now.rtl.de|rtl2now.rtl2.de|rtlnitronow.de|superrtlnow.de|voxnow.de (easyprivacy.txt: 10913) +.static-fra.de/.*/targeting\.js + +#ab2p-unblock-request-R303 +{-block \ + +client-header-tagger{ab2p-unblock-request-R303} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=ndr.de (easyprivacy.txt: 10880) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-request-R304 +{-block \ + +client-header-tagger{ab2p-unblock-request-R304} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=netcombo.com.br (easyprivacy.txt: 10958) +.stats.g.doubleclick.net/dc\.js +# @@||googletagmanager.com/gtm.js?$domain=netcombo.com.br (easyprivacy.txt: 10956) +.googletagmanager.com/gtm\.js\? + +#ab2p-unblock-request-R305 +{-block \ + +client-header-tagger{ab2p-unblock-request-R305} \ +} +# @@||monetate.net^*/entry.js$domain=newegg.com (easyprivacy.txt: 10578) +.monetate.net/.*/entry\.js +# @@||monetate.net^*/custom.js$domain=newegg.com (easyprivacy.txt: 10577) +.monetate.net/.*/custom\.js + +#ab2p-unblock-request-R306 +{-block \ + +client-header-tagger{ab2p-unblock-request-R306} \ +} +# @@||analytics.edgekey.net/js/brightcove-csma.js$domain=news.com.au (easyprivacy.txt: 10272) +.analytics.edgekey.net/js/brightcove-csma\.js + +#ab2p-unblock-request-R307 +{-block \ + +client-header-tagger{ab2p-unblock-request-R307} \ +} +# @@||google-analytics.com/analytics.js$domain=news.gamme.com.tw (easyprivacy.txt: 10963) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R308 +{-block \ + +client-header-tagger{ab2p-unblock-request-R308} \ +} +# @@||imrworldwide.com/novms/js/2/ggcmb353.js$domain=nexttv.com.tw (easyprivacy.txt: 10966) +.imrworldwide.com/novms/js/2/ggcmb353\.js + +#ab2p-unblock-request-R309 +{-block \ + +client-header-tagger{ab2p-unblock-request-R309} \ +} +# @@||nike.com/checkout/analytics/js/analyticFunctions.js$domain=nike.com (easyprivacy.txt: 10603) +.nike.com/checkout/analytics/js/analyticFunctions\.js +# @@||monetate.net/js/$domain=nike.com (easyprivacy.txt: 10575) +.monetate.net/js/ + +#ab2p-unblock-request-R311 +{-block \ + +client-header-tagger{ab2p-unblock-request-R311} \ +} +# @@||google-analytics.com/analytics.js$domain=novatv.bg (easyprivacy.txt: 10954) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R313 +{-block \ + +client-header-tagger{ab2p-unblock-request-R313} \ +} +# @@||nyandcompany.com^*/resxclsa.js$domain=nyandcompany.com (easyprivacy.txt: 10605) +.nyandcompany.com/.*/resxclsa\.js + +#ab2p-unblock-request-R314 +{-block \ + +client-header-tagger{ab2p-unblock-request-R314} \ +} +# @@||yimg.com^*/ywa.js$domain=nydailynews.com|travelscream.com|yahoo.com (easyprivacy.txt: 10809) +.yimg.com/.*/ywa\.js + +#ab2p-unblock-request-R316 +{-block \ + +client-header-tagger{ab2p-unblock-request-R316} \ +} +# @@||nyt.com/bi/js/tagx/tagx.js$domain=nytimes.com (easyprivacy.txt: 10608) +.nyt.com/bi/js/tagx/tagx\.js + +#ab2p-unblock-request-R317 +{-block \ + +client-header-tagger{ab2p-unblock-request-R317} \ +} +# @@||static.atgsvcs.com/js/atgsvcs.js$domain=officedepot.com|shop.lego.com (easyprivacy.txt: 10695) +.static.atgsvcs.com/js/atgsvcs\.js + +#ab2p-unblock-request-R318 +{-block \ + +client-header-tagger{ab2p-unblock-request-R318} \ +} +# @@||digits.com^*/sdk.js$domain=openhub.net (easyprivacy.txt: 10396) +.digits.com/.*/sdk\.js + +#ab2p-unblock-request-R319 +{-block \ + +client-header-tagger{ab2p-unblock-request-R319} \ +} +# @@/cdn-cgi/pe/bag2?*piwik.js$domain=orain.org (easyprivacy.txt: 10244) +/(.*/)?cdn-cgi/pe/bag2\?.*piwik\.js + +#ab2p-unblock-request-R320 +{-block \ + +client-header-tagger{ab2p-unblock-request-R320} \ +} +# @@||btstatic.com/tag.js$domain=oralb.de (easyprivacy.txt: 10861) +.btstatic.com/tag\.js + +#ab2p-unblock-request-R321 +{-block \ + +client-header-tagger{ab2p-unblock-request-R321} \ +} +# @@||analytics.ladmedia.fr/parismatch/xtcore_mod2.js$domain=parismatch.com (easyprivacy.txt: 10933) +.analytics.ladmedia.fr/parismatch/xtcore_mod2\.js + +#ab2p-unblock-request-R322 +{-block \ + +client-header-tagger{ab2p-unblock-request-R322} \ +} +# @@/webtracking/*$domain=pasts.lv (easyprivacy.txt: 11041) +/(.*/)?webtracking/.* + +#ab2p-unblock-request-R33 +{-block \ + +client-header-tagger{ab2p-unblock-request-R33} \ +} +# @@||paypalobjects.com^*/opinionLab.js$domain=paypal.com (easyprivacy.txt: 10625) +.paypalobjects.com/.*/opinionLab\.js + +#ab2p-unblock-request-R323 +{-block \ + +client-header-tagger{ab2p-unblock-request-R323} \ +} +# @@||eloqua.com/include/livevalidation_standalone.compressed.js$domain=pbs.org (easyprivacy.txt: 10412) +.eloqua.com/include/livevalidation_standalone\.compressed\.js + +#ab2p-unblock-request-R324 +{-block \ + +client-header-tagger{ab2p-unblock-request-R324} \ +} +# @@||optimize.webtrends.com^$domain=peterboroughtoday.co.uk (easyprivacy.txt: 10618) +.optimize.webtrends.com + +#ab2p-unblock-request-R326 +{-block \ + +client-header-tagger{ab2p-unblock-request-R326} \ +} +# @@||stippleit.com/stipple.js$domain=photos.toofab.com (easyprivacy.txt: 10702) +.stippleit.com/stipple\.js + +#ab2p-unblock-request-R327 +{-block \ + +client-header-tagger{ab2p-unblock-request-R327} \ +} +# @@||levexis.com/clients/planetsports/1.js$domain=planet-sports.de (easyprivacy.txt: 10890) +.levexis.com/clients/planetsports/1\.js + +#ab2p-unblock-request-R328 +{-block \ + +client-header-tagger{ab2p-unblock-request-R328} \ +} +# @@||radio.com/player/javascript/tracking.js$domain=player.radio.com (easyprivacy.txt: 10655) +.radio.com/player/javascript/tracking\.js + +#ab2p-unblock-request-R329 +{-block \ + +client-header-tagger{ab2p-unblock-request-R329} \ +} +# @@||adobetag.com^*/sitecatalystnew.js$domain=playstation.com (easyprivacy.txt: 10260) +.adobetag.com/.*/sitecatalystnew\.js + +#ab2p-unblock-request-R330 +{-block \ + +client-header-tagger{ab2p-unblock-request-R330} \ +} +# @@||flurry.com/js/flurry.js$domain=pocketdice.io|slantnews.com (easyprivacy.txt: 10437) +.flurry.com/js/flurry\.js + +#ab2p-unblock-request-R331 +{-block \ + +client-header-tagger{ab2p-unblock-request-R331} \ +} +# @@||google-analytics.com/analytics.js$domain=poiskstroek.ru (easyprivacy.txt: 11064) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R334 +{-block \ + +client-header-tagger{ab2p-unblock-request-R334} \ +} +# @@||quantcast.com/wp-content/themes/quantcast/$domain=quantcast.com (easyprivacy.txt: 10652) +.quantcast.com/wp-content/themes/quantcast/ + +#ab2p-unblock-request-R336 +{-block \ + +client-header-tagger{ab2p-unblock-request-R336} \ +} +# @@||static.btbuckets.com/bt.js$domain=readwriteweb.com (easyprivacy.txt: 10696) +.static.btbuckets.com/bt\.js + +#ab2p-unblock-request-R337 +{-block \ + +client-header-tagger{ab2p-unblock-request-R337} \ +} +# @@/cdn-cgi/pe/bag2?*nr-data.net$domain=realhardwarereviews.com (easyprivacy.txt: 10243) +/(.*/)?cdn-cgi/pe/bag2\?.*nr-data\.net + +#ab2p-unblock-request-R338 +{-block \ + +client-header-tagger{ab2p-unblock-request-R338} \ +} +# @@||google-analytics.com/urchin.js$domain=record.xl.pt (easyprivacy.txt: 11055) +.google-analytics.com/urchin\.js + +#ab2p-unblock-request-R339 +{-block \ + +client-header-tagger{ab2p-unblock-request-R339} \ +} +# @@||cdn-redfin.com^*/PixelTracking.js$domain=redfin.com (easyprivacy.txt: 10342) +.cdn-redfin.com/.*/PixelTracking\.js +# @@||cdn-redfin.com^*/page_analytics.js$domain=redfin.com (easyprivacy.txt: 10340) +.cdn-redfin.com/.*/page_analytics\.js +# @@||cdn-redfin.com^*/clicktracker.js$domain=redfin.com (easyprivacy.txt: 10339) +.cdn-redfin.com/.*/clicktracker\.js + +#ab2p-unblock-request-R340 +{-block \ + +client-header-tagger{ab2p-unblock-request-R340} \ +} +# @@||sfdict.com/app/*/click_tracking.js$domain=reference.com|thesaurus.com (easyprivacy.txt: 10682) +.sfdict.com/app/.*/click_tracking\.js + +#ab2p-unblock-request-R341 +{-block \ + +client-header-tagger{ab2p-unblock-request-R341} \ +} +# @@||stats.g.doubleclick.net/dc.js$domain=reshet.tv (easyprivacy.txt: 11013) +.stats.g.doubleclick.net/dc\.js + +#ab2p-unblock-request-R342 +{-block \ + +client-header-tagger{ab2p-unblock-request-R342} \ +} +# @@||analytics.edgesuite.net/html5/akamaihtml5-min.js$domain=resignationbrewery.com|video.foxnews.com (easyprivacy.txt: 10274) +.analytics.edgesuite.net/html5/akamaihtml5-min\.js + +#ab2p-unblock-request-R343 +{-block \ + +client-header-tagger{ab2p-unblock-request-R343} \ +} +# @@||analytics.rogersmedia.com/js/rdm_s_code.min.js$domain=rogersradio.ca (easyprivacy.txt: 10276) +.analytics.rogersmedia.com/js/rdm_s_code\.min\.js +# @@||analytics.rogersmedia.com/js/rdm_dil_code.full.js$domain=rogersradio.ca (easyprivacy.txt: 10275) +.analytics.rogersmedia.com/js/rdm_dil_code\.full\.js + +#ab2p-unblock-request-R345 +{-block \ + +client-header-tagger{ab2p-unblock-request-R345} \ +} +# @@||scorecardresearch.com/crossdomain.xml$domain=rte.ie (easyprivacy.txt: 10673) +.scorecardresearch.com/crossdomain\.xml + +#ab2p-unblock-request-R346 +{-block \ + +client-header-tagger{ab2p-unblock-request-R346} \ +} +# @@||stroeerdigitalmedia.de/dynback/call.sjs?$domain=runnersworld.de (easyprivacy.txt: 10915) +.stroeerdigitalmedia.de/dynback/call\.sjs\? + +#ab2p-unblock-request-R348 +{-block \ + +client-header-tagger{ab2p-unblock-request-R348} \ +} +# @@||zeit.de/piwik/piwik.js$domain=schach.zeit.de (easyprivacy.txt: 10928) +.zeit.de/piwik/piwik\.js + +#ab2p-unblock-request-R351 +{-block \ + +client-header-tagger{ab2p-unblock-request-R351} \ +} +# @@||google-analytics.com/analytics.js$domain=skaties.lv (easyprivacy.txt: 11042) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R352 +{-block \ + +client-header-tagger{ab2p-unblock-request-R352} \ +} +# @@||imrworldwide.com/novms/*/ggcm*.js$domain=sky.it (easyprivacy.txt: 11027) +.imrworldwide.com/novms/.*/ggcm.*\.js + +#ab2p-unblock-request-R41 +{-block \ + +client-header-tagger{ab2p-unblock-request-R41} \ +} +# @@||i.s-microsoft.com/wedcs/ms.js$domain=skype.com (easyprivacy.txt: 10491) +.i.s-microsoft.com/wedcs/ms\.js + +#ab2p-unblock-request-R354 +{-block \ + +client-header-tagger{ab2p-unblock-request-R354} \ +} +# @@||x5.xclicks.net/js/x3165.js$domain=small-breasted-teens.com (easyprivacy.txt: 10804) +.x5.xclicks.net/js/x3165\.js + +#ab2p-unblock-request-R355 +{-block \ + +client-header-tagger{ab2p-unblock-request-R355} \ +} +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/ortc.js$domain=social.economico.pt (easyprivacy.txt: 11054) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/ortc\.js +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/IbtRealTimeSJ/IbtRealTimeSJCore.js?$domain=social.economico.pt (easyprivacy.txt: 11053) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/IbtRealTimeSJ/IbtRealTimeSJCore\.js\? +# @@||dfdbz2tdq3k01.cloudfront.net/js/2.1.0/IbtRealTimeSJ/IbtRealTimeSJ.js?$domain=social.economico.pt (easyprivacy.txt: 11052) +.dfdbz2tdq3k01.cloudfront.net/js/2\.1\.0/IbtRealTimeSJ/IbtRealTimeSJ\.js\? + +#ab2p-unblock-request-R356 +{-block \ + +client-header-tagger{ab2p-unblock-request-R356} \ +} +# @@||spatialbuzz.com/piwik/piwik.js$domain=spatialbuzz.com (easyprivacy.txt: 10911) +.spatialbuzz.com/piwik/piwik\.js + +#ab2p-unblock-request-R357 +{-block \ + +client-header-tagger{ab2p-unblock-request-R357} \ +} +# @@||googletagservices.com/tag/js/gpt.js$domain=speedtest.net (easyprivacy.txt: 10474) +.googletagservices.com/tag/js/gpt\.js + +#ab2p-unblock-request-R358 +{-block \ + +client-header-tagger{ab2p-unblock-request-R358} \ +} +# @@||scorecardresearch.com/beacon.js$domain=spielen.com (easyprivacy.txt: 10905) +.scorecardresearch.com/beacon\.js + +#ab2p-unblock-request-R359 +{-block \ + +client-header-tagger{ab2p-unblock-request-R359} \ +} +# @@||sbstatic.com.au/js/tealium.js$domain=sportsbet.com.au (easyprivacy.txt: 10670) +.sbstatic.com.au/js/tealium\.js + +#ab2p-unblock-request-R360 +{-block \ + +client-header-tagger{ab2p-unblock-request-R360} \ +} +# @@||maxmind.com^*/geoip.js$domain=sportube.tv (easyprivacy.txt: 11030) +.maxmind.com/.*/geoip\.js + +#ab2p-unblock-request-R361 +{-block \ + +client-header-tagger{ab2p-unblock-request-R361} \ +} +# @@||atdmt.com^*/direct*01$domain=sprint.com (easyprivacy.txt: 10291) +.atdmt.com/.*/direct.*01 + +#ab2p-unblock-request-R363 +{-block \ + +client-header-tagger{ab2p-unblock-request-R363} \ +} +# @@||view.atdmt.com^*/view/$domain=starwoodhotels.com (easyprivacy.txt: 10763) +.view.atdmt.com/.*/view/ +# @@||view.atdmt.com^*/iview/$domain=starwoodhotels.com (easyprivacy.txt: 10762) +.view.atdmt.com/.*/iview/ +# @@||ec.atdmt.com/b/$domain=starwoodhotels.com (easyprivacy.txt: 10407) +.ec.atdmt.com/b/ + +#ab2p-unblock-request-R364 +{-block \ + +client-header-tagger{ab2p-unblock-request-R364} \ +} +# @@||c.microsoft.com/ms.js$domain=store.office.live.com|xbox.com (easyprivacy.txt: 10325) +.c.microsoft.com/ms\.js + +#ab2p-unblock-request-R365 +{-block \ + +client-header-tagger{ab2p-unblock-request-R365} \ +} +# @@||cloudfront.net/bugsnag-*.min.js$domain=storenvy.com|tvguide.com (easyprivacy.txt: 10360) +.cloudfront.net/bugsnag-.*\.min\.js + +#ab2p-unblock-request-R366 +{-block \ + +client-header-tagger{ab2p-unblock-request-R366} \ +} +# @@||stylished.de/js/vendors/emos2.js$domain=stylished.de (easyprivacy.txt: 10917) +.stylished.de/js/vendors/emos2\.js + +#ab2p-unblock-request-R367 +{-block \ + +client-header-tagger{ab2p-unblock-request-R367} \ +} +# @@||ivwbox.de/2004/01/survey.js$domain=stylished.de|t-online.de (easyprivacy.txt: 10884) +.ivwbox.de/2004/01/survey\.js + +#ab2p-unblock-request-R368 +{-block \ + +client-header-tagger{ab2p-unblock-request-R368} \ +} +# @@||mongoosemetrics.com/jsfiles/js-correlation/mm-rules.min.js$domain=subaru.com (easyprivacy.txt: 10579) +.mongoosemetrics.com/jsfiles/js-correlation/mm-rules\.min\.js + +#ab2p-unblock-request-R371 +{-block \ + +client-header-tagger{ab2p-unblock-request-R371} \ +} +# @@||pix04.revsci.net^*.js?$domain=t-online.de (easyprivacy.txt: 10897) +.pix04.revsci.net/.*\.js\? +# @@||js.revsci.net/gateway/gw.js?$domain=t-online.de (easyprivacy.txt: 10889) +.js.revsci.net/gateway/gw\.js\? +# @@||a.visualrevenue.com/vrs.js$domain=t-online.de (easyprivacy.txt: 10851) +.a.visualrevenue.com/vrs\.js + +#ab2p-unblock-request-R372 +{-block \ + +client-header-tagger{ab2p-unblock-request-R372} \ +} +# @@||cxense.com/cx.js$domain=tagesanzeiger.ch (easyprivacy.txt: 10867) +.cxense.com/cx\.js + +#ab2p-unblock-request-R375 +{-block \ + +client-header-tagger{ab2p-unblock-request-R375} \ +} +# @@||reinvigorate.net/re_.js$domain=thenounproject.com (easyprivacy.txt: 10661) +.reinvigorate.net/re_\.js + +#ab2p-unblock-request-R377 +{-block \ + +client-header-tagger{ab2p-unblock-request-R377} \ +} +# @@||t.st/video/js/kGoogleAnalytics.js?$domain=thestreet.com (easyprivacy.txt: 10708) +.t.st/video/js/kGoogleAnalytics\.js\? + +#ab2p-unblock-request-R378 +{-block \ + +client-header-tagger{ab2p-unblock-request-R378} \ +} +# @@||adobetag.com/d2/telecomitalia/live/Aggregato119TIM.js$domain=tim.it (easyprivacy.txt: 11019) +.adobetag.com/d2/telecomitalia/live/Aggregato119TIM\.js + +#ab2p-unblock-request-R379 +{-block \ + +client-header-tagger{ab2p-unblock-request-R379} \ +} +# @@||wp.com^*/time-tracking.js?$domain=time.com (easyprivacy.txt: 10800) +.wp.com/.*/time-tracking\.js\? +# @@||wp.com/_static/*/vip-analytics.js?$domain=time.com (easyprivacy.txt: 10799) +.wp.com/_static/.*/vip-analytics\.js\? + +#ab2p-unblock-request-R380 +{-block \ + +client-header-tagger{ab2p-unblock-request-R380} \ +} +# @@||pp-serve.newsinc.com^*/unitsdata.js?$domain=timesfreepress.com (easyprivacy.txt: 10647) +.pp-serve.newsinc.com/.*/unitsdata\.js\? +# @@||dmeserv.newsinc.com^*/dynamicWidgets.js$domain=timesfreepress.com (easyprivacy.txt: 10400) +.dmeserv.newsinc.com/.*/dynamicWidgets\.js + +#ab2p-unblock-request-R381 +{-block \ + +client-header-tagger{ab2p-unblock-request-R381} \ +} +# @@||bestofmedia.com/sfp/js/minified/testedJs/xtClick.min.js?$domain=tomshardware.com (easyprivacy.txt: 10306) +.bestofmedia.com/sfp/js/minified/testedJs/xtClick\.min\.js\? + +#ab2p-unblock-request-R382 +{-block \ + +client-header-tagger{ab2p-unblock-request-R382} \ +} +# @@||googletagmanager.com/gtm.js?id=$domain=tradera.com (easyprivacy.txt: 11082) +.googletagmanager.com/gtm\.js\?id= +# @@||google-analytics.com/analytics.js$domain=tradera.com (easyprivacy.txt: 11081) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R383 +{-block \ + +client-header-tagger{ab2p-unblock-request-R383} \ +} +# @@||gemius.pl/gplayer.js$domain=tsn.ua (easyprivacy.txt: 11093) +.gemius.pl/gplayer\.js +# @@||bemobile.ua/lib/lib.js$domain=tsn.ua (easyprivacy.txt: 11092) +.bemobile.ua/lib/lib\.js + +#ab2p-unblock-request-R384 +{-block \ + +client-header-tagger{ab2p-unblock-request-R384} \ +} +# @@||wrating.com/a1.js$domain=tudou.com|ynet.com (easyprivacy.txt: 10977) +.wrating.com/a1\.js + +#ab2p-unblock-request-R385 +{-block \ + +client-header-tagger{ab2p-unblock-request-R385} \ +} +# @@||google-analytics.com/analytics.js$domain=tv3play.no (easyprivacy.txt: 11044) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R386 +{-block \ + +client-header-tagger{ab2p-unblock-request-R386} \ +} +# @@||kropka.onet.pl^*/onet.js$domain=tvnwarszawa.pl (easyprivacy.txt: 11047) +.kropka.onet.pl/.*/onet\.js + +#ab2p-unblock-request-R387 +{-block \ + +client-header-tagger{ab2p-unblock-request-R387} \ +} +# @@||hj.flxpxl.com^*.js?r=*&m=*&a=$domain=twitch.tv (easyprivacy.txt: 10485) +.hj.flxpxl.com/.*\.js\?r=.*&m=.*&a= + +#ab2p-unblock-request-R389 +{-block \ + +client-header-tagger{ab2p-unblock-request-R389} \ +} +# @@||mmi.bemobile.ua/lib/lib.js$domain=uatoday.tv (easyprivacy.txt: 10573) +.mmi.bemobile.ua/lib/lib\.js + +#ab2p-unblock-request-R390 +{-block \ + +client-header-tagger{ab2p-unblock-request-R390} \ +} +# @@||usps.com/m/js/tracking.js$domain=usps.com (easyprivacy.txt: 10744) +.usps.com/m/js/tracking\.js + +#ab2p-unblock-request-R391 +{-block \ + +client-header-tagger{ab2p-unblock-request-R391} \ +} +# @@||vanclimg.com/js.ashx?*/google-analytics.js$domain=vancl.com (easyprivacy.txt: 10975) +.vanclimg.com/js\.ashx\?.*/google-analytics\.js + +#ab2p-unblock-request-R392 +{-block \ + +client-header-tagger{ab2p-unblock-request-R392} \ +} +# @@||google-analytics.com/analytics.js$domain=vd.nl (easyprivacy.txt: 10990) +.google-analytics.com/analytics\.js + +#ab2p-unblock-request-R393 +{-block \ + +client-header-tagger{ab2p-unblock-request-R393} \ +} +# @@||analytics.edgesuite.net/config/beacon-*.xml$domain=video.foxnews.com (easyprivacy.txt: 10273) +.analytics.edgesuite.net/config/beacon-.*\.xml + +#ab2p-unblock-request-R394 +{-block \ + +client-header-tagger{ab2p-unblock-request-R394} \ +} +# @@||repstatic.it^*/Nielsen.js$domain=video.repubblica.it (easyprivacy.txt: 11031) +.repstatic.it/.*/Nielsen\.js + +#ab2p-unblock-request-R395 +{-block \ + +client-header-tagger{ab2p-unblock-request-R395} \ +} +# @@||pixel.condenastdigital.com/sparrow.min.js$domain=video.wired.com (easyprivacy.txt: 10634) +.pixel.condenastdigital.com/sparrow\.min\.js + +#ab2p-unblock-request-R396 +{-block \ + +client-header-tagger{ab2p-unblock-request-R396} \ +} +# @@||mediaite.com/decor/javascript/magnify_stats.js$domain=videos.mediaite.com (easyprivacy.txt: 10558) +.mediaite.com/decor/javascript/magnify_stats\.js + +#ab2p-unblock-request-R398 +{-block \ + +client-header-tagger{ab2p-unblock-request-R398} \ +} +# @@||getsmartcontent.com/gsc.js$domain=visitpa.com (easyprivacy.txt: 10453) +.getsmartcontent.com/gsc\.js +# @@||getsmartcontent.com/gateway/?callback$domain=visitpa.com (easyprivacy.txt: 10452) +.getsmartcontent.com/gateway/\?callback + +#ab2p-unblock-request-R401 +{-block \ + +client-header-tagger{ab2p-unblock-request-R401} \ +} +# @@||nymag.com/vltr/scripts/analytics.js$domain=vulture.com (easyprivacy.txt: 10607) +.nymag.com/vltr/scripts/analytics\.js + +#ab2p-unblock-request-R402 +{-block \ + +client-header-tagger{ab2p-unblock-request-R402} \ +} +# @@||walmartimages.com/webanalytics/wmStat/wmStat.jsp$domain=walmart.com (easyprivacy.txt: 10778) +.walmartimages.com/webanalytics/wmStat/wmStat\.jsp +# @@||walmartimages.com/webanalytics/omniture/omniture.jsp$domain=walmart.com (easyprivacy.txt: 10777) +.walmartimages.com/webanalytics/omniture/omniture\.jsp +# @@||hlserve.com/beacon?$domain=walmart.com (easyprivacy.txt: 10486) +.hlserve.com/beacon\? + +#ab2p-unblock-request-R403 +{-block \ + +client-header-tagger{ab2p-unblock-request-R403} \ +} +# @@||d2pe20ur0h0p8p.cloudfront.net/identity/*/wapo_jskit_addon.js$domain=washingtonpost.com (easyprivacy.txt: 10384) +.d2pe20ur0h0p8p.cloudfront.net/identity/.*/wapo_jskit_addon\.js +# @@||d2pe20ur0h0p8p.cloudfront.net/identity/*/wapo_identity_full.js$domain=washingtonpost.com (easyprivacy.txt: 10383) +.d2pe20ur0h0p8p.cloudfront.net/identity/.*/wapo_identity_full\.js + +#ab2p-unblock-request-R412 +{-block \ + +client-header-tagger{ab2p-unblock-request-R412} \ +} +# @@/cdn-cgi/pe/bag2?*histats.com$domain=xrussianteens.com (easyprivacy.txt: 10242) +/(.*/)?cdn-cgi/pe/bag2\?.*histats\.com + +#ab2p-unblock-request-R413 +{-block \ + +client-header-tagger{ab2p-unblock-request-R413} \ +} +# @@||s-msn.com^*/udctrack*.js$domain=ynet.com (easyprivacy.txt: 10971) +.s-msn.com/.*/udctrack.*\.js + +#ab2p-unblock-request-R414 +{-block \ + +client-header-tagger{ab2p-unblock-request-R414} \ +} +# @@||paypalobjects.com^*/pixel.gif$domain=youngcons.com (easyprivacy.txt: 10626) +.paypalobjects.com/.*/pixel\.gif + +#ab2p-unblock-request-R415 +{-block \ + +client-header-tagger{ab2p-unblock-request-R415} \ +} +# @@||cloudfront.net/js/reach.js$domain=zap2it.com (easyprivacy.txt: 10361) +.cloudfront.net/js/reach\.js +# @@||cloudfront.net/assets/js/comscore_beacon.js?$domain=zap2it.com (easyprivacy.txt: 10358) +.cloudfront.net/assets/js/comscore_beacon\.js\? + +#ab2p-unblock-request-R416 +{-block \ + +client-header-tagger{ab2p-unblock-request-R416} \ +} +# @@||zillowstatic.com/c/*/linktrack.js$domain=zillow.com (easyprivacy.txt: 10814) +.zillowstatic.com/c/.*/linktrack\.js +# @@||js.dmtry.com/channel.js$domain=zillow.com (easyprivacy.txt: 10510) +.js.dmtry.com/channel\.js + +#ab2p-unblock-request-R417 +{-block \ + +client-header-tagger{ab2p-unblock-request-R417} \ +} +# @@||ghstatic.com/images/site/zylom/scripts/google-analytics.js?$domain=zylom.com (easyprivacy.txt: 10454) +.ghstatic.com/images/site/zylom/scripts/google-analytics\.js\? + +#ab2p-unblock-request-Xx +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx} \ +} +TAG:^ab2p-unblock-request-Xx$ +# @@||labrc.pw/advstats/$xmlhttprequest (easyprivacy.txt: 11067) +.labrc.pw/advstats/ +# @@||afisha.ru/proxy/videonetworkproxy.ashx?$xmlhttprequest (easyprivacy.txt: 11062) +.afisha.ru/proxy/videonetworkproxy\.ashx\? +# @@||amazonaws.com/static.madlan.co.il/*/heatmap.json?$xmlhttprequest (easyprivacy.txt: 11006) +.amazonaws.com/static\.madlan\.co\.il/.*/heatmap\.json\? +# @@||t-online.de/js/xtcore_t_online.js?$xmlhttprequest (easyprivacy.txt: 10920) +.t-online.de/js/xtcore_t_online\.js\? +# @@||css.ch/stats/tracker.js?$xmlhttprequest (easyprivacy.txt: 10866) +.css.ch/stats/tracker\.js\? +# @@||www.google.*/maps/preview/log204?$xmlhttprequest (easyprivacy.txt: 10803) +.www.google.*./(.*/)?maps/preview/log204\? +# @@||wired.com/wiredcms/chartbeat.json$xmlhttprequest (easyprivacy.txt: 10793) +.wired.com/wiredcms/chartbeat\.json +# @@||walmart.com^*/track?event=$xmlhttprequest (easyprivacy.txt: 10776) +.walmart.com/.*/track\?event= +# @@||verizon.com/images/track/track.gif?track=load&$xmlhttprequest (easyprivacy.txt: 10756) +.verizon.com/images/track/track\.gif\?track=load& +# @@||ups.com/WebTracking/$xmlhttprequest (easyprivacy.txt: 10742) +.ups.com/WebTracking/ +# @@||sh.st/bundles/smeadvertisement/img/track.gif?$xmlhttprequest (easyprivacy.txt: 10683) +.sh.st/bundles/smeadvertisement/img/track\.gif\? +# @@||service.collarity.com/cust/nbcu/ucs.js$xmlhttprequest (easyprivacy.txt: 10679) +.service.collarity.com/cust/nbcu/ucs\.js +# @@||maps.google.*/gen_204?$xmlhttprequest (easyprivacy.txt: 10547) +.maps.google.*./(.*/)?gen_204\? +# @@||mail.yahoo.com/neo/ymstat$xmlhttprequest (easyprivacy.txt: 10545) +.mail.yahoo.com/neo/ymstat +# @@||google.*/mapmaker/gen_204?$subdocument,xmlhttprequest (easyprivacy.txt: 10469) +.google.*./(.*/)?mapmaker/gen_204\? +# @@||fls-na.amazon.*/aiv-web-player/$xmlhttprequest (easyprivacy.txt: 10436) +.fls-na.amazon.*./(.*/)?aiv-web-player/ +# @@||cincinnatibell.net/images/track/track.gif?$xmlhttprequest (easyprivacy.txt: 10349) +.cincinnatibell.net/images/track/track\.gif\? +# @@||centurylink.net/images/track/track.gif?track=$xmlhttprequest (easyprivacy.txt: 10344) +.centurylink.net/images/track/track\.gif\?track= +# @@||bookmate.com^*/impressions?$xmlhttprequest (easyprivacy.txt: 10314) +.bookmate.com/.*/impressions\? +# @@||atlanticbb.net/images/track/track.gif?$xmlhttprequest (easyprivacy.txt: 10292) +.atlanticbb.net/images/track/track\.gif\? +# @@||arstechnica.com/services/incr.php?*=interactions.adblock-annoy.click$xmlhttprequest (easyprivacy.txt: 10288) +.arstechnica.com/services/incr\.php\?.*=interactions\.adblock-annoy\.click + +#ab2p-unblock-request-Xx-when-R116 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R116} \ +} +# @@||mixpanel.com/track/?data=$xmlhttprequest,domain=ads.twitter.com|change.org|greentoe.com|kickstarter.com|mint.com|nbc.com|thefrisky.com|vid.me (easyprivacy.txt: 10570) +.mixpanel.com/track/\?data= + +#ab2p-unblock-request-Xx-when-R125 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R125} \ +} +# @@/cdn-cgi/pe/bag2?*scorecardresearch.com$xmlhttprequest,domain=amypink.de|droid-life.com|mmanews.com|unilad.co.uk (easyprivacy.txt: 10245) +/(.*/)?cdn-cgi/pe/bag2\?.*scorecardresearch\.com + +#ab2p-unblock-request-Xx-when-R131 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R131} \ +} +# @@||yandex.ru/webvisor/$xmlhttprequest,domain=anoncer.net (easyprivacy.txt: 11073) +.yandex.ru/webvisor/ +# @@||yandex.ru/watch/$xmlhttprequest,domain=anoncer.net (easyprivacy.txt: 11072) +.yandex.ru/watch/ + +#ab2p-unblock-request-Xx-when-R192 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R192} \ +} +# @@||newsinc.com^*/getPlacements.js?pid=$xmlhttprequest,domain=csmonitor.com (easyprivacy.txt: 10601) +.newsinc.com/.*/getPlacements\.js\?pid= + +#ab2p-unblock-request-Xx-when-R203 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R203} \ +} +# @@||omnitagjs.com/fo-api/omniTag?$xmlhttprequest,domain=dl.free.fr (easyprivacy.txt: 10942) +.omnitagjs.com/fo-api/omniTag\? + +#ab2p-unblock-request-Xx-when-R211 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R211} \ +} +# @@||mixpanel.com/track/?data=$xmlhttprequest,domain=eloan.co.il (easyprivacy.txt: 11010) +.mixpanel.com/track/\?data= + +#ab2p-unblock-request-Xx-when-R16 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R16} \ +} +# @@||vupload-edge.facebook.com/ajax/video/upload/$xmlhttprequest,domain=facebook.com (easyprivacy.txt: 10772) +.vupload-edge.facebook.com/ajax/video/upload/ + +#ab2p-unblock-request-Xx-when-R244 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R244} \ +} +# @@||segment.io/v1/$xmlhttprequest,domain=greentoe.com|thescene.com (easyprivacy.txt: 10677) +.segment.io/v1/ + +#ab2p-unblock-request-Xx-when-R274 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R274} \ +} +# @@||geo.query.yahoo.com^$xmlhttprequest,domain=m.flickr.com (easyprivacy.txt: 10447) +.geo.query.yahoo.com + +#ab2p-unblock-request-Xx-when-R319 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R319} \ +} +# @@/cdn-cgi/pe/bag2?*geoiplookup$xmlhttprequest,domain=orain.org (easyprivacy.txt: 10238) +/(.*/)?cdn-cgi/pe/bag2\?.*geoiplookup + +#ab2p-unblock-request-Xx-when-R335 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R335} \ +} +# @@||dict.rambler.ru/fcgi-bin/$xmlhttprequest,domain=rambler.ru (easyprivacy.txt: 11063) +.dict.rambler.ru/fcgi-bin/ + +#ab2p-unblock-request-Xx-when-R362 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R362} \ +} +# @@||toshiba.com/images/track/track.gif?track=load&$xmlhttprequest,domain=start.toshiba.com (easyprivacy.txt: 10726) +.toshiba.com/images/track/track\.gif\?track=load& + +#ab2p-unblock-request-Xx-when-R397 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R397} \ +} +# @@||metrics-api.librato.com/v1/metrics$xmlhttprequest,domain=virginamerica.com (easyprivacy.txt: 10560) +.metrics-api.librato.com/v1/metrics + +#ab2p-unblock-request-Xx-when-R399 +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-R399} \ +} +# @@||demandbase.com^*/ip.json?$xmlhttprequest,domain=vmware.com (easyprivacy.txt: 10392) +.demandbase.com/.*/ip\.json\? + +#ab2p-unblock-request-Xx-when-nR-Rnt +{-block \ + +client-header-tagger{ab2p-unblock-request-Xx-when-Rnt} \ + +client-header-tagger{ab2p-unblock-request-Xx-when-nR} \ +} +# @@||hk.on.cc/hk/bkn/hitcount/web/js/hitCount_$~third-party,xmlhttprequest (easyprivacy.txt: 10964) +.hk.on.cc/hk/bkn/hitcount/web/js/hitCount_ + +#ab2p-unblock-request-nR-Rnt +{-block \ + +client-header-tagger{ab2p-unblock-request-Rnt} \ + +client-header-tagger{ab2p-unblock-request-nR} \ +} +# @@||aplus.com/p.gif?$~third-party (easyprivacy.txt: 10818) +.aplus.com/p\.gif\? +# @@||youtube.com/api/analytics/$~third-party (easyprivacy.txt: 10812) +.youtube.com/api/analytics/ +# @@||trackjs.com^$~third-party (easyprivacy.txt: 10731) +.trackjs.com +# @@||thetenthwatch.com/js/tracking.js$~third-party (easyprivacy.txt: 10724) +.thetenthwatch.com/js/tracking\.js +# @@||siteanalytics.compete.com^$~third-party (easyprivacy.txt: 10685) +.siteanalytics.compete.com +# @@||mightyspring.com/static/js/beacon.js?$~third-party (easyprivacy.txt: 10567) +.mightyspring.com/static/js/beacon\.js\? +# @@||metrics.mozilla.com^$~third-party (easyprivacy.txt: 10563) +.metrics.mozilla.com +# @@||lininteractive.com/chartbeat/$~third-party (easyprivacy.txt: 10527) +.lininteractive.com/chartbeat/ +# @@||google.com/analytics/js/analytics.min.js$~third-party (easyprivacy.txt: 10470) +.google.com/analytics/js/analytics\.min\.js +# @@||count.ly^$~third-party (easyprivacy.txt: 10371) +.count.ly +# @@||chartbeat.com/*/chartbeat/$~third-party (easyprivacy.txt: 10346) +.chartbeat.com/.*/chartbeat/ +# @@||beplb01.nexus.hewitt.com/analytics?$~third-party (easyprivacy.txt: 10305) +.beplb01.nexus.hewitt.com/analytics\? +# @@/wp-content/plugins/google-analytics-dashboard-for-wp/*$~third-party (easyprivacy.txt: 10249) +/(.*/)?wp-content/plugins/google-analytics-dashboard-for-wp/.* + +#ab2p-unblock-xframe +{-server-header-filter{ab2p-xframe-filter} \ +} +TAG:^ab2p-unblock-xframe$ +# @@||widget.myrentacar.me^$script,subdocument (easyprivacy.txt: 11070) +.widget.myrentacar.me +# @@||luminate.com/order/$subdocument (easyprivacy.txt: 10540) +.luminate.com/order/ +# @@||lesacasino.com^*/EMERPEventCollector.$script,subdocument (easyprivacy.txt: 10525) +.lesacasino.com/.*/EMERPEventCollector\. +# @@||google.*/mapmaker/gen_204?$subdocument,xmlhttprequest (easyprivacy.txt: 10469) +.google.*./(.*/)?mapmaker/gen_204\? +# @@||beatthetraffic.com/traffic/?partner=$subdocument (easyprivacy.txt: 10302) +.beatthetraffic.com/traffic/\?partner= +# @@||aol.com/mm_track/slideshow/$subdocument (easyprivacy.txt: 10279) +.aol.com/mm_track/slideshow/ + +#ab2p-unblock-xframe-R4 +{+client-header-tagger{ab2p-unblock-xframe-R4} \ +} +# @@||sitestat.com/europcar/europcar-de/*&ns_url=http://microsite.europcar.com/deutschebahn/$subdocument,domain=bahn.de (easyprivacy.txt: 10908) +.sitestat.com/europcar/europcar-de/.*&ns_url=http://microsite\.europcar\.com/deutschebahn/ + +#ab2p-unblock-xframe-R5 +{+client-header-tagger{ab2p-unblock-xframe-R5} \ +} +# @@||switch.atdmt.com/iaction/$subdocument,domain=bestbuy.com (easyprivacy.txt: 10707) +.switch.atdmt.com/iaction/ + +#ab2p-unblock-xframe-R208 +{+client-header-tagger{ab2p-unblock-xframe-R208} \ +} +# @@||dtdc.in/tracking/tracking_results_$subdocument,domain=dtdc.com (easyprivacy.txt: 10403) +.dtdc.in/tracking/tracking_results_ + +#ab2p-unblock-xframe-R241 +{+client-header-tagger{ab2p-unblock-xframe-R241} \ +} +# @@||trc.taboola.com/*/log/3/available|$subdocument,domain=globes.co.il (easyprivacy.txt: 10732) +.trc.taboola.com/.*/log/3/available$ + +#ab2p-unblock-xframe-R245 +{+client-header-tagger{ab2p-unblock-xframe-R245} \ +} +# @@||belboon.de/adtracking/$subdocument,domain=gutscheindoktor.de|preis-vergleich.tv|preismafia.com (easyprivacy.txt: 10858) +.belboon.de/adtracking/ + +#ab2p-unblock-xframe-R256 +{+client-header-tagger{ab2p-unblock-xframe-R256} \ +} +# @@||trc.taboola.com/inncoil/log/3/available$subdocument,domain=inn.co.il (easyprivacy.txt: 11015) +.trc.taboola.com/inncoil/log/3/available + +#ab2p-unblock-xframe-R294 +{+client-header-tagger{ab2p-unblock-xframe-R294} \ +} +# @@||demdex.net/dest4.html?d_nsid=$subdocument,domain=multipack.com.mx (easyprivacy.txt: 10393) +.demdex.net/dest4\.html\?d_nsid= + +#ab2p-unblock-xframe-R298 +{+client-header-tagger{ab2p-unblock-xframe-R298} \ +} +# @@||webtrends.com^*/events.svc$subdocument,domain=mycokerewards.com (easyprivacy.txt: 10783) +.webtrends.com/.*/events\.svc + +#ab2p-unblock-xframe-R333 +{+client-header-tagger{ab2p-unblock-xframe-R333} \ +} +# @@||belboon.de/clickout.php?$subdocument,domain=preis-vergleich.tv (easyprivacy.txt: 10859) +.belboon.de/clickout\.php\? + +#ab2p-unblock-xframe-R349 +{+client-header-tagger{ab2p-unblock-xframe-R349} \ +} +# @@||pixel.fetchback.com^$subdocument,domain=sears.com (easyprivacy.txt: 10637) +.pixel.fetchback.com + +#ab2p-unblock-xframe-R408 +{+client-header-tagger{ab2p-unblock-xframe-R408} \ +} +# @@||ad.zanox.com/ppc/$subdocument,domain=wisedock.at|wisedock.co.uk|wisedock.com|wisedock.de|wisedock.eu (easyprivacy.txt: 10255) +.ad.zanox.com/ppc/ + +#ab2p-unblock-xframe-R416 +{+client-header-tagger{ab2p-unblock-xframe-R416} \ +} +# @@||tags.bluekai.com/site/*?ret=$subdocument,domain=zillow.com (easyprivacy.txt: 10711) +.tags.bluekai.com/site/.*\?ret= diff --git a/1_9.r18_plugin/ad_plug/rule2/ab2p.filter b/1_9.r18_plugin/ad_plug/rule2/ab2p.filter new file mode 100644 index 0000000..b6ae446 --- /dev/null +++ b/1_9.r18_plugin/ad_plug/rule2/ab2p.filter @@ -0,0 +1,3935 @@ +#AbBlock generated filters -- don't edit -- +#----- source ----- +#Title: EasyPrivacy +#Url: https://easylist-downloads.adblockplus.org/easyprivacy.txt +#Last modified: 29 Jan 2016 16:01 UTC +#Expires: 96 hours +#Version: 201601291601 +#License: https://easylist-downloads.adblockplus.org/COPYING +#Homepage: https://easylist.adblockplus.org/ +#------- end ------ + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R1 +s@^referer(?=:[^\n]*[./](?:9gag\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R10 +s@^referer(?=:[^\n]*[./](?:comunio\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R11 +s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R12 +s@^referer(?=:[^\n]*[./](?:denverpost\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R13 +s@^referer(?=:[^\n]*[./](?:digitalspy\.ca|digitalspy\.co\.nz|digitalspy\.co\.uk|digitalspy\.com|digitalspy\.com\.au|digitalspy\.ie)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R14 +s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R15 +s@^referer(?=:[^\n]*[./](?:elmundo\.es|marca\.com|tiramillas\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R16 +s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R17 +s@^referer(?=:[^\n]*[./](?:fanfiktion\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R18 +s@^referer(?=:[^\n]*[./](?:feedcat\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R19 +s@^referer(?=:[^\n]*[./](?:focus\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R2 +s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R20 +s@^referer(?=:[^\n]*[./](?:gamestar\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R21 +s@^referer(?=:[^\n]*[./](?:haaretz\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R22 +s@^referer(?=:[^\n]*[./](?:hitfix\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R23 +s@^referer(?=:[^\n]*[./](?:hulu\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R24 +s@^referer(?=:[^\n]*[./](?:imdb\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R25 +s@^referer(?=:[^\n]*[./](?:lowes\.ca)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R26 +s@^referer(?=:[^\n]*[./](?:mercurynews\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R27 +s@^referer(?=:[^\n]*[./](?:metro\.co\.uk)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R28 +s@^referer(?=:[^\n]*[./](?:msn\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R29 +s@^referer(?=:[^\n]*[./](?:notebookcheck\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R3 +s@^referer(?=:[^\n]*[./](?:americanexpress\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R30 +s@^referer(?=:[^\n]*[./](?:otterbox\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R31 +s@^referer(?=:[^\n]*[./](?:outbrain\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R32 +s@^referer(?=:[^\n]*[./](?:pasadenastarnews\.com|presstelegram\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R33 +s@^referer(?=:[^\n]*[./](?:paypal\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R34 +s@^referer(?=:[^\n]*[./](?:planetsnow\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R35 +s@^referer(?=:[^\n]*[./](?:prosieben\.at|prosieben\.ch|prosieben\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R36 +s@^referer(?=:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R37 +s@^referer(?=:[^\n]*[./](?:searchguide\.level3\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R38 +s@^referer(?=:[^\n]*[./](?:seattletimes\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R39 +s@^referer(?=:[^\n]*[./](?:serve\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R4 +s@^referer(?=:[^\n]*[./](?:bahn\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R40 +s@^referer(?=:[^\n]*[./](?:si\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R41 +s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R42 +s@^referer(?=:[^\n]*[./](?:slickdeals\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R43 +s@^referer(?=:[^\n]*[./](?:sourceforge\.net)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R44 +s@^referer(?=:[^\n]*[./](?:spreaker\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R45 +s@^referer(?=:[^\n]*[./](?:theverge\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R46 +s@^referer(?=:[^\n]*[./](?:tudou\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R47 +s@^referer(?=:[^\n]*[./](?:tvspielfilm\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R48 +s@^referer(?=:[^\n]*[./](?:unblocked\.la)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R49 +s@^referer(?=:[^\n]*[./](?:vzaar\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R5 +s@^referer(?=:[^\n]*[./](?:bestbuy\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R50 +s@^referer(?=:[^\n]*[./](?:wat\.tv)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R51 +s@^referer(?=:[^\n]*[./](?:wetter\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R52 +s@^referer(?=:[^\n]*[./](?:woxikon\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R53 +s@^referer(?=:[^\n]*[./](?:yonhapnews\.co\.kr)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R6 +s@^referer(?=:[^\n]*[./](?:bluray-disc\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R7 +s@^referer(?=:[^\n]*[./](?:boote-forum\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R8 +s@^referer(?=:[^\n]*[./](?:buysubscriptions\.com|cbsnews\.com|cbssports\.com|cnet\.com|dailystar\.co\.uk|express\.co\.uk|gamerant\.com|gamespot\.com|inyt\.com|metrolyrics\.com|rotoworld\.com|sh\.st|thesun\.co\.uk|thesundaytimes\.co\.uk|thetimes\.co\.uk|zdnet\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-R9 +s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn54 +s@^referer(?!:[^\n]*[./](?:538group\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn55 +s@^referer(?!:[^\n]*[./](?:adult\.sites\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn56 +s@^referer(?!:[^\n]*[./](?:amazon\.cdn\.ip\.seen\.on\.cheapflight)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn57 +s@^referer(?!:[^\n]*[./](?:amazon\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn58 +s@^referer(?!:[^\n]*[./](?:awempire\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn59 +s@^referer(?!:[^\n]*[./](?:baidu\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn60 +s@^referer(?!:[^\n]*[./](?:caixin\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn61 +s@^referer(?!:[^\n]*[./](?:cast-tv\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn62 +s@^referer(?!:[^\n]*[./](?:crosspixelmedia\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn63 +s@^referer(?!:[^\n]*[./](?:daum\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn64 +s@^referer(?!:[^\n]*[./](?:dropped\.pl\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn65 +s@^referer(?!:[^\n]*[./](?:etahub\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn66 +s@^referer(?!:[^\n]*[./](?:fc2\.jp\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn67 +s@^referer(?!:[^\n]*[./](?:gatehousenewsservice\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn68 +s@^referer(?!:[^\n]*[./](?:informer\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn69 +s@^referer(?!:[^\n]*[./](?:ipcounter\.de\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn70 +s@^referer(?!:[^\n]*[./](?:keen\.github\.io|keen\.io)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn71 +s@^referer(?!:[^\n]*[./](?:metrigo\.de)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn72 +s@^referer(?!:[^\n]*[./](?:miniclip\.com)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn73 +s@^referer(?!:[^\n]*[./](?:newjerseynewsroom\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn74 +s@^referer(?!:[^\n]*[./](?:peoplesdaily\.cn\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn75 +s@^referer(?!:[^\n]*[./](?:piwik\.org)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn76 +s@^referer(?!:[^\n]*[./](?:racinguk\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn77 +s@^referer(?!:[^\n]*[./](?:sat24\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn78 +s@^referer(?!:[^\n]*[./](?:sevenload\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn79 +s@^referer(?!:[^\n]*[./](?:shanghaidaily\.cn\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn80 +s@^referer(?!:[^\n]*[./](?:skytide\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn81 +s@^referer(?!:[^\n]*[./](?:statistik\.lubw\.baden-wuerttemberg\.de\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn82 +s@^referer(?!:[^\n]*[./](?:stream5\.tv\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn83 +s@^referer(?!:[^\n]*[./](?:thedailybeast\.com\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn84 +s@^referer(?!:[^\n]*[./](?:tritondigital\.net\.ip)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-dnt-Rn85 +s@^referer(?!:[^\n]*[./](?:utoronto\.ca)):.*@ab2p-block-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R1 +s@^referer(?=:[^\n]*[./](?:9gag\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R10 +s@^referer(?=:[^\n]*[./](?:comunio\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R11 +s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R12 +s@^referer(?=:[^\n]*[./](?:denverpost\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R13 +s@^referer(?=:[^\n]*[./](?:digitalspy\.ca|digitalspy\.co\.nz|digitalspy\.co\.uk|digitalspy\.com|digitalspy\.com\.au|digitalspy\.ie)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R14 +s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R15 +s@^referer(?=:[^\n]*[./](?:elmundo\.es|marca\.com|tiramillas\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R16 +s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R17 +s@^referer(?=:[^\n]*[./](?:fanfiktion\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R18 +s@^referer(?=:[^\n]*[./](?:feedcat\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R19 +s@^referer(?=:[^\n]*[./](?:focus\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R2 +s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R20 +s@^referer(?=:[^\n]*[./](?:gamestar\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R21 +s@^referer(?=:[^\n]*[./](?:haaretz\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R22 +s@^referer(?=:[^\n]*[./](?:hitfix\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R23 +s@^referer(?=:[^\n]*[./](?:hulu\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R24 +s@^referer(?=:[^\n]*[./](?:imdb\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R25 +s@^referer(?=:[^\n]*[./](?:lowes\.ca)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R26 +s@^referer(?=:[^\n]*[./](?:mercurynews\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R27 +s@^referer(?=:[^\n]*[./](?:metro\.co\.uk)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R28 +s@^referer(?=:[^\n]*[./](?:msn\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R29 +s@^referer(?=:[^\n]*[./](?:notebookcheck\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R3 +s@^referer(?=:[^\n]*[./](?:americanexpress\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R30 +s@^referer(?=:[^\n]*[./](?:otterbox\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R31 +s@^referer(?=:[^\n]*[./](?:outbrain\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R32 +s@^referer(?=:[^\n]*[./](?:pasadenastarnews\.com|presstelegram\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R33 +s@^referer(?=:[^\n]*[./](?:paypal\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R34 +s@^referer(?=:[^\n]*[./](?:planetsnow\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R35 +s@^referer(?=:[^\n]*[./](?:prosieben\.at|prosieben\.ch|prosieben\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R36 +s@^referer(?=:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R37 +s@^referer(?=:[^\n]*[./](?:searchguide\.level3\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R38 +s@^referer(?=:[^\n]*[./](?:seattletimes\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R39 +s@^referer(?=:[^\n]*[./](?:serve\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R4 +s@^referer(?=:[^\n]*[./](?:bahn\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R40 +s@^referer(?=:[^\n]*[./](?:si\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R41 +s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R42 +s@^referer(?=:[^\n]*[./](?:slickdeals\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R43 +s@^referer(?=:[^\n]*[./](?:sourceforge\.net)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R44 +s@^referer(?=:[^\n]*[./](?:spreaker\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R45 +s@^referer(?=:[^\n]*[./](?:theverge\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R46 +s@^referer(?=:[^\n]*[./](?:tudou\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R47 +s@^referer(?=:[^\n]*[./](?:tvspielfilm\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R48 +s@^referer(?=:[^\n]*[./](?:unblocked\.la)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R49 +s@^referer(?=:[^\n]*[./](?:vzaar\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R5 +s@^referer(?=:[^\n]*[./](?:bestbuy\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R50 +s@^referer(?=:[^\n]*[./](?:wat\.tv)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R51 +s@^referer(?=:[^\n]*[./](?:wetter\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R52 +s@^referer(?=:[^\n]*[./](?:woxikon\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R53 +s@^referer(?=:[^\n]*[./](?:yonhapnews\.co\.kr)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R6 +s@^referer(?=:[^\n]*[./](?:bluray-disc\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R7 +s@^referer(?=:[^\n]*[./](?:boote-forum\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R8 +s@^referer(?=:[^\n]*[./](?:buysubscriptions\.com|cbsnews\.com|cbssports\.com|cnet\.com|dailystar\.co\.uk|express\.co\.uk|gamerant\.com|gamespot\.com|inyt\.com|metrolyrics\.com|rotoworld\.com|sh\.st|thesun\.co\.uk|thesundaytimes\.co\.uk|thetimes\.co\.uk|zdnet\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-R9 +s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn54 +s@^referer(?!:[^\n]*[./](?:538group\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn55 +s@^referer(?!:[^\n]*[./](?:adult\.sites\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn56 +s@^referer(?!:[^\n]*[./](?:amazon\.cdn\.ip\.seen\.on\.cheapflight)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn57 +s@^referer(?!:[^\n]*[./](?:amazon\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn58 +s@^referer(?!:[^\n]*[./](?:awempire\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn59 +s@^referer(?!:[^\n]*[./](?:baidu\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn60 +s@^referer(?!:[^\n]*[./](?:caixin\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn61 +s@^referer(?!:[^\n]*[./](?:cast-tv\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn62 +s@^referer(?!:[^\n]*[./](?:crosspixelmedia\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn63 +s@^referer(?!:[^\n]*[./](?:daum\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn64 +s@^referer(?!:[^\n]*[./](?:dropped\.pl\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn65 +s@^referer(?!:[^\n]*[./](?:etahub\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn66 +s@^referer(?!:[^\n]*[./](?:fc2\.jp\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn67 +s@^referer(?!:[^\n]*[./](?:gatehousenewsservice\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn68 +s@^referer(?!:[^\n]*[./](?:informer\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn69 +s@^referer(?!:[^\n]*[./](?:ipcounter\.de\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn70 +s@^referer(?!:[^\n]*[./](?:keen\.github\.io|keen\.io)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn71 +s@^referer(?!:[^\n]*[./](?:metrigo\.de)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn72 +s@^referer(?!:[^\n]*[./](?:miniclip\.com)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn73 +s@^referer(?!:[^\n]*[./](?:newjerseynewsroom\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn74 +s@^referer(?!:[^\n]*[./](?:peoplesdaily\.cn\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn75 +s@^referer(?!:[^\n]*[./](?:piwik\.org)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn76 +s@^referer(?!:[^\n]*[./](?:racinguk\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn77 +s@^referer(?!:[^\n]*[./](?:sat24\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn78 +s@^referer(?!:[^\n]*[./](?:sevenload\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn79 +s@^referer(?!:[^\n]*[./](?:shanghaidaily\.cn\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn80 +s@^referer(?!:[^\n]*[./](?:skytide\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn81 +s@^referer(?!:[^\n]*[./](?:statistik\.lubw\.baden-wuerttemberg\.de\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn82 +s@^referer(?!:[^\n]*[./](?:stream5\.tv\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn83 +s@^referer(?!:[^\n]*[./](?:thedailybeast\.com\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn84 +s@^referer(?!:[^\n]*[./](?:tritondigital\.net\.ip)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-elem-Rn85 +s@^referer(?!:[^\n]*[./](?:utoronto\.ca)):.*@ab2p-block-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aachijmosv +s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript|image\/|\/css|video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream|\/html|\/xml)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaijsv +s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaiov +s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaiov-Caiov-when-Rnt +s@^referer:.*@$&\t$host@Di +s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaiov-Caiov@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R46 +s@^referer(?=:[^\n]*[./](?:tudou\.com)):.*@ab2p-block-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-R49 +s@^referer(?=:[^\n]*[./](?:vzaar\.com)):.*@ab2p-block-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aaov-Caov-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aaov-Caov@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aasv +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai +s@^accept(?=:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-R37 +s@^referer(?=:[^\n]*[./](?:searchguide\.level3\.com)):.*@ab2p-block-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ai-Ci-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Ai-Ci@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aij +s@^accept(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj +s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-R8 +s@^referer(?=:[^\n]*[./](?:buysubscriptions\.com|cbsnews\.com|cbssports\.com|cnet\.com|dailystar\.co\.uk|express\.co\.uk|gamerant\.com|gamespot\.com|inyt\.com|metrolyrics\.com|rotoworld\.com|sh\.st|thesun\.co\.uk|thesundaytimes\.co\.uk|thetimes\.co\.uk|zdnet\.com)):.*@ab2p-block-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-Rn75 +s@^referer(?!:[^\n]*[./](?:piwik\.org)):.*@ab2p-block-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Aj-Cj-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Aj-Cj@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anahmov +s@^accept(?!:[\s\w]*(?:\/html|\/xml|video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anahmov-Cnahmov-Xx-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anahmov-Cnahmov-Xx@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anaov +s@^accept(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anasv +s@^accept(?!:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhim +s@^accept(?!:[\s\w]*(?:\/html|\/xml|image\/)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhim-Cnhim-Xx-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhim-Cnhim-Xx@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhjm +s@^accept(?!:[\s\w]*(?:\/html|\/xml|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhjm-Cnhjm-Xx-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhjm-Cnhjm-Xx@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm +s@^accept(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-R86t +s@^referer:.*@$&\t$host@Di +s@^referer(?=:[^\n]*[./](?:feedcat\.net))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn100t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:metrigo\.de))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn101t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:newjerseynewsroom\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn102t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:peoplesdaily\.cn\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn103t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:sat24\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn104t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:shanghaidaily\.cn\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn105t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:skytide\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn106t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:statistik\.lubw\.baden-wuerttemberg\.de\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn107t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:stream5\.tv\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn108t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:thedailybeast\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn109t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:tritondigital\.net\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn87t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:538group\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn88t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:adult\.sites\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn89t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:amazon\.cdn\.ip\.seen\.on\.cheapflight))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn90t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:awempire\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn91t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:baidu\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn92t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:cast-tv\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn93t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:crosspixelmedia\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn94t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:dropped\.pl\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn95t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:etahub\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn96t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:gatehousenewsservice\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn97t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:informer\.com\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn98t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:ipcounter\.de\.ip))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rn99t +s@^referer:.*@$&\t$host@Di +s@^referer(?!:[^\n]*[./](?:keen\.github\.io|keen\.io))(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anhm-Cnhm-when-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request-Anhm-Cnhm@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Ani +s@^accept(?!:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Anj +s@^accept(?!:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cachijmosv +s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript|image\/|\/css|video\/|audio\/|\/(?:x-)?shockwave-flash|\/octet-stream|\/html|\/xml)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Caijsv +s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/(?:x-)?shockwave-flash|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Caiov +s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Caov +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Casv +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Ci +s@^content-type(?=:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cij +s@^content-type(?=:[\s\w]*(?:image\/|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cj +s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnahmov +s@^content-type(?!:[\s\w]*(?:\/html|\/xml|video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnaov +s@^content-type(?!:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnasv +s@^content-type(?!:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnhim +s@^content-type(?!:[\s\w]*(?:\/html|\/xml|image\/)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnhjm +s@^content-type(?!:[\s\w]*(?:\/html|\/xml|\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnhm +s@^content-type(?!:[\s\w]*(?:\/html|\/xml)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cni +s@^content-type(?!:[\s\w]*(?:image\/)):.*@ab2p-block-request@Ti + +SERVER-HEADER-TAGGER: ab2p-block-request-Cnj +s@^content-type(?!:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R1 +s@^referer(?=:[^\n]*[./](?:9gag\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R10 +s@^referer(?=:[^\n]*[./](?:comunio\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R11 +s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R12 +s@^referer(?=:[^\n]*[./](?:denverpost\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R13 +s@^referer(?=:[^\n]*[./](?:digitalspy\.ca|digitalspy\.co\.nz|digitalspy\.co\.uk|digitalspy\.com|digitalspy\.com\.au|digitalspy\.ie)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R14 +s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R15 +s@^referer(?=:[^\n]*[./](?:elmundo\.es|marca\.com|tiramillas\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R16 +s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R17 +s@^referer(?=:[^\n]*[./](?:fanfiktion\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R19 +s@^referer(?=:[^\n]*[./](?:focus\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R2 +s@^referer(?=:[^\n]*[./](?:abc\.go\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R20 +s@^referer(?=:[^\n]*[./](?:gamestar\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R21 +s@^referer(?=:[^\n]*[./](?:haaretz\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R22 +s@^referer(?=:[^\n]*[./](?:hitfix\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R23 +s@^referer(?=:[^\n]*[./](?:hulu\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R24 +s@^referer(?=:[^\n]*[./](?:imdb\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R25 +s@^referer(?=:[^\n]*[./](?:lowes\.ca)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R26 +s@^referer(?=:[^\n]*[./](?:mercurynews\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R27 +s@^referer(?=:[^\n]*[./](?:metro\.co\.uk)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R28 +s@^referer(?=:[^\n]*[./](?:msn\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R29 +s@^referer(?=:[^\n]*[./](?:notebookcheck\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R3 +s@^referer(?=:[^\n]*[./](?:americanexpress\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R30 +s@^referer(?=:[^\n]*[./](?:otterbox\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R31 +s@^referer(?=:[^\n]*[./](?:outbrain\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R32 +s@^referer(?=:[^\n]*[./](?:pasadenastarnews\.com|presstelegram\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R33 +s@^referer(?=:[^\n]*[./](?:paypal\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R34 +s@^referer(?=:[^\n]*[./](?:planetsnow\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R35 +s@^referer(?=:[^\n]*[./](?:prosieben\.at|prosieben\.ch|prosieben\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R36 +s@^referer(?=:[^\n]*[./](?:search\.yahoo\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R38 +s@^referer(?=:[^\n]*[./](?:seattletimes\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R39 +s@^referer(?=:[^\n]*[./](?:serve\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R4 +s@^referer(?=:[^\n]*[./](?:bahn\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R40 +s@^referer(?=:[^\n]*[./](?:si\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R41 +s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R42 +s@^referer(?=:[^\n]*[./](?:slickdeals\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R43 +s@^referer(?=:[^\n]*[./](?:sourceforge\.net)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R44 +s@^referer(?=:[^\n]*[./](?:spreaker\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R45 +s@^referer(?=:[^\n]*[./](?:theverge\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R47 +s@^referer(?=:[^\n]*[./](?:tvspielfilm\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R48 +s@^referer(?=:[^\n]*[./](?:unblocked\.la)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R5 +s@^referer(?=:[^\n]*[./](?:bestbuy\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R51 +s@^referer(?=:[^\n]*[./](?:wetter\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R52 +s@^referer(?=:[^\n]*[./](?:woxikon\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R53 +s@^referer(?=:[^\n]*[./](?:yonhapnews\.co\.kr)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R6 +s@^referer(?=:[^\n]*[./](?:bluray-disc\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R7 +s@^referer(?=:[^\n]*[./](?:boote-forum\.de)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-R9 +s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn57 +s@^referer(?!:[^\n]*[./](?:amazon\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn60 +s@^referer(?!:[^\n]*[./](?:caixin\.com\.ip)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn63 +s@^referer(?!:[^\n]*[./](?:daum\.ip)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn66 +s@^referer(?!:[^\n]*[./](?:fc2\.jp\.ip)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn72 +s@^referer(?!:[^\n]*[./](?:miniclip\.com)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn75 +s@^referer(?!:[^\n]*[./](?:piwik\.org)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn76 +s@^referer(?!:[^\n]*[./](?:racinguk\.ip)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn78 +s@^referer(?!:[^\n]*[./](?:sevenload\.com\.ip)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rn85 +s@^referer(?!:[^\n]*[./](?:utoronto\.ca)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Rnt +s@^referer:.*@$&\t$host@Di +s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-request@i + +CLIENT-HEADER-TAGGER: ab2p-block-request-Xnx +s@^x-requested-with(?!:\s*(?:xmlhttprequest)):.*@ab2p-block-request@Ti +s@^x-requested-with:.*@-ab2p-block-request-nX@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Xx +s@^x-requested-with(?=:\s*(?:xmlhttprequest)):.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-Xx-when-R50 +s@^referer(?=:[^\n]*[./](?:wat\.tv)):.*@ab2p-block-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-request-nX +s@^.*@ab2p-block-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-block-xframe-Rt +s@^referer:.*@$&\t$host@Di +s@^referer(?!:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-block-xframe@i + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R11 +s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R110 +s@^referer(?=:[^\n]*[./](?:24ace\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R111 +s@^referer(?=:[^\n]*[./](?:3bmeteo\.com|quotidiano\.net|radioitalia\.it)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R112 +s@^referer(?=:[^\n]*[./](?:abcnews\.go\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R113 +s@^referer(?=:[^\n]*[./](?:abp\.nl)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R114 +s@^referer(?=:[^\n]*[./](?:acehardware\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R115 +s@^referer(?=:[^\n]*[./](?:adidas\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R116 +s@^referer(?=:[^\n]*[./](?:ads\.twitter\.com|change\.org|greentoe\.com|kickstarter\.com|mint\.com|nbc\.com|thefrisky\.com|vid\.me)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R117 +s@^referer(?=:[^\n]*[./](?:afternic\.com|amctv\.com|bebo\.com|ch10\.co\.il|cliphunter\.com|daemon-tools\.cc|desigual\.com|gamepix\.com|greentoe\.com|housing\.wisc\.edu|infogr\.am|jackbox\.tv|keygames\.com|manowthaimordialloc\.com\.au|maxiclimber\.com|orbitum\.com|pluto\.tv|rebtel\.com|sbnation\.com|sci2\.tv|seatgeek\.com|support\.amd\.com|tagheuer\.com\.au|tv10play\.se|tv3play\.se|tv6play\.se|tv8play\.se|video\.pbs\.org|vox\.com|vpnster\.com|weather\.gov|westernunion\.at|westernunion\.be|westernunion\.ca|westernunion\.ch|westernunion\.cl|westernunion\.co\.jp|westernunion\.co\.nz|westernunion\.co\.uk|westernunion\.co\.za|westernunion\.com|westernunion\.com\.au|westernunion\.com\.co|westernunion\.com\.hk|westernunion\.com\.my|westernunion\.com\.pe|westernunion\.de|westernunion\.fr|westernunion\.ie|westernunion\.it|westernunion\.nl|westernunion\.ph|westernunion\.pl|westernunion\.se|westernunion\.sg|www\.google\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R118 +s@^referer(?=:[^\n]*[./](?:agame\.com|allrecipes\.com|amctv\.com|apl\.tv|babycenter\.com|bonappetit\.com|calgaryherald\.com|canada\.com|cbc\.ca|dailymail\.co\.uk|deviantart\.com|discovery\.com|edmontonjournal\.com|fastcompany\.com|financialpost\.com|firstwefeast\.com|hitfix\.com|huffingtonpost\.com|landandfarm\.com|last\.fm|leaderpost\.com|m\.tmz\.com|montrealgazette\.com|nationalpost\.com|newsday\.com|ottawacitizen\.com|outsideonline\.com|radaronline\.com|salon\.com|sci2\.tv|syfy\.com|theprovince\.com|thestar\.com|thestarphoenix\.com|thinkatheist\.com|vancouversun\.com|windsorstar\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R119 +s@^referer(?=:[^\n]*[./](?:aim\.com|autoblog\.com|autos\.aol\.com|engadget\.com|mapquest\.com|video\.aol\.com|www\.aol\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R120 +s@^referer(?=:[^\n]*[./](?:aljazeera\.com|ballerstatus\.com|bikemap\.net|carltonjordan\.com|cashu\.com|coolsport\.tv|dereon\.com|dr\.dk|everydaysource\.com|fab\.com|girlgames4u\.com|incgamers\.com|ip-address\.cc|maaduu\.com|qatarairways\.com|sat-direction\.com|sotctours\.com|stoli\.com|vibe\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R121 +s@^referer(?=:[^\n]*[./](?:amazingpics\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R122 +s@^referer(?=:[^\n]*[./](?:amctv\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R123 +s@^referer(?=:[^\n]*[./](?:americanexpress\.com|caranddriver\.com|citizensbank\.com|dell\.com|homedepot\.com|staples\.com|t-mobile\.com|target\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R124 +s@^referer(?=:[^\n]*[./](?:amypink\.de|biznews\.com|cryptospot\.me|droid-life\.com|forwardprogressives\.com|fpif\.org|fullpotentialma\.com|geekzone\.co\.nz|goldsday\.com|imageupload\.co\.uk|is-arquitectura\.es|mmanews\.com|orain\.org|tvunblock\.com|unilad\.co\.uk|xrussianteens\.com|youngcons\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R125 +s@^referer(?=:[^\n]*[./](?:amypink\.de|droid-life\.com|mmanews\.com|unilad\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R126 +s@^referer(?=:[^\n]*[./](?:analytics\.twitter\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R127 +s@^referer(?=:[^\n]*[./](?:ancestry\.co\.uk|ancestry\.com|ancestry\.com\.au|ancestry\.it|blogtalkradio\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R128 +s@^referer(?=:[^\n]*[./](?:ancestry\.com|billetnet\.dk|billettservice\.no|lippupalvelu\.fi|macworld\.com|pcworld\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se|wsj\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R129 +s@^referer(?=:[^\n]*[./](?:ancestry\.com|billetnet\.dk|billettservice\.no|lippupalvelu\.fi|pcworld\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se|wsj\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R130 +s@^referer(?=:[^\n]*[./](?:android\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R131 +s@^referer(?=:[^\n]*[./](?:anoncer\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R132 +s@^referer(?=:[^\n]*[./](?:anoncer\.net|tv\.yandex\.ru)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R133 +s@^referer(?=:[^\n]*[./](?:ap\.org|newsinc\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R134 +s@^referer(?=:[^\n]*[./](?:apotheken-umschau\.de|compo-hobby\.de|diabetes-ratgeber\.net|giz\.de|kaguma\.com|krombacher\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R135 +s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R136 +s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com|caranddriver\.com|g4tv\.com|nymag\.com|salon\.com|theblaze\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R137 +s@^referer(?=:[^\n]*[./](?:architizer\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R138 +s@^referer(?=:[^\n]*[./](?:ardmediathek\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R139 +s@^referer(?=:[^\n]*[./](?:arte\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R14 +s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R140 +s@^referer(?=:[^\n]*[./](?:asana\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R141 +s@^referer(?=:[^\n]*[./](?:associatedcontent\.com|cbs\.com|cbsatlanta\.com|centurylink\.net|comedy\.com|eurweb\.com|fox5vegas\.com|foxcarolina\.com|grabnetworks\.com|kctv5\.com|kpho\.com|kptv\.com|theimproper\.com|thenewsroom\.com|tv\.com|tvguide\.com|wfsb\.com|wnem\.com|wsmv\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R142 +s@^referer(?=:[^\n]*[./](?:att\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R143 +s@^referer(?=:[^\n]*[./](?:au\.launch\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R144 +s@^referer(?=:[^\n]*[./](?:autoblog\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R145 +s@^referer(?=:[^\n]*[./](?:autoblog\.com|autos\.aol\.com|dailyfinance\.com|moviefone\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R146 +s@^referer(?=:[^\n]*[./](?:autoblog\.com|dailyfinance\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R147 +s@^referer(?=:[^\n]*[./](?:automatensuche\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R148 +s@^referer(?=:[^\n]*[./](?:autorevue\.cz|e15\.cz|mobilmania\.cz|sportrevue\.cz|zive\.cz)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R149 +s@^referer(?=:[^\n]*[./](?:axure\.com|chocomaru\.com|denverbroncos\.com|muselive\.com|streetfire\.net|wickedthemusical\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R150 +s@^referer(?=:[^\n]*[./](?:badische-zeitung\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R151 +s@^referer(?=:[^\n]*[./](?:barbie\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R152 +s@^referer(?=:[^\n]*[./](?:barclaycard\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R153 +s@^referer(?=:[^\n]*[./](?:bbm\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R154 +s@^referer(?=:[^\n]*[./](?:bebo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R155 +s@^referer(?=:[^\n]*[./](?:bebo\.com|rebtel\.com|support\.amd\.com|vox\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R156 +s@^referer(?=:[^\n]*[./](?:betabeat\.com|couriermail\.com\.au|financialpost\.com|wcpo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R157 +s@^referer(?=:[^\n]*[./](?:bienpublic\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R158 +s@^referer(?=:[^\n]*[./](?:billetnet\.dk|billettservice\.no|citibank\.co\.in|goal\.com|lippupalvelu\.fi|pcworld\.com|riverisland\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R159 +s@^referer(?=:[^\n]*[./](?:bing\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R16 +s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R160 +s@^referer(?=:[^\n]*[./](?:blog\.cloudflare\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R161 +s@^referer(?=:[^\n]*[./](?:bloomberg\.com|breitbart\.com|breitbart\.tv|nme\.com|slatev\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R162 +s@^referer(?=:[^\n]*[./](?:bound2hiphop\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R163 +s@^referer(?=:[^\n]*[./](?:breitbart\.tv|cbs\.com|filefront\.com|imdb\.com|laobserved\.com|tv\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R164 +s@^referer(?=:[^\n]*[./](?:carambatv\.ru)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R165 +s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R166 +s@^referer(?=:[^\n]*[./](?:cbc\.ca)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R167 +s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cnet\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R168 +s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cnet\.com|gamespot\.com|tv\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R169 +s@^referer(?=:[^\n]*[./](?:cbssports\.com|gamespot\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R170 +s@^referer(?=:[^\n]*[./](?:cc\.com|sbs\.com\.au)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R171 +s@^referer(?=:[^\n]*[./](?:cdon\.fi)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R172 +s@^referer(?=:[^\n]*[./](?:change\.org|greentoe\.com|intuit\.com|nbc\.com|thefrisky\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R173 +s@^referer(?=:[^\n]*[./](?:chase\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R174 +s@^referer(?=:[^\n]*[./](?:cheapflights\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R175 +s@^referer(?=:[^\n]*[./](?:chip\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R176 +s@^referer(?=:[^\n]*[./](?:christianhouseshare\.com\.au|gamemazing\.com|soundsonline\.com|support\.netgear\.com|support\.netgear\.de|support\.netgear\.es|support\.netgear\.fr|support\.netgear\.it|support\.netgear\.ru)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R177 +s@^referer(?=:[^\n]*[./](?:cicispizza\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R178 +s@^referer(?=:[^\n]*[./](?:ciscospark\.com|citymapper\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R179 +s@^referer(?=:[^\n]*[./](?:citi\.com|citibank\.com|enmasse\.com|login\.skype\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R180 +s@^referer(?=:[^\n]*[./](?:clearlycontacts\.ca)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R181 +s@^referer(?=:[^\n]*[./](?:clipfish\.de|rtl-now\.rtl\.de|rtl2now\.rtl2\.de|rtlnitronow\.de|superrtlnow\.de|voxnow\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R182 +s@^referer(?=:[^\n]*[./](?:cloudflare\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R183 +s@^referer(?=:[^\n]*[./](?:cnet\.com|gamespot\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R184 +s@^referer(?=:[^\n]*[./](?:cnn\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R185 +s@^referer(?=:[^\n]*[./](?:colbertnation\.com|thedailyshow\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R186 +s@^referer(?=:[^\n]*[./](?:comingsoon\.net|playstationlifestyle\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R187 +s@^referer(?=:[^\n]*[./](?:common\.tv2\.dk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R188 +s@^referer(?=:[^\n]*[./](?:compassion\.com|creditsesame\.com|forbes\.com|freeshipping\.com|heroku\.com|hotukdeals\.com|imageshack\.com|lifelock\.com|malwarebytes\.org|policymic\.com|ricardo\.ch|techrepublic\.com|zdnet\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R189 +s@^referer(?=:[^\n]*[./](?:corriereadriatico\.it|ilgazzettino\.it|ilmattino\.it|ilmessaggero\.it|leggo\.it|quotidianodipuglia\.it)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R190 +s@^referer(?=:[^\n]*[./](?:cqcounter\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R191 +s@^referer(?=:[^\n]*[./](?:credit\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R192 +s@^referer(?=:[^\n]*[./](?:csmonitor\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R193 +s@^referer(?=:[^\n]*[./](?:currys\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R194 +s@^referer(?=:[^\n]*[./](?:custojusto\.pt)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R195 +s@^referer(?=:[^\n]*[./](?:darmstadt\.ui-traffic\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R196 +s@^referer(?=:[^\n]*[./](?:dcard\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R197 +s@^referer(?=:[^\n]*[./](?:desi-tashan\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R198 +s@^referer(?=:[^\n]*[./](?:desigual\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R199 +s@^referer(?=:[^\n]*[./](?:desigual\.com|drumstick\.com|ebuyer\.com|elevationscu\.com|gamepix\.com|google\.com|keygames\.com|optus\.com\.au|rebtel\.com|rockstargames\.com|rollingstone\.com|rozetka\.com\.ua|sixflags\.com|support\.amd\.com|talktalk\.co\.uk|techradar\.com|toto\.co\.jp|usmagazine\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R200 +s@^referer(?=:[^\n]*[./](?:desigual\.com|rebtel\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R201 +s@^referer(?=:[^\n]*[./](?:dice\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R202 +s@^referer(?=:[^\n]*[./](?:diejugendherbergen\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R203 +s@^referer(?=:[^\n]*[./](?:dl\.free\.fr)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R204 +s@^referer(?=:[^\n]*[./](?:dn\.se)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R205 +s@^referer(?=:[^\n]*[./](?:dnf\.qq\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R206 +s@^referer(?=:[^\n]*[./](?:doverdowns\.com|lifehack\.org|maxiclimber\.com|merriam-webster\.com|toto\.co\.jp|tripinsurance\.ru|vimeo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R207 +s@^referer(?=:[^\n]*[./](?:droid-life\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R208 +s@^referer(?=:[^\n]*[./](?:dtdc\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R209 +s@^referer(?=:[^\n]*[./](?:ebaumsworld\.com|nydailynews\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R210 +s@^referer(?=:[^\n]*[./](?:egotastic\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R211 +s@^referer(?=:[^\n]*[./](?:eloan\.co\.il)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R212 +s@^referer(?=:[^\n]*[./](?:email\.1und1\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R213 +s@^referer(?=:[^\n]*[./](?:engadget\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R214 +s@^referer(?=:[^\n]*[./](?:engwords\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R215 +s@^referer(?=:[^\n]*[./](?:entertainmentwise\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R216 +s@^referer(?=:[^\n]*[./](?:espn\.com\.br)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R217 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R218 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com|espndeportes\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R219 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com|live\.indiatimes\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R220 +s@^referer(?=:[^\n]*[./](?:europafm\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R221 +s@^referer(?=:[^\n]*[./](?:everycarlisted\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R222 +s@^referer(?=:[^\n]*[./](?:everydayhealth\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R223 +s@^referer(?=:[^\n]*[./](?:expansion\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R224 +s@^referer(?=:[^\n]*[./](?:fallout4\.com|metronews\.ca|mtv\.com\.lb|teslamotors\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R225 +s@^referer(?=:[^\n]*[./](?:feex\.co\.il|reshet\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R226 +s@^referer(?=:[^\n]*[./](?:finance\.yahoo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R227 +s@^referer(?=:[^\n]*[./](?:fnac\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R228 +s@^referer(?=:[^\n]*[./](?:foodnetwork\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R229 +s@^referer(?=:[^\n]*[./](?:forbes\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R230 +s@^referer(?=:[^\n]*[./](?:ford\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R231 +s@^referer(?=:[^\n]*[./](?:forums\.redflagdeals\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R232 +s@^referer(?=:[^\n]*[./](?:forwardprogressives\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R233 +s@^referer(?=:[^\n]*[./](?:foxnews\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R234 +s@^referer(?=:[^\n]*[./](?:ft\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R235 +s@^referer(?=:[^\n]*[./](?:gaana\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R236 +s@^referer(?=:[^\n]*[./](?:galileo-videolexikon\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R237 +s@^referer(?=:[^\n]*[./](?:gamespot\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R238 +s@^referer(?=:[^\n]*[./](?:garmin\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R239 +s@^referer(?=:[^\n]*[./](?:gewinnspiel\.gmx\.de|gewinnspiel\.web\.de|top\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R240 +s@^referer(?=:[^\n]*[./](?:gewinnspiele\.freenet\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R241 +s@^referer(?=:[^\n]*[./](?:globes\.co\.il)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R242 +s@^referer(?=:[^\n]*[./](?:google\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R243 +s@^referer(?=:[^\n]*[./](?:grazia\.it|panorama-auto\.it|panorama\.it)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R244 +s@^referer(?=:[^\n]*[./](?:greentoe\.com|thescene\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R245 +s@^referer(?=:[^\n]*[./](?:gutscheindoktor\.de|preis-vergleich\.tv|preismafia\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R246 +s@^referer(?=:[^\n]*[./](?:hbf\.com\.au|seattlepi\.com|tv\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R247 +s@^referer(?=:[^\n]*[./](?:heatmap\.me)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R248 +s@^referer(?=:[^\n]*[./](?:here\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R249 +s@^referer(?=:[^\n]*[./](?:hintaseuranta\.fi)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R250 +s@^referer(?=:[^\n]*[./](?:homepath\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R251 +s@^referer(?=:[^\n]*[./](?:hotelchocolat\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R252 +s@^referer(?=:[^\n]*[./](?:hotwire\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R253 +s@^referer(?=:[^\n]*[./](?:iherb\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R254 +s@^referer(?=:[^\n]*[./](?:immowelt\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R255 +s@^referer(?=:[^\n]*[./](?:indiedb\.com|indieroyale\.com|moddb\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R256 +s@^referer(?=:[^\n]*[./](?:inn\.co\.il)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R257 +s@^referer(?=:[^\n]*[./](?:investopedia\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R258 +s@^referer(?=:[^\n]*[./](?:ipla\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R259 +s@^referer(?=:[^\n]*[./](?:itworld\.com|juniper\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R260 +s@^referer(?=:[^\n]*[./](?:jsperf\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R261 +s@^referer(?=:[^\n]*[./](?:kapaza\.be)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R262 +s@^referer(?=:[^\n]*[./](?:karnaval\.com|livestream\.com|luxuryrealestate\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R263 +s@^referer(?=:[^\n]*[./](?:kuathletics\.com|mutigers\.com|okstate\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R264 +s@^referer(?=:[^\n]*[./](?:lapresse\.ca)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R265 +s@^referer(?=:[^\n]*[./](?:lazada\.co\.id)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R266 +s@^referer(?=:[^\n]*[./](?:leftlanenews\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R267 +s@^referer(?=:[^\n]*[./](?:lenovo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R268 +s@^referer(?=:[^\n]*[./](?:lenovo\.com|nationalgeographic\.com|paypal\.fr)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R269 +s@^referer(?=:[^\n]*[./](?:ligtv\.com\.tr)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R270 +s@^referer(?=:[^\n]*[./](?:livespotting\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R271 +s@^referer(?=:[^\n]*[./](?:livetvcafe\.net|player\.complex\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R272 +s@^referer(?=:[^\n]*[./](?:lovehoney\.co\.uk|maxiclimber\.com|opendns\.com|openshift\.com|vimeo\.com|westernunion\.at|westernunion\.be|westernunion\.ca|westernunion\.ch|westernunion\.cl|westernunion\.co\.jp|westernunion\.co\.nz|westernunion\.co\.uk|westernunion\.co\.za|westernunion\.com|westernunion\.com\.au|westernunion\.com\.co|westernunion\.com\.hk|westernunion\.com\.my|westernunion\.com\.pe|westernunion\.de|westernunion\.fr|westernunion\.ie|westernunion\.it|westernunion\.nl|westernunion\.ph|westernunion\.pl|westernunion\.se|westernunion\.sg)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R273 +s@^referer(?=:[^\n]*[./](?:lz\.taobao\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R274 +s@^referer(?=:[^\n]*[./](?:m\.flickr\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R275 +s@^referer(?=:[^\n]*[./](?:m\.tmz\.com|salon\.com|zap2it\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R276 +s@^referer(?=:[^\n]*[./](?:mackweldon\.com|telegraph\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R277 +s@^referer(?=:[^\n]*[./](?:macworld\.com|pcworld\.com|techhive\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R278 +s@^referer(?=:[^\n]*[./](?:macys\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R279 +s@^referer(?=:[^\n]*[./](?:mail\.biz\.rr\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R280 +s@^referer(?=:[^\n]*[./](?:mail\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R281 +s@^referer(?=:[^\n]*[./](?:mail\.tiscali\.it)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R282 +s@^referer(?=:[^\n]*[./](?:megatv\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R283 +s@^referer(?=:[^\n]*[./](?:menshealth\.de|runnersworld\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R284 +s@^referer(?=:[^\n]*[./](?:microsoft\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R285 +s@^referer(?=:[^\n]*[./](?:millionenklick\.web\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R286 +s@^referer(?=:[^\n]*[./](?:miutcank\.hu)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R287 +s@^referer(?=:[^\n]*[./](?:mixpanel\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R288 +s@^referer(?=:[^\n]*[./](?:mobile\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R289 +s@^referer(?=:[^\n]*[./](?:momondo\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R290 +s@^referer(?=:[^\n]*[./](?:momondo\.dk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R291 +s@^referer(?=:[^\n]*[./](?:monopoly\.mcdonalds\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R292 +s@^referer(?=:[^\n]*[./](?:moshimonsters\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R293 +s@^referer(?=:[^\n]*[./](?:mtvema\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R294 +s@^referer(?=:[^\n]*[./](?:multipack\.com\.mx)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R295 +s@^referer(?=:[^\n]*[./](?:musicfeeds\.com\.au|nzherald\.co\.nz|sf\.se|weatherchannel\.com\.au)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R296 +s@^referer(?=:[^\n]*[./](?:my\.msn\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R297 +s@^referer(?=:[^\n]*[./](?:myaccount\.nytimes\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R298 +s@^referer(?=:[^\n]*[./](?:mycokerewards\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R299 +s@^referer(?=:[^\n]*[./](?:mycommunitynow\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R300 +s@^referer(?=:[^\n]*[./](?:n-tvnow\.de|rtl-now\.rtl\.de|rtl2now\.rtl2\.de|rtlnitronow\.de|superrtlnow\.de|voxnow\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R301 +s@^referer(?=:[^\n]*[./](?:nbcnews\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R302 +s@^referer(?=:[^\n]*[./](?:nbcolympics\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R303 +s@^referer(?=:[^\n]*[./](?:ndr\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R304 +s@^referer(?=:[^\n]*[./](?:netcombo\.com\.br)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R305 +s@^referer(?=:[^\n]*[./](?:newegg\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R306 +s@^referer(?=:[^\n]*[./](?:news\.com\.au)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R307 +s@^referer(?=:[^\n]*[./](?:news\.gamme\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R308 +s@^referer(?=:[^\n]*[./](?:nexttv\.com\.tw)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R309 +s@^referer(?=:[^\n]*[./](?:nike\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R310 +s@^referer(?=:[^\n]*[./](?:norton\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R311 +s@^referer(?=:[^\n]*[./](?:novatv\.bg)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R312 +s@^referer(?=:[^\n]*[./](?:nowtv\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R313 +s@^referer(?=:[^\n]*[./](?:nyandcompany\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R314 +s@^referer(?=:[^\n]*[./](?:nydailynews\.com|travelscream\.com|yahoo\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R315 +s@^referer(?=:[^\n]*[./](?:nylon\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R316 +s@^referer(?=:[^\n]*[./](?:nytimes\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R317 +s@^referer(?=:[^\n]*[./](?:officedepot\.com|shop\.lego\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R318 +s@^referer(?=:[^\n]*[./](?:openhub\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R319 +s@^referer(?=:[^\n]*[./](?:orain\.org)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R320 +s@^referer(?=:[^\n]*[./](?:oralb\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R321 +s@^referer(?=:[^\n]*[./](?:parismatch\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R322 +s@^referer(?=:[^\n]*[./](?:pasts\.lv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R323 +s@^referer(?=:[^\n]*[./](?:pbs\.org)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R324 +s@^referer(?=:[^\n]*[./](?:peterboroughtoday\.co\.uk)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R325 +s@^referer(?=:[^\n]*[./](?:photos\.essence\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R326 +s@^referer(?=:[^\n]*[./](?:photos\.toofab\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R327 +s@^referer(?=:[^\n]*[./](?:planet-sports\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R328 +s@^referer(?=:[^\n]*[./](?:player\.radio\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R329 +s@^referer(?=:[^\n]*[./](?:playstation\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R33 +s@^referer(?=:[^\n]*[./](?:paypal\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R330 +s@^referer(?=:[^\n]*[./](?:pocketdice\.io|slantnews\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R331 +s@^referer(?=:[^\n]*[./](?:poiskstroek\.ru)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R332 +s@^referer(?=:[^\n]*[./](?:popeater\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R333 +s@^referer(?=:[^\n]*[./](?:preis-vergleich\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R334 +s@^referer(?=:[^\n]*[./](?:quantcast\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R335 +s@^referer(?=:[^\n]*[./](?:rambler\.ru)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R336 +s@^referer(?=:[^\n]*[./](?:readwriteweb\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R337 +s@^referer(?=:[^\n]*[./](?:realhardwarereviews\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R338 +s@^referer(?=:[^\n]*[./](?:record\.xl\.pt)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R339 +s@^referer(?=:[^\n]*[./](?:redfin\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R340 +s@^referer(?=:[^\n]*[./](?:reference\.com|thesaurus\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R341 +s@^referer(?=:[^\n]*[./](?:reshet\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R342 +s@^referer(?=:[^\n]*[./](?:resignationbrewery\.com|video\.foxnews\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R343 +s@^referer(?=:[^\n]*[./](?:rogersradio\.ca)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R344 +s@^referer(?=:[^\n]*[./](?:rrstar\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R345 +s@^referer(?=:[^\n]*[./](?:rte\.ie)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R346 +s@^referer(?=:[^\n]*[./](?:runnersworld\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R347 +s@^referer(?=:[^\n]*[./](?:sbs\.com\.au)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R348 +s@^referer(?=:[^\n]*[./](?:schach\.zeit\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R349 +s@^referer(?=:[^\n]*[./](?:sears\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R350 +s@^referer(?=:[^\n]*[./](?:seek\.com\.au)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R351 +s@^referer(?=:[^\n]*[./](?:skaties\.lv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R352 +s@^referer(?=:[^\n]*[./](?:sky\.it)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R353 +s@^referer(?=:[^\n]*[./](?:sky\.it|ubibanca\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R354 +s@^referer(?=:[^\n]*[./](?:small-breasted-teens\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R355 +s@^referer(?=:[^\n]*[./](?:social\.economico\.pt)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R356 +s@^referer(?=:[^\n]*[./](?:spatialbuzz\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R357 +s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R358 +s@^referer(?=:[^\n]*[./](?:spielen\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R359 +s@^referer(?=:[^\n]*[./](?:sportsbet\.com\.au)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R360 +s@^referer(?=:[^\n]*[./](?:sportube\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R361 +s@^referer(?=:[^\n]*[./](?:sprint\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R362 +s@^referer(?=:[^\n]*[./](?:start\.toshiba\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R363 +s@^referer(?=:[^\n]*[./](?:starwoodhotels\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R364 +s@^referer(?=:[^\n]*[./](?:store\.office\.live\.com|xbox\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R365 +s@^referer(?=:[^\n]*[./](?:storenvy\.com|tvguide\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R366 +s@^referer(?=:[^\n]*[./](?:stylished\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R367 +s@^referer(?=:[^\n]*[./](?:stylished\.de|t-online\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R368 +s@^referer(?=:[^\n]*[./](?:subaru\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R369 +s@^referer(?=:[^\n]*[./](?:sueddeutsche\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R370 +s@^referer(?=:[^\n]*[./](?:swordmaster\.org)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R371 +s@^referer(?=:[^\n]*[./](?:t-online\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R372 +s@^referer(?=:[^\n]*[./](?:tagesanzeiger\.ch)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R373 +s@^referer(?=:[^\n]*[./](?:thedailywh\.at)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R374 +s@^referer(?=:[^\n]*[./](?:theladbible\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R375 +s@^referer(?=:[^\n]*[./](?:thenounproject\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R376 +s@^referer(?=:[^\n]*[./](?:thestar\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R377 +s@^referer(?=:[^\n]*[./](?:thestreet\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R378 +s@^referer(?=:[^\n]*[./](?:tim\.it)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R379 +s@^referer(?=:[^\n]*[./](?:time\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R380 +s@^referer(?=:[^\n]*[./](?:timesfreepress\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R381 +s@^referer(?=:[^\n]*[./](?:tomshardware\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R382 +s@^referer(?=:[^\n]*[./](?:tradera\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R383 +s@^referer(?=:[^\n]*[./](?:tsn\.ua)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R384 +s@^referer(?=:[^\n]*[./](?:tudou\.com|ynet\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R385 +s@^referer(?=:[^\n]*[./](?:tv3play\.no)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R386 +s@^referer(?=:[^\n]*[./](?:tvnwarszawa\.pl)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R387 +s@^referer(?=:[^\n]*[./](?:twitch\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R388 +s@^referer(?=:[^\n]*[./](?:twitter\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R389 +s@^referer(?=:[^\n]*[./](?:uatoday\.tv)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R390 +s@^referer(?=:[^\n]*[./](?:usps\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R391 +s@^referer(?=:[^\n]*[./](?:vancl\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R392 +s@^referer(?=:[^\n]*[./](?:vd\.nl)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R393 +s@^referer(?=:[^\n]*[./](?:video\.foxnews\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R394 +s@^referer(?=:[^\n]*[./](?:video\.repubblica\.it)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R395 +s@^referer(?=:[^\n]*[./](?:video\.wired\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R396 +s@^referer(?=:[^\n]*[./](?:videos\.mediaite\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R397 +s@^referer(?=:[^\n]*[./](?:virginamerica\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R398 +s@^referer(?=:[^\n]*[./](?:visitpa\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R399 +s@^referer(?=:[^\n]*[./](?:vmware\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R4 +s@^referer(?=:[^\n]*[./](?:bahn\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R400 +s@^referer(?=:[^\n]*[./](?:vroniplag\.wikia\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R401 +s@^referer(?=:[^\n]*[./](?:vulture\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R402 +s@^referer(?=:[^\n]*[./](?:walmart\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R403 +s@^referer(?=:[^\n]*[./](?:washingtonpost\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R404 +s@^referer(?=:[^\n]*[./](?:weather\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R405 +s@^referer(?=:[^\n]*[./](?:web\.de)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R406 +s@^referer(?=:[^\n]*[./](?:wenxuecity\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R407 +s@^referer(?=:[^\n]*[./](?:windowsitpro\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R408 +s@^referer(?=:[^\n]*[./](?:wisedock\.at|wisedock\.co\.uk|wisedock\.com|wisedock\.de|wisedock\.eu)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R409 +s@^referer(?=:[^\n]*[./](?:worldc\.am)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R41 +s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R410 +s@^referer(?=:[^\n]*[./](?:wsj\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R411 +s@^referer(?=:[^\n]*[./](?:wwe\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R412 +s@^referer(?=:[^\n]*[./](?:xrussianteens\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R413 +s@^referer(?=:[^\n]*[./](?:ynet\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R414 +s@^referer(?=:[^\n]*[./](?:youngcons\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R415 +s@^referer(?=:[^\n]*[./](?:zap2it\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R416 +s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R417 +s@^referer(?=:[^\n]*[./](?:zylom\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R5 +s@^referer(?=:[^\n]*[./](?:bestbuy\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-dnt-R9 +s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-unblock-dnt@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R11 +s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R110 +s@^referer(?=:[^\n]*[./](?:24ace\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R111 +s@^referer(?=:[^\n]*[./](?:3bmeteo\.com|quotidiano\.net|radioitalia\.it)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R112 +s@^referer(?=:[^\n]*[./](?:abcnews\.go\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R113 +s@^referer(?=:[^\n]*[./](?:abp\.nl)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R114 +s@^referer(?=:[^\n]*[./](?:acehardware\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R115 +s@^referer(?=:[^\n]*[./](?:adidas\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R116 +s@^referer(?=:[^\n]*[./](?:ads\.twitter\.com|change\.org|greentoe\.com|kickstarter\.com|mint\.com|nbc\.com|thefrisky\.com|vid\.me)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R117 +s@^referer(?=:[^\n]*[./](?:afternic\.com|amctv\.com|bebo\.com|ch10\.co\.il|cliphunter\.com|daemon-tools\.cc|desigual\.com|gamepix\.com|greentoe\.com|housing\.wisc\.edu|infogr\.am|jackbox\.tv|keygames\.com|manowthaimordialloc\.com\.au|maxiclimber\.com|orbitum\.com|pluto\.tv|rebtel\.com|sbnation\.com|sci2\.tv|seatgeek\.com|support\.amd\.com|tagheuer\.com\.au|tv10play\.se|tv3play\.se|tv6play\.se|tv8play\.se|video\.pbs\.org|vox\.com|vpnster\.com|weather\.gov|westernunion\.at|westernunion\.be|westernunion\.ca|westernunion\.ch|westernunion\.cl|westernunion\.co\.jp|westernunion\.co\.nz|westernunion\.co\.uk|westernunion\.co\.za|westernunion\.com|westernunion\.com\.au|westernunion\.com\.co|westernunion\.com\.hk|westernunion\.com\.my|westernunion\.com\.pe|westernunion\.de|westernunion\.fr|westernunion\.ie|westernunion\.it|westernunion\.nl|westernunion\.ph|westernunion\.pl|westernunion\.se|westernunion\.sg|www\.google\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R118 +s@^referer(?=:[^\n]*[./](?:agame\.com|allrecipes\.com|amctv\.com|apl\.tv|babycenter\.com|bonappetit\.com|calgaryherald\.com|canada\.com|cbc\.ca|dailymail\.co\.uk|deviantart\.com|discovery\.com|edmontonjournal\.com|fastcompany\.com|financialpost\.com|firstwefeast\.com|hitfix\.com|huffingtonpost\.com|landandfarm\.com|last\.fm|leaderpost\.com|m\.tmz\.com|montrealgazette\.com|nationalpost\.com|newsday\.com|ottawacitizen\.com|outsideonline\.com|radaronline\.com|salon\.com|sci2\.tv|syfy\.com|theprovince\.com|thestar\.com|thestarphoenix\.com|thinkatheist\.com|vancouversun\.com|windsorstar\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R119 +s@^referer(?=:[^\n]*[./](?:aim\.com|autoblog\.com|autos\.aol\.com|engadget\.com|mapquest\.com|video\.aol\.com|www\.aol\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R120 +s@^referer(?=:[^\n]*[./](?:aljazeera\.com|ballerstatus\.com|bikemap\.net|carltonjordan\.com|cashu\.com|coolsport\.tv|dereon\.com|dr\.dk|everydaysource\.com|fab\.com|girlgames4u\.com|incgamers\.com|ip-address\.cc|maaduu\.com|qatarairways\.com|sat-direction\.com|sotctours\.com|stoli\.com|vibe\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R121 +s@^referer(?=:[^\n]*[./](?:amazingpics\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R122 +s@^referer(?=:[^\n]*[./](?:amctv\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R123 +s@^referer(?=:[^\n]*[./](?:americanexpress\.com|caranddriver\.com|citizensbank\.com|dell\.com|homedepot\.com|staples\.com|t-mobile\.com|target\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R124 +s@^referer(?=:[^\n]*[./](?:amypink\.de|biznews\.com|cryptospot\.me|droid-life\.com|forwardprogressives\.com|fpif\.org|fullpotentialma\.com|geekzone\.co\.nz|goldsday\.com|imageupload\.co\.uk|is-arquitectura\.es|mmanews\.com|orain\.org|tvunblock\.com|unilad\.co\.uk|xrussianteens\.com|youngcons\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R125 +s@^referer(?=:[^\n]*[./](?:amypink\.de|droid-life\.com|mmanews\.com|unilad\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R126 +s@^referer(?=:[^\n]*[./](?:analytics\.twitter\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R127 +s@^referer(?=:[^\n]*[./](?:ancestry\.co\.uk|ancestry\.com|ancestry\.com\.au|ancestry\.it|blogtalkradio\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R128 +s@^referer(?=:[^\n]*[./](?:ancestry\.com|billetnet\.dk|billettservice\.no|lippupalvelu\.fi|macworld\.com|pcworld\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se|wsj\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R129 +s@^referer(?=:[^\n]*[./](?:ancestry\.com|billetnet\.dk|billettservice\.no|lippupalvelu\.fi|pcworld\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se|wsj\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R130 +s@^referer(?=:[^\n]*[./](?:android\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R131 +s@^referer(?=:[^\n]*[./](?:anoncer\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R132 +s@^referer(?=:[^\n]*[./](?:anoncer\.net|tv\.yandex\.ru)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R133 +s@^referer(?=:[^\n]*[./](?:ap\.org|newsinc\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R134 +s@^referer(?=:[^\n]*[./](?:apotheken-umschau\.de|compo-hobby\.de|diabetes-ratgeber\.net|giz\.de|kaguma\.com|krombacher\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R135 +s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R136 +s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com|caranddriver\.com|g4tv\.com|nymag\.com|salon\.com|theblaze\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R137 +s@^referer(?=:[^\n]*[./](?:architizer\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R138 +s@^referer(?=:[^\n]*[./](?:ardmediathek\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R139 +s@^referer(?=:[^\n]*[./](?:arte\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R14 +s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R140 +s@^referer(?=:[^\n]*[./](?:asana\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R141 +s@^referer(?=:[^\n]*[./](?:associatedcontent\.com|cbs\.com|cbsatlanta\.com|centurylink\.net|comedy\.com|eurweb\.com|fox5vegas\.com|foxcarolina\.com|grabnetworks\.com|kctv5\.com|kpho\.com|kptv\.com|theimproper\.com|thenewsroom\.com|tv\.com|tvguide\.com|wfsb\.com|wnem\.com|wsmv\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R142 +s@^referer(?=:[^\n]*[./](?:att\.yahoo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R143 +s@^referer(?=:[^\n]*[./](?:au\.launch\.yahoo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R144 +s@^referer(?=:[^\n]*[./](?:autoblog\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R145 +s@^referer(?=:[^\n]*[./](?:autoblog\.com|autos\.aol\.com|dailyfinance\.com|moviefone\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R146 +s@^referer(?=:[^\n]*[./](?:autoblog\.com|dailyfinance\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R147 +s@^referer(?=:[^\n]*[./](?:automatensuche\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R148 +s@^referer(?=:[^\n]*[./](?:autorevue\.cz|e15\.cz|mobilmania\.cz|sportrevue\.cz|zive\.cz)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R149 +s@^referer(?=:[^\n]*[./](?:axure\.com|chocomaru\.com|denverbroncos\.com|muselive\.com|streetfire\.net|wickedthemusical\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R150 +s@^referer(?=:[^\n]*[./](?:badische-zeitung\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R151 +s@^referer(?=:[^\n]*[./](?:barbie\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R152 +s@^referer(?=:[^\n]*[./](?:barclaycard\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R153 +s@^referer(?=:[^\n]*[./](?:bbm\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R154 +s@^referer(?=:[^\n]*[./](?:bebo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R155 +s@^referer(?=:[^\n]*[./](?:bebo\.com|rebtel\.com|support\.amd\.com|vox\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R156 +s@^referer(?=:[^\n]*[./](?:betabeat\.com|couriermail\.com\.au|financialpost\.com|wcpo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R157 +s@^referer(?=:[^\n]*[./](?:bienpublic\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R158 +s@^referer(?=:[^\n]*[./](?:billetnet\.dk|billettservice\.no|citibank\.co\.in|goal\.com|lippupalvelu\.fi|pcworld\.com|riverisland\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R159 +s@^referer(?=:[^\n]*[./](?:bing\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R16 +s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R160 +s@^referer(?=:[^\n]*[./](?:blog\.cloudflare\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R161 +s@^referer(?=:[^\n]*[./](?:bloomberg\.com|breitbart\.com|breitbart\.tv|nme\.com|slatev\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R162 +s@^referer(?=:[^\n]*[./](?:bound2hiphop\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R163 +s@^referer(?=:[^\n]*[./](?:breitbart\.tv|cbs\.com|filefront\.com|imdb\.com|laobserved\.com|tv\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R164 +s@^referer(?=:[^\n]*[./](?:carambatv\.ru)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R165 +s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R166 +s@^referer(?=:[^\n]*[./](?:cbc\.ca)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R167 +s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cnet\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R168 +s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cnet\.com|gamespot\.com|tv\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R169 +s@^referer(?=:[^\n]*[./](?:cbssports\.com|gamespot\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R170 +s@^referer(?=:[^\n]*[./](?:cc\.com|sbs\.com\.au)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R171 +s@^referer(?=:[^\n]*[./](?:cdon\.fi)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R172 +s@^referer(?=:[^\n]*[./](?:change\.org|greentoe\.com|intuit\.com|nbc\.com|thefrisky\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R173 +s@^referer(?=:[^\n]*[./](?:chase\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R174 +s@^referer(?=:[^\n]*[./](?:cheapflights\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R175 +s@^referer(?=:[^\n]*[./](?:chip\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R176 +s@^referer(?=:[^\n]*[./](?:christianhouseshare\.com\.au|gamemazing\.com|soundsonline\.com|support\.netgear\.com|support\.netgear\.de|support\.netgear\.es|support\.netgear\.fr|support\.netgear\.it|support\.netgear\.ru)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R177 +s@^referer(?=:[^\n]*[./](?:cicispizza\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R178 +s@^referer(?=:[^\n]*[./](?:ciscospark\.com|citymapper\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R179 +s@^referer(?=:[^\n]*[./](?:citi\.com|citibank\.com|enmasse\.com|login\.skype\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R180 +s@^referer(?=:[^\n]*[./](?:clearlycontacts\.ca)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R181 +s@^referer(?=:[^\n]*[./](?:clipfish\.de|rtl-now\.rtl\.de|rtl2now\.rtl2\.de|rtlnitronow\.de|superrtlnow\.de|voxnow\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R182 +s@^referer(?=:[^\n]*[./](?:cloudflare\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R183 +s@^referer(?=:[^\n]*[./](?:cnet\.com|gamespot\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R184 +s@^referer(?=:[^\n]*[./](?:cnn\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R185 +s@^referer(?=:[^\n]*[./](?:colbertnation\.com|thedailyshow\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R186 +s@^referer(?=:[^\n]*[./](?:comingsoon\.net|playstationlifestyle\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R187 +s@^referer(?=:[^\n]*[./](?:common\.tv2\.dk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R188 +s@^referer(?=:[^\n]*[./](?:compassion\.com|creditsesame\.com|forbes\.com|freeshipping\.com|heroku\.com|hotukdeals\.com|imageshack\.com|lifelock\.com|malwarebytes\.org|policymic\.com|ricardo\.ch|techrepublic\.com|zdnet\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R189 +s@^referer(?=:[^\n]*[./](?:corriereadriatico\.it|ilgazzettino\.it|ilmattino\.it|ilmessaggero\.it|leggo\.it|quotidianodipuglia\.it)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R190 +s@^referer(?=:[^\n]*[./](?:cqcounter\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R191 +s@^referer(?=:[^\n]*[./](?:credit\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R192 +s@^referer(?=:[^\n]*[./](?:csmonitor\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R193 +s@^referer(?=:[^\n]*[./](?:currys\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R194 +s@^referer(?=:[^\n]*[./](?:custojusto\.pt)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R195 +s@^referer(?=:[^\n]*[./](?:darmstadt\.ui-traffic\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R196 +s@^referer(?=:[^\n]*[./](?:dcard\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R197 +s@^referer(?=:[^\n]*[./](?:desi-tashan\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R198 +s@^referer(?=:[^\n]*[./](?:desigual\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R199 +s@^referer(?=:[^\n]*[./](?:desigual\.com|drumstick\.com|ebuyer\.com|elevationscu\.com|gamepix\.com|google\.com|keygames\.com|optus\.com\.au|rebtel\.com|rockstargames\.com|rollingstone\.com|rozetka\.com\.ua|sixflags\.com|support\.amd\.com|talktalk\.co\.uk|techradar\.com|toto\.co\.jp|usmagazine\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R200 +s@^referer(?=:[^\n]*[./](?:desigual\.com|rebtel\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R201 +s@^referer(?=:[^\n]*[./](?:dice\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R202 +s@^referer(?=:[^\n]*[./](?:diejugendherbergen\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R203 +s@^referer(?=:[^\n]*[./](?:dl\.free\.fr)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R204 +s@^referer(?=:[^\n]*[./](?:dn\.se)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R205 +s@^referer(?=:[^\n]*[./](?:dnf\.qq\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R206 +s@^referer(?=:[^\n]*[./](?:doverdowns\.com|lifehack\.org|maxiclimber\.com|merriam-webster\.com|toto\.co\.jp|tripinsurance\.ru|vimeo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R207 +s@^referer(?=:[^\n]*[./](?:droid-life\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R208 +s@^referer(?=:[^\n]*[./](?:dtdc\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R209 +s@^referer(?=:[^\n]*[./](?:ebaumsworld\.com|nydailynews\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R210 +s@^referer(?=:[^\n]*[./](?:egotastic\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R211 +s@^referer(?=:[^\n]*[./](?:eloan\.co\.il)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R212 +s@^referer(?=:[^\n]*[./](?:email\.1und1\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R213 +s@^referer(?=:[^\n]*[./](?:engadget\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R214 +s@^referer(?=:[^\n]*[./](?:engwords\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R215 +s@^referer(?=:[^\n]*[./](?:entertainmentwise\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R216 +s@^referer(?=:[^\n]*[./](?:espn\.com\.br)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R217 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R218 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com|espndeportes\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R219 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com|live\.indiatimes\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R220 +s@^referer(?=:[^\n]*[./](?:europafm\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R221 +s@^referer(?=:[^\n]*[./](?:everycarlisted\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R222 +s@^referer(?=:[^\n]*[./](?:everydayhealth\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R223 +s@^referer(?=:[^\n]*[./](?:expansion\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R224 +s@^referer(?=:[^\n]*[./](?:fallout4\.com|metronews\.ca|mtv\.com\.lb|teslamotors\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R225 +s@^referer(?=:[^\n]*[./](?:feex\.co\.il|reshet\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R226 +s@^referer(?=:[^\n]*[./](?:finance\.yahoo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R227 +s@^referer(?=:[^\n]*[./](?:fnac\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R228 +s@^referer(?=:[^\n]*[./](?:foodnetwork\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R229 +s@^referer(?=:[^\n]*[./](?:forbes\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R230 +s@^referer(?=:[^\n]*[./](?:ford\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R231 +s@^referer(?=:[^\n]*[./](?:forums\.redflagdeals\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R232 +s@^referer(?=:[^\n]*[./](?:forwardprogressives\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R233 +s@^referer(?=:[^\n]*[./](?:foxnews\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R234 +s@^referer(?=:[^\n]*[./](?:ft\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R235 +s@^referer(?=:[^\n]*[./](?:gaana\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R236 +s@^referer(?=:[^\n]*[./](?:galileo-videolexikon\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R237 +s@^referer(?=:[^\n]*[./](?:gamespot\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R238 +s@^referer(?=:[^\n]*[./](?:garmin\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R239 +s@^referer(?=:[^\n]*[./](?:gewinnspiel\.gmx\.de|gewinnspiel\.web\.de|top\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R240 +s@^referer(?=:[^\n]*[./](?:gewinnspiele\.freenet\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R241 +s@^referer(?=:[^\n]*[./](?:globes\.co\.il)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R242 +s@^referer(?=:[^\n]*[./](?:google\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R243 +s@^referer(?=:[^\n]*[./](?:grazia\.it|panorama-auto\.it|panorama\.it)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R244 +s@^referer(?=:[^\n]*[./](?:greentoe\.com|thescene\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R245 +s@^referer(?=:[^\n]*[./](?:gutscheindoktor\.de|preis-vergleich\.tv|preismafia\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R246 +s@^referer(?=:[^\n]*[./](?:hbf\.com\.au|seattlepi\.com|tv\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R247 +s@^referer(?=:[^\n]*[./](?:heatmap\.me)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R248 +s@^referer(?=:[^\n]*[./](?:here\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R249 +s@^referer(?=:[^\n]*[./](?:hintaseuranta\.fi)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R250 +s@^referer(?=:[^\n]*[./](?:homepath\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R251 +s@^referer(?=:[^\n]*[./](?:hotelchocolat\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R252 +s@^referer(?=:[^\n]*[./](?:hotwire\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R253 +s@^referer(?=:[^\n]*[./](?:iherb\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R254 +s@^referer(?=:[^\n]*[./](?:immowelt\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R255 +s@^referer(?=:[^\n]*[./](?:indiedb\.com|indieroyale\.com|moddb\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R256 +s@^referer(?=:[^\n]*[./](?:inn\.co\.il)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R257 +s@^referer(?=:[^\n]*[./](?:investopedia\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R258 +s@^referer(?=:[^\n]*[./](?:ipla\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R259 +s@^referer(?=:[^\n]*[./](?:itworld\.com|juniper\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R260 +s@^referer(?=:[^\n]*[./](?:jsperf\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R261 +s@^referer(?=:[^\n]*[./](?:kapaza\.be)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R262 +s@^referer(?=:[^\n]*[./](?:karnaval\.com|livestream\.com|luxuryrealestate\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R263 +s@^referer(?=:[^\n]*[./](?:kuathletics\.com|mutigers\.com|okstate\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R264 +s@^referer(?=:[^\n]*[./](?:lapresse\.ca)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R265 +s@^referer(?=:[^\n]*[./](?:lazada\.co\.id)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R266 +s@^referer(?=:[^\n]*[./](?:leftlanenews\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R267 +s@^referer(?=:[^\n]*[./](?:lenovo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R268 +s@^referer(?=:[^\n]*[./](?:lenovo\.com|nationalgeographic\.com|paypal\.fr)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R269 +s@^referer(?=:[^\n]*[./](?:ligtv\.com\.tr)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R270 +s@^referer(?=:[^\n]*[./](?:livespotting\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R271 +s@^referer(?=:[^\n]*[./](?:livetvcafe\.net|player\.complex\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R272 +s@^referer(?=:[^\n]*[./](?:lovehoney\.co\.uk|maxiclimber\.com|opendns\.com|openshift\.com|vimeo\.com|westernunion\.at|westernunion\.be|westernunion\.ca|westernunion\.ch|westernunion\.cl|westernunion\.co\.jp|westernunion\.co\.nz|westernunion\.co\.uk|westernunion\.co\.za|westernunion\.com|westernunion\.com\.au|westernunion\.com\.co|westernunion\.com\.hk|westernunion\.com\.my|westernunion\.com\.pe|westernunion\.de|westernunion\.fr|westernunion\.ie|westernunion\.it|westernunion\.nl|westernunion\.ph|westernunion\.pl|westernunion\.se|westernunion\.sg)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R273 +s@^referer(?=:[^\n]*[./](?:lz\.taobao\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R274 +s@^referer(?=:[^\n]*[./](?:m\.flickr\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R275 +s@^referer(?=:[^\n]*[./](?:m\.tmz\.com|salon\.com|zap2it\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R276 +s@^referer(?=:[^\n]*[./](?:mackweldon\.com|telegraph\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R277 +s@^referer(?=:[^\n]*[./](?:macworld\.com|pcworld\.com|techhive\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R278 +s@^referer(?=:[^\n]*[./](?:macys\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R279 +s@^referer(?=:[^\n]*[./](?:mail\.biz\.rr\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R280 +s@^referer(?=:[^\n]*[./](?:mail\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R281 +s@^referer(?=:[^\n]*[./](?:mail\.tiscali\.it)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R282 +s@^referer(?=:[^\n]*[./](?:megatv\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R283 +s@^referer(?=:[^\n]*[./](?:menshealth\.de|runnersworld\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R284 +s@^referer(?=:[^\n]*[./](?:microsoft\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R285 +s@^referer(?=:[^\n]*[./](?:millionenklick\.web\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R286 +s@^referer(?=:[^\n]*[./](?:miutcank\.hu)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R287 +s@^referer(?=:[^\n]*[./](?:mixpanel\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R288 +s@^referer(?=:[^\n]*[./](?:mobile\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R289 +s@^referer(?=:[^\n]*[./](?:momondo\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R290 +s@^referer(?=:[^\n]*[./](?:momondo\.dk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R291 +s@^referer(?=:[^\n]*[./](?:monopoly\.mcdonalds\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R292 +s@^referer(?=:[^\n]*[./](?:moshimonsters\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R293 +s@^referer(?=:[^\n]*[./](?:mtvema\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R294 +s@^referer(?=:[^\n]*[./](?:multipack\.com\.mx)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R295 +s@^referer(?=:[^\n]*[./](?:musicfeeds\.com\.au|nzherald\.co\.nz|sf\.se|weatherchannel\.com\.au)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R296 +s@^referer(?=:[^\n]*[./](?:my\.msn\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R297 +s@^referer(?=:[^\n]*[./](?:myaccount\.nytimes\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R298 +s@^referer(?=:[^\n]*[./](?:mycokerewards\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R299 +s@^referer(?=:[^\n]*[./](?:mycommunitynow\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R300 +s@^referer(?=:[^\n]*[./](?:n-tvnow\.de|rtl-now\.rtl\.de|rtl2now\.rtl2\.de|rtlnitronow\.de|superrtlnow\.de|voxnow\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R301 +s@^referer(?=:[^\n]*[./](?:nbcnews\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R302 +s@^referer(?=:[^\n]*[./](?:nbcolympics\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R303 +s@^referer(?=:[^\n]*[./](?:ndr\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R304 +s@^referer(?=:[^\n]*[./](?:netcombo\.com\.br)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R305 +s@^referer(?=:[^\n]*[./](?:newegg\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R306 +s@^referer(?=:[^\n]*[./](?:news\.com\.au)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R307 +s@^referer(?=:[^\n]*[./](?:news\.gamme\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R308 +s@^referer(?=:[^\n]*[./](?:nexttv\.com\.tw)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R309 +s@^referer(?=:[^\n]*[./](?:nike\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R310 +s@^referer(?=:[^\n]*[./](?:norton\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R311 +s@^referer(?=:[^\n]*[./](?:novatv\.bg)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R312 +s@^referer(?=:[^\n]*[./](?:nowtv\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R313 +s@^referer(?=:[^\n]*[./](?:nyandcompany\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R314 +s@^referer(?=:[^\n]*[./](?:nydailynews\.com|travelscream\.com|yahoo\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R315 +s@^referer(?=:[^\n]*[./](?:nylon\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R316 +s@^referer(?=:[^\n]*[./](?:nytimes\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R317 +s@^referer(?=:[^\n]*[./](?:officedepot\.com|shop\.lego\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R318 +s@^referer(?=:[^\n]*[./](?:openhub\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R319 +s@^referer(?=:[^\n]*[./](?:orain\.org)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R320 +s@^referer(?=:[^\n]*[./](?:oralb\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R321 +s@^referer(?=:[^\n]*[./](?:parismatch\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R322 +s@^referer(?=:[^\n]*[./](?:pasts\.lv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R323 +s@^referer(?=:[^\n]*[./](?:pbs\.org)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R324 +s@^referer(?=:[^\n]*[./](?:peterboroughtoday\.co\.uk)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R325 +s@^referer(?=:[^\n]*[./](?:photos\.essence\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R326 +s@^referer(?=:[^\n]*[./](?:photos\.toofab\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R327 +s@^referer(?=:[^\n]*[./](?:planet-sports\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R328 +s@^referer(?=:[^\n]*[./](?:player\.radio\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R329 +s@^referer(?=:[^\n]*[./](?:playstation\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R33 +s@^referer(?=:[^\n]*[./](?:paypal\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R330 +s@^referer(?=:[^\n]*[./](?:pocketdice\.io|slantnews\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R331 +s@^referer(?=:[^\n]*[./](?:poiskstroek\.ru)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R332 +s@^referer(?=:[^\n]*[./](?:popeater\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R333 +s@^referer(?=:[^\n]*[./](?:preis-vergleich\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R334 +s@^referer(?=:[^\n]*[./](?:quantcast\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R335 +s@^referer(?=:[^\n]*[./](?:rambler\.ru)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R336 +s@^referer(?=:[^\n]*[./](?:readwriteweb\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R337 +s@^referer(?=:[^\n]*[./](?:realhardwarereviews\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R338 +s@^referer(?=:[^\n]*[./](?:record\.xl\.pt)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R339 +s@^referer(?=:[^\n]*[./](?:redfin\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R340 +s@^referer(?=:[^\n]*[./](?:reference\.com|thesaurus\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R341 +s@^referer(?=:[^\n]*[./](?:reshet\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R342 +s@^referer(?=:[^\n]*[./](?:resignationbrewery\.com|video\.foxnews\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R343 +s@^referer(?=:[^\n]*[./](?:rogersradio\.ca)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R344 +s@^referer(?=:[^\n]*[./](?:rrstar\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R345 +s@^referer(?=:[^\n]*[./](?:rte\.ie)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R346 +s@^referer(?=:[^\n]*[./](?:runnersworld\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R347 +s@^referer(?=:[^\n]*[./](?:sbs\.com\.au)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R348 +s@^referer(?=:[^\n]*[./](?:schach\.zeit\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R349 +s@^referer(?=:[^\n]*[./](?:sears\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R350 +s@^referer(?=:[^\n]*[./](?:seek\.com\.au)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R351 +s@^referer(?=:[^\n]*[./](?:skaties\.lv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R352 +s@^referer(?=:[^\n]*[./](?:sky\.it)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R353 +s@^referer(?=:[^\n]*[./](?:sky\.it|ubibanca\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R354 +s@^referer(?=:[^\n]*[./](?:small-breasted-teens\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R355 +s@^referer(?=:[^\n]*[./](?:social\.economico\.pt)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R356 +s@^referer(?=:[^\n]*[./](?:spatialbuzz\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R357 +s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R358 +s@^referer(?=:[^\n]*[./](?:spielen\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R359 +s@^referer(?=:[^\n]*[./](?:sportsbet\.com\.au)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R360 +s@^referer(?=:[^\n]*[./](?:sportube\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R361 +s@^referer(?=:[^\n]*[./](?:sprint\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R362 +s@^referer(?=:[^\n]*[./](?:start\.toshiba\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R363 +s@^referer(?=:[^\n]*[./](?:starwoodhotels\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R364 +s@^referer(?=:[^\n]*[./](?:store\.office\.live\.com|xbox\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R365 +s@^referer(?=:[^\n]*[./](?:storenvy\.com|tvguide\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R366 +s@^referer(?=:[^\n]*[./](?:stylished\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R367 +s@^referer(?=:[^\n]*[./](?:stylished\.de|t-online\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R368 +s@^referer(?=:[^\n]*[./](?:subaru\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R369 +s@^referer(?=:[^\n]*[./](?:sueddeutsche\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R370 +s@^referer(?=:[^\n]*[./](?:swordmaster\.org)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R371 +s@^referer(?=:[^\n]*[./](?:t-online\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R372 +s@^referer(?=:[^\n]*[./](?:tagesanzeiger\.ch)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R373 +s@^referer(?=:[^\n]*[./](?:thedailywh\.at)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R374 +s@^referer(?=:[^\n]*[./](?:theladbible\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R375 +s@^referer(?=:[^\n]*[./](?:thenounproject\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R376 +s@^referer(?=:[^\n]*[./](?:thestar\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R377 +s@^referer(?=:[^\n]*[./](?:thestreet\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R378 +s@^referer(?=:[^\n]*[./](?:tim\.it)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R379 +s@^referer(?=:[^\n]*[./](?:time\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R380 +s@^referer(?=:[^\n]*[./](?:timesfreepress\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R381 +s@^referer(?=:[^\n]*[./](?:tomshardware\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R382 +s@^referer(?=:[^\n]*[./](?:tradera\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R383 +s@^referer(?=:[^\n]*[./](?:tsn\.ua)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R384 +s@^referer(?=:[^\n]*[./](?:tudou\.com|ynet\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R385 +s@^referer(?=:[^\n]*[./](?:tv3play\.no)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R386 +s@^referer(?=:[^\n]*[./](?:tvnwarszawa\.pl)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R387 +s@^referer(?=:[^\n]*[./](?:twitch\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R388 +s@^referer(?=:[^\n]*[./](?:twitter\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R389 +s@^referer(?=:[^\n]*[./](?:uatoday\.tv)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R390 +s@^referer(?=:[^\n]*[./](?:usps\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R391 +s@^referer(?=:[^\n]*[./](?:vancl\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R392 +s@^referer(?=:[^\n]*[./](?:vd\.nl)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R393 +s@^referer(?=:[^\n]*[./](?:video\.foxnews\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R394 +s@^referer(?=:[^\n]*[./](?:video\.repubblica\.it)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R395 +s@^referer(?=:[^\n]*[./](?:video\.wired\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R396 +s@^referer(?=:[^\n]*[./](?:videos\.mediaite\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R397 +s@^referer(?=:[^\n]*[./](?:virginamerica\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R398 +s@^referer(?=:[^\n]*[./](?:visitpa\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R399 +s@^referer(?=:[^\n]*[./](?:vmware\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R4 +s@^referer(?=:[^\n]*[./](?:bahn\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R400 +s@^referer(?=:[^\n]*[./](?:vroniplag\.wikia\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R401 +s@^referer(?=:[^\n]*[./](?:vulture\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R402 +s@^referer(?=:[^\n]*[./](?:walmart\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R403 +s@^referer(?=:[^\n]*[./](?:washingtonpost\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R404 +s@^referer(?=:[^\n]*[./](?:weather\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R405 +s@^referer(?=:[^\n]*[./](?:web\.de)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R406 +s@^referer(?=:[^\n]*[./](?:wenxuecity\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R407 +s@^referer(?=:[^\n]*[./](?:windowsitpro\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R408 +s@^referer(?=:[^\n]*[./](?:wisedock\.at|wisedock\.co\.uk|wisedock\.com|wisedock\.de|wisedock\.eu)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R409 +s@^referer(?=:[^\n]*[./](?:worldc\.am)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R41 +s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R410 +s@^referer(?=:[^\n]*[./](?:wsj\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R411 +s@^referer(?=:[^\n]*[./](?:wwe\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R412 +s@^referer(?=:[^\n]*[./](?:xrussianteens\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R413 +s@^referer(?=:[^\n]*[./](?:ynet\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R414 +s@^referer(?=:[^\n]*[./](?:youngcons\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R415 +s@^referer(?=:[^\n]*[./](?:zap2it\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R416 +s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R417 +s@^referer(?=:[^\n]*[./](?:zylom\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R5 +s@^referer(?=:[^\n]*[./](?:bestbuy\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-elem-R9 +s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-unblock-elem@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaiov +s@^accept(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R112 +s@^referer(?=:[^\n]*[./](?:abcnews\.go\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R113 +s@^referer(?=:[^\n]*[./](?:abp\.nl)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R133 +s@^referer(?=:[^\n]*[./](?:ap\.org|newsinc\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R150 +s@^referer(?=:[^\n]*[./](?:badische-zeitung\.de)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R163 +s@^referer(?=:[^\n]*[./](?:breitbart\.tv|cbs\.com|filefront\.com|imdb\.com|laobserved\.com|tv\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R170 +s@^referer(?=:[^\n]*[./](?:cc\.com|sbs\.com\.au)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R177 +s@^referer(?=:[^\n]*[./](?:cicispizza\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R181 +s@^referer(?=:[^\n]*[./](?:clipfish\.de|rtl-now\.rtl\.de|rtl2now\.rtl2\.de|rtlnitronow\.de|superrtlnow\.de|voxnow\.de)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R189 +s@^referer(?=:[^\n]*[./](?:corriereadriatico\.it|ilgazzettino\.it|ilmattino\.it|ilmessaggero\.it|leggo\.it|quotidianodipuglia\.it)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R219 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com|live\.indiatimes\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R236 +s@^referer(?=:[^\n]*[./](?:galileo-videolexikon\.de)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R264 +s@^referer(?=:[^\n]*[./](?:lapresse\.ca)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R266 +s@^referer(?=:[^\n]*[./](?:leftlanenews\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R271 +s@^referer(?=:[^\n]*[./](?:livetvcafe\.net|player\.complex\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R282 +s@^referer(?=:[^\n]*[./](?:megatv\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R300 +s@^referer(?=:[^\n]*[./](?:n-tvnow\.de|rtl-now\.rtl\.de|rtl2now\.rtl2\.de|rtlnitronow\.de|superrtlnow\.de|voxnow\.de)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R302 +s@^referer(?=:[^\n]*[./](?:nbcolympics\.com)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R347 +s@^referer(?=:[^\n]*[./](?:sbs\.com\.au)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aaov-Caov-when-R405 +s@^referer(?=:[^\n]*[./](?:web\.de)):.*@ab2p-unblock-request-Aaov-Caov@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv +s@^accept(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aasv-Casv-when-R373 +s@^referer(?=:[^\n]*[./](?:thedailywh\.at)):.*@ab2p-unblock-request-Aasv-Casv@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Acj +s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript|\/css)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai +s@^accept(?=:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R128 +s@^referer(?=:[^\n]*[./](?:ancestry\.com|billetnet\.dk|billettservice\.no|lippupalvelu\.fi|macworld\.com|pcworld\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se|wsj\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R129 +s@^referer(?=:[^\n]*[./](?:ancestry\.com|billetnet\.dk|billettservice\.no|lippupalvelu\.fi|pcworld\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se|wsj\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R153 +s@^referer(?=:[^\n]*[./](?:bbm\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R158 +s@^referer(?=:[^\n]*[./](?:billetnet\.dk|billettservice\.no|citibank\.co\.in|goal\.com|lippupalvelu\.fi|pcworld\.com|riverisland\.com|techhive\.com|ticketmaster\.ae|ticketmaster\.co\.uk|ticketmaster\.de|ticketmaster\.ie|ticketmaster\.nl|ticnet\.se)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R165 +s@^referer(?=:[^\n]*[./](?:catalogfavoritesvip\.com|freeshipping\.com|freeshippingbymastercard\.com|freeshippingrewards\.com|habandvipplus\.com|inthecompanyofdogsvip\.com|naturesjewelryvip\.com|northstylevip\.com|pyramidcollectionvip\.com|serengeticatalogvip\.com|travelplus\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R216 +s@^referer(?=:[^\n]*[./](?:espn\.com\.br)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R223 +s@^referer(?=:[^\n]*[./](?:expansion\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R240 +s@^referer(?=:[^\n]*[./](?:gewinnspiele\.freenet\.de)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R248 +s@^referer(?=:[^\n]*[./](?:here\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R249 +s@^referer(?=:[^\n]*[./](?:hintaseuranta\.fi)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R277 +s@^referer(?=:[^\n]*[./](?:macworld\.com|pcworld\.com|techhive\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R285 +s@^referer(?=:[^\n]*[./](?:millionenklick\.web\.de)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R296 +s@^referer(?=:[^\n]*[./](?:my\.msn\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R350 +s@^referer(?=:[^\n]*[./](?:seek\.com\.au)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R369 +s@^referer(?=:[^\n]*[./](?:sueddeutsche\.de)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R370 +s@^referer(?=:[^\n]*[./](?:swordmaster\.org)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R405 +s@^referer(?=:[^\n]*[./](?:web\.de)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R406 +s@^referer(?=:[^\n]*[./](?:wenxuecity\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R407 +s@^referer(?=:[^\n]*[./](?:windowsitpro\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-R410 +s@^referer(?=:[^\n]*[./](?:wsj\.com)):.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-Rnt +s@^referer:.*@$&\t$host@Di +s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Ai-Ci@i +s@^referer:.*@-ab2p-unblock-request-Ai-Ci-when-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Ai-Ci-when-nR +s@^.*@ab2p-unblock-request-Ai-Ci@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj +s@^accept(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R11 +s@^referer(?=:[^\n]*[./](?:dailymotion\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R111 +s@^referer(?=:[^\n]*[./](?:3bmeteo\.com|quotidiano\.net|radioitalia\.it)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R115 +s@^referer(?=:[^\n]*[./](?:adidas\.de)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R127 +s@^referer(?=:[^\n]*[./](?:ancestry\.co\.uk|ancestry\.com|ancestry\.com\.au|ancestry\.it|blogtalkradio\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R134 +s@^referer(?=:[^\n]*[./](?:apotheken-umschau\.de|compo-hobby\.de|diabetes-ratgeber\.net|giz\.de|kaguma\.com|krombacher\.de)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R156 +s@^referer(?=:[^\n]*[./](?:betabeat\.com|couriermail\.com\.au|financialpost\.com|wcpo\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R159 +s@^referer(?=:[^\n]*[./](?:bing\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R166 +s@^referer(?=:[^\n]*[./](?:cbc\.ca)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R167 +s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cnet\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R173 +s@^referer(?=:[^\n]*[./](?:chase\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R174 +s@^referer(?=:[^\n]*[./](?:cheapflights\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R176 +s@^referer(?=:[^\n]*[./](?:christianhouseshare\.com\.au|gamemazing\.com|soundsonline\.com|support\.netgear\.com|support\.netgear\.de|support\.netgear\.es|support\.netgear\.fr|support\.netgear\.it|support\.netgear\.ru)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R193 +s@^referer(?=:[^\n]*[./](?:currys\.co\.uk)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R197 +s@^referer(?=:[^\n]*[./](?:desi-tashan\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R198 +s@^referer(?=:[^\n]*[./](?:desigual\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R203 +s@^referer(?=:[^\n]*[./](?:dl\.free\.fr)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R217 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R222 +s@^referer(?=:[^\n]*[./](?:everydayhealth\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R237 +s@^referer(?=:[^\n]*[./](?:gamespot\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R239 +s@^referer(?=:[^\n]*[./](?:gewinnspiel\.gmx\.de|gewinnspiel\.web\.de|top\.de)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R243 +s@^referer(?=:[^\n]*[./](?:grazia\.it|panorama-auto\.it|panorama\.it)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R251 +s@^referer(?=:[^\n]*[./](?:hotelchocolat\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R257 +s@^referer(?=:[^\n]*[./](?:investopedia\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R260 +s@^referer(?=:[^\n]*[./](?:jsperf\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R261 +s@^referer(?=:[^\n]*[./](?:kapaza\.be)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R278 +s@^referer(?=:[^\n]*[./](?:macys\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R281 +s@^referer(?=:[^\n]*[./](?:mail\.tiscali\.it)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R283 +s@^referer(?=:[^\n]*[./](?:menshealth\.de|runnersworld\.de)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R296 +s@^referer(?=:[^\n]*[./](?:my\.msn\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R301 +s@^referer(?=:[^\n]*[./](?:nbcnews\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R304 +s@^referer(?=:[^\n]*[./](?:netcombo\.com\.br)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R305 +s@^referer(?=:[^\n]*[./](?:newegg\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R310 +s@^referer(?=:[^\n]*[./](?:norton\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R312 +s@^referer(?=:[^\n]*[./](?:nowtv\.de)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R315 +s@^referer(?=:[^\n]*[./](?:nylon\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R320 +s@^referer(?=:[^\n]*[./](?:oralb\.de)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R325 +s@^referer(?=:[^\n]*[./](?:photos\.essence\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R332 +s@^referer(?=:[^\n]*[./](?:popeater\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R344 +s@^referer(?=:[^\n]*[./](?:rrstar\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R353 +s@^referer(?=:[^\n]*[./](?:sky\.it|ubibanca\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R374 +s@^referer(?=:[^\n]*[./](?:theladbible\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R376 +s@^referer(?=:[^\n]*[./](?:thestar\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R388 +s@^referer(?=:[^\n]*[./](?:twitter\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R400 +s@^referer(?=:[^\n]*[./](?:vroniplag\.wikia\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R402 +s@^referer(?=:[^\n]*[./](?:walmart\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R403 +s@^referer(?=:[^\n]*[./](?:washingtonpost\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R404 +s@^referer(?=:[^\n]*[./](?:weather\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R409 +s@^referer(?=:[^\n]*[./](?:worldc\.am)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R411 +s@^referer(?=:[^\n]*[./](?:wwe\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-R9 +s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-unblock-request-Aj-Cj@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-Rnt +s@^referer:.*@$&\t$host@Di +s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Aj-Cj@i +s@^referer:.*@-ab2p-unblock-request-Aj-Cj-when-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Aj-Cj-when-nR +s@^.*@ab2p-unblock-request-Aj-Cj@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Caiov +s@^content-type(?=:[\s\w]*(?:image\/|video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Caov +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/octet-stream)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Casv +s@^content-type(?=:[\s\w]*(?:video\/|audio\/|\/(?:x-)?shockwave-flash)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Ccj +s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript|\/css)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Ci +s@^content-type(?=:[\s\w]*(?:image\/)):.*@ab2p-unblock-request@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-request-Cj +s@^content-type(?=:[\s\w]*(?:\/(?:x-)?javascript)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R110 +s@^referer(?=:[^\n]*[./](?:24ace\.co\.uk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R114 +s@^referer(?=:[^\n]*[./](?:acehardware\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R115 +s@^referer(?=:[^\n]*[./](?:adidas\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R117 +s@^referer(?=:[^\n]*[./](?:afternic\.com|amctv\.com|bebo\.com|ch10\.co\.il|cliphunter\.com|daemon-tools\.cc|desigual\.com|gamepix\.com|greentoe\.com|housing\.wisc\.edu|infogr\.am|jackbox\.tv|keygames\.com|manowthaimordialloc\.com\.au|maxiclimber\.com|orbitum\.com|pluto\.tv|rebtel\.com|sbnation\.com|sci2\.tv|seatgeek\.com|support\.amd\.com|tagheuer\.com\.au|tv10play\.se|tv3play\.se|tv6play\.se|tv8play\.se|video\.pbs\.org|vox\.com|vpnster\.com|weather\.gov|westernunion\.at|westernunion\.be|westernunion\.ca|westernunion\.ch|westernunion\.cl|westernunion\.co\.jp|westernunion\.co\.nz|westernunion\.co\.uk|westernunion\.co\.za|westernunion\.com|westernunion\.com\.au|westernunion\.com\.co|westernunion\.com\.hk|westernunion\.com\.my|westernunion\.com\.pe|westernunion\.de|westernunion\.fr|westernunion\.ie|westernunion\.it|westernunion\.nl|westernunion\.ph|westernunion\.pl|westernunion\.se|westernunion\.sg|www\.google\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R118 +s@^referer(?=:[^\n]*[./](?:agame\.com|allrecipes\.com|amctv\.com|apl\.tv|babycenter\.com|bonappetit\.com|calgaryherald\.com|canada\.com|cbc\.ca|dailymail\.co\.uk|deviantart\.com|discovery\.com|edmontonjournal\.com|fastcompany\.com|financialpost\.com|firstwefeast\.com|hitfix\.com|huffingtonpost\.com|landandfarm\.com|last\.fm|leaderpost\.com|m\.tmz\.com|montrealgazette\.com|nationalpost\.com|newsday\.com|ottawacitizen\.com|outsideonline\.com|radaronline\.com|salon\.com|sci2\.tv|syfy\.com|theprovince\.com|thestar\.com|thestarphoenix\.com|thinkatheist\.com|vancouversun\.com|windsorstar\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R119 +s@^referer(?=:[^\n]*[./](?:aim\.com|autoblog\.com|autos\.aol\.com|engadget\.com|mapquest\.com|video\.aol\.com|www\.aol\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R120 +s@^referer(?=:[^\n]*[./](?:aljazeera\.com|ballerstatus\.com|bikemap\.net|carltonjordan\.com|cashu\.com|coolsport\.tv|dereon\.com|dr\.dk|everydaysource\.com|fab\.com|girlgames4u\.com|incgamers\.com|ip-address\.cc|maaduu\.com|qatarairways\.com|sat-direction\.com|sotctours\.com|stoli\.com|vibe\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R121 +s@^referer(?=:[^\n]*[./](?:amazingpics\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R122 +s@^referer(?=:[^\n]*[./](?:amctv\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R123 +s@^referer(?=:[^\n]*[./](?:americanexpress\.com|caranddriver\.com|citizensbank\.com|dell\.com|homedepot\.com|staples\.com|t-mobile\.com|target\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R124 +s@^referer(?=:[^\n]*[./](?:amypink\.de|biznews\.com|cryptospot\.me|droid-life\.com|forwardprogressives\.com|fpif\.org|fullpotentialma\.com|geekzone\.co\.nz|goldsday\.com|imageupload\.co\.uk|is-arquitectura\.es|mmanews\.com|orain\.org|tvunblock\.com|unilad\.co\.uk|xrussianteens\.com|youngcons\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R126 +s@^referer(?=:[^\n]*[./](?:analytics\.twitter\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R130 +s@^referer(?=:[^\n]*[./](?:android\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R132 +s@^referer(?=:[^\n]*[./](?:anoncer\.net|tv\.yandex\.ru)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R133 +s@^referer(?=:[^\n]*[./](?:ap\.org|newsinc\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R135 +s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R136 +s@^referer(?=:[^\n]*[./](?:apps\.facebook\.com|caranddriver\.com|g4tv\.com|nymag\.com|salon\.com|theblaze\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R137 +s@^referer(?=:[^\n]*[./](?:architizer\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R138 +s@^referer(?=:[^\n]*[./](?:ardmediathek\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R139 +s@^referer(?=:[^\n]*[./](?:arte\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R14 +s@^referer(?=:[^\n]*[./](?:ehow\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R140 +s@^referer(?=:[^\n]*[./](?:asana\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R141 +s@^referer(?=:[^\n]*[./](?:associatedcontent\.com|cbs\.com|cbsatlanta\.com|centurylink\.net|comedy\.com|eurweb\.com|fox5vegas\.com|foxcarolina\.com|grabnetworks\.com|kctv5\.com|kpho\.com|kptv\.com|theimproper\.com|thenewsroom\.com|tv\.com|tvguide\.com|wfsb\.com|wnem\.com|wsmv\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R142 +s@^referer(?=:[^\n]*[./](?:att\.yahoo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R143 +s@^referer(?=:[^\n]*[./](?:au\.launch\.yahoo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R144 +s@^referer(?=:[^\n]*[./](?:autoblog\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R145 +s@^referer(?=:[^\n]*[./](?:autoblog\.com|autos\.aol\.com|dailyfinance\.com|moviefone\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R146 +s@^referer(?=:[^\n]*[./](?:autoblog\.com|dailyfinance\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R147 +s@^referer(?=:[^\n]*[./](?:automatensuche\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R148 +s@^referer(?=:[^\n]*[./](?:autorevue\.cz|e15\.cz|mobilmania\.cz|sportrevue\.cz|zive\.cz)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R149 +s@^referer(?=:[^\n]*[./](?:axure\.com|chocomaru\.com|denverbroncos\.com|muselive\.com|streetfire\.net|wickedthemusical\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R151 +s@^referer(?=:[^\n]*[./](?:barbie\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R152 +s@^referer(?=:[^\n]*[./](?:barclaycard\.co\.uk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R154 +s@^referer(?=:[^\n]*[./](?:bebo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R155 +s@^referer(?=:[^\n]*[./](?:bebo\.com|rebtel\.com|support\.amd\.com|vox\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R157 +s@^referer(?=:[^\n]*[./](?:bienpublic\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R160 +s@^referer(?=:[^\n]*[./](?:blog\.cloudflare\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R161 +s@^referer(?=:[^\n]*[./](?:bloomberg\.com|breitbart\.com|breitbart\.tv|nme\.com|slatev\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R162 +s@^referer(?=:[^\n]*[./](?:bound2hiphop\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R164 +s@^referer(?=:[^\n]*[./](?:carambatv\.ru)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R168 +s@^referer(?=:[^\n]*[./](?:cbsnews\.com|cnet\.com|gamespot\.com|tv\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R169 +s@^referer(?=:[^\n]*[./](?:cbssports\.com|gamespot\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R171 +s@^referer(?=:[^\n]*[./](?:cdon\.fi)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R172 +s@^referer(?=:[^\n]*[./](?:change\.org|greentoe\.com|intuit\.com|nbc\.com|thefrisky\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R175 +s@^referer(?=:[^\n]*[./](?:chip\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R178 +s@^referer(?=:[^\n]*[./](?:ciscospark\.com|citymapper\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R179 +s@^referer(?=:[^\n]*[./](?:citi\.com|citibank\.com|enmasse\.com|login\.skype\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R180 +s@^referer(?=:[^\n]*[./](?:clearlycontacts\.ca)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R182 +s@^referer(?=:[^\n]*[./](?:cloudflare\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R183 +s@^referer(?=:[^\n]*[./](?:cnet\.com|gamespot\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R184 +s@^referer(?=:[^\n]*[./](?:cnn\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R185 +s@^referer(?=:[^\n]*[./](?:colbertnation\.com|thedailyshow\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R186 +s@^referer(?=:[^\n]*[./](?:comingsoon\.net|playstationlifestyle\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R187 +s@^referer(?=:[^\n]*[./](?:common\.tv2\.dk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R188 +s@^referer(?=:[^\n]*[./](?:compassion\.com|creditsesame\.com|forbes\.com|freeshipping\.com|heroku\.com|hotukdeals\.com|imageshack\.com|lifelock\.com|malwarebytes\.org|policymic\.com|ricardo\.ch|techrepublic\.com|zdnet\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R189 +s@^referer(?=:[^\n]*[./](?:corriereadriatico\.it|ilgazzettino\.it|ilmattino\.it|ilmessaggero\.it|leggo\.it|quotidianodipuglia\.it)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R190 +s@^referer(?=:[^\n]*[./](?:cqcounter\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R191 +s@^referer(?=:[^\n]*[./](?:credit\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R192 +s@^referer(?=:[^\n]*[./](?:csmonitor\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R193 +s@^referer(?=:[^\n]*[./](?:currys\.co\.uk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R194 +s@^referer(?=:[^\n]*[./](?:custojusto\.pt)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R195 +s@^referer(?=:[^\n]*[./](?:darmstadt\.ui-traffic\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R196 +s@^referer(?=:[^\n]*[./](?:dcard\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R199 +s@^referer(?=:[^\n]*[./](?:desigual\.com|drumstick\.com|ebuyer\.com|elevationscu\.com|gamepix\.com|google\.com|keygames\.com|optus\.com\.au|rebtel\.com|rockstargames\.com|rollingstone\.com|rozetka\.com\.ua|sixflags\.com|support\.amd\.com|talktalk\.co\.uk|techradar\.com|toto\.co\.jp|usmagazine\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R200 +s@^referer(?=:[^\n]*[./](?:desigual\.com|rebtel\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R201 +s@^referer(?=:[^\n]*[./](?:dice\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R202 +s@^referer(?=:[^\n]*[./](?:diejugendherbergen\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R203 +s@^referer(?=:[^\n]*[./](?:dl\.free\.fr)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R204 +s@^referer(?=:[^\n]*[./](?:dn\.se)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R205 +s@^referer(?=:[^\n]*[./](?:dnf\.qq\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R206 +s@^referer(?=:[^\n]*[./](?:doverdowns\.com|lifehack\.org|maxiclimber\.com|merriam-webster\.com|toto\.co\.jp|tripinsurance\.ru|vimeo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R207 +s@^referer(?=:[^\n]*[./](?:droid-life\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R209 +s@^referer(?=:[^\n]*[./](?:ebaumsworld\.com|nydailynews\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R210 +s@^referer(?=:[^\n]*[./](?:egotastic\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R211 +s@^referer(?=:[^\n]*[./](?:eloan\.co\.il)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R212 +s@^referer(?=:[^\n]*[./](?:email\.1und1\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R213 +s@^referer(?=:[^\n]*[./](?:engadget\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R214 +s@^referer(?=:[^\n]*[./](?:engwords\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R215 +s@^referer(?=:[^\n]*[./](?:entertainmentwise\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R218 +s@^referer(?=:[^\n]*[./](?:espn\.go\.com|espndeportes\.com|espnfc\.co\.uk|espnfc\.com|espnfc\.com\.au|espnfc\.us|espnfcasia\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R220 +s@^referer(?=:[^\n]*[./](?:europafm\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R221 +s@^referer(?=:[^\n]*[./](?:everycarlisted\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R224 +s@^referer(?=:[^\n]*[./](?:fallout4\.com|metronews\.ca|mtv\.com\.lb|teslamotors\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R225 +s@^referer(?=:[^\n]*[./](?:feex\.co\.il|reshet\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R226 +s@^referer(?=:[^\n]*[./](?:finance\.yahoo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R227 +s@^referer(?=:[^\n]*[./](?:fnac\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R228 +s@^referer(?=:[^\n]*[./](?:foodnetwork\.co\.uk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R229 +s@^referer(?=:[^\n]*[./](?:forbes\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R230 +s@^referer(?=:[^\n]*[./](?:ford\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R231 +s@^referer(?=:[^\n]*[./](?:forums\.redflagdeals\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R232 +s@^referer(?=:[^\n]*[./](?:forwardprogressives\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R233 +s@^referer(?=:[^\n]*[./](?:foxnews\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R234 +s@^referer(?=:[^\n]*[./](?:ft\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R235 +s@^referer(?=:[^\n]*[./](?:gaana\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R238 +s@^referer(?=:[^\n]*[./](?:garmin\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R242 +s@^referer(?=:[^\n]*[./](?:google\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R244 +s@^referer(?=:[^\n]*[./](?:greentoe\.com|thescene\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R246 +s@^referer(?=:[^\n]*[./](?:hbf\.com\.au|seattlepi\.com|tv\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R247 +s@^referer(?=:[^\n]*[./](?:heatmap\.me)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R249 +s@^referer(?=:[^\n]*[./](?:hintaseuranta\.fi)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R250 +s@^referer(?=:[^\n]*[./](?:homepath\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R252 +s@^referer(?=:[^\n]*[./](?:hotwire\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R253 +s@^referer(?=:[^\n]*[./](?:iherb\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R254 +s@^referer(?=:[^\n]*[./](?:immowelt\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R255 +s@^referer(?=:[^\n]*[./](?:indiedb\.com|indieroyale\.com|moddb\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R258 +s@^referer(?=:[^\n]*[./](?:ipla\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R259 +s@^referer(?=:[^\n]*[./](?:itworld\.com|juniper\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R262 +s@^referer(?=:[^\n]*[./](?:karnaval\.com|livestream\.com|luxuryrealestate\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R263 +s@^referer(?=:[^\n]*[./](?:kuathletics\.com|mutigers\.com|okstate\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R264 +s@^referer(?=:[^\n]*[./](?:lapresse\.ca)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R265 +s@^referer(?=:[^\n]*[./](?:lazada\.co\.id)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R267 +s@^referer(?=:[^\n]*[./](?:lenovo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R268 +s@^referer(?=:[^\n]*[./](?:lenovo\.com|nationalgeographic\.com|paypal\.fr)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R269 +s@^referer(?=:[^\n]*[./](?:ligtv\.com\.tr)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R270 +s@^referer(?=:[^\n]*[./](?:livespotting\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R272 +s@^referer(?=:[^\n]*[./](?:lovehoney\.co\.uk|maxiclimber\.com|opendns\.com|openshift\.com|vimeo\.com|westernunion\.at|westernunion\.be|westernunion\.ca|westernunion\.ch|westernunion\.cl|westernunion\.co\.jp|westernunion\.co\.nz|westernunion\.co\.uk|westernunion\.co\.za|westernunion\.com|westernunion\.com\.au|westernunion\.com\.co|westernunion\.com\.hk|westernunion\.com\.my|westernunion\.com\.pe|westernunion\.de|westernunion\.fr|westernunion\.ie|westernunion\.it|westernunion\.nl|westernunion\.ph|westernunion\.pl|westernunion\.se|westernunion\.sg)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R273 +s@^referer(?=:[^\n]*[./](?:lz\.taobao\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R275 +s@^referer(?=:[^\n]*[./](?:m\.tmz\.com|salon\.com|zap2it\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R276 +s@^referer(?=:[^\n]*[./](?:mackweldon\.com|telegraph\.co\.uk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R278 +s@^referer(?=:[^\n]*[./](?:macys\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R279 +s@^referer(?=:[^\n]*[./](?:mail\.biz\.rr\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R280 +s@^referer(?=:[^\n]*[./](?:mail\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R281 +s@^referer(?=:[^\n]*[./](?:mail\.tiscali\.it)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R284 +s@^referer(?=:[^\n]*[./](?:microsoft\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R286 +s@^referer(?=:[^\n]*[./](?:miutcank\.hu)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R287 +s@^referer(?=:[^\n]*[./](?:mixpanel\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R288 +s@^referer(?=:[^\n]*[./](?:mobile\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R289 +s@^referer(?=:[^\n]*[./](?:momondo\.co\.uk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R290 +s@^referer(?=:[^\n]*[./](?:momondo\.dk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R291 +s@^referer(?=:[^\n]*[./](?:monopoly\.mcdonalds\.co\.uk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R292 +s@^referer(?=:[^\n]*[./](?:moshimonsters\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R293 +s@^referer(?=:[^\n]*[./](?:mtvema\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R295 +s@^referer(?=:[^\n]*[./](?:musicfeeds\.com\.au|nzherald\.co\.nz|sf\.se|weatherchannel\.com\.au)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R297 +s@^referer(?=:[^\n]*[./](?:myaccount\.nytimes\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R299 +s@^referer(?=:[^\n]*[./](?:mycommunitynow\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R300 +s@^referer(?=:[^\n]*[./](?:n-tvnow\.de|rtl-now\.rtl\.de|rtl2now\.rtl2\.de|rtlnitronow\.de|superrtlnow\.de|voxnow\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R303 +s@^referer(?=:[^\n]*[./](?:ndr\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R304 +s@^referer(?=:[^\n]*[./](?:netcombo\.com\.br)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R305 +s@^referer(?=:[^\n]*[./](?:newegg\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R306 +s@^referer(?=:[^\n]*[./](?:news\.com\.au)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R307 +s@^referer(?=:[^\n]*[./](?:news\.gamme\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R308 +s@^referer(?=:[^\n]*[./](?:nexttv\.com\.tw)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R309 +s@^referer(?=:[^\n]*[./](?:nike\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R311 +s@^referer(?=:[^\n]*[./](?:novatv\.bg)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R313 +s@^referer(?=:[^\n]*[./](?:nyandcompany\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R314 +s@^referer(?=:[^\n]*[./](?:nydailynews\.com|travelscream\.com|yahoo\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R316 +s@^referer(?=:[^\n]*[./](?:nytimes\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R317 +s@^referer(?=:[^\n]*[./](?:officedepot\.com|shop\.lego\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R318 +s@^referer(?=:[^\n]*[./](?:openhub\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R319 +s@^referer(?=:[^\n]*[./](?:orain\.org)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R320 +s@^referer(?=:[^\n]*[./](?:oralb\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R321 +s@^referer(?=:[^\n]*[./](?:parismatch\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R322 +s@^referer(?=:[^\n]*[./](?:pasts\.lv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R323 +s@^referer(?=:[^\n]*[./](?:pbs\.org)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R324 +s@^referer(?=:[^\n]*[./](?:peterboroughtoday\.co\.uk)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R326 +s@^referer(?=:[^\n]*[./](?:photos\.toofab\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R327 +s@^referer(?=:[^\n]*[./](?:planet-sports\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R328 +s@^referer(?=:[^\n]*[./](?:player\.radio\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R329 +s@^referer(?=:[^\n]*[./](?:playstation\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R33 +s@^referer(?=:[^\n]*[./](?:paypal\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R330 +s@^referer(?=:[^\n]*[./](?:pocketdice\.io|slantnews\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R331 +s@^referer(?=:[^\n]*[./](?:poiskstroek\.ru)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R334 +s@^referer(?=:[^\n]*[./](?:quantcast\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R336 +s@^referer(?=:[^\n]*[./](?:readwriteweb\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R337 +s@^referer(?=:[^\n]*[./](?:realhardwarereviews\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R338 +s@^referer(?=:[^\n]*[./](?:record\.xl\.pt)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R339 +s@^referer(?=:[^\n]*[./](?:redfin\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R340 +s@^referer(?=:[^\n]*[./](?:reference\.com|thesaurus\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R341 +s@^referer(?=:[^\n]*[./](?:reshet\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R342 +s@^referer(?=:[^\n]*[./](?:resignationbrewery\.com|video\.foxnews\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R343 +s@^referer(?=:[^\n]*[./](?:rogersradio\.ca)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R345 +s@^referer(?=:[^\n]*[./](?:rte\.ie)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R346 +s@^referer(?=:[^\n]*[./](?:runnersworld\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R348 +s@^referer(?=:[^\n]*[./](?:schach\.zeit\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R351 +s@^referer(?=:[^\n]*[./](?:skaties\.lv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R352 +s@^referer(?=:[^\n]*[./](?:sky\.it)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R354 +s@^referer(?=:[^\n]*[./](?:small-breasted-teens\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R355 +s@^referer(?=:[^\n]*[./](?:social\.economico\.pt)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R356 +s@^referer(?=:[^\n]*[./](?:spatialbuzz\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R357 +s@^referer(?=:[^\n]*[./](?:speedtest\.net)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R358 +s@^referer(?=:[^\n]*[./](?:spielen\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R359 +s@^referer(?=:[^\n]*[./](?:sportsbet\.com\.au)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R360 +s@^referer(?=:[^\n]*[./](?:sportube\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R361 +s@^referer(?=:[^\n]*[./](?:sprint\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R363 +s@^referer(?=:[^\n]*[./](?:starwoodhotels\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R364 +s@^referer(?=:[^\n]*[./](?:store\.office\.live\.com|xbox\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R365 +s@^referer(?=:[^\n]*[./](?:storenvy\.com|tvguide\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R366 +s@^referer(?=:[^\n]*[./](?:stylished\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R367 +s@^referer(?=:[^\n]*[./](?:stylished\.de|t-online\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R368 +s@^referer(?=:[^\n]*[./](?:subaru\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R371 +s@^referer(?=:[^\n]*[./](?:t-online\.de)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R372 +s@^referer(?=:[^\n]*[./](?:tagesanzeiger\.ch)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R375 +s@^referer(?=:[^\n]*[./](?:thenounproject\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R377 +s@^referer(?=:[^\n]*[./](?:thestreet\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R378 +s@^referer(?=:[^\n]*[./](?:tim\.it)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R379 +s@^referer(?=:[^\n]*[./](?:time\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R380 +s@^referer(?=:[^\n]*[./](?:timesfreepress\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R381 +s@^referer(?=:[^\n]*[./](?:tomshardware\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R382 +s@^referer(?=:[^\n]*[./](?:tradera\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R383 +s@^referer(?=:[^\n]*[./](?:tsn\.ua)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R384 +s@^referer(?=:[^\n]*[./](?:tudou\.com|ynet\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R385 +s@^referer(?=:[^\n]*[./](?:tv3play\.no)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R386 +s@^referer(?=:[^\n]*[./](?:tvnwarszawa\.pl)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R387 +s@^referer(?=:[^\n]*[./](?:twitch\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R389 +s@^referer(?=:[^\n]*[./](?:uatoday\.tv)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R390 +s@^referer(?=:[^\n]*[./](?:usps\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R391 +s@^referer(?=:[^\n]*[./](?:vancl\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R392 +s@^referer(?=:[^\n]*[./](?:vd\.nl)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R393 +s@^referer(?=:[^\n]*[./](?:video\.foxnews\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R394 +s@^referer(?=:[^\n]*[./](?:video\.repubblica\.it)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R395 +s@^referer(?=:[^\n]*[./](?:video\.wired\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R396 +s@^referer(?=:[^\n]*[./](?:videos\.mediaite\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R398 +s@^referer(?=:[^\n]*[./](?:visitpa\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R401 +s@^referer(?=:[^\n]*[./](?:vulture\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R402 +s@^referer(?=:[^\n]*[./](?:walmart\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R403 +s@^referer(?=:[^\n]*[./](?:washingtonpost\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R41 +s@^referer(?=:[^\n]*[./](?:skype\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R412 +s@^referer(?=:[^\n]*[./](?:xrussianteens\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R413 +s@^referer(?=:[^\n]*[./](?:ynet\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R414 +s@^referer(?=:[^\n]*[./](?:youngcons\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R415 +s@^referer(?=:[^\n]*[./](?:zap2it\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R416 +s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R417 +s@^referer(?=:[^\n]*[./](?:zylom\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-R9 +s@^referer(?=:[^\n]*[./](?:cnet\.com)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Rnt +s@^referer:.*@$&\t$host@Di +s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request@i +s@^referer:.*@-ab2p-unblock-request-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx +s@^x-requested-with(?=:\s*(?:xmlhttprequest)):.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R116 +s@^referer(?=:[^\n]*[./](?:ads\.twitter\.com|change\.org|greentoe\.com|kickstarter\.com|mint\.com|nbc\.com|thefrisky\.com|vid\.me)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R125 +s@^referer(?=:[^\n]*[./](?:amypink\.de|droid-life\.com|mmanews\.com|unilad\.co\.uk)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R131 +s@^referer(?=:[^\n]*[./](?:anoncer\.net)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R16 +s@^referer(?=:[^\n]*[./](?:facebook\.com)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R192 +s@^referer(?=:[^\n]*[./](?:csmonitor\.com)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R203 +s@^referer(?=:[^\n]*[./](?:dl\.free\.fr)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R211 +s@^referer(?=:[^\n]*[./](?:eloan\.co\.il)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R244 +s@^referer(?=:[^\n]*[./](?:greentoe\.com|thescene\.com)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R274 +s@^referer(?=:[^\n]*[./](?:m\.flickr\.com)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R319 +s@^referer(?=:[^\n]*[./](?:orain\.org)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R335 +s@^referer(?=:[^\n]*[./](?:rambler\.ru)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R362 +s@^referer(?=:[^\n]*[./](?:start\.toshiba\.com)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R397 +s@^referer(?=:[^\n]*[./](?:virginamerica\.com)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-R399 +s@^referer(?=:[^\n]*[./](?:vmware\.com)):.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-Rnt +s@^referer:.*@$&\t$host@Di +s@^referer(?=:\s*(?:https?:\/\/)?(?:[\w.-]*\.)?([\w-]+\.[\w-]+)[^\w.-].*\1$):.*@ab2p-unblock-request-Xx@i +s@^referer:.*@-ab2p-unblock-request-Xx-when-nR@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-Xx-when-nR +s@^.*@ab2p-unblock-request-Xx@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-request-nR +s@^.*@ab2p-unblock-request@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R208 +s@^referer(?=:[^\n]*[./](?:dtdc\.com)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R241 +s@^referer(?=:[^\n]*[./](?:globes\.co\.il)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R245 +s@^referer(?=:[^\n]*[./](?:gutscheindoktor\.de|preis-vergleich\.tv|preismafia\.com)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R256 +s@^referer(?=:[^\n]*[./](?:inn\.co\.il)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R294 +s@^referer(?=:[^\n]*[./](?:multipack\.com\.mx)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R298 +s@^referer(?=:[^\n]*[./](?:mycokerewards\.com)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R333 +s@^referer(?=:[^\n]*[./](?:preis-vergleich\.tv)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R349 +s@^referer(?=:[^\n]*[./](?:sears\.com)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R4 +s@^referer(?=:[^\n]*[./](?:bahn\.de)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R408 +s@^referer(?=:[^\n]*[./](?:wisedock\.at|wisedock\.co\.uk|wisedock\.com|wisedock\.de|wisedock\.eu)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R416 +s@^referer(?=:[^\n]*[./](?:zillow\.com)):.*@ab2p-unblock-xframe@Ti + +CLIENT-HEADER-TAGGER: ab2p-unblock-xframe-R5 +s@^referer(?=:[^\n]*[./](?:bestbuy\.com)):.*@ab2p-unblock-xframe@Ti diff --git a/1_9.r18_plugin/ad_plug/rule2/ab2p.system.action b/1_9.r18_plugin/ad_plug/rule2/ab2p.system.action new file mode 100644 index 0000000..4c516de --- /dev/null +++ b/1_9.r18_plugin/ad_plug/rule2/ab2p.system.action @@ -0,0 +1,32 @@ +#AbBlock system actions -- don't edit -- + +{+set-image-blocker{blank} \ + +filter{ab2p-elemhide-filter} \ + +client-header-tagger{ab2p-elemhide-check-debug} \ + +client-header-tagger{ab2p-handle-as-image-c} \ + +server-header-tagger{ab2p-handle-as-image-s}} +/ + +{-filter{ab2p-elemhide-filter} \ + +filter{ab2p-elemhide-filter-debug}} +TAG:^ab2p-elemhide-filter-debug$ + +{+handle-as-image} +TAG:^ab2p-handle-as-image$ + +{+block{ adblock rules }} +TAG:^ab2p-block-s$ + +{-block} +TAG:^ab2p-unblock-u$ + +{-block} +TAG:^ab2p-unblock-d$ + +{-block} +TAG:^ab2p-unblock-s$ + +#workaround for gzip handling privoxy bugs +{ +prevent-compression } + *.yahoo.com + *.amazon.com diff --git a/1_9.r18_plugin/ad_plug/rule2/ab2p.system.filter b/1_9.r18_plugin/ad_plug/rule2/ab2p.system.filter new file mode 100644 index 0000000..57302f9 --- /dev/null +++ b/1_9.r18_plugin/ad_plug/rule2/ab2p.system.filter @@ -0,0 +1,39 @@ +#AbBlock system filters -- don't edit -- + + +SERVER-HEADER-TAGGER: ab2p-block-s +s@.*@ab2p-block-s@Ti + + +CLIENT-HEADER-TAGGER: ab2b-unblock-u +s@user-agent.*@ab2p-unblock-u@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-d +s@date.*@ab2p-unblock-d@Ti + +SERVER-HEADER-TAGGER: ab2p-unblock-s +s@server.*@ab2p-unblock-s@Ti + + +SERVER-HEADER-TAGGER: ab2p-handle-as-image-s +s@^content-type(?=:[\s\w]*image\/):.*@ab2p-handle-as-image@Ti + +CLIENT-HEADER-TAGGER: ab2p-handle-as-image-c +s@^accept(?=:[\s\w]*image\/):.*@ab2p-handle-as-image@Ti + +SERVER-HEADER-FILTER: ab2p-xframe-filter +s@.*\sHTTP\/1.*@$&\r\nX-Frame-Options: DENY@i + +CLIENT-HEADER-TAGGER: ab2p-elemhide-check-debug +s@^cookie:.*ab2p-elemhide-filter-debug=true(?:;|$).*@ab2p-elemhide-filter-debug@Ti + +FILTER: ab2p-elemhide-filter +s@[^'"\s]\s*]*>(?=\s*[^'"\s])@$&@iUD + +FILTER: ab2p-elemhide-filter-debug +s@[^'"\s]\s*]*>(?=\s*[^'"\s])@$&@iUD + +FILTER: ab2p-popup-filter +s@[^'"\s]\s*]*>(?=\s*[^'"\s])@$&@iUD + + diff --git a/1_9.r18_plugin/ad_plug/ruleadbyby/ab2p.action b/1_9.r18_plugin/ad_plug/ruleadbyby/ab2p.action new file mode 100644 index 0000000..62f8bc4 --- /dev/null +++ b/1_9.r18_plugin/ad_plug/ruleadbyby/ab2p.action @@ -0,0 +1,23733 @@ +#AbBlock generated actions -- don't edit -- +#----- source ----- +#Title: EasyList China +#Url: /home/rh/Music/lazy222.txt +#Last modified: 29 Jan 2016 16:40 UTC +#Expires: 96 hours +#Version: 201601291453 +#License: https://easylist-downloads.adblockplus.org/COPYING +#Homepage: http://abpchina.org/forum/ +#------- end ------ + +#ab2p-block-dnt +{+add-header{DNT: 1} \ +} +TAG:^ab2p-block-dnt$ +# ||99files.net/download.html$s@function openPopAd@function openPopAdxxx@ (lazy222.txt: 5098) +.99files.net/download\.html\$s@function openPopAd@function openPopAdxxx@ +# |http://www.keenfine.com/$s@@@ (lazy222.txt: 5097) +www.keenfine.com/\$s@@@ +# ||www.vafuli.com$s@@@ (lazy222.txt: 5096) +# ||www.94pan.com$s@@@ (lazy222.txt: 5095) +# ||sexinsex.net/forum/$s@class="t_msgfont">*.*?function getCookie(name){*@@ (lazy222.txt: 5085) +zhongzi.in/\$s@@@ +# |http://ypan.cc/$s@@@ +# |http://www1.baidu.com/s?$s@display:block !important;visibility:visible !important")@display:none !important")@ (lazy222.txt: 5082) +www1.baidu.com/s\?\$s@display:block !important;visibility:visible !important"\)@display:none !important"\)@ +# |http://www.zimuzu.tv/$s@@@ (lazy222.txt: 5078) +# |http://www.youban.com/media-$s@var startime=parseInt(10);@var startime=parseInt(0);@ (lazy222.txt: 5077) +www.youban.com/media-\$s@var startime=parseInt\(10\);@var startime=parseInt\(0\);@ +# |http://www.vafuli.com/$s@@@ +# |http://www.tt1069.com/$s@document.getElementById("tester") == undefined@document.getElementById("tester") != undefined@ (lazy222.txt: 5075) +www.tt1069.com/\$s@document\.getElementById\("tester"\) == undefined@document\.getElementById\("tester"\) != undefined@ +# |http://www.tiexue.net/|$s@
??
@
@@ (lazy222.txt: 5074) +www.tiexue.net/\|\$s@
\?\?
@
@@ +# |http://www.tiexue.net/$s@{height: 120px;@{height: 0px;@ (lazy222.txt: 5073) +www.tiexue.net/\$s@\{height: 120px;@\{height: 0px;@ +# |http://www.shxd.net/$s@@@ +# |http://www.remenxs.com/images/book.js$s@//MLAD*tanx_s,tanx_h.firstChild);");@@ (lazy222.txt: 5071) +www.remenxs.com/images/book\.js\$s@//MLAD.*tanx_s,tanx_h\.firstChild\);"\);@@ +# |http://www.remenxs.com/css/page.js$s@//ad*function rd_s(){@function rd_s(){@ (lazy222.txt: 5070) +www.remenxs.com/css/page\.js\$s@//ad.*function rd_s\(\)\{@function rd_s\(\)\{@ +# |http://www.ppdaili.com/$s@@@ (lazy222.txt: 5069) +www.ppdaili.com/\$s@@@ +# |http://www.orsoon.com/js/tab.js$s@function soft_tonglan_bd(){*function azdown_bd(){@function azdown_bd(){@ (lazy222.txt: 5068) +www.orsoon.com/js/tab\.js\$s@function soft_tonglan_bd\(\)\{.*function azdown_bd\(\)\{@function azdown_bd\(\)\{@ +# |http://www.ndwww.cn/video/$s@t:10,//@t:1,//@ (lazy222.txt: 5067) +www.ndwww.cn/video/\$s@t:10,//@t:1,//@ +# |http://www.mp4ba.com/show.php$s@@@ (lazy222.txt: 5053) +www.byhh.org/\$s@@@ +# |http://www.bukade.com/tpl/2/loading.html$s@var loadTime=7000;@var loadTime=000;@ (lazy222.txt: 5052) +www.bukade.com/tpl/2/loading\.html\$s@var loadTime=7000;@var loadTime=000;@ +# |http://www.btbbt.cc/$s@var popUrl = 'http://@@ (lazy222.txt: 5051) +www.btbbt.cc/\$s@var popUrl = 'http://@@ +# |http://www.bt2mag.com/$s@@@ (lazy222.txt: 5050) +www.bt2mag.com/\$s@@@ +# |http://www.biquku.com/images/bqg.js$s@function listhf(){*function indexhf(){*}@@ (lazy222.txt: 5049) +www.biquku.com/images/bqg\.js\$s@function listhf\(\)\{.*function indexhf\(\)\{.*\}@@ +# |http://www.biquge5.com/jquery/biquge.js$s@function read2() {*function list2() {*}@@ (lazy222.txt: 5048) +www.biquge5.com/jquery/biquge\.js\$s@function read2\(\) \{.*function list2\(\) \{.*\}@@ +# |http://www.baidu.com/s?$s@display:block !important;visibility:visible !important")@display:none !important")@ (lazy222.txt: 5047) +www.baidu.com/s\?\$s@display:block !important;visibility:visible !important"\)@display:none !important"\)@ +# |http://www.7k7kjs.cn/qike_public/com-oldplayer-self/com-oldplayer-self-min-$s@u=7000,j=10000,n=@u=1000,j=10000,n=@ (lazy222.txt: 5046) +www.7k7kjs.cn/qike_public/com-oldplayer-self/com-oldplayer-self-min-\$s@u=7000,j=10000,n=@u=1000,j=10000,n=@ +# |http://www.789disc.cc/$s@var secs = 6;@var secs = 0;@ (lazy222.txt: 5045) +www.789disc.cc/\$s@var secs = 6;@var secs = 0;@ +# |http://www.666pan.com/down-$s@